From f766813e055e94aaedd3e5be01cbfdb0b80926c9 Mon Sep 17 00:00:00 2001 From: Adam Coard Date: Mon, 11 Sep 2023 09:08:25 -0700 Subject: [PATCH 001/194] Add generated nextjs project, no app router --- site-search/site-search/.eslintrc.json | 3 + site-search/site-search/.gitignore | 35 + site-search/site-search/README.md | 38 + site-search/site-search/next.config.js | 6 + site-search/site-search/package-lock.json | 5676 +++++++++++++++++ site-search/site-search/package.json | 22 + site-search/site-search/pages/_app.tsx | 6 + site-search/site-search/pages/_document.tsx | 13 + site-search/site-search/pages/api/hello.ts | 13 + site-search/site-search/pages/index.tsx | 114 + site-search/site-search/public/favicon.ico | Bin 0 -> 25931 bytes site-search/site-search/public/next.svg | 1 + site-search/site-search/public/vercel.svg | 1 + .../site-search/styles/Home.module.css | 229 + site-search/site-search/styles/globals.css | 107 + site-search/site-search/tsconfig.json | 22 + 16 files changed, 6286 insertions(+) create mode 100644 site-search/site-search/.eslintrc.json create mode 100644 site-search/site-search/.gitignore create mode 100644 site-search/site-search/README.md create mode 100644 site-search/site-search/next.config.js create mode 100644 site-search/site-search/package-lock.json create mode 100644 site-search/site-search/package.json create mode 100644 site-search/site-search/pages/_app.tsx create mode 100644 site-search/site-search/pages/_document.tsx create mode 100644 site-search/site-search/pages/api/hello.ts create mode 100644 site-search/site-search/pages/index.tsx create mode 100644 site-search/site-search/public/favicon.ico create mode 100644 site-search/site-search/public/next.svg create mode 100644 site-search/site-search/public/vercel.svg create mode 100644 site-search/site-search/styles/Home.module.css create mode 100644 site-search/site-search/styles/globals.css create mode 100644 site-search/site-search/tsconfig.json diff --git a/site-search/site-search/.eslintrc.json b/site-search/site-search/.eslintrc.json new file mode 100644 index 00000000..bffb357a --- /dev/null +++ b/site-search/site-search/.eslintrc.json @@ -0,0 +1,3 @@ +{ + "extends": "next/core-web-vitals" +} diff --git a/site-search/site-search/.gitignore b/site-search/site-search/.gitignore new file mode 100644 index 00000000..8f322f0d --- /dev/null +++ b/site-search/site-search/.gitignore @@ -0,0 +1,35 @@ +# See https://help.github.com/articles/ignoring-files/ for more about ignoring files. + +# dependencies +/node_modules +/.pnp +.pnp.js + +# testing +/coverage + +# next.js +/.next/ +/out/ + +# production +/build + +# misc +.DS_Store +*.pem + +# debug +npm-debug.log* +yarn-debug.log* +yarn-error.log* + +# local env files +.env*.local + +# vercel +.vercel + +# typescript +*.tsbuildinfo +next-env.d.ts diff --git a/site-search/site-search/README.md b/site-search/site-search/README.md new file mode 100644 index 00000000..965a1228 --- /dev/null +++ b/site-search/site-search/README.md @@ -0,0 +1,38 @@ +This is a [Next.js](https://nextjs.org/) project bootstrapped with [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packages/create-next-app). + +## Getting Started + +First, run the development server: + +```bash +npm run dev +# or +yarn dev +# or +pnpm dev +``` + +Open [http://localhost:3000](http://localhost:3000) with your browser to see the result. + +You can start editing the page by modifying `pages/index.tsx`. The page auto-updates as you edit the file. + +[API routes](https://nextjs.org/docs/api-routes/introduction) can be accessed on [http://localhost:3000/api/hello](http://localhost:3000/api/hello). This endpoint can be edited in `pages/api/hello.ts`. + +The `pages/api` directory is mapped to `/api/*`. Files in this directory are treated as [API routes](https://nextjs.org/docs/api-routes/introduction) instead of React pages. + +This project uses [`next/font`](https://nextjs.org/docs/basic-features/font-optimization) to automatically optimize and load Inter, a custom Google Font. + +## Learn More + +To learn more about Next.js, take a look at the following resources: + +- [Next.js Documentation](https://nextjs.org/docs) - learn about Next.js features and API. +- [Learn Next.js](https://nextjs.org/learn) - an interactive Next.js tutorial. + +You can check out [the Next.js GitHub repository](https://github.com/vercel/next.js/) - your feedback and contributions are welcome! + +## Deploy on Vercel + +The easiest way to deploy your Next.js app is to use the [Vercel Platform](https://vercel.com/new?utm_medium=default-template&filter=next.js&utm_source=create-next-app&utm_campaign=create-next-app-readme) from the creators of Next.js. + +Check out our [Next.js deployment documentation](https://nextjs.org/docs/deployment) for more details. diff --git a/site-search/site-search/next.config.js b/site-search/site-search/next.config.js new file mode 100644 index 00000000..a843cbee --- /dev/null +++ b/site-search/site-search/next.config.js @@ -0,0 +1,6 @@ +/** @type {import('next').NextConfig} */ +const nextConfig = { + reactStrictMode: true, +} + +module.exports = nextConfig diff --git a/site-search/site-search/package-lock.json b/site-search/site-search/package-lock.json new file mode 100644 index 00000000..8622884d --- /dev/null +++ b/site-search/site-search/package-lock.json @@ -0,0 +1,5676 @@ +{ + "name": "site-search", + "version": "0.1.0", + "lockfileVersion": 2, + "requires": true, + "packages": { + "": { + "name": "site-search", + "version": "0.1.0", + "dependencies": { + "@types/node": "20.6.0", + "@types/react": "18.2.21", + "@types/react-dom": "18.2.7", + "eslint": "8.49.0", + "eslint-config-next": "13.4.19", + "next": "13.4.19", + "react": "18.2.0", + "react-dom": "18.2.0", + "typescript": "5.2.2" + } + }, + "node_modules/@aashutoshrathi/word-wrap": { + "version": "1.2.6", + "resolved": "https://registry.npmjs.org/@aashutoshrathi/word-wrap/-/word-wrap-1.2.6.tgz", + "integrity": "sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/@babel/runtime": { + "version": "7.22.15", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.22.15.tgz", + "integrity": "sha512-T0O+aa+4w0u06iNmapipJXMV4HoUir03hpx3/YqXXhu9xim3w+dVphjFWl1OH8NbZHw5Lbm9k45drDkgq2VNNA==", + "dependencies": { + "regenerator-runtime": "^0.14.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@eslint-community/eslint-utils": { + "version": "4.4.0", + "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.4.0.tgz", + "integrity": "sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==", + "dependencies": { + "eslint-visitor-keys": "^3.3.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "peerDependencies": { + "eslint": "^6.0.0 || ^7.0.0 || >=8.0.0" + } + }, + "node_modules/@eslint-community/regexpp": { + "version": "4.8.0", + "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.8.0.tgz", + "integrity": "sha512-JylOEEzDiOryeUnFbQz+oViCXS0KsvR1mvHkoMiu5+UiBvy+RYX7tzlIIIEstF/gVa2tj9AQXk3dgnxv6KxhFg==", + "engines": { + "node": "^12.0.0 || ^14.0.0 || >=16.0.0" + } + }, + "node_modules/@eslint/eslintrc": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-2.1.2.tgz", + "integrity": "sha512-+wvgpDsrB1YqAMdEUCcnTlpfVBH7Vqn6A/NT3D8WVXFIaKMlErPIZT3oCIAVCOtarRpMtelZLqJeU3t7WY6X6g==", + "dependencies": { + "ajv": "^6.12.4", + "debug": "^4.3.2", + "espree": "^9.6.0", + "globals": "^13.19.0", + "ignore": "^5.2.0", + "import-fresh": "^3.2.1", + "js-yaml": "^4.1.0", + "minimatch": "^3.1.2", + "strip-json-comments": "^3.1.1" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/@eslint/js": { + "version": "8.49.0", + "resolved": "https://registry.npmjs.org/@eslint/js/-/js-8.49.0.tgz", + "integrity": "sha512-1S8uAY/MTJqVx0SC4epBq+N2yhuwtNwLbJYNZyhL2pO1ZVKn5HFXav5T41Ryzy9K9V7ZId2JB2oy/W4aCd9/2w==", + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + } + }, + "node_modules/@humanwhocodes/config-array": { + "version": "0.11.11", + "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.11.tgz", + "integrity": "sha512-N2brEuAadi0CcdeMXUkhbZB84eskAc8MEX1By6qEchoVywSgXPIjou4rYsl0V3Hj0ZnuGycGCjdNgockbzeWNA==", + "dependencies": { + "@humanwhocodes/object-schema": "^1.2.1", + "debug": "^4.1.1", + "minimatch": "^3.0.5" + }, + "engines": { + "node": ">=10.10.0" + } + }, + "node_modules/@humanwhocodes/module-importer": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz", + "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==", + "engines": { + "node": ">=12.22" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/nzakas" + } + }, + "node_modules/@humanwhocodes/object-schema": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz", + "integrity": "sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==" + }, + "node_modules/@next/env": { + "version": "13.4.19", + "resolved": "https://registry.npmjs.org/@next/env/-/env-13.4.19.tgz", + "integrity": "sha512-FsAT5x0jF2kkhNkKkukhsyYOrRqtSxrEhfliniIq0bwWbuXLgyt3Gv0Ml+b91XwjwArmuP7NxCiGd++GGKdNMQ==" + }, + "node_modules/@next/eslint-plugin-next": { + "version": "13.4.19", + "resolved": "https://registry.npmjs.org/@next/eslint-plugin-next/-/eslint-plugin-next-13.4.19.tgz", + "integrity": "sha512-N/O+zGb6wZQdwu6atMZHbR7T9Np5SUFUjZqCbj0sXm+MwQO35M8TazVB4otm87GkXYs2l6OPwARd3/PUWhZBVQ==", + "dependencies": { + "glob": "7.1.7" + } + }, + "node_modules/@next/swc-darwin-arm64": { + "version": "13.4.19", + "resolved": "https://registry.npmjs.org/@next/swc-darwin-arm64/-/swc-darwin-arm64-13.4.19.tgz", + "integrity": "sha512-vv1qrjXeGbuF2mOkhkdxMDtv9np7W4mcBtaDnHU+yJG+bBwa6rYsYSCI/9Xm5+TuF5SbZbrWO6G1NfTh1TMjvQ==", + "cpu": [ + "arm64" + ], + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">= 10" + } + }, + "node_modules/@next/swc-darwin-x64": { + "version": "13.4.19", + "resolved": "https://registry.npmjs.org/@next/swc-darwin-x64/-/swc-darwin-x64-13.4.19.tgz", + "integrity": "sha512-jyzO6wwYhx6F+7gD8ddZfuqO4TtpJdw3wyOduR4fxTUCm3aLw7YmHGYNjS0xRSYGAkLpBkH1E0RcelyId6lNsw==", + "cpu": [ + "x64" + ], + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">= 10" + } + }, + "node_modules/@next/swc-linux-arm64-gnu": { + "version": "13.4.19", + "resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-gnu/-/swc-linux-arm64-gnu-13.4.19.tgz", + "integrity": "sha512-vdlnIlaAEh6H+G6HrKZB9c2zJKnpPVKnA6LBwjwT2BTjxI7e0Hx30+FoWCgi50e+YO49p6oPOtesP9mXDRiiUg==", + "cpu": [ + "arm64" + ], + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 10" + } + }, + "node_modules/@next/swc-linux-arm64-musl": { + "version": "13.4.19", + "resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-musl/-/swc-linux-arm64-musl-13.4.19.tgz", + "integrity": "sha512-aU0HkH2XPgxqrbNRBFb3si9Ahu/CpaR5RPmN2s9GiM9qJCiBBlZtRTiEca+DC+xRPyCThTtWYgxjWHgU7ZkyvA==", + "cpu": [ + "arm64" + ], + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 10" + } + }, + "node_modules/@next/swc-linux-x64-gnu": { + "version": "13.4.19", + "resolved": "https://registry.npmjs.org/@next/swc-linux-x64-gnu/-/swc-linux-x64-gnu-13.4.19.tgz", + "integrity": "sha512-htwOEagMa/CXNykFFeAHHvMJeqZfNQEoQvHfsA4wgg5QqGNqD5soeCer4oGlCol6NGUxknrQO6VEustcv+Md+g==", + "cpu": [ + "x64" + ], + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 10" + } + }, + "node_modules/@next/swc-linux-x64-musl": { + "version": "13.4.19", + "resolved": "https://registry.npmjs.org/@next/swc-linux-x64-musl/-/swc-linux-x64-musl-13.4.19.tgz", + "integrity": "sha512-4Gj4vvtbK1JH8ApWTT214b3GwUh9EKKQjY41hH/t+u55Knxi/0wesMzwQRhppK6Ddalhu0TEttbiJ+wRcoEj5Q==", + "cpu": [ + "x64" + ], + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 10" + } + }, + "node_modules/@next/swc-win32-arm64-msvc": { + "version": "13.4.19", + "resolved": "https://registry.npmjs.org/@next/swc-win32-arm64-msvc/-/swc-win32-arm64-msvc-13.4.19.tgz", + "integrity": "sha512-bUfDevQK4NsIAHXs3/JNgnvEY+LRyneDN788W2NYiRIIzmILjba7LaQTfihuFawZDhRtkYCv3JDC3B4TwnmRJw==", + "cpu": [ + "arm64" + ], + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">= 10" + } + }, + "node_modules/@next/swc-win32-ia32-msvc": { + "version": "13.4.19", + "resolved": "https://registry.npmjs.org/@next/swc-win32-ia32-msvc/-/swc-win32-ia32-msvc-13.4.19.tgz", + "integrity": "sha512-Y5kikILFAr81LYIFaw6j/NrOtmiM4Sf3GtOc0pn50ez2GCkr+oejYuKGcwAwq3jiTKuzF6OF4iT2INPoxRycEA==", + "cpu": [ + "ia32" + ], + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">= 10" + } + }, + "node_modules/@next/swc-win32-x64-msvc": { + "version": "13.4.19", + "resolved": "https://registry.npmjs.org/@next/swc-win32-x64-msvc/-/swc-win32-x64-msvc-13.4.19.tgz", + "integrity": "sha512-YzA78jBDXMYiINdPdJJwGgPNT3YqBNNGhsthsDoWHL9p24tEJn9ViQf/ZqTbwSpX/RrkPupLfuuTH2sf73JBAw==", + "cpu": [ + "x64" + ], + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">= 10" + } + }, + "node_modules/@nodelib/fs.scandir": { + "version": "2.1.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", + "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", + "dependencies": { + "@nodelib/fs.stat": "2.0.5", + "run-parallel": "^1.1.9" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@nodelib/fs.stat": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", + "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", + "engines": { + "node": ">= 8" + } + }, + "node_modules/@nodelib/fs.walk": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", + "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", + "dependencies": { + "@nodelib/fs.scandir": "2.1.5", + "fastq": "^1.6.0" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@rushstack/eslint-patch": { + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/@rushstack/eslint-patch/-/eslint-patch-1.3.3.tgz", + "integrity": "sha512-0xd7qez0AQ+MbHatZTlI1gu5vkG8r7MYRUJAHPAHJBmGLs16zpkrpAVLvjQKQOqaXPDUBwOiJzNc00znHSCVBw==" + }, + "node_modules/@swc/helpers": { + "version": "0.5.1", + "resolved": "https://registry.npmjs.org/@swc/helpers/-/helpers-0.5.1.tgz", + "integrity": "sha512-sJ902EfIzn1Fa+qYmjdQqh8tPsoxyBz+8yBKC2HKUxyezKJFwPGOn7pv4WY6QuQW//ySQi5lJjA/ZT9sNWWNTg==", + "dependencies": { + "tslib": "^2.4.0" + } + }, + "node_modules/@types/json5": { + "version": "0.0.29", + "resolved": "https://registry.npmjs.org/@types/json5/-/json5-0.0.29.tgz", + "integrity": "sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==" + }, + "node_modules/@types/node": { + "version": "20.6.0", + "resolved": "https://registry.npmjs.org/@types/node/-/node-20.6.0.tgz", + "integrity": "sha512-najjVq5KN2vsH2U/xyh2opaSEz6cZMR2SetLIlxlj08nOcmPOemJmUK2o4kUzfLqfrWE0PIrNeE16XhYDd3nqg==" + }, + "node_modules/@types/prop-types": { + "version": "15.7.5", + "resolved": "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.5.tgz", + "integrity": "sha512-JCB8C6SnDoQf0cNycqd/35A7MjcnK+ZTqE7judS6o7utxUCg6imJg3QK2qzHKszlTjcj2cn+NwMB2i96ubpj7w==" + }, + "node_modules/@types/react": { + "version": "18.2.21", + "resolved": "https://registry.npmjs.org/@types/react/-/react-18.2.21.tgz", + "integrity": "sha512-neFKG/sBAwGxHgXiIxnbm3/AAVQ/cMRS93hvBpg8xYRbeQSPVABp9U2bRnPf0iI4+Ucdv3plSxKK+3CW2ENJxA==", + "dependencies": { + "@types/prop-types": "*", + "@types/scheduler": "*", + "csstype": "^3.0.2" + } + }, + "node_modules/@types/react-dom": { + "version": "18.2.7", + "resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-18.2.7.tgz", + "integrity": "sha512-GRaAEriuT4zp9N4p1i8BDBYmEyfo+xQ3yHjJU4eiK5NDa1RmUZG+unZABUTK4/Ox/M+GaHwb6Ow8rUITrtjszA==", + "dependencies": { + "@types/react": "*" + } + }, + "node_modules/@types/scheduler": { + "version": "0.16.3", + "resolved": "https://registry.npmjs.org/@types/scheduler/-/scheduler-0.16.3.tgz", + "integrity": "sha512-5cJ8CB4yAx7BH1oMvdU0Jh9lrEXyPkar6F9G/ERswkCuvP4KQZfZkSjcMbAICCpQTN4OuZn8tz0HiKv9TGZgrQ==" + }, + "node_modules/@typescript-eslint/parser": { + "version": "6.6.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-6.6.0.tgz", + "integrity": "sha512-setq5aJgUwtzGrhW177/i+DMLqBaJbdwGj2CPIVFFLE0NCliy5ujIdLHd2D1ysmlmsjdL2GWW+hR85neEfc12w==", + "dependencies": { + "@typescript-eslint/scope-manager": "6.6.0", + "@typescript-eslint/types": "6.6.0", + "@typescript-eslint/typescript-estree": "6.6.0", + "@typescript-eslint/visitor-keys": "6.6.0", + "debug": "^4.3.4" + }, + "engines": { + "node": "^16.0.0 || >=18.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^7.0.0 || ^8.0.0" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/@typescript-eslint/scope-manager": { + "version": "6.6.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-6.6.0.tgz", + "integrity": "sha512-pT08u5W/GT4KjPUmEtc2kSYvrH8x89cVzkA0Sy2aaOUIw6YxOIjA8ilwLr/1fLjOedX1QAuBpG9XggWqIIfERw==", + "dependencies": { + "@typescript-eslint/types": "6.6.0", + "@typescript-eslint/visitor-keys": "6.6.0" + }, + "engines": { + "node": "^16.0.0 || >=18.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/@typescript-eslint/types": { + "version": "6.6.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-6.6.0.tgz", + "integrity": "sha512-CB6QpJQ6BAHlJXdwUmiaXDBmTqIE2bzGTDLADgvqtHWuhfNP3rAOK7kAgRMAET5rDRr9Utt+qAzRBdu3AhR3sg==", + "engines": { + "node": "^16.0.0 || >=18.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/@typescript-eslint/typescript-estree": { + "version": "6.6.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-6.6.0.tgz", + "integrity": "sha512-hMcTQ6Al8MP2E6JKBAaSxSVw5bDhdmbCEhGW/V8QXkb9oNsFkA4SBuOMYVPxD3jbtQ4R/vSODBsr76R6fP3tbA==", + "dependencies": { + "@typescript-eslint/types": "6.6.0", + "@typescript-eslint/visitor-keys": "6.6.0", + "debug": "^4.3.4", + "globby": "^11.1.0", + "is-glob": "^4.0.3", + "semver": "^7.5.4", + "ts-api-utils": "^1.0.1" + }, + "engines": { + "node": "^16.0.0 || >=18.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/@typescript-eslint/visitor-keys": { + "version": "6.6.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-6.6.0.tgz", + "integrity": "sha512-L61uJT26cMOfFQ+lMZKoJNbAEckLe539VhTxiGHrWl5XSKQgA0RTBZJW2HFPy5T0ZvPVSD93QsrTKDkfNwJGyQ==", + "dependencies": { + "@typescript-eslint/types": "6.6.0", + "eslint-visitor-keys": "^3.4.1" + }, + "engines": { + "node": "^16.0.0 || >=18.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/acorn": { + "version": "8.10.0", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.10.0.tgz", + "integrity": "sha512-F0SAmZ8iUtS//m8DmCTA0jlh6TDKkHQyK6xc6V4KDTyZKA9dnvX9/3sRTVQrWm79glUAZbnmmNcdYwUIHWVybw==", + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/acorn-jsx": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", + "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", + "peerDependencies": { + "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" + } + }, + "node_modules/ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "dependencies": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/argparse": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==" + }, + "node_modules/aria-query": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/aria-query/-/aria-query-5.3.0.tgz", + "integrity": "sha512-b0P0sZPKtyu8HkeRAfCq0IfURZK+SuwMjY1UXGBU27wpAiTwQAIlq56IbIO+ytk/JjS1fMR14ee5WBBfKi5J6A==", + "dependencies": { + "dequal": "^2.0.3" + } + }, + "node_modules/array-buffer-byte-length": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/array-buffer-byte-length/-/array-buffer-byte-length-1.0.0.tgz", + "integrity": "sha512-LPuwb2P+NrQw3XhxGc36+XSvuBPopovXYTR9Ew++Du9Yb/bx5AzBfrIsBoj0EZUifjQU+sHL21sseZ3jerWO/A==", + "dependencies": { + "call-bind": "^1.0.2", + "is-array-buffer": "^3.0.1" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/array-includes": { + "version": "3.1.7", + "resolved": "https://registry.npmjs.org/array-includes/-/array-includes-3.1.7.tgz", + "integrity": "sha512-dlcsNBIiWhPkHdOEEKnehA+RNUWDc4UqFtnIXU4uuYDPtA4LDkr7qip2p0VvFAEXNDr0yWZ9PJyIRiGjRLQzwQ==", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1", + "get-intrinsic": "^1.2.1", + "is-string": "^1.0.7" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/array-union": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz", + "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==", + "engines": { + "node": ">=8" + } + }, + "node_modules/array.prototype.findlastindex": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/array.prototype.findlastindex/-/array.prototype.findlastindex-1.2.3.tgz", + "integrity": "sha512-LzLoiOMAxvy+Gd3BAq3B7VeIgPdo+Q8hthvKtXybMvRV0jrXfJM/t8mw7nNlpEcVlVUnCnM2KSX4XU5HmpodOA==", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1", + "es-shim-unscopables": "^1.0.0", + "get-intrinsic": "^1.2.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/array.prototype.flat": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/array.prototype.flat/-/array.prototype.flat-1.3.2.tgz", + "integrity": "sha512-djYB+Zx2vLewY8RWlNCUdHjDXs2XOgm602S9E7P/UpHgfeHL00cRiIF+IN/G/aUJ7kGPb6yO/ErDI5V2s8iycA==", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1", + "es-shim-unscopables": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/array.prototype.flatmap": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/array.prototype.flatmap/-/array.prototype.flatmap-1.3.2.tgz", + "integrity": "sha512-Ewyx0c9PmpcsByhSW4r+9zDU7sGjFc86qf/kKtuSCRdhfbk0SNLLkaT5qvcHnRGgc5NP/ly/y+qkXkqONX54CQ==", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1", + "es-shim-unscopables": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/array.prototype.tosorted": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/array.prototype.tosorted/-/array.prototype.tosorted-1.1.2.tgz", + "integrity": "sha512-HuQCHOlk1Weat5jzStICBCd83NxiIMwqDg/dHEsoefabn/hJRj5pVdWcPUSpRrwhwxZOsQassMpgN/xRYFBMIg==", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1", + "es-shim-unscopables": "^1.0.0", + "get-intrinsic": "^1.2.1" + } + }, + "node_modules/arraybuffer.prototype.slice": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/arraybuffer.prototype.slice/-/arraybuffer.prototype.slice-1.0.2.tgz", + "integrity": "sha512-yMBKppFur/fbHu9/6USUe03bZ4knMYiwFBcyiaXB8Go0qNehwX6inYPzK9U0NeQvGxKthcmHcaR8P5MStSRBAw==", + "dependencies": { + "array-buffer-byte-length": "^1.0.0", + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1", + "get-intrinsic": "^1.2.1", + "is-array-buffer": "^3.0.2", + "is-shared-array-buffer": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/ast-types-flow": { + "version": "0.0.7", + "resolved": "https://registry.npmjs.org/ast-types-flow/-/ast-types-flow-0.0.7.tgz", + "integrity": "sha512-eBvWn1lvIApYMhzQMsu9ciLfkBY499mFZlNqG+/9WR7PVlroQw0vG30cOQQbaKz3sCEc44TAOu2ykzqXSNnwag==" + }, + "node_modules/asynciterator.prototype": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/asynciterator.prototype/-/asynciterator.prototype-1.0.0.tgz", + "integrity": "sha512-wwHYEIS0Q80f5mosx3L/dfG5t5rjEa9Ft51GTaNt862EnpyGHpgz2RkZvLPp1oF5TnAiTohkEKVEu8pQPJI7Vg==", + "dependencies": { + "has-symbols": "^1.0.3" + } + }, + "node_modules/available-typed-arrays": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.5.tgz", + "integrity": "sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw==", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/axe-core": { + "version": "4.8.1", + "resolved": "https://registry.npmjs.org/axe-core/-/axe-core-4.8.1.tgz", + "integrity": "sha512-9l850jDDPnKq48nbad8SiEelCv4OrUWrKab/cPj0GScVg6cb6NbCCt/Ulk26QEq5jP9NnGr04Bit1BHyV6r5CQ==", + "engines": { + "node": ">=4" + } + }, + "node_modules/axobject-query": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/axobject-query/-/axobject-query-3.2.1.tgz", + "integrity": "sha512-jsyHu61e6N4Vbz/v18DHwWYKK0bSWLqn47eeDSKPB7m8tqMHF9YJ+mhIk2lVteyZrY8tnSj/jHOv4YiTCuCJgg==", + "dependencies": { + "dequal": "^2.0.3" + } + }, + "node_modules/balanced-match": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==" + }, + "node_modules/brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "node_modules/braces": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", + "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", + "dependencies": { + "fill-range": "^7.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/busboy": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/busboy/-/busboy-1.6.0.tgz", + "integrity": "sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA==", + "dependencies": { + "streamsearch": "^1.1.0" + }, + "engines": { + "node": ">=10.16.0" + } + }, + "node_modules/call-bind": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz", + "integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==", + "dependencies": { + "function-bind": "^1.1.1", + "get-intrinsic": "^1.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/callsites": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", + "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", + "engines": { + "node": ">=6" + } + }, + "node_modules/caniuse-lite": { + "version": "1.0.30001532", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001532.tgz", + "integrity": "sha512-FbDFnNat3nMnrROzqrsg314zhqN5LGQ1kyyMk2opcrwGbVGpHRhgCWtAgD5YJUqNAiQ+dklreil/c3Qf1dfCTw==", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/caniuse-lite" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ] + }, + "node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/client-only": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/client-only/-/client-only-0.0.1.tgz", + "integrity": "sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA==" + }, + "node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "node_modules/concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==" + }, + "node_modules/cross-spawn": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", + "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", + "dependencies": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/csstype": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.1.2.tgz", + "integrity": "sha512-I7K1Uu0MBPzaFKg4nI5Q7Vs2t+3gWWW648spaF+Rg7pI9ds18Ugn+lvg4SHczUdKlHI5LWBXyqfS8+DufyBsgQ==" + }, + "node_modules/damerau-levenshtein": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/damerau-levenshtein/-/damerau-levenshtein-1.0.8.tgz", + "integrity": "sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA==" + }, + "node_modules/debug": { + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", + "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", + "dependencies": { + "ms": "2.1.2" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } + } + }, + "node_modules/deep-is": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", + "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==" + }, + "node_modules/define-properties": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.2.0.tgz", + "integrity": "sha512-xvqAVKGfT1+UAvPwKTVw/njhdQ8ZhXK4lI0bCIuCMrp2up9nPnaDftrLtmpTazqd1o+UY4zgzU+avtMbDP+ldA==", + "dependencies": { + "has-property-descriptors": "^1.0.0", + "object-keys": "^1.1.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/dequal": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/dequal/-/dequal-2.0.3.tgz", + "integrity": "sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==", + "engines": { + "node": ">=6" + } + }, + "node_modules/dir-glob": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz", + "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==", + "dependencies": { + "path-type": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/doctrine": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz", + "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==", + "dependencies": { + "esutils": "^2.0.2" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/emoji-regex": { + "version": "9.2.2", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", + "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==" + }, + "node_modules/enhanced-resolve": { + "version": "5.15.0", + "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.15.0.tgz", + "integrity": "sha512-LXYT42KJ7lpIKECr2mAXIaMldcNCh/7E0KBKOu4KSfkHmP+mZmSs+8V5gBAqisWBy0OO4W5Oyys0GO1Y8KtdKg==", + "dependencies": { + "graceful-fs": "^4.2.4", + "tapable": "^2.2.0" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/es-abstract": { + "version": "1.22.1", + "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.22.1.tgz", + "integrity": "sha512-ioRRcXMO6OFyRpyzV3kE1IIBd4WG5/kltnzdxSCqoP8CMGs/Li+M1uF5o7lOkZVFjDs+NLesthnF66Pg/0q0Lw==", + "dependencies": { + "array-buffer-byte-length": "^1.0.0", + "arraybuffer.prototype.slice": "^1.0.1", + "available-typed-arrays": "^1.0.5", + "call-bind": "^1.0.2", + "es-set-tostringtag": "^2.0.1", + "es-to-primitive": "^1.2.1", + "function.prototype.name": "^1.1.5", + "get-intrinsic": "^1.2.1", + "get-symbol-description": "^1.0.0", + "globalthis": "^1.0.3", + "gopd": "^1.0.1", + "has": "^1.0.3", + "has-property-descriptors": "^1.0.0", + "has-proto": "^1.0.1", + "has-symbols": "^1.0.3", + "internal-slot": "^1.0.5", + "is-array-buffer": "^3.0.2", + "is-callable": "^1.2.7", + "is-negative-zero": "^2.0.2", + "is-regex": "^1.1.4", + "is-shared-array-buffer": "^1.0.2", + "is-string": "^1.0.7", + "is-typed-array": "^1.1.10", + "is-weakref": "^1.0.2", + "object-inspect": "^1.12.3", + "object-keys": "^1.1.1", + "object.assign": "^4.1.4", + "regexp.prototype.flags": "^1.5.0", + "safe-array-concat": "^1.0.0", + "safe-regex-test": "^1.0.0", + "string.prototype.trim": "^1.2.7", + "string.prototype.trimend": "^1.0.6", + "string.prototype.trimstart": "^1.0.6", + "typed-array-buffer": "^1.0.0", + "typed-array-byte-length": "^1.0.0", + "typed-array-byte-offset": "^1.0.0", + "typed-array-length": "^1.0.4", + "unbox-primitive": "^1.0.2", + "which-typed-array": "^1.1.10" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/es-iterator-helpers": { + "version": "1.0.14", + "resolved": "https://registry.npmjs.org/es-iterator-helpers/-/es-iterator-helpers-1.0.14.tgz", + "integrity": "sha512-JgtVnwiuoRuzLvqelrvN3Xu7H9bu2ap/kQ2CrM62iidP8SKuD99rWU3CJy++s7IVL2qb/AjXPGR/E7i9ngd/Cw==", + "dependencies": { + "asynciterator.prototype": "^1.0.0", + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1", + "es-set-tostringtag": "^2.0.1", + "function-bind": "^1.1.1", + "get-intrinsic": "^1.2.1", + "globalthis": "^1.0.3", + "has-property-descriptors": "^1.0.0", + "has-proto": "^1.0.1", + "has-symbols": "^1.0.3", + "internal-slot": "^1.0.5", + "iterator.prototype": "^1.1.0", + "safe-array-concat": "^1.0.0" + } + }, + "node_modules/es-set-tostringtag": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.0.1.tgz", + "integrity": "sha512-g3OMbtlwY3QewlqAiMLI47KywjWZoEytKr8pf6iTC8uJq5bIAH52Z9pnQ8pVL6whrCto53JZDuUIsifGeLorTg==", + "dependencies": { + "get-intrinsic": "^1.1.3", + "has": "^1.0.3", + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-shim-unscopables": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/es-shim-unscopables/-/es-shim-unscopables-1.0.0.tgz", + "integrity": "sha512-Jm6GPcCdC30eMLbZ2x8z2WuRwAws3zTBBKuusffYVUrNj/GVSUAZ+xKMaUpfNDR5IbyNA5LJbaecoUVbmUcB1w==", + "dependencies": { + "has": "^1.0.3" + } + }, + "node_modules/es-to-primitive": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz", + "integrity": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==", + "dependencies": { + "is-callable": "^1.1.4", + "is-date-object": "^1.0.1", + "is-symbol": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/escape-string-regexp": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", + "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/eslint": { + "version": "8.49.0", + "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.49.0.tgz", + "integrity": "sha512-jw03ENfm6VJI0jA9U+8H5zfl5b+FvuU3YYvZRdZHOlU2ggJkxrlkJH4HcDrZpj6YwD8kuYqvQM8LyesoazrSOQ==", + "dependencies": { + "@eslint-community/eslint-utils": "^4.2.0", + "@eslint-community/regexpp": "^4.6.1", + "@eslint/eslintrc": "^2.1.2", + "@eslint/js": "8.49.0", + "@humanwhocodes/config-array": "^0.11.11", + "@humanwhocodes/module-importer": "^1.0.1", + "@nodelib/fs.walk": "^1.2.8", + "ajv": "^6.12.4", + "chalk": "^4.0.0", + "cross-spawn": "^7.0.2", + "debug": "^4.3.2", + "doctrine": "^3.0.0", + "escape-string-regexp": "^4.0.0", + "eslint-scope": "^7.2.2", + "eslint-visitor-keys": "^3.4.3", + "espree": "^9.6.1", + "esquery": "^1.4.2", + "esutils": "^2.0.2", + "fast-deep-equal": "^3.1.3", + "file-entry-cache": "^6.0.1", + "find-up": "^5.0.0", + "glob-parent": "^6.0.2", + "globals": "^13.19.0", + "graphemer": "^1.4.0", + "ignore": "^5.2.0", + "imurmurhash": "^0.1.4", + "is-glob": "^4.0.0", + "is-path-inside": "^3.0.3", + "js-yaml": "^4.1.0", + "json-stable-stringify-without-jsonify": "^1.0.1", + "levn": "^0.4.1", + "lodash.merge": "^4.6.2", + "minimatch": "^3.1.2", + "natural-compare": "^1.4.0", + "optionator": "^0.9.3", + "strip-ansi": "^6.0.1", + "text-table": "^0.2.0" + }, + "bin": { + "eslint": "bin/eslint.js" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/eslint-config-next": { + "version": "13.4.19", + "resolved": "https://registry.npmjs.org/eslint-config-next/-/eslint-config-next-13.4.19.tgz", + "integrity": "sha512-WE8367sqMnjhWHvR5OivmfwENRQ1ixfNE9hZwQqNCsd+iM3KnuMc1V8Pt6ytgjxjf23D+xbesADv9x3xaKfT3g==", + "dependencies": { + "@next/eslint-plugin-next": "13.4.19", + "@rushstack/eslint-patch": "^1.1.3", + "@typescript-eslint/parser": "^5.4.2 || ^6.0.0", + "eslint-import-resolver-node": "^0.3.6", + "eslint-import-resolver-typescript": "^3.5.2", + "eslint-plugin-import": "^2.26.0", + "eslint-plugin-jsx-a11y": "^6.5.1", + "eslint-plugin-react": "^7.31.7", + "eslint-plugin-react-hooks": "^4.5.0 || 5.0.0-canary-7118f5dd7-20230705" + }, + "peerDependencies": { + "eslint": "^7.23.0 || ^8.0.0", + "typescript": ">=3.3.1" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/eslint-import-resolver-node": { + "version": "0.3.9", + "resolved": "https://registry.npmjs.org/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.9.tgz", + "integrity": "sha512-WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g==", + "dependencies": { + "debug": "^3.2.7", + "is-core-module": "^2.13.0", + "resolve": "^1.22.4" + } + }, + "node_modules/eslint-import-resolver-node/node_modules/debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "dependencies": { + "ms": "^2.1.1" + } + }, + "node_modules/eslint-import-resolver-typescript": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/eslint-import-resolver-typescript/-/eslint-import-resolver-typescript-3.6.0.tgz", + "integrity": "sha512-QTHR9ddNnn35RTxlaEnx2gCxqFlF2SEN0SE2d17SqwyM7YOSI2GHWRYp5BiRkObTUNYPupC/3Fq2a0PpT+EKpg==", + "dependencies": { + "debug": "^4.3.4", + "enhanced-resolve": "^5.12.0", + "eslint-module-utils": "^2.7.4", + "fast-glob": "^3.3.1", + "get-tsconfig": "^4.5.0", + "is-core-module": "^2.11.0", + "is-glob": "^4.0.3" + }, + "engines": { + "node": "^14.18.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/unts/projects/eslint-import-resolver-ts" + }, + "peerDependencies": { + "eslint": "*", + "eslint-plugin-import": "*" + } + }, + "node_modules/eslint-module-utils": { + "version": "2.8.0", + "resolved": "https://registry.npmjs.org/eslint-module-utils/-/eslint-module-utils-2.8.0.tgz", + "integrity": "sha512-aWajIYfsqCKRDgUfjEXNN/JlrzauMuSEy5sbd7WXbtW3EH6A6MpwEh42c7qD+MqQo9QMJ6fWLAeIJynx0g6OAw==", + "dependencies": { + "debug": "^3.2.7" + }, + "engines": { + "node": ">=4" + }, + "peerDependenciesMeta": { + "eslint": { + "optional": true + } + } + }, + "node_modules/eslint-module-utils/node_modules/debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "dependencies": { + "ms": "^2.1.1" + } + }, + "node_modules/eslint-plugin-import": { + "version": "2.28.1", + "resolved": "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.28.1.tgz", + "integrity": "sha512-9I9hFlITvOV55alzoKBI+K9q74kv0iKMeY6av5+umsNwayt59fz692daGyjR+oStBQgx6nwR9rXldDev3Clw+A==", + "dependencies": { + "array-includes": "^3.1.6", + "array.prototype.findlastindex": "^1.2.2", + "array.prototype.flat": "^1.3.1", + "array.prototype.flatmap": "^1.3.1", + "debug": "^3.2.7", + "doctrine": "^2.1.0", + "eslint-import-resolver-node": "^0.3.7", + "eslint-module-utils": "^2.8.0", + "has": "^1.0.3", + "is-core-module": "^2.13.0", + "is-glob": "^4.0.3", + "minimatch": "^3.1.2", + "object.fromentries": "^2.0.6", + "object.groupby": "^1.0.0", + "object.values": "^1.1.6", + "semver": "^6.3.1", + "tsconfig-paths": "^3.14.2" + }, + "engines": { + "node": ">=4" + }, + "peerDependencies": { + "eslint": "^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8" + } + }, + "node_modules/eslint-plugin-import/node_modules/debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "dependencies": { + "ms": "^2.1.1" + } + }, + "node_modules/eslint-plugin-import/node_modules/doctrine": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", + "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", + "dependencies": { + "esutils": "^2.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/eslint-plugin-import/node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/eslint-plugin-jsx-a11y": { + "version": "6.7.1", + "resolved": "https://registry.npmjs.org/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.7.1.tgz", + "integrity": "sha512-63Bog4iIethyo8smBklORknVjB0T2dwB8Mr/hIC+fBS0uyHdYYpzM/Ed+YC8VxTjlXHEWFOdmgwcDn1U2L9VCA==", + "dependencies": { + "@babel/runtime": "^7.20.7", + "aria-query": "^5.1.3", + "array-includes": "^3.1.6", + "array.prototype.flatmap": "^1.3.1", + "ast-types-flow": "^0.0.7", + "axe-core": "^4.6.2", + "axobject-query": "^3.1.1", + "damerau-levenshtein": "^1.0.8", + "emoji-regex": "^9.2.2", + "has": "^1.0.3", + "jsx-ast-utils": "^3.3.3", + "language-tags": "=1.0.5", + "minimatch": "^3.1.2", + "object.entries": "^1.1.6", + "object.fromentries": "^2.0.6", + "semver": "^6.3.0" + }, + "engines": { + "node": ">=4.0" + }, + "peerDependencies": { + "eslint": "^3 || ^4 || ^5 || ^6 || ^7 || ^8" + } + }, + "node_modules/eslint-plugin-jsx-a11y/node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/eslint-plugin-react": { + "version": "7.33.2", + "resolved": "https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-7.33.2.tgz", + "integrity": "sha512-73QQMKALArI8/7xGLNI/3LylrEYrlKZSb5C9+q3OtOewTnMQi5cT+aE9E41sLCmli3I9PGGmD1yiZydyo4FEPw==", + "dependencies": { + "array-includes": "^3.1.6", + "array.prototype.flatmap": "^1.3.1", + "array.prototype.tosorted": "^1.1.1", + "doctrine": "^2.1.0", + "es-iterator-helpers": "^1.0.12", + "estraverse": "^5.3.0", + "jsx-ast-utils": "^2.4.1 || ^3.0.0", + "minimatch": "^3.1.2", + "object.entries": "^1.1.6", + "object.fromentries": "^2.0.6", + "object.hasown": "^1.1.2", + "object.values": "^1.1.6", + "prop-types": "^15.8.1", + "resolve": "^2.0.0-next.4", + "semver": "^6.3.1", + "string.prototype.matchall": "^4.0.8" + }, + "engines": { + "node": ">=4" + }, + "peerDependencies": { + "eslint": "^3 || ^4 || ^5 || ^6 || ^7 || ^8" + } + }, + "node_modules/eslint-plugin-react-hooks": { + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-4.6.0.tgz", + "integrity": "sha512-oFc7Itz9Qxh2x4gNHStv3BqJq54ExXmfC+a1NjAta66IAN87Wu0R/QArgIS9qKzX3dXKPI9H5crl9QchNMY9+g==", + "engines": { + "node": ">=10" + }, + "peerDependencies": { + "eslint": "^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0" + } + }, + "node_modules/eslint-plugin-react/node_modules/doctrine": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", + "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", + "dependencies": { + "esutils": "^2.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/eslint-plugin-react/node_modules/resolve": { + "version": "2.0.0-next.4", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-2.0.0-next.4.tgz", + "integrity": "sha512-iMDbmAWtfU+MHpxt/I5iWI7cY6YVEZUQ3MBgPQ++XD1PELuJHIl82xBmObyP2KyQmkNB2dsqF7seoQQiAn5yDQ==", + "dependencies": { + "is-core-module": "^2.9.0", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + }, + "bin": { + "resolve": "bin/resolve" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/eslint-plugin-react/node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/eslint-scope": { + "version": "7.2.2", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.2.2.tgz", + "integrity": "sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==", + "dependencies": { + "esrecurse": "^4.3.0", + "estraverse": "^5.2.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/eslint-visitor-keys": { + "version": "3.4.3", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz", + "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==", + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/espree": { + "version": "9.6.1", + "resolved": "https://registry.npmjs.org/espree/-/espree-9.6.1.tgz", + "integrity": "sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==", + "dependencies": { + "acorn": "^8.9.0", + "acorn-jsx": "^5.3.2", + "eslint-visitor-keys": "^3.4.1" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/esquery": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.5.0.tgz", + "integrity": "sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==", + "dependencies": { + "estraverse": "^5.1.0" + }, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/esrecurse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", + "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", + "dependencies": { + "estraverse": "^5.2.0" + }, + "engines": { + "node": ">=4.0" + } + }, + "node_modules/estraverse": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", + "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", + "engines": { + "node": ">=4.0" + } + }, + "node_modules/esutils": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", + "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/fast-deep-equal": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", + "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==" + }, + "node_modules/fast-glob": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.1.tgz", + "integrity": "sha512-kNFPyjhh5cKjrUltxs+wFx+ZkbRaxxmZ+X0ZU31SOsxCEtP9VPgtq2teZw1DebupL5GmDaNQ6yKMMVcM41iqDg==", + "dependencies": { + "@nodelib/fs.stat": "^2.0.2", + "@nodelib/fs.walk": "^1.2.3", + "glob-parent": "^5.1.2", + "merge2": "^1.3.0", + "micromatch": "^4.0.4" + }, + "engines": { + "node": ">=8.6.0" + } + }, + "node_modules/fast-glob/node_modules/glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "dependencies": { + "is-glob": "^4.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/fast-json-stable-stringify": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", + "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==" + }, + "node_modules/fast-levenshtein": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", + "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==" + }, + "node_modules/fastq": { + "version": "1.15.0", + "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.15.0.tgz", + "integrity": "sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==", + "dependencies": { + "reusify": "^1.0.4" + } + }, + "node_modules/file-entry-cache": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz", + "integrity": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==", + "dependencies": { + "flat-cache": "^3.0.4" + }, + "engines": { + "node": "^10.12.0 || >=12.0.0" + } + }, + "node_modules/fill-range": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", + "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", + "dependencies": { + "to-regex-range": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/find-up": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", + "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", + "dependencies": { + "locate-path": "^6.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/flat-cache": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.1.0.tgz", + "integrity": "sha512-OHx4Qwrrt0E4jEIcI5/Xb+f+QmJYNj2rrK8wiIdQOIrB9WrrJL8cjZvXdXuBTkkEwEqLycb5BeZDV1o2i9bTew==", + "dependencies": { + "flatted": "^3.2.7", + "keyv": "^4.5.3", + "rimraf": "^3.0.2" + }, + "engines": { + "node": ">=12.0.0" + } + }, + "node_modules/flatted": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.2.7.tgz", + "integrity": "sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ==" + }, + "node_modules/for-each": { + "version": "0.3.3", + "resolved": "https://registry.npmjs.org/for-each/-/for-each-0.3.3.tgz", + "integrity": "sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==", + "dependencies": { + "is-callable": "^1.1.3" + } + }, + "node_modules/fs.realpath": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", + "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==" + }, + "node_modules/function-bind": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", + "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==" + }, + "node_modules/function.prototype.name": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.6.tgz", + "integrity": "sha512-Z5kx79swU5P27WEayXM1tBi5Ze/lbIyiNgU3qyXUOf9b2rgXYyF9Dy9Cx+IQv/Lc8WCG6L82zwUPpSS9hGehIg==", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1", + "functions-have-names": "^1.2.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/functions-have-names": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz", + "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/get-intrinsic": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.1.tgz", + "integrity": "sha512-2DcsyfABl+gVHEfCOaTrWgyt+tb6MSEGmKq+kI5HwLbIYgjgmMcV8KQ41uaKz1xxUcn9tJtgFbQUEVcEbd0FYw==", + "dependencies": { + "function-bind": "^1.1.1", + "has": "^1.0.3", + "has-proto": "^1.0.1", + "has-symbols": "^1.0.3" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/get-symbol-description": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.0.0.tgz", + "integrity": "sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==", + "dependencies": { + "call-bind": "^1.0.2", + "get-intrinsic": "^1.1.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/get-tsconfig": { + "version": "4.7.0", + "resolved": "https://registry.npmjs.org/get-tsconfig/-/get-tsconfig-4.7.0.tgz", + "integrity": "sha512-pmjiZ7xtB8URYm74PlGJozDNyhvsVLUcpBa8DZBG3bWHwaHa9bPiRpiSfovw+fjhwONSCWKRyk+JQHEGZmMrzw==", + "dependencies": { + "resolve-pkg-maps": "^1.0.0" + }, + "funding": { + "url": "https://github.com/privatenumber/get-tsconfig?sponsor=1" + } + }, + "node_modules/glob": { + "version": "7.1.7", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.7.tgz", + "integrity": "sha512-OvD9ENzPLbegENnYP5UUfJIirTg4+XwMWGaQfQTY0JenxNvvIKP3U3/tAQSPIu/lHxXYSZmpXlUHeqAIdKzBLQ==", + "dependencies": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.0.4", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "engines": { + "node": "*" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/glob-parent": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", + "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", + "dependencies": { + "is-glob": "^4.0.3" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/glob-to-regexp": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz", + "integrity": "sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==" + }, + "node_modules/globals": { + "version": "13.21.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-13.21.0.tgz", + "integrity": "sha512-ybyme3s4yy/t/3s35bewwXKOf7cvzfreG2lH0lZl0JB7I4GxRP2ghxOK/Nb9EkRXdbBXZLfq/p/0W2JUONB/Gg==", + "dependencies": { + "type-fest": "^0.20.2" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/globalthis": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/globalthis/-/globalthis-1.0.3.tgz", + "integrity": "sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==", + "dependencies": { + "define-properties": "^1.1.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/globby": { + "version": "11.1.0", + "resolved": "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz", + "integrity": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==", + "dependencies": { + "array-union": "^2.1.0", + "dir-glob": "^3.0.1", + "fast-glob": "^3.2.9", + "ignore": "^5.2.0", + "merge2": "^1.4.1", + "slash": "^3.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/gopd": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz", + "integrity": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==", + "dependencies": { + "get-intrinsic": "^1.1.3" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/graceful-fs": { + "version": "4.2.11", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", + "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==" + }, + "node_modules/graphemer": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/graphemer/-/graphemer-1.4.0.tgz", + "integrity": "sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==" + }, + "node_modules/has": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", + "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", + "dependencies": { + "function-bind": "^1.1.1" + }, + "engines": { + "node": ">= 0.4.0" + } + }, + "node_modules/has-bigints": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.2.tgz", + "integrity": "sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/has-property-descriptors": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.0.tgz", + "integrity": "sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ==", + "dependencies": { + "get-intrinsic": "^1.1.1" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-proto": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.0.1.tgz", + "integrity": "sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-symbols": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", + "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-tostringtag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.0.tgz", + "integrity": "sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==", + "dependencies": { + "has-symbols": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/ignore": { + "version": "5.2.4", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.2.4.tgz", + "integrity": "sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==", + "engines": { + "node": ">= 4" + } + }, + "node_modules/import-fresh": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", + "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", + "dependencies": { + "parent-module": "^1.0.0", + "resolve-from": "^4.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/imurmurhash": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", + "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", + "engines": { + "node": ">=0.8.19" + } + }, + "node_modules/inflight": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", + "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", + "dependencies": { + "once": "^1.3.0", + "wrappy": "1" + } + }, + "node_modules/inherits": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" + }, + "node_modules/internal-slot": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.5.tgz", + "integrity": "sha512-Y+R5hJrzs52QCG2laLn4udYVnxsfny9CpOhNhUvk/SSSVyF6T27FzRbF0sroPidSu3X8oEAkOn2K804mjpt6UQ==", + "dependencies": { + "get-intrinsic": "^1.2.0", + "has": "^1.0.3", + "side-channel": "^1.0.4" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/is-array-buffer": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/is-array-buffer/-/is-array-buffer-3.0.2.tgz", + "integrity": "sha512-y+FyyR/w8vfIRq4eQcM1EYgSTnmHXPqaF+IgzgraytCFq5Xh8lllDVmAZolPJiZttZLeFSINPYMaEJ7/vWUa1w==", + "dependencies": { + "call-bind": "^1.0.2", + "get-intrinsic": "^1.2.0", + "is-typed-array": "^1.1.10" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-async-function": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-async-function/-/is-async-function-2.0.0.tgz", + "integrity": "sha512-Y1JXKrfykRJGdlDwdKlLpLyMIiWqWvuSd17TvZk68PLAOGOoF4Xyav1z0Xhoi+gCYjZVeC5SI+hYFOfvXmGRCA==", + "dependencies": { + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-bigint": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.4.tgz", + "integrity": "sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==", + "dependencies": { + "has-bigints": "^1.0.1" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-boolean-object": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.2.tgz", + "integrity": "sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==", + "dependencies": { + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-callable": { + "version": "1.2.7", + "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz", + "integrity": "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-core-module": { + "version": "2.13.0", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.13.0.tgz", + "integrity": "sha512-Z7dk6Qo8pOCp3l4tsX2C5ZVas4V+UxwQodwZhLopL91TX8UyyHEXafPcyoeeWuLrwzHcr3igO78wNLwHJHsMCQ==", + "dependencies": { + "has": "^1.0.3" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-date-object": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.5.tgz", + "integrity": "sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==", + "dependencies": { + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-finalizationregistry": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-finalizationregistry/-/is-finalizationregistry-1.0.2.tgz", + "integrity": "sha512-0by5vtUJs8iFQb5TYUHHPudOR+qXYIMKtiUzvLIZITZUjknFmziyBJuLhVRc+Ds0dREFlskDNJKYIdIzu/9pfw==", + "dependencies": { + "call-bind": "^1.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-generator-function": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/is-generator-function/-/is-generator-function-1.0.10.tgz", + "integrity": "sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A==", + "dependencies": { + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-glob": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", + "dependencies": { + "is-extglob": "^2.1.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-map": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/is-map/-/is-map-2.0.2.tgz", + "integrity": "sha512-cOZFQQozTha1f4MxLFzlgKYPTyj26picdZTx82hbc/Xf4K/tZOOXSCkMvU4pKioRXGDLJRn0GM7Upe7kR721yg==", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-negative-zero": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.2.tgz", + "integrity": "sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "engines": { + "node": ">=0.12.0" + } + }, + "node_modules/is-number-object": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.7.tgz", + "integrity": "sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==", + "dependencies": { + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-path-inside": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz", + "integrity": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/is-regex": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz", + "integrity": "sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==", + "dependencies": { + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-set": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/is-set/-/is-set-2.0.2.tgz", + "integrity": "sha512-+2cnTEZeY5z/iXGbLhPrOAaK/Mau5k5eXq9j14CpRTftq0pAJu2MwVRSZhyZWBzx3o6X795Lz6Bpb6R0GKf37g==", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-shared-array-buffer": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.2.tgz", + "integrity": "sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==", + "dependencies": { + "call-bind": "^1.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-string": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz", + "integrity": "sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==", + "dependencies": { + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-symbol": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.4.tgz", + "integrity": "sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==", + "dependencies": { + "has-symbols": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-typed-array": { + "version": "1.1.12", + "resolved": "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.12.tgz", + "integrity": "sha512-Z14TF2JNG8Lss5/HMqt0//T9JeHXttXy5pH/DBU4vi98ozO2btxzq9MwYDZYnKwU8nRsz/+GVFVRDq3DkVuSPg==", + "dependencies": { + "which-typed-array": "^1.1.11" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-weakmap": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-weakmap/-/is-weakmap-2.0.1.tgz", + "integrity": "sha512-NSBR4kH5oVj1Uwvv970ruUkCV7O1mzgVFO4/rev2cLRda9Tm9HrL70ZPut4rOHgY0FNrUu9BCbXA2sdQ+x0chA==", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-weakref": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-weakref/-/is-weakref-1.0.2.tgz", + "integrity": "sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==", + "dependencies": { + "call-bind": "^1.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-weakset": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/is-weakset/-/is-weakset-2.0.2.tgz", + "integrity": "sha512-t2yVvttHkQktwnNNmBQ98AhENLdPUTDTE21uPqAQ0ARwQfGeQKRVS0NNurH7bTf7RrvcVn1OOge45CnBeHCSmg==", + "dependencies": { + "call-bind": "^1.0.2", + "get-intrinsic": "^1.1.1" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/isarray": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz", + "integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==" + }, + "node_modules/isexe": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==" + }, + "node_modules/iterator.prototype": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/iterator.prototype/-/iterator.prototype-1.1.1.tgz", + "integrity": "sha512-9E+nePc8C9cnQldmNl6bgpTY6zI4OPRZd97fhJ/iVZ1GifIUDVV5F6x1nEDqpe8KaMEZGT4xgrwKQDxXnjOIZQ==", + "dependencies": { + "define-properties": "^1.2.0", + "get-intrinsic": "^1.2.1", + "has-symbols": "^1.0.3", + "reflect.getprototypeof": "^1.0.3" + } + }, + "node_modules/js-tokens": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", + "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==" + }, + "node_modules/js-yaml": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", + "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", + "dependencies": { + "argparse": "^2.0.1" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" + } + }, + "node_modules/json-buffer": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz", + "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==" + }, + "node_modules/json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==" + }, + "node_modules/json-stable-stringify-without-jsonify": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", + "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==" + }, + "node_modules/json5": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.2.tgz", + "integrity": "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==", + "dependencies": { + "minimist": "^1.2.0" + }, + "bin": { + "json5": "lib/cli.js" + } + }, + "node_modules/jsx-ast-utils": { + "version": "3.3.5", + "resolved": "https://registry.npmjs.org/jsx-ast-utils/-/jsx-ast-utils-3.3.5.tgz", + "integrity": "sha512-ZZow9HBI5O6EPgSJLUb8n2NKgmVWTwCvHGwFuJlMjvLFqlGG6pjirPhtdsseaLZjSibD8eegzmYpUZwoIlj2cQ==", + "dependencies": { + "array-includes": "^3.1.6", + "array.prototype.flat": "^1.3.1", + "object.assign": "^4.1.4", + "object.values": "^1.1.6" + }, + "engines": { + "node": ">=4.0" + } + }, + "node_modules/keyv": { + "version": "4.5.3", + "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.3.tgz", + "integrity": "sha512-QCiSav9WaX1PgETJ+SpNnx2PRRapJ/oRSXM4VO5OGYGSjrxbKPVFVhB3l2OCbLCk329N8qyAtsJjSjvVBWzEug==", + "dependencies": { + "json-buffer": "3.0.1" + } + }, + "node_modules/language-subtag-registry": { + "version": "0.3.22", + "resolved": "https://registry.npmjs.org/language-subtag-registry/-/language-subtag-registry-0.3.22.tgz", + "integrity": "sha512-tN0MCzyWnoz/4nHS6uxdlFWoUZT7ABptwKPQ52Ea7URk6vll88bWBVhodtnlfEuCcKWNGoc+uGbw1cwa9IKh/w==" + }, + "node_modules/language-tags": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/language-tags/-/language-tags-1.0.5.tgz", + "integrity": "sha512-qJhlO9cGXi6hBGKoxEG/sKZDAHD5Hnu9Hs4WbOY3pCWXDhw0N8x1NenNzm2EnNLkLkk7J2SdxAkDSbb6ftT+UQ==", + "dependencies": { + "language-subtag-registry": "~0.3.2" + } + }, + "node_modules/levn": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", + "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", + "dependencies": { + "prelude-ls": "^1.2.1", + "type-check": "~0.4.0" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/locate-path": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", + "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", + "dependencies": { + "p-locate": "^5.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/lodash.merge": { + "version": "4.6.2", + "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", + "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==" + }, + "node_modules/loose-envify": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz", + "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==", + "dependencies": { + "js-tokens": "^3.0.0 || ^4.0.0" + }, + "bin": { + "loose-envify": "cli.js" + } + }, + "node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/merge2": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", + "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", + "engines": { + "node": ">= 8" + } + }, + "node_modules/micromatch": { + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", + "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", + "dependencies": { + "braces": "^3.0.2", + "picomatch": "^2.3.1" + }, + "engines": { + "node": ">=8.6" + } + }, + "node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, + "node_modules/minimist": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", + "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" + }, + "node_modules/nanoid": { + "version": "3.3.6", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.6.tgz", + "integrity": "sha512-BGcqMMJuToF7i1rt+2PWSNVnWIkGCU78jBG3RxO/bZlnZPK2Cmi2QaffxGO/2RvWi9sL+FAiRiXMgsyxQ1DIDA==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "bin": { + "nanoid": "bin/nanoid.cjs" + }, + "engines": { + "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" + } + }, + "node_modules/natural-compare": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", + "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==" + }, + "node_modules/next": { + "version": "13.4.19", + "resolved": "https://registry.npmjs.org/next/-/next-13.4.19.tgz", + "integrity": "sha512-HuPSzzAbJ1T4BD8e0bs6B9C1kWQ6gv8ykZoRWs5AQoiIuqbGHHdQO7Ljuvg05Q0Z24E2ABozHe6FxDvI6HfyAw==", + "dependencies": { + "@next/env": "13.4.19", + "@swc/helpers": "0.5.1", + "busboy": "1.6.0", + "caniuse-lite": "^1.0.30001406", + "postcss": "8.4.14", + "styled-jsx": "5.1.1", + "watchpack": "2.4.0", + "zod": "3.21.4" + }, + "bin": { + "next": "dist/bin/next" + }, + "engines": { + "node": ">=16.8.0" + }, + "optionalDependencies": { + "@next/swc-darwin-arm64": "13.4.19", + "@next/swc-darwin-x64": "13.4.19", + "@next/swc-linux-arm64-gnu": "13.4.19", + "@next/swc-linux-arm64-musl": "13.4.19", + "@next/swc-linux-x64-gnu": "13.4.19", + "@next/swc-linux-x64-musl": "13.4.19", + "@next/swc-win32-arm64-msvc": "13.4.19", + "@next/swc-win32-ia32-msvc": "13.4.19", + "@next/swc-win32-x64-msvc": "13.4.19" + }, + "peerDependencies": { + "@opentelemetry/api": "^1.1.0", + "react": "^18.2.0", + "react-dom": "^18.2.0", + "sass": "^1.3.0" + }, + "peerDependenciesMeta": { + "@opentelemetry/api": { + "optional": true + }, + "sass": { + "optional": true + } + } + }, + "node_modules/object-assign": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", + "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object-inspect": { + "version": "1.12.3", + "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.12.3.tgz", + "integrity": "sha512-geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g==", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/object-keys": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", + "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/object.assign": { + "version": "4.1.4", + "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.4.tgz", + "integrity": "sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ==", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "has-symbols": "^1.0.3", + "object-keys": "^1.1.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/object.entries": { + "version": "1.1.7", + "resolved": "https://registry.npmjs.org/object.entries/-/object.entries-1.1.7.tgz", + "integrity": "sha512-jCBs/0plmPsOnrKAfFQXRG2NFjlhZgjjcBLSmTnEhU8U6vVTsVe8ANeQJCHTl3gSsI4J+0emOoCgoKlmQPMgmA==", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/object.fromentries": { + "version": "2.0.7", + "resolved": "https://registry.npmjs.org/object.fromentries/-/object.fromentries-2.0.7.tgz", + "integrity": "sha512-UPbPHML6sL8PI/mOqPwsH4G6iyXcCGzLin8KvEPenOZN5lpCNBZZQ+V62vdjB1mQHrmqGQt5/OJzemUA+KJmEA==", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/object.groupby": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/object.groupby/-/object.groupby-1.0.1.tgz", + "integrity": "sha512-HqaQtqLnp/8Bn4GL16cj+CUYbnpe1bh0TtEaWvybszDG4tgxCJuRpV8VGuvNaI1fAnI4lUJzDG55MXcOH4JZcQ==", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1", + "get-intrinsic": "^1.2.1" + } + }, + "node_modules/object.hasown": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/object.hasown/-/object.hasown-1.1.3.tgz", + "integrity": "sha512-fFI4VcYpRHvSLXxP7yiZOMAd331cPfd2p7PFDVbgUsYOfCT3tICVqXWngbjr4m49OvsBwUBQ6O2uQoJvy3RexA==", + "dependencies": { + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/object.values": { + "version": "1.1.7", + "resolved": "https://registry.npmjs.org/object.values/-/object.values-1.1.7.tgz", + "integrity": "sha512-aU6xnDFYT3x17e/f0IiiwlGPTy2jzMySGfUB4fq6z7CV8l85CWHDk5ErhyhpfDHhrOMwGFhSQkhMGHaIotA6Ng==", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/once": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", + "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", + "dependencies": { + "wrappy": "1" + } + }, + "node_modules/optionator": { + "version": "0.9.3", + "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.3.tgz", + "integrity": "sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg==", + "dependencies": { + "@aashutoshrathi/word-wrap": "^1.2.3", + "deep-is": "^0.1.3", + "fast-levenshtein": "^2.0.6", + "levn": "^0.4.1", + "prelude-ls": "^1.2.1", + "type-check": "^0.4.0" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/p-limit": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", + "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", + "dependencies": { + "yocto-queue": "^0.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/p-locate": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", + "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", + "dependencies": { + "p-limit": "^3.0.2" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/parent-module": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", + "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", + "dependencies": { + "callsites": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/path-exists": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", + "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", + "engines": { + "node": ">=8" + } + }, + "node_modules/path-is-absolute": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", + "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/path-key": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", + "engines": { + "node": ">=8" + } + }, + "node_modules/path-parse": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", + "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==" + }, + "node_modules/path-type": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", + "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==", + "engines": { + "node": ">=8" + } + }, + "node_modules/picocolors": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", + "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==" + }, + "node_modules/picomatch": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "engines": { + "node": ">=8.6" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/postcss": { + "version": "8.4.14", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.14.tgz", + "integrity": "sha512-E398TUmfAYFPBSdzgeieK2Y1+1cpdxJx8yXbK/m57nRhKSmk1GB2tO4lbLBtlkfPQTDKfe4Xqv1ASWPpayPEig==", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/postcss" + } + ], + "dependencies": { + "nanoid": "^3.3.4", + "picocolors": "^1.0.0", + "source-map-js": "^1.0.2" + }, + "engines": { + "node": "^10 || ^12 || >=14" + } + }, + "node_modules/prelude-ls": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", + "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/prop-types": { + "version": "15.8.1", + "resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.8.1.tgz", + "integrity": "sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==", + "dependencies": { + "loose-envify": "^1.4.0", + "object-assign": "^4.1.1", + "react-is": "^16.13.1" + } + }, + "node_modules/punycode": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.0.tgz", + "integrity": "sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA==", + "engines": { + "node": ">=6" + } + }, + "node_modules/queue-microtask": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", + "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/react": { + "version": "18.2.0", + "resolved": "https://registry.npmjs.org/react/-/react-18.2.0.tgz", + "integrity": "sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==", + "dependencies": { + "loose-envify": "^1.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/react-dom": { + "version": "18.2.0", + "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-18.2.0.tgz", + "integrity": "sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g==", + "dependencies": { + "loose-envify": "^1.1.0", + "scheduler": "^0.23.0" + }, + "peerDependencies": { + "react": "^18.2.0" + } + }, + "node_modules/react-is": { + "version": "16.13.1", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz", + "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==" + }, + "node_modules/reflect.getprototypeof": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/reflect.getprototypeof/-/reflect.getprototypeof-1.0.4.tgz", + "integrity": "sha512-ECkTw8TmJwW60lOTR+ZkODISW6RQ8+2CL3COqtiJKLd6MmB45hN51HprHFziKLGkAuTGQhBb91V8cy+KHlaCjw==", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1", + "get-intrinsic": "^1.2.1", + "globalthis": "^1.0.3", + "which-builtin-type": "^1.1.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/regenerator-runtime": { + "version": "0.14.0", + "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.14.0.tgz", + "integrity": "sha512-srw17NI0TUWHuGa5CFGGmhfNIeja30WMBfbslPNhf6JrqQlLN5gcrvig1oqPxiVaXb0oW0XRKtH6Nngs5lKCIA==" + }, + "node_modules/regexp.prototype.flags": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.5.0.tgz", + "integrity": "sha512-0SutC3pNudRKgquxGoRGIz946MZVHqbNfPjBdxeOhBrdgDKlRoXmYLQN9xRbrR09ZXWeGAdPuif7egofn6v5LA==", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "functions-have-names": "^1.2.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/resolve": { + "version": "1.22.4", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.4.tgz", + "integrity": "sha512-PXNdCiPqDqeUou+w1C2eTQbNfxKSuMxqTCuvlmmMsk1NWHL5fRrhY6Pl0qEYYc6+QqGClco1Qj8XnjPego4wfg==", + "dependencies": { + "is-core-module": "^2.13.0", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + }, + "bin": { + "resolve": "bin/resolve" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/resolve-from": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", + "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", + "engines": { + "node": ">=4" + } + }, + "node_modules/resolve-pkg-maps": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/resolve-pkg-maps/-/resolve-pkg-maps-1.0.0.tgz", + "integrity": "sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==", + "funding": { + "url": "https://github.com/privatenumber/resolve-pkg-maps?sponsor=1" + } + }, + "node_modules/reusify": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", + "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", + "engines": { + "iojs": ">=1.0.0", + "node": ">=0.10.0" + } + }, + "node_modules/rimraf": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", + "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", + "dependencies": { + "glob": "^7.1.3" + }, + "bin": { + "rimraf": "bin.js" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/run-parallel": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", + "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "dependencies": { + "queue-microtask": "^1.2.2" + } + }, + "node_modules/safe-array-concat": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/safe-array-concat/-/safe-array-concat-1.0.1.tgz", + "integrity": "sha512-6XbUAseYE2KtOuGueyeobCySj9L4+66Tn6KQMOPQJrAJEowYKW/YR/MGJZl7FdydUdaFu4LYyDZjxf4/Nmo23Q==", + "dependencies": { + "call-bind": "^1.0.2", + "get-intrinsic": "^1.2.1", + "has-symbols": "^1.0.3", + "isarray": "^2.0.5" + }, + "engines": { + "node": ">=0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/safe-regex-test": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/safe-regex-test/-/safe-regex-test-1.0.0.tgz", + "integrity": "sha512-JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA==", + "dependencies": { + "call-bind": "^1.0.2", + "get-intrinsic": "^1.1.3", + "is-regex": "^1.1.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/scheduler": { + "version": "0.23.0", + "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.23.0.tgz", + "integrity": "sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw==", + "dependencies": { + "loose-envify": "^1.1.0" + } + }, + "node_modules/semver": { + "version": "7.5.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", + "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/shebang-command": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", + "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", + "dependencies": { + "shebang-regex": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/shebang-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", + "engines": { + "node": ">=8" + } + }, + "node_modules/side-channel": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz", + "integrity": "sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==", + "dependencies": { + "call-bind": "^1.0.0", + "get-intrinsic": "^1.0.2", + "object-inspect": "^1.9.0" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/slash": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", + "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", + "engines": { + "node": ">=8" + } + }, + "node_modules/source-map-js": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.0.2.tgz", + "integrity": "sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/streamsearch": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/streamsearch/-/streamsearch-1.1.0.tgz", + "integrity": "sha512-Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg==", + "engines": { + "node": ">=10.0.0" + } + }, + "node_modules/string.prototype.matchall": { + "version": "4.0.9", + "resolved": "https://registry.npmjs.org/string.prototype.matchall/-/string.prototype.matchall-4.0.9.tgz", + "integrity": "sha512-6i5hL3MqG/K2G43mWXWgP+qizFW/QH/7kCNN13JrJS5q48FN5IKksLDscexKP3dnmB6cdm9jlNgAsWNLpSykmA==", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1", + "get-intrinsic": "^1.2.1", + "has-symbols": "^1.0.3", + "internal-slot": "^1.0.5", + "regexp.prototype.flags": "^1.5.0", + "side-channel": "^1.0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/string.prototype.trim": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/string.prototype.trim/-/string.prototype.trim-1.2.8.tgz", + "integrity": "sha512-lfjY4HcixfQXOfaqCvcBuOIapyaroTXhbkfJN3gcB1OtyupngWK4sEET9Knd0cXd28kTUqu/kHoV4HKSJdnjiQ==", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/string.prototype.trimend": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.7.tgz", + "integrity": "sha512-Ni79DqeB72ZFq1uH/L6zJ+DKZTkOtPIHovb3YZHQViE+HDouuU4mBrLOLDn5Dde3RF8qw5qVETEjhu9locMLvA==", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/string.prototype.trimstart": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.7.tgz", + "integrity": "sha512-NGhtDFu3jCEm7B4Fy0DpLewdJQOZcQ0rGbwQ/+stjnrp2i+rlKeCvos9hOIeCmqwratM47OBxY7uFZzjxHXmrg==", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-bom": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", + "integrity": "sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==", + "engines": { + "node": ">=4" + } + }, + "node_modules/strip-json-comments": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", + "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/styled-jsx": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/styled-jsx/-/styled-jsx-5.1.1.tgz", + "integrity": "sha512-pW7uC1l4mBZ8ugbiZrcIsiIvVx1UmTfw7UkC3Um2tmfUq9Bhk8IiyEIPl6F8agHgjzku6j0xQEZbfA5uSgSaCw==", + "dependencies": { + "client-only": "0.0.1" + }, + "engines": { + "node": ">= 12.0.0" + }, + "peerDependencies": { + "react": ">= 16.8.0 || 17.x.x || ^18.0.0-0" + }, + "peerDependenciesMeta": { + "@babel/core": { + "optional": true + }, + "babel-plugin-macros": { + "optional": true + } + } + }, + "node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/supports-preserve-symlinks-flag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", + "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/tapable": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/tapable/-/tapable-2.2.1.tgz", + "integrity": "sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==", + "engines": { + "node": ">=6" + } + }, + "node_modules/text-table": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", + "integrity": "sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==" + }, + "node_modules/to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "dependencies": { + "is-number": "^7.0.0" + }, + "engines": { + "node": ">=8.0" + } + }, + "node_modules/ts-api-utils": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/ts-api-utils/-/ts-api-utils-1.0.3.tgz", + "integrity": "sha512-wNMeqtMz5NtwpT/UZGY5alT+VoKdSsOOP/kqHFcUW1P/VRhH2wJ48+DN2WwUliNbQ976ETwDL0Ifd2VVvgonvg==", + "engines": { + "node": ">=16.13.0" + }, + "peerDependencies": { + "typescript": ">=4.2.0" + } + }, + "node_modules/tsconfig-paths": { + "version": "3.14.2", + "resolved": "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.14.2.tgz", + "integrity": "sha512-o/9iXgCYc5L/JxCHPe3Hvh8Q/2xm5Z+p18PESBU6Ff33695QnCHBEjcytY2q19ua7Mbl/DavtBOLq+oG0RCL+g==", + "dependencies": { + "@types/json5": "^0.0.29", + "json5": "^1.0.2", + "minimist": "^1.2.6", + "strip-bom": "^3.0.0" + } + }, + "node_modules/tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==" + }, + "node_modules/type-check": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", + "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", + "dependencies": { + "prelude-ls": "^1.2.1" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/type-fest": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", + "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/typed-array-buffer": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/typed-array-buffer/-/typed-array-buffer-1.0.0.tgz", + "integrity": "sha512-Y8KTSIglk9OZEr8zywiIHG/kmQ7KWyjseXs1CbSo8vC42w7hg2HgYTxSWwP0+is7bWDc1H+Fo026CpHFwm8tkw==", + "dependencies": { + "call-bind": "^1.0.2", + "get-intrinsic": "^1.2.1", + "is-typed-array": "^1.1.10" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/typed-array-byte-length": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/typed-array-byte-length/-/typed-array-byte-length-1.0.0.tgz", + "integrity": "sha512-Or/+kvLxNpeQ9DtSydonMxCx+9ZXOswtwJn17SNLvhptaXYDJvkFFP5zbfU/uLmvnBJlI4yrnXRxpdWH/M5tNA==", + "dependencies": { + "call-bind": "^1.0.2", + "for-each": "^0.3.3", + "has-proto": "^1.0.1", + "is-typed-array": "^1.1.10" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/typed-array-byte-offset": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/typed-array-byte-offset/-/typed-array-byte-offset-1.0.0.tgz", + "integrity": "sha512-RD97prjEt9EL8YgAgpOkf3O4IF9lhJFr9g0htQkm0rchFp/Vx7LW5Q8fSXXub7BXAODyUQohRMyOc3faCPd0hg==", + "dependencies": { + "available-typed-arrays": "^1.0.5", + "call-bind": "^1.0.2", + "for-each": "^0.3.3", + "has-proto": "^1.0.1", + "is-typed-array": "^1.1.10" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/typed-array-length": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/typed-array-length/-/typed-array-length-1.0.4.tgz", + "integrity": "sha512-KjZypGq+I/H7HI5HlOoGHkWUUGq+Q0TPhQurLbyrVrvnKTBgzLhIJ7j6J/XTQOi0d1RjyZ0wdas8bKs2p0x3Ng==", + "dependencies": { + "call-bind": "^1.0.2", + "for-each": "^0.3.3", + "is-typed-array": "^1.1.9" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/typescript": { + "version": "5.2.2", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.2.2.tgz", + "integrity": "sha512-mI4WrpHsbCIcwT9cF4FZvr80QUeKvsUsUvKDoR+X/7XHQH98xYD8YHZg7ANtz2GtZt/CBq2QJ0thkGJMHfqc1w==", + "bin": { + "tsc": "bin/tsc", + "tsserver": "bin/tsserver" + }, + "engines": { + "node": ">=14.17" + } + }, + "node_modules/unbox-primitive": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.2.tgz", + "integrity": "sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==", + "dependencies": { + "call-bind": "^1.0.2", + "has-bigints": "^1.0.2", + "has-symbols": "^1.0.3", + "which-boxed-primitive": "^1.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/uri-js": { + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", + "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", + "dependencies": { + "punycode": "^2.1.0" + } + }, + "node_modules/watchpack": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-2.4.0.tgz", + "integrity": "sha512-Lcvm7MGST/4fup+ifyKi2hjyIAwcdI4HRgtvTpIUxBRhB+RFtUh8XtDOxUfctVCnhVi+QQj49i91OyvzkJl6cg==", + "dependencies": { + "glob-to-regexp": "^0.4.1", + "graceful-fs": "^4.1.2" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/which": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "node-which": "bin/node-which" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/which-boxed-primitive": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz", + "integrity": "sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==", + "dependencies": { + "is-bigint": "^1.0.1", + "is-boolean-object": "^1.1.0", + "is-number-object": "^1.0.4", + "is-string": "^1.0.5", + "is-symbol": "^1.0.3" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/which-builtin-type": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/which-builtin-type/-/which-builtin-type-1.1.3.tgz", + "integrity": "sha512-YmjsSMDBYsM1CaFiayOVT06+KJeXf0o5M/CAd4o1lTadFAtacTUM49zoYxr/oroopFDfhvN6iEcBxUyc3gvKmw==", + "dependencies": { + "function.prototype.name": "^1.1.5", + "has-tostringtag": "^1.0.0", + "is-async-function": "^2.0.0", + "is-date-object": "^1.0.5", + "is-finalizationregistry": "^1.0.2", + "is-generator-function": "^1.0.10", + "is-regex": "^1.1.4", + "is-weakref": "^1.0.2", + "isarray": "^2.0.5", + "which-boxed-primitive": "^1.0.2", + "which-collection": "^1.0.1", + "which-typed-array": "^1.1.9" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/which-collection": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/which-collection/-/which-collection-1.0.1.tgz", + "integrity": "sha512-W8xeTUwaln8i3K/cY1nGXzdnVZlidBcagyNFtBdD5kxnb4TvGKR7FfSIS3mYpwWS1QUCutfKz8IY8RjftB0+1A==", + "dependencies": { + "is-map": "^2.0.1", + "is-set": "^2.0.1", + "is-weakmap": "^2.0.1", + "is-weakset": "^2.0.1" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/which-typed-array": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.11.tgz", + "integrity": "sha512-qe9UWWpkeG5yzZ0tNYxDmd7vo58HDBc39mZ0xWWpolAGADdFOzkfamWLDxkOWcvHQKVmdTyQdLD4NOfjLWTKew==", + "dependencies": { + "available-typed-arrays": "^1.0.5", + "call-bind": "^1.0.2", + "for-each": "^0.3.3", + "gopd": "^1.0.1", + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/wrappy": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==" + }, + "node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==" + }, + "node_modules/yocto-queue": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", + "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/zod": { + "version": "3.21.4", + "resolved": "https://registry.npmjs.org/zod/-/zod-3.21.4.tgz", + "integrity": "sha512-m46AKbrzKVzOzs/DZgVnG5H55N1sv1M8qZU3A8RIKbs3mrACDNeIOeilDymVb2HdmP8uwshOCF4uJ8uM9rCqJw==", + "funding": { + "url": "https://github.com/sponsors/colinhacks" + } + } + }, + "dependencies": { + "@aashutoshrathi/word-wrap": { + "version": "1.2.6", + "resolved": "https://registry.npmjs.org/@aashutoshrathi/word-wrap/-/word-wrap-1.2.6.tgz", + "integrity": "sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==" + }, + "@babel/runtime": { + "version": "7.22.15", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.22.15.tgz", + "integrity": "sha512-T0O+aa+4w0u06iNmapipJXMV4HoUir03hpx3/YqXXhu9xim3w+dVphjFWl1OH8NbZHw5Lbm9k45drDkgq2VNNA==", + "requires": { + "regenerator-runtime": "^0.14.0" + } + }, + "@eslint-community/eslint-utils": { + "version": "4.4.0", + "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.4.0.tgz", + "integrity": "sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==", + "requires": { + "eslint-visitor-keys": "^3.3.0" + } + }, + "@eslint-community/regexpp": { + "version": "4.8.0", + "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.8.0.tgz", + "integrity": "sha512-JylOEEzDiOryeUnFbQz+oViCXS0KsvR1mvHkoMiu5+UiBvy+RYX7tzlIIIEstF/gVa2tj9AQXk3dgnxv6KxhFg==" + }, + "@eslint/eslintrc": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-2.1.2.tgz", + "integrity": "sha512-+wvgpDsrB1YqAMdEUCcnTlpfVBH7Vqn6A/NT3D8WVXFIaKMlErPIZT3oCIAVCOtarRpMtelZLqJeU3t7WY6X6g==", + "requires": { + "ajv": "^6.12.4", + "debug": "^4.3.2", + "espree": "^9.6.0", + "globals": "^13.19.0", + "ignore": "^5.2.0", + "import-fresh": "^3.2.1", + "js-yaml": "^4.1.0", + "minimatch": "^3.1.2", + "strip-json-comments": "^3.1.1" + } + }, + "@eslint/js": { + "version": "8.49.0", + "resolved": "https://registry.npmjs.org/@eslint/js/-/js-8.49.0.tgz", + "integrity": "sha512-1S8uAY/MTJqVx0SC4epBq+N2yhuwtNwLbJYNZyhL2pO1ZVKn5HFXav5T41Ryzy9K9V7ZId2JB2oy/W4aCd9/2w==" + }, + "@humanwhocodes/config-array": { + "version": "0.11.11", + "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.11.tgz", + "integrity": "sha512-N2brEuAadi0CcdeMXUkhbZB84eskAc8MEX1By6qEchoVywSgXPIjou4rYsl0V3Hj0ZnuGycGCjdNgockbzeWNA==", + "requires": { + "@humanwhocodes/object-schema": "^1.2.1", + "debug": "^4.1.1", + "minimatch": "^3.0.5" + } + }, + "@humanwhocodes/module-importer": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz", + "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==" + }, + "@humanwhocodes/object-schema": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz", + "integrity": "sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==" + }, + "@next/env": { + "version": "13.4.19", + "resolved": "https://registry.npmjs.org/@next/env/-/env-13.4.19.tgz", + "integrity": "sha512-FsAT5x0jF2kkhNkKkukhsyYOrRqtSxrEhfliniIq0bwWbuXLgyt3Gv0Ml+b91XwjwArmuP7NxCiGd++GGKdNMQ==" + }, + "@next/eslint-plugin-next": { + "version": "13.4.19", + "resolved": "https://registry.npmjs.org/@next/eslint-plugin-next/-/eslint-plugin-next-13.4.19.tgz", + "integrity": "sha512-N/O+zGb6wZQdwu6atMZHbR7T9Np5SUFUjZqCbj0sXm+MwQO35M8TazVB4otm87GkXYs2l6OPwARd3/PUWhZBVQ==", + "requires": { + "glob": "7.1.7" + } + }, + "@next/swc-darwin-arm64": { + "version": "13.4.19", + "resolved": "https://registry.npmjs.org/@next/swc-darwin-arm64/-/swc-darwin-arm64-13.4.19.tgz", + "integrity": "sha512-vv1qrjXeGbuF2mOkhkdxMDtv9np7W4mcBtaDnHU+yJG+bBwa6rYsYSCI/9Xm5+TuF5SbZbrWO6G1NfTh1TMjvQ==", + "optional": true + }, + "@next/swc-darwin-x64": { + "version": "13.4.19", + "resolved": "https://registry.npmjs.org/@next/swc-darwin-x64/-/swc-darwin-x64-13.4.19.tgz", + "integrity": "sha512-jyzO6wwYhx6F+7gD8ddZfuqO4TtpJdw3wyOduR4fxTUCm3aLw7YmHGYNjS0xRSYGAkLpBkH1E0RcelyId6lNsw==", + "optional": true + }, + "@next/swc-linux-arm64-gnu": { + "version": "13.4.19", + "resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-gnu/-/swc-linux-arm64-gnu-13.4.19.tgz", + "integrity": "sha512-vdlnIlaAEh6H+G6HrKZB9c2zJKnpPVKnA6LBwjwT2BTjxI7e0Hx30+FoWCgi50e+YO49p6oPOtesP9mXDRiiUg==", + "optional": true + }, + "@next/swc-linux-arm64-musl": { + "version": "13.4.19", + "resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-musl/-/swc-linux-arm64-musl-13.4.19.tgz", + "integrity": "sha512-aU0HkH2XPgxqrbNRBFb3si9Ahu/CpaR5RPmN2s9GiM9qJCiBBlZtRTiEca+DC+xRPyCThTtWYgxjWHgU7ZkyvA==", + "optional": true + }, + "@next/swc-linux-x64-gnu": { + "version": "13.4.19", + "resolved": "https://registry.npmjs.org/@next/swc-linux-x64-gnu/-/swc-linux-x64-gnu-13.4.19.tgz", + "integrity": "sha512-htwOEagMa/CXNykFFeAHHvMJeqZfNQEoQvHfsA4wgg5QqGNqD5soeCer4oGlCol6NGUxknrQO6VEustcv+Md+g==", + "optional": true + }, + "@next/swc-linux-x64-musl": { + "version": "13.4.19", + "resolved": "https://registry.npmjs.org/@next/swc-linux-x64-musl/-/swc-linux-x64-musl-13.4.19.tgz", + "integrity": "sha512-4Gj4vvtbK1JH8ApWTT214b3GwUh9EKKQjY41hH/t+u55Knxi/0wesMzwQRhppK6Ddalhu0TEttbiJ+wRcoEj5Q==", + "optional": true + }, + "@next/swc-win32-arm64-msvc": { + "version": "13.4.19", + "resolved": "https://registry.npmjs.org/@next/swc-win32-arm64-msvc/-/swc-win32-arm64-msvc-13.4.19.tgz", + "integrity": "sha512-bUfDevQK4NsIAHXs3/JNgnvEY+LRyneDN788W2NYiRIIzmILjba7LaQTfihuFawZDhRtkYCv3JDC3B4TwnmRJw==", + "optional": true + }, + "@next/swc-win32-ia32-msvc": { + "version": "13.4.19", + "resolved": "https://registry.npmjs.org/@next/swc-win32-ia32-msvc/-/swc-win32-ia32-msvc-13.4.19.tgz", + "integrity": "sha512-Y5kikILFAr81LYIFaw6j/NrOtmiM4Sf3GtOc0pn50ez2GCkr+oejYuKGcwAwq3jiTKuzF6OF4iT2INPoxRycEA==", + "optional": true + }, + "@next/swc-win32-x64-msvc": { + "version": "13.4.19", + "resolved": "https://registry.npmjs.org/@next/swc-win32-x64-msvc/-/swc-win32-x64-msvc-13.4.19.tgz", + "integrity": "sha512-YzA78jBDXMYiINdPdJJwGgPNT3YqBNNGhsthsDoWHL9p24tEJn9ViQf/ZqTbwSpX/RrkPupLfuuTH2sf73JBAw==", + "optional": true + }, + "@nodelib/fs.scandir": { + "version": "2.1.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", + "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", + "requires": { + "@nodelib/fs.stat": "2.0.5", + "run-parallel": "^1.1.9" + } + }, + "@nodelib/fs.stat": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", + "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==" + }, + "@nodelib/fs.walk": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", + "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", + "requires": { + "@nodelib/fs.scandir": "2.1.5", + "fastq": "^1.6.0" + } + }, + "@rushstack/eslint-patch": { + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/@rushstack/eslint-patch/-/eslint-patch-1.3.3.tgz", + "integrity": "sha512-0xd7qez0AQ+MbHatZTlI1gu5vkG8r7MYRUJAHPAHJBmGLs16zpkrpAVLvjQKQOqaXPDUBwOiJzNc00znHSCVBw==" + }, + "@swc/helpers": { + "version": "0.5.1", + "resolved": "https://registry.npmjs.org/@swc/helpers/-/helpers-0.5.1.tgz", + "integrity": "sha512-sJ902EfIzn1Fa+qYmjdQqh8tPsoxyBz+8yBKC2HKUxyezKJFwPGOn7pv4WY6QuQW//ySQi5lJjA/ZT9sNWWNTg==", + "requires": { + "tslib": "^2.4.0" + } + }, + "@types/json5": { + "version": "0.0.29", + "resolved": "https://registry.npmjs.org/@types/json5/-/json5-0.0.29.tgz", + "integrity": "sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==" + }, + "@types/node": { + "version": "20.6.0", + "resolved": "https://registry.npmjs.org/@types/node/-/node-20.6.0.tgz", + "integrity": "sha512-najjVq5KN2vsH2U/xyh2opaSEz6cZMR2SetLIlxlj08nOcmPOemJmUK2o4kUzfLqfrWE0PIrNeE16XhYDd3nqg==" + }, + "@types/prop-types": { + "version": "15.7.5", + "resolved": "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.5.tgz", + "integrity": "sha512-JCB8C6SnDoQf0cNycqd/35A7MjcnK+ZTqE7judS6o7utxUCg6imJg3QK2qzHKszlTjcj2cn+NwMB2i96ubpj7w==" + }, + "@types/react": { + "version": "18.2.21", + "resolved": "https://registry.npmjs.org/@types/react/-/react-18.2.21.tgz", + "integrity": "sha512-neFKG/sBAwGxHgXiIxnbm3/AAVQ/cMRS93hvBpg8xYRbeQSPVABp9U2bRnPf0iI4+Ucdv3plSxKK+3CW2ENJxA==", + "requires": { + "@types/prop-types": "*", + "@types/scheduler": "*", + "csstype": "^3.0.2" + } + }, + "@types/react-dom": { + "version": "18.2.7", + "resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-18.2.7.tgz", + "integrity": "sha512-GRaAEriuT4zp9N4p1i8BDBYmEyfo+xQ3yHjJU4eiK5NDa1RmUZG+unZABUTK4/Ox/M+GaHwb6Ow8rUITrtjszA==", + "requires": { + "@types/react": "*" + } + }, + "@types/scheduler": { + "version": "0.16.3", + "resolved": "https://registry.npmjs.org/@types/scheduler/-/scheduler-0.16.3.tgz", + "integrity": "sha512-5cJ8CB4yAx7BH1oMvdU0Jh9lrEXyPkar6F9G/ERswkCuvP4KQZfZkSjcMbAICCpQTN4OuZn8tz0HiKv9TGZgrQ==" + }, + "@typescript-eslint/parser": { + "version": "6.6.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-6.6.0.tgz", + "integrity": "sha512-setq5aJgUwtzGrhW177/i+DMLqBaJbdwGj2CPIVFFLE0NCliy5ujIdLHd2D1ysmlmsjdL2GWW+hR85neEfc12w==", + "requires": { + "@typescript-eslint/scope-manager": "6.6.0", + "@typescript-eslint/types": "6.6.0", + "@typescript-eslint/typescript-estree": "6.6.0", + "@typescript-eslint/visitor-keys": "6.6.0", + "debug": "^4.3.4" + } + }, + "@typescript-eslint/scope-manager": { + "version": "6.6.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-6.6.0.tgz", + "integrity": "sha512-pT08u5W/GT4KjPUmEtc2kSYvrH8x89cVzkA0Sy2aaOUIw6YxOIjA8ilwLr/1fLjOedX1QAuBpG9XggWqIIfERw==", + "requires": { + "@typescript-eslint/types": "6.6.0", + "@typescript-eslint/visitor-keys": "6.6.0" + } + }, + "@typescript-eslint/types": { + "version": "6.6.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-6.6.0.tgz", + "integrity": "sha512-CB6QpJQ6BAHlJXdwUmiaXDBmTqIE2bzGTDLADgvqtHWuhfNP3rAOK7kAgRMAET5rDRr9Utt+qAzRBdu3AhR3sg==" + }, + "@typescript-eslint/typescript-estree": { + "version": "6.6.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-6.6.0.tgz", + "integrity": "sha512-hMcTQ6Al8MP2E6JKBAaSxSVw5bDhdmbCEhGW/V8QXkb9oNsFkA4SBuOMYVPxD3jbtQ4R/vSODBsr76R6fP3tbA==", + "requires": { + "@typescript-eslint/types": "6.6.0", + "@typescript-eslint/visitor-keys": "6.6.0", + "debug": "^4.3.4", + "globby": "^11.1.0", + "is-glob": "^4.0.3", + "semver": "^7.5.4", + "ts-api-utils": "^1.0.1" + } + }, + "@typescript-eslint/visitor-keys": { + "version": "6.6.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-6.6.0.tgz", + "integrity": "sha512-L61uJT26cMOfFQ+lMZKoJNbAEckLe539VhTxiGHrWl5XSKQgA0RTBZJW2HFPy5T0ZvPVSD93QsrTKDkfNwJGyQ==", + "requires": { + "@typescript-eslint/types": "6.6.0", + "eslint-visitor-keys": "^3.4.1" + } + }, + "acorn": { + "version": "8.10.0", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.10.0.tgz", + "integrity": "sha512-F0SAmZ8iUtS//m8DmCTA0jlh6TDKkHQyK6xc6V4KDTyZKA9dnvX9/3sRTVQrWm79glUAZbnmmNcdYwUIHWVybw==" + }, + "acorn-jsx": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", + "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", + "requires": {} + }, + "ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "requires": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + } + }, + "ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==" + }, + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "requires": { + "color-convert": "^2.0.1" + } + }, + "argparse": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==" + }, + "aria-query": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/aria-query/-/aria-query-5.3.0.tgz", + "integrity": "sha512-b0P0sZPKtyu8HkeRAfCq0IfURZK+SuwMjY1UXGBU27wpAiTwQAIlq56IbIO+ytk/JjS1fMR14ee5WBBfKi5J6A==", + "requires": { + "dequal": "^2.0.3" + } + }, + "array-buffer-byte-length": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/array-buffer-byte-length/-/array-buffer-byte-length-1.0.0.tgz", + "integrity": "sha512-LPuwb2P+NrQw3XhxGc36+XSvuBPopovXYTR9Ew++Du9Yb/bx5AzBfrIsBoj0EZUifjQU+sHL21sseZ3jerWO/A==", + "requires": { + "call-bind": "^1.0.2", + "is-array-buffer": "^3.0.1" + } + }, + "array-includes": { + "version": "3.1.7", + "resolved": "https://registry.npmjs.org/array-includes/-/array-includes-3.1.7.tgz", + "integrity": "sha512-dlcsNBIiWhPkHdOEEKnehA+RNUWDc4UqFtnIXU4uuYDPtA4LDkr7qip2p0VvFAEXNDr0yWZ9PJyIRiGjRLQzwQ==", + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1", + "get-intrinsic": "^1.2.1", + "is-string": "^1.0.7" + } + }, + "array-union": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz", + "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==" + }, + "array.prototype.findlastindex": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/array.prototype.findlastindex/-/array.prototype.findlastindex-1.2.3.tgz", + "integrity": "sha512-LzLoiOMAxvy+Gd3BAq3B7VeIgPdo+Q8hthvKtXybMvRV0jrXfJM/t8mw7nNlpEcVlVUnCnM2KSX4XU5HmpodOA==", + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1", + "es-shim-unscopables": "^1.0.0", + "get-intrinsic": "^1.2.1" + } + }, + "array.prototype.flat": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/array.prototype.flat/-/array.prototype.flat-1.3.2.tgz", + "integrity": "sha512-djYB+Zx2vLewY8RWlNCUdHjDXs2XOgm602S9E7P/UpHgfeHL00cRiIF+IN/G/aUJ7kGPb6yO/ErDI5V2s8iycA==", + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1", + "es-shim-unscopables": "^1.0.0" + } + }, + "array.prototype.flatmap": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/array.prototype.flatmap/-/array.prototype.flatmap-1.3.2.tgz", + "integrity": "sha512-Ewyx0c9PmpcsByhSW4r+9zDU7sGjFc86qf/kKtuSCRdhfbk0SNLLkaT5qvcHnRGgc5NP/ly/y+qkXkqONX54CQ==", + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1", + "es-shim-unscopables": "^1.0.0" + } + }, + "array.prototype.tosorted": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/array.prototype.tosorted/-/array.prototype.tosorted-1.1.2.tgz", + "integrity": "sha512-HuQCHOlk1Weat5jzStICBCd83NxiIMwqDg/dHEsoefabn/hJRj5pVdWcPUSpRrwhwxZOsQassMpgN/xRYFBMIg==", + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1", + "es-shim-unscopables": "^1.0.0", + "get-intrinsic": "^1.2.1" + } + }, + "arraybuffer.prototype.slice": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/arraybuffer.prototype.slice/-/arraybuffer.prototype.slice-1.0.2.tgz", + "integrity": "sha512-yMBKppFur/fbHu9/6USUe03bZ4knMYiwFBcyiaXB8Go0qNehwX6inYPzK9U0NeQvGxKthcmHcaR8P5MStSRBAw==", + "requires": { + "array-buffer-byte-length": "^1.0.0", + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1", + "get-intrinsic": "^1.2.1", + "is-array-buffer": "^3.0.2", + "is-shared-array-buffer": "^1.0.2" + } + }, + "ast-types-flow": { + "version": "0.0.7", + "resolved": "https://registry.npmjs.org/ast-types-flow/-/ast-types-flow-0.0.7.tgz", + "integrity": "sha512-eBvWn1lvIApYMhzQMsu9ciLfkBY499mFZlNqG+/9WR7PVlroQw0vG30cOQQbaKz3sCEc44TAOu2ykzqXSNnwag==" + }, + "asynciterator.prototype": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/asynciterator.prototype/-/asynciterator.prototype-1.0.0.tgz", + "integrity": "sha512-wwHYEIS0Q80f5mosx3L/dfG5t5rjEa9Ft51GTaNt862EnpyGHpgz2RkZvLPp1oF5TnAiTohkEKVEu8pQPJI7Vg==", + "requires": { + "has-symbols": "^1.0.3" + } + }, + "available-typed-arrays": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.5.tgz", + "integrity": "sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw==" + }, + "axe-core": { + "version": "4.8.1", + "resolved": "https://registry.npmjs.org/axe-core/-/axe-core-4.8.1.tgz", + "integrity": "sha512-9l850jDDPnKq48nbad8SiEelCv4OrUWrKab/cPj0GScVg6cb6NbCCt/Ulk26QEq5jP9NnGr04Bit1BHyV6r5CQ==" + }, + "axobject-query": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/axobject-query/-/axobject-query-3.2.1.tgz", + "integrity": "sha512-jsyHu61e6N4Vbz/v18DHwWYKK0bSWLqn47eeDSKPB7m8tqMHF9YJ+mhIk2lVteyZrY8tnSj/jHOv4YiTCuCJgg==", + "requires": { + "dequal": "^2.0.3" + } + }, + "balanced-match": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==" + }, + "brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "requires": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "braces": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", + "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", + "requires": { + "fill-range": "^7.0.1" + } + }, + "busboy": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/busboy/-/busboy-1.6.0.tgz", + "integrity": "sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA==", + "requires": { + "streamsearch": "^1.1.0" + } + }, + "call-bind": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz", + "integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==", + "requires": { + "function-bind": "^1.1.1", + "get-intrinsic": "^1.0.2" + } + }, + "callsites": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", + "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==" + }, + "caniuse-lite": { + "version": "1.0.30001532", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001532.tgz", + "integrity": "sha512-FbDFnNat3nMnrROzqrsg314zhqN5LGQ1kyyMk2opcrwGbVGpHRhgCWtAgD5YJUqNAiQ+dklreil/c3Qf1dfCTw==" + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "client-only": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/client-only/-/client-only-0.0.1.tgz", + "integrity": "sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA==" + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==" + }, + "cross-spawn": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", + "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", + "requires": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + } + }, + "csstype": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.1.2.tgz", + "integrity": "sha512-I7K1Uu0MBPzaFKg4nI5Q7Vs2t+3gWWW648spaF+Rg7pI9ds18Ugn+lvg4SHczUdKlHI5LWBXyqfS8+DufyBsgQ==" + }, + "damerau-levenshtein": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/damerau-levenshtein/-/damerau-levenshtein-1.0.8.tgz", + "integrity": "sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA==" + }, + "debug": { + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", + "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", + "requires": { + "ms": "2.1.2" + } + }, + "deep-is": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", + "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==" + }, + "define-properties": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.2.0.tgz", + "integrity": "sha512-xvqAVKGfT1+UAvPwKTVw/njhdQ8ZhXK4lI0bCIuCMrp2up9nPnaDftrLtmpTazqd1o+UY4zgzU+avtMbDP+ldA==", + "requires": { + "has-property-descriptors": "^1.0.0", + "object-keys": "^1.1.1" + } + }, + "dequal": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/dequal/-/dequal-2.0.3.tgz", + "integrity": "sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==" + }, + "dir-glob": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz", + "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==", + "requires": { + "path-type": "^4.0.0" + } + }, + "doctrine": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz", + "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==", + "requires": { + "esutils": "^2.0.2" + } + }, + "emoji-regex": { + "version": "9.2.2", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", + "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==" + }, + "enhanced-resolve": { + "version": "5.15.0", + "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.15.0.tgz", + "integrity": "sha512-LXYT42KJ7lpIKECr2mAXIaMldcNCh/7E0KBKOu4KSfkHmP+mZmSs+8V5gBAqisWBy0OO4W5Oyys0GO1Y8KtdKg==", + "requires": { + "graceful-fs": "^4.2.4", + "tapable": "^2.2.0" + } + }, + "es-abstract": { + "version": "1.22.1", + "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.22.1.tgz", + "integrity": "sha512-ioRRcXMO6OFyRpyzV3kE1IIBd4WG5/kltnzdxSCqoP8CMGs/Li+M1uF5o7lOkZVFjDs+NLesthnF66Pg/0q0Lw==", + "requires": { + "array-buffer-byte-length": "^1.0.0", + "arraybuffer.prototype.slice": "^1.0.1", + "available-typed-arrays": "^1.0.5", + "call-bind": "^1.0.2", + "es-set-tostringtag": "^2.0.1", + "es-to-primitive": "^1.2.1", + "function.prototype.name": "^1.1.5", + "get-intrinsic": "^1.2.1", + "get-symbol-description": "^1.0.0", + "globalthis": "^1.0.3", + "gopd": "^1.0.1", + "has": "^1.0.3", + "has-property-descriptors": "^1.0.0", + "has-proto": "^1.0.1", + "has-symbols": "^1.0.3", + "internal-slot": "^1.0.5", + "is-array-buffer": "^3.0.2", + "is-callable": "^1.2.7", + "is-negative-zero": "^2.0.2", + "is-regex": "^1.1.4", + "is-shared-array-buffer": "^1.0.2", + "is-string": "^1.0.7", + "is-typed-array": "^1.1.10", + "is-weakref": "^1.0.2", + "object-inspect": "^1.12.3", + "object-keys": "^1.1.1", + "object.assign": "^4.1.4", + "regexp.prototype.flags": "^1.5.0", + "safe-array-concat": "^1.0.0", + "safe-regex-test": "^1.0.0", + "string.prototype.trim": "^1.2.7", + "string.prototype.trimend": "^1.0.6", + "string.prototype.trimstart": "^1.0.6", + "typed-array-buffer": "^1.0.0", + "typed-array-byte-length": "^1.0.0", + "typed-array-byte-offset": "^1.0.0", + "typed-array-length": "^1.0.4", + "unbox-primitive": "^1.0.2", + "which-typed-array": "^1.1.10" + } + }, + "es-iterator-helpers": { + "version": "1.0.14", + "resolved": "https://registry.npmjs.org/es-iterator-helpers/-/es-iterator-helpers-1.0.14.tgz", + "integrity": "sha512-JgtVnwiuoRuzLvqelrvN3Xu7H9bu2ap/kQ2CrM62iidP8SKuD99rWU3CJy++s7IVL2qb/AjXPGR/E7i9ngd/Cw==", + "requires": { + "asynciterator.prototype": "^1.0.0", + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1", + "es-set-tostringtag": "^2.0.1", + "function-bind": "^1.1.1", + "get-intrinsic": "^1.2.1", + "globalthis": "^1.0.3", + "has-property-descriptors": "^1.0.0", + "has-proto": "^1.0.1", + "has-symbols": "^1.0.3", + "internal-slot": "^1.0.5", + "iterator.prototype": "^1.1.0", + "safe-array-concat": "^1.0.0" + } + }, + "es-set-tostringtag": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.0.1.tgz", + "integrity": "sha512-g3OMbtlwY3QewlqAiMLI47KywjWZoEytKr8pf6iTC8uJq5bIAH52Z9pnQ8pVL6whrCto53JZDuUIsifGeLorTg==", + "requires": { + "get-intrinsic": "^1.1.3", + "has": "^1.0.3", + "has-tostringtag": "^1.0.0" + } + }, + "es-shim-unscopables": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/es-shim-unscopables/-/es-shim-unscopables-1.0.0.tgz", + "integrity": "sha512-Jm6GPcCdC30eMLbZ2x8z2WuRwAws3zTBBKuusffYVUrNj/GVSUAZ+xKMaUpfNDR5IbyNA5LJbaecoUVbmUcB1w==", + "requires": { + "has": "^1.0.3" + } + }, + "es-to-primitive": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz", + "integrity": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==", + "requires": { + "is-callable": "^1.1.4", + "is-date-object": "^1.0.1", + "is-symbol": "^1.0.2" + } + }, + "escape-string-regexp": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", + "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==" + }, + "eslint": { + "version": "8.49.0", + "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.49.0.tgz", + "integrity": "sha512-jw03ENfm6VJI0jA9U+8H5zfl5b+FvuU3YYvZRdZHOlU2ggJkxrlkJH4HcDrZpj6YwD8kuYqvQM8LyesoazrSOQ==", + "requires": { + "@eslint-community/eslint-utils": "^4.2.0", + "@eslint-community/regexpp": "^4.6.1", + "@eslint/eslintrc": "^2.1.2", + "@eslint/js": "8.49.0", + "@humanwhocodes/config-array": "^0.11.11", + "@humanwhocodes/module-importer": "^1.0.1", + "@nodelib/fs.walk": "^1.2.8", + "ajv": "^6.12.4", + "chalk": "^4.0.0", + "cross-spawn": "^7.0.2", + "debug": "^4.3.2", + "doctrine": "^3.0.0", + "escape-string-regexp": "^4.0.0", + "eslint-scope": "^7.2.2", + "eslint-visitor-keys": "^3.4.3", + "espree": "^9.6.1", + "esquery": "^1.4.2", + "esutils": "^2.0.2", + "fast-deep-equal": "^3.1.3", + "file-entry-cache": "^6.0.1", + "find-up": "^5.0.0", + "glob-parent": "^6.0.2", + "globals": "^13.19.0", + "graphemer": "^1.4.0", + "ignore": "^5.2.0", + "imurmurhash": "^0.1.4", + "is-glob": "^4.0.0", + "is-path-inside": "^3.0.3", + "js-yaml": "^4.1.0", + "json-stable-stringify-without-jsonify": "^1.0.1", + "levn": "^0.4.1", + "lodash.merge": "^4.6.2", + "minimatch": "^3.1.2", + "natural-compare": "^1.4.0", + "optionator": "^0.9.3", + "strip-ansi": "^6.0.1", + "text-table": "^0.2.0" + } + }, + "eslint-config-next": { + "version": "13.4.19", + "resolved": "https://registry.npmjs.org/eslint-config-next/-/eslint-config-next-13.4.19.tgz", + "integrity": "sha512-WE8367sqMnjhWHvR5OivmfwENRQ1ixfNE9hZwQqNCsd+iM3KnuMc1V8Pt6ytgjxjf23D+xbesADv9x3xaKfT3g==", + "requires": { + "@next/eslint-plugin-next": "13.4.19", + "@rushstack/eslint-patch": "^1.1.3", + "@typescript-eslint/parser": "^5.4.2 || ^6.0.0", + "eslint-import-resolver-node": "^0.3.6", + "eslint-import-resolver-typescript": "^3.5.2", + "eslint-plugin-import": "^2.26.0", + "eslint-plugin-jsx-a11y": "^6.5.1", + "eslint-plugin-react": "^7.31.7", + "eslint-plugin-react-hooks": "^4.5.0 || 5.0.0-canary-7118f5dd7-20230705" + } + }, + "eslint-import-resolver-node": { + "version": "0.3.9", + "resolved": "https://registry.npmjs.org/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.9.tgz", + "integrity": "sha512-WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g==", + "requires": { + "debug": "^3.2.7", + "is-core-module": "^2.13.0", + "resolve": "^1.22.4" + }, + "dependencies": { + "debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "requires": { + "ms": "^2.1.1" + } + } + } + }, + "eslint-import-resolver-typescript": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/eslint-import-resolver-typescript/-/eslint-import-resolver-typescript-3.6.0.tgz", + "integrity": "sha512-QTHR9ddNnn35RTxlaEnx2gCxqFlF2SEN0SE2d17SqwyM7YOSI2GHWRYp5BiRkObTUNYPupC/3Fq2a0PpT+EKpg==", + "requires": { + "debug": "^4.3.4", + "enhanced-resolve": "^5.12.0", + "eslint-module-utils": "^2.7.4", + "fast-glob": "^3.3.1", + "get-tsconfig": "^4.5.0", + "is-core-module": "^2.11.0", + "is-glob": "^4.0.3" + } + }, + "eslint-module-utils": { + "version": "2.8.0", + "resolved": "https://registry.npmjs.org/eslint-module-utils/-/eslint-module-utils-2.8.0.tgz", + "integrity": "sha512-aWajIYfsqCKRDgUfjEXNN/JlrzauMuSEy5sbd7WXbtW3EH6A6MpwEh42c7qD+MqQo9QMJ6fWLAeIJynx0g6OAw==", + "requires": { + "debug": "^3.2.7" + }, + "dependencies": { + "debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "requires": { + "ms": "^2.1.1" + } + } + } + }, + "eslint-plugin-import": { + "version": "2.28.1", + "resolved": "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.28.1.tgz", + "integrity": "sha512-9I9hFlITvOV55alzoKBI+K9q74kv0iKMeY6av5+umsNwayt59fz692daGyjR+oStBQgx6nwR9rXldDev3Clw+A==", + "requires": { + "array-includes": "^3.1.6", + "array.prototype.findlastindex": "^1.2.2", + "array.prototype.flat": "^1.3.1", + "array.prototype.flatmap": "^1.3.1", + "debug": "^3.2.7", + "doctrine": "^2.1.0", + "eslint-import-resolver-node": "^0.3.7", + "eslint-module-utils": "^2.8.0", + "has": "^1.0.3", + "is-core-module": "^2.13.0", + "is-glob": "^4.0.3", + "minimatch": "^3.1.2", + "object.fromentries": "^2.0.6", + "object.groupby": "^1.0.0", + "object.values": "^1.1.6", + "semver": "^6.3.1", + "tsconfig-paths": "^3.14.2" + }, + "dependencies": { + "debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "requires": { + "ms": "^2.1.1" + } + }, + "doctrine": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", + "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", + "requires": { + "esutils": "^2.0.2" + } + }, + "semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==" + } + } + }, + "eslint-plugin-jsx-a11y": { + "version": "6.7.1", + "resolved": "https://registry.npmjs.org/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.7.1.tgz", + "integrity": "sha512-63Bog4iIethyo8smBklORknVjB0T2dwB8Mr/hIC+fBS0uyHdYYpzM/Ed+YC8VxTjlXHEWFOdmgwcDn1U2L9VCA==", + "requires": { + "@babel/runtime": "^7.20.7", + "aria-query": "^5.1.3", + "array-includes": "^3.1.6", + "array.prototype.flatmap": "^1.3.1", + "ast-types-flow": "^0.0.7", + "axe-core": "^4.6.2", + "axobject-query": "^3.1.1", + "damerau-levenshtein": "^1.0.8", + "emoji-regex": "^9.2.2", + "has": "^1.0.3", + "jsx-ast-utils": "^3.3.3", + "language-tags": "=1.0.5", + "minimatch": "^3.1.2", + "object.entries": "^1.1.6", + "object.fromentries": "^2.0.6", + "semver": "^6.3.0" + }, + "dependencies": { + "semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==" + } + } + }, + "eslint-plugin-react": { + "version": "7.33.2", + "resolved": "https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-7.33.2.tgz", + "integrity": "sha512-73QQMKALArI8/7xGLNI/3LylrEYrlKZSb5C9+q3OtOewTnMQi5cT+aE9E41sLCmli3I9PGGmD1yiZydyo4FEPw==", + "requires": { + "array-includes": "^3.1.6", + "array.prototype.flatmap": "^1.3.1", + "array.prototype.tosorted": "^1.1.1", + "doctrine": "^2.1.0", + "es-iterator-helpers": "^1.0.12", + "estraverse": "^5.3.0", + "jsx-ast-utils": "^2.4.1 || ^3.0.0", + "minimatch": "^3.1.2", + "object.entries": "^1.1.6", + "object.fromentries": "^2.0.6", + "object.hasown": "^1.1.2", + "object.values": "^1.1.6", + "prop-types": "^15.8.1", + "resolve": "^2.0.0-next.4", + "semver": "^6.3.1", + "string.prototype.matchall": "^4.0.8" + }, + "dependencies": { + "doctrine": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", + "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", + "requires": { + "esutils": "^2.0.2" + } + }, + "resolve": { + "version": "2.0.0-next.4", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-2.0.0-next.4.tgz", + "integrity": "sha512-iMDbmAWtfU+MHpxt/I5iWI7cY6YVEZUQ3MBgPQ++XD1PELuJHIl82xBmObyP2KyQmkNB2dsqF7seoQQiAn5yDQ==", + "requires": { + "is-core-module": "^2.9.0", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + } + }, + "semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==" + } + } + }, + "eslint-plugin-react-hooks": { + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-4.6.0.tgz", + "integrity": "sha512-oFc7Itz9Qxh2x4gNHStv3BqJq54ExXmfC+a1NjAta66IAN87Wu0R/QArgIS9qKzX3dXKPI9H5crl9QchNMY9+g==", + "requires": {} + }, + "eslint-scope": { + "version": "7.2.2", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.2.2.tgz", + "integrity": "sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==", + "requires": { + "esrecurse": "^4.3.0", + "estraverse": "^5.2.0" + } + }, + "eslint-visitor-keys": { + "version": "3.4.3", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz", + "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==" + }, + "espree": { + "version": "9.6.1", + "resolved": "https://registry.npmjs.org/espree/-/espree-9.6.1.tgz", + "integrity": "sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==", + "requires": { + "acorn": "^8.9.0", + "acorn-jsx": "^5.3.2", + "eslint-visitor-keys": "^3.4.1" + } + }, + "esquery": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.5.0.tgz", + "integrity": "sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==", + "requires": { + "estraverse": "^5.1.0" + } + }, + "esrecurse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", + "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", + "requires": { + "estraverse": "^5.2.0" + } + }, + "estraverse": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", + "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==" + }, + "esutils": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", + "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==" + }, + "fast-deep-equal": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", + "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==" + }, + "fast-glob": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.1.tgz", + "integrity": "sha512-kNFPyjhh5cKjrUltxs+wFx+ZkbRaxxmZ+X0ZU31SOsxCEtP9VPgtq2teZw1DebupL5GmDaNQ6yKMMVcM41iqDg==", + "requires": { + "@nodelib/fs.stat": "^2.0.2", + "@nodelib/fs.walk": "^1.2.3", + "glob-parent": "^5.1.2", + "merge2": "^1.3.0", + "micromatch": "^4.0.4" + }, + "dependencies": { + "glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "requires": { + "is-glob": "^4.0.1" + } + } + } + }, + "fast-json-stable-stringify": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", + "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==" + }, + "fast-levenshtein": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", + "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==" + }, + "fastq": { + "version": "1.15.0", + "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.15.0.tgz", + "integrity": "sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==", + "requires": { + "reusify": "^1.0.4" + } + }, + "file-entry-cache": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz", + "integrity": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==", + "requires": { + "flat-cache": "^3.0.4" + } + }, + "fill-range": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", + "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", + "requires": { + "to-regex-range": "^5.0.1" + } + }, + "find-up": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", + "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", + "requires": { + "locate-path": "^6.0.0", + "path-exists": "^4.0.0" + } + }, + "flat-cache": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.1.0.tgz", + "integrity": "sha512-OHx4Qwrrt0E4jEIcI5/Xb+f+QmJYNj2rrK8wiIdQOIrB9WrrJL8cjZvXdXuBTkkEwEqLycb5BeZDV1o2i9bTew==", + "requires": { + "flatted": "^3.2.7", + "keyv": "^4.5.3", + "rimraf": "^3.0.2" + } + }, + "flatted": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.2.7.tgz", + "integrity": "sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ==" + }, + "for-each": { + "version": "0.3.3", + "resolved": "https://registry.npmjs.org/for-each/-/for-each-0.3.3.tgz", + "integrity": "sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==", + "requires": { + "is-callable": "^1.1.3" + } + }, + "fs.realpath": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", + "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==" + }, + "function-bind": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", + "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==" + }, + "function.prototype.name": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.6.tgz", + "integrity": "sha512-Z5kx79swU5P27WEayXM1tBi5Ze/lbIyiNgU3qyXUOf9b2rgXYyF9Dy9Cx+IQv/Lc8WCG6L82zwUPpSS9hGehIg==", + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1", + "functions-have-names": "^1.2.3" + } + }, + "functions-have-names": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz", + "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==" + }, + "get-intrinsic": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.1.tgz", + "integrity": "sha512-2DcsyfABl+gVHEfCOaTrWgyt+tb6MSEGmKq+kI5HwLbIYgjgmMcV8KQ41uaKz1xxUcn9tJtgFbQUEVcEbd0FYw==", + "requires": { + "function-bind": "^1.1.1", + "has": "^1.0.3", + "has-proto": "^1.0.1", + "has-symbols": "^1.0.3" + } + }, + "get-symbol-description": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.0.0.tgz", + "integrity": "sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==", + "requires": { + "call-bind": "^1.0.2", + "get-intrinsic": "^1.1.1" + } + }, + "get-tsconfig": { + "version": "4.7.0", + "resolved": "https://registry.npmjs.org/get-tsconfig/-/get-tsconfig-4.7.0.tgz", + "integrity": "sha512-pmjiZ7xtB8URYm74PlGJozDNyhvsVLUcpBa8DZBG3bWHwaHa9bPiRpiSfovw+fjhwONSCWKRyk+JQHEGZmMrzw==", + "requires": { + "resolve-pkg-maps": "^1.0.0" + } + }, + "glob": { + "version": "7.1.7", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.7.tgz", + "integrity": "sha512-OvD9ENzPLbegENnYP5UUfJIirTg4+XwMWGaQfQTY0JenxNvvIKP3U3/tAQSPIu/lHxXYSZmpXlUHeqAIdKzBLQ==", + "requires": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.0.4", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + } + }, + "glob-parent": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", + "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", + "requires": { + "is-glob": "^4.0.3" + } + }, + "glob-to-regexp": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz", + "integrity": "sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==" + }, + "globals": { + "version": "13.21.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-13.21.0.tgz", + "integrity": "sha512-ybyme3s4yy/t/3s35bewwXKOf7cvzfreG2lH0lZl0JB7I4GxRP2ghxOK/Nb9EkRXdbBXZLfq/p/0W2JUONB/Gg==", + "requires": { + "type-fest": "^0.20.2" + } + }, + "globalthis": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/globalthis/-/globalthis-1.0.3.tgz", + "integrity": "sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==", + "requires": { + "define-properties": "^1.1.3" + } + }, + "globby": { + "version": "11.1.0", + "resolved": "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz", + "integrity": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==", + "requires": { + "array-union": "^2.1.0", + "dir-glob": "^3.0.1", + "fast-glob": "^3.2.9", + "ignore": "^5.2.0", + "merge2": "^1.4.1", + "slash": "^3.0.0" + } + }, + "gopd": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz", + "integrity": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==", + "requires": { + "get-intrinsic": "^1.1.3" + } + }, + "graceful-fs": { + "version": "4.2.11", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", + "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==" + }, + "graphemer": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/graphemer/-/graphemer-1.4.0.tgz", + "integrity": "sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==" + }, + "has": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", + "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", + "requires": { + "function-bind": "^1.1.1" + } + }, + "has-bigints": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.2.tgz", + "integrity": "sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==" + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" + }, + "has-property-descriptors": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.0.tgz", + "integrity": "sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ==", + "requires": { + "get-intrinsic": "^1.1.1" + } + }, + "has-proto": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.0.1.tgz", + "integrity": "sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==" + }, + "has-symbols": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", + "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==" + }, + "has-tostringtag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.0.tgz", + "integrity": "sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==", + "requires": { + "has-symbols": "^1.0.2" + } + }, + "ignore": { + "version": "5.2.4", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.2.4.tgz", + "integrity": "sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==" + }, + "import-fresh": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", + "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", + "requires": { + "parent-module": "^1.0.0", + "resolve-from": "^4.0.0" + } + }, + "imurmurhash": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", + "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==" + }, + "inflight": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", + "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", + "requires": { + "once": "^1.3.0", + "wrappy": "1" + } + }, + "inherits": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" + }, + "internal-slot": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.5.tgz", + "integrity": "sha512-Y+R5hJrzs52QCG2laLn4udYVnxsfny9CpOhNhUvk/SSSVyF6T27FzRbF0sroPidSu3X8oEAkOn2K804mjpt6UQ==", + "requires": { + "get-intrinsic": "^1.2.0", + "has": "^1.0.3", + "side-channel": "^1.0.4" + } + }, + "is-array-buffer": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/is-array-buffer/-/is-array-buffer-3.0.2.tgz", + "integrity": "sha512-y+FyyR/w8vfIRq4eQcM1EYgSTnmHXPqaF+IgzgraytCFq5Xh8lllDVmAZolPJiZttZLeFSINPYMaEJ7/vWUa1w==", + "requires": { + "call-bind": "^1.0.2", + "get-intrinsic": "^1.2.0", + "is-typed-array": "^1.1.10" + } + }, + "is-async-function": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-async-function/-/is-async-function-2.0.0.tgz", + "integrity": "sha512-Y1JXKrfykRJGdlDwdKlLpLyMIiWqWvuSd17TvZk68PLAOGOoF4Xyav1z0Xhoi+gCYjZVeC5SI+hYFOfvXmGRCA==", + "requires": { + "has-tostringtag": "^1.0.0" + } + }, + "is-bigint": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.4.tgz", + "integrity": "sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==", + "requires": { + "has-bigints": "^1.0.1" + } + }, + "is-boolean-object": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.2.tgz", + "integrity": "sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==", + "requires": { + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + } + }, + "is-callable": { + "version": "1.2.7", + "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz", + "integrity": "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==" + }, + "is-core-module": { + "version": "2.13.0", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.13.0.tgz", + "integrity": "sha512-Z7dk6Qo8pOCp3l4tsX2C5ZVas4V+UxwQodwZhLopL91TX8UyyHEXafPcyoeeWuLrwzHcr3igO78wNLwHJHsMCQ==", + "requires": { + "has": "^1.0.3" + } + }, + "is-date-object": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.5.tgz", + "integrity": "sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==", + "requires": { + "has-tostringtag": "^1.0.0" + } + }, + "is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==" + }, + "is-finalizationregistry": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-finalizationregistry/-/is-finalizationregistry-1.0.2.tgz", + "integrity": "sha512-0by5vtUJs8iFQb5TYUHHPudOR+qXYIMKtiUzvLIZITZUjknFmziyBJuLhVRc+Ds0dREFlskDNJKYIdIzu/9pfw==", + "requires": { + "call-bind": "^1.0.2" + } + }, + "is-generator-function": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/is-generator-function/-/is-generator-function-1.0.10.tgz", + "integrity": "sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A==", + "requires": { + "has-tostringtag": "^1.0.0" + } + }, + "is-glob": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", + "requires": { + "is-extglob": "^2.1.1" + } + }, + "is-map": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/is-map/-/is-map-2.0.2.tgz", + "integrity": "sha512-cOZFQQozTha1f4MxLFzlgKYPTyj26picdZTx82hbc/Xf4K/tZOOXSCkMvU4pKioRXGDLJRn0GM7Upe7kR721yg==" + }, + "is-negative-zero": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.2.tgz", + "integrity": "sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==" + }, + "is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==" + }, + "is-number-object": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.7.tgz", + "integrity": "sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==", + "requires": { + "has-tostringtag": "^1.0.0" + } + }, + "is-path-inside": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz", + "integrity": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==" + }, + "is-regex": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz", + "integrity": "sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==", + "requires": { + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + } + }, + "is-set": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/is-set/-/is-set-2.0.2.tgz", + "integrity": "sha512-+2cnTEZeY5z/iXGbLhPrOAaK/Mau5k5eXq9j14CpRTftq0pAJu2MwVRSZhyZWBzx3o6X795Lz6Bpb6R0GKf37g==" + }, + "is-shared-array-buffer": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.2.tgz", + "integrity": "sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==", + "requires": { + "call-bind": "^1.0.2" + } + }, + "is-string": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz", + "integrity": "sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==", + "requires": { + "has-tostringtag": "^1.0.0" + } + }, + "is-symbol": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.4.tgz", + "integrity": "sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==", + "requires": { + "has-symbols": "^1.0.2" + } + }, + "is-typed-array": { + "version": "1.1.12", + "resolved": "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.12.tgz", + "integrity": "sha512-Z14TF2JNG8Lss5/HMqt0//T9JeHXttXy5pH/DBU4vi98ozO2btxzq9MwYDZYnKwU8nRsz/+GVFVRDq3DkVuSPg==", + "requires": { + "which-typed-array": "^1.1.11" + } + }, + "is-weakmap": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-weakmap/-/is-weakmap-2.0.1.tgz", + "integrity": "sha512-NSBR4kH5oVj1Uwvv970ruUkCV7O1mzgVFO4/rev2cLRda9Tm9HrL70ZPut4rOHgY0FNrUu9BCbXA2sdQ+x0chA==" + }, + "is-weakref": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-weakref/-/is-weakref-1.0.2.tgz", + "integrity": "sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==", + "requires": { + "call-bind": "^1.0.2" + } + }, + "is-weakset": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/is-weakset/-/is-weakset-2.0.2.tgz", + "integrity": "sha512-t2yVvttHkQktwnNNmBQ98AhENLdPUTDTE21uPqAQ0ARwQfGeQKRVS0NNurH7bTf7RrvcVn1OOge45CnBeHCSmg==", + "requires": { + "call-bind": "^1.0.2", + "get-intrinsic": "^1.1.1" + } + }, + "isarray": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz", + "integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==" + }, + "isexe": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==" + }, + "iterator.prototype": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/iterator.prototype/-/iterator.prototype-1.1.1.tgz", + "integrity": "sha512-9E+nePc8C9cnQldmNl6bgpTY6zI4OPRZd97fhJ/iVZ1GifIUDVV5F6x1nEDqpe8KaMEZGT4xgrwKQDxXnjOIZQ==", + "requires": { + "define-properties": "^1.2.0", + "get-intrinsic": "^1.2.1", + "has-symbols": "^1.0.3", + "reflect.getprototypeof": "^1.0.3" + } + }, + "js-tokens": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", + "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==" + }, + "js-yaml": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", + "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", + "requires": { + "argparse": "^2.0.1" + } + }, + "json-buffer": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz", + "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==" + }, + "json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==" + }, + "json-stable-stringify-without-jsonify": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", + "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==" + }, + "json5": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.2.tgz", + "integrity": "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==", + "requires": { + "minimist": "^1.2.0" + } + }, + "jsx-ast-utils": { + "version": "3.3.5", + "resolved": "https://registry.npmjs.org/jsx-ast-utils/-/jsx-ast-utils-3.3.5.tgz", + "integrity": "sha512-ZZow9HBI5O6EPgSJLUb8n2NKgmVWTwCvHGwFuJlMjvLFqlGG6pjirPhtdsseaLZjSibD8eegzmYpUZwoIlj2cQ==", + "requires": { + "array-includes": "^3.1.6", + "array.prototype.flat": "^1.3.1", + "object.assign": "^4.1.4", + "object.values": "^1.1.6" + } + }, + "keyv": { + "version": "4.5.3", + "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.3.tgz", + "integrity": "sha512-QCiSav9WaX1PgETJ+SpNnx2PRRapJ/oRSXM4VO5OGYGSjrxbKPVFVhB3l2OCbLCk329N8qyAtsJjSjvVBWzEug==", + "requires": { + "json-buffer": "3.0.1" + } + }, + "language-subtag-registry": { + "version": "0.3.22", + "resolved": "https://registry.npmjs.org/language-subtag-registry/-/language-subtag-registry-0.3.22.tgz", + "integrity": "sha512-tN0MCzyWnoz/4nHS6uxdlFWoUZT7ABptwKPQ52Ea7URk6vll88bWBVhodtnlfEuCcKWNGoc+uGbw1cwa9IKh/w==" + }, + "language-tags": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/language-tags/-/language-tags-1.0.5.tgz", + "integrity": "sha512-qJhlO9cGXi6hBGKoxEG/sKZDAHD5Hnu9Hs4WbOY3pCWXDhw0N8x1NenNzm2EnNLkLkk7J2SdxAkDSbb6ftT+UQ==", + "requires": { + "language-subtag-registry": "~0.3.2" + } + }, + "levn": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", + "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", + "requires": { + "prelude-ls": "^1.2.1", + "type-check": "~0.4.0" + } + }, + "locate-path": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", + "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", + "requires": { + "p-locate": "^5.0.0" + } + }, + "lodash.merge": { + "version": "4.6.2", + "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", + "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==" + }, + "loose-envify": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz", + "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==", + "requires": { + "js-tokens": "^3.0.0 || ^4.0.0" + } + }, + "lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "requires": { + "yallist": "^4.0.0" + } + }, + "merge2": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", + "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==" + }, + "micromatch": { + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", + "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", + "requires": { + "braces": "^3.0.2", + "picomatch": "^2.3.1" + } + }, + "minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "requires": { + "brace-expansion": "^1.1.7" + } + }, + "minimist": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", + "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==" + }, + "ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" + }, + "nanoid": { + "version": "3.3.6", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.6.tgz", + "integrity": "sha512-BGcqMMJuToF7i1rt+2PWSNVnWIkGCU78jBG3RxO/bZlnZPK2Cmi2QaffxGO/2RvWi9sL+FAiRiXMgsyxQ1DIDA==" + }, + "natural-compare": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", + "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==" + }, + "next": { + "version": "13.4.19", + "resolved": "https://registry.npmjs.org/next/-/next-13.4.19.tgz", + "integrity": "sha512-HuPSzzAbJ1T4BD8e0bs6B9C1kWQ6gv8ykZoRWs5AQoiIuqbGHHdQO7Ljuvg05Q0Z24E2ABozHe6FxDvI6HfyAw==", + "requires": { + "@next/env": "13.4.19", + "@next/swc-darwin-arm64": "13.4.19", + "@next/swc-darwin-x64": "13.4.19", + "@next/swc-linux-arm64-gnu": "13.4.19", + "@next/swc-linux-arm64-musl": "13.4.19", + "@next/swc-linux-x64-gnu": "13.4.19", + "@next/swc-linux-x64-musl": "13.4.19", + "@next/swc-win32-arm64-msvc": "13.4.19", + "@next/swc-win32-ia32-msvc": "13.4.19", + "@next/swc-win32-x64-msvc": "13.4.19", + "@swc/helpers": "0.5.1", + "busboy": "1.6.0", + "caniuse-lite": "^1.0.30001406", + "postcss": "8.4.14", + "styled-jsx": "5.1.1", + "watchpack": "2.4.0", + "zod": "3.21.4" + } + }, + "object-assign": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", + "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==" + }, + "object-inspect": { + "version": "1.12.3", + "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.12.3.tgz", + "integrity": "sha512-geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g==" + }, + "object-keys": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", + "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==" + }, + "object.assign": { + "version": "4.1.4", + "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.4.tgz", + "integrity": "sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ==", + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "has-symbols": "^1.0.3", + "object-keys": "^1.1.1" + } + }, + "object.entries": { + "version": "1.1.7", + "resolved": "https://registry.npmjs.org/object.entries/-/object.entries-1.1.7.tgz", + "integrity": "sha512-jCBs/0plmPsOnrKAfFQXRG2NFjlhZgjjcBLSmTnEhU8U6vVTsVe8ANeQJCHTl3gSsI4J+0emOoCgoKlmQPMgmA==", + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1" + } + }, + "object.fromentries": { + "version": "2.0.7", + "resolved": "https://registry.npmjs.org/object.fromentries/-/object.fromentries-2.0.7.tgz", + "integrity": "sha512-UPbPHML6sL8PI/mOqPwsH4G6iyXcCGzLin8KvEPenOZN5lpCNBZZQ+V62vdjB1mQHrmqGQt5/OJzemUA+KJmEA==", + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1" + } + }, + "object.groupby": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/object.groupby/-/object.groupby-1.0.1.tgz", + "integrity": "sha512-HqaQtqLnp/8Bn4GL16cj+CUYbnpe1bh0TtEaWvybszDG4tgxCJuRpV8VGuvNaI1fAnI4lUJzDG55MXcOH4JZcQ==", + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1", + "get-intrinsic": "^1.2.1" + } + }, + "object.hasown": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/object.hasown/-/object.hasown-1.1.3.tgz", + "integrity": "sha512-fFI4VcYpRHvSLXxP7yiZOMAd331cPfd2p7PFDVbgUsYOfCT3tICVqXWngbjr4m49OvsBwUBQ6O2uQoJvy3RexA==", + "requires": { + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1" + } + }, + "object.values": { + "version": "1.1.7", + "resolved": "https://registry.npmjs.org/object.values/-/object.values-1.1.7.tgz", + "integrity": "sha512-aU6xnDFYT3x17e/f0IiiwlGPTy2jzMySGfUB4fq6z7CV8l85CWHDk5ErhyhpfDHhrOMwGFhSQkhMGHaIotA6Ng==", + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1" + } + }, + "once": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", + "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", + "requires": { + "wrappy": "1" + } + }, + "optionator": { + "version": "0.9.3", + "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.3.tgz", + "integrity": "sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg==", + "requires": { + "@aashutoshrathi/word-wrap": "^1.2.3", + "deep-is": "^0.1.3", + "fast-levenshtein": "^2.0.6", + "levn": "^0.4.1", + "prelude-ls": "^1.2.1", + "type-check": "^0.4.0" + } + }, + "p-limit": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", + "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", + "requires": { + "yocto-queue": "^0.1.0" + } + }, + "p-locate": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", + "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", + "requires": { + "p-limit": "^3.0.2" + } + }, + "parent-module": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", + "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", + "requires": { + "callsites": "^3.0.0" + } + }, + "path-exists": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", + "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==" + }, + "path-is-absolute": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", + "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==" + }, + "path-key": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==" + }, + "path-parse": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", + "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==" + }, + "path-type": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", + "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==" + }, + "picocolors": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", + "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==" + }, + "picomatch": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==" + }, + "postcss": { + "version": "8.4.14", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.14.tgz", + "integrity": "sha512-E398TUmfAYFPBSdzgeieK2Y1+1cpdxJx8yXbK/m57nRhKSmk1GB2tO4lbLBtlkfPQTDKfe4Xqv1ASWPpayPEig==", + "requires": { + "nanoid": "^3.3.4", + "picocolors": "^1.0.0", + "source-map-js": "^1.0.2" + } + }, + "prelude-ls": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", + "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==" + }, + "prop-types": { + "version": "15.8.1", + "resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.8.1.tgz", + "integrity": "sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==", + "requires": { + "loose-envify": "^1.4.0", + "object-assign": "^4.1.1", + "react-is": "^16.13.1" + } + }, + "punycode": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.0.tgz", + "integrity": "sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA==" + }, + "queue-microtask": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", + "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==" + }, + "react": { + "version": "18.2.0", + "resolved": "https://registry.npmjs.org/react/-/react-18.2.0.tgz", + "integrity": "sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==", + "requires": { + "loose-envify": "^1.1.0" + } + }, + "react-dom": { + "version": "18.2.0", + "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-18.2.0.tgz", + "integrity": "sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g==", + "requires": { + "loose-envify": "^1.1.0", + "scheduler": "^0.23.0" + } + }, + "react-is": { + "version": "16.13.1", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz", + "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==" + }, + "reflect.getprototypeof": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/reflect.getprototypeof/-/reflect.getprototypeof-1.0.4.tgz", + "integrity": "sha512-ECkTw8TmJwW60lOTR+ZkODISW6RQ8+2CL3COqtiJKLd6MmB45hN51HprHFziKLGkAuTGQhBb91V8cy+KHlaCjw==", + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1", + "get-intrinsic": "^1.2.1", + "globalthis": "^1.0.3", + "which-builtin-type": "^1.1.3" + } + }, + "regenerator-runtime": { + "version": "0.14.0", + "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.14.0.tgz", + "integrity": "sha512-srw17NI0TUWHuGa5CFGGmhfNIeja30WMBfbslPNhf6JrqQlLN5gcrvig1oqPxiVaXb0oW0XRKtH6Nngs5lKCIA==" + }, + "regexp.prototype.flags": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.5.0.tgz", + "integrity": "sha512-0SutC3pNudRKgquxGoRGIz946MZVHqbNfPjBdxeOhBrdgDKlRoXmYLQN9xRbrR09ZXWeGAdPuif7egofn6v5LA==", + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "functions-have-names": "^1.2.3" + } + }, + "resolve": { + "version": "1.22.4", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.4.tgz", + "integrity": "sha512-PXNdCiPqDqeUou+w1C2eTQbNfxKSuMxqTCuvlmmMsk1NWHL5fRrhY6Pl0qEYYc6+QqGClco1Qj8XnjPego4wfg==", + "requires": { + "is-core-module": "^2.13.0", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + } + }, + "resolve-from": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", + "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==" + }, + "resolve-pkg-maps": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/resolve-pkg-maps/-/resolve-pkg-maps-1.0.0.tgz", + "integrity": "sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==" + }, + "reusify": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", + "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==" + }, + "rimraf": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", + "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", + "requires": { + "glob": "^7.1.3" + } + }, + "run-parallel": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", + "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", + "requires": { + "queue-microtask": "^1.2.2" + } + }, + "safe-array-concat": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/safe-array-concat/-/safe-array-concat-1.0.1.tgz", + "integrity": "sha512-6XbUAseYE2KtOuGueyeobCySj9L4+66Tn6KQMOPQJrAJEowYKW/YR/MGJZl7FdydUdaFu4LYyDZjxf4/Nmo23Q==", + "requires": { + "call-bind": "^1.0.2", + "get-intrinsic": "^1.2.1", + "has-symbols": "^1.0.3", + "isarray": "^2.0.5" + } + }, + "safe-regex-test": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/safe-regex-test/-/safe-regex-test-1.0.0.tgz", + "integrity": "sha512-JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA==", + "requires": { + "call-bind": "^1.0.2", + "get-intrinsic": "^1.1.3", + "is-regex": "^1.1.4" + } + }, + "scheduler": { + "version": "0.23.0", + "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.23.0.tgz", + "integrity": "sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw==", + "requires": { + "loose-envify": "^1.1.0" + } + }, + "semver": { + "version": "7.5.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", + "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", + "requires": { + "lru-cache": "^6.0.0" + } + }, + "shebang-command": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", + "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", + "requires": { + "shebang-regex": "^3.0.0" + } + }, + "shebang-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==" + }, + "side-channel": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz", + "integrity": "sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==", + "requires": { + "call-bind": "^1.0.0", + "get-intrinsic": "^1.0.2", + "object-inspect": "^1.9.0" + } + }, + "slash": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", + "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==" + }, + "source-map-js": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.0.2.tgz", + "integrity": "sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==" + }, + "streamsearch": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/streamsearch/-/streamsearch-1.1.0.tgz", + "integrity": "sha512-Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg==" + }, + "string.prototype.matchall": { + "version": "4.0.9", + "resolved": "https://registry.npmjs.org/string.prototype.matchall/-/string.prototype.matchall-4.0.9.tgz", + "integrity": "sha512-6i5hL3MqG/K2G43mWXWgP+qizFW/QH/7kCNN13JrJS5q48FN5IKksLDscexKP3dnmB6cdm9jlNgAsWNLpSykmA==", + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1", + "get-intrinsic": "^1.2.1", + "has-symbols": "^1.0.3", + "internal-slot": "^1.0.5", + "regexp.prototype.flags": "^1.5.0", + "side-channel": "^1.0.4" + } + }, + "string.prototype.trim": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/string.prototype.trim/-/string.prototype.trim-1.2.8.tgz", + "integrity": "sha512-lfjY4HcixfQXOfaqCvcBuOIapyaroTXhbkfJN3gcB1OtyupngWK4sEET9Knd0cXd28kTUqu/kHoV4HKSJdnjiQ==", + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1" + } + }, + "string.prototype.trimend": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.7.tgz", + "integrity": "sha512-Ni79DqeB72ZFq1uH/L6zJ+DKZTkOtPIHovb3YZHQViE+HDouuU4mBrLOLDn5Dde3RF8qw5qVETEjhu9locMLvA==", + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1" + } + }, + "string.prototype.trimstart": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.7.tgz", + "integrity": "sha512-NGhtDFu3jCEm7B4Fy0DpLewdJQOZcQ0rGbwQ/+stjnrp2i+rlKeCvos9hOIeCmqwratM47OBxY7uFZzjxHXmrg==", + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1" + } + }, + "strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "requires": { + "ansi-regex": "^5.0.1" + } + }, + "strip-bom": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", + "integrity": "sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==" + }, + "strip-json-comments": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", + "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==" + }, + "styled-jsx": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/styled-jsx/-/styled-jsx-5.1.1.tgz", + "integrity": "sha512-pW7uC1l4mBZ8ugbiZrcIsiIvVx1UmTfw7UkC3Um2tmfUq9Bhk8IiyEIPl6F8agHgjzku6j0xQEZbfA5uSgSaCw==", + "requires": { + "client-only": "0.0.1" + } + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "requires": { + "has-flag": "^4.0.0" + } + }, + "supports-preserve-symlinks-flag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", + "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==" + }, + "tapable": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/tapable/-/tapable-2.2.1.tgz", + "integrity": "sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==" + }, + "text-table": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", + "integrity": "sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==" + }, + "to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "requires": { + "is-number": "^7.0.0" + } + }, + "ts-api-utils": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/ts-api-utils/-/ts-api-utils-1.0.3.tgz", + "integrity": "sha512-wNMeqtMz5NtwpT/UZGY5alT+VoKdSsOOP/kqHFcUW1P/VRhH2wJ48+DN2WwUliNbQ976ETwDL0Ifd2VVvgonvg==", + "requires": {} + }, + "tsconfig-paths": { + "version": "3.14.2", + "resolved": "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.14.2.tgz", + "integrity": "sha512-o/9iXgCYc5L/JxCHPe3Hvh8Q/2xm5Z+p18PESBU6Ff33695QnCHBEjcytY2q19ua7Mbl/DavtBOLq+oG0RCL+g==", + "requires": { + "@types/json5": "^0.0.29", + "json5": "^1.0.2", + "minimist": "^1.2.6", + "strip-bom": "^3.0.0" + } + }, + "tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==" + }, + "type-check": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", + "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", + "requires": { + "prelude-ls": "^1.2.1" + } + }, + "type-fest": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", + "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==" + }, + "typed-array-buffer": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/typed-array-buffer/-/typed-array-buffer-1.0.0.tgz", + "integrity": "sha512-Y8KTSIglk9OZEr8zywiIHG/kmQ7KWyjseXs1CbSo8vC42w7hg2HgYTxSWwP0+is7bWDc1H+Fo026CpHFwm8tkw==", + "requires": { + "call-bind": "^1.0.2", + "get-intrinsic": "^1.2.1", + "is-typed-array": "^1.1.10" + } + }, + "typed-array-byte-length": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/typed-array-byte-length/-/typed-array-byte-length-1.0.0.tgz", + "integrity": "sha512-Or/+kvLxNpeQ9DtSydonMxCx+9ZXOswtwJn17SNLvhptaXYDJvkFFP5zbfU/uLmvnBJlI4yrnXRxpdWH/M5tNA==", + "requires": { + "call-bind": "^1.0.2", + "for-each": "^0.3.3", + "has-proto": "^1.0.1", + "is-typed-array": "^1.1.10" + } + }, + "typed-array-byte-offset": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/typed-array-byte-offset/-/typed-array-byte-offset-1.0.0.tgz", + "integrity": "sha512-RD97prjEt9EL8YgAgpOkf3O4IF9lhJFr9g0htQkm0rchFp/Vx7LW5Q8fSXXub7BXAODyUQohRMyOc3faCPd0hg==", + "requires": { + "available-typed-arrays": "^1.0.5", + "call-bind": "^1.0.2", + "for-each": "^0.3.3", + "has-proto": "^1.0.1", + "is-typed-array": "^1.1.10" + } + }, + "typed-array-length": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/typed-array-length/-/typed-array-length-1.0.4.tgz", + "integrity": "sha512-KjZypGq+I/H7HI5HlOoGHkWUUGq+Q0TPhQurLbyrVrvnKTBgzLhIJ7j6J/XTQOi0d1RjyZ0wdas8bKs2p0x3Ng==", + "requires": { + "call-bind": "^1.0.2", + "for-each": "^0.3.3", + "is-typed-array": "^1.1.9" + } + }, + "typescript": { + "version": "5.2.2", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.2.2.tgz", + "integrity": "sha512-mI4WrpHsbCIcwT9cF4FZvr80QUeKvsUsUvKDoR+X/7XHQH98xYD8YHZg7ANtz2GtZt/CBq2QJ0thkGJMHfqc1w==" + }, + "unbox-primitive": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.2.tgz", + "integrity": "sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==", + "requires": { + "call-bind": "^1.0.2", + "has-bigints": "^1.0.2", + "has-symbols": "^1.0.3", + "which-boxed-primitive": "^1.0.2" + } + }, + "uri-js": { + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", + "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", + "requires": { + "punycode": "^2.1.0" + } + }, + "watchpack": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-2.4.0.tgz", + "integrity": "sha512-Lcvm7MGST/4fup+ifyKi2hjyIAwcdI4HRgtvTpIUxBRhB+RFtUh8XtDOxUfctVCnhVi+QQj49i91OyvzkJl6cg==", + "requires": { + "glob-to-regexp": "^0.4.1", + "graceful-fs": "^4.1.2" + } + }, + "which": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "requires": { + "isexe": "^2.0.0" + } + }, + "which-boxed-primitive": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz", + "integrity": "sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==", + "requires": { + "is-bigint": "^1.0.1", + "is-boolean-object": "^1.1.0", + "is-number-object": "^1.0.4", + "is-string": "^1.0.5", + "is-symbol": "^1.0.3" + } + }, + "which-builtin-type": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/which-builtin-type/-/which-builtin-type-1.1.3.tgz", + "integrity": "sha512-YmjsSMDBYsM1CaFiayOVT06+KJeXf0o5M/CAd4o1lTadFAtacTUM49zoYxr/oroopFDfhvN6iEcBxUyc3gvKmw==", + "requires": { + "function.prototype.name": "^1.1.5", + "has-tostringtag": "^1.0.0", + "is-async-function": "^2.0.0", + "is-date-object": "^1.0.5", + "is-finalizationregistry": "^1.0.2", + "is-generator-function": "^1.0.10", + "is-regex": "^1.1.4", + "is-weakref": "^1.0.2", + "isarray": "^2.0.5", + "which-boxed-primitive": "^1.0.2", + "which-collection": "^1.0.1", + "which-typed-array": "^1.1.9" + } + }, + "which-collection": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/which-collection/-/which-collection-1.0.1.tgz", + "integrity": "sha512-W8xeTUwaln8i3K/cY1nGXzdnVZlidBcagyNFtBdD5kxnb4TvGKR7FfSIS3mYpwWS1QUCutfKz8IY8RjftB0+1A==", + "requires": { + "is-map": "^2.0.1", + "is-set": "^2.0.1", + "is-weakmap": "^2.0.1", + "is-weakset": "^2.0.1" + } + }, + "which-typed-array": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.11.tgz", + "integrity": "sha512-qe9UWWpkeG5yzZ0tNYxDmd7vo58HDBc39mZ0xWWpolAGADdFOzkfamWLDxkOWcvHQKVmdTyQdLD4NOfjLWTKew==", + "requires": { + "available-typed-arrays": "^1.0.5", + "call-bind": "^1.0.2", + "for-each": "^0.3.3", + "gopd": "^1.0.1", + "has-tostringtag": "^1.0.0" + } + }, + "wrappy": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==" + }, + "yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==" + }, + "yocto-queue": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", + "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==" + }, + "zod": { + "version": "3.21.4", + "resolved": "https://registry.npmjs.org/zod/-/zod-3.21.4.tgz", + "integrity": "sha512-m46AKbrzKVzOzs/DZgVnG5H55N1sv1M8qZU3A8RIKbs3mrACDNeIOeilDymVb2HdmP8uwshOCF4uJ8uM9rCqJw==" + } + } +} diff --git a/site-search/site-search/package.json b/site-search/site-search/package.json new file mode 100644 index 00000000..85af7098 --- /dev/null +++ b/site-search/site-search/package.json @@ -0,0 +1,22 @@ +{ + "name": "site-search", + "version": "0.1.0", + "private": true, + "scripts": { + "dev": "next dev", + "build": "next build", + "start": "next start", + "lint": "next lint" + }, + "dependencies": { + "@types/node": "20.6.0", + "@types/react": "18.2.21", + "@types/react-dom": "18.2.7", + "eslint": "8.49.0", + "eslint-config-next": "13.4.19", + "next": "13.4.19", + "react": "18.2.0", + "react-dom": "18.2.0", + "typescript": "5.2.2" + } +} diff --git a/site-search/site-search/pages/_app.tsx b/site-search/site-search/pages/_app.tsx new file mode 100644 index 00000000..021681f4 --- /dev/null +++ b/site-search/site-search/pages/_app.tsx @@ -0,0 +1,6 @@ +import '@/styles/globals.css' +import type { AppProps } from 'next/app' + +export default function App({ Component, pageProps }: AppProps) { + return +} diff --git a/site-search/site-search/pages/_document.tsx b/site-search/site-search/pages/_document.tsx new file mode 100644 index 00000000..54e8bf3e --- /dev/null +++ b/site-search/site-search/pages/_document.tsx @@ -0,0 +1,13 @@ +import { Html, Head, Main, NextScript } from 'next/document' + +export default function Document() { + return ( + + + +
+ + + + ) +} diff --git a/site-search/site-search/pages/api/hello.ts b/site-search/site-search/pages/api/hello.ts new file mode 100644 index 00000000..f8bcc7e5 --- /dev/null +++ b/site-search/site-search/pages/api/hello.ts @@ -0,0 +1,13 @@ +// Next.js API route support: https://nextjs.org/docs/api-routes/introduction +import type { NextApiRequest, NextApiResponse } from 'next' + +type Data = { + name: string +} + +export default function handler( + req: NextApiRequest, + res: NextApiResponse +) { + res.status(200).json({ name: 'John Doe' }) +} diff --git a/site-search/site-search/pages/index.tsx b/site-search/site-search/pages/index.tsx new file mode 100644 index 00000000..02c4dee0 --- /dev/null +++ b/site-search/site-search/pages/index.tsx @@ -0,0 +1,114 @@ +import Head from 'next/head' +import Image from 'next/image' +import { Inter } from 'next/font/google' +import styles from '@/styles/Home.module.css' + +const inter = Inter({ subsets: ['latin'] }) + +export default function Home() { + return ( + <> + + Create Next App + + + + +
+
+

+ Get started by editing  + pages/index.tsx +

+ +
+ +
+ Next.js Logo +
+ + +
+ + ) +} diff --git a/site-search/site-search/public/favicon.ico b/site-search/site-search/public/favicon.ico new file mode 100644 index 0000000000000000000000000000000000000000..718d6fea4835ec2d246af9800eddb7ffb276240c GIT binary patch literal 25931 zcmeHv30#a{`}aL_*G&7qml|y<+KVaDM2m#dVr!KsA!#An?kSQM(q<_dDNCpjEux83 zLb9Z^XxbDl(w>%i@8hT6>)&Gu{h#Oeyszu?xtw#Zb1mO{pgX9699l+Qppw7jXaYf~-84xW z)w4x8?=youko|}Vr~(D$UXIbiXABHh`p1?nn8Po~fxRJv}|0e(BPs|G`(TT%kKVJAdg5*Z|x0leQq0 zkdUBvb#>9F()jo|T~kx@OM8$9wzs~t2l;K=woNssA3l6|sx2r3+kdfVW@e^8e*E}v zA1y5{bRi+3Z`uD3{F7LgFJDdvm;nJilkzDku>BwXH(8ItVCXk*-lSJnR?-2UN%hJ){&rlvg`CDTj z)Bzo!3v7Ou#83zEDEFcKt(f1E0~=rqeEbTnMvWR#{+9pg%7G8y>u1OVRUSoox-ovF z2Ydma(;=YuBY(eI|04{hXzZD6_f(v~H;C~y5=DhAC{MMS>2fm~1H_t2$56pc$NH8( z5bH|<)71dV-_oCHIrzrT`2s-5w_+2CM0$95I6X8p^r!gHp+j_gd;9O<1~CEQQGS8) zS9Qh3#p&JM-G8rHekNmKVewU;pJRcTAog68KYo^dRo}(M>36U4Us zfgYWSiHZL3;lpWT=zNAW>Dh#mB!_@Lg%$ms8N-;aPqMn+C2HqZgz&9~Eu z4|Kp<`$q)Uw1R?y(~S>ePdonHxpV1#eSP1B;Ogo+-Pk}6#0GsZZ5!||ev2MGdh}_m z{DeR7?0-1^zVs&`AV6Vt;r3`I`OI_wgs*w=eO%_#7Kepl{B@xiyCANc(l zzIyd4y|c6PXWq9-|KM8(zIk8LPk(>a)zyFWjhT!$HJ$qX1vo@d25W<fvZQ2zUz5WRc(UnFMKHwe1| zWmlB1qdbiA(C0jmnV<}GfbKtmcu^2*P^O?MBLZKt|As~ge8&AAO~2K@zbXelK|4T<{|y4`raF{=72kC2Kn(L4YyenWgrPiv z@^mr$t{#X5VuIMeL!7Ab6_kG$&#&5p*Z{+?5U|TZ`B!7llpVmp@skYz&n^8QfPJzL z0G6K_OJM9x+Wu2gfN45phANGt{7=C>i34CV{Xqlx(fWpeAoj^N0Biu`w+MVcCUyU* zDZuzO0>4Z6fbu^T_arWW5n!E45vX8N=bxTVeFoep_G#VmNlQzAI_KTIc{6>c+04vr zx@W}zE5JNSU>!THJ{J=cqjz+4{L4A{Ob9$ZJ*S1?Ggg3klFp!+Y1@K+pK1DqI|_gq z5ZDXVpge8-cs!o|;K73#YXZ3AShj50wBvuq3NTOZ`M&qtjj#GOFfgExjg8Gn8>Vq5 z`85n+9|!iLCZF5$HJ$Iu($dm?8~-ofu}tEc+-pyke=3!im#6pk_Wo8IA|fJwD&~~F zc16osQ)EBo58U7XDuMexaPRjU@h8tXe%S{fA0NH3vGJFhuyyO!Uyl2^&EOpX{9As0 zWj+P>{@}jxH)8|r;2HdupP!vie{sJ28b&bo!8`D^x}TE$%zXNb^X1p@0PJ86`dZyj z%ce7*{^oo+6%&~I!8hQy-vQ7E)0t0ybH4l%KltWOo~8cO`T=157JqL(oq_rC%ea&4 z2NcTJe-HgFjNg-gZ$6!Y`SMHrlj}Etf7?r!zQTPPSv}{so2e>Fjs1{gzk~LGeesX%r(Lh6rbhSo_n)@@G-FTQy93;l#E)hgP@d_SGvyCp0~o(Y;Ee8{ zdVUDbHm5`2taPUOY^MAGOw*>=s7=Gst=D+p+2yON!0%Hk` zz5mAhyT4lS*T3LS^WSxUy86q&GnoHxzQ6vm8)VS}_zuqG?+3td68_x;etQAdu@sc6 zQJ&5|4(I?~3d-QOAODHpZ=hlSg(lBZ!JZWCtHHSj`0Wh93-Uk)_S%zsJ~aD>{`A0~ z9{AG(e|q3g5B%wYKRxiL2Y$8(4w6bzchKuloQW#e&S3n+P- z8!ds-%f;TJ1>)v)##>gd{PdS2Oc3VaR`fr=`O8QIO(6(N!A?pr5C#6fc~Ge@N%Vvu zaoAX2&(a6eWy_q&UwOhU)|P3J0Qc%OdhzW=F4D|pt0E4osw;%<%Dn58hAWD^XnZD= z>9~H(3bmLtxpF?a7su6J7M*x1By7YSUbxGi)Ot0P77`}P3{)&5Un{KD?`-e?r21!4vTTnN(4Y6Lin?UkSM z`MXCTC1@4A4~mvz%Rh2&EwY))LeoT=*`tMoqcEXI>TZU9WTP#l?uFv+@Dn~b(>xh2 z;>B?;Tz2SR&KVb>vGiBSB`@U7VIWFSo=LDSb9F{GF^DbmWAfpms8Sx9OX4CnBJca3 zlj9(x!dIjN?OG1X4l*imJNvRCk}F%!?SOfiOq5y^mZW)jFL@a|r-@d#f7 z2gmU8L3IZq0ynIws=}~m^#@&C%J6QFo~Mo4V`>v7MI-_!EBMMtb%_M&kvAaN)@ZVw z+`toz&WG#HkWDjnZE!6nk{e-oFdL^$YnbOCN}JC&{$#$O27@|Tn-skXr)2ml2~O!5 zX+gYoxhoc7qoU?C^3~&!U?kRFtnSEecWuH0B0OvLodgUAi}8p1 zrO6RSXHH}DMc$&|?D004DiOVMHV8kXCP@7NKB zgaZq^^O<7PoKEp72kby@W0Z!Y*Ay{&vfg#C&gG@YVR9g?FEocMUi1gSN$+V+ayF45{a zuDZDTN}mS|;BO%gEf}pjBfN2-gIrU#G5~cucA;dokXW89%>AyXJJI z9X4UlIWA|ZYHgbI z5?oFk@A=Ik7lrEQPDH!H+b`7_Y~aDb_qa=B2^Y&Ow41cU=4WDd40dp5(QS-WMN-=Y z9g;6_-JdNU;|6cPwf$ak*aJIcwL@1n$#l~zi{c{EW?T;DaW*E8DYq?Umtz{nJ&w-M zEMyTDrC&9K$d|kZe2#ws6)L=7K+{ zQw{XnV6UC$6-rW0emqm8wJoeZK)wJIcV?dST}Z;G0Arq{dVDu0&4kd%N!3F1*;*pW zR&qUiFzK=@44#QGw7k1`3t_d8&*kBV->O##t|tonFc2YWrL7_eqg+=+k;!F-`^b8> z#KWCE8%u4k@EprxqiV$VmmtiWxDLgnGu$Vs<8rppV5EajBXL4nyyZM$SWVm!wnCj-B!Wjqj5-5dNXukI2$$|Bu3Lrw}z65Lc=1G z^-#WuQOj$hwNGG?*CM_TO8Bg-1+qc>J7k5c51U8g?ZU5n?HYor;~JIjoWH-G>AoUP ztrWWLbRNqIjW#RT*WqZgPJXU7C)VaW5}MiijYbABmzoru6EmQ*N8cVK7a3|aOB#O& zBl8JY2WKfmj;h#Q!pN%9o@VNLv{OUL?rixHwOZuvX7{IJ{(EdPpuVFoQqIOa7giLVkBOKL@^smUA!tZ1CKRK}#SSM)iQHk)*R~?M!qkCruaS!#oIL1c z?J;U~&FfH#*98^G?i}pA{ z9Jg36t4=%6mhY(quYq*vSxptes9qy|7xSlH?G=S@>u>Ebe;|LVhs~@+06N<4CViBk zUiY$thvX;>Tby6z9Y1edAMQaiH zm^r3v#$Q#2T=X>bsY#D%s!bhs^M9PMAcHbCc0FMHV{u-dwlL;a1eJ63v5U*?Q_8JO zT#50!RD619#j_Uf))0ooADz~*9&lN!bBDRUgE>Vud-i5ck%vT=r^yD*^?Mp@Q^v+V zG#-?gKlr}Eeqifb{|So?HM&g91P8|av8hQoCmQXkd?7wIJwb z_^v8bbg`SAn{I*4bH$u(RZ6*xUhuA~hc=8czK8SHEKTzSxgbwi~9(OqJB&gwb^l4+m`k*Q;_?>Y-APi1{k zAHQ)P)G)f|AyjSgcCFps)Fh6Bca*Xznq36!pV6Az&m{O8$wGFD? zY&O*3*J0;_EqM#jh6^gMQKpXV?#1?>$ml1xvh8nSN>-?H=V;nJIwB07YX$e6vLxH( zqYwQ>qxwR(i4f)DLd)-$P>T-no_c!LsN@)8`e;W@)-Hj0>nJ-}Kla4-ZdPJzI&Mce zv)V_j;(3ERN3_@I$N<^|4Lf`B;8n+bX@bHbcZTopEmDI*Jfl)-pFDvo6svPRoo@(x z);_{lY<;);XzT`dBFpRmGrr}z5u1=pC^S-{ce6iXQlLGcItwJ^mZx{m$&DA_oEZ)B{_bYPq-HA zcH8WGoBG(aBU_j)vEy+_71T34@4dmSg!|M8Vf92Zj6WH7Q7t#OHQqWgFE3ARt+%!T z?oLovLVlnf?2c7pTc)~cc^($_8nyKwsN`RA-23ed3sdj(ys%pjjM+9JrctL;dy8a( z@en&CQmnV(()bu|Y%G1-4a(6x{aLytn$T-;(&{QIJB9vMox11U-1HpD@d(QkaJdEb zG{)+6Dos_L+O3NpWo^=gR?evp|CqEG?L&Ut#D*KLaRFOgOEK(Kq1@!EGcTfo+%A&I z=dLbB+d$u{sh?u)xP{PF8L%;YPPW53+@{>5W=Jt#wQpN;0_HYdw1{ksf_XhO4#2F= zyPx6Lx2<92L-;L5PD`zn6zwIH`Jk($?Qw({erA$^bC;q33hv!d!>%wRhj# zal^hk+WGNg;rJtb-EB(?czvOM=H7dl=vblBwAv>}%1@{}mnpUznfq1cE^sgsL0*4I zJ##!*B?=vI_OEVis5o+_IwMIRrpQyT_Sq~ZU%oY7c5JMIADzpD!Upz9h@iWg_>>~j zOLS;wp^i$-E?4<_cp?RiS%Rd?i;f*mOz=~(&3lo<=@(nR!_Rqiprh@weZlL!t#NCc zO!QTcInq|%#>OVgobj{~ixEUec`E25zJ~*DofsQdzIa@5^nOXj2T;8O`l--(QyU^$t?TGY^7#&FQ+2SS3B#qK*k3`ye?8jUYSajE5iBbJls75CCc(m3dk{t?- zopcER9{Z?TC)mk~gpi^kbbu>b-+a{m#8-y2^p$ka4n60w;Sc2}HMf<8JUvhCL0B&Btk)T`ctE$*qNW8L$`7!r^9T+>=<=2qaq-;ll2{`{Rg zc5a0ZUI$oG&j-qVOuKa=*v4aY#IsoM+1|c4Z)<}lEDvy;5huB@1RJPquU2U*U-;gu z=En2m+qjBzR#DEJDO`WU)hdd{Vj%^0V*KoyZ|5lzV87&g_j~NCjwv0uQVqXOb*QrQ zy|Qn`hxx(58c70$E;L(X0uZZ72M1!6oeg)(cdKO ze0gDaTz+ohR-#d)NbAH4x{I(21yjwvBQfmpLu$)|m{XolbgF!pmsqJ#D}(ylp6uC> z{bqtcI#hT#HW=wl7>p!38sKsJ`r8}lt-q%Keqy%u(xk=yiIJiUw6|5IvkS+#?JTBl z8H5(Q?l#wzazujH!8o>1xtn8#_w+397*_cy8!pQGP%K(Ga3pAjsaTbbXJlQF_+m+-UpUUent@xM zg%jqLUExj~o^vQ3Gl*>wh=_gOr2*|U64_iXb+-111aH}$TjeajM+I20xw(((>fej-@CIz4S1pi$(#}P7`4({6QS2CaQS4NPENDp>sAqD z$bH4KGzXGffkJ7R>V>)>tC)uax{UsN*dbeNC*v}#8Y#OWYwL4t$ePR?VTyIs!wea+ z5Urmc)X|^`MG~*dS6pGSbU+gPJoq*^a=_>$n4|P^w$sMBBy@f*Z^Jg6?n5?oId6f{ z$LW4M|4m502z0t7g<#Bx%X;9<=)smFolV&(V^(7Cv2-sxbxopQ!)*#ZRhTBpx1)Fc zNm1T%bONzv6@#|dz(w02AH8OXe>kQ#1FMCzO}2J_mST)+ExmBr9cva-@?;wnmWMOk z{3_~EX_xadgJGv&H@zK_8{(x84`}+c?oSBX*Ge3VdfTt&F}yCpFP?CpW+BE^cWY0^ zb&uBN!Ja3UzYHK-CTyA5=L zEMW{l3Usky#ly=7px648W31UNV@K)&Ub&zP1c7%)`{);I4b0Q<)B}3;NMG2JH=X$U zfIW4)4n9ZM`-yRj67I)YSLDK)qfUJ_ij}a#aZN~9EXrh8eZY2&=uY%2N0UFF7<~%M zsB8=erOWZ>Ct_#^tHZ|*q`H;A)5;ycw*IcmVxi8_0Xk}aJA^ath+E;xg!x+As(M#0=)3!NJR6H&9+zd#iP(m0PIW8$ z1Y^VX`>jm`W!=WpF*{ioM?C9`yOR>@0q=u7o>BP-eSHqCgMDj!2anwH?s%i2p+Q7D zzszIf5XJpE)IG4;d_(La-xenmF(tgAxK`Y4sQ}BSJEPs6N_U2vI{8=0C_F?@7<(G; zo$~G=8p+076G;`}>{MQ>t>7cm=zGtfbdDXm6||jUU|?X?CaE?(<6bKDYKeHlz}DA8 zXT={X=yp_R;HfJ9h%?eWvQ!dRgz&Su*JfNt!Wu>|XfU&68iRikRrHRW|ZxzRR^`eIGt zIeiDgVS>IeExKVRWW8-=A=yA`}`)ZkWBrZD`hpWIxBGkh&f#ijr449~m`j6{4jiJ*C!oVA8ZC?$1RM#K(_b zL9TW)kN*Y4%^-qPpMP7d4)o?Nk#>aoYHT(*g)qmRUb?**F@pnNiy6Fv9rEiUqD(^O zzyS?nBrX63BTRYduaG(0VVG2yJRe%o&rVrLjbxTaAFTd8s;<<@Qs>u(<193R8>}2_ zuwp{7;H2a*X7_jryzriZXMg?bTuegABb^87@SsKkr2)0Gyiax8KQWstw^v#ix45EVrcEhr>!NMhprl$InQMzjSFH54x5k9qHc`@9uKQzvL4ihcq{^B zPrVR=o_ic%Y>6&rMN)hTZsI7I<3&`#(nl+3y3ys9A~&^=4?PL&nd8)`OfG#n zwAMN$1&>K++c{^|7<4P=2y(B{jJsQ0a#U;HTo4ZmWZYvI{+s;Td{Yzem%0*k#)vjpB zia;J&>}ICate44SFYY3vEelqStQWFihx%^vQ@Do(sOy7yR2@WNv7Y9I^yL=nZr3mb zXKV5t@=?-Sk|b{XMhA7ZGB@2hqsx}4xwCW!in#C zI@}scZlr3-NFJ@NFaJlhyfcw{k^vvtGl`N9xSo**rDW4S}i zM9{fMPWo%4wYDG~BZ18BD+}h|GQKc-g^{++3MY>}W_uq7jGHx{mwE9fZiPCoxN$+7 zrODGGJrOkcPQUB(FD5aoS4g~7#6NR^ma7-!>mHuJfY5kTe6PpNNKC9GGRiu^L31uG z$7v`*JknQHsYB!Tm_W{a32TM099djW%5e+j0Ve_ct}IM>XLF1Ap+YvcrLV=|CKo6S zb+9Nl3_YdKP6%Cxy@6TxZ>;4&nTneadr z_ES90ydCev)LV!dN=#(*f}|ZORFdvkYBni^aLbUk>BajeWIOcmHP#8S)*2U~QKI%S zyrLmtPqb&TphJ;>yAxri#;{uyk`JJqODDw%(Z=2`1uc}br^V%>j!gS)D*q*f_-qf8&D;W1dJgQMlaH5er zN2U<%Smb7==vE}dDI8K7cKz!vs^73o9f>2sgiTzWcwY|BMYHH5%Vn7#kiw&eItCqa zIkR2~Q}>X=Ar8W|^Ms41Fm8o6IB2_j60eOeBB1Br!boW7JnoeX6Gs)?7rW0^5psc- zjS16yb>dFn>KPOF;imD}e!enuIniFzv}n$m2#gCCv4jM#ArwlzZ$7@9&XkFxZ4n!V zj3dyiwW4Ki2QG{@i>yuZXQizw_OkZI^-3otXC{!(lUpJF33gI60ak;Uqitp74|B6I zgg{b=Iz}WkhCGj1M=hu4#Aw173YxIVbISaoc z-nLZC*6Tgivd5V`K%GxhBsp@SUU60-rfc$=wb>zdJzXS&-5(NRRodFk;Kxk!S(O(a0e7oY=E( zAyS;Ow?6Q&XA+cnkCb{28_1N8H#?J!*$MmIwLq^*T_9-z^&UE@A(z9oGYtFy6EZef LrJugUA?W`A8`#=m literal 0 HcmV?d00001 diff --git a/site-search/site-search/public/next.svg b/site-search/site-search/public/next.svg new file mode 100644 index 00000000..5174b28c --- /dev/null +++ b/site-search/site-search/public/next.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site-search/site-search/public/vercel.svg b/site-search/site-search/public/vercel.svg new file mode 100644 index 00000000..d2f84222 --- /dev/null +++ b/site-search/site-search/public/vercel.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site-search/site-search/styles/Home.module.css b/site-search/site-search/styles/Home.module.css new file mode 100644 index 00000000..6676d2c6 --- /dev/null +++ b/site-search/site-search/styles/Home.module.css @@ -0,0 +1,229 @@ +.main { + display: flex; + flex-direction: column; + justify-content: space-between; + align-items: center; + padding: 6rem; + min-height: 100vh; +} + +.description { + display: inherit; + justify-content: inherit; + align-items: inherit; + font-size: 0.85rem; + max-width: var(--max-width); + width: 100%; + z-index: 2; + font-family: var(--font-mono); +} + +.description a { + display: flex; + justify-content: center; + align-items: center; + gap: 0.5rem; +} + +.description p { + position: relative; + margin: 0; + padding: 1rem; + background-color: rgba(var(--callout-rgb), 0.5); + border: 1px solid rgba(var(--callout-border-rgb), 0.3); + border-radius: var(--border-radius); +} + +.code { + font-weight: 700; + font-family: var(--font-mono); +} + +.grid { + display: grid; + grid-template-columns: repeat(4, minmax(25%, auto)); + max-width: 100%; + width: var(--max-width); +} + +.card { + padding: 1rem 1.2rem; + border-radius: var(--border-radius); + background: rgba(var(--card-rgb), 0); + border: 1px solid rgba(var(--card-border-rgb), 0); + transition: background 200ms, border 200ms; +} + +.card span { + display: inline-block; + transition: transform 200ms; +} + +.card h2 { + font-weight: 600; + margin-bottom: 0.7rem; +} + +.card p { + margin: 0; + opacity: 0.6; + font-size: 0.9rem; + line-height: 1.5; + max-width: 30ch; +} + +.center { + display: flex; + justify-content: center; + align-items: center; + position: relative; + padding: 4rem 0; +} + +.center::before { + background: var(--secondary-glow); + border-radius: 50%; + width: 480px; + height: 360px; + margin-left: -400px; +} + +.center::after { + background: var(--primary-glow); + width: 240px; + height: 180px; + z-index: -1; +} + +.center::before, +.center::after { + content: ''; + left: 50%; + position: absolute; + filter: blur(45px); + transform: translateZ(0); +} + +.logo { + position: relative; +} +/* Enable hover only on non-touch devices */ +@media (hover: hover) and (pointer: fine) { + .card:hover { + background: rgba(var(--card-rgb), 0.1); + border: 1px solid rgba(var(--card-border-rgb), 0.15); + } + + .card:hover span { + transform: translateX(4px); + } +} + +@media (prefers-reduced-motion) { + .card:hover span { + transform: none; + } +} + +/* Mobile */ +@media (max-width: 700px) { + .content { + padding: 4rem; + } + + .grid { + grid-template-columns: 1fr; + margin-bottom: 120px; + max-width: 320px; + text-align: center; + } + + .card { + padding: 1rem 2.5rem; + } + + .card h2 { + margin-bottom: 0.5rem; + } + + .center { + padding: 8rem 0 6rem; + } + + .center::before { + transform: none; + height: 300px; + } + + .description { + font-size: 0.8rem; + } + + .description a { + padding: 1rem; + } + + .description p, + .description div { + display: flex; + justify-content: center; + position: fixed; + width: 100%; + } + + .description p { + align-items: center; + inset: 0 0 auto; + padding: 2rem 1rem 1.4rem; + border-radius: 0; + border: none; + border-bottom: 1px solid rgba(var(--callout-border-rgb), 0.25); + background: linear-gradient( + to bottom, + rgba(var(--background-start-rgb), 1), + rgba(var(--callout-rgb), 0.5) + ); + background-clip: padding-box; + backdrop-filter: blur(24px); + } + + .description div { + align-items: flex-end; + pointer-events: none; + inset: auto 0 0; + padding: 2rem; + height: 200px; + background: linear-gradient( + to bottom, + transparent 0%, + rgb(var(--background-end-rgb)) 40% + ); + z-index: 1; + } +} + +/* Tablet and Smaller Desktop */ +@media (min-width: 701px) and (max-width: 1120px) { + .grid { + grid-template-columns: repeat(2, 50%); + } +} + +@media (prefers-color-scheme: dark) { + .vercelLogo { + filter: invert(1); + } + + .logo { + filter: invert(1) drop-shadow(0 0 0.3rem #ffffff70); + } +} + +@keyframes rotate { + from { + transform: rotate(360deg); + } + to { + transform: rotate(0deg); + } +} diff --git a/site-search/site-search/styles/globals.css b/site-search/site-search/styles/globals.css new file mode 100644 index 00000000..d4f491e1 --- /dev/null +++ b/site-search/site-search/styles/globals.css @@ -0,0 +1,107 @@ +:root { + --max-width: 1100px; + --border-radius: 12px; + --font-mono: ui-monospace, Menlo, Monaco, 'Cascadia Mono', 'Segoe UI Mono', + 'Roboto Mono', 'Oxygen Mono', 'Ubuntu Monospace', 'Source Code Pro', + 'Fira Mono', 'Droid Sans Mono', 'Courier New', monospace; + + --foreground-rgb: 0, 0, 0; + --background-start-rgb: 214, 219, 220; + --background-end-rgb: 255, 255, 255; + + --primary-glow: conic-gradient( + from 180deg at 50% 50%, + #16abff33 0deg, + #0885ff33 55deg, + #54d6ff33 120deg, + #0071ff33 160deg, + transparent 360deg + ); + --secondary-glow: radial-gradient( + rgba(255, 255, 255, 1), + rgba(255, 255, 255, 0) + ); + + --tile-start-rgb: 239, 245, 249; + --tile-end-rgb: 228, 232, 233; + --tile-border: conic-gradient( + #00000080, + #00000040, + #00000030, + #00000020, + #00000010, + #00000010, + #00000080 + ); + + --callout-rgb: 238, 240, 241; + --callout-border-rgb: 172, 175, 176; + --card-rgb: 180, 185, 188; + --card-border-rgb: 131, 134, 135; +} + +@media (prefers-color-scheme: dark) { + :root { + --foreground-rgb: 255, 255, 255; + --background-start-rgb: 0, 0, 0; + --background-end-rgb: 0, 0, 0; + + --primary-glow: radial-gradient(rgba(1, 65, 255, 0.4), rgba(1, 65, 255, 0)); + --secondary-glow: linear-gradient( + to bottom right, + rgba(1, 65, 255, 0), + rgba(1, 65, 255, 0), + rgba(1, 65, 255, 0.3) + ); + + --tile-start-rgb: 2, 13, 46; + --tile-end-rgb: 2, 5, 19; + --tile-border: conic-gradient( + #ffffff80, + #ffffff40, + #ffffff30, + #ffffff20, + #ffffff10, + #ffffff10, + #ffffff80 + ); + + --callout-rgb: 20, 20, 20; + --callout-border-rgb: 108, 108, 108; + --card-rgb: 100, 100, 100; + --card-border-rgb: 200, 200, 200; + } +} + +* { + box-sizing: border-box; + padding: 0; + margin: 0; +} + +html, +body { + max-width: 100vw; + overflow-x: hidden; +} + +body { + color: rgb(var(--foreground-rgb)); + background: linear-gradient( + to bottom, + transparent, + rgb(var(--background-end-rgb)) + ) + rgb(var(--background-start-rgb)); +} + +a { + color: inherit; + text-decoration: none; +} + +@media (prefers-color-scheme: dark) { + html { + color-scheme: dark; + } +} diff --git a/site-search/site-search/tsconfig.json b/site-search/site-search/tsconfig.json new file mode 100644 index 00000000..670224f3 --- /dev/null +++ b/site-search/site-search/tsconfig.json @@ -0,0 +1,22 @@ +{ + "compilerOptions": { + "target": "es5", + "lib": ["dom", "dom.iterable", "esnext"], + "allowJs": true, + "skipLibCheck": true, + "strict": true, + "noEmit": true, + "esModuleInterop": true, + "module": "esnext", + "moduleResolution": "bundler", + "resolveJsonModule": true, + "isolatedModules": true, + "jsx": "preserve", + "incremental": true, + "paths": { + "@/*": ["./*"] + } + }, + "include": ["next-env.d.ts", "**/*.ts", "**/*.tsx"], + "exclude": ["node_modules"] +} From 0690aae270b58107b040977673410fe96454bffe Mon Sep 17 00:00:00 2001 From: Adam Coard Date: Tue, 12 Sep 2023 11:20:12 -0700 Subject: [PATCH 002/194] Add basics of site search --- site-search/site-search/package-lock.json | 366 +++++++++++++++++++++ site-search/site-search/package.json | 3 + site-search/site-search/pages/_app.tsx | 2 + site-search/site-search/pages/index.tsx | 116 ++----- site-search/site-search/styles/globals.css | 4 +- 5 files changed, 394 insertions(+), 97 deletions(-) diff --git a/site-search/site-search/package-lock.json b/site-search/site-search/package-lock.json index 8622884d..07cc08d1 100644 --- a/site-search/site-search/package-lock.json +++ b/site-search/site-search/package-lock.json @@ -10,11 +10,14 @@ "dependencies": { "@types/node": "20.6.0", "@types/react": "18.2.21", + "@types/react-bootstrap": "^0.32.32", "@types/react-dom": "18.2.7", + "bootstrap": "^5.3.1", "eslint": "8.49.0", "eslint-config-next": "13.4.19", "next": "13.4.19", "react": "18.2.0", + "react-bootstrap": "^2.8.0", "react-dom": "18.2.0", "typescript": "5.2.2" } @@ -300,6 +303,68 @@ "node": ">= 8" } }, + "node_modules/@popperjs/core": { + "version": "2.11.8", + "resolved": "https://registry.npmjs.org/@popperjs/core/-/core-2.11.8.tgz", + "integrity": "sha512-P1st0aksCrn9sGZhp8GMYwBnQsbvAWsZAX44oXNNvLHGqAOcoVxmjZiohstwQ7SqKnbR47akdNi+uleWD8+g6A==", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/popperjs" + } + }, + "node_modules/@react-aria/ssr": { + "version": "3.8.0", + "resolved": "https://registry.npmjs.org/@react-aria/ssr/-/ssr-3.8.0.tgz", + "integrity": "sha512-Y54xs483rglN5DxbwfCPHxnkvZ+gZ0LbSYmR72LyWPGft8hN/lrl1VRS1EW2SMjnkEWlj+Km2mwvA3kEHDUA0A==", + "dependencies": { + "@swc/helpers": "^0.5.0" + }, + "engines": { + "node": ">= 12" + }, + "peerDependencies": { + "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0" + } + }, + "node_modules/@restart/hooks": { + "version": "0.4.11", + "resolved": "https://registry.npmjs.org/@restart/hooks/-/hooks-0.4.11.tgz", + "integrity": "sha512-Ft/ncTULZN6ldGHiF/k5qt72O8JyRMOeg0tApvCni8LkoiEahO+z3TNxfXIVGy890YtWVDvJAl662dVJSJXvMw==", + "dependencies": { + "dequal": "^2.0.3" + }, + "peerDependencies": { + "react": ">=16.8.0" + } + }, + "node_modules/@restart/ui": { + "version": "1.6.6", + "resolved": "https://registry.npmjs.org/@restart/ui/-/ui-1.6.6.tgz", + "integrity": "sha512-eC3puKuWE1SRYbojWHXnvCNHGgf3uzHCb6JOhnF4OXPibOIPEkR1sqDSkL643ydigxwh+ruCa1CmYHlzk7ikKA==", + "dependencies": { + "@babel/runtime": "^7.21.0", + "@popperjs/core": "^2.11.6", + "@react-aria/ssr": "^3.5.0", + "@restart/hooks": "^0.4.9", + "@types/warning": "^3.0.0", + "dequal": "^2.0.3", + "dom-helpers": "^5.2.0", + "uncontrollable": "^8.0.1", + "warning": "^4.0.3" + }, + "peerDependencies": { + "react": ">=16.14.0", + "react-dom": ">=16.14.0" + } + }, + "node_modules/@restart/ui/node_modules/uncontrollable": { + "version": "8.0.4", + "resolved": "https://registry.npmjs.org/uncontrollable/-/uncontrollable-8.0.4.tgz", + "integrity": "sha512-ulRWYWHvscPFc0QQXvyJjY6LIXU56f0h8pQFvhxiKk5V1fcI8gp9Ht9leVAhrVjzqMw0BgjspBINx9r6oyJUvQ==", + "peerDependencies": { + "react": ">=16.14.0" + } + }, "node_modules/@rushstack/eslint-patch": { "version": "1.3.3", "resolved": "https://registry.npmjs.org/@rushstack/eslint-patch/-/eslint-patch-1.3.3.tgz", @@ -338,6 +403,14 @@ "csstype": "^3.0.2" } }, + "node_modules/@types/react-bootstrap": { + "version": "0.32.32", + "resolved": "https://registry.npmjs.org/@types/react-bootstrap/-/react-bootstrap-0.32.32.tgz", + "integrity": "sha512-GM9UtV7v+C2F0rbqgIpMWdCKBMdX3PQURoJQobPO4vDAeFadcExNtKffi13/MjaAks+riJKVGyiMe+6OmDYT2w==", + "dependencies": { + "@types/react": "*" + } + }, "node_modules/@types/react-dom": { "version": "18.2.7", "resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-18.2.7.tgz", @@ -346,11 +419,24 @@ "@types/react": "*" } }, + "node_modules/@types/react-transition-group": { + "version": "4.4.6", + "resolved": "https://registry.npmjs.org/@types/react-transition-group/-/react-transition-group-4.4.6.tgz", + "integrity": "sha512-VnCdSxfcm08KjsJVQcfBmhEQAPnLB8G08hAxn39azX1qYBQ/5RVQuoHuKIcfKOdncuaUvEpFKFzEvbtIMsfVew==", + "dependencies": { + "@types/react": "*" + } + }, "node_modules/@types/scheduler": { "version": "0.16.3", "resolved": "https://registry.npmjs.org/@types/scheduler/-/scheduler-0.16.3.tgz", "integrity": "sha512-5cJ8CB4yAx7BH1oMvdU0Jh9lrEXyPkar6F9G/ERswkCuvP4KQZfZkSjcMbAICCpQTN4OuZn8tz0HiKv9TGZgrQ==" }, + "node_modules/@types/warning": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@types/warning/-/warning-3.0.0.tgz", + "integrity": "sha512-t/Tvs5qR47OLOr+4E9ckN8AmP2Tf16gWq+/qA4iUGS/OOyHVO8wv2vjJuX8SNOUTJyWb+2t7wJm6cXILFnOROA==" + }, "node_modules/@typescript-eslint/parser": { "version": "6.6.0", "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-6.6.0.tgz", @@ -684,6 +770,24 @@ "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==" }, + "node_modules/bootstrap": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/bootstrap/-/bootstrap-5.3.1.tgz", + "integrity": "sha512-jzwza3Yagduci2x0rr9MeFSORjcHpt0lRZukZPZQJT1Dth5qzV7XcgGqYzi39KGAVYR8QEDVoO0ubFKOxzMG+g==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/twbs" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/bootstrap" + } + ], + "peerDependencies": { + "@popperjs/core": "^2.11.8" + } + }, "node_modules/brace-expansion": { "version": "1.1.11", "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", @@ -769,6 +873,11 @@ "url": "https://github.com/chalk/chalk?sponsor=1" } }, + "node_modules/classnames": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/classnames/-/classnames-2.3.2.tgz", + "integrity": "sha512-CSbhY4cFEJRe6/GQzIk5qXZ4Jeg5pcsP7b5peFSDpffpe1cqjASH/n9UTjBwOp6XpMSTwQ8Za2K5V02ueA7Tmw==" + }, "node_modules/client-only": { "version": "0.0.1", "resolved": "https://registry.npmjs.org/client-only/-/client-only-0.0.1.tgz", @@ -884,6 +993,15 @@ "node": ">=6.0.0" } }, + "node_modules/dom-helpers": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/dom-helpers/-/dom-helpers-5.2.1.tgz", + "integrity": "sha512-nRCa7CK3VTrM2NmGkIy4cbK7IZlgBE/PYMn55rrXefr5xXDP0LdtfPnblFDoVdcAfslJ7or6iqAUnx0CCGIWQA==", + "dependencies": { + "@babel/runtime": "^7.8.7", + "csstype": "^3.0.2" + } + }, "node_modules/emoji-regex": { "version": "9.2.2", "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", @@ -1837,6 +1955,14 @@ "node": ">= 0.4" } }, + "node_modules/invariant": { + "version": "2.2.4", + "resolved": "https://registry.npmjs.org/invariant/-/invariant-2.2.4.tgz", + "integrity": "sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==", + "dependencies": { + "loose-envify": "^1.0.0" + } + }, "node_modules/is-array-buffer": { "version": "3.0.2", "resolved": "https://registry.npmjs.org/is-array-buffer/-/is-array-buffer-3.0.2.tgz", @@ -2655,6 +2781,18 @@ "react-is": "^16.13.1" } }, + "node_modules/prop-types-extra": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/prop-types-extra/-/prop-types-extra-1.1.1.tgz", + "integrity": "sha512-59+AHNnHYCdiC+vMwY52WmvP5dM3QLeoumYuEyceQDi9aEhtwN9zIQ2ZNo25sMyXnbh32h+P1ezDsUpUH3JAew==", + "dependencies": { + "react-is": "^16.3.2", + "warning": "^4.0.0" + }, + "peerDependencies": { + "react": ">=0.14.0" + } + }, "node_modules/punycode": { "version": "2.3.0", "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.0.tgz", @@ -2693,6 +2831,35 @@ "node": ">=0.10.0" } }, + "node_modules/react-bootstrap": { + "version": "2.8.0", + "resolved": "https://registry.npmjs.org/react-bootstrap/-/react-bootstrap-2.8.0.tgz", + "integrity": "sha512-e/aNtxl0Z2ozrIaR82jr6Zz7ss9GSoaXpQaxmvtDUsTZIq/XalkduR/ZXP6vbQHz2T4syvjA+4FbtwELxxmpww==", + "dependencies": { + "@babel/runtime": "^7.21.0", + "@restart/hooks": "^0.4.9", + "@restart/ui": "^1.6.3", + "@types/react-transition-group": "^4.4.5", + "classnames": "^2.3.2", + "dom-helpers": "^5.2.1", + "invariant": "^2.2.4", + "prop-types": "^15.8.1", + "prop-types-extra": "^1.1.0", + "react-transition-group": "^4.4.5", + "uncontrollable": "^7.2.1", + "warning": "^4.0.3" + }, + "peerDependencies": { + "@types/react": ">=16.14.8", + "react": ">=16.14.0", + "react-dom": ">=16.14.0" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + } + } + }, "node_modules/react-dom": { "version": "18.2.0", "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-18.2.0.tgz", @@ -2710,6 +2877,26 @@ "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz", "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==" }, + "node_modules/react-lifecycles-compat": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/react-lifecycles-compat/-/react-lifecycles-compat-3.0.4.tgz", + "integrity": "sha512-fBASbA6LnOU9dOU2eW7aQ8xmYBSXUIWr+UmF9b1efZBazGNO+rcXT/icdKnYm2pTwcRylVUYwW7H1PHfLekVzA==" + }, + "node_modules/react-transition-group": { + "version": "4.4.5", + "resolved": "https://registry.npmjs.org/react-transition-group/-/react-transition-group-4.4.5.tgz", + "integrity": "sha512-pZcd1MCJoiKiBR2NRxeCRg13uCXbydPnmB4EOeRrY7480qNWO8IIgQG6zlDkm6uRMsURXPuKq0GWtiM59a5Q6g==", + "dependencies": { + "@babel/runtime": "^7.5.5", + "dom-helpers": "^5.0.1", + "loose-envify": "^1.4.0", + "prop-types": "^15.6.2" + }, + "peerDependencies": { + "react": ">=16.6.0", + "react-dom": ">=16.6.0" + } + }, "node_modules/reflect.getprototypeof": { "version": "1.0.4", "resolved": "https://registry.npmjs.org/reflect.getprototypeof/-/reflect.getprototypeof-1.0.4.tgz", @@ -3229,6 +3416,20 @@ "url": "https://github.com/sponsors/ljharb" } }, + "node_modules/uncontrollable": { + "version": "7.2.1", + "resolved": "https://registry.npmjs.org/uncontrollable/-/uncontrollable-7.2.1.tgz", + "integrity": "sha512-svtcfoTADIB0nT9nltgjujTi7BzVmwjZClOmskKu/E8FW9BXzg9os8OLr4f8Dlnk0rYWJIWr4wv9eKUXiQvQwQ==", + "dependencies": { + "@babel/runtime": "^7.6.3", + "@types/react": ">=16.9.11", + "invariant": "^2.2.4", + "react-lifecycles-compat": "^3.0.4" + }, + "peerDependencies": { + "react": ">=15.0.0" + } + }, "node_modules/uri-js": { "version": "4.4.1", "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", @@ -3237,6 +3438,14 @@ "punycode": "^2.1.0" } }, + "node_modules/warning": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/warning/-/warning-4.0.3.tgz", + "integrity": "sha512-rpJyN222KWIvHJ/F53XSZv0Zl/accqHR8et1kpaMTD/fLCRxtV8iX8czMzY7sVZupTI3zcUTg8eycS2kNF9l6w==", + "dependencies": { + "loose-envify": "^1.0.0" + } + }, "node_modules/watchpack": { "version": "2.4.0", "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-2.4.0.tgz", @@ -3523,6 +3732,51 @@ "fastq": "^1.6.0" } }, + "@popperjs/core": { + "version": "2.11.8", + "resolved": "https://registry.npmjs.org/@popperjs/core/-/core-2.11.8.tgz", + "integrity": "sha512-P1st0aksCrn9sGZhp8GMYwBnQsbvAWsZAX44oXNNvLHGqAOcoVxmjZiohstwQ7SqKnbR47akdNi+uleWD8+g6A==" + }, + "@react-aria/ssr": { + "version": "3.8.0", + "resolved": "https://registry.npmjs.org/@react-aria/ssr/-/ssr-3.8.0.tgz", + "integrity": "sha512-Y54xs483rglN5DxbwfCPHxnkvZ+gZ0LbSYmR72LyWPGft8hN/lrl1VRS1EW2SMjnkEWlj+Km2mwvA3kEHDUA0A==", + "requires": { + "@swc/helpers": "^0.5.0" + } + }, + "@restart/hooks": { + "version": "0.4.11", + "resolved": "https://registry.npmjs.org/@restart/hooks/-/hooks-0.4.11.tgz", + "integrity": "sha512-Ft/ncTULZN6ldGHiF/k5qt72O8JyRMOeg0tApvCni8LkoiEahO+z3TNxfXIVGy890YtWVDvJAl662dVJSJXvMw==", + "requires": { + "dequal": "^2.0.3" + } + }, + "@restart/ui": { + "version": "1.6.6", + "resolved": "https://registry.npmjs.org/@restart/ui/-/ui-1.6.6.tgz", + "integrity": "sha512-eC3puKuWE1SRYbojWHXnvCNHGgf3uzHCb6JOhnF4OXPibOIPEkR1sqDSkL643ydigxwh+ruCa1CmYHlzk7ikKA==", + "requires": { + "@babel/runtime": "^7.21.0", + "@popperjs/core": "^2.11.6", + "@react-aria/ssr": "^3.5.0", + "@restart/hooks": "^0.4.9", + "@types/warning": "^3.0.0", + "dequal": "^2.0.3", + "dom-helpers": "^5.2.0", + "uncontrollable": "^8.0.1", + "warning": "^4.0.3" + }, + "dependencies": { + "uncontrollable": { + "version": "8.0.4", + "resolved": "https://registry.npmjs.org/uncontrollable/-/uncontrollable-8.0.4.tgz", + "integrity": "sha512-ulRWYWHvscPFc0QQXvyJjY6LIXU56f0h8pQFvhxiKk5V1fcI8gp9Ht9leVAhrVjzqMw0BgjspBINx9r6oyJUvQ==", + "requires": {} + } + } + }, "@rushstack/eslint-patch": { "version": "1.3.3", "resolved": "https://registry.npmjs.org/@rushstack/eslint-patch/-/eslint-patch-1.3.3.tgz", @@ -3561,6 +3815,14 @@ "csstype": "^3.0.2" } }, + "@types/react-bootstrap": { + "version": "0.32.32", + "resolved": "https://registry.npmjs.org/@types/react-bootstrap/-/react-bootstrap-0.32.32.tgz", + "integrity": "sha512-GM9UtV7v+C2F0rbqgIpMWdCKBMdX3PQURoJQobPO4vDAeFadcExNtKffi13/MjaAks+riJKVGyiMe+6OmDYT2w==", + "requires": { + "@types/react": "*" + } + }, "@types/react-dom": { "version": "18.2.7", "resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-18.2.7.tgz", @@ -3569,11 +3831,24 @@ "@types/react": "*" } }, + "@types/react-transition-group": { + "version": "4.4.6", + "resolved": "https://registry.npmjs.org/@types/react-transition-group/-/react-transition-group-4.4.6.tgz", + "integrity": "sha512-VnCdSxfcm08KjsJVQcfBmhEQAPnLB8G08hAxn39azX1qYBQ/5RVQuoHuKIcfKOdncuaUvEpFKFzEvbtIMsfVew==", + "requires": { + "@types/react": "*" + } + }, "@types/scheduler": { "version": "0.16.3", "resolved": "https://registry.npmjs.org/@types/scheduler/-/scheduler-0.16.3.tgz", "integrity": "sha512-5cJ8CB4yAx7BH1oMvdU0Jh9lrEXyPkar6F9G/ERswkCuvP4KQZfZkSjcMbAICCpQTN4OuZn8tz0HiKv9TGZgrQ==" }, + "@types/warning": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@types/warning/-/warning-3.0.0.tgz", + "integrity": "sha512-t/Tvs5qR47OLOr+4E9ckN8AmP2Tf16gWq+/qA4iUGS/OOyHVO8wv2vjJuX8SNOUTJyWb+2t7wJm6cXILFnOROA==" + }, "@typescript-eslint/parser": { "version": "6.6.0", "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-6.6.0.tgz", @@ -3793,6 +4068,12 @@ "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==" }, + "bootstrap": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/bootstrap/-/bootstrap-5.3.1.tgz", + "integrity": "sha512-jzwza3Yagduci2x0rr9MeFSORjcHpt0lRZukZPZQJT1Dth5qzV7XcgGqYzi39KGAVYR8QEDVoO0ubFKOxzMG+g==", + "requires": {} + }, "brace-expansion": { "version": "1.1.11", "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", @@ -3846,6 +4127,11 @@ "supports-color": "^7.1.0" } }, + "classnames": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/classnames/-/classnames-2.3.2.tgz", + "integrity": "sha512-CSbhY4cFEJRe6/GQzIk5qXZ4Jeg5pcsP7b5peFSDpffpe1cqjASH/n9UTjBwOp6XpMSTwQ8Za2K5V02ueA7Tmw==" + }, "client-only": { "version": "0.0.1", "resolved": "https://registry.npmjs.org/client-only/-/client-only-0.0.1.tgz", @@ -3932,6 +4218,15 @@ "esutils": "^2.0.2" } }, + "dom-helpers": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/dom-helpers/-/dom-helpers-5.2.1.tgz", + "integrity": "sha512-nRCa7CK3VTrM2NmGkIy4cbK7IZlgBE/PYMn55rrXefr5xXDP0LdtfPnblFDoVdcAfslJ7or6iqAUnx0CCGIWQA==", + "requires": { + "@babel/runtime": "^7.8.7", + "csstype": "^3.0.2" + } + }, "emoji-regex": { "version": "9.2.2", "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", @@ -4646,6 +4941,14 @@ "side-channel": "^1.0.4" } }, + "invariant": { + "version": "2.2.4", + "resolved": "https://registry.npmjs.org/invariant/-/invariant-2.2.4.tgz", + "integrity": "sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==", + "requires": { + "loose-envify": "^1.0.0" + } + }, "is-array-buffer": { "version": "3.0.2", "resolved": "https://registry.npmjs.org/is-array-buffer/-/is-array-buffer-3.0.2.tgz", @@ -5201,6 +5504,15 @@ "react-is": "^16.13.1" } }, + "prop-types-extra": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/prop-types-extra/-/prop-types-extra-1.1.1.tgz", + "integrity": "sha512-59+AHNnHYCdiC+vMwY52WmvP5dM3QLeoumYuEyceQDi9aEhtwN9zIQ2ZNo25sMyXnbh32h+P1ezDsUpUH3JAew==", + "requires": { + "react-is": "^16.3.2", + "warning": "^4.0.0" + } + }, "punycode": { "version": "2.3.0", "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.0.tgz", @@ -5219,6 +5531,25 @@ "loose-envify": "^1.1.0" } }, + "react-bootstrap": { + "version": "2.8.0", + "resolved": "https://registry.npmjs.org/react-bootstrap/-/react-bootstrap-2.8.0.tgz", + "integrity": "sha512-e/aNtxl0Z2ozrIaR82jr6Zz7ss9GSoaXpQaxmvtDUsTZIq/XalkduR/ZXP6vbQHz2T4syvjA+4FbtwELxxmpww==", + "requires": { + "@babel/runtime": "^7.21.0", + "@restart/hooks": "^0.4.9", + "@restart/ui": "^1.6.3", + "@types/react-transition-group": "^4.4.5", + "classnames": "^2.3.2", + "dom-helpers": "^5.2.1", + "invariant": "^2.2.4", + "prop-types": "^15.8.1", + "prop-types-extra": "^1.1.0", + "react-transition-group": "^4.4.5", + "uncontrollable": "^7.2.1", + "warning": "^4.0.3" + } + }, "react-dom": { "version": "18.2.0", "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-18.2.0.tgz", @@ -5233,6 +5564,22 @@ "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz", "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==" }, + "react-lifecycles-compat": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/react-lifecycles-compat/-/react-lifecycles-compat-3.0.4.tgz", + "integrity": "sha512-fBASbA6LnOU9dOU2eW7aQ8xmYBSXUIWr+UmF9b1efZBazGNO+rcXT/icdKnYm2pTwcRylVUYwW7H1PHfLekVzA==" + }, + "react-transition-group": { + "version": "4.4.5", + "resolved": "https://registry.npmjs.org/react-transition-group/-/react-transition-group-4.4.5.tgz", + "integrity": "sha512-pZcd1MCJoiKiBR2NRxeCRg13uCXbydPnmB4EOeRrY7480qNWO8IIgQG6zlDkm6uRMsURXPuKq0GWtiM59a5Q6g==", + "requires": { + "@babel/runtime": "^7.5.5", + "dom-helpers": "^5.0.1", + "loose-envify": "^1.4.0", + "prop-types": "^15.6.2" + } + }, "reflect.getprototypeof": { "version": "1.0.4", "resolved": "https://registry.npmjs.org/reflect.getprototypeof/-/reflect.getprototypeof-1.0.4.tgz", @@ -5573,6 +5920,17 @@ "which-boxed-primitive": "^1.0.2" } }, + "uncontrollable": { + "version": "7.2.1", + "resolved": "https://registry.npmjs.org/uncontrollable/-/uncontrollable-7.2.1.tgz", + "integrity": "sha512-svtcfoTADIB0nT9nltgjujTi7BzVmwjZClOmskKu/E8FW9BXzg9os8OLr4f8Dlnk0rYWJIWr4wv9eKUXiQvQwQ==", + "requires": { + "@babel/runtime": "^7.6.3", + "@types/react": ">=16.9.11", + "invariant": "^2.2.4", + "react-lifecycles-compat": "^3.0.4" + } + }, "uri-js": { "version": "4.4.1", "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", @@ -5581,6 +5939,14 @@ "punycode": "^2.1.0" } }, + "warning": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/warning/-/warning-4.0.3.tgz", + "integrity": "sha512-rpJyN222KWIvHJ/F53XSZv0Zl/accqHR8et1kpaMTD/fLCRxtV8iX8czMzY7sVZupTI3zcUTg8eycS2kNF9l6w==", + "requires": { + "loose-envify": "^1.0.0" + } + }, "watchpack": { "version": "2.4.0", "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-2.4.0.tgz", diff --git a/site-search/site-search/package.json b/site-search/site-search/package.json index 85af7098..581db6ee 100644 --- a/site-search/site-search/package.json +++ b/site-search/site-search/package.json @@ -11,11 +11,14 @@ "dependencies": { "@types/node": "20.6.0", "@types/react": "18.2.21", + "@types/react-bootstrap": "^0.32.32", "@types/react-dom": "18.2.7", + "bootstrap": "^5.3.1", "eslint": "8.49.0", "eslint-config-next": "13.4.19", "next": "13.4.19", "react": "18.2.0", + "react-bootstrap": "^2.8.0", "react-dom": "18.2.0", "typescript": "5.2.2" } diff --git a/site-search/site-search/pages/_app.tsx b/site-search/site-search/pages/_app.tsx index 021681f4..542feaa4 100644 --- a/site-search/site-search/pages/_app.tsx +++ b/site-search/site-search/pages/_app.tsx @@ -1,3 +1,5 @@ +// import 'bootstrap/dist/css/bootstrap.min.css'; +import 'bootstrap/dist/css/bootstrap.css'; import '@/styles/globals.css' import type { AppProps } from 'next/app' diff --git a/site-search/site-search/pages/index.tsx b/site-search/site-search/pages/index.tsx index 02c4dee0..9b2fc9e3 100644 --- a/site-search/site-search/pages/index.tsx +++ b/site-search/site-search/pages/index.tsx @@ -1,112 +1,38 @@ import Head from 'next/head' import Image from 'next/image' -import { Inter } from 'next/font/google' -import styles from '@/styles/Home.module.css' +import Button from 'react-bootstrap/Button'; -const inter = Inter({ subsets: ['latin'] }) +// import { Inter } from 'next/font/google' +// import 'bootstrap/dist/css/bootstrap.min.css'; +// import styles from '@/styles/Home.module.css' + +// const inter = Inter({ subsets: ['latin'] }) export default function Home() { return ( <> - Create Next App - + Site Search + -
-
-

- Get started by editing  - pages/index.tsx -

- -
- -
- Next.js Logo -
- -
- -

- Docs -> -

-

- Find in-depth information about Next.js features and API. -

-
+{/* +
+ +
*/} - -

- Learn -> -

-

- Learn about Next.js in an interactive course with quizzes! -

-
+
+

Site Search

+
diff --git a/site-search/site-search/styles/globals.css b/site-search/site-search/styles/globals.css index d4f491e1..515036bf 100644 --- a/site-search/site-search/styles/globals.css +++ b/site-search/site-search/styles/globals.css @@ -1,4 +1,4 @@ -:root { +/* :root { --max-width: 1100px; --border-radius: 12px; --font-mono: ui-monospace, Menlo, Monaco, 'Cascadia Mono', 'Segoe UI Mono', @@ -104,4 +104,4 @@ a { html { color-scheme: dark; } -} +} */ From 120d1d5199290004fc8202dcb1cbb8d8777643cb Mon Sep 17 00:00:00 2001 From: Adam Coard Date: Tue, 12 Sep 2023 11:33:47 -0700 Subject: [PATCH 003/194] Scaffold out site search and header, have nonfunctioning components there. --- site-search/site-search/components/Header.tsx | 32 +++++++++++++++++++ site-search/site-search/pages/index.tsx | 17 ++++++---- 2 files changed, 43 insertions(+), 6 deletions(-) create mode 100644 site-search/site-search/components/Header.tsx diff --git a/site-search/site-search/components/Header.tsx b/site-search/site-search/components/Header.tsx new file mode 100644 index 00000000..4a7409df --- /dev/null +++ b/site-search/site-search/components/Header.tsx @@ -0,0 +1,32 @@ +import Container from 'react-bootstrap/Container'; +import Nav from 'react-bootstrap/Nav'; +import Navbar from 'react-bootstrap/Navbar'; +import NavDropdown from 'react-bootstrap/NavDropdown'; + +export default function Header() { + return ( + + + BCGov + + + + + + + ); +} \ No newline at end of file diff --git a/site-search/site-search/pages/index.tsx b/site-search/site-search/pages/index.tsx index 9b2fc9e3..e0a1c388 100644 --- a/site-search/site-search/pages/index.tsx +++ b/site-search/site-search/pages/index.tsx @@ -1,6 +1,7 @@ import Head from 'next/head' import Image from 'next/image' import Button from 'react-bootstrap/Button'; +import Header from '@/components/Header' // import { Inter } from 'next/font/google' // import 'bootstrap/dist/css/bootstrap.min.css'; @@ -22,15 +23,19 @@ export default function Home() {
*/} -
-

Site Search

+
+ +
+ + +

Site Search

-
- +
+
-
- +
+
From 6e5001482cf415d42425ceac217714987e7d2556 Mon Sep 17 00:00:00 2001 From: Adam Coard Date: Tue, 12 Sep 2023 11:50:28 -0700 Subject: [PATCH 004/194] Header dropdown to navigate to stubbed out advanced search page --- site-search/site-search/components/Header.tsx | 24 +++++++++---------- .../pages/advanced-search/index.tsx | 12 ++++++++++ site-search/site-search/pages/index.tsx | 6 ++++- 3 files changed, 29 insertions(+), 13 deletions(-) create mode 100644 site-search/site-search/pages/advanced-search/index.tsx diff --git a/site-search/site-search/components/Header.tsx b/site-search/site-search/components/Header.tsx index 4a7409df..7f9e1df8 100644 --- a/site-search/site-search/components/Header.tsx +++ b/site-search/site-search/components/Header.tsx @@ -3,6 +3,10 @@ import Nav from 'react-bootstrap/Nav'; import Navbar from 'react-bootstrap/Navbar'; import NavDropdown from 'react-bootstrap/NavDropdown'; +import Link from 'next/link'; +import { NavLink } from 'react-bootstrap'; + + export default function Header() { return ( @@ -11,18 +15,14 @@ export default function Header() { diff --git a/site-search/site-search/pages/advanced-search/index.tsx b/site-search/site-search/pages/advanced-search/index.tsx new file mode 100644 index 00000000..888b9ba7 --- /dev/null +++ b/site-search/site-search/pages/advanced-search/index.tsx @@ -0,0 +1,12 @@ +import Header from "@/components/Header" + +export default function AdvancedSearch() { + return ( + <> +
+
+

Advanced search - Incomplete

+
+ + ) +} \ No newline at end of file diff --git a/site-search/site-search/pages/index.tsx b/site-search/site-search/pages/index.tsx index e0a1c388..dbb3a834 100644 --- a/site-search/site-search/pages/index.tsx +++ b/site-search/site-search/pages/index.tsx @@ -2,6 +2,8 @@ import Head from 'next/head' import Image from 'next/image' import Button from 'react-bootstrap/Button'; import Header from '@/components/Header' +import Link from 'next/link'; + // import { Inter } from 'next/font/google' // import 'bootstrap/dist/css/bootstrap.min.css'; @@ -35,7 +37,9 @@ export default function Home() {
- + + +
From aa8a11047481911f40d5fce4d38a7466c4055749 Mon Sep 17 00:00:00 2001 From: Adam Coard Date: Tue, 12 Sep 2023 12:00:07 -0700 Subject: [PATCH 005/194] Fixed header styling --- site-search/site-search/components/Header.tsx | 3 ++- site-search/site-search/styles/globals.css | 20 +++++-------------- 2 files changed, 7 insertions(+), 16 deletions(-) diff --git a/site-search/site-search/components/Header.tsx b/site-search/site-search/components/Header.tsx index 7f9e1df8..ae43b54c 100644 --- a/site-search/site-search/components/Header.tsx +++ b/site-search/site-search/components/Header.tsx @@ -11,7 +11,8 @@ export default function Header() { return ( - BCGov + BCGov +
From 86a2e3cd0517df1e7bc7d4a5ddae88df7aa3e101 Mon Sep 17 00:00:00 2001 From: Adam Coard Date: Thu, 14 Sep 2023 10:53:43 -0700 Subject: [PATCH 015/194] Move site search to new folder --- .../site-search-frontend/.eslintrc.cjs | 18 + site-search/site-search-frontend/.gitignore | 24 + site-search/site-search-frontend/README.md | 27 + site-search/site-search-frontend/index.html | 13 + .../site-search-frontend/package-lock.json | 4694 +++++++++++++++++ site-search/site-search-frontend/package.json | 35 + .../site-search-frontend/public/vite.svg | 1 + site-search/site-search-frontend/src/App.css | 42 + site-search/site-search-frontend/src/App.tsx | 21 + .../src/api/dummy-data.tsx | 22 + .../site-search-frontend/src/api/sites.ts | 20 + .../site-search-frontend/src/assets/react.svg | 1 + .../src/components/Header.tsx | 33 + .../features/simple-search/search-results.tsx | 39 + .../features/simple-search/search-toggle.tsx | 23 + .../features/simple-search/simple-search.ts | 20 + .../site-search-frontend/src/index.css | 32 + site-search/site-search-frontend/src/main.tsx | 34 + .../src/pages/advanced-search.tsx | 12 + .../site-search-frontend/src/pages/search.css | 12 + .../site-search-frontend/src/pages/search.tsx | 141 + site-search/site-search-frontend/src/store.ts | 8 + .../site-search-frontend/src/vite-env.d.ts | 1 + .../site-search-frontend/tsconfig.json | 30 + .../site-search-frontend/tsconfig.node.json | 10 + .../site-search-frontend/vite.config.ts | 11 + 26 files changed, 5324 insertions(+) create mode 100644 site-search/site-search-frontend/.eslintrc.cjs create mode 100644 site-search/site-search-frontend/.gitignore create mode 100644 site-search/site-search-frontend/README.md create mode 100644 site-search/site-search-frontend/index.html create mode 100644 site-search/site-search-frontend/package-lock.json create mode 100644 site-search/site-search-frontend/package.json create mode 100644 site-search/site-search-frontend/public/vite.svg create mode 100644 site-search/site-search-frontend/src/App.css create mode 100644 site-search/site-search-frontend/src/App.tsx create mode 100644 site-search/site-search-frontend/src/api/dummy-data.tsx create mode 100644 site-search/site-search-frontend/src/api/sites.ts create mode 100644 site-search/site-search-frontend/src/assets/react.svg create mode 100644 site-search/site-search-frontend/src/components/Header.tsx create mode 100644 site-search/site-search-frontend/src/features/simple-search/search-results.tsx create mode 100644 site-search/site-search-frontend/src/features/simple-search/search-toggle.tsx create mode 100644 site-search/site-search-frontend/src/features/simple-search/simple-search.ts create mode 100644 site-search/site-search-frontend/src/index.css create mode 100644 site-search/site-search-frontend/src/main.tsx create mode 100644 site-search/site-search-frontend/src/pages/advanced-search.tsx create mode 100644 site-search/site-search-frontend/src/pages/search.css create mode 100644 site-search/site-search-frontend/src/pages/search.tsx create mode 100644 site-search/site-search-frontend/src/store.ts create mode 100644 site-search/site-search-frontend/src/vite-env.d.ts create mode 100644 site-search/site-search-frontend/tsconfig.json create mode 100644 site-search/site-search-frontend/tsconfig.node.json create mode 100644 site-search/site-search-frontend/vite.config.ts diff --git a/site-search/site-search-frontend/.eslintrc.cjs b/site-search/site-search-frontend/.eslintrc.cjs new file mode 100644 index 00000000..d6c95379 --- /dev/null +++ b/site-search/site-search-frontend/.eslintrc.cjs @@ -0,0 +1,18 @@ +module.exports = { + root: true, + env: { browser: true, es2020: true }, + extends: [ + 'eslint:recommended', + 'plugin:@typescript-eslint/recommended', + 'plugin:react-hooks/recommended', + ], + ignorePatterns: ['dist', '.eslintrc.cjs'], + parser: '@typescript-eslint/parser', + plugins: ['react-refresh'], + rules: { + 'react-refresh/only-export-components': [ + 'warn', + { allowConstantExport: true }, + ], + }, +} diff --git a/site-search/site-search-frontend/.gitignore b/site-search/site-search-frontend/.gitignore new file mode 100644 index 00000000..a547bf36 --- /dev/null +++ b/site-search/site-search-frontend/.gitignore @@ -0,0 +1,24 @@ +# Logs +logs +*.log +npm-debug.log* +yarn-debug.log* +yarn-error.log* +pnpm-debug.log* +lerna-debug.log* + +node_modules +dist +dist-ssr +*.local + +# Editor directories and files +.vscode/* +!.vscode/extensions.json +.idea +.DS_Store +*.suo +*.ntvs* +*.njsproj +*.sln +*.sw? diff --git a/site-search/site-search-frontend/README.md b/site-search/site-search-frontend/README.md new file mode 100644 index 00000000..1ebe379f --- /dev/null +++ b/site-search/site-search-frontend/README.md @@ -0,0 +1,27 @@ +# React + TypeScript + Vite + +This template provides a minimal setup to get React working in Vite with HMR and some ESLint rules. + +Currently, two official plugins are available: + +- [@vitejs/plugin-react](https://github.com/vitejs/vite-plugin-react/blob/main/packages/plugin-react/README.md) uses [Babel](https://babeljs.io/) for Fast Refresh +- [@vitejs/plugin-react-swc](https://github.com/vitejs/vite-plugin-react-swc) uses [SWC](https://swc.rs/) for Fast Refresh + +## Expanding the ESLint configuration + +If you are developing a production application, we recommend updating the configuration to enable type aware lint rules: + +- Configure the top-level `parserOptions` property like this: + +```js + parserOptions: { + ecmaVersion: 'latest', + sourceType: 'module', + project: ['./tsconfig.json', './tsconfig.node.json'], + tsconfigRootDir: __dirname, + }, +``` + +- Replace `plugin:@typescript-eslint/recommended` to `plugin:@typescript-eslint/recommended-type-checked` or `plugin:@typescript-eslint/strict-type-checked` +- Optionally add `plugin:@typescript-eslint/stylistic-type-checked` +- Install [eslint-plugin-react](https://github.com/jsx-eslint/eslint-plugin-react) and add `plugin:react/recommended` & `plugin:react/jsx-runtime` to the `extends` list diff --git a/site-search/site-search-frontend/index.html b/site-search/site-search-frontend/index.html new file mode 100644 index 00000000..e4b78eae --- /dev/null +++ b/site-search/site-search-frontend/index.html @@ -0,0 +1,13 @@ + + + + + + + Vite + React + TS + + +
+ + + diff --git a/site-search/site-search-frontend/package-lock.json b/site-search/site-search-frontend/package-lock.json new file mode 100644 index 00000000..46722c82 --- /dev/null +++ b/site-search/site-search-frontend/package-lock.json @@ -0,0 +1,4694 @@ +{ + "name": "site-search", + "version": "0.0.0", + "lockfileVersion": 2, + "requires": true, + "packages": { + "": { + "name": "site-search", + "version": "0.0.0", + "dependencies": { + "@reduxjs/toolkit": "^1.9.5", + "bootstrap": "^5.3.1", + "react": "^18.2.0", + "react-bootstrap": "^2.8.0", + "react-dom": "^18.2.0", + "react-redux": "^8.1.2", + "react-router-dom": "^6.15.0" + }, + "devDependencies": { + "@faker-js/faker": "^8.0.2", + "@types/react": "^18.2.15", + "@types/react-bootstrap": "^0.32.32", + "@types/react-dom": "^18.2.7", + "@typescript-eslint/eslint-plugin": "^6.0.0", + "@typescript-eslint/parser": "^6.0.0", + "@vitejs/plugin-react-swc": "^3.3.2", + "eslint": "^8.45.0", + "eslint-plugin-react-hooks": "^4.6.0", + "eslint-plugin-react-refresh": "^0.4.3", + "typescript": "^5.0.2", + "vite": "^4.4.5" + } + }, + "node_modules/@aashutoshrathi/word-wrap": { + "version": "1.2.6", + "resolved": "https://registry.npmjs.org/@aashutoshrathi/word-wrap/-/word-wrap-1.2.6.tgz", + "integrity": "sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/@babel/runtime": { + "version": "7.22.15", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.22.15.tgz", + "integrity": "sha512-T0O+aa+4w0u06iNmapipJXMV4HoUir03hpx3/YqXXhu9xim3w+dVphjFWl1OH8NbZHw5Lbm9k45drDkgq2VNNA==", + "dependencies": { + "regenerator-runtime": "^0.14.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@esbuild/android-arm": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.18.20.tgz", + "integrity": "sha512-fyi7TDI/ijKKNZTUJAQqiG5T7YjJXgnzkURqmGj13C6dCqckZBLdl4h7bkhHt/t0WP+zO9/zwroDvANaOqO5Sw==", + "cpu": [ + "arm" + ], + "dev": true, + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/android-arm64": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.18.20.tgz", + "integrity": "sha512-Nz4rJcchGDtENV0eMKUNa6L12zz2zBDXuhj/Vjh18zGqB44Bi7MBMSXjgunJgjRhCmKOjnPuZp4Mb6OKqtMHLQ==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/android-x64": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.18.20.tgz", + "integrity": "sha512-8GDdlePJA8D6zlZYJV/jnrRAi6rOiNaCC/JclcXpB+KIuvfBN4owLtgzY2bsxnx666XjJx2kDPUmnTtR8qKQUg==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/darwin-arm64": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.18.20.tgz", + "integrity": "sha512-bxRHW5kHU38zS2lPTPOyuyTm+S+eobPUnTNkdJEfAddYgEcll4xkT8DB9d2008DtTbl7uJag2HuE5NZAZgnNEA==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/darwin-x64": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.18.20.tgz", + "integrity": "sha512-pc5gxlMDxzm513qPGbCbDukOdsGtKhfxD1zJKXjCCcU7ju50O7MeAZ8c4krSJcOIJGFR+qx21yMMVYwiQvyTyQ==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/freebsd-arm64": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.18.20.tgz", + "integrity": "sha512-yqDQHy4QHevpMAaxhhIwYPMv1NECwOvIpGCZkECn8w2WFHXjEwrBn3CeNIYsibZ/iZEUemj++M26W3cNR5h+Tw==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/freebsd-x64": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.18.20.tgz", + "integrity": "sha512-tgWRPPuQsd3RmBZwarGVHZQvtzfEBOreNuxEMKFcd5DaDn2PbBxfwLcj4+aenoh7ctXcbXmOQIn8HI6mCSw5MQ==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-arm": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.18.20.tgz", + "integrity": "sha512-/5bHkMWnq1EgKr1V+Ybz3s1hWXok7mDFUMQ4cG10AfW3wL02PSZi5kFpYKrptDsgb2WAJIvRcDm+qIvXf/apvg==", + "cpu": [ + "arm" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-arm64": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.18.20.tgz", + "integrity": "sha512-2YbscF+UL7SQAVIpnWvYwM+3LskyDmPhe31pE7/aoTMFKKzIc9lLbyGUpmmb8a8AixOL61sQ/mFh3jEjHYFvdA==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-ia32": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.18.20.tgz", + "integrity": "sha512-P4etWwq6IsReT0E1KHU40bOnzMHoH73aXp96Fs8TIT6z9Hu8G6+0SHSw9i2isWrD2nbx2qo5yUqACgdfVGx7TA==", + "cpu": [ + "ia32" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-loong64": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.18.20.tgz", + "integrity": "sha512-nXW8nqBTrOpDLPgPY9uV+/1DjxoQ7DoB2N8eocyq8I9XuqJ7BiAMDMf9n1xZM9TgW0J8zrquIb/A7s3BJv7rjg==", + "cpu": [ + "loong64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-mips64el": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.18.20.tgz", + "integrity": "sha512-d5NeaXZcHp8PzYy5VnXV3VSd2D328Zb+9dEq5HE6bw6+N86JVPExrA6O68OPwobntbNJ0pzCpUFZTo3w0GyetQ==", + "cpu": [ + "mips64el" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-ppc64": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.18.20.tgz", + "integrity": "sha512-WHPyeScRNcmANnLQkq6AfyXRFr5D6N2sKgkFo2FqguP44Nw2eyDlbTdZwd9GYk98DZG9QItIiTlFLHJHjxP3FA==", + "cpu": [ + "ppc64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-riscv64": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.18.20.tgz", + "integrity": "sha512-WSxo6h5ecI5XH34KC7w5veNnKkju3zBRLEQNY7mv5mtBmrP/MjNBCAlsM2u5hDBlS3NGcTQpoBvRzqBcRtpq1A==", + "cpu": [ + "riscv64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-s390x": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.18.20.tgz", + "integrity": "sha512-+8231GMs3mAEth6Ja1iK0a1sQ3ohfcpzpRLH8uuc5/KVDFneH6jtAJLFGafpzpMRO6DzJ6AvXKze9LfFMrIHVQ==", + "cpu": [ + "s390x" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-x64": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.18.20.tgz", + "integrity": "sha512-UYqiqemphJcNsFEskc73jQ7B9jgwjWrSayxawS6UVFZGWrAAtkzjxSqnoclCXxWtfwLdzU+vTpcNYhpn43uP1w==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/netbsd-x64": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.18.20.tgz", + "integrity": "sha512-iO1c++VP6xUBUmltHZoMtCUdPlnPGdBom6IrO4gyKPFFVBKioIImVooR5I83nTew5UOYrk3gIJhbZh8X44y06A==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "netbsd" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/openbsd-x64": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.18.20.tgz", + "integrity": "sha512-e5e4YSsuQfX4cxcygw/UCPIEP6wbIL+se3sxPdCiMbFLBWu0eiZOJ7WoD+ptCLrmjZBK1Wk7I6D/I3NglUGOxg==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "openbsd" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/sunos-x64": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.18.20.tgz", + "integrity": "sha512-kDbFRFp0YpTQVVrqUd5FTYmWo45zGaXe0X8E1G/LKFC0v8x0vWrhOWSLITcCn63lmZIxfOMXtCfti/RxN/0wnQ==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "sunos" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/win32-arm64": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.18.20.tgz", + "integrity": "sha512-ddYFR6ItYgoaq4v4JmQQaAI5s7npztfV4Ag6NrhiaW0RrnOXqBkgwZLofVTlq1daVTQNhtI5oieTvkRPfZrePg==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/win32-ia32": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.18.20.tgz", + "integrity": "sha512-Wv7QBi3ID/rROT08SABTS7eV4hX26sVduqDOTe1MvGMjNd3EjOz4b7zeexIR62GTIEKrfJXKL9LFxTYgkyeu7g==", + "cpu": [ + "ia32" + ], + "dev": true, + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/win32-x64": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.18.20.tgz", + "integrity": "sha512-kTdfRcSiDfQca/y9QIkng02avJ+NCaQvrMejlsB3RRv5sE9rRoeBPISaZpKxHELzRxZyLvNts1P27W3wV+8geQ==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@eslint-community/eslint-utils": { + "version": "4.4.0", + "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.4.0.tgz", + "integrity": "sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==", + "dev": true, + "dependencies": { + "eslint-visitor-keys": "^3.3.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "peerDependencies": { + "eslint": "^6.0.0 || ^7.0.0 || >=8.0.0" + } + }, + "node_modules/@eslint-community/regexpp": { + "version": "4.8.1", + "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.8.1.tgz", + "integrity": "sha512-PWiOzLIUAjN/w5K17PoF4n6sKBw0gqLHPhywmYHP4t1VFQQVYeb1yWsJwnMVEMl3tUHME7X/SJPZLmtG7XBDxQ==", + "dev": true, + "engines": { + "node": "^12.0.0 || ^14.0.0 || >=16.0.0" + } + }, + "node_modules/@eslint/eslintrc": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-2.1.2.tgz", + "integrity": "sha512-+wvgpDsrB1YqAMdEUCcnTlpfVBH7Vqn6A/NT3D8WVXFIaKMlErPIZT3oCIAVCOtarRpMtelZLqJeU3t7WY6X6g==", + "dev": true, + "dependencies": { + "ajv": "^6.12.4", + "debug": "^4.3.2", + "espree": "^9.6.0", + "globals": "^13.19.0", + "ignore": "^5.2.0", + "import-fresh": "^3.2.1", + "js-yaml": "^4.1.0", + "minimatch": "^3.1.2", + "strip-json-comments": "^3.1.1" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/@eslint/js": { + "version": "8.49.0", + "resolved": "https://registry.npmjs.org/@eslint/js/-/js-8.49.0.tgz", + "integrity": "sha512-1S8uAY/MTJqVx0SC4epBq+N2yhuwtNwLbJYNZyhL2pO1ZVKn5HFXav5T41Ryzy9K9V7ZId2JB2oy/W4aCd9/2w==", + "dev": true, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + } + }, + "node_modules/@faker-js/faker": { + "version": "8.0.2", + "resolved": "https://registry.npmjs.org/@faker-js/faker/-/faker-8.0.2.tgz", + "integrity": "sha512-Uo3pGspElQW91PCvKSIAXoEgAUlRnH29sX2/p89kg7sP1m2PzCufHINd0FhTXQf6DYGiUlVncdSPa2F9wxed2A==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/fakerjs" + } + ], + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0", + "npm": ">=6.14.13" + } + }, + "node_modules/@humanwhocodes/config-array": { + "version": "0.11.11", + "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.11.tgz", + "integrity": "sha512-N2brEuAadi0CcdeMXUkhbZB84eskAc8MEX1By6qEchoVywSgXPIjou4rYsl0V3Hj0ZnuGycGCjdNgockbzeWNA==", + "dev": true, + "dependencies": { + "@humanwhocodes/object-schema": "^1.2.1", + "debug": "^4.1.1", + "minimatch": "^3.0.5" + }, + "engines": { + "node": ">=10.10.0" + } + }, + "node_modules/@humanwhocodes/module-importer": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz", + "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==", + "dev": true, + "engines": { + "node": ">=12.22" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/nzakas" + } + }, + "node_modules/@humanwhocodes/object-schema": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz", + "integrity": "sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==", + "dev": true + }, + "node_modules/@nodelib/fs.scandir": { + "version": "2.1.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", + "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", + "dev": true, + "dependencies": { + "@nodelib/fs.stat": "2.0.5", + "run-parallel": "^1.1.9" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@nodelib/fs.stat": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", + "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", + "dev": true, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@nodelib/fs.walk": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", + "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", + "dev": true, + "dependencies": { + "@nodelib/fs.scandir": "2.1.5", + "fastq": "^1.6.0" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@popperjs/core": { + "version": "2.11.8", + "resolved": "https://registry.npmjs.org/@popperjs/core/-/core-2.11.8.tgz", + "integrity": "sha512-P1st0aksCrn9sGZhp8GMYwBnQsbvAWsZAX44oXNNvLHGqAOcoVxmjZiohstwQ7SqKnbR47akdNi+uleWD8+g6A==", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/popperjs" + } + }, + "node_modules/@react-aria/ssr": { + "version": "3.8.0", + "resolved": "https://registry.npmjs.org/@react-aria/ssr/-/ssr-3.8.0.tgz", + "integrity": "sha512-Y54xs483rglN5DxbwfCPHxnkvZ+gZ0LbSYmR72LyWPGft8hN/lrl1VRS1EW2SMjnkEWlj+Km2mwvA3kEHDUA0A==", + "dependencies": { + "@swc/helpers": "^0.5.0" + }, + "engines": { + "node": ">= 12" + }, + "peerDependencies": { + "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0" + } + }, + "node_modules/@reduxjs/toolkit": { + "version": "1.9.5", + "resolved": "https://registry.npmjs.org/@reduxjs/toolkit/-/toolkit-1.9.5.tgz", + "integrity": "sha512-Rt97jHmfTeaxL4swLRNPD/zV4OxTes4la07Xc4hetpUW/vc75t5m1ANyxG6ymnEQ2FsLQsoMlYB2vV1sO3m8tQ==", + "dependencies": { + "immer": "^9.0.21", + "redux": "^4.2.1", + "redux-thunk": "^2.4.2", + "reselect": "^4.1.8" + }, + "peerDependencies": { + "react": "^16.9.0 || ^17.0.0 || ^18", + "react-redux": "^7.2.1 || ^8.0.2" + }, + "peerDependenciesMeta": { + "react": { + "optional": true + }, + "react-redux": { + "optional": true + } + } + }, + "node_modules/@remix-run/router": { + "version": "1.8.0", + "resolved": "https://registry.npmjs.org/@remix-run/router/-/router-1.8.0.tgz", + "integrity": "sha512-mrfKqIHnSZRyIzBcanNJmVQELTnX+qagEDlcKO90RgRBVOZGSGvZKeDihTRfWcqoDn5N/NkUcwWTccnpN18Tfg==", + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/@restart/hooks": { + "version": "0.4.11", + "resolved": "https://registry.npmjs.org/@restart/hooks/-/hooks-0.4.11.tgz", + "integrity": "sha512-Ft/ncTULZN6ldGHiF/k5qt72O8JyRMOeg0tApvCni8LkoiEahO+z3TNxfXIVGy890YtWVDvJAl662dVJSJXvMw==", + "dependencies": { + "dequal": "^2.0.3" + }, + "peerDependencies": { + "react": ">=16.8.0" + } + }, + "node_modules/@restart/ui": { + "version": "1.6.6", + "resolved": "https://registry.npmjs.org/@restart/ui/-/ui-1.6.6.tgz", + "integrity": "sha512-eC3puKuWE1SRYbojWHXnvCNHGgf3uzHCb6JOhnF4OXPibOIPEkR1sqDSkL643ydigxwh+ruCa1CmYHlzk7ikKA==", + "dependencies": { + "@babel/runtime": "^7.21.0", + "@popperjs/core": "^2.11.6", + "@react-aria/ssr": "^3.5.0", + "@restart/hooks": "^0.4.9", + "@types/warning": "^3.0.0", + "dequal": "^2.0.3", + "dom-helpers": "^5.2.0", + "uncontrollable": "^8.0.1", + "warning": "^4.0.3" + }, + "peerDependencies": { + "react": ">=16.14.0", + "react-dom": ">=16.14.0" + } + }, + "node_modules/@restart/ui/node_modules/uncontrollable": { + "version": "8.0.4", + "resolved": "https://registry.npmjs.org/uncontrollable/-/uncontrollable-8.0.4.tgz", + "integrity": "sha512-ulRWYWHvscPFc0QQXvyJjY6LIXU56f0h8pQFvhxiKk5V1fcI8gp9Ht9leVAhrVjzqMw0BgjspBINx9r6oyJUvQ==", + "peerDependencies": { + "react": ">=16.14.0" + } + }, + "node_modules/@swc/core": { + "version": "1.3.84", + "resolved": "https://registry.npmjs.org/@swc/core/-/core-1.3.84.tgz", + "integrity": "sha512-UPKUiDwG7HOdPfOb1VFeEJ76JDgU2w80JLewzx6tb0fk9TIjhr9yxKBzPbzc/QpjGHDu5iaEuNeZcu27u4j63g==", + "dev": true, + "hasInstallScript": true, + "dependencies": { + "@swc/types": "^0.1.4" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/swc" + }, + "optionalDependencies": { + "@swc/core-darwin-arm64": "1.3.84", + "@swc/core-darwin-x64": "1.3.84", + "@swc/core-linux-arm-gnueabihf": "1.3.84", + "@swc/core-linux-arm64-gnu": "1.3.84", + "@swc/core-linux-arm64-musl": "1.3.84", + "@swc/core-linux-x64-gnu": "1.3.84", + "@swc/core-linux-x64-musl": "1.3.84", + "@swc/core-win32-arm64-msvc": "1.3.84", + "@swc/core-win32-ia32-msvc": "1.3.84", + "@swc/core-win32-x64-msvc": "1.3.84" + }, + "peerDependencies": { + "@swc/helpers": "^0.5.0" + }, + "peerDependenciesMeta": { + "@swc/helpers": { + "optional": true + } + } + }, + "node_modules/@swc/core-darwin-arm64": { + "version": "1.3.84", + "resolved": "https://registry.npmjs.org/@swc/core-darwin-arm64/-/core-darwin-arm64-1.3.84.tgz", + "integrity": "sha512-mqK0buOo+toF2HoJ/gWj2ApZbvbIiNq3mMwSTHCYJHlQFQfoTWnl9aaD5GSO4wfNFVYfEZ1R259o5uv5NlVtoA==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=10" + } + }, + "node_modules/@swc/core-darwin-x64": { + "version": "1.3.84", + "resolved": "https://registry.npmjs.org/@swc/core-darwin-x64/-/core-darwin-x64-1.3.84.tgz", + "integrity": "sha512-cyuQZz62C43EDZqtnptUTlfDvAjgG3qu139m5zsfIK6ltXA5inKFbDWV3a/M5c18dFzA2Xh21Q46XZezmtQ9Tg==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=10" + } + }, + "node_modules/@swc/core-linux-arm-gnueabihf": { + "version": "1.3.84", + "resolved": "https://registry.npmjs.org/@swc/core-linux-arm-gnueabihf/-/core-linux-arm-gnueabihf-1.3.84.tgz", + "integrity": "sha512-dmt/ECQrp3ZPWnK27p4E4xRIRHOoJhgGvxC5t5YaWzN20KcxE9ykEY2oLGSoeceM/A+4D11aRYGwF/EM7yOkvA==", + "cpu": [ + "arm" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=10" + } + }, + "node_modules/@swc/core-linux-arm64-gnu": { + "version": "1.3.84", + "resolved": "https://registry.npmjs.org/@swc/core-linux-arm64-gnu/-/core-linux-arm64-gnu-1.3.84.tgz", + "integrity": "sha512-PgVfrI3NVg2z/oeg3GWLb9rFLMqidbdPwVH5nRyHVP2RX/BWP6qfnYfG+gJv4qrKzIldb9TyCGH7y8VWctKLxw==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=10" + } + }, + "node_modules/@swc/core-linux-arm64-musl": { + "version": "1.3.84", + "resolved": "https://registry.npmjs.org/@swc/core-linux-arm64-musl/-/core-linux-arm64-musl-1.3.84.tgz", + "integrity": "sha512-hcuEa8/vin4Ns0P+FpcDHQ4f3jmhgGKQhqw0w+TovPSVTIXr+nrFQ2AGhs9nAxS6tSQ77C53Eb5YRpK8ToFo1A==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=10" + } + }, + "node_modules/@swc/core-linux-x64-gnu": { + "version": "1.3.84", + "resolved": "https://registry.npmjs.org/@swc/core-linux-x64-gnu/-/core-linux-x64-gnu-1.3.84.tgz", + "integrity": "sha512-IvyimSbwGdu21jBBEqR1Up8Jhvl8kIAf1k3e5Oy8oRfgojdUfmW1EIwgGdoUeyQ1VHlfquiWaRGfsnHQUKl35g==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=10" + } + }, + "node_modules/@swc/core-linux-x64-musl": { + "version": "1.3.84", + "resolved": "https://registry.npmjs.org/@swc/core-linux-x64-musl/-/core-linux-x64-musl-1.3.84.tgz", + "integrity": "sha512-hdgVU/O5ufDCe+p5RtCjU7PRNwd0WM+eWJS+GNY4QWL6O8y2VLM+i4+6YzwSUjeBk0xd+1YElMxbqz7r5tSZhw==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=10" + } + }, + "node_modules/@swc/core-win32-arm64-msvc": { + "version": "1.3.84", + "resolved": "https://registry.npmjs.org/@swc/core-win32-arm64-msvc/-/core-win32-arm64-msvc-1.3.84.tgz", + "integrity": "sha512-rzH6k2BF0BFOFhUTD+bh0oCiUCZjFfDfoZoYNN/CM0qbtjAcFH21hzMh/EH8ZaXq8k/iQmUNNa5MPNPZ4SOMNw==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=10" + } + }, + "node_modules/@swc/core-win32-ia32-msvc": { + "version": "1.3.84", + "resolved": "https://registry.npmjs.org/@swc/core-win32-ia32-msvc/-/core-win32-ia32-msvc-1.3.84.tgz", + "integrity": "sha512-Y+Dk7VLLVwwsAzoDmjkNW/sTmSPl9PGr4Mj1nhc5A2NNxZ+hz4SxFMclacDI03SC5ikK8Qh6WOoE/+nwUDa3uA==", + "cpu": [ + "ia32" + ], + "dev": true, + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=10" + } + }, + "node_modules/@swc/core-win32-x64-msvc": { + "version": "1.3.84", + "resolved": "https://registry.npmjs.org/@swc/core-win32-x64-msvc/-/core-win32-x64-msvc-1.3.84.tgz", + "integrity": "sha512-WmpaosqCWMX7DArLdU8AJcj96hy0PKlYh1DaMVikSrrDHbJm2dZ8rd27IK3qUB8DgPkrDYHmLAKNZ+z3gWXgRQ==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=10" + } + }, + "node_modules/@swc/helpers": { + "version": "0.5.2", + "resolved": "https://registry.npmjs.org/@swc/helpers/-/helpers-0.5.2.tgz", + "integrity": "sha512-E4KcWTpoLHqwPHLxidpOqQbcrZVgi0rsmmZXUle1jXmJfuIf/UWpczUJ7MZZ5tlxytgJXyp0w4PGkkeLiuIdZw==", + "dependencies": { + "tslib": "^2.4.0" + } + }, + "node_modules/@swc/types": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/@swc/types/-/types-0.1.4.tgz", + "integrity": "sha512-z/G02d+59gyyUb7KYhKi9jOhicek6QD2oMaotUyG+lUkybpXoV49dY9bj7Ah5Q+y7knK2jU67UTX9FyfGzaxQg==", + "dev": true + }, + "node_modules/@types/hoist-non-react-statics": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/@types/hoist-non-react-statics/-/hoist-non-react-statics-3.3.1.tgz", + "integrity": "sha512-iMIqiko6ooLrTh1joXodJK5X9xeEALT1kM5G3ZLhD3hszxBdIEd5C75U834D9mLcINgD4OyZf5uQXjkuYydWvA==", + "dependencies": { + "@types/react": "*", + "hoist-non-react-statics": "^3.3.0" + } + }, + "node_modules/@types/json-schema": { + "version": "7.0.12", + "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.12.tgz", + "integrity": "sha512-Hr5Jfhc9eYOQNPYO5WLDq/n4jqijdHNlDXjuAQkkt+mWdQR+XJToOHrsD4cPaMXpn6KO7y2+wM8AZEs8VpBLVA==", + "dev": true + }, + "node_modules/@types/prop-types": { + "version": "15.7.5", + "resolved": "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.5.tgz", + "integrity": "sha512-JCB8C6SnDoQf0cNycqd/35A7MjcnK+ZTqE7judS6o7utxUCg6imJg3QK2qzHKszlTjcj2cn+NwMB2i96ubpj7w==" + }, + "node_modules/@types/react": { + "version": "18.2.21", + "resolved": "https://registry.npmjs.org/@types/react/-/react-18.2.21.tgz", + "integrity": "sha512-neFKG/sBAwGxHgXiIxnbm3/AAVQ/cMRS93hvBpg8xYRbeQSPVABp9U2bRnPf0iI4+Ucdv3plSxKK+3CW2ENJxA==", + "dependencies": { + "@types/prop-types": "*", + "@types/scheduler": "*", + "csstype": "^3.0.2" + } + }, + "node_modules/@types/react-bootstrap": { + "version": "0.32.32", + "resolved": "https://registry.npmjs.org/@types/react-bootstrap/-/react-bootstrap-0.32.32.tgz", + "integrity": "sha512-GM9UtV7v+C2F0rbqgIpMWdCKBMdX3PQURoJQobPO4vDAeFadcExNtKffi13/MjaAks+riJKVGyiMe+6OmDYT2w==", + "dev": true, + "dependencies": { + "@types/react": "*" + } + }, + "node_modules/@types/react-dom": { + "version": "18.2.7", + "resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-18.2.7.tgz", + "integrity": "sha512-GRaAEriuT4zp9N4p1i8BDBYmEyfo+xQ3yHjJU4eiK5NDa1RmUZG+unZABUTK4/Ox/M+GaHwb6Ow8rUITrtjszA==", + "devOptional": true, + "dependencies": { + "@types/react": "*" + } + }, + "node_modules/@types/react-transition-group": { + "version": "4.4.6", + "resolved": "https://registry.npmjs.org/@types/react-transition-group/-/react-transition-group-4.4.6.tgz", + "integrity": "sha512-VnCdSxfcm08KjsJVQcfBmhEQAPnLB8G08hAxn39azX1qYBQ/5RVQuoHuKIcfKOdncuaUvEpFKFzEvbtIMsfVew==", + "dependencies": { + "@types/react": "*" + } + }, + "node_modules/@types/scheduler": { + "version": "0.16.3", + "resolved": "https://registry.npmjs.org/@types/scheduler/-/scheduler-0.16.3.tgz", + "integrity": "sha512-5cJ8CB4yAx7BH1oMvdU0Jh9lrEXyPkar6F9G/ERswkCuvP4KQZfZkSjcMbAICCpQTN4OuZn8tz0HiKv9TGZgrQ==" + }, + "node_modules/@types/semver": { + "version": "7.5.1", + "resolved": "https://registry.npmjs.org/@types/semver/-/semver-7.5.1.tgz", + "integrity": "sha512-cJRQXpObxfNKkFAZbJl2yjWtJCqELQIdShsogr1d2MilP8dKD9TE/nEKHkJgUNHdGKCQaf9HbIynuV2csLGVLg==", + "dev": true + }, + "node_modules/@types/use-sync-external-store": { + "version": "0.0.3", + "resolved": "https://registry.npmjs.org/@types/use-sync-external-store/-/use-sync-external-store-0.0.3.tgz", + "integrity": "sha512-EwmlvuaxPNej9+T4v5AuBPJa2x2UOJVdjCtDHgcDqitUeOtjnJKJ+apYjVcAoBEMjKW1VVFGZLUb5+qqa09XFA==" + }, + "node_modules/@types/warning": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@types/warning/-/warning-3.0.0.tgz", + "integrity": "sha512-t/Tvs5qR47OLOr+4E9ckN8AmP2Tf16gWq+/qA4iUGS/OOyHVO8wv2vjJuX8SNOUTJyWb+2t7wJm6cXILFnOROA==" + }, + "node_modules/@typescript-eslint/eslint-plugin": { + "version": "6.7.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-6.7.0.tgz", + "integrity": "sha512-gUqtknHm0TDs1LhY12K2NA3Rmlmp88jK9Tx8vGZMfHeNMLE3GH2e9TRub+y+SOjuYgtOmok+wt1AyDPZqxbNag==", + "dev": true, + "dependencies": { + "@eslint-community/regexpp": "^4.5.1", + "@typescript-eslint/scope-manager": "6.7.0", + "@typescript-eslint/type-utils": "6.7.0", + "@typescript-eslint/utils": "6.7.0", + "@typescript-eslint/visitor-keys": "6.7.0", + "debug": "^4.3.4", + "graphemer": "^1.4.0", + "ignore": "^5.2.4", + "natural-compare": "^1.4.0", + "semver": "^7.5.4", + "ts-api-utils": "^1.0.1" + }, + "engines": { + "node": "^16.0.0 || >=18.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "@typescript-eslint/parser": "^6.0.0 || ^6.0.0-alpha", + "eslint": "^7.0.0 || ^8.0.0" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/@typescript-eslint/parser": { + "version": "6.7.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-6.7.0.tgz", + "integrity": "sha512-jZKYwqNpNm5kzPVP5z1JXAuxjtl2uG+5NpaMocFPTNC2EdYIgbXIPImObOkhbONxtFTTdoZstLZefbaK+wXZng==", + "dev": true, + "dependencies": { + "@typescript-eslint/scope-manager": "6.7.0", + "@typescript-eslint/types": "6.7.0", + "@typescript-eslint/typescript-estree": "6.7.0", + "@typescript-eslint/visitor-keys": "6.7.0", + "debug": "^4.3.4" + }, + "engines": { + "node": "^16.0.0 || >=18.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^7.0.0 || ^8.0.0" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/@typescript-eslint/scope-manager": { + "version": "6.7.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-6.7.0.tgz", + "integrity": "sha512-lAT1Uau20lQyjoLUQ5FUMSX/dS07qux9rYd5FGzKz/Kf8W8ccuvMyldb8hadHdK/qOI7aikvQWqulnEq2nCEYA==", + "dev": true, + "dependencies": { + "@typescript-eslint/types": "6.7.0", + "@typescript-eslint/visitor-keys": "6.7.0" + }, + "engines": { + "node": "^16.0.0 || >=18.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/@typescript-eslint/type-utils": { + "version": "6.7.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-6.7.0.tgz", + "integrity": "sha512-f/QabJgDAlpSz3qduCyQT0Fw7hHpmhOzY/Rv6zO3yO+HVIdPfIWhrQoAyG+uZVtWAIS85zAyzgAFfyEr+MgBpg==", + "dev": true, + "dependencies": { + "@typescript-eslint/typescript-estree": "6.7.0", + "@typescript-eslint/utils": "6.7.0", + "debug": "^4.3.4", + "ts-api-utils": "^1.0.1" + }, + "engines": { + "node": "^16.0.0 || >=18.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^7.0.0 || ^8.0.0" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/@typescript-eslint/types": { + "version": "6.7.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-6.7.0.tgz", + "integrity": "sha512-ihPfvOp7pOcN/ysoj0RpBPOx3HQTJTrIN8UZK+WFd3/iDeFHHqeyYxa4hQk4rMhsz9H9mXpR61IzwlBVGXtl9Q==", + "dev": true, + "engines": { + "node": "^16.0.0 || >=18.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/@typescript-eslint/typescript-estree": { + "version": "6.7.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-6.7.0.tgz", + "integrity": "sha512-dPvkXj3n6e9yd/0LfojNU8VMUGHWiLuBZvbM6V6QYD+2qxqInE7J+J/ieY2iGwR9ivf/R/haWGkIj04WVUeiSQ==", + "dev": true, + "dependencies": { + "@typescript-eslint/types": "6.7.0", + "@typescript-eslint/visitor-keys": "6.7.0", + "debug": "^4.3.4", + "globby": "^11.1.0", + "is-glob": "^4.0.3", + "semver": "^7.5.4", + "ts-api-utils": "^1.0.1" + }, + "engines": { + "node": "^16.0.0 || >=18.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/@typescript-eslint/utils": { + "version": "6.7.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-6.7.0.tgz", + "integrity": "sha512-MfCq3cM0vh2slSikQYqK2Gq52gvOhe57vD2RM3V4gQRZYX4rDPnKLu5p6cm89+LJiGlwEXU8hkYxhqqEC/V3qA==", + "dev": true, + "dependencies": { + "@eslint-community/eslint-utils": "^4.4.0", + "@types/json-schema": "^7.0.12", + "@types/semver": "^7.5.0", + "@typescript-eslint/scope-manager": "6.7.0", + "@typescript-eslint/types": "6.7.0", + "@typescript-eslint/typescript-estree": "6.7.0", + "semver": "^7.5.4" + }, + "engines": { + "node": "^16.0.0 || >=18.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^7.0.0 || ^8.0.0" + } + }, + "node_modules/@typescript-eslint/visitor-keys": { + "version": "6.7.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-6.7.0.tgz", + "integrity": "sha512-/C1RVgKFDmGMcVGeD8HjKv2bd72oI1KxQDeY8uc66gw9R0OK0eMq48cA+jv9/2Ag6cdrsUGySm1yzYmfz0hxwQ==", + "dev": true, + "dependencies": { + "@typescript-eslint/types": "6.7.0", + "eslint-visitor-keys": "^3.4.1" + }, + "engines": { + "node": "^16.0.0 || >=18.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/@vitejs/plugin-react-swc": { + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/@vitejs/plugin-react-swc/-/plugin-react-swc-3.3.2.tgz", + "integrity": "sha512-VJFWY5sfoZerQRvJrh518h3AcQt6f/yTuWn4/TRB+dqmYU0NX1qz7qM5Wfd+gOQqUzQW4gxKqKN3KpE/P3+zrA==", + "dev": true, + "dependencies": { + "@swc/core": "^1.3.61" + }, + "peerDependencies": { + "vite": "^4" + } + }, + "node_modules/acorn": { + "version": "8.10.0", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.10.0.tgz", + "integrity": "sha512-F0SAmZ8iUtS//m8DmCTA0jlh6TDKkHQyK6xc6V4KDTyZKA9dnvX9/3sRTVQrWm79glUAZbnmmNcdYwUIHWVybw==", + "dev": true, + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/acorn-jsx": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", + "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", + "dev": true, + "peerDependencies": { + "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" + } + }, + "node_modules/ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "dev": true, + "dependencies": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/argparse": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", + "dev": true + }, + "node_modules/array-union": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz", + "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/balanced-match": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", + "dev": true + }, + "node_modules/bootstrap": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/bootstrap/-/bootstrap-5.3.1.tgz", + "integrity": "sha512-jzwza3Yagduci2x0rr9MeFSORjcHpt0lRZukZPZQJT1Dth5qzV7XcgGqYzi39KGAVYR8QEDVoO0ubFKOxzMG+g==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/twbs" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/bootstrap" + } + ], + "peerDependencies": { + "@popperjs/core": "^2.11.8" + } + }, + "node_modules/brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "dev": true, + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "node_modules/braces": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", + "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", + "dev": true, + "dependencies": { + "fill-range": "^7.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/callsites": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", + "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/classnames": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/classnames/-/classnames-2.3.2.tgz", + "integrity": "sha512-CSbhY4cFEJRe6/GQzIk5qXZ4Jeg5pcsP7b5peFSDpffpe1cqjASH/n9UTjBwOp6XpMSTwQ8Za2K5V02ueA7Tmw==" + }, + "node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "node_modules/concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", + "dev": true + }, + "node_modules/cross-spawn": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", + "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", + "dev": true, + "dependencies": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/csstype": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.1.2.tgz", + "integrity": "sha512-I7K1Uu0MBPzaFKg4nI5Q7Vs2t+3gWWW648spaF+Rg7pI9ds18Ugn+lvg4SHczUdKlHI5LWBXyqfS8+DufyBsgQ==" + }, + "node_modules/debug": { + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", + "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", + "dev": true, + "dependencies": { + "ms": "2.1.2" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } + } + }, + "node_modules/deep-is": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", + "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==", + "dev": true + }, + "node_modules/dequal": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/dequal/-/dequal-2.0.3.tgz", + "integrity": "sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==", + "engines": { + "node": ">=6" + } + }, + "node_modules/dir-glob": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz", + "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==", + "dev": true, + "dependencies": { + "path-type": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/doctrine": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz", + "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==", + "dev": true, + "dependencies": { + "esutils": "^2.0.2" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/dom-helpers": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/dom-helpers/-/dom-helpers-5.2.1.tgz", + "integrity": "sha512-nRCa7CK3VTrM2NmGkIy4cbK7IZlgBE/PYMn55rrXefr5xXDP0LdtfPnblFDoVdcAfslJ7or6iqAUnx0CCGIWQA==", + "dependencies": { + "@babel/runtime": "^7.8.7", + "csstype": "^3.0.2" + } + }, + "node_modules/esbuild": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.18.20.tgz", + "integrity": "sha512-ceqxoedUrcayh7Y7ZX6NdbbDzGROiyVBgC4PriJThBKSVPWnnFHZAkfI1lJT8QFkOwH4qOS2SJkS4wvpGl8BpA==", + "dev": true, + "hasInstallScript": true, + "bin": { + "esbuild": "bin/esbuild" + }, + "engines": { + "node": ">=12" + }, + "optionalDependencies": { + "@esbuild/android-arm": "0.18.20", + "@esbuild/android-arm64": "0.18.20", + "@esbuild/android-x64": "0.18.20", + "@esbuild/darwin-arm64": "0.18.20", + "@esbuild/darwin-x64": "0.18.20", + "@esbuild/freebsd-arm64": "0.18.20", + "@esbuild/freebsd-x64": "0.18.20", + "@esbuild/linux-arm": "0.18.20", + "@esbuild/linux-arm64": "0.18.20", + "@esbuild/linux-ia32": "0.18.20", + "@esbuild/linux-loong64": "0.18.20", + "@esbuild/linux-mips64el": "0.18.20", + "@esbuild/linux-ppc64": "0.18.20", + "@esbuild/linux-riscv64": "0.18.20", + "@esbuild/linux-s390x": "0.18.20", + "@esbuild/linux-x64": "0.18.20", + "@esbuild/netbsd-x64": "0.18.20", + "@esbuild/openbsd-x64": "0.18.20", + "@esbuild/sunos-x64": "0.18.20", + "@esbuild/win32-arm64": "0.18.20", + "@esbuild/win32-ia32": "0.18.20", + "@esbuild/win32-x64": "0.18.20" + } + }, + "node_modules/escape-string-regexp": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", + "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/eslint": { + "version": "8.49.0", + "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.49.0.tgz", + "integrity": "sha512-jw03ENfm6VJI0jA9U+8H5zfl5b+FvuU3YYvZRdZHOlU2ggJkxrlkJH4HcDrZpj6YwD8kuYqvQM8LyesoazrSOQ==", + "dev": true, + "dependencies": { + "@eslint-community/eslint-utils": "^4.2.0", + "@eslint-community/regexpp": "^4.6.1", + "@eslint/eslintrc": "^2.1.2", + "@eslint/js": "8.49.0", + "@humanwhocodes/config-array": "^0.11.11", + "@humanwhocodes/module-importer": "^1.0.1", + "@nodelib/fs.walk": "^1.2.8", + "ajv": "^6.12.4", + "chalk": "^4.0.0", + "cross-spawn": "^7.0.2", + "debug": "^4.3.2", + "doctrine": "^3.0.0", + "escape-string-regexp": "^4.0.0", + "eslint-scope": "^7.2.2", + "eslint-visitor-keys": "^3.4.3", + "espree": "^9.6.1", + "esquery": "^1.4.2", + "esutils": "^2.0.2", + "fast-deep-equal": "^3.1.3", + "file-entry-cache": "^6.0.1", + "find-up": "^5.0.0", + "glob-parent": "^6.0.2", + "globals": "^13.19.0", + "graphemer": "^1.4.0", + "ignore": "^5.2.0", + "imurmurhash": "^0.1.4", + "is-glob": "^4.0.0", + "is-path-inside": "^3.0.3", + "js-yaml": "^4.1.0", + "json-stable-stringify-without-jsonify": "^1.0.1", + "levn": "^0.4.1", + "lodash.merge": "^4.6.2", + "minimatch": "^3.1.2", + "natural-compare": "^1.4.0", + "optionator": "^0.9.3", + "strip-ansi": "^6.0.1", + "text-table": "^0.2.0" + }, + "bin": { + "eslint": "bin/eslint.js" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/eslint-plugin-react-hooks": { + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-4.6.0.tgz", + "integrity": "sha512-oFc7Itz9Qxh2x4gNHStv3BqJq54ExXmfC+a1NjAta66IAN87Wu0R/QArgIS9qKzX3dXKPI9H5crl9QchNMY9+g==", + "dev": true, + "engines": { + "node": ">=10" + }, + "peerDependencies": { + "eslint": "^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0" + } + }, + "node_modules/eslint-plugin-react-refresh": { + "version": "0.4.3", + "resolved": "https://registry.npmjs.org/eslint-plugin-react-refresh/-/eslint-plugin-react-refresh-0.4.3.tgz", + "integrity": "sha512-Hh0wv8bUNY877+sI0BlCUlsS0TYYQqvzEwJsJJPM2WF4RnTStSnSR3zdJYa2nPOJgg3UghXi54lVyMSmpCalzA==", + "dev": true, + "peerDependencies": { + "eslint": ">=7" + } + }, + "node_modules/eslint-scope": { + "version": "7.2.2", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.2.2.tgz", + "integrity": "sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==", + "dev": true, + "dependencies": { + "esrecurse": "^4.3.0", + "estraverse": "^5.2.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/eslint-visitor-keys": { + "version": "3.4.3", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz", + "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==", + "dev": true, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/espree": { + "version": "9.6.1", + "resolved": "https://registry.npmjs.org/espree/-/espree-9.6.1.tgz", + "integrity": "sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==", + "dev": true, + "dependencies": { + "acorn": "^8.9.0", + "acorn-jsx": "^5.3.2", + "eslint-visitor-keys": "^3.4.1" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/esquery": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.5.0.tgz", + "integrity": "sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==", + "dev": true, + "dependencies": { + "estraverse": "^5.1.0" + }, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/esrecurse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", + "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", + "dev": true, + "dependencies": { + "estraverse": "^5.2.0" + }, + "engines": { + "node": ">=4.0" + } + }, + "node_modules/estraverse": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", + "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", + "dev": true, + "engines": { + "node": ">=4.0" + } + }, + "node_modules/esutils": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", + "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/fast-deep-equal": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", + "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", + "dev": true + }, + "node_modules/fast-glob": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.1.tgz", + "integrity": "sha512-kNFPyjhh5cKjrUltxs+wFx+ZkbRaxxmZ+X0ZU31SOsxCEtP9VPgtq2teZw1DebupL5GmDaNQ6yKMMVcM41iqDg==", + "dev": true, + "dependencies": { + "@nodelib/fs.stat": "^2.0.2", + "@nodelib/fs.walk": "^1.2.3", + "glob-parent": "^5.1.2", + "merge2": "^1.3.0", + "micromatch": "^4.0.4" + }, + "engines": { + "node": ">=8.6.0" + } + }, + "node_modules/fast-glob/node_modules/glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "dev": true, + "dependencies": { + "is-glob": "^4.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/fast-json-stable-stringify": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", + "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", + "dev": true + }, + "node_modules/fast-levenshtein": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", + "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==", + "dev": true + }, + "node_modules/fastq": { + "version": "1.15.0", + "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.15.0.tgz", + "integrity": "sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==", + "dev": true, + "dependencies": { + "reusify": "^1.0.4" + } + }, + "node_modules/file-entry-cache": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz", + "integrity": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==", + "dev": true, + "dependencies": { + "flat-cache": "^3.0.4" + }, + "engines": { + "node": "^10.12.0 || >=12.0.0" + } + }, + "node_modules/fill-range": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", + "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", + "dev": true, + "dependencies": { + "to-regex-range": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/find-up": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", + "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", + "dev": true, + "dependencies": { + "locate-path": "^6.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/flat-cache": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.1.0.tgz", + "integrity": "sha512-OHx4Qwrrt0E4jEIcI5/Xb+f+QmJYNj2rrK8wiIdQOIrB9WrrJL8cjZvXdXuBTkkEwEqLycb5BeZDV1o2i9bTew==", + "dev": true, + "dependencies": { + "flatted": "^3.2.7", + "keyv": "^4.5.3", + "rimraf": "^3.0.2" + }, + "engines": { + "node": ">=12.0.0" + } + }, + "node_modules/flatted": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.2.7.tgz", + "integrity": "sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ==", + "dev": true + }, + "node_modules/fs.realpath": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", + "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==", + "dev": true + }, + "node_modules/fsevents": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", + "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", + "dev": true, + "hasInstallScript": true, + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^8.16.0 || ^10.6.0 || >=11.0.0" + } + }, + "node_modules/glob": { + "version": "7.2.3", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", + "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", + "dev": true, + "dependencies": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.1.1", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "engines": { + "node": "*" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/glob-parent": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", + "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", + "dev": true, + "dependencies": { + "is-glob": "^4.0.3" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/globals": { + "version": "13.21.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-13.21.0.tgz", + "integrity": "sha512-ybyme3s4yy/t/3s35bewwXKOf7cvzfreG2lH0lZl0JB7I4GxRP2ghxOK/Nb9EkRXdbBXZLfq/p/0W2JUONB/Gg==", + "dev": true, + "dependencies": { + "type-fest": "^0.20.2" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/globby": { + "version": "11.1.0", + "resolved": "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz", + "integrity": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==", + "dev": true, + "dependencies": { + "array-union": "^2.1.0", + "dir-glob": "^3.0.1", + "fast-glob": "^3.2.9", + "ignore": "^5.2.0", + "merge2": "^1.4.1", + "slash": "^3.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/graphemer": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/graphemer/-/graphemer-1.4.0.tgz", + "integrity": "sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==", + "dev": true + }, + "node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/hoist-non-react-statics": { + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/hoist-non-react-statics/-/hoist-non-react-statics-3.3.2.tgz", + "integrity": "sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==", + "dependencies": { + "react-is": "^16.7.0" + } + }, + "node_modules/ignore": { + "version": "5.2.4", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.2.4.tgz", + "integrity": "sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==", + "dev": true, + "engines": { + "node": ">= 4" + } + }, + "node_modules/immer": { + "version": "9.0.21", + "resolved": "https://registry.npmjs.org/immer/-/immer-9.0.21.tgz", + "integrity": "sha512-bc4NBHqOqSfRW7POMkHd51LvClaeMXpm8dx0e8oE2GORbq5aRK7Bxl4FyzVLdGtLmvLKL7BTDBG5ACQm4HWjTA==", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/immer" + } + }, + "node_modules/import-fresh": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", + "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", + "dev": true, + "dependencies": { + "parent-module": "^1.0.0", + "resolve-from": "^4.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/imurmurhash": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", + "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", + "dev": true, + "engines": { + "node": ">=0.8.19" + } + }, + "node_modules/inflight": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", + "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", + "dev": true, + "dependencies": { + "once": "^1.3.0", + "wrappy": "1" + } + }, + "node_modules/inherits": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", + "dev": true + }, + "node_modules/invariant": { + "version": "2.2.4", + "resolved": "https://registry.npmjs.org/invariant/-/invariant-2.2.4.tgz", + "integrity": "sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==", + "dependencies": { + "loose-envify": "^1.0.0" + } + }, + "node_modules/is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-glob": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", + "dev": true, + "dependencies": { + "is-extglob": "^2.1.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "dev": true, + "engines": { + "node": ">=0.12.0" + } + }, + "node_modules/is-path-inside": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz", + "integrity": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/isexe": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", + "dev": true + }, + "node_modules/js-tokens": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", + "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==" + }, + "node_modules/js-yaml": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", + "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", + "dev": true, + "dependencies": { + "argparse": "^2.0.1" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" + } + }, + "node_modules/json-buffer": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz", + "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==", + "dev": true + }, + "node_modules/json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", + "dev": true + }, + "node_modules/json-stable-stringify-without-jsonify": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", + "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==", + "dev": true + }, + "node_modules/keyv": { + "version": "4.5.3", + "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.3.tgz", + "integrity": "sha512-QCiSav9WaX1PgETJ+SpNnx2PRRapJ/oRSXM4VO5OGYGSjrxbKPVFVhB3l2OCbLCk329N8qyAtsJjSjvVBWzEug==", + "dev": true, + "dependencies": { + "json-buffer": "3.0.1" + } + }, + "node_modules/levn": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", + "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", + "dev": true, + "dependencies": { + "prelude-ls": "^1.2.1", + "type-check": "~0.4.0" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/locate-path": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", + "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", + "dev": true, + "dependencies": { + "p-locate": "^5.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/lodash.merge": { + "version": "4.6.2", + "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", + "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==", + "dev": true + }, + "node_modules/loose-envify": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz", + "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==", + "dependencies": { + "js-tokens": "^3.0.0 || ^4.0.0" + }, + "bin": { + "loose-envify": "cli.js" + } + }, + "node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dev": true, + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/merge2": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", + "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", + "dev": true, + "engines": { + "node": ">= 8" + } + }, + "node_modules/micromatch": { + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", + "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", + "dev": true, + "dependencies": { + "braces": "^3.0.2", + "picomatch": "^2.3.1" + }, + "engines": { + "node": ">=8.6" + } + }, + "node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dev": true, + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, + "node_modules/ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", + "dev": true + }, + "node_modules/nanoid": { + "version": "3.3.6", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.6.tgz", + "integrity": "sha512-BGcqMMJuToF7i1rt+2PWSNVnWIkGCU78jBG3RxO/bZlnZPK2Cmi2QaffxGO/2RvWi9sL+FAiRiXMgsyxQ1DIDA==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "bin": { + "nanoid": "bin/nanoid.cjs" + }, + "engines": { + "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" + } + }, + "node_modules/natural-compare": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", + "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==", + "dev": true + }, + "node_modules/object-assign": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", + "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/once": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", + "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", + "dev": true, + "dependencies": { + "wrappy": "1" + } + }, + "node_modules/optionator": { + "version": "0.9.3", + "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.3.tgz", + "integrity": "sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg==", + "dev": true, + "dependencies": { + "@aashutoshrathi/word-wrap": "^1.2.3", + "deep-is": "^0.1.3", + "fast-levenshtein": "^2.0.6", + "levn": "^0.4.1", + "prelude-ls": "^1.2.1", + "type-check": "^0.4.0" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/p-limit": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", + "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", + "dev": true, + "dependencies": { + "yocto-queue": "^0.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/p-locate": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", + "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", + "dev": true, + "dependencies": { + "p-limit": "^3.0.2" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/parent-module": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", + "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", + "dev": true, + "dependencies": { + "callsites": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/path-exists": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", + "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/path-is-absolute": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", + "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/path-key": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/path-type": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", + "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/picocolors": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", + "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==", + "dev": true + }, + "node_modules/picomatch": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "dev": true, + "engines": { + "node": ">=8.6" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/postcss": { + "version": "8.4.29", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.29.tgz", + "integrity": "sha512-cbI+jaqIeu/VGqXEarWkRCCffhjgXc0qjBtXpqJhTBohMUjUQnbBr0xqX3vEKudc4iviTewcJo5ajcec5+wdJw==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/postcss" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "dependencies": { + "nanoid": "^3.3.6", + "picocolors": "^1.0.0", + "source-map-js": "^1.0.2" + }, + "engines": { + "node": "^10 || ^12 || >=14" + } + }, + "node_modules/prelude-ls": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", + "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", + "dev": true, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/prop-types": { + "version": "15.8.1", + "resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.8.1.tgz", + "integrity": "sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==", + "dependencies": { + "loose-envify": "^1.4.0", + "object-assign": "^4.1.1", + "react-is": "^16.13.1" + } + }, + "node_modules/prop-types-extra": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/prop-types-extra/-/prop-types-extra-1.1.1.tgz", + "integrity": "sha512-59+AHNnHYCdiC+vMwY52WmvP5dM3QLeoumYuEyceQDi9aEhtwN9zIQ2ZNo25sMyXnbh32h+P1ezDsUpUH3JAew==", + "dependencies": { + "react-is": "^16.3.2", + "warning": "^4.0.0" + }, + "peerDependencies": { + "react": ">=0.14.0" + } + }, + "node_modules/punycode": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.0.tgz", + "integrity": "sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/queue-microtask": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", + "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/react": { + "version": "18.2.0", + "resolved": "https://registry.npmjs.org/react/-/react-18.2.0.tgz", + "integrity": "sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==", + "dependencies": { + "loose-envify": "^1.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/react-bootstrap": { + "version": "2.8.0", + "resolved": "https://registry.npmjs.org/react-bootstrap/-/react-bootstrap-2.8.0.tgz", + "integrity": "sha512-e/aNtxl0Z2ozrIaR82jr6Zz7ss9GSoaXpQaxmvtDUsTZIq/XalkduR/ZXP6vbQHz2T4syvjA+4FbtwELxxmpww==", + "dependencies": { + "@babel/runtime": "^7.21.0", + "@restart/hooks": "^0.4.9", + "@restart/ui": "^1.6.3", + "@types/react-transition-group": "^4.4.5", + "classnames": "^2.3.2", + "dom-helpers": "^5.2.1", + "invariant": "^2.2.4", + "prop-types": "^15.8.1", + "prop-types-extra": "^1.1.0", + "react-transition-group": "^4.4.5", + "uncontrollable": "^7.2.1", + "warning": "^4.0.3" + }, + "peerDependencies": { + "@types/react": ">=16.14.8", + "react": ">=16.14.0", + "react-dom": ">=16.14.0" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + } + } + }, + "node_modules/react-dom": { + "version": "18.2.0", + "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-18.2.0.tgz", + "integrity": "sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g==", + "dependencies": { + "loose-envify": "^1.1.0", + "scheduler": "^0.23.0" + }, + "peerDependencies": { + "react": "^18.2.0" + } + }, + "node_modules/react-is": { + "version": "16.13.1", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz", + "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==" + }, + "node_modules/react-lifecycles-compat": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/react-lifecycles-compat/-/react-lifecycles-compat-3.0.4.tgz", + "integrity": "sha512-fBASbA6LnOU9dOU2eW7aQ8xmYBSXUIWr+UmF9b1efZBazGNO+rcXT/icdKnYm2pTwcRylVUYwW7H1PHfLekVzA==" + }, + "node_modules/react-redux": { + "version": "8.1.2", + "resolved": "https://registry.npmjs.org/react-redux/-/react-redux-8.1.2.tgz", + "integrity": "sha512-xJKYI189VwfsFc4CJvHqHlDrzyFTY/3vZACbE+rr/zQ34Xx1wQfB4OTOSeOSNrF6BDVe8OOdxIrAnMGXA3ggfw==", + "dependencies": { + "@babel/runtime": "^7.12.1", + "@types/hoist-non-react-statics": "^3.3.1", + "@types/use-sync-external-store": "^0.0.3", + "hoist-non-react-statics": "^3.3.2", + "react-is": "^18.0.0", + "use-sync-external-store": "^1.0.0" + }, + "peerDependencies": { + "@types/react": "^16.8 || ^17.0 || ^18.0", + "@types/react-dom": "^16.8 || ^17.0 || ^18.0", + "react": "^16.8 || ^17.0 || ^18.0", + "react-dom": "^16.8 || ^17.0 || ^18.0", + "react-native": ">=0.59", + "redux": "^4 || ^5.0.0-beta.0" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + }, + "@types/react-dom": { + "optional": true + }, + "react-dom": { + "optional": true + }, + "react-native": { + "optional": true + }, + "redux": { + "optional": true + } + } + }, + "node_modules/react-redux/node_modules/react-is": { + "version": "18.2.0", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.2.0.tgz", + "integrity": "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==" + }, + "node_modules/react-router": { + "version": "6.15.0", + "resolved": "https://registry.npmjs.org/react-router/-/react-router-6.15.0.tgz", + "integrity": "sha512-NIytlzvzLwJkCQj2HLefmeakxxWHWAP+02EGqWEZy+DgfHHKQMUoBBjUQLOtFInBMhWtb3hiUy6MfFgwLjXhqg==", + "dependencies": { + "@remix-run/router": "1.8.0" + }, + "engines": { + "node": ">=14.0.0" + }, + "peerDependencies": { + "react": ">=16.8" + } + }, + "node_modules/react-router-dom": { + "version": "6.15.0", + "resolved": "https://registry.npmjs.org/react-router-dom/-/react-router-dom-6.15.0.tgz", + "integrity": "sha512-aR42t0fs7brintwBGAv2+mGlCtgtFQeOzK0BM1/OiqEzRejOZtpMZepvgkscpMUnKb8YO84G7s3LsHnnDNonbQ==", + "dependencies": { + "@remix-run/router": "1.8.0", + "react-router": "6.15.0" + }, + "engines": { + "node": ">=14.0.0" + }, + "peerDependencies": { + "react": ">=16.8", + "react-dom": ">=16.8" + } + }, + "node_modules/react-transition-group": { + "version": "4.4.5", + "resolved": "https://registry.npmjs.org/react-transition-group/-/react-transition-group-4.4.5.tgz", + "integrity": "sha512-pZcd1MCJoiKiBR2NRxeCRg13uCXbydPnmB4EOeRrY7480qNWO8IIgQG6zlDkm6uRMsURXPuKq0GWtiM59a5Q6g==", + "dependencies": { + "@babel/runtime": "^7.5.5", + "dom-helpers": "^5.0.1", + "loose-envify": "^1.4.0", + "prop-types": "^15.6.2" + }, + "peerDependencies": { + "react": ">=16.6.0", + "react-dom": ">=16.6.0" + } + }, + "node_modules/redux": { + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/redux/-/redux-4.2.1.tgz", + "integrity": "sha512-LAUYz4lc+Do8/g7aeRa8JkyDErK6ekstQaqWQrNRW//MY1TvCEpMtpTWvlQ+FPbWCx+Xixu/6SHt5N0HR+SB4w==", + "dependencies": { + "@babel/runtime": "^7.9.2" + } + }, + "node_modules/redux-thunk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/redux-thunk/-/redux-thunk-2.4.2.tgz", + "integrity": "sha512-+P3TjtnP0k/FEjcBL5FZpoovtvrTNT/UXd4/sluaSyrURlSlhLSzEdfsTBW7WsKB6yPvgd7q/iZPICFjW4o57Q==", + "peerDependencies": { + "redux": "^4" + } + }, + "node_modules/regenerator-runtime": { + "version": "0.14.0", + "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.14.0.tgz", + "integrity": "sha512-srw17NI0TUWHuGa5CFGGmhfNIeja30WMBfbslPNhf6JrqQlLN5gcrvig1oqPxiVaXb0oW0XRKtH6Nngs5lKCIA==" + }, + "node_modules/reselect": { + "version": "4.1.8", + "resolved": "https://registry.npmjs.org/reselect/-/reselect-4.1.8.tgz", + "integrity": "sha512-ab9EmR80F/zQTMNeneUr4cv+jSwPJgIlvEmVwLerwrWVbpLlBuls9XHzIeTFy4cegU2NHBp3va0LKOzU5qFEYQ==" + }, + "node_modules/resolve-from": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", + "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/reusify": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", + "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", + "dev": true, + "engines": { + "iojs": ">=1.0.0", + "node": ">=0.10.0" + } + }, + "node_modules/rimraf": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", + "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", + "dev": true, + "dependencies": { + "glob": "^7.1.3" + }, + "bin": { + "rimraf": "bin.js" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/rollup": { + "version": "3.29.1", + "resolved": "https://registry.npmjs.org/rollup/-/rollup-3.29.1.tgz", + "integrity": "sha512-c+ebvQz0VIH4KhhCpDsI+Bik0eT8ZFEVZEYw0cGMVqIP8zc+gnwl7iXCamTw7vzv2MeuZFZfdx5JJIq+ehzDlg==", + "dev": true, + "bin": { + "rollup": "dist/bin/rollup" + }, + "engines": { + "node": ">=14.18.0", + "npm": ">=8.0.0" + }, + "optionalDependencies": { + "fsevents": "~2.3.2" + } + }, + "node_modules/run-parallel": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", + "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "dependencies": { + "queue-microtask": "^1.2.2" + } + }, + "node_modules/scheduler": { + "version": "0.23.0", + "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.23.0.tgz", + "integrity": "sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw==", + "dependencies": { + "loose-envify": "^1.1.0" + } + }, + "node_modules/semver": { + "version": "7.5.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", + "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", + "dev": true, + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/shebang-command": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", + "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", + "dev": true, + "dependencies": { + "shebang-regex": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/shebang-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/slash": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", + "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/source-map-js": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.0.2.tgz", + "integrity": "sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dev": true, + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-json-comments": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", + "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", + "dev": true, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/text-table": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", + "integrity": "sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==", + "dev": true + }, + "node_modules/to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "dev": true, + "dependencies": { + "is-number": "^7.0.0" + }, + "engines": { + "node": ">=8.0" + } + }, + "node_modules/ts-api-utils": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/ts-api-utils/-/ts-api-utils-1.0.3.tgz", + "integrity": "sha512-wNMeqtMz5NtwpT/UZGY5alT+VoKdSsOOP/kqHFcUW1P/VRhH2wJ48+DN2WwUliNbQ976ETwDL0Ifd2VVvgonvg==", + "dev": true, + "engines": { + "node": ">=16.13.0" + }, + "peerDependencies": { + "typescript": ">=4.2.0" + } + }, + "node_modules/tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==" + }, + "node_modules/type-check": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", + "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", + "dev": true, + "dependencies": { + "prelude-ls": "^1.2.1" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/type-fest": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", + "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/typescript": { + "version": "5.2.2", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.2.2.tgz", + "integrity": "sha512-mI4WrpHsbCIcwT9cF4FZvr80QUeKvsUsUvKDoR+X/7XHQH98xYD8YHZg7ANtz2GtZt/CBq2QJ0thkGJMHfqc1w==", + "dev": true, + "bin": { + "tsc": "bin/tsc", + "tsserver": "bin/tsserver" + }, + "engines": { + "node": ">=14.17" + } + }, + "node_modules/uncontrollable": { + "version": "7.2.1", + "resolved": "https://registry.npmjs.org/uncontrollable/-/uncontrollable-7.2.1.tgz", + "integrity": "sha512-svtcfoTADIB0nT9nltgjujTi7BzVmwjZClOmskKu/E8FW9BXzg9os8OLr4f8Dlnk0rYWJIWr4wv9eKUXiQvQwQ==", + "dependencies": { + "@babel/runtime": "^7.6.3", + "@types/react": ">=16.9.11", + "invariant": "^2.2.4", + "react-lifecycles-compat": "^3.0.4" + }, + "peerDependencies": { + "react": ">=15.0.0" + } + }, + "node_modules/uri-js": { + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", + "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", + "dev": true, + "dependencies": { + "punycode": "^2.1.0" + } + }, + "node_modules/use-sync-external-store": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/use-sync-external-store/-/use-sync-external-store-1.2.0.tgz", + "integrity": "sha512-eEgnFxGQ1Ife9bzYs6VLi8/4X6CObHMw9Qr9tPY43iKwsPw8xE8+EFsf/2cFZ5S3esXgpWgtSCtLNS41F+sKPA==", + "peerDependencies": { + "react": "^16.8.0 || ^17.0.0 || ^18.0.0" + } + }, + "node_modules/vite": { + "version": "4.4.9", + "resolved": "https://registry.npmjs.org/vite/-/vite-4.4.9.tgz", + "integrity": "sha512-2mbUn2LlUmNASWwSCNSJ/EG2HuSRTnVNaydp6vMCm5VIqJsjMfbIWtbH2kDuwUVW5mMUKKZvGPX/rqeqVvv1XA==", + "dev": true, + "dependencies": { + "esbuild": "^0.18.10", + "postcss": "^8.4.27", + "rollup": "^3.27.1" + }, + "bin": { + "vite": "bin/vite.js" + }, + "engines": { + "node": "^14.18.0 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/vitejs/vite?sponsor=1" + }, + "optionalDependencies": { + "fsevents": "~2.3.2" + }, + "peerDependencies": { + "@types/node": ">= 14", + "less": "*", + "lightningcss": "^1.21.0", + "sass": "*", + "stylus": "*", + "sugarss": "*", + "terser": "^5.4.0" + }, + "peerDependenciesMeta": { + "@types/node": { + "optional": true + }, + "less": { + "optional": true + }, + "lightningcss": { + "optional": true + }, + "sass": { + "optional": true + }, + "stylus": { + "optional": true + }, + "sugarss": { + "optional": true + }, + "terser": { + "optional": true + } + } + }, + "node_modules/warning": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/warning/-/warning-4.0.3.tgz", + "integrity": "sha512-rpJyN222KWIvHJ/F53XSZv0Zl/accqHR8et1kpaMTD/fLCRxtV8iX8czMzY7sVZupTI3zcUTg8eycS2kNF9l6w==", + "dependencies": { + "loose-envify": "^1.0.0" + } + }, + "node_modules/which": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "dev": true, + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "node-which": "bin/node-which" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/wrappy": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", + "dev": true + }, + "node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + }, + "node_modules/yocto-queue": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", + "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + } + }, + "dependencies": { + "@aashutoshrathi/word-wrap": { + "version": "1.2.6", + "resolved": "https://registry.npmjs.org/@aashutoshrathi/word-wrap/-/word-wrap-1.2.6.tgz", + "integrity": "sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==", + "dev": true + }, + "@babel/runtime": { + "version": "7.22.15", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.22.15.tgz", + "integrity": "sha512-T0O+aa+4w0u06iNmapipJXMV4HoUir03hpx3/YqXXhu9xim3w+dVphjFWl1OH8NbZHw5Lbm9k45drDkgq2VNNA==", + "requires": { + "regenerator-runtime": "^0.14.0" + } + }, + "@esbuild/android-arm": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.18.20.tgz", + "integrity": "sha512-fyi7TDI/ijKKNZTUJAQqiG5T7YjJXgnzkURqmGj13C6dCqckZBLdl4h7bkhHt/t0WP+zO9/zwroDvANaOqO5Sw==", + "dev": true, + "optional": true + }, + "@esbuild/android-arm64": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.18.20.tgz", + "integrity": "sha512-Nz4rJcchGDtENV0eMKUNa6L12zz2zBDXuhj/Vjh18zGqB44Bi7MBMSXjgunJgjRhCmKOjnPuZp4Mb6OKqtMHLQ==", + "dev": true, + "optional": true + }, + "@esbuild/android-x64": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.18.20.tgz", + "integrity": "sha512-8GDdlePJA8D6zlZYJV/jnrRAi6rOiNaCC/JclcXpB+KIuvfBN4owLtgzY2bsxnx666XjJx2kDPUmnTtR8qKQUg==", + "dev": true, + "optional": true + }, + "@esbuild/darwin-arm64": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.18.20.tgz", + "integrity": "sha512-bxRHW5kHU38zS2lPTPOyuyTm+S+eobPUnTNkdJEfAddYgEcll4xkT8DB9d2008DtTbl7uJag2HuE5NZAZgnNEA==", + "dev": true, + "optional": true + }, + "@esbuild/darwin-x64": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.18.20.tgz", + "integrity": "sha512-pc5gxlMDxzm513qPGbCbDukOdsGtKhfxD1zJKXjCCcU7ju50O7MeAZ8c4krSJcOIJGFR+qx21yMMVYwiQvyTyQ==", + "dev": true, + "optional": true + }, + "@esbuild/freebsd-arm64": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.18.20.tgz", + "integrity": "sha512-yqDQHy4QHevpMAaxhhIwYPMv1NECwOvIpGCZkECn8w2WFHXjEwrBn3CeNIYsibZ/iZEUemj++M26W3cNR5h+Tw==", + "dev": true, + "optional": true + }, + "@esbuild/freebsd-x64": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.18.20.tgz", + "integrity": "sha512-tgWRPPuQsd3RmBZwarGVHZQvtzfEBOreNuxEMKFcd5DaDn2PbBxfwLcj4+aenoh7ctXcbXmOQIn8HI6mCSw5MQ==", + "dev": true, + "optional": true + }, + "@esbuild/linux-arm": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.18.20.tgz", + "integrity": "sha512-/5bHkMWnq1EgKr1V+Ybz3s1hWXok7mDFUMQ4cG10AfW3wL02PSZi5kFpYKrptDsgb2WAJIvRcDm+qIvXf/apvg==", + "dev": true, + "optional": true + }, + "@esbuild/linux-arm64": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.18.20.tgz", + "integrity": "sha512-2YbscF+UL7SQAVIpnWvYwM+3LskyDmPhe31pE7/aoTMFKKzIc9lLbyGUpmmb8a8AixOL61sQ/mFh3jEjHYFvdA==", + "dev": true, + "optional": true + }, + "@esbuild/linux-ia32": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.18.20.tgz", + "integrity": "sha512-P4etWwq6IsReT0E1KHU40bOnzMHoH73aXp96Fs8TIT6z9Hu8G6+0SHSw9i2isWrD2nbx2qo5yUqACgdfVGx7TA==", + "dev": true, + "optional": true + }, + "@esbuild/linux-loong64": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.18.20.tgz", + "integrity": "sha512-nXW8nqBTrOpDLPgPY9uV+/1DjxoQ7DoB2N8eocyq8I9XuqJ7BiAMDMf9n1xZM9TgW0J8zrquIb/A7s3BJv7rjg==", + "dev": true, + "optional": true + }, + "@esbuild/linux-mips64el": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.18.20.tgz", + "integrity": "sha512-d5NeaXZcHp8PzYy5VnXV3VSd2D328Zb+9dEq5HE6bw6+N86JVPExrA6O68OPwobntbNJ0pzCpUFZTo3w0GyetQ==", + "dev": true, + "optional": true + }, + "@esbuild/linux-ppc64": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.18.20.tgz", + "integrity": "sha512-WHPyeScRNcmANnLQkq6AfyXRFr5D6N2sKgkFo2FqguP44Nw2eyDlbTdZwd9GYk98DZG9QItIiTlFLHJHjxP3FA==", + "dev": true, + "optional": true + }, + "@esbuild/linux-riscv64": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.18.20.tgz", + "integrity": "sha512-WSxo6h5ecI5XH34KC7w5veNnKkju3zBRLEQNY7mv5mtBmrP/MjNBCAlsM2u5hDBlS3NGcTQpoBvRzqBcRtpq1A==", + "dev": true, + "optional": true + }, + "@esbuild/linux-s390x": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.18.20.tgz", + "integrity": "sha512-+8231GMs3mAEth6Ja1iK0a1sQ3ohfcpzpRLH8uuc5/KVDFneH6jtAJLFGafpzpMRO6DzJ6AvXKze9LfFMrIHVQ==", + "dev": true, + "optional": true + }, + "@esbuild/linux-x64": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.18.20.tgz", + "integrity": "sha512-UYqiqemphJcNsFEskc73jQ7B9jgwjWrSayxawS6UVFZGWrAAtkzjxSqnoclCXxWtfwLdzU+vTpcNYhpn43uP1w==", + "dev": true, + "optional": true + }, + "@esbuild/netbsd-x64": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.18.20.tgz", + "integrity": "sha512-iO1c++VP6xUBUmltHZoMtCUdPlnPGdBom6IrO4gyKPFFVBKioIImVooR5I83nTew5UOYrk3gIJhbZh8X44y06A==", + "dev": true, + "optional": true + }, + "@esbuild/openbsd-x64": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.18.20.tgz", + "integrity": "sha512-e5e4YSsuQfX4cxcygw/UCPIEP6wbIL+se3sxPdCiMbFLBWu0eiZOJ7WoD+ptCLrmjZBK1Wk7I6D/I3NglUGOxg==", + "dev": true, + "optional": true + }, + "@esbuild/sunos-x64": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.18.20.tgz", + "integrity": "sha512-kDbFRFp0YpTQVVrqUd5FTYmWo45zGaXe0X8E1G/LKFC0v8x0vWrhOWSLITcCn63lmZIxfOMXtCfti/RxN/0wnQ==", + "dev": true, + "optional": true + }, + "@esbuild/win32-arm64": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.18.20.tgz", + "integrity": "sha512-ddYFR6ItYgoaq4v4JmQQaAI5s7npztfV4Ag6NrhiaW0RrnOXqBkgwZLofVTlq1daVTQNhtI5oieTvkRPfZrePg==", + "dev": true, + "optional": true + }, + "@esbuild/win32-ia32": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.18.20.tgz", + "integrity": "sha512-Wv7QBi3ID/rROT08SABTS7eV4hX26sVduqDOTe1MvGMjNd3EjOz4b7zeexIR62GTIEKrfJXKL9LFxTYgkyeu7g==", + "dev": true, + "optional": true + }, + "@esbuild/win32-x64": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.18.20.tgz", + "integrity": "sha512-kTdfRcSiDfQca/y9QIkng02avJ+NCaQvrMejlsB3RRv5sE9rRoeBPISaZpKxHELzRxZyLvNts1P27W3wV+8geQ==", + "dev": true, + "optional": true + }, + "@eslint-community/eslint-utils": { + "version": "4.4.0", + "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.4.0.tgz", + "integrity": "sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==", + "dev": true, + "requires": { + "eslint-visitor-keys": "^3.3.0" + } + }, + "@eslint-community/regexpp": { + "version": "4.8.1", + "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.8.1.tgz", + "integrity": "sha512-PWiOzLIUAjN/w5K17PoF4n6sKBw0gqLHPhywmYHP4t1VFQQVYeb1yWsJwnMVEMl3tUHME7X/SJPZLmtG7XBDxQ==", + "dev": true + }, + "@eslint/eslintrc": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-2.1.2.tgz", + "integrity": "sha512-+wvgpDsrB1YqAMdEUCcnTlpfVBH7Vqn6A/NT3D8WVXFIaKMlErPIZT3oCIAVCOtarRpMtelZLqJeU3t7WY6X6g==", + "dev": true, + "requires": { + "ajv": "^6.12.4", + "debug": "^4.3.2", + "espree": "^9.6.0", + "globals": "^13.19.0", + "ignore": "^5.2.0", + "import-fresh": "^3.2.1", + "js-yaml": "^4.1.0", + "minimatch": "^3.1.2", + "strip-json-comments": "^3.1.1" + } + }, + "@eslint/js": { + "version": "8.49.0", + "resolved": "https://registry.npmjs.org/@eslint/js/-/js-8.49.0.tgz", + "integrity": "sha512-1S8uAY/MTJqVx0SC4epBq+N2yhuwtNwLbJYNZyhL2pO1ZVKn5HFXav5T41Ryzy9K9V7ZId2JB2oy/W4aCd9/2w==", + "dev": true + }, + "@faker-js/faker": { + "version": "8.0.2", + "resolved": "https://registry.npmjs.org/@faker-js/faker/-/faker-8.0.2.tgz", + "integrity": "sha512-Uo3pGspElQW91PCvKSIAXoEgAUlRnH29sX2/p89kg7sP1m2PzCufHINd0FhTXQf6DYGiUlVncdSPa2F9wxed2A==", + "dev": true + }, + "@humanwhocodes/config-array": { + "version": "0.11.11", + "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.11.tgz", + "integrity": "sha512-N2brEuAadi0CcdeMXUkhbZB84eskAc8MEX1By6qEchoVywSgXPIjou4rYsl0V3Hj0ZnuGycGCjdNgockbzeWNA==", + "dev": true, + "requires": { + "@humanwhocodes/object-schema": "^1.2.1", + "debug": "^4.1.1", + "minimatch": "^3.0.5" + } + }, + "@humanwhocodes/module-importer": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz", + "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==", + "dev": true + }, + "@humanwhocodes/object-schema": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz", + "integrity": "sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==", + "dev": true + }, + "@nodelib/fs.scandir": { + "version": "2.1.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", + "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", + "dev": true, + "requires": { + "@nodelib/fs.stat": "2.0.5", + "run-parallel": "^1.1.9" + } + }, + "@nodelib/fs.stat": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", + "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", + "dev": true + }, + "@nodelib/fs.walk": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", + "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", + "dev": true, + "requires": { + "@nodelib/fs.scandir": "2.1.5", + "fastq": "^1.6.0" + } + }, + "@popperjs/core": { + "version": "2.11.8", + "resolved": "https://registry.npmjs.org/@popperjs/core/-/core-2.11.8.tgz", + "integrity": "sha512-P1st0aksCrn9sGZhp8GMYwBnQsbvAWsZAX44oXNNvLHGqAOcoVxmjZiohstwQ7SqKnbR47akdNi+uleWD8+g6A==" + }, + "@react-aria/ssr": { + "version": "3.8.0", + "resolved": "https://registry.npmjs.org/@react-aria/ssr/-/ssr-3.8.0.tgz", + "integrity": "sha512-Y54xs483rglN5DxbwfCPHxnkvZ+gZ0LbSYmR72LyWPGft8hN/lrl1VRS1EW2SMjnkEWlj+Km2mwvA3kEHDUA0A==", + "requires": { + "@swc/helpers": "^0.5.0" + } + }, + "@reduxjs/toolkit": { + "version": "1.9.5", + "resolved": "https://registry.npmjs.org/@reduxjs/toolkit/-/toolkit-1.9.5.tgz", + "integrity": "sha512-Rt97jHmfTeaxL4swLRNPD/zV4OxTes4la07Xc4hetpUW/vc75t5m1ANyxG6ymnEQ2FsLQsoMlYB2vV1sO3m8tQ==", + "requires": { + "immer": "^9.0.21", + "redux": "^4.2.1", + "redux-thunk": "^2.4.2", + "reselect": "^4.1.8" + } + }, + "@remix-run/router": { + "version": "1.8.0", + "resolved": "https://registry.npmjs.org/@remix-run/router/-/router-1.8.0.tgz", + "integrity": "sha512-mrfKqIHnSZRyIzBcanNJmVQELTnX+qagEDlcKO90RgRBVOZGSGvZKeDihTRfWcqoDn5N/NkUcwWTccnpN18Tfg==" + }, + "@restart/hooks": { + "version": "0.4.11", + "resolved": "https://registry.npmjs.org/@restart/hooks/-/hooks-0.4.11.tgz", + "integrity": "sha512-Ft/ncTULZN6ldGHiF/k5qt72O8JyRMOeg0tApvCni8LkoiEahO+z3TNxfXIVGy890YtWVDvJAl662dVJSJXvMw==", + "requires": { + "dequal": "^2.0.3" + } + }, + "@restart/ui": { + "version": "1.6.6", + "resolved": "https://registry.npmjs.org/@restart/ui/-/ui-1.6.6.tgz", + "integrity": "sha512-eC3puKuWE1SRYbojWHXnvCNHGgf3uzHCb6JOhnF4OXPibOIPEkR1sqDSkL643ydigxwh+ruCa1CmYHlzk7ikKA==", + "requires": { + "@babel/runtime": "^7.21.0", + "@popperjs/core": "^2.11.6", + "@react-aria/ssr": "^3.5.0", + "@restart/hooks": "^0.4.9", + "@types/warning": "^3.0.0", + "dequal": "^2.0.3", + "dom-helpers": "^5.2.0", + "uncontrollable": "^8.0.1", + "warning": "^4.0.3" + }, + "dependencies": { + "uncontrollable": { + "version": "8.0.4", + "resolved": "https://registry.npmjs.org/uncontrollable/-/uncontrollable-8.0.4.tgz", + "integrity": "sha512-ulRWYWHvscPFc0QQXvyJjY6LIXU56f0h8pQFvhxiKk5V1fcI8gp9Ht9leVAhrVjzqMw0BgjspBINx9r6oyJUvQ==", + "requires": {} + } + } + }, + "@swc/core": { + "version": "1.3.84", + "resolved": "https://registry.npmjs.org/@swc/core/-/core-1.3.84.tgz", + "integrity": "sha512-UPKUiDwG7HOdPfOb1VFeEJ76JDgU2w80JLewzx6tb0fk9TIjhr9yxKBzPbzc/QpjGHDu5iaEuNeZcu27u4j63g==", + "dev": true, + "requires": { + "@swc/core-darwin-arm64": "1.3.84", + "@swc/core-darwin-x64": "1.3.84", + "@swc/core-linux-arm-gnueabihf": "1.3.84", + "@swc/core-linux-arm64-gnu": "1.3.84", + "@swc/core-linux-arm64-musl": "1.3.84", + "@swc/core-linux-x64-gnu": "1.3.84", + "@swc/core-linux-x64-musl": "1.3.84", + "@swc/core-win32-arm64-msvc": "1.3.84", + "@swc/core-win32-ia32-msvc": "1.3.84", + "@swc/core-win32-x64-msvc": "1.3.84", + "@swc/types": "^0.1.4" + } + }, + "@swc/core-darwin-arm64": { + "version": "1.3.84", + "resolved": "https://registry.npmjs.org/@swc/core-darwin-arm64/-/core-darwin-arm64-1.3.84.tgz", + "integrity": "sha512-mqK0buOo+toF2HoJ/gWj2ApZbvbIiNq3mMwSTHCYJHlQFQfoTWnl9aaD5GSO4wfNFVYfEZ1R259o5uv5NlVtoA==", + "dev": true, + "optional": true + }, + "@swc/core-darwin-x64": { + "version": "1.3.84", + "resolved": "https://registry.npmjs.org/@swc/core-darwin-x64/-/core-darwin-x64-1.3.84.tgz", + "integrity": "sha512-cyuQZz62C43EDZqtnptUTlfDvAjgG3qu139m5zsfIK6ltXA5inKFbDWV3a/M5c18dFzA2Xh21Q46XZezmtQ9Tg==", + "dev": true, + "optional": true + }, + "@swc/core-linux-arm-gnueabihf": { + "version": "1.3.84", + "resolved": "https://registry.npmjs.org/@swc/core-linux-arm-gnueabihf/-/core-linux-arm-gnueabihf-1.3.84.tgz", + "integrity": "sha512-dmt/ECQrp3ZPWnK27p4E4xRIRHOoJhgGvxC5t5YaWzN20KcxE9ykEY2oLGSoeceM/A+4D11aRYGwF/EM7yOkvA==", + "dev": true, + "optional": true + }, + "@swc/core-linux-arm64-gnu": { + "version": "1.3.84", + "resolved": "https://registry.npmjs.org/@swc/core-linux-arm64-gnu/-/core-linux-arm64-gnu-1.3.84.tgz", + "integrity": "sha512-PgVfrI3NVg2z/oeg3GWLb9rFLMqidbdPwVH5nRyHVP2RX/BWP6qfnYfG+gJv4qrKzIldb9TyCGH7y8VWctKLxw==", + "dev": true, + "optional": true + }, + "@swc/core-linux-arm64-musl": { + "version": "1.3.84", + "resolved": "https://registry.npmjs.org/@swc/core-linux-arm64-musl/-/core-linux-arm64-musl-1.3.84.tgz", + "integrity": "sha512-hcuEa8/vin4Ns0P+FpcDHQ4f3jmhgGKQhqw0w+TovPSVTIXr+nrFQ2AGhs9nAxS6tSQ77C53Eb5YRpK8ToFo1A==", + "dev": true, + "optional": true + }, + "@swc/core-linux-x64-gnu": { + "version": "1.3.84", + "resolved": "https://registry.npmjs.org/@swc/core-linux-x64-gnu/-/core-linux-x64-gnu-1.3.84.tgz", + "integrity": "sha512-IvyimSbwGdu21jBBEqR1Up8Jhvl8kIAf1k3e5Oy8oRfgojdUfmW1EIwgGdoUeyQ1VHlfquiWaRGfsnHQUKl35g==", + "dev": true, + "optional": true + }, + "@swc/core-linux-x64-musl": { + "version": "1.3.84", + "resolved": "https://registry.npmjs.org/@swc/core-linux-x64-musl/-/core-linux-x64-musl-1.3.84.tgz", + "integrity": "sha512-hdgVU/O5ufDCe+p5RtCjU7PRNwd0WM+eWJS+GNY4QWL6O8y2VLM+i4+6YzwSUjeBk0xd+1YElMxbqz7r5tSZhw==", + "dev": true, + "optional": true + }, + "@swc/core-win32-arm64-msvc": { + "version": "1.3.84", + "resolved": "https://registry.npmjs.org/@swc/core-win32-arm64-msvc/-/core-win32-arm64-msvc-1.3.84.tgz", + "integrity": "sha512-rzH6k2BF0BFOFhUTD+bh0oCiUCZjFfDfoZoYNN/CM0qbtjAcFH21hzMh/EH8ZaXq8k/iQmUNNa5MPNPZ4SOMNw==", + "dev": true, + "optional": true + }, + "@swc/core-win32-ia32-msvc": { + "version": "1.3.84", + "resolved": "https://registry.npmjs.org/@swc/core-win32-ia32-msvc/-/core-win32-ia32-msvc-1.3.84.tgz", + "integrity": "sha512-Y+Dk7VLLVwwsAzoDmjkNW/sTmSPl9PGr4Mj1nhc5A2NNxZ+hz4SxFMclacDI03SC5ikK8Qh6WOoE/+nwUDa3uA==", + "dev": true, + "optional": true + }, + "@swc/core-win32-x64-msvc": { + "version": "1.3.84", + "resolved": "https://registry.npmjs.org/@swc/core-win32-x64-msvc/-/core-win32-x64-msvc-1.3.84.tgz", + "integrity": "sha512-WmpaosqCWMX7DArLdU8AJcj96hy0PKlYh1DaMVikSrrDHbJm2dZ8rd27IK3qUB8DgPkrDYHmLAKNZ+z3gWXgRQ==", + "dev": true, + "optional": true + }, + "@swc/helpers": { + "version": "0.5.2", + "resolved": "https://registry.npmjs.org/@swc/helpers/-/helpers-0.5.2.tgz", + "integrity": "sha512-E4KcWTpoLHqwPHLxidpOqQbcrZVgi0rsmmZXUle1jXmJfuIf/UWpczUJ7MZZ5tlxytgJXyp0w4PGkkeLiuIdZw==", + "requires": { + "tslib": "^2.4.0" + } + }, + "@swc/types": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/@swc/types/-/types-0.1.4.tgz", + "integrity": "sha512-z/G02d+59gyyUb7KYhKi9jOhicek6QD2oMaotUyG+lUkybpXoV49dY9bj7Ah5Q+y7knK2jU67UTX9FyfGzaxQg==", + "dev": true + }, + "@types/hoist-non-react-statics": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/@types/hoist-non-react-statics/-/hoist-non-react-statics-3.3.1.tgz", + "integrity": "sha512-iMIqiko6ooLrTh1joXodJK5X9xeEALT1kM5G3ZLhD3hszxBdIEd5C75U834D9mLcINgD4OyZf5uQXjkuYydWvA==", + "requires": { + "@types/react": "*", + "hoist-non-react-statics": "^3.3.0" + } + }, + "@types/json-schema": { + "version": "7.0.12", + "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.12.tgz", + "integrity": "sha512-Hr5Jfhc9eYOQNPYO5WLDq/n4jqijdHNlDXjuAQkkt+mWdQR+XJToOHrsD4cPaMXpn6KO7y2+wM8AZEs8VpBLVA==", + "dev": true + }, + "@types/prop-types": { + "version": "15.7.5", + "resolved": "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.5.tgz", + "integrity": "sha512-JCB8C6SnDoQf0cNycqd/35A7MjcnK+ZTqE7judS6o7utxUCg6imJg3QK2qzHKszlTjcj2cn+NwMB2i96ubpj7w==" + }, + "@types/react": { + "version": "18.2.21", + "resolved": "https://registry.npmjs.org/@types/react/-/react-18.2.21.tgz", + "integrity": "sha512-neFKG/sBAwGxHgXiIxnbm3/AAVQ/cMRS93hvBpg8xYRbeQSPVABp9U2bRnPf0iI4+Ucdv3plSxKK+3CW2ENJxA==", + "requires": { + "@types/prop-types": "*", + "@types/scheduler": "*", + "csstype": "^3.0.2" + } + }, + "@types/react-bootstrap": { + "version": "0.32.32", + "resolved": "https://registry.npmjs.org/@types/react-bootstrap/-/react-bootstrap-0.32.32.tgz", + "integrity": "sha512-GM9UtV7v+C2F0rbqgIpMWdCKBMdX3PQURoJQobPO4vDAeFadcExNtKffi13/MjaAks+riJKVGyiMe+6OmDYT2w==", + "dev": true, + "requires": { + "@types/react": "*" + } + }, + "@types/react-dom": { + "version": "18.2.7", + "resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-18.2.7.tgz", + "integrity": "sha512-GRaAEriuT4zp9N4p1i8BDBYmEyfo+xQ3yHjJU4eiK5NDa1RmUZG+unZABUTK4/Ox/M+GaHwb6Ow8rUITrtjszA==", + "devOptional": true, + "requires": { + "@types/react": "*" + } + }, + "@types/react-transition-group": { + "version": "4.4.6", + "resolved": "https://registry.npmjs.org/@types/react-transition-group/-/react-transition-group-4.4.6.tgz", + "integrity": "sha512-VnCdSxfcm08KjsJVQcfBmhEQAPnLB8G08hAxn39azX1qYBQ/5RVQuoHuKIcfKOdncuaUvEpFKFzEvbtIMsfVew==", + "requires": { + "@types/react": "*" + } + }, + "@types/scheduler": { + "version": "0.16.3", + "resolved": "https://registry.npmjs.org/@types/scheduler/-/scheduler-0.16.3.tgz", + "integrity": "sha512-5cJ8CB4yAx7BH1oMvdU0Jh9lrEXyPkar6F9G/ERswkCuvP4KQZfZkSjcMbAICCpQTN4OuZn8tz0HiKv9TGZgrQ==" + }, + "@types/semver": { + "version": "7.5.1", + "resolved": "https://registry.npmjs.org/@types/semver/-/semver-7.5.1.tgz", + "integrity": "sha512-cJRQXpObxfNKkFAZbJl2yjWtJCqELQIdShsogr1d2MilP8dKD9TE/nEKHkJgUNHdGKCQaf9HbIynuV2csLGVLg==", + "dev": true + }, + "@types/use-sync-external-store": { + "version": "0.0.3", + "resolved": "https://registry.npmjs.org/@types/use-sync-external-store/-/use-sync-external-store-0.0.3.tgz", + "integrity": "sha512-EwmlvuaxPNej9+T4v5AuBPJa2x2UOJVdjCtDHgcDqitUeOtjnJKJ+apYjVcAoBEMjKW1VVFGZLUb5+qqa09XFA==" + }, + "@types/warning": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@types/warning/-/warning-3.0.0.tgz", + "integrity": "sha512-t/Tvs5qR47OLOr+4E9ckN8AmP2Tf16gWq+/qA4iUGS/OOyHVO8wv2vjJuX8SNOUTJyWb+2t7wJm6cXILFnOROA==" + }, + "@typescript-eslint/eslint-plugin": { + "version": "6.7.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-6.7.0.tgz", + "integrity": "sha512-gUqtknHm0TDs1LhY12K2NA3Rmlmp88jK9Tx8vGZMfHeNMLE3GH2e9TRub+y+SOjuYgtOmok+wt1AyDPZqxbNag==", + "dev": true, + "requires": { + "@eslint-community/regexpp": "^4.5.1", + "@typescript-eslint/scope-manager": "6.7.0", + "@typescript-eslint/type-utils": "6.7.0", + "@typescript-eslint/utils": "6.7.0", + "@typescript-eslint/visitor-keys": "6.7.0", + "debug": "^4.3.4", + "graphemer": "^1.4.0", + "ignore": "^5.2.4", + "natural-compare": "^1.4.0", + "semver": "^7.5.4", + "ts-api-utils": "^1.0.1" + } + }, + "@typescript-eslint/parser": { + "version": "6.7.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-6.7.0.tgz", + "integrity": "sha512-jZKYwqNpNm5kzPVP5z1JXAuxjtl2uG+5NpaMocFPTNC2EdYIgbXIPImObOkhbONxtFTTdoZstLZefbaK+wXZng==", + "dev": true, + "requires": { + "@typescript-eslint/scope-manager": "6.7.0", + "@typescript-eslint/types": "6.7.0", + "@typescript-eslint/typescript-estree": "6.7.0", + "@typescript-eslint/visitor-keys": "6.7.0", + "debug": "^4.3.4" + } + }, + "@typescript-eslint/scope-manager": { + "version": "6.7.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-6.7.0.tgz", + "integrity": "sha512-lAT1Uau20lQyjoLUQ5FUMSX/dS07qux9rYd5FGzKz/Kf8W8ccuvMyldb8hadHdK/qOI7aikvQWqulnEq2nCEYA==", + "dev": true, + "requires": { + "@typescript-eslint/types": "6.7.0", + "@typescript-eslint/visitor-keys": "6.7.0" + } + }, + "@typescript-eslint/type-utils": { + "version": "6.7.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-6.7.0.tgz", + "integrity": "sha512-f/QabJgDAlpSz3qduCyQT0Fw7hHpmhOzY/Rv6zO3yO+HVIdPfIWhrQoAyG+uZVtWAIS85zAyzgAFfyEr+MgBpg==", + "dev": true, + "requires": { + "@typescript-eslint/typescript-estree": "6.7.0", + "@typescript-eslint/utils": "6.7.0", + "debug": "^4.3.4", + "ts-api-utils": "^1.0.1" + } + }, + "@typescript-eslint/types": { + "version": "6.7.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-6.7.0.tgz", + "integrity": "sha512-ihPfvOp7pOcN/ysoj0RpBPOx3HQTJTrIN8UZK+WFd3/iDeFHHqeyYxa4hQk4rMhsz9H9mXpR61IzwlBVGXtl9Q==", + "dev": true + }, + "@typescript-eslint/typescript-estree": { + "version": "6.7.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-6.7.0.tgz", + "integrity": "sha512-dPvkXj3n6e9yd/0LfojNU8VMUGHWiLuBZvbM6V6QYD+2qxqInE7J+J/ieY2iGwR9ivf/R/haWGkIj04WVUeiSQ==", + "dev": true, + "requires": { + "@typescript-eslint/types": "6.7.0", + "@typescript-eslint/visitor-keys": "6.7.0", + "debug": "^4.3.4", + "globby": "^11.1.0", + "is-glob": "^4.0.3", + "semver": "^7.5.4", + "ts-api-utils": "^1.0.1" + } + }, + "@typescript-eslint/utils": { + "version": "6.7.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-6.7.0.tgz", + "integrity": "sha512-MfCq3cM0vh2slSikQYqK2Gq52gvOhe57vD2RM3V4gQRZYX4rDPnKLu5p6cm89+LJiGlwEXU8hkYxhqqEC/V3qA==", + "dev": true, + "requires": { + "@eslint-community/eslint-utils": "^4.4.0", + "@types/json-schema": "^7.0.12", + "@types/semver": "^7.5.0", + "@typescript-eslint/scope-manager": "6.7.0", + "@typescript-eslint/types": "6.7.0", + "@typescript-eslint/typescript-estree": "6.7.0", + "semver": "^7.5.4" + } + }, + "@typescript-eslint/visitor-keys": { + "version": "6.7.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-6.7.0.tgz", + "integrity": "sha512-/C1RVgKFDmGMcVGeD8HjKv2bd72oI1KxQDeY8uc66gw9R0OK0eMq48cA+jv9/2Ag6cdrsUGySm1yzYmfz0hxwQ==", + "dev": true, + "requires": { + "@typescript-eslint/types": "6.7.0", + "eslint-visitor-keys": "^3.4.1" + } + }, + "@vitejs/plugin-react-swc": { + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/@vitejs/plugin-react-swc/-/plugin-react-swc-3.3.2.tgz", + "integrity": "sha512-VJFWY5sfoZerQRvJrh518h3AcQt6f/yTuWn4/TRB+dqmYU0NX1qz7qM5Wfd+gOQqUzQW4gxKqKN3KpE/P3+zrA==", + "dev": true, + "requires": { + "@swc/core": "^1.3.61" + } + }, + "acorn": { + "version": "8.10.0", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.10.0.tgz", + "integrity": "sha512-F0SAmZ8iUtS//m8DmCTA0jlh6TDKkHQyK6xc6V4KDTyZKA9dnvX9/3sRTVQrWm79glUAZbnmmNcdYwUIHWVybw==", + "dev": true + }, + "acorn-jsx": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", + "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", + "dev": true, + "requires": {} + }, + "ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "dev": true, + "requires": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + } + }, + "ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "dev": true + }, + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "argparse": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", + "dev": true + }, + "array-union": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz", + "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==", + "dev": true + }, + "balanced-match": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", + "dev": true + }, + "bootstrap": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/bootstrap/-/bootstrap-5.3.1.tgz", + "integrity": "sha512-jzwza3Yagduci2x0rr9MeFSORjcHpt0lRZukZPZQJT1Dth5qzV7XcgGqYzi39KGAVYR8QEDVoO0ubFKOxzMG+g==", + "requires": {} + }, + "brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "dev": true, + "requires": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "braces": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", + "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", + "dev": true, + "requires": { + "fill-range": "^7.0.1" + } + }, + "callsites": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", + "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", + "dev": true + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "classnames": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/classnames/-/classnames-2.3.2.tgz", + "integrity": "sha512-CSbhY4cFEJRe6/GQzIk5qXZ4Jeg5pcsP7b5peFSDpffpe1cqjASH/n9UTjBwOp6XpMSTwQ8Za2K5V02ueA7Tmw==" + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", + "dev": true + }, + "cross-spawn": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", + "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", + "dev": true, + "requires": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + } + }, + "csstype": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.1.2.tgz", + "integrity": "sha512-I7K1Uu0MBPzaFKg4nI5Q7Vs2t+3gWWW648spaF+Rg7pI9ds18Ugn+lvg4SHczUdKlHI5LWBXyqfS8+DufyBsgQ==" + }, + "debug": { + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", + "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", + "dev": true, + "requires": { + "ms": "2.1.2" + } + }, + "deep-is": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", + "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==", + "dev": true + }, + "dequal": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/dequal/-/dequal-2.0.3.tgz", + "integrity": "sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==" + }, + "dir-glob": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz", + "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==", + "dev": true, + "requires": { + "path-type": "^4.0.0" + } + }, + "doctrine": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz", + "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==", + "dev": true, + "requires": { + "esutils": "^2.0.2" + } + }, + "dom-helpers": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/dom-helpers/-/dom-helpers-5.2.1.tgz", + "integrity": "sha512-nRCa7CK3VTrM2NmGkIy4cbK7IZlgBE/PYMn55rrXefr5xXDP0LdtfPnblFDoVdcAfslJ7or6iqAUnx0CCGIWQA==", + "requires": { + "@babel/runtime": "^7.8.7", + "csstype": "^3.0.2" + } + }, + "esbuild": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.18.20.tgz", + "integrity": "sha512-ceqxoedUrcayh7Y7ZX6NdbbDzGROiyVBgC4PriJThBKSVPWnnFHZAkfI1lJT8QFkOwH4qOS2SJkS4wvpGl8BpA==", + "dev": true, + "requires": { + "@esbuild/android-arm": "0.18.20", + "@esbuild/android-arm64": "0.18.20", + "@esbuild/android-x64": "0.18.20", + "@esbuild/darwin-arm64": "0.18.20", + "@esbuild/darwin-x64": "0.18.20", + "@esbuild/freebsd-arm64": "0.18.20", + "@esbuild/freebsd-x64": "0.18.20", + "@esbuild/linux-arm": "0.18.20", + "@esbuild/linux-arm64": "0.18.20", + "@esbuild/linux-ia32": "0.18.20", + "@esbuild/linux-loong64": "0.18.20", + "@esbuild/linux-mips64el": "0.18.20", + "@esbuild/linux-ppc64": "0.18.20", + "@esbuild/linux-riscv64": "0.18.20", + "@esbuild/linux-s390x": "0.18.20", + "@esbuild/linux-x64": "0.18.20", + "@esbuild/netbsd-x64": "0.18.20", + "@esbuild/openbsd-x64": "0.18.20", + "@esbuild/sunos-x64": "0.18.20", + "@esbuild/win32-arm64": "0.18.20", + "@esbuild/win32-ia32": "0.18.20", + "@esbuild/win32-x64": "0.18.20" + } + }, + "escape-string-regexp": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", + "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", + "dev": true + }, + "eslint": { + "version": "8.49.0", + "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.49.0.tgz", + "integrity": "sha512-jw03ENfm6VJI0jA9U+8H5zfl5b+FvuU3YYvZRdZHOlU2ggJkxrlkJH4HcDrZpj6YwD8kuYqvQM8LyesoazrSOQ==", + "dev": true, + "requires": { + "@eslint-community/eslint-utils": "^4.2.0", + "@eslint-community/regexpp": "^4.6.1", + "@eslint/eslintrc": "^2.1.2", + "@eslint/js": "8.49.0", + "@humanwhocodes/config-array": "^0.11.11", + "@humanwhocodes/module-importer": "^1.0.1", + "@nodelib/fs.walk": "^1.2.8", + "ajv": "^6.12.4", + "chalk": "^4.0.0", + "cross-spawn": "^7.0.2", + "debug": "^4.3.2", + "doctrine": "^3.0.0", + "escape-string-regexp": "^4.0.0", + "eslint-scope": "^7.2.2", + "eslint-visitor-keys": "^3.4.3", + "espree": "^9.6.1", + "esquery": "^1.4.2", + "esutils": "^2.0.2", + "fast-deep-equal": "^3.1.3", + "file-entry-cache": "^6.0.1", + "find-up": "^5.0.0", + "glob-parent": "^6.0.2", + "globals": "^13.19.0", + "graphemer": "^1.4.0", + "ignore": "^5.2.0", + "imurmurhash": "^0.1.4", + "is-glob": "^4.0.0", + "is-path-inside": "^3.0.3", + "js-yaml": "^4.1.0", + "json-stable-stringify-without-jsonify": "^1.0.1", + "levn": "^0.4.1", + "lodash.merge": "^4.6.2", + "minimatch": "^3.1.2", + "natural-compare": "^1.4.0", + "optionator": "^0.9.3", + "strip-ansi": "^6.0.1", + "text-table": "^0.2.0" + } + }, + "eslint-plugin-react-hooks": { + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-4.6.0.tgz", + "integrity": "sha512-oFc7Itz9Qxh2x4gNHStv3BqJq54ExXmfC+a1NjAta66IAN87Wu0R/QArgIS9qKzX3dXKPI9H5crl9QchNMY9+g==", + "dev": true, + "requires": {} + }, + "eslint-plugin-react-refresh": { + "version": "0.4.3", + "resolved": "https://registry.npmjs.org/eslint-plugin-react-refresh/-/eslint-plugin-react-refresh-0.4.3.tgz", + "integrity": "sha512-Hh0wv8bUNY877+sI0BlCUlsS0TYYQqvzEwJsJJPM2WF4RnTStSnSR3zdJYa2nPOJgg3UghXi54lVyMSmpCalzA==", + "dev": true, + "requires": {} + }, + "eslint-scope": { + "version": "7.2.2", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.2.2.tgz", + "integrity": "sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==", + "dev": true, + "requires": { + "esrecurse": "^4.3.0", + "estraverse": "^5.2.0" + } + }, + "eslint-visitor-keys": { + "version": "3.4.3", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz", + "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==", + "dev": true + }, + "espree": { + "version": "9.6.1", + "resolved": "https://registry.npmjs.org/espree/-/espree-9.6.1.tgz", + "integrity": "sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==", + "dev": true, + "requires": { + "acorn": "^8.9.0", + "acorn-jsx": "^5.3.2", + "eslint-visitor-keys": "^3.4.1" + } + }, + "esquery": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.5.0.tgz", + "integrity": "sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==", + "dev": true, + "requires": { + "estraverse": "^5.1.0" + } + }, + "esrecurse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", + "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", + "dev": true, + "requires": { + "estraverse": "^5.2.0" + } + }, + "estraverse": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", + "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", + "dev": true + }, + "esutils": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", + "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", + "dev": true + }, + "fast-deep-equal": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", + "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", + "dev": true + }, + "fast-glob": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.1.tgz", + "integrity": "sha512-kNFPyjhh5cKjrUltxs+wFx+ZkbRaxxmZ+X0ZU31SOsxCEtP9VPgtq2teZw1DebupL5GmDaNQ6yKMMVcM41iqDg==", + "dev": true, + "requires": { + "@nodelib/fs.stat": "^2.0.2", + "@nodelib/fs.walk": "^1.2.3", + "glob-parent": "^5.1.2", + "merge2": "^1.3.0", + "micromatch": "^4.0.4" + }, + "dependencies": { + "glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "dev": true, + "requires": { + "is-glob": "^4.0.1" + } + } + } + }, + "fast-json-stable-stringify": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", + "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", + "dev": true + }, + "fast-levenshtein": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", + "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==", + "dev": true + }, + "fastq": { + "version": "1.15.0", + "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.15.0.tgz", + "integrity": "sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==", + "dev": true, + "requires": { + "reusify": "^1.0.4" + } + }, + "file-entry-cache": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz", + "integrity": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==", + "dev": true, + "requires": { + "flat-cache": "^3.0.4" + } + }, + "fill-range": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", + "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", + "dev": true, + "requires": { + "to-regex-range": "^5.0.1" + } + }, + "find-up": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", + "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", + "dev": true, + "requires": { + "locate-path": "^6.0.0", + "path-exists": "^4.0.0" + } + }, + "flat-cache": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.1.0.tgz", + "integrity": "sha512-OHx4Qwrrt0E4jEIcI5/Xb+f+QmJYNj2rrK8wiIdQOIrB9WrrJL8cjZvXdXuBTkkEwEqLycb5BeZDV1o2i9bTew==", + "dev": true, + "requires": { + "flatted": "^3.2.7", + "keyv": "^4.5.3", + "rimraf": "^3.0.2" + } + }, + "flatted": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.2.7.tgz", + "integrity": "sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ==", + "dev": true + }, + "fs.realpath": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", + "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==", + "dev": true + }, + "fsevents": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", + "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", + "dev": true, + "optional": true + }, + "glob": { + "version": "7.2.3", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", + "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", + "dev": true, + "requires": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.1.1", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + } + }, + "glob-parent": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", + "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", + "dev": true, + "requires": { + "is-glob": "^4.0.3" + } + }, + "globals": { + "version": "13.21.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-13.21.0.tgz", + "integrity": "sha512-ybyme3s4yy/t/3s35bewwXKOf7cvzfreG2lH0lZl0JB7I4GxRP2ghxOK/Nb9EkRXdbBXZLfq/p/0W2JUONB/Gg==", + "dev": true, + "requires": { + "type-fest": "^0.20.2" + } + }, + "globby": { + "version": "11.1.0", + "resolved": "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz", + "integrity": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==", + "dev": true, + "requires": { + "array-union": "^2.1.0", + "dir-glob": "^3.0.1", + "fast-glob": "^3.2.9", + "ignore": "^5.2.0", + "merge2": "^1.4.1", + "slash": "^3.0.0" + } + }, + "graphemer": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/graphemer/-/graphemer-1.4.0.tgz", + "integrity": "sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==", + "dev": true + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true + }, + "hoist-non-react-statics": { + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/hoist-non-react-statics/-/hoist-non-react-statics-3.3.2.tgz", + "integrity": "sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==", + "requires": { + "react-is": "^16.7.0" + } + }, + "ignore": { + "version": "5.2.4", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.2.4.tgz", + "integrity": "sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==", + "dev": true + }, + "immer": { + "version": "9.0.21", + "resolved": "https://registry.npmjs.org/immer/-/immer-9.0.21.tgz", + "integrity": "sha512-bc4NBHqOqSfRW7POMkHd51LvClaeMXpm8dx0e8oE2GORbq5aRK7Bxl4FyzVLdGtLmvLKL7BTDBG5ACQm4HWjTA==" + }, + "import-fresh": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", + "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", + "dev": true, + "requires": { + "parent-module": "^1.0.0", + "resolve-from": "^4.0.0" + } + }, + "imurmurhash": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", + "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", + "dev": true + }, + "inflight": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", + "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", + "dev": true, + "requires": { + "once": "^1.3.0", + "wrappy": "1" + } + }, + "inherits": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", + "dev": true + }, + "invariant": { + "version": "2.2.4", + "resolved": "https://registry.npmjs.org/invariant/-/invariant-2.2.4.tgz", + "integrity": "sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==", + "requires": { + "loose-envify": "^1.0.0" + } + }, + "is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", + "dev": true + }, + "is-glob": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", + "dev": true, + "requires": { + "is-extglob": "^2.1.1" + } + }, + "is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "dev": true + }, + "is-path-inside": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz", + "integrity": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==", + "dev": true + }, + "isexe": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", + "dev": true + }, + "js-tokens": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", + "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==" + }, + "js-yaml": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", + "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", + "dev": true, + "requires": { + "argparse": "^2.0.1" + } + }, + "json-buffer": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz", + "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==", + "dev": true + }, + "json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", + "dev": true + }, + "json-stable-stringify-without-jsonify": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", + "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==", + "dev": true + }, + "keyv": { + "version": "4.5.3", + "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.3.tgz", + "integrity": "sha512-QCiSav9WaX1PgETJ+SpNnx2PRRapJ/oRSXM4VO5OGYGSjrxbKPVFVhB3l2OCbLCk329N8qyAtsJjSjvVBWzEug==", + "dev": true, + "requires": { + "json-buffer": "3.0.1" + } + }, + "levn": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", + "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", + "dev": true, + "requires": { + "prelude-ls": "^1.2.1", + "type-check": "~0.4.0" + } + }, + "locate-path": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", + "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", + "dev": true, + "requires": { + "p-locate": "^5.0.0" + } + }, + "lodash.merge": { + "version": "4.6.2", + "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", + "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==", + "dev": true + }, + "loose-envify": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz", + "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==", + "requires": { + "js-tokens": "^3.0.0 || ^4.0.0" + } + }, + "lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dev": true, + "requires": { + "yallist": "^4.0.0" + } + }, + "merge2": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", + "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", + "dev": true + }, + "micromatch": { + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", + "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", + "dev": true, + "requires": { + "braces": "^3.0.2", + "picomatch": "^2.3.1" + } + }, + "minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dev": true, + "requires": { + "brace-expansion": "^1.1.7" + } + }, + "ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", + "dev": true + }, + "nanoid": { + "version": "3.3.6", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.6.tgz", + "integrity": "sha512-BGcqMMJuToF7i1rt+2PWSNVnWIkGCU78jBG3RxO/bZlnZPK2Cmi2QaffxGO/2RvWi9sL+FAiRiXMgsyxQ1DIDA==", + "dev": true + }, + "natural-compare": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", + "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==", + "dev": true + }, + "object-assign": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", + "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==" + }, + "once": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", + "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", + "dev": true, + "requires": { + "wrappy": "1" + } + }, + "optionator": { + "version": "0.9.3", + "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.3.tgz", + "integrity": "sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg==", + "dev": true, + "requires": { + "@aashutoshrathi/word-wrap": "^1.2.3", + "deep-is": "^0.1.3", + "fast-levenshtein": "^2.0.6", + "levn": "^0.4.1", + "prelude-ls": "^1.2.1", + "type-check": "^0.4.0" + } + }, + "p-limit": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", + "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", + "dev": true, + "requires": { + "yocto-queue": "^0.1.0" + } + }, + "p-locate": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", + "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", + "dev": true, + "requires": { + "p-limit": "^3.0.2" + } + }, + "parent-module": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", + "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", + "dev": true, + "requires": { + "callsites": "^3.0.0" + } + }, + "path-exists": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", + "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", + "dev": true + }, + "path-is-absolute": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", + "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", + "dev": true + }, + "path-key": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", + "dev": true + }, + "path-type": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", + "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==", + "dev": true + }, + "picocolors": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", + "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==", + "dev": true + }, + "picomatch": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "dev": true + }, + "postcss": { + "version": "8.4.29", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.29.tgz", + "integrity": "sha512-cbI+jaqIeu/VGqXEarWkRCCffhjgXc0qjBtXpqJhTBohMUjUQnbBr0xqX3vEKudc4iviTewcJo5ajcec5+wdJw==", + "dev": true, + "requires": { + "nanoid": "^3.3.6", + "picocolors": "^1.0.0", + "source-map-js": "^1.0.2" + } + }, + "prelude-ls": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", + "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", + "dev": true + }, + "prop-types": { + "version": "15.8.1", + "resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.8.1.tgz", + "integrity": "sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==", + "requires": { + "loose-envify": "^1.4.0", + "object-assign": "^4.1.1", + "react-is": "^16.13.1" + } + }, + "prop-types-extra": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/prop-types-extra/-/prop-types-extra-1.1.1.tgz", + "integrity": "sha512-59+AHNnHYCdiC+vMwY52WmvP5dM3QLeoumYuEyceQDi9aEhtwN9zIQ2ZNo25sMyXnbh32h+P1ezDsUpUH3JAew==", + "requires": { + "react-is": "^16.3.2", + "warning": "^4.0.0" + } + }, + "punycode": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.0.tgz", + "integrity": "sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA==", + "dev": true + }, + "queue-microtask": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", + "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", + "dev": true + }, + "react": { + "version": "18.2.0", + "resolved": "https://registry.npmjs.org/react/-/react-18.2.0.tgz", + "integrity": "sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==", + "requires": { + "loose-envify": "^1.1.0" + } + }, + "react-bootstrap": { + "version": "2.8.0", + "resolved": "https://registry.npmjs.org/react-bootstrap/-/react-bootstrap-2.8.0.tgz", + "integrity": "sha512-e/aNtxl0Z2ozrIaR82jr6Zz7ss9GSoaXpQaxmvtDUsTZIq/XalkduR/ZXP6vbQHz2T4syvjA+4FbtwELxxmpww==", + "requires": { + "@babel/runtime": "^7.21.0", + "@restart/hooks": "^0.4.9", + "@restart/ui": "^1.6.3", + "@types/react-transition-group": "^4.4.5", + "classnames": "^2.3.2", + "dom-helpers": "^5.2.1", + "invariant": "^2.2.4", + "prop-types": "^15.8.1", + "prop-types-extra": "^1.1.0", + "react-transition-group": "^4.4.5", + "uncontrollable": "^7.2.1", + "warning": "^4.0.3" + } + }, + "react-dom": { + "version": "18.2.0", + "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-18.2.0.tgz", + "integrity": "sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g==", + "requires": { + "loose-envify": "^1.1.0", + "scheduler": "^0.23.0" + } + }, + "react-is": { + "version": "16.13.1", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz", + "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==" + }, + "react-lifecycles-compat": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/react-lifecycles-compat/-/react-lifecycles-compat-3.0.4.tgz", + "integrity": "sha512-fBASbA6LnOU9dOU2eW7aQ8xmYBSXUIWr+UmF9b1efZBazGNO+rcXT/icdKnYm2pTwcRylVUYwW7H1PHfLekVzA==" + }, + "react-redux": { + "version": "8.1.2", + "resolved": "https://registry.npmjs.org/react-redux/-/react-redux-8.1.2.tgz", + "integrity": "sha512-xJKYI189VwfsFc4CJvHqHlDrzyFTY/3vZACbE+rr/zQ34Xx1wQfB4OTOSeOSNrF6BDVe8OOdxIrAnMGXA3ggfw==", + "requires": { + "@babel/runtime": "^7.12.1", + "@types/hoist-non-react-statics": "^3.3.1", + "@types/use-sync-external-store": "^0.0.3", + "hoist-non-react-statics": "^3.3.2", + "react-is": "^18.0.0", + "use-sync-external-store": "^1.0.0" + }, + "dependencies": { + "react-is": { + "version": "18.2.0", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.2.0.tgz", + "integrity": "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==" + } + } + }, + "react-router": { + "version": "6.15.0", + "resolved": "https://registry.npmjs.org/react-router/-/react-router-6.15.0.tgz", + "integrity": "sha512-NIytlzvzLwJkCQj2HLefmeakxxWHWAP+02EGqWEZy+DgfHHKQMUoBBjUQLOtFInBMhWtb3hiUy6MfFgwLjXhqg==", + "requires": { + "@remix-run/router": "1.8.0" + } + }, + "react-router-dom": { + "version": "6.15.0", + "resolved": "https://registry.npmjs.org/react-router-dom/-/react-router-dom-6.15.0.tgz", + "integrity": "sha512-aR42t0fs7brintwBGAv2+mGlCtgtFQeOzK0BM1/OiqEzRejOZtpMZepvgkscpMUnKb8YO84G7s3LsHnnDNonbQ==", + "requires": { + "@remix-run/router": "1.8.0", + "react-router": "6.15.0" + } + }, + "react-transition-group": { + "version": "4.4.5", + "resolved": "https://registry.npmjs.org/react-transition-group/-/react-transition-group-4.4.5.tgz", + "integrity": "sha512-pZcd1MCJoiKiBR2NRxeCRg13uCXbydPnmB4EOeRrY7480qNWO8IIgQG6zlDkm6uRMsURXPuKq0GWtiM59a5Q6g==", + "requires": { + "@babel/runtime": "^7.5.5", + "dom-helpers": "^5.0.1", + "loose-envify": "^1.4.0", + "prop-types": "^15.6.2" + } + }, + "redux": { + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/redux/-/redux-4.2.1.tgz", + "integrity": "sha512-LAUYz4lc+Do8/g7aeRa8JkyDErK6ekstQaqWQrNRW//MY1TvCEpMtpTWvlQ+FPbWCx+Xixu/6SHt5N0HR+SB4w==", + "requires": { + "@babel/runtime": "^7.9.2" + } + }, + "redux-thunk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/redux-thunk/-/redux-thunk-2.4.2.tgz", + "integrity": "sha512-+P3TjtnP0k/FEjcBL5FZpoovtvrTNT/UXd4/sluaSyrURlSlhLSzEdfsTBW7WsKB6yPvgd7q/iZPICFjW4o57Q==", + "requires": {} + }, + "regenerator-runtime": { + "version": "0.14.0", + "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.14.0.tgz", + "integrity": "sha512-srw17NI0TUWHuGa5CFGGmhfNIeja30WMBfbslPNhf6JrqQlLN5gcrvig1oqPxiVaXb0oW0XRKtH6Nngs5lKCIA==" + }, + "reselect": { + "version": "4.1.8", + "resolved": "https://registry.npmjs.org/reselect/-/reselect-4.1.8.tgz", + "integrity": "sha512-ab9EmR80F/zQTMNeneUr4cv+jSwPJgIlvEmVwLerwrWVbpLlBuls9XHzIeTFy4cegU2NHBp3va0LKOzU5qFEYQ==" + }, + "resolve-from": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", + "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", + "dev": true + }, + "reusify": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", + "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", + "dev": true + }, + "rimraf": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", + "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", + "dev": true, + "requires": { + "glob": "^7.1.3" + } + }, + "rollup": { + "version": "3.29.1", + "resolved": "https://registry.npmjs.org/rollup/-/rollup-3.29.1.tgz", + "integrity": "sha512-c+ebvQz0VIH4KhhCpDsI+Bik0eT8ZFEVZEYw0cGMVqIP8zc+gnwl7iXCamTw7vzv2MeuZFZfdx5JJIq+ehzDlg==", + "dev": true, + "requires": { + "fsevents": "~2.3.2" + } + }, + "run-parallel": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", + "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", + "dev": true, + "requires": { + "queue-microtask": "^1.2.2" + } + }, + "scheduler": { + "version": "0.23.0", + "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.23.0.tgz", + "integrity": "sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw==", + "requires": { + "loose-envify": "^1.1.0" + } + }, + "semver": { + "version": "7.5.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", + "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", + "dev": true, + "requires": { + "lru-cache": "^6.0.0" + } + }, + "shebang-command": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", + "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", + "dev": true, + "requires": { + "shebang-regex": "^3.0.0" + } + }, + "shebang-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", + "dev": true + }, + "slash": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", + "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", + "dev": true + }, + "source-map-js": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.0.2.tgz", + "integrity": "sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==", + "dev": true + }, + "strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dev": true, + "requires": { + "ansi-regex": "^5.0.1" + } + }, + "strip-json-comments": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", + "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", + "dev": true + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + }, + "text-table": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", + "integrity": "sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==", + "dev": true + }, + "to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "dev": true, + "requires": { + "is-number": "^7.0.0" + } + }, + "ts-api-utils": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/ts-api-utils/-/ts-api-utils-1.0.3.tgz", + "integrity": "sha512-wNMeqtMz5NtwpT/UZGY5alT+VoKdSsOOP/kqHFcUW1P/VRhH2wJ48+DN2WwUliNbQ976ETwDL0Ifd2VVvgonvg==", + "dev": true, + "requires": {} + }, + "tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==" + }, + "type-check": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", + "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", + "dev": true, + "requires": { + "prelude-ls": "^1.2.1" + } + }, + "type-fest": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", + "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", + "dev": true + }, + "typescript": { + "version": "5.2.2", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.2.2.tgz", + "integrity": "sha512-mI4WrpHsbCIcwT9cF4FZvr80QUeKvsUsUvKDoR+X/7XHQH98xYD8YHZg7ANtz2GtZt/CBq2QJ0thkGJMHfqc1w==", + "dev": true + }, + "uncontrollable": { + "version": "7.2.1", + "resolved": "https://registry.npmjs.org/uncontrollable/-/uncontrollable-7.2.1.tgz", + "integrity": "sha512-svtcfoTADIB0nT9nltgjujTi7BzVmwjZClOmskKu/E8FW9BXzg9os8OLr4f8Dlnk0rYWJIWr4wv9eKUXiQvQwQ==", + "requires": { + "@babel/runtime": "^7.6.3", + "@types/react": ">=16.9.11", + "invariant": "^2.2.4", + "react-lifecycles-compat": "^3.0.4" + } + }, + "uri-js": { + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", + "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", + "dev": true, + "requires": { + "punycode": "^2.1.0" + } + }, + "use-sync-external-store": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/use-sync-external-store/-/use-sync-external-store-1.2.0.tgz", + "integrity": "sha512-eEgnFxGQ1Ife9bzYs6VLi8/4X6CObHMw9Qr9tPY43iKwsPw8xE8+EFsf/2cFZ5S3esXgpWgtSCtLNS41F+sKPA==", + "requires": {} + }, + "vite": { + "version": "4.4.9", + "resolved": "https://registry.npmjs.org/vite/-/vite-4.4.9.tgz", + "integrity": "sha512-2mbUn2LlUmNASWwSCNSJ/EG2HuSRTnVNaydp6vMCm5VIqJsjMfbIWtbH2kDuwUVW5mMUKKZvGPX/rqeqVvv1XA==", + "dev": true, + "requires": { + "esbuild": "^0.18.10", + "fsevents": "~2.3.2", + "postcss": "^8.4.27", + "rollup": "^3.27.1" + } + }, + "warning": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/warning/-/warning-4.0.3.tgz", + "integrity": "sha512-rpJyN222KWIvHJ/F53XSZv0Zl/accqHR8et1kpaMTD/fLCRxtV8iX8czMzY7sVZupTI3zcUTg8eycS2kNF9l6w==", + "requires": { + "loose-envify": "^1.0.0" + } + }, + "which": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "dev": true, + "requires": { + "isexe": "^2.0.0" + } + }, + "wrappy": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", + "dev": true + }, + "yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + }, + "yocto-queue": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", + "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", + "dev": true + } + } +} diff --git a/site-search/site-search-frontend/package.json b/site-search/site-search-frontend/package.json new file mode 100644 index 00000000..ccecec4b --- /dev/null +++ b/site-search/site-search-frontend/package.json @@ -0,0 +1,35 @@ +{ + "name": "site-search", + "private": true, + "version": "0.0.0", + "type": "module", + "scripts": { + "dev": "vite", + "build": "tsc && vite build", + "lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0", + "preview": "vite preview" + }, + "dependencies": { + "@reduxjs/toolkit": "^1.9.5", + "bootstrap": "^5.3.1", + "react": "^18.2.0", + "react-bootstrap": "^2.8.0", + "react-dom": "^18.2.0", + "react-redux": "^8.1.2", + "react-router-dom": "^6.15.0" + }, + "devDependencies": { + "@faker-js/faker": "^8.0.2", + "@types/react": "^18.2.15", + "@types/react-bootstrap": "^0.32.32", + "@types/react-dom": "^18.2.7", + "@typescript-eslint/eslint-plugin": "^6.0.0", + "@typescript-eslint/parser": "^6.0.0", + "@vitejs/plugin-react-swc": "^3.3.2", + "eslint": "^8.45.0", + "eslint-plugin-react-hooks": "^4.6.0", + "eslint-plugin-react-refresh": "^0.4.3", + "typescript": "^5.0.2", + "vite": "^4.4.5" + } +} diff --git a/site-search/site-search-frontend/public/vite.svg b/site-search/site-search-frontend/public/vite.svg new file mode 100644 index 00000000..e7b8dfb1 --- /dev/null +++ b/site-search/site-search-frontend/public/vite.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site-search/site-search-frontend/src/App.css b/site-search/site-search-frontend/src/App.css new file mode 100644 index 00000000..b9d355df --- /dev/null +++ b/site-search/site-search-frontend/src/App.css @@ -0,0 +1,42 @@ +#root { + max-width: 1280px; + margin: 0 auto; + padding: 2rem; + text-align: center; +} + +.logo { + height: 6em; + padding: 1.5em; + will-change: filter; + transition: filter 300ms; +} +.logo:hover { + filter: drop-shadow(0 0 2em #646cffaa); +} +.logo.react:hover { + filter: drop-shadow(0 0 2em #61dafbaa); +} + +@keyframes logo-spin { + from { + transform: rotate(0deg); + } + to { + transform: rotate(360deg); + } +} + +@media (prefers-reduced-motion: no-preference) { + a:nth-of-type(2) .logo { + animation: logo-spin infinite 20s linear; + } +} + +.card { + padding: 2em; +} + +.read-the-docs { + color: #888; +} diff --git a/site-search/site-search-frontend/src/App.tsx b/site-search/site-search-frontend/src/App.tsx new file mode 100644 index 00000000..088b39b7 --- /dev/null +++ b/site-search/site-search-frontend/src/App.tsx @@ -0,0 +1,21 @@ +// import { useState } from 'react' +// import reactLogo from './assets/react.svg' +// import viteLogo from '/vite.svg' +import './App.css' + +function App() { + // const [count, setCount] = useState(0) + + return ( + <> +
+ + +

Site Search

+ +
+ + ) +} + +export default App diff --git a/site-search/site-search-frontend/src/api/dummy-data.tsx b/site-search/site-search-frontend/src/api/dummy-data.tsx new file mode 100644 index 00000000..95d86a30 --- /dev/null +++ b/site-search/site-search-frontend/src/api/dummy-data.tsx @@ -0,0 +1,22 @@ +import { faker } from '@faker-js/faker'; +import type { Site } from './sites' + + +export function createRandomSite(): Site { + return { + uuid: faker.string.uuid(), + siteID: faker.number.int({min: 15192, max: 20999}), + address: faker.location.streetAddress(), + latitude: faker.location.latitude(), //TODO: Confine this to BC + longitude: faker.location.longitude(), //TODO: Confine to BC + lastUpdated: faker.date.past({years: 10}), + city: faker.location.city(), + region: randomRegion() + } +} + +const REGIONS = ['Vancouver Island/Coast', 'Mainland/Southwest', 'Thompson-Okanagan', 'Kootenay', 'Cariboo',' North Coast']; +function randomRegion() { + const random = Math.floor(Math.random() * REGIONS.length) + return REGIONS[random]; +} \ No newline at end of file diff --git a/site-search/site-search-frontend/src/api/sites.ts b/site-search/site-search-frontend/src/api/sites.ts new file mode 100644 index 00000000..d8309cfc --- /dev/null +++ b/site-search/site-search-frontend/src/api/sites.ts @@ -0,0 +1,20 @@ +// import { createApi, fetchBaseQuery } from '@reduxjs/toolkit/query/react' +// import type + +// export const siteAPI = createApi({ +// recucerPath: 'siteAPI', + +// }) + + + +export type Site = { + uuid?: string, + siteID: number, + address: string, + latitude: number, + longitude: number, + lastUpdated: Date, + city: string, + region: string +} \ No newline at end of file diff --git a/site-search/site-search-frontend/src/assets/react.svg b/site-search/site-search-frontend/src/assets/react.svg new file mode 100644 index 00000000..6c87de9b --- /dev/null +++ b/site-search/site-search-frontend/src/assets/react.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/site-search/site-search-frontend/src/components/Header.tsx b/site-search/site-search-frontend/src/components/Header.tsx new file mode 100644 index 00000000..72817c9d --- /dev/null +++ b/site-search/site-search-frontend/src/components/Header.tsx @@ -0,0 +1,33 @@ +import Container from 'react-bootstrap/Container'; +import Nav from 'react-bootstrap/Nav'; +import Navbar from 'react-bootstrap/Navbar'; +import NavDropdown from 'react-bootstrap/NavDropdown'; + + +export default function Header() { + return ( + + + BCGov Logo + + + + + + + ); +} \ No newline at end of file diff --git a/site-search/site-search-frontend/src/features/simple-search/search-results.tsx b/site-search/site-search-frontend/src/features/simple-search/search-results.tsx new file mode 100644 index 00000000..7640af6d --- /dev/null +++ b/site-search/site-search-frontend/src/features/simple-search/search-results.tsx @@ -0,0 +1,39 @@ + +import { Site } from '@/api/sites' +import { Link } from "react-router-dom"; + + +export default function SimpleSearchResults({ site }: Site) { + // console.log('SimpleSearchResults site', site) + + return ( +
+

{site.address}

+ + + + + + + + + + + + + + + + + + + +
Site IDCityRegionLatitudeLongitude
{site.siteID}{site.city}{site.region}{site.latitude}{site.longitude}
+ View Site Details + View on Map + + Last Updated: {site.lastUpdated.toISOString().split('T')[0]} +
+
+ ) +} \ No newline at end of file diff --git a/site-search/site-search-frontend/src/features/simple-search/search-toggle.tsx b/site-search/site-search-frontend/src/features/simple-search/search-toggle.tsx new file mode 100644 index 00000000..0d5e42ae --- /dev/null +++ b/site-search/site-search-frontend/src/features/simple-search/search-toggle.tsx @@ -0,0 +1,23 @@ + +import ToggleButton from 'react-bootstrap/ToggleButton'; + +export default function SearchToggle({ checked, onChange, children }) { + + return ( + onChange(e.currentTarget.checked)} + > + {children} + + ) +} + +function convertToClassName(str: string): string { + return str.replace(' ', '-').toLowerCase() +} \ No newline at end of file diff --git a/site-search/site-search-frontend/src/features/simple-search/simple-search.ts b/site-search/site-search-frontend/src/features/simple-search/simple-search.ts new file mode 100644 index 00000000..e6096a73 --- /dev/null +++ b/site-search/site-search-frontend/src/features/simple-search/simple-search.ts @@ -0,0 +1,20 @@ +import { createRandomSite } from '@/api/dummy-data' +import { createSlice } from '@reduxjs/toolkit' + +export const siteSlice = createSlice({ + name: 'site', + initialState: { + // value: [createRandomSite()] + // value: (new Array(100)).fill(createRandomSite) + value: Array.from({length: 50}, _ => createRandomSite()) + }, + reducers: { + add: ()=>console.log('todo') // Maybe not even necessary? SITE list won't mutate much, unlike site selection + } +}) + + +// Action creators are generated for each case reducer function +export const { add } = siteSlice.actions + +export default siteSlice.reducer \ No newline at end of file diff --git a/site-search/site-search-frontend/src/index.css b/site-search/site-search-frontend/src/index.css new file mode 100644 index 00000000..2e6ae4ab --- /dev/null +++ b/site-search/site-search-frontend/src/index.css @@ -0,0 +1,32 @@ + + +:root { + --main-gray: #EDEDED; + --dark-gray: #717171 + + + --bs-blue: #0d6efd; + --bs-indigo: #6610f2; + --bs-purple: #6f42c1; + --bs-pink: #d63384; + --bs-red: #dc3545; + --bs-orange: #fd7e14; + --bs-yellow: #ffc107; + --bs-green: #198754; + --bs-teal: #20c997; + --bs-cyan: #0dcaf0; + --bs-white: #fff; + --bs-gray: #6c757d; + --bs-gray-dark: #343a40; + --bs-primary: #0d6efd; + --bs-secondary: #6c757d; + --bs-success: #198754; + --bs-info: #0dcaf0; + --bs-warning: #ffc107; + --bs-danger: #dc3545; + --bs-light: #f8f9fa; + --bs-dark: #212529; + --bs-font-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; + --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; + --bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0)); +} \ No newline at end of file diff --git a/site-search/site-search-frontend/src/main.tsx b/site-search/site-search-frontend/src/main.tsx new file mode 100644 index 00000000..03092cd9 --- /dev/null +++ b/site-search/site-search-frontend/src/main.tsx @@ -0,0 +1,34 @@ +import React from 'react' +import ReactDOM from 'react-dom/client' +import App from './App.tsx' +import Search from './pages/search.tsx' +import { + createBrowserRouter, + RouterProvider, +} from "react-router-dom"; +import 'bootstrap/dist/css/bootstrap.css'; +import './index.css' +import AdvancedSearch from './pages/advanced-search.tsx'; +import store from './store.ts' +import { Provider } from 'react-redux' + + +const router = createBrowserRouter([ + { + path: "/", + element: , + }, + { + path: "/advanced-search", + element: + } +]); + + +ReactDOM.createRoot(document.getElementById('root')!).render( + + + + + , +) diff --git a/site-search/site-search-frontend/src/pages/advanced-search.tsx b/site-search/site-search-frontend/src/pages/advanced-search.tsx new file mode 100644 index 00000000..888b9ba7 --- /dev/null +++ b/site-search/site-search-frontend/src/pages/advanced-search.tsx @@ -0,0 +1,12 @@ +import Header from "@/components/Header" + +export default function AdvancedSearch() { + return ( + <> +
+
+

Advanced search - Incomplete

+
+ + ) +} \ No newline at end of file diff --git a/site-search/site-search-frontend/src/pages/search.css b/site-search/site-search-frontend/src/pages/search.css new file mode 100644 index 00000000..8fd199f2 --- /dev/null +++ b/site-search/site-search-frontend/src/pages/search.css @@ -0,0 +1,12 @@ +.simple-search { + /* background-color: lightgray !important; */ + /* border-color: gray !important; */ + background-color: var(--main-gray) !important; + border-color: var(--dark-gray) !important; +} + +.search-results { + max-height: 500px; + overflow: scroll; + border-color: black !important; +} \ No newline at end of file diff --git a/site-search/site-search-frontend/src/pages/search.tsx b/site-search/site-search-frontend/src/pages/search.tsx new file mode 100644 index 00000000..c0bcad7b --- /dev/null +++ b/site-search/site-search-frontend/src/pages/search.tsx @@ -0,0 +1,141 @@ +import Button from 'react-bootstrap/Button'; +import Header from '@/components/Header' +import { useState } from 'react'; + +import { Link } from "react-router-dom"; +import { Site } from '@/api/sites' + +import { useSelector } from 'react-redux'; +import SimpleSearchResults from '@/features/simple-search/search-results'; +import './search.css'; +import SearchToggle from '@/features/simple-search/search-toggle'; + + + +export default function SearchPage() { + const [searchBySiteID, setSearchBySiteId] = useState(false); + const [searchByCity, setSearchByCity] = useState(false); + const [searchByRegion, setSearchByRegion] = useState(false); + const [searchByAddress, setSearchByAddress] = useState(false); + const [isLoaded, setIsLoaded] = useState(true); + const sites: Site[] = useSelector(state => state.site.value); + const [searchResults, setSearchResults] = useState([]); + const [searchQuery, setSearchQuery] = useState(''); + + function handleSearch(e){ + setSearchQuery(e.target.value) + updateSearch(e.target.value) + } + + function updateSearch(query: string){ + // TODO: Debounce + setIsLoaded(false) + setTimeout(() => { + + // TODO - Only search on SiteID based on user selections + // TODO - Re-trigger search when state changed + const results = sites.filter(site => { + const nothingSelected = (!searchBySiteID && !searchByCity && !searchByRegion); + const resultCollection = []; + if (searchBySiteID || nothingSelected) { + resultCollection.push(String(site.siteID).includes(query) ) + } + if (searchByCity || nothingSelected) { + resultCollection.push(String(site.city).includes(query)) + } + if (searchByRegion || nothingSelected) { + resultCollection.push(String(site.region).includes(query)) + } + if (searchByAddress || nothingSelected) { + resultCollection.push(String(site.address).includes(query)) + } + + // console.log('sites.filter', { searchBySiteID, searchByCity, searchByRegion }) + // If we have any hits, return true, otherwise if array is empty return false, so Array.filter works above + // Use filter to remove 'false' from array, so it only returns true on a positive id + return resultCollection.filter(x=>!!x).length + }) + setSearchResults(results) + setIsLoaded(true); + }, 1000) + } + + + /** + * These below functions were an attempt to re-trigger serach after clicking a search option, but they did not work. + * Lead to weird case where old values were rendered. + */ + // function updateSearchBySite(val: boolean){ + // // console.log('updateSearchBySite', val) + // setSearchBySiteId(val) + // updateSearch(searchQuery) + // // setTimeout(() =>{updateSearch(searchQuery)}, 0) + // } + + // function updateSearchByCity(val: boolean){ + // setSearchByCity(val); + // updateSearch(searchQuery) + // } + + // function updateSearchByRegion(val: boolean){ + // setSearchByRegion(val) + // updateSearch(searchQuery) + // } + + + + + return ( + <> +
+
+

Site Search

+
+
+ +
+ +
+ + + +
+
+ + {!!searchQuery.length && +
+
+
+ Site ID + City + Region + Address + {/* The below were trying to use the commented out functions that re-trigger search on selection. Will pick this up again later. */} + {/* Site ID */} + {/* City */} + {/* Region */} +
+
+
+ +
+ {!isLoaded &&
Loading...
} + {isLoaded && searchResults.map(site => { + return + })} + {isLoaded && searchResults.length == 0 &&
+ No results +
} +
+ + +
+
+ } + +
+ + ) + + +} \ No newline at end of file diff --git a/site-search/site-search-frontend/src/store.ts b/site-search/site-search-frontend/src/store.ts new file mode 100644 index 00000000..95d4001f --- /dev/null +++ b/site-search/site-search-frontend/src/store.ts @@ -0,0 +1,8 @@ +import { configureStore } from '@reduxjs/toolkit' +import siteReducer from '@/features/simple-search/simple-search' + +export default configureStore({ + reducer: { + site: siteReducer + } +}) \ No newline at end of file diff --git a/site-search/site-search-frontend/src/vite-env.d.ts b/site-search/site-search-frontend/src/vite-env.d.ts new file mode 100644 index 00000000..11f02fe2 --- /dev/null +++ b/site-search/site-search-frontend/src/vite-env.d.ts @@ -0,0 +1 @@ +/// diff --git a/site-search/site-search-frontend/tsconfig.json b/site-search/site-search-frontend/tsconfig.json new file mode 100644 index 00000000..0b89aa00 --- /dev/null +++ b/site-search/site-search-frontend/tsconfig.json @@ -0,0 +1,30 @@ +{ + "compilerOptions": { + "target": "ES2020", + "useDefineForClassFields": true, + "lib": ["ES2020", "DOM", "DOM.Iterable"], + "module": "ESNext", + "skipLibCheck": true, + + /* Bundler mode */ + "moduleResolution": "bundler", + "allowImportingTsExtensions": true, + "resolveJsonModule": true, + "isolatedModules": true, + "noEmit": true, + "jsx": "react-jsx", + + /* Linting */ + "strict": true, + "noUnusedLocals": true, + "noUnusedParameters": true, + "noFallthroughCasesInSwitch": true, + + /* Paths */ + "paths": { + "@/*": ["./src/*"] + } + }, + "include": ["src"], + "references": [{ "path": "./tsconfig.node.json" }] +} diff --git a/site-search/site-search-frontend/tsconfig.node.json b/site-search/site-search-frontend/tsconfig.node.json new file mode 100644 index 00000000..42872c59 --- /dev/null +++ b/site-search/site-search-frontend/tsconfig.node.json @@ -0,0 +1,10 @@ +{ + "compilerOptions": { + "composite": true, + "skipLibCheck": true, + "module": "ESNext", + "moduleResolution": "bundler", + "allowSyntheticDefaultImports": true + }, + "include": ["vite.config.ts"] +} diff --git a/site-search/site-search-frontend/vite.config.ts b/site-search/site-search-frontend/vite.config.ts new file mode 100644 index 00000000..ec2e883c --- /dev/null +++ b/site-search/site-search-frontend/vite.config.ts @@ -0,0 +1,11 @@ +import { defineConfig } from 'vite' +import * as path from 'path' +import react from '@vitejs/plugin-react-swc' + +// https://vitejs.dev/config/ +export default defineConfig({ + plugins: [react()], + resolve: { + alias: [{ find: '@', replacement: path.resolve(__dirname, 'src') }], + } +}) From ed9b8864fef2e7193796b8b0d7849d8ba90748cf Mon Sep 17 00:00:00 2001 From: Adam Coard Date: Thu, 14 Sep 2023 10:54:15 -0700 Subject: [PATCH 016/194] Delete old nextjs attempt --- site-search/site-search/.eslintrc.json | 3 - site-search/site-search/.gitignore | 35 - site-search/site-search/README.md | 38 - site-search/site-search/components/Header.tsx | 33 - site-search/site-search/next.config.js | 6 - site-search/site-search/package-lock.json | 6042 ----------------- site-search/site-search/package.json | 25 - site-search/site-search/pages/_app.tsx | 8 - site-search/site-search/pages/_document.tsx | 13 - .../pages/advanced-search/index.tsx | 12 - site-search/site-search/pages/api/hello.ts | 13 - site-search/site-search/pages/index.tsx | 49 - site-search/site-search/public/favicon.ico | Bin 25931 -> 0 bytes site-search/site-search/public/next.svg | 1 - site-search/site-search/public/vercel.svg | 1 - .../site-search/styles/Home.module.css | 229 - site-search/site-search/styles/globals.css | 97 - site-search/site-search/tsconfig.json | 22 - 18 files changed, 6627 deletions(-) delete mode 100644 site-search/site-search/.eslintrc.json delete mode 100644 site-search/site-search/.gitignore delete mode 100644 site-search/site-search/README.md delete mode 100644 site-search/site-search/components/Header.tsx delete mode 100644 site-search/site-search/next.config.js delete mode 100644 site-search/site-search/package-lock.json delete mode 100644 site-search/site-search/package.json delete mode 100644 site-search/site-search/pages/_app.tsx delete mode 100644 site-search/site-search/pages/_document.tsx delete mode 100644 site-search/site-search/pages/advanced-search/index.tsx delete mode 100644 site-search/site-search/pages/api/hello.ts delete mode 100644 site-search/site-search/pages/index.tsx delete mode 100644 site-search/site-search/public/favicon.ico delete mode 100644 site-search/site-search/public/next.svg delete mode 100644 site-search/site-search/public/vercel.svg delete mode 100644 site-search/site-search/styles/Home.module.css delete mode 100644 site-search/site-search/styles/globals.css delete mode 100644 site-search/site-search/tsconfig.json diff --git a/site-search/site-search/.eslintrc.json b/site-search/site-search/.eslintrc.json deleted file mode 100644 index bffb357a..00000000 --- a/site-search/site-search/.eslintrc.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "extends": "next/core-web-vitals" -} diff --git a/site-search/site-search/.gitignore b/site-search/site-search/.gitignore deleted file mode 100644 index 8f322f0d..00000000 --- a/site-search/site-search/.gitignore +++ /dev/null @@ -1,35 +0,0 @@ -# See https://help.github.com/articles/ignoring-files/ for more about ignoring files. - -# dependencies -/node_modules -/.pnp -.pnp.js - -# testing -/coverage - -# next.js -/.next/ -/out/ - -# production -/build - -# misc -.DS_Store -*.pem - -# debug -npm-debug.log* -yarn-debug.log* -yarn-error.log* - -# local env files -.env*.local - -# vercel -.vercel - -# typescript -*.tsbuildinfo -next-env.d.ts diff --git a/site-search/site-search/README.md b/site-search/site-search/README.md deleted file mode 100644 index 965a1228..00000000 --- a/site-search/site-search/README.md +++ /dev/null @@ -1,38 +0,0 @@ -This is a [Next.js](https://nextjs.org/) project bootstrapped with [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packages/create-next-app). - -## Getting Started - -First, run the development server: - -```bash -npm run dev -# or -yarn dev -# or -pnpm dev -``` - -Open [http://localhost:3000](http://localhost:3000) with your browser to see the result. - -You can start editing the page by modifying `pages/index.tsx`. The page auto-updates as you edit the file. - -[API routes](https://nextjs.org/docs/api-routes/introduction) can be accessed on [http://localhost:3000/api/hello](http://localhost:3000/api/hello). This endpoint can be edited in `pages/api/hello.ts`. - -The `pages/api` directory is mapped to `/api/*`. Files in this directory are treated as [API routes](https://nextjs.org/docs/api-routes/introduction) instead of React pages. - -This project uses [`next/font`](https://nextjs.org/docs/basic-features/font-optimization) to automatically optimize and load Inter, a custom Google Font. - -## Learn More - -To learn more about Next.js, take a look at the following resources: - -- [Next.js Documentation](https://nextjs.org/docs) - learn about Next.js features and API. -- [Learn Next.js](https://nextjs.org/learn) - an interactive Next.js tutorial. - -You can check out [the Next.js GitHub repository](https://github.com/vercel/next.js/) - your feedback and contributions are welcome! - -## Deploy on Vercel - -The easiest way to deploy your Next.js app is to use the [Vercel Platform](https://vercel.com/new?utm_medium=default-template&filter=next.js&utm_source=create-next-app&utm_campaign=create-next-app-readme) from the creators of Next.js. - -Check out our [Next.js deployment documentation](https://nextjs.org/docs/deployment) for more details. diff --git a/site-search/site-search/components/Header.tsx b/site-search/site-search/components/Header.tsx deleted file mode 100644 index ae43b54c..00000000 --- a/site-search/site-search/components/Header.tsx +++ /dev/null @@ -1,33 +0,0 @@ -import Container from 'react-bootstrap/Container'; -import Nav from 'react-bootstrap/Nav'; -import Navbar from 'react-bootstrap/Navbar'; -import NavDropdown from 'react-bootstrap/NavDropdown'; - -import Link from 'next/link'; -import { NavLink } from 'react-bootstrap'; - - -export default function Header() { - return ( - - - BCGov - - - - - - - - ); -} \ No newline at end of file diff --git a/site-search/site-search/next.config.js b/site-search/site-search/next.config.js deleted file mode 100644 index a843cbee..00000000 --- a/site-search/site-search/next.config.js +++ /dev/null @@ -1,6 +0,0 @@ -/** @type {import('next').NextConfig} */ -const nextConfig = { - reactStrictMode: true, -} - -module.exports = nextConfig diff --git a/site-search/site-search/package-lock.json b/site-search/site-search/package-lock.json deleted file mode 100644 index 07cc08d1..00000000 --- a/site-search/site-search/package-lock.json +++ /dev/null @@ -1,6042 +0,0 @@ -{ - "name": "site-search", - "version": "0.1.0", - "lockfileVersion": 2, - "requires": true, - "packages": { - "": { - "name": "site-search", - "version": "0.1.0", - "dependencies": { - "@types/node": "20.6.0", - "@types/react": "18.2.21", - "@types/react-bootstrap": "^0.32.32", - "@types/react-dom": "18.2.7", - "bootstrap": "^5.3.1", - "eslint": "8.49.0", - "eslint-config-next": "13.4.19", - "next": "13.4.19", - "react": "18.2.0", - "react-bootstrap": "^2.8.0", - "react-dom": "18.2.0", - "typescript": "5.2.2" - } - }, - "node_modules/@aashutoshrathi/word-wrap": { - "version": "1.2.6", - "resolved": "https://registry.npmjs.org/@aashutoshrathi/word-wrap/-/word-wrap-1.2.6.tgz", - "integrity": "sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/@babel/runtime": { - "version": "7.22.15", - "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.22.15.tgz", - "integrity": "sha512-T0O+aa+4w0u06iNmapipJXMV4HoUir03hpx3/YqXXhu9xim3w+dVphjFWl1OH8NbZHw5Lbm9k45drDkgq2VNNA==", - "dependencies": { - "regenerator-runtime": "^0.14.0" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@eslint-community/eslint-utils": { - "version": "4.4.0", - "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.4.0.tgz", - "integrity": "sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==", - "dependencies": { - "eslint-visitor-keys": "^3.3.0" - }, - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "peerDependencies": { - "eslint": "^6.0.0 || ^7.0.0 || >=8.0.0" - } - }, - "node_modules/@eslint-community/regexpp": { - "version": "4.8.0", - "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.8.0.tgz", - "integrity": "sha512-JylOEEzDiOryeUnFbQz+oViCXS0KsvR1mvHkoMiu5+UiBvy+RYX7tzlIIIEstF/gVa2tj9AQXk3dgnxv6KxhFg==", - "engines": { - "node": "^12.0.0 || ^14.0.0 || >=16.0.0" - } - }, - "node_modules/@eslint/eslintrc": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-2.1.2.tgz", - "integrity": "sha512-+wvgpDsrB1YqAMdEUCcnTlpfVBH7Vqn6A/NT3D8WVXFIaKMlErPIZT3oCIAVCOtarRpMtelZLqJeU3t7WY6X6g==", - "dependencies": { - "ajv": "^6.12.4", - "debug": "^4.3.2", - "espree": "^9.6.0", - "globals": "^13.19.0", - "ignore": "^5.2.0", - "import-fresh": "^3.2.1", - "js-yaml": "^4.1.0", - "minimatch": "^3.1.2", - "strip-json-comments": "^3.1.1" - }, - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "funding": { - "url": "https://opencollective.com/eslint" - } - }, - "node_modules/@eslint/js": { - "version": "8.49.0", - "resolved": "https://registry.npmjs.org/@eslint/js/-/js-8.49.0.tgz", - "integrity": "sha512-1S8uAY/MTJqVx0SC4epBq+N2yhuwtNwLbJYNZyhL2pO1ZVKn5HFXav5T41Ryzy9K9V7ZId2JB2oy/W4aCd9/2w==", - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - } - }, - "node_modules/@humanwhocodes/config-array": { - "version": "0.11.11", - "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.11.tgz", - "integrity": "sha512-N2brEuAadi0CcdeMXUkhbZB84eskAc8MEX1By6qEchoVywSgXPIjou4rYsl0V3Hj0ZnuGycGCjdNgockbzeWNA==", - "dependencies": { - "@humanwhocodes/object-schema": "^1.2.1", - "debug": "^4.1.1", - "minimatch": "^3.0.5" - }, - "engines": { - "node": ">=10.10.0" - } - }, - "node_modules/@humanwhocodes/module-importer": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz", - "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==", - "engines": { - "node": ">=12.22" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/nzakas" - } - }, - "node_modules/@humanwhocodes/object-schema": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz", - "integrity": "sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==" - }, - "node_modules/@next/env": { - "version": "13.4.19", - "resolved": "https://registry.npmjs.org/@next/env/-/env-13.4.19.tgz", - "integrity": "sha512-FsAT5x0jF2kkhNkKkukhsyYOrRqtSxrEhfliniIq0bwWbuXLgyt3Gv0Ml+b91XwjwArmuP7NxCiGd++GGKdNMQ==" - }, - "node_modules/@next/eslint-plugin-next": { - "version": "13.4.19", - "resolved": "https://registry.npmjs.org/@next/eslint-plugin-next/-/eslint-plugin-next-13.4.19.tgz", - "integrity": "sha512-N/O+zGb6wZQdwu6atMZHbR7T9Np5SUFUjZqCbj0sXm+MwQO35M8TazVB4otm87GkXYs2l6OPwARd3/PUWhZBVQ==", - "dependencies": { - "glob": "7.1.7" - } - }, - "node_modules/@next/swc-darwin-arm64": { - "version": "13.4.19", - "resolved": "https://registry.npmjs.org/@next/swc-darwin-arm64/-/swc-darwin-arm64-13.4.19.tgz", - "integrity": "sha512-vv1qrjXeGbuF2mOkhkdxMDtv9np7W4mcBtaDnHU+yJG+bBwa6rYsYSCI/9Xm5+TuF5SbZbrWO6G1NfTh1TMjvQ==", - "cpu": [ - "arm64" - ], - "optional": true, - "os": [ - "darwin" - ], - "engines": { - "node": ">= 10" - } - }, - "node_modules/@next/swc-darwin-x64": { - "version": "13.4.19", - "resolved": "https://registry.npmjs.org/@next/swc-darwin-x64/-/swc-darwin-x64-13.4.19.tgz", - "integrity": "sha512-jyzO6wwYhx6F+7gD8ddZfuqO4TtpJdw3wyOduR4fxTUCm3aLw7YmHGYNjS0xRSYGAkLpBkH1E0RcelyId6lNsw==", - "cpu": [ - "x64" - ], - "optional": true, - "os": [ - "darwin" - ], - "engines": { - "node": ">= 10" - } - }, - "node_modules/@next/swc-linux-arm64-gnu": { - "version": "13.4.19", - "resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-gnu/-/swc-linux-arm64-gnu-13.4.19.tgz", - "integrity": "sha512-vdlnIlaAEh6H+G6HrKZB9c2zJKnpPVKnA6LBwjwT2BTjxI7e0Hx30+FoWCgi50e+YO49p6oPOtesP9mXDRiiUg==", - "cpu": [ - "arm64" - ], - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">= 10" - } - }, - "node_modules/@next/swc-linux-arm64-musl": { - "version": "13.4.19", - "resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-musl/-/swc-linux-arm64-musl-13.4.19.tgz", - "integrity": "sha512-aU0HkH2XPgxqrbNRBFb3si9Ahu/CpaR5RPmN2s9GiM9qJCiBBlZtRTiEca+DC+xRPyCThTtWYgxjWHgU7ZkyvA==", - "cpu": [ - "arm64" - ], - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">= 10" - } - }, - "node_modules/@next/swc-linux-x64-gnu": { - "version": "13.4.19", - "resolved": "https://registry.npmjs.org/@next/swc-linux-x64-gnu/-/swc-linux-x64-gnu-13.4.19.tgz", - "integrity": "sha512-htwOEagMa/CXNykFFeAHHvMJeqZfNQEoQvHfsA4wgg5QqGNqD5soeCer4oGlCol6NGUxknrQO6VEustcv+Md+g==", - "cpu": [ - "x64" - ], - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">= 10" - } - }, - "node_modules/@next/swc-linux-x64-musl": { - "version": "13.4.19", - "resolved": "https://registry.npmjs.org/@next/swc-linux-x64-musl/-/swc-linux-x64-musl-13.4.19.tgz", - "integrity": "sha512-4Gj4vvtbK1JH8ApWTT214b3GwUh9EKKQjY41hH/t+u55Knxi/0wesMzwQRhppK6Ddalhu0TEttbiJ+wRcoEj5Q==", - "cpu": [ - "x64" - ], - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">= 10" - } - }, - "node_modules/@next/swc-win32-arm64-msvc": { - "version": "13.4.19", - "resolved": "https://registry.npmjs.org/@next/swc-win32-arm64-msvc/-/swc-win32-arm64-msvc-13.4.19.tgz", - "integrity": "sha512-bUfDevQK4NsIAHXs3/JNgnvEY+LRyneDN788W2NYiRIIzmILjba7LaQTfihuFawZDhRtkYCv3JDC3B4TwnmRJw==", - "cpu": [ - "arm64" - ], - "optional": true, - "os": [ - "win32" - ], - "engines": { - "node": ">= 10" - } - }, - "node_modules/@next/swc-win32-ia32-msvc": { - "version": "13.4.19", - "resolved": "https://registry.npmjs.org/@next/swc-win32-ia32-msvc/-/swc-win32-ia32-msvc-13.4.19.tgz", - "integrity": "sha512-Y5kikILFAr81LYIFaw6j/NrOtmiM4Sf3GtOc0pn50ez2GCkr+oejYuKGcwAwq3jiTKuzF6OF4iT2INPoxRycEA==", - "cpu": [ - "ia32" - ], - "optional": true, - "os": [ - "win32" - ], - "engines": { - "node": ">= 10" - } - }, - "node_modules/@next/swc-win32-x64-msvc": { - "version": "13.4.19", - "resolved": "https://registry.npmjs.org/@next/swc-win32-x64-msvc/-/swc-win32-x64-msvc-13.4.19.tgz", - "integrity": "sha512-YzA78jBDXMYiINdPdJJwGgPNT3YqBNNGhsthsDoWHL9p24tEJn9ViQf/ZqTbwSpX/RrkPupLfuuTH2sf73JBAw==", - "cpu": [ - "x64" - ], - "optional": true, - "os": [ - "win32" - ], - "engines": { - "node": ">= 10" - } - }, - "node_modules/@nodelib/fs.scandir": { - "version": "2.1.5", - "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", - "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", - "dependencies": { - "@nodelib/fs.stat": "2.0.5", - "run-parallel": "^1.1.9" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/@nodelib/fs.stat": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", - "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", - "engines": { - "node": ">= 8" - } - }, - "node_modules/@nodelib/fs.walk": { - "version": "1.2.8", - "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", - "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", - "dependencies": { - "@nodelib/fs.scandir": "2.1.5", - "fastq": "^1.6.0" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/@popperjs/core": { - "version": "2.11.8", - "resolved": "https://registry.npmjs.org/@popperjs/core/-/core-2.11.8.tgz", - "integrity": "sha512-P1st0aksCrn9sGZhp8GMYwBnQsbvAWsZAX44oXNNvLHGqAOcoVxmjZiohstwQ7SqKnbR47akdNi+uleWD8+g6A==", - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/popperjs" - } - }, - "node_modules/@react-aria/ssr": { - "version": "3.8.0", - "resolved": "https://registry.npmjs.org/@react-aria/ssr/-/ssr-3.8.0.tgz", - "integrity": "sha512-Y54xs483rglN5DxbwfCPHxnkvZ+gZ0LbSYmR72LyWPGft8hN/lrl1VRS1EW2SMjnkEWlj+Km2mwvA3kEHDUA0A==", - "dependencies": { - "@swc/helpers": "^0.5.0" - }, - "engines": { - "node": ">= 12" - }, - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0" - } - }, - "node_modules/@restart/hooks": { - "version": "0.4.11", - "resolved": "https://registry.npmjs.org/@restart/hooks/-/hooks-0.4.11.tgz", - "integrity": "sha512-Ft/ncTULZN6ldGHiF/k5qt72O8JyRMOeg0tApvCni8LkoiEahO+z3TNxfXIVGy890YtWVDvJAl662dVJSJXvMw==", - "dependencies": { - "dequal": "^2.0.3" - }, - "peerDependencies": { - "react": ">=16.8.0" - } - }, - "node_modules/@restart/ui": { - "version": "1.6.6", - "resolved": "https://registry.npmjs.org/@restart/ui/-/ui-1.6.6.tgz", - "integrity": "sha512-eC3puKuWE1SRYbojWHXnvCNHGgf3uzHCb6JOhnF4OXPibOIPEkR1sqDSkL643ydigxwh+ruCa1CmYHlzk7ikKA==", - "dependencies": { - "@babel/runtime": "^7.21.0", - "@popperjs/core": "^2.11.6", - "@react-aria/ssr": "^3.5.0", - "@restart/hooks": "^0.4.9", - "@types/warning": "^3.0.0", - "dequal": "^2.0.3", - "dom-helpers": "^5.2.0", - "uncontrollable": "^8.0.1", - "warning": "^4.0.3" - }, - "peerDependencies": { - "react": ">=16.14.0", - "react-dom": ">=16.14.0" - } - }, - "node_modules/@restart/ui/node_modules/uncontrollable": { - "version": "8.0.4", - "resolved": "https://registry.npmjs.org/uncontrollable/-/uncontrollable-8.0.4.tgz", - "integrity": "sha512-ulRWYWHvscPFc0QQXvyJjY6LIXU56f0h8pQFvhxiKk5V1fcI8gp9Ht9leVAhrVjzqMw0BgjspBINx9r6oyJUvQ==", - "peerDependencies": { - "react": ">=16.14.0" - } - }, - "node_modules/@rushstack/eslint-patch": { - "version": "1.3.3", - "resolved": "https://registry.npmjs.org/@rushstack/eslint-patch/-/eslint-patch-1.3.3.tgz", - "integrity": "sha512-0xd7qez0AQ+MbHatZTlI1gu5vkG8r7MYRUJAHPAHJBmGLs16zpkrpAVLvjQKQOqaXPDUBwOiJzNc00znHSCVBw==" - }, - "node_modules/@swc/helpers": { - "version": "0.5.1", - "resolved": "https://registry.npmjs.org/@swc/helpers/-/helpers-0.5.1.tgz", - "integrity": "sha512-sJ902EfIzn1Fa+qYmjdQqh8tPsoxyBz+8yBKC2HKUxyezKJFwPGOn7pv4WY6QuQW//ySQi5lJjA/ZT9sNWWNTg==", - "dependencies": { - "tslib": "^2.4.0" - } - }, - "node_modules/@types/json5": { - "version": "0.0.29", - "resolved": "https://registry.npmjs.org/@types/json5/-/json5-0.0.29.tgz", - "integrity": "sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==" - }, - "node_modules/@types/node": { - "version": "20.6.0", - "resolved": "https://registry.npmjs.org/@types/node/-/node-20.6.0.tgz", - "integrity": "sha512-najjVq5KN2vsH2U/xyh2opaSEz6cZMR2SetLIlxlj08nOcmPOemJmUK2o4kUzfLqfrWE0PIrNeE16XhYDd3nqg==" - }, - "node_modules/@types/prop-types": { - "version": "15.7.5", - "resolved": "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.5.tgz", - "integrity": "sha512-JCB8C6SnDoQf0cNycqd/35A7MjcnK+ZTqE7judS6o7utxUCg6imJg3QK2qzHKszlTjcj2cn+NwMB2i96ubpj7w==" - }, - "node_modules/@types/react": { - "version": "18.2.21", - "resolved": "https://registry.npmjs.org/@types/react/-/react-18.2.21.tgz", - "integrity": "sha512-neFKG/sBAwGxHgXiIxnbm3/AAVQ/cMRS93hvBpg8xYRbeQSPVABp9U2bRnPf0iI4+Ucdv3plSxKK+3CW2ENJxA==", - "dependencies": { - "@types/prop-types": "*", - "@types/scheduler": "*", - "csstype": "^3.0.2" - } - }, - "node_modules/@types/react-bootstrap": { - "version": "0.32.32", - "resolved": "https://registry.npmjs.org/@types/react-bootstrap/-/react-bootstrap-0.32.32.tgz", - "integrity": "sha512-GM9UtV7v+C2F0rbqgIpMWdCKBMdX3PQURoJQobPO4vDAeFadcExNtKffi13/MjaAks+riJKVGyiMe+6OmDYT2w==", - "dependencies": { - "@types/react": "*" - } - }, - "node_modules/@types/react-dom": { - "version": "18.2.7", - "resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-18.2.7.tgz", - "integrity": "sha512-GRaAEriuT4zp9N4p1i8BDBYmEyfo+xQ3yHjJU4eiK5NDa1RmUZG+unZABUTK4/Ox/M+GaHwb6Ow8rUITrtjszA==", - "dependencies": { - "@types/react": "*" - } - }, - "node_modules/@types/react-transition-group": { - "version": "4.4.6", - "resolved": "https://registry.npmjs.org/@types/react-transition-group/-/react-transition-group-4.4.6.tgz", - "integrity": "sha512-VnCdSxfcm08KjsJVQcfBmhEQAPnLB8G08hAxn39azX1qYBQ/5RVQuoHuKIcfKOdncuaUvEpFKFzEvbtIMsfVew==", - "dependencies": { - "@types/react": "*" - } - }, - "node_modules/@types/scheduler": { - "version": "0.16.3", - "resolved": "https://registry.npmjs.org/@types/scheduler/-/scheduler-0.16.3.tgz", - "integrity": "sha512-5cJ8CB4yAx7BH1oMvdU0Jh9lrEXyPkar6F9G/ERswkCuvP4KQZfZkSjcMbAICCpQTN4OuZn8tz0HiKv9TGZgrQ==" - }, - "node_modules/@types/warning": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/@types/warning/-/warning-3.0.0.tgz", - "integrity": "sha512-t/Tvs5qR47OLOr+4E9ckN8AmP2Tf16gWq+/qA4iUGS/OOyHVO8wv2vjJuX8SNOUTJyWb+2t7wJm6cXILFnOROA==" - }, - "node_modules/@typescript-eslint/parser": { - "version": "6.6.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-6.6.0.tgz", - "integrity": "sha512-setq5aJgUwtzGrhW177/i+DMLqBaJbdwGj2CPIVFFLE0NCliy5ujIdLHd2D1ysmlmsjdL2GWW+hR85neEfc12w==", - "dependencies": { - "@typescript-eslint/scope-manager": "6.6.0", - "@typescript-eslint/types": "6.6.0", - "@typescript-eslint/typescript-estree": "6.6.0", - "@typescript-eslint/visitor-keys": "6.6.0", - "debug": "^4.3.4" - }, - "engines": { - "node": "^16.0.0 || >=18.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - }, - "peerDependencies": { - "eslint": "^7.0.0 || ^8.0.0" - }, - "peerDependenciesMeta": { - "typescript": { - "optional": true - } - } - }, - "node_modules/@typescript-eslint/scope-manager": { - "version": "6.6.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-6.6.0.tgz", - "integrity": "sha512-pT08u5W/GT4KjPUmEtc2kSYvrH8x89cVzkA0Sy2aaOUIw6YxOIjA8ilwLr/1fLjOedX1QAuBpG9XggWqIIfERw==", - "dependencies": { - "@typescript-eslint/types": "6.6.0", - "@typescript-eslint/visitor-keys": "6.6.0" - }, - "engines": { - "node": "^16.0.0 || >=18.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - } - }, - "node_modules/@typescript-eslint/types": { - "version": "6.6.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-6.6.0.tgz", - "integrity": "sha512-CB6QpJQ6BAHlJXdwUmiaXDBmTqIE2bzGTDLADgvqtHWuhfNP3rAOK7kAgRMAET5rDRr9Utt+qAzRBdu3AhR3sg==", - "engines": { - "node": "^16.0.0 || >=18.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - } - }, - "node_modules/@typescript-eslint/typescript-estree": { - "version": "6.6.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-6.6.0.tgz", - "integrity": "sha512-hMcTQ6Al8MP2E6JKBAaSxSVw5bDhdmbCEhGW/V8QXkb9oNsFkA4SBuOMYVPxD3jbtQ4R/vSODBsr76R6fP3tbA==", - "dependencies": { - "@typescript-eslint/types": "6.6.0", - "@typescript-eslint/visitor-keys": "6.6.0", - "debug": "^4.3.4", - "globby": "^11.1.0", - "is-glob": "^4.0.3", - "semver": "^7.5.4", - "ts-api-utils": "^1.0.1" - }, - "engines": { - "node": "^16.0.0 || >=18.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - }, - "peerDependenciesMeta": { - "typescript": { - "optional": true - } - } - }, - "node_modules/@typescript-eslint/visitor-keys": { - "version": "6.6.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-6.6.0.tgz", - "integrity": "sha512-L61uJT26cMOfFQ+lMZKoJNbAEckLe539VhTxiGHrWl5XSKQgA0RTBZJW2HFPy5T0ZvPVSD93QsrTKDkfNwJGyQ==", - "dependencies": { - "@typescript-eslint/types": "6.6.0", - "eslint-visitor-keys": "^3.4.1" - }, - "engines": { - "node": "^16.0.0 || >=18.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - } - }, - "node_modules/acorn": { - "version": "8.10.0", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.10.0.tgz", - "integrity": "sha512-F0SAmZ8iUtS//m8DmCTA0jlh6TDKkHQyK6xc6V4KDTyZKA9dnvX9/3sRTVQrWm79glUAZbnmmNcdYwUIHWVybw==", - "bin": { - "acorn": "bin/acorn" - }, - "engines": { - "node": ">=0.4.0" - } - }, - "node_modules/acorn-jsx": { - "version": "5.3.2", - "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", - "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", - "peerDependencies": { - "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" - } - }, - "node_modules/ajv": { - "version": "6.12.6", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", - "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", - "dependencies": { - "fast-deep-equal": "^3.1.1", - "fast-json-stable-stringify": "^2.0.0", - "json-schema-traverse": "^0.4.1", - "uri-js": "^4.2.2" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/epoberezkin" - } - }, - "node_modules/ansi-regex": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", - "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", - "engines": { - "node": ">=8" - } - }, - "node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/argparse": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", - "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==" - }, - "node_modules/aria-query": { - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/aria-query/-/aria-query-5.3.0.tgz", - "integrity": "sha512-b0P0sZPKtyu8HkeRAfCq0IfURZK+SuwMjY1UXGBU27wpAiTwQAIlq56IbIO+ytk/JjS1fMR14ee5WBBfKi5J6A==", - "dependencies": { - "dequal": "^2.0.3" - } - }, - "node_modules/array-buffer-byte-length": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/array-buffer-byte-length/-/array-buffer-byte-length-1.0.0.tgz", - "integrity": "sha512-LPuwb2P+NrQw3XhxGc36+XSvuBPopovXYTR9Ew++Du9Yb/bx5AzBfrIsBoj0EZUifjQU+sHL21sseZ3jerWO/A==", - "dependencies": { - "call-bind": "^1.0.2", - "is-array-buffer": "^3.0.1" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/array-includes": { - "version": "3.1.7", - "resolved": "https://registry.npmjs.org/array-includes/-/array-includes-3.1.7.tgz", - "integrity": "sha512-dlcsNBIiWhPkHdOEEKnehA+RNUWDc4UqFtnIXU4uuYDPtA4LDkr7qip2p0VvFAEXNDr0yWZ9PJyIRiGjRLQzwQ==", - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.2.0", - "es-abstract": "^1.22.1", - "get-intrinsic": "^1.2.1", - "is-string": "^1.0.7" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/array-union": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz", - "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==", - "engines": { - "node": ">=8" - } - }, - "node_modules/array.prototype.findlastindex": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/array.prototype.findlastindex/-/array.prototype.findlastindex-1.2.3.tgz", - "integrity": "sha512-LzLoiOMAxvy+Gd3BAq3B7VeIgPdo+Q8hthvKtXybMvRV0jrXfJM/t8mw7nNlpEcVlVUnCnM2KSX4XU5HmpodOA==", - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.2.0", - "es-abstract": "^1.22.1", - "es-shim-unscopables": "^1.0.0", - "get-intrinsic": "^1.2.1" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/array.prototype.flat": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/array.prototype.flat/-/array.prototype.flat-1.3.2.tgz", - "integrity": "sha512-djYB+Zx2vLewY8RWlNCUdHjDXs2XOgm602S9E7P/UpHgfeHL00cRiIF+IN/G/aUJ7kGPb6yO/ErDI5V2s8iycA==", - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.2.0", - "es-abstract": "^1.22.1", - "es-shim-unscopables": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/array.prototype.flatmap": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/array.prototype.flatmap/-/array.prototype.flatmap-1.3.2.tgz", - "integrity": "sha512-Ewyx0c9PmpcsByhSW4r+9zDU7sGjFc86qf/kKtuSCRdhfbk0SNLLkaT5qvcHnRGgc5NP/ly/y+qkXkqONX54CQ==", - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.2.0", - "es-abstract": "^1.22.1", - "es-shim-unscopables": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/array.prototype.tosorted": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/array.prototype.tosorted/-/array.prototype.tosorted-1.1.2.tgz", - "integrity": "sha512-HuQCHOlk1Weat5jzStICBCd83NxiIMwqDg/dHEsoefabn/hJRj5pVdWcPUSpRrwhwxZOsQassMpgN/xRYFBMIg==", - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.2.0", - "es-abstract": "^1.22.1", - "es-shim-unscopables": "^1.0.0", - "get-intrinsic": "^1.2.1" - } - }, - "node_modules/arraybuffer.prototype.slice": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/arraybuffer.prototype.slice/-/arraybuffer.prototype.slice-1.0.2.tgz", - "integrity": "sha512-yMBKppFur/fbHu9/6USUe03bZ4knMYiwFBcyiaXB8Go0qNehwX6inYPzK9U0NeQvGxKthcmHcaR8P5MStSRBAw==", - "dependencies": { - "array-buffer-byte-length": "^1.0.0", - "call-bind": "^1.0.2", - "define-properties": "^1.2.0", - "es-abstract": "^1.22.1", - "get-intrinsic": "^1.2.1", - "is-array-buffer": "^3.0.2", - "is-shared-array-buffer": "^1.0.2" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/ast-types-flow": { - "version": "0.0.7", - "resolved": "https://registry.npmjs.org/ast-types-flow/-/ast-types-flow-0.0.7.tgz", - "integrity": "sha512-eBvWn1lvIApYMhzQMsu9ciLfkBY499mFZlNqG+/9WR7PVlroQw0vG30cOQQbaKz3sCEc44TAOu2ykzqXSNnwag==" - }, - "node_modules/asynciterator.prototype": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/asynciterator.prototype/-/asynciterator.prototype-1.0.0.tgz", - "integrity": "sha512-wwHYEIS0Q80f5mosx3L/dfG5t5rjEa9Ft51GTaNt862EnpyGHpgz2RkZvLPp1oF5TnAiTohkEKVEu8pQPJI7Vg==", - "dependencies": { - "has-symbols": "^1.0.3" - } - }, - "node_modules/available-typed-arrays": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.5.tgz", - "integrity": "sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw==", - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/axe-core": { - "version": "4.8.1", - "resolved": "https://registry.npmjs.org/axe-core/-/axe-core-4.8.1.tgz", - "integrity": "sha512-9l850jDDPnKq48nbad8SiEelCv4OrUWrKab/cPj0GScVg6cb6NbCCt/Ulk26QEq5jP9NnGr04Bit1BHyV6r5CQ==", - "engines": { - "node": ">=4" - } - }, - "node_modules/axobject-query": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/axobject-query/-/axobject-query-3.2.1.tgz", - "integrity": "sha512-jsyHu61e6N4Vbz/v18DHwWYKK0bSWLqn47eeDSKPB7m8tqMHF9YJ+mhIk2lVteyZrY8tnSj/jHOv4YiTCuCJgg==", - "dependencies": { - "dequal": "^2.0.3" - } - }, - "node_modules/balanced-match": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", - "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==" - }, - "node_modules/bootstrap": { - "version": "5.3.1", - "resolved": "https://registry.npmjs.org/bootstrap/-/bootstrap-5.3.1.tgz", - "integrity": "sha512-jzwza3Yagduci2x0rr9MeFSORjcHpt0lRZukZPZQJT1Dth5qzV7XcgGqYzi39KGAVYR8QEDVoO0ubFKOxzMG+g==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/twbs" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/bootstrap" - } - ], - "peerDependencies": { - "@popperjs/core": "^2.11.8" - } - }, - "node_modules/brace-expansion": { - "version": "1.1.11", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", - "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", - "dependencies": { - "balanced-match": "^1.0.0", - "concat-map": "0.0.1" - } - }, - "node_modules/braces": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", - "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", - "dependencies": { - "fill-range": "^7.0.1" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/busboy": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/busboy/-/busboy-1.6.0.tgz", - "integrity": "sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA==", - "dependencies": { - "streamsearch": "^1.1.0" - }, - "engines": { - "node": ">=10.16.0" - } - }, - "node_modules/call-bind": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz", - "integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==", - "dependencies": { - "function-bind": "^1.1.1", - "get-intrinsic": "^1.0.2" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/callsites": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", - "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", - "engines": { - "node": ">=6" - } - }, - "node_modules/caniuse-lite": { - "version": "1.0.30001532", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001532.tgz", - "integrity": "sha512-FbDFnNat3nMnrROzqrsg314zhqN5LGQ1kyyMk2opcrwGbVGpHRhgCWtAgD5YJUqNAiQ+dklreil/c3Qf1dfCTw==", - "funding": [ - { - "type": "opencollective", - "url": "https://opencollective.com/browserslist" - }, - { - "type": "tidelift", - "url": "https://tidelift.com/funding/github/npm/caniuse-lite" - }, - { - "type": "github", - "url": "https://github.com/sponsors/ai" - } - ] - }, - "node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/classnames": { - "version": "2.3.2", - "resolved": "https://registry.npmjs.org/classnames/-/classnames-2.3.2.tgz", - "integrity": "sha512-CSbhY4cFEJRe6/GQzIk5qXZ4Jeg5pcsP7b5peFSDpffpe1cqjASH/n9UTjBwOp6XpMSTwQ8Za2K5V02ueA7Tmw==" - }, - "node_modules/client-only": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/client-only/-/client-only-0.0.1.tgz", - "integrity": "sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA==" - }, - "node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" - }, - "node_modules/concat-map": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", - "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==" - }, - "node_modules/cross-spawn": { - "version": "7.0.3", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", - "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", - "dependencies": { - "path-key": "^3.1.0", - "shebang-command": "^2.0.0", - "which": "^2.0.1" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/csstype": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.1.2.tgz", - "integrity": "sha512-I7K1Uu0MBPzaFKg4nI5Q7Vs2t+3gWWW648spaF+Rg7pI9ds18Ugn+lvg4SHczUdKlHI5LWBXyqfS8+DufyBsgQ==" - }, - "node_modules/damerau-levenshtein": { - "version": "1.0.8", - "resolved": "https://registry.npmjs.org/damerau-levenshtein/-/damerau-levenshtein-1.0.8.tgz", - "integrity": "sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA==" - }, - "node_modules/debug": { - "version": "4.3.4", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", - "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", - "dependencies": { - "ms": "2.1.2" - }, - "engines": { - "node": ">=6.0" - }, - "peerDependenciesMeta": { - "supports-color": { - "optional": true - } - } - }, - "node_modules/deep-is": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", - "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==" - }, - "node_modules/define-properties": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.2.0.tgz", - "integrity": "sha512-xvqAVKGfT1+UAvPwKTVw/njhdQ8ZhXK4lI0bCIuCMrp2up9nPnaDftrLtmpTazqd1o+UY4zgzU+avtMbDP+ldA==", - "dependencies": { - "has-property-descriptors": "^1.0.0", - "object-keys": "^1.1.1" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/dequal": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/dequal/-/dequal-2.0.3.tgz", - "integrity": "sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==", - "engines": { - "node": ">=6" - } - }, - "node_modules/dir-glob": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz", - "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==", - "dependencies": { - "path-type": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/doctrine": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz", - "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==", - "dependencies": { - "esutils": "^2.0.2" - }, - "engines": { - "node": ">=6.0.0" - } - }, - "node_modules/dom-helpers": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/dom-helpers/-/dom-helpers-5.2.1.tgz", - "integrity": "sha512-nRCa7CK3VTrM2NmGkIy4cbK7IZlgBE/PYMn55rrXefr5xXDP0LdtfPnblFDoVdcAfslJ7or6iqAUnx0CCGIWQA==", - "dependencies": { - "@babel/runtime": "^7.8.7", - "csstype": "^3.0.2" - } - }, - "node_modules/emoji-regex": { - "version": "9.2.2", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", - "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==" - }, - "node_modules/enhanced-resolve": { - "version": "5.15.0", - "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.15.0.tgz", - "integrity": "sha512-LXYT42KJ7lpIKECr2mAXIaMldcNCh/7E0KBKOu4KSfkHmP+mZmSs+8V5gBAqisWBy0OO4W5Oyys0GO1Y8KtdKg==", - "dependencies": { - "graceful-fs": "^4.2.4", - "tapable": "^2.2.0" - }, - "engines": { - "node": ">=10.13.0" - } - }, - "node_modules/es-abstract": { - "version": "1.22.1", - "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.22.1.tgz", - "integrity": "sha512-ioRRcXMO6OFyRpyzV3kE1IIBd4WG5/kltnzdxSCqoP8CMGs/Li+M1uF5o7lOkZVFjDs+NLesthnF66Pg/0q0Lw==", - "dependencies": { - "array-buffer-byte-length": "^1.0.0", - "arraybuffer.prototype.slice": "^1.0.1", - "available-typed-arrays": "^1.0.5", - "call-bind": "^1.0.2", - "es-set-tostringtag": "^2.0.1", - "es-to-primitive": "^1.2.1", - "function.prototype.name": "^1.1.5", - "get-intrinsic": "^1.2.1", - "get-symbol-description": "^1.0.0", - "globalthis": "^1.0.3", - "gopd": "^1.0.1", - "has": "^1.0.3", - "has-property-descriptors": "^1.0.0", - "has-proto": "^1.0.1", - "has-symbols": "^1.0.3", - "internal-slot": "^1.0.5", - "is-array-buffer": "^3.0.2", - "is-callable": "^1.2.7", - "is-negative-zero": "^2.0.2", - "is-regex": "^1.1.4", - "is-shared-array-buffer": "^1.0.2", - "is-string": "^1.0.7", - "is-typed-array": "^1.1.10", - "is-weakref": "^1.0.2", - "object-inspect": "^1.12.3", - "object-keys": "^1.1.1", - "object.assign": "^4.1.4", - "regexp.prototype.flags": "^1.5.0", - "safe-array-concat": "^1.0.0", - "safe-regex-test": "^1.0.0", - "string.prototype.trim": "^1.2.7", - "string.prototype.trimend": "^1.0.6", - "string.prototype.trimstart": "^1.0.6", - "typed-array-buffer": "^1.0.0", - "typed-array-byte-length": "^1.0.0", - "typed-array-byte-offset": "^1.0.0", - "typed-array-length": "^1.0.4", - "unbox-primitive": "^1.0.2", - "which-typed-array": "^1.1.10" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/es-iterator-helpers": { - "version": "1.0.14", - "resolved": "https://registry.npmjs.org/es-iterator-helpers/-/es-iterator-helpers-1.0.14.tgz", - "integrity": "sha512-JgtVnwiuoRuzLvqelrvN3Xu7H9bu2ap/kQ2CrM62iidP8SKuD99rWU3CJy++s7IVL2qb/AjXPGR/E7i9ngd/Cw==", - "dependencies": { - "asynciterator.prototype": "^1.0.0", - "call-bind": "^1.0.2", - "define-properties": "^1.2.0", - "es-abstract": "^1.22.1", - "es-set-tostringtag": "^2.0.1", - "function-bind": "^1.1.1", - "get-intrinsic": "^1.2.1", - "globalthis": "^1.0.3", - "has-property-descriptors": "^1.0.0", - "has-proto": "^1.0.1", - "has-symbols": "^1.0.3", - "internal-slot": "^1.0.5", - "iterator.prototype": "^1.1.0", - "safe-array-concat": "^1.0.0" - } - }, - "node_modules/es-set-tostringtag": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.0.1.tgz", - "integrity": "sha512-g3OMbtlwY3QewlqAiMLI47KywjWZoEytKr8pf6iTC8uJq5bIAH52Z9pnQ8pVL6whrCto53JZDuUIsifGeLorTg==", - "dependencies": { - "get-intrinsic": "^1.1.3", - "has": "^1.0.3", - "has-tostringtag": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/es-shim-unscopables": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/es-shim-unscopables/-/es-shim-unscopables-1.0.0.tgz", - "integrity": "sha512-Jm6GPcCdC30eMLbZ2x8z2WuRwAws3zTBBKuusffYVUrNj/GVSUAZ+xKMaUpfNDR5IbyNA5LJbaecoUVbmUcB1w==", - "dependencies": { - "has": "^1.0.3" - } - }, - "node_modules/es-to-primitive": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz", - "integrity": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==", - "dependencies": { - "is-callable": "^1.1.4", - "is-date-object": "^1.0.1", - "is-symbol": "^1.0.2" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/escape-string-regexp": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", - "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/eslint": { - "version": "8.49.0", - "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.49.0.tgz", - "integrity": "sha512-jw03ENfm6VJI0jA9U+8H5zfl5b+FvuU3YYvZRdZHOlU2ggJkxrlkJH4HcDrZpj6YwD8kuYqvQM8LyesoazrSOQ==", - "dependencies": { - "@eslint-community/eslint-utils": "^4.2.0", - "@eslint-community/regexpp": "^4.6.1", - "@eslint/eslintrc": "^2.1.2", - "@eslint/js": "8.49.0", - "@humanwhocodes/config-array": "^0.11.11", - "@humanwhocodes/module-importer": "^1.0.1", - "@nodelib/fs.walk": "^1.2.8", - "ajv": "^6.12.4", - "chalk": "^4.0.0", - "cross-spawn": "^7.0.2", - "debug": "^4.3.2", - "doctrine": "^3.0.0", - "escape-string-regexp": "^4.0.0", - "eslint-scope": "^7.2.2", - "eslint-visitor-keys": "^3.4.3", - "espree": "^9.6.1", - "esquery": "^1.4.2", - "esutils": "^2.0.2", - "fast-deep-equal": "^3.1.3", - "file-entry-cache": "^6.0.1", - "find-up": "^5.0.0", - "glob-parent": "^6.0.2", - "globals": "^13.19.0", - "graphemer": "^1.4.0", - "ignore": "^5.2.0", - "imurmurhash": "^0.1.4", - "is-glob": "^4.0.0", - "is-path-inside": "^3.0.3", - "js-yaml": "^4.1.0", - "json-stable-stringify-without-jsonify": "^1.0.1", - "levn": "^0.4.1", - "lodash.merge": "^4.6.2", - "minimatch": "^3.1.2", - "natural-compare": "^1.4.0", - "optionator": "^0.9.3", - "strip-ansi": "^6.0.1", - "text-table": "^0.2.0" - }, - "bin": { - "eslint": "bin/eslint.js" - }, - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "funding": { - "url": "https://opencollective.com/eslint" - } - }, - "node_modules/eslint-config-next": { - "version": "13.4.19", - "resolved": "https://registry.npmjs.org/eslint-config-next/-/eslint-config-next-13.4.19.tgz", - "integrity": "sha512-WE8367sqMnjhWHvR5OivmfwENRQ1ixfNE9hZwQqNCsd+iM3KnuMc1V8Pt6ytgjxjf23D+xbesADv9x3xaKfT3g==", - "dependencies": { - "@next/eslint-plugin-next": "13.4.19", - "@rushstack/eslint-patch": "^1.1.3", - "@typescript-eslint/parser": "^5.4.2 || ^6.0.0", - "eslint-import-resolver-node": "^0.3.6", - "eslint-import-resolver-typescript": "^3.5.2", - "eslint-plugin-import": "^2.26.0", - "eslint-plugin-jsx-a11y": "^6.5.1", - "eslint-plugin-react": "^7.31.7", - "eslint-plugin-react-hooks": "^4.5.0 || 5.0.0-canary-7118f5dd7-20230705" - }, - "peerDependencies": { - "eslint": "^7.23.0 || ^8.0.0", - "typescript": ">=3.3.1" - }, - "peerDependenciesMeta": { - "typescript": { - "optional": true - } - } - }, - "node_modules/eslint-import-resolver-node": { - "version": "0.3.9", - "resolved": "https://registry.npmjs.org/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.9.tgz", - "integrity": "sha512-WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g==", - "dependencies": { - "debug": "^3.2.7", - "is-core-module": "^2.13.0", - "resolve": "^1.22.4" - } - }, - "node_modules/eslint-import-resolver-node/node_modules/debug": { - "version": "3.2.7", - "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", - "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", - "dependencies": { - "ms": "^2.1.1" - } - }, - "node_modules/eslint-import-resolver-typescript": { - "version": "3.6.0", - "resolved": "https://registry.npmjs.org/eslint-import-resolver-typescript/-/eslint-import-resolver-typescript-3.6.0.tgz", - "integrity": "sha512-QTHR9ddNnn35RTxlaEnx2gCxqFlF2SEN0SE2d17SqwyM7YOSI2GHWRYp5BiRkObTUNYPupC/3Fq2a0PpT+EKpg==", - "dependencies": { - "debug": "^4.3.4", - "enhanced-resolve": "^5.12.0", - "eslint-module-utils": "^2.7.4", - "fast-glob": "^3.3.1", - "get-tsconfig": "^4.5.0", - "is-core-module": "^2.11.0", - "is-glob": "^4.0.3" - }, - "engines": { - "node": "^14.18.0 || >=16.0.0" - }, - "funding": { - "url": "https://opencollective.com/unts/projects/eslint-import-resolver-ts" - }, - "peerDependencies": { - "eslint": "*", - "eslint-plugin-import": "*" - } - }, - "node_modules/eslint-module-utils": { - "version": "2.8.0", - "resolved": "https://registry.npmjs.org/eslint-module-utils/-/eslint-module-utils-2.8.0.tgz", - "integrity": "sha512-aWajIYfsqCKRDgUfjEXNN/JlrzauMuSEy5sbd7WXbtW3EH6A6MpwEh42c7qD+MqQo9QMJ6fWLAeIJynx0g6OAw==", - "dependencies": { - "debug": "^3.2.7" - }, - "engines": { - "node": ">=4" - }, - "peerDependenciesMeta": { - "eslint": { - "optional": true - } - } - }, - "node_modules/eslint-module-utils/node_modules/debug": { - "version": "3.2.7", - "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", - "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", - "dependencies": { - "ms": "^2.1.1" - } - }, - "node_modules/eslint-plugin-import": { - "version": "2.28.1", - "resolved": "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.28.1.tgz", - "integrity": "sha512-9I9hFlITvOV55alzoKBI+K9q74kv0iKMeY6av5+umsNwayt59fz692daGyjR+oStBQgx6nwR9rXldDev3Clw+A==", - "dependencies": { - "array-includes": "^3.1.6", - "array.prototype.findlastindex": "^1.2.2", - "array.prototype.flat": "^1.3.1", - "array.prototype.flatmap": "^1.3.1", - "debug": "^3.2.7", - "doctrine": "^2.1.0", - "eslint-import-resolver-node": "^0.3.7", - "eslint-module-utils": "^2.8.0", - "has": "^1.0.3", - "is-core-module": "^2.13.0", - "is-glob": "^4.0.3", - "minimatch": "^3.1.2", - "object.fromentries": "^2.0.6", - "object.groupby": "^1.0.0", - "object.values": "^1.1.6", - "semver": "^6.3.1", - "tsconfig-paths": "^3.14.2" - }, - "engines": { - "node": ">=4" - }, - "peerDependencies": { - "eslint": "^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8" - } - }, - "node_modules/eslint-plugin-import/node_modules/debug": { - "version": "3.2.7", - "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", - "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", - "dependencies": { - "ms": "^2.1.1" - } - }, - "node_modules/eslint-plugin-import/node_modules/doctrine": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", - "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", - "dependencies": { - "esutils": "^2.0.2" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/eslint-plugin-import/node_modules/semver": { - "version": "6.3.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", - "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", - "bin": { - "semver": "bin/semver.js" - } - }, - "node_modules/eslint-plugin-jsx-a11y": { - "version": "6.7.1", - "resolved": "https://registry.npmjs.org/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.7.1.tgz", - "integrity": "sha512-63Bog4iIethyo8smBklORknVjB0T2dwB8Mr/hIC+fBS0uyHdYYpzM/Ed+YC8VxTjlXHEWFOdmgwcDn1U2L9VCA==", - "dependencies": { - "@babel/runtime": "^7.20.7", - "aria-query": "^5.1.3", - "array-includes": "^3.1.6", - "array.prototype.flatmap": "^1.3.1", - "ast-types-flow": "^0.0.7", - "axe-core": "^4.6.2", - "axobject-query": "^3.1.1", - "damerau-levenshtein": "^1.0.8", - "emoji-regex": "^9.2.2", - "has": "^1.0.3", - "jsx-ast-utils": "^3.3.3", - "language-tags": "=1.0.5", - "minimatch": "^3.1.2", - "object.entries": "^1.1.6", - "object.fromentries": "^2.0.6", - "semver": "^6.3.0" - }, - "engines": { - "node": ">=4.0" - }, - "peerDependencies": { - "eslint": "^3 || ^4 || ^5 || ^6 || ^7 || ^8" - } - }, - "node_modules/eslint-plugin-jsx-a11y/node_modules/semver": { - "version": "6.3.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", - "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", - "bin": { - "semver": "bin/semver.js" - } - }, - "node_modules/eslint-plugin-react": { - "version": "7.33.2", - "resolved": "https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-7.33.2.tgz", - "integrity": "sha512-73QQMKALArI8/7xGLNI/3LylrEYrlKZSb5C9+q3OtOewTnMQi5cT+aE9E41sLCmli3I9PGGmD1yiZydyo4FEPw==", - "dependencies": { - "array-includes": "^3.1.6", - "array.prototype.flatmap": "^1.3.1", - "array.prototype.tosorted": "^1.1.1", - "doctrine": "^2.1.0", - "es-iterator-helpers": "^1.0.12", - "estraverse": "^5.3.0", - "jsx-ast-utils": "^2.4.1 || ^3.0.0", - "minimatch": "^3.1.2", - "object.entries": "^1.1.6", - "object.fromentries": "^2.0.6", - "object.hasown": "^1.1.2", - "object.values": "^1.1.6", - "prop-types": "^15.8.1", - "resolve": "^2.0.0-next.4", - "semver": "^6.3.1", - "string.prototype.matchall": "^4.0.8" - }, - "engines": { - "node": ">=4" - }, - "peerDependencies": { - "eslint": "^3 || ^4 || ^5 || ^6 || ^7 || ^8" - } - }, - "node_modules/eslint-plugin-react-hooks": { - "version": "4.6.0", - "resolved": "https://registry.npmjs.org/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-4.6.0.tgz", - "integrity": "sha512-oFc7Itz9Qxh2x4gNHStv3BqJq54ExXmfC+a1NjAta66IAN87Wu0R/QArgIS9qKzX3dXKPI9H5crl9QchNMY9+g==", - "engines": { - "node": ">=10" - }, - "peerDependencies": { - "eslint": "^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0" - } - }, - "node_modules/eslint-plugin-react/node_modules/doctrine": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", - "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", - "dependencies": { - "esutils": "^2.0.2" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/eslint-plugin-react/node_modules/resolve": { - "version": "2.0.0-next.4", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-2.0.0-next.4.tgz", - "integrity": "sha512-iMDbmAWtfU+MHpxt/I5iWI7cY6YVEZUQ3MBgPQ++XD1PELuJHIl82xBmObyP2KyQmkNB2dsqF7seoQQiAn5yDQ==", - "dependencies": { - "is-core-module": "^2.9.0", - "path-parse": "^1.0.7", - "supports-preserve-symlinks-flag": "^1.0.0" - }, - "bin": { - "resolve": "bin/resolve" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/eslint-plugin-react/node_modules/semver": { - "version": "6.3.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", - "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", - "bin": { - "semver": "bin/semver.js" - } - }, - "node_modules/eslint-scope": { - "version": "7.2.2", - "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.2.2.tgz", - "integrity": "sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==", - "dependencies": { - "esrecurse": "^4.3.0", - "estraverse": "^5.2.0" - }, - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "funding": { - "url": "https://opencollective.com/eslint" - } - }, - "node_modules/eslint-visitor-keys": { - "version": "3.4.3", - "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz", - "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==", - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "funding": { - "url": "https://opencollective.com/eslint" - } - }, - "node_modules/espree": { - "version": "9.6.1", - "resolved": "https://registry.npmjs.org/espree/-/espree-9.6.1.tgz", - "integrity": "sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==", - "dependencies": { - "acorn": "^8.9.0", - "acorn-jsx": "^5.3.2", - "eslint-visitor-keys": "^3.4.1" - }, - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "funding": { - "url": "https://opencollective.com/eslint" - } - }, - "node_modules/esquery": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.5.0.tgz", - "integrity": "sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==", - "dependencies": { - "estraverse": "^5.1.0" - }, - "engines": { - "node": ">=0.10" - } - }, - "node_modules/esrecurse": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", - "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", - "dependencies": { - "estraverse": "^5.2.0" - }, - "engines": { - "node": ">=4.0" - } - }, - "node_modules/estraverse": { - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", - "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", - "engines": { - "node": ">=4.0" - } - }, - "node_modules/esutils": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", - "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/fast-deep-equal": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", - "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==" - }, - "node_modules/fast-glob": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.1.tgz", - "integrity": "sha512-kNFPyjhh5cKjrUltxs+wFx+ZkbRaxxmZ+X0ZU31SOsxCEtP9VPgtq2teZw1DebupL5GmDaNQ6yKMMVcM41iqDg==", - "dependencies": { - "@nodelib/fs.stat": "^2.0.2", - "@nodelib/fs.walk": "^1.2.3", - "glob-parent": "^5.1.2", - "merge2": "^1.3.0", - "micromatch": "^4.0.4" - }, - "engines": { - "node": ">=8.6.0" - } - }, - "node_modules/fast-glob/node_modules/glob-parent": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", - "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", - "dependencies": { - "is-glob": "^4.0.1" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/fast-json-stable-stringify": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", - "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==" - }, - "node_modules/fast-levenshtein": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", - "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==" - }, - "node_modules/fastq": { - "version": "1.15.0", - "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.15.0.tgz", - "integrity": "sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==", - "dependencies": { - "reusify": "^1.0.4" - } - }, - "node_modules/file-entry-cache": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz", - "integrity": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==", - "dependencies": { - "flat-cache": "^3.0.4" - }, - "engines": { - "node": "^10.12.0 || >=12.0.0" - } - }, - "node_modules/fill-range": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", - "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", - "dependencies": { - "to-regex-range": "^5.0.1" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/find-up": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", - "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", - "dependencies": { - "locate-path": "^6.0.0", - "path-exists": "^4.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/flat-cache": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.1.0.tgz", - "integrity": "sha512-OHx4Qwrrt0E4jEIcI5/Xb+f+QmJYNj2rrK8wiIdQOIrB9WrrJL8cjZvXdXuBTkkEwEqLycb5BeZDV1o2i9bTew==", - "dependencies": { - "flatted": "^3.2.7", - "keyv": "^4.5.3", - "rimraf": "^3.0.2" - }, - "engines": { - "node": ">=12.0.0" - } - }, - "node_modules/flatted": { - "version": "3.2.7", - "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.2.7.tgz", - "integrity": "sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ==" - }, - "node_modules/for-each": { - "version": "0.3.3", - "resolved": "https://registry.npmjs.org/for-each/-/for-each-0.3.3.tgz", - "integrity": "sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==", - "dependencies": { - "is-callable": "^1.1.3" - } - }, - "node_modules/fs.realpath": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", - "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==" - }, - "node_modules/function-bind": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", - "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==" - }, - "node_modules/function.prototype.name": { - "version": "1.1.6", - "resolved": "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.6.tgz", - "integrity": "sha512-Z5kx79swU5P27WEayXM1tBi5Ze/lbIyiNgU3qyXUOf9b2rgXYyF9Dy9Cx+IQv/Lc8WCG6L82zwUPpSS9hGehIg==", - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.2.0", - "es-abstract": "^1.22.1", - "functions-have-names": "^1.2.3" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/functions-have-names": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz", - "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==", - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/get-intrinsic": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.1.tgz", - "integrity": "sha512-2DcsyfABl+gVHEfCOaTrWgyt+tb6MSEGmKq+kI5HwLbIYgjgmMcV8KQ41uaKz1xxUcn9tJtgFbQUEVcEbd0FYw==", - "dependencies": { - "function-bind": "^1.1.1", - "has": "^1.0.3", - "has-proto": "^1.0.1", - "has-symbols": "^1.0.3" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/get-symbol-description": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.0.0.tgz", - "integrity": "sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==", - "dependencies": { - "call-bind": "^1.0.2", - "get-intrinsic": "^1.1.1" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/get-tsconfig": { - "version": "4.7.0", - "resolved": "https://registry.npmjs.org/get-tsconfig/-/get-tsconfig-4.7.0.tgz", - "integrity": "sha512-pmjiZ7xtB8URYm74PlGJozDNyhvsVLUcpBa8DZBG3bWHwaHa9bPiRpiSfovw+fjhwONSCWKRyk+JQHEGZmMrzw==", - "dependencies": { - "resolve-pkg-maps": "^1.0.0" - }, - "funding": { - "url": "https://github.com/privatenumber/get-tsconfig?sponsor=1" - } - }, - "node_modules/glob": { - "version": "7.1.7", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.7.tgz", - "integrity": "sha512-OvD9ENzPLbegENnYP5UUfJIirTg4+XwMWGaQfQTY0JenxNvvIKP3U3/tAQSPIu/lHxXYSZmpXlUHeqAIdKzBLQ==", - "dependencies": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.0.4", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" - }, - "engines": { - "node": "*" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/glob-parent": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", - "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", - "dependencies": { - "is-glob": "^4.0.3" - }, - "engines": { - "node": ">=10.13.0" - } - }, - "node_modules/glob-to-regexp": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz", - "integrity": "sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==" - }, - "node_modules/globals": { - "version": "13.21.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-13.21.0.tgz", - "integrity": "sha512-ybyme3s4yy/t/3s35bewwXKOf7cvzfreG2lH0lZl0JB7I4GxRP2ghxOK/Nb9EkRXdbBXZLfq/p/0W2JUONB/Gg==", - "dependencies": { - "type-fest": "^0.20.2" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/globalthis": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/globalthis/-/globalthis-1.0.3.tgz", - "integrity": "sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==", - "dependencies": { - "define-properties": "^1.1.3" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/globby": { - "version": "11.1.0", - "resolved": "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz", - "integrity": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==", - "dependencies": { - "array-union": "^2.1.0", - "dir-glob": "^3.0.1", - "fast-glob": "^3.2.9", - "ignore": "^5.2.0", - "merge2": "^1.4.1", - "slash": "^3.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/gopd": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz", - "integrity": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==", - "dependencies": { - "get-intrinsic": "^1.1.3" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/graceful-fs": { - "version": "4.2.11", - "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", - "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==" - }, - "node_modules/graphemer": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/graphemer/-/graphemer-1.4.0.tgz", - "integrity": "sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==" - }, - "node_modules/has": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", - "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", - "dependencies": { - "function-bind": "^1.1.1" - }, - "engines": { - "node": ">= 0.4.0" - } - }, - "node_modules/has-bigints": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.2.tgz", - "integrity": "sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==", - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "engines": { - "node": ">=8" - } - }, - "node_modules/has-property-descriptors": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.0.tgz", - "integrity": "sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ==", - "dependencies": { - "get-intrinsic": "^1.1.1" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/has-proto": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.0.1.tgz", - "integrity": "sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==", - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/has-symbols": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", - "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==", - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/has-tostringtag": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.0.tgz", - "integrity": "sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==", - "dependencies": { - "has-symbols": "^1.0.2" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/ignore": { - "version": "5.2.4", - "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.2.4.tgz", - "integrity": "sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==", - "engines": { - "node": ">= 4" - } - }, - "node_modules/import-fresh": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", - "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", - "dependencies": { - "parent-module": "^1.0.0", - "resolve-from": "^4.0.0" - }, - "engines": { - "node": ">=6" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/imurmurhash": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", - "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", - "engines": { - "node": ">=0.8.19" - } - }, - "node_modules/inflight": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", - "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", - "dependencies": { - "once": "^1.3.0", - "wrappy": "1" - } - }, - "node_modules/inherits": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", - "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" - }, - "node_modules/internal-slot": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.5.tgz", - "integrity": "sha512-Y+R5hJrzs52QCG2laLn4udYVnxsfny9CpOhNhUvk/SSSVyF6T27FzRbF0sroPidSu3X8oEAkOn2K804mjpt6UQ==", - "dependencies": { - "get-intrinsic": "^1.2.0", - "has": "^1.0.3", - "side-channel": "^1.0.4" - }, - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/invariant": { - "version": "2.2.4", - "resolved": "https://registry.npmjs.org/invariant/-/invariant-2.2.4.tgz", - "integrity": "sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==", - "dependencies": { - "loose-envify": "^1.0.0" - } - }, - "node_modules/is-array-buffer": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/is-array-buffer/-/is-array-buffer-3.0.2.tgz", - "integrity": "sha512-y+FyyR/w8vfIRq4eQcM1EYgSTnmHXPqaF+IgzgraytCFq5Xh8lllDVmAZolPJiZttZLeFSINPYMaEJ7/vWUa1w==", - "dependencies": { - "call-bind": "^1.0.2", - "get-intrinsic": "^1.2.0", - "is-typed-array": "^1.1.10" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-async-function": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/is-async-function/-/is-async-function-2.0.0.tgz", - "integrity": "sha512-Y1JXKrfykRJGdlDwdKlLpLyMIiWqWvuSd17TvZk68PLAOGOoF4Xyav1z0Xhoi+gCYjZVeC5SI+hYFOfvXmGRCA==", - "dependencies": { - "has-tostringtag": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-bigint": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.4.tgz", - "integrity": "sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==", - "dependencies": { - "has-bigints": "^1.0.1" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-boolean-object": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.2.tgz", - "integrity": "sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==", - "dependencies": { - "call-bind": "^1.0.2", - "has-tostringtag": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-callable": { - "version": "1.2.7", - "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz", - "integrity": "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==", - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-core-module": { - "version": "2.13.0", - "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.13.0.tgz", - "integrity": "sha512-Z7dk6Qo8pOCp3l4tsX2C5ZVas4V+UxwQodwZhLopL91TX8UyyHEXafPcyoeeWuLrwzHcr3igO78wNLwHJHsMCQ==", - "dependencies": { - "has": "^1.0.3" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-date-object": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.5.tgz", - "integrity": "sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==", - "dependencies": { - "has-tostringtag": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-extglob": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", - "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-finalizationregistry": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-finalizationregistry/-/is-finalizationregistry-1.0.2.tgz", - "integrity": "sha512-0by5vtUJs8iFQb5TYUHHPudOR+qXYIMKtiUzvLIZITZUjknFmziyBJuLhVRc+Ds0dREFlskDNJKYIdIzu/9pfw==", - "dependencies": { - "call-bind": "^1.0.2" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-generator-function": { - "version": "1.0.10", - "resolved": "https://registry.npmjs.org/is-generator-function/-/is-generator-function-1.0.10.tgz", - "integrity": "sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A==", - "dependencies": { - "has-tostringtag": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-glob": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", - "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", - "dependencies": { - "is-extglob": "^2.1.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-map": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/is-map/-/is-map-2.0.2.tgz", - "integrity": "sha512-cOZFQQozTha1f4MxLFzlgKYPTyj26picdZTx82hbc/Xf4K/tZOOXSCkMvU4pKioRXGDLJRn0GM7Upe7kR721yg==", - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-negative-zero": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.2.tgz", - "integrity": "sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==", - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-number": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", - "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", - "engines": { - "node": ">=0.12.0" - } - }, - "node_modules/is-number-object": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.7.tgz", - "integrity": "sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==", - "dependencies": { - "has-tostringtag": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-path-inside": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz", - "integrity": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==", - "engines": { - "node": ">=8" - } - }, - "node_modules/is-regex": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz", - "integrity": "sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==", - "dependencies": { - "call-bind": "^1.0.2", - "has-tostringtag": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-set": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/is-set/-/is-set-2.0.2.tgz", - "integrity": "sha512-+2cnTEZeY5z/iXGbLhPrOAaK/Mau5k5eXq9j14CpRTftq0pAJu2MwVRSZhyZWBzx3o6X795Lz6Bpb6R0GKf37g==", - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-shared-array-buffer": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.2.tgz", - "integrity": "sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==", - "dependencies": { - "call-bind": "^1.0.2" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-string": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz", - "integrity": "sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==", - "dependencies": { - "has-tostringtag": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-symbol": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.4.tgz", - "integrity": "sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==", - "dependencies": { - "has-symbols": "^1.0.2" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-typed-array": { - "version": "1.1.12", - "resolved": "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.12.tgz", - "integrity": "sha512-Z14TF2JNG8Lss5/HMqt0//T9JeHXttXy5pH/DBU4vi98ozO2btxzq9MwYDZYnKwU8nRsz/+GVFVRDq3DkVuSPg==", - "dependencies": { - "which-typed-array": "^1.1.11" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-weakmap": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/is-weakmap/-/is-weakmap-2.0.1.tgz", - "integrity": "sha512-NSBR4kH5oVj1Uwvv970ruUkCV7O1mzgVFO4/rev2cLRda9Tm9HrL70ZPut4rOHgY0FNrUu9BCbXA2sdQ+x0chA==", - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-weakref": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-weakref/-/is-weakref-1.0.2.tgz", - "integrity": "sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==", - "dependencies": { - "call-bind": "^1.0.2" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-weakset": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/is-weakset/-/is-weakset-2.0.2.tgz", - "integrity": "sha512-t2yVvttHkQktwnNNmBQ98AhENLdPUTDTE21uPqAQ0ARwQfGeQKRVS0NNurH7bTf7RrvcVn1OOge45CnBeHCSmg==", - "dependencies": { - "call-bind": "^1.0.2", - "get-intrinsic": "^1.1.1" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/isarray": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz", - "integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==" - }, - "node_modules/isexe": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", - "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==" - }, - "node_modules/iterator.prototype": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/iterator.prototype/-/iterator.prototype-1.1.1.tgz", - "integrity": "sha512-9E+nePc8C9cnQldmNl6bgpTY6zI4OPRZd97fhJ/iVZ1GifIUDVV5F6x1nEDqpe8KaMEZGT4xgrwKQDxXnjOIZQ==", - "dependencies": { - "define-properties": "^1.2.0", - "get-intrinsic": "^1.2.1", - "has-symbols": "^1.0.3", - "reflect.getprototypeof": "^1.0.3" - } - }, - "node_modules/js-tokens": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", - "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==" - }, - "node_modules/js-yaml": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", - "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", - "dependencies": { - "argparse": "^2.0.1" - }, - "bin": { - "js-yaml": "bin/js-yaml.js" - } - }, - "node_modules/json-buffer": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz", - "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==" - }, - "node_modules/json-schema-traverse": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", - "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==" - }, - "node_modules/json-stable-stringify-without-jsonify": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", - "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==" - }, - "node_modules/json5": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.2.tgz", - "integrity": "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==", - "dependencies": { - "minimist": "^1.2.0" - }, - "bin": { - "json5": "lib/cli.js" - } - }, - "node_modules/jsx-ast-utils": { - "version": "3.3.5", - "resolved": "https://registry.npmjs.org/jsx-ast-utils/-/jsx-ast-utils-3.3.5.tgz", - "integrity": "sha512-ZZow9HBI5O6EPgSJLUb8n2NKgmVWTwCvHGwFuJlMjvLFqlGG6pjirPhtdsseaLZjSibD8eegzmYpUZwoIlj2cQ==", - "dependencies": { - "array-includes": "^3.1.6", - "array.prototype.flat": "^1.3.1", - "object.assign": "^4.1.4", - "object.values": "^1.1.6" - }, - "engines": { - "node": ">=4.0" - } - }, - "node_modules/keyv": { - "version": "4.5.3", - "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.3.tgz", - "integrity": "sha512-QCiSav9WaX1PgETJ+SpNnx2PRRapJ/oRSXM4VO5OGYGSjrxbKPVFVhB3l2OCbLCk329N8qyAtsJjSjvVBWzEug==", - "dependencies": { - "json-buffer": "3.0.1" - } - }, - "node_modules/language-subtag-registry": { - "version": "0.3.22", - "resolved": "https://registry.npmjs.org/language-subtag-registry/-/language-subtag-registry-0.3.22.tgz", - "integrity": "sha512-tN0MCzyWnoz/4nHS6uxdlFWoUZT7ABptwKPQ52Ea7URk6vll88bWBVhodtnlfEuCcKWNGoc+uGbw1cwa9IKh/w==" - }, - "node_modules/language-tags": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/language-tags/-/language-tags-1.0.5.tgz", - "integrity": "sha512-qJhlO9cGXi6hBGKoxEG/sKZDAHD5Hnu9Hs4WbOY3pCWXDhw0N8x1NenNzm2EnNLkLkk7J2SdxAkDSbb6ftT+UQ==", - "dependencies": { - "language-subtag-registry": "~0.3.2" - } - }, - "node_modules/levn": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", - "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", - "dependencies": { - "prelude-ls": "^1.2.1", - "type-check": "~0.4.0" - }, - "engines": { - "node": ">= 0.8.0" - } - }, - "node_modules/locate-path": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", - "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", - "dependencies": { - "p-locate": "^5.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/lodash.merge": { - "version": "4.6.2", - "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", - "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==" - }, - "node_modules/loose-envify": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz", - "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==", - "dependencies": { - "js-tokens": "^3.0.0 || ^4.0.0" - }, - "bin": { - "loose-envify": "cli.js" - } - }, - "node_modules/lru-cache": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", - "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", - "dependencies": { - "yallist": "^4.0.0" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/merge2": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", - "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", - "engines": { - "node": ">= 8" - } - }, - "node_modules/micromatch": { - "version": "4.0.5", - "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", - "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", - "dependencies": { - "braces": "^3.0.2", - "picomatch": "^2.3.1" - }, - "engines": { - "node": ">=8.6" - } - }, - "node_modules/minimatch": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", - "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", - "dependencies": { - "brace-expansion": "^1.1.7" - }, - "engines": { - "node": "*" - } - }, - "node_modules/minimist": { - "version": "1.2.8", - "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", - "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==", - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/ms": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", - "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" - }, - "node_modules/nanoid": { - "version": "3.3.6", - "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.6.tgz", - "integrity": "sha512-BGcqMMJuToF7i1rt+2PWSNVnWIkGCU78jBG3RxO/bZlnZPK2Cmi2QaffxGO/2RvWi9sL+FAiRiXMgsyxQ1DIDA==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/ai" - } - ], - "bin": { - "nanoid": "bin/nanoid.cjs" - }, - "engines": { - "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" - } - }, - "node_modules/natural-compare": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", - "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==" - }, - "node_modules/next": { - "version": "13.4.19", - "resolved": "https://registry.npmjs.org/next/-/next-13.4.19.tgz", - "integrity": "sha512-HuPSzzAbJ1T4BD8e0bs6B9C1kWQ6gv8ykZoRWs5AQoiIuqbGHHdQO7Ljuvg05Q0Z24E2ABozHe6FxDvI6HfyAw==", - "dependencies": { - "@next/env": "13.4.19", - "@swc/helpers": "0.5.1", - "busboy": "1.6.0", - "caniuse-lite": "^1.0.30001406", - "postcss": "8.4.14", - "styled-jsx": "5.1.1", - "watchpack": "2.4.0", - "zod": "3.21.4" - }, - "bin": { - "next": "dist/bin/next" - }, - "engines": { - "node": ">=16.8.0" - }, - "optionalDependencies": { - "@next/swc-darwin-arm64": "13.4.19", - "@next/swc-darwin-x64": "13.4.19", - "@next/swc-linux-arm64-gnu": "13.4.19", - "@next/swc-linux-arm64-musl": "13.4.19", - "@next/swc-linux-x64-gnu": "13.4.19", - "@next/swc-linux-x64-musl": "13.4.19", - "@next/swc-win32-arm64-msvc": "13.4.19", - "@next/swc-win32-ia32-msvc": "13.4.19", - "@next/swc-win32-x64-msvc": "13.4.19" - }, - "peerDependencies": { - "@opentelemetry/api": "^1.1.0", - "react": "^18.2.0", - "react-dom": "^18.2.0", - "sass": "^1.3.0" - }, - "peerDependenciesMeta": { - "@opentelemetry/api": { - "optional": true - }, - "sass": { - "optional": true - } - } - }, - "node_modules/object-assign": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", - "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/object-inspect": { - "version": "1.12.3", - "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.12.3.tgz", - "integrity": "sha512-geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g==", - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/object-keys": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", - "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==", - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/object.assign": { - "version": "4.1.4", - "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.4.tgz", - "integrity": "sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ==", - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.4", - "has-symbols": "^1.0.3", - "object-keys": "^1.1.1" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/object.entries": { - "version": "1.1.7", - "resolved": "https://registry.npmjs.org/object.entries/-/object.entries-1.1.7.tgz", - "integrity": "sha512-jCBs/0plmPsOnrKAfFQXRG2NFjlhZgjjcBLSmTnEhU8U6vVTsVe8ANeQJCHTl3gSsI4J+0emOoCgoKlmQPMgmA==", - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.2.0", - "es-abstract": "^1.22.1" - }, - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/object.fromentries": { - "version": "2.0.7", - "resolved": "https://registry.npmjs.org/object.fromentries/-/object.fromentries-2.0.7.tgz", - "integrity": "sha512-UPbPHML6sL8PI/mOqPwsH4G6iyXcCGzLin8KvEPenOZN5lpCNBZZQ+V62vdjB1mQHrmqGQt5/OJzemUA+KJmEA==", - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.2.0", - "es-abstract": "^1.22.1" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/object.groupby": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/object.groupby/-/object.groupby-1.0.1.tgz", - "integrity": "sha512-HqaQtqLnp/8Bn4GL16cj+CUYbnpe1bh0TtEaWvybszDG4tgxCJuRpV8VGuvNaI1fAnI4lUJzDG55MXcOH4JZcQ==", - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.2.0", - "es-abstract": "^1.22.1", - "get-intrinsic": "^1.2.1" - } - }, - "node_modules/object.hasown": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/object.hasown/-/object.hasown-1.1.3.tgz", - "integrity": "sha512-fFI4VcYpRHvSLXxP7yiZOMAd331cPfd2p7PFDVbgUsYOfCT3tICVqXWngbjr4m49OvsBwUBQ6O2uQoJvy3RexA==", - "dependencies": { - "define-properties": "^1.2.0", - "es-abstract": "^1.22.1" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/object.values": { - "version": "1.1.7", - "resolved": "https://registry.npmjs.org/object.values/-/object.values-1.1.7.tgz", - "integrity": "sha512-aU6xnDFYT3x17e/f0IiiwlGPTy2jzMySGfUB4fq6z7CV8l85CWHDk5ErhyhpfDHhrOMwGFhSQkhMGHaIotA6Ng==", - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.2.0", - "es-abstract": "^1.22.1" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/once": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", - "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", - "dependencies": { - "wrappy": "1" - } - }, - "node_modules/optionator": { - "version": "0.9.3", - "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.3.tgz", - "integrity": "sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg==", - "dependencies": { - "@aashutoshrathi/word-wrap": "^1.2.3", - "deep-is": "^0.1.3", - "fast-levenshtein": "^2.0.6", - "levn": "^0.4.1", - "prelude-ls": "^1.2.1", - "type-check": "^0.4.0" - }, - "engines": { - "node": ">= 0.8.0" - } - }, - "node_modules/p-limit": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", - "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", - "dependencies": { - "yocto-queue": "^0.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/p-locate": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", - "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", - "dependencies": { - "p-limit": "^3.0.2" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/parent-module": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", - "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", - "dependencies": { - "callsites": "^3.0.0" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/path-exists": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", - "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", - "engines": { - "node": ">=8" - } - }, - "node_modules/path-is-absolute": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", - "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/path-key": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", - "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", - "engines": { - "node": ">=8" - } - }, - "node_modules/path-parse": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", - "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==" - }, - "node_modules/path-type": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", - "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==", - "engines": { - "node": ">=8" - } - }, - "node_modules/picocolors": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", - "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==" - }, - "node_modules/picomatch": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", - "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", - "engines": { - "node": ">=8.6" - }, - "funding": { - "url": "https://github.com/sponsors/jonschlinkert" - } - }, - "node_modules/postcss": { - "version": "8.4.14", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.14.tgz", - "integrity": "sha512-E398TUmfAYFPBSdzgeieK2Y1+1cpdxJx8yXbK/m57nRhKSmk1GB2tO4lbLBtlkfPQTDKfe4Xqv1ASWPpayPEig==", - "funding": [ - { - "type": "opencollective", - "url": "https://opencollective.com/postcss/" - }, - { - "type": "tidelift", - "url": "https://tidelift.com/funding/github/npm/postcss" - } - ], - "dependencies": { - "nanoid": "^3.3.4", - "picocolors": "^1.0.0", - "source-map-js": "^1.0.2" - }, - "engines": { - "node": "^10 || ^12 || >=14" - } - }, - "node_modules/prelude-ls": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", - "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", - "engines": { - "node": ">= 0.8.0" - } - }, - "node_modules/prop-types": { - "version": "15.8.1", - "resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.8.1.tgz", - "integrity": "sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==", - "dependencies": { - "loose-envify": "^1.4.0", - "object-assign": "^4.1.1", - "react-is": "^16.13.1" - } - }, - "node_modules/prop-types-extra": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/prop-types-extra/-/prop-types-extra-1.1.1.tgz", - "integrity": "sha512-59+AHNnHYCdiC+vMwY52WmvP5dM3QLeoumYuEyceQDi9aEhtwN9zIQ2ZNo25sMyXnbh32h+P1ezDsUpUH3JAew==", - "dependencies": { - "react-is": "^16.3.2", - "warning": "^4.0.0" - }, - "peerDependencies": { - "react": ">=0.14.0" - } - }, - "node_modules/punycode": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.0.tgz", - "integrity": "sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA==", - "engines": { - "node": ">=6" - } - }, - "node_modules/queue-microtask": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", - "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ] - }, - "node_modules/react": { - "version": "18.2.0", - "resolved": "https://registry.npmjs.org/react/-/react-18.2.0.tgz", - "integrity": "sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==", - "dependencies": { - "loose-envify": "^1.1.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/react-bootstrap": { - "version": "2.8.0", - "resolved": "https://registry.npmjs.org/react-bootstrap/-/react-bootstrap-2.8.0.tgz", - "integrity": "sha512-e/aNtxl0Z2ozrIaR82jr6Zz7ss9GSoaXpQaxmvtDUsTZIq/XalkduR/ZXP6vbQHz2T4syvjA+4FbtwELxxmpww==", - "dependencies": { - "@babel/runtime": "^7.21.0", - "@restart/hooks": "^0.4.9", - "@restart/ui": "^1.6.3", - "@types/react-transition-group": "^4.4.5", - "classnames": "^2.3.2", - "dom-helpers": "^5.2.1", - "invariant": "^2.2.4", - "prop-types": "^15.8.1", - "prop-types-extra": "^1.1.0", - "react-transition-group": "^4.4.5", - "uncontrollable": "^7.2.1", - "warning": "^4.0.3" - }, - "peerDependencies": { - "@types/react": ">=16.14.8", - "react": ">=16.14.0", - "react-dom": ">=16.14.0" - }, - "peerDependenciesMeta": { - "@types/react": { - "optional": true - } - } - }, - "node_modules/react-dom": { - "version": "18.2.0", - "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-18.2.0.tgz", - "integrity": "sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g==", - "dependencies": { - "loose-envify": "^1.1.0", - "scheduler": "^0.23.0" - }, - "peerDependencies": { - "react": "^18.2.0" - } - }, - "node_modules/react-is": { - "version": "16.13.1", - "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz", - "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==" - }, - "node_modules/react-lifecycles-compat": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/react-lifecycles-compat/-/react-lifecycles-compat-3.0.4.tgz", - "integrity": "sha512-fBASbA6LnOU9dOU2eW7aQ8xmYBSXUIWr+UmF9b1efZBazGNO+rcXT/icdKnYm2pTwcRylVUYwW7H1PHfLekVzA==" - }, - "node_modules/react-transition-group": { - "version": "4.4.5", - "resolved": "https://registry.npmjs.org/react-transition-group/-/react-transition-group-4.4.5.tgz", - "integrity": "sha512-pZcd1MCJoiKiBR2NRxeCRg13uCXbydPnmB4EOeRrY7480qNWO8IIgQG6zlDkm6uRMsURXPuKq0GWtiM59a5Q6g==", - "dependencies": { - "@babel/runtime": "^7.5.5", - "dom-helpers": "^5.0.1", - "loose-envify": "^1.4.0", - "prop-types": "^15.6.2" - }, - "peerDependencies": { - "react": ">=16.6.0", - "react-dom": ">=16.6.0" - } - }, - "node_modules/reflect.getprototypeof": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/reflect.getprototypeof/-/reflect.getprototypeof-1.0.4.tgz", - "integrity": "sha512-ECkTw8TmJwW60lOTR+ZkODISW6RQ8+2CL3COqtiJKLd6MmB45hN51HprHFziKLGkAuTGQhBb91V8cy+KHlaCjw==", - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.2.0", - "es-abstract": "^1.22.1", - "get-intrinsic": "^1.2.1", - "globalthis": "^1.0.3", - "which-builtin-type": "^1.1.3" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/regenerator-runtime": { - "version": "0.14.0", - "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.14.0.tgz", - "integrity": "sha512-srw17NI0TUWHuGa5CFGGmhfNIeja30WMBfbslPNhf6JrqQlLN5gcrvig1oqPxiVaXb0oW0XRKtH6Nngs5lKCIA==" - }, - "node_modules/regexp.prototype.flags": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.5.0.tgz", - "integrity": "sha512-0SutC3pNudRKgquxGoRGIz946MZVHqbNfPjBdxeOhBrdgDKlRoXmYLQN9xRbrR09ZXWeGAdPuif7egofn6v5LA==", - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.2.0", - "functions-have-names": "^1.2.3" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/resolve": { - "version": "1.22.4", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.4.tgz", - "integrity": "sha512-PXNdCiPqDqeUou+w1C2eTQbNfxKSuMxqTCuvlmmMsk1NWHL5fRrhY6Pl0qEYYc6+QqGClco1Qj8XnjPego4wfg==", - "dependencies": { - "is-core-module": "^2.13.0", - "path-parse": "^1.0.7", - "supports-preserve-symlinks-flag": "^1.0.0" - }, - "bin": { - "resolve": "bin/resolve" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/resolve-from": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", - "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", - "engines": { - "node": ">=4" - } - }, - "node_modules/resolve-pkg-maps": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/resolve-pkg-maps/-/resolve-pkg-maps-1.0.0.tgz", - "integrity": "sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==", - "funding": { - "url": "https://github.com/privatenumber/resolve-pkg-maps?sponsor=1" - } - }, - "node_modules/reusify": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", - "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", - "engines": { - "iojs": ">=1.0.0", - "node": ">=0.10.0" - } - }, - "node_modules/rimraf": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", - "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", - "dependencies": { - "glob": "^7.1.3" - }, - "bin": { - "rimraf": "bin.js" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/run-parallel": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", - "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ], - "dependencies": { - "queue-microtask": "^1.2.2" - } - }, - "node_modules/safe-array-concat": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/safe-array-concat/-/safe-array-concat-1.0.1.tgz", - "integrity": "sha512-6XbUAseYE2KtOuGueyeobCySj9L4+66Tn6KQMOPQJrAJEowYKW/YR/MGJZl7FdydUdaFu4LYyDZjxf4/Nmo23Q==", - "dependencies": { - "call-bind": "^1.0.2", - "get-intrinsic": "^1.2.1", - "has-symbols": "^1.0.3", - "isarray": "^2.0.5" - }, - "engines": { - "node": ">=0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/safe-regex-test": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/safe-regex-test/-/safe-regex-test-1.0.0.tgz", - "integrity": "sha512-JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA==", - "dependencies": { - "call-bind": "^1.0.2", - "get-intrinsic": "^1.1.3", - "is-regex": "^1.1.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/scheduler": { - "version": "0.23.0", - "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.23.0.tgz", - "integrity": "sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw==", - "dependencies": { - "loose-envify": "^1.1.0" - } - }, - "node_modules/semver": { - "version": "7.5.4", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", - "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", - "dependencies": { - "lru-cache": "^6.0.0" - }, - "bin": { - "semver": "bin/semver.js" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/shebang-command": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", - "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", - "dependencies": { - "shebang-regex": "^3.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/shebang-regex": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", - "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", - "engines": { - "node": ">=8" - } - }, - "node_modules/side-channel": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz", - "integrity": "sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==", - "dependencies": { - "call-bind": "^1.0.0", - "get-intrinsic": "^1.0.2", - "object-inspect": "^1.9.0" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/slash": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", - "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", - "engines": { - "node": ">=8" - } - }, - "node_modules/source-map-js": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.0.2.tgz", - "integrity": "sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/streamsearch": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/streamsearch/-/streamsearch-1.1.0.tgz", - "integrity": "sha512-Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg==", - "engines": { - "node": ">=10.0.0" - } - }, - "node_modules/string.prototype.matchall": { - "version": "4.0.9", - "resolved": "https://registry.npmjs.org/string.prototype.matchall/-/string.prototype.matchall-4.0.9.tgz", - "integrity": "sha512-6i5hL3MqG/K2G43mWXWgP+qizFW/QH/7kCNN13JrJS5q48FN5IKksLDscexKP3dnmB6cdm9jlNgAsWNLpSykmA==", - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.2.0", - "es-abstract": "^1.22.1", - "get-intrinsic": "^1.2.1", - "has-symbols": "^1.0.3", - "internal-slot": "^1.0.5", - "regexp.prototype.flags": "^1.5.0", - "side-channel": "^1.0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/string.prototype.trim": { - "version": "1.2.8", - "resolved": "https://registry.npmjs.org/string.prototype.trim/-/string.prototype.trim-1.2.8.tgz", - "integrity": "sha512-lfjY4HcixfQXOfaqCvcBuOIapyaroTXhbkfJN3gcB1OtyupngWK4sEET9Knd0cXd28kTUqu/kHoV4HKSJdnjiQ==", - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.2.0", - "es-abstract": "^1.22.1" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/string.prototype.trimend": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.7.tgz", - "integrity": "sha512-Ni79DqeB72ZFq1uH/L6zJ+DKZTkOtPIHovb3YZHQViE+HDouuU4mBrLOLDn5Dde3RF8qw5qVETEjhu9locMLvA==", - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.2.0", - "es-abstract": "^1.22.1" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/string.prototype.trimstart": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.7.tgz", - "integrity": "sha512-NGhtDFu3jCEm7B4Fy0DpLewdJQOZcQ0rGbwQ/+stjnrp2i+rlKeCvos9hOIeCmqwratM47OBxY7uFZzjxHXmrg==", - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.2.0", - "es-abstract": "^1.22.1" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/strip-ansi": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", - "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", - "dependencies": { - "ansi-regex": "^5.0.1" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/strip-bom": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", - "integrity": "sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==", - "engines": { - "node": ">=4" - } - }, - "node_modules/strip-json-comments": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", - "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/styled-jsx": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/styled-jsx/-/styled-jsx-5.1.1.tgz", - "integrity": "sha512-pW7uC1l4mBZ8ugbiZrcIsiIvVx1UmTfw7UkC3Um2tmfUq9Bhk8IiyEIPl6F8agHgjzku6j0xQEZbfA5uSgSaCw==", - "dependencies": { - "client-only": "0.0.1" - }, - "engines": { - "node": ">= 12.0.0" - }, - "peerDependencies": { - "react": ">= 16.8.0 || 17.x.x || ^18.0.0-0" - }, - "peerDependenciesMeta": { - "@babel/core": { - "optional": true - }, - "babel-plugin-macros": { - "optional": true - } - } - }, - "node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/supports-preserve-symlinks-flag": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", - "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/tapable": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/tapable/-/tapable-2.2.1.tgz", - "integrity": "sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==", - "engines": { - "node": ">=6" - } - }, - "node_modules/text-table": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", - "integrity": "sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==" - }, - "node_modules/to-regex-range": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", - "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", - "dependencies": { - "is-number": "^7.0.0" - }, - "engines": { - "node": ">=8.0" - } - }, - "node_modules/ts-api-utils": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/ts-api-utils/-/ts-api-utils-1.0.3.tgz", - "integrity": "sha512-wNMeqtMz5NtwpT/UZGY5alT+VoKdSsOOP/kqHFcUW1P/VRhH2wJ48+DN2WwUliNbQ976ETwDL0Ifd2VVvgonvg==", - "engines": { - "node": ">=16.13.0" - }, - "peerDependencies": { - "typescript": ">=4.2.0" - } - }, - "node_modules/tsconfig-paths": { - "version": "3.14.2", - "resolved": "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.14.2.tgz", - "integrity": "sha512-o/9iXgCYc5L/JxCHPe3Hvh8Q/2xm5Z+p18PESBU6Ff33695QnCHBEjcytY2q19ua7Mbl/DavtBOLq+oG0RCL+g==", - "dependencies": { - "@types/json5": "^0.0.29", - "json5": "^1.0.2", - "minimist": "^1.2.6", - "strip-bom": "^3.0.0" - } - }, - "node_modules/tslib": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", - "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==" - }, - "node_modules/type-check": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", - "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", - "dependencies": { - "prelude-ls": "^1.2.1" - }, - "engines": { - "node": ">= 0.8.0" - } - }, - "node_modules/type-fest": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", - "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/typed-array-buffer": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/typed-array-buffer/-/typed-array-buffer-1.0.0.tgz", - "integrity": "sha512-Y8KTSIglk9OZEr8zywiIHG/kmQ7KWyjseXs1CbSo8vC42w7hg2HgYTxSWwP0+is7bWDc1H+Fo026CpHFwm8tkw==", - "dependencies": { - "call-bind": "^1.0.2", - "get-intrinsic": "^1.2.1", - "is-typed-array": "^1.1.10" - }, - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/typed-array-byte-length": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/typed-array-byte-length/-/typed-array-byte-length-1.0.0.tgz", - "integrity": "sha512-Or/+kvLxNpeQ9DtSydonMxCx+9ZXOswtwJn17SNLvhptaXYDJvkFFP5zbfU/uLmvnBJlI4yrnXRxpdWH/M5tNA==", - "dependencies": { - "call-bind": "^1.0.2", - "for-each": "^0.3.3", - "has-proto": "^1.0.1", - "is-typed-array": "^1.1.10" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/typed-array-byte-offset": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/typed-array-byte-offset/-/typed-array-byte-offset-1.0.0.tgz", - "integrity": "sha512-RD97prjEt9EL8YgAgpOkf3O4IF9lhJFr9g0htQkm0rchFp/Vx7LW5Q8fSXXub7BXAODyUQohRMyOc3faCPd0hg==", - "dependencies": { - "available-typed-arrays": "^1.0.5", - "call-bind": "^1.0.2", - "for-each": "^0.3.3", - "has-proto": "^1.0.1", - "is-typed-array": "^1.1.10" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/typed-array-length": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/typed-array-length/-/typed-array-length-1.0.4.tgz", - "integrity": "sha512-KjZypGq+I/H7HI5HlOoGHkWUUGq+Q0TPhQurLbyrVrvnKTBgzLhIJ7j6J/XTQOi0d1RjyZ0wdas8bKs2p0x3Ng==", - "dependencies": { - "call-bind": "^1.0.2", - "for-each": "^0.3.3", - "is-typed-array": "^1.1.9" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/typescript": { - "version": "5.2.2", - "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.2.2.tgz", - "integrity": "sha512-mI4WrpHsbCIcwT9cF4FZvr80QUeKvsUsUvKDoR+X/7XHQH98xYD8YHZg7ANtz2GtZt/CBq2QJ0thkGJMHfqc1w==", - "bin": { - "tsc": "bin/tsc", - "tsserver": "bin/tsserver" - }, - "engines": { - "node": ">=14.17" - } - }, - "node_modules/unbox-primitive": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.2.tgz", - "integrity": "sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==", - "dependencies": { - "call-bind": "^1.0.2", - "has-bigints": "^1.0.2", - "has-symbols": "^1.0.3", - "which-boxed-primitive": "^1.0.2" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/uncontrollable": { - "version": "7.2.1", - "resolved": "https://registry.npmjs.org/uncontrollable/-/uncontrollable-7.2.1.tgz", - "integrity": "sha512-svtcfoTADIB0nT9nltgjujTi7BzVmwjZClOmskKu/E8FW9BXzg9os8OLr4f8Dlnk0rYWJIWr4wv9eKUXiQvQwQ==", - "dependencies": { - "@babel/runtime": "^7.6.3", - "@types/react": ">=16.9.11", - "invariant": "^2.2.4", - "react-lifecycles-compat": "^3.0.4" - }, - "peerDependencies": { - "react": ">=15.0.0" - } - }, - "node_modules/uri-js": { - "version": "4.4.1", - "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", - "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", - "dependencies": { - "punycode": "^2.1.0" - } - }, - "node_modules/warning": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/warning/-/warning-4.0.3.tgz", - "integrity": "sha512-rpJyN222KWIvHJ/F53XSZv0Zl/accqHR8et1kpaMTD/fLCRxtV8iX8czMzY7sVZupTI3zcUTg8eycS2kNF9l6w==", - "dependencies": { - "loose-envify": "^1.0.0" - } - }, - "node_modules/watchpack": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-2.4.0.tgz", - "integrity": "sha512-Lcvm7MGST/4fup+ifyKi2hjyIAwcdI4HRgtvTpIUxBRhB+RFtUh8XtDOxUfctVCnhVi+QQj49i91OyvzkJl6cg==", - "dependencies": { - "glob-to-regexp": "^0.4.1", - "graceful-fs": "^4.1.2" - }, - "engines": { - "node": ">=10.13.0" - } - }, - "node_modules/which": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", - "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", - "dependencies": { - "isexe": "^2.0.0" - }, - "bin": { - "node-which": "bin/node-which" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/which-boxed-primitive": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz", - "integrity": "sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==", - "dependencies": { - "is-bigint": "^1.0.1", - "is-boolean-object": "^1.1.0", - "is-number-object": "^1.0.4", - "is-string": "^1.0.5", - "is-symbol": "^1.0.3" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/which-builtin-type": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/which-builtin-type/-/which-builtin-type-1.1.3.tgz", - "integrity": "sha512-YmjsSMDBYsM1CaFiayOVT06+KJeXf0o5M/CAd4o1lTadFAtacTUM49zoYxr/oroopFDfhvN6iEcBxUyc3gvKmw==", - "dependencies": { - "function.prototype.name": "^1.1.5", - "has-tostringtag": "^1.0.0", - "is-async-function": "^2.0.0", - "is-date-object": "^1.0.5", - "is-finalizationregistry": "^1.0.2", - "is-generator-function": "^1.0.10", - "is-regex": "^1.1.4", - "is-weakref": "^1.0.2", - "isarray": "^2.0.5", - "which-boxed-primitive": "^1.0.2", - "which-collection": "^1.0.1", - "which-typed-array": "^1.1.9" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/which-collection": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/which-collection/-/which-collection-1.0.1.tgz", - "integrity": "sha512-W8xeTUwaln8i3K/cY1nGXzdnVZlidBcagyNFtBdD5kxnb4TvGKR7FfSIS3mYpwWS1QUCutfKz8IY8RjftB0+1A==", - "dependencies": { - "is-map": "^2.0.1", - "is-set": "^2.0.1", - "is-weakmap": "^2.0.1", - "is-weakset": "^2.0.1" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/which-typed-array": { - "version": "1.1.11", - "resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.11.tgz", - "integrity": "sha512-qe9UWWpkeG5yzZ0tNYxDmd7vo58HDBc39mZ0xWWpolAGADdFOzkfamWLDxkOWcvHQKVmdTyQdLD4NOfjLWTKew==", - "dependencies": { - "available-typed-arrays": "^1.0.5", - "call-bind": "^1.0.2", - "for-each": "^0.3.3", - "gopd": "^1.0.1", - "has-tostringtag": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/wrappy": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", - "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==" - }, - "node_modules/yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==" - }, - "node_modules/yocto-queue": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", - "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/zod": { - "version": "3.21.4", - "resolved": "https://registry.npmjs.org/zod/-/zod-3.21.4.tgz", - "integrity": "sha512-m46AKbrzKVzOzs/DZgVnG5H55N1sv1M8qZU3A8RIKbs3mrACDNeIOeilDymVb2HdmP8uwshOCF4uJ8uM9rCqJw==", - "funding": { - "url": "https://github.com/sponsors/colinhacks" - } - } - }, - "dependencies": { - "@aashutoshrathi/word-wrap": { - "version": "1.2.6", - "resolved": "https://registry.npmjs.org/@aashutoshrathi/word-wrap/-/word-wrap-1.2.6.tgz", - "integrity": "sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==" - }, - "@babel/runtime": { - "version": "7.22.15", - "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.22.15.tgz", - "integrity": "sha512-T0O+aa+4w0u06iNmapipJXMV4HoUir03hpx3/YqXXhu9xim3w+dVphjFWl1OH8NbZHw5Lbm9k45drDkgq2VNNA==", - "requires": { - "regenerator-runtime": "^0.14.0" - } - }, - "@eslint-community/eslint-utils": { - "version": "4.4.0", - "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.4.0.tgz", - "integrity": "sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==", - "requires": { - "eslint-visitor-keys": "^3.3.0" - } - }, - "@eslint-community/regexpp": { - "version": "4.8.0", - "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.8.0.tgz", - "integrity": "sha512-JylOEEzDiOryeUnFbQz+oViCXS0KsvR1mvHkoMiu5+UiBvy+RYX7tzlIIIEstF/gVa2tj9AQXk3dgnxv6KxhFg==" - }, - "@eslint/eslintrc": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-2.1.2.tgz", - "integrity": "sha512-+wvgpDsrB1YqAMdEUCcnTlpfVBH7Vqn6A/NT3D8WVXFIaKMlErPIZT3oCIAVCOtarRpMtelZLqJeU3t7WY6X6g==", - "requires": { - "ajv": "^6.12.4", - "debug": "^4.3.2", - "espree": "^9.6.0", - "globals": "^13.19.0", - "ignore": "^5.2.0", - "import-fresh": "^3.2.1", - "js-yaml": "^4.1.0", - "minimatch": "^3.1.2", - "strip-json-comments": "^3.1.1" - } - }, - "@eslint/js": { - "version": "8.49.0", - "resolved": "https://registry.npmjs.org/@eslint/js/-/js-8.49.0.tgz", - "integrity": "sha512-1S8uAY/MTJqVx0SC4epBq+N2yhuwtNwLbJYNZyhL2pO1ZVKn5HFXav5T41Ryzy9K9V7ZId2JB2oy/W4aCd9/2w==" - }, - "@humanwhocodes/config-array": { - "version": "0.11.11", - "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.11.tgz", - "integrity": "sha512-N2brEuAadi0CcdeMXUkhbZB84eskAc8MEX1By6qEchoVywSgXPIjou4rYsl0V3Hj0ZnuGycGCjdNgockbzeWNA==", - "requires": { - "@humanwhocodes/object-schema": "^1.2.1", - "debug": "^4.1.1", - "minimatch": "^3.0.5" - } - }, - "@humanwhocodes/module-importer": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz", - "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==" - }, - "@humanwhocodes/object-schema": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz", - "integrity": "sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==" - }, - "@next/env": { - "version": "13.4.19", - "resolved": "https://registry.npmjs.org/@next/env/-/env-13.4.19.tgz", - "integrity": "sha512-FsAT5x0jF2kkhNkKkukhsyYOrRqtSxrEhfliniIq0bwWbuXLgyt3Gv0Ml+b91XwjwArmuP7NxCiGd++GGKdNMQ==" - }, - "@next/eslint-plugin-next": { - "version": "13.4.19", - "resolved": "https://registry.npmjs.org/@next/eslint-plugin-next/-/eslint-plugin-next-13.4.19.tgz", - "integrity": "sha512-N/O+zGb6wZQdwu6atMZHbR7T9Np5SUFUjZqCbj0sXm+MwQO35M8TazVB4otm87GkXYs2l6OPwARd3/PUWhZBVQ==", - "requires": { - "glob": "7.1.7" - } - }, - "@next/swc-darwin-arm64": { - "version": "13.4.19", - "resolved": "https://registry.npmjs.org/@next/swc-darwin-arm64/-/swc-darwin-arm64-13.4.19.tgz", - "integrity": "sha512-vv1qrjXeGbuF2mOkhkdxMDtv9np7W4mcBtaDnHU+yJG+bBwa6rYsYSCI/9Xm5+TuF5SbZbrWO6G1NfTh1TMjvQ==", - "optional": true - }, - "@next/swc-darwin-x64": { - "version": "13.4.19", - "resolved": "https://registry.npmjs.org/@next/swc-darwin-x64/-/swc-darwin-x64-13.4.19.tgz", - "integrity": "sha512-jyzO6wwYhx6F+7gD8ddZfuqO4TtpJdw3wyOduR4fxTUCm3aLw7YmHGYNjS0xRSYGAkLpBkH1E0RcelyId6lNsw==", - "optional": true - }, - "@next/swc-linux-arm64-gnu": { - "version": "13.4.19", - "resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-gnu/-/swc-linux-arm64-gnu-13.4.19.tgz", - "integrity": "sha512-vdlnIlaAEh6H+G6HrKZB9c2zJKnpPVKnA6LBwjwT2BTjxI7e0Hx30+FoWCgi50e+YO49p6oPOtesP9mXDRiiUg==", - "optional": true - }, - "@next/swc-linux-arm64-musl": { - "version": "13.4.19", - "resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-musl/-/swc-linux-arm64-musl-13.4.19.tgz", - "integrity": "sha512-aU0HkH2XPgxqrbNRBFb3si9Ahu/CpaR5RPmN2s9GiM9qJCiBBlZtRTiEca+DC+xRPyCThTtWYgxjWHgU7ZkyvA==", - "optional": true - }, - "@next/swc-linux-x64-gnu": { - "version": "13.4.19", - "resolved": "https://registry.npmjs.org/@next/swc-linux-x64-gnu/-/swc-linux-x64-gnu-13.4.19.tgz", - "integrity": "sha512-htwOEagMa/CXNykFFeAHHvMJeqZfNQEoQvHfsA4wgg5QqGNqD5soeCer4oGlCol6NGUxknrQO6VEustcv+Md+g==", - "optional": true - }, - "@next/swc-linux-x64-musl": { - "version": "13.4.19", - "resolved": "https://registry.npmjs.org/@next/swc-linux-x64-musl/-/swc-linux-x64-musl-13.4.19.tgz", - "integrity": "sha512-4Gj4vvtbK1JH8ApWTT214b3GwUh9EKKQjY41hH/t+u55Knxi/0wesMzwQRhppK6Ddalhu0TEttbiJ+wRcoEj5Q==", - "optional": true - }, - "@next/swc-win32-arm64-msvc": { - "version": "13.4.19", - "resolved": "https://registry.npmjs.org/@next/swc-win32-arm64-msvc/-/swc-win32-arm64-msvc-13.4.19.tgz", - "integrity": "sha512-bUfDevQK4NsIAHXs3/JNgnvEY+LRyneDN788W2NYiRIIzmILjba7LaQTfihuFawZDhRtkYCv3JDC3B4TwnmRJw==", - "optional": true - }, - "@next/swc-win32-ia32-msvc": { - "version": "13.4.19", - "resolved": "https://registry.npmjs.org/@next/swc-win32-ia32-msvc/-/swc-win32-ia32-msvc-13.4.19.tgz", - "integrity": "sha512-Y5kikILFAr81LYIFaw6j/NrOtmiM4Sf3GtOc0pn50ez2GCkr+oejYuKGcwAwq3jiTKuzF6OF4iT2INPoxRycEA==", - "optional": true - }, - "@next/swc-win32-x64-msvc": { - "version": "13.4.19", - "resolved": "https://registry.npmjs.org/@next/swc-win32-x64-msvc/-/swc-win32-x64-msvc-13.4.19.tgz", - "integrity": "sha512-YzA78jBDXMYiINdPdJJwGgPNT3YqBNNGhsthsDoWHL9p24tEJn9ViQf/ZqTbwSpX/RrkPupLfuuTH2sf73JBAw==", - "optional": true - }, - "@nodelib/fs.scandir": { - "version": "2.1.5", - "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", - "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", - "requires": { - "@nodelib/fs.stat": "2.0.5", - "run-parallel": "^1.1.9" - } - }, - "@nodelib/fs.stat": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", - "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==" - }, - "@nodelib/fs.walk": { - "version": "1.2.8", - "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", - "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", - "requires": { - "@nodelib/fs.scandir": "2.1.5", - "fastq": "^1.6.0" - } - }, - "@popperjs/core": { - "version": "2.11.8", - "resolved": "https://registry.npmjs.org/@popperjs/core/-/core-2.11.8.tgz", - "integrity": "sha512-P1st0aksCrn9sGZhp8GMYwBnQsbvAWsZAX44oXNNvLHGqAOcoVxmjZiohstwQ7SqKnbR47akdNi+uleWD8+g6A==" - }, - "@react-aria/ssr": { - "version": "3.8.0", - "resolved": "https://registry.npmjs.org/@react-aria/ssr/-/ssr-3.8.0.tgz", - "integrity": "sha512-Y54xs483rglN5DxbwfCPHxnkvZ+gZ0LbSYmR72LyWPGft8hN/lrl1VRS1EW2SMjnkEWlj+Km2mwvA3kEHDUA0A==", - "requires": { - "@swc/helpers": "^0.5.0" - } - }, - "@restart/hooks": { - "version": "0.4.11", - "resolved": "https://registry.npmjs.org/@restart/hooks/-/hooks-0.4.11.tgz", - "integrity": "sha512-Ft/ncTULZN6ldGHiF/k5qt72O8JyRMOeg0tApvCni8LkoiEahO+z3TNxfXIVGy890YtWVDvJAl662dVJSJXvMw==", - "requires": { - "dequal": "^2.0.3" - } - }, - "@restart/ui": { - "version": "1.6.6", - "resolved": "https://registry.npmjs.org/@restart/ui/-/ui-1.6.6.tgz", - "integrity": "sha512-eC3puKuWE1SRYbojWHXnvCNHGgf3uzHCb6JOhnF4OXPibOIPEkR1sqDSkL643ydigxwh+ruCa1CmYHlzk7ikKA==", - "requires": { - "@babel/runtime": "^7.21.0", - "@popperjs/core": "^2.11.6", - "@react-aria/ssr": "^3.5.0", - "@restart/hooks": "^0.4.9", - "@types/warning": "^3.0.0", - "dequal": "^2.0.3", - "dom-helpers": "^5.2.0", - "uncontrollable": "^8.0.1", - "warning": "^4.0.3" - }, - "dependencies": { - "uncontrollable": { - "version": "8.0.4", - "resolved": "https://registry.npmjs.org/uncontrollable/-/uncontrollable-8.0.4.tgz", - "integrity": "sha512-ulRWYWHvscPFc0QQXvyJjY6LIXU56f0h8pQFvhxiKk5V1fcI8gp9Ht9leVAhrVjzqMw0BgjspBINx9r6oyJUvQ==", - "requires": {} - } - } - }, - "@rushstack/eslint-patch": { - "version": "1.3.3", - "resolved": "https://registry.npmjs.org/@rushstack/eslint-patch/-/eslint-patch-1.3.3.tgz", - "integrity": "sha512-0xd7qez0AQ+MbHatZTlI1gu5vkG8r7MYRUJAHPAHJBmGLs16zpkrpAVLvjQKQOqaXPDUBwOiJzNc00znHSCVBw==" - }, - "@swc/helpers": { - "version": "0.5.1", - "resolved": "https://registry.npmjs.org/@swc/helpers/-/helpers-0.5.1.tgz", - "integrity": "sha512-sJ902EfIzn1Fa+qYmjdQqh8tPsoxyBz+8yBKC2HKUxyezKJFwPGOn7pv4WY6QuQW//ySQi5lJjA/ZT9sNWWNTg==", - "requires": { - "tslib": "^2.4.0" - } - }, - "@types/json5": { - "version": "0.0.29", - "resolved": "https://registry.npmjs.org/@types/json5/-/json5-0.0.29.tgz", - "integrity": "sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==" - }, - "@types/node": { - "version": "20.6.0", - "resolved": "https://registry.npmjs.org/@types/node/-/node-20.6.0.tgz", - "integrity": "sha512-najjVq5KN2vsH2U/xyh2opaSEz6cZMR2SetLIlxlj08nOcmPOemJmUK2o4kUzfLqfrWE0PIrNeE16XhYDd3nqg==" - }, - "@types/prop-types": { - "version": "15.7.5", - "resolved": "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.5.tgz", - "integrity": "sha512-JCB8C6SnDoQf0cNycqd/35A7MjcnK+ZTqE7judS6o7utxUCg6imJg3QK2qzHKszlTjcj2cn+NwMB2i96ubpj7w==" - }, - "@types/react": { - "version": "18.2.21", - "resolved": "https://registry.npmjs.org/@types/react/-/react-18.2.21.tgz", - "integrity": "sha512-neFKG/sBAwGxHgXiIxnbm3/AAVQ/cMRS93hvBpg8xYRbeQSPVABp9U2bRnPf0iI4+Ucdv3plSxKK+3CW2ENJxA==", - "requires": { - "@types/prop-types": "*", - "@types/scheduler": "*", - "csstype": "^3.0.2" - } - }, - "@types/react-bootstrap": { - "version": "0.32.32", - "resolved": "https://registry.npmjs.org/@types/react-bootstrap/-/react-bootstrap-0.32.32.tgz", - "integrity": "sha512-GM9UtV7v+C2F0rbqgIpMWdCKBMdX3PQURoJQobPO4vDAeFadcExNtKffi13/MjaAks+riJKVGyiMe+6OmDYT2w==", - "requires": { - "@types/react": "*" - } - }, - "@types/react-dom": { - "version": "18.2.7", - "resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-18.2.7.tgz", - "integrity": "sha512-GRaAEriuT4zp9N4p1i8BDBYmEyfo+xQ3yHjJU4eiK5NDa1RmUZG+unZABUTK4/Ox/M+GaHwb6Ow8rUITrtjszA==", - "requires": { - "@types/react": "*" - } - }, - "@types/react-transition-group": { - "version": "4.4.6", - "resolved": "https://registry.npmjs.org/@types/react-transition-group/-/react-transition-group-4.4.6.tgz", - "integrity": "sha512-VnCdSxfcm08KjsJVQcfBmhEQAPnLB8G08hAxn39azX1qYBQ/5RVQuoHuKIcfKOdncuaUvEpFKFzEvbtIMsfVew==", - "requires": { - "@types/react": "*" - } - }, - "@types/scheduler": { - "version": "0.16.3", - "resolved": "https://registry.npmjs.org/@types/scheduler/-/scheduler-0.16.3.tgz", - "integrity": "sha512-5cJ8CB4yAx7BH1oMvdU0Jh9lrEXyPkar6F9G/ERswkCuvP4KQZfZkSjcMbAICCpQTN4OuZn8tz0HiKv9TGZgrQ==" - }, - "@types/warning": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/@types/warning/-/warning-3.0.0.tgz", - "integrity": "sha512-t/Tvs5qR47OLOr+4E9ckN8AmP2Tf16gWq+/qA4iUGS/OOyHVO8wv2vjJuX8SNOUTJyWb+2t7wJm6cXILFnOROA==" - }, - "@typescript-eslint/parser": { - "version": "6.6.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-6.6.0.tgz", - "integrity": "sha512-setq5aJgUwtzGrhW177/i+DMLqBaJbdwGj2CPIVFFLE0NCliy5ujIdLHd2D1ysmlmsjdL2GWW+hR85neEfc12w==", - "requires": { - "@typescript-eslint/scope-manager": "6.6.0", - "@typescript-eslint/types": "6.6.0", - "@typescript-eslint/typescript-estree": "6.6.0", - "@typescript-eslint/visitor-keys": "6.6.0", - "debug": "^4.3.4" - } - }, - "@typescript-eslint/scope-manager": { - "version": "6.6.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-6.6.0.tgz", - "integrity": "sha512-pT08u5W/GT4KjPUmEtc2kSYvrH8x89cVzkA0Sy2aaOUIw6YxOIjA8ilwLr/1fLjOedX1QAuBpG9XggWqIIfERw==", - "requires": { - "@typescript-eslint/types": "6.6.0", - "@typescript-eslint/visitor-keys": "6.6.0" - } - }, - "@typescript-eslint/types": { - "version": "6.6.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-6.6.0.tgz", - "integrity": "sha512-CB6QpJQ6BAHlJXdwUmiaXDBmTqIE2bzGTDLADgvqtHWuhfNP3rAOK7kAgRMAET5rDRr9Utt+qAzRBdu3AhR3sg==" - }, - "@typescript-eslint/typescript-estree": { - "version": "6.6.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-6.6.0.tgz", - "integrity": "sha512-hMcTQ6Al8MP2E6JKBAaSxSVw5bDhdmbCEhGW/V8QXkb9oNsFkA4SBuOMYVPxD3jbtQ4R/vSODBsr76R6fP3tbA==", - "requires": { - "@typescript-eslint/types": "6.6.0", - "@typescript-eslint/visitor-keys": "6.6.0", - "debug": "^4.3.4", - "globby": "^11.1.0", - "is-glob": "^4.0.3", - "semver": "^7.5.4", - "ts-api-utils": "^1.0.1" - } - }, - "@typescript-eslint/visitor-keys": { - "version": "6.6.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-6.6.0.tgz", - "integrity": "sha512-L61uJT26cMOfFQ+lMZKoJNbAEckLe539VhTxiGHrWl5XSKQgA0RTBZJW2HFPy5T0ZvPVSD93QsrTKDkfNwJGyQ==", - "requires": { - "@typescript-eslint/types": "6.6.0", - "eslint-visitor-keys": "^3.4.1" - } - }, - "acorn": { - "version": "8.10.0", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.10.0.tgz", - "integrity": "sha512-F0SAmZ8iUtS//m8DmCTA0jlh6TDKkHQyK6xc6V4KDTyZKA9dnvX9/3sRTVQrWm79glUAZbnmmNcdYwUIHWVybw==" - }, - "acorn-jsx": { - "version": "5.3.2", - "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", - "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", - "requires": {} - }, - "ajv": { - "version": "6.12.6", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", - "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", - "requires": { - "fast-deep-equal": "^3.1.1", - "fast-json-stable-stringify": "^2.0.0", - "json-schema-traverse": "^0.4.1", - "uri-js": "^4.2.2" - } - }, - "ansi-regex": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", - "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==" - }, - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "requires": { - "color-convert": "^2.0.1" - } - }, - "argparse": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", - "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==" - }, - "aria-query": { - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/aria-query/-/aria-query-5.3.0.tgz", - "integrity": "sha512-b0P0sZPKtyu8HkeRAfCq0IfURZK+SuwMjY1UXGBU27wpAiTwQAIlq56IbIO+ytk/JjS1fMR14ee5WBBfKi5J6A==", - "requires": { - "dequal": "^2.0.3" - } - }, - "array-buffer-byte-length": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/array-buffer-byte-length/-/array-buffer-byte-length-1.0.0.tgz", - "integrity": "sha512-LPuwb2P+NrQw3XhxGc36+XSvuBPopovXYTR9Ew++Du9Yb/bx5AzBfrIsBoj0EZUifjQU+sHL21sseZ3jerWO/A==", - "requires": { - "call-bind": "^1.0.2", - "is-array-buffer": "^3.0.1" - } - }, - "array-includes": { - "version": "3.1.7", - "resolved": "https://registry.npmjs.org/array-includes/-/array-includes-3.1.7.tgz", - "integrity": "sha512-dlcsNBIiWhPkHdOEEKnehA+RNUWDc4UqFtnIXU4uuYDPtA4LDkr7qip2p0VvFAEXNDr0yWZ9PJyIRiGjRLQzwQ==", - "requires": { - "call-bind": "^1.0.2", - "define-properties": "^1.2.0", - "es-abstract": "^1.22.1", - "get-intrinsic": "^1.2.1", - "is-string": "^1.0.7" - } - }, - "array-union": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz", - "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==" - }, - "array.prototype.findlastindex": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/array.prototype.findlastindex/-/array.prototype.findlastindex-1.2.3.tgz", - "integrity": "sha512-LzLoiOMAxvy+Gd3BAq3B7VeIgPdo+Q8hthvKtXybMvRV0jrXfJM/t8mw7nNlpEcVlVUnCnM2KSX4XU5HmpodOA==", - "requires": { - "call-bind": "^1.0.2", - "define-properties": "^1.2.0", - "es-abstract": "^1.22.1", - "es-shim-unscopables": "^1.0.0", - "get-intrinsic": "^1.2.1" - } - }, - "array.prototype.flat": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/array.prototype.flat/-/array.prototype.flat-1.3.2.tgz", - "integrity": "sha512-djYB+Zx2vLewY8RWlNCUdHjDXs2XOgm602S9E7P/UpHgfeHL00cRiIF+IN/G/aUJ7kGPb6yO/ErDI5V2s8iycA==", - "requires": { - "call-bind": "^1.0.2", - "define-properties": "^1.2.0", - "es-abstract": "^1.22.1", - "es-shim-unscopables": "^1.0.0" - } - }, - "array.prototype.flatmap": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/array.prototype.flatmap/-/array.prototype.flatmap-1.3.2.tgz", - "integrity": "sha512-Ewyx0c9PmpcsByhSW4r+9zDU7sGjFc86qf/kKtuSCRdhfbk0SNLLkaT5qvcHnRGgc5NP/ly/y+qkXkqONX54CQ==", - "requires": { - "call-bind": "^1.0.2", - "define-properties": "^1.2.0", - "es-abstract": "^1.22.1", - "es-shim-unscopables": "^1.0.0" - } - }, - "array.prototype.tosorted": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/array.prototype.tosorted/-/array.prototype.tosorted-1.1.2.tgz", - "integrity": "sha512-HuQCHOlk1Weat5jzStICBCd83NxiIMwqDg/dHEsoefabn/hJRj5pVdWcPUSpRrwhwxZOsQassMpgN/xRYFBMIg==", - "requires": { - "call-bind": "^1.0.2", - "define-properties": "^1.2.0", - "es-abstract": "^1.22.1", - "es-shim-unscopables": "^1.0.0", - "get-intrinsic": "^1.2.1" - } - }, - "arraybuffer.prototype.slice": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/arraybuffer.prototype.slice/-/arraybuffer.prototype.slice-1.0.2.tgz", - "integrity": "sha512-yMBKppFur/fbHu9/6USUe03bZ4knMYiwFBcyiaXB8Go0qNehwX6inYPzK9U0NeQvGxKthcmHcaR8P5MStSRBAw==", - "requires": { - "array-buffer-byte-length": "^1.0.0", - "call-bind": "^1.0.2", - "define-properties": "^1.2.0", - "es-abstract": "^1.22.1", - "get-intrinsic": "^1.2.1", - "is-array-buffer": "^3.0.2", - "is-shared-array-buffer": "^1.0.2" - } - }, - "ast-types-flow": { - "version": "0.0.7", - "resolved": "https://registry.npmjs.org/ast-types-flow/-/ast-types-flow-0.0.7.tgz", - "integrity": "sha512-eBvWn1lvIApYMhzQMsu9ciLfkBY499mFZlNqG+/9WR7PVlroQw0vG30cOQQbaKz3sCEc44TAOu2ykzqXSNnwag==" - }, - "asynciterator.prototype": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/asynciterator.prototype/-/asynciterator.prototype-1.0.0.tgz", - "integrity": "sha512-wwHYEIS0Q80f5mosx3L/dfG5t5rjEa9Ft51GTaNt862EnpyGHpgz2RkZvLPp1oF5TnAiTohkEKVEu8pQPJI7Vg==", - "requires": { - "has-symbols": "^1.0.3" - } - }, - "available-typed-arrays": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.5.tgz", - "integrity": "sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw==" - }, - "axe-core": { - "version": "4.8.1", - "resolved": "https://registry.npmjs.org/axe-core/-/axe-core-4.8.1.tgz", - "integrity": "sha512-9l850jDDPnKq48nbad8SiEelCv4OrUWrKab/cPj0GScVg6cb6NbCCt/Ulk26QEq5jP9NnGr04Bit1BHyV6r5CQ==" - }, - "axobject-query": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/axobject-query/-/axobject-query-3.2.1.tgz", - "integrity": "sha512-jsyHu61e6N4Vbz/v18DHwWYKK0bSWLqn47eeDSKPB7m8tqMHF9YJ+mhIk2lVteyZrY8tnSj/jHOv4YiTCuCJgg==", - "requires": { - "dequal": "^2.0.3" - } - }, - "balanced-match": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", - "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==" - }, - "bootstrap": { - "version": "5.3.1", - "resolved": "https://registry.npmjs.org/bootstrap/-/bootstrap-5.3.1.tgz", - "integrity": "sha512-jzwza3Yagduci2x0rr9MeFSORjcHpt0lRZukZPZQJT1Dth5qzV7XcgGqYzi39KGAVYR8QEDVoO0ubFKOxzMG+g==", - "requires": {} - }, - "brace-expansion": { - "version": "1.1.11", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", - "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", - "requires": { - "balanced-match": "^1.0.0", - "concat-map": "0.0.1" - } - }, - "braces": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", - "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", - "requires": { - "fill-range": "^7.0.1" - } - }, - "busboy": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/busboy/-/busboy-1.6.0.tgz", - "integrity": "sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA==", - "requires": { - "streamsearch": "^1.1.0" - } - }, - "call-bind": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz", - "integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==", - "requires": { - "function-bind": "^1.1.1", - "get-intrinsic": "^1.0.2" - } - }, - "callsites": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", - "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==" - }, - "caniuse-lite": { - "version": "1.0.30001532", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001532.tgz", - "integrity": "sha512-FbDFnNat3nMnrROzqrsg314zhqN5LGQ1kyyMk2opcrwGbVGpHRhgCWtAgD5YJUqNAiQ+dklreil/c3Qf1dfCTw==" - }, - "chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "classnames": { - "version": "2.3.2", - "resolved": "https://registry.npmjs.org/classnames/-/classnames-2.3.2.tgz", - "integrity": "sha512-CSbhY4cFEJRe6/GQzIk5qXZ4Jeg5pcsP7b5peFSDpffpe1cqjASH/n9UTjBwOp6XpMSTwQ8Za2K5V02ueA7Tmw==" - }, - "client-only": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/client-only/-/client-only-0.0.1.tgz", - "integrity": "sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA==" - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" - }, - "concat-map": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", - "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==" - }, - "cross-spawn": { - "version": "7.0.3", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", - "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", - "requires": { - "path-key": "^3.1.0", - "shebang-command": "^2.0.0", - "which": "^2.0.1" - } - }, - "csstype": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.1.2.tgz", - "integrity": "sha512-I7K1Uu0MBPzaFKg4nI5Q7Vs2t+3gWWW648spaF+Rg7pI9ds18Ugn+lvg4SHczUdKlHI5LWBXyqfS8+DufyBsgQ==" - }, - "damerau-levenshtein": { - "version": "1.0.8", - "resolved": "https://registry.npmjs.org/damerau-levenshtein/-/damerau-levenshtein-1.0.8.tgz", - "integrity": "sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA==" - }, - "debug": { - "version": "4.3.4", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", - "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", - "requires": { - "ms": "2.1.2" - } - }, - "deep-is": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", - "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==" - }, - "define-properties": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.2.0.tgz", - "integrity": "sha512-xvqAVKGfT1+UAvPwKTVw/njhdQ8ZhXK4lI0bCIuCMrp2up9nPnaDftrLtmpTazqd1o+UY4zgzU+avtMbDP+ldA==", - "requires": { - "has-property-descriptors": "^1.0.0", - "object-keys": "^1.1.1" - } - }, - "dequal": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/dequal/-/dequal-2.0.3.tgz", - "integrity": "sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==" - }, - "dir-glob": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz", - "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==", - "requires": { - "path-type": "^4.0.0" - } - }, - "doctrine": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz", - "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==", - "requires": { - "esutils": "^2.0.2" - } - }, - "dom-helpers": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/dom-helpers/-/dom-helpers-5.2.1.tgz", - "integrity": "sha512-nRCa7CK3VTrM2NmGkIy4cbK7IZlgBE/PYMn55rrXefr5xXDP0LdtfPnblFDoVdcAfslJ7or6iqAUnx0CCGIWQA==", - "requires": { - "@babel/runtime": "^7.8.7", - "csstype": "^3.0.2" - } - }, - "emoji-regex": { - "version": "9.2.2", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", - "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==" - }, - "enhanced-resolve": { - "version": "5.15.0", - "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.15.0.tgz", - "integrity": "sha512-LXYT42KJ7lpIKECr2mAXIaMldcNCh/7E0KBKOu4KSfkHmP+mZmSs+8V5gBAqisWBy0OO4W5Oyys0GO1Y8KtdKg==", - "requires": { - "graceful-fs": "^4.2.4", - "tapable": "^2.2.0" - } - }, - "es-abstract": { - "version": "1.22.1", - "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.22.1.tgz", - "integrity": "sha512-ioRRcXMO6OFyRpyzV3kE1IIBd4WG5/kltnzdxSCqoP8CMGs/Li+M1uF5o7lOkZVFjDs+NLesthnF66Pg/0q0Lw==", - "requires": { - "array-buffer-byte-length": "^1.0.0", - "arraybuffer.prototype.slice": "^1.0.1", - "available-typed-arrays": "^1.0.5", - "call-bind": "^1.0.2", - "es-set-tostringtag": "^2.0.1", - "es-to-primitive": "^1.2.1", - "function.prototype.name": "^1.1.5", - "get-intrinsic": "^1.2.1", - "get-symbol-description": "^1.0.0", - "globalthis": "^1.0.3", - "gopd": "^1.0.1", - "has": "^1.0.3", - "has-property-descriptors": "^1.0.0", - "has-proto": "^1.0.1", - "has-symbols": "^1.0.3", - "internal-slot": "^1.0.5", - "is-array-buffer": "^3.0.2", - "is-callable": "^1.2.7", - "is-negative-zero": "^2.0.2", - "is-regex": "^1.1.4", - "is-shared-array-buffer": "^1.0.2", - "is-string": "^1.0.7", - "is-typed-array": "^1.1.10", - "is-weakref": "^1.0.2", - "object-inspect": "^1.12.3", - "object-keys": "^1.1.1", - "object.assign": "^4.1.4", - "regexp.prototype.flags": "^1.5.0", - "safe-array-concat": "^1.0.0", - "safe-regex-test": "^1.0.0", - "string.prototype.trim": "^1.2.7", - "string.prototype.trimend": "^1.0.6", - "string.prototype.trimstart": "^1.0.6", - "typed-array-buffer": "^1.0.0", - "typed-array-byte-length": "^1.0.0", - "typed-array-byte-offset": "^1.0.0", - "typed-array-length": "^1.0.4", - "unbox-primitive": "^1.0.2", - "which-typed-array": "^1.1.10" - } - }, - "es-iterator-helpers": { - "version": "1.0.14", - "resolved": "https://registry.npmjs.org/es-iterator-helpers/-/es-iterator-helpers-1.0.14.tgz", - "integrity": "sha512-JgtVnwiuoRuzLvqelrvN3Xu7H9bu2ap/kQ2CrM62iidP8SKuD99rWU3CJy++s7IVL2qb/AjXPGR/E7i9ngd/Cw==", - "requires": { - "asynciterator.prototype": "^1.0.0", - "call-bind": "^1.0.2", - "define-properties": "^1.2.0", - "es-abstract": "^1.22.1", - "es-set-tostringtag": "^2.0.1", - "function-bind": "^1.1.1", - "get-intrinsic": "^1.2.1", - "globalthis": "^1.0.3", - "has-property-descriptors": "^1.0.0", - "has-proto": "^1.0.1", - "has-symbols": "^1.0.3", - "internal-slot": "^1.0.5", - "iterator.prototype": "^1.1.0", - "safe-array-concat": "^1.0.0" - } - }, - "es-set-tostringtag": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.0.1.tgz", - "integrity": "sha512-g3OMbtlwY3QewlqAiMLI47KywjWZoEytKr8pf6iTC8uJq5bIAH52Z9pnQ8pVL6whrCto53JZDuUIsifGeLorTg==", - "requires": { - "get-intrinsic": "^1.1.3", - "has": "^1.0.3", - "has-tostringtag": "^1.0.0" - } - }, - "es-shim-unscopables": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/es-shim-unscopables/-/es-shim-unscopables-1.0.0.tgz", - "integrity": "sha512-Jm6GPcCdC30eMLbZ2x8z2WuRwAws3zTBBKuusffYVUrNj/GVSUAZ+xKMaUpfNDR5IbyNA5LJbaecoUVbmUcB1w==", - "requires": { - "has": "^1.0.3" - } - }, - "es-to-primitive": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz", - "integrity": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==", - "requires": { - "is-callable": "^1.1.4", - "is-date-object": "^1.0.1", - "is-symbol": "^1.0.2" - } - }, - "escape-string-regexp": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", - "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==" - }, - "eslint": { - "version": "8.49.0", - "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.49.0.tgz", - "integrity": "sha512-jw03ENfm6VJI0jA9U+8H5zfl5b+FvuU3YYvZRdZHOlU2ggJkxrlkJH4HcDrZpj6YwD8kuYqvQM8LyesoazrSOQ==", - "requires": { - "@eslint-community/eslint-utils": "^4.2.0", - "@eslint-community/regexpp": "^4.6.1", - "@eslint/eslintrc": "^2.1.2", - "@eslint/js": "8.49.0", - "@humanwhocodes/config-array": "^0.11.11", - "@humanwhocodes/module-importer": "^1.0.1", - "@nodelib/fs.walk": "^1.2.8", - "ajv": "^6.12.4", - "chalk": "^4.0.0", - "cross-spawn": "^7.0.2", - "debug": "^4.3.2", - "doctrine": "^3.0.0", - "escape-string-regexp": "^4.0.0", - "eslint-scope": "^7.2.2", - "eslint-visitor-keys": "^3.4.3", - "espree": "^9.6.1", - "esquery": "^1.4.2", - "esutils": "^2.0.2", - "fast-deep-equal": "^3.1.3", - "file-entry-cache": "^6.0.1", - "find-up": "^5.0.0", - "glob-parent": "^6.0.2", - "globals": "^13.19.0", - "graphemer": "^1.4.0", - "ignore": "^5.2.0", - "imurmurhash": "^0.1.4", - "is-glob": "^4.0.0", - "is-path-inside": "^3.0.3", - "js-yaml": "^4.1.0", - "json-stable-stringify-without-jsonify": "^1.0.1", - "levn": "^0.4.1", - "lodash.merge": "^4.6.2", - "minimatch": "^3.1.2", - "natural-compare": "^1.4.0", - "optionator": "^0.9.3", - "strip-ansi": "^6.0.1", - "text-table": "^0.2.0" - } - }, - "eslint-config-next": { - "version": "13.4.19", - "resolved": "https://registry.npmjs.org/eslint-config-next/-/eslint-config-next-13.4.19.tgz", - "integrity": "sha512-WE8367sqMnjhWHvR5OivmfwENRQ1ixfNE9hZwQqNCsd+iM3KnuMc1V8Pt6ytgjxjf23D+xbesADv9x3xaKfT3g==", - "requires": { - "@next/eslint-plugin-next": "13.4.19", - "@rushstack/eslint-patch": "^1.1.3", - "@typescript-eslint/parser": "^5.4.2 || ^6.0.0", - "eslint-import-resolver-node": "^0.3.6", - "eslint-import-resolver-typescript": "^3.5.2", - "eslint-plugin-import": "^2.26.0", - "eslint-plugin-jsx-a11y": "^6.5.1", - "eslint-plugin-react": "^7.31.7", - "eslint-plugin-react-hooks": "^4.5.0 || 5.0.0-canary-7118f5dd7-20230705" - } - }, - "eslint-import-resolver-node": { - "version": "0.3.9", - "resolved": "https://registry.npmjs.org/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.9.tgz", - "integrity": "sha512-WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g==", - "requires": { - "debug": "^3.2.7", - "is-core-module": "^2.13.0", - "resolve": "^1.22.4" - }, - "dependencies": { - "debug": { - "version": "3.2.7", - "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", - "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", - "requires": { - "ms": "^2.1.1" - } - } - } - }, - "eslint-import-resolver-typescript": { - "version": "3.6.0", - "resolved": "https://registry.npmjs.org/eslint-import-resolver-typescript/-/eslint-import-resolver-typescript-3.6.0.tgz", - "integrity": "sha512-QTHR9ddNnn35RTxlaEnx2gCxqFlF2SEN0SE2d17SqwyM7YOSI2GHWRYp5BiRkObTUNYPupC/3Fq2a0PpT+EKpg==", - "requires": { - "debug": "^4.3.4", - "enhanced-resolve": "^5.12.0", - "eslint-module-utils": "^2.7.4", - "fast-glob": "^3.3.1", - "get-tsconfig": "^4.5.0", - "is-core-module": "^2.11.0", - "is-glob": "^4.0.3" - } - }, - "eslint-module-utils": { - "version": "2.8.0", - "resolved": "https://registry.npmjs.org/eslint-module-utils/-/eslint-module-utils-2.8.0.tgz", - "integrity": "sha512-aWajIYfsqCKRDgUfjEXNN/JlrzauMuSEy5sbd7WXbtW3EH6A6MpwEh42c7qD+MqQo9QMJ6fWLAeIJynx0g6OAw==", - "requires": { - "debug": "^3.2.7" - }, - "dependencies": { - "debug": { - "version": "3.2.7", - "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", - "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", - "requires": { - "ms": "^2.1.1" - } - } - } - }, - "eslint-plugin-import": { - "version": "2.28.1", - "resolved": "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.28.1.tgz", - "integrity": "sha512-9I9hFlITvOV55alzoKBI+K9q74kv0iKMeY6av5+umsNwayt59fz692daGyjR+oStBQgx6nwR9rXldDev3Clw+A==", - "requires": { - "array-includes": "^3.1.6", - "array.prototype.findlastindex": "^1.2.2", - "array.prototype.flat": "^1.3.1", - "array.prototype.flatmap": "^1.3.1", - "debug": "^3.2.7", - "doctrine": "^2.1.0", - "eslint-import-resolver-node": "^0.3.7", - "eslint-module-utils": "^2.8.0", - "has": "^1.0.3", - "is-core-module": "^2.13.0", - "is-glob": "^4.0.3", - "minimatch": "^3.1.2", - "object.fromentries": "^2.0.6", - "object.groupby": "^1.0.0", - "object.values": "^1.1.6", - "semver": "^6.3.1", - "tsconfig-paths": "^3.14.2" - }, - "dependencies": { - "debug": { - "version": "3.2.7", - "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", - "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", - "requires": { - "ms": "^2.1.1" - } - }, - "doctrine": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", - "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", - "requires": { - "esutils": "^2.0.2" - } - }, - "semver": { - "version": "6.3.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", - "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==" - } - } - }, - "eslint-plugin-jsx-a11y": { - "version": "6.7.1", - "resolved": "https://registry.npmjs.org/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.7.1.tgz", - "integrity": "sha512-63Bog4iIethyo8smBklORknVjB0T2dwB8Mr/hIC+fBS0uyHdYYpzM/Ed+YC8VxTjlXHEWFOdmgwcDn1U2L9VCA==", - "requires": { - "@babel/runtime": "^7.20.7", - "aria-query": "^5.1.3", - "array-includes": "^3.1.6", - "array.prototype.flatmap": "^1.3.1", - "ast-types-flow": "^0.0.7", - "axe-core": "^4.6.2", - "axobject-query": "^3.1.1", - "damerau-levenshtein": "^1.0.8", - "emoji-regex": "^9.2.2", - "has": "^1.0.3", - "jsx-ast-utils": "^3.3.3", - "language-tags": "=1.0.5", - "minimatch": "^3.1.2", - "object.entries": "^1.1.6", - "object.fromentries": "^2.0.6", - "semver": "^6.3.0" - }, - "dependencies": { - "semver": { - "version": "6.3.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", - "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==" - } - } - }, - "eslint-plugin-react": { - "version": "7.33.2", - "resolved": "https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-7.33.2.tgz", - "integrity": "sha512-73QQMKALArI8/7xGLNI/3LylrEYrlKZSb5C9+q3OtOewTnMQi5cT+aE9E41sLCmli3I9PGGmD1yiZydyo4FEPw==", - "requires": { - "array-includes": "^3.1.6", - "array.prototype.flatmap": "^1.3.1", - "array.prototype.tosorted": "^1.1.1", - "doctrine": "^2.1.0", - "es-iterator-helpers": "^1.0.12", - "estraverse": "^5.3.0", - "jsx-ast-utils": "^2.4.1 || ^3.0.0", - "minimatch": "^3.1.2", - "object.entries": "^1.1.6", - "object.fromentries": "^2.0.6", - "object.hasown": "^1.1.2", - "object.values": "^1.1.6", - "prop-types": "^15.8.1", - "resolve": "^2.0.0-next.4", - "semver": "^6.3.1", - "string.prototype.matchall": "^4.0.8" - }, - "dependencies": { - "doctrine": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", - "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", - "requires": { - "esutils": "^2.0.2" - } - }, - "resolve": { - "version": "2.0.0-next.4", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-2.0.0-next.4.tgz", - "integrity": "sha512-iMDbmAWtfU+MHpxt/I5iWI7cY6YVEZUQ3MBgPQ++XD1PELuJHIl82xBmObyP2KyQmkNB2dsqF7seoQQiAn5yDQ==", - "requires": { - "is-core-module": "^2.9.0", - "path-parse": "^1.0.7", - "supports-preserve-symlinks-flag": "^1.0.0" - } - }, - "semver": { - "version": "6.3.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", - "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==" - } - } - }, - "eslint-plugin-react-hooks": { - "version": "4.6.0", - "resolved": "https://registry.npmjs.org/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-4.6.0.tgz", - "integrity": "sha512-oFc7Itz9Qxh2x4gNHStv3BqJq54ExXmfC+a1NjAta66IAN87Wu0R/QArgIS9qKzX3dXKPI9H5crl9QchNMY9+g==", - "requires": {} - }, - "eslint-scope": { - "version": "7.2.2", - "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.2.2.tgz", - "integrity": "sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==", - "requires": { - "esrecurse": "^4.3.0", - "estraverse": "^5.2.0" - } - }, - "eslint-visitor-keys": { - "version": "3.4.3", - "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz", - "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==" - }, - "espree": { - "version": "9.6.1", - "resolved": "https://registry.npmjs.org/espree/-/espree-9.6.1.tgz", - "integrity": "sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==", - "requires": { - "acorn": "^8.9.0", - "acorn-jsx": "^5.3.2", - "eslint-visitor-keys": "^3.4.1" - } - }, - "esquery": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.5.0.tgz", - "integrity": "sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==", - "requires": { - "estraverse": "^5.1.0" - } - }, - "esrecurse": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", - "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", - "requires": { - "estraverse": "^5.2.0" - } - }, - "estraverse": { - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", - "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==" - }, - "esutils": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", - "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==" - }, - "fast-deep-equal": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", - "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==" - }, - "fast-glob": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.1.tgz", - "integrity": "sha512-kNFPyjhh5cKjrUltxs+wFx+ZkbRaxxmZ+X0ZU31SOsxCEtP9VPgtq2teZw1DebupL5GmDaNQ6yKMMVcM41iqDg==", - "requires": { - "@nodelib/fs.stat": "^2.0.2", - "@nodelib/fs.walk": "^1.2.3", - "glob-parent": "^5.1.2", - "merge2": "^1.3.0", - "micromatch": "^4.0.4" - }, - "dependencies": { - "glob-parent": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", - "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", - "requires": { - "is-glob": "^4.0.1" - } - } - } - }, - "fast-json-stable-stringify": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", - "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==" - }, - "fast-levenshtein": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", - "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==" - }, - "fastq": { - "version": "1.15.0", - "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.15.0.tgz", - "integrity": "sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==", - "requires": { - "reusify": "^1.0.4" - } - }, - "file-entry-cache": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz", - "integrity": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==", - "requires": { - "flat-cache": "^3.0.4" - } - }, - "fill-range": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", - "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", - "requires": { - "to-regex-range": "^5.0.1" - } - }, - "find-up": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", - "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", - "requires": { - "locate-path": "^6.0.0", - "path-exists": "^4.0.0" - } - }, - "flat-cache": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.1.0.tgz", - "integrity": "sha512-OHx4Qwrrt0E4jEIcI5/Xb+f+QmJYNj2rrK8wiIdQOIrB9WrrJL8cjZvXdXuBTkkEwEqLycb5BeZDV1o2i9bTew==", - "requires": { - "flatted": "^3.2.7", - "keyv": "^4.5.3", - "rimraf": "^3.0.2" - } - }, - "flatted": { - "version": "3.2.7", - "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.2.7.tgz", - "integrity": "sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ==" - }, - "for-each": { - "version": "0.3.3", - "resolved": "https://registry.npmjs.org/for-each/-/for-each-0.3.3.tgz", - "integrity": "sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==", - "requires": { - "is-callable": "^1.1.3" - } - }, - "fs.realpath": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", - "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==" - }, - "function-bind": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", - "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==" - }, - "function.prototype.name": { - "version": "1.1.6", - "resolved": "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.6.tgz", - "integrity": "sha512-Z5kx79swU5P27WEayXM1tBi5Ze/lbIyiNgU3qyXUOf9b2rgXYyF9Dy9Cx+IQv/Lc8WCG6L82zwUPpSS9hGehIg==", - "requires": { - "call-bind": "^1.0.2", - "define-properties": "^1.2.0", - "es-abstract": "^1.22.1", - "functions-have-names": "^1.2.3" - } - }, - "functions-have-names": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz", - "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==" - }, - "get-intrinsic": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.1.tgz", - "integrity": "sha512-2DcsyfABl+gVHEfCOaTrWgyt+tb6MSEGmKq+kI5HwLbIYgjgmMcV8KQ41uaKz1xxUcn9tJtgFbQUEVcEbd0FYw==", - "requires": { - "function-bind": "^1.1.1", - "has": "^1.0.3", - "has-proto": "^1.0.1", - "has-symbols": "^1.0.3" - } - }, - "get-symbol-description": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.0.0.tgz", - "integrity": "sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==", - "requires": { - "call-bind": "^1.0.2", - "get-intrinsic": "^1.1.1" - } - }, - "get-tsconfig": { - "version": "4.7.0", - "resolved": "https://registry.npmjs.org/get-tsconfig/-/get-tsconfig-4.7.0.tgz", - "integrity": "sha512-pmjiZ7xtB8URYm74PlGJozDNyhvsVLUcpBa8DZBG3bWHwaHa9bPiRpiSfovw+fjhwONSCWKRyk+JQHEGZmMrzw==", - "requires": { - "resolve-pkg-maps": "^1.0.0" - } - }, - "glob": { - "version": "7.1.7", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.7.tgz", - "integrity": "sha512-OvD9ENzPLbegENnYP5UUfJIirTg4+XwMWGaQfQTY0JenxNvvIKP3U3/tAQSPIu/lHxXYSZmpXlUHeqAIdKzBLQ==", - "requires": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.0.4", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" - } - }, - "glob-parent": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", - "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", - "requires": { - "is-glob": "^4.0.3" - } - }, - "glob-to-regexp": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz", - "integrity": "sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==" - }, - "globals": { - "version": "13.21.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-13.21.0.tgz", - "integrity": "sha512-ybyme3s4yy/t/3s35bewwXKOf7cvzfreG2lH0lZl0JB7I4GxRP2ghxOK/Nb9EkRXdbBXZLfq/p/0W2JUONB/Gg==", - "requires": { - "type-fest": "^0.20.2" - } - }, - "globalthis": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/globalthis/-/globalthis-1.0.3.tgz", - "integrity": "sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==", - "requires": { - "define-properties": "^1.1.3" - } - }, - "globby": { - "version": "11.1.0", - "resolved": "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz", - "integrity": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==", - "requires": { - "array-union": "^2.1.0", - "dir-glob": "^3.0.1", - "fast-glob": "^3.2.9", - "ignore": "^5.2.0", - "merge2": "^1.4.1", - "slash": "^3.0.0" - } - }, - "gopd": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz", - "integrity": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==", - "requires": { - "get-intrinsic": "^1.1.3" - } - }, - "graceful-fs": { - "version": "4.2.11", - "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", - "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==" - }, - "graphemer": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/graphemer/-/graphemer-1.4.0.tgz", - "integrity": "sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==" - }, - "has": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", - "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", - "requires": { - "function-bind": "^1.1.1" - } - }, - "has-bigints": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.2.tgz", - "integrity": "sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==" - }, - "has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" - }, - "has-property-descriptors": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.0.tgz", - "integrity": "sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ==", - "requires": { - "get-intrinsic": "^1.1.1" - } - }, - "has-proto": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.0.1.tgz", - "integrity": "sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==" - }, - "has-symbols": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", - "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==" - }, - "has-tostringtag": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.0.tgz", - "integrity": "sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==", - "requires": { - "has-symbols": "^1.0.2" - } - }, - "ignore": { - "version": "5.2.4", - "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.2.4.tgz", - "integrity": "sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==" - }, - "import-fresh": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", - "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", - "requires": { - "parent-module": "^1.0.0", - "resolve-from": "^4.0.0" - } - }, - "imurmurhash": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", - "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==" - }, - "inflight": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", - "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", - "requires": { - "once": "^1.3.0", - "wrappy": "1" - } - }, - "inherits": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", - "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" - }, - "internal-slot": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.5.tgz", - "integrity": "sha512-Y+R5hJrzs52QCG2laLn4udYVnxsfny9CpOhNhUvk/SSSVyF6T27FzRbF0sroPidSu3X8oEAkOn2K804mjpt6UQ==", - "requires": { - "get-intrinsic": "^1.2.0", - "has": "^1.0.3", - "side-channel": "^1.0.4" - } - }, - "invariant": { - "version": "2.2.4", - "resolved": "https://registry.npmjs.org/invariant/-/invariant-2.2.4.tgz", - "integrity": "sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==", - "requires": { - "loose-envify": "^1.0.0" - } - }, - "is-array-buffer": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/is-array-buffer/-/is-array-buffer-3.0.2.tgz", - "integrity": "sha512-y+FyyR/w8vfIRq4eQcM1EYgSTnmHXPqaF+IgzgraytCFq5Xh8lllDVmAZolPJiZttZLeFSINPYMaEJ7/vWUa1w==", - "requires": { - "call-bind": "^1.0.2", - "get-intrinsic": "^1.2.0", - "is-typed-array": "^1.1.10" - } - }, - "is-async-function": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/is-async-function/-/is-async-function-2.0.0.tgz", - "integrity": "sha512-Y1JXKrfykRJGdlDwdKlLpLyMIiWqWvuSd17TvZk68PLAOGOoF4Xyav1z0Xhoi+gCYjZVeC5SI+hYFOfvXmGRCA==", - "requires": { - "has-tostringtag": "^1.0.0" - } - }, - "is-bigint": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.4.tgz", - "integrity": "sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==", - "requires": { - "has-bigints": "^1.0.1" - } - }, - "is-boolean-object": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.2.tgz", - "integrity": "sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==", - "requires": { - "call-bind": "^1.0.2", - "has-tostringtag": "^1.0.0" - } - }, - "is-callable": { - "version": "1.2.7", - "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz", - "integrity": "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==" - }, - "is-core-module": { - "version": "2.13.0", - "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.13.0.tgz", - "integrity": "sha512-Z7dk6Qo8pOCp3l4tsX2C5ZVas4V+UxwQodwZhLopL91TX8UyyHEXafPcyoeeWuLrwzHcr3igO78wNLwHJHsMCQ==", - "requires": { - "has": "^1.0.3" - } - }, - "is-date-object": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.5.tgz", - "integrity": "sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==", - "requires": { - "has-tostringtag": "^1.0.0" - } - }, - "is-extglob": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", - "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==" - }, - "is-finalizationregistry": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-finalizationregistry/-/is-finalizationregistry-1.0.2.tgz", - "integrity": "sha512-0by5vtUJs8iFQb5TYUHHPudOR+qXYIMKtiUzvLIZITZUjknFmziyBJuLhVRc+Ds0dREFlskDNJKYIdIzu/9pfw==", - "requires": { - "call-bind": "^1.0.2" - } - }, - "is-generator-function": { - "version": "1.0.10", - "resolved": "https://registry.npmjs.org/is-generator-function/-/is-generator-function-1.0.10.tgz", - "integrity": "sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A==", - "requires": { - "has-tostringtag": "^1.0.0" - } - }, - "is-glob": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", - "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", - "requires": { - "is-extglob": "^2.1.1" - } - }, - "is-map": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/is-map/-/is-map-2.0.2.tgz", - "integrity": "sha512-cOZFQQozTha1f4MxLFzlgKYPTyj26picdZTx82hbc/Xf4K/tZOOXSCkMvU4pKioRXGDLJRn0GM7Upe7kR721yg==" - }, - "is-negative-zero": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.2.tgz", - "integrity": "sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==" - }, - "is-number": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", - "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==" - }, - "is-number-object": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.7.tgz", - "integrity": "sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==", - "requires": { - "has-tostringtag": "^1.0.0" - } - }, - "is-path-inside": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz", - "integrity": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==" - }, - "is-regex": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz", - "integrity": "sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==", - "requires": { - "call-bind": "^1.0.2", - "has-tostringtag": "^1.0.0" - } - }, - "is-set": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/is-set/-/is-set-2.0.2.tgz", - "integrity": "sha512-+2cnTEZeY5z/iXGbLhPrOAaK/Mau5k5eXq9j14CpRTftq0pAJu2MwVRSZhyZWBzx3o6X795Lz6Bpb6R0GKf37g==" - }, - "is-shared-array-buffer": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.2.tgz", - "integrity": "sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==", - "requires": { - "call-bind": "^1.0.2" - } - }, - "is-string": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz", - "integrity": "sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==", - "requires": { - "has-tostringtag": "^1.0.0" - } - }, - "is-symbol": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.4.tgz", - "integrity": "sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==", - "requires": { - "has-symbols": "^1.0.2" - } - }, - "is-typed-array": { - "version": "1.1.12", - "resolved": "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.12.tgz", - "integrity": "sha512-Z14TF2JNG8Lss5/HMqt0//T9JeHXttXy5pH/DBU4vi98ozO2btxzq9MwYDZYnKwU8nRsz/+GVFVRDq3DkVuSPg==", - "requires": { - "which-typed-array": "^1.1.11" - } - }, - "is-weakmap": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/is-weakmap/-/is-weakmap-2.0.1.tgz", - "integrity": "sha512-NSBR4kH5oVj1Uwvv970ruUkCV7O1mzgVFO4/rev2cLRda9Tm9HrL70ZPut4rOHgY0FNrUu9BCbXA2sdQ+x0chA==" - }, - "is-weakref": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-weakref/-/is-weakref-1.0.2.tgz", - "integrity": "sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==", - "requires": { - "call-bind": "^1.0.2" - } - }, - "is-weakset": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/is-weakset/-/is-weakset-2.0.2.tgz", - "integrity": "sha512-t2yVvttHkQktwnNNmBQ98AhENLdPUTDTE21uPqAQ0ARwQfGeQKRVS0NNurH7bTf7RrvcVn1OOge45CnBeHCSmg==", - "requires": { - "call-bind": "^1.0.2", - "get-intrinsic": "^1.1.1" - } - }, - "isarray": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz", - "integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==" - }, - "isexe": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", - "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==" - }, - "iterator.prototype": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/iterator.prototype/-/iterator.prototype-1.1.1.tgz", - "integrity": "sha512-9E+nePc8C9cnQldmNl6bgpTY6zI4OPRZd97fhJ/iVZ1GifIUDVV5F6x1nEDqpe8KaMEZGT4xgrwKQDxXnjOIZQ==", - "requires": { - "define-properties": "^1.2.0", - "get-intrinsic": "^1.2.1", - "has-symbols": "^1.0.3", - "reflect.getprototypeof": "^1.0.3" - } - }, - "js-tokens": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", - "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==" - }, - "js-yaml": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", - "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", - "requires": { - "argparse": "^2.0.1" - } - }, - "json-buffer": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz", - "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==" - }, - "json-schema-traverse": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", - "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==" - }, - "json-stable-stringify-without-jsonify": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", - "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==" - }, - "json5": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.2.tgz", - "integrity": "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==", - "requires": { - "minimist": "^1.2.0" - } - }, - "jsx-ast-utils": { - "version": "3.3.5", - "resolved": "https://registry.npmjs.org/jsx-ast-utils/-/jsx-ast-utils-3.3.5.tgz", - "integrity": "sha512-ZZow9HBI5O6EPgSJLUb8n2NKgmVWTwCvHGwFuJlMjvLFqlGG6pjirPhtdsseaLZjSibD8eegzmYpUZwoIlj2cQ==", - "requires": { - "array-includes": "^3.1.6", - "array.prototype.flat": "^1.3.1", - "object.assign": "^4.1.4", - "object.values": "^1.1.6" - } - }, - "keyv": { - "version": "4.5.3", - "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.3.tgz", - "integrity": "sha512-QCiSav9WaX1PgETJ+SpNnx2PRRapJ/oRSXM4VO5OGYGSjrxbKPVFVhB3l2OCbLCk329N8qyAtsJjSjvVBWzEug==", - "requires": { - "json-buffer": "3.0.1" - } - }, - "language-subtag-registry": { - "version": "0.3.22", - "resolved": "https://registry.npmjs.org/language-subtag-registry/-/language-subtag-registry-0.3.22.tgz", - "integrity": "sha512-tN0MCzyWnoz/4nHS6uxdlFWoUZT7ABptwKPQ52Ea7URk6vll88bWBVhodtnlfEuCcKWNGoc+uGbw1cwa9IKh/w==" - }, - "language-tags": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/language-tags/-/language-tags-1.0.5.tgz", - "integrity": "sha512-qJhlO9cGXi6hBGKoxEG/sKZDAHD5Hnu9Hs4WbOY3pCWXDhw0N8x1NenNzm2EnNLkLkk7J2SdxAkDSbb6ftT+UQ==", - "requires": { - "language-subtag-registry": "~0.3.2" - } - }, - "levn": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", - "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", - "requires": { - "prelude-ls": "^1.2.1", - "type-check": "~0.4.0" - } - }, - "locate-path": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", - "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", - "requires": { - "p-locate": "^5.0.0" - } - }, - "lodash.merge": { - "version": "4.6.2", - "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", - "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==" - }, - "loose-envify": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz", - "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==", - "requires": { - "js-tokens": "^3.0.0 || ^4.0.0" - } - }, - "lru-cache": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", - "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", - "requires": { - "yallist": "^4.0.0" - } - }, - "merge2": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", - "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==" - }, - "micromatch": { - "version": "4.0.5", - "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", - "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", - "requires": { - "braces": "^3.0.2", - "picomatch": "^2.3.1" - } - }, - "minimatch": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", - "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", - "requires": { - "brace-expansion": "^1.1.7" - } - }, - "minimist": { - "version": "1.2.8", - "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", - "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==" - }, - "ms": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", - "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" - }, - "nanoid": { - "version": "3.3.6", - "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.6.tgz", - "integrity": "sha512-BGcqMMJuToF7i1rt+2PWSNVnWIkGCU78jBG3RxO/bZlnZPK2Cmi2QaffxGO/2RvWi9sL+FAiRiXMgsyxQ1DIDA==" - }, - "natural-compare": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", - "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==" - }, - "next": { - "version": "13.4.19", - "resolved": "https://registry.npmjs.org/next/-/next-13.4.19.tgz", - "integrity": "sha512-HuPSzzAbJ1T4BD8e0bs6B9C1kWQ6gv8ykZoRWs5AQoiIuqbGHHdQO7Ljuvg05Q0Z24E2ABozHe6FxDvI6HfyAw==", - "requires": { - "@next/env": "13.4.19", - "@next/swc-darwin-arm64": "13.4.19", - "@next/swc-darwin-x64": "13.4.19", - "@next/swc-linux-arm64-gnu": "13.4.19", - "@next/swc-linux-arm64-musl": "13.4.19", - "@next/swc-linux-x64-gnu": "13.4.19", - "@next/swc-linux-x64-musl": "13.4.19", - "@next/swc-win32-arm64-msvc": "13.4.19", - "@next/swc-win32-ia32-msvc": "13.4.19", - "@next/swc-win32-x64-msvc": "13.4.19", - "@swc/helpers": "0.5.1", - "busboy": "1.6.0", - "caniuse-lite": "^1.0.30001406", - "postcss": "8.4.14", - "styled-jsx": "5.1.1", - "watchpack": "2.4.0", - "zod": "3.21.4" - } - }, - "object-assign": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", - "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==" - }, - "object-inspect": { - "version": "1.12.3", - "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.12.3.tgz", - "integrity": "sha512-geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g==" - }, - "object-keys": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", - "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==" - }, - "object.assign": { - "version": "4.1.4", - "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.4.tgz", - "integrity": "sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ==", - "requires": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.4", - "has-symbols": "^1.0.3", - "object-keys": "^1.1.1" - } - }, - "object.entries": { - "version": "1.1.7", - "resolved": "https://registry.npmjs.org/object.entries/-/object.entries-1.1.7.tgz", - "integrity": "sha512-jCBs/0plmPsOnrKAfFQXRG2NFjlhZgjjcBLSmTnEhU8U6vVTsVe8ANeQJCHTl3gSsI4J+0emOoCgoKlmQPMgmA==", - "requires": { - "call-bind": "^1.0.2", - "define-properties": "^1.2.0", - "es-abstract": "^1.22.1" - } - }, - "object.fromentries": { - "version": "2.0.7", - "resolved": "https://registry.npmjs.org/object.fromentries/-/object.fromentries-2.0.7.tgz", - "integrity": "sha512-UPbPHML6sL8PI/mOqPwsH4G6iyXcCGzLin8KvEPenOZN5lpCNBZZQ+V62vdjB1mQHrmqGQt5/OJzemUA+KJmEA==", - "requires": { - "call-bind": "^1.0.2", - "define-properties": "^1.2.0", - "es-abstract": "^1.22.1" - } - }, - "object.groupby": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/object.groupby/-/object.groupby-1.0.1.tgz", - "integrity": "sha512-HqaQtqLnp/8Bn4GL16cj+CUYbnpe1bh0TtEaWvybszDG4tgxCJuRpV8VGuvNaI1fAnI4lUJzDG55MXcOH4JZcQ==", - "requires": { - "call-bind": "^1.0.2", - "define-properties": "^1.2.0", - "es-abstract": "^1.22.1", - "get-intrinsic": "^1.2.1" - } - }, - "object.hasown": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/object.hasown/-/object.hasown-1.1.3.tgz", - "integrity": "sha512-fFI4VcYpRHvSLXxP7yiZOMAd331cPfd2p7PFDVbgUsYOfCT3tICVqXWngbjr4m49OvsBwUBQ6O2uQoJvy3RexA==", - "requires": { - "define-properties": "^1.2.0", - "es-abstract": "^1.22.1" - } - }, - "object.values": { - "version": "1.1.7", - "resolved": "https://registry.npmjs.org/object.values/-/object.values-1.1.7.tgz", - "integrity": "sha512-aU6xnDFYT3x17e/f0IiiwlGPTy2jzMySGfUB4fq6z7CV8l85CWHDk5ErhyhpfDHhrOMwGFhSQkhMGHaIotA6Ng==", - "requires": { - "call-bind": "^1.0.2", - "define-properties": "^1.2.0", - "es-abstract": "^1.22.1" - } - }, - "once": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", - "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", - "requires": { - "wrappy": "1" - } - }, - "optionator": { - "version": "0.9.3", - "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.3.tgz", - "integrity": "sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg==", - "requires": { - "@aashutoshrathi/word-wrap": "^1.2.3", - "deep-is": "^0.1.3", - "fast-levenshtein": "^2.0.6", - "levn": "^0.4.1", - "prelude-ls": "^1.2.1", - "type-check": "^0.4.0" - } - }, - "p-limit": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", - "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", - "requires": { - "yocto-queue": "^0.1.0" - } - }, - "p-locate": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", - "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", - "requires": { - "p-limit": "^3.0.2" - } - }, - "parent-module": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", - "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", - "requires": { - "callsites": "^3.0.0" - } - }, - "path-exists": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", - "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==" - }, - "path-is-absolute": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", - "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==" - }, - "path-key": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", - "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==" - }, - "path-parse": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", - "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==" - }, - "path-type": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", - "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==" - }, - "picocolors": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", - "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==" - }, - "picomatch": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", - "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==" - }, - "postcss": { - "version": "8.4.14", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.14.tgz", - "integrity": "sha512-E398TUmfAYFPBSdzgeieK2Y1+1cpdxJx8yXbK/m57nRhKSmk1GB2tO4lbLBtlkfPQTDKfe4Xqv1ASWPpayPEig==", - "requires": { - "nanoid": "^3.3.4", - "picocolors": "^1.0.0", - "source-map-js": "^1.0.2" - } - }, - "prelude-ls": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", - "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==" - }, - "prop-types": { - "version": "15.8.1", - "resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.8.1.tgz", - "integrity": "sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==", - "requires": { - "loose-envify": "^1.4.0", - "object-assign": "^4.1.1", - "react-is": "^16.13.1" - } - }, - "prop-types-extra": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/prop-types-extra/-/prop-types-extra-1.1.1.tgz", - "integrity": "sha512-59+AHNnHYCdiC+vMwY52WmvP5dM3QLeoumYuEyceQDi9aEhtwN9zIQ2ZNo25sMyXnbh32h+P1ezDsUpUH3JAew==", - "requires": { - "react-is": "^16.3.2", - "warning": "^4.0.0" - } - }, - "punycode": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.0.tgz", - "integrity": "sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA==" - }, - "queue-microtask": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", - "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==" - }, - "react": { - "version": "18.2.0", - "resolved": "https://registry.npmjs.org/react/-/react-18.2.0.tgz", - "integrity": "sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==", - "requires": { - "loose-envify": "^1.1.0" - } - }, - "react-bootstrap": { - "version": "2.8.0", - "resolved": "https://registry.npmjs.org/react-bootstrap/-/react-bootstrap-2.8.0.tgz", - "integrity": "sha512-e/aNtxl0Z2ozrIaR82jr6Zz7ss9GSoaXpQaxmvtDUsTZIq/XalkduR/ZXP6vbQHz2T4syvjA+4FbtwELxxmpww==", - "requires": { - "@babel/runtime": "^7.21.0", - "@restart/hooks": "^0.4.9", - "@restart/ui": "^1.6.3", - "@types/react-transition-group": "^4.4.5", - "classnames": "^2.3.2", - "dom-helpers": "^5.2.1", - "invariant": "^2.2.4", - "prop-types": "^15.8.1", - "prop-types-extra": "^1.1.0", - "react-transition-group": "^4.4.5", - "uncontrollable": "^7.2.1", - "warning": "^4.0.3" - } - }, - "react-dom": { - "version": "18.2.0", - "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-18.2.0.tgz", - "integrity": "sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g==", - "requires": { - "loose-envify": "^1.1.0", - "scheduler": "^0.23.0" - } - }, - "react-is": { - "version": "16.13.1", - "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz", - "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==" - }, - "react-lifecycles-compat": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/react-lifecycles-compat/-/react-lifecycles-compat-3.0.4.tgz", - "integrity": "sha512-fBASbA6LnOU9dOU2eW7aQ8xmYBSXUIWr+UmF9b1efZBazGNO+rcXT/icdKnYm2pTwcRylVUYwW7H1PHfLekVzA==" - }, - "react-transition-group": { - "version": "4.4.5", - "resolved": "https://registry.npmjs.org/react-transition-group/-/react-transition-group-4.4.5.tgz", - "integrity": "sha512-pZcd1MCJoiKiBR2NRxeCRg13uCXbydPnmB4EOeRrY7480qNWO8IIgQG6zlDkm6uRMsURXPuKq0GWtiM59a5Q6g==", - "requires": { - "@babel/runtime": "^7.5.5", - "dom-helpers": "^5.0.1", - "loose-envify": "^1.4.0", - "prop-types": "^15.6.2" - } - }, - "reflect.getprototypeof": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/reflect.getprototypeof/-/reflect.getprototypeof-1.0.4.tgz", - "integrity": "sha512-ECkTw8TmJwW60lOTR+ZkODISW6RQ8+2CL3COqtiJKLd6MmB45hN51HprHFziKLGkAuTGQhBb91V8cy+KHlaCjw==", - "requires": { - "call-bind": "^1.0.2", - "define-properties": "^1.2.0", - "es-abstract": "^1.22.1", - "get-intrinsic": "^1.2.1", - "globalthis": "^1.0.3", - "which-builtin-type": "^1.1.3" - } - }, - "regenerator-runtime": { - "version": "0.14.0", - "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.14.0.tgz", - "integrity": "sha512-srw17NI0TUWHuGa5CFGGmhfNIeja30WMBfbslPNhf6JrqQlLN5gcrvig1oqPxiVaXb0oW0XRKtH6Nngs5lKCIA==" - }, - "regexp.prototype.flags": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.5.0.tgz", - "integrity": "sha512-0SutC3pNudRKgquxGoRGIz946MZVHqbNfPjBdxeOhBrdgDKlRoXmYLQN9xRbrR09ZXWeGAdPuif7egofn6v5LA==", - "requires": { - "call-bind": "^1.0.2", - "define-properties": "^1.2.0", - "functions-have-names": "^1.2.3" - } - }, - "resolve": { - "version": "1.22.4", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.4.tgz", - "integrity": "sha512-PXNdCiPqDqeUou+w1C2eTQbNfxKSuMxqTCuvlmmMsk1NWHL5fRrhY6Pl0qEYYc6+QqGClco1Qj8XnjPego4wfg==", - "requires": { - "is-core-module": "^2.13.0", - "path-parse": "^1.0.7", - "supports-preserve-symlinks-flag": "^1.0.0" - } - }, - "resolve-from": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", - "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==" - }, - "resolve-pkg-maps": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/resolve-pkg-maps/-/resolve-pkg-maps-1.0.0.tgz", - "integrity": "sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==" - }, - "reusify": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", - "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==" - }, - "rimraf": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", - "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", - "requires": { - "glob": "^7.1.3" - } - }, - "run-parallel": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", - "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", - "requires": { - "queue-microtask": "^1.2.2" - } - }, - "safe-array-concat": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/safe-array-concat/-/safe-array-concat-1.0.1.tgz", - "integrity": "sha512-6XbUAseYE2KtOuGueyeobCySj9L4+66Tn6KQMOPQJrAJEowYKW/YR/MGJZl7FdydUdaFu4LYyDZjxf4/Nmo23Q==", - "requires": { - "call-bind": "^1.0.2", - "get-intrinsic": "^1.2.1", - "has-symbols": "^1.0.3", - "isarray": "^2.0.5" - } - }, - "safe-regex-test": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/safe-regex-test/-/safe-regex-test-1.0.0.tgz", - "integrity": "sha512-JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA==", - "requires": { - "call-bind": "^1.0.2", - "get-intrinsic": "^1.1.3", - "is-regex": "^1.1.4" - } - }, - "scheduler": { - "version": "0.23.0", - "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.23.0.tgz", - "integrity": "sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw==", - "requires": { - "loose-envify": "^1.1.0" - } - }, - "semver": { - "version": "7.5.4", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", - "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", - "requires": { - "lru-cache": "^6.0.0" - } - }, - "shebang-command": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", - "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", - "requires": { - "shebang-regex": "^3.0.0" - } - }, - "shebang-regex": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", - "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==" - }, - "side-channel": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz", - "integrity": "sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==", - "requires": { - "call-bind": "^1.0.0", - "get-intrinsic": "^1.0.2", - "object-inspect": "^1.9.0" - } - }, - "slash": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", - "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==" - }, - "source-map-js": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.0.2.tgz", - "integrity": "sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==" - }, - "streamsearch": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/streamsearch/-/streamsearch-1.1.0.tgz", - "integrity": "sha512-Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg==" - }, - "string.prototype.matchall": { - "version": "4.0.9", - "resolved": "https://registry.npmjs.org/string.prototype.matchall/-/string.prototype.matchall-4.0.9.tgz", - "integrity": "sha512-6i5hL3MqG/K2G43mWXWgP+qizFW/QH/7kCNN13JrJS5q48FN5IKksLDscexKP3dnmB6cdm9jlNgAsWNLpSykmA==", - "requires": { - "call-bind": "^1.0.2", - "define-properties": "^1.2.0", - "es-abstract": "^1.22.1", - "get-intrinsic": "^1.2.1", - "has-symbols": "^1.0.3", - "internal-slot": "^1.0.5", - "regexp.prototype.flags": "^1.5.0", - "side-channel": "^1.0.4" - } - }, - "string.prototype.trim": { - "version": "1.2.8", - "resolved": "https://registry.npmjs.org/string.prototype.trim/-/string.prototype.trim-1.2.8.tgz", - "integrity": "sha512-lfjY4HcixfQXOfaqCvcBuOIapyaroTXhbkfJN3gcB1OtyupngWK4sEET9Knd0cXd28kTUqu/kHoV4HKSJdnjiQ==", - "requires": { - "call-bind": "^1.0.2", - "define-properties": "^1.2.0", - "es-abstract": "^1.22.1" - } - }, - "string.prototype.trimend": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.7.tgz", - "integrity": "sha512-Ni79DqeB72ZFq1uH/L6zJ+DKZTkOtPIHovb3YZHQViE+HDouuU4mBrLOLDn5Dde3RF8qw5qVETEjhu9locMLvA==", - "requires": { - "call-bind": "^1.0.2", - "define-properties": "^1.2.0", - "es-abstract": "^1.22.1" - } - }, - "string.prototype.trimstart": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.7.tgz", - "integrity": "sha512-NGhtDFu3jCEm7B4Fy0DpLewdJQOZcQ0rGbwQ/+stjnrp2i+rlKeCvos9hOIeCmqwratM47OBxY7uFZzjxHXmrg==", - "requires": { - "call-bind": "^1.0.2", - "define-properties": "^1.2.0", - "es-abstract": "^1.22.1" - } - }, - "strip-ansi": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", - "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", - "requires": { - "ansi-regex": "^5.0.1" - } - }, - "strip-bom": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", - "integrity": "sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==" - }, - "strip-json-comments": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", - "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==" - }, - "styled-jsx": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/styled-jsx/-/styled-jsx-5.1.1.tgz", - "integrity": "sha512-pW7uC1l4mBZ8ugbiZrcIsiIvVx1UmTfw7UkC3Um2tmfUq9Bhk8IiyEIPl6F8agHgjzku6j0xQEZbfA5uSgSaCw==", - "requires": { - "client-only": "0.0.1" - } - }, - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "requires": { - "has-flag": "^4.0.0" - } - }, - "supports-preserve-symlinks-flag": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", - "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==" - }, - "tapable": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/tapable/-/tapable-2.2.1.tgz", - "integrity": "sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==" - }, - "text-table": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", - "integrity": "sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==" - }, - "to-regex-range": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", - "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", - "requires": { - "is-number": "^7.0.0" - } - }, - "ts-api-utils": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/ts-api-utils/-/ts-api-utils-1.0.3.tgz", - "integrity": "sha512-wNMeqtMz5NtwpT/UZGY5alT+VoKdSsOOP/kqHFcUW1P/VRhH2wJ48+DN2WwUliNbQ976ETwDL0Ifd2VVvgonvg==", - "requires": {} - }, - "tsconfig-paths": { - "version": "3.14.2", - "resolved": "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.14.2.tgz", - "integrity": "sha512-o/9iXgCYc5L/JxCHPe3Hvh8Q/2xm5Z+p18PESBU6Ff33695QnCHBEjcytY2q19ua7Mbl/DavtBOLq+oG0RCL+g==", - "requires": { - "@types/json5": "^0.0.29", - "json5": "^1.0.2", - "minimist": "^1.2.6", - "strip-bom": "^3.0.0" - } - }, - "tslib": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", - "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==" - }, - "type-check": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", - "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", - "requires": { - "prelude-ls": "^1.2.1" - } - }, - "type-fest": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", - "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==" - }, - "typed-array-buffer": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/typed-array-buffer/-/typed-array-buffer-1.0.0.tgz", - "integrity": "sha512-Y8KTSIglk9OZEr8zywiIHG/kmQ7KWyjseXs1CbSo8vC42w7hg2HgYTxSWwP0+is7bWDc1H+Fo026CpHFwm8tkw==", - "requires": { - "call-bind": "^1.0.2", - "get-intrinsic": "^1.2.1", - "is-typed-array": "^1.1.10" - } - }, - "typed-array-byte-length": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/typed-array-byte-length/-/typed-array-byte-length-1.0.0.tgz", - "integrity": "sha512-Or/+kvLxNpeQ9DtSydonMxCx+9ZXOswtwJn17SNLvhptaXYDJvkFFP5zbfU/uLmvnBJlI4yrnXRxpdWH/M5tNA==", - "requires": { - "call-bind": "^1.0.2", - "for-each": "^0.3.3", - "has-proto": "^1.0.1", - "is-typed-array": "^1.1.10" - } - }, - "typed-array-byte-offset": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/typed-array-byte-offset/-/typed-array-byte-offset-1.0.0.tgz", - "integrity": "sha512-RD97prjEt9EL8YgAgpOkf3O4IF9lhJFr9g0htQkm0rchFp/Vx7LW5Q8fSXXub7BXAODyUQohRMyOc3faCPd0hg==", - "requires": { - "available-typed-arrays": "^1.0.5", - "call-bind": "^1.0.2", - "for-each": "^0.3.3", - "has-proto": "^1.0.1", - "is-typed-array": "^1.1.10" - } - }, - "typed-array-length": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/typed-array-length/-/typed-array-length-1.0.4.tgz", - "integrity": "sha512-KjZypGq+I/H7HI5HlOoGHkWUUGq+Q0TPhQurLbyrVrvnKTBgzLhIJ7j6J/XTQOi0d1RjyZ0wdas8bKs2p0x3Ng==", - "requires": { - "call-bind": "^1.0.2", - "for-each": "^0.3.3", - "is-typed-array": "^1.1.9" - } - }, - "typescript": { - "version": "5.2.2", - "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.2.2.tgz", - "integrity": "sha512-mI4WrpHsbCIcwT9cF4FZvr80QUeKvsUsUvKDoR+X/7XHQH98xYD8YHZg7ANtz2GtZt/CBq2QJ0thkGJMHfqc1w==" - }, - "unbox-primitive": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.2.tgz", - "integrity": "sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==", - "requires": { - "call-bind": "^1.0.2", - "has-bigints": "^1.0.2", - "has-symbols": "^1.0.3", - "which-boxed-primitive": "^1.0.2" - } - }, - "uncontrollable": { - "version": "7.2.1", - "resolved": "https://registry.npmjs.org/uncontrollable/-/uncontrollable-7.2.1.tgz", - "integrity": "sha512-svtcfoTADIB0nT9nltgjujTi7BzVmwjZClOmskKu/E8FW9BXzg9os8OLr4f8Dlnk0rYWJIWr4wv9eKUXiQvQwQ==", - "requires": { - "@babel/runtime": "^7.6.3", - "@types/react": ">=16.9.11", - "invariant": "^2.2.4", - "react-lifecycles-compat": "^3.0.4" - } - }, - "uri-js": { - "version": "4.4.1", - "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", - "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", - "requires": { - "punycode": "^2.1.0" - } - }, - "warning": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/warning/-/warning-4.0.3.tgz", - "integrity": "sha512-rpJyN222KWIvHJ/F53XSZv0Zl/accqHR8et1kpaMTD/fLCRxtV8iX8czMzY7sVZupTI3zcUTg8eycS2kNF9l6w==", - "requires": { - "loose-envify": "^1.0.0" - } - }, - "watchpack": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-2.4.0.tgz", - "integrity": "sha512-Lcvm7MGST/4fup+ifyKi2hjyIAwcdI4HRgtvTpIUxBRhB+RFtUh8XtDOxUfctVCnhVi+QQj49i91OyvzkJl6cg==", - "requires": { - "glob-to-regexp": "^0.4.1", - "graceful-fs": "^4.1.2" - } - }, - "which": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", - "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", - "requires": { - "isexe": "^2.0.0" - } - }, - "which-boxed-primitive": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz", - "integrity": "sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==", - "requires": { - "is-bigint": "^1.0.1", - "is-boolean-object": "^1.1.0", - "is-number-object": "^1.0.4", - "is-string": "^1.0.5", - "is-symbol": "^1.0.3" - } - }, - "which-builtin-type": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/which-builtin-type/-/which-builtin-type-1.1.3.tgz", - "integrity": "sha512-YmjsSMDBYsM1CaFiayOVT06+KJeXf0o5M/CAd4o1lTadFAtacTUM49zoYxr/oroopFDfhvN6iEcBxUyc3gvKmw==", - "requires": { - "function.prototype.name": "^1.1.5", - "has-tostringtag": "^1.0.0", - "is-async-function": "^2.0.0", - "is-date-object": "^1.0.5", - "is-finalizationregistry": "^1.0.2", - "is-generator-function": "^1.0.10", - "is-regex": "^1.1.4", - "is-weakref": "^1.0.2", - "isarray": "^2.0.5", - "which-boxed-primitive": "^1.0.2", - "which-collection": "^1.0.1", - "which-typed-array": "^1.1.9" - } - }, - "which-collection": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/which-collection/-/which-collection-1.0.1.tgz", - "integrity": "sha512-W8xeTUwaln8i3K/cY1nGXzdnVZlidBcagyNFtBdD5kxnb4TvGKR7FfSIS3mYpwWS1QUCutfKz8IY8RjftB0+1A==", - "requires": { - "is-map": "^2.0.1", - "is-set": "^2.0.1", - "is-weakmap": "^2.0.1", - "is-weakset": "^2.0.1" - } - }, - "which-typed-array": { - "version": "1.1.11", - "resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.11.tgz", - "integrity": "sha512-qe9UWWpkeG5yzZ0tNYxDmd7vo58HDBc39mZ0xWWpolAGADdFOzkfamWLDxkOWcvHQKVmdTyQdLD4NOfjLWTKew==", - "requires": { - "available-typed-arrays": "^1.0.5", - "call-bind": "^1.0.2", - "for-each": "^0.3.3", - "gopd": "^1.0.1", - "has-tostringtag": "^1.0.0" - } - }, - "wrappy": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", - "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==" - }, - "yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==" - }, - "yocto-queue": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", - "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==" - }, - "zod": { - "version": "3.21.4", - "resolved": "https://registry.npmjs.org/zod/-/zod-3.21.4.tgz", - "integrity": "sha512-m46AKbrzKVzOzs/DZgVnG5H55N1sv1M8qZU3A8RIKbs3mrACDNeIOeilDymVb2HdmP8uwshOCF4uJ8uM9rCqJw==" - } - } -} diff --git a/site-search/site-search/package.json b/site-search/site-search/package.json deleted file mode 100644 index 581db6ee..00000000 --- a/site-search/site-search/package.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "name": "site-search", - "version": "0.1.0", - "private": true, - "scripts": { - "dev": "next dev", - "build": "next build", - "start": "next start", - "lint": "next lint" - }, - "dependencies": { - "@types/node": "20.6.0", - "@types/react": "18.2.21", - "@types/react-bootstrap": "^0.32.32", - "@types/react-dom": "18.2.7", - "bootstrap": "^5.3.1", - "eslint": "8.49.0", - "eslint-config-next": "13.4.19", - "next": "13.4.19", - "react": "18.2.0", - "react-bootstrap": "^2.8.0", - "react-dom": "18.2.0", - "typescript": "5.2.2" - } -} diff --git a/site-search/site-search/pages/_app.tsx b/site-search/site-search/pages/_app.tsx deleted file mode 100644 index 542feaa4..00000000 --- a/site-search/site-search/pages/_app.tsx +++ /dev/null @@ -1,8 +0,0 @@ -// import 'bootstrap/dist/css/bootstrap.min.css'; -import 'bootstrap/dist/css/bootstrap.css'; -import '@/styles/globals.css' -import type { AppProps } from 'next/app' - -export default function App({ Component, pageProps }: AppProps) { - return -} diff --git a/site-search/site-search/pages/_document.tsx b/site-search/site-search/pages/_document.tsx deleted file mode 100644 index 54e8bf3e..00000000 --- a/site-search/site-search/pages/_document.tsx +++ /dev/null @@ -1,13 +0,0 @@ -import { Html, Head, Main, NextScript } from 'next/document' - -export default function Document() { - return ( - - - -
- - - - ) -} diff --git a/site-search/site-search/pages/advanced-search/index.tsx b/site-search/site-search/pages/advanced-search/index.tsx deleted file mode 100644 index 888b9ba7..00000000 --- a/site-search/site-search/pages/advanced-search/index.tsx +++ /dev/null @@ -1,12 +0,0 @@ -import Header from "@/components/Header" - -export default function AdvancedSearch() { - return ( - <> -
-
-

Advanced search - Incomplete

-
- - ) -} \ No newline at end of file diff --git a/site-search/site-search/pages/api/hello.ts b/site-search/site-search/pages/api/hello.ts deleted file mode 100644 index f8bcc7e5..00000000 --- a/site-search/site-search/pages/api/hello.ts +++ /dev/null @@ -1,13 +0,0 @@ -// Next.js API route support: https://nextjs.org/docs/api-routes/introduction -import type { NextApiRequest, NextApiResponse } from 'next' - -type Data = { - name: string -} - -export default function handler( - req: NextApiRequest, - res: NextApiResponse -) { - res.status(200).json({ name: 'John Doe' }) -} diff --git a/site-search/site-search/pages/index.tsx b/site-search/site-search/pages/index.tsx deleted file mode 100644 index dbb3a834..00000000 --- a/site-search/site-search/pages/index.tsx +++ /dev/null @@ -1,49 +0,0 @@ -import Head from 'next/head' -import Image from 'next/image' -import Button from 'react-bootstrap/Button'; -import Header from '@/components/Header' -import Link from 'next/link'; - - -// import { Inter } from 'next/font/google' -// import 'bootstrap/dist/css/bootstrap.min.css'; -// import styles from '@/styles/Home.module.css' - -// const inter = Inter({ subsets: ['latin'] }) - -export default function Home() { - return ( - <> - - Site Search - - - - -{/* -
- -
*/} - -
- -
- - -

Site Search

-
-
- -
- -
- - - -
- -
-
- - ) -} diff --git a/site-search/site-search/public/favicon.ico b/site-search/site-search/public/favicon.ico deleted file mode 100644 index 718d6fea4835ec2d246af9800eddb7ffb276240c..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 25931 zcmeHv30#a{`}aL_*G&7qml|y<+KVaDM2m#dVr!KsA!#An?kSQM(q<_dDNCpjEux83 zLb9Z^XxbDl(w>%i@8hT6>)&Gu{h#Oeyszu?xtw#Zb1mO{pgX9699l+Qppw7jXaYf~-84xW z)w4x8?=youko|}Vr~(D$UXIbiXABHh`p1?nn8Po~fxRJv}|0e(BPs|G`(TT%kKVJAdg5*Z|x0leQq0 zkdUBvb#>9F()jo|T~kx@OM8$9wzs~t2l;K=woNssA3l6|sx2r3+kdfVW@e^8e*E}v zA1y5{bRi+3Z`uD3{F7LgFJDdvm;nJilkzDku>BwXH(8ItVCXk*-lSJnR?-2UN%hJ){&rlvg`CDTj z)Bzo!3v7Ou#83zEDEFcKt(f1E0~=rqeEbTnMvWR#{+9pg%7G8y>u1OVRUSoox-ovF z2Ydma(;=YuBY(eI|04{hXzZD6_f(v~H;C~y5=DhAC{MMS>2fm~1H_t2$56pc$NH8( z5bH|<)71dV-_oCHIrzrT`2s-5w_+2CM0$95I6X8p^r!gHp+j_gd;9O<1~CEQQGS8) zS9Qh3#p&JM-G8rHekNmKVewU;pJRcTAog68KYo^dRo}(M>36U4Us zfgYWSiHZL3;lpWT=zNAW>Dh#mB!_@Lg%$ms8N-;aPqMn+C2HqZgz&9~Eu z4|Kp<`$q)Uw1R?y(~S>ePdonHxpV1#eSP1B;Ogo+-Pk}6#0GsZZ5!||ev2MGdh}_m z{DeR7?0-1^zVs&`AV6Vt;r3`I`OI_wgs*w=eO%_#7Kepl{B@xiyCANc(l zzIyd4y|c6PXWq9-|KM8(zIk8LPk(>a)zyFWjhT!$HJ$qX1vo@d25W<fvZQ2zUz5WRc(UnFMKHwe1| zWmlB1qdbiA(C0jmnV<}GfbKtmcu^2*P^O?MBLZKt|As~ge8&AAO~2K@zbXelK|4T<{|y4`raF{=72kC2Kn(L4YyenWgrPiv z@^mr$t{#X5VuIMeL!7Ab6_kG$&#&5p*Z{+?5U|TZ`B!7llpVmp@skYz&n^8QfPJzL z0G6K_OJM9x+Wu2gfN45phANGt{7=C>i34CV{Xqlx(fWpeAoj^N0Biu`w+MVcCUyU* zDZuzO0>4Z6fbu^T_arWW5n!E45vX8N=bxTVeFoep_G#VmNlQzAI_KTIc{6>c+04vr zx@W}zE5JNSU>!THJ{J=cqjz+4{L4A{Ob9$ZJ*S1?Ggg3klFp!+Y1@K+pK1DqI|_gq z5ZDXVpge8-cs!o|;K73#YXZ3AShj50wBvuq3NTOZ`M&qtjj#GOFfgExjg8Gn8>Vq5 z`85n+9|!iLCZF5$HJ$Iu($dm?8~-ofu}tEc+-pyke=3!im#6pk_Wo8IA|fJwD&~~F zc16osQ)EBo58U7XDuMexaPRjU@h8tXe%S{fA0NH3vGJFhuyyO!Uyl2^&EOpX{9As0 zWj+P>{@}jxH)8|r;2HdupP!vie{sJ28b&bo!8`D^x}TE$%zXNb^X1p@0PJ86`dZyj z%ce7*{^oo+6%&~I!8hQy-vQ7E)0t0ybH4l%KltWOo~8cO`T=157JqL(oq_rC%ea&4 z2NcTJe-HgFjNg-gZ$6!Y`SMHrlj}Etf7?r!zQTPPSv}{so2e>Fjs1{gzk~LGeesX%r(Lh6rbhSo_n)@@G-FTQy93;l#E)hgP@d_SGvyCp0~o(Y;Ee8{ zdVUDbHm5`2taPUOY^MAGOw*>=s7=Gst=D+p+2yON!0%Hk` zz5mAhyT4lS*T3LS^WSxUy86q&GnoHxzQ6vm8)VS}_zuqG?+3td68_x;etQAdu@sc6 zQJ&5|4(I?~3d-QOAODHpZ=hlSg(lBZ!JZWCtHHSj`0Wh93-Uk)_S%zsJ~aD>{`A0~ z9{AG(e|q3g5B%wYKRxiL2Y$8(4w6bzchKuloQW#e&S3n+P- z8!ds-%f;TJ1>)v)##>gd{PdS2Oc3VaR`fr=`O8QIO(6(N!A?pr5C#6fc~Ge@N%Vvu zaoAX2&(a6eWy_q&UwOhU)|P3J0Qc%OdhzW=F4D|pt0E4osw;%<%Dn58hAWD^XnZD= z>9~H(3bmLtxpF?a7su6J7M*x1By7YSUbxGi)Ot0P77`}P3{)&5Un{KD?`-e?r21!4vTTnN(4Y6Lin?UkSM z`MXCTC1@4A4~mvz%Rh2&EwY))LeoT=*`tMoqcEXI>TZU9WTP#l?uFv+@Dn~b(>xh2 z;>B?;Tz2SR&KVb>vGiBSB`@U7VIWFSo=LDSb9F{GF^DbmWAfpms8Sx9OX4CnBJca3 zlj9(x!dIjN?OG1X4l*imJNvRCk}F%!?SOfiOq5y^mZW)jFL@a|r-@d#f7 z2gmU8L3IZq0ynIws=}~m^#@&C%J6QFo~Mo4V`>v7MI-_!EBMMtb%_M&kvAaN)@ZVw z+`toz&WG#HkWDjnZE!6nk{e-oFdL^$YnbOCN}JC&{$#$O27@|Tn-skXr)2ml2~O!5 zX+gYoxhoc7qoU?C^3~&!U?kRFtnSEecWuH0B0OvLodgUAi}8p1 zrO6RSXHH}DMc$&|?D004DiOVMHV8kXCP@7NKB zgaZq^^O<7PoKEp72kby@W0Z!Y*Ay{&vfg#C&gG@YVR9g?FEocMUi1gSN$+V+ayF45{a zuDZDTN}mS|;BO%gEf}pjBfN2-gIrU#G5~cucA;dokXW89%>AyXJJI z9X4UlIWA|ZYHgbI z5?oFk@A=Ik7lrEQPDH!H+b`7_Y~aDb_qa=B2^Y&Ow41cU=4WDd40dp5(QS-WMN-=Y z9g;6_-JdNU;|6cPwf$ak*aJIcwL@1n$#l~zi{c{EW?T;DaW*E8DYq?Umtz{nJ&w-M zEMyTDrC&9K$d|kZe2#ws6)L=7K+{ zQw{XnV6UC$6-rW0emqm8wJoeZK)wJIcV?dST}Z;G0Arq{dVDu0&4kd%N!3F1*;*pW zR&qUiFzK=@44#QGw7k1`3t_d8&*kBV->O##t|tonFc2YWrL7_eqg+=+k;!F-`^b8> z#KWCE8%u4k@EprxqiV$VmmtiWxDLgnGu$Vs<8rppV5EajBXL4nyyZM$SWVm!wnCj-B!Wjqj5-5dNXukI2$$|Bu3Lrw}z65Lc=1G z^-#WuQOj$hwNGG?*CM_TO8Bg-1+qc>J7k5c51U8g?ZU5n?HYor;~JIjoWH-G>AoUP ztrWWLbRNqIjW#RT*WqZgPJXU7C)VaW5}MiijYbABmzoru6EmQ*N8cVK7a3|aOB#O& zBl8JY2WKfmj;h#Q!pN%9o@VNLv{OUL?rixHwOZuvX7{IJ{(EdPpuVFoQqIOa7giLVkBOKL@^smUA!tZ1CKRK}#SSM)iQHk)*R~?M!qkCruaS!#oIL1c z?J;U~&FfH#*98^G?i}pA{ z9Jg36t4=%6mhY(quYq*vSxptes9qy|7xSlH?G=S@>u>Ebe;|LVhs~@+06N<4CViBk zUiY$thvX;>Tby6z9Y1edAMQaiH zm^r3v#$Q#2T=X>bsY#D%s!bhs^M9PMAcHbCc0FMHV{u-dwlL;a1eJ63v5U*?Q_8JO zT#50!RD619#j_Uf))0ooADz~*9&lN!bBDRUgE>Vud-i5ck%vT=r^yD*^?Mp@Q^v+V zG#-?gKlr}Eeqifb{|So?HM&g91P8|av8hQoCmQXkd?7wIJwb z_^v8bbg`SAn{I*4bH$u(RZ6*xUhuA~hc=8czK8SHEKTzSxgbwi~9(OqJB&gwb^l4+m`k*Q;_?>Y-APi1{k zAHQ)P)G)f|AyjSgcCFps)Fh6Bca*Xznq36!pV6Az&m{O8$wGFD? zY&O*3*J0;_EqM#jh6^gMQKpXV?#1?>$ml1xvh8nSN>-?H=V;nJIwB07YX$e6vLxH( zqYwQ>qxwR(i4f)DLd)-$P>T-no_c!LsN@)8`e;W@)-Hj0>nJ-}Kla4-ZdPJzI&Mce zv)V_j;(3ERN3_@I$N<^|4Lf`B;8n+bX@bHbcZTopEmDI*Jfl)-pFDvo6svPRoo@(x z);_{lY<;);XzT`dBFpRmGrr}z5u1=pC^S-{ce6iXQlLGcItwJ^mZx{m$&DA_oEZ)B{_bYPq-HA zcH8WGoBG(aBU_j)vEy+_71T34@4dmSg!|M8Vf92Zj6WH7Q7t#OHQqWgFE3ARt+%!T z?oLovLVlnf?2c7pTc)~cc^($_8nyKwsN`RA-23ed3sdj(ys%pjjM+9JrctL;dy8a( z@en&CQmnV(()bu|Y%G1-4a(6x{aLytn$T-;(&{QIJB9vMox11U-1HpD@d(QkaJdEb zG{)+6Dos_L+O3NpWo^=gR?evp|CqEG?L&Ut#D*KLaRFOgOEK(Kq1@!EGcTfo+%A&I z=dLbB+d$u{sh?u)xP{PF8L%;YPPW53+@{>5W=Jt#wQpN;0_HYdw1{ksf_XhO4#2F= zyPx6Lx2<92L-;L5PD`zn6zwIH`Jk($?Qw({erA$^bC;q33hv!d!>%wRhj# zal^hk+WGNg;rJtb-EB(?czvOM=H7dl=vblBwAv>}%1@{}mnpUznfq1cE^sgsL0*4I zJ##!*B?=vI_OEVis5o+_IwMIRrpQyT_Sq~ZU%oY7c5JMIADzpD!Upz9h@iWg_>>~j zOLS;wp^i$-E?4<_cp?RiS%Rd?i;f*mOz=~(&3lo<=@(nR!_Rqiprh@weZlL!t#NCc zO!QTcInq|%#>OVgobj{~ixEUec`E25zJ~*DofsQdzIa@5^nOXj2T;8O`l--(QyU^$t?TGY^7#&FQ+2SS3B#qK*k3`ye?8jUYSajE5iBbJls75CCc(m3dk{t?- zopcER9{Z?TC)mk~gpi^kbbu>b-+a{m#8-y2^p$ka4n60w;Sc2}HMf<8JUvhCL0B&Btk)T`ctE$*qNW8L$`7!r^9T+>=<=2qaq-;ll2{`{Rg zc5a0ZUI$oG&j-qVOuKa=*v4aY#IsoM+1|c4Z)<}lEDvy;5huB@1RJPquU2U*U-;gu z=En2m+qjBzR#DEJDO`WU)hdd{Vj%^0V*KoyZ|5lzV87&g_j~NCjwv0uQVqXOb*QrQ zy|Qn`hxx(58c70$E;L(X0uZZ72M1!6oeg)(cdKO ze0gDaTz+ohR-#d)NbAH4x{I(21yjwvBQfmpLu$)|m{XolbgF!pmsqJ#D}(ylp6uC> z{bqtcI#hT#HW=wl7>p!38sKsJ`r8}lt-q%Keqy%u(xk=yiIJiUw6|5IvkS+#?JTBl z8H5(Q?l#wzazujH!8o>1xtn8#_w+397*_cy8!pQGP%K(Ga3pAjsaTbbXJlQF_+m+-UpUUent@xM zg%jqLUExj~o^vQ3Gl*>wh=_gOr2*|U64_iXb+-111aH}$TjeajM+I20xw(((>fej-@CIz4S1pi$(#}P7`4({6QS2CaQS4NPENDp>sAqD z$bH4KGzXGffkJ7R>V>)>tC)uax{UsN*dbeNC*v}#8Y#OWYwL4t$ePR?VTyIs!wea+ z5Urmc)X|^`MG~*dS6pGSbU+gPJoq*^a=_>$n4|P^w$sMBBy@f*Z^Jg6?n5?oId6f{ z$LW4M|4m502z0t7g<#Bx%X;9<=)smFolV&(V^(7Cv2-sxbxopQ!)*#ZRhTBpx1)Fc zNm1T%bONzv6@#|dz(w02AH8OXe>kQ#1FMCzO}2J_mST)+ExmBr9cva-@?;wnmWMOk z{3_~EX_xadgJGv&H@zK_8{(x84`}+c?oSBX*Ge3VdfTt&F}yCpFP?CpW+BE^cWY0^ zb&uBN!Ja3UzYHK-CTyA5=L zEMW{l3Usky#ly=7px648W31UNV@K)&Ub&zP1c7%)`{);I4b0Q<)B}3;NMG2JH=X$U zfIW4)4n9ZM`-yRj67I)YSLDK)qfUJ_ij}a#aZN~9EXrh8eZY2&=uY%2N0UFF7<~%M zsB8=erOWZ>Ct_#^tHZ|*q`H;A)5;ycw*IcmVxi8_0Xk}aJA^ath+E;xg!x+As(M#0=)3!NJR6H&9+zd#iP(m0PIW8$ z1Y^VX`>jm`W!=WpF*{ioM?C9`yOR>@0q=u7o>BP-eSHqCgMDj!2anwH?s%i2p+Q7D zzszIf5XJpE)IG4;d_(La-xenmF(tgAxK`Y4sQ}BSJEPs6N_U2vI{8=0C_F?@7<(G; zo$~G=8p+076G;`}>{MQ>t>7cm=zGtfbdDXm6||jUU|?X?CaE?(<6bKDYKeHlz}DA8 zXT={X=yp_R;HfJ9h%?eWvQ!dRgz&Su*JfNt!Wu>|XfU&68iRikRrHRW|ZxzRR^`eIGt zIeiDgVS>IeExKVRWW8-=A=yA`}`)ZkWBrZD`hpWIxBGkh&f#ijr449~m`j6{4jiJ*C!oVA8ZC?$1RM#K(_b zL9TW)kN*Y4%^-qPpMP7d4)o?Nk#>aoYHT(*g)qmRUb?**F@pnNiy6Fv9rEiUqD(^O zzyS?nBrX63BTRYduaG(0VVG2yJRe%o&rVrLjbxTaAFTd8s;<<@Qs>u(<193R8>}2_ zuwp{7;H2a*X7_jryzriZXMg?bTuegABb^87@SsKkr2)0Gyiax8KQWstw^v#ix45EVrcEhr>!NMhprl$InQMzjSFH54x5k9qHc`@9uKQzvL4ihcq{^B zPrVR=o_ic%Y>6&rMN)hTZsI7I<3&`#(nl+3y3ys9A~&^=4?PL&nd8)`OfG#n zwAMN$1&>K++c{^|7<4P=2y(B{jJsQ0a#U;HTo4ZmWZYvI{+s;Td{Yzem%0*k#)vjpB zia;J&>}ICate44SFYY3vEelqStQWFihx%^vQ@Do(sOy7yR2@WNv7Y9I^yL=nZr3mb zXKV5t@=?-Sk|b{XMhA7ZGB@2hqsx}4xwCW!in#C zI@}scZlr3-NFJ@NFaJlhyfcw{k^vvtGl`N9xSo**rDW4S}i zM9{fMPWo%4wYDG~BZ18BD+}h|GQKc-g^{++3MY>}W_uq7jGHx{mwE9fZiPCoxN$+7 zrODGGJrOkcPQUB(FD5aoS4g~7#6NR^ma7-!>mHuJfY5kTe6PpNNKC9GGRiu^L31uG z$7v`*JknQHsYB!Tm_W{a32TM099djW%5e+j0Ve_ct}IM>XLF1Ap+YvcrLV=|CKo6S zb+9Nl3_YdKP6%Cxy@6TxZ>;4&nTneadr z_ES90ydCev)LV!dN=#(*f}|ZORFdvkYBni^aLbUk>BajeWIOcmHP#8S)*2U~QKI%S zyrLmtPqb&TphJ;>yAxri#;{uyk`JJqODDw%(Z=2`1uc}br^V%>j!gS)D*q*f_-qf8&D;W1dJgQMlaH5er zN2U<%Smb7==vE}dDI8K7cKz!vs^73o9f>2sgiTzWcwY|BMYHH5%Vn7#kiw&eItCqa zIkR2~Q}>X=Ar8W|^Ms41Fm8o6IB2_j60eOeBB1Br!boW7JnoeX6Gs)?7rW0^5psc- zjS16yb>dFn>KPOF;imD}e!enuIniFzv}n$m2#gCCv4jM#ArwlzZ$7@9&XkFxZ4n!V zj3dyiwW4Ki2QG{@i>yuZXQizw_OkZI^-3otXC{!(lUpJF33gI60ak;Uqitp74|B6I zgg{b=Iz}WkhCGj1M=hu4#Aw173YxIVbISaoc z-nLZC*6Tgivd5V`K%GxhBsp@SUU60-rfc$=wb>zdJzXS&-5(NRRodFk;Kxk!S(O(a0e7oY=E( zAyS;Ow?6Q&XA+cnkCb{28_1N8H#?J!*$MmIwLq^*T_9-z^&UE@A(z9oGYtFy6EZef LrJugUA?W`A8`#=m diff --git a/site-search/site-search/public/next.svg b/site-search/site-search/public/next.svg deleted file mode 100644 index 5174b28c..00000000 --- a/site-search/site-search/public/next.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/site-search/site-search/public/vercel.svg b/site-search/site-search/public/vercel.svg deleted file mode 100644 index d2f84222..00000000 --- a/site-search/site-search/public/vercel.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/site-search/site-search/styles/Home.module.css b/site-search/site-search/styles/Home.module.css deleted file mode 100644 index 6676d2c6..00000000 --- a/site-search/site-search/styles/Home.module.css +++ /dev/null @@ -1,229 +0,0 @@ -.main { - display: flex; - flex-direction: column; - justify-content: space-between; - align-items: center; - padding: 6rem; - min-height: 100vh; -} - -.description { - display: inherit; - justify-content: inherit; - align-items: inherit; - font-size: 0.85rem; - max-width: var(--max-width); - width: 100%; - z-index: 2; - font-family: var(--font-mono); -} - -.description a { - display: flex; - justify-content: center; - align-items: center; - gap: 0.5rem; -} - -.description p { - position: relative; - margin: 0; - padding: 1rem; - background-color: rgba(var(--callout-rgb), 0.5); - border: 1px solid rgba(var(--callout-border-rgb), 0.3); - border-radius: var(--border-radius); -} - -.code { - font-weight: 700; - font-family: var(--font-mono); -} - -.grid { - display: grid; - grid-template-columns: repeat(4, minmax(25%, auto)); - max-width: 100%; - width: var(--max-width); -} - -.card { - padding: 1rem 1.2rem; - border-radius: var(--border-radius); - background: rgba(var(--card-rgb), 0); - border: 1px solid rgba(var(--card-border-rgb), 0); - transition: background 200ms, border 200ms; -} - -.card span { - display: inline-block; - transition: transform 200ms; -} - -.card h2 { - font-weight: 600; - margin-bottom: 0.7rem; -} - -.card p { - margin: 0; - opacity: 0.6; - font-size: 0.9rem; - line-height: 1.5; - max-width: 30ch; -} - -.center { - display: flex; - justify-content: center; - align-items: center; - position: relative; - padding: 4rem 0; -} - -.center::before { - background: var(--secondary-glow); - border-radius: 50%; - width: 480px; - height: 360px; - margin-left: -400px; -} - -.center::after { - background: var(--primary-glow); - width: 240px; - height: 180px; - z-index: -1; -} - -.center::before, -.center::after { - content: ''; - left: 50%; - position: absolute; - filter: blur(45px); - transform: translateZ(0); -} - -.logo { - position: relative; -} -/* Enable hover only on non-touch devices */ -@media (hover: hover) and (pointer: fine) { - .card:hover { - background: rgba(var(--card-rgb), 0.1); - border: 1px solid rgba(var(--card-border-rgb), 0.15); - } - - .card:hover span { - transform: translateX(4px); - } -} - -@media (prefers-reduced-motion) { - .card:hover span { - transform: none; - } -} - -/* Mobile */ -@media (max-width: 700px) { - .content { - padding: 4rem; - } - - .grid { - grid-template-columns: 1fr; - margin-bottom: 120px; - max-width: 320px; - text-align: center; - } - - .card { - padding: 1rem 2.5rem; - } - - .card h2 { - margin-bottom: 0.5rem; - } - - .center { - padding: 8rem 0 6rem; - } - - .center::before { - transform: none; - height: 300px; - } - - .description { - font-size: 0.8rem; - } - - .description a { - padding: 1rem; - } - - .description p, - .description div { - display: flex; - justify-content: center; - position: fixed; - width: 100%; - } - - .description p { - align-items: center; - inset: 0 0 auto; - padding: 2rem 1rem 1.4rem; - border-radius: 0; - border: none; - border-bottom: 1px solid rgba(var(--callout-border-rgb), 0.25); - background: linear-gradient( - to bottom, - rgba(var(--background-start-rgb), 1), - rgba(var(--callout-rgb), 0.5) - ); - background-clip: padding-box; - backdrop-filter: blur(24px); - } - - .description div { - align-items: flex-end; - pointer-events: none; - inset: auto 0 0; - padding: 2rem; - height: 200px; - background: linear-gradient( - to bottom, - transparent 0%, - rgb(var(--background-end-rgb)) 40% - ); - z-index: 1; - } -} - -/* Tablet and Smaller Desktop */ -@media (min-width: 701px) and (max-width: 1120px) { - .grid { - grid-template-columns: repeat(2, 50%); - } -} - -@media (prefers-color-scheme: dark) { - .vercelLogo { - filter: invert(1); - } - - .logo { - filter: invert(1) drop-shadow(0 0 0.3rem #ffffff70); - } -} - -@keyframes rotate { - from { - transform: rotate(360deg); - } - to { - transform: rotate(0deg); - } -} diff --git a/site-search/site-search/styles/globals.css b/site-search/site-search/styles/globals.css deleted file mode 100644 index 31aeb14d..00000000 --- a/site-search/site-search/styles/globals.css +++ /dev/null @@ -1,97 +0,0 @@ -:root { - --max-width: 1100px; - --border-radius: 12px; - --font-mono: ui-monospace, Menlo, Monaco, 'Cascadia Mono', 'Segoe UI Mono', - 'Roboto Mono', 'Oxygen Mono', 'Ubuntu Monospace', 'Source Code Pro', - 'Fira Mono', 'Droid Sans Mono', 'Courier New', monospace; - - --foreground-rgb: 0, 0, 0; - --background-start-rgb: 214, 219, 220; - --background-end-rgb: 255, 255, 255; - - --primary-glow: conic-gradient( - from 180deg at 50% 50%, - #16abff33 0deg, - #0885ff33 55deg, - #54d6ff33 120deg, - #0071ff33 160deg, - transparent 360deg - ); - --secondary-glow: radial-gradient( - rgba(255, 255, 255, 1), - rgba(255, 255, 255, 0) - ); - - --tile-start-rgb: 239, 245, 249; - --tile-end-rgb: 228, 232, 233; - --tile-border: conic-gradient( - #00000080, - #00000040, - #00000030, - #00000020, - #00000010, - #00000010, - #00000080 - ); - - --callout-rgb: 238, 240, 241; - --callout-border-rgb: 172, 175, 176; - --card-rgb: 180, 185, 188; - --card-border-rgb: 131, 134, 135; -} - -/* @media (prefers-color-scheme: dark) { - :root { - --foreground-rgb: 255, 255, 255; - --background-start-rgb: 0, 0, 0; - --background-end-rgb: 0, 0, 0; - - --primary-glow: radial-gradient(rgba(1, 65, 255, 0.4), rgba(1, 65, 255, 0)); - --secondary-glow: linear-gradient( - to bottom right, - rgba(1, 65, 255, 0), - rgba(1, 65, 255, 0), - rgba(1, 65, 255, 0.3) - ); - - --tile-start-rgb: 2, 13, 46; - --tile-end-rgb: 2, 5, 19; - --tile-border: conic-gradient( - #ffffff80, - #ffffff40, - #ffffff30, - #ffffff20, - #ffffff10, - #ffffff10, - #ffffff80 - ); - - --callout-rgb: 20, 20, 20; - --callout-border-rgb: 108, 108, 108; - --card-rgb: 100, 100, 100; - --card-border-rgb: 200, 200, 200; - } -} */ - -* { - box-sizing: border-box; - padding: 0; - margin: 0; -} - -html, -body { - max-width: 100vw; - overflow-x: hidden; -} - -a { - color: inherit; - text-decoration: none; -} - -/* @media (prefers-color-scheme: dark) { - html { - color-scheme: dark; - } -} */ \ No newline at end of file diff --git a/site-search/site-search/tsconfig.json b/site-search/site-search/tsconfig.json deleted file mode 100644 index 670224f3..00000000 --- a/site-search/site-search/tsconfig.json +++ /dev/null @@ -1,22 +0,0 @@ -{ - "compilerOptions": { - "target": "es5", - "lib": ["dom", "dom.iterable", "esnext"], - "allowJs": true, - "skipLibCheck": true, - "strict": true, - "noEmit": true, - "esModuleInterop": true, - "module": "esnext", - "moduleResolution": "bundler", - "resolveJsonModule": true, - "isolatedModules": true, - "jsx": "preserve", - "incremental": true, - "paths": { - "@/*": ["./*"] - } - }, - "include": ["next-env.d.ts", "**/*.ts", "**/*.tsx"], - "exclude": ["node_modules"] -} From 5c82f2ff44f6b32d90e8ddda4a1a359d2c3ab936 Mon Sep 17 00:00:00 2001 From: Adam Coard Date: Thu, 14 Sep 2023 10:54:40 -0700 Subject: [PATCH 017/194] Delete old nextjs attempt - mk2 --- site-search/vite/site-search/.eslintrc.cjs | 18 - site-search/vite/site-search/.gitignore | 24 - site-search/vite/site-search/README.md | 27 - site-search/vite/site-search/index.html | 13 - .../vite/site-search/package-lock.json | 4694 ----------------- site-search/vite/site-search/package.json | 35 - site-search/vite/site-search/public/vite.svg | 1 - site-search/vite/site-search/src/App.css | 42 - site-search/vite/site-search/src/App.tsx | 21 - .../vite/site-search/src/api/dummy-data.tsx | 22 - site-search/vite/site-search/src/api/sites.ts | 20 - .../vite/site-search/src/assets/react.svg | 1 - .../site-search/src/components/Header.tsx | 33 - .../features/simple-search/search-results.tsx | 39 - .../features/simple-search/search-toggle.tsx | 23 - .../features/simple-search/simple-search.ts | 20 - site-search/vite/site-search/src/index.css | 32 - site-search/vite/site-search/src/main.tsx | 34 - .../site-search/src/pages/advanced-search.tsx | 12 - .../vite/site-search/src/pages/search.css | 7 - .../vite/site-search/src/pages/search.tsx | 141 - site-search/vite/site-search/src/store.ts | 8 - .../vite/site-search/src/vite-env.d.ts | 1 - site-search/vite/site-search/tsconfig.json | 30 - .../vite/site-search/tsconfig.node.json | 10 - site-search/vite/site-search/vite.config.ts | 11 - 26 files changed, 5319 deletions(-) delete mode 100644 site-search/vite/site-search/.eslintrc.cjs delete mode 100644 site-search/vite/site-search/.gitignore delete mode 100644 site-search/vite/site-search/README.md delete mode 100644 site-search/vite/site-search/index.html delete mode 100644 site-search/vite/site-search/package-lock.json delete mode 100644 site-search/vite/site-search/package.json delete mode 100644 site-search/vite/site-search/public/vite.svg delete mode 100644 site-search/vite/site-search/src/App.css delete mode 100644 site-search/vite/site-search/src/App.tsx delete mode 100644 site-search/vite/site-search/src/api/dummy-data.tsx delete mode 100644 site-search/vite/site-search/src/api/sites.ts delete mode 100644 site-search/vite/site-search/src/assets/react.svg delete mode 100644 site-search/vite/site-search/src/components/Header.tsx delete mode 100644 site-search/vite/site-search/src/features/simple-search/search-results.tsx delete mode 100644 site-search/vite/site-search/src/features/simple-search/search-toggle.tsx delete mode 100644 site-search/vite/site-search/src/features/simple-search/simple-search.ts delete mode 100644 site-search/vite/site-search/src/index.css delete mode 100644 site-search/vite/site-search/src/main.tsx delete mode 100644 site-search/vite/site-search/src/pages/advanced-search.tsx delete mode 100644 site-search/vite/site-search/src/pages/search.css delete mode 100644 site-search/vite/site-search/src/pages/search.tsx delete mode 100644 site-search/vite/site-search/src/store.ts delete mode 100644 site-search/vite/site-search/src/vite-env.d.ts delete mode 100644 site-search/vite/site-search/tsconfig.json delete mode 100644 site-search/vite/site-search/tsconfig.node.json delete mode 100644 site-search/vite/site-search/vite.config.ts diff --git a/site-search/vite/site-search/.eslintrc.cjs b/site-search/vite/site-search/.eslintrc.cjs deleted file mode 100644 index d6c95379..00000000 --- a/site-search/vite/site-search/.eslintrc.cjs +++ /dev/null @@ -1,18 +0,0 @@ -module.exports = { - root: true, - env: { browser: true, es2020: true }, - extends: [ - 'eslint:recommended', - 'plugin:@typescript-eslint/recommended', - 'plugin:react-hooks/recommended', - ], - ignorePatterns: ['dist', '.eslintrc.cjs'], - parser: '@typescript-eslint/parser', - plugins: ['react-refresh'], - rules: { - 'react-refresh/only-export-components': [ - 'warn', - { allowConstantExport: true }, - ], - }, -} diff --git a/site-search/vite/site-search/.gitignore b/site-search/vite/site-search/.gitignore deleted file mode 100644 index a547bf36..00000000 --- a/site-search/vite/site-search/.gitignore +++ /dev/null @@ -1,24 +0,0 @@ -# Logs -logs -*.log -npm-debug.log* -yarn-debug.log* -yarn-error.log* -pnpm-debug.log* -lerna-debug.log* - -node_modules -dist -dist-ssr -*.local - -# Editor directories and files -.vscode/* -!.vscode/extensions.json -.idea -.DS_Store -*.suo -*.ntvs* -*.njsproj -*.sln -*.sw? diff --git a/site-search/vite/site-search/README.md b/site-search/vite/site-search/README.md deleted file mode 100644 index 1ebe379f..00000000 --- a/site-search/vite/site-search/README.md +++ /dev/null @@ -1,27 +0,0 @@ -# React + TypeScript + Vite - -This template provides a minimal setup to get React working in Vite with HMR and some ESLint rules. - -Currently, two official plugins are available: - -- [@vitejs/plugin-react](https://github.com/vitejs/vite-plugin-react/blob/main/packages/plugin-react/README.md) uses [Babel](https://babeljs.io/) for Fast Refresh -- [@vitejs/plugin-react-swc](https://github.com/vitejs/vite-plugin-react-swc) uses [SWC](https://swc.rs/) for Fast Refresh - -## Expanding the ESLint configuration - -If you are developing a production application, we recommend updating the configuration to enable type aware lint rules: - -- Configure the top-level `parserOptions` property like this: - -```js - parserOptions: { - ecmaVersion: 'latest', - sourceType: 'module', - project: ['./tsconfig.json', './tsconfig.node.json'], - tsconfigRootDir: __dirname, - }, -``` - -- Replace `plugin:@typescript-eslint/recommended` to `plugin:@typescript-eslint/recommended-type-checked` or `plugin:@typescript-eslint/strict-type-checked` -- Optionally add `plugin:@typescript-eslint/stylistic-type-checked` -- Install [eslint-plugin-react](https://github.com/jsx-eslint/eslint-plugin-react) and add `plugin:react/recommended` & `plugin:react/jsx-runtime` to the `extends` list diff --git a/site-search/vite/site-search/index.html b/site-search/vite/site-search/index.html deleted file mode 100644 index e4b78eae..00000000 --- a/site-search/vite/site-search/index.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - Vite + React + TS - - -
- - - diff --git a/site-search/vite/site-search/package-lock.json b/site-search/vite/site-search/package-lock.json deleted file mode 100644 index 46722c82..00000000 --- a/site-search/vite/site-search/package-lock.json +++ /dev/null @@ -1,4694 +0,0 @@ -{ - "name": "site-search", - "version": "0.0.0", - "lockfileVersion": 2, - "requires": true, - "packages": { - "": { - "name": "site-search", - "version": "0.0.0", - "dependencies": { - "@reduxjs/toolkit": "^1.9.5", - "bootstrap": "^5.3.1", - "react": "^18.2.0", - "react-bootstrap": "^2.8.0", - "react-dom": "^18.2.0", - "react-redux": "^8.1.2", - "react-router-dom": "^6.15.0" - }, - "devDependencies": { - "@faker-js/faker": "^8.0.2", - "@types/react": "^18.2.15", - "@types/react-bootstrap": "^0.32.32", - "@types/react-dom": "^18.2.7", - "@typescript-eslint/eslint-plugin": "^6.0.0", - "@typescript-eslint/parser": "^6.0.0", - "@vitejs/plugin-react-swc": "^3.3.2", - "eslint": "^8.45.0", - "eslint-plugin-react-hooks": "^4.6.0", - "eslint-plugin-react-refresh": "^0.4.3", - "typescript": "^5.0.2", - "vite": "^4.4.5" - } - }, - "node_modules/@aashutoshrathi/word-wrap": { - "version": "1.2.6", - "resolved": "https://registry.npmjs.org/@aashutoshrathi/word-wrap/-/word-wrap-1.2.6.tgz", - "integrity": "sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/@babel/runtime": { - "version": "7.22.15", - "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.22.15.tgz", - "integrity": "sha512-T0O+aa+4w0u06iNmapipJXMV4HoUir03hpx3/YqXXhu9xim3w+dVphjFWl1OH8NbZHw5Lbm9k45drDkgq2VNNA==", - "dependencies": { - "regenerator-runtime": "^0.14.0" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@esbuild/android-arm": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.18.20.tgz", - "integrity": "sha512-fyi7TDI/ijKKNZTUJAQqiG5T7YjJXgnzkURqmGj13C6dCqckZBLdl4h7bkhHt/t0WP+zO9/zwroDvANaOqO5Sw==", - "cpu": [ - "arm" - ], - "dev": true, - "optional": true, - "os": [ - "android" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/android-arm64": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.18.20.tgz", - "integrity": "sha512-Nz4rJcchGDtENV0eMKUNa6L12zz2zBDXuhj/Vjh18zGqB44Bi7MBMSXjgunJgjRhCmKOjnPuZp4Mb6OKqtMHLQ==", - "cpu": [ - "arm64" - ], - "dev": true, - "optional": true, - "os": [ - "android" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/android-x64": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.18.20.tgz", - "integrity": "sha512-8GDdlePJA8D6zlZYJV/jnrRAi6rOiNaCC/JclcXpB+KIuvfBN4owLtgzY2bsxnx666XjJx2kDPUmnTtR8qKQUg==", - "cpu": [ - "x64" - ], - "dev": true, - "optional": true, - "os": [ - "android" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/darwin-arm64": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.18.20.tgz", - "integrity": "sha512-bxRHW5kHU38zS2lPTPOyuyTm+S+eobPUnTNkdJEfAddYgEcll4xkT8DB9d2008DtTbl7uJag2HuE5NZAZgnNEA==", - "cpu": [ - "arm64" - ], - "dev": true, - "optional": true, - "os": [ - "darwin" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/darwin-x64": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.18.20.tgz", - "integrity": "sha512-pc5gxlMDxzm513qPGbCbDukOdsGtKhfxD1zJKXjCCcU7ju50O7MeAZ8c4krSJcOIJGFR+qx21yMMVYwiQvyTyQ==", - "cpu": [ - "x64" - ], - "dev": true, - "optional": true, - "os": [ - "darwin" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/freebsd-arm64": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.18.20.tgz", - "integrity": "sha512-yqDQHy4QHevpMAaxhhIwYPMv1NECwOvIpGCZkECn8w2WFHXjEwrBn3CeNIYsibZ/iZEUemj++M26W3cNR5h+Tw==", - "cpu": [ - "arm64" - ], - "dev": true, - "optional": true, - "os": [ - "freebsd" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/freebsd-x64": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.18.20.tgz", - "integrity": "sha512-tgWRPPuQsd3RmBZwarGVHZQvtzfEBOreNuxEMKFcd5DaDn2PbBxfwLcj4+aenoh7ctXcbXmOQIn8HI6mCSw5MQ==", - "cpu": [ - "x64" - ], - "dev": true, - "optional": true, - "os": [ - "freebsd" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/linux-arm": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.18.20.tgz", - "integrity": "sha512-/5bHkMWnq1EgKr1V+Ybz3s1hWXok7mDFUMQ4cG10AfW3wL02PSZi5kFpYKrptDsgb2WAJIvRcDm+qIvXf/apvg==", - "cpu": [ - "arm" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/linux-arm64": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.18.20.tgz", - "integrity": "sha512-2YbscF+UL7SQAVIpnWvYwM+3LskyDmPhe31pE7/aoTMFKKzIc9lLbyGUpmmb8a8AixOL61sQ/mFh3jEjHYFvdA==", - "cpu": [ - "arm64" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/linux-ia32": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.18.20.tgz", - "integrity": "sha512-P4etWwq6IsReT0E1KHU40bOnzMHoH73aXp96Fs8TIT6z9Hu8G6+0SHSw9i2isWrD2nbx2qo5yUqACgdfVGx7TA==", - "cpu": [ - "ia32" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/linux-loong64": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.18.20.tgz", - "integrity": "sha512-nXW8nqBTrOpDLPgPY9uV+/1DjxoQ7DoB2N8eocyq8I9XuqJ7BiAMDMf9n1xZM9TgW0J8zrquIb/A7s3BJv7rjg==", - "cpu": [ - "loong64" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/linux-mips64el": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.18.20.tgz", - "integrity": "sha512-d5NeaXZcHp8PzYy5VnXV3VSd2D328Zb+9dEq5HE6bw6+N86JVPExrA6O68OPwobntbNJ0pzCpUFZTo3w0GyetQ==", - "cpu": [ - "mips64el" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/linux-ppc64": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.18.20.tgz", - "integrity": "sha512-WHPyeScRNcmANnLQkq6AfyXRFr5D6N2sKgkFo2FqguP44Nw2eyDlbTdZwd9GYk98DZG9QItIiTlFLHJHjxP3FA==", - "cpu": [ - "ppc64" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/linux-riscv64": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.18.20.tgz", - "integrity": "sha512-WSxo6h5ecI5XH34KC7w5veNnKkju3zBRLEQNY7mv5mtBmrP/MjNBCAlsM2u5hDBlS3NGcTQpoBvRzqBcRtpq1A==", - "cpu": [ - "riscv64" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/linux-s390x": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.18.20.tgz", - "integrity": "sha512-+8231GMs3mAEth6Ja1iK0a1sQ3ohfcpzpRLH8uuc5/KVDFneH6jtAJLFGafpzpMRO6DzJ6AvXKze9LfFMrIHVQ==", - "cpu": [ - "s390x" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/linux-x64": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.18.20.tgz", - "integrity": "sha512-UYqiqemphJcNsFEskc73jQ7B9jgwjWrSayxawS6UVFZGWrAAtkzjxSqnoclCXxWtfwLdzU+vTpcNYhpn43uP1w==", - "cpu": [ - "x64" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/netbsd-x64": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.18.20.tgz", - "integrity": "sha512-iO1c++VP6xUBUmltHZoMtCUdPlnPGdBom6IrO4gyKPFFVBKioIImVooR5I83nTew5UOYrk3gIJhbZh8X44y06A==", - "cpu": [ - "x64" - ], - "dev": true, - "optional": true, - "os": [ - "netbsd" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/openbsd-x64": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.18.20.tgz", - "integrity": "sha512-e5e4YSsuQfX4cxcygw/UCPIEP6wbIL+se3sxPdCiMbFLBWu0eiZOJ7WoD+ptCLrmjZBK1Wk7I6D/I3NglUGOxg==", - "cpu": [ - "x64" - ], - "dev": true, - "optional": true, - "os": [ - "openbsd" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/sunos-x64": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.18.20.tgz", - "integrity": "sha512-kDbFRFp0YpTQVVrqUd5FTYmWo45zGaXe0X8E1G/LKFC0v8x0vWrhOWSLITcCn63lmZIxfOMXtCfti/RxN/0wnQ==", - "cpu": [ - "x64" - ], - "dev": true, - "optional": true, - "os": [ - "sunos" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/win32-arm64": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.18.20.tgz", - "integrity": "sha512-ddYFR6ItYgoaq4v4JmQQaAI5s7npztfV4Ag6NrhiaW0RrnOXqBkgwZLofVTlq1daVTQNhtI5oieTvkRPfZrePg==", - "cpu": [ - "arm64" - ], - "dev": true, - "optional": true, - "os": [ - "win32" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/win32-ia32": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.18.20.tgz", - "integrity": "sha512-Wv7QBi3ID/rROT08SABTS7eV4hX26sVduqDOTe1MvGMjNd3EjOz4b7zeexIR62GTIEKrfJXKL9LFxTYgkyeu7g==", - "cpu": [ - "ia32" - ], - "dev": true, - "optional": true, - "os": [ - "win32" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/win32-x64": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.18.20.tgz", - "integrity": "sha512-kTdfRcSiDfQca/y9QIkng02avJ+NCaQvrMejlsB3RRv5sE9rRoeBPISaZpKxHELzRxZyLvNts1P27W3wV+8geQ==", - "cpu": [ - "x64" - ], - "dev": true, - "optional": true, - "os": [ - "win32" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@eslint-community/eslint-utils": { - "version": "4.4.0", - "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.4.0.tgz", - "integrity": "sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==", - "dev": true, - "dependencies": { - "eslint-visitor-keys": "^3.3.0" - }, - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "peerDependencies": { - "eslint": "^6.0.0 || ^7.0.0 || >=8.0.0" - } - }, - "node_modules/@eslint-community/regexpp": { - "version": "4.8.1", - "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.8.1.tgz", - "integrity": "sha512-PWiOzLIUAjN/w5K17PoF4n6sKBw0gqLHPhywmYHP4t1VFQQVYeb1yWsJwnMVEMl3tUHME7X/SJPZLmtG7XBDxQ==", - "dev": true, - "engines": { - "node": "^12.0.0 || ^14.0.0 || >=16.0.0" - } - }, - "node_modules/@eslint/eslintrc": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-2.1.2.tgz", - "integrity": "sha512-+wvgpDsrB1YqAMdEUCcnTlpfVBH7Vqn6A/NT3D8WVXFIaKMlErPIZT3oCIAVCOtarRpMtelZLqJeU3t7WY6X6g==", - "dev": true, - "dependencies": { - "ajv": "^6.12.4", - "debug": "^4.3.2", - "espree": "^9.6.0", - "globals": "^13.19.0", - "ignore": "^5.2.0", - "import-fresh": "^3.2.1", - "js-yaml": "^4.1.0", - "minimatch": "^3.1.2", - "strip-json-comments": "^3.1.1" - }, - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "funding": { - "url": "https://opencollective.com/eslint" - } - }, - "node_modules/@eslint/js": { - "version": "8.49.0", - "resolved": "https://registry.npmjs.org/@eslint/js/-/js-8.49.0.tgz", - "integrity": "sha512-1S8uAY/MTJqVx0SC4epBq+N2yhuwtNwLbJYNZyhL2pO1ZVKn5HFXav5T41Ryzy9K9V7ZId2JB2oy/W4aCd9/2w==", - "dev": true, - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - } - }, - "node_modules/@faker-js/faker": { - "version": "8.0.2", - "resolved": "https://registry.npmjs.org/@faker-js/faker/-/faker-8.0.2.tgz", - "integrity": "sha512-Uo3pGspElQW91PCvKSIAXoEgAUlRnH29sX2/p89kg7sP1m2PzCufHINd0FhTXQf6DYGiUlVncdSPa2F9wxed2A==", - "dev": true, - "funding": [ - { - "type": "opencollective", - "url": "https://opencollective.com/fakerjs" - } - ], - "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0", - "npm": ">=6.14.13" - } - }, - "node_modules/@humanwhocodes/config-array": { - "version": "0.11.11", - "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.11.tgz", - "integrity": "sha512-N2brEuAadi0CcdeMXUkhbZB84eskAc8MEX1By6qEchoVywSgXPIjou4rYsl0V3Hj0ZnuGycGCjdNgockbzeWNA==", - "dev": true, - "dependencies": { - "@humanwhocodes/object-schema": "^1.2.1", - "debug": "^4.1.1", - "minimatch": "^3.0.5" - }, - "engines": { - "node": ">=10.10.0" - } - }, - "node_modules/@humanwhocodes/module-importer": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz", - "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==", - "dev": true, - "engines": { - "node": ">=12.22" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/nzakas" - } - }, - "node_modules/@humanwhocodes/object-schema": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz", - "integrity": "sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==", - "dev": true - }, - "node_modules/@nodelib/fs.scandir": { - "version": "2.1.5", - "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", - "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", - "dev": true, - "dependencies": { - "@nodelib/fs.stat": "2.0.5", - "run-parallel": "^1.1.9" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/@nodelib/fs.stat": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", - "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", - "dev": true, - "engines": { - "node": ">= 8" - } - }, - "node_modules/@nodelib/fs.walk": { - "version": "1.2.8", - "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", - "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", - "dev": true, - "dependencies": { - "@nodelib/fs.scandir": "2.1.5", - "fastq": "^1.6.0" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/@popperjs/core": { - "version": "2.11.8", - "resolved": "https://registry.npmjs.org/@popperjs/core/-/core-2.11.8.tgz", - "integrity": "sha512-P1st0aksCrn9sGZhp8GMYwBnQsbvAWsZAX44oXNNvLHGqAOcoVxmjZiohstwQ7SqKnbR47akdNi+uleWD8+g6A==", - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/popperjs" - } - }, - "node_modules/@react-aria/ssr": { - "version": "3.8.0", - "resolved": "https://registry.npmjs.org/@react-aria/ssr/-/ssr-3.8.0.tgz", - "integrity": "sha512-Y54xs483rglN5DxbwfCPHxnkvZ+gZ0LbSYmR72LyWPGft8hN/lrl1VRS1EW2SMjnkEWlj+Km2mwvA3kEHDUA0A==", - "dependencies": { - "@swc/helpers": "^0.5.0" - }, - "engines": { - "node": ">= 12" - }, - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0" - } - }, - "node_modules/@reduxjs/toolkit": { - "version": "1.9.5", - "resolved": "https://registry.npmjs.org/@reduxjs/toolkit/-/toolkit-1.9.5.tgz", - "integrity": "sha512-Rt97jHmfTeaxL4swLRNPD/zV4OxTes4la07Xc4hetpUW/vc75t5m1ANyxG6ymnEQ2FsLQsoMlYB2vV1sO3m8tQ==", - "dependencies": { - "immer": "^9.0.21", - "redux": "^4.2.1", - "redux-thunk": "^2.4.2", - "reselect": "^4.1.8" - }, - "peerDependencies": { - "react": "^16.9.0 || ^17.0.0 || ^18", - "react-redux": "^7.2.1 || ^8.0.2" - }, - "peerDependenciesMeta": { - "react": { - "optional": true - }, - "react-redux": { - "optional": true - } - } - }, - "node_modules/@remix-run/router": { - "version": "1.8.0", - "resolved": "https://registry.npmjs.org/@remix-run/router/-/router-1.8.0.tgz", - "integrity": "sha512-mrfKqIHnSZRyIzBcanNJmVQELTnX+qagEDlcKO90RgRBVOZGSGvZKeDihTRfWcqoDn5N/NkUcwWTccnpN18Tfg==", - "engines": { - "node": ">=14.0.0" - } - }, - "node_modules/@restart/hooks": { - "version": "0.4.11", - "resolved": "https://registry.npmjs.org/@restart/hooks/-/hooks-0.4.11.tgz", - "integrity": "sha512-Ft/ncTULZN6ldGHiF/k5qt72O8JyRMOeg0tApvCni8LkoiEahO+z3TNxfXIVGy890YtWVDvJAl662dVJSJXvMw==", - "dependencies": { - "dequal": "^2.0.3" - }, - "peerDependencies": { - "react": ">=16.8.0" - } - }, - "node_modules/@restart/ui": { - "version": "1.6.6", - "resolved": "https://registry.npmjs.org/@restart/ui/-/ui-1.6.6.tgz", - "integrity": "sha512-eC3puKuWE1SRYbojWHXnvCNHGgf3uzHCb6JOhnF4OXPibOIPEkR1sqDSkL643ydigxwh+ruCa1CmYHlzk7ikKA==", - "dependencies": { - "@babel/runtime": "^7.21.0", - "@popperjs/core": "^2.11.6", - "@react-aria/ssr": "^3.5.0", - "@restart/hooks": "^0.4.9", - "@types/warning": "^3.0.0", - "dequal": "^2.0.3", - "dom-helpers": "^5.2.0", - "uncontrollable": "^8.0.1", - "warning": "^4.0.3" - }, - "peerDependencies": { - "react": ">=16.14.0", - "react-dom": ">=16.14.0" - } - }, - "node_modules/@restart/ui/node_modules/uncontrollable": { - "version": "8.0.4", - "resolved": "https://registry.npmjs.org/uncontrollable/-/uncontrollable-8.0.4.tgz", - "integrity": "sha512-ulRWYWHvscPFc0QQXvyJjY6LIXU56f0h8pQFvhxiKk5V1fcI8gp9Ht9leVAhrVjzqMw0BgjspBINx9r6oyJUvQ==", - "peerDependencies": { - "react": ">=16.14.0" - } - }, - "node_modules/@swc/core": { - "version": "1.3.84", - "resolved": "https://registry.npmjs.org/@swc/core/-/core-1.3.84.tgz", - "integrity": "sha512-UPKUiDwG7HOdPfOb1VFeEJ76JDgU2w80JLewzx6tb0fk9TIjhr9yxKBzPbzc/QpjGHDu5iaEuNeZcu27u4j63g==", - "dev": true, - "hasInstallScript": true, - "dependencies": { - "@swc/types": "^0.1.4" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/swc" - }, - "optionalDependencies": { - "@swc/core-darwin-arm64": "1.3.84", - "@swc/core-darwin-x64": "1.3.84", - "@swc/core-linux-arm-gnueabihf": "1.3.84", - "@swc/core-linux-arm64-gnu": "1.3.84", - "@swc/core-linux-arm64-musl": "1.3.84", - "@swc/core-linux-x64-gnu": "1.3.84", - "@swc/core-linux-x64-musl": "1.3.84", - "@swc/core-win32-arm64-msvc": "1.3.84", - "@swc/core-win32-ia32-msvc": "1.3.84", - "@swc/core-win32-x64-msvc": "1.3.84" - }, - "peerDependencies": { - "@swc/helpers": "^0.5.0" - }, - "peerDependenciesMeta": { - "@swc/helpers": { - "optional": true - } - } - }, - "node_modules/@swc/core-darwin-arm64": { - "version": "1.3.84", - "resolved": "https://registry.npmjs.org/@swc/core-darwin-arm64/-/core-darwin-arm64-1.3.84.tgz", - "integrity": "sha512-mqK0buOo+toF2HoJ/gWj2ApZbvbIiNq3mMwSTHCYJHlQFQfoTWnl9aaD5GSO4wfNFVYfEZ1R259o5uv5NlVtoA==", - "cpu": [ - "arm64" - ], - "dev": true, - "optional": true, - "os": [ - "darwin" - ], - "engines": { - "node": ">=10" - } - }, - "node_modules/@swc/core-darwin-x64": { - "version": "1.3.84", - "resolved": "https://registry.npmjs.org/@swc/core-darwin-x64/-/core-darwin-x64-1.3.84.tgz", - "integrity": "sha512-cyuQZz62C43EDZqtnptUTlfDvAjgG3qu139m5zsfIK6ltXA5inKFbDWV3a/M5c18dFzA2Xh21Q46XZezmtQ9Tg==", - "cpu": [ - "x64" - ], - "dev": true, - "optional": true, - "os": [ - "darwin" - ], - "engines": { - "node": ">=10" - } - }, - "node_modules/@swc/core-linux-arm-gnueabihf": { - "version": "1.3.84", - "resolved": "https://registry.npmjs.org/@swc/core-linux-arm-gnueabihf/-/core-linux-arm-gnueabihf-1.3.84.tgz", - "integrity": "sha512-dmt/ECQrp3ZPWnK27p4E4xRIRHOoJhgGvxC5t5YaWzN20KcxE9ykEY2oLGSoeceM/A+4D11aRYGwF/EM7yOkvA==", - "cpu": [ - "arm" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=10" - } - }, - "node_modules/@swc/core-linux-arm64-gnu": { - "version": "1.3.84", - "resolved": "https://registry.npmjs.org/@swc/core-linux-arm64-gnu/-/core-linux-arm64-gnu-1.3.84.tgz", - "integrity": "sha512-PgVfrI3NVg2z/oeg3GWLb9rFLMqidbdPwVH5nRyHVP2RX/BWP6qfnYfG+gJv4qrKzIldb9TyCGH7y8VWctKLxw==", - "cpu": [ - "arm64" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=10" - } - }, - "node_modules/@swc/core-linux-arm64-musl": { - "version": "1.3.84", - "resolved": "https://registry.npmjs.org/@swc/core-linux-arm64-musl/-/core-linux-arm64-musl-1.3.84.tgz", - "integrity": "sha512-hcuEa8/vin4Ns0P+FpcDHQ4f3jmhgGKQhqw0w+TovPSVTIXr+nrFQ2AGhs9nAxS6tSQ77C53Eb5YRpK8ToFo1A==", - "cpu": [ - "arm64" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=10" - } - }, - "node_modules/@swc/core-linux-x64-gnu": { - "version": "1.3.84", - "resolved": "https://registry.npmjs.org/@swc/core-linux-x64-gnu/-/core-linux-x64-gnu-1.3.84.tgz", - "integrity": "sha512-IvyimSbwGdu21jBBEqR1Up8Jhvl8kIAf1k3e5Oy8oRfgojdUfmW1EIwgGdoUeyQ1VHlfquiWaRGfsnHQUKl35g==", - "cpu": [ - "x64" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=10" - } - }, - "node_modules/@swc/core-linux-x64-musl": { - "version": "1.3.84", - "resolved": "https://registry.npmjs.org/@swc/core-linux-x64-musl/-/core-linux-x64-musl-1.3.84.tgz", - "integrity": "sha512-hdgVU/O5ufDCe+p5RtCjU7PRNwd0WM+eWJS+GNY4QWL6O8y2VLM+i4+6YzwSUjeBk0xd+1YElMxbqz7r5tSZhw==", - "cpu": [ - "x64" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=10" - } - }, - "node_modules/@swc/core-win32-arm64-msvc": { - "version": "1.3.84", - "resolved": "https://registry.npmjs.org/@swc/core-win32-arm64-msvc/-/core-win32-arm64-msvc-1.3.84.tgz", - "integrity": "sha512-rzH6k2BF0BFOFhUTD+bh0oCiUCZjFfDfoZoYNN/CM0qbtjAcFH21hzMh/EH8ZaXq8k/iQmUNNa5MPNPZ4SOMNw==", - "cpu": [ - "arm64" - ], - "dev": true, - "optional": true, - "os": [ - "win32" - ], - "engines": { - "node": ">=10" - } - }, - "node_modules/@swc/core-win32-ia32-msvc": { - "version": "1.3.84", - "resolved": "https://registry.npmjs.org/@swc/core-win32-ia32-msvc/-/core-win32-ia32-msvc-1.3.84.tgz", - "integrity": "sha512-Y+Dk7VLLVwwsAzoDmjkNW/sTmSPl9PGr4Mj1nhc5A2NNxZ+hz4SxFMclacDI03SC5ikK8Qh6WOoE/+nwUDa3uA==", - "cpu": [ - "ia32" - ], - "dev": true, - "optional": true, - "os": [ - "win32" - ], - "engines": { - "node": ">=10" - } - }, - "node_modules/@swc/core-win32-x64-msvc": { - "version": "1.3.84", - "resolved": "https://registry.npmjs.org/@swc/core-win32-x64-msvc/-/core-win32-x64-msvc-1.3.84.tgz", - "integrity": "sha512-WmpaosqCWMX7DArLdU8AJcj96hy0PKlYh1DaMVikSrrDHbJm2dZ8rd27IK3qUB8DgPkrDYHmLAKNZ+z3gWXgRQ==", - "cpu": [ - "x64" - ], - "dev": true, - "optional": true, - "os": [ - "win32" - ], - "engines": { - "node": ">=10" - } - }, - "node_modules/@swc/helpers": { - "version": "0.5.2", - "resolved": "https://registry.npmjs.org/@swc/helpers/-/helpers-0.5.2.tgz", - "integrity": "sha512-E4KcWTpoLHqwPHLxidpOqQbcrZVgi0rsmmZXUle1jXmJfuIf/UWpczUJ7MZZ5tlxytgJXyp0w4PGkkeLiuIdZw==", - "dependencies": { - "tslib": "^2.4.0" - } - }, - "node_modules/@swc/types": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/@swc/types/-/types-0.1.4.tgz", - "integrity": "sha512-z/G02d+59gyyUb7KYhKi9jOhicek6QD2oMaotUyG+lUkybpXoV49dY9bj7Ah5Q+y7knK2jU67UTX9FyfGzaxQg==", - "dev": true - }, - "node_modules/@types/hoist-non-react-statics": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/@types/hoist-non-react-statics/-/hoist-non-react-statics-3.3.1.tgz", - "integrity": "sha512-iMIqiko6ooLrTh1joXodJK5X9xeEALT1kM5G3ZLhD3hszxBdIEd5C75U834D9mLcINgD4OyZf5uQXjkuYydWvA==", - "dependencies": { - "@types/react": "*", - "hoist-non-react-statics": "^3.3.0" - } - }, - "node_modules/@types/json-schema": { - "version": "7.0.12", - "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.12.tgz", - "integrity": "sha512-Hr5Jfhc9eYOQNPYO5WLDq/n4jqijdHNlDXjuAQkkt+mWdQR+XJToOHrsD4cPaMXpn6KO7y2+wM8AZEs8VpBLVA==", - "dev": true - }, - "node_modules/@types/prop-types": { - "version": "15.7.5", - "resolved": "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.5.tgz", - "integrity": "sha512-JCB8C6SnDoQf0cNycqd/35A7MjcnK+ZTqE7judS6o7utxUCg6imJg3QK2qzHKszlTjcj2cn+NwMB2i96ubpj7w==" - }, - "node_modules/@types/react": { - "version": "18.2.21", - "resolved": "https://registry.npmjs.org/@types/react/-/react-18.2.21.tgz", - "integrity": "sha512-neFKG/sBAwGxHgXiIxnbm3/AAVQ/cMRS93hvBpg8xYRbeQSPVABp9U2bRnPf0iI4+Ucdv3plSxKK+3CW2ENJxA==", - "dependencies": { - "@types/prop-types": "*", - "@types/scheduler": "*", - "csstype": "^3.0.2" - } - }, - "node_modules/@types/react-bootstrap": { - "version": "0.32.32", - "resolved": "https://registry.npmjs.org/@types/react-bootstrap/-/react-bootstrap-0.32.32.tgz", - "integrity": "sha512-GM9UtV7v+C2F0rbqgIpMWdCKBMdX3PQURoJQobPO4vDAeFadcExNtKffi13/MjaAks+riJKVGyiMe+6OmDYT2w==", - "dev": true, - "dependencies": { - "@types/react": "*" - } - }, - "node_modules/@types/react-dom": { - "version": "18.2.7", - "resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-18.2.7.tgz", - "integrity": "sha512-GRaAEriuT4zp9N4p1i8BDBYmEyfo+xQ3yHjJU4eiK5NDa1RmUZG+unZABUTK4/Ox/M+GaHwb6Ow8rUITrtjszA==", - "devOptional": true, - "dependencies": { - "@types/react": "*" - } - }, - "node_modules/@types/react-transition-group": { - "version": "4.4.6", - "resolved": "https://registry.npmjs.org/@types/react-transition-group/-/react-transition-group-4.4.6.tgz", - "integrity": "sha512-VnCdSxfcm08KjsJVQcfBmhEQAPnLB8G08hAxn39azX1qYBQ/5RVQuoHuKIcfKOdncuaUvEpFKFzEvbtIMsfVew==", - "dependencies": { - "@types/react": "*" - } - }, - "node_modules/@types/scheduler": { - "version": "0.16.3", - "resolved": "https://registry.npmjs.org/@types/scheduler/-/scheduler-0.16.3.tgz", - "integrity": "sha512-5cJ8CB4yAx7BH1oMvdU0Jh9lrEXyPkar6F9G/ERswkCuvP4KQZfZkSjcMbAICCpQTN4OuZn8tz0HiKv9TGZgrQ==" - }, - "node_modules/@types/semver": { - "version": "7.5.1", - "resolved": "https://registry.npmjs.org/@types/semver/-/semver-7.5.1.tgz", - "integrity": "sha512-cJRQXpObxfNKkFAZbJl2yjWtJCqELQIdShsogr1d2MilP8dKD9TE/nEKHkJgUNHdGKCQaf9HbIynuV2csLGVLg==", - "dev": true - }, - "node_modules/@types/use-sync-external-store": { - "version": "0.0.3", - "resolved": "https://registry.npmjs.org/@types/use-sync-external-store/-/use-sync-external-store-0.0.3.tgz", - "integrity": "sha512-EwmlvuaxPNej9+T4v5AuBPJa2x2UOJVdjCtDHgcDqitUeOtjnJKJ+apYjVcAoBEMjKW1VVFGZLUb5+qqa09XFA==" - }, - "node_modules/@types/warning": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/@types/warning/-/warning-3.0.0.tgz", - "integrity": "sha512-t/Tvs5qR47OLOr+4E9ckN8AmP2Tf16gWq+/qA4iUGS/OOyHVO8wv2vjJuX8SNOUTJyWb+2t7wJm6cXILFnOROA==" - }, - "node_modules/@typescript-eslint/eslint-plugin": { - "version": "6.7.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-6.7.0.tgz", - "integrity": "sha512-gUqtknHm0TDs1LhY12K2NA3Rmlmp88jK9Tx8vGZMfHeNMLE3GH2e9TRub+y+SOjuYgtOmok+wt1AyDPZqxbNag==", - "dev": true, - "dependencies": { - "@eslint-community/regexpp": "^4.5.1", - "@typescript-eslint/scope-manager": "6.7.0", - "@typescript-eslint/type-utils": "6.7.0", - "@typescript-eslint/utils": "6.7.0", - "@typescript-eslint/visitor-keys": "6.7.0", - "debug": "^4.3.4", - "graphemer": "^1.4.0", - "ignore": "^5.2.4", - "natural-compare": "^1.4.0", - "semver": "^7.5.4", - "ts-api-utils": "^1.0.1" - }, - "engines": { - "node": "^16.0.0 || >=18.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - }, - "peerDependencies": { - "@typescript-eslint/parser": "^6.0.0 || ^6.0.0-alpha", - "eslint": "^7.0.0 || ^8.0.0" - }, - "peerDependenciesMeta": { - "typescript": { - "optional": true - } - } - }, - "node_modules/@typescript-eslint/parser": { - "version": "6.7.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-6.7.0.tgz", - "integrity": "sha512-jZKYwqNpNm5kzPVP5z1JXAuxjtl2uG+5NpaMocFPTNC2EdYIgbXIPImObOkhbONxtFTTdoZstLZefbaK+wXZng==", - "dev": true, - "dependencies": { - "@typescript-eslint/scope-manager": "6.7.0", - "@typescript-eslint/types": "6.7.0", - "@typescript-eslint/typescript-estree": "6.7.0", - "@typescript-eslint/visitor-keys": "6.7.0", - "debug": "^4.3.4" - }, - "engines": { - "node": "^16.0.0 || >=18.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - }, - "peerDependencies": { - "eslint": "^7.0.0 || ^8.0.0" - }, - "peerDependenciesMeta": { - "typescript": { - "optional": true - } - } - }, - "node_modules/@typescript-eslint/scope-manager": { - "version": "6.7.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-6.7.0.tgz", - "integrity": "sha512-lAT1Uau20lQyjoLUQ5FUMSX/dS07qux9rYd5FGzKz/Kf8W8ccuvMyldb8hadHdK/qOI7aikvQWqulnEq2nCEYA==", - "dev": true, - "dependencies": { - "@typescript-eslint/types": "6.7.0", - "@typescript-eslint/visitor-keys": "6.7.0" - }, - "engines": { - "node": "^16.0.0 || >=18.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - } - }, - "node_modules/@typescript-eslint/type-utils": { - "version": "6.7.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-6.7.0.tgz", - "integrity": "sha512-f/QabJgDAlpSz3qduCyQT0Fw7hHpmhOzY/Rv6zO3yO+HVIdPfIWhrQoAyG+uZVtWAIS85zAyzgAFfyEr+MgBpg==", - "dev": true, - "dependencies": { - "@typescript-eslint/typescript-estree": "6.7.0", - "@typescript-eslint/utils": "6.7.0", - "debug": "^4.3.4", - "ts-api-utils": "^1.0.1" - }, - "engines": { - "node": "^16.0.0 || >=18.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - }, - "peerDependencies": { - "eslint": "^7.0.0 || ^8.0.0" - }, - "peerDependenciesMeta": { - "typescript": { - "optional": true - } - } - }, - "node_modules/@typescript-eslint/types": { - "version": "6.7.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-6.7.0.tgz", - "integrity": "sha512-ihPfvOp7pOcN/ysoj0RpBPOx3HQTJTrIN8UZK+WFd3/iDeFHHqeyYxa4hQk4rMhsz9H9mXpR61IzwlBVGXtl9Q==", - "dev": true, - "engines": { - "node": "^16.0.0 || >=18.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - } - }, - "node_modules/@typescript-eslint/typescript-estree": { - "version": "6.7.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-6.7.0.tgz", - "integrity": "sha512-dPvkXj3n6e9yd/0LfojNU8VMUGHWiLuBZvbM6V6QYD+2qxqInE7J+J/ieY2iGwR9ivf/R/haWGkIj04WVUeiSQ==", - "dev": true, - "dependencies": { - "@typescript-eslint/types": "6.7.0", - "@typescript-eslint/visitor-keys": "6.7.0", - "debug": "^4.3.4", - "globby": "^11.1.0", - "is-glob": "^4.0.3", - "semver": "^7.5.4", - "ts-api-utils": "^1.0.1" - }, - "engines": { - "node": "^16.0.0 || >=18.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - }, - "peerDependenciesMeta": { - "typescript": { - "optional": true - } - } - }, - "node_modules/@typescript-eslint/utils": { - "version": "6.7.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-6.7.0.tgz", - "integrity": "sha512-MfCq3cM0vh2slSikQYqK2Gq52gvOhe57vD2RM3V4gQRZYX4rDPnKLu5p6cm89+LJiGlwEXU8hkYxhqqEC/V3qA==", - "dev": true, - "dependencies": { - "@eslint-community/eslint-utils": "^4.4.0", - "@types/json-schema": "^7.0.12", - "@types/semver": "^7.5.0", - "@typescript-eslint/scope-manager": "6.7.0", - "@typescript-eslint/types": "6.7.0", - "@typescript-eslint/typescript-estree": "6.7.0", - "semver": "^7.5.4" - }, - "engines": { - "node": "^16.0.0 || >=18.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - }, - "peerDependencies": { - "eslint": "^7.0.0 || ^8.0.0" - } - }, - "node_modules/@typescript-eslint/visitor-keys": { - "version": "6.7.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-6.7.0.tgz", - "integrity": "sha512-/C1RVgKFDmGMcVGeD8HjKv2bd72oI1KxQDeY8uc66gw9R0OK0eMq48cA+jv9/2Ag6cdrsUGySm1yzYmfz0hxwQ==", - "dev": true, - "dependencies": { - "@typescript-eslint/types": "6.7.0", - "eslint-visitor-keys": "^3.4.1" - }, - "engines": { - "node": "^16.0.0 || >=18.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - } - }, - "node_modules/@vitejs/plugin-react-swc": { - "version": "3.3.2", - "resolved": "https://registry.npmjs.org/@vitejs/plugin-react-swc/-/plugin-react-swc-3.3.2.tgz", - "integrity": "sha512-VJFWY5sfoZerQRvJrh518h3AcQt6f/yTuWn4/TRB+dqmYU0NX1qz7qM5Wfd+gOQqUzQW4gxKqKN3KpE/P3+zrA==", - "dev": true, - "dependencies": { - "@swc/core": "^1.3.61" - }, - "peerDependencies": { - "vite": "^4" - } - }, - "node_modules/acorn": { - "version": "8.10.0", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.10.0.tgz", - "integrity": "sha512-F0SAmZ8iUtS//m8DmCTA0jlh6TDKkHQyK6xc6V4KDTyZKA9dnvX9/3sRTVQrWm79glUAZbnmmNcdYwUIHWVybw==", - "dev": true, - "bin": { - "acorn": "bin/acorn" - }, - "engines": { - "node": ">=0.4.0" - } - }, - "node_modules/acorn-jsx": { - "version": "5.3.2", - "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", - "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", - "dev": true, - "peerDependencies": { - "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" - } - }, - "node_modules/ajv": { - "version": "6.12.6", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", - "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", - "dev": true, - "dependencies": { - "fast-deep-equal": "^3.1.1", - "fast-json-stable-stringify": "^2.0.0", - "json-schema-traverse": "^0.4.1", - "uri-js": "^4.2.2" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/epoberezkin" - } - }, - "node_modules/ansi-regex": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", - "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/argparse": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", - "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", - "dev": true - }, - "node_modules/array-union": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz", - "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/balanced-match": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", - "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", - "dev": true - }, - "node_modules/bootstrap": { - "version": "5.3.1", - "resolved": "https://registry.npmjs.org/bootstrap/-/bootstrap-5.3.1.tgz", - "integrity": "sha512-jzwza3Yagduci2x0rr9MeFSORjcHpt0lRZukZPZQJT1Dth5qzV7XcgGqYzi39KGAVYR8QEDVoO0ubFKOxzMG+g==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/twbs" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/bootstrap" - } - ], - "peerDependencies": { - "@popperjs/core": "^2.11.8" - } - }, - "node_modules/brace-expansion": { - "version": "1.1.11", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", - "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", - "dev": true, - "dependencies": { - "balanced-match": "^1.0.0", - "concat-map": "0.0.1" - } - }, - "node_modules/braces": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", - "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", - "dev": true, - "dependencies": { - "fill-range": "^7.0.1" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/callsites": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", - "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", - "dev": true, - "engines": { - "node": ">=6" - } - }, - "node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dev": true, - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/classnames": { - "version": "2.3.2", - "resolved": "https://registry.npmjs.org/classnames/-/classnames-2.3.2.tgz", - "integrity": "sha512-CSbhY4cFEJRe6/GQzIk5qXZ4Jeg5pcsP7b5peFSDpffpe1cqjASH/n9UTjBwOp6XpMSTwQ8Za2K5V02ueA7Tmw==" - }, - "node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "node_modules/concat-map": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", - "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", - "dev": true - }, - "node_modules/cross-spawn": { - "version": "7.0.3", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", - "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", - "dev": true, - "dependencies": { - "path-key": "^3.1.0", - "shebang-command": "^2.0.0", - "which": "^2.0.1" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/csstype": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.1.2.tgz", - "integrity": "sha512-I7K1Uu0MBPzaFKg4nI5Q7Vs2t+3gWWW648spaF+Rg7pI9ds18Ugn+lvg4SHczUdKlHI5LWBXyqfS8+DufyBsgQ==" - }, - "node_modules/debug": { - "version": "4.3.4", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", - "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", - "dev": true, - "dependencies": { - "ms": "2.1.2" - }, - "engines": { - "node": ">=6.0" - }, - "peerDependenciesMeta": { - "supports-color": { - "optional": true - } - } - }, - "node_modules/deep-is": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", - "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==", - "dev": true - }, - "node_modules/dequal": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/dequal/-/dequal-2.0.3.tgz", - "integrity": "sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==", - "engines": { - "node": ">=6" - } - }, - "node_modules/dir-glob": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz", - "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==", - "dev": true, - "dependencies": { - "path-type": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/doctrine": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz", - "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==", - "dev": true, - "dependencies": { - "esutils": "^2.0.2" - }, - "engines": { - "node": ">=6.0.0" - } - }, - "node_modules/dom-helpers": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/dom-helpers/-/dom-helpers-5.2.1.tgz", - "integrity": "sha512-nRCa7CK3VTrM2NmGkIy4cbK7IZlgBE/PYMn55rrXefr5xXDP0LdtfPnblFDoVdcAfslJ7or6iqAUnx0CCGIWQA==", - "dependencies": { - "@babel/runtime": "^7.8.7", - "csstype": "^3.0.2" - } - }, - "node_modules/esbuild": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.18.20.tgz", - "integrity": "sha512-ceqxoedUrcayh7Y7ZX6NdbbDzGROiyVBgC4PriJThBKSVPWnnFHZAkfI1lJT8QFkOwH4qOS2SJkS4wvpGl8BpA==", - "dev": true, - "hasInstallScript": true, - "bin": { - "esbuild": "bin/esbuild" - }, - "engines": { - "node": ">=12" - }, - "optionalDependencies": { - "@esbuild/android-arm": "0.18.20", - "@esbuild/android-arm64": "0.18.20", - "@esbuild/android-x64": "0.18.20", - "@esbuild/darwin-arm64": "0.18.20", - "@esbuild/darwin-x64": "0.18.20", - "@esbuild/freebsd-arm64": "0.18.20", - "@esbuild/freebsd-x64": "0.18.20", - "@esbuild/linux-arm": "0.18.20", - "@esbuild/linux-arm64": "0.18.20", - "@esbuild/linux-ia32": "0.18.20", - "@esbuild/linux-loong64": "0.18.20", - "@esbuild/linux-mips64el": "0.18.20", - "@esbuild/linux-ppc64": "0.18.20", - "@esbuild/linux-riscv64": "0.18.20", - "@esbuild/linux-s390x": "0.18.20", - "@esbuild/linux-x64": "0.18.20", - "@esbuild/netbsd-x64": "0.18.20", - "@esbuild/openbsd-x64": "0.18.20", - "@esbuild/sunos-x64": "0.18.20", - "@esbuild/win32-arm64": "0.18.20", - "@esbuild/win32-ia32": "0.18.20", - "@esbuild/win32-x64": "0.18.20" - } - }, - "node_modules/escape-string-regexp": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", - "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", - "dev": true, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/eslint": { - "version": "8.49.0", - "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.49.0.tgz", - "integrity": "sha512-jw03ENfm6VJI0jA9U+8H5zfl5b+FvuU3YYvZRdZHOlU2ggJkxrlkJH4HcDrZpj6YwD8kuYqvQM8LyesoazrSOQ==", - "dev": true, - "dependencies": { - "@eslint-community/eslint-utils": "^4.2.0", - "@eslint-community/regexpp": "^4.6.1", - "@eslint/eslintrc": "^2.1.2", - "@eslint/js": "8.49.0", - "@humanwhocodes/config-array": "^0.11.11", - "@humanwhocodes/module-importer": "^1.0.1", - "@nodelib/fs.walk": "^1.2.8", - "ajv": "^6.12.4", - "chalk": "^4.0.0", - "cross-spawn": "^7.0.2", - "debug": "^4.3.2", - "doctrine": "^3.0.0", - "escape-string-regexp": "^4.0.0", - "eslint-scope": "^7.2.2", - "eslint-visitor-keys": "^3.4.3", - "espree": "^9.6.1", - "esquery": "^1.4.2", - "esutils": "^2.0.2", - "fast-deep-equal": "^3.1.3", - "file-entry-cache": "^6.0.1", - "find-up": "^5.0.0", - "glob-parent": "^6.0.2", - "globals": "^13.19.0", - "graphemer": "^1.4.0", - "ignore": "^5.2.0", - "imurmurhash": "^0.1.4", - "is-glob": "^4.0.0", - "is-path-inside": "^3.0.3", - "js-yaml": "^4.1.0", - "json-stable-stringify-without-jsonify": "^1.0.1", - "levn": "^0.4.1", - "lodash.merge": "^4.6.2", - "minimatch": "^3.1.2", - "natural-compare": "^1.4.0", - "optionator": "^0.9.3", - "strip-ansi": "^6.0.1", - "text-table": "^0.2.0" - }, - "bin": { - "eslint": "bin/eslint.js" - }, - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "funding": { - "url": "https://opencollective.com/eslint" - } - }, - "node_modules/eslint-plugin-react-hooks": { - "version": "4.6.0", - "resolved": "https://registry.npmjs.org/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-4.6.0.tgz", - "integrity": "sha512-oFc7Itz9Qxh2x4gNHStv3BqJq54ExXmfC+a1NjAta66IAN87Wu0R/QArgIS9qKzX3dXKPI9H5crl9QchNMY9+g==", - "dev": true, - "engines": { - "node": ">=10" - }, - "peerDependencies": { - "eslint": "^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0" - } - }, - "node_modules/eslint-plugin-react-refresh": { - "version": "0.4.3", - "resolved": "https://registry.npmjs.org/eslint-plugin-react-refresh/-/eslint-plugin-react-refresh-0.4.3.tgz", - "integrity": "sha512-Hh0wv8bUNY877+sI0BlCUlsS0TYYQqvzEwJsJJPM2WF4RnTStSnSR3zdJYa2nPOJgg3UghXi54lVyMSmpCalzA==", - "dev": true, - "peerDependencies": { - "eslint": ">=7" - } - }, - "node_modules/eslint-scope": { - "version": "7.2.2", - "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.2.2.tgz", - "integrity": "sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==", - "dev": true, - "dependencies": { - "esrecurse": "^4.3.0", - "estraverse": "^5.2.0" - }, - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "funding": { - "url": "https://opencollective.com/eslint" - } - }, - "node_modules/eslint-visitor-keys": { - "version": "3.4.3", - "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz", - "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==", - "dev": true, - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "funding": { - "url": "https://opencollective.com/eslint" - } - }, - "node_modules/espree": { - "version": "9.6.1", - "resolved": "https://registry.npmjs.org/espree/-/espree-9.6.1.tgz", - "integrity": "sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==", - "dev": true, - "dependencies": { - "acorn": "^8.9.0", - "acorn-jsx": "^5.3.2", - "eslint-visitor-keys": "^3.4.1" - }, - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "funding": { - "url": "https://opencollective.com/eslint" - } - }, - "node_modules/esquery": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.5.0.tgz", - "integrity": "sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==", - "dev": true, - "dependencies": { - "estraverse": "^5.1.0" - }, - "engines": { - "node": ">=0.10" - } - }, - "node_modules/esrecurse": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", - "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", - "dev": true, - "dependencies": { - "estraverse": "^5.2.0" - }, - "engines": { - "node": ">=4.0" - } - }, - "node_modules/estraverse": { - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", - "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", - "dev": true, - "engines": { - "node": ">=4.0" - } - }, - "node_modules/esutils": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", - "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/fast-deep-equal": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", - "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", - "dev": true - }, - "node_modules/fast-glob": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.1.tgz", - "integrity": "sha512-kNFPyjhh5cKjrUltxs+wFx+ZkbRaxxmZ+X0ZU31SOsxCEtP9VPgtq2teZw1DebupL5GmDaNQ6yKMMVcM41iqDg==", - "dev": true, - "dependencies": { - "@nodelib/fs.stat": "^2.0.2", - "@nodelib/fs.walk": "^1.2.3", - "glob-parent": "^5.1.2", - "merge2": "^1.3.0", - "micromatch": "^4.0.4" - }, - "engines": { - "node": ">=8.6.0" - } - }, - "node_modules/fast-glob/node_modules/glob-parent": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", - "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", - "dev": true, - "dependencies": { - "is-glob": "^4.0.1" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/fast-json-stable-stringify": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", - "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", - "dev": true - }, - "node_modules/fast-levenshtein": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", - "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==", - "dev": true - }, - "node_modules/fastq": { - "version": "1.15.0", - "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.15.0.tgz", - "integrity": "sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==", - "dev": true, - "dependencies": { - "reusify": "^1.0.4" - } - }, - "node_modules/file-entry-cache": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz", - "integrity": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==", - "dev": true, - "dependencies": { - "flat-cache": "^3.0.4" - }, - "engines": { - "node": "^10.12.0 || >=12.0.0" - } - }, - "node_modules/fill-range": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", - "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", - "dev": true, - "dependencies": { - "to-regex-range": "^5.0.1" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/find-up": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", - "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", - "dev": true, - "dependencies": { - "locate-path": "^6.0.0", - "path-exists": "^4.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/flat-cache": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.1.0.tgz", - "integrity": "sha512-OHx4Qwrrt0E4jEIcI5/Xb+f+QmJYNj2rrK8wiIdQOIrB9WrrJL8cjZvXdXuBTkkEwEqLycb5BeZDV1o2i9bTew==", - "dev": true, - "dependencies": { - "flatted": "^3.2.7", - "keyv": "^4.5.3", - "rimraf": "^3.0.2" - }, - "engines": { - "node": ">=12.0.0" - } - }, - "node_modules/flatted": { - "version": "3.2.7", - "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.2.7.tgz", - "integrity": "sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ==", - "dev": true - }, - "node_modules/fs.realpath": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", - "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==", - "dev": true - }, - "node_modules/fsevents": { - "version": "2.3.3", - "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", - "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", - "dev": true, - "hasInstallScript": true, - "optional": true, - "os": [ - "darwin" - ], - "engines": { - "node": "^8.16.0 || ^10.6.0 || >=11.0.0" - } - }, - "node_modules/glob": { - "version": "7.2.3", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", - "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", - "dev": true, - "dependencies": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.1.1", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" - }, - "engines": { - "node": "*" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/glob-parent": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", - "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", - "dev": true, - "dependencies": { - "is-glob": "^4.0.3" - }, - "engines": { - "node": ">=10.13.0" - } - }, - "node_modules/globals": { - "version": "13.21.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-13.21.0.tgz", - "integrity": "sha512-ybyme3s4yy/t/3s35bewwXKOf7cvzfreG2lH0lZl0JB7I4GxRP2ghxOK/Nb9EkRXdbBXZLfq/p/0W2JUONB/Gg==", - "dev": true, - "dependencies": { - "type-fest": "^0.20.2" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/globby": { - "version": "11.1.0", - "resolved": "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz", - "integrity": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==", - "dev": true, - "dependencies": { - "array-union": "^2.1.0", - "dir-glob": "^3.0.1", - "fast-glob": "^3.2.9", - "ignore": "^5.2.0", - "merge2": "^1.4.1", - "slash": "^3.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/graphemer": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/graphemer/-/graphemer-1.4.0.tgz", - "integrity": "sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==", - "dev": true - }, - "node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/hoist-non-react-statics": { - "version": "3.3.2", - "resolved": "https://registry.npmjs.org/hoist-non-react-statics/-/hoist-non-react-statics-3.3.2.tgz", - "integrity": "sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==", - "dependencies": { - "react-is": "^16.7.0" - } - }, - "node_modules/ignore": { - "version": "5.2.4", - "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.2.4.tgz", - "integrity": "sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==", - "dev": true, - "engines": { - "node": ">= 4" - } - }, - "node_modules/immer": { - "version": "9.0.21", - "resolved": "https://registry.npmjs.org/immer/-/immer-9.0.21.tgz", - "integrity": "sha512-bc4NBHqOqSfRW7POMkHd51LvClaeMXpm8dx0e8oE2GORbq5aRK7Bxl4FyzVLdGtLmvLKL7BTDBG5ACQm4HWjTA==", - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/immer" - } - }, - "node_modules/import-fresh": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", - "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", - "dev": true, - "dependencies": { - "parent-module": "^1.0.0", - "resolve-from": "^4.0.0" - }, - "engines": { - "node": ">=6" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/imurmurhash": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", - "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", - "dev": true, - "engines": { - "node": ">=0.8.19" - } - }, - "node_modules/inflight": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", - "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", - "dev": true, - "dependencies": { - "once": "^1.3.0", - "wrappy": "1" - } - }, - "node_modules/inherits": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", - "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", - "dev": true - }, - "node_modules/invariant": { - "version": "2.2.4", - "resolved": "https://registry.npmjs.org/invariant/-/invariant-2.2.4.tgz", - "integrity": "sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==", - "dependencies": { - "loose-envify": "^1.0.0" - } - }, - "node_modules/is-extglob": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", - "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-glob": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", - "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", - "dev": true, - "dependencies": { - "is-extglob": "^2.1.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-number": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", - "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", - "dev": true, - "engines": { - "node": ">=0.12.0" - } - }, - "node_modules/is-path-inside": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz", - "integrity": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/isexe": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", - "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", - "dev": true - }, - "node_modules/js-tokens": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", - "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==" - }, - "node_modules/js-yaml": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", - "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", - "dev": true, - "dependencies": { - "argparse": "^2.0.1" - }, - "bin": { - "js-yaml": "bin/js-yaml.js" - } - }, - "node_modules/json-buffer": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz", - "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==", - "dev": true - }, - "node_modules/json-schema-traverse": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", - "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", - "dev": true - }, - "node_modules/json-stable-stringify-without-jsonify": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", - "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==", - "dev": true - }, - "node_modules/keyv": { - "version": "4.5.3", - "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.3.tgz", - "integrity": "sha512-QCiSav9WaX1PgETJ+SpNnx2PRRapJ/oRSXM4VO5OGYGSjrxbKPVFVhB3l2OCbLCk329N8qyAtsJjSjvVBWzEug==", - "dev": true, - "dependencies": { - "json-buffer": "3.0.1" - } - }, - "node_modules/levn": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", - "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", - "dev": true, - "dependencies": { - "prelude-ls": "^1.2.1", - "type-check": "~0.4.0" - }, - "engines": { - "node": ">= 0.8.0" - } - }, - "node_modules/locate-path": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", - "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", - "dev": true, - "dependencies": { - "p-locate": "^5.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/lodash.merge": { - "version": "4.6.2", - "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", - "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==", - "dev": true - }, - "node_modules/loose-envify": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz", - "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==", - "dependencies": { - "js-tokens": "^3.0.0 || ^4.0.0" - }, - "bin": { - "loose-envify": "cli.js" - } - }, - "node_modules/lru-cache": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", - "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", - "dev": true, - "dependencies": { - "yallist": "^4.0.0" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/merge2": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", - "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", - "dev": true, - "engines": { - "node": ">= 8" - } - }, - "node_modules/micromatch": { - "version": "4.0.5", - "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", - "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", - "dev": true, - "dependencies": { - "braces": "^3.0.2", - "picomatch": "^2.3.1" - }, - "engines": { - "node": ">=8.6" - } - }, - "node_modules/minimatch": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", - "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", - "dev": true, - "dependencies": { - "brace-expansion": "^1.1.7" - }, - "engines": { - "node": "*" - } - }, - "node_modules/ms": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", - "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", - "dev": true - }, - "node_modules/nanoid": { - "version": "3.3.6", - "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.6.tgz", - "integrity": "sha512-BGcqMMJuToF7i1rt+2PWSNVnWIkGCU78jBG3RxO/bZlnZPK2Cmi2QaffxGO/2RvWi9sL+FAiRiXMgsyxQ1DIDA==", - "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/ai" - } - ], - "bin": { - "nanoid": "bin/nanoid.cjs" - }, - "engines": { - "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" - } - }, - "node_modules/natural-compare": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", - "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==", - "dev": true - }, - "node_modules/object-assign": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", - "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/once": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", - "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", - "dev": true, - "dependencies": { - "wrappy": "1" - } - }, - "node_modules/optionator": { - "version": "0.9.3", - "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.3.tgz", - "integrity": "sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg==", - "dev": true, - "dependencies": { - "@aashutoshrathi/word-wrap": "^1.2.3", - "deep-is": "^0.1.3", - "fast-levenshtein": "^2.0.6", - "levn": "^0.4.1", - "prelude-ls": "^1.2.1", - "type-check": "^0.4.0" - }, - "engines": { - "node": ">= 0.8.0" - } - }, - "node_modules/p-limit": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", - "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", - "dev": true, - "dependencies": { - "yocto-queue": "^0.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/p-locate": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", - "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", - "dev": true, - "dependencies": { - "p-limit": "^3.0.2" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/parent-module": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", - "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", - "dev": true, - "dependencies": { - "callsites": "^3.0.0" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/path-exists": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", - "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/path-is-absolute": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", - "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/path-key": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", - "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/path-type": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", - "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/picocolors": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", - "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==", - "dev": true - }, - "node_modules/picomatch": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", - "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", - "dev": true, - "engines": { - "node": ">=8.6" - }, - "funding": { - "url": "https://github.com/sponsors/jonschlinkert" - } - }, - "node_modules/postcss": { - "version": "8.4.29", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.29.tgz", - "integrity": "sha512-cbI+jaqIeu/VGqXEarWkRCCffhjgXc0qjBtXpqJhTBohMUjUQnbBr0xqX3vEKudc4iviTewcJo5ajcec5+wdJw==", - "dev": true, - "funding": [ - { - "type": "opencollective", - "url": "https://opencollective.com/postcss/" - }, - { - "type": "tidelift", - "url": "https://tidelift.com/funding/github/npm/postcss" - }, - { - "type": "github", - "url": "https://github.com/sponsors/ai" - } - ], - "dependencies": { - "nanoid": "^3.3.6", - "picocolors": "^1.0.0", - "source-map-js": "^1.0.2" - }, - "engines": { - "node": "^10 || ^12 || >=14" - } - }, - "node_modules/prelude-ls": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", - "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", - "dev": true, - "engines": { - "node": ">= 0.8.0" - } - }, - "node_modules/prop-types": { - "version": "15.8.1", - "resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.8.1.tgz", - "integrity": "sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==", - "dependencies": { - "loose-envify": "^1.4.0", - "object-assign": "^4.1.1", - "react-is": "^16.13.1" - } - }, - "node_modules/prop-types-extra": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/prop-types-extra/-/prop-types-extra-1.1.1.tgz", - "integrity": "sha512-59+AHNnHYCdiC+vMwY52WmvP5dM3QLeoumYuEyceQDi9aEhtwN9zIQ2ZNo25sMyXnbh32h+P1ezDsUpUH3JAew==", - "dependencies": { - "react-is": "^16.3.2", - "warning": "^4.0.0" - }, - "peerDependencies": { - "react": ">=0.14.0" - } - }, - "node_modules/punycode": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.0.tgz", - "integrity": "sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA==", - "dev": true, - "engines": { - "node": ">=6" - } - }, - "node_modules/queue-microtask": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", - "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", - "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ] - }, - "node_modules/react": { - "version": "18.2.0", - "resolved": "https://registry.npmjs.org/react/-/react-18.2.0.tgz", - "integrity": "sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==", - "dependencies": { - "loose-envify": "^1.1.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/react-bootstrap": { - "version": "2.8.0", - "resolved": "https://registry.npmjs.org/react-bootstrap/-/react-bootstrap-2.8.0.tgz", - "integrity": "sha512-e/aNtxl0Z2ozrIaR82jr6Zz7ss9GSoaXpQaxmvtDUsTZIq/XalkduR/ZXP6vbQHz2T4syvjA+4FbtwELxxmpww==", - "dependencies": { - "@babel/runtime": "^7.21.0", - "@restart/hooks": "^0.4.9", - "@restart/ui": "^1.6.3", - "@types/react-transition-group": "^4.4.5", - "classnames": "^2.3.2", - "dom-helpers": "^5.2.1", - "invariant": "^2.2.4", - "prop-types": "^15.8.1", - "prop-types-extra": "^1.1.0", - "react-transition-group": "^4.4.5", - "uncontrollable": "^7.2.1", - "warning": "^4.0.3" - }, - "peerDependencies": { - "@types/react": ">=16.14.8", - "react": ">=16.14.0", - "react-dom": ">=16.14.0" - }, - "peerDependenciesMeta": { - "@types/react": { - "optional": true - } - } - }, - "node_modules/react-dom": { - "version": "18.2.0", - "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-18.2.0.tgz", - "integrity": "sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g==", - "dependencies": { - "loose-envify": "^1.1.0", - "scheduler": "^0.23.0" - }, - "peerDependencies": { - "react": "^18.2.0" - } - }, - "node_modules/react-is": { - "version": "16.13.1", - "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz", - "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==" - }, - "node_modules/react-lifecycles-compat": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/react-lifecycles-compat/-/react-lifecycles-compat-3.0.4.tgz", - "integrity": "sha512-fBASbA6LnOU9dOU2eW7aQ8xmYBSXUIWr+UmF9b1efZBazGNO+rcXT/icdKnYm2pTwcRylVUYwW7H1PHfLekVzA==" - }, - "node_modules/react-redux": { - "version": "8.1.2", - "resolved": "https://registry.npmjs.org/react-redux/-/react-redux-8.1.2.tgz", - "integrity": "sha512-xJKYI189VwfsFc4CJvHqHlDrzyFTY/3vZACbE+rr/zQ34Xx1wQfB4OTOSeOSNrF6BDVe8OOdxIrAnMGXA3ggfw==", - "dependencies": { - "@babel/runtime": "^7.12.1", - "@types/hoist-non-react-statics": "^3.3.1", - "@types/use-sync-external-store": "^0.0.3", - "hoist-non-react-statics": "^3.3.2", - "react-is": "^18.0.0", - "use-sync-external-store": "^1.0.0" - }, - "peerDependencies": { - "@types/react": "^16.8 || ^17.0 || ^18.0", - "@types/react-dom": "^16.8 || ^17.0 || ^18.0", - "react": "^16.8 || ^17.0 || ^18.0", - "react-dom": "^16.8 || ^17.0 || ^18.0", - "react-native": ">=0.59", - "redux": "^4 || ^5.0.0-beta.0" - }, - "peerDependenciesMeta": { - "@types/react": { - "optional": true - }, - "@types/react-dom": { - "optional": true - }, - "react-dom": { - "optional": true - }, - "react-native": { - "optional": true - }, - "redux": { - "optional": true - } - } - }, - "node_modules/react-redux/node_modules/react-is": { - "version": "18.2.0", - "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.2.0.tgz", - "integrity": "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==" - }, - "node_modules/react-router": { - "version": "6.15.0", - "resolved": "https://registry.npmjs.org/react-router/-/react-router-6.15.0.tgz", - "integrity": "sha512-NIytlzvzLwJkCQj2HLefmeakxxWHWAP+02EGqWEZy+DgfHHKQMUoBBjUQLOtFInBMhWtb3hiUy6MfFgwLjXhqg==", - "dependencies": { - "@remix-run/router": "1.8.0" - }, - "engines": { - "node": ">=14.0.0" - }, - "peerDependencies": { - "react": ">=16.8" - } - }, - "node_modules/react-router-dom": { - "version": "6.15.0", - "resolved": "https://registry.npmjs.org/react-router-dom/-/react-router-dom-6.15.0.tgz", - "integrity": "sha512-aR42t0fs7brintwBGAv2+mGlCtgtFQeOzK0BM1/OiqEzRejOZtpMZepvgkscpMUnKb8YO84G7s3LsHnnDNonbQ==", - "dependencies": { - "@remix-run/router": "1.8.0", - "react-router": "6.15.0" - }, - "engines": { - "node": ">=14.0.0" - }, - "peerDependencies": { - "react": ">=16.8", - "react-dom": ">=16.8" - } - }, - "node_modules/react-transition-group": { - "version": "4.4.5", - "resolved": "https://registry.npmjs.org/react-transition-group/-/react-transition-group-4.4.5.tgz", - "integrity": "sha512-pZcd1MCJoiKiBR2NRxeCRg13uCXbydPnmB4EOeRrY7480qNWO8IIgQG6zlDkm6uRMsURXPuKq0GWtiM59a5Q6g==", - "dependencies": { - "@babel/runtime": "^7.5.5", - "dom-helpers": "^5.0.1", - "loose-envify": "^1.4.0", - "prop-types": "^15.6.2" - }, - "peerDependencies": { - "react": ">=16.6.0", - "react-dom": ">=16.6.0" - } - }, - "node_modules/redux": { - "version": "4.2.1", - "resolved": "https://registry.npmjs.org/redux/-/redux-4.2.1.tgz", - "integrity": "sha512-LAUYz4lc+Do8/g7aeRa8JkyDErK6ekstQaqWQrNRW//MY1TvCEpMtpTWvlQ+FPbWCx+Xixu/6SHt5N0HR+SB4w==", - "dependencies": { - "@babel/runtime": "^7.9.2" - } - }, - "node_modules/redux-thunk": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/redux-thunk/-/redux-thunk-2.4.2.tgz", - "integrity": "sha512-+P3TjtnP0k/FEjcBL5FZpoovtvrTNT/UXd4/sluaSyrURlSlhLSzEdfsTBW7WsKB6yPvgd7q/iZPICFjW4o57Q==", - "peerDependencies": { - "redux": "^4" - } - }, - "node_modules/regenerator-runtime": { - "version": "0.14.0", - "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.14.0.tgz", - "integrity": "sha512-srw17NI0TUWHuGa5CFGGmhfNIeja30WMBfbslPNhf6JrqQlLN5gcrvig1oqPxiVaXb0oW0XRKtH6Nngs5lKCIA==" - }, - "node_modules/reselect": { - "version": "4.1.8", - "resolved": "https://registry.npmjs.org/reselect/-/reselect-4.1.8.tgz", - "integrity": "sha512-ab9EmR80F/zQTMNeneUr4cv+jSwPJgIlvEmVwLerwrWVbpLlBuls9XHzIeTFy4cegU2NHBp3va0LKOzU5qFEYQ==" - }, - "node_modules/resolve-from": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", - "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", - "dev": true, - "engines": { - "node": ">=4" - } - }, - "node_modules/reusify": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", - "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", - "dev": true, - "engines": { - "iojs": ">=1.0.0", - "node": ">=0.10.0" - } - }, - "node_modules/rimraf": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", - "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", - "dev": true, - "dependencies": { - "glob": "^7.1.3" - }, - "bin": { - "rimraf": "bin.js" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/rollup": { - "version": "3.29.1", - "resolved": "https://registry.npmjs.org/rollup/-/rollup-3.29.1.tgz", - "integrity": "sha512-c+ebvQz0VIH4KhhCpDsI+Bik0eT8ZFEVZEYw0cGMVqIP8zc+gnwl7iXCamTw7vzv2MeuZFZfdx5JJIq+ehzDlg==", - "dev": true, - "bin": { - "rollup": "dist/bin/rollup" - }, - "engines": { - "node": ">=14.18.0", - "npm": ">=8.0.0" - }, - "optionalDependencies": { - "fsevents": "~2.3.2" - } - }, - "node_modules/run-parallel": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", - "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", - "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ], - "dependencies": { - "queue-microtask": "^1.2.2" - } - }, - "node_modules/scheduler": { - "version": "0.23.0", - "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.23.0.tgz", - "integrity": "sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw==", - "dependencies": { - "loose-envify": "^1.1.0" - } - }, - "node_modules/semver": { - "version": "7.5.4", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", - "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", - "dev": true, - "dependencies": { - "lru-cache": "^6.0.0" - }, - "bin": { - "semver": "bin/semver.js" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/shebang-command": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", - "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", - "dev": true, - "dependencies": { - "shebang-regex": "^3.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/shebang-regex": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", - "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/slash": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", - "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/source-map-js": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.0.2.tgz", - "integrity": "sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/strip-ansi": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", - "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", - "dev": true, - "dependencies": { - "ansi-regex": "^5.0.1" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/strip-json-comments": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", - "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", - "dev": true, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/text-table": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", - "integrity": "sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==", - "dev": true - }, - "node_modules/to-regex-range": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", - "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", - "dev": true, - "dependencies": { - "is-number": "^7.0.0" - }, - "engines": { - "node": ">=8.0" - } - }, - "node_modules/ts-api-utils": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/ts-api-utils/-/ts-api-utils-1.0.3.tgz", - "integrity": "sha512-wNMeqtMz5NtwpT/UZGY5alT+VoKdSsOOP/kqHFcUW1P/VRhH2wJ48+DN2WwUliNbQ976ETwDL0Ifd2VVvgonvg==", - "dev": true, - "engines": { - "node": ">=16.13.0" - }, - "peerDependencies": { - "typescript": ">=4.2.0" - } - }, - "node_modules/tslib": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", - "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==" - }, - "node_modules/type-check": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", - "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", - "dev": true, - "dependencies": { - "prelude-ls": "^1.2.1" - }, - "engines": { - "node": ">= 0.8.0" - } - }, - "node_modules/type-fest": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", - "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", - "dev": true, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/typescript": { - "version": "5.2.2", - "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.2.2.tgz", - "integrity": "sha512-mI4WrpHsbCIcwT9cF4FZvr80QUeKvsUsUvKDoR+X/7XHQH98xYD8YHZg7ANtz2GtZt/CBq2QJ0thkGJMHfqc1w==", - "dev": true, - "bin": { - "tsc": "bin/tsc", - "tsserver": "bin/tsserver" - }, - "engines": { - "node": ">=14.17" - } - }, - "node_modules/uncontrollable": { - "version": "7.2.1", - "resolved": "https://registry.npmjs.org/uncontrollable/-/uncontrollable-7.2.1.tgz", - "integrity": "sha512-svtcfoTADIB0nT9nltgjujTi7BzVmwjZClOmskKu/E8FW9BXzg9os8OLr4f8Dlnk0rYWJIWr4wv9eKUXiQvQwQ==", - "dependencies": { - "@babel/runtime": "^7.6.3", - "@types/react": ">=16.9.11", - "invariant": "^2.2.4", - "react-lifecycles-compat": "^3.0.4" - }, - "peerDependencies": { - "react": ">=15.0.0" - } - }, - "node_modules/uri-js": { - "version": "4.4.1", - "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", - "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", - "dev": true, - "dependencies": { - "punycode": "^2.1.0" - } - }, - "node_modules/use-sync-external-store": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/use-sync-external-store/-/use-sync-external-store-1.2.0.tgz", - "integrity": "sha512-eEgnFxGQ1Ife9bzYs6VLi8/4X6CObHMw9Qr9tPY43iKwsPw8xE8+EFsf/2cFZ5S3esXgpWgtSCtLNS41F+sKPA==", - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0 || ^18.0.0" - } - }, - "node_modules/vite": { - "version": "4.4.9", - "resolved": "https://registry.npmjs.org/vite/-/vite-4.4.9.tgz", - "integrity": "sha512-2mbUn2LlUmNASWwSCNSJ/EG2HuSRTnVNaydp6vMCm5VIqJsjMfbIWtbH2kDuwUVW5mMUKKZvGPX/rqeqVvv1XA==", - "dev": true, - "dependencies": { - "esbuild": "^0.18.10", - "postcss": "^8.4.27", - "rollup": "^3.27.1" - }, - "bin": { - "vite": "bin/vite.js" - }, - "engines": { - "node": "^14.18.0 || >=16.0.0" - }, - "funding": { - "url": "https://github.com/vitejs/vite?sponsor=1" - }, - "optionalDependencies": { - "fsevents": "~2.3.2" - }, - "peerDependencies": { - "@types/node": ">= 14", - "less": "*", - "lightningcss": "^1.21.0", - "sass": "*", - "stylus": "*", - "sugarss": "*", - "terser": "^5.4.0" - }, - "peerDependenciesMeta": { - "@types/node": { - "optional": true - }, - "less": { - "optional": true - }, - "lightningcss": { - "optional": true - }, - "sass": { - "optional": true - }, - "stylus": { - "optional": true - }, - "sugarss": { - "optional": true - }, - "terser": { - "optional": true - } - } - }, - "node_modules/warning": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/warning/-/warning-4.0.3.tgz", - "integrity": "sha512-rpJyN222KWIvHJ/F53XSZv0Zl/accqHR8et1kpaMTD/fLCRxtV8iX8czMzY7sVZupTI3zcUTg8eycS2kNF9l6w==", - "dependencies": { - "loose-envify": "^1.0.0" - } - }, - "node_modules/which": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", - "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", - "dev": true, - "dependencies": { - "isexe": "^2.0.0" - }, - "bin": { - "node-which": "bin/node-which" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/wrappy": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", - "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", - "dev": true - }, - "node_modules/yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", - "dev": true - }, - "node_modules/yocto-queue": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", - "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", - "dev": true, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - } - }, - "dependencies": { - "@aashutoshrathi/word-wrap": { - "version": "1.2.6", - "resolved": "https://registry.npmjs.org/@aashutoshrathi/word-wrap/-/word-wrap-1.2.6.tgz", - "integrity": "sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==", - "dev": true - }, - "@babel/runtime": { - "version": "7.22.15", - "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.22.15.tgz", - "integrity": "sha512-T0O+aa+4w0u06iNmapipJXMV4HoUir03hpx3/YqXXhu9xim3w+dVphjFWl1OH8NbZHw5Lbm9k45drDkgq2VNNA==", - "requires": { - "regenerator-runtime": "^0.14.0" - } - }, - "@esbuild/android-arm": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.18.20.tgz", - "integrity": "sha512-fyi7TDI/ijKKNZTUJAQqiG5T7YjJXgnzkURqmGj13C6dCqckZBLdl4h7bkhHt/t0WP+zO9/zwroDvANaOqO5Sw==", - "dev": true, - "optional": true - }, - "@esbuild/android-arm64": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.18.20.tgz", - "integrity": "sha512-Nz4rJcchGDtENV0eMKUNa6L12zz2zBDXuhj/Vjh18zGqB44Bi7MBMSXjgunJgjRhCmKOjnPuZp4Mb6OKqtMHLQ==", - "dev": true, - "optional": true - }, - "@esbuild/android-x64": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.18.20.tgz", - "integrity": "sha512-8GDdlePJA8D6zlZYJV/jnrRAi6rOiNaCC/JclcXpB+KIuvfBN4owLtgzY2bsxnx666XjJx2kDPUmnTtR8qKQUg==", - "dev": true, - "optional": true - }, - "@esbuild/darwin-arm64": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.18.20.tgz", - "integrity": "sha512-bxRHW5kHU38zS2lPTPOyuyTm+S+eobPUnTNkdJEfAddYgEcll4xkT8DB9d2008DtTbl7uJag2HuE5NZAZgnNEA==", - "dev": true, - "optional": true - }, - "@esbuild/darwin-x64": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.18.20.tgz", - "integrity": "sha512-pc5gxlMDxzm513qPGbCbDukOdsGtKhfxD1zJKXjCCcU7ju50O7MeAZ8c4krSJcOIJGFR+qx21yMMVYwiQvyTyQ==", - "dev": true, - "optional": true - }, - "@esbuild/freebsd-arm64": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.18.20.tgz", - "integrity": "sha512-yqDQHy4QHevpMAaxhhIwYPMv1NECwOvIpGCZkECn8w2WFHXjEwrBn3CeNIYsibZ/iZEUemj++M26W3cNR5h+Tw==", - "dev": true, - "optional": true - }, - "@esbuild/freebsd-x64": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.18.20.tgz", - "integrity": "sha512-tgWRPPuQsd3RmBZwarGVHZQvtzfEBOreNuxEMKFcd5DaDn2PbBxfwLcj4+aenoh7ctXcbXmOQIn8HI6mCSw5MQ==", - "dev": true, - "optional": true - }, - "@esbuild/linux-arm": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.18.20.tgz", - "integrity": "sha512-/5bHkMWnq1EgKr1V+Ybz3s1hWXok7mDFUMQ4cG10AfW3wL02PSZi5kFpYKrptDsgb2WAJIvRcDm+qIvXf/apvg==", - "dev": true, - "optional": true - }, - "@esbuild/linux-arm64": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.18.20.tgz", - "integrity": "sha512-2YbscF+UL7SQAVIpnWvYwM+3LskyDmPhe31pE7/aoTMFKKzIc9lLbyGUpmmb8a8AixOL61sQ/mFh3jEjHYFvdA==", - "dev": true, - "optional": true - }, - "@esbuild/linux-ia32": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.18.20.tgz", - "integrity": "sha512-P4etWwq6IsReT0E1KHU40bOnzMHoH73aXp96Fs8TIT6z9Hu8G6+0SHSw9i2isWrD2nbx2qo5yUqACgdfVGx7TA==", - "dev": true, - "optional": true - }, - "@esbuild/linux-loong64": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.18.20.tgz", - "integrity": "sha512-nXW8nqBTrOpDLPgPY9uV+/1DjxoQ7DoB2N8eocyq8I9XuqJ7BiAMDMf9n1xZM9TgW0J8zrquIb/A7s3BJv7rjg==", - "dev": true, - "optional": true - }, - "@esbuild/linux-mips64el": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.18.20.tgz", - "integrity": "sha512-d5NeaXZcHp8PzYy5VnXV3VSd2D328Zb+9dEq5HE6bw6+N86JVPExrA6O68OPwobntbNJ0pzCpUFZTo3w0GyetQ==", - "dev": true, - "optional": true - }, - "@esbuild/linux-ppc64": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.18.20.tgz", - "integrity": "sha512-WHPyeScRNcmANnLQkq6AfyXRFr5D6N2sKgkFo2FqguP44Nw2eyDlbTdZwd9GYk98DZG9QItIiTlFLHJHjxP3FA==", - "dev": true, - "optional": true - }, - "@esbuild/linux-riscv64": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.18.20.tgz", - "integrity": "sha512-WSxo6h5ecI5XH34KC7w5veNnKkju3zBRLEQNY7mv5mtBmrP/MjNBCAlsM2u5hDBlS3NGcTQpoBvRzqBcRtpq1A==", - "dev": true, - "optional": true - }, - "@esbuild/linux-s390x": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.18.20.tgz", - "integrity": "sha512-+8231GMs3mAEth6Ja1iK0a1sQ3ohfcpzpRLH8uuc5/KVDFneH6jtAJLFGafpzpMRO6DzJ6AvXKze9LfFMrIHVQ==", - "dev": true, - "optional": true - }, - "@esbuild/linux-x64": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.18.20.tgz", - "integrity": "sha512-UYqiqemphJcNsFEskc73jQ7B9jgwjWrSayxawS6UVFZGWrAAtkzjxSqnoclCXxWtfwLdzU+vTpcNYhpn43uP1w==", - "dev": true, - "optional": true - }, - "@esbuild/netbsd-x64": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.18.20.tgz", - "integrity": "sha512-iO1c++VP6xUBUmltHZoMtCUdPlnPGdBom6IrO4gyKPFFVBKioIImVooR5I83nTew5UOYrk3gIJhbZh8X44y06A==", - "dev": true, - "optional": true - }, - "@esbuild/openbsd-x64": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.18.20.tgz", - "integrity": "sha512-e5e4YSsuQfX4cxcygw/UCPIEP6wbIL+se3sxPdCiMbFLBWu0eiZOJ7WoD+ptCLrmjZBK1Wk7I6D/I3NglUGOxg==", - "dev": true, - "optional": true - }, - "@esbuild/sunos-x64": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.18.20.tgz", - "integrity": "sha512-kDbFRFp0YpTQVVrqUd5FTYmWo45zGaXe0X8E1G/LKFC0v8x0vWrhOWSLITcCn63lmZIxfOMXtCfti/RxN/0wnQ==", - "dev": true, - "optional": true - }, - "@esbuild/win32-arm64": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.18.20.tgz", - "integrity": "sha512-ddYFR6ItYgoaq4v4JmQQaAI5s7npztfV4Ag6NrhiaW0RrnOXqBkgwZLofVTlq1daVTQNhtI5oieTvkRPfZrePg==", - "dev": true, - "optional": true - }, - "@esbuild/win32-ia32": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.18.20.tgz", - "integrity": "sha512-Wv7QBi3ID/rROT08SABTS7eV4hX26sVduqDOTe1MvGMjNd3EjOz4b7zeexIR62GTIEKrfJXKL9LFxTYgkyeu7g==", - "dev": true, - "optional": true - }, - "@esbuild/win32-x64": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.18.20.tgz", - "integrity": "sha512-kTdfRcSiDfQca/y9QIkng02avJ+NCaQvrMejlsB3RRv5sE9rRoeBPISaZpKxHELzRxZyLvNts1P27W3wV+8geQ==", - "dev": true, - "optional": true - }, - "@eslint-community/eslint-utils": { - "version": "4.4.0", - "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.4.0.tgz", - "integrity": "sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==", - "dev": true, - "requires": { - "eslint-visitor-keys": "^3.3.0" - } - }, - "@eslint-community/regexpp": { - "version": "4.8.1", - "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.8.1.tgz", - "integrity": "sha512-PWiOzLIUAjN/w5K17PoF4n6sKBw0gqLHPhywmYHP4t1VFQQVYeb1yWsJwnMVEMl3tUHME7X/SJPZLmtG7XBDxQ==", - "dev": true - }, - "@eslint/eslintrc": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-2.1.2.tgz", - "integrity": "sha512-+wvgpDsrB1YqAMdEUCcnTlpfVBH7Vqn6A/NT3D8WVXFIaKMlErPIZT3oCIAVCOtarRpMtelZLqJeU3t7WY6X6g==", - "dev": true, - "requires": { - "ajv": "^6.12.4", - "debug": "^4.3.2", - "espree": "^9.6.0", - "globals": "^13.19.0", - "ignore": "^5.2.0", - "import-fresh": "^3.2.1", - "js-yaml": "^4.1.0", - "minimatch": "^3.1.2", - "strip-json-comments": "^3.1.1" - } - }, - "@eslint/js": { - "version": "8.49.0", - "resolved": "https://registry.npmjs.org/@eslint/js/-/js-8.49.0.tgz", - "integrity": "sha512-1S8uAY/MTJqVx0SC4epBq+N2yhuwtNwLbJYNZyhL2pO1ZVKn5HFXav5T41Ryzy9K9V7ZId2JB2oy/W4aCd9/2w==", - "dev": true - }, - "@faker-js/faker": { - "version": "8.0.2", - "resolved": "https://registry.npmjs.org/@faker-js/faker/-/faker-8.0.2.tgz", - "integrity": "sha512-Uo3pGspElQW91PCvKSIAXoEgAUlRnH29sX2/p89kg7sP1m2PzCufHINd0FhTXQf6DYGiUlVncdSPa2F9wxed2A==", - "dev": true - }, - "@humanwhocodes/config-array": { - "version": "0.11.11", - "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.11.tgz", - "integrity": "sha512-N2brEuAadi0CcdeMXUkhbZB84eskAc8MEX1By6qEchoVywSgXPIjou4rYsl0V3Hj0ZnuGycGCjdNgockbzeWNA==", - "dev": true, - "requires": { - "@humanwhocodes/object-schema": "^1.2.1", - "debug": "^4.1.1", - "minimatch": "^3.0.5" - } - }, - "@humanwhocodes/module-importer": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz", - "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==", - "dev": true - }, - "@humanwhocodes/object-schema": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz", - "integrity": "sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==", - "dev": true - }, - "@nodelib/fs.scandir": { - "version": "2.1.5", - "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", - "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", - "dev": true, - "requires": { - "@nodelib/fs.stat": "2.0.5", - "run-parallel": "^1.1.9" - } - }, - "@nodelib/fs.stat": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", - "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", - "dev": true - }, - "@nodelib/fs.walk": { - "version": "1.2.8", - "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", - "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", - "dev": true, - "requires": { - "@nodelib/fs.scandir": "2.1.5", - "fastq": "^1.6.0" - } - }, - "@popperjs/core": { - "version": "2.11.8", - "resolved": "https://registry.npmjs.org/@popperjs/core/-/core-2.11.8.tgz", - "integrity": "sha512-P1st0aksCrn9sGZhp8GMYwBnQsbvAWsZAX44oXNNvLHGqAOcoVxmjZiohstwQ7SqKnbR47akdNi+uleWD8+g6A==" - }, - "@react-aria/ssr": { - "version": "3.8.0", - "resolved": "https://registry.npmjs.org/@react-aria/ssr/-/ssr-3.8.0.tgz", - "integrity": "sha512-Y54xs483rglN5DxbwfCPHxnkvZ+gZ0LbSYmR72LyWPGft8hN/lrl1VRS1EW2SMjnkEWlj+Km2mwvA3kEHDUA0A==", - "requires": { - "@swc/helpers": "^0.5.0" - } - }, - "@reduxjs/toolkit": { - "version": "1.9.5", - "resolved": "https://registry.npmjs.org/@reduxjs/toolkit/-/toolkit-1.9.5.tgz", - "integrity": "sha512-Rt97jHmfTeaxL4swLRNPD/zV4OxTes4la07Xc4hetpUW/vc75t5m1ANyxG6ymnEQ2FsLQsoMlYB2vV1sO3m8tQ==", - "requires": { - "immer": "^9.0.21", - "redux": "^4.2.1", - "redux-thunk": "^2.4.2", - "reselect": "^4.1.8" - } - }, - "@remix-run/router": { - "version": "1.8.0", - "resolved": "https://registry.npmjs.org/@remix-run/router/-/router-1.8.0.tgz", - "integrity": "sha512-mrfKqIHnSZRyIzBcanNJmVQELTnX+qagEDlcKO90RgRBVOZGSGvZKeDihTRfWcqoDn5N/NkUcwWTccnpN18Tfg==" - }, - "@restart/hooks": { - "version": "0.4.11", - "resolved": "https://registry.npmjs.org/@restart/hooks/-/hooks-0.4.11.tgz", - "integrity": "sha512-Ft/ncTULZN6ldGHiF/k5qt72O8JyRMOeg0tApvCni8LkoiEahO+z3TNxfXIVGy890YtWVDvJAl662dVJSJXvMw==", - "requires": { - "dequal": "^2.0.3" - } - }, - "@restart/ui": { - "version": "1.6.6", - "resolved": "https://registry.npmjs.org/@restart/ui/-/ui-1.6.6.tgz", - "integrity": "sha512-eC3puKuWE1SRYbojWHXnvCNHGgf3uzHCb6JOhnF4OXPibOIPEkR1sqDSkL643ydigxwh+ruCa1CmYHlzk7ikKA==", - "requires": { - "@babel/runtime": "^7.21.0", - "@popperjs/core": "^2.11.6", - "@react-aria/ssr": "^3.5.0", - "@restart/hooks": "^0.4.9", - "@types/warning": "^3.0.0", - "dequal": "^2.0.3", - "dom-helpers": "^5.2.0", - "uncontrollable": "^8.0.1", - "warning": "^4.0.3" - }, - "dependencies": { - "uncontrollable": { - "version": "8.0.4", - "resolved": "https://registry.npmjs.org/uncontrollable/-/uncontrollable-8.0.4.tgz", - "integrity": "sha512-ulRWYWHvscPFc0QQXvyJjY6LIXU56f0h8pQFvhxiKk5V1fcI8gp9Ht9leVAhrVjzqMw0BgjspBINx9r6oyJUvQ==", - "requires": {} - } - } - }, - "@swc/core": { - "version": "1.3.84", - "resolved": "https://registry.npmjs.org/@swc/core/-/core-1.3.84.tgz", - "integrity": "sha512-UPKUiDwG7HOdPfOb1VFeEJ76JDgU2w80JLewzx6tb0fk9TIjhr9yxKBzPbzc/QpjGHDu5iaEuNeZcu27u4j63g==", - "dev": true, - "requires": { - "@swc/core-darwin-arm64": "1.3.84", - "@swc/core-darwin-x64": "1.3.84", - "@swc/core-linux-arm-gnueabihf": "1.3.84", - "@swc/core-linux-arm64-gnu": "1.3.84", - "@swc/core-linux-arm64-musl": "1.3.84", - "@swc/core-linux-x64-gnu": "1.3.84", - "@swc/core-linux-x64-musl": "1.3.84", - "@swc/core-win32-arm64-msvc": "1.3.84", - "@swc/core-win32-ia32-msvc": "1.3.84", - "@swc/core-win32-x64-msvc": "1.3.84", - "@swc/types": "^0.1.4" - } - }, - "@swc/core-darwin-arm64": { - "version": "1.3.84", - "resolved": "https://registry.npmjs.org/@swc/core-darwin-arm64/-/core-darwin-arm64-1.3.84.tgz", - "integrity": "sha512-mqK0buOo+toF2HoJ/gWj2ApZbvbIiNq3mMwSTHCYJHlQFQfoTWnl9aaD5GSO4wfNFVYfEZ1R259o5uv5NlVtoA==", - "dev": true, - "optional": true - }, - "@swc/core-darwin-x64": { - "version": "1.3.84", - "resolved": "https://registry.npmjs.org/@swc/core-darwin-x64/-/core-darwin-x64-1.3.84.tgz", - "integrity": "sha512-cyuQZz62C43EDZqtnptUTlfDvAjgG3qu139m5zsfIK6ltXA5inKFbDWV3a/M5c18dFzA2Xh21Q46XZezmtQ9Tg==", - "dev": true, - "optional": true - }, - "@swc/core-linux-arm-gnueabihf": { - "version": "1.3.84", - "resolved": "https://registry.npmjs.org/@swc/core-linux-arm-gnueabihf/-/core-linux-arm-gnueabihf-1.3.84.tgz", - "integrity": "sha512-dmt/ECQrp3ZPWnK27p4E4xRIRHOoJhgGvxC5t5YaWzN20KcxE9ykEY2oLGSoeceM/A+4D11aRYGwF/EM7yOkvA==", - "dev": true, - "optional": true - }, - "@swc/core-linux-arm64-gnu": { - "version": "1.3.84", - "resolved": "https://registry.npmjs.org/@swc/core-linux-arm64-gnu/-/core-linux-arm64-gnu-1.3.84.tgz", - "integrity": "sha512-PgVfrI3NVg2z/oeg3GWLb9rFLMqidbdPwVH5nRyHVP2RX/BWP6qfnYfG+gJv4qrKzIldb9TyCGH7y8VWctKLxw==", - "dev": true, - "optional": true - }, - "@swc/core-linux-arm64-musl": { - "version": "1.3.84", - "resolved": "https://registry.npmjs.org/@swc/core-linux-arm64-musl/-/core-linux-arm64-musl-1.3.84.tgz", - "integrity": "sha512-hcuEa8/vin4Ns0P+FpcDHQ4f3jmhgGKQhqw0w+TovPSVTIXr+nrFQ2AGhs9nAxS6tSQ77C53Eb5YRpK8ToFo1A==", - "dev": true, - "optional": true - }, - "@swc/core-linux-x64-gnu": { - "version": "1.3.84", - "resolved": "https://registry.npmjs.org/@swc/core-linux-x64-gnu/-/core-linux-x64-gnu-1.3.84.tgz", - "integrity": "sha512-IvyimSbwGdu21jBBEqR1Up8Jhvl8kIAf1k3e5Oy8oRfgojdUfmW1EIwgGdoUeyQ1VHlfquiWaRGfsnHQUKl35g==", - "dev": true, - "optional": true - }, - "@swc/core-linux-x64-musl": { - "version": "1.3.84", - "resolved": "https://registry.npmjs.org/@swc/core-linux-x64-musl/-/core-linux-x64-musl-1.3.84.tgz", - "integrity": "sha512-hdgVU/O5ufDCe+p5RtCjU7PRNwd0WM+eWJS+GNY4QWL6O8y2VLM+i4+6YzwSUjeBk0xd+1YElMxbqz7r5tSZhw==", - "dev": true, - "optional": true - }, - "@swc/core-win32-arm64-msvc": { - "version": "1.3.84", - "resolved": "https://registry.npmjs.org/@swc/core-win32-arm64-msvc/-/core-win32-arm64-msvc-1.3.84.tgz", - "integrity": "sha512-rzH6k2BF0BFOFhUTD+bh0oCiUCZjFfDfoZoYNN/CM0qbtjAcFH21hzMh/EH8ZaXq8k/iQmUNNa5MPNPZ4SOMNw==", - "dev": true, - "optional": true - }, - "@swc/core-win32-ia32-msvc": { - "version": "1.3.84", - "resolved": "https://registry.npmjs.org/@swc/core-win32-ia32-msvc/-/core-win32-ia32-msvc-1.3.84.tgz", - "integrity": "sha512-Y+Dk7VLLVwwsAzoDmjkNW/sTmSPl9PGr4Mj1nhc5A2NNxZ+hz4SxFMclacDI03SC5ikK8Qh6WOoE/+nwUDa3uA==", - "dev": true, - "optional": true - }, - "@swc/core-win32-x64-msvc": { - "version": "1.3.84", - "resolved": "https://registry.npmjs.org/@swc/core-win32-x64-msvc/-/core-win32-x64-msvc-1.3.84.tgz", - "integrity": "sha512-WmpaosqCWMX7DArLdU8AJcj96hy0PKlYh1DaMVikSrrDHbJm2dZ8rd27IK3qUB8DgPkrDYHmLAKNZ+z3gWXgRQ==", - "dev": true, - "optional": true - }, - "@swc/helpers": { - "version": "0.5.2", - "resolved": "https://registry.npmjs.org/@swc/helpers/-/helpers-0.5.2.tgz", - "integrity": "sha512-E4KcWTpoLHqwPHLxidpOqQbcrZVgi0rsmmZXUle1jXmJfuIf/UWpczUJ7MZZ5tlxytgJXyp0w4PGkkeLiuIdZw==", - "requires": { - "tslib": "^2.4.0" - } - }, - "@swc/types": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/@swc/types/-/types-0.1.4.tgz", - "integrity": "sha512-z/G02d+59gyyUb7KYhKi9jOhicek6QD2oMaotUyG+lUkybpXoV49dY9bj7Ah5Q+y7knK2jU67UTX9FyfGzaxQg==", - "dev": true - }, - "@types/hoist-non-react-statics": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/@types/hoist-non-react-statics/-/hoist-non-react-statics-3.3.1.tgz", - "integrity": "sha512-iMIqiko6ooLrTh1joXodJK5X9xeEALT1kM5G3ZLhD3hszxBdIEd5C75U834D9mLcINgD4OyZf5uQXjkuYydWvA==", - "requires": { - "@types/react": "*", - "hoist-non-react-statics": "^3.3.0" - } - }, - "@types/json-schema": { - "version": "7.0.12", - "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.12.tgz", - "integrity": "sha512-Hr5Jfhc9eYOQNPYO5WLDq/n4jqijdHNlDXjuAQkkt+mWdQR+XJToOHrsD4cPaMXpn6KO7y2+wM8AZEs8VpBLVA==", - "dev": true - }, - "@types/prop-types": { - "version": "15.7.5", - "resolved": "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.5.tgz", - "integrity": "sha512-JCB8C6SnDoQf0cNycqd/35A7MjcnK+ZTqE7judS6o7utxUCg6imJg3QK2qzHKszlTjcj2cn+NwMB2i96ubpj7w==" - }, - "@types/react": { - "version": "18.2.21", - "resolved": "https://registry.npmjs.org/@types/react/-/react-18.2.21.tgz", - "integrity": "sha512-neFKG/sBAwGxHgXiIxnbm3/AAVQ/cMRS93hvBpg8xYRbeQSPVABp9U2bRnPf0iI4+Ucdv3plSxKK+3CW2ENJxA==", - "requires": { - "@types/prop-types": "*", - "@types/scheduler": "*", - "csstype": "^3.0.2" - } - }, - "@types/react-bootstrap": { - "version": "0.32.32", - "resolved": "https://registry.npmjs.org/@types/react-bootstrap/-/react-bootstrap-0.32.32.tgz", - "integrity": "sha512-GM9UtV7v+C2F0rbqgIpMWdCKBMdX3PQURoJQobPO4vDAeFadcExNtKffi13/MjaAks+riJKVGyiMe+6OmDYT2w==", - "dev": true, - "requires": { - "@types/react": "*" - } - }, - "@types/react-dom": { - "version": "18.2.7", - "resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-18.2.7.tgz", - "integrity": "sha512-GRaAEriuT4zp9N4p1i8BDBYmEyfo+xQ3yHjJU4eiK5NDa1RmUZG+unZABUTK4/Ox/M+GaHwb6Ow8rUITrtjszA==", - "devOptional": true, - "requires": { - "@types/react": "*" - } - }, - "@types/react-transition-group": { - "version": "4.4.6", - "resolved": "https://registry.npmjs.org/@types/react-transition-group/-/react-transition-group-4.4.6.tgz", - "integrity": "sha512-VnCdSxfcm08KjsJVQcfBmhEQAPnLB8G08hAxn39azX1qYBQ/5RVQuoHuKIcfKOdncuaUvEpFKFzEvbtIMsfVew==", - "requires": { - "@types/react": "*" - } - }, - "@types/scheduler": { - "version": "0.16.3", - "resolved": "https://registry.npmjs.org/@types/scheduler/-/scheduler-0.16.3.tgz", - "integrity": "sha512-5cJ8CB4yAx7BH1oMvdU0Jh9lrEXyPkar6F9G/ERswkCuvP4KQZfZkSjcMbAICCpQTN4OuZn8tz0HiKv9TGZgrQ==" - }, - "@types/semver": { - "version": "7.5.1", - "resolved": "https://registry.npmjs.org/@types/semver/-/semver-7.5.1.tgz", - "integrity": "sha512-cJRQXpObxfNKkFAZbJl2yjWtJCqELQIdShsogr1d2MilP8dKD9TE/nEKHkJgUNHdGKCQaf9HbIynuV2csLGVLg==", - "dev": true - }, - "@types/use-sync-external-store": { - "version": "0.0.3", - "resolved": "https://registry.npmjs.org/@types/use-sync-external-store/-/use-sync-external-store-0.0.3.tgz", - "integrity": "sha512-EwmlvuaxPNej9+T4v5AuBPJa2x2UOJVdjCtDHgcDqitUeOtjnJKJ+apYjVcAoBEMjKW1VVFGZLUb5+qqa09XFA==" - }, - "@types/warning": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/@types/warning/-/warning-3.0.0.tgz", - "integrity": "sha512-t/Tvs5qR47OLOr+4E9ckN8AmP2Tf16gWq+/qA4iUGS/OOyHVO8wv2vjJuX8SNOUTJyWb+2t7wJm6cXILFnOROA==" - }, - "@typescript-eslint/eslint-plugin": { - "version": "6.7.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-6.7.0.tgz", - "integrity": "sha512-gUqtknHm0TDs1LhY12K2NA3Rmlmp88jK9Tx8vGZMfHeNMLE3GH2e9TRub+y+SOjuYgtOmok+wt1AyDPZqxbNag==", - "dev": true, - "requires": { - "@eslint-community/regexpp": "^4.5.1", - "@typescript-eslint/scope-manager": "6.7.0", - "@typescript-eslint/type-utils": "6.7.0", - "@typescript-eslint/utils": "6.7.0", - "@typescript-eslint/visitor-keys": "6.7.0", - "debug": "^4.3.4", - "graphemer": "^1.4.0", - "ignore": "^5.2.4", - "natural-compare": "^1.4.0", - "semver": "^7.5.4", - "ts-api-utils": "^1.0.1" - } - }, - "@typescript-eslint/parser": { - "version": "6.7.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-6.7.0.tgz", - "integrity": "sha512-jZKYwqNpNm5kzPVP5z1JXAuxjtl2uG+5NpaMocFPTNC2EdYIgbXIPImObOkhbONxtFTTdoZstLZefbaK+wXZng==", - "dev": true, - "requires": { - "@typescript-eslint/scope-manager": "6.7.0", - "@typescript-eslint/types": "6.7.0", - "@typescript-eslint/typescript-estree": "6.7.0", - "@typescript-eslint/visitor-keys": "6.7.0", - "debug": "^4.3.4" - } - }, - "@typescript-eslint/scope-manager": { - "version": "6.7.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-6.7.0.tgz", - "integrity": "sha512-lAT1Uau20lQyjoLUQ5FUMSX/dS07qux9rYd5FGzKz/Kf8W8ccuvMyldb8hadHdK/qOI7aikvQWqulnEq2nCEYA==", - "dev": true, - "requires": { - "@typescript-eslint/types": "6.7.0", - "@typescript-eslint/visitor-keys": "6.7.0" - } - }, - "@typescript-eslint/type-utils": { - "version": "6.7.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-6.7.0.tgz", - "integrity": "sha512-f/QabJgDAlpSz3qduCyQT0Fw7hHpmhOzY/Rv6zO3yO+HVIdPfIWhrQoAyG+uZVtWAIS85zAyzgAFfyEr+MgBpg==", - "dev": true, - "requires": { - "@typescript-eslint/typescript-estree": "6.7.0", - "@typescript-eslint/utils": "6.7.0", - "debug": "^4.3.4", - "ts-api-utils": "^1.0.1" - } - }, - "@typescript-eslint/types": { - "version": "6.7.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-6.7.0.tgz", - "integrity": "sha512-ihPfvOp7pOcN/ysoj0RpBPOx3HQTJTrIN8UZK+WFd3/iDeFHHqeyYxa4hQk4rMhsz9H9mXpR61IzwlBVGXtl9Q==", - "dev": true - }, - "@typescript-eslint/typescript-estree": { - "version": "6.7.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-6.7.0.tgz", - "integrity": "sha512-dPvkXj3n6e9yd/0LfojNU8VMUGHWiLuBZvbM6V6QYD+2qxqInE7J+J/ieY2iGwR9ivf/R/haWGkIj04WVUeiSQ==", - "dev": true, - "requires": { - "@typescript-eslint/types": "6.7.0", - "@typescript-eslint/visitor-keys": "6.7.0", - "debug": "^4.3.4", - "globby": "^11.1.0", - "is-glob": "^4.0.3", - "semver": "^7.5.4", - "ts-api-utils": "^1.0.1" - } - }, - "@typescript-eslint/utils": { - "version": "6.7.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-6.7.0.tgz", - "integrity": "sha512-MfCq3cM0vh2slSikQYqK2Gq52gvOhe57vD2RM3V4gQRZYX4rDPnKLu5p6cm89+LJiGlwEXU8hkYxhqqEC/V3qA==", - "dev": true, - "requires": { - "@eslint-community/eslint-utils": "^4.4.0", - "@types/json-schema": "^7.0.12", - "@types/semver": "^7.5.0", - "@typescript-eslint/scope-manager": "6.7.0", - "@typescript-eslint/types": "6.7.0", - "@typescript-eslint/typescript-estree": "6.7.0", - "semver": "^7.5.4" - } - }, - "@typescript-eslint/visitor-keys": { - "version": "6.7.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-6.7.0.tgz", - "integrity": "sha512-/C1RVgKFDmGMcVGeD8HjKv2bd72oI1KxQDeY8uc66gw9R0OK0eMq48cA+jv9/2Ag6cdrsUGySm1yzYmfz0hxwQ==", - "dev": true, - "requires": { - "@typescript-eslint/types": "6.7.0", - "eslint-visitor-keys": "^3.4.1" - } - }, - "@vitejs/plugin-react-swc": { - "version": "3.3.2", - "resolved": "https://registry.npmjs.org/@vitejs/plugin-react-swc/-/plugin-react-swc-3.3.2.tgz", - "integrity": "sha512-VJFWY5sfoZerQRvJrh518h3AcQt6f/yTuWn4/TRB+dqmYU0NX1qz7qM5Wfd+gOQqUzQW4gxKqKN3KpE/P3+zrA==", - "dev": true, - "requires": { - "@swc/core": "^1.3.61" - } - }, - "acorn": { - "version": "8.10.0", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.10.0.tgz", - "integrity": "sha512-F0SAmZ8iUtS//m8DmCTA0jlh6TDKkHQyK6xc6V4KDTyZKA9dnvX9/3sRTVQrWm79glUAZbnmmNcdYwUIHWVybw==", - "dev": true - }, - "acorn-jsx": { - "version": "5.3.2", - "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", - "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", - "dev": true, - "requires": {} - }, - "ajv": { - "version": "6.12.6", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", - "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", - "dev": true, - "requires": { - "fast-deep-equal": "^3.1.1", - "fast-json-stable-stringify": "^2.0.0", - "json-schema-traverse": "^0.4.1", - "uri-js": "^4.2.2" - } - }, - "ansi-regex": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", - "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", - "dev": true - }, - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "requires": { - "color-convert": "^2.0.1" - } - }, - "argparse": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", - "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", - "dev": true - }, - "array-union": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz", - "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==", - "dev": true - }, - "balanced-match": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", - "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", - "dev": true - }, - "bootstrap": { - "version": "5.3.1", - "resolved": "https://registry.npmjs.org/bootstrap/-/bootstrap-5.3.1.tgz", - "integrity": "sha512-jzwza3Yagduci2x0rr9MeFSORjcHpt0lRZukZPZQJT1Dth5qzV7XcgGqYzi39KGAVYR8QEDVoO0ubFKOxzMG+g==", - "requires": {} - }, - "brace-expansion": { - "version": "1.1.11", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", - "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", - "dev": true, - "requires": { - "balanced-match": "^1.0.0", - "concat-map": "0.0.1" - } - }, - "braces": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", - "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", - "dev": true, - "requires": { - "fill-range": "^7.0.1" - } - }, - "callsites": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", - "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", - "dev": true - }, - "chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dev": true, - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "classnames": { - "version": "2.3.2", - "resolved": "https://registry.npmjs.org/classnames/-/classnames-2.3.2.tgz", - "integrity": "sha512-CSbhY4cFEJRe6/GQzIk5qXZ4Jeg5pcsP7b5peFSDpffpe1cqjASH/n9UTjBwOp6XpMSTwQ8Za2K5V02ueA7Tmw==" - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "concat-map": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", - "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", - "dev": true - }, - "cross-spawn": { - "version": "7.0.3", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", - "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", - "dev": true, - "requires": { - "path-key": "^3.1.0", - "shebang-command": "^2.0.0", - "which": "^2.0.1" - } - }, - "csstype": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.1.2.tgz", - "integrity": "sha512-I7K1Uu0MBPzaFKg4nI5Q7Vs2t+3gWWW648spaF+Rg7pI9ds18Ugn+lvg4SHczUdKlHI5LWBXyqfS8+DufyBsgQ==" - }, - "debug": { - "version": "4.3.4", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", - "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", - "dev": true, - "requires": { - "ms": "2.1.2" - } - }, - "deep-is": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", - "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==", - "dev": true - }, - "dequal": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/dequal/-/dequal-2.0.3.tgz", - "integrity": "sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==" - }, - "dir-glob": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz", - "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==", - "dev": true, - "requires": { - "path-type": "^4.0.0" - } - }, - "doctrine": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz", - "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==", - "dev": true, - "requires": { - "esutils": "^2.0.2" - } - }, - "dom-helpers": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/dom-helpers/-/dom-helpers-5.2.1.tgz", - "integrity": "sha512-nRCa7CK3VTrM2NmGkIy4cbK7IZlgBE/PYMn55rrXefr5xXDP0LdtfPnblFDoVdcAfslJ7or6iqAUnx0CCGIWQA==", - "requires": { - "@babel/runtime": "^7.8.7", - "csstype": "^3.0.2" - } - }, - "esbuild": { - "version": "0.18.20", - "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.18.20.tgz", - "integrity": "sha512-ceqxoedUrcayh7Y7ZX6NdbbDzGROiyVBgC4PriJThBKSVPWnnFHZAkfI1lJT8QFkOwH4qOS2SJkS4wvpGl8BpA==", - "dev": true, - "requires": { - "@esbuild/android-arm": "0.18.20", - "@esbuild/android-arm64": "0.18.20", - "@esbuild/android-x64": "0.18.20", - "@esbuild/darwin-arm64": "0.18.20", - "@esbuild/darwin-x64": "0.18.20", - "@esbuild/freebsd-arm64": "0.18.20", - "@esbuild/freebsd-x64": "0.18.20", - "@esbuild/linux-arm": "0.18.20", - "@esbuild/linux-arm64": "0.18.20", - "@esbuild/linux-ia32": "0.18.20", - "@esbuild/linux-loong64": "0.18.20", - "@esbuild/linux-mips64el": "0.18.20", - "@esbuild/linux-ppc64": "0.18.20", - "@esbuild/linux-riscv64": "0.18.20", - "@esbuild/linux-s390x": "0.18.20", - "@esbuild/linux-x64": "0.18.20", - "@esbuild/netbsd-x64": "0.18.20", - "@esbuild/openbsd-x64": "0.18.20", - "@esbuild/sunos-x64": "0.18.20", - "@esbuild/win32-arm64": "0.18.20", - "@esbuild/win32-ia32": "0.18.20", - "@esbuild/win32-x64": "0.18.20" - } - }, - "escape-string-regexp": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", - "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", - "dev": true - }, - "eslint": { - "version": "8.49.0", - "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.49.0.tgz", - "integrity": "sha512-jw03ENfm6VJI0jA9U+8H5zfl5b+FvuU3YYvZRdZHOlU2ggJkxrlkJH4HcDrZpj6YwD8kuYqvQM8LyesoazrSOQ==", - "dev": true, - "requires": { - "@eslint-community/eslint-utils": "^4.2.0", - "@eslint-community/regexpp": "^4.6.1", - "@eslint/eslintrc": "^2.1.2", - "@eslint/js": "8.49.0", - "@humanwhocodes/config-array": "^0.11.11", - "@humanwhocodes/module-importer": "^1.0.1", - "@nodelib/fs.walk": "^1.2.8", - "ajv": "^6.12.4", - "chalk": "^4.0.0", - "cross-spawn": "^7.0.2", - "debug": "^4.3.2", - "doctrine": "^3.0.0", - "escape-string-regexp": "^4.0.0", - "eslint-scope": "^7.2.2", - "eslint-visitor-keys": "^3.4.3", - "espree": "^9.6.1", - "esquery": "^1.4.2", - "esutils": "^2.0.2", - "fast-deep-equal": "^3.1.3", - "file-entry-cache": "^6.0.1", - "find-up": "^5.0.0", - "glob-parent": "^6.0.2", - "globals": "^13.19.0", - "graphemer": "^1.4.0", - "ignore": "^5.2.0", - "imurmurhash": "^0.1.4", - "is-glob": "^4.0.0", - "is-path-inside": "^3.0.3", - "js-yaml": "^4.1.0", - "json-stable-stringify-without-jsonify": "^1.0.1", - "levn": "^0.4.1", - "lodash.merge": "^4.6.2", - "minimatch": "^3.1.2", - "natural-compare": "^1.4.0", - "optionator": "^0.9.3", - "strip-ansi": "^6.0.1", - "text-table": "^0.2.0" - } - }, - "eslint-plugin-react-hooks": { - "version": "4.6.0", - "resolved": "https://registry.npmjs.org/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-4.6.0.tgz", - "integrity": "sha512-oFc7Itz9Qxh2x4gNHStv3BqJq54ExXmfC+a1NjAta66IAN87Wu0R/QArgIS9qKzX3dXKPI9H5crl9QchNMY9+g==", - "dev": true, - "requires": {} - }, - "eslint-plugin-react-refresh": { - "version": "0.4.3", - "resolved": "https://registry.npmjs.org/eslint-plugin-react-refresh/-/eslint-plugin-react-refresh-0.4.3.tgz", - "integrity": "sha512-Hh0wv8bUNY877+sI0BlCUlsS0TYYQqvzEwJsJJPM2WF4RnTStSnSR3zdJYa2nPOJgg3UghXi54lVyMSmpCalzA==", - "dev": true, - "requires": {} - }, - "eslint-scope": { - "version": "7.2.2", - "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.2.2.tgz", - "integrity": "sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==", - "dev": true, - "requires": { - "esrecurse": "^4.3.0", - "estraverse": "^5.2.0" - } - }, - "eslint-visitor-keys": { - "version": "3.4.3", - "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz", - "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==", - "dev": true - }, - "espree": { - "version": "9.6.1", - "resolved": "https://registry.npmjs.org/espree/-/espree-9.6.1.tgz", - "integrity": "sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==", - "dev": true, - "requires": { - "acorn": "^8.9.0", - "acorn-jsx": "^5.3.2", - "eslint-visitor-keys": "^3.4.1" - } - }, - "esquery": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.5.0.tgz", - "integrity": "sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==", - "dev": true, - "requires": { - "estraverse": "^5.1.0" - } - }, - "esrecurse": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", - "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", - "dev": true, - "requires": { - "estraverse": "^5.2.0" - } - }, - "estraverse": { - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", - "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", - "dev": true - }, - "esutils": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", - "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", - "dev": true - }, - "fast-deep-equal": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", - "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", - "dev": true - }, - "fast-glob": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.1.tgz", - "integrity": "sha512-kNFPyjhh5cKjrUltxs+wFx+ZkbRaxxmZ+X0ZU31SOsxCEtP9VPgtq2teZw1DebupL5GmDaNQ6yKMMVcM41iqDg==", - "dev": true, - "requires": { - "@nodelib/fs.stat": "^2.0.2", - "@nodelib/fs.walk": "^1.2.3", - "glob-parent": "^5.1.2", - "merge2": "^1.3.0", - "micromatch": "^4.0.4" - }, - "dependencies": { - "glob-parent": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", - "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", - "dev": true, - "requires": { - "is-glob": "^4.0.1" - } - } - } - }, - "fast-json-stable-stringify": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", - "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", - "dev": true - }, - "fast-levenshtein": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", - "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==", - "dev": true - }, - "fastq": { - "version": "1.15.0", - "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.15.0.tgz", - "integrity": "sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==", - "dev": true, - "requires": { - "reusify": "^1.0.4" - } - }, - "file-entry-cache": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz", - "integrity": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==", - "dev": true, - "requires": { - "flat-cache": "^3.0.4" - } - }, - "fill-range": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", - "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", - "dev": true, - "requires": { - "to-regex-range": "^5.0.1" - } - }, - "find-up": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", - "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", - "dev": true, - "requires": { - "locate-path": "^6.0.0", - "path-exists": "^4.0.0" - } - }, - "flat-cache": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.1.0.tgz", - "integrity": "sha512-OHx4Qwrrt0E4jEIcI5/Xb+f+QmJYNj2rrK8wiIdQOIrB9WrrJL8cjZvXdXuBTkkEwEqLycb5BeZDV1o2i9bTew==", - "dev": true, - "requires": { - "flatted": "^3.2.7", - "keyv": "^4.5.3", - "rimraf": "^3.0.2" - } - }, - "flatted": { - "version": "3.2.7", - "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.2.7.tgz", - "integrity": "sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ==", - "dev": true - }, - "fs.realpath": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", - "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==", - "dev": true - }, - "fsevents": { - "version": "2.3.3", - "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", - "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", - "dev": true, - "optional": true - }, - "glob": { - "version": "7.2.3", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", - "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", - "dev": true, - "requires": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.1.1", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" - } - }, - "glob-parent": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", - "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", - "dev": true, - "requires": { - "is-glob": "^4.0.3" - } - }, - "globals": { - "version": "13.21.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-13.21.0.tgz", - "integrity": "sha512-ybyme3s4yy/t/3s35bewwXKOf7cvzfreG2lH0lZl0JB7I4GxRP2ghxOK/Nb9EkRXdbBXZLfq/p/0W2JUONB/Gg==", - "dev": true, - "requires": { - "type-fest": "^0.20.2" - } - }, - "globby": { - "version": "11.1.0", - "resolved": "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz", - "integrity": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==", - "dev": true, - "requires": { - "array-union": "^2.1.0", - "dir-glob": "^3.0.1", - "fast-glob": "^3.2.9", - "ignore": "^5.2.0", - "merge2": "^1.4.1", - "slash": "^3.0.0" - } - }, - "graphemer": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/graphemer/-/graphemer-1.4.0.tgz", - "integrity": "sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==", - "dev": true - }, - "has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true - }, - "hoist-non-react-statics": { - "version": "3.3.2", - "resolved": "https://registry.npmjs.org/hoist-non-react-statics/-/hoist-non-react-statics-3.3.2.tgz", - "integrity": "sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==", - "requires": { - "react-is": "^16.7.0" - } - }, - "ignore": { - "version": "5.2.4", - "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.2.4.tgz", - "integrity": "sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==", - "dev": true - }, - "immer": { - "version": "9.0.21", - "resolved": "https://registry.npmjs.org/immer/-/immer-9.0.21.tgz", - "integrity": "sha512-bc4NBHqOqSfRW7POMkHd51LvClaeMXpm8dx0e8oE2GORbq5aRK7Bxl4FyzVLdGtLmvLKL7BTDBG5ACQm4HWjTA==" - }, - "import-fresh": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", - "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", - "dev": true, - "requires": { - "parent-module": "^1.0.0", - "resolve-from": "^4.0.0" - } - }, - "imurmurhash": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", - "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", - "dev": true - }, - "inflight": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", - "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", - "dev": true, - "requires": { - "once": "^1.3.0", - "wrappy": "1" - } - }, - "inherits": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", - "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", - "dev": true - }, - "invariant": { - "version": "2.2.4", - "resolved": "https://registry.npmjs.org/invariant/-/invariant-2.2.4.tgz", - "integrity": "sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==", - "requires": { - "loose-envify": "^1.0.0" - } - }, - "is-extglob": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", - "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", - "dev": true - }, - "is-glob": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", - "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", - "dev": true, - "requires": { - "is-extglob": "^2.1.1" - } - }, - "is-number": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", - "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", - "dev": true - }, - "is-path-inside": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz", - "integrity": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==", - "dev": true - }, - "isexe": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", - "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", - "dev": true - }, - "js-tokens": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", - "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==" - }, - "js-yaml": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", - "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", - "dev": true, - "requires": { - "argparse": "^2.0.1" - } - }, - "json-buffer": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz", - "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==", - "dev": true - }, - "json-schema-traverse": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", - "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", - "dev": true - }, - "json-stable-stringify-without-jsonify": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", - "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==", - "dev": true - }, - "keyv": { - "version": "4.5.3", - "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.3.tgz", - "integrity": "sha512-QCiSav9WaX1PgETJ+SpNnx2PRRapJ/oRSXM4VO5OGYGSjrxbKPVFVhB3l2OCbLCk329N8qyAtsJjSjvVBWzEug==", - "dev": true, - "requires": { - "json-buffer": "3.0.1" - } - }, - "levn": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", - "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", - "dev": true, - "requires": { - "prelude-ls": "^1.2.1", - "type-check": "~0.4.0" - } - }, - "locate-path": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", - "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", - "dev": true, - "requires": { - "p-locate": "^5.0.0" - } - }, - "lodash.merge": { - "version": "4.6.2", - "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", - "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==", - "dev": true - }, - "loose-envify": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz", - "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==", - "requires": { - "js-tokens": "^3.0.0 || ^4.0.0" - } - }, - "lru-cache": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", - "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", - "dev": true, - "requires": { - "yallist": "^4.0.0" - } - }, - "merge2": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", - "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", - "dev": true - }, - "micromatch": { - "version": "4.0.5", - "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", - "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", - "dev": true, - "requires": { - "braces": "^3.0.2", - "picomatch": "^2.3.1" - } - }, - "minimatch": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", - "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", - "dev": true, - "requires": { - "brace-expansion": "^1.1.7" - } - }, - "ms": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", - "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", - "dev": true - }, - "nanoid": { - "version": "3.3.6", - "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.6.tgz", - "integrity": "sha512-BGcqMMJuToF7i1rt+2PWSNVnWIkGCU78jBG3RxO/bZlnZPK2Cmi2QaffxGO/2RvWi9sL+FAiRiXMgsyxQ1DIDA==", - "dev": true - }, - "natural-compare": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", - "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==", - "dev": true - }, - "object-assign": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", - "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==" - }, - "once": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", - "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", - "dev": true, - "requires": { - "wrappy": "1" - } - }, - "optionator": { - "version": "0.9.3", - "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.3.tgz", - "integrity": "sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg==", - "dev": true, - "requires": { - "@aashutoshrathi/word-wrap": "^1.2.3", - "deep-is": "^0.1.3", - "fast-levenshtein": "^2.0.6", - "levn": "^0.4.1", - "prelude-ls": "^1.2.1", - "type-check": "^0.4.0" - } - }, - "p-limit": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", - "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", - "dev": true, - "requires": { - "yocto-queue": "^0.1.0" - } - }, - "p-locate": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", - "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", - "dev": true, - "requires": { - "p-limit": "^3.0.2" - } - }, - "parent-module": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", - "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", - "dev": true, - "requires": { - "callsites": "^3.0.0" - } - }, - "path-exists": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", - "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", - "dev": true - }, - "path-is-absolute": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", - "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", - "dev": true - }, - "path-key": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", - "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", - "dev": true - }, - "path-type": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", - "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==", - "dev": true - }, - "picocolors": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", - "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==", - "dev": true - }, - "picomatch": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", - "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", - "dev": true - }, - "postcss": { - "version": "8.4.29", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.29.tgz", - "integrity": "sha512-cbI+jaqIeu/VGqXEarWkRCCffhjgXc0qjBtXpqJhTBohMUjUQnbBr0xqX3vEKudc4iviTewcJo5ajcec5+wdJw==", - "dev": true, - "requires": { - "nanoid": "^3.3.6", - "picocolors": "^1.0.0", - "source-map-js": "^1.0.2" - } - }, - "prelude-ls": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", - "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", - "dev": true - }, - "prop-types": { - "version": "15.8.1", - "resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.8.1.tgz", - "integrity": "sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==", - "requires": { - "loose-envify": "^1.4.0", - "object-assign": "^4.1.1", - "react-is": "^16.13.1" - } - }, - "prop-types-extra": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/prop-types-extra/-/prop-types-extra-1.1.1.tgz", - "integrity": "sha512-59+AHNnHYCdiC+vMwY52WmvP5dM3QLeoumYuEyceQDi9aEhtwN9zIQ2ZNo25sMyXnbh32h+P1ezDsUpUH3JAew==", - "requires": { - "react-is": "^16.3.2", - "warning": "^4.0.0" - } - }, - "punycode": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.0.tgz", - "integrity": "sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA==", - "dev": true - }, - "queue-microtask": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", - "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", - "dev": true - }, - "react": { - "version": "18.2.0", - "resolved": "https://registry.npmjs.org/react/-/react-18.2.0.tgz", - "integrity": "sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==", - "requires": { - "loose-envify": "^1.1.0" - } - }, - "react-bootstrap": { - "version": "2.8.0", - "resolved": "https://registry.npmjs.org/react-bootstrap/-/react-bootstrap-2.8.0.tgz", - "integrity": "sha512-e/aNtxl0Z2ozrIaR82jr6Zz7ss9GSoaXpQaxmvtDUsTZIq/XalkduR/ZXP6vbQHz2T4syvjA+4FbtwELxxmpww==", - "requires": { - "@babel/runtime": "^7.21.0", - "@restart/hooks": "^0.4.9", - "@restart/ui": "^1.6.3", - "@types/react-transition-group": "^4.4.5", - "classnames": "^2.3.2", - "dom-helpers": "^5.2.1", - "invariant": "^2.2.4", - "prop-types": "^15.8.1", - "prop-types-extra": "^1.1.0", - "react-transition-group": "^4.4.5", - "uncontrollable": "^7.2.1", - "warning": "^4.0.3" - } - }, - "react-dom": { - "version": "18.2.0", - "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-18.2.0.tgz", - "integrity": "sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g==", - "requires": { - "loose-envify": "^1.1.0", - "scheduler": "^0.23.0" - } - }, - "react-is": { - "version": "16.13.1", - "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz", - "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==" - }, - "react-lifecycles-compat": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/react-lifecycles-compat/-/react-lifecycles-compat-3.0.4.tgz", - "integrity": "sha512-fBASbA6LnOU9dOU2eW7aQ8xmYBSXUIWr+UmF9b1efZBazGNO+rcXT/icdKnYm2pTwcRylVUYwW7H1PHfLekVzA==" - }, - "react-redux": { - "version": "8.1.2", - "resolved": "https://registry.npmjs.org/react-redux/-/react-redux-8.1.2.tgz", - "integrity": "sha512-xJKYI189VwfsFc4CJvHqHlDrzyFTY/3vZACbE+rr/zQ34Xx1wQfB4OTOSeOSNrF6BDVe8OOdxIrAnMGXA3ggfw==", - "requires": { - "@babel/runtime": "^7.12.1", - "@types/hoist-non-react-statics": "^3.3.1", - "@types/use-sync-external-store": "^0.0.3", - "hoist-non-react-statics": "^3.3.2", - "react-is": "^18.0.0", - "use-sync-external-store": "^1.0.0" - }, - "dependencies": { - "react-is": { - "version": "18.2.0", - "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.2.0.tgz", - "integrity": "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==" - } - } - }, - "react-router": { - "version": "6.15.0", - "resolved": "https://registry.npmjs.org/react-router/-/react-router-6.15.0.tgz", - "integrity": "sha512-NIytlzvzLwJkCQj2HLefmeakxxWHWAP+02EGqWEZy+DgfHHKQMUoBBjUQLOtFInBMhWtb3hiUy6MfFgwLjXhqg==", - "requires": { - "@remix-run/router": "1.8.0" - } - }, - "react-router-dom": { - "version": "6.15.0", - "resolved": "https://registry.npmjs.org/react-router-dom/-/react-router-dom-6.15.0.tgz", - "integrity": "sha512-aR42t0fs7brintwBGAv2+mGlCtgtFQeOzK0BM1/OiqEzRejOZtpMZepvgkscpMUnKb8YO84G7s3LsHnnDNonbQ==", - "requires": { - "@remix-run/router": "1.8.0", - "react-router": "6.15.0" - } - }, - "react-transition-group": { - "version": "4.4.5", - "resolved": "https://registry.npmjs.org/react-transition-group/-/react-transition-group-4.4.5.tgz", - "integrity": "sha512-pZcd1MCJoiKiBR2NRxeCRg13uCXbydPnmB4EOeRrY7480qNWO8IIgQG6zlDkm6uRMsURXPuKq0GWtiM59a5Q6g==", - "requires": { - "@babel/runtime": "^7.5.5", - "dom-helpers": "^5.0.1", - "loose-envify": "^1.4.0", - "prop-types": "^15.6.2" - } - }, - "redux": { - "version": "4.2.1", - "resolved": "https://registry.npmjs.org/redux/-/redux-4.2.1.tgz", - "integrity": "sha512-LAUYz4lc+Do8/g7aeRa8JkyDErK6ekstQaqWQrNRW//MY1TvCEpMtpTWvlQ+FPbWCx+Xixu/6SHt5N0HR+SB4w==", - "requires": { - "@babel/runtime": "^7.9.2" - } - }, - "redux-thunk": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/redux-thunk/-/redux-thunk-2.4.2.tgz", - "integrity": "sha512-+P3TjtnP0k/FEjcBL5FZpoovtvrTNT/UXd4/sluaSyrURlSlhLSzEdfsTBW7WsKB6yPvgd7q/iZPICFjW4o57Q==", - "requires": {} - }, - "regenerator-runtime": { - "version": "0.14.0", - "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.14.0.tgz", - "integrity": "sha512-srw17NI0TUWHuGa5CFGGmhfNIeja30WMBfbslPNhf6JrqQlLN5gcrvig1oqPxiVaXb0oW0XRKtH6Nngs5lKCIA==" - }, - "reselect": { - "version": "4.1.8", - "resolved": "https://registry.npmjs.org/reselect/-/reselect-4.1.8.tgz", - "integrity": "sha512-ab9EmR80F/zQTMNeneUr4cv+jSwPJgIlvEmVwLerwrWVbpLlBuls9XHzIeTFy4cegU2NHBp3va0LKOzU5qFEYQ==" - }, - "resolve-from": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", - "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", - "dev": true - }, - "reusify": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", - "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", - "dev": true - }, - "rimraf": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", - "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", - "dev": true, - "requires": { - "glob": "^7.1.3" - } - }, - "rollup": { - "version": "3.29.1", - "resolved": "https://registry.npmjs.org/rollup/-/rollup-3.29.1.tgz", - "integrity": "sha512-c+ebvQz0VIH4KhhCpDsI+Bik0eT8ZFEVZEYw0cGMVqIP8zc+gnwl7iXCamTw7vzv2MeuZFZfdx5JJIq+ehzDlg==", - "dev": true, - "requires": { - "fsevents": "~2.3.2" - } - }, - "run-parallel": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", - "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", - "dev": true, - "requires": { - "queue-microtask": "^1.2.2" - } - }, - "scheduler": { - "version": "0.23.0", - "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.23.0.tgz", - "integrity": "sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw==", - "requires": { - "loose-envify": "^1.1.0" - } - }, - "semver": { - "version": "7.5.4", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", - "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", - "dev": true, - "requires": { - "lru-cache": "^6.0.0" - } - }, - "shebang-command": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", - "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", - "dev": true, - "requires": { - "shebang-regex": "^3.0.0" - } - }, - "shebang-regex": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", - "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", - "dev": true - }, - "slash": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", - "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", - "dev": true - }, - "source-map-js": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.0.2.tgz", - "integrity": "sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==", - "dev": true - }, - "strip-ansi": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", - "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", - "dev": true, - "requires": { - "ansi-regex": "^5.0.1" - } - }, - "strip-json-comments": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", - "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", - "dev": true - }, - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "requires": { - "has-flag": "^4.0.0" - } - }, - "text-table": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", - "integrity": "sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==", - "dev": true - }, - "to-regex-range": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", - "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", - "dev": true, - "requires": { - "is-number": "^7.0.0" - } - }, - "ts-api-utils": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/ts-api-utils/-/ts-api-utils-1.0.3.tgz", - "integrity": "sha512-wNMeqtMz5NtwpT/UZGY5alT+VoKdSsOOP/kqHFcUW1P/VRhH2wJ48+DN2WwUliNbQ976ETwDL0Ifd2VVvgonvg==", - "dev": true, - "requires": {} - }, - "tslib": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", - "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==" - }, - "type-check": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", - "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", - "dev": true, - "requires": { - "prelude-ls": "^1.2.1" - } - }, - "type-fest": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", - "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", - "dev": true - }, - "typescript": { - "version": "5.2.2", - "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.2.2.tgz", - "integrity": "sha512-mI4WrpHsbCIcwT9cF4FZvr80QUeKvsUsUvKDoR+X/7XHQH98xYD8YHZg7ANtz2GtZt/CBq2QJ0thkGJMHfqc1w==", - "dev": true - }, - "uncontrollable": { - "version": "7.2.1", - "resolved": "https://registry.npmjs.org/uncontrollable/-/uncontrollable-7.2.1.tgz", - "integrity": "sha512-svtcfoTADIB0nT9nltgjujTi7BzVmwjZClOmskKu/E8FW9BXzg9os8OLr4f8Dlnk0rYWJIWr4wv9eKUXiQvQwQ==", - "requires": { - "@babel/runtime": "^7.6.3", - "@types/react": ">=16.9.11", - "invariant": "^2.2.4", - "react-lifecycles-compat": "^3.0.4" - } - }, - "uri-js": { - "version": "4.4.1", - "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", - "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", - "dev": true, - "requires": { - "punycode": "^2.1.0" - } - }, - "use-sync-external-store": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/use-sync-external-store/-/use-sync-external-store-1.2.0.tgz", - "integrity": "sha512-eEgnFxGQ1Ife9bzYs6VLi8/4X6CObHMw9Qr9tPY43iKwsPw8xE8+EFsf/2cFZ5S3esXgpWgtSCtLNS41F+sKPA==", - "requires": {} - }, - "vite": { - "version": "4.4.9", - "resolved": "https://registry.npmjs.org/vite/-/vite-4.4.9.tgz", - "integrity": "sha512-2mbUn2LlUmNASWwSCNSJ/EG2HuSRTnVNaydp6vMCm5VIqJsjMfbIWtbH2kDuwUVW5mMUKKZvGPX/rqeqVvv1XA==", - "dev": true, - "requires": { - "esbuild": "^0.18.10", - "fsevents": "~2.3.2", - "postcss": "^8.4.27", - "rollup": "^3.27.1" - } - }, - "warning": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/warning/-/warning-4.0.3.tgz", - "integrity": "sha512-rpJyN222KWIvHJ/F53XSZv0Zl/accqHR8et1kpaMTD/fLCRxtV8iX8czMzY7sVZupTI3zcUTg8eycS2kNF9l6w==", - "requires": { - "loose-envify": "^1.0.0" - } - }, - "which": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", - "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", - "dev": true, - "requires": { - "isexe": "^2.0.0" - } - }, - "wrappy": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", - "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", - "dev": true - }, - "yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", - "dev": true - }, - "yocto-queue": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", - "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", - "dev": true - } - } -} diff --git a/site-search/vite/site-search/package.json b/site-search/vite/site-search/package.json deleted file mode 100644 index ccecec4b..00000000 --- a/site-search/vite/site-search/package.json +++ /dev/null @@ -1,35 +0,0 @@ -{ - "name": "site-search", - "private": true, - "version": "0.0.0", - "type": "module", - "scripts": { - "dev": "vite", - "build": "tsc && vite build", - "lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0", - "preview": "vite preview" - }, - "dependencies": { - "@reduxjs/toolkit": "^1.9.5", - "bootstrap": "^5.3.1", - "react": "^18.2.0", - "react-bootstrap": "^2.8.0", - "react-dom": "^18.2.0", - "react-redux": "^8.1.2", - "react-router-dom": "^6.15.0" - }, - "devDependencies": { - "@faker-js/faker": "^8.0.2", - "@types/react": "^18.2.15", - "@types/react-bootstrap": "^0.32.32", - "@types/react-dom": "^18.2.7", - "@typescript-eslint/eslint-plugin": "^6.0.0", - "@typescript-eslint/parser": "^6.0.0", - "@vitejs/plugin-react-swc": "^3.3.2", - "eslint": "^8.45.0", - "eslint-plugin-react-hooks": "^4.6.0", - "eslint-plugin-react-refresh": "^0.4.3", - "typescript": "^5.0.2", - "vite": "^4.4.5" - } -} diff --git a/site-search/vite/site-search/public/vite.svg b/site-search/vite/site-search/public/vite.svg deleted file mode 100644 index e7b8dfb1..00000000 --- a/site-search/vite/site-search/public/vite.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/site-search/vite/site-search/src/App.css b/site-search/vite/site-search/src/App.css deleted file mode 100644 index b9d355df..00000000 --- a/site-search/vite/site-search/src/App.css +++ /dev/null @@ -1,42 +0,0 @@ -#root { - max-width: 1280px; - margin: 0 auto; - padding: 2rem; - text-align: center; -} - -.logo { - height: 6em; - padding: 1.5em; - will-change: filter; - transition: filter 300ms; -} -.logo:hover { - filter: drop-shadow(0 0 2em #646cffaa); -} -.logo.react:hover { - filter: drop-shadow(0 0 2em #61dafbaa); -} - -@keyframes logo-spin { - from { - transform: rotate(0deg); - } - to { - transform: rotate(360deg); - } -} - -@media (prefers-reduced-motion: no-preference) { - a:nth-of-type(2) .logo { - animation: logo-spin infinite 20s linear; - } -} - -.card { - padding: 2em; -} - -.read-the-docs { - color: #888; -} diff --git a/site-search/vite/site-search/src/App.tsx b/site-search/vite/site-search/src/App.tsx deleted file mode 100644 index 088b39b7..00000000 --- a/site-search/vite/site-search/src/App.tsx +++ /dev/null @@ -1,21 +0,0 @@ -// import { useState } from 'react' -// import reactLogo from './assets/react.svg' -// import viteLogo from '/vite.svg' -import './App.css' - -function App() { - // const [count, setCount] = useState(0) - - return ( - <> -
- - -

Site Search

- -
- - ) -} - -export default App diff --git a/site-search/vite/site-search/src/api/dummy-data.tsx b/site-search/vite/site-search/src/api/dummy-data.tsx deleted file mode 100644 index 95d86a30..00000000 --- a/site-search/vite/site-search/src/api/dummy-data.tsx +++ /dev/null @@ -1,22 +0,0 @@ -import { faker } from '@faker-js/faker'; -import type { Site } from './sites' - - -export function createRandomSite(): Site { - return { - uuid: faker.string.uuid(), - siteID: faker.number.int({min: 15192, max: 20999}), - address: faker.location.streetAddress(), - latitude: faker.location.latitude(), //TODO: Confine this to BC - longitude: faker.location.longitude(), //TODO: Confine to BC - lastUpdated: faker.date.past({years: 10}), - city: faker.location.city(), - region: randomRegion() - } -} - -const REGIONS = ['Vancouver Island/Coast', 'Mainland/Southwest', 'Thompson-Okanagan', 'Kootenay', 'Cariboo',' North Coast']; -function randomRegion() { - const random = Math.floor(Math.random() * REGIONS.length) - return REGIONS[random]; -} \ No newline at end of file diff --git a/site-search/vite/site-search/src/api/sites.ts b/site-search/vite/site-search/src/api/sites.ts deleted file mode 100644 index d8309cfc..00000000 --- a/site-search/vite/site-search/src/api/sites.ts +++ /dev/null @@ -1,20 +0,0 @@ -// import { createApi, fetchBaseQuery } from '@reduxjs/toolkit/query/react' -// import type - -// export const siteAPI = createApi({ -// recucerPath: 'siteAPI', - -// }) - - - -export type Site = { - uuid?: string, - siteID: number, - address: string, - latitude: number, - longitude: number, - lastUpdated: Date, - city: string, - region: string -} \ No newline at end of file diff --git a/site-search/vite/site-search/src/assets/react.svg b/site-search/vite/site-search/src/assets/react.svg deleted file mode 100644 index 6c87de9b..00000000 --- a/site-search/vite/site-search/src/assets/react.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/site-search/vite/site-search/src/components/Header.tsx b/site-search/vite/site-search/src/components/Header.tsx deleted file mode 100644 index 72817c9d..00000000 --- a/site-search/vite/site-search/src/components/Header.tsx +++ /dev/null @@ -1,33 +0,0 @@ -import Container from 'react-bootstrap/Container'; -import Nav from 'react-bootstrap/Nav'; -import Navbar from 'react-bootstrap/Navbar'; -import NavDropdown from 'react-bootstrap/NavDropdown'; - - -export default function Header() { - return ( - - - BCGov Logo - - - - - - - ); -} \ No newline at end of file diff --git a/site-search/vite/site-search/src/features/simple-search/search-results.tsx b/site-search/vite/site-search/src/features/simple-search/search-results.tsx deleted file mode 100644 index 7640af6d..00000000 --- a/site-search/vite/site-search/src/features/simple-search/search-results.tsx +++ /dev/null @@ -1,39 +0,0 @@ - -import { Site } from '@/api/sites' -import { Link } from "react-router-dom"; - - -export default function SimpleSearchResults({ site }: Site) { - // console.log('SimpleSearchResults site', site) - - return ( -
-

{site.address}

- - - - - - - - - - - - - - - - - - - -
Site IDCityRegionLatitudeLongitude
{site.siteID}{site.city}{site.region}{site.latitude}{site.longitude}
- View Site Details - View on Map - - Last Updated: {site.lastUpdated.toISOString().split('T')[0]} -
-
- ) -} \ No newline at end of file diff --git a/site-search/vite/site-search/src/features/simple-search/search-toggle.tsx b/site-search/vite/site-search/src/features/simple-search/search-toggle.tsx deleted file mode 100644 index 0d5e42ae..00000000 --- a/site-search/vite/site-search/src/features/simple-search/search-toggle.tsx +++ /dev/null @@ -1,23 +0,0 @@ - -import ToggleButton from 'react-bootstrap/ToggleButton'; - -export default function SearchToggle({ checked, onChange, children }) { - - return ( - onChange(e.currentTarget.checked)} - > - {children} - - ) -} - -function convertToClassName(str: string): string { - return str.replace(' ', '-').toLowerCase() -} \ No newline at end of file diff --git a/site-search/vite/site-search/src/features/simple-search/simple-search.ts b/site-search/vite/site-search/src/features/simple-search/simple-search.ts deleted file mode 100644 index e6096a73..00000000 --- a/site-search/vite/site-search/src/features/simple-search/simple-search.ts +++ /dev/null @@ -1,20 +0,0 @@ -import { createRandomSite } from '@/api/dummy-data' -import { createSlice } from '@reduxjs/toolkit' - -export const siteSlice = createSlice({ - name: 'site', - initialState: { - // value: [createRandomSite()] - // value: (new Array(100)).fill(createRandomSite) - value: Array.from({length: 50}, _ => createRandomSite()) - }, - reducers: { - add: ()=>console.log('todo') // Maybe not even necessary? SITE list won't mutate much, unlike site selection - } -}) - - -// Action creators are generated for each case reducer function -export const { add } = siteSlice.actions - -export default siteSlice.reducer \ No newline at end of file diff --git a/site-search/vite/site-search/src/index.css b/site-search/vite/site-search/src/index.css deleted file mode 100644 index 2e6ae4ab..00000000 --- a/site-search/vite/site-search/src/index.css +++ /dev/null @@ -1,32 +0,0 @@ - - -:root { - --main-gray: #EDEDED; - --dark-gray: #717171 - - - --bs-blue: #0d6efd; - --bs-indigo: #6610f2; - --bs-purple: #6f42c1; - --bs-pink: #d63384; - --bs-red: #dc3545; - --bs-orange: #fd7e14; - --bs-yellow: #ffc107; - --bs-green: #198754; - --bs-teal: #20c997; - --bs-cyan: #0dcaf0; - --bs-white: #fff; - --bs-gray: #6c757d; - --bs-gray-dark: #343a40; - --bs-primary: #0d6efd; - --bs-secondary: #6c757d; - --bs-success: #198754; - --bs-info: #0dcaf0; - --bs-warning: #ffc107; - --bs-danger: #dc3545; - --bs-light: #f8f9fa; - --bs-dark: #212529; - --bs-font-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; - --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; - --bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0)); -} \ No newline at end of file diff --git a/site-search/vite/site-search/src/main.tsx b/site-search/vite/site-search/src/main.tsx deleted file mode 100644 index 03092cd9..00000000 --- a/site-search/vite/site-search/src/main.tsx +++ /dev/null @@ -1,34 +0,0 @@ -import React from 'react' -import ReactDOM from 'react-dom/client' -import App from './App.tsx' -import Search from './pages/search.tsx' -import { - createBrowserRouter, - RouterProvider, -} from "react-router-dom"; -import 'bootstrap/dist/css/bootstrap.css'; -import './index.css' -import AdvancedSearch from './pages/advanced-search.tsx'; -import store from './store.ts' -import { Provider } from 'react-redux' - - -const router = createBrowserRouter([ - { - path: "/", - element: , - }, - { - path: "/advanced-search", - element: - } -]); - - -ReactDOM.createRoot(document.getElementById('root')!).render( - - - - - , -) diff --git a/site-search/vite/site-search/src/pages/advanced-search.tsx b/site-search/vite/site-search/src/pages/advanced-search.tsx deleted file mode 100644 index 888b9ba7..00000000 --- a/site-search/vite/site-search/src/pages/advanced-search.tsx +++ /dev/null @@ -1,12 +0,0 @@ -import Header from "@/components/Header" - -export default function AdvancedSearch() { - return ( - <> -
-
-

Advanced search - Incomplete

-
- - ) -} \ No newline at end of file diff --git a/site-search/vite/site-search/src/pages/search.css b/site-search/vite/site-search/src/pages/search.css deleted file mode 100644 index 888c35f7..00000000 --- a/site-search/vite/site-search/src/pages/search.css +++ /dev/null @@ -1,7 +0,0 @@ -.simple-search { - /* background-color: lightgray !important; */ - /* border-color: gray !important; */ - background-color: var(--main-gray) !important; - border-color: var(--dark-gray) !important; -} - diff --git a/site-search/vite/site-search/src/pages/search.tsx b/site-search/vite/site-search/src/pages/search.tsx deleted file mode 100644 index 01c80992..00000000 --- a/site-search/vite/site-search/src/pages/search.tsx +++ /dev/null @@ -1,141 +0,0 @@ -import Button from 'react-bootstrap/Button'; -import Header from '@/components/Header' -import { useState } from 'react'; - -import { Link } from "react-router-dom"; -import { Site } from '@/api/sites' - -import ToggleButton from 'react-bootstrap/ToggleButton'; -import { useSelector } from 'react-redux'; -import SimpleSearchResults from '@/features/simple-search/search-results'; -import './search.css'; -import SearchToggle from '@/features/simple-search/search-toggle'; -import { nothing } from 'immer'; - - -export default function SearchPage() { - const [searchBySiteID, setSearchBySiteId] = useState(false); - const [searchByCity, setSearchByCity] = useState(false); - const [searchByRegion, setSearchByRegion] = useState(false); - const [searchByAddress, setSearchByAddress] = useState(false); - const [isLoaded, setIsLoaded] = useState(true); - const sites: Site[] = useSelector(state => state.site.value); - const [searchResults, setSearchResults] = useState([]); - const [searchQuery, setSearchQuery] = useState(''); - - function handleSearch(e){ - setSearchQuery(e.target.value) - updateSearch(e.target.value) - } - - function updateSearch(query: string){ - // TODO: Debounce - setIsLoaded(false) - setTimeout(() => { - - // TODO - Only search on SiteID based on user selections - // TODO - Re-trigger search when state changed - const results = sites.filter(site => { - const nothingSelected = (!searchBySiteID && !searchByCity && !searchByRegion); - const resultCollection = []; - if (searchBySiteID || nothingSelected) { - resultCollection.push(String(site.siteID).includes(query) ) - } - if (searchByCity || nothingSelected) { - resultCollection.push(String(site.city).includes(query)) - } - if (searchByRegion || nothingSelected) { - resultCollection.push(String(site.region).includes(query)) - } - if (searchByAddress || nothingSelected) { - resultCollection.push(String(site.address).includes(query)) - } - - // console.log('sites.filter', { searchBySiteID, searchByCity, searchByRegion }) - // If we have any hits, return true, otherwise if array is empty return false, so Array.filter works above - // Use filter to remove 'false' from array, so it only returns true on a positive id - return resultCollection.filter(x=>!!x).length - }) - setSearchResults(results) - setIsLoaded(true); - }, 1000) - } - - - /** - * These below functions were an attempt to re-trigger serach after clicking a search option, but they did not work. - * Lead to weird case where old values were rendered. - */ - // function updateSearchBySite(val: boolean){ - // // console.log('updateSearchBySite', val) - // setSearchBySiteId(val) - // updateSearch(searchQuery) - // // setTimeout(() =>{updateSearch(searchQuery)}, 0) - // } - - // function updateSearchByCity(val: boolean){ - // setSearchByCity(val); - // updateSearch(searchQuery) - // } - - // function updateSearchByRegion(val: boolean){ - // setSearchByRegion(val) - // updateSearch(searchQuery) - // } - - - - - return ( - <> -
-
-

Site Search

-
-
- -
- -
- - - -
-
- - {!!searchQuery.length && -
-
-
- Site ID - City - Region - Address - {/* Site ID */} - {/* City */} - {/* Region */} -
-
-
- -
- {!isLoaded &&
Loading...
} - {isLoaded && searchResults.map(site => { - return - })} - {isLoaded && searchResults.length == 0 &&
- No results -
} -
- - -
-
- } - -
- - ) - - -} \ No newline at end of file diff --git a/site-search/vite/site-search/src/store.ts b/site-search/vite/site-search/src/store.ts deleted file mode 100644 index 95d4001f..00000000 --- a/site-search/vite/site-search/src/store.ts +++ /dev/null @@ -1,8 +0,0 @@ -import { configureStore } from '@reduxjs/toolkit' -import siteReducer from '@/features/simple-search/simple-search' - -export default configureStore({ - reducer: { - site: siteReducer - } -}) \ No newline at end of file diff --git a/site-search/vite/site-search/src/vite-env.d.ts b/site-search/vite/site-search/src/vite-env.d.ts deleted file mode 100644 index 11f02fe2..00000000 --- a/site-search/vite/site-search/src/vite-env.d.ts +++ /dev/null @@ -1 +0,0 @@ -/// diff --git a/site-search/vite/site-search/tsconfig.json b/site-search/vite/site-search/tsconfig.json deleted file mode 100644 index 0b89aa00..00000000 --- a/site-search/vite/site-search/tsconfig.json +++ /dev/null @@ -1,30 +0,0 @@ -{ - "compilerOptions": { - "target": "ES2020", - "useDefineForClassFields": true, - "lib": ["ES2020", "DOM", "DOM.Iterable"], - "module": "ESNext", - "skipLibCheck": true, - - /* Bundler mode */ - "moduleResolution": "bundler", - "allowImportingTsExtensions": true, - "resolveJsonModule": true, - "isolatedModules": true, - "noEmit": true, - "jsx": "react-jsx", - - /* Linting */ - "strict": true, - "noUnusedLocals": true, - "noUnusedParameters": true, - "noFallthroughCasesInSwitch": true, - - /* Paths */ - "paths": { - "@/*": ["./src/*"] - } - }, - "include": ["src"], - "references": [{ "path": "./tsconfig.node.json" }] -} diff --git a/site-search/vite/site-search/tsconfig.node.json b/site-search/vite/site-search/tsconfig.node.json deleted file mode 100644 index 42872c59..00000000 --- a/site-search/vite/site-search/tsconfig.node.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "compilerOptions": { - "composite": true, - "skipLibCheck": true, - "module": "ESNext", - "moduleResolution": "bundler", - "allowSyntheticDefaultImports": true - }, - "include": ["vite.config.ts"] -} diff --git a/site-search/vite/site-search/vite.config.ts b/site-search/vite/site-search/vite.config.ts deleted file mode 100644 index ec2e883c..00000000 --- a/site-search/vite/site-search/vite.config.ts +++ /dev/null @@ -1,11 +0,0 @@ -import { defineConfig } from 'vite' -import * as path from 'path' -import react from '@vitejs/plugin-react-swc' - -// https://vitejs.dev/config/ -export default defineConfig({ - plugins: [react()], - resolve: { - alias: [{ find: '@', replacement: path.resolve(__dirname, 'src') }], - } -}) From 167a2037801bfee292b82c5f6b425881318c6251 Mon Sep 17 00:00:00 2001 From: Adam Coard Date: Thu, 14 Sep 2023 11:09:30 -0700 Subject: [PATCH 018/194] Added fadeOut/fadeIn --- .../site-search-frontend/src/pages/search.css | 12 +++++ .../site-search-frontend/src/pages/search.tsx | 53 ++++++++++--------- 2 files changed, 40 insertions(+), 25 deletions(-) diff --git a/site-search/site-search-frontend/src/pages/search.css b/site-search/site-search-frontend/src/pages/search.css index 8fd199f2..48c14105 100644 --- a/site-search/site-search-frontend/src/pages/search.css +++ b/site-search/site-search-frontend/src/pages/search.css @@ -9,4 +9,16 @@ max-height: 500px; overflow: scroll; border-color: black !important; +} + +.fadeOut { + opacity: 0; + height: 0; + transition: 0.25s; +} + +.fadeIn { + opacity: 1; + height: 500px; + transition: 0.25s; } \ No newline at end of file diff --git a/site-search/site-search-frontend/src/pages/search.tsx b/site-search/site-search-frontend/src/pages/search.tsx index c0bcad7b..f0ab3c38 100644 --- a/site-search/site-search-frontend/src/pages/search.tsx +++ b/site-search/site-search-frontend/src/pages/search.tsx @@ -9,6 +9,8 @@ import { useSelector } from 'react-redux'; import SimpleSearchResults from '@/features/simple-search/search-results'; import './search.css'; import SearchToggle from '@/features/simple-search/search-toggle'; +import Collapse from 'react-bootstrap/Collapse'; + @@ -102,36 +104,37 @@ export default function SearchPage() { - {!!searchQuery.length && -
-
-
- Site ID - City - Region - Address - {/* The below were trying to use the commented out functions that re-trigger search on selection. Will pick this up again later. */} - {/* Site ID */} - {/* City */} - {/* Region */} -
-
-
- -
- {!isLoaded &&
Loading...
} - {isLoaded && searchResults.map(site => { - return - })} - {isLoaded && searchResults.length == 0 &&
- No results -
} +
+
+
+
+ Site ID + City + Region + Address + {/* The below were trying to use the commented out functions that re-trigger search on selection. Will pick this up again later. */} + {/* Site ID */} + {/* City */} + {/* Region */} +
+
+
+ {!isLoaded &&
Loading...
} + {isLoaded && searchResults.map(site => { + return + })} + {isLoaded && searchResults.length == 0 &&
+ No results +
} +
+ +
- } +
From a2bed6babe6ca52f5b8b1d7f435f67364cf46d78 Mon Sep 17 00:00:00 2001 From: Adam Coard Date: Thu, 14 Sep 2023 11:31:22 -0700 Subject: [PATCH 019/194] Add conditional highlighting for search query --- .../src/components/Highlighted.tsx | 29 +++++++++++++++++++ .../features/simple-search/search-results.tsx | 17 ++++++----- .../site-search-frontend/src/pages/search.css | 4 +++ .../site-search-frontend/src/pages/search.tsx | 11 ++++--- 4 files changed, 49 insertions(+), 12 deletions(-) create mode 100644 site-search/site-search-frontend/src/components/Highlighted.tsx diff --git a/site-search/site-search-frontend/src/components/Highlighted.tsx b/site-search/site-search-frontend/src/components/Highlighted.tsx new file mode 100644 index 00000000..b77798bb --- /dev/null +++ b/site-search/site-search-frontend/src/components/Highlighted.tsx @@ -0,0 +1,29 @@ +import React from "react"; + +const Highlighter = ({ children, highlight }) => { + if (!highlight) return children; + console.log('CHILDREN', { children }) + const regexp = new RegExp(highlight, 'g'); + const matches = children.match(regexp); + var parts = children.split(new RegExp(`${highlight.replace()}`, 'g')); + + for (var i = 0; i < parts.length; i++) { + if (i !== parts.length - 1) { + let match = matches[i]; + // While the next part is an empty string, merge the corresponding match with the current + // match into a single to avoid consequent spans with nothing between them. + while (parts[i + 1] === '') { + match += matches[++i]; + } + + parts[i] = ( + + {parts[i]}{match} + + ); + } + } + return
{parts}
; +}; + +export default Highlighter \ No newline at end of file diff --git a/site-search/site-search-frontend/src/features/simple-search/search-results.tsx b/site-search/site-search-frontend/src/features/simple-search/search-results.tsx index 7640af6d..53c4b0da 100644 --- a/site-search/site-search-frontend/src/features/simple-search/search-results.tsx +++ b/site-search/site-search-frontend/src/features/simple-search/search-results.tsx @@ -1,14 +1,15 @@ import { Site } from '@/api/sites' import { Link } from "react-router-dom"; +import Highlighter from '@/components/Highlighted'; -export default function SimpleSearchResults({ site }: Site) { +export default function SimpleSearchResults({ site, highlight }: Site) { // console.log('SimpleSearchResults site', site) return (
-

{site.address}

+

{site.address}

@@ -21,18 +22,18 @@ export default function SimpleSearchResults({ site }: Site) { - - - - - + + + + +
{site.siteID}{site.city}{site.region}{site.latitude}{site.longitude}{String(site.siteID)}{site.city}{site.region}{String(site.latitude)}{String(site.longitude)}
View Site Details View on Map - Last Updated: {site.lastUpdated.toISOString().split('T')[0]} + Last Updated: {site.lastUpdated.toISOString().split('T')[0]}
) diff --git a/site-search/site-search-frontend/src/pages/search.css b/site-search/site-search-frontend/src/pages/search.css index 48c14105..35eb31d7 100644 --- a/site-search/site-search-frontend/src/pages/search.css +++ b/site-search/site-search-frontend/src/pages/search.css @@ -21,4 +21,8 @@ opacity: 1; height: 500px; transition: 0.25s; +} + +.highlighted { + background-color: yellow; } \ No newline at end of file diff --git a/site-search/site-search-frontend/src/pages/search.tsx b/site-search/site-search-frontend/src/pages/search.tsx index f0ab3c38..ed19e6d9 100644 --- a/site-search/site-search-frontend/src/pages/search.tsx +++ b/site-search/site-search-frontend/src/pages/search.tsx @@ -13,7 +13,6 @@ import Collapse from 'react-bootstrap/Collapse'; - export default function SearchPage() { const [searchBySiteID, setSearchBySiteId] = useState(false); const [searchByCity, setSearchByCity] = useState(false); @@ -29,10 +28,14 @@ export default function SearchPage() { updateSearch(e.target.value) } + let searchTimeout: number; function updateSearch(query: string){ - // TODO: Debounce + // TODO: Debounce! Also cancel timeouts if a new one comes in. setIsLoaded(false) - setTimeout(() => { + + // Cancel the previous search if a new one comes in, stops jankiness as you type fast. + clearTimeout(searchTimeout) + searchTimeout = setTimeout(() => { // TODO - Only search on SiteID based on user selections // TODO - Re-trigger search when state changed @@ -123,7 +126,7 @@ export default function SearchPage() {
{!isLoaded &&
Loading...
} {isLoaded && searchResults.map(site => { - return + return })} {isLoaded && searchResults.length == 0 &&
No results From b4618947447d6c408b21fb07fe77104d8a64f9bf Mon Sep 17 00:00:00 2001 From: Adam Coard Date: Thu, 14 Sep 2023 11:44:50 -0700 Subject: [PATCH 020/194] Highlighting bug fix showing 'undefined' --- .../site-search-frontend/src/components/Highlighted.tsx | 7 ++++++- site-search/site-search-frontend/src/pages/search.css | 4 +++- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/site-search/site-search-frontend/src/components/Highlighted.tsx b/site-search/site-search-frontend/src/components/Highlighted.tsx index b77798bb..1d31abaf 100644 --- a/site-search/site-search-frontend/src/components/Highlighted.tsx +++ b/site-search/site-search-frontend/src/components/Highlighted.tsx @@ -1,5 +1,6 @@ import React from "react"; + const Highlighter = ({ children, highlight }) => { if (!highlight) return children; console.log('CHILDREN', { children }) @@ -12,10 +13,14 @@ const Highlighter = ({ children, highlight }) => { let match = matches[i]; // While the next part is an empty string, merge the corresponding match with the current // match into a single to avoid consequent spans with nothing between them. + console.log('PRE match', { match }) while (parts[i + 1] === '') { - match += matches[++i]; + const newMatch = matches[++i]; + // EPD - Custom fix here, making sure 'undefined' isn't appended after number records occasionally + if (newMatch !== undefined) match += newMatch; } + parts[i] = ( {parts[i]}{match} diff --git a/site-search/site-search-frontend/src/pages/search.css b/site-search/site-search-frontend/src/pages/search.css index 35eb31d7..ec52c880 100644 --- a/site-search/site-search-frontend/src/pages/search.css +++ b/site-search/site-search-frontend/src/pages/search.css @@ -24,5 +24,7 @@ } .highlighted { - background-color: yellow; + background-color: #ffeaa7; + color: #e17055; + /* box-shadow: -3px 0 0 #ffeaa7, 3px 0 0 #ffeaa7; */ } \ No newline at end of file From c3763e32634258cec09f2216704dd47e109956de Mon Sep 17 00:00:00 2001 From: Adam Coard Date: Thu, 14 Sep 2023 11:44:58 -0700 Subject: [PATCH 021/194] Fix jankiness with delay of display after render --- site-search/site-search-frontend/src/pages/search.tsx | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/site-search/site-search-frontend/src/pages/search.tsx b/site-search/site-search-frontend/src/pages/search.tsx index ed19e6d9..79216607 100644 --- a/site-search/site-search-frontend/src/pages/search.tsx +++ b/site-search/site-search-frontend/src/pages/search.tsx @@ -60,8 +60,11 @@ export default function SearchPage() { // Use filter to remove 'false' from array, so it only returns true on a positive id return resultCollection.filter(x=>!!x).length }) + + // By putting a delay between setting search results and displaying them, we cut down on the jank when searching multi-lines + // May not be necessary w/ Debouncing setSearchResults(results) - setIsLoaded(true); + setTimeout(() => { setIsLoaded(true) }, 250) }, 1000) } From a5814f2e6acb80f1c323925f3699aa707934f53e Mon Sep 17 00:00:00 2001 From: Adam Coard Date: Thu, 14 Sep 2023 11:51:14 -0700 Subject: [PATCH 022/194] Move to `frontend/site-search-frontend/` --- .../site-search-frontend/.eslintrc.cjs | 0 .../site-search-frontend/.gitignore | 0 .../site-search-frontend/README.md | 0 .../site-search-frontend/index.html | 0 .../site-search-frontend/package-lock.json | 0 .../site-search-frontend/package.json | 0 .../site-search-frontend/public/vite.svg | 0 .../site-search-frontend/src/App.css | 0 .../site-search-frontend/src/App.tsx | 0 .../site-search-frontend/src/api/dummy-data.tsx | 0 .../site-search-frontend/src/api/sites.ts | 0 .../site-search-frontend/src/assets/react.svg | 0 .../src/components/Header.tsx | 0 .../src/components/Highlighted.tsx | 0 .../features/simple-search/search-results.tsx | 0 .../src/features/simple-search/search-toggle.tsx | 0 .../src/features/simple-search/simple-search.ts | 0 .../site-search-frontend/src/index.css | 0 .../site-search-frontend/src/main.tsx | 0 .../src/pages/advanced-search.tsx | 0 .../site-search-frontend/src/pages/search.css | 0 .../site-search-frontend/src/pages/search.tsx | 0 .../site-search-frontend/src/store.ts | 0 .../site-search-frontend/src/vite-env.d.ts | 0 .../site-search-frontend/tsconfig.json | 0 .../site-search-frontend/tsconfig.node.json | 0 .../site-search-frontend/vite.config.ts | 0 site-search/.DS_Store | Bin 0 -> 6148 bytes 28 files changed, 0 insertions(+), 0 deletions(-) rename {site-search => frontend}/site-search-frontend/.eslintrc.cjs (100%) rename {site-search => frontend}/site-search-frontend/.gitignore (100%) rename {site-search => frontend}/site-search-frontend/README.md (100%) rename {site-search => frontend}/site-search-frontend/index.html (100%) rename {site-search => frontend}/site-search-frontend/package-lock.json (100%) rename {site-search => frontend}/site-search-frontend/package.json (100%) rename {site-search => frontend}/site-search-frontend/public/vite.svg (100%) rename {site-search => frontend}/site-search-frontend/src/App.css (100%) rename {site-search => frontend}/site-search-frontend/src/App.tsx (100%) rename {site-search => frontend}/site-search-frontend/src/api/dummy-data.tsx (100%) rename {site-search => frontend}/site-search-frontend/src/api/sites.ts (100%) rename {site-search => frontend}/site-search-frontend/src/assets/react.svg (100%) rename {site-search => frontend}/site-search-frontend/src/components/Header.tsx (100%) rename {site-search => frontend}/site-search-frontend/src/components/Highlighted.tsx (100%) rename {site-search => frontend}/site-search-frontend/src/features/simple-search/search-results.tsx (100%) rename {site-search => frontend}/site-search-frontend/src/features/simple-search/search-toggle.tsx (100%) rename {site-search => frontend}/site-search-frontend/src/features/simple-search/simple-search.ts (100%) rename {site-search => frontend}/site-search-frontend/src/index.css (100%) rename {site-search => frontend}/site-search-frontend/src/main.tsx (100%) rename {site-search => frontend}/site-search-frontend/src/pages/advanced-search.tsx (100%) rename {site-search => frontend}/site-search-frontend/src/pages/search.css (100%) rename {site-search => frontend}/site-search-frontend/src/pages/search.tsx (100%) rename {site-search => frontend}/site-search-frontend/src/store.ts (100%) rename {site-search => frontend}/site-search-frontend/src/vite-env.d.ts (100%) rename {site-search => frontend}/site-search-frontend/tsconfig.json (100%) rename {site-search => frontend}/site-search-frontend/tsconfig.node.json (100%) rename {site-search => frontend}/site-search-frontend/vite.config.ts (100%) create mode 100644 site-search/.DS_Store diff --git a/site-search/site-search-frontend/.eslintrc.cjs b/frontend/site-search-frontend/.eslintrc.cjs similarity index 100% rename from site-search/site-search-frontend/.eslintrc.cjs rename to frontend/site-search-frontend/.eslintrc.cjs diff --git a/site-search/site-search-frontend/.gitignore b/frontend/site-search-frontend/.gitignore similarity index 100% rename from site-search/site-search-frontend/.gitignore rename to frontend/site-search-frontend/.gitignore diff --git a/site-search/site-search-frontend/README.md b/frontend/site-search-frontend/README.md similarity index 100% rename from site-search/site-search-frontend/README.md rename to frontend/site-search-frontend/README.md diff --git a/site-search/site-search-frontend/index.html b/frontend/site-search-frontend/index.html similarity index 100% rename from site-search/site-search-frontend/index.html rename to frontend/site-search-frontend/index.html diff --git a/site-search/site-search-frontend/package-lock.json b/frontend/site-search-frontend/package-lock.json similarity index 100% rename from site-search/site-search-frontend/package-lock.json rename to frontend/site-search-frontend/package-lock.json diff --git a/site-search/site-search-frontend/package.json b/frontend/site-search-frontend/package.json similarity index 100% rename from site-search/site-search-frontend/package.json rename to frontend/site-search-frontend/package.json diff --git a/site-search/site-search-frontend/public/vite.svg b/frontend/site-search-frontend/public/vite.svg similarity index 100% rename from site-search/site-search-frontend/public/vite.svg rename to frontend/site-search-frontend/public/vite.svg diff --git a/site-search/site-search-frontend/src/App.css b/frontend/site-search-frontend/src/App.css similarity index 100% rename from site-search/site-search-frontend/src/App.css rename to frontend/site-search-frontend/src/App.css diff --git a/site-search/site-search-frontend/src/App.tsx b/frontend/site-search-frontend/src/App.tsx similarity index 100% rename from site-search/site-search-frontend/src/App.tsx rename to frontend/site-search-frontend/src/App.tsx diff --git a/site-search/site-search-frontend/src/api/dummy-data.tsx b/frontend/site-search-frontend/src/api/dummy-data.tsx similarity index 100% rename from site-search/site-search-frontend/src/api/dummy-data.tsx rename to frontend/site-search-frontend/src/api/dummy-data.tsx diff --git a/site-search/site-search-frontend/src/api/sites.ts b/frontend/site-search-frontend/src/api/sites.ts similarity index 100% rename from site-search/site-search-frontend/src/api/sites.ts rename to frontend/site-search-frontend/src/api/sites.ts diff --git a/site-search/site-search-frontend/src/assets/react.svg b/frontend/site-search-frontend/src/assets/react.svg similarity index 100% rename from site-search/site-search-frontend/src/assets/react.svg rename to frontend/site-search-frontend/src/assets/react.svg diff --git a/site-search/site-search-frontend/src/components/Header.tsx b/frontend/site-search-frontend/src/components/Header.tsx similarity index 100% rename from site-search/site-search-frontend/src/components/Header.tsx rename to frontend/site-search-frontend/src/components/Header.tsx diff --git a/site-search/site-search-frontend/src/components/Highlighted.tsx b/frontend/site-search-frontend/src/components/Highlighted.tsx similarity index 100% rename from site-search/site-search-frontend/src/components/Highlighted.tsx rename to frontend/site-search-frontend/src/components/Highlighted.tsx diff --git a/site-search/site-search-frontend/src/features/simple-search/search-results.tsx b/frontend/site-search-frontend/src/features/simple-search/search-results.tsx similarity index 100% rename from site-search/site-search-frontend/src/features/simple-search/search-results.tsx rename to frontend/site-search-frontend/src/features/simple-search/search-results.tsx diff --git a/site-search/site-search-frontend/src/features/simple-search/search-toggle.tsx b/frontend/site-search-frontend/src/features/simple-search/search-toggle.tsx similarity index 100% rename from site-search/site-search-frontend/src/features/simple-search/search-toggle.tsx rename to frontend/site-search-frontend/src/features/simple-search/search-toggle.tsx diff --git a/site-search/site-search-frontend/src/features/simple-search/simple-search.ts b/frontend/site-search-frontend/src/features/simple-search/simple-search.ts similarity index 100% rename from site-search/site-search-frontend/src/features/simple-search/simple-search.ts rename to frontend/site-search-frontend/src/features/simple-search/simple-search.ts diff --git a/site-search/site-search-frontend/src/index.css b/frontend/site-search-frontend/src/index.css similarity index 100% rename from site-search/site-search-frontend/src/index.css rename to frontend/site-search-frontend/src/index.css diff --git a/site-search/site-search-frontend/src/main.tsx b/frontend/site-search-frontend/src/main.tsx similarity index 100% rename from site-search/site-search-frontend/src/main.tsx rename to frontend/site-search-frontend/src/main.tsx diff --git a/site-search/site-search-frontend/src/pages/advanced-search.tsx b/frontend/site-search-frontend/src/pages/advanced-search.tsx similarity index 100% rename from site-search/site-search-frontend/src/pages/advanced-search.tsx rename to frontend/site-search-frontend/src/pages/advanced-search.tsx diff --git a/site-search/site-search-frontend/src/pages/search.css b/frontend/site-search-frontend/src/pages/search.css similarity index 100% rename from site-search/site-search-frontend/src/pages/search.css rename to frontend/site-search-frontend/src/pages/search.css diff --git a/site-search/site-search-frontend/src/pages/search.tsx b/frontend/site-search-frontend/src/pages/search.tsx similarity index 100% rename from site-search/site-search-frontend/src/pages/search.tsx rename to frontend/site-search-frontend/src/pages/search.tsx diff --git a/site-search/site-search-frontend/src/store.ts b/frontend/site-search-frontend/src/store.ts similarity index 100% rename from site-search/site-search-frontend/src/store.ts rename to frontend/site-search-frontend/src/store.ts diff --git a/site-search/site-search-frontend/src/vite-env.d.ts b/frontend/site-search-frontend/src/vite-env.d.ts similarity index 100% rename from site-search/site-search-frontend/src/vite-env.d.ts rename to frontend/site-search-frontend/src/vite-env.d.ts diff --git a/site-search/site-search-frontend/tsconfig.json b/frontend/site-search-frontend/tsconfig.json similarity index 100% rename from site-search/site-search-frontend/tsconfig.json rename to frontend/site-search-frontend/tsconfig.json diff --git a/site-search/site-search-frontend/tsconfig.node.json b/frontend/site-search-frontend/tsconfig.node.json similarity index 100% rename from site-search/site-search-frontend/tsconfig.node.json rename to frontend/site-search-frontend/tsconfig.node.json diff --git a/site-search/site-search-frontend/vite.config.ts b/frontend/site-search-frontend/vite.config.ts similarity index 100% rename from site-search/site-search-frontend/vite.config.ts rename to frontend/site-search-frontend/vite.config.ts diff --git a/site-search/.DS_Store b/site-search/.DS_Store new file mode 100644 index 0000000000000000000000000000000000000000..5008ddfcf53c02e82d7eee2e57c38e5672ef89f6 GIT binary patch literal 6148 zcmeH~Jr2S!425mzP>H1@V-^m;4Wg<&0T*E43hX&L&p$$qDprKhvt+--jT7}7np#A3 zem<@ulZcFPQ@L2!n>{z**++&mCkOWA81W14cNZlEfg7;MkzE(HCqgga^y>{tEnwC%0;vJ&^%eQ zLs35+`xjp>T0 Date: Thu, 14 Sep 2023 12:00:29 -0700 Subject: [PATCH 023/194] Stub out map and site details page --- frontend/site-search-frontend/src/main.tsx | 12 +++++++++++- frontend/site-search-frontend/src/pages/map.tsx | 14 ++++++++++++++ .../site-search-frontend/src/pages/search.css | 2 ++ .../site-search-frontend/src/pages/search.tsx | 6 ++++++ .../src/pages/site-details.tsx | 16 ++++++++++++++++ 5 files changed, 49 insertions(+), 1 deletion(-) create mode 100644 frontend/site-search-frontend/src/pages/map.tsx create mode 100644 frontend/site-search-frontend/src/pages/site-details.tsx diff --git a/frontend/site-search-frontend/src/main.tsx b/frontend/site-search-frontend/src/main.tsx index 03092cd9..18a341bc 100644 --- a/frontend/site-search-frontend/src/main.tsx +++ b/frontend/site-search-frontend/src/main.tsx @@ -11,6 +11,8 @@ import './index.css' import AdvancedSearch from './pages/advanced-search.tsx'; import store from './store.ts' import { Provider } from 'react-redux' +import SiteDetailsPage from './pages/site-details.tsx'; +import MapPage from './pages/map.tsx'; const router = createBrowserRouter([ @@ -21,7 +23,15 @@ const router = createBrowserRouter([ { path: "/advanced-search", element: - } + }, + { + path: '/site/:siteID', + element: + }, + { + path: '/map', + element: + }, ]); diff --git a/frontend/site-search-frontend/src/pages/map.tsx b/frontend/site-search-frontend/src/pages/map.tsx new file mode 100644 index 00000000..1ce46b4e --- /dev/null +++ b/frontend/site-search-frontend/src/pages/map.tsx @@ -0,0 +1,14 @@ +import Header from "@/components/Header" + +export default function MapPage() { + + return ( + <> +
+
+

Map Page goes here

+

+
+ + ) +} \ No newline at end of file diff --git a/frontend/site-search-frontend/src/pages/search.css b/frontend/site-search-frontend/src/pages/search.css index ec52c880..aad3d1b4 100644 --- a/frontend/site-search-frontend/src/pages/search.css +++ b/frontend/site-search-frontend/src/pages/search.css @@ -1,3 +1,5 @@ +/* Todo - refactor into css module */ + .simple-search { /* background-color: lightgray !important; */ /* border-color: gray !important; */ diff --git a/frontend/site-search-frontend/src/pages/search.tsx b/frontend/site-search-frontend/src/pages/search.tsx index 79216607..caac67dc 100644 --- a/frontend/site-search-frontend/src/pages/search.tsx +++ b/frontend/site-search-frontend/src/pages/search.tsx @@ -55,6 +55,12 @@ export default function SearchPage() { resultCollection.push(String(site.address).includes(query)) } + // And search remaining cols if nothing selected: + if (nothingSelected) { + resultCollection.push(String(site.latitude).includes(query)) + resultCollection.push(String(site.longitude).includes(query)) + } + // console.log('sites.filter', { searchBySiteID, searchByCity, searchByRegion }) // If we have any hits, return true, otherwise if array is empty return false, so Array.filter works above // Use filter to remove 'false' from array, so it only returns true on a positive id diff --git a/frontend/site-search-frontend/src/pages/site-details.tsx b/frontend/site-search-frontend/src/pages/site-details.tsx new file mode 100644 index 00000000..1e4fc2a2 --- /dev/null +++ b/frontend/site-search-frontend/src/pages/site-details.tsx @@ -0,0 +1,16 @@ +import Header from "@/components/Header" + +export default function SiteDetailsPage() { + + + + return ( + <> +
+
+

Site Details- Incomplete

+

+
+ + ) +} \ No newline at end of file From 6f9dc758ba8a0dbb25cac9e47db23da3efd34d3a Mon Sep 17 00:00:00 2001 From: Adam Coard Date: Mon, 18 Sep 2023 10:54:21 -0700 Subject: [PATCH 024/194] Scaffold out map page basics --- .../site-search-frontend/package-lock.json | 49 ++++++++++++++++++ frontend/site-search-frontend/package.json | 2 + frontend/site-search-frontend/src/index.css | 2 +- .../src/pages/map.module.css | 11 ++++ .../site-search-frontend/src/pages/map.tsx | 50 +++++++++++++++++-- 5 files changed, 108 insertions(+), 6 deletions(-) create mode 100644 frontend/site-search-frontend/src/pages/map.module.css diff --git a/frontend/site-search-frontend/package-lock.json b/frontend/site-search-frontend/package-lock.json index 46722c82..6d8f5a93 100644 --- a/frontend/site-search-frontend/package-lock.json +++ b/frontend/site-search-frontend/package-lock.json @@ -10,9 +10,11 @@ "dependencies": { "@reduxjs/toolkit": "^1.9.5", "bootstrap": "^5.3.1", + "leaflet": "^1.9.4", "react": "^18.2.0", "react-bootstrap": "^2.8.0", "react-dom": "^18.2.0", + "react-leaflet": "^4.2.1", "react-redux": "^8.1.2", "react-router-dom": "^6.15.0" }, @@ -566,6 +568,16 @@ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0" } }, + "node_modules/@react-leaflet/core": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/@react-leaflet/core/-/core-2.1.0.tgz", + "integrity": "sha512-Qk7Pfu8BSarKGqILj4x7bCSZ1pjuAPZ+qmRwH5S7mDS91VSbVVsJSrW4qA+GPrro8t69gFYVMWb1Zc4yFmPiVg==", + "peerDependencies": { + "leaflet": "^1.9.0", + "react": "^18.0.0", + "react-dom": "^18.0.0" + } + }, "node_modules/@reduxjs/toolkit": { "version": "1.9.5", "resolved": "https://registry.npmjs.org/@reduxjs/toolkit/-/toolkit-1.9.5.tgz", @@ -1976,6 +1988,11 @@ "json-buffer": "3.0.1" } }, + "node_modules/leaflet": { + "version": "1.9.4", + "resolved": "https://registry.npmjs.org/leaflet/-/leaflet-1.9.4.tgz", + "integrity": "sha512-nxS1ynzJOmOlHp+iL3FyWqK89GtNL8U8rvlMOsQdTTssxZwCXh8N2NB3GDQOL+YR3XnWyZAxwQixURb+FA74PA==" + }, "node_modules/levn": { "version": "0.4.1", "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", @@ -2372,6 +2389,19 @@ "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz", "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==" }, + "node_modules/react-leaflet": { + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/react-leaflet/-/react-leaflet-4.2.1.tgz", + "integrity": "sha512-p9chkvhcKrWn/H/1FFeVSqLdReGwn2qmiobOQGO3BifX+/vV/39qhY8dGqbdcPh1e6jxh/QHriLXr7a4eLFK4Q==", + "dependencies": { + "@react-leaflet/core": "^2.1.0" + }, + "peerDependencies": { + "leaflet": "^1.9.0", + "react": "^18.0.0", + "react-dom": "^18.0.0" + } + }, "node_modules/react-lifecycles-compat": { "version": "3.0.4", "resolved": "https://registry.npmjs.org/react-lifecycles-compat/-/react-lifecycles-compat-3.0.4.tgz", @@ -3143,6 +3173,12 @@ "@swc/helpers": "^0.5.0" } }, + "@react-leaflet/core": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/@react-leaflet/core/-/core-2.1.0.tgz", + "integrity": "sha512-Qk7Pfu8BSarKGqILj4x7bCSZ1pjuAPZ+qmRwH5S7mDS91VSbVVsJSrW4qA+GPrro8t69gFYVMWb1Zc4yFmPiVg==", + "requires": {} + }, "@reduxjs/toolkit": { "version": "1.9.5", "resolved": "https://registry.npmjs.org/@reduxjs/toolkit/-/toolkit-1.9.5.tgz", @@ -4120,6 +4156,11 @@ "json-buffer": "3.0.1" } }, + "leaflet": { + "version": "1.9.4", + "resolved": "https://registry.npmjs.org/leaflet/-/leaflet-1.9.4.tgz", + "integrity": "sha512-nxS1ynzJOmOlHp+iL3FyWqK89GtNL8U8rvlMOsQdTTssxZwCXh8N2NB3GDQOL+YR3XnWyZAxwQixURb+FA74PA==" + }, "levn": { "version": "0.4.1", "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", @@ -4385,6 +4426,14 @@ "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz", "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==" }, + "react-leaflet": { + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/react-leaflet/-/react-leaflet-4.2.1.tgz", + "integrity": "sha512-p9chkvhcKrWn/H/1FFeVSqLdReGwn2qmiobOQGO3BifX+/vV/39qhY8dGqbdcPh1e6jxh/QHriLXr7a4eLFK4Q==", + "requires": { + "@react-leaflet/core": "^2.1.0" + } + }, "react-lifecycles-compat": { "version": "3.0.4", "resolved": "https://registry.npmjs.org/react-lifecycles-compat/-/react-lifecycles-compat-3.0.4.tgz", diff --git a/frontend/site-search-frontend/package.json b/frontend/site-search-frontend/package.json index ccecec4b..996e21d3 100644 --- a/frontend/site-search-frontend/package.json +++ b/frontend/site-search-frontend/package.json @@ -12,9 +12,11 @@ "dependencies": { "@reduxjs/toolkit": "^1.9.5", "bootstrap": "^5.3.1", + "leaflet": "^1.9.4", "react": "^18.2.0", "react-bootstrap": "^2.8.0", "react-dom": "^18.2.0", + "react-leaflet": "^4.2.1", "react-redux": "^8.1.2", "react-router-dom": "^6.15.0" }, diff --git a/frontend/site-search-frontend/src/index.css b/frontend/site-search-frontend/src/index.css index 2e6ae4ab..7ed5d56c 100644 --- a/frontend/site-search-frontend/src/index.css +++ b/frontend/site-search-frontend/src/index.css @@ -2,7 +2,7 @@ :root { --main-gray: #EDEDED; - --dark-gray: #717171 + --dark-gray: #717171; --bs-blue: #0d6efd; diff --git a/frontend/site-search-frontend/src/pages/map.module.css b/frontend/site-search-frontend/src/pages/map.module.css new file mode 100644 index 00000000..b1a9b1e8 --- /dev/null +++ b/frontend/site-search-frontend/src/pages/map.module.css @@ -0,0 +1,11 @@ +.controls { + background-color: var(--dark-gray); + padding: 1em; + border-radius: 10px; +} + +.mapContainer { + /* min-height: 400px; */ + min-height: calc(100vh - 250px); + /* background-color: orange; */ +} \ No newline at end of file diff --git a/frontend/site-search-frontend/src/pages/map.tsx b/frontend/site-search-frontend/src/pages/map.tsx index 1ce46b4e..64e8d12c 100644 --- a/frontend/site-search-frontend/src/pages/map.tsx +++ b/frontend/site-search-frontend/src/pages/map.tsx @@ -1,14 +1,54 @@ import Header from "@/components/Header" +import { useState } from "react"; +import Button from 'react-bootstrap/Button'; +import { MapContainer, WMSTileLayer, Marker, Popup, TileLayer } from "react-leaflet"; +import 'leaflet/dist/leaflet.css'; +import styles from './map.module.css'; + export default function MapPage() { + const [location, setLocation] = useState([ 48.46762, -123.25458 ]); return ( <> -
-
-

Map Page goes here

-

-
+
+
+ +
+
+ + + + +
+
+ + +
+
+ +

+ + {/* */} + {/* */} + + + + + + + + + +
) } \ No newline at end of file From 6da75a8f6d4aac5c183ccff3df88f87c42cef5ff Mon Sep 17 00:00:00 2001 From: Adam Coard Date: Mon, 18 Sep 2023 11:20:24 -0700 Subject: [PATCH 025/194] Map styling --- .../src/pages/map.module.css | 22 ++++++++- .../site-search-frontend/src/pages/map.tsx | 49 ++++++++++++++----- 2 files changed, 56 insertions(+), 15 deletions(-) diff --git a/frontend/site-search-frontend/src/pages/map.module.css b/frontend/site-search-frontend/src/pages/map.module.css index b1a9b1e8..95800d27 100644 --- a/frontend/site-search-frontend/src/pages/map.module.css +++ b/frontend/site-search-frontend/src/pages/map.module.css @@ -1,11 +1,29 @@ .controls { - background-color: var(--dark-gray); + /* background-color: var(--dark-gray); */ + /* Same as --dark-gray, but with alpha set */ + background-color: rgb(113 113 113 / 74%); padding: 1em; border-radius: 10px; + + + position: absolute; + left: 20px; + + /* TODO: Revert top to 75px after moving map control +/- button */ + /* top: 75px; */ + top: 175px; + width: calc(100% - 40px); + z-index: 99999; } .mapContainer { /* min-height: 400px; */ - min-height: calc(100vh - 250px); + min-height: calc(100vh - 59px); /* background-color: orange; */ +} + +/* For prod, likely need a bunch of breakpoints here to make mobile */ +.mapSearch { + /* min-width: 750px; */ + min-width: 50vw; } \ No newline at end of file diff --git a/frontend/site-search-frontend/src/pages/map.tsx b/frontend/site-search-frontend/src/pages/map.tsx index 64e8d12c..c9113a4f 100644 --- a/frontend/site-search-frontend/src/pages/map.tsx +++ b/frontend/site-search-frontend/src/pages/map.tsx @@ -4,31 +4,54 @@ import Button from 'react-bootstrap/Button'; import { MapContainer, WMSTileLayer, Marker, Popup, TileLayer } from "react-leaflet"; import 'leaflet/dist/leaflet.css'; import styles from './map.module.css'; +import Dropdown from 'react-bootstrap/Dropdown'; +import ButtonGroup from 'react-bootstrap/ButtonGroup'; +import ToggleButton from 'react-bootstrap/ToggleButton'; + export default function MapPage() { - const [location, setLocation] = useState([ 48.46762, -123.25458 ]); + const [location, setLocation] = useState([48.46762, -123.25458]); return ( <>
-
+
+
+
-
-
- +
+ - - -
-
- - + + +
+
+ + + Data Layers + + + + todo + todo + todo + + + + {/* */} + + + Map + + + List + + +
-

- {/* */} {/* */} From 6a54c921d1f3012466cc27907642142cb780215f Mon Sep 17 00:00:00 2001 From: Adam Coard Date: Mon, 18 Sep 2023 11:32:07 -0700 Subject: [PATCH 026/194] Pass through from search > map page --- frontend/site-search-frontend/src/pages/map.tsx | 6 +++++- frontend/site-search-frontend/src/pages/search.tsx | 11 +++++++++-- 2 files changed, 14 insertions(+), 3 deletions(-) diff --git a/frontend/site-search-frontend/src/pages/map.tsx b/frontend/site-search-frontend/src/pages/map.tsx index c9113a4f..9df407a8 100644 --- a/frontend/site-search-frontend/src/pages/map.tsx +++ b/frontend/site-search-frontend/src/pages/map.tsx @@ -7,11 +7,15 @@ import styles from './map.module.css'; import Dropdown from 'react-bootstrap/Dropdown'; import ButtonGroup from 'react-bootstrap/ButtonGroup'; import ToggleButton from 'react-bootstrap/ToggleButton'; +import { useLocation } from "react-router-dom"; export default function MapPage() { const [location, setLocation] = useState([48.46762, -123.25458]); + const {state} = useLocation(); + const { routerSearchQuery } = state; // Read values passed on state + const [searchQuery, setSearchQuery] = useState(routerSearchQuery); return ( <> @@ -21,7 +25,7 @@ export default function MapPage() {
- + diff --git a/frontend/site-search-frontend/src/pages/search.tsx b/frontend/site-search-frontend/src/pages/search.tsx index caac67dc..8820b2bf 100644 --- a/frontend/site-search-frontend/src/pages/search.tsx +++ b/frontend/site-search-frontend/src/pages/search.tsx @@ -2,7 +2,7 @@ import Button from 'react-bootstrap/Button'; import Header from '@/components/Header' import { useState } from 'react'; -import { Link } from "react-router-dom"; +import { Link, createSearchParams, useNavigate } from "react-router-dom"; import { Site } from '@/api/sites' import { useSelector } from 'react-redux'; @@ -22,6 +22,7 @@ export default function SearchPage() { const sites: Site[] = useSelector(state => state.site.value); const [searchResults, setSearchResults] = useState([]); const [searchQuery, setSearchQuery] = useState(''); + const navigate = useNavigate(); function handleSearch(e){ setSearchQuery(e.target.value) @@ -74,6 +75,12 @@ export default function SearchPage() { }, 1000) } + function onEnter(e){ + if (e.key === "Enter") { + navigate('/map', { state: { routerSearchQuery: e.target.value}}); + } + } + /** * These below functions were an attempt to re-trigger serach after clicking a search option, but they did not work. @@ -106,7 +113,7 @@ export default function SearchPage() {

Site Search

- +
From 7a337d63ed2584ab21937ce996f8265185e862cf Mon Sep 17 00:00:00 2001 From: Adam Coard Date: Tue, 19 Sep 2023 09:03:29 -0700 Subject: [PATCH 027/194] Remove logs --- frontend/site-search-frontend/src/components/Highlighted.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/site-search-frontend/src/components/Highlighted.tsx b/frontend/site-search-frontend/src/components/Highlighted.tsx index 1d31abaf..093b3a2b 100644 --- a/frontend/site-search-frontend/src/components/Highlighted.tsx +++ b/frontend/site-search-frontend/src/components/Highlighted.tsx @@ -3,7 +3,7 @@ import React from "react"; const Highlighter = ({ children, highlight }) => { if (!highlight) return children; - console.log('CHILDREN', { children }) + // console.log('CHILDREN', { children }) const regexp = new RegExp(highlight, 'g'); const matches = children.match(regexp); var parts = children.split(new RegExp(`${highlight.replace()}`, 'g')); @@ -13,7 +13,7 @@ const Highlighter = ({ children, highlight }) => { let match = matches[i]; // While the next part is an empty string, merge the corresponding match with the current // match into a single to avoid consequent spans with nothing between them. - console.log('PRE match', { match }) + // console.log('PRE match', { match }) while (parts[i + 1] === '') { const newMatch = matches[++i]; // EPD - Custom fix here, making sure 'undefined' isn't appended after number records occasionally From 32655925917cbc9cb2f72ad350c7403be81b34d0 Mon Sep 17 00:00:00 2001 From: Adam Coard Date: Tue, 19 Sep 2023 09:03:39 -0700 Subject: [PATCH 028/194] Conditional highlighting depending on search queries --- .../src/features/simple-search/search-results.tsx | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/frontend/site-search-frontend/src/features/simple-search/search-results.tsx b/frontend/site-search-frontend/src/features/simple-search/search-results.tsx index 53c4b0da..80c18a2c 100644 --- a/frontend/site-search-frontend/src/features/simple-search/search-results.tsx +++ b/frontend/site-search-frontend/src/features/simple-search/search-results.tsx @@ -4,7 +4,11 @@ import { Link } from "react-router-dom"; import Highlighter from '@/components/Highlighted'; -export default function SimpleSearchResults({ site, highlight }: Site) { +export default function SimpleSearchResults({ site, highlight, searchOption }: Site) { + + // const defaultHighlighting = + const { searchByCity, searchBySiteID, searchByRegion } = searchOption; + const searchEverything = (!searchByCity && !searchBySiteID && !searchByRegion) // console.log('SimpleSearchResults site', site) return ( @@ -22,9 +26,9 @@ export default function SimpleSearchResults({ site, highlight }: Site) { - {String(site.siteID)} - {site.city} - {site.region} + {String(site.siteID)} + {site.city} + {site.region} {String(site.latitude)} {String(site.longitude)} From 8673b4b7c745b9c55cc5ff252a3aa54b3b1e26cb Mon Sep 17 00:00:00 2001 From: Adam Coard Date: Tue, 19 Sep 2023 09:03:58 -0700 Subject: [PATCH 029/194] Fix search toggles working immediately bug, no longer showing old data from prev state --- .../site-search-frontend/src/pages/search.tsx | 100 ++++++++++++------ 1 file changed, 66 insertions(+), 34 deletions(-) diff --git a/frontend/site-search-frontend/src/pages/search.tsx b/frontend/site-search-frontend/src/pages/search.tsx index 8820b2bf..1c8b5616 100644 --- a/frontend/site-search-frontend/src/pages/search.tsx +++ b/frontend/site-search-frontend/src/pages/search.tsx @@ -1,6 +1,6 @@ import Button from 'react-bootstrap/Button'; import Header from '@/components/Header' -import { useState } from 'react'; +import { useEffect, useState } from 'react'; import { Link, createSearchParams, useNavigate } from "react-router-dom"; import { Site } from '@/api/sites' @@ -43,18 +43,43 @@ export default function SearchPage() { const results = sites.filter(site => { const nothingSelected = (!searchBySiteID && !searchByCity && !searchByRegion); const resultCollection = []; - if (searchBySiteID || nothingSelected) { - resultCollection.push(String(site.siteID).includes(query) ) + // if (searchBySiteID || nothingSelected) { + // resultCollection.push(String(site.siteID).includes(query) ) + // } + // if (searchByCity || nothingSelected) { + // resultCollection.push(String(site.city).includes(query)) + // } + // if (searchByRegion || nothingSelected) { + // resultCollection.push(String(site.region).includes(query)) + // } + // if (searchByAddress || nothingSelected) { + // resultCollection.push(String(site.address).includes(query)) + // } + + if ((searchBySiteID || nothingSelected) && String(site.siteID).includes(query)) { + console.log('Searching Site', {site: site, query, searchBySiteID, nothingSelected}) + resultCollection.push(true) } - if (searchByCity || nothingSelected) { - resultCollection.push(String(site.city).includes(query)) + if ((searchByCity || nothingSelected) && String(site.city).includes(query)) { + console.log('Searching city', {siteCity: site.city, query, searchByCity, nothingSelected}) + resultCollection.push(true) } - if (searchByRegion || nothingSelected) { - resultCollection.push(String(site.region).includes(query)) + else { + console.log('Not searching city', {site: site, query, searchByCity, nothingSelected}) } - if (searchByAddress || nothingSelected) { - resultCollection.push(String(site.address).includes(query)) + if ((searchByRegion || nothingSelected) && String(site.region).includes(query)) { + console.log('Searching Region', {site: site, query, searchByRegion, nothingSelected}) + resultCollection.push(true) } + // else { + // console.log('Not searching region', {site: site, query, searchByRegion, nothingSelected}) + // } + + if ((searchByAddress || nothingSelected) && String(site.address).includes(query)) { + console.log('Searching Address', {site: site, query, searchByAddress, nothingSelected}) + resultCollection.push(true) + } + // And search remaining cols if nothing selected: if (nothingSelected) { @@ -62,7 +87,7 @@ export default function SearchPage() { resultCollection.push(String(site.longitude).includes(query)) } - // console.log('sites.filter', { searchBySiteID, searchByCity, searchByRegion }) + console.log('sites.filter', { searchBySiteID, searchByCity, searchByRegion, resultCollection, nothingSelected, site }) // If we have any hits, return true, otherwise if array is empty return false, so Array.filter works above // Use filter to remove 'false' from array, so it only returns true on a positive id return resultCollection.filter(x=>!!x).length @@ -86,22 +111,28 @@ export default function SearchPage() { * These below functions were an attempt to re-trigger serach after clicking a search option, but they did not work. * Lead to weird case where old values were rendered. */ - // function updateSearchBySite(val: boolean){ - // // console.log('updateSearchBySite', val) - // setSearchBySiteId(val) - // updateSearch(searchQuery) - // // setTimeout(() =>{updateSearch(searchQuery)}, 0) - // } - - // function updateSearchByCity(val: boolean){ - // setSearchByCity(val); - // updateSearch(searchQuery) - // } - - // function updateSearchByRegion(val: boolean){ - // setSearchByRegion(val) - // updateSearch(searchQuery) - // } + function updateSearchBySite(val: boolean){ + // console.log('updateSearchBySite', val) + setSearchBySiteId(val) + // updateSearch(searchQuery) + // setTimeout(() =>{updateSearch(searchQuery)}, 0) + } + + function updateSearchByCity(val: boolean){ + // setSearchByCity(val); + setSearchByCity(val); + // updateSearch(searchQuery) + } + + function updateSearchByRegion(val: boolean){ + setSearchByRegion(val) + // updateSearch(searchQuery) + } + + useEffect(() => { + console.log('arc useEffect called'); + updateSearch(searchQuery) + }, [searchByAddress, searchByCity, searchByRegion, searchBySiteID]) @@ -127,14 +158,14 @@ export default function SearchPage() {
- Site ID - City - Region - Address + {/* Site ID */} + {/* City */} + {/* Region */} + {/* Address */} {/* The below were trying to use the commented out functions that re-trigger search on selection. Will pick this up again later. */} - {/* Site ID */} - {/* City */} - {/* Region */} + Site ID + City + Region
@@ -142,7 +173,8 @@ export default function SearchPage() {
{!isLoaded &&
Loading...
} {isLoaded && searchResults.map(site => { - return + // return + return })} {isLoaded && searchResults.length == 0 &&
No results From 34086b3345be6391457d2c9e85253d67a306b6a3 Mon Sep 17 00:00:00 2001 From: Adam Coard Date: Tue, 19 Sep 2023 09:05:21 -0700 Subject: [PATCH 030/194] Fix site search buttons, clean up logs --- .../site-search-frontend/src/pages/search.tsx | 23 ++++++------------- 1 file changed, 7 insertions(+), 16 deletions(-) diff --git a/frontend/site-search-frontend/src/pages/search.tsx b/frontend/site-search-frontend/src/pages/search.tsx index 1c8b5616..38329616 100644 --- a/frontend/site-search-frontend/src/pages/search.tsx +++ b/frontend/site-search-frontend/src/pages/search.tsx @@ -57,26 +57,19 @@ export default function SearchPage() { // } if ((searchBySiteID || nothingSelected) && String(site.siteID).includes(query)) { - console.log('Searching Site', {site: site, query, searchBySiteID, nothingSelected}) + // console.log('Searching Site', {site: site, query, searchBySiteID, nothingSelected}) resultCollection.push(true) } if ((searchByCity || nothingSelected) && String(site.city).includes(query)) { - console.log('Searching city', {siteCity: site.city, query, searchByCity, nothingSelected}) + // console.log('Searching city', {siteCity: site.city, query, searchByCity, nothingSelected}) resultCollection.push(true) } - else { - console.log('Not searching city', {site: site, query, searchByCity, nothingSelected}) - } if ((searchByRegion || nothingSelected) && String(site.region).includes(query)) { - console.log('Searching Region', {site: site, query, searchByRegion, nothingSelected}) + // console.log('Searching Region', {site: site, query, searchByRegion, nothingSelected}) resultCollection.push(true) } - // else { - // console.log('Not searching region', {site: site, query, searchByRegion, nothingSelected}) - // } - if ((searchByAddress || nothingSelected) && String(site.address).includes(query)) { - console.log('Searching Address', {site: site, query, searchByAddress, nothingSelected}) + // console.log('Searching Address', {site: site, query, searchByAddress, nothingSelected}) resultCollection.push(true) } @@ -87,7 +80,7 @@ export default function SearchPage() { resultCollection.push(String(site.longitude).includes(query)) } - console.log('sites.filter', { searchBySiteID, searchByCity, searchByRegion, resultCollection, nothingSelected, site }) + // console.log('sites.filter', { searchBySiteID, searchByCity, searchByRegion, resultCollection, nothingSelected, site }) // If we have any hits, return true, otherwise if array is empty return false, so Array.filter works above // Use filter to remove 'false' from array, so it only returns true on a positive id return resultCollection.filter(x=>!!x).length @@ -110,27 +103,25 @@ export default function SearchPage() { /** * These below functions were an attempt to re-trigger serach after clicking a search option, but they did not work. * Lead to weird case where old values were rendered. + * + * FIX: Using useEffect with the dependency array at the end. */ function updateSearchBySite(val: boolean){ // console.log('updateSearchBySite', val) setSearchBySiteId(val) // updateSearch(searchQuery) - // setTimeout(() =>{updateSearch(searchQuery)}, 0) } function updateSearchByCity(val: boolean){ // setSearchByCity(val); setSearchByCity(val); - // updateSearch(searchQuery) } function updateSearchByRegion(val: boolean){ setSearchByRegion(val) - // updateSearch(searchQuery) } useEffect(() => { - console.log('arc useEffect called'); updateSearch(searchQuery) }, [searchByAddress, searchByCity, searchByRegion, searchBySiteID]) From 8a0fbd8ca2dd2885668d3c0c43e9ff6538b2d9e9 Mon Sep 17 00:00:00 2001 From: Adam Coard Date: Tue, 19 Sep 2023 09:24:27 -0700 Subject: [PATCH 031/194] Search by address toggle working --- frontend/site-search-frontend/src/pages/search.tsx | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/frontend/site-search-frontend/src/pages/search.tsx b/frontend/site-search-frontend/src/pages/search.tsx index 38329616..278d5a9e 100644 --- a/frontend/site-search-frontend/src/pages/search.tsx +++ b/frontend/site-search-frontend/src/pages/search.tsx @@ -41,7 +41,7 @@ export default function SearchPage() { // TODO - Only search on SiteID based on user selections // TODO - Re-trigger search when state changed const results = sites.filter(site => { - const nothingSelected = (!searchBySiteID && !searchByCity && !searchByRegion); + const nothingSelected = (!searchBySiteID && !searchByCity && !searchByRegion && !searchByAddress); const resultCollection = []; // if (searchBySiteID || nothingSelected) { // resultCollection.push(String(site.siteID).includes(query) ) @@ -121,6 +121,10 @@ export default function SearchPage() { setSearchByRegion(val) } + function updateSearchByAddress(val: boolean){ + setSearchByAddress(val) + } + useEffect(() => { updateSearch(searchQuery) }, [searchByAddress, searchByCity, searchByRegion, searchBySiteID]) @@ -157,6 +161,9 @@ export default function SearchPage() { Site ID City Region + + {/* Glitch with Adddress, maybe update onChange like the rest? */} + Address
From 307b7124ee04118dba7e82733d151c6deb53a347 Mon Sep 17 00:00:00 2001 From: Adam Coard Date: Tue, 19 Sep 2023 10:49:30 -0700 Subject: [PATCH 032/194] Fix mistakenly highlighting other fields when searching by address --- .../src/features/simple-search/search-results.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/frontend/site-search-frontend/src/features/simple-search/search-results.tsx b/frontend/site-search-frontend/src/features/simple-search/search-results.tsx index 80c18a2c..264ac5ae 100644 --- a/frontend/site-search-frontend/src/features/simple-search/search-results.tsx +++ b/frontend/site-search-frontend/src/features/simple-search/search-results.tsx @@ -7,13 +7,13 @@ import Highlighter from '@/components/Highlighted'; export default function SimpleSearchResults({ site, highlight, searchOption }: Site) { // const defaultHighlighting = - const { searchByCity, searchBySiteID, searchByRegion } = searchOption; - const searchEverything = (!searchByCity && !searchBySiteID && !searchByRegion) + const { searchByCity, searchBySiteID, searchByRegion, searchByAddress } = searchOption; + const searchEverything = (!searchByCity && !searchBySiteID && !searchByRegion && !searchByAddress) // console.log('SimpleSearchResults site', site) return (
-

{site.address}

+

{site.address}

From a8ed2a8315964b9da939e2c0cd081864ff370a81 Mon Sep 17 00:00:00 2001 From: Adam Coard Date: Tue, 19 Sep 2023 10:49:55 -0700 Subject: [PATCH 033/194] Formatting and searchOptions into simple search results --- .../site-search-frontend/src/pages/search.tsx | 34 +++++++++++-------- 1 file changed, 19 insertions(+), 15 deletions(-) diff --git a/frontend/site-search-frontend/src/pages/search.tsx b/frontend/site-search-frontend/src/pages/search.tsx index 278d5a9e..b5d6c928 100644 --- a/frontend/site-search-frontend/src/pages/search.tsx +++ b/frontend/site-search-frontend/src/pages/search.tsx @@ -24,13 +24,13 @@ export default function SearchPage() { const [searchQuery, setSearchQuery] = useState(''); const navigate = useNavigate(); - function handleSearch(e){ + function handleSearch(e) { setSearchQuery(e.target.value) updateSearch(e.target.value) } let searchTimeout: number; - function updateSearch(query: string){ + function updateSearch(query: string) { // TODO: Debounce! Also cancel timeouts if a new one comes in. setIsLoaded(false) @@ -72,7 +72,7 @@ export default function SearchPage() { // console.log('Searching Address', {site: site, query, searchByAddress, nothingSelected}) resultCollection.push(true) } - + // And search remaining cols if nothing selected: if (nothingSelected) { @@ -83,7 +83,7 @@ export default function SearchPage() { // console.log('sites.filter', { searchBySiteID, searchByCity, searchByRegion, resultCollection, nothingSelected, site }) // If we have any hits, return true, otherwise if array is empty return false, so Array.filter works above // Use filter to remove 'false' from array, so it only returns true on a positive id - return resultCollection.filter(x=>!!x).length + return resultCollection.filter(x => !!x).length }) // By putting a delay between setting search results and displaying them, we cut down on the jank when searching multi-lines @@ -93,9 +93,9 @@ export default function SearchPage() { }, 1000) } - function onEnter(e){ - if (e.key === "Enter") { - navigate('/map', { state: { routerSearchQuery: e.target.value}}); + function onEnter(e) { + if (e.key === "Enter") { + navigate('/map', { state: { routerSearchQuery: e.target.value } }); } } @@ -106,22 +106,22 @@ export default function SearchPage() { * * FIX: Using useEffect with the dependency array at the end. */ - function updateSearchBySite(val: boolean){ + function updateSearchBySite(val: boolean) { // console.log('updateSearchBySite', val) setSearchBySiteId(val) // updateSearch(searchQuery) } - function updateSearchByCity(val: boolean){ + function updateSearchByCity(val: boolean) { // setSearchByCity(val); setSearchByCity(val); } - function updateSearchByRegion(val: boolean){ + function updateSearchByRegion(val: boolean) { setSearchByRegion(val) } - function updateSearchByAddress(val: boolean){ + function updateSearchByAddress(val: boolean) { setSearchByAddress(val) } @@ -129,7 +129,7 @@ export default function SearchPage() { updateSearch(searchQuery) }, [searchByAddress, searchByCity, searchByRegion, searchBySiteID]) - + return ( @@ -139,7 +139,7 @@ export default function SearchPage() {

Site Search

- +
@@ -172,7 +172,11 @@ export default function SearchPage() { {!isLoaded &&
Loading...
} {isLoaded && searchResults.map(site => { // return - return + return })} {isLoaded && searchResults.length == 0 &&
No results @@ -183,7 +187,7 @@ export default function SearchPage() {
- + From 69cbb69ea25f9fdae747521fa267c03841868e54 Mon Sep 17 00:00:00 2001 From: Adam Coard Date: Tue, 19 Sep 2023 10:56:30 -0700 Subject: [PATCH 034/194] Add nullcheck to route on map page on redirect, stops app crash --- frontend/site-search-frontend/src/pages/map.tsx | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/frontend/site-search-frontend/src/pages/map.tsx b/frontend/site-search-frontend/src/pages/map.tsx index 9df407a8..ec31ecbb 100644 --- a/frontend/site-search-frontend/src/pages/map.tsx +++ b/frontend/site-search-frontend/src/pages/map.tsx @@ -14,7 +14,8 @@ import { useLocation } from "react-router-dom"; export default function MapPage() { const [location, setLocation] = useState([48.46762, -123.25458]); const {state} = useLocation(); - const { routerSearchQuery } = state; // Read values passed on state + // const { routerSearchQuery } = state; // Read values passed on state + const routerSearchQuery = state && state.routerSearchQuery || ''; const [searchQuery, setSearchQuery] = useState(routerSearchQuery); return ( @@ -32,7 +33,7 @@ export default function MapPage() {
- + Data Layers From c33bc9cd90fef90e8a4372584ff9994c65b43083 Mon Sep 17 00:00:00 2001 From: Adam Coard Date: Tue, 19 Sep 2023 10:56:59 -0700 Subject: [PATCH 035/194] Add spinner onto page --- frontend/site-search-frontend/src/pages/search.tsx | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/frontend/site-search-frontend/src/pages/search.tsx b/frontend/site-search-frontend/src/pages/search.tsx index b5d6c928..20ed3fa7 100644 --- a/frontend/site-search-frontend/src/pages/search.tsx +++ b/frontend/site-search-frontend/src/pages/search.tsx @@ -1,6 +1,8 @@ import Button from 'react-bootstrap/Button'; import Header from '@/components/Header' import { useEffect, useState } from 'react'; +import Spinner from 'react-bootstrap/Spinner'; + import { Link, createSearchParams, useNavigate } from "react-router-dom"; import { Site } from '@/api/sites' @@ -90,7 +92,7 @@ export default function SearchPage() { // May not be necessary w/ Debouncing setSearchResults(results) setTimeout(() => { setIsLoaded(true) }, 250) - }, 1000) + }, 2000) } function onEnter(e) { @@ -169,7 +171,12 @@ export default function SearchPage() {
- {!isLoaded &&
Loading...
} + {!isLoaded &&
+ + Loading... + +
} + {isLoaded && searchResults.map(site => { // return return })} + {isLoaded && searchResults.length == 0 &&
No results
} From 0aca06aef34b63073cf225f9b612e73912b5a9eb Mon Sep 17 00:00:00 2001 From: Adam Coard Date: Tue, 19 Sep 2023 11:25:53 -0700 Subject: [PATCH 036/194] Add two new search toggles, and change search toggle styling to match prorotype --- .../features/simple-search/search-toggle.tsx | 4 ++-- .../site-search-frontend/src/pages/search.tsx | 21 ++++++++++++------- 2 files changed, 16 insertions(+), 9 deletions(-) diff --git a/frontend/site-search-frontend/src/features/simple-search/search-toggle.tsx b/frontend/site-search-frontend/src/features/simple-search/search-toggle.tsx index 0d5e42ae..0490b643 100644 --- a/frontend/site-search-frontend/src/features/simple-search/search-toggle.tsx +++ b/frontend/site-search-frontend/src/features/simple-search/search-toggle.tsx @@ -5,9 +5,9 @@ export default function SearchToggle({ checked, onChange, children }) { return ( state.site.value); const [searchResults, setSearchResults] = useState([]); const [searchQuery, setSearchQuery] = useState(''); + const [field, setField] = useState([]); + const navigate = useNavigate(); function handleSearch(e) { @@ -127,6 +128,10 @@ export default function SearchPage() { setSearchByAddress(val) } + // function updateSearchByRegionalFile(val: boolean) { + + // } + useEffect(() => { updateSearch(searchQuery) }, [searchByAddress, searchByCity, searchByRegion, searchBySiteID]) @@ -163,9 +168,11 @@ export default function SearchPage() { Site ID City Region - - {/* Glitch with Adddress, maybe update onChange like the rest? */} Address + + Regional File + Victoria File +
From f5d8662b08b8ecd268fde3e3890230b0d6f92bc0 Mon Sep 17 00:00:00 2001 From: Adam Coard Date: Tue, 19 Sep 2023 11:38:42 -0700 Subject: [PATCH 037/194] Lat/Lng dummy data restricted to bc --- frontend/site-search-frontend/src/api/dummy-data.tsx | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/frontend/site-search-frontend/src/api/dummy-data.tsx b/frontend/site-search-frontend/src/api/dummy-data.tsx index 95d86a30..d4396b64 100644 --- a/frontend/site-search-frontend/src/api/dummy-data.tsx +++ b/frontend/site-search-frontend/src/api/dummy-data.tsx @@ -7,8 +7,9 @@ export function createRandomSite(): Site { uuid: faker.string.uuid(), siteID: faker.number.int({min: 15192, max: 20999}), address: faker.location.streetAddress(), - latitude: faker.location.latitude(), //TODO: Confine this to BC - longitude: faker.location.longitude(), //TODO: Confine to BC + // Lat and Longitude restricted to approximately BC (some Alberta, oceans, etc) + latitude: faker.location.latitude({min: 48, max: 59}), + longitude: faker.location.longitude({min: -139, max: -114}), lastUpdated: faker.date.past({years: 10}), city: faker.location.city(), region: randomRegion() From de46e1708563b649af64bf201f42fd76ad3408ba Mon Sep 17 00:00:00 2001 From: Adam Coard Date: Tue, 19 Sep 2023 11:38:55 -0700 Subject: [PATCH 038/194] Putting map makers based on dummy data --- frontend/site-search-frontend/src/pages/map.tsx | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/frontend/site-search-frontend/src/pages/map.tsx b/frontend/site-search-frontend/src/pages/map.tsx index ec31ecbb..85693ec9 100644 --- a/frontend/site-search-frontend/src/pages/map.tsx +++ b/frontend/site-search-frontend/src/pages/map.tsx @@ -8,6 +8,8 @@ import Dropdown from 'react-bootstrap/Dropdown'; import ButtonGroup from 'react-bootstrap/ButtonGroup'; import ToggleButton from 'react-bootstrap/ToggleButton'; import { useLocation } from "react-router-dom"; +import { Site } from "@/api/sites"; +import { useSelector } from "react-redux"; @@ -18,6 +20,8 @@ export default function MapPage() { const routerSearchQuery = state && state.routerSearchQuery || ''; const [searchQuery, setSearchQuery] = useState(routerSearchQuery); + const sites: Site[] = useSelector(state => state.site.value); + return ( <>
@@ -73,6 +77,13 @@ export default function MapPage() { format="image/png" /> + + {/* Add all sites as map markers */} + + {sites.map(site => { + return + })} + From d92cba90aa84ed45a2d88340719b8463122661f0 Mon Sep 17 00:00:00 2001 From: Adam Coard Date: Tue, 19 Sep 2023 12:16:44 -0700 Subject: [PATCH 039/194] Scaffold out map details pane --- .../src/features/map/MapDetailsPane.tsx | 62 +++++++++++++++++++ .../src/pages/map.module.css | 32 +++++++++- .../site-search-frontend/src/pages/map.tsx | 24 ++++++- 3 files changed, 112 insertions(+), 6 deletions(-) create mode 100644 frontend/site-search-frontend/src/features/map/MapDetailsPane.tsx diff --git a/frontend/site-search-frontend/src/features/map/MapDetailsPane.tsx b/frontend/site-search-frontend/src/features/map/MapDetailsPane.tsx new file mode 100644 index 00000000..a2b12ae6 --- /dev/null +++ b/frontend/site-search-frontend/src/features/map/MapDetailsPane.tsx @@ -0,0 +1,62 @@ +import styles from '@/pages/map.module.css' +import CloseButton from 'react-bootstrap/esm/CloseButton'; +import Button from 'react-bootstrap/Button'; + + +export default function MapDetailsPane({site}) { + return ( + +
+
+ > Back + +
+ +
Last Updated:
+ + +
+
+
Site ID
+
128381
+
+
+
Latitude
+
49d 123s 123a
+
+
+
Longitude
+
49d 123s 123a
+
+
+
Victoria File
+
26250-20/18326
+
+
+
Regional File
+
N/A
+
+
+ +
+
Common Name
+
N/A
+
+ +
+
Region
+
N/A
+
+ +
+
Parcel IDs
+
N/A
+
+ + + + +
+ + ); +} \ No newline at end of file diff --git a/frontend/site-search-frontend/src/pages/map.module.css b/frontend/site-search-frontend/src/pages/map.module.css index 95800d27..e87ca743 100644 --- a/frontend/site-search-frontend/src/pages/map.module.css +++ b/frontend/site-search-frontend/src/pages/map.module.css @@ -10,8 +10,8 @@ left: 20px; /* TODO: Revert top to 75px after moving map control +/- button */ - /* top: 75px; */ - top: 175px; + top: 75px; + /* top: 175px; */ width: calc(100% - 40px); z-index: 99999; } @@ -26,4 +26,30 @@ .mapSearch { /* min-width: 750px; */ min-width: 50vw; -} \ No newline at end of file +} + +.detailsPane { + position: absolute; + right: 20px; + min-height: 400px; + min-width: 400px; + top: 200px; + background-color: lightgray; + z-index: 99999; + border-radius: 10px; + padding: 1rem; + overflow: hidden; +} + +.detailsPane > * { + max-width: 400px; +} + +.detailsPaneContent { + flex-wrap: wrap; + gap: 20px; +} + +/* .detailsPaneContent { + max-width: 400px; +} */ \ No newline at end of file diff --git a/frontend/site-search-frontend/src/pages/map.tsx b/frontend/site-search-frontend/src/pages/map.tsx index 85693ec9..fb249bb8 100644 --- a/frontend/site-search-frontend/src/pages/map.tsx +++ b/frontend/site-search-frontend/src/pages/map.tsx @@ -1,7 +1,7 @@ import Header from "@/components/Header" import { useState } from "react"; import Button from 'react-bootstrap/Button'; -import { MapContainer, WMSTileLayer, Marker, Popup, TileLayer } from "react-leaflet"; +import { MapContainer, WMSTileLayer, Marker, Popup, TileLayer, ZoomControl } from "react-leaflet"; import 'leaflet/dist/leaflet.css'; import styles from './map.module.css'; import Dropdown from 'react-bootstrap/Dropdown'; @@ -10,11 +10,15 @@ import ToggleButton from 'react-bootstrap/ToggleButton'; import { useLocation } from "react-router-dom"; import { Site } from "@/api/sites"; import { useSelector } from "react-redux"; +import { LatLngExpression } from "leaflet"; +import CloseButton from 'react-bootstrap/CloseButton'; +import MapDetailsPane from "@/features/map/MapDetailsPane"; + export default function MapPage() { - const [location, setLocation] = useState([48.46762, -123.25458]); + const [location, setLocation] = useState([48.46762, -123.25458]); const {state} = useLocation(); // const { routerSearchQuery } = state; // Read values passed on state const routerSearchQuery = state && state.routerSearchQuery || ''; @@ -61,9 +65,21 @@ export default function MapPage() {
+ + {/* TODO: Split this to it's own component */} + {/*
+
+ > Back + +
+ + Last Updated: +
*/} + + {/* */} {/* */} - + + + {/* Add all sites as map markers */} From bc631342d0a0aea7e9cb9d69bb304f02d72ef836 Mon Sep 17 00:00:00 2001 From: Adam Coard Date: Tue, 19 Sep 2023 12:17:00 -0700 Subject: [PATCH 040/194] Increase dummy data to 250 records, tweak lat/lng --- frontend/site-search-frontend/src/api/dummy-data.tsx | 2 +- .../src/features/simple-search/simple-search.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/site-search-frontend/src/api/dummy-data.tsx b/frontend/site-search-frontend/src/api/dummy-data.tsx index d4396b64..5f9b5099 100644 --- a/frontend/site-search-frontend/src/api/dummy-data.tsx +++ b/frontend/site-search-frontend/src/api/dummy-data.tsx @@ -9,7 +9,7 @@ export function createRandomSite(): Site { address: faker.location.streetAddress(), // Lat and Longitude restricted to approximately BC (some Alberta, oceans, etc) latitude: faker.location.latitude({min: 48, max: 59}), - longitude: faker.location.longitude({min: -139, max: -114}), + longitude: faker.location.longitude({min: -139, max: -118}), lastUpdated: faker.date.past({years: 10}), city: faker.location.city(), region: randomRegion() diff --git a/frontend/site-search-frontend/src/features/simple-search/simple-search.ts b/frontend/site-search-frontend/src/features/simple-search/simple-search.ts index e6096a73..3ce2d62f 100644 --- a/frontend/site-search-frontend/src/features/simple-search/simple-search.ts +++ b/frontend/site-search-frontend/src/features/simple-search/simple-search.ts @@ -6,7 +6,7 @@ export const siteSlice = createSlice({ initialState: { // value: [createRandomSite()] // value: (new Array(100)).fill(createRandomSite) - value: Array.from({length: 50}, _ => createRandomSite()) + value: Array.from({length: 250}, _ => createRandomSite()) }, reducers: { add: ()=>console.log('todo') // Maybe not even necessary? SITE list won't mutate much, unlike site selection From 19e8bd7bc03e019ee56898d1b8e39a05445c2964 Mon Sep 17 00:00:00 2001 From: Adam Coard Date: Tue, 19 Sep 2023 12:32:55 -0700 Subject: [PATCH 041/194] Update map details pane with real dynamic data --- .../src/features/map/MapDetailsPane.tsx | 18 +++++++------ .../site-search-frontend/src/pages/map.tsx | 25 ++++++++++++++++--- 2 files changed, 32 insertions(+), 11 deletions(-) diff --git a/frontend/site-search-frontend/src/features/map/MapDetailsPane.tsx b/frontend/site-search-frontend/src/features/map/MapDetailsPane.tsx index a2b12ae6..a3e7f79e 100644 --- a/frontend/site-search-frontend/src/features/map/MapDetailsPane.tsx +++ b/frontend/site-search-frontend/src/features/map/MapDetailsPane.tsx @@ -1,32 +1,34 @@ import styles from '@/pages/map.module.css' import CloseButton from 'react-bootstrap/esm/CloseButton'; import Button from 'react-bootstrap/Button'; +import { Site } from '@/api/sites'; +import { MouseEventHandler } from 'react'; -export default function MapDetailsPane({site}) { +export default function MapDetailsPane({site, onClose}: {site: Site, onClose: MouseEventHandler}) { return (
> Back - +
-
Last Updated:
+
Last Updated: {site.lastUpdated.toISOString().split('T')[0]}
Site ID
-
128381
+
{site.siteID}
Latitude
-
49d 123s 123a
+
{site.latitude}
Longitude
-
49d 123s 123a
+
{site.longitude}
Victoria File
@@ -40,12 +42,12 @@ export default function MapDetailsPane({site}) {
Common Name
-
N/A
+
{site.address}
Region
-
N/A
+
{site.region}
diff --git a/frontend/site-search-frontend/src/pages/map.tsx b/frontend/site-search-frontend/src/pages/map.tsx index fb249bb8..52b3327d 100644 --- a/frontend/site-search-frontend/src/pages/map.tsx +++ b/frontend/site-search-frontend/src/pages/map.tsx @@ -24,8 +24,22 @@ export default function MapPage() { const routerSearchQuery = state && state.routerSearchQuery || ''; const [searchQuery, setSearchQuery] = useState(routerSearchQuery); + const [selectedSite, setSelectedSite] = useState(); + const sites: Site[] = useSelector(state => state.site.value); + function onMarkerClick(e){ + console.log('onMarkerClick', e); + const clickedSite = e?.target?.options?.site; + if (clickedSite) { + setSelectedSite(clickedSite) + } + } + + function clearSelection(){ + setSelectedSite(null); + } + return ( <>
@@ -34,7 +48,7 @@ export default function MapPage() {
- + @@ -75,7 +89,7 @@ export default function MapPage() { Last Updated:
*/} - + {selectedSite && } {/* */} {/* */} @@ -99,7 +113,12 @@ export default function MapPage() { {/* Add all sites as map markers */} {sites.map(site => { - return + return })} From 663c0e0916d4cdbf26356d36ecd7b1613c586fb2 Mon Sep 17 00:00:00 2001 From: Adam Coard Date: Tue, 19 Sep 2023 12:42:45 -0700 Subject: [PATCH 042/194] Animate map details page on open/close --- .../src/features/map/MapDetailsPane.tsx | 14 +++++++------- .../site-search-frontend/src/pages/map.module.css | 7 ++++++- frontend/site-search-frontend/src/pages/map.tsx | 7 ++++++- frontend/site-search-frontend/src/pages/search.css | 1 + 4 files changed, 20 insertions(+), 9 deletions(-) diff --git a/frontend/site-search-frontend/src/features/map/MapDetailsPane.tsx b/frontend/site-search-frontend/src/features/map/MapDetailsPane.tsx index a3e7f79e..2183d1a8 100644 --- a/frontend/site-search-frontend/src/features/map/MapDetailsPane.tsx +++ b/frontend/site-search-frontend/src/features/map/MapDetailsPane.tsx @@ -8,27 +8,27 @@ import { MouseEventHandler } from 'react'; export default function MapDetailsPane({site, onClose}: {site: Site, onClose: MouseEventHandler}) { return ( -
+
> Back
-
Last Updated: {site.lastUpdated.toISOString().split('T')[0]}
+
Last Updated: {site?.lastUpdated.toISOString().split('T')[0]}
Site ID
-
{site.siteID}
+
{site?.siteID}
Latitude
-
{site.latitude}
+
{site?.latitude}
Longitude
-
{site.longitude}
+
{site?.longitude}
Victoria File
@@ -42,12 +42,12 @@ export default function MapDetailsPane({site, onClose}: {site: Site, onClose: Mo
Common Name
-
{site.address}
+
{site?.address}
Region
-
{site.region}
+
{site?.region}
diff --git a/frontend/site-search-frontend/src/pages/map.module.css b/frontend/site-search-frontend/src/pages/map.module.css index e87ca743..7dd8e5e0 100644 --- a/frontend/site-search-frontend/src/pages/map.module.css +++ b/frontend/site-search-frontend/src/pages/map.module.css @@ -34,7 +34,8 @@ min-height: 400px; min-width: 400px; top: 200px; - background-color: lightgray; + background-color: white; + border: 2px solid gray; z-index: 99999; border-radius: 10px; padding: 1rem; @@ -52,4 +53,8 @@ /* .detailsPaneContent { max-width: 400px; +} */ +/* +.detailsPane.fadeOut { + height: 0; } */ \ No newline at end of file diff --git a/frontend/site-search-frontend/src/pages/map.tsx b/frontend/site-search-frontend/src/pages/map.tsx index 52b3327d..fec7cacf 100644 --- a/frontend/site-search-frontend/src/pages/map.tsx +++ b/frontend/site-search-frontend/src/pages/map.tsx @@ -89,7 +89,12 @@ export default function MapPage() { Last Updated:
*/} - {selectedSite && } + {/* {selectedSite && } */} + {/* */} + + + {/* !!searchQuery.length ? 'fadeIn' : 'fadeOut' */} + {/* */} {/* */} diff --git a/frontend/site-search-frontend/src/pages/search.css b/frontend/site-search-frontend/src/pages/search.css index aad3d1b4..c96aa7cd 100644 --- a/frontend/site-search-frontend/src/pages/search.css +++ b/frontend/site-search-frontend/src/pages/search.css @@ -17,6 +17,7 @@ opacity: 0; height: 0; transition: 0.25s; + min-height: 0; } .fadeIn { From efec17f5946a8364eac0ed39c2664c07e7067a11 Mon Sep 17 00:00:00 2001 From: Adam Coard Date: Tue, 19 Sep 2023 12:47:49 -0700 Subject: [PATCH 043/194] Fix CSS for hidden panel blocking click --- frontend/site-search-frontend/src/pages/search.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/site-search-frontend/src/pages/search.css b/frontend/site-search-frontend/src/pages/search.css index c96aa7cd..13d6da79 100644 --- a/frontend/site-search-frontend/src/pages/search.css +++ b/frontend/site-search-frontend/src/pages/search.css @@ -15,9 +15,9 @@ .fadeOut { opacity: 0; - height: 0; + height: 0 !important; transition: 0.25s; - min-height: 0; + min-height: 0 !important; } .fadeIn { From 1e1a192f2855710412a2e3bb4abb93426a89e76e Mon Sep 17 00:00:00 2001 From: Adam Coard Date: Tue, 19 Sep 2023 12:49:04 -0700 Subject: [PATCH 044/194] Fix erroneous highlighting of lat/lng when searching siteID --- .../src/features/simple-search/search-results.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/site-search-frontend/src/features/simple-search/search-results.tsx b/frontend/site-search-frontend/src/features/simple-search/search-results.tsx index 264ac5ae..a837c316 100644 --- a/frontend/site-search-frontend/src/features/simple-search/search-results.tsx +++ b/frontend/site-search-frontend/src/features/simple-search/search-results.tsx @@ -29,8 +29,8 @@ export default function SimpleSearchResults({ site, highlight, searchOption }: S
- - + +
{String(site.siteID)} {site.city} {site.region}{String(site.latitude)}{String(site.longitude)}{String(site.latitude)}{String(site.longitude)}
From ee84852032ac222a031bc4b4af1f8f0275e3e75d Mon Sep 17 00:00:00 2001 From: Adam Coard Date: Fri, 22 Sep 2023 08:44:24 -0700 Subject: [PATCH 045/194] Midway through fixing build issues --- frontend/site-search-frontend/Dockerfile | 31 ++++++++++ frontend/site-search-frontend/nginx.conf | 59 +++++++++++++++++++ .../src/components/Highlighted.tsx | 14 +++-- .../src/features/map/MapDetailsPane.tsx | 1 - .../features/simple-search/search-results.tsx | 13 +++- .../features/simple-search/search-toggle.tsx | 9 ++- .../features/simple-search/simple-search.ts | 21 ++++++- frontend/site-search-frontend/src/main.tsx | 2 +- .../src/pages/map.module.css | 4 +- .../site-search-frontend/src/pages/map.tsx | 28 +++------ .../site-search-frontend/src/pages/search.tsx | 27 ++++++--- frontend/site-search-frontend/src/store.ts | 8 ++- frontend/site-search-frontend/tsconfig.json | 2 +- 13 files changed, 176 insertions(+), 43 deletions(-) create mode 100644 frontend/site-search-frontend/Dockerfile create mode 100644 frontend/site-search-frontend/nginx.conf diff --git a/frontend/site-search-frontend/Dockerfile b/frontend/site-search-frontend/Dockerfile new file mode 100644 index 00000000..ad089180 --- /dev/null +++ b/frontend/site-search-frontend/Dockerfile @@ -0,0 +1,31 @@ +# "build-stage", based on Node.js, to build and compile the frontend +# pull official base image +FROM node:19 as build-stage + +# set working directory +WORKDIR /app + +# add `/app/node_modules/.bin` to $PATH +ENV PATH /app/node_modules/.bin:$PATH + +# install app dependencies +COPY package.json ./ +COPY package-lock.json ./ + +RUN npm install +# RUN npm install react-scripts@3.4.1 -g --silent + +# create and set user permissions to app folder +RUN mkdir -p node_modules/.cache && chmod -R 777 node_modules/.cache + +# add app files +COPY . ./ + +RUN npm run build + +# Stage 1, based on Nginx, to have only the compiled app, ready for production with Nginx +FROM nginx:1.17 as production-stage +RUN mkdir /app +COPY --from=build-stage /app/build /usr/share/nginx/html +COPY nginx.conf /etc/nginx/nginx.conf +CMD ["nginx", "-g", "daemon off;"] \ No newline at end of file diff --git a/frontend/site-search-frontend/nginx.conf b/frontend/site-search-frontend/nginx.conf new file mode 100644 index 00000000..7295e405 --- /dev/null +++ b/frontend/site-search-frontend/nginx.conf @@ -0,0 +1,59 @@ +# nginx.conf +worker_processes auto; +error_log /var/log/nginx/error.log; + +pid /tmp/nginx.pid; + +events { + worker_connections 4096; +} + +http { + include /etc/nginx/mime.types; + client_body_temp_path /tmp/client_temp; + proxy_temp_path /tmp/proxy_temp_path; + fastcgi_temp_path /tmp/fastcgi_temp; + uwsgi_temp_path /tmp/uwsgi_temp; + scgi_temp_path /tmp/scgi_temp; + default_type application/octet-stream; + server_tokens off; + underscores_in_headers on; + + # Use a w3c standard log format + log_format main '$remote_addr - $remote_user [$time_local] "$request" ' + '$status $body_bytes_sent "$http_referer" ' + '"$http_user_agent" "$http_x_forwarded_for"'; + + access_log /var/log/nginx/access.log main; + + + server { + + # add in most common security headers + add_header Content-Security-Policy "default-src * data: blob: filesystem: 'unsafe-inline' 'unsafe-eval'; frame-ancestors 'self' https://*.apps.silver.devops.gov.bc.ca"; + add_header Strict-Transport-Security "max-age=31536000; includeSubDomains"; + add_header X-Content-Type-Options "nosniff"; + add_header X-XSS-Protection 1; + add_header X-Frame-Options SAMEORIGIN; + + listen 8080; + server_name _; + + index index.html; + error_log /dev/stdout info; + access_log /dev/stdout; + + # frontend + location / { + root /usr/share/nginx/html; + index index.html index.htm; + try_files $uri $uri/ /index.html; + } + + error_page 500 502 503 504 /50x.html; + + location = /50x.html { + root /usr/share/nginx/html; + } + } +} \ No newline at end of file diff --git a/frontend/site-search-frontend/src/components/Highlighted.tsx b/frontend/site-search-frontend/src/components/Highlighted.tsx index 093b3a2b..1ba061a1 100644 --- a/frontend/site-search-frontend/src/components/Highlighted.tsx +++ b/frontend/site-search-frontend/src/components/Highlighted.tsx @@ -1,12 +1,18 @@ -import React from "react"; +import React, { ReactNode } from "react"; +interface Props { + children?: ReactNode + highlight?: string; +} -const Highlighter = ({ children, highlight }) => { + + +const Highlighter = ({ children, highlight }: Props) => { if (!highlight) return children; // console.log('CHILDREN', { children }) const regexp = new RegExp(highlight, 'g'); - const matches = children.match(regexp); - var parts = children.split(new RegExp(`${highlight.replace()}`, 'g')); + const matches = children?.match(regexp); + var parts = children?.split(new RegExp(`${highlight.replace()}`, 'g')); for (var i = 0; i < parts.length; i++) { if (i !== parts.length - 1) { diff --git a/frontend/site-search-frontend/src/features/map/MapDetailsPane.tsx b/frontend/site-search-frontend/src/features/map/MapDetailsPane.tsx index 2183d1a8..d1aad4e9 100644 --- a/frontend/site-search-frontend/src/features/map/MapDetailsPane.tsx +++ b/frontend/site-search-frontend/src/features/map/MapDetailsPane.tsx @@ -10,7 +10,6 @@ export default function MapDetailsPane({site, onClose}: {site: Site, onClose: Mo
- > Back
diff --git a/frontend/site-search-frontend/src/features/simple-search/search-results.tsx b/frontend/site-search-frontend/src/features/simple-search/search-results.tsx index a837c316..851cb79e 100644 --- a/frontend/site-search-frontend/src/features/simple-search/search-results.tsx +++ b/frontend/site-search-frontend/src/features/simple-search/search-results.tsx @@ -3,8 +3,19 @@ import { Site } from '@/api/sites' import { Link } from "react-router-dom"; import Highlighter from '@/components/Highlighted'; +interface Props { + site: Site; + highlight: string; + searchOption: { + searchByCity: boolean, + searchBySiteID: boolean, + searchByRegion: boolean, + searchByAddress: boolean + } +} -export default function SimpleSearchResults({ site, highlight, searchOption }: Site) { + +export default function SimpleSearchResults({ site, highlight, searchOption }: Props) { // const defaultHighlighting = const { searchByCity, searchBySiteID, searchByRegion, searchByAddress } = searchOption; diff --git a/frontend/site-search-frontend/src/features/simple-search/search-toggle.tsx b/frontend/site-search-frontend/src/features/simple-search/search-toggle.tsx index 0490b643..774733de 100644 --- a/frontend/site-search-frontend/src/features/simple-search/search-toggle.tsx +++ b/frontend/site-search-frontend/src/features/simple-search/search-toggle.tsx @@ -1,7 +1,12 @@ - import ToggleButton from 'react-bootstrap/ToggleButton'; -export default function SearchToggle({ checked, onChange, children }) { +interface Props { + checked: boolean; + onChange: Function, + children: string +} + +export default function SearchToggle({ checked, onChange, children }: Props) { return ( createRandomSite()) + // value: Array.from({length: 25000}, _ => createRandomSite()) }, reducers: { add: ()=>console.log('todo') // Maybe not even necessary? SITE list won't mutate much, unlike site selection @@ -17,4 +21,19 @@ export const siteSlice = createSlice({ // Action creators are generated for each case reducer function export const { add } = siteSlice.actions -export default siteSlice.reducer \ No newline at end of file +export default siteSlice.reducer + +// export type RootState = ReturnType +// // export type RootState = ReturnType +// // export type SiteSliceState: { + +// // } + +// // Infer the `RootState` and `AppDispatch` types from the store itself +// // export type RootState = ReturnType +// // // Inferred type: {posts: PostsState, comments: CommentsState, users: UsersState} +// // export type AppDispatch = typeof store.dispatch + + +// const rootReducer = combineReducers({}) +// export type RootState = ReturnType \ No newline at end of file diff --git a/frontend/site-search-frontend/src/main.tsx b/frontend/site-search-frontend/src/main.tsx index 18a341bc..613b8f69 100644 --- a/frontend/site-search-frontend/src/main.tsx +++ b/frontend/site-search-frontend/src/main.tsx @@ -1,6 +1,6 @@ import React from 'react' import ReactDOM from 'react-dom/client' -import App from './App.tsx' +// import App from './App.tsx' import Search from './pages/search.tsx' import { createBrowserRouter, diff --git a/frontend/site-search-frontend/src/pages/map.module.css b/frontend/site-search-frontend/src/pages/map.module.css index 7dd8e5e0..a7d9387d 100644 --- a/frontend/site-search-frontend/src/pages/map.module.css +++ b/frontend/site-search-frontend/src/pages/map.module.css @@ -13,7 +13,7 @@ top: 75px; /* top: 175px; */ width: calc(100% - 40px); - z-index: 99999; + z-index: 999; } .mapContainer { @@ -36,7 +36,7 @@ top: 200px; background-color: white; border: 2px solid gray; - z-index: 99999; + z-index: 999; border-radius: 10px; padding: 1rem; overflow: hidden; diff --git a/frontend/site-search-frontend/src/pages/map.tsx b/frontend/site-search-frontend/src/pages/map.tsx index fec7cacf..784a9b64 100644 --- a/frontend/site-search-frontend/src/pages/map.tsx +++ b/frontend/site-search-frontend/src/pages/map.tsx @@ -1,7 +1,7 @@ import Header from "@/components/Header" import { useState } from "react"; import Button from 'react-bootstrap/Button'; -import { MapContainer, WMSTileLayer, Marker, Popup, TileLayer, ZoomControl } from "react-leaflet"; +import { MapContainer, WMSTileLayer, Marker, TileLayer, ZoomControl} from "react-leaflet"; import 'leaflet/dist/leaflet.css'; import styles from './map.module.css'; import Dropdown from 'react-bootstrap/Dropdown'; @@ -26,13 +26,17 @@ export default function MapPage() { const [selectedSite, setSelectedSite] = useState(); + // May need separate marker component to useMap(), as it needs to be used in child + // const map = useMap(); + const sites: Site[] = useSelector(state => state.site.value); function onMarkerClick(e){ console.log('onMarkerClick', e); - const clickedSite = e?.target?.options?.site; + const clickedSite: Site = e?.target?.options?.site; if (clickedSite) { setSelectedSite(clickedSite) + // map.setView([clickedSite.latitude, clickedSite.longitude], 14) } } @@ -40,6 +44,9 @@ export default function MapPage() { setSelectedSite(null); } + // TODO - Set url query param when clicking a marker + // TODO - Center at a marker if a URL query param ID is set - Including if you just clicked one on map view (or are sent from Search) + return ( <>
@@ -66,7 +73,6 @@ export default function MapPage() { - {/* */} Map @@ -80,24 +86,8 @@ export default function MapPage() {
- {/* TODO: Split this to it's own component */} - {/*
-
- > Back - -
- Last Updated: -
*/} - {/* {selectedSite && } */} - {/* */} - - {/* !!searchQuery.length ? 'fadeIn' : 'fadeOut' */} - - - {/* */} - {/* */} diff --git a/frontend/site-search-frontend/src/pages/search.tsx b/frontend/site-search-frontend/src/pages/search.tsx index 9f9b1d66..e6a52e87 100644 --- a/frontend/site-search-frontend/src/pages/search.tsx +++ b/frontend/site-search-frontend/src/pages/search.tsx @@ -1,6 +1,6 @@ import Button from 'react-bootstrap/Button'; import Header from '@/components/Header' -import { useEffect, useState } from 'react'; +import { ChangeEventHandler, useEffect, useState } from 'react'; import Spinner from 'react-bootstrap/Spinner'; import { Link, useNavigate } from "react-router-dom"; import { Site } from '@/api/sites' @@ -8,6 +8,8 @@ import { useSelector } from 'react-redux'; import SimpleSearchResults from '@/features/simple-search/search-results'; import './search.css'; import SearchToggle from '@/features/simple-search/search-toggle'; +import { RootState } from '@/store'; + @@ -20,19 +22,26 @@ export default function SearchPage() { const [searchByRegionalFile, setSearchByRegionalFile] = useState(false); const [searchByVictoriaFile, setSearchByVictoriaFile] = useState(false); const [isLoaded, setIsLoaded] = useState(true); - const sites: Site[] = useSelector(state => state.site.value); + const sites: Site[] = useSelector((state: RootState) => state.site.value); const [searchResults, setSearchResults] = useState([]); const [searchQuery, setSearchQuery] = useState(''); - const [field, setField] = useState([]); + // const [field, setField] = useState([]); const navigate = useNavigate(); - function handleSearch(e) { - setSearchQuery(e.target.value) - updateSearch(e.target.value) + // function handleSearch(e: React.MouseEvent ) { + function handleSearch(e: ChangeEventHandler ) { + // setSearchQuery(e.target.value) + // updateSearch(e.target.value) + + // Replacing `target` with `currentTarget` for type stuff, still verify it works. + setSearchQuery(e.currentTarget.value) + updateSearch(e.currentTarget.value) + + } - let searchTimeout: number; + let searchTimeout: ReturnType; function updateSearch(query: string) { // TODO: Debounce! Also cancel timeouts if a new one comes in. setIsLoaded(false) @@ -92,8 +101,8 @@ export default function SearchPage() { // By putting a delay between setting search results and displaying them, we cut down on the jank when searching multi-lines // May not be necessary w/ Debouncing setSearchResults(results) - setTimeout(() => { setIsLoaded(true) }, 250) - }, 2000) + setTimeout(() => { setIsLoaded(true) }, 750) + }, 1500) } function onEnter(e) { diff --git a/frontend/site-search-frontend/src/store.ts b/frontend/site-search-frontend/src/store.ts index 95d4001f..7863a13f 100644 --- a/frontend/site-search-frontend/src/store.ts +++ b/frontend/site-search-frontend/src/store.ts @@ -1,8 +1,12 @@ import { configureStore } from '@reduxjs/toolkit' import siteReducer from '@/features/simple-search/simple-search' -export default configureStore({ +const store = configureStore({ reducer: { site: siteReducer } -}) \ No newline at end of file +}) + +export default store; + +export type RootState = ReturnType \ No newline at end of file diff --git a/frontend/site-search-frontend/tsconfig.json b/frontend/site-search-frontend/tsconfig.json index 0b89aa00..3d0e7841 100644 --- a/frontend/site-search-frontend/tsconfig.json +++ b/frontend/site-search-frontend/tsconfig.json @@ -15,7 +15,7 @@ "jsx": "react-jsx", /* Linting */ - "strict": true, + // "strict": true, "noUnusedLocals": true, "noUnusedParameters": true, "noFallthroughCasesInSwitch": true, From 4750c48bacbd34da7a6fb5c967cead5cd043168d Mon Sep 17 00:00:00 2001 From: Adam Coard Date: Fri, 22 Sep 2023 08:59:35 -0700 Subject: [PATCH 046/194] Fix tsc build issues --- .../src/components/Highlighted.tsx | 10 ++++++---- .../src/features/simple-search/simple-search.ts | 17 ----------------- frontend/site-search-frontend/src/pages/map.tsx | 10 ++++++---- .../site-search-frontend/src/pages/search.tsx | 15 +++++++++++---- frontend/site-search-frontend/tsconfig.json | 2 +- 5 files changed, 24 insertions(+), 30 deletions(-) diff --git a/frontend/site-search-frontend/src/components/Highlighted.tsx b/frontend/site-search-frontend/src/components/Highlighted.tsx index 1ba061a1..40ac8d95 100644 --- a/frontend/site-search-frontend/src/components/Highlighted.tsx +++ b/frontend/site-search-frontend/src/components/Highlighted.tsx @@ -1,7 +1,7 @@ import React, { ReactNode } from "react"; interface Props { - children?: ReactNode + children?: ReactNode; highlight?: string; } @@ -11,8 +11,10 @@ const Highlighter = ({ children, highlight }: Props) => { if (!highlight) return children; // console.log('CHILDREN', { children }) const regexp = new RegExp(highlight, 'g'); - const matches = children?.match(regexp); - var parts = children?.split(new RegExp(`${highlight.replace()}`, 'g')); + const matches = (children as string).match(regexp); + // var parts = children?.split(new RegExp(`${highlight.replace()}`, 'g')); + // var parts = (children as string).split(new RegExp(`${highlight.replace('', '')}`, 'g')); + var parts = (children as string).split(new RegExp(`${highlight.replace('', '')}`, 'g')); for (var i = 0; i < parts.length; i++) { if (i !== parts.length - 1) { @@ -27,7 +29,7 @@ const Highlighter = ({ children, highlight }: Props) => { } - parts[i] = ( + (parts[i] as any) = ( {parts[i]}{match} diff --git a/frontend/site-search-frontend/src/features/simple-search/simple-search.ts b/frontend/site-search-frontend/src/features/simple-search/simple-search.ts index aaf883d8..9520e9fa 100644 --- a/frontend/site-search-frontend/src/features/simple-search/simple-search.ts +++ b/frontend/site-search-frontend/src/features/simple-search/simple-search.ts @@ -1,8 +1,6 @@ import { createRandomSite } from '@/api/dummy-data' import { createSlice } from '@reduxjs/toolkit' -import { combineReducers } from '@reduxjs/toolkit' - export const siteSlice = createSlice({ name: 'site', @@ -22,18 +20,3 @@ export const siteSlice = createSlice({ export const { add } = siteSlice.actions export default siteSlice.reducer - -// export type RootState = ReturnType -// // export type RootState = ReturnType -// // export type SiteSliceState: { - -// // } - -// // Infer the `RootState` and `AppDispatch` types from the store itself -// // export type RootState = ReturnType -// // // Inferred type: {posts: PostsState, comments: CommentsState, users: UsersState} -// // export type AppDispatch = typeof store.dispatch - - -// const rootReducer = combineReducers({}) -// export type RootState = ReturnType \ No newline at end of file diff --git a/frontend/site-search-frontend/src/pages/map.tsx b/frontend/site-search-frontend/src/pages/map.tsx index 784a9b64..e0493dc8 100644 --- a/frontend/site-search-frontend/src/pages/map.tsx +++ b/frontend/site-search-frontend/src/pages/map.tsx @@ -11,8 +11,9 @@ import { useLocation } from "react-router-dom"; import { Site } from "@/api/sites"; import { useSelector } from "react-redux"; import { LatLngExpression } from "leaflet"; -import CloseButton from 'react-bootstrap/CloseButton'; +// import CloseButton from 'react-bootstrap/CloseButton'; import MapDetailsPane from "@/features/map/MapDetailsPane"; +import { RootState } from "@/store"; @@ -29,11 +30,12 @@ export default function MapPage() { // May need separate marker component to useMap(), as it needs to be used in child // const map = useMap(); - const sites: Site[] = useSelector(state => state.site.value); + const sites: Site[] = useSelector((state: RootState) => state.site.value); function onMarkerClick(e){ console.log('onMarkerClick', e); - const clickedSite: Site = e?.target?.options?.site; + // const clickedSite: Site = e?.target?.options?.site; + const clickedSite: Site = e?.target?.options["data-site"]; if (clickedSite) { setSelectedSite(clickedSite) // map.setView([clickedSite.latitude, clickedSite.longitude], 14) @@ -112,7 +114,7 @@ export default function MapPage() { position={[site.latitude, site.longitude]} key={site.uuid} eventHandlers={{ click: onMarkerClick }} - site={site} + data-site={site} > })} diff --git a/frontend/site-search-frontend/src/pages/search.tsx b/frontend/site-search-frontend/src/pages/search.tsx index e6a52e87..fba75ce8 100644 --- a/frontend/site-search-frontend/src/pages/search.tsx +++ b/frontend/site-search-frontend/src/pages/search.tsx @@ -1,6 +1,6 @@ import Button from 'react-bootstrap/Button'; import Header from '@/components/Header' -import { ChangeEventHandler, useEffect, useState } from 'react'; +import { DetailedHTMLProps, InputHTMLAttributes, useEffect, useState } from 'react'; import Spinner from 'react-bootstrap/Spinner'; import { Link, useNavigate } from "react-router-dom"; import { Site } from '@/api/sites' @@ -30,13 +30,20 @@ export default function SearchPage() { const navigate = useNavigate(); // function handleSearch(e: React.MouseEvent ) { - function handleSearch(e: ChangeEventHandler ) { + // function handleSearch(e: React.MouseEvent ) { + function handleSearch(e: DetailedHTMLProps, HTMLInputElement> ) { + // const value: string = (e.target as HTMLInputElement).value; + const value: string = ((e as MouseEvent).target as HTMLInputElement).value; + // setSearchQuery(e.target.value) // updateSearch(e.target.value) // Replacing `target` with `currentTarget` for type stuff, still verify it works. - setSearchQuery(e.currentTarget.value) - updateSearch(e.currentTarget.value) + // setSearchQuery(e.currentTarget.value) + // updateSearch(e.currentTarget.value) + setSearchQuery(value) + updateSearch(value) + } diff --git a/frontend/site-search-frontend/tsconfig.json b/frontend/site-search-frontend/tsconfig.json index 3d0e7841..56dc884e 100644 --- a/frontend/site-search-frontend/tsconfig.json +++ b/frontend/site-search-frontend/tsconfig.json @@ -16,7 +16,7 @@ /* Linting */ // "strict": true, - "noUnusedLocals": true, + // "noUnusedLocals": true, "noUnusedParameters": true, "noFallthroughCasesInSwitch": true, From a6948f1cf36293dd04d8b948c4e36fc15e559249 Mon Sep 17 00:00:00 2001 From: Adam Coard Date: Fri, 22 Sep 2023 09:09:45 -0700 Subject: [PATCH 047/194] Solve Docker and npm build issues, add map types --- frontend/site-search-frontend/Dockerfile | 3 +- .../site-search-frontend/package-lock.json | 51 +++++++++++++++++++ frontend/site-search-frontend/package.json | 2 + 3 files changed, 55 insertions(+), 1 deletion(-) diff --git a/frontend/site-search-frontend/Dockerfile b/frontend/site-search-frontend/Dockerfile index ad089180..eb47ddc6 100644 --- a/frontend/site-search-frontend/Dockerfile +++ b/frontend/site-search-frontend/Dockerfile @@ -1,6 +1,7 @@ # "build-stage", based on Node.js, to build and compile the frontend # pull official base image FROM node:19 as build-stage +# FROM node:20 as build-stage # set working directory WORKDIR /app @@ -26,6 +27,6 @@ RUN npm run build # Stage 1, based on Nginx, to have only the compiled app, ready for production with Nginx FROM nginx:1.17 as production-stage RUN mkdir /app -COPY --from=build-stage /app/build /usr/share/nginx/html +COPY --from=build-stage /app/dist /usr/share/nginx/html COPY nginx.conf /etc/nginx/nginx.conf CMD ["nginx", "-g", "daemon off;"] \ No newline at end of file diff --git a/frontend/site-search-frontend/package-lock.json b/frontend/site-search-frontend/package-lock.json index 6d8f5a93..d22ca2dc 100644 --- a/frontend/site-search-frontend/package-lock.json +++ b/frontend/site-search-frontend/package-lock.json @@ -20,9 +20,11 @@ }, "devDependencies": { "@faker-js/faker": "^8.0.2", + "@types/leaflet": "^1.9.4", "@types/react": "^18.2.15", "@types/react-bootstrap": "^0.32.32", "@types/react-dom": "^18.2.7", + "@types/react-leaflet": "^3.0.0", "@typescript-eslint/eslint-plugin": "^6.0.0", "@typescript-eslint/parser": "^6.0.0", "@vitejs/plugin-react-swc": "^3.3.2", @@ -859,6 +861,12 @@ "integrity": "sha512-z/G02d+59gyyUb7KYhKi9jOhicek6QD2oMaotUyG+lUkybpXoV49dY9bj7Ah5Q+y7knK2jU67UTX9FyfGzaxQg==", "dev": true }, + "node_modules/@types/geojson": { + "version": "7946.0.11", + "resolved": "https://registry.npmjs.org/@types/geojson/-/geojson-7946.0.11.tgz", + "integrity": "sha512-L7A0AINMXQpVwxHJ4jxD6/XjZ4NDufaRlUJHjNIFKYUFBH1SvOW+neaqb0VTRSLW5suSrSu19ObFEFnfNcr+qg==", + "dev": true + }, "node_modules/@types/hoist-non-react-statics": { "version": "3.3.1", "resolved": "https://registry.npmjs.org/@types/hoist-non-react-statics/-/hoist-non-react-statics-3.3.1.tgz", @@ -874,6 +882,15 @@ "integrity": "sha512-Hr5Jfhc9eYOQNPYO5WLDq/n4jqijdHNlDXjuAQkkt+mWdQR+XJToOHrsD4cPaMXpn6KO7y2+wM8AZEs8VpBLVA==", "dev": true }, + "node_modules/@types/leaflet": { + "version": "1.9.4", + "resolved": "https://registry.npmjs.org/@types/leaflet/-/leaflet-1.9.4.tgz", + "integrity": "sha512-kfwgQf4eOxoe/tD9CaKQrBKHbc7VpyfJOG5sxsQtkH+ML9xYa8hUC3UMa0wU1pKfciJtO0pU9g9XbWhPo7iBCA==", + "dev": true, + "dependencies": { + "@types/geojson": "*" + } + }, "node_modules/@types/prop-types": { "version": "15.7.5", "resolved": "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.5.tgz", @@ -907,6 +924,16 @@ "@types/react": "*" } }, + "node_modules/@types/react-leaflet": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@types/react-leaflet/-/react-leaflet-3.0.0.tgz", + "integrity": "sha512-p8R9mVKbCDDqOdW+M6GyJJuFn6q+IgDFYavFiOIvaWHuOe5kIHZEtCy1pfM43JIA6JiB3D/aDoby7C51eO+XSg==", + "deprecated": "This is a stub types definition. react-leaflet provides its own type definitions, so you do not need this installed.", + "dev": true, + "dependencies": { + "react-leaflet": "*" + } + }, "node_modules/@types/react-transition-group": { "version": "4.4.6", "resolved": "https://registry.npmjs.org/@types/react-transition-group/-/react-transition-group-4.4.6.tgz", @@ -3330,6 +3357,12 @@ "integrity": "sha512-z/G02d+59gyyUb7KYhKi9jOhicek6QD2oMaotUyG+lUkybpXoV49dY9bj7Ah5Q+y7knK2jU67UTX9FyfGzaxQg==", "dev": true }, + "@types/geojson": { + "version": "7946.0.11", + "resolved": "https://registry.npmjs.org/@types/geojson/-/geojson-7946.0.11.tgz", + "integrity": "sha512-L7A0AINMXQpVwxHJ4jxD6/XjZ4NDufaRlUJHjNIFKYUFBH1SvOW+neaqb0VTRSLW5suSrSu19ObFEFnfNcr+qg==", + "dev": true + }, "@types/hoist-non-react-statics": { "version": "3.3.1", "resolved": "https://registry.npmjs.org/@types/hoist-non-react-statics/-/hoist-non-react-statics-3.3.1.tgz", @@ -3345,6 +3378,15 @@ "integrity": "sha512-Hr5Jfhc9eYOQNPYO5WLDq/n4jqijdHNlDXjuAQkkt+mWdQR+XJToOHrsD4cPaMXpn6KO7y2+wM8AZEs8VpBLVA==", "dev": true }, + "@types/leaflet": { + "version": "1.9.4", + "resolved": "https://registry.npmjs.org/@types/leaflet/-/leaflet-1.9.4.tgz", + "integrity": "sha512-kfwgQf4eOxoe/tD9CaKQrBKHbc7VpyfJOG5sxsQtkH+ML9xYa8hUC3UMa0wU1pKfciJtO0pU9g9XbWhPo7iBCA==", + "dev": true, + "requires": { + "@types/geojson": "*" + } + }, "@types/prop-types": { "version": "15.7.5", "resolved": "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.5.tgz", @@ -3378,6 +3420,15 @@ "@types/react": "*" } }, + "@types/react-leaflet": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@types/react-leaflet/-/react-leaflet-3.0.0.tgz", + "integrity": "sha512-p8R9mVKbCDDqOdW+M6GyJJuFn6q+IgDFYavFiOIvaWHuOe5kIHZEtCy1pfM43JIA6JiB3D/aDoby7C51eO+XSg==", + "dev": true, + "requires": { + "react-leaflet": "*" + } + }, "@types/react-transition-group": { "version": "4.4.6", "resolved": "https://registry.npmjs.org/@types/react-transition-group/-/react-transition-group-4.4.6.tgz", diff --git a/frontend/site-search-frontend/package.json b/frontend/site-search-frontend/package.json index 996e21d3..9ce5a499 100644 --- a/frontend/site-search-frontend/package.json +++ b/frontend/site-search-frontend/package.json @@ -22,9 +22,11 @@ }, "devDependencies": { "@faker-js/faker": "^8.0.2", + "@types/leaflet": "^1.9.4", "@types/react": "^18.2.15", "@types/react-bootstrap": "^0.32.32", "@types/react-dom": "^18.2.7", + "@types/react-leaflet": "^3.0.0", "@typescript-eslint/eslint-plugin": "^6.0.0", "@typescript-eslint/parser": "^6.0.0", "@vitejs/plugin-react-swc": "^3.3.2", From 0a0b3e299f862cfbdb96a8f5a65cd6fe6d24644b Mon Sep 17 00:00:00 2001 From: RyanBirtch-aot Date: Fri, 22 Sep 2023 10:25:59 -0700 Subject: [PATCH 048/194] workflow and form alterations commit --- .../epd-forms/Summary of Site Condition.json | 43860 ++++++++++++++- .../Summary of Site Condition-Bundle.json | 44865 ++++++++++++++++ .../callActivity/SOSCBundleWorklow.bpmn | 2295 + 3 files changed, 91019 insertions(+), 1 deletion(-) create mode 100644 forms-flow-ai/epd-forms/bundling/Summary of Site Condition-Bundle.json create mode 100644 forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/processes/Bundling/callActivity/SOSCBundleWorklow.bpmn diff --git a/forms-flow-ai/epd-forms/Summary of Site Condition.json b/forms-flow-ai/epd-forms/Summary of Site Condition.json index e13aa99c..85ce1665 100644 --- a/forms-flow-ai/epd-forms/Summary of Site Condition.json +++ b/forms-flow-ai/epd-forms/Summary of Site Condition.json @@ -1 +1,43859 @@ -{"forms":[{"title":"Summary of Site Condition","display":"form","type":"form","name":"summaryOfSiteCondition","path":"summaryofsitecondition","tags":["common"],"components":[{"title":"Site Information Advisor Actions","collapsible":false,"hideLabel":true,"key":"siteInformationAdvisorActions","customConditional":"const UserDetails = JSON.parse(localStorage.getItem(\"UserDetails\"))\r\n\r\nconsole.log(\"form UserDetails\",UserDetails);\r\n\r\nconst roles = UserDetails[\"role\"];\r\n\r\nconsole.log(\"form roles\",roles);\r\nif(roles.includes(\"formsflow-reviewer/site-information-advisor\")) {\r\n show = true;\r\n}\r\nelse\r\n{\r\n show = false;\r\n}","type":"panel","label":"Panel","input":false,"tableView":false,"components":[{"label":"Columns","columns":[{"components":[{"label":"Accept Forms","action":"custom","showValidations":false,"theme":"success","tableView":false,"key":"accepted","type":"button","custom":"const submissionId = form._submission._id;\r\nconst formId = form._submission.form;\r\nconst formDataReqUrl = form.formio?form.formio.formUrl:(localStorage.getItem('customSubmissionUrl')+'/form/'+formId)+'/submission/'+submissionId;const formDataReqObj1 = { \"_id\": submissionId, \"data\": data};\r\nconsole.log('formDataReqUrl',formDataReqUrl)\r\nconst formio = new Formio(formDataReqUrl);\r\nformio.saveSubmission(formDataReqObj1).then( result => {\r\nform.emit('customEvent', {\r\n type: \"actionComplete\", \r\n component: component,\r\n actionType: 'Accepted'\r\n }); \r\n}).catch((error)=>{\r\n//Error callback on not Save\r\nform.emit('customEvent', {\r\n type: \"actionError\", \r\n component: component,\r\n actionType:'Accepted'\r\n }); \r\n});","input":true,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":false,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":true,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":{"type":"input"},"attributes":{},"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false},"conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"size":"md","leftIcon":"","rightIcon":"","block":false,"disableOnInvalid":false,"id":"exnpl2"}],"width":2,"offset":0,"push":0,"pull":0,"size":"md","currentWidth":2},{"components":[{"label":"Needs More Info","action":"custom","showValidations":false,"theme":"warning","tableView":false,"key":"needsMoreInfo","type":"button","custom":"\r\nconst submissionId = form._submission._id;\r\nconst formId = form._submission.form;\r\nconst formDataReqUrl = form.formio?form.formio.formUrl:(localStorage.getItem('customSubmissionUrl')+'/form/'+formId)+'/submission/'+submissionId;\r\nconst formDataReqObj1 = { \"_id\": submissionId, \"data\": data};\r\nconst formio = new Formio(formDataReqUrl);\r\nformio.saveSubmission(formDataReqObj1).then( result => {\r\nform.emit('customEvent', {\r\n type: \"actionComplete\", \r\n component: component,\r\n actionType: 'Returned'\r\n }); \r\n}).catch((error)=>{\r\n//Error callback on not Save\r\nform.emit('customEvent', {\r\n type: \"actionError\", \r\n component: component,\r\n actionType:'Returned'\r\n }); \r\n});","input":true,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":false,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":true,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":{"type":"input"},"attributes":{},"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false},"conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"size":"md","leftIcon":"","rightIcon":"","block":false,"disableOnInvalid":false,"id":"er0far"}],"width":2,"offset":0,"push":0,"pull":0,"size":"md","currentWidth":2},{"components":[{"label":"Reject Forms","action":"custom","showValidations":false,"theme":"danger","tableView":false,"key":"rejected","type":"button","custom":"const submissionId = form._submission._id;\r\nconst formId = form._submission.form;\r\nconst formDataReqUrl = form.formio?form.formio.formUrl:(localStorage.getItem('customSubmissionUrl')+'/form/'+formId)+'/submission/'+submissionId;\r\nconst formDataReqObj1 = { \"_id\": submissionId, \"data\": data};\r\nconst formio = new Formio(formDataReqUrl);\r\nformio.saveSubmission(formDataReqObj1).then( result => {\r\nform.emit('customEvent', {\r\n type: \"actionComplete\", \r\n component: component,\r\n actionType: 'Rejected'\r\n }); \r\n}).catch((error)=>{\r\n//Error callback on not Save\r\nform.emit('customEvent', {\r\n type: \"actionError\", \r\n component: component,\r\n actionType:'Rejected'\r\n }); \r\n});","input":true,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":false,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":true,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":{"type":"input"},"attributes":{},"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false},"conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"size":"md","leftIcon":"","rightIcon":"","block":false,"disableOnInvalid":false,"id":"erfy6zg"}],"size":"md","width":2,"offset":0,"push":0,"pull":0,"currentWidth":2},{"components":[{"label":"Return To Client","action":"custom","showValidations":false,"tableView":false,"key":"returnToClient1","type":"button","custom":"const submissionId = form._submission._id;\r\nconst formId = form._submission.form;\r\nconst formDataReqUrl = form.formio?form.formio.formUrl:(localStorage.getItem('customSubmissionUrl')+'/form/'+formId)+'/submission/'+submissionId;\r\nconst formDataReqObj1 = { \"_id\": submissionId, \"data\": data};\r\nconst formio = new Formio(formDataReqUrl);\r\nformio.saveSubmission(formDataReqObj1).then( result => {\r\nform.emit('customEvent', {\r\n type: \"actionComplete\", \r\n component: component,\r\n actionType: 'ReturnedToClient'\r\n }); \r\n}).catch((error)=>{\r\n//Error callback on not Save\r\nform.emit('customEvent', {\r\n type: \"actionError\", \r\n component: component,\r\n actionType:'ReturnedToClient'\r\n }); \r\n});","input":true,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":false,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":true,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":{"type":"input"},"attributes":{},"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false},"conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"size":"md","leftIcon":"","rightIcon":"","block":false,"disableOnInvalid":false,"theme":"primary","id":"ea7ott"}],"size":"md","width":2,"offset":0,"push":0,"pull":0,"currentWidth":2},{"components":[],"size":"md","offset":0,"push":0,"pull":0,"width":4,"currentWidth":4}],"hideLabel":true,"key":"columns","type":"columns","input":false,"tableView":false,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":false,"hidden":false,"clearOnHide":false,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"attributes":{},"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false},"conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"tree":false,"lazyLoad":false,"autoAdjust":false,"id":"ewmtpgh"}],"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":false,"hidden":false,"clearOnHide":false,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"attributes":{},"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false},"conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"tree":false,"lazyLoad":false,"theme":"default","breadcrumb":"default","id":"e4pmjy","keyModified":true},{"label":"Edit Grid","hideLabel":true,"tableView":true,"templates":{"header":"\r\n{% console.log(\"row-key header\",'commentFor',row['commentFor']) %}\r\n{% const UserDetails = JSON.parse(localStorage.getItem(\"UserDetails\"))%}\r\n{% const groups = UserDetails[\"groups\"]; %}\r\n\r\n{% if(groups.includes(\"/formsflow/formsflow-reviewer/formsflow-client-reviewer\") || groups.includes(\"/formsflow/formsflow-reviewer/lrs-approving-authority\") || groups.includes(\"/formsflow/formsflow-client\")){ %}\r\n\r\n
\r\n {% util.eachComponent(components, function(component) { %}\r\n {% if (displayValue(component) && component.key !== 'commentFor' ) { %}\r\n {% if(component.label === 'Notes') { %}\r\n
{{ t(component.label) }}
\r\n {% } else if(component.key !== 'comments') { %}\r\n
{{ t(component.label) }}
\r\n {% } %}\r\n {% } %}\r\n {% }) %}\r\n
\r\n\r\n{% } else { %}\r\n\r\n
\r\n {% util.eachComponent(components, function(component) { %}\r\n {% if (displayValue(component)) { %}\r\n {% if(component.key == 'comments') { %}\r\n
{{ t(component.label)}}
\r\n{% } else { %}\r\n
{{ t(component.label)}}
\r\n{% } %} \r\n {% } %}\r\n {% }) %}\r\n
\r\n\r\n{% } %}","row":"{% console.log(\"row-key main\",'commentFor',row['commentFor']) %}\r\n{% const UserDetails = JSON.parse(localStorage.getItem(\"UserDetails\"))%}\r\n{% const groups = UserDetails[\"groups\"]; %}\r\n\r\n{% if((groups.includes(\"/formsflow/formsflow-reviewer/formsflow-client-reviewer\") || groups.includes(\"/formsflow/formsflow-reviewer/lrs-approving-authority\") || groups.includes(\"/formsflow/formsflow-client\")) && row['commentFor']==='external'){ %}\r\n\r\n\r\n\r\n
\r\n\r\n {% util.eachComponent(components, function(component) { %}\r\n {% if (displayValue(component) && component.key !== 'commentFor' ) { %}\r\n {% console.log(\"row-key\",component.key,row[component.key]) %}\r\n {% const UserDetails = JSON.parse(localStorage.getItem(\"UserDetails\"))%}\r\n{% const groups = UserDetails[\"groups\"]; %}\r\n{% if((groups.includes(\"/formsflow/formsflow-reviewer/formsflow-client-reviewer\") || groups.includes(\"/formsflow/formsflow-reviewer/lrs-approving-authority\") || groups.includes(\"/formsflow/formsflow-client\")) && row['commentFor']==='external'){ %}\r\n{% if(component.key == 'comments') { %}\r\n
\r\n {{ getView(component, row[component.key])}}\r\n
\r\n{% } else { %}\r\n
\r\n {{ getView(component, row[component.key])}}\r\n
\r\n{%}%}\r\n \r\n\r\n {% } %}\r\n {% } %}\r\n {% }) %}\r\n {% if (!instance.options.readOnly && !instance.disabled) { %}\r\n {% const UserDetails = JSON.parse(localStorage.getItem(\"UserDetails\"))%}\r\n{% const groups = UserDetails[\"groups\"]; %}\r\n{% if((groups.includes(\"/formsflow/formsflow-reviewer/formsflow-client-reviewer\") || groups.includes(\"/formsflow/formsflow-reviewer/lrs-approving-authority\") || groups.includes(\"/formsflow/formsflow-client\")) && row['commentFor']==='external'){ %}\r\n
\r\n
\r\n \r\n {% if (!instance.hasRemoveButtons || instance.hasRemoveButtons()) { %}\r\n \r\n {% } %}\r\n
\r\n
\r\n \r\n {% } %}\r\n {% } %}\r\n
\r\n {% } else if (groups.includes(\"/formsflow/formsflow-reviewer/site-information-advisor\")) { %}\r\n
\r\n {% util.eachComponent(components, function(component) { %}\r\n {% console.log('for sia') %}\r\n {% if (displayValue(component)) { %}\r\n {% if(component.key == 'comments') { %}\r\n
{{ getView(component, row[component.key])}}
\r\n{% } else { %}\r\n
{{ getView(component, row[component.key])}}
\r\n{% } %} \r\n \r\n {% } %}\r\n {% }) %}\r\n {% if (!instance.options.readOnly && !instance.disabled) { %}\r\n
\r\n
\r\n \r\n {% if (!instance.hasRemoveButtons || instance.hasRemoveButtons()) { %}\r\n \r\n {% } %}\r\n
\r\n
\r\n {% } %}\r\n
\r\n {% } %}\r\n \r\n \r\n \r\n{% const emptyElements = []; %}\r\n{% const elements = document.getElementsByClassName(\"list-group-item\"); %}\r\n{% for (let i = 0; i < elements.length; i++) { %}\r\n{% const element = elements[i]; %}\r\n{% if(element.querySelectorAll('div.row').length===0){(element).remove() }} %}","tableHeader":"\n \n {% util.eachComponent(components, function(component) { %}\n {% if (!component.hasOwnProperty('tableView') || component.tableView) { %}\n {{ component.label }}\n {% } %}\n {% }) %}\n {% if (!instance.options.readOnly && !instance.disabled) { %}\n Actions\n {% } %}\n \n ","tableRow":"\n {% util.eachComponent(components, function(component) { %}\n {% if (!component.hasOwnProperty('tableView') || component.tableView) { %}\n \n {{ getView(component, row[component.key]) }}\n \n {% } %}\n {% }) %}\n {% if (!instance.options.readOnly && !instance.disabled) { %}\n \n
\n \n {% if (!instance.hasRemoveButtons || instance.hasRemoveButtons()) { %}\n \n {% } %}\n
\n \n {% } %}\n ","footer":""},"validate":{"custom":"const emptyElements = [];\r\nconst elements = document.getElementsByClassName(\"list-group-item\");\r\nfor (let i = 0; i < elements.length; i++) {\r\nconst element = elements[i];\r\nconsole.log('in validation remove');\r\nif(element.querySelectorAll('div.row').length===0){(element).remove() }\r\n \r\n}\r\n\r\n\r\nvar b =JSON.parse(localStorage.getItem('UserDetails'))\r\nif(b.groups.indexOf('/formsflow/formsflow-client') > -1 || b.groups.indexOf('/formsflow/formsflow-reviewer/lrs-approving-authority') > -1 || b.groups.indexOf('/formsflow/formsflow-reviewer/formsflow-client-reviewer') > -1 )\r\n{\r\ndocument.querySelector(\"[ref='editgrid-notes-addRow']\").remove();\r\nvar editButtons = document.querySelectorAll('button.btn.btn-default.btn-light.btn-sm.editRow');\r\nfor(i=0;ix.commentFor==='external').length > 0)\r\nshow = true;\r\nelse\r\nshow = false;\r\n}\r\nelse\r\n{\r\n show = true;\r\n}\r\n","type":"editgrid","displayAsTable":false,"input":true,"components":[{"label":"Columns","columns":[{"components":[{"label":"Notes","autoExpand":false,"tableView":true,"key":"notesSOSC","type":"textarea","input":true,"keyModified":true,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":{"type":"input"},"attributes":{},"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false,"minLength":"","maxLength":"","pattern":"","minWords":"","maxWords":""},"conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"mask":false,"inputType":"text","inputFormat":"html","inputMask":"","displayMask":"","spellcheck":true,"truncateMultipleSpaces":false,"rows":3,"wysiwyg":false,"editor":"","fixedSize":true,"id":"egv1w2s"}],"width":4,"offset":0,"push":0,"pull":0,"size":"md","currentWidth":4},{"components":[{"label":"Visibility","optionsLabelPosition":"right","inline":false,"tableView":true,"defaultValue":"internal","values":[{"label":"Internal","value":"internal","shortcut":""},{"label":"External","value":"external","shortcut":""}],"key":"commentFor","type":"radio","input":true,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"attributes":{},"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false,"onlyAvailableItems":false},"conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"inputType":"radio","fieldSet":false,"id":"eaxy1jv"}],"width":2,"offset":0,"push":0,"pull":0,"size":"md","currentWidth":2},{"components":[{"label":"Role","disabled":true,"tableView":true,"customDefaultValue":"var b =JSON.parse(localStorage.getItem('UserDetails'))\r\nif(b.groups.indexOf('/formsflow/formsflow-client') > -1 )\r\n{\r\n value = 'Client'\r\n}\r\nelse if(b.groups.indexOf('/formsflow/formsflow-reviewer/site-information-advisor') > -1 )\r\n{\r\n value = 'SIA'\r\n}","key":"role","type":"textfield","input":true,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","autofocus":false,"dbIndex":false,"calculateValue":"","calculateServer":false,"widget":{"type":"input"},"attributes":{},"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false,"minLength":"","maxLength":"","pattern":""},"conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"mask":false,"inputType":"text","inputFormat":"plain","inputMask":"","displayMask":"","spellcheck":true,"truncateMultipleSpaces":false,"id":"eio8gs"}],"size":"md","width":2,"offset":0,"push":0,"pull":0,"currentWidth":2},{"components":[{"label":"Created By","disabled":true,"tableView":true,"customDefaultValue":"value = JSON.parse( localStorage.UserDetails).name ","key":"createdBy","type":"textfield","input":true,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","autofocus":false,"dbIndex":false,"calculateValue":"","calculateServer":false,"widget":{"type":"input"},"attributes":{},"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false,"minLength":"","maxLength":"","pattern":""},"conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"mask":false,"inputType":"text","inputFormat":"plain","inputMask":"","displayMask":"","spellcheck":true,"truncateMultipleSpaces":false,"id":"ejcjlr"}],"size":"md","width":2,"offset":0,"push":0,"pull":0,"currentWidth":2},{"components":[{"label":"Created At","disabled":true,"tableView":true,"customDefaultValue":"value = (new Date()).toLocaleDateString() + ' At ' + (new Date()).toLocaleTimeString()","key":"createdAt","type":"textfield","input":true,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","autofocus":false,"dbIndex":false,"calculateValue":"","calculateServer":false,"widget":{"type":"input"},"attributes":{},"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false,"minLength":"","maxLength":"","pattern":""},"conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"mask":false,"inputType":"text","inputFormat":"plain","inputMask":"","displayMask":"","spellcheck":true,"truncateMultipleSpaces":false,"id":"e5tdbl2"}],"size":"md","width":2,"offset":0,"push":0,"pull":0,"currentWidth":2}],"key":"columns","type":"columns","input":false,"tableView":false,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":false,"hidden":false,"clearOnHide":false,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"attributes":{},"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false},"conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"tree":false,"lazyLoad":false,"autoAdjust":false,"id":"e2yyry"}],"keyModified":true,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"attributes":{},"validateOn":"change","conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"tree":true,"lazyLoad":false,"disableAddingRemovingRows":false,"removeRow":"Cancel","defaultOpen":false,"openWhenEmpty":false,"modal":false,"inlineEdit":false,"id":"ekpr2y"},{"html":"

Part 1  - Contact Information

","label":"Content","customClass":"","refreshOnChange":false,"hidden":false,"modalEdit":false,"key":"content3","tags":[],"properties":{},"conditional":{"show":null,"when":null,"eq":"","json":""},"customConditional":"","logic":[],"attributes":{},"overlay":{"style":"","page":"","left":"","top":"","width":"","height":""},"type":"content","input":false,"tableView":false,"placeholder":"","prefix":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"clearOnHide":true,"refreshOn":"","redrawOn":"","dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"allowMultipleMasks":false,"addons":[],"id":"e7c7u3u"},{"key":"Section1-ContactInformation","type":"panel","input":false,"label":"","title":"Section I - CONTACT INFORMATION","collapsed":false,"tableView":false,"components":[{"key":"siteOwnerOrOperator","type":"panel","input":false,"label":"Panel","title":"Site Owner or Operator","hideLabel":true,"tableView":false,"components":[{"key":"Section1A-NameColumn","type":"columns","input":false,"label":"Columns - 2","columns":[{"pull":0,"push":0,"size":"md","width":6,"offset":0,"components":[{"key":"Section1A-LastName","type":"textfield","input":true,"label":"Last Name","validate":{"required":true,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false,"minLength":"","maxLength":"","pattern":""},"tableView":false,"hideOnChildrenHidden":false,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":{"type":"input"},"attributes":{},"validateOn":"change","conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"mask":false,"inputType":"text","inputFormat":"plain","inputMask":"","displayMask":"","spellcheck":true,"truncateMultipleSpaces":false,"id":"ekh7nj9"}],"currentWidth":6},{"pull":0,"push":0,"size":"md","width":6,"offset":0,"components":[{"key":"Section1A-FirstName","type":"textfield","input":true,"label":"First Name","validate":{"required":true,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false,"minLength":"","maxLength":"","pattern":""},"tableView":false,"hideOnChildrenHidden":false,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":{"type":"input"},"attributes":{},"validateOn":"change","conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"mask":false,"inputType":"text","inputFormat":"plain","inputMask":"","displayMask":"","spellcheck":true,"truncateMultipleSpaces":false,"id":"euc0sw"}],"currentWidth":6}],"tableView":false,"hideOnChildrenHidden":false,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":false,"hidden":false,"clearOnHide":false,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"attributes":{},"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false},"conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"tree":false,"lazyLoad":false,"autoAdjust":false,"id":"euaafu"},{"key":"Section1A-Company","type":"textfield","input":true,"label":"Company, if applicable","tableView":false,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":{"type":"input"},"attributes":{},"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false,"minLength":"","maxLength":"","pattern":""},"conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"mask":false,"inputType":"text","inputFormat":"plain","inputMask":"","displayMask":"","spellcheck":true,"truncateMultipleSpaces":false,"id":"effeqnf"},{"key":"Section1A-AddressColumn3","type":"columns","input":false,"label":"Columns - 2","columns":[{"pull":0,"push":0,"size":"md","width":6,"offset":0,"components":[{"key":"Section1A-Address","type":"textfield","input":true,"label":"Address","validate":{"required":true,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false,"minLength":"","maxLength":"","pattern":""},"tableView":false,"hideOnChildrenHidden":false,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":{"type":"input"},"attributes":{},"validateOn":"change","conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"mask":false,"inputType":"text","inputFormat":"plain","inputMask":"","displayMask":"","spellcheck":true,"truncateMultipleSpaces":false,"id":"e2utqz"}],"currentWidth":6},{"pull":0,"push":0,"size":"md","width":6,"offset":0,"components":[{"key":"Section1A-City","type":"textfield","input":true,"label":"City","validate":{"required":true,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false,"minLength":"","maxLength":"","pattern":""},"tableView":false,"hideOnChildrenHidden":false,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":{"type":"input"},"attributes":{},"validateOn":"change","conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"mask":false,"inputType":"text","inputFormat":"plain","inputMask":"","displayMask":"","spellcheck":true,"truncateMultipleSpaces":false,"id":"e5u2rue"}],"currentWidth":6}],"tableView":false,"hideOnChildrenHidden":false,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":false,"hidden":false,"clearOnHide":false,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"attributes":{},"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false},"conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"tree":false,"lazyLoad":false,"autoAdjust":false,"id":"emhj7ub"},{"key":"Section1A-AddressColumn","type":"columns","input":false,"label":"Columns - 3","columns":[{"pull":0,"push":0,"size":"md","width":4,"offset":0,"components":[{"key":"Section1A-ProvinceState","type":"textfield","input":true,"label":"Province","validate":{"required":true,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false,"minLength":"","maxLength":"","pattern":""},"tableView":false,"hideOnChildrenHidden":false,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":{"type":"input"},"attributes":{},"validateOn":"change","conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"mask":false,"inputType":"text","inputFormat":"plain","inputMask":"","displayMask":"","spellcheck":true,"truncateMultipleSpaces":false,"id":"ea49wil"}],"currentWidth":4},{"pull":0,"push":0,"size":"md","width":4,"offset":0,"components":[{"key":"Section1A-Country","type":"textfield","input":true,"label":"Country","validate":{"required":true,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false,"minLength":"","maxLength":"","pattern":""},"tableView":false,"hideOnChildrenHidden":false,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":{"type":"input"},"attributes":{},"validateOn":"change","conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"mask":false,"inputType":"text","inputFormat":"plain","inputMask":"","displayMask":"","spellcheck":true,"truncateMultipleSpaces":false,"id":"elb9xr8"}],"currentWidth":4},{"pull":0,"push":0,"size":"md","width":4,"offset":0,"components":[{"key":"Section1A-PostalZipCode","type":"textfield","input":true,"label":"Postal Code","validate":{"required":true,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false,"minLength":"","maxLength":"","pattern":""},"tableView":false,"hideOnChildrenHidden":false,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":{"type":"input"},"attributes":{},"validateOn":"change","conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"mask":false,"inputType":"text","inputFormat":"plain","inputMask":"","displayMask":"","spellcheck":true,"truncateMultipleSpaces":false,"id":"etaog87"}],"currentWidth":4}],"tableView":false,"hideOnChildrenHidden":false,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":false,"hidden":false,"clearOnHide":false,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"attributes":{},"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false},"conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"tree":false,"lazyLoad":false,"autoAdjust":false,"id":"ewwkail"},{"key":"Section1A-ContactInfoColumn","type":"columns","input":false,"label":"Columns - 2","columns":[{"pull":0,"push":0,"size":"md","width":6,"offset":0,"components":[{"key":"phoneNumber2","type":"textfield","input":true,"label":"Phone Number","validate":{"required":true,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false,"minLength":"","maxLength":"","pattern":""},"tableView":false,"hideOnChildrenHidden":false,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":{"type":"input"},"attributes":{},"validateOn":"change","conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"mask":false,"inputType":"text","inputFormat":"plain","inputMask":"","displayMask":"","spellcheck":true,"truncateMultipleSpaces":false,"id":"eunnqpj"}],"currentWidth":6},{"pull":0,"push":0,"size":"md","width":6,"offset":0,"components":[{"label":"Email","tableView":true,"validate":{"required":true,"custom":"\r\nvar currentValue = input;\r\nconsole.log('currentValue',currentValue);\r\nfetch('https://forms-flow-api-e38158-dev.apps.silver.devops.gov.bc.ca/user?memberOfGroup=formsflow%2Fformsflow-reviewer%2Fformsflow-client-reviewer',\r\n{'headers':{ 'authorization': 'Bearer '+localStorage.getItem('authToken')},'mode':'cors'})\r\n.then((p)=> {return p.json();}).\r\nthen((x)=>{\r\n data.hiddenUserIdForFormSharing = '' ;\r\n x.find((y)=>{ console.log('currentValue',currentValue); \r\n if( y.email=== currentValue ) \r\n { data.hiddenUserIdForFormSharing = y.id}\r\n\r\n })\r\n\r\n if(data.hiddenUserIdForFormSharing==='')\r\n {\r\n valid = 'Unable to find user with provided email address';\r\n }\r\n else\r\n {\r\n valid = true;\r\n }\r\n\r\n});","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false,"minLength":"","maxLength":"","pattern":""},"key":"ownerEmailAddress","type":"email","input":true,"delimiter":false,"requireDecimal":false,"hideOnChildrenHidden":false,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":{"type":"input"},"attributes":{},"validateOn":"change","conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"mask":false,"inputType":"email","inputFormat":"plain","inputMask":"","displayMask":"","spellcheck":true,"truncateMultipleSpaces":false,"kickbox":{"enabled":false},"id":"ewvvqh"}],"currentWidth":6}],"tableView":false,"hideOnChildrenHidden":false,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":false,"hidden":false,"clearOnHide":false,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"attributes":{},"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false},"conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"tree":false,"lazyLoad":false,"autoAdjust":false,"id":"eeq9dzs"},{"label":"Is applicant same as above?","labelPosition":"top","optionsLabelPosition":"right","description":"","tooltip":"","customClass":"","tabindex":"","inline":false,"hidden":false,"hideLabel":false,"autofocus":false,"disabled":false,"tableView":false,"modalEdit":false,"values":[{"label":"Yes","value":"true","shortcut":""},{"label":"No","value":"false","shortcut":""}],"dataType":"","persistent":true,"protected":false,"dbIndex":false,"encrypted":false,"redrawOn":"","clearOnHide":true,"customDefaultValue":"","calculateValue":"","calculateServer":false,"allowCalculateOverride":false,"validate":{"required":true,"onlyAvailableItems":false,"customMessage":"","custom":"","customPrivate":false,"json":"","strictDateValidation":false,"multiple":false,"unique":false},"errorLabel":"","errors":"","key":"isApplicantSameAsAbove","tags":[],"properties":{},"conditional":{"show":null,"when":null,"eq":"","json":""},"customConditional":"","logic":[],"attributes":{},"overlay":{"style":"","page":"","left":"","top":"","width":"","height":""},"type":"radio","input":true,"placeholder":"","prefix":"","suffix":"","multiple":false,"unique":false,"refreshOn":"","dataGridLabel":false,"widget":null,"validateOn":"change","showCharCount":false,"showWordCount":false,"allowMultipleMasks":false,"addons":[],"inputType":"radio","fieldSet":false,"id":"eup055","defaultValue":""}],"collapsible":false,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":false,"hidden":false,"clearOnHide":false,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"attributes":{},"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false},"conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"tree":false,"lazyLoad":false,"theme":"default","breadcrumb":"default","id":"evm4w5b"},{"title":"Applicant","theme":"default","tooltip":"","customClass":"","collapsible":false,"hidden":false,"hideLabel":false,"disabled":false,"modalEdit":false,"key":"applicant","tags":[],"properties":{},"customConditional":"","conditional":{"json":"","show":true,"when":"isApplicantSameAsAbove","eq":"false"},"logic":[],"attributes":{},"overlay":{"style":"","page":"","left":"","top":"","width":"","height":""},"type":"panel","label":"Panel","breadcrumb":"default","tabindex":"","input":false,"tableView":false,"components":[{"key":"Section1C-NameColumn","type":"columns","input":false,"label":"Columns - 2","columns":[{"pull":0,"push":0,"size":"md","width":6,"offset":0,"components":[{"key":"Section1C-LastName","type":"textfield","input":true,"label":"Last Name","validate":{"required":true,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false,"minLength":"","maxLength":"","pattern":""},"tableView":false,"hideOnChildrenHidden":false,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":{"type":"input"},"attributes":{},"validateOn":"change","conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"mask":false,"inputType":"text","inputFormat":"plain","inputMask":"","displayMask":"","spellcheck":true,"truncateMultipleSpaces":false,"id":"e40la5k"}],"currentWidth":6},{"pull":0,"push":0,"size":"md","width":6,"offset":0,"components":[{"key":"Section1C-FirstName","type":"textfield","input":true,"label":"First Name","validate":{"required":true,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false,"minLength":"","maxLength":"","pattern":""},"tableView":false,"hideOnChildrenHidden":false,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":{"type":"input"},"attributes":{},"validateOn":"change","conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"mask":false,"inputType":"text","inputFormat":"plain","inputMask":"","displayMask":"","spellcheck":true,"truncateMultipleSpaces":false,"id":"e0oy6rg"}],"currentWidth":6}],"tableView":false,"hideOnChildrenHidden":false,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":false,"hidden":false,"clearOnHide":false,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"attributes":{},"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false},"conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"tree":false,"lazyLoad":false,"autoAdjust":false,"id":"e9ur3d"},{"key":"Section1C-Company","type":"textfield","input":true,"label":"Company, if applicable","tableView":false,"hideOnChildrenHidden":false,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":{"type":"input"},"attributes":{},"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false,"minLength":"","maxLength":"","pattern":""},"conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"mask":false,"inputType":"text","inputFormat":"plain","inputMask":"","displayMask":"","spellcheck":true,"truncateMultipleSpaces":false,"id":"eikmhmk"},{"key":"Section1C-AddressColumn","type":"columns","input":false,"label":"Columns - 2","columns":[{"pull":0,"push":0,"size":"md","width":6,"offset":0,"components":[{"key":"Section1C-Address","type":"textfield","input":true,"label":"Address","validate":{"required":true,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false,"minLength":"","maxLength":"","pattern":""},"tableView":false,"hideOnChildrenHidden":false,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":{"type":"input"},"attributes":{},"validateOn":"change","conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"mask":false,"inputType":"text","inputFormat":"plain","inputMask":"","displayMask":"","spellcheck":true,"truncateMultipleSpaces":false,"id":"efojt6s"}],"currentWidth":6},{"pull":0,"push":0,"size":"md","width":6,"offset":0,"components":[{"key":"Section1C-City","type":"textfield","input":true,"label":"City","validate":{"required":true,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false,"minLength":"","maxLength":"","pattern":""},"tableView":false,"hideOnChildrenHidden":false,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":{"type":"input"},"attributes":{},"validateOn":"change","conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"mask":false,"inputType":"text","inputFormat":"plain","inputMask":"","displayMask":"","spellcheck":true,"truncateMultipleSpaces":false,"id":"e59u27"}],"currentWidth":6}],"tableView":false,"hideOnChildrenHidden":false,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":false,"hidden":false,"clearOnHide":false,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"attributes":{},"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false},"conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"tree":false,"lazyLoad":false,"autoAdjust":false,"id":"eigg0un"},{"key":"Section1A-AddressColumn2","type":"columns","input":false,"label":"Columns - 3","columns":[{"pull":0,"push":0,"size":"md","width":4,"offset":0,"components":[{"key":"Section1A-ProvinceState2","type":"textfield","input":true,"label":"Province","validate":{"required":true,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false,"minLength":"","maxLength":"","pattern":""},"tableView":false,"hideOnChildrenHidden":false,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":{"type":"input"},"attributes":{},"validateOn":"change","conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"mask":false,"inputType":"text","inputFormat":"plain","inputMask":"","displayMask":"","spellcheck":true,"truncateMultipleSpaces":false,"id":"efyqlzn"}],"currentWidth":4},{"pull":0,"push":0,"size":"md","width":4,"offset":0,"components":[{"key":"Section1A-Country2","type":"textfield","input":true,"label":"Country","validate":{"required":true,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false,"minLength":"","maxLength":"","pattern":""},"tableView":false,"hideOnChildrenHidden":false,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":{"type":"input"},"attributes":{},"validateOn":"change","conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"mask":false,"inputType":"text","inputFormat":"plain","inputMask":"","displayMask":"","spellcheck":true,"truncateMultipleSpaces":false,"id":"edhcyho"}],"currentWidth":4},{"pull":0,"push":0,"size":"md","width":4,"offset":0,"components":[{"key":"Section1A-PostalZipCode2","type":"textfield","input":true,"label":"Postal Code","validate":{"required":true,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false,"minLength":"","maxLength":"","pattern":""},"tableView":false,"hideOnChildrenHidden":false,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":{"type":"input"},"attributes":{},"validateOn":"change","conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"mask":false,"inputType":"text","inputFormat":"plain","inputMask":"","displayMask":"","spellcheck":true,"truncateMultipleSpaces":false,"id":"e3mm0qo"}],"currentWidth":4}],"tableView":false,"hideOnChildrenHidden":false,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":false,"hidden":false,"clearOnHide":false,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"attributes":{},"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false},"conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"tree":false,"lazyLoad":false,"autoAdjust":false,"id":"elurmt"},{"key":"Section1C-ContactInfoColumn","type":"columns","input":false,"label":"Columns - 2","columns":[{"pull":0,"push":0,"size":"md","width":6,"offset":0,"components":[{"key":"phoneNumber","type":"textfield","input":true,"label":"Phone Number","validate":{"required":true,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false,"minLength":"","maxLength":"","pattern":""},"tableView":false,"hideOnChildrenHidden":false,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":{"type":"input"},"attributes":{},"validateOn":"change","conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"mask":false,"inputType":"text","inputFormat":"plain","inputMask":"","displayMask":"","spellcheck":true,"truncateMultipleSpaces":false,"id":"eidhmy6"}],"currentWidth":6},{"pull":0,"push":0,"size":"md","width":6,"offset":0,"components":[{"label":"Email","tableView":true,"validate":{"required":true,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false,"minLength":"","maxLength":"","pattern":""},"key":"contactPersonEmailAddress","type":"email","input":true,"delimiter":false,"requireDecimal":false,"hideOnChildrenHidden":false,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":{"type":"input"},"attributes":{},"validateOn":"change","conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"mask":false,"inputType":"email","inputFormat":"plain","inputMask":"","displayMask":"","spellcheck":true,"truncateMultipleSpaces":false,"kickbox":{"enabled":false},"id":"ee0ed8f"}],"currentWidth":6}],"tableView":false,"hideOnChildrenHidden":false,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":false,"hidden":false,"clearOnHide":false,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"attributes":{},"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false},"conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"tree":false,"lazyLoad":false,"autoAdjust":false,"id":"ebgnl1p"},{"label":"Is the agent same as the applicant?","optionsLabelPosition":"right","inline":false,"tableView":false,"values":[{"label":"Yes","value":"true","shortcut":""},{"label":"No","value":"false","shortcut":""}],"validate":{"required":true,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false,"onlyAvailableItems":false},"key":"isApplicantSameAsAbove1","conditional":{"show":true,"when":"isApplicantSameAsAbove","eq":"false"},"type":"radio","input":true,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"attributes":{},"validateOn":"change","overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"inputType":"radio","fieldSet":false,"id":"et6b04k"}],"placeholder":"","prefix":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":false,"clearOnHide":false,"refreshOn":"","redrawOn":"","dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"allowMultipleMasks":false,"addons":[],"tree":false,"lazyLoad":false,"id":"er3axs"},{"title":"Agent","theme":"default","tooltip":"","customClass":"","collapsible":false,"hidden":false,"hideLabel":false,"disabled":false,"modalEdit":false,"key":"panel","tags":[],"properties":{},"customConditional":"","conditional":{"json":"","show":true,"when":"isApplicantSameAsAbove1","eq":"false"},"logic":[],"attributes":{},"overlay":{"style":"","page":"","left":"","top":"","width":"","height":""},"type":"panel","label":"Panel","breadcrumb":"default","tabindex":"","input":false,"tableView":false,"components":[{"key":"Section1B-NameColumn","type":"columns","input":false,"label":"Section1B-NameColumn","columns":[{"pull":0,"push":0,"size":"md","width":6,"offset":0,"components":[{"key":"Section1B-LastName","type":"textfield","input":true,"label":"Last Name","tableView":false,"hideOnChildrenHidden":false,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":{"type":"input"},"attributes":{},"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false,"minLength":"","maxLength":"","pattern":""},"conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"mask":false,"inputType":"text","inputFormat":"plain","inputMask":"","displayMask":"","spellcheck":true,"truncateMultipleSpaces":false,"id":"ewq9vf"}],"currentWidth":6},{"pull":0,"push":0,"size":"md","width":6,"offset":0,"components":[{"key":"Section1B-FirstName","type":"textfield","input":true,"label":"First Name","tableView":false,"hideOnChildrenHidden":false,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":{"type":"input"},"attributes":{},"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false,"minLength":"","maxLength":"","pattern":""},"conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"mask":false,"inputType":"text","inputFormat":"plain","inputMask":"","displayMask":"","spellcheck":true,"truncateMultipleSpaces":false,"id":"egx5th9"}],"currentWidth":6}],"tableView":false,"hideOnChildrenHidden":false,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":false,"hidden":false,"clearOnHide":false,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"attributes":{},"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false},"conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"tree":false,"lazyLoad":false,"autoAdjust":false,"id":"eyy4ce"},{"key":"Section1C-Company1","type":"textfield","input":true,"label":"Company, if applicable","tableView":false,"hideOnChildrenHidden":false,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":{"type":"input"},"attributes":{},"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false,"minLength":"","maxLength":"","pattern":""},"conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"mask":false,"inputType":"text","inputFormat":"plain","inputMask":"","displayMask":"","spellcheck":true,"truncateMultipleSpaces":false,"id":"ex0z6ex"},{"key":"Section1C-AddressColumn1","type":"columns","input":false,"label":"Columns - 2","columns":[{"pull":0,"push":0,"size":"md","width":6,"offset":0,"components":[{"key":"Section1C-Address1","type":"textfield","input":true,"label":"Address","validate":{"required":true,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false,"minLength":"","maxLength":"","pattern":""},"tableView":false,"hideOnChildrenHidden":false,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":{"type":"input"},"attributes":{},"validateOn":"change","conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"mask":false,"inputType":"text","inputFormat":"plain","inputMask":"","displayMask":"","spellcheck":true,"truncateMultipleSpaces":false,"id":"eks23e"}],"currentWidth":6},{"pull":0,"push":0,"size":"md","width":6,"offset":0,"components":[{"key":"Section1C-City1","type":"textfield","input":true,"label":"City","validate":{"required":true,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false,"minLength":"","maxLength":"","pattern":""},"tableView":false,"hideOnChildrenHidden":false,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":{"type":"input"},"attributes":{},"validateOn":"change","conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"mask":false,"inputType":"text","inputFormat":"plain","inputMask":"","displayMask":"","spellcheck":true,"truncateMultipleSpaces":false,"id":"e026ykm"}],"currentWidth":6}],"tableView":false,"hideOnChildrenHidden":false,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":false,"hidden":false,"clearOnHide":false,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"attributes":{},"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false},"conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"tree":false,"lazyLoad":false,"autoAdjust":false,"id":"eb0na63"},{"key":"Section1A-AddressColumn4","type":"columns","input":false,"label":"Columns - 3","columns":[{"pull":0,"push":0,"size":"md","width":4,"offset":0,"components":[{"key":"Section1A-ProvinceState3","type":"textfield","input":true,"label":"Province","validate":{"required":true,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false,"minLength":"","maxLength":"","pattern":""},"tableView":false,"hideOnChildrenHidden":false,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":{"type":"input"},"attributes":{},"validateOn":"change","conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"mask":false,"inputType":"text","inputFormat":"plain","inputMask":"","displayMask":"","spellcheck":true,"truncateMultipleSpaces":false,"id":"er0guec"}],"currentWidth":4},{"pull":0,"push":0,"size":"md","width":4,"offset":0,"components":[{"key":"Section1A-Country3","type":"textfield","input":true,"label":"Country","validate":{"required":true,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false,"minLength":"","maxLength":"","pattern":""},"tableView":false,"hideOnChildrenHidden":false,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":{"type":"input"},"attributes":{},"validateOn":"change","conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"mask":false,"inputType":"text","inputFormat":"plain","inputMask":"","displayMask":"","spellcheck":true,"truncateMultipleSpaces":false,"id":"ex5fali"}],"currentWidth":4},{"pull":0,"push":0,"size":"md","width":4,"offset":0,"components":[{"key":"Section1A-PostalZipCode3","type":"textfield","input":true,"label":"Postal Code","validate":{"required":true,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false,"minLength":"","maxLength":"","pattern":""},"tableView":false,"hideOnChildrenHidden":false,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":{"type":"input"},"attributes":{},"validateOn":"change","conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"mask":false,"inputType":"text","inputFormat":"plain","inputMask":"","displayMask":"","spellcheck":true,"truncateMultipleSpaces":false,"id":"e5v9qcs"}],"currentWidth":4}],"tableView":false,"hideOnChildrenHidden":false,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":false,"hidden":false,"clearOnHide":false,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"attributes":{},"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false},"conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"tree":false,"lazyLoad":false,"autoAdjust":false,"id":"ek9ixdb"},{"key":"Section1C-ContactInfoColumn1","type":"columns","input":false,"label":"Columns - 2","columns":[{"pull":0,"push":0,"size":"md","width":6,"offset":0,"components":[{"key":"phoneNumber1","type":"textfield","input":true,"label":"Phone Number","validate":{"required":true,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false,"minLength":"","maxLength":"","pattern":""},"tableView":false,"hideOnChildrenHidden":false,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":{"type":"input"},"attributes":{},"validateOn":"change","conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"mask":false,"inputType":"text","inputFormat":"plain","inputMask":"","displayMask":"","spellcheck":true,"truncateMultipleSpaces":false,"id":"etn06w9"}],"currentWidth":6},{"pull":0,"push":0,"size":"md","width":6,"offset":0,"components":[{"label":"Email","tableView":true,"validate":{"required":true,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false,"minLength":"","maxLength":"","pattern":""},"key":"contactPersonEmailAddress1","type":"email","input":true,"delimiter":false,"requireDecimal":false,"hideOnChildrenHidden":false,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":{"type":"input"},"attributes":{},"validateOn":"change","conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"mask":false,"inputType":"email","inputFormat":"plain","inputMask":"","displayMask":"","spellcheck":true,"truncateMultipleSpaces":false,"kickbox":{"enabled":false},"id":"elk9b5f"}],"currentWidth":6}],"tableView":false,"hideOnChildrenHidden":false,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":false,"hidden":false,"clearOnHide":false,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"attributes":{},"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false},"conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"tree":false,"lazyLoad":false,"autoAdjust":false,"id":"esdtr6j"}],"placeholder":"","prefix":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":false,"clearOnHide":false,"refreshOn":"","redrawOn":"","dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"allowMultipleMasks":false,"addons":[],"tree":false,"lazyLoad":false,"id":"eccpvcc"},{"title":"Approved Professional","theme":"default","tooltip":"","customClass":"","collapsible":false,"hidden":false,"hideLabel":false,"disabled":false,"modalEdit":false,"key":"panel1","tags":[],"properties":{},"customConditional":"","conditional":{"json":"","show":null,"when":null,"eq":""},"logic":[],"attributes":{},"overlay":{"style":"","page":"","left":"","top":"","width":"","height":""},"type":"panel","label":"Panel","breadcrumb":"default","tabindex":"","input":false,"tableView":false,"components":[{"key":"Section1B-NameColumn1","type":"columns","input":false,"label":"Section1B-NameColumn","columns":[{"pull":0,"push":0,"size":"md","width":6,"offset":0,"components":[{"key":"Section1B-LastName1","type":"textfield","input":true,"label":"Last Name","tableView":false,"hideOnChildrenHidden":false,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":{"type":"input"},"attributes":{},"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false,"minLength":"","maxLength":"","pattern":""},"conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"mask":false,"inputType":"text","inputFormat":"plain","inputMask":"","displayMask":"","spellcheck":true,"truncateMultipleSpaces":false,"id":"epx0m9r"}],"currentWidth":6},{"pull":0,"push":0,"size":"md","width":6,"offset":0,"components":[{"key":"Section1B-FirstName1","type":"textfield","input":true,"label":"First Name","tableView":false,"hideOnChildrenHidden":false,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":{"type":"input"},"attributes":{},"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false,"minLength":"","maxLength":"","pattern":""},"conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"mask":false,"inputType":"text","inputFormat":"plain","inputMask":"","displayMask":"","spellcheck":true,"truncateMultipleSpaces":false,"id":"e5zc8ym"}],"currentWidth":6}],"tableView":false,"hideOnChildrenHidden":false,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":false,"hidden":false,"clearOnHide":false,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"attributes":{},"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false},"conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"tree":false,"lazyLoad":false,"autoAdjust":false,"id":"ebe00dr"},{"key":"Section1C-Company2","type":"textfield","input":true,"label":"Company, if applicable","tableView":false,"hideOnChildrenHidden":false,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":{"type":"input"},"attributes":{},"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false,"minLength":"","maxLength":"","pattern":""},"conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"mask":false,"inputType":"text","inputFormat":"plain","inputMask":"","displayMask":"","spellcheck":true,"truncateMultipleSpaces":false,"id":"ehx2r3c"},{"key":"Section1C-AddressColumn2","type":"columns","input":false,"label":"Columns - 2","columns":[{"pull":0,"push":0,"size":"md","width":6,"offset":0,"components":[{"key":"Section1C-Address2","type":"textfield","input":true,"label":"Address","validate":{"required":true,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false,"minLength":"","maxLength":"","pattern":""},"tableView":false,"hideOnChildrenHidden":false,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":{"type":"input"},"attributes":{},"validateOn":"change","conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"mask":false,"inputType":"text","inputFormat":"plain","inputMask":"","displayMask":"","spellcheck":true,"truncateMultipleSpaces":false,"id":"eviqouu"}],"currentWidth":6},{"pull":0,"push":0,"size":"md","width":6,"offset":0,"components":[{"key":"Section1C-City2","type":"textfield","input":true,"label":"City","validate":{"required":true,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false,"minLength":"","maxLength":"","pattern":""},"tableView":false,"hideOnChildrenHidden":false,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":{"type":"input"},"attributes":{},"validateOn":"change","conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"mask":false,"inputType":"text","inputFormat":"plain","inputMask":"","displayMask":"","spellcheck":true,"truncateMultipleSpaces":false,"id":"ej96lic"}],"currentWidth":6}],"tableView":false,"hideOnChildrenHidden":false,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":false,"hidden":false,"clearOnHide":false,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"attributes":{},"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false},"conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"tree":false,"lazyLoad":false,"autoAdjust":false,"id":"eo3ukfa"},{"key":"Section1A-AddressColumn5","type":"columns","input":false,"label":"Columns - 3","columns":[{"pull":0,"push":0,"size":"md","width":4,"offset":0,"components":[{"key":"Section1A-ProvinceState4","type":"textfield","input":true,"label":"Province","validate":{"required":true,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false,"minLength":"","maxLength":"","pattern":""},"tableView":false,"hideOnChildrenHidden":false,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":{"type":"input"},"attributes":{},"validateOn":"change","conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"mask":false,"inputType":"text","inputFormat":"plain","inputMask":"","displayMask":"","spellcheck":true,"truncateMultipleSpaces":false,"id":"euw0tfs"}],"currentWidth":4},{"pull":0,"push":0,"size":"md","width":4,"offset":0,"components":[{"key":"Section1A-Country4","type":"textfield","input":true,"label":"Country","validate":{"required":true,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false,"minLength":"","maxLength":"","pattern":""},"tableView":false,"hideOnChildrenHidden":false,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":{"type":"input"},"attributes":{},"validateOn":"change","conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"mask":false,"inputType":"text","inputFormat":"plain","inputMask":"","displayMask":"","spellcheck":true,"truncateMultipleSpaces":false,"id":"eq6im"}],"currentWidth":4},{"pull":0,"push":0,"size":"md","width":4,"offset":0,"components":[{"key":"Section1A-PostalZipCode4","type":"textfield","input":true,"label":"Postal Code","validate":{"required":true,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false,"minLength":"","maxLength":"","pattern":""},"tableView":false,"hideOnChildrenHidden":false,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":{"type":"input"},"attributes":{},"validateOn":"change","conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"mask":false,"inputType":"text","inputFormat":"plain","inputMask":"","displayMask":"","spellcheck":true,"truncateMultipleSpaces":false,"id":"ezn76c"}],"currentWidth":4}],"tableView":false,"hideOnChildrenHidden":false,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":false,"hidden":false,"clearOnHide":false,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"attributes":{},"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false},"conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"tree":false,"lazyLoad":false,"autoAdjust":false,"id":"ed95jch"},{"key":"Section1C-ContactInfoColumn2","type":"columns","input":false,"label":"Columns - 2","columns":[{"pull":0,"push":0,"size":"md","width":6,"offset":0,"components":[{"key":"phoneNumber3","type":"textfield","input":true,"label":"Phone Number","validate":{"required":true,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false,"minLength":"","maxLength":"","pattern":""},"tableView":false,"hideOnChildrenHidden":false,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":{"type":"input"},"attributes":{},"validateOn":"change","conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"mask":false,"inputType":"text","inputFormat":"plain","inputMask":"","displayMask":"","spellcheck":true,"truncateMultipleSpaces":false,"id":"epk5n6b"}],"currentWidth":6},{"pull":0,"push":0,"size":"md","width":6,"offset":0,"components":[{"label":"Email","tableView":true,"validate":{"required":true,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false,"minLength":"","maxLength":"","pattern":""},"key":"contactPersonEmailAddress2","type":"email","input":true,"delimiter":false,"requireDecimal":false,"hideOnChildrenHidden":false,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":{"type":"input"},"attributes":{},"validateOn":"change","conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"mask":false,"inputType":"email","inputFormat":"plain","inputMask":"","displayMask":"","spellcheck":true,"truncateMultipleSpaces":false,"kickbox":{"enabled":false},"id":"e2vlpc"}],"currentWidth":6}],"tableView":false,"hideOnChildrenHidden":false,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":false,"hidden":false,"clearOnHide":false,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"attributes":{},"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false},"conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"tree":false,"lazyLoad":false,"autoAdjust":false,"id":"e4f2vgv"},{"label":"Professional Designation","labelPosition":"top","placeholder":"","description":"","tooltip":"","prefix":"","suffix":"","widget":{"type":"input"},"inputMask":"","displayMask":"","allowMultipleMasks":false,"customClass":"","tabindex":"","autocomplete":"","hidden":false,"hideLabel":false,"showWordCount":false,"showCharCount":false,"mask":false,"autofocus":false,"spellcheck":true,"disabled":false,"tableView":true,"modalEdit":false,"multiple":false,"persistent":true,"inputFormat":"plain","protected":false,"dbIndex":false,"case":"","truncateMultipleSpaces":false,"encrypted":false,"redrawOn":"","clearOnHide":true,"customDefaultValue":"","calculateValue":"","calculateServer":false,"allowCalculateOverride":false,"validateOn":"change","validate":{"required":false,"pattern":"","customMessage":"","custom":"","customPrivate":false,"json":"","minLength":"","maxLength":"","strictDateValidation":false,"multiple":false,"unique":false},"unique":false,"errorLabel":"","errors":"","key":"professionalDesignation","tags":[],"properties":{},"conditional":{"show":null,"when":null,"eq":"","json":""},"customConditional":"","logic":[],"attributes":{},"overlay":{"style":"","page":"","left":"","top":"","width":"","height":""},"type":"textfield","input":true,"refreshOn":"","dataGridLabel":false,"addons":[],"inputType":"text","id":"e4erht","defaultValue":""},{"label":"Scope of review completed by Approved Professional (eg. arm's length risk-based standards review)","labelPosition":"top","placeholder":"","description":"","tooltip":"","prefix":"","suffix":"","widget":{"type":"input"},"displayMask":"","editor":"","autoExpand":false,"customClass":"","tabindex":"","autocomplete":"","hidden":false,"hideLabel":false,"showWordCount":false,"showCharCount":false,"autofocus":false,"spellcheck":true,"disabled":false,"tableView":true,"modalEdit":false,"multiple":false,"persistent":true,"inputFormat":"html","protected":false,"dbIndex":false,"case":"","truncateMultipleSpaces":false,"encrypted":false,"redrawOn":"","clearOnHide":true,"customDefaultValue":"","calculateValue":"","calculateServer":false,"allowCalculateOverride":false,"validateOn":"change","validate":{"required":false,"pattern":"","customMessage":"","custom":"","customPrivate":false,"json":"","minLength":"","maxLength":"","minWords":"","maxWords":"","strictDateValidation":false,"multiple":false,"unique":false},"unique":false,"errorLabel":"","errors":"","key":"scopeOfReviewCompletedByApprovedProfessionalEgArmsLengthRiskBasedStandardsReview","tags":[],"properties":{},"conditional":{"show":null,"when":null,"eq":"","json":""},"customConditional":"","logic":[],"attributes":{},"overlay":{"style":"","page":"","left":"","top":"","width":"","height":""},"type":"textarea","rows":3,"wysiwyg":false,"input":true,"refreshOn":"","dataGridLabel":false,"allowMultipleMasks":false,"addons":[],"mask":false,"inputType":"text","inputMask":"","fixedSize":true,"id":"e3504l8","defaultValue":""}],"placeholder":"","prefix":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":false,"clearOnHide":false,"refreshOn":"","redrawOn":"","dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"allowMultipleMasks":false,"addons":[],"tree":false,"lazyLoad":false,"id":"euyo4sn"}],"collapsible":true,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":false,"hidden":false,"clearOnHide":false,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"attributes":{},"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false},"conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"tree":false,"lazyLoad":false,"theme":"default","breadcrumb":"default","id":"e52kzii","keyModified":true},{"html":"

Part 2 - Executive Summary

","label":"Content","customClass":"","refreshOnChange":false,"hidden":false,"modalEdit":false,"key":"content4","tags":[],"properties":{},"conditional":{"show":null,"when":null,"eq":"","json":""},"customConditional":"","logic":[],"attributes":{},"overlay":{"style":"","page":"","left":"","top":"","width":"","height":""},"type":"content","input":false,"tableView":false,"placeholder":"","prefix":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"clearOnHide":true,"refreshOn":"","redrawOn":"","dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"allowMultipleMasks":false,"addons":[],"id":"eip4sw7"},{"title":"Section II - EXECUTIVE SUMMARY","theme":"default","tooltip":"","customClass":"","collapsible":true,"hidden":false,"hideLabel":false,"disabled":false,"modalEdit":false,"key":"Section1-ContactInformation1","tags":[],"properties":{},"customConditional":"","conditional":{"json":"","show":null,"when":null,"eq":""},"logic":[],"attributes":{},"overlay":{"style":"","page":"","left":"","top":"","width":"","height":""},"type":"panel","label":"","breadcrumb":"default","tabindex":"","collapsed":false,"input":false,"tableView":false,"keyModified":true,"components":[{"html":"

To be completed by the approved professionals reviewing the site investigation, risk assessment, remediation or confirmation of remediation reports.

","label":"Content","customClass":"","refreshOnChange":false,"hidden":false,"modalEdit":false,"key":"content2","tags":[],"properties":{},"conditional":{"show":null,"when":null,"eq":"","json":""},"customConditional":"","logic":[],"attributes":{},"overlay":{"style":"","page":"","left":"","top":"","width":"","height":""},"type":"content","input":false,"placeholder":"","prefix":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"clearOnHide":true,"refreshOn":"","redrawOn":"","tableView":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"allowMultipleMasks":false,"addons":[],"id":"epyqnv"},{"label":"Subject Site Locations","reorder":false,"addAnotherPosition":"bottom","layoutFixed":false,"enableRowGroups":false,"initEmpty":false,"tableView":false,"defaultValue":[{"siteId":"","siteCommonName":"","section2LatitudeDegrees":"","section2LatitudeMinutes":"","section2LatitudeSeconds":"","section2LongitudeDegrees":"","section2LongitudeMinutes":"","section2LongitudeSeconds":""}],"key":"dataGrid","type":"datagrid","input":true,"components":[{"title":"Subject Site Location","collapsible":false,"key":"panel2","type":"panel","label":"Site","input":false,"tableView":false,"components":[{"label":"Site ID","tableView":true,"key":"siteId","type":"textfield","input":true,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":{"type":"input"},"attributes":{},"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false,"minLength":"","maxLength":"","pattern":""},"conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"mask":false,"inputType":"text","inputFormat":"plain","inputMask":"","displayMask":"","spellcheck":true,"truncateMultipleSpaces":false,"id":"etpvslk"},{"label":"Site Common Name","autoExpand":false,"tableView":true,"key":"siteCommonName","type":"textarea","input":true,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":{"type":"input"},"attributes":{},"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false,"minLength":"","maxLength":"","pattern":"","minWords":"","maxWords":""},"conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"mask":false,"inputType":"text","inputFormat":"html","inputMask":"","displayMask":"","spellcheck":true,"truncateMultipleSpaces":false,"rows":3,"wysiwyg":false,"editor":"","fixedSize":true,"id":"edrol6"},{"key":"heading4","tag":"h4","type":"htmlelement","input":false,"label":"Heading","content":"Latitude","tableView":false,"headingSize":"h1","placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":false,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"attributes":{},"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false},"conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"attrs":[],"id":"e8b5q86"},{"key":"Section2-LatitudeColumn","type":"columns","input":false,"label":"Columns - 3","columns":[{"pull":0,"push":0,"size":"md","width":4,"offset":0,"components":[{"key":"section2LatitudeDegrees","type":"textfield","input":true,"label":"Degrees","validate":{"required":true,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false,"minLength":"","maxLength":"","pattern":""},"tableView":false,"hideOnChildrenHidden":false,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":{"type":"input"},"attributes":{},"validateOn":"change","conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"mask":false,"inputType":"text","inputFormat":"plain","inputMask":"","displayMask":"","spellcheck":true,"truncateMultipleSpaces":false,"id":"ef4s1gv"}],"currentWidth":4},{"pull":0,"push":0,"size":"md","width":4,"offset":0,"components":[{"key":"section2LatitudeMinutes","type":"textfield","input":true,"label":"Minutes","validate":{"required":true,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false,"minLength":"","maxLength":"","pattern":""},"tableView":false,"hideOnChildrenHidden":false,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":{"type":"input"},"attributes":{},"validateOn":"change","conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"mask":false,"inputType":"text","inputFormat":"plain","inputMask":"","displayMask":"","spellcheck":true,"truncateMultipleSpaces":false,"id":"evm2u7"}],"currentWidth":4},{"pull":0,"push":0,"size":"md","width":4,"offset":0,"components":[{"key":"section2LatitudeSeconds","type":"textfield","input":true,"label":"Seconds","validate":{"required":true,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false,"minLength":"","maxLength":"","pattern":""},"tableView":false,"hideOnChildrenHidden":false,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":{"type":"input"},"attributes":{},"validateOn":"change","conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"mask":false,"inputType":"text","inputFormat":"plain","inputMask":"","displayMask":"","spellcheck":true,"truncateMultipleSpaces":false,"id":"ezwdsq8"}],"currentWidth":4}],"tableView":false,"hideOnChildrenHidden":false,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":false,"hidden":false,"clearOnHide":false,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"attributes":{},"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false},"conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"tree":false,"lazyLoad":false,"autoAdjust":false,"id":"elda0gq"},{"key":"heading5","tag":"h4","type":"htmlelement","input":false,"label":"Heading","content":"Longitude","tableView":false,"headingSize":"h1","placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":false,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"attributes":{},"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false},"conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"attrs":[],"id":"en3p8e9"},{"key":"Section2-LongitudeColumn","type":"columns","input":false,"label":"Columns - 3","columns":[{"pull":0,"push":0,"size":"md","width":4,"offset":0,"components":[{"key":"section2LongitudeDegrees","type":"textfield","input":true,"label":"Degrees","validate":{"required":true,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false,"minLength":"","maxLength":"","pattern":""},"tableView":false,"hideOnChildrenHidden":false,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":{"type":"input"},"attributes":{},"validateOn":"change","conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"mask":false,"inputType":"text","inputFormat":"plain","inputMask":"","displayMask":"","spellcheck":true,"truncateMultipleSpaces":false,"id":"e8hqhvc"}],"currentWidth":4},{"pull":0,"push":0,"size":"md","width":4,"offset":0,"components":[{"key":"section2LongitudeMinutes","type":"textfield","input":true,"label":"Minutes","validate":{"required":true,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false,"minLength":"","maxLength":"","pattern":""},"tableView":false,"hideOnChildrenHidden":false,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":{"type":"input"},"attributes":{},"validateOn":"change","conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"mask":false,"inputType":"text","inputFormat":"plain","inputMask":"","displayMask":"","spellcheck":true,"truncateMultipleSpaces":false,"id":"er4jc8h"}],"currentWidth":4},{"pull":0,"push":0,"size":"md","width":4,"offset":0,"components":[{"key":"section2LongitudeSeconds","type":"textfield","input":true,"label":"Seconds","validate":{"required":true,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false,"minLength":"","maxLength":"","pattern":""},"tableView":false,"hideOnChildrenHidden":false,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":{"type":"input"},"attributes":{},"validateOn":"change","conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"mask":false,"inputType":"text","inputFormat":"plain","inputMask":"","displayMask":"","spellcheck":true,"truncateMultipleSpaces":false,"id":"ekx2hxj"}],"currentWidth":4}],"tableView":false,"hideOnChildrenHidden":false,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":false,"hidden":false,"clearOnHide":false,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"attributes":{},"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false},"conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"tree":false,"lazyLoad":false,"autoAdjust":false,"id":"eco0438"}],"id":"edowey0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000","placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":false,"hidden":false,"clearOnHide":false,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"attributes":{},"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false},"conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"tree":false,"lazyLoad":false,"theme":"default","breadcrumb":"default"}],"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"attributes":{},"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false},"conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"tree":true,"lazyLoad":false,"disableAddingRemovingRows":false,"id":"evusv2q"},{"key":"heading3","tag":"h3","type":"htmlelement","input":false,"label":"Heading","content":"Coordinates for the centre of the site:","tableView":false,"headingSize":"h1","placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":false,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"attributes":{},"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false},"conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"attrs":[],"id":"ee72tiv"},{"key":"content","html":"

Attention:

A separate map with appropriate scale showing the location and boundaries of the site must be included with an SDS submission.

","type":"content","input":false,"label":"Static Text","tableView":false,"hideOnChildrenHidden":false,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"attributes":{},"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false},"conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"id":"e5fmbyj"},{"key":"iUnderstandAndWillAttachAMapWithMySubmission","type":"checkbox","input":true,"label":"I will include a map with my submission","validate":{"required":true,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false},"tableView":false,"defaultValue":false,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":true,"labelPosition":"right","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"attributes":{},"validateOn":"change","conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"inputType":"checkbox","value":"","name":"","id":"ekbr5fb"},{"label":"Land ownership (Source Site) Please select all that apply:","optionsLabelPosition":"right","tableView":false,"values":[{"label":"Legally Titled, Registered Property","value":"legallyTitled","shortcut":""},{"label":"Untitled Crown Land","value":"untitledCrown","shortcut":""},{"label":"Untitled Municipal Land","value":"untitledMunicipal","shortcut":""}],"key":"landOwnershipSourceSitePleaseSelectAllThatApply","type":"selectboxes","input":true,"inputType":"checkbox","placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"attributes":{},"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false,"onlyAvailableItems":false},"conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"fieldSet":false,"inline":false,"id":"e49h9q"},{"title":"For Legally Titled, Registered Property (Source Site)","theme":"default","tooltip":"","customClass":"","collapsible":false,"hidden":false,"hideLabel":false,"disabled":false,"modalEdit":false,"key":"forLegallyTitledRegisteredProperty-panel","tags":[],"properties":{},"customConditional":"","conditional":{"json":"","show":true,"when":"landOwnershipSourceSitePleaseSelectAllThatApply","eq":"legallyTitled"},"logic":[],"attributes":{},"overlay":{"style":"","page":"","left":"","top":"","width":"","height":""},"type":"panel","label":"","breadcrumb":"default","tabindex":"","input":false,"collapsed":false,"tableView":false,"components":[{"key":"Section2-LegallyTitled-Address","type":"textfield","input":true,"label":"Site Address","validate":{"required":true,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false,"minLength":"","maxLength":"","pattern":""},"tableView":false,"placeholder":"or nearest street name/intersection if no address is assigned","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":{"type":"input"},"attributes":{},"validateOn":"change","conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"mask":false,"inputType":"text","inputFormat":"plain","inputMask":"","displayMask":"","spellcheck":true,"truncateMultipleSpaces":false,"id":"emyfj89"},{"key":"Section2-LegallyTitled-AddressColumn","type":"columns","input":false,"label":"Columns - 2","columns":[{"pull":0,"push":0,"size":"md","width":6,"offset":0,"components":[{"key":"Section2-LegallyTitled-City","type":"textfield","input":true,"label":"City","validate":{"required":true,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false,"minLength":"","maxLength":"","pattern":""},"tableView":false,"hideOnChildrenHidden":false,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":{"type":"input"},"attributes":{},"validateOn":"change","conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"mask":false,"inputType":"text","inputFormat":"plain","inputMask":"","displayMask":"","spellcheck":true,"truncateMultipleSpaces":false,"id":"ev16eg9"}],"currentWidth":6},{"pull":0,"push":0,"size":"md","width":6,"offset":0,"components":[{"key":"Section2-LegallyTitled-PostalZipCode","type":"textfield","input":true,"label":"Postal Code","validate":{"required":true,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false,"minLength":"","maxLength":"","pattern":""},"tableView":false,"hideOnChildrenHidden":false,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":{"type":"input"},"attributes":{},"validateOn":"change","conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"mask":false,"inputType":"text","inputFormat":"plain","inputMask":"","displayMask":"","spellcheck":true,"truncateMultipleSpaces":false,"id":"eftbs3h"}],"currentWidth":6}],"tableView":false,"hideOnChildrenHidden":false,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":false,"hidden":false,"clearOnHide":false,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"attributes":{},"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false},"conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"tree":false,"lazyLoad":false,"autoAdjust":false,"id":"eavg5jx"},{"label":"Enter PIDs and Land Descriptions below","tooltip":"Select the 'X' button to delete an entry.","reorder":false,"addAnotherPosition":"bottom","layoutFixed":false,"enableRowGroups":false,"initEmpty":false,"hideLabel":true,"tableView":false,"defaultValue":[{"Section2-LegallyTitled-PID":"","SiteAddress-LegallyTitled-PID":"","Section2-LegallyTitled-LandDescription":"","SiteAddress-LegallyTitled-LandDescription":""}],"validate":{"required":true,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false},"key":"Section2-LegallyTitled-PIDColumn","type":"datagrid","input":true,"components":[{"title":"Entries","collapsible":false,"hideLabel":true,"key":"panel1","type":"panel","label":"Panel","input":false,"tableView":false,"components":[{"key":"cols3","type":"columns","input":false,"label":"Columns - 2","columns":[{"pull":0,"push":0,"size":"md","width":6,"offset":0,"components":[{"key":"Section2-LegallyTitled-PID","type":"textfield","input":true,"label":"PID","validate":{"required":true,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false,"minLength":"","maxLength":"","pattern":""},"inputMask":"999-999-999","tableView":true,"hideOnChildrenHidden":false,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":{"type":"input"},"attributes":{},"validateOn":"change","conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"mask":false,"inputType":"text","inputFormat":"plain","displayMask":"","spellcheck":true,"truncateMultipleSpaces":false,"id":"eaoeej"}],"currentWidth":6},{"pull":0,"push":0,"size":"md","width":6,"offset":0,"components":[],"currentWidth":6}],"tableView":false,"hideOnChildrenHidden":false,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":false,"hidden":false,"clearOnHide":false,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"attributes":{},"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false},"conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"tree":false,"lazyLoad":false,"autoAdjust":false,"id":"e35et7b"},{"key":"Section2-LegallyTitled-LandDescription","type":"textarea","input":true,"label":"Land Description","validate":{"required":true,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false,"minLength":"","maxLength":"","pattern":"","minWords":"","maxWords":""},"tableView":true,"autoExpand":false,"inputFormat":"plain","placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":{"type":"input"},"attributes":{},"validateOn":"change","conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"mask":false,"inputType":"text","inputMask":"","displayMask":"","spellcheck":true,"truncateMultipleSpaces":false,"rows":3,"wysiwyg":false,"editor":"","fixedSize":true,"id":"eqnyhh"}],"id":"eskogm00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000","placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":false,"hidden":false,"clearOnHide":false,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"attributes":{},"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false},"conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"tree":false,"lazyLoad":false,"theme":"default","breadcrumb":"default"}],"hideOnChildrenHidden":false,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"attributes":{},"validateOn":"change","conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"tree":true,"lazyLoad":false,"disableAddingRemovingRows":false,"id":"eyxh9qa"}],"placeholder":"","prefix":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":false,"clearOnHide":false,"refreshOn":"","redrawOn":"","dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"allowMultipleMasks":false,"addons":[],"tree":false,"lazyLoad":false,"id":"esaica"},{"title":"For Untitled Crown Land (Source Site)","theme":"default","tooltip":"","customClass":"","collapsible":false,"hidden":false,"hideLabel":false,"disabled":false,"modalEdit":false,"key":"Section2-forUntitledCrownLand","tags":[],"properties":{},"customConditional":"","conditional":{"json":"","show":true,"when":"landOwnershipSourceSitePleaseSelectAllThatApply","eq":"untitledCrown"},"logic":[],"attributes":{},"overlay":{"style":"","page":"","left":"","top":"","width":"","height":""},"type":"panel","label":"","breadcrumb":"default","tabindex":"","input":false,"collapsed":false,"tableView":false,"components":[{"key":"Section2-UntitledCrown-PINColumn","type":"datagrid","input":true,"label":"","reorder":false,"hideLabel":true,"initEmpty":false,"tableView":false,"components":[{"title":"Untitled Crown Land","theme":"default","tooltip":"","customClass":"","collapsible":false,"hidden":false,"hideLabel":true,"dataGridLabel":false,"disabled":false,"modalEdit":false,"key":"panel1","tags":[],"properties":{},"customConditional":"","conditional":{"json":"","show":null,"when":null,"eq":""},"logic":[],"attributes":{},"overlay":{"style":"","page":"","left":"","top":"","width":"","height":""},"type":"panel","label":"Crown Land","breadcrumb":"default","tabindex":"","input":false,"tableView":false,"components":[{"key":"cols3","type":"columns","input":false,"label":"Columns - 2","columns":[{"pull":0,"push":0,"size":"md","width":6,"offset":0,"components":[{"key":"Section2-LegallyTitled-PID","type":"textfield","input":true,"label":"PIN","validate":{"required":true,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false,"minLength":"","maxLength":"","pattern":""},"tableView":true,"hideOnChildrenHidden":false,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":{"type":"input"},"attributes":{},"validateOn":"change","conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"mask":false,"inputType":"text","inputFormat":"plain","inputMask":"","displayMask":"","spellcheck":true,"truncateMultipleSpaces":false,"id":"e0zxpd"}],"currentWidth":6},{"pull":0,"push":0,"size":"md","width":6,"offset":0,"components":[],"currentWidth":6}],"tableView":false,"hideOnChildrenHidden":false,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":false,"hidden":false,"clearOnHide":false,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"attributes":{},"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false},"conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"tree":false,"lazyLoad":false,"autoAdjust":false,"id":"eohw9y"},{"key":"Section2-LegallyTitled-LandDescription","type":"textarea","input":true,"label":"Land Description or metes and bounds","validate":{"required":true,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false,"minLength":"","maxLength":"","pattern":"","minWords":"","maxWords":""},"tableView":true,"autoExpand":false,"inputFormat":"plain","placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":{"type":"input"},"attributes":{},"validateOn":"change","conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"mask":false,"inputType":"text","inputMask":"","displayMask":"","spellcheck":true,"truncateMultipleSpaces":false,"rows":3,"wysiwyg":false,"editor":"","fixedSize":true,"id":"e9sdlfc"}],"placeholder":"","prefix":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":false,"clearOnHide":false,"refreshOn":"","redrawOn":"","labelPosition":"top","description":"","errorLabel":"","autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"allowMultipleMasks":false,"addons":[],"tree":false,"lazyLoad":false,"id":"e0cqfrg00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000"}],"layoutFixed":false,"defaultValue":[{"Section2-LegallyTitled-PID":"","SiteAddress-UntitledCrown-PIN":"","Section2-LegallyTitled-LandDescription":"","SiteAddress-UntitledCrown-LandDescription":""}],"enableRowGroups":false,"addAnotherPosition":"bottom","placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"attributes":{},"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false},"conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"tree":true,"lazyLoad":false,"disableAddingRemovingRows":false,"id":"eg4uvab"},{"label":"And if available:","reorder":false,"addAnotherPosition":"bottom","layoutFixed":false,"enableRowGroups":false,"initEmpty":false,"hideLabel":true,"tableView":false,"defaultValue":[{"Section2-UntitledCrown-CrownLandFileNumbers":"","SiteAddress-UntitledCrown-CrownLandFileNumbers":""}],"key":"Section2-UntitledCrownLand-FileNumberColumn","type":"datagrid","input":true,"components":[{"key":"Section2-UntitledCrown-CrownLandFileNumbers","type":"textfield","input":true,"label":"Crown Land File Numbers","tableView":true,"id":"elizdoh00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000","placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":{"type":"input"},"attributes":{},"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false,"minLength":"","maxLength":"","pattern":""},"conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"mask":false,"inputType":"text","inputFormat":"plain","inputMask":"","displayMask":"","spellcheck":true,"truncateMultipleSpaces":false}],"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"attributes":{},"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false},"conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"tree":true,"lazyLoad":false,"disableAddingRemovingRows":false,"id":"eeq9myk"}],"placeholder":"","prefix":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":false,"clearOnHide":false,"refreshOn":"","redrawOn":"","dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"allowMultipleMasks":false,"addons":[],"tree":false,"lazyLoad":false,"id":"eids8qa"},{"title":"For untitled municipal land (Source Site)","theme":"default","tooltip":"","customClass":"","collapsible":false,"hidden":false,"hideLabel":false,"disabled":false,"modalEdit":false,"key":"Section2-forUntitledCrownLand1","tags":[],"properties":{},"customConditional":"","conditional":{"json":"","show":true,"when":"landOwnershipSourceSitePleaseSelectAllThatApply","eq":"untitledMunicipal"},"logic":[],"attributes":{},"overlay":{"style":"","page":"","left":"","top":"","width":"","height":""},"type":"panel","label":"","breadcrumb":"default","tabindex":"","input":false,"collapsed":false,"tableView":false,"components":[{"key":"Section2-LegallyTitled-LandDescription","type":"textarea","input":true,"label":"Land Description","validate":{"required":true,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false,"minLength":"","maxLength":"","pattern":"","minWords":"","maxWords":""},"tableView":true,"autoExpand":false,"inputFormat":"plain","placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":{"type":"input"},"attributes":{},"validateOn":"change","conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"mask":false,"inputType":"text","inputMask":"","displayMask":"","spellcheck":true,"truncateMultipleSpaces":false,"rows":3,"wysiwyg":false,"editor":"","fixedSize":true,"id":"eggg59w"}],"placeholder":"","prefix":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":false,"clearOnHide":false,"refreshOn":"","redrawOn":"","dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"allowMultipleMasks":false,"addons":[],"tree":false,"lazyLoad":false,"id":"e8g7fan"}],"placeholder":"","prefix":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":false,"clearOnHide":false,"refreshOn":"","redrawOn":"","dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"allowMultipleMasks":false,"addons":[],"tree":false,"lazyLoad":false,"id":"eqif3zi"},{"title":"Offsite Impacted Properties","theme":"default","tooltip":"","customClass":"","collapsible":false,"hidden":false,"hideLabel":false,"disabled":false,"modalEdit":false,"key":"offsiteImpactedProperties1","tags":[],"properties":{},"customConditional":"","conditional":{"json":"","show":null,"when":null,"eq":""},"logic":[],"attributes":{},"overlay":{"style":"","page":"","left":"","top":"","width":"","height":""},"type":"panel","label":"Panel","breadcrumb":"default","tabindex":"","input":false,"placeholder":"","prefix":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":false,"clearOnHide":false,"refreshOn":"","redrawOn":"","tableView":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"allowMultipleMasks":false,"addons":[],"tree":false,"lazyLoad":false,"components":[{"label":"Select one:","labelPosition":"top","optionsLabelPosition":"right","description":"","tooltip":"","customClass":"","tabindex":"","inline":false,"hidden":false,"hideLabel":false,"autofocus":false,"disabled":false,"tableView":false,"modalEdit":false,"values":[{"label":"Offsite impacted property(ies) - Provide information for each","value":"offsiteImpactedProperty","shortcut":""},{"label":"Not Applicable","value":"notApplicable","shortcut":""}],"dataType":"","persistent":true,"protected":false,"dbIndex":false,"encrypted":false,"redrawOn":"","clearOnHide":true,"customDefaultValue":"","calculateValue":"","calculateServer":false,"allowCalculateOverride":false,"validate":{"required":false,"onlyAvailableItems":false,"customMessage":"","custom":"","customPrivate":false,"json":"","strictDateValidation":false,"multiple":false,"unique":false},"errorLabel":"","errors":"","key":"offsiteImpactedProperties","tags":[],"properties":{},"conditional":{"show":null,"when":null,"eq":"","json":""},"customConditional":"","logic":[],"attributes":{},"overlay":{"style":"","page":"","left":"","top":"","width":"","height":""},"type":"radio","input":true,"placeholder":"","prefix":"","suffix":"","multiple":false,"unique":false,"refreshOn":"","dataGridLabel":false,"widget":null,"validateOn":"change","showCharCount":false,"showWordCount":false,"allowMultipleMasks":false,"addons":[],"inputType":"radio","fieldSet":false,"id":"eeowt5","defaultValue":""},{"label":"","reorder":false,"addAnotherPosition":"bottom","layoutFixed":false,"enableRowGroups":false,"initEmpty":false,"hideLabel":true,"tableView":false,"defaultValue":[{}],"key":"dataGrid1","conditional":{"show":true,"when":"offsiteImpactedProperties","eq":"offsiteImpactedProperty"},"type":"datagrid","input":true,"components":[{"title":"Coordinates for the centre of the impacted site","collapsible":false,"key":"Section2-forUntitledCrownLand2","conditional":{"show":true,"when":"offsiteImpactedProperties","eq":"offsiteImpactedProperty"},"type":"panel","label":"Impacted Sites","input":false,"collapsed":false,"tableView":false,"components":[{"key":"heading8","tag":"h4","type":"htmlelement","input":false,"label":"Heading","content":"Latitude","tableView":false,"headingSize":"h1","placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":false,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"attributes":{},"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false},"conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"attrs":[],"id":"e2ug45e"},{"key":"Section2-LatitudeColumn2","type":"columns","input":false,"label":"Columns - 3","columns":[{"pull":0,"push":0,"size":"md","width":4,"offset":0,"components":[{"key":"section2LatitudeDegrees2","type":"textfield","input":true,"label":"Degrees","validate":{"required":true,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false,"minLength":"","maxLength":"","pattern":""},"tableView":false,"hideOnChildrenHidden":false,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":{"type":"input"},"attributes":{},"validateOn":"change","conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"mask":false,"inputType":"text","inputFormat":"plain","inputMask":"","displayMask":"","spellcheck":true,"truncateMultipleSpaces":false,"id":"ey5x9g8"}],"currentWidth":4},{"pull":0,"push":0,"size":"md","width":4,"offset":0,"components":[{"key":"section2LatitudeMinutes2","type":"textfield","input":true,"label":"Minutes","validate":{"required":true,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false,"minLength":"","maxLength":"","pattern":""},"tableView":false,"hideOnChildrenHidden":false,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":{"type":"input"},"attributes":{},"validateOn":"change","conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"mask":false,"inputType":"text","inputFormat":"plain","inputMask":"","displayMask":"","spellcheck":true,"truncateMultipleSpaces":false,"id":"e1ftky"}],"currentWidth":4},{"pull":0,"push":0,"size":"md","width":4,"offset":0,"components":[{"key":"section2LatitudeSeconds2","type":"textfield","input":true,"label":"Seconds","validate":{"required":true,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false,"minLength":"","maxLength":"","pattern":""},"tableView":false,"hideOnChildrenHidden":false,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":{"type":"input"},"attributes":{},"validateOn":"change","conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"mask":false,"inputType":"text","inputFormat":"plain","inputMask":"","displayMask":"","spellcheck":true,"truncateMultipleSpaces":false,"id":"e4whd08"}],"currentWidth":4}],"tableView":false,"hideOnChildrenHidden":false,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":false,"hidden":false,"clearOnHide":false,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"attributes":{},"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false},"conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"tree":false,"lazyLoad":false,"autoAdjust":false,"id":"el90wzy"},{"key":"heading9","tag":"h4","type":"htmlelement","input":false,"label":"Heading","content":"Longitude","tableView":false,"headingSize":"h1","placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":false,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"attributes":{},"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false},"conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"attrs":[],"id":"ex8n8vc"},{"key":"Section2-LongitudeColumn2","type":"columns","input":false,"label":"Columns - 3","columns":[{"pull":0,"push":0,"size":"md","width":4,"offset":0,"components":[{"key":"section2LongitudeDegrees2","type":"textfield","input":true,"label":"Degrees","validate":{"required":true,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false,"minLength":"","maxLength":"","pattern":""},"tableView":false,"hideOnChildrenHidden":false,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":{"type":"input"},"attributes":{},"validateOn":"change","conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"mask":false,"inputType":"text","inputFormat":"plain","inputMask":"","displayMask":"","spellcheck":true,"truncateMultipleSpaces":false,"id":"eayewmr"}],"currentWidth":4},{"pull":0,"push":0,"size":"md","width":4,"offset":0,"components":[{"key":"section2LongitudeMinutes2","type":"textfield","input":true,"label":"Minutes","validate":{"required":true,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false,"minLength":"","maxLength":"","pattern":""},"tableView":false,"hideOnChildrenHidden":false,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":{"type":"input"},"attributes":{},"validateOn":"change","conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"mask":false,"inputType":"text","inputFormat":"plain","inputMask":"","displayMask":"","spellcheck":true,"truncateMultipleSpaces":false,"id":"eg5a19"}],"currentWidth":4},{"pull":0,"push":0,"size":"md","width":4,"offset":0,"components":[{"key":"section2LongitudeSeconds2","type":"textfield","input":true,"label":"Seconds","validate":{"required":true,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false,"minLength":"","maxLength":"","pattern":""},"tableView":false,"hideOnChildrenHidden":false,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":{"type":"input"},"attributes":{},"validateOn":"change","conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"mask":false,"inputType":"text","inputFormat":"plain","inputMask":"","displayMask":"","spellcheck":true,"truncateMultipleSpaces":false,"id":"evt9aao"}],"currentWidth":4}],"tableView":false,"hideOnChildrenHidden":false,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":false,"hidden":false,"clearOnHide":false,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"attributes":{},"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false},"conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"tree":false,"lazyLoad":false,"autoAdjust":false,"id":"e6o3au0o"}],"id":"erlwlrl0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000","placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":false,"hidden":false,"clearOnHide":false,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"attributes":{},"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"tree":false,"lazyLoad":false,"theme":"default","breadcrumb":"default"}],"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"attributes":{},"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"tree":true,"lazyLoad":false,"disableAddingRemovingRows":false,"id":"eef218"},{"html":"

Attention:

","label":"Content","customClass":"","refreshOnChange":false,"hidden":false,"modalEdit":false,"key":"content1","tags":[],"properties":{},"conditional":{"show":null,"when":null,"eq":"","json":""},"customConditional":"","logic":[],"attributes":{},"overlay":{"style":"","page":"","left":"","top":"","width":"","height":""},"type":"content","input":false,"placeholder":"","prefix":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"clearOnHide":true,"refreshOn":"","redrawOn":"","tableView":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"allowMultipleMasks":false,"addons":[],"id":"edgwhqh"},{"label":"Include land title record, where applicable","labelPosition":"top","optionsLabelPosition":"right","description":"","tooltip":"","customClass":"","tabindex":"","inline":false,"hidden":false,"hideLabel":false,"autofocus":false,"disabled":false,"tableView":false,"modalEdit":false,"values":[{"label":"I understand and will include a land title record with my submission","value":"hasTitleRecord","shortcut":""},{"label":"Land title record not available","value":"noTitleRecord","shortcut":""}],"dataType":"","persistent":true,"protected":false,"dbIndex":false,"encrypted":false,"redrawOn":"","clearOnHide":true,"customDefaultValue":"","calculateValue":"","calculateServer":false,"allowCalculateOverride":false,"validate":{"required":false,"onlyAvailableItems":false,"customMessage":"","custom":"","customPrivate":false,"json":"","strictDateValidation":false,"multiple":false,"unique":false},"errorLabel":"","errors":"","key":"includeLandTitleRecordWhereApplicable","tags":[],"properties":{},"conditional":{"show":null,"when":null,"eq":"","json":""},"customConditional":"","logic":[],"attributes":{},"overlay":{"style":"","page":"","left":"","top":"","width":"","height":""},"type":"radio","input":true,"placeholder":"","prefix":"","suffix":"","multiple":false,"unique":false,"refreshOn":"","dataGridLabel":false,"widget":null,"validateOn":"change","showCharCount":false,"showWordCount":false,"allowMultipleMasks":false,"addons":[],"inputType":"radio","fieldSet":false,"id":"eluvwrd","defaultValue":""},{"label":"Land ownership (Impacted Property or Receiving Site) Please select all that apply:","optionsLabelPosition":"right","tableView":false,"values":[{"label":"Legally Titled, Registered Property","value":"legallyTitled","shortcut":""},{"label":"Untitled Crown Land","value":"untitledCrown","shortcut":""},{"label":"Untitled Municipal Land","value":"untitledMunicipal","shortcut":""}],"key":"landOwnershipImpactedPropertyPleaseSelectAllThatApply","type":"selectboxes","input":true,"inputType":"checkbox","defaultValue":{"legallyTitled":false,"untitledCrown":false,"untitledMunicipal":false},"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"attributes":{},"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false,"onlyAvailableItems":false},"conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"fieldSet":false,"inline":false,"id":"ebvkqdh"},{"title":"For Legally Titled, Registered Property (Impacted Property)","theme":"default","tooltip":"","customClass":"","collapsible":false,"hidden":false,"hideLabel":false,"disabled":false,"modalEdit":false,"key":"forLegallyTitledRegisteredProperty-panel1","tags":[],"properties":{},"customConditional":"","conditional":{"json":"","show":true,"when":"landOwnershipImpactedPropertyPleaseSelectAllThatApply","eq":"legallyTitled"},"logic":[],"attributes":{},"overlay":{"style":"","page":"","left":"","top":"","width":"","height":""},"type":"panel","label":"","breadcrumb":"default","tabindex":"","input":false,"collapsed":false,"tableView":false,"components":[{"key":"Section2-LegallyTitled-Address1","type":"textfield","input":true,"label":"Site Address","validate":{"required":true,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false,"minLength":"","maxLength":"","pattern":""},"tableView":false,"placeholder":"or nearest street name/intersection if no address is assigned","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":{"type":"input"},"attributes":{},"validateOn":"change","conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"mask":false,"inputType":"text","inputFormat":"plain","inputMask":"","displayMask":"","spellcheck":true,"truncateMultipleSpaces":false,"id":"epwcnl"},{"key":"Section2-LegallyTitled-AddressColumn1","type":"columns","input":false,"label":"Columns - 2","columns":[{"pull":0,"push":0,"size":"md","width":6,"offset":0,"components":[{"key":"Section2-LegallyTitled-City1","type":"textfield","input":true,"label":"City","validate":{"required":true,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false,"minLength":"","maxLength":"","pattern":""},"tableView":false,"hideOnChildrenHidden":false,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":{"type":"input"},"attributes":{},"validateOn":"change","conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"mask":false,"inputType":"text","inputFormat":"plain","inputMask":"","displayMask":"","spellcheck":true,"truncateMultipleSpaces":false,"id":"e6ii8s"}],"currentWidth":6},{"pull":0,"push":0,"size":"md","width":6,"offset":0,"components":[{"key":"Section2-LegallyTitled-PostalZipCode1","type":"textfield","input":true,"label":"Postal Code","validate":{"required":true,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false,"minLength":"","maxLength":"","pattern":""},"tableView":false,"hideOnChildrenHidden":false,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":{"type":"input"},"attributes":{},"validateOn":"change","conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"mask":false,"inputType":"text","inputFormat":"plain","inputMask":"","displayMask":"","spellcheck":true,"truncateMultipleSpaces":false,"id":"erie2w"}],"currentWidth":6}],"tableView":false,"hideOnChildrenHidden":false,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":false,"hidden":false,"clearOnHide":false,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"attributes":{},"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false},"conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"tree":false,"lazyLoad":false,"autoAdjust":false,"id":"e5j0jj4"},{"label":"Enter PIDs and Land Descriptions below","tooltip":"Select the 'X' button to delete an entry.","reorder":false,"addAnotherPosition":"bottom","layoutFixed":false,"enableRowGroups":false,"initEmpty":false,"hideLabel":true,"tableView":false,"defaultValue":[{"Section2-LegallyTitled-PID":"","SiteAddress-LegallyTitled-PID":"","Section2-LegallyTitled-LandDescription":"","SiteAddress-LegallyTitled-LandDescription":""}],"validate":{"required":true,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false},"key":"Section2-LegallyTitled-PIDColumn1","type":"datagrid","input":true,"components":[{"title":"Entries","collapsible":false,"hideLabel":true,"key":"panel1","type":"panel","label":"Panel","input":false,"tableView":false,"components":[{"key":"cols3","type":"columns","input":false,"label":"Columns - 2","columns":[{"pull":0,"push":0,"size":"md","width":6,"offset":0,"components":[{"key":"Section2-LegallyTitled-PID","type":"textfield","input":true,"label":"PID","validate":{"required":true,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false,"minLength":"","maxLength":"","pattern":""},"inputMask":"999-999-999","tableView":true,"hideOnChildrenHidden":false,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":{"type":"input"},"attributes":{},"validateOn":"change","conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"mask":false,"inputType":"text","inputFormat":"plain","displayMask":"","spellcheck":true,"truncateMultipleSpaces":false,"id":"e35yp8o"}],"currentWidth":6},{"pull":0,"push":0,"size":"md","width":6,"offset":0,"components":[],"currentWidth":6}],"tableView":false,"hideOnChildrenHidden":false,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":false,"hidden":false,"clearOnHide":false,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"attributes":{},"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false},"conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"tree":false,"lazyLoad":false,"autoAdjust":false,"id":"edxz0kc"},{"key":"Section2-LegallyTitled-LandDescription","type":"textarea","input":true,"label":"Land Description","validate":{"required":true,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false,"minLength":"","maxLength":"","pattern":"","minWords":"","maxWords":""},"tableView":true,"autoExpand":false,"inputFormat":"plain","placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":{"type":"input"},"attributes":{},"validateOn":"change","conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"mask":false,"inputType":"text","inputMask":"","displayMask":"","spellcheck":true,"truncateMultipleSpaces":false,"rows":3,"wysiwyg":false,"editor":"","fixedSize":true,"id":"eg4rrls"}],"id":"ehjtgz00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000","placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":false,"hidden":false,"clearOnHide":false,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"attributes":{},"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false},"conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"tree":false,"lazyLoad":false,"theme":"default","breadcrumb":"default"}],"hideOnChildrenHidden":false,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"attributes":{},"validateOn":"change","conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"tree":true,"lazyLoad":false,"disableAddingRemovingRows":false,"id":"edwqg5s"}],"placeholder":"","prefix":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":false,"clearOnHide":false,"refreshOn":"","redrawOn":"","dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"allowMultipleMasks":false,"addons":[],"tree":false,"lazyLoad":false,"id":"eljmet"},{"title":"For Untitled Crown Land (Impacted Property)","theme":"default","tooltip":"","customClass":"","collapsible":false,"hidden":false,"hideLabel":false,"disabled":false,"modalEdit":false,"key":"Section2-forUntitledCrownLand2","tags":[],"properties":{},"customConditional":"","conditional":{"json":"","show":true,"when":"landOwnershipImpactedPropertyPleaseSelectAllThatApply","eq":"untitledCrown"},"logic":[],"attributes":{},"overlay":{"style":"","page":"","left":"","top":"","width":"","height":""},"type":"panel","label":"","breadcrumb":"default","tabindex":"","input":false,"collapsed":false,"tableView":false,"components":[{"label":"Crown Land Entries","labelPosition":"top","description":"","tooltip":"","disableAddingRemovingRows":false,"conditionalAddButton":"","reorder":false,"addAnother":"","addAnotherPosition":"bottom","layoutFixed":false,"enableRowGroups":false,"initEmpty":false,"customClass":"","tabindex":"","hidden":false,"hideLabel":true,"autofocus":false,"disabled":false,"tableView":false,"modalEdit":false,"defaultValue":[{"Section2-LegallyTitled-PID":"","SiteAddress-UntitledCrown-PIN":"","Section2-LegallyTitled-LandDescription":"","SiteAddress-UntitledCrown-LandDescription":""}],"persistent":true,"protected":false,"dbIndex":false,"encrypted":false,"redrawOn":"","clearOnHide":true,"customDefaultValue":"","calculateValue":"","calculateServer":false,"allowCalculateOverride":false,"validateOn":"change","validate":{"required":false,"minLength":"","maxLength":"","customMessage":"","custom":"","customPrivate":false,"json":"","strictDateValidation":false,"multiple":false,"unique":false},"errorLabel":"","errors":"","key":"Section2-UntitledCrown-PINColumn1","tags":[],"properties":{},"conditional":{"show":null,"when":null,"eq":"","json":""},"customConditional":"","logic":[],"attributes":{},"overlay":{"style":"","page":"","left":"","top":"","width":"","height":""},"type":"datagrid","input":true,"components":[{"title":"Crown Land","theme":"default","tooltip":"","customClass":"","collapsible":false,"hidden":false,"hideLabel":true,"dataGridLabel":false,"disabled":false,"modalEdit":false,"key":"panel1","tags":[],"properties":{},"customConditional":"","conditional":{"json":"","show":null,"when":null,"eq":""},"logic":[],"attributes":{},"overlay":{"style":"","page":"","left":"","top":"","width":"","height":""},"type":"panel","label":"","breadcrumb":"default","tabindex":"","input":false,"tableView":false,"components":[{"key":"cols3","type":"columns","input":false,"label":"Columns - 2","columns":[{"pull":0,"push":0,"size":"md","width":6,"offset":0,"components":[{"label":"PIN","tableView":true,"key":"Section2-LegallyTitled-PID","type":"textfield","input":true,"hideOnChildrenHidden":false,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":{"type":"input"},"attributes":{},"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false,"minLength":"","maxLength":"","pattern":""},"conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"mask":false,"inputType":"text","inputFormat":"plain","inputMask":"","displayMask":"","spellcheck":true,"truncateMultipleSpaces":false,"id":"e6g3hkp"}],"currentWidth":6},{"pull":0,"push":0,"size":"md","width":6,"offset":0,"components":[],"currentWidth":6}],"tableView":false,"hideOnChildrenHidden":false,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":false,"hidden":false,"clearOnHide":false,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"attributes":{},"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false},"conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"tree":false,"lazyLoad":false,"autoAdjust":false,"id":"eqa4hvn"},{"label":"Land Description or metes and bounds","autoExpand":false,"tableView":true,"inputFormat":"plain","key":"Section2-LegallyTitled-LandDescription","type":"textarea","input":true,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":{"type":"input"},"attributes":{},"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false,"minLength":"","maxLength":"","pattern":"","minWords":"","maxWords":""},"conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"mask":false,"inputType":"text","inputMask":"","displayMask":"","spellcheck":true,"truncateMultipleSpaces":false,"rows":3,"wysiwyg":false,"editor":"","fixedSize":true,"id":"esiwlom"}],"placeholder":"","prefix":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":false,"clearOnHide":false,"refreshOn":"","redrawOn":"","labelPosition":"top","description":"","errorLabel":"","autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"allowMultipleMasks":false,"addons":[],"tree":false,"lazyLoad":false,"id":"emjblk600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000"}],"placeholder":"","prefix":"","suffix":"","multiple":false,"unique":false,"refreshOn":"","dataGridLabel":false,"widget":null,"showCharCount":false,"showWordCount":false,"allowMultipleMasks":false,"addons":[],"tree":true,"lazyLoad":false,"id":"ecdu066"},{"label":"And if available:","reorder":false,"addAnotherPosition":"bottom","layoutFixed":false,"enableRowGroups":false,"initEmpty":false,"hideLabel":true,"tableView":false,"defaultValue":[{"Section2-UntitledCrown-CrownLandFileNumbers":"","SiteAddress-UntitledCrown-CrownLandFileNumbers":""}],"key":"Section2-UntitledCrownLand-FileNumberColumn1","type":"datagrid","input":true,"components":[{"key":"Section2-UntitledCrown-CrownLandFileNumbers","type":"textfield","input":true,"label":"Crown Land File Numbers","tableView":true,"id":"eh8kmqu000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000","placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":{"type":"input"},"attributes":{},"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false,"minLength":"","maxLength":"","pattern":""},"conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"mask":false,"inputType":"text","inputFormat":"plain","inputMask":"","displayMask":"","spellcheck":true,"truncateMultipleSpaces":false}],"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"attributes":{},"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false},"conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"tree":true,"lazyLoad":false,"disableAddingRemovingRows":false,"id":"ebjum0p"},{"title":"For untitled municipal land (Impacted Property)","theme":"default","tooltip":"","customClass":"","collapsible":false,"hidden":false,"hideLabel":false,"disabled":false,"modalEdit":false,"key":"Section2-forUntitledCrownLand3","tags":[],"properties":{},"customConditional":"","conditional":{"json":"","show":true,"when":"landOwnershipImpactedPropertyPleaseSelectAllThatApply","eq":"untitledMunicipal"},"logic":[],"attributes":{},"overlay":{"style":"","page":"","left":"","top":"","width":"","height":""},"type":"panel","label":"","breadcrumb":"default","tabindex":"","input":false,"collapsed":false,"tableView":false,"components":[{"key":"Section2-LegallyTitled-LandDescription1","type":"textarea","input":true,"label":"Land Description","validate":{"required":true,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false,"minLength":"","maxLength":"","pattern":"","minWords":"","maxWords":""},"tableView":true,"autoExpand":false,"inputFormat":"plain","placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":{"type":"input"},"attributes":{},"validateOn":"change","conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"mask":false,"inputType":"text","inputMask":"","displayMask":"","spellcheck":true,"truncateMultipleSpaces":false,"rows":3,"wysiwyg":false,"editor":"","fixedSize":true,"id":"egph9oi"}],"placeholder":"","prefix":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":false,"clearOnHide":false,"refreshOn":"","redrawOn":"","dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"allowMultipleMasks":false,"addons":[],"tree":false,"lazyLoad":false,"id":"e6amzvb"}],"placeholder":"","prefix":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":false,"clearOnHide":false,"refreshOn":"","redrawOn":"","dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"allowMultipleMasks":false,"addons":[],"tree":false,"lazyLoad":false,"id":"e6t7knc"}],"id":"e8qmdma"},{"html":"

Part 3 - Document Summary

 

","label":"Content","customClass":"","refreshOnChange":false,"hidden":false,"modalEdit":false,"key":"content5","tags":[],"properties":{},"conditional":{"show":null,"when":null,"eq":"","json":""},"customConditional":"","logic":[],"attributes":{},"overlay":{"style":"","page":"","left":"","top":"","width":"","height":""},"type":"content","input":false,"tableView":false,"placeholder":"","prefix":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"clearOnHide":true,"refreshOn":"","redrawOn":"","dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"allowMultipleMasks":false,"addons":[],"id":"ewlel6g"},{"title":"","theme":"default","tooltip":"","customClass":"","collapsible":false,"hidden":false,"hideLabel":false,"disabled":false,"modalEdit":false,"key":"panel8","tags":[],"properties":{},"customConditional":"","conditional":{"json":"","show":null,"when":null,"eq":""},"logic":[],"attributes":{},"overlay":{"style":"","page":"","left":"","top":"","width":"","height":""},"type":"panel","label":"Panel","breadcrumb":"default","tabindex":"","input":false,"placeholder":"","prefix":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":false,"clearOnHide":false,"refreshOn":"","redrawOn":"","tableView":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"allowMultipleMasks":false,"addons":[],"tree":false,"lazyLoad":false,"components":[{"html":"

List all known site investigation, risk assessment (including screening level risk assessment), remediation plan and confirmation of remediation reports comleted and directly supporting correspondence submitted (for source site and offsite impacted sites). 

List documents in order from newest to oldest.

","label":"Content","customClass":"","refreshOnChange":false,"hidden":false,"modalEdit":false,"key":"content8","tags":[],"properties":{},"conditional":{"show":null,"when":null,"eq":"","json":""},"customConditional":"","logic":[],"attributes":{},"overlay":{"style":"","page":"","left":"","top":"","width":"","height":""},"type":"content","input":false,"tableView":false,"placeholder":"","prefix":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"clearOnHide":true,"refreshOn":"","redrawOn":"","dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"allowMultipleMasks":false,"addons":[],"id":"eevyl1r"},{"label":"","reorder":false,"addAnotherPosition":"bottom","layoutFixed":false,"enableRowGroups":false,"initEmpty":false,"hideLabel":true,"tableView":false,"defaultValue":[{"document":"","documentTitle":"","authorCompany":"","documentDate":"00/00/0000"}],"key":"dataGrid2","type":"datagrid","input":true,"components":[{"title":"Document","collapsible":false,"key":"documents","type":"panel","label":"Documents","input":false,"tableView":false,"components":[{"label":"Document #:","tableView":true,"key":"document","type":"textfield","input":true,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":{"type":"input"},"attributes":{},"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false,"minLength":"","maxLength":"","pattern":""},"conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"mask":false,"inputType":"text","inputFormat":"plain","inputMask":"","displayMask":"","spellcheck":true,"truncateMultipleSpaces":false,"id":"e0ufs5o"},{"label":"Document Title","tableView":true,"key":"documentTitle","type":"textfield","input":true,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":{"type":"input"},"attributes":{},"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false,"minLength":"","maxLength":"","pattern":""},"conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"mask":false,"inputType":"text","inputFormat":"plain","inputMask":"","displayMask":"","spellcheck":true,"truncateMultipleSpaces":false,"id":"e839axn"},{"label":"Author/Company","tableView":true,"key":"authorCompany","type":"textfield","input":true,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":{"type":"input"},"attributes":{},"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false,"minLength":"","maxLength":"","pattern":""},"conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"mask":false,"inputType":"text","inputFormat":"plain","inputMask":"","displayMask":"","spellcheck":true,"truncateMultipleSpaces":false,"id":"eum71oo"},{"label":"Document Date","hideInputLabels":false,"inputsLabelPosition":"top","useLocaleSettings":false,"tableView":false,"fields":{"day":{"hide":false,"type":"number","placeholder":"","required":false},"month":{"hide":false,"type":"select","placeholder":"","required":false},"year":{"hide":false,"type":"number","placeholder":"","required":false}},"key":"documentDate","type":"day","input":true,"defaultValue":"00/00/0000","placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"attributes":{},"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false},"conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"dayFirst":false,"id":"egqqs34"}],"id":"e80y9k8000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000","placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":false,"hidden":false,"clearOnHide":false,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"attributes":{},"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false},"conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"tree":false,"lazyLoad":false,"theme":"default","breadcrumb":"default"}],"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"attributes":{},"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false},"conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"tree":true,"lazyLoad":false,"disableAddingRemovingRows":false,"id":"e1pcqd3"}],"id":"euq4ro"},{"html":"

Part 4 - Investigation Summary

 

","label":"Content","customClass":"","refreshOnChange":false,"hidden":false,"modalEdit":false,"key":"content6","tags":[],"properties":{},"conditional":{"show":null,"when":null,"eq":"","json":""},"customConditional":"","logic":[],"attributes":{},"overlay":{"style":"","page":"","left":"","top":"","width":"","height":""},"type":"content","input":false,"tableView":false,"placeholder":"","prefix":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"clearOnHide":true,"refreshOn":"","redrawOn":"","dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"allowMultipleMasks":false,"addons":[],"id":"e08pdh"},{"label":"Has an Approval in Principal (AiP) been issued for this site?","labelPosition":"top","optionsLabelPosition":"right","description":"","tooltip":"","customClass":"","tabindex":"","inline":false,"hidden":false,"hideLabel":false,"autofocus":false,"disabled":false,"tableView":false,"modalEdit":false,"values":[{"label":"Yes","value":"true","shortcut":""},{"label":"No","value":"false","shortcut":""}],"dataType":"","persistent":true,"protected":false,"dbIndex":false,"encrypted":false,"redrawOn":"","clearOnHide":true,"customDefaultValue":"","calculateValue":"","calculateServer":false,"allowCalculateOverride":false,"validate":{"required":false,"onlyAvailableItems":false,"customMessage":"","custom":"","customPrivate":false,"json":"","strictDateValidation":false,"multiple":false,"unique":false},"errorLabel":"","errors":"","key":"hasAnApprovalInPrincipalAiPBeenIssuedForThisSite","tags":[],"properties":{},"conditional":{"show":null,"when":null,"eq":"","json":""},"customConditional":"","logic":[],"attributes":{},"overlay":{"style":"","page":"","left":"","top":"","width":"","height":""},"type":"radio","input":true,"placeholder":"","prefix":"","suffix":"","multiple":false,"unique":false,"refreshOn":"","dataGridLabel":false,"widget":null,"validateOn":"change","showCharCount":false,"showWordCount":false,"allowMultipleMasks":false,"addons":[],"inputType":"radio","fieldSet":false,"id":"etgpg9","defaultValue":""},{"html":"

If an Approval in Principle (AIP) has been issued and this SoSC form is being submitted as part of a Certificate of Compliance, you do not need to complete PART 4.

If an AiP has not been issued, or if other circumstances require completion of section 4, please complete PARTS 4.1 to 4.8 below where indicated.

 

","label":"Content","customClass":"","refreshOnChange":false,"hidden":false,"modalEdit":false,"key":"content7","tags":[],"properties":{},"conditional":{"show":null,"when":null,"eq":"","json":""},"customConditional":"","logic":[],"attributes":{},"overlay":{"style":"","page":"","left":"","top":"","width":"","height":""},"type":"content","input":false,"tableView":false,"placeholder":"","prefix":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"clearOnHide":true,"refreshOn":"","redrawOn":"","dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"allowMultipleMasks":false,"addons":[],"id":"e4z1cma"},{"title":"SECTION I - Investigations Completed","collapsible":false,"key":"sectionIInvestigationsCompleted","conditional":{"show":true,"when":"hasAnApprovalInPrincipalAiPBeenIssuedForThisSite","eq":"false"},"type":"panel","label":"Panel","input":false,"tableView":false,"components":[{"title":"","collapsible":false,"key":"panel2","type":"panel","label":"Panel","input":false,"tableView":false,"components":[{"html":"

Stage 1 PSI

","label":"Content","refreshOnChange":false,"key":"content9","type":"content","input":false,"tableView":false,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"attributes":{},"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false},"conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"id":"e3pl2xr"},{"label":"Completed? ","optionsLabelPosition":"right","inline":false,"tableView":false,"values":[{"label":"Yes","value":"yes","shortcut":""},{"label":"No","value":"no","shortcut":""},{"label":"N/A","value":"nA","shortcut":""}],"validate":{"required":true,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false,"onlyAvailableItems":false},"key":"completed","type":"radio","input":true,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"attributes":{},"validateOn":"change","conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"inputType":"radio","fieldSet":false,"id":"e5mdhfh"},{"label":"Includes Stage 1 PSI information as listed in CSR Section 58 and any current applicable ministry protocols, guidelines, checklists, etc.?","optionsLabelPosition":"right","inline":false,"tableView":false,"values":[{"label":"Yes","value":"yes","shortcut":""},{"label":"No","value":"no","shortcut":""},{"label":"N/A","value":"nA","shortcut":""}],"validate":{"required":true,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false,"onlyAvailableItems":false},"key":"includesStage1PsiInformationAsListedInCsrSection58AndAnyCurrentApplicableMinistryProtocolsGuidelinesChecklistsEtc","type":"radio","input":true,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"attributes":{},"validateOn":"change","conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"inputType":"radio","fieldSet":false,"id":"eaori8x"},{"html":"

Stage 2 PSI

","label":"Content","refreshOnChange":false,"key":"content10","type":"content","input":false,"tableView":false,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"attributes":{},"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false},"conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"id":"epv4kl"},{"label":"Completed? ","optionsLabelPosition":"right","inline":false,"tableView":false,"values":[{"label":"Yes","value":"yes","shortcut":""},{"label":"No","value":"no","shortcut":""},{"label":"N/A","value":"nA","shortcut":""}],"validate":{"required":true,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false,"onlyAvailableItems":false},"key":"completed1","type":"radio","input":true,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"attributes":{},"validateOn":"change","conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"inputType":"radio","fieldSet":false,"id":"evp0dxp"},{"label":"Includes Stage 2 PSI information as listed in CSR Section 59 and any current applicable ministry protocols, guidelines, checklists, etc.?","optionsLabelPosition":"right","inline":false,"tableView":false,"values":[{"label":"Yes","value":"yes","shortcut":""},{"label":"No","value":"no","shortcut":""},{"label":"N/A","value":"nA","shortcut":""}],"validate":{"required":true,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false,"onlyAvailableItems":false},"key":"includesStage1PsiInformationAsListedInCsrSection58AndAnyCurrentApplicableMinistryProtocolsGuidelinesChecklistsEtc1","type":"radio","input":true,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"attributes":{},"validateOn":"change","conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"inputType":"radio","fieldSet":false,"id":"ep82c5k"},{"html":"

DSI

","label":"Content","refreshOnChange":false,"key":"content11","type":"content","input":false,"tableView":false,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"attributes":{},"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false},"conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"id":"era84nd"},{"label":"Completed? ","optionsLabelPosition":"right","inline":false,"tableView":false,"values":[{"label":"Yes","value":"yes","shortcut":""},{"label":"No","value":"no","shortcut":""},{"label":"N/A","value":"nA","shortcut":""}],"validate":{"required":true,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false,"onlyAvailableItems":false},"key":"completed2","type":"radio","input":true,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"attributes":{},"validateOn":"change","conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"inputType":"radio","fieldSet":false,"id":"e1o53pv"},{"label":"Includes DSI information as listed in CSR Section 59 and any current applicable ministry protocols, guidelines, checklists, etc.?","optionsLabelPosition":"right","inline":false,"tableView":false,"values":[{"label":"Yes","value":"yes","shortcut":""},{"label":"No","value":"no","shortcut":""},{"label":"N/A","value":"nA","shortcut":""}],"validate":{"required":true,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false,"onlyAvailableItems":false},"key":"includesStage1PsiInformationAsListedInCsrSection58AndAnyCurrentApplicableMinistryProtocolsGuidelinesChecklistsEtc2","type":"radio","input":true,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"attributes":{},"validateOn":"change","conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"inputType":"radio","fieldSet":false,"id":"eaetjce"},{"html":"

Other Reports

","label":"Content","refreshOnChange":false,"key":"content12","type":"content","input":false,"tableView":false,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"attributes":{},"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false},"conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"id":"e54l6dg"},{"label":"Completed? ","optionsLabelPosition":"right","inline":false,"tableView":false,"values":[{"label":"Yes","value":"yes","shortcut":""},{"label":"No","value":"no","shortcut":""},{"label":"N/A","value":"nA","shortcut":""}],"validate":{"required":true,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false,"onlyAvailableItems":false},"key":"completed3","type":"radio","input":true,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"attributes":{},"validateOn":"change","conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"inputType":"radio","fieldSet":false,"id":"enqzxx"},{"label":"According to other guidelines? (Provide explanation in notes below. Indicate how reports assist understanding of conditions and remediation.)","optionsLabelPosition":"right","inline":false,"tableView":false,"values":[{"label":"Yes","value":"yes","shortcut":""},{"label":"No","value":"no","shortcut":""},{"label":"N/A","value":"nA","shortcut":""}],"validate":{"required":true,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false,"onlyAvailableItems":false},"key":"includesStage1PsiInformationAsListedInCsrSection58AndAnyCurrentApplicableMinistryProtocolsGuidelinesChecklistsEtc3","type":"radio","input":true,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"attributes":{},"validateOn":"change","conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"inputType":"radio","fieldSet":false,"id":"epuetea"},{"label":"Notes","tableView":true,"key":"notes","type":"textfield","input":true,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":{"type":"input"},"attributes":{},"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false,"minLength":"","maxLength":"","pattern":""},"conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"mask":false,"inputType":"text","inputFormat":"plain","inputMask":"","displayMask":"","spellcheck":true,"truncateMultipleSpaces":false,"id":"e40v61c"}],"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":false,"hidden":false,"clearOnHide":false,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"attributes":{},"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false},"conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"tree":false,"lazyLoad":false,"theme":"default","breadcrumb":"default","id":"e5czdm"},{"html":"

If completed investigation reports are not adequate or if reports are titled differently or have a different scope than those listed above in accordance with the Contaminated Sites Regulation (i.e. PSI, DSI), complete Section 4.8 (Investigation or Interpretation Issues)

","label":"Content","refreshOnChange":false,"key":"content66","type":"content","input":false,"tableView":false,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"attributes":{},"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false},"conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"id":"eckn0k"}],"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":false,"hidden":false,"clearOnHide":false,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"attributes":{},"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"tree":false,"lazyLoad":false,"theme":"default","breadcrumb":"default","id":"eqjsu9p"},{"title":"SECTION II - Site Conditions","collapsible":false,"key":"sectionIiSiteConditions","conditional":{"show":true,"when":"hasAnApprovalInPrincipalAiPBeenIssuedForThisSite","eq":"false"},"type":"panel","label":"Panel","input":false,"tableView":false,"components":[{"label":"Topography","description":"Describe steepness, direction of slope and position of site in relation to surrounding land","autoExpand":false,"tableView":true,"key":"topography","type":"textarea","input":true,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":{"type":"input"},"attributes":{},"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false,"minLength":"","maxLength":"","pattern":"","minWords":"","maxWords":""},"conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"mask":false,"inputType":"text","inputFormat":"html","inputMask":"","displayMask":"","spellcheck":true,"truncateMultipleSpaces":false,"rows":3,"wysiwyg":false,"editor":"","fixedSize":true,"id":"ehhl80m"},{"label":"Stratigraphy","description":"Describe depth and thickness, grain size, etc. of typical stratigraphic components and note depth to cemented or very compact materials, bedrock / refusal, etc.","autoExpand":false,"tableView":true,"key":"stratigraphy","type":"textarea","input":true,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":{"type":"input"},"attributes":{},"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false,"minLength":"","maxLength":"","pattern":"","minWords":"","maxWords":""},"conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"mask":false,"inputType":"text","inputFormat":"html","inputMask":"","displayMask":"","spellcheck":true,"truncateMultipleSpaces":false,"rows":3,"wysiwyg":false,"editor":"","fixedSize":true,"id":"etftfyg"},{"label":"Hydrogeology","description":"Describe groundwater levels, confining / semi-confining layers, flow velocity and hydraulic conductivity. Provide arguments and supporting data to show compliance with Protocol 21 \"Water Use Determination\" where a specified groundwater use (DW, AW, IW or LW) has been determined not to apply. Provide explicit statements and description for every geological unit where an exemption from a specified water use is proposed to apply (add additional pages if necessary).","autoExpand":false,"tableView":true,"key":"hydrogeology","type":"textarea","input":true,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":{"type":"input"},"attributes":{},"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false,"minLength":"","maxLength":"","pattern":"","minWords":"","maxWords":""},"conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"mask":false,"inputType":"text","inputFormat":"html","inputMask":"","displayMask":"","spellcheck":true,"truncateMultipleSpaces":false,"rows":3,"wysiwyg":false,"editor":"","fixedSize":true,"id":"e2zxth"},{"label":"Surface water features - freshwater ","description":"List name, direction and distance to nearest surface water bodies and the characteristics (e.g., relative size / flow) of the water body","autoExpand":false,"tableView":true,"key":"surfaceWaterFeaturesFreshwater","type":"textarea","input":true,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":{"type":"input"},"attributes":{},"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false,"minLength":"","maxLength":"","pattern":"","minWords":"","maxWords":""},"conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"mask":false,"inputType":"text","inputFormat":"html","inputMask":"","displayMask":"","spellcheck":true,"truncateMultipleSpaces":false,"rows":3,"wysiwyg":false,"editor":"","fixedSize":true,"id":"eqsdwfv"},{"label":"Surface water features - marine waters","description":"List name, direction and distance to nearest surface water bodies and the characteristics (e.g., relative size / flow) of the water body","autoExpand":false,"tableView":true,"key":"surfaceWaterFeaturesMarineWaters","type":"textarea","input":true,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":{"type":"input"},"attributes":{},"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false,"minLength":"","maxLength":"","pattern":"","minWords":"","maxWords":""},"conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"mask":false,"inputType":"text","inputFormat":"html","inputMask":"","displayMask":"","spellcheck":true,"truncateMultipleSpaces":false,"rows":3,"wysiwyg":false,"editor":"","fixedSize":true,"id":"exdrjd"}],"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":false,"hidden":false,"clearOnHide":false,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"attributes":{},"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"tree":false,"lazyLoad":false,"theme":"default","breadcrumb":"default","id":"ejah089"},{"title":"SECTION III - Land Use","collapsible":false,"key":"sectionIiiLandUse","conditional":{"show":true,"when":"hasAnApprovalInPrincipalAiPBeenIssuedForThisSite","eq":"false"},"type":"panel","label":"Panel","input":false,"tableView":false,"components":[{"html":"

Please indicate land use for each applicable area

","label":"Content","refreshOnChange":false,"key":"content14","type":"content","input":false,"tableView":false,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"attributes":{},"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false},"conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"id":"enxqvoe"},{"label":"Onsite: Site","description":"Description of current land use(s)/activities:","autoExpand":false,"tableView":true,"validate":{"required":true,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false,"minLength":"","maxLength":"","pattern":"","minWords":"","maxWords":""},"key":"onsiteSite","type":"textarea","input":true,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":{"type":"input"},"attributes":{},"validateOn":"change","conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"mask":false,"inputType":"text","inputFormat":"html","inputMask":"","displayMask":"","spellcheck":true,"truncateMultipleSpaces":false,"rows":3,"wysiwyg":false,"editor":"","fixedSize":true,"id":"e6rs9wg"},{"label":"Offsite: North","description":"Description of current land use(s)/activities:","autoExpand":false,"tableView":true,"key":"offsiteNorth","type":"textarea","input":true,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":{"type":"input"},"attributes":{},"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false,"minLength":"","maxLength":"","pattern":"","minWords":"","maxWords":""},"conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"mask":false,"inputType":"text","inputFormat":"html","inputMask":"","displayMask":"","spellcheck":true,"truncateMultipleSpaces":false,"rows":3,"wysiwyg":false,"editor":"","fixedSize":true,"id":"e7l6j3"},{"label":"Offsite: East","description":"Description of current land use(s)/activities:","autoExpand":false,"tableView":true,"key":"offsiteEast","type":"textarea","input":true,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":{"type":"input"},"attributes":{},"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false,"minLength":"","maxLength":"","pattern":"","minWords":"","maxWords":""},"conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"mask":false,"inputType":"text","inputFormat":"html","inputMask":"","displayMask":"","spellcheck":true,"truncateMultipleSpaces":false,"rows":3,"wysiwyg":false,"editor":"","fixedSize":true,"id":"es0gn0e"},{"label":"Offsite: South","description":"Description of current land use(s)/activities:","autoExpand":false,"tableView":true,"key":"offsiteSouth","type":"textarea","input":true,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":{"type":"input"},"attributes":{},"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false,"minLength":"","maxLength":"","pattern":"","minWords":"","maxWords":""},"conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"mask":false,"inputType":"text","inputFormat":"html","inputMask":"","displayMask":"","spellcheck":true,"truncateMultipleSpaces":false,"rows":3,"wysiwyg":false,"editor":"","fixedSize":true,"id":"eizhyma"},{"label":"Offsite: West","description":"Description of current land use(s)/activities:","autoExpand":false,"tableView":true,"key":"offsiteWest","type":"textarea","input":true,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":{"type":"input"},"attributes":{},"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false,"minLength":"","maxLength":"","pattern":"","minWords":"","maxWords":""},"conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"mask":false,"inputType":"text","inputFormat":"html","inputMask":"","displayMask":"","spellcheck":true,"truncateMultipleSpaces":false,"rows":3,"wysiwyg":false,"editor":"","fixedSize":true,"id":"eajh7y"},{"label":"Proposed land use of site","optionsLabelPosition":"right","inline":false,"tableView":false,"values":[{"label":"Same as above","value":"sameAsAbove","shortcut":""},{"label":"Other","value":"other","shortcut":""}],"key":"proposedLandUseOfSite","type":"radio","input":true,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"attributes":{},"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false,"onlyAvailableItems":false},"conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"inputType":"radio","fieldSet":false,"id":"ef9c7xv"},{"label":"Describe:","autoExpand":false,"tableView":true,"key":"describe","conditional":{"show":true,"when":"proposedLandUseOfSite","eq":"other"},"type":"textarea","input":true,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":{"type":"input"},"attributes":{},"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false,"minLength":"","maxLength":"","pattern":"","minWords":"","maxWords":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"mask":false,"inputType":"text","inputFormat":"html","inputMask":"","displayMask":"","spellcheck":true,"truncateMultipleSpaces":false,"rows":3,"wysiwyg":false,"editor":"","fixedSize":true,"id":"enenb"}],"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":false,"hidden":false,"clearOnHide":false,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"attributes":{},"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"tree":false,"lazyLoad":false,"theme":"default","breadcrumb":"default","id":"ehd14l6"},{"title":"SECTION IV - Applicable Numerical Standards and Criteria","theme":"default","tooltip":"","customClass":"","collapsible":false,"hidden":false,"hideLabel":false,"disabled":false,"modalEdit":false,"key":"sectionIvApplicableNumericalStandardsAndCriteria","tags":[],"properties":{},"customConditional":"","conditional":{"json":"","show":true,"when":"hasAnApprovalInPrincipalAiPBeenIssuedForThisSite","eq":"false"},"logic":[],"attributes":{},"overlay":{"style":"","page":"","left":"","top":"","width":"","height":""},"type":"panel","label":"Panel","breadcrumb":"default","tabindex":"","input":false,"tableView":false,"components":[{"html":"

Soil (CSR Schedule 3.1)

Property - Source Site

","label":"Content","refreshOnChange":false,"key":"content15","type":"content","input":false,"tableView":false,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"attributes":{},"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false},"conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"id":"epzrwqp"},{"label":"CSR Land Use - Current","optionsLabelPosition":"right","tableView":false,"values":[{"label":"Industrial Land Use (IL)","value":"industrialLandUseIl","shortcut":""},{"label":"Commercial Land Use (CL)","value":"commercialLandUseCl","shortcut":""},{"label":"Residential Land Use High Density (RLHD)","value":"residentialLandUseHighDensityRlhd","shortcut":""},{"label":"Residential Land Use Low Density (RLLD)","value":"residentialLandUseLowDensityRlld","shortcut":""},{"label":"Urban Park Land Use (PL)","value":"urbanParkLandUsePl","shortcut":""},{"label":"Agricultural Land Use (AL)","value":"agriculturalLandUseAl","shortcut":""},{"label":"Wildlands Natural Land Use (WLN)","value":"wildlandsNaturalLandUseWln","shortcut":""},{"label":"Wildlands Reverted Land Use (WLR)","value":"wildlandsRevertedLandUseWlr","shortcut":""},{"label":"Other","value":"other","shortcut":""}],"validate":{"required":true,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false,"onlyAvailableItems":false},"key":"csrLandUseCurrent","type":"selectboxes","input":true,"inputType":"checkbox","defaultValue":{"industrialLandUseIl":false,"commercialLandUseCl":false,"residentialLandUseHighDensityRlhd":false,"residentialLandUseLowDensityRlld":false,"urbanParkLandUsePl":false,"agriculturalLandUseAl":false,"wildlandsNaturalLandUseWln":false,"wildlandsRevertedLandUseWlr":false,"other":false},"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"attributes":{},"validateOn":"change","conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"fieldSet":false,"inline":false,"id":"e24v93"},{"label":"If 'Other' is specified above, please explain: (e.g. applicable or excluded guidance, protocols or policies specific to the site)","autoExpand":false,"tableView":true,"key":"ifOtherIsSpecifiedAbovePleaseExplainEGApplicableOrExcludedGuidanceProtocolsOrPoliciesSpecificToTheSite","conditional":{"show":true,"when":"csrLandUseCurrent","eq":"other"},"type":"textarea","input":true,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":{"type":"input"},"attributes":{},"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false,"minLength":"","maxLength":"","pattern":"","minWords":"","maxWords":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"mask":false,"inputType":"text","inputFormat":"html","inputMask":"","displayMask":"","spellcheck":true,"truncateMultipleSpaces":false,"rows":3,"wysiwyg":false,"editor":"","fixedSize":true,"id":"e4nly1"},{"label":"Notes: If 'Other' standards selected above, provide rationale for why a typical standard does not apply:","autoExpand":false,"tableView":true,"key":"notesIfOtherStandardsSelectedAboveProvideRationaleForWhyATypicalStandardDoesNotApply","conditional":{"show":true,"when":"csrLandUseCurrent","eq":"other"},"type":"textarea","input":true,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":{"type":"input"},"attributes":{},"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false,"minLength":"","maxLength":"","pattern":"","minWords":"","maxWords":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"mask":false,"inputType":"text","inputFormat":"html","inputMask":"","displayMask":"","spellcheck":true,"truncateMultipleSpaces":false,"rows":3,"wysiwyg":false,"editor":"","fixedSize":true,"id":"ebde74r"},{"label":"Have Protocol 2 site-specific standards been applied?","optionsLabelPosition":"right","inline":false,"tableView":false,"values":[{"label":"Yes","value":"yes","shortcut":""},{"label":"No","value":"no","shortcut":""}],"key":"haveProtocol2SiteSpecificStandardsBeenApplied","type":"radio","input":true,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"attributes":{},"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false,"onlyAvailableItems":false},"conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"inputType":"radio","fieldSet":false,"id":"exwmue8"},{"label":"Note: If P2 site-specific numerical standards selected above, identify the substance and provide rationale for application of the site-specific numerical standard.","autoExpand":false,"tableView":true,"key":"noteIfP2SiteSpecificNumericalStandardsSelectedAboveIdentifyTheSubstanceAndProvideRationaleForApplicationOfTheSiteSpecificNumericalStandard","type":"textarea","input":true,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":{"type":"input"},"attributes":{},"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false,"minLength":"","maxLength":"","pattern":"","minWords":"","maxWords":""},"conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"mask":false,"inputType":"text","inputFormat":"html","inputMask":"","displayMask":"","spellcheck":true,"truncateMultipleSpaces":false,"rows":3,"wysiwyg":false,"editor":"","fixedSize":true,"id":"eu2f997"},{"label":"Have Protocol 4 site-specific standards been applied?","optionsLabelPosition":"right","inline":false,"tableView":false,"values":[{"label":"Yes","value":"yes","shortcut":""},{"label":"No","value":"no","shortcut":""}],"key":"haveProtocol4SiteSpecificStandardsBeenApplied","type":"radio","input":true,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"attributes":{},"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false,"onlyAvailableItems":false},"conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"inputType":"radio","fieldSet":false,"id":"ea8eabc"},{"label":"Note: If P4 background selected above, provide rationale for why the background concentration applies.","autoExpand":false,"tableView":true,"key":"noteIfP4BackgroundSelectedAboveProvideRationaleForWhyTheBackgroundConcentrationApplies","type":"textarea","input":true,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":{"type":"input"},"attributes":{},"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false,"minLength":"","maxLength":"","pattern":"","minWords":"","maxWords":""},"conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"mask":false,"inputType":"text","inputFormat":"html","inputMask":"","displayMask":"","spellcheck":true,"truncateMultipleSpaces":false,"rows":3,"wysiwyg":false,"editor":"","fixedSize":true,"id":"eztiog"},{"label":"Does more than one land use apply at this site?","optionsLabelPosition":"right","inline":false,"tableView":false,"values":[{"label":"Yes","value":"yes","shortcut":""},{"label":"No","value":"no","shortcut":""}],"validate":{"required":true,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false,"onlyAvailableItems":false},"key":"haveProtocol4SiteSpecificStandardsBeenApplied1","type":"radio","input":true,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"attributes":{},"validateOn":"change","conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"inputType":"radio","fieldSet":false,"id":"elpsvca"},{"label":"If more than one land use applies to the site, specify additional land uses covered by the document, i.e., riparian areas, roadways, etc. include a diagram to clearly show the area(s) with different standards.","autoExpand":false,"tableView":true,"key":"ifMoreThanOneLandUseAppliesToTheSiteSpecifyAdditionalLandUsesCoveredByTheDocumentIERiparianAreasRoadwaysEtcIncludeADiagramToClearlyShowTheAreaSWithDifferentStandards","type":"textarea","input":true,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":{"type":"input"},"attributes":{},"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false,"minLength":"","maxLength":"","pattern":"","minWords":"","maxWords":""},"conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"mask":false,"inputType":"text","inputFormat":"html","inputMask":"","displayMask":"","spellcheck":true,"truncateMultipleSpaces":false,"rows":3,"wysiwyg":false,"editor":"","fixedSize":true,"id":"ekvvcob"},{"label":"Attention: attach diagram if more than one land use applies","tableView":false,"defaultValue":false,"validate":{"required":true,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false},"key":"attentionAttachDiagramIfMoreThanOneLandUseApplies","type":"checkbox","input":true,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":true,"labelPosition":"right","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"attributes":{},"validateOn":"change","conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"inputType":"checkbox","value":"","name":"","id":"ez43pr"},{"label":"CSR Land Use - Proposed","optionsLabelPosition":"right","tableView":false,"defaultValue":{"industrialLandUseIl":false,"commercialLandUseCl":false,"residentialLandUseHighDensityRlhd":false,"residentialLandUseLowDensityRlld":false,"urbanParkLandUsePl":false,"agriculturalLandUseAl":false,"wildlandsNaturalLandUseWln":false,"wildlandsRevertedLandUseWlr":false,"other":false},"values":[{"label":"Industrial Land Use (IL)","value":"industrialLandUseIl","shortcut":""},{"label":"Commercial Land Use (CL)","value":"commercialLandUseCl","shortcut":""},{"label":"Residential Land Use High Density (RLHD)","value":"residentialLandUseHighDensityRlhd","shortcut":""},{"label":"Residential Land Use Low Density (RLLD)","value":"residentialLandUseLowDensityRlld","shortcut":""},{"label":"Urban Park Land Use (PL)","value":"urbanParkLandUsePl","shortcut":""},{"label":"Agricultural Land Use (AL)","value":"agriculturalLandUseAl","shortcut":""},{"label":"Wildlands Natural Land Use (WLN)","value":"wildlandsNaturalLandUseWln","shortcut":""},{"label":"Wildlands Reverted Land Use (WLR)","value":"wildlandsRevertedLandUseWlr","shortcut":""},{"label":"Other","value":"other","shortcut":""}],"validate":{"required":true,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false,"onlyAvailableItems":false},"key":"csrLandUseProposed","type":"selectboxes","input":true,"inputType":"checkbox","placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"attributes":{},"validateOn":"change","conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"fieldSet":false,"inline":false,"id":"ehtn49"},{"label":"If 'Other' is specified above, please explain: (e.g. applicable or excluded guidance, protocols or policies specific to the site)","autoExpand":false,"tableView":true,"key":"ifOtherIsSpecifiedAbovePleaseExplainEGApplicableOrExcludedGuidanceProtocolsOrPoliciesSpecificToTheSite1","conditional":{"show":true,"when":"csrLandUseProposed","eq":"other"},"type":"textarea","input":true,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":{"type":"input"},"attributes":{},"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false,"minLength":"","maxLength":"","pattern":"","minWords":"","maxWords":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"mask":false,"inputType":"text","inputFormat":"html","inputMask":"","displayMask":"","spellcheck":true,"truncateMultipleSpaces":false,"rows":3,"wysiwyg":false,"editor":"","fixedSize":true,"id":"ewle16h"},{"label":"Notes: If 'Other' standards selected above, provide rationale for why a typical standard does not apply:","autoExpand":false,"tableView":true,"key":"notesIfOtherStandardsSelectedAboveProvideRationaleForWhyATypicalStandardDoesNotApply1","conditional":{"show":true,"when":"csrLandUseProposed","eq":"other"},"type":"textarea","input":true,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":{"type":"input"},"attributes":{},"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false,"minLength":"","maxLength":"","pattern":"","minWords":"","maxWords":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"mask":false,"inputType":"text","inputFormat":"html","inputMask":"","displayMask":"","spellcheck":true,"truncateMultipleSpaces":false,"rows":3,"wysiwyg":false,"editor":"","fixedSize":true,"id":"emkd1y"},{"label":"Have Protocol 2 site-specific standards been applied?","optionsLabelPosition":"right","inline":false,"tableView":false,"values":[{"label":"Yes","value":"yes","shortcut":""},{"label":"No","value":"no","shortcut":""}],"key":"haveProtocol2SiteSpecificStandardsBeenApplied1","type":"radio","input":true,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"attributes":{},"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false,"onlyAvailableItems":false},"conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"inputType":"radio","fieldSet":false,"id":"eq1wesd"},{"label":"Note: If P2 site-specific numerical standards selected above, identify the substance and provide rationale for application of the site-specific numerical standard.","autoExpand":false,"tableView":true,"key":"noteIfP2SiteSpecificNumericalStandardsSelectedAboveIdentifyTheSubstanceAndProvideRationaleForApplicationOfTheSiteSpecificNumericalStandard1","type":"textarea","input":true,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":{"type":"input"},"attributes":{},"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false,"minLength":"","maxLength":"","pattern":"","minWords":"","maxWords":""},"conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"mask":false,"inputType":"text","inputFormat":"html","inputMask":"","displayMask":"","spellcheck":true,"truncateMultipleSpaces":false,"rows":3,"wysiwyg":false,"editor":"","fixedSize":true,"id":"eo1fmv"},{"label":"Have Protocol 4 site-specific standards been applied?","optionsLabelPosition":"right","inline":false,"tableView":false,"values":[{"label":"Yes","value":"yes","shortcut":""},{"label":"No","value":"no","shortcut":""}],"key":"haveProtocol4SiteSpecificStandardsBeenApplied2","type":"radio","input":true,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"attributes":{},"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false,"onlyAvailableItems":false},"conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"inputType":"radio","fieldSet":false,"id":"em04tuv"},{"label":"Note: If P4 background selected above, provide rationale for why the background concentration applies.","autoExpand":false,"tableView":true,"key":"noteIfP4BackgroundSelectedAboveProvideRationaleForWhyTheBackgroundConcentrationApplies1","type":"textarea","input":true,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":{"type":"input"},"attributes":{},"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false,"minLength":"","maxLength":"","pattern":"","minWords":"","maxWords":""},"conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"mask":false,"inputType":"text","inputFormat":"html","inputMask":"","displayMask":"","spellcheck":true,"truncateMultipleSpaces":false,"rows":3,"wysiwyg":false,"editor":"","fixedSize":true,"id":"e736awck"},{"label":"Does more than one land use apply at this site?","optionsLabelPosition":"right","inline":false,"tableView":false,"values":[{"label":"Yes","value":"yes","shortcut":""},{"label":"No","value":"no","shortcut":""}],"validate":{"required":true,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false,"onlyAvailableItems":false},"key":"multipleLandUse","type":"radio","input":true,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"attributes":{},"validateOn":"change","conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"inputType":"radio","fieldSet":false,"id":"erk6myf"},{"label":"If more than one land use applies to the site, specify additional land uses covered by the document, i.e., riparian areas, roadways, etc. include a diagram to clearly show the area(s) with different standards.","autoExpand":false,"tableView":true,"key":"ifMoreThanOneLandUseAppliesToTheSiteSpecifyAdditionalLandUsesCoveredByTheDocumentIERiparianAreasRoadwaysEtcIncludeADiagramToClearlyShowTheAreaSWithDifferentStandards1","conditional":{"show":true,"when":"multipleLandUse","eq":"yes"},"type":"textarea","input":true,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":{"type":"input"},"attributes":{},"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false,"minLength":"","maxLength":"","pattern":"","minWords":"","maxWords":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"mask":false,"inputType":"text","inputFormat":"html","inputMask":"","displayMask":"","spellcheck":true,"truncateMultipleSpaces":false,"rows":3,"wysiwyg":false,"editor":"","fixedSize":true,"id":"e339galn"},{"label":"Attention: attach diagram if more than one land use applies","tableView":false,"defaultValue":false,"validate":{"required":true,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false},"key":"attentionAttachDiagramIfMoreThanOneLandUseApplies1","conditional":{"show":true,"when":"multipleLandUse","eq":"yes"},"type":"checkbox","input":true,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":true,"labelPosition":"right","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"attributes":{},"validateOn":"change","overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"inputType":"checkbox","value":"","name":"","id":"enw2hzm"},{"html":"

Offsite Impacted Property(ies) / Management Area Land Use

","label":"Content","refreshOnChange":false,"key":"content16","type":"content","input":false,"tableView":false,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"attributes":{},"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false},"conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"id":"er8zxoq"},{"label":"CSR Land Use - Current","optionsLabelPosition":"right","tableView":false,"defaultValue":{"industrialLandUseIl":false,"commercialLandUseCl":false,"residentialLandUseHighDensityRlhd":false,"residentialLandUseLowDensityRlld":false,"urbanParkLandUsePl":false,"agriculturalLandUseAl":false,"wildlandsNaturalLandUseWln":false,"wildlandsRevertedLandUseWlr":false,"other":false},"values":[{"label":"Industrial Land Use (IL)","value":"industrialLandUseIl","shortcut":""},{"label":"Commercial Land Use (CL)","value":"commercialLandUseCl","shortcut":""},{"label":"Residential Land Use High Density (RLHD)","value":"residentialLandUseHighDensityRlhd","shortcut":""},{"label":"Residential Land Use Low Density (RLLD)","value":"residentialLandUseLowDensityRlld","shortcut":""},{"label":"Urban Park Land Use (PL)","value":"urbanParkLandUsePl","shortcut":""},{"label":"Agricultural Land Use (AL)","value":"agriculturalLandUseAl","shortcut":""},{"label":"Wildlands Natural Land Use (WLN)","value":"wildlandsNaturalLandUseWln","shortcut":""},{"label":"Wildlands Reverted Land Use (WLR)","value":"wildlandsRevertedLandUseWlr","shortcut":""},{"label":"Other","value":"other","shortcut":""}],"validate":{"required":true,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false,"onlyAvailableItems":false},"key":"csrLandUseCurrentImpacted","type":"selectboxes","input":true,"inputType":"checkbox","placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"attributes":{},"validateOn":"change","conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"fieldSet":false,"inline":false,"id":"e4z13y"},{"label":"If 'other' is specified above, please explain: (e.g. applicable or excluded guidance, protocols or policies specific to the site)","autoExpand":false,"tableView":true,"validate":{"required":true,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false,"minLength":"","maxLength":"","pattern":"","minWords":"","maxWords":""},"key":"ifOtherIsSpecifiedAbovePleaseExplainEGApplicableOrExcludedGuidanceProtocolsOrPoliciesSpecificToTheSite2","conditional":{"show":true,"when":"csrLandUseCurrentImpacted","eq":"other"},"type":"textarea","input":true,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":{"type":"input"},"attributes":{},"validateOn":"change","overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"mask":false,"inputType":"text","inputFormat":"html","inputMask":"","displayMask":"","spellcheck":true,"truncateMultipleSpaces":false,"rows":3,"wysiwyg":false,"editor":"","fixedSize":true,"id":"esytwkl"},{"label":"Notes: provide rationale for why a typical standard does not apply","autoExpand":false,"tableView":true,"validate":{"required":true,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false,"minLength":"","maxLength":"","pattern":"","minWords":"","maxWords":""},"key":"ifOtherIsSpecifiedAbovePleaseExplainEGApplicableOrExcludedGuidanceProtocolsOrPoliciesSpecificToTheSite3","conditional":{"show":true,"when":"csrLandUseCurrentImpacted","eq":"other"},"type":"textarea","input":true,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":{"type":"input"},"attributes":{},"validateOn":"change","overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"mask":false,"inputType":"text","inputFormat":"html","inputMask":"","displayMask":"","spellcheck":true,"truncateMultipleSpaces":false,"rows":3,"wysiwyg":false,"editor":"","fixedSize":true,"id":"ey5bxu7"},{"label":"Have Protocol 2 site-specific standards been applied?","optionsLabelPosition":"right","inline":false,"tableView":false,"values":[{"label":"Yes","value":"yes","shortcut":""},{"label":"No","value":"no","shortcut":""}],"key":"haveProtocol2SiteSpecificStandardsBeenApplied2","type":"radio","input":true,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"attributes":{},"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false,"onlyAvailableItems":false},"conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"inputType":"radio","fieldSet":false,"id":"eks5u89"},{"label":"Note: If P2 site-specific numerical standards selected above, identify the substance and provide rationale for application of the site-specific numerical standard.","autoExpand":false,"tableView":true,"key":"noteIfP2SiteSpecificNumericalStandardsSelectedAboveIdentifyTheSubstanceAndProvideRationaleForApplicationOfTheSiteSpecificNumericalStandard2","type":"textarea","input":true,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":{"type":"input"},"attributes":{},"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false,"minLength":"","maxLength":"","pattern":"","minWords":"","maxWords":""},"conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"mask":false,"inputType":"text","inputFormat":"html","inputMask":"","displayMask":"","spellcheck":true,"truncateMultipleSpaces":false,"rows":3,"wysiwyg":false,"editor":"","fixedSize":true,"id":"eveexvi"},{"label":"Have Protocol 4 site-specific standards been applied?","optionsLabelPosition":"right","inline":false,"tableView":false,"values":[{"label":"Yes","value":"yes","shortcut":""},{"label":"No","value":"no","shortcut":""}],"key":"haveProtocol4SiteSpecificStandardsBeenApplied4","type":"radio","input":true,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"attributes":{},"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false,"onlyAvailableItems":false},"conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"inputType":"radio","fieldSet":false,"id":"ecl4kdi"},{"label":"Note: If P4 background selected above, provide rationale for why the background concentration applies.","autoExpand":false,"tableView":true,"key":"noteIfP4BackgroundSelectedAboveProvideRationaleForWhyTheBackgroundConcentrationApplies2","type":"textarea","input":true,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":{"type":"input"},"attributes":{},"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false,"minLength":"","maxLength":"","pattern":"","minWords":"","maxWords":""},"conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"mask":false,"inputType":"text","inputFormat":"html","inputMask":"","displayMask":"","spellcheck":true,"truncateMultipleSpaces":false,"rows":3,"wysiwyg":false,"editor":"","fixedSize":true,"id":"e1vwxs"},{"html":"

Groundwater (CSR Schedule 3.2)

","label":"Content","refreshOnChange":false,"key":"content17","type":"content","input":false,"tableView":false,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"attributes":{},"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false},"conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"id":"e47bqcv"},{"label":"Do groundwater standards apply at your site?","optionsLabelPosition":"right","inline":false,"tableView":false,"values":[{"label":"Yes","value":"yes","shortcut":""},{"label":"No","value":"no","shortcut":""}],"key":"doGroundwaterStandardsApplyAtYourSite","type":"radio","input":true,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"attributes":{},"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false,"onlyAvailableItems":false},"conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"inputType":"radio","fieldSet":false,"id":"eh13wx"},{"html":"

Groundwater

","label":"Content","refreshOnChange":false,"key":"content18","type":"content","input":false,"tableView":false,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"attributes":{},"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false},"conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"id":"eqg5o7"},{"label":"Select all that apply ","optionsLabelPosition":"right","tableView":false,"values":[{"label":"Aquatic Life (AW) Fresh","value":"aquaticLifeAwFresh","shortcut":""},{"label":"Aquatic Life (AW) Marine","value":"aquaticLifeAwMarine","shortcut":""},{"label":"Irrigation (IW)","value":"irrigationIw","shortcut":""},{"label":"Livestock (LW)","value":"livestockLw","shortcut":""},{"label":"Drinking Water (DW)","value":"drinkingWaterDw","shortcut":""},{"label":"No Water Use","value":"noWaterUse","shortcut":""}],"key":"selectAllThatApply","type":"selectboxes","input":true,"inputType":"checkbox","placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"attributes":{},"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false,"onlyAvailableItems":false},"conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"fieldSet":false,"inline":false,"id":"en2a4pq"},{"label":"Has a Protocol 9 background concentration been applied? ","optionsLabelPosition":"right","inline":false,"tableView":false,"values":[{"label":"Yes","value":"yes","shortcut":""},{"label":"No","value":"no","shortcut":""}],"key":"hasAProtocol9BackgroundConcentrationBeenApplied","type":"radio","input":true,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"attributes":{},"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false,"onlyAvailableItems":false},"conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"inputType":"radio","fieldSet":false,"id":"eimpdh"},{"label":"Notes: If Protocol 9 background concentration selected, provide rationale for why the background concentration applies.","autoExpand":false,"tableView":true,"key":"notesIfProtocol9BackgroundConcentrationSelectedProvideRationaleForWhyTheBackgroundConcentrationApplies","type":"textarea","input":true,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":{"type":"input"},"attributes":{},"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false,"minLength":"","maxLength":"","pattern":"","minWords":"","maxWords":""},"conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"mask":false,"inputType":"text","inputFormat":"html","inputMask":"","displayMask":"","spellcheck":true,"truncateMultipleSpaces":false,"rows":3,"wysiwyg":false,"editor":"","fixedSize":true,"id":"e5tilj"},{"html":"

Surface water (BC Approved Water Quality Guidelines) 

","label":"Content","refreshOnChange":false,"key":"content19","type":"content","input":false,"tableView":false,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"attributes":{},"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false},"conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"id":"eja0cs8"},{"label":"Do surface water guidelines apply at your site? ","optionsLabelPosition":"right","inline":false,"tableView":false,"values":[{"label":"Yes","value":"yes","shortcut":""},{"label":"No","value":"no","shortcut":""}],"key":"surfaceWaterGuidelinesApply","type":"radio","input":true,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"attributes":{},"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false,"onlyAvailableItems":false},"conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"inputType":"radio","fieldSet":false,"id":"e6ew7lk"},{"label":"Select all that apply","optionsLabelPosition":"right","tableView":false,"values":[{"label":"Ambient freshwater","value":"ambientFreshwater","shortcut":""},{"label":"Ambient marine","value":"ambientMarine","shortcut":""},{"label":"Not Applicable","value":"notApplicable","shortcut":""}],"validate":{"required":true,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false,"onlyAvailableItems":false},"key":"selectAllThatApply1","type":"selectboxes","input":true,"inputType":"checkbox","defaultValue":{"ambientFreshwater":false,"ambientMarine":false,"notApplicable":false},"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"attributes":{},"validateOn":"change","conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"fieldSet":false,"inline":false,"id":"el4jtnu"},{"html":"

Vapour (CSR Schedule 3.3)

","label":"Content","refreshOnChange":false,"key":"content20","type":"content","input":false,"tableView":false,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"attributes":{},"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false},"conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"id":"ek320f"},{"label":"Do vapour standards apply at your site?","optionsLabelPosition":"right","inline":false,"tableView":false,"values":[{"label":"Yes","value":"yes","shortcut":""},{"label":"No","value":"no","shortcut":""}],"key":"vapourStandardsApply","type":"radio","input":true,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"attributes":{},"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false,"onlyAvailableItems":false},"conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"inputType":"radio","fieldSet":false,"id":"ehz6d3p"},{"label":"Please indicate all that apply:","optionsLabelPosition":"right","tableView":false,"values":[{"label":"Agricultural, Urban park, Residential use (AL, PL, RL)","value":"agriculturalUrbanParkResidentialUseAlPlRl","shortcut":""},{"label":"Commercial use (CL)","value":"commercialUseCl","shortcut":""},{"label":"Industrial use (IL)","value":"industrialUseIl","shortcut":""},{"label":"Parkade","value":"parkade","shortcut":""},{"label":"Other","value":"other","shortcut":""}],"key":"pleaseIndicateAllThatApply","type":"selectboxes","input":true,"inputType":"checkbox","placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"attributes":{},"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false,"onlyAvailableItems":false},"conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"fieldSet":false,"inline":false,"id":"e2uphxt"},{"label":"Notes: if other is specified above, include description of assumptions for both current and future development of the site that the selected vapour attenuation factors are based on.","autoExpand":false,"tableView":true,"key":"notesIfOtherIsSpecifiedAboveIncludeDescriptionOfAssumptionsForBothCurrentAndFutureDevelopmentOfTheSiteThatTheSelectedVapourAttenuationFactorsAreBasedOn","type":"textarea","input":true,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":{"type":"input"},"attributes":{},"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false,"minLength":"","maxLength":"","pattern":"","minWords":"","maxWords":""},"conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"mask":false,"inputType":"text","inputFormat":"html","inputMask":"","displayMask":"","spellcheck":true,"truncateMultipleSpaces":false,"rows":3,"wysiwyg":false,"editor":"","fixedSize":true,"id":"eapxfka"},{"html":"

Sediment (CSR Schedule 3.4)

","label":"Content","refreshOnChange":false,"key":"content21","type":"content","input":false,"tableView":false,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"attributes":{},"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false},"conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"id":"emfcc6"},{"label":"Do sediment standards apply at your site?","optionsLabelPosition":"right","inline":false,"tableView":false,"values":[{"label":"Yes","value":"yes","shortcut":""},{"label":"No","value":"no","shortcut":""}],"key":"sedimentStandardsApply","type":"radio","input":true,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"attributes":{},"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false,"onlyAvailableItems":false},"conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"inputType":"radio","fieldSet":false,"id":"ep179tu"},{"html":"

Sediment

","label":"Content","refreshOnChange":false,"key":"content25","type":"content","input":false,"tableView":false,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"attributes":{},"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false},"conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"id":"eefkhsr"},{"html":"

Type of aquatic life:

","label":"Content","refreshOnChange":false,"key":"content22","type":"content","input":false,"tableView":false,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"attributes":{},"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false},"conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"id":"e3thv5"},{"label":"Freshwater","optionsLabelPosition":"right","inline":false,"tableView":false,"values":[{"label":"Yes","value":"yes","shortcut":""},{"label":"No","value":"no","shortcut":""}],"validate":{"required":true,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false,"onlyAvailableItems":false},"key":"aquaticLifeFreshwater","type":"radio","input":true,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"attributes":{},"validateOn":"change","conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"inputType":"radio","fieldSet":false,"id":"eiorz7g"},{"label":"Marine/Estuarine","optionsLabelPosition":"right","inline":false,"tableView":false,"values":[{"label":"Yes","value":"yes","shortcut":""},{"label":"No","value":"no","shortcut":""}],"validate":{"required":true,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false,"onlyAvailableItems":false},"key":"aquaticLifeMarineEstuarine","type":"radio","input":true,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"attributes":{},"validateOn":"change","conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"inputType":"radio","fieldSet":false,"id":"ejh5scg"},{"html":"

Type of Habitat:

","label":"Content","refreshOnChange":false,"key":"content23","type":"content","input":false,"tableView":false,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"attributes":{},"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false},"conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"id":"ep3ei0k"},{"label":"Sensitive","optionsLabelPosition":"right","inline":false,"tableView":false,"values":[{"label":"Yes","value":"yes","shortcut":""},{"label":"No","value":"no","shortcut":""}],"validate":{"required":true,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false,"onlyAvailableItems":false},"key":"sensitive","type":"radio","input":true,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"attributes":{},"validateOn":"change","conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"inputType":"radio","fieldSet":false,"id":"ey1i3fk"},{"label":"Typical","optionsLabelPosition":"right","inline":false,"tableView":false,"values":[{"label":"Yes","value":"yes","shortcut":""},{"label":"No","value":"no","shortcut":""}],"validate":{"required":true,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false,"onlyAvailableItems":false},"key":"typical","type":"radio","input":true,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"attributes":{},"validateOn":"change","conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"inputType":"radio","fieldSet":false,"id":"ehliufd"}],"placeholder":"","prefix":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":false,"clearOnHide":false,"refreshOn":"","redrawOn":"","dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"allowMultipleMasks":false,"addons":[],"tree":false,"lazyLoad":false,"id":"ezpn8f"},{"title":"SECTION V - Areas of Potential Environmental Concern (APEC) and Potential Contaminants of Concern (PCOC) Summary","theme":"default","tooltip":"","customClass":"","collapsible":false,"hidden":false,"hideLabel":false,"disabled":false,"modalEdit":false,"key":"sectionVAreasOfPotentialEnvironmentalConcernApecAndPotentialContaminantsOfConcernPcocSummary","tags":[],"properties":{},"customConditional":"","conditional":{"json":"","show":true,"when":"hasAnApprovalInPrincipalAiPBeenIssuedForThisSite","eq":"false"},"logic":[],"attributes":{},"overlay":{"style":"","page":"","left":"","top":"","width":"","height":""},"type":"panel","label":"Panel","breadcrumb":"default","tabindex":"","input":false,"tableView":false,"components":[{"html":"

Provide reference to a figure showing onsite and offsite APECs and PCOCs associated with each APEC 

","label":"Content","refreshOnChange":false,"key":"content24","type":"content","input":false,"tableView":false,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"attributes":{},"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false},"conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"id":"ep4sdn"},{"label":"add additional entries as necessary:","reorder":false,"addAnotherPosition":"bottom","layoutFixed":false,"enableRowGroups":false,"initEmpty":false,"tableView":false,"defaultValue":[{"report":"","figure":"","page":""}],"key":"dataGrid3","type":"datagrid","input":true,"components":[{"title":"References","collapsible":false,"key":"references","type":"panel","label":"","input":false,"tableView":false,"components":[{"label":"Report #","tableView":true,"validate":{"required":true,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false,"minLength":"","maxLength":"","pattern":""},"key":"report","type":"textfield","input":true,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":{"type":"input"},"attributes":{},"validateOn":"change","conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"mask":false,"inputType":"text","inputFormat":"plain","inputMask":"","displayMask":"","spellcheck":true,"truncateMultipleSpaces":false,"id":"e42c3ej"},{"label":"Figure #","tableView":true,"validate":{"required":true,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false,"minLength":"","maxLength":"","pattern":""},"key":"figure","type":"textfield","input":true,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":{"type":"input"},"attributes":{},"validateOn":"change","conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"mask":false,"inputType":"text","inputFormat":"plain","inputMask":"","displayMask":"","spellcheck":true,"truncateMultipleSpaces":false,"id":"e1sgs7i"},{"label":"Page #","tableView":true,"validate":{"required":true,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false,"minLength":"","maxLength":"","pattern":""},"key":"page","type":"textfield","input":true,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":{"type":"input"},"attributes":{},"validateOn":"change","conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"mask":false,"inputType":"text","inputFormat":"plain","inputMask":"","displayMask":"","spellcheck":true,"truncateMultipleSpaces":false,"id":"es5kcwo"}],"id":"egwgsw0000000000000000000000000000000000000000000000000000000000000000000000000000000000","placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":false,"hidden":false,"clearOnHide":false,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"attributes":{},"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false},"conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"tree":false,"lazyLoad":false,"theme":"default","breadcrumb":"default"}],"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"attributes":{},"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false},"conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"tree":true,"lazyLoad":false,"disableAddingRemovingRows":false,"id":"e7yn7b9"},{"html":"

Attention:

Include reports listed above outlining APECs and PCOCs

","label":"Content","refreshOnChange":false,"key":"content26","type":"content","input":false,"tableView":false,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"attributes":{},"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false},"conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"id":"ek43j2"},{"label":"I acknowledge that I will include reports as listed above ","tableView":false,"key":"iAcknowledgeThatIWillIncludeReportsAsListedAbove","type":"checkbox","input":true,"defaultValue":false,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":true,"labelPosition":"right","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"attributes":{},"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false},"conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"inputType":"checkbox","value":"","name":"","id":"e7orccq"},{"html":"

APEC and PCOC Summary

 

APEC Description: Describe location in relation to process source, waste, fill, land use or activity, etc., giving rise to APEC and if APEC is primarily due to soil or water contamination.

PCOC : Indicate products, chemicals, waste type, etc. and / or analytical parameter.

APEC and PCOC summary: List individual substances or groups of substances and their Chemical Abstract Service Numbers as they appear in the applicable schedule of the CSR. Attach lists or tables as needed.

","label":"Content","refreshOnChange":false,"key":"content27","type":"content","input":false,"tableView":false,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"attributes":{},"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false},"conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"id":"el9sxmn"},{"label":"","reorder":false,"addAnotherPosition":"bottom","layoutFixed":false,"enableRowGroups":false,"initEmpty":false,"tableView":false,"defaultValue":[{"apec":"","apecDescription":"","pcocS":"","pleaseIndicateWhereAnalysesCompleted":{"soil":false,"sediment":false,"groundwater":false,"surfaceWater":false,"vapour":false,"otherPleaseExplainBelow":false,"other":false}}],"key":"dataGrid4","type":"datagrid","input":true,"components":[{"title":"Summary","collapsible":false,"key":"summary","type":"panel","label":"Summaries","input":false,"tableView":false,"components":[{"label":"APEC #","tableView":true,"validate":{"required":true,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false,"minLength":"","maxLength":"","pattern":""},"key":"apec","type":"textfield","input":true,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":{"type":"input"},"attributes":{},"validateOn":"change","conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"mask":false,"inputType":"text","inputFormat":"plain","inputMask":"","displayMask":"","spellcheck":true,"truncateMultipleSpaces":false,"id":"ey16rue"},{"label":"APEC Description","autoExpand":false,"tableView":true,"validate":{"required":true,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false,"minLength":"","maxLength":"","pattern":"","minWords":"","maxWords":""},"key":"apecDescription","type":"textarea","input":true,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":{"type":"input"},"attributes":{},"validateOn":"change","conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"mask":false,"inputType":"text","inputFormat":"html","inputMask":"","displayMask":"","spellcheck":true,"truncateMultipleSpaces":false,"rows":3,"wysiwyg":false,"editor":"","fixedSize":true,"id":"euv345s"},{"label":"PCOC(s)","tableView":true,"validate":{"required":true,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false,"minLength":"","maxLength":"","pattern":""},"key":"pcocS","type":"textfield","input":true,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":{"type":"input"},"attributes":{},"validateOn":"change","conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"mask":false,"inputType":"text","inputFormat":"plain","inputMask":"","displayMask":"","spellcheck":true,"truncateMultipleSpaces":false,"id":"e7sbcyi"},{"label":"Please indicate where analyses completed:","optionsLabelPosition":"right","tableView":false,"values":[{"label":"Soil","value":"soil","shortcut":""},{"label":"Sediment","value":"sediment","shortcut":""},{"label":"Groundwater","value":"groundwater","shortcut":""},{"label":"Surface Water","value":"surfaceWater","shortcut":""},{"label":"Vapour","value":"vapour","shortcut":""},{"label":"Other (Please explain below)","value":"other","shortcut":""}],"validate":{"required":true,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false,"onlyAvailableItems":false},"key":"pleaseIndicateWhereAnalysesCompleted","type":"selectboxes","input":true,"inputType":"checkbox","defaultValue":{"soil":false,"sediment":false,"groundwater":false,"surfaceWater":false,"vapour":false,"otherPleaseExplainBelow":false,"other":false},"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"attributes":{},"validateOn":"change","conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"fieldSet":false,"inline":false,"id":"eg618ak"},{"label":"'Other' explanation","autoExpand":false,"tableView":true,"validate":{"required":true,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false,"minLength":"","maxLength":"","pattern":"","minWords":"","maxWords":""},"key":"otherExplanation","conditional":{"show":true,"when":"pleaseIndicateWhereAnalysesCompleted","eq":"other"},"type":"textarea","input":true,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":{"type":"input"},"attributes":{},"validateOn":"change","overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"mask":false,"inputType":"text","inputFormat":"html","inputMask":"","displayMask":"","spellcheck":true,"truncateMultipleSpaces":false,"rows":3,"wysiwyg":false,"editor":"","fixedSize":true,"id":"erxxdli"}],"id":"e09khr20000000000000000000000000000000000000000000000000000000000000000000000000000000000","placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":false,"hidden":false,"clearOnHide":false,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"attributes":{},"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false},"conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"tree":false,"lazyLoad":false,"theme":"default","breadcrumb":"default"}],"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"attributes":{},"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false},"conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"tree":true,"lazyLoad":false,"disableAddingRemovingRows":false,"id":"ei568rj"}],"placeholder":"","prefix":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":false,"clearOnHide":false,"refreshOn":"","redrawOn":"","dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"allowMultipleMasks":false,"addons":[],"tree":false,"lazyLoad":false,"id":"e7q3hil"},{"title":"SECTION VI - Areas of Environmental Concern (AEC) and Contaminants of Concern (COC) Summary","theme":"default","tooltip":"","customClass":"","collapsible":false,"hidden":false,"hideLabel":false,"disabled":false,"modalEdit":false,"key":"sectionViAreasOfEnvironmentalConcernAecAndContaminantsOfConcernCocSummary","tags":[],"properties":{},"customConditional":"","conditional":{"json":"","show":true,"when":"hasAnApprovalInPrincipalAiPBeenIssuedForThisSite","eq":"false"},"logic":[],"attributes":{},"overlay":{"style":"","page":"","left":"","top":"","width":"","height":""},"type":"panel","label":"Panel","breadcrumb":"default","tabindex":"","input":false,"tableView":false,"components":[{"html":"

Stage 2 Preliminary Site Investigation (PSI) 

Provide reference to figure(s) showing the AEC and COC associated with each AEC in onsite and offsite soil, water, sediment and/or vapour. Sample locations and corresponding analytical results shall be shown on each figure and in tabular form with reference to applicable standards:

","label":"Content","refreshOnChange":false,"key":"content28","type":"content","input":false,"tableView":false,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"attributes":{},"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false},"conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"id":"e348r8u"},{"label":"","reorder":false,"addAnotherPosition":"bottom","layoutFixed":false,"enableRowGroups":false,"initEmpty":false,"hideLabel":true,"tableView":false,"defaultValue":[{"environmentalMedium":"","report":"","page":"","figure":""}],"key":"dataGrid5","type":"datagrid","input":true,"components":[{"title":"Summary","collapsible":false,"key":"summary","type":"panel","label":"AEC and COC Summary","input":false,"tableView":false,"components":[{"label":"Environmental Medium","tableView":true,"validate":{"required":true,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false,"minLength":"","maxLength":"","pattern":""},"key":"environmentalMedium","type":"textfield","input":true,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":{"type":"input"},"attributes":{},"validateOn":"change","conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"mask":false,"inputType":"text","inputFormat":"plain","inputMask":"","displayMask":"","spellcheck":true,"truncateMultipleSpaces":false,"id":"emrnwt"},{"label":"Report #","tableView":true,"validate":{"required":true,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false,"minLength":"","maxLength":"","pattern":""},"key":"report","type":"textfield","input":true,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":{"type":"input"},"attributes":{},"validateOn":"change","conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"mask":false,"inputType":"text","inputFormat":"plain","inputMask":"","displayMask":"","spellcheck":true,"truncateMultipleSpaces":false,"id":"ezjgbqk"},{"label":"Page #","tableView":true,"validate":{"required":true,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false,"minLength":"","maxLength":"","pattern":""},"key":"page","type":"textfield","input":true,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":{"type":"input"},"attributes":{},"validateOn":"change","conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"mask":false,"inputType":"text","inputFormat":"plain","inputMask":"","displayMask":"","spellcheck":true,"truncateMultipleSpaces":false,"id":"e93qh3o"},{"label":"Figure #","tableView":true,"key":"figure","type":"textfield","input":true,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":{"type":"input"},"attributes":{},"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false,"minLength":"","maxLength":"","pattern":""},"conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"mask":false,"inputType":"text","inputFormat":"plain","inputMask":"","displayMask":"","spellcheck":true,"truncateMultipleSpaces":false,"id":"eu9o53q"}],"id":"eipn9d000000000000000000000000000000000000000000000000000000000000000000000000000000000","placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":false,"hidden":false,"clearOnHide":false,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"attributes":{},"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false},"conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"tree":false,"lazyLoad":false,"theme":"default","breadcrumb":"default"}],"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"attributes":{},"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false},"conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"tree":true,"lazyLoad":false,"disableAddingRemovingRows":false,"id":"enyqev"},{"html":"

Detailed Site Investigation (DSI) 

Provide references to figures (plan and section), with contours, showing the specific lateral and vertical distribution of each contaminant of concern in onsite and offsite soil, sediment, water and vapour. Sections shall be longitudinal and transverse with respect to groundwater flow and include physical conditions (e.g. stratigraphy, water table etc.). Sample locations with corresponding analytical results used to develop each figure shall be shown on the figure and in tabular form with reference to applicable standards:

","label":"Content","refreshOnChange":false,"key":"content29","type":"content","input":false,"tableView":false,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"attributes":{},"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false},"conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"id":"egzo5zb"},{"label":"","reorder":false,"addAnotherPosition":"bottom","layoutFixed":false,"enableRowGroups":false,"initEmpty":false,"hideLabel":true,"tableView":false,"defaultValue":[{"environmentalMedium":"","report":"","page":"","figure":""}],"key":"dataGrid6","type":"datagrid","input":true,"components":[{"title":"","collapsible":false,"key":"summary","type":"panel","label":"AEC and COC Summary","input":false,"tableView":false,"components":[{"label":"Environmental Medium","tableView":true,"validate":{"required":true,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false,"minLength":"","maxLength":"","pattern":""},"key":"environmentalMedium","type":"textfield","input":true,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":{"type":"input"},"attributes":{},"validateOn":"change","conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"mask":false,"inputType":"text","inputFormat":"plain","inputMask":"","displayMask":"","spellcheck":true,"truncateMultipleSpaces":false,"id":"edmm3sb"},{"label":"Report #","tableView":true,"validate":{"required":true,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false,"minLength":"","maxLength":"","pattern":""},"key":"report","type":"textfield","input":true,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":{"type":"input"},"attributes":{},"validateOn":"change","conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"mask":false,"inputType":"text","inputFormat":"plain","inputMask":"","displayMask":"","spellcheck":true,"truncateMultipleSpaces":false,"id":"e3mvybo"},{"label":"Page #","tableView":true,"validate":{"required":true,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false,"minLength":"","maxLength":"","pattern":""},"key":"page","type":"textfield","input":true,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":{"type":"input"},"attributes":{},"validateOn":"change","conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"mask":false,"inputType":"text","inputFormat":"plain","inputMask":"","displayMask":"","spellcheck":true,"truncateMultipleSpaces":false,"id":"eknllaa"},{"label":"Figure #","tableView":true,"key":"figure","type":"textfield","input":true,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":{"type":"input"},"attributes":{},"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false,"minLength":"","maxLength":"","pattern":""},"conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"mask":false,"inputType":"text","inputFormat":"plain","inputMask":"","displayMask":"","spellcheck":true,"truncateMultipleSpaces":false,"id":"ef617zf"}],"id":"ebh60il000000000000000000000000000000000000000000000000000000000000000000000000000000000","placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":false,"hidden":false,"clearOnHide":false,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"attributes":{},"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false},"conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"tree":false,"lazyLoad":false,"theme":"default","breadcrumb":"default"}],"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"attributes":{},"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false},"conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"tree":true,"lazyLoad":false,"disableAddingRemovingRows":false,"id":"e5mao0a"},{"html":"

AEC/APEC and COC Extent of Contamination

","label":"Content","refreshOnChange":false,"key":"content30","type":"content","input":false,"tableView":false,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"attributes":{},"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false},"conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"id":"e0havy"},{"label":"","reorder":false,"addAnotherPosition":"bottom","layoutFixed":false,"enableRowGroups":false,"initEmpty":false,"hideLabel":true,"tableView":false,"defaultValue":[{"aecApecUseSameSAsForApeCsInTableAbove":"","coc":"","mediumEGSoilGroundwaterSedimentVapourSurfaceWaterOther":"","maxMeasuredConcentrationIndicateUnits":"","areaM":"","depthRangeM":"","notes1":""}],"key":"dataGrid7","type":"datagrid","input":true,"components":[{"title":"","collapsible":false,"key":"panel8","type":"panel","label":"","input":false,"tableView":false,"components":[{"label":"AEC/APEC: Use same #s as for APECs in table above","tableView":true,"validate":{"required":true,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false,"minLength":"","maxLength":"","pattern":""},"key":"aecApecUseSameSAsForApeCsInTableAbove","type":"textfield","input":true,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":{"type":"input"},"attributes":{},"validateOn":"change","conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"mask":false,"inputType":"text","inputFormat":"plain","inputMask":"","displayMask":"","spellcheck":true,"truncateMultipleSpaces":false,"id":"e99tie4"},{"label":"COC","tableView":true,"validate":{"required":true,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false,"minLength":"","maxLength":"","pattern":""},"key":"coc","type":"textfield","input":true,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":{"type":"input"},"attributes":{},"validateOn":"change","conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"mask":false,"inputType":"text","inputFormat":"plain","inputMask":"","displayMask":"","spellcheck":true,"truncateMultipleSpaces":false,"id":"eo9g8ms"},{"label":"Medium","placeholder":"e.g. soil, groundwater, sediment, vapour, surface water, other","tableView":true,"validate":{"required":true,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false,"minLength":"","maxLength":"","pattern":""},"key":"mediumEGSoilGroundwaterSedimentVapourSurfaceWaterOther","type":"textfield","input":true,"prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":{"type":"input"},"attributes":{},"validateOn":"change","conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"mask":false,"inputType":"text","inputFormat":"plain","inputMask":"","displayMask":"","spellcheck":true,"truncateMultipleSpaces":false,"id":"erqoauyy"},{"label":"Max Measured Concentration (indicate units)","tableView":true,"validate":{"required":true,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false,"minLength":"","maxLength":"","pattern":""},"key":"maxMeasuredConcentrationIndicateUnits","type":"textfield","input":true,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":{"type":"input"},"attributes":{},"validateOn":"change","conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"mask":false,"inputType":"text","inputFormat":"plain","inputMask":"","displayMask":"","spellcheck":true,"truncateMultipleSpaces":false,"id":"eqfcnt7"},{"label":"Area (m²)","tableView":true,"validate":{"required":true,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false,"minLength":"","maxLength":"","pattern":""},"key":"areaM","type":"textfield","input":true,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":{"type":"input"},"attributes":{},"validateOn":"change","conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"mask":false,"inputType":"text","inputFormat":"plain","inputMask":"","displayMask":"","spellcheck":true,"truncateMultipleSpaces":false,"id":"ecx8h8h"},{"label":"Depth Range (m)","tableView":true,"validate":{"required":true,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false,"minLength":"","maxLength":"","pattern":""},"key":"depthRangeM","type":"textfield","input":true,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":{"type":"input"},"attributes":{},"validateOn":"change","conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"mask":false,"inputType":"text","inputFormat":"plain","inputMask":"","displayMask":"","spellcheck":true,"truncateMultipleSpaces":false,"id":"evgae2q"},{"label":"Notes","placeholder":"e.g. site type, classification, relevant approvals, etc.","autoExpand":false,"tableView":true,"key":"notes2","type":"textarea","input":true,"prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":{"type":"input"},"attributes":{},"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false,"minLength":"","maxLength":"","pattern":"","minWords":"","maxWords":""},"conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"mask":false,"inputType":"text","inputFormat":"html","inputMask":"","displayMask":"","spellcheck":true,"truncateMultipleSpaces":false,"rows":3,"wysiwyg":false,"editor":"","fixedSize":true,"id":"eak2oy8"}],"id":"evgsijp000000000000000000000000000000000000000000000000000000000000000000000000000000000","placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":false,"hidden":false,"clearOnHide":false,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"attributes":{},"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false},"conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"tree":false,"lazyLoad":false,"theme":"default","breadcrumb":"default"}],"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"attributes":{},"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false},"conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"tree":true,"lazyLoad":false,"disableAddingRemovingRows":false,"id":"e3pfzbj"}],"placeholder":"","prefix":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":false,"clearOnHide":false,"refreshOn":"","redrawOn":"","dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"allowMultipleMasks":false,"addons":[],"tree":false,"lazyLoad":false,"id":"e1tcxwk"},{"title":"SECTION VII - Offsite Migration","collapsible":false,"key":"sectionViiOffsiteMigration","conditional":{"show":true,"when":"hasAnApprovalInPrincipalAiPBeenIssuedForThisSite","eq":"no"},"type":"panel","label":"Panel","input":false,"tableView":false,"components":[{"label":"Is there evidence that one or more substances has migrated or is likely to have migrated to a neighbouring site and is or is likely causing contamination of the neighbouring property?","optionsLabelPosition":"right","inline":false,"tableView":false,"values":[{"label":"Yes","value":"yes","shortcut":""},{"label":"No","value":"no","shortcut":""}],"validate":{"required":true,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false,"onlyAvailableItems":false},"key":"isThereEvidenceThatOneOrMoreSubstancesHasMigratedOrIsLikelyToHaveMigratedToANeighbouringSiteAndIsOrIsLikelyCausingContaminationOfTheNeighbouringProperty","type":"radio","input":true,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"attributes":{},"validateOn":"change","conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"inputType":"radio","fieldSet":false,"id":"eyt9j6k"},{"label":"Has any sampling occurred offsite for PCOCs in any media?","optionsLabelPosition":"right","inline":false,"tableView":false,"values":[{"label":"Yes","value":"yes","shortcut":""},{"label":"No","value":"no","shortcut":""}],"validate":{"required":true,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false,"onlyAvailableItems":false},"key":"hasAnySamplingOccurredOffsiteForPcoCsInAnyMedia","type":"radio","input":true,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"attributes":{},"validateOn":"change","conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"inputType":"radio","fieldSet":false,"id":"e5kz2pn"},{"label":"Have preferential pathways been assessed? (including assessment of all neighbouring underground utility rights-of-way)","optionsLabelPosition":"right","inline":false,"tableView":false,"values":[{"label":"Yes","value":"yes","shortcut":""},{"label":"No","value":"no","shortcut":""}],"validate":{"required":true,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false,"onlyAvailableItems":false},"key":"havePreferentialPathwaysBeenAssessedIncludingAssessmentOfAllNeighbouringUndergroundUtilityRightsOfWay","type":"radio","input":true,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"attributes":{},"validateOn":"change","conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"inputType":"radio","fieldSet":false,"id":"e6fg35s"},{"title":"","collapsible":false,"hideLabel":true,"key":"panel3","conditional":{"show":true,"when":"isThereEvidenceThatOneOrMoreSubstancesHasMigratedOrIsLikelyToHaveMigratedToANeighbouringSiteAndIsOrIsLikelyCausingContaminationOfTheNeighbouringProperty","eq":"yes"},"type":"panel","label":"Panel","input":false,"tableView":false,"components":[{"label":"Current offsite transport of contaminants from the site","tableView":false,"key":"currentOffsiteTransportOfContaminantsFromTheSite","type":"checkbox","input":true,"defaultValue":false,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":true,"labelPosition":"right","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"attributes":{},"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false},"conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"inputType":"checkbox","value":"","name":"","id":"e75y38c"},{"label":"Historical offsite transport of contaminants from the site","tableView":false,"defaultValue":false,"key":"currentOffsiteTransportOfContaminantsFromTheSite1","type":"checkbox","input":true,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":true,"labelPosition":"right","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"attributes":{},"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false},"conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"inputType":"checkbox","value":"","name":"","id":"e2bknmb"},{"label":"Historical or Current offsite transport of contaminants from the site in:","optionsLabelPosition":"right","tableView":false,"defaultValue":{"groundwater":false,"surfaceWater":false,"vapour":false,"otherExplainBelow":false},"values":[{"label":"Groundwater","value":"groundwater","shortcut":""},{"label":"Surface Water","value":"surfaceWater","shortcut":""},{"label":"Vapour","value":"vapour","shortcut":""},{"label":"Other (explain below)","value":"otherExplainBelow","shortcut":""}],"key":"in","type":"selectboxes","input":true,"inputType":"checkbox","placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"attributes":{},"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false,"onlyAvailableItems":false},"conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"fieldSet":false,"inline":false,"id":"eon7ijc"},{"label":"If other, describe environmental media:","autoExpand":false,"tableView":true,"key":"ifOtherDescribeEnvironmentalMedia","type":"textarea","input":true,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":{"type":"input"},"attributes":{},"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false,"minLength":"","maxLength":"","pattern":"","minWords":"","maxWords":""},"conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"mask":false,"inputType":"text","inputFormat":"html","inputMask":"","displayMask":"","spellcheck":true,"truncateMultipleSpaces":false,"rows":3,"wysiwyg":false,"editor":"","fixedSize":true,"id":"e6tjnc8"},{"label":"Briefly describe the nature of and evidence for offsite migration (either known, suspected, or potential)","autoExpand":false,"tableView":true,"key":"brieflyDescribeTheNatureOfAndEvidenceForOffsiteMigrationEitherKnownSuspectedOrPotential","type":"textarea","input":true,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":{"type":"input"},"attributes":{},"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false,"minLength":"","maxLength":"","pattern":"","minWords":"","maxWords":""},"conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"mask":false,"inputType":"text","inputFormat":"html","inputMask":"","displayMask":"","spellcheck":true,"truncateMultipleSpaces":false,"rows":3,"wysiwyg":false,"editor":"","fixedSize":true,"id":"er9735"},{"label":"The impacted offsite lands are categorized as:","optionsLabelPosition":"right","tableView":false,"values":[{"label":"Having a potable groundwater source","value":"havingAPotableGroundwaterSource","shortcut":""},{"label":"Being aquatic habitat, as formally defined","value":"beingAquaticHabitatAsFormallyDefined","shortcut":""},{"label":"Agricultural lands","value":"agriculturalLands","shortcut":""},{"label":"Residential or Urban parklands","value":"residentialOrUrbanParklands","shortcut":""},{"label":"Commercial land","value":"commercialLand","shortcut":""},{"label":"Industrial land","value":"industrialLand","shortcut":""},{"label":"Wildlands","value":"wildlands","shortcut":""}],"key":"theImpactedOffsiteLandsAreCategorizedAs","type":"selectboxes","input":true,"inputType":"checkbox","placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"attributes":{},"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false,"onlyAvailableItems":false},"conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"fieldSet":false,"inline":false,"id":"e1stkrj"}],"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":false,"hidden":false,"clearOnHide":false,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"attributes":{},"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"tree":false,"lazyLoad":false,"theme":"default","breadcrumb":"default","id":"en99wz"}],"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":false,"hidden":false,"clearOnHide":false,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"attributes":{},"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"tree":false,"lazyLoad":false,"theme":"default","breadcrumb":"default","id":"edqxa27"},{"title":"SECTION VIII - Investigation or Interpretation Issues to be Adressed","theme":"default","tooltip":"","customClass":"","collapsible":false,"hidden":false,"hideLabel":false,"disabled":false,"modalEdit":false,"key":"sectionViiiInvestigationOrInterpretationIssuesToBeAdressed","tags":[],"properties":{},"customConditional":"","conditional":{"json":"","show":true,"when":"hasAnApprovalInPrincipalAiPBeenIssuedForThisSite","eq":"false"},"logic":[],"attributes":{},"overlay":{"style":"","page":"","left":"","top":"","width":"","height":""},"type":"panel","label":"Panel","breadcrumb":"default","tabindex":"","input":false,"tableView":false,"components":[{"label":"Identify any issues regarding investigations or interpretations if the PSI and DSI information may not satisfy the requirements of CSR Sections 58 and 59 and applicable protocols and guidance documents. Briefly describe how these deficiencies will be addressed. Enter n/a if not applicable.","autoExpand":false,"tableView":true,"key":"identifyAnyIssuesRegardingInvestigationsOrInterpretationsIfThePsiAndDsiInformationMayNotSatisfyTheRequirementsOfCsrSections58And59AndApplicableProtocolsAndGuidanceDocumentsBrieflyDescribeHowTheseDeficienciesWillBeAddressedEnterNAIfNotApplicable","type":"textarea","rows":5,"input":true,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":{"type":"input"},"attributes":{},"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false,"minLength":"","maxLength":"","pattern":"","minWords":"","maxWords":""},"conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"mask":false,"inputType":"text","inputFormat":"html","inputMask":"","displayMask":"","spellcheck":true,"truncateMultipleSpaces":false,"wysiwyg":false,"editor":"","fixedSize":true,"id":"ekbzgj"}],"placeholder":"","prefix":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":false,"clearOnHide":false,"refreshOn":"","redrawOn":"","dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"allowMultipleMasks":false,"addons":[],"tree":false,"lazyLoad":false,"id":"edczfu"},{"html":"

Part 5 - Remediation Summary

","label":"Content","customClass":"","refreshOnChange":false,"hidden":false,"modalEdit":false,"key":"content33","tags":[],"properties":{},"conditional":{"show":null,"when":null,"eq":"","json":""},"customConditional":"","logic":[],"attributes":{},"overlay":{"style":"","page":"","left":"","top":"","width":"","height":""},"type":"content","input":false,"tableView":false,"placeholder":"","prefix":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"clearOnHide":true,"refreshOn":"","redrawOn":"","dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"allowMultipleMasks":false,"addons":[],"id":"etcmt0o"},{"title":"SECTION I - Remediation Reporting Summary","theme":"default","tooltip":"","customClass":"","collapsible":false,"hidden":false,"hideLabel":false,"disabled":false,"modalEdit":false,"key":"sectionIRemediationReportingSummary","tags":[],"properties":{},"customConditional":"","conditional":{"json":"","show":null,"when":null,"eq":""},"logic":[],"attributes":{},"overlay":{"style":"","page":"","left":"","top":"","width":"","height":""},"type":"panel","label":"Panel","breadcrumb":"default","tabindex":"","input":false,"placeholder":"","prefix":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":false,"clearOnHide":false,"refreshOn":"","redrawOn":"","tableView":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"allowMultipleMasks":false,"addons":[],"tree":false,"lazyLoad":false,"components":[{"title":"Risk Assessment","theme":"default","tooltip":"","customClass":"","collapsible":false,"hidden":false,"hideLabel":false,"disabled":false,"modalEdit":false,"key":"riskAssessment","tags":[],"properties":{},"customConditional":"","conditional":{"json":"","show":null,"when":null,"eq":""},"logic":[],"attributes":{},"overlay":{"style":"","page":"","left":"","top":"","width":"","height":""},"type":"panel","label":"Panel","breadcrumb":"default","tabindex":"","input":false,"placeholder":"","prefix":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":false,"clearOnHide":false,"refreshOn":"","redrawOn":"","tableView":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"allowMultipleMasks":false,"addons":[],"tree":false,"lazyLoad":false,"components":[{"label":"Completed?","optionsLabelPosition":"right","tableView":false,"values":[{"label":"Yes","value":"yes","shortcut":""},{"label":"No","value":"no","shortcut":""}],"validate":{"required":true,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false,"onlyAvailableItems":false},"key":"completed4","type":"radio","input":true,"inputType":"radio","defaultValue":{"yes":false,"no":false},"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"attributes":{},"validateOn":"change","conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"fieldSet":false,"id":"e4gsdhh"},{"label":"Includes quantitative human health and ecological risk assessment report information or screening level risk assessment per EMA, CSR and current applicable ministry protocols, guidelines, checklists? ","optionsLabelPosition":"right","tableView":false,"values":[{"label":"Yes","value":"yes","shortcut":""},{"label":"No","value":"no","shortcut":""},{"label":"N/A","value":"nA","shortcut":""}],"validate":{"required":true,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false,"onlyAvailableItems":false},"key":"includesQuantitativeHumanHealthAndEcologicalRiskAssessmentReportInformationOrScreeningLevelRiskAssessmentPerEmaCsrAndCurrentApplicableMinistryProtocolsGuidelinesChecklists","type":"radio","input":true,"inputType":"radio","placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"attributes":{},"validateOn":"change","conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"fieldSet":false,"id":"ezw7671c"}],"id":"ejp45z9"},{"title":"Remediation Plan","theme":"default","tooltip":"","customClass":"","collapsible":false,"hidden":false,"hideLabel":false,"disabled":false,"modalEdit":false,"key":"riskAssessment1","tags":[],"properties":{},"customConditional":"","conditional":{"json":"","show":null,"when":null,"eq":""},"logic":[],"attributes":{},"overlay":{"style":"","page":"","left":"","top":"","width":"","height":""},"type":"panel","label":"Panel","breadcrumb":"default","tabindex":"","input":false,"tableView":false,"components":[{"label":"Completed?","optionsLabelPosition":"right","tableView":false,"values":[{"label":"Yes","value":"yes","shortcut":""},{"label":"No","value":"no","shortcut":""}],"validate":{"required":true,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false,"onlyAvailableItems":false},"key":"completed5","type":"radio","input":true,"inputType":"radio","defaultValue":{"yes":false,"no":false},"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"attributes":{},"validateOn":"change","conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"fieldSet":false,"id":"el5sg7"},{"label":"Includes CSR specified information for a Remediation Plan (see CSR S.1, 16, 47) and current applicable ministry protocols, guidelines, checklists, etc.?","optionsLabelPosition":"right","tableView":false,"values":[{"label":"Yes","value":"yes","shortcut":""},{"label":"No","value":"no","shortcut":""},{"label":"N/A","value":"nA","shortcut":""}],"validate":{"required":true,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false,"onlyAvailableItems":false},"key":"includesQuantitativeHumanHealthAndEcologicalRiskAssessmentReportInformationOrScreeningLevelRiskAssessmentPerEmaCsrAndCurrentApplicableMinistryProtocolsGuidelinesChecklists1","type":"radio","input":true,"inputType":"radio","defaultValue":{"yes":false,"no":false,"nA":false},"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"attributes":{},"validateOn":"change","conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"fieldSet":false,"id":"e8p4jr"}],"placeholder":"","prefix":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":false,"clearOnHide":false,"refreshOn":"","redrawOn":"","dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"allowMultipleMasks":false,"addons":[],"tree":false,"lazyLoad":false,"id":"evp1obv"},{"title":"Confirmation of Remediation","theme":"default","tooltip":"","customClass":"","collapsible":false,"hidden":false,"hideLabel":false,"disabled":false,"modalEdit":false,"key":"riskAssessment2","tags":[],"properties":{},"customConditional":"","conditional":{"json":"","show":null,"when":null,"eq":""},"logic":[],"attributes":{},"overlay":{"style":"","page":"","left":"","top":"","width":"","height":""},"type":"panel","label":"Panel","breadcrumb":"default","tabindex":"","input":false,"tableView":false,"components":[{"label":"Completed?","optionsLabelPosition":"right","tableView":false,"values":[{"label":"Yes","value":"yes","shortcut":""},{"label":"No","value":"no","shortcut":""}],"validate":{"required":true,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false,"onlyAvailableItems":false},"key":"completed6","type":"radio","input":true,"inputType":"radio","defaultValue":{"yes":false,"no":false},"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"attributes":{},"validateOn":"change","conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"fieldSet":false,"id":"ejkw9fd"},{"label":"Includes CSR specified information (see CSR S.49) and any current applicable ministry protocols, guidelines, checklists for COR reports? ","optionsLabelPosition":"right","tableView":false,"defaultValue":{"yes":false,"no":false,"nA":false},"values":[{"label":"Yes","value":"yes","shortcut":""},{"label":"No","value":"no","shortcut":""},{"label":"N/A","value":"nA","shortcut":""}],"validate":{"required":true,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false,"onlyAvailableItems":false},"key":"includesQuantitativeHumanHealthAndEcologicalRiskAssessmentReportInformationOrScreeningLevelRiskAssessmentPerEmaCsrAndCurrentApplicableMinistryProtocolsGuidelinesChecklists2","type":"radio","input":true,"inputType":"radio","placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"attributes":{},"validateOn":"change","conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"fieldSet":false,"id":"ezc4bx5"}],"placeholder":"","prefix":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":false,"clearOnHide":false,"refreshOn":"","redrawOn":"","dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"allowMultipleMasks":false,"addons":[],"tree":false,"lazyLoad":false,"id":"eg2f3g"},{"title":"Other Reports","theme":"default","tooltip":"","customClass":"","collapsible":false,"hidden":false,"hideLabel":false,"disabled":false,"modalEdit":false,"key":"riskAssessment3","tags":[],"properties":{},"customConditional":"","conditional":{"json":"","show":null,"when":null,"eq":""},"logic":[],"attributes":{},"overlay":{"style":"","page":"","left":"","top":"","width":"","height":""},"type":"panel","label":"Panel","breadcrumb":"default","tabindex":"","input":false,"tableView":false,"components":[{"label":"Completed?","optionsLabelPosition":"right","tableView":false,"values":[{"label":"Yes","value":"yes","shortcut":""},{"label":"No","value":"no","shortcut":""}],"validate":{"required":true,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false,"onlyAvailableItems":false},"key":"completed7","type":"radio","input":true,"inputType":"radio","defaultValue":{"yes":false,"no":false},"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"attributes":{},"validateOn":"change","conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"fieldSet":false,"id":"ew6b1fi"},{"label":"According to other guidelines? (Provide explanation in notes below. Indicate how reports assist understanding of conditions and/or remediation.) ","labelPosition":"top","optionsLabelPosition":"right","description":"","tooltip":"","customClass":"","tabindex":"","inline":false,"hidden":false,"hideLabel":false,"autofocus":false,"disabled":false,"tableView":false,"modalEdit":false,"defaultValue":{"yes":false,"no":false,"nA":false},"values":[{"label":"Yes","value":"yes","shortcut":""},{"label":"No","value":"no","shortcut":""},{"label":"N/A","value":"nA","shortcut":""}],"dataType":"","persistent":true,"protected":false,"dbIndex":false,"encrypted":false,"redrawOn":"","clearOnHide":true,"customDefaultValue":"","calculateValue":"","calculateServer":false,"allowCalculateOverride":false,"validate":{"required":true,"onlyAvailableItems":false,"customMessage":"","custom":"","customPrivate":false,"json":"","strictDateValidation":false,"multiple":false,"unique":false},"errorLabel":"","errors":"","key":"includesQuantitativeHumanHealthAndEcologicalRiskAssessmentReportInformationOrScreeningLevelRiskAssessmentPerEmaCsrAndCurrentApplicableMinistryProtocolsGuidelinesChecklists3","tags":[],"properties":{},"conditional":{"show":true,"when":"completed7","eq":"yes","json":""},"customConditional":"","logic":[],"attributes":{},"overlay":{"style":"","page":"","left":"","top":"","width":"","height":""},"type":"radio","input":true,"placeholder":"","prefix":"","suffix":"","multiple":false,"unique":false,"refreshOn":"","dataGridLabel":false,"widget":null,"validateOn":"change","showCharCount":false,"showWordCount":false,"allowMultipleMasks":false,"addons":[],"inputType":"radio","fieldSet":false,"id":"e9z694e"},{"label":"Notes","labelPosition":"top","placeholder":"","description":"","tooltip":"","prefix":"","suffix":"","widget":{"type":"input"},"displayMask":"","editor":"","autoExpand":false,"customClass":"","tabindex":"","autocomplete":"","hidden":false,"hideLabel":false,"showWordCount":false,"showCharCount":false,"autofocus":false,"spellcheck":true,"disabled":false,"tableView":true,"modalEdit":false,"multiple":false,"persistent":true,"inputFormat":"html","protected":false,"dbIndex":false,"case":"","truncateMultipleSpaces":false,"encrypted":false,"redrawOn":"","clearOnHide":true,"customDefaultValue":"","calculateValue":"","calculateServer":false,"allowCalculateOverride":false,"validateOn":"change","validate":{"required":true,"pattern":"","customMessage":"","custom":"","customPrivate":false,"json":"","minLength":"","maxLength":"","minWords":"","maxWords":"","strictDateValidation":false,"multiple":false,"unique":false},"unique":false,"errorLabel":"","errors":"","key":"notes1","tags":[],"properties":{},"conditional":{"show":true,"when":"completed7","eq":"yes","json":""},"customConditional":"","logic":[],"attributes":{},"overlay":{"style":"","page":"","left":"","top":"","width":"","height":""},"type":"textarea","rows":3,"wysiwyg":false,"input":true,"refreshOn":"","dataGridLabel":false,"allowMultipleMasks":false,"addons":[],"mask":false,"inputType":"text","inputMask":"","fixedSize":true,"id":"eirkrzs","defaultValue":""}],"placeholder":"","prefix":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":false,"clearOnHide":false,"refreshOn":"","redrawOn":"","dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"allowMultipleMasks":false,"addons":[],"tree":false,"lazyLoad":false,"id":"en3xr0m"},{"html":"

If completed remediation reports are not adequate or if reports have a different scope than those listed above in accordance with the CSR complete Section 5.6 - Outstanding Remediation Issues.

","label":"Content","customClass":"","refreshOnChange":false,"hidden":false,"modalEdit":false,"key":"content67","tags":[],"properties":{},"conditional":{"show":null,"when":null,"eq":"","json":""},"customConditional":"","logic":[],"attributes":{},"overlay":{"style":"","page":"","left":"","top":"","width":"","height":""},"type":"content","input":false,"tableView":false,"placeholder":"","prefix":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"clearOnHide":true,"refreshOn":"","redrawOn":"","dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"allowMultipleMasks":false,"addons":[],"id":"e4jq65"}],"id":"e8ipwk5"},{"title":"SECTION II - Proposed or Completed Remedial Activities","theme":"default","tooltip":"","customClass":"","collapsible":false,"hidden":false,"hideLabel":false,"disabled":false,"modalEdit":false,"key":"sectionIiProposedOrCompletedRemedialActivities","tags":[],"properties":{},"customConditional":"","conditional":{"json":"","show":null,"when":null,"eq":""},"logic":[],"attributes":{},"overlay":{"style":"","page":"","left":"","top":"","width":"","height":""},"type":"panel","label":"Panel","breadcrumb":"default","tabindex":"","input":false,"placeholder":"","prefix":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":false,"clearOnHide":false,"refreshOn":"","redrawOn":"","tableView":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"allowMultipleMasks":false,"addons":[],"tree":false,"lazyLoad":false,"components":[{"html":"

Describe all aspects of remediation including regulatory actions and activities to comply with numerical and/or risk-based standards

","label":"Content","customClass":"","refreshOnChange":false,"hidden":false,"modalEdit":false,"key":"content35","tags":[],"properties":{},"conditional":{"show":null,"when":null,"eq":"","json":""},"customConditional":"","logic":[],"attributes":{},"overlay":{"style":"","page":"","left":"","top":"","width":"","height":""},"type":"content","input":false,"tableView":false,"placeholder":"","prefix":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"clearOnHide":true,"refreshOn":"","redrawOn":"","dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"allowMultipleMasks":false,"addons":[],"id":"e3pr3l7"},{"label":"Regulatory: Notification of Independent Remediation, Approval in Principle, Certificate of Compliance, Determination, Restrictive Covenant etc.","labelPosition":"top","placeholder":"","description":"","tooltip":"","prefix":"","suffix":"","widget":{"type":"input"},"displayMask":"","editor":"","autoExpand":false,"customClass":"","tabindex":"","autocomplete":"","hidden":false,"hideLabel":false,"showWordCount":false,"showCharCount":false,"autofocus":false,"spellcheck":true,"disabled":false,"tableView":true,"modalEdit":false,"multiple":false,"persistent":true,"inputFormat":"html","protected":false,"dbIndex":false,"case":"","truncateMultipleSpaces":false,"encrypted":false,"redrawOn":"","clearOnHide":true,"customDefaultValue":"","calculateValue":"","calculateServer":false,"allowCalculateOverride":false,"validateOn":"change","validate":{"required":true,"pattern":"","customMessage":"","custom":"","customPrivate":false,"json":"","minLength":"","maxLength":"","minWords":"","maxWords":"","strictDateValidation":false,"multiple":false,"unique":false},"unique":false,"errorLabel":"","errors":"","key":"regulatoryNotificationOfIndependentRemediationApprovalInPrincipleCertificateOfComplianceDeterminationRestrictiveCovenantEtc","tags":[],"properties":{},"conditional":{"show":null,"when":null,"eq":"","json":""},"customConditional":"","logic":[],"attributes":{},"overlay":{"style":"","page":"","left":"","top":"","width":"","height":""},"type":"textarea","rows":3,"wysiwyg":false,"input":true,"refreshOn":"","dataGridLabel":false,"allowMultipleMasks":false,"addons":[],"mask":false,"inputType":"text","inputMask":"","fixedSize":true,"id":"elmoc77","defaultValue":""},{"label":"If commitments or conditions to be met are included in an Approval in Principle issued for the site, list these conditions and identify how they were met though remedial activities. ","labelPosition":"top","placeholder":"","description":"","tooltip":"","prefix":"","suffix":"","widget":{"type":"input"},"displayMask":"","editor":"","autoExpand":false,"customClass":"","tabindex":"","autocomplete":"","hidden":false,"hideLabel":false,"showWordCount":false,"showCharCount":false,"autofocus":false,"spellcheck":true,"disabled":false,"tableView":true,"modalEdit":false,"multiple":false,"persistent":true,"inputFormat":"html","protected":false,"dbIndex":false,"case":"","truncateMultipleSpaces":false,"encrypted":false,"redrawOn":"","clearOnHide":true,"customDefaultValue":"","calculateValue":"","calculateServer":false,"allowCalculateOverride":false,"validateOn":"change","validate":{"required":true,"pattern":"","customMessage":"","custom":"","customPrivate":false,"json":"","minLength":"","maxLength":"","minWords":"","maxWords":"","strictDateValidation":false,"multiple":false,"unique":false},"unique":false,"errorLabel":"","errors":"","key":"ifCommitmentsOrConditionsToBeMetAreIncludedInAnApprovalInPrincipleIssuedForTheSiteListTheseConditionsAndIdentifyHowTheyWereMetThoughRemedialActivities","tags":[],"properties":{},"conditional":{"show":null,"when":null,"eq":"","json":""},"customConditional":"","logic":[],"attributes":{},"overlay":{"style":"","page":"","left":"","top":"","width":"","height":""},"type":"textarea","rows":3,"wysiwyg":false,"input":true,"refreshOn":"","dataGridLabel":false,"allowMultipleMasks":false,"addons":[],"mask":false,"inputType":"text","inputMask":"","fixedSize":true,"id":"eg9hfx","defaultValue":""},{"label":"Remediation to comply with numerical standards (Excavation / disposal of soil, Treatment of soil; Treatment of groundwater, etc.) ","labelPosition":"top","placeholder":"","description":"","tooltip":"","prefix":"","suffix":"","widget":{"type":"input"},"displayMask":"","editor":"","autoExpand":false,"customClass":"","tabindex":"","autocomplete":"","hidden":false,"hideLabel":false,"showWordCount":false,"showCharCount":false,"autofocus":false,"spellcheck":true,"disabled":false,"tableView":true,"modalEdit":false,"multiple":false,"persistent":true,"inputFormat":"html","protected":false,"dbIndex":false,"case":"","truncateMultipleSpaces":false,"encrypted":false,"redrawOn":"","clearOnHide":true,"customDefaultValue":"","calculateValue":"","calculateServer":false,"allowCalculateOverride":false,"validateOn":"change","validate":{"required":true,"pattern":"","customMessage":"","custom":"","customPrivate":false,"json":"","minLength":"","maxLength":"","minWords":"","maxWords":"","strictDateValidation":false,"multiple":false,"unique":false},"unique":false,"errorLabel":"","errors":"","key":"remediationToComplyWithNumericalStandardsExcavationDisposalOfSoilTreatmentOfSoilTreatmentOfGroundwaterEtc","tags":[],"properties":{},"conditional":{"show":null,"when":null,"eq":"","json":""},"customConditional":"","logic":[],"attributes":{},"overlay":{"style":"","page":"","left":"","top":"","width":"","height":""},"type":"textarea","rows":3,"wysiwyg":false,"input":true,"refreshOn":"","dataGridLabel":false,"allowMultipleMasks":false,"addons":[],"mask":false,"inputType":"text","inputMask":"","fixedSize":true,"id":"ed566qt","defaultValue":""},{"html":"

Screening Level Risk Assessment

","label":"Content","customClass":"","refreshOnChange":false,"hidden":false,"modalEdit":false,"key":"content36","tags":[],"properties":{},"conditional":{"show":null,"when":null,"eq":"","json":""},"customConditional":"","logic":[],"attributes":{},"overlay":{"style":"","page":"","left":"","top":"","width":"","height":""},"type":"content","input":false,"placeholder":"","prefix":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"clearOnHide":true,"refreshOn":"","redrawOn":"","tableView":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"allowMultipleMasks":false,"addons":[],"id":"enhsylu"},{"label":"Intended","labelPosition":"top","optionsLabelPosition":"right","description":"","tooltip":"","customClass":"","tabindex":"","inline":false,"hidden":false,"hideLabel":false,"autofocus":false,"disabled":false,"tableView":false,"modalEdit":false,"values":[{"label":"Yes","value":"yes","shortcut":""},{"label":"No","value":"no","shortcut":""}],"dataType":"","persistent":true,"protected":false,"dbIndex":false,"encrypted":false,"redrawOn":"","clearOnHide":true,"customDefaultValue":"","calculateValue":"","calculateServer":false,"allowCalculateOverride":false,"validate":{"required":true,"onlyAvailableItems":false,"customMessage":"","custom":"","customPrivate":false,"json":"","strictDateValidation":false,"multiple":false,"unique":false},"errorLabel":"","errors":"","key":"intended","tags":[],"properties":{},"conditional":{"show":null,"when":null,"eq":"","json":""},"customConditional":"","logic":[],"attributes":{},"overlay":{"style":"","page":"","left":"","top":"","width":"","height":""},"type":"radio","input":true,"placeholder":"","prefix":"","suffix":"","multiple":false,"unique":false,"refreshOn":"","dataGridLabel":false,"widget":null,"validateOn":"change","showCharCount":false,"showWordCount":false,"allowMultipleMasks":false,"addons":[],"inputType":"radio","fieldSet":false,"id":"egyizxi","defaultValue":""},{"label":"Carried out","labelPosition":"top","optionsLabelPosition":"right","description":"","tooltip":"","customClass":"","tabindex":"","inline":false,"hidden":false,"hideLabel":false,"autofocus":false,"disabled":false,"tableView":false,"modalEdit":false,"values":[{"label":"Yes","value":"yes","shortcut":""},{"label":"No","value":"no","shortcut":""}],"dataType":"","persistent":true,"protected":false,"dbIndex":false,"encrypted":false,"redrawOn":"","clearOnHide":true,"customDefaultValue":"","calculateValue":"","calculateServer":false,"allowCalculateOverride":false,"validate":{"required":true,"onlyAvailableItems":false,"customMessage":"","custom":"","customPrivate":false,"json":"","strictDateValidation":false,"multiple":false,"unique":false},"errorLabel":"","errors":"","key":"intended1","tags":[],"properties":{},"conditional":{"show":null,"when":null,"eq":"","json":""},"customConditional":"","logic":[],"attributes":{},"overlay":{"style":"","page":"","left":"","top":"","width":"","height":""},"type":"radio","input":true,"placeholder":"","prefix":"","suffix":"","multiple":false,"unique":false,"refreshOn":"","dataGridLabel":false,"widget":null,"validateOn":"change","showCharCount":false,"showWordCount":false,"allowMultipleMasks":false,"addons":[],"inputType":"radio","fieldSet":false,"id":"efbt54b","defaultValue":""},{"html":"

Quantitative Risk Assessment

","label":"Content","customClass":"","refreshOnChange":false,"hidden":false,"modalEdit":false,"key":"content37","tags":[],"properties":{},"conditional":{"show":null,"when":null,"eq":"","json":""},"customConditional":"","logic":[],"attributes":{},"overlay":{"style":"","page":"","left":"","top":"","width":"","height":""},"type":"content","input":false,"tableView":false,"placeholder":"","prefix":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"clearOnHide":true,"refreshOn":"","redrawOn":"","dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"allowMultipleMasks":false,"addons":[],"id":"e7p5rjw"},{"label":"Intended","optionsLabelPosition":"right","inline":false,"tableView":false,"values":[{"label":"Yes","value":"yes","shortcut":""},{"label":"No","value":"no","shortcut":""}],"validate":{"required":true,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false,"onlyAvailableItems":false},"key":"intended2","type":"radio","input":true,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"attributes":{},"validateOn":"change","conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"inputType":"radio","fieldSet":false,"id":"emo5xjg"},{"label":"Carried out","optionsLabelPosition":"right","inline":false,"tableView":false,"values":[{"label":"Yes","value":"yes","shortcut":""},{"label":"No","value":"no","shortcut":""}],"validate":{"required":true,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false,"onlyAvailableItems":false},"key":"intended3","type":"radio","input":true,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"attributes":{},"validateOn":"change","conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"inputType":"radio","fieldSet":false,"id":"euhh0a4"},{"html":"

If yes for any above, complete Section 5.5 (Summary of Residual Contamination)

","label":"Content","customClass":"","refreshOnChange":false,"hidden":false,"modalEdit":false,"key":"content38","tags":[],"properties":{},"conditional":{"show":null,"when":null,"eq":"","json":""},"customConditional":"","logic":[],"attributes":{},"overlay":{"style":"","page":"","left":"","top":"","width":"","height":""},"type":"content","input":false,"tableView":false,"placeholder":"","prefix":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"clearOnHide":true,"refreshOn":"","redrawOn":"","dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"allowMultipleMasks":false,"addons":[],"id":"ez6x9bq"},{"label":"Describe risk management / exposure reduction methods intended or implemented and indicate the status of any measures.","labelPosition":"top","placeholder":"e.g., Physical / engineering: monitoring, capping or barriers to exposure; Institutional: registration of restrictive covenants, financial security, etc.","description":"","tooltip":"","prefix":"","suffix":"","widget":{"type":"input"},"displayMask":"","editor":"","autoExpand":false,"customClass":"","tabindex":"","autocomplete":"","hidden":false,"hideLabel":false,"showWordCount":false,"showCharCount":false,"autofocus":false,"spellcheck":true,"disabled":false,"tableView":true,"modalEdit":false,"multiple":false,"persistent":true,"inputFormat":"html","protected":false,"dbIndex":false,"case":"","truncateMultipleSpaces":false,"encrypted":false,"redrawOn":"","clearOnHide":true,"customDefaultValue":"","calculateValue":"","calculateServer":false,"allowCalculateOverride":false,"validateOn":"change","validate":{"required":false,"pattern":"","customMessage":"","custom":"","customPrivate":false,"json":"","minLength":"","maxLength":"","minWords":"","maxWords":"","strictDateValidation":false,"multiple":false,"unique":false},"unique":false,"errorLabel":"","errors":"","key":"describeRiskManagementExposureReductionMethodsIntendedOrImplementedAndIndicateTheStatusOfAnyMeasures","tags":[],"properties":{},"conditional":{"show":null,"when":null,"eq":"","json":""},"customConditional":"","logic":[],"attributes":{},"overlay":{"style":"","page":"","left":"","top":"","width":"","height":""},"type":"textarea","rows":6,"wysiwyg":false,"input":true,"refreshOn":"","dataGridLabel":false,"allowMultipleMasks":false,"addons":[],"mask":false,"inputType":"text","inputMask":"","fixedSize":true,"id":"ew7umzp","defaultValue":""},{"html":"

Provide a reference to signed and stamped design drawings provided by a professional engineer for works installed at site boundaries to prevent recontamination of a site.

","label":"Content","customClass":"","refreshOnChange":false,"hidden":false,"modalEdit":false,"key":"content39","tags":[],"properties":{},"conditional":{"show":null,"when":null,"eq":"","json":""},"customConditional":"","logic":[],"attributes":{},"overlay":{"style":"","page":"","left":"","top":"","width":"","height":""},"type":"content","input":false,"tableView":false,"placeholder":"","prefix":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"clearOnHide":true,"refreshOn":"","redrawOn":"","dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"allowMultipleMasks":false,"addons":[],"id":"e8a6e6"},{"label":"","reorder":false,"addAnotherPosition":"bottom","layoutFixed":false,"enableRowGroups":false,"initEmpty":false,"tableView":false,"defaultValue":[{"report":"","page":"","orAppendix":""}],"key":"references","type":"datagrid","input":true,"components":[{"title":"","collapsible":false,"key":"panel4","type":"panel","label":"References","input":false,"tableView":false,"components":[{"label":"Columns","columns":[{"components":[{"label":"Report #","tableView":true,"validate":{"required":true,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false,"minLength":"","maxLength":"","pattern":""},"key":"report","type":"textfield","input":true,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":{"type":"input"},"attributes":{},"validateOn":"change","conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"mask":false,"inputType":"text","inputFormat":"plain","inputMask":"","displayMask":"","spellcheck":true,"truncateMultipleSpaces":false,"id":"ev76fb"}],"width":4,"offset":0,"push":0,"pull":0,"size":"md","currentWidth":4},{"components":[{"label":"Page #","tableView":true,"validate":{"required":true,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false,"minLength":"","maxLength":"","pattern":""},"key":"page","type":"textfield","input":true,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":{"type":"input"},"attributes":{},"validateOn":"change","conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"mask":false,"inputType":"text","inputFormat":"plain","inputMask":"","displayMask":"","spellcheck":true,"truncateMultipleSpaces":false,"id":"exu4dc8"}],"width":4,"offset":0,"push":0,"pull":0,"size":"md","currentWidth":4},{"components":[{"label":"Appendix #","tableView":true,"validate":{"required":true,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false,"minLength":"","maxLength":"","pattern":""},"key":"orAppendix","type":"textfield","input":true,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":{"type":"input"},"attributes":{},"validateOn":"change","conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"mask":false,"inputType":"text","inputFormat":"plain","inputMask":"","displayMask":"","spellcheck":true,"truncateMultipleSpaces":false,"id":"e1a2r8o"}],"size":"md","width":4,"offset":0,"push":0,"pull":0,"currentWidth":4}],"key":"columns","type":"columns","input":false,"tableView":false,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":false,"hidden":false,"clearOnHide":false,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"attributes":{},"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false},"conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"tree":false,"lazyLoad":false,"autoAdjust":false,"id":"e9e5bm"}],"id":"e6l31cy0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000","placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":false,"hidden":false,"clearOnHide":false,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"attributes":{},"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false},"conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"tree":false,"lazyLoad":false,"theme":"default","breadcrumb":"default"}],"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"attributes":{},"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false},"conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"tree":true,"lazyLoad":false,"disableAddingRemovingRows":false,"id":"e2jy1yl"}],"id":"epn9oxk"},{"title":"SECTION III - Summary of Remediation Plan/Remediation","theme":"default","tooltip":"","customClass":"","collapsible":false,"hidden":false,"hideLabel":false,"disabled":false,"modalEdit":false,"key":"sectionIiiSummaryOfRemediationPlanRemediation","tags":[],"properties":{},"customConditional":"","conditional":{"json":"","show":null,"when":null,"eq":""},"logic":[],"attributes":{},"overlay":{"style":"","page":"","left":"","top":"","width":"","height":""},"type":"panel","label":"Panel","breadcrumb":"default","tabindex":"","input":false,"placeholder":"","prefix":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":false,"clearOnHide":false,"refreshOn":"","redrawOn":"","tableView":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"allowMultipleMasks":false,"addons":[],"tree":false,"lazyLoad":false,"components":[{"html":"

Remediation Standards and Schedule

","label":"Content","customClass":"","refreshOnChange":false,"hidden":false,"modalEdit":false,"key":"content40","tags":[],"properties":{},"conditional":{"show":null,"when":null,"eq":"","json":""},"customConditional":"","logic":[],"attributes":{},"overlay":{"style":"","page":"","left":"","top":"","width":"","height":""},"type":"content","input":false,"tableView":false,"placeholder":"","prefix":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"clearOnHide":true,"refreshOn":"","redrawOn":"","dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"allowMultipleMasks":false,"addons":[],"id":"ep2zw9j"},{"label":"Environmental medium assessed. Select all that apply. (If this SOSC is to support a Negative Determination Application, select N/A)","labelPosition":"top","optionsLabelPosition":"right","description":"","tooltip":"","customClass":"","tabindex":"","inline":false,"hidden":false,"hideLabel":false,"autofocus":false,"disabled":false,"tableView":false,"modalEdit":false,"defaultValue":{"soil":false,"groundwater":false,"surfaceWater":false,"sediment":false,"nA":false,"vapour":false},"values":[{"label":"Soil","value":"soil","shortcut":""},{"label":"Groundwater","value":"groundwater","shortcut":""},{"label":"Surface Water","value":"surfaceWater","shortcut":""},{"label":"Vapour","value":"vapour","shortcut":""},{"label":"Sediment","value":"sediment","shortcut":""},{"label":"N/A","value":"nA","shortcut":""}],"persistent":true,"protected":false,"dbIndex":false,"encrypted":false,"redrawOn":"","clearOnHide":true,"customDefaultValue":"","calculateValue":"","calculateServer":false,"allowCalculateOverride":false,"validate":{"required":true,"onlyAvailableItems":false,"customMessage":"","custom":"","customPrivate":false,"json":"","strictDateValidation":false,"multiple":false,"unique":false},"errorLabel":"","minSelectedCountMessage":"","maxSelectedCountMessage":"","errors":"","key":"environmentalMediumAssessedSelectAllThatApplyIfThisSoscIsToSupportANegativeDeterminationApplicationSelectNA","tags":[],"properties":{},"conditional":{"show":null,"when":null,"eq":"","json":""},"customConditional":"","logic":[],"attributes":{},"overlay":{"style":"","page":"","left":"","top":"","width":"","height":""},"type":"selectboxes","input":true,"inputType":"checkbox","placeholder":"","prefix":"","suffix":"","multiple":false,"unique":false,"refreshOn":"","dataGridLabel":false,"widget":null,"validateOn":"change","showCharCount":false,"showWordCount":false,"allowMultipleMasks":false,"addons":[],"fieldSet":false,"id":"e165oim"},{"label":"Soil","labelPosition":"top","description":"","tooltip":"","disableAddingRemovingRows":false,"conditionalAddButton":"","reorder":false,"addAnother":"","addAnotherPosition":"bottom","layoutFixed":false,"enableRowGroups":false,"initEmpty":false,"customClass":"","tabindex":"","hidden":false,"hideLabel":false,"autofocus":false,"disabled":false,"tableView":false,"modalEdit":false,"defaultValue":[{"aecUseTheSameAecAsForAeCsInSection46":"","coc":"","remediatedToTheFollowingStandardProposedOrCompleted":{"numericalStandardGuidelineOrCriteria":false,"siteSpecificNumericalStandard":false,"backgroundConcentrationAttachProtocol4ApprovalIfApplicable":false,"riskBased":false},"remediationComplete":"","proposedOrActualCompletionDate":"00/00/0000"}],"persistent":true,"protected":false,"dbIndex":false,"encrypted":false,"redrawOn":"","clearOnHide":true,"customDefaultValue":"","calculateValue":"","calculateServer":false,"allowCalculateOverride":false,"validateOn":"change","validate":{"required":false,"minLength":"","maxLength":"","customMessage":"","custom":"","customPrivate":false,"json":"","strictDateValidation":false,"multiple":false,"unique":false},"errorLabel":"","errors":"","key":"dataGrid8","tags":[],"properties":{},"conditional":{"show":true,"when":"environmentalMediumAssessedSelectAllThatApplyIfThisSoscIsToSupportANegativeDeterminationApplicationSelectNA","eq":"soil","json":""},"customConditional":"","logic":[],"attributes":{},"overlay":{"style":"","page":"","left":"","top":"","width":"","height":""},"type":"datagrid","input":true,"components":[{"title":"Soil","collapsible":false,"hideLabel":true,"key":"panel4","type":"panel","label":"","input":false,"tableView":false,"components":[{"label":"AEC # (Use the same AEC# as for AECs in the table in Section 4.6)","tableView":true,"validate":{"required":true,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false,"minLength":"","maxLength":"","pattern":""},"key":"aecUseTheSameAecAsForAeCsInSection46","type":"textfield","input":true,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":{"type":"input"},"attributes":{},"validateOn":"change","conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"mask":false,"inputType":"text","inputFormat":"plain","inputMask":"","displayMask":"","spellcheck":true,"truncateMultipleSpaces":false,"id":"eaf7t1"},{"label":"COC","tableView":true,"validate":{"required":true,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false,"minLength":"","maxLength":"","pattern":""},"key":"coc","type":"textfield","input":true,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":{"type":"input"},"attributes":{},"validateOn":"change","conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"mask":false,"inputType":"text","inputFormat":"plain","inputMask":"","displayMask":"","spellcheck":true,"truncateMultipleSpaces":false,"id":"eoda2go"},{"label":"Remediated to the following standard (proposed or completed)","optionsLabelPosition":"right","tableView":false,"values":[{"label":"Numerical (standard, guideline or criteria)","value":"numericalStandardGuidelineOrCriteria","shortcut":""},{"label":"Site-Specific numerical standard","value":"siteSpecificNumericalStandard","shortcut":""},{"label":"Background concentration (attach protocol 4 approval if applicable)","value":"backgroundConcentrationAttachProtocol4ApprovalIfApplicable","shortcut":""},{"label":"Risk-based","value":"riskBased","shortcut":""}],"validate":{"required":true,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false,"onlyAvailableItems":false},"key":"remediatedToTheFollowingStandardProposedOrCompleted","type":"selectboxes","input":true,"inputType":"checkbox","placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"attributes":{},"validateOn":"change","conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"fieldSet":false,"inline":false,"id":"emv34m"},{"label":"Remediation complete","optionsLabelPosition":"right","inline":false,"tableView":false,"values":[{"label":"Yes","value":"yes","shortcut":""},{"label":"No","value":"no","shortcut":""},{"label":"Remediation Planned","value":"remediationPlanned","shortcut":""}],"validate":{"required":true,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false,"onlyAvailableItems":false},"key":"remediationComplete","type":"radio","input":true,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"attributes":{},"validateOn":"change","conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"inputType":"radio","fieldSet":false,"id":"ek8hrjd"},{"label":"Proposed or actual completion date","hideInputLabels":false,"inputsLabelPosition":"top","useLocaleSettings":false,"tableView":false,"fields":{"day":{"hide":false,"required":true,"type":"number","placeholder":""},"month":{"hide":false,"required":true,"type":"select","placeholder":""},"year":{"hide":false,"required":true,"type":"number","placeholder":""}},"defaultValue":"00/00/0000","key":"proposedOrActualCompletionDate","type":"day","input":true,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"attributes":{},"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false},"conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"dayFirst":false,"id":"eb274z"}],"id":"eauzdys000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000","placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":false,"hidden":false,"clearOnHide":false,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"attributes":{},"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false},"conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"tree":false,"lazyLoad":false,"theme":"default","breadcrumb":"default"}],"placeholder":"","prefix":"","suffix":"","multiple":false,"unique":false,"refreshOn":"","dataGridLabel":false,"widget":null,"showCharCount":false,"showWordCount":false,"allowMultipleMasks":false,"addons":[],"tree":true,"lazyLoad":false,"id":"eojass"},{"label":"Groundwater","labelPosition":"top","description":"","tooltip":"","disableAddingRemovingRows":false,"conditionalAddButton":"","reorder":false,"addAnother":"","addAnotherPosition":"bottom","layoutFixed":false,"enableRowGroups":false,"initEmpty":false,"customClass":"","tabindex":"","hidden":false,"hideLabel":false,"autofocus":false,"disabled":false,"tableView":false,"modalEdit":false,"defaultValue":[{"aecUseTheSameAecAsForAeCsInSection46":"","coc":"","remediatedToTheFollowingStandardProposedOrCompleted":{"numericalStandardGuidelineOrCriteria":false,"siteSpecificNumericalStandard":false,"backgroundConcentrationAttachProtocol4ApprovalIfApplicable":false,"riskBased":false},"remediationComplete":"","proposedOrActualCompletionDate":"00/00/0000"}],"persistent":true,"protected":false,"dbIndex":false,"encrypted":false,"redrawOn":"","clearOnHide":true,"customDefaultValue":"","calculateValue":"","calculateServer":false,"allowCalculateOverride":false,"validateOn":"change","validate":{"required":false,"minLength":"","maxLength":"","customMessage":"","custom":"","customPrivate":false,"json":"","strictDateValidation":false,"multiple":false,"unique":false},"errorLabel":"","errors":"","key":"dataGrid9","tags":[],"properties":{},"conditional":{"show":true,"when":"environmentalMediumAssessedSelectAllThatApplyIfThisSoscIsToSupportANegativeDeterminationApplicationSelectNA","eq":"groundwater","json":""},"customConditional":"","logic":[],"attributes":{},"overlay":{"style":"","page":"","left":"","top":"","width":"","height":""},"type":"datagrid","input":true,"components":[{"title":"Groundwater","collapsible":false,"hideLabel":true,"key":"groundwater","type":"panel","label":"","input":false,"tableView":false,"components":[{"label":"AEC # (Use the same AEC# as for AECs in the table in Section 4.6)","tableView":true,"validate":{"required":true,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false,"minLength":"","maxLength":"","pattern":""},"key":"aecUseTheSameAecAsForAeCsInSection46","type":"textfield","input":true,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":{"type":"input"},"attributes":{},"validateOn":"change","conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"mask":false,"inputType":"text","inputFormat":"plain","inputMask":"","displayMask":"","spellcheck":true,"truncateMultipleSpaces":false,"id":"ej8l9ey"},{"label":"COC","tableView":true,"validate":{"required":true,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false,"minLength":"","maxLength":"","pattern":""},"key":"coc","type":"textfield","input":true,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":{"type":"input"},"attributes":{},"validateOn":"change","conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"mask":false,"inputType":"text","inputFormat":"plain","inputMask":"","displayMask":"","spellcheck":true,"truncateMultipleSpaces":false,"id":"e9w6crd"},{"label":"Remediated to the following standard (proposed or completed)","optionsLabelPosition":"right","tableView":false,"values":[{"label":"Numerical (standard, guideline or criteria)","value":"numericalStandardGuidelineOrCriteria","shortcut":""},{"label":"Site-Specific numerical standard","value":"siteSpecificNumericalStandard","shortcut":""},{"label":"Background concentration (attach protocol 4 approval if applicable)","value":"backgroundConcentrationAttachProtocol4ApprovalIfApplicable","shortcut":""},{"label":"Risk-based","value":"riskBased","shortcut":""}],"validate":{"required":true,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false,"onlyAvailableItems":false},"key":"remediatedToTheFollowingStandardProposedOrCompleted","type":"selectboxes","input":true,"inputType":"checkbox","placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"attributes":{},"validateOn":"change","conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"fieldSet":false,"inline":false,"id":"euyjc8g"},{"label":"Remediation complete","optionsLabelPosition":"right","inline":false,"tableView":false,"values":[{"label":"Yes","value":"yes","shortcut":""},{"label":"No","value":"no","shortcut":""},{"label":"Remediation Planned","value":"remediationPlanned","shortcut":""}],"validate":{"required":true,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false,"onlyAvailableItems":false},"key":"remediationComplete","type":"radio","input":true,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"attributes":{},"validateOn":"change","conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"inputType":"radio","fieldSet":false,"id":"ef329mn"},{"label":"Proposed or actual completion date","hideInputLabels":false,"inputsLabelPosition":"top","useLocaleSettings":false,"tableView":false,"fields":{"day":{"hide":false,"required":true,"type":"number","placeholder":""},"month":{"hide":false,"required":true,"type":"select","placeholder":""},"year":{"hide":false,"required":true,"type":"number","placeholder":""}},"defaultValue":"00/00/0000","key":"proposedOrActualCompletionDate","type":"day","input":true,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"attributes":{},"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false},"conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"dayFirst":false,"id":"euj2r2l"}],"id":"ey0h0vl00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000","placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":false,"hidden":false,"clearOnHide":false,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"attributes":{},"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false},"conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"tree":false,"lazyLoad":false,"theme":"default","breadcrumb":"default"}],"placeholder":"","prefix":"","suffix":"","multiple":false,"unique":false,"refreshOn":"","dataGridLabel":false,"widget":null,"showCharCount":false,"showWordCount":false,"allowMultipleMasks":false,"addons":[],"tree":true,"lazyLoad":false,"id":"ew0r1gt"},{"label":"Surface Water","labelPosition":"top","description":"","tooltip":"","disableAddingRemovingRows":false,"conditionalAddButton":"","reorder":false,"addAnother":"","addAnotherPosition":"bottom","layoutFixed":false,"enableRowGroups":false,"initEmpty":false,"customClass":"","tabindex":"","hidden":false,"hideLabel":false,"autofocus":false,"disabled":false,"tableView":false,"modalEdit":false,"defaultValue":[{"aecUseTheSameAecAsForAeCsInSection46":"","coc":"","remediatedToTheFollowingStandardProposedOrCompleted":{"numericalStandardGuidelineOrCriteria":false,"siteSpecificNumericalStandard":false,"backgroundConcentrationAttachProtocol4ApprovalIfApplicable":false,"riskBased":false},"remediationComplete":"","proposedOrActualCompletionDate":"00/00/0000"}],"persistent":true,"protected":false,"dbIndex":false,"encrypted":false,"redrawOn":"","clearOnHide":true,"customDefaultValue":"","calculateValue":"","calculateServer":false,"allowCalculateOverride":false,"validateOn":"change","validate":{"required":false,"minLength":"","maxLength":"","customMessage":"","custom":"","customPrivate":false,"json":"","strictDateValidation":false,"multiple":false,"unique":false},"errorLabel":"","errors":"","key":"dataGrid10","tags":[],"properties":{},"conditional":{"show":true,"when":"environmentalMediumAssessedSelectAllThatApplyIfThisSoscIsToSupportANegativeDeterminationApplicationSelectNA","eq":"surfaceWater","json":""},"customConditional":"","logic":[],"attributes":{},"overlay":{"style":"","page":"","left":"","top":"","width":"","height":""},"type":"datagrid","input":true,"components":[{"title":"Surface Water","collapsible":false,"hideLabel":true,"key":"surfaceWater","type":"panel","label":"","input":false,"tableView":false,"components":[{"label":"AEC # (Use the same AEC# as for AECs in the table in Section 4.6)","tableView":true,"validate":{"required":true,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false,"minLength":"","maxLength":"","pattern":""},"key":"aecUseTheSameAecAsForAeCsInSection46","type":"textfield","input":true,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":{"type":"input"},"attributes":{},"validateOn":"change","conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"mask":false,"inputType":"text","inputFormat":"plain","inputMask":"","displayMask":"","spellcheck":true,"truncateMultipleSpaces":false,"id":"exhym4b"},{"label":"COC","tableView":true,"validate":{"required":true,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false,"minLength":"","maxLength":"","pattern":""},"key":"coc","type":"textfield","input":true,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":{"type":"input"},"attributes":{},"validateOn":"change","conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"mask":false,"inputType":"text","inputFormat":"plain","inputMask":"","displayMask":"","spellcheck":true,"truncateMultipleSpaces":false,"id":"edjxf9"},{"label":"Remediated to the following standard (proposed or completed)","optionsLabelPosition":"right","tableView":false,"values":[{"label":"Numerical (standard, guideline or criteria)","value":"numericalStandardGuidelineOrCriteria","shortcut":""},{"label":"Site-Specific numerical standard","value":"siteSpecificNumericalStandard","shortcut":""},{"label":"Background concentration (attach protocol 4 approval if applicable)","value":"backgroundConcentrationAttachProtocol4ApprovalIfApplicable","shortcut":""},{"label":"Risk-based","value":"riskBased","shortcut":""}],"validate":{"required":true,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false,"onlyAvailableItems":false},"key":"remediatedToTheFollowingStandardProposedOrCompleted","type":"selectboxes","input":true,"inputType":"checkbox","placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"attributes":{},"validateOn":"change","conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"fieldSet":false,"inline":false,"id":"eslf5sl"},{"label":"Remediation complete","optionsLabelPosition":"right","inline":false,"tableView":false,"values":[{"label":"Yes","value":"yes","shortcut":""},{"label":"No","value":"no","shortcut":""},{"label":"Remediation Planned","value":"remediationPlanned","shortcut":""}],"validate":{"required":true,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false,"onlyAvailableItems":false},"key":"remediationComplete","type":"radio","input":true,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"attributes":{},"validateOn":"change","conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"inputType":"radio","fieldSet":false,"id":"eyhnsyf"},{"label":"Proposed or actual completion date","hideInputLabels":false,"inputsLabelPosition":"top","useLocaleSettings":false,"tableView":false,"fields":{"day":{"hide":false,"required":true,"type":"number","placeholder":""},"month":{"hide":false,"required":true,"type":"select","placeholder":""},"year":{"hide":false,"required":true,"type":"number","placeholder":""}},"defaultValue":"00/00/0000","key":"proposedOrActualCompletionDate","type":"day","input":true,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"attributes":{},"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false},"conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"dayFirst":false,"id":"ehez7s"}],"id":"el9aclo0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000","placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":false,"hidden":false,"clearOnHide":false,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"attributes":{},"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false},"conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"tree":false,"lazyLoad":false,"theme":"default","breadcrumb":"default"}],"placeholder":"","prefix":"","suffix":"","multiple":false,"unique":false,"refreshOn":"","dataGridLabel":false,"widget":null,"showCharCount":false,"showWordCount":false,"allowMultipleMasks":false,"addons":[],"tree":true,"lazyLoad":false,"id":"eb6spa00000"},{"label":"Vapour","labelPosition":"top","description":"","tooltip":"","disableAddingRemovingRows":false,"conditionalAddButton":"","reorder":false,"addAnother":"","addAnotherPosition":"bottom","layoutFixed":false,"enableRowGroups":false,"initEmpty":false,"customClass":"","tabindex":"","hidden":false,"hideLabel":false,"autofocus":false,"disabled":false,"tableView":false,"modalEdit":false,"defaultValue":[{"aecUseTheSameAecAsForAeCsInSection46":"","coc":"","remediatedToTheFollowingStandardProposedOrCompleted":{"numericalStandardGuidelineOrCriteria":false,"siteSpecificNumericalStandard":false,"backgroundConcentrationAttachProtocol4ApprovalIfApplicable":false,"riskBased":false},"remediationComplete":"","proposedOrActualCompletionDate":"00/00/0000"}],"persistent":true,"protected":false,"dbIndex":false,"encrypted":false,"redrawOn":"","clearOnHide":true,"customDefaultValue":"","calculateValue":"","calculateServer":false,"allowCalculateOverride":false,"validateOn":"change","validate":{"required":false,"minLength":"","maxLength":"","customMessage":"","custom":"","customPrivate":false,"json":"","strictDateValidation":false,"multiple":false,"unique":false},"errorLabel":"","errors":"","key":"dataGrid11","tags":[],"properties":{},"conditional":{"show":true,"when":"environmentalMediumAssessedSelectAllThatApplyIfThisSoscIsToSupportANegativeDeterminationApplicationSelectNA","eq":"vapour","json":""},"customConditional":"","logic":[],"attributes":{},"overlay":{"style":"","page":"","left":"","top":"","width":"","height":""},"type":"datagrid","input":true,"components":[{"title":"Vapour","collapsible":false,"hideLabel":true,"key":"vapour","type":"panel","label":"","input":false,"tableView":false,"components":[{"label":"AEC # (Use the same AEC# as for AECs in the table in Section 4.6)","tableView":true,"validate":{"required":true,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false,"minLength":"","maxLength":"","pattern":""},"key":"aecUseTheSameAecAsForAeCsInSection46","type":"textfield","input":true,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":{"type":"input"},"attributes":{},"validateOn":"change","conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"mask":false,"inputType":"text","inputFormat":"plain","inputMask":"","displayMask":"","spellcheck":true,"truncateMultipleSpaces":false,"id":"etqxeaii"},{"label":"COC","tableView":true,"validate":{"required":true,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false,"minLength":"","maxLength":"","pattern":""},"key":"coc","type":"textfield","input":true,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":{"type":"input"},"attributes":{},"validateOn":"change","conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"mask":false,"inputType":"text","inputFormat":"plain","inputMask":"","displayMask":"","spellcheck":true,"truncateMultipleSpaces":false,"id":"ec8vxle"},{"label":"Remediated to the following standard (proposed or completed)","optionsLabelPosition":"right","tableView":false,"values":[{"label":"Numerical (standard, guideline or criteria)","value":"numericalStandardGuidelineOrCriteria","shortcut":""},{"label":"Site-Specific numerical standard","value":"siteSpecificNumericalStandard","shortcut":""},{"label":"Background concentration (attach protocol 4 approval if applicable)","value":"backgroundConcentrationAttachProtocol4ApprovalIfApplicable","shortcut":""},{"label":"Risk-based","value":"riskBased","shortcut":""}],"validate":{"required":true,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false,"onlyAvailableItems":false},"key":"remediatedToTheFollowingStandardProposedOrCompleted","type":"selectboxes","input":true,"inputType":"checkbox","placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"attributes":{},"validateOn":"change","conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"fieldSet":false,"inline":false,"id":"exo08af"},{"label":"Remediation complete","optionsLabelPosition":"right","inline":false,"tableView":false,"values":[{"label":"Yes","value":"yes","shortcut":""},{"label":"No","value":"no","shortcut":""},{"label":"Remediation Planned","value":"remediationPlanned","shortcut":""}],"validate":{"required":true,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false,"onlyAvailableItems":false},"key":"remediationComplete","type":"radio","input":true,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"attributes":{},"validateOn":"change","conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"inputType":"radio","fieldSet":false,"id":"e86fmgcc"},{"label":"Proposed or actual completion date","hideInputLabels":false,"inputsLabelPosition":"top","useLocaleSettings":false,"tableView":false,"fields":{"day":{"hide":false,"required":true,"type":"number","placeholder":""},"month":{"hide":false,"required":true,"type":"select","placeholder":""},"year":{"hide":false,"required":true,"type":"number","placeholder":""}},"defaultValue":"00/00/0000","key":"proposedOrActualCompletionDate","type":"day","input":true,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"attributes":{},"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false},"conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"dayFirst":false,"id":"et10s3fg"}],"id":"ehk7lsj000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000","placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":false,"hidden":false,"clearOnHide":false,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"attributes":{},"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false},"conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"tree":false,"lazyLoad":false,"theme":"default","breadcrumb":"default"}],"placeholder":"","prefix":"","suffix":"","multiple":false,"unique":false,"refreshOn":"","dataGridLabel":false,"widget":null,"showCharCount":false,"showWordCount":false,"allowMultipleMasks":false,"addons":[],"tree":true,"lazyLoad":false,"id":"ec6dxnf"},{"label":"Sediment","labelPosition":"top","description":"","tooltip":"","disableAddingRemovingRows":false,"conditionalAddButton":"","reorder":false,"addAnother":"","addAnotherPosition":"bottom","layoutFixed":false,"enableRowGroups":false,"initEmpty":false,"customClass":"","tabindex":"","hidden":false,"hideLabel":false,"autofocus":false,"disabled":false,"tableView":false,"modalEdit":false,"defaultValue":[{"aecUseTheSameAecAsForAeCsInSection46":"","coc":"","remediatedToTheFollowingStandardProposedOrCompleted":{"numericalStandardGuidelineOrCriteria":false,"siteSpecificNumericalStandard":false,"backgroundConcentrationAttachProtocol4ApprovalIfApplicable":false,"riskBased":false},"remediationComplete":"","proposedOrActualCompletionDate":"00/00/0000"}],"persistent":true,"protected":false,"dbIndex":false,"encrypted":false,"redrawOn":"","clearOnHide":true,"customDefaultValue":"","calculateValue":"","calculateServer":false,"allowCalculateOverride":false,"validateOn":"change","validate":{"required":false,"minLength":"","maxLength":"","customMessage":"","custom":"","customPrivate":false,"json":"","strictDateValidation":false,"multiple":false,"unique":false},"errorLabel":"","errors":"","key":"dataGrid12","tags":[],"properties":{},"conditional":{"show":true,"when":"environmentalMediumAssessedSelectAllThatApplyIfThisSoscIsToSupportANegativeDeterminationApplicationSelectNA","eq":"sediment","json":""},"customConditional":"","logic":[],"attributes":{},"overlay":{"style":"","page":"","left":"","top":"","width":"","height":""},"type":"datagrid","input":true,"components":[{"title":"Sediment","collapsible":false,"hideLabel":true,"key":"sediment","type":"panel","label":"","input":false,"tableView":false,"components":[{"label":"AEC # (Use the same AEC# as for AECs in the table in Section 4.6)","tableView":true,"validate":{"required":true,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false,"minLength":"","maxLength":"","pattern":""},"key":"aecUseTheSameAecAsForAeCsInSection46","type":"textfield","input":true,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":{"type":"input"},"attributes":{},"validateOn":"change","conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"mask":false,"inputType":"text","inputFormat":"plain","inputMask":"","displayMask":"","spellcheck":true,"truncateMultipleSpaces":false,"id":"e7jbx9j"},{"label":"COC","tableView":true,"validate":{"required":true,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false,"minLength":"","maxLength":"","pattern":""},"key":"coc","type":"textfield","input":true,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":{"type":"input"},"attributes":{},"validateOn":"change","conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"mask":false,"inputType":"text","inputFormat":"plain","inputMask":"","displayMask":"","spellcheck":true,"truncateMultipleSpaces":false,"id":"esfs5p"},{"label":"Remediated to the following standard (proposed or completed)","optionsLabelPosition":"right","tableView":false,"values":[{"label":"Numerical (standard, guideline or criteria)","value":"numericalStandardGuidelineOrCriteria","shortcut":""},{"label":"Site-Specific numerical standard","value":"siteSpecificNumericalStandard","shortcut":""},{"label":"Background concentration (attach protocol 4 approval if applicable)","value":"backgroundConcentrationAttachProtocol4ApprovalIfApplicable","shortcut":""},{"label":"Risk-based","value":"riskBased","shortcut":""}],"validate":{"required":true,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false,"onlyAvailableItems":false},"key":"remediatedToTheFollowingStandardProposedOrCompleted1","type":"selectboxes","input":true,"inputType":"checkbox","placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"attributes":{},"validateOn":"change","conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"fieldSet":false,"inline":false,"id":"euis3w"},{"label":"Remediation complete","optionsLabelPosition":"right","inline":false,"tableView":false,"values":[{"label":"Yes","value":"yes","shortcut":""},{"label":"No","value":"no","shortcut":""},{"label":"Remediation Planned","value":"remediationPlanned","shortcut":""}],"validate":{"required":true,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false,"onlyAvailableItems":false},"key":"remediationComplete","type":"radio","input":true,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"attributes":{},"validateOn":"change","conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"inputType":"radio","fieldSet":false,"id":"ek6jihq"},{"label":"Proposed or actual completion date","hideInputLabels":false,"inputsLabelPosition":"top","useLocaleSettings":false,"tableView":false,"fields":{"day":{"hide":false,"required":true,"type":"number","placeholder":""},"month":{"hide":false,"required":true,"type":"select","placeholder":""},"year":{"hide":false,"required":true,"type":"number","placeholder":""}},"defaultValue":"00/00/0000","key":"proposedOrActualCompletionDate","type":"day","input":true,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"attributes":{},"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false},"conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"dayFirst":false,"id":"eu50tno"}],"id":"ejahpfm000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000","placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":false,"hidden":false,"clearOnHide":false,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"attributes":{},"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false},"conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"tree":false,"lazyLoad":false,"theme":"default","breadcrumb":"default"}],"placeholder":"","prefix":"","suffix":"","multiple":false,"unique":false,"refreshOn":"","dataGridLabel":false,"widget":null,"showCharCount":false,"showWordCount":false,"allowMultipleMasks":false,"addons":[],"tree":true,"lazyLoad":false,"id":"exwpiia0"}],"id":"e3zicjv"},{"title":"SECTION IV - Summary of Contaminant Treatment or Removal","theme":"default","tooltip":"","customClass":"","collapsible":false,"hidden":false,"hideLabel":false,"disabled":false,"modalEdit":false,"key":"sectionIvSummaryOfContaminantTreatmentOrRemoval","tags":[],"properties":{},"customConditional":"","conditional":{"json":"","show":null,"when":null,"eq":""},"logic":[],"attributes":{},"overlay":{"style":"","page":"","left":"","top":"","width":"","height":""},"type":"panel","label":"Panel","breadcrumb":"default","tabindex":"","input":false,"placeholder":"","prefix":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":false,"clearOnHide":false,"refreshOn":"","redrawOn":"","tableView":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"allowMultipleMasks":false,"addons":[],"tree":false,"lazyLoad":false,"components":[{"html":"

 

Identify and describe all contamination removed from or treated on-site. Ensure Part 6 is completed regarding the relocation of waste and non-waste soil.

Provide references to figure(s) showing the lateral and vertical extent of any treated or removed contamination. Confirmatory sample locations and corresponding analytical results shall be shown on each figure and in tabular form with reference to applicable standards:

 

In the AEC column, specify as n/a (not applicable) if remediation or assessment is not required in this environmental medium.

","label":"Content","customClass":"","refreshOnChange":false,"hidden":false,"modalEdit":false,"key":"content41","tags":[],"properties":{},"conditional":{"show":null,"when":null,"eq":"","json":""},"customConditional":"","logic":[],"attributes":{},"overlay":{"style":"","page":"","left":"","top":"","width":"","height":""},"type":"content","input":false,"tableView":false,"placeholder":"","prefix":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"clearOnHide":true,"refreshOn":"","redrawOn":"","dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"allowMultipleMasks":false,"addons":[],"id":"e12mm2s"},{"label":"Data Grid","reorder":false,"addAnotherPosition":"bottom","layoutFixed":false,"enableRowGroups":false,"initEmpty":false,"hideLabel":true,"tableView":false,"defaultValue":[{}],"key":"dataGrid13","type":"datagrid","input":true,"components":[{"title":"","theme":"default","tooltip":"","customClass":"","collapsible":false,"hidden":false,"hideLabel":false,"dataGridLabel":false,"disabled":false,"modalEdit":false,"key":"panel","tags":[],"properties":{},"customConditional":"","conditional":{"json":"","show":null,"when":null,"eq":""},"logic":[],"attributes":{},"overlay":{"style":"","page":"","left":"","top":"","width":"","height":""},"type":"panel","label":"","breadcrumb":"default","tabindex":"","input":false,"tableView":false,"components":[{"label":"AEC / APEC #","tableView":true,"validate":{"required":true,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false,"minLength":"","maxLength":"","pattern":""},"key":"aecApec","type":"textfield","input":true,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":{"type":"input"},"attributes":{},"validateOn":"change","conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"mask":false,"inputType":"text","inputFormat":"plain","inputMask":"","displayMask":"","spellcheck":true,"truncateMultipleSpaces":false,"id":"eqnfc6c"},{"label":"COC","tableView":true,"validate":{"required":true,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false,"minLength":"","maxLength":"","pattern":""},"key":"coc","type":"textfield","input":true,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":{"type":"input"},"attributes":{},"validateOn":"change","conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"mask":false,"inputType":"text","inputFormat":"plain","inputMask":"","displayMask":"","spellcheck":true,"truncateMultipleSpaces":false,"id":"ea1vh2f"},{"label":"Medium","placeholder":"(e.g. soil, groundwater, surface water, vapour, sediment, other)","tableView":true,"validate":{"required":true,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false,"minLength":"","maxLength":"","pattern":""},"key":"medium","type":"textfield","input":true,"prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":{"type":"input"},"attributes":{},"validateOn":"change","conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"mask":false,"inputType":"text","inputFormat":"plain","inputMask":"","displayMask":"","spellcheck":true,"truncateMultipleSpaces":false,"id":"ekz1zpq"},{"label":"Material removed volume (m³ or L) ","tableView":true,"validate":{"required":true,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false,"minLength":"","maxLength":"","pattern":""},"key":"materialRemovedVolumeMOrL","type":"textfield","input":true,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":{"type":"input"},"attributes":{},"validateOn":"change","conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"mask":false,"inputType":"text","inputFormat":"plain","inputMask":"","displayMask":"","spellcheck":true,"truncateMultipleSpaces":false,"id":"e287y9a"},{"label":"Material removed disposal location (indicate if treated on- site)","tableView":true,"validate":{"required":true,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false,"minLength":"","maxLength":"","pattern":""},"key":"textField","type":"textfield","input":true,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":{"type":"input"},"attributes":{},"validateOn":"change","conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"mask":false,"inputType":"text","inputFormat":"plain","inputMask":"","displayMask":"","spellcheck":true,"truncateMultipleSpaces":false,"id":"enr29qh"}],"placeholder":"","prefix":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":false,"clearOnHide":false,"refreshOn":"","redrawOn":"","labelPosition":"top","description":"","errorLabel":"","autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"allowMultipleMasks":false,"addons":[],"tree":false,"lazyLoad":false,"id":"etzpsl000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000"}],"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"attributes":{},"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false},"conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"tree":true,"lazyLoad":false,"disableAddingRemovingRows":false,"id":"eiqygdt"}],"id":"ezlmejd"},{"title":"SECTION V - Summary of Residual Contamination After Remediation","theme":"default","tooltip":"","customClass":"","collapsible":false,"hidden":false,"hideLabel":false,"disabled":false,"modalEdit":false,"key":"sectionVSummaryOfResidualContaminationAfterRemediation","tags":[],"properties":{},"customConditional":"","conditional":{"json":"","show":null,"when":null,"eq":""},"logic":[],"attributes":{},"overlay":{"style":"","page":"","left":"","top":"","width":"","height":""},"type":"panel","label":"Panel","breadcrumb":"default","tabindex":"","input":false,"placeholder":"","prefix":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":false,"clearOnHide":false,"refreshOn":"","redrawOn":"","tableView":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"allowMultipleMasks":false,"addons":[],"tree":false,"lazyLoad":false,"components":[{"html":"

Identify and describe all contamination that exceeds CSR numerical standards, after the remediation described above has been implemented.

","label":"Content","customClass":"","refreshOnChange":false,"hidden":false,"modalEdit":false,"key":"content42","tags":[],"properties":{},"conditional":{"show":null,"when":null,"eq":"","json":""},"customConditional":"","logic":[],"attributes":{},"overlay":{"style":"","page":"","left":"","top":"","width":"","height":""},"type":"content","input":false,"tableView":false,"placeholder":"","prefix":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"clearOnHide":true,"refreshOn":"","redrawOn":"","dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"allowMultipleMasks":false,"addons":[],"id":"evqw2d"},{"label":"Data Grid","reorder":false,"addAnotherPosition":"bottom","layoutFixed":false,"enableRowGroups":false,"initEmpty":false,"hideLabel":true,"tableView":false,"defaultValue":[{}],"key":"dataGrid14","type":"datagrid","input":true,"components":[{"title":"","collapsible":false,"key":"panel10","type":"panel","label":"","input":false,"tableView":false,"components":[{"label":"AEC / APEC #","labelPosition":"top","placeholder":"Use same # as for APECS above","description":"","tooltip":"","prefix":"","suffix":"","widget":{"type":"input"},"inputMask":"","displayMask":"","allowMultipleMasks":false,"customClass":"","tabindex":"","autocomplete":"","hidden":false,"hideLabel":false,"showWordCount":false,"showCharCount":false,"mask":false,"autofocus":false,"spellcheck":true,"disabled":false,"tableView":true,"modalEdit":false,"multiple":false,"persistent":true,"inputFormat":"plain","protected":false,"dbIndex":false,"case":"","truncateMultipleSpaces":false,"encrypted":false,"redrawOn":"","clearOnHide":true,"customDefaultValue":"","calculateValue":"","calculateServer":false,"allowCalculateOverride":false,"validateOn":"change","validate":{"required":true,"pattern":"","customMessage":"","custom":"","customPrivate":false,"json":"","minLength":"","maxLength":"","strictDateValidation":false,"multiple":false,"unique":false},"unique":false,"errorLabel":"","errors":"","key":"aecApec","tags":[],"properties":{},"conditional":{"show":null,"when":null,"eq":"","json":""},"customConditional":"","logic":[],"attributes":{},"overlay":{"style":"","page":"","left":"","top":"","width":"","height":""},"type":"textfield","input":true,"refreshOn":"","dataGridLabel":false,"addons":[],"inputType":"text","id":"equan8wd","defaultValue":""},{"label":"COC","tableView":true,"validate":{"required":true,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false,"minLength":"","maxLength":"","pattern":""},"key":"coc","type":"textfield","input":true,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":{"type":"input"},"attributes":{},"validateOn":"change","conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"mask":false,"inputType":"text","inputFormat":"plain","inputMask":"","displayMask":"","spellcheck":true,"truncateMultipleSpaces":false,"id":"e8l3z6"},{"label":"Medium","placeholder":"(e.g. soil, groundwater, surface water, vapour, sediment, other)","tableView":true,"validate":{"required":true,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false,"minLength":"","maxLength":"","pattern":""},"key":"medium","type":"textfield","input":true,"prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":{"type":"input"},"attributes":{},"validateOn":"change","conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"mask":false,"inputType":"text","inputFormat":"plain","inputMask":"","displayMask":"","spellcheck":true,"truncateMultipleSpaces":false,"id":"e5nxmnx"},{"label":"Maximum measured concentration (indicate units)","labelPosition":"top","placeholder":"","description":"","tooltip":"","prefix":"","suffix":"","widget":{"type":"input"},"inputMask":"","displayMask":"","allowMultipleMasks":false,"customClass":"","tabindex":"","autocomplete":"","hidden":false,"hideLabel":false,"showWordCount":false,"showCharCount":false,"mask":false,"autofocus":false,"spellcheck":true,"disabled":false,"tableView":true,"modalEdit":false,"multiple":false,"persistent":true,"inputFormat":"plain","protected":false,"dbIndex":false,"case":"","truncateMultipleSpaces":false,"encrypted":false,"redrawOn":"","clearOnHide":true,"customDefaultValue":"","calculateValue":"","calculateServer":false,"allowCalculateOverride":false,"validateOn":"change","validate":{"required":true,"pattern":"","customMessage":"","custom":"","customPrivate":false,"json":"","minLength":"","maxLength":"","strictDateValidation":false,"multiple":false,"unique":false},"unique":false,"errorLabel":"","errors":"","key":"materialRemovedVolumeMOrL","tags":[],"properties":{},"conditional":{"show":null,"when":null,"eq":"","json":""},"customConditional":"","logic":[],"attributes":{},"overlay":{"style":"","page":"","left":"","top":"","width":"","height":""},"type":"textfield","input":true,"refreshOn":"","dataGridLabel":false,"addons":[],"inputType":"text","id":"eknlfdn","defaultValue":""},{"label":"Extent of Contamination (area m²)","labelPosition":"top","placeholder":"","description":"","tooltip":"","prefix":"","suffix":"","widget":{"type":"input"},"inputMask":"","displayMask":"","allowMultipleMasks":false,"customClass":"","tabindex":"","autocomplete":"","hidden":false,"hideLabel":false,"showWordCount":false,"showCharCount":false,"mask":false,"autofocus":false,"spellcheck":true,"disabled":false,"tableView":true,"modalEdit":false,"multiple":false,"persistent":true,"inputFormat":"plain","protected":false,"dbIndex":false,"case":"","truncateMultipleSpaces":false,"encrypted":false,"redrawOn":"","clearOnHide":true,"customDefaultValue":"","calculateValue":"","calculateServer":false,"allowCalculateOverride":false,"validateOn":"change","validate":{"required":true,"pattern":"","customMessage":"","custom":"","customPrivate":false,"json":"","minLength":"","maxLength":"","strictDateValidation":false,"multiple":false,"unique":false},"unique":false,"errorLabel":"","errors":"","key":"textField","tags":[],"properties":{},"conditional":{"show":null,"when":null,"eq":"","json":""},"customConditional":"","logic":[],"attributes":{},"overlay":{"style":"","page":"","left":"","top":"","width":"","height":""},"type":"textfield","input":true,"refreshOn":"","dataGridLabel":false,"addons":[],"inputType":"text","id":"e64bv9p","defaultValue":""},{"label":"Extent of contamination (depth range (m))","labelPosition":"top","placeholder":"","description":"","tooltip":"","prefix":"","suffix":"","widget":{"type":"input"},"inputMask":"","displayMask":"","allowMultipleMasks":false,"customClass":"","tabindex":"","autocomplete":"","hidden":false,"hideLabel":false,"showWordCount":false,"showCharCount":false,"mask":false,"autofocus":false,"spellcheck":true,"disabled":false,"tableView":true,"modalEdit":false,"multiple":false,"persistent":true,"inputFormat":"plain","protected":false,"dbIndex":false,"case":"","truncateMultipleSpaces":false,"encrypted":false,"redrawOn":"","clearOnHide":true,"customDefaultValue":"","calculateValue":"","calculateServer":false,"allowCalculateOverride":false,"validateOn":"change","validate":{"required":true,"pattern":"","customMessage":"","custom":"","customPrivate":false,"json":"","minLength":"","maxLength":"","strictDateValidation":false,"multiple":false,"unique":false},"unique":false,"errorLabel":"","errors":"","key":"extentOfContaminationDepthRangeM","tags":[],"properties":{},"conditional":{"show":null,"when":null,"eq":"","json":""},"customConditional":"","logic":[],"attributes":{},"overlay":{"style":"","page":"","left":"","top":"","width":"","height":""},"type":"textfield","input":true,"refreshOn":"","dataGridLabel":false,"addons":[],"inputType":"text","id":"exmk0l","defaultValue":""}],"id":"esvz3la0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000","placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":false,"hidden":false,"clearOnHide":false,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"attributes":{},"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false},"conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"tree":false,"lazyLoad":false,"theme":"default","breadcrumb":"default"}],"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"attributes":{},"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false},"conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"tree":true,"lazyLoad":false,"disableAddingRemovingRows":false,"id":"eo9nnrn"}],"id":"er09bl"},{"html":"

 

5.6 Remediation Issues

 

","label":"Content","customClass":"","refreshOnChange":false,"hidden":false,"modalEdit":false,"key":"content43","tags":[],"properties":{},"conditional":{"show":null,"when":null,"eq":"","json":""},"customConditional":"","logic":[],"attributes":{},"overlay":{"style":"","page":"","left":"","top":"","width":"","height":""},"type":"content","input":false,"tableView":false,"placeholder":"","prefix":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"clearOnHide":true,"refreshOn":"","redrawOn":"","dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"allowMultipleMasks":false,"addons":[],"id":"ehwovt"},{"label":"Identify any issues regarding investigations or interpretations if the PSI and DSI information may not satisfy the requirements of CSR Sections 58 and 59 and applicable protocols and guidance documents. Briefly describe how these deficiencies will be addressed (examples include destroyed wells, completion of detailed delineation following building demolition or other proposed work at a later stage of remediation). ","labelPosition":"top","placeholder":"","description":"","tooltip":"","prefix":"","suffix":"","widget":{"type":"input"},"displayMask":"","editor":"","autoExpand":false,"customClass":"","tabindex":"","autocomplete":"","hidden":false,"hideLabel":false,"showWordCount":false,"showCharCount":false,"autofocus":false,"spellcheck":true,"disabled":false,"tableView":true,"modalEdit":false,"multiple":false,"persistent":true,"inputFormat":"html","protected":false,"dbIndex":false,"case":"","truncateMultipleSpaces":false,"encrypted":false,"redrawOn":"","clearOnHide":true,"customDefaultValue":"","calculateValue":"","calculateServer":false,"allowCalculateOverride":false,"validateOn":"change","validate":{"required":false,"pattern":"","customMessage":"","custom":"","customPrivate":false,"json":"","minLength":"","maxLength":"","minWords":"","maxWords":"","strictDateValidation":false,"multiple":false,"unique":false},"unique":false,"errorLabel":"","errors":"","key":"textArea","tags":[],"properties":{},"conditional":{"show":null,"when":null,"eq":"","json":""},"customConditional":"","logic":[],"attributes":{},"overlay":{"style":"","page":"","left":"","top":"","width":"","height":""},"type":"textarea","rows":12,"wysiwyg":false,"input":true,"refreshOn":"","dataGridLabel":false,"allowMultipleMasks":false,"addons":[],"mask":false,"inputType":"text","inputMask":"","fixedSize":true,"id":"e3l2fgh","defaultValue":""},{"html":"

Part 6 - Summary of Soil Management

","label":"Content","customClass":"","refreshOnChange":false,"hidden":false,"modalEdit":false,"key":"content44","tags":[],"properties":{},"conditional":{"show":null,"when":null,"eq":"","json":""},"customConditional":"","logic":[],"attributes":{},"overlay":{"style":"","page":"","left":"","top":"","width":"","height":""},"type":"content","input":false,"tableView":false,"placeholder":"","prefix":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"clearOnHide":true,"refreshOn":"","redrawOn":"","dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"allowMultipleMasks":false,"addons":[],"id":"e80swfv"},{"label":"Was soil relocated from the source site?","labelPosition":"top","optionsLabelPosition":"right","description":"","tooltip":"","customClass":"","tabindex":"","inline":false,"hidden":false,"hideLabel":false,"autofocus":false,"disabled":false,"tableView":false,"modalEdit":false,"values":[{"label":"Yes","value":"yes","shortcut":""},{"label":"No","value":"no","shortcut":""}],"dataType":"","persistent":true,"protected":false,"dbIndex":false,"encrypted":false,"redrawOn":"","clearOnHide":true,"customDefaultValue":"","calculateValue":"","calculateServer":false,"allowCalculateOverride":false,"validate":{"required":true,"onlyAvailableItems":false,"customMessage":"","custom":"","customPrivate":false,"json":"","strictDateValidation":false,"multiple":false,"unique":false},"errorLabel":"","errors":"","key":"wasSoilRelocatedFromTheSourceSite","tags":[],"properties":{},"conditional":{"show":null,"when":null,"eq":"","json":""},"customConditional":"","logic":[],"attributes":{},"overlay":{"style":"","page":"","left":"","top":"","width":"","height":""},"type":"radio","input":true,"placeholder":"","prefix":"","suffix":"","multiple":false,"unique":false,"refreshOn":"","dataGridLabel":false,"widget":null,"validateOn":"change","showCharCount":false,"showWordCount":false,"allowMultipleMasks":false,"addons":[],"inputType":"radio","fieldSet":false,"id":"em6ei1p","defaultValue":""},{"title":"Panel","theme":"default","tooltip":"","customClass":"","collapsible":false,"hidden":false,"hideLabel":true,"disabled":false,"modalEdit":false,"key":"panel4","tags":[],"properties":{},"customConditional":"","conditional":{"json":"","show":true,"when":"wasSoilRelocatedFromTheSourceSite","eq":"yes"},"logic":[],"attributes":{},"overlay":{"style":"","page":"","left":"","top":"","width":"","height":""},"type":"panel","label":"Panel","breadcrumb":"default","tabindex":"","input":false,"tableView":false,"components":[{"html":"

6.1 Waste Soil Management

","label":"Content","refreshOnChange":false,"key":"content45","type":"content","input":false,"tableView":false,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"attributes":{},"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false},"conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"id":"eubtd7o"},{"label":"Was waste soil relocated to a site authorized under Part 2 of the Environmental Management Act or an Approval in Principle to receive waste soil?","optionsLabelPosition":"right","inline":false,"tableView":false,"values":[{"label":"Yes","value":"yes","shortcut":""},{"label":"No","value":"no","shortcut":""}],"validate":{"required":true,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false,"onlyAvailableItems":false},"key":"wasWasteSoilRelocatedToASiteAuthorizedUnderPart2OfTheEnvironmentalManagementActOrAnApprovalInPrincipleToReceiveWasteSoil","type":"radio","input":true,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"attributes":{},"validateOn":"change","conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"inputType":"radio","fieldSet":false,"id":"eioxo4w"},{"html":"

6.2 Non-Waste Soil Relocation

","label":"Content","refreshOnChange":false,"key":"content46","type":"content","input":false,"tableView":false,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"attributes":{},"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false},"conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"id":"efcqmu3"},{"label":"Was non-waste soil relocated to a receiving site?","optionsLabelPosition":"right","inline":false,"tableView":false,"values":[{"label":"Yes","value":"yes","shortcut":""},{"label":"No","value":"no","shortcut":""}],"validate":{"required":true,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false,"onlyAvailableItems":false},"key":"wasNonWasteSoilRelocatedToAReceivingSite","type":"radio","input":true,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"attributes":{},"validateOn":"change","conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"inputType":"radio","fieldSet":false,"id":"e7iq2oh"},{"label":"Was notification provided according to section 55 (1.1) of the Environmental Management Act? ","optionsLabelPosition":"right","inline":false,"tableView":false,"values":[{"label":"Yes","value":"yes","shortcut":""},{"label":"No","value":"no","shortcut":""}],"validate":{"required":true,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false,"onlyAvailableItems":false},"key":"wasNotificationProvidedAccordingToSection5511OfTheEnvironmentalManagementAct","type":"radio","input":true,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"attributes":{},"validateOn":"change","conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"inputType":"radio","fieldSet":false,"id":"ewp4le7"},{"label":"If no, indicate which exemption applies (see CSR section 42) (Please select all that apply)","optionsLabelPosition":"right","tableView":false,"defaultValue":{"siteHasNotBeenUsedForASpecifiedIndustrialOrCommercialUse":false,"forNonHighRiskSitesTheAmountOfSoilRemovedIsLessThan30CubicMetres":false,"soilWasRelocatedToASiteWhereTheDepositIsAuthorizedByPermitApprovalOrderWasteManagementPlanAndOperationalCertificate":false,"receivingSiteIsOutsideOfBritishColumbia":false,"receivingSiteIsOnFederalLandOtherThanAReserveWithinTheMeaningOfTheIndianActCanada":false,"sourceSiteHasNotBeenUsedOtherThanForALowImpactLandUseOrMiningOfMarlEarthSoilPeatSandGravelDimensionStoneRockOrAnyNaturalSubstanceThatIsUsedForAConstructionPurposeOnLandAndTheSoilWasIExtractedInAccordanceWithAPermitUnderTheMinesActAndIiTransportedDirectlyToTheReceivingSite":false,"soilIsPreload":false,"soilIsWinterMaintenanceSand":false},"values":[{"label":"Site has not been used for a specified industrial or commercial use","value":"siteHasNotBeenUsedForASpecifiedIndustrialOrCommercialUse","shortcut":""},{"label":"For non-high risk sites, the amount of soil removed is less than 30 cubic metres","value":"forNonHighRiskSitesTheAmountOfSoilRemovedIsLessThan30CubicMetres","shortcut":""},{"label":"Soil was relocated to a site where the deposit is authorized by permit, approval, order, waste management plan and operational certificate","value":"soilWasRelocatedToASiteWhereTheDepositIsAuthorizedByPermitApprovalOrderWasteManagementPlanAndOperationalCertificate","shortcut":""},{"label":"Receiving site is outside of British Columbia","value":"receivingSiteIsOutsideOfBritishColumbia","shortcut":""},{"label":"Receiving site is on federal land, other than a reserve within the meaning of the Indian Act (Canada)","value":"receivingSiteIsOnFederalLandOtherThanAReserveWithinTheMeaningOfTheIndianActCanada","shortcut":""},{"label":"Source site has not been used other than for a low-impact land use or mining of marl, earth, soil, peat, sand, gravel, dimension stone, rock or any natural substance that is used for a construction purpose on land and the soil was: (i) extracted in accordance with a permit under the Mines Act, and (ii) transported directly to the receiving site","value":"sourceSiteHasNotBeenUsedOtherThanForALowImpactLandUseOrMiningOfMarlEarthSoilPeatSandGravelDimensionStoneRockOrAnyNaturalSubstanceThatIsUsedForAConstructionPurposeOnLandAndTheSoilWasIExtractedInAccordanceWithAPermitUnderTheMinesActAndIiTransportedDirectlyToTheReceivingSite","shortcut":""},{"label":"Soil is preload","value":"soilIsPreload","shortcut":""},{"label":"Soil is winter-maintenance sand","value":"soilIsWinterMaintenanceSand","shortcut":""}],"validate":{"required":true,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false,"onlyAvailableItems":false},"key":"ifNoIndicateWhichExemptionAppliesSeeCsrSection42PleaseSelectAllThatApply","conditional":{"show":true,"when":"wasNotificationProvidedAccordingToSection5511OfTheEnvironmentalManagementAct","eq":"no"},"type":"selectboxes","input":true,"inputType":"checkbox","placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"attributes":{},"validateOn":"change","overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"fieldSet":false,"inline":false,"id":"ey50ioo"}],"placeholder":"","prefix":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":false,"clearOnHide":false,"refreshOn":"","redrawOn":"","dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"allowMultipleMasks":false,"addons":[],"tree":false,"lazyLoad":false,"id":"en97uhj"},{"html":"

Part 7 - Recomendation of Approved Professionals

","label":"Content","customClass":"","refreshOnChange":false,"hidden":false,"modalEdit":false,"key":"content47","tags":[],"properties":{},"conditional":{"show":null,"when":null,"eq":"","json":""},"customConditional":"","logic":[],"attributes":{},"overlay":{"style":"","page":"","left":"","top":"","width":"","height":""},"type":"content","input":false,"tableView":false,"placeholder":"","prefix":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"clearOnHide":true,"refreshOn":"","redrawOn":"","dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"allowMultipleMasks":false,"addons":[],"id":"ep2pdaq"},{"label":"Recommendation under Protocol 6","labelPosition":"top","optionsLabelPosition":"right","description":"","tooltip":"","customClass":"","tabindex":"","inline":false,"hidden":false,"hideLabel":false,"autofocus":false,"disabled":false,"tableView":false,"modalEdit":false,"values":[{"label":"Yes","value":"yes","shortcut":""},{"label":"No","value":"no","shortcut":""}],"dataType":"","persistent":true,"protected":false,"dbIndex":false,"encrypted":false,"redrawOn":"","clearOnHide":true,"customDefaultValue":"","calculateValue":"","calculateServer":false,"allowCalculateOverride":false,"validate":{"required":false,"onlyAvailableItems":false,"customMessage":"","custom":"","customPrivate":false,"json":"","strictDateValidation":false,"multiple":false,"unique":false},"errorLabel":"","errors":"","key":"recommendationUnderProtocol6","tags":[],"properties":{},"conditional":{"show":null,"when":null,"eq":"","json":""},"customConditional":"","logic":[],"attributes":{},"overlay":{"style":"","page":"","left":"","top":"","width":"","height":""},"type":"radio","input":true,"placeholder":"","prefix":"","suffix":"","multiple":false,"unique":false,"refreshOn":"","dataGridLabel":false,"widget":null,"validateOn":"change","showCharCount":false,"showWordCount":false,"allowMultipleMasks":false,"addons":[],"inputType":"radio","fieldSet":false,"id":"e6idi1p","defaultValue":""},{"label":"Direct to ministry application?","labelPosition":"top","optionsLabelPosition":"right","description":"","tooltip":"","customClass":"","tabindex":"","inline":false,"hidden":false,"hideLabel":false,"autofocus":false,"disabled":false,"tableView":false,"modalEdit":false,"values":[{"label":"Yes","value":"yes","shortcut":""},{"label":"No","value":"no","shortcut":""}],"dataType":"","persistent":true,"protected":false,"dbIndex":false,"encrypted":false,"redrawOn":"","clearOnHide":true,"customDefaultValue":"","calculateValue":"","calculateServer":false,"allowCalculateOverride":false,"validate":{"required":false,"onlyAvailableItems":false,"customMessage":"","custom":"","customPrivate":false,"json":"","strictDateValidation":false,"multiple":false,"unique":false},"errorLabel":"","errors":"","key":"directToMinistryApplication","tags":[],"properties":{},"conditional":{"show":null,"when":null,"eq":"","json":""},"customConditional":"","logic":[],"attributes":{},"overlay":{"style":"","page":"","left":"","top":"","width":"","height":""},"type":"radio","input":true,"placeholder":"","prefix":"","suffix":"","multiple":false,"unique":false,"refreshOn":"","dataGridLabel":false,"widget":null,"validateOn":"change","showCharCount":false,"showWordCount":false,"allowMultipleMasks":false,"addons":[],"inputType":"radio","fieldSet":false,"id":"e9vcbi","defaultValue":""},{"title":"SECTION I - Certification Document and Summary Recommendation","theme":"default","tooltip":"","customClass":"","collapsible":false,"hidden":false,"hideLabel":false,"disabled":false,"modalEdit":false,"key":"panel9","tags":[],"properties":{},"customConditional":"","conditional":{"json":"","show":null,"when":null,"eq":""},"logic":[],"attributes":{},"overlay":{"style":"","page":"","left":"","top":"","width":"","height":""},"type":"panel","label":"Panel","breadcrumb":"default","tabindex":"","input":false,"tableView":false,"components":[{"html":"

Based on the detailed technical information available for the site, as summarized in this Summary of Site Condition, I recommend that the following certification document be issued for the subject site.

","label":"Content","customClass":"","refreshOnChange":false,"hidden":false,"modalEdit":false,"key":"content49","tags":[],"properties":{},"conditional":{"show":null,"when":null,"eq":"","json":""},"customConditional":"","logic":[],"attributes":{},"overlay":{"style":"","page":"","left":"","top":"","width":"","height":""},"type":"content","input":false,"tableView":false,"placeholder":"","prefix":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"clearOnHide":true,"refreshOn":"","redrawOn":"","dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"allowMultipleMasks":false,"addons":[],"id":"e1y6n5q"},{"label":"Approved Professional Name","labelPosition":"top","placeholder":"","description":"","tooltip":"","prefix":"","suffix":"","widget":{"type":"input"},"inputMask":"","displayMask":"","allowMultipleMasks":false,"customClass":"","tabindex":"","autocomplete":"","hidden":false,"hideLabel":false,"showWordCount":false,"showCharCount":false,"mask":false,"autofocus":false,"spellcheck":true,"disabled":false,"tableView":true,"modalEdit":false,"multiple":false,"persistent":true,"inputFormat":"plain","protected":false,"dbIndex":false,"case":"","truncateMultipleSpaces":false,"encrypted":false,"redrawOn":"","clearOnHide":true,"customDefaultValue":"","calculateValue":"","calculateServer":false,"allowCalculateOverride":false,"validateOn":"change","validate":{"required":true,"pattern":"","customMessage":"","custom":"","customPrivate":false,"json":"","minLength":"","maxLength":"","strictDateValidation":false,"multiple":false,"unique":false},"unique":false,"errorLabel":"","errors":"","key":"approvedProfessionalName","tags":[],"properties":{},"conditional":{"show":null,"when":null,"eq":"","json":""},"customConditional":"","logic":[],"attributes":{},"overlay":{"style":"","page":"","left":"","top":"","width":"","height":""},"type":"textfield","input":true,"refreshOn":"","dataGridLabel":false,"addons":[],"inputType":"text","id":"evgk94d","defaultValue":""},{"label":"Please select those that apply","optionsLabelPosition":"right","tableView":false,"values":[{"label":"A Determination under section 44 of EMA","value":"aDeterminationUnderSection44OfEma","shortcut":""},{"label":"An AiP under section 53 (1) of EMA","value":"anAiPUnderSection531OfEma","shortcut":""},{"label":"A CoC under section 53(3) of EMA ","value":"aCoCUnderSection533OfEma","shortcut":""},{"label":"A Site Risk Reclassification","value":"aSiteRiskReclassification","shortcut":""},{"label":"Other","value":"other","shortcut":""}],"validate":{"required":true,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false,"onlyAvailableItems":false},"key":"pleaseSelectThoseThatApply","type":"selectboxes","input":true,"inputType":"checkbox","defaultValue":{"aDeterminationUnderSection44OfEma":false,"anAiPUnderSection531OfEma":false,"aCoCUnderSection533OfEma":false,"aSiteRiskReclassification":false,"other":false},"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"attributes":{},"validateOn":"change","conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"fieldSet":false,"inline":false,"id":"ebm3fb"},{"label":"Describe:","labelPosition":"top","placeholder":"","description":"","tooltip":"","prefix":"","suffix":"","widget":{"type":"input"},"displayMask":"","editor":"","autoExpand":false,"customClass":"","tabindex":"","autocomplete":"","hidden":false,"hideLabel":false,"showWordCount":false,"showCharCount":false,"autofocus":false,"spellcheck":true,"disabled":false,"tableView":true,"modalEdit":false,"multiple":false,"persistent":true,"inputFormat":"html","protected":false,"dbIndex":false,"case":"","truncateMultipleSpaces":false,"encrypted":false,"redrawOn":"","clearOnHide":true,"customDefaultValue":"","calculateValue":"","calculateServer":false,"allowCalculateOverride":false,"validateOn":"change","validate":{"required":true,"pattern":"","customMessage":"","custom":"","customPrivate":false,"json":"","minLength":"","maxLength":"","minWords":"","maxWords":"","strictDateValidation":false,"multiple":false,"unique":false},"unique":false,"errorLabel":"","errors":"","key":"describe1","tags":[],"properties":{},"conditional":{"show":"","when":"","eq":"","json":""},"customConditional":"","logic":[],"attributes":{},"overlay":{"style":"","page":"","left":"","top":"","width":"","height":""},"type":"textarea","rows":3,"wysiwyg":false,"input":true,"refreshOn":"","dataGridLabel":false,"allowMultipleMasks":false,"addons":[],"mask":false,"inputType":"text","inputMask":"","fixedSize":true,"id":"e6u9cg","defaultValue":""},{"html":"

Although I understand that the basis of such recommendations should only be formally evaluated by reference to detailed technical guidance, the primary basis of this recommendation or these recommendations is as follows:

","label":"Content","customClass":"","refreshOnChange":false,"hidden":false,"modalEdit":false,"key":"content50","tags":[],"properties":{},"conditional":{"show":null,"when":null,"eq":"","json":""},"customConditional":"","logic":[],"attributes":{},"overlay":{"style":"","page":"","left":"","top":"","width":"","height":""},"type":"content","input":false,"tableView":false,"placeholder":"","prefix":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"clearOnHide":true,"refreshOn":"","redrawOn":"","dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"allowMultipleMasks":false,"addons":[],"id":"e2cnv1r"},{"html":"

 

Approved Professional Recommendation

","label":"Content","customClass":"","refreshOnChange":false,"hidden":false,"modalEdit":false,"key":"content51","tags":[],"properties":{},"conditional":{"show":null,"when":null,"eq":"","json":""},"customConditional":"","logic":[],"attributes":{},"overlay":{"style":"","page":"","left":"","top":"","width":"","height":""},"type":"content","input":false,"tableView":false,"placeholder":"","prefix":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"clearOnHide":true,"refreshOn":"","redrawOn":"","dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"allowMultipleMasks":false,"addons":[],"id":"ehkcebn"},{"label":"For a recommendation for a Determination","labelPosition":"top","optionsLabelPosition":"right","description":"","tooltip":"","customClass":"","tabindex":"","inline":false,"hidden":false,"hideLabel":false,"autofocus":false,"disabled":false,"tableView":false,"modalEdit":false,"values":[{"label":"Yes","value":"yes","shortcut":""},{"label":"No","value":"no","shortcut":""}],"dataType":"","persistent":true,"protected":false,"dbIndex":false,"encrypted":false,"redrawOn":"","clearOnHide":true,"customDefaultValue":"","calculateValue":"","calculateServer":false,"allowCalculateOverride":false,"validate":{"required":true,"onlyAvailableItems":false,"customMessage":"","custom":"","customPrivate":false,"json":"","strictDateValidation":false,"multiple":false,"unique":false},"errorLabel":"","errors":"","key":"forARecommendationForADetermination","tags":[],"properties":{},"conditional":{"show":null,"when":null,"eq":"","json":""},"customConditional":"","logic":[],"attributes":{},"overlay":{"style":"","page":"","left":"","top":"","width":"","height":""},"type":"radio","input":true,"placeholder":"","prefix":"","suffix":"","multiple":false,"unique":false,"refreshOn":"","dataGridLabel":false,"widget":null,"validateOn":"change","showCharCount":false,"showWordCount":false,"allowMultipleMasks":false,"addons":[],"inputType":"radio","fieldSet":false,"id":"e4hkgo8","defaultValue":""},{"label":"For a recommendation for an Approval in Principle and for a Certificate of Compliance","labelPosition":"top","optionsLabelPosition":"right","description":"","tooltip":"","customClass":"","tabindex":"","inline":false,"hidden":false,"hideLabel":false,"autofocus":false,"disabled":false,"tableView":false,"modalEdit":false,"values":[{"label":"Yes","value":"yes","shortcut":""},{"label":"No","value":"no","shortcut":""}],"dataType":"","persistent":true,"protected":false,"dbIndex":false,"encrypted":false,"redrawOn":"","clearOnHide":true,"customDefaultValue":"","calculateValue":"","calculateServer":false,"allowCalculateOverride":false,"validate":{"required":true,"onlyAvailableItems":false,"customMessage":"","custom":"","customPrivate":false,"json":"","strictDateValidation":false,"multiple":false,"unique":false},"errorLabel":"","errors":"","key":"forARecommendationForADetermination1","tags":[],"properties":{},"conditional":{"show":null,"when":null,"eq":"","json":""},"customConditional":"","logic":[],"attributes":{},"overlay":{"style":"","page":"","left":"","top":"","width":"","height":""},"type":"radio","input":true,"placeholder":"","prefix":"","suffix":"","multiple":false,"unique":false,"refreshOn":"","dataGridLabel":false,"widget":null,"validateOn":"change","showCharCount":false,"showWordCount":false,"allowMultipleMasks":false,"addons":[],"inputType":"radio","fieldSet":false,"id":"eqg7o5h","defaultValue":""},{"label":"For a recommendation for a Site Risk Reclassification","labelPosition":"top","optionsLabelPosition":"right","description":"","tooltip":"","customClass":"","tabindex":"","inline":false,"hidden":false,"hideLabel":false,"autofocus":false,"disabled":false,"tableView":false,"modalEdit":false,"values":[{"label":"Yes","value":"yes","shortcut":""},{"label":"No","value":"no","shortcut":""}],"dataType":"","persistent":true,"protected":false,"dbIndex":false,"encrypted":false,"redrawOn":"","clearOnHide":true,"customDefaultValue":"","calculateValue":"","calculateServer":false,"allowCalculateOverride":false,"validate":{"required":true,"onlyAvailableItems":false,"customMessage":"","custom":"","customPrivate":false,"json":"","strictDateValidation":false,"multiple":false,"unique":false},"errorLabel":"","errors":"","key":"forARecommendationForADetermination2","tags":[],"properties":{},"conditional":{"show":null,"when":null,"eq":"","json":""},"customConditional":"","logic":[],"attributes":{},"overlay":{"style":"","page":"","left":"","top":"","width":"","height":""},"type":"radio","input":true,"placeholder":"","prefix":"","suffix":"","multiple":false,"unique":false,"refreshOn":"","dataGridLabel":false,"widget":null,"validateOn":"change","showCharCount":false,"showWordCount":false,"allowMultipleMasks":false,"addons":[],"inputType":"radio","fieldSet":false,"id":"ef23oc7","defaultValue":""},{"title":"Panel","theme":"default","tooltip":"","customClass":"","collapsible":false,"hidden":false,"hideLabel":true,"disabled":false,"modalEdit":false,"key":"panel5","tags":[],"properties":{},"customConditional":"","conditional":{"json":"","show":null,"when":null,"eq":""},"logic":[],"attributes":{},"overlay":{"style":"","page":"","left":"","top":"","width":"","height":""},"type":"panel","label":"Panel","breadcrumb":"default","tabindex":"","input":false,"placeholder":"","prefix":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":false,"clearOnHide":false,"refreshOn":"","redrawOn":"","tableView":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"allowMultipleMasks":false,"addons":[],"tree":false,"lazyLoad":false,"components":[{"html":"

For a Recommendation for a Determination

","label":"Content","customClass":"","refreshOnChange":false,"hidden":false,"modalEdit":false,"key":"content52","tags":[],"properties":{},"conditional":{"show":null,"when":null,"eq":"","json":""},"customConditional":"","logic":[],"attributes":{},"overlay":{"style":"","page":"","left":"","top":"","width":"","height":""},"type":"content","input":false,"tableView":false,"placeholder":"","prefix":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"clearOnHide":true,"refreshOn":"","redrawOn":"","dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"allowMultipleMasks":false,"addons":[],"id":"e4xby8n"},{"label":"Please select those that apply:","labelPosition":"top","optionsLabelPosition":"right","description":"","tooltip":"","customClass":"","tabindex":"","inline":false,"hidden":false,"hideLabel":false,"autofocus":false,"disabled":false,"tableView":false,"modalEdit":false,"values":[{"label":"On the basis of information provided and reviewed, it is my opinion that no CSR Schedule 2 activities have occurred at the subject site.","value":"onTheBasisOfInformationProvidedAndReviewedItIsMyOpinionThatNoCsrSchedule2ActivitiesHaveOccurredAtTheSubjectSite","shortcut":""},{"label":"CSR Schedule 2 activities are known or suspected to have occurred at the subject site, therefore in my opinion contaminants may have been released onto the subject site so that the site would be classified as a contaminated site in accordance with the CSR.","value":"csrSchedule2ActivitiesAreKnownOrSuspectedToHaveOccurredAtTheSubjectSiteThereforeInMyOpinionContaminantsMayHaveBeenReleasedOntoTheSubjectSiteSoThatTheSiteWouldBeClassifiedAsAContaminatedSiteInAccordanceWithTheCsr","shortcut":""},{"label":"CSR Schedule 2 activities are known or suspected to have occurred at the subject site, but it is my opinion that the specific nature of such activities would not result in contamination so that the site would be classified as a contaminated site in accordance with the CSR","value":"csrSchedule2ActivitiesAreKnownOrSuspectedToHaveOccurredAtTheSubjectSiteButItIsMyOpinionThatTheSpecificNatureOfSuchActivitiesWouldNotResultInContaminationSoThatTheSiteWouldBeClassifiedAsAContaminatedSiteInAccordanceWithTheCsr","shortcut":""}],"dataType":"","persistent":true,"protected":false,"dbIndex":false,"encrypted":false,"redrawOn":"","clearOnHide":true,"customDefaultValue":"","calculateValue":"","calculateServer":false,"allowCalculateOverride":false,"validate":{"required":false,"onlyAvailableItems":false,"customMessage":"","custom":"","customPrivate":false,"json":"","strictDateValidation":false,"multiple":false,"unique":false},"errorLabel":"","errors":"","key":"pleaseSelectThoseThatApply1","tags":[],"properties":{},"conditional":{"show":null,"when":null,"eq":"","json":""},"customConditional":"","logic":[],"attributes":{},"overlay":{"style":"","page":"","left":"","top":"","width":"","height":""},"type":"radio","input":true,"placeholder":"","prefix":"","suffix":"","multiple":false,"unique":false,"refreshOn":"","dataGridLabel":false,"widget":null,"validateOn":"change","showCharCount":false,"showWordCount":false,"allowMultipleMasks":false,"addons":[],"inputType":"radio","fieldSet":false,"id":"ex5vcag","defaultValue":""},{"label":"Preliminary Site Investigation addressing all identified areas of potential environmental concern (APECs) and potential contaminants of concern (PCOCs) was completed. No substances were identified in concentrations exceeding those identified in BC CSR Schedules 3.1, 3.2, 3.3 or 3.4, as applicable. All PCOCs have been listed in Schedule B of the draft Determination.","description":"","tooltip":"","shortcut":"","inputType":"checkbox","customClass":"","tabindex":"","hidden":false,"hideLabel":false,"autofocus":false,"disabled":false,"tableView":false,"modalEdit":false,"persistent":true,"protected":false,"dbIndex":false,"encrypted":false,"redrawOn":"","clearOnHide":true,"customDefaultValue":"","calculateValue":"","calculateServer":false,"allowCalculateOverride":false,"validate":{"required":false,"customMessage":"","custom":"","customPrivate":false,"json":"","strictDateValidation":false,"multiple":false,"unique":false},"errorLabel":"","errors":"","key":"preliminarySiteInvestigationAddressingAllIdentifiedAreasOfPotentialEnvironmentalConcernApeCsAndPotentialContaminantsOfConcernPcoCsWasCompletedNoSubstancesWereIdentifiedInConcentrationsExceedingThoseIdentifiedInBcCsrSchedules313233Or34AsApplicableAllPcoCsHaveBeenListedInScheduleBOfTheDraftDetermination","tags":[],"properties":{},"conditional":{"show":null,"when":null,"eq":"","json":""},"customConditional":"","logic":[],"attributes":{},"overlay":{"style":"","page":"","left":"","top":"","width":"","height":""},"type":"checkbox","name":"","value":"","input":true,"placeholder":"","prefix":"","suffix":"","multiple":false,"unique":false,"refreshOn":"","dataGridLabel":true,"labelPosition":"right","widget":null,"validateOn":"change","showCharCount":false,"showWordCount":false,"allowMultipleMasks":false,"addons":[],"id":"eox84c","defaultValue":false}],"id":"exsm6xc"},{"title":"Panel","theme":"default","tooltip":"","customClass":"","collapsible":false,"hidden":false,"hideLabel":true,"disabled":false,"modalEdit":false,"key":"panel6","tags":[],"properties":{},"customConditional":"","conditional":{"json":"","show":null,"when":null,"eq":""},"logic":[],"attributes":{},"overlay":{"style":"","page":"","left":"","top":"","width":"","height":""},"type":"panel","label":"Panel","breadcrumb":"default","tabindex":"","input":false,"placeholder":"","prefix":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":false,"clearOnHide":false,"refreshOn":"","redrawOn":"","tableView":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"allowMultipleMasks":false,"addons":[],"tree":false,"lazyLoad":false,"components":[{"html":"

For a recommendation for an Approval in Principle and for a Certificate of Compliance

","label":"Content","customClass":"","refreshOnChange":false,"hidden":false,"modalEdit":false,"key":"content53","tags":[],"properties":{},"conditional":{"show":null,"when":null,"eq":"","json":""},"customConditional":"","logic":[],"attributes":{},"overlay":{"style":"","page":"","left":"","top":"","width":"","height":""},"type":"content","input":false,"tableView":false,"placeholder":"","prefix":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"clearOnHide":true,"refreshOn":"","redrawOn":"","dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"allowMultipleMasks":false,"addons":[],"id":"e7vgxfj"},{"label":"A Preliminary Site Investigation addressing all identified areas of potential environmental concern (APECs) and potential contaminants of concern (PCOCs) was completed. One or more substances were identified at concentrations exceeding applicable standards or criteria in CSR Schedules 3.1, 3.2, 3.3 or 3.4","description":"","tooltip":"","shortcut":"","inputType":"checkbox","customClass":"","tabindex":"","hidden":false,"hideLabel":false,"autofocus":false,"disabled":false,"tableView":false,"modalEdit":false,"persistent":true,"protected":false,"dbIndex":false,"encrypted":false,"redrawOn":"","clearOnHide":true,"customDefaultValue":"","calculateValue":"","calculateServer":false,"allowCalculateOverride":false,"validate":{"required":false,"customMessage":"","custom":"","customPrivate":false,"json":"","strictDateValidation":false,"multiple":false,"unique":false},"errorLabel":"","errors":"","key":"aPreliminarySiteInvestigationAddressingAllIdentifiedAreasOfPotentialEnvironmentalConcernApeCsAndPotentialContaminantsOfConcernPcoCsWasCompletedOneOrMoreSubstancesWereIdentifiedAtConcentrationsExceedingApplicableStandardsOrCriteriaInCsrSchedules313233Or34","tags":[],"properties":{},"conditional":{"show":null,"when":null,"eq":"","json":""},"customConditional":"","logic":[],"attributes":{},"overlay":{"style":"","page":"","left":"","top":"","width":"","height":""},"type":"checkbox","name":"","value":"","input":true,"placeholder":"","prefix":"","suffix":"","multiple":false,"unique":false,"refreshOn":"","dataGridLabel":true,"labelPosition":"right","widget":null,"validateOn":"change","showCharCount":false,"showWordCount":false,"allowMultipleMasks":false,"addons":[],"id":"e5lftfj","defaultValue":false},{"label":"A Detailed Site Investigation addressing the locations and extent of all identified areas of environmental concern (AECs) and contaminants of concern (COCs) was completed ","description":"","tooltip":"","shortcut":"","inputType":"checkbox","customClass":"","tabindex":"","hidden":false,"hideLabel":false,"autofocus":false,"disabled":false,"tableView":false,"modalEdit":false,"defaultValue":false,"persistent":true,"protected":false,"dbIndex":false,"encrypted":false,"redrawOn":"","clearOnHide":true,"customDefaultValue":"","calculateValue":"","calculateServer":false,"allowCalculateOverride":false,"validate":{"required":false,"customMessage":"","custom":"","customPrivate":false,"json":"","strictDateValidation":false,"multiple":false,"unique":false},"errorLabel":"","errors":"","key":"aDetailedSiteInvestigationAddressingTheLocationsAndExtentOfAllIdentifiedAreasOfEnvironmentalConcernAeCsAndContaminantsOfConcernCoCsWasCompletedAnd","tags":[],"properties":{},"conditional":{"show":null,"when":null,"eq":"","json":""},"customConditional":"","logic":[],"attributes":{},"overlay":{"style":"","page":"","left":"","top":"","width":"","height":""},"type":"checkbox","name":"","value":"","input":true,"placeholder":"","prefix":"","suffix":"","multiple":false,"unique":false,"refreshOn":"","dataGridLabel":true,"labelPosition":"right","widget":null,"validateOn":"change","showCharCount":false,"showWordCount":false,"allowMultipleMasks":false,"addons":[],"id":"eago9n"},{"label":"And:","labelPosition":"top","optionsLabelPosition":"right","description":"","tooltip":"","customClass":"","tabindex":"","inline":false,"hidden":false,"hideLabel":false,"autofocus":false,"disabled":false,"tableView":false,"modalEdit":false,"values":[{"label":"Forms the basis of a remediation plan or risk assessment","value":"formsTheBasisOfARemediationPlanOrRiskAssessment","shortcut":""},{"label":"Was the basis for remediation of the site","value":"wasTheBasisForRemediationOfTheSite","shortcut":""},{"label":"The site is classified as non-high risk under Protocol 12","value":"theSiteIsClassifiedAsNonHighRiskUnderProtocol12","shortcut":""}],"persistent":true,"protected":false,"dbIndex":false,"encrypted":false,"redrawOn":"","clearOnHide":true,"customDefaultValue":"","calculateValue":"","calculateServer":false,"allowCalculateOverride":false,"validate":{"required":false,"onlyAvailableItems":false,"customMessage":"","custom":"","customPrivate":false,"json":"","strictDateValidation":false,"multiple":false,"unique":false},"errorLabel":"","minSelectedCountMessage":"","maxSelectedCountMessage":"","errors":"","key":"and","tags":[],"properties":{},"conditional":{"show":true,"when":"aDetailedSiteInvestigationAddressingTheLocationsAndExtentOfAllIdentifiedAreasOfEnvironmentalConcernAeCsAndContaminantsOfConcernCoCsWasCompletedAnd","eq":"true","json":""},"customConditional":"","logic":[],"attributes":{},"overlay":{"style":"","page":"","left":"","top":"","width":"","height":""},"type":"selectboxes","input":true,"inputType":"checkbox","placeholder":"","prefix":"","suffix":"","multiple":false,"unique":false,"refreshOn":"","dataGridLabel":false,"widget":null,"validateOn":"change","showCharCount":false,"showWordCount":false,"allowMultipleMasks":false,"addons":[],"fieldSet":false,"id":"e4eek82","defaultValue":{"formsTheBasisOfARemediationPlanOrRiskAssessment":false,"wasTheBasisForRemediationOfTheSite":false,"theSiteIsClassifiedAsNonHighRiskUnderProtocol12":false}},{"label":"When this Summary of Site Condition was prepared","labelPosition":"top","optionsLabelPosition":"right","description":"","tooltip":"","customClass":"","tabindex":"","inline":false,"hidden":false,"hideLabel":false,"autofocus":false,"disabled":false,"tableView":false,"modalEdit":false,"values":[{"label":"Remediation plan had been prepared that provides for remediating all identified locations and respective extent of all contaminants to either CSR numerical or risk-based standards.","value":"remediationPlanHadBeenPreparedThatProvidesForRemediatingAllIdentifiedLocationsAndRespectiveExtentOfAllContaminantsToEitherCsrNumericalOrRiskBasedStandards","shortcut":""},{"label":"All contaminants and their respective locations and extent as identified in investigation and risk assessment reports had been remediated to CSR numerical concentration or risk-based standards.","value":"allContaminantsAndTheirRespectiveLocationsAndExtentAsIdentifiedInInvestigationAndRiskAssessmentReportsHadBeenRemediatedToCsrNumericalConcentrationOrRiskBasedStandards","shortcut":""}],"dataType":"","persistent":true,"protected":false,"dbIndex":false,"encrypted":false,"redrawOn":"","clearOnHide":true,"customDefaultValue":"","calculateValue":"","calculateServer":false,"allowCalculateOverride":false,"validate":{"required":false,"onlyAvailableItems":false,"customMessage":"","custom":"","customPrivate":false,"json":"","strictDateValidation":false,"multiple":false,"unique":false},"errorLabel":"","errors":"","key":"whenThisSummaryOfSiteConditionWasPrepared","tags":[],"properties":{},"conditional":{"show":null,"when":null,"eq":"","json":""},"customConditional":"","logic":[],"attributes":{},"overlay":{"style":"","page":"","left":"","top":"","width":"","height":""},"type":"radio","input":true,"placeholder":"","prefix":"","suffix":"","multiple":false,"unique":false,"refreshOn":"","dataGridLabel":false,"widget":null,"validateOn":"change","showCharCount":false,"showWordCount":false,"allowMultipleMasks":false,"addons":[],"inputType":"radio","fieldSet":false,"id":"e811jy","defaultValue":""}],"id":"exe5vq3j"},{"title":"Panel","theme":"default","tooltip":"","customClass":"","collapsible":false,"hidden":false,"hideLabel":true,"disabled":false,"modalEdit":false,"key":"panel7","tags":[],"properties":{},"customConditional":"","conditional":{"json":"","show":null,"when":null,"eq":""},"logic":[],"attributes":{},"overlay":{"style":"","page":"","left":"","top":"","width":"","height":""},"type":"panel","label":"Panel","breadcrumb":"default","tabindex":"","input":false,"placeholder":"","prefix":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":false,"clearOnHide":false,"refreshOn":"","redrawOn":"","tableView":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"allowMultipleMasks":false,"addons":[],"tree":false,"lazyLoad":false,"components":[{"html":"

For a recommendation for a Site Risk Reclassification

","label":"Content","customClass":"","refreshOnChange":false,"hidden":false,"modalEdit":false,"key":"content54","tags":[],"properties":{},"conditional":{"show":null,"when":null,"eq":"","json":""},"customConditional":"","logic":[],"attributes":{},"overlay":{"style":"","page":"","left":"","top":"","width":"","height":""},"type":"content","input":false,"tableView":false,"placeholder":"","prefix":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"clearOnHide":true,"refreshOn":"","redrawOn":"","dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"allowMultipleMasks":false,"addons":[],"id":"e9few7c"},{"label":"Please select","labelPosition":"top","optionsLabelPosition":"right","description":"","tooltip":"","customClass":"","tabindex":"","inline":false,"hidden":false,"hideLabel":false,"autofocus":false,"disabled":false,"tableView":false,"modalEdit":false,"values":[{"label":"The site is classified as risk-managed high risk under Protocol 12.","value":"theSiteIsClassifiedAsRiskManagedHighRiskUnderProtocol12","shortcut":""},{"label":"The site is classified as non-high risk under Protocol 12.","value":"theSiteIsClassifiedAsNonHighRiskUnderProtocol12","shortcut":""}],"dataType":"","persistent":true,"protected":false,"dbIndex":false,"encrypted":false,"redrawOn":"","clearOnHide":true,"customDefaultValue":"","calculateValue":"","calculateServer":false,"allowCalculateOverride":false,"validate":{"required":false,"onlyAvailableItems":false,"customMessage":"","custom":"","customPrivate":false,"json":"","strictDateValidation":false,"multiple":false,"unique":false},"errorLabel":"","errors":"","key":"pleaseSelect","tags":[],"properties":{},"conditional":{"show":null,"when":null,"eq":"","json":""},"customConditional":"","logic":[],"attributes":{},"overlay":{"style":"","page":"","left":"","top":"","width":"","height":""},"type":"radio","input":true,"placeholder":"","prefix":"","suffix":"","multiple":false,"unique":false,"refreshOn":"","dataGridLabel":false,"widget":null,"validateOn":"change","showCharCount":false,"showWordCount":false,"allowMultipleMasks":false,"addons":[],"inputType":"radio","fieldSet":false,"id":"ek4a37","defaultValue":""}],"id":"eyahkvk"}],"placeholder":"","prefix":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":false,"clearOnHide":false,"refreshOn":"","redrawOn":"","dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"allowMultipleMasks":false,"addons":[],"tree":false,"lazyLoad":false,"id":"exfhnl"},{"title":"SECTION II - Substances Remediated or Standards or Criteria Applied","theme":"default","tooltip":"","customClass":"","collapsible":false,"hidden":false,"hideLabel":false,"disabled":false,"modalEdit":false,"key":"sectionIiSubstancesRemediatedOrStandardsOrCriteriaApplied","tags":[],"properties":{},"customConditional":"","conditional":{"json":"","show":null,"when":null,"eq":""},"logic":[],"attributes":{},"overlay":{"style":"","page":"","left":"","top":"","width":"","height":""},"type":"panel","label":"Panel","breadcrumb":"default","tabindex":"","input":false,"placeholder":"","prefix":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":false,"clearOnHide":false,"refreshOn":"","redrawOn":"","tableView":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"allowMultipleMasks":false,"addons":[],"tree":false,"lazyLoad":false,"components":[{"html":"

7.2 Substances remediated and standards or criteria applied

 

Contaminants have been remediated to comply with standards or criteria listed in the following table: (If the site required remediation and has been remediated.) 

","label":"Content","customClass":"","refreshOnChange":false,"hidden":false,"modalEdit":false,"key":"content55","tags":[],"properties":{},"conditional":{"show":null,"when":null,"eq":"","json":""},"customConditional":"","logic":[],"attributes":{},"overlay":{"style":"","page":"","left":"","top":"","width":"","height":""},"type":"content","input":false,"tableView":false,"placeholder":"","prefix":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"clearOnHide":true,"refreshOn":"","redrawOn":"","dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"allowMultipleMasks":false,"addons":[],"id":"egplxle"},{"label":"Substances Remediated","labelPosition":"top","optionsLabelPosition":"right","description":"","tooltip":"","customClass":"","tabindex":"","inline":false,"hidden":false,"hideLabel":false,"autofocus":false,"disabled":false,"tableView":false,"modalEdit":false,"values":[{"label":"N/A","value":"nA","shortcut":""},{"label":"Soil","value":"soil","shortcut":""},{"label":"Water","value":"water","shortcut":""},{"label":"Vapour","value":"vapour","shortcut":""},{"label":"Sediment","value":"sediment","shortcut":""},{"label":"Other","value":"other","shortcut":""}],"persistent":true,"protected":false,"dbIndex":false,"encrypted":false,"redrawOn":"","clearOnHide":true,"customDefaultValue":"","calculateValue":"","calculateServer":false,"allowCalculateOverride":false,"validate":{"required":false,"onlyAvailableItems":false,"customMessage":"","custom":"","customPrivate":false,"json":"","strictDateValidation":false,"multiple":false,"unique":false},"errorLabel":"","minSelectedCountMessage":"","maxSelectedCountMessage":"","errors":"","key":"substancesRemediated","tags":[],"properties":{},"conditional":{"show":null,"when":null,"eq":"","json":""},"customConditional":"","logic":[],"attributes":{},"overlay":{"style":"","page":"","left":"","top":"","width":"","height":""},"type":"selectboxes","input":true,"placeholder":"","prefix":"","suffix":"","multiple":false,"unique":false,"refreshOn":"","dataGridLabel":false,"widget":null,"validateOn":"change","showCharCount":false,"showWordCount":false,"allowMultipleMasks":false,"addons":[],"inputType":"checkbox","fieldSet":false,"id":"ec3tb","defaultValue":{}},{"html":"

Use specific compound names as listed in the Contaminated Sites Regulation Schedules. Please list compounds in columns to aid review.

","label":"Content","customClass":"","refreshOnChange":false,"hidden":false,"modalEdit":false,"key":"content56","tags":[],"properties":{},"conditional":{"show":null,"when":null,"eq":"","json":""},"customConditional":"","logic":[],"attributes":{},"overlay":{"style":"","page":"","left":"","top":"","width":"","height":""},"type":"content","input":false,"placeholder":"","prefix":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"clearOnHide":true,"refreshOn":"","redrawOn":"","tableView":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"allowMultipleMasks":false,"addons":[],"id":"ep1zcdl"},{"label":"Soil","labelPosition":"top","description":"","tooltip":"","disableAddingRemovingRows":false,"conditionalAddButton":"","reorder":false,"addAnother":"","addAnotherPosition":"bottom","layoutFixed":false,"enableRowGroups":false,"initEmpty":false,"customClass":"","tabindex":"","hidden":false,"hideLabel":false,"autofocus":false,"disabled":false,"tableView":false,"modalEdit":false,"defaultValue":[{"numericalStandards":"","riskBasedStandards":"","p2SiteSpecificNumericalStandards":"","p4BackgroundConcentrations":"","whatLandUseHasTheSubstanceBeenRemediatedToInSoilPleaseSelectAllThatApply":{"il":false,"cl":false,"rlhd":false,"rlld":false,"pl":false,"al":false,"wln":false,"wlr":false}}],"persistent":true,"protected":false,"dbIndex":false,"encrypted":false,"redrawOn":"","clearOnHide":true,"customDefaultValue":"","calculateValue":"","calculateServer":false,"allowCalculateOverride":false,"validateOn":"change","validate":{"required":false,"minLength":"","maxLength":"","customMessage":"","custom":"","customPrivate":false,"json":"","strictDateValidation":false,"multiple":false,"unique":false},"errorLabel":"","errors":"","key":"soil","tags":[],"properties":{},"conditional":{"show":true,"when":"substancesRemediated","eq":"soil","json":""},"customConditional":"","logic":[],"attributes":{},"overlay":{"style":"","page":"","left":"","top":"","width":"","height":""},"type":"datagrid","input":true,"components":[{"title":"Soil","collapsible":false,"hideLabel":true,"key":"soil1","type":"panel","label":"Panel","input":false,"tableView":false,"components":[{"label":"Numerical Standards","tableView":true,"key":"numericalStandards","type":"textfield","input":true,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":{"type":"input"},"attributes":{},"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false,"minLength":"","maxLength":"","pattern":""},"conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"mask":false,"inputType":"text","inputFormat":"plain","inputMask":"","displayMask":"","spellcheck":true,"truncateMultipleSpaces":false,"id":"emlo7p"},{"label":"Risk-based standards","tableView":true,"key":"riskBasedStandards","type":"textfield","input":true,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":{"type":"input"},"attributes":{},"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false,"minLength":"","maxLength":"","pattern":""},"conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"mask":false,"inputType":"text","inputFormat":"plain","inputMask":"","displayMask":"","spellcheck":true,"truncateMultipleSpaces":false,"id":"en9kpdt"},{"label":"P2 site specific numerical standards","tableView":true,"key":"p2SiteSpecificNumericalStandards","type":"textfield","input":true,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":{"type":"input"},"attributes":{},"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false,"minLength":"","maxLength":"","pattern":""},"conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"mask":false,"inputType":"text","inputFormat":"plain","inputMask":"","displayMask":"","spellcheck":true,"truncateMultipleSpaces":false,"id":"emstd8s"},{"label":"P4 Background concentrations","tableView":true,"key":"p4BackgroundConcentrations","type":"textfield","input":true,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":{"type":"input"},"attributes":{},"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false,"minLength":"","maxLength":"","pattern":""},"conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"mask":false,"inputType":"text","inputFormat":"plain","inputMask":"","displayMask":"","spellcheck":true,"truncateMultipleSpaces":false,"id":"ez67mug"},{"label":"What land use has the substance been remediated to in soil? (Please select all that apply)","optionsLabelPosition":"right","tableView":false,"values":[{"label":"IL","value":"il","shortcut":""},{"label":"CL","value":"cl","shortcut":""},{"label":"RLHD","value":"rlhd","shortcut":""},{"label":"RLLD","value":"rlld","shortcut":""},{"label":"PL","value":"pl","shortcut":""},{"label":"AL","value":"al","shortcut":""},{"label":"WLN","value":"wln","shortcut":""},{"label":"WLR","value":"wlr","shortcut":""}],"key":"whatLandUseHasTheSubstanceBeenRemediatedToInSoilPleaseSelectAllThatApply","type":"selectboxes","input":true,"inputType":"checkbox","placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"attributes":{},"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false,"onlyAvailableItems":false},"conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"fieldSet":false,"inline":false,"id":"estazfs"}],"id":"ef5nwt0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000","placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":false,"hidden":false,"clearOnHide":false,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"attributes":{},"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false},"conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"tree":false,"lazyLoad":false,"theme":"default","breadcrumb":"default"}],"placeholder":"","prefix":"","suffix":"","multiple":false,"unique":false,"refreshOn":"","dataGridLabel":false,"widget":null,"showCharCount":false,"showWordCount":false,"allowMultipleMasks":false,"addons":[],"tree":true,"lazyLoad":false,"id":"edy1cum"},{"label":"Water","labelPosition":"top","description":"","tooltip":"","disableAddingRemovingRows":false,"conditionalAddButton":"","reorder":false,"addAnother":"","addAnotherPosition":"bottom","layoutFixed":false,"enableRowGroups":false,"initEmpty":false,"customClass":"","tabindex":"","hidden":false,"hideLabel":false,"autofocus":false,"disabled":false,"tableView":false,"modalEdit":false,"defaultValue":[{"numericalStandards":"","riskBasedStandards":"","p9BackgroundConcentration":"","whatWaterUseHasTheSubstanceBeenRemediatedToPleaseSelectAllThatApply":{"aquaticLifeAwFresh":false,"aquaticLifeAwMarine":false,"irrigationIw":false,"livestockLw":false,"drinkingWaterDw":false,"noWaterUse":false}}],"persistent":true,"protected":false,"dbIndex":false,"encrypted":false,"redrawOn":"","clearOnHide":true,"customDefaultValue":"","calculateValue":"","calculateServer":false,"allowCalculateOverride":false,"validateOn":"change","validate":{"required":false,"minLength":"","maxLength":"","customMessage":"","custom":"","customPrivate":false,"json":"","strictDateValidation":false,"multiple":false,"unique":false},"errorLabel":"","errors":"","key":"water","tags":[],"properties":{},"conditional":{"show":true,"when":"substancesRemediated","eq":"water","json":""},"customConditional":"","logic":[],"attributes":{},"overlay":{"style":"","page":"","left":"","top":"","width":"","height":""},"type":"datagrid","input":true,"components":[{"collapsible":false,"hideLabel":true,"key":"panel","type":"panel","label":"Panel","input":false,"tableView":false,"components":[{"label":"Numerical Standards","tableView":true,"key":"numericalStandards","type":"textfield","input":true,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":{"type":"input"},"attributes":{},"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false,"minLength":"","maxLength":"","pattern":""},"conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"mask":false,"inputType":"text","inputFormat":"plain","inputMask":"","displayMask":"","spellcheck":true,"truncateMultipleSpaces":false,"id":"ehpkhqe"},{"label":"Risk-based standards","tableView":true,"key":"riskBasedStandards","type":"textfield","input":true,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":{"type":"input"},"attributes":{},"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false,"minLength":"","maxLength":"","pattern":""},"conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"mask":false,"inputType":"text","inputFormat":"plain","inputMask":"","displayMask":"","spellcheck":true,"truncateMultipleSpaces":false,"id":"ebrjb1o"},{"label":"P9 Background concentration","tableView":true,"key":"p9BackgroundConcentration","type":"textfield","input":true,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":{"type":"input"},"attributes":{},"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false,"minLength":"","maxLength":"","pattern":""},"conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"mask":false,"inputType":"text","inputFormat":"plain","inputMask":"","displayMask":"","spellcheck":true,"truncateMultipleSpaces":false,"id":"ee4f77p"},{"label":"What water use has the substance been remediated to? (Please select all that apply)","optionsLabelPosition":"right","tableView":false,"values":[{"label":"Aquatic Life (AW) Fresh","value":"aquaticLifeAwFresh","shortcut":""},{"label":"Aquatic Life (AW) Marine","value":"aquaticLifeAwMarine","shortcut":""},{"label":"Irrigation (IW)","value":"irrigationIw","shortcut":""},{"label":"Livestock (LW)","value":"livestockLw","shortcut":""},{"label":"Drinking Water (DW)","value":"drinkingWaterDw","shortcut":""},{"label":"No Water Use","value":"noWaterUse","shortcut":""}],"key":"whatWaterUseHasTheSubstanceBeenRemediatedToPleaseSelectAllThatApply","type":"selectboxes","input":true,"inputType":"checkbox","placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"attributes":{},"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false,"onlyAvailableItems":false},"conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"fieldSet":false,"inline":false,"id":"eq5jxk"}],"id":"eoq12ev000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000","placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":false,"hidden":false,"clearOnHide":false,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"attributes":{},"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false},"conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"tree":false,"lazyLoad":false,"title":"Panel","theme":"default","breadcrumb":"default"}],"placeholder":"","prefix":"","suffix":"","multiple":false,"unique":false,"refreshOn":"","dataGridLabel":false,"widget":null,"showCharCount":false,"showWordCount":false,"allowMultipleMasks":false,"addons":[],"tree":true,"lazyLoad":false,"id":"e7or7bq"},{"label":"Vapour","labelPosition":"top","description":"","tooltip":"","disableAddingRemovingRows":false,"conditionalAddButton":"","reorder":false,"addAnother":"","addAnotherPosition":"bottom","layoutFixed":false,"enableRowGroups":false,"initEmpty":false,"customClass":"","tabindex":"","hidden":false,"hideLabel":false,"autofocus":false,"disabled":false,"tableView":false,"modalEdit":false,"defaultValue":[{"numericalStandards":"","riskBasedStandards":""}],"persistent":true,"protected":false,"dbIndex":false,"encrypted":false,"redrawOn":"","clearOnHide":true,"customDefaultValue":"","calculateValue":"","calculateServer":false,"allowCalculateOverride":false,"validateOn":"change","validate":{"required":false,"minLength":"","maxLength":"","customMessage":"","custom":"","customPrivate":false,"json":"","strictDateValidation":false,"multiple":false,"unique":false},"errorLabel":"","errors":"","key":"vapour","tags":[],"properties":{},"conditional":{"show":true,"when":"substancesRemediated","eq":"vapour","json":""},"customConditional":"","logic":[],"attributes":{},"overlay":{"style":"","page":"","left":"","top":"","width":"","height":""},"type":"datagrid","input":true,"components":[{"collapsible":false,"hideLabel":true,"key":"panel","type":"panel","label":"Panel","input":false,"tableView":false,"components":[{"label":"Numerical Standards","tableView":true,"key":"numericalStandards","type":"textfield","input":true,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":{"type":"input"},"attributes":{},"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false,"minLength":"","maxLength":"","pattern":""},"conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"mask":false,"inputType":"text","inputFormat":"plain","inputMask":"","displayMask":"","spellcheck":true,"truncateMultipleSpaces":false,"id":"ecjqd2"},{"label":"Risk-based standards","tableView":true,"key":"riskBasedStandards","type":"textfield","input":true,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":{"type":"input"},"attributes":{},"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false,"minLength":"","maxLength":"","pattern":""},"conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"mask":false,"inputType":"text","inputFormat":"plain","inputMask":"","displayMask":"","spellcheck":true,"truncateMultipleSpaces":false,"id":"enjn8bkh"}],"id":"ett43n0j00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000","placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":false,"hidden":false,"clearOnHide":false,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"attributes":{},"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false},"conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"tree":false,"lazyLoad":false,"title":"Panel","theme":"default","breadcrumb":"default"}],"placeholder":"","prefix":"","suffix":"","multiple":false,"unique":false,"refreshOn":"","dataGridLabel":false,"widget":null,"showCharCount":false,"showWordCount":false,"allowMultipleMasks":false,"addons":[],"tree":true,"lazyLoad":false,"id":"eghuf8"},{"label":"Sediment","labelPosition":"top","description":"","tooltip":"","disableAddingRemovingRows":false,"conditionalAddButton":"","reorder":false,"addAnother":"","addAnotherPosition":"bottom","layoutFixed":false,"enableRowGroups":false,"initEmpty":false,"customClass":"","tabindex":"","hidden":false,"hideLabel":false,"autofocus":false,"disabled":false,"tableView":false,"modalEdit":false,"defaultValue":[{"numericalStandards":"","riskBasedStandards":""}],"persistent":true,"protected":false,"dbIndex":false,"encrypted":false,"redrawOn":"","clearOnHide":true,"customDefaultValue":"","calculateValue":"","calculateServer":false,"allowCalculateOverride":false,"validateOn":"change","validate":{"required":false,"minLength":"","maxLength":"","customMessage":"","custom":"","customPrivate":false,"json":"","strictDateValidation":false,"multiple":false,"unique":false},"errorLabel":"","errors":"","key":"sediment","tags":[],"properties":{},"conditional":{"show":true,"when":"substancesRemediated","eq":"sediment","json":""},"customConditional":"","logic":[],"attributes":{},"overlay":{"style":"","page":"","left":"","top":"","width":"","height":""},"type":"datagrid","input":true,"components":[{"collapsible":false,"hideLabel":true,"key":"panel8","type":"panel","label":"Panel","input":false,"tableView":false,"components":[{"label":"Numerical Standards","tableView":true,"key":"numericalStandards","type":"textfield","input":true,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":{"type":"input"},"attributes":{},"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false,"minLength":"","maxLength":"","pattern":""},"conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"mask":false,"inputType":"text","inputFormat":"plain","inputMask":"","displayMask":"","spellcheck":true,"truncateMultipleSpaces":false,"id":"esi48dn"},{"label":"Risk-based standards","tableView":true,"key":"riskBasedStandards","type":"textfield","input":true,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":{"type":"input"},"attributes":{},"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false,"minLength":"","maxLength":"","pattern":""},"conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"mask":false,"inputType":"text","inputFormat":"plain","inputMask":"","displayMask":"","spellcheck":true,"truncateMultipleSpaces":false,"id":"ee9w9ok"}],"id":"euuaaa0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000","placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":false,"hidden":false,"clearOnHide":false,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"attributes":{},"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false},"conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"tree":false,"lazyLoad":false,"title":"Panel","theme":"default","breadcrumb":"default"}],"placeholder":"","prefix":"","suffix":"","multiple":false,"unique":false,"refreshOn":"","dataGridLabel":false,"widget":null,"showCharCount":false,"showWordCount":false,"allowMultipleMasks":false,"addons":[],"tree":true,"lazyLoad":false,"id":"ecd1ylh"},{"label":"Other","labelPosition":"top","description":"","tooltip":"","disableAddingRemovingRows":false,"conditionalAddButton":"","reorder":false,"addAnother":"","addAnotherPosition":"bottom","layoutFixed":false,"enableRowGroups":false,"initEmpty":false,"customClass":"","tabindex":"","hidden":false,"hideLabel":false,"autofocus":false,"disabled":false,"tableView":false,"modalEdit":false,"defaultValue":[{"numericalStandards":"","riskBasedStandards":""}],"persistent":true,"protected":false,"dbIndex":false,"encrypted":false,"redrawOn":"","clearOnHide":true,"customDefaultValue":"","calculateValue":"","calculateServer":false,"allowCalculateOverride":false,"validateOn":"change","validate":{"required":false,"minLength":"","maxLength":"","customMessage":"","custom":"","customPrivate":false,"json":"","strictDateValidation":false,"multiple":false,"unique":false},"errorLabel":"","errors":"","key":"other","tags":[],"properties":{},"conditional":{"show":true,"when":"substancesRemediated","eq":"other","json":""},"customConditional":"","logic":[],"attributes":{},"overlay":{"style":"","page":"","left":"","top":"","width":"","height":""},"type":"datagrid","input":true,"components":[{"collapsible":false,"hideLabel":true,"key":"panel8","type":"panel","label":"Panel","input":false,"tableView":false,"components":[{"label":"Numerical Standards","tableView":true,"key":"numericalStandards","type":"textfield","input":true,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":{"type":"input"},"attributes":{},"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false,"minLength":"","maxLength":"","pattern":""},"conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"mask":false,"inputType":"text","inputFormat":"plain","inputMask":"","displayMask":"","spellcheck":true,"truncateMultipleSpaces":false,"id":"e5cfjgb"},{"label":"Risk-based standards","tableView":true,"key":"riskBasedStandards","type":"textfield","input":true,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":{"type":"input"},"attributes":{},"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false,"minLength":"","maxLength":"","pattern":""},"conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"mask":false,"inputType":"text","inputFormat":"plain","inputMask":"","displayMask":"","spellcheck":true,"truncateMultipleSpaces":false,"id":"e6efm7o"}],"id":"edr4h05000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000","placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":false,"hidden":false,"clearOnHide":false,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"attributes":{},"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false},"conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"tree":false,"lazyLoad":false,"title":"Panel","theme":"default","breadcrumb":"default"}],"placeholder":"","prefix":"","suffix":"","multiple":false,"unique":false,"refreshOn":"","dataGridLabel":false,"widget":null,"showCharCount":false,"showWordCount":false,"allowMultipleMasks":false,"addons":[],"tree":true,"lazyLoad":false,"id":"efz782r"},{"title":"","theme":"default","tooltip":"","customClass":"","collapsible":false,"hidden":false,"hideLabel":false,"disabled":false,"modalEdit":false,"key":"panel11","tags":[],"properties":{},"customConditional":"","conditional":{"json":"","show":null,"when":null,"eq":""},"logic":[],"attributes":{},"overlay":{"style":"","page":"","left":"","top":"","width":"","height":""},"type":"panel","label":"Panel","breadcrumb":"default","tabindex":"","input":false,"placeholder":"","prefix":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":false,"clearOnHide":false,"refreshOn":"","redrawOn":"","tableView":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"allowMultipleMasks":false,"addons":[],"tree":false,"lazyLoad":false,"components":[{"html":"

The Director may accept the recommendations of an Approved Professional(s) involved in the review and submission of investigation, risk assessment or remediation reports based in part on the understanding that

","label":"Content","customClass":"","refreshOnChange":false,"hidden":false,"modalEdit":false,"key":"content57","tags":[],"properties":{},"conditional":{"show":null,"when":null,"eq":"","json":""},"customConditional":"","logic":[],"attributes":{},"overlay":{"style":"","page":"","left":"","top":"","width":"","height":""},"type":"content","input":false,"placeholder":"","prefix":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"clearOnHide":true,"refreshOn":"","redrawOn":"","tableView":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"allowMultipleMasks":false,"addons":[],"id":"e8rd8qj"},{"label":"As of the date of signing of this report the approved professional, or approved professionals if more than one, is/are member(s) in good standing of the Roster of Approved Professionals, as maintained by the ministry, and member(s) of the Contaminated Sites Approved Professionals Society (CSAP Society)","description":"","tooltip":"","shortcut":"","inputType":"checkbox","customClass":"","tabindex":"","hidden":false,"hideLabel":false,"autofocus":false,"disabled":false,"tableView":false,"modalEdit":false,"persistent":true,"protected":false,"dbIndex":false,"encrypted":false,"redrawOn":"","clearOnHide":true,"customDefaultValue":"","calculateValue":"","calculateServer":false,"allowCalculateOverride":false,"validate":{"required":true,"customMessage":"","custom":"","customPrivate":false,"json":"","strictDateValidation":false,"multiple":false,"unique":false},"errorLabel":"","errors":"","key":"asOfTheDateOfSigningOfThisReportTheApprovedProfessionalOrApprovedProfessionalsIfMoreThanOneIsAreMemberSInGoodStandingOfTheRosterOfApprovedProfessionalsAsMaintainedByTheMinistryAndMemberSOfTheContaminatedSitesApprovedProfessionalsSocietyCsapSociety","tags":[],"properties":{},"conditional":{"show":null,"when":null,"eq":"","json":""},"customConditional":"","logic":[],"attributes":{},"overlay":{"style":"","page":"","left":"","top":"","width":"","height":""},"type":"checkbox","name":"","value":"","input":true,"placeholder":"","prefix":"","suffix":"","multiple":false,"unique":false,"refreshOn":"","dataGridLabel":true,"labelPosition":"right","widget":null,"validateOn":"change","showCharCount":false,"showWordCount":false,"allowMultipleMasks":false,"addons":[],"id":"espd59k","defaultValue":false},{"label":"The approved professionals signing this Summary of Site Condition have reviewed Table 1, Protocol 6 for Contaminated Sites (Eligibility of Applications for Review by Approved Professionals) and confirm that the Application for Contaminated Sites Services may be processed in the manner for non-high risk sites under the Roster of Approved Professionals process","description":"","tooltip":"","shortcut":"","inputType":"checkbox","customClass":"","tabindex":"","hidden":false,"hideLabel":false,"autofocus":false,"disabled":false,"tableView":false,"modalEdit":false,"persistent":true,"protected":false,"dbIndex":false,"encrypted":false,"redrawOn":"","clearOnHide":true,"customDefaultValue":"","calculateValue":"","calculateServer":false,"allowCalculateOverride":false,"validate":{"required":true,"customMessage":"","custom":"","customPrivate":false,"json":"","strictDateValidation":false,"multiple":false,"unique":false},"errorLabel":"","errors":"","key":"theApprovedProfessionalsSigningThisSummaryOfSiteConditionHaveReviewedTable1Protocol6ForContaminatedSitesEligibilityOfApplicationsForReviewByApprovedProfessionalsAndConfirmThatTheApplicationForContaminatedSitesServicesMayBeProcessedInTheMannerForNonHighRiskSitesUnderTheRosterOfApprovedProfessionalsProcess","tags":[],"properties":{},"conditional":{"show":null,"when":null,"eq":"","json":""},"customConditional":"","logic":[],"attributes":{},"overlay":{"style":"","page":"","left":"","top":"","width":"","height":""},"type":"checkbox","name":"","value":"","input":true,"placeholder":"","prefix":"","suffix":"","multiple":false,"unique":false,"refreshOn":"","dataGridLabel":true,"labelPosition":"right","widget":null,"validateOn":"change","showCharCount":false,"showWordCount":false,"allowMultipleMasks":false,"addons":[],"id":"eso2ic","defaultValue":false},{"label":"The reviewer has no obligation to undertake any inquiry into the validity, accuracy or precision of what is reported in the documents reviewed, beyond that which there is reasonable cause to believe that there could be errors or oversights in those reports","description":"","tooltip":"","shortcut":"","inputType":"checkbox","customClass":"","tabindex":"","hidden":false,"hideLabel":false,"autofocus":false,"disabled":false,"tableView":false,"modalEdit":false,"persistent":true,"protected":false,"dbIndex":false,"encrypted":false,"redrawOn":"","clearOnHide":true,"customDefaultValue":"","calculateValue":"","calculateServer":false,"allowCalculateOverride":false,"validate":{"required":true,"customMessage":"","custom":"","customPrivate":false,"json":"","strictDateValidation":false,"multiple":false,"unique":false},"errorLabel":"","errors":"","key":"theReviewerHasNoObligationToUndertakeAnyInquiryIntoTheValidityAccuracyOrPrecisionOfWhatIsReportedInTheDocumentsReviewedBeyondThatWhichThereIsReasonableCauseToBelieveThatThereCouldBeErrorsOrOversightsInThoseReports","tags":[],"properties":{},"conditional":{"show":null,"when":null,"eq":"","json":""},"customConditional":"","logic":[],"attributes":{},"overlay":{"style":"","page":"","left":"","top":"","width":"","height":""},"type":"checkbox","name":"","value":"","input":true,"placeholder":"","prefix":"","suffix":"","multiple":false,"unique":false,"refreshOn":"","dataGridLabel":true,"labelPosition":"right","widget":null,"validateOn":"change","showCharCount":false,"showWordCount":false,"allowMultipleMasks":false,"addons":[],"id":"ei6b2fp","defaultValue":false},{"label":"(as appropriate) The source site has been satisfactorily investigated for all areas of (potential) environmental concern and (potential) contaminants of concern to determine the lateral and vertical extents of contamination with due regard to EMA, the CSR, and the HWR;","description":"","tooltip":"","shortcut":"","inputType":"checkbox","customClass":"","tabindex":"","hidden":false,"hideLabel":false,"autofocus":false,"disabled":false,"tableView":false,"modalEdit":false,"persistent":true,"protected":false,"dbIndex":false,"encrypted":false,"redrawOn":"","clearOnHide":true,"customDefaultValue":"","calculateValue":"","calculateServer":false,"allowCalculateOverride":false,"validate":{"required":false,"customMessage":"","custom":"","customPrivate":false,"json":"","strictDateValidation":false,"multiple":false,"unique":false},"errorLabel":"","errors":"","key":"asAppropriateTheSourceSiteHasBeenSatisfactorilyInvestigatedForAllAreasOfPotentialEnvironmentalConcernAndPotentialContaminantsOfConcernToDetermineTheLateralAndVerticalExtentsOfContaminationWithDueRegardToEmaTheCsrAndTheHwr","tags":[],"properties":{},"conditional":{"show":null,"when":null,"eq":"","json":""},"customConditional":"","logic":[],"attributes":{},"overlay":{"style":"","page":"","left":"","top":"","width":"","height":""},"type":"checkbox","name":"","value":"","input":true,"placeholder":"","prefix":"","suffix":"","multiple":false,"unique":false,"refreshOn":"","dataGridLabel":true,"labelPosition":"right","widget":null,"validateOn":"change","showCharCount":false,"showWordCount":false,"allowMultipleMasks":false,"addons":[],"id":"e2whe88","defaultValue":false},{"label":"(as appropriate) The submitted documentation meets the requirements of Sections 1, 47, 49, 58 and 59 of the CSR;","description":"","tooltip":"","shortcut":"","inputType":"checkbox","customClass":"","tabindex":"","hidden":false,"hideLabel":false,"autofocus":false,"disabled":false,"tableView":false,"modalEdit":false,"persistent":true,"protected":false,"dbIndex":false,"encrypted":false,"redrawOn":"","clearOnHide":true,"customDefaultValue":"","calculateValue":"","calculateServer":false,"allowCalculateOverride":false,"validate":{"required":false,"customMessage":"","custom":"","customPrivate":false,"json":"","strictDateValidation":false,"multiple":false,"unique":false},"errorLabel":"","errors":"","key":"asAppropriateTheSubmittedDocumentationMeetsTheRequirementsOfSections1474958And59OfTheCsr","tags":[],"properties":{},"conditional":{"show":null,"when":null,"eq":"","json":""},"customConditional":"","logic":[],"attributes":{},"overlay":{"style":"","page":"","left":"","top":"","width":"","height":""},"type":"checkbox","name":"","value":"","input":true,"placeholder":"","prefix":"","suffix":"","multiple":false,"unique":false,"refreshOn":"","dataGridLabel":true,"labelPosition":"right","widget":null,"validateOn":"change","showCharCount":false,"showWordCount":false,"allowMultipleMasks":false,"addons":[],"id":"eyeklkd","defaultValue":false},{"label":"(as appropriate) The Screening Level Risk Assessment meets the requirements of Protocol 13;","description":"","tooltip":"","shortcut":"","inputType":"checkbox","customClass":"","tabindex":"","hidden":false,"hideLabel":false,"autofocus":false,"disabled":false,"tableView":false,"modalEdit":false,"persistent":true,"protected":false,"dbIndex":false,"encrypted":false,"redrawOn":"","clearOnHide":true,"customDefaultValue":"","calculateValue":"","calculateServer":false,"allowCalculateOverride":false,"validate":{"required":false,"customMessage":"","custom":"","customPrivate":false,"json":"","strictDateValidation":false,"multiple":false,"unique":false},"errorLabel":"","errors":"","key":"asAppropriateTheScreeningLevelRiskAssessmentMeetsTheRequirementsOfProtocol13","tags":[],"properties":{},"conditional":{"show":null,"when":null,"eq":"","json":""},"customConditional":"","logic":[],"attributes":{},"overlay":{"style":"","page":"","left":"","top":"","width":"","height":""},"type":"checkbox","name":"","value":"","input":true,"placeholder":"","prefix":"","suffix":"","multiple":false,"unique":false,"refreshOn":"","dataGridLabel":true,"labelPosition":"right","widget":null,"validateOn":"change","showCharCount":false,"showWordCount":false,"allowMultipleMasks":false,"addons":[],"id":"ewud17","defaultValue":false}],"id":"e2kqn9c"},{"title":"","theme":"default","tooltip":"","customClass":"","collapsible":false,"hidden":false,"hideLabel":false,"disabled":false,"modalEdit":false,"key":"panel12","tags":[],"properties":{},"customConditional":"","conditional":{"json":"","show":null,"when":null,"eq":""},"logic":[],"attributes":{},"overlay":{"style":"","page":"","left":"","top":"","width":"","height":""},"type":"panel","label":"Panel","breadcrumb":"default","tabindex":"","input":false,"placeholder":"","prefix":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":false,"clearOnHide":false,"refreshOn":"","redrawOn":"","tableView":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"allowMultipleMasks":false,"addons":[],"tree":false,"lazyLoad":false,"components":[{"html":"

 

Additional for AIPs, Determination, CoC

","label":"Content","customClass":"","refreshOnChange":false,"hidden":false,"modalEdit":false,"key":"content58","tags":[],"properties":{},"conditional":{"show":null,"when":null,"eq":"","json":""},"customConditional":"","logic":[],"attributes":{},"overlay":{"style":"","page":"","left":"","top":"","width":"","height":""},"type":"content","input":false,"tableView":false,"placeholder":"","prefix":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"clearOnHide":true,"refreshOn":"","redrawOn":"","dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"allowMultipleMasks":false,"addons":[],"id":"e3om77a"},{"label":"(for AiPs) The submitted remediation plan, if implemented in accordance with the specified conditions imposed in its draft Schedule 'B' of the AIP, will result in the source site being remediated in accordance with the applicable standards of the CSR and the HWR;","description":"","tooltip":"","shortcut":"","inputType":"checkbox","customClass":"","tabindex":"","hidden":false,"hideLabel":false,"autofocus":false,"disabled":false,"tableView":false,"modalEdit":false,"persistent":true,"protected":false,"dbIndex":false,"encrypted":false,"redrawOn":"","clearOnHide":true,"customDefaultValue":"","calculateValue":"","calculateServer":false,"allowCalculateOverride":false,"validate":{"required":false,"customMessage":"","custom":"","customPrivate":false,"json":"","strictDateValidation":false,"multiple":false,"unique":false},"errorLabel":"","errors":"","key":"forAiPsTheSubmittedRemediationPlanIfImplementedInAccordanceWithTheSpecifiedConditionsImposedInItsDraftScheduleBOfTheAipWillResultInTheSourceSiteBeingRemediatedInAccordanceWithTheApplicableStandardsOfTheCsrAndTheHwr","tags":[],"properties":{},"conditional":{"show":null,"when":null,"eq":"","json":""},"customConditional":"","logic":[],"attributes":{},"overlay":{"style":"","page":"","left":"","top":"","width":"","height":""},"type":"checkbox","name":"","value":"","input":true,"placeholder":"","prefix":"","suffix":"","multiple":false,"unique":false,"refreshOn":"","dataGridLabel":true,"labelPosition":"right","widget":null,"validateOn":"change","showCharCount":false,"showWordCount":false,"allowMultipleMasks":false,"addons":[],"id":"em40f0m","defaultValue":false},{"label":"(for AiPs) It is feasible to implement all provisions of the Remediation Plan and to achieve its objectives and the conditions of the AIP within 5 years of issuance of the AIP","description":"","tooltip":"","shortcut":"","inputType":"checkbox","customClass":"","tabindex":"","hidden":false,"hideLabel":false,"autofocus":false,"disabled":false,"tableView":false,"modalEdit":false,"persistent":true,"protected":false,"dbIndex":false,"encrypted":false,"redrawOn":"","clearOnHide":true,"customDefaultValue":"","calculateValue":"","calculateServer":false,"allowCalculateOverride":false,"validate":{"required":false,"customMessage":"","custom":"","customPrivate":false,"json":"","strictDateValidation":false,"multiple":false,"unique":false},"errorLabel":"","errors":"","key":"forAiPsItIsFeasibleToImplementAllProvisionsOfTheRemediationPlanAndToAchieveItsObjectivesAndTheConditionsOfTheAipWithin5YearsOfIssuanceOfTheAip","tags":[],"properties":{},"conditional":{"show":null,"when":null,"eq":"","json":""},"customConditional":"","logic":[],"attributes":{},"overlay":{"style":"","page":"","left":"","top":"","width":"","height":""},"type":"checkbox","name":"","value":"","input":true,"placeholder":"","prefix":"","suffix":"","multiple":false,"unique":false,"refreshOn":"","dataGridLabel":true,"labelPosition":"right","widget":null,"validateOn":"change","showCharCount":false,"showWordCount":false,"allowMultipleMasks":false,"addons":[],"id":"eko8qoe","defaultValue":false},{"label":"(for AiPs) The confirmation of remediation report meets the requirements of section 49(2) of the CSR;","description":"","tooltip":"","shortcut":"","inputType":"checkbox","customClass":"","tabindex":"","hidden":false,"hideLabel":false,"autofocus":false,"disabled":false,"tableView":false,"modalEdit":false,"persistent":true,"protected":false,"dbIndex":false,"encrypted":false,"redrawOn":"","clearOnHide":true,"customDefaultValue":"","calculateValue":"","calculateServer":false,"allowCalculateOverride":false,"validate":{"required":false,"customMessage":"","custom":"","customPrivate":false,"json":"","strictDateValidation":false,"multiple":false,"unique":false},"errorLabel":"","errors":"","key":"forAiPsTheConfirmationOfRemediationReportMeetsTheRequirementsOfSection492OfTheCsr","tags":[],"properties":{},"conditional":{"show":null,"when":null,"eq":"","json":""},"customConditional":"","logic":[],"attributes":{},"overlay":{"style":"","page":"","left":"","top":"","width":"","height":""},"type":"checkbox","name":"","value":"","input":true,"placeholder":"","prefix":"","suffix":"","multiple":false,"unique":false,"refreshOn":"","dataGridLabel":true,"labelPosition":"right","widget":null,"validateOn":"change","showCharCount":false,"showWordCount":false,"allowMultipleMasks":false,"addons":[],"id":"e1z4cw","defaultValue":false},{"label":"(for CoCs) The confirmation of remediation report meets the requirements of section 49 (2) of the CSR","description":"","tooltip":"","shortcut":"","inputType":"checkbox","customClass":"","tabindex":"","hidden":false,"hideLabel":false,"autofocus":false,"disabled":false,"tableView":false,"modalEdit":false,"persistent":true,"protected":false,"dbIndex":false,"encrypted":false,"redrawOn":"","clearOnHide":true,"customDefaultValue":"","calculateValue":"","calculateServer":false,"allowCalculateOverride":false,"validate":{"required":false,"customMessage":"","custom":"","customPrivate":false,"json":"","strictDateValidation":false,"multiple":false,"unique":false},"errorLabel":"","errors":"","key":"forCoCsTheConfirmationOfRemediationReportMeetsTheRequirementsOfSection492OfTheCsr","tags":[],"properties":{},"conditional":{"show":null,"when":null,"eq":"","json":""},"customConditional":"","logic":[],"attributes":{},"overlay":{"style":"","page":"","left":"","top":"","width":"","height":""},"type":"checkbox","name":"","value":"","input":true,"placeholder":"","prefix":"","suffix":"","multiple":false,"unique":false,"refreshOn":"","dataGridLabel":true,"labelPosition":"right","widget":null,"validateOn":"change","showCharCount":false,"showWordCount":false,"allowMultipleMasks":false,"addons":[],"id":"ebhel0f","defaultValue":false},{"label":"(for CoCs) The onsite management area(s) has/have been satisfactorily remediated in accordance with section 53 (3) of the EMA and section 49(2) of the CSR in accordance with applicable standards as identified in the draft COC;","description":"","tooltip":"","shortcut":"","inputType":"checkbox","customClass":"","tabindex":"","hidden":false,"hideLabel":false,"autofocus":false,"disabled":false,"tableView":false,"modalEdit":false,"persistent":true,"protected":false,"dbIndex":false,"encrypted":false,"redrawOn":"","clearOnHide":true,"customDefaultValue":"","calculateValue":"","calculateServer":false,"allowCalculateOverride":false,"validate":{"required":false,"customMessage":"","custom":"","customPrivate":false,"json":"","strictDateValidation":false,"multiple":false,"unique":false},"errorLabel":"","errors":"","key":"forCoCsTheOnsiteManagementAreaSHasHaveBeenSatisfactorilyRemediatedInAccordanceWithSection533OfTheEmaAndSection492OfTheCsrInAccordanceWithApplicableStandardsAsIdentifiedInTheDraftCoc","tags":[],"properties":{},"conditional":{"show":null,"when":null,"eq":"","json":""},"customConditional":"","logic":[],"attributes":{},"overlay":{"style":"","page":"","left":"","top":"","width":"","height":""},"type":"checkbox","name":"","value":"","input":true,"placeholder":"","prefix":"","suffix":"","multiple":false,"unique":false,"refreshOn":"","dataGridLabel":true,"labelPosition":"right","widget":null,"validateOn":"change","showCharCount":false,"showWordCount":false,"allowMultipleMasks":false,"addons":[],"id":"e5sr4p4","defaultValue":false},{"label":"For CoCs where contamination exists beyond the legal lot boundaries","labelPosition":"top","optionsLabelPosition":"right","description":"","tooltip":"","customClass":"","tabindex":"","inline":false,"hidden":false,"hideLabel":false,"autofocus":false,"disabled":false,"tableView":false,"modalEdit":false,"values":[{"label":"The off-site portion(s) of the site has/have been satisfactorily remediated in accordance with section 53 (3) of the EMA and section 49(2) of the CSR and makes up part of this application","value":"theOffSitePortionSOfTheSiteHasHaveBeenSatisfactorilyRemediatedInAccordanceWithSection533OfTheEmaAndSection492OfTheCsrAndMakesUpPartOfThisApplication","shortcut":""},{"label":"a Remediation Plan in accordance with requirements of the the CSR, sections 1 and 47 has/have been prepared and application has been made for AIP for the off-site portions","value":"aRemediationPlanInAccordanceWithRequirementsOfTheTheCsrSections1And47HasHaveBeenPreparedAndApplicationHasBeenMadeForAipForTheOffSitePortions","shortcut":""}],"dataType":"","persistent":true,"protected":false,"dbIndex":false,"encrypted":false,"redrawOn":"","clearOnHide":true,"customDefaultValue":"","calculateValue":"","calculateServer":false,"allowCalculateOverride":false,"validate":{"required":false,"onlyAvailableItems":false,"customMessage":"","custom":"","customPrivate":false,"json":"","strictDateValidation":false,"multiple":false,"unique":false},"errorLabel":"","errors":"","key":"forCoCsWhereContaminationExistsBeyondTheLegalLotBoundaries","tags":[],"properties":{},"conditional":{"show":null,"when":null,"eq":"","json":""},"customConditional":"","logic":[],"attributes":{},"overlay":{"style":"","page":"","left":"","top":"","width":"","height":""},"type":"radio","input":true,"placeholder":"","prefix":"","suffix":"","multiple":false,"unique":false,"refreshOn":"","dataGridLabel":false,"widget":null,"validateOn":"change","showCharCount":false,"showWordCount":false,"allowMultipleMasks":false,"addons":[],"inputType":"radio","fieldSet":false,"id":"e2vnfbod","defaultValue":""},{"label":"(for CoCs where contamination exists beyond the legal lot boundaries and engineered works are required to prevent recontamination of the site) A signed and stamped design drawing has been provided by a professional engineer for works installed at site boundaries to prevent recontamination of the site. The signatory need not be the Approved Professional signing below.","description":"","tooltip":"","shortcut":"","inputType":"checkbox","customClass":"","tabindex":"","hidden":false,"hideLabel":false,"autofocus":false,"disabled":false,"tableView":false,"modalEdit":false,"persistent":true,"protected":false,"dbIndex":false,"encrypted":false,"redrawOn":"","clearOnHide":true,"customDefaultValue":"","calculateValue":"","calculateServer":false,"allowCalculateOverride":false,"validate":{"required":false,"customMessage":"","custom":"","customPrivate":false,"json":"","strictDateValidation":false,"multiple":false,"unique":false},"errorLabel":"","errors":"","key":"forCoCsWhereContaminationExistsBeyondTheLegalLotBoundariesAndEngineeredWorksAreRequiredToPreventRecontaminationOfTheSiteASignedAndStampedDesignDrawingHasBeenProvidedByAProfessionalEngineerForWorksInstalledAtSiteBoundariesToPreventRecontaminationOfTheSiteTheSignatoryNeedNotBeTheApprovedProfessionalSigningBelow","tags":[],"properties":{},"conditional":{"show":null,"when":null,"eq":"","json":""},"customConditional":"","logic":[],"attributes":{},"overlay":{"style":"","page":"","left":"","top":"","width":"","height":""},"type":"checkbox","name":"","value":"","input":true,"placeholder":"","prefix":"","suffix":"","multiple":false,"unique":false,"refreshOn":"","dataGridLabel":true,"labelPosition":"right","widget":null,"validateOn":"change","showCharCount":false,"showWordCount":false,"allowMultipleMasks":false,"addons":[],"id":"equjrfb","defaultValue":false},{"label":"(for Determination) In accordance with section 15 (5) of the CSR, the source site a contaminated site under section 44(1) of the Environmental Management Act;","description":"","tooltip":"","shortcut":"","inputType":"checkbox","customClass":"","tabindex":"","hidden":false,"hideLabel":false,"autofocus":false,"disabled":false,"tableView":false,"modalEdit":false,"persistent":true,"protected":false,"dbIndex":false,"encrypted":false,"redrawOn":"","clearOnHide":true,"customDefaultValue":"","calculateValue":"","calculateServer":false,"allowCalculateOverride":false,"validate":{"required":false,"customMessage":"","custom":"","customPrivate":false,"json":"","strictDateValidation":false,"multiple":false,"unique":false},"errorLabel":"","errors":"","key":"forDeterminationInAccordanceWithSection155OfTheCsrTheSourceSiteAContaminatedSiteUnderSection441OfTheEnvironmentalManagementAct","tags":[],"properties":{},"conditional":{"show":null,"when":null,"eq":"","json":""},"customConditional":"","logic":[],"attributes":{},"overlay":{"style":"","page":"","left":"","top":"","width":"","height":""},"type":"checkbox","name":"","value":"","input":true,"placeholder":"","prefix":"","suffix":"","multiple":false,"unique":false,"refreshOn":"","dataGridLabel":true,"labelPosition":"right","widget":null,"validateOn":"change","showCharCount":false,"showWordCount":false,"allowMultipleMasks":false,"addons":[],"id":"ekx5xzp","defaultValue":false},{"label":"(if a 'direct' final determination) In accordance with section 15 (5) of the CSR, the source site is a contaminated site under section 44 (3) of EMA","description":"","tooltip":"","shortcut":"","inputType":"checkbox","customClass":"","tabindex":"","hidden":false,"hideLabel":false,"autofocus":false,"disabled":false,"tableView":false,"modalEdit":false,"persistent":true,"protected":false,"dbIndex":false,"encrypted":false,"redrawOn":"","clearOnHide":true,"customDefaultValue":"","calculateValue":"","calculateServer":false,"allowCalculateOverride":false,"validate":{"required":false,"customMessage":"","custom":"","customPrivate":false,"json":"","strictDateValidation":false,"multiple":false,"unique":false},"errorLabel":"","errors":"","key":"ifADirectFinalDeterminationInAccordanceWithSection155OfTheCsrTheSourceSiteIsAContaminatedSiteUnderSection443OfEma","tags":[],"properties":{},"conditional":{"show":null,"when":null,"eq":"","json":""},"customConditional":"","logic":[],"attributes":{},"overlay":{"style":"","page":"","left":"","top":"","width":"","height":""},"type":"checkbox","name":"","value":"","input":true,"placeholder":"","prefix":"","suffix":"","multiple":false,"unique":false,"refreshOn":"","dataGridLabel":true,"labelPosition":"right","widget":null,"validateOn":"change","showCharCount":false,"showWordCount":false,"allowMultipleMasks":false,"addons":[],"id":"e617ge","defaultValue":false}],"id":"ec7vbrl"},{"html":"

The opinions, advice and recommendations expressed in this Summary of Site Condition are made in accordance with generally accepted principles and practices as recognized by members of the applicable profession or discipline practicing at the same time and in the same or similar locations. This Summary of Site Condition does not provide a legal opinion or guarantee regarding compliance with applicable laws.

","label":"Content","customClass":"","refreshOnChange":false,"hidden":false,"modalEdit":false,"key":"content59","tags":[],"properties":{},"conditional":{"show":null,"when":null,"eq":"","json":""},"customConditional":"","logic":[],"attributes":{},"overlay":{"style":"","page":"","left":"","top":"","width":"","height":""},"type":"content","input":false,"placeholder":"","prefix":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"clearOnHide":true,"refreshOn":"","redrawOn":"","tableView":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"allowMultipleMasks":false,"addons":[],"id":"eg6vc"},{"label":"Data Grid","labelPosition":"top","description":"","tooltip":"","disableAddingRemovingRows":false,"conditionalAddButton":"","reorder":false,"addAnother":"","addAnotherPosition":"bottom","layoutFixed":false,"enableRowGroups":false,"initEmpty":false,"customClass":"","tabindex":"","hidden":false,"hideLabel":true,"autofocus":false,"disabled":false,"tableView":false,"modalEdit":false,"defaultValue":[{"signatureOfApprovedProfessional":"","firstName":"","lastName":"","dateSigned":"00/00/0000"}],"persistent":true,"protected":false,"dbIndex":false,"encrypted":false,"redrawOn":"","clearOnHide":true,"customDefaultValue":"","calculateValue":"","calculateServer":false,"allowCalculateOverride":false,"validateOn":"change","validate":{"required":false,"minLength":"","maxLength":"","customMessage":"","custom":"","customPrivate":false,"json":"","strictDateValidation":false,"multiple":false,"unique":false},"errorLabel":"","errors":"","key":"dataGrid15","tags":[],"properties":{},"conditional":{"show":null,"when":null,"eq":"","json":""},"customConditional":"","logic":[],"attributes":{},"overlay":{"style":"","page":"","left":"","top":"","width":"","height":""},"type":"datagrid","input":true,"components":[{"label":"Approved Professional Signatures","columns":[{"components":[{"label":"Signature of Approved Professional","tableView":false,"validate":{"required":true,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false},"key":"signatureOfApprovedProfessional","type":"signature","input":true,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":{"type":"input"},"attributes":{},"validateOn":"change","conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"footer":"Sign above","width":"100%","height":"150px","penColor":"black","backgroundColor":"rgb(245,245,235)","minWidth":"0.5","maxWidth":"2.5","keepOverlayRatio":true,"id":"eufhqc8"}],"width":6,"offset":0,"push":0,"pull":0,"size":"md","currentWidth":6},{"components":[{"label":"First Name","tableView":true,"validate":{"required":true,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false,"minLength":"","maxLength":"","pattern":""},"key":"firstName","type":"textfield","input":true,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":{"type":"input"},"attributes":{},"validateOn":"change","conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"mask":false,"inputType":"text","inputFormat":"plain","inputMask":"","displayMask":"","spellcheck":true,"truncateMultipleSpaces":false,"id":"e459o2u"},{"label":"Last Name","labelPosition":"top","placeholder":"","description":"","tooltip":"","prefix":"","suffix":"","widget":{"type":"input"},"inputMask":"","displayMask":"","allowMultipleMasks":false,"customClass":"","tabindex":"","autocomplete":"","hidden":false,"hideLabel":false,"showWordCount":false,"showCharCount":false,"mask":false,"autofocus":false,"spellcheck":true,"disabled":false,"tableView":true,"modalEdit":false,"multiple":false,"persistent":true,"inputFormat":"plain","protected":false,"dbIndex":false,"case":"","truncateMultipleSpaces":false,"encrypted":false,"redrawOn":"","clearOnHide":true,"customDefaultValue":"","calculateValue":"","calculateServer":false,"allowCalculateOverride":false,"validateOn":"change","validate":{"required":true,"pattern":"","customMessage":"","custom":"","customPrivate":false,"json":"","minLength":"","maxLength":"","strictDateValidation":false,"multiple":false,"unique":false},"unique":false,"errorLabel":"","errors":"","key":"lastName","tags":[],"properties":{},"conditional":{"show":null,"when":null,"eq":"","json":""},"customConditional":"","logic":[],"attributes":{},"overlay":{"style":"","page":"","left":"","top":"","width":"","height":""},"type":"textfield","input":true,"refreshOn":"","dataGridLabel":false,"addons":[],"inputType":"text","id":"ewkt9qr","defaultValue":""},{"label":"Date","labelPosition":"top","displayInTimezone":"viewer","useLocaleSettings":false,"allowInput":true,"format":"yyyy-MM-dd hh:mm a","placeholder":"","description":"","tooltip":"","customClass":"","tabindex":"","hidden":false,"hideLabel":false,"autofocus":false,"disabled":false,"tableView":false,"modalEdit":false,"shortcutButtons":[],"enableDate":true,"datePicker":{"disable":"","disableFunction":"","disableWeekends":false,"disableWeekdays":false,"minDate":null,"maxDate":null,"showWeeks":true,"startingDay":0,"initDate":"","minMode":"day","maxMode":"year","yearRows":4,"yearColumns":5},"enableTime":true,"timePicker":{"showMeridian":true,"hourStep":1,"minuteStep":1,"readonlyInput":false,"mousewheel":true,"arrowkeys":true},"multiple":false,"defaultValue":"","defaultDate":"","customOptions":{},"persistent":true,"protected":false,"dbIndex":false,"encrypted":false,"redrawOn":"","clearOnHide":true,"customDefaultValue":"","calculateValue":"","calculateServer":false,"allowCalculateOverride":false,"validateOn":"change","validate":{"required":false,"customMessage":"","custom":"","customPrivate":false,"json":"","strictDateValidation":false,"multiple":false,"unique":false},"enableMinDateInput":false,"enableMaxDateInput":false,"unique":false,"errorLabel":"","errors":"","key":"dateTime","tags":[],"properties":{},"conditional":{"show":null,"when":null,"eq":"","json":""},"customConditional":"","logic":[],"attributes":{},"overlay":{"style":"","page":"","left":"","top":"","width":"","height":""},"type":"datetime","timezone":"","input":true,"widget":{"type":"calendar","displayInTimezone":"viewer","locale":"en","useLocaleSettings":false,"allowInput":true,"mode":"single","enableTime":true,"noCalendar":false,"format":"yyyy-MM-dd hh:mm a","hourIncrement":1,"minuteIncrement":1,"time_24hr":false,"minDate":null,"disabledDates":"","disableWeekends":false,"disableWeekdays":false,"disableFunction":"","maxDate":null},"prefix":"","suffix":"","refreshOn":"","dataGridLabel":false,"showCharCount":false,"showWordCount":false,"allowMultipleMasks":false,"addons":[],"datepickerMode":"day","id":"eucmj7"}],"width":6,"offset":0,"push":0,"pull":0,"size":"md","currentWidth":6}],"key":"approvedProfessionalSignature","type":"columns","input":false,"tableView":false,"id":"ev4kpmc00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000","placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":false,"hidden":false,"clearOnHide":false,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"attributes":{},"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false},"conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"tree":false,"lazyLoad":false,"autoAdjust":false}],"placeholder":"","prefix":"","suffix":"","multiple":false,"unique":false,"refreshOn":"","dataGridLabel":false,"widget":null,"showCharCount":false,"showWordCount":false,"allowMultipleMasks":false,"addons":[],"tree":true,"lazyLoad":false,"id":"eizst9"}],"id":"efpt8i"},{"title":"SECTION III - Arm's Length Review","theme":"default","tooltip":"","customClass":"","collapsible":false,"hidden":false,"hideLabel":false,"disabled":false,"modalEdit":false,"key":"sectionIiiArmsLengthReview","tags":[],"properties":{},"customConditional":"","conditional":{"json":"","show":null,"when":null,"eq":""},"logic":[],"attributes":{},"overlay":{"style":"","page":"","left":"","top":"","width":"","height":""},"type":"panel","label":"Panel","breadcrumb":"default","tabindex":"","input":false,"placeholder":"","prefix":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":false,"clearOnHide":false,"refreshOn":"","redrawOn":"","tableView":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"allowMultipleMasks":false,"addons":[],"tree":false,"lazyLoad":false,"components":[{"html":"

There may have been an arm’s length review of one or more of the following recommendations to the Director of Waste Management:

 

1. Making a recommendation to a Director in support of an application for an Approval in Principle based on remediation to numerical standards or a screening level risk assessment where there is offsite migration at the site.

2. Making a recommendation to a Director in support of an application for an Approval in Principle based on a risk assessment (other than a screening level risk assessment) and remediation to risk-based standards.

3. Making a recommendation to a Director in support of an application for a Certificate of Compliance based on remediation to numerical standards or a screening level risk assessment where there is offsite migration at the site.

4. Making a recommendation to a Director in support of an application for a Certificate of Compliance based on a risk assessment (other than a screening level risk assessment) and remediation to risk-based standards.

5. Making a recommendation to a Director in support of an application for site risk classification/reclassification.

6. Making a recommendation to a Director in support of any other application based on risk assessment or risk management (other than a screening level risk assessment) not otherwise described in any other row in this list, as required under a protocol signed by a Director.

If this is the case please have the Approved Professional who carried out the arm’s length review to sign below, specifying the type of arm’s length review done for the site.

","label":"Content","customClass":"","refreshOnChange":false,"hidden":false,"modalEdit":false,"key":"content60","tags":[],"properties":{},"conditional":{"show":null,"when":null,"eq":"","json":""},"customConditional":"","logic":[],"attributes":{},"overlay":{"style":"","page":"","left":"","top":"","width":"","height":""},"type":"content","input":false,"tableView":false,"placeholder":"","prefix":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"clearOnHide":true,"refreshOn":"","redrawOn":"","dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"allowMultipleMasks":false,"addons":[],"id":"elcdtyx"},{"label":"Data Grid","labelPosition":"top","description":"","tooltip":"","disableAddingRemovingRows":false,"conditionalAddButton":"","reorder":false,"addAnother":"","addAnotherPosition":"bottom","layoutFixed":false,"enableRowGroups":false,"initEmpty":false,"customClass":"","tabindex":"","hidden":false,"hideLabel":true,"autofocus":false,"disabled":false,"tableView":false,"modalEdit":false,"defaultValue":[{"typeOfArmsLengthReview":"","signatureOfApprovedProfessional":"","firstName":"","lastName":"","dateSigned":"00/00/0000"}],"persistent":true,"protected":false,"dbIndex":false,"encrypted":false,"redrawOn":"","clearOnHide":true,"customDefaultValue":"","calculateValue":"","calculateServer":false,"allowCalculateOverride":false,"validateOn":"change","validate":{"required":false,"minLength":"","maxLength":"","customMessage":"","custom":"","customPrivate":false,"json":"","strictDateValidation":false,"multiple":false,"unique":false},"errorLabel":"","errors":"","key":"dataGrid16","tags":[],"properties":{},"conditional":{"show":null,"when":null,"eq":"","json":""},"customConditional":"","logic":[],"attributes":{},"overlay":{"style":"","page":"","left":"","top":"","width":"","height":""},"type":"datagrid","input":true,"components":[{"label":"Approved Professional Signatures","columns":[{"components":[{"label":"Type of Arm's length Review","placeholder":"Enter number from list above","tableView":true,"key":"typeOfArmsLengthReview","type":"textfield","input":true,"prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":{"type":"input"},"attributes":{},"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false,"minLength":"","maxLength":"","pattern":""},"conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"mask":false,"inputType":"text","inputFormat":"plain","inputMask":"","displayMask":"","spellcheck":true,"truncateMultipleSpaces":false,"id":"eqgxg2q"},{"label":"Signature of Approved Professional","tableView":false,"validate":{"required":true,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false},"key":"signatureOfApprovedProfessional","type":"signature","input":true,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":{"type":"input"},"attributes":{},"validateOn":"change","conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"footer":"Sign above","width":"100%","height":"150px","penColor":"black","backgroundColor":"rgb(245,245,235)","minWidth":"0.5","maxWidth":"2.5","keepOverlayRatio":true,"id":"egps3u"}],"width":6,"offset":0,"push":0,"pull":0,"size":"md","currentWidth":6},{"components":[{"label":"First Name","tableView":true,"validate":{"required":true,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false,"minLength":"","maxLength":"","pattern":""},"key":"firstName","type":"textfield","input":true,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":{"type":"input"},"attributes":{},"validateOn":"change","conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"mask":false,"inputType":"text","inputFormat":"plain","inputMask":"","displayMask":"","spellcheck":true,"truncateMultipleSpaces":false,"id":"ehbl8ry"},{"label":"Last Name","labelPosition":"top","placeholder":"","description":"","tooltip":"","prefix":"","suffix":"","widget":{"type":"input"},"inputMask":"","displayMask":"","allowMultipleMasks":false,"customClass":"","tabindex":"","autocomplete":"","hidden":false,"hideLabel":false,"showWordCount":false,"showCharCount":false,"mask":false,"autofocus":false,"spellcheck":true,"disabled":false,"tableView":true,"modalEdit":false,"multiple":false,"persistent":true,"inputFormat":"plain","protected":false,"dbIndex":false,"case":"","truncateMultipleSpaces":false,"encrypted":false,"redrawOn":"","clearOnHide":true,"customDefaultValue":"","calculateValue":"","calculateServer":false,"allowCalculateOverride":false,"validateOn":"change","validate":{"required":true,"pattern":"","customMessage":"","custom":"","customPrivate":false,"json":"","minLength":"","maxLength":"","strictDateValidation":false,"multiple":false,"unique":false},"unique":false,"errorLabel":"","errors":"","key":"lastName","tags":[],"properties":{},"conditional":{"show":null,"when":null,"eq":"","json":""},"customConditional":"","logic":[],"attributes":{},"overlay":{"style":"","page":"","left":"","top":"","width":"","height":""},"type":"textfield","input":true,"refreshOn":"","dataGridLabel":false,"addons":[],"inputType":"text","id":"ew4j73","defaultValue":""},{"label":"Date","labelPosition":"top","displayInTimezone":"viewer","useLocaleSettings":false,"allowInput":true,"format":"yyyy-MM-dd hh:mm a","placeholder":"","description":"","tooltip":"","customClass":"","tabindex":"","hidden":false,"hideLabel":false,"autofocus":false,"disabled":false,"tableView":false,"modalEdit":false,"shortcutButtons":[],"enableDate":true,"datePicker":{"disable":"","disableFunction":"","disableWeekends":false,"disableWeekdays":false,"minDate":null,"maxDate":null,"showWeeks":true,"startingDay":0,"initDate":"","minMode":"day","maxMode":"year","yearRows":4,"yearColumns":5},"enableTime":true,"timePicker":{"showMeridian":true,"hourStep":1,"minuteStep":1,"readonlyInput":false,"mousewheel":true,"arrowkeys":true},"multiple":false,"defaultValue":"","defaultDate":"","customOptions":{},"persistent":true,"protected":false,"dbIndex":false,"encrypted":false,"redrawOn":"","clearOnHide":true,"customDefaultValue":"","calculateValue":"","calculateServer":false,"allowCalculateOverride":false,"validateOn":"change","validate":{"required":false,"customMessage":"","custom":"","customPrivate":false,"json":"","strictDateValidation":false,"multiple":false,"unique":false},"enableMinDateInput":false,"enableMaxDateInput":false,"unique":false,"errorLabel":"","errors":"","key":"date","tags":[],"properties":{},"conditional":{"show":null,"when":null,"eq":"","json":""},"customConditional":"","logic":[],"attributes":{},"overlay":{"style":"","page":"","left":"","top":"","width":"","height":""},"type":"datetime","timezone":"","input":true,"prefix":"","suffix":"","refreshOn":"","dataGridLabel":false,"widget":{"type":"calendar","displayInTimezone":"viewer","locale":"en","useLocaleSettings":false,"allowInput":true,"mode":"single","enableTime":true,"noCalendar":false,"format":"yyyy-MM-dd hh:mm a","hourIncrement":1,"minuteIncrement":1,"time_24hr":false,"minDate":null,"disabledDates":"","disableWeekends":false,"disableWeekdays":false,"disableFunction":"","maxDate":null},"showCharCount":false,"showWordCount":false,"allowMultipleMasks":false,"addons":[],"datepickerMode":"day","id":"ewqskd"}],"width":6,"offset":0,"push":0,"pull":0,"size":"md","currentWidth":6}],"key":"approvedProfessionalSignature","type":"columns","input":false,"tableView":false,"id":"ehbime0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000","placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":false,"hidden":false,"clearOnHide":false,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"attributes":{},"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false},"conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"tree":false,"lazyLoad":false,"autoAdjust":false}],"placeholder":"","prefix":"","suffix":"","multiple":false,"unique":false,"refreshOn":"","dataGridLabel":false,"widget":null,"showCharCount":false,"showWordCount":false,"allowMultipleMasks":false,"addons":[],"tree":true,"lazyLoad":false,"id":"et2496k"}],"id":"ew977y"},{"html":"

Part 8 - Statement of Site Owner / Agent / Lessee

 

8.1 Offsite Migration Notification

","label":"Content","customClass":"","refreshOnChange":false,"hidden":false,"modalEdit":false,"key":"content61","tags":[],"properties":{},"conditional":{"show":null,"when":null,"eq":"","json":""},"customConditional":"","logic":[],"attributes":{},"overlay":{"style":"","page":"","left":"","top":"","width":"","height":""},"type":"content","input":false,"tableView":false,"placeholder":"","prefix":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"clearOnHide":true,"refreshOn":"","redrawOn":"","dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"allowMultipleMasks":false,"addons":[],"id":"e31mug"},{"title":"SECTION I - Offsite Migration Notification","theme":"default","tooltip":"","customClass":"","collapsible":false,"hidden":false,"hideLabel":false,"disabled":false,"modalEdit":false,"key":"sectionIOffsiteMigration","tags":[],"properties":{},"customConditional":"","conditional":{"json":"","show":null,"when":null,"eq":""},"logic":[],"attributes":{},"overlay":{"style":"","page":"","left":"","top":"","width":"","height":""},"type":"panel","label":"Panel","breadcrumb":"default","tabindex":"","input":false,"tableView":false,"components":[{"label":"Not Applicable","tableView":false,"key":"notApplicable","type":"checkbox","input":true,"defaultValue":false,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":true,"labelPosition":"right","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"attributes":{},"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false},"conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"inputType":"checkbox","value":"","name":"","id":"e3tubmm"},{"html":"

If it is known that one or more substances has migrated or is likely to have migrated to a neighbouring site and is or is likely causing contamination of the neighbouring site, have notifications been given?

See CSR Sec. 57 and 60.1 for requirements.

","label":"Content","customClass":"","refreshOnChange":false,"hidden":false,"modalEdit":false,"key":"content62","tags":[],"properties":{},"conditional":{"show":null,"when":null,"eq":"","json":""},"customConditional":"","logic":[],"attributes":{},"overlay":{"style":"","page":"","left":"","top":"","width":"","height":""},"type":"content","input":false,"tableView":false,"placeholder":"","prefix":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"clearOnHide":true,"refreshOn":"","redrawOn":"","dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"allowMultipleMasks":false,"addons":[],"id":"ei2pshc"},{"label":"Have owners of impacted offsite properties been formally notified?","labelPosition":"top","optionsLabelPosition":"right","description":"","tooltip":"","customClass":"","tabindex":"","inline":false,"hidden":false,"hideLabel":false,"autofocus":false,"disabled":false,"tableView":false,"modalEdit":false,"values":[{"label":"Yes","value":"yes","shortcut":""},{"label":"No","value":"no","shortcut":""}],"dataType":"","persistent":true,"protected":false,"dbIndex":false,"encrypted":false,"redrawOn":"","clearOnHide":true,"customDefaultValue":"","calculateValue":"","calculateServer":false,"allowCalculateOverride":false,"validate":{"required":false,"onlyAvailableItems":false,"customMessage":"","custom":"","customPrivate":false,"json":"","strictDateValidation":false,"multiple":false,"unique":false},"errorLabel":"","errors":"","key":"haveOwnersOfImpactedOffsitePropertiesBeenFormallyNotified","tags":[],"properties":{},"conditional":{"show":null,"when":null,"eq":"","json":""},"customConditional":"","logic":[],"attributes":{},"overlay":{"style":"","page":"","left":"","top":"","width":"","height":""},"type":"radio","input":true,"placeholder":"","prefix":"","suffix":"","multiple":false,"unique":false,"refreshOn":"","dataGridLabel":false,"widget":null,"validateOn":"change","showCharCount":false,"showWordCount":false,"allowMultipleMasks":false,"addons":[],"inputType":"radio","fieldSet":false,"id":"e5x4165","defaultValue":""},{"label":"Has the ministry been formally notified?","labelPosition":"top","optionsLabelPosition":"right","description":"","tooltip":"","customClass":"","tabindex":"","inline":false,"hidden":false,"hideLabel":false,"autofocus":false,"disabled":false,"tableView":false,"modalEdit":false,"values":[{"label":"Yes","value":"yes","shortcut":""},{"label":"No","value":"no","shortcut":""}],"dataType":"","persistent":true,"protected":false,"dbIndex":false,"encrypted":false,"redrawOn":"","clearOnHide":true,"customDefaultValue":"","calculateValue":"","calculateServer":false,"allowCalculateOverride":false,"validate":{"required":false,"onlyAvailableItems":false,"customMessage":"","custom":"","customPrivate":false,"json":"","strictDateValidation":false,"multiple":false,"unique":false},"errorLabel":"","errors":"","key":"hasTheMinistryBeenFormallyNotified","tags":[],"properties":{},"conditional":{"show":null,"when":null,"eq":"","json":""},"customConditional":"","logic":[],"attributes":{},"overlay":{"style":"","page":"","left":"","top":"","width":"","height":""},"type":"radio","input":true,"placeholder":"","prefix":"","suffix":"","multiple":false,"unique":false,"refreshOn":"","dataGridLabel":false,"widget":null,"validateOn":"change","showCharCount":false,"showWordCount":false,"allowMultipleMasks":false,"addons":[],"inputType":"radio","fieldSet":false,"id":"ert8af","defaultValue":""}],"placeholder":"","prefix":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":false,"clearOnHide":false,"refreshOn":"","redrawOn":"","dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"allowMultipleMasks":false,"addons":[],"tree":false,"lazyLoad":false,"id":"egmyibh"},{"title":"SECTION II - Confirmations by Owner/Agent/Lessee Regarding Approved Professional","theme":"default","tooltip":"","customClass":"","collapsible":false,"hidden":false,"hideLabel":false,"disabled":false,"modalEdit":false,"key":"sectionIiConfirmationsByOwnerAgentLesseeRegardingApprovedProfessional","tags":[],"properties":{},"customConditional":"","conditional":{"json":"","show":null,"when":null,"eq":""},"logic":[],"attributes":{},"overlay":{"style":"","page":"","left":"","top":"","width":"","height":""},"type":"panel","label":"Panel","breadcrumb":"default","tabindex":"","input":false,"placeholder":"","prefix":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":false,"clearOnHide":false,"refreshOn":"","redrawOn":"","tableView":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"allowMultipleMasks":false,"addons":[],"tree":false,"lazyLoad":false,"components":[{"label":"This is to acknowledge that as:","labelPosition":"top","optionsLabelPosition":"right","description":"","tooltip":"","customClass":"","tabindex":"","inline":false,"hidden":false,"hideLabel":false,"autofocus":false,"disabled":false,"tableView":false,"modalEdit":false,"values":[{"label":"The Owner","value":"theOwner","shortcut":""},{"label":"The Agent on behalf of the owner","value":"theAgentOnBehalfOfTheOwner","shortcut":""},{"label":"Lessee","value":"lessee","shortcut":""},{"label":"The agent on behalf of the responsible party","value":"theAgentOnBehalfOfTheResponsibleParty","shortcut":""}],"persistent":true,"protected":false,"dbIndex":false,"encrypted":false,"redrawOn":"","clearOnHide":true,"customDefaultValue":"","calculateValue":"","calculateServer":false,"allowCalculateOverride":false,"validate":{"required":true,"onlyAvailableItems":false,"customMessage":"","custom":"","customPrivate":false,"json":"","strictDateValidation":false,"multiple":false,"unique":false},"errorLabel":"","minSelectedCountMessage":"","maxSelectedCountMessage":"","errors":"","key":"thisIsToAcknowledgeThatAs","tags":[],"properties":{},"conditional":{"show":null,"when":null,"eq":"","json":""},"customConditional":"","logic":[],"attributes":{},"overlay":{"style":"","page":"","left":"","top":"","width":"","height":""},"type":"selectboxes","input":true,"inputType":"checkbox","placeholder":"","prefix":"","suffix":"","multiple":false,"unique":false,"refreshOn":"","dataGridLabel":false,"widget":null,"validateOn":"change","showCharCount":false,"showWordCount":false,"allowMultipleMasks":false,"addons":[],"fieldSet":false,"id":"e7tj2m","defaultValue":{"theOwner":false,"theAgentOnBehalfOfTheOwner":false,"lessee":false,"theAgentOnBehalfOfTheResponsibleParty":false}},{"html":"

Of the site, I have engaged

","label":"Content","customClass":"","refreshOnChange":false,"hidden":false,"modalEdit":false,"key":"content64","tags":[],"properties":{},"conditional":{"show":null,"when":null,"eq":"","json":""},"customConditional":"","logic":[],"attributes":{},"overlay":{"style":"","page":"","left":"","top":"","width":"","height":""},"type":"content","input":false,"placeholder":"","prefix":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"clearOnHide":true,"refreshOn":"","redrawOn":"","tableView":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"allowMultipleMasks":false,"addons":[],"id":"ezlflsn"},{"label":"Data Grid","reorder":false,"addAnotherPosition":"bottom","layoutFixed":false,"enableRowGroups":false,"initEmpty":false,"hideLabel":true,"tableView":false,"defaultValue":[{}],"key":"dataGrid17","type":"datagrid","input":true,"components":[{"label":"Name(s) of Approved Professional(s)","labelPosition":"top","placeholder":"","description":"","tooltip":"","prefix":"","suffix":"","widget":{"type":"input"},"inputMask":"","displayMask":"","allowMultipleMasks":false,"customClass":"","tabindex":"","autocomplete":"","hidden":false,"hideLabel":false,"showWordCount":false,"showCharCount":false,"mask":false,"autofocus":false,"spellcheck":true,"dataGridLabel":false,"disabled":false,"tableView":true,"modalEdit":false,"multiple":false,"persistent":true,"inputFormat":"plain","protected":false,"dbIndex":false,"case":"","truncateMultipleSpaces":false,"encrypted":false,"redrawOn":"","clearOnHide":true,"customDefaultValue":"","calculateValue":"","calculateServer":false,"allowCalculateOverride":false,"validateOn":"change","validate":{"required":true,"pattern":"","customMessage":"","custom":"","customPrivate":false,"json":"","minLength":"","maxLength":"","strictDateValidation":false,"multiple":false,"unique":false},"unique":false,"errorLabel":"","errors":"","key":"approvedProfessionalFullName","tags":[],"properties":{},"conditional":{"show":null,"when":null,"eq":"","json":""},"customConditional":"","logic":[],"attributes":{},"overlay":{"style":"","page":"","left":"","top":"","width":"","height":""},"type":"textfield","input":true,"refreshOn":"","addons":[],"inputType":"text","id":"errpqaf00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000","defaultValue":""}],"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"attributes":{},"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false},"conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"tree":true,"lazyLoad":false,"disableAddingRemovingRows":false,"id":"ezfplf"},{"html":"

as the Approved Professional(s) to review site investigation, risk assessment and remediation reports and to make submission and application with recommendations, if applicable, for the regulatory instrument(s) as indicated in this Summary of Site Condition.

If signing as the agent of the owner or lessee, written consent from the owner or lessee authorizing signature of this Summary of Site Condition must be attached

","label":"Content","customClass":"","refreshOnChange":false,"hidden":false,"modalEdit":false,"key":"content65","tags":[],"properties":{},"conditional":{"show":null,"when":null,"eq":"","json":""},"customConditional":"","logic":[],"attributes":{},"overlay":{"style":"","page":"","left":"","top":"","width":"","height":""},"type":"content","input":false,"placeholder":"","prefix":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"clearOnHide":true,"refreshOn":"","redrawOn":"","tableView":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"allowMultipleMasks":false,"addons":[],"id":"eelhteh"},{"label":"I agree to comply with any requirements on the site regarding monitoring and maintenance of works as documented in schedule B of the draft contaminated sites legal instrument","description":"","tooltip":"","shortcut":"","inputType":"checkbox","customClass":"","tabindex":"","hidden":false,"hideLabel":false,"autofocus":false,"disabled":false,"tableView":false,"modalEdit":false,"persistent":true,"protected":false,"dbIndex":false,"encrypted":false,"redrawOn":"","clearOnHide":true,"customDefaultValue":"","calculateValue":"","calculateServer":false,"allowCalculateOverride":false,"validate":{"required":true,"customMessage":"","custom":"","customPrivate":false,"json":"","strictDateValidation":false,"multiple":false,"unique":false},"errorLabel":"","errors":"","key":"checkbox","tags":[],"properties":{},"conditional":{"show":null,"when":null,"eq":"","json":""},"customConditional":"","logic":[],"attributes":{},"overlay":{"style":"","page":"","left":"","top":"","width":"","height":""},"type":"checkbox","name":"","value":"","input":true,"placeholder":"","prefix":"","suffix":"","multiple":false,"unique":false,"refreshOn":"","dataGridLabel":true,"labelPosition":"right","widget":null,"validateOn":"change","showCharCount":false,"showWordCount":false,"allowMultipleMasks":false,"addons":[],"id":"eldkgns","defaultValue":false},{"label":"I accept that if a risk assessment has been applied at the site, that the risk assessment is only valid as long as conditions at the site do not change.","description":"","tooltip":"","shortcut":"","inputType":"checkbox","customClass":"","tabindex":"","hidden":false,"hideLabel":false,"autofocus":false,"disabled":false,"tableView":false,"modalEdit":false,"persistent":true,"protected":false,"dbIndex":false,"encrypted":false,"redrawOn":"","clearOnHide":true,"customDefaultValue":"","calculateValue":"","calculateServer":false,"allowCalculateOverride":false,"validate":{"required":true,"customMessage":"","custom":"","customPrivate":false,"json":"","strictDateValidation":false,"multiple":false,"unique":false},"errorLabel":"","errors":"","key":"iAcceptThatIfARiskAssessmentHasBeenAppliedAtTheSiteThatTheRiskAssessmentIsOnlyValidAsLongAsConditionsAtTheSiteDoNotChange","tags":[],"properties":{},"conditional":{"show":null,"when":null,"eq":"","json":""},"customConditional":"","logic":[],"attributes":{},"overlay":{"style":"","page":"","left":"","top":"","width":"","height":""},"type":"checkbox","name":"","value":"","input":true,"placeholder":"","prefix":"","suffix":"","multiple":false,"unique":false,"refreshOn":"","dataGridLabel":true,"labelPosition":"right","widget":null,"validateOn":"change","showCharCount":false,"showWordCount":false,"allowMultipleMasks":false,"addons":[],"id":"eogtso","defaultValue":false},{"label":"I have undertaken reasonable inquiry into the previous ownership and uses of the property and to the best of my knowledge I have provided to the Approved Professional, information relevant to the investigation and remediation of the environmental condition of the site, in the preparation of this document.","description":"","tooltip":"","shortcut":"","inputType":"checkbox","customClass":"","tabindex":"","hidden":false,"hideLabel":false,"autofocus":false,"disabled":false,"tableView":false,"modalEdit":false,"persistent":true,"protected":false,"dbIndex":false,"encrypted":false,"redrawOn":"","clearOnHide":true,"customDefaultValue":"","calculateValue":"","calculateServer":false,"allowCalculateOverride":false,"validate":{"required":true,"customMessage":"","custom":"","customPrivate":false,"json":"","strictDateValidation":false,"multiple":false,"unique":false},"errorLabel":"","errors":"","key":"iHaveUndertakenReasonableInquiryIntoThePreviousOwnershipAndUsesOfThePropertyAndToTheBestOfMyKnowledgeIHaveProvidedToTheApprovedProfessionalInformationRelevantToTheInvestigationAndRemediationOfTheEnvironmentalConditionOfTheSiteInThePreparationOfThisDocument","tags":[],"properties":{},"conditional":{"show":null,"when":null,"eq":"","json":""},"customConditional":"","logic":[],"attributes":{},"overlay":{"style":"","page":"","left":"","top":"","width":"","height":""},"type":"checkbox","name":"","value":"","input":true,"placeholder":"","prefix":"","suffix":"","multiple":false,"unique":false,"refreshOn":"","dataGridLabel":true,"labelPosition":"right","widget":null,"validateOn":"change","showCharCount":false,"showWordCount":false,"allowMultipleMasks":false,"addons":[],"id":"etmpgu","defaultValue":false},{"label":"I acknowledge that this Summary of Site Condition becomes a public document after it has been received and acknowledged by the Director of Waste Management. Any party intending to purchase, lease, take a security interest in, or occupy the site may review this document and any supporting documents to satisfy themselves with respect to the environmental condition of the site, and the extent of responsibility and liability that may arise from taking ownership, taking a security interest, or occupying the site. ","description":"","tooltip":"","shortcut":"","inputType":"checkbox","customClass":"","tabindex":"","hidden":false,"hideLabel":false,"autofocus":false,"disabled":false,"tableView":false,"modalEdit":false,"defaultValue":false,"persistent":true,"protected":false,"dbIndex":false,"encrypted":false,"redrawOn":"","clearOnHide":true,"customDefaultValue":"","calculateValue":"","calculateServer":false,"allowCalculateOverride":false,"validate":{"required":true,"customMessage":"","custom":"","customPrivate":false,"json":"","strictDateValidation":false,"multiple":false,"unique":false},"errorLabel":"","errors":"","key":"iAcknowledgeThatThisSummaryOfSiteConditionBecomesAPublicDocumentAfterItHasBeenReceivedAndAcknowledgedByTheDirectorOfWasteManagementAnyPartyIntendingToPurchaseLeaseTakeASecurityInterestInOrOccupyTheSiteMayReviewThisDocumentAndAnySupportingDocumentsToSatisfyThemselvesWithRespectToTheEnvironmentalConditionOfTheSiteAndTheExtentOfResponsibilityAndLiabilityThatMayAriseFromTakingOwnershipTakingASecurityInterestOrOccupyingTheSite","tags":[],"properties":{},"conditional":{"show":null,"when":null,"eq":"","json":""},"customConditional":"","logic":[],"attributes":{},"overlay":{"style":"","page":"","left":"","top":"","width":"","height":""},"type":"checkbox","name":"","value":"","input":true,"placeholder":"","prefix":"","suffix":"","multiple":false,"unique":false,"refreshOn":"","dataGridLabel":true,"labelPosition":"right","widget":null,"validateOn":"change","showCharCount":false,"showWordCount":false,"allowMultipleMasks":false,"addons":[],"id":"e57l23"},{"label":"Approved Professional Signatures","columns":[{"components":[{"label":"I have made no modifications to this document except as allowed by the form","description":"","tooltip":"","shortcut":"","inputType":"checkbox","customClass":"","tabindex":"","hidden":false,"hideLabel":false,"autofocus":false,"disabled":false,"tableView":false,"modalEdit":false,"defaultValue":false,"persistent":true,"protected":false,"dbIndex":false,"encrypted":false,"redrawOn":"","clearOnHide":true,"customDefaultValue":"","calculateValue":"","calculateServer":false,"allowCalculateOverride":false,"validate":{"required":true,"customMessage":"","custom":"","customPrivate":false,"json":"","strictDateValidation":false,"multiple":false,"unique":false},"errorLabel":"","errors":"","key":"iHaveMadeNoModificationsToThisDocumentExceptAsAllowedByTheForm","tags":[],"properties":{},"conditional":{"show":null,"when":null,"eq":"","json":""},"customConditional":"","logic":[],"attributes":{},"overlay":{"style":"","page":"","left":"","top":"","width":"","height":""},"type":"checkbox","name":"","value":"","input":true,"placeholder":"","prefix":"","suffix":"","multiple":false,"unique":false,"refreshOn":"","dataGridLabel":true,"labelPosition":"right","widget":null,"validateOn":"change","showCharCount":false,"showWordCount":false,"allowMultipleMasks":false,"addons":[],"id":"ed8psb"},{"label":"First Name","tableView":true,"validate":{"required":true,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false,"minLength":"","maxLength":"","pattern":""},"key":"firstName","type":"textfield","input":true,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":{"type":"input"},"attributes":{},"validateOn":"change","conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"mask":false,"inputType":"text","inputFormat":"plain","inputMask":"","displayMask":"","spellcheck":true,"truncateMultipleSpaces":false,"id":"et5ljp"},{"label":"Last Name","tableView":true,"key":"lastName","type":"textfield","input":true,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":true,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":{"type":"input"},"attributes":{},"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false,"minLength":"","maxLength":"","pattern":""},"conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"mask":false,"inputType":"text","inputFormat":"plain","inputMask":"","displayMask":"","spellcheck":true,"truncateMultipleSpaces":false,"id":"eq5xc5d"},{"label":"Signature of Owner/Agent/Lessee","footer":"Sign above","labelPosition":"top","width":"100%","height":"150px","backgroundColor":"rgb(245,245,235)","penColor":"black","description":"","tooltip":"","customClass":"","tabindex":"","hidden":false,"hideLabel":false,"disabled":false,"tableView":false,"modalEdit":false,"persistent":true,"protected":false,"encrypted":false,"redrawOn":"","clearOnHide":true,"customDefaultValue":"","calculateValue":"","calculateServer":false,"allowCalculateOverride":false,"validate":{"required":true,"customMessage":"","custom":"","customPrivate":false,"json":"","strictDateValidation":false,"multiple":false,"unique":false},"errorLabel":"","errors":"","key":"signatureOfApprovedProfessional","tags":[],"properties":{},"conditional":{"show":null,"when":null,"eq":"","json":""},"customConditional":"","logic":[],"attributes":{},"overlay":{"style":"","page":"","left":"","top":"","width":"","height":""},"type":"signature","input":true,"placeholder":"","prefix":"","suffix":"","multiple":false,"defaultValue":null,"unique":false,"refreshOn":"","dataGridLabel":false,"autofocus":false,"dbIndex":false,"widget":{"type":"input"},"validateOn":"change","showCharCount":false,"showWordCount":false,"allowMultipleMasks":false,"addons":[],"minWidth":"0.5","maxWidth":"2.5","keepOverlayRatio":true,"id":"ehazy0p"},{"label":"Date","labelPosition":"top","displayInTimezone":"viewer","useLocaleSettings":false,"allowInput":true,"format":"yyyy-MM-dd hh:mm a","placeholder":"","description":"","tooltip":"","customClass":"","tabindex":"","hidden":false,"hideLabel":false,"autofocus":false,"disabled":false,"tableView":false,"modalEdit":false,"shortcutButtons":[],"enableDate":true,"datePicker":{"disable":"","disableFunction":"","disableWeekends":false,"disableWeekdays":false,"minDate":null,"maxDate":null,"showWeeks":true,"startingDay":0,"initDate":"","minMode":"day","maxMode":"year","yearRows":4,"yearColumns":5},"enableTime":true,"timePicker":{"showMeridian":true,"hourStep":1,"minuteStep":1,"readonlyInput":false,"mousewheel":true,"arrowkeys":true},"multiple":false,"defaultValue":"","defaultDate":"","customOptions":{},"persistent":true,"protected":false,"dbIndex":false,"encrypted":false,"redrawOn":"","clearOnHide":true,"customDefaultValue":"","calculateValue":"","calculateServer":false,"allowCalculateOverride":false,"validateOn":"change","validate":{"required":false,"customMessage":"","custom":"","customPrivate":false,"json":"","strictDateValidation":false,"multiple":false,"unique":false},"enableMinDateInput":false,"enableMaxDateInput":false,"unique":false,"errorLabel":"","errors":"","key":"dateTime","tags":[],"properties":{},"conditional":{"show":null,"when":null,"eq":"","json":""},"customConditional":"","logic":[],"attributes":{},"overlay":{"style":"","page":"","left":"","top":"","width":"","height":""},"type":"datetime","timezone":"","input":true,"widget":{"type":"calendar","displayInTimezone":"viewer","locale":"en","useLocaleSettings":false,"allowInput":true,"mode":"single","enableTime":true,"noCalendar":false,"format":"yyyy-MM-dd hh:mm a","hourIncrement":1,"minuteIncrement":1,"time_24hr":false,"minDate":null,"disabledDates":"","disableWeekends":false,"disableWeekdays":false,"disableFunction":"","maxDate":null},"prefix":"","suffix":"","refreshOn":"","dataGridLabel":false,"showCharCount":false,"showWordCount":false,"allowMultipleMasks":false,"addons":[],"datepickerMode":"day","id":"etjv8wm"}],"width":6,"offset":0,"push":0,"pull":0,"size":"md","currentWidth":6},{"components":[{"label":"Address","labelPosition":"top","placeholder":"","description":"","tooltip":"","prefix":"","suffix":"","widget":{"type":"input"},"inputMask":"","displayMask":"","allowMultipleMasks":false,"customClass":"","tabindex":"","autocomplete":"","hidden":false,"hideLabel":false,"showWordCount":false,"showCharCount":false,"mask":false,"autofocus":false,"spellcheck":true,"disabled":false,"tableView":true,"modalEdit":false,"multiple":false,"persistent":true,"inputFormat":"plain","protected":false,"dbIndex":false,"case":"","truncateMultipleSpaces":false,"encrypted":false,"redrawOn":"","clearOnHide":true,"customDefaultValue":"","calculateValue":"","calculateServer":false,"allowCalculateOverride":false,"validateOn":"change","validate":{"required":false,"pattern":"","customMessage":"","custom":"","customPrivate":false,"json":"","minLength":"","maxLength":"","strictDateValidation":false,"multiple":false,"unique":false},"unique":false,"errorLabel":"","errors":"","key":"address","tags":[],"properties":{},"conditional":{"show":null,"when":null,"eq":"","json":""},"customConditional":"","logic":[],"attributes":{},"overlay":{"style":"","page":"","left":"","top":"","width":"","height":""},"type":"textfield","input":true,"refreshOn":"","dataGridLabel":false,"addons":[],"inputType":"text","id":"e0t58xs","defaultValue":""},{"label":"Postal Code","labelPosition":"top","placeholder":"","description":"","tooltip":"","prefix":"","suffix":"","widget":{"type":"input"},"inputMask":"","displayMask":"","allowMultipleMasks":false,"customClass":"","tabindex":"","autocomplete":"","hidden":false,"hideLabel":false,"showWordCount":false,"showCharCount":false,"mask":false,"autofocus":false,"spellcheck":true,"disabled":false,"tableView":true,"modalEdit":false,"multiple":false,"persistent":true,"inputFormat":"plain","protected":false,"dbIndex":false,"case":"","truncateMultipleSpaces":false,"encrypted":false,"redrawOn":"","clearOnHide":true,"customDefaultValue":"","calculateValue":"","calculateServer":false,"allowCalculateOverride":false,"validateOn":"change","validate":{"required":false,"pattern":"","customMessage":"","custom":"","customPrivate":false,"json":"","minLength":"","maxLength":"","strictDateValidation":false,"multiple":false,"unique":false},"unique":false,"errorLabel":"","errors":"","key":"postalCode","tags":[],"properties":{},"conditional":{"show":null,"when":null,"eq":"","json":""},"customConditional":"","logic":[],"attributes":{},"overlay":{"style":"","page":"","left":"","top":"","width":"","height":""},"type":"textfield","input":true,"refreshOn":"","dataGridLabel":false,"addons":[],"inputType":"text","id":"edujc18","defaultValue":""},{"input":false,"key":"columns1","placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":false,"hidden":false,"clearOnHide":false,"refreshOn":"","redrawOn":"","tableView":false,"modalEdit":false,"label":"Columns","dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"attributes":{},"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false},"conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"tree":false,"lazyLoad":false,"type":"columns","columns":[{"components":[{"label":"City","labelPosition":"top","placeholder":"","description":"","tooltip":"","prefix":"","suffix":"","widget":{"type":"input"},"inputMask":"","displayMask":"","allowMultipleMasks":false,"customClass":"","tabindex":"","autocomplete":"","hidden":false,"hideLabel":false,"showWordCount":false,"showCharCount":false,"mask":false,"autofocus":false,"spellcheck":true,"disabled":false,"tableView":true,"modalEdit":false,"multiple":false,"persistent":true,"inputFormat":"plain","protected":false,"dbIndex":false,"case":"","truncateMultipleSpaces":false,"encrypted":false,"redrawOn":"","clearOnHide":true,"customDefaultValue":"","calculateValue":"","calculateServer":false,"allowCalculateOverride":false,"validateOn":"change","validate":{"required":false,"pattern":"","customMessage":"","custom":"","customPrivate":false,"json":"","minLength":"","maxLength":"","strictDateValidation":false,"multiple":false,"unique":false},"unique":false,"errorLabel":"","errors":"","key":"city","tags":[],"properties":{},"conditional":{"show":null,"when":null,"eq":"","json":""},"customConditional":"","logic":[],"attributes":{},"overlay":{"style":"","page":"","left":"","top":"","width":"","height":""},"type":"textfield","input":true,"refreshOn":"","dataGridLabel":false,"addons":[],"inputType":"text","id":"ejwgarc","defaultValue":""},{"label":"Postal Code","labelPosition":"top","placeholder":"","description":"","tooltip":"","prefix":"","suffix":"","widget":{"type":"input"},"inputMask":"","displayMask":"","allowMultipleMasks":false,"customClass":"","tabindex":"","autocomplete":"","hidden":false,"hideLabel":false,"showWordCount":false,"showCharCount":false,"mask":false,"autofocus":false,"spellcheck":true,"disabled":false,"tableView":true,"modalEdit":false,"multiple":false,"persistent":true,"inputFormat":"plain","protected":false,"dbIndex":false,"case":"","truncateMultipleSpaces":false,"encrypted":false,"redrawOn":"","clearOnHide":true,"customDefaultValue":"","calculateValue":"","calculateServer":false,"allowCalculateOverride":false,"validateOn":"change","validate":{"required":false,"pattern":"","customMessage":"","custom":"","customPrivate":false,"json":"","minLength":"","maxLength":"","strictDateValidation":false,"multiple":false,"unique":false},"unique":false,"errorLabel":"","errors":"","key":"postalCode1","tags":[],"properties":{},"conditional":{"show":null,"when":null,"eq":"","json":""},"customConditional":"","logic":[],"attributes":{},"overlay":{"style":"","page":"","left":"","top":"","width":"","height":""},"type":"textfield","input":true,"refreshOn":"","dataGridLabel":false,"addons":[],"inputType":"text","id":"esqr745","defaultValue":""}],"width":6,"offset":0,"push":0,"pull":0,"size":"md","currentWidth":6},{"components":[{"label":"Province","labelPosition":"top","placeholder":"","description":"","tooltip":"","prefix":"","suffix":"","widget":{"type":"input"},"inputMask":"","displayMask":"","allowMultipleMasks":false,"customClass":"","tabindex":"","autocomplete":"","hidden":false,"hideLabel":false,"showWordCount":false,"showCharCount":false,"mask":false,"autofocus":false,"spellcheck":true,"disabled":false,"tableView":true,"modalEdit":false,"multiple":false,"persistent":true,"inputFormat":"plain","protected":false,"dbIndex":false,"case":"","truncateMultipleSpaces":false,"encrypted":false,"redrawOn":"","clearOnHide":true,"customDefaultValue":"","calculateValue":"","calculateServer":false,"allowCalculateOverride":false,"validateOn":"change","validate":{"required":false,"pattern":"","customMessage":"","custom":"","customPrivate":false,"json":"","minLength":"","maxLength":"","strictDateValidation":false,"multiple":false,"unique":false},"unique":false,"errorLabel":"","errors":"","key":"province","tags":[],"properties":{},"conditional":{"show":null,"when":null,"eq":"","json":""},"customConditional":"","logic":[],"attributes":{},"overlay":{"style":"","page":"","left":"","top":"","width":"","height":""},"type":"textfield","input":true,"refreshOn":"","dataGridLabel":false,"addons":[],"inputType":"text","id":"eo9uzz","defaultValue":""},{"label":"Country","labelPosition":"top","placeholder":"","description":"","tooltip":"","prefix":"","suffix":"","widget":{"type":"input"},"inputMask":"","displayMask":"","allowMultipleMasks":false,"customClass":"","tabindex":"","autocomplete":"","hidden":false,"hideLabel":false,"showWordCount":false,"showCharCount":false,"mask":false,"autofocus":false,"spellcheck":true,"disabled":false,"tableView":true,"modalEdit":false,"multiple":false,"persistent":true,"inputFormat":"plain","protected":false,"dbIndex":false,"case":"","truncateMultipleSpaces":false,"encrypted":false,"redrawOn":"","clearOnHide":true,"customDefaultValue":"","calculateValue":"","calculateServer":false,"allowCalculateOverride":false,"validateOn":"change","validate":{"required":false,"pattern":"","customMessage":"","custom":"","customPrivate":false,"json":"","minLength":"","maxLength":"","strictDateValidation":false,"multiple":false,"unique":false},"unique":false,"errorLabel":"","errors":"","key":"country","tags":[],"properties":{},"conditional":{"show":null,"when":null,"eq":"","json":""},"customConditional":"","logic":[],"attributes":{},"overlay":{"style":"","page":"","left":"","top":"","width":"","height":""},"type":"textfield","input":true,"refreshOn":"","dataGridLabel":false,"addons":[],"inputType":"text","id":"e62t8ss","defaultValue":""}],"width":6,"offset":0,"push":0,"pull":0,"size":"md","currentWidth":6}],"autoAdjust":false,"id":"ergznb"}],"width":6,"offset":0,"push":0,"pull":0,"size":"md","currentWidth":6}],"key":"approvedProfessionalSignature","type":"columns","input":false,"tableView":false,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":false,"hidden":false,"clearOnHide":false,"refreshOn":"","redrawOn":"","modalEdit":false,"dataGridLabel":false,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":null,"attributes":{},"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false},"conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"tree":false,"lazyLoad":false,"autoAdjust":false,"id":"e18pyfg"}],"id":"e3jlek"},{"type":"button","label":"Submit","key":"submit","size":"md","block":false,"action":"submit","disableOnInvalid":true,"theme":"primary","input":true,"placeholder":"","prefix":"","customClass":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":false,"hidden":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","tableView":false,"modalEdit":false,"dataGridLabel":true,"labelPosition":"top","description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":{"type":"input"},"attributes":{},"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false},"conditional":{"show":null,"when":null,"eq":""},"overlay":{"style":"","left":"","top":"","width":"","height":""},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"properties":{},"allowMultipleMasks":false,"addons":[],"leftIcon":"","rightIcon":"","id":"emkrxp"},{"label":"applicationId","customClass":"","addons":[],"modalEdit":false,"persistent":true,"protected":false,"dbIndex":false,"encrypted":false,"redrawOn":"","customDefaultValue":"","calculateValue":"","calculateServer":false,"key":"applicationId","tags":[],"properties":{},"logic":[],"attributes":{},"overlay":{"style":"","page":"","left":"","top":"","width":"","height":""},"type":"hidden","input":true,"placeholder":"","prefix":"","suffix":"","multiple":false,"unique":false,"hidden":false,"clearOnHide":true,"refreshOn":"","tableView":false,"labelPosition":"top","Description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"widget":{"type":"input"},"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false},"conditional":{"show":null,"when":null,"eq":""},"allowCalculateOverride":false,"showCharCount":false,"showWordCount":false,"allowMultipleMasks":false,"inputType":"hidden","id":"em1y8gd","defaultValue":"","dataGridLabel":false,"description":""},{"label":"applicationStatus","addons":[],"customClass":"","modalEdit":false,"defaultValue":null,"persistent":true,"protected":false,"dbIndex":false,"encrypted":false,"redrawOn":"","customDefaultValue":"","calculateValue":"","calculateServer":false,"key":"applicationStatus","tags":[],"properties":{},"logic":[],"attributes":{},"overlay":{"style":"","page":"","left":"","top":"","width":"","height":""},"type":"hidden","input":true,"tableView":false,"placeholder":"","prefix":"","suffix":"","multiple":false,"unique":false,"hidden":false,"clearOnHide":true,"refreshOn":"","dataGridLabel":false,"labelPosition":"top","Description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"widget":{"type":"input"},"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false},"conditional":{"show":null,"when":null,"eq":""},"allowCalculateOverride":false,"showCharCount":false,"showWordCount":false,"allowMultipleMasks":false,"inputType":"hidden","id":"e6z1qd9","description":""}]}]} \ No newline at end of file +{ + "forms": [ + { + "title": "Summary of Site Condition", + "display": "form", + "type": "form", + "name": "summaryOfSiteCondition", + "path": "summaryofsitecondition", + "tags": [ + "common" + ], + "components": [ + { + "title": "Site Information Advisor Actions", + "collapsible": false, + "hideLabel": true, + "key": "siteInformationAdvisorActions", + "customConditional": "const UserDetails = JSON.parse(localStorage.getItem(\"UserDetails\"))\r\n\r\nconsole.log(\"form UserDetails\",UserDetails);\r\n\r\nconst roles = UserDetails[\"role\"];\r\n\r\nconsole.log(\"form roles\",roles);\r\nif(roles.includes(\"formsflow-reviewer/site-information-advisor\")) {\r\n show = true;\r\n}\r\nelse\r\n{\r\n show = false;\r\n}", + "type": "panel", + "label": "Panel", + "input": false, + "tableView": false, + "components": [ + { + "label": "Columns", + "columns": [ + { + "components": [ + { + "label": "Accept Forms", + "action": "custom", + "showValidations": false, + "theme": "success", + "tableView": false, + "key": "accepted", + "type": "button", + "custom": "const submissionId = form._submission._id;\r\nconst formId = form._submission.form;\r\nconst formDataReqUrl = form.formio?form.formio.formUrl:(localStorage.getItem('customSubmissionUrl')+'/form/'+formId)+'/submission/'+submissionId;const formDataReqObj1 = { \"_id\": submissionId, \"data\": data};\r\nconsole.log('formDataReqUrl',formDataReqUrl)\r\nconst formio = new Formio(formDataReqUrl);\r\nformio.saveSubmission(formDataReqObj1).then( result => {\r\nform.emit('customEvent', {\r\n type: \"actionComplete\", \r\n component: component,\r\n actionType: 'Accepted'\r\n }); \r\n}).catch((error)=>{\r\n//Error callback on not Save\r\nform.emit('customEvent', {\r\n type: \"actionError\", \r\n component: component,\r\n actionType:'Accepted'\r\n }); \r\n});", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": true, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "size": "md", + "leftIcon": "", + "rightIcon": "", + "block": false, + "disableOnInvalid": false, + "id": "exnpl2" + } + ], + "width": 2, + "offset": 0, + "push": 0, + "pull": 0, + "size": "md", + "currentWidth": 2 + }, + { + "components": [ + { + "label": "Needs More Info", + "action": "custom", + "showValidations": false, + "theme": "warning", + "tableView": false, + "key": "needsMoreInfo", + "type": "button", + "custom": "\r\nconst submissionId = form._submission._id;\r\nconst formId = form._submission.form;\r\nconst formDataReqUrl = form.formio?form.formio.formUrl:(localStorage.getItem('customSubmissionUrl')+'/form/'+formId)+'/submission/'+submissionId;\r\nconst formDataReqObj1 = { \"_id\": submissionId, \"data\": data};\r\nconst formio = new Formio(formDataReqUrl);\r\nformio.saveSubmission(formDataReqObj1).then( result => {\r\nform.emit('customEvent', {\r\n type: \"actionComplete\", \r\n component: component,\r\n actionType: 'Returned'\r\n }); \r\n}).catch((error)=>{\r\n//Error callback on not Save\r\nform.emit('customEvent', {\r\n type: \"actionError\", \r\n component: component,\r\n actionType:'Returned'\r\n }); \r\n});", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": true, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "size": "md", + "leftIcon": "", + "rightIcon": "", + "block": false, + "disableOnInvalid": false, + "id": "er0far" + } + ], + "width": 2, + "offset": 0, + "push": 0, + "pull": 0, + "size": "md", + "currentWidth": 2 + }, + { + "components": [ + { + "label": "Reject Forms", + "action": "custom", + "showValidations": false, + "theme": "danger", + "tableView": false, + "key": "rejected", + "type": "button", + "custom": "const submissionId = form._submission._id;\r\nconst formId = form._submission.form;\r\nconst formDataReqUrl = form.formio?form.formio.formUrl:(localStorage.getItem('customSubmissionUrl')+'/form/'+formId)+'/submission/'+submissionId;\r\nconst formDataReqObj1 = { \"_id\": submissionId, \"data\": data};\r\nconst formio = new Formio(formDataReqUrl);\r\nformio.saveSubmission(formDataReqObj1).then( result => {\r\nform.emit('customEvent', {\r\n type: \"actionComplete\", \r\n component: component,\r\n actionType: 'Rejected'\r\n }); \r\n}).catch((error)=>{\r\n//Error callback on not Save\r\nform.emit('customEvent', {\r\n type: \"actionError\", \r\n component: component,\r\n actionType:'Rejected'\r\n }); \r\n});", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": true, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "size": "md", + "leftIcon": "", + "rightIcon": "", + "block": false, + "disableOnInvalid": false, + "id": "erfy6zg" + } + ], + "size": "md", + "width": 2, + "offset": 0, + "push": 0, + "pull": 0, + "currentWidth": 2 + }, + { + "components": [ + { + "label": "Return To Client", + "action": "custom", + "showValidations": false, + "tableView": false, + "key": "returnToClient1", + "type": "button", + "custom": "const submissionId = form._submission._id;\r\nconst formId = form._submission.form;\r\nconst formDataReqUrl = form.formio?form.formio.formUrl:(localStorage.getItem('customSubmissionUrl')+'/form/'+formId)+'/submission/'+submissionId;\r\nconst formDataReqObj1 = { \"_id\": submissionId, \"data\": data};\r\nconst formio = new Formio(formDataReqUrl);\r\nformio.saveSubmission(formDataReqObj1).then( result => {\r\nform.emit('customEvent', {\r\n type: \"actionComplete\", \r\n component: component,\r\n actionType: 'ReturnedToClient'\r\n }); \r\n}).catch((error)=>{\r\n//Error callback on not Save\r\nform.emit('customEvent', {\r\n type: \"actionError\", \r\n component: component,\r\n actionType:'ReturnedToClient'\r\n }); \r\n});", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": true, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "size": "md", + "leftIcon": "", + "rightIcon": "", + "block": false, + "disableOnInvalid": false, + "theme": "primary", + "id": "ea7ott" + } + ], + "size": "md", + "width": 2, + "offset": 0, + "push": 0, + "pull": 0, + "currentWidth": 2 + }, + { + "components": [], + "size": "md", + "offset": 0, + "push": 0, + "pull": 0, + "width": 4, + "currentWidth": 4 + } + ], + "hideLabel": true, + "key": "columns", + "type": "columns", + "input": false, + "tableView": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "hidden": false, + "clearOnHide": false, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "tree": false, + "lazyLoad": false, + "autoAdjust": false, + "id": "ewmtpgh" + } + ], + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "hidden": false, + "clearOnHide": false, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "tree": false, + "lazyLoad": false, + "theme": "default", + "breadcrumb": "default", + "id": "e4pmjy", + "keyModified": true + }, + { + "label": "Edit Grid", + "labelPosition": "top", + "description": "", + "tooltip": "", + "customClass": "", + "tabindex": "", + "openWhenEmpty": false, + "disableAddingRemovingRows": false, + "conditionalAddButton": "", + "hidden": false, + "hideLabel": true, + "autofocus": false, + "disabled": false, + "tableView": true, + "modalEdit": false, + "templates": { + "header": "\r\n{% console.log(\"row-key header\",'commentFor',row['commentFor']) %}\r\n{% const UserDetails = JSON.parse(localStorage.getItem(\"UserDetails\"))%}\r\n{% const groups = UserDetails[\"groups\"]; %}\r\n\r\n{% if(groups.includes(\"/formsflow/formsflow-reviewer/formsflow-client-reviewer\") || groups.includes(\"/formsflow/formsflow-reviewer/lrs-approving-authority\") || groups.includes(\"/formsflow/formsflow-client\")){ %}\r\n\r\n
\r\n {% util.eachComponent(components, function(component) { %}\r\n {% if (displayValue(component) && component.key !== 'commentFor' ) { %}\r\n {% if(component.label === 'Notes') { %}\r\n
{{ t(component.label) }}
\r\n {% } else if(component.key !== 'comments') { %}\r\n
{{ t(component.label) }}
\r\n {% } %}\r\n {% } %}\r\n {% }) %}\r\n
\r\n\r\n{% } else { %}\r\n\r\n
\r\n {% util.eachComponent(components, function(component) { %}\r\n {% if (displayValue(component)) { %}\r\n {% if(component.key == 'comments') { %}\r\n
{{ t(component.label)}}
\r\n{% } else { %}\r\n
{{ t(component.label)}}
\r\n{% } %} \r\n {% } %}\r\n {% }) %}\r\n
\r\n\r\n{% } %}", + "tableHeader": "\n \n {% util.eachComponent(components, function(component) { %}\n {% if (!component.hasOwnProperty('tableView') || component.tableView) { %}\n {{ component.label }}\n {% } %}\n {% }) %}\n {% if (!instance.options.readOnly && !instance.disabled) { %}\n Actions\n {% } %}\n \n ", + "row": "{% console.log(\"row-key main\",'commentFor',row['commentFor']) %}\r\n{% const UserDetails = JSON.parse(localStorage.getItem(\"UserDetails\"))%}\r\n{% const groups = UserDetails[\"groups\"]; %}\r\n\r\n{% if((groups.includes(\"/formsflow/formsflow-reviewer/formsflow-client-reviewer\") || groups.includes(\"/formsflow/formsflow-reviewer/lrs-approving-authority\") || groups.includes(\"/formsflow/formsflow-client\")) && row['commentFor']==='external'){ %}\r\n\r\n\r\n\r\n
\r\n\r\n {% util.eachComponent(components, function(component) { %}\r\n {% if (displayValue(component) && component.key !== 'commentFor' ) { %}\r\n {% console.log(\"row-key\",component.key,row[component.key]) %}\r\n {% const UserDetails = JSON.parse(localStorage.getItem(\"UserDetails\"))%}\r\n{% const groups = UserDetails[\"groups\"]; %}\r\n{% if((groups.includes(\"/formsflow/formsflow-reviewer/formsflow-client-reviewer\") || groups.includes(\"/formsflow/formsflow-reviewer/lrs-approving-authority\") || groups.includes(\"/formsflow/formsflow-client\")) && row['commentFor']==='external'){ %}\r\n{% if(component.key == 'comments') { %}\r\n
\r\n {{ getView(component, row[component.key])}}\r\n
\r\n{% } else { %}\r\n
\r\n {{ getView(component, row[component.key])}}\r\n
\r\n{%}%}\r\n \r\n\r\n {% } %}\r\n {% } %}\r\n {% }) %}\r\n {% if (!instance.options.readOnly && !instance.disabled) { %}\r\n {% const UserDetails = JSON.parse(localStorage.getItem(\"UserDetails\"))%}\r\n{% const groups = UserDetails[\"groups\"]; %}\r\n{% if((groups.includes(\"/formsflow/formsflow-reviewer/formsflow-client-reviewer\") || groups.includes(\"/formsflow/formsflow-reviewer/lrs-approving-authority\") || groups.includes(\"/formsflow/formsflow-client\")) && row['commentFor']==='external'){ %}\r\n
\r\n
\r\n \r\n {% if (!instance.hasRemoveButtons || instance.hasRemoveButtons()) { %}\r\n \r\n {% } %}\r\n
\r\n
\r\n \r\n {% } %}\r\n {% } %}\r\n
\r\n {% } else if (groups.includes(\"/formsflow/formsflow-reviewer/site-information-advisor\")) { %}\r\n
\r\n {% util.eachComponent(components, function(component) { %}\r\n {% console.log('for sia') %}\r\n {% if (displayValue(component)) { %}\r\n {% if(component.key == 'comments') { %}\r\n
{{ getView(component, row[component.key])}}
\r\n{% } else { %}\r\n
{{ getView(component, row[component.key])}}
\r\n{% } %} \r\n \r\n {% } %}\r\n {% }) %}\r\n {% if (!instance.options.readOnly && !instance.disabled) { %}\r\n
\r\n
\r\n \r\n {% if (!instance.hasRemoveButtons || instance.hasRemoveButtons()) { %}\r\n \r\n {% } %}\r\n
\r\n
\r\n {% } %}\r\n
\r\n {% } %}\r\n \r\n \r\n \r\n{% const emptyElements = []; %}\r\n{% const elements = document.getElementsByClassName(\"list-group-item\"); %}\r\n{% for (let i = 0; i < elements.length; i++) { %}\r\n{% const element = elements[i]; %}\r\n{% if(element.querySelectorAll('div.row').length===0){(element).remove() }} %}", + "tableRow": "\n {% util.eachComponent(components, function(component) { %}\n {% if (!component.hasOwnProperty('tableView') || component.tableView) { %}\n \n {{ getView(component, row[component.key]) }}\n \n {% } %}\n {% }) %}\n {% if (!instance.options.readOnly && !instance.disabled) { %}\n \n
\n \n {% if (!instance.hasRemoveButtons || instance.hasRemoveButtons()) { %}\n \n {% } %}\n
\n \n {% } %}\n ", + "footer": "" + }, + "rowClass": "", + "addAnother": "", + "modal": false, + "saveRow": "", + "removeRow": "Cancel", + "persistent": true, + "inlineEdit": false, + "protected": false, + "dbIndex": false, + "encrypted": false, + "redrawOn": "", + "clearOnHide": true, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "allowCalculateOverride": false, + "validateOn": "change", + "validate": { + "required": false, + "customMessage": "", + "custom": "const emptyElements = [];\r\nconst elements = document.getElementsByClassName(\"list-group-item\");\r\nfor (let i = 0; i < elements.length; i++) {\r\nconst element = elements[i];\r\nconsole.log('in validation remove');\r\nif(element.querySelectorAll('div.row').length===0){(element).remove() }\r\n \r\n}\r\n\r\n\r\nvar b =JSON.parse(localStorage.getItem('UserDetails'))\r\nif(b.groups.indexOf('/formsflow/formsflow-client') > -1 || b.groups.indexOf('/formsflow/formsflow-reviewer/lrs-approving-authority') > -1 || b.groups.indexOf('/formsflow/formsflow-reviewer/formsflow-client-reviewer') > -1 )\r\n{\r\ndocument.querySelector(\"[ref='editgrid-notesSOSC-addRow']\").remove();\r\nvar editButtons = document.querySelectorAll('button.btn.btn-default.btn-light.btn-sm.editRow');\r\nfor(i=0;ix.commentFor==='external').length > 0)\r\nshow = true;\r\nelse\r\nshow = false;\r\n}\r\nelse\r\n{\r\n show = true;\r\n}\r\n", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "editgrid", + "displayAsTable": false, + "input": true, + "components": [ + { + "label": "Columns", + "columns": [ + { + "components": [ + { + "label": "Notes", + "autoExpand": false, + "tableView": true, + "key": "notesSOSC", + "type": "textarea", + "input": true, + "keyModified": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "", + "minWords": "", + "maxWords": "" + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "html", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "rows": 3, + "wysiwyg": false, + "editor": "", + "fixedSize": true, + "id": "ewhsx7p" + } + ], + "width": 4, + "offset": 0, + "push": 0, + "pull": 0, + "size": "md", + "currentWidth": 4 + }, + { + "components": [ + { + "label": "Visibility", + "optionsLabelPosition": "right", + "inline": false, + "tableView": true, + "defaultValue": "internal", + "values": [ + { + "label": "Internal", + "value": "internal", + "shortcut": "" + }, + { + "label": "External", + "value": "external", + "shortcut": "" + } + ], + "key": "commentFor", + "type": "radio", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "onlyAvailableItems": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "inputType": "radio", + "fieldSet": false, + "id": "eg6l854" + } + ], + "width": 2, + "offset": 0, + "push": 0, + "pull": 0, + "size": "md", + "currentWidth": 2 + }, + { + "components": [ + { + "label": "Role", + "disabled": true, + "tableView": true, + "customDefaultValue": "var b =JSON.parse(localStorage.getItem('UserDetails'))\r\nif(b.groups.indexOf('/formsflow/formsflow-client') > -1 )\r\n{\r\n value = 'Client'\r\n}\r\nelse if(b.groups.indexOf('/formsflow/formsflow-reviewer/site-information-advisor') > -1 )\r\n{\r\n value = 'SIA'\r\n}", + "key": "role", + "type": "textfield", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "autofocus": false, + "dbIndex": false, + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "esrtubp" + } + ], + "size": "md", + "width": 2, + "offset": 0, + "push": 0, + "pull": 0, + "currentWidth": 2 + }, + { + "components": [ + { + "label": "Created By", + "disabled": true, + "tableView": true, + "customDefaultValue": "value = JSON.parse( localStorage.UserDetails).name ", + "key": "createdBy", + "type": "textfield", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "autofocus": false, + "dbIndex": false, + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "elcgok" + } + ], + "size": "md", + "width": 2, + "offset": 0, + "push": 0, + "pull": 0, + "currentWidth": 2 + }, + { + "components": [ + { + "label": "Created At", + "disabled": true, + "tableView": true, + "customDefaultValue": "value = (new Date()).toLocaleDateString() + ' At ' + (new Date()).toLocaleTimeString()", + "key": "createdAt", + "type": "textfield", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "autofocus": false, + "dbIndex": false, + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "emurgb" + } + ], + "size": "md", + "width": 2, + "offset": 0, + "push": 0, + "pull": 0, + "currentWidth": 2 + } + ], + "key": "columns", + "type": "columns", + "input": false, + "tableView": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "hidden": false, + "clearOnHide": false, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "tree": false, + "lazyLoad": false, + "autoAdjust": false, + "id": "e4fbc5e" + } + ], + "keyModified": true, + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "unique": false, + "refreshOn": "", + "dataGridLabel": false, + "widget": null, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "tree": true, + "lazyLoad": false, + "defaultOpen": false, + "id": "e6vzi4" + }, + { + "title": "Assign Reviewers", + "collapsible": true, + "key": "soscReviewerAssignment", + "customConditional": " if (data.riskclassification === \"exempt\"){\r\n const UserDetails = JSON.parse(localStorage.getItem(\"UserDetails\"))\r\n const roles = UserDetails[\"role\"];\r\n \r\n if(roles.includes(\"formsflow-reviewer/cssa-manager\")) {\r\n show = true;\r\n }\r\n else\r\n {\r\n show = false;\r\n }\r\n} else {\r\n show = false;\r\n}", + "type": "panel", + "label": "", + "collapsed": false, + "input": false, + "tableView": false, + "components": [ + { + "label": "Columns", + "columns": [ + { + "components": [ + { + "label": "Select SDM", + "widget": "choicesjs", + "tableView": true, + "dataSrc": "url", + "data": { + "url": "{{localStorage.getItem('formsflow.ai.api.url')}}/user?memberOfGroup=formsflow/formsflow-reviewer/sdm", + "headers": [ + { + "key": "Authorization", + "value": "Bearer {{localStorage.getItem(\"authToken\")}}" + }, + { + "key": "Content-type", + "value": "application/json" + }, + { + "key": "Accept", + "value": "application/json" + } + ], + "values": [ + { + "label": "", + "value": "" + } + ], + "json": "", + "resource": "", + "custom": "" + }, + "dataType": "string", + "valueProperty": "username", + "template": "{{ item.lastName }}, {{ item.firstName }}", + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "onlyAvailableItems": false + }, + "key": "selectCssaSdm", + "type": "select", + "selectValues": "data", + "disableLimit": false, + "input": true, + "keyModified": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "idPath": "id", + "clearOnRefresh": false, + "limit": 100, + "lazyLoad": true, + "filter": "", + "searchEnabled": true, + "searchDebounce": 0.3, + "searchField": "", + "minSearch": 0, + "readOnlyValue": false, + "authenticate": false, + "ignoreCache": false, + "selectFields": "", + "selectThreshold": 0.3, + "uniqueOptions": false, + "fuseOptions": { + "include": "score", + "threshold": 0.3 + }, + "indexeddb": { + "filter": {} + }, + "customOptions": {}, + "useExactSearch": false, + "id": "e9csp3n" + } + ], + "width": 4, + "offset": 0, + "push": 0, + "pull": 0, + "size": "md", + "currentWidth": 4 + }, + { + "components": [ + { + "label": "Select Caseworker", + "widget": "choicesjs", + "tableView": true, + "dataSrc": "url", + "data": { + "url": "{{localStorage.getItem('formsflow.ai.api.url')}}/user?memberOfGroup=formsflow/formsflow-reviewer/caseworker", + "headers": [ + { + "key": "Authorization", + "value": "Bearer {{localStorage.getItem(\"authToken\")}}" + }, + { + "key": "Content-type", + "value": "application/json" + }, + { + "key": "Accept", + "value": "application/json" + } + ], + "values": [ + { + "label": "", + "value": "" + } + ], + "json": "", + "resource": "", + "custom": "" + }, + "dataType": "string", + "valueProperty": "username", + "template": "{{ item.lastName }}, {{ item.firstName }}", + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "onlyAvailableItems": false + }, + "key": "selectCssaCaseworker", + "customConditional": "if (data.typeOfReview==='applicationViaTheSocietyOfContaminatedSitesApprovedProfessionalsOfBc')\n{\n show = false;\n}\nelse {\n show = true;\n}", + "type": "select", + "selectValues": "data", + "disableLimit": false, + "input": true, + "keyModified": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "idPath": "id", + "clearOnRefresh": false, + "limit": 100, + "lazyLoad": true, + "filter": "", + "searchEnabled": true, + "searchDebounce": 0.3, + "searchField": "", + "minSearch": 0, + "readOnlyValue": false, + "authenticate": false, + "ignoreCache": false, + "selectFields": "", + "selectThreshold": 0.3, + "uniqueOptions": false, + "fuseOptions": { + "include": "score", + "threshold": 0.3 + }, + "indexeddb": { + "filter": {} + }, + "customOptions": {}, + "useExactSearch": false, + "id": "e8pinfp" + } + ], + "width": 4, + "offset": 0, + "push": 0, + "pull": 0, + "size": "md", + "currentWidth": 4 + }, + { + "components": [], + "size": "md", + "width": 4, + "offset": 0, + "push": 0, + "pull": 0, + "currentWidth": 4 + } + ], + "key": "columns3", + "type": "columns", + "input": false, + "tableView": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "hidden": false, + "clearOnHide": false, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "tree": false, + "lazyLoad": false, + "autoAdjust": false, + "id": "ejnemx9" + } + ], + "keyModified": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "hidden": false, + "clearOnHide": false, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "tree": false, + "lazyLoad": false, + "theme": "default", + "breadcrumb": "default", + "id": "ecgbuxt" + }, + { + "html": "

Part 1  - Contact Information

", + "label": "Content", + "customClass": "", + "refreshOnChange": false, + "hidden": false, + "modalEdit": false, + "key": "content3", + "tags": [], + "properties": {}, + "conditional": { + "show": null, + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "content", + "input": false, + "tableView": false, + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "id": "e7c7u3u" + }, + { + "key": "Section1-ContactInformation", + "type": "panel", + "input": false, + "label": "", + "title": "Section I - CONTACT INFORMATION", + "collapsed": false, + "tableView": false, + "components": [ + { + "key": "siteOwnerOrOperator", + "type": "panel", + "input": false, + "label": "Panel", + "title": "Site Owner or Operator", + "hideLabel": true, + "tableView": false, + "components": [ + { + "key": "Section1A-NameColumn", + "type": "columns", + "input": false, + "label": "Columns - 2", + "columns": [ + { + "pull": 0, + "push": 0, + "size": "md", + "width": 6, + "offset": 0, + "components": [ + { + "key": "Section1A-LastName", + "type": "textfield", + "input": true, + "label": "Last Name", + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "tableView": false, + "hideOnChildrenHidden": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "ekh7nj9" + } + ], + "currentWidth": 6 + }, + { + "pull": 0, + "push": 0, + "size": "md", + "width": 6, + "offset": 0, + "components": [ + { + "key": "Section1A-FirstName", + "type": "textfield", + "input": true, + "label": "First Name", + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "tableView": false, + "hideOnChildrenHidden": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "euc0sw" + } + ], + "currentWidth": 6 + } + ], + "tableView": false, + "hideOnChildrenHidden": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "hidden": false, + "clearOnHide": false, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "tree": false, + "lazyLoad": false, + "autoAdjust": false, + "id": "euaafu" + }, + { + "key": "Section1A-Company", + "type": "textfield", + "input": true, + "label": "Company, if applicable", + "tableView": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "effeqnf" + }, + { + "key": "Section1A-AddressColumn3", + "type": "columns", + "input": false, + "label": "Columns - 2", + "columns": [ + { + "pull": 0, + "push": 0, + "size": "md", + "width": 6, + "offset": 0, + "components": [ + { + "key": "Section1A-Address", + "type": "textfield", + "input": true, + "label": "Address", + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "tableView": false, + "hideOnChildrenHidden": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "e2utqz" + } + ], + "currentWidth": 6 + }, + { + "pull": 0, + "push": 0, + "size": "md", + "width": 6, + "offset": 0, + "components": [ + { + "key": "Section1A-City", + "type": "textfield", + "input": true, + "label": "City", + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "tableView": false, + "hideOnChildrenHidden": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "e5u2rue" + } + ], + "currentWidth": 6 + } + ], + "tableView": false, + "hideOnChildrenHidden": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "hidden": false, + "clearOnHide": false, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "tree": false, + "lazyLoad": false, + "autoAdjust": false, + "id": "emhj7ub" + }, + { + "key": "Section1A-AddressColumn", + "type": "columns", + "input": false, + "label": "Columns - 3", + "columns": [ + { + "pull": 0, + "push": 0, + "size": "md", + "width": 4, + "offset": 0, + "components": [ + { + "key": "Section1A-ProvinceState", + "type": "textfield", + "input": true, + "label": "Province", + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "tableView": false, + "hideOnChildrenHidden": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "ea49wil" + } + ], + "currentWidth": 4 + }, + { + "pull": 0, + "push": 0, + "size": "md", + "width": 4, + "offset": 0, + "components": [ + { + "key": "Section1A-Country", + "type": "textfield", + "input": true, + "label": "Country", + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "tableView": false, + "hideOnChildrenHidden": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "elb9xr8" + } + ], + "currentWidth": 4 + }, + { + "pull": 0, + "push": 0, + "size": "md", + "width": 4, + "offset": 0, + "components": [ + { + "key": "Section1A-PostalZipCode", + "type": "textfield", + "input": true, + "label": "Postal Code", + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "tableView": false, + "hideOnChildrenHidden": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "etaog87" + } + ], + "currentWidth": 4 + } + ], + "tableView": false, + "hideOnChildrenHidden": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "hidden": false, + "clearOnHide": false, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "tree": false, + "lazyLoad": false, + "autoAdjust": false, + "id": "ewwkail" + }, + { + "key": "Section1A-ContactInfoColumn", + "type": "columns", + "input": false, + "label": "Columns - 2", + "columns": [ + { + "pull": 0, + "push": 0, + "size": "md", + "width": 6, + "offset": 0, + "components": [ + { + "key": "phoneNumber2", + "type": "textfield", + "input": true, + "label": "Phone Number", + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "tableView": false, + "hideOnChildrenHidden": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "eunnqpj" + } + ], + "currentWidth": 6 + }, + { + "pull": 0, + "push": 0, + "size": "md", + "width": 6, + "offset": 0, + "components": [ + { + "label": "Email", + "tableView": true, + "validate": { + "required": true, + "custom": "\r\nvar currentValue = input;\r\nconsole.log('currentValue',currentValue);\r\nfetch('https://forms-flow-api-e38158-dev.apps.silver.devops.gov.bc.ca/user?memberOfGroup=formsflow%2Fformsflow-reviewer%2Fformsflow-client-reviewer',\r\n{'headers':{ 'authorization': 'Bearer '+localStorage.getItem('authToken')},'mode':'cors'})\r\n.then((p)=> {return p.json();}).\r\nthen((x)=>{\r\n data.hiddenUserIdForFormSharing = '' ;\r\n x.find((y)=>{ console.log('currentValue',currentValue); \r\n if( y.email=== currentValue ) \r\n { data.hiddenUserIdForFormSharing = y.id}\r\n\r\n })\r\n\r\n if(data.hiddenUserIdForFormSharing==='')\r\n {\r\n valid = 'Unable to find user with provided email address';\r\n }\r\n else\r\n {\r\n valid = true;\r\n }\r\n\r\n});", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "key": "ownerEmailAddress", + "type": "email", + "input": true, + "delimiter": false, + "requireDecimal": false, + "hideOnChildrenHidden": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "email", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "kickbox": { + "enabled": false + }, + "id": "ewvvqh" + } + ], + "currentWidth": 6 + } + ], + "tableView": false, + "hideOnChildrenHidden": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "hidden": false, + "clearOnHide": false, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "tree": false, + "lazyLoad": false, + "autoAdjust": false, + "id": "eeq9dzs" + }, + { + "label": "Is applicant same as above?", + "labelPosition": "top", + "optionsLabelPosition": "right", + "description": "", + "tooltip": "", + "customClass": "", + "tabindex": "", + "inline": false, + "hidden": false, + "hideLabel": false, + "autofocus": false, + "disabled": false, + "tableView": false, + "modalEdit": false, + "values": [ + { + "label": "Yes", + "value": "true", + "shortcut": "" + }, + { + "label": "No", + "value": "false", + "shortcut": "" + } + ], + "dataType": "", + "persistent": true, + "protected": false, + "dbIndex": false, + "encrypted": false, + "redrawOn": "", + "clearOnHide": true, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "allowCalculateOverride": false, + "validate": { + "required": true, + "onlyAvailableItems": false, + "customMessage": "", + "custom": "", + "customPrivate": false, + "json": "", + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "errorLabel": "", + "errors": "", + "key": "isApplicantSameAsAbove", + "tags": [], + "properties": {}, + "conditional": { + "show": null, + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "radio", + "input": true, + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "unique": false, + "refreshOn": "", + "dataGridLabel": false, + "widget": null, + "validateOn": "change", + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "inputType": "radio", + "fieldSet": false, + "id": "eup055", + "defaultValue": "" + } + ], + "collapsible": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "hidden": false, + "clearOnHide": false, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "tree": false, + "lazyLoad": false, + "theme": "default", + "breadcrumb": "default", + "id": "evm4w5b" + }, + { + "title": "Applicant", + "theme": "default", + "tooltip": "", + "customClass": "", + "collapsible": false, + "hidden": false, + "hideLabel": false, + "disabled": false, + "modalEdit": false, + "key": "applicant", + "tags": [], + "properties": {}, + "customConditional": "", + "conditional": { + "json": "", + "show": true, + "when": "isApplicantSameAsAbove", + "eq": "false" + }, + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "panel", + "label": "Panel", + "breadcrumb": "default", + "tabindex": "", + "input": false, + "tableView": false, + "components": [ + { + "key": "Section1C-NameColumn", + "type": "columns", + "input": false, + "label": "Columns - 2", + "columns": [ + { + "pull": 0, + "push": 0, + "size": "md", + "width": 6, + "offset": 0, + "components": [ + { + "key": "Section1C-LastName", + "type": "textfield", + "input": true, + "label": "Last Name", + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "tableView": false, + "hideOnChildrenHidden": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "e40la5k" + } + ], + "currentWidth": 6 + }, + { + "pull": 0, + "push": 0, + "size": "md", + "width": 6, + "offset": 0, + "components": [ + { + "key": "Section1C-FirstName", + "type": "textfield", + "input": true, + "label": "First Name", + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "tableView": false, + "hideOnChildrenHidden": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "e0oy6rg" + } + ], + "currentWidth": 6 + } + ], + "tableView": false, + "hideOnChildrenHidden": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "hidden": false, + "clearOnHide": false, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "tree": false, + "lazyLoad": false, + "autoAdjust": false, + "id": "e9ur3d" + }, + { + "key": "Section1C-Company", + "type": "textfield", + "input": true, + "label": "Company, if applicable", + "tableView": false, + "hideOnChildrenHidden": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "eikmhmk" + }, + { + "key": "Section1C-AddressColumn", + "type": "columns", + "input": false, + "label": "Columns - 2", + "columns": [ + { + "pull": 0, + "push": 0, + "size": "md", + "width": 6, + "offset": 0, + "components": [ + { + "key": "Section1C-Address", + "type": "textfield", + "input": true, + "label": "Address", + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "tableView": false, + "hideOnChildrenHidden": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "efojt6s" + } + ], + "currentWidth": 6 + }, + { + "pull": 0, + "push": 0, + "size": "md", + "width": 6, + "offset": 0, + "components": [ + { + "key": "Section1C-City", + "type": "textfield", + "input": true, + "label": "City", + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "tableView": false, + "hideOnChildrenHidden": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "e59u27" + } + ], + "currentWidth": 6 + } + ], + "tableView": false, + "hideOnChildrenHidden": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "hidden": false, + "clearOnHide": false, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "tree": false, + "lazyLoad": false, + "autoAdjust": false, + "id": "eigg0un" + }, + { + "key": "Section1A-AddressColumn2", + "type": "columns", + "input": false, + "label": "Columns - 3", + "columns": [ + { + "pull": 0, + "push": 0, + "size": "md", + "width": 4, + "offset": 0, + "components": [ + { + "key": "Section1A-ProvinceState2", + "type": "textfield", + "input": true, + "label": "Province", + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "tableView": false, + "hideOnChildrenHidden": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "efyqlzn" + } + ], + "currentWidth": 4 + }, + { + "pull": 0, + "push": 0, + "size": "md", + "width": 4, + "offset": 0, + "components": [ + { + "key": "Section1A-Country2", + "type": "textfield", + "input": true, + "label": "Country", + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "tableView": false, + "hideOnChildrenHidden": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "edhcyho" + } + ], + "currentWidth": 4 + }, + { + "pull": 0, + "push": 0, + "size": "md", + "width": 4, + "offset": 0, + "components": [ + { + "key": "Section1A-PostalZipCode2", + "type": "textfield", + "input": true, + "label": "Postal Code", + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "tableView": false, + "hideOnChildrenHidden": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "e3mm0qo" + } + ], + "currentWidth": 4 + } + ], + "tableView": false, + "hideOnChildrenHidden": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "hidden": false, + "clearOnHide": false, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "tree": false, + "lazyLoad": false, + "autoAdjust": false, + "id": "elurmt" + }, + { + "key": "Section1C-ContactInfoColumn", + "type": "columns", + "input": false, + "label": "Columns - 2", + "columns": [ + { + "pull": 0, + "push": 0, + "size": "md", + "width": 6, + "offset": 0, + "components": [ + { + "key": "phoneNumber", + "type": "textfield", + "input": true, + "label": "Phone Number", + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "tableView": false, + "hideOnChildrenHidden": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "eidhmy6" + } + ], + "currentWidth": 6 + }, + { + "pull": 0, + "push": 0, + "size": "md", + "width": 6, + "offset": 0, + "components": [ + { + "label": "Email", + "tableView": true, + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "key": "contactPersonEmailAddress", + "type": "email", + "input": true, + "delimiter": false, + "requireDecimal": false, + "hideOnChildrenHidden": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "email", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "kickbox": { + "enabled": false + }, + "id": "ee0ed8f" + } + ], + "currentWidth": 6 + } + ], + "tableView": false, + "hideOnChildrenHidden": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "hidden": false, + "clearOnHide": false, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "tree": false, + "lazyLoad": false, + "autoAdjust": false, + "id": "ebgnl1p" + }, + { + "label": "Is the agent same as the applicant?", + "optionsLabelPosition": "right", + "inline": false, + "tableView": false, + "values": [ + { + "label": "Yes", + "value": "true", + "shortcut": "" + }, + { + "label": "No", + "value": "false", + "shortcut": "" + } + ], + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "onlyAvailableItems": false + }, + "key": "isApplicantSameAsAbove1", + "conditional": { + "show": true, + "when": "isApplicantSameAsAbove", + "eq": "false" + }, + "type": "radio", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "inputType": "radio", + "fieldSet": false, + "id": "et6b04k" + } + ], + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "clearOnHide": false, + "refreshOn": "", + "redrawOn": "", + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "tree": false, + "lazyLoad": false, + "id": "er3axs" + }, + { + "title": "Agent", + "theme": "default", + "tooltip": "", + "customClass": "", + "collapsible": false, + "hidden": false, + "hideLabel": false, + "disabled": false, + "modalEdit": false, + "key": "panel", + "tags": [], + "properties": {}, + "customConditional": "", + "conditional": { + "json": "", + "show": true, + "when": "isApplicantSameAsAbove1", + "eq": "false" + }, + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "panel", + "label": "Panel", + "breadcrumb": "default", + "tabindex": "", + "input": false, + "tableView": false, + "components": [ + { + "key": "Section1B-NameColumn", + "type": "columns", + "input": false, + "label": "Section1B-NameColumn", + "columns": [ + { + "pull": 0, + "push": 0, + "size": "md", + "width": 6, + "offset": 0, + "components": [ + { + "key": "Section1B-LastName", + "type": "textfield", + "input": true, + "label": "Last Name", + "tableView": false, + "hideOnChildrenHidden": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "ewq9vf" + } + ], + "currentWidth": 6 + }, + { + "pull": 0, + "push": 0, + "size": "md", + "width": 6, + "offset": 0, + "components": [ + { + "key": "Section1B-FirstName", + "type": "textfield", + "input": true, + "label": "First Name", + "tableView": false, + "hideOnChildrenHidden": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "egx5th9" + } + ], + "currentWidth": 6 + } + ], + "tableView": false, + "hideOnChildrenHidden": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "hidden": false, + "clearOnHide": false, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "tree": false, + "lazyLoad": false, + "autoAdjust": false, + "id": "eyy4ce" + }, + { + "key": "Section1C-Company1", + "type": "textfield", + "input": true, + "label": "Company, if applicable", + "tableView": false, + "hideOnChildrenHidden": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "ex0z6ex" + }, + { + "key": "Section1C-AddressColumn1", + "type": "columns", + "input": false, + "label": "Columns - 2", + "columns": [ + { + "pull": 0, + "push": 0, + "size": "md", + "width": 6, + "offset": 0, + "components": [ + { + "key": "Section1C-Address1", + "type": "textfield", + "input": true, + "label": "Address", + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "tableView": false, + "hideOnChildrenHidden": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "eks23e" + } + ], + "currentWidth": 6 + }, + { + "pull": 0, + "push": 0, + "size": "md", + "width": 6, + "offset": 0, + "components": [ + { + "key": "Section1C-City1", + "type": "textfield", + "input": true, + "label": "City", + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "tableView": false, + "hideOnChildrenHidden": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "e026ykm" + } + ], + "currentWidth": 6 + } + ], + "tableView": false, + "hideOnChildrenHidden": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "hidden": false, + "clearOnHide": false, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "tree": false, + "lazyLoad": false, + "autoAdjust": false, + "id": "eb0na63" + }, + { + "key": "Section1A-AddressColumn4", + "type": "columns", + "input": false, + "label": "Columns - 3", + "columns": [ + { + "pull": 0, + "push": 0, + "size": "md", + "width": 4, + "offset": 0, + "components": [ + { + "key": "Section1A-ProvinceState3", + "type": "textfield", + "input": true, + "label": "Province", + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "tableView": false, + "hideOnChildrenHidden": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "er0guec" + } + ], + "currentWidth": 4 + }, + { + "pull": 0, + "push": 0, + "size": "md", + "width": 4, + "offset": 0, + "components": [ + { + "key": "Section1A-Country3", + "type": "textfield", + "input": true, + "label": "Country", + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "tableView": false, + "hideOnChildrenHidden": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "ex5fali" + } + ], + "currentWidth": 4 + }, + { + "pull": 0, + "push": 0, + "size": "md", + "width": 4, + "offset": 0, + "components": [ + { + "key": "Section1A-PostalZipCode3", + "type": "textfield", + "input": true, + "label": "Postal Code", + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "tableView": false, + "hideOnChildrenHidden": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "e5v9qcs" + } + ], + "currentWidth": 4 + } + ], + "tableView": false, + "hideOnChildrenHidden": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "hidden": false, + "clearOnHide": false, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "tree": false, + "lazyLoad": false, + "autoAdjust": false, + "id": "ek9ixdb" + }, + { + "key": "Section1C-ContactInfoColumn1", + "type": "columns", + "input": false, + "label": "Columns - 2", + "columns": [ + { + "pull": 0, + "push": 0, + "size": "md", + "width": 6, + "offset": 0, + "components": [ + { + "key": "phoneNumber1", + "type": "textfield", + "input": true, + "label": "Phone Number", + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "tableView": false, + "hideOnChildrenHidden": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "etn06w9" + } + ], + "currentWidth": 6 + }, + { + "pull": 0, + "push": 0, + "size": "md", + "width": 6, + "offset": 0, + "components": [ + { + "label": "Email", + "tableView": true, + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "key": "contactPersonEmailAddress1", + "type": "email", + "input": true, + "delimiter": false, + "requireDecimal": false, + "hideOnChildrenHidden": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "email", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "kickbox": { + "enabled": false + }, + "id": "elk9b5f" + } + ], + "currentWidth": 6 + } + ], + "tableView": false, + "hideOnChildrenHidden": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "hidden": false, + "clearOnHide": false, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "tree": false, + "lazyLoad": false, + "autoAdjust": false, + "id": "esdtr6j" + } + ], + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "clearOnHide": false, + "refreshOn": "", + "redrawOn": "", + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "tree": false, + "lazyLoad": false, + "id": "eccpvcc" + }, + { + "title": "Approved Professional", + "theme": "default", + "tooltip": "", + "customClass": "", + "collapsible": false, + "hidden": false, + "hideLabel": false, + "disabled": false, + "modalEdit": false, + "key": "panel1", + "tags": [], + "properties": {}, + "customConditional": "", + "conditional": { + "json": "", + "show": null, + "when": null, + "eq": "" + }, + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "panel", + "label": "Panel", + "breadcrumb": "default", + "tabindex": "", + "input": false, + "tableView": false, + "components": [ + { + "key": "Section1B-NameColumn1", + "type": "columns", + "input": false, + "label": "Section1B-NameColumn", + "columns": [ + { + "pull": 0, + "push": 0, + "size": "md", + "width": 6, + "offset": 0, + "components": [ + { + "key": "Section1B-LastName1", + "type": "textfield", + "input": true, + "label": "Last Name", + "tableView": false, + "hideOnChildrenHidden": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "epx0m9r" + } + ], + "currentWidth": 6 + }, + { + "pull": 0, + "push": 0, + "size": "md", + "width": 6, + "offset": 0, + "components": [ + { + "key": "Section1B-FirstName1", + "type": "textfield", + "input": true, + "label": "First Name", + "tableView": false, + "hideOnChildrenHidden": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "e5zc8ym" + } + ], + "currentWidth": 6 + } + ], + "tableView": false, + "hideOnChildrenHidden": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "hidden": false, + "clearOnHide": false, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "tree": false, + "lazyLoad": false, + "autoAdjust": false, + "id": "ebe00dr" + }, + { + "key": "Section1C-Company2", + "type": "textfield", + "input": true, + "label": "Company, if applicable", + "tableView": false, + "hideOnChildrenHidden": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "ehx2r3c" + }, + { + "key": "Section1C-AddressColumn2", + "type": "columns", + "input": false, + "label": "Columns - 2", + "columns": [ + { + "pull": 0, + "push": 0, + "size": "md", + "width": 6, + "offset": 0, + "components": [ + { + "key": "Section1C-Address2", + "type": "textfield", + "input": true, + "label": "Address", + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "tableView": false, + "hideOnChildrenHidden": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "eviqouu" + } + ], + "currentWidth": 6 + }, + { + "pull": 0, + "push": 0, + "size": "md", + "width": 6, + "offset": 0, + "components": [ + { + "key": "Section1C-City2", + "type": "textfield", + "input": true, + "label": "City", + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "tableView": false, + "hideOnChildrenHidden": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "ej96lic" + } + ], + "currentWidth": 6 + } + ], + "tableView": false, + "hideOnChildrenHidden": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "hidden": false, + "clearOnHide": false, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "tree": false, + "lazyLoad": false, + "autoAdjust": false, + "id": "eo3ukfa" + }, + { + "key": "Section1A-AddressColumn5", + "type": "columns", + "input": false, + "label": "Columns - 3", + "columns": [ + { + "pull": 0, + "push": 0, + "size": "md", + "width": 4, + "offset": 0, + "components": [ + { + "key": "Section1A-ProvinceState4", + "type": "textfield", + "input": true, + "label": "Province", + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "tableView": false, + "hideOnChildrenHidden": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "euw0tfs" + } + ], + "currentWidth": 4 + }, + { + "pull": 0, + "push": 0, + "size": "md", + "width": 4, + "offset": 0, + "components": [ + { + "key": "Section1A-Country4", + "type": "textfield", + "input": true, + "label": "Country", + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "tableView": false, + "hideOnChildrenHidden": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "eq6im" + } + ], + "currentWidth": 4 + }, + { + "pull": 0, + "push": 0, + "size": "md", + "width": 4, + "offset": 0, + "components": [ + { + "key": "Section1A-PostalZipCode4", + "type": "textfield", + "input": true, + "label": "Postal Code", + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "tableView": false, + "hideOnChildrenHidden": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "ezn76c" + } + ], + "currentWidth": 4 + } + ], + "tableView": false, + "hideOnChildrenHidden": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "hidden": false, + "clearOnHide": false, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "tree": false, + "lazyLoad": false, + "autoAdjust": false, + "id": "ed95jch" + }, + { + "key": "Section1C-ContactInfoColumn2", + "type": "columns", + "input": false, + "label": "Columns - 2", + "columns": [ + { + "pull": 0, + "push": 0, + "size": "md", + "width": 6, + "offset": 0, + "components": [ + { + "key": "phoneNumber3", + "type": "textfield", + "input": true, + "label": "Phone Number", + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "tableView": false, + "hideOnChildrenHidden": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "epk5n6b" + } + ], + "currentWidth": 6 + }, + { + "pull": 0, + "push": 0, + "size": "md", + "width": 6, + "offset": 0, + "components": [ + { + "label": "Email", + "tableView": true, + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "key": "contactPersonEmailAddress2", + "type": "email", + "input": true, + "delimiter": false, + "requireDecimal": false, + "hideOnChildrenHidden": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "email", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "kickbox": { + "enabled": false + }, + "id": "e2vlpc" + } + ], + "currentWidth": 6 + } + ], + "tableView": false, + "hideOnChildrenHidden": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "hidden": false, + "clearOnHide": false, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "tree": false, + "lazyLoad": false, + "autoAdjust": false, + "id": "e4f2vgv" + }, + { + "label": "Professional Designation", + "labelPosition": "top", + "placeholder": "", + "description": "", + "tooltip": "", + "prefix": "", + "suffix": "", + "widget": { + "type": "input" + }, + "inputMask": "", + "displayMask": "", + "allowMultipleMasks": false, + "customClass": "", + "tabindex": "", + "autocomplete": "", + "hidden": false, + "hideLabel": false, + "showWordCount": false, + "showCharCount": false, + "mask": false, + "autofocus": false, + "spellcheck": true, + "disabled": false, + "tableView": true, + "modalEdit": false, + "multiple": false, + "persistent": true, + "inputFormat": "plain", + "protected": false, + "dbIndex": false, + "case": "", + "truncateMultipleSpaces": false, + "encrypted": false, + "redrawOn": "", + "clearOnHide": true, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "allowCalculateOverride": false, + "validateOn": "change", + "validate": { + "required": false, + "pattern": "", + "customMessage": "", + "custom": "", + "customPrivate": false, + "json": "", + "minLength": "", + "maxLength": "", + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "unique": false, + "errorLabel": "", + "errors": "", + "key": "professionalDesignation", + "tags": [], + "properties": {}, + "conditional": { + "show": null, + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "textfield", + "input": true, + "refreshOn": "", + "dataGridLabel": false, + "addons": [], + "inputType": "text", + "id": "e4erht", + "defaultValue": "" + }, + { + "label": "Scope of review completed by Approved Professional (eg. arm's length risk-based standards review)", + "labelPosition": "top", + "placeholder": "", + "description": "", + "tooltip": "", + "prefix": "", + "suffix": "", + "widget": { + "type": "input" + }, + "displayMask": "", + "editor": "", + "autoExpand": false, + "customClass": "", + "tabindex": "", + "autocomplete": "", + "hidden": false, + "hideLabel": false, + "showWordCount": false, + "showCharCount": false, + "autofocus": false, + "spellcheck": true, + "disabled": false, + "tableView": true, + "modalEdit": false, + "multiple": false, + "persistent": true, + "inputFormat": "html", + "protected": false, + "dbIndex": false, + "case": "", + "truncateMultipleSpaces": false, + "encrypted": false, + "redrawOn": "", + "clearOnHide": true, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "allowCalculateOverride": false, + "validateOn": "change", + "validate": { + "required": false, + "pattern": "", + "customMessage": "", + "custom": "", + "customPrivate": false, + "json": "", + "minLength": "", + "maxLength": "", + "minWords": "", + "maxWords": "", + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "unique": false, + "errorLabel": "", + "errors": "", + "key": "scopeOfReviewCompletedByApprovedProfessionalEgArmsLengthRiskBasedStandardsReview", + "tags": [], + "properties": {}, + "conditional": { + "show": null, + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "textarea", + "rows": 3, + "wysiwyg": false, + "input": true, + "refreshOn": "", + "dataGridLabel": false, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputMask": "", + "fixedSize": true, + "id": "e3504l8", + "defaultValue": "" + } + ], + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "clearOnHide": false, + "refreshOn": "", + "redrawOn": "", + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "tree": false, + "lazyLoad": false, + "id": "euyo4sn" + } + ], + "collapsible": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "hidden": false, + "clearOnHide": false, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "tree": false, + "lazyLoad": false, + "theme": "default", + "breadcrumb": "default", + "id": "e52kzii", + "keyModified": true + }, + { + "html": "

Part 2 - Executive Summary

", + "label": "Content", + "customClass": "", + "refreshOnChange": false, + "hidden": false, + "modalEdit": false, + "key": "content4", + "tags": [], + "properties": {}, + "conditional": { + "show": null, + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "content", + "input": false, + "tableView": false, + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "id": "eip4sw7" + }, + { + "title": "Section II - EXECUTIVE SUMMARY", + "theme": "default", + "tooltip": "", + "customClass": "", + "collapsible": true, + "hidden": false, + "hideLabel": false, + "disabled": false, + "modalEdit": false, + "key": "Section1-ContactInformation1", + "tags": [], + "properties": {}, + "customConditional": "", + "conditional": { + "json": "", + "show": null, + "when": null, + "eq": "" + }, + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "panel", + "label": "", + "breadcrumb": "default", + "tabindex": "", + "collapsed": false, + "input": false, + "tableView": false, + "keyModified": true, + "components": [ + { + "html": "

To be completed by the approved professionals reviewing the site investigation, risk assessment, remediation or confirmation of remediation reports.

", + "label": "Content", + "customClass": "", + "refreshOnChange": false, + "hidden": false, + "modalEdit": false, + "key": "content2", + "tags": [], + "properties": {}, + "conditional": { + "show": null, + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "content", + "input": false, + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "tableView": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "id": "epyqnv" + }, + { + "label": "Subject Site Locations", + "reorder": false, + "addAnotherPosition": "bottom", + "layoutFixed": false, + "enableRowGroups": false, + "initEmpty": false, + "tableView": false, + "defaultValue": [ + { + "siteId": "", + "siteCommonName": "", + "section2LatitudeDegrees": "", + "section2LatitudeMinutes": "", + "section2LatitudeSeconds": "", + "section2LongitudeDegrees": "", + "section2LongitudeMinutes": "", + "section2LongitudeSeconds": "" + } + ], + "key": "dataGrid", + "type": "datagrid", + "input": true, + "components": [ + { + "title": "Subject Site Location", + "collapsible": false, + "key": "panel2", + "type": "panel", + "label": "Site", + "input": false, + "tableView": false, + "components": [ + { + "label": "Site ID", + "tableView": true, + "key": "siteId", + "type": "textfield", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "etpvslk" + }, + { + "label": "Site Common Name", + "autoExpand": false, + "tableView": true, + "key": "siteCommonName", + "type": "textarea", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "", + "minWords": "", + "maxWords": "" + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "html", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "rows": 3, + "wysiwyg": false, + "editor": "", + "fixedSize": true, + "id": "edrol6" + }, + { + "key": "heading4", + "tag": "h4", + "type": "htmlelement", + "input": false, + "label": "Heading", + "content": "Latitude", + "tableView": false, + "headingSize": "h1", + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "attrs": [], + "id": "e8b5q86" + }, + { + "key": "Section2-LatitudeColumn", + "type": "columns", + "input": false, + "label": "Columns - 3", + "columns": [ + { + "pull": 0, + "push": 0, + "size": "md", + "width": 4, + "offset": 0, + "components": [ + { + "key": "section2LatitudeDegrees", + "type": "textfield", + "input": true, + "label": "Degrees", + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "tableView": false, + "hideOnChildrenHidden": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "ef4s1gv" + } + ], + "currentWidth": 4 + }, + { + "pull": 0, + "push": 0, + "size": "md", + "width": 4, + "offset": 0, + "components": [ + { + "key": "section2LatitudeMinutes", + "type": "textfield", + "input": true, + "label": "Minutes", + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "tableView": false, + "hideOnChildrenHidden": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "evm2u7" + } + ], + "currentWidth": 4 + }, + { + "pull": 0, + "push": 0, + "size": "md", + "width": 4, + "offset": 0, + "components": [ + { + "key": "section2LatitudeSeconds", + "type": "textfield", + "input": true, + "label": "Seconds", + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "tableView": false, + "hideOnChildrenHidden": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "ezwdsq8" + } + ], + "currentWidth": 4 + } + ], + "tableView": false, + "hideOnChildrenHidden": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "hidden": false, + "clearOnHide": false, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "tree": false, + "lazyLoad": false, + "autoAdjust": false, + "id": "elda0gq" + }, + { + "key": "heading5", + "tag": "h4", + "type": "htmlelement", + "input": false, + "label": "Heading", + "content": "Longitude", + "tableView": false, + "headingSize": "h1", + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "attrs": [], + "id": "en3p8e9" + }, + { + "key": "Section2-LongitudeColumn", + "type": "columns", + "input": false, + "label": "Columns - 3", + "columns": [ + { + "pull": 0, + "push": 0, + "size": "md", + "width": 4, + "offset": 0, + "components": [ + { + "key": "section2LongitudeDegrees", + "type": "textfield", + "input": true, + "label": "Degrees", + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "tableView": false, + "hideOnChildrenHidden": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "e8hqhvc" + } + ], + "currentWidth": 4 + }, + { + "pull": 0, + "push": 0, + "size": "md", + "width": 4, + "offset": 0, + "components": [ + { + "key": "section2LongitudeMinutes", + "type": "textfield", + "input": true, + "label": "Minutes", + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "tableView": false, + "hideOnChildrenHidden": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "er4jc8h" + } + ], + "currentWidth": 4 + }, + { + "pull": 0, + "push": 0, + "size": "md", + "width": 4, + "offset": 0, + "components": [ + { + "key": "section2LongitudeSeconds", + "type": "textfield", + "input": true, + "label": "Seconds", + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "tableView": false, + "hideOnChildrenHidden": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "ekx2hxj" + } + ], + "currentWidth": 4 + } + ], + "tableView": false, + "hideOnChildrenHidden": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "hidden": false, + "clearOnHide": false, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "tree": false, + "lazyLoad": false, + "autoAdjust": false, + "id": "eco0438" + } + ], + "id": "edowey0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "hidden": false, + "clearOnHide": false, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "tree": false, + "lazyLoad": false, + "theme": "default", + "breadcrumb": "default" + } + ], + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "tree": true, + "lazyLoad": false, + "disableAddingRemovingRows": false, + "id": "evusv2q" + }, + { + "key": "heading3", + "tag": "h3", + "type": "htmlelement", + "input": false, + "label": "Heading", + "content": "Coordinates for the centre of the site:", + "tableView": false, + "headingSize": "h1", + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "attrs": [], + "id": "ee72tiv" + }, + { + "key": "content", + "html": "

Attention:

A separate map with appropriate scale showing the location and boundaries of the site must be included with an SDS submission.

", + "type": "content", + "input": false, + "label": "Static Text", + "tableView": false, + "hideOnChildrenHidden": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "id": "e5fmbyj" + }, + { + "key": "iUnderstandAndWillAttachAMapWithMySubmission", + "type": "checkbox", + "input": true, + "label": "I will include a map with my submission", + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "tableView": false, + "defaultValue": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": true, + "labelPosition": "right", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "inputType": "checkbox", + "value": "", + "name": "", + "id": "ekbr5fb" + }, + { + "label": "Land ownership (Source Site) Please select all that apply:", + "optionsLabelPosition": "right", + "tableView": false, + "values": [ + { + "label": "Legally Titled, Registered Property", + "value": "legallyTitled", + "shortcut": "" + }, + { + "label": "Untitled Crown Land", + "value": "untitledCrown", + "shortcut": "" + }, + { + "label": "Untitled Municipal Land", + "value": "untitledMunicipal", + "shortcut": "" + } + ], + "key": "landOwnershipSourceSitePleaseSelectAllThatApply", + "type": "selectboxes", + "input": true, + "inputType": "checkbox", + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "onlyAvailableItems": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "fieldSet": false, + "inline": false, + "id": "e49h9q" + }, + { + "title": "For Legally Titled, Registered Property (Source Site)", + "theme": "default", + "tooltip": "", + "customClass": "", + "collapsible": false, + "hidden": false, + "hideLabel": false, + "disabled": false, + "modalEdit": false, + "key": "forLegallyTitledRegisteredProperty-panel", + "tags": [], + "properties": {}, + "customConditional": "", + "conditional": { + "json": "", + "show": true, + "when": "landOwnershipSourceSitePleaseSelectAllThatApply", + "eq": "legallyTitled" + }, + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "panel", + "label": "", + "breadcrumb": "default", + "tabindex": "", + "input": false, + "collapsed": false, + "tableView": false, + "components": [ + { + "key": "Section2-LegallyTitled-Address", + "type": "textfield", + "input": true, + "label": "Site Address", + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "tableView": false, + "placeholder": "or nearest street name/intersection if no address is assigned", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "emyfj89" + }, + { + "key": "Section2-LegallyTitled-AddressColumn", + "type": "columns", + "input": false, + "label": "Columns - 2", + "columns": [ + { + "pull": 0, + "push": 0, + "size": "md", + "width": 6, + "offset": 0, + "components": [ + { + "key": "Section2-LegallyTitled-City", + "type": "textfield", + "input": true, + "label": "City", + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "tableView": false, + "hideOnChildrenHidden": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "ev16eg9" + } + ], + "currentWidth": 6 + }, + { + "pull": 0, + "push": 0, + "size": "md", + "width": 6, + "offset": 0, + "components": [ + { + "key": "Section2-LegallyTitled-PostalZipCode", + "type": "textfield", + "input": true, + "label": "Postal Code", + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "tableView": false, + "hideOnChildrenHidden": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "eftbs3h" + } + ], + "currentWidth": 6 + } + ], + "tableView": false, + "hideOnChildrenHidden": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "hidden": false, + "clearOnHide": false, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "tree": false, + "lazyLoad": false, + "autoAdjust": false, + "id": "eavg5jx" + }, + { + "label": "Enter PIDs and Land Descriptions below", + "tooltip": "Select the 'X' button to delete an entry.", + "reorder": false, + "addAnotherPosition": "bottom", + "layoutFixed": false, + "enableRowGroups": false, + "initEmpty": false, + "hideLabel": true, + "tableView": false, + "defaultValue": [ + { + "Section2-LegallyTitled-PID": "", + "SiteAddress-LegallyTitled-PID": "", + "Section2-LegallyTitled-LandDescription": "", + "SiteAddress-LegallyTitled-LandDescription": "" + } + ], + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "key": "Section2-LegallyTitled-PIDColumn", + "type": "datagrid", + "input": true, + "components": [ + { + "title": "Entries", + "collapsible": false, + "hideLabel": true, + "key": "panel1", + "type": "panel", + "label": "Panel", + "input": false, + "tableView": false, + "components": [ + { + "key": "cols3", + "type": "columns", + "input": false, + "label": "Columns - 2", + "columns": [ + { + "pull": 0, + "push": 0, + "size": "md", + "width": 6, + "offset": 0, + "components": [ + { + "key": "Section2-LegallyTitled-PID", + "type": "textfield", + "input": true, + "label": "PID", + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "inputMask": "999-999-999", + "tableView": true, + "hideOnChildrenHidden": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "eaoeej" + } + ], + "currentWidth": 6 + }, + { + "pull": 0, + "push": 0, + "size": "md", + "width": 6, + "offset": 0, + "components": [], + "currentWidth": 6 + } + ], + "tableView": false, + "hideOnChildrenHidden": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "hidden": false, + "clearOnHide": false, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "tree": false, + "lazyLoad": false, + "autoAdjust": false, + "id": "e35et7b" + }, + { + "key": "Section2-LegallyTitled-LandDescription", + "type": "textarea", + "input": true, + "label": "Land Description", + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "", + "minWords": "", + "maxWords": "" + }, + "tableView": true, + "autoExpand": false, + "inputFormat": "plain", + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "rows": 3, + "wysiwyg": false, + "editor": "", + "fixedSize": true, + "id": "eqnyhh" + } + ], + "id": "eskogm00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "hidden": false, + "clearOnHide": false, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "tree": false, + "lazyLoad": false, + "theme": "default", + "breadcrumb": "default" + } + ], + "hideOnChildrenHidden": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "tree": true, + "lazyLoad": false, + "disableAddingRemovingRows": false, + "id": "eyxh9qa" + } + ], + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "clearOnHide": false, + "refreshOn": "", + "redrawOn": "", + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "tree": false, + "lazyLoad": false, + "id": "esaica" + }, + { + "title": "For Untitled Crown Land (Source Site)", + "theme": "default", + "tooltip": "", + "customClass": "", + "collapsible": false, + "hidden": false, + "hideLabel": false, + "disabled": false, + "modalEdit": false, + "key": "Section2-forUntitledCrownLand", + "tags": [], + "properties": {}, + "customConditional": "", + "conditional": { + "json": "", + "show": true, + "when": "landOwnershipSourceSitePleaseSelectAllThatApply", + "eq": "untitledCrown" + }, + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "panel", + "label": "", + "breadcrumb": "default", + "tabindex": "", + "input": false, + "collapsed": false, + "tableView": false, + "components": [ + { + "key": "Section2-UntitledCrown-PINColumn", + "type": "datagrid", + "input": true, + "label": "", + "reorder": false, + "hideLabel": true, + "initEmpty": false, + "tableView": false, + "components": [ + { + "title": "Untitled Crown Land", + "theme": "default", + "tooltip": "", + "customClass": "", + "collapsible": false, + "hidden": false, + "hideLabel": true, + "dataGridLabel": false, + "disabled": false, + "modalEdit": false, + "key": "panel1", + "tags": [], + "properties": {}, + "customConditional": "", + "conditional": { + "json": "", + "show": null, + "when": null, + "eq": "" + }, + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "panel", + "label": "Crown Land", + "breadcrumb": "default", + "tabindex": "", + "input": false, + "tableView": false, + "components": [ + { + "key": "cols3", + "type": "columns", + "input": false, + "label": "Columns - 2", + "columns": [ + { + "pull": 0, + "push": 0, + "size": "md", + "width": 6, + "offset": 0, + "components": [ + { + "key": "Section2-LegallyTitled-PID", + "type": "textfield", + "input": true, + "label": "PIN", + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "tableView": true, + "hideOnChildrenHidden": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "e0zxpd" + } + ], + "currentWidth": 6 + }, + { + "pull": 0, + "push": 0, + "size": "md", + "width": 6, + "offset": 0, + "components": [], + "currentWidth": 6 + } + ], + "tableView": false, + "hideOnChildrenHidden": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "hidden": false, + "clearOnHide": false, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "tree": false, + "lazyLoad": false, + "autoAdjust": false, + "id": "eohw9y" + }, + { + "key": "Section2-LegallyTitled-LandDescription", + "type": "textarea", + "input": true, + "label": "Land Description or metes and bounds", + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "", + "minWords": "", + "maxWords": "" + }, + "tableView": true, + "autoExpand": false, + "inputFormat": "plain", + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "rows": 3, + "wysiwyg": false, + "editor": "", + "fixedSize": true, + "id": "e9sdlfc" + } + ], + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "clearOnHide": false, + "refreshOn": "", + "redrawOn": "", + "labelPosition": "top", + "description": "", + "errorLabel": "", + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "tree": false, + "lazyLoad": false, + "id": "e0cqfrg00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" + } + ], + "layoutFixed": false, + "defaultValue": [ + { + "Section2-LegallyTitled-PID": "", + "SiteAddress-UntitledCrown-PIN": "", + "Section2-LegallyTitled-LandDescription": "", + "SiteAddress-UntitledCrown-LandDescription": "" + } + ], + "enableRowGroups": false, + "addAnotherPosition": "bottom", + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "tree": true, + "lazyLoad": false, + "disableAddingRemovingRows": false, + "id": "eg4uvab" + }, + { + "label": "And if available:", + "reorder": false, + "addAnotherPosition": "bottom", + "layoutFixed": false, + "enableRowGroups": false, + "initEmpty": false, + "hideLabel": true, + "tableView": false, + "defaultValue": [ + { + "Section2-UntitledCrown-CrownLandFileNumbers": "", + "SiteAddress-UntitledCrown-CrownLandFileNumbers": "" + } + ], + "key": "Section2-UntitledCrownLand-FileNumberColumn", + "type": "datagrid", + "input": true, + "components": [ + { + "key": "Section2-UntitledCrown-CrownLandFileNumbers", + "type": "textfield", + "input": true, + "label": "Crown Land File Numbers", + "tableView": true, + "id": "elizdoh00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false + } + ], + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "tree": true, + "lazyLoad": false, + "disableAddingRemovingRows": false, + "id": "eeq9myk" + } + ], + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "clearOnHide": false, + "refreshOn": "", + "redrawOn": "", + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "tree": false, + "lazyLoad": false, + "id": "eids8qa" + }, + { + "title": "For untitled municipal land (Source Site)", + "theme": "default", + "tooltip": "", + "customClass": "", + "collapsible": false, + "hidden": false, + "hideLabel": false, + "disabled": false, + "modalEdit": false, + "key": "Section2-forUntitledCrownLand1", + "tags": [], + "properties": {}, + "customConditional": "", + "conditional": { + "json": "", + "show": true, + "when": "landOwnershipSourceSitePleaseSelectAllThatApply", + "eq": "untitledMunicipal" + }, + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "panel", + "label": "", + "breadcrumb": "default", + "tabindex": "", + "input": false, + "collapsed": false, + "tableView": false, + "components": [ + { + "key": "Section2-LegallyTitled-LandDescription", + "type": "textarea", + "input": true, + "label": "Land Description", + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "", + "minWords": "", + "maxWords": "" + }, + "tableView": true, + "autoExpand": false, + "inputFormat": "plain", + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "rows": 3, + "wysiwyg": false, + "editor": "", + "fixedSize": true, + "id": "eggg59w" + } + ], + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "clearOnHide": false, + "refreshOn": "", + "redrawOn": "", + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "tree": false, + "lazyLoad": false, + "id": "e8g7fan" + } + ], + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "clearOnHide": false, + "refreshOn": "", + "redrawOn": "", + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "tree": false, + "lazyLoad": false, + "id": "eqif3zi" + }, + { + "title": "Offsite Impacted Properties", + "theme": "default", + "tooltip": "", + "customClass": "", + "collapsible": false, + "hidden": false, + "hideLabel": false, + "disabled": false, + "modalEdit": false, + "key": "offsiteImpactedProperties1", + "tags": [], + "properties": {}, + "customConditional": "", + "conditional": { + "json": "", + "show": null, + "when": null, + "eq": "" + }, + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "panel", + "label": "Panel", + "breadcrumb": "default", + "tabindex": "", + "input": false, + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "clearOnHide": false, + "refreshOn": "", + "redrawOn": "", + "tableView": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "tree": false, + "lazyLoad": false, + "components": [ + { + "label": "Select one:", + "labelPosition": "top", + "optionsLabelPosition": "right", + "description": "", + "tooltip": "", + "customClass": "", + "tabindex": "", + "inline": false, + "hidden": false, + "hideLabel": false, + "autofocus": false, + "disabled": false, + "tableView": false, + "modalEdit": false, + "values": [ + { + "label": "Offsite impacted property(ies) - Provide information for each", + "value": "offsiteImpactedProperty", + "shortcut": "" + }, + { + "label": "Not Applicable", + "value": "notApplicable", + "shortcut": "" + } + ], + "dataType": "", + "persistent": true, + "protected": false, + "dbIndex": false, + "encrypted": false, + "redrawOn": "", + "clearOnHide": true, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "allowCalculateOverride": false, + "validate": { + "required": false, + "onlyAvailableItems": false, + "customMessage": "", + "custom": "", + "customPrivate": false, + "json": "", + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "errorLabel": "", + "errors": "", + "key": "offsiteImpactedProperties", + "tags": [], + "properties": {}, + "conditional": { + "show": null, + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "radio", + "input": true, + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "unique": false, + "refreshOn": "", + "dataGridLabel": false, + "widget": null, + "validateOn": "change", + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "inputType": "radio", + "fieldSet": false, + "id": "eeowt5", + "defaultValue": "" + }, + { + "label": "", + "reorder": false, + "addAnotherPosition": "bottom", + "layoutFixed": false, + "enableRowGroups": false, + "initEmpty": false, + "hideLabel": true, + "tableView": false, + "defaultValue": [ + {} + ], + "key": "dataGrid1", + "conditional": { + "show": true, + "when": "offsiteImpactedProperties", + "eq": "offsiteImpactedProperty" + }, + "type": "datagrid", + "input": true, + "components": [ + { + "title": "Coordinates for the centre of the impacted site", + "collapsible": false, + "key": "Section2-forUntitledCrownLand2", + "conditional": { + "show": true, + "when": "offsiteImpactedProperties", + "eq": "offsiteImpactedProperty" + }, + "type": "panel", + "label": "Impacted Sites", + "input": false, + "collapsed": false, + "tableView": false, + "components": [ + { + "key": "heading8", + "tag": "h4", + "type": "htmlelement", + "input": false, + "label": "Heading", + "content": "Latitude", + "tableView": false, + "headingSize": "h1", + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "attrs": [], + "id": "e2ug45e" + }, + { + "key": "Section2-LatitudeColumn2", + "type": "columns", + "input": false, + "label": "Columns - 3", + "columns": [ + { + "pull": 0, + "push": 0, + "size": "md", + "width": 4, + "offset": 0, + "components": [ + { + "key": "section2LatitudeDegrees2", + "type": "textfield", + "input": true, + "label": "Degrees", + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "tableView": false, + "hideOnChildrenHidden": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "ey5x9g8" + } + ], + "currentWidth": 4 + }, + { + "pull": 0, + "push": 0, + "size": "md", + "width": 4, + "offset": 0, + "components": [ + { + "key": "section2LatitudeMinutes2", + "type": "textfield", + "input": true, + "label": "Minutes", + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "tableView": false, + "hideOnChildrenHidden": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "e1ftky" + } + ], + "currentWidth": 4 + }, + { + "pull": 0, + "push": 0, + "size": "md", + "width": 4, + "offset": 0, + "components": [ + { + "key": "section2LatitudeSeconds2", + "type": "textfield", + "input": true, + "label": "Seconds", + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "tableView": false, + "hideOnChildrenHidden": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "e4whd08" + } + ], + "currentWidth": 4 + } + ], + "tableView": false, + "hideOnChildrenHidden": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "hidden": false, + "clearOnHide": false, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "tree": false, + "lazyLoad": false, + "autoAdjust": false, + "id": "el90wzy" + }, + { + "key": "heading9", + "tag": "h4", + "type": "htmlelement", + "input": false, + "label": "Heading", + "content": "Longitude", + "tableView": false, + "headingSize": "h1", + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "attrs": [], + "id": "ex8n8vc" + }, + { + "key": "Section2-LongitudeColumn2", + "type": "columns", + "input": false, + "label": "Columns - 3", + "columns": [ + { + "pull": 0, + "push": 0, + "size": "md", + "width": 4, + "offset": 0, + "components": [ + { + "key": "section2LongitudeDegrees2", + "type": "textfield", + "input": true, + "label": "Degrees", + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "tableView": false, + "hideOnChildrenHidden": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "eayewmr" + } + ], + "currentWidth": 4 + }, + { + "pull": 0, + "push": 0, + "size": "md", + "width": 4, + "offset": 0, + "components": [ + { + "key": "section2LongitudeMinutes2", + "type": "textfield", + "input": true, + "label": "Minutes", + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "tableView": false, + "hideOnChildrenHidden": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "eg5a19" + } + ], + "currentWidth": 4 + }, + { + "pull": 0, + "push": 0, + "size": "md", + "width": 4, + "offset": 0, + "components": [ + { + "key": "section2LongitudeSeconds2", + "type": "textfield", + "input": true, + "label": "Seconds", + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "tableView": false, + "hideOnChildrenHidden": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "evt9aao" + } + ], + "currentWidth": 4 + } + ], + "tableView": false, + "hideOnChildrenHidden": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "hidden": false, + "clearOnHide": false, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "tree": false, + "lazyLoad": false, + "autoAdjust": false, + "id": "e6o3au0o" + } + ], + "id": "erlwlrl000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "hidden": false, + "clearOnHide": false, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "tree": false, + "lazyLoad": false, + "theme": "default", + "breadcrumb": "default" + } + ], + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "tree": true, + "lazyLoad": false, + "disableAddingRemovingRows": false, + "id": "eef218" + }, + { + "html": "

Attention:

", + "label": "Content", + "customClass": "", + "refreshOnChange": false, + "hidden": false, + "modalEdit": false, + "key": "content1", + "tags": [], + "properties": {}, + "conditional": { + "show": null, + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "content", + "input": false, + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "tableView": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "id": "edgwhqh" + }, + { + "label": "Include land title record, where applicable", + "labelPosition": "top", + "optionsLabelPosition": "right", + "description": "", + "tooltip": "", + "customClass": "", + "tabindex": "", + "inline": false, + "hidden": false, + "hideLabel": false, + "autofocus": false, + "disabled": false, + "tableView": false, + "modalEdit": false, + "values": [ + { + "label": "I understand and will include a land title record with my submission", + "value": "hasTitleRecord", + "shortcut": "" + }, + { + "label": "Land title record not available", + "value": "noTitleRecord", + "shortcut": "" + } + ], + "dataType": "", + "persistent": true, + "protected": false, + "dbIndex": false, + "encrypted": false, + "redrawOn": "", + "clearOnHide": true, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "allowCalculateOverride": false, + "validate": { + "required": false, + "onlyAvailableItems": false, + "customMessage": "", + "custom": "", + "customPrivate": false, + "json": "", + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "errorLabel": "", + "errors": "", + "key": "includeLandTitleRecordWhereApplicable", + "tags": [], + "properties": {}, + "conditional": { + "show": null, + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "radio", + "input": true, + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "unique": false, + "refreshOn": "", + "dataGridLabel": false, + "widget": null, + "validateOn": "change", + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "inputType": "radio", + "fieldSet": false, + "id": "eluvwrd", + "defaultValue": "" + }, + { + "label": "Land ownership (Impacted Property or Receiving Site) Please select all that apply:", + "optionsLabelPosition": "right", + "tableView": false, + "values": [ + { + "label": "Legally Titled, Registered Property", + "value": "legallyTitled", + "shortcut": "" + }, + { + "label": "Untitled Crown Land", + "value": "untitledCrown", + "shortcut": "" + }, + { + "label": "Untitled Municipal Land", + "value": "untitledMunicipal", + "shortcut": "" + } + ], + "key": "landOwnershipImpactedPropertyPleaseSelectAllThatApply", + "type": "selectboxes", + "input": true, + "inputType": "checkbox", + "defaultValue": { + "legallyTitled": false, + "untitledCrown": false, + "untitledMunicipal": false + }, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "onlyAvailableItems": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "fieldSet": false, + "inline": false, + "id": "ebvkqdh" + }, + { + "title": "For Legally Titled, Registered Property (Impacted Property)", + "theme": "default", + "tooltip": "", + "customClass": "", + "collapsible": false, + "hidden": false, + "hideLabel": false, + "disabled": false, + "modalEdit": false, + "key": "forLegallyTitledRegisteredProperty-panel1", + "tags": [], + "properties": {}, + "customConditional": "", + "conditional": { + "json": "", + "show": true, + "when": "landOwnershipImpactedPropertyPleaseSelectAllThatApply", + "eq": "legallyTitled" + }, + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "panel", + "label": "", + "breadcrumb": "default", + "tabindex": "", + "input": false, + "collapsed": false, + "tableView": false, + "components": [ + { + "key": "Section2-LegallyTitled-Address1", + "type": "textfield", + "input": true, + "label": "Site Address", + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "tableView": false, + "placeholder": "or nearest street name/intersection if no address is assigned", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "epwcnl" + }, + { + "key": "Section2-LegallyTitled-AddressColumn1", + "type": "columns", + "input": false, + "label": "Columns - 2", + "columns": [ + { + "pull": 0, + "push": 0, + "size": "md", + "width": 6, + "offset": 0, + "components": [ + { + "key": "Section2-LegallyTitled-City1", + "type": "textfield", + "input": true, + "label": "City", + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "tableView": false, + "hideOnChildrenHidden": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "e6ii8s" + } + ], + "currentWidth": 6 + }, + { + "pull": 0, + "push": 0, + "size": "md", + "width": 6, + "offset": 0, + "components": [ + { + "key": "Section2-LegallyTitled-PostalZipCode1", + "type": "textfield", + "input": true, + "label": "Postal Code", + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "tableView": false, + "hideOnChildrenHidden": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "erie2w" + } + ], + "currentWidth": 6 + } + ], + "tableView": false, + "hideOnChildrenHidden": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "hidden": false, + "clearOnHide": false, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "tree": false, + "lazyLoad": false, + "autoAdjust": false, + "id": "e5j0jj4" + }, + { + "label": "Enter PIDs and Land Descriptions below", + "tooltip": "Select the 'X' button to delete an entry.", + "reorder": false, + "addAnotherPosition": "bottom", + "layoutFixed": false, + "enableRowGroups": false, + "initEmpty": false, + "hideLabel": true, + "tableView": false, + "defaultValue": [ + { + "Section2-LegallyTitled-PID": "", + "SiteAddress-LegallyTitled-PID": "", + "Section2-LegallyTitled-LandDescription": "", + "SiteAddress-LegallyTitled-LandDescription": "" + } + ], + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "key": "Section2-LegallyTitled-PIDColumn1", + "type": "datagrid", + "input": true, + "components": [ + { + "title": "Entries", + "collapsible": false, + "hideLabel": true, + "key": "panel1", + "type": "panel", + "label": "Panel", + "input": false, + "tableView": false, + "components": [ + { + "key": "cols3", + "type": "columns", + "input": false, + "label": "Columns - 2", + "columns": [ + { + "pull": 0, + "push": 0, + "size": "md", + "width": 6, + "offset": 0, + "components": [ + { + "key": "Section2-LegallyTitled-PID", + "type": "textfield", + "input": true, + "label": "PID", + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "inputMask": "999-999-999", + "tableView": true, + "hideOnChildrenHidden": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "e35yp8o" + } + ], + "currentWidth": 6 + }, + { + "pull": 0, + "push": 0, + "size": "md", + "width": 6, + "offset": 0, + "components": [], + "currentWidth": 6 + } + ], + "tableView": false, + "hideOnChildrenHidden": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "hidden": false, + "clearOnHide": false, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "tree": false, + "lazyLoad": false, + "autoAdjust": false, + "id": "edxz0kc" + }, + { + "key": "Section2-LegallyTitled-LandDescription", + "type": "textarea", + "input": true, + "label": "Land Description", + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "", + "minWords": "", + "maxWords": "" + }, + "tableView": true, + "autoExpand": false, + "inputFormat": "plain", + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "rows": 3, + "wysiwyg": false, + "editor": "", + "fixedSize": true, + "id": "eg4rrls" + } + ], + "id": "ehjtgz0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "hidden": false, + "clearOnHide": false, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "tree": false, + "lazyLoad": false, + "theme": "default", + "breadcrumb": "default" + } + ], + "hideOnChildrenHidden": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "tree": true, + "lazyLoad": false, + "disableAddingRemovingRows": false, + "id": "edwqg5s" + } + ], + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "clearOnHide": false, + "refreshOn": "", + "redrawOn": "", + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "tree": false, + "lazyLoad": false, + "id": "eljmet" + }, + { + "title": "For Untitled Crown Land (Impacted Property)", + "theme": "default", + "tooltip": "", + "customClass": "", + "collapsible": false, + "hidden": false, + "hideLabel": false, + "disabled": false, + "modalEdit": false, + "key": "Section2-forUntitledCrownLand2", + "tags": [], + "properties": {}, + "customConditional": "", + "conditional": { + "json": "", + "show": true, + "when": "landOwnershipImpactedPropertyPleaseSelectAllThatApply", + "eq": "untitledCrown" + }, + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "panel", + "label": "", + "breadcrumb": "default", + "tabindex": "", + "input": false, + "collapsed": false, + "tableView": false, + "components": [ + { + "label": "Crown Land Entries", + "labelPosition": "top", + "description": "", + "tooltip": "", + "disableAddingRemovingRows": false, + "conditionalAddButton": "", + "reorder": false, + "addAnother": "", + "addAnotherPosition": "bottom", + "layoutFixed": false, + "enableRowGroups": false, + "initEmpty": false, + "customClass": "", + "tabindex": "", + "hidden": false, + "hideLabel": true, + "autofocus": false, + "disabled": false, + "tableView": false, + "modalEdit": false, + "defaultValue": [ + { + "Section2-LegallyTitled-PID": "", + "SiteAddress-UntitledCrown-PIN": "", + "Section2-LegallyTitled-LandDescription": "", + "SiteAddress-UntitledCrown-LandDescription": "" + } + ], + "persistent": true, + "protected": false, + "dbIndex": false, + "encrypted": false, + "redrawOn": "", + "clearOnHide": true, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "allowCalculateOverride": false, + "validateOn": "change", + "validate": { + "required": false, + "minLength": "", + "maxLength": "", + "customMessage": "", + "custom": "", + "customPrivate": false, + "json": "", + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "errorLabel": "", + "errors": "", + "key": "Section2-UntitledCrown-PINColumn1", + "tags": [], + "properties": {}, + "conditional": { + "show": null, + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "datagrid", + "input": true, + "components": [ + { + "title": "Crown Land", + "theme": "default", + "tooltip": "", + "customClass": "", + "collapsible": false, + "hidden": false, + "hideLabel": true, + "dataGridLabel": false, + "disabled": false, + "modalEdit": false, + "key": "panel1", + "tags": [], + "properties": {}, + "customConditional": "", + "conditional": { + "json": "", + "show": null, + "when": null, + "eq": "" + }, + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "panel", + "label": "", + "breadcrumb": "default", + "tabindex": "", + "input": false, + "tableView": false, + "components": [ + { + "key": "cols3", + "type": "columns", + "input": false, + "label": "Columns - 2", + "columns": [ + { + "pull": 0, + "push": 0, + "size": "md", + "width": 6, + "offset": 0, + "components": [ + { + "label": "PIN", + "tableView": true, + "key": "Section2-LegallyTitled-PID", + "type": "textfield", + "input": true, + "hideOnChildrenHidden": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "e6g3hkp" + } + ], + "currentWidth": 6 + }, + { + "pull": 0, + "push": 0, + "size": "md", + "width": 6, + "offset": 0, + "components": [], + "currentWidth": 6 + } + ], + "tableView": false, + "hideOnChildrenHidden": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "hidden": false, + "clearOnHide": false, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "tree": false, + "lazyLoad": false, + "autoAdjust": false, + "id": "eqa4hvn" + }, + { + "label": "Land Description or metes and bounds", + "autoExpand": false, + "tableView": true, + "inputFormat": "plain", + "key": "Section2-LegallyTitled-LandDescription", + "type": "textarea", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "", + "minWords": "", + "maxWords": "" + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "rows": 3, + "wysiwyg": false, + "editor": "", + "fixedSize": true, + "id": "esiwlom" + } + ], + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "clearOnHide": false, + "refreshOn": "", + "redrawOn": "", + "labelPosition": "top", + "description": "", + "errorLabel": "", + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "tree": false, + "lazyLoad": false, + "id": "emjblk60000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" + } + ], + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "unique": false, + "refreshOn": "", + "dataGridLabel": false, + "widget": null, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "tree": true, + "lazyLoad": false, + "id": "ecdu066" + }, + { + "label": "And if available:", + "reorder": false, + "addAnotherPosition": "bottom", + "layoutFixed": false, + "enableRowGroups": false, + "initEmpty": false, + "hideLabel": true, + "tableView": false, + "defaultValue": [ + { + "Section2-UntitledCrown-CrownLandFileNumbers": "", + "SiteAddress-UntitledCrown-CrownLandFileNumbers": "" + } + ], + "key": "Section2-UntitledCrownLand-FileNumberColumn1", + "type": "datagrid", + "input": true, + "components": [ + { + "key": "Section2-UntitledCrown-CrownLandFileNumbers", + "type": "textfield", + "input": true, + "label": "Crown Land File Numbers", + "tableView": true, + "id": "eh8kmqu00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false + } + ], + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "tree": true, + "lazyLoad": false, + "disableAddingRemovingRows": false, + "id": "ebjum0p" + } + ], + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "clearOnHide": false, + "refreshOn": "", + "redrawOn": "", + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "tree": false, + "lazyLoad": false, + "id": "e6t7knc" + }, + { + "title": "For untitled municipal land (Impacted Property)", + "theme": "default", + "tooltip": "", + "customClass": "", + "collapsible": false, + "hidden": false, + "hideLabel": false, + "disabled": false, + "modalEdit": false, + "key": "Section2-forUntitledCrownLand3", + "tags": [], + "properties": {}, + "customConditional": "", + "conditional": { + "json": "", + "show": true, + "when": "landOwnershipImpactedPropertyPleaseSelectAllThatApply", + "eq": "untitledMunicipal" + }, + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "panel", + "label": "", + "breadcrumb": "default", + "tabindex": "", + "input": false, + "collapsed": false, + "tableView": false, + "components": [ + { + "key": "Section2-LegallyTitled-LandDescription1", + "type": "textarea", + "input": true, + "label": "Land Description", + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "", + "minWords": "", + "maxWords": "" + }, + "tableView": true, + "autoExpand": false, + "inputFormat": "plain", + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "rows": 3, + "wysiwyg": false, + "editor": "", + "fixedSize": true, + "id": "eze39c" + } + ], + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "clearOnHide": false, + "refreshOn": "", + "redrawOn": "", + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "tree": false, + "lazyLoad": false, + "id": "ewwn6y8" + } + ], + "id": "e8qmdma" + }, + { + "html": "

Part 3 - Document Summary

 

", + "label": "Content", + "customClass": "", + "refreshOnChange": false, + "hidden": false, + "modalEdit": false, + "key": "content5", + "tags": [], + "properties": {}, + "conditional": { + "show": null, + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "content", + "input": false, + "tableView": false, + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "id": "ewlel6g" + }, + { + "title": "", + "theme": "default", + "tooltip": "", + "customClass": "", + "collapsible": false, + "hidden": false, + "hideLabel": false, + "disabled": false, + "modalEdit": false, + "key": "panel8", + "tags": [], + "properties": {}, + "customConditional": "", + "conditional": { + "json": "", + "show": null, + "when": null, + "eq": "" + }, + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "panel", + "label": "Panel", + "breadcrumb": "default", + "tabindex": "", + "input": false, + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "clearOnHide": false, + "refreshOn": "", + "redrawOn": "", + "tableView": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "tree": false, + "lazyLoad": false, + "components": [ + { + "html": "

List all known site investigation, risk assessment (including screening level risk assessment), remediation plan and confirmation of remediation reports comleted and directly supporting correspondence submitted (for source site and offsite impacted sites). 

List documents in order from newest to oldest.

", + "label": "Content", + "customClass": "", + "refreshOnChange": false, + "hidden": false, + "modalEdit": false, + "key": "content8", + "tags": [], + "properties": {}, + "conditional": { + "show": null, + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "content", + "input": false, + "tableView": false, + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "id": "eevyl1r" + }, + { + "label": "", + "reorder": false, + "addAnotherPosition": "bottom", + "layoutFixed": false, + "enableRowGroups": false, + "initEmpty": false, + "hideLabel": true, + "tableView": false, + "defaultValue": [ + { + "document": "", + "documentTitle": "", + "authorCompany": "", + "documentDate": "00/00/0000" + } + ], + "key": "dataGrid2", + "type": "datagrid", + "input": true, + "components": [ + { + "title": "Document", + "collapsible": false, + "key": "documents", + "type": "panel", + "label": "Documents", + "input": false, + "tableView": false, + "components": [ + { + "label": "Document #:", + "tableView": true, + "key": "document", + "type": "textfield", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "e0ufs5o" + }, + { + "label": "Document Title", + "tableView": true, + "key": "documentTitle", + "type": "textfield", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "e839axn" + }, + { + "label": "Author/Company", + "tableView": true, + "key": "authorCompany", + "type": "textfield", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "eum71oo" + }, + { + "label": "Document Date", + "hideInputLabels": false, + "inputsLabelPosition": "top", + "useLocaleSettings": false, + "tableView": false, + "fields": { + "day": { + "hide": false, + "type": "number", + "placeholder": "", + "required": false + }, + "month": { + "hide": false, + "type": "select", + "placeholder": "", + "required": false + }, + "year": { + "hide": false, + "type": "number", + "placeholder": "", + "required": false + } + }, + "key": "documentDate", + "type": "day", + "input": true, + "defaultValue": "00/00/0000", + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "dayFirst": false, + "id": "egqqs34" + } + ], + "id": "e80y9k8000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "hidden": false, + "clearOnHide": false, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "tree": false, + "lazyLoad": false, + "theme": "default", + "breadcrumb": "default" + } + ], + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "tree": true, + "lazyLoad": false, + "disableAddingRemovingRows": false, + "id": "e1pcqd3" + } + ], + "id": "euq4ro" + }, + { + "html": "

Part 4 - Investigation Summary

 

", + "label": "Content", + "customClass": "", + "refreshOnChange": false, + "hidden": false, + "modalEdit": false, + "key": "content6", + "tags": [], + "properties": {}, + "conditional": { + "show": null, + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "content", + "input": false, + "tableView": false, + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "id": "e08pdh" + }, + { + "label": "Has an Approval in Principal (AiP) been issued for this site?", + "labelPosition": "top", + "optionsLabelPosition": "right", + "description": "", + "tooltip": "", + "customClass": "", + "tabindex": "", + "inline": false, + "hidden": false, + "hideLabel": false, + "autofocus": false, + "disabled": false, + "tableView": false, + "modalEdit": false, + "values": [ + { + "label": "Yes", + "value": "true", + "shortcut": "" + }, + { + "label": "No", + "value": "false", + "shortcut": "" + } + ], + "dataType": "", + "persistent": true, + "protected": false, + "dbIndex": false, + "encrypted": false, + "redrawOn": "", + "clearOnHide": true, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "allowCalculateOverride": false, + "validate": { + "required": false, + "onlyAvailableItems": false, + "customMessage": "", + "custom": "", + "customPrivate": false, + "json": "", + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "errorLabel": "", + "errors": "", + "key": "hasAnApprovalInPrincipalAiPBeenIssuedForThisSite", + "tags": [], + "properties": {}, + "conditional": { + "show": null, + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "radio", + "input": true, + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "unique": false, + "refreshOn": "", + "dataGridLabel": false, + "widget": null, + "validateOn": "change", + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "inputType": "radio", + "fieldSet": false, + "id": "etgpg9", + "defaultValue": "" + }, + { + "html": "

If an Approval in Principle (AIP) has been issued and this SoSC form is being submitted as part of a Certificate of Compliance, you do not need to complete PART 4.

If an AiP has not been issued, or if other circumstances require completion of section 4, please complete PARTS 4.1 to 4.8 below where indicated.

 

", + "label": "Content", + "customClass": "", + "refreshOnChange": false, + "hidden": false, + "modalEdit": false, + "key": "content7", + "tags": [], + "properties": {}, + "conditional": { + "show": null, + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "content", + "input": false, + "tableView": false, + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "id": "e4z1cma" + }, + { + "title": "SECTION I - Investigations Completed", + "collapsible": false, + "key": "sectionIInvestigationsCompleted", + "conditional": { + "show": true, + "when": "hasAnApprovalInPrincipalAiPBeenIssuedForThisSite", + "eq": "false" + }, + "type": "panel", + "label": "Panel", + "input": false, + "tableView": false, + "components": [ + { + "title": "", + "collapsible": false, + "key": "panel2", + "type": "panel", + "label": "Panel", + "input": false, + "tableView": false, + "components": [ + { + "html": "

Stage 1 PSI

", + "label": "Content", + "refreshOnChange": false, + "key": "content9", + "type": "content", + "input": false, + "tableView": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "id": "e3pl2xr" + }, + { + "label": "Completed? ", + "optionsLabelPosition": "right", + "inline": false, + "tableView": false, + "values": [ + { + "label": "Yes", + "value": "yes", + "shortcut": "" + }, + { + "label": "No", + "value": "no", + "shortcut": "" + }, + { + "label": "N/A", + "value": "nA", + "shortcut": "" + } + ], + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "onlyAvailableItems": false + }, + "key": "completed", + "type": "radio", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "inputType": "radio", + "fieldSet": false, + "id": "e5mdhfh" + }, + { + "label": "Includes Stage 1 PSI information as listed in CSR Section 58 and any current applicable ministry protocols, guidelines, checklists, etc.?", + "optionsLabelPosition": "right", + "inline": false, + "tableView": false, + "values": [ + { + "label": "Yes", + "value": "yes", + "shortcut": "" + }, + { + "label": "No", + "value": "no", + "shortcut": "" + }, + { + "label": "N/A", + "value": "nA", + "shortcut": "" + } + ], + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "onlyAvailableItems": false + }, + "key": "includesStage1PsiInformationAsListedInCsrSection58AndAnyCurrentApplicableMinistryProtocolsGuidelinesChecklistsEtc", + "type": "radio", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "inputType": "radio", + "fieldSet": false, + "id": "eaori8x" + }, + { + "html": "

Stage 2 PSI

", + "label": "Content", + "refreshOnChange": false, + "key": "content10", + "type": "content", + "input": false, + "tableView": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "id": "epv4kl" + }, + { + "label": "Completed? ", + "optionsLabelPosition": "right", + "inline": false, + "tableView": false, + "values": [ + { + "label": "Yes", + "value": "yes", + "shortcut": "" + }, + { + "label": "No", + "value": "no", + "shortcut": "" + }, + { + "label": "N/A", + "value": "nA", + "shortcut": "" + } + ], + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "onlyAvailableItems": false + }, + "key": "completed1", + "type": "radio", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "inputType": "radio", + "fieldSet": false, + "id": "evp0dxp" + }, + { + "label": "Includes Stage 2 PSI information as listed in CSR Section 59 and any current applicable ministry protocols, guidelines, checklists, etc.?", + "optionsLabelPosition": "right", + "inline": false, + "tableView": false, + "values": [ + { + "label": "Yes", + "value": "yes", + "shortcut": "" + }, + { + "label": "No", + "value": "no", + "shortcut": "" + }, + { + "label": "N/A", + "value": "nA", + "shortcut": "" + } + ], + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "onlyAvailableItems": false + }, + "key": "includesStage1PsiInformationAsListedInCsrSection58AndAnyCurrentApplicableMinistryProtocolsGuidelinesChecklistsEtc1", + "type": "radio", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "inputType": "radio", + "fieldSet": false, + "id": "ep82c5k" + }, + { + "html": "

DSI

", + "label": "Content", + "refreshOnChange": false, + "key": "content11", + "type": "content", + "input": false, + "tableView": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "id": "era84nd" + }, + { + "label": "Completed? ", + "optionsLabelPosition": "right", + "inline": false, + "tableView": false, + "values": [ + { + "label": "Yes", + "value": "yes", + "shortcut": "" + }, + { + "label": "No", + "value": "no", + "shortcut": "" + }, + { + "label": "N/A", + "value": "nA", + "shortcut": "" + } + ], + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "onlyAvailableItems": false + }, + "key": "completed2", + "type": "radio", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "inputType": "radio", + "fieldSet": false, + "id": "e1o53pv" + }, + { + "label": "Includes DSI information as listed in CSR Section 59 and any current applicable ministry protocols, guidelines, checklists, etc.?", + "optionsLabelPosition": "right", + "inline": false, + "tableView": false, + "values": [ + { + "label": "Yes", + "value": "yes", + "shortcut": "" + }, + { + "label": "No", + "value": "no", + "shortcut": "" + }, + { + "label": "N/A", + "value": "nA", + "shortcut": "" + } + ], + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "onlyAvailableItems": false + }, + "key": "includesStage1PsiInformationAsListedInCsrSection58AndAnyCurrentApplicableMinistryProtocolsGuidelinesChecklistsEtc2", + "type": "radio", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "inputType": "radio", + "fieldSet": false, + "id": "eaetjce" + }, + { + "html": "

Other Reports

", + "label": "Content", + "refreshOnChange": false, + "key": "content12", + "type": "content", + "input": false, + "tableView": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "id": "e54l6dg" + }, + { + "label": "Completed? ", + "optionsLabelPosition": "right", + "inline": false, + "tableView": false, + "values": [ + { + "label": "Yes", + "value": "yes", + "shortcut": "" + }, + { + "label": "No", + "value": "no", + "shortcut": "" + }, + { + "label": "N/A", + "value": "nA", + "shortcut": "" + } + ], + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "onlyAvailableItems": false + }, + "key": "completed3", + "type": "radio", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "inputType": "radio", + "fieldSet": false, + "id": "enqzxx" + }, + { + "label": "According to other guidelines? (Provide explanation in notes below. Indicate how reports assist understanding of conditions and remediation.)", + "optionsLabelPosition": "right", + "inline": false, + "tableView": false, + "values": [ + { + "label": "Yes", + "value": "yes", + "shortcut": "" + }, + { + "label": "No", + "value": "no", + "shortcut": "" + }, + { + "label": "N/A", + "value": "nA", + "shortcut": "" + } + ], + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "onlyAvailableItems": false + }, + "key": "includesStage1PsiInformationAsListedInCsrSection58AndAnyCurrentApplicableMinistryProtocolsGuidelinesChecklistsEtc3", + "type": "radio", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "inputType": "radio", + "fieldSet": false, + "id": "epuetea" + }, + { + "label": "Notes", + "tableView": true, + "key": "notes", + "type": "textfield", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "e40v61c" + } + ], + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "hidden": false, + "clearOnHide": false, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "tree": false, + "lazyLoad": false, + "theme": "default", + "breadcrumb": "default", + "id": "e5czdm" + }, + { + "html": "

If completed investigation reports are not adequate or if reports are titled differently or have a different scope than those listed above in accordance with the Contaminated Sites Regulation (i.e. PSI, DSI), complete Section 4.8 (Investigation or Interpretation Issues)

", + "label": "Content", + "refreshOnChange": false, + "key": "content66", + "type": "content", + "input": false, + "tableView": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "id": "eckn0k" + } + ], + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "hidden": false, + "clearOnHide": false, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "tree": false, + "lazyLoad": false, + "theme": "default", + "breadcrumb": "default", + "id": "eqjsu9p" + }, + { + "title": "SECTION II - Site Conditions", + "collapsible": false, + "key": "sectionIiSiteConditions", + "conditional": { + "show": true, + "when": "hasAnApprovalInPrincipalAiPBeenIssuedForThisSite", + "eq": "false" + }, + "type": "panel", + "label": "Panel", + "input": false, + "tableView": false, + "components": [ + { + "label": "Topography", + "description": "Describe steepness, direction of slope and position of site in relation to surrounding land", + "autoExpand": false, + "tableView": true, + "key": "topography", + "type": "textarea", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "", + "minWords": "", + "maxWords": "" + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "html", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "rows": 3, + "wysiwyg": false, + "editor": "", + "fixedSize": true, + "id": "ehhl80m" + }, + { + "label": "Stratigraphy", + "description": "Describe depth and thickness, grain size, etc. of typical stratigraphic components and note depth to cemented or very compact materials, bedrock / refusal, etc.", + "autoExpand": false, + "tableView": true, + "key": "stratigraphy", + "type": "textarea", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "", + "minWords": "", + "maxWords": "" + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "html", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "rows": 3, + "wysiwyg": false, + "editor": "", + "fixedSize": true, + "id": "etftfyg" + }, + { + "label": "Hydrogeology", + "description": "Describe groundwater levels, confining / semi-confining layers, flow velocity and hydraulic conductivity. Provide arguments and supporting data to show compliance with Protocol 21 \"Water Use Determination\" where a specified groundwater use (DW, AW, IW or LW) has been determined not to apply. Provide explicit statements and description for every geological unit where an exemption from a specified water use is proposed to apply (add additional pages if necessary).", + "autoExpand": false, + "tableView": true, + "key": "hydrogeology", + "type": "textarea", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "", + "minWords": "", + "maxWords": "" + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "html", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "rows": 3, + "wysiwyg": false, + "editor": "", + "fixedSize": true, + "id": "e2zxth" + }, + { + "label": "Surface water features - freshwater ", + "description": "List name, direction and distance to nearest surface water bodies and the characteristics (e.g., relative size / flow) of the water body", + "autoExpand": false, + "tableView": true, + "key": "surfaceWaterFeaturesFreshwater", + "type": "textarea", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "", + "minWords": "", + "maxWords": "" + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "html", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "rows": 3, + "wysiwyg": false, + "editor": "", + "fixedSize": true, + "id": "eqsdwfv" + }, + { + "label": "Surface water features - marine waters", + "description": "List name, direction and distance to nearest surface water bodies and the characteristics (e.g., relative size / flow) of the water body", + "autoExpand": false, + "tableView": true, + "key": "surfaceWaterFeaturesMarineWaters", + "type": "textarea", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "", + "minWords": "", + "maxWords": "" + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "html", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "rows": 3, + "wysiwyg": false, + "editor": "", + "fixedSize": true, + "id": "exdrjd" + } + ], + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "hidden": false, + "clearOnHide": false, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "tree": false, + "lazyLoad": false, + "theme": "default", + "breadcrumb": "default", + "id": "ejah089" + }, + { + "title": "SECTION III - Land Use", + "collapsible": false, + "key": "sectionIiiLandUse", + "conditional": { + "show": true, + "when": "hasAnApprovalInPrincipalAiPBeenIssuedForThisSite", + "eq": "false" + }, + "type": "panel", + "label": "Panel", + "input": false, + "tableView": false, + "components": [ + { + "html": "

Please indicate land use for each applicable area

", + "label": "Content", + "refreshOnChange": false, + "key": "content14", + "type": "content", + "input": false, + "tableView": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "id": "enxqvoe" + }, + { + "label": "Onsite: Site", + "description": "Description of current land use(s)/activities:", + "autoExpand": false, + "tableView": true, + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "", + "minWords": "", + "maxWords": "" + }, + "key": "onsiteSite", + "type": "textarea", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "html", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "rows": 3, + "wysiwyg": false, + "editor": "", + "fixedSize": true, + "id": "e6rs9wg" + }, + { + "label": "Offsite: North", + "description": "Description of current land use(s)/activities:", + "autoExpand": false, + "tableView": true, + "key": "offsiteNorth", + "type": "textarea", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "", + "minWords": "", + "maxWords": "" + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "html", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "rows": 3, + "wysiwyg": false, + "editor": "", + "fixedSize": true, + "id": "e7l6j3" + }, + { + "label": "Offsite: East", + "description": "Description of current land use(s)/activities:", + "autoExpand": false, + "tableView": true, + "key": "offsiteEast", + "type": "textarea", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "", + "minWords": "", + "maxWords": "" + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "html", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "rows": 3, + "wysiwyg": false, + "editor": "", + "fixedSize": true, + "id": "es0gn0e" + }, + { + "label": "Offsite: South", + "description": "Description of current land use(s)/activities:", + "autoExpand": false, + "tableView": true, + "key": "offsiteSouth", + "type": "textarea", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "", + "minWords": "", + "maxWords": "" + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "html", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "rows": 3, + "wysiwyg": false, + "editor": "", + "fixedSize": true, + "id": "eizhyma" + }, + { + "label": "Offsite: West", + "description": "Description of current land use(s)/activities:", + "autoExpand": false, + "tableView": true, + "key": "offsiteWest", + "type": "textarea", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "", + "minWords": "", + "maxWords": "" + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "html", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "rows": 3, + "wysiwyg": false, + "editor": "", + "fixedSize": true, + "id": "eajh7y" + }, + { + "label": "Proposed land use of site", + "optionsLabelPosition": "right", + "inline": false, + "tableView": false, + "values": [ + { + "label": "Same as above", + "value": "sameAsAbove", + "shortcut": "" + }, + { + "label": "Other", + "value": "other", + "shortcut": "" + } + ], + "key": "proposedLandUseOfSite", + "type": "radio", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "onlyAvailableItems": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "inputType": "radio", + "fieldSet": false, + "id": "ef9c7xv" + }, + { + "label": "Describe:", + "autoExpand": false, + "tableView": true, + "key": "describe", + "conditional": { + "show": true, + "when": "proposedLandUseOfSite", + "eq": "other" + }, + "type": "textarea", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "", + "minWords": "", + "maxWords": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "html", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "rows": 3, + "wysiwyg": false, + "editor": "", + "fixedSize": true, + "id": "enenb" + } + ], + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "hidden": false, + "clearOnHide": false, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "tree": false, + "lazyLoad": false, + "theme": "default", + "breadcrumb": "default", + "id": "ehd14l6" + }, + { + "title": "SECTION IV - Applicable Numerical Standards and Criteria", + "theme": "default", + "tooltip": "", + "customClass": "", + "collapsible": false, + "hidden": false, + "hideLabel": false, + "disabled": false, + "modalEdit": false, + "key": "sectionIvApplicableNumericalStandardsAndCriteria", + "tags": [], + "properties": {}, + "customConditional": "", + "conditional": { + "json": "", + "show": true, + "when": "hasAnApprovalInPrincipalAiPBeenIssuedForThisSite", + "eq": "false" + }, + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "panel", + "label": "Panel", + "breadcrumb": "default", + "tabindex": "", + "input": false, + "tableView": false, + "components": [ + { + "html": "

Soil (CSR Schedule 3.1)

Property - Source Site

", + "label": "Content", + "refreshOnChange": false, + "key": "content15", + "type": "content", + "input": false, + "tableView": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "id": "epzrwqp" + }, + { + "label": "CSR Land Use - Current", + "optionsLabelPosition": "right", + "tableView": false, + "values": [ + { + "label": "Industrial Land Use (IL)", + "value": "industrialLandUseIl", + "shortcut": "" + }, + { + "label": "Commercial Land Use (CL)", + "value": "commercialLandUseCl", + "shortcut": "" + }, + { + "label": "Residential Land Use High Density (RLHD)", + "value": "residentialLandUseHighDensityRlhd", + "shortcut": "" + }, + { + "label": "Residential Land Use Low Density (RLLD)", + "value": "residentialLandUseLowDensityRlld", + "shortcut": "" + }, + { + "label": "Urban Park Land Use (PL)", + "value": "urbanParkLandUsePl", + "shortcut": "" + }, + { + "label": "Agricultural Land Use (AL)", + "value": "agriculturalLandUseAl", + "shortcut": "" + }, + { + "label": "Wildlands Natural Land Use (WLN)", + "value": "wildlandsNaturalLandUseWln", + "shortcut": "" + }, + { + "label": "Wildlands Reverted Land Use (WLR)", + "value": "wildlandsRevertedLandUseWlr", + "shortcut": "" + }, + { + "label": "Other", + "value": "other", + "shortcut": "" + } + ], + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "onlyAvailableItems": false + }, + "key": "csrLandUseCurrent", + "type": "selectboxes", + "input": true, + "inputType": "checkbox", + "defaultValue": { + "industrialLandUseIl": false, + "commercialLandUseCl": false, + "residentialLandUseHighDensityRlhd": false, + "residentialLandUseLowDensityRlld": false, + "urbanParkLandUsePl": false, + "agriculturalLandUseAl": false, + "wildlandsNaturalLandUseWln": false, + "wildlandsRevertedLandUseWlr": false, + "other": false + }, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "fieldSet": false, + "inline": false, + "id": "e24v93" + }, + { + "label": "If 'Other' is specified above, please explain: (e.g. applicable or excluded guidance, protocols or policies specific to the site)", + "autoExpand": false, + "tableView": true, + "key": "ifOtherIsSpecifiedAbovePleaseExplainEGApplicableOrExcludedGuidanceProtocolsOrPoliciesSpecificToTheSite", + "conditional": { + "show": true, + "when": "csrLandUseCurrent", + "eq": "other" + }, + "type": "textarea", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "", + "minWords": "", + "maxWords": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "html", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "rows": 3, + "wysiwyg": false, + "editor": "", + "fixedSize": true, + "id": "e4nly1" + }, + { + "label": "Notes: If 'Other' standards selected above, provide rationale for why a typical standard does not apply:", + "autoExpand": false, + "tableView": true, + "key": "notesIfOtherStandardsSelectedAboveProvideRationaleForWhyATypicalStandardDoesNotApply", + "conditional": { + "show": true, + "when": "csrLandUseCurrent", + "eq": "other" + }, + "type": "textarea", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "", + "minWords": "", + "maxWords": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "html", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "rows": 3, + "wysiwyg": false, + "editor": "", + "fixedSize": true, + "id": "ebde74r" + }, + { + "label": "Have Protocol 2 site-specific standards been applied?", + "optionsLabelPosition": "right", + "inline": false, + "tableView": false, + "values": [ + { + "label": "Yes", + "value": "yes", + "shortcut": "" + }, + { + "label": "No", + "value": "no", + "shortcut": "" + } + ], + "key": "haveProtocol2SiteSpecificStandardsBeenApplied", + "type": "radio", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "onlyAvailableItems": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "inputType": "radio", + "fieldSet": false, + "id": "exwmue8" + }, + { + "label": "Note: If P2 site-specific numerical standards selected above, identify the substance and provide rationale for application of the site-specific numerical standard.", + "autoExpand": false, + "tableView": true, + "key": "noteIfP2SiteSpecificNumericalStandardsSelectedAboveIdentifyTheSubstanceAndProvideRationaleForApplicationOfTheSiteSpecificNumericalStandard", + "type": "textarea", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "", + "minWords": "", + "maxWords": "" + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "html", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "rows": 3, + "wysiwyg": false, + "editor": "", + "fixedSize": true, + "id": "eu2f997" + }, + { + "label": "Have Protocol 4 site-specific standards been applied?", + "optionsLabelPosition": "right", + "inline": false, + "tableView": false, + "values": [ + { + "label": "Yes", + "value": "yes", + "shortcut": "" + }, + { + "label": "No", + "value": "no", + "shortcut": "" + } + ], + "key": "haveProtocol4SiteSpecificStandardsBeenApplied", + "type": "radio", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "onlyAvailableItems": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "inputType": "radio", + "fieldSet": false, + "id": "ea8eabc" + }, + { + "label": "Note: If P4 background selected above, provide rationale for why the background concentration applies.", + "autoExpand": false, + "tableView": true, + "key": "noteIfP4BackgroundSelectedAboveProvideRationaleForWhyTheBackgroundConcentrationApplies", + "type": "textarea", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "", + "minWords": "", + "maxWords": "" + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "html", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "rows": 3, + "wysiwyg": false, + "editor": "", + "fixedSize": true, + "id": "eztiog" + }, + { + "label": "Does more than one land use apply at this site?", + "optionsLabelPosition": "right", + "inline": false, + "tableView": false, + "values": [ + { + "label": "Yes", + "value": "yes", + "shortcut": "" + }, + { + "label": "No", + "value": "no", + "shortcut": "" + } + ], + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "onlyAvailableItems": false + }, + "key": "haveProtocol4SiteSpecificStandardsBeenApplied1", + "type": "radio", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "inputType": "radio", + "fieldSet": false, + "id": "elpsvca" + }, + { + "label": "If more than one land use applies to the site, specify additional land uses covered by the document, i.e., riparian areas, roadways, etc. include a diagram to clearly show the area(s) with different standards.", + "autoExpand": false, + "tableView": true, + "key": "ifMoreThanOneLandUseAppliesToTheSiteSpecifyAdditionalLandUsesCoveredByTheDocumentIERiparianAreasRoadwaysEtcIncludeADiagramToClearlyShowTheAreaSWithDifferentStandards", + "type": "textarea", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "", + "minWords": "", + "maxWords": "" + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "html", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "rows": 3, + "wysiwyg": false, + "editor": "", + "fixedSize": true, + "id": "ekvvcob" + }, + { + "label": "Attention: attach diagram if more than one land use applies", + "tableView": false, + "defaultValue": false, + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "key": "attentionAttachDiagramIfMoreThanOneLandUseApplies", + "type": "checkbox", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": true, + "labelPosition": "right", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "inputType": "checkbox", + "value": "", + "name": "", + "id": "ez43pr" + }, + { + "label": "CSR Land Use - Proposed", + "optionsLabelPosition": "right", + "tableView": false, + "defaultValue": { + "industrialLandUseIl": false, + "commercialLandUseCl": false, + "residentialLandUseHighDensityRlhd": false, + "residentialLandUseLowDensityRlld": false, + "urbanParkLandUsePl": false, + "agriculturalLandUseAl": false, + "wildlandsNaturalLandUseWln": false, + "wildlandsRevertedLandUseWlr": false, + "other": false + }, + "values": [ + { + "label": "Industrial Land Use (IL)", + "value": "industrialLandUseIl", + "shortcut": "" + }, + { + "label": "Commercial Land Use (CL)", + "value": "commercialLandUseCl", + "shortcut": "" + }, + { + "label": "Residential Land Use High Density (RLHD)", + "value": "residentialLandUseHighDensityRlhd", + "shortcut": "" + }, + { + "label": "Residential Land Use Low Density (RLLD)", + "value": "residentialLandUseLowDensityRlld", + "shortcut": "" + }, + { + "label": "Urban Park Land Use (PL)", + "value": "urbanParkLandUsePl", + "shortcut": "" + }, + { + "label": "Agricultural Land Use (AL)", + "value": "agriculturalLandUseAl", + "shortcut": "" + }, + { + "label": "Wildlands Natural Land Use (WLN)", + "value": "wildlandsNaturalLandUseWln", + "shortcut": "" + }, + { + "label": "Wildlands Reverted Land Use (WLR)", + "value": "wildlandsRevertedLandUseWlr", + "shortcut": "" + }, + { + "label": "Other", + "value": "other", + "shortcut": "" + } + ], + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "onlyAvailableItems": false + }, + "key": "csrLandUseProposed", + "type": "selectboxes", + "input": true, + "inputType": "checkbox", + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "fieldSet": false, + "inline": false, + "id": "ehtn49" + }, + { + "label": "If 'Other' is specified above, please explain: (e.g. applicable or excluded guidance, protocols or policies specific to the site)", + "autoExpand": false, + "tableView": true, + "key": "ifOtherIsSpecifiedAbovePleaseExplainEGApplicableOrExcludedGuidanceProtocolsOrPoliciesSpecificToTheSite1", + "conditional": { + "show": true, + "when": "csrLandUseProposed", + "eq": "other" + }, + "type": "textarea", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "", + "minWords": "", + "maxWords": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "html", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "rows": 3, + "wysiwyg": false, + "editor": "", + "fixedSize": true, + "id": "ewle16h" + }, + { + "label": "Notes: If 'Other' standards selected above, provide rationale for why a typical standard does not apply:", + "autoExpand": false, + "tableView": true, + "key": "notesIfOtherStandardsSelectedAboveProvideRationaleForWhyATypicalStandardDoesNotApply1", + "conditional": { + "show": true, + "when": "csrLandUseProposed", + "eq": "other" + }, + "type": "textarea", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "", + "minWords": "", + "maxWords": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "html", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "rows": 3, + "wysiwyg": false, + "editor": "", + "fixedSize": true, + "id": "emkd1y" + }, + { + "label": "Have Protocol 2 site-specific standards been applied?", + "optionsLabelPosition": "right", + "inline": false, + "tableView": false, + "values": [ + { + "label": "Yes", + "value": "yes", + "shortcut": "" + }, + { + "label": "No", + "value": "no", + "shortcut": "" + } + ], + "key": "haveProtocol2SiteSpecificStandardsBeenApplied1", + "type": "radio", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "onlyAvailableItems": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "inputType": "radio", + "fieldSet": false, + "id": "eq1wesd" + }, + { + "label": "Note: If P2 site-specific numerical standards selected above, identify the substance and provide rationale for application of the site-specific numerical standard.", + "autoExpand": false, + "tableView": true, + "key": "noteIfP2SiteSpecificNumericalStandardsSelectedAboveIdentifyTheSubstanceAndProvideRationaleForApplicationOfTheSiteSpecificNumericalStandard1", + "type": "textarea", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "", + "minWords": "", + "maxWords": "" + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "html", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "rows": 3, + "wysiwyg": false, + "editor": "", + "fixedSize": true, + "id": "eo1fmv" + }, + { + "label": "Have Protocol 4 site-specific standards been applied?", + "optionsLabelPosition": "right", + "inline": false, + "tableView": false, + "values": [ + { + "label": "Yes", + "value": "yes", + "shortcut": "" + }, + { + "label": "No", + "value": "no", + "shortcut": "" + } + ], + "key": "haveProtocol4SiteSpecificStandardsBeenApplied2", + "type": "radio", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "onlyAvailableItems": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "inputType": "radio", + "fieldSet": false, + "id": "em04tuv" + }, + { + "label": "Note: If P4 background selected above, provide rationale for why the background concentration applies.", + "autoExpand": false, + "tableView": true, + "key": "noteIfP4BackgroundSelectedAboveProvideRationaleForWhyTheBackgroundConcentrationApplies1", + "type": "textarea", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "", + "minWords": "", + "maxWords": "" + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "html", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "rows": 3, + "wysiwyg": false, + "editor": "", + "fixedSize": true, + "id": "e736awck" + }, + { + "label": "Does more than one land use apply at this site?", + "optionsLabelPosition": "right", + "inline": false, + "tableView": false, + "values": [ + { + "label": "Yes", + "value": "yes", + "shortcut": "" + }, + { + "label": "No", + "value": "no", + "shortcut": "" + } + ], + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "onlyAvailableItems": false + }, + "key": "multipleLandUse", + "type": "radio", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "inputType": "radio", + "fieldSet": false, + "id": "erk6myf" + }, + { + "label": "If more than one land use applies to the site, specify additional land uses covered by the document, i.e., riparian areas, roadways, etc. include a diagram to clearly show the area(s) with different standards.", + "autoExpand": false, + "tableView": true, + "key": "ifMoreThanOneLandUseAppliesToTheSiteSpecifyAdditionalLandUsesCoveredByTheDocumentIERiparianAreasRoadwaysEtcIncludeADiagramToClearlyShowTheAreaSWithDifferentStandards1", + "conditional": { + "show": true, + "when": "multipleLandUse", + "eq": "yes" + }, + "type": "textarea", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "", + "minWords": "", + "maxWords": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "html", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "rows": 3, + "wysiwyg": false, + "editor": "", + "fixedSize": true, + "id": "e339galn" + }, + { + "label": "Attention: attach diagram if more than one land use applies", + "tableView": false, + "defaultValue": false, + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "key": "attentionAttachDiagramIfMoreThanOneLandUseApplies1", + "conditional": { + "show": true, + "when": "multipleLandUse", + "eq": "yes" + }, + "type": "checkbox", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": true, + "labelPosition": "right", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "inputType": "checkbox", + "value": "", + "name": "", + "id": "enw2hzm" + }, + { + "html": "

Offsite Impacted Property(ies) / Management Area Land Use

", + "label": "Content", + "refreshOnChange": false, + "key": "content16", + "type": "content", + "input": false, + "tableView": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "id": "er8zxoq" + }, + { + "label": "CSR Land Use - Current", + "optionsLabelPosition": "right", + "tableView": false, + "defaultValue": { + "industrialLandUseIl": false, + "commercialLandUseCl": false, + "residentialLandUseHighDensityRlhd": false, + "residentialLandUseLowDensityRlld": false, + "urbanParkLandUsePl": false, + "agriculturalLandUseAl": false, + "wildlandsNaturalLandUseWln": false, + "wildlandsRevertedLandUseWlr": false, + "other": false + }, + "values": [ + { + "label": "Industrial Land Use (IL)", + "value": "industrialLandUseIl", + "shortcut": "" + }, + { + "label": "Commercial Land Use (CL)", + "value": "commercialLandUseCl", + "shortcut": "" + }, + { + "label": "Residential Land Use High Density (RLHD)", + "value": "residentialLandUseHighDensityRlhd", + "shortcut": "" + }, + { + "label": "Residential Land Use Low Density (RLLD)", + "value": "residentialLandUseLowDensityRlld", + "shortcut": "" + }, + { + "label": "Urban Park Land Use (PL)", + "value": "urbanParkLandUsePl", + "shortcut": "" + }, + { + "label": "Agricultural Land Use (AL)", + "value": "agriculturalLandUseAl", + "shortcut": "" + }, + { + "label": "Wildlands Natural Land Use (WLN)", + "value": "wildlandsNaturalLandUseWln", + "shortcut": "" + }, + { + "label": "Wildlands Reverted Land Use (WLR)", + "value": "wildlandsRevertedLandUseWlr", + "shortcut": "" + }, + { + "label": "Other", + "value": "other", + "shortcut": "" + } + ], + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "onlyAvailableItems": false + }, + "key": "csrLandUseCurrentImpacted", + "type": "selectboxes", + "input": true, + "inputType": "checkbox", + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "fieldSet": false, + "inline": false, + "id": "e4z13y" + }, + { + "label": "If 'other' is specified above, please explain: (e.g. applicable or excluded guidance, protocols or policies specific to the site)", + "autoExpand": false, + "tableView": true, + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "", + "minWords": "", + "maxWords": "" + }, + "key": "ifOtherIsSpecifiedAbovePleaseExplainEGApplicableOrExcludedGuidanceProtocolsOrPoliciesSpecificToTheSite2", + "conditional": { + "show": true, + "when": "csrLandUseCurrentImpacted", + "eq": "other" + }, + "type": "textarea", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "html", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "rows": 3, + "wysiwyg": false, + "editor": "", + "fixedSize": true, + "id": "esytwkl" + }, + { + "label": "Notes: provide rationale for why a typical standard does not apply", + "autoExpand": false, + "tableView": true, + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "", + "minWords": "", + "maxWords": "" + }, + "key": "ifOtherIsSpecifiedAbovePleaseExplainEGApplicableOrExcludedGuidanceProtocolsOrPoliciesSpecificToTheSite3", + "conditional": { + "show": true, + "when": "csrLandUseCurrentImpacted", + "eq": "other" + }, + "type": "textarea", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "html", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "rows": 3, + "wysiwyg": false, + "editor": "", + "fixedSize": true, + "id": "ey5bxu7" + }, + { + "label": "Have Protocol 2 site-specific standards been applied?", + "optionsLabelPosition": "right", + "inline": false, + "tableView": false, + "values": [ + { + "label": "Yes", + "value": "yes", + "shortcut": "" + }, + { + "label": "No", + "value": "no", + "shortcut": "" + } + ], + "key": "haveProtocol2SiteSpecificStandardsBeenApplied2", + "type": "radio", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "onlyAvailableItems": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "inputType": "radio", + "fieldSet": false, + "id": "eks5u89" + }, + { + "label": "Note: If P2 site-specific numerical standards selected above, identify the substance and provide rationale for application of the site-specific numerical standard.", + "autoExpand": false, + "tableView": true, + "key": "noteIfP2SiteSpecificNumericalStandardsSelectedAboveIdentifyTheSubstanceAndProvideRationaleForApplicationOfTheSiteSpecificNumericalStandard2", + "type": "textarea", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "", + "minWords": "", + "maxWords": "" + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "html", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "rows": 3, + "wysiwyg": false, + "editor": "", + "fixedSize": true, + "id": "eveexvi" + }, + { + "label": "Have Protocol 4 site-specific standards been applied?", + "optionsLabelPosition": "right", + "inline": false, + "tableView": false, + "values": [ + { + "label": "Yes", + "value": "yes", + "shortcut": "" + }, + { + "label": "No", + "value": "no", + "shortcut": "" + } + ], + "key": "haveProtocol4SiteSpecificStandardsBeenApplied4", + "type": "radio", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "onlyAvailableItems": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "inputType": "radio", + "fieldSet": false, + "id": "ecl4kdi" + }, + { + "label": "Note: If P4 background selected above, provide rationale for why the background concentration applies.", + "autoExpand": false, + "tableView": true, + "key": "noteIfP4BackgroundSelectedAboveProvideRationaleForWhyTheBackgroundConcentrationApplies2", + "type": "textarea", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "", + "minWords": "", + "maxWords": "" + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "html", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "rows": 3, + "wysiwyg": false, + "editor": "", + "fixedSize": true, + "id": "e1vwxs" + }, + { + "html": "

Groundwater (CSR Schedule 3.2)

", + "label": "Content", + "refreshOnChange": false, + "key": "content17", + "type": "content", + "input": false, + "tableView": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "id": "e47bqcv" + }, + { + "label": "Do groundwater standards apply at your site?", + "optionsLabelPosition": "right", + "inline": false, + "tableView": false, + "values": [ + { + "label": "Yes", + "value": "yes", + "shortcut": "" + }, + { + "label": "No", + "value": "no", + "shortcut": "" + } + ], + "key": "doGroundwaterStandardsApplyAtYourSite", + "type": "radio", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "onlyAvailableItems": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "inputType": "radio", + "fieldSet": false, + "id": "eh13wx" + }, + { + "html": "

Groundwater

", + "label": "Content", + "refreshOnChange": false, + "key": "content18", + "type": "content", + "input": false, + "tableView": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "id": "eqg5o7" + }, + { + "label": "Select all that apply ", + "optionsLabelPosition": "right", + "tableView": false, + "values": [ + { + "label": "Aquatic Life (AW) Fresh", + "value": "aquaticLifeAwFresh", + "shortcut": "" + }, + { + "label": "Aquatic Life (AW) Marine", + "value": "aquaticLifeAwMarine", + "shortcut": "" + }, + { + "label": "Irrigation (IW)", + "value": "irrigationIw", + "shortcut": "" + }, + { + "label": "Livestock (LW)", + "value": "livestockLw", + "shortcut": "" + }, + { + "label": "Drinking Water (DW)", + "value": "drinkingWaterDw", + "shortcut": "" + }, + { + "label": "No Water Use", + "value": "noWaterUse", + "shortcut": "" + } + ], + "key": "selectAllThatApply", + "type": "selectboxes", + "input": true, + "inputType": "checkbox", + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "onlyAvailableItems": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "fieldSet": false, + "inline": false, + "id": "en2a4pq" + }, + { + "label": "Has a Protocol 9 background concentration been applied? ", + "optionsLabelPosition": "right", + "inline": false, + "tableView": false, + "values": [ + { + "label": "Yes", + "value": "yes", + "shortcut": "" + }, + { + "label": "No", + "value": "no", + "shortcut": "" + } + ], + "key": "hasAProtocol9BackgroundConcentrationBeenApplied", + "type": "radio", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "onlyAvailableItems": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "inputType": "radio", + "fieldSet": false, + "id": "eimpdh" + }, + { + "label": "Notes: If Protocol 9 background concentration selected, provide rationale for why the background concentration applies.", + "autoExpand": false, + "tableView": true, + "key": "notesIfProtocol9BackgroundConcentrationSelectedProvideRationaleForWhyTheBackgroundConcentrationApplies", + "type": "textarea", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "", + "minWords": "", + "maxWords": "" + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "html", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "rows": 3, + "wysiwyg": false, + "editor": "", + "fixedSize": true, + "id": "e5tilj" + }, + { + "html": "

Surface water (BC Approved Water Quality Guidelines) 

", + "label": "Content", + "refreshOnChange": false, + "key": "content19", + "type": "content", + "input": false, + "tableView": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "id": "eja0cs8" + }, + { + "label": "Do surface water guidelines apply at your site? ", + "optionsLabelPosition": "right", + "inline": false, + "tableView": false, + "values": [ + { + "label": "Yes", + "value": "yes", + "shortcut": "" + }, + { + "label": "No", + "value": "no", + "shortcut": "" + } + ], + "key": "surfaceWaterGuidelinesApply", + "type": "radio", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "onlyAvailableItems": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "inputType": "radio", + "fieldSet": false, + "id": "e6ew7lk" + }, + { + "label": "Select all that apply", + "optionsLabelPosition": "right", + "tableView": false, + "values": [ + { + "label": "Ambient freshwater", + "value": "ambientFreshwater", + "shortcut": "" + }, + { + "label": "Ambient marine", + "value": "ambientMarine", + "shortcut": "" + }, + { + "label": "Not Applicable", + "value": "notApplicable", + "shortcut": "" + } + ], + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "onlyAvailableItems": false + }, + "key": "selectAllThatApply1", + "type": "selectboxes", + "input": true, + "inputType": "checkbox", + "defaultValue": { + "ambientFreshwater": false, + "ambientMarine": false, + "notApplicable": false + }, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "fieldSet": false, + "inline": false, + "id": "el4jtnu" + }, + { + "html": "

Vapour (CSR Schedule 3.3)

", + "label": "Content", + "refreshOnChange": false, + "key": "content20", + "type": "content", + "input": false, + "tableView": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "id": "ek320f" + }, + { + "label": "Do vapour standards apply at your site?", + "optionsLabelPosition": "right", + "inline": false, + "tableView": false, + "values": [ + { + "label": "Yes", + "value": "yes", + "shortcut": "" + }, + { + "label": "No", + "value": "no", + "shortcut": "" + } + ], + "key": "vapourStandardsApply", + "type": "radio", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "onlyAvailableItems": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "inputType": "radio", + "fieldSet": false, + "id": "ehz6d3p" + }, + { + "label": "Please indicate all that apply:", + "optionsLabelPosition": "right", + "tableView": false, + "values": [ + { + "label": "Agricultural, Urban park, Residential use (AL, PL, RL)", + "value": "agriculturalUrbanParkResidentialUseAlPlRl", + "shortcut": "" + }, + { + "label": "Commercial use (CL)", + "value": "commercialUseCl", + "shortcut": "" + }, + { + "label": "Industrial use (IL)", + "value": "industrialUseIl", + "shortcut": "" + }, + { + "label": "Parkade", + "value": "parkade", + "shortcut": "" + }, + { + "label": "Other", + "value": "other", + "shortcut": "" + } + ], + "key": "pleaseIndicateAllThatApply", + "type": "selectboxes", + "input": true, + "inputType": "checkbox", + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "onlyAvailableItems": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "fieldSet": false, + "inline": false, + "id": "e2uphxt" + }, + { + "label": "Notes: if other is specified above, include description of assumptions for both current and future development of the site that the selected vapour attenuation factors are based on.", + "autoExpand": false, + "tableView": true, + "key": "notesIfOtherIsSpecifiedAboveIncludeDescriptionOfAssumptionsForBothCurrentAndFutureDevelopmentOfTheSiteThatTheSelectedVapourAttenuationFactorsAreBasedOn", + "type": "textarea", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "", + "minWords": "", + "maxWords": "" + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "html", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "rows": 3, + "wysiwyg": false, + "editor": "", + "fixedSize": true, + "id": "eapxfka" + }, + { + "html": "

Sediment (CSR Schedule 3.4)

", + "label": "Content", + "refreshOnChange": false, + "key": "content21", + "type": "content", + "input": false, + "tableView": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "id": "emfcc6" + }, + { + "label": "Do sediment standards apply at your site?", + "optionsLabelPosition": "right", + "inline": false, + "tableView": false, + "values": [ + { + "label": "Yes", + "value": "yes", + "shortcut": "" + }, + { + "label": "No", + "value": "no", + "shortcut": "" + } + ], + "key": "sedimentStandardsApply", + "type": "radio", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "onlyAvailableItems": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "inputType": "radio", + "fieldSet": false, + "id": "ep179tu" + }, + { + "html": "

Sediment

", + "label": "Content", + "refreshOnChange": false, + "key": "content25", + "type": "content", + "input": false, + "tableView": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "id": "eefkhsr" + }, + { + "html": "

Type of aquatic life:

", + "label": "Content", + "refreshOnChange": false, + "key": "content22", + "type": "content", + "input": false, + "tableView": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "id": "e3thv5" + }, + { + "label": "Freshwater", + "optionsLabelPosition": "right", + "inline": false, + "tableView": false, + "values": [ + { + "label": "Yes", + "value": "yes", + "shortcut": "" + }, + { + "label": "No", + "value": "no", + "shortcut": "" + } + ], + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "onlyAvailableItems": false + }, + "key": "aquaticLifeFreshwater", + "type": "radio", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "inputType": "radio", + "fieldSet": false, + "id": "eiorz7g" + }, + { + "label": "Marine/Estuarine", + "optionsLabelPosition": "right", + "inline": false, + "tableView": false, + "values": [ + { + "label": "Yes", + "value": "yes", + "shortcut": "" + }, + { + "label": "No", + "value": "no", + "shortcut": "" + } + ], + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "onlyAvailableItems": false + }, + "key": "aquaticLifeMarineEstuarine", + "type": "radio", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "inputType": "radio", + "fieldSet": false, + "id": "ejh5scg" + }, + { + "html": "

Type of Habitat:

", + "label": "Content", + "refreshOnChange": false, + "key": "content23", + "type": "content", + "input": false, + "tableView": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "id": "ep3ei0k" + }, + { + "label": "Sensitive", + "optionsLabelPosition": "right", + "inline": false, + "tableView": false, + "values": [ + { + "label": "Yes", + "value": "yes", + "shortcut": "" + }, + { + "label": "No", + "value": "no", + "shortcut": "" + } + ], + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "onlyAvailableItems": false + }, + "key": "sensitive", + "type": "radio", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "inputType": "radio", + "fieldSet": false, + "id": "ey1i3fk" + }, + { + "label": "Typical", + "optionsLabelPosition": "right", + "inline": false, + "tableView": false, + "values": [ + { + "label": "Yes", + "value": "yes", + "shortcut": "" + }, + { + "label": "No", + "value": "no", + "shortcut": "" + } + ], + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "onlyAvailableItems": false + }, + "key": "typical", + "type": "radio", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "inputType": "radio", + "fieldSet": false, + "id": "ehliufd" + } + ], + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "clearOnHide": false, + "refreshOn": "", + "redrawOn": "", + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "tree": false, + "lazyLoad": false, + "id": "ezpn8f" + }, + { + "title": "SECTION V - Areas of Potential Environmental Concern (APEC) and Potential Contaminants of Concern (PCOC) Summary", + "theme": "default", + "tooltip": "", + "customClass": "", + "collapsible": false, + "hidden": false, + "hideLabel": false, + "disabled": false, + "modalEdit": false, + "key": "sectionVAreasOfPotentialEnvironmentalConcernApecAndPotentialContaminantsOfConcernPcocSummary", + "tags": [], + "properties": {}, + "customConditional": "", + "conditional": { + "json": "", + "show": true, + "when": "hasAnApprovalInPrincipalAiPBeenIssuedForThisSite", + "eq": "false" + }, + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "panel", + "label": "Panel", + "breadcrumb": "default", + "tabindex": "", + "input": false, + "tableView": false, + "components": [ + { + "html": "

Provide reference to a figure showing onsite and offsite APECs and PCOCs associated with each APEC 

", + "label": "Content", + "refreshOnChange": false, + "key": "content24", + "type": "content", + "input": false, + "tableView": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "id": "ep4sdn" + }, + { + "label": "add additional entries as necessary:", + "reorder": false, + "addAnotherPosition": "bottom", + "layoutFixed": false, + "enableRowGroups": false, + "initEmpty": false, + "tableView": false, + "defaultValue": [ + { + "report": "", + "figure": "", + "page": "" + } + ], + "key": "dataGrid3", + "type": "datagrid", + "input": true, + "components": [ + { + "title": "References", + "collapsible": false, + "key": "references", + "type": "panel", + "label": "", + "input": false, + "tableView": false, + "components": [ + { + "label": "Report #", + "tableView": true, + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "key": "report", + "type": "textfield", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "e42c3ej" + }, + { + "label": "Figure #", + "tableView": true, + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "key": "figure", + "type": "textfield", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "e1sgs7i" + }, + { + "label": "Page #", + "tableView": true, + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "key": "page", + "type": "textfield", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "es5kcwo" + } + ], + "id": "egwgsw0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "hidden": false, + "clearOnHide": false, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "tree": false, + "lazyLoad": false, + "theme": "default", + "breadcrumb": "default" + } + ], + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "tree": true, + "lazyLoad": false, + "disableAddingRemovingRows": false, + "id": "e7yn7b9" + }, + { + "html": "

Attention:

Include reports listed above outlining APECs and PCOCs

", + "label": "Content", + "refreshOnChange": false, + "key": "content26", + "type": "content", + "input": false, + "tableView": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "id": "ek43j2" + }, + { + "label": "I acknowledge that I will include reports as listed above ", + "tableView": false, + "key": "iAcknowledgeThatIWillIncludeReportsAsListedAbove", + "type": "checkbox", + "input": true, + "defaultValue": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": true, + "labelPosition": "right", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "inputType": "checkbox", + "value": "", + "name": "", + "id": "e7orccq" + }, + { + "html": "

APEC and PCOC Summary

 

APEC Description: Describe location in relation to process source, waste, fill, land use or activity, etc., giving rise to APEC and if APEC is primarily due to soil or water contamination.

PCOC : Indicate products, chemicals, waste type, etc. and / or analytical parameter.

APEC and PCOC summary: List individual substances or groups of substances and their Chemical Abstract Service Numbers as they appear in the applicable schedule of the CSR. Attach lists or tables as needed.

", + "label": "Content", + "refreshOnChange": false, + "key": "content27", + "type": "content", + "input": false, + "tableView": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "id": "el9sxmn" + }, + { + "label": "", + "reorder": false, + "addAnotherPosition": "bottom", + "layoutFixed": false, + "enableRowGroups": false, + "initEmpty": false, + "tableView": false, + "defaultValue": [ + { + "apec": "", + "apecDescription": "", + "pcocS": "", + "pleaseIndicateWhereAnalysesCompleted": { + "soil": false, + "sediment": false, + "groundwater": false, + "surfaceWater": false, + "vapour": false, + "otherPleaseExplainBelow": false, + "other": false + } + } + ], + "key": "dataGrid4", + "type": "datagrid", + "input": true, + "components": [ + { + "title": "Summary", + "collapsible": false, + "key": "summary", + "type": "panel", + "label": "Summaries", + "input": false, + "tableView": false, + "components": [ + { + "label": "APEC #", + "tableView": true, + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "key": "apec", + "type": "textfield", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "ey16rue" + }, + { + "label": "APEC Description", + "autoExpand": false, + "tableView": true, + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "", + "minWords": "", + "maxWords": "" + }, + "key": "apecDescription", + "type": "textarea", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "html", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "rows": 3, + "wysiwyg": false, + "editor": "", + "fixedSize": true, + "id": "euv345s" + }, + { + "label": "PCOC(s)", + "tableView": true, + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "key": "pcocS", + "type": "textfield", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "e7sbcyi" + }, + { + "label": "Please indicate where analyses completed:", + "optionsLabelPosition": "right", + "tableView": false, + "values": [ + { + "label": "Soil", + "value": "soil", + "shortcut": "" + }, + { + "label": "Sediment", + "value": "sediment", + "shortcut": "" + }, + { + "label": "Groundwater", + "value": "groundwater", + "shortcut": "" + }, + { + "label": "Surface Water", + "value": "surfaceWater", + "shortcut": "" + }, + { + "label": "Vapour", + "value": "vapour", + "shortcut": "" + }, + { + "label": "Other (Please explain below)", + "value": "other", + "shortcut": "" + } + ], + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "onlyAvailableItems": false + }, + "key": "pleaseIndicateWhereAnalysesCompleted", + "type": "selectboxes", + "input": true, + "inputType": "checkbox", + "defaultValue": { + "soil": false, + "sediment": false, + "groundwater": false, + "surfaceWater": false, + "vapour": false, + "otherPleaseExplainBelow": false, + "other": false + }, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "fieldSet": false, + "inline": false, + "id": "eg618ak" + }, + { + "label": "'Other' explanation", + "autoExpand": false, + "tableView": true, + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "", + "minWords": "", + "maxWords": "" + }, + "key": "otherExplanation", + "conditional": { + "show": true, + "when": "pleaseIndicateWhereAnalysesCompleted", + "eq": "other" + }, + "type": "textarea", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "html", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "rows": 3, + "wysiwyg": false, + "editor": "", + "fixedSize": true, + "id": "erxxdli" + } + ], + "id": "e09khr20000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "hidden": false, + "clearOnHide": false, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "tree": false, + "lazyLoad": false, + "theme": "default", + "breadcrumb": "default" + } + ], + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "tree": true, + "lazyLoad": false, + "disableAddingRemovingRows": false, + "id": "ei568rj" + } + ], + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "clearOnHide": false, + "refreshOn": "", + "redrawOn": "", + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "tree": false, + "lazyLoad": false, + "id": "e7q3hil" + }, + { + "title": "SECTION VI - Areas of Environmental Concern (AEC) and Contaminants of Concern (COC) Summary", + "theme": "default", + "tooltip": "", + "customClass": "", + "collapsible": false, + "hidden": false, + "hideLabel": false, + "disabled": false, + "modalEdit": false, + "key": "sectionViAreasOfEnvironmentalConcernAecAndContaminantsOfConcernCocSummary", + "tags": [], + "properties": {}, + "customConditional": "", + "conditional": { + "json": "", + "show": true, + "when": "hasAnApprovalInPrincipalAiPBeenIssuedForThisSite", + "eq": "false" + }, + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "panel", + "label": "Panel", + "breadcrumb": "default", + "tabindex": "", + "input": false, + "tableView": false, + "components": [ + { + "html": "

Stage 2 Preliminary Site Investigation (PSI) 

Provide reference to figure(s) showing the AEC and COC associated with each AEC in onsite and offsite soil, water, sediment and/or vapour. Sample locations and corresponding analytical results shall be shown on each figure and in tabular form with reference to applicable standards:

", + "label": "Content", + "refreshOnChange": false, + "key": "content28", + "type": "content", + "input": false, + "tableView": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "id": "e348r8u" + }, + { + "label": "", + "reorder": false, + "addAnotherPosition": "bottom", + "layoutFixed": false, + "enableRowGroups": false, + "initEmpty": false, + "hideLabel": true, + "tableView": false, + "defaultValue": [ + { + "environmentalMedium": "", + "report": "", + "page": "", + "figure": "" + } + ], + "key": "dataGrid5", + "type": "datagrid", + "input": true, + "components": [ + { + "title": "Summary", + "collapsible": false, + "key": "summary", + "type": "panel", + "label": "AEC and COC Summary", + "input": false, + "tableView": false, + "components": [ + { + "label": "Environmental Medium", + "tableView": true, + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "key": "environmentalMedium", + "type": "textfield", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "emrnwt" + }, + { + "label": "Report #", + "tableView": true, + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "key": "report", + "type": "textfield", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "ezjgbqk" + }, + { + "label": "Page #", + "tableView": true, + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "key": "page", + "type": "textfield", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "e93qh3o" + }, + { + "label": "Figure #", + "tableView": true, + "key": "figure", + "type": "textfield", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "eu9o53q" + } + ], + "id": "eipn9d000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "hidden": false, + "clearOnHide": false, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "tree": false, + "lazyLoad": false, + "theme": "default", + "breadcrumb": "default" + } + ], + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "tree": true, + "lazyLoad": false, + "disableAddingRemovingRows": false, + "id": "enyqev" + }, + { + "html": "

Detailed Site Investigation (DSI) 

Provide references to figures (plan and section), with contours, showing the specific lateral and vertical distribution of each contaminant of concern in onsite and offsite soil, sediment, water and vapour. Sections shall be longitudinal and transverse with respect to groundwater flow and include physical conditions (e.g. stratigraphy, water table etc.). Sample locations with corresponding analytical results used to develop each figure shall be shown on the figure and in tabular form with reference to applicable standards:

", + "label": "Content", + "refreshOnChange": false, + "key": "content29", + "type": "content", + "input": false, + "tableView": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "id": "egzo5zb" + }, + { + "label": "", + "reorder": false, + "addAnotherPosition": "bottom", + "layoutFixed": false, + "enableRowGroups": false, + "initEmpty": false, + "hideLabel": true, + "tableView": false, + "defaultValue": [ + { + "environmentalMedium": "", + "report": "", + "page": "", + "figure": "" + } + ], + "key": "dataGrid6", + "type": "datagrid", + "input": true, + "components": [ + { + "title": "", + "collapsible": false, + "key": "summary", + "type": "panel", + "label": "AEC and COC Summary", + "input": false, + "tableView": false, + "components": [ + { + "label": "Environmental Medium", + "tableView": true, + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "key": "environmentalMedium", + "type": "textfield", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "edmm3sb" + }, + { + "label": "Report #", + "tableView": true, + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "key": "report", + "type": "textfield", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "e3mvybo" + }, + { + "label": "Page #", + "tableView": true, + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "key": "page", + "type": "textfield", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "eknllaa" + }, + { + "label": "Figure #", + "tableView": true, + "key": "figure", + "type": "textfield", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "ef617zf" + } + ], + "id": "ebh60il000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "hidden": false, + "clearOnHide": false, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "tree": false, + "lazyLoad": false, + "theme": "default", + "breadcrumb": "default" + } + ], + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "tree": true, + "lazyLoad": false, + "disableAddingRemovingRows": false, + "id": "e5mao0a" + }, + { + "html": "

AEC/APEC and COC Extent of Contamination

", + "label": "Content", + "refreshOnChange": false, + "key": "content30", + "type": "content", + "input": false, + "tableView": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "id": "e0havy" + }, + { + "label": "", + "reorder": false, + "addAnotherPosition": "bottom", + "layoutFixed": false, + "enableRowGroups": false, + "initEmpty": false, + "hideLabel": true, + "tableView": false, + "defaultValue": [ + { + "aecApecUseSameSAsForApeCsInTableAbove": "", + "coc": "", + "mediumEGSoilGroundwaterSedimentVapourSurfaceWaterOther": "", + "maxMeasuredConcentrationIndicateUnits": "", + "areaM": "", + "depthRangeM": "", + "notes1": "" + } + ], + "key": "dataGrid7", + "type": "datagrid", + "input": true, + "components": [ + { + "title": "", + "collapsible": false, + "key": "panel8", + "type": "panel", + "label": "", + "input": false, + "tableView": false, + "components": [ + { + "label": "AEC/APEC: Use same #s as for APECs in table above", + "tableView": true, + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "key": "aecApecUseSameSAsForApeCsInTableAbove", + "type": "textfield", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "e99tie4" + }, + { + "label": "COC", + "tableView": true, + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "key": "coc", + "type": "textfield", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "eo9g8ms" + }, + { + "label": "Medium", + "placeholder": "e.g. soil, groundwater, sediment, vapour, surface water, other", + "tableView": true, + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "key": "mediumEGSoilGroundwaterSedimentVapourSurfaceWaterOther", + "type": "textfield", + "input": true, + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "erqoauyy" + }, + { + "label": "Max Measured Concentration (indicate units)", + "tableView": true, + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "key": "maxMeasuredConcentrationIndicateUnits", + "type": "textfield", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "eqfcnt7" + }, + { + "label": "Area (m²)", + "tableView": true, + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "key": "areaM", + "type": "textfield", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "ecx8h8h" + }, + { + "label": "Depth Range (m)", + "tableView": true, + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "key": "depthRangeM", + "type": "textfield", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "evgae2q" + }, + { + "label": "Notes", + "placeholder": "e.g. site type, classification, relevant approvals, etc.", + "autoExpand": false, + "tableView": true, + "key": "notes2", + "type": "textarea", + "input": true, + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "", + "minWords": "", + "maxWords": "" + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "html", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "rows": 3, + "wysiwyg": false, + "editor": "", + "fixedSize": true, + "id": "eak2oy8" + } + ], + "id": "evgsijp000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "hidden": false, + "clearOnHide": false, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "tree": false, + "lazyLoad": false, + "theme": "default", + "breadcrumb": "default" + } + ], + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "tree": true, + "lazyLoad": false, + "disableAddingRemovingRows": false, + "id": "e3pfzbj" + } + ], + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "clearOnHide": false, + "refreshOn": "", + "redrawOn": "", + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "tree": false, + "lazyLoad": false, + "id": "e1tcxwk" + }, + { + "title": "SECTION VII - Offsite Migration", + "collapsible": false, + "key": "sectionViiOffsiteMigration", + "conditional": { + "show": true, + "when": "hasAnApprovalInPrincipalAiPBeenIssuedForThisSite", + "eq": "no" + }, + "type": "panel", + "label": "Panel", + "input": false, + "tableView": false, + "components": [ + { + "label": "Is there evidence that one or more substances has migrated or is likely to have migrated to a neighbouring site and is or is likely causing contamination of the neighbouring property?", + "optionsLabelPosition": "right", + "inline": false, + "tableView": false, + "values": [ + { + "label": "Yes", + "value": "yes", + "shortcut": "" + }, + { + "label": "No", + "value": "no", + "shortcut": "" + } + ], + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "onlyAvailableItems": false + }, + "key": "isThereEvidenceThatOneOrMoreSubstancesHasMigratedOrIsLikelyToHaveMigratedToANeighbouringSiteAndIsOrIsLikelyCausingContaminationOfTheNeighbouringProperty", + "type": "radio", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "inputType": "radio", + "fieldSet": false, + "id": "eyt9j6k" + }, + { + "label": "Has any sampling occurred offsite for PCOCs in any media?", + "optionsLabelPosition": "right", + "inline": false, + "tableView": false, + "values": [ + { + "label": "Yes", + "value": "yes", + "shortcut": "" + }, + { + "label": "No", + "value": "no", + "shortcut": "" + } + ], + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "onlyAvailableItems": false + }, + "key": "hasAnySamplingOccurredOffsiteForPcoCsInAnyMedia", + "type": "radio", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "inputType": "radio", + "fieldSet": false, + "id": "e5kz2pn" + }, + { + "label": "Have preferential pathways been assessed? (including assessment of all neighbouring underground utility rights-of-way)", + "optionsLabelPosition": "right", + "inline": false, + "tableView": false, + "values": [ + { + "label": "Yes", + "value": "yes", + "shortcut": "" + }, + { + "label": "No", + "value": "no", + "shortcut": "" + } + ], + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "onlyAvailableItems": false + }, + "key": "havePreferentialPathwaysBeenAssessedIncludingAssessmentOfAllNeighbouringUndergroundUtilityRightsOfWay", + "type": "radio", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "inputType": "radio", + "fieldSet": false, + "id": "e6fg35s" + }, + { + "title": "", + "collapsible": false, + "hideLabel": true, + "key": "panel3", + "conditional": { + "show": true, + "when": "isThereEvidenceThatOneOrMoreSubstancesHasMigratedOrIsLikelyToHaveMigratedToANeighbouringSiteAndIsOrIsLikelyCausingContaminationOfTheNeighbouringProperty", + "eq": "yes" + }, + "type": "panel", + "label": "Panel", + "input": false, + "tableView": false, + "components": [ + { + "label": "Current offsite transport of contaminants from the site", + "tableView": false, + "key": "currentOffsiteTransportOfContaminantsFromTheSite", + "type": "checkbox", + "input": true, + "defaultValue": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": true, + "labelPosition": "right", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "inputType": "checkbox", + "value": "", + "name": "", + "id": "e75y38c" + }, + { + "label": "Historical offsite transport of contaminants from the site", + "tableView": false, + "defaultValue": false, + "key": "currentOffsiteTransportOfContaminantsFromTheSite1", + "type": "checkbox", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": true, + "labelPosition": "right", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "inputType": "checkbox", + "value": "", + "name": "", + "id": "e2bknmb" + }, + { + "label": "Historical or Current offsite transport of contaminants from the site in:", + "optionsLabelPosition": "right", + "tableView": false, + "defaultValue": { + "groundwater": false, + "surfaceWater": false, + "vapour": false, + "otherExplainBelow": false + }, + "values": [ + { + "label": "Groundwater", + "value": "groundwater", + "shortcut": "" + }, + { + "label": "Surface Water", + "value": "surfaceWater", + "shortcut": "" + }, + { + "label": "Vapour", + "value": "vapour", + "shortcut": "" + }, + { + "label": "Other (explain below)", + "value": "otherExplainBelow", + "shortcut": "" + } + ], + "key": "in", + "type": "selectboxes", + "input": true, + "inputType": "checkbox", + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "onlyAvailableItems": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "fieldSet": false, + "inline": false, + "id": "eon7ijc" + }, + { + "label": "If other, describe environmental media:", + "autoExpand": false, + "tableView": true, + "key": "ifOtherDescribeEnvironmentalMedia", + "type": "textarea", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "", + "minWords": "", + "maxWords": "" + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "html", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "rows": 3, + "wysiwyg": false, + "editor": "", + "fixedSize": true, + "id": "e6tjnc8" + }, + { + "label": "Briefly describe the nature of and evidence for offsite migration (either known, suspected, or potential)", + "autoExpand": false, + "tableView": true, + "key": "brieflyDescribeTheNatureOfAndEvidenceForOffsiteMigrationEitherKnownSuspectedOrPotential", + "type": "textarea", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "", + "minWords": "", + "maxWords": "" + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "html", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "rows": 3, + "wysiwyg": false, + "editor": "", + "fixedSize": true, + "id": "er9735" + }, + { + "label": "The impacted offsite lands are categorized as:", + "optionsLabelPosition": "right", + "tableView": false, + "values": [ + { + "label": "Having a potable groundwater source", + "value": "havingAPotableGroundwaterSource", + "shortcut": "" + }, + { + "label": "Being aquatic habitat, as formally defined", + "value": "beingAquaticHabitatAsFormallyDefined", + "shortcut": "" + }, + { + "label": "Agricultural lands", + "value": "agriculturalLands", + "shortcut": "" + }, + { + "label": "Residential or Urban parklands", + "value": "residentialOrUrbanParklands", + "shortcut": "" + }, + { + "label": "Commercial land", + "value": "commercialLand", + "shortcut": "" + }, + { + "label": "Industrial land", + "value": "industrialLand", + "shortcut": "" + }, + { + "label": "Wildlands", + "value": "wildlands", + "shortcut": "" + } + ], + "key": "theImpactedOffsiteLandsAreCategorizedAs", + "type": "selectboxes", + "input": true, + "inputType": "checkbox", + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "onlyAvailableItems": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "fieldSet": false, + "inline": false, + "id": "e1stkrj" + } + ], + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "hidden": false, + "clearOnHide": false, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "tree": false, + "lazyLoad": false, + "theme": "default", + "breadcrumb": "default", + "id": "en99wz" + } + ], + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "hidden": false, + "clearOnHide": false, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "tree": false, + "lazyLoad": false, + "theme": "default", + "breadcrumb": "default", + "id": "edqxa27" + }, + { + "title": "SECTION VIII - Investigation or Interpretation Issues to be Adressed", + "theme": "default", + "tooltip": "", + "customClass": "", + "collapsible": false, + "hidden": false, + "hideLabel": false, + "disabled": false, + "modalEdit": false, + "key": "sectionViiiInvestigationOrInterpretationIssuesToBeAdressed", + "tags": [], + "properties": {}, + "customConditional": "", + "conditional": { + "json": "", + "show": true, + "when": "hasAnApprovalInPrincipalAiPBeenIssuedForThisSite", + "eq": "false" + }, + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "panel", + "label": "Panel", + "breadcrumb": "default", + "tabindex": "", + "input": false, + "tableView": false, + "components": [ + { + "label": "Identify any issues regarding investigations or interpretations if the PSI and DSI information may not satisfy the requirements of CSR Sections 58 and 59 and applicable protocols and guidance documents. Briefly describe how these deficiencies will be addressed. Enter n/a if not applicable.", + "autoExpand": false, + "tableView": true, + "key": "identifyAnyIssuesRegardingInvestigationsOrInterpretationsIfThePsiAndDsiInformationMayNotSatisfyTheRequirementsOfCsrSections58And59AndApplicableProtocolsAndGuidanceDocumentsBrieflyDescribeHowTheseDeficienciesWillBeAddressedEnterNAIfNotApplicable", + "type": "textarea", + "rows": 5, + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "", + "minWords": "", + "maxWords": "" + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "html", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "wysiwyg": false, + "editor": "", + "fixedSize": true, + "id": "ekbzgj" + } + ], + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "clearOnHide": false, + "refreshOn": "", + "redrawOn": "", + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "tree": false, + "lazyLoad": false, + "id": "edczfu" + }, + { + "html": "

Part 5 - Remediation Summary

", + "label": "Content", + "customClass": "", + "refreshOnChange": false, + "hidden": false, + "modalEdit": false, + "key": "content33", + "tags": [], + "properties": {}, + "conditional": { + "show": null, + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "content", + "input": false, + "tableView": false, + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "id": "etcmt0o" + }, + { + "title": "SECTION I - Remediation Reporting Summary", + "theme": "default", + "tooltip": "", + "customClass": "", + "collapsible": false, + "hidden": false, + "hideLabel": false, + "disabled": false, + "modalEdit": false, + "key": "sectionIRemediationReportingSummary", + "tags": [], + "properties": {}, + "customConditional": "", + "conditional": { + "json": "", + "show": null, + "when": null, + "eq": "" + }, + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "panel", + "label": "Panel", + "breadcrumb": "default", + "tabindex": "", + "input": false, + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "clearOnHide": false, + "refreshOn": "", + "redrawOn": "", + "tableView": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "tree": false, + "lazyLoad": false, + "components": [ + { + "title": "Risk Assessment", + "theme": "default", + "tooltip": "", + "customClass": "", + "collapsible": false, + "hidden": false, + "hideLabel": false, + "disabled": false, + "modalEdit": false, + "key": "riskAssessment", + "tags": [], + "properties": {}, + "customConditional": "", + "conditional": { + "json": "", + "show": null, + "when": null, + "eq": "" + }, + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "panel", + "label": "Panel", + "breadcrumb": "default", + "tabindex": "", + "input": false, + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "clearOnHide": false, + "refreshOn": "", + "redrawOn": "", + "tableView": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "tree": false, + "lazyLoad": false, + "components": [ + { + "label": "Completed?", + "optionsLabelPosition": "right", + "tableView": false, + "values": [ + { + "label": "Yes", + "value": "yes", + "shortcut": "" + }, + { + "label": "No", + "value": "no", + "shortcut": "" + } + ], + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "onlyAvailableItems": false + }, + "key": "completed4", + "type": "radio", + "input": true, + "inputType": "radio", + "defaultValue": { + "yes": false, + "no": false + }, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "fieldSet": false, + "id": "e4gsdhh" + }, + { + "label": "Includes quantitative human health and ecological risk assessment report information or screening level risk assessment per EMA, CSR and current applicable ministry protocols, guidelines, checklists? ", + "optionsLabelPosition": "right", + "tableView": false, + "values": [ + { + "label": "Yes", + "value": "yes", + "shortcut": "" + }, + { + "label": "No", + "value": "no", + "shortcut": "" + }, + { + "label": "N/A", + "value": "nA", + "shortcut": "" + } + ], + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "onlyAvailableItems": false + }, + "key": "includesQuantitativeHumanHealthAndEcologicalRiskAssessmentReportInformationOrScreeningLevelRiskAssessmentPerEmaCsrAndCurrentApplicableMinistryProtocolsGuidelinesChecklists", + "type": "radio", + "input": true, + "inputType": "radio", + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "fieldSet": false, + "id": "ezw7671c" + } + ], + "id": "ejp45z9" + }, + { + "title": "Remediation Plan", + "theme": "default", + "tooltip": "", + "customClass": "", + "collapsible": false, + "hidden": false, + "hideLabel": false, + "disabled": false, + "modalEdit": false, + "key": "riskAssessment1", + "tags": [], + "properties": {}, + "customConditional": "", + "conditional": { + "json": "", + "show": null, + "when": null, + "eq": "" + }, + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "panel", + "label": "Panel", + "breadcrumb": "default", + "tabindex": "", + "input": false, + "tableView": false, + "components": [ + { + "label": "Completed?", + "optionsLabelPosition": "right", + "tableView": false, + "values": [ + { + "label": "Yes", + "value": "yes", + "shortcut": "" + }, + { + "label": "No", + "value": "no", + "shortcut": "" + } + ], + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "onlyAvailableItems": false + }, + "key": "completed5", + "type": "radio", + "input": true, + "inputType": "radio", + "defaultValue": { + "yes": false, + "no": false + }, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "fieldSet": false, + "id": "el5sg7" + }, + { + "label": "Includes CSR specified information for a Remediation Plan (see CSR S.1, 16, 47) and current applicable ministry protocols, guidelines, checklists, etc.?", + "optionsLabelPosition": "right", + "tableView": false, + "values": [ + { + "label": "Yes", + "value": "yes", + "shortcut": "" + }, + { + "label": "No", + "value": "no", + "shortcut": "" + }, + { + "label": "N/A", + "value": "nA", + "shortcut": "" + } + ], + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "onlyAvailableItems": false + }, + "key": "includesQuantitativeHumanHealthAndEcologicalRiskAssessmentReportInformationOrScreeningLevelRiskAssessmentPerEmaCsrAndCurrentApplicableMinistryProtocolsGuidelinesChecklists1", + "type": "radio", + "input": true, + "inputType": "radio", + "defaultValue": { + "yes": false, + "no": false, + "nA": false + }, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "fieldSet": false, + "id": "e8p4jr" + } + ], + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "clearOnHide": false, + "refreshOn": "", + "redrawOn": "", + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "tree": false, + "lazyLoad": false, + "id": "evp1obv" + }, + { + "title": "Confirmation of Remediation", + "theme": "default", + "tooltip": "", + "customClass": "", + "collapsible": false, + "hidden": false, + "hideLabel": false, + "disabled": false, + "modalEdit": false, + "key": "riskAssessment2", + "tags": [], + "properties": {}, + "customConditional": "", + "conditional": { + "json": "", + "show": null, + "when": null, + "eq": "" + }, + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "panel", + "label": "Panel", + "breadcrumb": "default", + "tabindex": "", + "input": false, + "tableView": false, + "components": [ + { + "label": "Completed?", + "optionsLabelPosition": "right", + "tableView": false, + "values": [ + { + "label": "Yes", + "value": "yes", + "shortcut": "" + }, + { + "label": "No", + "value": "no", + "shortcut": "" + } + ], + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "onlyAvailableItems": false + }, + "key": "completed6", + "type": "radio", + "input": true, + "inputType": "radio", + "defaultValue": { + "yes": false, + "no": false + }, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "fieldSet": false, + "id": "ejkw9fd" + }, + { + "label": "Includes CSR specified information (see CSR S.49) and any current applicable ministry protocols, guidelines, checklists for COR reports? ", + "optionsLabelPosition": "right", + "tableView": false, + "defaultValue": { + "yes": false, + "no": false, + "nA": false + }, + "values": [ + { + "label": "Yes", + "value": "yes", + "shortcut": "" + }, + { + "label": "No", + "value": "no", + "shortcut": "" + }, + { + "label": "N/A", + "value": "nA", + "shortcut": "" + } + ], + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "onlyAvailableItems": false + }, + "key": "includesQuantitativeHumanHealthAndEcologicalRiskAssessmentReportInformationOrScreeningLevelRiskAssessmentPerEmaCsrAndCurrentApplicableMinistryProtocolsGuidelinesChecklists2", + "type": "radio", + "input": true, + "inputType": "radio", + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "fieldSet": false, + "id": "ezc4bx5" + } + ], + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "clearOnHide": false, + "refreshOn": "", + "redrawOn": "", + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "tree": false, + "lazyLoad": false, + "id": "eg2f3g" + }, + { + "title": "Other Reports", + "theme": "default", + "tooltip": "", + "customClass": "", + "collapsible": false, + "hidden": false, + "hideLabel": false, + "disabled": false, + "modalEdit": false, + "key": "riskAssessment3", + "tags": [], + "properties": {}, + "customConditional": "", + "conditional": { + "json": "", + "show": null, + "when": null, + "eq": "" + }, + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "panel", + "label": "Panel", + "breadcrumb": "default", + "tabindex": "", + "input": false, + "tableView": false, + "components": [ + { + "label": "Completed?", + "optionsLabelPosition": "right", + "tableView": false, + "values": [ + { + "label": "Yes", + "value": "yes", + "shortcut": "" + }, + { + "label": "No", + "value": "no", + "shortcut": "" + } + ], + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "onlyAvailableItems": false + }, + "key": "completed7", + "type": "radio", + "input": true, + "inputType": "radio", + "defaultValue": { + "yes": false, + "no": false + }, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "fieldSet": false, + "id": "ew6b1fi" + }, + { + "label": "According to other guidelines? (Provide explanation in notes below. Indicate how reports assist understanding of conditions and/or remediation.) ", + "labelPosition": "top", + "optionsLabelPosition": "right", + "description": "", + "tooltip": "", + "customClass": "", + "tabindex": "", + "inline": false, + "hidden": false, + "hideLabel": false, + "autofocus": false, + "disabled": false, + "tableView": false, + "modalEdit": false, + "defaultValue": { + "yes": false, + "no": false, + "nA": false + }, + "values": [ + { + "label": "Yes", + "value": "yes", + "shortcut": "" + }, + { + "label": "No", + "value": "no", + "shortcut": "" + }, + { + "label": "N/A", + "value": "nA", + "shortcut": "" + } + ], + "dataType": "", + "persistent": true, + "protected": false, + "dbIndex": false, + "encrypted": false, + "redrawOn": "", + "clearOnHide": true, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "allowCalculateOverride": false, + "validate": { + "required": true, + "onlyAvailableItems": false, + "customMessage": "", + "custom": "", + "customPrivate": false, + "json": "", + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "errorLabel": "", + "errors": "", + "key": "includesQuantitativeHumanHealthAndEcologicalRiskAssessmentReportInformationOrScreeningLevelRiskAssessmentPerEmaCsrAndCurrentApplicableMinistryProtocolsGuidelinesChecklists3", + "tags": [], + "properties": {}, + "conditional": { + "show": true, + "when": "completed7", + "eq": "yes", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "radio", + "input": true, + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "unique": false, + "refreshOn": "", + "dataGridLabel": false, + "widget": null, + "validateOn": "change", + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "inputType": "radio", + "fieldSet": false, + "id": "e9z694e" + }, + { + "label": "Notes", + "labelPosition": "top", + "placeholder": "", + "description": "", + "tooltip": "", + "prefix": "", + "suffix": "", + "widget": { + "type": "input" + }, + "displayMask": "", + "editor": "", + "autoExpand": false, + "customClass": "", + "tabindex": "", + "autocomplete": "", + "hidden": false, + "hideLabel": false, + "showWordCount": false, + "showCharCount": false, + "autofocus": false, + "spellcheck": true, + "disabled": false, + "tableView": true, + "modalEdit": false, + "multiple": false, + "persistent": true, + "inputFormat": "html", + "protected": false, + "dbIndex": false, + "case": "", + "truncateMultipleSpaces": false, + "encrypted": false, + "redrawOn": "", + "clearOnHide": true, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "allowCalculateOverride": false, + "validateOn": "change", + "validate": { + "required": true, + "pattern": "", + "customMessage": "", + "custom": "", + "customPrivate": false, + "json": "", + "minLength": "", + "maxLength": "", + "minWords": "", + "maxWords": "", + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "unique": false, + "errorLabel": "", + "errors": "", + "key": "notes1", + "tags": [], + "properties": {}, + "conditional": { + "show": true, + "when": "completed7", + "eq": "yes", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "textarea", + "rows": 3, + "wysiwyg": false, + "input": true, + "refreshOn": "", + "dataGridLabel": false, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputMask": "", + "fixedSize": true, + "id": "eirkrzs", + "defaultValue": "" + } + ], + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "clearOnHide": false, + "refreshOn": "", + "redrawOn": "", + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "tree": false, + "lazyLoad": false, + "id": "en3xr0m" + }, + { + "html": "

If completed remediation reports are not adequate or if reports have a different scope than those listed above in accordance with the CSR complete Section 5.6 - Outstanding Remediation Issues.

", + "label": "Content", + "customClass": "", + "refreshOnChange": false, + "hidden": false, + "modalEdit": false, + "key": "content67", + "tags": [], + "properties": {}, + "conditional": { + "show": null, + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "content", + "input": false, + "tableView": false, + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "id": "e4jq65" + } + ], + "id": "e8ipwk5" + }, + { + "title": "SECTION II - Proposed or Completed Remedial Activities", + "theme": "default", + "tooltip": "", + "customClass": "", + "collapsible": false, + "hidden": false, + "hideLabel": false, + "disabled": false, + "modalEdit": false, + "key": "sectionIiProposedOrCompletedRemedialActivities", + "tags": [], + "properties": {}, + "customConditional": "", + "conditional": { + "json": "", + "show": null, + "when": null, + "eq": "" + }, + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "panel", + "label": "Panel", + "breadcrumb": "default", + "tabindex": "", + "input": false, + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "clearOnHide": false, + "refreshOn": "", + "redrawOn": "", + "tableView": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "tree": false, + "lazyLoad": false, + "components": [ + { + "html": "

Describe all aspects of remediation including regulatory actions and activities to comply with numerical and/or risk-based standards

", + "label": "Content", + "customClass": "", + "refreshOnChange": false, + "hidden": false, + "modalEdit": false, + "key": "content35", + "tags": [], + "properties": {}, + "conditional": { + "show": null, + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "content", + "input": false, + "tableView": false, + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "id": "e3pr3l7" + }, + { + "label": "Regulatory: Notification of Independent Remediation, Approval in Principle, Certificate of Compliance, Determination, Restrictive Covenant etc.", + "labelPosition": "top", + "placeholder": "", + "description": "", + "tooltip": "", + "prefix": "", + "suffix": "", + "widget": { + "type": "input" + }, + "displayMask": "", + "editor": "", + "autoExpand": false, + "customClass": "", + "tabindex": "", + "autocomplete": "", + "hidden": false, + "hideLabel": false, + "showWordCount": false, + "showCharCount": false, + "autofocus": false, + "spellcheck": true, + "disabled": false, + "tableView": true, + "modalEdit": false, + "multiple": false, + "persistent": true, + "inputFormat": "html", + "protected": false, + "dbIndex": false, + "case": "", + "truncateMultipleSpaces": false, + "encrypted": false, + "redrawOn": "", + "clearOnHide": true, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "allowCalculateOverride": false, + "validateOn": "change", + "validate": { + "required": true, + "pattern": "", + "customMessage": "", + "custom": "", + "customPrivate": false, + "json": "", + "minLength": "", + "maxLength": "", + "minWords": "", + "maxWords": "", + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "unique": false, + "errorLabel": "", + "errors": "", + "key": "regulatoryNotificationOfIndependentRemediationApprovalInPrincipleCertificateOfComplianceDeterminationRestrictiveCovenantEtc", + "tags": [], + "properties": {}, + "conditional": { + "show": null, + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "textarea", + "rows": 3, + "wysiwyg": false, + "input": true, + "refreshOn": "", + "dataGridLabel": false, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputMask": "", + "fixedSize": true, + "id": "elmoc77", + "defaultValue": "" + }, + { + "label": "If commitments or conditions to be met are included in an Approval in Principle issued for the site, list these conditions and identify how they were met though remedial activities. ", + "labelPosition": "top", + "placeholder": "", + "description": "", + "tooltip": "", + "prefix": "", + "suffix": "", + "widget": { + "type": "input" + }, + "displayMask": "", + "editor": "", + "autoExpand": false, + "customClass": "", + "tabindex": "", + "autocomplete": "", + "hidden": false, + "hideLabel": false, + "showWordCount": false, + "showCharCount": false, + "autofocus": false, + "spellcheck": true, + "disabled": false, + "tableView": true, + "modalEdit": false, + "multiple": false, + "persistent": true, + "inputFormat": "html", + "protected": false, + "dbIndex": false, + "case": "", + "truncateMultipleSpaces": false, + "encrypted": false, + "redrawOn": "", + "clearOnHide": true, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "allowCalculateOverride": false, + "validateOn": "change", + "validate": { + "required": true, + "pattern": "", + "customMessage": "", + "custom": "", + "customPrivate": false, + "json": "", + "minLength": "", + "maxLength": "", + "minWords": "", + "maxWords": "", + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "unique": false, + "errorLabel": "", + "errors": "", + "key": "ifCommitmentsOrConditionsToBeMetAreIncludedInAnApprovalInPrincipleIssuedForTheSiteListTheseConditionsAndIdentifyHowTheyWereMetThoughRemedialActivities", + "tags": [], + "properties": {}, + "conditional": { + "show": null, + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "textarea", + "rows": 3, + "wysiwyg": false, + "input": true, + "refreshOn": "", + "dataGridLabel": false, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputMask": "", + "fixedSize": true, + "id": "eg9hfx", + "defaultValue": "" + }, + { + "label": "Remediation to comply with numerical standards (Excavation / disposal of soil, Treatment of soil; Treatment of groundwater, etc.) ", + "labelPosition": "top", + "placeholder": "", + "description": "", + "tooltip": "", + "prefix": "", + "suffix": "", + "widget": { + "type": "input" + }, + "displayMask": "", + "editor": "", + "autoExpand": false, + "customClass": "", + "tabindex": "", + "autocomplete": "", + "hidden": false, + "hideLabel": false, + "showWordCount": false, + "showCharCount": false, + "autofocus": false, + "spellcheck": true, + "disabled": false, + "tableView": true, + "modalEdit": false, + "multiple": false, + "persistent": true, + "inputFormat": "html", + "protected": false, + "dbIndex": false, + "case": "", + "truncateMultipleSpaces": false, + "encrypted": false, + "redrawOn": "", + "clearOnHide": true, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "allowCalculateOverride": false, + "validateOn": "change", + "validate": { + "required": true, + "pattern": "", + "customMessage": "", + "custom": "", + "customPrivate": false, + "json": "", + "minLength": "", + "maxLength": "", + "minWords": "", + "maxWords": "", + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "unique": false, + "errorLabel": "", + "errors": "", + "key": "remediationToComplyWithNumericalStandardsExcavationDisposalOfSoilTreatmentOfSoilTreatmentOfGroundwaterEtc", + "tags": [], + "properties": {}, + "conditional": { + "show": null, + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "textarea", + "rows": 3, + "wysiwyg": false, + "input": true, + "refreshOn": "", + "dataGridLabel": false, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputMask": "", + "fixedSize": true, + "id": "ed566qt", + "defaultValue": "" + }, + { + "html": "

Screening Level Risk Assessment

", + "label": "Content", + "customClass": "", + "refreshOnChange": false, + "hidden": false, + "modalEdit": false, + "key": "content36", + "tags": [], + "properties": {}, + "conditional": { + "show": null, + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "content", + "input": false, + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "tableView": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "id": "enhsylu" + }, + { + "label": "Intended", + "labelPosition": "top", + "optionsLabelPosition": "right", + "description": "", + "tooltip": "", + "customClass": "", + "tabindex": "", + "inline": false, + "hidden": false, + "hideLabel": false, + "autofocus": false, + "disabled": false, + "tableView": false, + "modalEdit": false, + "values": [ + { + "label": "Yes", + "value": "yes", + "shortcut": "" + }, + { + "label": "No", + "value": "no", + "shortcut": "" + } + ], + "dataType": "", + "persistent": true, + "protected": false, + "dbIndex": false, + "encrypted": false, + "redrawOn": "", + "clearOnHide": true, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "allowCalculateOverride": false, + "validate": { + "required": true, + "onlyAvailableItems": false, + "customMessage": "", + "custom": "", + "customPrivate": false, + "json": "", + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "errorLabel": "", + "errors": "", + "key": "intended", + "tags": [], + "properties": {}, + "conditional": { + "show": null, + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "radio", + "input": true, + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "unique": false, + "refreshOn": "", + "dataGridLabel": false, + "widget": null, + "validateOn": "change", + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "inputType": "radio", + "fieldSet": false, + "id": "egyizxi", + "defaultValue": "" + }, + { + "label": "Carried out", + "labelPosition": "top", + "optionsLabelPosition": "right", + "description": "", + "tooltip": "", + "customClass": "", + "tabindex": "", + "inline": false, + "hidden": false, + "hideLabel": false, + "autofocus": false, + "disabled": false, + "tableView": false, + "modalEdit": false, + "values": [ + { + "label": "Yes", + "value": "yes", + "shortcut": "" + }, + { + "label": "No", + "value": "no", + "shortcut": "" + } + ], + "dataType": "", + "persistent": true, + "protected": false, + "dbIndex": false, + "encrypted": false, + "redrawOn": "", + "clearOnHide": true, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "allowCalculateOverride": false, + "validate": { + "required": true, + "onlyAvailableItems": false, + "customMessage": "", + "custom": "", + "customPrivate": false, + "json": "", + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "errorLabel": "", + "errors": "", + "key": "intended1", + "tags": [], + "properties": {}, + "conditional": { + "show": null, + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "radio", + "input": true, + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "unique": false, + "refreshOn": "", + "dataGridLabel": false, + "widget": null, + "validateOn": "change", + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "inputType": "radio", + "fieldSet": false, + "id": "efbt54b", + "defaultValue": "" + }, + { + "html": "

Quantitative Risk Assessment

", + "label": "Content", + "customClass": "", + "refreshOnChange": false, + "hidden": false, + "modalEdit": false, + "key": "content37", + "tags": [], + "properties": {}, + "conditional": { + "show": null, + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "content", + "input": false, + "tableView": false, + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "id": "e7p5rjw" + }, + { + "label": "Intended", + "optionsLabelPosition": "right", + "inline": false, + "tableView": false, + "values": [ + { + "label": "Yes", + "value": "yes", + "shortcut": "" + }, + { + "label": "No", + "value": "no", + "shortcut": "" + } + ], + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "onlyAvailableItems": false + }, + "key": "intended2", + "type": "radio", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "inputType": "radio", + "fieldSet": false, + "id": "emo5xjg" + }, + { + "label": "Carried out", + "optionsLabelPosition": "right", + "inline": false, + "tableView": false, + "values": [ + { + "label": "Yes", + "value": "yes", + "shortcut": "" + }, + { + "label": "No", + "value": "no", + "shortcut": "" + } + ], + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "onlyAvailableItems": false + }, + "key": "intended3", + "type": "radio", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "inputType": "radio", + "fieldSet": false, + "id": "euhh0a4" + }, + { + "html": "

If yes for any above, complete Section 5.5 (Summary of Residual Contamination)

", + "label": "Content", + "customClass": "", + "refreshOnChange": false, + "hidden": false, + "modalEdit": false, + "key": "content38", + "tags": [], + "properties": {}, + "conditional": { + "show": null, + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "content", + "input": false, + "tableView": false, + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "id": "ez6x9bq" + }, + { + "label": "Describe risk management / exposure reduction methods intended or implemented and indicate the status of any measures.", + "labelPosition": "top", + "placeholder": "e.g., Physical / engineering: monitoring, capping or barriers to exposure; Institutional: registration of restrictive covenants, financial security, etc.", + "description": "", + "tooltip": "", + "prefix": "", + "suffix": "", + "widget": { + "type": "input" + }, + "displayMask": "", + "editor": "", + "autoExpand": false, + "customClass": "", + "tabindex": "", + "autocomplete": "", + "hidden": false, + "hideLabel": false, + "showWordCount": false, + "showCharCount": false, + "autofocus": false, + "spellcheck": true, + "disabled": false, + "tableView": true, + "modalEdit": false, + "multiple": false, + "persistent": true, + "inputFormat": "html", + "protected": false, + "dbIndex": false, + "case": "", + "truncateMultipleSpaces": false, + "encrypted": false, + "redrawOn": "", + "clearOnHide": true, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "allowCalculateOverride": false, + "validateOn": "change", + "validate": { + "required": false, + "pattern": "", + "customMessage": "", + "custom": "", + "customPrivate": false, + "json": "", + "minLength": "", + "maxLength": "", + "minWords": "", + "maxWords": "", + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "unique": false, + "errorLabel": "", + "errors": "", + "key": "describeRiskManagementExposureReductionMethodsIntendedOrImplementedAndIndicateTheStatusOfAnyMeasures", + "tags": [], + "properties": {}, + "conditional": { + "show": null, + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "textarea", + "rows": 6, + "wysiwyg": false, + "input": true, + "refreshOn": "", + "dataGridLabel": false, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputMask": "", + "fixedSize": true, + "id": "ew7umzp", + "defaultValue": "" + }, + { + "html": "

Provide a reference to signed and stamped design drawings provided by a professional engineer for works installed at site boundaries to prevent recontamination of a site.

", + "label": "Content", + "customClass": "", + "refreshOnChange": false, + "hidden": false, + "modalEdit": false, + "key": "content39", + "tags": [], + "properties": {}, + "conditional": { + "show": null, + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "content", + "input": false, + "tableView": false, + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "id": "e8a6e6" + }, + { + "label": "", + "reorder": false, + "addAnotherPosition": "bottom", + "layoutFixed": false, + "enableRowGroups": false, + "initEmpty": false, + "tableView": false, + "defaultValue": [ + { + "report": "", + "page": "", + "orAppendix": "" + } + ], + "key": "references", + "type": "datagrid", + "input": true, + "components": [ + { + "title": "", + "collapsible": false, + "key": "panel4", + "type": "panel", + "label": "References", + "input": false, + "tableView": false, + "components": [ + { + "label": "Columns", + "columns": [ + { + "components": [ + { + "label": "Report #", + "tableView": true, + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "key": "report", + "type": "textfield", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "ev76fb" + } + ], + "width": 4, + "offset": 0, + "push": 0, + "pull": 0, + "size": "md", + "currentWidth": 4 + }, + { + "components": [ + { + "label": "Page #", + "tableView": true, + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "key": "page", + "type": "textfield", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "exu4dc8" + } + ], + "width": 4, + "offset": 0, + "push": 0, + "pull": 0, + "size": "md", + "currentWidth": 4 + }, + { + "components": [ + { + "label": "Appendix #", + "tableView": true, + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "key": "orAppendix", + "type": "textfield", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "e1a2r8o" + } + ], + "size": "md", + "width": 4, + "offset": 0, + "push": 0, + "pull": 0, + "currentWidth": 4 + } + ], + "key": "columns", + "type": "columns", + "input": false, + "tableView": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "hidden": false, + "clearOnHide": false, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "tree": false, + "lazyLoad": false, + "autoAdjust": false, + "id": "e9e5bm" + } + ], + "id": "e6l31cy0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "hidden": false, + "clearOnHide": false, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "tree": false, + "lazyLoad": false, + "theme": "default", + "breadcrumb": "default" + } + ], + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "tree": true, + "lazyLoad": false, + "disableAddingRemovingRows": false, + "id": "e2jy1yl" + } + ], + "id": "epn9oxk" + }, + { + "title": "SECTION III - Summary of Remediation Plan/Remediation", + "theme": "default", + "tooltip": "", + "customClass": "", + "collapsible": false, + "hidden": false, + "hideLabel": false, + "disabled": false, + "modalEdit": false, + "key": "sectionIiiSummaryOfRemediationPlanRemediation", + "tags": [], + "properties": {}, + "customConditional": "", + "conditional": { + "json": "", + "show": null, + "when": null, + "eq": "" + }, + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "panel", + "label": "Panel", + "breadcrumb": "default", + "tabindex": "", + "input": false, + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "clearOnHide": false, + "refreshOn": "", + "redrawOn": "", + "tableView": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "tree": false, + "lazyLoad": false, + "components": [ + { + "html": "

Remediation Standards and Schedule

", + "label": "Content", + "customClass": "", + "refreshOnChange": false, + "hidden": false, + "modalEdit": false, + "key": "content40", + "tags": [], + "properties": {}, + "conditional": { + "show": null, + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "content", + "input": false, + "tableView": false, + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "id": "ep2zw9j" + }, + { + "label": "Environmental medium assessed. Select all that apply. (If this SOSC is to support a Negative Determination Application, select N/A)", + "labelPosition": "top", + "optionsLabelPosition": "right", + "description": "", + "tooltip": "", + "customClass": "", + "tabindex": "", + "inline": false, + "hidden": false, + "hideLabel": false, + "autofocus": false, + "disabled": false, + "tableView": false, + "modalEdit": false, + "defaultValue": { + "soil": false, + "groundwater": false, + "surfaceWater": false, + "sediment": false, + "nA": false, + "vapour": false + }, + "values": [ + { + "label": "Soil", + "value": "soil", + "shortcut": "" + }, + { + "label": "Groundwater", + "value": "groundwater", + "shortcut": "" + }, + { + "label": "Surface Water", + "value": "surfaceWater", + "shortcut": "" + }, + { + "label": "Vapour", + "value": "vapour", + "shortcut": "" + }, + { + "label": "Sediment", + "value": "sediment", + "shortcut": "" + }, + { + "label": "N/A", + "value": "nA", + "shortcut": "" + } + ], + "persistent": true, + "protected": false, + "dbIndex": false, + "encrypted": false, + "redrawOn": "", + "clearOnHide": true, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "allowCalculateOverride": false, + "validate": { + "required": true, + "onlyAvailableItems": false, + "customMessage": "", + "custom": "", + "customPrivate": false, + "json": "", + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "errorLabel": "", + "minSelectedCountMessage": "", + "maxSelectedCountMessage": "", + "errors": "", + "key": "environmentalMediumAssessedSelectAllThatApplyIfThisSoscIsToSupportANegativeDeterminationApplicationSelectNA", + "tags": [], + "properties": {}, + "conditional": { + "show": null, + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "selectboxes", + "input": true, + "inputType": "checkbox", + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "unique": false, + "refreshOn": "", + "dataGridLabel": false, + "widget": null, + "validateOn": "change", + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "fieldSet": false, + "id": "e165oim" + }, + { + "label": "Soil", + "labelPosition": "top", + "description": "", + "tooltip": "", + "disableAddingRemovingRows": false, + "conditionalAddButton": "", + "reorder": false, + "addAnother": "", + "addAnotherPosition": "bottom", + "layoutFixed": false, + "enableRowGroups": false, + "initEmpty": false, + "customClass": "", + "tabindex": "", + "hidden": false, + "hideLabel": false, + "autofocus": false, + "disabled": false, + "tableView": false, + "modalEdit": false, + "defaultValue": [ + { + "aecUseTheSameAecAsForAeCsInSection46": "", + "coc": "", + "remediatedToTheFollowingStandardProposedOrCompleted": { + "numericalStandardGuidelineOrCriteria": false, + "siteSpecificNumericalStandard": false, + "backgroundConcentrationAttachProtocol4ApprovalIfApplicable": false, + "riskBased": false + }, + "remediationComplete": "", + "proposedOrActualCompletionDate": "00/00/0000" + } + ], + "persistent": true, + "protected": false, + "dbIndex": false, + "encrypted": false, + "redrawOn": "", + "clearOnHide": true, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "allowCalculateOverride": false, + "validateOn": "change", + "validate": { + "required": false, + "minLength": "", + "maxLength": "", + "customMessage": "", + "custom": "", + "customPrivate": false, + "json": "", + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "errorLabel": "", + "errors": "", + "key": "dataGrid8", + "tags": [], + "properties": {}, + "conditional": { + "show": true, + "when": "environmentalMediumAssessedSelectAllThatApplyIfThisSoscIsToSupportANegativeDeterminationApplicationSelectNA", + "eq": "soil", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "datagrid", + "input": true, + "components": [ + { + "title": "Soil", + "collapsible": false, + "hideLabel": true, + "key": "panel4", + "type": "panel", + "label": "", + "input": false, + "tableView": false, + "components": [ + { + "label": "AEC # (Use the same AEC# as for AECs in the table in Section 4.6)", + "tableView": true, + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "key": "aecUseTheSameAecAsForAeCsInSection46", + "type": "textfield", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "eaf7t1" + }, + { + "label": "COC", + "tableView": true, + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "key": "coc", + "type": "textfield", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "eoda2go" + }, + { + "label": "Remediated to the following standard (proposed or completed)", + "optionsLabelPosition": "right", + "tableView": false, + "values": [ + { + "label": "Numerical (standard, guideline or criteria)", + "value": "numericalStandardGuidelineOrCriteria", + "shortcut": "" + }, + { + "label": "Site-Specific numerical standard", + "value": "siteSpecificNumericalStandard", + "shortcut": "" + }, + { + "label": "Background concentration (attach protocol 4 approval if applicable)", + "value": "backgroundConcentrationAttachProtocol4ApprovalIfApplicable", + "shortcut": "" + }, + { + "label": "Risk-based", + "value": "riskBased", + "shortcut": "" + } + ], + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "onlyAvailableItems": false + }, + "key": "remediatedToTheFollowingStandardProposedOrCompleted", + "type": "selectboxes", + "input": true, + "inputType": "checkbox", + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "fieldSet": false, + "inline": false, + "id": "emv34m" + }, + { + "label": "Remediation complete", + "optionsLabelPosition": "right", + "inline": false, + "tableView": false, + "values": [ + { + "label": "Yes", + "value": "yes", + "shortcut": "" + }, + { + "label": "No", + "value": "no", + "shortcut": "" + }, + { + "label": "Remediation Planned", + "value": "remediationPlanned", + "shortcut": "" + } + ], + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "onlyAvailableItems": false + }, + "key": "remediationComplete", + "type": "radio", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "inputType": "radio", + "fieldSet": false, + "id": "ek8hrjd" + }, + { + "label": "Proposed or actual completion date", + "hideInputLabels": false, + "inputsLabelPosition": "top", + "useLocaleSettings": false, + "tableView": false, + "fields": { + "day": { + "hide": false, + "required": true, + "type": "number", + "placeholder": "" + }, + "month": { + "hide": false, + "required": true, + "type": "select", + "placeholder": "" + }, + "year": { + "hide": false, + "required": true, + "type": "number", + "placeholder": "" + } + }, + "defaultValue": "00/00/0000", + "key": "proposedOrActualCompletionDate", + "type": "day", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "dayFirst": false, + "id": "eb274z" + } + ], + "id": "eauzdys000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "hidden": false, + "clearOnHide": false, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "tree": false, + "lazyLoad": false, + "theme": "default", + "breadcrumb": "default" + } + ], + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "unique": false, + "refreshOn": "", + "dataGridLabel": false, + "widget": null, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "tree": true, + "lazyLoad": false, + "id": "eojass" + }, + { + "label": "Groundwater", + "labelPosition": "top", + "description": "", + "tooltip": "", + "disableAddingRemovingRows": false, + "conditionalAddButton": "", + "reorder": false, + "addAnother": "", + "addAnotherPosition": "bottom", + "layoutFixed": false, + "enableRowGroups": false, + "initEmpty": false, + "customClass": "", + "tabindex": "", + "hidden": false, + "hideLabel": false, + "autofocus": false, + "disabled": false, + "tableView": false, + "modalEdit": false, + "defaultValue": [ + { + "aecUseTheSameAecAsForAeCsInSection46": "", + "coc": "", + "remediatedToTheFollowingStandardProposedOrCompleted": { + "numericalStandardGuidelineOrCriteria": false, + "siteSpecificNumericalStandard": false, + "backgroundConcentrationAttachProtocol4ApprovalIfApplicable": false, + "riskBased": false + }, + "remediationComplete": "", + "proposedOrActualCompletionDate": "00/00/0000" + } + ], + "persistent": true, + "protected": false, + "dbIndex": false, + "encrypted": false, + "redrawOn": "", + "clearOnHide": true, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "allowCalculateOverride": false, + "validateOn": "change", + "validate": { + "required": false, + "minLength": "", + "maxLength": "", + "customMessage": "", + "custom": "", + "customPrivate": false, + "json": "", + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "errorLabel": "", + "errors": "", + "key": "dataGrid9", + "tags": [], + "properties": {}, + "conditional": { + "show": true, + "when": "environmentalMediumAssessedSelectAllThatApplyIfThisSoscIsToSupportANegativeDeterminationApplicationSelectNA", + "eq": "groundwater", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "datagrid", + "input": true, + "components": [ + { + "title": "Groundwater", + "collapsible": false, + "hideLabel": true, + "key": "groundwater", + "type": "panel", + "label": "", + "input": false, + "tableView": false, + "components": [ + { + "label": "AEC # (Use the same AEC# as for AECs in the table in Section 4.6)", + "tableView": true, + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "key": "aecUseTheSameAecAsForAeCsInSection46", + "type": "textfield", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "ej8l9ey" + }, + { + "label": "COC", + "tableView": true, + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "key": "coc", + "type": "textfield", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "e9w6crd" + }, + { + "label": "Remediated to the following standard (proposed or completed)", + "optionsLabelPosition": "right", + "tableView": false, + "values": [ + { + "label": "Numerical (standard, guideline or criteria)", + "value": "numericalStandardGuidelineOrCriteria", + "shortcut": "" + }, + { + "label": "Site-Specific numerical standard", + "value": "siteSpecificNumericalStandard", + "shortcut": "" + }, + { + "label": "Background concentration (attach protocol 4 approval if applicable)", + "value": "backgroundConcentrationAttachProtocol4ApprovalIfApplicable", + "shortcut": "" + }, + { + "label": "Risk-based", + "value": "riskBased", + "shortcut": "" + } + ], + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "onlyAvailableItems": false + }, + "key": "remediatedToTheFollowingStandardProposedOrCompleted", + "type": "selectboxes", + "input": true, + "inputType": "checkbox", + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "fieldSet": false, + "inline": false, + "id": "euyjc8g" + }, + { + "label": "Remediation complete", + "optionsLabelPosition": "right", + "inline": false, + "tableView": false, + "values": [ + { + "label": "Yes", + "value": "yes", + "shortcut": "" + }, + { + "label": "No", + "value": "no", + "shortcut": "" + }, + { + "label": "Remediation Planned", + "value": "remediationPlanned", + "shortcut": "" + } + ], + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "onlyAvailableItems": false + }, + "key": "remediationComplete", + "type": "radio", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "inputType": "radio", + "fieldSet": false, + "id": "ef329mn" + }, + { + "label": "Proposed or actual completion date", + "hideInputLabels": false, + "inputsLabelPosition": "top", + "useLocaleSettings": false, + "tableView": false, + "fields": { + "day": { + "hide": false, + "required": true, + "type": "number", + "placeholder": "" + }, + "month": { + "hide": false, + "required": true, + "type": "select", + "placeholder": "" + }, + "year": { + "hide": false, + "required": true, + "type": "number", + "placeholder": "" + } + }, + "defaultValue": "00/00/0000", + "key": "proposedOrActualCompletionDate", + "type": "day", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "dayFirst": false, + "id": "euj2r2l" + } + ], + "id": "ey0h0vl00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "hidden": false, + "clearOnHide": false, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "tree": false, + "lazyLoad": false, + "theme": "default", + "breadcrumb": "default" + } + ], + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "unique": false, + "refreshOn": "", + "dataGridLabel": false, + "widget": null, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "tree": true, + "lazyLoad": false, + "id": "ew0r1gt" + }, + { + "label": "Surface Water", + "labelPosition": "top", + "description": "", + "tooltip": "", + "disableAddingRemovingRows": false, + "conditionalAddButton": "", + "reorder": false, + "addAnother": "", + "addAnotherPosition": "bottom", + "layoutFixed": false, + "enableRowGroups": false, + "initEmpty": false, + "customClass": "", + "tabindex": "", + "hidden": false, + "hideLabel": false, + "autofocus": false, + "disabled": false, + "tableView": false, + "modalEdit": false, + "defaultValue": [ + { + "aecUseTheSameAecAsForAeCsInSection46": "", + "coc": "", + "remediatedToTheFollowingStandardProposedOrCompleted": { + "numericalStandardGuidelineOrCriteria": false, + "siteSpecificNumericalStandard": false, + "backgroundConcentrationAttachProtocol4ApprovalIfApplicable": false, + "riskBased": false + }, + "remediationComplete": "", + "proposedOrActualCompletionDate": "00/00/0000" + } + ], + "persistent": true, + "protected": false, + "dbIndex": false, + "encrypted": false, + "redrawOn": "", + "clearOnHide": true, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "allowCalculateOverride": false, + "validateOn": "change", + "validate": { + "required": false, + "minLength": "", + "maxLength": "", + "customMessage": "", + "custom": "", + "customPrivate": false, + "json": "", + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "errorLabel": "", + "errors": "", + "key": "dataGrid10", + "tags": [], + "properties": {}, + "conditional": { + "show": true, + "when": "environmentalMediumAssessedSelectAllThatApplyIfThisSoscIsToSupportANegativeDeterminationApplicationSelectNA", + "eq": "surfaceWater", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "datagrid", + "input": true, + "components": [ + { + "title": "Surface Water", + "collapsible": false, + "hideLabel": true, + "key": "surfaceWater", + "type": "panel", + "label": "", + "input": false, + "tableView": false, + "components": [ + { + "label": "AEC # (Use the same AEC# as for AECs in the table in Section 4.6)", + "tableView": true, + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "key": "aecUseTheSameAecAsForAeCsInSection46", + "type": "textfield", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "exhym4b" + }, + { + "label": "COC", + "tableView": true, + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "key": "coc", + "type": "textfield", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "edjxf9" + }, + { + "label": "Remediated to the following standard (proposed or completed)", + "optionsLabelPosition": "right", + "tableView": false, + "values": [ + { + "label": "Numerical (standard, guideline or criteria)", + "value": "numericalStandardGuidelineOrCriteria", + "shortcut": "" + }, + { + "label": "Site-Specific numerical standard", + "value": "siteSpecificNumericalStandard", + "shortcut": "" + }, + { + "label": "Background concentration (attach protocol 4 approval if applicable)", + "value": "backgroundConcentrationAttachProtocol4ApprovalIfApplicable", + "shortcut": "" + }, + { + "label": "Risk-based", + "value": "riskBased", + "shortcut": "" + } + ], + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "onlyAvailableItems": false + }, + "key": "remediatedToTheFollowingStandardProposedOrCompleted", + "type": "selectboxes", + "input": true, + "inputType": "checkbox", + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "fieldSet": false, + "inline": false, + "id": "eslf5sl" + }, + { + "label": "Remediation complete", + "optionsLabelPosition": "right", + "inline": false, + "tableView": false, + "values": [ + { + "label": "Yes", + "value": "yes", + "shortcut": "" + }, + { + "label": "No", + "value": "no", + "shortcut": "" + }, + { + "label": "Remediation Planned", + "value": "remediationPlanned", + "shortcut": "" + } + ], + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "onlyAvailableItems": false + }, + "key": "remediationComplete", + "type": "radio", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "inputType": "radio", + "fieldSet": false, + "id": "eyhnsyf" + }, + { + "label": "Proposed or actual completion date", + "hideInputLabels": false, + "inputsLabelPosition": "top", + "useLocaleSettings": false, + "tableView": false, + "fields": { + "day": { + "hide": false, + "required": true, + "type": "number", + "placeholder": "" + }, + "month": { + "hide": false, + "required": true, + "type": "select", + "placeholder": "" + }, + "year": { + "hide": false, + "required": true, + "type": "number", + "placeholder": "" + } + }, + "defaultValue": "00/00/0000", + "key": "proposedOrActualCompletionDate", + "type": "day", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "dayFirst": false, + "id": "ehez7s" + } + ], + "id": "el9aclo0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "hidden": false, + "clearOnHide": false, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "tree": false, + "lazyLoad": false, + "theme": "default", + "breadcrumb": "default" + } + ], + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "unique": false, + "refreshOn": "", + "dataGridLabel": false, + "widget": null, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "tree": true, + "lazyLoad": false, + "id": "eb6spa00000" + }, + { + "label": "Vapour", + "labelPosition": "top", + "description": "", + "tooltip": "", + "disableAddingRemovingRows": false, + "conditionalAddButton": "", + "reorder": false, + "addAnother": "", + "addAnotherPosition": "bottom", + "layoutFixed": false, + "enableRowGroups": false, + "initEmpty": false, + "customClass": "", + "tabindex": "", + "hidden": false, + "hideLabel": false, + "autofocus": false, + "disabled": false, + "tableView": false, + "modalEdit": false, + "defaultValue": [ + { + "aecUseTheSameAecAsForAeCsInSection46": "", + "coc": "", + "remediatedToTheFollowingStandardProposedOrCompleted": { + "numericalStandardGuidelineOrCriteria": false, + "siteSpecificNumericalStandard": false, + "backgroundConcentrationAttachProtocol4ApprovalIfApplicable": false, + "riskBased": false + }, + "remediationComplete": "", + "proposedOrActualCompletionDate": "00/00/0000" + } + ], + "persistent": true, + "protected": false, + "dbIndex": false, + "encrypted": false, + "redrawOn": "", + "clearOnHide": true, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "allowCalculateOverride": false, + "validateOn": "change", + "validate": { + "required": false, + "minLength": "", + "maxLength": "", + "customMessage": "", + "custom": "", + "customPrivate": false, + "json": "", + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "errorLabel": "", + "errors": "", + "key": "dataGrid11", + "tags": [], + "properties": {}, + "conditional": { + "show": true, + "when": "environmentalMediumAssessedSelectAllThatApplyIfThisSoscIsToSupportANegativeDeterminationApplicationSelectNA", + "eq": "vapour", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "datagrid", + "input": true, + "components": [ + { + "title": "Vapour", + "collapsible": false, + "hideLabel": true, + "key": "vapour", + "type": "panel", + "label": "", + "input": false, + "tableView": false, + "components": [ + { + "label": "AEC # (Use the same AEC# as for AECs in the table in Section 4.6)", + "tableView": true, + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "key": "aecUseTheSameAecAsForAeCsInSection46", + "type": "textfield", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "etqxeaii" + }, + { + "label": "COC", + "tableView": true, + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "key": "coc", + "type": "textfield", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "ec8vxle" + }, + { + "label": "Remediated to the following standard (proposed or completed)", + "optionsLabelPosition": "right", + "tableView": false, + "values": [ + { + "label": "Numerical (standard, guideline or criteria)", + "value": "numericalStandardGuidelineOrCriteria", + "shortcut": "" + }, + { + "label": "Site-Specific numerical standard", + "value": "siteSpecificNumericalStandard", + "shortcut": "" + }, + { + "label": "Background concentration (attach protocol 4 approval if applicable)", + "value": "backgroundConcentrationAttachProtocol4ApprovalIfApplicable", + "shortcut": "" + }, + { + "label": "Risk-based", + "value": "riskBased", + "shortcut": "" + } + ], + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "onlyAvailableItems": false + }, + "key": "remediatedToTheFollowingStandardProposedOrCompleted", + "type": "selectboxes", + "input": true, + "inputType": "checkbox", + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "fieldSet": false, + "inline": false, + "id": "exo08af" + }, + { + "label": "Remediation complete", + "optionsLabelPosition": "right", + "inline": false, + "tableView": false, + "values": [ + { + "label": "Yes", + "value": "yes", + "shortcut": "" + }, + { + "label": "No", + "value": "no", + "shortcut": "" + }, + { + "label": "Remediation Planned", + "value": "remediationPlanned", + "shortcut": "" + } + ], + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "onlyAvailableItems": false + }, + "key": "remediationComplete", + "type": "radio", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "inputType": "radio", + "fieldSet": false, + "id": "e86fmgcc" + }, + { + "label": "Proposed or actual completion date", + "hideInputLabels": false, + "inputsLabelPosition": "top", + "useLocaleSettings": false, + "tableView": false, + "fields": { + "day": { + "hide": false, + "required": true, + "type": "number", + "placeholder": "" + }, + "month": { + "hide": false, + "required": true, + "type": "select", + "placeholder": "" + }, + "year": { + "hide": false, + "required": true, + "type": "number", + "placeholder": "" + } + }, + "defaultValue": "00/00/0000", + "key": "proposedOrActualCompletionDate", + "type": "day", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "dayFirst": false, + "id": "et10s3fg" + } + ], + "id": "ehk7lsj000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "hidden": false, + "clearOnHide": false, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "tree": false, + "lazyLoad": false, + "theme": "default", + "breadcrumb": "default" + } + ], + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "unique": false, + "refreshOn": "", + "dataGridLabel": false, + "widget": null, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "tree": true, + "lazyLoad": false, + "id": "ec6dxnf" + }, + { + "label": "Sediment", + "labelPosition": "top", + "description": "", + "tooltip": "", + "disableAddingRemovingRows": false, + "conditionalAddButton": "", + "reorder": false, + "addAnother": "", + "addAnotherPosition": "bottom", + "layoutFixed": false, + "enableRowGroups": false, + "initEmpty": false, + "customClass": "", + "tabindex": "", + "hidden": false, + "hideLabel": false, + "autofocus": false, + "disabled": false, + "tableView": false, + "modalEdit": false, + "defaultValue": [ + { + "aecUseTheSameAecAsForAeCsInSection46": "", + "coc": "", + "remediatedToTheFollowingStandardProposedOrCompleted": { + "numericalStandardGuidelineOrCriteria": false, + "siteSpecificNumericalStandard": false, + "backgroundConcentrationAttachProtocol4ApprovalIfApplicable": false, + "riskBased": false + }, + "remediationComplete": "", + "proposedOrActualCompletionDate": "00/00/0000" + } + ], + "persistent": true, + "protected": false, + "dbIndex": false, + "encrypted": false, + "redrawOn": "", + "clearOnHide": true, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "allowCalculateOverride": false, + "validateOn": "change", + "validate": { + "required": false, + "minLength": "", + "maxLength": "", + "customMessage": "", + "custom": "", + "customPrivate": false, + "json": "", + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "errorLabel": "", + "errors": "", + "key": "dataGrid12", + "tags": [], + "properties": {}, + "conditional": { + "show": true, + "when": "environmentalMediumAssessedSelectAllThatApplyIfThisSoscIsToSupportANegativeDeterminationApplicationSelectNA", + "eq": "sediment", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "datagrid", + "input": true, + "components": [ + { + "title": "Sediment", + "collapsible": false, + "hideLabel": true, + "key": "sediment", + "type": "panel", + "label": "", + "input": false, + "tableView": false, + "components": [ + { + "label": "AEC # (Use the same AEC# as for AECs in the table in Section 4.6)", + "tableView": true, + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "key": "aecUseTheSameAecAsForAeCsInSection46", + "type": "textfield", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "e7jbx9j" + }, + { + "label": "COC", + "tableView": true, + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "key": "coc", + "type": "textfield", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "esfs5p" + }, + { + "label": "Remediated to the following standard (proposed or completed)", + "optionsLabelPosition": "right", + "tableView": false, + "values": [ + { + "label": "Numerical (standard, guideline or criteria)", + "value": "numericalStandardGuidelineOrCriteria", + "shortcut": "" + }, + { + "label": "Site-Specific numerical standard", + "value": "siteSpecificNumericalStandard", + "shortcut": "" + }, + { + "label": "Background concentration (attach protocol 4 approval if applicable)", + "value": "backgroundConcentrationAttachProtocol4ApprovalIfApplicable", + "shortcut": "" + }, + { + "label": "Risk-based", + "value": "riskBased", + "shortcut": "" + } + ], + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "onlyAvailableItems": false + }, + "key": "remediatedToTheFollowingStandardProposedOrCompleted1", + "type": "selectboxes", + "input": true, + "inputType": "checkbox", + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "fieldSet": false, + "inline": false, + "id": "euis3w" + }, + { + "label": "Remediation complete", + "optionsLabelPosition": "right", + "inline": false, + "tableView": false, + "values": [ + { + "label": "Yes", + "value": "yes", + "shortcut": "" + }, + { + "label": "No", + "value": "no", + "shortcut": "" + }, + { + "label": "Remediation Planned", + "value": "remediationPlanned", + "shortcut": "" + } + ], + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "onlyAvailableItems": false + }, + "key": "remediationComplete", + "type": "radio", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "inputType": "radio", + "fieldSet": false, + "id": "ek6jihq" + }, + { + "label": "Proposed or actual completion date", + "hideInputLabels": false, + "inputsLabelPosition": "top", + "useLocaleSettings": false, + "tableView": false, + "fields": { + "day": { + "hide": false, + "required": true, + "type": "number", + "placeholder": "" + }, + "month": { + "hide": false, + "required": true, + "type": "select", + "placeholder": "" + }, + "year": { + "hide": false, + "required": true, + "type": "number", + "placeholder": "" + } + }, + "defaultValue": "00/00/0000", + "key": "proposedOrActualCompletionDate", + "type": "day", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "dayFirst": false, + "id": "eu50tno" + } + ], + "id": "ejahpfm000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "hidden": false, + "clearOnHide": false, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "tree": false, + "lazyLoad": false, + "theme": "default", + "breadcrumb": "default" + } + ], + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "unique": false, + "refreshOn": "", + "dataGridLabel": false, + "widget": null, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "tree": true, + "lazyLoad": false, + "id": "exwpiia0" + } + ], + "id": "e3zicjv" + }, + { + "title": "SECTION IV - Summary of Contaminant Treatment or Removal", + "theme": "default", + "tooltip": "", + "customClass": "", + "collapsible": false, + "hidden": false, + "hideLabel": false, + "disabled": false, + "modalEdit": false, + "key": "sectionIvSummaryOfContaminantTreatmentOrRemoval", + "tags": [], + "properties": {}, + "customConditional": "", + "conditional": { + "json": "", + "show": null, + "when": null, + "eq": "" + }, + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "panel", + "label": "Panel", + "breadcrumb": "default", + "tabindex": "", + "input": false, + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "clearOnHide": false, + "refreshOn": "", + "redrawOn": "", + "tableView": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "tree": false, + "lazyLoad": false, + "components": [ + { + "html": "

 

Identify and describe all contamination removed from or treated on-site. Ensure Part 6 is completed regarding the relocation of waste and non-waste soil.

Provide references to figure(s) showing the lateral and vertical extent of any treated or removed contamination. Confirmatory sample locations and corresponding analytical results shall be shown on each figure and in tabular form with reference to applicable standards:

 

In the AEC column, specify as n/a (not applicable) if remediation or assessment is not required in this environmental medium.

", + "label": "Content", + "customClass": "", + "refreshOnChange": false, + "hidden": false, + "modalEdit": false, + "key": "content41", + "tags": [], + "properties": {}, + "conditional": { + "show": null, + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "content", + "input": false, + "tableView": false, + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "id": "e12mm2s" + }, + { + "label": "Data Grid", + "reorder": false, + "addAnotherPosition": "bottom", + "layoutFixed": false, + "enableRowGroups": false, + "initEmpty": false, + "hideLabel": true, + "tableView": false, + "defaultValue": [ + {} + ], + "key": "dataGrid13", + "type": "datagrid", + "input": true, + "components": [ + { + "title": "", + "theme": "default", + "tooltip": "", + "customClass": "", + "collapsible": false, + "hidden": false, + "hideLabel": false, + "dataGridLabel": false, + "disabled": false, + "modalEdit": false, + "key": "panel", + "tags": [], + "properties": {}, + "customConditional": "", + "conditional": { + "json": "", + "show": null, + "when": null, + "eq": "" + }, + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "panel", + "label": "", + "breadcrumb": "default", + "tabindex": "", + "input": false, + "tableView": false, + "components": [ + { + "label": "AEC / APEC #", + "tableView": true, + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "key": "aecApec", + "type": "textfield", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "eqnfc6c" + }, + { + "label": "COC", + "tableView": true, + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "key": "coc", + "type": "textfield", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "ea1vh2f" + }, + { + "label": "Medium", + "placeholder": "(e.g. soil, groundwater, surface water, vapour, sediment, other)", + "tableView": true, + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "key": "medium", + "type": "textfield", + "input": true, + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "ekz1zpq" + }, + { + "label": "Material removed volume (m³ or L) ", + "tableView": true, + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "key": "materialRemovedVolumeMOrL", + "type": "textfield", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "e287y9a" + }, + { + "label": "Material removed disposal location (indicate if treated on- site)", + "tableView": true, + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "key": "textField", + "type": "textfield", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "enr29qh" + } + ], + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "clearOnHide": false, + "refreshOn": "", + "redrawOn": "", + "labelPosition": "top", + "description": "", + "errorLabel": "", + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "tree": false, + "lazyLoad": false, + "id": "etzpsl000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" + } + ], + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "tree": true, + "lazyLoad": false, + "disableAddingRemovingRows": false, + "id": "eiqygdt" + } + ], + "id": "ezlmejd" + }, + { + "title": "SECTION V - Summary of Residual Contamination After Remediation", + "theme": "default", + "tooltip": "", + "customClass": "", + "collapsible": false, + "hidden": false, + "hideLabel": false, + "disabled": false, + "modalEdit": false, + "key": "sectionVSummaryOfResidualContaminationAfterRemediation", + "tags": [], + "properties": {}, + "customConditional": "", + "conditional": { + "json": "", + "show": null, + "when": null, + "eq": "" + }, + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "panel", + "label": "Panel", + "breadcrumb": "default", + "tabindex": "", + "input": false, + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "clearOnHide": false, + "refreshOn": "", + "redrawOn": "", + "tableView": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "tree": false, + "lazyLoad": false, + "components": [ + { + "html": "

Identify and describe all contamination that exceeds CSR numerical standards, after the remediation described above has been implemented.

", + "label": "Content", + "customClass": "", + "refreshOnChange": false, + "hidden": false, + "modalEdit": false, + "key": "content42", + "tags": [], + "properties": {}, + "conditional": { + "show": null, + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "content", + "input": false, + "tableView": false, + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "id": "evqw2d" + }, + { + "label": "Data Grid", + "reorder": false, + "addAnotherPosition": "bottom", + "layoutFixed": false, + "enableRowGroups": false, + "initEmpty": false, + "hideLabel": true, + "tableView": false, + "defaultValue": [ + {} + ], + "key": "dataGrid14", + "type": "datagrid", + "input": true, + "components": [ + { + "title": "", + "collapsible": false, + "key": "panel10", + "type": "panel", + "label": "", + "input": false, + "tableView": false, + "components": [ + { + "label": "AEC / APEC #", + "labelPosition": "top", + "placeholder": "Use same # as for APECS above", + "description": "", + "tooltip": "", + "prefix": "", + "suffix": "", + "widget": { + "type": "input" + }, + "inputMask": "", + "displayMask": "", + "allowMultipleMasks": false, + "customClass": "", + "tabindex": "", + "autocomplete": "", + "hidden": false, + "hideLabel": false, + "showWordCount": false, + "showCharCount": false, + "mask": false, + "autofocus": false, + "spellcheck": true, + "disabled": false, + "tableView": true, + "modalEdit": false, + "multiple": false, + "persistent": true, + "inputFormat": "plain", + "protected": false, + "dbIndex": false, + "case": "", + "truncateMultipleSpaces": false, + "encrypted": false, + "redrawOn": "", + "clearOnHide": true, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "allowCalculateOverride": false, + "validateOn": "change", + "validate": { + "required": true, + "pattern": "", + "customMessage": "", + "custom": "", + "customPrivate": false, + "json": "", + "minLength": "", + "maxLength": "", + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "unique": false, + "errorLabel": "", + "errors": "", + "key": "aecApec", + "tags": [], + "properties": {}, + "conditional": { + "show": null, + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "textfield", + "input": true, + "refreshOn": "", + "dataGridLabel": false, + "addons": [], + "inputType": "text", + "id": "equan8wd", + "defaultValue": "" + }, + { + "label": "COC", + "tableView": true, + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "key": "coc", + "type": "textfield", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "e8l3z6" + }, + { + "label": "Medium", + "placeholder": "(e.g. soil, groundwater, surface water, vapour, sediment, other)", + "tableView": true, + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "key": "medium", + "type": "textfield", + "input": true, + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "e5nxmnx" + }, + { + "label": "Maximum measured concentration (indicate units)", + "labelPosition": "top", + "placeholder": "", + "description": "", + "tooltip": "", + "prefix": "", + "suffix": "", + "widget": { + "type": "input" + }, + "inputMask": "", + "displayMask": "", + "allowMultipleMasks": false, + "customClass": "", + "tabindex": "", + "autocomplete": "", + "hidden": false, + "hideLabel": false, + "showWordCount": false, + "showCharCount": false, + "mask": false, + "autofocus": false, + "spellcheck": true, + "disabled": false, + "tableView": true, + "modalEdit": false, + "multiple": false, + "persistent": true, + "inputFormat": "plain", + "protected": false, + "dbIndex": false, + "case": "", + "truncateMultipleSpaces": false, + "encrypted": false, + "redrawOn": "", + "clearOnHide": true, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "allowCalculateOverride": false, + "validateOn": "change", + "validate": { + "required": true, + "pattern": "", + "customMessage": "", + "custom": "", + "customPrivate": false, + "json": "", + "minLength": "", + "maxLength": "", + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "unique": false, + "errorLabel": "", + "errors": "", + "key": "materialRemovedVolumeMOrL", + "tags": [], + "properties": {}, + "conditional": { + "show": null, + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "textfield", + "input": true, + "refreshOn": "", + "dataGridLabel": false, + "addons": [], + "inputType": "text", + "id": "eknlfdn", + "defaultValue": "" + }, + { + "label": "Extent of Contamination (area m²)", + "labelPosition": "top", + "placeholder": "", + "description": "", + "tooltip": "", + "prefix": "", + "suffix": "", + "widget": { + "type": "input" + }, + "inputMask": "", + "displayMask": "", + "allowMultipleMasks": false, + "customClass": "", + "tabindex": "", + "autocomplete": "", + "hidden": false, + "hideLabel": false, + "showWordCount": false, + "showCharCount": false, + "mask": false, + "autofocus": false, + "spellcheck": true, + "disabled": false, + "tableView": true, + "modalEdit": false, + "multiple": false, + "persistent": true, + "inputFormat": "plain", + "protected": false, + "dbIndex": false, + "case": "", + "truncateMultipleSpaces": false, + "encrypted": false, + "redrawOn": "", + "clearOnHide": true, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "allowCalculateOverride": false, + "validateOn": "change", + "validate": { + "required": true, + "pattern": "", + "customMessage": "", + "custom": "", + "customPrivate": false, + "json": "", + "minLength": "", + "maxLength": "", + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "unique": false, + "errorLabel": "", + "errors": "", + "key": "textField", + "tags": [], + "properties": {}, + "conditional": { + "show": null, + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "textfield", + "input": true, + "refreshOn": "", + "dataGridLabel": false, + "addons": [], + "inputType": "text", + "id": "e64bv9p", + "defaultValue": "" + }, + { + "label": "Extent of contamination (depth range (m))", + "labelPosition": "top", + "placeholder": "", + "description": "", + "tooltip": "", + "prefix": "", + "suffix": "", + "widget": { + "type": "input" + }, + "inputMask": "", + "displayMask": "", + "allowMultipleMasks": false, + "customClass": "", + "tabindex": "", + "autocomplete": "", + "hidden": false, + "hideLabel": false, + "showWordCount": false, + "showCharCount": false, + "mask": false, + "autofocus": false, + "spellcheck": true, + "disabled": false, + "tableView": true, + "modalEdit": false, + "multiple": false, + "persistent": true, + "inputFormat": "plain", + "protected": false, + "dbIndex": false, + "case": "", + "truncateMultipleSpaces": false, + "encrypted": false, + "redrawOn": "", + "clearOnHide": true, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "allowCalculateOverride": false, + "validateOn": "change", + "validate": { + "required": true, + "pattern": "", + "customMessage": "", + "custom": "", + "customPrivate": false, + "json": "", + "minLength": "", + "maxLength": "", + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "unique": false, + "errorLabel": "", + "errors": "", + "key": "extentOfContaminationDepthRangeM", + "tags": [], + "properties": {}, + "conditional": { + "show": null, + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "textfield", + "input": true, + "refreshOn": "", + "dataGridLabel": false, + "addons": [], + "inputType": "text", + "id": "exmk0l", + "defaultValue": "" + } + ], + "id": "esvz3la0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "hidden": false, + "clearOnHide": false, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "tree": false, + "lazyLoad": false, + "theme": "default", + "breadcrumb": "default" + } + ], + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "tree": true, + "lazyLoad": false, + "disableAddingRemovingRows": false, + "id": "eo9nnrn" + } + ], + "id": "er09bl" + }, + { + "html": "

 

5.6 Remediation Issues

 

", + "label": "Content", + "customClass": "", + "refreshOnChange": false, + "hidden": false, + "modalEdit": false, + "key": "content43", + "tags": [], + "properties": {}, + "conditional": { + "show": null, + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "content", + "input": false, + "tableView": false, + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "id": "ehwovt" + }, + { + "label": "Identify any issues regarding investigations or interpretations if the PSI and DSI information may not satisfy the requirements of CSR Sections 58 and 59 and applicable protocols and guidance documents. Briefly describe how these deficiencies will be addressed (examples include destroyed wells, completion of detailed delineation following building demolition or other proposed work at a later stage of remediation). ", + "labelPosition": "top", + "placeholder": "", + "description": "", + "tooltip": "", + "prefix": "", + "suffix": "", + "widget": { + "type": "input" + }, + "displayMask": "", + "editor": "", + "autoExpand": false, + "customClass": "", + "tabindex": "", + "autocomplete": "", + "hidden": false, + "hideLabel": false, + "showWordCount": false, + "showCharCount": false, + "autofocus": false, + "spellcheck": true, + "disabled": false, + "tableView": true, + "modalEdit": false, + "multiple": false, + "persistent": true, + "inputFormat": "html", + "protected": false, + "dbIndex": false, + "case": "", + "truncateMultipleSpaces": false, + "encrypted": false, + "redrawOn": "", + "clearOnHide": true, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "allowCalculateOverride": false, + "validateOn": "change", + "validate": { + "required": false, + "pattern": "", + "customMessage": "", + "custom": "", + "customPrivate": false, + "json": "", + "minLength": "", + "maxLength": "", + "minWords": "", + "maxWords": "", + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "unique": false, + "errorLabel": "", + "errors": "", + "key": "textArea", + "tags": [], + "properties": {}, + "conditional": { + "show": null, + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "textarea", + "rows": 12, + "wysiwyg": false, + "input": true, + "refreshOn": "", + "dataGridLabel": false, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputMask": "", + "fixedSize": true, + "id": "e3l2fgh", + "defaultValue": "" + }, + { + "html": "

Part 6 - Summary of Soil Management

", + "label": "Content", + "customClass": "", + "refreshOnChange": false, + "hidden": false, + "modalEdit": false, + "key": "content44", + "tags": [], + "properties": {}, + "conditional": { + "show": null, + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "content", + "input": false, + "tableView": false, + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "id": "e80swfv" + }, + { + "label": "Was soil relocated from the source site?", + "labelPosition": "top", + "optionsLabelPosition": "right", + "description": "", + "tooltip": "", + "customClass": "", + "tabindex": "", + "inline": false, + "hidden": false, + "hideLabel": false, + "autofocus": false, + "disabled": false, + "tableView": false, + "modalEdit": false, + "values": [ + { + "label": "Yes", + "value": "yes", + "shortcut": "" + }, + { + "label": "No", + "value": "no", + "shortcut": "" + } + ], + "dataType": "", + "persistent": true, + "protected": false, + "dbIndex": false, + "encrypted": false, + "redrawOn": "", + "clearOnHide": true, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "allowCalculateOverride": false, + "validate": { + "required": true, + "onlyAvailableItems": false, + "customMessage": "", + "custom": "", + "customPrivate": false, + "json": "", + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "errorLabel": "", + "errors": "", + "key": "wasSoilRelocatedFromTheSourceSite", + "tags": [], + "properties": {}, + "conditional": { + "show": null, + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "radio", + "input": true, + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "unique": false, + "refreshOn": "", + "dataGridLabel": false, + "widget": null, + "validateOn": "change", + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "inputType": "radio", + "fieldSet": false, + "id": "em6ei1p", + "defaultValue": "" + }, + { + "title": "Panel", + "theme": "default", + "tooltip": "", + "customClass": "", + "collapsible": false, + "hidden": false, + "hideLabel": true, + "disabled": false, + "modalEdit": false, + "key": "panel4", + "tags": [], + "properties": {}, + "customConditional": "", + "conditional": { + "json": "", + "show": true, + "when": "wasSoilRelocatedFromTheSourceSite", + "eq": "yes" + }, + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "panel", + "label": "Panel", + "breadcrumb": "default", + "tabindex": "", + "input": false, + "tableView": false, + "components": [ + { + "html": "

6.1 Waste Soil Management

", + "label": "Content", + "refreshOnChange": false, + "key": "content45", + "type": "content", + "input": false, + "tableView": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "id": "eubtd7o" + }, + { + "label": "Was waste soil relocated to a site authorized under Part 2 of the Environmental Management Act or an Approval in Principle to receive waste soil?", + "optionsLabelPosition": "right", + "inline": false, + "tableView": false, + "values": [ + { + "label": "Yes", + "value": "yes", + "shortcut": "" + }, + { + "label": "No", + "value": "no", + "shortcut": "" + } + ], + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "onlyAvailableItems": false + }, + "key": "wasWasteSoilRelocatedToASiteAuthorizedUnderPart2OfTheEnvironmentalManagementActOrAnApprovalInPrincipleToReceiveWasteSoil", + "type": "radio", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "inputType": "radio", + "fieldSet": false, + "id": "eioxo4w" + }, + { + "html": "

6.2 Non-Waste Soil Relocation

", + "label": "Content", + "refreshOnChange": false, + "key": "content46", + "type": "content", + "input": false, + "tableView": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "id": "efcqmu3" + }, + { + "label": "Was non-waste soil relocated to a receiving site?", + "optionsLabelPosition": "right", + "inline": false, + "tableView": false, + "values": [ + { + "label": "Yes", + "value": "yes", + "shortcut": "" + }, + { + "label": "No", + "value": "no", + "shortcut": "" + } + ], + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "onlyAvailableItems": false + }, + "key": "wasNonWasteSoilRelocatedToAReceivingSite", + "type": "radio", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "inputType": "radio", + "fieldSet": false, + "id": "e7iq2oh" + }, + { + "label": "Was notification provided according to section 55 (1.1) of the Environmental Management Act? ", + "optionsLabelPosition": "right", + "inline": false, + "tableView": false, + "values": [ + { + "label": "Yes", + "value": "yes", + "shortcut": "" + }, + { + "label": "No", + "value": "no", + "shortcut": "" + } + ], + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "onlyAvailableItems": false + }, + "key": "wasNotificationProvidedAccordingToSection5511OfTheEnvironmentalManagementAct", + "type": "radio", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "inputType": "radio", + "fieldSet": false, + "id": "ewp4le7" + }, + { + "label": "If no, indicate which exemption applies (see CSR section 42) (Please select all that apply)", + "optionsLabelPosition": "right", + "tableView": false, + "defaultValue": { + "siteHasNotBeenUsedForASpecifiedIndustrialOrCommercialUse": false, + "forNonHighRiskSitesTheAmountOfSoilRemovedIsLessThan30CubicMetres": false, + "soilWasRelocatedToASiteWhereTheDepositIsAuthorizedByPermitApprovalOrderWasteManagementPlanAndOperationalCertificate": false, + "receivingSiteIsOutsideOfBritishColumbia": false, + "receivingSiteIsOnFederalLandOtherThanAReserveWithinTheMeaningOfTheIndianActCanada": false, + "sourceSiteHasNotBeenUsedOtherThanForALowImpactLandUseOrMiningOfMarlEarthSoilPeatSandGravelDimensionStoneRockOrAnyNaturalSubstanceThatIsUsedForAConstructionPurposeOnLandAndTheSoilWasIExtractedInAccordanceWithAPermitUnderTheMinesActAndIiTransportedDirectlyToTheReceivingSite": false, + "soilIsPreload": false, + "soilIsWinterMaintenanceSand": false + }, + "values": [ + { + "label": "Site has not been used for a specified industrial or commercial use", + "value": "siteHasNotBeenUsedForASpecifiedIndustrialOrCommercialUse", + "shortcut": "" + }, + { + "label": "For non-high risk sites, the amount of soil removed is less than 30 cubic metres", + "value": "forNonHighRiskSitesTheAmountOfSoilRemovedIsLessThan30CubicMetres", + "shortcut": "" + }, + { + "label": "Soil was relocated to a site where the deposit is authorized by permit, approval, order, waste management plan and operational certificate", + "value": "soilWasRelocatedToASiteWhereTheDepositIsAuthorizedByPermitApprovalOrderWasteManagementPlanAndOperationalCertificate", + "shortcut": "" + }, + { + "label": "Receiving site is outside of British Columbia", + "value": "receivingSiteIsOutsideOfBritishColumbia", + "shortcut": "" + }, + { + "label": "Receiving site is on federal land, other than a reserve within the meaning of the Indian Act (Canada)", + "value": "receivingSiteIsOnFederalLandOtherThanAReserveWithinTheMeaningOfTheIndianActCanada", + "shortcut": "" + }, + { + "label": "Source site has not been used other than for a low-impact land use or mining of marl, earth, soil, peat, sand, gravel, dimension stone, rock or any natural substance that is used for a construction purpose on land and the soil was: (i) extracted in accordance with a permit under the Mines Act, and (ii) transported directly to the receiving site", + "value": "sourceSiteHasNotBeenUsedOtherThanForALowImpactLandUseOrMiningOfMarlEarthSoilPeatSandGravelDimensionStoneRockOrAnyNaturalSubstanceThatIsUsedForAConstructionPurposeOnLandAndTheSoilWasIExtractedInAccordanceWithAPermitUnderTheMinesActAndIiTransportedDirectlyToTheReceivingSite", + "shortcut": "" + }, + { + "label": "Soil is preload", + "value": "soilIsPreload", + "shortcut": "" + }, + { + "label": "Soil is winter-maintenance sand", + "value": "soilIsWinterMaintenanceSand", + "shortcut": "" + } + ], + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "onlyAvailableItems": false + }, + "key": "ifNoIndicateWhichExemptionAppliesSeeCsrSection42PleaseSelectAllThatApply", + "conditional": { + "show": true, + "when": "wasNotificationProvidedAccordingToSection5511OfTheEnvironmentalManagementAct", + "eq": "no" + }, + "type": "selectboxes", + "input": true, + "inputType": "checkbox", + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "fieldSet": false, + "inline": false, + "id": "ey50ioo" + } + ], + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "clearOnHide": false, + "refreshOn": "", + "redrawOn": "", + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "tree": false, + "lazyLoad": false, + "id": "en97uhj" + }, + { + "html": "

Part 7 - Recomendation of Approved Professionals

", + "label": "Content", + "customClass": "", + "refreshOnChange": false, + "hidden": false, + "modalEdit": false, + "key": "content47", + "tags": [], + "properties": {}, + "conditional": { + "show": null, + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "content", + "input": false, + "tableView": false, + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "id": "ep2pdaq" + }, + { + "label": "Recommendation under Protocol 6", + "labelPosition": "top", + "optionsLabelPosition": "right", + "description": "", + "tooltip": "", + "customClass": "", + "tabindex": "", + "inline": false, + "hidden": false, + "hideLabel": false, + "autofocus": false, + "disabled": false, + "tableView": false, + "modalEdit": false, + "values": [ + { + "label": "Yes", + "value": "yes", + "shortcut": "" + }, + { + "label": "No", + "value": "no", + "shortcut": "" + } + ], + "dataType": "", + "persistent": true, + "protected": false, + "dbIndex": false, + "encrypted": false, + "redrawOn": "", + "clearOnHide": true, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "allowCalculateOverride": false, + "validate": { + "required": false, + "onlyAvailableItems": false, + "customMessage": "", + "custom": "", + "customPrivate": false, + "json": "", + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "errorLabel": "", + "errors": "", + "key": "recommendationUnderProtocol6", + "tags": [], + "properties": {}, + "conditional": { + "show": null, + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "radio", + "input": true, + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "unique": false, + "refreshOn": "", + "dataGridLabel": false, + "widget": null, + "validateOn": "change", + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "inputType": "radio", + "fieldSet": false, + "id": "e6idi1p", + "defaultValue": "" + }, + { + "label": "Direct to ministry application?", + "labelPosition": "top", + "optionsLabelPosition": "right", + "description": "", + "tooltip": "", + "customClass": "", + "tabindex": "", + "inline": false, + "hidden": false, + "hideLabel": false, + "autofocus": false, + "disabled": false, + "tableView": false, + "modalEdit": false, + "values": [ + { + "label": "Yes", + "value": "yes", + "shortcut": "" + }, + { + "label": "No", + "value": "no", + "shortcut": "" + } + ], + "dataType": "", + "persistent": true, + "protected": false, + "dbIndex": false, + "encrypted": false, + "redrawOn": "", + "clearOnHide": true, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "allowCalculateOverride": false, + "validate": { + "required": false, + "onlyAvailableItems": false, + "customMessage": "", + "custom": "", + "customPrivate": false, + "json": "", + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "errorLabel": "", + "errors": "", + "key": "directToMinistryApplication", + "tags": [], + "properties": {}, + "conditional": { + "show": null, + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "radio", + "input": true, + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "unique": false, + "refreshOn": "", + "dataGridLabel": false, + "widget": null, + "validateOn": "change", + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "inputType": "radio", + "fieldSet": false, + "id": "e9vcbi", + "defaultValue": "" + }, + { + "title": "SECTION I - Certification Document and Summary Recommendation", + "theme": "default", + "tooltip": "", + "customClass": "", + "collapsible": false, + "hidden": false, + "hideLabel": false, + "disabled": false, + "modalEdit": false, + "key": "panel9", + "tags": [], + "properties": {}, + "customConditional": "", + "conditional": { + "json": "", + "show": null, + "when": null, + "eq": "" + }, + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "panel", + "label": "Panel", + "breadcrumb": "default", + "tabindex": "", + "input": false, + "tableView": false, + "components": [ + { + "html": "

Based on the detailed technical information available for the site, as summarized in this Summary of Site Condition, I recommend that the following certification document be issued for the subject site.

", + "label": "Content", + "customClass": "", + "refreshOnChange": false, + "hidden": false, + "modalEdit": false, + "key": "content49", + "tags": [], + "properties": {}, + "conditional": { + "show": null, + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "content", + "input": false, + "tableView": false, + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "id": "e1y6n5q" + }, + { + "label": "Approved Professional Name", + "labelPosition": "top", + "placeholder": "", + "description": "", + "tooltip": "", + "prefix": "", + "suffix": "", + "widget": { + "type": "input" + }, + "inputMask": "", + "displayMask": "", + "allowMultipleMasks": false, + "customClass": "", + "tabindex": "", + "autocomplete": "", + "hidden": false, + "hideLabel": false, + "showWordCount": false, + "showCharCount": false, + "mask": false, + "autofocus": false, + "spellcheck": true, + "disabled": false, + "tableView": true, + "modalEdit": false, + "multiple": false, + "persistent": true, + "inputFormat": "plain", + "protected": false, + "dbIndex": false, + "case": "", + "truncateMultipleSpaces": false, + "encrypted": false, + "redrawOn": "", + "clearOnHide": true, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "allowCalculateOverride": false, + "validateOn": "change", + "validate": { + "required": true, + "pattern": "", + "customMessage": "", + "custom": "", + "customPrivate": false, + "json": "", + "minLength": "", + "maxLength": "", + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "unique": false, + "errorLabel": "", + "errors": "", + "key": "approvedProfessionalName", + "tags": [], + "properties": {}, + "conditional": { + "show": null, + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "textfield", + "input": true, + "refreshOn": "", + "dataGridLabel": false, + "addons": [], + "inputType": "text", + "id": "evgk94d", + "defaultValue": "" + }, + { + "label": "Please select those that apply", + "optionsLabelPosition": "right", + "tableView": false, + "values": [ + { + "label": "A Determination under section 44 of EMA", + "value": "aDeterminationUnderSection44OfEma", + "shortcut": "" + }, + { + "label": "An AiP under section 53 (1) of EMA", + "value": "anAiPUnderSection531OfEma", + "shortcut": "" + }, + { + "label": "A CoC under section 53(3) of EMA ", + "value": "aCoCUnderSection533OfEma", + "shortcut": "" + }, + { + "label": "A Site Risk Reclassification", + "value": "aSiteRiskReclassification", + "shortcut": "" + }, + { + "label": "Other", + "value": "other", + "shortcut": "" + } + ], + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "onlyAvailableItems": false + }, + "key": "pleaseSelectThoseThatApply", + "type": "selectboxes", + "input": true, + "inputType": "checkbox", + "defaultValue": { + "aDeterminationUnderSection44OfEma": false, + "anAiPUnderSection531OfEma": false, + "aCoCUnderSection533OfEma": false, + "aSiteRiskReclassification": false, + "other": false + }, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "fieldSet": false, + "inline": false, + "id": "ebm3fb" + }, + { + "label": "Describe:", + "labelPosition": "top", + "placeholder": "", + "description": "", + "tooltip": "", + "prefix": "", + "suffix": "", + "widget": { + "type": "input" + }, + "displayMask": "", + "editor": "", + "autoExpand": false, + "customClass": "", + "tabindex": "", + "autocomplete": "", + "hidden": false, + "hideLabel": false, + "showWordCount": false, + "showCharCount": false, + "autofocus": false, + "spellcheck": true, + "disabled": false, + "tableView": true, + "modalEdit": false, + "multiple": false, + "persistent": true, + "inputFormat": "html", + "protected": false, + "dbIndex": false, + "case": "", + "truncateMultipleSpaces": false, + "encrypted": false, + "redrawOn": "", + "clearOnHide": true, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "allowCalculateOverride": false, + "validateOn": "change", + "validate": { + "required": true, + "pattern": "", + "customMessage": "", + "custom": "", + "customPrivate": false, + "json": "", + "minLength": "", + "maxLength": "", + "minWords": "", + "maxWords": "", + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "unique": false, + "errorLabel": "", + "errors": "", + "key": "describe1", + "tags": [], + "properties": {}, + "conditional": { + "show": "", + "when": "", + "eq": "", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "textarea", + "rows": 3, + "wysiwyg": false, + "input": true, + "refreshOn": "", + "dataGridLabel": false, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputMask": "", + "fixedSize": true, + "id": "e6u9cg", + "defaultValue": "" + }, + { + "html": "

Although I understand that the basis of such recommendations should only be formally evaluated by reference to detailed technical guidance, the primary basis of this recommendation or these recommendations is as follows:

", + "label": "Content", + "customClass": "", + "refreshOnChange": false, + "hidden": false, + "modalEdit": false, + "key": "content50", + "tags": [], + "properties": {}, + "conditional": { + "show": null, + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "content", + "input": false, + "tableView": false, + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "id": "e2cnv1r" + }, + { + "html": "

 

Approved Professional Recommendation

", + "label": "Content", + "customClass": "", + "refreshOnChange": false, + "hidden": false, + "modalEdit": false, + "key": "content51", + "tags": [], + "properties": {}, + "conditional": { + "show": null, + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "content", + "input": false, + "tableView": false, + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "id": "ehkcebn" + }, + { + "label": "For a recommendation for a Determination", + "optionsLabelPosition": "right", + "inline": false, + "tableView": false, + "values": [ + { + "label": "Yes", + "value": "yes", + "shortcut": "" + }, + { + "label": "No", + "value": "no", + "shortcut": "" + } + ], + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "onlyAvailableItems": false + }, + "key": "forARecommendationForADetermination", + "type": "radio", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "inputType": "radio", + "fieldSet": false, + "id": "e6m3fu" + }, + { + "label": "For a recommendation for an Approval in Principle and for a Certificate of Compliance", + "optionsLabelPosition": "right", + "inline": false, + "tableView": false, + "values": [ + { + "label": "Yes", + "value": "yes", + "shortcut": "" + }, + { + "label": "No", + "value": "no", + "shortcut": "" + } + ], + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "onlyAvailableItems": false + }, + "key": "forARecommendationForanApprovalInPrinciple", + "type": "radio", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "inputType": "radio", + "fieldSet": false, + "id": "es27vr8" + }, + { + "label": "For a recommendation for a Site Risk Reclassification", + "labelPosition": "top", + "optionsLabelPosition": "right", + "description": "", + "tooltip": "", + "customClass": "", + "tabindex": "", + "inline": false, + "hidden": false, + "hideLabel": false, + "autofocus": false, + "disabled": false, + "tableView": false, + "modalEdit": false, + "values": [ + { + "label": "Yes", + "value": "yes", + "shortcut": "" + }, + { + "label": "No", + "value": "no", + "shortcut": "" + } + ], + "dataType": "", + "persistent": true, + "protected": false, + "dbIndex": false, + "encrypted": false, + "redrawOn": "", + "clearOnHide": true, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "allowCalculateOverride": false, + "validate": { + "required": true, + "onlyAvailableItems": false, + "customMessage": "", + "custom": "", + "customPrivate": false, + "json": "", + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "errorLabel": "", + "errors": "", + "key": "forARecommendationForADetermination2", + "tags": [], + "properties": {}, + "conditional": { + "show": null, + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "radio", + "input": true, + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "unique": false, + "refreshOn": "", + "dataGridLabel": false, + "widget": null, + "validateOn": "change", + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "inputType": "radio", + "fieldSet": false, + "id": "ef23oc7", + "defaultValue": "" + }, + { + "title": "Panel", + "theme": "default", + "tooltip": "", + "customClass": "", + "collapsible": false, + "hidden": false, + "hideLabel": true, + "disabled": false, + "modalEdit": false, + "key": "panel5", + "tags": [], + "properties": {}, + "customConditional": "", + "conditional": { + "json": "", + "show": true, + "when": "forARecommendationForADetermination", + "eq": "yes" + }, + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "panel", + "label": "Panel", + "breadcrumb": "default", + "tabindex": "", + "input": false, + "tableView": false, + "components": [ + { + "html": "

For a Recommendation for a Determination

", + "label": "Content", + "refreshOnChange": false, + "key": "content52", + "type": "content", + "input": false, + "tableView": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "id": "ep5zkki" + }, + { + "label": "Please select those that apply:", + "optionsLabelPosition": "right", + "inline": false, + "tableView": false, + "values": [ + { + "label": "On the basis of information provided and reviewed, it is my opinion that no CSR Schedule 2 activities have occurred at the subject site.", + "value": "onTheBasisOfInformationProvidedAndReviewedItIsMyOpinionThatNoCsrSchedule2ActivitiesHaveOccurredAtTheSubjectSite", + "shortcut": "" + }, + { + "label": "CSR Schedule 2 activities are known or suspected to have occurred at the subject site, therefore in my opinion contaminants may have been released onto the subject site so that the site would be classified as a contaminated site in accordance with the CSR.", + "value": "csrSchedule2ActivitiesAreKnownOrSuspectedToHaveOccurredAtTheSubjectSiteThereforeInMyOpinionContaminantsMayHaveBeenReleasedOntoTheSubjectSiteSoThatTheSiteWouldBeClassifiedAsAContaminatedSiteInAccordanceWithTheCsr", + "shortcut": "" + }, + { + "label": "CSR Schedule 2 activities are known or suspected to have occurred at the subject site, but it is my opinion that the specific nature of such activities would not result in contamination so that the site would be classified as a contaminated site in accordance with the CSR", + "value": "csrSchedule2ActivitiesAreKnownOrSuspectedToHaveOccurredAtTheSubjectSiteButItIsMyOpinionThatTheSpecificNatureOfSuchActivitiesWouldNotResultInContaminationSoThatTheSiteWouldBeClassifiedAsAContaminatedSiteInAccordanceWithTheCsr", + "shortcut": "" + } + ], + "key": "pleaseSelectThoseThatApply1", + "type": "radio", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "onlyAvailableItems": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "inputType": "radio", + "fieldSet": false, + "id": "eax6pvb" + }, + { + "label": "Preliminary Site Investigation addressing all identified areas of potential environmental concern (APECs) and potential contaminants of concern (PCOCs) was completed. No substances were identified in concentrations exceeding those identified in BC CSR Schedules 3.1, 3.2, 3.3 or 3.4, as applicable. All PCOCs have been listed in Schedule B of the draft Determination.", + "tableView": false, + "key": "preliminarySiteInvestigationAddressingAllIdentifiedAreasOfPotentialEnvironmentalConcernApeCsAndPotentialContaminantsOfConcernPcoCsWasCompletedNoSubstancesWereIdentifiedInConcentrationsExceedingThoseIdentifiedInBcCsrSchedules313233Or34AsApplicableAllPcoCsHaveBeenListedInScheduleBOfTheDraftDetermination", + "type": "checkbox", + "input": true, + "defaultValue": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": true, + "labelPosition": "right", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "inputType": "checkbox", + "value": "", + "name": "", + "id": "emb80v" + } + ], + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "clearOnHide": false, + "refreshOn": "", + "redrawOn": "", + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "tree": false, + "lazyLoad": false, + "id": "emq5me" + }, + { + "title": "Panel", + "theme": "default", + "tooltip": "", + "customClass": "", + "collapsible": false, + "hidden": false, + "hideLabel": true, + "disabled": false, + "modalEdit": false, + "key": "panel6", + "tags": [], + "properties": {}, + "customConditional": "", + "conditional": { + "json": "", + "show": true, + "when": "forARecommendationForanApprovalInPrinciple", + "eq": "yes" + }, + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "panel", + "label": "Panel", + "breadcrumb": "default", + "tabindex": "", + "input": false, + "tableView": false, + "components": [ + { + "html": "

For a recommendation for an Approval in Principle and for a Certificate of Compliance

", + "label": "Content", + "refreshOnChange": false, + "key": "content53", + "type": "content", + "input": false, + "tableView": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "id": "eht7ie" + }, + { + "label": "A Preliminary Site Investigation addressing all identified areas of potential environmental concern (APECs) and potential contaminants of concern (PCOCs) was completed. One or more substances were identified at concentrations exceeding applicable standards or criteria in CSR Schedules 3.1, 3.2, 3.3 or 3.4", + "tableView": false, + "key": "aPreliminarySiteInvestigationAddressingAllIdentifiedAreasOfPotentialEnvironmentalConcernApeCsAndPotentialContaminantsOfConcernPcoCsWasCompletedOneOrMoreSubstancesWereIdentifiedAtConcentrationsExceedingApplicableStandardsOrCriteriaInCsrSchedules313233Or34", + "type": "checkbox", + "input": true, + "defaultValue": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": true, + "labelPosition": "right", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "inputType": "checkbox", + "value": "", + "name": "", + "id": "e83hcb" + }, + { + "label": "A Detailed Site Investigation addressing the locations and extent of all identified areas of environmental concern (AECs) and contaminants of concern (COCs) was completed ", + "tableView": false, + "defaultValue": false, + "key": "aDetailedSiteInvestigationAddressingTheLocationsAndExtentOfAllIdentifiedAreasOfEnvironmentalConcernAeCsAndContaminantsOfConcernCoCsWasCompletedAnd", + "type": "checkbox", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": true, + "labelPosition": "right", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "inputType": "checkbox", + "value": "", + "name": "", + "id": "eife04m" + }, + { + "label": "And:", + "optionsLabelPosition": "right", + "tableView": false, + "values": [ + { + "label": "Forms the basis of a remediation plan or risk assessment", + "value": "formsTheBasisOfARemediationPlanOrRiskAssessment", + "shortcut": "" + }, + { + "label": "Was the basis for remediation of the site", + "value": "wasTheBasisForRemediationOfTheSite", + "shortcut": "" + }, + { + "label": "The site is classified as non-high risk under Protocol 12", + "value": "theSiteIsClassifiedAsNonHighRiskUnderProtocol12", + "shortcut": "" + } + ], + "key": "and", + "conditional": { + "show": true, + "when": "aDetailedSiteInvestigationAddressingTheLocationsAndExtentOfAllIdentifiedAreasOfEnvironmentalConcernAeCsAndContaminantsOfConcernCoCsWasCompletedAnd", + "eq": "true" + }, + "type": "selectboxes", + "input": true, + "inputType": "checkbox", + "defaultValue": { + "formsTheBasisOfARemediationPlanOrRiskAssessment": false, + "wasTheBasisForRemediationOfTheSite": false, + "theSiteIsClassifiedAsNonHighRiskUnderProtocol12": false + }, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "onlyAvailableItems": false + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "fieldSet": false, + "inline": false, + "id": "ecf28xg" + }, + { + "label": "When this Summary of Site Condition was prepared", + "optionsLabelPosition": "right", + "inline": false, + "tableView": false, + "values": [ + { + "label": "Remediation plan had been prepared that provides for remediating all identified locations and respective extent of all contaminants to either CSR numerical or risk-based standards.", + "value": "remediationPlanHadBeenPreparedThatProvidesForRemediatingAllIdentifiedLocationsAndRespectiveExtentOfAllContaminantsToEitherCsrNumericalOrRiskBasedStandards", + "shortcut": "" + }, + { + "label": "All contaminants and their respective locations and extent as identified in investigation and risk assessment reports had been remediated to CSR numerical concentration or risk-based standards.", + "value": "allContaminantsAndTheirRespectiveLocationsAndExtentAsIdentifiedInInvestigationAndRiskAssessmentReportsHadBeenRemediatedToCsrNumericalConcentrationOrRiskBasedStandards", + "shortcut": "" + } + ], + "key": "whenThisSummaryOfSiteConditionWasPrepared", + "type": "radio", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "onlyAvailableItems": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "inputType": "radio", + "fieldSet": false, + "id": "e4himt9" + } + ], + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "clearOnHide": false, + "refreshOn": "", + "redrawOn": "", + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "tree": false, + "lazyLoad": false, + "id": "ecumlo6" + }, + { + "title": "Panel", + "theme": "default", + "tooltip": "", + "customClass": "", + "collapsible": false, + "hidden": false, + "hideLabel": true, + "disabled": false, + "modalEdit": false, + "key": "panel7", + "tags": [], + "properties": {}, + "customConditional": "", + "conditional": { + "json": "", + "show": true, + "when": "forARecommendationForADetermination2", + "eq": "yes" + }, + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "panel", + "label": "Panel", + "breadcrumb": "default", + "tabindex": "", + "input": false, + "tableView": false, + "components": [ + { + "html": "

For a recommendation for a Site Risk Reclassification

", + "label": "Content", + "refreshOnChange": false, + "key": "content54", + "type": "content", + "input": false, + "tableView": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "id": "ecvtkzl" + }, + { + "label": "Please select", + "optionsLabelPosition": "right", + "inline": false, + "tableView": false, + "values": [ + { + "label": "The site is classified as risk-managed high risk under Protocol 12.", + "value": "theSiteIsClassifiedAsRiskManagedHighRiskUnderProtocol12", + "shortcut": "" + }, + { + "label": "The site is classified as non-high risk under Protocol 12.", + "value": "theSiteIsClassifiedAsNonHighRiskUnderProtocol12", + "shortcut": "" + } + ], + "key": "pleaseSelect", + "type": "radio", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "onlyAvailableItems": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "inputType": "radio", + "fieldSet": false, + "id": "el01008" + } + ], + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "clearOnHide": false, + "refreshOn": "", + "redrawOn": "", + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "tree": false, + "lazyLoad": false, + "id": "edjdlg" + } + ], + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "clearOnHide": false, + "refreshOn": "", + "redrawOn": "", + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "tree": false, + "lazyLoad": false, + "id": "exfhnl" + }, + { + "title": "SECTION II - Substances Remediated or Standards or Criteria Applied", + "theme": "default", + "tooltip": "", + "customClass": "", + "collapsible": false, + "hidden": false, + "hideLabel": false, + "disabled": false, + "modalEdit": false, + "key": "sectionIiSubstancesRemediatedOrStandardsOrCriteriaApplied", + "tags": [], + "properties": {}, + "customConditional": "", + "conditional": { + "json": "", + "show": null, + "when": null, + "eq": "" + }, + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "panel", + "label": "Panel", + "breadcrumb": "default", + "tabindex": "", + "input": false, + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "clearOnHide": false, + "refreshOn": "", + "redrawOn": "", + "tableView": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "tree": false, + "lazyLoad": false, + "components": [ + { + "html": "

7.2 Substances remediated and standards or criteria applied

 

Contaminants have been remediated to comply with standards or criteria listed in the following table: (If the site required remediation and has been remediated.) 

", + "label": "Content", + "customClass": "", + "refreshOnChange": false, + "hidden": false, + "modalEdit": false, + "key": "content55", + "tags": [], + "properties": {}, + "conditional": { + "show": null, + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "content", + "input": false, + "tableView": false, + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "id": "egplxle" + }, + { + "label": "Substances Remediated", + "labelPosition": "top", + "optionsLabelPosition": "right", + "description": "", + "tooltip": "", + "customClass": "", + "tabindex": "", + "inline": false, + "hidden": false, + "hideLabel": false, + "autofocus": false, + "disabled": false, + "tableView": false, + "modalEdit": false, + "values": [ + { + "label": "N/A", + "value": "nA", + "shortcut": "" + }, + { + "label": "Soil", + "value": "soil", + "shortcut": "" + }, + { + "label": "Water", + "value": "water", + "shortcut": "" + }, + { + "label": "Vapour", + "value": "vapour", + "shortcut": "" + }, + { + "label": "Sediment", + "value": "sediment", + "shortcut": "" + }, + { + "label": "Other", + "value": "other", + "shortcut": "" + } + ], + "persistent": true, + "protected": false, + "dbIndex": false, + "encrypted": false, + "redrawOn": "", + "clearOnHide": true, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "allowCalculateOverride": false, + "validate": { + "required": false, + "onlyAvailableItems": false, + "customMessage": "", + "custom": "", + "customPrivate": false, + "json": "", + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "errorLabel": "", + "minSelectedCountMessage": "", + "maxSelectedCountMessage": "", + "errors": "", + "key": "substancesRemediated", + "tags": [], + "properties": {}, + "conditional": { + "show": null, + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "selectboxes", + "input": true, + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "unique": false, + "refreshOn": "", + "dataGridLabel": false, + "widget": null, + "validateOn": "change", + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "inputType": "checkbox", + "fieldSet": false, + "id": "ec3tb", + "defaultValue": {} + }, + { + "html": "

Use specific compound names as listed in the Contaminated Sites Regulation Schedules. Please list compounds in columns to aid review.

", + "label": "Content", + "customClass": "", + "refreshOnChange": false, + "hidden": false, + "modalEdit": false, + "key": "content56", + "tags": [], + "properties": {}, + "conditional": { + "show": null, + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "content", + "input": false, + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "tableView": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "id": "ep1zcdl" + }, + { + "label": "Soil", + "labelPosition": "top", + "description": "", + "tooltip": "", + "disableAddingRemovingRows": false, + "conditionalAddButton": "", + "reorder": false, + "addAnother": "", + "addAnotherPosition": "bottom", + "layoutFixed": false, + "enableRowGroups": false, + "initEmpty": false, + "customClass": "", + "tabindex": "", + "hidden": false, + "hideLabel": false, + "autofocus": false, + "disabled": false, + "tableView": false, + "modalEdit": false, + "defaultValue": [ + { + "numericalStandards": "", + "riskBasedStandards": "", + "p2SiteSpecificNumericalStandards": "", + "p4BackgroundConcentrations": "", + "whatLandUseHasTheSubstanceBeenRemediatedToInSoilPleaseSelectAllThatApply": { + "il": false, + "cl": false, + "rlhd": false, + "rlld": false, + "pl": false, + "al": false, + "wln": false, + "wlr": false + } + } + ], + "persistent": true, + "protected": false, + "dbIndex": false, + "encrypted": false, + "redrawOn": "", + "clearOnHide": true, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "allowCalculateOverride": false, + "validateOn": "change", + "validate": { + "required": false, + "minLength": "", + "maxLength": "", + "customMessage": "", + "custom": "", + "customPrivate": false, + "json": "", + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "errorLabel": "", + "errors": "", + "key": "soil", + "tags": [], + "properties": {}, + "conditional": { + "show": true, + "when": "substancesRemediated", + "eq": "soil", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "datagrid", + "input": true, + "components": [ + { + "title": "Soil", + "collapsible": false, + "hideLabel": true, + "key": "soil1", + "type": "panel", + "label": "Panel", + "input": false, + "tableView": false, + "components": [ + { + "label": "Numerical Standards", + "tableView": true, + "key": "numericalStandards", + "type": "textfield", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "emlo7p" + }, + { + "label": "Risk-based standards", + "tableView": true, + "key": "riskBasedStandards", + "type": "textfield", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "en9kpdt" + }, + { + "label": "P2 site specific numerical standards", + "tableView": true, + "key": "p2SiteSpecificNumericalStandards", + "type": "textfield", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "emstd8s" + }, + { + "label": "P4 Background concentrations", + "tableView": true, + "key": "p4BackgroundConcentrations", + "type": "textfield", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "ez67mug" + }, + { + "label": "What land use has the substance been remediated to in soil? (Please select all that apply)", + "optionsLabelPosition": "right", + "tableView": false, + "values": [ + { + "label": "IL", + "value": "il", + "shortcut": "" + }, + { + "label": "CL", + "value": "cl", + "shortcut": "" + }, + { + "label": "RLHD", + "value": "rlhd", + "shortcut": "" + }, + { + "label": "RLLD", + "value": "rlld", + "shortcut": "" + }, + { + "label": "PL", + "value": "pl", + "shortcut": "" + }, + { + "label": "AL", + "value": "al", + "shortcut": "" + }, + { + "label": "WLN", + "value": "wln", + "shortcut": "" + }, + { + "label": "WLR", + "value": "wlr", + "shortcut": "" + } + ], + "key": "whatLandUseHasTheSubstanceBeenRemediatedToInSoilPleaseSelectAllThatApply", + "type": "selectboxes", + "input": true, + "inputType": "checkbox", + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "onlyAvailableItems": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "fieldSet": false, + "inline": false, + "id": "estazfs" + } + ], + "id": "ef5nwt0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "hidden": false, + "clearOnHide": false, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "tree": false, + "lazyLoad": false, + "theme": "default", + "breadcrumb": "default" + } + ], + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "unique": false, + "refreshOn": "", + "dataGridLabel": false, + "widget": null, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "tree": true, + "lazyLoad": false, + "id": "edy1cum" + }, + { + "label": "Water", + "labelPosition": "top", + "description": "", + "tooltip": "", + "disableAddingRemovingRows": false, + "conditionalAddButton": "", + "reorder": false, + "addAnother": "", + "addAnotherPosition": "bottom", + "layoutFixed": false, + "enableRowGroups": false, + "initEmpty": false, + "customClass": "", + "tabindex": "", + "hidden": false, + "hideLabel": false, + "autofocus": false, + "disabled": false, + "tableView": false, + "modalEdit": false, + "defaultValue": [ + { + "numericalStandards": "", + "riskBasedStandards": "", + "p9BackgroundConcentration": "", + "whatWaterUseHasTheSubstanceBeenRemediatedToPleaseSelectAllThatApply": { + "aquaticLifeAwFresh": false, + "aquaticLifeAwMarine": false, + "irrigationIw": false, + "livestockLw": false, + "drinkingWaterDw": false, + "noWaterUse": false + } + } + ], + "persistent": true, + "protected": false, + "dbIndex": false, + "encrypted": false, + "redrawOn": "", + "clearOnHide": true, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "allowCalculateOverride": false, + "validateOn": "change", + "validate": { + "required": false, + "minLength": "", + "maxLength": "", + "customMessage": "", + "custom": "", + "customPrivate": false, + "json": "", + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "errorLabel": "", + "errors": "", + "key": "water", + "tags": [], + "properties": {}, + "conditional": { + "show": true, + "when": "substancesRemediated", + "eq": "water", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "datagrid", + "input": true, + "components": [ + { + "collapsible": false, + "hideLabel": true, + "key": "panel", + "type": "panel", + "label": "Panel", + "input": false, + "tableView": false, + "components": [ + { + "label": "Numerical Standards", + "tableView": true, + "key": "numericalStandards", + "type": "textfield", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "ehpkhqe" + }, + { + "label": "Risk-based standards", + "tableView": true, + "key": "riskBasedStandards", + "type": "textfield", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "ebrjb1o" + }, + { + "label": "P9 Background concentration", + "tableView": true, + "key": "p9BackgroundConcentration", + "type": "textfield", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "ee4f77p" + }, + { + "label": "What water use has the substance been remediated to? (Please select all that apply)", + "optionsLabelPosition": "right", + "tableView": false, + "values": [ + { + "label": "Aquatic Life (AW) Fresh", + "value": "aquaticLifeAwFresh", + "shortcut": "" + }, + { + "label": "Aquatic Life (AW) Marine", + "value": "aquaticLifeAwMarine", + "shortcut": "" + }, + { + "label": "Irrigation (IW)", + "value": "irrigationIw", + "shortcut": "" + }, + { + "label": "Livestock (LW)", + "value": "livestockLw", + "shortcut": "" + }, + { + "label": "Drinking Water (DW)", + "value": "drinkingWaterDw", + "shortcut": "" + }, + { + "label": "No Water Use", + "value": "noWaterUse", + "shortcut": "" + } + ], + "key": "whatWaterUseHasTheSubstanceBeenRemediatedToPleaseSelectAllThatApply", + "type": "selectboxes", + "input": true, + "inputType": "checkbox", + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "onlyAvailableItems": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "fieldSet": false, + "inline": false, + "id": "eq5jxk" + } + ], + "id": "eoq12ev000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "hidden": false, + "clearOnHide": false, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "tree": false, + "lazyLoad": false, + "title": "Panel", + "theme": "default", + "breadcrumb": "default" + } + ], + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "unique": false, + "refreshOn": "", + "dataGridLabel": false, + "widget": null, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "tree": true, + "lazyLoad": false, + "id": "e7or7bq" + }, + { + "label": "Vapour", + "labelPosition": "top", + "description": "", + "tooltip": "", + "disableAddingRemovingRows": false, + "conditionalAddButton": "", + "reorder": false, + "addAnother": "", + "addAnotherPosition": "bottom", + "layoutFixed": false, + "enableRowGroups": false, + "initEmpty": false, + "customClass": "", + "tabindex": "", + "hidden": false, + "hideLabel": false, + "autofocus": false, + "disabled": false, + "tableView": false, + "modalEdit": false, + "defaultValue": [ + { + "numericalStandards": "", + "riskBasedStandards": "" + } + ], + "persistent": true, + "protected": false, + "dbIndex": false, + "encrypted": false, + "redrawOn": "", + "clearOnHide": true, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "allowCalculateOverride": false, + "validateOn": "change", + "validate": { + "required": false, + "minLength": "", + "maxLength": "", + "customMessage": "", + "custom": "", + "customPrivate": false, + "json": "", + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "errorLabel": "", + "errors": "", + "key": "vapour", + "tags": [], + "properties": {}, + "conditional": { + "show": true, + "when": "substancesRemediated", + "eq": "vapour", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "datagrid", + "input": true, + "components": [ + { + "collapsible": false, + "hideLabel": true, + "key": "panel", + "type": "panel", + "label": "Panel", + "input": false, + "tableView": false, + "components": [ + { + "label": "Numerical Standards", + "tableView": true, + "key": "numericalStandards", + "type": "textfield", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "ecjqd2" + }, + { + "label": "Risk-based standards", + "tableView": true, + "key": "riskBasedStandards", + "type": "textfield", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "enjn8bkh" + } + ], + "id": "ett43n0j00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "hidden": false, + "clearOnHide": false, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "tree": false, + "lazyLoad": false, + "title": "Panel", + "theme": "default", + "breadcrumb": "default" + } + ], + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "unique": false, + "refreshOn": "", + "dataGridLabel": false, + "widget": null, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "tree": true, + "lazyLoad": false, + "id": "eghuf8" + }, + { + "label": "Sediment", + "labelPosition": "top", + "description": "", + "tooltip": "", + "disableAddingRemovingRows": false, + "conditionalAddButton": "", + "reorder": false, + "addAnother": "", + "addAnotherPosition": "bottom", + "layoutFixed": false, + "enableRowGroups": false, + "initEmpty": false, + "customClass": "", + "tabindex": "", + "hidden": false, + "hideLabel": false, + "autofocus": false, + "disabled": false, + "tableView": false, + "modalEdit": false, + "defaultValue": [ + { + "numericalStandards": "", + "riskBasedStandards": "" + } + ], + "persistent": true, + "protected": false, + "dbIndex": false, + "encrypted": false, + "redrawOn": "", + "clearOnHide": true, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "allowCalculateOverride": false, + "validateOn": "change", + "validate": { + "required": false, + "minLength": "", + "maxLength": "", + "customMessage": "", + "custom": "", + "customPrivate": false, + "json": "", + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "errorLabel": "", + "errors": "", + "key": "sediment", + "tags": [], + "properties": {}, + "conditional": { + "show": true, + "when": "substancesRemediated", + "eq": "sediment", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "datagrid", + "input": true, + "components": [ + { + "collapsible": false, + "hideLabel": true, + "key": "panel8", + "type": "panel", + "label": "Panel", + "input": false, + "tableView": false, + "components": [ + { + "label": "Numerical Standards", + "tableView": true, + "key": "numericalStandards", + "type": "textfield", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "esi48dn" + }, + { + "label": "Risk-based standards", + "tableView": true, + "key": "riskBasedStandards", + "type": "textfield", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "ee9w9ok" + } + ], + "id": "euuaaa0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "hidden": false, + "clearOnHide": false, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "tree": false, + "lazyLoad": false, + "title": "Panel", + "theme": "default", + "breadcrumb": "default" + } + ], + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "unique": false, + "refreshOn": "", + "dataGridLabel": false, + "widget": null, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "tree": true, + "lazyLoad": false, + "id": "ecd1ylh" + }, + { + "label": "Other", + "labelPosition": "top", + "description": "", + "tooltip": "", + "disableAddingRemovingRows": false, + "conditionalAddButton": "", + "reorder": false, + "addAnother": "", + "addAnotherPosition": "bottom", + "layoutFixed": false, + "enableRowGroups": false, + "initEmpty": false, + "customClass": "", + "tabindex": "", + "hidden": false, + "hideLabel": false, + "autofocus": false, + "disabled": false, + "tableView": false, + "modalEdit": false, + "defaultValue": [ + { + "numericalStandards": "", + "riskBasedStandards": "" + } + ], + "persistent": true, + "protected": false, + "dbIndex": false, + "encrypted": false, + "redrawOn": "", + "clearOnHide": true, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "allowCalculateOverride": false, + "validateOn": "change", + "validate": { + "required": false, + "minLength": "", + "maxLength": "", + "customMessage": "", + "custom": "", + "customPrivate": false, + "json": "", + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "errorLabel": "", + "errors": "", + "key": "other", + "tags": [], + "properties": {}, + "conditional": { + "show": true, + "when": "substancesRemediated", + "eq": "other", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "datagrid", + "input": true, + "components": [ + { + "collapsible": false, + "hideLabel": true, + "key": "panel8", + "type": "panel", + "label": "Panel", + "input": false, + "tableView": false, + "components": [ + { + "label": "Numerical Standards", + "tableView": true, + "key": "numericalStandards", + "type": "textfield", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "e5cfjgb" + }, + { + "label": "Risk-based standards", + "tableView": true, + "key": "riskBasedStandards", + "type": "textfield", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "e6efm7o" + } + ], + "id": "edr4h05000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "hidden": false, + "clearOnHide": false, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "tree": false, + "lazyLoad": false, + "title": "Panel", + "theme": "default", + "breadcrumb": "default" + } + ], + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "unique": false, + "refreshOn": "", + "dataGridLabel": false, + "widget": null, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "tree": true, + "lazyLoad": false, + "id": "efz782r" + }, + { + "title": "", + "theme": "default", + "tooltip": "", + "customClass": "", + "collapsible": false, + "hidden": false, + "hideLabel": false, + "disabled": false, + "modalEdit": false, + "key": "panel11", + "tags": [], + "properties": {}, + "customConditional": "", + "conditional": { + "json": "", + "show": null, + "when": null, + "eq": "" + }, + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "panel", + "label": "Panel", + "breadcrumb": "default", + "tabindex": "", + "input": false, + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "clearOnHide": false, + "refreshOn": "", + "redrawOn": "", + "tableView": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "tree": false, + "lazyLoad": false, + "components": [ + { + "html": "

The Director may accept the recommendations of an Approved Professional(s) involved in the review and submission of investigation, risk assessment or remediation reports based in part on the understanding that

", + "label": "Content", + "customClass": "", + "refreshOnChange": false, + "hidden": false, + "modalEdit": false, + "key": "content57", + "tags": [], + "properties": {}, + "conditional": { + "show": null, + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "content", + "input": false, + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "tableView": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "id": "e8rd8qj" + }, + { + "label": "As of the date of signing of this report the approved professional, or approved professionals if more than one, is/are member(s) in good standing of the Roster of Approved Professionals, as maintained by the ministry, and member(s) of the Contaminated Sites Approved Professionals Society (CSAP Society)", + "description": "", + "tooltip": "", + "shortcut": "", + "inputType": "checkbox", + "customClass": "", + "tabindex": "", + "hidden": false, + "hideLabel": false, + "autofocus": false, + "disabled": false, + "tableView": false, + "modalEdit": false, + "persistent": true, + "protected": false, + "dbIndex": false, + "encrypted": false, + "redrawOn": "", + "clearOnHide": true, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "allowCalculateOverride": false, + "validate": { + "required": true, + "customMessage": "", + "custom": "", + "customPrivate": false, + "json": "", + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "errorLabel": "", + "errors": "", + "key": "asOfTheDateOfSigningOfThisReportTheApprovedProfessionalOrApprovedProfessionalsIfMoreThanOneIsAreMemberSInGoodStandingOfTheRosterOfApprovedProfessionalsAsMaintainedByTheMinistryAndMemberSOfTheContaminatedSitesApprovedProfessionalsSocietyCsapSociety", + "tags": [], + "properties": {}, + "conditional": { + "show": null, + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "checkbox", + "name": "", + "value": "", + "input": true, + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "unique": false, + "refreshOn": "", + "dataGridLabel": true, + "labelPosition": "right", + "widget": null, + "validateOn": "change", + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "id": "espd59k", + "defaultValue": false + }, + { + "label": "The approved professionals signing this Summary of Site Condition have reviewed Table 1, Protocol 6 for Contaminated Sites (Eligibility of Applications for Review by Approved Professionals) and confirm that the Application for Contaminated Sites Services may be processed in the manner for non-high risk sites under the Roster of Approved Professionals process", + "description": "", + "tooltip": "", + "shortcut": "", + "inputType": "checkbox", + "customClass": "", + "tabindex": "", + "hidden": false, + "hideLabel": false, + "autofocus": false, + "disabled": false, + "tableView": false, + "modalEdit": false, + "persistent": true, + "protected": false, + "dbIndex": false, + "encrypted": false, + "redrawOn": "", + "clearOnHide": true, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "allowCalculateOverride": false, + "validate": { + "required": true, + "customMessage": "", + "custom": "", + "customPrivate": false, + "json": "", + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "errorLabel": "", + "errors": "", + "key": "theApprovedProfessionalsSigningThisSummaryOfSiteConditionHaveReviewedTable1Protocol6ForContaminatedSitesEligibilityOfApplicationsForReviewByApprovedProfessionalsAndConfirmThatTheApplicationForContaminatedSitesServicesMayBeProcessedInTheMannerForNonHighRiskSitesUnderTheRosterOfApprovedProfessionalsProcess", + "tags": [], + "properties": {}, + "conditional": { + "show": null, + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "checkbox", + "name": "", + "value": "", + "input": true, + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "unique": false, + "refreshOn": "", + "dataGridLabel": true, + "labelPosition": "right", + "widget": null, + "validateOn": "change", + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "id": "eso2ic", + "defaultValue": false + }, + { + "label": "The reviewer has no obligation to undertake any inquiry into the validity, accuracy or precision of what is reported in the documents reviewed, beyond that which there is reasonable cause to believe that there could be errors or oversights in those reports", + "description": "", + "tooltip": "", + "shortcut": "", + "inputType": "checkbox", + "customClass": "", + "tabindex": "", + "hidden": false, + "hideLabel": false, + "autofocus": false, + "disabled": false, + "tableView": false, + "modalEdit": false, + "persistent": true, + "protected": false, + "dbIndex": false, + "encrypted": false, + "redrawOn": "", + "clearOnHide": true, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "allowCalculateOverride": false, + "validate": { + "required": true, + "customMessage": "", + "custom": "", + "customPrivate": false, + "json": "", + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "errorLabel": "", + "errors": "", + "key": "theReviewerHasNoObligationToUndertakeAnyInquiryIntoTheValidityAccuracyOrPrecisionOfWhatIsReportedInTheDocumentsReviewedBeyondThatWhichThereIsReasonableCauseToBelieveThatThereCouldBeErrorsOrOversightsInThoseReports", + "tags": [], + "properties": {}, + "conditional": { + "show": null, + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "checkbox", + "name": "", + "value": "", + "input": true, + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "unique": false, + "refreshOn": "", + "dataGridLabel": true, + "labelPosition": "right", + "widget": null, + "validateOn": "change", + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "id": "ei6b2fp", + "defaultValue": false + }, + { + "label": "(as appropriate) The source site has been satisfactorily investigated for all areas of (potential) environmental concern and (potential) contaminants of concern to determine the lateral and vertical extents of contamination with due regard to EMA, the CSR, and the HWR;", + "description": "", + "tooltip": "", + "shortcut": "", + "inputType": "checkbox", + "customClass": "", + "tabindex": "", + "hidden": false, + "hideLabel": false, + "autofocus": false, + "disabled": false, + "tableView": false, + "modalEdit": false, + "persistent": true, + "protected": false, + "dbIndex": false, + "encrypted": false, + "redrawOn": "", + "clearOnHide": true, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "allowCalculateOverride": false, + "validate": { + "required": false, + "customMessage": "", + "custom": "", + "customPrivate": false, + "json": "", + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "errorLabel": "", + "errors": "", + "key": "asAppropriateTheSourceSiteHasBeenSatisfactorilyInvestigatedForAllAreasOfPotentialEnvironmentalConcernAndPotentialContaminantsOfConcernToDetermineTheLateralAndVerticalExtentsOfContaminationWithDueRegardToEmaTheCsrAndTheHwr", + "tags": [], + "properties": {}, + "conditional": { + "show": null, + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "checkbox", + "name": "", + "value": "", + "input": true, + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "unique": false, + "refreshOn": "", + "dataGridLabel": true, + "labelPosition": "right", + "widget": null, + "validateOn": "change", + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "id": "e2whe88", + "defaultValue": false + }, + { + "label": "(as appropriate) The submitted documentation meets the requirements of Sections 1, 47, 49, 58 and 59 of the CSR;", + "description": "", + "tooltip": "", + "shortcut": "", + "inputType": "checkbox", + "customClass": "", + "tabindex": "", + "hidden": false, + "hideLabel": false, + "autofocus": false, + "disabled": false, + "tableView": false, + "modalEdit": false, + "persistent": true, + "protected": false, + "dbIndex": false, + "encrypted": false, + "redrawOn": "", + "clearOnHide": true, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "allowCalculateOverride": false, + "validate": { + "required": false, + "customMessage": "", + "custom": "", + "customPrivate": false, + "json": "", + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "errorLabel": "", + "errors": "", + "key": "asAppropriateTheSubmittedDocumentationMeetsTheRequirementsOfSections1474958And59OfTheCsr", + "tags": [], + "properties": {}, + "conditional": { + "show": null, + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "checkbox", + "name": "", + "value": "", + "input": true, + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "unique": false, + "refreshOn": "", + "dataGridLabel": true, + "labelPosition": "right", + "widget": null, + "validateOn": "change", + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "id": "eyeklkd", + "defaultValue": false + }, + { + "label": "(as appropriate) The Screening Level Risk Assessment meets the requirements of Protocol 13;", + "description": "", + "tooltip": "", + "shortcut": "", + "inputType": "checkbox", + "customClass": "", + "tabindex": "", + "hidden": false, + "hideLabel": false, + "autofocus": false, + "disabled": false, + "tableView": false, + "modalEdit": false, + "persistent": true, + "protected": false, + "dbIndex": false, + "encrypted": false, + "redrawOn": "", + "clearOnHide": true, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "allowCalculateOverride": false, + "validate": { + "required": false, + "customMessage": "", + "custom": "", + "customPrivate": false, + "json": "", + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "errorLabel": "", + "errors": "", + "key": "asAppropriateTheScreeningLevelRiskAssessmentMeetsTheRequirementsOfProtocol13", + "tags": [], + "properties": {}, + "conditional": { + "show": null, + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "checkbox", + "name": "", + "value": "", + "input": true, + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "unique": false, + "refreshOn": "", + "dataGridLabel": true, + "labelPosition": "right", + "widget": null, + "validateOn": "change", + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "id": "ewud17", + "defaultValue": false + } + ], + "id": "e2kqn9c" + }, + { + "title": "", + "theme": "default", + "tooltip": "", + "customClass": "", + "collapsible": false, + "hidden": false, + "hideLabel": false, + "disabled": false, + "modalEdit": false, + "key": "panel12", + "tags": [], + "properties": {}, + "customConditional": "", + "conditional": { + "json": "", + "show": null, + "when": null, + "eq": "" + }, + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "panel", + "label": "Panel", + "breadcrumb": "default", + "tabindex": "", + "input": false, + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "clearOnHide": false, + "refreshOn": "", + "redrawOn": "", + "tableView": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "tree": false, + "lazyLoad": false, + "components": [ + { + "html": "

 

Additional for AIPs, Determination, CoC

", + "label": "Content", + "customClass": "", + "refreshOnChange": false, + "hidden": false, + "modalEdit": false, + "key": "content58", + "tags": [], + "properties": {}, + "conditional": { + "show": null, + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "content", + "input": false, + "tableView": false, + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "id": "e3om77a" + }, + { + "label": "(for AiPs) The submitted remediation plan, if implemented in accordance with the specified conditions imposed in its draft Schedule 'B' of the AIP, will result in the source site being remediated in accordance with the applicable standards of the CSR and the HWR;", + "description": "", + "tooltip": "", + "shortcut": "", + "inputType": "checkbox", + "customClass": "", + "tabindex": "", + "hidden": false, + "hideLabel": false, + "autofocus": false, + "disabled": false, + "tableView": false, + "modalEdit": false, + "persistent": true, + "protected": false, + "dbIndex": false, + "encrypted": false, + "redrawOn": "", + "clearOnHide": true, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "allowCalculateOverride": false, + "validate": { + "required": false, + "customMessage": "", + "custom": "", + "customPrivate": false, + "json": "", + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "errorLabel": "", + "errors": "", + "key": "forAiPsTheSubmittedRemediationPlanIfImplementedInAccordanceWithTheSpecifiedConditionsImposedInItsDraftScheduleBOfTheAipWillResultInTheSourceSiteBeingRemediatedInAccordanceWithTheApplicableStandardsOfTheCsrAndTheHwr", + "tags": [], + "properties": {}, + "conditional": { + "show": null, + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "checkbox", + "name": "", + "value": "", + "input": true, + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "unique": false, + "refreshOn": "", + "dataGridLabel": true, + "labelPosition": "right", + "widget": null, + "validateOn": "change", + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "id": "em40f0m", + "defaultValue": false + }, + { + "label": "(for AiPs) It is feasible to implement all provisions of the Remediation Plan and to achieve its objectives and the conditions of the AIP within 5 years of issuance of the AIP", + "description": "", + "tooltip": "", + "shortcut": "", + "inputType": "checkbox", + "customClass": "", + "tabindex": "", + "hidden": false, + "hideLabel": false, + "autofocus": false, + "disabled": false, + "tableView": false, + "modalEdit": false, + "persistent": true, + "protected": false, + "dbIndex": false, + "encrypted": false, + "redrawOn": "", + "clearOnHide": true, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "allowCalculateOverride": false, + "validate": { + "required": false, + "customMessage": "", + "custom": "", + "customPrivate": false, + "json": "", + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "errorLabel": "", + "errors": "", + "key": "forAiPsItIsFeasibleToImplementAllProvisionsOfTheRemediationPlanAndToAchieveItsObjectivesAndTheConditionsOfTheAipWithin5YearsOfIssuanceOfTheAip", + "tags": [], + "properties": {}, + "conditional": { + "show": null, + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "checkbox", + "name": "", + "value": "", + "input": true, + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "unique": false, + "refreshOn": "", + "dataGridLabel": true, + "labelPosition": "right", + "widget": null, + "validateOn": "change", + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "id": "eko8qoe", + "defaultValue": false + }, + { + "label": "(for AiPs) The confirmation of remediation report meets the requirements of section 49(2) of the CSR;", + "description": "", + "tooltip": "", + "shortcut": "", + "inputType": "checkbox", + "customClass": "", + "tabindex": "", + "hidden": false, + "hideLabel": false, + "autofocus": false, + "disabled": false, + "tableView": false, + "modalEdit": false, + "persistent": true, + "protected": false, + "dbIndex": false, + "encrypted": false, + "redrawOn": "", + "clearOnHide": true, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "allowCalculateOverride": false, + "validate": { + "required": false, + "customMessage": "", + "custom": "", + "customPrivate": false, + "json": "", + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "errorLabel": "", + "errors": "", + "key": "forAiPsTheConfirmationOfRemediationReportMeetsTheRequirementsOfSection492OfTheCsr", + "tags": [], + "properties": {}, + "conditional": { + "show": null, + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "checkbox", + "name": "", + "value": "", + "input": true, + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "unique": false, + "refreshOn": "", + "dataGridLabel": true, + "labelPosition": "right", + "widget": null, + "validateOn": "change", + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "id": "e1z4cw", + "defaultValue": false + }, + { + "label": "(for CoCs) The confirmation of remediation report meets the requirements of section 49 (2) of the CSR", + "description": "", + "tooltip": "", + "shortcut": "", + "inputType": "checkbox", + "customClass": "", + "tabindex": "", + "hidden": false, + "hideLabel": false, + "autofocus": false, + "disabled": false, + "tableView": false, + "modalEdit": false, + "persistent": true, + "protected": false, + "dbIndex": false, + "encrypted": false, + "redrawOn": "", + "clearOnHide": true, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "allowCalculateOverride": false, + "validate": { + "required": false, + "customMessage": "", + "custom": "", + "customPrivate": false, + "json": "", + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "errorLabel": "", + "errors": "", + "key": "forCoCsTheConfirmationOfRemediationReportMeetsTheRequirementsOfSection492OfTheCsr", + "tags": [], + "properties": {}, + "conditional": { + "show": null, + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "checkbox", + "name": "", + "value": "", + "input": true, + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "unique": false, + "refreshOn": "", + "dataGridLabel": true, + "labelPosition": "right", + "widget": null, + "validateOn": "change", + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "id": "ebhel0f", + "defaultValue": false + }, + { + "label": "(for CoCs) The onsite management area(s) has/have been satisfactorily remediated in accordance with section 53 (3) of the EMA and section 49(2) of the CSR in accordance with applicable standards as identified in the draft COC;", + "description": "", + "tooltip": "", + "shortcut": "", + "inputType": "checkbox", + "customClass": "", + "tabindex": "", + "hidden": false, + "hideLabel": false, + "autofocus": false, + "disabled": false, + "tableView": false, + "modalEdit": false, + "persistent": true, + "protected": false, + "dbIndex": false, + "encrypted": false, + "redrawOn": "", + "clearOnHide": true, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "allowCalculateOverride": false, + "validate": { + "required": false, + "customMessage": "", + "custom": "", + "customPrivate": false, + "json": "", + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "errorLabel": "", + "errors": "", + "key": "forCoCsTheOnsiteManagementAreaSHasHaveBeenSatisfactorilyRemediatedInAccordanceWithSection533OfTheEmaAndSection492OfTheCsrInAccordanceWithApplicableStandardsAsIdentifiedInTheDraftCoc", + "tags": [], + "properties": {}, + "conditional": { + "show": null, + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "checkbox", + "name": "", + "value": "", + "input": true, + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "unique": false, + "refreshOn": "", + "dataGridLabel": true, + "labelPosition": "right", + "widget": null, + "validateOn": "change", + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "id": "e5sr4p4", + "defaultValue": false + }, + { + "label": "For CoCs where contamination exists beyond the legal lot boundaries", + "labelPosition": "top", + "optionsLabelPosition": "right", + "description": "", + "tooltip": "", + "customClass": "", + "tabindex": "", + "inline": false, + "hidden": false, + "hideLabel": false, + "autofocus": false, + "disabled": false, + "tableView": false, + "modalEdit": false, + "values": [ + { + "label": "The off-site portion(s) of the site has/have been satisfactorily remediated in accordance with section 53 (3) of the EMA and section 49(2) of the CSR and makes up part of this application", + "value": "theOffSitePortionSOfTheSiteHasHaveBeenSatisfactorilyRemediatedInAccordanceWithSection533OfTheEmaAndSection492OfTheCsrAndMakesUpPartOfThisApplication", + "shortcut": "" + }, + { + "label": "a Remediation Plan in accordance with requirements of the the CSR, sections 1 and 47 has/have been prepared and application has been made for AIP for the off-site portions", + "value": "aRemediationPlanInAccordanceWithRequirementsOfTheTheCsrSections1And47HasHaveBeenPreparedAndApplicationHasBeenMadeForAipForTheOffSitePortions", + "shortcut": "" + } + ], + "dataType": "", + "persistent": true, + "protected": false, + "dbIndex": false, + "encrypted": false, + "redrawOn": "", + "clearOnHide": true, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "allowCalculateOverride": false, + "validate": { + "required": false, + "onlyAvailableItems": false, + "customMessage": "", + "custom": "", + "customPrivate": false, + "json": "", + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "errorLabel": "", + "errors": "", + "key": "forCoCsWhereContaminationExistsBeyondTheLegalLotBoundaries", + "tags": [], + "properties": {}, + "conditional": { + "show": null, + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "radio", + "input": true, + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "unique": false, + "refreshOn": "", + "dataGridLabel": false, + "widget": null, + "validateOn": "change", + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "inputType": "radio", + "fieldSet": false, + "id": "e2vnfbod", + "defaultValue": "" + }, + { + "label": "(for CoCs where contamination exists beyond the legal lot boundaries and engineered works are required to prevent recontamination of the site) A signed and stamped design drawing has been provided by a professional engineer for works installed at site boundaries to prevent recontamination of the site. The signatory need not be the Approved Professional signing below.", + "description": "", + "tooltip": "", + "shortcut": "", + "inputType": "checkbox", + "customClass": "", + "tabindex": "", + "hidden": false, + "hideLabel": false, + "autofocus": false, + "disabled": false, + "tableView": false, + "modalEdit": false, + "persistent": true, + "protected": false, + "dbIndex": false, + "encrypted": false, + "redrawOn": "", + "clearOnHide": true, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "allowCalculateOverride": false, + "validate": { + "required": false, + "customMessage": "", + "custom": "", + "customPrivate": false, + "json": "", + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "errorLabel": "", + "errors": "", + "key": "forCoCsWhereContaminationExistsBeyondTheLegalLotBoundariesAndEngineeredWorksAreRequiredToPreventRecontaminationOfTheSiteASignedAndStampedDesignDrawingHasBeenProvidedByAProfessionalEngineerForWorksInstalledAtSiteBoundariesToPreventRecontaminationOfTheSiteTheSignatoryNeedNotBeTheApprovedProfessionalSigningBelow", + "tags": [], + "properties": {}, + "conditional": { + "show": null, + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "checkbox", + "name": "", + "value": "", + "input": true, + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "unique": false, + "refreshOn": "", + "dataGridLabel": true, + "labelPosition": "right", + "widget": null, + "validateOn": "change", + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "id": "equjrfb", + "defaultValue": false + }, + { + "label": "(for Determination) In accordance with section 15 (5) of the CSR, the source site a contaminated site under section 44(1) of the Environmental Management Act;", + "description": "", + "tooltip": "", + "shortcut": "", + "inputType": "checkbox", + "customClass": "", + "tabindex": "", + "hidden": false, + "hideLabel": false, + "autofocus": false, + "disabled": false, + "tableView": false, + "modalEdit": false, + "persistent": true, + "protected": false, + "dbIndex": false, + "encrypted": false, + "redrawOn": "", + "clearOnHide": true, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "allowCalculateOverride": false, + "validate": { + "required": false, + "customMessage": "", + "custom": "", + "customPrivate": false, + "json": "", + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "errorLabel": "", + "errors": "", + "key": "forDeterminationInAccordanceWithSection155OfTheCsrTheSourceSiteAContaminatedSiteUnderSection441OfTheEnvironmentalManagementAct", + "tags": [], + "properties": {}, + "conditional": { + "show": null, + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "checkbox", + "name": "", + "value": "", + "input": true, + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "unique": false, + "refreshOn": "", + "dataGridLabel": true, + "labelPosition": "right", + "widget": null, + "validateOn": "change", + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "id": "ekx5xzp", + "defaultValue": false + }, + { + "label": "(if a 'direct' final determination) In accordance with section 15 (5) of the CSR, the source site is a contaminated site under section 44 (3) of EMA", + "description": "", + "tooltip": "", + "shortcut": "", + "inputType": "checkbox", + "customClass": "", + "tabindex": "", + "hidden": false, + "hideLabel": false, + "autofocus": false, + "disabled": false, + "tableView": false, + "modalEdit": false, + "persistent": true, + "protected": false, + "dbIndex": false, + "encrypted": false, + "redrawOn": "", + "clearOnHide": true, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "allowCalculateOverride": false, + "validate": { + "required": false, + "customMessage": "", + "custom": "", + "customPrivate": false, + "json": "", + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "errorLabel": "", + "errors": "", + "key": "ifADirectFinalDeterminationInAccordanceWithSection155OfTheCsrTheSourceSiteIsAContaminatedSiteUnderSection443OfEma", + "tags": [], + "properties": {}, + "conditional": { + "show": null, + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "checkbox", + "name": "", + "value": "", + "input": true, + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "unique": false, + "refreshOn": "", + "dataGridLabel": true, + "labelPosition": "right", + "widget": null, + "validateOn": "change", + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "id": "e617ge", + "defaultValue": false + } + ], + "id": "ec7vbrl" + }, + { + "html": "

The opinions, advice and recommendations expressed in this Summary of Site Condition are made in accordance with generally accepted principles and practices as recognized by members of the applicable profession or discipline practicing at the same time and in the same or similar locations. This Summary of Site Condition does not provide a legal opinion or guarantee regarding compliance with applicable laws.

", + "label": "Content", + "customClass": "", + "refreshOnChange": false, + "hidden": false, + "modalEdit": false, + "key": "content59", + "tags": [], + "properties": {}, + "conditional": { + "show": null, + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "content", + "input": false, + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "tableView": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "id": "eg6vc" + }, + { + "label": "Data Grid", + "labelPosition": "top", + "description": "", + "tooltip": "", + "disableAddingRemovingRows": false, + "conditionalAddButton": "", + "reorder": false, + "addAnother": "", + "addAnotherPosition": "bottom", + "layoutFixed": false, + "enableRowGroups": false, + "initEmpty": false, + "customClass": "", + "tabindex": "", + "hidden": false, + "hideLabel": true, + "autofocus": false, + "disabled": false, + "tableView": false, + "modalEdit": false, + "defaultValue": [ + { + "signatureOfApprovedProfessional": "", + "firstName": "", + "lastName": "", + "dateSigned": "00/00/0000" + } + ], + "persistent": true, + "protected": false, + "dbIndex": false, + "encrypted": false, + "redrawOn": "", + "clearOnHide": true, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "allowCalculateOverride": false, + "validateOn": "change", + "validate": { + "required": false, + "minLength": "", + "maxLength": "", + "customMessage": "", + "custom": "", + "customPrivate": false, + "json": "", + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "errorLabel": "", + "errors": "", + "key": "dataGrid15", + "tags": [], + "properties": {}, + "conditional": { + "show": null, + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "datagrid", + "input": true, + "components": [ + { + "label": "Approved Professional Signatures", + "columns": [ + { + "components": [ + { + "label": "Signature of Approved Professional", + "tableView": false, + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "key": "signatureOfApprovedProfessional", + "type": "signature", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "footer": "Sign above", + "width": "100%", + "height": "150px", + "penColor": "black", + "backgroundColor": "rgb(245,245,235)", + "minWidth": "0.5", + "maxWidth": "2.5", + "keepOverlayRatio": true, + "id": "eufhqc8" + } + ], + "width": 6, + "offset": 0, + "push": 0, + "pull": 0, + "size": "md", + "currentWidth": 6 + }, + { + "components": [ + { + "label": "First Name", + "tableView": true, + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "key": "firstName", + "type": "textfield", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "e459o2u" + }, + { + "label": "Last Name", + "labelPosition": "top", + "placeholder": "", + "description": "", + "tooltip": "", + "prefix": "", + "suffix": "", + "widget": { + "type": "input" + }, + "inputMask": "", + "displayMask": "", + "allowMultipleMasks": false, + "customClass": "", + "tabindex": "", + "autocomplete": "", + "hidden": false, + "hideLabel": false, + "showWordCount": false, + "showCharCount": false, + "mask": false, + "autofocus": false, + "spellcheck": true, + "disabled": false, + "tableView": true, + "modalEdit": false, + "multiple": false, + "persistent": true, + "inputFormat": "plain", + "protected": false, + "dbIndex": false, + "case": "", + "truncateMultipleSpaces": false, + "encrypted": false, + "redrawOn": "", + "clearOnHide": true, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "allowCalculateOverride": false, + "validateOn": "change", + "validate": { + "required": true, + "pattern": "", + "customMessage": "", + "custom": "", + "customPrivate": false, + "json": "", + "minLength": "", + "maxLength": "", + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "unique": false, + "errorLabel": "", + "errors": "", + "key": "lastName", + "tags": [], + "properties": {}, + "conditional": { + "show": null, + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "textfield", + "input": true, + "refreshOn": "", + "dataGridLabel": false, + "addons": [], + "inputType": "text", + "id": "ewkt9qr", + "defaultValue": "" + }, + { + "label": "Date", + "labelPosition": "top", + "displayInTimezone": "viewer", + "useLocaleSettings": false, + "allowInput": true, + "format": "yyyy-MM-dd hh:mm a", + "placeholder": "", + "description": "", + "tooltip": "", + "customClass": "", + "tabindex": "", + "hidden": false, + "hideLabel": false, + "autofocus": false, + "disabled": false, + "tableView": false, + "modalEdit": false, + "shortcutButtons": [], + "enableDate": true, + "datePicker": { + "disable": "", + "disableFunction": "", + "disableWeekends": false, + "disableWeekdays": false, + "minDate": null, + "maxDate": null, + "showWeeks": true, + "startingDay": 0, + "initDate": "", + "minMode": "day", + "maxMode": "year", + "yearRows": 4, + "yearColumns": 5 + }, + "enableTime": true, + "timePicker": { + "showMeridian": true, + "hourStep": 1, + "minuteStep": 1, + "readonlyInput": false, + "mousewheel": true, + "arrowkeys": true + }, + "multiple": false, + "defaultValue": "", + "defaultDate": "", + "customOptions": {}, + "persistent": true, + "protected": false, + "dbIndex": false, + "encrypted": false, + "redrawOn": "", + "clearOnHide": true, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "allowCalculateOverride": false, + "validateOn": "change", + "validate": { + "required": false, + "customMessage": "", + "custom": "", + "customPrivate": false, + "json": "", + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "enableMinDateInput": false, + "enableMaxDateInput": false, + "unique": false, + "errorLabel": "", + "errors": "", + "key": "dateTime", + "tags": [], + "properties": {}, + "conditional": { + "show": null, + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "datetime", + "timezone": "", + "input": true, + "widget": { + "type": "calendar", + "displayInTimezone": "viewer", + "locale": "en", + "useLocaleSettings": false, + "allowInput": true, + "mode": "single", + "enableTime": true, + "noCalendar": false, + "format": "yyyy-MM-dd hh:mm a", + "hourIncrement": 1, + "minuteIncrement": 1, + "time_24hr": false, + "minDate": null, + "disabledDates": "", + "disableWeekends": false, + "disableWeekdays": false, + "disableFunction": "", + "maxDate": null + }, + "prefix": "", + "suffix": "", + "refreshOn": "", + "dataGridLabel": false, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "datepickerMode": "day", + "id": "eucmj7" + } + ], + "width": 6, + "offset": 0, + "push": 0, + "pull": 0, + "size": "md", + "currentWidth": 6 + } + ], + "key": "approvedProfessionalSignature", + "type": "columns", + "input": false, + "tableView": false, + "id": "ev4kpmc00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "hidden": false, + "clearOnHide": false, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "tree": false, + "lazyLoad": false, + "autoAdjust": false + } + ], + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "unique": false, + "refreshOn": "", + "dataGridLabel": false, + "widget": null, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "tree": true, + "lazyLoad": false, + "id": "eizst9" + } + ], + "id": "efpt8i" + }, + { + "title": "SECTION III - Arm's Length Review", + "theme": "default", + "tooltip": "", + "customClass": "", + "collapsible": false, + "hidden": false, + "hideLabel": false, + "disabled": false, + "modalEdit": false, + "key": "sectionIiiArmsLengthReview", + "tags": [], + "properties": {}, + "customConditional": "", + "conditional": { + "json": "", + "show": null, + "when": null, + "eq": "" + }, + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "panel", + "label": "Panel", + "breadcrumb": "default", + "tabindex": "", + "input": false, + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "clearOnHide": false, + "refreshOn": "", + "redrawOn": "", + "tableView": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "tree": false, + "lazyLoad": false, + "components": [ + { + "html": "

There may have been an arm’s length review of one or more of the following recommendations to the Director of Waste Management:

 

1. Making a recommendation to a Director in support of an application for an Approval in Principle based on remediation to numerical standards or a screening level risk assessment where there is offsite migration at the site.

2. Making a recommendation to a Director in support of an application for an Approval in Principle based on a risk assessment (other than a screening level risk assessment) and remediation to risk-based standards.

3. Making a recommendation to a Director in support of an application for a Certificate of Compliance based on remediation to numerical standards or a screening level risk assessment where there is offsite migration at the site.

4. Making a recommendation to a Director in support of an application for a Certificate of Compliance based on a risk assessment (other than a screening level risk assessment) and remediation to risk-based standards.

5. Making a recommendation to a Director in support of an application for site risk classification/reclassification.

6. Making a recommendation to a Director in support of any other application based on risk assessment or risk management (other than a screening level risk assessment) not otherwise described in any other row in this list, as required under a protocol signed by a Director.

If this is the case please have the Approved Professional who carried out the arm’s length review to sign below, specifying the type of arm’s length review done for the site.

", + "label": "Content", + "customClass": "", + "refreshOnChange": false, + "hidden": false, + "modalEdit": false, + "key": "content60", + "tags": [], + "properties": {}, + "conditional": { + "show": null, + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "content", + "input": false, + "tableView": false, + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "id": "elcdtyx" + }, + { + "label": "Data Grid", + "labelPosition": "top", + "description": "", + "tooltip": "", + "disableAddingRemovingRows": false, + "conditionalAddButton": "", + "reorder": false, + "addAnother": "", + "addAnotherPosition": "bottom", + "layoutFixed": false, + "enableRowGroups": false, + "initEmpty": false, + "customClass": "", + "tabindex": "", + "hidden": false, + "hideLabel": true, + "autofocus": false, + "disabled": false, + "tableView": false, + "modalEdit": false, + "defaultValue": [ + { + "typeOfArmsLengthReview": "", + "signatureOfApprovedProfessional": "", + "firstName": "", + "lastName": "", + "dateSigned": "00/00/0000" + } + ], + "persistent": true, + "protected": false, + "dbIndex": false, + "encrypted": false, + "redrawOn": "", + "clearOnHide": true, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "allowCalculateOverride": false, + "validateOn": "change", + "validate": { + "required": false, + "minLength": "", + "maxLength": "", + "customMessage": "", + "custom": "", + "customPrivate": false, + "json": "", + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "errorLabel": "", + "errors": "", + "key": "dataGrid16", + "tags": [], + "properties": {}, + "conditional": { + "show": null, + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "datagrid", + "input": true, + "components": [ + { + "label": "Approved Professional Signatures", + "columns": [ + { + "components": [ + { + "label": "Type of Arm's length Review", + "placeholder": "Enter number from list above", + "tableView": true, + "key": "typeOfArmsLengthReview", + "type": "textfield", + "input": true, + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "eqgxg2q" + }, + { + "label": "Signature of Approved Professional", + "tableView": false, + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "key": "signatureOfApprovedProfessional", + "type": "signature", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "footer": "Sign above", + "width": "100%", + "height": "150px", + "penColor": "black", + "backgroundColor": "rgb(245,245,235)", + "minWidth": "0.5", + "maxWidth": "2.5", + "keepOverlayRatio": true, + "id": "egps3u" + } + ], + "width": 6, + "offset": 0, + "push": 0, + "pull": 0, + "size": "md", + "currentWidth": 6 + }, + { + "components": [ + { + "label": "First Name", + "tableView": true, + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "key": "firstName", + "type": "textfield", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "ehbl8ry" + }, + { + "label": "Last Name", + "labelPosition": "top", + "placeholder": "", + "description": "", + "tooltip": "", + "prefix": "", + "suffix": "", + "widget": { + "type": "input" + }, + "inputMask": "", + "displayMask": "", + "allowMultipleMasks": false, + "customClass": "", + "tabindex": "", + "autocomplete": "", + "hidden": false, + "hideLabel": false, + "showWordCount": false, + "showCharCount": false, + "mask": false, + "autofocus": false, + "spellcheck": true, + "disabled": false, + "tableView": true, + "modalEdit": false, + "multiple": false, + "persistent": true, + "inputFormat": "plain", + "protected": false, + "dbIndex": false, + "case": "", + "truncateMultipleSpaces": false, + "encrypted": false, + "redrawOn": "", + "clearOnHide": true, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "allowCalculateOverride": false, + "validateOn": "change", + "validate": { + "required": true, + "pattern": "", + "customMessage": "", + "custom": "", + "customPrivate": false, + "json": "", + "minLength": "", + "maxLength": "", + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "unique": false, + "errorLabel": "", + "errors": "", + "key": "lastName", + "tags": [], + "properties": {}, + "conditional": { + "show": null, + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "textfield", + "input": true, + "refreshOn": "", + "dataGridLabel": false, + "addons": [], + "inputType": "text", + "id": "ew4j73", + "defaultValue": "" + }, + { + "label": "Date", + "labelPosition": "top", + "displayInTimezone": "viewer", + "useLocaleSettings": false, + "allowInput": true, + "format": "yyyy-MM-dd hh:mm a", + "placeholder": "", + "description": "", + "tooltip": "", + "customClass": "", + "tabindex": "", + "hidden": false, + "hideLabel": false, + "autofocus": false, + "disabled": false, + "tableView": false, + "modalEdit": false, + "shortcutButtons": [], + "enableDate": true, + "datePicker": { + "disable": "", + "disableFunction": "", + "disableWeekends": false, + "disableWeekdays": false, + "minDate": null, + "maxDate": null, + "showWeeks": true, + "startingDay": 0, + "initDate": "", + "minMode": "day", + "maxMode": "year", + "yearRows": 4, + "yearColumns": 5 + }, + "enableTime": true, + "timePicker": { + "showMeridian": true, + "hourStep": 1, + "minuteStep": 1, + "readonlyInput": false, + "mousewheel": true, + "arrowkeys": true + }, + "multiple": false, + "defaultValue": "", + "defaultDate": "", + "customOptions": {}, + "persistent": true, + "protected": false, + "dbIndex": false, + "encrypted": false, + "redrawOn": "", + "clearOnHide": true, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "allowCalculateOverride": false, + "validateOn": "change", + "validate": { + "required": false, + "customMessage": "", + "custom": "", + "customPrivate": false, + "json": "", + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "enableMinDateInput": false, + "enableMaxDateInput": false, + "unique": false, + "errorLabel": "", + "errors": "", + "key": "date", + "tags": [], + "properties": {}, + "conditional": { + "show": null, + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "datetime", + "timezone": "", + "input": true, + "prefix": "", + "suffix": "", + "refreshOn": "", + "dataGridLabel": false, + "widget": { + "type": "calendar", + "displayInTimezone": "viewer", + "locale": "en", + "useLocaleSettings": false, + "allowInput": true, + "mode": "single", + "enableTime": true, + "noCalendar": false, + "format": "yyyy-MM-dd hh:mm a", + "hourIncrement": 1, + "minuteIncrement": 1, + "time_24hr": false, + "minDate": null, + "disabledDates": "", + "disableWeekends": false, + "disableWeekdays": false, + "disableFunction": "", + "maxDate": null + }, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "datepickerMode": "day", + "id": "ewqskd" + } + ], + "width": 6, + "offset": 0, + "push": 0, + "pull": 0, + "size": "md", + "currentWidth": 6 + } + ], + "key": "approvedProfessionalSignature", + "type": "columns", + "input": false, + "tableView": false, + "id": "ehbime0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "hidden": false, + "clearOnHide": false, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "tree": false, + "lazyLoad": false, + "autoAdjust": false + } + ], + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "unique": false, + "refreshOn": "", + "dataGridLabel": false, + "widget": null, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "tree": true, + "lazyLoad": false, + "id": "et2496k" + } + ], + "id": "ew977y" + }, + { + "html": "

Part 8 - Statement of Site Owner / Agent / Lessee

 

8.1 Offsite Migration Notification

", + "label": "Content", + "customClass": "", + "refreshOnChange": false, + "hidden": false, + "modalEdit": false, + "key": "content61", + "tags": [], + "properties": {}, + "conditional": { + "show": null, + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "content", + "input": false, + "tableView": false, + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "id": "e31mug" + }, + { + "title": "SECTION I - Offsite Migration Notification", + "theme": "default", + "tooltip": "", + "customClass": "", + "collapsible": false, + "hidden": false, + "hideLabel": false, + "disabled": false, + "modalEdit": false, + "key": "sectionIOffsiteMigration", + "tags": [], + "properties": {}, + "customConditional": "", + "conditional": { + "json": "", + "show": null, + "when": null, + "eq": "" + }, + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "panel", + "label": "Panel", + "breadcrumb": "default", + "tabindex": "", + "input": false, + "tableView": false, + "components": [ + { + "label": "Not Applicable", + "tableView": false, + "key": "notApplicable", + "type": "checkbox", + "input": true, + "defaultValue": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": true, + "labelPosition": "right", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "inputType": "checkbox", + "value": "", + "name": "", + "id": "e3tubmm" + }, + { + "html": "

If it is known that one or more substances has migrated or is likely to have migrated to a neighbouring site and is or is likely causing contamination of the neighbouring site, have notifications been given?

See CSR Sec. 57 and 60.1 for requirements.

", + "label": "Content", + "customClass": "", + "refreshOnChange": false, + "hidden": false, + "modalEdit": false, + "key": "content62", + "tags": [], + "properties": {}, + "conditional": { + "show": null, + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "content", + "input": false, + "tableView": false, + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "id": "ei2pshc" + }, + { + "label": "Have owners of impacted offsite properties been formally notified?", + "labelPosition": "top", + "optionsLabelPosition": "right", + "description": "", + "tooltip": "", + "customClass": "", + "tabindex": "", + "inline": false, + "hidden": false, + "hideLabel": false, + "autofocus": false, + "disabled": false, + "tableView": false, + "modalEdit": false, + "values": [ + { + "label": "Yes", + "value": "yes", + "shortcut": "" + }, + { + "label": "No", + "value": "no", + "shortcut": "" + } + ], + "dataType": "", + "persistent": true, + "protected": false, + "dbIndex": false, + "encrypted": false, + "redrawOn": "", + "clearOnHide": true, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "allowCalculateOverride": false, + "validate": { + "required": false, + "onlyAvailableItems": false, + "customMessage": "", + "custom": "", + "customPrivate": false, + "json": "", + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "errorLabel": "", + "errors": "", + "key": "haveOwnersOfImpactedOffsitePropertiesBeenFormallyNotified", + "tags": [], + "properties": {}, + "conditional": { + "show": null, + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "radio", + "input": true, + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "unique": false, + "refreshOn": "", + "dataGridLabel": false, + "widget": null, + "validateOn": "change", + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "inputType": "radio", + "fieldSet": false, + "id": "e5x4165", + "defaultValue": "" + }, + { + "label": "Has the ministry been formally notified?", + "labelPosition": "top", + "optionsLabelPosition": "right", + "description": "", + "tooltip": "", + "customClass": "", + "tabindex": "", + "inline": false, + "hidden": false, + "hideLabel": false, + "autofocus": false, + "disabled": false, + "tableView": false, + "modalEdit": false, + "values": [ + { + "label": "Yes", + "value": "yes", + "shortcut": "" + }, + { + "label": "No", + "value": "no", + "shortcut": "" + } + ], + "dataType": "", + "persistent": true, + "protected": false, + "dbIndex": false, + "encrypted": false, + "redrawOn": "", + "clearOnHide": true, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "allowCalculateOverride": false, + "validate": { + "required": false, + "onlyAvailableItems": false, + "customMessage": "", + "custom": "", + "customPrivate": false, + "json": "", + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "errorLabel": "", + "errors": "", + "key": "hasTheMinistryBeenFormallyNotified", + "tags": [], + "properties": {}, + "conditional": { + "show": null, + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "radio", + "input": true, + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "unique": false, + "refreshOn": "", + "dataGridLabel": false, + "widget": null, + "validateOn": "change", + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "inputType": "radio", + "fieldSet": false, + "id": "ert8af", + "defaultValue": "" + } + ], + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "clearOnHide": false, + "refreshOn": "", + "redrawOn": "", + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "tree": false, + "lazyLoad": false, + "id": "egmyibh" + }, + { + "title": "SECTION II - Confirmations by Owner/Agent/Lessee Regarding Approved Professional", + "theme": "default", + "tooltip": "", + "customClass": "", + "collapsible": false, + "hidden": false, + "hideLabel": false, + "disabled": false, + "modalEdit": false, + "key": "sectionIiConfirmationsByOwnerAgentLesseeRegardingApprovedProfessional", + "tags": [], + "properties": {}, + "customConditional": "", + "conditional": { + "json": "", + "show": null, + "when": null, + "eq": "" + }, + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "panel", + "label": "Panel", + "breadcrumb": "default", + "tabindex": "", + "input": false, + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "clearOnHide": false, + "refreshOn": "", + "redrawOn": "", + "tableView": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "tree": false, + "lazyLoad": false, + "components": [ + { + "label": "This is to acknowledge that as:", + "labelPosition": "top", + "optionsLabelPosition": "right", + "description": "", + "tooltip": "", + "customClass": "", + "tabindex": "", + "inline": false, + "hidden": false, + "hideLabel": false, + "autofocus": false, + "disabled": false, + "tableView": false, + "modalEdit": false, + "values": [ + { + "label": "The Owner", + "value": "theOwner", + "shortcut": "" + }, + { + "label": "The Agent on behalf of the owner", + "value": "theAgentOnBehalfOfTheOwner", + "shortcut": "" + }, + { + "label": "Lessee", + "value": "lessee", + "shortcut": "" + }, + { + "label": "The agent on behalf of the responsible party", + "value": "theAgentOnBehalfOfTheResponsibleParty", + "shortcut": "" + } + ], + "persistent": true, + "protected": false, + "dbIndex": false, + "encrypted": false, + "redrawOn": "", + "clearOnHide": true, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "allowCalculateOverride": false, + "validate": { + "required": true, + "onlyAvailableItems": false, + "customMessage": "", + "custom": "", + "customPrivate": false, + "json": "", + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "errorLabel": "", + "minSelectedCountMessage": "", + "maxSelectedCountMessage": "", + "errors": "", + "key": "thisIsToAcknowledgeThatAs", + "tags": [], + "properties": {}, + "conditional": { + "show": null, + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "selectboxes", + "input": true, + "inputType": "checkbox", + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "unique": false, + "refreshOn": "", + "dataGridLabel": false, + "widget": null, + "validateOn": "change", + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "fieldSet": false, + "id": "e7tj2m", + "defaultValue": { + "theOwner": false, + "theAgentOnBehalfOfTheOwner": false, + "lessee": false, + "theAgentOnBehalfOfTheResponsibleParty": false + } + }, + { + "html": "

Of the site, I have engaged

", + "label": "Content", + "customClass": "", + "refreshOnChange": false, + "hidden": false, + "modalEdit": false, + "key": "content64", + "tags": [], + "properties": {}, + "conditional": { + "show": null, + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "content", + "input": false, + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "tableView": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "id": "ezlflsn" + }, + { + "label": "Data Grid", + "reorder": false, + "addAnotherPosition": "bottom", + "layoutFixed": false, + "enableRowGroups": false, + "initEmpty": false, + "hideLabel": true, + "tableView": false, + "defaultValue": [ + {} + ], + "key": "dataGrid17", + "type": "datagrid", + "input": true, + "components": [ + { + "label": "Name(s) of Approved Professional(s)", + "labelPosition": "top", + "placeholder": "", + "description": "", + "tooltip": "", + "prefix": "", + "suffix": "", + "widget": { + "type": "input" + }, + "inputMask": "", + "displayMask": "", + "allowMultipleMasks": false, + "customClass": "", + "tabindex": "", + "autocomplete": "", + "hidden": false, + "hideLabel": false, + "showWordCount": false, + "showCharCount": false, + "mask": false, + "autofocus": false, + "spellcheck": true, + "dataGridLabel": false, + "disabled": false, + "tableView": true, + "modalEdit": false, + "multiple": false, + "persistent": true, + "inputFormat": "plain", + "protected": false, + "dbIndex": false, + "case": "", + "truncateMultipleSpaces": false, + "encrypted": false, + "redrawOn": "", + "clearOnHide": true, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "allowCalculateOverride": false, + "validateOn": "change", + "validate": { + "required": true, + "pattern": "", + "customMessage": "", + "custom": "", + "customPrivate": false, + "json": "", + "minLength": "", + "maxLength": "", + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "unique": false, + "errorLabel": "", + "errors": "", + "key": "approvedProfessionalFullName", + "tags": [], + "properties": {}, + "conditional": { + "show": null, + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "textfield", + "input": true, + "refreshOn": "", + "addons": [], + "inputType": "text", + "id": "errpqaf00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "defaultValue": "" + } + ], + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "tree": true, + "lazyLoad": false, + "disableAddingRemovingRows": false, + "id": "ezfplf" + }, + { + "html": "

as the Approved Professional(s) to review site investigation, risk assessment and remediation reports and to make submission and application with recommendations, if applicable, for the regulatory instrument(s) as indicated in this Summary of Site Condition.

If signing as the agent of the owner or lessee, written consent from the owner or lessee authorizing signature of this Summary of Site Condition must be attached

", + "label": "Content", + "customClass": "", + "refreshOnChange": false, + "hidden": false, + "modalEdit": false, + "key": "content65", + "tags": [], + "properties": {}, + "conditional": { + "show": null, + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "content", + "input": false, + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "tableView": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "id": "eelhteh" + }, + { + "label": "I agree to comply with any requirements on the site regarding monitoring and maintenance of works as documented in schedule B of the draft contaminated sites legal instrument", + "description": "", + "tooltip": "", + "shortcut": "", + "inputType": "checkbox", + "customClass": "", + "tabindex": "", + "hidden": false, + "hideLabel": false, + "autofocus": false, + "disabled": false, + "tableView": false, + "modalEdit": false, + "persistent": true, + "protected": false, + "dbIndex": false, + "encrypted": false, + "redrawOn": "", + "clearOnHide": true, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "allowCalculateOverride": false, + "validate": { + "required": true, + "customMessage": "", + "custom": "", + "customPrivate": false, + "json": "", + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "errorLabel": "", + "errors": "", + "key": "checkbox", + "tags": [], + "properties": {}, + "conditional": { + "show": null, + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "checkbox", + "name": "", + "value": "", + "input": true, + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "unique": false, + "refreshOn": "", + "dataGridLabel": true, + "labelPosition": "right", + "widget": null, + "validateOn": "change", + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "id": "eldkgns", + "defaultValue": false + }, + { + "label": "I accept that if a risk assessment has been applied at the site, that the risk assessment is only valid as long as conditions at the site do not change.", + "description": "", + "tooltip": "", + "shortcut": "", + "inputType": "checkbox", + "customClass": "", + "tabindex": "", + "hidden": false, + "hideLabel": false, + "autofocus": false, + "disabled": false, + "tableView": false, + "modalEdit": false, + "persistent": true, + "protected": false, + "dbIndex": false, + "encrypted": false, + "redrawOn": "", + "clearOnHide": true, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "allowCalculateOverride": false, + "validate": { + "required": true, + "customMessage": "", + "custom": "", + "customPrivate": false, + "json": "", + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "errorLabel": "", + "errors": "", + "key": "iAcceptThatIfARiskAssessmentHasBeenAppliedAtTheSiteThatTheRiskAssessmentIsOnlyValidAsLongAsConditionsAtTheSiteDoNotChange", + "tags": [], + "properties": {}, + "conditional": { + "show": null, + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "checkbox", + "name": "", + "value": "", + "input": true, + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "unique": false, + "refreshOn": "", + "dataGridLabel": true, + "labelPosition": "right", + "widget": null, + "validateOn": "change", + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "id": "eogtso", + "defaultValue": false + }, + { + "label": "I have undertaken reasonable inquiry into the previous ownership and uses of the property and to the best of my knowledge I have provided to the Approved Professional, information relevant to the investigation and remediation of the environmental condition of the site, in the preparation of this document.", + "description": "", + "tooltip": "", + "shortcut": "", + "inputType": "checkbox", + "customClass": "", + "tabindex": "", + "hidden": false, + "hideLabel": false, + "autofocus": false, + "disabled": false, + "tableView": false, + "modalEdit": false, + "persistent": true, + "protected": false, + "dbIndex": false, + "encrypted": false, + "redrawOn": "", + "clearOnHide": true, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "allowCalculateOverride": false, + "validate": { + "required": true, + "customMessage": "", + "custom": "", + "customPrivate": false, + "json": "", + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "errorLabel": "", + "errors": "", + "key": "iHaveUndertakenReasonableInquiryIntoThePreviousOwnershipAndUsesOfThePropertyAndToTheBestOfMyKnowledgeIHaveProvidedToTheApprovedProfessionalInformationRelevantToTheInvestigationAndRemediationOfTheEnvironmentalConditionOfTheSiteInThePreparationOfThisDocument", + "tags": [], + "properties": {}, + "conditional": { + "show": null, + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "checkbox", + "name": "", + "value": "", + "input": true, + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "unique": false, + "refreshOn": "", + "dataGridLabel": true, + "labelPosition": "right", + "widget": null, + "validateOn": "change", + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "id": "etmpgu", + "defaultValue": false + }, + { + "label": "I acknowledge that this Summary of Site Condition becomes a public document after it has been received and acknowledged by the Director of Waste Management. Any party intending to purchase, lease, take a security interest in, or occupy the site may review this document and any supporting documents to satisfy themselves with respect to the environmental condition of the site, and the extent of responsibility and liability that may arise from taking ownership, taking a security interest, or occupying the site. ", + "description": "", + "tooltip": "", + "shortcut": "", + "inputType": "checkbox", + "customClass": "", + "tabindex": "", + "hidden": false, + "hideLabel": false, + "autofocus": false, + "disabled": false, + "tableView": false, + "modalEdit": false, + "defaultValue": false, + "persistent": true, + "protected": false, + "dbIndex": false, + "encrypted": false, + "redrawOn": "", + "clearOnHide": true, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "allowCalculateOverride": false, + "validate": { + "required": true, + "customMessage": "", + "custom": "", + "customPrivate": false, + "json": "", + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "errorLabel": "", + "errors": "", + "key": "iAcknowledgeThatThisSummaryOfSiteConditionBecomesAPublicDocumentAfterItHasBeenReceivedAndAcknowledgedByTheDirectorOfWasteManagementAnyPartyIntendingToPurchaseLeaseTakeASecurityInterestInOrOccupyTheSiteMayReviewThisDocumentAndAnySupportingDocumentsToSatisfyThemselvesWithRespectToTheEnvironmentalConditionOfTheSiteAndTheExtentOfResponsibilityAndLiabilityThatMayAriseFromTakingOwnershipTakingASecurityInterestOrOccupyingTheSite", + "tags": [], + "properties": {}, + "conditional": { + "show": null, + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "checkbox", + "name": "", + "value": "", + "input": true, + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "unique": false, + "refreshOn": "", + "dataGridLabel": true, + "labelPosition": "right", + "widget": null, + "validateOn": "change", + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "id": "e57l23" + }, + { + "label": "Approved Professional Signatures", + "columns": [ + { + "components": [ + { + "label": "I have made no modifications to this document except as allowed by the form", + "description": "", + "tooltip": "", + "shortcut": "", + "inputType": "checkbox", + "customClass": "", + "tabindex": "", + "hidden": false, + "hideLabel": false, + "autofocus": false, + "disabled": false, + "tableView": false, + "modalEdit": false, + "defaultValue": false, + "persistent": true, + "protected": false, + "dbIndex": false, + "encrypted": false, + "redrawOn": "", + "clearOnHide": true, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "allowCalculateOverride": false, + "validate": { + "required": true, + "customMessage": "", + "custom": "", + "customPrivate": false, + "json": "", + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "errorLabel": "", + "errors": "", + "key": "iHaveMadeNoModificationsToThisDocumentExceptAsAllowedByTheForm", + "tags": [], + "properties": {}, + "conditional": { + "show": null, + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "checkbox", + "name": "", + "value": "", + "input": true, + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "unique": false, + "refreshOn": "", + "dataGridLabel": true, + "labelPosition": "right", + "widget": null, + "validateOn": "change", + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "id": "ed8psb" + }, + { + "label": "First Name", + "tableView": true, + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "key": "firstName", + "type": "textfield", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "et5ljp" + }, + { + "label": "Last Name", + "tableView": true, + "key": "lastName", + "type": "textfield", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "eq5xc5d" + }, + { + "label": "Signature of Owner/Agent/Lessee", + "footer": "Sign above", + "labelPosition": "top", + "width": "100%", + "height": "150px", + "backgroundColor": "rgb(245,245,235)", + "penColor": "black", + "description": "", + "tooltip": "", + "customClass": "", + "tabindex": "", + "hidden": false, + "hideLabel": false, + "disabled": false, + "tableView": false, + "modalEdit": false, + "persistent": true, + "protected": false, + "encrypted": false, + "redrawOn": "", + "clearOnHide": true, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "allowCalculateOverride": false, + "validate": { + "required": true, + "customMessage": "", + "custom": "", + "customPrivate": false, + "json": "", + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "errorLabel": "", + "errors": "", + "key": "signatureOfApprovedProfessional", + "tags": [], + "properties": {}, + "conditional": { + "show": null, + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "signature", + "input": true, + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "unique": false, + "refreshOn": "", + "dataGridLabel": false, + "autofocus": false, + "dbIndex": false, + "widget": { + "type": "input" + }, + "validateOn": "change", + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "minWidth": "0.5", + "maxWidth": "2.5", + "keepOverlayRatio": true, + "id": "ehazy0p" + }, + { + "label": "Date", + "labelPosition": "top", + "displayInTimezone": "viewer", + "useLocaleSettings": false, + "allowInput": true, + "format": "yyyy-MM-dd hh:mm a", + "placeholder": "", + "description": "", + "tooltip": "", + "customClass": "", + "tabindex": "", + "hidden": false, + "hideLabel": false, + "autofocus": false, + "disabled": false, + "tableView": false, + "modalEdit": false, + "shortcutButtons": [], + "enableDate": true, + "datePicker": { + "disable": "", + "disableFunction": "", + "disableWeekends": false, + "disableWeekdays": false, + "minDate": null, + "maxDate": null, + "showWeeks": true, + "startingDay": 0, + "initDate": "", + "minMode": "day", + "maxMode": "year", + "yearRows": 4, + "yearColumns": 5 + }, + "enableTime": true, + "timePicker": { + "showMeridian": true, + "hourStep": 1, + "minuteStep": 1, + "readonlyInput": false, + "mousewheel": true, + "arrowkeys": true + }, + "multiple": false, + "defaultValue": "", + "defaultDate": "", + "customOptions": {}, + "persistent": true, + "protected": false, + "dbIndex": false, + "encrypted": false, + "redrawOn": "", + "clearOnHide": true, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "allowCalculateOverride": false, + "validateOn": "change", + "validate": { + "required": false, + "customMessage": "", + "custom": "", + "customPrivate": false, + "json": "", + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "enableMinDateInput": false, + "enableMaxDateInput": false, + "unique": false, + "errorLabel": "", + "errors": "", + "key": "dateTime", + "tags": [], + "properties": {}, + "conditional": { + "show": null, + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "datetime", + "timezone": "", + "input": true, + "widget": { + "type": "calendar", + "displayInTimezone": "viewer", + "locale": "en", + "useLocaleSettings": false, + "allowInput": true, + "mode": "single", + "enableTime": true, + "noCalendar": false, + "format": "yyyy-MM-dd hh:mm a", + "hourIncrement": 1, + "minuteIncrement": 1, + "time_24hr": false, + "minDate": null, + "disabledDates": "", + "disableWeekends": false, + "disableWeekdays": false, + "disableFunction": "", + "maxDate": null + }, + "prefix": "", + "suffix": "", + "refreshOn": "", + "dataGridLabel": false, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "datepickerMode": "day", + "id": "etjv8wm" + } + ], + "width": 6, + "offset": 0, + "push": 0, + "pull": 0, + "size": "md", + "currentWidth": 6 + }, + { + "components": [ + { + "label": "Address", + "labelPosition": "top", + "placeholder": "", + "description": "", + "tooltip": "", + "prefix": "", + "suffix": "", + "widget": { + "type": "input" + }, + "inputMask": "", + "displayMask": "", + "allowMultipleMasks": false, + "customClass": "", + "tabindex": "", + "autocomplete": "", + "hidden": false, + "hideLabel": false, + "showWordCount": false, + "showCharCount": false, + "mask": false, + "autofocus": false, + "spellcheck": true, + "disabled": false, + "tableView": true, + "modalEdit": false, + "multiple": false, + "persistent": true, + "inputFormat": "plain", + "protected": false, + "dbIndex": false, + "case": "", + "truncateMultipleSpaces": false, + "encrypted": false, + "redrawOn": "", + "clearOnHide": true, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "allowCalculateOverride": false, + "validateOn": "change", + "validate": { + "required": false, + "pattern": "", + "customMessage": "", + "custom": "", + "customPrivate": false, + "json": "", + "minLength": "", + "maxLength": "", + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "unique": false, + "errorLabel": "", + "errors": "", + "key": "address", + "tags": [], + "properties": {}, + "conditional": { + "show": null, + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "textfield", + "input": true, + "refreshOn": "", + "dataGridLabel": false, + "addons": [], + "inputType": "text", + "id": "e0t58xs", + "defaultValue": "" + }, + { + "label": "Postal Code", + "labelPosition": "top", + "placeholder": "", + "description": "", + "tooltip": "", + "prefix": "", + "suffix": "", + "widget": { + "type": "input" + }, + "inputMask": "", + "displayMask": "", + "allowMultipleMasks": false, + "customClass": "", + "tabindex": "", + "autocomplete": "", + "hidden": false, + "hideLabel": false, + "showWordCount": false, + "showCharCount": false, + "mask": false, + "autofocus": false, + "spellcheck": true, + "disabled": false, + "tableView": true, + "modalEdit": false, + "multiple": false, + "persistent": true, + "inputFormat": "plain", + "protected": false, + "dbIndex": false, + "case": "", + "truncateMultipleSpaces": false, + "encrypted": false, + "redrawOn": "", + "clearOnHide": true, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "allowCalculateOverride": false, + "validateOn": "change", + "validate": { + "required": false, + "pattern": "", + "customMessage": "", + "custom": "", + "customPrivate": false, + "json": "", + "minLength": "", + "maxLength": "", + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "unique": false, + "errorLabel": "", + "errors": "", + "key": "postalCode", + "tags": [], + "properties": {}, + "conditional": { + "show": null, + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "textfield", + "input": true, + "refreshOn": "", + "dataGridLabel": false, + "addons": [], + "inputType": "text", + "id": "edujc18", + "defaultValue": "" + }, + { + "input": false, + "key": "columns1", + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "hidden": false, + "clearOnHide": false, + "refreshOn": "", + "redrawOn": "", + "tableView": false, + "modalEdit": false, + "label": "Columns", + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "tree": false, + "lazyLoad": false, + "type": "columns", + "columns": [ + { + "components": [ + { + "label": "City", + "labelPosition": "top", + "placeholder": "", + "description": "", + "tooltip": "", + "prefix": "", + "suffix": "", + "widget": { + "type": "input" + }, + "inputMask": "", + "displayMask": "", + "allowMultipleMasks": false, + "customClass": "", + "tabindex": "", + "autocomplete": "", + "hidden": false, + "hideLabel": false, + "showWordCount": false, + "showCharCount": false, + "mask": false, + "autofocus": false, + "spellcheck": true, + "disabled": false, + "tableView": true, + "modalEdit": false, + "multiple": false, + "persistent": true, + "inputFormat": "plain", + "protected": false, + "dbIndex": false, + "case": "", + "truncateMultipleSpaces": false, + "encrypted": false, + "redrawOn": "", + "clearOnHide": true, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "allowCalculateOverride": false, + "validateOn": "change", + "validate": { + "required": false, + "pattern": "", + "customMessage": "", + "custom": "", + "customPrivate": false, + "json": "", + "minLength": "", + "maxLength": "", + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "unique": false, + "errorLabel": "", + "errors": "", + "key": "city", + "tags": [], + "properties": {}, + "conditional": { + "show": null, + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "textfield", + "input": true, + "refreshOn": "", + "dataGridLabel": false, + "addons": [], + "inputType": "text", + "id": "ejwgarc", + "defaultValue": "" + }, + { + "label": "Postal Code", + "labelPosition": "top", + "placeholder": "", + "description": "", + "tooltip": "", + "prefix": "", + "suffix": "", + "widget": { + "type": "input" + }, + "inputMask": "", + "displayMask": "", + "allowMultipleMasks": false, + "customClass": "", + "tabindex": "", + "autocomplete": "", + "hidden": false, + "hideLabel": false, + "showWordCount": false, + "showCharCount": false, + "mask": false, + "autofocus": false, + "spellcheck": true, + "disabled": false, + "tableView": true, + "modalEdit": false, + "multiple": false, + "persistent": true, + "inputFormat": "plain", + "protected": false, + "dbIndex": false, + "case": "", + "truncateMultipleSpaces": false, + "encrypted": false, + "redrawOn": "", + "clearOnHide": true, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "allowCalculateOverride": false, + "validateOn": "change", + "validate": { + "required": false, + "pattern": "", + "customMessage": "", + "custom": "", + "customPrivate": false, + "json": "", + "minLength": "", + "maxLength": "", + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "unique": false, + "errorLabel": "", + "errors": "", + "key": "postalCode1", + "tags": [], + "properties": {}, + "conditional": { + "show": null, + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "textfield", + "input": true, + "refreshOn": "", + "dataGridLabel": false, + "addons": [], + "inputType": "text", + "id": "esqr745", + "defaultValue": "" + } + ], + "width": 6, + "offset": 0, + "push": 0, + "pull": 0, + "size": "md", + "currentWidth": 6 + }, + { + "components": [ + { + "label": "Province", + "labelPosition": "top", + "placeholder": "", + "description": "", + "tooltip": "", + "prefix": "", + "suffix": "", + "widget": { + "type": "input" + }, + "inputMask": "", + "displayMask": "", + "allowMultipleMasks": false, + "customClass": "", + "tabindex": "", + "autocomplete": "", + "hidden": false, + "hideLabel": false, + "showWordCount": false, + "showCharCount": false, + "mask": false, + "autofocus": false, + "spellcheck": true, + "disabled": false, + "tableView": true, + "modalEdit": false, + "multiple": false, + "persistent": true, + "inputFormat": "plain", + "protected": false, + "dbIndex": false, + "case": "", + "truncateMultipleSpaces": false, + "encrypted": false, + "redrawOn": "", + "clearOnHide": true, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "allowCalculateOverride": false, + "validateOn": "change", + "validate": { + "required": false, + "pattern": "", + "customMessage": "", + "custom": "", + "customPrivate": false, + "json": "", + "minLength": "", + "maxLength": "", + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "unique": false, + "errorLabel": "", + "errors": "", + "key": "province", + "tags": [], + "properties": {}, + "conditional": { + "show": null, + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "textfield", + "input": true, + "refreshOn": "", + "dataGridLabel": false, + "addons": [], + "inputType": "text", + "id": "eo9uzz", + "defaultValue": "" + }, + { + "label": "Country", + "labelPosition": "top", + "placeholder": "", + "description": "", + "tooltip": "", + "prefix": "", + "suffix": "", + "widget": { + "type": "input" + }, + "inputMask": "", + "displayMask": "", + "allowMultipleMasks": false, + "customClass": "", + "tabindex": "", + "autocomplete": "", + "hidden": false, + "hideLabel": false, + "showWordCount": false, + "showCharCount": false, + "mask": false, + "autofocus": false, + "spellcheck": true, + "disabled": false, + "tableView": true, + "modalEdit": false, + "multiple": false, + "persistent": true, + "inputFormat": "plain", + "protected": false, + "dbIndex": false, + "case": "", + "truncateMultipleSpaces": false, + "encrypted": false, + "redrawOn": "", + "clearOnHide": true, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "allowCalculateOverride": false, + "validateOn": "change", + "validate": { + "required": false, + "pattern": "", + "customMessage": "", + "custom": "", + "customPrivate": false, + "json": "", + "minLength": "", + "maxLength": "", + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "unique": false, + "errorLabel": "", + "errors": "", + "key": "country", + "tags": [], + "properties": {}, + "conditional": { + "show": null, + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "textfield", + "input": true, + "refreshOn": "", + "dataGridLabel": false, + "addons": [], + "inputType": "text", + "id": "e62t8ss", + "defaultValue": "" + } + ], + "width": 6, + "offset": 0, + "push": 0, + "pull": 0, + "size": "md", + "currentWidth": 6 + } + ], + "autoAdjust": false, + "id": "ergznb" + } + ], + "width": 6, + "offset": 0, + "push": 0, + "pull": 0, + "size": "md", + "currentWidth": 6 + } + ], + "key": "approvedProfessionalSignature", + "type": "columns", + "input": false, + "tableView": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "hidden": false, + "clearOnHide": false, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "tree": false, + "lazyLoad": false, + "autoAdjust": false, + "id": "e18pyfg" + } + ], + "id": "e3jlek" + }, + { + "type": "button", + "label": "Submit", + "key": "submit", + "size": "md", + "block": false, + "action": "submit", + "disableOnInvalid": true, + "theme": "primary", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "tableView": false, + "modalEdit": false, + "dataGridLabel": true, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "leftIcon": "", + "rightIcon": "", + "id": "emkrxp" + }, + { + "label": "applicationId", + "customClass": "", + "addons": [], + "modalEdit": false, + "persistent": true, + "protected": false, + "dbIndex": false, + "encrypted": false, + "redrawOn": "", + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "key": "applicationId", + "tags": [], + "properties": {}, + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "hidden", + "input": true, + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "unique": false, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "tableView": false, + "labelPosition": "top", + "Description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "widget": { + "type": "input" + }, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "allowCalculateOverride": false, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "inputType": "hidden", + "id": "em1y8gd", + "defaultValue": "", + "dataGridLabel": false, + "description": "" + }, + { + "label": "applicationStatus", + "addons": [], + "customClass": "", + "modalEdit": false, + "defaultValue": null, + "persistent": true, + "protected": false, + "dbIndex": false, + "encrypted": false, + "redrawOn": "", + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "key": "applicationStatus", + "tags": [], + "properties": {}, + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "hidden", + "input": true, + "tableView": false, + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "unique": false, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "dataGridLabel": false, + "labelPosition": "top", + "Description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "widget": { + "type": "input" + }, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "allowCalculateOverride": false, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "inputType": "hidden", + "id": "e6z1qd9", + "description": "" + } + ] + } + ] +} \ No newline at end of file diff --git a/forms-flow-ai/epd-forms/bundling/Summary of Site Condition-Bundle.json b/forms-flow-ai/epd-forms/bundling/Summary of Site Condition-Bundle.json new file mode 100644 index 00000000..57a9b046 --- /dev/null +++ b/forms-flow-ai/epd-forms/bundling/Summary of Site Condition-Bundle.json @@ -0,0 +1,44865 @@ +{ + "forms": [ + { + "title": "Summary of Site Condition", + "display": "form", + "type": "form", + "name": "summaryOfSiteConditionBundle", + "path": "summaryofsiteconditionbundle", + "tags": [ + "common" + ], + "components": [ + { + "title": "Reviewer Actions", + "collapsible": false, + "hideLabel": true, + "key": "reviewerActions", + "customConditional": "const UserDetails = JSON.parse(localStorage.getItem(\"UserDetails\"));\r\nconst roles = UserDetails[\"role\"];\r\nif(roles.includes(\"formsflow-client\") || \r\nroles.includes(\"formsflow-reviewer/cssa-team\") || \r\nroles.includes(\"formsflow-reviewer/cssa-manager\")|| \r\nroles.includes(\"formsflow-reviewer/csap\") || \r\nroles.includes(\"formsflow-reviewer/csap-society\") ||\r\nroles.includes(\"formsflow-reviewer/formsflow-client-reviewer\")) {\r\n show = false;\r\n}\r\nelse\r\n{\r\n if (data.riskclassification === \"exempt\") {\r\n show = false;\r\n } else {\r\n show = true;\r\n }\r\n}", + "type": "panel", + "label": "Panel", + "input": false, + "tableView": false, + "components": [ + { + "label": "Columns", + "columns": [ + { + "components": [ + { + "label": "Previous Reviewer", + "action": "custom", + "showValidations": false, + "tableView": false, + "key": "prevReviewer", + "customConditional": "const UserDetails = JSON.parse(localStorage.getItem(\"UserDetails\"))\r\n\r\nconst roles = UserDetails[\"role\"];\r\n\r\n\r\nif(roles.includes(\"formsflow-reviewer\") && \r\n!roles.includes(\"formsflow-reviewer/caseworker\") &&\r\n!(roles.includes(\"formsflow-reviewer/sdm\") && data.typeOfReview === \"applicationViaTheSocietyOfContaminatedSitesApprovedProfessionalsOfBc\")) {\r\n show = true;\r\n}\r\nelse\r\n{\r\n show = false;\r\n}", + "type": "button", + "custom": "const submissionId = form._submission._id;\r\nconst formId = form._submission.form;\r\nconst formDataReqUrl = form.formio?form.formio.formUrl:(localStorage.getItem('customSubmissionUrl')+'/form/'+formId)+'/submission/'+submissionId;\r\nconst filteredData = _.pick(data, data.cssaUtilKeys);\r\nconst formDataReqObj1 = { \"_id\": submissionId, \"data\": filteredData};\r\nconst formio = new Formio(formDataReqUrl);\r\nformio.saveSubmission(formDataReqObj1).then( result => {\r\nform.emit('customEvent', {\r\n type: \"actionComplete\", \r\n component: component,\r\n actionType: 'Recheck'\r\n }); \r\n}).catch((error)=>{\r\n//Error callback on not Save\r\nform.emit('customEvent', {\r\n type: \"actionError\", \r\n component: component,\r\n actionType:'Recheck'\r\n }); \r\n});", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": true, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "size": "md", + "leftIcon": "", + "rightIcon": "", + "block": false, + "disableOnInvalid": false, + "theme": "primary", + "id": "egxsp3h" + } + ], + "offset": 0, + "push": 0, + "pull": 0, + "size": "md", + "currentWidth": 3, + "width": 3 + }, + { + "components": [ + { + "label": "Next Reviewer", + "action": "custom", + "showValidations": false, + "tableView": false, + "key": "nextReviewer", + "customConditional": "const UserDetails = JSON.parse(localStorage.getItem(\"UserDetails\"));\r\n\r\nconst roles = UserDetails[\"role\"];\r\n\r\nif(roles.includes(\"formsflow-reviewer/caseworker\")) {\r\n show = true;\r\n}\r\nelse\r\n{\r\n show = false;\r\n}", + "type": "button", + "custom": "const submissionId = form._submission._id;\r\nconst formId = form._submission.form;\r\nconst formDataReqUrl = form.formio?form.formio.formUrl:(localStorage.getItem('customSubmissionUrl')+'/form/'+formId)+'/submission/'+submissionId;\r\n\r\nconst filteredData = _.pick(data, data.cssaUtilKeys);\r\n\r\nconst formDataReqObj1 = { \"_id\": submissionId, \"data\": filteredData};\r\nconst formio = new Formio(formDataReqUrl);\r\nformio.saveSubmission(formDataReqObj1).then( result => {\r\nform.emit('customEvent', {\r\n type: \"actionComplete\", \r\n component: component,\r\n actionType: 'Accepted'\r\n }); \r\n}).catch((error)=>{\r\n//Error callback on not Save\r\nform.emit('customEvent', {\r\n type: \"actionError\", \r\n component: component,\r\n actionType:'Accepted'\r\n }); \r\n});", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": true, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "size": "md", + "leftIcon": "", + "rightIcon": "", + "block": false, + "disableOnInvalid": false, + "theme": "primary", + "id": "e8ywitm" + }, + { + "label": "Approved", + "action": "custom", + "showValidations": false, + "tableView": false, + "key": "approved", + "customConditional": "const UserDetails = JSON.parse(localStorage.getItem(\"UserDetails\"));\r\n\r\nconst roles = UserDetails[\"role\"];\r\n\r\nif(roles.includes(\"formsflow-reviewer/sdm\")) {\r\n show = true;\r\n}\r\nelse\r\n{\r\n show = false;\r\n}", + "type": "button", + "custom": "\r\nconst submissionId = form._submission._id;\r\nconst formId = form._submission.form;\r\nconst formDataReqUrl = form.formio?form.formio.formUrl:(localStorage.getItem('customSubmissionUrl')+'/form/'+formId)+'/submission/'+submissionId;\r\nconst filteredData = _.pick(data, data.cssaUtilKeys);\r\nconst formDataReqObj1 = { \"_id\": submissionId, \"data\": filteredData};\r\nconst formio = new Formio(formDataReqUrl);\r\nformio.saveSubmission(formDataReqObj1).then( result => {\r\nform.emit('customEvent', {\r\n type: \"actionComplete\", \r\n component: component,\r\n actionType: 'Approved'\r\n }); \r\n}).catch((error)=>{\r\n//Error callback on not Save\r\nform.emit('customEvent', {\r\n type: \"actionError\", \r\n component: component,\r\n actionType:'Approved'\r\n }); \r\n});\r\n", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": true, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "size": "md", + "leftIcon": "", + "rightIcon": "", + "block": false, + "disableOnInvalid": false, + "theme": "primary", + "id": "evn8m09" + } + ], + "width": 3, + "offset": 0, + "push": 0, + "pull": 0, + "size": "md", + "currentWidth": 3 + }, + { + "components": [ + { + "label": "Needs More Info", + "action": "custom", + "showValidations": false, + "theme": "warning", + "disabled": true, + "tableView": false, + "key": "needsMoreInfo", + "customConditional": "const UserDetails = JSON.parse(localStorage.getItem(\"UserDetails\"));\r\nconst roles = UserDetails[\"role\"];\r\nconst taskUrl = window.location.pathname.split('/');\r\nconst taskId = taskUrl[2];\r\nconst authToken = localStorage.getItem(\"authToken\");\r\nconst bpmUrl = localStorage.getItem(\"bpmApiUrl\");\r\nvar reqUrl = bpmUrl + \"/task/\" + taskId + \"/variables\";\r\n\r\n\r\n getData(reqUrl, authToken).then((response) => {\r\n \r\n\t if(roles.includes(\"formsflow-reviewer\")) {\r\n \tvar applicationStatus = response.applicationStatus ? response.applicationStatus.value : '';\r\n \t show = true;\r\n \t \r\n\r\n \t\t\r\n\t if (applicationStatus === 'Resubmit') {\r\n\t component.disabled = true;\r\n\t component.description = 'Disabled since SRCR resubmission in progress';\r\n\t instance.triggerRedraw();\r\n\t } else {\r\n\t component.description = '';\r\n\t component.disabled = false;\r\n\t instance.triggerRedraw();\r\n\t }\r\n\t }\r\n\t else\r\n\t {\r\n \t\tshow = false;\r\n\t }\r\n });\r\n\r\n\r\nasync function getData(reqUrl, authToken) {\r\n const response = await fetch(reqUrl, {\r\n method: \"GET\",\r\n headers: {\r\n \"Content-type\": \"application/json\",\r\n Accept: \"application/json\",\r\n Authorization: \"Bearer \" + authToken,\r\n },\r\n });\r\n const data = await response.json();\r\n return data;\r\n}", + "type": "button", + "custom": "const submissionId = form._submission._id;\r\nconst formId = form._submission.form;\r\nconst formDataReqUrl = form.formio?form.formio.formUrl:(localStorage.getItem('customSubmissionUrl')+'/form/'+formId)+'/submission/'+submissionId;+submissionId;\r\nconst filteredData = _.pick(data, data.cssaUtilKeys);\r\nconst formDataReqObj1 = { \"_id\": submissionId, \"data\": filteredData};\r\nconst formio = new Formio(formDataReqUrl);\r\nformio.saveSubmission(formDataReqObj1).then( result => {\r\nform.emit('customEvent', {\r\n type: \"actionComplete\", \r\n component: component,\r\n actionType: 'Returned'\r\n }); \r\n}).catch((error)=>{\r\n//Error callback on not Save\r\nform.emit('customEvent', {\r\n type: \"actionError\", \r\n component: component,\r\n actionType:'Returned'\r\n }); \r\n});", + "input": true, + "redrawOn": "textField", + "keyModified": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "modalEdit": false, + "dataGridLabel": true, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "size": "md", + "leftIcon": "", + "rightIcon": "", + "block": false, + "disableOnInvalid": false, + "id": "e5ues4" + } + ], + "size": "md", + "width": 3, + "offset": 0, + "push": 0, + "pull": 0, + "currentWidth": 3 + }, + { + "components": [ + { + "label": "Reject Form", + "action": "custom", + "showValidations": false, + "theme": "danger", + "tableView": false, + "key": "rejected", + "customConditional": "const UserDetails = JSON.parse(localStorage.getItem(\"UserDetails\"))\r\n\r\nconst roles = UserDetails[\"role\"];\r\n\r\nif(roles.includes(\"formsflow-reviewer\") && \r\n!(roles.includes(\"formsflow-reviewer/csap\") ||\r\nroles.includes(\"formsflow-reviewer/csap-society\"))) {\r\n show = true;\r\n}\r\nelse\r\n{\r\n show = false;\r\n}", + "type": "button", + "custom": "const submissionId = form._submission._id;\r\nconst formId = form._submission.form;\r\nconst formDataReqUrl = form.formio?form.formio.formUrl:(localStorage.getItem('customSubmissionUrl')+'/form/'+formId)+'/submission/'+submissionId;\r\nconst filteredData = _.pick(data, data.cssaUtilKeys);\r\nconst formDataReqObj1 = { \"_id\": submissionId, \"data\": filteredData};\r\nconst formio = new Formio(formDataReqUrl);\r\nformio.saveSubmission(formDataReqObj1).then( result => {\r\nform.emit('customEvent', {\r\n type: \"actionComplete\", \r\n component: component,\r\n actionType: 'Rejected'\r\n }); \r\n}).catch((error)=>{\r\n//Error callback on not Save\r\nform.emit('customEvent', {\r\n type: \"actionError\", \r\n component: component,\r\n actionType:'Rejected'\r\n }); \r\n});\r\n", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": true, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "size": "md", + "leftIcon": "", + "rightIcon": "", + "block": false, + "disableOnInvalid": false, + "id": "eeuquma" + } + ], + "size": "md", + "width": 3, + "offset": 0, + "push": 0, + "pull": 0, + "currentWidth": 3 + } + ], + "hideLabel": true, + "key": "columns", + "type": "columns", + "input": false, + "tableView": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "hidden": false, + "clearOnHide": false, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "tree": false, + "lazyLoad": false, + "autoAdjust": false, + "id": "e9sdimc" + } + ], + "keyModified": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "hidden": false, + "clearOnHide": false, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "tree": false, + "lazyLoad": false, + "theme": "default", + "breadcrumb": "default", + "id": "e3fjtw" + }, + { + "title": "Reviewer Actions", + "collapsible": false, + "key": "cssaBundleActions", + "customConditional": "\r\nconst UserDetails = JSON.parse(localStorage.getItem(\"UserDetails\"))\r\nconst roles = UserDetails[\"role\"];\r\n\r\nif(roles.includes(\"formsflow-reviewer/cssa-team\") || \r\nroles.includes(\"formsflow-reviewer/cssa-manager\") ||\r\nroles.includes(\"formsflow-reviewer/csap\") || \r\nroles.includes(\"formsflow-reviewer/csap-society\")|| \r\nroles.includes(\"formsflow-reviewer/caseworker\")|| \r\nroles.includes(\"formsflow-reviewer/sdm\")) {\r\n if (data.riskclassification === \"exempt\"){\r\n show = true;\r\n } else {\r\n show = false;\r\n }\r\n}\r\nelse\r\n{\r\n show = false;\r\n}", + "type": "panel", + "label": "Panel", + "input": false, + "tableView": false, + "components": [ + { + "label": "Columns", + "columns": [ + { + "components": [ + { + "label": "Previous Reviewer", + "action": "custom", + "showValidations": false, + "tableView": false, + "key": "sendBundleToPreviousReviewer", + "customConditional": "const UserDetails = JSON.parse(localStorage.getItem(\"UserDetails\"))\r\n\r\n\r\n\r\nconst roles = UserDetails[\"role\"];\r\n\r\n\r\nif(\r\n(roles.includes(\"formsflow-reviewer/csap\") || roles.includes(\"formsflow-reviewer/cssa-team\")) && \r\n(data.applicationStatus===\"New\" || data.applicationStatus===\"Resubmitted\" || data.applicationStatus===\"Recheck\") \r\n) {\r\n show = false;\r\n}\r\nelse\r\n{\r\n show = true;\r\n}", + "type": "button", + "custom": "form.emit('customEvent', {\r\n type: \"actionComplete\", \r\n component: component,\r\n actionType:'Recheck'\r\n });", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": true, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "size": "md", + "leftIcon": "", + "rightIcon": "", + "block": false, + "disableOnInvalid": false, + "theme": "primary", + "id": "e9xv8c" + } + ], + "width": 3, + "offset": 0, + "push": 0, + "pull": 0, + "size": "md", + "currentWidth": 3 + }, + { + "components": [ + { + "label": "Next Reviewer", + "action": "custom", + "showValidations": false, + "tableView": false, + "key": "sendBundleToNextReviewer", + "customConditional": "\r\nconst UserDetails = JSON.parse(localStorage.getItem(\"UserDetails\"))\r\n\r\n\r\n\r\nconst roles = UserDetails[\"role\"];\r\n\r\n\r\nif(roles.includes(\"formsflow-reviewer/cssa-team\") || \r\nroles.includes(\"formsflow-reviewer/cssa-manager\") || \r\nroles.includes(\"formsflow-reviewer/csap\") || \r\nroles.includes(\"formsflow-reviewer/csap-society\") || \r\nroles.includes(\"formsflow-reviewer/caseworker\")) {\r\n show = true;\r\n}\r\nelse\r\n{\r\n show = false;\r\n}", + "type": "button", + "custom": "const UserDetails = JSON.parse(localStorage.getItem(\"UserDetails\"))\r\nconst roles = UserDetails[\"role\"];\r\nif(roles.includes(\"formsflow-reviewer/cssa-manager\") && \r\n(data.selectCssaSdm===''||data.selectCssaSdm===undefined|| \r\n(data.typeOfReview==='directToMinistryApplication'&&data.selectCssaCaseworker===undefined|| data.selectCssaCaseworker==='')))\r\n{\r\n alert('Please assign reviewers to continue!');\r\n \r\n}\r\nelse\r\n{\r\n form.emit('customEvent', {\r\n type: \"actionComplete\", \r\n component: component,\r\n actionType:'Accepted'\r\n });\r\n}", + "input": true, + "keyModified": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": true, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "size": "md", + "leftIcon": "", + "rightIcon": "", + "block": false, + "disableOnInvalid": false, + "theme": "primary", + "id": "e5d0iuo" + }, + { + "label": "Approved", + "action": "custom", + "showValidations": false, + "tableView": false, + "key": "approveBundle", + "customConditional": "const UserDetails = JSON.parse(localStorage.getItem(\"UserDetails\"))\r\n\r\n\r\n\r\nconst roles = UserDetails[\"role\"];\r\n\r\n\r\nif(roles.includes(\"formsflow-reviewer/sdm\")) {\r\n show = true;\r\n}\r\nelse\r\n{\r\n show = false;\r\n}", + "type": "button", + "custom": "\r\nform.emit('customEvent', {\r\n type: \"actionComplete\", \r\n component: component,\r\n actionType: 'Approved'\r\n})", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": true, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "size": "md", + "leftIcon": "", + "rightIcon": "", + "block": false, + "disableOnInvalid": false, + "theme": "primary", + "id": "eu9gwi" + } + ], + "width": 3, + "offset": 0, + "push": 0, + "pull": 0, + "size": "md", + "currentWidth": 3 + }, + { + "components": [ + { + "label": "Needs More Info", + "action": "custom", + "showValidations": false, + "theme": "warning", + "tableView": false, + "key": "sendBundleToApplicant", + "customConditional": "const UserDetails = JSON.parse(localStorage.getItem(\"UserDetails\"))\r\nconst roles = UserDetails[\"role\"];\r\n\r\nif(roles.includes(\"formsflow-reviewer/cssa-manager\")) {\r\n show = false;\r\n}\r\nelse\r\n{\r\n show = true;\r\n}", + "type": "button", + "custom": "form.emit('customEvent', {\r\n type: \"actionComplete\", \r\n component: component,\r\n actionType:'Returned'\r\n });", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": true, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "size": "md", + "leftIcon": "", + "rightIcon": "", + "block": false, + "disableOnInvalid": false, + "id": "esfoixl" + } + ], + "size": "md", + "width": 3, + "offset": 0, + "push": 0, + "pull": 0, + "currentWidth": 3 + }, + { + "components": [ + { + "label": "Reject Form", + "action": "custom", + "showValidations": false, + "theme": "danger", + "tableView": false, + "key": "rejectBundle", + "customConditional": "const UserDetails = JSON.parse(localStorage.getItem(\"UserDetails\"))\r\n\r\nconst roles = UserDetails[\"role\"];\r\n\r\nif(roles.includes(\"formsflow-reviewer\") && \r\n!(roles.includes(\"formsflow-reviewer/cssa-manager\") || \r\nroles.includes(\"formsflow-reviewer/csap\") ||\r\nroles.includes(\"formsflow-reviewer/csap-society\"))) {\r\n show = true;\r\n}\r\nelse\r\n{\r\n show = false;\r\n}", + "type": "button", + "custom": "\r\nform.emit('customEvent', {\r\n type: \"actionComplete\", \r\n component: component,\r\n actionType: 'Rejected'\r\n}); ", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": true, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "size": "md", + "leftIcon": "", + "rightIcon": "", + "block": false, + "disableOnInvalid": false, + "id": "eh5xh0h" + } + ], + "size": "md", + "width": 3, + "offset": 0, + "push": 0, + "pull": 0, + "currentWidth": 3 + } + ], + "key": "columns", + "type": "columns", + "input": false, + "tableView": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "hidden": false, + "clearOnHide": false, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "tree": false, + "lazyLoad": false, + "autoAdjust": false, + "id": "epe166" + } + ], + "keyModified": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "hidden": false, + "clearOnHide": false, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "tree": false, + "lazyLoad": false, + "theme": "default", + "breadcrumb": "default", + "id": "eiaowx6" + }, + { + "label": "Edit Grid", + "labelPosition": "top", + "description": "", + "tooltip": "", + "customClass": "", + "tabindex": "", + "openWhenEmpty": false, + "disableAddingRemovingRows": false, + "conditionalAddButton": "", + "hidden": false, + "hideLabel": true, + "autofocus": false, + "disabled": false, + "tableView": true, + "modalEdit": false, + "templates": { + "header": "\r\n{% console.log(\"row-key header\",'commentFor',row['commentFor']) %}\r\n{% const UserDetails = JSON.parse(localStorage.getItem(\"UserDetails\"))%}\r\n{% const groups = UserDetails[\"groups\"]; %}\r\n\r\n{% if(groups.includes(\"/formsflow/formsflow-reviewer/formsflow-client-reviewer\") || groups.includes(\"/formsflow/formsflow-reviewer/lrs-approving-authority\") || groups.includes(\"/formsflow/formsflow-client\")){ %}\r\n\r\n
\r\n {% util.eachComponent(components, function(component) { %}\r\n {% if (displayValue(component) && component.key !== 'commentFor' ) { %}\r\n {% if(component.label === 'Notes') { %}\r\n
{{ t(component.label) }}
\r\n {% } else if(component.key !== 'comments') { %}\r\n
{{ t(component.label) }}
\r\n {% } %}\r\n {% } %}\r\n {% }) %}\r\n
\r\n\r\n{% } else { %}\r\n\r\n
\r\n {% util.eachComponent(components, function(component) { %}\r\n {% if (displayValue(component)) { %}\r\n {% if(component.key == 'comments') { %}\r\n
{{ t(component.label)}}
\r\n{% } else { %}\r\n
{{ t(component.label)}}
\r\n{% } %} \r\n {% } %}\r\n {% }) %}\r\n
\r\n\r\n{% } %}", + "tableHeader": "\n \n {% util.eachComponent(components, function(component) { %}\n {% if (!component.hasOwnProperty('tableView') || component.tableView) { %}\n {{ component.label }}\n {% } %}\n {% }) %}\n {% if (!instance.options.readOnly && !instance.disabled) { %}\n Actions\n {% } %}\n \n ", + "row": "{% console.log(\"row-key main\",'commentFor',row['commentFor']) %}\r\n{% const UserDetails = JSON.parse(localStorage.getItem(\"UserDetails\"))%}\r\n{% const groups = UserDetails[\"groups\"]; %}\r\n\r\n{% if((groups.includes(\"/formsflow/formsflow-reviewer/formsflow-client-reviewer\") || groups.includes(\"/formsflow/formsflow-reviewer/lrs-approving-authority\") || groups.includes(\"/formsflow/formsflow-client\")) && row['commentFor']==='external'){ %}\r\n\r\n\r\n\r\n
\r\n\r\n {% util.eachComponent(components, function(component) { %}\r\n {% if (displayValue(component) && component.key !== 'commentFor' ) { %}\r\n {% console.log(\"row-key\",component.key,row[component.key]) %}\r\n {% const UserDetails = JSON.parse(localStorage.getItem(\"UserDetails\"))%}\r\n{% const groups = UserDetails[\"groups\"]; %}\r\n{% if((groups.includes(\"/formsflow/formsflow-reviewer/formsflow-client-reviewer\") || groups.includes(\"/formsflow/formsflow-reviewer/lrs-approving-authority\") || groups.includes(\"/formsflow/formsflow-client\")) && row['commentFor']==='external'){ %}\r\n{% if(component.key == 'comments') { %}\r\n
\r\n {{ getView(component, row[component.key])}}\r\n
\r\n{% } else { %}\r\n
\r\n {{ getView(component, row[component.key])}}\r\n
\r\n{%}%}\r\n \r\n\r\n {% } %}\r\n {% } %}\r\n {% }) %}\r\n {% if (!instance.options.readOnly && !instance.disabled) { %}\r\n {% const UserDetails = JSON.parse(localStorage.getItem(\"UserDetails\"))%}\r\n{% const groups = UserDetails[\"groups\"]; %}\r\n{% if((groups.includes(\"/formsflow/formsflow-reviewer/formsflow-client-reviewer\") || groups.includes(\"/formsflow/formsflow-reviewer/lrs-approving-authority\") || groups.includes(\"/formsflow/formsflow-client\")) && row['commentFor']==='external'){ %}\r\n
\r\n
\r\n \r\n {% if (!instance.hasRemoveButtons || instance.hasRemoveButtons()) { %}\r\n \r\n {% } %}\r\n
\r\n
\r\n \r\n {% } %}\r\n {% } %}\r\n
\r\n {% } else if (groups.includes(\"/formsflow/formsflow-reviewer/site-information-advisor\")) { %}\r\n
\r\n {% util.eachComponent(components, function(component) { %}\r\n {% console.log('for sia') %}\r\n {% if (displayValue(component)) { %}\r\n {% if(component.key == 'comments') { %}\r\n
{{ getView(component, row[component.key])}}
\r\n{% } else { %}\r\n
{{ getView(component, row[component.key])}}
\r\n{% } %} \r\n \r\n {% } %}\r\n {% }) %}\r\n {% if (!instance.options.readOnly && !instance.disabled) { %}\r\n
\r\n
\r\n \r\n {% if (!instance.hasRemoveButtons || instance.hasRemoveButtons()) { %}\r\n \r\n {% } %}\r\n
\r\n
\r\n {% } %}\r\n
\r\n {% } %}\r\n \r\n \r\n \r\n{% const emptyElements = []; %}\r\n{% const elements = document.getElementsByClassName(\"list-group-item\"); %}\r\n{% for (let i = 0; i < elements.length; i++) { %}\r\n{% const element = elements[i]; %}\r\n{% if(element.querySelectorAll('div.row').length===0){(element).remove() }} %}", + "tableRow": "\n {% util.eachComponent(components, function(component) { %}\n {% if (!component.hasOwnProperty('tableView') || component.tableView) { %}\n \n {{ getView(component, row[component.key]) }}\n \n {% } %}\n {% }) %}\n {% if (!instance.options.readOnly && !instance.disabled) { %}\n \n
\n \n {% if (!instance.hasRemoveButtons || instance.hasRemoveButtons()) { %}\n \n {% } %}\n
\n \n {% } %}\n ", + "footer": "" + }, + "rowClass": "", + "addAnother": "", + "modal": false, + "saveRow": "", + "removeRow": "Cancel", + "persistent": true, + "inlineEdit": false, + "protected": false, + "dbIndex": false, + "encrypted": false, + "redrawOn": "", + "clearOnHide": true, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "allowCalculateOverride": false, + "validateOn": "change", + "validate": { + "required": false, + "customMessage": "", + "custom": "const emptyElements = [];\r\nconst elements = document.getElementsByClassName(\"list-group-item\");\r\nfor (let i = 0; i < elements.length; i++) {\r\nconst element = elements[i];\r\nconsole.log('in validation remove');\r\nif(element.querySelectorAll('div.row').length===0){(element).remove() }\r\n \r\n}\r\n\r\n\r\nvar b =JSON.parse(localStorage.getItem('UserDetails'))\r\nif(b.groups.indexOf('/formsflow/formsflow-client') > -1 || b.groups.indexOf('/formsflow/formsflow-reviewer/lrs-approving-authority') > -1 || b.groups.indexOf('/formsflow/formsflow-reviewer/formsflow-client-reviewer') > -1 )\r\n{\r\ndocument.querySelector(\"[ref='editgrid-notesSOSC-addRow']\").remove();\r\nvar editButtons = document.querySelectorAll('button.btn.btn-default.btn-light.btn-sm.editRow');\r\nfor(i=0;ix.commentFor==='external').length > 0)\r\nshow = true;\r\nelse\r\nshow = false;\r\n}\r\nelse\r\n{\r\n show = true;\r\n}\r\n", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "editgrid", + "displayAsTable": false, + "input": true, + "components": [ + { + "label": "Columns", + "columns": [ + { + "components": [ + { + "label": "Notes", + "autoExpand": false, + "tableView": true, + "key": "notesSOSC", + "type": "textarea", + "input": true, + "keyModified": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "", + "minWords": "", + "maxWords": "" + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "html", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "rows": 3, + "wysiwyg": false, + "editor": "", + "fixedSize": true, + "id": "ewhsx7p" + } + ], + "width": 4, + "offset": 0, + "push": 0, + "pull": 0, + "size": "md", + "currentWidth": 4 + }, + { + "components": [ + { + "label": "Visibility", + "optionsLabelPosition": "right", + "inline": false, + "tableView": true, + "defaultValue": "internal", + "values": [ + { + "label": "Internal", + "value": "internal", + "shortcut": "" + }, + { + "label": "External", + "value": "external", + "shortcut": "" + } + ], + "key": "commentFor", + "type": "radio", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "onlyAvailableItems": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "inputType": "radio", + "fieldSet": false, + "id": "eg6l854" + } + ], + "width": 2, + "offset": 0, + "push": 0, + "pull": 0, + "size": "md", + "currentWidth": 2 + }, + { + "components": [ + { + "label": "Role", + "disabled": true, + "tableView": true, + "customDefaultValue": "var b =JSON.parse(localStorage.getItem('UserDetails'))\r\nif(b.groups.indexOf('/formsflow/formsflow-client') > -1 )\r\n{\r\n value = 'Client'\r\n}\r\nelse if(b.groups.indexOf('/formsflow/formsflow-reviewer/site-information-advisor') > -1 )\r\n{\r\n value = 'SIA'\r\n}", + "key": "role", + "type": "textfield", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "autofocus": false, + "dbIndex": false, + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "esrtubp" + } + ], + "size": "md", + "width": 2, + "offset": 0, + "push": 0, + "pull": 0, + "currentWidth": 2 + }, + { + "components": [ + { + "label": "Created By", + "disabled": true, + "tableView": true, + "customDefaultValue": "value = JSON.parse( localStorage.UserDetails).name ", + "key": "createdBy", + "type": "textfield", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "autofocus": false, + "dbIndex": false, + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "elcgok" + } + ], + "size": "md", + "width": 2, + "offset": 0, + "push": 0, + "pull": 0, + "currentWidth": 2 + }, + { + "components": [ + { + "label": "Created At", + "disabled": true, + "tableView": true, + "customDefaultValue": "value = (new Date()).toLocaleDateString() + ' At ' + (new Date()).toLocaleTimeString()", + "key": "createdAt", + "type": "textfield", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "autofocus": false, + "dbIndex": false, + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "emurgb" + } + ], + "size": "md", + "width": 2, + "offset": 0, + "push": 0, + "pull": 0, + "currentWidth": 2 + } + ], + "key": "columns", + "type": "columns", + "input": false, + "tableView": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "hidden": false, + "clearOnHide": false, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "tree": false, + "lazyLoad": false, + "autoAdjust": false, + "id": "e4fbc5e" + } + ], + "keyModified": true, + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "unique": false, + "refreshOn": "", + "dataGridLabel": false, + "widget": null, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "tree": true, + "lazyLoad": false, + "defaultOpen": false, + "id": "e6vzi4" + }, + { + "title": "Assign Reviewers", + "collapsible": true, + "key": "soscReviewerAssignment", + "customConditional": " if (data.riskclassification === \"exempt\"){\r\n const UserDetails = JSON.parse(localStorage.getItem(\"UserDetails\"))\r\n const roles = UserDetails[\"role\"];\r\n \r\n if(roles.includes(\"formsflow-reviewer/cssa-manager\")) {\r\n show = true;\r\n }\r\n else\r\n {\r\n show = false;\r\n }\r\n} else {\r\n show = false;\r\n}", + "type": "panel", + "label": "", + "collapsed": false, + "input": false, + "tableView": false, + "components": [ + { + "label": "Columns", + "columns": [ + { + "components": [ + { + "label": "Select SDM", + "widget": "choicesjs", + "tableView": true, + "dataSrc": "url", + "data": { + "url": "{{localStorage.getItem('formsflow.ai.api.url')}}/user?memberOfGroup=formsflow/formsflow-reviewer/sdm", + "headers": [ + { + "key": "Authorization", + "value": "Bearer {{localStorage.getItem(\"authToken\")}}" + }, + { + "key": "Content-type", + "value": "application/json" + }, + { + "key": "Accept", + "value": "application/json" + } + ], + "values": [ + { + "label": "", + "value": "" + } + ], + "json": "", + "resource": "", + "custom": "" + }, + "dataType": "string", + "valueProperty": "username", + "template": "{{ item.lastName }}, {{ item.firstName }}", + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "onlyAvailableItems": false + }, + "key": "selectCssaSdm", + "type": "select", + "selectValues": "data", + "disableLimit": false, + "input": true, + "keyModified": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "idPath": "id", + "clearOnRefresh": false, + "limit": 100, + "lazyLoad": true, + "filter": "", + "searchEnabled": true, + "searchDebounce": 0.3, + "searchField": "", + "minSearch": 0, + "readOnlyValue": false, + "authenticate": false, + "ignoreCache": false, + "selectFields": "", + "selectThreshold": 0.3, + "uniqueOptions": false, + "fuseOptions": { + "include": "score", + "threshold": 0.3 + }, + "indexeddb": { + "filter": {} + }, + "customOptions": {}, + "useExactSearch": false, + "id": "e9csp3n" + } + ], + "width": 4, + "offset": 0, + "push": 0, + "pull": 0, + "size": "md", + "currentWidth": 4 + }, + { + "components": [ + { + "label": "Select Caseworker", + "widget": "choicesjs", + "tableView": true, + "dataSrc": "url", + "data": { + "url": "{{localStorage.getItem('formsflow.ai.api.url')}}/user?memberOfGroup=formsflow/formsflow-reviewer/caseworker", + "headers": [ + { + "key": "Authorization", + "value": "Bearer {{localStorage.getItem(\"authToken\")}}" + }, + { + "key": "Content-type", + "value": "application/json" + }, + { + "key": "Accept", + "value": "application/json" + } + ], + "values": [ + { + "label": "", + "value": "" + } + ], + "json": "", + "resource": "", + "custom": "" + }, + "dataType": "string", + "valueProperty": "username", + "template": "{{ item.lastName }}, {{ item.firstName }}", + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "onlyAvailableItems": false + }, + "key": "selectCssaCaseworker", + "customConditional": "if (data.typeOfReview==='applicationViaTheSocietyOfContaminatedSitesApprovedProfessionalsOfBc')\n{\n show = false;\n}\nelse {\n show = true;\n}", + "type": "select", + "selectValues": "data", + "disableLimit": false, + "input": true, + "keyModified": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "idPath": "id", + "clearOnRefresh": false, + "limit": 100, + "lazyLoad": true, + "filter": "", + "searchEnabled": true, + "searchDebounce": 0.3, + "searchField": "", + "minSearch": 0, + "readOnlyValue": false, + "authenticate": false, + "ignoreCache": false, + "selectFields": "", + "selectThreshold": 0.3, + "uniqueOptions": false, + "fuseOptions": { + "include": "score", + "threshold": 0.3 + }, + "indexeddb": { + "filter": {} + }, + "customOptions": {}, + "useExactSearch": false, + "id": "e8pinfp" + } + ], + "width": 4, + "offset": 0, + "push": 0, + "pull": 0, + "size": "md", + "currentWidth": 4 + }, + { + "components": [], + "size": "md", + "width": 4, + "offset": 0, + "push": 0, + "pull": 0, + "currentWidth": 4 + } + ], + "key": "columns3", + "type": "columns", + "input": false, + "tableView": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "hidden": false, + "clearOnHide": false, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "tree": false, + "lazyLoad": false, + "autoAdjust": false, + "id": "ejnemx9" + } + ], + "keyModified": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "hidden": false, + "clearOnHide": false, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "tree": false, + "lazyLoad": false, + "theme": "default", + "breadcrumb": "default", + "id": "ecgbuxt" + }, + { + "label": "hiddenUserIdForFormSharingApplicantAsOwner", + "customClass": "", + "modalEdit": false, + "defaultValue": null, + "persistent": true, + "protected": false, + "dbIndex": false, + "encrypted": false, + "redrawOn": "", + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "key": "hiddenUserIdForFormSharingApplicantAsOwner", + "tags": [], + "properties": {}, + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "hidden", + "input": true, + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "unique": false, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "tableView": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "widget": { + "type": "input" + }, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "allowCalculateOverride": false, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "inputType": "hidden", + "id": "e51bxw" + }, + { + "label": "hiddenUserIdForFormSharingWithDiffOwner", + "customClass": "", + "modalEdit": false, + "defaultValue": null, + "persistent": true, + "protected": false, + "dbIndex": false, + "encrypted": false, + "redrawOn": "", + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "key": "hiddenUserIdForFormSharingWithDiffOwner", + "tags": [], + "properties": {}, + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "hidden", + "input": true, + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "unique": false, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "tableView": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "widget": { + "type": "input" + }, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "allowCalculateOverride": false, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "inputType": "hidden", + "id": "eia0fkf" + }, + { + "html": "

Part 1  - Contact Information

", + "label": "Content", + "customClass": "", + "refreshOnChange": false, + "hidden": false, + "modalEdit": false, + "key": "content3", + "tags": [], + "properties": {}, + "conditional": { + "show": null, + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "content", + "input": false, + "tableView": false, + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "id": "e7c7u3u" + }, + { + "key": "Section1-ContactInformation", + "type": "panel", + "input": false, + "label": "", + "title": "Section I - CONTACT INFORMATION", + "collapsed": false, + "tableView": false, + "components": [ + { + "key": "siteOwnerOrOperator", + "type": "panel", + "input": false, + "label": "Panel", + "title": "Site Owner or Operator", + "hideLabel": true, + "tableView": false, + "components": [ + { + "key": "Section1A-NameColumn", + "type": "columns", + "input": false, + "label": "Columns - 2", + "columns": [ + { + "pull": 0, + "push": 0, + "size": "md", + "width": 6, + "offset": 0, + "components": [ + { + "key": "Section1A-LastName", + "type": "textfield", + "input": true, + "label": "Last Name", + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "tableView": false, + "hideOnChildrenHidden": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "ekh7nj9" + } + ], + "currentWidth": 6 + }, + { + "pull": 0, + "push": 0, + "size": "md", + "width": 6, + "offset": 0, + "components": [ + { + "key": "Section1A-FirstName", + "type": "textfield", + "input": true, + "label": "First Name", + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "tableView": false, + "hideOnChildrenHidden": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "euc0sw" + } + ], + "currentWidth": 6 + } + ], + "tableView": false, + "hideOnChildrenHidden": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "hidden": false, + "clearOnHide": false, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "tree": false, + "lazyLoad": false, + "autoAdjust": false, + "id": "euaafu" + }, + { + "key": "Section1A-Company", + "type": "textfield", + "input": true, + "label": "Company, if applicable", + "tableView": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "effeqnf" + }, + { + "key": "Section1A-AddressColumn3", + "type": "columns", + "input": false, + "label": "Columns - 2", + "columns": [ + { + "pull": 0, + "push": 0, + "size": "md", + "width": 6, + "offset": 0, + "components": [ + { + "key": "Section1A-Address", + "type": "textfield", + "input": true, + "label": "Address", + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "tableView": false, + "hideOnChildrenHidden": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "e2utqz" + } + ], + "currentWidth": 6 + }, + { + "pull": 0, + "push": 0, + "size": "md", + "width": 6, + "offset": 0, + "components": [ + { + "key": "Section1A-City", + "type": "textfield", + "input": true, + "label": "City", + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "tableView": false, + "hideOnChildrenHidden": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "e5u2rue" + } + ], + "currentWidth": 6 + } + ], + "tableView": false, + "hideOnChildrenHidden": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "hidden": false, + "clearOnHide": false, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "tree": false, + "lazyLoad": false, + "autoAdjust": false, + "id": "emhj7ub" + }, + { + "key": "Section1A-AddressColumn", + "type": "columns", + "input": false, + "label": "Columns - 3", + "columns": [ + { + "pull": 0, + "push": 0, + "size": "md", + "width": 4, + "offset": 0, + "components": [ + { + "key": "Section1A-ProvinceState", + "type": "textfield", + "input": true, + "label": "Province", + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "tableView": false, + "hideOnChildrenHidden": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "ea49wil" + } + ], + "currentWidth": 4 + }, + { + "pull": 0, + "push": 0, + "size": "md", + "width": 4, + "offset": 0, + "components": [ + { + "key": "Section1A-Country", + "type": "textfield", + "input": true, + "label": "Country", + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "tableView": false, + "hideOnChildrenHidden": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "elb9xr8" + } + ], + "currentWidth": 4 + }, + { + "pull": 0, + "push": 0, + "size": "md", + "width": 4, + "offset": 0, + "components": [ + { + "key": "Section1A-PostalZipCode", + "type": "textfield", + "input": true, + "label": "Postal Code", + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "tableView": false, + "hideOnChildrenHidden": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "etaog87" + } + ], + "currentWidth": 4 + } + ], + "tableView": false, + "hideOnChildrenHidden": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "hidden": false, + "clearOnHide": false, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "tree": false, + "lazyLoad": false, + "autoAdjust": false, + "id": "ewwkail" + }, + { + "key": "Section1A-ContactInfoColumn", + "type": "columns", + "input": false, + "label": "Columns - 2", + "columns": [ + { + "pull": 0, + "push": 0, + "size": "md", + "width": 6, + "offset": 0, + "components": [ + { + "key": "phoneNumber2", + "type": "textfield", + "input": true, + "label": "Phone Number", + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "tableView": false, + "hideOnChildrenHidden": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "eunnqpj" + } + ], + "currentWidth": 6 + }, + { + "pull": 0, + "push": 0, + "size": "md", + "width": 6, + "offset": 0, + "components": [ + { + "label": "Email", + "tableView": true, + "validate": { + "required": true, + "custom": "\r\nvar currentValue = input;\r\nconsole.log('currentValue',currentValue);\r\nfetch('https://forms-flow-api-e38158-dev.apps.silver.devops.gov.bc.ca/user?memberOfGroup=formsflow%2Fformsflow-reviewer%2Fformsflow-client-reviewer',\r\n{'headers':{ 'authorization': 'Bearer '+localStorage.getItem('authToken')},'mode':'cors'})\r\n.then((p)=> {return p.json();}).\r\nthen((x)=>{\r\n data.hiddenUserIdForFormSharing = '' ;\r\n x.find((y)=>{ console.log('currentValue',currentValue); \r\n if( y.email=== currentValue ) \r\n { data.hiddenUserIdForFormSharing = y.id}\r\n\r\n })\r\n\r\n if(data.hiddenUserIdForFormSharing==='')\r\n {\r\n valid = 'Unable to find user with provided email address';\r\n }\r\n else\r\n {\r\n valid = true;\r\n }\r\n\r\n});", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "key": "ownerEmailAddress", + "type": "email", + "input": true, + "delimiter": false, + "requireDecimal": false, + "hideOnChildrenHidden": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "email", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "kickbox": { + "enabled": false + }, + "id": "ewvvqh" + } + ], + "currentWidth": 6 + } + ], + "tableView": false, + "hideOnChildrenHidden": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "hidden": false, + "clearOnHide": false, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "tree": false, + "lazyLoad": false, + "autoAdjust": false, + "id": "eeq9dzs" + }, + { + "label": "Is applicant same as above?", + "optionsLabelPosition": "right", + "inline": false, + "tableView": false, + "values": [ + { + "label": "Yes", + "value": "true", + "shortcut": "" + }, + { + "label": "No", + "value": "false", + "shortcut": "" + } + ], + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "onlyAvailableItems": false + }, + "key": "isApplicantSameAsAbove", + "type": "radio", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "inputType": "radio", + "fieldSet": false, + "id": "enx9oad" + } + ], + "collapsible": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "hidden": false, + "clearOnHide": false, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "tree": false, + "lazyLoad": false, + "theme": "default", + "breadcrumb": "default", + "id": "evm4w5b" + }, + { + "title": "Applicant", + "theme": "default", + "tooltip": "", + "customClass": "", + "collapsible": false, + "hidden": false, + "hideLabel": false, + "disabled": false, + "modalEdit": false, + "key": "applicant", + "tags": [], + "properties": {}, + "customConditional": "", + "conditional": { + "json": "", + "show": true, + "when": "isApplicantSameAsAbove", + "eq": "false" + }, + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "panel", + "label": "Panel", + "breadcrumb": "default", + "tabindex": "", + "input": false, + "tableView": false, + "components": [ + { + "key": "Section1C-NameColumn", + "type": "columns", + "input": false, + "label": "Columns - 2", + "columns": [ + { + "pull": 0, + "push": 0, + "size": "md", + "width": 6, + "offset": 0, + "components": [ + { + "key": "Section1C-LastName", + "type": "textfield", + "input": true, + "label": "Last Name", + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "tableView": false, + "hideOnChildrenHidden": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "e40la5k" + } + ], + "currentWidth": 6 + }, + { + "pull": 0, + "push": 0, + "size": "md", + "width": 6, + "offset": 0, + "components": [ + { + "key": "Section1C-FirstName", + "type": "textfield", + "input": true, + "label": "First Name", + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "tableView": false, + "hideOnChildrenHidden": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "e0oy6rg" + } + ], + "currentWidth": 6 + } + ], + "tableView": false, + "hideOnChildrenHidden": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "hidden": false, + "clearOnHide": false, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "tree": false, + "lazyLoad": false, + "autoAdjust": false, + "id": "e9ur3d" + }, + { + "key": "Section1C-Company", + "type": "textfield", + "input": true, + "label": "Company, if applicable", + "tableView": false, + "hideOnChildrenHidden": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "eikmhmk" + }, + { + "key": "Section1C-AddressColumn", + "type": "columns", + "input": false, + "label": "Columns - 2", + "columns": [ + { + "pull": 0, + "push": 0, + "size": "md", + "width": 6, + "offset": 0, + "components": [ + { + "key": "Section1C-Address", + "type": "textfield", + "input": true, + "label": "Address", + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "tableView": false, + "hideOnChildrenHidden": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "efojt6s" + } + ], + "currentWidth": 6 + }, + { + "pull": 0, + "push": 0, + "size": "md", + "width": 6, + "offset": 0, + "components": [ + { + "key": "Section1C-City", + "type": "textfield", + "input": true, + "label": "City", + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "tableView": false, + "hideOnChildrenHidden": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "e59u27" + } + ], + "currentWidth": 6 + } + ], + "tableView": false, + "hideOnChildrenHidden": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "hidden": false, + "clearOnHide": false, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "tree": false, + "lazyLoad": false, + "autoAdjust": false, + "id": "eigg0un" + }, + { + "key": "Section1A-AddressColumn2", + "type": "columns", + "input": false, + "label": "Columns - 3", + "columns": [ + { + "pull": 0, + "push": 0, + "size": "md", + "width": 4, + "offset": 0, + "components": [ + { + "key": "Section1A-ProvinceState2", + "type": "textfield", + "input": true, + "label": "Province", + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "tableView": false, + "hideOnChildrenHidden": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "efyqlzn" + } + ], + "currentWidth": 4 + }, + { + "pull": 0, + "push": 0, + "size": "md", + "width": 4, + "offset": 0, + "components": [ + { + "key": "Section1A-Country2", + "type": "textfield", + "input": true, + "label": "Country", + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "tableView": false, + "hideOnChildrenHidden": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "edhcyho" + } + ], + "currentWidth": 4 + }, + { + "pull": 0, + "push": 0, + "size": "md", + "width": 4, + "offset": 0, + "components": [ + { + "key": "Section1A-PostalZipCode2", + "type": "textfield", + "input": true, + "label": "Postal Code", + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "tableView": false, + "hideOnChildrenHidden": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "e3mm0qo" + } + ], + "currentWidth": 4 + } + ], + "tableView": false, + "hideOnChildrenHidden": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "hidden": false, + "clearOnHide": false, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "tree": false, + "lazyLoad": false, + "autoAdjust": false, + "id": "elurmt" + }, + { + "key": "Section1C-ContactInfoColumn", + "type": "columns", + "input": false, + "label": "Columns - 2", + "columns": [ + { + "pull": 0, + "push": 0, + "size": "md", + "width": 6, + "offset": 0, + "components": [ + { + "key": "phoneNumber", + "type": "textfield", + "input": true, + "label": "Phone Number", + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "tableView": false, + "hideOnChildrenHidden": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "eidhmy6" + } + ], + "currentWidth": 6 + }, + { + "pull": 0, + "push": 0, + "size": "md", + "width": 6, + "offset": 0, + "components": [ + { + "label": "Email", + "tableView": true, + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "key": "contactPersonEmailAddress", + "type": "email", + "input": true, + "delimiter": false, + "requireDecimal": false, + "hideOnChildrenHidden": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "email", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "kickbox": { + "enabled": false + }, + "id": "ee0ed8f" + } + ], + "currentWidth": 6 + } + ], + "tableView": false, + "hideOnChildrenHidden": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "hidden": false, + "clearOnHide": false, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "tree": false, + "lazyLoad": false, + "autoAdjust": false, + "id": "ebgnl1p" + }, + { + "label": "Is the agent same as the applicant?", + "optionsLabelPosition": "right", + "inline": false, + "tableView": false, + "values": [ + { + "label": "Yes", + "value": "true", + "shortcut": "" + }, + { + "label": "No", + "value": "false", + "shortcut": "" + } + ], + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "onlyAvailableItems": false + }, + "key": "isApplicantSameAsAbove1", + "conditional": { + "show": true, + "when": "isApplicantSameAsAbove", + "eq": "false" + }, + "type": "radio", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "inputType": "radio", + "fieldSet": false, + "id": "et6b04k" + } + ], + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "clearOnHide": false, + "refreshOn": "", + "redrawOn": "", + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "tree": false, + "lazyLoad": false, + "id": "er3axs" + }, + { + "title": "Agent", + "theme": "default", + "tooltip": "", + "customClass": "", + "collapsible": false, + "hidden": false, + "hideLabel": false, + "disabled": false, + "modalEdit": false, + "key": "panel", + "tags": [], + "properties": {}, + "customConditional": "", + "conditional": { + "json": "", + "show": true, + "when": "isApplicantSameAsAbove1", + "eq": "false" + }, + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "panel", + "label": "Panel", + "breadcrumb": "default", + "tabindex": "", + "input": false, + "tableView": false, + "components": [ + { + "key": "Section1B-NameColumn", + "type": "columns", + "input": false, + "label": "Section1B-NameColumn", + "columns": [ + { + "pull": 0, + "push": 0, + "size": "md", + "width": 6, + "offset": 0, + "components": [ + { + "label": "Last Name", + "labelPosition": "top", + "placeholder": "", + "description": "", + "tooltip": "", + "prefix": "", + "suffix": "", + "widget": { + "type": "input" + }, + "inputMask": "", + "displayMask": "", + "allowMultipleMasks": false, + "customClass": "", + "tabindex": "", + "autocomplete": "", + "hidden": false, + "hideLabel": false, + "showWordCount": false, + "showCharCount": false, + "mask": false, + "autofocus": false, + "spellcheck": true, + "disabled": false, + "tableView": false, + "modalEdit": false, + "multiple": false, + "persistent": true, + "inputFormat": "plain", + "protected": false, + "dbIndex": false, + "case": "", + "truncateMultipleSpaces": false, + "encrypted": false, + "redrawOn": "", + "clearOnHide": true, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "allowCalculateOverride": false, + "validateOn": "change", + "validate": { + "required": true, + "pattern": "", + "customMessage": "", + "custom": "", + "customPrivate": false, + "json": "", + "minLength": "", + "maxLength": "", + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "unique": false, + "errorLabel": "", + "errors": "", + "key": "Section1B-LastName", + "tags": [], + "properties": {}, + "conditional": { + "show": null, + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "textfield", + "input": true, + "hideOnChildrenHidden": false, + "refreshOn": "", + "dataGridLabel": false, + "addons": [], + "inputType": "text", + "id": "ehh4qkk", + "defaultValue": "" + } + ], + "currentWidth": 6 + }, + { + "pull": 0, + "push": 0, + "size": "md", + "width": 6, + "offset": 0, + "components": [ + { + "label": "First Name", + "labelPosition": "top", + "placeholder": "", + "description": "", + "tooltip": "", + "prefix": "", + "suffix": "", + "widget": { + "type": "input" + }, + "inputMask": "", + "displayMask": "", + "allowMultipleMasks": false, + "customClass": "", + "tabindex": "", + "autocomplete": "", + "hidden": false, + "hideLabel": false, + "showWordCount": false, + "showCharCount": false, + "mask": false, + "autofocus": false, + "spellcheck": true, + "disabled": false, + "tableView": false, + "modalEdit": false, + "multiple": false, + "persistent": true, + "inputFormat": "plain", + "protected": false, + "dbIndex": false, + "case": "", + "truncateMultipleSpaces": false, + "encrypted": false, + "redrawOn": "", + "clearOnHide": true, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "allowCalculateOverride": false, + "validateOn": "change", + "validate": { + "required": true, + "pattern": "", + "customMessage": "", + "custom": "", + "customPrivate": false, + "json": "", + "minLength": "", + "maxLength": "", + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "unique": false, + "errorLabel": "", + "errors": "", + "key": "Section1B-FirstName", + "tags": [], + "properties": {}, + "conditional": { + "show": null, + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "textfield", + "input": true, + "hideOnChildrenHidden": false, + "refreshOn": "", + "dataGridLabel": false, + "addons": [], + "inputType": "text", + "id": "e2couam", + "defaultValue": "" + } + ], + "currentWidth": 6 + } + ], + "tableView": false, + "hideOnChildrenHidden": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "hidden": false, + "clearOnHide": false, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "tree": false, + "lazyLoad": false, + "autoAdjust": false, + "id": "eyy4ce" + }, + { + "key": "Section1C-Company1", + "type": "textfield", + "input": true, + "label": "Company, if applicable", + "tableView": false, + "hideOnChildrenHidden": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "ex0z6ex" + }, + { + "key": "Section1C-AddressColumn1", + "type": "columns", + "input": false, + "label": "Columns - 2", + "columns": [ + { + "pull": 0, + "push": 0, + "size": "md", + "width": 6, + "offset": 0, + "components": [ + { + "key": "Section1C-Address1", + "type": "textfield", + "input": true, + "label": "Address", + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "tableView": false, + "hideOnChildrenHidden": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "eks23e" + } + ], + "currentWidth": 6 + }, + { + "pull": 0, + "push": 0, + "size": "md", + "width": 6, + "offset": 0, + "components": [ + { + "key": "Section1C-City1", + "type": "textfield", + "input": true, + "label": "City", + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "tableView": false, + "hideOnChildrenHidden": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "e026ykm" + } + ], + "currentWidth": 6 + } + ], + "tableView": false, + "hideOnChildrenHidden": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "hidden": false, + "clearOnHide": false, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "tree": false, + "lazyLoad": false, + "autoAdjust": false, + "id": "eb0na63" + }, + { + "key": "Section1A-AddressColumn4", + "type": "columns", + "input": false, + "label": "Columns - 3", + "columns": [ + { + "pull": 0, + "push": 0, + "size": "md", + "width": 4, + "offset": 0, + "components": [ + { + "key": "Section1A-ProvinceState3", + "type": "textfield", + "input": true, + "label": "Province", + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "tableView": false, + "hideOnChildrenHidden": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "er0guec" + } + ], + "currentWidth": 4 + }, + { + "pull": 0, + "push": 0, + "size": "md", + "width": 4, + "offset": 0, + "components": [ + { + "key": "Section1A-Country3", + "type": "textfield", + "input": true, + "label": "Country", + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "tableView": false, + "hideOnChildrenHidden": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "ex5fali" + } + ], + "currentWidth": 4 + }, + { + "pull": 0, + "push": 0, + "size": "md", + "width": 4, + "offset": 0, + "components": [ + { + "key": "Section1A-PostalZipCode3", + "type": "textfield", + "input": true, + "label": "Postal Code", + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "tableView": false, + "hideOnChildrenHidden": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "e5v9qcs" + } + ], + "currentWidth": 4 + } + ], + "tableView": false, + "hideOnChildrenHidden": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "hidden": false, + "clearOnHide": false, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "tree": false, + "lazyLoad": false, + "autoAdjust": false, + "id": "ek9ixdb" + }, + { + "key": "Section1C-ContactInfoColumn1", + "type": "columns", + "input": false, + "label": "Columns - 2", + "columns": [ + { + "pull": 0, + "push": 0, + "size": "md", + "width": 6, + "offset": 0, + "components": [ + { + "key": "phoneNumber1", + "type": "textfield", + "input": true, + "label": "Phone Number", + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "tableView": false, + "hideOnChildrenHidden": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "etn06w9" + } + ], + "currentWidth": 6 + }, + { + "pull": 0, + "push": 0, + "size": "md", + "width": 6, + "offset": 0, + "components": [ + { + "label": "Email", + "tableView": true, + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "key": "contactPersonEmailAddress1", + "type": "email", + "input": true, + "delimiter": false, + "requireDecimal": false, + "hideOnChildrenHidden": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "email", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "kickbox": { + "enabled": false + }, + "id": "elk9b5f" + } + ], + "currentWidth": 6 + } + ], + "tableView": false, + "hideOnChildrenHidden": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "hidden": false, + "clearOnHide": false, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "tree": false, + "lazyLoad": false, + "autoAdjust": false, + "id": "esdtr6j" + } + ], + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "clearOnHide": false, + "refreshOn": "", + "redrawOn": "", + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "tree": false, + "lazyLoad": false, + "id": "eccpvcc" + }, + { + "title": "Approved Professional", + "theme": "default", + "tooltip": "", + "customClass": "", + "collapsible": false, + "hidden": false, + "hideLabel": false, + "disabled": false, + "modalEdit": false, + "key": "panel1", + "tags": [], + "properties": {}, + "customConditional": "", + "conditional": { + "json": "", + "show": null, + "when": null, + "eq": "" + }, + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "panel", + "label": "Panel", + "breadcrumb": "default", + "tabindex": "", + "input": false, + "tableView": false, + "components": [ + { + "key": "Section1B-NameColumn1", + "type": "columns", + "input": false, + "label": "Section1B-NameColumn", + "columns": [ + { + "pull": 0, + "push": 0, + "size": "md", + "width": 6, + "offset": 0, + "components": [ + { + "label": "Last Name", + "labelPosition": "top", + "placeholder": "", + "description": "", + "tooltip": "", + "prefix": "", + "suffix": "", + "widget": { + "type": "input" + }, + "inputMask": "", + "displayMask": "", + "allowMultipleMasks": false, + "customClass": "", + "tabindex": "", + "autocomplete": "", + "hidden": false, + "hideLabel": false, + "showWordCount": false, + "showCharCount": false, + "mask": false, + "autofocus": false, + "spellcheck": true, + "disabled": false, + "tableView": false, + "modalEdit": false, + "multiple": false, + "persistent": true, + "inputFormat": "plain", + "protected": false, + "dbIndex": false, + "case": "", + "truncateMultipleSpaces": false, + "encrypted": false, + "redrawOn": "", + "clearOnHide": true, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "allowCalculateOverride": false, + "validateOn": "change", + "validate": { + "required": true, + "pattern": "", + "customMessage": "", + "custom": "", + "customPrivate": false, + "json": "", + "minLength": "", + "maxLength": "", + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "unique": false, + "errorLabel": "", + "errors": "", + "key": "Section1B-LastName1", + "tags": [], + "properties": {}, + "conditional": { + "show": null, + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "textfield", + "input": true, + "hideOnChildrenHidden": false, + "refreshOn": "", + "dataGridLabel": false, + "addons": [], + "inputType": "text", + "id": "euvjh55", + "defaultValue": "" + } + ], + "currentWidth": 6 + }, + { + "pull": 0, + "push": 0, + "size": "md", + "width": 6, + "offset": 0, + "components": [ + { + "label": "First Name", + "labelPosition": "top", + "placeholder": "", + "description": "", + "tooltip": "", + "prefix": "", + "suffix": "", + "widget": { + "type": "input" + }, + "inputMask": "", + "displayMask": "", + "allowMultipleMasks": false, + "customClass": "", + "tabindex": "", + "autocomplete": "", + "hidden": false, + "hideLabel": false, + "showWordCount": false, + "showCharCount": false, + "mask": false, + "autofocus": false, + "spellcheck": true, + "disabled": false, + "tableView": false, + "modalEdit": false, + "multiple": false, + "persistent": true, + "inputFormat": "plain", + "protected": false, + "dbIndex": false, + "case": "", + "truncateMultipleSpaces": false, + "encrypted": false, + "redrawOn": "", + "clearOnHide": true, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "allowCalculateOverride": false, + "validateOn": "change", + "validate": { + "required": true, + "pattern": "", + "customMessage": "", + "custom": "", + "customPrivate": false, + "json": "", + "minLength": "", + "maxLength": "", + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "unique": false, + "errorLabel": "", + "errors": "", + "key": "Section1B-FirstName1", + "tags": [], + "properties": {}, + "conditional": { + "show": null, + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "textfield", + "input": true, + "hideOnChildrenHidden": false, + "refreshOn": "", + "dataGridLabel": false, + "addons": [], + "inputType": "text", + "id": "ei7qvpq", + "defaultValue": "" + } + ], + "currentWidth": 6 + } + ], + "tableView": false, + "hideOnChildrenHidden": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "hidden": false, + "clearOnHide": false, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "tree": false, + "lazyLoad": false, + "autoAdjust": false, + "id": "ebe00dr" + }, + { + "key": "Section1C-Company2", + "type": "textfield", + "input": true, + "label": "Company, if applicable", + "tableView": false, + "hideOnChildrenHidden": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "ehx2r3c" + }, + { + "key": "Section1C-AddressColumn2", + "type": "columns", + "input": false, + "label": "Columns - 2", + "columns": [ + { + "pull": 0, + "push": 0, + "size": "md", + "width": 6, + "offset": 0, + "components": [ + { + "key": "Section1C-Address2", + "type": "textfield", + "input": true, + "label": "Address", + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "tableView": false, + "hideOnChildrenHidden": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "eviqouu" + } + ], + "currentWidth": 6 + }, + { + "pull": 0, + "push": 0, + "size": "md", + "width": 6, + "offset": 0, + "components": [ + { + "key": "Section1C-City2", + "type": "textfield", + "input": true, + "label": "City", + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "tableView": false, + "hideOnChildrenHidden": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "ej96lic" + } + ], + "currentWidth": 6 + } + ], + "tableView": false, + "hideOnChildrenHidden": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "hidden": false, + "clearOnHide": false, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "tree": false, + "lazyLoad": false, + "autoAdjust": false, + "id": "eo3ukfa" + }, + { + "key": "Section1A-AddressColumn5", + "type": "columns", + "input": false, + "label": "Columns - 3", + "columns": [ + { + "pull": 0, + "push": 0, + "size": "md", + "width": 4, + "offset": 0, + "components": [ + { + "key": "Section1A-ProvinceState4", + "type": "textfield", + "input": true, + "label": "Province", + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "tableView": false, + "hideOnChildrenHidden": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "euw0tfs" + } + ], + "currentWidth": 4 + }, + { + "pull": 0, + "push": 0, + "size": "md", + "width": 4, + "offset": 0, + "components": [ + { + "key": "Section1A-Country4", + "type": "textfield", + "input": true, + "label": "Country", + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "tableView": false, + "hideOnChildrenHidden": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "eq6im" + } + ], + "currentWidth": 4 + }, + { + "pull": 0, + "push": 0, + "size": "md", + "width": 4, + "offset": 0, + "components": [ + { + "key": "Section1A-PostalZipCode4", + "type": "textfield", + "input": true, + "label": "Postal Code", + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "tableView": false, + "hideOnChildrenHidden": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "ezn76c" + } + ], + "currentWidth": 4 + } + ], + "tableView": false, + "hideOnChildrenHidden": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "hidden": false, + "clearOnHide": false, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "tree": false, + "lazyLoad": false, + "autoAdjust": false, + "id": "ed95jch" + }, + { + "key": "Section1C-ContactInfoColumn2", + "type": "columns", + "input": false, + "label": "Columns - 2", + "columns": [ + { + "pull": 0, + "push": 0, + "size": "md", + "width": 6, + "offset": 0, + "components": [ + { + "key": "phoneNumber3", + "type": "textfield", + "input": true, + "label": "Phone Number", + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "tableView": false, + "hideOnChildrenHidden": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "epk5n6b" + } + ], + "currentWidth": 6 + }, + { + "pull": 0, + "push": 0, + "size": "md", + "width": 6, + "offset": 0, + "components": [ + { + "label": "Email", + "tableView": true, + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "key": "contactPersonEmailAddress2", + "type": "email", + "input": true, + "delimiter": false, + "requireDecimal": false, + "hideOnChildrenHidden": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "email", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "kickbox": { + "enabled": false + }, + "id": "e2vlpc" + } + ], + "currentWidth": 6 + } + ], + "tableView": false, + "hideOnChildrenHidden": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "hidden": false, + "clearOnHide": false, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "tree": false, + "lazyLoad": false, + "autoAdjust": false, + "id": "e4f2vgv" + }, + { + "label": "Professional Designation", + "labelPosition": "top", + "placeholder": "", + "description": "", + "tooltip": "", + "prefix": "", + "suffix": "", + "widget": { + "type": "input" + }, + "inputMask": "", + "displayMask": "", + "allowMultipleMasks": false, + "customClass": "", + "tabindex": "", + "autocomplete": "", + "hidden": false, + "hideLabel": false, + "showWordCount": false, + "showCharCount": false, + "mask": false, + "autofocus": false, + "spellcheck": true, + "disabled": false, + "tableView": true, + "modalEdit": false, + "multiple": false, + "persistent": true, + "inputFormat": "plain", + "protected": false, + "dbIndex": false, + "case": "", + "truncateMultipleSpaces": false, + "encrypted": false, + "redrawOn": "", + "clearOnHide": true, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "allowCalculateOverride": false, + "validateOn": "change", + "validate": { + "required": false, + "pattern": "", + "customMessage": "", + "custom": "", + "customPrivate": false, + "json": "", + "minLength": "", + "maxLength": "", + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "unique": false, + "errorLabel": "", + "errors": "", + "key": "professionalDesignation", + "tags": [], + "properties": {}, + "conditional": { + "show": null, + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "textfield", + "input": true, + "refreshOn": "", + "dataGridLabel": false, + "addons": [], + "inputType": "text", + "id": "e4erht", + "defaultValue": "" + }, + { + "label": "Scope of review completed by Approved Professional (eg. arm's length risk-based standards review)", + "labelPosition": "top", + "placeholder": "", + "description": "", + "tooltip": "", + "prefix": "", + "suffix": "", + "widget": { + "type": "input" + }, + "displayMask": "", + "editor": "", + "autoExpand": false, + "customClass": "", + "tabindex": "", + "autocomplete": "", + "hidden": false, + "hideLabel": false, + "showWordCount": false, + "showCharCount": false, + "autofocus": false, + "spellcheck": true, + "disabled": false, + "tableView": true, + "modalEdit": false, + "multiple": false, + "persistent": true, + "inputFormat": "html", + "protected": false, + "dbIndex": false, + "case": "", + "truncateMultipleSpaces": false, + "encrypted": false, + "redrawOn": "", + "clearOnHide": true, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "allowCalculateOverride": false, + "validateOn": "change", + "validate": { + "required": false, + "pattern": "", + "customMessage": "", + "custom": "", + "customPrivate": false, + "json": "", + "minLength": "", + "maxLength": "", + "minWords": "", + "maxWords": "", + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "unique": false, + "errorLabel": "", + "errors": "", + "key": "scopeOfReviewCompletedByApprovedProfessionalEgArmsLengthRiskBasedStandardsReview", + "tags": [], + "properties": {}, + "conditional": { + "show": null, + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "textarea", + "rows": 3, + "wysiwyg": false, + "input": true, + "refreshOn": "", + "dataGridLabel": false, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputMask": "", + "fixedSize": true, + "id": "e3504l8", + "defaultValue": "" + } + ], + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "clearOnHide": false, + "refreshOn": "", + "redrawOn": "", + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "tree": false, + "lazyLoad": false, + "id": "euyo4sn" + } + ], + "collapsible": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "hidden": false, + "clearOnHide": false, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "tree": false, + "lazyLoad": false, + "theme": "default", + "breadcrumb": "default", + "id": "e52kzii", + "keyModified": true + }, + { + "html": "

Part 2 - Executive Summary

", + "label": "Content", + "customClass": "", + "refreshOnChange": false, + "hidden": false, + "modalEdit": false, + "key": "content4", + "tags": [], + "properties": {}, + "conditional": { + "show": null, + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "content", + "input": false, + "tableView": false, + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "id": "eip4sw7" + }, + { + "title": "Section II - EXECUTIVE SUMMARY", + "theme": "default", + "tooltip": "", + "customClass": "", + "collapsible": true, + "hidden": false, + "hideLabel": false, + "disabled": false, + "modalEdit": false, + "key": "Section1-ContactInformation1", + "tags": [], + "properties": {}, + "customConditional": "", + "conditional": { + "json": "", + "show": null, + "when": null, + "eq": "" + }, + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "panel", + "label": "", + "breadcrumb": "default", + "tabindex": "", + "collapsed": false, + "input": false, + "tableView": false, + "keyModified": true, + "components": [ + { + "html": "

To be completed by the approved professionals reviewing the site investigation, risk assessment, remediation or confirmation of remediation reports.

", + "label": "Content", + "customClass": "", + "refreshOnChange": false, + "hidden": false, + "modalEdit": false, + "key": "content2", + "tags": [], + "properties": {}, + "conditional": { + "show": null, + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "content", + "input": false, + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "tableView": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "id": "epyqnv" + }, + { + "label": "Subject Site Locations", + "reorder": false, + "addAnotherPosition": "bottom", + "layoutFixed": false, + "enableRowGroups": false, + "initEmpty": false, + "tableView": false, + "defaultValue": [ + { + "siteId": "", + "siteCommonName": "", + "section2LatitudeDegrees": "", + "section2LatitudeMinutes": "", + "section2LatitudeSeconds": "", + "section2LongitudeDegrees": "", + "section2LongitudeMinutes": "", + "section2LongitudeSeconds": "" + } + ], + "key": "dataGrid", + "type": "datagrid", + "input": true, + "components": [ + { + "title": "Subject Site Location", + "collapsible": false, + "key": "panel2", + "type": "panel", + "label": "Site", + "input": false, + "tableView": false, + "components": [ + { + "label": "Site ID", + "tableView": true, + "key": "siteId", + "type": "textfield", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "etpvslk" + }, + { + "label": "Site Common Name", + "autoExpand": false, + "tableView": true, + "key": "siteCommonName", + "type": "textarea", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "", + "minWords": "", + "maxWords": "" + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "html", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "rows": 3, + "wysiwyg": false, + "editor": "", + "fixedSize": true, + "id": "edrol6" + }, + { + "key": "heading4", + "tag": "h4", + "type": "htmlelement", + "input": false, + "label": "Heading", + "content": "Latitude", + "tableView": false, + "headingSize": "h1", + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "attrs": [], + "id": "e8b5q86" + }, + { + "key": "Section2-LatitudeColumn", + "type": "columns", + "input": false, + "label": "Columns - 3", + "columns": [ + { + "pull": 0, + "push": 0, + "size": "md", + "width": 4, + "offset": 0, + "components": [ + { + "key": "section2LatitudeDegrees", + "type": "textfield", + "input": true, + "label": "Degrees", + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "tableView": false, + "hideOnChildrenHidden": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "ef4s1gv" + } + ], + "currentWidth": 4 + }, + { + "pull": 0, + "push": 0, + "size": "md", + "width": 4, + "offset": 0, + "components": [ + { + "key": "section2LatitudeMinutes", + "type": "textfield", + "input": true, + "label": "Minutes", + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "tableView": false, + "hideOnChildrenHidden": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "evm2u7" + } + ], + "currentWidth": 4 + }, + { + "pull": 0, + "push": 0, + "size": "md", + "width": 4, + "offset": 0, + "components": [ + { + "key": "section2LatitudeSeconds", + "type": "textfield", + "input": true, + "label": "Seconds", + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "tableView": false, + "hideOnChildrenHidden": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "ezwdsq8" + } + ], + "currentWidth": 4 + } + ], + "tableView": false, + "hideOnChildrenHidden": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "hidden": false, + "clearOnHide": false, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "tree": false, + "lazyLoad": false, + "autoAdjust": false, + "id": "elda0gq" + }, + { + "key": "heading5", + "tag": "h4", + "type": "htmlelement", + "input": false, + "label": "Heading", + "content": "Longitude", + "tableView": false, + "headingSize": "h1", + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "attrs": [], + "id": "en3p8e9" + }, + { + "key": "Section2-LongitudeColumn", + "type": "columns", + "input": false, + "label": "Columns - 3", + "columns": [ + { + "pull": 0, + "push": 0, + "size": "md", + "width": 4, + "offset": 0, + "components": [ + { + "key": "section2LongitudeDegrees", + "type": "textfield", + "input": true, + "label": "Degrees", + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "tableView": false, + "hideOnChildrenHidden": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "e8hqhvc" + } + ], + "currentWidth": 4 + }, + { + "pull": 0, + "push": 0, + "size": "md", + "width": 4, + "offset": 0, + "components": [ + { + "key": "section2LongitudeMinutes", + "type": "textfield", + "input": true, + "label": "Minutes", + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "tableView": false, + "hideOnChildrenHidden": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "er4jc8h" + } + ], + "currentWidth": 4 + }, + { + "pull": 0, + "push": 0, + "size": "md", + "width": 4, + "offset": 0, + "components": [ + { + "key": "section2LongitudeSeconds", + "type": "textfield", + "input": true, + "label": "Seconds", + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "tableView": false, + "hideOnChildrenHidden": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "ekx2hxj" + } + ], + "currentWidth": 4 + } + ], + "tableView": false, + "hideOnChildrenHidden": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "hidden": false, + "clearOnHide": false, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "tree": false, + "lazyLoad": false, + "autoAdjust": false, + "id": "eco0438" + } + ], + "id": "edowey00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "hidden": false, + "clearOnHide": false, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "tree": false, + "lazyLoad": false, + "theme": "default", + "breadcrumb": "default" + } + ], + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "tree": true, + "lazyLoad": false, + "disableAddingRemovingRows": false, + "id": "evusv2q" + }, + { + "key": "heading3", + "tag": "h3", + "type": "htmlelement", + "input": false, + "label": "Heading", + "content": "Coordinates for the centre of the site:", + "tableView": false, + "headingSize": "h1", + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "attrs": [], + "id": "ee72tiv" + }, + { + "key": "content", + "html": "

Attention:

A separate map with appropriate scale showing the location and boundaries of the site must be included with an SDS submission.

", + "type": "content", + "input": false, + "label": "Static Text", + "tableView": false, + "hideOnChildrenHidden": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "id": "e5fmbyj" + }, + { + "key": "iUnderstandAndWillAttachAMapWithMySubmission", + "type": "checkbox", + "input": true, + "label": "I will include a map with my submission", + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "tableView": false, + "defaultValue": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": true, + "labelPosition": "right", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "inputType": "checkbox", + "value": "", + "name": "", + "id": "ekbr5fb" + }, + { + "label": "Land ownership (Source Site) Please select all that apply:", + "labelPosition": "top", + "optionsLabelPosition": "right", + "description": "", + "tooltip": "", + "customClass": "", + "tabindex": "", + "inline": false, + "hidden": false, + "hideLabel": false, + "autofocus": false, + "disabled": false, + "tableView": false, + "modalEdit": false, + "values": [ + { + "label": "Legally Titled, Registered Property", + "value": "legallyTitled", + "shortcut": "" + }, + { + "label": "Untitled Crown Land", + "value": "untitledCrown", + "shortcut": "" + }, + { + "label": "Untitled Municipal Land", + "value": "untitledMunicipal", + "shortcut": "" + } + ], + "persistent": true, + "protected": false, + "dbIndex": false, + "encrypted": false, + "redrawOn": "", + "clearOnHide": true, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "allowCalculateOverride": false, + "validate": { + "required": true, + "onlyAvailableItems": false, + "customMessage": "", + "custom": "", + "customPrivate": false, + "json": "", + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "errorLabel": "", + "minSelectedCountMessage": "", + "maxSelectedCountMessage": "", + "errors": "", + "key": "landOwnershipSourceSitePleaseSelectAllThatApply", + "tags": [], + "properties": {}, + "conditional": { + "show": null, + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "selectboxes", + "input": true, + "inputType": "checkbox", + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "unique": false, + "refreshOn": "", + "dataGridLabel": false, + "widget": null, + "validateOn": "change", + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "fieldSet": false, + "id": "e66yx6u", + "defaultValue": { + "legallyTitled": false, + "untitledCrown": false, + "untitledMunicipal": false + } + }, + { + "title": "For Legally Titled, Registered Property (Source Site)", + "theme": "default", + "tooltip": "", + "customClass": "", + "collapsible": false, + "hidden": false, + "hideLabel": false, + "disabled": false, + "modalEdit": false, + "key": "forLegallyTitledRegisteredProperty-panel", + "tags": [], + "properties": {}, + "customConditional": "", + "conditional": { + "json": "", + "show": true, + "when": "landOwnershipSourceSitePleaseSelectAllThatApply", + "eq": "legallyTitled" + }, + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "panel", + "label": "", + "breadcrumb": "default", + "tabindex": "", + "input": false, + "collapsed": false, + "tableView": false, + "components": [ + { + "key": "Section2-LegallyTitled-Address", + "type": "textfield", + "input": true, + "label": "Site Address", + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "tableView": false, + "placeholder": "or nearest street name/intersection if no address is assigned", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "emyfj89" + }, + { + "key": "Section2-LegallyTitled-AddressColumn", + "type": "columns", + "input": false, + "label": "Columns - 2", + "columns": [ + { + "pull": 0, + "push": 0, + "size": "md", + "width": 6, + "offset": 0, + "components": [ + { + "key": "Section2-LegallyTitled-City", + "type": "textfield", + "input": true, + "label": "City", + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "tableView": false, + "hideOnChildrenHidden": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "ev16eg9" + } + ], + "currentWidth": 6 + }, + { + "pull": 0, + "push": 0, + "size": "md", + "width": 6, + "offset": 0, + "components": [ + { + "key": "Section2-LegallyTitled-PostalZipCode", + "type": "textfield", + "input": true, + "label": "Postal Code", + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "tableView": false, + "hideOnChildrenHidden": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "eftbs3h" + } + ], + "currentWidth": 6 + } + ], + "tableView": false, + "hideOnChildrenHidden": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "hidden": false, + "clearOnHide": false, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "tree": false, + "lazyLoad": false, + "autoAdjust": false, + "id": "eavg5jx" + }, + { + "label": "Enter PIDs and Land Descriptions below", + "tooltip": "Select the 'X' button to delete an entry.", + "reorder": false, + "addAnotherPosition": "bottom", + "layoutFixed": false, + "enableRowGroups": false, + "initEmpty": false, + "hideLabel": true, + "tableView": false, + "defaultValue": [ + { + "Section2-LegallyTitled-PID": "", + "SiteAddress-LegallyTitled-PID": "", + "Section2-LegallyTitled-LandDescription": "", + "SiteAddress-LegallyTitled-LandDescription": "" + } + ], + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "key": "Section2-LegallyTitled-PIDColumn", + "type": "datagrid", + "input": true, + "components": [ + { + "title": "Entries", + "collapsible": false, + "hideLabel": true, + "key": "panel1", + "type": "panel", + "label": "Panel", + "input": false, + "tableView": false, + "components": [ + { + "key": "cols3", + "type": "columns", + "input": false, + "label": "Columns - 2", + "columns": [ + { + "pull": 0, + "push": 0, + "size": "md", + "width": 6, + "offset": 0, + "components": [ + { + "key": "Section2-LegallyTitled-PID", + "type": "textfield", + "input": true, + "label": "PID", + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "inputMask": "999-999-999", + "tableView": true, + "hideOnChildrenHidden": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "eaoeej" + } + ], + "currentWidth": 6 + }, + { + "pull": 0, + "push": 0, + "size": "md", + "width": 6, + "offset": 0, + "components": [], + "currentWidth": 6 + } + ], + "tableView": false, + "hideOnChildrenHidden": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "hidden": false, + "clearOnHide": false, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "tree": false, + "lazyLoad": false, + "autoAdjust": false, + "id": "e35et7b" + }, + { + "key": "Section2-LegallyTitled-LandDescription", + "type": "textarea", + "input": true, + "label": "Land Description", + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "", + "minWords": "", + "maxWords": "" + }, + "tableView": true, + "autoExpand": false, + "inputFormat": "plain", + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "rows": 3, + "wysiwyg": false, + "editor": "", + "fixedSize": true, + "id": "eqnyhh" + } + ], + "id": "eskogm000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "hidden": false, + "clearOnHide": false, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "tree": false, + "lazyLoad": false, + "theme": "default", + "breadcrumb": "default" + } + ], + "hideOnChildrenHidden": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "tree": true, + "lazyLoad": false, + "disableAddingRemovingRows": false, + "id": "eyxh9qa" + } + ], + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "clearOnHide": false, + "refreshOn": "", + "redrawOn": "", + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "tree": false, + "lazyLoad": false, + "id": "esaica" + }, + { + "title": "For Untitled Crown Land (Source Site)", + "theme": "default", + "tooltip": "", + "customClass": "", + "collapsible": false, + "hidden": false, + "hideLabel": false, + "disabled": false, + "modalEdit": false, + "key": "Section2-forUntitledCrownLand", + "tags": [], + "properties": {}, + "customConditional": "", + "conditional": { + "json": "", + "show": true, + "when": "landOwnershipSourceSitePleaseSelectAllThatApply", + "eq": "untitledCrown" + }, + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "panel", + "label": "", + "breadcrumb": "default", + "tabindex": "", + "input": false, + "collapsed": false, + "tableView": false, + "components": [ + { + "key": "Section2-UntitledCrown-PINColumn", + "type": "datagrid", + "input": true, + "label": "", + "reorder": false, + "hideLabel": true, + "initEmpty": false, + "tableView": false, + "components": [ + { + "title": "Untitled Crown Land", + "theme": "default", + "tooltip": "", + "customClass": "", + "collapsible": false, + "hidden": false, + "hideLabel": true, + "dataGridLabel": false, + "disabled": false, + "modalEdit": false, + "key": "panel1", + "tags": [], + "properties": {}, + "customConditional": "", + "conditional": { + "json": "", + "show": null, + "when": null, + "eq": "" + }, + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "panel", + "label": "Crown Land", + "breadcrumb": "default", + "tabindex": "", + "input": false, + "tableView": false, + "components": [ + { + "key": "cols3", + "type": "columns", + "input": false, + "label": "Columns - 2", + "columns": [ + { + "pull": 0, + "push": 0, + "size": "md", + "width": 6, + "offset": 0, + "components": [ + { + "key": "Section2-LegallyTitled-PID", + "type": "textfield", + "input": true, + "label": "PIN", + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "tableView": true, + "hideOnChildrenHidden": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "e0zxpd" + } + ], + "currentWidth": 6 + }, + { + "pull": 0, + "push": 0, + "size": "md", + "width": 6, + "offset": 0, + "components": [], + "currentWidth": 6 + } + ], + "tableView": false, + "hideOnChildrenHidden": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "hidden": false, + "clearOnHide": false, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "tree": false, + "lazyLoad": false, + "autoAdjust": false, + "id": "eohw9y" + }, + { + "key": "Section2-LegallyTitled-LandDescription", + "type": "textarea", + "input": true, + "label": "Land Description or metes and bounds", + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "", + "minWords": "", + "maxWords": "" + }, + "tableView": true, + "autoExpand": false, + "inputFormat": "plain", + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "rows": 3, + "wysiwyg": false, + "editor": "", + "fixedSize": true, + "id": "e9sdlfc" + } + ], + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "clearOnHide": false, + "refreshOn": "", + "redrawOn": "", + "labelPosition": "top", + "description": "", + "errorLabel": "", + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "tree": false, + "lazyLoad": false, + "id": "e0cqfrg000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" + } + ], + "layoutFixed": false, + "defaultValue": [ + { + "Section2-LegallyTitled-PID": "", + "SiteAddress-UntitledCrown-PIN": "", + "Section2-LegallyTitled-LandDescription": "", + "SiteAddress-UntitledCrown-LandDescription": "" + } + ], + "enableRowGroups": false, + "addAnotherPosition": "bottom", + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "tree": true, + "lazyLoad": false, + "disableAddingRemovingRows": false, + "id": "eg4uvab" + }, + { + "label": "And if available:", + "reorder": false, + "addAnotherPosition": "bottom", + "layoutFixed": false, + "enableRowGroups": false, + "initEmpty": false, + "hideLabel": true, + "tableView": false, + "defaultValue": [ + { + "Section2-UntitledCrown-CrownLandFileNumbers": "", + "SiteAddress-UntitledCrown-CrownLandFileNumbers": "" + } + ], + "key": "Section2-UntitledCrownLand-FileNumberColumn", + "type": "datagrid", + "input": true, + "components": [ + { + "key": "Section2-UntitledCrown-CrownLandFileNumbers", + "type": "textfield", + "input": true, + "label": "Crown Land File Numbers", + "tableView": true, + "id": "elizdoh000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false + } + ], + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "tree": true, + "lazyLoad": false, + "disableAddingRemovingRows": false, + "id": "eeq9myk" + } + ], + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "clearOnHide": false, + "refreshOn": "", + "redrawOn": "", + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "tree": false, + "lazyLoad": false, + "id": "eids8qa" + }, + { + "title": "For untitled municipal land (Source Site)", + "theme": "default", + "tooltip": "", + "customClass": "", + "collapsible": false, + "hidden": false, + "hideLabel": false, + "disabled": false, + "modalEdit": false, + "key": "Section2-forUntitledCrownLand1", + "tags": [], + "properties": {}, + "customConditional": "", + "conditional": { + "json": "", + "show": true, + "when": "landOwnershipSourceSitePleaseSelectAllThatApply", + "eq": "untitledMunicipal" + }, + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "panel", + "label": "", + "breadcrumb": "default", + "tabindex": "", + "input": false, + "collapsed": false, + "tableView": false, + "components": [ + { + "key": "Section2-LegallyTitled-LandDescription", + "type": "textarea", + "input": true, + "label": "Land Description", + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "", + "minWords": "", + "maxWords": "" + }, + "tableView": true, + "autoExpand": false, + "inputFormat": "plain", + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "rows": 3, + "wysiwyg": false, + "editor": "", + "fixedSize": true, + "id": "eggg59w" + } + ], + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "clearOnHide": false, + "refreshOn": "", + "redrawOn": "", + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "tree": false, + "lazyLoad": false, + "id": "e8g7fan" + } + ], + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "clearOnHide": false, + "refreshOn": "", + "redrawOn": "", + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "tree": false, + "lazyLoad": false, + "id": "eqif3zi" + }, + { + "title": "Offsite Impacted Properties", + "theme": "default", + "tooltip": "", + "customClass": "", + "collapsible": false, + "hidden": false, + "hideLabel": false, + "disabled": false, + "modalEdit": false, + "key": "offsiteImpactedProperties1", + "tags": [], + "properties": {}, + "customConditional": "", + "conditional": { + "json": "", + "show": null, + "when": null, + "eq": "" + }, + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "panel", + "label": "Panel", + "breadcrumb": "default", + "tabindex": "", + "input": false, + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "clearOnHide": false, + "refreshOn": "", + "redrawOn": "", + "tableView": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "tree": false, + "lazyLoad": false, + "components": [ + { + "label": "Select one:", + "labelPosition": "top", + "optionsLabelPosition": "right", + "description": "", + "tooltip": "", + "customClass": "", + "tabindex": "", + "inline": false, + "hidden": false, + "hideLabel": false, + "autofocus": false, + "disabled": false, + "tableView": false, + "modalEdit": false, + "values": [ + { + "label": "Offsite impacted property(ies) - Provide information for each", + "value": "offsiteImpactedProperty", + "shortcut": "" + }, + { + "label": "Not Applicable", + "value": "notApplicable", + "shortcut": "" + } + ], + "dataType": "", + "persistent": true, + "protected": false, + "dbIndex": false, + "encrypted": false, + "redrawOn": "", + "clearOnHide": true, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "allowCalculateOverride": false, + "validate": { + "required": true, + "onlyAvailableItems": false, + "customMessage": "", + "custom": "", + "customPrivate": false, + "json": "", + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "errorLabel": "", + "errors": "", + "key": "offsiteImpactedProperties", + "tags": [], + "properties": {}, + "conditional": { + "show": null, + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "radio", + "input": true, + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "unique": false, + "refreshOn": "", + "dataGridLabel": false, + "widget": null, + "validateOn": "change", + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "inputType": "radio", + "fieldSet": false, + "id": "e2ysuh", + "defaultValue": "" + }, + { + "label": "", + "reorder": false, + "addAnotherPosition": "bottom", + "layoutFixed": false, + "enableRowGroups": false, + "initEmpty": false, + "hideLabel": true, + "tableView": false, + "defaultValue": [ + {} + ], + "key": "dataGrid1", + "conditional": { + "show": true, + "when": "offsiteImpactedProperties", + "eq": "offsiteImpactedProperty" + }, + "type": "datagrid", + "input": true, + "components": [ + { + "title": "Coordinates for the centre of the impacted site", + "collapsible": false, + "key": "Section2-forUntitledCrownLand2", + "conditional": { + "show": true, + "when": "offsiteImpactedProperties", + "eq": "offsiteImpactedProperty" + }, + "type": "panel", + "label": "Impacted Sites", + "input": false, + "collapsed": false, + "tableView": false, + "components": [ + { + "key": "heading8", + "tag": "h4", + "type": "htmlelement", + "input": false, + "label": "Heading", + "content": "Latitude", + "tableView": false, + "headingSize": "h1", + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "attrs": [], + "id": "e2ug45e" + }, + { + "key": "Section2-LatitudeColumn2", + "type": "columns", + "input": false, + "label": "Columns - 3", + "columns": [ + { + "pull": 0, + "push": 0, + "size": "md", + "width": 4, + "offset": 0, + "components": [ + { + "key": "section2LatitudeDegrees2", + "type": "textfield", + "input": true, + "label": "Degrees", + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "tableView": false, + "hideOnChildrenHidden": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "ey5x9g8" + } + ], + "currentWidth": 4 + }, + { + "pull": 0, + "push": 0, + "size": "md", + "width": 4, + "offset": 0, + "components": [ + { + "key": "section2LatitudeMinutes2", + "type": "textfield", + "input": true, + "label": "Minutes", + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "tableView": false, + "hideOnChildrenHidden": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "e1ftky" + } + ], + "currentWidth": 4 + }, + { + "pull": 0, + "push": 0, + "size": "md", + "width": 4, + "offset": 0, + "components": [ + { + "key": "section2LatitudeSeconds2", + "type": "textfield", + "input": true, + "label": "Seconds", + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "tableView": false, + "hideOnChildrenHidden": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "e4whd08" + } + ], + "currentWidth": 4 + } + ], + "tableView": false, + "hideOnChildrenHidden": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "hidden": false, + "clearOnHide": false, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "tree": false, + "lazyLoad": false, + "autoAdjust": false, + "id": "el90wzy" + }, + { + "key": "heading9", + "tag": "h4", + "type": "htmlelement", + "input": false, + "label": "Heading", + "content": "Longitude", + "tableView": false, + "headingSize": "h1", + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "attrs": [], + "id": "ex8n8vc" + }, + { + "key": "Section2-LongitudeColumn2", + "type": "columns", + "input": false, + "label": "Columns - 3", + "columns": [ + { + "pull": 0, + "push": 0, + "size": "md", + "width": 4, + "offset": 0, + "components": [ + { + "key": "section2LongitudeDegrees2", + "type": "textfield", + "input": true, + "label": "Degrees", + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "tableView": false, + "hideOnChildrenHidden": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "eayewmr" + } + ], + "currentWidth": 4 + }, + { + "pull": 0, + "push": 0, + "size": "md", + "width": 4, + "offset": 0, + "components": [ + { + "key": "section2LongitudeMinutes2", + "type": "textfield", + "input": true, + "label": "Minutes", + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "tableView": false, + "hideOnChildrenHidden": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "eg5a19" + } + ], + "currentWidth": 4 + }, + { + "pull": 0, + "push": 0, + "size": "md", + "width": 4, + "offset": 0, + "components": [ + { + "key": "section2LongitudeSeconds2", + "type": "textfield", + "input": true, + "label": "Seconds", + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "tableView": false, + "hideOnChildrenHidden": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "evt9aao" + } + ], + "currentWidth": 4 + } + ], + "tableView": false, + "hideOnChildrenHidden": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "hidden": false, + "clearOnHide": false, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "tree": false, + "lazyLoad": false, + "autoAdjust": false, + "id": "e6o3au0o" + } + ], + "id": "erlwlrl00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "hidden": false, + "clearOnHide": false, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "tree": false, + "lazyLoad": false, + "theme": "default", + "breadcrumb": "default" + } + ], + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "tree": true, + "lazyLoad": false, + "disableAddingRemovingRows": false, + "id": "eef218" + }, + { + "html": "

Attention:

", + "label": "Content", + "customClass": "", + "refreshOnChange": false, + "hidden": false, + "modalEdit": false, + "key": "content1", + "tags": [], + "properties": {}, + "conditional": { + "show": null, + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "content", + "input": false, + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "tableView": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "id": "edgwhqh" + }, + { + "label": "Include land title record, where applicable", + "labelPosition": "top", + "optionsLabelPosition": "right", + "description": "", + "tooltip": "", + "customClass": "", + "tabindex": "", + "inline": false, + "hidden": false, + "hideLabel": false, + "autofocus": false, + "disabled": false, + "tableView": false, + "modalEdit": false, + "values": [ + { + "label": "I understand and will include a land title record with my submission", + "value": "hasTitleRecord", + "shortcut": "" + }, + { + "label": "Land title record not available", + "value": "noTitleRecord", + "shortcut": "" + } + ], + "dataType": "", + "persistent": true, + "protected": false, + "dbIndex": false, + "encrypted": false, + "redrawOn": "", + "clearOnHide": true, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "allowCalculateOverride": false, + "validate": { + "required": true, + "onlyAvailableItems": false, + "customMessage": "", + "custom": "", + "customPrivate": false, + "json": "", + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "errorLabel": "", + "errors": "", + "key": "includeLandTitleRecordWhereApplicable", + "tags": [], + "properties": {}, + "conditional": { + "show": null, + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "radio", + "input": true, + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "unique": false, + "refreshOn": "", + "dataGridLabel": false, + "widget": null, + "validateOn": "change", + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "inputType": "radio", + "fieldSet": false, + "id": "e0vaduj", + "defaultValue": "noTitleRecord" + }, + { + "label": "Land ownership (Impacted Property or Receiving Site) Please select all that apply:", + "optionsLabelPosition": "right", + "tableView": false, + "values": [ + { + "label": "Legally Titled, Registered Property", + "value": "legallyTitled", + "shortcut": "" + }, + { + "label": "Untitled Crown Land", + "value": "untitledCrown", + "shortcut": "" + }, + { + "label": "Untitled Municipal Land", + "value": "untitledMunicipal", + "shortcut": "" + } + ], + "key": "landOwnershipImpactedPropertyPleaseSelectAllThatApply", + "type": "selectboxes", + "input": true, + "inputType": "checkbox", + "defaultValue": { + "legallyTitled": false, + "untitledCrown": false, + "untitledMunicipal": false + }, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "onlyAvailableItems": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "fieldSet": false, + "inline": false, + "id": "ebvkqdh" + }, + { + "title": "For Legally Titled, Registered Property (Impacted Property)", + "theme": "default", + "tooltip": "", + "customClass": "", + "collapsible": false, + "hidden": false, + "hideLabel": false, + "disabled": false, + "modalEdit": false, + "key": "forLegallyTitledRegisteredProperty-panel1", + "tags": [], + "properties": {}, + "customConditional": "", + "conditional": { + "json": "", + "show": true, + "when": "landOwnershipImpactedPropertyPleaseSelectAllThatApply", + "eq": "legallyTitled" + }, + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "panel", + "label": "", + "breadcrumb": "default", + "tabindex": "", + "input": false, + "collapsed": false, + "tableView": false, + "components": [ + { + "key": "Section2-LegallyTitled-Address1", + "type": "textfield", + "input": true, + "label": "Site Address", + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "tableView": false, + "placeholder": "or nearest street name/intersection if no address is assigned", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "epwcnl" + }, + { + "key": "Section2-LegallyTitled-AddressColumn1", + "type": "columns", + "input": false, + "label": "Columns - 2", + "columns": [ + { + "pull": 0, + "push": 0, + "size": "md", + "width": 6, + "offset": 0, + "components": [ + { + "key": "Section2-LegallyTitled-City1", + "type": "textfield", + "input": true, + "label": "City", + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "tableView": false, + "hideOnChildrenHidden": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "e6ii8s" + } + ], + "currentWidth": 6 + }, + { + "pull": 0, + "push": 0, + "size": "md", + "width": 6, + "offset": 0, + "components": [ + { + "key": "Section2-LegallyTitled-PostalZipCode1", + "type": "textfield", + "input": true, + "label": "Postal Code", + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "tableView": false, + "hideOnChildrenHidden": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "erie2w" + } + ], + "currentWidth": 6 + } + ], + "tableView": false, + "hideOnChildrenHidden": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "hidden": false, + "clearOnHide": false, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "tree": false, + "lazyLoad": false, + "autoAdjust": false, + "id": "e5j0jj4" + }, + { + "label": "Enter PIDs and Land Descriptions below", + "tooltip": "Select the 'X' button to delete an entry.", + "reorder": false, + "addAnotherPosition": "bottom", + "layoutFixed": false, + "enableRowGroups": false, + "initEmpty": false, + "hideLabel": true, + "tableView": false, + "defaultValue": [ + { + "Section2-LegallyTitled-PID": "", + "SiteAddress-LegallyTitled-PID": "", + "Section2-LegallyTitled-LandDescription": "", + "SiteAddress-LegallyTitled-LandDescription": "" + } + ], + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "key": "Section2-LegallyTitled-PIDColumn1", + "type": "datagrid", + "input": true, + "components": [ + { + "title": "Entries", + "collapsible": false, + "hideLabel": true, + "key": "panel1", + "type": "panel", + "label": "Panel", + "input": false, + "tableView": false, + "components": [ + { + "key": "cols3", + "type": "columns", + "input": false, + "label": "Columns - 2", + "columns": [ + { + "pull": 0, + "push": 0, + "size": "md", + "width": 6, + "offset": 0, + "components": [ + { + "key": "Section2-LegallyTitled-PID", + "type": "textfield", + "input": true, + "label": "PID", + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "inputMask": "999-999-999", + "tableView": true, + "hideOnChildrenHidden": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "e35yp8o" + } + ], + "currentWidth": 6 + }, + { + "pull": 0, + "push": 0, + "size": "md", + "width": 6, + "offset": 0, + "components": [], + "currentWidth": 6 + } + ], + "tableView": false, + "hideOnChildrenHidden": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "hidden": false, + "clearOnHide": false, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "tree": false, + "lazyLoad": false, + "autoAdjust": false, + "id": "edxz0kc" + }, + { + "key": "Section2-LegallyTitled-LandDescription", + "type": "textarea", + "input": true, + "label": "Land Description", + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "", + "minWords": "", + "maxWords": "" + }, + "tableView": true, + "autoExpand": false, + "inputFormat": "plain", + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "rows": 3, + "wysiwyg": false, + "editor": "", + "fixedSize": true, + "id": "eg4rrls" + } + ], + "id": "ehjtgz000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "hidden": false, + "clearOnHide": false, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "tree": false, + "lazyLoad": false, + "theme": "default", + "breadcrumb": "default" + } + ], + "hideOnChildrenHidden": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "tree": true, + "lazyLoad": false, + "disableAddingRemovingRows": false, + "id": "edwqg5s" + } + ], + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "clearOnHide": false, + "refreshOn": "", + "redrawOn": "", + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "tree": false, + "lazyLoad": false, + "id": "eljmet" + }, + { + "title": "For Untitled Crown Land (Impacted Property)", + "theme": "default", + "tooltip": "", + "customClass": "", + "collapsible": false, + "hidden": false, + "hideLabel": false, + "disabled": false, + "modalEdit": false, + "key": "Section2-forUntitledCrownLand2", + "tags": [], + "properties": {}, + "customConditional": "", + "conditional": { + "json": "", + "show": true, + "when": "landOwnershipImpactedPropertyPleaseSelectAllThatApply", + "eq": "untitledCrown" + }, + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "panel", + "label": "", + "breadcrumb": "default", + "tabindex": "", + "input": false, + "collapsed": false, + "tableView": false, + "components": [ + { + "label": "Crown Land Entries", + "labelPosition": "top", + "description": "", + "tooltip": "", + "disableAddingRemovingRows": false, + "conditionalAddButton": "", + "reorder": false, + "addAnother": "", + "addAnotherPosition": "bottom", + "layoutFixed": false, + "enableRowGroups": false, + "initEmpty": false, + "customClass": "", + "tabindex": "", + "hidden": false, + "hideLabel": true, + "autofocus": false, + "disabled": false, + "tableView": false, + "modalEdit": false, + "defaultValue": [ + { + "Section2-LegallyTitled-PID": "", + "SiteAddress-UntitledCrown-PIN": "", + "Section2-LegallyTitled-LandDescription": "", + "SiteAddress-UntitledCrown-LandDescription": "" + } + ], + "persistent": true, + "protected": false, + "dbIndex": false, + "encrypted": false, + "redrawOn": "", + "clearOnHide": true, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "allowCalculateOverride": false, + "validateOn": "change", + "validate": { + "required": false, + "minLength": "", + "maxLength": "", + "customMessage": "", + "custom": "", + "customPrivate": false, + "json": "", + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "errorLabel": "", + "errors": "", + "key": "Section2-UntitledCrown-PINColumn1", + "tags": [], + "properties": {}, + "conditional": { + "show": null, + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "datagrid", + "input": true, + "components": [ + { + "title": "Crown Land", + "theme": "default", + "tooltip": "", + "customClass": "", + "collapsible": false, + "hidden": false, + "hideLabel": true, + "dataGridLabel": false, + "disabled": false, + "modalEdit": false, + "key": "panel1", + "tags": [], + "properties": {}, + "customConditional": "", + "conditional": { + "json": "", + "show": null, + "when": null, + "eq": "" + }, + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "panel", + "label": "", + "breadcrumb": "default", + "tabindex": "", + "input": false, + "tableView": false, + "components": [ + { + "key": "cols3", + "type": "columns", + "input": false, + "label": "Columns - 2", + "columns": [ + { + "pull": 0, + "push": 0, + "size": "md", + "width": 6, + "offset": 0, + "components": [ + { + "label": "PIN", + "tableView": true, + "key": "Section2-LegallyTitled-PID", + "type": "textfield", + "input": true, + "hideOnChildrenHidden": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "e6g3hkp" + } + ], + "currentWidth": 6 + }, + { + "pull": 0, + "push": 0, + "size": "md", + "width": 6, + "offset": 0, + "components": [], + "currentWidth": 6 + } + ], + "tableView": false, + "hideOnChildrenHidden": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "hidden": false, + "clearOnHide": false, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "tree": false, + "lazyLoad": false, + "autoAdjust": false, + "id": "eqa4hvn" + }, + { + "label": "Land Description or metes and bounds", + "autoExpand": false, + "tableView": true, + "inputFormat": "plain", + "key": "Section2-LegallyTitled-LandDescription", + "type": "textarea", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "", + "minWords": "", + "maxWords": "" + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "rows": 3, + "wysiwyg": false, + "editor": "", + "fixedSize": true, + "id": "esiwlom" + } + ], + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "clearOnHide": false, + "refreshOn": "", + "redrawOn": "", + "labelPosition": "top", + "description": "", + "errorLabel": "", + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "tree": false, + "lazyLoad": false, + "id": "emjblk6000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" + } + ], + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "unique": false, + "refreshOn": "", + "dataGridLabel": false, + "widget": null, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "tree": true, + "lazyLoad": false, + "id": "ecdu066" + }, + { + "label": "And if available:", + "reorder": false, + "addAnotherPosition": "bottom", + "layoutFixed": false, + "enableRowGroups": false, + "initEmpty": false, + "hideLabel": true, + "tableView": false, + "defaultValue": [ + { + "Section2-UntitledCrown-CrownLandFileNumbers": "", + "SiteAddress-UntitledCrown-CrownLandFileNumbers": "" + } + ], + "key": "Section2-UntitledCrownLand-FileNumberColumn1", + "type": "datagrid", + "input": true, + "components": [ + { + "key": "Section2-UntitledCrown-CrownLandFileNumbers", + "type": "textfield", + "input": true, + "label": "Crown Land File Numbers", + "tableView": true, + "id": "eh8kmqu0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false + } + ], + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "tree": true, + "lazyLoad": false, + "disableAddingRemovingRows": false, + "id": "ebjum0p" + } + ], + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "clearOnHide": false, + "refreshOn": "", + "redrawOn": "", + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "tree": false, + "lazyLoad": false, + "id": "e6t7knc" + }, + { + "title": "For untitled municipal land (Impacted Property)", + "theme": "default", + "tooltip": "", + "customClass": "", + "collapsible": false, + "hidden": false, + "hideLabel": false, + "disabled": false, + "modalEdit": false, + "key": "Section2-forUntitledCrownLand3", + "tags": [], + "properties": {}, + "customConditional": "", + "conditional": { + "json": "", + "show": true, + "when": "landOwnershipImpactedPropertyPleaseSelectAllThatApply", + "eq": "untitledMunicipal" + }, + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "panel", + "label": "", + "breadcrumb": "default", + "tabindex": "", + "input": false, + "collapsed": false, + "tableView": false, + "components": [ + { + "key": "Section2-LegallyTitled-LandDescription1", + "type": "textarea", + "input": true, + "label": "Land Description", + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "", + "minWords": "", + "maxWords": "" + }, + "tableView": true, + "autoExpand": false, + "inputFormat": "plain", + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "rows": 3, + "wysiwyg": false, + "editor": "", + "fixedSize": true, + "id": "eze39c" + } + ], + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "clearOnHide": false, + "refreshOn": "", + "redrawOn": "", + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "tree": false, + "lazyLoad": false, + "id": "ewwn6y8" + } + ], + "id": "e8qmdma" + }, + { + "html": "

Part 3 - Document Summary

 

", + "label": "Content", + "customClass": "", + "refreshOnChange": false, + "hidden": false, + "modalEdit": false, + "key": "content5", + "tags": [], + "properties": {}, + "conditional": { + "show": null, + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "content", + "input": false, + "tableView": false, + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "id": "ewlel6g" + }, + { + "title": "", + "theme": "default", + "tooltip": "", + "customClass": "", + "collapsible": false, + "hidden": false, + "hideLabel": false, + "disabled": false, + "modalEdit": false, + "key": "panel8", + "tags": [], + "properties": {}, + "customConditional": "", + "conditional": { + "json": "", + "show": null, + "when": null, + "eq": "" + }, + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "panel", + "label": "Panel", + "breadcrumb": "default", + "tabindex": "", + "input": false, + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "clearOnHide": false, + "refreshOn": "", + "redrawOn": "", + "tableView": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "tree": false, + "lazyLoad": false, + "components": [ + { + "html": "

List all known site investigation, risk assessment (including screening level risk assessment), remediation plan and confirmation of remediation reports comleted and directly supporting correspondence submitted (for source site and offsite impacted sites). 

List documents in order from newest to oldest.

", + "label": "Content", + "customClass": "", + "refreshOnChange": false, + "hidden": false, + "modalEdit": false, + "key": "content8", + "tags": [], + "properties": {}, + "conditional": { + "show": null, + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "content", + "input": false, + "tableView": false, + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "id": "eevyl1r" + }, + { + "label": "", + "reorder": false, + "addAnotherPosition": "bottom", + "layoutFixed": false, + "enableRowGroups": false, + "initEmpty": false, + "hideLabel": true, + "tableView": false, + "defaultValue": [ + { + "document": "", + "documentTitle": "", + "authorCompany": "", + "documentDate": "00/00/0000" + } + ], + "key": "dataGrid2", + "type": "datagrid", + "input": true, + "components": [ + { + "title": "Document", + "collapsible": false, + "key": "documents", + "type": "panel", + "label": "Documents", + "input": false, + "tableView": false, + "components": [ + { + "label": "Document #:", + "tableView": true, + "key": "document", + "type": "textfield", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "e0ufs5o" + }, + { + "label": "Document Title", + "tableView": true, + "key": "documentTitle", + "type": "textfield", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "e839axn" + }, + { + "label": "Author/Company", + "tableView": true, + "key": "authorCompany", + "type": "textfield", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "eum71oo" + }, + { + "label": "Document Date", + "hideInputLabels": false, + "inputsLabelPosition": "top", + "useLocaleSettings": false, + "tableView": false, + "fields": { + "day": { + "hide": false, + "type": "number", + "placeholder": "", + "required": false + }, + "month": { + "hide": false, + "type": "select", + "placeholder": "", + "required": false + }, + "year": { + "hide": false, + "type": "number", + "placeholder": "", + "required": false + } + }, + "key": "documentDate", + "type": "day", + "input": true, + "defaultValue": "00/00/0000", + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "dayFirst": false, + "id": "egqqs34" + } + ], + "id": "e80y9k8000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "hidden": false, + "clearOnHide": false, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "tree": false, + "lazyLoad": false, + "theme": "default", + "breadcrumb": "default" + } + ], + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "tree": true, + "lazyLoad": false, + "disableAddingRemovingRows": false, + "id": "e1pcqd3" + } + ], + "id": "euq4ro" + }, + { + "html": "

Part 4 - Investigation Summary

 

", + "label": "Content", + "customClass": "", + "refreshOnChange": false, + "hidden": false, + "modalEdit": false, + "key": "content6", + "tags": [], + "properties": {}, + "conditional": { + "show": null, + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "content", + "input": false, + "tableView": false, + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "id": "e08pdh" + }, + { + "label": "Has an Approval in Principal (AiP) been issued for this site?", + "labelPosition": "top", + "optionsLabelPosition": "right", + "description": "", + "tooltip": "", + "customClass": "", + "tabindex": "", + "inline": false, + "hidden": false, + "hideLabel": false, + "autofocus": false, + "disabled": false, + "tableView": false, + "modalEdit": false, + "values": [ + { + "label": "Yes", + "value": "true", + "shortcut": "" + }, + { + "label": "No", + "value": "false", + "shortcut": "" + } + ], + "dataType": "", + "persistent": true, + "protected": false, + "dbIndex": false, + "encrypted": false, + "redrawOn": "", + "clearOnHide": true, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "allowCalculateOverride": false, + "validate": { + "required": false, + "onlyAvailableItems": false, + "customMessage": "", + "custom": "", + "customPrivate": false, + "json": "", + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "errorLabel": "", + "errors": "", + "key": "hasAnApprovalInPrincipalAiPBeenIssuedForThisSite", + "tags": [], + "properties": {}, + "conditional": { + "show": null, + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "radio", + "input": true, + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "unique": false, + "refreshOn": "", + "dataGridLabel": false, + "widget": null, + "validateOn": "change", + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "inputType": "radio", + "fieldSet": false, + "id": "etgpg9", + "defaultValue": "" + }, + { + "html": "

If an Approval in Principle (AIP) has been issued and this SoSC form is being submitted as part of a Certificate of Compliance, you do not need to complete PART 4.

If an AiP has not been issued, or if other circumstances require completion of section 4, please complete PARTS 4.1 to 4.8 below where indicated.

 

", + "label": "Content", + "customClass": "", + "refreshOnChange": false, + "hidden": false, + "modalEdit": false, + "key": "content7", + "tags": [], + "properties": {}, + "conditional": { + "show": null, + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "content", + "input": false, + "tableView": false, + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "id": "e4z1cma" + }, + { + "title": "SECTION I - Investigations Completed", + "collapsible": false, + "key": "sectionIInvestigationsCompleted", + "conditional": { + "show": true, + "when": "hasAnApprovalInPrincipalAiPBeenIssuedForThisSite", + "eq": "false" + }, + "type": "panel", + "label": "Panel", + "input": false, + "tableView": false, + "components": [ + { + "title": "", + "collapsible": false, + "key": "panel2", + "type": "panel", + "label": "Panel", + "input": false, + "tableView": false, + "components": [ + { + "html": "

Stage 1 PSI

", + "label": "Content", + "refreshOnChange": false, + "key": "content9", + "type": "content", + "input": false, + "tableView": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "id": "e3pl2xr" + }, + { + "label": "Completed? ", + "optionsLabelPosition": "right", + "inline": false, + "tableView": false, + "values": [ + { + "label": "Yes", + "value": "yes", + "shortcut": "" + }, + { + "label": "No", + "value": "no", + "shortcut": "" + }, + { + "label": "N/A", + "value": "nA", + "shortcut": "" + } + ], + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "onlyAvailableItems": false + }, + "key": "completed", + "type": "radio", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "inputType": "radio", + "fieldSet": false, + "id": "e5mdhfh" + }, + { + "label": "Includes Stage 1 PSI information as listed in CSR Section 58 and any current applicable ministry protocols, guidelines, checklists, etc.?", + "optionsLabelPosition": "right", + "inline": false, + "tableView": false, + "values": [ + { + "label": "Yes", + "value": "yes", + "shortcut": "" + }, + { + "label": "No", + "value": "no", + "shortcut": "" + }, + { + "label": "N/A", + "value": "nA", + "shortcut": "" + } + ], + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "onlyAvailableItems": false + }, + "key": "includesStage1PsiInformationAsListedInCsrSection58AndAnyCurrentApplicableMinistryProtocolsGuidelinesChecklistsEtc", + "type": "radio", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "inputType": "radio", + "fieldSet": false, + "id": "eaori8x" + }, + { + "html": "

Stage 2 PSI

", + "label": "Content", + "refreshOnChange": false, + "key": "content10", + "type": "content", + "input": false, + "tableView": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "id": "epv4kl" + }, + { + "label": "Completed? ", + "optionsLabelPosition": "right", + "inline": false, + "tableView": false, + "values": [ + { + "label": "Yes", + "value": "yes", + "shortcut": "" + }, + { + "label": "No", + "value": "no", + "shortcut": "" + }, + { + "label": "N/A", + "value": "nA", + "shortcut": "" + } + ], + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "onlyAvailableItems": false + }, + "key": "completed1", + "type": "radio", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "inputType": "radio", + "fieldSet": false, + "id": "evp0dxp" + }, + { + "label": "Includes Stage 2 PSI information as listed in CSR Section 59 and any current applicable ministry protocols, guidelines, checklists, etc.?", + "optionsLabelPosition": "right", + "inline": false, + "tableView": false, + "values": [ + { + "label": "Yes", + "value": "yes", + "shortcut": "" + }, + { + "label": "No", + "value": "no", + "shortcut": "" + }, + { + "label": "N/A", + "value": "nA", + "shortcut": "" + } + ], + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "onlyAvailableItems": false + }, + "key": "includesStage1PsiInformationAsListedInCsrSection58AndAnyCurrentApplicableMinistryProtocolsGuidelinesChecklistsEtc1", + "type": "radio", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "inputType": "radio", + "fieldSet": false, + "id": "ep82c5k" + }, + { + "html": "

DSI

", + "label": "Content", + "refreshOnChange": false, + "key": "content11", + "type": "content", + "input": false, + "tableView": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "id": "era84nd" + }, + { + "label": "Completed? ", + "optionsLabelPosition": "right", + "inline": false, + "tableView": false, + "values": [ + { + "label": "Yes", + "value": "yes", + "shortcut": "" + }, + { + "label": "No", + "value": "no", + "shortcut": "" + }, + { + "label": "N/A", + "value": "nA", + "shortcut": "" + } + ], + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "onlyAvailableItems": false + }, + "key": "completed2", + "type": "radio", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "inputType": "radio", + "fieldSet": false, + "id": "e1o53pv" + }, + { + "label": "Includes DSI information as listed in CSR Section 59 and any current applicable ministry protocols, guidelines, checklists, etc.?", + "optionsLabelPosition": "right", + "inline": false, + "tableView": false, + "values": [ + { + "label": "Yes", + "value": "yes", + "shortcut": "" + }, + { + "label": "No", + "value": "no", + "shortcut": "" + }, + { + "label": "N/A", + "value": "nA", + "shortcut": "" + } + ], + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "onlyAvailableItems": false + }, + "key": "includesStage1PsiInformationAsListedInCsrSection58AndAnyCurrentApplicableMinistryProtocolsGuidelinesChecklistsEtc2", + "type": "radio", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "inputType": "radio", + "fieldSet": false, + "id": "eaetjce" + }, + { + "html": "

Other Reports

", + "label": "Content", + "refreshOnChange": false, + "key": "content12", + "type": "content", + "input": false, + "tableView": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "id": "e54l6dg" + }, + { + "label": "Completed? ", + "optionsLabelPosition": "right", + "inline": false, + "tableView": false, + "values": [ + { + "label": "Yes", + "value": "yes", + "shortcut": "" + }, + { + "label": "No", + "value": "no", + "shortcut": "" + }, + { + "label": "N/A", + "value": "nA", + "shortcut": "" + } + ], + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "onlyAvailableItems": false + }, + "key": "completed3", + "type": "radio", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "inputType": "radio", + "fieldSet": false, + "id": "enqzxx" + }, + { + "label": "According to other guidelines? (Provide explanation in notes below. Indicate how reports assist understanding of conditions and remediation.)", + "optionsLabelPosition": "right", + "inline": false, + "tableView": false, + "values": [ + { + "label": "Yes", + "value": "yes", + "shortcut": "" + }, + { + "label": "No", + "value": "no", + "shortcut": "" + }, + { + "label": "N/A", + "value": "nA", + "shortcut": "" + } + ], + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "onlyAvailableItems": false + }, + "key": "includesStage1PsiInformationAsListedInCsrSection58AndAnyCurrentApplicableMinistryProtocolsGuidelinesChecklistsEtc3", + "type": "radio", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "inputType": "radio", + "fieldSet": false, + "id": "epuetea" + }, + { + "label": "Notes", + "tableView": true, + "key": "notes", + "type": "textfield", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "e40v61c" + } + ], + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "hidden": false, + "clearOnHide": false, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "tree": false, + "lazyLoad": false, + "theme": "default", + "breadcrumb": "default", + "id": "e5czdm" + }, + { + "html": "

If completed investigation reports are not adequate or if reports are titled differently or have a different scope than those listed above in accordance with the Contaminated Sites Regulation (i.e. PSI, DSI), complete Section 4.8 (Investigation or Interpretation Issues)

", + "label": "Content", + "refreshOnChange": false, + "key": "content66", + "type": "content", + "input": false, + "tableView": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "id": "eckn0k" + } + ], + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "hidden": false, + "clearOnHide": false, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "tree": false, + "lazyLoad": false, + "theme": "default", + "breadcrumb": "default", + "id": "eqjsu9p" + }, + { + "title": "SECTION II - Site Conditions", + "collapsible": false, + "key": "sectionIiSiteConditions", + "conditional": { + "show": true, + "when": "hasAnApprovalInPrincipalAiPBeenIssuedForThisSite", + "eq": "false" + }, + "type": "panel", + "label": "Panel", + "input": false, + "tableView": false, + "components": [ + { + "label": "Topography", + "labelPosition": "top", + "placeholder": "", + "description": "Describe steepness, direction of slope and position of site in relation to surrounding land", + "tooltip": "", + "prefix": "", + "suffix": "", + "widget": { + "type": "input" + }, + "displayMask": "", + "editor": "", + "autoExpand": false, + "customClass": "", + "tabindex": "", + "autocomplete": "", + "hidden": false, + "hideLabel": false, + "showWordCount": false, + "showCharCount": false, + "autofocus": false, + "spellcheck": true, + "disabled": false, + "tableView": true, + "modalEdit": false, + "multiple": false, + "persistent": true, + "inputFormat": "html", + "protected": false, + "dbIndex": false, + "case": "", + "truncateMultipleSpaces": false, + "encrypted": false, + "redrawOn": "", + "clearOnHide": true, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "allowCalculateOverride": false, + "validateOn": "change", + "validate": { + "required": true, + "pattern": "", + "customMessage": "", + "custom": "", + "customPrivate": false, + "json": "", + "minLength": "", + "maxLength": "", + "minWords": "", + "maxWords": "", + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "unique": false, + "errorLabel": "", + "errors": "", + "key": "topography", + "tags": [], + "properties": {}, + "conditional": { + "show": null, + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "textarea", + "rows": 3, + "wysiwyg": false, + "input": true, + "refreshOn": "", + "dataGridLabel": false, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputMask": "", + "fixedSize": true, + "id": "e0d63ci", + "defaultValue": "" + }, + { + "label": "Stratigraphy", + "labelPosition": "top", + "placeholder": "", + "description": "Describe depth and thickness, grain size, etc. of typical stratigraphic components and note depth to cemented or very compact materials, bedrock / refusal, etc.", + "tooltip": "", + "prefix": "", + "suffix": "", + "widget": { + "type": "input" + }, + "displayMask": "", + "editor": "", + "autoExpand": false, + "customClass": "", + "tabindex": "", + "autocomplete": "", + "hidden": false, + "hideLabel": false, + "showWordCount": false, + "showCharCount": false, + "autofocus": false, + "spellcheck": true, + "disabled": false, + "tableView": true, + "modalEdit": false, + "multiple": false, + "persistent": true, + "inputFormat": "html", + "protected": false, + "dbIndex": false, + "case": "", + "truncateMultipleSpaces": false, + "encrypted": false, + "redrawOn": "", + "clearOnHide": true, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "allowCalculateOverride": false, + "validateOn": "change", + "validate": { + "required": true, + "pattern": "", + "customMessage": "", + "custom": "", + "customPrivate": false, + "json": "", + "minLength": "", + "maxLength": "", + "minWords": "", + "maxWords": "", + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "unique": false, + "errorLabel": "", + "errors": "", + "key": "stratigraphy", + "tags": [], + "properties": {}, + "conditional": { + "show": null, + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "textarea", + "rows": 3, + "wysiwyg": false, + "input": true, + "refreshOn": "", + "dataGridLabel": false, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputMask": "", + "fixedSize": true, + "id": "etgkvg", + "defaultValue": "" + }, + { + "label": "Hydrogeology", + "labelPosition": "top", + "placeholder": "", + "description": "Describe groundwater levels, confining / semi-confining layers, flow velocity and hydraulic conductivity. Provide arguments and supporting data to show compliance with Protocol 21 \"Water Use Determination\" where a specified groundwater use (DW, AW, IW or LW) has been determined not to apply. Provide explicit statements and description for every geological unit where an exemption from a specified water use is proposed to apply (add additional pages if necessary).", + "tooltip": "", + "prefix": "", + "suffix": "", + "widget": { + "type": "input" + }, + "displayMask": "", + "editor": "", + "autoExpand": false, + "customClass": "", + "tabindex": "", + "autocomplete": "", + "hidden": false, + "hideLabel": false, + "showWordCount": false, + "showCharCount": false, + "autofocus": false, + "spellcheck": true, + "disabled": false, + "tableView": true, + "modalEdit": false, + "multiple": false, + "persistent": true, + "inputFormat": "html", + "protected": false, + "dbIndex": false, + "case": "", + "truncateMultipleSpaces": false, + "encrypted": false, + "redrawOn": "", + "clearOnHide": true, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "allowCalculateOverride": false, + "validateOn": "change", + "validate": { + "required": true, + "pattern": "", + "customMessage": "", + "custom": "", + "customPrivate": false, + "json": "", + "minLength": "", + "maxLength": "", + "minWords": "", + "maxWords": "", + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "unique": false, + "errorLabel": "", + "errors": "", + "key": "hydrogeology", + "tags": [], + "properties": {}, + "conditional": { + "show": null, + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "textarea", + "rows": 3, + "wysiwyg": false, + "input": true, + "refreshOn": "", + "dataGridLabel": false, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputMask": "", + "fixedSize": true, + "id": "ejzhbnb", + "defaultValue": "" + }, + { + "label": "Surface water features - freshwater ", + "labelPosition": "top", + "placeholder": "", + "description": "List name, direction and distance to nearest surface water bodies and the characteristics (e.g., relative size / flow) of the water body", + "tooltip": "", + "prefix": "", + "suffix": "", + "widget": { + "type": "input" + }, + "displayMask": "", + "editor": "", + "autoExpand": false, + "customClass": "", + "tabindex": "", + "autocomplete": "", + "hidden": false, + "hideLabel": false, + "showWordCount": false, + "showCharCount": false, + "autofocus": false, + "spellcheck": true, + "disabled": false, + "tableView": true, + "modalEdit": false, + "multiple": false, + "persistent": true, + "inputFormat": "html", + "protected": false, + "dbIndex": false, + "case": "", + "truncateMultipleSpaces": false, + "encrypted": false, + "redrawOn": "", + "clearOnHide": true, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "allowCalculateOverride": false, + "validateOn": "change", + "validate": { + "required": true, + "pattern": "", + "customMessage": "", + "custom": "", + "customPrivate": false, + "json": "", + "minLength": "", + "maxLength": "", + "minWords": "", + "maxWords": "", + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "unique": false, + "errorLabel": "", + "errors": "", + "key": "surfaceWaterFeaturesFreshwater", + "tags": [], + "properties": {}, + "conditional": { + "show": null, + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "textarea", + "rows": 3, + "wysiwyg": false, + "input": true, + "refreshOn": "", + "dataGridLabel": false, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputMask": "", + "fixedSize": true, + "id": "etp7mp", + "defaultValue": "" + }, + { + "label": "Surface water features - marine waters", + "labelPosition": "top", + "placeholder": "", + "description": "List name, direction and distance to nearest surface water bodies and the characteristics (e.g., relative size / flow) of the water body", + "tooltip": "", + "prefix": "", + "suffix": "", + "widget": { + "type": "input" + }, + "displayMask": "", + "editor": "", + "autoExpand": false, + "customClass": "", + "tabindex": "", + "autocomplete": "", + "hidden": false, + "hideLabel": false, + "showWordCount": false, + "showCharCount": false, + "autofocus": false, + "spellcheck": true, + "disabled": false, + "tableView": true, + "modalEdit": false, + "multiple": false, + "persistent": true, + "inputFormat": "html", + "protected": false, + "dbIndex": false, + "case": "", + "truncateMultipleSpaces": false, + "encrypted": false, + "redrawOn": "", + "clearOnHide": true, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "allowCalculateOverride": false, + "validateOn": "change", + "validate": { + "required": true, + "pattern": "", + "customMessage": "", + "custom": "", + "customPrivate": false, + "json": "", + "minLength": "", + "maxLength": "", + "minWords": "", + "maxWords": "", + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "unique": false, + "errorLabel": "", + "errors": "", + "key": "surfaceWaterFeaturesMarineWaters", + "tags": [], + "properties": {}, + "conditional": { + "show": null, + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "textarea", + "rows": 3, + "wysiwyg": false, + "input": true, + "refreshOn": "", + "dataGridLabel": false, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputMask": "", + "fixedSize": true, + "id": "eng6xqr", + "defaultValue": "" + } + ], + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "hidden": false, + "clearOnHide": false, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "tree": false, + "lazyLoad": false, + "theme": "default", + "breadcrumb": "default", + "id": "ejah089" + }, + { + "title": "SECTION III - Land Use", + "collapsible": false, + "key": "sectionIiiLandUse", + "conditional": { + "show": true, + "when": "hasAnApprovalInPrincipalAiPBeenIssuedForThisSite", + "eq": "false" + }, + "type": "panel", + "label": "Panel", + "input": false, + "tableView": false, + "components": [ + { + "html": "

Please indicate land use for each applicable area

", + "label": "Content", + "refreshOnChange": false, + "key": "content14", + "type": "content", + "input": false, + "tableView": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "id": "enxqvoe" + }, + { + "label": "Onsite: Site", + "description": "Description of current land use(s)/activities:", + "autoExpand": false, + "tableView": true, + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "", + "minWords": "", + "maxWords": "" + }, + "key": "onsiteSite", + "type": "textarea", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "html", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "rows": 3, + "wysiwyg": false, + "editor": "", + "fixedSize": true, + "id": "e6rs9wg" + }, + { + "label": "Offsite: North", + "description": "Description of current land use(s)/activities:", + "autoExpand": false, + "tableView": true, + "key": "offsiteNorth", + "type": "textarea", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "", + "minWords": "", + "maxWords": "" + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "html", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "rows": 3, + "wysiwyg": false, + "editor": "", + "fixedSize": true, + "id": "e7l6j3" + }, + { + "label": "Offsite: East", + "description": "Description of current land use(s)/activities:", + "autoExpand": false, + "tableView": true, + "key": "offsiteEast", + "type": "textarea", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "", + "minWords": "", + "maxWords": "" + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "html", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "rows": 3, + "wysiwyg": false, + "editor": "", + "fixedSize": true, + "id": "es0gn0e" + }, + { + "label": "Offsite: South", + "description": "Description of current land use(s)/activities:", + "autoExpand": false, + "tableView": true, + "key": "offsiteSouth", + "type": "textarea", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "", + "minWords": "", + "maxWords": "" + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "html", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "rows": 3, + "wysiwyg": false, + "editor": "", + "fixedSize": true, + "id": "eizhyma" + }, + { + "label": "Offsite: West", + "description": "Description of current land use(s)/activities:", + "autoExpand": false, + "tableView": true, + "key": "offsiteWest", + "type": "textarea", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "", + "minWords": "", + "maxWords": "" + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "html", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "rows": 3, + "wysiwyg": false, + "editor": "", + "fixedSize": true, + "id": "eajh7y" + }, + { + "label": "Proposed land use of site", + "optionsLabelPosition": "right", + "inline": false, + "tableView": false, + "values": [ + { + "label": "Same as above", + "value": "sameAsAbove", + "shortcut": "" + }, + { + "label": "Other", + "value": "other", + "shortcut": "" + } + ], + "key": "proposedLandUseOfSite", + "type": "radio", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "onlyAvailableItems": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "inputType": "radio", + "fieldSet": false, + "id": "ef9c7xv" + }, + { + "label": "Describe:", + "autoExpand": false, + "tableView": true, + "key": "describe", + "conditional": { + "show": true, + "when": "proposedLandUseOfSite", + "eq": "other" + }, + "type": "textarea", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "", + "minWords": "", + "maxWords": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "html", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "rows": 3, + "wysiwyg": false, + "editor": "", + "fixedSize": true, + "id": "enenb" + } + ], + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "hidden": false, + "clearOnHide": false, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "tree": false, + "lazyLoad": false, + "theme": "default", + "breadcrumb": "default", + "id": "ehd14l6" + }, + { + "title": "SECTION IV - Applicable Numerical Standards and Criteria", + "theme": "default", + "tooltip": "", + "customClass": "", + "collapsible": false, + "hidden": false, + "hideLabel": false, + "disabled": false, + "modalEdit": false, + "key": "sectionIvApplicableNumericalStandardsAndCriteria", + "tags": [], + "properties": {}, + "customConditional": "", + "conditional": { + "json": "", + "show": true, + "when": "hasAnApprovalInPrincipalAiPBeenIssuedForThisSite", + "eq": "false" + }, + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "panel", + "label": "Panel", + "breadcrumb": "default", + "tabindex": "", + "input": false, + "tableView": false, + "components": [ + { + "html": "

Soil (CSR Schedule 3.1)

Property - Source Site

", + "label": "Content", + "refreshOnChange": false, + "key": "content15", + "type": "content", + "input": false, + "tableView": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "id": "epzrwqp" + }, + { + "label": "CSR Land Use - Current", + "optionsLabelPosition": "right", + "tableView": false, + "values": [ + { + "label": "Industrial Land Use (IL)", + "value": "industrialLandUseIl", + "shortcut": "" + }, + { + "label": "Commercial Land Use (CL)", + "value": "commercialLandUseCl", + "shortcut": "" + }, + { + "label": "Residential Land Use High Density (RLHD)", + "value": "residentialLandUseHighDensityRlhd", + "shortcut": "" + }, + { + "label": "Residential Land Use Low Density (RLLD)", + "value": "residentialLandUseLowDensityRlld", + "shortcut": "" + }, + { + "label": "Urban Park Land Use (PL)", + "value": "urbanParkLandUsePl", + "shortcut": "" + }, + { + "label": "Agricultural Land Use (AL)", + "value": "agriculturalLandUseAl", + "shortcut": "" + }, + { + "label": "Wildlands Natural Land Use (WLN)", + "value": "wildlandsNaturalLandUseWln", + "shortcut": "" + }, + { + "label": "Wildlands Reverted Land Use (WLR)", + "value": "wildlandsRevertedLandUseWlr", + "shortcut": "" + }, + { + "label": "Other", + "value": "other", + "shortcut": "" + } + ], + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "onlyAvailableItems": false + }, + "key": "csrLandUseCurrent", + "type": "selectboxes", + "input": true, + "inputType": "checkbox", + "defaultValue": { + "industrialLandUseIl": false, + "commercialLandUseCl": false, + "residentialLandUseHighDensityRlhd": false, + "residentialLandUseLowDensityRlld": false, + "urbanParkLandUsePl": false, + "agriculturalLandUseAl": false, + "wildlandsNaturalLandUseWln": false, + "wildlandsRevertedLandUseWlr": false, + "other": false + }, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "fieldSet": false, + "inline": false, + "id": "e24v93" + }, + { + "label": "If 'Other' is specified above, please explain: (e.g. applicable or excluded guidance, protocols or policies specific to the site)", + "autoExpand": false, + "tableView": true, + "key": "ifOtherIsSpecifiedAbovePleaseExplainEGApplicableOrExcludedGuidanceProtocolsOrPoliciesSpecificToTheSite", + "conditional": { + "show": true, + "when": "csrLandUseCurrent", + "eq": "other" + }, + "type": "textarea", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "", + "minWords": "", + "maxWords": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "html", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "rows": 3, + "wysiwyg": false, + "editor": "", + "fixedSize": true, + "id": "e4nly1" + }, + { + "label": "Notes: If 'Other' standards selected above, provide rationale for why a typical standard does not apply:", + "autoExpand": false, + "tableView": true, + "key": "notesIfOtherStandardsSelectedAboveProvideRationaleForWhyATypicalStandardDoesNotApply", + "conditional": { + "show": true, + "when": "csrLandUseCurrent", + "eq": "other" + }, + "type": "textarea", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "", + "minWords": "", + "maxWords": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "html", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "rows": 3, + "wysiwyg": false, + "editor": "", + "fixedSize": true, + "id": "ebde74r" + }, + { + "label": "Have Protocol 2 site-specific standards been applied?", + "optionsLabelPosition": "right", + "inline": false, + "tableView": false, + "values": [ + { + "label": "Yes", + "value": "yes", + "shortcut": "" + }, + { + "label": "No", + "value": "no", + "shortcut": "" + } + ], + "key": "haveProtocol2SiteSpecificStandardsBeenApplied", + "type": "radio", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "onlyAvailableItems": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "inputType": "radio", + "fieldSet": false, + "id": "exwmue8" + }, + { + "label": "Note: If P2 site-specific numerical standards selected above, identify the substance and provide rationale for application of the site-specific numerical standard.", + "autoExpand": false, + "tableView": true, + "key": "noteIfP2SiteSpecificNumericalStandardsSelectedAboveIdentifyTheSubstanceAndProvideRationaleForApplicationOfTheSiteSpecificNumericalStandard", + "type": "textarea", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "", + "minWords": "", + "maxWords": "" + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "html", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "rows": 3, + "wysiwyg": false, + "editor": "", + "fixedSize": true, + "id": "eu2f997" + }, + { + "label": "Have Protocol 4 site-specific standards been applied?", + "optionsLabelPosition": "right", + "inline": false, + "tableView": false, + "values": [ + { + "label": "Yes", + "value": "yes", + "shortcut": "" + }, + { + "label": "No", + "value": "no", + "shortcut": "" + } + ], + "key": "haveProtocol4SiteSpecificStandardsBeenApplied", + "type": "radio", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "onlyAvailableItems": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "inputType": "radio", + "fieldSet": false, + "id": "ea8eabc" + }, + { + "label": "Note: If P4 background selected above, provide rationale for why the background concentration applies.", + "autoExpand": false, + "tableView": true, + "key": "noteIfP4BackgroundSelectedAboveProvideRationaleForWhyTheBackgroundConcentrationApplies", + "type": "textarea", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "", + "minWords": "", + "maxWords": "" + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "html", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "rows": 3, + "wysiwyg": false, + "editor": "", + "fixedSize": true, + "id": "eztiog" + }, + { + "label": "Does more than one land use apply at this site?", + "optionsLabelPosition": "right", + "inline": false, + "tableView": false, + "values": [ + { + "label": "Yes", + "value": "yes", + "shortcut": "" + }, + { + "label": "No", + "value": "no", + "shortcut": "" + } + ], + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "onlyAvailableItems": false + }, + "key": "haveProtocol4SiteSpecificStandardsBeenApplied1", + "type": "radio", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "inputType": "radio", + "fieldSet": false, + "id": "elpsvca" + }, + { + "label": "If more than one land use applies to the site, specify additional land uses covered by the document, i.e., riparian areas, roadways, etc. include a diagram to clearly show the area(s) with different standards.", + "autoExpand": false, + "tableView": true, + "key": "ifMoreThanOneLandUseAppliesToTheSiteSpecifyAdditionalLandUsesCoveredByTheDocumentIERiparianAreasRoadwaysEtcIncludeADiagramToClearlyShowTheAreaSWithDifferentStandards", + "type": "textarea", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "", + "minWords": "", + "maxWords": "" + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "html", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "rows": 3, + "wysiwyg": false, + "editor": "", + "fixedSize": true, + "id": "ekvvcob" + }, + { + "label": "Attention: attach diagram if more than one land use applies", + "tableView": false, + "defaultValue": false, + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "key": "attentionAttachDiagramIfMoreThanOneLandUseApplies", + "type": "checkbox", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": true, + "labelPosition": "right", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "inputType": "checkbox", + "value": "", + "name": "", + "id": "ez43pr" + }, + { + "label": "CSR Land Use - Proposed", + "optionsLabelPosition": "right", + "tableView": false, + "defaultValue": { + "industrialLandUseIl": false, + "commercialLandUseCl": false, + "residentialLandUseHighDensityRlhd": false, + "residentialLandUseLowDensityRlld": false, + "urbanParkLandUsePl": false, + "agriculturalLandUseAl": false, + "wildlandsNaturalLandUseWln": false, + "wildlandsRevertedLandUseWlr": false, + "other": false + }, + "values": [ + { + "label": "Industrial Land Use (IL)", + "value": "industrialLandUseIl", + "shortcut": "" + }, + { + "label": "Commercial Land Use (CL)", + "value": "commercialLandUseCl", + "shortcut": "" + }, + { + "label": "Residential Land Use High Density (RLHD)", + "value": "residentialLandUseHighDensityRlhd", + "shortcut": "" + }, + { + "label": "Residential Land Use Low Density (RLLD)", + "value": "residentialLandUseLowDensityRlld", + "shortcut": "" + }, + { + "label": "Urban Park Land Use (PL)", + "value": "urbanParkLandUsePl", + "shortcut": "" + }, + { + "label": "Agricultural Land Use (AL)", + "value": "agriculturalLandUseAl", + "shortcut": "" + }, + { + "label": "Wildlands Natural Land Use (WLN)", + "value": "wildlandsNaturalLandUseWln", + "shortcut": "" + }, + { + "label": "Wildlands Reverted Land Use (WLR)", + "value": "wildlandsRevertedLandUseWlr", + "shortcut": "" + }, + { + "label": "Other", + "value": "other", + "shortcut": "" + } + ], + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "onlyAvailableItems": false + }, + "key": "csrLandUseProposed", + "type": "selectboxes", + "input": true, + "inputType": "checkbox", + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "fieldSet": false, + "inline": false, + "id": "ehtn49" + }, + { + "label": "If 'Other' is specified above, please explain: (e.g. applicable or excluded guidance, protocols or policies specific to the site)", + "autoExpand": false, + "tableView": true, + "key": "ifOtherIsSpecifiedAbovePleaseExplainEGApplicableOrExcludedGuidanceProtocolsOrPoliciesSpecificToTheSite1", + "conditional": { + "show": true, + "when": "csrLandUseProposed", + "eq": "other" + }, + "type": "textarea", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "", + "minWords": "", + "maxWords": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "html", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "rows": 3, + "wysiwyg": false, + "editor": "", + "fixedSize": true, + "id": "ewle16h" + }, + { + "label": "Notes: If 'Other' standards selected above, provide rationale for why a typical standard does not apply:", + "autoExpand": false, + "tableView": true, + "key": "notesIfOtherStandardsSelectedAboveProvideRationaleForWhyATypicalStandardDoesNotApply1", + "conditional": { + "show": true, + "when": "csrLandUseProposed", + "eq": "other" + }, + "type": "textarea", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "", + "minWords": "", + "maxWords": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "html", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "rows": 3, + "wysiwyg": false, + "editor": "", + "fixedSize": true, + "id": "emkd1y" + }, + { + "label": "Have Protocol 2 site-specific standards been applied?", + "optionsLabelPosition": "right", + "inline": false, + "tableView": false, + "values": [ + { + "label": "Yes", + "value": "yes", + "shortcut": "" + }, + { + "label": "No", + "value": "no", + "shortcut": "" + } + ], + "key": "haveProtocol2SiteSpecificStandardsBeenApplied1", + "type": "radio", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "onlyAvailableItems": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "inputType": "radio", + "fieldSet": false, + "id": "eq1wesd" + }, + { + "label": "Note: If P2 site-specific numerical standards selected above, identify the substance and provide rationale for application of the site-specific numerical standard.", + "autoExpand": false, + "tableView": true, + "key": "noteIfP2SiteSpecificNumericalStandardsSelectedAboveIdentifyTheSubstanceAndProvideRationaleForApplicationOfTheSiteSpecificNumericalStandard1", + "type": "textarea", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "", + "minWords": "", + "maxWords": "" + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "html", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "rows": 3, + "wysiwyg": false, + "editor": "", + "fixedSize": true, + "id": "eo1fmv" + }, + { + "label": "Have Protocol 4 site-specific standards been applied?", + "optionsLabelPosition": "right", + "inline": false, + "tableView": false, + "values": [ + { + "label": "Yes", + "value": "yes", + "shortcut": "" + }, + { + "label": "No", + "value": "no", + "shortcut": "" + } + ], + "key": "haveProtocol4SiteSpecificStandardsBeenApplied2", + "type": "radio", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "onlyAvailableItems": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "inputType": "radio", + "fieldSet": false, + "id": "em04tuv" + }, + { + "label": "Note: If P4 background selected above, provide rationale for why the background concentration applies.", + "autoExpand": false, + "tableView": true, + "key": "noteIfP4BackgroundSelectedAboveProvideRationaleForWhyTheBackgroundConcentrationApplies1", + "type": "textarea", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "", + "minWords": "", + "maxWords": "" + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "html", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "rows": 3, + "wysiwyg": false, + "editor": "", + "fixedSize": true, + "id": "e736awck" + }, + { + "label": "Does more than one land use apply at this site?", + "optionsLabelPosition": "right", + "inline": false, + "tableView": false, + "values": [ + { + "label": "Yes", + "value": "yes", + "shortcut": "" + }, + { + "label": "No", + "value": "no", + "shortcut": "" + } + ], + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "onlyAvailableItems": false + }, + "key": "multipleLandUse", + "type": "radio", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "inputType": "radio", + "fieldSet": false, + "id": "erk6myf" + }, + { + "label": "If more than one land use applies to the site, specify additional land uses covered by the document, i.e., riparian areas, roadways, etc. include a diagram to clearly show the area(s) with different standards.", + "autoExpand": false, + "tableView": true, + "key": "ifMoreThanOneLandUseAppliesToTheSiteSpecifyAdditionalLandUsesCoveredByTheDocumentIERiparianAreasRoadwaysEtcIncludeADiagramToClearlyShowTheAreaSWithDifferentStandards1", + "conditional": { + "show": true, + "when": "multipleLandUse", + "eq": "yes" + }, + "type": "textarea", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "", + "minWords": "", + "maxWords": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "html", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "rows": 3, + "wysiwyg": false, + "editor": "", + "fixedSize": true, + "id": "e339galn" + }, + { + "label": "Attention: attach diagram if more than one land use applies", + "tableView": false, + "defaultValue": false, + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "key": "attentionAttachDiagramIfMoreThanOneLandUseApplies1", + "conditional": { + "show": true, + "when": "multipleLandUse", + "eq": "yes" + }, + "type": "checkbox", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": true, + "labelPosition": "right", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "inputType": "checkbox", + "value": "", + "name": "", + "id": "enw2hzm" + }, + { + "html": "

Offsite Impacted Property(ies) / Management Area Land Use

", + "label": "Content", + "refreshOnChange": false, + "key": "content16", + "type": "content", + "input": false, + "tableView": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "id": "er8zxoq" + }, + { + "label": "CSR Land Use - Current", + "optionsLabelPosition": "right", + "tableView": false, + "defaultValue": { + "industrialLandUseIl": false, + "commercialLandUseCl": false, + "residentialLandUseHighDensityRlhd": false, + "residentialLandUseLowDensityRlld": false, + "urbanParkLandUsePl": false, + "agriculturalLandUseAl": false, + "wildlandsNaturalLandUseWln": false, + "wildlandsRevertedLandUseWlr": false, + "other": false + }, + "values": [ + { + "label": "Industrial Land Use (IL)", + "value": "industrialLandUseIl", + "shortcut": "" + }, + { + "label": "Commercial Land Use (CL)", + "value": "commercialLandUseCl", + "shortcut": "" + }, + { + "label": "Residential Land Use High Density (RLHD)", + "value": "residentialLandUseHighDensityRlhd", + "shortcut": "" + }, + { + "label": "Residential Land Use Low Density (RLLD)", + "value": "residentialLandUseLowDensityRlld", + "shortcut": "" + }, + { + "label": "Urban Park Land Use (PL)", + "value": "urbanParkLandUsePl", + "shortcut": "" + }, + { + "label": "Agricultural Land Use (AL)", + "value": "agriculturalLandUseAl", + "shortcut": "" + }, + { + "label": "Wildlands Natural Land Use (WLN)", + "value": "wildlandsNaturalLandUseWln", + "shortcut": "" + }, + { + "label": "Wildlands Reverted Land Use (WLR)", + "value": "wildlandsRevertedLandUseWlr", + "shortcut": "" + }, + { + "label": "Other", + "value": "other", + "shortcut": "" + } + ], + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "onlyAvailableItems": false + }, + "key": "csrLandUseCurrentImpacted", + "type": "selectboxes", + "input": true, + "inputType": "checkbox", + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "fieldSet": false, + "inline": false, + "id": "e4z13y" + }, + { + "label": "If 'other' is specified above, please explain: (e.g. applicable or excluded guidance, protocols or policies specific to the site)", + "autoExpand": false, + "tableView": true, + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "", + "minWords": "", + "maxWords": "" + }, + "key": "ifOtherIsSpecifiedAbovePleaseExplainEGApplicableOrExcludedGuidanceProtocolsOrPoliciesSpecificToTheSite2", + "conditional": { + "show": true, + "when": "csrLandUseCurrentImpacted", + "eq": "other" + }, + "type": "textarea", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "html", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "rows": 3, + "wysiwyg": false, + "editor": "", + "fixedSize": true, + "id": "esytwkl" + }, + { + "label": "Notes: provide rationale for why a typical standard does not apply", + "autoExpand": false, + "tableView": true, + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "", + "minWords": "", + "maxWords": "" + }, + "key": "ifOtherIsSpecifiedAbovePleaseExplainEGApplicableOrExcludedGuidanceProtocolsOrPoliciesSpecificToTheSite3", + "conditional": { + "show": true, + "when": "csrLandUseCurrentImpacted", + "eq": "other" + }, + "type": "textarea", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "html", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "rows": 3, + "wysiwyg": false, + "editor": "", + "fixedSize": true, + "id": "ey5bxu7" + }, + { + "label": "Have Protocol 2 site-specific standards been applied?", + "optionsLabelPosition": "right", + "inline": false, + "tableView": false, + "values": [ + { + "label": "Yes", + "value": "yes", + "shortcut": "" + }, + { + "label": "No", + "value": "no", + "shortcut": "" + } + ], + "key": "haveProtocol2SiteSpecificStandardsBeenApplied2", + "type": "radio", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "onlyAvailableItems": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "inputType": "radio", + "fieldSet": false, + "id": "eks5u89" + }, + { + "label": "Note: If P2 site-specific numerical standards selected above, identify the substance and provide rationale for application of the site-specific numerical standard.", + "autoExpand": false, + "tableView": true, + "key": "noteIfP2SiteSpecificNumericalStandardsSelectedAboveIdentifyTheSubstanceAndProvideRationaleForApplicationOfTheSiteSpecificNumericalStandard2", + "type": "textarea", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "", + "minWords": "", + "maxWords": "" + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "html", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "rows": 3, + "wysiwyg": false, + "editor": "", + "fixedSize": true, + "id": "eveexvi" + }, + { + "label": "Have Protocol 4 site-specific standards been applied?", + "optionsLabelPosition": "right", + "inline": false, + "tableView": false, + "values": [ + { + "label": "Yes", + "value": "yes", + "shortcut": "" + }, + { + "label": "No", + "value": "no", + "shortcut": "" + } + ], + "key": "haveProtocol4SiteSpecificStandardsBeenApplied4", + "type": "radio", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "onlyAvailableItems": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "inputType": "radio", + "fieldSet": false, + "id": "ecl4kdi" + }, + { + "label": "Note: If P4 background selected above, provide rationale for why the background concentration applies.", + "autoExpand": false, + "tableView": true, + "key": "noteIfP4BackgroundSelectedAboveProvideRationaleForWhyTheBackgroundConcentrationApplies2", + "type": "textarea", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "", + "minWords": "", + "maxWords": "" + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "html", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "rows": 3, + "wysiwyg": false, + "editor": "", + "fixedSize": true, + "id": "e1vwxs" + }, + { + "html": "

Groundwater (CSR Schedule 3.2)

", + "label": "Content", + "refreshOnChange": false, + "key": "content17", + "type": "content", + "input": false, + "tableView": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "id": "e47bqcv" + }, + { + "label": "Do groundwater standards apply at your site?", + "optionsLabelPosition": "right", + "inline": false, + "tableView": false, + "values": [ + { + "label": "Yes", + "value": "yes", + "shortcut": "" + }, + { + "label": "No", + "value": "no", + "shortcut": "" + } + ], + "key": "doGroundwaterStandardsApplyAtYourSite", + "type": "radio", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "onlyAvailableItems": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "inputType": "radio", + "fieldSet": false, + "id": "eh13wx" + }, + { + "html": "

Groundwater

", + "label": "Content", + "refreshOnChange": false, + "key": "content18", + "type": "content", + "input": false, + "tableView": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "id": "eqg5o7" + }, + { + "label": "Select all that apply ", + "optionsLabelPosition": "right", + "tableView": false, + "values": [ + { + "label": "Aquatic Life (AW) Fresh", + "value": "aquaticLifeAwFresh", + "shortcut": "" + }, + { + "label": "Aquatic Life (AW) Marine", + "value": "aquaticLifeAwMarine", + "shortcut": "" + }, + { + "label": "Irrigation (IW)", + "value": "irrigationIw", + "shortcut": "" + }, + { + "label": "Livestock (LW)", + "value": "livestockLw", + "shortcut": "" + }, + { + "label": "Drinking Water (DW)", + "value": "drinkingWaterDw", + "shortcut": "" + }, + { + "label": "No Water Use", + "value": "noWaterUse", + "shortcut": "" + } + ], + "key": "selectAllThatApply", + "type": "selectboxes", + "input": true, + "inputType": "checkbox", + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "onlyAvailableItems": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "fieldSet": false, + "inline": false, + "id": "en2a4pq" + }, + { + "label": "Has a Protocol 9 background concentration been applied? ", + "optionsLabelPosition": "right", + "inline": false, + "tableView": false, + "values": [ + { + "label": "Yes", + "value": "yes", + "shortcut": "" + }, + { + "label": "No", + "value": "no", + "shortcut": "" + } + ], + "key": "hasAProtocol9BackgroundConcentrationBeenApplied", + "type": "radio", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "onlyAvailableItems": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "inputType": "radio", + "fieldSet": false, + "id": "eimpdh" + }, + { + "label": "Notes: If Protocol 9 background concentration selected, provide rationale for why the background concentration applies.", + "autoExpand": false, + "tableView": true, + "key": "notesIfProtocol9BackgroundConcentrationSelectedProvideRationaleForWhyTheBackgroundConcentrationApplies", + "type": "textarea", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "", + "minWords": "", + "maxWords": "" + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "html", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "rows": 3, + "wysiwyg": false, + "editor": "", + "fixedSize": true, + "id": "e5tilj" + }, + { + "html": "

Surface water (BC Approved Water Quality Guidelines) 

", + "label": "Content", + "refreshOnChange": false, + "key": "content19", + "type": "content", + "input": false, + "tableView": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "id": "eja0cs8" + }, + { + "label": "Do surface water guidelines apply at your site? ", + "optionsLabelPosition": "right", + "inline": false, + "tableView": false, + "values": [ + { + "label": "Yes", + "value": "yes", + "shortcut": "" + }, + { + "label": "No", + "value": "no", + "shortcut": "" + } + ], + "key": "surfaceWaterGuidelinesApply", + "type": "radio", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "onlyAvailableItems": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "inputType": "radio", + "fieldSet": false, + "id": "e6ew7lk" + }, + { + "label": "Select all that apply", + "optionsLabelPosition": "right", + "tableView": false, + "values": [ + { + "label": "Ambient freshwater", + "value": "ambientFreshwater", + "shortcut": "" + }, + { + "label": "Ambient marine", + "value": "ambientMarine", + "shortcut": "" + }, + { + "label": "Not Applicable", + "value": "notApplicable", + "shortcut": "" + } + ], + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "onlyAvailableItems": false + }, + "key": "selectAllThatApply1", + "type": "selectboxes", + "input": true, + "inputType": "checkbox", + "defaultValue": { + "ambientFreshwater": false, + "ambientMarine": false, + "notApplicable": false + }, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "fieldSet": false, + "inline": false, + "id": "el4jtnu" + }, + { + "html": "

Vapour (CSR Schedule 3.3)

", + "label": "Content", + "refreshOnChange": false, + "key": "content20", + "type": "content", + "input": false, + "tableView": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "id": "ek320f" + }, + { + "label": "Do vapour standards apply at your site?", + "optionsLabelPosition": "right", + "inline": false, + "tableView": false, + "values": [ + { + "label": "Yes", + "value": "yes", + "shortcut": "" + }, + { + "label": "No", + "value": "no", + "shortcut": "" + } + ], + "key": "vapourStandardsApply", + "type": "radio", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "onlyAvailableItems": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "inputType": "radio", + "fieldSet": false, + "id": "ehz6d3p" + }, + { + "label": "Please indicate all that apply:", + "optionsLabelPosition": "right", + "tableView": false, + "values": [ + { + "label": "Agricultural, Urban park, Residential use (AL, PL, RL)", + "value": "agriculturalUrbanParkResidentialUseAlPlRl", + "shortcut": "" + }, + { + "label": "Commercial use (CL)", + "value": "commercialUseCl", + "shortcut": "" + }, + { + "label": "Industrial use (IL)", + "value": "industrialUseIl", + "shortcut": "" + }, + { + "label": "Parkade", + "value": "parkade", + "shortcut": "" + }, + { + "label": "Other", + "value": "other", + "shortcut": "" + } + ], + "key": "pleaseIndicateAllThatApply", + "type": "selectboxes", + "input": true, + "inputType": "checkbox", + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "onlyAvailableItems": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "fieldSet": false, + "inline": false, + "id": "e2uphxt" + }, + { + "label": "Notes: if other is specified above, include description of assumptions for both current and future development of the site that the selected vapour attenuation factors are based on.", + "autoExpand": false, + "tableView": true, + "key": "notesIfOtherIsSpecifiedAboveIncludeDescriptionOfAssumptionsForBothCurrentAndFutureDevelopmentOfTheSiteThatTheSelectedVapourAttenuationFactorsAreBasedOn", + "type": "textarea", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "", + "minWords": "", + "maxWords": "" + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "html", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "rows": 3, + "wysiwyg": false, + "editor": "", + "fixedSize": true, + "id": "eapxfka" + }, + { + "html": "

Sediment (CSR Schedule 3.4)

", + "label": "Content", + "refreshOnChange": false, + "key": "content21", + "type": "content", + "input": false, + "tableView": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "id": "emfcc6" + }, + { + "label": "Do sediment standards apply at your site?", + "optionsLabelPosition": "right", + "inline": false, + "tableView": false, + "values": [ + { + "label": "Yes", + "value": "yes", + "shortcut": "" + }, + { + "label": "No", + "value": "no", + "shortcut": "" + } + ], + "key": "sedimentStandardsApply", + "type": "radio", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "onlyAvailableItems": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "inputType": "radio", + "fieldSet": false, + "id": "ep179tu" + }, + { + "html": "

Sediment

", + "label": "Content", + "refreshOnChange": false, + "key": "content25", + "type": "content", + "input": false, + "tableView": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "id": "eefkhsr" + }, + { + "html": "

Type of aquatic life:

", + "label": "Content", + "refreshOnChange": false, + "key": "content22", + "type": "content", + "input": false, + "tableView": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "id": "e3thv5" + }, + { + "label": "Freshwater", + "optionsLabelPosition": "right", + "inline": false, + "tableView": false, + "values": [ + { + "label": "Yes", + "value": "yes", + "shortcut": "" + }, + { + "label": "No", + "value": "no", + "shortcut": "" + } + ], + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "onlyAvailableItems": false + }, + "key": "aquaticLifeFreshwater", + "type": "radio", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "inputType": "radio", + "fieldSet": false, + "id": "eiorz7g" + }, + { + "label": "Marine/Estuarine", + "optionsLabelPosition": "right", + "inline": false, + "tableView": false, + "values": [ + { + "label": "Yes", + "value": "yes", + "shortcut": "" + }, + { + "label": "No", + "value": "no", + "shortcut": "" + } + ], + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "onlyAvailableItems": false + }, + "key": "aquaticLifeMarineEstuarine", + "type": "radio", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "inputType": "radio", + "fieldSet": false, + "id": "ejh5scg" + }, + { + "html": "

Type of Habitat:

", + "label": "Content", + "refreshOnChange": false, + "key": "content23", + "type": "content", + "input": false, + "tableView": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "id": "ep3ei0k" + }, + { + "label": "Sensitive", + "optionsLabelPosition": "right", + "inline": false, + "tableView": false, + "values": [ + { + "label": "Yes", + "value": "yes", + "shortcut": "" + }, + { + "label": "No", + "value": "no", + "shortcut": "" + } + ], + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "onlyAvailableItems": false + }, + "key": "sensitive", + "type": "radio", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "inputType": "radio", + "fieldSet": false, + "id": "ey1i3fk" + }, + { + "label": "Typical", + "optionsLabelPosition": "right", + "inline": false, + "tableView": false, + "values": [ + { + "label": "Yes", + "value": "yes", + "shortcut": "" + }, + { + "label": "No", + "value": "no", + "shortcut": "" + } + ], + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "onlyAvailableItems": false + }, + "key": "typical", + "type": "radio", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "inputType": "radio", + "fieldSet": false, + "id": "ehliufd" + } + ], + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "clearOnHide": false, + "refreshOn": "", + "redrawOn": "", + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "tree": false, + "lazyLoad": false, + "id": "ezpn8f" + }, + { + "title": "SECTION V - Areas of Potential Environmental Concern (APEC) and Potential Contaminants of Concern (PCOC) Summary", + "theme": "default", + "tooltip": "", + "customClass": "", + "collapsible": false, + "hidden": false, + "hideLabel": false, + "disabled": false, + "modalEdit": false, + "key": "sectionVAreasOfPotentialEnvironmentalConcernApecAndPotentialContaminantsOfConcernPcocSummary", + "tags": [], + "properties": {}, + "customConditional": "", + "conditional": { + "json": "", + "show": true, + "when": "hasAnApprovalInPrincipalAiPBeenIssuedForThisSite", + "eq": "false" + }, + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "panel", + "label": "Panel", + "breadcrumb": "default", + "tabindex": "", + "input": false, + "tableView": false, + "components": [ + { + "html": "

Provide reference to a figure showing onsite and offsite APECs and PCOCs associated with each APEC 

", + "label": "Content", + "refreshOnChange": false, + "key": "content24", + "type": "content", + "input": false, + "tableView": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "id": "ep4sdn" + }, + { + "label": "add additional entries as necessary:", + "reorder": false, + "addAnotherPosition": "bottom", + "layoutFixed": false, + "enableRowGroups": false, + "initEmpty": false, + "tableView": false, + "defaultValue": [ + { + "report": "", + "figure": "", + "page": "" + } + ], + "key": "dataGrid3", + "type": "datagrid", + "input": true, + "components": [ + { + "title": "References", + "collapsible": false, + "key": "references", + "type": "panel", + "label": "", + "input": false, + "tableView": false, + "components": [ + { + "label": "Report #", + "tableView": true, + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "key": "report", + "type": "textfield", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "e42c3ej" + }, + { + "label": "Figure #", + "tableView": true, + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "key": "figure", + "type": "textfield", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "e1sgs7i" + }, + { + "label": "Page #", + "tableView": true, + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "key": "page", + "type": "textfield", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "es5kcwo" + } + ], + "id": "egwgsw0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "hidden": false, + "clearOnHide": false, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "tree": false, + "lazyLoad": false, + "theme": "default", + "breadcrumb": "default" + } + ], + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "tree": true, + "lazyLoad": false, + "disableAddingRemovingRows": false, + "id": "e7yn7b9" + }, + { + "html": "

Attention:

Include reports listed above outlining APECs and PCOCs

", + "label": "Content", + "refreshOnChange": false, + "key": "content26", + "type": "content", + "input": false, + "tableView": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "id": "ek43j2" + }, + { + "label": "I acknowledge that I will include reports as listed above ", + "tableView": false, + "key": "iAcknowledgeThatIWillIncludeReportsAsListedAbove", + "type": "checkbox", + "input": true, + "defaultValue": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": true, + "labelPosition": "right", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "inputType": "checkbox", + "value": "", + "name": "", + "id": "e7orccq" + }, + { + "html": "

APEC and PCOC Summary

 

APEC Description: Describe location in relation to process source, waste, fill, land use or activity, etc., giving rise to APEC and if APEC is primarily due to soil or water contamination.

PCOC : Indicate products, chemicals, waste type, etc. and / or analytical parameter.

APEC and PCOC summary: List individual substances or groups of substances and their Chemical Abstract Service Numbers as they appear in the applicable schedule of the CSR. Attach lists or tables as needed.

", + "label": "Content", + "refreshOnChange": false, + "key": "content27", + "type": "content", + "input": false, + "tableView": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "id": "el9sxmn" + }, + { + "label": "", + "reorder": false, + "addAnotherPosition": "bottom", + "layoutFixed": false, + "enableRowGroups": false, + "initEmpty": false, + "tableView": false, + "defaultValue": [ + { + "apec": "", + "apecDescription": "", + "pcocS": "", + "pleaseIndicateWhereAnalysesCompleted": { + "soil": false, + "sediment": false, + "groundwater": false, + "surfaceWater": false, + "vapour": false, + "otherPleaseExplainBelow": false, + "other": false + } + } + ], + "key": "dataGrid4", + "type": "datagrid", + "input": true, + "components": [ + { + "title": "Summary", + "collapsible": false, + "key": "summary", + "type": "panel", + "label": "Summaries", + "input": false, + "tableView": false, + "components": [ + { + "label": "APEC #", + "tableView": true, + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "key": "apec", + "type": "textfield", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "ey16rue" + }, + { + "label": "APEC Description", + "autoExpand": false, + "tableView": true, + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "", + "minWords": "", + "maxWords": "" + }, + "key": "apecDescription", + "type": "textarea", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "html", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "rows": 3, + "wysiwyg": false, + "editor": "", + "fixedSize": true, + "id": "euv345s" + }, + { + "label": "PCOC(s)", + "tableView": true, + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "key": "pcocS", + "type": "textfield", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "e7sbcyi" + }, + { + "label": "Please indicate where analyses completed:", + "optionsLabelPosition": "right", + "tableView": false, + "values": [ + { + "label": "Soil", + "value": "soil", + "shortcut": "" + }, + { + "label": "Sediment", + "value": "sediment", + "shortcut": "" + }, + { + "label": "Groundwater", + "value": "groundwater", + "shortcut": "" + }, + { + "label": "Surface Water", + "value": "surfaceWater", + "shortcut": "" + }, + { + "label": "Vapour", + "value": "vapour", + "shortcut": "" + }, + { + "label": "Other (Please explain below)", + "value": "other", + "shortcut": "" + } + ], + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "onlyAvailableItems": false + }, + "key": "pleaseIndicateWhereAnalysesCompleted", + "type": "selectboxes", + "input": true, + "inputType": "checkbox", + "defaultValue": { + "soil": false, + "sediment": false, + "groundwater": false, + "surfaceWater": false, + "vapour": false, + "otherPleaseExplainBelow": false, + "other": false + }, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "fieldSet": false, + "inline": false, + "id": "eg618ak" + }, + { + "label": "'Other' explanation", + "autoExpand": false, + "tableView": true, + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "", + "minWords": "", + "maxWords": "" + }, + "key": "otherExplanation", + "conditional": { + "show": true, + "when": "pleaseIndicateWhereAnalysesCompleted", + "eq": "other" + }, + "type": "textarea", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "html", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "rows": 3, + "wysiwyg": false, + "editor": "", + "fixedSize": true, + "id": "erxxdli" + } + ], + "id": "e09khr20000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "hidden": false, + "clearOnHide": false, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "tree": false, + "lazyLoad": false, + "theme": "default", + "breadcrumb": "default" + } + ], + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "tree": true, + "lazyLoad": false, + "disableAddingRemovingRows": false, + "id": "ei568rj" + } + ], + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "clearOnHide": false, + "refreshOn": "", + "redrawOn": "", + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "tree": false, + "lazyLoad": false, + "id": "e7q3hil" + }, + { + "title": "SECTION VI - Areas of Environmental Concern (AEC) and Contaminants of Concern (COC) Summary", + "theme": "default", + "tooltip": "", + "customClass": "", + "collapsible": false, + "hidden": false, + "hideLabel": false, + "disabled": false, + "modalEdit": false, + "key": "sectionViAreasOfEnvironmentalConcernAecAndContaminantsOfConcernCocSummary", + "tags": [], + "properties": {}, + "customConditional": "", + "conditional": { + "json": "", + "show": true, + "when": "hasAnApprovalInPrincipalAiPBeenIssuedForThisSite", + "eq": "false" + }, + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "panel", + "label": "Panel", + "breadcrumb": "default", + "tabindex": "", + "input": false, + "tableView": false, + "components": [ + { + "html": "

Stage 2 Preliminary Site Investigation (PSI) 

Provide reference to figure(s) showing the AEC and COC associated with each AEC in onsite and offsite soil, water, sediment and/or vapour. Sample locations and corresponding analytical results shall be shown on each figure and in tabular form with reference to applicable standards:

", + "label": "Content", + "refreshOnChange": false, + "key": "content28", + "type": "content", + "input": false, + "tableView": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "id": "e348r8u" + }, + { + "label": "", + "reorder": false, + "addAnotherPosition": "bottom", + "layoutFixed": false, + "enableRowGroups": false, + "initEmpty": false, + "hideLabel": true, + "tableView": false, + "defaultValue": [ + { + "environmentalMedium": "", + "report": "", + "page": "", + "figure": "" + } + ], + "key": "dataGrid5", + "type": "datagrid", + "input": true, + "components": [ + { + "title": "Summary", + "collapsible": false, + "key": "summary", + "type": "panel", + "label": "AEC and COC Summary", + "input": false, + "tableView": false, + "components": [ + { + "label": "Environmental Medium", + "tableView": true, + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "key": "environmentalMedium", + "type": "textfield", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "emrnwt" + }, + { + "label": "Report #", + "tableView": true, + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "key": "report", + "type": "textfield", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "ezjgbqk" + }, + { + "label": "Page #", + "tableView": true, + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "key": "page", + "type": "textfield", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "e93qh3o" + }, + { + "label": "Figure #", + "tableView": true, + "key": "figure", + "type": "textfield", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "eu9o53q" + } + ], + "id": "eipn9d000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "hidden": false, + "clearOnHide": false, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "tree": false, + "lazyLoad": false, + "theme": "default", + "breadcrumb": "default" + } + ], + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "tree": true, + "lazyLoad": false, + "disableAddingRemovingRows": false, + "id": "enyqev" + }, + { + "html": "

Detailed Site Investigation (DSI) 

Provide references to figures (plan and section), with contours, showing the specific lateral and vertical distribution of each contaminant of concern in onsite and offsite soil, sediment, water and vapour. Sections shall be longitudinal and transverse with respect to groundwater flow and include physical conditions (e.g. stratigraphy, water table etc.). Sample locations with corresponding analytical results used to develop each figure shall be shown on the figure and in tabular form with reference to applicable standards:

", + "label": "Content", + "refreshOnChange": false, + "key": "content29", + "type": "content", + "input": false, + "tableView": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "id": "egzo5zb" + }, + { + "label": "", + "reorder": false, + "addAnotherPosition": "bottom", + "layoutFixed": false, + "enableRowGroups": false, + "initEmpty": false, + "hideLabel": true, + "tableView": false, + "defaultValue": [ + { + "environmentalMedium": "", + "report": "", + "page": "", + "figure": "" + } + ], + "key": "dataGrid6", + "type": "datagrid", + "input": true, + "components": [ + { + "title": "", + "collapsible": false, + "key": "summary", + "type": "panel", + "label": "AEC and COC Summary", + "input": false, + "tableView": false, + "components": [ + { + "label": "Environmental Medium", + "tableView": true, + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "key": "environmentalMedium", + "type": "textfield", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "edmm3sb" + }, + { + "label": "Report #", + "tableView": true, + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "key": "report", + "type": "textfield", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "e3mvybo" + }, + { + "label": "Page #", + "tableView": true, + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "key": "page", + "type": "textfield", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "eknllaa" + }, + { + "label": "Figure #", + "tableView": true, + "key": "figure", + "type": "textfield", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "ef617zf" + } + ], + "id": "ebh60il000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "hidden": false, + "clearOnHide": false, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "tree": false, + "lazyLoad": false, + "theme": "default", + "breadcrumb": "default" + } + ], + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "tree": true, + "lazyLoad": false, + "disableAddingRemovingRows": false, + "id": "e5mao0a" + }, + { + "html": "

AEC/APEC and COC Extent of Contamination

", + "label": "Content", + "refreshOnChange": false, + "key": "content30", + "type": "content", + "input": false, + "tableView": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "id": "e0havy" + }, + { + "label": "", + "reorder": false, + "addAnotherPosition": "bottom", + "layoutFixed": false, + "enableRowGroups": false, + "initEmpty": false, + "hideLabel": true, + "tableView": false, + "defaultValue": [ + { + "aecApecUseSameSAsForApeCsInTableAbove": "", + "coc": "", + "mediumEGSoilGroundwaterSedimentVapourSurfaceWaterOther": "", + "maxMeasuredConcentrationIndicateUnits": "", + "areaM": "", + "depthRangeM": "", + "notes1": "" + } + ], + "key": "dataGrid7", + "type": "datagrid", + "input": true, + "components": [ + { + "title": "", + "collapsible": false, + "key": "panel8", + "type": "panel", + "label": "", + "input": false, + "tableView": false, + "components": [ + { + "label": "AEC/APEC: Use same #s as for APECs in table above", + "tableView": true, + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "key": "aecApecUseSameSAsForApeCsInTableAbove", + "type": "textfield", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "e99tie4" + }, + { + "label": "COC", + "tableView": true, + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "key": "coc", + "type": "textfield", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "eo9g8ms" + }, + { + "label": "Medium", + "placeholder": "e.g. soil, groundwater, sediment, vapour, surface water, other", + "tableView": true, + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "key": "mediumEGSoilGroundwaterSedimentVapourSurfaceWaterOther", + "type": "textfield", + "input": true, + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "erqoauyy" + }, + { + "label": "Max Measured Concentration (indicate units)", + "tableView": true, + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "key": "maxMeasuredConcentrationIndicateUnits", + "type": "textfield", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "eqfcnt7" + }, + { + "label": "Area (m²)", + "tableView": true, + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "key": "areaM", + "type": "textfield", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "ecx8h8h" + }, + { + "label": "Depth Range (m)", + "tableView": true, + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "key": "depthRangeM", + "type": "textfield", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "evgae2q" + }, + { + "label": "Notes", + "placeholder": "e.g. site type, classification, relevant approvals, etc.", + "autoExpand": false, + "tableView": true, + "key": "notes2", + "type": "textarea", + "input": true, + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "", + "minWords": "", + "maxWords": "" + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "html", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "rows": 3, + "wysiwyg": false, + "editor": "", + "fixedSize": true, + "id": "eak2oy8" + } + ], + "id": "evgsijp000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "hidden": false, + "clearOnHide": false, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "tree": false, + "lazyLoad": false, + "theme": "default", + "breadcrumb": "default" + } + ], + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "tree": true, + "lazyLoad": false, + "disableAddingRemovingRows": false, + "id": "e3pfzbj" + } + ], + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "clearOnHide": false, + "refreshOn": "", + "redrawOn": "", + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "tree": false, + "lazyLoad": false, + "id": "e1tcxwk" + }, + { + "title": "SECTION VII - Offsite Migration", + "collapsible": false, + "key": "sectionViiOffsiteMigration", + "conditional": { + "show": true, + "when": "hasAnApprovalInPrincipalAiPBeenIssuedForThisSite", + "eq": "no" + }, + "type": "panel", + "label": "Panel", + "input": false, + "tableView": false, + "components": [ + { + "label": "Is there evidence that one or more substances has migrated or is likely to have migrated to a neighbouring site and is or is likely causing contamination of the neighbouring property?", + "optionsLabelPosition": "right", + "inline": false, + "tableView": false, + "values": [ + { + "label": "Yes", + "value": "yes", + "shortcut": "" + }, + { + "label": "No", + "value": "no", + "shortcut": "" + } + ], + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "onlyAvailableItems": false + }, + "key": "isThereEvidenceThatOneOrMoreSubstancesHasMigratedOrIsLikelyToHaveMigratedToANeighbouringSiteAndIsOrIsLikelyCausingContaminationOfTheNeighbouringProperty", + "type": "radio", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "inputType": "radio", + "fieldSet": false, + "id": "eyt9j6k" + }, + { + "label": "Has any sampling occurred offsite for PCOCs in any media?", + "optionsLabelPosition": "right", + "inline": false, + "tableView": false, + "values": [ + { + "label": "Yes", + "value": "yes", + "shortcut": "" + }, + { + "label": "No", + "value": "no", + "shortcut": "" + } + ], + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "onlyAvailableItems": false + }, + "key": "hasAnySamplingOccurredOffsiteForPcoCsInAnyMedia", + "type": "radio", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "inputType": "radio", + "fieldSet": false, + "id": "e5kz2pn" + }, + { + "label": "Have preferential pathways been assessed? (including assessment of all neighbouring underground utility rights-of-way)", + "optionsLabelPosition": "right", + "inline": false, + "tableView": false, + "values": [ + { + "label": "Yes", + "value": "yes", + "shortcut": "" + }, + { + "label": "No", + "value": "no", + "shortcut": "" + } + ], + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "onlyAvailableItems": false + }, + "key": "havePreferentialPathwaysBeenAssessedIncludingAssessmentOfAllNeighbouringUndergroundUtilityRightsOfWay", + "type": "radio", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "inputType": "radio", + "fieldSet": false, + "id": "e6fg35s" + }, + { + "title": "", + "collapsible": false, + "hideLabel": true, + "key": "panel3", + "conditional": { + "show": true, + "when": "isThereEvidenceThatOneOrMoreSubstancesHasMigratedOrIsLikelyToHaveMigratedToANeighbouringSiteAndIsOrIsLikelyCausingContaminationOfTheNeighbouringProperty", + "eq": "yes" + }, + "type": "panel", + "label": "Panel", + "input": false, + "tableView": false, + "components": [ + { + "label": "Current offsite transport of contaminants from the site", + "tableView": false, + "key": "currentOffsiteTransportOfContaminantsFromTheSite", + "type": "checkbox", + "input": true, + "defaultValue": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": true, + "labelPosition": "right", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "inputType": "checkbox", + "value": "", + "name": "", + "id": "e75y38c" + }, + { + "label": "Historical offsite transport of contaminants from the site", + "tableView": false, + "defaultValue": false, + "key": "currentOffsiteTransportOfContaminantsFromTheSite1", + "type": "checkbox", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": true, + "labelPosition": "right", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "inputType": "checkbox", + "value": "", + "name": "", + "id": "e2bknmb" + }, + { + "label": "Historical or Current offsite transport of contaminants from the site in:", + "optionsLabelPosition": "right", + "tableView": false, + "defaultValue": { + "groundwater": false, + "surfaceWater": false, + "vapour": false, + "otherExplainBelow": false + }, + "values": [ + { + "label": "Groundwater", + "value": "groundwater", + "shortcut": "" + }, + { + "label": "Surface Water", + "value": "surfaceWater", + "shortcut": "" + }, + { + "label": "Vapour", + "value": "vapour", + "shortcut": "" + }, + { + "label": "Other (explain below)", + "value": "otherExplainBelow", + "shortcut": "" + } + ], + "key": "in", + "type": "selectboxes", + "input": true, + "inputType": "checkbox", + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "onlyAvailableItems": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "fieldSet": false, + "inline": false, + "id": "eon7ijc" + }, + { + "label": "If other, describe environmental media:", + "autoExpand": false, + "tableView": true, + "key": "ifOtherDescribeEnvironmentalMedia", + "type": "textarea", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "", + "minWords": "", + "maxWords": "" + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "html", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "rows": 3, + "wysiwyg": false, + "editor": "", + "fixedSize": true, + "id": "e6tjnc8" + }, + { + "label": "Briefly describe the nature of and evidence for offsite migration (either known, suspected, or potential)", + "autoExpand": false, + "tableView": true, + "key": "brieflyDescribeTheNatureOfAndEvidenceForOffsiteMigrationEitherKnownSuspectedOrPotential", + "type": "textarea", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "", + "minWords": "", + "maxWords": "" + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "html", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "rows": 3, + "wysiwyg": false, + "editor": "", + "fixedSize": true, + "id": "er9735" + }, + { + "label": "The impacted offsite lands are categorized as:", + "optionsLabelPosition": "right", + "tableView": false, + "values": [ + { + "label": "Having a potable groundwater source", + "value": "havingAPotableGroundwaterSource", + "shortcut": "" + }, + { + "label": "Being aquatic habitat, as formally defined", + "value": "beingAquaticHabitatAsFormallyDefined", + "shortcut": "" + }, + { + "label": "Agricultural lands", + "value": "agriculturalLands", + "shortcut": "" + }, + { + "label": "Residential or Urban parklands", + "value": "residentialOrUrbanParklands", + "shortcut": "" + }, + { + "label": "Commercial land", + "value": "commercialLand", + "shortcut": "" + }, + { + "label": "Industrial land", + "value": "industrialLand", + "shortcut": "" + }, + { + "label": "Wildlands", + "value": "wildlands", + "shortcut": "" + } + ], + "key": "theImpactedOffsiteLandsAreCategorizedAs", + "type": "selectboxes", + "input": true, + "inputType": "checkbox", + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "onlyAvailableItems": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "fieldSet": false, + "inline": false, + "id": "e1stkrj" + } + ], + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "hidden": false, + "clearOnHide": false, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "tree": false, + "lazyLoad": false, + "theme": "default", + "breadcrumb": "default", + "id": "en99wz" + } + ], + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "hidden": false, + "clearOnHide": false, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "tree": false, + "lazyLoad": false, + "theme": "default", + "breadcrumb": "default", + "id": "edqxa27" + }, + { + "title": "SECTION VIII - Investigation or Interpretation Issues to be Adressed", + "theme": "default", + "tooltip": "", + "customClass": "", + "collapsible": false, + "hidden": false, + "hideLabel": false, + "disabled": false, + "modalEdit": false, + "key": "sectionViiiInvestigationOrInterpretationIssuesToBeAdressed", + "tags": [], + "properties": {}, + "customConditional": "", + "conditional": { + "json": "", + "show": true, + "when": "hasAnApprovalInPrincipalAiPBeenIssuedForThisSite", + "eq": "false" + }, + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "panel", + "label": "Panel", + "breadcrumb": "default", + "tabindex": "", + "input": false, + "tableView": false, + "components": [ + { + "label": "Identify any issues regarding investigations or interpretations if the PSI and DSI information may not satisfy the requirements of CSR Sections 58 and 59 and applicable protocols and guidance documents. Briefly describe how these deficiencies will be addressed. Enter n/a if not applicable.", + "autoExpand": false, + "tableView": true, + "key": "identifyAnyIssuesRegardingInvestigationsOrInterpretationsIfThePsiAndDsiInformationMayNotSatisfyTheRequirementsOfCsrSections58And59AndApplicableProtocolsAndGuidanceDocumentsBrieflyDescribeHowTheseDeficienciesWillBeAddressedEnterNAIfNotApplicable", + "type": "textarea", + "rows": 5, + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "", + "minWords": "", + "maxWords": "" + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "html", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "wysiwyg": false, + "editor": "", + "fixedSize": true, + "id": "ekbzgj" + } + ], + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "clearOnHide": false, + "refreshOn": "", + "redrawOn": "", + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "tree": false, + "lazyLoad": false, + "id": "edczfu" + }, + { + "html": "

Part 5 - Remediation Summary

", + "label": "Content", + "customClass": "", + "refreshOnChange": false, + "hidden": false, + "modalEdit": false, + "key": "content33", + "tags": [], + "properties": {}, + "conditional": { + "show": null, + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "content", + "input": false, + "tableView": false, + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "id": "etcmt0o" + }, + { + "title": "SECTION I - Remediation Reporting Summary", + "theme": "default", + "tooltip": "", + "customClass": "", + "collapsible": false, + "hidden": false, + "hideLabel": false, + "disabled": false, + "modalEdit": false, + "key": "sectionIRemediationReportingSummary", + "tags": [], + "properties": {}, + "customConditional": "", + "conditional": { + "json": "", + "show": null, + "when": null, + "eq": "" + }, + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "panel", + "label": "Panel", + "breadcrumb": "default", + "tabindex": "", + "input": false, + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "clearOnHide": false, + "refreshOn": "", + "redrawOn": "", + "tableView": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "tree": false, + "lazyLoad": false, + "components": [ + { + "title": "Risk Assessment", + "theme": "default", + "tooltip": "", + "customClass": "", + "collapsible": false, + "hidden": false, + "hideLabel": false, + "disabled": false, + "modalEdit": false, + "key": "riskAssessment", + "tags": [], + "properties": {}, + "customConditional": "", + "conditional": { + "json": "", + "show": null, + "when": null, + "eq": "" + }, + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "panel", + "label": "Panel", + "breadcrumb": "default", + "tabindex": "", + "input": false, + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "clearOnHide": false, + "refreshOn": "", + "redrawOn": "", + "tableView": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "tree": false, + "lazyLoad": false, + "components": [ + { + "label": "Completed?", + "optionsLabelPosition": "right", + "tableView": false, + "values": [ + { + "label": "Yes", + "value": "yes", + "shortcut": "" + }, + { + "label": "No", + "value": "no", + "shortcut": "" + } + ], + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "onlyAvailableItems": false + }, + "key": "completed4", + "type": "radio", + "input": true, + "inputType": "radio", + "defaultValue": { + "yes": false, + "no": false + }, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "fieldSet": false, + "id": "e4gsdhh" + }, + { + "label": "Includes quantitative human health and ecological risk assessment report information or screening level risk assessment per EMA, CSR and current applicable ministry protocols, guidelines, checklists? ", + "optionsLabelPosition": "right", + "tableView": false, + "values": [ + { + "label": "Yes", + "value": "yes", + "shortcut": "" + }, + { + "label": "No", + "value": "no", + "shortcut": "" + }, + { + "label": "N/A", + "value": "nA", + "shortcut": "" + } + ], + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "onlyAvailableItems": false + }, + "key": "includesQuantitativeHumanHealthAndEcologicalRiskAssessmentReportInformationOrScreeningLevelRiskAssessmentPerEmaCsrAndCurrentApplicableMinistryProtocolsGuidelinesChecklists", + "type": "radio", + "input": true, + "inputType": "radio", + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "fieldSet": false, + "id": "ezw7671c" + } + ], + "id": "ejp45z9" + }, + { + "title": "Remediation Plan", + "theme": "default", + "tooltip": "", + "customClass": "", + "collapsible": false, + "hidden": false, + "hideLabel": false, + "disabled": false, + "modalEdit": false, + "key": "riskAssessment1", + "tags": [], + "properties": {}, + "customConditional": "", + "conditional": { + "json": "", + "show": null, + "when": null, + "eq": "" + }, + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "panel", + "label": "Panel", + "breadcrumb": "default", + "tabindex": "", + "input": false, + "tableView": false, + "components": [ + { + "label": "Completed?", + "optionsLabelPosition": "right", + "tableView": false, + "values": [ + { + "label": "Yes", + "value": "yes", + "shortcut": "" + }, + { + "label": "No", + "value": "no", + "shortcut": "" + } + ], + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "onlyAvailableItems": false + }, + "key": "completed5", + "type": "radio", + "input": true, + "inputType": "radio", + "defaultValue": { + "yes": false, + "no": false + }, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "fieldSet": false, + "id": "el5sg7" + }, + { + "label": "Includes CSR specified information for a Remediation Plan (see CSR S.1, 16, 47) and current applicable ministry protocols, guidelines, checklists, etc.?", + "optionsLabelPosition": "right", + "tableView": false, + "values": [ + { + "label": "Yes", + "value": "yes", + "shortcut": "" + }, + { + "label": "No", + "value": "no", + "shortcut": "" + }, + { + "label": "N/A", + "value": "nA", + "shortcut": "" + } + ], + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "onlyAvailableItems": false + }, + "key": "includesQuantitativeHumanHealthAndEcologicalRiskAssessmentReportInformationOrScreeningLevelRiskAssessmentPerEmaCsrAndCurrentApplicableMinistryProtocolsGuidelinesChecklists1", + "type": "radio", + "input": true, + "inputType": "radio", + "defaultValue": { + "yes": false, + "no": false, + "nA": false + }, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "fieldSet": false, + "id": "e8p4jr" + } + ], + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "clearOnHide": false, + "refreshOn": "", + "redrawOn": "", + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "tree": false, + "lazyLoad": false, + "id": "evp1obv" + }, + { + "title": "Confirmation of Remediation", + "theme": "default", + "tooltip": "", + "customClass": "", + "collapsible": false, + "hidden": false, + "hideLabel": false, + "disabled": false, + "modalEdit": false, + "key": "riskAssessment2", + "tags": [], + "properties": {}, + "customConditional": "", + "conditional": { + "json": "", + "show": null, + "when": null, + "eq": "" + }, + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "panel", + "label": "Panel", + "breadcrumb": "default", + "tabindex": "", + "input": false, + "tableView": false, + "components": [ + { + "label": "Completed?", + "optionsLabelPosition": "right", + "tableView": false, + "values": [ + { + "label": "Yes", + "value": "yes", + "shortcut": "" + }, + { + "label": "No", + "value": "no", + "shortcut": "" + } + ], + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "onlyAvailableItems": false + }, + "key": "completed6", + "type": "radio", + "input": true, + "inputType": "radio", + "defaultValue": { + "yes": false, + "no": false + }, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "fieldSet": false, + "id": "ejkw9fd" + }, + { + "label": "Includes CSR specified information (see CSR S.49) and any current applicable ministry protocols, guidelines, checklists for COR reports? ", + "optionsLabelPosition": "right", + "tableView": false, + "defaultValue": { + "yes": false, + "no": false, + "nA": false + }, + "values": [ + { + "label": "Yes", + "value": "yes", + "shortcut": "" + }, + { + "label": "No", + "value": "no", + "shortcut": "" + }, + { + "label": "N/A", + "value": "nA", + "shortcut": "" + } + ], + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "onlyAvailableItems": false + }, + "key": "includesQuantitativeHumanHealthAndEcologicalRiskAssessmentReportInformationOrScreeningLevelRiskAssessmentPerEmaCsrAndCurrentApplicableMinistryProtocolsGuidelinesChecklists2", + "type": "radio", + "input": true, + "inputType": "radio", + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "fieldSet": false, + "id": "ezc4bx5" + } + ], + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "clearOnHide": false, + "refreshOn": "", + "redrawOn": "", + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "tree": false, + "lazyLoad": false, + "id": "eg2f3g" + }, + { + "title": "Other Reports", + "theme": "default", + "tooltip": "", + "customClass": "", + "collapsible": false, + "hidden": false, + "hideLabel": false, + "disabled": false, + "modalEdit": false, + "key": "riskAssessment3", + "tags": [], + "properties": {}, + "customConditional": "", + "conditional": { + "json": "", + "show": null, + "when": null, + "eq": "" + }, + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "panel", + "label": "Panel", + "breadcrumb": "default", + "tabindex": "", + "input": false, + "tableView": false, + "components": [ + { + "label": "Completed?", + "optionsLabelPosition": "right", + "tableView": false, + "values": [ + { + "label": "Yes", + "value": "yes", + "shortcut": "" + }, + { + "label": "No", + "value": "no", + "shortcut": "" + } + ], + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "onlyAvailableItems": false + }, + "key": "completed7", + "type": "radio", + "input": true, + "inputType": "radio", + "defaultValue": { + "yes": false, + "no": false + }, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "fieldSet": false, + "id": "ew6b1fi" + }, + { + "label": "According to other guidelines? (Provide explanation in notes below. Indicate how reports assist understanding of conditions and/or remediation.) ", + "labelPosition": "top", + "optionsLabelPosition": "right", + "description": "", + "tooltip": "", + "customClass": "", + "tabindex": "", + "inline": false, + "hidden": false, + "hideLabel": false, + "autofocus": false, + "disabled": false, + "tableView": false, + "modalEdit": false, + "defaultValue": { + "yes": false, + "no": false, + "nA": false + }, + "values": [ + { + "label": "Yes", + "value": "yes", + "shortcut": "" + }, + { + "label": "No", + "value": "no", + "shortcut": "" + }, + { + "label": "N/A", + "value": "nA", + "shortcut": "" + } + ], + "dataType": "", + "persistent": true, + "protected": false, + "dbIndex": false, + "encrypted": false, + "redrawOn": "", + "clearOnHide": true, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "allowCalculateOverride": false, + "validate": { + "required": true, + "onlyAvailableItems": false, + "customMessage": "", + "custom": "", + "customPrivate": false, + "json": "", + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "errorLabel": "", + "errors": "", + "key": "includesQuantitativeHumanHealthAndEcologicalRiskAssessmentReportInformationOrScreeningLevelRiskAssessmentPerEmaCsrAndCurrentApplicableMinistryProtocolsGuidelinesChecklists3", + "tags": [], + "properties": {}, + "conditional": { + "show": true, + "when": "completed7", + "eq": "yes", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "radio", + "input": true, + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "unique": false, + "refreshOn": "", + "dataGridLabel": false, + "widget": null, + "validateOn": "change", + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "inputType": "radio", + "fieldSet": false, + "id": "e9z694e" + }, + { + "label": "Notes", + "labelPosition": "top", + "placeholder": "", + "description": "", + "tooltip": "", + "prefix": "", + "suffix": "", + "widget": { + "type": "input" + }, + "displayMask": "", + "editor": "", + "autoExpand": false, + "customClass": "", + "tabindex": "", + "autocomplete": "", + "hidden": false, + "hideLabel": false, + "showWordCount": false, + "showCharCount": false, + "autofocus": false, + "spellcheck": true, + "disabled": false, + "tableView": true, + "modalEdit": false, + "multiple": false, + "persistent": true, + "inputFormat": "html", + "protected": false, + "dbIndex": false, + "case": "", + "truncateMultipleSpaces": false, + "encrypted": false, + "redrawOn": "", + "clearOnHide": true, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "allowCalculateOverride": false, + "validateOn": "change", + "validate": { + "required": true, + "pattern": "", + "customMessage": "", + "custom": "", + "customPrivate": false, + "json": "", + "minLength": "", + "maxLength": "", + "minWords": "", + "maxWords": "", + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "unique": false, + "errorLabel": "", + "errors": "", + "key": "notes1", + "tags": [], + "properties": {}, + "conditional": { + "show": true, + "when": "completed7", + "eq": "yes", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "textarea", + "rows": 3, + "wysiwyg": false, + "input": true, + "refreshOn": "", + "dataGridLabel": false, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputMask": "", + "fixedSize": true, + "id": "eirkrzs", + "defaultValue": "" + } + ], + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "clearOnHide": false, + "refreshOn": "", + "redrawOn": "", + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "tree": false, + "lazyLoad": false, + "id": "en3xr0m" + }, + { + "html": "

If completed remediation reports are not adequate or if reports have a different scope than those listed above in accordance with the CSR complete Section 5.6 - Outstanding Remediation Issues.

", + "label": "Content", + "customClass": "", + "refreshOnChange": false, + "hidden": false, + "modalEdit": false, + "key": "content67", + "tags": [], + "properties": {}, + "conditional": { + "show": null, + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "content", + "input": false, + "tableView": false, + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "id": "e4jq65" + } + ], + "id": "e8ipwk5" + }, + { + "title": "SECTION II - Proposed or Completed Remedial Activities", + "theme": "default", + "tooltip": "", + "customClass": "", + "collapsible": false, + "hidden": false, + "hideLabel": false, + "disabled": false, + "modalEdit": false, + "key": "sectionIiProposedOrCompletedRemedialActivities", + "tags": [], + "properties": {}, + "customConditional": "", + "conditional": { + "json": "", + "show": null, + "when": null, + "eq": "" + }, + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "panel", + "label": "Panel", + "breadcrumb": "default", + "tabindex": "", + "input": false, + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "clearOnHide": false, + "refreshOn": "", + "redrawOn": "", + "tableView": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "tree": false, + "lazyLoad": false, + "components": [ + { + "html": "

Describe all aspects of remediation including regulatory actions and activities to comply with numerical and/or risk-based standards

", + "label": "Content", + "customClass": "", + "refreshOnChange": false, + "hidden": false, + "modalEdit": false, + "key": "content35", + "tags": [], + "properties": {}, + "conditional": { + "show": null, + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "content", + "input": false, + "tableView": false, + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "id": "e3pr3l7" + }, + { + "label": "Regulatory: Notification of Independent Remediation, Approval in Principle, Certificate of Compliance, Determination, Restrictive Covenant etc.", + "labelPosition": "top", + "placeholder": "", + "description": "", + "tooltip": "", + "prefix": "", + "suffix": "", + "widget": { + "type": "input" + }, + "displayMask": "", + "editor": "", + "autoExpand": false, + "customClass": "", + "tabindex": "", + "autocomplete": "", + "hidden": false, + "hideLabel": false, + "showWordCount": false, + "showCharCount": false, + "autofocus": false, + "spellcheck": true, + "disabled": false, + "tableView": true, + "modalEdit": false, + "multiple": false, + "persistent": true, + "inputFormat": "html", + "protected": false, + "dbIndex": false, + "case": "", + "truncateMultipleSpaces": false, + "encrypted": false, + "redrawOn": "", + "clearOnHide": true, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "allowCalculateOverride": false, + "validateOn": "change", + "validate": { + "required": true, + "pattern": "", + "customMessage": "", + "custom": "", + "customPrivate": false, + "json": "", + "minLength": "", + "maxLength": "", + "minWords": "", + "maxWords": "", + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "unique": false, + "errorLabel": "", + "errors": "", + "key": "regulatoryNotificationOfIndependentRemediationApprovalInPrincipleCertificateOfComplianceDeterminationRestrictiveCovenantEtc", + "tags": [], + "properties": {}, + "conditional": { + "show": null, + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "textarea", + "rows": 3, + "wysiwyg": false, + "input": true, + "refreshOn": "", + "dataGridLabel": false, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputMask": "", + "fixedSize": true, + "id": "elmoc77", + "defaultValue": "" + }, + { + "label": "If commitments or conditions to be met are included in an Approval in Principle issued for the site, list these conditions and identify how they were met though remedial activities. ", + "labelPosition": "top", + "placeholder": "", + "description": "", + "tooltip": "", + "prefix": "", + "suffix": "", + "widget": { + "type": "input" + }, + "displayMask": "", + "editor": "", + "autoExpand": false, + "customClass": "", + "tabindex": "", + "autocomplete": "", + "hidden": false, + "hideLabel": false, + "showWordCount": false, + "showCharCount": false, + "autofocus": false, + "spellcheck": true, + "disabled": false, + "tableView": true, + "modalEdit": false, + "multiple": false, + "persistent": true, + "inputFormat": "html", + "protected": false, + "dbIndex": false, + "case": "", + "truncateMultipleSpaces": false, + "encrypted": false, + "redrawOn": "", + "clearOnHide": true, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "allowCalculateOverride": false, + "validateOn": "change", + "validate": { + "required": true, + "pattern": "", + "customMessage": "", + "custom": "", + "customPrivate": false, + "json": "", + "minLength": "", + "maxLength": "", + "minWords": "", + "maxWords": "", + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "unique": false, + "errorLabel": "", + "errors": "", + "key": "ifCommitmentsOrConditionsToBeMetAreIncludedInAnApprovalInPrincipleIssuedForTheSiteListTheseConditionsAndIdentifyHowTheyWereMetThoughRemedialActivities", + "tags": [], + "properties": {}, + "conditional": { + "show": null, + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "textarea", + "rows": 3, + "wysiwyg": false, + "input": true, + "refreshOn": "", + "dataGridLabel": false, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputMask": "", + "fixedSize": true, + "id": "eg9hfx", + "defaultValue": "" + }, + { + "label": "Remediation to comply with numerical standards (Excavation / disposal of soil, Treatment of soil; Treatment of groundwater, etc.) ", + "labelPosition": "top", + "placeholder": "", + "description": "", + "tooltip": "", + "prefix": "", + "suffix": "", + "widget": { + "type": "input" + }, + "displayMask": "", + "editor": "", + "autoExpand": false, + "customClass": "", + "tabindex": "", + "autocomplete": "", + "hidden": false, + "hideLabel": false, + "showWordCount": false, + "showCharCount": false, + "autofocus": false, + "spellcheck": true, + "disabled": false, + "tableView": true, + "modalEdit": false, + "multiple": false, + "persistent": true, + "inputFormat": "html", + "protected": false, + "dbIndex": false, + "case": "", + "truncateMultipleSpaces": false, + "encrypted": false, + "redrawOn": "", + "clearOnHide": true, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "allowCalculateOverride": false, + "validateOn": "change", + "validate": { + "required": true, + "pattern": "", + "customMessage": "", + "custom": "", + "customPrivate": false, + "json": "", + "minLength": "", + "maxLength": "", + "minWords": "", + "maxWords": "", + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "unique": false, + "errorLabel": "", + "errors": "", + "key": "remediationToComplyWithNumericalStandardsExcavationDisposalOfSoilTreatmentOfSoilTreatmentOfGroundwaterEtc", + "tags": [], + "properties": {}, + "conditional": { + "show": null, + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "textarea", + "rows": 3, + "wysiwyg": false, + "input": true, + "refreshOn": "", + "dataGridLabel": false, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputMask": "", + "fixedSize": true, + "id": "ed566qt", + "defaultValue": "" + }, + { + "html": "

Screening Level Risk Assessment

", + "label": "Content", + "customClass": "", + "refreshOnChange": false, + "hidden": false, + "modalEdit": false, + "key": "content36", + "tags": [], + "properties": {}, + "conditional": { + "show": null, + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "content", + "input": false, + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "tableView": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "id": "enhsylu" + }, + { + "label": "Intended", + "labelPosition": "top", + "optionsLabelPosition": "right", + "description": "", + "tooltip": "", + "customClass": "", + "tabindex": "", + "inline": false, + "hidden": false, + "hideLabel": false, + "autofocus": false, + "disabled": false, + "tableView": false, + "modalEdit": false, + "values": [ + { + "label": "Yes", + "value": "yes", + "shortcut": "" + }, + { + "label": "No", + "value": "no", + "shortcut": "" + } + ], + "dataType": "", + "persistent": true, + "protected": false, + "dbIndex": false, + "encrypted": false, + "redrawOn": "", + "clearOnHide": true, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "allowCalculateOverride": false, + "validate": { + "required": true, + "onlyAvailableItems": false, + "customMessage": "", + "custom": "", + "customPrivate": false, + "json": "", + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "errorLabel": "", + "errors": "", + "key": "intended", + "tags": [], + "properties": {}, + "conditional": { + "show": null, + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "radio", + "input": true, + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "unique": false, + "refreshOn": "", + "dataGridLabel": false, + "widget": null, + "validateOn": "change", + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "inputType": "radio", + "fieldSet": false, + "id": "egyizxi", + "defaultValue": "" + }, + { + "label": "Carried out", + "labelPosition": "top", + "optionsLabelPosition": "right", + "description": "", + "tooltip": "", + "customClass": "", + "tabindex": "", + "inline": false, + "hidden": false, + "hideLabel": false, + "autofocus": false, + "disabled": false, + "tableView": false, + "modalEdit": false, + "values": [ + { + "label": "Yes", + "value": "yes", + "shortcut": "" + }, + { + "label": "No", + "value": "no", + "shortcut": "" + } + ], + "dataType": "", + "persistent": true, + "protected": false, + "dbIndex": false, + "encrypted": false, + "redrawOn": "", + "clearOnHide": true, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "allowCalculateOverride": false, + "validate": { + "required": true, + "onlyAvailableItems": false, + "customMessage": "", + "custom": "", + "customPrivate": false, + "json": "", + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "errorLabel": "", + "errors": "", + "key": "intended1", + "tags": [], + "properties": {}, + "conditional": { + "show": null, + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "radio", + "input": true, + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "unique": false, + "refreshOn": "", + "dataGridLabel": false, + "widget": null, + "validateOn": "change", + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "inputType": "radio", + "fieldSet": false, + "id": "efbt54b", + "defaultValue": "" + }, + { + "html": "

Quantitative Risk Assessment

", + "label": "Content", + "customClass": "", + "refreshOnChange": false, + "hidden": false, + "modalEdit": false, + "key": "content37", + "tags": [], + "properties": {}, + "conditional": { + "show": null, + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "content", + "input": false, + "tableView": false, + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "id": "e7p5rjw" + }, + { + "label": "Intended", + "optionsLabelPosition": "right", + "inline": false, + "tableView": false, + "values": [ + { + "label": "Yes", + "value": "yes", + "shortcut": "" + }, + { + "label": "No", + "value": "no", + "shortcut": "" + } + ], + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "onlyAvailableItems": false + }, + "key": "intended2", + "type": "radio", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "inputType": "radio", + "fieldSet": false, + "id": "emo5xjg" + }, + { + "label": "Carried out", + "optionsLabelPosition": "right", + "inline": false, + "tableView": false, + "values": [ + { + "label": "Yes", + "value": "yes", + "shortcut": "" + }, + { + "label": "No", + "value": "no", + "shortcut": "" + } + ], + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "onlyAvailableItems": false + }, + "key": "intended3", + "type": "radio", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "inputType": "radio", + "fieldSet": false, + "id": "euhh0a4" + }, + { + "html": "

If yes for any above, complete Section 5.5 (Summary of Residual Contamination)

", + "label": "Content", + "customClass": "", + "refreshOnChange": false, + "hidden": false, + "modalEdit": false, + "key": "content38", + "tags": [], + "properties": {}, + "conditional": { + "show": null, + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "content", + "input": false, + "tableView": false, + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "id": "ez6x9bq" + }, + { + "label": "Describe risk management / exposure reduction methods intended or implemented and indicate the status of any measures.", + "labelPosition": "top", + "placeholder": "e.g., Physical / engineering: monitoring, capping or barriers to exposure; Institutional: registration of restrictive covenants, financial security, etc.", + "description": "", + "tooltip": "", + "prefix": "", + "suffix": "", + "widget": { + "type": "input" + }, + "displayMask": "", + "editor": "", + "autoExpand": false, + "customClass": "", + "tabindex": "", + "autocomplete": "", + "hidden": false, + "hideLabel": false, + "showWordCount": false, + "showCharCount": false, + "autofocus": false, + "spellcheck": true, + "disabled": false, + "tableView": true, + "modalEdit": false, + "multiple": false, + "persistent": true, + "inputFormat": "html", + "protected": false, + "dbIndex": false, + "case": "", + "truncateMultipleSpaces": false, + "encrypted": false, + "redrawOn": "", + "clearOnHide": true, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "allowCalculateOverride": false, + "validateOn": "change", + "validate": { + "required": false, + "pattern": "", + "customMessage": "", + "custom": "", + "customPrivate": false, + "json": "", + "minLength": "", + "maxLength": "", + "minWords": "", + "maxWords": "", + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "unique": false, + "errorLabel": "", + "errors": "", + "key": "describeRiskManagementExposureReductionMethodsIntendedOrImplementedAndIndicateTheStatusOfAnyMeasures", + "tags": [], + "properties": {}, + "conditional": { + "show": null, + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "textarea", + "rows": 6, + "wysiwyg": false, + "input": true, + "refreshOn": "", + "dataGridLabel": false, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputMask": "", + "fixedSize": true, + "id": "ew7umzp", + "defaultValue": "" + }, + { + "html": "

Provide a reference to signed and stamped design drawings provided by a professional engineer for works installed at site boundaries to prevent recontamination of a site.

", + "label": "Content", + "customClass": "", + "refreshOnChange": false, + "hidden": false, + "modalEdit": false, + "key": "content39", + "tags": [], + "properties": {}, + "conditional": { + "show": null, + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "content", + "input": false, + "tableView": false, + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "id": "e8a6e6" + }, + { + "label": "", + "reorder": false, + "addAnotherPosition": "bottom", + "layoutFixed": false, + "enableRowGroups": false, + "initEmpty": false, + "tableView": false, + "defaultValue": [ + { + "report": "", + "page": "", + "orAppendix": "" + } + ], + "key": "references", + "type": "datagrid", + "input": true, + "components": [ + { + "title": "", + "collapsible": false, + "key": "panel4", + "type": "panel", + "label": "References", + "input": false, + "tableView": false, + "components": [ + { + "label": "Columns", + "columns": [ + { + "components": [ + { + "label": "Report #", + "tableView": true, + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "key": "report", + "type": "textfield", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "ev76fb" + } + ], + "width": 4, + "offset": 0, + "push": 0, + "pull": 0, + "size": "md", + "currentWidth": 4 + }, + { + "components": [ + { + "label": "Page #", + "tableView": true, + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "key": "page", + "type": "textfield", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "exu4dc8" + } + ], + "width": 4, + "offset": 0, + "push": 0, + "pull": 0, + "size": "md", + "currentWidth": 4 + }, + { + "components": [ + { + "label": "Appendix #", + "tableView": true, + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "key": "orAppendix", + "type": "textfield", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "e1a2r8o" + } + ], + "size": "md", + "width": 4, + "offset": 0, + "push": 0, + "pull": 0, + "currentWidth": 4 + } + ], + "key": "columns", + "type": "columns", + "input": false, + "tableView": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "hidden": false, + "clearOnHide": false, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "tree": false, + "lazyLoad": false, + "autoAdjust": false, + "id": "e9e5bm" + } + ], + "id": "e6l31cy0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "hidden": false, + "clearOnHide": false, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "tree": false, + "lazyLoad": false, + "theme": "default", + "breadcrumb": "default" + } + ], + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "tree": true, + "lazyLoad": false, + "disableAddingRemovingRows": false, + "id": "e2jy1yl" + } + ], + "id": "epn9oxk" + }, + { + "title": "SECTION III - Summary of Remediation Plan/Remediation", + "theme": "default", + "tooltip": "", + "customClass": "", + "collapsible": false, + "hidden": false, + "hideLabel": false, + "disabled": false, + "modalEdit": false, + "key": "sectionIiiSummaryOfRemediationPlanRemediation", + "tags": [], + "properties": {}, + "customConditional": "", + "conditional": { + "json": "", + "show": null, + "when": null, + "eq": "" + }, + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "panel", + "label": "Panel", + "breadcrumb": "default", + "tabindex": "", + "input": false, + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "clearOnHide": false, + "refreshOn": "", + "redrawOn": "", + "tableView": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "tree": false, + "lazyLoad": false, + "components": [ + { + "html": "

Remediation Standards and Schedule

", + "label": "Content", + "customClass": "", + "refreshOnChange": false, + "hidden": false, + "modalEdit": false, + "key": "content40", + "tags": [], + "properties": {}, + "conditional": { + "show": null, + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "content", + "input": false, + "tableView": false, + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "id": "ep2zw9j" + }, + { + "label": "Environmental medium assessed. Select all that apply. (If this SOSC is to support a Negative Determination Application, select N/A)", + "labelPosition": "top", + "optionsLabelPosition": "right", + "description": "", + "tooltip": "", + "customClass": "", + "tabindex": "", + "inline": false, + "hidden": false, + "hideLabel": false, + "autofocus": false, + "disabled": false, + "tableView": false, + "modalEdit": false, + "defaultValue": { + "soil": false, + "groundwater": false, + "surfaceWater": false, + "sediment": false, + "nA": false, + "vapour": false + }, + "values": [ + { + "label": "Soil", + "value": "soil", + "shortcut": "" + }, + { + "label": "Groundwater", + "value": "groundwater", + "shortcut": "" + }, + { + "label": "Surface Water", + "value": "surfaceWater", + "shortcut": "" + }, + { + "label": "Vapour", + "value": "vapour", + "shortcut": "" + }, + { + "label": "Sediment", + "value": "sediment", + "shortcut": "" + }, + { + "label": "N/A", + "value": "nA", + "shortcut": "" + } + ], + "persistent": true, + "protected": false, + "dbIndex": false, + "encrypted": false, + "redrawOn": "", + "clearOnHide": true, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "allowCalculateOverride": false, + "validate": { + "required": true, + "onlyAvailableItems": false, + "customMessage": "", + "custom": "", + "customPrivate": false, + "json": "", + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "errorLabel": "", + "minSelectedCountMessage": "", + "maxSelectedCountMessage": "", + "errors": "", + "key": "environmentalMediumAssessedSelectAllThatApplyIfThisSoscIsToSupportANegativeDeterminationApplicationSelectNA", + "tags": [], + "properties": {}, + "conditional": { + "show": null, + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "selectboxes", + "input": true, + "inputType": "checkbox", + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "unique": false, + "refreshOn": "", + "dataGridLabel": false, + "widget": null, + "validateOn": "change", + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "fieldSet": false, + "id": "e165oim" + }, + { + "label": "Soil", + "labelPosition": "top", + "description": "", + "tooltip": "", + "disableAddingRemovingRows": false, + "conditionalAddButton": "", + "reorder": false, + "addAnother": "", + "addAnotherPosition": "bottom", + "layoutFixed": false, + "enableRowGroups": false, + "initEmpty": false, + "customClass": "", + "tabindex": "", + "hidden": false, + "hideLabel": false, + "autofocus": false, + "disabled": false, + "tableView": false, + "modalEdit": false, + "defaultValue": [ + { + "aecUseTheSameAecAsForAeCsInSection46": "", + "coc": "", + "remediatedToTheFollowingStandardProposedOrCompleted": { + "numericalStandardGuidelineOrCriteria": false, + "siteSpecificNumericalStandard": false, + "backgroundConcentrationAttachProtocol4ApprovalIfApplicable": false, + "riskBased": false + }, + "remediationComplete": "", + "proposedOrActualCompletionDate": "00/00/0000" + } + ], + "persistent": true, + "protected": false, + "dbIndex": false, + "encrypted": false, + "redrawOn": "", + "clearOnHide": true, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "allowCalculateOverride": false, + "validateOn": "change", + "validate": { + "required": false, + "minLength": "", + "maxLength": "", + "customMessage": "", + "custom": "", + "customPrivate": false, + "json": "", + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "errorLabel": "", + "errors": "", + "key": "dataGrid8", + "tags": [], + "properties": {}, + "conditional": { + "show": true, + "when": "environmentalMediumAssessedSelectAllThatApplyIfThisSoscIsToSupportANegativeDeterminationApplicationSelectNA", + "eq": "soil", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "datagrid", + "input": true, + "components": [ + { + "title": "Soil", + "collapsible": false, + "hideLabel": true, + "key": "panel4", + "type": "panel", + "label": "", + "input": false, + "tableView": false, + "components": [ + { + "label": "AEC # (Use the same AEC# as for AECs in the table in Section 4.6)", + "tableView": true, + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "key": "aecUseTheSameAecAsForAeCsInSection46", + "type": "textfield", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "eaf7t1" + }, + { + "label": "COC", + "tableView": true, + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "key": "coc", + "type": "textfield", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "eoda2go" + }, + { + "label": "Remediated to the following standard (proposed or completed)", + "optionsLabelPosition": "right", + "tableView": false, + "values": [ + { + "label": "Numerical (standard, guideline or criteria)", + "value": "numericalStandardGuidelineOrCriteria", + "shortcut": "" + }, + { + "label": "Site-Specific numerical standard", + "value": "siteSpecificNumericalStandard", + "shortcut": "" + }, + { + "label": "Background concentration (attach protocol 4 approval if applicable)", + "value": "backgroundConcentrationAttachProtocol4ApprovalIfApplicable", + "shortcut": "" + }, + { + "label": "Risk-based", + "value": "riskBased", + "shortcut": "" + } + ], + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "onlyAvailableItems": false + }, + "key": "remediatedToTheFollowingStandardProposedOrCompleted", + "type": "selectboxes", + "input": true, + "inputType": "checkbox", + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "fieldSet": false, + "inline": false, + "id": "emv34m" + }, + { + "label": "Remediation complete", + "optionsLabelPosition": "right", + "inline": false, + "tableView": false, + "values": [ + { + "label": "Yes", + "value": "yes", + "shortcut": "" + }, + { + "label": "No", + "value": "no", + "shortcut": "" + }, + { + "label": "Remediation Planned", + "value": "remediationPlanned", + "shortcut": "" + } + ], + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "onlyAvailableItems": false + }, + "key": "remediationComplete", + "type": "radio", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "inputType": "radio", + "fieldSet": false, + "id": "ek8hrjd" + }, + { + "label": "Proposed or actual completion date", + "hideInputLabels": false, + "inputsLabelPosition": "top", + "useLocaleSettings": false, + "tableView": false, + "fields": { + "day": { + "hide": false, + "required": true, + "type": "number", + "placeholder": "" + }, + "month": { + "hide": false, + "required": true, + "type": "select", + "placeholder": "" + }, + "year": { + "hide": false, + "required": true, + "type": "number", + "placeholder": "" + } + }, + "defaultValue": "00/00/0000", + "key": "proposedOrActualCompletionDate", + "type": "day", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "dayFirst": false, + "id": "eb274z" + } + ], + "id": "eauzdys000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "hidden": false, + "clearOnHide": false, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "tree": false, + "lazyLoad": false, + "theme": "default", + "breadcrumb": "default" + } + ], + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "unique": false, + "refreshOn": "", + "dataGridLabel": false, + "widget": null, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "tree": true, + "lazyLoad": false, + "id": "eojass" + }, + { + "label": "Groundwater", + "labelPosition": "top", + "description": "", + "tooltip": "", + "disableAddingRemovingRows": false, + "conditionalAddButton": "", + "reorder": false, + "addAnother": "", + "addAnotherPosition": "bottom", + "layoutFixed": false, + "enableRowGroups": false, + "initEmpty": false, + "customClass": "", + "tabindex": "", + "hidden": false, + "hideLabel": false, + "autofocus": false, + "disabled": false, + "tableView": false, + "modalEdit": false, + "defaultValue": [ + { + "aecUseTheSameAecAsForAeCsInSection46": "", + "coc": "", + "remediatedToTheFollowingStandardProposedOrCompleted": { + "numericalStandardGuidelineOrCriteria": false, + "siteSpecificNumericalStandard": false, + "backgroundConcentrationAttachProtocol4ApprovalIfApplicable": false, + "riskBased": false + }, + "remediationComplete": "", + "proposedOrActualCompletionDate": "00/00/0000" + } + ], + "persistent": true, + "protected": false, + "dbIndex": false, + "encrypted": false, + "redrawOn": "", + "clearOnHide": true, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "allowCalculateOverride": false, + "validateOn": "change", + "validate": { + "required": false, + "minLength": "", + "maxLength": "", + "customMessage": "", + "custom": "", + "customPrivate": false, + "json": "", + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "errorLabel": "", + "errors": "", + "key": "dataGrid9", + "tags": [], + "properties": {}, + "conditional": { + "show": true, + "when": "environmentalMediumAssessedSelectAllThatApplyIfThisSoscIsToSupportANegativeDeterminationApplicationSelectNA", + "eq": "groundwater", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "datagrid", + "input": true, + "components": [ + { + "title": "Groundwater", + "collapsible": false, + "hideLabel": true, + "key": "groundwater", + "type": "panel", + "label": "", + "input": false, + "tableView": false, + "components": [ + { + "label": "AEC # (Use the same AEC# as for AECs in the table in Section 4.6)", + "tableView": true, + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "key": "aecUseTheSameAecAsForAeCsInSection46", + "type": "textfield", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "ej8l9ey" + }, + { + "label": "COC", + "tableView": true, + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "key": "coc", + "type": "textfield", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "e9w6crd" + }, + { + "label": "Remediated to the following standard (proposed or completed)", + "optionsLabelPosition": "right", + "tableView": false, + "values": [ + { + "label": "Numerical (standard, guideline or criteria)", + "value": "numericalStandardGuidelineOrCriteria", + "shortcut": "" + }, + { + "label": "Site-Specific numerical standard", + "value": "siteSpecificNumericalStandard", + "shortcut": "" + }, + { + "label": "Background concentration (attach protocol 4 approval if applicable)", + "value": "backgroundConcentrationAttachProtocol4ApprovalIfApplicable", + "shortcut": "" + }, + { + "label": "Risk-based", + "value": "riskBased", + "shortcut": "" + } + ], + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "onlyAvailableItems": false + }, + "key": "remediatedToTheFollowingStandardProposedOrCompleted", + "type": "selectboxes", + "input": true, + "inputType": "checkbox", + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "fieldSet": false, + "inline": false, + "id": "euyjc8g" + }, + { + "label": "Remediation complete", + "optionsLabelPosition": "right", + "inline": false, + "tableView": false, + "values": [ + { + "label": "Yes", + "value": "yes", + "shortcut": "" + }, + { + "label": "No", + "value": "no", + "shortcut": "" + }, + { + "label": "Remediation Planned", + "value": "remediationPlanned", + "shortcut": "" + } + ], + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "onlyAvailableItems": false + }, + "key": "remediationComplete", + "type": "radio", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "inputType": "radio", + "fieldSet": false, + "id": "ef329mn" + }, + { + "label": "Proposed or actual completion date", + "hideInputLabels": false, + "inputsLabelPosition": "top", + "useLocaleSettings": false, + "tableView": false, + "fields": { + "day": { + "hide": false, + "required": true, + "type": "number", + "placeholder": "" + }, + "month": { + "hide": false, + "required": true, + "type": "select", + "placeholder": "" + }, + "year": { + "hide": false, + "required": true, + "type": "number", + "placeholder": "" + } + }, + "defaultValue": "00/00/0000", + "key": "proposedOrActualCompletionDate", + "type": "day", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "dayFirst": false, + "id": "euj2r2l" + } + ], + "id": "ey0h0vl00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "hidden": false, + "clearOnHide": false, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "tree": false, + "lazyLoad": false, + "theme": "default", + "breadcrumb": "default" + } + ], + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "unique": false, + "refreshOn": "", + "dataGridLabel": false, + "widget": null, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "tree": true, + "lazyLoad": false, + "id": "ew0r1gt" + }, + { + "label": "Surface Water", + "labelPosition": "top", + "description": "", + "tooltip": "", + "disableAddingRemovingRows": false, + "conditionalAddButton": "", + "reorder": false, + "addAnother": "", + "addAnotherPosition": "bottom", + "layoutFixed": false, + "enableRowGroups": false, + "initEmpty": false, + "customClass": "", + "tabindex": "", + "hidden": false, + "hideLabel": false, + "autofocus": false, + "disabled": false, + "tableView": false, + "modalEdit": false, + "defaultValue": [ + { + "aecUseTheSameAecAsForAeCsInSection46": "", + "coc": "", + "remediatedToTheFollowingStandardProposedOrCompleted": { + "numericalStandardGuidelineOrCriteria": false, + "siteSpecificNumericalStandard": false, + "backgroundConcentrationAttachProtocol4ApprovalIfApplicable": false, + "riskBased": false + }, + "remediationComplete": "", + "proposedOrActualCompletionDate": "00/00/0000" + } + ], + "persistent": true, + "protected": false, + "dbIndex": false, + "encrypted": false, + "redrawOn": "", + "clearOnHide": true, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "allowCalculateOverride": false, + "validateOn": "change", + "validate": { + "required": false, + "minLength": "", + "maxLength": "", + "customMessage": "", + "custom": "", + "customPrivate": false, + "json": "", + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "errorLabel": "", + "errors": "", + "key": "dataGrid10", + "tags": [], + "properties": {}, + "conditional": { + "show": true, + "when": "environmentalMediumAssessedSelectAllThatApplyIfThisSoscIsToSupportANegativeDeterminationApplicationSelectNA", + "eq": "surfaceWater", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "datagrid", + "input": true, + "components": [ + { + "title": "Surface Water", + "collapsible": false, + "hideLabel": true, + "key": "surfaceWater", + "type": "panel", + "label": "", + "input": false, + "tableView": false, + "components": [ + { + "label": "AEC # (Use the same AEC# as for AECs in the table in Section 4.6)", + "tableView": true, + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "key": "aecUseTheSameAecAsForAeCsInSection46", + "type": "textfield", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "exhym4b" + }, + { + "label": "COC", + "tableView": true, + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "key": "coc", + "type": "textfield", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "edjxf9" + }, + { + "label": "Remediated to the following standard (proposed or completed)", + "optionsLabelPosition": "right", + "tableView": false, + "values": [ + { + "label": "Numerical (standard, guideline or criteria)", + "value": "numericalStandardGuidelineOrCriteria", + "shortcut": "" + }, + { + "label": "Site-Specific numerical standard", + "value": "siteSpecificNumericalStandard", + "shortcut": "" + }, + { + "label": "Background concentration (attach protocol 4 approval if applicable)", + "value": "backgroundConcentrationAttachProtocol4ApprovalIfApplicable", + "shortcut": "" + }, + { + "label": "Risk-based", + "value": "riskBased", + "shortcut": "" + } + ], + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "onlyAvailableItems": false + }, + "key": "remediatedToTheFollowingStandardProposedOrCompleted", + "type": "selectboxes", + "input": true, + "inputType": "checkbox", + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "fieldSet": false, + "inline": false, + "id": "eslf5sl" + }, + { + "label": "Remediation complete", + "optionsLabelPosition": "right", + "inline": false, + "tableView": false, + "values": [ + { + "label": "Yes", + "value": "yes", + "shortcut": "" + }, + { + "label": "No", + "value": "no", + "shortcut": "" + }, + { + "label": "Remediation Planned", + "value": "remediationPlanned", + "shortcut": "" + } + ], + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "onlyAvailableItems": false + }, + "key": "remediationComplete", + "type": "radio", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "inputType": "radio", + "fieldSet": false, + "id": "eyhnsyf" + }, + { + "label": "Proposed or actual completion date", + "hideInputLabels": false, + "inputsLabelPosition": "top", + "useLocaleSettings": false, + "tableView": false, + "fields": { + "day": { + "hide": false, + "required": true, + "type": "number", + "placeholder": "" + }, + "month": { + "hide": false, + "required": true, + "type": "select", + "placeholder": "" + }, + "year": { + "hide": false, + "required": true, + "type": "number", + "placeholder": "" + } + }, + "defaultValue": "00/00/0000", + "key": "proposedOrActualCompletionDate", + "type": "day", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "dayFirst": false, + "id": "ehez7s" + } + ], + "id": "el9aclo0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "hidden": false, + "clearOnHide": false, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "tree": false, + "lazyLoad": false, + "theme": "default", + "breadcrumb": "default" + } + ], + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "unique": false, + "refreshOn": "", + "dataGridLabel": false, + "widget": null, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "tree": true, + "lazyLoad": false, + "id": "eb6spa00000" + }, + { + "label": "Vapour", + "labelPosition": "top", + "description": "", + "tooltip": "", + "disableAddingRemovingRows": false, + "conditionalAddButton": "", + "reorder": false, + "addAnother": "", + "addAnotherPosition": "bottom", + "layoutFixed": false, + "enableRowGroups": false, + "initEmpty": false, + "customClass": "", + "tabindex": "", + "hidden": false, + "hideLabel": false, + "autofocus": false, + "disabled": false, + "tableView": false, + "modalEdit": false, + "defaultValue": [ + { + "aecUseTheSameAecAsForAeCsInSection46": "", + "coc": "", + "remediatedToTheFollowingStandardProposedOrCompleted": { + "numericalStandardGuidelineOrCriteria": false, + "siteSpecificNumericalStandard": false, + "backgroundConcentrationAttachProtocol4ApprovalIfApplicable": false, + "riskBased": false + }, + "remediationComplete": "", + "proposedOrActualCompletionDate": "00/00/0000" + } + ], + "persistent": true, + "protected": false, + "dbIndex": false, + "encrypted": false, + "redrawOn": "", + "clearOnHide": true, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "allowCalculateOverride": false, + "validateOn": "change", + "validate": { + "required": false, + "minLength": "", + "maxLength": "", + "customMessage": "", + "custom": "", + "customPrivate": false, + "json": "", + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "errorLabel": "", + "errors": "", + "key": "dataGrid11", + "tags": [], + "properties": {}, + "conditional": { + "show": true, + "when": "environmentalMediumAssessedSelectAllThatApplyIfThisSoscIsToSupportANegativeDeterminationApplicationSelectNA", + "eq": "vapour", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "datagrid", + "input": true, + "components": [ + { + "title": "Vapour", + "collapsible": false, + "hideLabel": true, + "key": "vapour", + "type": "panel", + "label": "", + "input": false, + "tableView": false, + "components": [ + { + "label": "AEC # (Use the same AEC# as for AECs in the table in Section 4.6)", + "tableView": true, + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "key": "aecUseTheSameAecAsForAeCsInSection46", + "type": "textfield", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "etqxeaii" + }, + { + "label": "COC", + "tableView": true, + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "key": "coc", + "type": "textfield", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "ec8vxle" + }, + { + "label": "Remediated to the following standard (proposed or completed)", + "optionsLabelPosition": "right", + "tableView": false, + "values": [ + { + "label": "Numerical (standard, guideline or criteria)", + "value": "numericalStandardGuidelineOrCriteria", + "shortcut": "" + }, + { + "label": "Site-Specific numerical standard", + "value": "siteSpecificNumericalStandard", + "shortcut": "" + }, + { + "label": "Background concentration (attach protocol 4 approval if applicable)", + "value": "backgroundConcentrationAttachProtocol4ApprovalIfApplicable", + "shortcut": "" + }, + { + "label": "Risk-based", + "value": "riskBased", + "shortcut": "" + } + ], + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "onlyAvailableItems": false + }, + "key": "remediatedToTheFollowingStandardProposedOrCompleted", + "type": "selectboxes", + "input": true, + "inputType": "checkbox", + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "fieldSet": false, + "inline": false, + "id": "exo08af" + }, + { + "label": "Remediation complete", + "optionsLabelPosition": "right", + "inline": false, + "tableView": false, + "values": [ + { + "label": "Yes", + "value": "yes", + "shortcut": "" + }, + { + "label": "No", + "value": "no", + "shortcut": "" + }, + { + "label": "Remediation Planned", + "value": "remediationPlanned", + "shortcut": "" + } + ], + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "onlyAvailableItems": false + }, + "key": "remediationComplete", + "type": "radio", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "inputType": "radio", + "fieldSet": false, + "id": "e86fmgcc" + }, + { + "label": "Proposed or actual completion date", + "hideInputLabels": false, + "inputsLabelPosition": "top", + "useLocaleSettings": false, + "tableView": false, + "fields": { + "day": { + "hide": false, + "required": true, + "type": "number", + "placeholder": "" + }, + "month": { + "hide": false, + "required": true, + "type": "select", + "placeholder": "" + }, + "year": { + "hide": false, + "required": true, + "type": "number", + "placeholder": "" + } + }, + "defaultValue": "00/00/0000", + "key": "proposedOrActualCompletionDate", + "type": "day", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "dayFirst": false, + "id": "et10s3fg" + } + ], + "id": "ehk7lsj000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "hidden": false, + "clearOnHide": false, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "tree": false, + "lazyLoad": false, + "theme": "default", + "breadcrumb": "default" + } + ], + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "unique": false, + "refreshOn": "", + "dataGridLabel": false, + "widget": null, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "tree": true, + "lazyLoad": false, + "id": "ec6dxnf" + }, + { + "label": "Sediment", + "labelPosition": "top", + "description": "", + "tooltip": "", + "disableAddingRemovingRows": false, + "conditionalAddButton": "", + "reorder": false, + "addAnother": "", + "addAnotherPosition": "bottom", + "layoutFixed": false, + "enableRowGroups": false, + "initEmpty": false, + "customClass": "", + "tabindex": "", + "hidden": false, + "hideLabel": false, + "autofocus": false, + "disabled": false, + "tableView": false, + "modalEdit": false, + "defaultValue": [ + { + "aecUseTheSameAecAsForAeCsInSection46": "", + "coc": "", + "remediatedToTheFollowingStandardProposedOrCompleted": { + "numericalStandardGuidelineOrCriteria": false, + "siteSpecificNumericalStandard": false, + "backgroundConcentrationAttachProtocol4ApprovalIfApplicable": false, + "riskBased": false + }, + "remediationComplete": "", + "proposedOrActualCompletionDate": "00/00/0000" + } + ], + "persistent": true, + "protected": false, + "dbIndex": false, + "encrypted": false, + "redrawOn": "", + "clearOnHide": true, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "allowCalculateOverride": false, + "validateOn": "change", + "validate": { + "required": false, + "minLength": "", + "maxLength": "", + "customMessage": "", + "custom": "", + "customPrivate": false, + "json": "", + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "errorLabel": "", + "errors": "", + "key": "dataGrid12", + "tags": [], + "properties": {}, + "conditional": { + "show": true, + "when": "environmentalMediumAssessedSelectAllThatApplyIfThisSoscIsToSupportANegativeDeterminationApplicationSelectNA", + "eq": "sediment", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "datagrid", + "input": true, + "components": [ + { + "title": "Sediment", + "collapsible": false, + "hideLabel": true, + "key": "sediment", + "type": "panel", + "label": "", + "input": false, + "tableView": false, + "components": [ + { + "label": "AEC # (Use the same AEC# as for AECs in the table in Section 4.6)", + "tableView": true, + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "key": "aecUseTheSameAecAsForAeCsInSection46", + "type": "textfield", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "e7jbx9j" + }, + { + "label": "COC", + "tableView": true, + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "key": "coc", + "type": "textfield", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "esfs5p" + }, + { + "label": "Remediated to the following standard (proposed or completed)", + "optionsLabelPosition": "right", + "tableView": false, + "values": [ + { + "label": "Numerical (standard, guideline or criteria)", + "value": "numericalStandardGuidelineOrCriteria", + "shortcut": "" + }, + { + "label": "Site-Specific numerical standard", + "value": "siteSpecificNumericalStandard", + "shortcut": "" + }, + { + "label": "Background concentration (attach protocol 4 approval if applicable)", + "value": "backgroundConcentrationAttachProtocol4ApprovalIfApplicable", + "shortcut": "" + }, + { + "label": "Risk-based", + "value": "riskBased", + "shortcut": "" + } + ], + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "onlyAvailableItems": false + }, + "key": "remediatedToTheFollowingStandardProposedOrCompleted1", + "type": "selectboxes", + "input": true, + "inputType": "checkbox", + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "fieldSet": false, + "inline": false, + "id": "euis3w" + }, + { + "label": "Remediation complete", + "optionsLabelPosition": "right", + "inline": false, + "tableView": false, + "values": [ + { + "label": "Yes", + "value": "yes", + "shortcut": "" + }, + { + "label": "No", + "value": "no", + "shortcut": "" + }, + { + "label": "Remediation Planned", + "value": "remediationPlanned", + "shortcut": "" + } + ], + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "onlyAvailableItems": false + }, + "key": "remediationComplete", + "type": "radio", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "inputType": "radio", + "fieldSet": false, + "id": "ek6jihq" + }, + { + "label": "Proposed or actual completion date", + "hideInputLabels": false, + "inputsLabelPosition": "top", + "useLocaleSettings": false, + "tableView": false, + "fields": { + "day": { + "hide": false, + "required": true, + "type": "number", + "placeholder": "" + }, + "month": { + "hide": false, + "required": true, + "type": "select", + "placeholder": "" + }, + "year": { + "hide": false, + "required": true, + "type": "number", + "placeholder": "" + } + }, + "defaultValue": "00/00/0000", + "key": "proposedOrActualCompletionDate", + "type": "day", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "dayFirst": false, + "id": "eu50tno" + } + ], + "id": "ejahpfm000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "hidden": false, + "clearOnHide": false, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "tree": false, + "lazyLoad": false, + "theme": "default", + "breadcrumb": "default" + } + ], + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "unique": false, + "refreshOn": "", + "dataGridLabel": false, + "widget": null, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "tree": true, + "lazyLoad": false, + "id": "exwpiia0" + } + ], + "id": "e3zicjv" + }, + { + "title": "SECTION IV - Summary of Contaminant Treatment or Removal", + "theme": "default", + "tooltip": "", + "customClass": "", + "collapsible": false, + "hidden": false, + "hideLabel": false, + "disabled": false, + "modalEdit": false, + "key": "sectionIvSummaryOfContaminantTreatmentOrRemoval", + "tags": [], + "properties": {}, + "customConditional": "", + "conditional": { + "json": "", + "show": null, + "when": null, + "eq": "" + }, + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "panel", + "label": "Panel", + "breadcrumb": "default", + "tabindex": "", + "input": false, + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "clearOnHide": false, + "refreshOn": "", + "redrawOn": "", + "tableView": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "tree": false, + "lazyLoad": false, + "components": [ + { + "html": "

 

Identify and describe all contamination removed from or treated on-site. Ensure Part 6 is completed regarding the relocation of waste and non-waste soil.

Provide references to figure(s) showing the lateral and vertical extent of any treated or removed contamination. Confirmatory sample locations and corresponding analytical results shall be shown on each figure and in tabular form with reference to applicable standards:

 

In the AEC column, specify as n/a (not applicable) if remediation or assessment is not required in this environmental medium.

", + "label": "Content", + "customClass": "", + "refreshOnChange": false, + "hidden": false, + "modalEdit": false, + "key": "content41", + "tags": [], + "properties": {}, + "conditional": { + "show": null, + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "content", + "input": false, + "tableView": false, + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "id": "e12mm2s" + }, + { + "label": "Data Grid", + "reorder": false, + "addAnotherPosition": "bottom", + "layoutFixed": false, + "enableRowGroups": false, + "initEmpty": false, + "hideLabel": true, + "tableView": false, + "defaultValue": [ + {} + ], + "key": "dataGrid13", + "type": "datagrid", + "input": true, + "components": [ + { + "title": "", + "theme": "default", + "tooltip": "", + "customClass": "", + "collapsible": false, + "hidden": false, + "hideLabel": false, + "dataGridLabel": false, + "disabled": false, + "modalEdit": false, + "key": "panel", + "tags": [], + "properties": {}, + "customConditional": "", + "conditional": { + "json": "", + "show": null, + "when": null, + "eq": "" + }, + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "panel", + "label": "", + "breadcrumb": "default", + "tabindex": "", + "input": false, + "tableView": false, + "components": [ + { + "label": "AEC / APEC #", + "tableView": true, + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "key": "aecApec", + "type": "textfield", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "eqnfc6c" + }, + { + "label": "COC", + "tableView": true, + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "key": "coc", + "type": "textfield", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "ea1vh2f" + }, + { + "label": "Medium", + "placeholder": "(e.g. soil, groundwater, surface water, vapour, sediment, other)", + "tableView": true, + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "key": "medium", + "type": "textfield", + "input": true, + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "ekz1zpq" + }, + { + "label": "Material removed volume (m³ or L) ", + "tableView": true, + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "key": "materialRemovedVolumeMOrL", + "type": "textfield", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "e287y9a" + }, + { + "label": "Material removed disposal location (indicate if treated on- site)", + "tableView": true, + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "key": "textField", + "type": "textfield", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "enr29qh" + } + ], + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "clearOnHide": false, + "refreshOn": "", + "redrawOn": "", + "labelPosition": "top", + "description": "", + "errorLabel": "", + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "tree": false, + "lazyLoad": false, + "id": "etzpsl000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" + } + ], + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "tree": true, + "lazyLoad": false, + "disableAddingRemovingRows": false, + "id": "eiqygdt" + } + ], + "id": "ezlmejd" + }, + { + "title": "SECTION V - Summary of Residual Contamination After Remediation", + "theme": "default", + "tooltip": "", + "customClass": "", + "collapsible": false, + "hidden": false, + "hideLabel": false, + "disabled": false, + "modalEdit": false, + "key": "sectionVSummaryOfResidualContaminationAfterRemediation", + "tags": [], + "properties": {}, + "customConditional": "", + "conditional": { + "json": "", + "show": null, + "when": null, + "eq": "" + }, + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "panel", + "label": "Panel", + "breadcrumb": "default", + "tabindex": "", + "input": false, + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "clearOnHide": false, + "refreshOn": "", + "redrawOn": "", + "tableView": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "tree": false, + "lazyLoad": false, + "components": [ + { + "html": "

Identify and describe all contamination that exceeds CSR numerical standards, after the remediation described above has been implemented.

", + "label": "Content", + "customClass": "", + "refreshOnChange": false, + "hidden": false, + "modalEdit": false, + "key": "content42", + "tags": [], + "properties": {}, + "conditional": { + "show": null, + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "content", + "input": false, + "tableView": false, + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "id": "evqw2d" + }, + { + "label": "Data Grid", + "reorder": false, + "addAnotherPosition": "bottom", + "layoutFixed": false, + "enableRowGroups": false, + "initEmpty": false, + "hideLabel": true, + "tableView": false, + "defaultValue": [ + {} + ], + "key": "dataGrid14", + "type": "datagrid", + "input": true, + "components": [ + { + "title": "", + "collapsible": false, + "key": "panel10", + "type": "panel", + "label": "", + "input": false, + "tableView": false, + "components": [ + { + "label": "AEC / APEC #", + "labelPosition": "top", + "placeholder": "Use same # as for APECS above", + "description": "", + "tooltip": "", + "prefix": "", + "suffix": "", + "widget": { + "type": "input" + }, + "inputMask": "", + "displayMask": "", + "allowMultipleMasks": false, + "customClass": "", + "tabindex": "", + "autocomplete": "", + "hidden": false, + "hideLabel": false, + "showWordCount": false, + "showCharCount": false, + "mask": false, + "autofocus": false, + "spellcheck": true, + "disabled": false, + "tableView": true, + "modalEdit": false, + "multiple": false, + "persistent": true, + "inputFormat": "plain", + "protected": false, + "dbIndex": false, + "case": "", + "truncateMultipleSpaces": false, + "encrypted": false, + "redrawOn": "", + "clearOnHide": true, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "allowCalculateOverride": false, + "validateOn": "change", + "validate": { + "required": true, + "pattern": "", + "customMessage": "", + "custom": "", + "customPrivate": false, + "json": "", + "minLength": "", + "maxLength": "", + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "unique": false, + "errorLabel": "", + "errors": "", + "key": "aecApec", + "tags": [], + "properties": {}, + "conditional": { + "show": null, + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "textfield", + "input": true, + "refreshOn": "", + "dataGridLabel": false, + "addons": [], + "inputType": "text", + "id": "equan8wd", + "defaultValue": "" + }, + { + "label": "COC", + "tableView": true, + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "key": "coc", + "type": "textfield", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "e8l3z6" + }, + { + "label": "Medium", + "placeholder": "(e.g. soil, groundwater, surface water, vapour, sediment, other)", + "tableView": true, + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "key": "medium", + "type": "textfield", + "input": true, + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "e5nxmnx" + }, + { + "label": "Maximum measured concentration (indicate units)", + "labelPosition": "top", + "placeholder": "", + "description": "", + "tooltip": "", + "prefix": "", + "suffix": "", + "widget": { + "type": "input" + }, + "inputMask": "", + "displayMask": "", + "allowMultipleMasks": false, + "customClass": "", + "tabindex": "", + "autocomplete": "", + "hidden": false, + "hideLabel": false, + "showWordCount": false, + "showCharCount": false, + "mask": false, + "autofocus": false, + "spellcheck": true, + "disabled": false, + "tableView": true, + "modalEdit": false, + "multiple": false, + "persistent": true, + "inputFormat": "plain", + "protected": false, + "dbIndex": false, + "case": "", + "truncateMultipleSpaces": false, + "encrypted": false, + "redrawOn": "", + "clearOnHide": true, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "allowCalculateOverride": false, + "validateOn": "change", + "validate": { + "required": true, + "pattern": "", + "customMessage": "", + "custom": "", + "customPrivate": false, + "json": "", + "minLength": "", + "maxLength": "", + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "unique": false, + "errorLabel": "", + "errors": "", + "key": "materialRemovedVolumeMOrL", + "tags": [], + "properties": {}, + "conditional": { + "show": null, + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "textfield", + "input": true, + "refreshOn": "", + "dataGridLabel": false, + "addons": [], + "inputType": "text", + "id": "eknlfdn", + "defaultValue": "" + }, + { + "label": "Extent of Contamination (area m²)", + "labelPosition": "top", + "placeholder": "", + "description": "", + "tooltip": "", + "prefix": "", + "suffix": "", + "widget": { + "type": "input" + }, + "inputMask": "", + "displayMask": "", + "allowMultipleMasks": false, + "customClass": "", + "tabindex": "", + "autocomplete": "", + "hidden": false, + "hideLabel": false, + "showWordCount": false, + "showCharCount": false, + "mask": false, + "autofocus": false, + "spellcheck": true, + "disabled": false, + "tableView": true, + "modalEdit": false, + "multiple": false, + "persistent": true, + "inputFormat": "plain", + "protected": false, + "dbIndex": false, + "case": "", + "truncateMultipleSpaces": false, + "encrypted": false, + "redrawOn": "", + "clearOnHide": true, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "allowCalculateOverride": false, + "validateOn": "change", + "validate": { + "required": true, + "pattern": "", + "customMessage": "", + "custom": "", + "customPrivate": false, + "json": "", + "minLength": "", + "maxLength": "", + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "unique": false, + "errorLabel": "", + "errors": "", + "key": "textField", + "tags": [], + "properties": {}, + "conditional": { + "show": null, + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "textfield", + "input": true, + "refreshOn": "", + "dataGridLabel": false, + "addons": [], + "inputType": "text", + "id": "e64bv9p", + "defaultValue": "" + }, + { + "label": "Extent of contamination (depth range (m))", + "labelPosition": "top", + "placeholder": "", + "description": "", + "tooltip": "", + "prefix": "", + "suffix": "", + "widget": { + "type": "input" + }, + "inputMask": "", + "displayMask": "", + "allowMultipleMasks": false, + "customClass": "", + "tabindex": "", + "autocomplete": "", + "hidden": false, + "hideLabel": false, + "showWordCount": false, + "showCharCount": false, + "mask": false, + "autofocus": false, + "spellcheck": true, + "disabled": false, + "tableView": true, + "modalEdit": false, + "multiple": false, + "persistent": true, + "inputFormat": "plain", + "protected": false, + "dbIndex": false, + "case": "", + "truncateMultipleSpaces": false, + "encrypted": false, + "redrawOn": "", + "clearOnHide": true, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "allowCalculateOverride": false, + "validateOn": "change", + "validate": { + "required": true, + "pattern": "", + "customMessage": "", + "custom": "", + "customPrivate": false, + "json": "", + "minLength": "", + "maxLength": "", + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "unique": false, + "errorLabel": "", + "errors": "", + "key": "extentOfContaminationDepthRangeM", + "tags": [], + "properties": {}, + "conditional": { + "show": null, + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "textfield", + "input": true, + "refreshOn": "", + "dataGridLabel": false, + "addons": [], + "inputType": "text", + "id": "exmk0l", + "defaultValue": "" + } + ], + "id": "esvz3la0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "hidden": false, + "clearOnHide": false, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "tree": false, + "lazyLoad": false, + "theme": "default", + "breadcrumb": "default" + } + ], + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "tree": true, + "lazyLoad": false, + "disableAddingRemovingRows": false, + "id": "eo9nnrn" + } + ], + "id": "er09bl" + }, + { + "html": "

 

5.6 Remediation Issues

 

", + "label": "Content", + "customClass": "", + "refreshOnChange": false, + "hidden": false, + "modalEdit": false, + "key": "content43", + "tags": [], + "properties": {}, + "conditional": { + "show": null, + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "content", + "input": false, + "tableView": false, + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "id": "ehwovt" + }, + { + "label": "Identify any issues regarding investigations or interpretations if the PSI and DSI information may not satisfy the requirements of CSR Sections 58 and 59 and applicable protocols and guidance documents. Briefly describe how these deficiencies will be addressed (examples include destroyed wells, completion of detailed delineation following building demolition or other proposed work at a later stage of remediation). ", + "labelPosition": "top", + "placeholder": "", + "description": "", + "tooltip": "", + "prefix": "", + "suffix": "", + "widget": { + "type": "input" + }, + "displayMask": "", + "editor": "", + "autoExpand": false, + "customClass": "", + "tabindex": "", + "autocomplete": "", + "hidden": false, + "hideLabel": false, + "showWordCount": false, + "showCharCount": false, + "autofocus": false, + "spellcheck": true, + "disabled": false, + "tableView": true, + "modalEdit": false, + "multiple": false, + "persistent": true, + "inputFormat": "html", + "protected": false, + "dbIndex": false, + "case": "", + "truncateMultipleSpaces": false, + "encrypted": false, + "redrawOn": "", + "clearOnHide": true, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "allowCalculateOverride": false, + "validateOn": "change", + "validate": { + "required": false, + "pattern": "", + "customMessage": "", + "custom": "", + "customPrivate": false, + "json": "", + "minLength": "", + "maxLength": "", + "minWords": "", + "maxWords": "", + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "unique": false, + "errorLabel": "", + "errors": "", + "key": "textArea", + "tags": [], + "properties": {}, + "conditional": { + "show": null, + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "textarea", + "rows": 12, + "wysiwyg": false, + "input": true, + "refreshOn": "", + "dataGridLabel": false, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputMask": "", + "fixedSize": true, + "id": "e3l2fgh", + "defaultValue": "" + }, + { + "html": "

Part 6 - Summary of Soil Management

", + "label": "Content", + "customClass": "", + "refreshOnChange": false, + "hidden": false, + "modalEdit": false, + "key": "content44", + "tags": [], + "properties": {}, + "conditional": { + "show": null, + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "content", + "input": false, + "tableView": false, + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "id": "e80swfv" + }, + { + "label": "Was soil relocated from the source site?", + "labelPosition": "top", + "optionsLabelPosition": "right", + "description": "", + "tooltip": "", + "customClass": "", + "tabindex": "", + "inline": false, + "hidden": false, + "hideLabel": false, + "autofocus": false, + "disabled": false, + "tableView": false, + "modalEdit": false, + "values": [ + { + "label": "Yes", + "value": "yes", + "shortcut": "" + }, + { + "label": "No", + "value": "no", + "shortcut": "" + } + ], + "dataType": "", + "persistent": true, + "protected": false, + "dbIndex": false, + "encrypted": false, + "redrawOn": "", + "clearOnHide": true, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "allowCalculateOverride": false, + "validate": { + "required": true, + "onlyAvailableItems": false, + "customMessage": "", + "custom": "", + "customPrivate": false, + "json": "", + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "errorLabel": "", + "errors": "", + "key": "wasSoilRelocatedFromTheSourceSite", + "tags": [], + "properties": {}, + "conditional": { + "show": null, + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "radio", + "input": true, + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "unique": false, + "refreshOn": "", + "dataGridLabel": false, + "widget": null, + "validateOn": "change", + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "inputType": "radio", + "fieldSet": false, + "id": "em6ei1p", + "defaultValue": "" + }, + { + "title": "Panel", + "theme": "default", + "tooltip": "", + "customClass": "", + "collapsible": false, + "hidden": false, + "hideLabel": true, + "disabled": false, + "modalEdit": false, + "key": "panel4", + "tags": [], + "properties": {}, + "customConditional": "", + "conditional": { + "json": "", + "show": true, + "when": "wasSoilRelocatedFromTheSourceSite", + "eq": "yes" + }, + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "panel", + "label": "Panel", + "breadcrumb": "default", + "tabindex": "", + "input": false, + "tableView": false, + "components": [ + { + "html": "

6.1 Waste Soil Management

", + "label": "Content", + "refreshOnChange": false, + "key": "content45", + "type": "content", + "input": false, + "tableView": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "id": "eubtd7o" + }, + { + "label": "Was waste soil relocated to a site authorized under Part 2 of the Environmental Management Act or an Approval in Principle to receive waste soil?", + "optionsLabelPosition": "right", + "inline": false, + "tableView": false, + "values": [ + { + "label": "Yes", + "value": "yes", + "shortcut": "" + }, + { + "label": "No", + "value": "no", + "shortcut": "" + } + ], + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "onlyAvailableItems": false + }, + "key": "wasWasteSoilRelocatedToASiteAuthorizedUnderPart2OfTheEnvironmentalManagementActOrAnApprovalInPrincipleToReceiveWasteSoil", + "type": "radio", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "inputType": "radio", + "fieldSet": false, + "id": "eioxo4w" + }, + { + "html": "

6.2 Non-Waste Soil Relocation

", + "label": "Content", + "refreshOnChange": false, + "key": "content46", + "type": "content", + "input": false, + "tableView": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "id": "efcqmu3" + }, + { + "label": "Was non-waste soil relocated to a receiving site?", + "optionsLabelPosition": "right", + "inline": false, + "tableView": false, + "values": [ + { + "label": "Yes", + "value": "yes", + "shortcut": "" + }, + { + "label": "No", + "value": "no", + "shortcut": "" + } + ], + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "onlyAvailableItems": false + }, + "key": "wasNonWasteSoilRelocatedToAReceivingSite", + "type": "radio", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "inputType": "radio", + "fieldSet": false, + "id": "e7iq2oh" + }, + { + "label": "Was notification provided according to section 55 (1.1) of the Environmental Management Act? ", + "optionsLabelPosition": "right", + "inline": false, + "tableView": false, + "values": [ + { + "label": "Yes", + "value": "yes", + "shortcut": "" + }, + { + "label": "No", + "value": "no", + "shortcut": "" + } + ], + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "onlyAvailableItems": false + }, + "key": "wasNotificationProvidedAccordingToSection5511OfTheEnvironmentalManagementAct", + "type": "radio", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "inputType": "radio", + "fieldSet": false, + "id": "ewp4le7" + }, + { + "label": "If no, indicate which exemption applies (see CSR section 42) (Please select all that apply)", + "optionsLabelPosition": "right", + "tableView": false, + "defaultValue": { + "siteHasNotBeenUsedForASpecifiedIndustrialOrCommercialUse": false, + "forNonHighRiskSitesTheAmountOfSoilRemovedIsLessThan30CubicMetres": false, + "soilWasRelocatedToASiteWhereTheDepositIsAuthorizedByPermitApprovalOrderWasteManagementPlanAndOperationalCertificate": false, + "receivingSiteIsOutsideOfBritishColumbia": false, + "receivingSiteIsOnFederalLandOtherThanAReserveWithinTheMeaningOfTheIndianActCanada": false, + "sourceSiteHasNotBeenUsedOtherThanForALowImpactLandUseOrMiningOfMarlEarthSoilPeatSandGravelDimensionStoneRockOrAnyNaturalSubstanceThatIsUsedForAConstructionPurposeOnLandAndTheSoilWasIExtractedInAccordanceWithAPermitUnderTheMinesActAndIiTransportedDirectlyToTheReceivingSite": false, + "soilIsPreload": false, + "soilIsWinterMaintenanceSand": false + }, + "values": [ + { + "label": "Site has not been used for a specified industrial or commercial use", + "value": "siteHasNotBeenUsedForASpecifiedIndustrialOrCommercialUse", + "shortcut": "" + }, + { + "label": "For non-high risk sites, the amount of soil removed is less than 30 cubic metres", + "value": "forNonHighRiskSitesTheAmountOfSoilRemovedIsLessThan30CubicMetres", + "shortcut": "" + }, + { + "label": "Soil was relocated to a site where the deposit is authorized by permit, approval, order, waste management plan and operational certificate", + "value": "soilWasRelocatedToASiteWhereTheDepositIsAuthorizedByPermitApprovalOrderWasteManagementPlanAndOperationalCertificate", + "shortcut": "" + }, + { + "label": "Receiving site is outside of British Columbia", + "value": "receivingSiteIsOutsideOfBritishColumbia", + "shortcut": "" + }, + { + "label": "Receiving site is on federal land, other than a reserve within the meaning of the Indian Act (Canada)", + "value": "receivingSiteIsOnFederalLandOtherThanAReserveWithinTheMeaningOfTheIndianActCanada", + "shortcut": "" + }, + { + "label": "Source site has not been used other than for a low-impact land use or mining of marl, earth, soil, peat, sand, gravel, dimension stone, rock or any natural substance that is used for a construction purpose on land and the soil was: (i) extracted in accordance with a permit under the Mines Act, and (ii) transported directly to the receiving site", + "value": "sourceSiteHasNotBeenUsedOtherThanForALowImpactLandUseOrMiningOfMarlEarthSoilPeatSandGravelDimensionStoneRockOrAnyNaturalSubstanceThatIsUsedForAConstructionPurposeOnLandAndTheSoilWasIExtractedInAccordanceWithAPermitUnderTheMinesActAndIiTransportedDirectlyToTheReceivingSite", + "shortcut": "" + }, + { + "label": "Soil is preload", + "value": "soilIsPreload", + "shortcut": "" + }, + { + "label": "Soil is winter-maintenance sand", + "value": "soilIsWinterMaintenanceSand", + "shortcut": "" + } + ], + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "onlyAvailableItems": false + }, + "key": "ifNoIndicateWhichExemptionAppliesSeeCsrSection42PleaseSelectAllThatApply", + "conditional": { + "show": true, + "when": "wasNotificationProvidedAccordingToSection5511OfTheEnvironmentalManagementAct", + "eq": "no" + }, + "type": "selectboxes", + "input": true, + "inputType": "checkbox", + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "fieldSet": false, + "inline": false, + "id": "ey50ioo" + } + ], + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "clearOnHide": false, + "refreshOn": "", + "redrawOn": "", + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "tree": false, + "lazyLoad": false, + "id": "en97uhj" + }, + { + "html": "

Part 7 - Recomendation of Approved Professionals

", + "label": "Content", + "customClass": "", + "refreshOnChange": false, + "hidden": false, + "modalEdit": false, + "key": "content47", + "tags": [], + "properties": {}, + "conditional": { + "show": null, + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "content", + "input": false, + "tableView": false, + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "id": "ep2pdaq" + }, + { + "label": "Recommendation under Protocol 6", + "labelPosition": "top", + "optionsLabelPosition": "right", + "description": "", + "tooltip": "", + "customClass": "", + "tabindex": "", + "inline": false, + "hidden": false, + "hideLabel": false, + "autofocus": false, + "disabled": false, + "tableView": false, + "modalEdit": false, + "values": [ + { + "label": "Yes", + "value": "yes", + "shortcut": "" + }, + { + "label": "No", + "value": "no", + "shortcut": "" + } + ], + "dataType": "", + "persistent": true, + "protected": false, + "dbIndex": false, + "encrypted": false, + "redrawOn": "", + "clearOnHide": true, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "allowCalculateOverride": false, + "validate": { + "required": false, + "onlyAvailableItems": false, + "customMessage": "", + "custom": "", + "customPrivate": false, + "json": "", + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "errorLabel": "", + "errors": "", + "key": "recommendationUnderProtocol6", + "tags": [], + "properties": {}, + "conditional": { + "show": null, + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "radio", + "input": true, + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "unique": false, + "refreshOn": "", + "dataGridLabel": false, + "widget": null, + "validateOn": "change", + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "inputType": "radio", + "fieldSet": false, + "id": "e6idi1p", + "defaultValue": "" + }, + { + "label": "Direct to ministry application?", + "optionsLabelPosition": "right", + "inline": false, + "tableView": false, + "values": [ + { + "label": "Yes", + "value": "true", + "shortcut": "" + }, + { + "label": "No", + "value": "false", + "shortcut": "" + } + ], + "key": "directToMinistryApplication", + "type": "radio", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "onlyAvailableItems": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "inputType": "radio", + "fieldSet": false, + "id": "e7lksy9" + }, + { + "title": "SECTION I - Certification Document and Summary Recommendation", + "theme": "default", + "tooltip": "", + "customClass": "", + "collapsible": false, + "hidden": false, + "hideLabel": false, + "disabled": false, + "modalEdit": false, + "key": "panel9", + "tags": [], + "properties": {}, + "customConditional": "", + "conditional": { + "json": "", + "show": null, + "when": null, + "eq": "" + }, + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "panel", + "label": "Panel", + "breadcrumb": "default", + "tabindex": "", + "input": false, + "tableView": false, + "components": [ + { + "html": "

Based on the detailed technical information available for the site, as summarized in this Summary of Site Condition, I recommend that the following certification document be issued for the subject site.

", + "label": "Content", + "customClass": "", + "refreshOnChange": false, + "hidden": false, + "modalEdit": false, + "key": "content49", + "tags": [], + "properties": {}, + "conditional": { + "show": null, + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "content", + "input": false, + "tableView": false, + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "id": "e1y6n5q" + }, + { + "label": "Approved Professional Name", + "labelPosition": "top", + "placeholder": "", + "description": "", + "tooltip": "", + "prefix": "", + "suffix": "", + "widget": { + "type": "input" + }, + "inputMask": "", + "displayMask": "", + "allowMultipleMasks": false, + "customClass": "", + "tabindex": "", + "autocomplete": "", + "hidden": false, + "hideLabel": false, + "showWordCount": false, + "showCharCount": false, + "mask": false, + "autofocus": false, + "spellcheck": true, + "disabled": false, + "tableView": true, + "modalEdit": false, + "multiple": false, + "persistent": true, + "inputFormat": "plain", + "protected": false, + "dbIndex": false, + "case": "", + "truncateMultipleSpaces": false, + "encrypted": false, + "redrawOn": "", + "clearOnHide": true, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "allowCalculateOverride": false, + "validateOn": "change", + "validate": { + "required": true, + "pattern": "", + "customMessage": "", + "custom": "", + "customPrivate": false, + "json": "", + "minLength": "", + "maxLength": "", + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "unique": false, + "errorLabel": "", + "errors": "", + "key": "approvedProfessionalName", + "tags": [], + "properties": {}, + "conditional": { + "show": null, + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "textfield", + "input": true, + "refreshOn": "", + "dataGridLabel": false, + "addons": [], + "inputType": "text", + "id": "evgk94d", + "defaultValue": "" + }, + { + "label": "Please select those that apply", + "labelPosition": "top", + "optionsLabelPosition": "right", + "description": "", + "tooltip": "", + "customClass": "", + "tabindex": "", + "inline": false, + "hidden": false, + "hideLabel": false, + "autofocus": false, + "disabled": false, + "tableView": false, + "modalEdit": false, + "defaultValue": { + "aDeterminationUnderSection44OfEma": false, + "anAiPUnderSection531OfEma": false, + "aCoCUnderSection533OfEma": false, + "aSiteRiskReclassification": false, + "other": false + }, + "values": [ + { + "label": "A Determination under section 44 of EMA", + "value": "aDeterminationUnderSection44OfEma", + "shortcut": "" + }, + { + "label": "An AiP under section 53 (1) of EMA", + "value": "anAiPUnderSection531OfEma", + "shortcut": "" + }, + { + "label": "A CoC under section 53(3) of EMA ", + "value": "aCoCUnderSection533OfEma", + "shortcut": "" + }, + { + "label": "A Site Risk Reclassification", + "value": "aSiteRiskReclassification", + "shortcut": "" + }, + { + "label": "Other", + "value": "other", + "shortcut": "" + } + ], + "persistent": true, + "protected": false, + "dbIndex": false, + "encrypted": false, + "redrawOn": "", + "clearOnHide": true, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "allowCalculateOverride": false, + "validate": { + "required": true, + "onlyAvailableItems": false, + "customMessage": "", + "custom": "", + "customPrivate": false, + "json": "", + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "errorLabel": "", + "minSelectedCountMessage": "", + "maxSelectedCountMessage": "", + "errors": "", + "key": "recommendationCheckbox", + "tags": [], + "properties": {}, + "conditional": { + "show": null, + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "selectboxes", + "input": true, + "inputType": "checkbox", + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "unique": false, + "refreshOn": "", + "dataGridLabel": false, + "widget": null, + "validateOn": "change", + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "fieldSet": false, + "id": "egkjvv6" + }, + { + "label": "Describe:", + "labelPosition": "top", + "placeholder": "", + "description": "", + "tooltip": "", + "prefix": "", + "suffix": "", + "widget": { + "type": "input" + }, + "displayMask": "", + "editor": "", + "autoExpand": false, + "customClass": "", + "tabindex": "", + "autocomplete": "", + "hidden": false, + "hideLabel": false, + "showWordCount": false, + "showCharCount": false, + "autofocus": false, + "spellcheck": true, + "disabled": false, + "tableView": true, + "modalEdit": false, + "multiple": false, + "persistent": true, + "inputFormat": "html", + "protected": false, + "dbIndex": false, + "case": "", + "truncateMultipleSpaces": false, + "encrypted": false, + "redrawOn": "", + "clearOnHide": true, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "allowCalculateOverride": false, + "validateOn": "change", + "validate": { + "required": true, + "pattern": "", + "customMessage": "", + "custom": "", + "customPrivate": false, + "json": "", + "minLength": "", + "maxLength": "", + "minWords": "", + "maxWords": "", + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "unique": false, + "errorLabel": "", + "errors": "", + "key": "describe1", + "tags": [], + "properties": {}, + "conditional": { + "show": "", + "when": "", + "eq": "", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "textarea", + "rows": 3, + "wysiwyg": false, + "input": true, + "refreshOn": "", + "dataGridLabel": false, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputMask": "", + "fixedSize": true, + "id": "e6u9cg", + "defaultValue": "" + }, + { + "html": "

Although I understand that the basis of such recommendations should only be formally evaluated by reference to detailed technical guidance, the primary basis of this recommendation or these recommendations is as follows:

", + "label": "Content", + "customClass": "", + "refreshOnChange": false, + "hidden": false, + "modalEdit": false, + "key": "content50", + "tags": [], + "properties": {}, + "conditional": { + "show": null, + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "content", + "input": false, + "tableView": false, + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "id": "e2cnv1r" + }, + { + "html": "

 

Approved Professional Recommendation

", + "label": "Content", + "customClass": "", + "refreshOnChange": false, + "hidden": false, + "modalEdit": false, + "key": "content51", + "tags": [], + "properties": {}, + "conditional": { + "show": null, + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "content", + "input": false, + "tableView": false, + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "id": "ehkcebn" + }, + { + "label": "For a recommendation for a Determination", + "optionsLabelPosition": "right", + "inline": false, + "tableView": false, + "values": [ + { + "label": "Yes", + "value": "yes", + "shortcut": "" + }, + { + "label": "No", + "value": "no", + "shortcut": "" + } + ], + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "onlyAvailableItems": false + }, + "key": "forARecommendationForADetermination", + "type": "radio", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "inputType": "radio", + "fieldSet": false, + "id": "e6m3fu" + }, + { + "label": "For a recommendation for an Approval in Principle and for a Certificate of Compliance", + "optionsLabelPosition": "right", + "inline": false, + "tableView": false, + "values": [ + { + "label": "Yes", + "value": "yes", + "shortcut": "" + }, + { + "label": "No", + "value": "no", + "shortcut": "" + } + ], + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "onlyAvailableItems": false + }, + "key": "forARecommendationForanApprovalInPrinciple", + "type": "radio", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "inputType": "radio", + "fieldSet": false, + "id": "es27vr8" + }, + { + "label": "For a recommendation for a Site Risk Reclassification", + "labelPosition": "top", + "optionsLabelPosition": "right", + "description": "", + "tooltip": "", + "customClass": "", + "tabindex": "", + "inline": false, + "hidden": false, + "hideLabel": false, + "autofocus": false, + "disabled": false, + "tableView": false, + "modalEdit": false, + "values": [ + { + "label": "Yes", + "value": "true", + "shortcut": "" + }, + { + "label": "No", + "value": "false", + "shortcut": "" + } + ], + "dataType": "", + "persistent": true, + "protected": false, + "dbIndex": false, + "encrypted": false, + "redrawOn": "", + "clearOnHide": true, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "allowCalculateOverride": false, + "validate": { + "required": true, + "onlyAvailableItems": false, + "customMessage": "", + "custom": "", + "customPrivate": false, + "json": "", + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "errorLabel": "", + "errors": "", + "key": "siteRiskReclassification", + "tags": [], + "properties": {}, + "conditional": { + "show": null, + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "radio", + "input": true, + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "unique": false, + "refreshOn": "", + "dataGridLabel": false, + "widget": null, + "validateOn": "change", + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "inputType": "radio", + "fieldSet": false, + "id": "el2mw07", + "defaultValue": "" + }, + { + "title": "Panel", + "theme": "default", + "tooltip": "", + "customClass": "", + "collapsible": false, + "hidden": false, + "hideLabel": true, + "disabled": false, + "modalEdit": false, + "key": "panel5", + "tags": [], + "properties": {}, + "customConditional": "", + "conditional": { + "json": "", + "show": true, + "when": "forARecommendationForADetermination", + "eq": "yes" + }, + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "panel", + "label": "Panel", + "breadcrumb": "default", + "tabindex": "", + "input": false, + "tableView": false, + "components": [ + { + "html": "

For a Recommendation for a Determination

", + "label": "Content", + "refreshOnChange": false, + "key": "content52", + "type": "content", + "input": false, + "tableView": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "id": "ep5zkki" + }, + { + "label": "Please select those that apply:", + "optionsLabelPosition": "right", + "inline": false, + "tableView": false, + "values": [ + { + "label": "On the basis of information provided and reviewed, it is my opinion that no CSR Schedule 2 activities have occurred at the subject site.", + "value": "onTheBasisOfInformationProvidedAndReviewedItIsMyOpinionThatNoCsrSchedule2ActivitiesHaveOccurredAtTheSubjectSite", + "shortcut": "" + }, + { + "label": "CSR Schedule 2 activities are known or suspected to have occurred at the subject site, therefore in my opinion contaminants may have been released onto the subject site so that the site would be classified as a contaminated site in accordance with the CSR.", + "value": "csrSchedule2ActivitiesAreKnownOrSuspectedToHaveOccurredAtTheSubjectSiteThereforeInMyOpinionContaminantsMayHaveBeenReleasedOntoTheSubjectSiteSoThatTheSiteWouldBeClassifiedAsAContaminatedSiteInAccordanceWithTheCsr", + "shortcut": "" + }, + { + "label": "CSR Schedule 2 activities are known or suspected to have occurred at the subject site, but it is my opinion that the specific nature of such activities would not result in contamination so that the site would be classified as a contaminated site in accordance with the CSR", + "value": "csrSchedule2ActivitiesAreKnownOrSuspectedToHaveOccurredAtTheSubjectSiteButItIsMyOpinionThatTheSpecificNatureOfSuchActivitiesWouldNotResultInContaminationSoThatTheSiteWouldBeClassifiedAsAContaminatedSiteInAccordanceWithTheCsr", + "shortcut": "" + } + ], + "key": "pleaseSelectThoseThatApply1", + "type": "radio", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "onlyAvailableItems": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "inputType": "radio", + "fieldSet": false, + "id": "eax6pvb" + }, + { + "label": "Preliminary Site Investigation addressing all identified areas of potential environmental concern (APECs) and potential contaminants of concern (PCOCs) was completed. No substances were identified in concentrations exceeding those identified in BC CSR Schedules 3.1, 3.2, 3.3 or 3.4, as applicable. All PCOCs have been listed in Schedule B of the draft Determination.", + "tableView": false, + "key": "preliminarySiteInvestigationAddressingAllIdentifiedAreasOfPotentialEnvironmentalConcernApeCsAndPotentialContaminantsOfConcernPcoCsWasCompletedNoSubstancesWereIdentifiedInConcentrationsExceedingThoseIdentifiedInBcCsrSchedules313233Or34AsApplicableAllPcoCsHaveBeenListedInScheduleBOfTheDraftDetermination", + "type": "checkbox", + "input": true, + "defaultValue": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": true, + "labelPosition": "right", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "inputType": "checkbox", + "value": "", + "name": "", + "id": "emb80v" + } + ], + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "clearOnHide": false, + "refreshOn": "", + "redrawOn": "", + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "tree": false, + "lazyLoad": false, + "id": "emq5me" + }, + { + "title": "Panel", + "theme": "default", + "tooltip": "", + "customClass": "", + "collapsible": false, + "hidden": false, + "hideLabel": true, + "disabled": false, + "modalEdit": false, + "key": "panel6", + "tags": [], + "properties": {}, + "customConditional": "", + "conditional": { + "json": "", + "show": true, + "when": "forARecommendationForanApprovalInPrinciple", + "eq": "yes" + }, + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "panel", + "label": "Panel", + "breadcrumb": "default", + "tabindex": "", + "input": false, + "tableView": false, + "components": [ + { + "html": "

For a recommendation for an Approval in Principle and for a Certificate of Compliance

", + "label": "Content", + "refreshOnChange": false, + "key": "content53", + "type": "content", + "input": false, + "tableView": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "id": "eht7ie" + }, + { + "label": "A Preliminary Site Investigation addressing all identified areas of potential environmental concern (APECs) and potential contaminants of concern (PCOCs) was completed. One or more substances were identified at concentrations exceeding applicable standards or criteria in CSR Schedules 3.1, 3.2, 3.3 or 3.4", + "tableView": false, + "key": "aPreliminarySiteInvestigationAddressingAllIdentifiedAreasOfPotentialEnvironmentalConcernApeCsAndPotentialContaminantsOfConcernPcoCsWasCompletedOneOrMoreSubstancesWereIdentifiedAtConcentrationsExceedingApplicableStandardsOrCriteriaInCsrSchedules313233Or34", + "type": "checkbox", + "input": true, + "defaultValue": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": true, + "labelPosition": "right", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "inputType": "checkbox", + "value": "", + "name": "", + "id": "e83hcb" + }, + { + "label": "A Detailed Site Investigation addressing the locations and extent of all identified areas of environmental concern (AECs) and contaminants of concern (COCs) was completed ", + "tableView": false, + "defaultValue": false, + "key": "aDetailedSiteInvestigationAddressingTheLocationsAndExtentOfAllIdentifiedAreasOfEnvironmentalConcernAeCsAndContaminantsOfConcernCoCsWasCompletedAnd", + "type": "checkbox", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": true, + "labelPosition": "right", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "inputType": "checkbox", + "value": "", + "name": "", + "id": "eife04m" + }, + { + "label": "And:", + "optionsLabelPosition": "right", + "tableView": false, + "values": [ + { + "label": "Forms the basis of a remediation plan or risk assessment", + "value": "formsTheBasisOfARemediationPlanOrRiskAssessment", + "shortcut": "" + }, + { + "label": "Was the basis for remediation of the site", + "value": "wasTheBasisForRemediationOfTheSite", + "shortcut": "" + }, + { + "label": "The site is classified as non-high risk under Protocol 12", + "value": "theSiteIsClassifiedAsNonHighRiskUnderProtocol12", + "shortcut": "" + } + ], + "key": "and", + "conditional": { + "show": true, + "when": "aDetailedSiteInvestigationAddressingTheLocationsAndExtentOfAllIdentifiedAreasOfEnvironmentalConcernAeCsAndContaminantsOfConcernCoCsWasCompletedAnd", + "eq": "true" + }, + "type": "selectboxes", + "input": true, + "inputType": "checkbox", + "defaultValue": { + "formsTheBasisOfARemediationPlanOrRiskAssessment": false, + "wasTheBasisForRemediationOfTheSite": false, + "theSiteIsClassifiedAsNonHighRiskUnderProtocol12": false + }, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "onlyAvailableItems": false + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "fieldSet": false, + "inline": false, + "id": "ecf28xg" + }, + { + "label": "When this Summary of Site Condition was prepared", + "optionsLabelPosition": "right", + "inline": false, + "tableView": false, + "values": [ + { + "label": "Remediation plan had been prepared that provides for remediating all identified locations and respective extent of all contaminants to either CSR numerical or risk-based standards.", + "value": "remediationPlanHadBeenPreparedThatProvidesForRemediatingAllIdentifiedLocationsAndRespectiveExtentOfAllContaminantsToEitherCsrNumericalOrRiskBasedStandards", + "shortcut": "" + }, + { + "label": "All contaminants and their respective locations and extent as identified in investigation and risk assessment reports had been remediated to CSR numerical concentration or risk-based standards.", + "value": "allContaminantsAndTheirRespectiveLocationsAndExtentAsIdentifiedInInvestigationAndRiskAssessmentReportsHadBeenRemediatedToCsrNumericalConcentrationOrRiskBasedStandards", + "shortcut": "" + } + ], + "key": "whenThisSummaryOfSiteConditionWasPrepared", + "type": "radio", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "onlyAvailableItems": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "inputType": "radio", + "fieldSet": false, + "id": "e4himt9" + } + ], + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "clearOnHide": false, + "refreshOn": "", + "redrawOn": "", + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "tree": false, + "lazyLoad": false, + "id": "ecumlo6" + }, + { + "title": "Panel", + "theme": "default", + "tooltip": "", + "customClass": "", + "collapsible": false, + "hidden": false, + "hideLabel": true, + "disabled": false, + "modalEdit": false, + "key": "panel7", + "tags": [], + "properties": {}, + "customConditional": "", + "conditional": { + "json": "", + "show": true, + "when": "siteRiskReclassification", + "eq": "true" + }, + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "panel", + "label": "Panel", + "breadcrumb": "default", + "tabindex": "", + "input": false, + "tableView": false, + "components": [ + { + "html": "

For a recommendation for a Site Risk Reclassification

", + "label": "Content", + "refreshOnChange": false, + "key": "content54", + "type": "content", + "input": false, + "tableView": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "id": "ekdiwsi" + }, + { + "label": "Please select", + "optionsLabelPosition": "right", + "inline": false, + "tableView": false, + "values": [ + { + "label": "The site is classified as risk-managed high risk under Protocol 12.", + "value": "theSiteIsClassifiedAsRiskManagedHighRiskUnderProtocol12", + "shortcut": "" + }, + { + "label": "The site is classified as non-high risk under Protocol 12.", + "value": "theSiteIsClassifiedAsNonHighRiskUnderProtocol12", + "shortcut": "" + } + ], + "key": "pleaseSelect", + "type": "radio", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "onlyAvailableItems": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "inputType": "radio", + "fieldSet": false, + "id": "eiohx6i" + } + ], + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "clearOnHide": false, + "refreshOn": "", + "redrawOn": "", + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "tree": false, + "lazyLoad": false, + "id": "e3y0rp9" + } + ], + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "clearOnHide": false, + "refreshOn": "", + "redrawOn": "", + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "tree": false, + "lazyLoad": false, + "id": "exfhnl" + }, + { + "title": "SECTION II - Substances Remediated or Standards or Criteria Applied", + "theme": "default", + "tooltip": "", + "customClass": "", + "collapsible": false, + "hidden": false, + "hideLabel": false, + "disabled": false, + "modalEdit": false, + "key": "sectionIiSubstancesRemediatedOrStandardsOrCriteriaApplied", + "tags": [], + "properties": {}, + "customConditional": "", + "conditional": { + "json": "", + "show": null, + "when": null, + "eq": "" + }, + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "panel", + "label": "Panel", + "breadcrumb": "default", + "tabindex": "", + "input": false, + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "clearOnHide": false, + "refreshOn": "", + "redrawOn": "", + "tableView": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "tree": false, + "lazyLoad": false, + "components": [ + { + "html": "

7.2 Substances remediated and standards or criteria applied

 

Contaminants have been remediated to comply with standards or criteria listed in the following table: (If the site required remediation and has been remediated.) 

", + "label": "Content", + "customClass": "", + "refreshOnChange": false, + "hidden": false, + "modalEdit": false, + "key": "content55", + "tags": [], + "properties": {}, + "conditional": { + "show": null, + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "content", + "input": false, + "tableView": false, + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "id": "egplxle" + }, + { + "label": "Substances Remediated", + "labelPosition": "top", + "optionsLabelPosition": "right", + "description": "", + "tooltip": "", + "customClass": "", + "tabindex": "", + "inline": false, + "hidden": false, + "hideLabel": false, + "autofocus": false, + "disabled": false, + "tableView": false, + "modalEdit": false, + "values": [ + { + "label": "N/A", + "value": "nA", + "shortcut": "" + }, + { + "label": "Soil", + "value": "soil", + "shortcut": "" + }, + { + "label": "Water", + "value": "water", + "shortcut": "" + }, + { + "label": "Vapour", + "value": "vapour", + "shortcut": "" + }, + { + "label": "Sediment", + "value": "sediment", + "shortcut": "" + }, + { + "label": "Other", + "value": "other", + "shortcut": "" + } + ], + "persistent": true, + "protected": false, + "dbIndex": false, + "encrypted": false, + "redrawOn": "", + "clearOnHide": true, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "allowCalculateOverride": false, + "validate": { + "required": false, + "onlyAvailableItems": false, + "customMessage": "", + "custom": "", + "customPrivate": false, + "json": "", + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "errorLabel": "", + "minSelectedCountMessage": "", + "maxSelectedCountMessage": "", + "errors": "", + "key": "substancesRemediated", + "tags": [], + "properties": {}, + "conditional": { + "show": null, + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "selectboxes", + "input": true, + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "unique": false, + "refreshOn": "", + "dataGridLabel": false, + "widget": null, + "validateOn": "change", + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "inputType": "checkbox", + "fieldSet": false, + "id": "ec3tb", + "defaultValue": {} + }, + { + "html": "

Use specific compound names as listed in the Contaminated Sites Regulation Schedules. Please list compounds in columns to aid review.

", + "label": "Content", + "customClass": "", + "refreshOnChange": false, + "hidden": false, + "modalEdit": false, + "key": "content56", + "tags": [], + "properties": {}, + "conditional": { + "show": null, + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "content", + "input": false, + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "tableView": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "id": "ep1zcdl" + }, + { + "label": "Soil", + "labelPosition": "top", + "description": "", + "tooltip": "", + "disableAddingRemovingRows": false, + "conditionalAddButton": "", + "reorder": false, + "addAnother": "", + "addAnotherPosition": "bottom", + "layoutFixed": false, + "enableRowGroups": false, + "initEmpty": false, + "customClass": "", + "tabindex": "", + "hidden": false, + "hideLabel": false, + "autofocus": false, + "disabled": false, + "tableView": false, + "modalEdit": false, + "defaultValue": [ + { + "numericalStandards": "", + "riskBasedStandards": "", + "p2SiteSpecificNumericalStandards": "", + "p4BackgroundConcentrations": "", + "whatLandUseHasTheSubstanceBeenRemediatedToInSoilPleaseSelectAllThatApply": { + "il": false, + "cl": false, + "rlhd": false, + "rlld": false, + "pl": false, + "al": false, + "wln": false, + "wlr": false + } + } + ], + "persistent": true, + "protected": false, + "dbIndex": false, + "encrypted": false, + "redrawOn": "", + "clearOnHide": true, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "allowCalculateOverride": false, + "validateOn": "change", + "validate": { + "required": false, + "minLength": "", + "maxLength": "", + "customMessage": "", + "custom": "", + "customPrivate": false, + "json": "", + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "errorLabel": "", + "errors": "", + "key": "soil", + "tags": [], + "properties": {}, + "conditional": { + "show": true, + "when": "substancesRemediated", + "eq": "soil", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "datagrid", + "input": true, + "components": [ + { + "title": "Soil", + "collapsible": false, + "hideLabel": true, + "key": "soil1", + "type": "panel", + "label": "Panel", + "input": false, + "tableView": false, + "components": [ + { + "label": "Numerical Standards", + "tableView": true, + "key": "numericalStandards", + "type": "textfield", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "emlo7p" + }, + { + "label": "Risk-based standards", + "tableView": true, + "key": "riskBasedStandards", + "type": "textfield", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "en9kpdt" + }, + { + "label": "P2 site specific numerical standards", + "tableView": true, + "key": "p2SiteSpecificNumericalStandards", + "type": "textfield", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "emstd8s" + }, + { + "label": "P4 Background concentrations", + "tableView": true, + "key": "p4BackgroundConcentrations", + "type": "textfield", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "ez67mug" + }, + { + "label": "What land use has the substance been remediated to in soil? (Please select all that apply)", + "optionsLabelPosition": "right", + "tableView": false, + "values": [ + { + "label": "IL", + "value": "il", + "shortcut": "" + }, + { + "label": "CL", + "value": "cl", + "shortcut": "" + }, + { + "label": "RLHD", + "value": "rlhd", + "shortcut": "" + }, + { + "label": "RLLD", + "value": "rlld", + "shortcut": "" + }, + { + "label": "PL", + "value": "pl", + "shortcut": "" + }, + { + "label": "AL", + "value": "al", + "shortcut": "" + }, + { + "label": "WLN", + "value": "wln", + "shortcut": "" + }, + { + "label": "WLR", + "value": "wlr", + "shortcut": "" + } + ], + "key": "whatLandUseHasTheSubstanceBeenRemediatedToInSoilPleaseSelectAllThatApply", + "type": "selectboxes", + "input": true, + "inputType": "checkbox", + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "onlyAvailableItems": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "fieldSet": false, + "inline": false, + "id": "estazfs" + } + ], + "id": "ef5nwt0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "hidden": false, + "clearOnHide": false, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "tree": false, + "lazyLoad": false, + "theme": "default", + "breadcrumb": "default" + } + ], + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "unique": false, + "refreshOn": "", + "dataGridLabel": false, + "widget": null, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "tree": true, + "lazyLoad": false, + "id": "edy1cum" + }, + { + "label": "Water", + "labelPosition": "top", + "description": "", + "tooltip": "", + "disableAddingRemovingRows": false, + "conditionalAddButton": "", + "reorder": false, + "addAnother": "", + "addAnotherPosition": "bottom", + "layoutFixed": false, + "enableRowGroups": false, + "initEmpty": false, + "customClass": "", + "tabindex": "", + "hidden": false, + "hideLabel": false, + "autofocus": false, + "disabled": false, + "tableView": false, + "modalEdit": false, + "defaultValue": [ + { + "numericalStandards": "", + "riskBasedStandards": "", + "p9BackgroundConcentration": "", + "whatWaterUseHasTheSubstanceBeenRemediatedToPleaseSelectAllThatApply": { + "aquaticLifeAwFresh": false, + "aquaticLifeAwMarine": false, + "irrigationIw": false, + "livestockLw": false, + "drinkingWaterDw": false, + "noWaterUse": false + } + } + ], + "persistent": true, + "protected": false, + "dbIndex": false, + "encrypted": false, + "redrawOn": "", + "clearOnHide": true, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "allowCalculateOverride": false, + "validateOn": "change", + "validate": { + "required": false, + "minLength": "", + "maxLength": "", + "customMessage": "", + "custom": "", + "customPrivate": false, + "json": "", + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "errorLabel": "", + "errors": "", + "key": "water", + "tags": [], + "properties": {}, + "conditional": { + "show": true, + "when": "substancesRemediated", + "eq": "water", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "datagrid", + "input": true, + "components": [ + { + "collapsible": false, + "hideLabel": true, + "key": "panel", + "type": "panel", + "label": "Panel", + "input": false, + "tableView": false, + "components": [ + { + "label": "Numerical Standards", + "tableView": true, + "key": "numericalStandards", + "type": "textfield", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "ehpkhqe" + }, + { + "label": "Risk-based standards", + "tableView": true, + "key": "riskBasedStandards", + "type": "textfield", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "ebrjb1o" + }, + { + "label": "P9 Background concentration", + "tableView": true, + "key": "p9BackgroundConcentration", + "type": "textfield", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "ee4f77p" + }, + { + "label": "What water use has the substance been remediated to? (Please select all that apply)", + "optionsLabelPosition": "right", + "tableView": false, + "values": [ + { + "label": "Aquatic Life (AW) Fresh", + "value": "aquaticLifeAwFresh", + "shortcut": "" + }, + { + "label": "Aquatic Life (AW) Marine", + "value": "aquaticLifeAwMarine", + "shortcut": "" + }, + { + "label": "Irrigation (IW)", + "value": "irrigationIw", + "shortcut": "" + }, + { + "label": "Livestock (LW)", + "value": "livestockLw", + "shortcut": "" + }, + { + "label": "Drinking Water (DW)", + "value": "drinkingWaterDw", + "shortcut": "" + }, + { + "label": "No Water Use", + "value": "noWaterUse", + "shortcut": "" + } + ], + "key": "whatWaterUseHasTheSubstanceBeenRemediatedToPleaseSelectAllThatApply", + "type": "selectboxes", + "input": true, + "inputType": "checkbox", + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "onlyAvailableItems": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "fieldSet": false, + "inline": false, + "id": "eq5jxk" + } + ], + "id": "eoq12ev000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "hidden": false, + "clearOnHide": false, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "tree": false, + "lazyLoad": false, + "title": "Panel", + "theme": "default", + "breadcrumb": "default" + } + ], + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "unique": false, + "refreshOn": "", + "dataGridLabel": false, + "widget": null, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "tree": true, + "lazyLoad": false, + "id": "e7or7bq" + }, + { + "label": "Vapour", + "labelPosition": "top", + "description": "", + "tooltip": "", + "disableAddingRemovingRows": false, + "conditionalAddButton": "", + "reorder": false, + "addAnother": "", + "addAnotherPosition": "bottom", + "layoutFixed": false, + "enableRowGroups": false, + "initEmpty": false, + "customClass": "", + "tabindex": "", + "hidden": false, + "hideLabel": false, + "autofocus": false, + "disabled": false, + "tableView": false, + "modalEdit": false, + "defaultValue": [ + { + "numericalStandards": "", + "riskBasedStandards": "" + } + ], + "persistent": true, + "protected": false, + "dbIndex": false, + "encrypted": false, + "redrawOn": "", + "clearOnHide": true, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "allowCalculateOverride": false, + "validateOn": "change", + "validate": { + "required": false, + "minLength": "", + "maxLength": "", + "customMessage": "", + "custom": "", + "customPrivate": false, + "json": "", + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "errorLabel": "", + "errors": "", + "key": "vapour", + "tags": [], + "properties": {}, + "conditional": { + "show": true, + "when": "substancesRemediated", + "eq": "vapour", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "datagrid", + "input": true, + "components": [ + { + "collapsible": false, + "hideLabel": true, + "key": "panel", + "type": "panel", + "label": "Panel", + "input": false, + "tableView": false, + "components": [ + { + "label": "Numerical Standards", + "tableView": true, + "key": "numericalStandards", + "type": "textfield", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "ecjqd2" + }, + { + "label": "Risk-based standards", + "tableView": true, + "key": "riskBasedStandards", + "type": "textfield", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "enjn8bkh" + } + ], + "id": "ett43n0j00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "hidden": false, + "clearOnHide": false, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "tree": false, + "lazyLoad": false, + "title": "Panel", + "theme": "default", + "breadcrumb": "default" + } + ], + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "unique": false, + "refreshOn": "", + "dataGridLabel": false, + "widget": null, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "tree": true, + "lazyLoad": false, + "id": "eghuf8" + }, + { + "label": "Sediment", + "labelPosition": "top", + "description": "", + "tooltip": "", + "disableAddingRemovingRows": false, + "conditionalAddButton": "", + "reorder": false, + "addAnother": "", + "addAnotherPosition": "bottom", + "layoutFixed": false, + "enableRowGroups": false, + "initEmpty": false, + "customClass": "", + "tabindex": "", + "hidden": false, + "hideLabel": false, + "autofocus": false, + "disabled": false, + "tableView": false, + "modalEdit": false, + "defaultValue": [ + { + "numericalStandards": "", + "riskBasedStandards": "" + } + ], + "persistent": true, + "protected": false, + "dbIndex": false, + "encrypted": false, + "redrawOn": "", + "clearOnHide": true, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "allowCalculateOverride": false, + "validateOn": "change", + "validate": { + "required": false, + "minLength": "", + "maxLength": "", + "customMessage": "", + "custom": "", + "customPrivate": false, + "json": "", + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "errorLabel": "", + "errors": "", + "key": "sediment", + "tags": [], + "properties": {}, + "conditional": { + "show": true, + "when": "substancesRemediated", + "eq": "sediment", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "datagrid", + "input": true, + "components": [ + { + "collapsible": false, + "hideLabel": true, + "key": "panel8", + "type": "panel", + "label": "Panel", + "input": false, + "tableView": false, + "components": [ + { + "label": "Numerical Standards", + "tableView": true, + "key": "numericalStandards", + "type": "textfield", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "esi48dn" + }, + { + "label": "Risk-based standards", + "tableView": true, + "key": "riskBasedStandards", + "type": "textfield", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "ee9w9ok" + } + ], + "id": "euuaaa0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "hidden": false, + "clearOnHide": false, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "tree": false, + "lazyLoad": false, + "title": "Panel", + "theme": "default", + "breadcrumb": "default" + } + ], + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "unique": false, + "refreshOn": "", + "dataGridLabel": false, + "widget": null, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "tree": true, + "lazyLoad": false, + "id": "ecd1ylh" + }, + { + "label": "Other", + "labelPosition": "top", + "description": "", + "tooltip": "", + "disableAddingRemovingRows": false, + "conditionalAddButton": "", + "reorder": false, + "addAnother": "", + "addAnotherPosition": "bottom", + "layoutFixed": false, + "enableRowGroups": false, + "initEmpty": false, + "customClass": "", + "tabindex": "", + "hidden": false, + "hideLabel": false, + "autofocus": false, + "disabled": false, + "tableView": false, + "modalEdit": false, + "defaultValue": [ + { + "numericalStandards": "", + "riskBasedStandards": "" + } + ], + "persistent": true, + "protected": false, + "dbIndex": false, + "encrypted": false, + "redrawOn": "", + "clearOnHide": true, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "allowCalculateOverride": false, + "validateOn": "change", + "validate": { + "required": false, + "minLength": "", + "maxLength": "", + "customMessage": "", + "custom": "", + "customPrivate": false, + "json": "", + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "errorLabel": "", + "errors": "", + "key": "other", + "tags": [], + "properties": {}, + "conditional": { + "show": true, + "when": "substancesRemediated", + "eq": "other", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "datagrid", + "input": true, + "components": [ + { + "collapsible": false, + "hideLabel": true, + "key": "panel8", + "type": "panel", + "label": "Panel", + "input": false, + "tableView": false, + "components": [ + { + "label": "Numerical Standards", + "tableView": true, + "key": "numericalStandards", + "type": "textfield", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "e5cfjgb" + }, + { + "label": "Risk-based standards", + "tableView": true, + "key": "riskBasedStandards", + "type": "textfield", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "e6efm7o" + } + ], + "id": "edr4h05000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "hidden": false, + "clearOnHide": false, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "tree": false, + "lazyLoad": false, + "title": "Panel", + "theme": "default", + "breadcrumb": "default" + } + ], + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "unique": false, + "refreshOn": "", + "dataGridLabel": false, + "widget": null, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "tree": true, + "lazyLoad": false, + "id": "efz782r" + }, + { + "title": "", + "theme": "default", + "tooltip": "", + "customClass": "", + "collapsible": false, + "hidden": false, + "hideLabel": false, + "disabled": false, + "modalEdit": false, + "key": "panel11", + "tags": [], + "properties": {}, + "customConditional": "", + "conditional": { + "json": "", + "show": null, + "when": null, + "eq": "" + }, + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "panel", + "label": "Panel", + "breadcrumb": "default", + "tabindex": "", + "input": false, + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "clearOnHide": false, + "refreshOn": "", + "redrawOn": "", + "tableView": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "tree": false, + "lazyLoad": false, + "components": [ + { + "html": "

The Director may accept the recommendations of an Approved Professional(s) involved in the review and submission of investigation, risk assessment or remediation reports based in part on the understanding that

", + "label": "Content", + "customClass": "", + "refreshOnChange": false, + "hidden": false, + "modalEdit": false, + "key": "content57", + "tags": [], + "properties": {}, + "conditional": { + "show": null, + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "content", + "input": false, + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "tableView": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "id": "e8rd8qj" + }, + { + "label": "As of the date of signing of this report the approved professional, or approved professionals if more than one, is/are member(s) in good standing of the Roster of Approved Professionals, as maintained by the ministry, and member(s) of the Contaminated Sites Approved Professionals Society (CSAP Society)", + "description": "", + "tooltip": "", + "shortcut": "", + "inputType": "checkbox", + "customClass": "", + "tabindex": "", + "hidden": false, + "hideLabel": false, + "autofocus": false, + "disabled": false, + "tableView": false, + "modalEdit": false, + "persistent": true, + "protected": false, + "dbIndex": false, + "encrypted": false, + "redrawOn": "", + "clearOnHide": true, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "allowCalculateOverride": false, + "validate": { + "required": true, + "customMessage": "", + "custom": "", + "customPrivate": false, + "json": "", + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "errorLabel": "", + "errors": "", + "key": "asOfTheDateOfSigningOfThisReportTheApprovedProfessionalOrApprovedProfessionalsIfMoreThanOneIsAreMemberSInGoodStandingOfTheRosterOfApprovedProfessionalsAsMaintainedByTheMinistryAndMemberSOfTheContaminatedSitesApprovedProfessionalsSocietyCsapSociety", + "tags": [], + "properties": {}, + "conditional": { + "show": null, + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "checkbox", + "name": "", + "value": "", + "input": true, + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "unique": false, + "refreshOn": "", + "dataGridLabel": true, + "labelPosition": "right", + "widget": null, + "validateOn": "change", + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "id": "espd59k", + "defaultValue": false + }, + { + "label": "The approved professionals signing this Summary of Site Condition have reviewed Table 1, Protocol 6 for Contaminated Sites (Eligibility of Applications for Review by Approved Professionals) and confirm that the Application for Contaminated Sites Services may be processed in the manner for non-high risk sites under the Roster of Approved Professionals process", + "description": "", + "tooltip": "", + "shortcut": "", + "inputType": "checkbox", + "customClass": "", + "tabindex": "", + "hidden": false, + "hideLabel": false, + "autofocus": false, + "disabled": false, + "tableView": false, + "modalEdit": false, + "persistent": true, + "protected": false, + "dbIndex": false, + "encrypted": false, + "redrawOn": "", + "clearOnHide": true, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "allowCalculateOverride": false, + "validate": { + "required": true, + "customMessage": "", + "custom": "", + "customPrivate": false, + "json": "", + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "errorLabel": "", + "errors": "", + "key": "theApprovedProfessionalsSigningThisSummaryOfSiteConditionHaveReviewedTable1Protocol6ForContaminatedSitesEligibilityOfApplicationsForReviewByApprovedProfessionalsAndConfirmThatTheApplicationForContaminatedSitesServicesMayBeProcessedInTheMannerForNonHighRiskSitesUnderTheRosterOfApprovedProfessionalsProcess", + "tags": [], + "properties": {}, + "conditional": { + "show": null, + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "checkbox", + "name": "", + "value": "", + "input": true, + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "unique": false, + "refreshOn": "", + "dataGridLabel": true, + "labelPosition": "right", + "widget": null, + "validateOn": "change", + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "id": "eso2ic", + "defaultValue": false + }, + { + "label": "The reviewer has no obligation to undertake any inquiry into the validity, accuracy or precision of what is reported in the documents reviewed, beyond that which there is reasonable cause to believe that there could be errors or oversights in those reports", + "description": "", + "tooltip": "", + "shortcut": "", + "inputType": "checkbox", + "customClass": "", + "tabindex": "", + "hidden": false, + "hideLabel": false, + "autofocus": false, + "disabled": false, + "tableView": false, + "modalEdit": false, + "persistent": true, + "protected": false, + "dbIndex": false, + "encrypted": false, + "redrawOn": "", + "clearOnHide": true, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "allowCalculateOverride": false, + "validate": { + "required": true, + "customMessage": "", + "custom": "", + "customPrivate": false, + "json": "", + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "errorLabel": "", + "errors": "", + "key": "theReviewerHasNoObligationToUndertakeAnyInquiryIntoTheValidityAccuracyOrPrecisionOfWhatIsReportedInTheDocumentsReviewedBeyondThatWhichThereIsReasonableCauseToBelieveThatThereCouldBeErrorsOrOversightsInThoseReports", + "tags": [], + "properties": {}, + "conditional": { + "show": null, + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "checkbox", + "name": "", + "value": "", + "input": true, + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "unique": false, + "refreshOn": "", + "dataGridLabel": true, + "labelPosition": "right", + "widget": null, + "validateOn": "change", + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "id": "ei6b2fp", + "defaultValue": false + }, + { + "label": "(as appropriate) The source site has been satisfactorily investigated for all areas of (potential) environmental concern and (potential) contaminants of concern to determine the lateral and vertical extents of contamination with due regard to EMA, the CSR, and the HWR;", + "description": "", + "tooltip": "", + "shortcut": "", + "inputType": "checkbox", + "customClass": "", + "tabindex": "", + "hidden": false, + "hideLabel": false, + "autofocus": false, + "disabled": false, + "tableView": false, + "modalEdit": false, + "persistent": true, + "protected": false, + "dbIndex": false, + "encrypted": false, + "redrawOn": "", + "clearOnHide": true, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "allowCalculateOverride": false, + "validate": { + "required": false, + "customMessage": "", + "custom": "", + "customPrivate": false, + "json": "", + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "errorLabel": "", + "errors": "", + "key": "asAppropriateTheSourceSiteHasBeenSatisfactorilyInvestigatedForAllAreasOfPotentialEnvironmentalConcernAndPotentialContaminantsOfConcernToDetermineTheLateralAndVerticalExtentsOfContaminationWithDueRegardToEmaTheCsrAndTheHwr", + "tags": [], + "properties": {}, + "conditional": { + "show": null, + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "checkbox", + "name": "", + "value": "", + "input": true, + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "unique": false, + "refreshOn": "", + "dataGridLabel": true, + "labelPosition": "right", + "widget": null, + "validateOn": "change", + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "id": "e2whe88", + "defaultValue": false + }, + { + "label": "(as appropriate) The submitted documentation meets the requirements of Sections 1, 47, 49, 58 and 59 of the CSR;", + "description": "", + "tooltip": "", + "shortcut": "", + "inputType": "checkbox", + "customClass": "", + "tabindex": "", + "hidden": false, + "hideLabel": false, + "autofocus": false, + "disabled": false, + "tableView": false, + "modalEdit": false, + "persistent": true, + "protected": false, + "dbIndex": false, + "encrypted": false, + "redrawOn": "", + "clearOnHide": true, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "allowCalculateOverride": false, + "validate": { + "required": false, + "customMessage": "", + "custom": "", + "customPrivate": false, + "json": "", + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "errorLabel": "", + "errors": "", + "key": "asAppropriateTheSubmittedDocumentationMeetsTheRequirementsOfSections1474958And59OfTheCsr", + "tags": [], + "properties": {}, + "conditional": { + "show": null, + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "checkbox", + "name": "", + "value": "", + "input": true, + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "unique": false, + "refreshOn": "", + "dataGridLabel": true, + "labelPosition": "right", + "widget": null, + "validateOn": "change", + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "id": "eyeklkd", + "defaultValue": false + }, + { + "label": "(as appropriate) The Screening Level Risk Assessment meets the requirements of Protocol 13;", + "description": "", + "tooltip": "", + "shortcut": "", + "inputType": "checkbox", + "customClass": "", + "tabindex": "", + "hidden": false, + "hideLabel": false, + "autofocus": false, + "disabled": false, + "tableView": false, + "modalEdit": false, + "persistent": true, + "protected": false, + "dbIndex": false, + "encrypted": false, + "redrawOn": "", + "clearOnHide": true, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "allowCalculateOverride": false, + "validate": { + "required": false, + "customMessage": "", + "custom": "", + "customPrivate": false, + "json": "", + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "errorLabel": "", + "errors": "", + "key": "asAppropriateTheScreeningLevelRiskAssessmentMeetsTheRequirementsOfProtocol13", + "tags": [], + "properties": {}, + "conditional": { + "show": null, + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "checkbox", + "name": "", + "value": "", + "input": true, + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "unique": false, + "refreshOn": "", + "dataGridLabel": true, + "labelPosition": "right", + "widget": null, + "validateOn": "change", + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "id": "ewud17", + "defaultValue": false + } + ], + "id": "e2kqn9c" + }, + { + "title": "", + "theme": "default", + "tooltip": "", + "customClass": "", + "collapsible": false, + "hidden": false, + "hideLabel": false, + "disabled": false, + "modalEdit": false, + "key": "panel12", + "tags": [], + "properties": {}, + "customConditional": "", + "conditional": { + "json": "", + "show": null, + "when": null, + "eq": "" + }, + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "panel", + "label": "Panel", + "breadcrumb": "default", + "tabindex": "", + "input": false, + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "clearOnHide": false, + "refreshOn": "", + "redrawOn": "", + "tableView": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "tree": false, + "lazyLoad": false, + "components": [ + { + "html": "

 

Additional for AIPs, Determination, CoC

", + "label": "Content", + "customClass": "", + "refreshOnChange": false, + "hidden": false, + "modalEdit": false, + "key": "content58", + "tags": [], + "properties": {}, + "conditional": { + "show": null, + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "content", + "input": false, + "tableView": false, + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "id": "e3om77a" + }, + { + "label": "(for AiPs) The submitted remediation plan, if implemented in accordance with the specified conditions imposed in its draft Schedule 'B' of the AIP, will result in the source site being remediated in accordance with the applicable standards of the CSR and the HWR;", + "description": "", + "tooltip": "", + "shortcut": "", + "inputType": "checkbox", + "customClass": "", + "tabindex": "", + "hidden": false, + "hideLabel": false, + "autofocus": false, + "disabled": false, + "tableView": false, + "modalEdit": false, + "persistent": true, + "protected": false, + "dbIndex": false, + "encrypted": false, + "redrawOn": "", + "clearOnHide": true, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "allowCalculateOverride": false, + "validate": { + "required": false, + "customMessage": "", + "custom": "", + "customPrivate": false, + "json": "", + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "errorLabel": "", + "errors": "", + "key": "forAiPsTheSubmittedRemediationPlanIfImplementedInAccordanceWithTheSpecifiedConditionsImposedInItsDraftScheduleBOfTheAipWillResultInTheSourceSiteBeingRemediatedInAccordanceWithTheApplicableStandardsOfTheCsrAndTheHwr", + "tags": [], + "properties": {}, + "conditional": { + "show": null, + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "checkbox", + "name": "", + "value": "", + "input": true, + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "unique": false, + "refreshOn": "", + "dataGridLabel": true, + "labelPosition": "right", + "widget": null, + "validateOn": "change", + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "id": "em40f0m", + "defaultValue": false + }, + { + "label": "(for AiPs) It is feasible to implement all provisions of the Remediation Plan and to achieve its objectives and the conditions of the AIP within 5 years of issuance of the AIP", + "description": "", + "tooltip": "", + "shortcut": "", + "inputType": "checkbox", + "customClass": "", + "tabindex": "", + "hidden": false, + "hideLabel": false, + "autofocus": false, + "disabled": false, + "tableView": false, + "modalEdit": false, + "persistent": true, + "protected": false, + "dbIndex": false, + "encrypted": false, + "redrawOn": "", + "clearOnHide": true, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "allowCalculateOverride": false, + "validate": { + "required": false, + "customMessage": "", + "custom": "", + "customPrivate": false, + "json": "", + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "errorLabel": "", + "errors": "", + "key": "forAiPsItIsFeasibleToImplementAllProvisionsOfTheRemediationPlanAndToAchieveItsObjectivesAndTheConditionsOfTheAipWithin5YearsOfIssuanceOfTheAip", + "tags": [], + "properties": {}, + "conditional": { + "show": null, + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "checkbox", + "name": "", + "value": "", + "input": true, + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "unique": false, + "refreshOn": "", + "dataGridLabel": true, + "labelPosition": "right", + "widget": null, + "validateOn": "change", + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "id": "eko8qoe", + "defaultValue": false + }, + { + "label": "(for AiPs) The confirmation of remediation report meets the requirements of section 49(2) of the CSR;", + "description": "", + "tooltip": "", + "shortcut": "", + "inputType": "checkbox", + "customClass": "", + "tabindex": "", + "hidden": false, + "hideLabel": false, + "autofocus": false, + "disabled": false, + "tableView": false, + "modalEdit": false, + "persistent": true, + "protected": false, + "dbIndex": false, + "encrypted": false, + "redrawOn": "", + "clearOnHide": true, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "allowCalculateOverride": false, + "validate": { + "required": false, + "customMessage": "", + "custom": "", + "customPrivate": false, + "json": "", + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "errorLabel": "", + "errors": "", + "key": "forAiPsTheConfirmationOfRemediationReportMeetsTheRequirementsOfSection492OfTheCsr", + "tags": [], + "properties": {}, + "conditional": { + "show": null, + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "checkbox", + "name": "", + "value": "", + "input": true, + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "unique": false, + "refreshOn": "", + "dataGridLabel": true, + "labelPosition": "right", + "widget": null, + "validateOn": "change", + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "id": "e1z4cw", + "defaultValue": false + }, + { + "label": "(for CoCs) The confirmation of remediation report meets the requirements of section 49 (2) of the CSR", + "description": "", + "tooltip": "", + "shortcut": "", + "inputType": "checkbox", + "customClass": "", + "tabindex": "", + "hidden": false, + "hideLabel": false, + "autofocus": false, + "disabled": false, + "tableView": false, + "modalEdit": false, + "persistent": true, + "protected": false, + "dbIndex": false, + "encrypted": false, + "redrawOn": "", + "clearOnHide": true, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "allowCalculateOverride": false, + "validate": { + "required": false, + "customMessage": "", + "custom": "", + "customPrivate": false, + "json": "", + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "errorLabel": "", + "errors": "", + "key": "forCoCsTheConfirmationOfRemediationReportMeetsTheRequirementsOfSection492OfTheCsr", + "tags": [], + "properties": {}, + "conditional": { + "show": null, + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "checkbox", + "name": "", + "value": "", + "input": true, + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "unique": false, + "refreshOn": "", + "dataGridLabel": true, + "labelPosition": "right", + "widget": null, + "validateOn": "change", + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "id": "ebhel0f", + "defaultValue": false + }, + { + "label": "(for CoCs) The onsite management area(s) has/have been satisfactorily remediated in accordance with section 53 (3) of the EMA and section 49(2) of the CSR in accordance with applicable standards as identified in the draft COC;", + "description": "", + "tooltip": "", + "shortcut": "", + "inputType": "checkbox", + "customClass": "", + "tabindex": "", + "hidden": false, + "hideLabel": false, + "autofocus": false, + "disabled": false, + "tableView": false, + "modalEdit": false, + "persistent": true, + "protected": false, + "dbIndex": false, + "encrypted": false, + "redrawOn": "", + "clearOnHide": true, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "allowCalculateOverride": false, + "validate": { + "required": false, + "customMessage": "", + "custom": "", + "customPrivate": false, + "json": "", + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "errorLabel": "", + "errors": "", + "key": "forCoCsTheOnsiteManagementAreaSHasHaveBeenSatisfactorilyRemediatedInAccordanceWithSection533OfTheEmaAndSection492OfTheCsrInAccordanceWithApplicableStandardsAsIdentifiedInTheDraftCoc", + "tags": [], + "properties": {}, + "conditional": { + "show": null, + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "checkbox", + "name": "", + "value": "", + "input": true, + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "unique": false, + "refreshOn": "", + "dataGridLabel": true, + "labelPosition": "right", + "widget": null, + "validateOn": "change", + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "id": "e5sr4p4", + "defaultValue": false + }, + { + "label": "For CoCs where contamination exists beyond the legal lot boundaries", + "labelPosition": "top", + "optionsLabelPosition": "right", + "description": "", + "tooltip": "", + "customClass": "", + "tabindex": "", + "inline": false, + "hidden": false, + "hideLabel": false, + "autofocus": false, + "disabled": false, + "tableView": false, + "modalEdit": false, + "values": [ + { + "label": "The off-site portion(s) of the site has/have been satisfactorily remediated in accordance with section 53 (3) of the EMA and section 49(2) of the CSR and makes up part of this application", + "value": "theOffSitePortionSOfTheSiteHasHaveBeenSatisfactorilyRemediatedInAccordanceWithSection533OfTheEmaAndSection492OfTheCsrAndMakesUpPartOfThisApplication", + "shortcut": "" + }, + { + "label": "a Remediation Plan in accordance with requirements of the the CSR, sections 1 and 47 has/have been prepared and application has been made for AIP for the off-site portions", + "value": "aRemediationPlanInAccordanceWithRequirementsOfTheTheCsrSections1And47HasHaveBeenPreparedAndApplicationHasBeenMadeForAipForTheOffSitePortions", + "shortcut": "" + } + ], + "dataType": "", + "persistent": true, + "protected": false, + "dbIndex": false, + "encrypted": false, + "redrawOn": "", + "clearOnHide": true, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "allowCalculateOverride": false, + "validate": { + "required": false, + "onlyAvailableItems": false, + "customMessage": "", + "custom": "", + "customPrivate": false, + "json": "", + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "errorLabel": "", + "errors": "", + "key": "forCoCsWhereContaminationExistsBeyondTheLegalLotBoundaries", + "tags": [], + "properties": {}, + "conditional": { + "show": null, + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "radio", + "input": true, + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "unique": false, + "refreshOn": "", + "dataGridLabel": false, + "widget": null, + "validateOn": "change", + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "inputType": "radio", + "fieldSet": false, + "id": "e2vnfbod", + "defaultValue": "" + }, + { + "label": "(for CoCs where contamination exists beyond the legal lot boundaries and engineered works are required to prevent recontamination of the site) A signed and stamped design drawing has been provided by a professional engineer for works installed at site boundaries to prevent recontamination of the site. The signatory need not be the Approved Professional signing below.", + "description": "", + "tooltip": "", + "shortcut": "", + "inputType": "checkbox", + "customClass": "", + "tabindex": "", + "hidden": false, + "hideLabel": false, + "autofocus": false, + "disabled": false, + "tableView": false, + "modalEdit": false, + "persistent": true, + "protected": false, + "dbIndex": false, + "encrypted": false, + "redrawOn": "", + "clearOnHide": true, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "allowCalculateOverride": false, + "validate": { + "required": false, + "customMessage": "", + "custom": "", + "customPrivate": false, + "json": "", + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "errorLabel": "", + "errors": "", + "key": "forCoCsWhereContaminationExistsBeyondTheLegalLotBoundariesAndEngineeredWorksAreRequiredToPreventRecontaminationOfTheSiteASignedAndStampedDesignDrawingHasBeenProvidedByAProfessionalEngineerForWorksInstalledAtSiteBoundariesToPreventRecontaminationOfTheSiteTheSignatoryNeedNotBeTheApprovedProfessionalSigningBelow", + "tags": [], + "properties": {}, + "conditional": { + "show": null, + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "checkbox", + "name": "", + "value": "", + "input": true, + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "unique": false, + "refreshOn": "", + "dataGridLabel": true, + "labelPosition": "right", + "widget": null, + "validateOn": "change", + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "id": "equjrfb", + "defaultValue": false + }, + { + "label": "(for Determination) In accordance with section 15 (5) of the CSR, the source site a contaminated site under section 44(1) of the Environmental Management Act;", + "description": "", + "tooltip": "", + "shortcut": "", + "inputType": "checkbox", + "customClass": "", + "tabindex": "", + "hidden": false, + "hideLabel": false, + "autofocus": false, + "disabled": false, + "tableView": false, + "modalEdit": false, + "persistent": true, + "protected": false, + "dbIndex": false, + "encrypted": false, + "redrawOn": "", + "clearOnHide": true, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "allowCalculateOverride": false, + "validate": { + "required": false, + "customMessage": "", + "custom": "", + "customPrivate": false, + "json": "", + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "errorLabel": "", + "errors": "", + "key": "forDeterminationInAccordanceWithSection155OfTheCsrTheSourceSiteAContaminatedSiteUnderSection441OfTheEnvironmentalManagementAct", + "tags": [], + "properties": {}, + "conditional": { + "show": null, + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "checkbox", + "name": "", + "value": "", + "input": true, + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "unique": false, + "refreshOn": "", + "dataGridLabel": true, + "labelPosition": "right", + "widget": null, + "validateOn": "change", + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "id": "ekx5xzp", + "defaultValue": false + }, + { + "label": "(if a 'direct' final determination) In accordance with section 15 (5) of the CSR, the source site is a contaminated site under section 44 (3) of EMA", + "description": "", + "tooltip": "", + "shortcut": "", + "inputType": "checkbox", + "customClass": "", + "tabindex": "", + "hidden": false, + "hideLabel": false, + "autofocus": false, + "disabled": false, + "tableView": false, + "modalEdit": false, + "persistent": true, + "protected": false, + "dbIndex": false, + "encrypted": false, + "redrawOn": "", + "clearOnHide": true, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "allowCalculateOverride": false, + "validate": { + "required": false, + "customMessage": "", + "custom": "", + "customPrivate": false, + "json": "", + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "errorLabel": "", + "errors": "", + "key": "ifADirectFinalDeterminationInAccordanceWithSection155OfTheCsrTheSourceSiteIsAContaminatedSiteUnderSection443OfEma", + "tags": [], + "properties": {}, + "conditional": { + "show": null, + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "checkbox", + "name": "", + "value": "", + "input": true, + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "unique": false, + "refreshOn": "", + "dataGridLabel": true, + "labelPosition": "right", + "widget": null, + "validateOn": "change", + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "id": "e617ge", + "defaultValue": false + } + ], + "id": "ec7vbrl" + }, + { + "html": "

The opinions, advice and recommendations expressed in this Summary of Site Condition are made in accordance with generally accepted principles and practices as recognized by members of the applicable profession or discipline practicing at the same time and in the same or similar locations. This Summary of Site Condition does not provide a legal opinion or guarantee regarding compliance with applicable laws.

", + "label": "Content", + "customClass": "", + "refreshOnChange": false, + "hidden": false, + "modalEdit": false, + "key": "content59", + "tags": [], + "properties": {}, + "conditional": { + "show": null, + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "content", + "input": false, + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "tableView": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "id": "eg6vc" + }, + { + "label": "Data Grid", + "labelPosition": "top", + "description": "", + "tooltip": "", + "disableAddingRemovingRows": false, + "conditionalAddButton": "", + "reorder": false, + "addAnother": "", + "addAnotherPosition": "bottom", + "layoutFixed": false, + "enableRowGroups": false, + "initEmpty": false, + "customClass": "", + "tabindex": "", + "hidden": false, + "hideLabel": true, + "autofocus": false, + "disabled": false, + "tableView": false, + "modalEdit": false, + "defaultValue": [ + { + "signatureOfApprovedProfessional": "", + "firstName": "", + "lastName": "", + "dateSigned": "00/00/0000" + } + ], + "persistent": true, + "protected": false, + "dbIndex": false, + "encrypted": false, + "redrawOn": "", + "clearOnHide": true, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "allowCalculateOverride": false, + "validateOn": "change", + "validate": { + "required": false, + "minLength": "", + "maxLength": "", + "customMessage": "", + "custom": "", + "customPrivate": false, + "json": "", + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "errorLabel": "", + "errors": "", + "key": "dataGrid15", + "tags": [], + "properties": {}, + "conditional": { + "show": null, + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "datagrid", + "input": true, + "components": [ + { + "label": "Approved Professional Signatures", + "columns": [ + { + "components": [ + { + "label": "Signature of Approved Professional", + "tableView": false, + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "key": "signatureOfApprovedProfessional", + "type": "signature", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "footer": "Sign above", + "width": "100%", + "height": "150px", + "penColor": "black", + "backgroundColor": "rgb(245,245,235)", + "minWidth": "0.5", + "maxWidth": "2.5", + "keepOverlayRatio": true, + "id": "eufhqc8" + } + ], + "width": 6, + "offset": 0, + "push": 0, + "pull": 0, + "size": "md", + "currentWidth": 6 + }, + { + "components": [ + { + "label": "First Name", + "tableView": true, + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "key": "firstName", + "type": "textfield", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "e459o2u" + }, + { + "label": "Last Name", + "labelPosition": "top", + "placeholder": "", + "description": "", + "tooltip": "", + "prefix": "", + "suffix": "", + "widget": { + "type": "input" + }, + "inputMask": "", + "displayMask": "", + "allowMultipleMasks": false, + "customClass": "", + "tabindex": "", + "autocomplete": "", + "hidden": false, + "hideLabel": false, + "showWordCount": false, + "showCharCount": false, + "mask": false, + "autofocus": false, + "spellcheck": true, + "disabled": false, + "tableView": true, + "modalEdit": false, + "multiple": false, + "persistent": true, + "inputFormat": "plain", + "protected": false, + "dbIndex": false, + "case": "", + "truncateMultipleSpaces": false, + "encrypted": false, + "redrawOn": "", + "clearOnHide": true, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "allowCalculateOverride": false, + "validateOn": "change", + "validate": { + "required": true, + "pattern": "", + "customMessage": "", + "custom": "", + "customPrivate": false, + "json": "", + "minLength": "", + "maxLength": "", + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "unique": false, + "errorLabel": "", + "errors": "", + "key": "lastName", + "tags": [], + "properties": {}, + "conditional": { + "show": null, + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "textfield", + "input": true, + "refreshOn": "", + "dataGridLabel": false, + "addons": [], + "inputType": "text", + "id": "ewkt9qr", + "defaultValue": "" + }, + { + "label": "Date", + "labelPosition": "top", + "displayInTimezone": "viewer", + "useLocaleSettings": false, + "allowInput": true, + "format": "yyyy-MM-dd hh:mm a", + "placeholder": "", + "description": "", + "tooltip": "", + "customClass": "", + "tabindex": "", + "hidden": false, + "hideLabel": false, + "autofocus": false, + "disabled": false, + "tableView": false, + "modalEdit": false, + "shortcutButtons": [], + "enableDate": true, + "datePicker": { + "disable": "", + "disableFunction": "", + "disableWeekends": false, + "disableWeekdays": false, + "minDate": null, + "maxDate": null, + "showWeeks": true, + "startingDay": 0, + "initDate": "", + "minMode": "day", + "maxMode": "year", + "yearRows": 4, + "yearColumns": 5 + }, + "enableTime": true, + "timePicker": { + "showMeridian": true, + "hourStep": 1, + "minuteStep": 1, + "readonlyInput": false, + "mousewheel": true, + "arrowkeys": true + }, + "multiple": false, + "defaultValue": "", + "defaultDate": "", + "customOptions": {}, + "persistent": true, + "protected": false, + "dbIndex": false, + "encrypted": false, + "redrawOn": "", + "clearOnHide": true, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "allowCalculateOverride": false, + "validateOn": "change", + "validate": { + "required": false, + "customMessage": "", + "custom": "", + "customPrivate": false, + "json": "", + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "enableMinDateInput": false, + "enableMaxDateInput": false, + "unique": false, + "errorLabel": "", + "errors": "", + "key": "dateTime", + "tags": [], + "properties": {}, + "conditional": { + "show": null, + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "datetime", + "timezone": "", + "input": true, + "widget": { + "type": "calendar", + "displayInTimezone": "viewer", + "locale": "en", + "useLocaleSettings": false, + "allowInput": true, + "mode": "single", + "enableTime": true, + "noCalendar": false, + "format": "yyyy-MM-dd hh:mm a", + "hourIncrement": 1, + "minuteIncrement": 1, + "time_24hr": false, + "minDate": null, + "disabledDates": "", + "disableWeekends": false, + "disableWeekdays": false, + "disableFunction": "", + "maxDate": null + }, + "prefix": "", + "suffix": "", + "refreshOn": "", + "dataGridLabel": false, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "datepickerMode": "day", + "id": "eucmj7" + } + ], + "width": 6, + "offset": 0, + "push": 0, + "pull": 0, + "size": "md", + "currentWidth": 6 + } + ], + "key": "approvedProfessionalSignature", + "type": "columns", + "input": false, + "tableView": false, + "id": "ev4kpmc00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "hidden": false, + "clearOnHide": false, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "tree": false, + "lazyLoad": false, + "autoAdjust": false + } + ], + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "unique": false, + "refreshOn": "", + "dataGridLabel": false, + "widget": null, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "tree": true, + "lazyLoad": false, + "id": "eizst9" + } + ], + "id": "efpt8i" + }, + { + "title": "SECTION III - Arm's Length Review", + "theme": "default", + "tooltip": "", + "customClass": "", + "collapsible": false, + "hidden": false, + "hideLabel": false, + "disabled": false, + "modalEdit": false, + "key": "sectionIiiArmsLengthReview", + "tags": [], + "properties": {}, + "customConditional": "", + "conditional": { + "json": "", + "show": null, + "when": null, + "eq": "" + }, + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "panel", + "label": "Panel", + "breadcrumb": "default", + "tabindex": "", + "input": false, + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "clearOnHide": false, + "refreshOn": "", + "redrawOn": "", + "tableView": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "tree": false, + "lazyLoad": false, + "components": [ + { + "html": "

There may have been an arm’s length review of one or more of the following recommendations to the Director of Waste Management:

 

1. Making a recommendation to a Director in support of an application for an Approval in Principle based on remediation to numerical standards or a screening level risk assessment where there is offsite migration at the site.

2. Making a recommendation to a Director in support of an application for an Approval in Principle based on a risk assessment (other than a screening level risk assessment) and remediation to risk-based standards.

3. Making a recommendation to a Director in support of an application for a Certificate of Compliance based on remediation to numerical standards or a screening level risk assessment where there is offsite migration at the site.

4. Making a recommendation to a Director in support of an application for a Certificate of Compliance based on a risk assessment (other than a screening level risk assessment) and remediation to risk-based standards.

5. Making a recommendation to a Director in support of an application for site risk classification/reclassification.

6. Making a recommendation to a Director in support of any other application based on risk assessment or risk management (other than a screening level risk assessment) not otherwise described in any other row in this list, as required under a protocol signed by a Director.

If this is the case please have the Approved Professional who carried out the arm’s length review to sign below, specifying the type of arm’s length review done for the site.

", + "label": "Content", + "customClass": "", + "refreshOnChange": false, + "hidden": false, + "modalEdit": false, + "key": "content60", + "tags": [], + "properties": {}, + "conditional": { + "show": null, + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "content", + "input": false, + "tableView": false, + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "id": "elcdtyx" + }, + { + "label": "Data Grid", + "labelPosition": "top", + "description": "", + "tooltip": "", + "disableAddingRemovingRows": false, + "conditionalAddButton": "", + "reorder": false, + "addAnother": "", + "addAnotherPosition": "bottom", + "layoutFixed": false, + "enableRowGroups": false, + "initEmpty": false, + "customClass": "", + "tabindex": "", + "hidden": false, + "hideLabel": true, + "autofocus": false, + "disabled": false, + "tableView": false, + "modalEdit": false, + "defaultValue": [ + { + "typeOfArmsLengthReview": "", + "signatureOfApprovedProfessional": "", + "firstName": "", + "lastName": "", + "dateSigned": "00/00/0000" + } + ], + "persistent": true, + "protected": false, + "dbIndex": false, + "encrypted": false, + "redrawOn": "", + "clearOnHide": true, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "allowCalculateOverride": false, + "validateOn": "change", + "validate": { + "required": false, + "minLength": "", + "maxLength": "", + "customMessage": "", + "custom": "", + "customPrivate": false, + "json": "", + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "errorLabel": "", + "errors": "", + "key": "dataGrid16", + "tags": [], + "properties": {}, + "conditional": { + "show": null, + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "datagrid", + "input": true, + "components": [ + { + "label": "Approved Professional Signatures", + "columns": [ + { + "components": [ + { + "label": "Type of Arm's length Review", + "placeholder": "Enter number from list above", + "tableView": true, + "key": "typeOfArmsLengthReview", + "type": "textfield", + "input": true, + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "eqgxg2q" + }, + { + "label": "Signature of Approved Professional", + "tableView": false, + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "key": "signatureOfApprovedProfessional", + "type": "signature", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "footer": "Sign above", + "width": "100%", + "height": "150px", + "penColor": "black", + "backgroundColor": "rgb(245,245,235)", + "minWidth": "0.5", + "maxWidth": "2.5", + "keepOverlayRatio": true, + "id": "egps3u" + } + ], + "width": 6, + "offset": 0, + "push": 0, + "pull": 0, + "size": "md", + "currentWidth": 6 + }, + { + "components": [ + { + "label": "First Name", + "tableView": true, + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "key": "firstName", + "type": "textfield", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "ehbl8ry" + }, + { + "label": "Last Name", + "labelPosition": "top", + "placeholder": "", + "description": "", + "tooltip": "", + "prefix": "", + "suffix": "", + "widget": { + "type": "input" + }, + "inputMask": "", + "displayMask": "", + "allowMultipleMasks": false, + "customClass": "", + "tabindex": "", + "autocomplete": "", + "hidden": false, + "hideLabel": false, + "showWordCount": false, + "showCharCount": false, + "mask": false, + "autofocus": false, + "spellcheck": true, + "disabled": false, + "tableView": true, + "modalEdit": false, + "multiple": false, + "persistent": true, + "inputFormat": "plain", + "protected": false, + "dbIndex": false, + "case": "", + "truncateMultipleSpaces": false, + "encrypted": false, + "redrawOn": "", + "clearOnHide": true, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "allowCalculateOverride": false, + "validateOn": "change", + "validate": { + "required": true, + "pattern": "", + "customMessage": "", + "custom": "", + "customPrivate": false, + "json": "", + "minLength": "", + "maxLength": "", + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "unique": false, + "errorLabel": "", + "errors": "", + "key": "lastName", + "tags": [], + "properties": {}, + "conditional": { + "show": null, + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "textfield", + "input": true, + "refreshOn": "", + "dataGridLabel": false, + "addons": [], + "inputType": "text", + "id": "ew4j73", + "defaultValue": "" + }, + { + "label": "Date", + "labelPosition": "top", + "displayInTimezone": "viewer", + "useLocaleSettings": false, + "allowInput": true, + "format": "yyyy-MM-dd hh:mm a", + "placeholder": "", + "description": "", + "tooltip": "", + "customClass": "", + "tabindex": "", + "hidden": false, + "hideLabel": false, + "autofocus": false, + "disabled": false, + "tableView": false, + "modalEdit": false, + "shortcutButtons": [], + "enableDate": true, + "datePicker": { + "disable": "", + "disableFunction": "", + "disableWeekends": false, + "disableWeekdays": false, + "minDate": null, + "maxDate": null, + "showWeeks": true, + "startingDay": 0, + "initDate": "", + "minMode": "day", + "maxMode": "year", + "yearRows": 4, + "yearColumns": 5 + }, + "enableTime": true, + "timePicker": { + "showMeridian": true, + "hourStep": 1, + "minuteStep": 1, + "readonlyInput": false, + "mousewheel": true, + "arrowkeys": true + }, + "multiple": false, + "defaultValue": "", + "defaultDate": "", + "customOptions": {}, + "persistent": true, + "protected": false, + "dbIndex": false, + "encrypted": false, + "redrawOn": "", + "clearOnHide": true, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "allowCalculateOverride": false, + "validateOn": "change", + "validate": { + "required": false, + "customMessage": "", + "custom": "", + "customPrivate": false, + "json": "", + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "enableMinDateInput": false, + "enableMaxDateInput": false, + "unique": false, + "errorLabel": "", + "errors": "", + "key": "date", + "tags": [], + "properties": {}, + "conditional": { + "show": null, + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "datetime", + "timezone": "", + "input": true, + "prefix": "", + "suffix": "", + "refreshOn": "", + "dataGridLabel": false, + "widget": { + "type": "calendar", + "displayInTimezone": "viewer", + "locale": "en", + "useLocaleSettings": false, + "allowInput": true, + "mode": "single", + "enableTime": true, + "noCalendar": false, + "format": "yyyy-MM-dd hh:mm a", + "hourIncrement": 1, + "minuteIncrement": 1, + "time_24hr": false, + "minDate": null, + "disabledDates": "", + "disableWeekends": false, + "disableWeekdays": false, + "disableFunction": "", + "maxDate": null + }, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "datepickerMode": "day", + "id": "ewqskd" + } + ], + "width": 6, + "offset": 0, + "push": 0, + "pull": 0, + "size": "md", + "currentWidth": 6 + } + ], + "key": "approvedProfessionalSignature", + "type": "columns", + "input": false, + "tableView": false, + "id": "ehbime0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "hidden": false, + "clearOnHide": false, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "tree": false, + "lazyLoad": false, + "autoAdjust": false + } + ], + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "unique": false, + "refreshOn": "", + "dataGridLabel": false, + "widget": null, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "tree": true, + "lazyLoad": false, + "id": "et2496k" + } + ], + "id": "ew977y" + }, + { + "html": "

Part 8 - Statement of Site Owner / Agent / Lessee

 

8.1 Offsite Migration Notification

", + "label": "Content", + "customClass": "", + "refreshOnChange": false, + "hidden": false, + "modalEdit": false, + "key": "content61", + "tags": [], + "properties": {}, + "conditional": { + "show": null, + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "content", + "input": false, + "tableView": false, + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "id": "e31mug" + }, + { + "title": "SECTION I - Offsite Migration Notification", + "theme": "default", + "tooltip": "", + "customClass": "", + "collapsible": false, + "hidden": false, + "hideLabel": false, + "disabled": false, + "modalEdit": false, + "key": "sectionIOffsiteMigration", + "tags": [], + "properties": {}, + "customConditional": "", + "conditional": { + "json": "", + "show": null, + "when": null, + "eq": "" + }, + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "panel", + "label": "Panel", + "breadcrumb": "default", + "tabindex": "", + "input": false, + "tableView": false, + "components": [ + { + "label": "Not Applicable", + "tableView": false, + "key": "notApplicable", + "type": "checkbox", + "input": true, + "defaultValue": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": true, + "labelPosition": "right", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "inputType": "checkbox", + "value": "", + "name": "", + "id": "e3tubmm" + }, + { + "html": "

If it is known that one or more substances has migrated or is likely to have migrated to a neighbouring site and is or is likely causing contamination of the neighbouring site, have notifications been given?

See CSR Sec. 57 and 60.1 for requirements.

", + "label": "Content", + "customClass": "", + "refreshOnChange": false, + "hidden": false, + "modalEdit": false, + "key": "content62", + "tags": [], + "properties": {}, + "conditional": { + "show": null, + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "content", + "input": false, + "tableView": false, + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "id": "ei2pshc" + }, + { + "label": "Have owners of impacted offsite properties been formally notified?", + "labelPosition": "top", + "optionsLabelPosition": "right", + "description": "", + "tooltip": "", + "customClass": "", + "tabindex": "", + "inline": false, + "hidden": false, + "hideLabel": false, + "autofocus": false, + "disabled": false, + "tableView": false, + "modalEdit": false, + "values": [ + { + "label": "Yes", + "value": "yes", + "shortcut": "" + }, + { + "label": "No", + "value": "no", + "shortcut": "" + } + ], + "dataType": "", + "persistent": true, + "protected": false, + "dbIndex": false, + "encrypted": false, + "redrawOn": "", + "clearOnHide": true, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "allowCalculateOverride": false, + "validate": { + "required": false, + "onlyAvailableItems": false, + "customMessage": "", + "custom": "", + "customPrivate": false, + "json": "", + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "errorLabel": "", + "errors": "", + "key": "haveOwnersOfImpactedOffsitePropertiesBeenFormallyNotified", + "tags": [], + "properties": {}, + "conditional": { + "show": null, + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "radio", + "input": true, + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "unique": false, + "refreshOn": "", + "dataGridLabel": false, + "widget": null, + "validateOn": "change", + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "inputType": "radio", + "fieldSet": false, + "id": "e5x4165", + "defaultValue": "" + }, + { + "label": "Has the ministry been formally notified?", + "labelPosition": "top", + "optionsLabelPosition": "right", + "description": "", + "tooltip": "", + "customClass": "", + "tabindex": "", + "inline": false, + "hidden": false, + "hideLabel": false, + "autofocus": false, + "disabled": false, + "tableView": false, + "modalEdit": false, + "values": [ + { + "label": "Yes", + "value": "yes", + "shortcut": "" + }, + { + "label": "No", + "value": "no", + "shortcut": "" + } + ], + "dataType": "", + "persistent": true, + "protected": false, + "dbIndex": false, + "encrypted": false, + "redrawOn": "", + "clearOnHide": true, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "allowCalculateOverride": false, + "validate": { + "required": false, + "onlyAvailableItems": false, + "customMessage": "", + "custom": "", + "customPrivate": false, + "json": "", + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "errorLabel": "", + "errors": "", + "key": "hasTheMinistryBeenFormallyNotified", + "tags": [], + "properties": {}, + "conditional": { + "show": null, + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "radio", + "input": true, + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "unique": false, + "refreshOn": "", + "dataGridLabel": false, + "widget": null, + "validateOn": "change", + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "inputType": "radio", + "fieldSet": false, + "id": "ert8af", + "defaultValue": "" + } + ], + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "clearOnHide": false, + "refreshOn": "", + "redrawOn": "", + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "tree": false, + "lazyLoad": false, + "id": "egmyibh" + }, + { + "title": "SECTION II - Confirmations by Owner/Agent/Lessee Regarding Approved Professional", + "theme": "default", + "tooltip": "", + "customClass": "", + "collapsible": false, + "hidden": false, + "hideLabel": false, + "disabled": false, + "modalEdit": false, + "key": "sectionIiConfirmationsByOwnerAgentLesseeRegardingApprovedProfessional", + "tags": [], + "properties": {}, + "customConditional": "", + "conditional": { + "json": "", + "show": null, + "when": null, + "eq": "" + }, + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "panel", + "label": "Panel", + "breadcrumb": "default", + "tabindex": "", + "input": false, + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "clearOnHide": false, + "refreshOn": "", + "redrawOn": "", + "tableView": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "tree": false, + "lazyLoad": false, + "components": [ + { + "label": "This is to acknowledge that as:", + "labelPosition": "top", + "optionsLabelPosition": "right", + "description": "", + "tooltip": "", + "customClass": "", + "tabindex": "", + "inline": false, + "hidden": false, + "hideLabel": false, + "autofocus": false, + "disabled": false, + "tableView": false, + "modalEdit": false, + "values": [ + { + "label": "The Owner", + "value": "theOwner", + "shortcut": "" + }, + { + "label": "The Agent on behalf of the owner", + "value": "theAgentOnBehalfOfTheOwner", + "shortcut": "" + }, + { + "label": "Lessee", + "value": "lessee", + "shortcut": "" + }, + { + "label": "The agent on behalf of the responsible party", + "value": "theAgentOnBehalfOfTheResponsibleParty", + "shortcut": "" + } + ], + "persistent": true, + "protected": false, + "dbIndex": false, + "encrypted": false, + "redrawOn": "", + "clearOnHide": true, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "allowCalculateOverride": false, + "validate": { + "required": true, + "onlyAvailableItems": false, + "customMessage": "", + "custom": "", + "customPrivate": false, + "json": "", + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "errorLabel": "", + "minSelectedCountMessage": "", + "maxSelectedCountMessage": "", + "errors": "", + "key": "thisIsToAcknowledgeThatAs", + "tags": [], + "properties": {}, + "conditional": { + "show": null, + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "selectboxes", + "input": true, + "inputType": "checkbox", + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "unique": false, + "refreshOn": "", + "dataGridLabel": false, + "widget": null, + "validateOn": "change", + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "fieldSet": false, + "id": "e7tj2m", + "defaultValue": { + "theOwner": false, + "theAgentOnBehalfOfTheOwner": false, + "lessee": false, + "theAgentOnBehalfOfTheResponsibleParty": false + } + }, + { + "html": "

Of the site, I have engaged

", + "label": "Content", + "customClass": "", + "refreshOnChange": false, + "hidden": false, + "modalEdit": false, + "key": "content64", + "tags": [], + "properties": {}, + "conditional": { + "show": null, + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "content", + "input": false, + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "tableView": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "id": "ezlflsn" + }, + { + "label": "Data Grid", + "reorder": false, + "addAnotherPosition": "bottom", + "layoutFixed": false, + "enableRowGroups": false, + "initEmpty": false, + "hideLabel": true, + "tableView": false, + "defaultValue": [ + {} + ], + "key": "dataGrid17", + "type": "datagrid", + "input": true, + "components": [ + { + "label": "Name(s) of Approved Professional(s)", + "labelPosition": "top", + "placeholder": "", + "description": "", + "tooltip": "", + "prefix": "", + "suffix": "", + "widget": { + "type": "input" + }, + "inputMask": "", + "displayMask": "", + "allowMultipleMasks": false, + "customClass": "", + "tabindex": "", + "autocomplete": "", + "hidden": false, + "hideLabel": false, + "showWordCount": false, + "showCharCount": false, + "mask": false, + "autofocus": false, + "spellcheck": true, + "dataGridLabel": false, + "disabled": false, + "tableView": true, + "modalEdit": false, + "multiple": false, + "persistent": true, + "inputFormat": "plain", + "protected": false, + "dbIndex": false, + "case": "", + "truncateMultipleSpaces": false, + "encrypted": false, + "redrawOn": "", + "clearOnHide": true, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "allowCalculateOverride": false, + "validateOn": "change", + "validate": { + "required": true, + "pattern": "", + "customMessage": "", + "custom": "", + "customPrivate": false, + "json": "", + "minLength": "", + "maxLength": "", + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "unique": false, + "errorLabel": "", + "errors": "", + "key": "approvedProfessionalFullName", + "tags": [], + "properties": {}, + "conditional": { + "show": null, + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "textfield", + "input": true, + "refreshOn": "", + "addons": [], + "inputType": "text", + "id": "errpqaf00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "defaultValue": "" + } + ], + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "tree": true, + "lazyLoad": false, + "disableAddingRemovingRows": false, + "id": "ezfplf" + }, + { + "html": "

as the Approved Professional(s) to review site investigation, risk assessment and remediation reports and to make submission and application with recommendations, if applicable, for the regulatory instrument(s) as indicated in this Summary of Site Condition.

If signing as the agent of the owner or lessee, written consent from the owner or lessee authorizing signature of this Summary of Site Condition must be attached

", + "label": "Content", + "customClass": "", + "refreshOnChange": false, + "hidden": false, + "modalEdit": false, + "key": "content65", + "tags": [], + "properties": {}, + "conditional": { + "show": null, + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "content", + "input": false, + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "tableView": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "id": "eelhteh" + }, + { + "label": "I agree to comply with any requirements on the site regarding monitoring and maintenance of works as documented in schedule B of the draft contaminated sites legal instrument", + "description": "", + "tooltip": "", + "shortcut": "", + "inputType": "checkbox", + "customClass": "", + "tabindex": "", + "hidden": false, + "hideLabel": false, + "autofocus": false, + "disabled": false, + "tableView": false, + "modalEdit": false, + "persistent": true, + "protected": false, + "dbIndex": false, + "encrypted": false, + "redrawOn": "", + "clearOnHide": true, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "allowCalculateOverride": false, + "validate": { + "required": true, + "customMessage": "", + "custom": "", + "customPrivate": false, + "json": "", + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "errorLabel": "", + "errors": "", + "key": "checkbox", + "tags": [], + "properties": {}, + "conditional": { + "show": null, + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "checkbox", + "name": "", + "value": "", + "input": true, + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "unique": false, + "refreshOn": "", + "dataGridLabel": true, + "labelPosition": "right", + "widget": null, + "validateOn": "change", + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "id": "eldkgns", + "defaultValue": false + }, + { + "label": "I accept that if a risk assessment has been applied at the site, that the risk assessment is only valid as long as conditions at the site do not change.", + "description": "", + "tooltip": "", + "shortcut": "", + "inputType": "checkbox", + "customClass": "", + "tabindex": "", + "hidden": false, + "hideLabel": false, + "autofocus": false, + "disabled": false, + "tableView": false, + "modalEdit": false, + "persistent": true, + "protected": false, + "dbIndex": false, + "encrypted": false, + "redrawOn": "", + "clearOnHide": true, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "allowCalculateOverride": false, + "validate": { + "required": true, + "customMessage": "", + "custom": "", + "customPrivate": false, + "json": "", + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "errorLabel": "", + "errors": "", + "key": "iAcceptThatIfARiskAssessmentHasBeenAppliedAtTheSiteThatTheRiskAssessmentIsOnlyValidAsLongAsConditionsAtTheSiteDoNotChange", + "tags": [], + "properties": {}, + "conditional": { + "show": null, + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "checkbox", + "name": "", + "value": "", + "input": true, + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "unique": false, + "refreshOn": "", + "dataGridLabel": true, + "labelPosition": "right", + "widget": null, + "validateOn": "change", + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "id": "eogtso", + "defaultValue": false + }, + { + "label": "I have undertaken reasonable inquiry into the previous ownership and uses of the property and to the best of my knowledge I have provided to the Approved Professional, information relevant to the investigation and remediation of the environmental condition of the site, in the preparation of this document.", + "description": "", + "tooltip": "", + "shortcut": "", + "inputType": "checkbox", + "customClass": "", + "tabindex": "", + "hidden": false, + "hideLabel": false, + "autofocus": false, + "disabled": false, + "tableView": false, + "modalEdit": false, + "persistent": true, + "protected": false, + "dbIndex": false, + "encrypted": false, + "redrawOn": "", + "clearOnHide": true, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "allowCalculateOverride": false, + "validate": { + "required": true, + "customMessage": "", + "custom": "", + "customPrivate": false, + "json": "", + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "errorLabel": "", + "errors": "", + "key": "iHaveUndertakenReasonableInquiryIntoThePreviousOwnershipAndUsesOfThePropertyAndToTheBestOfMyKnowledgeIHaveProvidedToTheApprovedProfessionalInformationRelevantToTheInvestigationAndRemediationOfTheEnvironmentalConditionOfTheSiteInThePreparationOfThisDocument", + "tags": [], + "properties": {}, + "conditional": { + "show": null, + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "checkbox", + "name": "", + "value": "", + "input": true, + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "unique": false, + "refreshOn": "", + "dataGridLabel": true, + "labelPosition": "right", + "widget": null, + "validateOn": "change", + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "id": "etmpgu", + "defaultValue": false + }, + { + "label": "I acknowledge that this Summary of Site Condition becomes a public document after it has been received and acknowledged by the Director of Waste Management. Any party intending to purchase, lease, take a security interest in, or occupy the site may review this document and any supporting documents to satisfy themselves with respect to the environmental condition of the site, and the extent of responsibility and liability that may arise from taking ownership, taking a security interest, or occupying the site. ", + "description": "", + "tooltip": "", + "shortcut": "", + "inputType": "checkbox", + "customClass": "", + "tabindex": "", + "hidden": false, + "hideLabel": false, + "autofocus": false, + "disabled": false, + "tableView": false, + "modalEdit": false, + "defaultValue": false, + "persistent": true, + "protected": false, + "dbIndex": false, + "encrypted": false, + "redrawOn": "", + "clearOnHide": true, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "allowCalculateOverride": false, + "validate": { + "required": true, + "customMessage": "", + "custom": "", + "customPrivate": false, + "json": "", + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "errorLabel": "", + "errors": "", + "key": "iAcknowledgeThatThisSummaryOfSiteConditionBecomesAPublicDocumentAfterItHasBeenReceivedAndAcknowledgedByTheDirectorOfWasteManagementAnyPartyIntendingToPurchaseLeaseTakeASecurityInterestInOrOccupyTheSiteMayReviewThisDocumentAndAnySupportingDocumentsToSatisfyThemselvesWithRespectToTheEnvironmentalConditionOfTheSiteAndTheExtentOfResponsibilityAndLiabilityThatMayAriseFromTakingOwnershipTakingASecurityInterestOrOccupyingTheSite", + "tags": [], + "properties": {}, + "conditional": { + "show": null, + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "checkbox", + "name": "", + "value": "", + "input": true, + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "unique": false, + "refreshOn": "", + "dataGridLabel": true, + "labelPosition": "right", + "widget": null, + "validateOn": "change", + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "id": "e57l23" + }, + { + "label": "Approved Professional Signatures", + "columns": [ + { + "components": [ + { + "label": "I have made no modifications to this document except as allowed by the form", + "description": "", + "tooltip": "", + "shortcut": "", + "inputType": "checkbox", + "customClass": "", + "tabindex": "", + "hidden": false, + "hideLabel": false, + "autofocus": false, + "disabled": false, + "tableView": false, + "modalEdit": false, + "defaultValue": false, + "persistent": true, + "protected": false, + "dbIndex": false, + "encrypted": false, + "redrawOn": "", + "clearOnHide": true, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "allowCalculateOverride": false, + "validate": { + "required": true, + "customMessage": "", + "custom": "", + "customPrivate": false, + "json": "", + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "errorLabel": "", + "errors": "", + "key": "iHaveMadeNoModificationsToThisDocumentExceptAsAllowedByTheForm", + "tags": [], + "properties": {}, + "conditional": { + "show": null, + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "checkbox", + "name": "", + "value": "", + "input": true, + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "unique": false, + "refreshOn": "", + "dataGridLabel": true, + "labelPosition": "right", + "widget": null, + "validateOn": "change", + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "id": "ed8psb" + }, + { + "label": "First Name", + "tableView": true, + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "key": "firstName", + "type": "textfield", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "et5ljp" + }, + { + "label": "Last Name", + "tableView": true, + "key": "lastName", + "type": "textfield", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "eq5xc5d" + }, + { + "label": "Signature of Owner/Agent/Lessee", + "footer": "Sign above", + "labelPosition": "top", + "width": "100%", + "height": "150px", + "backgroundColor": "rgb(245,245,235)", + "penColor": "black", + "description": "", + "tooltip": "", + "customClass": "", + "tabindex": "", + "hidden": false, + "hideLabel": false, + "disabled": false, + "tableView": false, + "modalEdit": false, + "persistent": true, + "protected": false, + "encrypted": false, + "redrawOn": "", + "clearOnHide": true, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "allowCalculateOverride": false, + "validate": { + "required": true, + "customMessage": "", + "custom": "", + "customPrivate": false, + "json": "", + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "errorLabel": "", + "errors": "", + "key": "signatureOfApprovedProfessional", + "tags": [], + "properties": {}, + "conditional": { + "show": null, + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "signature", + "input": true, + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "unique": false, + "refreshOn": "", + "dataGridLabel": false, + "autofocus": false, + "dbIndex": false, + "widget": { + "type": "input" + }, + "validateOn": "change", + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "minWidth": "0.5", + "maxWidth": "2.5", + "keepOverlayRatio": true, + "id": "ehazy0p" + }, + { + "label": "Date", + "labelPosition": "top", + "displayInTimezone": "viewer", + "useLocaleSettings": false, + "allowInput": true, + "format": "yyyy-MM-dd hh:mm a", + "placeholder": "", + "description": "", + "tooltip": "", + "customClass": "", + "tabindex": "", + "hidden": false, + "hideLabel": false, + "autofocus": false, + "disabled": false, + "tableView": false, + "modalEdit": false, + "shortcutButtons": [], + "enableDate": true, + "datePicker": { + "disable": "", + "disableFunction": "", + "disableWeekends": false, + "disableWeekdays": false, + "minDate": null, + "maxDate": null, + "showWeeks": true, + "startingDay": 0, + "initDate": "", + "minMode": "day", + "maxMode": "year", + "yearRows": 4, + "yearColumns": 5 + }, + "enableTime": true, + "timePicker": { + "showMeridian": true, + "hourStep": 1, + "minuteStep": 1, + "readonlyInput": false, + "mousewheel": true, + "arrowkeys": true + }, + "multiple": false, + "defaultValue": "", + "defaultDate": "", + "customOptions": {}, + "persistent": true, + "protected": false, + "dbIndex": false, + "encrypted": false, + "redrawOn": "", + "clearOnHide": true, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "allowCalculateOverride": false, + "validateOn": "change", + "validate": { + "required": false, + "customMessage": "", + "custom": "", + "customPrivate": false, + "json": "", + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "enableMinDateInput": false, + "enableMaxDateInput": false, + "unique": false, + "errorLabel": "", + "errors": "", + "key": "dateTime", + "tags": [], + "properties": {}, + "conditional": { + "show": null, + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "datetime", + "timezone": "", + "input": true, + "widget": { + "type": "calendar", + "displayInTimezone": "viewer", + "locale": "en", + "useLocaleSettings": false, + "allowInput": true, + "mode": "single", + "enableTime": true, + "noCalendar": false, + "format": "yyyy-MM-dd hh:mm a", + "hourIncrement": 1, + "minuteIncrement": 1, + "time_24hr": false, + "minDate": null, + "disabledDates": "", + "disableWeekends": false, + "disableWeekdays": false, + "disableFunction": "", + "maxDate": null + }, + "prefix": "", + "suffix": "", + "refreshOn": "", + "dataGridLabel": false, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "datepickerMode": "day", + "id": "etjv8wm" + } + ], + "width": 6, + "offset": 0, + "push": 0, + "pull": 0, + "size": "md", + "currentWidth": 6 + }, + { + "components": [ + { + "label": "Address", + "labelPosition": "top", + "placeholder": "", + "description": "", + "tooltip": "", + "prefix": "", + "suffix": "", + "widget": { + "type": "input" + }, + "inputMask": "", + "displayMask": "", + "allowMultipleMasks": false, + "customClass": "", + "tabindex": "", + "autocomplete": "", + "hidden": false, + "hideLabel": false, + "showWordCount": false, + "showCharCount": false, + "mask": false, + "autofocus": false, + "spellcheck": true, + "disabled": false, + "tableView": true, + "modalEdit": false, + "multiple": false, + "persistent": true, + "inputFormat": "plain", + "protected": false, + "dbIndex": false, + "case": "", + "truncateMultipleSpaces": false, + "encrypted": false, + "redrawOn": "", + "clearOnHide": true, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "allowCalculateOverride": false, + "validateOn": "change", + "validate": { + "required": true, + "pattern": "", + "customMessage": "", + "custom": "", + "customPrivate": false, + "json": "", + "minLength": "", + "maxLength": "", + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "unique": false, + "errorLabel": "", + "errors": "", + "key": "address", + "tags": [], + "properties": {}, + "conditional": { + "show": null, + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "textfield", + "input": true, + "refreshOn": "", + "dataGridLabel": false, + "addons": [], + "inputType": "text", + "id": "ehvzv6o", + "defaultValue": "" + }, + { + "input": false, + "key": "columns1", + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "hidden": false, + "clearOnHide": false, + "refreshOn": "", + "redrawOn": "", + "tableView": false, + "modalEdit": false, + "label": "Columns", + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "tree": false, + "lazyLoad": false, + "type": "columns", + "columns": [ + { + "components": [ + { + "label": "City", + "labelPosition": "top", + "placeholder": "", + "description": "", + "tooltip": "", + "prefix": "", + "suffix": "", + "widget": { + "type": "input" + }, + "inputMask": "", + "displayMask": "", + "allowMultipleMasks": false, + "customClass": "", + "tabindex": "", + "autocomplete": "", + "hidden": false, + "hideLabel": false, + "showWordCount": false, + "showCharCount": false, + "mask": false, + "autofocus": false, + "spellcheck": true, + "disabled": false, + "tableView": true, + "modalEdit": false, + "multiple": false, + "persistent": true, + "inputFormat": "plain", + "protected": false, + "dbIndex": false, + "case": "", + "truncateMultipleSpaces": false, + "encrypted": false, + "redrawOn": "", + "clearOnHide": true, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "allowCalculateOverride": false, + "validateOn": "change", + "validate": { + "required": true, + "pattern": "", + "customMessage": "", + "custom": "", + "customPrivate": false, + "json": "", + "minLength": "", + "maxLength": "", + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "unique": false, + "errorLabel": "", + "errors": "", + "key": "city", + "tags": [], + "properties": {}, + "conditional": { + "show": null, + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "textfield", + "input": true, + "refreshOn": "", + "dataGridLabel": false, + "addons": [], + "inputType": "text", + "id": "e1koxeg", + "defaultValue": "" + }, + { + "label": "Postal Code", + "labelPosition": "top", + "placeholder": "", + "description": "", + "tooltip": "", + "prefix": "", + "suffix": "", + "widget": { + "type": "input" + }, + "inputMask": "", + "displayMask": "", + "allowMultipleMasks": false, + "customClass": "", + "tabindex": "", + "autocomplete": "", + "hidden": false, + "hideLabel": false, + "showWordCount": false, + "showCharCount": false, + "mask": false, + "autofocus": false, + "spellcheck": true, + "disabled": false, + "tableView": true, + "modalEdit": false, + "multiple": false, + "persistent": true, + "inputFormat": "plain", + "protected": false, + "dbIndex": false, + "case": "", + "truncateMultipleSpaces": false, + "encrypted": false, + "redrawOn": "", + "clearOnHide": true, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "allowCalculateOverride": false, + "validateOn": "change", + "validate": { + "required": true, + "pattern": "", + "customMessage": "", + "custom": "", + "customPrivate": false, + "json": "", + "minLength": "", + "maxLength": "", + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "unique": false, + "errorLabel": "", + "errors": "", + "key": "postalCode1", + "tags": [], + "properties": {}, + "conditional": { + "show": null, + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "textfield", + "input": true, + "refreshOn": "", + "dataGridLabel": false, + "addons": [], + "inputType": "text", + "id": "eiw0krr", + "defaultValue": "" + } + ], + "width": 6, + "offset": 0, + "push": 0, + "pull": 0, + "size": "md", + "currentWidth": 6 + }, + { + "components": [ + { + "label": "Province", + "labelPosition": "top", + "placeholder": "", + "description": "", + "tooltip": "", + "prefix": "", + "suffix": "", + "widget": { + "type": "input" + }, + "inputMask": "", + "displayMask": "", + "allowMultipleMasks": false, + "customClass": "", + "tabindex": "", + "autocomplete": "", + "hidden": false, + "hideLabel": false, + "showWordCount": false, + "showCharCount": false, + "mask": false, + "autofocus": false, + "spellcheck": true, + "disabled": false, + "tableView": true, + "modalEdit": false, + "multiple": false, + "persistent": true, + "inputFormat": "plain", + "protected": false, + "dbIndex": false, + "case": "", + "truncateMultipleSpaces": false, + "encrypted": false, + "redrawOn": "", + "clearOnHide": true, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "allowCalculateOverride": false, + "validateOn": "change", + "validate": { + "required": true, + "pattern": "", + "customMessage": "", + "custom": "", + "customPrivate": false, + "json": "", + "minLength": "", + "maxLength": "", + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "unique": false, + "errorLabel": "", + "errors": "", + "key": "province", + "tags": [], + "properties": {}, + "conditional": { + "show": null, + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "textfield", + "input": true, + "refreshOn": "", + "dataGridLabel": false, + "addons": [], + "inputType": "text", + "id": "es4bja", + "defaultValue": "" + }, + { + "label": "Country", + "labelPosition": "top", + "placeholder": "", + "description": "", + "tooltip": "", + "prefix": "", + "suffix": "", + "widget": { + "type": "input" + }, + "inputMask": "", + "displayMask": "", + "allowMultipleMasks": false, + "customClass": "", + "tabindex": "", + "autocomplete": "", + "hidden": false, + "hideLabel": false, + "showWordCount": false, + "showCharCount": false, + "mask": false, + "autofocus": false, + "spellcheck": true, + "disabled": false, + "tableView": true, + "modalEdit": false, + "multiple": false, + "persistent": true, + "inputFormat": "plain", + "protected": false, + "dbIndex": false, + "case": "", + "truncateMultipleSpaces": false, + "encrypted": false, + "redrawOn": "", + "clearOnHide": true, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "allowCalculateOverride": false, + "validateOn": "change", + "validate": { + "required": true, + "pattern": "", + "customMessage": "", + "custom": "", + "customPrivate": false, + "json": "", + "minLength": "", + "maxLength": "", + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "unique": false, + "errorLabel": "", + "errors": "", + "key": "country", + "tags": [], + "properties": {}, + "conditional": { + "show": null, + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "textfield", + "input": true, + "refreshOn": "", + "dataGridLabel": false, + "addons": [], + "inputType": "text", + "id": "e893hnl", + "defaultValue": "" + } + ], + "width": 6, + "offset": 0, + "push": 0, + "pull": 0, + "size": "md", + "currentWidth": 6 + } + ], + "autoAdjust": false, + "id": "ergznb" + } + ], + "width": 6, + "offset": 0, + "push": 0, + "pull": 0, + "size": "md", + "currentWidth": 6 + } + ], + "key": "approvedProfessionalSignature", + "type": "columns", + "input": false, + "tableView": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "hidden": false, + "clearOnHide": false, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "tree": false, + "lazyLoad": false, + "autoAdjust": false, + "id": "e18pyfg" + } + ], + "id": "e3jlek" + }, + { + "type": "button", + "label": "Submit", + "key": "submit", + "size": "md", + "block": false, + "action": "submit", + "disableOnInvalid": true, + "theme": "primary", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "tableView": false, + "modalEdit": false, + "dataGridLabel": true, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "leftIcon": "", + "rightIcon": "", + "id": "emkrxp" + }, + { + "label": "bundleStatus", + "customClass": "", + "modalEdit": false, + "defaultValue": null, + "persistent": true, + "protected": false, + "dbIndex": false, + "encrypted": false, + "redrawOn": "", + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "key": "bundleStatus", + "tags": [], + "properties": {}, + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "hidden", + "input": true, + "tableView": false, + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "unique": false, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "widget": { + "type": "input" + }, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "allowCalculateOverride": false, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "inputType": "hidden", + "id": "eryzjur" + }, + { + "label": "soscUtilKeys", + "customDefaultValue": "const cssaKeys = Object.keys(\n      utils.flattenComponents(form.components, false)\n    );\n\nvalue = cssaKeys;", + "key": "cssaUtilKeys", + "type": "hidden", + "input": true, + "tableView": false, + "keyModified": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "inputType": "hidden", + "id": "e6did" + }, + { + "label": "soscStatus", + "customClass": "", + "modalEdit": false, + "defaultValue": null, + "persistent": true, + "protected": false, + "dbIndex": false, + "encrypted": false, + "redrawOn": "", + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "key": "soscBundleStatus", + "tags": [], + "properties": {}, + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "hidden", + "input": true, + "tableView": false, + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "unique": false, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "widget": { + "type": "input" + }, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "allowCalculateOverride": false, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "inputType": "hidden", + "id": "epy41s4" + }, + { + "label": "applicationId", + "customClass": "", + "addons": [], + "modalEdit": false, + "persistent": true, + "protected": false, + "dbIndex": false, + "encrypted": false, + "redrawOn": "", + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "key": "applicationId", + "tags": [], + "properties": {}, + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "hidden", + "input": true, + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "unique": false, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "tableView": false, + "labelPosition": "top", + "Description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "widget": { + "type": "input" + }, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "allowCalculateOverride": false, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "inputType": "hidden", + "id": "em1y8gd", + "defaultValue": "", + "dataGridLabel": false, + "description": "" + }, + { + "label": "applicationStatus", + "addons": [], + "customClass": "", + "modalEdit": false, + "defaultValue": null, + "persistent": true, + "protected": false, + "dbIndex": false, + "encrypted": false, + "redrawOn": "", + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "key": "applicationStatus", + "tags": [], + "properties": {}, + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "hidden", + "input": true, + "tableView": false, + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "unique": false, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "dataGridLabel": false, + "labelPosition": "top", + "Description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "widget": { + "type": "input" + }, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "allowCalculateOverride": false, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "inputType": "hidden", + "id": "e6z1qd9", + "description": "" + } + ] + } + ] +} \ No newline at end of file diff --git a/forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/processes/Bundling/callActivity/SOSCBundleWorklow.bpmn b/forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/processes/Bundling/callActivity/SOSCBundleWorklow.bpmn new file mode 100644 index 00000000..b3f92fd2 --- /dev/null +++ b/forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/processes/Bundling/callActivity/SOSCBundleWorklow.bpmn @@ -0,0 +1,2295 @@ + + + + + + + + + Activity_0a9pnut + Gateway_1qqphxe + Activity_1v5ffpw + Activity_1ozfgid + Activity_0k6ixqm + StartEvent_1 + Gateway_08cgufe + Activity_15772wo + Gateway_17raw62 + + + Activity_1uc1xs1 + Gateway_04o747e + + + Gateway_0oobb3z + Activity_08ykdar + + + Activity_1ao3zkj + Gateway_15p5urd + + + Activity_0p4hm8r + Gateway_1lbpcug + Event_0sdygwc + Activity_1hs3dja + Activity_1bsz2qm + Gateway_1lgyz1h + Activity_0tsm937 + Gateway_0o9l3lp + Activity_15e3ho6 + Gateway_1m36jwe + Gateway_0uf75ow + Activity_1bhbq4y + Activity_07ttn7q + + + Activity_0vo5rls + Gateway_1chdumm + Activity_1qnqtak + Gateway_1lfy3cm + + + + ${action == 'Accepted'} + + + + + + ${action == 'Rejected'} + + + ${!riskclassification} + + + ${action == 'Recheck'} + + + + ${applicationStatus== 'Signed'} + + + + + var system = java.lang.System; +system.out.println ("site owner flow"); + + + ${owneroperatorradioGroup=='different'} + + + ${owneroperatorradioGroup=='sameAsApplicant'} + + + + + execution.setVariable('isSdm',true); + + + ${action == 'Returned'} + + + + + execution.setVariable('isCaseworker',true); + + + ${action == 'Returned'} + + + + + execution.setVariable('isCssaTeam',true); + + + ${action == 'Returned'} + + + + + + + execution.setVariable('applicationStatus', "Resubmitted"); + + + + ["applicationId", "applicationStatus"] + + + + + + + + + + + + ["applicationId", "applicationStatus"] + + + + + + + + + execution.setVariable('bundleUrl', execution.getVariable('formUrl')); + + + ${riskclassification != 'exempt'} + + + + + var system = java.lang.System; +execution.setVariable('isSentFromSociety',false); +system.out.println ("isSentFromSociety "+ execution.getVariable('isSentFromSociety')); + + + ${directToMinistryApplication} + + + + ${directToMinistryApplication} + + + + ${action == 'Accepted'} + + + + + execution.setVariable('isAp',true); + + + ${action == 'Returned'} + + + + ${action == 'Recheck'} + + + + + execution.setVariable('isSociety',true); + + + ${action == 'Returned'} + + + + ${action == 'Accepted'} + + + + ${applicationStatus== 'Resubmitted' and isCssaTeam== true} + + + ${applicationStatus== 'Resubmitted' and isSociety== true} + + + ${applicationStatus== 'Resubmitted' and isAp== true} + + + ${applicationStatus!= 'Resubmitted'} + + + + Flow_0bz8atu + Flow_19ktqsm + Flow_0qbjx6e + Flow_1tu4hj7 + Flow_1ev1kr6 + + + + + task.execution.setVariable('isCssaTeam',false); + + + + task.execution.setVariable('applicationStatus', task.execution.getVariable('action')); +task.execution.setVariable('deleteReason', "completed"); + + + + + ["applicationId", "applicationStatus"] + + + + Flow_1quswsc + Flow_0gb2oz2 + Flow_0wr0mei + Flow_0lgivc3 + Flow_0bz8atu + + + + + + task.execution.setVariable('applicationStatus', task.execution.getVariable('action')); +task.execution.setVariable('deleteReason', "completed"); + + + + + ["applicationId", "applicationStatus"] + + + + Flow_1xx7tz6 + Flow_16fwgn1 + + + Flow_05pndkl + Flow_1asq9fa + Flow_1xx7tz6 + + + + + execution.setVariable('applicationStatus', "Resubmit"); +execution.setVariable('returnedBy', "cssaTeam"); + + + + + ["applicationId", "applicationStatus"] + + + + + Flow_19ktqsm + Flow_12uv3km + Flow_0qw9o9a + Flow_0wxa7vb + Flow_0b5e332 + Flow_1stifo9 + + + Flow_0dbqph3 + Flow_1stifo9 + Flow_05pndkl + var system = java.lang.System; +var riskclassification = execution.getVariable('riskclassification'); +system.out.println ("riskclassification "+riskclassification); +var directToMinistryApplication= execution.getVariable('directToMinistryApplication'); +system.out.println ("directToMinistryApplication? "+ directToMinistryApplication); +execution.setVariable('directToMinistryApplication',directToMinistryApplication); + +var contactEmail = execution.getVariable('contactPersonEmailAddress'); +execution.setVariable('contactEmail', contactEmail); + +var apEmail = execution.getVariable('contactPersonEmailAddress2'); +execution.setVariable('apEmail', apEmail); +system.out.println("apEmail" + apEmail); + +var clientEmail = execution.getVariable('ownerEmailAddress'); +system.out.println ("clientEmail "+clientEmail); +execution.setVariable('clientEmail',clientEmail); + +var agentEmail = execution.getVariable('contactPersonEmailAddress1'); +execution.setVariable('agentEmail',agentEmail); +system.out.println("agentEmail"+agentEmail); + +var siteRiskClassification = execution.getVariable('siteRiskClassification'); +system.out.println ("siteRiskClassification "+siteRiskClassification ); +execution.setVariable('siteRiskClassification',siteRiskClassification); + + +var isOwnerApplicant= execution.getVariable('isApplicantSameAsAbove'); +var hiddenUserIdForFormSharingApplicantAsOwner = execution.getVariable('hiddenUserIdForFormSharingApplicantAsOwner'); +var hiddenUserIdForFormSharingWithDiffOwner = execution.getVariable('hiddenUserIdForFormSharingWithDiffOwner'); +var userIdForSharing = ''; + + +system.out.println ("isOwnerApplicant"+isOwnerApplicant); +system.out.println ("hiddenUserIdForFormSharingApplicantAsOwner"+hiddenUserIdForFormSharingApplicantAsOwner); +system.out.println ("hiddenUserIdForFormSharingWithDiffOwner "+hiddenUserIdForFormSharingWithDiffOwner); + + +if(isOwnerApplicant) + { + system.out.println("owneroperatorradioGroup"+hiddenUserIdForFormSharingApplicantAsOwner); + userIdForSharing = hiddenUserIdForFormSharingApplicantAsOwner; + + } + else + { + + system.out.println("WithDiffOwner"+hiddenUserIdForFormSharingWithDiffOwner); + userIdForSharing = hiddenUserIdForFormSharingWithDiffOwner; + + } + +system.out.println ("userIdForSharing"+userIdForSharing); +execution.setVariable('userIdForSharing',userIdForSharing); + + + Flow_1rc30l8 + Flow_0dbqph3 + var system = java.lang.System; +system.out.println ("Submit Bundle"); +execution.setVariable('isAp',false); +execution.setVariable('isSociety',false); +execution.setVariable('isCssaTeam',false); + + + Flow_1rc30l8 + + + Flow_1xj96i6 + Flow_1quswsc + Flow_142lsgk + + + + + task.execution.setVariable('isSociety',false); + + + + task.execution.setVariable('applicationStatus', task.execution.getVariable('action')); +task.execution.setVariable('deleteReason', "completed"); +var system = java.lang.System; +task.execution.setVariable('isSentFromSociety',true); +system.out.println ("isSentFromSociety "+ task.execution.getVariable('isSentFromSociety')); + + + + + ["applicationId", "applicationStatus"] + + + + Flow_0kfjdmp + Flow_0543g25 + Flow_1ev1kr6 + Flow_0d8ruax + + + + + task.execution.setVariable('isAp',false); + + + + task.execution.setVariable('applicationStatus', task.execution.getVariable('action')); +task.execution.setVariable('deleteReason', "completed"); + + + + + ["applicationId", "applicationStatus"] + + + + Flow_142lsgk + Flow_0pzpbn7 + Flow_0527h3y + Flow_0b418rv + + + Flow_0b418rv + Flow_12uv3km + Flow_0kfjdmp + + + Flow_0d8ruax + Flow_0gb2oz2 + Flow_0qw9o9a + Flow_0pzpbn7 + + + ${applicationStatus== 'Resubmitted' and isCaseworker== true} + + + ${applicationStatus== 'Resubmitted' and isSdm== true} + + + + + var system = java.lang.System; +system.out.println ("form signed"); + + + Flow_1asq9fa + Flow_16fwgn1 + Flow_0ohuh4k + + + Flow_0ohuh4k + Flow_1xj96i6 + Flow_0527h3y + Flow_0543g25 + Flow_0wr0mei + Flow_0d8ioqs + Flow_0ovj0pk + + + ${action == 'Recheck' and isSentFromSociety == true} + + + ${action == 'Recheck'} + + + + + + + ${action == 'Accepted'} + + + + + task.execution.setVariable('isCssaTeam',false); + + + + task.execution.setVariable('applicationStatus', task.execution.getVariable('action')); +task.execution.setVariable('deleteReason', "completed"); + + + + + ["applicationId", "applicationStatus"] + + + + Flow_1tu4hj7 + Flow_1esdw3m + Flow_0aabyhy + Flow_0gcqir8 + + + Flow_1u3s5mj + Flow_1phkhb3 + + Flow_05vthw4 + Flow_1ojyq91 + Flow_019edzt + Flow_0cdvwnp + var system = java.lang.System; +system.out.println ("Sent to Caseworker"); + + + + + + Y + + + ["pid","applicationId","process_pid","task_id"] + + + + task.execution.setVariable('task_id',task.getId()); +task.execution.setVariableLocal('variable1',"srcr"); + + + task.execution.setVariable('requestStatus', task.execution.getVariable('action')); +task.execution.setVariable('requestType', 'SRCR'); +task.execution.setVariable('deleteReason', "completed"); +task.execution.setVariable('srcrStatus', task.execution.getVariable('action')); +task.execution.setVariable('applicationStatus', task.execution.getVariable('action')); + + + + + + Flow_0cdvwnp + Flow_1ccbyzk + + + Flow_1ccbyzk + Flow_0zzhoui + Flow_1ixkifd + Flow_0pqd76u + Flow_187pabg + + + Flow_1ixkifd + Flow_0izugkb + Flow_0xqj2sm + Flow_1pdey0j + Flow_0qaeplv + var system = java.lang.System; +system.out.println ("Sent to SDM"); + + + + + + Y + + + ["pid","applicationId","process_pid","task_id"] + + + + task.execution.setVariable('task_id',task.getId()); + + + task.execution.setVariable('requestStatus', task.execution.getVariable('action')); +task.execution.setVariable('requestType', 'SRCR'); +task.execution.setVariable('deleteReason', "completed"); +task.execution.setVariable('srcrStatus', task.execution.getVariable('action')); +task.execution.setVariable('applicationStatus', task.execution.getVariable('action')); + + + + + + Flow_0qaeplv + Flow_0mtd57d + + + Flow_0mtd57d + Flow_0k5l8nk + Flow_0ryglee + Flow_1kizv19 + + + Flow_0zzhoui + Flow_0k5l8nk + Flow_14snpj2 + + + + + execution.setVariable('applicationStatus', "Resubmit"); + + + + + ["applicationId", "applicationStatus", "srcrStatus"] + + + + + Flow_187pabg + Flow_1ojyq91 + + + + + execution.setVariable('applicationStatus', "Resubmit"); + + + + + ["applicationId", "applicationStatus", "srcrStatus"] + + + + + Flow_0ryglee + Flow_0izugkb + + + Flow_0q159o1 + Flow_019edzt + Flow_0xqj2sm + + + Flow_0pqd76u + Flow_00vao62 + Flow_1axts3r + Flow_1g44pgu + Flow_1up3td8 + Flow_0c71o5w + var system = java.lang.System; +system.out.println ("Begin SRCR Flow - Sent To SRCO"); +system.out.println ("isSentFromSociety "+execution.getVariable('isSentFromSociety')); + + + Flow_1axts3r + + + + + + Y + + + ["pid","applicationId","process_pid","task_id"] + + + + task.execution.setVariable('task_id',task.getId()); +task.execution.setVariableLocal('variable1',"srcr"); + + + task.execution.setVariable('requestStatus', task.execution.getVariable('action')); +task.execution.setVariable('requestType', 'SRCR'); +task.execution.setVariable('deleteReason', "completed"); +task.execution.setVariable('srcrStatus', task.execution.getVariable('action')); +task.execution.setVariable('applicationStatus', task.execution.getVariable('action')); + + + + + + Flow_0c71o5w + Flow_0h34vew + + + Flow_0h34vew + Flow_14snpj2 + Flow_0qz0c7u + Flow_1ifs52w + + + + + execution.setVariable('applicationStatus', "Resubmit"); + + + + + ["applicationId", "applicationStatus", "srcrStatus"] + + + + + Flow_1ifs52w + Flow_00vao62 + + + Flow_0qz0c7u + Flow_1pdey0j + Flow_0q159o1 + + + + + + + ${isSentFromSociety == false} + + + + + + execution.setVariable('applicationStatus', "Resubmitted"); +execution.setVariable('requestStatus', "Resubmitted"); +execution.setVariable('srcrStatus', "Resubmitted"); + + + + ["applicationId", "applicationStatus", "srcrStatus"] + + + + + + + + ${isSentFromSociety == false} + + + + + + + ["applicationId", "applicationStatus", "srcrStatus"] + + + + execution.setVariable('srcrFormUrl', execution.getVariable('formUrl')); + + + + + + + + + execution.setVariable('bundleUrl', execution.getVariable('formUrl')); + + + ${action == 'Rejected'} + + + ${action == 'Accepted'} + + + + ${action == 'Recheck'} + + + + + + ${action == 'Returned' } + + + + + execution.setVariable('applicationStatus', "Resubmitted"); +execution.setVariable('requestStatus', "Resubmitted"); +execution.setVariable('srcrStatus', "Resubmitted"); + + + + + ["applicationId", "applicationStatus", "srcrStatus"] + + + + + + + + ${isSentFromSociety == true} + + + ${siteRiskClassification != 'notHighRisk'} + + + + + + + ["applicationId", "applicationStatus", "srcrStatus"] + + + + execution.setVariable('srcrFormUrl', execution.getVariable('formUrl')); + + + + + + + + + execution.setVariable('bundleUrl', execution.getVariable('formUrl')); + + + ${action == 'Approved' or action == 'Rejected' } + + + + + + + + ${action == 'Returned' } + + + + + execution.setVariable('bundleUrl', execution.getVariable('formUrl')); + + + ${action == 'Rejected' } + + + ${siteRiskClassification == 'notHighRisk'} + + + + + + execution.setVariable('applicationStatus', "Resubmitted"); +execution.setVariable('requestStatus', "Resubmitted"); +execution.setVariable('srcrStatus', "Resubmitted"); + + + + ["applicationId", "applicationStatus", "srcrStatus"] + + + + + + + + + + execution.setVariable('requestStatus', 'New'); +execution.setVariable('requestType', 'SRCR'); + + + + + + + + + + + + ["applicationId", "applicationStatus", "srcrStatus"] + + + + execution.setVariable('srcrFormUrl', execution.getVariable('formUrl')); + + + + + + + ${action == 'Accepted'} + + + + + + ${action == 'Returned' } + + + + + + + ${siteRiskClassification != 'notHighRisk' } + + + Flow_1kizv19 + Flow_1g44pgu + Flow_1q2jho1 + + + ${action == 'Recheck' } + + + Flow_1q2jho1 + Flow_05vthw4 + Flow_1up3td8 + + + ${siteRiskClassification == 'notHighRisk' } + + + + + + + ${isSentFromSociety == true} + + + + Flow_1kyum71 + Flow_0fa3idu + + Flow_0f731f5 + Flow_1vxydh0 + Flow_00qi8nk + Flow_130v3rp + var system = java.lang.System; +system.out.println ("Sent to SDM"); + + + + + + Y + + + ["pid","applicationId","process_pid","task_id"] + + + + task.execution.setVariable('task_id',task.getId()); + + + task.execution.setVariable('requestStatus', task.execution.getVariable('action')); +task.execution.setVariable('requestType', 'CSSA'); +task.execution.setVariable('soscStatus', task.execution.getVariable('action')); +task.execution.setVariable('applicationStatus', task.execution.getVariable('action')); +task.execution.setVariable('deleteReason', "completed"); + + + + + + Flow_130v3rp + Flow_04rzv3x + + + + + execution.setVariable('applicationStatus', "Resubmit"); + + + + + ["applicationId", "applicationStatus"] + + + + + Flow_0ui56bn + Flow_1vxydh0 + + + Flow_04rzv3x + Flow_0ui56bn + Flow_0pqk381 + Flow_07enxwq + + + Flow_07enxwq + Flow_0yy721o + + + + + + Y + + + ["pid","applicationId","process_pid","task_id"] + + + + task.execution.setVariable('task_id',task.getId()); +task.execution.setVariableLocal('variable1',"cssa"); + + + task.execution.setVariable('requestStatus', task.execution.getVariable('action')); +task.execution.setVariable('requestType', 'CSSA'); +task.execution.setVariable('soscStatus', task.execution.getVariable('action')); +task.execution.setVariable('applicationStatus', task.execution.getVariable('action')); +task.execution.setVariable('deleteReason', "completed"); + + + + + + Flow_0go33vq + Flow_13zl1nd + + + Flow_13zl1nd + Flow_0f731f5 + Flow_0yy721o + Flow_1c0kfis + + + + + execution.setVariable('applicationStatus', "Resubmit"); + + + + + ["applicationId", "applicationStatus"] + + + + + Flow_1c0kfis + Flow_06v4kdf + + + Flow_0pqk381 + Flow_06v4kdf + Flow_18exjmw + Flow_0orrcue + var system = java.lang.System; +system.out.println ("Begin CSSA Flow - Sent To Caseworker"); +execution.setVariable('isCaseworker',false); +system.out.println ("isSentFromSociety "+execution.getVariable('isSentFromSociety')); + + + Flow_18exjmw + + + Flow_0orrcue + Flow_00qi8nk + Flow_0go33vq + + + ${action == 'Accepted'} + + + + + execution.setVariable('applicationStatus', "Resubmitted"); +execution.setVariable('requestStatus', "Resubmitted"); +execution.setVariable('soscStatus', "Resubmitted"); + + + + + ["applicationId", "applicationStatus", "soscStatus"] + + + + + + + + ${isSentFromSociety == true} + + + + + + + ["applicationId", "applicationStatus", "soscStatus"] + + + + execution.setVariable('cssaFormUrl', execution.getVariable('formUrl')); + + + + + + + + + + ${action == 'Returned'} + + + + + + + ${action == 'Recheck' and isSentFromSociety == false} + + + + + + + execution.setVariable('bundleUrl', execution.getVariable('formUrl')); + + + ${action == 'Rejected' or action == 'Approved' } + + + + + execution.setVariable('bundleUrl', execution.getVariable('formUrl')); + + + ${action == 'Rejected'} + + + ${isSentFromSociety == false} + + + + + + ["applicationId", "applicationStatus", "soscStatus"] + + + + execution.setVariable('cssaFormUrl', execution.getVariable('formUrl')); + + + + + + + + + + ${action == 'Returned'} + + + + + + execution.setVariable('applicationStatus', "Resubmitted"); +execution.setVariable('requestStatus', "Resubmitted"); +execution.setVariable('soscStatus', "Resubmitted"); + + + + ["applicationId", "applicationStatus", "soscStatus"] + + + + + + + + + + execution.setVariable('requestStatus', 'New'); +execution.setVariable('requestType', 'CSSA'); + + + + + + + + + + + + + + + Flow_0qbjx6e + Flow_1nowy63 + Flow_07eueok + Flow_1xju4ax + Flow_0izwlc1 + + + Flow_08c8ij1 + Flow_0b5e332 + Flow_1jxxrt6 + Flow_07eueok + Flow_0aabyhy + + + Flow_0izwlc1 + + + + + task.execution.setVariable('isSdm',false); + + + + task.execution.setVariable('applicationStatus', task.execution.getVariable('action')); +task.execution.setVariable('deleteReason', "completed"); + + + + + ["applicationId", "applicationStatus"] + + + + Flow_07vh0na + Flow_08c8ij1 + + + + + task.execution.setVariable('isCaseworker',false); + + + + task.execution.setVariable('applicationStatus', task.execution.getVariable('action')); +task.execution.setVariable('deleteReason', "completed"); + + + + + ["applicationId", "applicationStatus"] + + + + Flow_01suxh6 + Flow_19ik9s7 + + + Flow_0qiqnks + Flow_057qs1x + Flow_01suxh6 + + + Flow_0i3fcvy + Flow_0d8ioqs + Flow_1jxxrt6 + Flow_0qiqnks + var system = java.lang.System; +system.out.println ("Begin CSSA Individual Flow - Sent To Caseworker"); +execution.setVariable('isCaseworker',false); +system.out.println ("isSentFromSociety "+execution.getVariable('isSentFromSociety')); + + + Flow_19ik9s7 + Flow_0kw2jbo + Flow_0wxa7vb + Flow_1xju4ax + Flow_1esdw3m + + + Flow_0kw2jbo + Flow_057qs1x + Flow_0ovj0pk + Flow_07vh0na + var system = java.lang.System; +system.out.println ("Sent to SDM"); + + + Flow_0fa3idu + Flow_1phkhb3 + Flow_1nowy63 + + + Flow_0drs8s9 + Flow_1kyum71 + Flow_1u3s5mj + + + + + + + ${action == 'Rejected' or action == 'Approved' } + + + ${action == 'Rejected'} + + + + + execution.setVariable('formUrl', execution.getVariable('cssaFormUrl')); + + + + execution.setVariable('bundleUrl', execution.getVariable('formUrl')); +execution.setVariable('formUrl', execution.getVariable('srcrFormUrl')); + + + + if (execution.getVariable('soscStatus') === "Approved" && execution.getVariable('srcrStatus') === "Approved" ) +{ +execution.setVariable("applicationStatus", "Approved"); +} +else{ +execution.setVariable("applicationStatus", "Rejected"); +} + + + + + + + + ${action == 'Recheck' and isSentFromSociety == false} + + + + ${isSentFromSociety == false} + + + + + ${isSentFromSociety == true} + + + ${action == 'Accepted'} + + + ${action == 'Recheck'} + + + Flow_026ykts + Flow_0drs8s9 + Flow_0i3fcvy + + + + Flow_02ysv7t + Flow_026ykts + var system = java.lang.System; +var selectCssaSdm= execution.getVariable('selectCssaSdm'); +system.out.println ("selectCssaSdm"+selectCssaSdm); +execution.setVariable('cssaSdmAssignment',selectCssaSdm); +system.out.println ("cssaSdmAssignment"+execution.getVariable('cssaSdmAssignment')); + +var selectCssaCaseworker= execution.getVariable('selectCssaCaseworker'); +system.out.println ("selectCssaCaseworker"+selectCssaCaseworker); +execution.setVariable('cssaCaseworkerAssignment',selectCssaCaseworker); +system.out.println ("cssaCaseworkerAssignment"+execution.getVariable('cssaCaseworkerAssignment')); + +var selectSdm= execution.getVariable('selectSdm'); +system.out.println ("selectSdm"+selectSdm); +execution.setVariable('sdmAssignment',selectSdm); +system.out.println ("sdmAssignment"+execution.getVariable('sdmAssignment')); + +var selectCaseworker= execution.getVariable('selectCaseworker'); +system.out.println ("selectCaseworker"+selectCaseworker); +execution.setVariable('caseworkerAssignment',selectCaseworker); +system.out.println ("caseworkerAssignment"+execution.getVariable('caseworkerAssignment')); + +var selectSrco= execution.getVariable('selectSrco'); +system.out.println ("selectSrco"+selectSrco); +execution.setVariable('srcoAssignment',selectSrco); +system.out.println ("srcoAssignment"+execution.getVariable('srcoAssignment')); + + + + Flow_0gcqir8 + Flow_02ysv7t + Flow_0lgivc3 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + From 57693b70971af45f8fb4c6d0d678e6c8842eaf8c Mon Sep 17 00:00:00 2001 From: midhun-aot Date: Mon, 25 Sep 2023 09:32:59 -0700 Subject: [PATCH 049/194] changes for SRS-73 --- .../subProcess/NOMBundleWorkflow.bpmn | 655 ++++++++++++------ .../processes/Common/CommonEmailWorkflow.bpmn | 103 +-- .../processes/Common/email-template.dmn | 28 +- 3 files changed, 536 insertions(+), 250 deletions(-) diff --git a/forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/processes/Bundling/subProcess/NOMBundleWorkflow.bpmn b/forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/processes/Bundling/subProcess/NOMBundleWorkflow.bpmn index 268b6bc7..e5f2cfcf 100644 --- a/forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/processes/Bundling/subProcess/NOMBundleWorkflow.bpmn +++ b/forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/processes/Bundling/subProcess/NOMBundleWorkflow.bpmn @@ -17,14 +17,18 @@ Activity_06nypz0 - Activity_0w5t5av + Event_0ml6v2t + Gateway_1pd38qv Activity_0ro66yt Gateway_0nd8s9d Activity_1n3rj1g Activity_1os7sys - Event_0ml6v2t Activity_040vqyo Activity_07ktr3j + Activity_0w5t5av + Gateway_15uoiyo + Activity_123733v + Activity_0hieobd @@ -38,7 +42,38 @@ var clientEmail = execution.getVariable('ownerContactEmail'); execution.setVariable('clientEmail',clientEmail); var riskclassification = execution.getVariable('riskclassification'); -system.out.println ("formUrl "+execution.getVariable('formUrl')); +system.out.println ("formUrl "+execution.getVariable('formUrl')); +execution.setVariable('emailTo',clientEmail); +execution.setVariable('name','Test'); +system.out.println ("emailTo "+execution.getVariable('emailTo')); +system.out.println ("name "+execution.getVariable('name')); + +system.out.println("dataGrid length"+ dataGrid.length); +var listOwnerEmailAddress = []; +var dataGridObject = JSON.parse(dataGrid); +for(i in dataGridObject) +{ + if(dataGridObject[i] !== null && dataGridObject[i] != undefined ) + { + var ownerEmailAddress = dataGridObject[i].ownerContactEmail; + if(ownerEmailAddress !== '') + { + listOwnerEmailAddress.push(ownerEmailAddress) + } + } +} + +if(listOwnerEmailAddress.length > 0) +{ + execution.setVariable('emailsToArray',JSON.stringify(listOwnerEmailAddress)); +} +execution.setVariable('EmailType','nom'); + + +system.out.println ("emailsToArray "+execution.getVariable('emailsToArray')); + + + @@ -62,49 +97,19 @@ task.execution.setVariable('deleteReason', "completed"); Flow_1oam11w Flow_0l71ern - - Flow_1oam11w - Flow_00mjhxs - - - Flow_00mjhxs - Flow_04l5mhw - - - Flow_10qa12g - Flow_115hro3 - Flow_1tvwlrp - - - - - - - - Flow_1tvwlrp - Flow_0l71ern - Flow_0bwxoom - - - - - - Flow_0bwxoom - Flow_0x0w3ip - Flow_0x0w3ip + + nom_updated + Flow_0ixmsle Flow_1cgcuxz - - Flow_1cgcuxz - @@ -114,22 +119,17 @@ task.execution.setVariable('deleteReason', "completed"); + - + ${action == 'Returned'} - + ${action == 'Accepted' || action == 'Approved' } - - - - - ${riskclassification == 'exempt'} - - + execution.setVariable('bundleUrl', execution.getVariable('formUrl')); @@ -137,11 +137,75 @@ task.execution.setVariable('deleteReason', "completed"); ${riskclassification != 'exempt'} - + + + + +execution.setVariable('formUrl', execution.getVariable('srcrFormUrl')); + + + + if (action == 'Approved') +{ +execution.setVariable("applicationStatus", "Approved"); +} +else{ +execution.setVariable("applicationStatus", "Rejected"); +} + + + + + + + + execution.setVariable('applicationStatus', "Resubmit"); +execution.setVariable('returnedBy', "cssaTeam"); + + + + + ["applicationId", "applicationStatus"] + + + + + Flow_04r78pc + Flow_10r3k9c + + + + + + execution.setVariable('applicationStatus', "Resubmitted"); + + + + ["applicationId", "applicationStatus"] + + + + + + + ${action == 'Rejected' } + + + + + + Flow_1ua4w6m + Flow_04r78pc + Flow_1twoj9j + + + + Flow_1cgcuxz + - Flow_115hro3 + Flow_1ld9bfn Flow_0ixmsle Flow_1ug59ee @@ -180,7 +244,7 @@ task.execution.setVariable('applicationStatus', task.execution.getVariable('acti Flow_0jq9w2c - Flow_0jq9w2c + Flow_0ojaeu2 Flow_1290fsy Flow_06k5uq7 Flow_053df1n @@ -222,7 +286,7 @@ task.execution.setVariable('applicationStatus', task.execution.getVariable('acti Flow_1j4ubaw - Flow_1j4ubaw + Flow_17jc772 Flow_0lxylta Flow_073d165 Flow_09azht9 @@ -306,7 +370,7 @@ task.execution.setVariable('applicationStatus', task.execution.getVariable('acti Flow_0wzucup - Flow_0wzucup + Flow_0o1fhdi Flow_01lxb2e Flow_1obpc5x Flow_0szkd4s @@ -361,7 +425,7 @@ execution.setVariable('srcrStatus', "Resubmitted"); ${siteRiskClassification == 'notHighRisk' } - + @@ -416,7 +480,7 @@ execution.setVariable('srcrStatus', "Resubmitted"); ${siteRiskClassification != 'notHighRisk'} - + @@ -491,7 +555,38 @@ execution.setVariable('requestType', 'SRCR'); ${siteRiskClassification != 'notHighRisk' } - + + ${action == 'Accepted'} + + + + + + ${action == 'Returned' } + + + + + + nom_updated + + + Flow_0s3yccc + Flow_03ti4c1 + Flow_0wuyk5q + Flow_117fny8 + + + + + + + Flow_117fny8 + + + + + @@ -505,67 +600,53 @@ execution.setVariable('requestType', 'SRCR'); - - ${action == 'Accepted'} - - - - - - ${action == 'Returned' } - + + Flow_0wzucup + Flow_0wuyk5q + Flow_0o1fhdi + + + Flow_0jq9w2c + Flow_0ojaeu2 + Flow_0s3yccc + + + Flow_1j4ubaw + Flow_17jc772 + Flow_03ti4c1 + - - - - -execution.setVariable('formUrl', execution.getVariable('srcrFormUrl')); - - - - if (action == 'Approved') -{ -execution.setVariable("applicationStatus", "Approved"); -} -else{ -execution.setVariable("applicationStatus", "Rejected"); -} - - - - - + + Flow_00mjhxs + Flow_04l5mhw + + + Flow_10qa12g + Flow_115hro3 + Flow_1tvwlrp + + - - execution.setVariable('applicationStatus', "Resubmit"); -execution.setVariable('returnedBy', "cssaTeam"); - + + - - - ["applicationId", "applicationStatus"] - - - - Flow_1ua4w6m - Flow_10r3k9c - - + Flow_1tvwlrp + Flow_0l71ern + Flow_0bwxoom + + - - - execution.setVariable('applicationStatus', "Resubmitted"); - - - - ["applicationId", "applicationStatus"] - - - + + + nom_updated + - - + Flow_0bwxoom + Flow_153luo3 + Flow_1twoj9j + Flow_0x0w3ip + @@ -581,9 +662,75 @@ execution.setVariable('returnedBy', "cssaTeam"); var system = java.lang.System; system.out.println (" here " + execution.getVariable('riskclassification')); - - ${action == 'Rejected' } + + Flow_1xaizis + Flow_00mjhxs + + + + + + ${riskclassification == 'exempt'} + + + + Flow_1oam11w + Flow_1xaizis + Flow_153luo3 + + + + + task.execution.setVariable('isCssaTeam',false); + + + + task.execution.setVariable('applicationStatus', task.execution.getVariable('action')); +task.execution.setVariable('deleteReason', "completed"); + + + + + ["applicationId", "applicationStatus"] + + + + Flow_115hro3 + Flow_077ihmr + + + + Flow_077ihmr + Flow_1ld9bfn + var system = java.lang.System; +var selectCssaSdm= execution.getVariable('selectCssaSdm'); +system.out.println ("selectCssaSdm"+selectCssaSdm); +execution.setVariable('cssaSdmAssignment',selectCssaSdm); +system.out.println ("cssaSdmAssignment"+execution.getVariable('cssaSdmAssignment')); + +var selectCssaCaseworker= execution.getVariable('selectCssaCaseworker'); +system.out.println ("selectCssaCaseworker"+selectCssaCaseworker); +execution.setVariable('cssaCaseworkerAssignment',selectCssaCaseworker); +system.out.println ("cssaCaseworkerAssignment"+execution.getVariable('cssaCaseworkerAssignment')); + +var selectSdm= execution.getVariable('selectSdm'); +system.out.println ("selectSdm"+selectSdm); +execution.setVariable('sdmAssignment',selectSdm); +system.out.println ("sdmAssignment"+execution.getVariable('sdmAssignment')); + +var selectCaseworker= execution.getVariable('selectCaseworker'); +system.out.println ("selectCaseworker"+selectCaseworker); +execution.setVariable('caseworkerAssignment',selectCaseworker); +system.out.println ("caseworkerAssignment"+execution.getVariable('caseworkerAssignment')); + +var selectSrco= execution.getVariable('selectSrco'); +system.out.println ("selectSrco"+selectSrco); +execution.setVariable('srcoAssignment',selectSrco); +system.out.println ("srcoAssignment"+execution.getVariable('srcoAssignment')); + + + @@ -605,15 +752,28 @@ system.out.println (" here " + execution.getVariable('riskclassification')); + + + + + + + + + + + + + + + + + + - - - - - - + @@ -632,48 +792,27 @@ system.out.println (" here " + execution.getVariable('riskclassification')); - + + + - - - - - - - - - - - - - + + - + - - - - - - - - - - - - - - + - - + + + @@ -689,6 +828,43 @@ system.out.println (" here " + execution.getVariable('riskclassification')); + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -703,66 +879,115 @@ system.out.println (" here " + execution.getVariable('riskclassification')); - - + + + + + + + + + + + - + - + - + - + - + - - - - - + + + - - + + + + + - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - + + - + - + - + - - - - - + @@ -778,20 +1003,20 @@ system.out.println (" here " + execution.getVariable('riskclassification')); - - + + - + - - + + - + @@ -813,12 +1038,12 @@ system.out.println (" here " + execution.getVariable('riskclassification')); - + - + @@ -862,7 +1087,7 @@ system.out.println (" here " + execution.getVariable('riskclassification')); - + @@ -875,47 +1100,47 @@ system.out.println (" here " + execution.getVariable('riskclassification')); - - + + - - + + - - + + - + - + - + - - + + - + - + - + - + @@ -927,7 +1152,7 @@ system.out.println (" here " + execution.getVariable('riskclassification')); - + @@ -952,17 +1177,17 @@ system.out.println (" here " + execution.getVariable('riskclassification')); - + - + - + - + @@ -977,16 +1202,28 @@ system.out.println (" here " + execution.getVariable('riskclassification')); + + + + + + + + + + + + + + + + - - - - - - + + - \ No newline at end of file + diff --git a/forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/processes/Common/CommonEmailWorkflow.bpmn b/forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/processes/Common/CommonEmailWorkflow.bpmn index 5ffa2b91..a4baee00 100644 --- a/forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/processes/Common/CommonEmailWorkflow.bpmn +++ b/forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/processes/Common/CommonEmailWorkflow.bpmn @@ -1,5 +1,5 @@ - + Flow_15fflso @@ -72,7 +72,24 @@ system.out.println ("name: "+name); "tag": "", "attachments": [] } -p.to.push(execution.getVariable("emailTo")) + +if(applicationType==="nom") +{ + console.log("nom emails",toEmailListArray); + console.log("nom emails type",typeof toEmailListArray); + var toEmailListArrayObj = JSON.parse(toEmailListArray); + console.log("toEmailListArrayObj",toEmailListArrayObj); + for(i in toEmailListArrayObj) + { + p.to.push(toEmailListArrayObj[i]); + } +} +else +{ + p.to.push(execution.getVariable("emailTo")) +} + + console.log("Payload") console.log(JSON.stringify(p)) JSON.stringify(p) @@ -92,6 +109,12 @@ JSON.stringify(p) execution.getVariable("emailTo") + + execution.getVariable("EmailType") + + + execution.getVariable("emailsToArray") + Flow_0tc827u @@ -140,6 +163,34 @@ system.out.println ("result: "+result); + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -149,9 +200,11 @@ system.out.println ("result: "+result); - - - + + + + + @@ -159,46 +212,16 @@ system.out.println ("result: "+result); - - - - - + + + - - + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/processes/Common/email-template.dmn b/forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/processes/Common/email-template.dmn index cd140f9b..47bb2c94 100644 --- a/forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/processes/Common/email-template.dmn +++ b/forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/processes/Common/email-template.dmn @@ -1,5 +1,5 @@ - + @@ -66,6 +66,32 @@ "epd-support@gov.bc.ca" + + + "nom_updated" + + + + + + "NOREPLYEPD@gov.bc.ca" + + + + + + + + + "Notification of Likely or Actual Migration Application Status Update" + + + "templates/nom_application.ftl" + + + "epd-support@gov.bc.ca" + + From 720dd18d91cd38965a80a40779e7d8c870c30255 Mon Sep 17 00:00:00 2001 From: Adam Coard Date: Mon, 25 Sep 2023 10:01:46 -0700 Subject: [PATCH 050/194] "View On Map" button working, basic selection from search>map page --- .../src/features/map/UpdateMapCentre.tsx | 9 +++ .../src/features/selection/selection.ts | 23 ++++++++ .../features/simple-search/simple-search.ts | 2 +- .../site-search-frontend/src/pages/map.tsx | 56 ++++++++++++------- frontend/site-search-frontend/todo.private.md | 7 +++ 5 files changed, 77 insertions(+), 20 deletions(-) create mode 100644 frontend/site-search-frontend/src/features/map/UpdateMapCentre.tsx create mode 100644 frontend/site-search-frontend/src/features/selection/selection.ts create mode 100644 frontend/site-search-frontend/todo.private.md diff --git a/frontend/site-search-frontend/src/features/map/UpdateMapCentre.tsx b/frontend/site-search-frontend/src/features/map/UpdateMapCentre.tsx new file mode 100644 index 00000000..d649d8d3 --- /dev/null +++ b/frontend/site-search-frontend/src/features/map/UpdateMapCentre.tsx @@ -0,0 +1,9 @@ +import { useMap } from "react-leaflet/hooks"; + +export default function UpdateMapCentre(props) { + const map = useMap(); + map.panTo(props.mapCentre); + // map.setZoom(props.zoom) + // map.setView(props.mapCentre, props.zoom) + return null; + } \ No newline at end of file diff --git a/frontend/site-search-frontend/src/features/selection/selection.ts b/frontend/site-search-frontend/src/features/selection/selection.ts new file mode 100644 index 00000000..1ee2d20f --- /dev/null +++ b/frontend/site-search-frontend/src/features/selection/selection.ts @@ -0,0 +1,23 @@ +import { Site } from '@/api/sites' +import { createSlice } from '@reduxjs/toolkit' +import type { PayloadAction } from '@reduxjs/toolkit' + +export interface SelectionState { + value: Site | undefined; +} + + +export const selectionSlice = ({ + name: 'selection', + initialState: [], + + reducers: { + select: (state, action: PayloadAction) => { + console.log('Selection reducer start:', {state, action}) + state.value = action.payload; + } + } +}); + +export const { select } = selectionSlice.actions; +export default selectionSlice.reducers; \ No newline at end of file diff --git a/frontend/site-search-frontend/src/features/simple-search/simple-search.ts b/frontend/site-search-frontend/src/features/simple-search/simple-search.ts index 9520e9fa..3648b51f 100644 --- a/frontend/site-search-frontend/src/features/simple-search/simple-search.ts +++ b/frontend/site-search-frontend/src/features/simple-search/simple-search.ts @@ -11,7 +11,7 @@ export const siteSlice = createSlice({ // value: Array.from({length: 25000}, _ => createRandomSite()) }, reducers: { - add: ()=>console.log('todo') // Maybe not even necessary? SITE list won't mutate much, unlike site selection + add: ()=>console.log('site reducer add todo') // Maybe not even necessary? SITE list won't mutate much, unlike site selection } }) diff --git a/frontend/site-search-frontend/src/pages/map.tsx b/frontend/site-search-frontend/src/pages/map.tsx index e0493dc8..33c90071 100644 --- a/frontend/site-search-frontend/src/pages/map.tsx +++ b/frontend/site-search-frontend/src/pages/map.tsx @@ -1,53 +1,70 @@ import Header from "@/components/Header" -import { useState } from "react"; +import { useEffect, useState } from "react"; import Button from 'react-bootstrap/Button'; -import { MapContainer, WMSTileLayer, Marker, TileLayer, ZoomControl} from "react-leaflet"; +import { MapContainer, WMSTileLayer, Marker, TileLayer, ZoomControl } from "react-leaflet"; import 'leaflet/dist/leaflet.css'; import styles from './map.module.css'; import Dropdown from 'react-bootstrap/Dropdown'; import ButtonGroup from 'react-bootstrap/ButtonGroup'; import ToggleButton from 'react-bootstrap/ToggleButton'; -import { useLocation } from "react-router-dom"; +import { useLocation, useSearchParams } from "react-router-dom"; import { Site } from "@/api/sites"; import { useSelector } from "react-redux"; import { LatLngExpression } from "leaflet"; // import CloseButton from 'react-bootstrap/CloseButton'; import MapDetailsPane from "@/features/map/MapDetailsPane"; import { RootState } from "@/store"; +import SiteDetailsPage from "./site-details"; +import UpdateMapCentre from "@/features/map/UpdateMapCentre"; export default function MapPage() { const [location, setLocation] = useState([48.46762, -123.25458]); - const {state} = useLocation(); - // const { routerSearchQuery } = state; // Read values passed on state + const { state } = useLocation(); const routerSearchQuery = state && state.routerSearchQuery || ''; const [searchQuery, setSearchQuery] = useState(routerSearchQuery); - + const [zoom, setZoom] = useState(8) + // Note: Potentially replace this with the State selector? selection.ts const [selectedSite, setSelectedSite] = useState(); + const sites: Site[] = useSelector((state: RootState) => state.site.value); + const [searchParams, setSearchParams] = useSearchParams(); - // May need separate marker component to useMap(), as it needs to be used in child - // const map = useMap(); + useEffect(() => { + const siteIDParam = searchParams.get('siteID') + const site = sites.find(site => site.siteID.toString() == siteIDParam); - const sites: Site[] = useSelector((state: RootState) => state.site.value); + if (site) { + focusOnSite(site); + setZoom(14); + console.log('Map useEffect, searchParams', siteIDParam, site) + console.log('set location: [site.latitude, site.longitude]', [site.latitude, site.longitude]) + + } + }, [searchParams]) - function onMarkerClick(e){ - console.log('onMarkerClick', e); - // const clickedSite: Site = e?.target?.options?.site; + + + function onMarkerClick(e) { + // console.log('onMarkerClick', e); const clickedSite: Site = e?.target?.options["data-site"]; if (clickedSite) { + searchParams.set('siteID', clickedSite.siteID.toString()); + setSearchParams(searchParams); + focusOnSite(clickedSite); setSelectedSite(clickedSite) - // map.setView([clickedSite.latitude, clickedSite.longitude], 14) } } - function clearSelection(){ + function clearSelection() { setSelectedSite(null); } - // TODO - Set url query param when clicking a marker - // TODO - Center at a marker if a URL query param ID is set - Including if you just clicked one on map view (or are sent from Search) + function focusOnSite(site: Site) { + setLocation([site.latitude, site.longitude]) + // setZoom(10) + } return ( <> @@ -57,7 +74,7 @@ export default function MapPage() {
- + @@ -91,6 +108,7 @@ export default function MapPage() { + - + {/* Add all sites as map markers */} {sites.map(site => { - return Date: Mon, 25 Sep 2023 11:02:45 -0700 Subject: [PATCH 051/194] Statically generate dummy data --- .../src/scripts/dummy-data.sites.json | 2502 +++++++++++++++++ .../src/scripts/generate-dummy-data.ts | 28 + 2 files changed, 2530 insertions(+) create mode 100644 frontend/site-search-frontend/src/scripts/dummy-data.sites.json create mode 100755 frontend/site-search-frontend/src/scripts/generate-dummy-data.ts diff --git a/frontend/site-search-frontend/src/scripts/dummy-data.sites.json b/frontend/site-search-frontend/src/scripts/dummy-data.sites.json new file mode 100644 index 00000000..5ce86023 --- /dev/null +++ b/frontend/site-search-frontend/src/scripts/dummy-data.sites.json @@ -0,0 +1,2502 @@ +[ + { + "uuid": "fd8d7528-82a9-4402-9ba3-36a82b17ab4f", + "siteID": 15682, + "address": "703 Roberts Trail", + "latitude": 48.3395, + "longitude": -125.9323, + "lastUpdated": "2015-02-02T17:24:17.996Z", + "city": "West Marques", + "region": "Thompson-Okanagan" + }, + { + "uuid": "ab5f6924-c756-4734-9a71-0d221bc78441", + "siteID": 16029, + "address": "21524 Lowe Manor", + "latitude": 51.1397, + "longitude": -137.1725, + "lastUpdated": "2019-06-29T18:01:23.304Z", + "city": "Corwincester", + "region": "Kootenay" + }, + { + "uuid": "0c74fe3d-c121-4df1-94f9-10331173002b", + "siteID": 18777, + "address": "925 Nader Lake", + "latitude": 55.8097, + "longitude": -134.004, + "lastUpdated": "2022-12-23T17:17:14.540Z", + "city": "Montebello", + "region": "Mainland/Southwest" + }, + { + "uuid": "957835fb-9104-42fe-b3ba-284307b1ca09", + "siteID": 16958, + "address": "1300 Terry Ramp", + "latitude": 57.981, + "longitude": -127.8005, + "lastUpdated": "2015-09-28T17:45:46.051Z", + "city": "East Darrinville", + "region": "Vancouver Island/Coast" + }, + { + "uuid": "831b007f-e6bb-4cde-97cb-b3fc7e025e4a", + "siteID": 20327, + "address": "3497 Koelpin Fields", + "latitude": 48.4092, + "longitude": -123.3055, + "lastUpdated": "2023-04-08T07:00:03.322Z", + "city": "Anneburgh", + "region": "Vancouver Island/Coast" + }, + { + "uuid": "25ba462c-38fa-42ca-b042-f21379caf582", + "siteID": 16961, + "address": "3689 Margarett Run", + "latitude": 57.4041, + "longitude": -124.7786, + "lastUpdated": "2018-04-08T06:25:27.083Z", + "city": "Fort Taraborough", + "region": "Mainland/Southwest" + }, + { + "uuid": "1c433485-8bb5-4157-90b8-f5626ff869cf", + "siteID": 17110, + "address": "9174 Braun Villages", + "latitude": 48.7496, + "longitude": -135.4561, + "lastUpdated": "2019-11-21T06:42:14.002Z", + "city": "Lanceport", + "region": "Kootenay" + }, + { + "uuid": "d8aeba56-fbe0-4c8e-b738-ea47ed3739d8", + "siteID": 19598, + "address": "350 Aniya Lights", + "latitude": 55.4531, + "longitude": -130.0521, + "lastUpdated": "2018-03-24T18:02:50.760Z", + "city": "Runolfssonbury", + "region": "Mainland/Southwest" + }, + { + "uuid": "32c8a263-7549-4628-b53f-59a907f832b8", + "siteID": 17925, + "address": "2621 Enoch Estates", + "latitude": 55.4427, + "longitude": -124.1605, + "lastUpdated": "2020-12-06T14:06:23.929Z", + "city": "Torpview", + "region": "Cariboo" + }, + { + "uuid": "bb67473d-1c3e-4d76-8675-8401badc7900", + "siteID": 19357, + "address": "58460 Windler Estate", + "latitude": 51.8487, + "longitude": -122.6407, + "lastUpdated": "2019-07-19T18:38:22.923Z", + "city": "Bernhardfield", + "region": "Vancouver Island/Coast" + }, + { + "uuid": "e7774237-0e3d-419d-afac-445ec3384395", + "siteID": 17892, + "address": "79926 DuBuque Villages", + "latitude": 49.4744, + "longitude": -124.8741, + "lastUpdated": "2015-11-20T03:31:08.364Z", + "city": "New Louisa", + "region": "Mainland/Southwest" + }, + { + "uuid": "353b9594-c410-488e-9612-01f97cfb3cfe", + "siteID": 18410, + "address": "482 Simeon Pike", + "latitude": 50.9568, + "longitude": -133.761, + "lastUpdated": "2015-09-13T16:21:56.963Z", + "city": "Pfefferhaven", + "region": "Mainland/Southwest" + }, + { + "uuid": "13e2349d-2bc7-4b9f-904a-72383ad7e0b1", + "siteID": 20298, + "address": "754 Volkman Cape", + "latitude": 56.9609, + "longitude": -132.0529, + "lastUpdated": "2016-08-17T13:34:37.919Z", + "city": "Rippinchester", + "region": "Cariboo" + }, + { + "uuid": "aa82dff1-e36d-4c48-96e6-828ff9851398", + "siteID": 20434, + "address": "57399 Mikel Court", + "latitude": 51.0929, + "longitude": -120.461, + "lastUpdated": "2020-03-21T03:03:04.891Z", + "city": "Bethlehem", + "region": "Vancouver Island/Coast" + }, + { + "uuid": "5a6b1399-54bf-4499-991a-429017ceac3a", + "siteID": 16333, + "address": "506 Lucius Pike", + "latitude": 53.2838, + "longitude": -130.5881, + "lastUpdated": "2017-07-22T16:41:43.406Z", + "city": "Fort Vinceton", + "region": "Vancouver Island/Coast" + }, + { + "uuid": "56d66b49-ab03-467b-9f5d-62dcb7e2d012", + "siteID": 18856, + "address": "2501 Agnes Turnpike", + "latitude": 50.6759, + "longitude": -118.1146, + "lastUpdated": "2014-04-07T22:18:40.576Z", + "city": "North Angela", + "region": " North Coast" + }, + { + "uuid": "4aa3b239-a9d8-44ff-8324-d51c2e3b30ce", + "siteID": 15198, + "address": "62351 Ayden Dale", + "latitude": 54.7505, + "longitude": -136.955, + "lastUpdated": "2018-06-25T04:39:16.539Z", + "city": "West Elyssabury", + "region": "Thompson-Okanagan" + }, + { + "uuid": "84e03f32-4fe1-47f6-b1dd-87d65fc5b10f", + "siteID": 16229, + "address": "20453 Heller Rue", + "latitude": 54.1255, + "longitude": -137.662, + "lastUpdated": "2017-10-20T10:34:40.058Z", + "city": "New Mariannehaven", + "region": " North Coast" + }, + { + "uuid": "8c48992c-6b3d-4a53-974e-7d8bff954c47", + "siteID": 19890, + "address": "1749 Hester Bypass", + "latitude": 48.1809, + "longitude": -133.8682, + "lastUpdated": "2016-05-31T19:50:15.652Z", + "city": "Millsstad", + "region": "Thompson-Okanagan" + }, + { + "uuid": "7a341e70-f7a7-4c77-ab64-c404830da7db", + "siteID": 16317, + "address": "725 Bins Glen", + "latitude": 55.9718, + "longitude": -133.1471, + "lastUpdated": "2020-11-07T07:35:28.810Z", + "city": "Lucianostad", + "region": "Thompson-Okanagan" + }, + { + "uuid": "58e739b4-271d-480f-a8d2-1638cae7a8a8", + "siteID": 17731, + "address": "260 Ophelia Burgs", + "latitude": 58.0074, + "longitude": -131.1192, + "lastUpdated": "2013-12-22T04:46:22.196Z", + "city": "Clevetown", + "region": "Vancouver Island/Coast" + }, + { + "uuid": "537dc61f-500a-4803-a4b8-e75af4e8d4bd", + "siteID": 17167, + "address": "629 Schiller Route", + "latitude": 49.3865, + "longitude": -129.5746, + "lastUpdated": "2015-05-20T21:27:35.358Z", + "city": "Gardena", + "region": " North Coast" + }, + { + "uuid": "0adc74ea-6960-415e-a679-35330d124049", + "siteID": 16284, + "address": "85508 Frederique Cliff", + "latitude": 48.9524, + "longitude": -118.1808, + "lastUpdated": "2020-05-04T15:59:31.708Z", + "city": "Garden Grove", + "region": "Thompson-Okanagan" + }, + { + "uuid": "bf0e7cd1-fd32-451b-a6d5-aef6fc975682", + "siteID": 18317, + "address": "668 Marquardt Plain", + "latitude": 52.1287, + "longitude": -123.4952, + "lastUpdated": "2023-03-05T14:00:00.644Z", + "city": "Yasminestad", + "region": "Mainland/Southwest" + }, + { + "uuid": "7756b63d-2ecc-474b-a4f3-c9db5b887b11", + "siteID": 15662, + "address": "2639 Marquardt Pine", + "latitude": 58.1571, + "longitude": -128.1063, + "lastUpdated": "2021-10-19T12:43:55.268Z", + "city": "Orange", + "region": "Vancouver Island/Coast" + }, + { + "uuid": "91aa8c7b-61f1-4f3d-9447-7ee7a19e4fbe", + "siteID": 16455, + "address": "6609 Stroman Branch", + "latitude": 57.9474, + "longitude": -138.213, + "lastUpdated": "2021-01-28T06:23:21.513Z", + "city": "South Julianastad", + "region": "Kootenay" + }, + { + "uuid": "c0d81503-6f96-4d63-9a8e-c5fd1702c58c", + "siteID": 16337, + "address": "9192 Jakubowski Village", + "latitude": 57.4212, + "longitude": -129.4005, + "lastUpdated": "2016-07-29T20:03:10.660Z", + "city": "South David", + "region": "Vancouver Island/Coast" + }, + { + "uuid": "2753eb46-9156-4f4d-96a0-f76d541d4cae", + "siteID": 16415, + "address": "40642 Annamae Heights", + "latitude": 58.4335, + "longitude": -132.2513, + "lastUpdated": "2014-01-24T08:16:22.499Z", + "city": "East Sister", + "region": "Kootenay" + }, + { + "uuid": "9670c018-5239-4934-9858-d0c1faf72255", + "siteID": 18653, + "address": "22321 Jada Stravenue", + "latitude": 51.4817, + "longitude": -126.2859, + "lastUpdated": "2013-10-01T02:03:01.697Z", + "city": "Mrazworth", + "region": "Thompson-Okanagan" + }, + { + "uuid": "d0621156-8ec2-4db3-8248-50625ddf5ef5", + "siteID": 17855, + "address": "7735 Morar Viaduct", + "latitude": 50.2441, + "longitude": -136.5753, + "lastUpdated": "2020-01-29T12:06:25.313Z", + "city": "Wylie", + "region": " North Coast" + }, + { + "uuid": "332ce55f-7f56-44bd-a21e-60b95ec3507f", + "siteID": 17726, + "address": "86141 Bella Streets", + "latitude": 48.6037, + "longitude": -118.3358, + "lastUpdated": "2023-05-29T03:49:19.670Z", + "city": "Orncester", + "region": "Kootenay" + }, + { + "uuid": "0b566f9e-26a7-425a-9be7-a260b93618c6", + "siteID": 17998, + "address": "6937 Schuppe Fort", + "latitude": 52.2817, + "longitude": -119.2427, + "lastUpdated": "2022-02-16T04:38:24.322Z", + "city": "Passaic", + "region": " North Coast" + }, + { + "uuid": "e5b659e9-bc40-4a0c-8ca6-10d1092782c3", + "siteID": 15937, + "address": "24158 Otis Ports", + "latitude": 57.2388, + "longitude": -136.6928, + "lastUpdated": "2018-07-14T18:12:19.168Z", + "city": "Ciceroland", + "region": "Thompson-Okanagan" + }, + { + "uuid": "28afe0db-9de8-492d-ae6a-0444b4861bf5", + "siteID": 18212, + "address": "720 Eunice Station", + "latitude": 57.1259, + "longitude": -124.0823, + "lastUpdated": "2019-01-23T12:59:01.962Z", + "city": "Zulauffort", + "region": " North Coast" + }, + { + "uuid": "257a7c04-47ff-4aa7-bcce-f6df1729616c", + "siteID": 15822, + "address": "175 Mann Crossing", + "latitude": 55.5425, + "longitude": -133.7552, + "lastUpdated": "2014-03-06T15:18:08.715Z", + "city": "Port Jazminborough", + "region": "Thompson-Okanagan" + }, + { + "uuid": "56ebb8ed-2dc7-4660-8ca9-24f55d73d512", + "siteID": 19621, + "address": "5129 Giovanna Creek", + "latitude": 49.1001, + "longitude": -126.6786, + "lastUpdated": "2022-03-09T05:32:25.702Z", + "city": "South Norwoodland", + "region": "Thompson-Okanagan" + }, + { + "uuid": "56018f1f-f41a-4a4f-9571-2874f22317a4", + "siteID": 18725, + "address": "6617 Celine Forest", + "latitude": 50.4209, + "longitude": -123.899, + "lastUpdated": "2020-04-04T15:43:42.917Z", + "city": "New Fannyside", + "region": "Mainland/Southwest" + }, + { + "uuid": "f0ad8812-8a1c-4428-8707-bc4d96ffad7b", + "siteID": 18517, + "address": "945 Garett Circle", + "latitude": 50.9977, + "longitude": -119.9581, + "lastUpdated": "2015-02-15T21:12:43.607Z", + "city": "University", + "region": "Cariboo" + }, + { + "uuid": "fab9fc7b-338d-4b88-a253-3c20b782f5af", + "siteID": 18212, + "address": "49849 Abelardo Row", + "latitude": 52.56, + "longitude": -132.493, + "lastUpdated": "2023-08-23T06:09:58.383Z", + "city": "South Christiana", + "region": "Vancouver Island/Coast" + }, + { + "uuid": "14c843a1-7cae-4bcb-bceb-e7bde273ce23", + "siteID": 20582, + "address": "2174 Lakin Extensions", + "latitude": 51.8425, + "longitude": -131.0794, + "lastUpdated": "2014-11-14T10:18:32.893Z", + "city": "North Margarett", + "region": " North Coast" + }, + { + "uuid": "58ab58cd-3fe2-4dfd-b649-8ba37043d631", + "siteID": 18137, + "address": "40065 Koss Points", + "latitude": 52.1892, + "longitude": -135.8066, + "lastUpdated": "2023-08-02T20:17:47.170Z", + "city": "Alhambra", + "region": "Thompson-Okanagan" + }, + { + "uuid": "9a7fc564-ef87-46f3-ae3a-8455d24129a4", + "siteID": 17868, + "address": "20136 Bethany Manors", + "latitude": 57.2028, + "longitude": -129.547, + "lastUpdated": "2021-12-17T09:04:37.645Z", + "city": "East Imogene", + "region": "Thompson-Okanagan" + }, + { + "uuid": "4122e3f4-80fb-4fe4-8be8-193ea7d9b828", + "siteID": 15544, + "address": "7472 Sam Ramp", + "latitude": 56.5207, + "longitude": -124.2027, + "lastUpdated": "2016-02-07T13:52:42.819Z", + "city": "Nitzscheview", + "region": " North Coast" + }, + { + "uuid": "2f84da70-061b-4d14-a327-7a679b63177c", + "siteID": 20406, + "address": "13455 Destin Mews", + "latitude": 57.9259, + "longitude": -135.8922, + "lastUpdated": "2019-04-22T19:10:53.896Z", + "city": "North Scottyfurt", + "region": "Kootenay" + }, + { + "uuid": "95a5036a-8b66-4d04-94e5-ba808ed8114e", + "siteID": 16356, + "address": "16321 Colby Rest", + "latitude": 56.7432, + "longitude": -130.5068, + "lastUpdated": "2016-04-24T20:15:12.267Z", + "city": "North Pearliefurt", + "region": "Vancouver Island/Coast" + }, + { + "uuid": "02f76ae3-6fc8-41d0-8597-0ad982c10a45", + "siteID": 17714, + "address": "893 Balistreri Trail", + "latitude": 52.1519, + "longitude": -122.559, + "lastUpdated": "2017-02-18T23:34:48.274Z", + "city": "MacGyverton", + "region": " North Coast" + }, + { + "uuid": "e6c9be9c-6bef-4310-9060-c97163429cc1", + "siteID": 18745, + "address": "2072 Crawford Keys", + "latitude": 52.48, + "longitude": -138.5209, + "lastUpdated": "2022-03-11T06:51:14.910Z", + "city": "Port Carolynemouth", + "region": "Cariboo" + }, + { + "uuid": "79bd74bf-ae5b-48cc-87a2-89df4840ced7", + "siteID": 18100, + "address": "8266 Melody Courts", + "latitude": 50.0173, + "longitude": -124.4978, + "lastUpdated": "2023-09-21T19:24:13.219Z", + "city": "South Ignacio", + "region": " North Coast" + }, + { + "uuid": "eac998b9-0b80-4db6-87b8-f4c6d71cb5c8", + "siteID": 16131, + "address": "4441 Macejkovic Trail", + "latitude": 54.2545, + "longitude": -119.3795, + "lastUpdated": "2014-08-11T19:54:59.551Z", + "city": "Lake Alfredaworth", + "region": "Cariboo" + }, + { + "uuid": "bc6e9ab5-27b9-4a3e-8bb3-de1a56b3e7b5", + "siteID": 16259, + "address": "57262 Trantow Square", + "latitude": 58.9602, + "longitude": -132.7314, + "lastUpdated": "2023-01-11T23:41:16.844Z", + "city": "Rockyport", + "region": " North Coast" + }, + { + "uuid": "8be02f86-38db-4f1f-a14e-0835d16e713e", + "siteID": 17352, + "address": "405 McCullough Pine", + "latitude": 57.148, + "longitude": -133.1412, + "lastUpdated": "2013-12-25T04:25:59.360Z", + "city": "Lake Loganfort", + "region": "Kootenay" + }, + { + "uuid": "69135ef1-0486-4d64-933c-5c910433d382", + "siteID": 18513, + "address": "136 Kuvalis Manors", + "latitude": 49.7311, + "longitude": -125.5564, + "lastUpdated": "2021-10-16T23:05:06.194Z", + "city": "New Maziefort", + "region": " North Coast" + }, + { + "uuid": "dc161bfa-f8c2-46f9-bfd2-75eda14524fc", + "siteID": 19265, + "address": "216 Kutch Fall", + "latitude": 55.1669, + "longitude": -134.1648, + "lastUpdated": "2015-01-16T12:03:10.738Z", + "city": "South Genesisstad", + "region": "Vancouver Island/Coast" + }, + { + "uuid": "c868af5b-c665-489a-a363-0ad37226973a", + "siteID": 19716, + "address": "2767 Gottlieb Path", + "latitude": 55.7615, + "longitude": -120.8573, + "lastUpdated": "2022-04-04T21:57:46.741Z", + "city": "East Maynardville", + "region": "Vancouver Island/Coast" + }, + { + "uuid": "dfd01985-f299-444d-b20b-214f1e4cc0a8", + "siteID": 15443, + "address": "82599 Connelly Rapids", + "latitude": 50.4904, + "longitude": -136.9845, + "lastUpdated": "2015-09-04T16:29:04.254Z", + "city": "Paterson", + "region": "Vancouver Island/Coast" + }, + { + "uuid": "0d922136-b699-44b7-aefa-9c9bb4a064db", + "siteID": 15214, + "address": "7339 Roberts Streets", + "latitude": 56.6406, + "longitude": -131.2406, + "lastUpdated": "2019-08-19T11:52:00.488Z", + "city": "West Carterland", + "region": "Vancouver Island/Coast" + }, + { + "uuid": "1cecfdfd-a767-4525-9afc-e530876f36f4", + "siteID": 15961, + "address": "7022 Hollie Union", + "latitude": 53.2049, + "longitude": -122.1355, + "lastUpdated": "2016-05-11T20:13:09.036Z", + "city": "West Avis", + "region": "Vancouver Island/Coast" + }, + { + "uuid": "0ed2f692-1b70-4c99-8d6f-8eb8b2e9e2b4", + "siteID": 19312, + "address": "12354 Jamel Road", + "latitude": 56.0577, + "longitude": -132.9414, + "lastUpdated": "2019-02-06T22:34:46.429Z", + "city": "Nakialand", + "region": "Thompson-Okanagan" + }, + { + "uuid": "48b2311f-f556-40ea-931d-7af61aafbdc3", + "siteID": 18203, + "address": "2656 Willy Corner", + "latitude": 49.5589, + "longitude": -128.7264, + "lastUpdated": "2023-01-17T16:19:38.455Z", + "city": "Metacester", + "region": "Thompson-Okanagan" + }, + { + "uuid": "0c3f698f-32aa-4446-8ace-145e52c29ea4", + "siteID": 20900, + "address": "16610 Guillermo Fall", + "latitude": 52.8658, + "longitude": -137.356, + "lastUpdated": "2017-12-03T09:56:03.750Z", + "city": "East Alec", + "region": "Kootenay" + }, + { + "uuid": "5c68c190-0bec-4032-b234-f5ea1662cb75", + "siteID": 18180, + "address": "276 Kameron Lake", + "latitude": 57.9597, + "longitude": -123.9242, + "lastUpdated": "2016-08-13T14:03:30.578Z", + "city": "New Adolf", + "region": "Thompson-Okanagan" + }, + { + "uuid": "9f02e503-6382-41d2-bee3-df4a04948cc4", + "siteID": 17245, + "address": "66861 Sincere Coves", + "latitude": 49.1409, + "longitude": -127.8091, + "lastUpdated": "2018-08-22T10:03:31.749Z", + "city": "Port Emelie", + "region": "Cariboo" + }, + { + "uuid": "aeb4d2a7-f903-47a4-8ce3-569add4ec49e", + "siteID": 17900, + "address": "67330 Strosin Light", + "latitude": 58.0403, + "longitude": -122.4799, + "lastUpdated": "2022-03-24T09:48:26.783Z", + "city": "Fort Bradfordworth", + "region": "Cariboo" + }, + { + "uuid": "a55b7ef6-8e2a-4a57-b81d-77e6c1daa8ea", + "siteID": 15513, + "address": "360 Yesenia Parkway", + "latitude": 56.9756, + "longitude": -136.683, + "lastUpdated": "2016-01-04T10:08:15.756Z", + "city": "Fort Desmondburgh", + "region": "Vancouver Island/Coast" + }, + { + "uuid": "277769f7-2acf-4be3-9359-83bff02fe836", + "siteID": 18390, + "address": "406 Randy Ranch", + "latitude": 53.8727, + "longitude": -128.2823, + "lastUpdated": "2021-08-15T08:32:04.249Z", + "city": "West Porterton", + "region": "Kootenay" + }, + { + "uuid": "9a49f49f-3306-43cc-953d-016fd1c4bf17", + "siteID": 20455, + "address": "5277 Upton Forest", + "latitude": 52.6437, + "longitude": -120.3262, + "lastUpdated": "2014-11-28T07:40:46.647Z", + "city": "East Jada", + "region": "Mainland/Southwest" + }, + { + "uuid": "85df1ef0-256f-4f4c-a13b-95d78e6a73e7", + "siteID": 18293, + "address": "98119 Dibbert Green", + "latitude": 52.5575, + "longitude": -118.5695, + "lastUpdated": "2021-11-28T09:36:29.504Z", + "city": "West Aurelie", + "region": "Vancouver Island/Coast" + }, + { + "uuid": "88c6621e-9e7b-4727-b770-8232f337cad6", + "siteID": 19674, + "address": "3752 Maxie Mountains", + "latitude": 52.4978, + "longitude": -126.7312, + "lastUpdated": "2021-01-15T02:43:24.302Z", + "city": "Rebekahstad", + "region": " North Coast" + }, + { + "uuid": "70c69ea0-3e2f-4c47-b383-4c006325d7f9", + "siteID": 19091, + "address": "267 Maeve Wall", + "latitude": 49.2825, + "longitude": -118.0436, + "lastUpdated": "2019-10-18T13:28:28.666Z", + "city": "Damiantown", + "region": "Kootenay" + }, + { + "uuid": "b72b1649-55d8-4021-bde2-cc3740c858a2", + "siteID": 16643, + "address": "800 Connie Course", + "latitude": 57.3529, + "longitude": -118.6025, + "lastUpdated": "2022-12-27T21:33:12.985Z", + "city": "Port Laronport", + "region": "Cariboo" + }, + { + "uuid": "de9b11fc-9510-478e-ad70-03f91e21b58b", + "siteID": 18405, + "address": "65535 Lori Burgs", + "latitude": 58.5408, + "longitude": -125.3647, + "lastUpdated": "2020-07-19T08:43:13.230Z", + "city": "Considineberg", + "region": "Kootenay" + }, + { + "uuid": "da93ab35-e7ac-476d-8e0a-a51c9f32473e", + "siteID": 17093, + "address": "880 Schaden Port", + "latitude": 53.7334, + "longitude": -122.6016, + "lastUpdated": "2023-08-13T21:08:04.436Z", + "city": "West Carolport", + "region": "Thompson-Okanagan" + }, + { + "uuid": "65ec9cba-8a98-4aa4-8ca8-d80c35e92094", + "siteID": 18225, + "address": "69457 Luella Bridge", + "latitude": 52.6485, + "longitude": -131.5101, + "lastUpdated": "2021-01-16T19:38:44.434Z", + "city": "North Hershel", + "region": "Cariboo" + }, + { + "uuid": "dec927fc-64cc-4b38-8b7c-6e060192e01d", + "siteID": 20008, + "address": "31401 Saul Keys", + "latitude": 51.6858, + "longitude": -124.6199, + "lastUpdated": "2015-03-12T17:12:33.249Z", + "city": "Mount Vernon", + "region": "Kootenay" + }, + { + "uuid": "9828c1ca-5df3-4533-9bc7-c72ad8c390b2", + "siteID": 15478, + "address": "3548 Monica Turnpike", + "latitude": 56.4461, + "longitude": -131.5662, + "lastUpdated": "2021-06-16T01:59:02.436Z", + "city": "Welchtown", + "region": "Cariboo" + }, + { + "uuid": "f65540ef-8ca2-4c21-a007-752dbdc557f0", + "siteID": 18995, + "address": "96673 Boehm Island", + "latitude": 52.0873, + "longitude": -119.5343, + "lastUpdated": "2023-05-14T12:11:16.786Z", + "city": "Port Lindsayfield", + "region": "Mainland/Southwest" + }, + { + "uuid": "f18cc5f5-b143-4887-8fac-bbfe51afa1b4", + "siteID": 17007, + "address": "649 Osborne Lakes", + "latitude": 58.2498, + "longitude": -134.8151, + "lastUpdated": "2015-12-04T08:55:35.425Z", + "city": "South Taureanchester", + "region": " North Coast" + }, + { + "uuid": "2cddf991-7dc7-46f5-837d-3d11e44d56b2", + "siteID": 17500, + "address": "74235 Mafalda Haven", + "latitude": 58.6127, + "longitude": -136.736, + "lastUpdated": "2021-08-30T17:13:32.342Z", + "city": "New Keshaun", + "region": "Kootenay" + }, + { + "uuid": "b19e1446-43b0-4915-8982-bb10512b19a8", + "siteID": 17879, + "address": "2825 Helene Creek", + "latitude": 55.517, + "longitude": -127.9264, + "lastUpdated": "2015-04-12T12:24:47.430Z", + "city": "Auerville", + "region": "Vancouver Island/Coast" + }, + { + "uuid": "838a80ed-bc58-4744-9ced-02b61eb61e1e", + "siteID": 18832, + "address": "21155 Robb Wells", + "latitude": 58.1465, + "longitude": -135.6066, + "lastUpdated": "2020-02-10T22:25:54.135Z", + "city": "Arnoldborough", + "region": "Mainland/Southwest" + }, + { + "uuid": "5962c423-8ac7-44a9-a31b-167fbbda4d11", + "siteID": 19159, + "address": "86017 Andy Mount", + "latitude": 53.8885, + "longitude": -135.8266, + "lastUpdated": "2021-06-25T03:56:56.148Z", + "city": "Turnerview", + "region": "Kootenay" + }, + { + "uuid": "ba946b47-9e4f-4f68-b05c-2fa7dbedf422", + "siteID": 19823, + "address": "1632 Irving Lane", + "latitude": 57.8427, + "longitude": -129.2441, + "lastUpdated": "2022-07-30T21:45:39.273Z", + "city": "Faheyton", + "region": "Vancouver Island/Coast" + }, + { + "uuid": "7ac79f04-d000-43cf-9b07-fbbf7fe1c7c5", + "siteID": 19583, + "address": "19244 Carole Branch", + "latitude": 48.5125, + "longitude": -135.2518, + "lastUpdated": "2016-12-20T09:30:09.307Z", + "city": "West Justusside", + "region": "Vancouver Island/Coast" + }, + { + "uuid": "b87205c2-a6ad-4081-947f-d21bfe9b7036", + "siteID": 19226, + "address": "74992 Langworth Inlet", + "latitude": 53.1313, + "longitude": -120.6146, + "lastUpdated": "2022-02-14T09:48:55.357Z", + "city": "Fort Loyalcester", + "region": "Kootenay" + }, + { + "uuid": "def756d6-f0fe-41c9-be15-3a5e88ec3f66", + "siteID": 18588, + "address": "92403 Gunnar Creek", + "latitude": 53.4321, + "longitude": -138.6365, + "lastUpdated": "2019-11-26T10:55:08.270Z", + "city": "West Alenaburgh", + "region": "Thompson-Okanagan" + }, + { + "uuid": "e35e3f5d-97e7-4737-9b41-9f2eebad169f", + "siteID": 16551, + "address": "24521 Ernestina Ville", + "latitude": 49.5966, + "longitude": -127.308, + "lastUpdated": "2017-06-16T19:32:37.672Z", + "city": "Kossboro", + "region": "Mainland/Southwest" + }, + { + "uuid": "2be9c318-e881-4b39-95fd-d73cc4128ee8", + "siteID": 18828, + "address": "965 Stehr Court", + "latitude": 56.2731, + "longitude": -137.973, + "lastUpdated": "2018-09-09T00:38:59.133Z", + "city": "Mikelville", + "region": "Thompson-Okanagan" + }, + { + "uuid": "fa8f59e0-7eca-4865-94c1-c5e5299b72a6", + "siteID": 19027, + "address": "28982 Steuber Views", + "latitude": 53.3677, + "longitude": -130.4166, + "lastUpdated": "2023-06-08T09:18:10.805Z", + "city": "Fannyshire", + "region": "Kootenay" + }, + { + "uuid": "e541c815-c88c-4c02-958c-fdd12dcb9f05", + "siteID": 20086, + "address": "4127 Kailee Stream", + "latitude": 55.6053, + "longitude": -134.1927, + "lastUpdated": "2023-05-22T21:21:16.545Z", + "city": "Haagville", + "region": "Thompson-Okanagan" + }, + { + "uuid": "03779b9b-a019-48b8-bae8-871e9cbfe29b", + "siteID": 16891, + "address": "1819 Rosa Flat", + "latitude": 50.6723, + "longitude": -132.5555, + "lastUpdated": "2014-12-27T19:25:54.125Z", + "city": "Lenexa", + "region": "Kootenay" + }, + { + "uuid": "bb9b9632-56b0-480c-84cc-4ec888d99300", + "siteID": 17215, + "address": "85767 Bulah Ports", + "latitude": 49.702, + "longitude": -120.4956, + "lastUpdated": "2015-06-12T01:19:20.148Z", + "city": "Caspertown", + "region": "Thompson-Okanagan" + }, + { + "uuid": "9f2cfa07-432f-49e9-a933-9a314288bbbf", + "siteID": 19228, + "address": "8494 April Trail", + "latitude": 56.596, + "longitude": -122.8722, + "lastUpdated": "2016-09-16T12:32:04.252Z", + "city": "Fayburgh", + "region": "Kootenay" + }, + { + "uuid": "a78b6afc-20bd-4f05-9aea-c79b4ec62914", + "siteID": 17935, + "address": "7309 Altenwerth Wall", + "latitude": 51.0283, + "longitude": -131.2193, + "lastUpdated": "2013-11-02T01:13:28.267Z", + "city": "Goldnerchester", + "region": "Mainland/Southwest" + }, + { + "uuid": "0fd0f649-3eaf-4d60-86d9-29d2f498ee60", + "siteID": 15898, + "address": "159 Verna Forks", + "latitude": 51.1386, + "longitude": -130.7478, + "lastUpdated": "2023-07-28T10:58:08.519Z", + "city": "South Americo", + "region": "Vancouver Island/Coast" + }, + { + "uuid": "4a3fb6a9-6b73-4178-adcf-975871e5b84c", + "siteID": 20455, + "address": "866 Alvera Cliff", + "latitude": 53.8012, + "longitude": -133.1908, + "lastUpdated": "2019-05-12T08:03:33.193Z", + "city": "East Abe", + "region": "Mainland/Southwest" + }, + { + "uuid": "c0526163-d34a-49a6-81c0-edda923989ba", + "siteID": 18461, + "address": "9472 Stark Lane", + "latitude": 55.9619, + "longitude": -120.2148, + "lastUpdated": "2016-02-09T18:12:28.057Z", + "city": "Dockfort", + "region": " North Coast" + }, + { + "uuid": "6089428e-fe13-4c73-bece-81bc6d053c5c", + "siteID": 15370, + "address": "9540 McKenzie Ranch", + "latitude": 57.233, + "longitude": -137.3905, + "lastUpdated": "2017-01-13T16:25:55.909Z", + "city": "East Hassieport", + "region": "Vancouver Island/Coast" + }, + { + "uuid": "3aa531e8-7c35-46e0-a299-5f7eba19e37d", + "siteID": 20807, + "address": "78327 Jaskolski Isle", + "latitude": 58.1791, + "longitude": -120.1946, + "lastUpdated": "2019-10-11T04:27:15.783Z", + "city": "Katelinworth", + "region": "Thompson-Okanagan" + }, + { + "uuid": "12c5699c-e447-48f6-ae8b-53f1b99b4fd2", + "siteID": 20838, + "address": "490 Antonette Mill", + "latitude": 50.6332, + "longitude": -129.1593, + "lastUpdated": "2017-12-04T07:35:53.644Z", + "city": "East Rosamondfort", + "region": "Thompson-Okanagan" + }, + { + "uuid": "6fce0739-01ac-41b1-acbc-2dedb1d40370", + "siteID": 18685, + "address": "72199 Sauer Walks", + "latitude": 57.9703, + "longitude": -135.0421, + "lastUpdated": "2022-01-07T16:59:47.523Z", + "city": "North Efrainfield", + "region": "Cariboo" + }, + { + "uuid": "17993787-e82b-4046-8fa9-7cfd3366b2a3", + "siteID": 18495, + "address": "3151 Alfred Glens", + "latitude": 53.5309, + "longitude": -124.2723, + "lastUpdated": "2020-05-29T05:25:17.762Z", + "city": "North Dario", + "region": "Mainland/Southwest" + }, + { + "uuid": "b4578957-6631-4359-8417-d84871330466", + "siteID": 17144, + "address": "18491 Yasmeen Lakes", + "latitude": 55.496, + "longitude": -130.0219, + "lastUpdated": "2022-02-23T07:53:51.281Z", + "city": "Port Malvinacester", + "region": " North Coast" + }, + { + "uuid": "1c079782-a572-4ddf-9356-6457627a357e", + "siteID": 17881, + "address": "391 Mortimer Tunnel", + "latitude": 52.4642, + "longitude": -128.5154, + "lastUpdated": "2021-09-10T17:54:58.595Z", + "city": "South Lourdes", + "region": "Thompson-Okanagan" + }, + { + "uuid": "0e2d9241-4238-4161-8942-221fe8bfd2c2", + "siteID": 20450, + "address": "808 Tina Turnpike", + "latitude": 58.6208, + "longitude": -128.606, + "lastUpdated": "2023-01-24T07:29:40.703Z", + "city": "Kaletown", + "region": "Kootenay" + }, + { + "uuid": "e3074197-a419-4752-93ac-bd66a114f95c", + "siteID": 18226, + "address": "701 Cristal Ville", + "latitude": 57.6725, + "longitude": -127.929, + "lastUpdated": "2017-11-30T10:32:34.996Z", + "city": "Tulare", + "region": "Thompson-Okanagan" + }, + { + "uuid": "3aaa73b0-c0fc-4134-9043-ac0e2efc0737", + "siteID": 16899, + "address": "90298 Myles Stream", + "latitude": 53.2285, + "longitude": -119.1439, + "lastUpdated": "2020-01-28T05:21:01.540Z", + "city": "Palo Alto", + "region": "Cariboo" + }, + { + "uuid": "0d1a4c41-081f-4766-8c35-e02008194103", + "siteID": 18690, + "address": "27440 Gibson Dale", + "latitude": 54.1606, + "longitude": -122.3338, + "lastUpdated": "2015-10-17T11:06:38.110Z", + "city": "Broken Arrow", + "region": "Mainland/Southwest" + }, + { + "uuid": "6537d2d5-2041-4ffb-985e-af23cb736d61", + "siteID": 19726, + "address": "544 Jed Rest", + "latitude": 51.3057, + "longitude": -128.4374, + "lastUpdated": "2019-07-06T23:05:03.646Z", + "city": "South Josefaberg", + "region": "Thompson-Okanagan" + }, + { + "uuid": "44ec5c65-1a1d-41c5-8ec9-9547c465956e", + "siteID": 15351, + "address": "646 Stehr Street", + "latitude": 54.2351, + "longitude": -124.8358, + "lastUpdated": "2021-10-12T21:55:49.395Z", + "city": "Kenner", + "region": "Cariboo" + }, + { + "uuid": "b3899c58-7055-4c53-84c0-f9bc8efd5a6e", + "siteID": 17047, + "address": "390 Kristian Alley", + "latitude": 50.7963, + "longitude": -132.0913, + "lastUpdated": "2017-08-11T09:41:20.477Z", + "city": "Davonboro", + "region": "Kootenay" + }, + { + "uuid": "ab3d61a5-516a-4d72-824f-35dd25faf8e5", + "siteID": 18554, + "address": "61918 Armando Knoll", + "latitude": 49.0395, + "longitude": -125.1529, + "lastUpdated": "2016-10-26T16:14:49.457Z", + "city": "Amaniworth", + "region": "Cariboo" + }, + { + "uuid": "18e52c2d-a317-43f5-af5d-449e97341e41", + "siteID": 18795, + "address": "344 Skiles Ramp", + "latitude": 54.862, + "longitude": -130.0517, + "lastUpdated": "2016-04-24T14:28:15.709Z", + "city": "Lake Sheila", + "region": "Mainland/Southwest" + }, + { + "uuid": "d1de57a2-f166-4c91-a4f0-a6b23930efe7", + "siteID": 15604, + "address": "696 Senger Pines", + "latitude": 53.3486, + "longitude": -122.8607, + "lastUpdated": "2015-12-18T13:15:21.583Z", + "city": "West Anabelberg", + "region": "Thompson-Okanagan" + }, + { + "uuid": "6428e91e-3048-4d3b-aaf2-5c8bd4613fa1", + "siteID": 20494, + "address": "28989 Cormier Way", + "latitude": 50.8252, + "longitude": -130.1739, + "lastUpdated": "2014-06-29T01:14:07.476Z", + "city": "Scottsdale", + "region": "Kootenay" + }, + { + "uuid": "4f93698e-55d2-4e69-ad17-d5e4be7fe380", + "siteID": 18774, + "address": "224 Clarissa Plain", + "latitude": 48.1594, + "longitude": -124.1106, + "lastUpdated": "2014-09-18T15:21:17.935Z", + "city": "South Eldoraside", + "region": " North Coast" + }, + { + "uuid": "1fa9c01b-7b2a-4380-8016-fbb51f968f3b", + "siteID": 19490, + "address": "5044 Dee Prairie", + "latitude": 56.2091, + "longitude": -135.9092, + "lastUpdated": "2015-11-09T17:32:03.569Z", + "city": "North Camylleburgh", + "region": "Thompson-Okanagan" + }, + { + "uuid": "d499e4b3-9742-45c7-a3f7-051023def5c9", + "siteID": 19367, + "address": "780 Miracle Cliff", + "latitude": 53.1537, + "longitude": -124.9793, + "lastUpdated": "2018-08-19T09:34:53.677Z", + "city": "Grapevine", + "region": "Thompson-Okanagan" + }, + { + "uuid": "22e27552-1d38-4d27-a350-5734725e1b21", + "siteID": 18505, + "address": "78373 Jesus Crescent", + "latitude": 48.3083, + "longitude": -124.9677, + "lastUpdated": "2017-05-25T06:08:58.960Z", + "city": "Ullrichmouth", + "region": "Vancouver Island/Coast" + }, + { + "uuid": "91c163f4-785c-4ec9-989f-4f0ea3c670fe", + "siteID": 15481, + "address": "2396 Vincent Mills", + "latitude": 58.4512, + "longitude": -127.1711, + "lastUpdated": "2017-08-24T13:30:27.353Z", + "city": "Metzside", + "region": " North Coast" + }, + { + "uuid": "173f4364-5140-4522-95dd-74a39e93b497", + "siteID": 16759, + "address": "523 Candido Run", + "latitude": 53.5694, + "longitude": -128.3076, + "lastUpdated": "2021-05-23T10:18:19.072Z", + "city": "Fort Bethboro", + "region": "Vancouver Island/Coast" + }, + { + "uuid": "c150ddcd-a5bc-422c-beeb-d864e84fdd6d", + "siteID": 16197, + "address": "88206 Loyce Rapid", + "latitude": 51.0591, + "longitude": -136.2352, + "lastUpdated": "2021-12-30T12:07:17.366Z", + "city": "Perris", + "region": "Mainland/Southwest" + }, + { + "uuid": "b5e32fc8-d41e-42ef-bcff-2393f04cd8ff", + "siteID": 16825, + "address": "6042 Green Cliff", + "latitude": 55.3592, + "longitude": -123.277, + "lastUpdated": "2022-11-25T06:18:39.483Z", + "city": "Micahburgh", + "region": "Kootenay" + }, + { + "uuid": "4bb755b2-05f5-4499-b975-bd076f16d4b4", + "siteID": 20308, + "address": "987 Lysanne Parkways", + "latitude": 54.4685, + "longitude": -121.9738, + "lastUpdated": "2016-09-22T21:55:36.005Z", + "city": "Odessa", + "region": " North Coast" + }, + { + "uuid": "f48abe1b-5a9f-49c5-b0f4-eaaa79c36e74", + "siteID": 17534, + "address": "87737 Emmanuel Rest", + "latitude": 52.5507, + "longitude": -124.1756, + "lastUpdated": "2023-06-22T11:56:19.197Z", + "city": "East Draketon", + "region": "Cariboo" + }, + { + "uuid": "a13b8e89-c92b-4c81-8878-a1c305176b68", + "siteID": 17790, + "address": "5161 Hoppe Mission", + "latitude": 50.59, + "longitude": -120.1417, + "lastUpdated": "2016-05-13T20:52:43.637Z", + "city": "Bayerchester", + "region": "Cariboo" + }, + { + "uuid": "9c2e349c-6623-423c-a996-9d00fec8869a", + "siteID": 19067, + "address": "67348 Chadd Prairie", + "latitude": 52.5235, + "longitude": -136.4422, + "lastUpdated": "2019-04-03T08:18:40.404Z", + "city": "Wilberbury", + "region": "Thompson-Okanagan" + }, + { + "uuid": "e4b44891-afe7-4410-aa1c-b5fa29afd471", + "siteID": 17512, + "address": "466 Schamberger Plaza", + "latitude": 58.1781, + "longitude": -133.0443, + "lastUpdated": "2014-04-10T05:09:40.983Z", + "city": "West Emmett", + "region": "Mainland/Southwest" + }, + { + "uuid": "b3aeab11-5bfd-4cf2-923e-50e84d23975a", + "siteID": 15748, + "address": "249 Rae Shoals", + "latitude": 56.2622, + "longitude": -119.8801, + "lastUpdated": "2019-11-30T21:27:42.522Z", + "city": "Lake Blaisebury", + "region": "Cariboo" + }, + { + "uuid": "a11bc624-1473-4de4-a217-60b4dbf8f582", + "siteID": 18388, + "address": "16731 Pollich Mall", + "latitude": 58.9029, + "longitude": -121.0477, + "lastUpdated": "2014-02-16T09:09:35.514Z", + "city": "Walshstad", + "region": "Thompson-Okanagan" + }, + { + "uuid": "a4aad995-559e-4330-9267-692e90cf6661", + "siteID": 17136, + "address": "30504 Litzy Passage", + "latitude": 58.2266, + "longitude": -130.3548, + "lastUpdated": "2021-01-01T10:41:11.533Z", + "city": "Rubyeport", + "region": "Cariboo" + }, + { + "uuid": "e3fa5606-c575-451d-9053-879ba5351e23", + "siteID": 15616, + "address": "66692 Wunsch Spur", + "latitude": 52.9074, + "longitude": -121.076, + "lastUpdated": "2014-08-05T21:18:21.460Z", + "city": "Jessieworth", + "region": "Kootenay" + }, + { + "uuid": "895a1606-1618-45f5-842f-f184bdb661b5", + "siteID": 17951, + "address": "523 Stefanie Pike", + "latitude": 50.4294, + "longitude": -129.7678, + "lastUpdated": "2022-08-01T17:45:52.012Z", + "city": "New Marguerite", + "region": "Mainland/Southwest" + }, + { + "uuid": "cdae7ca7-4143-4e35-9e87-0d9be69299aa", + "siteID": 18681, + "address": "864 Runolfsdottir River", + "latitude": 49.7323, + "longitude": -131.3977, + "lastUpdated": "2017-09-22T23:10:52.408Z", + "city": "Grand Forks", + "region": "Kootenay" + }, + { + "uuid": "ef8cd8d1-2d32-4300-9015-3357bc38d759", + "siteID": 17186, + "address": "349 Koss Springs", + "latitude": 54.0952, + "longitude": -123.0386, + "lastUpdated": "2015-10-14T14:26:46.195Z", + "city": "North Alaina", + "region": "Cariboo" + }, + { + "uuid": "f83c48f5-f9f7-433d-a98b-63754dac2af0", + "siteID": 20789, + "address": "60426 Haley Crossroad", + "latitude": 56.3934, + "longitude": -135.7144, + "lastUpdated": "2022-07-20T17:54:47.832Z", + "city": "Kreigerhaven", + "region": "Thompson-Okanagan" + }, + { + "uuid": "c8db726f-9dc7-48b3-9cca-856984b60a72", + "siteID": 18926, + "address": "2423 Larissa Roads", + "latitude": 57.8358, + "longitude": -138.1003, + "lastUpdated": "2020-05-24T15:23:18.872Z", + "city": "South Lamberthaven", + "region": "Kootenay" + }, + { + "uuid": "86a13b16-ec8a-4d03-aa34-6be9258f5384", + "siteID": 15757, + "address": "65781 Bernhard Loaf", + "latitude": 50.798, + "longitude": -138.6714, + "lastUpdated": "2018-10-11T15:09:59.646Z", + "city": "Heavenworth", + "region": "Thompson-Okanagan" + }, + { + "uuid": "f740f44d-739c-40bc-a7ff-19c72049e64e", + "siteID": 15272, + "address": "107 Quitzon Corner", + "latitude": 57.2521, + "longitude": -127.7507, + "lastUpdated": "2018-12-25T16:41:14.548Z", + "city": "Lake Gideonview", + "region": "Vancouver Island/Coast" + }, + { + "uuid": "89ee6efc-cfe0-4974-a54c-b0a0ed3cecaf", + "siteID": 20051, + "address": "8292 Krajcik Canyon", + "latitude": 56.1789, + "longitude": -120.7289, + "lastUpdated": "2014-05-17T10:49:15.760Z", + "city": "Fort Abbey", + "region": "Kootenay" + }, + { + "uuid": "2c174d04-9c6a-4d3b-8dd0-5b582c089e61", + "siteID": 15297, + "address": "9820 Jessika Light", + "latitude": 52.1673, + "longitude": -137.0111, + "lastUpdated": "2015-08-16T13:38:15.020Z", + "city": "Blandaton", + "region": "Thompson-Okanagan" + }, + { + "uuid": "36a34666-16d4-47f3-a2fc-6535a448b138", + "siteID": 19134, + "address": "78171 Charlie Streets", + "latitude": 50.2378, + "longitude": -120.8828, + "lastUpdated": "2022-02-01T07:35:06.932Z", + "city": "West Benedict", + "region": "Cariboo" + }, + { + "uuid": "aae90b9a-2a92-4312-8f18-8a2d5fa36652", + "siteID": 16126, + "address": "40019 Leilani Plain", + "latitude": 48.3595, + "longitude": -135.1893, + "lastUpdated": "2020-11-02T05:16:44.998Z", + "city": "Kingsport", + "region": "Thompson-Okanagan" + }, + { + "uuid": "bfcc78c7-a8ad-4013-9adc-f0dd6ba0a81a", + "siteID": 16609, + "address": "746 Meda Orchard", + "latitude": 52.2887, + "longitude": -125.8531, + "lastUpdated": "2014-05-10T05:08:21.818Z", + "city": "Fort Fredy", + "region": "Thompson-Okanagan" + }, + { + "uuid": "b9dcc9bd-266d-45a6-997e-93b14d86e542", + "siteID": 17366, + "address": "2988 Upton Mountain", + "latitude": 50.0119, + "longitude": -137.2447, + "lastUpdated": "2016-08-06T17:42:51.185Z", + "city": "Queenbury", + "region": "Mainland/Southwest" + }, + { + "uuid": "d65253b5-c3a4-416b-bfc4-00214a746d13", + "siteID": 20141, + "address": "92785 Kelsie Path", + "latitude": 56.8278, + "longitude": -124.5518, + "lastUpdated": "2022-07-29T11:59:24.756Z", + "city": "North Wendell", + "region": "Kootenay" + }, + { + "uuid": "1abfc382-72ce-485d-9d69-cf90f2eb9ae9", + "siteID": 15478, + "address": "67104 Johnson Overpass", + "latitude": 48.0228, + "longitude": -120.3033, + "lastUpdated": "2019-11-13T18:46:35.789Z", + "city": "Fort Novafield", + "region": "Cariboo" + }, + { + "uuid": "d43724eb-6474-4d84-bf31-22f7fb923e55", + "siteID": 18748, + "address": "10540 Lang Isle", + "latitude": 50.9933, + "longitude": -129.6189, + "lastUpdated": "2022-03-23T00:46:49.432Z", + "city": "Kerlukeboro", + "region": "Thompson-Okanagan" + }, + { + "uuid": "7cd6680d-058a-4817-9675-8db13153c34f", + "siteID": 15195, + "address": "6560 Fritsch Curve", + "latitude": 57.3406, + "longitude": -138.2989, + "lastUpdated": "2017-02-24T12:49:09.128Z", + "city": "Maggiestad", + "region": "Thompson-Okanagan" + }, + { + "uuid": "d67c6fe8-2a45-4b12-848e-e7c0dbacb3c3", + "siteID": 20160, + "address": "62132 Carmella Circle", + "latitude": 50.5891, + "longitude": -135.0032, + "lastUpdated": "2016-06-22T06:52:49.834Z", + "city": "Woodbury", + "region": "Kootenay" + }, + { + "uuid": "ee370fe7-8d68-4ae1-b3a0-0c603a7559c3", + "siteID": 16353, + "address": "807 Bette Canyon", + "latitude": 54.6865, + "longitude": -118.3464, + "lastUpdated": "2013-10-25T23:54:40.961Z", + "city": "McCulloughworth", + "region": "Thompson-Okanagan" + }, + { + "uuid": "e2e3e66c-40e8-4a90-9b75-b98370bd792a", + "siteID": 20951, + "address": "4179 Johnson Landing", + "latitude": 52.1019, + "longitude": -135.7775, + "lastUpdated": "2022-02-15T16:58:19.595Z", + "city": "Lindgrenton", + "region": "Vancouver Island/Coast" + }, + { + "uuid": "6207eacd-4be4-46d1-b768-81edafb50f22", + "siteID": 18013, + "address": "856 Kreiger Corner", + "latitude": 54.1308, + "longitude": -118.0459, + "lastUpdated": "2023-07-22T11:15:15.833Z", + "city": "New Kevon", + "region": "Mainland/Southwest" + }, + { + "uuid": "6544d4f3-dfd4-49ea-8edf-eb1f01c521cf", + "siteID": 20409, + "address": "97797 Elwyn Junctions", + "latitude": 55.867, + "longitude": -127.4502, + "lastUpdated": "2015-08-02T21:25:29.175Z", + "city": "Ceciliaburgh", + "region": " North Coast" + }, + { + "uuid": "73692f53-4951-460b-b993-5efdc3e87a6e", + "siteID": 20957, + "address": "296 Kunze Mill", + "latitude": 55.4861, + "longitude": -128.4006, + "lastUpdated": "2023-07-22T14:20:46.548Z", + "city": "East Agustinaland", + "region": "Vancouver Island/Coast" + }, + { + "uuid": "71feca59-47a9-4a97-94b0-4b68ac21f538", + "siteID": 19598, + "address": "284 Grady Heights", + "latitude": 53.8036, + "longitude": -132.7099, + "lastUpdated": "2022-09-30T17:07:04.694Z", + "city": "West Maziehaven", + "region": "Vancouver Island/Coast" + }, + { + "uuid": "47dbb41f-43c4-4b91-81c2-0043f7214a2b", + "siteID": 20158, + "address": "913 Ryan Ranch", + "latitude": 51.9784, + "longitude": -121.8241, + "lastUpdated": "2017-09-28T05:01:59.582Z", + "city": "Loweboro", + "region": "Vancouver Island/Coast" + }, + { + "uuid": "647a3ffd-976e-4c0c-bfe4-7b4b5e8451e8", + "siteID": 16966, + "address": "6305 Adam Plains", + "latitude": 58.0586, + "longitude": -136.7103, + "lastUpdated": "2021-10-22T23:46:17.901Z", + "city": "South Hailiefort", + "region": "Vancouver Island/Coast" + }, + { + "uuid": "bb620ce2-4923-44e0-a99a-5362a498f7a7", + "siteID": 17128, + "address": "379 Durgan Mills", + "latitude": 54.6643, + "longitude": -120.5306, + "lastUpdated": "2016-10-03T09:14:05.016Z", + "city": "West Justinechester", + "region": "Vancouver Island/Coast" + }, + { + "uuid": "d21ef400-20a1-4554-9c85-df612fa58269", + "siteID": 16984, + "address": "85564 Douglas Mills", + "latitude": 51.9895, + "longitude": -133.0589, + "lastUpdated": "2014-06-13T15:23:14.912Z", + "city": "Cummingsmouth", + "region": "Thompson-Okanagan" + }, + { + "uuid": "09671446-4210-4a3b-96f3-1c910f37cfb6", + "siteID": 16356, + "address": "616 Wade Parks", + "latitude": 50.2669, + "longitude": -119.0136, + "lastUpdated": "2022-01-15T13:59:39.811Z", + "city": "Johns Creek", + "region": " North Coast" + }, + { + "uuid": "36aed971-b905-404e-a88e-3bee28732af7", + "siteID": 18142, + "address": "868 Littel Circles", + "latitude": 54.8599, + "longitude": -134.9007, + "lastUpdated": "2020-05-17T15:56:35.136Z", + "city": "West Joliebury", + "region": "Mainland/Southwest" + }, + { + "uuid": "64f7159e-fb39-4439-add3-5a1fbda7761c", + "siteID": 20998, + "address": "8469 Corkery Fork", + "latitude": 52.938, + "longitude": -132.9597, + "lastUpdated": "2014-07-15T14:22:36.245Z", + "city": "North Rebeccaworth", + "region": "Mainland/Southwest" + }, + { + "uuid": "535c1ce2-aa50-4a27-a998-fb8cc0199b22", + "siteID": 20501, + "address": "3728 Mraz Overpass", + "latitude": 51.4774, + "longitude": -138.1117, + "lastUpdated": "2019-11-02T18:24:54.478Z", + "city": "Wesley Chapel", + "region": "Thompson-Okanagan" + }, + { + "uuid": "affb4db6-27f2-45ef-869d-3f1b3e404dbd", + "siteID": 16229, + "address": "4440 Heaney Underpass", + "latitude": 55.7388, + "longitude": -119.5637, + "lastUpdated": "2019-03-27T13:52:38.188Z", + "city": "Lonnieworth", + "region": "Vancouver Island/Coast" + }, + { + "uuid": "03bb32e2-f31d-471e-9539-bb7e26770d75", + "siteID": 16960, + "address": "4662 Wintheiser Estate", + "latitude": 52.451, + "longitude": -121.7718, + "lastUpdated": "2015-11-20T16:49:30.632Z", + "city": "Binghamton", + "region": "Thompson-Okanagan" + }, + { + "uuid": "524fdb63-b404-4322-a687-ed5d50d03037", + "siteID": 18824, + "address": "59879 Oswaldo Lakes", + "latitude": 50.6607, + "longitude": -134.3473, + "lastUpdated": "2020-07-10T05:28:00.574Z", + "city": "South Adelaboro", + "region": "Cariboo" + }, + { + "uuid": "991c491d-daa2-4b65-a3e6-ab8f55c3899f", + "siteID": 16129, + "address": "16713 Sedrick Burg", + "latitude": 55.8384, + "longitude": -122.8042, + "lastUpdated": "2014-09-02T09:34:15.203Z", + "city": "Collinsview", + "region": "Cariboo" + }, + { + "uuid": "346dd0e0-5526-4e47-b153-846daeb0e1b3", + "siteID": 17477, + "address": "4416 Roscoe Field", + "latitude": 48.2179, + "longitude": -118.2193, + "lastUpdated": "2018-05-01T12:25:05.838Z", + "city": "Port Layla", + "region": "Thompson-Okanagan" + }, + { + "uuid": "4631ae81-b561-48b9-8d88-451d9cb0d613", + "siteID": 18440, + "address": "770 Hartmann Skyway", + "latitude": 55.6063, + "longitude": -131.0822, + "lastUpdated": "2019-01-23T00:05:39.711Z", + "city": "Grantbury", + "region": "Thompson-Okanagan" + }, + { + "uuid": "629be896-9111-4d3d-a74b-bc3470a9c50b", + "siteID": 19644, + "address": "3037 Paucek Center", + "latitude": 55.0813, + "longitude": -133.4761, + "lastUpdated": "2021-07-05T21:38:13.529Z", + "city": "West Jessika", + "region": " North Coast" + }, + { + "uuid": "064b97e8-716d-45c5-bb19-8689802510ed", + "siteID": 17968, + "address": "8860 Tromp Branch", + "latitude": 54.3287, + "longitude": -126.9829, + "lastUpdated": "2015-03-29T02:40:30.163Z", + "city": "East Camdenfort", + "region": "Vancouver Island/Coast" + }, + { + "uuid": "3a117012-7981-4bfe-8c7b-95245326cc30", + "siteID": 18792, + "address": "62270 Olson Causeway", + "latitude": 56.9514, + "longitude": -118.4435, + "lastUpdated": "2017-08-09T16:25:43.908Z", + "city": "Wilfredstead", + "region": "Vancouver Island/Coast" + }, + { + "uuid": "1a2414e3-4a91-48bb-98d4-c953deb8f101", + "siteID": 19578, + "address": "834 Stamm Roads", + "latitude": 55.1436, + "longitude": -130.8004, + "lastUpdated": "2021-08-13T09:25:00.179Z", + "city": "North Sethfield", + "region": " North Coast" + }, + { + "uuid": "76c506ba-3363-46ac-b032-97e75380d8e7", + "siteID": 16413, + "address": "96275 Nitzsche Stravenue", + "latitude": 56.0765, + "longitude": -130.3284, + "lastUpdated": "2016-02-11T22:32:36.718Z", + "city": "Boscoshire", + "region": "Kootenay" + }, + { + "uuid": "0715bac2-cd19-4b81-bbb6-56d0d4652def", + "siteID": 19417, + "address": "960 Verdie Oval", + "latitude": 51.9768, + "longitude": -126.4938, + "lastUpdated": "2020-04-23T18:54:31.709Z", + "city": "West Kadeberg", + "region": "Mainland/Southwest" + }, + { + "uuid": "14835738-7c04-4e0a-b10a-ae65472c2c39", + "siteID": 15405, + "address": "572 Kozey Curve", + "latitude": 56.8904, + "longitude": -138.1904, + "lastUpdated": "2020-08-14T07:00:44.534Z", + "city": "Abbottfurt", + "region": "Vancouver Island/Coast" + }, + { + "uuid": "c8b37c76-09ef-45df-81aa-ca927ee7291e", + "siteID": 19714, + "address": "7759 Monahan Burgs", + "latitude": 58.827, + "longitude": -119.2902, + "lastUpdated": "2018-12-26T17:24:03.164Z", + "city": "Lake Jayda", + "region": "Vancouver Island/Coast" + }, + { + "uuid": "71ddbd61-bbeb-46a0-bd3c-9da5480a1934", + "siteID": 16764, + "address": "240 Dickinson Circles", + "latitude": 50.3262, + "longitude": -118.9604, + "lastUpdated": "2016-07-05T22:34:10.481Z", + "city": "Portland", + "region": " North Coast" + }, + { + "uuid": "676feed5-33bf-40c6-be55-5d08d0efea42", + "siteID": 16465, + "address": "222 Kamron Dale", + "latitude": 57.2699, + "longitude": -121.5201, + "lastUpdated": "2018-01-12T18:58:38.265Z", + "city": "Christoptown", + "region": "Cariboo" + }, + { + "uuid": "4f619438-de72-429a-974d-f5b008734ada", + "siteID": 16682, + "address": "2160 Thad Stream", + "latitude": 56.3704, + "longitude": -127.915, + "lastUpdated": "2014-06-14T16:36:26.829Z", + "city": "Meghanfort", + "region": "Cariboo" + }, + { + "uuid": "11df7c44-b88b-44a5-80bb-df43dae22cf9", + "siteID": 16107, + "address": "70298 McDermott Course", + "latitude": 55.4651, + "longitude": -126.8471, + "lastUpdated": "2018-01-17T12:31:50.393Z", + "city": "Mannport", + "region": "Thompson-Okanagan" + }, + { + "uuid": "6331ea7a-adbc-4481-8157-99be9a04fea7", + "siteID": 18602, + "address": "9173 Ankunding Mountain", + "latitude": 54.404, + "longitude": -134.2257, + "lastUpdated": "2018-04-22T02:02:02.386Z", + "city": "Mantecester", + "region": " North Coast" + }, + { + "uuid": "bb9eb11e-4a85-4c25-a207-96625df46480", + "siteID": 18181, + "address": "37354 Olson Lights", + "latitude": 58.0005, + "longitude": -135.8924, + "lastUpdated": "2015-11-18T17:14:58.084Z", + "city": "Philipland", + "region": "Thompson-Okanagan" + }, + { + "uuid": "ee70ca6b-6c6f-4a1e-bf7e-fc54936222cc", + "siteID": 16027, + "address": "6764 Isabel Mills", + "latitude": 53.9907, + "longitude": -136.5522, + "lastUpdated": "2022-10-06T17:52:35.884Z", + "city": "Lake Aubreeshire", + "region": "Cariboo" + }, + { + "uuid": "587c3569-e12f-469a-801e-069a3f0a14b9", + "siteID": 20419, + "address": "313 Hegmann Turnpike", + "latitude": 52.9016, + "longitude": -134.3243, + "lastUpdated": "2016-01-27T05:49:40.695Z", + "city": "Fort Maryjane", + "region": "Cariboo" + }, + { + "uuid": "a1d2269e-2ada-4aca-bfee-4ea13fa1ddb0", + "siteID": 15468, + "address": "174 Alexis Bypass", + "latitude": 49.2014, + "longitude": -127.0137, + "lastUpdated": "2017-05-03T11:30:41.798Z", + "city": "Randicester", + "region": "Kootenay" + }, + { + "uuid": "6428806e-aa6d-4133-821a-0b3f68fa1892", + "siteID": 15915, + "address": "7610 Janiya Fort", + "latitude": 52.7151, + "longitude": -119.5856, + "lastUpdated": "2021-05-24T06:40:21.014Z", + "city": "North Korbin", + "region": "Vancouver Island/Coast" + }, + { + "uuid": "8e78dfa8-9c95-4aad-a1e5-da7e3d080c41", + "siteID": 19792, + "address": "966 Murray Expressway", + "latitude": 55.6718, + "longitude": -131.1496, + "lastUpdated": "2020-08-17T13:00:33.376Z", + "city": "Fort Shaynatown", + "region": "Vancouver Island/Coast" + }, + { + "uuid": "dd98273d-81c8-4c29-820f-92a804d340f8", + "siteID": 20486, + "address": "1704 Joanne Roads", + "latitude": 51.8265, + "longitude": -136.0349, + "lastUpdated": "2021-07-15T13:04:06.187Z", + "city": "Larsontown", + "region": "Thompson-Okanagan" + }, + { + "uuid": "bb225f41-c56b-426a-99f7-f3852ff5e106", + "siteID": 16054, + "address": "51354 Hudson Centers", + "latitude": 52.056, + "longitude": -128.2975, + "lastUpdated": "2015-04-06T02:07:12.110Z", + "city": "Stromanbury", + "region": "Vancouver Island/Coast" + }, + { + "uuid": "e4c85dc7-78f2-4629-bdd7-1db238f0baac", + "siteID": 19519, + "address": "46044 Virgil Manors", + "latitude": 55.2111, + "longitude": -127.4427, + "lastUpdated": "2017-07-27T10:15:44.733Z", + "city": "Orvilleberg", + "region": "Mainland/Southwest" + }, + { + "uuid": "69d604f6-387d-430a-b782-61158b468b7b", + "siteID": 19736, + "address": "52050 Jana Lakes", + "latitude": 57.2234, + "longitude": -132.5629, + "lastUpdated": "2016-06-04T17:27:50.657Z", + "city": "South Lynn", + "region": "Mainland/Southwest" + }, + { + "uuid": "09a2e326-b6cc-416b-a754-4be564e36595", + "siteID": 18619, + "address": "173 Pfeffer Via", + "latitude": 52.5408, + "longitude": -123.4893, + "lastUpdated": "2017-07-12T07:31:29.389Z", + "city": "Dibbertfurt", + "region": "Cariboo" + }, + { + "uuid": "3708fcd4-acfc-4aa1-8ff7-2536e8865c0c", + "siteID": 20624, + "address": "34795 Bridie View", + "latitude": 58.6867, + "longitude": -118.225, + "lastUpdated": "2019-05-11T21:29:15.011Z", + "city": "Swaniawskistead", + "region": " North Coast" + }, + { + "uuid": "c80e9aab-4200-4346-a757-33fa4a577c01", + "siteID": 18435, + "address": "2532 Marcelo Parkway", + "latitude": 49.2548, + "longitude": -124.6601, + "lastUpdated": "2020-09-14T04:34:01.440Z", + "city": "North Candido", + "region": "Kootenay" + }, + { + "uuid": "c3c02bee-1527-4d21-8020-770fc4b0b89b", + "siteID": 17400, + "address": "194 Rico Groves", + "latitude": 56.1744, + "longitude": -131.4754, + "lastUpdated": "2019-08-13T02:58:16.062Z", + "city": "South Jermeyfield", + "region": "Kootenay" + }, + { + "uuid": "86f1aca3-cac5-4618-a765-1930c68bf2b2", + "siteID": 15603, + "address": "983 Friesen Pike", + "latitude": 54.7135, + "longitude": -135.6854, + "lastUpdated": "2021-01-08T18:04:08.720Z", + "city": "Boydhaven", + "region": "Mainland/Southwest" + }, + { + "uuid": "efc0e3e4-3aec-4aa5-89dd-9d7da68c3539", + "siteID": 18035, + "address": "36686 Watson Ville", + "latitude": 51.7362, + "longitude": -135.5104, + "lastUpdated": "2021-08-24T22:49:31.545Z", + "city": "New Gonzalo", + "region": " North Coast" + }, + { + "uuid": "cdd56dc9-f8e1-4954-93c7-f5d2bcdeb1dd", + "siteID": 15895, + "address": "6052 Goldner Crescent", + "latitude": 48.4019, + "longitude": -136.674, + "lastUpdated": "2016-08-17T02:46:28.490Z", + "city": "South Nat", + "region": "Kootenay" + }, + { + "uuid": "c0f95f1e-c0e9-472d-bc6d-f8bb9ffc4097", + "siteID": 15749, + "address": "87682 Marvin Tunnel", + "latitude": 55.298, + "longitude": -120.7632, + "lastUpdated": "2017-09-21T19:00:49.190Z", + "city": "Austin", + "region": "Thompson-Okanagan" + }, + { + "uuid": "8620813f-0aba-4a88-bc64-934188cd1775", + "siteID": 18358, + "address": "6498 Stroman Spurs", + "latitude": 49.0929, + "longitude": -130.5525, + "lastUpdated": "2020-02-14T15:30:54.129Z", + "city": "Fort Kelvin", + "region": "Cariboo" + }, + { + "uuid": "4457df62-b8ad-4bf3-a508-dd61852fafb5", + "siteID": 16820, + "address": "330 Leffler Radial", + "latitude": 57.2722, + "longitude": -131.8414, + "lastUpdated": "2022-09-29T05:56:34.759Z", + "city": "Arlington Heights", + "region": "Vancouver Island/Coast" + }, + { + "uuid": "deb0c832-f1a5-4174-b305-19b6ed711e2c", + "siteID": 20045, + "address": "90958 Dashawn Mission", + "latitude": 49.3951, + "longitude": -127.7785, + "lastUpdated": "2016-01-15T18:31:54.886Z", + "city": "Lemkeborough", + "region": "Cariboo" + }, + { + "uuid": "f0b093d3-3e6f-4781-8b23-501321fc0a02", + "siteID": 18815, + "address": "1986 Moore Crossing", + "latitude": 56.0993, + "longitude": -119.4169, + "lastUpdated": "2014-04-07T10:02:08.506Z", + "city": "South Jewell", + "region": "Kootenay" + }, + { + "uuid": "086d36cd-d7b4-44c5-960b-98b4666d0d46", + "siteID": 15845, + "address": "60549 Camryn Villages", + "latitude": 57.9722, + "longitude": -128.9536, + "lastUpdated": "2020-02-14T16:33:51.943Z", + "city": "West Queen", + "region": "Mainland/Southwest" + }, + { + "uuid": "efead2d9-7ea1-4d52-9dfe-7253c6f0c6e4", + "siteID": 20321, + "address": "4834 Ian Center", + "latitude": 49.7584, + "longitude": -135.5571, + "lastUpdated": "2015-10-13T19:59:54.399Z", + "city": "South Roderickland", + "region": " North Coast" + }, + { + "uuid": "3d1c2c02-a712-4e36-9906-b5fe7897f111", + "siteID": 16653, + "address": "278 Hammes Shores", + "latitude": 52.8747, + "longitude": -136.3774, + "lastUpdated": "2014-12-07T11:35:40.496Z", + "city": "Ellicott City", + "region": " North Coast" + }, + { + "uuid": "a7785ed7-74a6-491c-a2e4-c7403ca57206", + "siteID": 18064, + "address": "615 Roberts Trace", + "latitude": 48.8801, + "longitude": -138.0281, + "lastUpdated": "2018-03-28T05:25:52.523Z", + "city": "Downers Grove", + "region": "Vancouver Island/Coast" + }, + { + "uuid": "9319773e-37bb-43b3-96e4-02b734b7be9e", + "siteID": 16328, + "address": "8796 Keebler Harbor", + "latitude": 49.7899, + "longitude": -118.8844, + "lastUpdated": "2016-06-25T04:55:17.603Z", + "city": "New Conrad", + "region": "Thompson-Okanagan" + }, + { + "uuid": "3bbee8a1-272d-4854-9f11-d395dea230a7", + "siteID": 19745, + "address": "299 Olga Ford", + "latitude": 49.5216, + "longitude": -129.0129, + "lastUpdated": "2014-11-04T03:56:44.644Z", + "city": "Port Hillard", + "region": "Vancouver Island/Coast" + }, + { + "uuid": "7f0fe7c8-2bfe-4873-9d0e-9daa2bc2d112", + "siteID": 16989, + "address": "13591 Morar Orchard", + "latitude": 53.3586, + "longitude": -123.45, + "lastUpdated": "2018-05-29T12:27:02.846Z", + "city": "East Israel", + "region": "Thompson-Okanagan" + }, + { + "uuid": "db3399e8-4345-49b6-9377-fa04b849029c", + "siteID": 18686, + "address": "7413 Jadyn Landing", + "latitude": 55.4054, + "longitude": -137.0002, + "lastUpdated": "2022-01-25T03:21:27.640Z", + "city": "Chico", + "region": "Vancouver Island/Coast" + }, + { + "uuid": "11bec402-d12e-456b-98c8-87f7cfb0abae", + "siteID": 17008, + "address": "43201 McClure Glens", + "latitude": 52.8188, + "longitude": -126.8155, + "lastUpdated": "2016-08-17T05:34:42.950Z", + "city": "Port Lesleybury", + "region": "Cariboo" + }, + { + "uuid": "f6f0a747-6bcd-417b-9e52-f08ba5cda122", + "siteID": 19302, + "address": "368 Hoeger Brooks", + "latitude": 58.9684, + "longitude": -118.0452, + "lastUpdated": "2013-10-30T19:40:49.519Z", + "city": "West Horacechester", + "region": "Kootenay" + }, + { + "uuid": "31d73121-1239-40da-a300-2414a814ceb8", + "siteID": 18191, + "address": "845 Napoleon Ways", + "latitude": 55.6157, + "longitude": -130.8562, + "lastUpdated": "2020-04-25T10:28:36.536Z", + "city": "Lake Marvinfurt", + "region": "Thompson-Okanagan" + }, + { + "uuid": "3d803455-bb5c-46ee-bc13-9fe7c81cff11", + "siteID": 19463, + "address": "250 Ondricka Vista", + "latitude": 54.4326, + "longitude": -135.631, + "lastUpdated": "2014-04-18T18:23:01.471Z", + "city": "Cape Coral", + "region": "Thompson-Okanagan" + }, + { + "uuid": "de15420c-8dd7-4fe9-a6de-f3cec6ae098d", + "siteID": 17754, + "address": "7578 Alana Via", + "latitude": 50.3585, + "longitude": -127.4045, + "lastUpdated": "2015-05-10T17:26:47.485Z", + "city": "East Jeffereyfort", + "region": " North Coast" + }, + { + "uuid": "5d5aa207-4d51-4529-ab17-126069d589e9", + "siteID": 18321, + "address": "650 Brooks Unions", + "latitude": 51.0157, + "longitude": -131.9486, + "lastUpdated": "2021-06-21T13:06:42.506Z", + "city": "Thornton", + "region": "Cariboo" + }, + { + "uuid": "5a44ecd6-c356-4924-b8ba-13a49831e1e8", + "siteID": 20790, + "address": "7351 Kendrick Centers", + "latitude": 57.2699, + "longitude": -135.0314, + "lastUpdated": "2022-08-19T12:23:29.563Z", + "city": "Nobleboro", + "region": "Cariboo" + }, + { + "uuid": "e77f21bb-2e88-479b-b0d2-eefb959df5bd", + "siteID": 18988, + "address": "5501 Norval Parkway", + "latitude": 58.6849, + "longitude": -138.9779, + "lastUpdated": "2016-04-02T15:55:22.296Z", + "city": "Independence", + "region": "Cariboo" + }, + { + "uuid": "c86a93b0-f79d-4362-982a-9b99b2904cc6", + "siteID": 20710, + "address": "6078 Glover Walk", + "latitude": 48.7747, + "longitude": -127.8007, + "lastUpdated": "2018-08-05T12:27:19.196Z", + "city": "South Roy", + "region": " North Coast" + }, + { + "uuid": "233625b2-18a9-4fb3-97ae-aebc63273d41", + "siteID": 15220, + "address": "678 Lurline Circle", + "latitude": 51.7984, + "longitude": -126.142, + "lastUpdated": "2019-12-27T03:35:27.488Z", + "city": "Hudsonmouth", + "region": " North Coast" + }, + { + "uuid": "0f8e5538-defb-4a67-932c-c3b6fe9322c6", + "siteID": 17378, + "address": "9193 Ferry Brook", + "latitude": 49.6592, + "longitude": -131.0431, + "lastUpdated": "2015-06-04T08:29:05.779Z", + "city": "Mertzfort", + "region": "Cariboo" + }, + { + "uuid": "ff08eef1-77fe-46f2-8beb-f6015fb52ebf", + "siteID": 15617, + "address": "1052 Schaefer Green", + "latitude": 56.1479, + "longitude": -128.3274, + "lastUpdated": "2018-06-19T11:06:43.505Z", + "city": "East Rowland", + "region": "Thompson-Okanagan" + }, + { + "uuid": "6a7e5f26-9cea-4ddd-ac55-0c28b95bd3f0", + "siteID": 20898, + "address": "8025 Alisa Shores", + "latitude": 49.7147, + "longitude": -135.2173, + "lastUpdated": "2018-10-14T19:00:12.953Z", + "city": "East Kennedifurt", + "region": "Cariboo" + }, + { + "uuid": "a38e5e37-f689-4c0d-97a1-6910c6d040ad", + "siteID": 15331, + "address": "9683 Krystal Heights", + "latitude": 53.2118, + "longitude": -137.5491, + "lastUpdated": "2019-09-16T10:24:07.631Z", + "city": "Jovanboro", + "region": "Thompson-Okanagan" + }, + { + "uuid": "84e5e500-b875-43b7-b860-500d2c78d70b", + "siteID": 15404, + "address": "97507 Jayne Lodge", + "latitude": 54.4813, + "longitude": -123.0207, + "lastUpdated": "2023-03-17T17:16:27.899Z", + "city": "Vandervortmouth", + "region": "Mainland/Southwest" + }, + { + "uuid": "a5b9bdef-170c-4e85-9012-bbd57ec5d466", + "siteID": 16694, + "address": "70361 Valentine Islands", + "latitude": 50.1224, + "longitude": -127.9736, + "lastUpdated": "2014-10-29T09:22:22.740Z", + "city": "South Emie", + "region": " North Coast" + }, + { + "uuid": "a80ef6fb-82fd-4c51-b7b6-066edcd106cc", + "siteID": 19853, + "address": "6748 Sabina Mall", + "latitude": 48.6155, + "longitude": -120.8329, + "lastUpdated": "2022-10-20T16:51:27.900Z", + "city": "East Odaboro", + "region": " North Coast" + }, + { + "uuid": "ab19c7d3-ae4b-4e15-a346-0c7d4c4806ac", + "siteID": 18834, + "address": "2491 Ruben Cliff", + "latitude": 52.2471, + "longitude": -137.7215, + "lastUpdated": "2017-02-17T23:28:04.173Z", + "city": "Toledo", + "region": " North Coast" + }, + { + "uuid": "2053c1a6-b427-4d3e-a1f7-9ed04842ef8b", + "siteID": 16492, + "address": "1470 Bednar Land", + "latitude": 58.3282, + "longitude": -128.299, + "lastUpdated": "2022-11-22T17:52:41.061Z", + "city": "Beahanchester", + "region": " North Coast" + }, + { + "uuid": "15719f22-68fb-4283-8bc0-58db7495ebb0", + "siteID": 15852, + "address": "4676 Elinore Burg", + "latitude": 58.2407, + "longitude": -133.2454, + "lastUpdated": "2021-08-01T17:08:02.357Z", + "city": "Ignatiusberg", + "region": "Thompson-Okanagan" + }, + { + "uuid": "8f628027-c82a-43d1-b278-a657394284c4", + "siteID": 18438, + "address": "553 Medhurst Creek", + "latitude": 56.2388, + "longitude": -133.2674, + "lastUpdated": "2020-07-05T03:55:52.435Z", + "city": "Bodebury", + "region": "Thompson-Okanagan" + }, + { + "uuid": "b00614a9-5ce4-4173-8091-a3f24a21f1cb", + "siteID": 20373, + "address": "88947 Thiel Plaza", + "latitude": 57.6893, + "longitude": -121.6733, + "lastUpdated": "2023-04-17T08:56:09.544Z", + "city": "West Napoleonshire", + "region": "Kootenay" + }, + { + "uuid": "199d72e4-64f5-47e9-96bd-5ae356fc3321", + "siteID": 18195, + "address": "65220 Federico Ramp", + "latitude": 56.1444, + "longitude": -138.3111, + "lastUpdated": "2017-05-25T15:30:15.408Z", + "city": "Isabelleton", + "region": "Thompson-Okanagan" + }, + { + "uuid": "6c81619c-c49e-4e1a-806d-fc9868a47786", + "siteID": 16464, + "address": "53270 Deangelo Neck", + "latitude": 58.9881, + "longitude": -121.5401, + "lastUpdated": "2015-09-07T13:41:27.309Z", + "city": "Schaeferburgh", + "region": "Mainland/Southwest" + }, + { + "uuid": "df39decc-bc65-4b47-936d-c7dae6425765", + "siteID": 20009, + "address": "7053 Shanahan Road", + "latitude": 53.7396, + "longitude": -128.4522, + "lastUpdated": "2016-10-13T11:00:34.889Z", + "city": "Gerardside", + "region": "Kootenay" + }, + { + "uuid": "324c507e-5625-4eeb-815f-d131bb3de30d", + "siteID": 17051, + "address": "99425 O'Keefe Pass", + "latitude": 50.0757, + "longitude": -119.8511, + "lastUpdated": "2022-02-13T07:52:31.451Z", + "city": "Pollichshire", + "region": "Mainland/Southwest" + }, + { + "uuid": "137cec30-8b8b-497d-bcc1-7ee9e6913f84", + "siteID": 19533, + "address": "98894 Kutch Garden", + "latitude": 51.6246, + "longitude": -121.1281, + "lastUpdated": "2021-01-07T08:51:32.522Z", + "city": "Starkburgh", + "region": "Kootenay" + }, + { + "uuid": "a452343d-9837-49a3-88d5-c9901b3c1219", + "siteID": 15864, + "address": "39734 Erdman Shores", + "latitude": 57.2492, + "longitude": -133.5176, + "lastUpdated": "2019-05-09T08:18:18.569Z", + "city": "Laneview", + "region": "Vancouver Island/Coast" + }, + { + "uuid": "47e2f8df-6248-4936-80fc-49a161a04c87", + "siteID": 18380, + "address": "4251 Stanton Skyway", + "latitude": 56.784, + "longitude": -118.6645, + "lastUpdated": "2020-08-12T18:41:03.270Z", + "city": "Beahanport", + "region": "Vancouver Island/Coast" + }, + { + "uuid": "ef9710be-ebf1-431f-bb28-1f23523bd5f2", + "siteID": 15634, + "address": "1255 Hanna Shore", + "latitude": 51.0096, + "longitude": -137.5078, + "lastUpdated": "2021-10-21T01:31:46.865Z", + "city": "Jacobifield", + "region": "Vancouver Island/Coast" + }, + { + "uuid": "c35a2db8-e38a-449a-b01f-911b5df8f878", + "siteID": 15676, + "address": "31431 Adriana Lodge", + "latitude": 51.1276, + "longitude": -120.1682, + "lastUpdated": "2022-02-25T03:13:59.779Z", + "city": "Rauboro", + "region": "Mainland/Southwest" + }, + { + "uuid": "8de756d9-0800-4009-9468-754637e30034", + "siteID": 16343, + "address": "154 Bertrand Shores", + "latitude": 50.897, + "longitude": -128.2098, + "lastUpdated": "2022-04-23T10:06:15.408Z", + "city": "Auerport", + "region": " North Coast" + }, + { + "uuid": "746f75d4-95e2-408d-815f-2dacf72de71c", + "siteID": 18168, + "address": "73035 Jo Isle", + "latitude": 50.102, + "longitude": -118.0329, + "lastUpdated": "2016-10-07T12:51:53.687Z", + "city": "Dooleyshire", + "region": "Mainland/Southwest" + }, + { + "uuid": "5f3b0729-6e53-409f-be6a-7ca773557d04", + "siteID": 17983, + "address": "4491 Jessika Gardens", + "latitude": 48.1847, + "longitude": -138.7335, + "lastUpdated": "2022-05-12T10:48:09.931Z", + "city": "El Monte", + "region": "Cariboo" + }, + { + "uuid": "ef2b4e81-daeb-4387-beee-884e8c855c37", + "siteID": 19311, + "address": "7266 Jasmin Lights", + "latitude": 58.7472, + "longitude": -131.7448, + "lastUpdated": "2021-02-13T07:16:31.637Z", + "city": "Rancho Cordova", + "region": "Vancouver Island/Coast" + }, + { + "uuid": "316b1fa4-1bff-4cc0-ad60-4cdd673f5d1f", + "siteID": 17127, + "address": "806 Alison Passage", + "latitude": 55.0202, + "longitude": -130.5472, + "lastUpdated": "2022-08-06T15:46:01.541Z", + "city": "Madilynstead", + "region": "Cariboo" + }, + { + "uuid": "b0296330-3bce-425c-877f-f78bfcfa3806", + "siteID": 16762, + "address": "370 Zemlak Ville", + "latitude": 56.7495, + "longitude": -127.922, + "lastUpdated": "2016-05-04T23:40:50.562Z", + "city": "Port Alenacester", + "region": " North Coast" + }, + { + "uuid": "55dc60a0-f189-4946-b1a1-dd132196855a", + "siteID": 16911, + "address": "46317 Cole Forest", + "latitude": 56.2062, + "longitude": -132.961, + "lastUpdated": "2018-04-01T18:32:47.489Z", + "city": "South Bette", + "region": "Mainland/Southwest" + } +] \ No newline at end of file diff --git a/frontend/site-search-frontend/src/scripts/generate-dummy-data.ts b/frontend/site-search-frontend/src/scripts/generate-dummy-data.ts new file mode 100755 index 00000000..80ac9cfd --- /dev/null +++ b/frontend/site-search-frontend/src/scripts/generate-dummy-data.ts @@ -0,0 +1,28 @@ + +/** + * Statically generate dummy data to a json file. Why? More persistence among changes. + * Makes direct links work on refresh if IDs don't scramble each time. + * + * + * HOW TO USE + * + * Make the file executable: + * chmod +x generate-dummy-data.ts + * + * Run ts-node (just on your dev machine): + * npx ts-node --esm generate-dummy-data.ts + * + * Note: May need to install ts-node. + */ + + +import { createRandomSite } from '../api/dummy-data.tsx' +import { writeFile } from 'fs'; + + +const output = Array.from({length: 250}, _ => createRandomSite()); +const json = JSON.stringify(output); +console.log('Writing to JSON file...'); +writeFile('dummy-data.sites.json', json, 'utf8', () => { + console.log('Done writing JSON file: dummy-data.sites.json') +}); From 2052aef165b842482f576c52e136ad5f78549de5 Mon Sep 17 00:00:00 2001 From: Adam Coard Date: Mon, 25 Sep 2023 11:25:24 -0700 Subject: [PATCH 052/194] Fixed dummy data and properly instantiating site objects --- .../site-search-frontend/src/api/sites.ts | 32 +++++++++---------- .../features/simple-search/simple-search.ts | 11 ++++--- 2 files changed, 22 insertions(+), 21 deletions(-) diff --git a/frontend/site-search-frontend/src/api/sites.ts b/frontend/site-search-frontend/src/api/sites.ts index d8309cfc..6156a65c 100644 --- a/frontend/site-search-frontend/src/api/sites.ts +++ b/frontend/site-search-frontend/src/api/sites.ts @@ -1,20 +1,18 @@ -// import { createApi, fetchBaseQuery } from '@reduxjs/toolkit/query/react' -// import type -// export const siteAPI = createApi({ -// recucerPath: 'siteAPI', +export class Site { + uuid?: string; + siteID: number; + address: string; + latitude: number; + longitude: number; + lastUpdated: Date | string; + city: string; + region: string; -// }) - - - -export type Site = { - uuid?: string, - siteID: number, - address: string, - latitude: number, - longitude: number, - lastUpdated: Date, - city: string, - region: string + constructor(data: Site) { + // Using "Object.assign()" to bypass having to assign all properties + // https://stackoverflow.com/questions/69291358/shortcut-syntax-to-class-constructor-from-typescript-interface + Object.assign(this, data); + this.lastUpdated = new Date(this.lastUpdated); + } } \ No newline at end of file diff --git a/frontend/site-search-frontend/src/features/simple-search/simple-search.ts b/frontend/site-search-frontend/src/features/simple-search/simple-search.ts index 3648b51f..c0a2054d 100644 --- a/frontend/site-search-frontend/src/features/simple-search/simple-search.ts +++ b/frontend/site-search-frontend/src/features/simple-search/simple-search.ts @@ -1,14 +1,17 @@ import { createRandomSite } from '@/api/dummy-data' import { createSlice } from '@reduxjs/toolkit' +import siteDummyData from '@/scripts/dummy-data.sites.json'; +import { Site } from '@/api/sites'; + +// Instantiate dummy data, e.g. turn strings into Date objects +const parsedDummyData = siteDummyData.map(siteData => new Site(siteData)) export const siteSlice = createSlice({ name: 'site', initialState: { - // value: [createRandomSite()] - // value: (new Array(100)).fill(createRandomSite) - value: Array.from({length: 250}, _ => createRandomSite()) - // value: Array.from({length: 25000}, _ => createRandomSite()) + // value: Array.from({length: 250}, _ => createRandomSite()) + value: parsedDummyData }, reducers: { add: ()=>console.log('site reducer add todo') // Maybe not even necessary? SITE list won't mutate much, unlike site selection From b05625871bd4c70ec98b4e04108680dcb3155d81 Mon Sep 17 00:00:00 2001 From: Adam Coard Date: Mon, 25 Sep 2023 11:58:34 -0700 Subject: [PATCH 053/194] Begin creating site details page content --- .../src/api/dummy-data.tsx | 12 ++++++- .../site-search-frontend/src/api/sites.ts | 4 +++ .../src/components/FlexRowItem.tsx | 10 ++++++ .../src/pages/site-details.module.css | 3 ++ .../src/pages/site-details.tsx | 33 ++++++++++++++++++- 5 files changed, 60 insertions(+), 2 deletions(-) create mode 100644 frontend/site-search-frontend/src/components/FlexRowItem.tsx create mode 100644 frontend/site-search-frontend/src/pages/site-details.module.css diff --git a/frontend/site-search-frontend/src/api/dummy-data.tsx b/frontend/site-search-frontend/src/api/dummy-data.tsx index 5f9b5099..8f175543 100644 --- a/frontend/site-search-frontend/src/api/dummy-data.tsx +++ b/frontend/site-search-frontend/src/api/dummy-data.tsx @@ -12,7 +12,13 @@ export function createRandomSite(): Site { longitude: faker.location.longitude({min: -139, max: -118}), lastUpdated: faker.date.past({years: 10}), city: faker.location.city(), - region: randomRegion() + region: randomRegion(), + + + victoriaFile: randomFileString(), + regionalFile: 'N/A', + parcelIDs: Array.from({length: 5}, _ => faker.number.int({min: 100000, max: 10000000})), + locationDescription: 'LAT/LONGS CONFIRMED USING ICIS MAY 16,2013' } } @@ -20,4 +26,8 @@ const REGIONS = ['Vancouver Island/Coast', 'Mainland/Southwest', 'Thompson-Okana function randomRegion() { const random = Math.floor(Math.random() * REGIONS.length) return REGIONS[random]; +} + +function randomFileString(){ + return `26250-20/${ faker.number.int({min: 700, max: 20000})}` } \ No newline at end of file diff --git a/frontend/site-search-frontend/src/api/sites.ts b/frontend/site-search-frontend/src/api/sites.ts index 6156a65c..db2857bc 100644 --- a/frontend/site-search-frontend/src/api/sites.ts +++ b/frontend/site-search-frontend/src/api/sites.ts @@ -8,6 +8,10 @@ export class Site { lastUpdated: Date | string; city: string; region: string; + victoriaFile: string; + regionalFile: string; + parcelIDs: number[]; + locationDescription: string; constructor(data: Site) { // Using "Object.assign()" to bypass having to assign all properties diff --git a/frontend/site-search-frontend/src/components/FlexRowItem.tsx b/frontend/site-search-frontend/src/components/FlexRowItem.tsx new file mode 100644 index 00000000..8f2acc93 --- /dev/null +++ b/frontend/site-search-frontend/src/components/FlexRowItem.tsx @@ -0,0 +1,10 @@ +import { Site } from "@/api/sites"; + +export default function FlexRowItem( {label, children}) { + return ( +
+
{label}
+
{children}
+
+ ) +} \ No newline at end of file diff --git a/frontend/site-search-frontend/src/pages/site-details.module.css b/frontend/site-search-frontend/src/pages/site-details.module.css new file mode 100644 index 00000000..bd95758b --- /dev/null +++ b/frontend/site-search-frontend/src/pages/site-details.module.css @@ -0,0 +1,3 @@ +.metadata { + background-color: var(--main-gray); +} \ No newline at end of file diff --git a/frontend/site-search-frontend/src/pages/site-details.tsx b/frontend/site-search-frontend/src/pages/site-details.tsx index 1e4fc2a2..470792e4 100644 --- a/frontend/site-search-frontend/src/pages/site-details.tsx +++ b/frontend/site-search-frontend/src/pages/site-details.tsx @@ -1,6 +1,18 @@ +import { Site } from "@/api/sites"; import Header from "@/components/Header" +import { RootState } from "@/store"; +import { Button } from "react-bootstrap"; +import { useSelector } from "react-redux"; +import { useParams } from "react-router-dom"; +import styles from './site-details.module.css' +import FlexRowItem from "@/components/FlexRowItem"; export default function SiteDetailsPage() { + const { siteID } = useParams(); + const siteIDNum = parseInt(siteID); + const site: Site = useSelector((state: RootState) => state.site.value.find(searchedSite => searchedSite.siteID === siteIDNum)); + // console.log('siteID', {siteID, site, use: useParams()}); + @@ -9,7 +21,26 @@ export default function SiteDetailsPage() {

Site Details- Incomplete

-

+ +
+
+ + {site.address} +
+
+ + +
+
+ +
+

Site Location

+ +
+ {site.siteID} +
+
+
) From efe49d2a6c1c3c455a8ec0906d9a5e9fefec1d20 Mon Sep 17 00:00:00 2001 From: Adam Coard Date: Mon, 25 Sep 2023 11:59:15 -0700 Subject: [PATCH 054/194] Added more fields to dummy data --- .../src/scripts/dummy-data.sites.json | 7484 +++++++++++------ 1 file changed, 4992 insertions(+), 2492 deletions(-) diff --git a/frontend/site-search-frontend/src/scripts/dummy-data.sites.json b/frontend/site-search-frontend/src/scripts/dummy-data.sites.json index 5ce86023..2cad747a 100644 --- a/frontend/site-search-frontend/src/scripts/dummy-data.sites.json +++ b/frontend/site-search-frontend/src/scripts/dummy-data.sites.json @@ -1,2502 +1,5002 @@ [ { - "uuid": "fd8d7528-82a9-4402-9ba3-36a82b17ab4f", - "siteID": 15682, - "address": "703 Roberts Trail", - "latitude": 48.3395, - "longitude": -125.9323, - "lastUpdated": "2015-02-02T17:24:17.996Z", - "city": "West Marques", - "region": "Thompson-Okanagan" - }, - { - "uuid": "ab5f6924-c756-4734-9a71-0d221bc78441", - "siteID": 16029, - "address": "21524 Lowe Manor", - "latitude": 51.1397, - "longitude": -137.1725, - "lastUpdated": "2019-06-29T18:01:23.304Z", - "city": "Corwincester", - "region": "Kootenay" - }, - { - "uuid": "0c74fe3d-c121-4df1-94f9-10331173002b", - "siteID": 18777, - "address": "925 Nader Lake", - "latitude": 55.8097, - "longitude": -134.004, - "lastUpdated": "2022-12-23T17:17:14.540Z", - "city": "Montebello", - "region": "Mainland/Southwest" - }, - { - "uuid": "957835fb-9104-42fe-b3ba-284307b1ca09", - "siteID": 16958, - "address": "1300 Terry Ramp", - "latitude": 57.981, - "longitude": -127.8005, - "lastUpdated": "2015-09-28T17:45:46.051Z", - "city": "East Darrinville", - "region": "Vancouver Island/Coast" - }, - { - "uuid": "831b007f-e6bb-4cde-97cb-b3fc7e025e4a", - "siteID": 20327, - "address": "3497 Koelpin Fields", - "latitude": 48.4092, - "longitude": -123.3055, - "lastUpdated": "2023-04-08T07:00:03.322Z", - "city": "Anneburgh", - "region": "Vancouver Island/Coast" - }, - { - "uuid": "25ba462c-38fa-42ca-b042-f21379caf582", - "siteID": 16961, - "address": "3689 Margarett Run", - "latitude": 57.4041, - "longitude": -124.7786, - "lastUpdated": "2018-04-08T06:25:27.083Z", - "city": "Fort Taraborough", - "region": "Mainland/Southwest" - }, - { - "uuid": "1c433485-8bb5-4157-90b8-f5626ff869cf", - "siteID": 17110, - "address": "9174 Braun Villages", - "latitude": 48.7496, - "longitude": -135.4561, - "lastUpdated": "2019-11-21T06:42:14.002Z", - "city": "Lanceport", - "region": "Kootenay" - }, - { - "uuid": "d8aeba56-fbe0-4c8e-b738-ea47ed3739d8", - "siteID": 19598, - "address": "350 Aniya Lights", - "latitude": 55.4531, - "longitude": -130.0521, - "lastUpdated": "2018-03-24T18:02:50.760Z", - "city": "Runolfssonbury", - "region": "Mainland/Southwest" - }, - { - "uuid": "32c8a263-7549-4628-b53f-59a907f832b8", - "siteID": 17925, - "address": "2621 Enoch Estates", - "latitude": 55.4427, - "longitude": -124.1605, - "lastUpdated": "2020-12-06T14:06:23.929Z", - "city": "Torpview", - "region": "Cariboo" - }, - { - "uuid": "bb67473d-1c3e-4d76-8675-8401badc7900", - "siteID": 19357, - "address": "58460 Windler Estate", - "latitude": 51.8487, - "longitude": -122.6407, - "lastUpdated": "2019-07-19T18:38:22.923Z", - "city": "Bernhardfield", - "region": "Vancouver Island/Coast" - }, - { - "uuid": "e7774237-0e3d-419d-afac-445ec3384395", - "siteID": 17892, - "address": "79926 DuBuque Villages", - "latitude": 49.4744, - "longitude": -124.8741, - "lastUpdated": "2015-11-20T03:31:08.364Z", - "city": "New Louisa", - "region": "Mainland/Southwest" - }, - { - "uuid": "353b9594-c410-488e-9612-01f97cfb3cfe", - "siteID": 18410, - "address": "482 Simeon Pike", - "latitude": 50.9568, - "longitude": -133.761, - "lastUpdated": "2015-09-13T16:21:56.963Z", - "city": "Pfefferhaven", - "region": "Mainland/Southwest" - }, - { - "uuid": "13e2349d-2bc7-4b9f-904a-72383ad7e0b1", - "siteID": 20298, - "address": "754 Volkman Cape", - "latitude": 56.9609, - "longitude": -132.0529, - "lastUpdated": "2016-08-17T13:34:37.919Z", - "city": "Rippinchester", - "region": "Cariboo" - }, - { - "uuid": "aa82dff1-e36d-4c48-96e6-828ff9851398", - "siteID": 20434, - "address": "57399 Mikel Court", - "latitude": 51.0929, - "longitude": -120.461, - "lastUpdated": "2020-03-21T03:03:04.891Z", - "city": "Bethlehem", - "region": "Vancouver Island/Coast" - }, - { - "uuid": "5a6b1399-54bf-4499-991a-429017ceac3a", - "siteID": 16333, - "address": "506 Lucius Pike", - "latitude": 53.2838, - "longitude": -130.5881, - "lastUpdated": "2017-07-22T16:41:43.406Z", - "city": "Fort Vinceton", - "region": "Vancouver Island/Coast" - }, - { - "uuid": "56d66b49-ab03-467b-9f5d-62dcb7e2d012", - "siteID": 18856, - "address": "2501 Agnes Turnpike", - "latitude": 50.6759, - "longitude": -118.1146, - "lastUpdated": "2014-04-07T22:18:40.576Z", - "city": "North Angela", - "region": " North Coast" - }, - { - "uuid": "4aa3b239-a9d8-44ff-8324-d51c2e3b30ce", - "siteID": 15198, - "address": "62351 Ayden Dale", - "latitude": 54.7505, - "longitude": -136.955, - "lastUpdated": "2018-06-25T04:39:16.539Z", - "city": "West Elyssabury", - "region": "Thompson-Okanagan" - }, - { - "uuid": "84e03f32-4fe1-47f6-b1dd-87d65fc5b10f", - "siteID": 16229, - "address": "20453 Heller Rue", - "latitude": 54.1255, - "longitude": -137.662, - "lastUpdated": "2017-10-20T10:34:40.058Z", - "city": "New Mariannehaven", - "region": " North Coast" - }, - { - "uuid": "8c48992c-6b3d-4a53-974e-7d8bff954c47", - "siteID": 19890, - "address": "1749 Hester Bypass", - "latitude": 48.1809, - "longitude": -133.8682, - "lastUpdated": "2016-05-31T19:50:15.652Z", - "city": "Millsstad", - "region": "Thompson-Okanagan" - }, - { - "uuid": "7a341e70-f7a7-4c77-ab64-c404830da7db", - "siteID": 16317, - "address": "725 Bins Glen", - "latitude": 55.9718, - "longitude": -133.1471, - "lastUpdated": "2020-11-07T07:35:28.810Z", - "city": "Lucianostad", - "region": "Thompson-Okanagan" - }, - { - "uuid": "58e739b4-271d-480f-a8d2-1638cae7a8a8", - "siteID": 17731, - "address": "260 Ophelia Burgs", - "latitude": 58.0074, - "longitude": -131.1192, - "lastUpdated": "2013-12-22T04:46:22.196Z", - "city": "Clevetown", - "region": "Vancouver Island/Coast" - }, - { - "uuid": "537dc61f-500a-4803-a4b8-e75af4e8d4bd", - "siteID": 17167, - "address": "629 Schiller Route", - "latitude": 49.3865, - "longitude": -129.5746, - "lastUpdated": "2015-05-20T21:27:35.358Z", - "city": "Gardena", - "region": " North Coast" - }, - { - "uuid": "0adc74ea-6960-415e-a679-35330d124049", - "siteID": 16284, - "address": "85508 Frederique Cliff", - "latitude": 48.9524, - "longitude": -118.1808, - "lastUpdated": "2020-05-04T15:59:31.708Z", - "city": "Garden Grove", - "region": "Thompson-Okanagan" - }, - { - "uuid": "bf0e7cd1-fd32-451b-a6d5-aef6fc975682", - "siteID": 18317, - "address": "668 Marquardt Plain", - "latitude": 52.1287, - "longitude": -123.4952, - "lastUpdated": "2023-03-05T14:00:00.644Z", - "city": "Yasminestad", - "region": "Mainland/Southwest" - }, - { - "uuid": "7756b63d-2ecc-474b-a4f3-c9db5b887b11", - "siteID": 15662, - "address": "2639 Marquardt Pine", - "latitude": 58.1571, - "longitude": -128.1063, - "lastUpdated": "2021-10-19T12:43:55.268Z", - "city": "Orange", - "region": "Vancouver Island/Coast" - }, - { - "uuid": "91aa8c7b-61f1-4f3d-9447-7ee7a19e4fbe", - "siteID": 16455, - "address": "6609 Stroman Branch", - "latitude": 57.9474, - "longitude": -138.213, - "lastUpdated": "2021-01-28T06:23:21.513Z", - "city": "South Julianastad", - "region": "Kootenay" - }, - { - "uuid": "c0d81503-6f96-4d63-9a8e-c5fd1702c58c", - "siteID": 16337, - "address": "9192 Jakubowski Village", - "latitude": 57.4212, - "longitude": -129.4005, - "lastUpdated": "2016-07-29T20:03:10.660Z", - "city": "South David", - "region": "Vancouver Island/Coast" - }, - { - "uuid": "2753eb46-9156-4f4d-96a0-f76d541d4cae", - "siteID": 16415, - "address": "40642 Annamae Heights", - "latitude": 58.4335, - "longitude": -132.2513, - "lastUpdated": "2014-01-24T08:16:22.499Z", - "city": "East Sister", - "region": "Kootenay" - }, - { - "uuid": "9670c018-5239-4934-9858-d0c1faf72255", - "siteID": 18653, - "address": "22321 Jada Stravenue", - "latitude": 51.4817, - "longitude": -126.2859, - "lastUpdated": "2013-10-01T02:03:01.697Z", - "city": "Mrazworth", - "region": "Thompson-Okanagan" - }, - { - "uuid": "d0621156-8ec2-4db3-8248-50625ddf5ef5", - "siteID": 17855, - "address": "7735 Morar Viaduct", - "latitude": 50.2441, - "longitude": -136.5753, - "lastUpdated": "2020-01-29T12:06:25.313Z", - "city": "Wylie", - "region": " North Coast" - }, - { - "uuid": "332ce55f-7f56-44bd-a21e-60b95ec3507f", - "siteID": 17726, - "address": "86141 Bella Streets", - "latitude": 48.6037, - "longitude": -118.3358, - "lastUpdated": "2023-05-29T03:49:19.670Z", - "city": "Orncester", - "region": "Kootenay" - }, - { - "uuid": "0b566f9e-26a7-425a-9be7-a260b93618c6", - "siteID": 17998, - "address": "6937 Schuppe Fort", - "latitude": 52.2817, - "longitude": -119.2427, - "lastUpdated": "2022-02-16T04:38:24.322Z", - "city": "Passaic", - "region": " North Coast" - }, - { - "uuid": "e5b659e9-bc40-4a0c-8ca6-10d1092782c3", - "siteID": 15937, - "address": "24158 Otis Ports", - "latitude": 57.2388, - "longitude": -136.6928, - "lastUpdated": "2018-07-14T18:12:19.168Z", - "city": "Ciceroland", - "region": "Thompson-Okanagan" - }, - { - "uuid": "28afe0db-9de8-492d-ae6a-0444b4861bf5", - "siteID": 18212, - "address": "720 Eunice Station", - "latitude": 57.1259, - "longitude": -124.0823, - "lastUpdated": "2019-01-23T12:59:01.962Z", - "city": "Zulauffort", - "region": " North Coast" - }, - { - "uuid": "257a7c04-47ff-4aa7-bcce-f6df1729616c", - "siteID": 15822, - "address": "175 Mann Crossing", - "latitude": 55.5425, - "longitude": -133.7552, - "lastUpdated": "2014-03-06T15:18:08.715Z", - "city": "Port Jazminborough", - "region": "Thompson-Okanagan" - }, - { - "uuid": "56ebb8ed-2dc7-4660-8ca9-24f55d73d512", - "siteID": 19621, - "address": "5129 Giovanna Creek", - "latitude": 49.1001, - "longitude": -126.6786, - "lastUpdated": "2022-03-09T05:32:25.702Z", - "city": "South Norwoodland", - "region": "Thompson-Okanagan" - }, - { - "uuid": "56018f1f-f41a-4a4f-9571-2874f22317a4", - "siteID": 18725, - "address": "6617 Celine Forest", - "latitude": 50.4209, - "longitude": -123.899, - "lastUpdated": "2020-04-04T15:43:42.917Z", - "city": "New Fannyside", - "region": "Mainland/Southwest" - }, - { - "uuid": "f0ad8812-8a1c-4428-8707-bc4d96ffad7b", + "uuid": "a9cafe98-8f7b-4984-9c4d-07382346ed67", + "siteID": 15760, + "address": "9979 Zora Groves", + "latitude": 58.8467, + "longitude": -135.2785, + "lastUpdated": "2022-12-25T11:39:03.372Z", + "city": "Patrickstad", + "region": "Vancouver Island/Coast", + "victoriaFile": "26250-20/8460", + "regionalFile": "N/A", + "parcelIDs": [ + 3190495, + 1066925, + 153763, + 7029937, + 5744600 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "ac0a9806-ab57-4592-ab71-b808250bbfca", + "siteID": 19593, + "address": "781 Weber Key", + "latitude": 57.2978, + "longitude": -122.5335, + "lastUpdated": "2015-05-27T06:07:04.837Z", + "city": "Port Brayan", + "region": "Vancouver Island/Coast", + "victoriaFile": "26250-20/1965", + "regionalFile": "N/A", + "parcelIDs": [ + 4553245, + 5284143, + 9975591, + 3146012, + 8834303 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "e8090ad9-e2b9-4288-be13-803d4778dea6", + "siteID": 15582, + "address": "3075 Shields Pike", + "latitude": 48.5946, + "longitude": -133.0556, + "lastUpdated": "2022-04-06T19:00:31.830Z", + "city": "O'Fallon", + "region": " North Coast", + "victoriaFile": "26250-20/8710", + "regionalFile": "N/A", + "parcelIDs": [ + 3786059, + 2480572, + 3271320, + 8560133, + 345530 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "154a24d6-6cf1-48bd-9699-4f2f44954a13", + "siteID": 19157, + "address": "53948 Green Radial", + "latitude": 58.7317, + "longitude": -138.4926, + "lastUpdated": "2014-03-19T16:27:45.477Z", + "city": "Kiannaland", + "region": " North Coast", + "victoriaFile": "26250-20/19815", + "regionalFile": "N/A", + "parcelIDs": [ + 1904675, + 4309207, + 5152109, + 7796448, + 4491786 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "d3ce37d0-43d5-4dc4-9f38-8a1030036475", + "siteID": 18952, + "address": "51562 Arne Island", + "latitude": 48.8019, + "longitude": -138.7277, + "lastUpdated": "2020-04-25T06:27:52.143Z", + "city": "Rafaelfort", + "region": "Cariboo", + "victoriaFile": "26250-20/10304", + "regionalFile": "N/A", + "parcelIDs": [ + 3009092, + 8315289, + 8779722, + 4463775, + 8147909 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "0410ce79-3fd6-4b97-91df-383ee45a4006", + "siteID": 18344, + "address": "9405 Retta Run", + "latitude": 57.92, + "longitude": -118.5973, + "lastUpdated": "2019-02-16T09:07:35.978Z", + "city": "Laurynville", + "region": "Thompson-Okanagan", + "victoriaFile": "26250-20/1883", + "regionalFile": "N/A", + "parcelIDs": [ + 5184454, + 3219563, + 3552057, + 603770, + 3990048 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "45e38fb4-d018-407b-aa0a-77f1a7e37de3", + "siteID": 18769, + "address": "444 Ziemann Trafficway", + "latitude": 54.0804, + "longitude": -124.8179, + "lastUpdated": "2021-07-03T05:07:13.209Z", + "city": "South Georgette", + "region": " North Coast", + "victoriaFile": "26250-20/12253", + "regionalFile": "N/A", + "parcelIDs": [ + 9959376, + 4194184, + 2248472, + 8481184, + 2990900 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "041ba08f-c026-47b3-a53b-8b0badc3502f", + "siteID": 15487, + "address": "693 Maximus Track", + "latitude": 56.3115, + "longitude": -130.1471, + "lastUpdated": "2023-01-17T08:15:28.196Z", + "city": "Lawton", + "region": "Mainland/Southwest", + "victoriaFile": "26250-20/5054", + "regionalFile": "N/A", + "parcelIDs": [ + 7264067, + 7767882, + 2206389, + 2266435, + 5079416 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "a197a56d-1bcd-4899-aace-2bc3954d0ea0", "siteID": 18517, - "address": "945 Garett Circle", - "latitude": 50.9977, - "longitude": -119.9581, - "lastUpdated": "2015-02-15T21:12:43.607Z", - "city": "University", - "region": "Cariboo" - }, - { - "uuid": "fab9fc7b-338d-4b88-a253-3c20b782f5af", - "siteID": 18212, - "address": "49849 Abelardo Row", - "latitude": 52.56, - "longitude": -132.493, - "lastUpdated": "2023-08-23T06:09:58.383Z", - "city": "South Christiana", - "region": "Vancouver Island/Coast" - }, - { - "uuid": "14c843a1-7cae-4bcb-bceb-e7bde273ce23", - "siteID": 20582, - "address": "2174 Lakin Extensions", - "latitude": 51.8425, - "longitude": -131.0794, - "lastUpdated": "2014-11-14T10:18:32.893Z", - "city": "North Margarett", - "region": " North Coast" - }, - { - "uuid": "58ab58cd-3fe2-4dfd-b649-8ba37043d631", - "siteID": 18137, - "address": "40065 Koss Points", - "latitude": 52.1892, - "longitude": -135.8066, - "lastUpdated": "2023-08-02T20:17:47.170Z", - "city": "Alhambra", - "region": "Thompson-Okanagan" - }, - { - "uuid": "9a7fc564-ef87-46f3-ae3a-8455d24129a4", - "siteID": 17868, - "address": "20136 Bethany Manors", - "latitude": 57.2028, - "longitude": -129.547, - "lastUpdated": "2021-12-17T09:04:37.645Z", - "city": "East Imogene", - "region": "Thompson-Okanagan" - }, - { - "uuid": "4122e3f4-80fb-4fe4-8be8-193ea7d9b828", - "siteID": 15544, - "address": "7472 Sam Ramp", - "latitude": 56.5207, - "longitude": -124.2027, - "lastUpdated": "2016-02-07T13:52:42.819Z", - "city": "Nitzscheview", - "region": " North Coast" - }, - { - "uuid": "2f84da70-061b-4d14-a327-7a679b63177c", - "siteID": 20406, - "address": "13455 Destin Mews", - "latitude": 57.9259, - "longitude": -135.8922, - "lastUpdated": "2019-04-22T19:10:53.896Z", - "city": "North Scottyfurt", - "region": "Kootenay" - }, - { - "uuid": "95a5036a-8b66-4d04-94e5-ba808ed8114e", - "siteID": 16356, - "address": "16321 Colby Rest", - "latitude": 56.7432, - "longitude": -130.5068, - "lastUpdated": "2016-04-24T20:15:12.267Z", - "city": "North Pearliefurt", - "region": "Vancouver Island/Coast" - }, - { - "uuid": "02f76ae3-6fc8-41d0-8597-0ad982c10a45", - "siteID": 17714, - "address": "893 Balistreri Trail", - "latitude": 52.1519, - "longitude": -122.559, - "lastUpdated": "2017-02-18T23:34:48.274Z", - "city": "MacGyverton", - "region": " North Coast" - }, - { - "uuid": "e6c9be9c-6bef-4310-9060-c97163429cc1", - "siteID": 18745, - "address": "2072 Crawford Keys", - "latitude": 52.48, - "longitude": -138.5209, - "lastUpdated": "2022-03-11T06:51:14.910Z", - "city": "Port Carolynemouth", - "region": "Cariboo" - }, - { - "uuid": "79bd74bf-ae5b-48cc-87a2-89df4840ced7", - "siteID": 18100, - "address": "8266 Melody Courts", - "latitude": 50.0173, - "longitude": -124.4978, - "lastUpdated": "2023-09-21T19:24:13.219Z", - "city": "South Ignacio", - "region": " North Coast" - }, - { - "uuid": "eac998b9-0b80-4db6-87b8-f4c6d71cb5c8", - "siteID": 16131, - "address": "4441 Macejkovic Trail", - "latitude": 54.2545, - "longitude": -119.3795, - "lastUpdated": "2014-08-11T19:54:59.551Z", - "city": "Lake Alfredaworth", - "region": "Cariboo" - }, - { - "uuid": "bc6e9ab5-27b9-4a3e-8bb3-de1a56b3e7b5", - "siteID": 16259, - "address": "57262 Trantow Square", - "latitude": 58.9602, - "longitude": -132.7314, - "lastUpdated": "2023-01-11T23:41:16.844Z", - "city": "Rockyport", - "region": " North Coast" - }, - { - "uuid": "8be02f86-38db-4f1f-a14e-0835d16e713e", - "siteID": 17352, - "address": "405 McCullough Pine", - "latitude": 57.148, - "longitude": -133.1412, - "lastUpdated": "2013-12-25T04:25:59.360Z", - "city": "Lake Loganfort", - "region": "Kootenay" - }, - { - "uuid": "69135ef1-0486-4d64-933c-5c910433d382", - "siteID": 18513, - "address": "136 Kuvalis Manors", - "latitude": 49.7311, - "longitude": -125.5564, - "lastUpdated": "2021-10-16T23:05:06.194Z", - "city": "New Maziefort", - "region": " North Coast" - }, - { - "uuid": "dc161bfa-f8c2-46f9-bfd2-75eda14524fc", - "siteID": 19265, - "address": "216 Kutch Fall", - "latitude": 55.1669, - "longitude": -134.1648, - "lastUpdated": "2015-01-16T12:03:10.738Z", - "city": "South Genesisstad", - "region": "Vancouver Island/Coast" - }, - { - "uuid": "c868af5b-c665-489a-a363-0ad37226973a", - "siteID": 19716, - "address": "2767 Gottlieb Path", - "latitude": 55.7615, - "longitude": -120.8573, - "lastUpdated": "2022-04-04T21:57:46.741Z", - "city": "East Maynardville", - "region": "Vancouver Island/Coast" - }, - { - "uuid": "dfd01985-f299-444d-b20b-214f1e4cc0a8", - "siteID": 15443, - "address": "82599 Connelly Rapids", - "latitude": 50.4904, - "longitude": -136.9845, - "lastUpdated": "2015-09-04T16:29:04.254Z", - "city": "Paterson", - "region": "Vancouver Island/Coast" - }, - { - "uuid": "0d922136-b699-44b7-aefa-9c9bb4a064db", - "siteID": 15214, - "address": "7339 Roberts Streets", - "latitude": 56.6406, - "longitude": -131.2406, - "lastUpdated": "2019-08-19T11:52:00.488Z", - "city": "West Carterland", - "region": "Vancouver Island/Coast" - }, - { - "uuid": "1cecfdfd-a767-4525-9afc-e530876f36f4", - "siteID": 15961, - "address": "7022 Hollie Union", - "latitude": 53.2049, - "longitude": -122.1355, - "lastUpdated": "2016-05-11T20:13:09.036Z", - "city": "West Avis", - "region": "Vancouver Island/Coast" - }, - { - "uuid": "0ed2f692-1b70-4c99-8d6f-8eb8b2e9e2b4", - "siteID": 19312, - "address": "12354 Jamel Road", - "latitude": 56.0577, - "longitude": -132.9414, - "lastUpdated": "2019-02-06T22:34:46.429Z", - "city": "Nakialand", - "region": "Thompson-Okanagan" - }, - { - "uuid": "48b2311f-f556-40ea-931d-7af61aafbdc3", - "siteID": 18203, - "address": "2656 Willy Corner", - "latitude": 49.5589, - "longitude": -128.7264, - "lastUpdated": "2023-01-17T16:19:38.455Z", - "city": "Metacester", - "region": "Thompson-Okanagan" - }, - { - "uuid": "0c3f698f-32aa-4446-8ace-145e52c29ea4", - "siteID": 20900, - "address": "16610 Guillermo Fall", - "latitude": 52.8658, - "longitude": -137.356, - "lastUpdated": "2017-12-03T09:56:03.750Z", - "city": "East Alec", - "region": "Kootenay" - }, - { - "uuid": "5c68c190-0bec-4032-b234-f5ea1662cb75", - "siteID": 18180, - "address": "276 Kameron Lake", - "latitude": 57.9597, - "longitude": -123.9242, - "lastUpdated": "2016-08-13T14:03:30.578Z", - "city": "New Adolf", - "region": "Thompson-Okanagan" - }, - { - "uuid": "9f02e503-6382-41d2-bee3-df4a04948cc4", + "address": "48843 Maxime Valleys", + "latitude": 54.5023, + "longitude": -131.69, + "lastUpdated": "2014-08-16T00:46:27.788Z", + "city": "West Bertaboro", + "region": "Thompson-Okanagan", + "victoriaFile": "26250-20/14454", + "regionalFile": "N/A", + "parcelIDs": [ + 6236839, + 4586976, + 9711615, + 1207907, + 5267355 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "5e2d7314-b2d0-4c14-ba4e-af140b8abcf1", + "siteID": 15935, + "address": "33704 Von Forest", + "latitude": 50.8423, + "longitude": -127.2784, + "lastUpdated": "2014-08-06T10:47:42.510Z", + "city": "Jannieton", + "region": "Cariboo", + "victoriaFile": "26250-20/1219", + "regionalFile": "N/A", + "parcelIDs": [ + 6069212, + 4763328, + 259689, + 8547972, + 4513764 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "9ba1b25d-ee4f-4dc4-af19-6f387021f7d2", + "siteID": 16449, + "address": "12561 Lesch Mission", + "latitude": 51.997, + "longitude": -125.1181, + "lastUpdated": "2014-07-19T01:57:10.858Z", + "city": "North Milesport", + "region": "Cariboo", + "victoriaFile": "26250-20/4348", + "regionalFile": "N/A", + "parcelIDs": [ + 9780897, + 4340836, + 7683248, + 1687083, + 8083045 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "45a0efe8-eaba-4103-86fc-986b665e8a01", + "siteID": 15734, + "address": "761 Antwon Brook", + "latitude": 54.383, + "longitude": -120.6096, + "lastUpdated": "2019-02-15T16:02:08.590Z", + "city": "West Ramona", + "region": "Vancouver Island/Coast", + "victoriaFile": "26250-20/5028", + "regionalFile": "N/A", + "parcelIDs": [ + 5109201, + 6904089, + 5439237, + 2372774, + 5392563 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "e5a18490-bfe3-4752-9af2-b1e418d043df", + "siteID": 20303, + "address": "2640 Flo Junctions", + "latitude": 58.4278, + "longitude": -127.2904, + "lastUpdated": "2021-11-29T12:01:06.327Z", + "city": "Romachester", + "region": " North Coast", + "victoriaFile": "26250-20/5475", + "regionalFile": "N/A", + "parcelIDs": [ + 8386018, + 9413565, + 7221880, + 3609662, + 3713658 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "49e79e8d-7ada-45c7-87b7-39a4c82af586", + "siteID": 16787, + "address": "52046 Heath Falls", + "latitude": 58.8443, + "longitude": -128.859, + "lastUpdated": "2018-12-19T20:42:37.899Z", + "city": "East Carlieview", + "region": " North Coast", + "victoriaFile": "26250-20/11987", + "regionalFile": "N/A", + "parcelIDs": [ + 1882288, + 436431, + 1434519, + 1951874, + 8087344 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "0fcd9716-f19d-4f05-b7f9-bbe6257f7fce", + "siteID": 17184, + "address": "58212 Joe Garden", + "latitude": 48.7765, + "longitude": -121.6996, + "lastUpdated": "2016-11-02T06:18:30.296Z", + "city": "Orland Park", + "region": "Cariboo", + "victoriaFile": "26250-20/15477", + "regionalFile": "N/A", + "parcelIDs": [ + 1585251, + 2088710, + 5248353, + 9437016, + 8866275 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "138d6511-60dc-49a5-bcd4-e368e198c56e", + "siteID": 17252, + "address": "70417 Runte Isle", + "latitude": 55.7604, + "longitude": -134.5174, + "lastUpdated": "2020-01-17T09:04:51.006Z", + "city": "North Thurman", + "region": "Thompson-Okanagan", + "victoriaFile": "26250-20/13775", + "regionalFile": "N/A", + "parcelIDs": [ + 9734668, + 8120659, + 201386, + 9293337, + 9113788 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "f6cf003b-dcc9-4111-8bc9-f365a5a85b31", + "siteID": 17669, + "address": "937 Bernhard Forks", + "latitude": 56.0078, + "longitude": -128.3753, + "lastUpdated": "2022-05-11T03:31:12.745Z", + "city": "Champlinshire", + "region": "Vancouver Island/Coast", + "victoriaFile": "26250-20/17126", + "regionalFile": "N/A", + "parcelIDs": [ + 8787197, + 6249372, + 3188010, + 3707918, + 9993738 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "8fd82c8f-7f86-46af-a637-701b894078e9", + "siteID": 18929, + "address": "4287 Skiles Path", + "latitude": 55.7464, + "longitude": -118.1099, + "lastUpdated": "2019-02-10T14:30:25.048Z", + "city": "North Stephanie", + "region": "Cariboo", + "victoriaFile": "26250-20/1788", + "regionalFile": "N/A", + "parcelIDs": [ + 5124229, + 7583800, + 7309687, + 1112261, + 9144324 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "af47c790-11c0-473c-a131-59e823ebd94e", + "siteID": 20397, + "address": "6841 Nolan Plain", + "latitude": 48.2407, + "longitude": -136.7304, + "lastUpdated": "2016-06-07T19:49:33.038Z", + "city": "West Ebba", + "region": " North Coast", + "victoriaFile": "26250-20/7291", + "regionalFile": "N/A", + "parcelIDs": [ + 8857111, + 1187585, + 8414818, + 9551461, + 3699704 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "d690c0a2-4e09-4ed7-b415-6db0e80351a4", + "siteID": 19680, + "address": "6981 Gislason Route", + "latitude": 48.535, + "longitude": -119.0791, + "lastUpdated": "2022-09-17T16:45:18.309Z", + "city": "Griffinmouth", + "region": "Thompson-Okanagan", + "victoriaFile": "26250-20/12291", + "regionalFile": "N/A", + "parcelIDs": [ + 7474941, + 2373231, + 6387299, + 5761775, + 1471760 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "b964b9eb-89e7-4480-8b92-1a4aa1d3df5b", + "siteID": 17208, + "address": "87988 Walker Estate", + "latitude": 53.6084, + "longitude": -124.2723, + "lastUpdated": "2013-11-08T20:47:11.149Z", + "city": "Long Beach", + "region": "Kootenay", + "victoriaFile": "26250-20/9544", + "regionalFile": "N/A", + "parcelIDs": [ + 8369263, + 4283579, + 4660003, + 4175896, + 2348729 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "ce72375a-d73d-403f-9628-15d4326dd83e", + "siteID": 20766, + "address": "6926 Allen Land", + "latitude": 57.0439, + "longitude": -129.2493, + "lastUpdated": "2016-09-18T11:53:02.601Z", + "city": "Koryville", + "region": "Kootenay", + "victoriaFile": "26250-20/9425", + "regionalFile": "N/A", + "parcelIDs": [ + 8045189, + 3425552, + 4725470, + 1434664, + 336096 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "7809c6de-9220-46a2-bf12-22985ad9046a", + "siteID": 16065, + "address": "707 Deborah Shoals", + "latitude": 56.199, + "longitude": -126.6622, + "lastUpdated": "2020-08-24T16:17:29.852Z", + "city": "Novato", + "region": " North Coast", + "victoriaFile": "26250-20/14820", + "regionalFile": "N/A", + "parcelIDs": [ + 5550884, + 4405183, + 1920194, + 2633195, + 8567222 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "dcb5feb6-f16e-41f3-a0a6-d300c647aca2", + "siteID": 16079, + "address": "78256 Ortiz Fields", + "latitude": 54.3305, + "longitude": -138.6926, + "lastUpdated": "2018-11-08T08:42:48.544Z", + "city": "Fort Enosberg", + "region": "Kootenay", + "victoriaFile": "26250-20/17350", + "regionalFile": "N/A", + "parcelIDs": [ + 936363, + 9069794, + 8407557, + 9538857, + 3425335 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "719d70bb-4c3b-4a8a-9bb0-4bc3ba256c8e", + "siteID": 17726, + "address": "24183 Hackett Haven", + "latitude": 52.6542, + "longitude": -131.9095, + "lastUpdated": "2020-06-08T19:37:08.974Z", + "city": "Brielleworth", + "region": "Vancouver Island/Coast", + "victoriaFile": "26250-20/954", + "regionalFile": "N/A", + "parcelIDs": [ + 6833164, + 2867525, + 7526381, + 4521631, + 5613625 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "2b4f7ce9-7fbe-48a8-b6ef-dd2801ae3b4e", + "siteID": 20805, + "address": "2773 Stella Motorway", + "latitude": 51.9111, + "longitude": -130.9152, + "lastUpdated": "2022-07-20T07:59:14.313Z", + "city": "Lianaville", + "region": "Kootenay", + "victoriaFile": "26250-20/13786", + "regionalFile": "N/A", + "parcelIDs": [ + 5026799, + 6139287, + 2581410, + 2046300, + 6892985 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "fe31ed94-6a62-457f-96f0-bc40da24e9f0", + "siteID": 16052, + "address": "4053 Tillman Knolls", + "latitude": 54.09, + "longitude": -128.4399, + "lastUpdated": "2019-09-21T06:58:00.380Z", + "city": "Bechtelarstead", + "region": " North Coast", + "victoriaFile": "26250-20/8095", + "regionalFile": "N/A", + "parcelIDs": [ + 8445646, + 7598850, + 4687615, + 3571668, + 7714221 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "10cb7ce2-05f0-43ba-9233-aff32f6db4f8", + "siteID": 16182, + "address": "31493 Shields Oval", + "latitude": 50.5939, + "longitude": -131.0574, + "lastUpdated": "2016-06-20T23:25:56.582Z", + "city": "Rowlett", + "region": " North Coast", + "victoriaFile": "26250-20/1489", + "regionalFile": "N/A", + "parcelIDs": [ + 2757925, + 1957779, + 9972233, + 4978619, + 6748361 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "48eb93aa-f57b-47c5-a7eb-e1fb26094283", + "siteID": 17237, + "address": "47225 Hagenes Keys", + "latitude": 49.9417, + "longitude": -133.9707, + "lastUpdated": "2014-02-08T00:23:15.525Z", + "city": "O'Keefeberg", + "region": "Mainland/Southwest", + "victoriaFile": "26250-20/15448", + "regionalFile": "N/A", + "parcelIDs": [ + 8515020, + 2585068, + 7917665, + 8195341, + 8802852 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "53147801-3c6a-4b42-85c8-8501a4c135aa", + "siteID": 15867, + "address": "8414 McLaughlin Gateway", + "latitude": 58.9636, + "longitude": -120.9372, + "lastUpdated": "2015-02-17T05:24:02.675Z", + "city": "Morganview", + "region": " North Coast", + "victoriaFile": "26250-20/14882", + "regionalFile": "N/A", + "parcelIDs": [ + 5971547, + 5709897, + 7136178, + 8002855, + 530412 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "541e3a09-e79e-46ac-8cc2-779ecf55b25f", + "siteID": 15593, + "address": "79981 Bergnaum Port", + "latitude": 48.8068, + "longitude": -133.1758, + "lastUpdated": "2018-04-08T03:12:02.866Z", + "city": "Roxaneborough", + "region": "Cariboo", + "victoriaFile": "26250-20/5100", + "regionalFile": "N/A", + "parcelIDs": [ + 6882334, + 9735466, + 2031753, + 6706787, + 5648891 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "3e657f41-94ee-4927-86bf-c00a73baebf4", + "siteID": 20767, + "address": "522 Bertrand Gardens", + "latitude": 48.786, + "longitude": -124.7889, + "lastUpdated": "2023-02-27T18:06:01.915Z", + "city": "Pearland", + "region": "Vancouver Island/Coast", + "victoriaFile": "26250-20/1151", + "regionalFile": "N/A", + "parcelIDs": [ + 4860803, + 9518272, + 9280827, + 9318877, + 2252209 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "aabe93ff-55c6-401b-af10-cae0ffb8a111", + "siteID": 17262, + "address": "7328 Ankunding Canyon", + "latitude": 53.3793, + "longitude": -120.7129, + "lastUpdated": "2022-10-25T12:32:54.515Z", + "city": "Skilesberg", + "region": " North Coast", + "victoriaFile": "26250-20/17834", + "regionalFile": "N/A", + "parcelIDs": [ + 3860638, + 6185988, + 3117028, + 7337535, + 9166142 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "3fae03be-8f56-4238-8a5a-85aaf164affa", + "siteID": 20497, + "address": "6194 Dulce Mountains", + "latitude": 57.84, + "longitude": -128.4846, + "lastUpdated": "2019-11-27T19:59:49.788Z", + "city": "Toledo", + "region": "Mainland/Southwest", + "victoriaFile": "26250-20/14770", + "regionalFile": "N/A", + "parcelIDs": [ + 5307416, + 8615559, + 7042727, + 6315958, + 2067720 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "62196de9-a066-4685-ab72-0853c3bb257c", + "siteID": 19438, + "address": "3140 Casper Crescent", + "latitude": 51.8026, + "longitude": -136.0418, + "lastUpdated": "2022-02-08T16:03:42.895Z", + "city": "South Jean", + "region": "Thompson-Okanagan", + "victoriaFile": "26250-20/5436", + "regionalFile": "N/A", + "parcelIDs": [ + 7671481, + 8906522, + 1469123, + 5921970, + 8611154 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "e2b65af2-5c27-419a-ab42-fb25a96ec9fb", + "siteID": 18217, + "address": "359 Mayert Mall", + "latitude": 50.3714, + "longitude": -135.5244, + "lastUpdated": "2018-12-17T01:38:33.877Z", + "city": "Eladiofort", + "region": "Mainland/Southwest", + "victoriaFile": "26250-20/13632", + "regionalFile": "N/A", + "parcelIDs": [ + 9409381, + 7047244, + 8951084, + 9200499, + 908490 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "81460651-d4a4-4765-9b67-ae497fb2add9", + "siteID": 17061, + "address": "7260 Cummerata Ports", + "latitude": 58.8138, + "longitude": -133.0924, + "lastUpdated": "2023-03-21T23:05:25.295Z", + "city": "Kylechester", + "region": "Mainland/Southwest", + "victoriaFile": "26250-20/13297", + "regionalFile": "N/A", + "parcelIDs": [ + 3148123, + 4946286, + 606220, + 2365051, + 8445925 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "e57a720b-8676-4c4d-9242-3ea6d905964c", + "siteID": 17281, + "address": "13153 Hester Knoll", + "latitude": 53.7787, + "longitude": -122.1114, + "lastUpdated": "2023-02-23T22:28:50.805Z", + "city": "Ratkefield", + "region": "Thompson-Okanagan", + "victoriaFile": "26250-20/5027", + "regionalFile": "N/A", + "parcelIDs": [ + 7492029, + 2947021, + 1092979, + 931202, + 9535504 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "f7d1f19e-b559-48b5-b1c0-afb438e0619d", + "siteID": 18015, + "address": "874 Stoltenberg Corners", + "latitude": 57.7147, + "longitude": -129.9586, + "lastUpdated": "2017-10-19T19:23:52.874Z", + "city": "Lake Blair", + "region": "Vancouver Island/Coast", + "victoriaFile": "26250-20/13118", + "regionalFile": "N/A", + "parcelIDs": [ + 8854528, + 2071651, + 8662046, + 9025437, + 604412 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "c338d2d8-dec8-4ee5-9c53-fdf4f694d74b", + "siteID": 15704, + "address": "9164 Gregorio Burg", + "latitude": 55.1746, + "longitude": -125.3629, + "lastUpdated": "2014-09-14T14:17:40.374Z", + "city": "Port Oliver", + "region": "Cariboo", + "victoriaFile": "26250-20/3576", + "regionalFile": "N/A", + "parcelIDs": [ + 4790016, + 1050307, + 547329, + 5468300, + 2932520 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "1fbd8dd1-0c16-42e9-84fc-b2a1e1f2af8f", + "siteID": 19097, + "address": "158 Steuber Throughway", + "latitude": 58.321, + "longitude": -121.7707, + "lastUpdated": "2020-02-14T06:09:52.528Z", + "city": "Ralphton", + "region": "Mainland/Southwest", + "victoriaFile": "26250-20/18554", + "regionalFile": "N/A", + "parcelIDs": [ + 3413999, + 7458196, + 7701683, + 2095180, + 880916 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "57062ea2-c55e-48a3-9100-8e01f8b27df3", + "siteID": 18866, + "address": "851 Stark Loaf", + "latitude": 56.4435, + "longitude": -136.0279, + "lastUpdated": "2018-10-30T04:33:33.637Z", + "city": "Zanebury", + "region": "Mainland/Southwest", + "victoriaFile": "26250-20/9046", + "regionalFile": "N/A", + "parcelIDs": [ + 764984, + 5633907, + 6579175, + 6306826, + 752872 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "f81eaef0-2a76-416c-8a91-ba4033bef703", + "siteID": 18020, + "address": "727 Renner Rapids", + "latitude": 58.5331, + "longitude": -125.2523, + "lastUpdated": "2017-02-28T14:51:43.842Z", + "city": "North Terrybury", + "region": "Kootenay", + "victoriaFile": "26250-20/16956", + "regionalFile": "N/A", + "parcelIDs": [ + 7191351, + 7432624, + 3369681, + 4322618, + 3908876 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "2c6d8d26-c080-4f96-9f5b-00983b66b31c", + "siteID": 16615, + "address": "20043 Randal Valley", + "latitude": 57.8716, + "longitude": -119.036, + "lastUpdated": "2021-11-29T17:43:00.817Z", + "city": "Metzburgh", + "region": "Kootenay", + "victoriaFile": "26250-20/5174", + "regionalFile": "N/A", + "parcelIDs": [ + 9161481, + 6071498, + 151300, + 9553453, + 4920944 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "509acad2-888e-40b1-9d17-d3c52916e141", + "siteID": 15644, + "address": "9848 Bernhard Stravenue", + "latitude": 50.2278, + "longitude": -125.403, + "lastUpdated": "2013-12-17T23:50:32.008Z", + "city": "Hartford", + "region": "Mainland/Southwest", + "victoriaFile": "26250-20/16013", + "regionalFile": "N/A", + "parcelIDs": [ + 4461661, + 9628063, + 8593123, + 211502, + 2750682 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "ea6fa2a8-7c49-4a42-9dfb-42a1d9ed8e05", + "siteID": 17650, + "address": "4630 Jerod Port", + "latitude": 54.9706, + "longitude": -128.2417, + "lastUpdated": "2015-01-24T03:42:38.416Z", + "city": "Flofurt", + "region": "Kootenay", + "victoriaFile": "26250-20/7049", + "regionalFile": "N/A", + "parcelIDs": [ + 8013390, + 5103884, + 1213220, + 2098571, + 3889635 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "8406b784-4f74-46d3-a3cc-f6d6b8ae68f4", + "siteID": 15820, + "address": "92748 Hirthe Forest", + "latitude": 55.4601, + "longitude": -121.4085, + "lastUpdated": "2017-05-03T02:55:23.079Z", + "city": "New Deshawnport", + "region": "Kootenay", + "victoriaFile": "26250-20/4857", + "regionalFile": "N/A", + "parcelIDs": [ + 6314927, + 8815535, + 1061677, + 4095337, + 5405462 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "a447837e-5254-48a5-a881-85a28e20d04c", + "siteID": 18689, + "address": "8947 Ernesto Mission", + "latitude": 55.1084, + "longitude": -133.6837, + "lastUpdated": "2018-08-29T11:29:46.969Z", + "city": "East Augustaview", + "region": "Thompson-Okanagan", + "victoriaFile": "26250-20/14441", + "regionalFile": "N/A", + "parcelIDs": [ + 6264582, + 340249, + 6114394, + 3616967, + 7404218 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "8f8bf753-b158-4646-b18d-52ce992ccd3b", + "siteID": 18377, + "address": "97504 Art Heights", + "latitude": 54.4874, + "longitude": -120.3394, + "lastUpdated": "2021-08-05T09:38:12.379Z", + "city": "New Billy", + "region": "Kootenay", + "victoriaFile": "26250-20/5429", + "regionalFile": "N/A", + "parcelIDs": [ + 5896234, + 9525872, + 8881147, + 6683104, + 5377444 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "8d86d3ac-c432-4029-bf5a-35b25a1d85b4", + "siteID": 19329, + "address": "5784 Rau Meadow", + "latitude": 57.4899, + "longitude": -137.919, + "lastUpdated": "2018-10-04T05:18:12.323Z", + "city": "Jeffryfurt", + "region": "Thompson-Okanagan", + "victoriaFile": "26250-20/2593", + "regionalFile": "N/A", + "parcelIDs": [ + 5742759, + 6113016, + 8042444, + 7577684, + 4868022 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "30cf0323-acc9-4335-b6dc-a5ee16bb8ef9", + "siteID": 16979, + "address": "9389 Turner Via", + "latitude": 50.1206, + "longitude": -138.0936, + "lastUpdated": "2013-11-09T04:21:10.238Z", + "city": "Sydnimouth", + "region": "Thompson-Okanagan", + "victoriaFile": "26250-20/2581", + "regionalFile": "N/A", + "parcelIDs": [ + 8666493, + 5217257, + 8633138, + 524733, + 506344 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "ffd1900f-aacb-4939-8952-42354dcea253", + "siteID": 18307, + "address": "860 Jody Manors", + "latitude": 58.9765, + "longitude": -132.1656, + "lastUpdated": "2016-01-29T17:03:23.139Z", + "city": "Urbandale", + "region": " North Coast", + "victoriaFile": "26250-20/3061", + "regionalFile": "N/A", + "parcelIDs": [ + 4236297, + 1965922, + 4532242, + 7374452, + 8332667 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "272147fd-5b99-4ae1-9459-61a3ba5ec300", + "siteID": 20247, + "address": "61400 Gleichner Dale", + "latitude": 48.7501, + "longitude": -136.1831, + "lastUpdated": "2023-05-25T07:32:24.306Z", + "city": "Oro Valley", + "region": " North Coast", + "victoriaFile": "26250-20/3596", + "regionalFile": "N/A", + "parcelIDs": [ + 6288658, + 3489500, + 7790713, + 164687, + 1502939 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "116ad13c-bcfb-40b3-aa19-8400d5f2349f", + "siteID": 18096, + "address": "59655 Larkin Via", + "latitude": 51.4202, + "longitude": -121.7416, + "lastUpdated": "2022-01-05T23:01:16.597Z", + "city": "Bernierfield", + "region": "Cariboo", + "victoriaFile": "26250-20/18828", + "regionalFile": "N/A", + "parcelIDs": [ + 5692072, + 4424215, + 7828009, + 2167592, + 4268756 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "c7ef0599-4889-4e3a-9b98-60c8733aa8f6", + "siteID": 15767, + "address": "441 Maureen Manors", + "latitude": 48.075, + "longitude": -124.8971, + "lastUpdated": "2017-12-21T20:24:55.083Z", + "city": "Fort Alexannechester", + "region": "Mainland/Southwest", + "victoriaFile": "26250-20/13409", + "regionalFile": "N/A", + "parcelIDs": [ + 5567052, + 6335511, + 1873219, + 8221174, + 5170605 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "738d2373-e9d4-400c-91f4-f01cfc68fafe", + "siteID": 19257, + "address": "63744 Alayna Fall", + "latitude": 51.593, + "longitude": -135.982, + "lastUpdated": "2020-09-25T16:02:46.477Z", + "city": "South Muhammad", + "region": "Mainland/Southwest", + "victoriaFile": "26250-20/3393", + "regionalFile": "N/A", + "parcelIDs": [ + 531662, + 9964879, + 8095624, + 2826002, + 7640486 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "3529f81d-300e-4fbf-aaab-ca904f8ec2fd", + "siteID": 16079, + "address": "91981 Leone Avenue", + "latitude": 52.9663, + "longitude": -121.6356, + "lastUpdated": "2014-12-08T20:34:05.488Z", + "city": "Fort Kaydenmouth", + "region": " North Coast", + "victoriaFile": "26250-20/15587", + "regionalFile": "N/A", + "parcelIDs": [ + 4726637, + 2806271, + 409519, + 312279, + 6960909 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "c3a742b4-a07c-4beb-ba67-80ae02aa060a", + "siteID": 19286, + "address": "5358 Lockman Harbors", + "latitude": 53.6426, + "longitude": -125.3495, + "lastUpdated": "2023-04-10T04:03:29.166Z", + "city": "New Alaynaside", + "region": " North Coast", + "victoriaFile": "26250-20/6674", + "regionalFile": "N/A", + "parcelIDs": [ + 4441595, + 4005062, + 1144813, + 5860362, + 5534152 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "055174a5-e8d4-4bf8-9efb-2c510685299c", + "siteID": 15960, + "address": "9105 Waldo Forks", + "latitude": 58.8419, + "longitude": -119.3811, + "lastUpdated": "2018-12-24T03:40:44.485Z", + "city": "Lake Luciochester", + "region": "Vancouver Island/Coast", + "victoriaFile": "26250-20/9740", + "regionalFile": "N/A", + "parcelIDs": [ + 4057521, + 1666730, + 6817527, + 298215, + 7102823 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "c29cb118-02a3-4b9f-afe6-67fa0dfedfc1", + "siteID": 20850, + "address": "593 Philip Plains", + "latitude": 57.1244, + "longitude": -134.5418, + "lastUpdated": "2017-07-17T23:35:50.961Z", + "city": "Lindashire", + "region": "Kootenay", + "victoriaFile": "26250-20/4580", + "regionalFile": "N/A", + "parcelIDs": [ + 7594970, + 2547395, + 5354721, + 4401912, + 1082480 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "749c5872-5621-4442-88c9-dd3eb7bc3dcf", + "siteID": 17960, + "address": "274 Emmerich Course", + "latitude": 49.5749, + "longitude": -119.7928, + "lastUpdated": "2018-08-22T12:22:40.610Z", + "city": "Port Casimirside", + "region": "Thompson-Okanagan", + "victoriaFile": "26250-20/9464", + "regionalFile": "N/A", + "parcelIDs": [ + 4916134, + 2661979, + 2295698, + 3396848, + 4218881 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "1d71753f-9893-436a-8a40-6bf7e71fbb4f", + "siteID": 17174, + "address": "706 Jaylon Highway", + "latitude": 56.0093, + "longitude": -134.4937, + "lastUpdated": "2020-05-23T18:55:19.730Z", + "city": "West Twilafort", + "region": "Vancouver Island/Coast", + "victoriaFile": "26250-20/17180", + "regionalFile": "N/A", + "parcelIDs": [ + 4463176, + 5020746, + 8207162, + 6636849, + 7989110 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "150ce0cf-92ac-496d-bf24-99f290b3641f", + "siteID": 18420, + "address": "40787 Chaim Throughway", + "latitude": 51.379, + "longitude": -134.9344, + "lastUpdated": "2016-01-05T05:32:06.187Z", + "city": "West Lukasstad", + "region": "Mainland/Southwest", + "victoriaFile": "26250-20/9579", + "regionalFile": "N/A", + "parcelIDs": [ + 6333617, + 474139, + 6992987, + 3139932, + 6491086 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "e77f0c3e-245e-4cef-a6b8-0d94888a0ff2", + "siteID": 19681, + "address": "3616 Raynor Park", + "latitude": 52.7544, + "longitude": -133.9167, + "lastUpdated": "2020-04-26T00:51:58.734Z", + "city": "Croninmouth", + "region": "Thompson-Okanagan", + "victoriaFile": "26250-20/16594", + "regionalFile": "N/A", + "parcelIDs": [ + 522233, + 4454351, + 8228585, + 9391982, + 595641 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "41b67ab3-3a44-4122-add1-6f880e657c2b", + "siteID": 17449, + "address": "991 Hilll Well", + "latitude": 49.3509, + "longitude": -129.7166, + "lastUpdated": "2014-12-29T00:28:02.863Z", + "city": "North Larryborough", + "region": "Mainland/Southwest", + "victoriaFile": "26250-20/7645", + "regionalFile": "N/A", + "parcelIDs": [ + 7206003, + 7810803, + 9806461, + 1310429, + 5864719 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "8ac3aa90-4033-4ab0-b33b-576a134fd0b8", + "siteID": 20865, + "address": "8792 Haley Mills", + "latitude": 57.2208, + "longitude": -121.8711, + "lastUpdated": "2014-03-28T09:59:05.230Z", + "city": "Port Casimer", + "region": "Thompson-Okanagan", + "victoriaFile": "26250-20/3403", + "regionalFile": "N/A", + "parcelIDs": [ + 4221749, + 6975168, + 4232552, + 2192559, + 6387545 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "14b7977f-8a5b-421e-9898-7defd17df3d4", + "siteID": 16460, + "address": "46799 Cesar Villages", + "latitude": 53.651, + "longitude": -127.2134, + "lastUpdated": "2014-12-18T19:07:04.002Z", + "city": "Lake Merlinville", + "region": "Cariboo", + "victoriaFile": "26250-20/4518", + "regionalFile": "N/A", + "parcelIDs": [ + 2599946, + 7499377, + 2552811, + 5667126, + 4935257 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "d703b521-0b2d-4d5f-9fd7-8622e68bad35", + "siteID": 20759, + "address": "49711 Cornelius Loaf", + "latitude": 51.3778, + "longitude": -124.8314, + "lastUpdated": "2020-07-31T19:51:43.932Z", + "city": "Aydencester", + "region": "Vancouver Island/Coast", + "victoriaFile": "26250-20/6377", + "regionalFile": "N/A", + "parcelIDs": [ + 2155064, + 2258405, + 6748886, + 3669311, + 2138049 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "03af085d-fabb-4576-b917-a8e968def1df", + "siteID": 16639, + "address": "468 Miller Centers", + "latitude": 52.7204, + "longitude": -138.3738, + "lastUpdated": "2021-09-24T00:37:31.638Z", + "city": "Kulasfort", + "region": "Thompson-Okanagan", + "victoriaFile": "26250-20/11818", + "regionalFile": "N/A", + "parcelIDs": [ + 5789207, + 8088470, + 4664271, + 1414609, + 7776388 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "541f57bd-2113-4ee1-9fe4-0560c3046903", + "siteID": 20152, + "address": "359 Trantow Terrace", + "latitude": 51.8629, + "longitude": -129.3619, + "lastUpdated": "2018-11-13T14:12:18.069Z", + "city": "Allentown", + "region": " North Coast", + "victoriaFile": "26250-20/14762", + "regionalFile": "N/A", + "parcelIDs": [ + 6056239, + 1461881, + 919471, + 9828738, + 2481130 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "8122c3df-326f-402c-9e84-578b2c9701a9", "siteID": 17245, - "address": "66861 Sincere Coves", - "latitude": 49.1409, - "longitude": -127.8091, - "lastUpdated": "2018-08-22T10:03:31.749Z", - "city": "Port Emelie", - "region": "Cariboo" - }, - { - "uuid": "aeb4d2a7-f903-47a4-8ce3-569add4ec49e", - "siteID": 17900, - "address": "67330 Strosin Light", - "latitude": 58.0403, - "longitude": -122.4799, - "lastUpdated": "2022-03-24T09:48:26.783Z", - "city": "Fort Bradfordworth", - "region": "Cariboo" - }, - { - "uuid": "a55b7ef6-8e2a-4a57-b81d-77e6c1daa8ea", - "siteID": 15513, - "address": "360 Yesenia Parkway", - "latitude": 56.9756, - "longitude": -136.683, - "lastUpdated": "2016-01-04T10:08:15.756Z", - "city": "Fort Desmondburgh", - "region": "Vancouver Island/Coast" - }, - { - "uuid": "277769f7-2acf-4be3-9359-83bff02fe836", - "siteID": 18390, - "address": "406 Randy Ranch", - "latitude": 53.8727, - "longitude": -128.2823, - "lastUpdated": "2021-08-15T08:32:04.249Z", - "city": "West Porterton", - "region": "Kootenay" - }, - { - "uuid": "9a49f49f-3306-43cc-953d-016fd1c4bf17", - "siteID": 20455, - "address": "5277 Upton Forest", - "latitude": 52.6437, - "longitude": -120.3262, - "lastUpdated": "2014-11-28T07:40:46.647Z", - "city": "East Jada", - "region": "Mainland/Southwest" - }, - { - "uuid": "85df1ef0-256f-4f4c-a13b-95d78e6a73e7", - "siteID": 18293, - "address": "98119 Dibbert Green", - "latitude": 52.5575, - "longitude": -118.5695, - "lastUpdated": "2021-11-28T09:36:29.504Z", - "city": "West Aurelie", - "region": "Vancouver Island/Coast" - }, - { - "uuid": "88c6621e-9e7b-4727-b770-8232f337cad6", - "siteID": 19674, - "address": "3752 Maxie Mountains", - "latitude": 52.4978, - "longitude": -126.7312, - "lastUpdated": "2021-01-15T02:43:24.302Z", - "city": "Rebekahstad", - "region": " North Coast" - }, - { - "uuid": "70c69ea0-3e2f-4c47-b383-4c006325d7f9", - "siteID": 19091, - "address": "267 Maeve Wall", - "latitude": 49.2825, - "longitude": -118.0436, - "lastUpdated": "2019-10-18T13:28:28.666Z", - "city": "Damiantown", - "region": "Kootenay" - }, - { - "uuid": "b72b1649-55d8-4021-bde2-cc3740c858a2", - "siteID": 16643, - "address": "800 Connie Course", - "latitude": 57.3529, - "longitude": -118.6025, - "lastUpdated": "2022-12-27T21:33:12.985Z", - "city": "Port Laronport", - "region": "Cariboo" - }, - { - "uuid": "de9b11fc-9510-478e-ad70-03f91e21b58b", - "siteID": 18405, - "address": "65535 Lori Burgs", - "latitude": 58.5408, - "longitude": -125.3647, - "lastUpdated": "2020-07-19T08:43:13.230Z", - "city": "Considineberg", - "region": "Kootenay" - }, - { - "uuid": "da93ab35-e7ac-476d-8e0a-a51c9f32473e", - "siteID": 17093, - "address": "880 Schaden Port", - "latitude": 53.7334, - "longitude": -122.6016, - "lastUpdated": "2023-08-13T21:08:04.436Z", - "city": "West Carolport", - "region": "Thompson-Okanagan" - }, - { - "uuid": "65ec9cba-8a98-4aa4-8ca8-d80c35e92094", - "siteID": 18225, - "address": "69457 Luella Bridge", - "latitude": 52.6485, - "longitude": -131.5101, - "lastUpdated": "2021-01-16T19:38:44.434Z", - "city": "North Hershel", - "region": "Cariboo" - }, - { - "uuid": "dec927fc-64cc-4b38-8b7c-6e060192e01d", - "siteID": 20008, - "address": "31401 Saul Keys", - "latitude": 51.6858, - "longitude": -124.6199, - "lastUpdated": "2015-03-12T17:12:33.249Z", - "city": "Mount Vernon", - "region": "Kootenay" - }, - { - "uuid": "9828c1ca-5df3-4533-9bc7-c72ad8c390b2", - "siteID": 15478, - "address": "3548 Monica Turnpike", - "latitude": 56.4461, - "longitude": -131.5662, - "lastUpdated": "2021-06-16T01:59:02.436Z", - "city": "Welchtown", - "region": "Cariboo" - }, - { - "uuid": "f65540ef-8ca2-4c21-a007-752dbdc557f0", - "siteID": 18995, - "address": "96673 Boehm Island", - "latitude": 52.0873, - "longitude": -119.5343, - "lastUpdated": "2023-05-14T12:11:16.786Z", - "city": "Port Lindsayfield", - "region": "Mainland/Southwest" - }, - { - "uuid": "f18cc5f5-b143-4887-8fac-bbfe51afa1b4", - "siteID": 17007, - "address": "649 Osborne Lakes", - "latitude": 58.2498, - "longitude": -134.8151, - "lastUpdated": "2015-12-04T08:55:35.425Z", - "city": "South Taureanchester", - "region": " North Coast" - }, - { - "uuid": "2cddf991-7dc7-46f5-837d-3d11e44d56b2", - "siteID": 17500, - "address": "74235 Mafalda Haven", - "latitude": 58.6127, - "longitude": -136.736, - "lastUpdated": "2021-08-30T17:13:32.342Z", - "city": "New Keshaun", - "region": "Kootenay" - }, - { - "uuid": "b19e1446-43b0-4915-8982-bb10512b19a8", - "siteID": 17879, - "address": "2825 Helene Creek", - "latitude": 55.517, - "longitude": -127.9264, - "lastUpdated": "2015-04-12T12:24:47.430Z", - "city": "Auerville", - "region": "Vancouver Island/Coast" - }, - { - "uuid": "838a80ed-bc58-4744-9ced-02b61eb61e1e", - "siteID": 18832, - "address": "21155 Robb Wells", - "latitude": 58.1465, - "longitude": -135.6066, - "lastUpdated": "2020-02-10T22:25:54.135Z", - "city": "Arnoldborough", - "region": "Mainland/Southwest" - }, - { - "uuid": "5962c423-8ac7-44a9-a31b-167fbbda4d11", - "siteID": 19159, - "address": "86017 Andy Mount", - "latitude": 53.8885, - "longitude": -135.8266, - "lastUpdated": "2021-06-25T03:56:56.148Z", - "city": "Turnerview", - "region": "Kootenay" - }, - { - "uuid": "ba946b47-9e4f-4f68-b05c-2fa7dbedf422", - "siteID": 19823, - "address": "1632 Irving Lane", - "latitude": 57.8427, - "longitude": -129.2441, - "lastUpdated": "2022-07-30T21:45:39.273Z", - "city": "Faheyton", - "region": "Vancouver Island/Coast" - }, - { - "uuid": "7ac79f04-d000-43cf-9b07-fbbf7fe1c7c5", - "siteID": 19583, - "address": "19244 Carole Branch", - "latitude": 48.5125, - "longitude": -135.2518, - "lastUpdated": "2016-12-20T09:30:09.307Z", - "city": "West Justusside", - "region": "Vancouver Island/Coast" - }, - { - "uuid": "b87205c2-a6ad-4081-947f-d21bfe9b7036", - "siteID": 19226, - "address": "74992 Langworth Inlet", - "latitude": 53.1313, - "longitude": -120.6146, - "lastUpdated": "2022-02-14T09:48:55.357Z", - "city": "Fort Loyalcester", - "region": "Kootenay" - }, - { - "uuid": "def756d6-f0fe-41c9-be15-3a5e88ec3f66", - "siteID": 18588, - "address": "92403 Gunnar Creek", - "latitude": 53.4321, - "longitude": -138.6365, - "lastUpdated": "2019-11-26T10:55:08.270Z", - "city": "West Alenaburgh", - "region": "Thompson-Okanagan" - }, - { - "uuid": "e35e3f5d-97e7-4737-9b41-9f2eebad169f", + "address": "2076 Tromp Curve", + "latitude": 51.2543, + "longitude": -130.6222, + "lastUpdated": "2015-06-13T17:44:25.292Z", + "city": "West Nasir", + "region": " North Coast", + "victoriaFile": "26250-20/9317", + "regionalFile": "N/A", + "parcelIDs": [ + 4896055, + 4975906, + 5829341, + 4043189, + 8611078 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "71f31817-bd0e-4a58-a5b9-7739a7b1ba0b", + "siteID": 17896, + "address": "143 Daugherty Walk", + "latitude": 49.1343, + "longitude": -125.9234, + "lastUpdated": "2020-07-29T17:40:02.598Z", + "city": "Beahanfield", + "region": " North Coast", + "victoriaFile": "26250-20/9337", + "regionalFile": "N/A", + "parcelIDs": [ + 6332936, + 3627334, + 1279443, + 5099966, + 8360704 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "7e0d7c65-0733-46fc-af9d-494724284351", + "siteID": 19598, + "address": "1838 Jesse Street", + "latitude": 50.0415, + "longitude": -134.3835, + "lastUpdated": "2018-06-08T21:36:52.578Z", + "city": "Gloverside", + "region": "Vancouver Island/Coast", + "victoriaFile": "26250-20/5786", + "regionalFile": "N/A", + "parcelIDs": [ + 7329124, + 320604, + 7734941, + 4358525, + 5036864 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "ed4b5332-5eac-486d-a2a6-13563e3864dd", + "siteID": 16030, + "address": "676 Clarissa Shores", + "latitude": 56.2017, + "longitude": -126.1686, + "lastUpdated": "2016-07-07T16:00:53.623Z", + "city": "Lake Julianacester", + "region": "Cariboo", + "victoriaFile": "26250-20/2876", + "regionalFile": "N/A", + "parcelIDs": [ + 5193383, + 5836227, + 9283897, + 2604572, + 1558712 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "f9b7dcca-45cc-47b9-b303-2ea3ff0e135e", + "siteID": 20678, + "address": "910 Velma Shores", + "latitude": 58.8992, + "longitude": -126.6049, + "lastUpdated": "2021-09-03T20:58:31.008Z", + "city": "South Madisen", + "region": "Thompson-Okanagan", + "victoriaFile": "26250-20/10592", + "regionalFile": "N/A", + "parcelIDs": [ + 5762665, + 1990168, + 3790157, + 9153038, + 340667 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "5ab0bbf0-376f-4966-bf44-757660a02e8b", + "siteID": 15252, + "address": "2164 Kaci Crescent", + "latitude": 52.562, + "longitude": -127.2511, + "lastUpdated": "2018-12-24T14:18:45.296Z", + "city": "Pearl City", + "region": "Vancouver Island/Coast", + "victoriaFile": "26250-20/12046", + "regionalFile": "N/A", + "parcelIDs": [ + 5338790, + 4331269, + 761695, + 5500511, + 4843535 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "4237997f-63a9-4f11-a2c1-456a2f6e2094", + "siteID": 17176, + "address": "42608 Henriette Center", + "latitude": 52.5865, + "longitude": -119.3214, + "lastUpdated": "2014-09-04T16:52:28.311Z", + "city": "Zachariahton", + "region": "Thompson-Okanagan", + "victoriaFile": "26250-20/4920", + "regionalFile": "N/A", + "parcelIDs": [ + 2569744, + 8334065, + 893914, + 7166881, + 8037874 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "e94b22e6-b7c3-417e-951e-2bf9e92f1ec4", + "siteID": 18906, + "address": "1524 Monroe Forks", + "latitude": 50.8254, + "longitude": -124.0697, + "lastUpdated": "2019-03-27T09:11:09.390Z", + "city": "Hartford", + "region": "Kootenay", + "victoriaFile": "26250-20/4478", + "regionalFile": "N/A", + "parcelIDs": [ + 3394932, + 7492053, + 8671076, + 1550650, + 2802533 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "14599b53-5ccd-4aad-b2ac-a4ea01928691", + "siteID": 17484, + "address": "241 Kamron Trail", + "latitude": 55.1816, + "longitude": -121.736, + "lastUpdated": "2017-01-05T07:17:57.540Z", + "city": "McLaughlinfurt", + "region": " North Coast", + "victoriaFile": "26250-20/5501", + "regionalFile": "N/A", + "parcelIDs": [ + 6437204, + 4491036, + 9477395, + 2558884, + 2551386 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "a89b7667-df19-4a4a-ac5a-4f3afaf8e285", + "siteID": 15414, + "address": "74726 Armstrong Streets", + "latitude": 48.7064, + "longitude": -132.1365, + "lastUpdated": "2015-08-17T13:11:05.257Z", + "city": "Port Tabithamouth", + "region": " North Coast", + "victoriaFile": "26250-20/13103", + "regionalFile": "N/A", + "parcelIDs": [ + 209315, + 2913353, + 798826, + 3692378, + 7164698 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "6dc6dc6c-6385-4dbc-aed1-8f5f4daef459", + "siteID": 16332, + "address": "37733 Lind Falls", + "latitude": 48.8457, + "longitude": -130.8517, + "lastUpdated": "2022-11-08T01:49:45.377Z", + "city": "Terre Haute", + "region": "Thompson-Okanagan", + "victoriaFile": "26250-20/19595", + "regionalFile": "N/A", + "parcelIDs": [ + 3961066, + 889338, + 8274089, + 5986679, + 5039443 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "18523d1b-8c83-41b6-bfa9-40d7d3c1e0f7", + "siteID": 20605, + "address": "14873 Mante Loaf", + "latitude": 49.2605, + "longitude": -120.349, + "lastUpdated": "2018-11-14T01:09:31.807Z", + "city": "East Lola", + "region": " North Coast", + "victoriaFile": "26250-20/2134", + "regionalFile": "N/A", + "parcelIDs": [ + 7359744, + 5737634, + 814819, + 9183820, + 2618959 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "0869c99d-53be-47ef-a3e7-20519383238f", + "siteID": 16372, + "address": "427 Labadie Path", + "latitude": 55.8151, + "longitude": -135.5863, + "lastUpdated": "2016-01-19T02:06:14.099Z", + "city": "Arecibo", + "region": "Kootenay", + "victoriaFile": "26250-20/5968", + "regionalFile": "N/A", + "parcelIDs": [ + 691673, + 2588307, + 8279570, + 8694526, + 7935097 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "e3c6c0b5-3bfc-4e29-b1e2-2568ab380807", + "siteID": 20356, + "address": "90392 Hartmann Overpass", + "latitude": 58.9972, + "longitude": -130.267, + "lastUpdated": "2021-12-14T16:05:30.969Z", + "city": "Port Audreannefield", + "region": "Vancouver Island/Coast", + "victoriaFile": "26250-20/7554", + "regionalFile": "N/A", + "parcelIDs": [ + 9322449, + 4101583, + 8212374, + 3249806, + 4482512 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "54c85d2f-2197-4f82-b92c-9748b7661772", + "siteID": 15783, + "address": "972 Wilber Groves", + "latitude": 57.0364, + "longitude": -130.917, + "lastUpdated": "2014-06-07T14:03:09.174Z", + "city": "North Janice", + "region": "Thompson-Okanagan", + "victoriaFile": "26250-20/9037", + "regionalFile": "N/A", + "parcelIDs": [ + 1101482, + 8229219, + 563519, + 9614659, + 9731582 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "dd7f1a85-6211-4688-8f04-6ec22b471755", + "siteID": 18959, + "address": "643 Koelpin Crescent", + "latitude": 53.2686, + "longitude": -135.4996, + "lastUpdated": "2014-08-03T11:17:34.103Z", + "city": "Lake Pearlineland", + "region": "Kootenay", + "victoriaFile": "26250-20/3065", + "regionalFile": "N/A", + "parcelIDs": [ + 4000682, + 7402482, + 8484272, + 252613, + 2735459 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "e431cf55-e024-42e3-b974-4b9aa81b33b2", + "siteID": 18822, + "address": "86764 Howe Knolls", + "latitude": 52.781, + "longitude": -125.4603, + "lastUpdated": "2023-09-15T19:45:16.025Z", + "city": "Medhurstfort", + "region": "Cariboo", + "victoriaFile": "26250-20/11233", + "regionalFile": "N/A", + "parcelIDs": [ + 8358937, + 987147, + 578917, + 3603214, + 3048784 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "08a1eaf7-b6dc-4a58-80e8-96c926f6eb42", + "siteID": 18116, + "address": "36725 Jerome Crescent", + "latitude": 57.0591, + "longitude": -136.7617, + "lastUpdated": "2019-05-06T20:55:45.287Z", + "city": "Casper", + "region": "Cariboo", + "victoriaFile": "26250-20/2028", + "regionalFile": "N/A", + "parcelIDs": [ + 8103952, + 2293675, + 7743734, + 3272307, + 252476 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "c740404d-3563-4add-b9da-ccd7fb95ee4e", "siteID": 16551, - "address": "24521 Ernestina Ville", - "latitude": 49.5966, - "longitude": -127.308, - "lastUpdated": "2017-06-16T19:32:37.672Z", - "city": "Kossboro", - "region": "Mainland/Southwest" - }, - { - "uuid": "2be9c318-e881-4b39-95fd-d73cc4128ee8", - "siteID": 18828, - "address": "965 Stehr Court", - "latitude": 56.2731, - "longitude": -137.973, - "lastUpdated": "2018-09-09T00:38:59.133Z", - "city": "Mikelville", - "region": "Thompson-Okanagan" - }, - { - "uuid": "fa8f59e0-7eca-4865-94c1-c5e5299b72a6", - "siteID": 19027, - "address": "28982 Steuber Views", - "latitude": 53.3677, - "longitude": -130.4166, - "lastUpdated": "2023-06-08T09:18:10.805Z", - "city": "Fannyshire", - "region": "Kootenay" - }, - { - "uuid": "e541c815-c88c-4c02-958c-fdd12dcb9f05", - "siteID": 20086, - "address": "4127 Kailee Stream", - "latitude": 55.6053, - "longitude": -134.1927, - "lastUpdated": "2023-05-22T21:21:16.545Z", - "city": "Haagville", - "region": "Thompson-Okanagan" - }, - { - "uuid": "03779b9b-a019-48b8-bae8-871e9cbfe29b", - "siteID": 16891, - "address": "1819 Rosa Flat", - "latitude": 50.6723, - "longitude": -132.5555, - "lastUpdated": "2014-12-27T19:25:54.125Z", - "city": "Lenexa", - "region": "Kootenay" - }, - { - "uuid": "bb9b9632-56b0-480c-84cc-4ec888d99300", - "siteID": 17215, - "address": "85767 Bulah Ports", - "latitude": 49.702, - "longitude": -120.4956, - "lastUpdated": "2015-06-12T01:19:20.148Z", - "city": "Caspertown", - "region": "Thompson-Okanagan" - }, - { - "uuid": "9f2cfa07-432f-49e9-a933-9a314288bbbf", - "siteID": 19228, - "address": "8494 April Trail", - "latitude": 56.596, - "longitude": -122.8722, - "lastUpdated": "2016-09-16T12:32:04.252Z", - "city": "Fayburgh", - "region": "Kootenay" - }, - { - "uuid": "a78b6afc-20bd-4f05-9aea-c79b4ec62914", - "siteID": 17935, - "address": "7309 Altenwerth Wall", - "latitude": 51.0283, - "longitude": -131.2193, - "lastUpdated": "2013-11-02T01:13:28.267Z", - "city": "Goldnerchester", - "region": "Mainland/Southwest" - }, - { - "uuid": "0fd0f649-3eaf-4d60-86d9-29d2f498ee60", - "siteID": 15898, - "address": "159 Verna Forks", - "latitude": 51.1386, - "longitude": -130.7478, - "lastUpdated": "2023-07-28T10:58:08.519Z", - "city": "South Americo", - "region": "Vancouver Island/Coast" - }, - { - "uuid": "4a3fb6a9-6b73-4178-adcf-975871e5b84c", - "siteID": 20455, - "address": "866 Alvera Cliff", - "latitude": 53.8012, - "longitude": -133.1908, - "lastUpdated": "2019-05-12T08:03:33.193Z", - "city": "East Abe", - "region": "Mainland/Southwest" - }, - { - "uuid": "c0526163-d34a-49a6-81c0-edda923989ba", - "siteID": 18461, - "address": "9472 Stark Lane", - "latitude": 55.9619, - "longitude": -120.2148, - "lastUpdated": "2016-02-09T18:12:28.057Z", - "city": "Dockfort", - "region": " North Coast" - }, - { - "uuid": "6089428e-fe13-4c73-bece-81bc6d053c5c", - "siteID": 15370, - "address": "9540 McKenzie Ranch", - "latitude": 57.233, - "longitude": -137.3905, - "lastUpdated": "2017-01-13T16:25:55.909Z", - "city": "East Hassieport", - "region": "Vancouver Island/Coast" - }, - { - "uuid": "3aa531e8-7c35-46e0-a299-5f7eba19e37d", - "siteID": 20807, - "address": "78327 Jaskolski Isle", - "latitude": 58.1791, - "longitude": -120.1946, - "lastUpdated": "2019-10-11T04:27:15.783Z", - "city": "Katelinworth", - "region": "Thompson-Okanagan" - }, - { - "uuid": "12c5699c-e447-48f6-ae8b-53f1b99b4fd2", - "siteID": 20838, - "address": "490 Antonette Mill", - "latitude": 50.6332, - "longitude": -129.1593, - "lastUpdated": "2017-12-04T07:35:53.644Z", - "city": "East Rosamondfort", - "region": "Thompson-Okanagan" - }, - { - "uuid": "6fce0739-01ac-41b1-acbc-2dedb1d40370", - "siteID": 18685, - "address": "72199 Sauer Walks", - "latitude": 57.9703, - "longitude": -135.0421, - "lastUpdated": "2022-01-07T16:59:47.523Z", - "city": "North Efrainfield", - "region": "Cariboo" - }, - { - "uuid": "17993787-e82b-4046-8fa9-7cfd3366b2a3", - "siteID": 18495, - "address": "3151 Alfred Glens", - "latitude": 53.5309, - "longitude": -124.2723, - "lastUpdated": "2020-05-29T05:25:17.762Z", - "city": "North Dario", - "region": "Mainland/Southwest" - }, - { - "uuid": "b4578957-6631-4359-8417-d84871330466", - "siteID": 17144, - "address": "18491 Yasmeen Lakes", - "latitude": 55.496, - "longitude": -130.0219, - "lastUpdated": "2022-02-23T07:53:51.281Z", - "city": "Port Malvinacester", - "region": " North Coast" - }, - { - "uuid": "1c079782-a572-4ddf-9356-6457627a357e", - "siteID": 17881, - "address": "391 Mortimer Tunnel", - "latitude": 52.4642, - "longitude": -128.5154, - "lastUpdated": "2021-09-10T17:54:58.595Z", - "city": "South Lourdes", - "region": "Thompson-Okanagan" - }, - { - "uuid": "0e2d9241-4238-4161-8942-221fe8bfd2c2", - "siteID": 20450, - "address": "808 Tina Turnpike", - "latitude": 58.6208, - "longitude": -128.606, - "lastUpdated": "2023-01-24T07:29:40.703Z", - "city": "Kaletown", - "region": "Kootenay" - }, - { - "uuid": "e3074197-a419-4752-93ac-bd66a114f95c", - "siteID": 18226, - "address": "701 Cristal Ville", - "latitude": 57.6725, - "longitude": -127.929, - "lastUpdated": "2017-11-30T10:32:34.996Z", - "city": "Tulare", - "region": "Thompson-Okanagan" - }, - { - "uuid": "3aaa73b0-c0fc-4134-9043-ac0e2efc0737", - "siteID": 16899, - "address": "90298 Myles Stream", - "latitude": 53.2285, - "longitude": -119.1439, - "lastUpdated": "2020-01-28T05:21:01.540Z", - "city": "Palo Alto", - "region": "Cariboo" - }, - { - "uuid": "0d1a4c41-081f-4766-8c35-e02008194103", - "siteID": 18690, - "address": "27440 Gibson Dale", - "latitude": 54.1606, - "longitude": -122.3338, - "lastUpdated": "2015-10-17T11:06:38.110Z", - "city": "Broken Arrow", - "region": "Mainland/Southwest" - }, - { - "uuid": "6537d2d5-2041-4ffb-985e-af23cb736d61", - "siteID": 19726, - "address": "544 Jed Rest", - "latitude": 51.3057, - "longitude": -128.4374, - "lastUpdated": "2019-07-06T23:05:03.646Z", - "city": "South Josefaberg", - "region": "Thompson-Okanagan" - }, - { - "uuid": "44ec5c65-1a1d-41c5-8ec9-9547c465956e", - "siteID": 15351, - "address": "646 Stehr Street", - "latitude": 54.2351, - "longitude": -124.8358, - "lastUpdated": "2021-10-12T21:55:49.395Z", - "city": "Kenner", - "region": "Cariboo" - }, - { - "uuid": "b3899c58-7055-4c53-84c0-f9bc8efd5a6e", - "siteID": 17047, - "address": "390 Kristian Alley", - "latitude": 50.7963, - "longitude": -132.0913, - "lastUpdated": "2017-08-11T09:41:20.477Z", - "city": "Davonboro", - "region": "Kootenay" - }, - { - "uuid": "ab3d61a5-516a-4d72-824f-35dd25faf8e5", - "siteID": 18554, - "address": "61918 Armando Knoll", - "latitude": 49.0395, - "longitude": -125.1529, - "lastUpdated": "2016-10-26T16:14:49.457Z", - "city": "Amaniworth", - "region": "Cariboo" - }, - { - "uuid": "18e52c2d-a317-43f5-af5d-449e97341e41", - "siteID": 18795, - "address": "344 Skiles Ramp", - "latitude": 54.862, - "longitude": -130.0517, - "lastUpdated": "2016-04-24T14:28:15.709Z", - "city": "Lake Sheila", - "region": "Mainland/Southwest" - }, - { - "uuid": "d1de57a2-f166-4c91-a4f0-a6b23930efe7", - "siteID": 15604, - "address": "696 Senger Pines", - "latitude": 53.3486, - "longitude": -122.8607, - "lastUpdated": "2015-12-18T13:15:21.583Z", - "city": "West Anabelberg", - "region": "Thompson-Okanagan" - }, - { - "uuid": "6428e91e-3048-4d3b-aaf2-5c8bd4613fa1", - "siteID": 20494, - "address": "28989 Cormier Way", - "latitude": 50.8252, - "longitude": -130.1739, - "lastUpdated": "2014-06-29T01:14:07.476Z", - "city": "Scottsdale", - "region": "Kootenay" - }, - { - "uuid": "4f93698e-55d2-4e69-ad17-d5e4be7fe380", - "siteID": 18774, - "address": "224 Clarissa Plain", - "latitude": 48.1594, - "longitude": -124.1106, - "lastUpdated": "2014-09-18T15:21:17.935Z", - "city": "South Eldoraside", - "region": " North Coast" - }, - { - "uuid": "1fa9c01b-7b2a-4380-8016-fbb51f968f3b", - "siteID": 19490, - "address": "5044 Dee Prairie", - "latitude": 56.2091, - "longitude": -135.9092, - "lastUpdated": "2015-11-09T17:32:03.569Z", - "city": "North Camylleburgh", - "region": "Thompson-Okanagan" - }, - { - "uuid": "d499e4b3-9742-45c7-a3f7-051023def5c9", - "siteID": 19367, - "address": "780 Miracle Cliff", - "latitude": 53.1537, - "longitude": -124.9793, - "lastUpdated": "2018-08-19T09:34:53.677Z", - "city": "Grapevine", - "region": "Thompson-Okanagan" - }, - { - "uuid": "22e27552-1d38-4d27-a350-5734725e1b21", - "siteID": 18505, - "address": "78373 Jesus Crescent", - "latitude": 48.3083, - "longitude": -124.9677, - "lastUpdated": "2017-05-25T06:08:58.960Z", - "city": "Ullrichmouth", - "region": "Vancouver Island/Coast" - }, - { - "uuid": "91c163f4-785c-4ec9-989f-4f0ea3c670fe", - "siteID": 15481, - "address": "2396 Vincent Mills", - "latitude": 58.4512, - "longitude": -127.1711, - "lastUpdated": "2017-08-24T13:30:27.353Z", - "city": "Metzside", - "region": " North Coast" - }, - { - "uuid": "173f4364-5140-4522-95dd-74a39e93b497", - "siteID": 16759, - "address": "523 Candido Run", - "latitude": 53.5694, - "longitude": -128.3076, - "lastUpdated": "2021-05-23T10:18:19.072Z", - "city": "Fort Bethboro", - "region": "Vancouver Island/Coast" - }, - { - "uuid": "c150ddcd-a5bc-422c-beeb-d864e84fdd6d", - "siteID": 16197, - "address": "88206 Loyce Rapid", - "latitude": 51.0591, - "longitude": -136.2352, - "lastUpdated": "2021-12-30T12:07:17.366Z", - "city": "Perris", - "region": "Mainland/Southwest" - }, - { - "uuid": "b5e32fc8-d41e-42ef-bcff-2393f04cd8ff", - "siteID": 16825, - "address": "6042 Green Cliff", - "latitude": 55.3592, - "longitude": -123.277, - "lastUpdated": "2022-11-25T06:18:39.483Z", - "city": "Micahburgh", - "region": "Kootenay" - }, - { - "uuid": "4bb755b2-05f5-4499-b975-bd076f16d4b4", - "siteID": 20308, - "address": "987 Lysanne Parkways", - "latitude": 54.4685, - "longitude": -121.9738, - "lastUpdated": "2016-09-22T21:55:36.005Z", - "city": "Odessa", - "region": " North Coast" - }, - { - "uuid": "f48abe1b-5a9f-49c5-b0f4-eaaa79c36e74", - "siteID": 17534, - "address": "87737 Emmanuel Rest", - "latitude": 52.5507, - "longitude": -124.1756, - "lastUpdated": "2023-06-22T11:56:19.197Z", - "city": "East Draketon", - "region": "Cariboo" - }, - { - "uuid": "a13b8e89-c92b-4c81-8878-a1c305176b68", - "siteID": 17790, - "address": "5161 Hoppe Mission", - "latitude": 50.59, - "longitude": -120.1417, - "lastUpdated": "2016-05-13T20:52:43.637Z", - "city": "Bayerchester", - "region": "Cariboo" - }, - { - "uuid": "9c2e349c-6623-423c-a996-9d00fec8869a", - "siteID": 19067, - "address": "67348 Chadd Prairie", - "latitude": 52.5235, - "longitude": -136.4422, - "lastUpdated": "2019-04-03T08:18:40.404Z", - "city": "Wilberbury", - "region": "Thompson-Okanagan" - }, - { - "uuid": "e4b44891-afe7-4410-aa1c-b5fa29afd471", + "address": "74259 Garnett Drives", + "latitude": 58.0943, + "longitude": -122.0105, + "lastUpdated": "2022-07-07T13:17:40.125Z", + "city": "Raumouth", + "region": "Kootenay", + "victoriaFile": "26250-20/1300", + "regionalFile": "N/A", + "parcelIDs": [ + 9846437, + 1888424, + 6247421, + 7842671, + 3823675 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "55f39631-be19-4af3-869b-f002965a6876", + "siteID": 15472, + "address": "94280 Nova Radial", + "latitude": 58.2783, + "longitude": -129.312, + "lastUpdated": "2017-04-12T22:08:21.316Z", + "city": "Wolffcester", + "region": "Cariboo", + "victoriaFile": "26250-20/932", + "regionalFile": "N/A", + "parcelIDs": [ + 1221873, + 8804287, + 2843755, + 1288082, + 6675986 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "9eb984e3-241e-45f9-ba5d-9809e6512d93", + "siteID": 18265, + "address": "7146 Christophe Fort", + "latitude": 58.3682, + "longitude": -137.0446, + "lastUpdated": "2015-05-28T18:07:09.168Z", + "city": "Fort Pasqualeburgh", + "region": "Thompson-Okanagan", + "victoriaFile": "26250-20/15458", + "regionalFile": "N/A", + "parcelIDs": [ + 6451356, + 3251457, + 868322, + 131674, + 8982504 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "47a4146f-0812-4d1b-9aa8-b48340a201fa", + "siteID": 19735, + "address": "53730 Price Junctions", + "latitude": 50.8489, + "longitude": -127.1551, + "lastUpdated": "2020-01-25T04:38:09.177Z", + "city": "Dakotacester", + "region": " North Coast", + "victoriaFile": "26250-20/17927", + "regionalFile": "N/A", + "parcelIDs": [ + 6905717, + 9684732, + 2591920, + 7503703, + 1646001 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "24271360-e7bc-42ff-aa52-5f34e1d88522", + "siteID": 19604, + "address": "3960 Ezequiel Village", + "latitude": 56.6098, + "longitude": -124.9242, + "lastUpdated": "2023-01-23T23:39:40.347Z", + "city": "South Paigeworth", + "region": "Kootenay", + "victoriaFile": "26250-20/2706", + "regionalFile": "N/A", + "parcelIDs": [ + 5786334, + 3930996, + 2955098, + 3937655, + 469971 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "f9fe6c64-159f-44ef-ac16-2a20e484f04f", + "siteID": 17343, + "address": "5445 D'Amore Walks", + "latitude": 56.848, + "longitude": -131.867, + "lastUpdated": "2014-05-28T23:07:32.842Z", + "city": "Evanston", + "region": "Vancouver Island/Coast", + "victoriaFile": "26250-20/3259", + "regionalFile": "N/A", + "parcelIDs": [ + 1098164, + 421053, + 4443981, + 2844500, + 8668295 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "6d2798b5-7a1b-4d35-a5b8-52f88027cf22", + "siteID": 18579, + "address": "34873 Wehner Lodge", + "latitude": 49.3408, + "longitude": -134.7045, + "lastUpdated": "2015-01-17T04:01:28.701Z", + "city": "Mariamboro", + "region": "Vancouver Island/Coast", + "victoriaFile": "26250-20/13787", + "regionalFile": "N/A", + "parcelIDs": [ + 7990289, + 2091686, + 9633658, + 8318247, + 1992659 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "50574c14-1dc0-41b4-9e43-dcb0e632d8e5", + "siteID": 16303, + "address": "312 Chelsea Lodge", + "latitude": 50.0188, + "longitude": -121.7686, + "lastUpdated": "2014-06-29T12:28:50.038Z", + "city": "Brekkeborough", + "region": "Mainland/Southwest", + "victoriaFile": "26250-20/3208", + "regionalFile": "N/A", + "parcelIDs": [ + 9104359, + 2295697, + 2066071, + 5634681, + 5246894 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "72cec2ea-201e-4379-ad66-720844e7f811", + "siteID": 20207, + "address": "79623 Hahn Pass", + "latitude": 49.6636, + "longitude": -123.3962, + "lastUpdated": "2020-02-11T01:07:52.014Z", + "city": "Corwinburgh", + "region": "Cariboo", + "victoriaFile": "26250-20/750", + "regionalFile": "N/A", + "parcelIDs": [ + 9929022, + 7667769, + 6462734, + 9796804, + 9186918 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "93a0bf52-5df7-4d1a-a789-0520b1d89f23", + "siteID": 20806, + "address": "3769 Emanuel Radial", + "latitude": 50.02, + "longitude": -123.8498, + "lastUpdated": "2020-03-18T01:19:18.071Z", + "city": "Bel Air South", + "region": "Vancouver Island/Coast", + "victoriaFile": "26250-20/15744", + "regionalFile": "N/A", + "parcelIDs": [ + 2681833, + 9103581, + 7110090, + 6468333, + 6895896 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "a86b8262-5a3b-40bd-aca9-d756945e5eba", + "siteID": 20571, + "address": "86994 Pfannerstill Corner", + "latitude": 56.5334, + "longitude": -123.7681, + "lastUpdated": "2020-08-28T20:41:11.392Z", + "city": "West Selina", + "region": "Thompson-Okanagan", + "victoriaFile": "26250-20/5989", + "regionalFile": "N/A", + "parcelIDs": [ + 5900969, + 4403534, + 3597337, + 7036533, + 5069168 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "63aaf922-1bad-4bdb-aeff-3beb1facdc55", + "siteID": 19020, + "address": "1838 Jaida Garden", + "latitude": 49.919, + "longitude": -128.6124, + "lastUpdated": "2021-09-18T04:23:55.295Z", + "city": "Wilburntown", + "region": "Cariboo", + "victoriaFile": "26250-20/14005", + "regionalFile": "N/A", + "parcelIDs": [ + 4008635, + 5877230, + 7572916, + 6514903, + 2521179 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "eec3afbb-c3db-4f4a-97d0-5e4b201ffc29", + "siteID": 15933, + "address": "129 Padberg Throughway", + "latitude": 52.2765, + "longitude": -129.2038, + "lastUpdated": "2020-07-03T10:15:18.512Z", + "city": "South Syblehaven", + "region": "Cariboo", + "victoriaFile": "26250-20/10594", + "regionalFile": "N/A", + "parcelIDs": [ + 5712767, + 8416269, + 7892820, + 1972038, + 8741214 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "590163f0-e0c9-4ce1-a240-309e4f750497", + "siteID": 18010, + "address": "7957 Schiller Hollow", + "latitude": 53.9183, + "longitude": -122.616, + "lastUpdated": "2017-11-26T05:38:44.639Z", + "city": "New Eugene", + "region": "Thompson-Okanagan", + "victoriaFile": "26250-20/11855", + "regionalFile": "N/A", + "parcelIDs": [ + 6972588, + 7737863, + 105046, + 2956709, + 6179966 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "6c394cb5-0fe2-464d-b508-f254e3290b19", "siteID": 17512, - "address": "466 Schamberger Plaza", - "latitude": 58.1781, - "longitude": -133.0443, - "lastUpdated": "2014-04-10T05:09:40.983Z", - "city": "West Emmett", - "region": "Mainland/Southwest" - }, - { - "uuid": "b3aeab11-5bfd-4cf2-923e-50e84d23975a", - "siteID": 15748, - "address": "249 Rae Shoals", - "latitude": 56.2622, - "longitude": -119.8801, - "lastUpdated": "2019-11-30T21:27:42.522Z", - "city": "Lake Blaisebury", - "region": "Cariboo" - }, - { - "uuid": "a11bc624-1473-4de4-a217-60b4dbf8f582", - "siteID": 18388, - "address": "16731 Pollich Mall", - "latitude": 58.9029, - "longitude": -121.0477, - "lastUpdated": "2014-02-16T09:09:35.514Z", - "city": "Walshstad", - "region": "Thompson-Okanagan" - }, - { - "uuid": "a4aad995-559e-4330-9267-692e90cf6661", - "siteID": 17136, - "address": "30504 Litzy Passage", - "latitude": 58.2266, - "longitude": -130.3548, - "lastUpdated": "2021-01-01T10:41:11.533Z", - "city": "Rubyeport", - "region": "Cariboo" - }, - { - "uuid": "e3fa5606-c575-451d-9053-879ba5351e23", - "siteID": 15616, - "address": "66692 Wunsch Spur", - "latitude": 52.9074, - "longitude": -121.076, - "lastUpdated": "2014-08-05T21:18:21.460Z", - "city": "Jessieworth", - "region": "Kootenay" - }, - { - "uuid": "895a1606-1618-45f5-842f-f184bdb661b5", - "siteID": 17951, - "address": "523 Stefanie Pike", - "latitude": 50.4294, - "longitude": -129.7678, - "lastUpdated": "2022-08-01T17:45:52.012Z", - "city": "New Marguerite", - "region": "Mainland/Southwest" - }, - { - "uuid": "cdae7ca7-4143-4e35-9e87-0d9be69299aa", - "siteID": 18681, - "address": "864 Runolfsdottir River", - "latitude": 49.7323, - "longitude": -131.3977, - "lastUpdated": "2017-09-22T23:10:52.408Z", - "city": "Grand Forks", - "region": "Kootenay" - }, - { - "uuid": "ef8cd8d1-2d32-4300-9015-3357bc38d759", - "siteID": 17186, - "address": "349 Koss Springs", - "latitude": 54.0952, - "longitude": -123.0386, - "lastUpdated": "2015-10-14T14:26:46.195Z", - "city": "North Alaina", - "region": "Cariboo" - }, - { - "uuid": "f83c48f5-f9f7-433d-a98b-63754dac2af0", - "siteID": 20789, - "address": "60426 Haley Crossroad", - "latitude": 56.3934, - "longitude": -135.7144, - "lastUpdated": "2022-07-20T17:54:47.832Z", - "city": "Kreigerhaven", - "region": "Thompson-Okanagan" - }, - { - "uuid": "c8db726f-9dc7-48b3-9cca-856984b60a72", - "siteID": 18926, - "address": "2423 Larissa Roads", - "latitude": 57.8358, - "longitude": -138.1003, - "lastUpdated": "2020-05-24T15:23:18.872Z", - "city": "South Lamberthaven", - "region": "Kootenay" - }, - { - "uuid": "86a13b16-ec8a-4d03-aa34-6be9258f5384", - "siteID": 15757, - "address": "65781 Bernhard Loaf", - "latitude": 50.798, - "longitude": -138.6714, - "lastUpdated": "2018-10-11T15:09:59.646Z", - "city": "Heavenworth", - "region": "Thompson-Okanagan" - }, - { - "uuid": "f740f44d-739c-40bc-a7ff-19c72049e64e", - "siteID": 15272, - "address": "107 Quitzon Corner", - "latitude": 57.2521, - "longitude": -127.7507, - "lastUpdated": "2018-12-25T16:41:14.548Z", - "city": "Lake Gideonview", - "region": "Vancouver Island/Coast" - }, - { - "uuid": "89ee6efc-cfe0-4974-a54c-b0a0ed3cecaf", - "siteID": 20051, - "address": "8292 Krajcik Canyon", - "latitude": 56.1789, - "longitude": -120.7289, - "lastUpdated": "2014-05-17T10:49:15.760Z", - "city": "Fort Abbey", - "region": "Kootenay" - }, - { - "uuid": "2c174d04-9c6a-4d3b-8dd0-5b582c089e61", - "siteID": 15297, - "address": "9820 Jessika Light", - "latitude": 52.1673, - "longitude": -137.0111, - "lastUpdated": "2015-08-16T13:38:15.020Z", - "city": "Blandaton", - "region": "Thompson-Okanagan" - }, - { - "uuid": "36a34666-16d4-47f3-a2fc-6535a448b138", - "siteID": 19134, - "address": "78171 Charlie Streets", - "latitude": 50.2378, - "longitude": -120.8828, - "lastUpdated": "2022-02-01T07:35:06.932Z", - "city": "West Benedict", - "region": "Cariboo" - }, - { - "uuid": "aae90b9a-2a92-4312-8f18-8a2d5fa36652", - "siteID": 16126, - "address": "40019 Leilani Plain", - "latitude": 48.3595, - "longitude": -135.1893, - "lastUpdated": "2020-11-02T05:16:44.998Z", - "city": "Kingsport", - "region": "Thompson-Okanagan" - }, - { - "uuid": "bfcc78c7-a8ad-4013-9adc-f0dd6ba0a81a", - "siteID": 16609, - "address": "746 Meda Orchard", - "latitude": 52.2887, - "longitude": -125.8531, - "lastUpdated": "2014-05-10T05:08:21.818Z", - "city": "Fort Fredy", - "region": "Thompson-Okanagan" - }, - { - "uuid": "b9dcc9bd-266d-45a6-997e-93b14d86e542", - "siteID": 17366, - "address": "2988 Upton Mountain", - "latitude": 50.0119, - "longitude": -137.2447, - "lastUpdated": "2016-08-06T17:42:51.185Z", - "city": "Queenbury", - "region": "Mainland/Southwest" - }, - { - "uuid": "d65253b5-c3a4-416b-bfc4-00214a746d13", - "siteID": 20141, - "address": "92785 Kelsie Path", - "latitude": 56.8278, - "longitude": -124.5518, - "lastUpdated": "2022-07-29T11:59:24.756Z", - "city": "North Wendell", - "region": "Kootenay" - }, - { - "uuid": "1abfc382-72ce-485d-9d69-cf90f2eb9ae9", - "siteID": 15478, - "address": "67104 Johnson Overpass", - "latitude": 48.0228, - "longitude": -120.3033, - "lastUpdated": "2019-11-13T18:46:35.789Z", - "city": "Fort Novafield", - "region": "Cariboo" - }, - { - "uuid": "d43724eb-6474-4d84-bf31-22f7fb923e55", - "siteID": 18748, - "address": "10540 Lang Isle", - "latitude": 50.9933, - "longitude": -129.6189, - "lastUpdated": "2022-03-23T00:46:49.432Z", - "city": "Kerlukeboro", - "region": "Thompson-Okanagan" - }, - { - "uuid": "7cd6680d-058a-4817-9675-8db13153c34f", - "siteID": 15195, - "address": "6560 Fritsch Curve", - "latitude": 57.3406, - "longitude": -138.2989, - "lastUpdated": "2017-02-24T12:49:09.128Z", - "city": "Maggiestad", - "region": "Thompson-Okanagan" - }, - { - "uuid": "d67c6fe8-2a45-4b12-848e-e7c0dbacb3c3", - "siteID": 20160, - "address": "62132 Carmella Circle", - "latitude": 50.5891, - "longitude": -135.0032, - "lastUpdated": "2016-06-22T06:52:49.834Z", - "city": "Woodbury", - "region": "Kootenay" - }, - { - "uuid": "ee370fe7-8d68-4ae1-b3a0-0c603a7559c3", - "siteID": 16353, - "address": "807 Bette Canyon", - "latitude": 54.6865, - "longitude": -118.3464, - "lastUpdated": "2013-10-25T23:54:40.961Z", - "city": "McCulloughworth", - "region": "Thompson-Okanagan" - }, - { - "uuid": "e2e3e66c-40e8-4a90-9b75-b98370bd792a", - "siteID": 20951, - "address": "4179 Johnson Landing", - "latitude": 52.1019, - "longitude": -135.7775, - "lastUpdated": "2022-02-15T16:58:19.595Z", - "city": "Lindgrenton", - "region": "Vancouver Island/Coast" - }, - { - "uuid": "6207eacd-4be4-46d1-b768-81edafb50f22", - "siteID": 18013, - "address": "856 Kreiger Corner", - "latitude": 54.1308, - "longitude": -118.0459, - "lastUpdated": "2023-07-22T11:15:15.833Z", - "city": "New Kevon", - "region": "Mainland/Southwest" - }, - { - "uuid": "6544d4f3-dfd4-49ea-8edf-eb1f01c521cf", - "siteID": 20409, - "address": "97797 Elwyn Junctions", - "latitude": 55.867, - "longitude": -127.4502, - "lastUpdated": "2015-08-02T21:25:29.175Z", - "city": "Ceciliaburgh", - "region": " North Coast" - }, - { - "uuid": "73692f53-4951-460b-b993-5efdc3e87a6e", - "siteID": 20957, - "address": "296 Kunze Mill", - "latitude": 55.4861, - "longitude": -128.4006, - "lastUpdated": "2023-07-22T14:20:46.548Z", - "city": "East Agustinaland", - "region": "Vancouver Island/Coast" - }, - { - "uuid": "71feca59-47a9-4a97-94b0-4b68ac21f538", - "siteID": 19598, - "address": "284 Grady Heights", - "latitude": 53.8036, - "longitude": -132.7099, - "lastUpdated": "2022-09-30T17:07:04.694Z", - "city": "West Maziehaven", - "region": "Vancouver Island/Coast" - }, - { - "uuid": "47dbb41f-43c4-4b91-81c2-0043f7214a2b", - "siteID": 20158, - "address": "913 Ryan Ranch", - "latitude": 51.9784, - "longitude": -121.8241, - "lastUpdated": "2017-09-28T05:01:59.582Z", - "city": "Loweboro", - "region": "Vancouver Island/Coast" - }, - { - "uuid": "647a3ffd-976e-4c0c-bfe4-7b4b5e8451e8", - "siteID": 16966, - "address": "6305 Adam Plains", - "latitude": 58.0586, - "longitude": -136.7103, - "lastUpdated": "2021-10-22T23:46:17.901Z", - "city": "South Hailiefort", - "region": "Vancouver Island/Coast" - }, - { - "uuid": "bb620ce2-4923-44e0-a99a-5362a498f7a7", - "siteID": 17128, - "address": "379 Durgan Mills", - "latitude": 54.6643, - "longitude": -120.5306, - "lastUpdated": "2016-10-03T09:14:05.016Z", - "city": "West Justinechester", - "region": "Vancouver Island/Coast" - }, - { - "uuid": "d21ef400-20a1-4554-9c85-df612fa58269", + "address": "8669 Howell Rapid", + "latitude": 57.8616, + "longitude": -125.6782, + "lastUpdated": "2020-07-06T02:01:14.731Z", + "city": "Bernierberg", + "region": "Kootenay", + "victoriaFile": "26250-20/1222", + "regionalFile": "N/A", + "parcelIDs": [ + 5023470, + 8557112, + 7907514, + 3053736, + 3994807 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "6f617bae-398b-474f-a958-41205e34f99c", + "siteID": 18507, + "address": "2240 Precious Curve", + "latitude": 48.5329, + "longitude": -126.8846, + "lastUpdated": "2019-03-07T22:28:05.044Z", + "city": "Killeen", + "region": "Cariboo", + "victoriaFile": "26250-20/14435", + "regionalFile": "N/A", + "parcelIDs": [ + 6824793, + 3155267, + 5649273, + 1290948, + 8631191 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "b54efda4-c727-41fd-914d-7e225b5c3274", + "siteID": 18874, + "address": "483 Tessie Cliff", + "latitude": 51.8925, + "longitude": -118.9179, + "lastUpdated": "2020-06-24T17:12:35.228Z", + "city": "West Tristinbury", + "region": "Vancouver Island/Coast", + "victoriaFile": "26250-20/17797", + "regionalFile": "N/A", + "parcelIDs": [ + 4735194, + 319805, + 800897, + 3237782, + 8227410 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "0e000a77-f8bd-4bce-bc95-eeac4e15cb7e", + "siteID": 20292, + "address": "865 Champlin Bypass", + "latitude": 54.7004, + "longitude": -128.1732, + "lastUpdated": "2016-09-02T15:11:10.110Z", + "city": "Rasheedbury", + "region": "Cariboo", + "victoriaFile": "26250-20/6986", + "regionalFile": "N/A", + "parcelIDs": [ + 6057936, + 6821434, + 1841183, + 3200885, + 5436607 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "540af488-4446-4251-8818-3b31679f4906", + "siteID": 20315, + "address": "19142 Cale Harbors", + "latitude": 48.8361, + "longitude": -137.9312, + "lastUpdated": "2015-06-11T03:19:03.406Z", + "city": "Nellaville", + "region": "Mainland/Southwest", + "victoriaFile": "26250-20/18490", + "regionalFile": "N/A", + "parcelIDs": [ + 1188096, + 1701507, + 9115368, + 9728128, + 9128717 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "441fa9bd-1fd6-4e68-a5df-3cba8f4d808b", + "siteID": 17289, + "address": "25651 Enos Landing", + "latitude": 49.6512, + "longitude": -134.3726, + "lastUpdated": "2017-08-03T02:02:31.815Z", + "city": "South Piperstad", + "region": "Mainland/Southwest", + "victoriaFile": "26250-20/6196", + "regionalFile": "N/A", + "parcelIDs": [ + 2761780, + 1326218, + 2956367, + 247882, + 4560915 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "2e03050b-2df2-420f-b81e-c758bfefb2fe", + "siteID": 17998, + "address": "9840 Gregorio Field", + "latitude": 53.4017, + "longitude": -126.6492, + "lastUpdated": "2019-01-06T02:15:31.442Z", + "city": "Jonesmouth", + "region": "Thompson-Okanagan", + "victoriaFile": "26250-20/9855", + "regionalFile": "N/A", + "parcelIDs": [ + 4870187, + 3755149, + 1091580, + 599053, + 2954453 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "3bf363bd-4c03-4f86-a180-1d4053d7369d", + "siteID": 15651, + "address": "52203 Pollich Pike", + "latitude": 56.0037, + "longitude": -133.0895, + "lastUpdated": "2019-04-30T10:10:45.530Z", + "city": "Evansville", + "region": "Thompson-Okanagan", + "victoriaFile": "26250-20/2464", + "regionalFile": "N/A", + "parcelIDs": [ + 3055466, + 4907271, + 3106965, + 7976546, + 3807096 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "e7bd1ffb-1199-421d-86e7-f28f269abad3", + "siteID": 18713, + "address": "35438 Schinner Plaza", + "latitude": 54.8493, + "longitude": -133.2179, + "lastUpdated": "2020-11-27T18:13:21.090Z", + "city": "Rebaview", + "region": "Vancouver Island/Coast", + "victoriaFile": "26250-20/16612", + "regionalFile": "N/A", + "parcelIDs": [ + 2319169, + 6214522, + 2568632, + 5864960, + 4649191 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "b1bf3e9c-e2fc-4ec5-8da0-be8bc9ec73b1", + "siteID": 20641, + "address": "142 Kulas Park", + "latitude": 50.2737, + "longitude": -138.7851, + "lastUpdated": "2021-02-02T16:28:36.166Z", + "city": "Lake Janice", + "region": "Cariboo", + "victoriaFile": "26250-20/16959", + "regionalFile": "N/A", + "parcelIDs": [ + 1224800, + 6394146, + 3956828, + 5066986, + 8435608 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "5100762f-e233-44ad-b0e8-46ae1d7523b9", + "siteID": 20033, + "address": "9893 Mozell Fords", + "latitude": 57.405, + "longitude": -126.1638, + "lastUpdated": "2017-09-02T07:16:43.206Z", + "city": "Reillyland", + "region": "Cariboo", + "victoriaFile": "26250-20/5692", + "regionalFile": "N/A", + "parcelIDs": [ + 5352945, + 2800233, + 5458563, + 4671799, + 5639622 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "0b567045-83ef-44fc-b7f5-1b429eead570", + "siteID": 16201, + "address": "5552 Kristofer Tunnel", + "latitude": 58.4637, + "longitude": -138.352, + "lastUpdated": "2022-03-02T21:50:31.589Z", + "city": "Orlando", + "region": "Thompson-Okanagan", + "victoriaFile": "26250-20/7137", + "regionalFile": "N/A", + "parcelIDs": [ + 5238368, + 2136122, + 3017146, + 1347366, + 6731964 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "9f98056f-b094-4370-bb2c-ef8d2087827c", + "siteID": 15709, + "address": "502 Dallin Circles", + "latitude": 57.0995, + "longitude": -138.5698, + "lastUpdated": "2021-07-10T21:14:22.052Z", + "city": "Fort Olinbury", + "region": "Cariboo", + "victoriaFile": "26250-20/7212", + "regionalFile": "N/A", + "parcelIDs": [ + 6169487, + 2728460, + 6621661, + 1097865, + 9347183 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "85e05e5a-2df8-4834-b77b-d8bb7fa28f69", + "siteID": 20724, + "address": "7819 Mervin Island", + "latitude": 48.1757, + "longitude": -118.0119, + "lastUpdated": "2017-01-19T18:17:24.970Z", + "city": "Ornton", + "region": " North Coast", + "victoriaFile": "26250-20/2388", + "regionalFile": "N/A", + "parcelIDs": [ + 4761807, + 6520963, + 8720810, + 3455340, + 475225 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "579bf3b2-7d4e-4feb-99cb-82a878c8da59", + "siteID": 16890, + "address": "528 Dicki River", + "latitude": 51.9584, + "longitude": -130.7176, + "lastUpdated": "2023-01-23T14:34:01.251Z", + "city": "New Haylee", + "region": " North Coast", + "victoriaFile": "26250-20/18268", + "regionalFile": "N/A", + "parcelIDs": [ + 8355600, + 3275310, + 2646369, + 8785276, + 195332 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "3912fbba-e40d-4d42-9675-a9c23c3f1735", + "siteID": 17479, + "address": "9718 Rempel Run", + "latitude": 52.6732, + "longitude": -120.4704, + "lastUpdated": "2016-07-25T23:01:38.719Z", + "city": "East Kaycee", + "region": " North Coast", + "victoriaFile": "26250-20/16693", + "regionalFile": "N/A", + "parcelIDs": [ + 7519146, + 1573025, + 9432827, + 8168807, + 1393737 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "a57996ef-de9a-48d1-8ad4-fcb9101702d5", + "siteID": 19654, + "address": "123 Zulauf Points", + "latitude": 49.1219, + "longitude": -134.2867, + "lastUpdated": "2021-09-23T20:40:36.101Z", + "city": "Janessaland", + "region": " North Coast", + "victoriaFile": "26250-20/11421", + "regionalFile": "N/A", + "parcelIDs": [ + 5263734, + 3807966, + 1490046, + 5938821, + 9545569 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "f3a58a67-a2aa-4d39-836c-70b12e51701a", + "siteID": 16532, + "address": "513 Gilbert Loaf", + "latitude": 54.8895, + "longitude": -118.5023, + "lastUpdated": "2019-05-06T12:57:24.813Z", + "city": "Bryonport", + "region": " North Coast", + "victoriaFile": "26250-20/16481", + "regionalFile": "N/A", + "parcelIDs": [ + 5523174, + 6985653, + 3374536, + 5291200, + 5640507 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "85bb6d9a-dc34-4f35-b216-659a857dbe71", + "siteID": 19389, + "address": "2100 Cummings Mount", + "latitude": 51.6557, + "longitude": -125.155, + "lastUpdated": "2016-10-27T12:14:10.476Z", + "city": "North Mary", + "region": "Thompson-Okanagan", + "victoriaFile": "26250-20/13975", + "regionalFile": "N/A", + "parcelIDs": [ + 5487696, + 4784917, + 7303051, + 3440116, + 4309602 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "ebf592a5-3487-4784-8fee-ffff636a4ac7", + "siteID": 15606, + "address": "1077 Kiarra Ways", + "latitude": 57.301, + "longitude": -122.7724, + "lastUpdated": "2021-01-21T00:15:48.605Z", + "city": "Gageview", + "region": "Vancouver Island/Coast", + "victoriaFile": "26250-20/5917", + "regionalFile": "N/A", + "parcelIDs": [ + 6630743, + 4393842, + 8877191, + 8680679, + 8648729 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "6aac49ab-6f2e-40fd-9734-a6761331c055", + "siteID": 18283, + "address": "17930 Maximilian Passage", + "latitude": 55.3083, + "longitude": -123.2109, + "lastUpdated": "2015-02-19T18:45:03.046Z", + "city": "Clevelandport", + "region": " North Coast", + "victoriaFile": "26250-20/17294", + "regionalFile": "N/A", + "parcelIDs": [ + 7794222, + 9502187, + 3538622, + 9648914, + 2196202 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "74e89ca8-bec5-4de3-8f01-4f64bb2a0301", + "siteID": 20576, + "address": "79698 Maverick Springs", + "latitude": 52.2056, + "longitude": -135.7251, + "lastUpdated": "2018-05-13T21:27:19.104Z", + "city": "Josiahville", + "region": " North Coast", + "victoriaFile": "26250-20/15435", + "regionalFile": "N/A", + "parcelIDs": [ + 3145919, + 8528311, + 8732040, + 1088145, + 6184226 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "f3c2a08c-82e4-449c-9b47-28fc0c0af4cf", + "siteID": 15938, + "address": "772 Ziemann Lane", + "latitude": 54.4353, + "longitude": -138.3202, + "lastUpdated": "2014-10-01T22:20:30.005Z", + "city": "South Ethylboro", + "region": "Kootenay", + "victoriaFile": "26250-20/17038", + "regionalFile": "N/A", + "parcelIDs": [ + 3302405, + 9617105, + 8786343, + 4789261, + 4704075 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "dcca6672-6f94-4b21-9b69-854bb5bf88b9", + "siteID": 20841, + "address": "7685 Ardith Springs", + "latitude": 56.0386, + "longitude": -131.2742, + "lastUpdated": "2019-11-24T06:18:23.466Z", + "city": "Dooleyview", + "region": " North Coast", + "victoriaFile": "26250-20/19471", + "regionalFile": "N/A", + "parcelIDs": [ + 6120405, + 3151999, + 6558308, + 4180961, + 5562189 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "a77378b0-86a4-48cf-857f-9be2c421825d", + "siteID": 15315, + "address": "46237 Jermey Pass", + "latitude": 57.1485, + "longitude": -126.7345, + "lastUpdated": "2021-04-13T20:51:25.309Z", + "city": "New Amber", + "region": "Thompson-Okanagan", + "victoriaFile": "26250-20/5896", + "regionalFile": "N/A", + "parcelIDs": [ + 2450314, + 3656072, + 1613299, + 7449276, + 226819 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "b00f596d-e307-4acf-8330-982d179047a8", + "siteID": 16641, + "address": "5939 Bogan Tunnel", + "latitude": 49.4559, + "longitude": -137.8411, + "lastUpdated": "2019-02-02T17:06:22.318Z", + "city": "Riceberg", + "region": "Vancouver Island/Coast", + "victoriaFile": "26250-20/11673", + "regionalFile": "N/A", + "parcelIDs": [ + 8555357, + 606039, + 9567859, + 8754438, + 5378677 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "acc5f82f-b1ea-41c5-8528-677863488758", + "siteID": 18771, + "address": "7293 Jaunita Manors", + "latitude": 53.3554, + "longitude": -126.7578, + "lastUpdated": "2022-06-02T03:08:02.496Z", + "city": "Cierraburgh", + "region": " North Coast", + "victoriaFile": "26250-20/18735", + "regionalFile": "N/A", + "parcelIDs": [ + 5614730, + 2144470, + 6858438, + 7242921, + 8149336 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "8fa2fb6c-a812-4c65-b6ac-72bc90679311", + "siteID": 18539, + "address": "4251 Ludwig Avenue", + "latitude": 57.9807, + "longitude": -134.0473, + "lastUpdated": "2016-02-14T13:29:29.032Z", + "city": "Lake Luellastad", + "region": "Mainland/Southwest", + "victoriaFile": "26250-20/12979", + "regionalFile": "N/A", + "parcelIDs": [ + 541313, + 9264023, + 8694994, + 8394511, + 6997963 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "fd44bb66-84a0-46ba-a05b-b184ab64d3e1", + "siteID": 15609, + "address": "29377 Beaulah Radial", + "latitude": 51.5708, + "longitude": -118.3812, + "lastUpdated": "2023-03-01T18:54:30.980Z", + "city": "Sydniport", + "region": "Kootenay", + "victoriaFile": "26250-20/3359", + "regionalFile": "N/A", + "parcelIDs": [ + 2569942, + 3978579, + 7740207, + 3908804, + 1938515 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "0217a673-a56f-4557-80ef-d960c64b08aa", + "siteID": 17305, + "address": "82667 Cole Burg", + "latitude": 54.9212, + "longitude": -124.0224, + "lastUpdated": "2020-11-25T21:19:30.113Z", + "city": "Port Annamae", + "region": "Mainland/Southwest", + "victoriaFile": "26250-20/3251", + "regionalFile": "N/A", + "parcelIDs": [ + 434085, + 3055620, + 6253579, + 2405037, + 1856303 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "3d3314f3-4316-4668-8df4-3fe521a75cec", + "siteID": 16700, + "address": "11232 Funk Crescent", + "latitude": 53.4508, + "longitude": -136.0328, + "lastUpdated": "2022-10-13T01:41:30.321Z", + "city": "West Drew", + "region": " North Coast", + "victoriaFile": "26250-20/15844", + "regionalFile": "N/A", + "parcelIDs": [ + 5968465, + 7347652, + 9433029, + 6319713, + 5300955 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "d24d0ebb-8699-4ec8-a1f4-159ac6925041", + "siteID": 17491, + "address": "41862 Odie Forest", + "latitude": 51.2388, + "longitude": -128.2968, + "lastUpdated": "2021-05-09T10:14:57.919Z", + "city": "Miami Gardens", + "region": "Cariboo", + "victoriaFile": "26250-20/16871", + "regionalFile": "N/A", + "parcelIDs": [ + 8390123, + 5575760, + 667691, + 4548807, + 165661 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "2f10aa96-5cec-4f89-a272-652ea3ae3f8f", + "siteID": 18475, + "address": "550 Carter Bridge", + "latitude": 51.6205, + "longitude": -121.4369, + "lastUpdated": "2023-05-15T02:42:16.651Z", + "city": "West Oral", + "region": "Thompson-Okanagan", + "victoriaFile": "26250-20/16446", + "regionalFile": "N/A", + "parcelIDs": [ + 761431, + 3422576, + 5841577, + 1865048, + 6455487 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "b2afafec-838b-4598-9c56-e8f144a1c841", + "siteID": 18498, + "address": "7627 McCullough Stravenue", + "latitude": 57.3918, + "longitude": -131.2431, + "lastUpdated": "2020-08-29T19:29:03.375Z", + "city": "Kihnmouth", + "region": "Cariboo", + "victoriaFile": "26250-20/13956", + "regionalFile": "N/A", + "parcelIDs": [ + 9191808, + 1159240, + 8823629, + 3448528, + 2790105 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "c172ae52-14ce-46c3-ad90-0bfe2ee2038e", + "siteID": 15712, + "address": "65146 Laurianne Stravenue", + "latitude": 55.4365, + "longitude": -136.4228, + "lastUpdated": "2019-04-24T11:43:21.359Z", + "city": "Hudsonburgh", + "region": "Vancouver Island/Coast", + "victoriaFile": "26250-20/8372", + "regionalFile": "N/A", + "parcelIDs": [ + 8303911, + 7346362, + 7577465, + 5271584, + 8359129 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "15303750-ea94-4436-b0d6-054f85895515", + "siteID": 20870, + "address": "26095 Marley Tunnel", + "latitude": 48.8185, + "longitude": -122.2414, + "lastUpdated": "2017-11-17T01:04:12.543Z", + "city": "East Yasmeen", + "region": "Cariboo", + "victoriaFile": "26250-20/16139", + "regionalFile": "N/A", + "parcelIDs": [ + 7246289, + 6185801, + 931965, + 3233618, + 6490118 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "4d8afc68-bbbd-4342-893e-3a270fb881a0", + "siteID": 16362, + "address": "32161 Jaunita Walks", + "latitude": 55.8265, + "longitude": -122.0291, + "lastUpdated": "2019-08-14T21:06:30.386Z", + "city": "Port Jaquelineshire", + "region": "Kootenay", + "victoriaFile": "26250-20/19175", + "regionalFile": "N/A", + "parcelIDs": [ + 1897090, + 870085, + 8119000, + 834648, + 7084950 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "e3562c15-66bf-4304-8f3b-ffb113a69f04", + "siteID": 20469, + "address": "8846 Alejandrin Track", + "latitude": 50.42, + "longitude": -135.3713, + "lastUpdated": "2017-04-10T23:46:43.532Z", + "city": "South Minnieview", + "region": "Vancouver Island/Coast", + "victoriaFile": "26250-20/5482", + "regionalFile": "N/A", + "parcelIDs": [ + 3752655, + 6925585, + 1350660, + 2038303, + 4243621 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "f7d18e71-eaaf-4e64-adfc-7c989cc216a1", + "siteID": 17000, + "address": "14720 Sauer Inlet", + "latitude": 56.8013, + "longitude": -125.6712, + "lastUpdated": "2019-08-27T09:05:42.134Z", + "city": "East Ida", + "region": "Thompson-Okanagan", + "victoriaFile": "26250-20/16419", + "regionalFile": "N/A", + "parcelIDs": [ + 144333, + 6366386, + 3103309, + 3090173, + 3538441 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "0319b9af-c072-48d7-8891-93cc84cb588f", + "siteID": 15928, + "address": "70356 MacGyver Rest", + "latitude": 56.5991, + "longitude": -124.2111, + "lastUpdated": "2016-04-07T21:57:50.433Z", + "city": "Port Hettiefort", + "region": "Vancouver Island/Coast", + "victoriaFile": "26250-20/19714", + "regionalFile": "N/A", + "parcelIDs": [ + 6531977, + 3738720, + 8751155, + 7361809, + 7458889 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "2d5c34be-a022-4623-adc7-59317913feb3", + "siteID": 15352, + "address": "29080 Howell Parkway", + "latitude": 55.2342, + "longitude": -127.3369, + "lastUpdated": "2020-12-23T09:25:09.284Z", + "city": "Tiarastad", + "region": "Kootenay", + "victoriaFile": "26250-20/14133", + "regionalFile": "N/A", + "parcelIDs": [ + 880738, + 9537324, + 9917430, + 7336979, + 309090 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "9583f84d-5e4a-4597-b726-7dcd9d0956e9", + "siteID": 17788, + "address": "39872 Hilll Camp", + "latitude": 58.7166, + "longitude": -126.1786, + "lastUpdated": "2015-05-16T15:14:44.509Z", + "city": "Doylefort", + "region": "Thompson-Okanagan", + "victoriaFile": "26250-20/8534", + "regionalFile": "N/A", + "parcelIDs": [ + 9466766, + 8583709, + 2174451, + 3318317, + 2764098 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "7c0ffddf-ad89-4a70-9f15-e471b8a2e4c8", + "siteID": 19053, + "address": "42043 Jarod Plain", + "latitude": 51.5041, + "longitude": -131.0074, + "lastUpdated": "2019-04-13T03:19:00.893Z", + "city": "Aldenfield", + "region": "Kootenay", + "victoriaFile": "26250-20/10093", + "regionalFile": "N/A", + "parcelIDs": [ + 7628292, + 3036136, + 3875735, + 7796261, + 3405803 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "a7d3cf39-5139-478e-9be2-0b7c314cf0a6", + "siteID": 15486, + "address": "9081 Sadie Keys", + "latitude": 58.4912, + "longitude": -130.0715, + "lastUpdated": "2014-09-08T02:07:20.734Z", + "city": "Bechtelarboro", + "region": "Vancouver Island/Coast", + "victoriaFile": "26250-20/10689", + "regionalFile": "N/A", + "parcelIDs": [ + 3827544, + 4540131, + 2695684, + 7122549, + 3329074 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "1247a6b8-f717-4905-bf71-5f0da525f302", + "siteID": 20703, + "address": "57779 Beier Corner", + "latitude": 49.0712, + "longitude": -125.247, + "lastUpdated": "2017-08-01T23:00:15.266Z", + "city": "East Faeshire", + "region": "Kootenay", + "victoriaFile": "26250-20/6483", + "regionalFile": "N/A", + "parcelIDs": [ + 1269990, + 8669424, + 6002471, + 6536794, + 887162 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "355c3bc7-5ff1-4da5-bf85-1838aba7bf24", + "siteID": 15587, + "address": "746 Christelle Divide", + "latitude": 51.5094, + "longitude": -131.9568, + "lastUpdated": "2019-07-18T03:44:17.000Z", + "city": "Wunschside", + "region": "Thompson-Okanagan", + "victoriaFile": "26250-20/6547", + "regionalFile": "N/A", + "parcelIDs": [ + 6644792, + 380165, + 3027222, + 5092413, + 4518090 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "213a66ba-d840-4878-b828-6506ca8133bd", + "siteID": 19847, + "address": "64160 Becker Track", + "latitude": 52.2212, + "longitude": -128.9436, + "lastUpdated": "2018-04-17T13:31:39.408Z", + "city": "Bellevue", + "region": "Kootenay", + "victoriaFile": "26250-20/5701", + "regionalFile": "N/A", + "parcelIDs": [ + 7978200, + 7209716, + 6510993, + 5050145, + 4743367 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "a1e1dc0b-dd9e-4d13-be3e-4e8b9790442a", "siteID": 16984, - "address": "85564 Douglas Mills", - "latitude": 51.9895, - "longitude": -133.0589, - "lastUpdated": "2014-06-13T15:23:14.912Z", - "city": "Cummingsmouth", - "region": "Thompson-Okanagan" - }, - { - "uuid": "09671446-4210-4a3b-96f3-1c910f37cfb6", - "siteID": 16356, - "address": "616 Wade Parks", - "latitude": 50.2669, - "longitude": -119.0136, - "lastUpdated": "2022-01-15T13:59:39.811Z", - "city": "Johns Creek", - "region": " North Coast" - }, - { - "uuid": "36aed971-b905-404e-a88e-3bee28732af7", - "siteID": 18142, - "address": "868 Littel Circles", - "latitude": 54.8599, - "longitude": -134.9007, - "lastUpdated": "2020-05-17T15:56:35.136Z", - "city": "West Joliebury", - "region": "Mainland/Southwest" - }, - { - "uuid": "64f7159e-fb39-4439-add3-5a1fbda7761c", - "siteID": 20998, - "address": "8469 Corkery Fork", - "latitude": 52.938, - "longitude": -132.9597, - "lastUpdated": "2014-07-15T14:22:36.245Z", - "city": "North Rebeccaworth", - "region": "Mainland/Southwest" - }, - { - "uuid": "535c1ce2-aa50-4a27-a998-fb8cc0199b22", - "siteID": 20501, - "address": "3728 Mraz Overpass", - "latitude": 51.4774, - "longitude": -138.1117, - "lastUpdated": "2019-11-02T18:24:54.478Z", - "city": "Wesley Chapel", - "region": "Thompson-Okanagan" - }, - { - "uuid": "affb4db6-27f2-45ef-869d-3f1b3e404dbd", - "siteID": 16229, - "address": "4440 Heaney Underpass", - "latitude": 55.7388, - "longitude": -119.5637, - "lastUpdated": "2019-03-27T13:52:38.188Z", - "city": "Lonnieworth", - "region": "Vancouver Island/Coast" - }, - { - "uuid": "03bb32e2-f31d-471e-9539-bb7e26770d75", - "siteID": 16960, - "address": "4662 Wintheiser Estate", - "latitude": 52.451, - "longitude": -121.7718, - "lastUpdated": "2015-11-20T16:49:30.632Z", - "city": "Binghamton", - "region": "Thompson-Okanagan" - }, - { - "uuid": "524fdb63-b404-4322-a687-ed5d50d03037", - "siteID": 18824, - "address": "59879 Oswaldo Lakes", - "latitude": 50.6607, - "longitude": -134.3473, - "lastUpdated": "2020-07-10T05:28:00.574Z", - "city": "South Adelaboro", - "region": "Cariboo" - }, - { - "uuid": "991c491d-daa2-4b65-a3e6-ab8f55c3899f", - "siteID": 16129, - "address": "16713 Sedrick Burg", - "latitude": 55.8384, - "longitude": -122.8042, - "lastUpdated": "2014-09-02T09:34:15.203Z", - "city": "Collinsview", - "region": "Cariboo" - }, - { - "uuid": "346dd0e0-5526-4e47-b153-846daeb0e1b3", - "siteID": 17477, - "address": "4416 Roscoe Field", - "latitude": 48.2179, - "longitude": -118.2193, - "lastUpdated": "2018-05-01T12:25:05.838Z", - "city": "Port Layla", - "region": "Thompson-Okanagan" - }, - { - "uuid": "4631ae81-b561-48b9-8d88-451d9cb0d613", - "siteID": 18440, - "address": "770 Hartmann Skyway", - "latitude": 55.6063, - "longitude": -131.0822, - "lastUpdated": "2019-01-23T00:05:39.711Z", - "city": "Grantbury", - "region": "Thompson-Okanagan" - }, - { - "uuid": "629be896-9111-4d3d-a74b-bc3470a9c50b", - "siteID": 19644, - "address": "3037 Paucek Center", - "latitude": 55.0813, - "longitude": -133.4761, - "lastUpdated": "2021-07-05T21:38:13.529Z", - "city": "West Jessika", - "region": " North Coast" - }, - { - "uuid": "064b97e8-716d-45c5-bb19-8689802510ed", - "siteID": 17968, - "address": "8860 Tromp Branch", - "latitude": 54.3287, - "longitude": -126.9829, - "lastUpdated": "2015-03-29T02:40:30.163Z", - "city": "East Camdenfort", - "region": "Vancouver Island/Coast" - }, - { - "uuid": "3a117012-7981-4bfe-8c7b-95245326cc30", - "siteID": 18792, - "address": "62270 Olson Causeway", - "latitude": 56.9514, - "longitude": -118.4435, - "lastUpdated": "2017-08-09T16:25:43.908Z", - "city": "Wilfredstead", - "region": "Vancouver Island/Coast" - }, - { - "uuid": "1a2414e3-4a91-48bb-98d4-c953deb8f101", - "siteID": 19578, - "address": "834 Stamm Roads", - "latitude": 55.1436, - "longitude": -130.8004, - "lastUpdated": "2021-08-13T09:25:00.179Z", - "city": "North Sethfield", - "region": " North Coast" - }, - { - "uuid": "76c506ba-3363-46ac-b032-97e75380d8e7", - "siteID": 16413, - "address": "96275 Nitzsche Stravenue", - "latitude": 56.0765, - "longitude": -130.3284, - "lastUpdated": "2016-02-11T22:32:36.718Z", - "city": "Boscoshire", - "region": "Kootenay" - }, - { - "uuid": "0715bac2-cd19-4b81-bbb6-56d0d4652def", - "siteID": 19417, - "address": "960 Verdie Oval", - "latitude": 51.9768, - "longitude": -126.4938, - "lastUpdated": "2020-04-23T18:54:31.709Z", - "city": "West Kadeberg", - "region": "Mainland/Southwest" - }, - { - "uuid": "14835738-7c04-4e0a-b10a-ae65472c2c39", - "siteID": 15405, - "address": "572 Kozey Curve", - "latitude": 56.8904, - "longitude": -138.1904, - "lastUpdated": "2020-08-14T07:00:44.534Z", - "city": "Abbottfurt", - "region": "Vancouver Island/Coast" - }, - { - "uuid": "c8b37c76-09ef-45df-81aa-ca927ee7291e", - "siteID": 19714, - "address": "7759 Monahan Burgs", - "latitude": 58.827, - "longitude": -119.2902, - "lastUpdated": "2018-12-26T17:24:03.164Z", - "city": "Lake Jayda", - "region": "Vancouver Island/Coast" - }, - { - "uuid": "71ddbd61-bbeb-46a0-bd3c-9da5480a1934", - "siteID": 16764, - "address": "240 Dickinson Circles", - "latitude": 50.3262, - "longitude": -118.9604, - "lastUpdated": "2016-07-05T22:34:10.481Z", - "city": "Portland", - "region": " North Coast" - }, - { - "uuid": "676feed5-33bf-40c6-be55-5d08d0efea42", - "siteID": 16465, - "address": "222 Kamron Dale", - "latitude": 57.2699, - "longitude": -121.5201, - "lastUpdated": "2018-01-12T18:58:38.265Z", - "city": "Christoptown", - "region": "Cariboo" - }, - { - "uuid": "4f619438-de72-429a-974d-f5b008734ada", - "siteID": 16682, - "address": "2160 Thad Stream", - "latitude": 56.3704, - "longitude": -127.915, - "lastUpdated": "2014-06-14T16:36:26.829Z", - "city": "Meghanfort", - "region": "Cariboo" - }, - { - "uuid": "11df7c44-b88b-44a5-80bb-df43dae22cf9", - "siteID": 16107, - "address": "70298 McDermott Course", - "latitude": 55.4651, - "longitude": -126.8471, - "lastUpdated": "2018-01-17T12:31:50.393Z", - "city": "Mannport", - "region": "Thompson-Okanagan" - }, - { - "uuid": "6331ea7a-adbc-4481-8157-99be9a04fea7", - "siteID": 18602, - "address": "9173 Ankunding Mountain", - "latitude": 54.404, - "longitude": -134.2257, - "lastUpdated": "2018-04-22T02:02:02.386Z", - "city": "Mantecester", - "region": " North Coast" - }, - { - "uuid": "bb9eb11e-4a85-4c25-a207-96625df46480", - "siteID": 18181, - "address": "37354 Olson Lights", - "latitude": 58.0005, - "longitude": -135.8924, - "lastUpdated": "2015-11-18T17:14:58.084Z", - "city": "Philipland", - "region": "Thompson-Okanagan" - }, - { - "uuid": "ee70ca6b-6c6f-4a1e-bf7e-fc54936222cc", - "siteID": 16027, - "address": "6764 Isabel Mills", - "latitude": 53.9907, - "longitude": -136.5522, - "lastUpdated": "2022-10-06T17:52:35.884Z", - "city": "Lake Aubreeshire", - "region": "Cariboo" - }, - { - "uuid": "587c3569-e12f-469a-801e-069a3f0a14b9", - "siteID": 20419, - "address": "313 Hegmann Turnpike", - "latitude": 52.9016, - "longitude": -134.3243, - "lastUpdated": "2016-01-27T05:49:40.695Z", - "city": "Fort Maryjane", - "region": "Cariboo" - }, - { - "uuid": "a1d2269e-2ada-4aca-bfee-4ea13fa1ddb0", - "siteID": 15468, - "address": "174 Alexis Bypass", - "latitude": 49.2014, - "longitude": -127.0137, - "lastUpdated": "2017-05-03T11:30:41.798Z", - "city": "Randicester", - "region": "Kootenay" - }, - { - "uuid": "6428806e-aa6d-4133-821a-0b3f68fa1892", - "siteID": 15915, - "address": "7610 Janiya Fort", - "latitude": 52.7151, - "longitude": -119.5856, - "lastUpdated": "2021-05-24T06:40:21.014Z", - "city": "North Korbin", - "region": "Vancouver Island/Coast" - }, - { - "uuid": "8e78dfa8-9c95-4aad-a1e5-da7e3d080c41", - "siteID": 19792, - "address": "966 Murray Expressway", - "latitude": 55.6718, - "longitude": -131.1496, - "lastUpdated": "2020-08-17T13:00:33.376Z", - "city": "Fort Shaynatown", - "region": "Vancouver Island/Coast" - }, - { - "uuid": "dd98273d-81c8-4c29-820f-92a804d340f8", - "siteID": 20486, - "address": "1704 Joanne Roads", - "latitude": 51.8265, - "longitude": -136.0349, - "lastUpdated": "2021-07-15T13:04:06.187Z", - "city": "Larsontown", - "region": "Thompson-Okanagan" - }, - { - "uuid": "bb225f41-c56b-426a-99f7-f3852ff5e106", - "siteID": 16054, - "address": "51354 Hudson Centers", - "latitude": 52.056, - "longitude": -128.2975, - "lastUpdated": "2015-04-06T02:07:12.110Z", - "city": "Stromanbury", - "region": "Vancouver Island/Coast" - }, - { - "uuid": "e4c85dc7-78f2-4629-bdd7-1db238f0baac", - "siteID": 19519, - "address": "46044 Virgil Manors", - "latitude": 55.2111, - "longitude": -127.4427, - "lastUpdated": "2017-07-27T10:15:44.733Z", - "city": "Orvilleberg", - "region": "Mainland/Southwest" - }, - { - "uuid": "69d604f6-387d-430a-b782-61158b468b7b", - "siteID": 19736, - "address": "52050 Jana Lakes", - "latitude": 57.2234, - "longitude": -132.5629, - "lastUpdated": "2016-06-04T17:27:50.657Z", - "city": "South Lynn", - "region": "Mainland/Southwest" - }, - { - "uuid": "09a2e326-b6cc-416b-a754-4be564e36595", - "siteID": 18619, - "address": "173 Pfeffer Via", - "latitude": 52.5408, - "longitude": -123.4893, - "lastUpdated": "2017-07-12T07:31:29.389Z", - "city": "Dibbertfurt", - "region": "Cariboo" - }, - { - "uuid": "3708fcd4-acfc-4aa1-8ff7-2536e8865c0c", - "siteID": 20624, - "address": "34795 Bridie View", - "latitude": 58.6867, - "longitude": -118.225, - "lastUpdated": "2019-05-11T21:29:15.011Z", - "city": "Swaniawskistead", - "region": " North Coast" - }, - { - "uuid": "c80e9aab-4200-4346-a757-33fa4a577c01", - "siteID": 18435, - "address": "2532 Marcelo Parkway", - "latitude": 49.2548, - "longitude": -124.6601, - "lastUpdated": "2020-09-14T04:34:01.440Z", - "city": "North Candido", - "region": "Kootenay" - }, - { - "uuid": "c3c02bee-1527-4d21-8020-770fc4b0b89b", - "siteID": 17400, - "address": "194 Rico Groves", - "latitude": 56.1744, - "longitude": -131.4754, - "lastUpdated": "2019-08-13T02:58:16.062Z", - "city": "South Jermeyfield", - "region": "Kootenay" - }, - { - "uuid": "86f1aca3-cac5-4618-a765-1930c68bf2b2", - "siteID": 15603, - "address": "983 Friesen Pike", - "latitude": 54.7135, - "longitude": -135.6854, - "lastUpdated": "2021-01-08T18:04:08.720Z", - "city": "Boydhaven", - "region": "Mainland/Southwest" - }, - { - "uuid": "efc0e3e4-3aec-4aa5-89dd-9d7da68c3539", - "siteID": 18035, - "address": "36686 Watson Ville", - "latitude": 51.7362, - "longitude": -135.5104, - "lastUpdated": "2021-08-24T22:49:31.545Z", - "city": "New Gonzalo", - "region": " North Coast" - }, - { - "uuid": "cdd56dc9-f8e1-4954-93c7-f5d2bcdeb1dd", - "siteID": 15895, - "address": "6052 Goldner Crescent", - "latitude": 48.4019, - "longitude": -136.674, - "lastUpdated": "2016-08-17T02:46:28.490Z", - "city": "South Nat", - "region": "Kootenay" - }, - { - "uuid": "c0f95f1e-c0e9-472d-bc6d-f8bb9ffc4097", - "siteID": 15749, - "address": "87682 Marvin Tunnel", - "latitude": 55.298, - "longitude": -120.7632, - "lastUpdated": "2017-09-21T19:00:49.190Z", - "city": "Austin", - "region": "Thompson-Okanagan" - }, - { - "uuid": "8620813f-0aba-4a88-bc64-934188cd1775", - "siteID": 18358, - "address": "6498 Stroman Spurs", - "latitude": 49.0929, - "longitude": -130.5525, - "lastUpdated": "2020-02-14T15:30:54.129Z", - "city": "Fort Kelvin", - "region": "Cariboo" - }, - { - "uuid": "4457df62-b8ad-4bf3-a508-dd61852fafb5", - "siteID": 16820, - "address": "330 Leffler Radial", - "latitude": 57.2722, - "longitude": -131.8414, - "lastUpdated": "2022-09-29T05:56:34.759Z", - "city": "Arlington Heights", - "region": "Vancouver Island/Coast" - }, - { - "uuid": "deb0c832-f1a5-4174-b305-19b6ed711e2c", - "siteID": 20045, - "address": "90958 Dashawn Mission", - "latitude": 49.3951, - "longitude": -127.7785, - "lastUpdated": "2016-01-15T18:31:54.886Z", - "city": "Lemkeborough", - "region": "Cariboo" - }, - { - "uuid": "f0b093d3-3e6f-4781-8b23-501321fc0a02", - "siteID": 18815, - "address": "1986 Moore Crossing", - "latitude": 56.0993, - "longitude": -119.4169, - "lastUpdated": "2014-04-07T10:02:08.506Z", - "city": "South Jewell", - "region": "Kootenay" - }, - { - "uuid": "086d36cd-d7b4-44c5-960b-98b4666d0d46", - "siteID": 15845, - "address": "60549 Camryn Villages", - "latitude": 57.9722, - "longitude": -128.9536, - "lastUpdated": "2020-02-14T16:33:51.943Z", - "city": "West Queen", - "region": "Mainland/Southwest" - }, - { - "uuid": "efead2d9-7ea1-4d52-9dfe-7253c6f0c6e4", - "siteID": 20321, - "address": "4834 Ian Center", - "latitude": 49.7584, - "longitude": -135.5571, - "lastUpdated": "2015-10-13T19:59:54.399Z", - "city": "South Roderickland", - "region": " North Coast" - }, - { - "uuid": "3d1c2c02-a712-4e36-9906-b5fe7897f111", - "siteID": 16653, - "address": "278 Hammes Shores", - "latitude": 52.8747, - "longitude": -136.3774, - "lastUpdated": "2014-12-07T11:35:40.496Z", - "city": "Ellicott City", - "region": " North Coast" - }, - { - "uuid": "a7785ed7-74a6-491c-a2e4-c7403ca57206", - "siteID": 18064, - "address": "615 Roberts Trace", - "latitude": 48.8801, - "longitude": -138.0281, - "lastUpdated": "2018-03-28T05:25:52.523Z", - "city": "Downers Grove", - "region": "Vancouver Island/Coast" - }, - { - "uuid": "9319773e-37bb-43b3-96e4-02b734b7be9e", - "siteID": 16328, - "address": "8796 Keebler Harbor", - "latitude": 49.7899, - "longitude": -118.8844, - "lastUpdated": "2016-06-25T04:55:17.603Z", - "city": "New Conrad", - "region": "Thompson-Okanagan" - }, - { - "uuid": "3bbee8a1-272d-4854-9f11-d395dea230a7", - "siteID": 19745, - "address": "299 Olga Ford", - "latitude": 49.5216, - "longitude": -129.0129, - "lastUpdated": "2014-11-04T03:56:44.644Z", - "city": "Port Hillard", - "region": "Vancouver Island/Coast" - }, - { - "uuid": "7f0fe7c8-2bfe-4873-9d0e-9daa2bc2d112", - "siteID": 16989, - "address": "13591 Morar Orchard", - "latitude": 53.3586, - "longitude": -123.45, - "lastUpdated": "2018-05-29T12:27:02.846Z", - "city": "East Israel", - "region": "Thompson-Okanagan" - }, - { - "uuid": "db3399e8-4345-49b6-9377-fa04b849029c", - "siteID": 18686, - "address": "7413 Jadyn Landing", - "latitude": 55.4054, - "longitude": -137.0002, - "lastUpdated": "2022-01-25T03:21:27.640Z", - "city": "Chico", - "region": "Vancouver Island/Coast" - }, - { - "uuid": "11bec402-d12e-456b-98c8-87f7cfb0abae", - "siteID": 17008, - "address": "43201 McClure Glens", - "latitude": 52.8188, - "longitude": -126.8155, - "lastUpdated": "2016-08-17T05:34:42.950Z", - "city": "Port Lesleybury", - "region": "Cariboo" - }, - { - "uuid": "f6f0a747-6bcd-417b-9e52-f08ba5cda122", - "siteID": 19302, - "address": "368 Hoeger Brooks", - "latitude": 58.9684, - "longitude": -118.0452, - "lastUpdated": "2013-10-30T19:40:49.519Z", - "city": "West Horacechester", - "region": "Kootenay" - }, - { - "uuid": "31d73121-1239-40da-a300-2414a814ceb8", - "siteID": 18191, - "address": "845 Napoleon Ways", - "latitude": 55.6157, - "longitude": -130.8562, - "lastUpdated": "2020-04-25T10:28:36.536Z", - "city": "Lake Marvinfurt", - "region": "Thompson-Okanagan" - }, - { - "uuid": "3d803455-bb5c-46ee-bc13-9fe7c81cff11", - "siteID": 19463, - "address": "250 Ondricka Vista", - "latitude": 54.4326, - "longitude": -135.631, - "lastUpdated": "2014-04-18T18:23:01.471Z", - "city": "Cape Coral", - "region": "Thompson-Okanagan" - }, - { - "uuid": "de15420c-8dd7-4fe9-a6de-f3cec6ae098d", - "siteID": 17754, - "address": "7578 Alana Via", - "latitude": 50.3585, - "longitude": -127.4045, - "lastUpdated": "2015-05-10T17:26:47.485Z", - "city": "East Jeffereyfort", - "region": " North Coast" - }, - { - "uuid": "5d5aa207-4d51-4529-ab17-126069d589e9", - "siteID": 18321, - "address": "650 Brooks Unions", - "latitude": 51.0157, - "longitude": -131.9486, - "lastUpdated": "2021-06-21T13:06:42.506Z", - "city": "Thornton", - "region": "Cariboo" - }, - { - "uuid": "5a44ecd6-c356-4924-b8ba-13a49831e1e8", - "siteID": 20790, - "address": "7351 Kendrick Centers", - "latitude": 57.2699, - "longitude": -135.0314, - "lastUpdated": "2022-08-19T12:23:29.563Z", - "city": "Nobleboro", - "region": "Cariboo" - }, - { - "uuid": "e77f21bb-2e88-479b-b0d2-eefb959df5bd", - "siteID": 18988, - "address": "5501 Norval Parkway", - "latitude": 58.6849, - "longitude": -138.9779, - "lastUpdated": "2016-04-02T15:55:22.296Z", - "city": "Independence", - "region": "Cariboo" - }, - { - "uuid": "c86a93b0-f79d-4362-982a-9b99b2904cc6", + "address": "94177 Waelchi Hills", + "latitude": 56.9187, + "longitude": -122.9034, + "lastUpdated": "2019-09-05T15:19:04.220Z", + "city": "North Yadiraville", + "region": "Mainland/Southwest", + "victoriaFile": "26250-20/17983", + "regionalFile": "N/A", + "parcelIDs": [ + 7237976, + 7160689, + 8753374, + 4392798, + 213386 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "cfad05c4-5877-4645-af4e-bed8b81c2946", + "siteID": 15463, + "address": "21200 Arne Forge", + "latitude": 55.9248, + "longitude": -129.1956, + "lastUpdated": "2015-11-04T07:06:42.573Z", + "city": "Kochstad", + "region": "Mainland/Southwest", + "victoriaFile": "26250-20/14139", + "regionalFile": "N/A", + "parcelIDs": [ + 3469614, + 9087724, + 1524044, + 5974294, + 2506541 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "0701db0f-c049-4717-b165-96501d06534f", + "siteID": 17759, + "address": "5780 Bogan Shores", + "latitude": 53.7048, + "longitude": -132.4548, + "lastUpdated": "2020-05-06T17:26:12.033Z", + "city": "Port Tevin", + "region": "Cariboo", + "victoriaFile": "26250-20/10250", + "regionalFile": "N/A", + "parcelIDs": [ + 360137, + 6371702, + 2835221, + 469355, + 7579108 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "faeac0f8-d4e7-4039-8b40-cc2a5bfe380d", + "siteID": 17437, + "address": "17879 Clemmie River", + "latitude": 50.0408, + "longitude": -129.5016, + "lastUpdated": "2016-12-24T02:16:12.470Z", + "city": "New Meganeton", + "region": "Vancouver Island/Coast", + "victoriaFile": "26250-20/12819", + "regionalFile": "N/A", + "parcelIDs": [ + 180371, + 520509, + 6192802, + 5114439, + 2002270 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "b5189017-4a1e-4d6f-ba08-18fa3dee0d47", + "siteID": 16589, + "address": "9726 Mitchell Mountains", + "latitude": 52.943, + "longitude": -129.2976, + "lastUpdated": "2019-04-08T14:25:17.234Z", + "city": "Rhiannaworth", + "region": "Thompson-Okanagan", + "victoriaFile": "26250-20/8678", + "regionalFile": "N/A", + "parcelIDs": [ + 9214180, + 5298684, + 2458114, + 8711421, + 9777742 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "5ee7aa77-3e14-4b79-91a9-f107b30b91b6", + "siteID": 19908, + "address": "50933 Lemke Valley", + "latitude": 53.3808, + "longitude": -124.5763, + "lastUpdated": "2023-05-15T21:04:15.113Z", + "city": "Huberttown", + "region": "Mainland/Southwest", + "victoriaFile": "26250-20/4033", + "regionalFile": "N/A", + "parcelIDs": [ + 8444226, + 9088568, + 2191998, + 132744, + 6142508 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "b1e9af54-bdc9-40bf-90ae-e8b9c188ba39", + "siteID": 20090, + "address": "333 Prosacco Bypass", + "latitude": 52.4391, + "longitude": -129.6569, + "lastUpdated": "2017-05-21T02:32:46.641Z", + "city": "Freddycester", + "region": " North Coast", + "victoriaFile": "26250-20/2244", + "regionalFile": "N/A", + "parcelIDs": [ + 8921332, + 1065254, + 314118, + 7242153, + 5262951 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "83c53917-d280-4779-ac0e-566f5fdfe2a9", + "siteID": 15728, + "address": "42551 Schulist Branch", + "latitude": 55.8699, + "longitude": -121.7868, + "lastUpdated": "2017-04-21T12:41:53.742Z", + "city": "Fort Antonetteborough", + "region": "Cariboo", + "victoriaFile": "26250-20/14102", + "regionalFile": "N/A", + "parcelIDs": [ + 7430424, + 2392427, + 1962459, + 9734625, + 6559051 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "0fdafbd9-9766-4eec-aac6-2ec1974012bb", + "siteID": 16675, + "address": "41421 Collin Village", + "latitude": 53.047, + "longitude": -130.8688, + "lastUpdated": "2016-12-04T21:22:03.636Z", + "city": "Port Jacques", + "region": "Thompson-Okanagan", + "victoriaFile": "26250-20/9235", + "regionalFile": "N/A", + "parcelIDs": [ + 2224143, + 2886245, + 8638575, + 9450953, + 6087616 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "b05cb8bb-0978-4943-81ec-e576f71557a4", + "siteID": 17280, + "address": "70146 Lyda Drives", + "latitude": 57.5276, + "longitude": -128.4829, + "lastUpdated": "2017-03-24T23:49:16.355Z", + "city": "West Darron", + "region": "Mainland/Southwest", + "victoriaFile": "26250-20/17021", + "regionalFile": "N/A", + "parcelIDs": [ + 9953848, + 8359232, + 6191697, + 7854393, + 4952166 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "a9277225-8013-4468-bcc5-db3db8a853b3", + "siteID": 15997, + "address": "4737 Linda Lakes", + "latitude": 51.7685, + "longitude": -137.3183, + "lastUpdated": "2015-06-22T02:42:06.024Z", + "city": "Fort Deltaberg", + "region": "Vancouver Island/Coast", + "victoriaFile": "26250-20/13186", + "regionalFile": "N/A", + "parcelIDs": [ + 8188606, + 7225971, + 8111957, + 2521016, + 4888969 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "54400a5b-630b-4719-9615-9110308b0bda", + "siteID": 17032, + "address": "7849 Monahan Lakes", + "latitude": 50.0786, + "longitude": -126.5093, + "lastUpdated": "2021-02-25T15:02:55.534Z", + "city": "Agustinborough", + "region": "Mainland/Southwest", + "victoriaFile": "26250-20/19471", + "regionalFile": "N/A", + "parcelIDs": [ + 3301260, + 448113, + 430391, + 4023211, + 4223334 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "38c44acb-e0b8-4458-ae45-dc349ba3edad", + "siteID": 17295, + "address": "5405 Trace Point", + "latitude": 56.4077, + "longitude": -128.1575, + "lastUpdated": "2022-01-13T09:21:07.804Z", + "city": "Mrazside", + "region": "Vancouver Island/Coast", + "victoriaFile": "26250-20/12139", + "regionalFile": "N/A", + "parcelIDs": [ + 9149495, + 1716300, + 4650687, + 2628517, + 2195967 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "da6255dc-9315-403c-a581-1508f7dcb435", + "siteID": 17216, + "address": "7192 Stanton Forge", + "latitude": 52.951, + "longitude": -128.0714, + "lastUpdated": "2019-07-11T01:51:39.405Z", + "city": "East Savannah", + "region": "Vancouver Island/Coast", + "victoriaFile": "26250-20/1029", + "regionalFile": "N/A", + "parcelIDs": [ + 2409276, + 8182530, + 4733606, + 226097, + 590711 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "8855e3ec-8cdf-4309-930d-52912e9e43fe", + "siteID": 19645, + "address": "73444 Rita Cove", + "latitude": 55.632, + "longitude": -122.9792, + "lastUpdated": "2014-06-25T20:51:19.235Z", + "city": "New Liliane", + "region": "Vancouver Island/Coast", + "victoriaFile": "26250-20/17260", + "regionalFile": "N/A", + "parcelIDs": [ + 5805911, + 1035823, + 5170540, + 6990300, + 5082656 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "9999508f-f349-4cdc-817c-52aa0b42a2d2", "siteID": 20710, - "address": "6078 Glover Walk", - "latitude": 48.7747, - "longitude": -127.8007, - "lastUpdated": "2018-08-05T12:27:19.196Z", - "city": "South Roy", - "region": " North Coast" - }, - { - "uuid": "233625b2-18a9-4fb3-97ae-aebc63273d41", - "siteID": 15220, - "address": "678 Lurline Circle", - "latitude": 51.7984, - "longitude": -126.142, - "lastUpdated": "2019-12-27T03:35:27.488Z", - "city": "Hudsonmouth", - "region": " North Coast" - }, - { - "uuid": "0f8e5538-defb-4a67-932c-c3b6fe9322c6", - "siteID": 17378, - "address": "9193 Ferry Brook", - "latitude": 49.6592, - "longitude": -131.0431, - "lastUpdated": "2015-06-04T08:29:05.779Z", - "city": "Mertzfort", - "region": "Cariboo" - }, - { - "uuid": "ff08eef1-77fe-46f2-8beb-f6015fb52ebf", - "siteID": 15617, - "address": "1052 Schaefer Green", - "latitude": 56.1479, - "longitude": -128.3274, - "lastUpdated": "2018-06-19T11:06:43.505Z", - "city": "East Rowland", - "region": "Thompson-Okanagan" - }, - { - "uuid": "6a7e5f26-9cea-4ddd-ac55-0c28b95bd3f0", - "siteID": 20898, - "address": "8025 Alisa Shores", - "latitude": 49.7147, - "longitude": -135.2173, - "lastUpdated": "2018-10-14T19:00:12.953Z", - "city": "East Kennedifurt", - "region": "Cariboo" - }, - { - "uuid": "a38e5e37-f689-4c0d-97a1-6910c6d040ad", - "siteID": 15331, - "address": "9683 Krystal Heights", - "latitude": 53.2118, - "longitude": -137.5491, - "lastUpdated": "2019-09-16T10:24:07.631Z", - "city": "Jovanboro", - "region": "Thompson-Okanagan" - }, - { - "uuid": "84e5e500-b875-43b7-b860-500d2c78d70b", - "siteID": 15404, - "address": "97507 Jayne Lodge", - "latitude": 54.4813, - "longitude": -123.0207, - "lastUpdated": "2023-03-17T17:16:27.899Z", - "city": "Vandervortmouth", - "region": "Mainland/Southwest" - }, - { - "uuid": "a5b9bdef-170c-4e85-9012-bbd57ec5d466", - "siteID": 16694, - "address": "70361 Valentine Islands", - "latitude": 50.1224, - "longitude": -127.9736, - "lastUpdated": "2014-10-29T09:22:22.740Z", - "city": "South Emie", - "region": " North Coast" - }, - { - "uuid": "a80ef6fb-82fd-4c51-b7b6-066edcd106cc", - "siteID": 19853, - "address": "6748 Sabina Mall", - "latitude": 48.6155, - "longitude": -120.8329, - "lastUpdated": "2022-10-20T16:51:27.900Z", - "city": "East Odaboro", - "region": " North Coast" - }, - { - "uuid": "ab19c7d3-ae4b-4e15-a346-0c7d4c4806ac", - "siteID": 18834, - "address": "2491 Ruben Cliff", - "latitude": 52.2471, - "longitude": -137.7215, - "lastUpdated": "2017-02-17T23:28:04.173Z", - "city": "Toledo", - "region": " North Coast" - }, - { - "uuid": "2053c1a6-b427-4d3e-a1f7-9ed04842ef8b", - "siteID": 16492, - "address": "1470 Bednar Land", - "latitude": 58.3282, - "longitude": -128.299, - "lastUpdated": "2022-11-22T17:52:41.061Z", - "city": "Beahanchester", - "region": " North Coast" - }, - { - "uuid": "15719f22-68fb-4283-8bc0-58db7495ebb0", - "siteID": 15852, - "address": "4676 Elinore Burg", - "latitude": 58.2407, - "longitude": -133.2454, - "lastUpdated": "2021-08-01T17:08:02.357Z", - "city": "Ignatiusberg", - "region": "Thompson-Okanagan" - }, - { - "uuid": "8f628027-c82a-43d1-b278-a657394284c4", - "siteID": 18438, - "address": "553 Medhurst Creek", - "latitude": 56.2388, - "longitude": -133.2674, - "lastUpdated": "2020-07-05T03:55:52.435Z", - "city": "Bodebury", - "region": "Thompson-Okanagan" - }, - { - "uuid": "b00614a9-5ce4-4173-8091-a3f24a21f1cb", - "siteID": 20373, - "address": "88947 Thiel Plaza", - "latitude": 57.6893, - "longitude": -121.6733, - "lastUpdated": "2023-04-17T08:56:09.544Z", - "city": "West Napoleonshire", - "region": "Kootenay" - }, - { - "uuid": "199d72e4-64f5-47e9-96bd-5ae356fc3321", - "siteID": 18195, - "address": "65220 Federico Ramp", - "latitude": 56.1444, - "longitude": -138.3111, - "lastUpdated": "2017-05-25T15:30:15.408Z", - "city": "Isabelleton", - "region": "Thompson-Okanagan" - }, - { - "uuid": "6c81619c-c49e-4e1a-806d-fc9868a47786", - "siteID": 16464, - "address": "53270 Deangelo Neck", - "latitude": 58.9881, - "longitude": -121.5401, - "lastUpdated": "2015-09-07T13:41:27.309Z", - "city": "Schaeferburgh", - "region": "Mainland/Southwest" - }, - { - "uuid": "df39decc-bc65-4b47-936d-c7dae6425765", - "siteID": 20009, - "address": "7053 Shanahan Road", - "latitude": 53.7396, - "longitude": -128.4522, - "lastUpdated": "2016-10-13T11:00:34.889Z", - "city": "Gerardside", - "region": "Kootenay" - }, - { - "uuid": "324c507e-5625-4eeb-815f-d131bb3de30d", - "siteID": 17051, - "address": "99425 O'Keefe Pass", - "latitude": 50.0757, - "longitude": -119.8511, - "lastUpdated": "2022-02-13T07:52:31.451Z", - "city": "Pollichshire", - "region": "Mainland/Southwest" - }, - { - "uuid": "137cec30-8b8b-497d-bcc1-7ee9e6913f84", - "siteID": 19533, - "address": "98894 Kutch Garden", - "latitude": 51.6246, - "longitude": -121.1281, - "lastUpdated": "2021-01-07T08:51:32.522Z", - "city": "Starkburgh", - "region": "Kootenay" - }, - { - "uuid": "a452343d-9837-49a3-88d5-c9901b3c1219", - "siteID": 15864, - "address": "39734 Erdman Shores", - "latitude": 57.2492, - "longitude": -133.5176, - "lastUpdated": "2019-05-09T08:18:18.569Z", - "city": "Laneview", - "region": "Vancouver Island/Coast" - }, - { - "uuid": "47e2f8df-6248-4936-80fc-49a161a04c87", - "siteID": 18380, - "address": "4251 Stanton Skyway", - "latitude": 56.784, - "longitude": -118.6645, - "lastUpdated": "2020-08-12T18:41:03.270Z", - "city": "Beahanport", - "region": "Vancouver Island/Coast" - }, - { - "uuid": "ef9710be-ebf1-431f-bb28-1f23523bd5f2", - "siteID": 15634, - "address": "1255 Hanna Shore", - "latitude": 51.0096, - "longitude": -137.5078, - "lastUpdated": "2021-10-21T01:31:46.865Z", - "city": "Jacobifield", - "region": "Vancouver Island/Coast" - }, - { - "uuid": "c35a2db8-e38a-449a-b01f-911b5df8f878", - "siteID": 15676, - "address": "31431 Adriana Lodge", - "latitude": 51.1276, - "longitude": -120.1682, - "lastUpdated": "2022-02-25T03:13:59.779Z", - "city": "Rauboro", - "region": "Mainland/Southwest" - }, - { - "uuid": "8de756d9-0800-4009-9468-754637e30034", - "siteID": 16343, - "address": "154 Bertrand Shores", - "latitude": 50.897, - "longitude": -128.2098, - "lastUpdated": "2022-04-23T10:06:15.408Z", - "city": "Auerport", - "region": " North Coast" - }, - { - "uuid": "746f75d4-95e2-408d-815f-2dacf72de71c", - "siteID": 18168, - "address": "73035 Jo Isle", - "latitude": 50.102, - "longitude": -118.0329, - "lastUpdated": "2016-10-07T12:51:53.687Z", - "city": "Dooleyshire", - "region": "Mainland/Southwest" - }, - { - "uuid": "5f3b0729-6e53-409f-be6a-7ca773557d04", - "siteID": 17983, - "address": "4491 Jessika Gardens", - "latitude": 48.1847, - "longitude": -138.7335, - "lastUpdated": "2022-05-12T10:48:09.931Z", - "city": "El Monte", - "region": "Cariboo" - }, - { - "uuid": "ef2b4e81-daeb-4387-beee-884e8c855c37", - "siteID": 19311, - "address": "7266 Jasmin Lights", - "latitude": 58.7472, - "longitude": -131.7448, - "lastUpdated": "2021-02-13T07:16:31.637Z", - "city": "Rancho Cordova", - "region": "Vancouver Island/Coast" - }, - { - "uuid": "316b1fa4-1bff-4cc0-ad60-4cdd673f5d1f", - "siteID": 17127, - "address": "806 Alison Passage", - "latitude": 55.0202, - "longitude": -130.5472, - "lastUpdated": "2022-08-06T15:46:01.541Z", - "city": "Madilynstead", - "region": "Cariboo" - }, - { - "uuid": "b0296330-3bce-425c-877f-f78bfcfa3806", - "siteID": 16762, - "address": "370 Zemlak Ville", - "latitude": 56.7495, - "longitude": -127.922, - "lastUpdated": "2016-05-04T23:40:50.562Z", - "city": "Port Alenacester", - "region": " North Coast" - }, - { - "uuid": "55dc60a0-f189-4946-b1a1-dd132196855a", - "siteID": 16911, - "address": "46317 Cole Forest", - "latitude": 56.2062, - "longitude": -132.961, - "lastUpdated": "2018-04-01T18:32:47.489Z", - "city": "South Bette", - "region": "Mainland/Southwest" + "address": "553 Robert Loaf", + "latitude": 48.8096, + "longitude": -132.7808, + "lastUpdated": "2022-12-23T04:04:02.446Z", + "city": "Fort Trudiefurt", + "region": "Vancouver Island/Coast", + "victoriaFile": "26250-20/19852", + "regionalFile": "N/A", + "parcelIDs": [ + 5363063, + 4632352, + 8590406, + 5775338, + 649906 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "6903abda-515b-4300-a59a-5ca20d867800", + "siteID": 15269, + "address": "5006 Barton Pines", + "latitude": 51.5056, + "longitude": -129.2573, + "lastUpdated": "2021-11-02T11:59:45.494Z", + "city": "Morgan Hill", + "region": "Thompson-Okanagan", + "victoriaFile": "26250-20/11692", + "regionalFile": "N/A", + "parcelIDs": [ + 272177, + 8687682, + 1409238, + 2743480, + 6871674 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "74b9e80b-4598-4aa9-b9eb-e30c72c8f525", + "siteID": 20444, + "address": "67872 Godfrey Road", + "latitude": 55.527, + "longitude": -119.2262, + "lastUpdated": "2019-12-07T11:37:13.970Z", + "city": "West Griffinstead", + "region": "Kootenay", + "victoriaFile": "26250-20/16331", + "regionalFile": "N/A", + "parcelIDs": [ + 6869731, + 4520318, + 6171641, + 1011680, + 9074540 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "6f9cdfc4-f51c-4009-8a1b-7d3e1cce3461", + "siteID": 15741, + "address": "809 Lorna Heights", + "latitude": 49.1646, + "longitude": -135.6742, + "lastUpdated": "2014-06-01T17:59:09.956Z", + "city": "East Josiefield", + "region": " North Coast", + "victoriaFile": "26250-20/1460", + "regionalFile": "N/A", + "parcelIDs": [ + 5799218, + 8957761, + 7406219, + 5276920, + 9219558 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "6b575498-0d1b-4136-be4d-4623c58c1931", + "siteID": 17817, + "address": "533 Louisa Meadow", + "latitude": 52.5647, + "longitude": -137.8036, + "lastUpdated": "2016-07-01T21:31:17.126Z", + "city": "New Emilyton", + "region": " North Coast", + "victoriaFile": "26250-20/12704", + "regionalFile": "N/A", + "parcelIDs": [ + 5088777, + 8753798, + 1703650, + 370733, + 7843940 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "02813e7e-3894-463a-a6b9-d276c86bff33", + "siteID": 18868, + "address": "7003 Pierce Row", + "latitude": 55.356, + "longitude": -124.9771, + "lastUpdated": "2019-05-18T03:39:54.999Z", + "city": "Sabrynastead", + "region": "Kootenay", + "victoriaFile": "26250-20/9964", + "regionalFile": "N/A", + "parcelIDs": [ + 6709081, + 353033, + 2769804, + 463211, + 7889340 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "e36a4e05-65a4-43eb-9195-39aa6bcbd19e", + "siteID": 20926, + "address": "54337 Saige Prairie", + "latitude": 57.4713, + "longitude": -136.9584, + "lastUpdated": "2017-03-23T22:14:56.968Z", + "city": "New Petra", + "region": "Cariboo", + "victoriaFile": "26250-20/7220", + "regionalFile": "N/A", + "parcelIDs": [ + 5906715, + 4472117, + 2592459, + 7101754, + 370637 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "f2dca3a4-72cd-4ca7-8b1e-50532a6c6d57", + "siteID": 18972, + "address": "4197 Hayes Forest", + "latitude": 50.2212, + "longitude": -129.0587, + "lastUpdated": "2020-09-16T07:38:53.201Z", + "city": "Whitechester", + "region": "Thompson-Okanagan", + "victoriaFile": "26250-20/3456", + "regionalFile": "N/A", + "parcelIDs": [ + 8820681, + 1674414, + 5835007, + 833206, + 387390 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "4e42c7dd-46f0-4ef1-aa63-11db1265ab03", + "siteID": 16684, + "address": "864 Wava Freeway", + "latitude": 55.6543, + "longitude": -122.7906, + "lastUpdated": "2022-12-21T05:48:55.359Z", + "city": "West Susan", + "region": "Mainland/Southwest", + "victoriaFile": "26250-20/19548", + "regionalFile": "N/A", + "parcelIDs": [ + 9516110, + 8318146, + 6291600, + 7636560, + 5144865 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "1e480982-b4e6-4f3a-abe5-8b23ef7a1c72", + "siteID": 18460, + "address": "9932 Marina Valley", + "latitude": 56.3296, + "longitude": -135.6341, + "lastUpdated": "2021-06-19T14:17:24.147Z", + "city": "Hawthorne", + "region": "Cariboo", + "victoriaFile": "26250-20/8346", + "regionalFile": "N/A", + "parcelIDs": [ + 4049010, + 1709497, + 2365673, + 5371309, + 4447169 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "274e8cd2-170a-4f35-815c-cfacd2c2594a", + "siteID": 17617, + "address": "7004 Dickens Plains", + "latitude": 58.4457, + "longitude": -134.7115, + "lastUpdated": "2015-09-03T03:10:36.090Z", + "city": "North Wendy", + "region": "Mainland/Southwest", + "victoriaFile": "26250-20/18618", + "regionalFile": "N/A", + "parcelIDs": [ + 2899292, + 8009398, + 8630601, + 9682149, + 6148675 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "d02dd494-9227-4c4b-84af-403c8769e8ec", + "siteID": 15523, + "address": "71353 Hailie Flat", + "latitude": 50.6448, + "longitude": -122.4247, + "lastUpdated": "2019-07-10T18:46:47.771Z", + "city": "Huntsville", + "region": "Cariboo", + "victoriaFile": "26250-20/10268", + "regionalFile": "N/A", + "parcelIDs": [ + 5357290, + 5175200, + 5078089, + 2128481, + 6867218 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "ccdbe6ad-a667-49c3-8c98-34842a6944c6", + "siteID": 16333, + "address": "9697 Chance Manor", + "latitude": 58.0547, + "longitude": -124.4076, + "lastUpdated": "2021-09-05T07:03:53.904Z", + "city": "North Cleta", + "region": "Kootenay", + "victoriaFile": "26250-20/16489", + "regionalFile": "N/A", + "parcelIDs": [ + 6479978, + 6458298, + 9286230, + 6704489, + 2043439 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "31239c4d-4794-4a4a-aebf-ee696efc833b", + "siteID": 20316, + "address": "3084 Hilbert Fork", + "latitude": 51.0146, + "longitude": -118.6886, + "lastUpdated": "2018-10-23T05:28:10.224Z", + "city": "Royal Oak", + "region": "Cariboo", + "victoriaFile": "26250-20/3552", + "regionalFile": "N/A", + "parcelIDs": [ + 4295492, + 163441, + 7242037, + 2619949, + 8266596 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "b3d5275e-4c1e-49d8-90fa-e2d5dd3b978c", + "siteID": 16712, + "address": "507 Labadie Tunnel", + "latitude": 50.6551, + "longitude": -131.8456, + "lastUpdated": "2019-03-07T17:48:36.871Z", + "city": "Nyasiafurt", + "region": "Thompson-Okanagan", + "victoriaFile": "26250-20/3873", + "regionalFile": "N/A", + "parcelIDs": [ + 3601778, + 2480327, + 6697188, + 9576798, + 854663 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "15aa0b34-dae1-47f0-8e02-b1ddefa23946", + "siteID": 19034, + "address": "76473 McKenzie Pine", + "latitude": 49.7221, + "longitude": -124.9956, + "lastUpdated": "2023-08-17T11:50:48.737Z", + "city": "Milwaukee", + "region": "Thompson-Okanagan", + "victoriaFile": "26250-20/18180", + "regionalFile": "N/A", + "parcelIDs": [ + 4105400, + 1383472, + 5974680, + 8477486, + 6363651 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "81dca767-5b8b-40c9-ba94-03956991e733", + "siteID": 18477, + "address": "60412 Reinger Park", + "latitude": 53.2944, + "longitude": -131.6444, + "lastUpdated": "2022-06-21T04:25:51.690Z", + "city": "Redwood City", + "region": "Kootenay", + "victoriaFile": "26250-20/14555", + "regionalFile": "N/A", + "parcelIDs": [ + 8576972, + 5796578, + 3003683, + 6005610, + 5554561 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "af07cc73-8992-4556-a6c3-05cbddd397b9", + "siteID": 20655, + "address": "38467 Tremblay Island", + "latitude": 51.9696, + "longitude": -129.3797, + "lastUpdated": "2019-10-14T17:45:46.794Z", + "city": "Taunton", + "region": "Thompson-Okanagan", + "victoriaFile": "26250-20/18594", + "regionalFile": "N/A", + "parcelIDs": [ + 8090703, + 1794560, + 4831971, + 2636462, + 2904567 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "934a9e98-5fec-4c93-937c-823271640c6a", + "siteID": 18671, + "address": "74988 Towne Alley", + "latitude": 56.7179, + "longitude": -126.3856, + "lastUpdated": "2019-11-18T21:50:07.949Z", + "city": "North Gino", + "region": "Kootenay", + "victoriaFile": "26250-20/2838", + "regionalFile": "N/A", + "parcelIDs": [ + 7173013, + 7165867, + 9294470, + 5004802, + 2832546 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "42de8fa9-5751-4e6d-a8f7-a2944b2097a8", + "siteID": 18325, + "address": "4625 Hilll Terrace", + "latitude": 58.4373, + "longitude": -130.3973, + "lastUpdated": "2019-03-03T21:48:46.509Z", + "city": "New Eltachester", + "region": "Vancouver Island/Coast", + "victoriaFile": "26250-20/1097", + "regionalFile": "N/A", + "parcelIDs": [ + 6172871, + 4837662, + 5586333, + 4764411, + 3407641 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "186337d3-0426-4d1d-96ce-2f31f1dcb62e", + "siteID": 19921, + "address": "27889 Schaden Island", + "latitude": 54.0145, + "longitude": -127.4188, + "lastUpdated": "2016-03-16T03:37:16.425Z", + "city": "Whiteworth", + "region": "Cariboo", + "victoriaFile": "26250-20/12755", + "regionalFile": "N/A", + "parcelIDs": [ + 1411613, + 3887374, + 3281358, + 9635484, + 9481250 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "dee75803-0e9b-4704-ac3e-b969dfbc85c8", + "siteID": 17769, + "address": "987 Lehner Dale", + "latitude": 53.8752, + "longitude": -136.6382, + "lastUpdated": "2022-12-06T15:20:46.831Z", + "city": "Fort Elianworth", + "region": "Cariboo", + "victoriaFile": "26250-20/9476", + "regionalFile": "N/A", + "parcelIDs": [ + 9349685, + 1438165, + 5499213, + 7304690, + 6012677 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "4224fb4d-db68-4f9d-b2da-3665f5ab3ae4", + "siteID": 19832, + "address": "67522 Prohaska Court", + "latitude": 50.6914, + "longitude": -126.7459, + "lastUpdated": "2016-03-02T06:59:42.262Z", + "city": "Fort Milesville", + "region": "Kootenay", + "victoriaFile": "26250-20/2410", + "regionalFile": "N/A", + "parcelIDs": [ + 4275439, + 137530, + 1238476, + 2066767, + 884103 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "1f803ac9-97bc-4d0d-814b-cd694ef9988a", + "siteID": 17783, + "address": "94757 Wunsch Junctions", + "latitude": 54.8149, + "longitude": -134.4794, + "lastUpdated": "2017-08-08T11:05:39.740Z", + "city": "Okunevaville", + "region": "Cariboo", + "victoriaFile": "26250-20/17521", + "regionalFile": "N/A", + "parcelIDs": [ + 2818122, + 8030654, + 1261964, + 457927, + 3800675 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "32e10f4c-1c5d-4eb9-bed2-65624149994c", + "siteID": 19874, + "address": "722 Boyer Mill", + "latitude": 52.8506, + "longitude": -130.0518, + "lastUpdated": "2019-06-05T13:53:51.037Z", + "city": "West Tom", + "region": "Mainland/Southwest", + "victoriaFile": "26250-20/8002", + "regionalFile": "N/A", + "parcelIDs": [ + 5695121, + 3094399, + 2315071, + 2773286, + 742756 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "3a8574be-58c0-44c4-8679-5f14cdb3e546", + "siteID": 16840, + "address": "8624 Rutherford Centers", + "latitude": 58.5138, + "longitude": -137.4909, + "lastUpdated": "2021-01-20T05:25:33.427Z", + "city": "Florence-Graham", + "region": "Cariboo", + "victoriaFile": "26250-20/13119", + "regionalFile": "N/A", + "parcelIDs": [ + 4845673, + 7232806, + 3048170, + 3761654, + 4511825 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "171cc3c9-d861-42f1-a737-9aa32fe1bd7e", + "siteID": 19494, + "address": "758 Ruthie Mill", + "latitude": 48.4725, + "longitude": -127.5879, + "lastUpdated": "2018-06-18T14:43:07.155Z", + "city": "Lake Deloresborough", + "region": "Thompson-Okanagan", + "victoriaFile": "26250-20/12397", + "regionalFile": "N/A", + "parcelIDs": [ + 7282621, + 5882305, + 9238262, + 3996906, + 8625591 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "01550c89-aaa6-42fa-869f-0f5a4ef446df", + "siteID": 20524, + "address": "5869 Bogan Plains", + "latitude": 49.4866, + "longitude": -120.6937, + "lastUpdated": "2017-05-07T04:48:55.682Z", + "city": "Naderstad", + "region": "Vancouver Island/Coast", + "victoriaFile": "26250-20/4323", + "regionalFile": "N/A", + "parcelIDs": [ + 9633555, + 3291526, + 1835082, + 5370661, + 2911230 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "229ad48d-3039-44ce-ac1a-265526c7d98c", + "siteID": 20627, + "address": "8226 Roberts Stream", + "latitude": 49.8498, + "longitude": -122.2213, + "lastUpdated": "2020-05-31T16:52:14.381Z", + "city": "Fredrickport", + "region": " North Coast", + "victoriaFile": "26250-20/5638", + "regionalFile": "N/A", + "parcelIDs": [ + 1259092, + 9151734, + 7421205, + 5210726, + 1750762 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "4b78167a-86c4-4ff2-8d42-de8c0b09e20c", + "siteID": 18346, + "address": "8586 Schneider Underpass", + "latitude": 50.6335, + "longitude": -119.386, + "lastUpdated": "2021-01-04T00:50:16.365Z", + "city": "Glendale", + "region": "Kootenay", + "victoriaFile": "26250-20/4923", + "regionalFile": "N/A", + "parcelIDs": [ + 2502529, + 9939490, + 6194806, + 8895944, + 5520230 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "bf71f41f-3eff-4af3-81a9-a7cd61db786a", + "siteID": 16269, + "address": "42516 Theresia Track", + "latitude": 55.5295, + "longitude": -119.3041, + "lastUpdated": "2016-03-10T03:46:15.606Z", + "city": "Newport Beach", + "region": "Mainland/Southwest", + "victoriaFile": "26250-20/3541", + "regionalFile": "N/A", + "parcelIDs": [ + 1779352, + 3499041, + 2266325, + 4523492, + 4780156 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "3cb19e96-5ebf-41d4-abf7-98c029906b47", + "siteID": 19993, + "address": "65901 Taylor Pines", + "latitude": 52.5365, + "longitude": -137.6589, + "lastUpdated": "2017-05-22T12:06:16.361Z", + "city": "New Monicaborough", + "region": "Mainland/Southwest", + "victoriaFile": "26250-20/12986", + "regionalFile": "N/A", + "parcelIDs": [ + 5507700, + 7985960, + 2304688, + 1545174, + 5329945 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "0d4537de-a088-435b-9109-970058227ee3", + "siteID": 15328, + "address": "3914 Smitham Oval", + "latitude": 54.2204, + "longitude": -118.5714, + "lastUpdated": "2018-04-15T15:59:50.113Z", + "city": "Efrainstead", + "region": "Thompson-Okanagan", + "victoriaFile": "26250-20/6597", + "regionalFile": "N/A", + "parcelIDs": [ + 832184, + 5070575, + 8553351, + 2449002, + 4189137 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "8ccb024d-9617-4fa1-b963-abe7feb1e3a2", + "siteID": 19352, + "address": "8505 Micaela Courts", + "latitude": 54.4379, + "longitude": -136.451, + "lastUpdated": "2020-03-01T23:17:48.757Z", + "city": "Denton", + "region": "Vancouver Island/Coast", + "victoriaFile": "26250-20/16645", + "regionalFile": "N/A", + "parcelIDs": [ + 596250, + 2840404, + 8009901, + 2139548, + 7419593 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "ba721da8-84b1-4d8c-96cb-e6dbdcb407a8", + "siteID": 17891, + "address": "30844 Casper Common", + "latitude": 54.1138, + "longitude": -127.3501, + "lastUpdated": "2014-12-31T11:35:07.403Z", + "city": "Kirlinfort", + "region": "Cariboo", + "victoriaFile": "26250-20/19280", + "regionalFile": "N/A", + "parcelIDs": [ + 4773920, + 7970845, + 9843569, + 5219360, + 3368275 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "4f4c640b-8830-4ca9-ba44-a4214a848691", + "siteID": 16985, + "address": "8919 Nash River", + "latitude": 52.9044, + "longitude": -134.4904, + "lastUpdated": "2023-04-01T13:16:33.102Z", + "city": "Rogahnstead", + "region": " North Coast", + "victoriaFile": "26250-20/12843", + "regionalFile": "N/A", + "parcelIDs": [ + 7243314, + 6993161, + 8073690, + 3156310, + 3338744 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "40d3423b-75e3-4280-a8a5-864a8b116f3b", + "siteID": 15272, + "address": "9163 Crist Cove", + "latitude": 54.8814, + "longitude": -122.0578, + "lastUpdated": "2014-04-23T19:16:54.275Z", + "city": "Todworth", + "region": "Cariboo", + "victoriaFile": "26250-20/12722", + "regionalFile": "N/A", + "parcelIDs": [ + 2161084, + 6458442, + 4781296, + 6043381, + 5340989 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "8e7d7d5b-805b-4f01-89eb-8b10ee60ff57", + "siteID": 18232, + "address": "669 Daniel Pines", + "latitude": 54.7484, + "longitude": -118.1801, + "lastUpdated": "2015-12-26T18:19:23.133Z", + "city": "O'Konworth", + "region": " North Coast", + "victoriaFile": "26250-20/17022", + "regionalFile": "N/A", + "parcelIDs": [ + 8715877, + 8130986, + 5651367, + 2648782, + 1006137 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "b8031045-4138-4db3-a0ae-0f75e6139e88", + "siteID": 15252, + "address": "31448 Schneider Points", + "latitude": 57.347, + "longitude": -133.193, + "lastUpdated": "2013-12-09T09:23:23.529Z", + "city": "Elliottstead", + "region": "Kootenay", + "victoriaFile": "26250-20/7125", + "regionalFile": "N/A", + "parcelIDs": [ + 9775800, + 4210287, + 8654303, + 5815128, + 8887970 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "c8bd0657-1647-4266-93c0-4c5885776001", + "siteID": 19235, + "address": "4920 Karolann Oval", + "latitude": 51.5894, + "longitude": -124.1413, + "lastUpdated": "2020-06-14T14:38:00.105Z", + "city": "South Gerardomouth", + "region": "Mainland/Southwest", + "victoriaFile": "26250-20/16573", + "regionalFile": "N/A", + "parcelIDs": [ + 6249942, + 6300634, + 601016, + 7019432, + 2912938 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "fd4e2549-e67b-45a2-9059-201aec635332", + "siteID": 17801, + "address": "38722 Dana Grove", + "latitude": 52.6279, + "longitude": -132.3628, + "lastUpdated": "2015-04-28T18:49:46.298Z", + "city": "Streichfield", + "region": "Vancouver Island/Coast", + "victoriaFile": "26250-20/6337", + "regionalFile": "N/A", + "parcelIDs": [ + 3083209, + 3647472, + 4106064, + 6650364, + 4722135 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "f6ae6618-428a-412c-8442-da0949bf878e", + "siteID": 17334, + "address": "14431 Agustin Fort", + "latitude": 54.6952, + "longitude": -121.9922, + "lastUpdated": "2020-03-30T12:57:26.389Z", + "city": "Delfinaberg", + "region": "Thompson-Okanagan", + "victoriaFile": "26250-20/1292", + "regionalFile": "N/A", + "parcelIDs": [ + 4022890, + 1129464, + 6859347, + 684573, + 1092648 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "d9d40aef-d46e-4399-9f13-94e34f616ea5", + "siteID": 15856, + "address": "549 Luettgen Hills", + "latitude": 49.1504, + "longitude": -119.1815, + "lastUpdated": "2016-03-18T23:06:05.773Z", + "city": "Temple", + "region": " North Coast", + "victoriaFile": "26250-20/14284", + "regionalFile": "N/A", + "parcelIDs": [ + 9235024, + 5716403, + 5879901, + 6882440, + 7073003 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "36ab022a-2bc2-482f-aa3a-98cb946bde16", + "siteID": 20521, + "address": "737 Ike Streets", + "latitude": 57.7614, + "longitude": -131.8478, + "lastUpdated": "2021-09-06T18:57:21.220Z", + "city": "Cronincester", + "region": "Cariboo", + "victoriaFile": "26250-20/7636", + "regionalFile": "N/A", + "parcelIDs": [ + 7678587, + 2673860, + 8596125, + 7423355, + 438401 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "83a36d79-88db-4132-ac95-0307f1e6b0d3", + "siteID": 20179, + "address": "31973 Schinner Cape", + "latitude": 51.7178, + "longitude": -136.4066, + "lastUpdated": "2018-02-04T08:02:12.965Z", + "city": "Port Duaneborough", + "region": "Kootenay", + "victoriaFile": "26250-20/9320", + "regionalFile": "N/A", + "parcelIDs": [ + 4933341, + 6634833, + 9864007, + 3211123, + 1814857 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "76c1fd98-9767-44a2-8a99-69c40a34ba4d", + "siteID": 16724, + "address": "3681 Purdy Extension", + "latitude": 58.8466, + "longitude": -128.7757, + "lastUpdated": "2022-01-22T23:00:19.964Z", + "city": "Erinview", + "region": "Cariboo", + "victoriaFile": "26250-20/16095", + "regionalFile": "N/A", + "parcelIDs": [ + 8814631, + 3542389, + 1075778, + 3972862, + 9100726 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "03042a88-01f8-4817-8f4e-5c4c9f6280a6", + "siteID": 19320, + "address": "83149 Trantow Key", + "latitude": 54.3227, + "longitude": -136.9642, + "lastUpdated": "2014-07-07T09:05:50.885Z", + "city": "Johnsonstad", + "region": "Cariboo", + "victoriaFile": "26250-20/12539", + "regionalFile": "N/A", + "parcelIDs": [ + 9745853, + 613376, + 1761609, + 5281441, + 2521235 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "9e8d7696-f707-4b0a-b36a-13a809e4237c", + "siteID": 17111, + "address": "84639 Corkery Views", + "latitude": 50.4216, + "longitude": -130.9003, + "lastUpdated": "2013-10-13T00:43:51.864Z", + "city": "Buckridgefurt", + "region": "Vancouver Island/Coast", + "victoriaFile": "26250-20/6673", + "regionalFile": "N/A", + "parcelIDs": [ + 1584314, + 3983743, + 9457216, + 5382175, + 3895629 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "e2900bb3-386d-4fcb-8220-3642f5826bfc", + "siteID": 20466, + "address": "5969 Bogan Corners", + "latitude": 55.75, + "longitude": -129.2444, + "lastUpdated": "2014-04-15T05:04:49.072Z", + "city": "Lafayette", + "region": "Mainland/Southwest", + "victoriaFile": "26250-20/14878", + "regionalFile": "N/A", + "parcelIDs": [ + 4627607, + 2514586, + 1182451, + 7512823, + 9908374 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "446bf2de-1fc7-4833-97ca-1266d5c256f6", + "siteID": 17546, + "address": "65396 Kaden Mission", + "latitude": 57.9188, + "longitude": -119.2846, + "lastUpdated": "2021-08-09T16:56:37.094Z", + "city": "South Alysaside", + "region": "Mainland/Southwest", + "victoriaFile": "26250-20/6808", + "regionalFile": "N/A", + "parcelIDs": [ + 7450388, + 3301013, + 3075369, + 6021573, + 6637670 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "5e9e17fa-0098-4cc4-ab6c-df1e8059ac69", + "siteID": 19878, + "address": "966 Fay Loop", + "latitude": 58.2559, + "longitude": -123.8013, + "lastUpdated": "2013-12-26T04:49:33.381Z", + "city": "Fort Hiltonbury", + "region": "Kootenay", + "victoriaFile": "26250-20/10614", + "regionalFile": "N/A", + "parcelIDs": [ + 1213208, + 6248852, + 2021057, + 2620037, + 7570461 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "c5aed155-08cd-4bcd-a1a2-b666fb0b54d8", + "siteID": 19847, + "address": "573 Aric Point", + "latitude": 53.8744, + "longitude": -131.9153, + "lastUpdated": "2021-12-19T11:39:29.899Z", + "city": "Kundeberg", + "region": "Thompson-Okanagan", + "victoriaFile": "26250-20/15932", + "regionalFile": "N/A", + "parcelIDs": [ + 4712904, + 4361718, + 2834899, + 9036700, + 4364497 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "3c1c9e11-40b7-4e5c-b07d-f6d3523f54f7", + "siteID": 19128, + "address": "146 Corwin Course", + "latitude": 58.238, + "longitude": -136.2578, + "lastUpdated": "2017-01-26T17:46:00.095Z", + "city": "Amieton", + "region": "Thompson-Okanagan", + "victoriaFile": "26250-20/6877", + "regionalFile": "N/A", + "parcelIDs": [ + 3287199, + 1313462, + 6089599, + 2669870, + 5305629 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "002bd53e-65c3-430a-ab1b-8d6fdcd9a90a", + "siteID": 16304, + "address": "4315 Heidenreich Pine", + "latitude": 50.5059, + "longitude": -119.3998, + "lastUpdated": "2016-03-04T18:04:17.892Z", + "city": "Lake Marlee", + "region": "Vancouver Island/Coast", + "victoriaFile": "26250-20/1118", + "regionalFile": "N/A", + "parcelIDs": [ + 3208949, + 4045018, + 3649250, + 2110653, + 1733116 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "f3cff729-17a0-46cf-90b5-af0d0266f381", + "siteID": 16519, + "address": "1056 Sasha Turnpike", + "latitude": 49.5157, + "longitude": -120.0555, + "lastUpdated": "2021-03-05T03:10:40.443Z", + "city": "South Ada", + "region": "Cariboo", + "victoriaFile": "26250-20/9639", + "regionalFile": "N/A", + "parcelIDs": [ + 1332700, + 7197441, + 5008777, + 2145774, + 4455038 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "7e9dc57c-8fc1-4854-ae80-b85f6fcf31c9", + "siteID": 20670, + "address": "880 Kirlin Overpass", + "latitude": 53.5594, + "longitude": -137.7283, + "lastUpdated": "2014-04-27T06:30:44.827Z", + "city": "Jarrodburgh", + "region": "Kootenay", + "victoriaFile": "26250-20/8570", + "regionalFile": "N/A", + "parcelIDs": [ + 378294, + 8841548, + 7553891, + 3048782, + 8809026 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "ea52ca10-ce3e-4a4a-898d-f1843ecc084e", + "siteID": 19330, + "address": "9510 Larkin Lodge", + "latitude": 50.6583, + "longitude": -126.7322, + "lastUpdated": "2022-02-03T04:57:54.513Z", + "city": "Kansas City", + "region": "Vancouver Island/Coast", + "victoriaFile": "26250-20/11285", + "regionalFile": "N/A", + "parcelIDs": [ + 3311870, + 2018434, + 185216, + 2402009, + 669365 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "dfcb34d5-7f23-46ab-9006-512d4df18a86", + "siteID": 16304, + "address": "1477 Oswaldo Turnpike", + "latitude": 57.2789, + "longitude": -131.4739, + "lastUpdated": "2014-02-27T15:49:30.015Z", + "city": "Ponce", + "region": "Thompson-Okanagan", + "victoriaFile": "26250-20/12337", + "regionalFile": "N/A", + "parcelIDs": [ + 4270459, + 1575155, + 5182315, + 9907474, + 5277520 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "042f7393-7a12-4621-ad16-77790f32be7a", + "siteID": 19531, + "address": "5939 Titus Key", + "latitude": 49.7985, + "longitude": -132.5165, + "lastUpdated": "2023-04-13T20:53:16.482Z", + "city": "Fishers", + "region": "Mainland/Southwest", + "victoriaFile": "26250-20/4730", + "regionalFile": "N/A", + "parcelIDs": [ + 9926709, + 646874, + 592289, + 8182941, + 4540362 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "5ff75741-afb5-437f-ab09-788b1f575249", + "siteID": 15304, + "address": "9427 Tromp Square", + "latitude": 57.6236, + "longitude": -124.4773, + "lastUpdated": "2021-03-28T11:37:21.924Z", + "city": "Carson City", + "region": " North Coast", + "victoriaFile": "26250-20/15078", + "regionalFile": "N/A", + "parcelIDs": [ + 3556673, + 686467, + 4176010, + 9009706, + 2370347 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "b5278fc8-0b14-4807-8fe8-b9d778f10ca8", + "siteID": 20445, + "address": "1079 Bashirian Expressway", + "latitude": 49.6165, + "longitude": -120.9592, + "lastUpdated": "2023-01-06T09:49:25.376Z", + "city": "Danechester", + "region": "Vancouver Island/Coast", + "victoriaFile": "26250-20/10441", + "regionalFile": "N/A", + "parcelIDs": [ + 165436, + 1441171, + 2850602, + 9163311, + 4413729 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "f482bd1b-6a81-4d61-9580-8231ed5dc6c7", + "siteID": 15699, + "address": "12374 Cletus Gateway", + "latitude": 54.202, + "longitude": -134.4244, + "lastUpdated": "2020-04-22T01:38:44.654Z", + "city": "East Arnoldoburgh", + "region": "Thompson-Okanagan", + "victoriaFile": "26250-20/13532", + "regionalFile": "N/A", + "parcelIDs": [ + 6385430, + 4334563, + 5040107, + 9303039, + 4115082 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "664deabd-4871-4210-9742-86ea92cae90b", + "siteID": 17497, + "address": "510 Ray Parkways", + "latitude": 55.0512, + "longitude": -128.796, + "lastUpdated": "2019-09-03T18:34:14.243Z", + "city": "Pfannerstillcester", + "region": "Vancouver Island/Coast", + "victoriaFile": "26250-20/1126", + "regionalFile": "N/A", + "parcelIDs": [ + 5160398, + 9046522, + 1741934, + 3769044, + 1140383 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "90fbb7ff-74ab-48be-b368-61656c9704a9", + "siteID": 17525, + "address": "66060 Dorris Forge", + "latitude": 48.6092, + "longitude": -128.7878, + "lastUpdated": "2017-07-28T02:38:26.873Z", + "city": "Fort Myers", + "region": "Vancouver Island/Coast", + "victoriaFile": "26250-20/1828", + "regionalFile": "N/A", + "parcelIDs": [ + 9131960, + 7188833, + 1357154, + 5295387, + 7185548 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "3a19e43e-5798-4986-b403-da5f7432bda0", + "siteID": 15906, + "address": "6923 Hand Crossing", + "latitude": 48.9589, + "longitude": -130.834, + "lastUpdated": "2015-10-08T05:34:18.588Z", + "city": "Lake Maximillian", + "region": "Kootenay", + "victoriaFile": "26250-20/9160", + "regionalFile": "N/A", + "parcelIDs": [ + 1474678, + 1711060, + 5187657, + 4503102, + 5073901 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "5ee173ce-94ab-41dd-b8b9-639542349a60", + "siteID": 17509, + "address": "77726 Wunsch Point", + "latitude": 55.8681, + "longitude": -122.1708, + "lastUpdated": "2020-05-13T16:34:08.104Z", + "city": "Port Wainostad", + "region": " North Coast", + "victoriaFile": "26250-20/17674", + "regionalFile": "N/A", + "parcelIDs": [ + 2395115, + 8432924, + 2388595, + 2045546, + 2551986 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "f73b5c1e-f9b8-47ce-a5d4-b6b31f5b6c0a", + "siteID": 16000, + "address": "276 Wolff Falls", + "latitude": 57.1531, + "longitude": -119.2439, + "lastUpdated": "2018-08-22T00:53:37.374Z", + "city": "Ottilieview", + "region": "Thompson-Okanagan", + "victoriaFile": "26250-20/12573", + "regionalFile": "N/A", + "parcelIDs": [ + 4061398, + 7047599, + 8833406, + 4748892, + 7808094 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "61b92157-ecc7-444b-be76-a76c1b662788", + "siteID": 16598, + "address": "9353 Reynolds Skyway", + "latitude": 52.8099, + "longitude": -133.5382, + "lastUpdated": "2020-03-10T17:35:38.162Z", + "city": "Lake Princessworth", + "region": "Cariboo", + "victoriaFile": "26250-20/18147", + "regionalFile": "N/A", + "parcelIDs": [ + 9023651, + 8766182, + 9825852, + 9095388, + 792726 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "38e80d64-9af7-4d41-bcd8-77e377ac9bc7", + "siteID": 15803, + "address": "478 Ullrich Inlet", + "latitude": 57.8551, + "longitude": -131.4576, + "lastUpdated": "2015-02-10T07:41:51.534Z", + "city": "Marvinmouth", + "region": "Cariboo", + "victoriaFile": "26250-20/17208", + "regionalFile": "N/A", + "parcelIDs": [ + 4734015, + 9525562, + 5968887, + 5413110, + 6961034 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "81c440df-f706-41fb-bc48-da4d764f84e4", + "siteID": 15782, + "address": "49104 Antonette Circles", + "latitude": 49.9872, + "longitude": -124.4684, + "lastUpdated": "2020-03-11T23:41:37.270Z", + "city": "Bradenton", + "region": "Cariboo", + "victoriaFile": "26250-20/2592", + "regionalFile": "N/A", + "parcelIDs": [ + 5147888, + 1541851, + 209545, + 9773916, + 4813760 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "e517caa2-8723-4060-835b-d21fee1a07dc", + "siteID": 15614, + "address": "71308 Bennett Causeway", + "latitude": 55.2776, + "longitude": -118.0778, + "lastUpdated": "2019-02-09T00:53:16.690Z", + "city": "West Karlie", + "region": "Vancouver Island/Coast", + "victoriaFile": "26250-20/7860", + "regionalFile": "N/A", + "parcelIDs": [ + 3567376, + 3229977, + 716878, + 8171977, + 3106214 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "4fc0ab91-d830-4840-97cb-3cc46529ee49", + "siteID": 20932, + "address": "67766 Alvina Ford", + "latitude": 53.8737, + "longitude": -122.4922, + "lastUpdated": "2015-10-25T16:27:40.790Z", + "city": "Port Lexus", + "region": "Kootenay", + "victoriaFile": "26250-20/10293", + "regionalFile": "N/A", + "parcelIDs": [ + 8551128, + 7136615, + 2936662, + 8133630, + 1957203 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "920cd6dd-4a2a-486f-8a89-aa432432bb0d", + "siteID": 20620, + "address": "15303 Schmeler Loop", + "latitude": 48.7758, + "longitude": -122.982, + "lastUpdated": "2018-07-05T14:53:16.490Z", + "city": "Watsicaberg", + "region": "Vancouver Island/Coast", + "victoriaFile": "26250-20/10927", + "regionalFile": "N/A", + "parcelIDs": [ + 8271306, + 7856346, + 7298995, + 1574971, + 1272324 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "3d2e4606-e728-4dd2-b091-5be65285b3ef", + "siteID": 17658, + "address": "6594 Piper Freeway", + "latitude": 48.9194, + "longitude": -130.4873, + "lastUpdated": "2018-03-15T18:18:26.764Z", + "city": "Fort Andrew", + "region": "Cariboo", + "victoriaFile": "26250-20/18369", + "regionalFile": "N/A", + "parcelIDs": [ + 8588135, + 7090866, + 7910747, + 3005749, + 1774545 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "b272df09-e979-48da-8ce1-9b3f8faf2976", + "siteID": 17658, + "address": "302 Jevon Vista", + "latitude": 54.0788, + "longitude": -119.3456, + "lastUpdated": "2016-07-17T20:44:42.336Z", + "city": "Palatine", + "region": "Cariboo", + "victoriaFile": "26250-20/13471", + "regionalFile": "N/A", + "parcelIDs": [ + 5557405, + 4938341, + 7855862, + 762299, + 9270247 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "db4d15c6-1a29-4197-b9d1-c830979d2f2f", + "siteID": 15600, + "address": "94131 Jakob Lights", + "latitude": 50.79, + "longitude": -130.914, + "lastUpdated": "2015-08-22T15:15:55.770Z", + "city": "Ebertfurt", + "region": "Kootenay", + "victoriaFile": "26250-20/11887", + "regionalFile": "N/A", + "parcelIDs": [ + 8122695, + 7056085, + 7968218, + 8178894, + 3674089 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "c87a869b-f93b-46d2-9626-86aa192bbad8", + "siteID": 20730, + "address": "347 Alysha Point", + "latitude": 52.1605, + "longitude": -120.5831, + "lastUpdated": "2017-06-12T14:33:45.760Z", + "city": "Riceville", + "region": "Mainland/Southwest", + "victoriaFile": "26250-20/16408", + "regionalFile": "N/A", + "parcelIDs": [ + 2339651, + 9566597, + 4526822, + 4550090, + 538708 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "64a65379-7301-4319-86f7-8b4845bf76d1", + "siteID": 20109, + "address": "70155 Krajcik Creek", + "latitude": 49.3925, + "longitude": -118.7557, + "lastUpdated": "2014-12-17T20:59:41.527Z", + "city": "New Ethylstead", + "region": "Cariboo", + "victoriaFile": "26250-20/2792", + "regionalFile": "N/A", + "parcelIDs": [ + 9327840, + 3768655, + 2115750, + 4203488, + 4327509 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "80184ec8-8b4d-4fc5-bd20-45e1ddb6e08f", + "siteID": 17992, + "address": "9560 Giuseppe Ridge", + "latitude": 50.552, + "longitude": -121.355, + "lastUpdated": "2016-04-13T03:05:02.000Z", + "city": "Donnellyborough", + "region": "Vancouver Island/Coast", + "victoriaFile": "26250-20/15681", + "regionalFile": "N/A", + "parcelIDs": [ + 2563914, + 540789, + 7646521, + 9026434, + 3049901 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "728f36a5-107b-4fe2-a782-b57764c7c804", + "siteID": 19057, + "address": "9728 Stephen Rest", + "latitude": 50.8298, + "longitude": -127.8572, + "lastUpdated": "2014-04-04T00:15:58.539Z", + "city": "North Emoryport", + "region": "Thompson-Okanagan", + "victoriaFile": "26250-20/11488", + "regionalFile": "N/A", + "parcelIDs": [ + 2775605, + 8948012, + 7902084, + 4859872, + 2169709 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "41269a3a-c5c0-4f87-a264-6d6572eb20d4", + "siteID": 15982, + "address": "52857 Vincenzo Rapids", + "latitude": 55.0025, + "longitude": -120.5985, + "lastUpdated": "2016-07-10T07:43:47.238Z", + "city": "Charleston", + "region": "Cariboo", + "victoriaFile": "26250-20/13101", + "regionalFile": "N/A", + "parcelIDs": [ + 610765, + 3673937, + 5102833, + 731856, + 4683592 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "607624d5-904b-4f62-a74c-7787d4da8a7f", + "siteID": 17937, + "address": "542 McCullough Centers", + "latitude": 48.5107, + "longitude": -121.5397, + "lastUpdated": "2015-06-29T00:20:46.221Z", + "city": "Lake Elian", + "region": "Kootenay", + "victoriaFile": "26250-20/2544", + "regionalFile": "N/A", + "parcelIDs": [ + 1235039, + 4011238, + 9073929, + 2842458, + 8532858 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "fbbc91dd-1758-44ee-8c43-7e27ba675161", + "siteID": 15201, + "address": "472 Enid Prairie", + "latitude": 58.9526, + "longitude": -138.2823, + "lastUpdated": "2023-06-14T11:46:47.597Z", + "city": "Bertastead", + "region": "Kootenay", + "victoriaFile": "26250-20/9479", + "regionalFile": "N/A", + "parcelIDs": [ + 8963714, + 6306711, + 9730226, + 2532797, + 6537393 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "acd6c770-9052-41c6-976e-a2b8c48ba5cc", + "siteID": 15410, + "address": "198 Collins Stravenue", + "latitude": 56.5591, + "longitude": -133.3686, + "lastUpdated": "2017-05-03T22:23:56.700Z", + "city": "New Albinachester", + "region": "Thompson-Okanagan", + "victoriaFile": "26250-20/8514", + "regionalFile": "N/A", + "parcelIDs": [ + 7916194, + 8433815, + 1189464, + 9563727, + 3303683 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "dfa76608-42a5-4d37-9ba9-41de90f59cfe", + "siteID": 16702, + "address": "739 Kylee Crest", + "latitude": 57.7917, + "longitude": -128.3007, + "lastUpdated": "2021-09-02T21:38:49.014Z", + "city": "Davie", + "region": " North Coast", + "victoriaFile": "26250-20/12607", + "regionalFile": "N/A", + "parcelIDs": [ + 1619751, + 4597449, + 8947042, + 7119724, + 657399 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" + }, + { + "uuid": "174acd57-d315-4204-a233-22694e3543c9", + "siteID": 19120, + "address": "20836 Katelin Mountains", + "latitude": 53.7498, + "longitude": -136.4675, + "lastUpdated": "2019-06-25T21:20:00.243Z", + "city": "New Nicholausfort", + "region": "Mainland/Southwest", + "victoriaFile": "26250-20/14252", + "regionalFile": "N/A", + "parcelIDs": [ + 6767317, + 362069, + 5167540, + 1769988, + 7946999 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013" } ] \ No newline at end of file From 5b5089b4792d37f50a723f98482d60683825e728 Mon Sep 17 00:00:00 2001 From: Adam Coard Date: Mon, 25 Sep 2023 12:06:14 -0700 Subject: [PATCH 055/194] Site details rows --- .../src/pages/site-details.tsx | 57 ++++++++++++++++++- 1 file changed, 55 insertions(+), 2 deletions(-) diff --git a/frontend/site-search-frontend/src/pages/site-details.tsx b/frontend/site-search-frontend/src/pages/site-details.tsx index 470792e4..772f96aa 100644 --- a/frontend/site-search-frontend/src/pages/site-details.tsx +++ b/frontend/site-search-frontend/src/pages/site-details.tsx @@ -25,7 +25,7 @@ export default function SiteDetailsPage() {
- {site.address} + {site.siteID} - {site.address}
@@ -37,7 +37,60 @@ export default function SiteDetailsPage() {

Site Location

- {site.siteID} +
+
Site ID
+
{site.siteID}
+
+ {/* {site.siteID} + {site.victoriaFile} */} + + +
+
Victoria File
+
{site.victoriaFile}
+
+ +
+
Victoria File
+
{site.victoriaFile}
+
+ +
+
Regional File
+
{site.regionalFile}
+
+ +
+
Address File
+
{site.address}
+
+ +
+
Region
+
{site.region}
+
+ +
+
Latitude
+
{site.latitude}
+
+ +
+
Longitude
+
{site.longitude}
+
+ + + +
+
Parcel IDs
+
{site.victoriaFile}
+
+ +
+
Location Description
+
{site.locationDescription}
+
From 61c21969aa3f11915eaef16c5b56d050662493b5 Mon Sep 17 00:00:00 2001 From: Adam Coard Date: Mon, 25 Sep 2023 12:36:07 -0700 Subject: [PATCH 056/194] Basic css styling of site details top part of page working, non responsive --- frontend/site-search-frontend/src/index.css | 1 + .../src/pages/site-details.module.css | 33 ++++++++++++++ .../src/pages/site-details.tsx | 44 ++++++++----------- 3 files changed, 53 insertions(+), 25 deletions(-) diff --git a/frontend/site-search-frontend/src/index.css b/frontend/site-search-frontend/src/index.css index 7ed5d56c..6721126f 100644 --- a/frontend/site-search-frontend/src/index.css +++ b/frontend/site-search-frontend/src/index.css @@ -3,6 +3,7 @@ :root { --main-gray: #EDEDED; --dark-gray: #717171; + --header-gray: #a8a8a8; --bs-blue: #0d6efd; diff --git a/frontend/site-search-frontend/src/pages/site-details.module.css b/frontend/site-search-frontend/src/pages/site-details.module.css index bd95758b..2d252860 100644 --- a/frontend/site-search-frontend/src/pages/site-details.module.css +++ b/frontend/site-search-frontend/src/pages/site-details.module.css @@ -1,3 +1,36 @@ .metadata { background-color: var(--main-gray); +} + +.metadataGrid { + display: grid; + /* grid-template-columns: repeat(auto-fill, minmax(400px, 1fr)); */ + /* grid-template-columns: repeat(12, minmax(400px, 1fr)); */ + grid-template-columns: repeat(auto-fill, minmax(175px, 1fr)); + grid-gap: 20px; +} + +.metadataGridItem { + border: 1px solid black; + border-radius: 3px; + grid-column: span 2; +} + +.metadataGridItem > div { + padding: 0 1rem; +} + +.gridFullwidth { + grid-column: 1 / span 6 !important; +} + +.gridHalfWidth { + grid-column: span 1; +} + + + +.formLabel { + font-weight: bolder; + background-color: var(--header-gray); } \ No newline at end of file diff --git a/frontend/site-search-frontend/src/pages/site-details.tsx b/frontend/site-search-frontend/src/pages/site-details.tsx index 772f96aa..2b1f64b5 100644 --- a/frontend/site-search-frontend/src/pages/site-details.tsx +++ b/frontend/site-search-frontend/src/pages/site-details.tsx @@ -36,59 +36,53 @@ export default function SiteDetailsPage() {

Site Location

-
-
-
Site ID
+
+
+
Site ID
{site.siteID}
{/* {site.siteID} {site.victoriaFile} */} - -
-
Victoria File
-
{site.victoriaFile}
-
- -
-
Victoria File
+
+
Victoria File
{site.victoriaFile}
-
-
Regional File
+
+
Regional File
{site.regionalFile}
-
-
Address File
+
+
Address File
{site.address}
-
-
Region
+
+
Region
{site.region}
-
-
Latitude
+
+
Latitude
{site.latitude}
-
-
Longitude
+
+
Longitude
{site.longitude}
-
-
Parcel IDs
+
+
Parcel IDs
{site.victoriaFile}
-
-
Location Description
+
+
Location Description
{site.locationDescription}
From 08da721eb8a238e6277f41bec34d82f16bc5ebf4 Mon Sep 17 00:00:00 2001 From: Adam Coard Date: Mon, 25 Sep 2023 12:52:03 -0700 Subject: [PATCH 057/194] Fix npm build issues --- frontend/site-search-frontend/src/api/sites.ts | 3 ++- .../src/features/selection/selection.ts | 10 ++++++---- .../src/features/simple-search/simple-search.ts | 3 ++- .../src/pages/site-details.module.css | 1 + 4 files changed, 11 insertions(+), 6 deletions(-) diff --git a/frontend/site-search-frontend/src/api/sites.ts b/frontend/site-search-frontend/src/api/sites.ts index db2857bc..a1fed7b1 100644 --- a/frontend/site-search-frontend/src/api/sites.ts +++ b/frontend/site-search-frontend/src/api/sites.ts @@ -5,7 +5,8 @@ export class Site { address: string; latitude: number; longitude: number; - lastUpdated: Date | string; + // lastUpdated: Date | string; + lastUpdated: Date; city: string; region: string; victoriaFile: string; diff --git a/frontend/site-search-frontend/src/features/selection/selection.ts b/frontend/site-search-frontend/src/features/selection/selection.ts index 1ee2d20f..fcddfad1 100644 --- a/frontend/site-search-frontend/src/features/selection/selection.ts +++ b/frontend/site-search-frontend/src/features/selection/selection.ts @@ -7,17 +7,19 @@ export interface SelectionState { } -export const selectionSlice = ({ +export const selectionSlice = createSlice({ name: 'selection', - initialState: [], + initialState: { + value: undefined, + }, reducers: { select: (state, action: PayloadAction) => { console.log('Selection reducer start:', {state, action}) - state.value = action.payload; + state.value = action.payload } } }); export const { select } = selectionSlice.actions; -export default selectionSlice.reducers; \ No newline at end of file +export default selectionSlice.reducer; \ No newline at end of file diff --git a/frontend/site-search-frontend/src/features/simple-search/simple-search.ts b/frontend/site-search-frontend/src/features/simple-search/simple-search.ts index c0a2054d..44601121 100644 --- a/frontend/site-search-frontend/src/features/simple-search/simple-search.ts +++ b/frontend/site-search-frontend/src/features/simple-search/simple-search.ts @@ -4,7 +4,8 @@ import siteDummyData from '@/scripts/dummy-data.sites.json'; import { Site } from '@/api/sites'; // Instantiate dummy data, e.g. turn strings into Date objects -const parsedDummyData = siteDummyData.map(siteData => new Site(siteData)) +// Use `as any` to get around fact that 'lastUpdated' is a string, not a date. +const parsedDummyData = siteDummyData.map(siteData => new Site((siteData as any))) export const siteSlice = createSlice({ diff --git a/frontend/site-search-frontend/src/pages/site-details.module.css b/frontend/site-search-frontend/src/pages/site-details.module.css index 2d252860..f6f32afc 100644 --- a/frontend/site-search-frontend/src/pages/site-details.module.css +++ b/frontend/site-search-frontend/src/pages/site-details.module.css @@ -1,5 +1,6 @@ .metadata { background-color: var(--main-gray); + padding: 20px; } .metadataGrid { From 0ee80b382e0a680b8bdebc77611927199d0aaf3b Mon Sep 17 00:00:00 2001 From: Adam Coard Date: Mon, 25 Sep 2023 16:33:52 -0700 Subject: [PATCH 058/194] Add child site details pages and nested router --- .../src/features/site-details/documents.tsx | 9 ++++++++ .../src/features/site-details/notations.tsx | 9 ++++++++ .../features/site-details/participants.tsx | 9 ++++++++ frontend/site-search-frontend/src/main.tsx | 19 ++++++++++++++- .../src/pages/site-details.module.css | 1 + .../src/pages/site-details.tsx | 23 +++++++++++++++++-- 6 files changed, 67 insertions(+), 3 deletions(-) create mode 100644 frontend/site-search-frontend/src/features/site-details/documents.tsx create mode 100644 frontend/site-search-frontend/src/features/site-details/notations.tsx create mode 100644 frontend/site-search-frontend/src/features/site-details/participants.tsx diff --git a/frontend/site-search-frontend/src/features/site-details/documents.tsx b/frontend/site-search-frontend/src/features/site-details/documents.tsx new file mode 100644 index 00000000..4ae88554 --- /dev/null +++ b/frontend/site-search-frontend/src/features/site-details/documents.tsx @@ -0,0 +1,9 @@ + +export default function Documents() { + + return ( +
+

Documents go here

+
+ ) +} \ No newline at end of file diff --git a/frontend/site-search-frontend/src/features/site-details/notations.tsx b/frontend/site-search-frontend/src/features/site-details/notations.tsx new file mode 100644 index 00000000..e91fdd4b --- /dev/null +++ b/frontend/site-search-frontend/src/features/site-details/notations.tsx @@ -0,0 +1,9 @@ + +export default function Notations() { + + return ( +
+

Notations go here

+
+ ) +} \ No newline at end of file diff --git a/frontend/site-search-frontend/src/features/site-details/participants.tsx b/frontend/site-search-frontend/src/features/site-details/participants.tsx new file mode 100644 index 00000000..38e4cf7d --- /dev/null +++ b/frontend/site-search-frontend/src/features/site-details/participants.tsx @@ -0,0 +1,9 @@ + +export default function Participants() { + + return ( +
+

Site Participants go here

+
+ ) +} \ No newline at end of file diff --git a/frontend/site-search-frontend/src/main.tsx b/frontend/site-search-frontend/src/main.tsx index 613b8f69..d0299cad 100644 --- a/frontend/site-search-frontend/src/main.tsx +++ b/frontend/site-search-frontend/src/main.tsx @@ -13,6 +13,9 @@ import store from './store.ts' import { Provider } from 'react-redux' import SiteDetailsPage from './pages/site-details.tsx'; import MapPage from './pages/map.tsx'; +import Notations from './features/site-details/notations.tsx'; +import Participants from './features/site-details/participants.tsx'; +import Documents from './features/site-details/documents.tsx'; const router = createBrowserRouter([ @@ -26,7 +29,21 @@ const router = createBrowserRouter([ }, { path: '/site/:siteID', - element: + element: , + children: [ + { + path: "notations", + element: + }, + { + path: "participants", + element: + }, + { + path: "documents", + element: + } + ] }, { path: '/map', diff --git a/frontend/site-search-frontend/src/pages/site-details.module.css b/frontend/site-search-frontend/src/pages/site-details.module.css index f6f32afc..9703a8b9 100644 --- a/frontend/site-search-frontend/src/pages/site-details.module.css +++ b/frontend/site-search-frontend/src/pages/site-details.module.css @@ -1,6 +1,7 @@ .metadata { background-color: var(--main-gray); padding: 20px; + margin-bottom: 20px; } .metadataGrid { diff --git a/frontend/site-search-frontend/src/pages/site-details.tsx b/frontend/site-search-frontend/src/pages/site-details.tsx index 2b1f64b5..4a09cfb5 100644 --- a/frontend/site-search-frontend/src/pages/site-details.tsx +++ b/frontend/site-search-frontend/src/pages/site-details.tsx @@ -1,9 +1,9 @@ import { Site } from "@/api/sites"; import Header from "@/components/Header" import { RootState } from "@/store"; -import { Button } from "react-bootstrap"; +import { Button, Nav } from "react-bootstrap"; import { useSelector } from "react-redux"; -import { useParams } from "react-router-dom"; +import { Link, Outlet, useParams } from "react-router-dom"; import styles from './site-details.module.css' import FlexRowItem from "@/components/FlexRowItem"; @@ -87,6 +87,25 @@ export default function SiteDetailsPage() {
+ + +
+ + +
From 7321c34beb80a3a02f98f98f94030385d7959caf Mon Sep 17 00:00:00 2001 From: Adam Coard Date: Mon, 25 Sep 2023 16:37:45 -0700 Subject: [PATCH 059/194] Add map panel opening on default selection --- .../src/features/map/MapDetailsPane.tsx | 7 ++++++- frontend/site-search-frontend/src/pages/map.tsx | 4 +--- 2 files changed, 7 insertions(+), 4 deletions(-) diff --git a/frontend/site-search-frontend/src/features/map/MapDetailsPane.tsx b/frontend/site-search-frontend/src/features/map/MapDetailsPane.tsx index d1aad4e9..422217a0 100644 --- a/frontend/site-search-frontend/src/features/map/MapDetailsPane.tsx +++ b/frontend/site-search-frontend/src/features/map/MapDetailsPane.tsx @@ -3,6 +3,7 @@ import CloseButton from 'react-bootstrap/esm/CloseButton'; import Button from 'react-bootstrap/Button'; import { Site } from '@/api/sites'; import { MouseEventHandler } from 'react'; +import { Link } from 'react-router-dom'; export default function MapDetailsPane({site, onClose}: {site: Site, onClose: MouseEventHandler}) { @@ -54,7 +55,11 @@ export default function MapDetailsPane({site, onClose}: {site: Site, onClose: Mo
N/A
- + + +
diff --git a/frontend/site-search-frontend/src/pages/map.tsx b/frontend/site-search-frontend/src/pages/map.tsx index 33c90071..855ba493 100644 --- a/frontend/site-search-frontend/src/pages/map.tsx +++ b/frontend/site-search-frontend/src/pages/map.tsx @@ -38,9 +38,7 @@ export default function MapPage() { if (site) { focusOnSite(site); setZoom(14); - console.log('Map useEffect, searchParams', siteIDParam, site) - console.log('set location: [site.latitude, site.longitude]', [site.latitude, site.longitude]) - + setSelectedSite(site); } }, [searchParams]) From 0011e672dd45e9f11daa1ec0120486af1556848e Mon Sep 17 00:00:00 2001 From: Adam Coard Date: Mon, 25 Sep 2023 16:40:06 -0700 Subject: [PATCH 060/194] Site details back button basics --- frontend/site-search-frontend/src/pages/site-details.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/site-search-frontend/src/pages/site-details.tsx b/frontend/site-search-frontend/src/pages/site-details.tsx index 4a09cfb5..6e68207f 100644 --- a/frontend/site-search-frontend/src/pages/site-details.tsx +++ b/frontend/site-search-frontend/src/pages/site-details.tsx @@ -24,7 +24,7 @@ export default function SiteDetailsPage() {
- + {site.siteID} - {site.address}
From 6dfd7b4a03edec10bef8e82179dc91795973f860 Mon Sep 17 00:00:00 2001 From: Adam Coard Date: Mon, 25 Sep 2023 16:44:32 -0700 Subject: [PATCH 061/194] fix: Loading map view directly caused null error --- .../site-search-frontend/src/features/map/MapDetailsPane.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/site-search-frontend/src/features/map/MapDetailsPane.tsx b/frontend/site-search-frontend/src/features/map/MapDetailsPane.tsx index 422217a0..5ab2ce43 100644 --- a/frontend/site-search-frontend/src/features/map/MapDetailsPane.tsx +++ b/frontend/site-search-frontend/src/features/map/MapDetailsPane.tsx @@ -55,7 +55,7 @@ export default function MapDetailsPane({site, onClose}: {site: Site, onClose: Mo
N/A
- + From 24f2bd2a5ccdb575537ac581fc476fbb7bf7e482 Mon Sep 17 00:00:00 2001 From: Adam Coard Date: Mon, 25 Sep 2023 18:00:20 -0700 Subject: [PATCH 062/194] Add @types/node to fix docker build issues --- frontend/site-search-frontend/package-lock.json | 13 +++++++++++++ frontend/site-search-frontend/package.json | 1 + 2 files changed, 14 insertions(+) diff --git a/frontend/site-search-frontend/package-lock.json b/frontend/site-search-frontend/package-lock.json index d22ca2dc..a5fb4555 100644 --- a/frontend/site-search-frontend/package-lock.json +++ b/frontend/site-search-frontend/package-lock.json @@ -21,6 +21,7 @@ "devDependencies": { "@faker-js/faker": "^8.0.2", "@types/leaflet": "^1.9.4", + "@types/node": "^20.7.0", "@types/react": "^18.2.15", "@types/react-bootstrap": "^0.32.32", "@types/react-dom": "^18.2.7", @@ -891,6 +892,12 @@ "@types/geojson": "*" } }, + "node_modules/@types/node": { + "version": "20.7.0", + "resolved": "https://registry.npmjs.org/@types/node/-/node-20.7.0.tgz", + "integrity": "sha512-zI22/pJW2wUZOVyguFaUL1HABdmSVxpXrzIqkjsHmyUjNhPoWM1CKfvVuXfetHhIok4RY573cqS0mZ1SJEnoTg==", + "dev": true + }, "node_modules/@types/prop-types": { "version": "15.7.5", "resolved": "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.5.tgz", @@ -3387,6 +3394,12 @@ "@types/geojson": "*" } }, + "@types/node": { + "version": "20.7.0", + "resolved": "https://registry.npmjs.org/@types/node/-/node-20.7.0.tgz", + "integrity": "sha512-zI22/pJW2wUZOVyguFaUL1HABdmSVxpXrzIqkjsHmyUjNhPoWM1CKfvVuXfetHhIok4RY573cqS0mZ1SJEnoTg==", + "dev": true + }, "@types/prop-types": { "version": "15.7.5", "resolved": "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.5.tgz", diff --git a/frontend/site-search-frontend/package.json b/frontend/site-search-frontend/package.json index 9ce5a499..cc6fc6bd 100644 --- a/frontend/site-search-frontend/package.json +++ b/frontend/site-search-frontend/package.json @@ -23,6 +23,7 @@ "devDependencies": { "@faker-js/faker": "^8.0.2", "@types/leaflet": "^1.9.4", + "@types/node": "^20.7.0", "@types/react": "^18.2.15", "@types/react-bootstrap": "^0.32.32", "@types/react-dom": "^18.2.7", From 3c856a3f008f2627e9c8bf4c04c1620abe6a1aff Mon Sep 17 00:00:00 2001 From: Adam Coard Date: Mon, 25 Sep 2023 18:32:37 -0700 Subject: [PATCH 063/194] Refactor to use SiteGridItem --- .../src/components/FlexRowItem.tsx | 10 -- .../features/site-details/SiteGridItem.tsx | 14 +++ .../site-search-frontend/src/pages/map.tsx | 11 +- .../src/pages/site-details.module.css | 1 + .../src/pages/site-details.tsx | 108 +++++++----------- 5 files changed, 65 insertions(+), 79 deletions(-) delete mode 100644 frontend/site-search-frontend/src/components/FlexRowItem.tsx create mode 100644 frontend/site-search-frontend/src/features/site-details/SiteGridItem.tsx diff --git a/frontend/site-search-frontend/src/components/FlexRowItem.tsx b/frontend/site-search-frontend/src/components/FlexRowItem.tsx deleted file mode 100644 index 8f2acc93..00000000 --- a/frontend/site-search-frontend/src/components/FlexRowItem.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import { Site } from "@/api/sites"; - -export default function FlexRowItem( {label, children}) { - return ( -
-
{label}
-
{children}
-
- ) -} \ No newline at end of file diff --git a/frontend/site-search-frontend/src/features/site-details/SiteGridItem.tsx b/frontend/site-search-frontend/src/features/site-details/SiteGridItem.tsx new file mode 100644 index 00000000..346aa2bd --- /dev/null +++ b/frontend/site-search-frontend/src/features/site-details/SiteGridItem.tsx @@ -0,0 +1,14 @@ +import { Site } from "@/api/sites"; +import Form from 'react-bootstrap/Form'; +import styles from '@/pages/site-details.module.css' + +export default function SiteGridItem( {label, value, extraClasses = '', editMode}) { + // TODO: Get editMode from redux. + + return ( +
+
{label}
+ +
+ ) +} \ No newline at end of file diff --git a/frontend/site-search-frontend/src/pages/map.tsx b/frontend/site-search-frontend/src/pages/map.tsx index 855ba493..6165107c 100644 --- a/frontend/site-search-frontend/src/pages/map.tsx +++ b/frontend/site-search-frontend/src/pages/map.tsx @@ -64,6 +64,10 @@ export default function MapPage() { // setZoom(10) } + function onLayerClick(e) { + console.log('onLayerClick', { e }) + } + return ( <>
@@ -116,8 +120,13 @@ export default function MapPage() { diff --git a/frontend/site-search-frontend/src/pages/site-details.module.css b/frontend/site-search-frontend/src/pages/site-details.module.css index 9703a8b9..24c9fb87 100644 --- a/frontend/site-search-frontend/src/pages/site-details.module.css +++ b/frontend/site-search-frontend/src/pages/site-details.module.css @@ -2,6 +2,7 @@ background-color: var(--main-gray); padding: 20px; margin-bottom: 20px; + margin-top: 20px; } .metadataGrid { diff --git a/frontend/site-search-frontend/src/pages/site-details.tsx b/frontend/site-search-frontend/src/pages/site-details.tsx index 6e68207f..f0583c43 100644 --- a/frontend/site-search-frontend/src/pages/site-details.tsx +++ b/frontend/site-search-frontend/src/pages/site-details.tsx @@ -5,91 +5,63 @@ import { Button, Nav } from "react-bootstrap"; import { useSelector } from "react-redux"; import { Link, Outlet, useParams } from "react-router-dom"; import styles from './site-details.module.css' -import FlexRowItem from "@/components/FlexRowItem"; +import SiteGridItem from "@/features/site-details/SiteGridItem"; +import { useState } from "react"; export default function SiteDetailsPage() { const { siteID } = useParams(); + + // Todo: Move 'Edit Mode' to redux, same with staff role stuff. + const [editMode, setEditMode] = useState(false); const siteIDNum = parseInt(siteID); const site: Site = useSelector((state: RootState) => state.site.value.find(searchedSite => searchedSite.siteID === siteIDNum)); - // console.log('siteID', {siteID, site, use: useParams()}); - + function toggleEdit(){ + setEditMode(!editMode) + } return ( <> -
-
-

Site Details- Incomplete

- -
-
- - {site.siteID} - {site.address} -
-
- - -
-
- -
-

Site Location

- -
-
-
Site ID
-
{site.siteID}
-
- {/* {site.siteID} - {site.victoriaFile} */} - -
-
Victoria File
-
{site.victoriaFile}
-
- -
-
Regional File
-
{site.regionalFile}
-
- -
-
Address File
-
{site.address}
-
+
+
-
-
Region
-
{site.region}
-
- -
-
Latitude
-
{site.latitude}
-
- -
-
Longitude
-
{site.longitude}
+
+
+ + {site.siteID} - {site.address}
+ {!editMode &&
+ + +
} + {editMode &&
+ Editting... + +
} +
+
+

Site Location

+
+ + + + + -
-
Parcel IDs
-
{site.victoriaFile}
-
+ + -
-
Location Description
-
{site.locationDescription}
+ + +
-
-
+
-
- -
+
+ +
) } \ No newline at end of file From 37193ba9ad0a73e79009d9f5f8ed98d71884aedf Mon Sep 17 00:00:00 2001 From: Adam Coard Date: Tue, 26 Sep 2023 09:35:55 -0700 Subject: [PATCH 064/194] Stub out all site details sub pages --- .../features/site-details/activity-log.tsx | 9 +++++++ .../site-details/associated-sites.tsx | 9 +++++++ .../site-details/parcel-description.tsx | 9 +++++++ .../features/site-details/site-profile.tsx | 9 +++++++ .../site-details/suspect-land-uses.tsx | 9 +++++++ frontend/site-search-frontend/src/main.tsx | 25 +++++++++++++++++++ .../site-search-frontend/src/pages/map.tsx | 4 +++ .../src/pages/site-details.tsx | 19 ++++++++++++-- 8 files changed, 91 insertions(+), 2 deletions(-) create mode 100644 frontend/site-search-frontend/src/features/site-details/activity-log.tsx create mode 100644 frontend/site-search-frontend/src/features/site-details/associated-sites.tsx create mode 100644 frontend/site-search-frontend/src/features/site-details/parcel-description.tsx create mode 100644 frontend/site-search-frontend/src/features/site-details/site-profile.tsx create mode 100644 frontend/site-search-frontend/src/features/site-details/suspect-land-uses.tsx diff --git a/frontend/site-search-frontend/src/features/site-details/activity-log.tsx b/frontend/site-search-frontend/src/features/site-details/activity-log.tsx new file mode 100644 index 00000000..87ead04b --- /dev/null +++ b/frontend/site-search-frontend/src/features/site-details/activity-log.tsx @@ -0,0 +1,9 @@ + +export default function ActivityLog() { + + return ( +
+

Activity Log go here

+
+ ) +} \ No newline at end of file diff --git a/frontend/site-search-frontend/src/features/site-details/associated-sites.tsx b/frontend/site-search-frontend/src/features/site-details/associated-sites.tsx new file mode 100644 index 00000000..eb992654 --- /dev/null +++ b/frontend/site-search-frontend/src/features/site-details/associated-sites.tsx @@ -0,0 +1,9 @@ + +export default function AssociatedSites() { + + return ( +
+

Associated Sites go here

+
+ ) +} \ No newline at end of file diff --git a/frontend/site-search-frontend/src/features/site-details/parcel-description.tsx b/frontend/site-search-frontend/src/features/site-details/parcel-description.tsx new file mode 100644 index 00000000..ef7f7d98 --- /dev/null +++ b/frontend/site-search-frontend/src/features/site-details/parcel-description.tsx @@ -0,0 +1,9 @@ + +export default function ParcelDescription() { + + return ( +
+

Parcel Description go here

+
+ ) +} \ No newline at end of file diff --git a/frontend/site-search-frontend/src/features/site-details/site-profile.tsx b/frontend/site-search-frontend/src/features/site-details/site-profile.tsx new file mode 100644 index 00000000..9f4bee8e --- /dev/null +++ b/frontend/site-search-frontend/src/features/site-details/site-profile.tsx @@ -0,0 +1,9 @@ + +export default function SiteProfile() { + + return ( +
+

SiteProfile go here

+
+ ) +} \ No newline at end of file diff --git a/frontend/site-search-frontend/src/features/site-details/suspect-land-uses.tsx b/frontend/site-search-frontend/src/features/site-details/suspect-land-uses.tsx new file mode 100644 index 00000000..2a933dc0 --- /dev/null +++ b/frontend/site-search-frontend/src/features/site-details/suspect-land-uses.tsx @@ -0,0 +1,9 @@ + +export default function SuspectLandUses() { + + return ( +
+

Suspect Land Uses go here

+
+ ) +} \ No newline at end of file diff --git a/frontend/site-search-frontend/src/main.tsx b/frontend/site-search-frontend/src/main.tsx index d0299cad..512b0532 100644 --- a/frontend/site-search-frontend/src/main.tsx +++ b/frontend/site-search-frontend/src/main.tsx @@ -16,6 +16,11 @@ import MapPage from './pages/map.tsx'; import Notations from './features/site-details/notations.tsx'; import Participants from './features/site-details/participants.tsx'; import Documents from './features/site-details/documents.tsx'; +import AssociatedSites from './features/site-details/associated-sites.tsx'; +import SuspectLandUses from './features/site-details/suspect-land-uses.tsx'; +import ParcelDescription from './features/site-details/parcel-description.tsx'; +import SiteProfile from './features/site-details/site-profile.tsx'; +import ActivityLog from './features/site-details/activity-log.tsx'; const router = createBrowserRouter([ @@ -42,6 +47,26 @@ const router = createBrowserRouter([ { path: "documents", element: + }, + { + path: "associated-sites", + element: + }, + { + path: "suspect-land-uses", + element: + }, + { + path: "parcel-description", + element: + }, + { + path: "site-profile", + element: + }, + { + path: "activity-log", + element: } ] }, diff --git a/frontend/site-search-frontend/src/pages/map.tsx b/frontend/site-search-frontend/src/pages/map.tsx index 6165107c..c1f048b5 100644 --- a/frontend/site-search-frontend/src/pages/map.tsx +++ b/frontend/site-search-frontend/src/pages/map.tsx @@ -17,6 +17,10 @@ import { RootState } from "@/store"; import SiteDetailsPage from "./site-details"; import UpdateMapCentre from "@/features/map/UpdateMapCentre"; +// Seeing if this fixes marker being loaded in prod +import "leaflet/dist/images/marker-shadow.png"; +import "leaflet/dist/images/marker-icon-2x.png"; + diff --git a/frontend/site-search-frontend/src/pages/site-details.tsx b/frontend/site-search-frontend/src/pages/site-details.tsx index f0583c43..efe8d5e1 100644 --- a/frontend/site-search-frontend/src/pages/site-details.tsx +++ b/frontend/site-search-frontend/src/pages/site-details.tsx @@ -54,7 +54,7 @@ export default function SiteDetailsPage() { - +
@@ -62,7 +62,7 @@ export default function SiteDetailsPage() {
-
From f86249f5dc73d5082e67dc608cafb142ce8a5180 Mon Sep 17 00:00:00 2001 From: Adam Coard Date: Tue, 26 Sep 2023 09:43:45 -0700 Subject: [PATCH 065/194] Summary routing working --- .../src/features/site-details/summary.tsx | 9 +++++++++ frontend/site-search-frontend/src/main.tsx | 7 +++++++ 2 files changed, 16 insertions(+) create mode 100644 frontend/site-search-frontend/src/features/site-details/summary.tsx diff --git a/frontend/site-search-frontend/src/features/site-details/summary.tsx b/frontend/site-search-frontend/src/features/site-details/summary.tsx new file mode 100644 index 00000000..e7ab1c96 --- /dev/null +++ b/frontend/site-search-frontend/src/features/site-details/summary.tsx @@ -0,0 +1,9 @@ + +export default function Summary() { + + return ( +
+

Summary goes here

+
+ ) +} \ No newline at end of file diff --git a/frontend/site-search-frontend/src/main.tsx b/frontend/site-search-frontend/src/main.tsx index 512b0532..a48077b6 100644 --- a/frontend/site-search-frontend/src/main.tsx +++ b/frontend/site-search-frontend/src/main.tsx @@ -4,6 +4,7 @@ import ReactDOM from 'react-dom/client' import Search from './pages/search.tsx' import { createBrowserRouter, + Navigate, RouterProvider, } from "react-router-dom"; import 'bootstrap/dist/css/bootstrap.css'; @@ -21,6 +22,7 @@ import SuspectLandUses from './features/site-details/suspect-land-uses.tsx'; import ParcelDescription from './features/site-details/parcel-description.tsx'; import SiteProfile from './features/site-details/site-profile.tsx'; import ActivityLog from './features/site-details/activity-log.tsx'; +import Summary from './features/site-details/summary.tsx'; const router = createBrowserRouter([ @@ -36,6 +38,11 @@ const router = createBrowserRouter([ path: '/site/:siteID', element: , children: [ + { + // Summary is special case, happens by default, so no path. + path: "", + element: , + }, { path: "notations", element: From 996a3f9f8fdcd4ccd813c812c4dbf5164084b679 Mon Sep 17 00:00:00 2001 From: Adam Coard Date: Tue, 26 Sep 2023 10:16:05 -0700 Subject: [PATCH 066/194] Site details styling --- frontend/site-search-frontend/src/pages/site-details.module.css | 2 ++ frontend/site-search-frontend/src/pages/site-details.tsx | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/frontend/site-search-frontend/src/pages/site-details.module.css b/frontend/site-search-frontend/src/pages/site-details.module.css index 24c9fb87..04d53ffe 100644 --- a/frontend/site-search-frontend/src/pages/site-details.module.css +++ b/frontend/site-search-frontend/src/pages/site-details.module.css @@ -3,6 +3,8 @@ padding: 20px; margin-bottom: 20px; margin-top: 20px; + min-height: 300px; + border-radius: 5px; } .metadataGrid { diff --git a/frontend/site-search-frontend/src/pages/site-details.tsx b/frontend/site-search-frontend/src/pages/site-details.tsx index efe8d5e1..2b819cca 100644 --- a/frontend/site-search-frontend/src/pages/site-details.tsx +++ b/frontend/site-search-frontend/src/pages/site-details.tsx @@ -29,7 +29,7 @@ export default function SiteDetailsPage() {
- {site.siteID} - {site.address} + {site.siteID} - {site.address}
{!editMode &&
From 81e7ac2d20f373debd586d0280687fc69b5de03a Mon Sep 17 00:00:00 2001 From: Adam Coard Date: Tue, 26 Sep 2023 10:16:13 -0700 Subject: [PATCH 067/194] Fix map layer bug by restoring transparent layer --- frontend/site-search-frontend/src/pages/map.tsx | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/frontend/site-search-frontend/src/pages/map.tsx b/frontend/site-search-frontend/src/pages/map.tsx index c1f048b5..b83e6d7f 100644 --- a/frontend/site-search-frontend/src/pages/map.tsx +++ b/frontend/site-search-frontend/src/pages/map.tsx @@ -124,13 +124,8 @@ export default function MapPage() { From f30c0e91916a453afeb0a0082dff274cc7d84d8a Mon Sep 17 00:00:00 2001 From: Adam Coard Date: Wed, 27 Sep 2023 09:42:32 -0700 Subject: [PATCH 068/194] Load map on summary details page --- .../site-details/css/summary.module.css | 3 ++ .../src/features/site-details/summary.tsx | 44 ++++++++++++++++++- .../src/pages/site-details.tsx | 3 +- 3 files changed, 47 insertions(+), 3 deletions(-) create mode 100644 frontend/site-search-frontend/src/features/site-details/css/summary.module.css diff --git a/frontend/site-search-frontend/src/features/site-details/css/summary.module.css b/frontend/site-search-frontend/src/features/site-details/css/summary.module.css new file mode 100644 index 00000000..fac90642 --- /dev/null +++ b/frontend/site-search-frontend/src/features/site-details/css/summary.module.css @@ -0,0 +1,3 @@ +.mapContainer { + min-height: 300px; +} \ No newline at end of file diff --git a/frontend/site-search-frontend/src/features/site-details/summary.tsx b/frontend/site-search-frontend/src/features/site-details/summary.tsx index e7ab1c96..ed5de390 100644 --- a/frontend/site-search-frontend/src/features/site-details/summary.tsx +++ b/frontend/site-search-frontend/src/features/site-details/summary.tsx @@ -1,9 +1,51 @@ +import { MapContainer, Marker, TileLayer, WMSTileLayer } from "react-leaflet"; +import styles from './css/summary.module.css' +import { Site } from "@/api/sites"; +import { useSelector } from "react-redux"; +import { RootState } from "@/store"; +import { useParams } from "react-router-dom"; +// import 'leaflet/dist/leaflet.css'; //Unsure if necessary after included in map.tsx export default function Summary() { + const { siteID } = useParams(); + const siteIDNum = parseInt(siteID); + const site: Site = useSelector((state: RootState) => state.site.value.find(searchedSite => searchedSite.siteID === siteIDNum)); + + console.log('summary site', site); return (
-

Summary goes here

+
+
+ + + + + + + + + +
+
+

Notations: 2

+

Participants: 2

+

Associated Sites: 2

+

Documents: 2

+

Suspect Land Use: 2

+

Parcel Description: 2

+
+
) } \ No newline at end of file diff --git a/frontend/site-search-frontend/src/pages/site-details.tsx b/frontend/site-search-frontend/src/pages/site-details.tsx index 2b819cca..ccc96d86 100644 --- a/frontend/site-search-frontend/src/pages/site-details.tsx +++ b/frontend/site-search-frontend/src/pages/site-details.tsx @@ -56,13 +56,12 @@ export default function SiteDetailsPage() { -
-
- - - {/* TODO - Make below it's own component, even in same page? */} + {editMode && } - {/* */} {site.notations.map((siteNotationData, index) => { return })} @@ -48,23 +51,41 @@ export default function Notations() { function NotationItem( { notation, index }: {notation: Notation, index: number} ) { + const isMinistry = useSelector((state: RootState) => state.user.isMinistry); + const editMode = useSelector((state: RootState) => state.edit.editMode) return (

Notation {index + 1}

-

Created: {notation.createdAt.toISOString().split('T')[0]}

+ {isMinistry &&

Created: {notation.createdAt.toISOString().split('T')[0]}

}

SR

DELETE

-
- - +
+ + + + + + + + +
+ +
+
+
+ + +
+
+ Todo table goes here.
) diff --git a/frontend/site-search-frontend/src/features/user/userSlice.ts b/frontend/site-search-frontend/src/features/user/userSlice.ts new file mode 100644 index 00000000..e387acf2 --- /dev/null +++ b/frontend/site-search-frontend/src/features/user/userSlice.ts @@ -0,0 +1,18 @@ +import { createSlice } from "@reduxjs/toolkit"; + +export interface UserState { + isMinistry: boolean + userName: string; +} + +export const userSlice = createSlice({ + name: 'user', + initialState: { + isMinistry: true, + userName: 'USER NAME' + }, + // TODO: Write reducer to switch to non-ministry user, put toggle in
+ reducers: {} +}) + +export default userSlice.reducer; \ No newline at end of file diff --git a/frontend/site-search-frontend/src/pages/site-details.module.css b/frontend/site-search-frontend/src/pages/site-details.module.css index 1d1fec77..2e0fcd67 100644 --- a/frontend/site-search-frontend/src/pages/site-details.module.css +++ b/frontend/site-search-frontend/src/pages/site-details.module.css @@ -33,6 +33,10 @@ grid-column: span 1; } +.gridSpan3 { + grid-column: span 3 +} + .formLabel { diff --git a/frontend/site-search-frontend/src/pages/site-details.tsx b/frontend/site-search-frontend/src/pages/site-details.tsx index 6485c8e8..445b0c03 100644 --- a/frontend/site-search-frontend/src/pages/site-details.tsx +++ b/frontend/site-search-frontend/src/pages/site-details.tsx @@ -2,22 +2,22 @@ import { Site } from "@/api/sites"; import Header from "@/components/Header" import { RootState } from "@/store"; import { Button, Nav } from "react-bootstrap"; -import { useSelector } from "react-redux"; +import { useDispatch, useSelector } from "react-redux"; import { Link, Outlet, useParams } from "react-router-dom"; import styles from './site-details.module.css' import SiteGridItem from "@/features/site-details/SiteGridItem"; import { useState } from "react"; +import { toggleEdit } from '@/features/site-details/edit-mode/editModeSlice'; export default function SiteDetailsPage() { const { siteID } = useParams(); - - // Todo: Move 'Edit Mode' to redux, same with staff role stuff. - const [editMode, setEditMode] = useState(false); + const editMode = useSelector((state: RootState) => state.edit.editMode) const siteIDNum = parseInt(siteID); const site: Site = useSelector((state: RootState) => state.site.value.find(searchedSite => searchedSite.siteID === siteIDNum)); + const dispatch = useDispatch(); - function toggleEdit(){ - setEditMode(!editMode) + function toggleEditClick(){ + dispatch(toggleEdit()) } @@ -32,12 +32,12 @@ export default function SiteDetailsPage() { {site.siteID} - {site.address}
{!editMode &&
- +
} {editMode &&
- - + +
} @@ -45,17 +45,17 @@ export default function SiteDetailsPage() {

Site Location

- - - - - + + + + + - - + + - - + +
diff --git a/frontend/site-search-frontend/src/store.ts b/frontend/site-search-frontend/src/store.ts index 7863a13f..542a5ddc 100644 --- a/frontend/site-search-frontend/src/store.ts +++ b/frontend/site-search-frontend/src/store.ts @@ -1,9 +1,13 @@ import { configureStore } from '@reduxjs/toolkit' import siteReducer from '@/features/simple-search/simple-search' +import userReducer from '@/features/user/userSlice' +import editReducer from '@/features/site-details/edit-mode/editModeSlice' const store = configureStore({ reducer: { - site: siteReducer + site: siteReducer, + user: userReducer, + edit: editReducer } }) From fe377f61c4193d03ee5245331b9fce71cd356f4a Mon Sep 17 00:00:00 2001 From: Adam Coard Date: Thu, 28 Sep 2023 11:51:06 -0700 Subject: [PATCH 084/194] Notation participants table --- .../src/features/site-details/notations.tsx | 34 +++++++++++++++++-- frontend/site-search-frontend/src/index.css | 15 +++++++- 2 files changed, 45 insertions(+), 4 deletions(-) diff --git a/frontend/site-search-frontend/src/features/site-details/notations.tsx b/frontend/site-search-frontend/src/features/site-details/notations.tsx index 60fce7a0..7d5745c2 100644 --- a/frontend/site-search-frontend/src/features/site-details/notations.tsx +++ b/frontend/site-search-frontend/src/features/site-details/notations.tsx @@ -1,4 +1,4 @@ -import { Button, Dropdown, DropdownButton } from 'react-bootstrap' +import { Button, Dropdown, DropdownButton, Table } from 'react-bootstrap' import styles from './css/notations.module.css' import siteDetailsStyles from '@/pages/site-details.module.css' import SiteGridItem from './SiteGridItem' @@ -79,13 +79,41 @@ function NotationItem( { notation, index }: {notation: Notation, index: number}
-
+
- Todo table goes here. + + + {/* TODO - Rip this out and make its own component, but how handle differing columns and fields elegantly? children props / slots most likely. */} + {/* SiteDetailsTable */} +
Notation Participants
+ + + + + + + + + + + + {notation.notationParticipants.map((participant, id) => { + return ( + + + + + + + ) + })} + + +
CHECKNameRoleSR
[ ]{participant.name}{participant.role}{participant.siteRegistry}
) diff --git a/frontend/site-search-frontend/src/index.css b/frontend/site-search-frontend/src/index.css index db3d3fa8..83dd2dd9 100644 --- a/frontend/site-search-frontend/src/index.css +++ b/frontend/site-search-frontend/src/index.css @@ -4,7 +4,7 @@ --main-gray: #EDEDED; --dark-gray: #717171; --header-gray: #a8a8a8; - --input-gray: #f0f0f0; + --table-header-gray: #e5e5e5; --bs-blue: #0d6efd; @@ -31,4 +31,17 @@ --bs-font-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; --bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0)); +} + +.table { + /* Override bootstrap's defaults here. */ + /* --bs-table-bg: black !important; */ + /* --bs-table-bg: var(--header-gray) !important; */ + border-radius: 5px; + border: 1px solid black; +} + +.table th { + background-color: var(--table-header-gray) !important; + /* background-color: var(--main-gray) !important; */ } \ No newline at end of file From 275bce21d56cd7f89d1ba6afed34cf15a9679730 Mon Sep 17 00:00:00 2001 From: Adam Coard Date: Thu, 28 Sep 2023 12:01:21 -0700 Subject: [PATCH 085/194] Conditionally hiding columns on editMode --- .../src/features/site-details/notations.tsx | 30 +++++++++++-------- frontend/site-search-frontend/src/index.css | 4 +++ 2 files changed, 21 insertions(+), 13 deletions(-) diff --git a/frontend/site-search-frontend/src/features/site-details/notations.tsx b/frontend/site-search-frontend/src/features/site-details/notations.tsx index 7d5745c2..55215556 100644 --- a/frontend/site-search-frontend/src/features/site-details/notations.tsx +++ b/frontend/site-search-frontend/src/features/site-details/notations.tsx @@ -1,4 +1,4 @@ -import { Button, Dropdown, DropdownButton, Table } from 'react-bootstrap' +import { Button, Dropdown, DropdownButton, Form, Table } from 'react-bootstrap' import styles from './css/notations.module.css' import siteDetailsStyles from '@/pages/site-details.module.css' import SiteGridItem from './SiteGridItem' @@ -13,11 +13,11 @@ export default function Notations() { const siteIDNum = parseInt(siteID); const site: Site = useSelector((state: RootState) => state.site.value.find(searchedSite => searchedSite.siteID === siteIDNum)); const editMode = useSelector((state: RootState) => state.edit.editMode) - + console.log('site notations', site.notations); - function newNotation(){ + function newNotation() { console.log('new notation clicked, update store'); } @@ -38,7 +38,7 @@ export default function Notations() { - {editMode && } + {editMode && } {site.notations.map((siteNotationData, index) => { return @@ -50,16 +50,20 @@ export default function Notations() { } -function NotationItem( { notation, index }: {notation: Notation, index: number} ) { +function NotationItem({ notation, index }: { notation: Notation, index: number }) { const isMinistry = useSelector((state: RootState) => state.user.isMinistry); - const editMode = useSelector((state: RootState) => state.edit.editMode) + const editMode = useSelector((state: RootState) => state.edit.editMode); + + // const + // TODO: Need to handle 'SR', update data model + return (

Notation {index + 1}

- {isMinistry &&

Created: {notation.createdAt.toISOString().split('T')[0]}

} + {isMinistry &&

Created: {notation.createdAt.toISOString().split('T')[0]}

}

SR

@@ -68,7 +72,7 @@ function NotationItem( { notation, index }: {notation: Notation, index: number}
- + @@ -89,14 +93,14 @@ function NotationItem( { notation, index }: {notation: Notation, index: number} {/* TODO - Rip this out and make its own component, but how handle differing columns and fields elegantly? children props / slots most likely. */} {/* SiteDetailsTable */} -
Notation Participants
+
Notation Participants
- + {editMode && } - + {editMode && } @@ -104,10 +108,10 @@ function NotationItem( { notation, index }: {notation: Notation, index: number} {notation.notationParticipants.map((participant, id) => { return ( - + {editMode && } - + {editMode && } ) })} diff --git a/frontend/site-search-frontend/src/index.css b/frontend/site-search-frontend/src/index.css index 83dd2dd9..953cd637 100644 --- a/frontend/site-search-frontend/src/index.css +++ b/frontend/site-search-frontend/src/index.css @@ -44,4 +44,8 @@ .table th { background-color: var(--table-header-gray) !important; /* background-color: var(--main-gray) !important; */ +} + +input[type='checkbox'] { + border: 2px solid var(--dark-gray); } \ No newline at end of file From 19c7cd50449eea4b0a8fe785e4f59fe8a78ff14d Mon Sep 17 00:00:00 2001 From: Adam Coard Date: Thu, 28 Sep 2023 12:06:44 -0700 Subject: [PATCH 086/194] Hiding other controls based on edit mode --- .../src/features/site-details/notations.tsx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/frontend/site-search-frontend/src/features/site-details/notations.tsx b/frontend/site-search-frontend/src/features/site-details/notations.tsx index 55215556..2c2512ee 100644 --- a/frontend/site-search-frontend/src/features/site-details/notations.tsx +++ b/frontend/site-search-frontend/src/features/site-details/notations.tsx @@ -83,17 +83,17 @@ function NotationItem({ notation, index }: { notation: Notation, index: number }
-
+ {editMode &&
- +
-
+
} {/* TODO - Rip this out and make its own component, but how handle differing columns and fields elegantly? children props / slots most likely. */} {/* SiteDetailsTable */} -
Notation Participants
+
Notation Participants
CHECKName RoleSRSR
[ ]{participant.name} {participant.role}{participant.siteRegistry}{participant.siteRegistry}
From f81d8b4b49237187bcac1759415d64553d1d807b Mon Sep 17 00:00:00 2001 From: Adam Coard Date: Thu, 28 Sep 2023 12:46:13 -0700 Subject: [PATCH 087/194] Fix default active key --- .../src/pages/site-details.tsx | 24 +++++++++---------- 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/frontend/site-search-frontend/src/pages/site-details.tsx b/frontend/site-search-frontend/src/pages/site-details.tsx index 445b0c03..8b120883 100644 --- a/frontend/site-search-frontend/src/pages/site-details.tsx +++ b/frontend/site-search-frontend/src/pages/site-details.tsx @@ -3,7 +3,7 @@ import Header from "@/components/Header" import { RootState } from "@/store"; import { Button, Nav } from "react-bootstrap"; import { useDispatch, useSelector } from "react-redux"; -import { Link, Outlet, useParams } from "react-router-dom"; +import { Link, Outlet, useLocation, useParams } from "react-router-dom"; import styles from './site-details.module.css' import SiteGridItem from "@/features/site-details/SiteGridItem"; import { useState } from "react"; @@ -13,6 +13,7 @@ export default function SiteDetailsPage() { const { siteID } = useParams(); const editMode = useSelector((state: RootState) => state.edit.editMode) const siteIDNum = parseInt(siteID); + const location = useLocation(); const site: Site = useSelector((state: RootState) => state.site.value.find(searchedSite => searchedSite.siteID === siteIDNum)); const dispatch = useDispatch(); @@ -20,7 +21,6 @@ export default function SiteDetailsPage() { dispatch(toggleEdit()) } - return ( <>
@@ -61,31 +61,31 @@ export default function SiteDetailsPage() {
- {/* TODO: Fix defaultActiveKey to work on refresh based on URL. Currently it requires state that is lost on refresh. */} -
- + {editMode && } @@ -141,7 +143,7 @@ function NotationItem({ notation, index, onClickAddParticipant }: { notation: No {editMode && } - {editMode && } + {editMode && } ) })} diff --git a/frontend/site-search-frontend/src/pages/site-details.module.css b/frontend/site-search-frontend/src/pages/site-details.module.css index 2e0fcd67..0836a067 100644 --- a/frontend/site-search-frontend/src/pages/site-details.module.css +++ b/frontend/site-search-frontend/src/pages/site-details.module.css @@ -42,6 +42,9 @@ .formLabel { font-weight: bolder; background-color: var(--header-gray); + display: flex; + justify-content: space-between; + font-size: 12px; } .formInput:read-only { From b1739999e75f8f6047e37a1ab671e8cfb4015dee Mon Sep 17 00:00:00 2001 From: Adam Coard Date: Thu, 28 Sep 2023 15:03:48 -0700 Subject: [PATCH 091/194] Site registry controls --- .../site-search-frontend/src/components/SiteRegistryIcon.tsx | 4 ++-- .../src/features/site-details/notations.tsx | 4 ++-- .../site-search-frontend/src/pages/site-details.module.css | 4 ++++ 3 files changed, 8 insertions(+), 4 deletions(-) diff --git a/frontend/site-search-frontend/src/components/SiteRegistryIcon.tsx b/frontend/site-search-frontend/src/components/SiteRegistryIcon.tsx index aeb9e778..36698c3c 100644 --- a/frontend/site-search-frontend/src/components/SiteRegistryIcon.tsx +++ b/frontend/site-search-frontend/src/components/SiteRegistryIcon.tsx @@ -5,12 +5,12 @@ import { Eye, EyeSlash } from 'react-bootstrap-icons'; export default function SiteRegistryIcon({siteRegistry}: {siteRegistry: boolean}) { if (siteRegistry) { return ( - + ) } else { return ( - + ) } } diff --git a/frontend/site-search-frontend/src/features/site-details/notations.tsx b/frontend/site-search-frontend/src/features/site-details/notations.tsx index 0869d184..6e7ab035 100644 --- a/frontend/site-search-frontend/src/features/site-details/notations.tsx +++ b/frontend/site-search-frontend/src/features/site-details/notations.tsx @@ -98,8 +98,8 @@ function NotationItem({ notation, index, onClickAddParticipant }: { notation: No {isMinistry &&

Created: {notation.createdAt.toISOString().split('T')[0]}

}
-

SR

-

DELETE

+ +
diff --git a/frontend/site-search-frontend/src/pages/site-details.module.css b/frontend/site-search-frontend/src/pages/site-details.module.css index 0836a067..5aaa222d 100644 --- a/frontend/site-search-frontend/src/pages/site-details.module.css +++ b/frontend/site-search-frontend/src/pages/site-details.module.css @@ -13,6 +13,8 @@ /* grid-template-columns: repeat(12, minmax(400px, 1fr)); */ grid-template-columns: repeat(auto-fill, minmax(175px, 1fr)); grid-gap: 20px; + + align-items: start; } .metadataGridItem { @@ -45,6 +47,8 @@ display: flex; justify-content: space-between; font-size: 12px; + display: flex; + align-items: baseline; } .formInput:read-only { From 0d44005816b9e568eb106590f96ace39c9e95ba6 Mon Sep 17 00:00:00 2001 From: Adam Coard Date: Thu, 28 Sep 2023 17:00:29 -0700 Subject: [PATCH 092/194] Made form tables editable, hid buttons behind editMode --- .../src/features/site-details/SiteGridItem.tsx | 5 +++-- .../src/features/site-details/TableEditItem.tsx | 13 +++++++++++++ .../src/features/site-details/notations.tsx | 9 +++++---- .../src/pages/site-details.module.css | 7 ++++--- 4 files changed, 25 insertions(+), 9 deletions(-) create mode 100644 frontend/site-search-frontend/src/features/site-details/TableEditItem.tsx diff --git a/frontend/site-search-frontend/src/features/site-details/SiteGridItem.tsx b/frontend/site-search-frontend/src/features/site-details/SiteGridItem.tsx index cf17a9b9..86031db6 100644 --- a/frontend/site-search-frontend/src/features/site-details/SiteGridItem.tsx +++ b/frontend/site-search-frontend/src/features/site-details/SiteGridItem.tsx @@ -16,7 +16,8 @@ export default function SiteGridItem( {label, value, extraClasses = '', showSR = SR }
- + ) -} \ No newline at end of file +} + diff --git a/frontend/site-search-frontend/src/features/site-details/TableEditItem.tsx b/frontend/site-search-frontend/src/features/site-details/TableEditItem.tsx new file mode 100644 index 00000000..c0017c69 --- /dev/null +++ b/frontend/site-search-frontend/src/features/site-details/TableEditItem.tsx @@ -0,0 +1,13 @@ +import Form from 'react-bootstrap/Form'; +import styles from '@/pages/site-details.module.css'; +import { useSelector } from "react-redux"; +import { RootState } from "@/store"; + + +export function TableEditItem({ value }) { + const editMode = useSelector((state: RootState) => state.edit.editMode); + + return ( + + ); +} diff --git a/frontend/site-search-frontend/src/features/site-details/notations.tsx b/frontend/site-search-frontend/src/features/site-details/notations.tsx index 6e7ab035..a06fc14e 100644 --- a/frontend/site-search-frontend/src/features/site-details/notations.tsx +++ b/frontend/site-search-frontend/src/features/site-details/notations.tsx @@ -2,6 +2,7 @@ import { Button, Dropdown, DropdownButton, Form, Table } from 'react-bootstrap' import styles from './css/notations.module.css' import siteDetailsStyles from '@/pages/site-details.module.css' import SiteGridItem from './SiteGridItem' +import { TableEditItem } from "./TableEditItem"; import { useParams } from 'react-router-dom'; import { useDispatch, useSelector } from 'react-redux'; import { Notation, Site } from '@/api/sites'; @@ -97,10 +98,10 @@ function NotationItem({ notation, index, onClickAddParticipant }: { notation: No

Notation {index + 1}

{isMinistry &&

Created: {notation.createdAt.toISOString().split('T')[0]}

} -
+ {editMode &&
-
+
}
@@ -141,8 +142,8 @@ function NotationItem({ notation, index, onClickAddParticipant }: { notation: No return (
{editMode && } - - + + {editMode && } ) diff --git a/frontend/site-search-frontend/src/pages/site-details.module.css b/frontend/site-search-frontend/src/pages/site-details.module.css index 5aaa222d..551df761 100644 --- a/frontend/site-search-frontend/src/pages/site-details.module.css +++ b/frontend/site-search-frontend/src/pages/site-details.module.css @@ -47,10 +47,11 @@ display: flex; justify-content: space-between; font-size: 12px; - display: flex; - align-items: baseline; + align-items: center; + min-height: 2rem; } .formInput:read-only { - background-color: var(--input-gray) + background-color: var(--input-gray); + padding: 0.375rem 0.75rem; } \ No newline at end of file From dbdd1337758821c8a24bdcd452a45c3a70185764 Mon Sep 17 00:00:00 2001 From: jaise-aot Date: Thu, 28 Sep 2023 17:48:32 -0700 Subject: [PATCH 093/194] email integration in nir workflow --- .../subProcess/NIRBundleWorkflow.bpmn | 19 ++++- .../processes/Common/email-template.dmn | 52 ++++++++++++++ .../templates/nir_application.ftl | 69 +++++++++++++++++++ 3 files changed, 137 insertions(+), 3 deletions(-) create mode 100644 forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/templates/nir_application.ftl diff --git a/forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/processes/Bundling/subProcess/NIRBundleWorkflow.bpmn b/forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/processes/Bundling/subProcess/NIRBundleWorkflow.bpmn index 37778d53..aa29d829 100644 --- a/forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/processes/Bundling/subProcess/NIRBundleWorkflow.bpmn +++ b/forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/processes/Bundling/subProcess/NIRBundleWorkflow.bpmn @@ -35,13 +35,17 @@ Flow_0unffch var system = java.lang.System; var clientEmail = execution.getVariable('simpleemail3'); -execution.setVariable('clientEmail',clientEmail); +var emailsToArray = []; +emailsToArray.push(clientEmail) +execution.setVariable("emailTo", Java.to(emailsToArray, "java.lang.Object[]")); var riskclassification = execution.getVariable('riskclassification'); system.out.println ("formUrl "+execution.getVariable('formUrl')); var siteRiskClassification = execution.getVariable('siteRiskClassification'); system.out.println ("siteRiskClassification "+siteRiskClassification ); execution.setVariable('siteRiskClassification',siteRiskClassification); - +var name=execution.getVariable('nirName'); +system.out.println ("name "+execution.getVariable('nirName')); +execution.setVariable('name',name); @@ -111,6 +115,9 @@ task.execution.setVariable('deleteReason', "completed"); + + nir_updated + Flow_0bwxoom Flow_0x0w3ip @@ -121,6 +128,9 @@ task.execution.setVariable('deleteReason', "completed"); + + nir_updated + Flow_0ixmsle Flow_1cgcuxz @@ -573,7 +583,7 @@ execution.setVariable("applicationStatus", "Rejected"); - + ${action == 'Rejected' } @@ -967,6 +977,9 @@ execution.setVariable("applicationStatus", "Rejected"); + + + diff --git a/forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/processes/Common/email-template.dmn b/forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/processes/Common/email-template.dmn index cd140f9b..2554ae6f 100644 --- a/forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/processes/Common/email-template.dmn +++ b/forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/processes/Common/email-template.dmn @@ -66,6 +66,58 @@ "epd-support@gov.bc.ca" + + + "nom_updated" + + + + + + "NOREPLYEPD@gov.bc.ca" + + + + + + + + + "Notification of Likely or Actual Migration Application Status Update" + + + "templates/nom_application.ftl" + + + "epd-support@gov.bc.ca" + + + + + "nir_updated" + + + + + + "NOREPLYEPD@gov.bc.ca" + + + + + + + + + "Notification of Independent Remediation Application Status Update" + + + "templates/nir_application.ftl" + + + "epd-support@gov.bc.ca" + + diff --git a/forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/templates/nir_application.ftl b/forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/templates/nir_application.ftl new file mode 100644 index 00000000..589119be --- /dev/null +++ b/forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/templates/nir_application.ftl @@ -0,0 +1,69 @@ + + + + + + + + + + + +
Name{participant.name} {participant.role}{participant.siteRegistry}
{participant.name}{participant.role}
+ + + + +
+ + + Site Remediation Services +
+ + + + + + + + + + + + + + + + + + + +
+
+
+

+ Notification of Independent Remediation. +

+
+

+ Dear ${name}, +

+

+ Your Notification of Independent Remediation application has been updated. Current status is ${action}. +

+
+

+ If you need any help, don’t hesitate to reach out to us at ${support} +

+
+
+
+ +

BC Public Services will never send an email that asks you to provide, confirm or verify personal, log on or account information. + DO NOT reply to this email as it was sent from an unmonitored account. +

+
+ + \ No newline at end of file From 01cd89df8e6facc871224b29adf460cbf48d6ae9 Mon Sep 17 00:00:00 2001 From: Adam Coard Date: Thu, 28 Sep 2023 19:06:08 -0700 Subject: [PATCH 094/194] Fix nav pill stylings --- frontend/site-search-frontend/src/index.css | 21 ++++++++++++++++++++- 1 file changed, 20 insertions(+), 1 deletion(-) diff --git a/frontend/site-search-frontend/src/index.css b/frontend/site-search-frontend/src/index.css index 953cd637..f1439dfc 100644 --- a/frontend/site-search-frontend/src/index.css +++ b/frontend/site-search-frontend/src/index.css @@ -6,6 +6,9 @@ --header-gray: #a8a8a8; --table-header-gray: #e5e5e5; + --bs-primary: #003366; + --bs-nav-pills-link-active-bg: #003366 !important; + --bs-blue: #0d6efd; --bs-indigo: #6610f2; @@ -20,7 +23,7 @@ --bs-white: #fff; --bs-gray: #6c757d; --bs-gray-dark: #343a40; - --bs-primary: #0d6efd; + /* --bs-primary: #0d6efd; */ --bs-secondary: #6c757d; --bs-success: #198754; --bs-info: #0dcaf0; @@ -48,4 +51,20 @@ input[type='checkbox'] { border: 2px solid var(--dark-gray); +} + +.form-control-plaintext { + cursor: initial; +} + +/* .nav-pills .nav-link.active { + background-color: orange +} */ + +.nav-pills .nav-link.active { + background-color: var(--bs-primary); +} + +.nav-pills .nav-link { + color: var(--bs-primary); } \ No newline at end of file From 1bd4a535fe77123267a18dd781011cac9933d7b6 Mon Sep 17 00:00:00 2001 From: nikhila-aot Date: Thu, 28 Sep 2023 23:13:49 -0700 Subject: [PATCH 095/194] fix for srcr exempt --- .../Bundling/subProcess/CSSABundleWorklow.bpmn | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/processes/Bundling/subProcess/CSSABundleWorklow.bpmn b/forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/processes/Bundling/subProcess/CSSABundleWorklow.bpmn index 551d5049..17988600 100644 --- a/forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/processes/Bundling/subProcess/CSSABundleWorklow.bpmn +++ b/forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/processes/Bundling/subProcess/CSSABundleWorklow.bpmn @@ -1313,6 +1313,16 @@ execution.setVariable("applicationStatus", "Rejected"); ${isSentFromSociety == true} + + + execution.setVariable('bundleStatus', "cssaCaseworkerAccepted"); + + + + ["applicationId", "applicationStatus", "bundleStatus"] + + + ${action == 'Accepted'} From 41d20dc06646835207adda2871dbd26e76121dd5 Mon Sep 17 00:00:00 2001 From: Adam Coard Date: Fri, 29 Sep 2023 08:42:02 -0700 Subject: [PATCH 096/194] Tidy up notations file --- .../src/features/site-details/notations.tsx | 21 ++++++++----------- 1 file changed, 9 insertions(+), 12 deletions(-) diff --git a/frontend/site-search-frontend/src/features/site-details/notations.tsx b/frontend/site-search-frontend/src/features/site-details/notations.tsx index a06fc14e..efbafff9 100644 --- a/frontend/site-search-frontend/src/features/site-details/notations.tsx +++ b/frontend/site-search-frontend/src/features/site-details/notations.tsx @@ -8,7 +8,7 @@ import { useDispatch, useSelector } from 'react-redux'; import { Notation, Site } from '@/api/sites'; import { RootState } from '@/store'; import { updateSite } from '../simple-search/simple-search'; -import { useEffect } from 'react'; +import { useEffect, useState } from 'react'; import SiteRegistryIcon from '@/components/SiteRegistryIcon'; @@ -21,12 +21,6 @@ export default function Notations() { const dispatch = useDispatch(); - // console.log('site notations', site.notations); - - // useEffect(() => { console.log('nav useEffect')}, [site]) - - - // Note: This is currently not rendering immediately! After doing dispatch, click to other tab and back and see it works. function newNotation() { const newNotation = new Notation({ completed: new Date(), @@ -46,18 +40,15 @@ export default function Notations() { function newParticipant({ notationIndex }){ const newParticipant = {name: '', role: '', siteRegistry: false}; - // Push to array in newSite.notations[HOW-GET-THIS-ID].participants const newSite: Site = {...site, notations: [...site.notations]} newSite.notations[notationIndex].notationParticipants = [...newSite.notations[notationIndex].notationParticipants, newParticipant] dispatch(updateSite(newSite)) - } return (
- {/*
*/}
@@ -86,6 +77,11 @@ function NotationItem({ notation, index, onClickAddParticipant }: { notation: No const isMinistry = useSelector((state: RootState) => state.user.isMinistry); const editMode = useSelector((state: RootState) => state.edit.editMode); + // Toggling these two makes it mirror exact state, but it shouldn't, instead should be for batch changing of them. + // const defaultSelectionState: {index: number, siteRegistry: boolean}[] = notation.notationParticipants.map((x,index) => {return {index, siteRegistry: x.siteRegistry}} ) + const defaultSelectionState: {index: number, siteRegistry: boolean}[] = notation.notationParticipants.map((x,index) => {return {index, siteRegistry: false}} ) + const [participationSelection, setParticipationSeleciton] = useState(defaultSelectionState) + // const // TODO: Need to handle 'SR', update data model @@ -117,9 +113,10 @@ function NotationItem({ notation, index, onClickAddParticipant }: { notation: No
{editMode &&
-
+
+
} @@ -141,7 +138,7 @@ function NotationItem({ notation, index, onClickAddParticipant }: { notation: No {notation.notationParticipants.map((participant, id) => { return ( - {editMode && } + {editMode && } {editMode && } From 3daf90e0c99315841f94b205dfe553c9e5ae1d2d Mon Sep 17 00:00:00 2001 From: Adam Coard Date: Fri, 29 Sep 2023 08:43:39 -0700 Subject: [PATCH 097/194] Add link on summary, can remove if needed, but a nav back --- .../src/features/site-details/summary.tsx | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/frontend/site-search-frontend/src/features/site-details/summary.tsx b/frontend/site-search-frontend/src/features/site-details/summary.tsx index ed5de390..684d9339 100644 --- a/frontend/site-search-frontend/src/features/site-details/summary.tsx +++ b/frontend/site-search-frontend/src/features/site-details/summary.tsx @@ -3,7 +3,7 @@ import styles from './css/summary.module.css' import { Site } from "@/api/sites"; import { useSelector } from "react-redux"; import { RootState } from "@/store"; -import { useParams } from "react-router-dom"; +import { Link, useParams } from "react-router-dom"; // import 'leaflet/dist/leaflet.css'; //Unsure if necessary after included in map.tsx export default function Summary() { @@ -11,7 +11,6 @@ export default function Summary() { const siteIDNum = parseInt(siteID); const site: Site = useSelector((state: RootState) => state.site.value.find(searchedSite => searchedSite.siteID === siteIDNum)); - console.log('summary site', site); return (
@@ -44,6 +43,9 @@ export default function Summary() {

Documents: 2

Suspect Land Use: 2

Parcel Description: 2

+ + + View on Map
From 3e4f2bf5ca18484234e38c89f4489bb478f9b1df Mon Sep 17 00:00:00 2001 From: Adam Coard Date: Fri, 29 Sep 2023 08:44:00 -0700 Subject: [PATCH 098/194] Attempt to fix marker broken on prod by setting prototype image directly --- frontend/site-search-frontend/src/pages/map.tsx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/frontend/site-search-frontend/src/pages/map.tsx b/frontend/site-search-frontend/src/pages/map.tsx index e410b7b6..e7dc602a 100644 --- a/frontend/site-search-frontend/src/pages/map.tsx +++ b/frontend/site-search-frontend/src/pages/map.tsx @@ -21,7 +21,9 @@ import L from "leaflet"; let DefaultIcon = L.icon({ iconUrl: icon, shadowUrl: iconShadow, - }); +}); + +L.marker.prototype.options.icon = DefaultIcon; export default function MapPage() { From fa1cc9831c60946643d04f04735f397fbf698704 Mon Sep 17 00:00:00 2001 From: Adam Coard Date: Fri, 29 Sep 2023 08:59:33 -0700 Subject: [PATCH 099/194] Another attempt at fixing map marker icons on prod --- frontend/site-search-frontend/src/pages/map.tsx | 17 +++++++++++------ 1 file changed, 11 insertions(+), 6 deletions(-) diff --git a/frontend/site-search-frontend/src/pages/map.tsx b/frontend/site-search-frontend/src/pages/map.tsx index e7dc602a..342cddd4 100644 --- a/frontend/site-search-frontend/src/pages/map.tsx +++ b/frontend/site-search-frontend/src/pages/map.tsx @@ -14,16 +14,20 @@ import { LatLngExpression } from "leaflet"; import MapDetailsPane from "@/features/map/MapDetailsPane"; import { RootState } from "@/store"; import UpdateMapCentre from "@/features/map/UpdateMapCentre"; -import icon from "leaflet/dist/images/marker-icon.png"; +// import icon from "leaflet/dist/images/marker-icon.png"; import iconShadow from "leaflet/dist/images/marker-shadow.png"; import L from "leaflet"; +import iconMarker from 'leaflet/dist/images/marker-icon.png' -let DefaultIcon = L.icon({ - iconUrl: icon, - shadowUrl: iconShadow, -}); -L.marker.prototype.options.icon = DefaultIcon; +// import iconRetina from 'leaflet/dist/images/marker-icon-2x.png' + +const icon = L.icon({ + // Icon-retina makes icons double in size on local, so leaving out. + // iconRetinaUrl:iconRetina, + iconUrl: iconMarker, + shadowUrl: iconShadow +}); export default function MapPage() { @@ -141,6 +145,7 @@ export default function MapPage() { key={site.uuid} eventHandlers={{ click: onMarkerClick }} data-site={site} + icon={icon} > })} From 1195477f283ba3843decaa935b5df0c9764cef3f Mon Sep 17 00:00:00 2001 From: Adam Coard Date: Fri, 29 Sep 2023 08:59:51 -0700 Subject: [PATCH 100/194] Creating sub search module --- .../src/features/site-details/notations.tsx | 13 ++------ .../site-details/sub-search/SubSearch.tsx | 33 +++++++++++++++++++ .../sub-search/subsearch.module.css | 4 +++ 3 files changed, 39 insertions(+), 11 deletions(-) create mode 100644 frontend/site-search-frontend/src/features/site-details/sub-search/SubSearch.tsx create mode 100644 frontend/site-search-frontend/src/features/site-details/sub-search/subsearch.module.css diff --git a/frontend/site-search-frontend/src/features/site-details/notations.tsx b/frontend/site-search-frontend/src/features/site-details/notations.tsx index efbafff9..e15beedf 100644 --- a/frontend/site-search-frontend/src/features/site-details/notations.tsx +++ b/frontend/site-search-frontend/src/features/site-details/notations.tsx @@ -10,6 +10,7 @@ import { RootState } from '@/store'; import { updateSite } from '../simple-search/simple-search'; import { useEffect, useState } from 'react'; import SiteRegistryIcon from '@/components/SiteRegistryIcon'; +import SubSearch from './sub-search/SubSearch'; @@ -49,17 +50,7 @@ export default function Notations() { return (
-
-
- -
-
- - Date - ??? - -
-
+ {editMode && } diff --git a/frontend/site-search-frontend/src/features/site-details/sub-search/SubSearch.tsx b/frontend/site-search-frontend/src/features/site-details/sub-search/SubSearch.tsx new file mode 100644 index 00000000..37fcd822 --- /dev/null +++ b/frontend/site-search-frontend/src/features/site-details/sub-search/SubSearch.tsx @@ -0,0 +1,33 @@ +import { Dropdown, DropdownButton } from "react-bootstrap"; +import styles from './subsearch.module.css'; + +interface SubSearchProps { + label: string; + showResultsDropdown?: boolean +} + +export default function SubSearch({ label, showResultsDropdown = false }: SubSearchProps) { + return ( +
+ +
+
+ +
+
+ + Date + ??? + +
+ + {showResultsDropdown &&
+ + All + ??? + +
} +
+
+ ) +} \ No newline at end of file diff --git a/frontend/site-search-frontend/src/features/site-details/sub-search/subsearch.module.css b/frontend/site-search-frontend/src/features/site-details/sub-search/subsearch.module.css new file mode 100644 index 00000000..14034106 --- /dev/null +++ b/frontend/site-search-frontend/src/features/site-details/sub-search/subsearch.module.css @@ -0,0 +1,4 @@ +.searchBar { + background-color: var(--input-gray); + border: 1px solid black; +} \ No newline at end of file From ff8ce74e7ebfdf9a93fa8c5dad9b9f3b7ccae3e1 Mon Sep 17 00:00:00 2001 From: Adam Coard Date: Fri, 29 Sep 2023 09:35:13 -0700 Subject: [PATCH 101/194] Create re-usable SiteDetails table --- .../features/site-details/participants.tsx | 25 ++++++ .../site-details/table/SiteDetailsTable.tsx | 90 +++++++++++++++++++ 2 files changed, 115 insertions(+) create mode 100644 frontend/site-search-frontend/src/features/site-details/table/SiteDetailsTable.tsx diff --git a/frontend/site-search-frontend/src/features/site-details/participants.tsx b/frontend/site-search-frontend/src/features/site-details/participants.tsx index 38e4cf7d..2133f566 100644 --- a/frontend/site-search-frontend/src/features/site-details/participants.tsx +++ b/frontend/site-search-frontend/src/features/site-details/participants.tsx @@ -1,9 +1,34 @@ +import { Button } from "react-bootstrap"; +import SubSearch from "./sub-search/SubSearch"; +import { RootState } from "@/store"; +import { useSelector } from "react-redux"; +import SiteDetailsTable from "./table/SiteDetailsTable"; export default function Participants() { + const editMode = useSelector((state: RootState) => state.edit.editMode); return (

Site Participants go here

+ + + + + + +
) } \ No newline at end of file diff --git a/frontend/site-search-frontend/src/features/site-details/table/SiteDetailsTable.tsx b/frontend/site-search-frontend/src/features/site-details/table/SiteDetailsTable.tsx new file mode 100644 index 00000000..ee77ed8f --- /dev/null +++ b/frontend/site-search-frontend/src/features/site-details/table/SiteDetailsTable.tsx @@ -0,0 +1,90 @@ +import siteDetailsStyles from '@/pages/site-details.module.css' +import { RootState } from '@/store'; +import { Button, Form, Table } from 'react-bootstrap' +import { useSelector } from 'react-redux'; +import { TableEditItem } from '../TableEditItem'; +import SiteRegistryIcon from '@/components/SiteRegistryIcon'; + +interface SiteDetailsTableProps { + onClickAdd? + headers: { label: string, accessor: string}[] + // rows: any[]; + data: { + participant: string, + roles: string[], + startDate: string, + endDate: string, + notes: string, + siteRegistry: boolean + }[]; +} + + +// Main functionality this needs to integrate with: +// Site Registry togglez +// editMode + +export default function SiteDetailsTable({ onClickAdd, headers, data }: SiteDetailsTableProps) { + // const isMinistry = useSelector((state: RootState) => state.user.isMinistry); + const editMode = useSelector((state: RootState) => state.edit.editMode); + + + return ( +
+ {editMode &&
+
+ + + +
+
} + + + {/* TODO - Rip this out and make its own component, but how handle differing columns and fields elegantly? children props / slots most likely. */} + {/* SiteDetailsTable */} +
Notation Participants
+ + + + {editMode && } + {headers?.map((header, index) => )} + {editMode && } + + + + + {data?.map((row, index) => { + return ( + + {editMode && } + + {/* {headers?.map((header, index)) => { + // Need to match header based on accessor + )} + + {/* + */} + {editMode && } + + ) + })} + + {/* {notation.notationParticipants.map((participant, id) => { + return ( + + {editMode && } + + + {editMode && } + + ) + })} */} + + +
{header.label}SR
+ }} */} + + {headers?.map((header, index) => {row[header.accessor]}
+
+ ) +} \ No newline at end of file From 80246af2a86af8636d7c12d425e992d418714fd9 Mon Sep 17 00:00:00 2001 From: Adam Coard Date: Fri, 29 Sep 2023 09:45:59 -0700 Subject: [PATCH 102/194] Have Notations page using SiteDetailsTable too now, including state updates --- .../src/features/site-details/notations.tsx | 47 +++++-------------- .../site-details/table/SiteDetailsTable.tsx | 29 ++---------- 2 files changed, 14 insertions(+), 62 deletions(-) diff --git a/frontend/site-search-frontend/src/features/site-details/notations.tsx b/frontend/site-search-frontend/src/features/site-details/notations.tsx index e15beedf..e1b9b1a1 100644 --- a/frontend/site-search-frontend/src/features/site-details/notations.tsx +++ b/frontend/site-search-frontend/src/features/site-details/notations.tsx @@ -11,6 +11,7 @@ import { updateSite } from '../simple-search/simple-search'; import { useEffect, useState } from 'react'; import SiteRegistryIcon from '@/components/SiteRegistryIcon'; import SubSearch from './sub-search/SubSearch'; +import SiteDetailsTable from './table/SiteDetailsTable'; @@ -102,44 +103,18 @@ function NotationItem({ notation, index, onClickAddParticipant }: { notation: No
-
- {editMode &&
-
- - - -
-
} + { onClickAddParticipant({notationIndex: index})}} + /> - {/* TODO - Rip this out and make its own component, but how handle differing columns and fields elegantly? children props / slots most likely. */} - {/* SiteDetailsTable */} -
Notation Participants
- - - - {editMode && } - - - {editMode && } - - - - - {notation.notationParticipants.map((participant, id) => { - return ( - - {editMode && } - - - {editMode && } - - ) - })} - - -
NameRoleSR
-
+ +
) } diff --git a/frontend/site-search-frontend/src/features/site-details/table/SiteDetailsTable.tsx b/frontend/site-search-frontend/src/features/site-details/table/SiteDetailsTable.tsx index ee77ed8f..1344baa3 100644 --- a/frontend/site-search-frontend/src/features/site-details/table/SiteDetailsTable.tsx +++ b/frontend/site-search-frontend/src/features/site-details/table/SiteDetailsTable.tsx @@ -10,12 +10,9 @@ interface SiteDetailsTableProps { headers: { label: string, accessor: string}[] // rows: any[]; data: { - participant: string, - roles: string[], - startDate: string, - endDate: string, - notes: string, + roles?: string[], siteRegistry: boolean + [key:string]: any; }[]; } @@ -57,32 +54,12 @@ export default function SiteDetailsTable({ onClickAdd, headers, data }: SiteDeta return ( {editMode && } - - {/* {headers?.map((header, index)) => { - // Need to match header based on accessor - - }} */} - - {headers?.map((header, index) => {row[header.accessor]})} - - {/* - */} + {headers?.map((header, index) => )} {editMode && } ) })} - {/* {notation.notationParticipants.map((participant, id) => { - return ( - - {editMode && } - - - {editMode && } - - ) - })} */} -
From 946dc41a32c0ca383227209f5c18b547e4d12946 Mon Sep 17 00:00:00 2001 From: Adam Coard Date: Fri, 29 Sep 2023 09:59:48 -0700 Subject: [PATCH 103/194] Adjust styling for ministry contact in edit mode per Pavel --- .../src/features/site-details/notations.tsx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/frontend/site-search-frontend/src/features/site-details/notations.tsx b/frontend/site-search-frontend/src/features/site-details/notations.tsx index e1b9b1a1..ca4da82d 100644 --- a/frontend/site-search-frontend/src/features/site-details/notations.tsx +++ b/frontend/site-search-frontend/src/features/site-details/notations.tsx @@ -95,10 +95,10 @@ function NotationItem({ notation, index, onClickAddParticipant }: { notation: No - - - - + + + +
From 683ea33dd53e206c66eee880919d374de0f45e4c Mon Sep 17 00:00:00 2001 From: Adam Coard Date: Fri, 29 Sep 2023 10:00:02 -0700 Subject: [PATCH 104/194] Made table SR eye icon clickable per Pavel --- .../src/features/site-details/table/SiteDetailsTable.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/site-search-frontend/src/features/site-details/table/SiteDetailsTable.tsx b/frontend/site-search-frontend/src/features/site-details/table/SiteDetailsTable.tsx index 1344baa3..d2099d1d 100644 --- a/frontend/site-search-frontend/src/features/site-details/table/SiteDetailsTable.tsx +++ b/frontend/site-search-frontend/src/features/site-details/table/SiteDetailsTable.tsx @@ -3,7 +3,7 @@ import { RootState } from '@/store'; import { Button, Form, Table } from 'react-bootstrap' import { useSelector } from 'react-redux'; import { TableEditItem } from '../TableEditItem'; -import SiteRegistryIcon from '@/components/SiteRegistryIcon'; +import { SiteRegistryIconButton } from '@/components/SiteRegistryIcon'; interface SiteDetailsTableProps { onClickAdd? @@ -55,7 +55,7 @@ export default function SiteDetailsTable({ onClickAdd, headers, data }: SiteDeta {editMode && } {headers?.map((header, index) => )} - {editMode && } + {editMode && } ) })} From c13ee197c38a4d5fcfc5aba6cc958a9d9ccb0920 Mon Sep 17 00:00:00 2001 From: Adam Coard Date: Fri, 29 Sep 2023 11:21:31 -0700 Subject: [PATCH 105/194] Fix redux storing instances, by removing dates from JSON and only storing strings --- .../src/api/dummy-data.tsx | 76 +- .../site-search-frontend/src/api/sites.ts | 82 +- .../src/features/map/MapDetailsPane.tsx | 2 +- .../features/simple-search/search-results.tsx | 4 +- .../features/simple-search/simple-search.ts | 16 +- .../src/features/site-details/notations.tsx | 39 +- .../src/helpers/formatDateToString.ts | 3 + .../src/scripts/dummy-data.sites.json | 21288 +--------------- .../src/scripts/generate-dummy-data.ts | 5 +- 9 files changed, 159 insertions(+), 21356 deletions(-) create mode 100644 frontend/site-search-frontend/src/helpers/formatDateToString.ts diff --git a/frontend/site-search-frontend/src/api/dummy-data.tsx b/frontend/site-search-frontend/src/api/dummy-data.tsx index 2f46b39a..a24dbeed 100644 --- a/frontend/site-search-frontend/src/api/dummy-data.tsx +++ b/frontend/site-search-frontend/src/api/dummy-data.tsx @@ -1,5 +1,16 @@ import { faker } from '@faker-js/faker'; -import { type Notation, type Site } from './sites' +import { SiteParticipant, type Notation, type Site, AssociatedSite } from './sites' +// import formatDateToString from '@/helpers/formatDateToString'; +import formatDateToString from '../helpers/formatDateToString.ts' + +export function generate({ siteCount }): Site[] { + const output = Array.from({length: siteCount}, _ => createRandomSite()); + + // Update site.associatedSites + const outputWithAssociations = createSiteAssociations(output); + + return outputWithAssociations; +} export function createRandomSite(): Site { @@ -10,7 +21,7 @@ export function createRandomSite(): Site { // Lat and Longitude restricted to approximately BC (some Alberta, oceans, etc) latitude: faker.location.latitude({min: 48, max: 59}), longitude: faker.location.longitude({min: -139, max: -118}), - lastUpdated: faker.date.past({years: 10}), + lastUpdated: formatDateToString(faker.date.past({years: 10})), city: faker.location.city(), region: randomRegion(), @@ -21,9 +32,12 @@ export function createRandomSite(): Site { locationDescription: 'LAT/LONGS CONFIRMED USING ICIS MAY 16,2013', // Generate 1-5 notations - // notations: [] - // notations: Array.from({length: faker.number.int({min: 2, max: 5}) }, () => { return randomNotation() }) - notations: [randomNotation(), randomNotation()] + notations: Array.from({length: faker.number.int({min: 2, max: 5}) }, () => { return randomNotation() }), + participants: Array.from({length: faker.number.int({min: 2, max: 5}) }, () => { return randomSiteParticipant() }), + + // Associated Sites is generated after site generation with `createSiteAssociations()`, as we need siteIDs already gen'd. + associatedSites: [] + } } @@ -48,16 +62,56 @@ function randomNotation(): Notation { } return { - createdAt: faker.date.past({years: 10}), - completed: faker.date.past({years: 10}), - initiated: faker.date.past({years: 10}), + createdAt: formatDateToString(faker.date.past({years: 10})), + completed: formatDateToString(faker.date.past({years: 10})), + initiated: formatDateToString(faker.date.past({years: 10})), ministryContact: faker.person.lastName().toUpperCase() + " " + faker.person.firstName().toUpperCase(), notationClass: "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", note: '', notationType: 'CERTIFICATE OF COMPLIANCE REQUESTED', requestedActions: [''], - // notationParticipants: [ Array.from({ length: faker.number.int({min: 1, max: 5}, () => { }) }) ] - notationParticipants: Array.from({length: faker.number.int({min: 2, max: 5})}, () => {return randomNotationParticipant()}) - // notationParticipants: Array.from({length: 5}, () => {return randomNotationParticipant()}) + notationParticipants: Array.from({length: faker.number.int({min: 2, max: 5})}, () => {return randomNotationParticipant()}), + siteRegistry: faker.datatype.boolean(), } } + +function randomSiteParticipant(): SiteParticipant { + + return { + name: faker.helpers.arrayElement(['SHELL CANADA PRODUCTS', 'SNC-LAVALIN ENVIRONMENT INC', 'IPSUM', 'AMET, DOLOR SIT']), + endDate: formatDateToString(faker.date.past({years: 10})), + startDate: formatDateToString(faker.date.past({years: 10})), + notes: '', + roles: [faker.helpers.arrayElement(['ORGANIZATION', 'EMPLOYEE'])], + siteRegistry: faker.datatype.boolean() + } +} + +function createSiteAssociations(sites: Site[]): Site[] { + + // iterate through sites, get random site ids, and use those to create other ones + // make sure every site has 2-5 associations + const siteIDs = sites.map(x => x.siteID); + + const sitesWithAssociations = sites.map(site => { + + site.associatedSites = Array.from({length: faker.number.int({min: 1, max: 3})}, () => {return randomAssociation(siteIDs, site.siteID)}) + + return site; + }) + + return sitesWithAssociations; +} + +function randomAssociation(siteIDs: number[], parentSiteID: number): AssociatedSite { + const validSiteIDs = siteIDs.filter(x => x !== parentSiteID); + + return { + dateNoted: formatDateToString(faker.date.past({years: 10})), + notes: '', + parcelID: faker.number.int({min: 15192, max: 20999}).toString(), + siteID: faker.helpers.arrayElement(validSiteIDs).toString(), + siteRegistry: faker.datatype.boolean(), + } + +} \ No newline at end of file diff --git a/frontend/site-search-frontend/src/api/sites.ts b/frontend/site-search-frontend/src/api/sites.ts index 62e9ff4c..4a3fbd72 100644 --- a/frontend/site-search-frontend/src/api/sites.ts +++ b/frontend/site-search-frontend/src/api/sites.ts @@ -1,12 +1,15 @@ +interface canBeOnSiteRegistry { + siteRegistry: boolean; +} export class Site { - uuid?: string; + uuid: string; siteID: number; address: string; latitude: number; longitude: number; // lastUpdated: Date | string; - lastUpdated: Date; + lastUpdated: string; city: string; region: string; victoriaFile: string; @@ -14,20 +17,22 @@ export class Site { parcelIDs: number[]; locationDescription: string; - notations: Notation[] + notations: Notation[]; + participants: SiteParticipant[]; + associatedSites: AssociatedSite[] - constructor(data: Site) { - // Using "Object.assign()" to bypass having to assign all properties - // https://stackoverflow.com/questions/69291358/shortcut-syntax-to-class-constructor-from-typescript-interface - Object.assign(this, data); + // constructor(data: Site) { + // // Using "Object.assign()" to bypass having to assign all properties + // // https://stackoverflow.com/questions/69291358/shortcut-syntax-to-class-constructor-from-typescript-interface + // Object.assign(this, data); - // This "new Date" is necessary when loading JSON dummy data which stores date as a string - // This will likely have to change when integrating with API - this.lastUpdated = new Date(this.lastUpdated); + // // This "new Date" is necessary when loading JSON dummy data which stores date as a string + // // This will likely have to change when integrating with API + // // this.lastUpdated = new Date(this.lastUpdated); - // Initialize all dates inside notations too - this.notations = this.notations.map(note => new Notation(note)); - } + // // Initialize all dates inside notations too + // this.notations = this.notations.map(note => new Notation(note)); + // } } // interface OnSiteRegistry { @@ -35,32 +40,43 @@ export class Site { // } -export class Notation { - createdAt: Date; +export class Notation implements canBeOnSiteRegistry { + createdAt: string; // notationType: NOTATION_TYPES - notationType: 'CERTIFICATE OF COMPLIANCE ISSUED USING RISK BASED STANDARDS' | 'CERTIFICATE OF COMPLIANCE REQUESTED' - notationClass: "ENVIRONMENTAL MANAGEMENT ACT: GENERAL" - initiated: Date; - completed: Date; + notationType: 'CERTIFICATE OF COMPLIANCE ISSUED USING RISK BASED STANDARDS' | 'CERTIFICATE OF COMPLIANCE REQUESTED' | string + // notationClass: "ENVIRONMENTAL MANAGEMENT ACT: GENERAL" + notationClass: "ENVIRONMENTAL MANAGEMENT ACT: GENERAL" | string + initiated: string; + completed: string; ministryContact: string; note: string; requestedActions: string[] notationParticipants: {name: string, role: string, siteRegistry: boolean}[] + siteRegistry: boolean; - constructor(data: Notation) { - // See Site object for notes on constructor behaviour - Object.assign(this, data); - this.createdAt = new Date(this.createdAt); - this.initiated = new Date(this.initiated); - this.completed = new Date(this.completed); - } + // constructor(data: Notation) { + // // See Site object for notes on constructor behaviour + // Object.assign(this, data); + // // this.createdAt = new Date(this.createdAt); + // // this.initiated = new Date(this.initiated); + // // this.completed = new Date(this.completed); + // } } -// export enum NOTATION_TYPES { -// CERT_COMPLIANCE_ISSUED = 'CERTIFICATE OF COMPLIANCE ISSUED USING RISK BASED STANDARDS', -// CERT_COMPLIANCE_REQUESTED = 'CERTIFICATE OF COMPLIANCE REQUESTED' -// } -// export enum NOTATION_CLASS { -// ENV_GENERAL = 'ENVIRONMENTAL MANAGEMENT ACT: GENERAL' -// } \ No newline at end of file +export class SiteParticipant implements canBeOnSiteRegistry { + name: string; + roles: string[]; + startDate: string; + endDate: string; + notes: string; + siteRegistry: boolean; +} + +export class AssociatedSite implements canBeOnSiteRegistry { + siteID: string; + parcelID: string; + dateNoted: string; + notes: string; + siteRegistry: boolean; +} \ No newline at end of file diff --git a/frontend/site-search-frontend/src/features/map/MapDetailsPane.tsx b/frontend/site-search-frontend/src/features/map/MapDetailsPane.tsx index 5ab2ce43..4b8e5f4a 100644 --- a/frontend/site-search-frontend/src/features/map/MapDetailsPane.tsx +++ b/frontend/site-search-frontend/src/features/map/MapDetailsPane.tsx @@ -14,7 +14,7 @@ export default function MapDetailsPane({site, onClose}: {site: Site, onClose: Mo
-
Last Updated: {site?.lastUpdated.toISOString().split('T')[0]}
+
Last Updated: {site?.lastUpdated}
diff --git a/frontend/site-search-frontend/src/features/simple-search/search-results.tsx b/frontend/site-search-frontend/src/features/simple-search/search-results.tsx index 851cb79e..ac18a2c0 100644 --- a/frontend/site-search-frontend/src/features/simple-search/search-results.tsx +++ b/frontend/site-search-frontend/src/features/simple-search/search-results.tsx @@ -45,10 +45,10 @@ export default function SimpleSearchResults({ site, highlight, searchOption }: P - View Site Details + View Site Details View on Map - Last Updated: {site.lastUpdated.toISOString().split('T')[0]} + Last Updated: {site.lastUpdated}
) diff --git a/frontend/site-search-frontend/src/features/simple-search/simple-search.ts b/frontend/site-search-frontend/src/features/simple-search/simple-search.ts index c9a8c6e8..3988bb30 100644 --- a/frontend/site-search-frontend/src/features/simple-search/simple-search.ts +++ b/frontend/site-search-frontend/src/features/simple-search/simple-search.ts @@ -3,6 +3,7 @@ import { PayloadAction, createSlice } from '@reduxjs/toolkit' import siteDummyData from '@/scripts/dummy-data.sites.json'; import { Site } from '@/api/sites'; import { current } from '@reduxjs/toolkit' +import formatDateToString from '@/helpers/formatDateToString'; @@ -10,7 +11,7 @@ import { current } from '@reduxjs/toolkit' // Use `as any` to get around fact that 'lastUpdated' is a string, not a date. // Definitely causes redux issues though - https://redux.js.org/faq/organizing-state#can-i-put-functions-promises-or-other-non-serializable-items-in-my-store-state // Should potentially only initialize date object in the view, not the store? -const parsedDummyData: Site[] = siteDummyData.map(siteData => new Site((siteData as any))) +// const parsedDummyData: Site[] = siteDummyData.map(siteData => new Site((siteData as any))) // const addNotationBySiteIDNewTemp = (state, action) => { // const site: Site = state.value.find((todo) => todo.siteID === action.payload) @@ -34,15 +35,16 @@ const addNotationBySiteIDNewTemp = (state, action) => { // site.notations.push(); // site.notations = []; site.notations = [...site.notations, { - completed: new Date(), - createdAt: new Date(), - initiated: new Date(), + completed: formatDateToString(new Date()), + createdAt: formatDateToString(new Date()), + initiated: formatDateToString(new Date()), ministryContact: '', notationClass: 'ENVIRONMENTAL MANAGEMENT ACT: GENERAL', notationParticipants: [], notationType: 'CERTIFICATE OF COMPLIANCE ISSUED USING RISK BASED STANDARDS', note: '', - requestedActions: [] + requestedActions: [], + siteRegistry: false, }] // return state; // ???? can i do a ...spread patch in here? @@ -53,8 +55,8 @@ export const siteSlice = createSlice({ name: 'site', initialState: { // value: Array.from({length: 250}, _ => createRandomSite()) - value: parsedDummyData - // value: siteDummyData + // value: parsedDummyData + value: siteDummyData }, reducers: { add: () => console.log('site reducer add todo'), // Maybe not even necessary? SITE list won't mutate much, unlike site selection diff --git a/frontend/site-search-frontend/src/features/site-details/notations.tsx b/frontend/site-search-frontend/src/features/site-details/notations.tsx index ca4da82d..11ae22d1 100644 --- a/frontend/site-search-frontend/src/features/site-details/notations.tsx +++ b/frontend/site-search-frontend/src/features/site-details/notations.tsx @@ -12,6 +12,7 @@ import { useEffect, useState } from 'react'; import SiteRegistryIcon from '@/components/SiteRegistryIcon'; import SubSearch from './sub-search/SubSearch'; import SiteDetailsTable from './table/SiteDetailsTable'; +import formatDateToString from '@/helpers/formatDateToString'; @@ -24,17 +25,18 @@ export default function Notations() { function newNotation() { - const newNotation = new Notation({ - completed: new Date(), - createdAt: new Date(), - initiated: new Date(), + const newNotation: Notation = { + completed: formatDateToString(new Date), + createdAt: formatDateToString(new Date), + initiated: formatDateToString(new Date), ministryContact: '', notationClass: 'ENVIRONMENTAL MANAGEMENT ACT: GENERAL', notationParticipants: [], notationType: 'CERTIFICATE OF COMPLIANCE ISSUED USING RISK BASED STANDARDS', note: '', - requestedActions: [] - }) + requestedActions: [], + siteRegistry: false, + } const newSite: Site = {...site, notations: [newNotation, ...site.notations]} dispatch(updateSite(newSite)); @@ -42,8 +44,19 @@ export default function Notations() { function newParticipant({ notationIndex }){ const newParticipant = {name: '', role: '', siteRegistry: false}; - const newSite: Site = {...site, notations: [...site.notations]} - newSite.notations[notationIndex].notationParticipants = [...newSite.notations[notationIndex].notationParticipants, newParticipant] + const newSite: Site = { + ...site, + notations: site.notations.map((notation, index) => { + if (index === notationIndex) { + return { + ...notation, + notationParticipants: [...notation.notationParticipants, newParticipant], + }; + } + return notation; + }), + }; + dispatch(updateSite(newSite)) } @@ -71,8 +84,8 @@ function NotationItem({ notation, index, onClickAddParticipant }: { notation: No // Toggling these two makes it mirror exact state, but it shouldn't, instead should be for batch changing of them. // const defaultSelectionState: {index: number, siteRegistry: boolean}[] = notation.notationParticipants.map((x,index) => {return {index, siteRegistry: x.siteRegistry}} ) - const defaultSelectionState: {index: number, siteRegistry: boolean}[] = notation.notationParticipants.map((x,index) => {return {index, siteRegistry: false}} ) - const [participationSelection, setParticipationSeleciton] = useState(defaultSelectionState) + // const defaultSelectionState: {index: number, siteRegistry: boolean}[] = notation.notationParticipants.map((x,index) => {return {index, siteRegistry: false}} ) + // const [participationSelection, setParticipationSeleciton] = useState(defaultSelectionState) // const @@ -84,7 +97,7 @@ function NotationItem({ notation, index, onClickAddParticipant }: { notation: No

Notation {index + 1}

- {isMinistry &&

Created: {notation.createdAt.toISOString().split('T')[0]}

} + {isMinistry &&

Created: {notation.createdAt}

}
{editMode &&
@@ -95,8 +108,8 @@ function NotationItem({ notation, index, onClickAddParticipant }: { notation: No - - + + diff --git a/frontend/site-search-frontend/src/helpers/formatDateToString.ts b/frontend/site-search-frontend/src/helpers/formatDateToString.ts new file mode 100644 index 00000000..b637ef4c --- /dev/null +++ b/frontend/site-search-frontend/src/helpers/formatDateToString.ts @@ -0,0 +1,3 @@ +export default function formatDateToString(date: Date): string { + return date?.toISOString().split('T')[0] +} \ No newline at end of file diff --git a/frontend/site-search-frontend/src/scripts/dummy-data.sites.json b/frontend/site-search-frontend/src/scripts/dummy-data.sites.json index be750e7d..6b41d66c 100644 --- a/frontend/site-search-frontend/src/scripts/dummy-data.sites.json +++ b/frontend/site-search-frontend/src/scripts/dummy-data.sites.json @@ -1,21287 +1 @@ -[ - { - "uuid": "77e60efc-76b6-49a0-87be-1ae5a11bf0bf", - "siteID": 15346, - "address": "1346 Lemke Shore", - "latitude": 55.514, - "longitude": -136.1558, - "lastUpdated": "2015-06-11T11:57:08.216Z", - "city": "Lake Nikita", - "region": "Vancouver Island/Coast", - "victoriaFile": "26250-20/1151", - "regionalFile": "N/A", - "parcelIDs": [ - 5254879, - 7892357, - 5119583, - 784709, - 422454 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2022-11-27T16:26:56.519Z", - "completed": "2023-01-28T14:24:48.503Z", - "initiated": "2016-06-21T02:38:53.200Z", - "ministryContact": "MARVIN CYRUS", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - } - ] - }, - { - "createdAt": "2018-10-19T13:50:08.789Z", - "completed": "2016-05-18T01:56:28.837Z", - "initiated": "2018-01-22T21:46:40.490Z", - "ministryContact": "HARBER OSBORNE", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - } - ] - } - ] - }, - { - "uuid": "0f69ba87-693a-47c3-a115-eb2676271b2b", - "siteID": 20084, - "address": "8298 Heller Street", - "latitude": 56.609, - "longitude": -132.99, - "lastUpdated": "2014-08-05T08:37:08.767Z", - "city": "Chadrickbury", - "region": "Thompson-Okanagan", - "victoriaFile": "26250-20/12613", - "regionalFile": "N/A", - "parcelIDs": [ - 2776558, - 5248683, - 9650620, - 8653527, - 6733363 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2015-11-21T05:49:15.366Z", - "completed": "2018-08-26T13:19:35.804Z", - "initiated": "2017-08-04T09:19:57.126Z", - "ministryContact": "HAMMES SYLVIA", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - } - ] - }, - { - "createdAt": "2015-12-22T07:00:54.167Z", - "completed": "2016-01-30T11:54:00.777Z", - "initiated": "2014-01-13T14:08:20.122Z", - "ministryContact": "SCHADEN YVONNE", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - } - ] - } - ] - }, - { - "uuid": "96d7d2a9-6996-4665-af94-7cdda4751d39", - "siteID": 20458, - "address": "9598 D'Amore Run", - "latitude": 52.7216, - "longitude": -133.5147, - "lastUpdated": "2019-05-21T16:36:48.405Z", - "city": "North Stellafield", - "region": "Thompson-Okanagan", - "victoriaFile": "26250-20/10188", - "regionalFile": "N/A", - "parcelIDs": [ - 6108130, - 7009872, - 2287427, - 1986642, - 1294717 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2016-01-16T21:44:48.481Z", - "completed": "2020-03-07T06:35:19.610Z", - "initiated": "2018-02-08T02:07:15.859Z", - "ministryContact": "MOHR-SCHULTZ LUCIENNE", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - } - ] - }, - { - "createdAt": "2020-06-06T07:32:04.503Z", - "completed": "2015-08-22T00:11:25.596Z", - "initiated": "2021-02-04T05:53:29.456Z", - "ministryContact": "O'REILLY SARINA", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - } - ] - } - ] - }, - { - "uuid": "93681a02-2e17-484d-a05a-a58ed4b17bf2", - "siteID": 20249, - "address": "73064 Clint Turnpike", - "latitude": 56.9341, - "longitude": -126.902, - "lastUpdated": "2016-05-24T01:43:58.045Z", - "city": "Vacaville", - "region": "Mainland/Southwest", - "victoriaFile": "26250-20/6451", - "regionalFile": "N/A", - "parcelIDs": [ - 9468024, - 2503798, - 1010656, - 3135289, - 9823480 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2023-05-09T01:12:54.322Z", - "completed": "2015-11-01T01:20:18.243Z", - "initiated": "2014-10-20T18:13:04.534Z", - "ministryContact": "BOEHM SYDNEY", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - } - ] - }, - { - "createdAt": "2017-07-03T18:34:23.117Z", - "completed": "2014-12-03T08:59:56.339Z", - "initiated": "2019-07-30T01:50:49.386Z", - "ministryContact": "MILLER BERTRAM", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - } - ] - } - ] - }, - { - "uuid": "1cf0e3a2-b8f4-4e2c-bd66-83ba739462a2", - "siteID": 19791, - "address": "21084 Hamill Summit", - "latitude": 55.7126, - "longitude": -122.5031, - "lastUpdated": "2018-04-24T07:13:32.130Z", - "city": "Thompsonfield", - "region": "Cariboo", - "victoriaFile": "26250-20/17294", - "regionalFile": "N/A", - "parcelIDs": [ - 8060807, - 9584368, - 7083858, - 4573428, - 9997813 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2020-02-24T08:28:19.385Z", - "completed": "2014-11-26T21:13:30.548Z", - "initiated": "2016-01-08T13:10:27.607Z", - "ministryContact": "ADAMS ANTWAN", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - } - ] - }, - { - "createdAt": "2019-08-19T07:21:56.376Z", - "completed": "2021-02-28T16:01:52.199Z", - "initiated": "2022-10-01T17:31:34.871Z", - "ministryContact": "MORAR OTHA", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - } - ] - } - ] - }, - { - "uuid": "9b410183-a330-40fa-9304-f0627e1cfc72", - "siteID": 15607, - "address": "99654 Osinski Turnpike", - "latitude": 50.2263, - "longitude": -122.7476, - "lastUpdated": "2021-06-11T01:55:03.068Z", - "city": "Juwanshire", - "region": "Mainland/Southwest", - "victoriaFile": "26250-20/7292", - "regionalFile": "N/A", - "parcelIDs": [ - 834062, - 2773299, - 4903669, - 8023293, - 794464 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2017-05-06T04:49:49.152Z", - "completed": "2020-02-24T17:32:51.884Z", - "initiated": "2023-06-23T04:32:24.674Z", - "ministryContact": "EBERT ROGELIO", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - } - ] - }, - { - "createdAt": "2020-08-14T19:05:52.729Z", - "completed": "2017-04-17T19:00:35.647Z", - "initiated": "2020-04-10T04:45:01.062Z", - "ministryContact": "SKILES WANDA", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - } - ] - } - ] - }, - { - "uuid": "f2af62fa-40fa-48e4-9a08-302ead625cb9", - "siteID": 15794, - "address": "920 Bogan Hollow", - "latitude": 50.5026, - "longitude": -125.9227, - "lastUpdated": "2023-03-24T02:34:11.619Z", - "city": "Pfefferfort", - "region": "Thompson-Okanagan", - "victoriaFile": "26250-20/15428", - "regionalFile": "N/A", - "parcelIDs": [ - 2536636, - 7674209, - 575990, - 3179022, - 391584 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2015-10-20T11:39:37.146Z", - "completed": "2019-01-08T16:14:03.906Z", - "initiated": "2016-05-17T20:33:41.254Z", - "ministryContact": "BROWN ALDA", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - } - ] - }, - { - "createdAt": "2020-02-15T22:55:32.959Z", - "completed": "2023-02-22T23:40:09.327Z", - "initiated": "2018-05-22T00:20:38.271Z", - "ministryContact": "DICKENS GILBERTO", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - } - ] - } - ] - }, - { - "uuid": "5bbb7a6d-a761-43b1-851b-dfcf69268414", - "siteID": 19816, - "address": "27039 Gutkowski Mills", - "latitude": 50.4395, - "longitude": -126.1144, - "lastUpdated": "2022-08-08T10:52:56.385Z", - "city": "Miami Gardens", - "region": "Vancouver Island/Coast", - "victoriaFile": "26250-20/14725", - "regionalFile": "N/A", - "parcelIDs": [ - 5090618, - 7469594, - 8956198, - 4126500, - 2349152 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2022-12-02T17:25:49.397Z", - "completed": "2018-08-25T04:54:58.398Z", - "initiated": "2020-12-19T14:04:40.348Z", - "ministryContact": "KEMMER RAHUL", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - } - ] - }, - { - "createdAt": "2023-04-20T23:27:44.849Z", - "completed": "2020-05-10T16:50:21.134Z", - "initiated": "2019-03-06T14:12:38.687Z", - "ministryContact": "MURRAY JAZLYN", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - } - ] - } - ] - }, - { - "uuid": "fa38621e-cc61-4bd2-9697-f7aeb9921b37", - "siteID": 19585, - "address": "9557 Roxanne Orchard", - "latitude": 53.0274, - "longitude": -131.7276, - "lastUpdated": "2018-07-28T22:33:27.572Z", - "city": "Paradise", - "region": "Thompson-Okanagan", - "victoriaFile": "26250-20/19329", - "regionalFile": "N/A", - "parcelIDs": [ - 8609871, - 834149, - 5159023, - 6166304, - 9646932 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2018-07-13T13:16:35.354Z", - "completed": "2015-04-13T05:00:24.714Z", - "initiated": "2015-03-31T10:42:10.381Z", - "ministryContact": "LUETTGEN ALANA", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - } - ] - }, - { - "createdAt": "2017-10-21T22:01:52.042Z", - "completed": "2020-03-02T09:37:17.895Z", - "initiated": "2014-04-21T06:34:28.708Z", - "ministryContact": "BORER MOSSIE", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - } - ] - } - ] - }, - { - "uuid": "04ea18d0-9a64-4259-8cd9-4bdf8affbbba", - "siteID": 17626, - "address": "59742 Eldridge Islands", - "latitude": 56.6024, - "longitude": -136.5411, - "lastUpdated": "2022-07-12T09:38:40.639Z", - "city": "East Ineshaven", - "region": " North Coast", - "victoriaFile": "26250-20/8259", - "regionalFile": "N/A", - "parcelIDs": [ - 861569, - 2140028, - 2316202, - 6708000, - 1114568 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2023-01-01T14:59:41.870Z", - "completed": "2014-03-18T04:59:28.958Z", - "initiated": "2019-03-20T14:27:44.742Z", - "ministryContact": "MONAHAN BRADY", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - } - ] - }, - { - "createdAt": "2014-10-17T13:53:35.847Z", - "completed": "2015-03-08T23:04:31.415Z", - "initiated": "2015-08-02T07:43:36.856Z", - "ministryContact": "GUTKOWSKI KACI", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - } - ] - } - ] - }, - { - "uuid": "82967980-0b32-42f4-9dd6-206aff1e57b0", - "siteID": 18844, - "address": "2076 Lorenzo Unions", - "latitude": 55.2113, - "longitude": -119.9299, - "lastUpdated": "2020-08-24T04:57:00.511Z", - "city": "Kossview", - "region": "Kootenay", - "victoriaFile": "26250-20/10201", - "regionalFile": "N/A", - "parcelIDs": [ - 3731271, - 8078208, - 3363942, - 1756644, - 2767404 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2018-05-20T06:56:29.925Z", - "completed": "2022-11-20T22:05:58.138Z", - "initiated": "2020-11-27T19:24:16.233Z", - "ministryContact": "VON ENA", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - } - ] - }, - { - "createdAt": "2016-08-24T12:09:36.651Z", - "completed": "2021-07-09T18:33:00.995Z", - "initiated": "2019-09-17T23:02:28.419Z", - "ministryContact": "VON BERNHARD", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - } - ] - } - ] - }, - { - "uuid": "ceaa179c-485c-4f8d-ad3b-d2b9c5f589a2", - "siteID": 18013, - "address": "7660 McClure Glens", - "latitude": 52.914, - "longitude": -123.5127, - "lastUpdated": "2022-01-24T02:24:16.061Z", - "city": "Fort Clevestad", - "region": " North Coast", - "victoriaFile": "26250-20/983", - "regionalFile": "N/A", - "parcelIDs": [ - 4258482, - 5529423, - 4059202, - 5809940, - 8750316 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2019-11-26T22:36:41.559Z", - "completed": "2014-04-26T01:18:39.440Z", - "initiated": "2015-12-17T10:03:43.997Z", - "ministryContact": "HICKLE GARETT", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - } - ] - }, - { - "createdAt": "2014-09-24T13:17:59.354Z", - "completed": "2014-04-27T21:43:03.653Z", - "initiated": "2021-09-17T18:58:54.673Z", - "ministryContact": "CROOKS BUDDY", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - } - ] - } - ] - }, - { - "uuid": "8cae0aa1-df2b-4a89-907c-4505ad6b4c88", - "siteID": 20422, - "address": "50974 Beer Circle", - "latitude": 51.8344, - "longitude": -125.5565, - "lastUpdated": "2014-10-11T16:36:17.560Z", - "city": "South Delphiaboro", - "region": "Mainland/Southwest", - "victoriaFile": "26250-20/4720", - "regionalFile": "N/A", - "parcelIDs": [ - 7024731, - 8970498, - 4174610, - 5345021, - 2002212 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2022-04-12T10:25:22.620Z", - "completed": "2020-09-02T08:36:30.518Z", - "initiated": "2018-09-12T01:03:14.867Z", - "ministryContact": "YOST DANNY", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - } - ] - }, - { - "createdAt": "2020-05-15T13:26:59.374Z", - "completed": "2015-04-30T06:09:44.977Z", - "initiated": "2019-09-28T00:14:46.857Z", - "ministryContact": "EMMERICH MELISA", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - } - ] - } - ] - }, - { - "uuid": "2bdca970-140e-4c07-9982-ded3d8eefaef", - "siteID": 20997, - "address": "54021 Parker Springs", - "latitude": 52.9241, - "longitude": -124.1475, - "lastUpdated": "2018-05-02T15:21:51.906Z", - "city": "Fort Lornaburgh", - "region": "Thompson-Okanagan", - "victoriaFile": "26250-20/9079", - "regionalFile": "N/A", - "parcelIDs": [ - 8584300, - 9383347, - 7692152, - 9227119, - 3319635 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2021-05-19T16:20:57.065Z", - "completed": "2015-06-05T17:16:57.468Z", - "initiated": "2021-07-11T21:10:17.582Z", - "ministryContact": "LUBOWITZ JOYCE", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - } - ] - }, - { - "createdAt": "2014-04-28T03:38:51.227Z", - "completed": "2015-11-04T22:54:13.262Z", - "initiated": "2021-11-07T20:14:32.955Z", - "ministryContact": "JAST WYMAN", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - } - ] - } - ] - }, - { - "uuid": "c21f031b-3a93-48f0-a715-1e8729b27d2d", - "siteID": 15855, - "address": "3513 Bergstrom Place", - "latitude": 51.8512, - "longitude": -131.5139, - "lastUpdated": "2021-04-30T02:58:56.366Z", - "city": "Trompland", - "region": " North Coast", - "victoriaFile": "26250-20/14793", - "regionalFile": "N/A", - "parcelIDs": [ - 7404662, - 5393877, - 6828923, - 5961907, - 6646166 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2019-04-01T17:53:16.002Z", - "completed": "2016-10-17T14:11:21.743Z", - "initiated": "2019-02-13T18:50:53.130Z", - "ministryContact": "OKUNEVA ABDULLAH", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - } - ] - }, - { - "createdAt": "2022-08-08T22:04:55.781Z", - "completed": "2020-06-08T11:08:06.762Z", - "initiated": "2020-12-09T11:15:45.558Z", - "ministryContact": "KOELPIN GERRY", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - } - ] - } - ] - }, - { - "uuid": "5b6b01cb-3d6a-497c-b722-389b2205a34b", - "siteID": 15195, - "address": "21630 Considine Passage", - "latitude": 51.8463, - "longitude": -126.6231, - "lastUpdated": "2022-02-11T22:26:49.972Z", - "city": "North Baby", - "region": "Cariboo", - "victoriaFile": "26250-20/5281", - "regionalFile": "N/A", - "parcelIDs": [ - 2588389, - 3832259, - 2076063, - 8721752, - 6142464 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2017-01-11T06:56:44.317Z", - "completed": "2020-05-18T09:54:11.483Z", - "initiated": "2021-01-05T13:37:58.989Z", - "ministryContact": "MCKENZIE ALLY", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - } - ] - }, - { - "createdAt": "2021-06-16T18:56:35.138Z", - "completed": "2019-01-15T18:16:03.721Z", - "initiated": "2015-06-07T04:55:42.577Z", - "ministryContact": "BEER MARGARETE", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - } - ] - } - ] - }, - { - "uuid": "32637142-9eab-4632-a490-33c707747db0", - "siteID": 15331, - "address": "13569 Miller Haven", - "latitude": 51.5337, - "longitude": -119.5712, - "lastUpdated": "2017-08-29T19:36:44.349Z", - "city": "Lancaster", - "region": "Mainland/Southwest", - "victoriaFile": "26250-20/15770", - "regionalFile": "N/A", - "parcelIDs": [ - 9544598, - 3860857, - 3124335, - 1610291, - 7743182 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2015-06-18T10:28:19.099Z", - "completed": "2017-08-14T09:07:00.012Z", - "initiated": "2015-11-26T03:44:29.430Z", - "ministryContact": "HAYES PINK", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - } - ] - }, - { - "createdAt": "2018-09-23T04:41:03.566Z", - "completed": "2016-08-17T01:30:46.250Z", - "initiated": "2020-02-29T11:31:11.511Z", - "ministryContact": "CONNELLY HENRI", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - } - ] - } - ] - }, - { - "uuid": "95dd1992-2eea-49e4-9b61-326707dc9726", - "siteID": 15549, - "address": "380 Rex Fields", - "latitude": 54.898, - "longitude": -132.9975, - "lastUpdated": "2019-04-27T12:00:16.374Z", - "city": "Rubieton", - "region": "Kootenay", - "victoriaFile": "26250-20/18563", - "regionalFile": "N/A", - "parcelIDs": [ - 3420886, - 9776250, - 8153113, - 206756, - 4171721 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2014-07-30T05:08:59.627Z", - "completed": "2021-10-04T01:24:33.832Z", - "initiated": "2016-12-30T19:27:59.221Z", - "ministryContact": "JOHNS OTIS", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - } - ] - }, - { - "createdAt": "2021-06-21T02:08:48.098Z", - "completed": "2020-01-21T20:22:10.642Z", - "initiated": "2017-01-31T07:09:35.619Z", - "ministryContact": "KUTCH CHRIST", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - } - ] - } - ] - }, - { - "uuid": "feb2244f-3315-4052-92ca-5993b3200fe9", - "siteID": 19657, - "address": "12421 Fanny Camp", - "latitude": 48.9859, - "longitude": -119.2939, - "lastUpdated": "2021-09-19T03:52:05.463Z", - "city": "North Colleen", - "region": " North Coast", - "victoriaFile": "26250-20/15056", - "regionalFile": "N/A", - "parcelIDs": [ - 2844847, - 6566583, - 5479352, - 5200700, - 4269763 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2014-11-19T07:43:44.445Z", - "completed": "2023-09-01T21:48:34.383Z", - "initiated": "2021-07-08T18:25:04.712Z", - "ministryContact": "SPENCER CATHY", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - } - ] - }, - { - "createdAt": "2022-07-14T12:49:23.430Z", - "completed": "2023-01-25T05:19:33.134Z", - "initiated": "2016-01-01T05:33:11.564Z", - "ministryContact": "MERTZ ABAGAIL", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - } - ] - } - ] - }, - { - "uuid": "d22b467c-7ff8-4d94-a5d0-3a5647bc09f4", - "siteID": 15718, - "address": "62580 Reichert Ford", - "latitude": 52.6168, - "longitude": -138.2064, - "lastUpdated": "2014-06-21T08:30:00.460Z", - "city": "Reyesfield", - "region": "Vancouver Island/Coast", - "victoriaFile": "26250-20/10443", - "regionalFile": "N/A", - "parcelIDs": [ - 1280732, - 5129308, - 3209912, - 6633636, - 515433 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2018-01-19T12:57:45.790Z", - "completed": "2021-11-07T16:06:46.059Z", - "initiated": "2022-09-05T22:08:08.050Z", - "ministryContact": "MILLER EARNESTINE", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - } - ] - }, - { - "createdAt": "2019-06-17T00:08:17.508Z", - "completed": "2016-12-14T00:30:59.612Z", - "initiated": "2023-09-13T01:01:52.223Z", - "ministryContact": "SKILES MOLLY", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - } - ] - } - ] - }, - { - "uuid": "a7ca3fd8-7019-4381-b35a-49edd6a62eca", - "siteID": 15823, - "address": "73269 Angus Row", - "latitude": 49.9428, - "longitude": -135.985, - "lastUpdated": "2018-07-04T03:51:26.396Z", - "city": "Abrahamboro", - "region": " North Coast", - "victoriaFile": "26250-20/4440", - "regionalFile": "N/A", - "parcelIDs": [ - 627440, - 8900577, - 2952601, - 4014657, - 4923555 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2021-09-14T11:29:21.174Z", - "completed": "2021-08-07T15:25:24.445Z", - "initiated": "2022-07-19T13:27:43.346Z", - "ministryContact": "RAYNOR RIVER", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - } - ] - }, - { - "createdAt": "2020-12-14T00:04:02.474Z", - "completed": "2013-11-25T03:07:47.862Z", - "initiated": "2014-05-30T19:35:25.501Z", - "ministryContact": "METZ EMANUEL", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - } - ] - } - ] - }, - { - "uuid": "ec7fc26e-6666-49d8-9dcd-3f7389a058d8", - "siteID": 19728, - "address": "166 Leuschke Via", - "latitude": 55.8942, - "longitude": -132.9537, - "lastUpdated": "2015-07-09T04:36:02.930Z", - "city": "Wadeville", - "region": "Vancouver Island/Coast", - "victoriaFile": "26250-20/3216", - "regionalFile": "N/A", - "parcelIDs": [ - 496221, - 7507606, - 7266874, - 239705, - 1633683 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2021-07-15T02:58:26.019Z", - "completed": "2017-10-16T01:35:28.548Z", - "initiated": "2016-10-31T11:45:18.471Z", - "ministryContact": "SCHADEN BREANNE", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - } - ] - }, - { - "createdAt": "2022-09-02T21:23:33.610Z", - "completed": "2016-02-24T09:08:30.034Z", - "initiated": "2023-03-16T14:54:18.169Z", - "ministryContact": "LEFFLER ELSA", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - } - ] - } - ] - }, - { - "uuid": "c9675cec-6adc-41b5-b071-c6f94b26e021", - "siteID": 20187, - "address": "133 Stan Loop", - "latitude": 51.7423, - "longitude": -126.6668, - "lastUpdated": "2015-03-12T17:00:06.301Z", - "city": "Angelitashire", - "region": "Mainland/Southwest", - "victoriaFile": "26250-20/2226", - "regionalFile": "N/A", - "parcelIDs": [ - 695623, - 1830143, - 8847064, - 3760438, - 9698233 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2014-03-17T19:31:57.308Z", - "completed": "2016-10-27T23:57:55.913Z", - "initiated": "2017-03-20T03:01:19.362Z", - "ministryContact": "O'REILLY KADEN", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - } - ] - }, - { - "createdAt": "2021-09-05T16:51:54.832Z", - "completed": "2017-08-10T01:35:51.087Z", - "initiated": "2020-08-27T07:28:15.817Z", - "ministryContact": "GREENHOLT-BOSCO EMILE", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - } - ] - } - ] - }, - { - "uuid": "fa2830b3-9d94-443c-94a8-9dd22bc96771", - "siteID": 20304, - "address": "37129 Schmidt Brooks", - "latitude": 58.9705, - "longitude": -126.483, - "lastUpdated": "2016-04-05T22:09:10.178Z", - "city": "Racine", - "region": "Cariboo", - "victoriaFile": "26250-20/4549", - "regionalFile": "N/A", - "parcelIDs": [ - 9968544, - 3027704, - 2231146, - 4514543, - 2623162 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2022-02-16T12:02:56.869Z", - "completed": "2017-09-16T12:18:27.038Z", - "initiated": "2014-10-24T14:26:09.214Z", - "ministryContact": "CARTWRIGHT ASHA", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - } - ] - }, - { - "createdAt": "2021-02-10T22:03:01.284Z", - "completed": "2020-08-27T12:48:33.246Z", - "initiated": "2023-01-17T21:04:50.932Z", - "ministryContact": "GRANT DAIJA", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - } - ] - } - ] - }, - { - "uuid": "876115f4-512e-41db-a127-e2f01f1374f9", - "siteID": 20518, - "address": "45897 Abernathy Lake", - "latitude": 54.3164, - "longitude": -136.6999, - "lastUpdated": "2014-09-17T12:23:33.435Z", - "city": "West Ivahburgh", - "region": "Mainland/Southwest", - "victoriaFile": "26250-20/17578", - "regionalFile": "N/A", - "parcelIDs": [ - 2772919, - 7231006, - 1613806, - 902280, - 3330722 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2018-11-06T19:25:22.179Z", - "completed": "2022-07-14T04:07:31.359Z", - "initiated": "2020-02-16T09:59:20.258Z", - "ministryContact": "TRANTOW DAISY", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - } - ] - }, - { - "createdAt": "2018-01-12T02:57:21.097Z", - "completed": "2016-11-12T10:57:52.833Z", - "initiated": "2013-10-24T13:25:12.109Z", - "ministryContact": "WILL ABBY", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - } - ] - } - ] - }, - { - "uuid": "57c0ecb7-7059-495e-afcb-3b512a0b9733", - "siteID": 15276, - "address": "855 Walker Fords", - "latitude": 56.1668, - "longitude": -138.6423, - "lastUpdated": "2019-11-30T23:57:09.102Z", - "city": "North Randi", - "region": "Thompson-Okanagan", - "victoriaFile": "26250-20/17559", - "regionalFile": "N/A", - "parcelIDs": [ - 7653274, - 104871, - 7577741, - 8648292, - 9024588 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2016-05-29T16:48:47.308Z", - "completed": "2014-11-02T04:04:26.626Z", - "initiated": "2016-04-27T17:19:34.027Z", - "ministryContact": "WEHNER JANICK", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - } - ] - }, - { - "createdAt": "2016-07-26T22:26:03.544Z", - "completed": "2021-08-29T00:12:30.057Z", - "initiated": "2022-08-27T13:33:34.355Z", - "ministryContact": "DICKENS FREEDA", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - } - ] - } - ] - }, - { - "uuid": "94ec635d-b135-4cfc-be2a-78f9e27797db", - "siteID": 17759, - "address": "26674 Abdiel Parkways", - "latitude": 49.1426, - "longitude": -122.2279, - "lastUpdated": "2023-08-01T01:14:17.200Z", - "city": "Bossier City", - "region": "Vancouver Island/Coast", - "victoriaFile": "26250-20/7519", - "regionalFile": "N/A", - "parcelIDs": [ - 6173659, - 5349984, - 7365591, - 3245979, - 5738068 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2021-09-01T20:46:48.962Z", - "completed": "2019-11-25T10:52:38.372Z", - "initiated": "2018-06-30T07:27:17.952Z", - "ministryContact": "FEENEY DESTINEE", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - } - ] - }, - { - "createdAt": "2022-08-03T22:55:12.971Z", - "completed": "2021-07-26T11:25:46.451Z", - "initiated": "2022-07-03T10:12:19.499Z", - "ministryContact": "KIRLIN ELADIO", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - } - ] - } - ] - }, - { - "uuid": "afc258fd-a94b-4276-902e-400d40ecca98", - "siteID": 19849, - "address": "531 Nona Spring", - "latitude": 51.5455, - "longitude": -124.0968, - "lastUpdated": "2019-09-01T12:48:15.659Z", - "city": "Doylebury", - "region": "Kootenay", - "victoriaFile": "26250-20/7443", - "regionalFile": "N/A", - "parcelIDs": [ - 5928452, - 9169878, - 142423, - 2763821, - 8660505 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2022-01-29T06:06:00.254Z", - "completed": "2019-05-05T01:50:17.597Z", - "initiated": "2017-11-28T04:49:04.604Z", - "ministryContact": "CASPER WALTON", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - } - ] - }, - { - "createdAt": "2017-07-21T09:56:07.894Z", - "completed": "2014-07-30T04:26:58.124Z", - "initiated": "2014-12-20T15:51:10.726Z", - "ministryContact": "HOEGER SASHA", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - } - ] - } - ] - }, - { - "uuid": "ae6ddf1c-871c-46c7-a9b9-4ee486bf0cc8", - "siteID": 17566, - "address": "5584 Kaylee Loop", - "latitude": 57.2157, - "longitude": -134.9497, - "lastUpdated": "2014-08-16T14:39:19.545Z", - "city": "Windlerstead", - "region": "Mainland/Southwest", - "victoriaFile": "26250-20/4237", - "regionalFile": "N/A", - "parcelIDs": [ - 188532, - 212671, - 8246308, - 9004842, - 1906369 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2016-09-11T11:08:27.163Z", - "completed": "2021-06-28T03:30:08.719Z", - "initiated": "2022-02-04T08:12:15.028Z", - "ministryContact": "YOST BRIAN", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - } - ] - }, - { - "createdAt": "2021-04-29T14:21:48.616Z", - "completed": "2020-05-06T14:48:39.596Z", - "initiated": "2023-05-30T19:57:30.730Z", - "ministryContact": "MUELLER JAILYN", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - } - ] - } - ] - }, - { - "uuid": "55a76e35-f481-450e-ae10-9e46c06a475b", - "siteID": 16106, - "address": "88908 Evan Trafficway", - "latitude": 49.4606, - "longitude": -124.2826, - "lastUpdated": "2016-11-21T14:09:08.107Z", - "city": "Hermistonland", - "region": "Mainland/Southwest", - "victoriaFile": "26250-20/15269", - "regionalFile": "N/A", - "parcelIDs": [ - 2804584, - 7256050, - 2596956, - 426247, - 5939671 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2014-12-30T13:00:19.008Z", - "completed": "2020-02-20T13:08:29.304Z", - "initiated": "2016-12-26T21:13:39.988Z", - "ministryContact": "LEDNER ITZEL", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - } - ] - }, - { - "createdAt": "2014-06-10T03:38:38.818Z", - "completed": "2022-12-31T23:56:08.614Z", - "initiated": "2022-03-21T23:43:39.319Z", - "ministryContact": "HESSEL EVANS", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - } - ] - } - ] - }, - { - "uuid": "4bd38702-744e-4b89-ae6d-1788d8dd3b80", - "siteID": 20690, - "address": "7264 Howell Corners", - "latitude": 49.5792, - "longitude": -126.7506, - "lastUpdated": "2013-11-18T12:27:56.582Z", - "city": "South Eldon", - "region": "Mainland/Southwest", - "victoriaFile": "26250-20/13580", - "regionalFile": "N/A", - "parcelIDs": [ - 1352582, - 7311252, - 7514094, - 4037923, - 2388813 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2016-10-27T13:40:11.911Z", - "completed": "2020-06-11T17:52:00.758Z", - "initiated": "2018-08-30T20:40:10.849Z", - "ministryContact": "STOLTENBERG MARCELLE", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - } - ] - }, - { - "createdAt": "2017-07-10T16:07:19.609Z", - "completed": "2013-10-15T20:46:28.406Z", - "initiated": "2015-06-06T07:40:06.143Z", - "ministryContact": "BEDNAR-STRACKE VINNIE", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - } - ] - } - ] - }, - { - "uuid": "6b9855de-77f7-4e48-8afe-af88ff1a3420", - "siteID": 17417, - "address": "7211 Ortiz Lodge", - "latitude": 50.5271, - "longitude": -137.8012, - "lastUpdated": "2022-01-06T02:36:51.882Z", - "city": "South Avisborough", - "region": "Thompson-Okanagan", - "victoriaFile": "26250-20/2844", - "regionalFile": "N/A", - "parcelIDs": [ - 6204088, - 6718021, - 9581259, - 2659297, - 3780046 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2018-03-30T01:50:41.341Z", - "completed": "2020-12-30T10:54:07.116Z", - "initiated": "2017-09-23T16:16:07.396Z", - "ministryContact": "RIPPIN-BAILEY COLIN", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - } - ] - }, - { - "createdAt": "2022-04-22T13:15:46.184Z", - "completed": "2022-01-17T14:53:49.502Z", - "initiated": "2015-12-02T02:30:42.445Z", - "ministryContact": "TREMBLAY GRAYCE", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - } - ] - } - ] - }, - { - "uuid": "12bba3f0-ebd7-420f-8a63-d99e8698e533", - "siteID": 19691, - "address": "61610 Aleen Gateway", - "latitude": 51.4916, - "longitude": -138.4747, - "lastUpdated": "2015-08-27T20:29:03.145Z", - "city": "West Merritt", - "region": "Cariboo", - "victoriaFile": "26250-20/19721", - "regionalFile": "N/A", - "parcelIDs": [ - 3678420, - 2113883, - 7690324, - 5141456, - 106300 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2017-10-27T16:59:28.298Z", - "completed": "2019-11-27T13:34:35.224Z", - "initiated": "2014-09-20T09:18:01.611Z", - "ministryContact": "BLANDA DELLA", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - } - ] - }, - { - "createdAt": "2021-04-23T21:09:20.269Z", - "completed": "2021-02-06T15:35:04.932Z", - "initiated": "2016-04-25T12:24:14.165Z", - "ministryContact": "KOCH OSWALDO", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - } - ] - } - ] - }, - { - "uuid": "a38defe0-86b3-4900-8eb1-bf4259b6b8de", - "siteID": 19768, - "address": "3439 Ortiz Rapids", - "latitude": 48.5224, - "longitude": -127.3823, - "lastUpdated": "2020-03-24T14:13:21.640Z", - "city": "Jenkinsshire", - "region": "Thompson-Okanagan", - "victoriaFile": "26250-20/15046", - "regionalFile": "N/A", - "parcelIDs": [ - 5391341, - 4005364, - 3421274, - 5477273, - 561467 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2022-07-10T20:37:28.342Z", - "completed": "2018-07-12T17:04:13.548Z", - "initiated": "2015-12-28T15:44:00.237Z", - "ministryContact": "KEEBLER LILY", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - } - ] - }, - { - "createdAt": "2013-11-08T18:00:31.476Z", - "completed": "2016-03-07T13:47:01.490Z", - "initiated": "2022-11-05T00:32:51.469Z", - "ministryContact": "WILL CARLOTTA", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - } - ] - } - ] - }, - { - "uuid": "e8d26211-8dda-492e-a502-5c5e71a2dd68", - "siteID": 17141, - "address": "397 Larson Manor", - "latitude": 50.9256, - "longitude": -122.8606, - "lastUpdated": "2014-07-03T16:06:53.239Z", - "city": "South Genesisboro", - "region": "Kootenay", - "victoriaFile": "26250-20/14207", - "regionalFile": "N/A", - "parcelIDs": [ - 9748118, - 8403064, - 8226695, - 5249941, - 846596 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2021-12-17T09:15:04.050Z", - "completed": "2017-11-24T07:53:11.870Z", - "initiated": "2014-10-11T18:31:36.737Z", - "ministryContact": "STARK REYNA", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - } - ] - }, - { - "createdAt": "2022-08-27T01:34:42.618Z", - "completed": "2022-11-17T23:03:18.351Z", - "initiated": "2017-12-30T15:42:42.109Z", - "ministryContact": "KLOCKO-HAUCK NICO", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - } - ] - } - ] - }, - { - "uuid": "c278eea3-d875-404e-8731-3b4b18499d3e", - "siteID": 19062, - "address": "2139 Michael Trafficway", - "latitude": 48.6222, - "longitude": -127.4064, - "lastUpdated": "2020-02-08T04:55:46.922Z", - "city": "South Stanton", - "region": "Thompson-Okanagan", - "victoriaFile": "26250-20/15550", - "regionalFile": "N/A", - "parcelIDs": [ - 9142678, - 5048402, - 266980, - 2679473, - 6085488 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2019-11-13T15:21:13.168Z", - "completed": "2017-11-27T04:31:26.350Z", - "initiated": "2022-08-22T15:29:42.643Z", - "ministryContact": "PFEFFER ANGELITA", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - } - ] - }, - { - "createdAt": "2018-02-27T08:34:05.133Z", - "completed": "2018-06-15T04:42:28.171Z", - "initiated": "2015-11-06T11:19:20.537Z", - "ministryContact": "HARBER GABRIEL", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - } - ] - } - ] - }, - { - "uuid": "9f9223af-da89-46da-9651-c8b68204d049", - "siteID": 17821, - "address": "70424 Lauryn Light", - "latitude": 53.5017, - "longitude": -138.7209, - "lastUpdated": "2023-03-15T00:13:37.703Z", - "city": "Beattycester", - "region": " North Coast", - "victoriaFile": "26250-20/2089", - "regionalFile": "N/A", - "parcelIDs": [ - 9903036, - 1371979, - 2545486, - 5409090, - 8675627 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2023-01-16T13:19:37.313Z", - "completed": "2015-01-22T15:33:12.892Z", - "initiated": "2020-11-01T02:03:57.732Z", - "ministryContact": "NITZSCHE FREDRICK", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - } - ] - }, - { - "createdAt": "2021-05-03T04:38:25.703Z", - "completed": "2022-08-09T14:07:14.562Z", - "initiated": "2014-12-19T10:50:58.384Z", - "ministryContact": "ULLRICH FLOYD", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - } - ] - } - ] - }, - { - "uuid": "83db39d2-f699-40e9-bdc2-4c22af8695e5", - "siteID": 15697, - "address": "629 Orion Ramp", - "latitude": 54.1951, - "longitude": -128.8941, - "lastUpdated": "2016-02-14T17:31:01.523Z", - "city": "Port Claudie", - "region": "Cariboo", - "victoriaFile": "26250-20/8630", - "regionalFile": "N/A", - "parcelIDs": [ - 453145, - 9656033, - 7954550, - 2666492, - 893500 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2021-09-16T15:10:27.928Z", - "completed": "2013-11-28T21:56:19.430Z", - "initiated": "2020-07-22T02:54:12.287Z", - "ministryContact": "LARKIN LINDSEY", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - } - ] - }, - { - "createdAt": "2017-07-29T09:00:27.477Z", - "completed": "2016-02-01T03:37:41.850Z", - "initiated": "2021-06-17T00:09:22.983Z", - "ministryContact": "DICKI MADISEN", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - } - ] - } - ] - }, - { - "uuid": "c70d00a9-7d81-42f5-8d04-876f61d71c80", - "siteID": 17873, - "address": "94729 Altenwerth Stream", - "latitude": 52.7982, - "longitude": -127.3536, - "lastUpdated": "2016-10-29T05:00:39.733Z", - "city": "Medford", - "region": "Cariboo", - "victoriaFile": "26250-20/14121", - "regionalFile": "N/A", - "parcelIDs": [ - 102743, - 4221344, - 3122192, - 4628243, - 4959830 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2020-10-25T01:07:48.355Z", - "completed": "2019-06-17T07:48:03.386Z", - "initiated": "2022-03-06T00:58:01.676Z", - "ministryContact": "SCHADEN MARCUS", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - } - ] - }, - { - "createdAt": "2015-05-15T06:09:54.553Z", - "completed": "2014-12-06T23:36:21.085Z", - "initiated": "2018-01-20T11:53:31.808Z", - "ministryContact": "ERDMAN TRINITY", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - } - ] - } - ] - }, - { - "uuid": "82c5822e-e4b7-493d-bd24-239d9e5400db", - "siteID": 20820, - "address": "2826 Jayde Canyon", - "latitude": 51.7487, - "longitude": -127.0694, - "lastUpdated": "2019-06-02T00:26:10.666Z", - "city": "Tellyfield", - "region": "Vancouver Island/Coast", - "victoriaFile": "26250-20/12265", - "regionalFile": "N/A", - "parcelIDs": [ - 5365503, - 6102784, - 6400586, - 521853, - 7690184 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2020-10-07T22:37:21.966Z", - "completed": "2022-11-04T20:30:06.719Z", - "initiated": "2020-02-15T15:31:09.015Z", - "ministryContact": "KOCH KARA", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - } - ] - }, - { - "createdAt": "2021-08-07T22:14:54.517Z", - "completed": "2020-10-08T21:14:13.706Z", - "initiated": "2015-02-22T18:31:52.750Z", - "ministryContact": "DOOLEY TIFFANY", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - } - ] - } - ] - }, - { - "uuid": "b74b7960-dab8-46f2-8110-a6a57cac5642", - "siteID": 16384, - "address": "920 Crooks Grove", - "latitude": 55.6094, - "longitude": -137.2965, - "lastUpdated": "2014-01-14T03:01:23.215Z", - "city": "Harrisland", - "region": " North Coast", - "victoriaFile": "26250-20/13474", - "regionalFile": "N/A", - "parcelIDs": [ - 6536734, - 563380, - 7888090, - 1585429, - 5503729 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2022-05-31T05:46:25.046Z", - "completed": "2022-06-15T01:55:08.617Z", - "initiated": "2023-04-15T10:18:04.119Z", - "ministryContact": "HINTZ EVERETT", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - } - ] - }, - { - "createdAt": "2022-12-27T15:49:43.053Z", - "completed": "2014-02-20T12:52:25.678Z", - "initiated": "2014-09-27T21:55:21.507Z", - "ministryContact": "BALISTRERI STEWART", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - } - ] - } - ] - }, - { - "uuid": "29d8a8a4-4e17-4c1f-aa8d-830f9795fb19", - "siteID": 19854, - "address": "65176 Leffler Terrace", - "latitude": 57.8689, - "longitude": -130.0268, - "lastUpdated": "2018-04-22T05:18:59.856Z", - "city": "Marielaview", - "region": "Cariboo", - "victoriaFile": "26250-20/10322", - "regionalFile": "N/A", - "parcelIDs": [ - 6236999, - 245719, - 3646180, - 207111, - 3757761 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2023-02-17T01:23:35.047Z", - "completed": "2023-05-13T19:25:24.878Z", - "initiated": "2023-06-01T22:55:46.197Z", - "ministryContact": "NIKOLAUS LONIE", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - } - ] - }, - { - "createdAt": "2019-12-12T02:36:41.427Z", - "completed": "2014-09-02T19:02:00.665Z", - "initiated": "2022-09-13T18:04:37.559Z", - "ministryContact": "HELLER GILBERT", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - } - ] - } - ] - }, - { - "uuid": "8a60df4b-0dbb-4d7e-9c83-55d7cff7f15f", - "siteID": 20361, - "address": "7268 Prosacco Wells", - "latitude": 49.5358, - "longitude": -125.6237, - "lastUpdated": "2020-01-28T01:13:03.713Z", - "city": "Rachaelview", - "region": " North Coast", - "victoriaFile": "26250-20/12312", - "regionalFile": "N/A", - "parcelIDs": [ - 7809235, - 5634239, - 8299371, - 3018922, - 877518 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2018-05-18T11:37:30.819Z", - "completed": "2022-02-27T03:04:08.069Z", - "initiated": "2016-06-02T05:14:35.353Z", - "ministryContact": "ULLRICH BABY", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - } - ] - }, - { - "createdAt": "2018-03-11T18:29:34.668Z", - "completed": "2014-05-30T09:36:02.882Z", - "initiated": "2021-04-28T17:19:02.782Z", - "ministryContact": "CRONA KADIN", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - } - ] - } - ] - }, - { - "uuid": "e20f9dcc-381a-409f-9509-0ea2edadc887", - "siteID": 18488, - "address": "98701 Bahringer Rapid", - "latitude": 52.8082, - "longitude": -138.2491, - "lastUpdated": "2021-09-27T12:39:32.285Z", - "city": "West Roryside", - "region": "Vancouver Island/Coast", - "victoriaFile": "26250-20/13740", - "regionalFile": "N/A", - "parcelIDs": [ - 576160, - 5597025, - 9545801, - 5467695, - 7828680 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2022-04-02T22:15:38.012Z", - "completed": "2014-04-09T09:53:19.796Z", - "initiated": "2015-10-23T23:31:02.671Z", - "ministryContact": "LUBOWITZ LAWRENCE", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - } - ] - }, - { - "createdAt": "2017-05-01T03:10:15.983Z", - "completed": "2019-01-27T20:41:00.054Z", - "initiated": "2020-06-20T01:39:31.346Z", - "ministryContact": "CARROLL DEVAN", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - } - ] - } - ] - }, - { - "uuid": "9be13323-7acb-4b17-948a-629b9a3d71fe", - "siteID": 20158, - "address": "666 Crist Ville", - "latitude": 58.5421, - "longitude": -127.9068, - "lastUpdated": "2018-12-30T16:29:19.770Z", - "city": "Lake Boris", - "region": "Mainland/Southwest", - "victoriaFile": "26250-20/11527", - "regionalFile": "N/A", - "parcelIDs": [ - 8291716, - 5554766, - 1311970, - 5654588, - 4090963 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2023-05-14T12:54:30.039Z", - "completed": "2018-05-11T08:16:49.087Z", - "initiated": "2018-02-13T19:19:09.625Z", - "ministryContact": "MITCHELL-FRANEY NIKOLAS", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - } - ] - }, - { - "createdAt": "2019-06-09T06:45:20.477Z", - "completed": "2015-12-01T15:56:51.209Z", - "initiated": "2019-06-21T20:30:08.109Z", - "ministryContact": "HESSEL KRISTY", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - } - ] - } - ] - }, - { - "uuid": "e23f7ce5-c7d3-4030-8f21-023fcc01af72", - "siteID": 15566, - "address": "19290 Leta Flat", - "latitude": 53.4687, - "longitude": -129.278, - "lastUpdated": "2020-10-06T04:51:59.174Z", - "city": "Fort Giuseppe", - "region": " North Coast", - "victoriaFile": "26250-20/3263", - "regionalFile": "N/A", - "parcelIDs": [ - 9834667, - 5495013, - 2380781, - 7667716, - 4387393 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2016-01-10T04:55:37.158Z", - "completed": "2021-07-12T00:46:16.372Z", - "initiated": "2019-03-25T06:01:45.965Z", - "ministryContact": "LUBOWITZ TIARA", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - } - ] - }, - { - "createdAt": "2019-04-20T04:39:48.317Z", - "completed": "2016-09-09T11:58:36.047Z", - "initiated": "2018-09-26T05:17:12.474Z", - "ministryContact": "FAHEY EARL", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - } - ] - } - ] - }, - { - "uuid": "7a020eb3-8ea5-4618-b26d-eb5721bf912c", - "siteID": 18740, - "address": "95608 Green Creek", - "latitude": 51.5409, - "longitude": -137.5982, - "lastUpdated": "2019-05-10T03:44:30.554Z", - "city": "Jacobsonmouth", - "region": " North Coast", - "victoriaFile": "26250-20/15462", - "regionalFile": "N/A", - "parcelIDs": [ - 1306960, - 513244, - 8582580, - 1245213, - 119467 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2018-01-27T21:58:14.667Z", - "completed": "2020-06-01T08:05:29.819Z", - "initiated": "2020-12-08T15:37:48.624Z", - "ministryContact": "KIRLIN CLEORA", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - } - ] - }, - { - "createdAt": "2014-08-11T19:30:33.990Z", - "completed": "2018-01-31T13:53:59.438Z", - "initiated": "2019-08-22T18:09:33.644Z", - "ministryContact": "NADER NEIL", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - } - ] - } - ] - }, - { - "uuid": "b7de6aa0-939e-45c2-9cb9-5f80a8227cc7", - "siteID": 19520, - "address": "72774 Maynard Viaduct", - "latitude": 52.0148, - "longitude": -124.98, - "lastUpdated": "2020-12-03T07:06:15.152Z", - "city": "Allisoncester", - "region": "Thompson-Okanagan", - "victoriaFile": "26250-20/15826", - "regionalFile": "N/A", - "parcelIDs": [ - 8546754, - 1856973, - 164115, - 8808336, - 9508876 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2020-03-12T03:37:44.559Z", - "completed": "2015-09-28T15:49:05.607Z", - "initiated": "2016-01-08T21:14:40.307Z", - "ministryContact": "GUTKOWSKI-GORCZANY ZAKARY", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - } - ] - }, - { - "createdAt": "2022-01-18T11:21:46.383Z", - "completed": "2016-11-28T20:56:46.235Z", - "initiated": "2017-08-07T00:23:24.603Z", - "ministryContact": "BODE CORENE", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - } - ] - } - ] - }, - { - "uuid": "d52bf751-d159-4864-abcc-2b4d76829469", - "siteID": 15963, - "address": "6760 Purdy Hollow", - "latitude": 56.8116, - "longitude": -134.5709, - "lastUpdated": "2021-05-31T21:53:33.195Z", - "city": "Ankeny", - "region": "Thompson-Okanagan", - "victoriaFile": "26250-20/14165", - "regionalFile": "N/A", - "parcelIDs": [ - 4739079, - 8452455, - 3971664, - 9222688, - 7531992 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2014-08-16T16:22:40.841Z", - "completed": "2022-03-09T15:05:06.559Z", - "initiated": "2016-10-13T08:58:48.989Z", - "ministryContact": "STEHR TIMOTHY", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - } - ] - }, - { - "createdAt": "2013-10-31T17:17:50.395Z", - "completed": "2019-05-18T09:54:16.503Z", - "initiated": "2019-07-24T21:01:17.206Z", - "ministryContact": "WYMAN JUSTEN", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - } - ] - } - ] - }, - { - "uuid": "9fe752b0-2062-43f9-9f64-8cd856c6027e", - "siteID": 16774, - "address": "8619 Golda Union", - "latitude": 50.6573, - "longitude": -135.1961, - "lastUpdated": "2021-07-14T16:47:13.229Z", - "city": "Fort Thurmanfurt", - "region": "Mainland/Southwest", - "victoriaFile": "26250-20/877", - "regionalFile": "N/A", - "parcelIDs": [ - 1267047, - 5779032, - 1898259, - 6307401, - 2179269 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2020-08-09T21:18:41.148Z", - "completed": "2017-03-01T20:57:53.445Z", - "initiated": "2022-12-19T03:48:05.888Z", - "ministryContact": "MRAZ JUSTINE", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - } - ] - }, - { - "createdAt": "2017-04-11T20:29:59.471Z", - "completed": "2016-06-03T03:36:22.785Z", - "initiated": "2022-04-22T09:18:04.242Z", - "ministryContact": "BEDNAR JUNIUS", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - } - ] - } - ] - }, - { - "uuid": "fa38f3a8-20a5-4e0b-a448-5a24380c2161", - "siteID": 15632, - "address": "65171 Hayes Lights", - "latitude": 50.12, - "longitude": -124.7347, - "lastUpdated": "2015-09-17T17:16:10.130Z", - "city": "Kozeyfield", - "region": "Mainland/Southwest", - "victoriaFile": "26250-20/12209", - "regionalFile": "N/A", - "parcelIDs": [ - 9985211, - 8993205, - 9170124, - 4168159, - 8255969 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2022-01-26T02:57:31.786Z", - "completed": "2021-02-25T13:29:44.250Z", - "initiated": "2023-05-04T14:39:24.344Z", - "ministryContact": "GUTMANN CHESTER", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - } - ] - }, - { - "createdAt": "2022-01-20T00:55:58.965Z", - "completed": "2018-10-10T18:07:20.356Z", - "initiated": "2017-04-15T18:11:28.627Z", - "ministryContact": "LARSON QUENTIN", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - } - ] - } - ] - }, - { - "uuid": "8f44cf22-8efb-4588-964e-985885f01dd1", - "siteID": 20283, - "address": "8307 Karlee Lakes", - "latitude": 54.8238, - "longitude": -124.6507, - "lastUpdated": "2017-10-15T07:18:15.566Z", - "city": "North Delfina", - "region": " North Coast", - "victoriaFile": "26250-20/18615", - "regionalFile": "N/A", - "parcelIDs": [ - 6957486, - 5791326, - 6564288, - 889000, - 1984068 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2017-11-02T07:40:12.988Z", - "completed": "2023-06-26T16:26:10.074Z", - "initiated": "2022-10-13T06:55:33.786Z", - "ministryContact": "WINTHEISER DION", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - } - ] - }, - { - "createdAt": "2020-12-28T06:31:34.324Z", - "completed": "2023-03-31T01:59:50.377Z", - "initiated": "2023-03-10T01:24:52.525Z", - "ministryContact": "LIND DANTE", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - } - ] - } - ] - }, - { - "uuid": "a17fe7c6-7c4d-4b58-b706-b5ec16be17d9", - "siteID": 18106, - "address": "33234 Pouros Locks", - "latitude": 52.6367, - "longitude": -122.5453, - "lastUpdated": "2022-10-22T05:41:43.120Z", - "city": "Laurieport", - "region": " North Coast", - "victoriaFile": "26250-20/13151", - "regionalFile": "N/A", - "parcelIDs": [ - 6213925, - 206602, - 8193727, - 112911, - 3414012 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2015-12-24T05:25:28.911Z", - "completed": "2015-06-30T08:29:46.782Z", - "initiated": "2017-05-09T10:16:34.849Z", - "ministryContact": "KEMMER ASHLEY", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - } - ] - }, - { - "createdAt": "2020-05-13T20:26:46.497Z", - "completed": "2015-03-03T21:23:31.823Z", - "initiated": "2019-08-31T04:39:28.526Z", - "ministryContact": "HANE ULICES", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - } - ] - } - ] - }, - { - "uuid": "07a67fae-b76f-4603-b900-fd15fe000ee2", - "siteID": 18580, - "address": "660 Esmeralda Mountains", - "latitude": 56.7846, - "longitude": -132.3314, - "lastUpdated": "2023-01-09T00:36:42.010Z", - "city": "Schuliststad", - "region": "Cariboo", - "victoriaFile": "26250-20/7724", - "regionalFile": "N/A", - "parcelIDs": [ - 1421227, - 7519588, - 9485493, - 9934938, - 532187 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2019-05-27T01:52:24.683Z", - "completed": "2016-02-01T00:08:52.528Z", - "initiated": "2019-06-14T05:36:58.867Z", - "ministryContact": "ROGAHN MABELLE", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - } - ] - }, - { - "createdAt": "2019-02-25T05:37:32.099Z", - "completed": "2022-12-03T23:50:42.638Z", - "initiated": "2015-05-15T23:51:53.692Z", - "ministryContact": "HAMMES ALLEN", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - } - ] - } - ] - }, - { - "uuid": "43c9130a-003d-4c0d-99c3-8967cc2e6b7d", - "siteID": 19186, - "address": "3924 Neha Knoll", - "latitude": 50.8715, - "longitude": -125.4557, - "lastUpdated": "2014-04-03T22:55:59.882Z", - "city": "Yuma", - "region": " North Coast", - "victoriaFile": "26250-20/4070", - "regionalFile": "N/A", - "parcelIDs": [ - 3955924, - 8255696, - 1526358, - 4287886, - 730377 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2022-12-27T16:52:08.414Z", - "completed": "2022-09-12T19:31:59.872Z", - "initiated": "2018-05-28T12:24:59.968Z", - "ministryContact": "OKUNEVA AMERICA", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - } - ] - }, - { - "createdAt": "2013-10-07T21:44:18.934Z", - "completed": "2017-12-26T08:28:52.229Z", - "initiated": "2022-06-15T02:35:16.313Z", - "ministryContact": "ORN BRAIN", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - } - ] - } - ] - }, - { - "uuid": "2e10b86b-8f53-4438-a750-3013120641c9", - "siteID": 19121, - "address": "361 Fern Prairie", - "latitude": 57.8257, - "longitude": -119.7835, - "lastUpdated": "2016-09-30T23:54:59.552Z", - "city": "Bethlehem", - "region": "Cariboo", - "victoriaFile": "26250-20/8737", - "regionalFile": "N/A", - "parcelIDs": [ - 4912399, - 9117591, - 9903230, - 2579596, - 2688459 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2019-03-03T12:40:51.274Z", - "completed": "2019-02-13T20:14:41.382Z", - "initiated": "2018-02-14T17:51:09.132Z", - "ministryContact": "GOODWIN LOU", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - } - ] - }, - { - "createdAt": "2019-03-23T06:35:42.329Z", - "completed": "2017-11-11T01:27:42.248Z", - "initiated": "2017-12-19T11:14:23.950Z", - "ministryContact": "BAUMBACH ELOY", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - } - ] - } - ] - }, - { - "uuid": "ef3341ca-ab50-43b9-8cd1-fb3e28ac2416", - "siteID": 16000, - "address": "31337 Trisha Orchard", - "latitude": 50.9386, - "longitude": -118.2245, - "lastUpdated": "2016-12-17T08:27:19.002Z", - "city": "Kuvalisview", - "region": "Cariboo", - "victoriaFile": "26250-20/18687", - "regionalFile": "N/A", - "parcelIDs": [ - 8029374, - 4534724, - 5214582, - 3132770, - 2064926 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2022-05-28T22:33:15.716Z", - "completed": "2017-12-06T03:45:47.923Z", - "initiated": "2021-12-08T08:36:04.668Z", - "ministryContact": "ULLRICH MOHAMED", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - } - ] - }, - { - "createdAt": "2021-05-03T10:45:49.719Z", - "completed": "2014-09-11T04:16:29.161Z", - "initiated": "2017-12-12T12:55:41.714Z", - "ministryContact": "ROWE JAYCE", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - } - ] - } - ] - }, - { - "uuid": "f5556727-bdbf-4e9f-b789-3d3d8247b552", - "siteID": 19183, - "address": "3123 Considine Trail", - "latitude": 58.2893, - "longitude": -121.6834, - "lastUpdated": "2019-12-27T11:10:37.513Z", - "city": "Franeckiview", - "region": "Cariboo", - "victoriaFile": "26250-20/9073", - "regionalFile": "N/A", - "parcelIDs": [ - 9016001, - 1385308, - 4511278, - 6549274, - 6189122 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2021-07-03T11:20:01.247Z", - "completed": "2023-03-24T06:42:36.405Z", - "initiated": "2019-04-29T08:06:04.081Z", - "ministryContact": "RITCHIE HILMA", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - } - ] - }, - { - "createdAt": "2020-05-06T04:47:41.523Z", - "completed": "2021-01-05T10:31:38.788Z", - "initiated": "2021-10-31T07:15:40.993Z", - "ministryContact": "STAMM GUS", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - } - ] - } - ] - }, - { - "uuid": "84ad93f7-4edd-497e-9815-42521a90a0b3", - "siteID": 19050, - "address": "96693 Rogahn Stream", - "latitude": 49.5089, - "longitude": -135.8403, - "lastUpdated": "2016-08-16T16:01:06.401Z", - "city": "North Myrtie", - "region": "Mainland/Southwest", - "victoriaFile": "26250-20/11265", - "regionalFile": "N/A", - "parcelIDs": [ - 4638319, - 1303533, - 7445633, - 3068611, - 4421774 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2021-09-28T04:39:52.850Z", - "completed": "2023-09-18T17:36:41.269Z", - "initiated": "2020-12-06T22:10:51.325Z", - "ministryContact": "KESSLER CARMELA", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - } - ] - }, - { - "createdAt": "2016-07-10T20:50:21.450Z", - "completed": "2015-06-14T00:11:36.812Z", - "initiated": "2021-01-05T11:21:02.313Z", - "ministryContact": "REMPEL ORLANDO", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - } - ] - } - ] - }, - { - "uuid": "67efbbb0-3071-4a38-8e50-aafb7bdb9f79", - "siteID": 15969, - "address": "39662 Rohan Estates", - "latitude": 49.7655, - "longitude": -138.1345, - "lastUpdated": "2022-11-10T18:15:50.166Z", - "city": "West Aliyahshire", - "region": "Vancouver Island/Coast", - "victoriaFile": "26250-20/1648", - "regionalFile": "N/A", - "parcelIDs": [ - 6182239, - 4960590, - 8459611, - 7823647, - 670343 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2022-06-21T01:23:01.403Z", - "completed": "2018-08-25T06:45:21.452Z", - "initiated": "2015-05-22T10:25:08.126Z", - "ministryContact": "WISOKY DENA", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - } - ] - }, - { - "createdAt": "2020-06-03T22:57:40.237Z", - "completed": "2023-06-01T14:37:39.534Z", - "initiated": "2023-05-16T08:54:12.452Z", - "ministryContact": "KOZEY DARRICK", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - } - ] - } - ] - }, - { - "uuid": "8563f990-b53f-4a8f-b27a-908211e58d06", - "siteID": 20831, - "address": "9398 Josie Mountain", - "latitude": 49.4987, - "longitude": -134.2662, - "lastUpdated": "2019-06-10T03:28:54.707Z", - "city": "South Darrell", - "region": "Thompson-Okanagan", - "victoriaFile": "26250-20/6358", - "regionalFile": "N/A", - "parcelIDs": [ - 7445403, - 4422094, - 7794033, - 6219616, - 4612644 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2016-10-27T21:04:26.093Z", - "completed": "2022-06-29T03:06:29.968Z", - "initiated": "2022-01-05T22:13:40.414Z", - "ministryContact": "WINDLER CORA", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - } - ] - }, - { - "createdAt": "2019-12-26T06:07:38.568Z", - "completed": "2018-04-03T11:00:53.692Z", - "initiated": "2023-01-01T10:04:00.148Z", - "ministryContact": "D'AMORE ADITYA", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - } - ] - } - ] - }, - { - "uuid": "c769ede3-4115-4437-bb73-fc6b9cf64148", - "siteID": 20610, - "address": "156 Nelson Ways", - "latitude": 54.3233, - "longitude": -135.6105, - "lastUpdated": "2022-07-28T03:39:02.880Z", - "city": "Florenceland", - "region": "Mainland/Southwest", - "victoriaFile": "26250-20/17505", - "regionalFile": "N/A", - "parcelIDs": [ - 1636772, - 6420867, - 3800501, - 3951984, - 1024940 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2023-05-16T00:15:05.000Z", - "completed": "2015-02-12T20:37:07.167Z", - "initiated": "2023-04-07T03:31:05.156Z", - "ministryContact": "HYATT FRANKIE", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - } - ] - }, - { - "createdAt": "2016-12-11T19:09:41.958Z", - "completed": "2022-08-07T01:35:27.074Z", - "initiated": "2016-04-19T00:14:57.596Z", - "ministryContact": "KUNZE JAVIER", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - } - ] - } - ] - }, - { - "uuid": "33356d9c-919e-4b8d-af99-a6d3cb53d939", - "siteID": 20865, - "address": "887 Parisian Knolls", - "latitude": 48.393, - "longitude": -125.3294, - "lastUpdated": "2019-12-25T00:53:04.138Z", - "city": "Fort Twilaport", - "region": "Cariboo", - "victoriaFile": "26250-20/13901", - "regionalFile": "N/A", - "parcelIDs": [ - 1400546, - 4170672, - 8494624, - 8710438, - 2525200 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2018-01-30T21:47:14.931Z", - "completed": "2014-12-22T19:40:26.494Z", - "initiated": "2017-03-16T09:28:42.893Z", - "ministryContact": "KRAJCIK EFREN", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - } - ] - }, - { - "createdAt": "2015-08-22T09:06:45.498Z", - "completed": "2017-08-12T09:51:13.518Z", - "initiated": "2016-03-14T15:04:35.961Z", - "ministryContact": "FLATLEY GUSSIE", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - } - ] - } - ] - }, - { - "uuid": "9d5917f7-444b-4e74-8392-d4a234308140", - "siteID": 15918, - "address": "23406 Brigitte Fork", - "latitude": 58.7758, - "longitude": -119.7972, - "lastUpdated": "2023-07-11T17:10:47.858Z", - "city": "Feeneyboro", - "region": "Thompson-Okanagan", - "victoriaFile": "26250-20/10977", - "regionalFile": "N/A", - "parcelIDs": [ - 7818307, - 7350502, - 839944, - 6952664, - 6289040 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2023-06-03T16:07:43.814Z", - "completed": "2019-05-26T20:20:22.297Z", - "initiated": "2018-01-04T00:05:34.877Z", - "ministryContact": "BERGE CULLEN", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - } - ] - }, - { - "createdAt": "2019-06-03T07:35:11.041Z", - "completed": "2018-10-04T12:54:24.600Z", - "initiated": "2019-05-11T05:04:58.767Z", - "ministryContact": "BARTELL SADYE", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - } - ] - } - ] - }, - { - "uuid": "15c5bd0d-25eb-472b-9b56-832808dc256a", - "siteID": 18759, - "address": "8983 Kozey Greens", - "latitude": 49.1868, - "longitude": -118.0265, - "lastUpdated": "2023-02-11T14:03:36.396Z", - "city": "Jenkinsberg", - "region": "Kootenay", - "victoriaFile": "26250-20/15037", - "regionalFile": "N/A", - "parcelIDs": [ - 8311621, - 834357, - 3884144, - 7497908, - 6663103 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2014-11-20T03:45:20.331Z", - "completed": "2020-11-24T04:27:39.751Z", - "initiated": "2015-12-09T11:11:25.969Z", - "ministryContact": "MURPHY BAYLEE", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - } - ] - }, - { - "createdAt": "2017-09-02T15:19:17.726Z", - "completed": "2020-04-27T08:23:40.338Z", - "initiated": "2021-02-06T21:01:56.584Z", - "ministryContact": "MURPHY CAROLANNE", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - } - ] - } - ] - }, - { - "uuid": "5b654da1-eed0-471c-85c8-79fc9b8a9719", - "siteID": 17670, - "address": "61115 Francisco Lakes", - "latitude": 54.1797, - "longitude": -130.0954, - "lastUpdated": "2018-03-16T17:09:27.000Z", - "city": "Fort Deja", - "region": "Kootenay", - "victoriaFile": "26250-20/1951", - "regionalFile": "N/A", - "parcelIDs": [ - 7296524, - 9080049, - 1690587, - 3877701, - 5217709 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2021-09-22T04:59:32.008Z", - "completed": "2015-05-06T05:01:37.660Z", - "initiated": "2017-11-09T05:10:31.908Z", - "ministryContact": "O'REILLY JACLYN", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - } - ] - }, - { - "createdAt": "2015-05-04T20:36:31.838Z", - "completed": "2015-12-13T13:06:17.134Z", - "initiated": "2021-09-30T13:06:37.183Z", - "ministryContact": "METZ CLINT", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - } - ] - } - ] - }, - { - "uuid": "179eee10-38f0-4d1a-9429-aaa7988c4403", - "siteID": 15939, - "address": "30675 Tremblay Spring", - "latitude": 52.2803, - "longitude": -133.2633, - "lastUpdated": "2018-05-08T06:31:50.072Z", - "city": "South Cheyanne", - "region": "Vancouver Island/Coast", - "victoriaFile": "26250-20/19505", - "regionalFile": "N/A", - "parcelIDs": [ - 4338079, - 111450, - 4366326, - 6908352, - 1503675 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2016-03-09T15:41:56.897Z", - "completed": "2014-05-27T21:44:41.739Z", - "initiated": "2023-08-10T21:28:17.667Z", - "ministryContact": "TREUTEL OZELLA", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - } - ] - }, - { - "createdAt": "2020-04-25T20:56:17.645Z", - "completed": "2015-10-25T17:47:04.627Z", - "initiated": "2021-06-03T22:42:04.654Z", - "ministryContact": "THIEL BETHEL", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - } - ] - } - ] - }, - { - "uuid": "4d14bcb6-2da8-4919-9568-e0c5f47880d4", - "siteID": 18366, - "address": "98660 Miller Cliffs", - "latitude": 54.2362, - "longitude": -119.8666, - "lastUpdated": "2022-02-26T18:46:15.284Z", - "city": "Cummingsburgh", - "region": "Kootenay", - "victoriaFile": "26250-20/6013", - "regionalFile": "N/A", - "parcelIDs": [ - 7178849, - 2304510, - 6674820, - 9704636, - 7401838 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2017-03-27T16:36:36.691Z", - "completed": "2018-09-03T14:19:46.874Z", - "initiated": "2019-08-22T05:42:53.388Z", - "ministryContact": "CRUICKSHANK DEWITT", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - } - ] - }, - { - "createdAt": "2022-01-08T00:09:15.837Z", - "completed": "2017-07-01T19:10:17.846Z", - "initiated": "2014-01-12T15:14:36.804Z", - "ministryContact": "WEBER LENNY", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - } - ] - } - ] - }, - { - "uuid": "51c07388-b894-4e96-ab7e-072a6df0e9f6", - "siteID": 16021, - "address": "66817 Cameron Fort", - "latitude": 51.5188, - "longitude": -132.7478, - "lastUpdated": "2022-04-17T03:50:28.160Z", - "city": "Kettering", - "region": "Mainland/Southwest", - "victoriaFile": "26250-20/5738", - "regionalFile": "N/A", - "parcelIDs": [ - 6573594, - 4099580, - 1581969, - 5855231, - 1569170 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2022-05-14T17:34:35.145Z", - "completed": "2018-09-03T18:28:27.885Z", - "initiated": "2017-06-21T18:24:16.294Z", - "ministryContact": "PFANNERSTILL SHYANN", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - } - ] - }, - { - "createdAt": "2016-05-28T01:08:31.538Z", - "completed": "2017-10-22T09:59:50.034Z", - "initiated": "2015-05-31T16:10:13.644Z", - "ministryContact": "HAMILL MAIDA", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - } - ] - } - ] - }, - { - "uuid": "45799c65-78b8-4bb8-b378-46b993cc8ea2", - "siteID": 20265, - "address": "358 Telly Shoals", - "latitude": 48.9651, - "longitude": -131.6574, - "lastUpdated": "2019-07-23T15:27:42.993Z", - "city": "New Malachi", - "region": "Thompson-Okanagan", - "victoriaFile": "26250-20/18459", - "regionalFile": "N/A", - "parcelIDs": [ - 3888563, - 1985510, - 979497, - 2319663, - 1393558 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2016-03-20T03:54:28.744Z", - "completed": "2014-02-13T17:02:05.842Z", - "initiated": "2019-09-14T17:03:39.348Z", - "ministryContact": "BORER CARROLL", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - } - ] - }, - { - "createdAt": "2014-11-13T15:50:43.765Z", - "completed": "2021-08-11T04:22:56.267Z", - "initiated": "2020-05-28T07:32:38.970Z", - "ministryContact": "MCGLYNN DEMETRIS", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - } - ] - } - ] - }, - { - "uuid": "b93f1ccc-7beb-40dd-b95b-a6ca5d88b90d", - "siteID": 16378, - "address": "692 Wilkinson Skyway", - "latitude": 52.8647, - "longitude": -128.636, - "lastUpdated": "2015-12-16T21:07:20.384Z", - "city": "Christianaview", - "region": "Kootenay", - "victoriaFile": "26250-20/17225", - "regionalFile": "N/A", - "parcelIDs": [ - 7878367, - 8678893, - 5655104, - 6359583, - 4864276 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2022-11-11T02:27:49.556Z", - "completed": "2021-11-02T20:04:08.831Z", - "initiated": "2022-03-30T13:48:05.248Z", - "ministryContact": "STOLTENBERG ALEXANDRO", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - } - ] - }, - { - "createdAt": "2020-02-27T05:53:17.107Z", - "completed": "2017-07-01T21:00:59.841Z", - "initiated": "2019-10-16T14:45:09.353Z", - "ministryContact": "GREENFELDER EZRA", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - } - ] - } - ] - }, - { - "uuid": "e0ede26e-423c-4aee-879e-8477cfe0bbd2", - "siteID": 19979, - "address": "6020 Will Viaduct", - "latitude": 57.5337, - "longitude": -131.9249, - "lastUpdated": "2017-08-02T12:32:25.029Z", - "city": "Loushire", - "region": "Mainland/Southwest", - "victoriaFile": "26250-20/14239", - "regionalFile": "N/A", - "parcelIDs": [ - 6065444, - 5225349, - 5670343, - 4825046, - 4409647 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2021-06-04T12:58:07.974Z", - "completed": "2023-07-20T07:22:47.188Z", - "initiated": "2015-03-17T15:46:56.059Z", - "ministryContact": "DACH ANGELINA", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - } - ] - }, - { - "createdAt": "2018-07-14T17:55:52.491Z", - "completed": "2018-05-19T13:52:56.276Z", - "initiated": "2013-12-07T17:56:21.772Z", - "ministryContact": "WALTER JACINTO", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - } - ] - } - ] - }, - { - "uuid": "2be2b109-01e4-4191-bd24-d6d9608ee54e", - "siteID": 15195, - "address": "27092 Pete Trace", - "latitude": 50.1186, - "longitude": -136.7437, - "lastUpdated": "2023-02-11T10:58:24.185Z", - "city": "New Hester", - "region": "Thompson-Okanagan", - "victoriaFile": "26250-20/17211", - "regionalFile": "N/A", - "parcelIDs": [ - 7388528, - 2586915, - 339868, - 5487946, - 9414314 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2023-07-22T07:08:29.964Z", - "completed": "2020-12-29T20:52:29.191Z", - "initiated": "2021-05-16T04:29:18.623Z", - "ministryContact": "BEAHAN ELBERT", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - } - ] - }, - { - "createdAt": "2013-12-12T01:16:54.539Z", - "completed": "2019-11-12T03:08:31.532Z", - "initiated": "2018-02-22T20:41:03.673Z", - "ministryContact": "EFFERTZ DAGMAR", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - } - ] - } - ] - }, - { - "uuid": "b01b664c-c07c-4562-b357-a11e242d2c2e", - "siteID": 20851, - "address": "81143 Hauck River", - "latitude": 54.4598, - "longitude": -134.5054, - "lastUpdated": "2017-08-24T06:51:18.765Z", - "city": "New Shea", - "region": "Vancouver Island/Coast", - "victoriaFile": "26250-20/13698", - "regionalFile": "N/A", - "parcelIDs": [ - 7182240, - 4762547, - 5510926, - 7038978, - 9602187 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2020-10-15T00:35:09.859Z", - "completed": "2016-09-08T15:20:09.618Z", - "initiated": "2022-03-29T23:05:10.092Z", - "ministryContact": "LANGWORTH BLAISE", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - } - ] - }, - { - "createdAt": "2019-10-03T07:38:15.380Z", - "completed": "2015-01-12T03:51:04.863Z", - "initiated": "2022-11-09T06:34:59.280Z", - "ministryContact": "LEUSCHKE JAKOB", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - } - ] - } - ] - }, - { - "uuid": "5416f85a-7681-4fd3-a39d-cb1655c663e2", - "siteID": 20581, - "address": "584 Carrie Garden", - "latitude": 52.4552, - "longitude": -122.1184, - "lastUpdated": "2020-06-25T10:13:40.408Z", - "city": "East Nelsonbury", - "region": " North Coast", - "victoriaFile": "26250-20/9033", - "regionalFile": "N/A", - "parcelIDs": [ - 445310, - 7138212, - 5225272, - 4809866, - 3010686 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2019-08-11T17:10:26.688Z", - "completed": "2022-08-27T16:34:25.614Z", - "initiated": "2017-01-07T21:02:01.752Z", - "ministryContact": "CONSIDINE MORTON", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - } - ] - }, - { - "createdAt": "2022-12-20T06:11:39.477Z", - "completed": "2021-05-17T01:52:56.362Z", - "initiated": "2021-10-07T01:53:10.734Z", - "ministryContact": "ROWE PORTER", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - } - ] - } - ] - }, - { - "uuid": "59c5c269-aaa0-4ab4-9960-c5ab23c3e51b", - "siteID": 18217, - "address": "11717 Littel Views", - "latitude": 51.2848, - "longitude": -129.7822, - "lastUpdated": "2014-09-09T04:49:14.963Z", - "city": "North Lambertworth", - "region": "Kootenay", - "victoriaFile": "26250-20/17889", - "regionalFile": "N/A", - "parcelIDs": [ - 7192860, - 7530463, - 4455116, - 1843834, - 7480185 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2014-08-06T05:31:11.230Z", - "completed": "2016-08-28T17:28:31.296Z", - "initiated": "2020-12-18T07:55:25.272Z", - "ministryContact": "THOMPSON RAOUL", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - } - ] - }, - { - "createdAt": "2018-02-28T14:46:43.091Z", - "completed": "2023-02-03T18:54:57.678Z", - "initiated": "2016-11-04T20:31:03.342Z", - "ministryContact": "BORER WOODROW", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - } - ] - } - ] - }, - { - "uuid": "1c82c2df-4f82-44cf-b300-7e0b03b2466d", - "siteID": 19525, - "address": "12935 Gibson Keys", - "latitude": 51.7316, - "longitude": -132.2222, - "lastUpdated": "2023-03-18T13:45:27.934Z", - "city": "South Aylachester", - "region": "Mainland/Southwest", - "victoriaFile": "26250-20/11193", - "regionalFile": "N/A", - "parcelIDs": [ - 8314107, - 952621, - 2738352, - 9191274, - 3520012 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2021-02-05T05:45:46.045Z", - "completed": "2022-04-25T23:25:42.607Z", - "initiated": "2015-12-11T07:26:00.135Z", - "ministryContact": "HEATHCOTE-TERRY WILLIS", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - } - ] - }, - { - "createdAt": "2013-11-14T05:09:37.966Z", - "completed": "2020-06-07T18:54:20.355Z", - "initiated": "2021-04-26T16:30:20.063Z", - "ministryContact": "KSHLERIN ORLANDO", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - } - ] - } - ] - }, - { - "uuid": "90480f12-4ac9-4f06-93b1-35f7e70a310f", - "siteID": 19605, - "address": "12625 Lee Way", - "latitude": 53.4147, - "longitude": -129.9886, - "lastUpdated": "2018-04-30T06:14:12.525Z", - "city": "Rauland", - "region": "Kootenay", - "victoriaFile": "26250-20/9010", - "regionalFile": "N/A", - "parcelIDs": [ - 1730157, - 8988758, - 1887842, - 8562721, - 916536 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2021-04-05T14:33:05.892Z", - "completed": "2020-09-18T10:40:40.348Z", - "initiated": "2018-10-06T06:09:04.709Z", - "ministryContact": "LAKIN UNIQUE", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - } - ] - }, - { - "createdAt": "2023-03-13T23:30:13.407Z", - "completed": "2019-01-15T04:37:47.784Z", - "initiated": "2019-01-26T21:33:33.782Z", - "ministryContact": "HETTINGER ROWLAND", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - } - ] - } - ] - }, - { - "uuid": "33f3263f-c882-479f-8e1e-0ad944896de1", - "siteID": 19216, - "address": "89772 Destin Common", - "latitude": 58.4587, - "longitude": -119.6972, - "lastUpdated": "2016-07-02T13:13:35.174Z", - "city": "Lake Seamus", - "region": "Mainland/Southwest", - "victoriaFile": "26250-20/6202", - "regionalFile": "N/A", - "parcelIDs": [ - 8206135, - 376779, - 2321361, - 3663606, - 2208543 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2016-03-10T06:58:37.937Z", - "completed": "2015-10-18T12:17:41.547Z", - "initiated": "2019-12-16T11:33:01.283Z", - "ministryContact": "BECKER NAOMI", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - } - ] - }, - { - "createdAt": "2021-11-07T13:05:19.563Z", - "completed": "2020-07-25T19:43:17.605Z", - "initiated": "2018-08-13T03:32:59.299Z", - "ministryContact": "MANN WARREN", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - } - ] - } - ] - }, - { - "uuid": "01ef0b7c-0c02-412e-bdcc-cca085d6af7d", - "siteID": 15356, - "address": "538 Grimes Oval", - "latitude": 57.9172, - "longitude": -137.3663, - "lastUpdated": "2017-06-06T20:16:09.557Z", - "city": "Mesa", - "region": "Vancouver Island/Coast", - "victoriaFile": "26250-20/2503", - "regionalFile": "N/A", - "parcelIDs": [ - 3904460, - 7451519, - 9306016, - 4028393, - 3922433 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2022-05-20T04:26:48.217Z", - "completed": "2016-12-30T00:09:03.762Z", - "initiated": "2021-06-14T09:32:09.608Z", - "ministryContact": "HAHN ROSELYN", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - } - ] - }, - { - "createdAt": "2023-06-29T20:27:04.680Z", - "completed": "2020-06-03T23:24:53.003Z", - "initiated": "2023-01-06T13:28:02.757Z", - "ministryContact": "JOHNSTON ELIANE", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - } - ] - } - ] - }, - { - "uuid": "7fb4a727-c52c-4577-9ec3-090d162128fd", - "siteID": 16872, - "address": "16130 Aracely Parkways", - "latitude": 51.5797, - "longitude": -124.4745, - "lastUpdated": "2017-07-15T11:22:35.058Z", - "city": "New Cornellworth", - "region": "Vancouver Island/Coast", - "victoriaFile": "26250-20/1242", - "regionalFile": "N/A", - "parcelIDs": [ - 202758, - 7444445, - 1952733, - 812111, - 6655663 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2015-10-28T04:10:44.544Z", - "completed": "2021-01-28T16:31:29.803Z", - "initiated": "2015-08-13T04:34:24.101Z", - "ministryContact": "HAAG ALANIS", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - } - ] - }, - { - "createdAt": "2023-07-08T14:14:51.269Z", - "completed": "2018-02-10T09:24:45.710Z", - "initiated": "2021-07-18T20:45:47.344Z", - "ministryContact": "LEUSCHKE RIVER", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - } - ] - } - ] - }, - { - "uuid": "b59017f6-ef62-43d1-b20b-2121e29cfa36", - "siteID": 19288, - "address": "1727 Jalon Light", - "latitude": 50.4999, - "longitude": -131.2856, - "lastUpdated": "2018-10-23T10:07:21.505Z", - "city": "Ednacester", - "region": "Cariboo", - "victoriaFile": "26250-20/4648", - "regionalFile": "N/A", - "parcelIDs": [ - 8871246, - 2702177, - 9277973, - 7048972, - 6589172 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2020-05-24T20:27:05.803Z", - "completed": "2015-09-08T20:10:28.442Z", - "initiated": "2020-08-08T03:49:13.697Z", - "ministryContact": "CHAMPLIN MONA", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - } - ] - }, - { - "createdAt": "2023-04-16T10:32:06.139Z", - "completed": "2022-02-14T04:19:19.983Z", - "initiated": "2020-01-29T12:04:18.229Z", - "ministryContact": "MEDHURST JOSIE", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - } - ] - } - ] - }, - { - "uuid": "15328797-a244-4080-b42f-43ef45c8ad64", - "siteID": 18938, - "address": "12856 Ankunding Mill", - "latitude": 50.3485, - "longitude": -123.8937, - "lastUpdated": "2016-04-10T03:39:44.055Z", - "city": "East Lilla", - "region": "Cariboo", - "victoriaFile": "26250-20/11147", - "regionalFile": "N/A", - "parcelIDs": [ - 2914217, - 7288682, - 616060, - 4370672, - 8184349 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2016-01-19T22:45:13.641Z", - "completed": "2021-01-18T07:51:19.185Z", - "initiated": "2019-05-27T15:22:10.982Z", - "ministryContact": "TRANTOW AUDRA", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - } - ] - }, - { - "createdAt": "2015-05-29T16:30:13.766Z", - "completed": "2020-03-17T10:51:38.821Z", - "initiated": "2018-02-03T05:12:10.958Z", - "ministryContact": "SCHADEN ANDREANE", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - } - ] - } - ] - }, - { - "uuid": "356a0201-5040-4408-959f-388d804bc933", - "siteID": 17785, - "address": "33401 Hansen Falls", - "latitude": 56.721, - "longitude": -135.6554, - "lastUpdated": "2023-03-18T20:36:40.510Z", - "city": "West Deronboro", - "region": "Cariboo", - "victoriaFile": "26250-20/17785", - "regionalFile": "N/A", - "parcelIDs": [ - 300604, - 9422525, - 8395357, - 2852000, - 4648025 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2014-01-01T17:26:25.617Z", - "completed": "2014-11-11T06:28:58.446Z", - "initiated": "2021-09-20T23:16:15.679Z", - "ministryContact": "PROSACCO NINA", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - } - ] - }, - { - "createdAt": "2022-08-11T08:47:09.198Z", - "completed": "2016-03-13T17:46:09.475Z", - "initiated": "2014-11-08T10:48:23.774Z", - "ministryContact": "CROOKS PRECIOUS", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - } - ] - } - ] - }, - { - "uuid": "e29e9cf6-394f-4b9e-8503-80d1e1ef2027", - "siteID": 16087, - "address": "1813 Jerrold Brook", - "latitude": 53.9428, - "longitude": -126.2472, - "lastUpdated": "2022-08-28T16:51:19.594Z", - "city": "West Adoniston", - "region": "Thompson-Okanagan", - "victoriaFile": "26250-20/1733", - "regionalFile": "N/A", - "parcelIDs": [ - 906107, - 7129248, - 9040470, - 9600582, - 634726 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2018-02-23T21:00:25.459Z", - "completed": "2022-08-27T12:06:25.878Z", - "initiated": "2018-03-04T22:43:09.722Z", - "ministryContact": "KLOCKO DUDLEY", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - } - ] - }, - { - "createdAt": "2014-05-26T08:16:41.646Z", - "completed": "2021-12-18T22:09:31.997Z", - "initiated": "2020-05-28T01:47:54.135Z", - "ministryContact": "ABERNATHY HERBERT", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - } - ] - } - ] - }, - { - "uuid": "cd77aabc-5961-4de5-8222-ead1581bebda", - "siteID": 20005, - "address": "415 Graham Dam", - "latitude": 56.5645, - "longitude": -128.3937, - "lastUpdated": "2021-05-14T21:21:38.580Z", - "city": "Blandaview", - "region": " North Coast", - "victoriaFile": "26250-20/11818", - "regionalFile": "N/A", - "parcelIDs": [ - 2319781, - 3770655, - 8112276, - 662678, - 810224 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2022-08-14T03:43:17.718Z", - "completed": "2022-06-24T21:19:45.707Z", - "initiated": "2021-01-24T00:08:44.413Z", - "ministryContact": "MCDERMOTT ANA", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - } - ] - }, - { - "createdAt": "2016-11-05T01:52:36.474Z", - "completed": "2020-04-03T11:02:31.990Z", - "initiated": "2018-12-20T15:51:19.746Z", - "ministryContact": "STANTON DEBORAH", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - } - ] - } - ] - }, - { - "uuid": "d541b733-1367-4d7e-b063-532036e5a63a", - "siteID": 19451, - "address": "274 Connor Circles", - "latitude": 50.5084, - "longitude": -119.4769, - "lastUpdated": "2016-07-19T23:32:47.117Z", - "city": "Nicolasfurt", - "region": "Mainland/Southwest", - "victoriaFile": "26250-20/6802", - "regionalFile": "N/A", - "parcelIDs": [ - 1743588, - 8525084, - 7620200, - 7234865, - 2683608 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2022-11-08T00:40:35.440Z", - "completed": "2022-01-27T04:06:39.420Z", - "initiated": "2021-03-10T03:54:55.807Z", - "ministryContact": "ADAMS ASHLYNN", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - } - ] - }, - { - "createdAt": "2019-07-30T07:45:20.971Z", - "completed": "2020-04-05T08:02:51.534Z", - "initiated": "2022-09-09T04:52:47.207Z", - "ministryContact": "HARTMANN LUDWIG", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - } - ] - } - ] - }, - { - "uuid": "f8680bed-06ac-4527-85bf-71bd0b42725d", - "siteID": 20480, - "address": "306 Art Crescent", - "latitude": 51.0909, - "longitude": -123.4001, - "lastUpdated": "2019-06-05T01:35:51.067Z", - "city": "Port Dylanville", - "region": "Vancouver Island/Coast", - "victoriaFile": "26250-20/7704", - "regionalFile": "N/A", - "parcelIDs": [ - 357540, - 1617851, - 2854528, - 8051394, - 6018435 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2017-12-18T06:31:07.379Z", - "completed": "2019-08-12T04:50:23.857Z", - "initiated": "2022-04-05T19:15:33.007Z", - "ministryContact": "KUTCH CHET", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - } - ] - }, - { - "createdAt": "2019-08-04T19:47:19.880Z", - "completed": "2018-10-30T12:08:40.274Z", - "initiated": "2018-01-29T17:08:51.841Z", - "ministryContact": "SIMONIS VIVA", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - } - ] - } - ] - }, - { - "uuid": "00920ce0-9ca2-4aae-92a4-d90986e874cf", - "siteID": 19113, - "address": "917 Marian Place", - "latitude": 52.5818, - "longitude": -126.9608, - "lastUpdated": "2014-01-01T00:08:37.220Z", - "city": "Ilianaboro", - "region": "Thompson-Okanagan", - "victoriaFile": "26250-20/15336", - "regionalFile": "N/A", - "parcelIDs": [ - 757353, - 7059653, - 4199046, - 7885618, - 9689791 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2018-11-01T06:54:25.219Z", - "completed": "2021-11-17T03:21:43.710Z", - "initiated": "2017-02-16T04:09:38.778Z", - "ministryContact": "HARVEY KRISTY", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - } - ] - }, - { - "createdAt": "2018-12-31T09:34:06.263Z", - "completed": "2014-09-14T17:30:28.923Z", - "initiated": "2019-01-11T11:55:37.912Z", - "ministryContact": "MARQUARDT SAGE", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - } - ] - } - ] - }, - { - "uuid": "d9999193-2b53-4c1d-afde-66e4021000fa", - "siteID": 19638, - "address": "635 Brooke View", - "latitude": 52.9921, - "longitude": -133.0613, - "lastUpdated": "2015-08-03T04:46:34.885Z", - "city": "Koelpinburgh", - "region": " North Coast", - "victoriaFile": "26250-20/10598", - "regionalFile": "N/A", - "parcelIDs": [ - 9602065, - 539589, - 8071531, - 7642633, - 7593189 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2016-01-11T06:16:26.813Z", - "completed": "2018-10-01T07:55:43.876Z", - "initiated": "2016-10-17T10:14:35.388Z", - "ministryContact": "KASSULKE GUDRUN", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - } - ] - }, - { - "createdAt": "2019-05-17T00:20:36.214Z", - "completed": "2021-05-14T02:39:11.709Z", - "initiated": "2020-07-15T02:07:05.309Z", - "ministryContact": "GRANT JEREL", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - } - ] - } - ] - }, - { - "uuid": "3def9429-d1ff-42c6-a5c9-0f0c23f79a1a", - "siteID": 16780, - "address": "728 Precious Loop", - "latitude": 58.0865, - "longitude": -138.5087, - "lastUpdated": "2013-11-05T17:50:15.963Z", - "city": "Cassincester", - "region": "Thompson-Okanagan", - "victoriaFile": "26250-20/13141", - "regionalFile": "N/A", - "parcelIDs": [ - 182508, - 8980050, - 3312751, - 9946469, - 4237633 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2021-08-13T22:44:13.852Z", - "completed": "2015-06-24T14:35:09.372Z", - "initiated": "2022-02-03T15:55:25.279Z", - "ministryContact": "KRAJCIK HALIE", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - } - ] - }, - { - "createdAt": "2021-03-21T05:01:28.016Z", - "completed": "2018-12-06T16:53:54.520Z", - "initiated": "2019-03-06T08:41:51.274Z", - "ministryContact": "HEGMANN EVAN", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - } - ] - } - ] - }, - { - "uuid": "fb41be7d-3084-42c8-b7b0-4fa9b977bd02", - "siteID": 17698, - "address": "310 Monahan Mountains", - "latitude": 50.3469, - "longitude": -123.5198, - "lastUpdated": "2022-12-25T06:57:02.766Z", - "city": "Green Bay", - "region": "Vancouver Island/Coast", - "victoriaFile": "26250-20/18847", - "regionalFile": "N/A", - "parcelIDs": [ - 318191, - 4226076, - 9075180, - 1559859, - 9254459 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2021-04-05T22:33:53.585Z", - "completed": "2016-09-07T00:40:54.033Z", - "initiated": "2018-10-01T15:13:56.289Z", - "ministryContact": "LABADIE LARUE", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - } - ] - }, - { - "createdAt": "2018-04-30T07:40:08.756Z", - "completed": "2022-04-10T00:44:50.885Z", - "initiated": "2016-10-14T05:41:22.793Z", - "ministryContact": "WELCH INES", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - } - ] - } - ] - }, - { - "uuid": "560d786e-8571-4d19-8568-1b882b17bdf3", - "siteID": 17401, - "address": "8037 Koepp Points", - "latitude": 52.6736, - "longitude": -120.1933, - "lastUpdated": "2015-04-22T23:44:13.213Z", - "city": "Laviniafort", - "region": "Cariboo", - "victoriaFile": "26250-20/19921", - "regionalFile": "N/A", - "parcelIDs": [ - 8688049, - 9406390, - 3286885, - 1916879, - 5330744 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2023-08-04T19:09:47.979Z", - "completed": "2021-04-14T02:38:02.996Z", - "initiated": "2018-01-08T05:39:53.581Z", - "ministryContact": "FEEST WILLIAM", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - } - ] - }, - { - "createdAt": "2021-10-29T10:06:32.641Z", - "completed": "2016-04-23T07:50:45.907Z", - "initiated": "2020-06-03T21:46:15.350Z", - "ministryContact": "ABERNATHY-PARISIAN TRACE", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - } - ] - } - ] - }, - { - "uuid": "1da85789-2c24-4e17-b96d-48a3a504896c", - "siteID": 15565, - "address": "331 Cremin Walk", - "latitude": 52.9041, - "longitude": -136.5336, - "lastUpdated": "2021-12-08T02:44:24.173Z", - "city": "Jenkinsport", - "region": "Mainland/Southwest", - "victoriaFile": "26250-20/16032", - "regionalFile": "N/A", - "parcelIDs": [ - 2412841, - 1559382, - 3188267, - 643364, - 6475621 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2023-02-12T14:28:53.194Z", - "completed": "2020-01-31T17:37:43.091Z", - "initiated": "2023-07-24T13:59:14.951Z", - "ministryContact": "KUHIC JAMEY", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - } - ] - }, - { - "createdAt": "2014-03-27T02:01:18.629Z", - "completed": "2023-09-16T04:03:25.843Z", - "initiated": "2020-01-23T14:33:55.392Z", - "ministryContact": "HESSEL ASIA", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - } - ] - } - ] - }, - { - "uuid": "9ee3a3cb-f188-4de6-a96a-0a33f4a8b861", - "siteID": 15659, - "address": "11909 Stehr Creek", - "latitude": 56.3647, - "longitude": -138.3187, - "lastUpdated": "2022-03-22T23:04:05.451Z", - "city": "North Jenningsland", - "region": "Mainland/Southwest", - "victoriaFile": "26250-20/8663", - "regionalFile": "N/A", - "parcelIDs": [ - 2647376, - 6396940, - 5282791, - 657808, - 8818922 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2013-12-29T06:24:33.093Z", - "completed": "2014-07-23T12:46:09.525Z", - "initiated": "2013-11-29T17:15:18.716Z", - "ministryContact": "KASSULKE WILMER", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - } - ] - }, - { - "createdAt": "2021-03-14T12:51:11.107Z", - "completed": "2018-10-31T20:53:02.696Z", - "initiated": "2021-05-08T18:41:34.399Z", - "ministryContact": "TOWNE FREDERIQUE", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - } - ] - } - ] - }, - { - "uuid": "c9a60a94-b145-4564-8464-d2764a9d2dfb", - "siteID": 19673, - "address": "223 Lonny Ridges", - "latitude": 48.5462, - "longitude": -118.849, - "lastUpdated": "2016-10-25T15:35:27.255Z", - "city": "Collierville", - "region": "Vancouver Island/Coast", - "victoriaFile": "26250-20/16450", - "regionalFile": "N/A", - "parcelIDs": [ - 6662360, - 7769202, - 202503, - 3336147, - 3072211 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2021-01-11T11:24:03.074Z", - "completed": "2023-06-11T14:12:00.928Z", - "initiated": "2016-11-14T02:19:58.977Z", - "ministryContact": "MAGGIO PAOLO", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - } - ] - }, - { - "createdAt": "2017-12-27T05:50:21.404Z", - "completed": "2019-01-25T20:22:54.224Z", - "initiated": "2017-12-11T14:40:39.228Z", - "ministryContact": "LUETTGEN JUDSON", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - } - ] - } - ] - }, - { - "uuid": "e441b71e-cb15-41c1-a93f-42e0b398dc9f", - "siteID": 17453, - "address": "7004 Isaac Shoals", - "latitude": 52.2607, - "longitude": -138.2593, - "lastUpdated": "2016-04-20T14:57:08.600Z", - "city": "Oceaneshire", - "region": "Kootenay", - "victoriaFile": "26250-20/2551", - "regionalFile": "N/A", - "parcelIDs": [ - 3754148, - 1121562, - 7088943, - 1309236, - 9976316 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2013-10-01T10:21:32.461Z", - "completed": "2023-08-18T12:07:47.337Z", - "initiated": "2017-10-04T03:25:22.857Z", - "ministryContact": "SCHULTZ FLO", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - } - ] - }, - { - "createdAt": "2019-02-10T14:31:02.054Z", - "completed": "2017-02-07T01:48:38.869Z", - "initiated": "2020-04-19T16:32:53.861Z", - "ministryContact": "LEBSACK LAUREL", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - } - ] - } - ] - }, - { - "uuid": "d055e1ed-22ec-4aee-bf2f-117a29ef1ade", - "siteID": 18303, - "address": "7943 Leannon Centers", - "latitude": 51.838, - "longitude": -130.7709, - "lastUpdated": "2021-04-15T21:48:13.955Z", - "city": "Fort Loyal", - "region": "Mainland/Southwest", - "victoriaFile": "26250-20/3239", - "regionalFile": "N/A", - "parcelIDs": [ - 3491498, - 8470455, - 2660278, - 3810395, - 3947840 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2015-08-22T21:59:56.303Z", - "completed": "2022-10-21T19:17:10.582Z", - "initiated": "2014-04-08T03:04:11.049Z", - "ministryContact": "KUTCH EWALD", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - } - ] - }, - { - "createdAt": "2014-08-05T04:52:41.442Z", - "completed": "2021-05-02T05:59:07.264Z", - "initiated": "2023-08-15T02:12:58.308Z", - "ministryContact": "O'CONNELL LORA", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - } - ] - } - ] - }, - { - "uuid": "97312a75-45fc-4452-98a1-fb3274620c6c", - "siteID": 18766, - "address": "2807 Kertzmann Skyway", - "latitude": 52.7876, - "longitude": -136.1416, - "lastUpdated": "2017-10-24T17:28:55.442Z", - "city": "South Alleneland", - "region": "Vancouver Island/Coast", - "victoriaFile": "26250-20/10379", - "regionalFile": "N/A", - "parcelIDs": [ - 274046, - 1309461, - 9950428, - 9232653, - 2118630 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2022-09-18T11:46:06.929Z", - "completed": "2023-08-31T04:34:46.928Z", - "initiated": "2015-09-29T23:41:11.515Z", - "ministryContact": "DUBUQUE REBEKA", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - } - ] - }, - { - "createdAt": "2014-08-05T11:56:19.137Z", - "completed": "2023-01-24T05:47:51.278Z", - "initiated": "2014-02-06T20:07:48.058Z", - "ministryContact": "METZ GARNETT", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - } - ] - } - ] - }, - { - "uuid": "00a50b0b-751b-463d-988e-971791be8c39", - "siteID": 19157, - "address": "471 Dickens Coves", - "latitude": 56.4501, - "longitude": -125.8548, - "lastUpdated": "2020-08-12T12:40:02.107Z", - "city": "Watersberg", - "region": "Mainland/Southwest", - "victoriaFile": "26250-20/10421", - "regionalFile": "N/A", - "parcelIDs": [ - 4746192, - 4608866, - 6171521, - 5925732, - 6098398 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2023-02-17T04:59:42.284Z", - "completed": "2014-05-30T20:19:46.667Z", - "initiated": "2018-09-18T11:04:50.670Z", - "ministryContact": "KUVALIS JACQUES", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - } - ] - }, - { - "createdAt": "2019-12-29T19:59:38.486Z", - "completed": "2019-07-07T02:22:30.126Z", - "initiated": "2014-06-08T15:14:51.436Z", - "ministryContact": "WIEGAND-MOSCISKI STERLING", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - } - ] - } - ] - }, - { - "uuid": "7278a3a4-ff9b-4ff3-b13e-911927f24f22", - "siteID": 18530, - "address": "9392 Cleora Mountains", - "latitude": 54.9306, - "longitude": -118.733, - "lastUpdated": "2013-11-20T06:35:58.339Z", - "city": "New Audieborough", - "region": "Cariboo", - "victoriaFile": "26250-20/13347", - "regionalFile": "N/A", - "parcelIDs": [ - 7097371, - 171197, - 1211289, - 1895521, - 2001736 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2021-09-01T03:12:59.503Z", - "completed": "2020-05-20T10:56:31.948Z", - "initiated": "2015-10-13T17:06:51.022Z", - "ministryContact": "FRANEY KATRINE", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - } - ] - }, - { - "createdAt": "2018-05-30T12:05:42.659Z", - "completed": "2014-12-08T23:14:46.104Z", - "initiated": "2023-08-07T15:13:41.187Z", - "ministryContact": "SCHILLER JOSIAH", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - } - ] - } - ] - }, - { - "uuid": "5fe01b51-ebfe-45cc-8d8d-e71313c7085f", - "siteID": 18308, - "address": "3879 Alfonso Springs", - "latitude": 55.5136, - "longitude": -119.3081, - "lastUpdated": "2020-06-02T20:15:33.229Z", - "city": "Rosaleestead", - "region": "Cariboo", - "victoriaFile": "26250-20/18902", - "regionalFile": "N/A", - "parcelIDs": [ - 1151636, - 9074358, - 1904801, - 1595963, - 5027252 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2013-10-02T00:24:41.583Z", - "completed": "2016-02-18T07:20:19.318Z", - "initiated": "2022-10-01T00:54:23.985Z", - "ministryContact": "O'REILLY-RENNER COLLIN", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - } - ] - }, - { - "createdAt": "2023-02-02T02:33:39.952Z", - "completed": "2020-02-21T16:01:56.020Z", - "initiated": "2019-08-27T14:19:50.816Z", - "ministryContact": "TREUTEL DEAN", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - } - ] - } - ] - }, - { - "uuid": "d9e00467-2d90-4d82-a931-b4134609fcf1", - "siteID": 17742, - "address": "483 Darron Branch", - "latitude": 48.868, - "longitude": -119.4668, - "lastUpdated": "2019-09-18T19:06:54.435Z", - "city": "Breitenbergboro", - "region": "Thompson-Okanagan", - "victoriaFile": "26250-20/15047", - "regionalFile": "N/A", - "parcelIDs": [ - 3549492, - 9723405, - 8936891, - 7678154, - 8905731 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2017-12-08T01:04:06.752Z", - "completed": "2015-02-15T08:42:46.219Z", - "initiated": "2019-01-22T11:39:31.186Z", - "ministryContact": "PFEFFER QUINTEN", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - } - ] - }, - { - "createdAt": "2018-05-27T04:15:30.031Z", - "completed": "2014-05-28T17:18:48.269Z", - "initiated": "2020-02-12T07:59:14.177Z", - "ministryContact": "KERTZMANN JED", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - } - ] - } - ] - }, - { - "uuid": "8a9ddfc9-4f81-47d7-af77-74b087b6e389", - "siteID": 18343, - "address": "208 Buckridge Run", - "latitude": 48.7181, - "longitude": -121.14, - "lastUpdated": "2014-11-15T09:34:39.992Z", - "city": "Emeryshire", - "region": "Thompson-Okanagan", - "victoriaFile": "26250-20/5174", - "regionalFile": "N/A", - "parcelIDs": [ - 4264569, - 6541961, - 7320845, - 6212664, - 272792 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2014-04-13T15:23:03.891Z", - "completed": "2014-08-13T02:10:23.096Z", - "initiated": "2016-11-12T16:00:23.468Z", - "ministryContact": "RITCHIE THURMAN", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - } - ] - }, - { - "createdAt": "2016-07-18T08:46:50.334Z", - "completed": "2014-10-24T13:43:46.202Z", - "initiated": "2023-06-23T14:53:57.551Z", - "ministryContact": "KLING RAVEN", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - } - ] - } - ] - }, - { - "uuid": "b8db16fd-5adf-4497-a72b-2076f28ae589", - "siteID": 18296, - "address": "84912 Agnes Lane", - "latitude": 50.4642, - "longitude": -127.719, - "lastUpdated": "2023-03-04T05:55:22.880Z", - "city": "Darrylcester", - "region": "Cariboo", - "victoriaFile": "26250-20/13381", - "regionalFile": "N/A", - "parcelIDs": [ - 8517660, - 847845, - 552938, - 3629208, - 1287770 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2018-10-08T16:14:26.548Z", - "completed": "2019-08-13T01:04:55.041Z", - "initiated": "2019-08-10T01:45:13.905Z", - "ministryContact": "LARKIN CASANDRA", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - } - ] - }, - { - "createdAt": "2014-01-26T21:21:54.932Z", - "completed": "2014-10-05T09:34:06.824Z", - "initiated": "2023-01-29T20:41:23.043Z", - "ministryContact": "POLLICH BRIGITTE", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - } - ] - } - ] - }, - { - "uuid": "bac56b2b-c978-486f-ae8a-e83ee9e9269e", - "siteID": 18759, - "address": "602 Crist Pines", - "latitude": 52.9422, - "longitude": -129.7065, - "lastUpdated": "2019-08-29T19:35:20.582Z", - "city": "Kenosha", - "region": "Thompson-Okanagan", - "victoriaFile": "26250-20/2514", - "regionalFile": "N/A", - "parcelIDs": [ - 5044388, - 7175884, - 3947361, - 1172221, - 9545204 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2023-01-15T02:23:28.149Z", - "completed": "2020-01-22T22:49:54.543Z", - "initiated": "2022-07-23T09:53:01.037Z", - "ministryContact": "AUFDERHAR ALFORD", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - } - ] - }, - { - "createdAt": "2018-01-31T05:09:11.516Z", - "completed": "2021-12-16T08:54:14.968Z", - "initiated": "2017-10-27T11:40:49.999Z", - "ministryContact": "YOST IDA", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - } - ] - } - ] - }, - { - "uuid": "d76f542c-cd48-40d8-8c48-6b15ddf3ab8e", - "siteID": 19142, - "address": "66523 Windler Isle", - "latitude": 52.2586, - "longitude": -137.6428, - "lastUpdated": "2017-04-01T05:51:03.446Z", - "city": "Gutmannfurt", - "region": "Vancouver Island/Coast", - "victoriaFile": "26250-20/16441", - "regionalFile": "N/A", - "parcelIDs": [ - 1566298, - 4851388, - 938430, - 3583300, - 4193390 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2016-02-19T15:09:10.865Z", - "completed": "2015-09-22T13:16:15.080Z", - "initiated": "2021-01-30T11:37:03.287Z", - "ministryContact": "HARRIS ASHLEIGH", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - } - ] - }, - { - "createdAt": "2015-12-25T18:38:57.890Z", - "completed": "2023-02-17T22:49:45.443Z", - "initiated": "2014-06-21T04:54:59.978Z", - "ministryContact": "TREUTEL HERMINIA", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - } - ] - } - ] - }, - { - "uuid": "c0e3e4c7-b06f-4f0d-a6f3-6b7fb7c18e04", - "siteID": 19440, - "address": "2003 Deshaun Key", - "latitude": 55.4832, - "longitude": -135.9854, - "lastUpdated": "2023-07-11T14:18:19.350Z", - "city": "Emoryview", - "region": "Thompson-Okanagan", - "victoriaFile": "26250-20/3934", - "regionalFile": "N/A", - "parcelIDs": [ - 6904213, - 8443879, - 2238828, - 7738106, - 5097919 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2016-09-06T14:18:18.605Z", - "completed": "2015-07-01T17:27:02.303Z", - "initiated": "2018-08-27T07:31:14.636Z", - "ministryContact": "POLLICH RASHEED", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - } - ] - }, - { - "createdAt": "2020-12-05T22:54:39.988Z", - "completed": "2021-12-28T16:47:19.091Z", - "initiated": "2020-05-07T07:24:43.970Z", - "ministryContact": "GLEICHNER ROLLIN", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - } - ] - } - ] - }, - { - "uuid": "772883f6-e523-41ca-8031-6fb0108be331", - "siteID": 15803, - "address": "75792 Joelle Heights", - "latitude": 55.9592, - "longitude": -133.3583, - "lastUpdated": "2020-09-05T02:38:48.838Z", - "city": "Lake Ima", - "region": "Thompson-Okanagan", - "victoriaFile": "26250-20/19761", - "regionalFile": "N/A", - "parcelIDs": [ - 639420, - 9934023, - 2274034, - 2731441, - 5926251 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2021-07-31T08:55:27.762Z", - "completed": "2014-03-19T23:48:26.284Z", - "initiated": "2022-06-05T11:38:40.804Z", - "ministryContact": "SANFORD D'ANGELO", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - } - ] - }, - { - "createdAt": "2014-09-27T14:35:29.754Z", - "completed": "2013-11-25T20:20:34.194Z", - "initiated": "2021-01-06T23:23:02.437Z", - "ministryContact": "WISOKY BRENT", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - } - ] - } - ] - }, - { - "uuid": "0892f2e9-4b10-4849-978d-2c5a63e0465b", - "siteID": 20914, - "address": "15343 Salvatore Ville", - "latitude": 49.2749, - "longitude": -138.0987, - "lastUpdated": "2017-07-27T05:25:54.143Z", - "city": "Port Dayne", - "region": "Mainland/Southwest", - "victoriaFile": "26250-20/4582", - "regionalFile": "N/A", - "parcelIDs": [ - 5607533, - 9277968, - 7957992, - 9137067, - 267615 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2018-09-15T10:00:33.345Z", - "completed": "2023-01-03T14:56:58.302Z", - "initiated": "2017-04-10T12:14:48.693Z", - "ministryContact": "VONRUEDEN MARGUERITE", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - } - ] - }, - { - "createdAt": "2015-09-20T14:40:19.612Z", - "completed": "2018-08-20T02:52:23.512Z", - "initiated": "2021-04-06T22:05:05.710Z", - "ministryContact": "FAHEY SHYANNE", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - } - ] - } - ] - }, - { - "uuid": "c2b3e8c1-eccb-4344-aa38-b2ad728585a8", - "siteID": 18477, - "address": "4362 Shanna Knoll", - "latitude": 50.9467, - "longitude": -131.8639, - "lastUpdated": "2016-03-20T14:08:14.484Z", - "city": "Grand Junction", - "region": "Kootenay", - "victoriaFile": "26250-20/19458", - "regionalFile": "N/A", - "parcelIDs": [ - 7061588, - 5193867, - 8673903, - 7530652, - 6683285 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2021-05-31T23:28:33.145Z", - "completed": "2020-02-25T07:09:08.884Z", - "initiated": "2017-03-22T16:30:53.640Z", - "ministryContact": "MCCLURE GLORIA", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - } - ] - }, - { - "createdAt": "2023-05-09T06:51:34.608Z", - "completed": "2021-01-04T02:07:13.941Z", - "initiated": "2013-10-25T04:05:25.734Z", - "ministryContact": "SPENCER HENDERSON", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - } - ] - } - ] - }, - { - "uuid": "bd84bec0-885f-429e-a42e-85f529741c69", - "siteID": 17798, - "address": "10563 O'Kon Bridge", - "latitude": 57.4421, - "longitude": -123.3005, - "lastUpdated": "2022-09-18T06:04:32.925Z", - "city": "Deshaunchester", - "region": "Thompson-Okanagan", - "victoriaFile": "26250-20/8894", - "regionalFile": "N/A", - "parcelIDs": [ - 8172799, - 3781505, - 2124474, - 1472129, - 8121935 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2015-08-11T14:12:37.105Z", - "completed": "2020-09-18T13:06:47.424Z", - "initiated": "2019-11-21T06:09:53.972Z", - "ministryContact": "CORMIER RETA", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - } - ] - }, - { - "createdAt": "2016-11-27T07:13:10.189Z", - "completed": "2020-11-07T22:40:06.110Z", - "initiated": "2021-01-02T09:40:37.179Z", - "ministryContact": "MCCLURE CLAIR", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - } - ] - } - ] - }, - { - "uuid": "49f23d53-3cb2-4380-8003-8f3238dc2e79", - "siteID": 17559, - "address": "6722 Marcos Ways", - "latitude": 51.4608, - "longitude": -125.457, - "lastUpdated": "2015-08-16T07:30:57.627Z", - "city": "Hymancester", - "region": "Kootenay", - "victoriaFile": "26250-20/7128", - "regionalFile": "N/A", - "parcelIDs": [ - 5134391, - 8182972, - 2600245, - 2969524, - 6483458 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2014-03-19T14:16:59.158Z", - "completed": "2015-10-19T11:07:11.038Z", - "initiated": "2015-04-25T19:22:41.301Z", - "ministryContact": "HAYES JOSIANNE", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - } - ] - }, - { - "createdAt": "2017-11-03T07:10:42.456Z", - "completed": "2021-12-08T13:22:35.337Z", - "initiated": "2016-01-23T06:29:33.093Z", - "ministryContact": "HAND-WINTHEISER JUSTON", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - } - ] - } - ] - }, - { - "uuid": "1470a2f0-fac1-4d40-b2f7-130d196a5a84", - "siteID": 20564, - "address": "735 Koepp Station", - "latitude": 54.7763, - "longitude": -124.3005, - "lastUpdated": "2023-04-26T02:37:43.510Z", - "city": "Gradychester", - "region": "Thompson-Okanagan", - "victoriaFile": "26250-20/18187", - "regionalFile": "N/A", - "parcelIDs": [ - 1576686, - 6685554, - 5760482, - 4291579, - 2864125 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2020-12-13T21:43:35.145Z", - "completed": "2022-05-08T15:40:15.097Z", - "initiated": "2023-09-27T09:07:38.307Z", - "ministryContact": "DICKINSON ANGELINE", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - } - ] - }, - { - "createdAt": "2019-02-13T14:32:00.786Z", - "completed": "2018-07-01T15:20:39.930Z", - "initiated": "2021-10-09T12:36:10.041Z", - "ministryContact": "FUNK MARISA", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - } - ] - } - ] - }, - { - "uuid": "11361ee6-e957-457a-a3cb-938e05d5a43b", - "siteID": 19925, - "address": "516 Myrtice Views", - "latitude": 52.0617, - "longitude": -128.429, - "lastUpdated": "2014-03-27T21:56:42.540Z", - "city": "Savannah", - "region": "Mainland/Southwest", - "victoriaFile": "26250-20/9687", - "regionalFile": "N/A", - "parcelIDs": [ - 4107694, - 935869, - 5151330, - 1854862, - 8986906 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2018-08-01T15:23:12.908Z", - "completed": "2013-12-05T17:33:22.312Z", - "initiated": "2023-02-19T07:39:14.928Z", - "ministryContact": "CHRISTIANSEN LIBBIE", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - } - ] - }, - { - "createdAt": "2014-03-07T06:16:18.622Z", - "completed": "2016-04-19T09:59:47.265Z", - "initiated": "2017-05-21T18:09:24.879Z", - "ministryContact": "ABBOTT BRENDEN", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - } - ] - } - ] - }, - { - "uuid": "0bcdddd2-f2a3-431e-b26e-c021ae71c6a9", - "siteID": 20288, - "address": "2881 Cielo Passage", - "latitude": 55.1895, - "longitude": -129.2201, - "lastUpdated": "2021-09-01T22:50:36.834Z", - "city": "Gabriellamouth", - "region": " North Coast", - "victoriaFile": "26250-20/8673", - "regionalFile": "N/A", - "parcelIDs": [ - 194739, - 7492576, - 1927509, - 252225, - 1775064 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2017-03-18T15:27:25.684Z", - "completed": "2018-07-31T20:33:39.362Z", - "initiated": "2017-05-02T11:08:24.172Z", - "ministryContact": "TREMBLAY NEAL", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - } - ] - }, - { - "createdAt": "2016-04-01T15:29:09.122Z", - "completed": "2017-12-13T16:58:40.979Z", - "initiated": "2014-09-27T09:05:24.261Z", - "ministryContact": "PRICE JULIANNE", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - } - ] - } - ] - }, - { - "uuid": "ac126b99-0e54-48de-a615-8adf0f326787", - "siteID": 18996, - "address": "68782 Smitham Glen", - "latitude": 53.3233, - "longitude": -138.0975, - "lastUpdated": "2018-07-28T06:56:40.673Z", - "city": "Willytown", - "region": "Cariboo", - "victoriaFile": "26250-20/10224", - "regionalFile": "N/A", - "parcelIDs": [ - 8492794, - 8406855, - 7539194, - 6333147, - 9695778 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2022-06-21T09:55:32.655Z", - "completed": "2017-11-15T18:54:53.714Z", - "initiated": "2022-03-18T21:54:22.291Z", - "ministryContact": "ERNSER TRAVON", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - } - ] - }, - { - "createdAt": "2015-12-09T11:43:32.730Z", - "completed": "2021-01-06T18:24:47.842Z", - "initiated": "2021-09-07T17:20:28.167Z", - "ministryContact": "FARRELL ALBERTHA", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - } - ] - } - ] - }, - { - "uuid": "5417fec9-3776-4aa6-b14a-1aaef62db468", - "siteID": 18015, - "address": "39542 Leuschke Extension", - "latitude": 51.9973, - "longitude": -124.3086, - "lastUpdated": "2017-10-26T08:46:32.623Z", - "city": "Muellerview", - "region": "Cariboo", - "victoriaFile": "26250-20/1503", - "regionalFile": "N/A", - "parcelIDs": [ - 8295159, - 6584132, - 1495251, - 3594264, - 5829640 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2019-09-29T09:47:08.810Z", - "completed": "2023-02-12T01:57:19.896Z", - "initiated": "2023-04-21T08:32:14.786Z", - "ministryContact": "CASSIN DAVON", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - } - ] - }, - { - "createdAt": "2015-04-21T00:32:48.773Z", - "completed": "2019-12-08T03:16:55.697Z", - "initiated": "2018-07-03T16:09:30.065Z", - "ministryContact": "TURCOTTE ENA", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - } - ] - } - ] - }, - { - "uuid": "fe0ae3aa-d44d-4c41-ae38-55fccc1b8374", - "siteID": 17875, - "address": "6562 Torphy Cliffs", - "latitude": 55.0532, - "longitude": -133.1924, - "lastUpdated": "2015-05-16T23:45:42.430Z", - "city": "Hendersonhaven", - "region": "Kootenay", - "victoriaFile": "26250-20/12978", - "regionalFile": "N/A", - "parcelIDs": [ - 3328173, - 2018615, - 4091411, - 7821911, - 5797279 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2019-12-16T19:47:07.846Z", - "completed": "2018-05-19T21:08:47.568Z", - "initiated": "2016-07-10T16:38:46.352Z", - "ministryContact": "WUNSCH ELVIE", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - } - ] - }, - { - "createdAt": "2022-01-13T11:42:05.901Z", - "completed": "2019-08-19T11:05:59.119Z", - "initiated": "2016-12-11T20:22:22.848Z", - "ministryContact": "CRONA YASMEEN", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - } - ] - } - ] - }, - { - "uuid": "41ab8a0f-d6a5-478c-8744-a533004ab1bb", - "siteID": 16740, - "address": "86526 Thora Street", - "latitude": 48.0712, - "longitude": -119.5364, - "lastUpdated": "2016-07-14T12:44:56.177Z", - "city": "South Casandraburgh", - "region": "Cariboo", - "victoriaFile": "26250-20/12718", - "regionalFile": "N/A", - "parcelIDs": [ - 2003840, - 266235, - 5388075, - 8529426, - 243841 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2021-04-19T03:17:26.132Z", - "completed": "2016-10-01T13:56:42.036Z", - "initiated": "2021-10-28T21:16:30.692Z", - "ministryContact": "HELLER JOSUE", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - } - ] - }, - { - "createdAt": "2020-07-30T12:53:03.269Z", - "completed": "2018-12-20T08:49:58.769Z", - "initiated": "2015-09-07T22:07:57.389Z", - "ministryContact": "WILLIAMSON COLEMAN", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - } - ] - } - ] - }, - { - "uuid": "e7b2f676-38cc-4a17-8311-dea593a844ee", - "siteID": 17471, - "address": "7062 Darren Fork", - "latitude": 57.227, - "longitude": -129.5804, - "lastUpdated": "2021-06-16T06:41:22.296Z", - "city": "Palo Alto", - "region": "Mainland/Southwest", - "victoriaFile": "26250-20/4704", - "regionalFile": "N/A", - "parcelIDs": [ - 3509535, - 3209376, - 8987445, - 9309651, - 3983508 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2017-11-23T03:01:11.850Z", - "completed": "2021-12-03T02:12:51.402Z", - "initiated": "2019-02-21T08:33:25.215Z", - "ministryContact": "SIPES LEANN", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - } - ] - }, - { - "createdAt": "2017-03-13T11:42:45.565Z", - "completed": "2020-01-23T12:04:38.954Z", - "initiated": "2018-04-04T09:12:51.227Z", - "ministryContact": "OBERBRUNNER DIANNA", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - } - ] - } - ] - }, - { - "uuid": "9aa24da6-f608-49f1-a15e-fdf07fc8516b", - "siteID": 18645, - "address": "896 Tromp Causeway", - "latitude": 51.0774, - "longitude": -129.0026, - "lastUpdated": "2019-09-27T12:13:54.487Z", - "city": "Corpus Christi", - "region": "Thompson-Okanagan", - "victoriaFile": "26250-20/14426", - "regionalFile": "N/A", - "parcelIDs": [ - 2209005, - 3384414, - 1626315, - 7271349, - 2251295 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2017-10-07T23:13:33.474Z", - "completed": "2014-05-04T15:54:06.120Z", - "initiated": "2020-05-28T10:18:40.533Z", - "ministryContact": "MURPHY COLBY", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - } - ] - }, - { - "createdAt": "2019-04-26T03:53:04.846Z", - "completed": "2016-03-25T11:34:15.074Z", - "initiated": "2013-11-20T13:44:02.642Z", - "ministryContact": "HAYES OFELIA", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - } - ] - } - ] - }, - { - "uuid": "d240483f-f130-413d-9560-a741df570e69", - "siteID": 20706, - "address": "9560 Jast Unions", - "latitude": 55.1268, - "longitude": -120.6993, - "lastUpdated": "2022-05-28T14:23:17.189Z", - "city": "Norwalk", - "region": "Cariboo", - "victoriaFile": "26250-20/16846", - "regionalFile": "N/A", - "parcelIDs": [ - 2557529, - 5898539, - 4563726, - 2339178, - 5995463 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2014-10-12T08:51:59.768Z", - "completed": "2015-11-08T17:08:29.876Z", - "initiated": "2016-03-13T15:31:08.591Z", - "ministryContact": "KUNZE MICHEL", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - } - ] - }, - { - "createdAt": "2022-11-12T03:47:26.740Z", - "completed": "2022-12-02T18:12:01.729Z", - "initiated": "2020-02-08T09:15:13.273Z", - "ministryContact": "STEHR JAROD", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - } - ] - } - ] - }, - { - "uuid": "ab1eb550-8ac0-45f1-b6bc-8da1b2c4876a", - "siteID": 17469, - "address": "28535 Schinner Curve", - "latitude": 50.6474, - "longitude": -135.3097, - "lastUpdated": "2015-07-11T12:04:59.382Z", - "city": "East Shirley", - "region": "Mainland/Southwest", - "victoriaFile": "26250-20/3043", - "regionalFile": "N/A", - "parcelIDs": [ - 882937, - 6286581, - 4138846, - 7696784, - 5877543 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2017-04-13T04:28:23.888Z", - "completed": "2020-08-25T09:58:09.691Z", - "initiated": "2023-07-02T23:42:26.976Z", - "ministryContact": "ROGAHN REBA", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - } - ] - }, - { - "createdAt": "2023-09-19T18:54:54.969Z", - "completed": "2015-10-12T16:28:32.906Z", - "initiated": "2017-08-13T06:01:06.642Z", - "ministryContact": "REICHEL JUNE", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - } - ] - } - ] - }, - { - "uuid": "aadc1c4c-25d5-48b4-910b-9047e6cdf76f", - "siteID": 16596, - "address": "38378 Gutkowski Pines", - "latitude": 48.7014, - "longitude": -127.8579, - "lastUpdated": "2019-08-28T21:26:31.608Z", - "city": "Kleinboro", - "region": "Kootenay", - "victoriaFile": "26250-20/6414", - "regionalFile": "N/A", - "parcelIDs": [ - 9203936, - 8134285, - 2604005, - 4768855, - 6717214 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2023-02-27T18:33:53.813Z", - "completed": "2019-02-28T21:59:09.749Z", - "initiated": "2018-01-20T15:02:59.985Z", - "ministryContact": "BATZ CLIFFORD", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - } - ] - }, - { - "createdAt": "2016-03-07T11:10:43.521Z", - "completed": "2020-03-23T01:26:21.744Z", - "initiated": "2020-10-01T23:00:21.506Z", - "ministryContact": "MEDHURST CASSANDRA", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - } - ] - } - ] - }, - { - "uuid": "f1edc85d-dd4f-45bb-8a95-79726620b94a", - "siteID": 15924, - "address": "52530 Julia Walks", - "latitude": 56.9477, - "longitude": -129.5806, - "lastUpdated": "2021-08-24T01:29:07.515Z", - "city": "Alvenafield", - "region": "Vancouver Island/Coast", - "victoriaFile": "26250-20/13309", - "regionalFile": "N/A", - "parcelIDs": [ - 6159233, - 901403, - 2148288, - 8597235, - 6475157 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2019-10-04T06:05:54.890Z", - "completed": "2022-10-27T03:30:42.130Z", - "initiated": "2020-03-16T15:02:47.151Z", - "ministryContact": "HIRTHE PENELOPE", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - } - ] - }, - { - "createdAt": "2020-11-16T03:21:02.030Z", - "completed": "2018-05-16T04:52:46.358Z", - "initiated": "2020-08-01T11:32:12.801Z", - "ministryContact": "CREMIN DESTINY", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - } - ] - } - ] - }, - { - "uuid": "d74ea511-37de-493f-9d71-2a6508141852", - "siteID": 18317, - "address": "542 Cydney Pines", - "latitude": 56.895, - "longitude": -136.2118, - "lastUpdated": "2021-07-08T16:54:23.890Z", - "city": "New Estellside", - "region": "Cariboo", - "victoriaFile": "26250-20/9847", - "regionalFile": "N/A", - "parcelIDs": [ - 3989140, - 4501335, - 7706015, - 1111570, - 4378399 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2014-01-17T22:00:14.424Z", - "completed": "2021-07-06T17:22:19.441Z", - "initiated": "2019-06-13T10:58:40.178Z", - "ministryContact": "SKILES ROSEMARY", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - } - ] - }, - { - "createdAt": "2015-12-03T14:23:33.054Z", - "completed": "2017-01-15T20:49:14.608Z", - "initiated": "2023-01-11T04:00:51.458Z", - "ministryContact": "DICKI ISOM", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - } - ] - } - ] - }, - { - "uuid": "3e9c9b20-c8b8-413c-9c25-ace3d251dd2b", - "siteID": 17469, - "address": "9783 Jennings Harbor", - "latitude": 55.6659, - "longitude": -124.1744, - "lastUpdated": "2018-12-16T02:35:00.580Z", - "city": "West Sylvia", - "region": "Vancouver Island/Coast", - "victoriaFile": "26250-20/2654", - "regionalFile": "N/A", - "parcelIDs": [ - 9411231, - 6598633, - 5782045, - 9771055, - 1048675 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2017-06-01T23:28:22.854Z", - "completed": "2014-10-26T19:05:29.558Z", - "initiated": "2022-11-07T06:14:56.556Z", - "ministryContact": "VEUM NIKKI", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - } - ] - }, - { - "createdAt": "2023-05-20T09:47:32.891Z", - "completed": "2018-05-05T04:55:26.948Z", - "initiated": "2016-07-19T13:05:56.389Z", - "ministryContact": "ROMAGUERA KIERA", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - } - ] - } - ] - }, - { - "uuid": "fbb43c23-1dcc-42be-9ae1-1223f0e96a38", - "siteID": 17912, - "address": "163 Arne Cape", - "latitude": 50.9965, - "longitude": -128.7474, - "lastUpdated": "2023-03-28T08:06:02.963Z", - "city": "Velvastad", - "region": "Kootenay", - "victoriaFile": "26250-20/11160", - "regionalFile": "N/A", - "parcelIDs": [ - 8538481, - 9861017, - 1875071, - 1473690, - 2730577 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2017-09-11T11:09:12.475Z", - "completed": "2015-10-11T08:37:11.572Z", - "initiated": "2017-03-09T14:21:23.599Z", - "ministryContact": "TORP SAMANTA", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - } - ] - }, - { - "createdAt": "2020-02-13T22:30:43.733Z", - "completed": "2020-10-03T19:35:59.031Z", - "initiated": "2023-01-14T01:19:29.274Z", - "ministryContact": "KOCH JOVAN", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - } - ] - } - ] - }, - { - "uuid": "ffbf7cdd-737a-40d7-bae9-57448efe4a1b", - "siteID": 17508, - "address": "3666 Maude Streets", - "latitude": 50.7191, - "longitude": -128.1679, - "lastUpdated": "2013-11-24T13:09:27.310Z", - "city": "Prohaskaland", - "region": "Cariboo", - "victoriaFile": "26250-20/13198", - "regionalFile": "N/A", - "parcelIDs": [ - 4816363, - 8972564, - 7175210, - 7161731, - 6071896 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2016-09-15T08:33:26.989Z", - "completed": "2018-03-20T08:46:21.243Z", - "initiated": "2019-04-27T16:40:14.440Z", - "ministryContact": "TREUTEL GAGE", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - } - ] - }, - { - "createdAt": "2021-08-09T12:15:10.407Z", - "completed": "2016-06-01T22:51:54.332Z", - "initiated": "2017-07-14T20:34:27.772Z", - "ministryContact": "FEEST EUSEBIO", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - } - ] - } - ] - }, - { - "uuid": "0f4a2998-eeeb-4869-b02f-99fd3808b8be", - "siteID": 20290, - "address": "18630 Luz Fork", - "latitude": 55.1654, - "longitude": -120.75, - "lastUpdated": "2016-05-04T07:12:19.828Z", - "city": "East Hartford", - "region": "Vancouver Island/Coast", - "victoriaFile": "26250-20/15348", - "regionalFile": "N/A", - "parcelIDs": [ - 5204058, - 1197259, - 6899063, - 2625142, - 8971802 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2022-12-11T09:34:04.520Z", - "completed": "2021-06-15T03:57:45.926Z", - "initiated": "2020-07-29T22:52:45.303Z", - "ministryContact": "COLLINS BILLIE", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - } - ] - }, - { - "createdAt": "2018-09-17T01:11:26.541Z", - "completed": "2019-09-04T20:24:34.253Z", - "initiated": "2019-12-21T02:09:58.456Z", - "ministryContact": "WUNSCH KHALIL", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - } - ] - } - ] - }, - { - "uuid": "ae6cbe36-6199-4af7-8513-ead0cafa659b", - "siteID": 15618, - "address": "1946 Dannie Divide", - "latitude": 48.8009, - "longitude": -128.0059, - "lastUpdated": "2020-03-10T22:03:46.486Z", - "city": "Anselburgh", - "region": " North Coast", - "victoriaFile": "26250-20/16712", - "regionalFile": "N/A", - "parcelIDs": [ - 9311803, - 3753874, - 4922563, - 4959265, - 4090777 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2015-09-29T18:43:46.630Z", - "completed": "2014-04-02T01:26:46.253Z", - "initiated": "2020-12-27T11:53:23.567Z", - "ministryContact": "HERMAN MARQUISE", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - } - ] - }, - { - "createdAt": "2019-05-06T01:54:23.918Z", - "completed": "2016-05-21T05:29:33.019Z", - "initiated": "2013-11-20T19:55:17.802Z", - "ministryContact": "KAUTZER ABIGAYLE", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - } - ] - } - ] - }, - { - "uuid": "712a5e32-7c9c-4b9a-bf3e-95be1539686a", - "siteID": 17212, - "address": "6043 Gillian Fords", - "latitude": 49.0718, - "longitude": -123.756, - "lastUpdated": "2021-05-10T08:47:07.776Z", - "city": "Simonisland", - "region": "Cariboo", - "victoriaFile": "26250-20/6460", - "regionalFile": "N/A", - "parcelIDs": [ - 3890387, - 5426969, - 6480964, - 6567827, - 4544261 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2021-12-14T09:31:01.606Z", - "completed": "2017-12-01T23:56:40.586Z", - "initiated": "2014-05-03T14:48:05.873Z", - "ministryContact": "MACGYVER MALVINA", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - } - ] - }, - { - "createdAt": "2020-09-17T00:52:22.697Z", - "completed": "2022-10-09T17:18:07.053Z", - "initiated": "2017-01-26T16:26:17.083Z", - "ministryContact": "SWANIAWSKI KYLA", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - } - ] - } - ] - }, - { - "uuid": "1930a5be-266b-4aba-8863-9c72ea59a853", - "siteID": 19805, - "address": "61931 Hilbert Crescent", - "latitude": 51.4523, - "longitude": -121.397, - "lastUpdated": "2014-03-18T07:33:06.358Z", - "city": "Mooretown", - "region": "Mainland/Southwest", - "victoriaFile": "26250-20/11187", - "regionalFile": "N/A", - "parcelIDs": [ - 3778535, - 4810228, - 592043, - 4922095, - 2988783 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2017-02-14T14:39:17.562Z", - "completed": "2018-06-20T20:42:34.361Z", - "initiated": "2018-07-25T11:22:06.667Z", - "ministryContact": "KLOCKO ALVINA", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - } - ] - }, - { - "createdAt": "2019-02-05T17:37:22.101Z", - "completed": "2022-10-18T17:17:36.629Z", - "initiated": "2014-02-12T21:11:31.013Z", - "ministryContact": "JOHNSON CHRIS", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - } - ] - } - ] - }, - { - "uuid": "ed7d4fb5-b737-4b28-b085-20c1036766e3", - "siteID": 18638, - "address": "16807 Ed Burgs", - "latitude": 54.8839, - "longitude": -124.8597, - "lastUpdated": "2022-01-13T10:19:47.745Z", - "city": "Bellevue", - "region": "Mainland/Southwest", - "victoriaFile": "26250-20/12619", - "regionalFile": "N/A", - "parcelIDs": [ - 4875419, - 2030256, - 2992912, - 7873818, - 2271515 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2020-07-22T17:30:22.435Z", - "completed": "2017-05-03T03:37:15.479Z", - "initiated": "2019-08-05T21:30:34.321Z", - "ministryContact": "PAUCEK JORGE", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - } - ] - }, - { - "createdAt": "2018-07-17T13:27:05.609Z", - "completed": "2020-07-05T03:13:41.692Z", - "initiated": "2022-08-11T01:19:37.505Z", - "ministryContact": "KOVACEK BROCK", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - } - ] - } - ] - }, - { - "uuid": "381c8df5-c5e2-46d9-bf00-d6abbdf930db", - "siteID": 15827, - "address": "928 Zackery Crossroad", - "latitude": 50.1833, - "longitude": -128.4641, - "lastUpdated": "2017-04-22T15:10:03.114Z", - "city": "Fort Alyson", - "region": "Thompson-Okanagan", - "victoriaFile": "26250-20/10788", - "regionalFile": "N/A", - "parcelIDs": [ - 9987152, - 1968191, - 6105170, - 5302941, - 1048406 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2021-03-18T05:04:31.223Z", - "completed": "2022-07-29T08:34:40.763Z", - "initiated": "2014-01-15T08:06:33.450Z", - "ministryContact": "AUER ANNABELLE", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - } - ] - }, - { - "createdAt": "2021-08-28T01:27:46.638Z", - "completed": "2016-05-14T17:17:32.709Z", - "initiated": "2016-08-08T00:59:19.762Z", - "ministryContact": "GRIMES STEVE", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - } - ] - } - ] - }, - { - "uuid": "b1d363c4-4600-42fd-beb4-ea788f6d17c3", - "siteID": 17645, - "address": "442 Lehner Spring", - "latitude": 56.882, - "longitude": -124.1192, - "lastUpdated": "2020-05-02T19:46:32.720Z", - "city": "East Candice", - "region": "Vancouver Island/Coast", - "victoriaFile": "26250-20/1059", - "regionalFile": "N/A", - "parcelIDs": [ - 4525598, - 8954611, - 118542, - 326211, - 9896228 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2021-03-04T21:41:30.971Z", - "completed": "2016-02-24T23:45:28.129Z", - "initiated": "2016-03-26T00:32:36.685Z", - "ministryContact": "PFANNERSTILL MADELYNN", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - } - ] - }, - { - "createdAt": "2021-03-19T13:47:45.284Z", - "completed": "2020-07-01T17:53:13.202Z", - "initiated": "2017-07-11T08:08:19.316Z", - "ministryContact": "BRAKUS BARBARA", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - } - ] - } - ] - }, - { - "uuid": "3f5daf2a-e2b8-4268-93c1-5f04fccaabb5", - "siteID": 20845, - "address": "6643 Adella Landing", - "latitude": 50.328, - "longitude": -136.3332, - "lastUpdated": "2014-11-06T12:05:07.754Z", - "city": "Peggieburgh", - "region": "Mainland/Southwest", - "victoriaFile": "26250-20/13184", - "regionalFile": "N/A", - "parcelIDs": [ - 6736208, - 9227949, - 3124550, - 7523715, - 5424689 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2015-08-19T15:26:23.562Z", - "completed": "2018-04-08T21:23:28.622Z", - "initiated": "2013-11-17T19:48:48.141Z", - "ministryContact": "NIENOW MEAGHAN", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - } - ] - }, - { - "createdAt": "2023-03-08T10:23:34.551Z", - "completed": "2014-11-17T19:38:03.983Z", - "initiated": "2014-06-02T20:12:27.281Z", - "ministryContact": "EMMERICH-KUB RUBYE", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - } - ] - } - ] - }, - { - "uuid": "999d6387-7a1e-4efa-9711-7258ecc1145c", - "siteID": 15587, - "address": "988 Wyman Ports", - "latitude": 58.0984, - "longitude": -135.2237, - "lastUpdated": "2013-12-21T09:51:05.477Z", - "city": "South Hilbert", - "region": "Vancouver Island/Coast", - "victoriaFile": "26250-20/14743", - "regionalFile": "N/A", - "parcelIDs": [ - 3726402, - 7298966, - 2382777, - 582109, - 6808926 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2023-05-19T20:40:41.047Z", - "completed": "2023-06-01T02:21:35.733Z", - "initiated": "2020-09-26T02:39:47.739Z", - "ministryContact": "RUECKER GIANNI", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - } - ] - }, - { - "createdAt": "2019-08-18T05:28:33.909Z", - "completed": "2021-11-18T22:37:18.183Z", - "initiated": "2016-10-22T05:06:24.663Z", - "ministryContact": "SANFORD SHERWOOD", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - } - ] - } - ] - }, - { - "uuid": "5fc2d65a-c686-4f5b-95a0-4c4bf13a7b97", - "siteID": 18848, - "address": "59935 Reinger Squares", - "latitude": 57.5337, - "longitude": -133.6542, - "lastUpdated": "2016-06-03T00:46:12.905Z", - "city": "Santa Fe", - "region": "Mainland/Southwest", - "victoriaFile": "26250-20/5773", - "regionalFile": "N/A", - "parcelIDs": [ - 295487, - 2221453, - 910756, - 3199012, - 8100765 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2016-06-10T11:21:12.015Z", - "completed": "2021-11-05T06:55:37.711Z", - "initiated": "2014-12-05T10:59:04.482Z", - "ministryContact": "SPINKA LEOPOLD", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - } - ] - }, - { - "createdAt": "2022-08-01T20:42:01.771Z", - "completed": "2016-03-30T06:36:48.730Z", - "initiated": "2017-02-01T11:38:30.332Z", - "ministryContact": "LUBOWITZ HEATH", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - } - ] - } - ] - }, - { - "uuid": "b29f1c51-199d-4575-a8fc-d094beb26740", - "siteID": 18620, - "address": "6399 Cleve Shores", - "latitude": 49.4108, - "longitude": -119.1667, - "lastUpdated": "2020-11-28T13:22:24.081Z", - "city": "East Randiside", - "region": "Vancouver Island/Coast", - "victoriaFile": "26250-20/18650", - "regionalFile": "N/A", - "parcelIDs": [ - 5189522, - 7443546, - 1656071, - 3306816, - 4908607 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2014-02-06T20:20:53.124Z", - "completed": "2023-09-12T19:16:36.261Z", - "initiated": "2023-07-08T03:11:42.229Z", - "ministryContact": "MORISSETTE YESSENIA", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - } - ] - }, - { - "createdAt": "2021-02-12T09:21:47.435Z", - "completed": "2015-08-21T22:50:50.390Z", - "initiated": "2017-12-19T15:45:51.340Z", - "ministryContact": "ERNSER ARVID", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - } - ] - } - ] - }, - { - "uuid": "0df379bf-06c6-46e6-af53-dc29f9fcb85b", - "siteID": 15542, - "address": "8073 Ellsworth Groves", - "latitude": 58.6457, - "longitude": -136.4002, - "lastUpdated": "2021-06-28T11:20:48.748Z", - "city": "Victoria", - "region": " North Coast", - "victoriaFile": "26250-20/19128", - "regionalFile": "N/A", - "parcelIDs": [ - 8846126, - 3715890, - 418121, - 2846399, - 2097556 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2017-11-19T02:39:04.428Z", - "completed": "2017-03-25T08:37:39.929Z", - "initiated": "2022-03-11T15:04:14.157Z", - "ministryContact": "JERDE MOHAMMAD", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - } - ] - }, - { - "createdAt": "2021-08-24T14:49:25.939Z", - "completed": "2023-03-07T07:41:36.056Z", - "initiated": "2018-10-03T17:05:25.590Z", - "ministryContact": "HERMANN LORAINE", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - } - ] - } - ] - }, - { - "uuid": "5032c0f3-babf-4860-88b7-f8ab50e712c2", - "siteID": 17801, - "address": "3140 Kertzmann Ways", - "latitude": 55.2619, - "longitude": -132.7184, - "lastUpdated": "2022-11-17T23:41:48.396Z", - "city": "North Bernadetteside", - "region": "Mainland/Southwest", - "victoriaFile": "26250-20/7403", - "regionalFile": "N/A", - "parcelIDs": [ - 583926, - 4934183, - 3589273, - 3233927, - 3832254 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2018-12-08T11:47:52.739Z", - "completed": "2021-12-10T11:28:55.672Z", - "initiated": "2021-11-28T13:34:08.381Z", - "ministryContact": "TREUTEL MAYA", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - } - ] - }, - { - "createdAt": "2018-06-26T04:16:27.144Z", - "completed": "2016-08-31T23:40:13.691Z", - "initiated": "2020-12-17T02:10:08.526Z", - "ministryContact": "O'CONNER WAYNE", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - } - ] - } - ] - }, - { - "uuid": "25e15229-6a0d-46d3-b258-b2d2a7869f77", - "siteID": 16431, - "address": "2009 Pedro Motorway", - "latitude": 55.8547, - "longitude": -122.3252, - "lastUpdated": "2021-07-21T04:51:33.826Z", - "city": "Burien", - "region": "Kootenay", - "victoriaFile": "26250-20/9113", - "regionalFile": "N/A", - "parcelIDs": [ - 5807035, - 2971324, - 7291692, - 6882867, - 5594292 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2015-02-27T02:29:18.714Z", - "completed": "2019-09-22T03:50:23.862Z", - "initiated": "2021-04-22T02:01:08.340Z", - "ministryContact": "HAND EMIE", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - } - ] - }, - { - "createdAt": "2015-08-08T15:12:28.134Z", - "completed": "2019-05-04T08:14:36.680Z", - "initiated": "2018-01-20T06:04:46.068Z", - "ministryContact": "WINDLER ARI", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - } - ] - } - ] - }, - { - "uuid": "67e82560-72f5-489f-aca2-21d5463b095d", - "siteID": 18057, - "address": "517 Anabel Port", - "latitude": 58.9354, - "longitude": -136.113, - "lastUpdated": "2020-03-18T01:57:56.626Z", - "city": "West Jeremieview", - "region": "Vancouver Island/Coast", - "victoriaFile": "26250-20/14171", - "regionalFile": "N/A", - "parcelIDs": [ - 7057724, - 1419420, - 4118188, - 7226908, - 1014867 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2022-06-14T02:44:16.022Z", - "completed": "2017-11-19T11:07:42.330Z", - "initiated": "2013-11-08T15:53:44.309Z", - "ministryContact": "RODRIGUEZ KAYLEIGH", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - } - ] - }, - { - "createdAt": "2017-04-22T11:40:03.230Z", - "completed": "2019-09-01T05:46:44.555Z", - "initiated": "2023-02-14T14:37:50.763Z", - "ministryContact": "WALSH HENDERSON", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - } - ] - } - ] - }, - { - "uuid": "a89f5881-f5a8-4987-aa03-90801413342f", - "siteID": 16434, - "address": "6753 Beer Fall", - "latitude": 51.101, - "longitude": -120.0379, - "lastUpdated": "2023-09-20T23:16:34.704Z", - "city": "Wilburnworth", - "region": "Mainland/Southwest", - "victoriaFile": "26250-20/2563", - "regionalFile": "N/A", - "parcelIDs": [ - 8778916, - 4846564, - 6449613, - 4684935, - 1587563 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2020-03-25T21:19:18.896Z", - "completed": "2017-05-01T12:14:40.043Z", - "initiated": "2022-02-25T15:54:36.879Z", - "ministryContact": "SCHUPPE DELTA", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - } - ] - }, - { - "createdAt": "2022-11-24T09:01:42.147Z", - "completed": "2015-02-11T04:04:15.720Z", - "initiated": "2023-06-01T10:52:18.532Z", - "ministryContact": "WILLIAMSON HALEIGH", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - } - ] - } - ] - }, - { - "uuid": "6fb7faf3-c3ae-4e60-90ab-018f2a5cb83d", - "siteID": 15487, - "address": "5268 Sporer Circles", - "latitude": 57.9025, - "longitude": -131.9591, - "lastUpdated": "2014-12-17T11:19:38.656Z", - "city": "Fort Dewayne", - "region": "Cariboo", - "victoriaFile": "26250-20/11416", - "regionalFile": "N/A", - "parcelIDs": [ - 633561, - 3019415, - 2133560, - 9371201, - 5100644 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2014-06-29T07:16:04.175Z", - "completed": "2020-04-03T17:27:05.138Z", - "initiated": "2020-11-19T22:05:57.653Z", - "ministryContact": "GLEASON JAYDE", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - } - ] - }, - { - "createdAt": "2014-06-22T12:17:55.493Z", - "completed": "2014-06-30T09:47:40.095Z", - "initiated": "2016-03-24T07:53:19.675Z", - "ministryContact": "MCDERMOTT ENOLA", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - } - ] - } - ] - }, - { - "uuid": "9166aa5f-aefb-4e83-9a5e-18b6e7c452cf", - "siteID": 20756, - "address": "9914 Tatum Centers", - "latitude": 51.5647, - "longitude": -130.4676, - "lastUpdated": "2015-09-28T02:17:41.000Z", - "city": "Fort Alan", - "region": "Vancouver Island/Coast", - "victoriaFile": "26250-20/17972", - "regionalFile": "N/A", - "parcelIDs": [ - 3722843, - 1325202, - 4266599, - 8339106, - 8626277 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2023-01-18T03:16:36.349Z", - "completed": "2023-09-13T06:05:50.897Z", - "initiated": "2022-04-13T05:25:00.538Z", - "ministryContact": "WISOZK RACHELLE", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - } - ] - }, - { - "createdAt": "2018-05-15T23:37:29.534Z", - "completed": "2022-07-09T05:36:39.960Z", - "initiated": "2019-08-24T23:39:27.340Z", - "ministryContact": "O'CONNER FABIAN", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - } - ] - } - ] - }, - { - "uuid": "078d9a42-962e-4384-b320-11fd094edd3b", - "siteID": 17235, - "address": "65255 Johns Dale", - "latitude": 58.5687, - "longitude": -135.5561, - "lastUpdated": "2015-06-10T12:34:30.446Z", - "city": "Rohanmouth", - "region": "Cariboo", - "victoriaFile": "26250-20/19581", - "regionalFile": "N/A", - "parcelIDs": [ - 9021851, - 8205473, - 6395575, - 9956338, - 6138920 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2022-02-21T11:14:13.084Z", - "completed": "2016-03-05T23:46:59.343Z", - "initiated": "2016-04-17T08:14:07.692Z", - "ministryContact": "BAHRINGER ADDIE", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - } - ] - }, - { - "createdAt": "2015-03-28T04:01:05.051Z", - "completed": "2017-01-10T13:43:49.408Z", - "initiated": "2014-04-09T19:24:51.479Z", - "ministryContact": "O'CONNELL KATRINE", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - } - ] - } - ] - }, - { - "uuid": "45431253-1fdd-4366-b7c2-a6b210b368f0", - "siteID": 18421, - "address": "813 Hoppe Gardens", - "latitude": 55.1883, - "longitude": -124.9293, - "lastUpdated": "2020-02-03T20:08:01.642Z", - "city": "Ebertchester", - "region": "Kootenay", - "victoriaFile": "26250-20/12882", - "regionalFile": "N/A", - "parcelIDs": [ - 9088258, - 5771167, - 2365206, - 9415975, - 4984060 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2019-05-16T12:18:35.922Z", - "completed": "2016-07-03T22:45:55.287Z", - "initiated": "2019-05-21T19:34:05.708Z", - "ministryContact": "CORMIER RUSTY", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - } - ] - }, - { - "createdAt": "2023-05-13T12:49:06.045Z", - "completed": "2020-12-25T18:18:49.635Z", - "initiated": "2023-04-18T00:02:29.048Z", - "ministryContact": "GRIMES OTTILIE", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - } - ] - } - ] - }, - { - "uuid": "0c9fc59c-bb11-4ee4-9f6f-1b22688aecbc", - "siteID": 19363, - "address": "594 Retha Port", - "latitude": 53.0208, - "longitude": -119.4014, - "lastUpdated": "2023-02-20T11:35:23.522Z", - "city": "Carmichael", - "region": "Kootenay", - "victoriaFile": "26250-20/14967", - "regionalFile": "N/A", - "parcelIDs": [ - 6657724, - 1635634, - 7652717, - 8612316, - 5964438 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2014-02-10T23:33:36.939Z", - "completed": "2021-08-10T06:39:42.035Z", - "initiated": "2022-03-05T10:06:22.121Z", - "ministryContact": "KLOCKO KACIE", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - } - ] - }, - { - "createdAt": "2014-09-24T13:44:26.820Z", - "completed": "2019-04-07T23:43:39.907Z", - "initiated": "2017-12-05T15:25:15.018Z", - "ministryContact": "SAUER-CONSIDINE JESSY", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - } - ] - } - ] - }, - { - "uuid": "eb83a110-7f18-4d33-9110-38bf7861a9de", - "siteID": 15879, - "address": "69415 Adams Divide", - "latitude": 53.9675, - "longitude": -125.1246, - "lastUpdated": "2018-11-30T17:02:02.745Z", - "city": "Bernardport", - "region": "Cariboo", - "victoriaFile": "26250-20/18765", - "regionalFile": "N/A", - "parcelIDs": [ - 636349, - 4616134, - 271638, - 1028796, - 7146010 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2021-02-23T07:32:01.237Z", - "completed": "2017-05-20T08:52:23.101Z", - "initiated": "2022-10-15T14:49:54.697Z", - "ministryContact": "RENNER URIEL", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - } - ] - }, - { - "createdAt": "2019-01-05T07:38:40.932Z", - "completed": "2020-09-05T20:52:27.420Z", - "initiated": "2023-08-31T06:42:07.657Z", - "ministryContact": "KSHLERIN NETTIE", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - } - ] - } - ] - }, - { - "uuid": "1ef661a8-1c3f-42e2-abcf-3022d63b56a6", - "siteID": 18472, - "address": "331 Lemke Ridge", - "latitude": 54.083, - "longitude": -136.5385, - "lastUpdated": "2014-11-10T16:41:01.271Z", - "city": "South Sallie", - "region": "Vancouver Island/Coast", - "victoriaFile": "26250-20/5287", - "regionalFile": "N/A", - "parcelIDs": [ - 7777079, - 5571379, - 6489345, - 8977120, - 7140457 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2015-11-25T10:19:09.326Z", - "completed": "2014-09-11T16:55:05.322Z", - "initiated": "2018-03-31T19:35:18.176Z", - "ministryContact": "MURRAY FRIDA", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - } - ] - }, - { - "createdAt": "2022-01-19T21:23:58.595Z", - "completed": "2022-10-02T12:21:22.302Z", - "initiated": "2016-09-01T05:56:36.723Z", - "ministryContact": "PFANNERSTILL SAVION", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - } - ] - } - ] - }, - { - "uuid": "f25309c5-1475-4da8-8a6e-2eaf3d6c15bf", - "siteID": 20879, - "address": "98467 Ariel Land", - "latitude": 55.9773, - "longitude": -123.8276, - "lastUpdated": "2016-03-31T16:13:57.991Z", - "city": "Alfredaside", - "region": " North Coast", - "victoriaFile": "26250-20/4273", - "regionalFile": "N/A", - "parcelIDs": [ - 1401267, - 9504915, - 4115655, - 9066076, - 4873804 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2014-01-21T00:48:50.317Z", - "completed": "2015-06-22T01:49:19.695Z", - "initiated": "2019-04-16T06:40:10.708Z", - "ministryContact": "WALKER VERN", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - } - ] - }, - { - "createdAt": "2017-09-20T22:45:30.294Z", - "completed": "2014-04-25T07:31:53.509Z", - "initiated": "2022-02-23T03:05:40.700Z", - "ministryContact": "O'REILLY VEDA", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - } - ] - } - ] - }, - { - "uuid": "206193e9-6091-4586-a03e-d00d308a236a", - "siteID": 18397, - "address": "87690 Trenton Heights", - "latitude": 50.5878, - "longitude": -122.3137, - "lastUpdated": "2023-05-25T12:26:45.628Z", - "city": "Port Howardberg", - "region": "Vancouver Island/Coast", - "victoriaFile": "26250-20/17483", - "regionalFile": "N/A", - "parcelIDs": [ - 3950068, - 5329085, - 4674659, - 8523492, - 5737991 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2020-01-12T16:05:41.504Z", - "completed": "2014-07-18T21:02:26.188Z", - "initiated": "2020-08-21T22:27:49.731Z", - "ministryContact": "HEGMANN LEWIS", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - } - ] - }, - { - "createdAt": "2016-01-30T01:25:56.263Z", - "completed": "2013-10-06T15:57:03.828Z", - "initiated": "2020-07-06T20:52:04.565Z", - "ministryContact": "SHIELDS-ORN THEODORA", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - } - ] - } - ] - }, - { - "uuid": "928c370a-26ee-4302-8118-30e384529642", - "siteID": 18948, - "address": "51625 Violet Way", - "latitude": 48.6347, - "longitude": -124.1892, - "lastUpdated": "2022-04-29T08:34:59.993Z", - "city": "Stantonside", - "region": "Thompson-Okanagan", - "victoriaFile": "26250-20/7476", - "regionalFile": "N/A", - "parcelIDs": [ - 9267372, - 9801211, - 4804902, - 299324, - 8675113 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2020-09-26T04:32:57.833Z", - "completed": "2017-03-21T11:41:01.964Z", - "initiated": "2021-02-14T19:00:07.010Z", - "ministryContact": "DENESIK SHANE", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - } - ] - }, - { - "createdAt": "2019-10-18T13:41:12.968Z", - "completed": "2015-03-24T13:14:42.697Z", - "initiated": "2016-01-27T06:17:15.572Z", - "ministryContact": "BERGSTROM EULAH", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - } - ] - } - ] - }, - { - "uuid": "880b85fc-05dd-45cf-879f-326ee821d859", - "siteID": 18165, - "address": "3843 Pink Dale", - "latitude": 58.0005, - "longitude": -124.7055, - "lastUpdated": "2020-03-20T23:32:04.375Z", - "city": "Oswaldfurt", - "region": "Thompson-Okanagan", - "victoriaFile": "26250-20/4447", - "regionalFile": "N/A", - "parcelIDs": [ - 1290461, - 745043, - 541727, - 3484049, - 4554986 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2019-12-19T14:52:22.579Z", - "completed": "2016-05-08T13:17:10.275Z", - "initiated": "2022-06-15T04:10:13.547Z", - "ministryContact": "CONNELLY BRODY", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - } - ] - }, - { - "createdAt": "2016-12-08T18:36:33.904Z", - "completed": "2022-04-30T05:09:50.405Z", - "initiated": "2016-08-04T19:08:44.108Z", - "ministryContact": "FRIESEN ISOM", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - } - ] - } - ] - }, - { - "uuid": "3a4bc996-8393-4a11-a95c-b1503890102a", - "siteID": 18844, - "address": "980 Hayes Meadow", - "latitude": 57.0997, - "longitude": -136.2001, - "lastUpdated": "2016-02-19T04:55:21.164Z", - "city": "Ritchietown", - "region": "Vancouver Island/Coast", - "victoriaFile": "26250-20/17899", - "regionalFile": "N/A", - "parcelIDs": [ - 3694639, - 7713626, - 9006128, - 2749895, - 7634615 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2014-02-17T19:40:07.462Z", - "completed": "2023-04-20T14:28:23.903Z", - "initiated": "2019-08-16T23:40:28.795Z", - "ministryContact": "SCHULTZ ISABELLA", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - } - ] - }, - { - "createdAt": "2023-05-13T02:41:30.371Z", - "completed": "2021-04-25T02:38:01.375Z", - "initiated": "2021-12-05T22:27:53.076Z", - "ministryContact": "PFANNERSTILL REESE", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - } - ] - } - ] - }, - { - "uuid": "47c75034-ebf0-4583-8c04-7ede261c1215", - "siteID": 16049, - "address": "91016 Dibbert Centers", - "latitude": 49.6126, - "longitude": -118.379, - "lastUpdated": "2016-01-25T08:14:01.372Z", - "city": "West Tanya", - "region": " North Coast", - "victoriaFile": "26250-20/4321", - "regionalFile": "N/A", - "parcelIDs": [ - 267648, - 8167674, - 255819, - 4876942, - 668835 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2014-04-13T07:34:52.187Z", - "completed": "2019-10-28T02:44:26.125Z", - "initiated": "2017-03-30T04:51:53.013Z", - "ministryContact": "BERGNAUM RAEGAN", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - } - ] - }, - { - "createdAt": "2021-11-21T00:56:55.240Z", - "completed": "2020-05-24T17:59:19.386Z", - "initiated": "2021-09-26T23:59:50.932Z", - "ministryContact": "TORP-NOLAN GERDA", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - } - ] - } - ] - }, - { - "uuid": "2e85cace-1ace-461d-a766-4a4934049e45", - "siteID": 20630, - "address": "106 Rempel Falls", - "latitude": 50.6413, - "longitude": -128.0162, - "lastUpdated": "2023-04-27T17:48:16.807Z", - "city": "Adrainberg", - "region": "Thompson-Okanagan", - "victoriaFile": "26250-20/1547", - "regionalFile": "N/A", - "parcelIDs": [ - 2651618, - 7773867, - 1161938, - 8128269, - 6188658 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2017-04-01T10:49:10.626Z", - "completed": "2023-05-30T11:14:32.581Z", - "initiated": "2019-02-02T12:09:57.492Z", - "ministryContact": "MRAZ HERTHA", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - } - ] - }, - { - "createdAt": "2017-03-04T12:29:58.347Z", - "completed": "2023-02-12T01:06:03.150Z", - "initiated": "2014-11-09T13:46:51.752Z", - "ministryContact": "GUTKOWSKI IMA", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - } - ] - } - ] - }, - { - "uuid": "7d055335-5cea-437e-85a5-c4d3be3a8795", - "siteID": 20816, - "address": "1479 Shyanne Camp", - "latitude": 48.3773, - "longitude": -121.9034, - "lastUpdated": "2014-04-25T13:37:15.124Z", - "city": "Carolina", - "region": "Kootenay", - "victoriaFile": "26250-20/7941", - "regionalFile": "N/A", - "parcelIDs": [ - 8612995, - 6854048, - 4039965, - 7260289, - 2513885 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2018-05-02T08:39:30.793Z", - "completed": "2016-03-18T08:49:59.806Z", - "initiated": "2022-06-18T19:04:42.125Z", - "ministryContact": "NITZSCHE JAYCEE", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - } - ] - }, - { - "createdAt": "2016-03-08T06:58:17.655Z", - "completed": "2019-08-24T11:04:36.233Z", - "initiated": "2018-08-19T07:55:49.459Z", - "ministryContact": "MAYER BERNIECE", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - } - ] - } - ] - }, - { - "uuid": "ad56ff3e-8e1d-4596-86f3-8bc563e8daa6", - "siteID": 18262, - "address": "22949 Junius Walks", - "latitude": 56.8583, - "longitude": -118.8072, - "lastUpdated": "2017-09-08T10:58:45.944Z", - "city": "North Carloport", - "region": "Vancouver Island/Coast", - "victoriaFile": "26250-20/19209", - "regionalFile": "N/A", - "parcelIDs": [ - 8026278, - 3469923, - 4330563, - 9780949, - 6042476 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2015-04-03T04:22:36.221Z", - "completed": "2015-12-27T00:25:46.349Z", - "initiated": "2015-12-21T21:35:17.069Z", - "ministryContact": "BEATTY AFTON", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - } - ] - }, - { - "createdAt": "2023-06-01T06:02:30.940Z", - "completed": "2015-02-01T17:17:10.853Z", - "initiated": "2014-02-15T09:43:47.284Z", - "ministryContact": "KLING RAHUL", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - } - ] - } - ] - }, - { - "uuid": "946023b4-7922-4228-bcb9-25a3b6d447d7", - "siteID": 19704, - "address": "57280 Wiza Square", - "latitude": 55.3648, - "longitude": -132.3586, - "lastUpdated": "2020-06-15T09:27:22.413Z", - "city": "Alisashire", - "region": " North Coast", - "victoriaFile": "26250-20/18588", - "regionalFile": "N/A", - "parcelIDs": [ - 4287355, - 6884390, - 8163748, - 6077585, - 3133074 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2021-07-25T14:37:56.339Z", - "completed": "2013-10-14T11:18:20.737Z", - "initiated": "2015-01-30T08:40:55.418Z", - "ministryContact": "KREIGER SHANELLE", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - } - ] - }, - { - "createdAt": "2022-06-23T20:01:28.709Z", - "completed": "2019-01-14T11:19:43.382Z", - "initiated": "2020-11-01T01:16:13.337Z", - "ministryContact": "BOYER GWEN", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - } - ] - } - ] - }, - { - "uuid": "132d943a-addc-4ba0-adde-5948e8ade5dc", - "siteID": 15718, - "address": "76772 Della Shoal", - "latitude": 52.2122, - "longitude": -122.5826, - "lastUpdated": "2015-02-21T13:15:17.908Z", - "city": "Lake Paris", - "region": "Kootenay", - "victoriaFile": "26250-20/5204", - "regionalFile": "N/A", - "parcelIDs": [ - 4064235, - 2837760, - 2967986, - 3125853, - 7402633 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2018-05-22T23:54:09.471Z", - "completed": "2015-11-23T03:43:38.782Z", - "initiated": "2019-03-18T01:32:48.198Z", - "ministryContact": "ABERNATHY MARISOL", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - } - ] - }, - { - "createdAt": "2021-07-25T21:52:22.235Z", - "completed": "2015-12-08T03:26:31.296Z", - "initiated": "2016-02-08T21:05:55.427Z", - "ministryContact": "SMITHAM XAVIER", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - } - ] - } - ] - }, - { - "uuid": "494fefac-1fb8-4691-8d69-19ab465ebdff", - "siteID": 18183, - "address": "96529 Nolan Spring", - "latitude": 54.9337, - "longitude": -127.9493, - "lastUpdated": "2022-09-08T08:47:34.794Z", - "city": "East Finnworth", - "region": "Thompson-Okanagan", - "victoriaFile": "26250-20/5961", - "regionalFile": "N/A", - "parcelIDs": [ - 2724375, - 9799146, - 8643255, - 280832, - 5374567 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2019-06-02T16:06:19.056Z", - "completed": "2016-09-29T13:58:40.453Z", - "initiated": "2015-09-25T10:00:50.787Z", - "ministryContact": "HERMAN JAZMYNE", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - } - ] - }, - { - "createdAt": "2022-09-22T12:01:43.509Z", - "completed": "2020-11-06T02:05:05.226Z", - "initiated": "2016-09-20T04:36:02.751Z", - "ministryContact": "WILKINSON MARIA", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - } - ] - } - ] - }, - { - "uuid": "8e16d4d0-cd7d-4551-adcc-f90c06837a6b", - "siteID": 20590, - "address": "8600 Elmore Rue", - "latitude": 48.9246, - "longitude": -137.8838, - "lastUpdated": "2018-10-08T04:30:34.640Z", - "city": "Turcottechester", - "region": "Kootenay", - "victoriaFile": "26250-20/16995", - "regionalFile": "N/A", - "parcelIDs": [ - 5253411, - 9964578, - 5624243, - 8691813, - 1925663 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2020-08-01T07:19:30.222Z", - "completed": "2020-12-09T16:42:51.166Z", - "initiated": "2020-01-30T04:19:35.909Z", - "ministryContact": "KERLUKE FRED", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - } - ] - }, - { - "createdAt": "2023-06-04T21:26:20.260Z", - "completed": "2013-12-30T06:17:27.713Z", - "initiated": "2021-12-17T08:19:01.536Z", - "ministryContact": "JONES REBEKAH", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - } - ] - } - ] - }, - { - "uuid": "6ad823da-c768-40ae-83c4-3ea78d5c6423", - "siteID": 20763, - "address": "5218 Stiedemann Coves", - "latitude": 58.6918, - "longitude": -122.2105, - "lastUpdated": "2015-01-18T01:46:13.395Z", - "city": "Fort Montyton", - "region": "Mainland/Southwest", - "victoriaFile": "26250-20/14624", - "regionalFile": "N/A", - "parcelIDs": [ - 9634485, - 640684, - 8442779, - 9064341, - 3948957 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2023-03-06T15:36:15.695Z", - "completed": "2016-01-02T19:40:37.508Z", - "initiated": "2016-12-19T04:05:44.111Z", - "ministryContact": "MAYERT ERNESTO", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - } - ] - }, - { - "createdAt": "2015-07-29T12:24:44.566Z", - "completed": "2020-02-11T10:04:01.547Z", - "initiated": "2014-01-23T10:45:33.623Z", - "ministryContact": "KOCH DOROTHEA", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - } - ] - } - ] - }, - { - "uuid": "d5c1696c-652b-452b-9e69-4fb7592f3f35", - "siteID": 20463, - "address": "77536 Berta View", - "latitude": 52.4711, - "longitude": -135.5398, - "lastUpdated": "2014-07-03T00:49:26.097Z", - "city": "Schmelerburgh", - "region": "Cariboo", - "victoriaFile": "26250-20/8854", - "regionalFile": "N/A", - "parcelIDs": [ - 4508702, - 3304890, - 7293811, - 1109440, - 2686268 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2023-08-17T15:01:44.283Z", - "completed": "2021-12-04T00:39:57.796Z", - "initiated": "2021-02-07T20:22:15.153Z", - "ministryContact": "ROMAGUERA-MCDERMOTT MADIE", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - } - ] - }, - { - "createdAt": "2023-06-09T01:26:34.967Z", - "completed": "2023-02-02T22:15:48.886Z", - "initiated": "2022-06-17T00:46:53.190Z", - "ministryContact": "BRADTKE CATALINA", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - } - ] - } - ] - }, - { - "uuid": "67570c9e-d16b-40fd-8e2f-44a50ae6ef4e", - "siteID": 16077, - "address": "963 Lindgren Loop", - "latitude": 52.1473, - "longitude": -138.9164, - "lastUpdated": "2020-06-28T23:39:27.480Z", - "city": "Eagan", - "region": "Vancouver Island/Coast", - "victoriaFile": "26250-20/7895", - "regionalFile": "N/A", - "parcelIDs": [ - 2173716, - 9386776, - 1496286, - 5789287, - 5053755 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2014-11-06T08:45:17.082Z", - "completed": "2019-08-15T07:30:35.466Z", - "initiated": "2018-11-10T16:23:38.247Z", - "ministryContact": "BARTOLETTI CARMEN", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - } - ] - }, - { - "createdAt": "2016-06-03T07:49:55.227Z", - "completed": "2014-03-09T02:21:07.075Z", - "initiated": "2017-01-25T18:10:36.486Z", - "ministryContact": "SCHROEDER JETT", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - } - ] - } - ] - }, - { - "uuid": "eed1bf17-4988-414b-a527-40e6fc154a5c", - "siteID": 15946, - "address": "140 Kay Pine", - "latitude": 51.6825, - "longitude": -128.8646, - "lastUpdated": "2016-05-20T04:59:35.812Z", - "city": "West Braeden", - "region": " North Coast", - "victoriaFile": "26250-20/13160", - "regionalFile": "N/A", - "parcelIDs": [ - 4316067, - 1727311, - 7276927, - 4540222, - 4338769 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2017-10-05T09:56:44.297Z", - "completed": "2021-02-16T05:41:49.612Z", - "initiated": "2019-04-07T07:26:09.991Z", - "ministryContact": "MILLS-WINDLER MAXWELL", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - } - ] - }, - { - "createdAt": "2020-06-17T04:27:02.133Z", - "completed": "2023-07-06T14:16:23.696Z", - "initiated": "2017-02-28T00:27:28.059Z", - "ministryContact": "MAYERT HENRI", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - } - ] - } - ] - }, - { - "uuid": "a4fdb1d2-4cd6-45f8-acc5-29c9d454b39f", - "siteID": 15668, - "address": "75447 Kassulke Harbor", - "latitude": 56.897, - "longitude": -122.2265, - "lastUpdated": "2015-10-09T08:30:06.641Z", - "city": "North Mable", - "region": "Thompson-Okanagan", - "victoriaFile": "26250-20/9008", - "regionalFile": "N/A", - "parcelIDs": [ - 5396258, - 9113806, - 8953494, - 6522537, - 9822189 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2021-01-01T11:15:20.707Z", - "completed": "2015-05-29T18:05:00.572Z", - "initiated": "2020-12-02T02:41:40.084Z", - "ministryContact": "PROSACCO ALLY", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - } - ] - }, - { - "createdAt": "2020-06-15T12:30:37.658Z", - "completed": "2016-06-26T05:19:32.076Z", - "initiated": "2023-03-24T11:44:03.161Z", - "ministryContact": "GRIMES LEW", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - } - ] - } - ] - }, - { - "uuid": "82c6cfa5-5007-4666-8a02-1763b7fa1c43", - "siteID": 18833, - "address": "6383 Esteban Pines", - "latitude": 55.3349, - "longitude": -124.2671, - "lastUpdated": "2019-06-30T00:56:41.138Z", - "city": "Alekport", - "region": "Cariboo", - "victoriaFile": "26250-20/5259", - "regionalFile": "N/A", - "parcelIDs": [ - 2704610, - 4672970, - 3734884, - 9193988, - 8099004 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2021-01-02T22:53:18.897Z", - "completed": "2021-05-06T10:32:37.529Z", - "initiated": "2021-05-19T07:56:16.188Z", - "ministryContact": "HALEY-BOTSFORD AYDEN", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - } - ] - }, - { - "createdAt": "2014-09-01T21:35:09.750Z", - "completed": "2014-05-30T14:25:04.516Z", - "initiated": "2023-06-24T17:49:53.906Z", - "ministryContact": "RUNOLFSDOTTIR NIKKO", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - } - ] - } - ] - }, - { - "uuid": "154c2d3d-8c0c-4228-9c71-c8e2fdccba56", - "siteID": 19066, - "address": "377 Mina Greens", - "latitude": 51.3431, - "longitude": -119.6418, - "lastUpdated": "2022-09-25T09:55:48.241Z", - "city": "Darontown", - "region": "Kootenay", - "victoriaFile": "26250-20/5287", - "regionalFile": "N/A", - "parcelIDs": [ - 6454437, - 4772807, - 1690765, - 8205820, - 6918566 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2014-12-15T00:54:57.946Z", - "completed": "2015-05-27T18:48:39.052Z", - "initiated": "2016-02-24T05:52:19.498Z", - "ministryContact": "STROSIN CORRINE", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - } - ] - }, - { - "createdAt": "2020-08-08T13:57:22.267Z", - "completed": "2014-12-03T02:04:48.078Z", - "initiated": "2023-09-21T06:47:50.641Z", - "ministryContact": "STIEDEMANN FREDERICK", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - } - ] - } - ] - }, - { - "uuid": "7500ec02-ca52-46e3-afee-d30c8f7ab7eb", - "siteID": 15372, - "address": "508 Torrance Rapid", - "latitude": 52.9745, - "longitude": -132.9442, - "lastUpdated": "2014-08-25T03:32:31.969Z", - "city": "Gerholdberg", - "region": "Cariboo", - "victoriaFile": "26250-20/3322", - "regionalFile": "N/A", - "parcelIDs": [ - 7495901, - 1589886, - 1679610, - 7022027, - 7114225 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2016-01-09T04:02:24.432Z", - "completed": "2015-11-09T11:18:29.211Z", - "initiated": "2020-10-09T12:37:48.430Z", - "ministryContact": "CHRISTIANSEN LINA", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - } - ] - }, - { - "createdAt": "2019-04-10T08:01:58.999Z", - "completed": "2015-02-15T04:03:18.780Z", - "initiated": "2016-12-02T03:58:09.632Z", - "ministryContact": "DARE ARMANI", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - } - ] - } - ] - }, - { - "uuid": "d8136e12-ad74-4d65-9c28-705f32e6ed52", - "siteID": 18387, - "address": "5038 Raynor Points", - "latitude": 55.2298, - "longitude": -128.5568, - "lastUpdated": "2016-02-25T17:42:37.450Z", - "city": "Carson", - "region": "Kootenay", - "victoriaFile": "26250-20/18537", - "regionalFile": "N/A", - "parcelIDs": [ - 4239265, - 1901475, - 7557539, - 8675192, - 9178734 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2015-07-09T16:56:52.222Z", - "completed": "2016-06-02T10:54:15.700Z", - "initiated": "2017-08-23T08:28:22.025Z", - "ministryContact": "TURCOTTE-WARD AIYANA", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - } - ] - }, - { - "createdAt": "2018-07-02T23:36:57.237Z", - "completed": "2016-07-29T12:25:57.527Z", - "initiated": "2023-07-05T04:06:59.821Z", - "ministryContact": "WEBER NATHANAEL", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - } - ] - } - ] - }, - { - "uuid": "2c00be27-de1a-4647-be4a-0de1ac83c2ab", - "siteID": 20564, - "address": "79345 Noel Fall", - "latitude": 58.0107, - "longitude": -123.6821, - "lastUpdated": "2023-01-29T05:56:59.191Z", - "city": "Baldwin Park", - "region": "Thompson-Okanagan", - "victoriaFile": "26250-20/800", - "regionalFile": "N/A", - "parcelIDs": [ - 7693019, - 8419670, - 9020272, - 8538997, - 3880996 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2016-05-07T21:50:26.268Z", - "completed": "2019-01-03T17:24:36.516Z", - "initiated": "2018-03-16T05:38:12.627Z", - "ministryContact": "WIZA CHANCE", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - } - ] - }, - { - "createdAt": "2014-11-08T17:07:46.040Z", - "completed": "2017-04-13T18:02:55.517Z", - "initiated": "2017-08-15T23:31:17.833Z", - "ministryContact": "WYMAN-HEANEY NILS", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - } - ] - } - ] - }, - { - "uuid": "9961919e-8a41-47e0-b167-e8063f25cbc7", - "siteID": 15875, - "address": "70512 Raheem Cliff", - "latitude": 54.4811, - "longitude": -128.1582, - "lastUpdated": "2021-08-21T15:35:48.774Z", - "city": "Cartwrightfield", - "region": "Cariboo", - "victoriaFile": "26250-20/11318", - "regionalFile": "N/A", - "parcelIDs": [ - 2501943, - 4926720, - 9264524, - 7031556, - 7085644 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2014-06-13T12:21:16.119Z", - "completed": "2019-07-21T09:28:42.369Z", - "initiated": "2017-08-31T09:12:06.106Z", - "ministryContact": "OSINSKI BRANDO", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - } - ] - }, - { - "createdAt": "2022-07-06T23:16:21.288Z", - "completed": "2021-08-05T01:29:58.847Z", - "initiated": "2020-01-05T19:05:22.464Z", - "ministryContact": "JOHNSTON JOSUE", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - } - ] - } - ] - }, - { - "uuid": "e93a3dba-d14b-4b19-9052-e5605d9f507c", - "siteID": 15885, - "address": "536 Wilfred Trafficway", - "latitude": 56.1588, - "longitude": -128.1322, - "lastUpdated": "2021-09-27T02:54:44.461Z", - "city": "McCulloughview", - "region": "Thompson-Okanagan", - "victoriaFile": "26250-20/4580", - "regionalFile": "N/A", - "parcelIDs": [ - 3336857, - 2915457, - 3835191, - 5206113, - 6562092 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2015-11-01T07:07:04.240Z", - "completed": "2021-04-23T09:02:20.700Z", - "initiated": "2014-11-22T20:50:42.603Z", - "ministryContact": "HARVEY CLAY", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - } - ] - }, - { - "createdAt": "2017-10-29T09:29:52.906Z", - "completed": "2021-03-16T23:50:52.230Z", - "initiated": "2019-09-16T16:29:49.305Z", - "ministryContact": "WILL SABRINA", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - } - ] - } - ] - }, - { - "uuid": "2919eeaf-516a-4c1c-8e78-e65bbdeff966", - "siteID": 15885, - "address": "3690 Amely Heights", - "latitude": 50.6426, - "longitude": -128.6673, - "lastUpdated": "2014-06-13T06:05:39.712Z", - "city": "West Hazelhaven", - "region": " North Coast", - "victoriaFile": "26250-20/17314", - "regionalFile": "N/A", - "parcelIDs": [ - 4217027, - 168863, - 1470742, - 8363582, - 6397868 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2020-04-29T10:28:05.823Z", - "completed": "2016-07-24T03:29:03.486Z", - "initiated": "2014-01-12T09:49:17.969Z", - "ministryContact": "LUEILWITZ EMMANUEL", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - } - ] - }, - { - "createdAt": "2017-02-18T14:41:07.298Z", - "completed": "2018-06-02T04:52:25.703Z", - "initiated": "2023-09-06T12:58:08.131Z", - "ministryContact": "SKILES MACI", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - } - ] - } - ] - }, - { - "uuid": "d9ef8850-0ffd-4794-a253-43e42e4a66ce", - "siteID": 18035, - "address": "51923 Nikolaus Mountains", - "latitude": 53.7396, - "longitude": -121.5568, - "lastUpdated": "2023-05-23T20:06:28.109Z", - "city": "Boscohaven", - "region": "Mainland/Southwest", - "victoriaFile": "26250-20/6187", - "regionalFile": "N/A", - "parcelIDs": [ - 7215851, - 8861605, - 6438817, - 1213407, - 5294589 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2019-03-09T04:53:08.929Z", - "completed": "2018-04-24T14:27:37.990Z", - "initiated": "2019-09-30T13:13:02.326Z", - "ministryContact": "SCHIMMEL-FEEST CECILIA", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - } - ] - }, - { - "createdAt": "2017-05-21T16:14:25.970Z", - "completed": "2022-10-15T09:31:23.516Z", - "initiated": "2014-04-16T05:10:06.093Z", - "ministryContact": "WOLF JAYCE", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - } - ] - } - ] - }, - { - "uuid": "5957e92a-32ca-44b6-8c9f-bb8050c71fbd", - "siteID": 17317, - "address": "9018 Daniel Mill", - "latitude": 54.8659, - "longitude": -135.0041, - "lastUpdated": "2019-12-31T04:24:56.278Z", - "city": "Glendora", - "region": " North Coast", - "victoriaFile": "26250-20/15759", - "regionalFile": "N/A", - "parcelIDs": [ - 2733741, - 862564, - 6882954, - 1716032, - 619406 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2021-12-23T13:36:53.639Z", - "completed": "2020-12-18T18:16:59.469Z", - "initiated": "2018-05-10T00:32:20.115Z", - "ministryContact": "HANE KYRA", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - } - ] - }, - { - "createdAt": "2021-04-19T08:05:52.885Z", - "completed": "2015-03-22T14:20:04.260Z", - "initiated": "2015-09-20T08:22:15.695Z", - "ministryContact": "SHIELDS RASHAWN", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - } - ] - } - ] - }, - { - "uuid": "e98659c1-64d7-4a88-bd80-65ff2f2ed6c0", - "siteID": 17744, - "address": "807 Gislason Estate", - "latitude": 53.0229, - "longitude": -128.214, - "lastUpdated": "2014-08-12T02:34:56.628Z", - "city": "Port Christiancester", - "region": "Vancouver Island/Coast", - "victoriaFile": "26250-20/8333", - "regionalFile": "N/A", - "parcelIDs": [ - 7032459, - 7182846, - 4853299, - 1205699, - 563849 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2022-09-20T11:48:48.706Z", - "completed": "2021-01-23T08:54:21.124Z", - "initiated": "2020-11-23T10:34:35.090Z", - "ministryContact": "KUPHAL ASHLYNN", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - } - ] - }, - { - "createdAt": "2018-04-01T00:10:27.894Z", - "completed": "2019-12-03T01:14:05.754Z", - "initiated": "2022-04-06T06:50:30.969Z", - "ministryContact": "CONROY EVALYN", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - } - ] - } - ] - }, - { - "uuid": "8d8e5810-ead0-4d22-96bb-5b057a78c8fe", - "siteID": 20135, - "address": "7338 Davis Roads", - "latitude": 48.6251, - "longitude": -137.7927, - "lastUpdated": "2023-01-30T05:08:00.823Z", - "city": "New Alvina", - "region": "Mainland/Southwest", - "victoriaFile": "26250-20/5965", - "regionalFile": "N/A", - "parcelIDs": [ - 6095377, - 4432354, - 1167524, - 2018598, - 4819584 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2017-03-05T03:55:47.287Z", - "completed": "2016-06-26T20:43:55.327Z", - "initiated": "2016-12-17T23:12:28.900Z", - "ministryContact": "KOVACEK JEREL", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - } - ] - }, - { - "createdAt": "2019-11-08T17:32:34.655Z", - "completed": "2022-03-17T05:57:31.605Z", - "initiated": "2014-05-11T17:39:44.752Z", - "ministryContact": "LEBSACK POLLY", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - } - ] - } - ] - }, - { - "uuid": "30e1241a-f358-4676-80ab-f94bb0404eb3", - "siteID": 20802, - "address": "96398 Lourdes Path", - "latitude": 56.143, - "longitude": -130.2781, - "lastUpdated": "2023-06-12T01:59:21.219Z", - "city": "Las Vegas", - "region": "Kootenay", - "victoriaFile": "26250-20/8848", - "regionalFile": "N/A", - "parcelIDs": [ - 3278648, - 3500683, - 7110004, - 429997, - 3618680 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2020-05-30T16:04:54.969Z", - "completed": "2017-06-16T06:41:29.289Z", - "initiated": "2014-03-10T22:37:49.662Z", - "ministryContact": "HODKIEWICZ BRADFORD", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - } - ] - }, - { - "createdAt": "2014-05-07T05:53:44.459Z", - "completed": "2019-06-17T05:32:07.658Z", - "initiated": "2021-06-19T04:26:26.323Z", - "ministryContact": "DOYLE BRIANNE", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - } - ] - } - ] - }, - { - "uuid": "6a9ce316-bc68-472a-ab79-79dd5c628ff6", - "siteID": 17001, - "address": "5514 Raynor Wall", - "latitude": 54.3244, - "longitude": -119.5745, - "lastUpdated": "2020-06-01T12:10:13.524Z", - "city": "Sipesburgh", - "region": "Mainland/Southwest", - "victoriaFile": "26250-20/6206", - "regionalFile": "N/A", - "parcelIDs": [ - 3389937, - 9108166, - 2155191, - 8259090, - 1109750 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2022-06-29T16:47:17.613Z", - "completed": "2014-08-20T18:26:27.724Z", - "initiated": "2020-02-22T19:49:43.853Z", - "ministryContact": "WAELCHI CIARA", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - } - ] - }, - { - "createdAt": "2014-08-05T10:47:40.704Z", - "completed": "2020-06-11T15:38:46.346Z", - "initiated": "2017-01-26T22:09:56.792Z", - "ministryContact": "BAUMBACH LEXI", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - } - ] - } - ] - }, - { - "uuid": "1ff49955-2662-4db9-9e48-272ab707bda7", - "siteID": 17271, - "address": "7432 Friesen Expressway", - "latitude": 51.0181, - "longitude": -125.6934, - "lastUpdated": "2014-02-28T07:41:03.823Z", - "city": "Lenoreport", - "region": "Kootenay", - "victoriaFile": "26250-20/10901", - "regionalFile": "N/A", - "parcelIDs": [ - 7625560, - 5560122, - 7875093, - 4224351, - 7789773 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2016-03-08T16:36:45.436Z", - "completed": "2021-04-08T11:42:18.774Z", - "initiated": "2023-03-25T19:23:39.684Z", - "ministryContact": "SCHADEN JOSEPH", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - } - ] - }, - { - "createdAt": "2013-10-08T14:30:06.160Z", - "completed": "2018-08-18T10:25:44.695Z", - "initiated": "2017-08-18T16:56:24.453Z", - "ministryContact": "HAGENES GREYSON", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - } - ] - } - ] - }, - { - "uuid": "b3460c50-70b9-4cf4-bcd5-10945ea4c3f4", - "siteID": 20179, - "address": "214 Wunsch Trace", - "latitude": 57.0107, - "longitude": -120.5046, - "lastUpdated": "2015-11-11T16:16:25.836Z", - "city": "Chaddchester", - "region": "Mainland/Southwest", - "victoriaFile": "26250-20/3213", - "regionalFile": "N/A", - "parcelIDs": [ - 171362, - 7016239, - 4777566, - 9975883, - 2327631 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2014-09-07T18:20:20.471Z", - "completed": "2023-01-13T08:27:51.888Z", - "initiated": "2020-08-11T02:01:12.792Z", - "ministryContact": "BAUMBACH BERNARDO", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - } - ] - }, - { - "createdAt": "2017-08-07T15:27:10.274Z", - "completed": "2019-12-25T05:37:57.226Z", - "initiated": "2014-05-04T20:56:40.791Z", - "ministryContact": "STRACKE CAYLA", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - } - ] - } - ] - }, - { - "uuid": "2e0ee11d-2545-422f-99f4-a45ee1329df6", - "siteID": 17273, - "address": "6369 Smith Overpass", - "latitude": 58.6101, - "longitude": -129.1888, - "lastUpdated": "2021-10-12T10:40:53.795Z", - "city": "Hudsonstead", - "region": " North Coast", - "victoriaFile": "26250-20/3822", - "regionalFile": "N/A", - "parcelIDs": [ - 1890243, - 5046399, - 7203183, - 3732127, - 5739597 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2023-03-29T01:22:00.196Z", - "completed": "2023-06-03T14:14:07.514Z", - "initiated": "2021-06-17T14:06:13.384Z", - "ministryContact": "MURPHY DARRYL", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - } - ] - }, - { - "createdAt": "2019-05-02T06:19:42.157Z", - "completed": "2016-10-28T23:46:54.624Z", - "initiated": "2013-11-28T17:06:33.533Z", - "ministryContact": "BECHTELAR CARMEL", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - } - ] - } - ] - }, - { - "uuid": "842cd6d6-d527-4c15-8313-ced2502c2ec5", - "siteID": 18553, - "address": "51660 Skiles Parks", - "latitude": 54.216, - "longitude": -133.6984, - "lastUpdated": "2017-07-26T01:56:11.396Z", - "city": "Isaiahview", - "region": "Vancouver Island/Coast", - "victoriaFile": "26250-20/16219", - "regionalFile": "N/A", - "parcelIDs": [ - 7190005, - 4701405, - 9964947, - 377471, - 6513137 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2023-02-18T14:57:38.678Z", - "completed": "2019-09-22T02:34:43.966Z", - "initiated": "2023-02-23T13:26:42.882Z", - "ministryContact": "FEIL BRYCEN", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - } - ] - }, - { - "createdAt": "2021-02-23T00:53:40.953Z", - "completed": "2023-04-01T17:47:29.719Z", - "initiated": "2014-03-08T11:16:38.382Z", - "ministryContact": "LIND DALLAS", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - } - ] - } - ] - }, - { - "uuid": "a9d34e6e-4bdc-430b-b8cb-fa883447eeb2", - "siteID": 16687, - "address": "6339 Fahey Stream", - "latitude": 57.5256, - "longitude": -134.7058, - "lastUpdated": "2014-07-23T09:03:58.912Z", - "city": "South Berry", - "region": "Kootenay", - "victoriaFile": "26250-20/17088", - "regionalFile": "N/A", - "parcelIDs": [ - 8017355, - 9557154, - 2197901, - 7342217, - 990004 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2021-11-23T06:52:08.471Z", - "completed": "2021-04-04T10:32:06.171Z", - "initiated": "2018-04-08T14:55:47.947Z", - "ministryContact": "LINDGREN RONALDO", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - } - ] - }, - { - "createdAt": "2018-05-24T00:14:15.238Z", - "completed": "2015-10-06T01:42:23.779Z", - "initiated": "2017-11-02T22:42:37.597Z", - "ministryContact": "REINGER WILLOW", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - } - ] - } - ] - }, - { - "uuid": "519a01d4-4e6e-4fbd-8b0a-1bd026906ca6", - "siteID": 19575, - "address": "47717 Ashtyn Hollow", - "latitude": 50.9916, - "longitude": -128.1984, - "lastUpdated": "2022-08-11T18:06:51.369Z", - "city": "Barbaraboro", - "region": "Vancouver Island/Coast", - "victoriaFile": "26250-20/9034", - "regionalFile": "N/A", - "parcelIDs": [ - 6668828, - 7336796, - 1287074, - 8142334, - 1497198 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2023-09-01T17:05:44.516Z", - "completed": "2017-07-24T10:52:36.698Z", - "initiated": "2019-09-29T11:18:20.331Z", - "ministryContact": "HAUCK CHELSIE", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - } - ] - }, - { - "createdAt": "2015-11-26T18:05:28.149Z", - "completed": "2022-12-02T18:33:34.974Z", - "initiated": "2023-09-18T08:08:53.031Z", - "ministryContact": "WILLMS ASHA", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - } - ] - } - ] - }, - { - "uuid": "ee3028ce-93a6-4758-ac5f-2612e53356bb", - "siteID": 17415, - "address": "54288 Hamill Crossing", - "latitude": 56.1472, - "longitude": -125.8677, - "lastUpdated": "2022-09-20T03:20:02.139Z", - "city": "Smithamtown", - "region": "Vancouver Island/Coast", - "victoriaFile": "26250-20/16203", - "regionalFile": "N/A", - "parcelIDs": [ - 5385729, - 3887214, - 9670218, - 9972797, - 2566784 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2018-12-13T10:33:59.247Z", - "completed": "2020-09-29T19:27:02.769Z", - "initiated": "2014-07-15T18:47:38.822Z", - "ministryContact": "MOORE DARRELL", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - } - ] - }, - { - "createdAt": "2014-06-07T09:31:00.891Z", - "completed": "2015-11-01T01:58:41.095Z", - "initiated": "2015-09-09T12:42:48.940Z", - "ministryContact": "FUNK NAYELI", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - } - ] - } - ] - }, - { - "uuid": "913873d8-baec-40bc-bf18-c36404678bc9", - "siteID": 17150, - "address": "59869 Daphney Cliff", - "latitude": 58.5875, - "longitude": -134.1011, - "lastUpdated": "2023-02-21T05:52:49.430Z", - "city": "Port Goldahaven", - "region": "Cariboo", - "victoriaFile": "26250-20/6704", - "regionalFile": "N/A", - "parcelIDs": [ - 4346873, - 486804, - 5844641, - 6930715, - 9247051 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2013-11-23T23:50:55.648Z", - "completed": "2022-07-31T20:05:58.171Z", - "initiated": "2019-04-20T08:00:42.363Z", - "ministryContact": "WEHNER DOYLE", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - } - ] - }, - { - "createdAt": "2021-12-21T13:07:38.165Z", - "completed": "2019-11-06T18:26:37.105Z", - "initiated": "2015-12-31T04:38:49.967Z", - "ministryContact": "OSINSKI JOESPH", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - } - ] - } - ] - }, - { - "uuid": "fba2e1a6-ac0f-4d45-9c71-836474fd26d6", - "siteID": 15592, - "address": "461 Strosin Centers", - "latitude": 51.3485, - "longitude": -128.237, - "lastUpdated": "2016-11-03T07:22:41.511Z", - "city": "Smyrna", - "region": " North Coast", - "victoriaFile": "26250-20/19493", - "regionalFile": "N/A", - "parcelIDs": [ - 9115974, - 7007345, - 5320032, - 6519115, - 5195084 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2019-03-15T17:33:37.262Z", - "completed": "2020-03-11T03:18:01.781Z", - "initiated": "2022-02-24T12:45:48.165Z", - "ministryContact": "SCHULIST DOMINIC", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - } - ] - }, - { - "createdAt": "2016-10-08T19:58:31.335Z", - "completed": "2018-11-08T20:20:40.742Z", - "initiated": "2017-11-13T07:39:11.089Z", - "ministryContact": "HAGENES DAMEON", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - } - ] - } - ] - }, - { - "uuid": "d7952b19-111b-4860-b266-d190c6714f3c", - "siteID": 19112, - "address": "9482 Abernathy Loaf", - "latitude": 55.5518, - "longitude": -118.6946, - "lastUpdated": "2015-08-22T18:18:10.067Z", - "city": "Suffolk", - "region": "Mainland/Southwest", - "victoriaFile": "26250-20/10353", - "regionalFile": "N/A", - "parcelIDs": [ - 6748034, - 4797314, - 7718461, - 9016321, - 3700644 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2019-02-20T11:39:11.231Z", - "completed": "2022-04-26T01:55:45.016Z", - "initiated": "2021-11-08T14:50:53.807Z", - "ministryContact": "DIETRICH MITCHEL", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - } - ] - }, - { - "createdAt": "2015-07-18T06:05:24.293Z", - "completed": "2022-12-24T02:27:00.292Z", - "initiated": "2015-10-31T17:13:11.390Z", - "ministryContact": "WARD VITA", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - } - ] - } - ] - }, - { - "uuid": "dcce38ea-da92-4159-b167-ae5feb01b8b5", - "siteID": 17659, - "address": "97792 Milan Branch", - "latitude": 51.8115, - "longitude": -121.8663, - "lastUpdated": "2016-12-01T00:59:33.432Z", - "city": "Powlowskiburgh", - "region": "Cariboo", - "victoriaFile": "26250-20/1520", - "regionalFile": "N/A", - "parcelIDs": [ - 356768, - 2040489, - 483632, - 3517879, - 6510998 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2023-06-09T03:18:28.845Z", - "completed": "2023-06-08T04:15:24.773Z", - "initiated": "2013-11-23T13:01:15.754Z", - "ministryContact": "HARRIS MARLEN", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - } - ] - }, - { - "createdAt": "2016-04-26T04:24:43.769Z", - "completed": "2021-07-11T17:53:10.509Z", - "initiated": "2018-10-17T09:35:25.635Z", - "ministryContact": "HOPPE SANTIAGO", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - } - ] - } - ] - }, - { - "uuid": "14f6083b-c32f-4f72-b86b-9b043b6f195e", - "siteID": 17079, - "address": "499 Sporer Greens", - "latitude": 48.6448, - "longitude": -135.2727, - "lastUpdated": "2018-03-20T02:03:49.036Z", - "city": "South Emanuelstead", - "region": "Mainland/Southwest", - "victoriaFile": "26250-20/7106", - "regionalFile": "N/A", - "parcelIDs": [ - 3193798, - 8754140, - 7624904, - 5928049, - 5828366 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2014-03-04T06:38:07.515Z", - "completed": "2021-10-22T16:24:05.034Z", - "initiated": "2021-11-15T23:07:32.462Z", - "ministryContact": "FAY-REINGER JENIFER", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - } - ] - }, - { - "createdAt": "2016-10-06T16:05:01.075Z", - "completed": "2018-09-17T21:39:30.985Z", - "initiated": "2014-11-08T09:09:41.425Z", - "ministryContact": "NICOLAS ALENE", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - } - ] - } - ] - }, - { - "uuid": "732e3d29-4c37-4ad1-8229-997acb64784b", - "siteID": 16835, - "address": "7077 Bashirian Falls", - "latitude": 58.9779, - "longitude": -118.0139, - "lastUpdated": "2015-11-24T01:01:18.867Z", - "city": "Redmond", - "region": "Vancouver Island/Coast", - "victoriaFile": "26250-20/19049", - "regionalFile": "N/A", - "parcelIDs": [ - 950528, - 9239798, - 1001966, - 7865629, - 6699609 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2019-11-22T15:10:15.991Z", - "completed": "2018-03-19T11:19:54.919Z", - "initiated": "2015-08-15T05:51:48.504Z", - "ministryContact": "HERMISTON LOTTIE", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - } - ] - }, - { - "createdAt": "2016-09-22T09:52:21.053Z", - "completed": "2016-11-25T04:11:01.966Z", - "initiated": "2020-08-31T06:40:00.550Z", - "ministryContact": "MURAZIK ALVERTA", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - } - ] - } - ] - }, - { - "uuid": "1e4f1fb7-5217-41a8-9784-8fee0916955e", - "siteID": 16450, - "address": "718 Little Ramp", - "latitude": 53.8424, - "longitude": -131.0927, - "lastUpdated": "2015-11-23T09:18:31.884Z", - "city": "The Villages", - "region": "Vancouver Island/Coast", - "victoriaFile": "26250-20/4913", - "regionalFile": "N/A", - "parcelIDs": [ - 4523211, - 5828399, - 2011497, - 2507907, - 1135794 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2020-10-24T23:14:57.873Z", - "completed": "2014-03-15T06:51:12.206Z", - "initiated": "2021-10-08T19:16:37.674Z", - "ministryContact": "MARQUARDT KATELYNN", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - } - ] - }, - { - "createdAt": "2017-09-15T08:14:21.115Z", - "completed": "2014-12-21T21:30:20.061Z", - "initiated": "2018-01-09T08:49:38.323Z", - "ministryContact": "GOODWIN ASHTYN", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - } - ] - } - ] - }, - { - "uuid": "1e2a3054-85d8-4a3e-9508-3c2d7fb3576f", - "siteID": 20610, - "address": "79030 Mosciski Gateway", - "latitude": 57.1583, - "longitude": -134.0666, - "lastUpdated": "2015-07-02T18:41:38.368Z", - "city": "East Destanymouth", - "region": "Vancouver Island/Coast", - "victoriaFile": "26250-20/8199", - "regionalFile": "N/A", - "parcelIDs": [ - 2037228, - 423330, - 7786641, - 2952314, - 5276259 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2017-10-09T14:48:29.628Z", - "completed": "2016-07-03T10:30:32.013Z", - "initiated": "2017-11-06T08:23:32.587Z", - "ministryContact": "HYATT TAMARA", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - } - ] - }, - { - "createdAt": "2022-04-05T04:02:45.245Z", - "completed": "2023-05-12T05:01:19.113Z", - "initiated": "2014-12-07T18:19:06.392Z", - "ministryContact": "PAGAC ELIANE", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - } - ] - } - ] - }, - { - "uuid": "b4869bd8-1185-4931-bf33-5dff099da501", - "siteID": 15239, - "address": "8817 Danyka Estates", - "latitude": 48.8853, - "longitude": -131.0732, - "lastUpdated": "2021-10-05T04:04:54.238Z", - "city": "Sallieworth", - "region": " North Coast", - "victoriaFile": "26250-20/9406", - "regionalFile": "N/A", - "parcelIDs": [ - 5057064, - 4495677, - 3687098, - 7814933, - 922158 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2016-07-21T03:40:37.659Z", - "completed": "2021-10-23T05:28:14.461Z", - "initiated": "2022-03-01T09:04:24.039Z", - "ministryContact": "BERNHARD-WILKINSON JOSH", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - } - ] - }, - { - "createdAt": "2019-03-01T03:06:32.174Z", - "completed": "2020-11-14T06:51:59.390Z", - "initiated": "2015-11-20T10:57:21.880Z", - "ministryContact": "BOGISICH CALISTA", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - } - ] - } - ] - }, - { - "uuid": "abb70f15-8f4a-4f8c-bf41-b7dca5d7ddc7", - "siteID": 20870, - "address": "44830 Gudrun Lights", - "latitude": 56.1029, - "longitude": -138.9521, - "lastUpdated": "2018-02-22T15:52:54.917Z", - "city": "East Katarinastead", - "region": "Kootenay", - "victoriaFile": "26250-20/4694", - "regionalFile": "N/A", - "parcelIDs": [ - 7446848, - 4587586, - 2052899, - 8765676, - 5373025 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2019-03-27T03:02:17.998Z", - "completed": "2014-06-20T17:51:29.864Z", - "initiated": "2015-01-22T11:48:03.126Z", - "ministryContact": "TILLMAN HOWARD", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - } - ] - }, - { - "createdAt": "2015-03-07T22:14:20.785Z", - "completed": "2023-03-25T11:21:21.458Z", - "initiated": "2013-12-06T23:14:08.711Z", - "ministryContact": "CREMIN MARIO", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - } - ] - } - ] - }, - { - "uuid": "ea3bfa5d-d77a-4d76-9a47-0d30e1fddbe1", - "siteID": 20373, - "address": "6494 Dianna Point", - "latitude": 51.9845, - "longitude": -118.2638, - "lastUpdated": "2017-05-22T02:41:19.930Z", - "city": "East Cordelialand", - "region": "Mainland/Southwest", - "victoriaFile": "26250-20/10035", - "regionalFile": "N/A", - "parcelIDs": [ - 6014818, - 3105016, - 8025761, - 6157887, - 299628 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2015-04-19T04:44:00.363Z", - "completed": "2017-07-08T04:43:36.493Z", - "initiated": "2013-11-05T18:14:01.080Z", - "ministryContact": "PURDY DUSTIN", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - } - ] - }, - { - "createdAt": "2021-12-18T23:26:51.315Z", - "completed": "2014-07-29T22:44:56.886Z", - "initiated": "2018-12-15T22:08:16.032Z", - "ministryContact": "BARTOLETTI FELIPE", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - } - ] - } - ] - }, - { - "uuid": "bb97c7c6-55f1-40b9-a560-cf66023b15af", - "siteID": 19399, - "address": "80805 Bayer Manor", - "latitude": 55.373, - "longitude": -118.9538, - "lastUpdated": "2023-03-20T05:50:18.389Z", - "city": "New Sabrinafort", - "region": "Cariboo", - "victoriaFile": "26250-20/2902", - "regionalFile": "N/A", - "parcelIDs": [ - 984211, - 378865, - 7036296, - 7174252, - 1029200 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2015-02-19T05:52:15.153Z", - "completed": "2018-09-19T19:05:47.223Z", - "initiated": "2015-02-22T01:11:25.761Z", - "ministryContact": "GLOVER YADIRA", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - } - ] - }, - { - "createdAt": "2015-12-02T05:56:44.879Z", - "completed": "2015-10-18T19:09:04.109Z", - "initiated": "2023-04-01T17:06:15.134Z", - "ministryContact": "HAND SHANON", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - } - ] - } - ] - }, - { - "uuid": "9d0d7794-d72a-4ad8-8a61-743b1cade8c6", - "siteID": 18222, - "address": "9449 Trantow Terrace", - "latitude": 54.2746, - "longitude": -120.2287, - "lastUpdated": "2018-07-21T01:48:11.406Z", - "city": "North Cathrine", - "region": "Vancouver Island/Coast", - "victoriaFile": "26250-20/5417", - "regionalFile": "N/A", - "parcelIDs": [ - 7455050, - 2499031, - 9411764, - 1925354, - 6944098 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2022-08-19T20:30:06.115Z", - "completed": "2014-07-28T13:05:15.268Z", - "initiated": "2019-09-12T17:11:56.425Z", - "ministryContact": "O'HARA HALEY", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - } - ] - }, - { - "createdAt": "2020-11-02T04:35:20.516Z", - "completed": "2020-10-20T19:10:12.520Z", - "initiated": "2016-10-12T04:29:19.926Z", - "ministryContact": "JENKINS KRISTA", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - } - ] - } - ] - }, - { - "uuid": "af09b514-d7bb-4e71-863d-96163d29a06f", - "siteID": 17666, - "address": "42611 Borer Crossing", - "latitude": 54.7241, - "longitude": -121.4823, - "lastUpdated": "2019-03-10T17:35:04.554Z", - "city": "Wisokyberg", - "region": "Vancouver Island/Coast", - "victoriaFile": "26250-20/9097", - "regionalFile": "N/A", - "parcelIDs": [ - 1713603, - 7105599, - 7802166, - 6227015, - 9652589 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2020-05-17T23:21:33.019Z", - "completed": "2020-06-20T17:23:33.303Z", - "initiated": "2020-10-05T08:57:10.588Z", - "ministryContact": "STROMAN MELANY", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - } - ] - }, - { - "createdAt": "2016-05-15T03:45:08.963Z", - "completed": "2018-07-30T14:22:00.443Z", - "initiated": "2023-01-10T03:16:33.779Z", - "ministryContact": "GOYETTE LILIANA", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - } - ] - } - ] - }, - { - "uuid": "1c035e71-89a1-46b5-b655-7cb574b7e0eb", - "siteID": 20526, - "address": "21119 Reinger Loaf", - "latitude": 48.736, - "longitude": -123.1668, - "lastUpdated": "2019-12-06T05:19:29.095Z", - "city": "Harveyport", - "region": "Cariboo", - "victoriaFile": "26250-20/11264", - "regionalFile": "N/A", - "parcelIDs": [ - 822382, - 3619929, - 6100298, - 8608612, - 8035226 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2019-06-18T10:13:04.357Z", - "completed": "2021-03-07T12:24:26.293Z", - "initiated": "2022-10-27T02:38:37.878Z", - "ministryContact": "KUHIC KRISTOFFER", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - } - ] - }, - { - "createdAt": "2023-01-09T22:04:23.455Z", - "completed": "2023-04-26T19:54:01.450Z", - "initiated": "2019-02-24T17:09:46.866Z", - "ministryContact": "CASPER DARREL", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - } - ] - } - ] - }, - { - "uuid": "7bed5a8c-a096-4bcc-b365-ebbc86826686", - "siteID": 16697, - "address": "11708 Estelle Ville", - "latitude": 53.1446, - "longitude": -122.5137, - "lastUpdated": "2014-09-06T17:32:56.583Z", - "city": "New Aliza", - "region": "Mainland/Southwest", - "victoriaFile": "26250-20/19788", - "regionalFile": "N/A", - "parcelIDs": [ - 8586665, - 2359755, - 5815153, - 1454840, - 5200900 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2020-02-28T11:09:50.346Z", - "completed": "2015-04-23T15:15:50.265Z", - "initiated": "2020-07-18T18:04:55.199Z", - "ministryContact": "WITTING JOANNE", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - } - ] - }, - { - "createdAt": "2013-10-24T01:50:22.675Z", - "completed": "2019-08-11T13:54:50.219Z", - "initiated": "2014-09-07T03:29:16.742Z", - "ministryContact": "WILKINSON BRIANNE", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - } - ] - } - ] - }, - { - "uuid": "980605e9-9acd-40c8-9adb-209e6cd10e82", - "siteID": 19813, - "address": "58739 Arne Gateway", - "latitude": 54.5007, - "longitude": -120.5082, - "lastUpdated": "2020-05-08T11:13:12.041Z", - "city": "South Carissa", - "region": "Cariboo", - "victoriaFile": "26250-20/9111", - "regionalFile": "N/A", - "parcelIDs": [ - 6831389, - 1388628, - 9922399, - 6909030, - 3686990 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2014-08-05T12:08:33.321Z", - "completed": "2020-10-17T14:25:18.933Z", - "initiated": "2022-06-26T10:18:19.777Z", - "ministryContact": "DARE DERON", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - } - ] - }, - { - "createdAt": "2021-05-05T01:16:08.426Z", - "completed": "2022-06-01T04:59:02.360Z", - "initiated": "2020-10-17T16:56:17.581Z", - "ministryContact": "KIRLIN KATRINA", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - } - ] - } - ] - }, - { - "uuid": "9c10ec14-f2e9-4980-9d44-35c6930d2de6", - "siteID": 18064, - "address": "97962 Bradtke Camp", - "latitude": 51.0251, - "longitude": -136.2144, - "lastUpdated": "2015-06-22T13:31:20.880Z", - "city": "North Jaidenfurt", - "region": "Mainland/Southwest", - "victoriaFile": "26250-20/9715", - "regionalFile": "N/A", - "parcelIDs": [ - 570060, - 8180786, - 2250540, - 3379202, - 2437040 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2016-10-30T10:34:52.357Z", - "completed": "2015-03-31T09:26:03.252Z", - "initiated": "2022-03-10T23:45:30.868Z", - "ministryContact": "MACGYVER SALMA", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - } - ] - }, - { - "createdAt": "2017-05-26T22:58:52.292Z", - "completed": "2021-05-01T15:49:55.203Z", - "initiated": "2017-04-06T21:18:42.243Z", - "ministryContact": "GERLACH TOBY", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - } - ] - } - ] - }, - { - "uuid": "f67814f0-5856-4661-9ad3-ecee595c938d", - "siteID": 17684, - "address": "880 Kunze Ridge", - "latitude": 50.9017, - "longitude": -133.2453, - "lastUpdated": "2020-06-22T18:21:50.505Z", - "city": "Council Bluffs", - "region": "Cariboo", - "victoriaFile": "26250-20/5146", - "regionalFile": "N/A", - "parcelIDs": [ - 7232012, - 3804730, - 4858695, - 803289, - 8514404 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2021-01-29T14:09:57.243Z", - "completed": "2016-04-02T23:05:17.781Z", - "initiated": "2018-07-24T18:48:59.329Z", - "ministryContact": "MCCLURE CHRISTIAN", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - } - ] - }, - { - "createdAt": "2015-08-29T19:49:28.078Z", - "completed": "2013-10-21T11:41:33.723Z", - "initiated": "2014-07-09T14:07:16.037Z", - "ministryContact": "WILKINSON HELLEN", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - } - ] - } - ] - }, - { - "uuid": "8723b3b2-2f03-40bf-9b43-7bb83fd96ddb", - "siteID": 15469, - "address": "9838 Shemar Grove", - "latitude": 48.2631, - "longitude": -129.8855, - "lastUpdated": "2020-11-25T07:53:02.360Z", - "city": "Fort Genesistown", - "region": "Vancouver Island/Coast", - "victoriaFile": "26250-20/17549", - "regionalFile": "N/A", - "parcelIDs": [ - 3681641, - 4524875, - 6281629, - 8820644, - 7178559 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2014-07-17T00:41:55.029Z", - "completed": "2023-03-12T00:44:53.006Z", - "initiated": "2022-05-21T16:51:11.219Z", - "ministryContact": "POUROS CAITLYN", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - } - ] - }, - { - "createdAt": "2016-07-17T16:09:42.235Z", - "completed": "2014-01-24T10:12:36.030Z", - "initiated": "2021-10-16T08:29:01.358Z", - "ministryContact": "WIEGAND JEFFEREY", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - } - ] - } - ] - }, - { - "uuid": "a0e7ed0d-6062-47b2-a7ba-2a968d2fbd34", - "siteID": 17047, - "address": "2027 Assunta Streets", - "latitude": 58.1371, - "longitude": -138.1914, - "lastUpdated": "2018-11-29T19:23:44.416Z", - "city": "Kutchworth", - "region": "Mainland/Southwest", - "victoriaFile": "26250-20/3743", - "regionalFile": "N/A", - "parcelIDs": [ - 7107039, - 9476337, - 3558009, - 9367771, - 8876763 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2023-09-01T18:08:46.884Z", - "completed": "2020-10-06T05:05:56.304Z", - "initiated": "2020-10-20T15:18:46.003Z", - "ministryContact": "SCHMIDT DELMER", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - } - ] - }, - { - "createdAt": "2023-08-05T06:00:29.334Z", - "completed": "2018-11-28T20:16:20.197Z", - "initiated": "2017-11-04T06:44:37.001Z", - "ministryContact": "WEISSNAT AMARI", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - } - ] - } - ] - }, - { - "uuid": "e1c61bb9-5ae0-4f7e-9bbf-683f30332c3b", - "siteID": 15936, - "address": "4483 Considine Turnpike", - "latitude": 57.3939, - "longitude": -136.4606, - "lastUpdated": "2022-11-26T04:00:36.565Z", - "city": "Lake Reggie", - "region": "Mainland/Southwest", - "victoriaFile": "26250-20/3273", - "regionalFile": "N/A", - "parcelIDs": [ - 5097816, - 3301401, - 8013265, - 4600254, - 1891922 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2014-05-22T04:52:47.094Z", - "completed": "2015-11-04T09:42:15.757Z", - "initiated": "2017-03-14T21:04:44.793Z", - "ministryContact": "WEHNER RONNY", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - } - ] - }, - { - "createdAt": "2013-12-17T15:38:41.433Z", - "completed": "2014-05-10T06:00:20.581Z", - "initiated": "2018-05-14T08:14:44.335Z", - "ministryContact": "NADER BRANT", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - } - ] - } - ] - }, - { - "uuid": "0731a5c9-226c-40d3-84df-bf3b8540f5f4", - "siteID": 18711, - "address": "94915 Kuhic Ferry", - "latitude": 49.8105, - "longitude": -134.4647, - "lastUpdated": "2016-09-23T03:44:55.175Z", - "city": "Fort Celia", - "region": "Vancouver Island/Coast", - "victoriaFile": "26250-20/10483", - "regionalFile": "N/A", - "parcelIDs": [ - 8269814, - 6406013, - 2473882, - 9033248, - 1697360 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2017-12-26T04:15:24.132Z", - "completed": "2020-11-19T04:23:41.408Z", - "initiated": "2014-05-19T19:22:14.652Z", - "ministryContact": "DOYLE CAMYLLE", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - } - ] - }, - { - "createdAt": "2014-05-07T07:58:32.316Z", - "completed": "2019-07-27T08:51:01.142Z", - "initiated": "2021-05-21T10:41:40.909Z", - "ministryContact": "DECKOW LIZETH", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - } - ] - } - ] - }, - { - "uuid": "db020dd7-928e-4121-b42f-e46b699ac992", - "siteID": 16414, - "address": "176 Lurline Ford", - "latitude": 51.5616, - "longitude": -126.8599, - "lastUpdated": "2022-02-04T16:30:38.588Z", - "city": "Lake Danielatown", - "region": "Cariboo", - "victoriaFile": "26250-20/4297", - "regionalFile": "N/A", - "parcelIDs": [ - 2646420, - 6393003, - 5534309, - 7812275, - 7140227 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2022-03-08T12:22:33.048Z", - "completed": "2020-09-07T08:41:19.320Z", - "initiated": "2020-01-20T00:32:17.477Z", - "ministryContact": "LOCKMAN SAIGE", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - } - ] - }, - { - "createdAt": "2016-05-06T07:39:35.548Z", - "completed": "2021-05-18T05:37:29.842Z", - "initiated": "2018-07-26T13:36:53.062Z", - "ministryContact": "ANKUNDING HARRY", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - } - ] - } - ] - }, - { - "uuid": "3ff7b697-3bd4-47fb-91cd-bff3b78b9a51", - "siteID": 17606, - "address": "309 Wilburn Way", - "latitude": 49.1583, - "longitude": -130.0587, - "lastUpdated": "2021-08-27T16:06:48.698Z", - "city": "Wesley Chapel", - "region": " North Coast", - "victoriaFile": "26250-20/9647", - "regionalFile": "N/A", - "parcelIDs": [ - 5107968, - 837897, - 6342603, - 5468683, - 1059169 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2014-08-12T13:46:32.968Z", - "completed": "2014-05-29T10:46:18.346Z", - "initiated": "2015-07-10T17:20:45.534Z", - "ministryContact": "EFFERTZ-KING BONITA", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - } - ] - }, - { - "createdAt": "2019-09-10T07:44:17.709Z", - "completed": "2018-05-21T18:37:55.992Z", - "initiated": "2018-05-09T01:37:49.655Z", - "ministryContact": "MCLAUGHLIN PEARLINE", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - } - ] - } - ] - }, - { - "uuid": "78c2a055-3292-4a17-a3b2-6ec15947ebdc", - "siteID": 19805, - "address": "38597 Karli Centers", - "latitude": 51.4921, - "longitude": -123.7194, - "lastUpdated": "2022-07-09T07:04:34.774Z", - "city": "Berkeley", - "region": "Thompson-Okanagan", - "victoriaFile": "26250-20/13885", - "regionalFile": "N/A", - "parcelIDs": [ - 106666, - 3185858, - 9338784, - 3538999, - 3918463 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2022-01-05T14:49:02.598Z", - "completed": "2016-12-18T21:54:27.118Z", - "initiated": "2017-09-10T17:29:39.602Z", - "ministryContact": "AUFDERHAR ARNALDO", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - } - ] - }, - { - "createdAt": "2014-05-08T01:33:52.827Z", - "completed": "2020-02-15T23:25:19.778Z", - "initiated": "2020-11-18T12:15:02.137Z", - "ministryContact": "JACOBI DESIREE", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - } - ] - } - ] - }, - { - "uuid": "f370abbe-072e-4978-9a9a-5e4c7a15a415", - "siteID": 19216, - "address": "7893 Pietro Ville", - "latitude": 53.7733, - "longitude": -128.4569, - "lastUpdated": "2021-08-28T12:34:06.589Z", - "city": "Thadcester", - "region": " North Coast", - "victoriaFile": "26250-20/1639", - "regionalFile": "N/A", - "parcelIDs": [ - 4604467, - 5109305, - 4075851, - 8990705, - 8394087 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2019-08-27T10:23:30.452Z", - "completed": "2014-08-17T08:27:36.538Z", - "initiated": "2020-08-16T21:30:09.107Z", - "ministryContact": "SPORER GILBERTO", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - } - ] - }, - { - "createdAt": "2017-05-22T23:31:46.225Z", - "completed": "2023-07-07T18:33:40.494Z", - "initiated": "2019-01-06T14:36:05.087Z", - "ministryContact": "SMITH REILLY", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - } - ] - } - ] - }, - { - "uuid": "481e20ba-9432-43ca-a1fd-f151e54f5bb2", - "siteID": 17516, - "address": "36474 Florine Groves", - "latitude": 58.4098, - "longitude": -119.0439, - "lastUpdated": "2017-09-24T22:31:17.423Z", - "city": "Lake Daytonmouth", - "region": "Vancouver Island/Coast", - "victoriaFile": "26250-20/9298", - "regionalFile": "N/A", - "parcelIDs": [ - 2320340, - 9639961, - 889650, - 9723857, - 8159796 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2017-04-13T02:18:44.169Z", - "completed": "2017-06-20T21:13:09.410Z", - "initiated": "2019-04-30T11:48:25.249Z", - "ministryContact": "RUTHERFORD EASTON", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - } - ] - }, - { - "createdAt": "2017-04-28T01:06:04.488Z", - "completed": "2016-07-20T02:23:21.824Z", - "initiated": "2022-05-17T17:44:33.854Z", - "ministryContact": "MONAHAN MCKAYLA", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - } - ] - } - ] - }, - { - "uuid": "473fec87-7968-4d44-9398-417624b2ef89", - "siteID": 15461, - "address": "386 Belle Spurs", - "latitude": 55.0195, - "longitude": -136.6492, - "lastUpdated": "2020-07-04T14:03:24.038Z", - "city": "Kaelafurt", - "region": "Thompson-Okanagan", - "victoriaFile": "26250-20/3448", - "regionalFile": "N/A", - "parcelIDs": [ - 3719115, - 7720850, - 9343914, - 2761789, - 6409590 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2017-11-05T13:11:26.471Z", - "completed": "2019-09-14T10:24:57.189Z", - "initiated": "2022-07-19T22:11:35.845Z", - "ministryContact": "PRICE HENDERSON", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - } - ] - }, - { - "createdAt": "2021-12-03T01:43:22.805Z", - "completed": "2015-11-06T15:06:04.523Z", - "initiated": "2015-02-07T18:10:08.104Z", - "ministryContact": "HODKIEWICZ BENNY", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - } - ] - } - ] - }, - { - "uuid": "bf9555ab-ddfd-4750-b28d-2cff6fa71a21", - "siteID": 19130, - "address": "541 Johnson Lakes", - "latitude": 49.0191, - "longitude": -134.6333, - "lastUpdated": "2015-08-31T06:54:32.812Z", - "city": "West Lilianastad", - "region": "Cariboo", - "victoriaFile": "26250-20/1990", - "regionalFile": "N/A", - "parcelIDs": [ - 1444502, - 4571504, - 698347, - 317278, - 3160063 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2021-09-08T17:56:10.037Z", - "completed": "2019-01-05T07:21:10.876Z", - "initiated": "2020-06-18T12:22:45.818Z", - "ministryContact": "KRAJCIK GLADYCE", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - } - ] - }, - { - "createdAt": "2022-09-18T18:36:24.363Z", - "completed": "2021-05-12T19:31:42.314Z", - "initiated": "2018-09-21T01:09:57.515Z", - "ministryContact": "GLEICHNER KADE", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - } - ] - } - ] - }, - { - "uuid": "186d808b-dda6-41dc-a000-c651955d0aea", - "siteID": 19083, - "address": "96820 Kuhlman Knolls", - "latitude": 49.7817, - "longitude": -123.2081, - "lastUpdated": "2015-11-27T19:10:58.294Z", - "city": "Plantation", - "region": "Thompson-Okanagan", - "victoriaFile": "26250-20/18384", - "regionalFile": "N/A", - "parcelIDs": [ - 4994697, - 5555229, - 4154597, - 4197176, - 5146992 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2022-01-30T01:31:03.293Z", - "completed": "2020-09-09T02:17:27.751Z", - "initiated": "2016-02-05T15:31:42.794Z", - "ministryContact": "SCHUMM ORIE", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - } - ] - }, - { - "createdAt": "2014-02-05T17:03:51.065Z", - "completed": "2023-05-24T22:20:00.784Z", - "initiated": "2015-07-01T09:24:54.286Z", - "ministryContact": "HOEGER LUDIE", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - } - ] - } - ] - }, - { - "uuid": "9a2f997d-615a-41e2-a73c-70c4e0efd574", - "siteID": 18716, - "address": "9522 Vergie Harbor", - "latitude": 56.8212, - "longitude": -127.1266, - "lastUpdated": "2019-02-10T19:35:45.146Z", - "city": "Fort Guiseppeton", - "region": "Thompson-Okanagan", - "victoriaFile": "26250-20/11559", - "regionalFile": "N/A", - "parcelIDs": [ - 9349875, - 7852705, - 2708712, - 714862, - 444309 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2023-02-11T08:57:13.307Z", - "completed": "2017-02-17T12:37:58.521Z", - "initiated": "2014-05-05T03:25:10.589Z", - "ministryContact": "DURGAN BOBBY", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - } - ] - }, - { - "createdAt": "2019-01-31T05:47:01.030Z", - "completed": "2017-03-20T05:33:08.314Z", - "initiated": "2020-12-02T11:34:17.494Z", - "ministryContact": "LEHNER EUDORA", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - } - ] - } - ] - }, - { - "uuid": "1ac8e2cc-0345-4925-9afc-e4f53b1ac483", - "siteID": 16006, - "address": "49510 Kayla Well", - "latitude": 57.2153, - "longitude": -138.8966, - "lastUpdated": "2017-08-09T22:59:46.852Z", - "city": "West Madaline", - "region": "Mainland/Southwest", - "victoriaFile": "26250-20/1626", - "regionalFile": "N/A", - "parcelIDs": [ - 6083727, - 3652059, - 4699983, - 2027838, - 7059535 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2014-07-19T15:28:02.946Z", - "completed": "2017-11-17T05:51:23.885Z", - "initiated": "2018-08-05T01:31:58.844Z", - "ministryContact": "RYAN PRINCE", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - } - ] - }, - { - "createdAt": "2014-05-14T09:47:55.480Z", - "completed": "2018-06-02T11:36:35.788Z", - "initiated": "2023-09-24T09:34:23.473Z", - "ministryContact": "WHITE MARSHALL", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - } - ] - } - ] - }, - { - "uuid": "7be67dab-1b84-408a-89b2-48b7b8f7e1a6", - "siteID": 17976, - "address": "2851 Curt Springs", - "latitude": 58.3176, - "longitude": -118.9684, - "lastUpdated": "2017-11-11T07:58:03.218Z", - "city": "Phoenix", - "region": "Mainland/Southwest", - "victoriaFile": "26250-20/16886", - "regionalFile": "N/A", - "parcelIDs": [ - 9585542, - 7155518, - 6845951, - 8664235, - 8357578 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2017-01-08T16:11:20.979Z", - "completed": "2020-08-01T15:16:51.664Z", - "initiated": "2022-10-15T13:25:24.303Z", - "ministryContact": "BEDNAR SELMER", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - } - ] - }, - { - "createdAt": "2015-11-10T15:56:14.711Z", - "completed": "2022-03-26T19:36:44.427Z", - "initiated": "2019-07-07T06:11:42.794Z", - "ministryContact": "BARTON LOLITA", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - } - ] - } - ] - }, - { - "uuid": "013b95d6-b198-4c06-8e83-445f07d67145", - "siteID": 18484, - "address": "2091 Savion Canyon", - "latitude": 55.4723, - "longitude": -137.0271, - "lastUpdated": "2014-08-29T22:22:36.098Z", - "city": "Fort Kattie", - "region": "Vancouver Island/Coast", - "victoriaFile": "26250-20/10020", - "regionalFile": "N/A", - "parcelIDs": [ - 9882777, - 7869673, - 4345628, - 6501793, - 8476154 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2020-01-08T02:43:22.260Z", - "completed": "2017-03-26T02:12:09.852Z", - "initiated": "2020-07-24T15:59:05.135Z", - "ministryContact": "HUELS VANCE", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - } - ] - }, - { - "createdAt": "2017-09-25T04:43:47.329Z", - "completed": "2015-10-12T00:32:59.510Z", - "initiated": "2017-03-31T18:00:43.193Z", - "ministryContact": "STARK NED", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - } - ] - } - ] - }, - { - "uuid": "fed9d699-d1fb-4bf3-b394-c70dc5f82d26", - "siteID": 19459, - "address": "4309 Wunsch Row", - "latitude": 56.8591, - "longitude": -129.4113, - "lastUpdated": "2013-10-10T05:48:06.838Z", - "city": "Lake Shemarworth", - "region": "Kootenay", - "victoriaFile": "26250-20/3573", - "regionalFile": "N/A", - "parcelIDs": [ - 5437356, - 8699074, - 5901324, - 2656808, - 582906 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2016-06-27T11:35:59.413Z", - "completed": "2017-02-01T11:14:37.656Z", - "initiated": "2016-09-04T23:26:53.099Z", - "ministryContact": "COLE CLAUDE", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - } - ] - }, - { - "createdAt": "2018-11-13T04:44:06.551Z", - "completed": "2016-08-03T18:34:36.594Z", - "initiated": "2014-07-31T15:17:11.334Z", - "ministryContact": "HARBER CARA", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - } - ] - } - ] - }, - { - "uuid": "bed87521-e389-4579-9fbf-b345468d2699", - "siteID": 20953, - "address": "310 Monahan Corners", - "latitude": 57.3313, - "longitude": -129.9764, - "lastUpdated": "2020-08-05T21:28:04.291Z", - "city": "Lake Dayton", - "region": "Kootenay", - "victoriaFile": "26250-20/2310", - "regionalFile": "N/A", - "parcelIDs": [ - 4202271, - 4800249, - 8133730, - 2837346, - 7927917 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2017-07-22T10:09:46.202Z", - "completed": "2016-08-13T11:27:11.594Z", - "initiated": "2016-12-17T00:03:34.001Z", - "ministryContact": "DECKOW GUNNER", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - } - ] - }, - { - "createdAt": "2021-06-28T09:19:37.573Z", - "completed": "2019-03-04T00:54:02.684Z", - "initiated": "2020-01-09T13:28:41.173Z", - "ministryContact": "HODKIEWICZ WEBSTER", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - } - ] - } - ] - }, - { - "uuid": "b3489f09-b486-4a51-b0b4-adba770ba67f", - "siteID": 18157, - "address": "636 Dangelo Oval", - "latitude": 58.6974, - "longitude": -129.129, - "lastUpdated": "2014-01-23T01:02:53.409Z", - "city": "Olliehaven", - "region": "Kootenay", - "victoriaFile": "26250-20/16416", - "regionalFile": "N/A", - "parcelIDs": [ - 474503, - 3640495, - 7083843, - 577091, - 7237798 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2017-04-12T20:46:33.485Z", - "completed": "2016-09-17T06:26:06.722Z", - "initiated": "2015-06-08T09:19:19.360Z", - "ministryContact": "HEIDENREICH BRITTANY", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - } - ] - }, - { - "createdAt": "2016-10-28T18:33:14.355Z", - "completed": "2020-11-02T12:23:06.375Z", - "initiated": "2020-11-16T03:50:20.793Z", - "ministryContact": "WITTING KARINE", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - } - ] - } - ] - }, - { - "uuid": "ed2d9476-588f-4b9e-aa65-000b3e1e58ef", - "siteID": 19431, - "address": "15876 Stokes Club", - "latitude": 55.8336, - "longitude": -129.3832, - "lastUpdated": "2022-09-17T21:12:03.817Z", - "city": "Kulasboro", - "region": "Vancouver Island/Coast", - "victoriaFile": "26250-20/14170", - "regionalFile": "N/A", - "parcelIDs": [ - 4894110, - 1051255, - 4827279, - 9095684, - 5071138 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2019-04-29T21:59:29.771Z", - "completed": "2022-01-16T23:15:50.868Z", - "initiated": "2022-10-12T18:18:00.195Z", - "ministryContact": "BEER JUSTEN", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - } - ] - }, - { - "createdAt": "2021-03-25T10:25:20.182Z", - "completed": "2022-05-12T15:53:34.814Z", - "initiated": "2014-02-15T04:03:16.649Z", - "ministryContact": "BOYER AVA", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - } - ] - } - ] - }, - { - "uuid": "c085613c-9deb-448a-98a5-ba3ccd4f3596", - "siteID": 20979, - "address": "5710 Arielle Row", - "latitude": 52.483, - "longitude": -129.4022, - "lastUpdated": "2019-09-12T10:48:58.732Z", - "city": "Bowie", - "region": " North Coast", - "victoriaFile": "26250-20/16369", - "regionalFile": "N/A", - "parcelIDs": [ - 7055094, - 9087567, - 6697995, - 3371874, - 5617391 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2021-03-02T14:54:04.163Z", - "completed": "2016-12-24T04:04:51.550Z", - "initiated": "2018-10-08T19:09:10.900Z", - "ministryContact": "KILBACK PRESTON", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - } - ] - }, - { - "createdAt": "2015-02-02T18:25:07.409Z", - "completed": "2014-06-03T17:54:54.526Z", - "initiated": "2014-06-09T04:20:18.844Z", - "ministryContact": "HOMENICK SIBYL", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - } - ] - } - ] - }, - { - "uuid": "cbb4bd2a-938d-48b8-841b-baa7b6b7a728", - "siteID": 17366, - "address": "985 Jaron Way", - "latitude": 56.0779, - "longitude": -122.2041, - "lastUpdated": "2018-10-02T11:44:56.590Z", - "city": "Pearlieburgh", - "region": " North Coast", - "victoriaFile": "26250-20/10274", - "regionalFile": "N/A", - "parcelIDs": [ - 2076077, - 1844822, - 6485771, - 8482378, - 7096789 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2014-11-06T22:23:49.545Z", - "completed": "2022-12-30T07:18:16.052Z", - "initiated": "2014-02-12T06:44:38.980Z", - "ministryContact": "WEIMANN KOLE", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - } - ] - }, - { - "createdAt": "2015-11-16T05:33:29.059Z", - "completed": "2023-01-15T20:37:49.394Z", - "initiated": "2020-09-07T00:52:10.197Z", - "ministryContact": "JAST BRIELLE", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - } - ] - } - ] - }, - { - "uuid": "7a17e1b4-2dc9-4294-b70b-75c4f5f99721", - "siteID": 17823, - "address": "572 Doyle Lodge", - "latitude": 48.4324, - "longitude": -132.9087, - "lastUpdated": "2016-09-25T06:46:38.656Z", - "city": "Lincoln", - "region": "Thompson-Okanagan", - "victoriaFile": "26250-20/18077", - "regionalFile": "N/A", - "parcelIDs": [ - 7013582, - 9705450, - 2620306, - 7431617, - 7988411 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2019-07-23T00:51:24.487Z", - "completed": "2020-10-01T14:17:55.147Z", - "initiated": "2018-03-23T04:21:12.800Z", - "ministryContact": "LEDNER JAYDON", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - } - ] - }, - { - "createdAt": "2021-12-05T09:37:33.212Z", - "completed": "2015-01-09T21:39:28.324Z", - "initiated": "2020-03-26T09:57:29.502Z", - "ministryContact": "HUDSON JEFF", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - } - ] - } - ] - }, - { - "uuid": "d4df19ec-b244-4bc0-9a9d-e075b5362201", - "siteID": 19471, - "address": "5387 Denis Circles", - "latitude": 50.0855, - "longitude": -128.1032, - "lastUpdated": "2022-01-18T14:59:32.233Z", - "city": "North Alannaside", - "region": "Vancouver Island/Coast", - "victoriaFile": "26250-20/3317", - "regionalFile": "N/A", - "parcelIDs": [ - 3513218, - 7299622, - 3148650, - 1984159, - 6372178 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2020-09-05T18:23:46.888Z", - "completed": "2015-01-23T16:35:36.103Z", - "initiated": "2018-11-23T00:31:15.841Z", - "ministryContact": "FRITSCH EULA", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - } - ] - }, - { - "createdAt": "2017-01-12T14:27:12.655Z", - "completed": "2016-07-23T21:06:07.189Z", - "initiated": "2019-11-02T07:56:41.674Z", - "ministryContact": "SENGER MOLLIE", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - } - ] - } - ] - }, - { - "uuid": "4b54eef2-497b-4045-9f01-99ba08de5e2d", - "siteID": 17273, - "address": "222 Hettinger Wells", - "latitude": 55.7183, - "longitude": -123.2757, - "lastUpdated": "2022-11-21T00:34:49.548Z", - "city": "Nikkostad", - "region": "Kootenay", - "victoriaFile": "26250-20/9661", - "regionalFile": "N/A", - "parcelIDs": [ - 7208348, - 4483161, - 8908148, - 4337851, - 5379975 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2016-12-02T03:11:07.599Z", - "completed": "2015-03-21T23:21:29.920Z", - "initiated": "2017-04-18T03:01:52.867Z", - "ministryContact": "WALKER LAURENCE", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - } - ] - }, - { - "createdAt": "2020-02-13T04:29:29.320Z", - "completed": "2017-06-19T00:43:38.425Z", - "initiated": "2019-07-17T13:45:49.244Z", - "ministryContact": "HANE ALVIS", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - } - ] - } - ] - }, - { - "uuid": "d7966a92-9a0e-4177-a3a5-1db0404976da", - "siteID": 19364, - "address": "465 Brad Row", - "latitude": 51.2926, - "longitude": -119.0475, - "lastUpdated": "2020-04-08T17:13:50.026Z", - "city": "North Deja", - "region": "Cariboo", - "victoriaFile": "26250-20/6771", - "regionalFile": "N/A", - "parcelIDs": [ - 3823119, - 2965989, - 8923986, - 5125723, - 3469202 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2020-05-15T06:21:37.423Z", - "completed": "2019-06-27T01:46:10.327Z", - "initiated": "2023-05-03T01:18:46.718Z", - "ministryContact": "PAGAC LONDON", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - } - ] - }, - { - "createdAt": "2017-05-15T02:06:34.472Z", - "completed": "2018-03-05T13:02:06.844Z", - "initiated": "2022-01-13T07:23:44.538Z", - "ministryContact": "REYNOLDS TOD", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - } - ] - } - ] - }, - { - "uuid": "af440629-0094-4b61-b514-692b6951b4d0", - "siteID": 17259, - "address": "1905 Camille Highway", - "latitude": 53.1409, - "longitude": -128.4355, - "lastUpdated": "2021-11-10T10:08:36.553Z", - "city": "Mekhichester", - "region": " North Coast", - "victoriaFile": "26250-20/15133", - "regionalFile": "N/A", - "parcelIDs": [ - 7693417, - 9627303, - 5866810, - 9920523, - 5853460 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2018-08-13T13:13:26.986Z", - "completed": "2018-05-29T02:11:24.930Z", - "initiated": "2016-05-04T09:47:20.194Z", - "ministryContact": "BAUCH JACINTHE", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - } - ] - }, - { - "createdAt": "2013-12-22T12:44:51.281Z", - "completed": "2022-06-16T18:40:20.280Z", - "initiated": "2017-11-20T12:42:10.531Z", - "ministryContact": "LEFFLER MAURINE", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - } - ] - } - ] - }, - { - "uuid": "3764da19-196f-4d1a-86ad-01dd99f6e2c7", - "siteID": 18451, - "address": "54016 West Overpass", - "latitude": 57.3085, - "longitude": -127.4998, - "lastUpdated": "2019-05-21T13:10:32.772Z", - "city": "Roanoke", - "region": " North Coast", - "victoriaFile": "26250-20/18059", - "regionalFile": "N/A", - "parcelIDs": [ - 9825641, - 9466163, - 3233179, - 757850, - 9933722 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2018-06-16T11:39:43.154Z", - "completed": "2017-05-20T08:29:23.512Z", - "initiated": "2020-09-10T15:22:32.513Z", - "ministryContact": "HAMMES DARRICK", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - } - ] - }, - { - "createdAt": "2019-01-28T00:56:41.946Z", - "completed": "2022-08-27T03:00:10.587Z", - "initiated": "2016-05-16T16:43:35.026Z", - "ministryContact": "WITTING HYMAN", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - } - ] - } - ] - }, - { - "uuid": "f9f46d12-1f2a-4142-9040-6b4ab72f2d57", - "siteID": 18601, - "address": "221 Hammes Throughway", - "latitude": 54.0235, - "longitude": -124.6093, - "lastUpdated": "2017-04-06T21:10:33.596Z", - "city": "Georgetown", - "region": "Mainland/Southwest", - "victoriaFile": "26250-20/8895", - "regionalFile": "N/A", - "parcelIDs": [ - 7881755, - 8705537, - 7254581, - 8006556, - 3272175 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2020-10-02T09:54:35.280Z", - "completed": "2016-02-18T20:04:14.658Z", - "initiated": "2018-02-14T09:25:46.475Z", - "ministryContact": "HOPPE LAYNE", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - } - ] - }, - { - "createdAt": "2016-03-15T14:12:37.561Z", - "completed": "2020-12-19T04:14:07.208Z", - "initiated": "2021-02-05T10:23:21.077Z", - "ministryContact": "ZIEME LEONIE", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - } - ] - } - ] - }, - { - "uuid": "e83f5b97-d1bb-42da-ada3-1e699998729a", - "siteID": 19444, - "address": "47981 Schaefer Land", - "latitude": 52.6653, - "longitude": -134.0968, - "lastUpdated": "2016-05-14T23:54:06.088Z", - "city": "Port Keshawnstad", - "region": "Mainland/Southwest", - "victoriaFile": "26250-20/18014", - "regionalFile": "N/A", - "parcelIDs": [ - 345741, - 6165677, - 7358750, - 5117993, - 3760183 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2015-11-12T05:50:29.342Z", - "completed": "2020-11-03T08:54:05.791Z", - "initiated": "2018-07-15T23:26:46.056Z", - "ministryContact": "BLICK CATHERINE", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - } - ] - }, - { - "createdAt": "2014-04-25T19:51:23.055Z", - "completed": "2020-05-04T07:43:50.741Z", - "initiated": "2014-11-05T18:03:01.503Z", - "ministryContact": "WOLFF-MOORE RAQUEL", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - } - ] - } - ] - }, - { - "uuid": "7193b32b-5552-44a1-9835-2b495ec2dd9f", - "siteID": 20446, - "address": "4119 Mya Dale", - "latitude": 52.8816, - "longitude": -125.199, - "lastUpdated": "2014-09-06T21:33:53.545Z", - "city": "Doral", - "region": "Vancouver Island/Coast", - "victoriaFile": "26250-20/19954", - "regionalFile": "N/A", - "parcelIDs": [ - 5506126, - 9410927, - 5942542, - 8423786, - 2993646 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2016-04-11T23:54:19.987Z", - "completed": "2017-07-16T23:02:08.632Z", - "initiated": "2018-07-23T23:18:56.869Z", - "ministryContact": "LINDGREN MONA", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - } - ] - }, - { - "createdAt": "2022-09-11T05:25:19.319Z", - "completed": "2020-12-09T02:46:45.637Z", - "initiated": "2020-04-23T16:30:05.536Z", - "ministryContact": "BAHRINGER-WISOKY WARD", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - } - ] - } - ] - }, - { - "uuid": "f7a5b395-f1c5-46ed-aad5-02f802597fb7", - "siteID": 16679, - "address": "6407 Ryan Passage", - "latitude": 54.1469, - "longitude": -127.3136, - "lastUpdated": "2013-11-10T20:55:38.394Z", - "city": "Hammeston", - "region": "Kootenay", - "victoriaFile": "26250-20/3753", - "regionalFile": "N/A", - "parcelIDs": [ - 3624403, - 4252305, - 6158448, - 8708250, - 4161466 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2023-06-22T03:40:47.478Z", - "completed": "2020-02-18T00:03:31.185Z", - "initiated": "2021-05-27T15:01:03.861Z", - "ministryContact": "MAGGIO ICIE", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - } - ] - }, - { - "createdAt": "2017-01-30T13:20:27.244Z", - "completed": "2016-02-03T06:01:42.439Z", - "initiated": "2017-05-25T08:48:00.029Z", - "ministryContact": "BOTSFORD SAM", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - } - ] - } - ] - }, - { - "uuid": "6e4227bf-953a-4b09-9e55-e8deccd9cd28", - "siteID": 17658, - "address": "353 Cortney Ridge", - "latitude": 53.4929, - "longitude": -126.5543, - "lastUpdated": "2014-01-10T22:22:46.014Z", - "city": "Buckridgestad", - "region": "Mainland/Southwest", - "victoriaFile": "26250-20/9563", - "regionalFile": "N/A", - "parcelIDs": [ - 708704, - 4606711, - 4307846, - 5165415, - 1247888 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2015-04-15T22:32:26.931Z", - "completed": "2017-07-10T07:55:06.277Z", - "initiated": "2022-10-25T21:59:21.479Z", - "ministryContact": "COLLINS ROY", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - } - ] - }, - { - "createdAt": "2014-06-14T18:33:05.541Z", - "completed": "2020-05-17T17:21:46.519Z", - "initiated": "2015-08-07T17:27:40.577Z", - "ministryContact": "BEIER ISSAC", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - } - ] - } - ] - }, - { - "uuid": "1cdac877-c637-4492-beea-568d9bd54286", - "siteID": 19453, - "address": "54691 Zola Grove", - "latitude": 50.2111, - "longitude": -125.0582, - "lastUpdated": "2023-03-09T18:59:56.183Z", - "city": "Goldnerfort", - "region": " North Coast", - "victoriaFile": "26250-20/6736", - "regionalFile": "N/A", - "parcelIDs": [ - 8557229, - 599630, - 4556110, - 9440123, - 4237603 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2017-03-11T18:27:28.968Z", - "completed": "2015-05-30T06:07:16.727Z", - "initiated": "2021-02-27T18:30:36.369Z", - "ministryContact": "GRANT ENID", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - } - ] - }, - { - "createdAt": "2017-09-04T03:16:22.828Z", - "completed": "2022-01-14T16:19:23.134Z", - "initiated": "2015-04-27T10:16:49.377Z", - "ministryContact": "RITCHIE LEMPI", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - } - ] - } - ] - }, - { - "uuid": "1b7f072f-a62a-4db9-9a2b-7a6fbcb41ded", - "siteID": 19132, - "address": "4043 Maddison Crest", - "latitude": 48.3808, - "longitude": -132.4626, - "lastUpdated": "2018-06-26T13:37:07.760Z", - "city": "Cummeratafield", - "region": " North Coast", - "victoriaFile": "26250-20/10381", - "regionalFile": "N/A", - "parcelIDs": [ - 6739172, - 1593160, - 494811, - 6472435, - 1130965 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2014-03-15T01:15:25.139Z", - "completed": "2014-02-21T09:04:30.458Z", - "initiated": "2013-12-24T16:50:00.331Z", - "ministryContact": "BROWN ELSIE", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - } - ] - }, - { - "createdAt": "2022-10-16T20:18:08.117Z", - "completed": "2021-11-04T21:50:06.914Z", - "initiated": "2016-11-07T05:34:33.381Z", - "ministryContact": "HAMMES VELDA", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - } - ] - } - ] - }, - { - "uuid": "5f9ab59b-57e8-4ce0-8d72-df77b496df36", - "siteID": 20724, - "address": "2019 Tremblay Loop", - "latitude": 49.9237, - "longitude": -127.3878, - "lastUpdated": "2015-02-22T12:56:12.372Z", - "city": "West Tristian", - "region": "Mainland/Southwest", - "victoriaFile": "26250-20/15821", - "regionalFile": "N/A", - "parcelIDs": [ - 3529011, - 1364973, - 9075650, - 7716256, - 4164023 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2022-11-28T13:58:35.206Z", - "completed": "2019-05-17T00:33:01.119Z", - "initiated": "2022-11-12T03:49:39.276Z", - "ministryContact": "NIENOW JAIME", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - } - ] - }, - { - "createdAt": "2016-10-10T22:14:50.071Z", - "completed": "2022-10-17T09:13:58.031Z", - "initiated": "2022-10-29T04:26:24.846Z", - "ministryContact": "HALVORSON RACHAEL", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - } - ] - } - ] - }, - { - "uuid": "e09d8611-45c1-46c7-ae6b-47630a808ce0", - "siteID": 20057, - "address": "897 Meagan Camp", - "latitude": 58.3104, - "longitude": -131.3908, - "lastUpdated": "2022-10-19T04:36:59.295Z", - "city": "Olympia", - "region": "Mainland/Southwest", - "victoriaFile": "26250-20/14315", - "regionalFile": "N/A", - "parcelIDs": [ - 8055388, - 5470055, - 9188502, - 7999733, - 7114340 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2018-06-14T22:48:29.201Z", - "completed": "2019-09-21T06:58:38.197Z", - "initiated": "2023-07-31T07:58:58.745Z", - "ministryContact": "LEGROS CALEB", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - } - ] - }, - { - "createdAt": "2015-12-28T23:00:46.016Z", - "completed": "2019-09-01T21:29:40.351Z", - "initiated": "2014-06-24T07:22:51.752Z", - "ministryContact": "KUVALIS RETTA", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - } - ] - } - ] - }, - { - "uuid": "26863d97-f763-40b4-8a88-12f9ef3ca30f", - "siteID": 18058, - "address": "5868 Mara View", - "latitude": 57.2318, - "longitude": -123.2212, - "lastUpdated": "2023-05-31T09:34:56.384Z", - "city": "Prohaskachester", - "region": "Mainland/Southwest", - "victoriaFile": "26250-20/17783", - "regionalFile": "N/A", - "parcelIDs": [ - 9256826, - 3247337, - 5039887, - 3262131, - 2449795 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2015-07-19T19:36:24.429Z", - "completed": "2019-02-15T20:16:19.432Z", - "initiated": "2015-06-30T13:35:39.854Z", - "ministryContact": "STEHR LIBBY", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - } - ] - }, - { - "createdAt": "2015-11-07T23:45:12.903Z", - "completed": "2021-10-14T06:47:45.750Z", - "initiated": "2019-04-08T12:36:17.008Z", - "ministryContact": "JACOBI LUCY", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - } - ] - } - ] - }, - { - "uuid": "ea627467-608c-4757-8956-6941f64362d0", - "siteID": 15593, - "address": "85203 Mayert Brook", - "latitude": 51.0256, - "longitude": -134.1397, - "lastUpdated": "2019-03-08T10:09:19.750Z", - "city": "Faustoshire", - "region": "Thompson-Okanagan", - "victoriaFile": "26250-20/11257", - "regionalFile": "N/A", - "parcelIDs": [ - 1105412, - 6142393, - 7121093, - 9812211, - 9465095 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2018-07-08T02:53:19.027Z", - "completed": "2016-09-15T09:34:16.091Z", - "initiated": "2014-11-27T03:54:59.400Z", - "ministryContact": "SMITH ISAIAH", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - } - ] - }, - { - "createdAt": "2015-08-13T16:13:56.309Z", - "completed": "2016-05-28T22:40:41.206Z", - "initiated": "2014-01-08T08:32:15.726Z", - "ministryContact": "WILLIAMSON JAYDA", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - } - ] - } - ] - } -] \ No newline at end of file +[{"uuid":"7739e0af-e641-42f1-9419-52450e063884","siteID":18319,"address":"7321 King Hill","latitude":57.7618,"longitude":-137.916,"lastUpdated":"2014-06-07","city":"South Madie","region":"Mainland/Southwest","victoriaFile":"26250-20/4893","regionalFile":"N/A","parcelIDs":[7534998,4932627,7039573,539610,9639069],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2015-02-08","completed":"2020-02-26","initiated":"2018-10-06","ministryContact":"HARBER ALTA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2022-10-29","completed":"2015-12-09","initiated":"2015-06-06","ministryContact":"RIPPIN APRIL","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":true}],"participants":[{"name":"SHELL CANADA PRODUCTS","endDate":"2020-04-16","startDate":"2013-11-30","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","endDate":"2021-07-13","startDate":"2021-03-05","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","endDate":"2015-04-19","startDate":"2021-09-03","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","endDate":"2016-12-24","startDate":"2015-05-03","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"AMET, DOLOR SIT","endDate":"2014-06-10","startDate":"2013-12-10","notes":"","roles":["ORGANIZATION"],"siteRegistry":false}],"associatedSites":[{"dateNoted":"2019-01-11","notes":"","parcelID":"17213","siteID":"18093","siteRegistry":false},{"dateNoted":"2013-12-13","notes":"","parcelID":"15594","siteID":"15792","siteRegistry":true}]},{"uuid":"edc0fe89-59c1-4d7f-958b-5138886095df","siteID":18269,"address":"932 Brakus Islands","latitude":53.3937,"longitude":-126.1078,"lastUpdated":"2015-10-25","city":"Titoberg","region":" North Coast","victoriaFile":"26250-20/12018","regionalFile":"N/A","parcelIDs":[9472301,2884191,6409707,1818996,3861543],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2018-03-09","completed":"2021-11-18","initiated":"2019-07-25","ministryContact":"BASHIRIAN PRINCE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2016-02-23","completed":"2014-11-24","initiated":"2023-05-21","ministryContact":"WITTING TRYSTAN","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2015-01-08","completed":"2023-03-07","initiated":"2022-08-21","ministryContact":"RENNER-FUNK CALLIE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2016-08-15","completed":"2019-09-03","initiated":"2021-11-08","ministryContact":"O'REILLY CLAUDIA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":true}],"participants":[{"name":"SHELL CANADA PRODUCTS","endDate":"2017-11-28","startDate":"2017-02-15","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"AMET, DOLOR SIT","endDate":"2020-12-21","startDate":"2022-12-13","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2017-10-08","startDate":"2020-09-07","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","endDate":"2016-09-09","startDate":"2015-06-11","notes":"","roles":["EMPLOYEE"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2023-02-08","notes":"","parcelID":"17312","siteID":"17113","siteRegistry":true},{"dateNoted":"2020-04-29","notes":"","parcelID":"19289","siteID":"18495","siteRegistry":false}]},{"uuid":"fdd08826-fcce-4832-8b02-98e948bc188e","siteID":15980,"address":"968 Mertz Road","latitude":50.1289,"longitude":-136.9081,"lastUpdated":"2021-12-22","city":"South Mohammedworth","region":" North Coast","victoriaFile":"26250-20/1411","regionalFile":"N/A","parcelIDs":[7295341,8323174,7102816,5270134,1312009],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2016-05-02","completed":"2022-09-08","initiated":"2021-05-16","ministryContact":"OLSON XZAVIER","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2017-11-01","completed":"2017-09-30","initiated":"2019-01-23","ministryContact":"LINDGREN NICOLETTE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2018-10-20","completed":"2017-10-14","initiated":"2021-08-15","ministryContact":"EBERT LIANA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2021-01-27","completed":"2021-02-10","initiated":"2018-09-23","ministryContact":"ROOB MARIANA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2023-09-08","completed":"2023-08-21","initiated":"2017-08-03","ministryContact":"RYAN LAURIANNE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":true}],"participants":[{"name":"AMET, DOLOR SIT","endDate":"2017-01-08","startDate":"2016-07-04","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2018-12-13","startDate":"2014-09-03","notes":"","roles":["EMPLOYEE"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2020-01-18","notes":"","parcelID":"15283","siteID":"19903","siteRegistry":false},{"dateNoted":"2019-08-04","notes":"","parcelID":"15389","siteID":"15577","siteRegistry":false},{"dateNoted":"2014-06-10","notes":"","parcelID":"16657","siteID":"19380","siteRegistry":true}]},{"uuid":"889b94d4-736c-4217-a0f2-72e2c9235813","siteID":18065,"address":"64134 Jada Glen","latitude":56.3675,"longitude":-130.3327,"lastUpdated":"2018-02-06","city":"North Carterfurt","region":"Cariboo","victoriaFile":"26250-20/17862","regionalFile":"N/A","parcelIDs":[8846220,8584515,6083650,9174776,9412895],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2023-02-25","completed":"2022-05-21","initiated":"2023-08-08","ministryContact":"STROSIN BELLA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2014-05-04","completed":"2017-02-21","initiated":"2016-04-01","ministryContact":"HUEL LULU","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":true}],"participants":[{"name":"SHELL CANADA PRODUCTS","endDate":"2016-07-14","startDate":"2020-11-11","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"AMET, DOLOR SIT","endDate":"2015-10-08","startDate":"2015-12-09","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2017-04-16","startDate":"2016-04-14","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","endDate":"2023-02-24","startDate":"2014-07-20","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2019-01-07","startDate":"2017-10-20","notes":"","roles":["EMPLOYEE"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2016-05-08","notes":"","parcelID":"18635","siteID":"20788","siteRegistry":false},{"dateNoted":"2016-12-08","notes":"","parcelID":"17135","siteID":"17414","siteRegistry":false}]},{"uuid":"f015e3d9-c3ac-489a-a4a6-8bad67885aa3","siteID":15784,"address":"116 Erin Rue","latitude":53.6632,"longitude":-118.0536,"lastUpdated":"2021-12-19","city":"Kielbury","region":" North Coast","victoriaFile":"26250-20/11964","regionalFile":"N/A","parcelIDs":[1650055,9103114,1089791,515337,6604543],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2020-09-17","completed":"2014-08-28","initiated":"2016-02-14","ministryContact":"CORMIER ERNIE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2017-05-27","completed":"2018-09-20","initiated":"2016-05-31","ministryContact":"CRONIN FLORIDA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2020-03-08","completed":"2021-07-18","initiated":"2015-02-06","ministryContact":"DICKINSON ANNA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2016-02-01","completed":"2014-12-26","initiated":"2020-12-10","ministryContact":"BEATTY-WYMAN PATSY","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2021-01-27","completed":"2021-03-28","initiated":"2014-05-16","ministryContact":"YUNDT RAFAELA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":false}],"participants":[{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2014-09-10","startDate":"2017-03-08","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"IPSUM","endDate":"2018-11-19","startDate":"2014-07-24","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2018-03-03","startDate":"2019-11-15","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"IPSUM","endDate":"2022-01-05","startDate":"2014-11-02","notes":"","roles":["EMPLOYEE"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2015-01-18","notes":"","parcelID":"15293","siteID":"18775","siteRegistry":false},{"dateNoted":"2021-04-08","notes":"","parcelID":"20313","siteID":"20555","siteRegistry":false},{"dateNoted":"2023-02-18","notes":"","parcelID":"15704","siteID":"20957","siteRegistry":true}]},{"uuid":"a0948bb1-b06a-42cc-ab19-86a9cea7f7e9","siteID":19905,"address":"8574 Hayden Forest","latitude":56.4413,"longitude":-120.5489,"lastUpdated":"2022-05-24","city":"Fort Electafield","region":" North Coast","victoriaFile":"26250-20/18738","regionalFile":"N/A","parcelIDs":[9098175,3532457,8278379,9391471,3226250],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2019-06-01","completed":"2014-11-06","initiated":"2018-02-24","ministryContact":"WUNSCH VINCENT","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2017-06-15","completed":"2014-07-26","initiated":"2016-02-10","ministryContact":"STROSIN JEFFREY","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2020-12-31","completed":"2023-04-20","initiated":"2023-01-20","ministryContact":"RIPPIN MORTIMER","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2016-02-10","completed":"2014-05-20","initiated":"2013-12-09","ministryContact":"KING SYDNEE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":true}],"participants":[{"name":"IPSUM","endDate":"2022-01-03","startDate":"2014-04-23","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"IPSUM","endDate":"2014-02-13","startDate":"2019-01-05","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2017-01-16","startDate":"2013-12-16","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","endDate":"2018-06-25","startDate":"2017-09-29","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"AMET, DOLOR SIT","endDate":"2018-05-01","startDate":"2018-09-28","notes":"","roles":["ORGANIZATION"],"siteRegistry":false}],"associatedSites":[{"dateNoted":"2016-03-06","notes":"","parcelID":"19084","siteID":"18497","siteRegistry":true},{"dateNoted":"2021-05-16","notes":"","parcelID":"15553","siteID":"17237","siteRegistry":true}]},{"uuid":"33a07bb8-ab02-4e19-8555-4741f195e715","siteID":15361,"address":"5152 Jana Courts","latitude":54.2664,"longitude":-135.6604,"lastUpdated":"2015-08-26","city":"Redding","region":"Kootenay","victoriaFile":"26250-20/5707","regionalFile":"N/A","parcelIDs":[4622503,5630788,8441620,7447192,9958769],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2016-02-19","completed":"2018-01-21","initiated":"2015-03-10","ministryContact":"MAGGIO DOYLE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2021-11-15","completed":"2017-01-02","initiated":"2016-08-04","ministryContact":"BREITENBERG BELL","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2018-01-31","completed":"2023-05-06","initiated":"2015-01-13","ministryContact":"BODE GILDA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2023-05-30","completed":"2022-07-27","initiated":"2022-01-14","ministryContact":"WEISSNAT ADOLF","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2016-03-07","completed":"2015-08-19","initiated":"2021-07-25","ministryContact":"WOLF COY","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false}],"participants":[{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2021-11-28","startDate":"2015-09-12","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","endDate":"2017-03-23","startDate":"2019-11-13","notes":"","roles":["EMPLOYEE"],"siteRegistry":false}],"associatedSites":[{"dateNoted":"2017-06-27","notes":"","parcelID":"20888","siteID":"15784","siteRegistry":false}]},{"uuid":"8ac095cb-e831-49f8-b8f4-acb48a8900d3","siteID":16312,"address":"8008 Gerlach Junction","latitude":50.6082,"longitude":-125.874,"lastUpdated":"2022-01-31","city":"Veumworth","region":"Mainland/Southwest","victoriaFile":"26250-20/1062","regionalFile":"N/A","parcelIDs":[9193439,8066853,3032864,4702520,3891877],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2022-02-11","completed":"2017-11-10","initiated":"2022-12-05","ministryContact":"CONNELLY-CREMIN DEANGELO","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2017-01-17","completed":"2015-07-19","initiated":"2017-02-02","ministryContact":"GISLASON BUSTER","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":false}],"participants":[{"name":"IPSUM","endDate":"2021-10-17","startDate":"2019-03-31","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2015-01-18","startDate":"2019-05-14","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"IPSUM","endDate":"2017-04-01","startDate":"2020-04-05","notes":"","roles":["ORGANIZATION"],"siteRegistry":false}],"associatedSites":[{"dateNoted":"2020-04-18","notes":"","parcelID":"18436","siteID":"19457","siteRegistry":true},{"dateNoted":"2016-06-30","notes":"","parcelID":"20906","siteID":"16487","siteRegistry":false},{"dateNoted":"2021-11-27","notes":"","parcelID":"19892","siteID":"15513","siteRegistry":true}]},{"uuid":"48ff888b-fde1-4c57-b1d8-41e1a7ef80b9","siteID":15704,"address":"253 Pagac Fall","latitude":48.0323,"longitude":-119.5559,"lastUpdated":"2019-10-26","city":"North Bryonfurt","region":"Kootenay","victoriaFile":"26250-20/14980","regionalFile":"N/A","parcelIDs":[5563997,4959994,7611903,9570744,8955213],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2019-11-22","completed":"2019-06-05","initiated":"2019-03-30","ministryContact":"RITCHIE MARJOLAINE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2019-06-25","completed":"2017-12-27","initiated":"2019-06-22","ministryContact":"GLEICHNER KAREEM","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":true}],"participants":[{"name":"AMET, DOLOR SIT","endDate":"2015-11-30","startDate":"2013-11-30","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","endDate":"2014-09-02","startDate":"2016-05-14","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2020-05-06","startDate":"2017-06-16","notes":"","roles":["ORGANIZATION"],"siteRegistry":false}],"associatedSites":[{"dateNoted":"2020-03-05","notes":"","parcelID":"16990","siteID":"17322","siteRegistry":false},{"dateNoted":"2016-05-26","notes":"","parcelID":"16553","siteID":"18319","siteRegistry":true},{"dateNoted":"2016-02-23","notes":"","parcelID":"18790","siteID":"19777","siteRegistry":false}]},{"uuid":"16f113f3-f04b-47cc-8954-e9a770d4b845","siteID":20906,"address":"8538 Monahan Rest","latitude":56.7973,"longitude":-119.7269,"lastUpdated":"2023-04-19","city":"Robeltown","region":"Thompson-Okanagan","victoriaFile":"26250-20/17012","regionalFile":"N/A","parcelIDs":[9496457,9643662,3665272,9101769,2168183],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2014-05-18","completed":"2015-06-22","initiated":"2014-08-29","ministryContact":"BECKER GAETANO","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2021-03-21","completed":"2022-07-16","initiated":"2017-09-19","ministryContact":"OKUNEVA KIRSTIN","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":false}],"participants":[{"name":"SHELL CANADA PRODUCTS","endDate":"2016-06-16","startDate":"2021-07-07","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"IPSUM","endDate":"2020-06-12","startDate":"2015-06-14","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"IPSUM","endDate":"2018-08-29","startDate":"2014-10-28","notes":"","roles":["ORGANIZATION"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2020-04-12","notes":"","parcelID":"19343","siteID":"19773","siteRegistry":true},{"dateNoted":"2013-12-03","notes":"","parcelID":"15593","siteID":"16025","siteRegistry":false}]},{"uuid":"d59b3dbf-17f6-4d1b-a434-6e220bc70361","siteID":20833,"address":"5819 Emmalee Crest","latitude":53.9487,"longitude":-136.5663,"lastUpdated":"2017-11-06","city":"Fort Kaylaview","region":"Mainland/Southwest","victoriaFile":"26250-20/6285","regionalFile":"N/A","parcelIDs":[5903544,2910198,9526907,7637082,4100828],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2014-07-27","completed":"2014-09-13","initiated":"2023-09-14","ministryContact":"KUNZE HUMBERTO","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2021-05-08","completed":"2014-05-14","initiated":"2014-05-02","ministryContact":"SCHAMBERGER CHET","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":false}],"participants":[{"name":"SHELL CANADA PRODUCTS","endDate":"2019-01-18","startDate":"2021-06-17","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"AMET, DOLOR SIT","endDate":"2017-10-07","startDate":"2019-04-13","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"IPSUM","endDate":"2017-07-23","startDate":"2020-04-22","notes":"","roles":["EMPLOYEE"],"siteRegistry":false}],"associatedSites":[{"dateNoted":"2017-05-21","notes":"","parcelID":"20930","siteID":"20407","siteRegistry":true},{"dateNoted":"2016-10-28","notes":"","parcelID":"15251","siteID":"16118","siteRegistry":false},{"dateNoted":"2023-03-21","notes":"","parcelID":"15243","siteID":"16358","siteRegistry":false}]},{"uuid":"a7033efb-a59f-42f4-b2bc-0d66edd0326a","siteID":20865,"address":"7392 Kamron Parkways","latitude":56.6185,"longitude":-133.1699,"lastUpdated":"2014-08-04","city":"New Corabury","region":"Cariboo","victoriaFile":"26250-20/964","regionalFile":"N/A","parcelIDs":[3395713,588192,327047,1637653,6518812],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2022-11-08","completed":"2017-04-08","initiated":"2020-11-14","ministryContact":"WISOKY ESTELLA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2021-03-19","completed":"2022-06-30","initiated":"2018-05-24","ministryContact":"METZ AMIE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false}],"participants":[{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2016-04-26","startDate":"2013-10-24","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"IPSUM","endDate":"2020-03-01","startDate":"2023-01-24","notes":"","roles":["EMPLOYEE"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2015-02-05","notes":"","parcelID":"19844","siteID":"18528","siteRegistry":true},{"dateNoted":"2021-06-05","notes":"","parcelID":"16150","siteID":"15543","siteRegistry":false}]},{"uuid":"bb1749cd-6350-4e81-a11a-13fa390dc4a5","siteID":15229,"address":"5815 Bednar Crossing","latitude":48.6774,"longitude":-133.6719,"lastUpdated":"2015-04-10","city":"Reichertview","region":"Cariboo","victoriaFile":"26250-20/18792","regionalFile":"N/A","parcelIDs":[8046405,8575670,5790812,9146060,6438717],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2015-02-27","completed":"2016-04-04","initiated":"2023-08-06","ministryContact":"WHITE ALEXANDRINE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2021-07-31","completed":"2019-12-01","initiated":"2014-10-14","ministryContact":"KOHLER URBAN","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false}],"participants":[{"name":"SHELL CANADA PRODUCTS","endDate":"2016-10-03","startDate":"2016-09-09","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"AMET, DOLOR SIT","endDate":"2018-02-10","startDate":"2016-11-13","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"IPSUM","endDate":"2018-07-12","startDate":"2022-09-16","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"AMET, DOLOR SIT","endDate":"2014-11-26","startDate":"2016-08-29","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"AMET, DOLOR SIT","endDate":"2014-02-19","startDate":"2020-04-03","notes":"","roles":["ORGANIZATION"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2018-08-07","notes":"","parcelID":"19850","siteID":"18838","siteRegistry":true}]},{"uuid":"7780d1eb-faec-4533-9a39-cbc1d5782ade","siteID":18150,"address":"18723 Okuneva Drive","latitude":55.0453,"longitude":-127.6661,"lastUpdated":"2015-01-17","city":"Fort Estelle","region":"Thompson-Okanagan","victoriaFile":"26250-20/9191","regionalFile":"N/A","parcelIDs":[3175295,2996023,9404632,7481000,9170989],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2020-12-16","completed":"2014-10-15","initiated":"2016-07-16","ministryContact":"SCHMIDT BRUCE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2018-02-15","completed":"2018-05-06","initiated":"2023-05-22","ministryContact":"CREMIN NORENE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2017-10-25","completed":"2021-02-12","initiated":"2021-04-18","ministryContact":"HAUCK JODIE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2014-02-27","completed":"2023-02-06","initiated":"2017-04-11","ministryContact":"STEHR MAVIS","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":false}],"participants":[{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2018-08-03","startDate":"2016-11-25","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2018-10-15","startDate":"2018-04-11","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"IPSUM","endDate":"2021-08-01","startDate":"2018-06-18","notes":"","roles":["ORGANIZATION"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2017-06-13","notes":"","parcelID":"20712","siteID":"15784","siteRegistry":false},{"dateNoted":"2022-10-13","notes":"","parcelID":"16464","siteID":"18373","siteRegistry":false}]},{"uuid":"a78db1c7-c177-48c3-9a47-36dc6188494d","siteID":18587,"address":"63752 Fernando Orchard","latitude":48.8675,"longitude":-119.9843,"lastUpdated":"2021-07-23","city":"Wardborough","region":"Thompson-Okanagan","victoriaFile":"26250-20/11178","regionalFile":"N/A","parcelIDs":[7310508,4434882,2026222,9418999,592651],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2023-09-07","completed":"2016-11-03","initiated":"2021-10-02","ministryContact":"ZIEME CAMYLLE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2019-04-07","completed":"2021-09-03","initiated":"2023-05-05","ministryContact":"WILDERMAN DAMIEN","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2021-09-02","completed":"2017-02-26","initiated":"2016-10-16","ministryContact":"CHRISTIANSEN HIRAM","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2023-02-02","completed":"2017-05-03","initiated":"2023-08-13","ministryContact":"CARTER LAURIANNE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2021-08-04","completed":"2018-05-23","initiated":"2021-02-04","ministryContact":"BERGNAUM KYLER","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":true}],"participants":[{"name":"SHELL CANADA PRODUCTS","endDate":"2014-11-14","startDate":"2014-09-11","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2017-05-22","startDate":"2021-11-03","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","endDate":"2020-01-21","startDate":"2015-11-14","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","endDate":"2014-12-08","startDate":"2015-03-08","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"AMET, DOLOR SIT","endDate":"2021-05-12","startDate":"2014-08-17","notes":"","roles":["EMPLOYEE"],"siteRegistry":false}],"associatedSites":[{"dateNoted":"2014-06-29","notes":"","parcelID":"19515","siteID":"18001","siteRegistry":true}]},{"uuid":"74524e1f-e3e4-4379-9b2a-a39cedeb4f34","siteID":17898,"address":"52324 Hudson Crest","latitude":56.5456,"longitude":-137.8432,"lastUpdated":"2018-01-28","city":"Tracy","region":" North Coast","victoriaFile":"26250-20/19363","regionalFile":"N/A","parcelIDs":[9073348,9904969,1742137,2064180,977585],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2023-08-05","completed":"2017-12-13","initiated":"2023-02-24","ministryContact":"JAST ELYSE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2017-01-22","completed":"2023-02-16","initiated":"2020-12-31","ministryContact":"BERNHARD LETHA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2016-05-30","completed":"2021-12-30","initiated":"2016-08-14","ministryContact":"FRIESEN BRETT","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false}],"participants":[{"name":"IPSUM","endDate":"2017-03-19","startDate":"2021-02-14","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","endDate":"2022-09-12","startDate":"2023-08-30","notes":"","roles":["ORGANIZATION"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2018-12-07","notes":"","parcelID":"20698","siteID":"19778","siteRegistry":false},{"dateNoted":"2013-12-13","notes":"","parcelID":"17924","siteID":"17567","siteRegistry":true},{"dateNoted":"2023-06-05","notes":"","parcelID":"17507","siteID":"17908","siteRegistry":true}]},{"uuid":"d81a9608-ace1-4dc0-b648-10c135150c97","siteID":20627,"address":"31729 Hackett Freeway","latitude":57.7592,"longitude":-131.1137,"lastUpdated":"2014-01-31","city":"Ratkeville","region":"Vancouver Island/Coast","victoriaFile":"26250-20/10074","regionalFile":"N/A","parcelIDs":[948997,4806015,7923001,726407,729852],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2017-02-23","completed":"2021-07-26","initiated":"2014-10-25","ministryContact":"HANSEN JAIRO","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2017-01-11","completed":"2021-08-31","initiated":"2019-07-02","ministryContact":"VON JERAMY","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2020-04-24","completed":"2016-03-01","initiated":"2019-01-06","ministryContact":"FARRELL ALEXANDRE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":true}],"participants":[{"name":"AMET, DOLOR SIT","endDate":"2019-09-28","startDate":"2022-05-16","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"AMET, DOLOR SIT","endDate":"2014-08-03","startDate":"2016-09-27","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"IPSUM","endDate":"2019-12-23","startDate":"2020-07-31","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"IPSUM","endDate":"2022-09-02","startDate":"2016-05-06","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2018-11-18","startDate":"2017-08-14","notes":"","roles":["ORGANIZATION"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2016-05-02","notes":"","parcelID":"16171","siteID":"17074","siteRegistry":true},{"dateNoted":"2014-01-20","notes":"","parcelID":"20545","siteID":"15917","siteRegistry":false},{"dateNoted":"2017-07-27","notes":"","parcelID":"17949","siteID":"20555","siteRegistry":true}]},{"uuid":"d58e5503-dbd9-4c88-91c5-f7604e4e7c05","siteID":16206,"address":"42701 Kelsi Creek","latitude":55.5753,"longitude":-126.4792,"lastUpdated":"2023-03-29","city":"Port Carterstead","region":"Mainland/Southwest","victoriaFile":"26250-20/952","regionalFile":"N/A","parcelIDs":[986215,1301398,9686702,9791321,4973877],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2023-08-22","completed":"2017-09-02","initiated":"2022-10-20","ministryContact":"PREDOVIC IVORY","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2022-08-30","completed":"2021-12-21","initiated":"2016-01-27","ministryContact":"ADAMS KRISTY","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false}],"participants":[{"name":"IPSUM","endDate":"2019-01-14","startDate":"2023-03-24","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2019-09-15","startDate":"2015-01-28","notes":"","roles":["EMPLOYEE"],"siteRegistry":false}],"associatedSites":[{"dateNoted":"2022-09-09","notes":"","parcelID":"17730","siteID":"16634","siteRegistry":false},{"dateNoted":"2015-04-19","notes":"","parcelID":"19624","siteID":"17260","siteRegistry":false},{"dateNoted":"2022-01-02","notes":"","parcelID":"18333","siteID":"17449","siteRegistry":true}]},{"uuid":"a6f5d1d4-e84f-4cc5-8a17-f5fbc32fba57","siteID":20722,"address":"7486 Witting Greens","latitude":51.236,"longitude":-122.6154,"lastUpdated":"2019-04-21","city":"Weimannfurt","region":"Vancouver Island/Coast","victoriaFile":"26250-20/6466","regionalFile":"N/A","parcelIDs":[4487574,5794278,4063944,9514586,2698213],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2018-06-21","completed":"2013-11-13","initiated":"2022-06-21","ministryContact":"SCHNEIDER REYES","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2021-09-17","completed":"2021-08-04","initiated":"2017-05-10","ministryContact":"DARE KEELEY","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":true}],"participants":[{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2020-01-27","startDate":"2018-05-31","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"AMET, DOLOR SIT","endDate":"2022-03-07","startDate":"2014-09-02","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"AMET, DOLOR SIT","endDate":"2018-02-21","startDate":"2018-04-11","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"AMET, DOLOR SIT","endDate":"2018-02-12","startDate":"2022-01-03","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"IPSUM","endDate":"2021-05-13","startDate":"2014-07-24","notes":"","roles":["ORGANIZATION"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2023-04-01","notes":"","parcelID":"19393","siteID":"18049","siteRegistry":true},{"dateNoted":"2019-06-05","notes":"","parcelID":"20978","siteID":"17692","siteRegistry":true},{"dateNoted":"2021-04-03","notes":"","parcelID":"16084","siteID":"20162","siteRegistry":true}]},{"uuid":"6d4ed0bc-a936-456a-b1be-a39fde2bc567","siteID":20520,"address":"2635 Abbott Shoal","latitude":58.618,"longitude":-128.3292,"lastUpdated":"2014-05-11","city":"Swiftboro","region":"Vancouver Island/Coast","victoriaFile":"26250-20/12273","regionalFile":"N/A","parcelIDs":[1037669,3682758,6837288,5509907,7895798],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2020-04-03","completed":"2017-03-05","initiated":"2016-01-19","ministryContact":"BARTON NELLIE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2020-09-14","completed":"2023-04-08","initiated":"2020-02-11","ministryContact":"POLLICH CHRISTIANA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2023-07-29","completed":"2015-11-18","initiated":"2014-08-21","ministryContact":"BARTOLETTI WILL","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":true}],"participants":[{"name":"AMET, DOLOR SIT","endDate":"2017-12-14","startDate":"2022-04-07","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"AMET, DOLOR SIT","endDate":"2015-04-30","startDate":"2016-11-12","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"AMET, DOLOR SIT","endDate":"2022-10-27","startDate":"2019-09-27","notes":"","roles":["ORGANIZATION"],"siteRegistry":false}],"associatedSites":[{"dateNoted":"2022-07-06","notes":"","parcelID":"20109","siteID":"17012","siteRegistry":true},{"dateNoted":"2015-04-09","notes":"","parcelID":"19496","siteID":"19407","siteRegistry":false}]},{"uuid":"acb765dc-8fbf-449d-b2dc-51c7c53e08ce","siteID":18495,"address":"67825 Marco Streets","latitude":51.9897,"longitude":-127.3366,"lastUpdated":"2019-10-02","city":"East Krystinaborough","region":" North Coast","victoriaFile":"26250-20/8860","regionalFile":"N/A","parcelIDs":[7597740,6622858,3144819,1765580,9783222],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2016-11-15","completed":"2015-01-29","initiated":"2019-11-28","ministryContact":"SCHUPPE ENRICO","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2015-03-02","completed":"2016-02-11","initiated":"2020-04-25","ministryContact":"PARKER CLOYD","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2020-03-20","completed":"2016-07-28","initiated":"2023-06-09","ministryContact":"ROBERTS CHANEL","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":false}],"participants":[{"name":"SHELL CANADA PRODUCTS","endDate":"2018-03-20","startDate":"2022-04-01","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2018-09-06","startDate":"2019-05-09","notes":"","roles":["EMPLOYEE"],"siteRegistry":false}],"associatedSites":[{"dateNoted":"2016-05-06","notes":"","parcelID":"15537","siteID":"18069","siteRegistry":false}]},{"uuid":"f1e5a576-b747-4111-b447-0c26917b1063","siteID":19777,"address":"43391 Jaylin Harbor","latitude":53.9852,"longitude":-131.4538,"lastUpdated":"2016-08-24","city":"Port Laura","region":"Vancouver Island/Coast","victoriaFile":"26250-20/8312","regionalFile":"N/A","parcelIDs":[4914135,4640238,6204221,4000333,1122110],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2020-01-24","completed":"2019-11-25","initiated":"2018-07-21","ministryContact":"ERDMAN ADALINE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2021-07-12","completed":"2020-09-25","initiated":"2017-12-07","ministryContact":"HARBER MARIAN","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2014-05-21","completed":"2018-09-08","initiated":"2014-03-03","ministryContact":"LEHNER MURIEL","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":true}],"participants":[{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2023-01-19","startDate":"2016-03-10","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2017-01-02","startDate":"2021-02-15","notes":"","roles":["EMPLOYEE"],"siteRegistry":false}],"associatedSites":[{"dateNoted":"2020-08-06","notes":"","parcelID":"18337","siteID":"16118","siteRegistry":true},{"dateNoted":"2015-02-05","notes":"","parcelID":"18321","siteID":"19124","siteRegistry":true}]},{"uuid":"dd935091-5178-4939-8416-8009e481c954","siteID":19095,"address":"506 Stark Coves","latitude":52.3731,"longitude":-130.8086,"lastUpdated":"2015-02-21","city":"Blue Springs","region":"Thompson-Okanagan","victoriaFile":"26250-20/14717","regionalFile":"N/A","parcelIDs":[5842166,9571417,5429523,6311578,6512264],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2018-03-12","completed":"2018-07-14","initiated":"2014-11-20","ministryContact":"ROOB ROCIO","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2019-04-17","completed":"2021-12-07","initiated":"2016-03-12","ministryContact":"MURAZIK REVA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2018-01-07","completed":"2016-11-04","initiated":"2015-03-28","ministryContact":"BOYER GUS","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2022-04-12","completed":"2022-03-22","initiated":"2016-01-18","ministryContact":"NIKOLAUS RHODA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2021-02-27","completed":"2020-12-29","initiated":"2022-03-07","ministryContact":"ABERNATHY HARMONY","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":true}],"participants":[{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2014-02-20","startDate":"2018-07-20","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"IPSUM","endDate":"2020-05-28","startDate":"2014-04-30","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"IPSUM","endDate":"2018-04-06","startDate":"2020-01-11","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","endDate":"2019-01-07","startDate":"2016-04-12","notes":"","roles":["ORGANIZATION"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2016-02-11","notes":"","parcelID":"20714","siteID":"16517","siteRegistry":false}]},{"uuid":"c35d1b71-60f0-43ff-8424-886f1cfed57a","siteID":16725,"address":"9702 Toy Lodge","latitude":53.5677,"longitude":-131.359,"lastUpdated":"2022-11-18","city":"Norwalk","region":"Cariboo","victoriaFile":"26250-20/9250","regionalFile":"N/A","parcelIDs":[3587387,5146976,246245,7428619,7071722],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2018-07-03","completed":"2018-03-06","initiated":"2017-03-26","ministryContact":"STIEDEMANN ISABELL","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2015-01-25","completed":"2019-04-06","initiated":"2016-07-21","ministryContact":"COLE BEAU","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2021-08-13","completed":"2019-07-17","initiated":"2015-11-13","ministryContact":"ORTIZ RENEE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2021-09-02","completed":"2019-08-09","initiated":"2020-12-01","ministryContact":"SKILES-FEENEY MURL","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2021-04-09","completed":"2018-04-05","initiated":"2023-05-05","ministryContact":"EBERT ALVINA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":false}],"participants":[{"name":"SHELL CANADA PRODUCTS","endDate":"2016-03-13","startDate":"2016-01-06","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2016-04-16","startDate":"2015-10-03","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"AMET, DOLOR SIT","endDate":"2023-04-22","startDate":"2017-09-09","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2018-05-16","startDate":"2020-08-12","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"IPSUM","endDate":"2014-09-25","startDate":"2022-06-16","notes":"","roles":["ORGANIZATION"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2016-12-19","notes":"","parcelID":"19069","siteID":"18047","siteRegistry":false}]},{"uuid":"827c7bfa-23d0-4254-95e3-2080a225e8c1","siteID":16222,"address":"2945 Allen Tunnel","latitude":57.3944,"longitude":-133.0245,"lastUpdated":"2015-10-26","city":"Georgetown","region":"Cariboo","victoriaFile":"26250-20/14152","regionalFile":"N/A","parcelIDs":[4832935,4628945,4056613,3430160,9695825],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2020-08-25","completed":"2021-06-19","initiated":"2020-12-20","ministryContact":"JOHNSON ADRIENNE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2014-04-08","completed":"2016-07-18","initiated":"2019-01-03","ministryContact":"MRAZ KURTIS","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":true}],"participants":[{"name":"AMET, DOLOR SIT","endDate":"2021-05-09","startDate":"2019-06-19","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2019-09-28","startDate":"2015-12-31","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","endDate":"2019-05-29","startDate":"2016-05-13","notes":"","roles":["EMPLOYEE"],"siteRegistry":false}],"associatedSites":[{"dateNoted":"2017-09-20","notes":"","parcelID":"17243","siteID":"17449","siteRegistry":false}]},{"uuid":"43abcba5-a6b5-4df5-8dd0-deddc31a8d8d","siteID":19233,"address":"512 Treutel Harbor","latitude":51.8086,"longitude":-131.4331,"lastUpdated":"2018-11-26","city":"MacGyverburgh","region":"Cariboo","victoriaFile":"26250-20/10989","regionalFile":"N/A","parcelIDs":[8644763,7115448,2456187,4422795,1453252],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2014-04-15","completed":"2015-06-08","initiated":"2023-07-26","ministryContact":"SCHIMMEL MARTINA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2019-10-28","completed":"2020-01-30","initiated":"2020-05-21","ministryContact":"BAUMBACH TREVION","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2016-01-21","completed":"2019-05-19","initiated":"2015-06-03","ministryContact":"O'KON RIGOBERTO","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":false}],"participants":[{"name":"IPSUM","endDate":"2021-01-23","startDate":"2019-12-06","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"IPSUM","endDate":"2015-06-06","startDate":"2022-03-10","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2023-08-19","startDate":"2015-09-24","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"AMET, DOLOR SIT","endDate":"2017-01-15","startDate":"2019-01-14","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"IPSUM","endDate":"2018-07-17","startDate":"2019-11-07","notes":"","roles":["EMPLOYEE"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2022-06-04","notes":"","parcelID":"19854","siteID":"19075","siteRegistry":false}]},{"uuid":"e313ff01-1589-458d-a83e-50b2519ffce0","siteID":15917,"address":"9677 Fredy Light","latitude":53.182,"longitude":-126.0451,"lastUpdated":"2016-07-09","city":"Candicefield","region":"Mainland/Southwest","victoriaFile":"26250-20/18276","regionalFile":"N/A","parcelIDs":[3390385,1071952,5632610,9158025,8289010],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2014-08-09","completed":"2018-05-28","initiated":"2021-12-12","ministryContact":"WEHNER ZITA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2018-06-06","completed":"2019-01-25","initiated":"2017-09-17","ministryContact":"HUEL THADDEUS","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2022-08-14","completed":"2014-01-16","initiated":"2014-06-02","ministryContact":"DARE ELYSE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":true}],"participants":[{"name":"SHELL CANADA PRODUCTS","endDate":"2022-08-06","startDate":"2023-06-13","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2022-06-09","startDate":"2022-06-29","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2019-07-31","startDate":"2016-12-04","notes":"","roles":["ORGANIZATION"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2019-10-19","notes":"","parcelID":"17956","siteID":"20869","siteRegistry":true},{"dateNoted":"2023-06-04","notes":"","parcelID":"19275","siteID":"17011","siteRegistry":true},{"dateNoted":"2016-08-01","notes":"","parcelID":"19487","siteID":"16986","siteRegistry":false}]},{"uuid":"f93cdc09-ff01-4c75-b7d9-46a2572a51e2","siteID":20641,"address":"58249 Reba Coves","latitude":52.2799,"longitude":-118.1805,"lastUpdated":"2023-02-21","city":"Lake Lynnshire","region":"Kootenay","victoriaFile":"26250-20/8512","regionalFile":"N/A","parcelIDs":[1794596,1528486,5408011,2346442,5549500],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2020-06-17","completed":"2020-04-06","initiated":"2023-01-16","ministryContact":"BAYER BARRY","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2019-09-27","completed":"2018-12-06","initiated":"2017-04-06","ministryContact":"DICKI CLEMENTINE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2018-05-29","completed":"2016-01-31","initiated":"2018-09-16","ministryContact":"CARTER BROCK","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2023-06-25","completed":"2020-05-17","initiated":"2019-04-16","ministryContact":"MOEN ISSAC","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2019-08-05","completed":"2016-12-10","initiated":"2015-11-29","ministryContact":"CARTER DELPHIA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":true}],"participants":[{"name":"SHELL CANADA PRODUCTS","endDate":"2023-07-10","startDate":"2020-01-11","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","endDate":"2014-11-13","startDate":"2020-01-26","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"AMET, DOLOR SIT","endDate":"2019-11-13","startDate":"2016-01-18","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","endDate":"2016-12-20","startDate":"2014-11-05","notes":"","roles":["ORGANIZATION"],"siteRegistry":false}],"associatedSites":[{"dateNoted":"2021-02-21","notes":"","parcelID":"15841","siteID":"16935","siteRegistry":true}]},{"uuid":"e8b2e1eb-d6a0-46ba-84d9-a89649edd4ae","siteID":17151,"address":"187 Jerde Cove","latitude":58.14,"longitude":-122.2097,"lastUpdated":"2015-11-30","city":"Burbank","region":" North Coast","victoriaFile":"26250-20/19322","regionalFile":"N/A","parcelIDs":[4328372,8825104,8387338,272488,1326882],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2020-02-06","completed":"2021-02-19","initiated":"2016-10-19","ministryContact":"REYNOLDS STUART","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2019-10-28","completed":"2015-04-18","initiated":"2015-05-20","ministryContact":"HERMISTON DANNY","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2019-07-24","completed":"2015-04-10","initiated":"2017-10-01","ministryContact":"GLOVER KAY","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":false}],"participants":[{"name":"AMET, DOLOR SIT","endDate":"2016-01-19","startDate":"2015-07-25","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"IPSUM","endDate":"2017-06-08","startDate":"2020-08-06","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","endDate":"2019-03-31","startDate":"2021-09-04","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"AMET, DOLOR SIT","endDate":"2018-04-13","startDate":"2021-09-27","notes":"","roles":["EMPLOYEE"],"siteRegistry":false}],"associatedSites":[{"dateNoted":"2019-08-23","notes":"","parcelID":"16545","siteID":"15775","siteRegistry":true},{"dateNoted":"2017-04-12","notes":"","parcelID":"17864","siteID":"19819","siteRegistry":false},{"dateNoted":"2019-01-03","notes":"","parcelID":"20426","siteID":"18969","siteRegistry":false}]},{"uuid":"8132ad47-ba3d-4b69-aa59-6a6189a0e894","siteID":19589,"address":"60099 Hilll Wells","latitude":53.107,"longitude":-121.118,"lastUpdated":"2013-10-18","city":"Austinland","region":"Mainland/Southwest","victoriaFile":"26250-20/3542","regionalFile":"N/A","parcelIDs":[6558411,8787749,2730018,2868429,2945412],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2018-09-02","completed":"2017-10-04","initiated":"2015-02-22","ministryContact":"HAAG KAY","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2018-09-11","completed":"2013-10-11","initiated":"2017-12-04","ministryContact":"BEIER ASHTYN","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2016-02-15","completed":"2023-07-22","initiated":"2016-10-21","ministryContact":"BRUEN MANUEL","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":false}],"participants":[{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2022-08-22","startDate":"2015-10-14","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"IPSUM","endDate":"2017-05-13","startDate":"2020-11-11","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","endDate":"2019-09-05","startDate":"2022-05-14","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"IPSUM","endDate":"2023-08-09","startDate":"2019-01-12","notes":"","roles":["ORGANIZATION"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2018-05-24","notes":"","parcelID":"17936","siteID":"20858","siteRegistry":false},{"dateNoted":"2016-03-28","notes":"","parcelID":"18183","siteID":"19084","siteRegistry":true},{"dateNoted":"2020-05-25","notes":"","parcelID":"18543","siteID":"19773","siteRegistry":false}]},{"uuid":"6ecef19f-a528-482d-916c-788634b47944","siteID":15919,"address":"89529 Onie Neck","latitude":52.599,"longitude":-137.2404,"lastUpdated":"2023-03-25","city":"Mathiasmouth","region":"Vancouver Island/Coast","victoriaFile":"26250-20/5047","regionalFile":"N/A","parcelIDs":[2773461,2179915,5646421,8422943,576914],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2017-07-11","completed":"2017-02-22","initiated":"2022-05-26","ministryContact":"MCKENZIE META","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2017-02-13","completed":"2018-10-20","initiated":"2018-11-30","ministryContact":"KOELPIN BERNIE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2023-07-27","completed":"2022-10-20","initiated":"2020-03-27","ministryContact":"MURRAY LISA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":true}],"participants":[{"name":"SHELL CANADA PRODUCTS","endDate":"2017-01-22","startDate":"2019-11-30","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2020-04-06","startDate":"2021-04-26","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","endDate":"2020-05-25","startDate":"2016-02-26","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2022-01-23","startDate":"2023-08-11","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"IPSUM","endDate":"2019-11-14","startDate":"2019-11-04","notes":"","roles":["EMPLOYEE"],"siteRegistry":false}],"associatedSites":[{"dateNoted":"2018-09-22","notes":"","parcelID":"20794","siteID":"15609","siteRegistry":false},{"dateNoted":"2019-08-20","notes":"","parcelID":"18631","siteID":"17237","siteRegistry":true},{"dateNoted":"2014-12-21","notes":"","parcelID":"18870","siteID":"16351","siteRegistry":true}]},{"uuid":"a8c175b6-d835-4797-91bf-74aa762727c2","siteID":18771,"address":"388 Abigayle Avenue","latitude":48.256,"longitude":-131.9577,"lastUpdated":"2018-03-14","city":"Downers Grove","region":"Vancouver Island/Coast","victoriaFile":"26250-20/15123","regionalFile":"N/A","parcelIDs":[4324637,4985237,3001840,5344710,6220732],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2021-07-13","completed":"2016-02-25","initiated":"2021-09-14","ministryContact":"CONROY ISAC","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2019-08-31","completed":"2022-01-09","initiated":"2021-09-15","ministryContact":"KUHLMAN AGUSTIN","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false}],"participants":[{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2022-06-28","startDate":"2020-07-17","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"AMET, DOLOR SIT","endDate":"2015-07-27","startDate":"2020-01-02","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"IPSUM","endDate":"2020-10-31","startDate":"2021-11-16","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","endDate":"2014-03-23","startDate":"2020-09-29","notes":"","roles":["EMPLOYEE"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2015-12-04","notes":"","parcelID":"20332","siteID":"19777","siteRegistry":true},{"dateNoted":"2015-06-03","notes":"","parcelID":"20434","siteID":"19037","siteRegistry":true},{"dateNoted":"2023-02-14","notes":"","parcelID":"16178","siteID":"18319","siteRegistry":true}]},{"uuid":"d06dba96-610b-4552-a0b8-1125fa1dd55f","siteID":19380,"address":"431 Conner Bridge","latitude":56.2589,"longitude":-123.2851,"lastUpdated":"2019-10-09","city":"Haagstead","region":"Kootenay","victoriaFile":"26250-20/10368","regionalFile":"N/A","parcelIDs":[5232200,4151889,2376668,7787557,4783937],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2023-09-23","completed":"2020-02-11","initiated":"2014-06-22","ministryContact":"WELCH DARRON","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2013-12-08","completed":"2022-10-27","initiated":"2022-07-27","ministryContact":"DANIEL YESENIA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2022-11-08","completed":"2018-10-01","initiated":"2020-07-03","ministryContact":"MURPHY PRESLEY","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2014-04-12","completed":"2023-08-15","initiated":"2013-10-10","ministryContact":"LABADIE DEDRICK","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2020-09-15","completed":"2015-02-18","initiated":"2018-10-20","ministryContact":"GOODWIN-DOUGLAS JACINTHE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false}],"participants":[{"name":"AMET, DOLOR SIT","endDate":"2019-06-01","startDate":"2014-12-06","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"IPSUM","endDate":"2017-03-23","startDate":"2021-03-03","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"AMET, DOLOR SIT","endDate":"2014-12-20","startDate":"2015-01-21","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"IPSUM","endDate":"2016-03-02","startDate":"2020-02-11","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"IPSUM","endDate":"2021-12-18","startDate":"2021-06-06","notes":"","roles":["EMPLOYEE"],"siteRegistry":false}],"associatedSites":[{"dateNoted":"2016-03-03","notes":"","parcelID":"15275","siteID":"19093","siteRegistry":true}]},{"uuid":"48d3aa0a-6152-4261-9fcb-6e32f205ef14","siteID":19572,"address":"567 Runolfsson Track","latitude":56.2612,"longitude":-137.6122,"lastUpdated":"2022-02-01","city":"Fort Rosemarie","region":" North Coast","victoriaFile":"26250-20/13618","regionalFile":"N/A","parcelIDs":[5836733,7554615,5918876,9790396,9623743],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2015-03-13","completed":"2019-12-30","initiated":"2019-10-23","ministryContact":"MOSCISKI DORIAN","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2015-12-23","completed":"2018-07-29","initiated":"2015-08-27","ministryContact":"RUNOLFSDOTTIR BART","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2021-08-08","completed":"2015-10-12","initiated":"2015-11-26","ministryContact":"FAY NYASIA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2020-04-05","completed":"2015-03-15","initiated":"2020-02-26","ministryContact":"HOWELL NICK","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2018-06-19","completed":"2023-08-04","initiated":"2021-04-28","ministryContact":"TREMBLAY TYRIQUE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":true}],"participants":[{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2014-05-07","startDate":"2019-10-30","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"AMET, DOLOR SIT","endDate":"2023-02-02","startDate":"2023-02-27","notes":"","roles":["EMPLOYEE"],"siteRegistry":false}],"associatedSites":[{"dateNoted":"2015-09-07","notes":"","parcelID":"16823","siteID":"17692","siteRegistry":false},{"dateNoted":"2022-01-03","notes":"","parcelID":"19656","siteID":"20023","siteRegistry":false},{"dateNoted":"2023-09-23","notes":"","parcelID":"15524","siteID":"15855","siteRegistry":false}]},{"uuid":"69df1f2c-f564-4fb0-9058-cc8a407eaa84","siteID":20250,"address":"34741 Grant Club","latitude":54.5821,"longitude":-121.4634,"lastUpdated":"2021-08-28","city":"West Markus","region":"Kootenay","victoriaFile":"26250-20/13755","regionalFile":"N/A","parcelIDs":[1430449,8959150,6801023,1328923,2116242],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2020-06-06","completed":"2017-03-26","initiated":"2018-08-26","ministryContact":"KUPHAL HILARIO","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2022-09-23","completed":"2019-02-10","initiated":"2016-08-15","ministryContact":"TRANTOW EZEQUIEL","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":true}],"participants":[{"name":"IPSUM","endDate":"2020-01-24","startDate":"2015-07-23","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"AMET, DOLOR SIT","endDate":"2015-07-21","startDate":"2016-03-11","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"IPSUM","endDate":"2017-03-24","startDate":"2022-02-13","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"AMET, DOLOR SIT","endDate":"2015-11-03","startDate":"2023-04-02","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2015-06-21","startDate":"2013-11-24","notes":"","roles":["ORGANIZATION"],"siteRegistry":false}],"associatedSites":[{"dateNoted":"2014-09-14","notes":"","parcelID":"17047","siteID":"15361","siteRegistry":false},{"dateNoted":"2016-05-24","notes":"","parcelID":"16035","siteID":"19903","siteRegistry":true},{"dateNoted":"2022-02-18","notes":"","parcelID":"15559","siteID":"18969","siteRegistry":true}]},{"uuid":"b202a0b7-5b37-4f8b-a0dc-6028bbbc0a53","siteID":17304,"address":"1527 Mayert Unions","latitude":49.2068,"longitude":-126.4799,"lastUpdated":"2019-06-21","city":"North Lulu","region":"Mainland/Southwest","victoriaFile":"26250-20/3408","regionalFile":"N/A","parcelIDs":[3740673,5498381,2509728,4085551,8653345],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2014-09-30","completed":"2014-11-07","initiated":"2019-05-15","ministryContact":"FEENEY ALIZA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2018-11-02","completed":"2015-04-18","initiated":"2015-01-10","ministryContact":"KREIGER SHANIYA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2017-01-15","completed":"2020-03-04","initiated":"2017-12-31","ministryContact":"WINTHEISER ADAH","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":false}],"participants":[{"name":"IPSUM","endDate":"2022-05-13","startDate":"2017-07-12","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2014-04-20","startDate":"2016-01-20","notes":"","roles":["ORGANIZATION"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2020-12-20","notes":"","parcelID":"18312","siteID":"16193","siteRegistry":true},{"dateNoted":"2022-07-13","notes":"","parcelID":"17046","siteID":"18026","siteRegistry":false},{"dateNoted":"2023-07-10","notes":"","parcelID":"15377","siteID":"16559","siteRegistry":false}]},{"uuid":"6b62aa3f-69d3-41f4-ab10-c5579523b18a","siteID":20121,"address":"36673 Eula Estates","latitude":52.7732,"longitude":-126.5176,"lastUpdated":"2016-07-06","city":"Richardson","region":"Kootenay","victoriaFile":"26250-20/17939","regionalFile":"N/A","parcelIDs":[1365055,1134021,9323153,3748543,4630316],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2015-02-20","completed":"2018-06-03","initiated":"2018-05-16","ministryContact":"SPORER-HILPERT CARROLL","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2014-11-18","completed":"2019-01-30","initiated":"2022-05-02","ministryContact":"WISOKY MALLORY","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2016-12-18","completed":"2022-09-14","initiated":"2019-12-25","ministryContact":"CONSIDINE MODESTA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2018-07-13","completed":"2021-07-18","initiated":"2021-06-26","ministryContact":"BAUMBACH MALIKA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":true}],"participants":[{"name":"IPSUM","endDate":"2021-09-16","startDate":"2014-09-26","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"AMET, DOLOR SIT","endDate":"2016-10-10","startDate":"2022-10-22","notes":"","roles":["ORGANIZATION"],"siteRegistry":false}],"associatedSites":[{"dateNoted":"2017-03-20","notes":"","parcelID":"18114","siteID":"19777","siteRegistry":true},{"dateNoted":"2022-07-15","notes":"","parcelID":"20945","siteID":"17768","siteRegistry":true},{"dateNoted":"2014-09-13","notes":"","parcelID":"19366","siteID":"20957","siteRegistry":true}]},{"uuid":"d62cd1a7-0585-410c-bf9f-79c2163a8e73","siteID":19699,"address":"15021 Marilyne Trail","latitude":52.2895,"longitude":-124.3934,"lastUpdated":"2022-07-21","city":"Mishawaka","region":"Mainland/Southwest","victoriaFile":"26250-20/6536","regionalFile":"N/A","parcelIDs":[2803868,6456848,4218060,7865947,2214615],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2023-01-27","completed":"2019-04-17","initiated":"2021-11-29","ministryContact":"SCHINNER LULU","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2016-09-19","completed":"2018-10-22","initiated":"2016-02-28","ministryContact":"GRIMES TERESA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2022-05-12","completed":"2018-09-19","initiated":"2015-06-14","ministryContact":"DAVIS JENNINGS","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2020-08-22","completed":"2022-07-30","initiated":"2014-03-24","ministryContact":"BODE CORTNEY","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2023-07-08","completed":"2019-12-15","initiated":"2020-01-20","ministryContact":"FUNK PAXTON","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":true}],"participants":[{"name":"SHELL CANADA PRODUCTS","endDate":"2022-06-08","startDate":"2015-06-21","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"AMET, DOLOR SIT","endDate":"2018-01-28","startDate":"2022-09-08","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"AMET, DOLOR SIT","endDate":"2021-04-10","startDate":"2020-05-16","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","endDate":"2023-03-04","startDate":"2021-03-24","notes":"","roles":["EMPLOYEE"],"siteRegistry":false}],"associatedSites":[{"dateNoted":"2015-03-01","notes":"","parcelID":"18928","siteID":"18080","siteRegistry":true},{"dateNoted":"2015-03-28","notes":"","parcelID":"17497","siteID":"16645","siteRegistry":true}]},{"uuid":"80d96f76-ad65-4ab1-a738-c8e2649fa73b","siteID":15375,"address":"53958 McLaughlin Burg","latitude":49.0346,"longitude":-136.6678,"lastUpdated":"2021-06-27","city":"Danieltown","region":"Kootenay","victoriaFile":"26250-20/19206","regionalFile":"N/A","parcelIDs":[3466719,2749073,2948717,5833809,2956753],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2022-03-21","completed":"2018-11-30","initiated":"2023-05-01","ministryContact":"ROOB GWENDOLYN","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2018-09-21","completed":"2017-04-07","initiated":"2018-01-10","ministryContact":"ROWE SYLVAN","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":true}],"participants":[{"name":"AMET, DOLOR SIT","endDate":"2015-05-29","startDate":"2015-05-03","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2018-04-30","startDate":"2020-02-23","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2014-09-01","startDate":"2015-05-23","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","endDate":"2021-05-20","startDate":"2020-01-10","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"AMET, DOLOR SIT","endDate":"2014-03-08","startDate":"2019-06-20","notes":"","roles":["EMPLOYEE"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2020-06-18","notes":"","parcelID":"20275","siteID":"17304","siteRegistry":false}]},{"uuid":"2627fd34-e3a4-4ad2-8f51-eca86114d5f1","siteID":20323,"address":"9303 Lebsack Crescent","latitude":54.5391,"longitude":-120.4933,"lastUpdated":"2016-04-06","city":"Evelynworth","region":" North Coast","victoriaFile":"26250-20/17133","regionalFile":"N/A","parcelIDs":[3398131,7013258,6028146,2171419,6376056],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2017-03-21","completed":"2022-01-09","initiated":"2019-08-20","ministryContact":"FRANECKI ERA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2017-02-11","completed":"2019-08-20","initiated":"2016-06-14","ministryContact":"BARTOLETTI MADALINE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2021-08-15","completed":"2014-02-22","initiated":"2023-04-18","ministryContact":"FISHER GUS","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":true}],"participants":[{"name":"IPSUM","endDate":"2021-09-13","startDate":"2014-11-16","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","endDate":"2017-09-21","startDate":"2013-12-04","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"AMET, DOLOR SIT","endDate":"2014-02-14","startDate":"2020-05-06","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"AMET, DOLOR SIT","endDate":"2021-05-18","startDate":"2018-02-12","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"AMET, DOLOR SIT","endDate":"2014-12-14","startDate":"2017-09-08","notes":"","roles":["EMPLOYEE"],"siteRegistry":false}],"associatedSites":[{"dateNoted":"2021-07-06","notes":"","parcelID":"15811","siteID":"16916","siteRegistry":true},{"dateNoted":"2022-05-22","notes":"","parcelID":"18921","siteID":"17463","siteRegistry":true},{"dateNoted":"2014-02-14","notes":"","parcelID":"16058","siteID":"15945","siteRegistry":false}]},{"uuid":"553f83fa-9c45-47cc-8261-516fd4076428","siteID":20441,"address":"865 Stark Stravenue","latitude":53.8599,"longitude":-120.0997,"lastUpdated":"2017-09-17","city":"Maple Grove","region":"Kootenay","victoriaFile":"26250-20/13381","regionalFile":"N/A","parcelIDs":[8468904,1836776,8207852,7827285,8726808],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2023-01-05","completed":"2022-04-04","initiated":"2016-02-20","ministryContact":"TERRY MONA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2017-09-06","completed":"2018-09-27","initiated":"2023-05-13","ministryContact":"MURPHY DOMENIC","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2013-10-17","completed":"2021-09-24","initiated":"2016-11-02","ministryContact":"HARVEY KIRK","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2019-08-23","completed":"2015-01-19","initiated":"2022-01-04","ministryContact":"HARVEY JANESSA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":true}],"participants":[{"name":"SHELL CANADA PRODUCTS","endDate":"2021-12-10","startDate":"2018-09-25","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"AMET, DOLOR SIT","endDate":"2023-07-01","startDate":"2021-01-13","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"AMET, DOLOR SIT","endDate":"2019-03-05","startDate":"2014-10-23","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","endDate":"2014-07-22","startDate":"2017-07-10","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"AMET, DOLOR SIT","endDate":"2021-04-10","startDate":"2019-02-20","notes":"","roles":["ORGANIZATION"],"siteRegistry":false}],"associatedSites":[{"dateNoted":"2013-12-09","notes":"","parcelID":"18867","siteID":"15695","siteRegistry":true}]},{"uuid":"a14f7c70-982b-4730-bd8e-718d948a7511","siteID":18838,"address":"7484 Strosin Course","latitude":52.3405,"longitude":-130.7358,"lastUpdated":"2014-02-23","city":"West Demarcus","region":"Vancouver Island/Coast","victoriaFile":"26250-20/8678","regionalFile":"N/A","parcelIDs":[1092714,6615449,3550775,4309529,2741028],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2022-01-27","completed":"2020-03-24","initiated":"2019-01-09","ministryContact":"KOHLER KAMERON","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2022-09-13","completed":"2019-09-11","initiated":"2021-09-20","ministryContact":"REICHERT JESUS","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2020-12-16","completed":"2014-06-25","initiated":"2019-03-11","ministryContact":"SWIFT-KULAS REBECCA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2020-07-16","completed":"2022-02-08","initiated":"2023-01-03","ministryContact":"FRANECKI BRANDT","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":true}],"participants":[{"name":"AMET, DOLOR SIT","endDate":"2015-10-10","startDate":"2015-06-13","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","endDate":"2015-04-20","startDate":"2014-04-16","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"IPSUM","endDate":"2023-04-14","startDate":"2014-11-21","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"IPSUM","endDate":"2020-06-22","startDate":"2016-07-28","notes":"","roles":["ORGANIZATION"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2021-03-03","notes":"","parcelID":"20443","siteID":"15945","siteRegistry":true},{"dateNoted":"2016-02-15","notes":"","parcelID":"16203","siteID":"18587","siteRegistry":true},{"dateNoted":"2017-05-15","notes":"","parcelID":"18737","siteID":"19572","siteRegistry":true}]},{"uuid":"92318901-437d-40fd-a100-01190d587cf1","siteID":20353,"address":"44043 Morissette Neck","latitude":49.2447,"longitude":-127.6819,"lastUpdated":"2020-05-22","city":"West Anastasiafurt","region":"Vancouver Island/Coast","victoriaFile":"26250-20/10323","regionalFile":"N/A","parcelIDs":[4222985,5510589,1349427,233980,3041950],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2020-02-01","completed":"2020-09-24","initiated":"2022-02-17","ministryContact":"HOWE ABDULLAH","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2015-02-28","completed":"2017-11-28","initiated":"2019-04-22","ministryContact":"JAST ANNA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2020-05-26","completed":"2017-03-08","initiated":"2017-07-31","ministryContact":"WISOZK JUSTYN","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2019-05-19","completed":"2021-10-24","initiated":"2014-05-09","ministryContact":"HETTINGER SAMMIE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":true}],"participants":[{"name":"IPSUM","endDate":"2018-11-15","startDate":"2015-09-15","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2020-05-18","startDate":"2017-12-16","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2017-09-23","startDate":"2017-06-20","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"IPSUM","endDate":"2021-05-06","startDate":"2023-09-09","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","endDate":"2020-12-14","startDate":"2016-12-31","notes":"","roles":["ORGANIZATION"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2021-10-16","notes":"","parcelID":"20893","siteID":"17795","siteRegistry":true},{"dateNoted":"2015-10-09","notes":"","parcelID":"19990","siteID":"17935","siteRegistry":true}]},{"uuid":"ad6699fd-d62b-4da7-8e1c-74c47ff5e03f","siteID":20957,"address":"481 Nicolas Mall","latitude":52.9553,"longitude":-130.7153,"lastUpdated":"2020-05-11","city":"West Mattboro","region":"Mainland/Southwest","victoriaFile":"26250-20/17812","regionalFile":"N/A","parcelIDs":[9973402,1048826,8597974,1819992,1550186],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2018-10-28","completed":"2016-05-15","initiated":"2019-05-12","ministryContact":"BERGSTROM-KIEHN AILEEN","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2022-07-27","completed":"2015-12-26","initiated":"2021-07-07","ministryContact":"SAUER KITTY","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2014-01-20","completed":"2018-09-15","initiated":"2017-05-26","ministryContact":"ORTIZ KOBE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2015-12-13","completed":"2023-06-01","initiated":"2014-01-24","ministryContact":"BARTOLETTI NICOLE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":true}],"participants":[{"name":"SHELL CANADA PRODUCTS","endDate":"2018-06-19","startDate":"2014-12-02","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2020-03-18","startDate":"2021-08-13","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"IPSUM","endDate":"2015-03-28","startDate":"2022-08-01","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2023-09-01","startDate":"2021-04-15","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","endDate":"2014-11-30","startDate":"2013-11-26","notes":"","roles":["EMPLOYEE"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2022-05-24","notes":"","parcelID":"16103","siteID":"15229","siteRegistry":false},{"dateNoted":"2018-12-20","notes":"","parcelID":"17051","siteID":"18695","siteRegistry":true},{"dateNoted":"2020-01-07","notes":"","parcelID":"18187","siteID":"17012","siteRegistry":false}]},{"uuid":"a22a0ee7-5343-4db9-ba89-4f43951f17fe","siteID":19669,"address":"7102 Brain Ramp","latitude":51.2112,"longitude":-132.3599,"lastUpdated":"2018-07-14","city":"West Arvidport","region":"Thompson-Okanagan","victoriaFile":"26250-20/4047","regionalFile":"N/A","parcelIDs":[754790,3806529,4375779,4372679,9077601],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2013-10-25","completed":"2021-05-22","initiated":"2020-01-04","ministryContact":"MOSCISKI-RUTHERFORD LEONARD","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2022-04-08","completed":"2020-11-20","initiated":"2016-08-10","ministryContact":"CRONA MALINDA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2015-10-18","completed":"2014-08-11","initiated":"2014-11-27","ministryContact":"CUMMINGS MINERVA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2019-12-30","completed":"2017-07-10","initiated":"2018-09-30","ministryContact":"KIRLIN LAILA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2015-02-17","completed":"2019-06-29","initiated":"2016-04-15","ministryContact":"HARBER JASEN","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":true}],"participants":[{"name":"SHELL CANADA PRODUCTS","endDate":"2018-08-08","startDate":"2022-08-28","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2023-01-11","startDate":"2016-11-26","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"IPSUM","endDate":"2016-12-18","startDate":"2017-03-21","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"AMET, DOLOR SIT","endDate":"2018-07-13","startDate":"2017-06-03","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"IPSUM","endDate":"2018-04-25","startDate":"2022-02-27","notes":"","roles":["EMPLOYEE"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2015-09-26","notes":"","parcelID":"15285","siteID":"17151","siteRegistry":false},{"dateNoted":"2023-08-30","notes":"","parcelID":"17441","siteID":"15457","siteRegistry":false}]},{"uuid":"5a2d7b12-9de1-4f0f-b86d-8af56058d374","siteID":16673,"address":"291 Cloyd Roads","latitude":49.3852,"longitude":-121.6286,"lastUpdated":"2022-10-31","city":"Augusta-Richmond County","region":"Kootenay","victoriaFile":"26250-20/19155","regionalFile":"N/A","parcelIDs":[3156802,4468713,9888926,8147097,1086488],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2015-02-15","completed":"2017-01-15","initiated":"2019-03-19","ministryContact":"COLLIER TAD","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2017-10-13","completed":"2022-12-29","initiated":"2015-03-10","ministryContact":"HARRIS AYLIN","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2019-05-12","completed":"2016-01-18","initiated":"2015-05-17","ministryContact":"TREUTEL LEOPOLDO","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2015-07-23","completed":"2016-09-03","initiated":"2015-06-09","ministryContact":"FEEST COLBY","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2020-05-22","completed":"2013-10-23","initiated":"2016-01-04","ministryContact":"FISHER RODOLFO","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false}],"participants":[{"name":"AMET, DOLOR SIT","endDate":"2019-10-04","startDate":"2019-12-10","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2021-04-25","startDate":"2017-06-11","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2015-03-15","startDate":"2020-06-17","notes":"","roles":["ORGANIZATION"],"siteRegistry":false}],"associatedSites":[{"dateNoted":"2021-08-04","notes":"","parcelID":"18556","siteID":"19084","siteRegistry":true}]},{"uuid":"648643b4-262e-41fc-bcdc-1ba09d51827c","siteID":20773,"address":"43071 O'Keefe Rapid","latitude":54.387,"longitude":-138.3217,"lastUpdated":"2014-07-24","city":"Martashire","region":"Mainland/Southwest","victoriaFile":"26250-20/7776","regionalFile":"N/A","parcelIDs":[9815147,8131291,4411533,4623942,8623466],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2016-01-20","completed":"2019-05-14","initiated":"2018-11-10","ministryContact":"LANGOSH CORENE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2015-07-07","completed":"2020-09-03","initiated":"2019-05-17","ministryContact":"HARBER ABIGAIL","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2015-10-09","completed":"2015-11-29","initiated":"2020-07-16","ministryContact":"JOHNS RON","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2016-11-02","completed":"2020-03-21","initiated":"2015-11-05","ministryContact":"DAUGHERTY WILTON","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false}],"participants":[{"name":"IPSUM","endDate":"2015-12-09","startDate":"2015-04-29","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","endDate":"2018-04-20","startDate":"2023-06-15","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","endDate":"2019-06-12","startDate":"2018-10-29","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"AMET, DOLOR SIT","endDate":"2018-03-17","startDate":"2020-07-17","notes":"","roles":["EMPLOYEE"],"siteRegistry":false}],"associatedSites":[{"dateNoted":"2016-02-26","notes":"","parcelID":"18614","siteID":"15656","siteRegistry":false},{"dateNoted":"2014-09-21","notes":"","parcelID":"17986","siteID":"19699","siteRegistry":true},{"dateNoted":"2015-05-19","notes":"","parcelID":"17425","siteID":"19796","siteRegistry":false}]},{"uuid":"13fc2f1d-4acd-41b5-abdc-2eeea2c75807","siteID":15695,"address":"1143 Gibson Branch","latitude":56.7179,"longitude":-135.2911,"lastUpdated":"2023-05-04","city":"Rancho Palos Verdes","region":"Thompson-Okanagan","victoriaFile":"26250-20/8533","regionalFile":"N/A","parcelIDs":[3342807,2832303,3357844,8770942,8258208],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2022-02-15","completed":"2022-11-04","initiated":"2014-08-26","ministryContact":"LOWE AMARA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2022-10-27","completed":"2017-02-27","initiated":"2018-11-07","ministryContact":"STANTON ALIYAH","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2023-05-30","completed":"2020-05-07","initiated":"2017-06-17","ministryContact":"ONDRICKA MADELYN","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":false}],"participants":[{"name":"IPSUM","endDate":"2023-05-24","startDate":"2014-01-29","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"IPSUM","endDate":"2014-01-26","startDate":"2014-01-12","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"IPSUM","endDate":"2016-03-08","startDate":"2022-11-02","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"AMET, DOLOR SIT","endDate":"2020-02-27","startDate":"2015-11-01","notes":"","roles":["ORGANIZATION"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2018-12-30","notes":"","parcelID":"20707","siteID":"20211","siteRegistry":true},{"dateNoted":"2019-10-04","notes":"","parcelID":"18872","siteID":"16312","siteRegistry":false},{"dateNoted":"2015-07-06","notes":"","parcelID":"18656","siteID":"20869","siteRegistry":false}]},{"uuid":"70a15884-9f89-4e22-806a-2a3fdc41a595","siteID":16935,"address":"94239 O'Keefe Ridges","latitude":48.9139,"longitude":-133.3162,"lastUpdated":"2022-05-25","city":"North Isaiberg","region":"Vancouver Island/Coast","victoriaFile":"26250-20/18132","regionalFile":"N/A","parcelIDs":[6442159,9473650,2196498,1429551,6943597],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2013-10-01","completed":"2016-03-05","initiated":"2016-05-11","ministryContact":"CUMMINGS DELLA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2017-11-09","completed":"2015-12-25","initiated":"2019-08-08","ministryContact":"ANKUNDING CAROLE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":true}],"participants":[{"name":"SHELL CANADA PRODUCTS","endDate":"2019-06-03","startDate":"2019-10-04","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2022-11-03","startDate":"2020-07-19","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"AMET, DOLOR SIT","endDate":"2020-07-18","startDate":"2016-05-13","notes":"","roles":["EMPLOYEE"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2017-11-21","notes":"","parcelID":"18974","siteID":"17260","siteRegistry":false}]},{"uuid":"e1424391-1602-49f4-9923-6b464ab44d69","siteID":18080,"address":"927 Edd Inlet","latitude":58.7303,"longitude":-132.6962,"lastUpdated":"2023-07-03","city":"New Fredy","region":"Vancouver Island/Coast","victoriaFile":"26250-20/4286","regionalFile":"N/A","parcelIDs":[4387933,2723417,3395001,620620,9792215],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2018-07-17","completed":"2018-07-12","initiated":"2014-10-24","ministryContact":"NIKOLAUS THELMA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2021-11-14","completed":"2014-10-18","initiated":"2019-08-27","ministryContact":"JOHNSTON JANY","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2020-10-13","completed":"2019-04-25","initiated":"2013-11-07","ministryContact":"FEENEY CAROLINA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":true}],"participants":[{"name":"SHELL CANADA PRODUCTS","endDate":"2021-04-09","startDate":"2015-04-28","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"IPSUM","endDate":"2022-03-06","startDate":"2016-04-08","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2019-04-30","startDate":"2016-11-08","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2015-07-23","startDate":"2018-11-13","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"AMET, DOLOR SIT","endDate":"2015-11-30","startDate":"2020-02-20","notes":"","roles":["EMPLOYEE"],"siteRegistry":false}],"associatedSites":[{"dateNoted":"2013-12-01","notes":"","parcelID":"18775","siteID":"15919","siteRegistry":true},{"dateNoted":"2014-12-16","notes":"","parcelID":"18457","siteID":"20957","siteRegistry":false},{"dateNoted":"2017-09-26","notes":"","parcelID":"18979","siteID":"15543","siteRegistry":true}]},{"uuid":"da6cf77d-ac87-4076-bc1a-2ed83d09f3c0","siteID":16814,"address":"670 Zemlak Dam","latitude":52.7848,"longitude":-134.7527,"lastUpdated":"2021-06-06","city":"South Sarahberg","region":"Kootenay","victoriaFile":"26250-20/15388","regionalFile":"N/A","parcelIDs":[8164600,2437399,4985247,614088,642230],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2020-09-09","completed":"2022-12-31","initiated":"2023-03-23","ministryContact":"QUIGLEY KATELYNN","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2018-06-05","completed":"2017-12-17","initiated":"2019-09-02","ministryContact":"BERNHARD OWEN","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2015-05-26","completed":"2014-07-12","initiated":"2019-03-16","ministryContact":"FERRY JABARI","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2019-05-24","completed":"2015-12-10","initiated":"2018-01-23","ministryContact":"WISOKY KEEGAN","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":true}],"participants":[{"name":"SHELL CANADA PRODUCTS","endDate":"2017-08-09","startDate":"2018-09-10","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","endDate":"2020-10-22","startDate":"2015-11-12","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2013-11-11","startDate":"2016-10-20","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"AMET, DOLOR SIT","endDate":"2016-12-27","startDate":"2016-11-13","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","endDate":"2019-01-05","startDate":"2020-09-27","notes":"","roles":["ORGANIZATION"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2017-10-27","notes":"","parcelID":"16115","siteID":"19087","siteRegistry":false},{"dateNoted":"2023-07-06","notes":"","parcelID":"19925","siteID":"17304","siteRegistry":false}]},{"uuid":"0e7df480-4e0c-495f-9bdd-90ab21c685e2","siteID":16358,"address":"453 Dariana Wall","latitude":51.3633,"longitude":-129.3411,"lastUpdated":"2020-06-11","city":"Parma","region":" North Coast","victoriaFile":"26250-20/7651","regionalFile":"N/A","parcelIDs":[3221205,6085943,4328061,5768215,7722132],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2017-08-11","completed":"2017-07-10","initiated":"2019-02-25","ministryContact":"BARTOLETTI ULICES","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2022-10-22","completed":"2017-08-01","initiated":"2019-05-19","ministryContact":"DARE ANIBAL","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2016-09-26","completed":"2021-01-07","initiated":"2014-12-28","ministryContact":"FEENEY OLAF","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2016-11-11","completed":"2022-06-07","initiated":"2021-05-01","ministryContact":"WOLFF ALLEN","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":false}],"participants":[{"name":"IPSUM","endDate":"2016-06-11","startDate":"2020-10-14","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","endDate":"2014-05-26","startDate":"2014-09-21","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","endDate":"2021-02-18","startDate":"2014-04-16","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2022-10-27","startDate":"2022-08-14","notes":"","roles":["ORGANIZATION"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2014-08-18","notes":"","parcelID":"16432","siteID":"20443","siteRegistry":false}]},{"uuid":"05d0ea04-d49a-4570-acc2-c222949e2073","siteID":16228,"address":"7310 Randall Mountain","latitude":52.7593,"longitude":-119.4251,"lastUpdated":"2019-07-24","city":"Lake Delfinastad","region":"Cariboo","victoriaFile":"26250-20/13206","regionalFile":"N/A","parcelIDs":[3603920,7748186,3954932,5869004,8839593],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2017-02-10","completed":"2018-01-20","initiated":"2020-01-01","ministryContact":"O'CONNELL JAMMIE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2013-11-24","completed":"2022-11-24","initiated":"2022-01-25","ministryContact":"CHRISTIANSEN MYRA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2015-08-09","completed":"2014-06-13","initiated":"2017-03-27","ministryContact":"PREDOVIC NEVA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":true}],"participants":[{"name":"SHELL CANADA PRODUCTS","endDate":"2019-07-31","startDate":"2015-09-24","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2023-05-24","startDate":"2022-11-19","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"AMET, DOLOR SIT","endDate":"2019-05-02","startDate":"2020-02-24","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"IPSUM","endDate":"2017-02-11","startDate":"2018-09-06","notes":"","roles":["ORGANIZATION"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2023-05-28","notes":"","parcelID":"19501","siteID":"20833","siteRegistry":false}]},{"uuid":"8aaa0cc4-ee00-4da7-977c-f4d3d9bcb80f","siteID":16133,"address":"1331 Cassin Motorway","latitude":53.2407,"longitude":-135.6348,"lastUpdated":"2022-11-28","city":"Douglaschester","region":"Vancouver Island/Coast","victoriaFile":"26250-20/15381","regionalFile":"N/A","parcelIDs":[7530696,1587878,5160817,5826632,8064287],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2017-07-27","completed":"2017-03-23","initiated":"2023-01-10","ministryContact":"BUCKRIDGE NORENE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2015-04-02","completed":"2022-11-18","initiated":"2021-08-18","ministryContact":"STREICH LARUE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2021-02-14","completed":"2021-04-02","initiated":"2022-04-04","ministryContact":"MCCLURE TORREY","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2017-02-02","completed":"2018-11-08","initiated":"2019-12-20","ministryContact":"SCHMIDT KASSANDRA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2017-11-12","completed":"2021-04-30","initiated":"2019-08-22","ministryContact":"FERRY HALIE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":true}],"participants":[{"name":"IPSUM","endDate":"2018-01-12","startDate":"2015-01-09","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","endDate":"2014-01-05","startDate":"2018-07-16","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","endDate":"2023-02-18","startDate":"2017-05-12","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"AMET, DOLOR SIT","endDate":"2022-07-23","startDate":"2018-01-29","notes":"","roles":["EMPLOYEE"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2017-06-03","notes":"","parcelID":"19721","siteID":"19351","siteRegistry":false},{"dateNoted":"2021-03-07","notes":"","parcelID":"19282","siteID":"18587","siteRegistry":false}]},{"uuid":"4896cd4c-83e7-436e-9429-ce7bf5e76a7f","siteID":19457,"address":"843 Macey Parkways","latitude":48.8272,"longitude":-132.3948,"lastUpdated":"2020-12-03","city":"Handville","region":"Vancouver Island/Coast","victoriaFile":"26250-20/11649","regionalFile":"N/A","parcelIDs":[315921,161983,6794481,9573279,2744601],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2021-03-29","completed":"2021-02-13","initiated":"2014-05-17","ministryContact":"KOSS KATELIN","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2022-04-22","completed":"2023-09-11","initiated":"2019-07-29","ministryContact":"SCHADEN HAYLEE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2022-08-25","completed":"2014-04-07","initiated":"2022-09-06","ministryContact":"ALTENWERTH MARISOL","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2018-04-18","completed":"2015-01-12","initiated":"2020-10-11","ministryContact":"BAHRINGER CAMILLE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2015-08-18","completed":"2019-10-13","initiated":"2022-09-16","ministryContact":"TRANTOW GIDEON","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":true}],"participants":[{"name":"IPSUM","endDate":"2019-08-16","startDate":"2021-05-08","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","endDate":"2023-02-26","startDate":"2015-09-27","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2022-12-19","startDate":"2023-08-24","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","endDate":"2021-11-09","startDate":"2017-07-15","notes":"","roles":["ORGANIZATION"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2022-08-08","notes":"","parcelID":"18577","siteID":"17203","siteRegistry":true},{"dateNoted":"2020-01-09","notes":"","parcelID":"15571","siteID":"16645","siteRegistry":false}]},{"uuid":"01c6ceee-f856-4fea-b783-d010e66ab029","siteID":16796,"address":"415 Corkery Lock","latitude":53.7381,"longitude":-137.6596,"lastUpdated":"2014-11-25","city":"Damianworth","region":"Cariboo","victoriaFile":"26250-20/15027","regionalFile":"N/A","parcelIDs":[5089821,5892873,1359939,4897455,5205174],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2023-07-22","completed":"2017-10-13","initiated":"2016-10-17","ministryContact":"GISLASON-ABSHIRE VLADIMIR","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2018-10-18","completed":"2018-05-14","initiated":"2016-12-30","ministryContact":"PARKER ALLAN","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2017-01-20","completed":"2020-05-03","initiated":"2017-10-25","ministryContact":"KRIS DULCE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2019-09-15","completed":"2017-11-20","initiated":"2023-06-18","ministryContact":"METZ LUCAS","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2018-08-21","completed":"2015-09-25","initiated":"2015-11-18","ministryContact":"KUHIC LILLIANA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":true}],"participants":[{"name":"IPSUM","endDate":"2015-03-25","startDate":"2019-05-02","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"AMET, DOLOR SIT","endDate":"2014-03-13","startDate":"2015-06-25","notes":"","roles":["EMPLOYEE"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2014-08-23","notes":"","parcelID":"16214","siteID":"16736","siteRegistry":true}]},{"uuid":"8fc4d6e1-f0d6-423e-87f1-2f76d8073eac","siteID":19728,"address":"4187 Kevon Mill","latitude":51.6467,"longitude":-137.1424,"lastUpdated":"2014-05-06","city":"New Dominiquehaven","region":"Kootenay","victoriaFile":"26250-20/8477","regionalFile":"N/A","parcelIDs":[4472838,6338782,1767861,2115508,436045],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2018-06-01","completed":"2014-10-13","initiated":"2016-05-12","ministryContact":"TORPHY DANE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2015-12-20","completed":"2016-07-23","initiated":"2020-01-02","ministryContact":"SCHUPPE KILEY","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2020-03-05","completed":"2015-02-12","initiated":"2016-08-03","ministryContact":"BOGAN DANIKA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2015-05-25","completed":"2021-11-14","initiated":"2017-02-23","ministryContact":"SPENCER EVERETTE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false}],"participants":[{"name":"SHELL CANADA PRODUCTS","endDate":"2016-10-10","startDate":"2022-08-29","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"IPSUM","endDate":"2015-06-16","startDate":"2014-02-01","notes":"","roles":["EMPLOYEE"],"siteRegistry":false}],"associatedSites":[{"dateNoted":"2016-10-20","notes":"","parcelID":"20457","siteID":"19740","siteRegistry":false},{"dateNoted":"2015-04-11","notes":"","parcelID":"20221","siteID":"17394","siteRegistry":true},{"dateNoted":"2022-10-25","notes":"","parcelID":"17235","siteID":"17057","siteRegistry":true}]},{"uuid":"f4bc52bb-e406-49b5-ba70-98e0d887f6a5","siteID":18497,"address":"19324 Jules Crossroad","latitude":48.4519,"longitude":-127.6226,"lastUpdated":"2013-12-14","city":"Maurinefort","region":"Mainland/Southwest","victoriaFile":"26250-20/3973","regionalFile":"N/A","parcelIDs":[1315602,6754216,1268104,2157161,4483903],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2016-08-14","completed":"2022-06-20","initiated":"2014-03-04","ministryContact":"PFANNERSTILL EDMUND","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2022-06-18","completed":"2019-12-02","initiated":"2020-12-17","ministryContact":"BECKER ADALBERTO","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2022-03-03","completed":"2016-03-05","initiated":"2015-01-04","ministryContact":"BOTSFORD NICKOLAS","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2021-09-29","completed":"2019-08-17","initiated":"2022-10-28","ministryContact":"WINTHEISER HARDY","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":true}],"participants":[{"name":"IPSUM","endDate":"2014-03-31","startDate":"2017-02-21","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2015-07-28","startDate":"2020-04-07","notes":"","roles":["ORGANIZATION"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2017-06-03","notes":"","parcelID":"15947","siteID":"15656","siteRegistry":true},{"dateNoted":"2021-08-01","notes":"","parcelID":"20194","siteID":"17036","siteRegistry":true},{"dateNoted":"2014-10-19","notes":"","parcelID":"18065","siteID":"16193","siteRegistry":true}]},{"uuid":"e6db2523-0781-42f2-b4ef-b5a3ee447bda","siteID":19741,"address":"745 Jayce Ville","latitude":50.3024,"longitude":-118.4011,"lastUpdated":"2014-10-24","city":"New Reggie","region":"Vancouver Island/Coast","victoriaFile":"26250-20/2508","regionalFile":"N/A","parcelIDs":[4226859,6158872,9141372,1910124,5711430],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2020-09-07","completed":"2018-12-31","initiated":"2020-12-05","ministryContact":"CARTWRIGHT ALTHEA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2023-09-17","completed":"2023-01-11","initiated":"2015-12-05","ministryContact":"WEHNER CARLOTTA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2018-08-06","completed":"2021-12-17","initiated":"2014-10-07","ministryContact":"KONOPELSKI DEVAN","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2023-01-21","completed":"2016-05-07","initiated":"2021-11-18","ministryContact":"TOY KASSANDRA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2017-05-08","completed":"2023-05-22","initiated":"2022-10-19","ministryContact":"OSINSKI JUSTEN","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":false}],"participants":[{"name":"SHELL CANADA PRODUCTS","endDate":"2022-04-19","startDate":"2019-12-02","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2020-02-02","startDate":"2017-02-10","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","endDate":"2020-09-14","startDate":"2015-10-17","notes":"","roles":["EMPLOYEE"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2015-05-19","notes":"","parcelID":"16231","siteID":"17011","siteRegistry":true},{"dateNoted":"2019-03-13","notes":"","parcelID":"19484","siteID":"19093","siteRegistry":false}]},{"uuid":"2da3f43b-facb-4c06-80d3-3a3bb806ecfd","siteID":15495,"address":"550 Bradford Via","latitude":54.6787,"longitude":-131.1878,"lastUpdated":"2023-09-09","city":"West Arnoldtown","region":"Mainland/Southwest","victoriaFile":"26250-20/9566","regionalFile":"N/A","parcelIDs":[4382037,6861572,7891637,6323807,5951509],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2018-11-02","completed":"2017-09-04","initiated":"2014-10-31","ministryContact":"BARTELL-GERLACH KILEY","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2014-02-04","completed":"2017-02-15","initiated":"2020-10-29","ministryContact":"LEMKE BERTHA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2021-12-09","completed":"2017-01-04","initiated":"2016-06-08","ministryContact":"RAYNOR GARFIELD","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2018-06-10","completed":"2021-05-26","initiated":"2017-12-13","ministryContact":"RUTHERFORD MARIA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":true}],"participants":[{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2019-01-23","startDate":"2020-06-22","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"IPSUM","endDate":"2016-06-16","startDate":"2020-03-20","notes":"","roles":["EMPLOYEE"],"siteRegistry":false}],"associatedSites":[{"dateNoted":"2022-12-25","notes":"","parcelID":"20080","siteID":"15792","siteRegistry":false},{"dateNoted":"2021-04-05","notes":"","parcelID":"16957","siteID":"19409","siteRegistry":true},{"dateNoted":"2014-04-22","notes":"","parcelID":"19300","siteID":"16723","siteRegistry":false}]},{"uuid":"983f0ace-5a36-48d1-85b5-4d03c733dd81","siteID":17280,"address":"83495 Bergstrom Squares","latitude":55.976,"longitude":-127.8275,"lastUpdated":"2023-02-12","city":"Maggioton","region":"Kootenay","victoriaFile":"26250-20/1861","regionalFile":"N/A","parcelIDs":[6434344,8324651,7921304,306394,5111694],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2013-10-03","completed":"2013-10-02","initiated":"2018-02-12","ministryContact":"WOLFF HECTOR","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2016-10-28","completed":"2022-12-04","initiated":"2020-07-14","ministryContact":"STROSIN CHRISTOPHE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":true}],"participants":[{"name":"AMET, DOLOR SIT","endDate":"2014-05-11","startDate":"2015-03-25","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"IPSUM","endDate":"2020-06-03","startDate":"2014-10-08","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"AMET, DOLOR SIT","endDate":"2016-04-20","startDate":"2022-12-17","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","endDate":"2016-06-08","startDate":"2020-06-08","notes":"","roles":["ORGANIZATION"],"siteRegistry":false}],"associatedSites":[{"dateNoted":"2014-04-13","notes":"","parcelID":"16645","siteID":"17561","siteRegistry":true}]},{"uuid":"6000e622-264c-4e59-9ffb-a4ef031a4480","siteID":17914,"address":"5187 Jazmyne Glens","latitude":50.3944,"longitude":-135.1402,"lastUpdated":"2015-12-13","city":"San Ramon","region":"Mainland/Southwest","victoriaFile":"26250-20/10942","regionalFile":"N/A","parcelIDs":[6563048,9309411,6457112,1846921,5075690],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2014-11-07","completed":"2022-04-05","initiated":"2023-03-14","ministryContact":"PAGAC JASEN","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2017-01-01","completed":"2023-06-07","initiated":"2015-06-29","ministryContact":"WILL ANGELITA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2021-08-09","completed":"2018-10-02","initiated":"2020-01-15","ministryContact":"SHANAHAN DORRIS","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":false}],"participants":[{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2018-01-31","startDate":"2023-09-02","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"AMET, DOLOR SIT","endDate":"2018-12-09","startDate":"2018-06-28","notes":"","roles":["EMPLOYEE"],"siteRegistry":false}],"associatedSites":[{"dateNoted":"2014-12-02","notes":"","parcelID":"16902","siteID":"20017","siteRegistry":true}]},{"uuid":"17dd78c3-e02d-4201-b83b-d6c9f3da3ef8","siteID":15822,"address":"345 Goyette Mill","latitude":49.379,"longitude":-130.511,"lastUpdated":"2016-01-29","city":"Port Cadeville","region":"Mainland/Southwest","victoriaFile":"26250-20/15745","regionalFile":"N/A","parcelIDs":[6387234,6363161,1158289,3669411,5138544],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2019-01-29","completed":"2016-03-13","initiated":"2019-07-17","ministryContact":"MOORE LEOLA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2019-06-18","completed":"2020-02-03","initiated":"2017-06-12","ministryContact":"DIBBERT RICKEY","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2019-03-05","completed":"2022-05-11","initiated":"2022-12-13","ministryContact":"LEDNER EWALD","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":false}],"participants":[{"name":"SHELL CANADA PRODUCTS","endDate":"2015-10-10","startDate":"2020-04-21","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"IPSUM","endDate":"2013-12-23","startDate":"2013-12-26","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"AMET, DOLOR SIT","endDate":"2020-04-22","startDate":"2022-03-15","notes":"","roles":["ORGANIZATION"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2016-01-04","notes":"","parcelID":"16485","siteID":"19072","siteRegistry":true},{"dateNoted":"2023-06-09","notes":"","parcelID":"19779","siteID":"16986","siteRegistry":true}]},{"uuid":"d0c07582-1820-4e0d-9d3c-07fe6061497b","siteID":17275,"address":"849 Gerhold Trace","latitude":51.5662,"longitude":-123.5947,"lastUpdated":"2020-06-25","city":"Kshlerincester","region":"Cariboo","victoriaFile":"26250-20/13758","regionalFile":"N/A","parcelIDs":[6691773,9214706,6946326,2230182,8318527],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2015-12-11","completed":"2020-01-15","initiated":"2017-02-19","ministryContact":"REINGER DONNELL","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2018-06-07","completed":"2018-08-18","initiated":"2014-05-31","ministryContact":"BOYER JAZMIN","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":true}],"participants":[{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2016-06-24","startDate":"2015-02-14","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"IPSUM","endDate":"2023-05-01","startDate":"2021-03-12","notes":"","roles":["EMPLOYEE"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2020-03-03","notes":"","parcelID":"15852","siteID":"17057","siteRegistry":true}]},{"uuid":"00cad5a8-d631-4fdb-b0a1-0f97dc6bcd91","siteID":17935,"address":"99086 Smith Glens","latitude":56.3317,"longitude":-138.6163,"lastUpdated":"2019-03-16","city":"Torphyfurt","region":"Cariboo","victoriaFile":"26250-20/12702","regionalFile":"N/A","parcelIDs":[935366,4508705,6098137,1033671,5327499],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2014-08-11","completed":"2018-04-21","initiated":"2021-02-22","ministryContact":"KOCH THEO","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2013-10-03","completed":"2016-07-11","initiated":"2017-10-29","ministryContact":"GIBSON MARIAH","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2018-04-30","completed":"2017-12-21","initiated":"2021-08-16","ministryContact":"HEANEY ROWENA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2022-02-09","completed":"2014-03-10","initiated":"2015-11-25","ministryContact":"MARVIN BERNICE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2023-06-02","completed":"2020-11-11","initiated":"2021-11-10","ministryContact":"RUNOLFSSON LAUREN","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false}],"participants":[{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2014-04-02","startDate":"2017-08-28","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"AMET, DOLOR SIT","endDate":"2017-07-24","startDate":"2016-01-19","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"IPSUM","endDate":"2020-09-18","startDate":"2022-07-29","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","endDate":"2016-11-28","startDate":"2022-06-22","notes":"","roles":["ORGANIZATION"],"siteRegistry":false}],"associatedSites":[{"dateNoted":"2015-09-07","notes":"","parcelID":"17985","siteID":"16966","siteRegistry":false}]},{"uuid":"2937436c-b092-414a-8549-31e198a4fa72","siteID":17113,"address":"61107 Gorczany Canyon","latitude":48.4982,"longitude":-133.123,"lastUpdated":"2020-04-07","city":"Robertaborough","region":" North Coast","victoriaFile":"26250-20/12523","regionalFile":"N/A","parcelIDs":[9148716,1745820,2725568,5863482,8177127],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2021-03-01","completed":"2019-08-11","initiated":"2016-01-20","ministryContact":"GUTKOWSKI ALYSA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2016-07-28","completed":"2020-11-24","initiated":"2014-05-27","ministryContact":"HANE ELENA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":false}],"participants":[{"name":"SHELL CANADA PRODUCTS","endDate":"2018-08-14","startDate":"2016-01-12","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","endDate":"2019-06-22","startDate":"2017-02-17","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"IPSUM","endDate":"2015-07-07","startDate":"2019-09-17","notes":"","roles":["ORGANIZATION"],"siteRegistry":false}],"associatedSites":[{"dateNoted":"2022-09-13","notes":"","parcelID":"18813","siteID":"15375","siteRegistry":true},{"dateNoted":"2017-06-18","notes":"","parcelID":"15301","siteID":"15351","siteRegistry":false},{"dateNoted":"2023-08-06","notes":"","parcelID":"17264","siteID":"16721","siteRegistry":false}]},{"uuid":"648a1fba-2809-48b6-8c82-4574250f8526","siteID":17237,"address":"28125 Elna Turnpike","latitude":52.1374,"longitude":-118.5191,"lastUpdated":"2016-01-04","city":"New Gloriaside","region":"Thompson-Okanagan","victoriaFile":"26250-20/7046","regionalFile":"N/A","parcelIDs":[2272154,2529468,9704429,6612296,5927772],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2022-09-25","completed":"2013-10-26","initiated":"2019-05-29","ministryContact":"BLICK-HAHN MONTE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2018-02-18","completed":"2023-01-25","initiated":"2014-05-18","ministryContact":"HAGENES PRICE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2022-01-23","completed":"2022-07-06","initiated":"2023-02-06","ministryContact":"VEUM QUINTON","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2016-10-22","completed":"2017-02-20","initiated":"2017-04-15","ministryContact":"HAUCK MURIEL","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":true}],"participants":[{"name":"AMET, DOLOR SIT","endDate":"2015-02-14","startDate":"2020-03-02","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","endDate":"2015-06-23","startDate":"2016-06-23","notes":"","roles":["ORGANIZATION"],"siteRegistry":false}],"associatedSites":[{"dateNoted":"2017-03-23","notes":"","parcelID":"17548","siteID":"18126","siteRegistry":false},{"dateNoted":"2018-12-06","notes":"","parcelID":"15986","siteID":"17074","siteRegistry":false}]},{"uuid":"cfa355b1-ef6c-444c-b4df-727beca114a7","siteID":17260,"address":"3134 Aubrey Parkways","latitude":53.4711,"longitude":-134.1641,"lastUpdated":"2017-01-14","city":"East Mariloubury","region":"Kootenay","victoriaFile":"26250-20/13973","regionalFile":"N/A","parcelIDs":[6319731,6397293,5630114,6998805,996695],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2013-11-13","completed":"2017-05-23","initiated":"2015-12-05","ministryContact":"KOELPIN REBEKAH","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2014-02-12","completed":"2018-09-28","initiated":"2015-03-28","ministryContact":"GLOVER LUTHER","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2019-09-09","completed":"2019-01-22","initiated":"2020-08-03","ministryContact":"RIPPIN LEANN","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2019-10-22","completed":"2016-08-09","initiated":"2014-06-20","ministryContact":"HILLS MILES","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2019-03-16","completed":"2018-08-29","initiated":"2014-03-15","ministryContact":"KSHLERIN CARLOTTA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":true}],"participants":[{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2023-01-04","startDate":"2022-10-16","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"IPSUM","endDate":"2016-06-13","startDate":"2022-02-25","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"IPSUM","endDate":"2020-07-24","startDate":"2020-03-23","notes":"","roles":["EMPLOYEE"],"siteRegistry":false}],"associatedSites":[{"dateNoted":"2020-08-16","notes":"","parcelID":"17344","siteID":"18495","siteRegistry":true},{"dateNoted":"2015-09-05","notes":"","parcelID":"16098","siteID":"16814","siteRegistry":false}]},{"uuid":"7eeeeba2-3488-4ae7-85d5-223c9e3fd806","siteID":20307,"address":"301 Schaden Green","latitude":52.9296,"longitude":-131.9655,"lastUpdated":"2014-11-02","city":"Balistrerihaven","region":" North Coast","victoriaFile":"26250-20/1557","regionalFile":"N/A","parcelIDs":[5709042,2475516,8607587,6838747,5296868],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2023-06-03","completed":"2015-09-22","initiated":"2019-09-06","ministryContact":"OKUNEVA ALPHONSO","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2019-12-24","completed":"2020-10-23","initiated":"2016-03-01","ministryContact":"O'CONNER FRANK","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2021-03-04","completed":"2019-02-21","initiated":"2019-07-05","ministryContact":"DURGAN KING","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":false}],"participants":[{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2018-01-03","startDate":"2021-01-01","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"AMET, DOLOR SIT","endDate":"2015-09-24","startDate":"2020-01-07","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"IPSUM","endDate":"2015-09-21","startDate":"2019-05-08","notes":"","roles":["ORGANIZATION"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2017-12-25","notes":"","parcelID":"15767","siteID":"19773","siteRegistry":true}]},{"uuid":"d8e386d6-b6e6-4191-bba5-2e7c7e7e8d0c","siteID":19773,"address":"37309 Cummings Pine","latitude":56.8824,"longitude":-119.5775,"lastUpdated":"2019-03-06","city":"East Brett","region":"Kootenay","victoriaFile":"26250-20/3488","regionalFile":"N/A","parcelIDs":[233574,1432146,4275686,1776010,7025425],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2023-01-13","completed":"2021-09-06","initiated":"2014-03-25","ministryContact":"HILLS LEONIE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2018-03-25","completed":"2018-03-11","initiated":"2019-02-01","ministryContact":"REICHEL ANDRE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2019-05-20","completed":"2013-10-13","initiated":"2013-12-06","ministryContact":"RUNOLFSDOTTIR NELLIE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2014-04-27","completed":"2017-11-13","initiated":"2020-12-28","ministryContact":"O'KON TRESSIE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2021-03-31","completed":"2014-06-24","initiated":"2018-04-13","ministryContact":"TERRY SABRINA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":false}],"participants":[{"name":"SHELL CANADA PRODUCTS","endDate":"2017-05-28","startDate":"2017-07-04","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","endDate":"2017-12-08","startDate":"2023-06-30","notes":"","roles":["ORGANIZATION"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2017-10-18","notes":"","parcelID":"18774","siteID":"20788","siteRegistry":true},{"dateNoted":"2021-05-17","notes":"","parcelID":"20008","siteID":"17449","siteRegistry":false}]},{"uuid":"f34d7aa7-1847-43ef-9623-4bd479fd98c0","siteID":19872,"address":"2154 Torphy Lock","latitude":48.614,"longitude":-126.1157,"lastUpdated":"2017-07-13","city":"New Oda","region":"Mainland/Southwest","victoriaFile":"26250-20/1444","regionalFile":"N/A","parcelIDs":[3147762,1389596,4576731,5897827,1241325],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2018-11-25","completed":"2013-12-08","initiated":"2013-11-07","ministryContact":"COLLINS JULIET","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2020-04-20","completed":"2023-09-05","initiated":"2022-09-02","ministryContact":"PARKER-HEATHCOTE TRESSA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2022-07-15","completed":"2015-11-08","initiated":"2015-02-19","ministryContact":"GUSIKOWSKI DESTINY","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":false}],"participants":[{"name":"AMET, DOLOR SIT","endDate":"2023-04-02","startDate":"2014-12-26","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"AMET, DOLOR SIT","endDate":"2017-10-21","startDate":"2018-04-01","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","endDate":"2017-02-28","startDate":"2020-11-01","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"IPSUM","endDate":"2020-07-21","startDate":"2017-01-12","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","endDate":"2016-10-11","startDate":"2018-09-05","notes":"","roles":["ORGANIZATION"],"siteRegistry":false}],"associatedSites":[{"dateNoted":"2021-01-24","notes":"","parcelID":"19402","siteID":"17038","siteRegistry":true}]},{"uuid":"7df0b60a-5d9f-4fd0-b4a5-6b4c57398b31","siteID":19093,"address":"32352 Hermann Locks","latitude":49.8272,"longitude":-129.8147,"lastUpdated":"2014-08-03","city":"Baileychester","region":"Vancouver Island/Coast","victoriaFile":"26250-20/9597","regionalFile":"N/A","parcelIDs":[9087147,3603778,5553827,6907641,2515038],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2013-12-27","completed":"2015-02-20","initiated":"2018-06-06","ministryContact":"BARTELL DAMIEN","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2020-03-28","completed":"2020-04-27","initiated":"2014-07-26","ministryContact":"RENNER AUBREE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2013-12-14","completed":"2019-06-28","initiated":"2020-03-21","ministryContact":"HARTMANN MARC","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2019-12-08","completed":"2016-11-02","initiated":"2023-08-29","ministryContact":"HYATT EDISON","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2022-08-19","completed":"2021-03-18","initiated":"2016-04-15","ministryContact":"HARRIS JULIEN","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":false}],"participants":[{"name":"AMET, DOLOR SIT","endDate":"2016-08-29","startDate":"2017-05-07","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"IPSUM","endDate":"2015-09-12","startDate":"2014-10-23","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"AMET, DOLOR SIT","endDate":"2020-02-23","startDate":"2020-08-31","notes":"","roles":["EMPLOYEE"],"siteRegistry":false}],"associatedSites":[{"dateNoted":"2017-03-24","notes":"","parcelID":"19476","siteID":"16703","siteRegistry":true},{"dateNoted":"2016-08-14","notes":"","parcelID":"18472","siteID":"15980","siteRegistry":true}]},{"uuid":"03666d2f-1c9b-4284-9a89-0b810df6dc9d","siteID":19701,"address":"850 Carroll Creek","latitude":53.8145,"longitude":-124.035,"lastUpdated":"2017-03-11","city":"Paterson","region":"Kootenay","victoriaFile":"26250-20/6334","regionalFile":"N/A","parcelIDs":[1603639,5673011,9250838,4132638,9962144],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2015-04-29","completed":"2016-11-20","initiated":"2014-01-24","ministryContact":"LOCKMAN KEELY","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2016-11-15","completed":"2019-04-14","initiated":"2021-04-20","ministryContact":"SAUER CHRISTY","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2022-11-02","completed":"2022-03-25","initiated":"2023-05-16","ministryContact":"WOLF ROBIN","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2018-07-23","completed":"2021-08-28","initiated":"2016-05-15","ministryContact":"HETTINGER AUDRA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":true}],"participants":[{"name":"SHELL CANADA PRODUCTS","endDate":"2016-05-05","startDate":"2020-05-28","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"AMET, DOLOR SIT","endDate":"2016-12-27","startDate":"2017-12-18","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","endDate":"2013-11-09","startDate":"2015-05-13","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","endDate":"2015-09-03","startDate":"2016-11-28","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2015-10-28","startDate":"2017-03-06","notes":"","roles":["ORGANIZATION"],"siteRegistry":false}],"associatedSites":[{"dateNoted":"2014-09-23","notes":"","parcelID":"16837","siteID":"20947","siteRegistry":false},{"dateNoted":"2019-04-14","notes":"","parcelID":"20205","siteID":"19897","siteRegistry":true}]},{"uuid":"9e9d62e1-34e3-4974-9fb1-c1a96a0253f7","siteID":18274,"address":"64350 Ethan Greens","latitude":50.3342,"longitude":-119.6225,"lastUpdated":"2016-01-28","city":"Athens-Clarke County","region":"Kootenay","victoriaFile":"26250-20/17861","regionalFile":"N/A","parcelIDs":[8545610,477863,4402893,386544,8247015],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2019-08-23","completed":"2022-10-22","initiated":"2015-06-06","ministryContact":"HEANEY BERENICE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2016-10-11","completed":"2018-12-20","initiated":"2021-10-11","ministryContact":"REINGER PATTIE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":true}],"participants":[{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2022-04-15","startDate":"2018-10-17","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"IPSUM","endDate":"2018-08-01","startDate":"2022-12-26","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","endDate":"2015-09-06","startDate":"2018-12-16","notes":"","roles":["EMPLOYEE"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2015-03-14","notes":"","parcelID":"17525","siteID":"16986","siteRegistry":true},{"dateNoted":"2017-08-14","notes":"","parcelID":"18581","siteID":"15945","siteRegistry":false},{"dateNoted":"2015-05-20","notes":"","parcelID":"18732","siteID":"19048","siteRegistry":true}]},{"uuid":"8a9503a1-6268-4185-888a-c23cf7d92997","siteID":17454,"address":"721 Erling Trail","latitude":55.151,"longitude":-120.7264,"lastUpdated":"2017-12-26","city":"Myrticeburgh","region":"Mainland/Southwest","victoriaFile":"26250-20/2725","regionalFile":"N/A","parcelIDs":[9863219,5288151,6153099,2153753,6738553],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2022-08-25","completed":"2022-03-09","initiated":"2015-03-08","ministryContact":"KEELING-JENKINS PINKIE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2016-10-05","completed":"2015-06-18","initiated":"2013-10-23","ministryContact":"FARRELL JASPER","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2016-09-11","completed":"2018-11-03","initiated":"2016-06-20","ministryContact":"O'REILLY RAMON","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2021-01-27","completed":"2020-12-18","initiated":"2020-10-23","ministryContact":"BATZ AMIE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2014-10-07","completed":"2020-01-05","initiated":"2022-08-16","ministryContact":"LEANNON DOROTHY","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":true}],"participants":[{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2023-09-12","startDate":"2016-02-06","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"AMET, DOLOR SIT","endDate":"2017-06-25","startDate":"2019-07-06","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"AMET, DOLOR SIT","endDate":"2018-04-09","startDate":"2023-03-28","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2014-06-01","startDate":"2016-01-30","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2014-05-11","startDate":"2021-08-31","notes":"","roles":["EMPLOYEE"],"siteRegistry":false}],"associatedSites":[{"dateNoted":"2017-03-26","notes":"","parcelID":"16559","siteID":"17012","siteRegistry":true},{"dateNoted":"2022-04-04","notes":"","parcelID":"20968","siteID":"19351","siteRegistry":true}]},{"uuid":"cf68a39f-0505-4c34-bd2e-4c1a78631040","siteID":19314,"address":"4863 King Well","latitude":51.8882,"longitude":-133.358,"lastUpdated":"2020-10-27","city":"Layneboro","region":"Kootenay","victoriaFile":"26250-20/9978","regionalFile":"N/A","parcelIDs":[6224003,5290809,5850577,585406,288115],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2015-06-03","completed":"2022-05-03","initiated":"2021-03-03","ministryContact":"KEELING ANITA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2022-10-14","completed":"2021-01-29","initiated":"2015-01-26","ministryContact":"FERRY KAYDEN","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2017-09-03","completed":"2016-02-18","initiated":"2017-05-18","ministryContact":"MILLER TYLER","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2016-06-17","completed":"2016-08-05","initiated":"2017-05-09","ministryContact":"ABSHIRE JOY","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2022-11-03","completed":"2017-09-28","initiated":"2021-02-09","ministryContact":"DARE GRADY","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":false}],"participants":[{"name":"SHELL CANADA PRODUCTS","endDate":"2018-08-29","startDate":"2023-09-17","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"IPSUM","endDate":"2019-04-09","startDate":"2014-04-23","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","endDate":"2020-02-06","startDate":"2022-11-28","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2017-08-20","startDate":"2017-10-23","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","endDate":"2019-10-26","startDate":"2017-08-07","notes":"","roles":["EMPLOYEE"],"siteRegistry":false}],"associatedSites":[{"dateNoted":"2022-12-28","notes":"","parcelID":"18418","siteID":"15919","siteRegistry":true},{"dateNoted":"2015-11-13","notes":"","parcelID":"20570","siteID":"18517","siteRegistry":false}]},{"uuid":"ed839ca2-d6df-4f2c-9c3c-9ed2acc85fbb","siteID":19407,"address":"79946 Langosh Highway","latitude":50.856,"longitude":-125.2751,"lastUpdated":"2016-04-30","city":"Demondberg","region":"Mainland/Southwest","victoriaFile":"26250-20/990","regionalFile":"N/A","parcelIDs":[227262,3372092,6022754,8430587,5971294],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2016-11-18","completed":"2021-09-12","initiated":"2017-10-22","ministryContact":"STREICH NOEMY","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2014-12-19","completed":"2020-10-13","initiated":"2017-05-03","ministryContact":"KULAS JORGE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2020-04-08","completed":"2016-10-02","initiated":"2015-12-05","ministryContact":"KULAS NOVA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2022-08-06","completed":"2014-05-26","initiated":"2018-10-08","ministryContact":"HELLER IGNATIUS","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":true}],"participants":[{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2023-08-13","startDate":"2014-03-18","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2018-07-14","startDate":"2019-04-10","notes":"","roles":["EMPLOYEE"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2022-04-10","notes":"","parcelID":"20039","siteID":"20366","siteRegistry":false}]},{"uuid":"a64f2441-bfae-4187-807b-f20649a6926f","siteID":17795,"address":"16860 Eriberto Valley","latitude":52.9928,"longitude":-126.8573,"lastUpdated":"2020-10-19","city":"Addisonboro","region":"Thompson-Okanagan","victoriaFile":"26250-20/7819","regionalFile":"N/A","parcelIDs":[3368006,5168824,1979922,9865547,7291494],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2014-10-11","completed":"2019-10-25","initiated":"2017-03-31","ministryContact":"CASSIN-WELCH ROSALINDA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2019-12-01","completed":"2020-08-05","initiated":"2018-03-07","ministryContact":"WATSICA STEPHAN","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":true}],"participants":[{"name":"IPSUM","endDate":"2020-11-09","startDate":"2016-08-26","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"AMET, DOLOR SIT","endDate":"2017-02-23","startDate":"2018-04-01","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"IPSUM","endDate":"2020-09-01","startDate":"2023-04-05","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"AMET, DOLOR SIT","endDate":"2018-06-28","startDate":"2014-07-26","notes":"","roles":["ORGANIZATION"],"siteRegistry":false}],"associatedSites":[{"dateNoted":"2021-09-22","notes":"","parcelID":"20319","siteID":"17038","siteRegistry":false},{"dateNoted":"2023-08-03","notes":"","parcelID":"18918","siteID":"17414","siteRegistry":true}]},{"uuid":"8ca034ab-81b0-486d-ba16-82c9f5ab1f4c","siteID":19409,"address":"4368 Rath Greens","latitude":54.4748,"longitude":-130.9228,"lastUpdated":"2015-12-17","city":"Vincenzaboro","region":"Kootenay","victoriaFile":"26250-20/10653","regionalFile":"N/A","parcelIDs":[7936753,6512346,9812202,3871712,6332216],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2019-02-09","completed":"2014-05-02","initiated":"2016-03-27","ministryContact":"KOCH PRISCILLA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2023-04-08","completed":"2021-08-26","initiated":"2020-08-06","ministryContact":"TREUTEL KEITH","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false}],"participants":[{"name":"IPSUM","endDate":"2022-09-20","startDate":"2022-09-21","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"AMET, DOLOR SIT","endDate":"2018-11-10","startDate":"2014-03-28","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"IPSUM","endDate":"2017-01-09","startDate":"2022-05-22","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2017-08-20","startDate":"2017-11-07","notes":"","roles":["ORGANIZATION"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2020-03-07","notes":"","parcelID":"20467","siteID":"17012","siteRegistry":false},{"dateNoted":"2023-02-09","notes":"","parcelID":"17120","siteID":"17012","siteRegistry":true}]},{"uuid":"b4d80de1-65f6-4220-8017-b9149c2a02b6","siteID":18753,"address":"478 Emery Plain","latitude":54.2502,"longitude":-126.6058,"lastUpdated":"2019-01-31","city":"Jacintheworth","region":" North Coast","victoriaFile":"26250-20/9714","regionalFile":"N/A","parcelIDs":[7400397,6651026,7649213,6232797,7320142],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2017-06-24","completed":"2014-12-26","initiated":"2020-08-04","ministryContact":"HARRIS EZEKIEL","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2023-03-22","completed":"2014-06-29","initiated":"2016-05-18","ministryContact":"BARTELL JACE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2016-05-24","completed":"2023-07-05","initiated":"2021-08-21","ministryContact":"STROMAN COLE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2016-08-27","completed":"2020-07-09","initiated":"2016-03-04","ministryContact":"SHANAHAN LYSANNE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":true}],"participants":[{"name":"IPSUM","endDate":"2019-02-23","startDate":"2022-09-03","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2021-03-25","startDate":"2023-04-23","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"IPSUM","endDate":"2015-10-23","startDate":"2021-12-06","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2017-09-01","startDate":"2018-04-05","notes":"","roles":["ORGANIZATION"],"siteRegistry":false}],"associatedSites":[{"dateNoted":"2019-01-27","notes":"","parcelID":"20884","siteID":"17768","siteRegistry":false}]},{"uuid":"f8735ae6-248d-4df9-a32f-a6ba99aca847","siteID":18245,"address":"41284 Silas Loaf","latitude":52.5527,"longitude":-123.7511,"lastUpdated":"2018-09-15","city":"North Alejandra","region":"Cariboo","victoriaFile":"26250-20/18997","regionalFile":"N/A","parcelIDs":[7824487,9276729,8884993,8865443,4436979],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2014-05-01","completed":"2019-07-31","initiated":"2018-03-22","ministryContact":"SCHUMM KENNETH","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2018-05-06","completed":"2022-02-22","initiated":"2022-07-22","ministryContact":"GRIMES HAYLIE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2016-07-03","completed":"2017-06-28","initiated":"2014-01-11","ministryContact":"BEDNAR GREYSON","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2019-11-25","completed":"2017-01-22","initiated":"2022-04-04","ministryContact":"MITCHELL PIPER","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":true}],"participants":[{"name":"SHELL CANADA PRODUCTS","endDate":"2023-07-05","startDate":"2014-08-02","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"IPSUM","endDate":"2022-03-28","startDate":"2015-01-14","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"AMET, DOLOR SIT","endDate":"2020-01-22","startDate":"2017-06-17","notes":"","roles":["ORGANIZATION"],"siteRegistry":false}],"associatedSites":[{"dateNoted":"2015-01-18","notes":"","parcelID":"20832","siteID":"19741","siteRegistry":false},{"dateNoted":"2019-10-06","notes":"","parcelID":"15486","siteID":"18771","siteRegistry":false}]},{"uuid":"68d643a2-0105-4821-ba1b-14134926ff46","siteID":19377,"address":"298 Bartell Valleys","latitude":57.931,"longitude":-121.0183,"lastUpdated":"2016-01-16","city":"South Juanastad","region":"Thompson-Okanagan","victoriaFile":"26250-20/11821","regionalFile":"N/A","parcelIDs":[131669,3351706,9279391,7282081,5465397],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2016-07-14","completed":"2017-05-21","initiated":"2016-05-02","ministryContact":"GUTKOWSKI EVERT","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2018-11-11","completed":"2020-07-01","initiated":"2014-02-15","ministryContact":"KSHLERIN JENNYFER","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":false}],"participants":[{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2023-06-29","startDate":"2017-05-15","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","endDate":"2022-02-06","startDate":"2019-11-17","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"IPSUM","endDate":"2019-08-26","startDate":"2023-01-02","notes":"","roles":["EMPLOYEE"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2020-02-22","notes":"","parcelID":"19236","siteID":"16228","siteRegistry":false},{"dateNoted":"2013-11-07","notes":"","parcelID":"17971","siteID":"16703","siteRegistry":true}]},{"uuid":"b44edbd2-7dc8-4d78-85dd-b39b1eef043a","siteID":16559,"address":"713 Lucio Plains","latitude":57.8976,"longitude":-130.1852,"lastUpdated":"2019-03-16","city":"Otiliaboro","region":"Vancouver Island/Coast","victoriaFile":"26250-20/2010","regionalFile":"N/A","parcelIDs":[9748793,4915429,7243618,3392211,8286779],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2019-03-02","completed":"2016-06-12","initiated":"2015-06-22","ministryContact":"CUMMINGS DESIREE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2022-08-28","completed":"2023-08-27","initiated":"2015-11-30","ministryContact":"MORAR JAYME","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":true}],"participants":[{"name":"SHELL CANADA PRODUCTS","endDate":"2014-03-07","startDate":"2014-07-27","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2016-01-31","startDate":"2017-03-26","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"IPSUM","endDate":"2023-05-18","startDate":"2017-09-20","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","endDate":"2017-04-25","startDate":"2022-05-27","notes":"","roles":["ORGANIZATION"],"siteRegistry":false}],"associatedSites":[{"dateNoted":"2015-05-08","notes":"","parcelID":"20418","siteID":"20906","siteRegistry":true}]},{"uuid":"4ac66654-1019-4a5c-ad78-296a69724ce6","siteID":17448,"address":"1943 Abdullah Mount","latitude":54.3575,"longitude":-122.7209,"lastUpdated":"2016-05-30","city":"Fort Camdenburgh","region":"Mainland/Southwest","victoriaFile":"26250-20/3654","regionalFile":"N/A","parcelIDs":[8163066,9827115,5329616,749003,8085915],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2017-09-02","completed":"2022-02-01","initiated":"2020-10-18","ministryContact":"RATKE CALLIE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2019-06-20","completed":"2018-11-05","initiated":"2019-07-26","ministryContact":"WALSH AUDREY","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2014-03-21","completed":"2020-02-07","initiated":"2023-05-13","ministryContact":"HILPERT JENNIE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2020-06-29","completed":"2019-06-15","initiated":"2020-05-15","ministryContact":"DAUGHERTY ANTWON","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":false}],"participants":[{"name":"AMET, DOLOR SIT","endDate":"2018-05-27","startDate":"2020-04-14","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","endDate":"2020-06-26","startDate":"2023-03-18","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"AMET, DOLOR SIT","endDate":"2017-07-24","startDate":"2017-07-20","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"AMET, DOLOR SIT","endDate":"2020-06-18","startDate":"2017-06-26","notes":"","roles":["ORGANIZATION"],"siteRegistry":false}],"associatedSites":[{"dateNoted":"2014-12-15","notes":"","parcelID":"18957","siteID":"18969","siteRegistry":false}]},{"uuid":"12fd1efe-87a1-4d54-a050-259e1bd9aeea","siteID":19904,"address":"75053 Hodkiewicz Ramp","latitude":55.0262,"longitude":-138.2041,"lastUpdated":"2015-04-12","city":"Pembroke Pines","region":"Thompson-Okanagan","victoriaFile":"26250-20/1699","regionalFile":"N/A","parcelIDs":[8760759,5595200,5729214,1177775,9307903],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2017-07-14","completed":"2015-03-16","initiated":"2014-08-12","ministryContact":"BREKKE EDWARDO","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2021-07-16","completed":"2023-04-05","initiated":"2019-11-08","ministryContact":"WEIMANN NATASHA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2018-12-07","completed":"2019-07-18","initiated":"2017-06-22","ministryContact":"O'CONNER MARJOLAINE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2014-02-28","completed":"2019-06-24","initiated":"2023-02-27","ministryContact":"HEGMANN EVERETTE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false}],"participants":[{"name":"SHELL CANADA PRODUCTS","endDate":"2021-06-06","startDate":"2014-07-21","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"IPSUM","endDate":"2023-01-21","startDate":"2019-08-12","notes":"","roles":["ORGANIZATION"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2021-01-03","notes":"","parcelID":"20560","siteID":"15443","siteRegistry":false},{"dateNoted":"2020-06-07","notes":"","parcelID":"18717","siteID":"20353","siteRegistry":true},{"dateNoted":"2020-01-11","notes":"","parcelID":"20600","siteID":"17164","siteRegistry":false}]},{"uuid":"0e85df4f-feb5-41cf-ba94-a368a6ddd2b1","siteID":16025,"address":"694 Zieme Village","latitude":58.4822,"longitude":-119.3808,"lastUpdated":"2014-03-01","city":"Destineycester","region":"Kootenay","victoriaFile":"26250-20/16333","regionalFile":"N/A","parcelIDs":[2725808,1271097,3502451,5690690,6807741],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2021-12-19","completed":"2021-02-26","initiated":"2019-03-26","ministryContact":"SMITH AUDIE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2021-05-09","completed":"2015-03-13","initiated":"2022-11-03","ministryContact":"WOLF KOBE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2017-04-01","completed":"2015-04-12","initiated":"2023-04-23","ministryContact":"BOSCO WALKER","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2023-07-13","completed":"2014-04-29","initiated":"2016-01-12","ministryContact":"POLLICH EBBA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":false}],"participants":[{"name":"SHELL CANADA PRODUCTS","endDate":"2014-10-31","startDate":"2022-01-04","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2020-10-15","startDate":"2020-05-27","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2022-10-12","startDate":"2017-11-15","notes":"","roles":["EMPLOYEE"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2019-01-30","notes":"","parcelID":"17313","siteID":"16793","siteRegistry":false},{"dateNoted":"2019-07-31","notes":"","parcelID":"19397","siteID":"17011","siteRegistry":false},{"dateNoted":"2015-05-06","notes":"","parcelID":"18527","siteID":"19005","siteRegistry":true}]},{"uuid":"7381e564-baf7-4213-b69b-ed5884da1b10","siteID":15656,"address":"46501 Aurelio Bridge","latitude":57.9362,"longitude":-120.4585,"lastUpdated":"2022-03-17","city":"Clementineborough","region":"Kootenay","victoriaFile":"26250-20/6072","regionalFile":"N/A","parcelIDs":[8822231,5841359,6222000,5725822,9606495],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2015-09-27","completed":"2020-03-28","initiated":"2023-05-25","ministryContact":"FAHEY BROOK","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2017-03-31","completed":"2019-12-30","initiated":"2022-11-01","ministryContact":"PROSACCO WILLY","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2020-07-15","completed":"2016-09-10","initiated":"2023-08-01","ministryContact":"HAND JARED","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2016-12-03","completed":"2016-01-25","initiated":"2019-09-12","ministryContact":"JERDE JADE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2019-09-11","completed":"2016-08-01","initiated":"2016-12-21","ministryContact":"RITCHIE KRYSTAL","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false}],"participants":[{"name":"AMET, DOLOR SIT","endDate":"2021-01-03","startDate":"2019-04-24","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"AMET, DOLOR SIT","endDate":"2015-05-01","startDate":"2014-08-25","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"AMET, DOLOR SIT","endDate":"2015-09-01","startDate":"2021-06-22","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2015-09-26","startDate":"2022-01-19","notes":"","roles":["EMPLOYEE"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2016-08-27","notes":"","parcelID":"16237","siteID":"20906","siteRegistry":false},{"dateNoted":"2022-09-05","notes":"","parcelID":"19220","siteID":"20323","siteRegistry":false}]},{"uuid":"7270a2f7-6739-4e28-8921-d1c986099b30","siteID":20869,"address":"1792 Antonina Path","latitude":50.5211,"longitude":-126.4883,"lastUpdated":"2020-05-11","city":"New Maureenfield","region":"Thompson-Okanagan","victoriaFile":"26250-20/13821","regionalFile":"N/A","parcelIDs":[4996463,8669489,6220217,7064387,9298852],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2020-06-02","completed":"2014-01-06","initiated":"2016-05-22","ministryContact":"BEATTY PAT","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2019-02-27","completed":"2017-06-25","initiated":"2015-04-04","ministryContact":"O'CONNER KIRSTEN","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2014-04-08","completed":"2021-03-08","initiated":"2015-12-29","ministryContact":"DANIEL CLAUD","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false}],"participants":[{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2014-10-01","startDate":"2023-04-13","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","endDate":"2018-09-11","startDate":"2020-02-16","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"AMET, DOLOR SIT","endDate":"2015-12-01","startDate":"2022-04-20","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"AMET, DOLOR SIT","endDate":"2020-02-03","startDate":"2017-09-26","notes":"","roles":["ORGANIZATION"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2022-07-20","notes":"","parcelID":"16271","siteID":"19457","siteRegistry":true},{"dateNoted":"2015-09-15","notes":"","parcelID":"17914","siteID":"17200","siteRegistry":true}]},{"uuid":"1eaf94ad-225d-4af5-95b3-4e424acc60d2","siteID":16118,"address":"4213 Jerde Shoal","latitude":49.2077,"longitude":-138.177,"lastUpdated":"2016-04-20","city":"Schummstead","region":"Thompson-Okanagan","victoriaFile":"26250-20/17832","regionalFile":"N/A","parcelIDs":[6462995,9523345,362754,173631,2778819],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2019-03-24","completed":"2019-03-23","initiated":"2021-08-15","ministryContact":"SMITH ORA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2014-09-07","completed":"2021-09-05","initiated":"2018-11-27","ministryContact":"SCHADEN-PRICE JOHNNY","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2020-05-19","completed":"2022-09-24","initiated":"2019-11-25","ministryContact":"STAMM KARA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2020-12-22","completed":"2020-06-26","initiated":"2015-08-28","ministryContact":"ABSHIRE COLBY","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2017-08-26","completed":"2022-07-17","initiated":"2018-05-01","ministryContact":"BECHTELAR CHEYENNE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":false}],"participants":[{"name":"SHELL CANADA PRODUCTS","endDate":"2022-03-15","startDate":"2018-11-10","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"IPSUM","endDate":"2020-12-12","startDate":"2022-10-08","notes":"","roles":["EMPLOYEE"],"siteRegistry":false}],"associatedSites":[{"dateNoted":"2018-10-18","notes":"","parcelID":"16464","siteID":"19314","siteRegistry":false}]},{"uuid":"99a567a0-19c0-4b2f-a86e-b4793df7fbdc","siteID":18969,"address":"650 Elenor Ridges","latitude":51.3107,"longitude":-120.8581,"lastUpdated":"2018-07-24","city":"Malachichester","region":"Kootenay","victoriaFile":"26250-20/17663","regionalFile":"N/A","parcelIDs":[7289532,2117949,3405760,1666343,1180250],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2018-02-16","completed":"2015-06-12","initiated":"2017-02-08","ministryContact":"LUEILWITZ BEVERLY","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2015-01-16","completed":"2016-04-20","initiated":"2017-05-09","ministryContact":"HAAG CARLOS","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":true}],"participants":[{"name":"AMET, DOLOR SIT","endDate":"2014-05-27","startDate":"2019-09-11","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","endDate":"2022-03-10","startDate":"2020-07-05","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"AMET, DOLOR SIT","endDate":"2018-05-02","startDate":"2015-04-29","notes":"","roles":["EMPLOYEE"],"siteRegistry":false}],"associatedSites":[{"dateNoted":"2023-01-13","notes":"","parcelID":"18086","siteID":"17057","siteRegistry":true},{"dateNoted":"2019-08-05","notes":"","parcelID":"17656","siteID":"16972","siteRegistry":true}]},{"uuid":"193e3d60-a88e-4ea3-87d7-0875677e5ba5","siteID":17394,"address":"61100 Adelbert Pines","latitude":50.3458,"longitude":-134.8701,"lastUpdated":"2020-08-03","city":"East Kentonstead","region":"Thompson-Okanagan","victoriaFile":"26250-20/1099","regionalFile":"N/A","parcelIDs":[7848288,4010624,7261741,7315603,1667638],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2021-05-20","completed":"2015-04-13","initiated":"2018-07-02","ministryContact":"STANTON DARIO","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2016-09-30","completed":"2021-05-20","initiated":"2020-11-24","ministryContact":"GORCZANY ALIYA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2013-12-27","completed":"2015-09-27","initiated":"2018-08-19","ministryContact":"NIENOW LEO","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2017-11-03","completed":"2023-01-06","initiated":"2020-09-27","ministryContact":"WILKINSON CIERRA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2021-06-24","completed":"2022-02-26","initiated":"2015-11-12","ministryContact":"KUVALIS ELEAZAR","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":true}],"participants":[{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2017-12-22","startDate":"2019-06-29","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","endDate":"2018-12-18","startDate":"2018-12-20","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"IPSUM","endDate":"2023-05-07","startDate":"2015-02-16","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"AMET, DOLOR SIT","endDate":"2019-07-29","startDate":"2020-02-19","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","endDate":"2023-05-14","startDate":"2018-12-29","notes":"","roles":["EMPLOYEE"],"siteRegistry":false}],"associatedSites":[{"dateNoted":"2017-10-08","notes":"","parcelID":"17277","siteID":"18065","siteRegistry":true},{"dateNoted":"2015-01-08","notes":"","parcelID":"17419","siteID":"20788","siteRegistry":true}]},{"uuid":"1446c5a1-a05b-48be-aafc-1c1dcb83683f","siteID":17866,"address":"375 Wuckert Roads","latitude":50.7536,"longitude":-135.7884,"lastUpdated":"2023-09-28","city":"New Friedrich","region":"Mainland/Southwest","victoriaFile":"26250-20/4896","regionalFile":"N/A","parcelIDs":[8963662,7550120,4498654,7914848,396071],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2022-03-09","completed":"2014-05-12","initiated":"2023-08-10","ministryContact":"LOWE NICHOLE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2019-08-02","completed":"2020-04-12","initiated":"2019-05-07","ministryContact":"MCGLYNN ELNA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2015-10-02","completed":"2015-04-18","initiated":"2018-12-27","ministryContact":"WISOKY JESSICA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2020-02-05","completed":"2015-08-18","initiated":"2016-10-14","ministryContact":"BARTOLETTI BERRY","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":true}],"participants":[{"name":"IPSUM","endDate":"2015-04-20","startDate":"2015-05-02","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"AMET, DOLOR SIT","endDate":"2016-04-02","startDate":"2017-09-20","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","endDate":"2022-07-27","startDate":"2023-08-07","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2023-06-17","startDate":"2021-08-16","notes":"","roles":["EMPLOYEE"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2021-08-14","notes":"","parcelID":"16512","siteID":"17976","siteRegistry":false},{"dateNoted":"2021-09-08","notes":"","parcelID":"19062","siteID":"16736","siteRegistry":false},{"dateNoted":"2023-05-12","notes":"","parcelID":"18819","siteID":"16796","siteRegistry":false}]},{"uuid":"ac98af65-1856-4bbe-a7ae-482c9278a5fd","siteID":16645,"address":"73049 Schuppe Way","latitude":58.5829,"longitude":-118.4279,"lastUpdated":"2022-07-19","city":"East Melyna","region":"Mainland/Southwest","victoriaFile":"26250-20/17562","regionalFile":"N/A","parcelIDs":[7591823,6150873,3479934,3960143,9768092],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2021-11-12","completed":"2022-02-22","initiated":"2020-06-30","ministryContact":"WIZA LUTHER","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2014-11-05","completed":"2015-07-05","initiated":"2014-05-25","ministryContact":"WYMAN ROWAN","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":true}],"participants":[{"name":"SHELL CANADA PRODUCTS","endDate":"2017-03-01","startDate":"2017-10-18","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2014-12-05","startDate":"2014-06-02","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"AMET, DOLOR SIT","endDate":"2014-06-26","startDate":"2020-01-17","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2016-12-05","startDate":"2020-10-06","notes":"","roles":["EMPLOYEE"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2018-01-08","notes":"","parcelID":"18862","siteID":"15892","siteRegistry":true}]},{"uuid":"7cc56bac-dc2e-421b-9e1b-2a4a0be4367c","siteID":18550,"address":"3747 Nona Fords","latitude":57.0483,"longitude":-128.0366,"lastUpdated":"2020-11-17","city":"Connellychester","region":"Vancouver Island/Coast","victoriaFile":"26250-20/7749","regionalFile":"N/A","parcelIDs":[6918629,6015055,1024912,5430800,2112744],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2016-11-21","completed":"2015-10-27","initiated":"2019-06-17","ministryContact":"HESSEL JERRY","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2020-09-13","completed":"2019-03-19","initiated":"2021-05-16","ministryContact":"LANGOSH CAROL","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2014-04-13","completed":"2017-02-21","initiated":"2019-12-03","ministryContact":"DOYLE ARVID","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2020-06-07","completed":"2017-02-19","initiated":"2022-05-06","ministryContact":"LITTEL DAVID","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":false}],"participants":[{"name":"AMET, DOLOR SIT","endDate":"2018-01-14","startDate":"2015-10-16","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"AMET, DOLOR SIT","endDate":"2021-07-05","startDate":"2016-08-29","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"IPSUM","endDate":"2013-12-26","startDate":"2018-06-12","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2022-12-22","startDate":"2023-02-05","notes":"","roles":["ORGANIZATION"],"siteRegistry":false}],"associatedSites":[{"dateNoted":"2022-03-27","notes":"","parcelID":"20501","siteID":"19087","siteRegistry":false},{"dateNoted":"2022-07-04","notes":"","parcelID":"17018","siteID":"20366","siteRegistry":false},{"dateNoted":"2022-01-05","notes":"","parcelID":"20213","siteID":"17151","siteRegistry":true}]},{"uuid":"51ae7522-ced7-4132-a7be-a069fc88e1d7","siteID":18162,"address":"281 Huel Via","latitude":48.8619,"longitude":-138.1775,"lastUpdated":"2018-11-15","city":"East Lansing","region":"Cariboo","victoriaFile":"26250-20/6930","regionalFile":"N/A","parcelIDs":[7417203,8372755,9576252,6480937,9925658],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2021-08-12","completed":"2019-07-22","initiated":"2022-10-14","ministryContact":"MARQUARDT DAYNE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2015-05-29","completed":"2016-06-20","initiated":"2020-09-04","ministryContact":"SCHULIST CAESAR","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":false}],"participants":[{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2023-09-16","startDate":"2016-08-29","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"IPSUM","endDate":"2021-12-17","startDate":"2018-10-15","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","endDate":"2017-08-18","startDate":"2023-07-06","notes":"","roles":["ORGANIZATION"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2018-10-13","notes":"","parcelID":"16307","siteID":"18695","siteRegistry":true}]},{"uuid":"ff42f458-ce52-4d61-ad7f-2e285a46baff","siteID":17783,"address":"932 Gottlieb Plains","latitude":50.4385,"longitude":-123.1735,"lastUpdated":"2023-04-02","city":"Lake Leonardo","region":"Vancouver Island/Coast","victoriaFile":"26250-20/731","regionalFile":"N/A","parcelIDs":[6749099,6796553,8055378,8712059,5490455],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2022-12-11","completed":"2019-07-10","initiated":"2018-12-22","ministryContact":"FRIESEN SHAD","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2021-02-07","completed":"2020-01-08","initiated":"2023-09-02","ministryContact":"STOLTENBERG-MOHR KITTY","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2014-09-30","completed":"2023-08-13","initiated":"2015-01-19","ministryContact":"BRAKUS GERARDO","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2014-09-28","completed":"2023-06-18","initiated":"2016-11-14","ministryContact":"HANE LUE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":false}],"participants":[{"name":"SHELL CANADA PRODUCTS","endDate":"2015-04-01","startDate":"2020-05-27","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","endDate":"2023-01-18","startDate":"2014-03-14","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","endDate":"2015-09-10","startDate":"2018-11-03","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","endDate":"2022-11-01","startDate":"2022-01-10","notes":"","roles":["EMPLOYEE"],"siteRegistry":false}],"associatedSites":[{"dateNoted":"2015-12-26","notes":"","parcelID":"16031","siteID":"18368","siteRegistry":false},{"dateNoted":"2020-09-20","notes":"","parcelID":"16186","siteID":"19796","siteRegistry":true}]},{"uuid":"a80ee123-8013-4eda-ad20-2955d6073694","siteID":18517,"address":"110 Hayes Branch","latitude":56.5571,"longitude":-125.1135,"lastUpdated":"2014-05-31","city":"Des Plaines","region":" North Coast","victoriaFile":"26250-20/830","regionalFile":"N/A","parcelIDs":[9219160,7412793,7003059,4484212,1721328],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2017-03-05","completed":"2023-09-29","initiated":"2021-03-09","ministryContact":"DARE-ARMSTRONG JALEEL","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2017-07-11","completed":"2023-05-29","initiated":"2022-10-09","ministryContact":"TREMBLAY JOHN","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2015-01-23","completed":"2015-08-21","initiated":"2020-10-14","ministryContact":"FEIL ISAI","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2021-04-17","completed":"2023-02-27","initiated":"2019-07-02","ministryContact":"ROHAN DERON","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false}],"participants":[{"name":"SHELL CANADA PRODUCTS","endDate":"2015-04-22","startDate":"2021-06-25","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"AMET, DOLOR SIT","endDate":"2020-02-08","startDate":"2019-01-27","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","endDate":"2015-07-22","startDate":"2016-02-24","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"IPSUM","endDate":"2018-04-30","startDate":"2015-08-02","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"IPSUM","endDate":"2017-04-08","startDate":"2015-06-07","notes":"","roles":["EMPLOYEE"],"siteRegistry":false}],"associatedSites":[{"dateNoted":"2013-11-26","notes":"","parcelID":"19642","siteID":"19048","siteRegistry":true},{"dateNoted":"2017-07-21","notes":"","parcelID":"15585","siteID":"15361","siteRegistry":false}]},{"uuid":"5cd61a59-d6fa-4158-be68-83808a0790d5","siteID":16272,"address":"57618 Meredith Shores","latitude":55.8684,"longitude":-129.8964,"lastUpdated":"2017-07-31","city":"Justicecester","region":"Thompson-Okanagan","victoriaFile":"26250-20/6288","regionalFile":"N/A","parcelIDs":[3914481,3022817,8696707,7217233,7091490],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2023-09-28","completed":"2019-05-31","initiated":"2016-01-24","ministryContact":"HANSEN DORA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2021-04-27","completed":"2018-07-31","initiated":"2015-06-16","ministryContact":"HILLS JAYLEN","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2019-09-03","completed":"2016-06-22","initiated":"2022-11-13","ministryContact":"FRAMI DEJUAN","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2019-01-14","completed":"2021-02-16","initiated":"2023-03-29","ministryContact":"DAVIS-LITTLE JODY","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2019-01-09","completed":"2023-07-11","initiated":"2020-01-02","ministryContact":"CONROY MELYSSA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false}],"participants":[{"name":"AMET, DOLOR SIT","endDate":"2023-07-14","startDate":"2015-05-17","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2016-06-06","startDate":"2019-08-13","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2018-12-28","startDate":"2021-11-02","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"IPSUM","endDate":"2021-03-31","startDate":"2018-12-16","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"IPSUM","endDate":"2016-12-17","startDate":"2018-12-29","notes":"","roles":["EMPLOYEE"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2017-01-29","notes":"","parcelID":"20609","siteID":"15917","siteRegistry":true},{"dateNoted":"2016-01-19","notes":"","parcelID":"20590","siteID":"18652","siteRegistry":true},{"dateNoted":"2020-03-20","notes":"","parcelID":"18067","siteID":"20614","siteRegistry":false}]},{"uuid":"5a2f75e8-0068-4b96-ae9f-013f2465eaf2","siteID":16151,"address":"344 Laurianne Groves","latitude":56.454,"longitude":-119.0864,"lastUpdated":"2013-12-21","city":"Sarasota","region":"Thompson-Okanagan","victoriaFile":"26250-20/17992","regionalFile":"N/A","parcelIDs":[2286286,4997866,6519356,688451,8984948],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2019-11-19","completed":"2019-12-10","initiated":"2016-08-15","ministryContact":"CRIST OLAF","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2019-03-18","completed":"2017-01-10","initiated":"2017-05-20","ministryContact":"KREIGER OTTO","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2014-05-08","completed":"2015-07-29","initiated":"2017-03-19","ministryContact":"HEATHCOTE MAIA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2019-04-13","completed":"2021-09-04","initiated":"2021-06-14","ministryContact":"WATERS LAWSON","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2020-05-02","completed":"2022-12-09","initiated":"2022-04-10","ministryContact":"PARKER LANCE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":true}],"participants":[{"name":"IPSUM","endDate":"2022-10-04","startDate":"2016-03-16","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"AMET, DOLOR SIT","endDate":"2018-11-19","startDate":"2015-03-03","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2021-09-13","startDate":"2016-08-22","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2015-06-28","startDate":"2023-03-19","notes":"","roles":["ORGANIZATION"],"siteRegistry":false}],"associatedSites":[{"dateNoted":"2020-12-26","notes":"","parcelID":"15459","siteID":"15653","siteRegistry":true}]},{"uuid":"8e3d3b0f-4104-4db6-ba50-08d02b6b4114","siteID":16986,"address":"2915 Susana Islands","latitude":54.1059,"longitude":-126.6917,"lastUpdated":"2019-09-12","city":"West Abner","region":"Thompson-Okanagan","victoriaFile":"26250-20/2646","regionalFile":"N/A","parcelIDs":[8626352,4507356,7123068,9255723,3923623],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2020-11-16","completed":"2018-08-05","initiated":"2018-03-27","ministryContact":"GLEASON GABRIELLE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2014-08-28","completed":"2018-10-23","initiated":"2015-08-13","ministryContact":"MORISSETTE MARKUS","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2021-04-04","completed":"2019-09-24","initiated":"2020-09-30","ministryContact":"COLLIER MAIA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":false}],"participants":[{"name":"AMET, DOLOR SIT","endDate":"2015-06-09","startDate":"2017-09-18","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"AMET, DOLOR SIT","endDate":"2014-08-26","startDate":"2023-02-11","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","endDate":"2018-06-11","startDate":"2021-07-07","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2014-06-22","startDate":"2015-10-13","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"IPSUM","endDate":"2015-11-12","startDate":"2020-10-28","notes":"","roles":["ORGANIZATION"],"siteRegistry":false}],"associatedSites":[{"dateNoted":"2023-05-27","notes":"","parcelID":"19352","siteID":"16814","siteRegistry":true},{"dateNoted":"2014-06-01","notes":"","parcelID":"17872","siteID":"17561","siteRegistry":true},{"dateNoted":"2020-03-17","notes":"","parcelID":"16160","siteID":"15443","siteRegistry":false}]},{"uuid":"597551c6-ad26-4b5e-8b17-4de3e2afb7e2","siteID":20517,"address":"672 Eda Mission","latitude":54.103,"longitude":-130.2468,"lastUpdated":"2021-10-31","city":"West Bobbie","region":"Kootenay","victoriaFile":"26250-20/13394","regionalFile":"N/A","parcelIDs":[1139724,9799529,2735581,1661611,1527164],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2016-04-30","completed":"2021-05-12","initiated":"2014-06-27","ministryContact":"VEUM MERLE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2016-08-28","completed":"2014-04-08","initiated":"2017-08-06","ministryContact":"EMMERICH KEYSHAWN","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2016-09-22","completed":"2023-07-13","initiated":"2015-07-20","ministryContact":"GULGOWSKI OSWALDO","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2023-07-20","completed":"2020-07-03","initiated":"2022-05-24","ministryContact":"HARRIS DESSIE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":false}],"participants":[{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2018-01-11","startDate":"2023-09-16","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"AMET, DOLOR SIT","endDate":"2015-12-28","startDate":"2022-02-11","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","endDate":"2017-10-01","startDate":"2013-12-01","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","endDate":"2021-11-23","startDate":"2018-11-14","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","endDate":"2017-12-16","startDate":"2017-01-05","notes":"","roles":["ORGANIZATION"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2017-12-17","notes":"","parcelID":"17476","siteID":"18753","siteRegistry":true}]},{"uuid":"64e0967f-c03c-4eec-975a-a4b5c5b9e79e","siteID":18652,"address":"897 Jimmy Locks","latitude":56.4339,"longitude":-123.9765,"lastUpdated":"2019-08-30","city":"New Ayden","region":"Mainland/Southwest","victoriaFile":"26250-20/15259","regionalFile":"N/A","parcelIDs":[1280839,2548292,368425,4716930,5127896],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2016-10-25","completed":"2022-02-20","initiated":"2014-01-06","ministryContact":"ROMAGUERA LULA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2020-03-17","completed":"2015-02-23","initiated":"2018-05-23","ministryContact":"LITTLE MARQUIS","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2015-02-27","completed":"2020-08-28","initiated":"2019-08-12","ministryContact":"HOPPE-CORKERY EDGAR","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2019-11-12","completed":"2021-06-22","initiated":"2017-05-03","ministryContact":"RITCHIE GEO","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":true}],"participants":[{"name":"AMET, DOLOR SIT","endDate":"2019-12-26","startDate":"2023-09-11","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","endDate":"2016-05-15","startDate":"2021-02-28","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"IPSUM","endDate":"2017-06-15","startDate":"2013-12-10","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"IPSUM","endDate":"2018-03-28","startDate":"2016-04-29","notes":"","roles":["ORGANIZATION"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2018-05-26","notes":"","parcelID":"18765","siteID":"19314","siteRegistry":false}]},{"uuid":"c4bade3a-a4a6-40a6-9d20-b24714789fda","siteID":20223,"address":"55795 Martina Harbor","latitude":54.2217,"longitude":-129.856,"lastUpdated":"2022-02-03","city":"Virginia Beach","region":"Mainland/Southwest","victoriaFile":"26250-20/15570","regionalFile":"N/A","parcelIDs":[9524181,5327206,6235025,8439421,303716],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2013-10-23","completed":"2018-08-21","initiated":"2018-06-01","ministryContact":"RITCHIE STEVE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2015-11-10","completed":"2023-02-12","initiated":"2017-06-06","ministryContact":"DICKINSON TERRY","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":false}],"participants":[{"name":"AMET, DOLOR SIT","endDate":"2023-09-02","startDate":"2015-07-23","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"IPSUM","endDate":"2017-07-03","startDate":"2017-08-06","notes":"","roles":["ORGANIZATION"],"siteRegistry":false}],"associatedSites":[{"dateNoted":"2014-03-24","notes":"","parcelID":"17437","siteID":"20692","siteRegistry":false},{"dateNoted":"2018-09-14","notes":"","parcelID":"19597","siteID":"18528","siteRegistry":true}]},{"uuid":"fefcaef8-7071-4766-9b95-69f5dc076816","siteID":17412,"address":"56355 Mertie Summit","latitude":55.6813,"longitude":-128.5863,"lastUpdated":"2020-01-29","city":"Lueland","region":"Kootenay","victoriaFile":"26250-20/10479","regionalFile":"N/A","parcelIDs":[2758937,5162357,3736750,2791670,1901387],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2019-11-11","completed":"2018-01-09","initiated":"2018-05-04","ministryContact":"TRANTOW KENNEDY","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2023-07-25","completed":"2017-08-07","initiated":"2018-04-25","ministryContact":"STREICH ALANNA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":false}],"participants":[{"name":"SHELL CANADA PRODUCTS","endDate":"2014-05-26","startDate":"2019-07-31","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"AMET, DOLOR SIT","endDate":"2021-04-17","startDate":"2018-01-11","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","endDate":"2013-10-09","startDate":"2016-03-22","notes":"","roles":["EMPLOYEE"],"siteRegistry":false}],"associatedSites":[{"dateNoted":"2016-04-14","notes":"","parcelID":"20686","siteID":"15273","siteRegistry":true},{"dateNoted":"2022-11-26","notes":"","parcelID":"20551","siteID":"18274","siteRegistry":false},{"dateNoted":"2022-04-05","notes":"","parcelID":"18322","siteID":"17151","siteRegistry":true}]},{"uuid":"2a1b2c4b-37e1-4f63-bf93-3230e0705ffa","siteID":17561,"address":"139 Abelardo Valleys","latitude":49.2302,"longitude":-133.2327,"lastUpdated":"2021-09-13","city":"Donnyside","region":"Thompson-Okanagan","victoriaFile":"26250-20/14591","regionalFile":"N/A","parcelIDs":[891982,7917664,5529895,5249429,3952803],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2021-02-13","completed":"2020-03-23","initiated":"2019-06-21","ministryContact":"BEAHAN MARJOLAINE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2016-03-15","completed":"2019-02-16","initiated":"2020-10-04","ministryContact":"HODKIEWICZ ARNALDO","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2015-08-06","completed":"2013-11-10","initiated":"2015-08-30","ministryContact":"HODKIEWICZ CORA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2020-09-05","completed":"2014-05-27","initiated":"2021-01-28","ministryContact":"MCKENZIE KELTON","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false}],"participants":[{"name":"AMET, DOLOR SIT","endDate":"2022-01-26","startDate":"2017-12-21","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"IPSUM","endDate":"2014-12-17","startDate":"2017-04-20","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"AMET, DOLOR SIT","endDate":"2016-06-17","startDate":"2022-04-23","notes":"","roles":["EMPLOYEE"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2016-11-20","notes":"","parcelID":"17665","siteID":"19854","siteRegistry":true},{"dateNoted":"2022-10-17","notes":"","parcelID":"19629","siteID":"15577","siteRegistry":false},{"dateNoted":"2016-11-21","notes":"","parcelID":"19324","siteID":"17036","siteRegistry":true}]},{"uuid":"41408ef0-dc4b-4703-8206-af38b0d28f1f","siteID":17164,"address":"1934 Abel Light","latitude":54.2901,"longitude":-127.9394,"lastUpdated":"2020-02-28","city":"Fort Lamarfurt","region":"Thompson-Okanagan","victoriaFile":"26250-20/16622","regionalFile":"N/A","parcelIDs":[1731151,6955204,3342106,4929251,4825325],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2019-07-04","completed":"2020-08-02","initiated":"2017-04-16","ministryContact":"ARMSTRONG-MEDHURST JO","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2020-01-22","completed":"2022-01-04","initiated":"2014-08-01","ministryContact":"JONES LIBBY","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false}],"participants":[{"name":"AMET, DOLOR SIT","endDate":"2017-06-03","startDate":"2017-06-13","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2015-07-02","startDate":"2016-06-09","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","endDate":"2019-02-13","startDate":"2019-09-23","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","endDate":"2019-02-22","startDate":"2014-10-28","notes":"","roles":["EMPLOYEE"],"siteRegistry":false}],"associatedSites":[{"dateNoted":"2016-05-03","notes":"","parcelID":"18299","siteID":"17317","siteRegistry":false},{"dateNoted":"2021-12-01","notes":"","parcelID":"17593","siteID":"19092","siteRegistry":true}]},{"uuid":"a540aa5d-92e1-43d8-8c88-853d13c79647","siteID":17322,"address":"56826 Jeffry Path","latitude":58.8625,"longitude":-135.1038,"lastUpdated":"2021-02-02","city":"Noblesville","region":"Thompson-Okanagan","victoriaFile":"26250-20/18651","regionalFile":"N/A","parcelIDs":[6545626,4726093,5322043,9113661,1894520],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2018-03-10","completed":"2017-11-10","initiated":"2019-05-14","ministryContact":"BROWN KHALIL","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2023-07-17","completed":"2021-10-10","initiated":"2013-10-14","ministryContact":"BARTOLETTI GRANVILLE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2018-11-17","completed":"2014-03-26","initiated":"2022-04-25","ministryContact":"KRAJCIK NATHEN","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2021-09-08","completed":"2017-07-07","initiated":"2023-01-04","ministryContact":"SPENCER RAY","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2013-10-27","completed":"2023-04-27","initiated":"2016-06-21","ministryContact":"BECHTELAR NORA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":false}],"participants":[{"name":"IPSUM","endDate":"2015-08-27","startDate":"2021-05-06","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2020-11-18","startDate":"2015-11-05","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","endDate":"2017-01-28","startDate":"2021-11-20","notes":"","roles":["EMPLOYEE"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2020-07-02","notes":"","parcelID":"20566","siteID":"15212","siteRegistry":false},{"dateNoted":"2016-05-31","notes":"","parcelID":"17256","siteID":"19457","siteRegistry":false}]},{"uuid":"790b3fc9-668c-48eb-bdd3-721c0a526c65","siteID":16487,"address":"704 Gina Avenue","latitude":54.1093,"longitude":-131.7961,"lastUpdated":"2022-01-01","city":"Kannapolis","region":"Vancouver Island/Coast","victoriaFile":"26250-20/4907","regionalFile":"N/A","parcelIDs":[2021547,3584107,9244753,8659329,7512143],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2016-12-26","completed":"2015-02-21","initiated":"2014-12-31","ministryContact":"OLSON LEXI","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2018-01-01","completed":"2016-02-10","initiated":"2019-10-06","ministryContact":"D'AMORE JEREMY","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2017-12-06","completed":"2020-01-18","initiated":"2014-05-19","ministryContact":"BERNIER GRANVILLE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":false}],"participants":[{"name":"SHELL CANADA PRODUCTS","endDate":"2021-10-07","startDate":"2015-02-10","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"AMET, DOLOR SIT","endDate":"2023-07-07","startDate":"2020-03-30","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2015-01-17","startDate":"2017-12-28","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"AMET, DOLOR SIT","endDate":"2020-10-26","startDate":"2016-07-26","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2021-09-04","startDate":"2015-02-09","notes":"","roles":["ORGANIZATION"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2021-11-15","notes":"","parcelID":"18411","siteID":"15375","siteRegistry":false},{"dateNoted":"2022-11-16","notes":"","parcelID":"20896","siteID":"17180","siteRegistry":false},{"dateNoted":"2015-12-15","notes":"","parcelID":"17879","siteID":"19728","siteRegistry":false}]},{"uuid":"d1c1687b-4700-488d-ae1e-39926baaad06","siteID":15775,"address":"214 Bret Ways","latitude":51.1366,"longitude":-132.4484,"lastUpdated":"2017-09-08","city":"Kennaboro","region":"Vancouver Island/Coast","victoriaFile":"26250-20/13621","regionalFile":"N/A","parcelIDs":[1319317,7440319,603380,4097870,9675862],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2017-12-08","completed":"2017-04-17","initiated":"2022-12-21","ministryContact":"FRANEY ROY","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2017-02-21","completed":"2022-12-20","initiated":"2022-03-16","ministryContact":"SENGER OSWALD","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":false}],"participants":[{"name":"IPSUM","endDate":"2022-08-04","startDate":"2021-07-26","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","endDate":"2021-03-04","startDate":"2014-03-25","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","endDate":"2021-02-06","startDate":"2021-07-24","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"IPSUM","endDate":"2016-01-09","startDate":"2017-10-15","notes":"","roles":["EMPLOYEE"],"siteRegistry":false}],"associatedSites":[{"dateNoted":"2015-02-17","notes":"","parcelID":"18238","siteID":"15919","siteRegistry":true}]},{"uuid":"f2d07011-6abd-419c-bdb5-44a19807fb83","siteID":19092,"address":"756 Ratke Hills","latitude":54.3936,"longitude":-131.5761,"lastUpdated":"2015-09-11","city":"North Eusebio","region":"Thompson-Okanagan","victoriaFile":"26250-20/3265","regionalFile":"N/A","parcelIDs":[6192270,3846388,8602072,8036326,9693418],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2015-03-17","completed":"2014-10-21","initiated":"2018-10-07","ministryContact":"GERHOLD WANDA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2016-11-29","completed":"2018-03-29","initiated":"2017-03-28","ministryContact":"HOPPE KENTON","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2018-06-11","completed":"2016-07-02","initiated":"2022-06-04","ministryContact":"DIBBERT ROBIN","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2020-02-23","completed":"2022-06-02","initiated":"2015-05-13","ministryContact":"LABADIE LAVADA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2019-07-05","completed":"2020-05-03","initiated":"2017-02-07","ministryContact":"LARKIN ALISHA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":true}],"participants":[{"name":"IPSUM","endDate":"2017-11-09","startDate":"2023-05-13","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","endDate":"2021-06-30","startDate":"2014-02-28","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"AMET, DOLOR SIT","endDate":"2022-07-04","startDate":"2016-07-17","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"IPSUM","endDate":"2014-12-23","startDate":"2017-08-19","notes":"","roles":["EMPLOYEE"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2022-09-24","notes":"","parcelID":"20151","siteID":"18771","siteRegistry":false}]},{"uuid":"12fe2001-3c28-4cd6-abd0-05e979c25430","siteID":18528,"address":"67153 Leonel Meadows","latitude":54.3645,"longitude":-123.1792,"lastUpdated":"2021-04-11","city":"Dockstead","region":"Mainland/Southwest","victoriaFile":"26250-20/7833","regionalFile":"N/A","parcelIDs":[5137809,5877336,2673564,7821967,9276244],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2023-03-15","completed":"2018-01-09","initiated":"2019-12-11","ministryContact":"KOZEY TIANA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2014-09-26","completed":"2016-02-24","initiated":"2023-05-29","ministryContact":"REMPEL KALEY","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2022-01-31","completed":"2020-12-31","initiated":"2022-04-12","ministryContact":"JONES BAYLEE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2020-03-21","completed":"2013-10-20","initiated":"2021-08-07","ministryContact":"GRANT DAMIAN","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2021-02-21","completed":"2018-10-23","initiated":"2021-06-01","ministryContact":"MCKENZIE CHELSIE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":true}],"participants":[{"name":"AMET, DOLOR SIT","endDate":"2020-07-15","startDate":"2014-06-04","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"IPSUM","endDate":"2017-07-08","startDate":"2014-09-26","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"IPSUM","endDate":"2019-03-16","startDate":"2014-03-10","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2023-08-11","startDate":"2019-06-10","notes":"","roles":["EMPLOYEE"],"siteRegistry":false}],"associatedSites":[{"dateNoted":"2013-10-18","notes":"","parcelID":"19180","siteID":"15666","siteRegistry":false},{"dateNoted":"2016-04-30","notes":"","parcelID":"16115","siteID":"19837","siteRegistry":true},{"dateNoted":"2018-12-25","notes":"","parcelID":"17111","siteID":"19536","siteRegistry":false}]},{"uuid":"e0b39f0a-8d46-4ed9-8961-e6fe6bcdba05","siteID":19550,"address":"96242 Mohamed Brooks","latitude":49.848,"longitude":-130.2878,"lastUpdated":"2020-08-07","city":"Lindsayview","region":" North Coast","victoriaFile":"26250-20/19390","regionalFile":"N/A","parcelIDs":[1229483,2922774,8214940,7632063,8719043],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2016-03-28","completed":"2019-06-14","initiated":"2023-07-12","ministryContact":"LAKIN ALVERTA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2017-11-27","completed":"2014-01-12","initiated":"2016-05-02","ministryContact":"FAHEY CHESLEY","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2015-11-09","completed":"2020-06-19","initiated":"2017-08-27","ministryContact":"O'HARA TAD","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":false}],"participants":[{"name":"IPSUM","endDate":"2016-01-27","startDate":"2017-03-27","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","endDate":"2020-08-18","startDate":"2020-06-28","notes":"","roles":["EMPLOYEE"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2020-08-11","notes":"","parcelID":"19501","siteID":"20947","siteRegistry":false},{"dateNoted":"2014-01-03","notes":"","parcelID":"16074","siteID":"19773","siteRegistry":false},{"dateNoted":"2014-02-10","notes":"","parcelID":"16913","siteID":"18497","siteRegistry":false}]},{"uuid":"ac395d3d-e3a4-44f1-a8b6-d7ca2b8ec303","siteID":19005,"address":"443 Ondricka Forks","latitude":49.2118,"longitude":-133.1714,"lastUpdated":"2023-07-02","city":"Douglasworth","region":"Thompson-Okanagan","victoriaFile":"26250-20/8656","regionalFile":"N/A","parcelIDs":[3477288,731906,1133215,845320,3261403],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2022-08-07","completed":"2017-02-20","initiated":"2017-07-07","ministryContact":"BAILEY-MCKENZIE BRIDIE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2014-05-30","completed":"2023-05-19","initiated":"2015-04-11","ministryContact":"BRADTKE FAE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2018-09-30","completed":"2017-10-23","initiated":"2022-10-31","ministryContact":"ANDERSON HELEN","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2021-06-06","completed":"2019-04-23","initiated":"2015-03-12","ministryContact":"GERHOLD ANTONETTE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false}],"participants":[{"name":"IPSUM","endDate":"2016-06-21","startDate":"2017-12-05","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","endDate":"2018-01-20","startDate":"2016-03-03","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","endDate":"2014-01-19","startDate":"2016-05-16","notes":"","roles":["ORGANIZATION"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2018-05-09","notes":"","parcelID":"20370","siteID":"19391","siteRegistry":true},{"dateNoted":"2017-06-03","notes":"","parcelID":"20115","siteID":"19075","siteRegistry":false},{"dateNoted":"2021-02-23","notes":"","parcelID":"17340","siteID":"19550","siteRegistry":true}]},{"uuid":"c925aef6-ee3c-4ebd-86a9-3037efa59f1d","siteID":20017,"address":"6596 Predovic Mission","latitude":57.3614,"longitude":-138.4773,"lastUpdated":"2016-12-25","city":"West Dionport","region":" North Coast","victoriaFile":"26250-20/3709","regionalFile":"N/A","parcelIDs":[6111231,1324376,1316387,3446948,1371821],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2022-05-10","completed":"2015-12-30","initiated":"2017-02-09","ministryContact":"BALISTRERI EMERALD","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2018-11-05","completed":"2022-03-15","initiated":"2022-02-09","ministryContact":"RUECKER RENE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2019-08-01","completed":"2015-10-07","initiated":"2015-08-30","ministryContact":"KIHN ROSALIA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":true}],"participants":[{"name":"IPSUM","endDate":"2019-05-27","startDate":"2021-05-04","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2020-10-13","startDate":"2020-07-24","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"AMET, DOLOR SIT","endDate":"2019-06-10","startDate":"2015-09-24","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"AMET, DOLOR SIT","endDate":"2016-12-10","startDate":"2023-03-30","notes":"","roles":["EMPLOYEE"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2022-03-21","notes":"","parcelID":"20153","siteID":"20758","siteRegistry":false},{"dateNoted":"2015-04-04","notes":"","parcelID":"16585","siteID":"15822","siteRegistry":false}]},{"uuid":"69c06182-5465-4d01-8df1-39997f548195","siteID":15351,"address":"60465 Jeromy Rapids","latitude":50.7385,"longitude":-137.2814,"lastUpdated":"2020-10-01","city":"Emersonborough","region":"Vancouver Island/Coast","victoriaFile":"26250-20/8018","regionalFile":"N/A","parcelIDs":[8771897,7252359,7926200,9971863,1736500],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2018-11-06","completed":"2021-05-30","initiated":"2014-01-13","ministryContact":"PADBERG CAITLYN","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2020-05-31","completed":"2021-07-25","initiated":"2016-03-05","ministryContact":"ROGAHN TAMIA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2019-05-31","completed":"2023-01-24","initiated":"2015-04-04","ministryContact":"KREIGER ANTONE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2022-07-04","completed":"2022-11-12","initiated":"2022-03-21","ministryContact":"SANFORD ADELIA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":false}],"participants":[{"name":"SHELL CANADA PRODUCTS","endDate":"2020-03-23","startDate":"2014-05-27","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"AMET, DOLOR SIT","endDate":"2018-06-09","startDate":"2016-12-07","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"AMET, DOLOR SIT","endDate":"2018-07-07","startDate":"2018-02-19","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"AMET, DOLOR SIT","endDate":"2018-08-09","startDate":"2014-11-22","notes":"","roles":["EMPLOYEE"],"siteRegistry":false}],"associatedSites":[{"dateNoted":"2015-12-31","notes":"","parcelID":"17269","siteID":"20717","siteRegistry":true},{"dateNoted":"2023-06-30","notes":"","parcelID":"16559","siteID":"15222","siteRegistry":true}]},{"uuid":"e2d3fe38-de90-4e13-aab5-0a7ad70f0af3","siteID":18049,"address":"9839 Bins Corner","latitude":57.9594,"longitude":-118.2171,"lastUpdated":"2023-03-17","city":"East Freddie","region":"Mainland/Southwest","victoriaFile":"26250-20/6847","regionalFile":"N/A","parcelIDs":[468392,6423278,9968335,2105040,3469057],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2016-07-14","completed":"2021-02-23","initiated":"2015-10-29","ministryContact":"RUECKER-O'REILLY ZACHARIAH","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2020-06-29","completed":"2014-09-06","initiated":"2017-11-10","ministryContact":"PROHASKA STEFANIE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2017-06-25","completed":"2015-04-09","initiated":"2018-05-18","ministryContact":"SCHUPPE ELLIOT","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2016-07-31","completed":"2022-07-12","initiated":"2021-08-03","ministryContact":"BOTSFORD SHANNA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2023-01-16","completed":"2022-08-15","initiated":"2022-10-14","ministryContact":"ULLRICH BRANDO","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":true}],"participants":[{"name":"SHELL CANADA PRODUCTS","endDate":"2018-04-26","startDate":"2015-03-02","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","endDate":"2023-03-20","startDate":"2014-01-19","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"AMET, DOLOR SIT","endDate":"2014-09-17","startDate":"2014-12-13","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2020-05-10","startDate":"2019-03-21","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"IPSUM","endDate":"2023-07-22","startDate":"2020-02-26","notes":"","roles":["EMPLOYEE"],"siteRegistry":false}],"associatedSites":[{"dateNoted":"2020-11-02","notes":"","parcelID":"16593","siteID":"20858","siteRegistry":true},{"dateNoted":"2020-06-04","notes":"","parcelID":"16845","siteID":"18274","siteRegistry":true},{"dateNoted":"2020-09-06","notes":"","parcelID":"20801","siteID":"16557","siteRegistry":false}]},{"uuid":"4ce06820-1940-4419-a6b7-51efb308080f","siteID":17976,"address":"3093 Nolan Harbors","latitude":58.0529,"longitude":-121.2204,"lastUpdated":"2021-01-08","city":"Grand Junction","region":" North Coast","victoriaFile":"26250-20/13526","regionalFile":"N/A","parcelIDs":[6775251,2867852,9805359,5801175,747986],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2021-08-15","completed":"2017-01-09","initiated":"2017-10-19","ministryContact":"SCHOEN ALEJANDRIN","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2018-06-16","completed":"2014-06-30","initiated":"2014-04-12","ministryContact":"DOYLE GIOVANNY","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2020-02-04","completed":"2022-02-02","initiated":"2019-10-11","ministryContact":"SCHROEDER DANE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":false}],"participants":[{"name":"AMET, DOLOR SIT","endDate":"2015-07-14","startDate":"2017-05-19","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"IPSUM","endDate":"2022-03-16","startDate":"2021-03-09","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","endDate":"2021-04-07","startDate":"2019-08-17","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2014-08-13","startDate":"2017-10-30","notes":"","roles":["ORGANIZATION"],"siteRegistry":false}],"associatedSites":[{"dateNoted":"2017-06-08","notes":"","parcelID":"20777","siteID":"15792","siteRegistry":false},{"dateNoted":"2017-06-21","notes":"","parcelID":"19972","siteID":"18319","siteRegistry":true}]},{"uuid":"6a244184-0958-4ce6-a5b7-1e4fdae22250","siteID":19903,"address":"1531 Tabitha Dale","latitude":57.3701,"longitude":-124.6439,"lastUpdated":"2022-08-21","city":"East Jedport","region":"Vancouver Island/Coast","victoriaFile":"26250-20/12472","regionalFile":"N/A","parcelIDs":[4150698,2863005,3567150,1064934,7343086],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2019-05-29","completed":"2019-04-20","initiated":"2021-05-18","ministryContact":"MCGLYNN ALVAH","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2021-08-25","completed":"2022-01-03","initiated":"2015-04-25","ministryContact":"CUMMINGS AMELIA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2023-06-12","completed":"2016-08-11","initiated":"2022-02-25","ministryContact":"POWLOWSKI KALLIE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false}],"participants":[{"name":"IPSUM","endDate":"2018-11-06","startDate":"2019-01-30","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"IPSUM","endDate":"2020-04-06","startDate":"2016-02-29","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"IPSUM","endDate":"2018-07-31","startDate":"2016-03-09","notes":"","roles":["EMPLOYEE"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2021-10-01","notes":"","parcelID":"19143","siteID":"19603","siteRegistry":false},{"dateNoted":"2013-10-16","notes":"","parcelID":"18434","siteID":"17448","siteRegistry":false},{"dateNoted":"2023-04-01","notes":"","parcelID":"18652","siteID":"20906","siteRegistry":false}]},{"uuid":"d90387ef-355f-4a2f-b0c9-a136d094b69b","siteID":15577,"address":"2114 Gleichner Row","latitude":50.4037,"longitude":-124.4013,"lastUpdated":"2022-09-03","city":"Cincinnati","region":" North Coast","victoriaFile":"26250-20/8678","regionalFile":"N/A","parcelIDs":[3256572,2301207,3253214,606655,7089078],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2015-09-12","completed":"2021-08-06","initiated":"2016-07-12","ministryContact":"LANG ISRAEL","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2014-06-17","completed":"2017-05-11","initiated":"2020-05-12","ministryContact":"STOKES KAILYN","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2023-07-12","completed":"2022-03-30","initiated":"2018-06-04","ministryContact":"BORER LEXIE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2013-11-11","completed":"2023-08-03","initiated":"2014-04-21","ministryContact":"MCGLYNN RANDALL","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":true}],"participants":[{"name":"AMET, DOLOR SIT","endDate":"2023-02-12","startDate":"2014-06-25","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"IPSUM","endDate":"2016-10-25","startDate":"2016-02-29","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"AMET, DOLOR SIT","endDate":"2021-07-16","startDate":"2014-11-24","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"AMET, DOLOR SIT","endDate":"2022-09-22","startDate":"2014-06-01","notes":"","roles":["EMPLOYEE"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2022-03-29","notes":"","parcelID":"17791","siteID":"15656","siteRegistry":true}]},{"uuid":"ab00ee36-be34-4f10-bfad-89c1432401f3","siteID":17057,"address":"8363 Schiller Field","latitude":48.9741,"longitude":-126.1936,"lastUpdated":"2019-03-22","city":"Majorport","region":"Vancouver Island/Coast","victoriaFile":"26250-20/16414","regionalFile":"N/A","parcelIDs":[8872249,8753663,4001393,5470821,3359035],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2014-09-26","completed":"2013-11-02","initiated":"2021-03-27","ministryContact":"SWIFT DELIA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2015-07-16","completed":"2020-06-01","initiated":"2015-09-07","ministryContact":"WARD HAROLD","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2021-09-07","completed":"2018-05-24","initiated":"2021-03-29","ministryContact":"STAMM RENE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2019-04-25","completed":"2016-09-24","initiated":"2019-01-19","ministryContact":"CRUICKSHANK ERICK","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":false}],"participants":[{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2017-10-13","startDate":"2019-12-23","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","endDate":"2022-07-21","startDate":"2021-02-09","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2015-02-03","startDate":"2020-01-12","notes":"","roles":["EMPLOYEE"],"siteRegistry":false}],"associatedSites":[{"dateNoted":"2019-02-14","notes":"","parcelID":"20081","siteID":"19897","siteRegistry":false},{"dateNoted":"2014-11-27","notes":"","parcelID":"19046","siteID":"19351","siteRegistry":true},{"dateNoted":"2018-08-17","notes":"","parcelID":"20554","siteID":"19039","siteRegistry":true}]},{"uuid":"850851e6-37d2-4a5e-a954-0f450d4e4329","siteID":19037,"address":"48047 Shemar Brook","latitude":54.3772,"longitude":-121.2118,"lastUpdated":"2023-05-30","city":"Schultzberg","region":" North Coast","victoriaFile":"26250-20/18925","regionalFile":"N/A","parcelIDs":[7979273,701794,2969400,7529479,9198961],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2014-01-20","completed":"2021-12-18","initiated":"2019-09-19","ministryContact":"FLATLEY-LEBSACK VERDA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2013-11-18","completed":"2016-06-27","initiated":"2018-11-26","ministryContact":"DACH EVALYN","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2020-05-14","completed":"2022-04-19","initiated":"2022-12-29","ministryContact":"MOEN DREW","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2014-02-02","completed":"2017-05-26","initiated":"2022-04-10","ministryContact":"D'AMORE WILLIS","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":true}],"participants":[{"name":"AMET, DOLOR SIT","endDate":"2016-12-29","startDate":"2017-04-26","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","endDate":"2018-05-19","startDate":"2020-12-30","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2017-03-25","startDate":"2016-06-29","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","endDate":"2020-08-14","startDate":"2023-06-30","notes":"","roles":["ORGANIZATION"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2023-07-06","notes":"","parcelID":"15713","siteID":"18497","siteRegistry":false}]},{"uuid":"3c9a2d33-cf8c-46dd-aad3-285fee3aee2f","siteID":17567,"address":"6875 Javonte Mews","latitude":48.6385,"longitude":-124.1532,"lastUpdated":"2022-02-09","city":"New Graciela","region":"Vancouver Island/Coast","victoriaFile":"26250-20/11223","regionalFile":"N/A","parcelIDs":[6499946,7476585,8975223,176689,1074160],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2021-06-02","completed":"2016-02-01","initiated":"2022-08-01","ministryContact":"BALISTRERI AIDAN","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2018-11-30","completed":"2015-01-29","initiated":"2015-07-08","ministryContact":"BRAKUS EPHRAIM","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2017-09-27","completed":"2022-11-19","initiated":"2018-05-19","ministryContact":"HAGENES VICKIE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":true}],"participants":[{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2022-11-19","startDate":"2020-05-08","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"AMET, DOLOR SIT","endDate":"2018-10-25","startDate":"2015-05-07","notes":"","roles":["ORGANIZATION"],"siteRegistry":false}],"associatedSites":[{"dateNoted":"2020-08-04","notes":"","parcelID":"15405","siteID":"19897","siteRegistry":true},{"dateNoted":"2015-08-31","notes":"","parcelID":"19306","siteID":"18775","siteRegistry":true},{"dateNoted":"2016-11-01","notes":"","parcelID":"18600","siteID":"18047","siteRegistry":false}]},{"uuid":"fb37aab9-9681-46f9-81a2-8aea69e193e5","siteID":19897,"address":"32697 Luettgen Mews","latitude":57.6132,"longitude":-135.4502,"lastUpdated":"2019-02-06","city":"Fort Rachelle","region":"Mainland/Southwest","victoriaFile":"26250-20/8542","regionalFile":"N/A","parcelIDs":[2435849,5928742,6482967,8361599,5689784],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2017-01-26","completed":"2022-10-09","initiated":"2014-08-05","ministryContact":"KOCH TYREL","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2020-07-23","completed":"2014-12-03","initiated":"2019-07-16","ministryContact":"CORMIER NOEMIE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2021-03-31","completed":"2014-11-02","initiated":"2016-11-08","ministryContact":"WEBER EMELIE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2020-10-05","completed":"2019-01-08","initiated":"2021-06-28","ministryContact":"STEUBER ALEXANDREA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2021-10-25","completed":"2016-01-30","initiated":"2019-05-28","ministryContact":"LEHNER ILIANA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":false}],"participants":[{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2020-03-24","startDate":"2015-01-19","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","endDate":"2020-12-22","startDate":"2017-08-23","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"AMET, DOLOR SIT","endDate":"2019-08-25","startDate":"2016-06-08","notes":"","roles":["ORGANIZATION"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2015-02-07","notes":"","parcelID":"19051","siteID":"17976","siteRegistry":false},{"dateNoted":"2018-07-13","notes":"","parcelID":"15677","siteID":"19243","siteRegistry":true},{"dateNoted":"2022-08-06","notes":"","parcelID":"19297","siteID":"15666","siteRegistry":false}]},{"uuid":"1dbc6327-2701-4793-81cb-748c17cea261","siteID":17518,"address":"2780 Zulauf Knolls","latitude":55.4365,"longitude":-129.1951,"lastUpdated":"2017-01-07","city":"New Rossie","region":"Mainland/Southwest","victoriaFile":"26250-20/11766","regionalFile":"N/A","parcelIDs":[6874021,7358011,4566935,3152145,3722948],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2019-06-08","completed":"2016-07-02","initiated":"2014-08-23","ministryContact":"LARSON ELIANE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2016-03-25","completed":"2022-01-20","initiated":"2014-07-09","ministryContact":"PADBERG VANESSA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":true}],"participants":[{"name":"AMET, DOLOR SIT","endDate":"2021-08-25","startDate":"2017-06-07","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","endDate":"2019-07-18","startDate":"2019-04-15","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"AMET, DOLOR SIT","endDate":"2017-06-26","startDate":"2023-06-25","notes":"","roles":["ORGANIZATION"],"siteRegistry":false}],"associatedSites":[{"dateNoted":"2023-08-29","notes":"","parcelID":"18275","siteID":"15222","siteRegistry":false},{"dateNoted":"2014-03-02","notes":"","parcelID":"16679","siteID":"20717","siteRegistry":false},{"dateNoted":"2021-06-15","notes":"","parcelID":"20202","siteID":"16673","siteRegistry":true}]},{"uuid":"0c954b38-7607-4be2-9a98-618d949109f4","siteID":19039,"address":"955 Blair Village","latitude":50.7317,"longitude":-135.4352,"lastUpdated":"2016-03-27","city":"Gradyboro","region":"Cariboo","victoriaFile":"26250-20/5203","regionalFile":"N/A","parcelIDs":[7347772,6063762,7838760,1868462,7361451],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2019-03-20","completed":"2019-10-18","initiated":"2016-01-04","ministryContact":"LEMKE WILHELMINE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2023-08-12","completed":"2015-12-06","initiated":"2014-11-23","ministryContact":"OLSON-ERDMAN LINDSAY","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2019-04-26","completed":"2016-05-20","initiated":"2022-07-01","ministryContact":"O'CONNELL THEODORA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2019-09-05","completed":"2022-06-03","initiated":"2021-10-23","ministryContact":"MCKENZIE MARGOT","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2021-05-24","completed":"2018-03-04","initiated":"2019-05-28","ministryContact":"JENKINS DEBORAH","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":true}],"participants":[{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2019-11-23","startDate":"2020-11-20","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","endDate":"2022-02-24","startDate":"2021-10-11","notes":"","roles":["EMPLOYEE"],"siteRegistry":false}],"associatedSites":[{"dateNoted":"2019-06-19","notes":"","parcelID":"18095","siteID":"20017","siteRegistry":true},{"dateNoted":"2016-12-08","notes":"","parcelID":"17944","siteID":"15656","siteRegistry":true}]},{"uuid":"d61bf6df-f5f7-4843-88b9-2a77069cfdb1","siteID":16966,"address":"51575 Brianne Throughway","latitude":49.0904,"longitude":-134.9505,"lastUpdated":"2015-07-09","city":"Mustafaland","region":"Kootenay","victoriaFile":"26250-20/14166","regionalFile":"N/A","parcelIDs":[9075448,708597,121240,6708919,8312465],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2016-11-19","completed":"2019-12-01","initiated":"2014-08-01","ministryContact":"MCKENZIE MACK","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2020-09-16","completed":"2017-10-28","initiated":"2015-04-21","ministryContact":"DOUGLAS EZRA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2016-09-30","completed":"2016-08-06","initiated":"2017-08-01","ministryContact":"DICKINSON KRYSTAL","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2022-12-30","completed":"2020-12-24","initiated":"2013-10-05","ministryContact":"NIKOLAUS VIRGINIA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":false}],"participants":[{"name":"SHELL CANADA PRODUCTS","endDate":"2021-09-26","startDate":"2018-01-11","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"AMET, DOLOR SIT","endDate":"2017-08-30","startDate":"2019-03-02","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","endDate":"2018-05-07","startDate":"2017-02-02","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2017-06-15","startDate":"2016-06-30","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"AMET, DOLOR SIT","endDate":"2017-01-29","startDate":"2018-09-18","notes":"","roles":["ORGANIZATION"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2023-08-02","notes":"","parcelID":"20047","siteID":"15822","siteRegistry":true}]},{"uuid":"ff1c4f62-75bf-4b4a-b777-fb2fc9b019c2","siteID":17908,"address":"604 Turcotte Ridge","latitude":55.2776,"longitude":-135.9238,"lastUpdated":"2014-12-20","city":"Mistytown","region":"Thompson-Okanagan","victoriaFile":"26250-20/7567","regionalFile":"N/A","parcelIDs":[9994175,7323560,2696498,4797949,5620375],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2015-02-05","completed":"2020-11-15","initiated":"2018-05-17","ministryContact":"CARTER BRAULIO","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2023-01-31","completed":"2023-07-01","initiated":"2019-03-29","ministryContact":"WILDERMAN ARLIE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2019-08-27","completed":"2021-03-09","initiated":"2017-11-07","ministryContact":"SIMONIS OSBALDO","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2017-02-22","completed":"2021-09-09","initiated":"2020-04-24","ministryContact":"GLEASON JODY","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":true}],"participants":[{"name":"AMET, DOLOR SIT","endDate":"2016-09-30","startDate":"2016-12-16","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"IPSUM","endDate":"2021-07-05","startDate":"2020-10-12","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"IPSUM","endDate":"2014-01-01","startDate":"2016-01-01","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"IPSUM","endDate":"2023-03-03","startDate":"2014-01-31","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"AMET, DOLOR SIT","endDate":"2021-06-15","startDate":"2019-07-02","notes":"","roles":["EMPLOYEE"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2017-03-01","notes":"","parcelID":"19396","siteID":"17164","siteRegistry":true},{"dateNoted":"2018-01-10","notes":"","parcelID":"20056","siteID":"18049","siteRegistry":true}]},{"uuid":"c0ea5231-3f5d-46ef-b7e3-39758b218e4c","siteID":19243,"address":"3464 Johnson Highway","latitude":52.9682,"longitude":-137.1133,"lastUpdated":"2017-12-14","city":"Oro Valley","region":"Vancouver Island/Coast","victoriaFile":"26250-20/5710","regionalFile":"N/A","parcelIDs":[8959265,3235001,9659890,1800927,9969802],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2023-05-25","completed":"2022-01-22","initiated":"2016-02-04","ministryContact":"GOLDNER JAVONTE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2023-07-25","completed":"2023-04-18","initiated":"2020-02-02","ministryContact":"BROWN LINDSAY","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2015-09-22","completed":"2019-12-08","initiated":"2021-03-03","ministryContact":"HACKETT DERICK","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2021-03-25","completed":"2017-05-03","initiated":"2021-12-28","ministryContact":"LARKIN LUIS","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":true}],"participants":[{"name":"AMET, DOLOR SIT","endDate":"2019-05-29","startDate":"2015-05-14","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"IPSUM","endDate":"2018-04-09","startDate":"2018-11-04","notes":"","roles":["ORGANIZATION"],"siteRegistry":false}],"associatedSites":[{"dateNoted":"2015-02-11","notes":"","parcelID":"17033","siteID":"16517","siteRegistry":false}]},{"uuid":"02abf5a8-5ea7-4c90-ad16-14f26eb286dd","siteID":17449,"address":"36335 Robbie Parkways","latitude":48.0459,"longitude":-133.973,"lastUpdated":"2015-06-12","city":"Lake Tobystead","region":"Thompson-Okanagan","victoriaFile":"26250-20/7211","regionalFile":"N/A","parcelIDs":[5248166,3199598,3050301,4330821,1936142],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2017-12-06","completed":"2014-12-06","initiated":"2018-10-29","ministryContact":"CORKERY ELSE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2016-02-21","completed":"2020-05-17","initiated":"2016-06-17","ministryContact":"FERRY TESS","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2014-06-22","completed":"2017-09-28","initiated":"2020-11-17","ministryContact":"BREKKE-MOHR SHANON","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2022-01-20","completed":"2018-01-25","initiated":"2021-11-06","ministryContact":"RITCHIE SHAYNE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":false}],"participants":[{"name":"IPSUM","endDate":"2019-02-05","startDate":"2020-12-07","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2015-05-17","startDate":"2019-12-07","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"IPSUM","endDate":"2020-09-21","startDate":"2019-09-25","notes":"","roles":["EMPLOYEE"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2022-04-21","notes":"","parcelID":"16345","siteID":"18026","siteRegistry":false}]},{"uuid":"9a05fbce-f459-45b9-ac22-31882b0ea384","siteID":16942,"address":"1563 Haag Courts","latitude":52.7198,"longitude":-120.6518,"lastUpdated":"2018-12-28","city":"Lake Rocioton","region":"Cariboo","victoriaFile":"26250-20/14521","regionalFile":"N/A","parcelIDs":[5439447,6835373,1072963,6951370,8370519],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2021-08-05","completed":"2021-11-26","initiated":"2020-04-23","ministryContact":"BOTSFORD GARRISON","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2020-12-26","completed":"2015-10-07","initiated":"2015-07-28","ministryContact":"ADAMS ROWLAND","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":false}],"participants":[{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2021-03-03","startDate":"2023-07-14","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","endDate":"2018-03-13","startDate":"2016-05-01","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","endDate":"2021-03-10","startDate":"2015-11-20","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2020-07-28","startDate":"2023-02-05","notes":"","roles":["ORGANIZATION"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2018-01-18","notes":"","parcelID":"16095","siteID":"19095","siteRegistry":false},{"dateNoted":"2017-06-24","notes":"","parcelID":"16538","siteID":"18126","siteRegistry":true}]},{"uuid":"e6cd058d-145f-4576-8829-da7baadcea47","siteID":18859,"address":"3183 Satterfield Isle","latitude":57.2433,"longitude":-130.2429,"lastUpdated":"2018-04-03","city":"West Novafurt","region":"Cariboo","victoriaFile":"26250-20/19670","regionalFile":"N/A","parcelIDs":[7431321,3485340,3318830,8066461,2648328],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2022-06-10","completed":"2016-10-21","initiated":"2015-04-18","ministryContact":"LYNCH CATERINA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2019-04-16","completed":"2023-05-20","initiated":"2023-09-15","ministryContact":"WINTHEISER NOEMI","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2021-10-22","completed":"2018-03-13","initiated":"2022-07-28","ministryContact":"GERHOLD ISAIAS","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false}],"participants":[{"name":"IPSUM","endDate":"2016-03-30","startDate":"2020-07-27","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","endDate":"2022-12-03","startDate":"2019-02-19","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","endDate":"2017-01-06","startDate":"2016-10-01","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"AMET, DOLOR SIT","endDate":"2018-07-20","startDate":"2014-05-15","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2018-01-21","startDate":"2017-12-17","notes":"","roles":["ORGANIZATION"],"siteRegistry":false}],"associatedSites":[{"dateNoted":"2022-07-29","notes":"","parcelID":"19098","siteID":"17012","siteRegistry":true},{"dateNoted":"2019-03-11","notes":"","parcelID":"19516","siteID":"20915","siteRegistry":true},{"dateNoted":"2021-12-02","notes":"","parcelID":"15757","siteID":"16634","siteRegistry":true}]},{"uuid":"92226058-dacb-4fc9-8f73-98fea5d6705e","siteID":15654,"address":"49244 Dare Lights","latitude":49.7365,"longitude":-124.8755,"lastUpdated":"2020-02-15","city":"South Estellafield","region":"Kootenay","victoriaFile":"26250-20/5204","regionalFile":"N/A","parcelIDs":[5050623,5238308,3915282,7004656,4862097],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2013-11-18","completed":"2022-05-27","initiated":"2022-02-08","ministryContact":"BEDNAR PEGGIE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2015-05-28","completed":"2019-05-18","initiated":"2021-05-08","ministryContact":"KONOPELSKI FORREST","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":false}],"participants":[{"name":"IPSUM","endDate":"2015-12-16","startDate":"2018-02-28","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"IPSUM","endDate":"2019-05-14","startDate":"2018-06-28","notes":"","roles":["ORGANIZATION"],"siteRegistry":false}],"associatedSites":[{"dateNoted":"2016-10-06","notes":"","parcelID":"18733","siteID":"20407","siteRegistry":true}]},{"uuid":"421ed4a8-c693-42fb-9484-e9fdb6ef0b39","siteID":18590,"address":"712 Nora Mews","latitude":50.6698,"longitude":-130.7698,"lastUpdated":"2017-11-26","city":"New Carissafort","region":"Kootenay","victoriaFile":"26250-20/14052","regionalFile":"N/A","parcelIDs":[4653158,8637617,3617586,3057464,2363528],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2019-07-29","completed":"2016-03-22","initiated":"2020-05-05","ministryContact":"RIPPIN ESTEVAN","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2021-03-28","completed":"2016-10-11","initiated":"2019-11-17","ministryContact":"LABADIE BROOKE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2022-02-21","completed":"2018-02-28","initiated":"2023-03-25","ministryContact":"PARKER ADELL","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2022-02-19","completed":"2016-11-28","initiated":"2018-08-24","ministryContact":"POUROS-MARVIN LORENZ","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2022-09-28","completed":"2021-03-28","initiated":"2016-10-11","ministryContact":"RATH JEROD","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false}],"participants":[{"name":"IPSUM","endDate":"2017-06-15","startDate":"2018-03-29","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"AMET, DOLOR SIT","endDate":"2022-06-03","startDate":"2023-07-24","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2013-11-26","startDate":"2021-08-18","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2014-03-07","startDate":"2021-10-03","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2020-01-10","startDate":"2013-11-07","notes":"","roles":["ORGANIZATION"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2023-08-13","notes":"","parcelID":"18650","siteID":"15543","siteRegistry":true},{"dateNoted":"2022-12-30","notes":"","parcelID":"20869","siteID":"18368","siteRegistry":false}]},{"uuid":"bfdbb5cd-403c-45bd-8e12-966c99be1e92","siteID":19914,"address":"1980 Carolyne Circles","latitude":55.2993,"longitude":-124.2175,"lastUpdated":"2017-10-24","city":"Fort Mckenzieborough","region":" North Coast","victoriaFile":"26250-20/3821","regionalFile":"N/A","parcelIDs":[8907318,311720,7351848,5054569,2171008],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2018-02-27","completed":"2022-05-15","initiated":"2013-11-03","ministryContact":"ARMSTRONG JAZLYN","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2020-05-25","completed":"2017-03-06","initiated":"2019-06-03","ministryContact":"SCHUMM BRENT","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2014-06-10","completed":"2017-07-04","initiated":"2018-11-10","ministryContact":"COLE SHERWOOD","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false}],"participants":[{"name":"SHELL CANADA PRODUCTS","endDate":"2017-09-18","startDate":"2021-02-02","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"AMET, DOLOR SIT","endDate":"2015-12-14","startDate":"2021-12-28","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"AMET, DOLOR SIT","endDate":"2015-03-11","startDate":"2017-05-10","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"IPSUM","endDate":"2017-04-06","startDate":"2021-09-17","notes":"","roles":["EMPLOYEE"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2016-06-27","notes":"","parcelID":"18548","siteID":"18162","siteRegistry":true}]},{"uuid":"580ccb10-1162-4e30-aee5-a2649dd74a0f","siteID":15513,"address":"1718 Collier Lights","latitude":48.4923,"longitude":-132.6128,"lastUpdated":"2019-08-25","city":"Spencerfurt","region":"Thompson-Okanagan","victoriaFile":"26250-20/6399","regionalFile":"N/A","parcelIDs":[5786539,8050444,9835857,7899567,3274058],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2019-02-21","completed":"2017-08-30","initiated":"2019-12-30","ministryContact":"MOORE KELVIN","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2023-02-28","completed":"2017-02-02","initiated":"2020-03-30","ministryContact":"FAHEY ERNA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2018-07-03","completed":"2022-06-02","initiated":"2022-10-10","ministryContact":"LEFFLER-ALTENWERTH EDWARD","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":true}],"participants":[{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2016-07-26","startDate":"2018-03-10","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2020-12-02","startDate":"2016-02-17","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","endDate":"2020-07-26","startDate":"2017-10-28","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"IPSUM","endDate":"2015-10-16","startDate":"2021-10-30","notes":"","roles":["EMPLOYEE"],"siteRegistry":false}],"associatedSites":[{"dateNoted":"2023-09-02","notes":"","parcelID":"20512","siteID":"17151","siteRegistry":false}]},{"uuid":"b2d22b21-ad17-41e7-aa9f-29f468549a52","siteID":16972,"address":"7014 Hammes Manors","latitude":49.1584,"longitude":-130.3932,"lastUpdated":"2020-09-03","city":"East Angieberg","region":"Thompson-Okanagan","victoriaFile":"26250-20/9979","regionalFile":"N/A","parcelIDs":[1959602,6875266,8549337,6568795,3225115],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2015-08-20","completed":"2020-10-22","initiated":"2018-12-19","ministryContact":"MCDERMOTT CAMILLE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2015-03-29","completed":"2022-08-07","initiated":"2019-04-15","ministryContact":"WOLF KEITH","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2015-06-17","completed":"2022-11-29","initiated":"2022-12-09","ministryContact":"EBERT AUBREY","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2018-09-04","completed":"2017-01-19","initiated":"2014-01-27","ministryContact":"LEUSCHKE EDWINA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2022-05-07","completed":"2021-08-09","initiated":"2016-05-14","ministryContact":"ULLRICH PANSY","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":false}],"participants":[{"name":"AMET, DOLOR SIT","endDate":"2015-09-18","startDate":"2017-06-02","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"AMET, DOLOR SIT","endDate":"2016-08-09","startDate":"2018-09-28","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"IPSUM","endDate":"2021-09-19","startDate":"2020-03-29","notes":"","roles":["ORGANIZATION"],"siteRegistry":false}],"associatedSites":[{"dateNoted":"2018-08-17","notes":"","parcelID":"20183","siteID":"15273","siteRegistry":false}]},{"uuid":"2c54f0ff-207d-41c7-bdef-6e1dc0a3b949","siteID":19084,"address":"234 Boyle Drive","latitude":51.3834,"longitude":-132.4634,"lastUpdated":"2015-04-19","city":"Kuphalbury","region":" North Coast","victoriaFile":"26250-20/16194","regionalFile":"N/A","parcelIDs":[3118260,1190324,4117790,1852254,4315177],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2021-01-20","completed":"2018-11-08","initiated":"2019-10-05","ministryContact":"SCHMITT DANGELO","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2015-06-06","completed":"2018-08-29","initiated":"2020-06-26","ministryContact":"KONOPELSKI EMMALEE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":false}],"participants":[{"name":"IPSUM","endDate":"2018-01-28","startDate":"2020-11-09","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"AMET, DOLOR SIT","endDate":"2023-03-11","startDate":"2020-02-17","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"AMET, DOLOR SIT","endDate":"2018-10-11","startDate":"2016-03-07","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","endDate":"2018-01-21","startDate":"2018-05-05","notes":"","roles":["EMPLOYEE"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2018-04-21","notes":"","parcelID":"16116","siteID":"18495","siteRegistry":true},{"dateNoted":"2016-04-11","notes":"","parcelID":"18119","siteID":"16025","siteRegistry":false},{"dateNoted":"2018-09-17","notes":"","parcelID":"17554","siteID":"16118","siteRegistry":false}]},{"uuid":"ecd17974-fa32-4114-95aa-6f6e5bcabe85","siteID":19075,"address":"32971 Ivy Trace","latitude":55.6962,"longitude":-123.2873,"lastUpdated":"2023-09-04","city":"Jonatancester","region":"Thompson-Okanagan","victoriaFile":"26250-20/15079","regionalFile":"N/A","parcelIDs":[9710200,6541983,7106237,6645270,2358038],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2016-04-05","completed":"2021-03-19","initiated":"2021-10-03","ministryContact":"FEIL-KRIS KIANA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2017-04-14","completed":"2019-01-15","initiated":"2018-11-29","ministryContact":"KUVALIS NELS","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2020-05-10","completed":"2023-09-18","initiated":"2015-12-19","ministryContact":"HAGENES JOAN","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2014-04-28","completed":"2022-12-30","initiated":"2021-04-11","ministryContact":"SHANAHAN DELL","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2014-07-10","completed":"2018-04-08","initiated":"2018-01-27","ministryContact":"LANGOSH LESLY","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":false}],"participants":[{"name":"IPSUM","endDate":"2019-05-09","startDate":"2022-02-21","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2018-07-30","startDate":"2021-04-05","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"AMET, DOLOR SIT","endDate":"2020-06-04","startDate":"2018-05-17","notes":"","roles":["EMPLOYEE"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2018-06-22","notes":"","parcelID":"20038","siteID":"20157","siteRegistry":false}]},{"uuid":"a87aadd6-2576-4ba7-822a-4b1231f536c7","siteID":17180,"address":"7337 Heidenreich Shores","latitude":49.1506,"longitude":-133.0138,"lastUpdated":"2023-03-27","city":"Rogers","region":" North Coast","victoriaFile":"26250-20/16905","regionalFile":"N/A","parcelIDs":[6972247,3387017,4324381,1712946,4927812],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2019-04-04","completed":"2020-10-18","initiated":"2019-10-19","ministryContact":"KEELING MAGNOLIA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2022-05-12","completed":"2018-04-22","initiated":"2019-08-04","ministryContact":"PROSACCO STANLEY","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":true}],"participants":[{"name":"SHELL CANADA PRODUCTS","endDate":"2014-09-21","startDate":"2018-05-20","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"IPSUM","endDate":"2017-05-28","startDate":"2016-04-16","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"IPSUM","endDate":"2019-04-07","startDate":"2018-01-21","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"IPSUM","endDate":"2023-09-24","startDate":"2019-05-21","notes":"","roles":["EMPLOYEE"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2014-11-07","notes":"","parcelID":"19147","siteID":"19377","siteRegistry":true},{"dateNoted":"2017-10-23","notes":"","parcelID":"18888","siteID":"17514","siteRegistry":true}]},{"uuid":"1239a955-8ce4-4ce4-a829-8335df96db29","siteID":19740,"address":"946 Jones Throughway","latitude":53.3067,"longitude":-122.0298,"lastUpdated":"2023-02-25","city":"Rueckerport","region":"Thompson-Okanagan","victoriaFile":"26250-20/19022","regionalFile":"N/A","parcelIDs":[3353153,7345713,3077969,5712928,782992],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2023-06-21","completed":"2022-11-07","initiated":"2015-11-26","ministryContact":"ROMAGUERA-HUEL VICKY","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2016-11-22","completed":"2021-06-04","initiated":"2015-12-12","ministryContact":"STAMM DARBY","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2020-06-26","completed":"2014-01-24","initiated":"2018-05-13","ministryContact":"HAHN PHOEBE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2021-12-08","completed":"2015-06-09","initiated":"2021-07-24","ministryContact":"FUNK ALPHONSO","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":true}],"participants":[{"name":"SHELL CANADA PRODUCTS","endDate":"2021-01-27","startDate":"2016-08-07","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2014-11-23","startDate":"2016-08-18","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","endDate":"2020-12-03","startDate":"2014-09-25","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"AMET, DOLOR SIT","endDate":"2022-08-24","startDate":"2015-12-14","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","endDate":"2016-11-27","startDate":"2021-02-17","notes":"","roles":["EMPLOYEE"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2019-11-19","notes":"","parcelID":"19471","siteID":"18245","siteRegistry":true},{"dateNoted":"2016-06-18","notes":"","parcelID":"16366","siteID":"17898","siteRegistry":true}]},{"uuid":"e0245d13-b808-43f6-950e-dde2a0666bc9","siteID":19773,"address":"8479 Turner Summit","latitude":54.0442,"longitude":-132.4007,"lastUpdated":"2014-03-22","city":"Macejkovicborough","region":"Kootenay","victoriaFile":"26250-20/18984","regionalFile":"N/A","parcelIDs":[4592089,6487072,437990,3914098,6096528],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2022-01-07","completed":"2015-05-17","initiated":"2020-07-20","ministryContact":"DANIEL ARLENE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2023-06-24","completed":"2015-04-25","initiated":"2022-07-07","ministryContact":"OSINSKI REBECA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":true}],"participants":[{"name":"AMET, DOLOR SIT","endDate":"2016-05-23","startDate":"2019-06-13","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2022-11-29","startDate":"2023-01-02","notes":"","roles":["ORGANIZATION"],"siteRegistry":false}],"associatedSites":[{"dateNoted":"2018-06-01","notes":"","parcelID":"19096","siteID":"16272","siteRegistry":false},{"dateNoted":"2019-01-15","notes":"","parcelID":"19359","siteID":"15361","siteRegistry":true},{"dateNoted":"2017-03-27","notes":"","parcelID":"18638","siteID":"19457","siteRegistry":true}]},{"uuid":"510d5e5e-cd9e-4ad2-95fa-ce7839ac5064","siteID":17012,"address":"8093 Dibbert Drives","latitude":55.6257,"longitude":-137.0721,"lastUpdated":"2018-08-02","city":"Fremont","region":"Mainland/Southwest","victoriaFile":"26250-20/16794","regionalFile":"N/A","parcelIDs":[8915353,3233829,7997773,8113485,7548974],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2020-08-29","completed":"2014-03-07","initiated":"2015-05-02","ministryContact":"HOWE CORINE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2018-04-04","completed":"2019-06-29","initiated":"2015-03-30","ministryContact":"BREITENBERG ASHLYNN","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2021-09-26","completed":"2021-05-08","initiated":"2023-09-01","ministryContact":"GRANT BERTA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2019-05-27","completed":"2022-11-23","initiated":"2018-05-21","ministryContact":"KUNDE CYNTHIA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2017-07-24","completed":"2019-08-03","initiated":"2017-08-23","ministryContact":"SWIFT LEONARD","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":true}],"participants":[{"name":"SHELL CANADA PRODUCTS","endDate":"2023-09-24","startDate":"2016-08-04","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"IPSUM","endDate":"2013-10-02","startDate":"2020-06-13","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"AMET, DOLOR SIT","endDate":"2014-02-03","startDate":"2013-12-14","notes":"","roles":["EMPLOYEE"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2017-01-14","notes":"","parcelID":"20358","siteID":"19589","siteRegistry":false}]},{"uuid":"5eb91ea7-da41-467d-b54e-329757c38c15","siteID":15945,"address":"1283 Jerde Rue","latitude":49.7245,"longitude":-136.9703,"lastUpdated":"2014-02-23","city":"East Vernie","region":"Cariboo","victoriaFile":"26250-20/17179","regionalFile":"N/A","parcelIDs":[9447882,4187310,2612678,7421022,7985650],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2021-04-09","completed":"2016-02-04","initiated":"2019-08-08","ministryContact":"BREITENBERG CYRUS","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2017-02-01","completed":"2016-01-20","initiated":"2018-09-10","ministryContact":"MORAR MARIBEL","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2017-02-10","completed":"2020-01-02","initiated":"2017-09-02","ministryContact":"LARSON CLAUDIA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2015-01-21","completed":"2015-03-10","initiated":"2015-08-24","ministryContact":"SWIFT BRAEDEN","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false}],"participants":[{"name":"SHELL CANADA PRODUCTS","endDate":"2019-03-08","startDate":"2019-01-21","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","endDate":"2023-09-19","startDate":"2019-05-27","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"AMET, DOLOR SIT","endDate":"2020-12-04","startDate":"2015-01-25","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"AMET, DOLOR SIT","endDate":"2014-10-03","startDate":"2016-04-23","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"IPSUM","endDate":"2018-08-30","startDate":"2015-03-18","notes":"","roles":["EMPLOYEE"],"siteRegistry":false}],"associatedSites":[{"dateNoted":"2020-06-19","notes":"","parcelID":"19748","siteID":"18373","siteRegistry":true},{"dateNoted":"2023-06-15","notes":"","parcelID":"15424","siteID":"20865","siteRegistry":false},{"dateNoted":"2017-04-19","notes":"","parcelID":"15536","siteID":"20957","siteRegistry":false}]},{"uuid":"4cd2af22-991d-42b9-8814-5decc4a15e93","siteID":20614,"address":"8255 Altenwerth Path","latitude":55.3704,"longitude":-122.8263,"lastUpdated":"2014-02-18","city":"East Winfieldworth","region":"Vancouver Island/Coast","victoriaFile":"26250-20/15099","regionalFile":"N/A","parcelIDs":[2460966,4936620,4561604,2412110,5216673],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2016-02-07","completed":"2015-12-25","initiated":"2016-01-04","ministryContact":"HERMISTON VICENTE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2020-11-24","completed":"2023-04-24","initiated":"2016-07-01","ministryContact":"ROHAN AUSTIN","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2016-01-05","completed":"2016-10-17","initiated":"2022-06-08","ministryContact":"SCHAEFER LUCAS","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2013-10-27","completed":"2023-04-28","initiated":"2017-12-02","ministryContact":"VONRUEDEN BELLE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2015-03-13","completed":"2016-10-12","initiated":"2019-06-11","ministryContact":"ZULAUF ASHA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false}],"participants":[{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2022-12-22","startDate":"2016-12-13","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"IPSUM","endDate":"2019-02-06","startDate":"2013-12-28","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","endDate":"2017-11-02","startDate":"2016-04-26","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"IPSUM","endDate":"2021-12-27","startDate":"2019-08-23","notes":"","roles":["ORGANIZATION"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2018-06-07","notes":"","parcelID":"20455","siteID":"17012","siteRegistry":false},{"dateNoted":"2016-06-22","notes":"","parcelID":"19439","siteID":"19854","siteRegistry":true}]},{"uuid":"cab7c5f5-6027-4cbf-97b3-fdf91418eb98","siteID":17768,"address":"89887 Goldner Curve","latitude":58.8263,"longitude":-134.4658,"lastUpdated":"2018-09-06","city":"North Eleazarville","region":" North Coast","victoriaFile":"26250-20/19204","regionalFile":"N/A","parcelIDs":[3178400,6193094,2647749,8339296,3225275],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2019-08-12","completed":"2020-10-30","initiated":"2014-12-19","ministryContact":"KUHIC KYLEE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2015-11-05","completed":"2023-04-11","initiated":"2023-05-15","ministryContact":"WOLF DORCAS","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2020-01-14","completed":"2018-11-28","initiated":"2022-10-04","ministryContact":"ROGAHN IAN","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2023-04-10","completed":"2019-03-17","initiated":"2014-05-22","ministryContact":"BALISTRERI DAWN","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":false}],"participants":[{"name":"IPSUM","endDate":"2015-06-19","startDate":"2018-08-07","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2017-09-24","startDate":"2013-11-23","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"IPSUM","endDate":"2022-10-10","startDate":"2021-09-10","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"AMET, DOLOR SIT","endDate":"2018-06-10","startDate":"2021-07-19","notes":"","roles":["ORGANIZATION"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2014-05-08","notes":"","parcelID":"15522","siteID":"18799","siteRegistry":false}]},{"uuid":"ca759ae1-ba21-4936-945f-9f9cf06de3ae","siteID":16839,"address":"4767 Marietta Squares","latitude":49.8602,"longitude":-128.5745,"lastUpdated":"2015-07-15","city":"North Kristytown","region":"Thompson-Okanagan","victoriaFile":"26250-20/17993","regionalFile":"N/A","parcelIDs":[3862982,1886316,6917212,5525400,8256590],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2022-05-26","completed":"2021-04-06","initiated":"2023-01-26","ministryContact":"WISOKY THEO","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2016-12-08","completed":"2014-04-10","initiated":"2022-09-24","ministryContact":"LOCKMAN MAXIMO","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2019-04-25","completed":"2021-04-29","initiated":"2016-01-08","ministryContact":"MARQUARDT LUELLA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2017-01-23","completed":"2022-11-20","initiated":"2021-11-13","ministryContact":"MUELLER ALENE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2015-12-25","completed":"2017-03-11","initiated":"2022-10-30","ministryContact":"BEIER HOWARD","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":false}],"participants":[{"name":"IPSUM","endDate":"2014-06-30","startDate":"2016-02-28","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","endDate":"2017-09-21","startDate":"2022-11-12","notes":"","roles":["EMPLOYEE"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2019-03-28","notes":"","parcelID":"18841","siteID":"17394","siteRegistry":true},{"dateNoted":"2016-02-29","notes":"","parcelID":"16355","siteID":"20717","siteRegistry":false},{"dateNoted":"2014-08-30","notes":"","parcelID":"19665","siteID":"19407","siteRegistry":false}]},{"uuid":"085c322b-2d43-4bc3-b27f-b65345cc68df","siteID":18069,"address":"339 Stark Land","latitude":50.0283,"longitude":-137.1229,"lastUpdated":"2018-08-10","city":"Mount Vernon","region":"Thompson-Okanagan","victoriaFile":"26250-20/874","regionalFile":"N/A","parcelIDs":[1502082,2737639,937635,2648296,3635942],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2019-06-19","completed":"2020-01-20","initiated":"2023-07-03","ministryContact":"SCHILLER MELVIN","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2014-10-02","completed":"2020-11-09","initiated":"2015-08-21","ministryContact":"ZIEMANN STANTON","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2013-12-26","completed":"2019-09-10","initiated":"2014-06-29","ministryContact":"PACOCHA CLAUDINE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false}],"participants":[{"name":"SHELL CANADA PRODUCTS","endDate":"2016-02-07","startDate":"2023-07-15","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","endDate":"2016-12-24","startDate":"2016-09-17","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2019-01-23","startDate":"2019-07-06","notes":"","roles":["EMPLOYEE"],"siteRegistry":false}],"associatedSites":[{"dateNoted":"2020-05-28","notes":"","parcelID":"17460","siteID":"20366","siteRegistry":false}]},{"uuid":"f4305c91-1fce-492b-b5c5-cf47e63d3a91","siteID":17203,"address":"212 Becker Way","latitude":50.4486,"longitude":-118.1995,"lastUpdated":"2019-07-11","city":"Lake Manley","region":"Cariboo","victoriaFile":"26250-20/7207","regionalFile":"N/A","parcelIDs":[4713914,1413950,3795791,9059115,8325198],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2014-05-11","completed":"2016-11-11","initiated":"2014-09-17","ministryContact":"HAYES IDELLA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2017-01-27","completed":"2022-03-26","initiated":"2023-06-10","ministryContact":"VOLKMAN TREVOR","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2015-01-11","completed":"2016-06-16","initiated":"2015-12-11","ministryContact":"TURCOTTE GRACIE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2014-11-14","completed":"2018-05-28","initiated":"2019-05-30","ministryContact":"RUSSEL JAMISON","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2022-05-31","completed":"2020-06-07","initiated":"2020-06-29","ministryContact":"KUB GLADYCE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":false}],"participants":[{"name":"SHELL CANADA PRODUCTS","endDate":"2016-05-28","startDate":"2014-03-06","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","endDate":"2017-05-08","startDate":"2016-12-14","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","endDate":"2020-02-02","startDate":"2020-06-12","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2014-04-07","startDate":"2019-05-28","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"IPSUM","endDate":"2021-10-02","startDate":"2016-12-24","notes":"","roles":["ORGANIZATION"],"siteRegistry":false}],"associatedSites":[{"dateNoted":"2015-02-18","notes":"","parcelID":"19546","siteID":"18775","siteRegistry":true},{"dateNoted":"2015-07-26","notes":"","parcelID":"19953","siteID":"19740","siteRegistry":true},{"dateNoted":"2017-12-24","notes":"","parcelID":"17485","siteID":"17318","siteRegistry":false}]},{"uuid":"8cd3169c-e6be-4a5b-904d-867d4f7da791","siteID":15457,"address":"731 Renner Flat","latitude":53.6598,"longitude":-138.8618,"lastUpdated":"2022-09-18","city":"Enriqueboro","region":"Mainland/Southwest","victoriaFile":"26250-20/11313","regionalFile":"N/A","parcelIDs":[9957510,4496769,2526105,3355395,2971019],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2021-08-07","completed":"2017-03-07","initiated":"2015-07-13","ministryContact":"HALVORSON KAITLIN","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2015-12-08","completed":"2015-04-01","initiated":"2020-04-03","ministryContact":"KRIS TAVARES","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false}],"participants":[{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2014-05-07","startDate":"2015-02-12","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"AMET, DOLOR SIT","endDate":"2019-06-08","startDate":"2014-05-04","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","endDate":"2017-11-23","startDate":"2021-05-20","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"IPSUM","endDate":"2021-11-01","startDate":"2019-12-15","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"IPSUM","endDate":"2022-08-20","startDate":"2022-05-08","notes":"","roles":["ORGANIZATION"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2023-05-27","notes":"","parcelID":"17902","siteID":"20178","siteRegistry":false},{"dateNoted":"2019-08-18","notes":"","parcelID":"19140","siteID":"19807","siteRegistry":true}]},{"uuid":"472286d0-1c0e-4a52-9f21-7adc4ed14d35","siteID":17317,"address":"39280 Lurline Harbors","latitude":56.801,"longitude":-131.4143,"lastUpdated":"2015-06-27","city":"Dickensburgh","region":"Mainland/Southwest","victoriaFile":"26250-20/8505","regionalFile":"N/A","parcelIDs":[5791868,8617398,6106313,264182,3826017],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2015-07-12","completed":"2017-11-08","initiated":"2020-06-02","ministryContact":"WEST MARGOT","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2019-07-30","completed":"2021-09-01","initiated":"2021-09-05","ministryContact":"BERGSTROM CASPER","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2022-05-12","completed":"2020-05-22","initiated":"2021-06-12","ministryContact":"KOELPIN ABBIGAIL","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2019-05-01","completed":"2014-05-03","initiated":"2020-07-26","ministryContact":"ERDMAN ROSSIE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2016-03-28","completed":"2016-02-22","initiated":"2016-07-11","ministryContact":"RATH SYLVESTER","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":true}],"participants":[{"name":"SHELL CANADA PRODUCTS","endDate":"2019-06-13","startDate":"2018-01-10","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2018-11-24","startDate":"2022-08-11","notes":"","roles":["ORGANIZATION"],"siteRegistry":false}],"associatedSites":[{"dateNoted":"2017-06-26","notes":"","parcelID":"18047","siteID":"18495","siteRegistry":false}]},{"uuid":"a0c8f7c2-00d1-49a0-9e33-1eab425f95b7","siteID":20407,"address":"932 Tatum Fords","latitude":56.4834,"longitude":-120.9259,"lastUpdated":"2015-08-18","city":"Lysannemouth","region":"Kootenay","victoriaFile":"26250-20/14891","regionalFile":"N/A","parcelIDs":[2048609,8740966,6871904,1723142,984079],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2021-04-18","completed":"2019-10-12","initiated":"2019-09-11","ministryContact":"SCHMITT ANDREANNE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2022-08-17","completed":"2018-07-10","initiated":"2016-01-04","ministryContact":"JACOBI DESTINY","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2020-12-09","completed":"2014-11-23","initiated":"2021-07-05","ministryContact":"O'KEEFE JARRETT","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":false}],"participants":[{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2019-10-21","startDate":"2022-07-06","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"AMET, DOLOR SIT","endDate":"2019-06-25","startDate":"2021-09-21","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2017-01-07","startDate":"2014-03-29","notes":"","roles":["EMPLOYEE"],"siteRegistry":false}],"associatedSites":[{"dateNoted":"2014-01-23","notes":"","parcelID":"16374","siteID":"18695","siteRegistry":false},{"dateNoted":"2016-01-29","notes":"","parcelID":"20128","siteID":"19075","siteRegistry":false},{"dateNoted":"2020-12-28","notes":"","parcelID":"15385","siteID":"20157","siteRegistry":true}]},{"uuid":"21c962cf-1aa0-46a7-a73f-7e187563055b","siteID":15588,"address":"60595 Valerie Glen","latitude":52.9706,"longitude":-126.7289,"lastUpdated":"2019-11-23","city":"Hanetown","region":" North Coast","victoriaFile":"26250-20/19561","regionalFile":"N/A","parcelIDs":[5360594,2652450,8125569,8149940,5990677],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2015-10-12","completed":"2020-08-27","initiated":"2023-01-17","ministryContact":"THOMPSON YESENIA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2017-06-09","completed":"2015-08-10","initiated":"2016-06-06","ministryContact":"FRAMI EVALYN","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2016-10-21","completed":"2014-09-03","initiated":"2019-08-12","ministryContact":"RUNTE LEANNE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2019-12-12","completed":"2023-06-24","initiated":"2013-11-13","ministryContact":"AUFDERHAR TRISTIN","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":true}],"participants":[{"name":"AMET, DOLOR SIT","endDate":"2019-02-11","startDate":"2019-11-24","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2017-04-14","startDate":"2015-06-06","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"IPSUM","endDate":"2022-08-03","startDate":"2015-07-02","notes":"","roles":["EMPLOYEE"],"siteRegistry":false}],"associatedSites":[{"dateNoted":"2014-10-10","notes":"","parcelID":"15241","siteID":"20441","siteRegistry":false}]},{"uuid":"9f9a3afd-0a5c-485b-936c-72c6b0964429","siteID":15222,"address":"56064 Kemmer Trace","latitude":58.7797,"longitude":-127.3823,"lastUpdated":"2015-06-02","city":"West Leonora","region":" North Coast","victoriaFile":"26250-20/4333","regionalFile":"N/A","parcelIDs":[2596600,3897450,1956218,7558464,7864484],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2017-08-07","completed":"2019-09-11","initiated":"2023-03-24","ministryContact":"KOHLER JAQUELIN","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2016-01-02","completed":"2021-09-14","initiated":"2015-03-12","ministryContact":"KLOCKO JAMIL","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false}],"participants":[{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2019-07-21","startDate":"2017-10-02","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","endDate":"2021-12-07","startDate":"2022-05-10","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"AMET, DOLOR SIT","endDate":"2023-05-28","startDate":"2020-10-19","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"AMET, DOLOR SIT","endDate":"2016-10-03","startDate":"2022-08-26","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"IPSUM","endDate":"2015-09-15","startDate":"2015-05-08","notes":"","roles":["ORGANIZATION"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2014-01-22","notes":"","parcelID":"16232","siteID":"19773","siteRegistry":false}]},{"uuid":"8de7ef9b-acc0-4894-aaf6-ee6d9a0e7ea9","siteID":15443,"address":"31700 Gloria Wall","latitude":57.3699,"longitude":-125.6569,"lastUpdated":"2018-03-11","city":"West Mohamed","region":"Thompson-Okanagan","victoriaFile":"26250-20/8998","regionalFile":"N/A","parcelIDs":[8256717,2632694,1463439,7109098,5595890],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2017-12-19","completed":"2022-04-22","initiated":"2020-02-22","ministryContact":"JOHNSTON RUTH","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2014-08-07","completed":"2020-11-09","initiated":"2015-04-04","ministryContact":"BARROWS JUSTICE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2023-06-04","completed":"2019-05-15","initiated":"2017-06-21","ministryContact":"EFFERTZ ERNESTINA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2019-02-04","completed":"2021-06-14","initiated":"2021-12-06","ministryContact":"WINDLER-DACH ORIE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":true}],"participants":[{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2013-12-03","startDate":"2015-07-15","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"IPSUM","endDate":"2015-04-25","startDate":"2020-07-31","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"IPSUM","endDate":"2016-09-27","startDate":"2021-02-15","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2020-02-05","startDate":"2016-09-24","notes":"","roles":["ORGANIZATION"],"siteRegistry":false}],"associatedSites":[{"dateNoted":"2015-01-14","notes":"","parcelID":"17859","siteID":"16151","siteRegistry":false}]},{"uuid":"5351029f-b2f5-4a73-9e2e-f25884d81d98","siteID":15365,"address":"851 Cristina Crossroad","latitude":50.1301,"longitude":-128.4784,"lastUpdated":"2021-10-24","city":"Temple","region":"Mainland/Southwest","victoriaFile":"26250-20/2234","regionalFile":"N/A","parcelIDs":[8219267,4753608,1177445,5279579,4510636],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2021-02-25","completed":"2021-02-21","initiated":"2018-04-28","ministryContact":"CONROY MANDY","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2018-02-06","completed":"2023-04-26","initiated":"2020-03-03","ministryContact":"JAKUBOWSKI ALEXIS","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2014-10-04","completed":"2021-10-08","initiated":"2017-05-17","ministryContact":"WARD HUBERT","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2014-11-01","completed":"2014-08-03","initiated":"2020-10-30","ministryContact":"KING NICHOLE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2019-05-04","completed":"2017-08-15","initiated":"2023-06-24","ministryContact":"FEIL LORENZO","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":false}],"participants":[{"name":"AMET, DOLOR SIT","endDate":"2015-06-12","startDate":"2022-08-04","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"AMET, DOLOR SIT","endDate":"2023-05-22","startDate":"2015-08-31","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"AMET, DOLOR SIT","endDate":"2021-04-17","startDate":"2018-12-25","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"IPSUM","endDate":"2015-05-11","startDate":"2022-12-01","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2021-05-24","startDate":"2023-08-11","notes":"","roles":["EMPLOYEE"],"siteRegistry":false}],"associatedSites":[{"dateNoted":"2019-04-27","notes":"","parcelID":"15973","siteID":"16736","siteRegistry":false}]},{"uuid":"e57071d6-aff5-46f8-9a47-f047bb6a4774","siteID":15543,"address":"43923 Pagac Avenue","latitude":55.0683,"longitude":-124.5132,"lastUpdated":"2015-08-13","city":"Katharinaport","region":"Vancouver Island/Coast","victoriaFile":"26250-20/6257","regionalFile":"N/A","parcelIDs":[1991362,3300791,7509566,1911347,6716857],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2016-08-06","completed":"2017-05-08","initiated":"2018-02-11","ministryContact":"CROOKS SHANEL","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2019-06-18","completed":"2016-11-18","initiated":"2019-12-06","ministryContact":"BRADTKE DANIELA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2021-03-07","completed":"2014-02-03","initiated":"2017-03-27","ministryContact":"WYMAN AMINA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2021-05-11","completed":"2017-07-26","initiated":"2021-11-04","ministryContact":"LEANNON ESMERALDA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":true}],"participants":[{"name":"IPSUM","endDate":"2018-02-11","startDate":"2020-09-16","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","endDate":"2016-01-01","startDate":"2016-07-25","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"AMET, DOLOR SIT","endDate":"2023-03-01","startDate":"2015-11-05","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"IPSUM","endDate":"2016-05-22","startDate":"2018-04-17","notes":"","roles":["ORGANIZATION"],"siteRegistry":false}],"associatedSites":[{"dateNoted":"2015-06-10","notes":"","parcelID":"20518","siteID":"19904","siteRegistry":true},{"dateNoted":"2016-11-26","notes":"","parcelID":"17165","siteID":"16986","siteRegistry":false},{"dateNoted":"2021-12-25","notes":"","parcelID":"15390","siteID":"16673","siteRegistry":false}]},{"uuid":"f21f55cc-1a14-4bb0-8769-cb18dad30059","siteID":16634,"address":"478 Simonis Locks","latitude":58.044,"longitude":-131.313,"lastUpdated":"2015-12-07","city":"Port Izaiah","region":"Vancouver Island/Coast","victoriaFile":"26250-20/17883","regionalFile":"N/A","parcelIDs":[9269407,2022222,9061809,8411146,6672215],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2018-05-22","completed":"2023-04-10","initiated":"2023-09-17","ministryContact":"HOEGER KRISTY","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2020-12-31","completed":"2021-11-15","initiated":"2021-09-30","ministryContact":"SMITH IBRAHIM","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2023-08-10","completed":"2016-07-05","initiated":"2018-01-17","ministryContact":"MACGYVER ALETHA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2023-09-10","completed":"2016-02-04","initiated":"2015-11-14","ministryContact":"SCHULTZ CHASITY","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":true}],"participants":[{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2017-12-02","startDate":"2016-11-30","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","endDate":"2014-05-10","startDate":"2023-06-09","notes":"","roles":["EMPLOYEE"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2016-03-01","notes":"","parcelID":"20519","siteID":"17012","siteRegistry":false},{"dateNoted":"2015-12-09","notes":"","parcelID":"17459","siteID":"18838","siteRegistry":true},{"dateNoted":"2017-12-22","notes":"","parcelID":"20553","siteID":"17011","siteRegistry":true}]},{"uuid":"797020c3-68ff-40eb-91b7-a9a83887e6d0","siteID":19248,"address":"14404 Waters Views","latitude":54.3815,"longitude":-126.533,"lastUpdated":"2015-02-08","city":"Port Kennithcester","region":"Mainland/Southwest","victoriaFile":"26250-20/7335","regionalFile":"N/A","parcelIDs":[1193057,5925139,3327807,1847470,8282136],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2021-10-04","completed":"2016-09-13","initiated":"2015-01-04","ministryContact":"HAMILL BRADY","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2023-07-07","completed":"2017-09-23","initiated":"2022-11-21","ministryContact":"JOHNS DESSIE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2021-06-05","completed":"2017-04-16","initiated":"2021-08-28","ministryContact":"RYAN AHMED","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2018-06-15","completed":"2014-07-02","initiated":"2020-08-22","ministryContact":"HICKLE JAYLAN","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2021-05-17","completed":"2014-10-30","initiated":"2017-12-27","ministryContact":"BEER ALLY","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":true}],"participants":[{"name":"SHELL CANADA PRODUCTS","endDate":"2022-12-30","startDate":"2021-07-14","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","endDate":"2018-08-24","startDate":"2013-10-12","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","endDate":"2017-11-15","startDate":"2021-10-12","notes":"","roles":["ORGANIZATION"],"siteRegistry":false}],"associatedSites":[{"dateNoted":"2020-06-21","notes":"","parcelID":"19592","siteID":"17914","siteRegistry":false},{"dateNoted":"2018-09-11","notes":"","parcelID":"20952","siteID":"19740","siteRegistry":false},{"dateNoted":"2021-08-07","notes":"","parcelID":"20152","siteID":"16025","siteRegistry":true}]},{"uuid":"463db693-f7d5-4c5e-add5-38753948754f","siteID":18026,"address":"89498 Casey Crest","latitude":50.1886,"longitude":-131.8699,"lastUpdated":"2018-08-02","city":"Walnut Creek","region":"Thompson-Okanagan","victoriaFile":"26250-20/3290","regionalFile":"N/A","parcelIDs":[3859513,7397483,6967199,7094168,9260551],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2018-07-01","completed":"2020-07-30","initiated":"2020-12-12","ministryContact":"MCLAUGHLIN KRAIG","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2021-11-11","completed":"2014-03-22","initiated":"2014-08-19","ministryContact":"EMMERICH ESMERALDA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":true}],"participants":[{"name":"SHELL CANADA PRODUCTS","endDate":"2014-04-23","startDate":"2022-05-30","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"IPSUM","endDate":"2015-12-16","startDate":"2019-08-02","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"AMET, DOLOR SIT","endDate":"2016-09-04","startDate":"2014-10-18","notes":"","roles":["ORGANIZATION"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2018-07-06","notes":"","parcelID":"20115","siteID":"18245","siteRegistry":false},{"dateNoted":"2018-07-21","notes":"","parcelID":"15868","siteID":"18550","siteRegistry":true}]},{"uuid":"c2bc3f13-d83f-4647-b02c-96da428280e7","siteID":19854,"address":"17673 Shanahan Via","latitude":56.7967,"longitude":-120.023,"lastUpdated":"2014-07-03","city":"Oswaldoland","region":"Vancouver Island/Coast","victoriaFile":"26250-20/5245","regionalFile":"N/A","parcelIDs":[5109709,991955,9683405,6117093,3711313],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2021-09-25","completed":"2022-10-07","initiated":"2021-10-15","ministryContact":"HAMILL TERRENCE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2020-09-04","completed":"2017-01-21","initiated":"2020-01-06","ministryContact":"BOEHM NICKLAUS","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2014-07-26","completed":"2019-10-01","initiated":"2014-05-18","ministryContact":"WUCKERT-REMPEL ANTONETTA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2017-12-02","completed":"2017-03-12","initiated":"2013-11-26","ministryContact":"ZULAUF SHERMAN","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":true}],"participants":[{"name":"IPSUM","endDate":"2019-09-24","startDate":"2022-04-21","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","endDate":"2020-07-30","startDate":"2021-12-27","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"AMET, DOLOR SIT","endDate":"2019-04-11","startDate":"2021-11-17","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2019-12-24","startDate":"2015-09-28","notes":"","roles":["EMPLOYEE"],"siteRegistry":false}],"associatedSites":[{"dateNoted":"2014-02-12","notes":"","parcelID":"16057","siteID":"18753","siteRegistry":true},{"dateNoted":"2015-06-02","notes":"","parcelID":"16642","siteID":"19778","siteRegistry":true},{"dateNoted":"2021-01-28","notes":"","parcelID":"16336","siteID":"19904","siteRegistry":false}]},{"uuid":"d012b652-ab6b-4b47-a3cc-e3ecdfe3b287","siteID":17463,"address":"6730 Davis Haven","latitude":48.7437,"longitude":-127.6937,"lastUpdated":"2022-02-07","city":"New Efrain","region":" North Coast","victoriaFile":"26250-20/3079","regionalFile":"N/A","parcelIDs":[8945222,4176829,5241588,4641866,5242951],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2015-07-11","completed":"2016-06-03","initiated":"2014-02-08","ministryContact":"HERMISTON ALYSHA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2022-01-06","completed":"2017-05-10","initiated":"2014-11-21","ministryContact":"HEGMANN NAOMIE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":true}],"participants":[{"name":"SHELL CANADA PRODUCTS","endDate":"2016-07-22","startDate":"2017-01-28","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"IPSUM","endDate":"2017-01-14","startDate":"2013-10-22","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"AMET, DOLOR SIT","endDate":"2020-04-07","startDate":"2021-10-04","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"AMET, DOLOR SIT","endDate":"2020-03-15","startDate":"2019-12-23","notes":"","roles":["EMPLOYEE"],"siteRegistry":false}],"associatedSites":[{"dateNoted":"2018-05-03","notes":"","parcelID":"20180","siteID":"17275","siteRegistry":false},{"dateNoted":"2014-04-04","notes":"","parcelID":"20700","siteID":"19005","siteRegistry":false}]},{"uuid":"fc0044a5-c2e9-48c6-bec8-2087e35bc631","siteID":17692,"address":"5632 Clifford Brooks","latitude":48.8701,"longitude":-121.9772,"lastUpdated":"2014-06-08","city":"West Jazmyn","region":"Kootenay","victoriaFile":"26250-20/19839","regionalFile":"N/A","parcelIDs":[5850486,5921314,9340826,4755638,4657499],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2018-08-20","completed":"2013-10-09","initiated":"2017-07-02","ministryContact":"BALISTRERI CLEO","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2020-12-03","completed":"2023-03-27","initiated":"2023-07-04","ministryContact":"MANN ZELDA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2015-04-03","completed":"2016-11-28","initiated":"2015-12-09","ministryContact":"HAGENES ROXANNE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":false}],"participants":[{"name":"SHELL CANADA PRODUCTS","endDate":"2021-01-07","startDate":"2016-09-19","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"AMET, DOLOR SIT","endDate":"2016-06-18","startDate":"2019-05-24","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"AMET, DOLOR SIT","endDate":"2015-04-22","startDate":"2020-09-24","notes":"","roles":["ORGANIZATION"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2023-02-04","notes":"","parcelID":"18910","siteID":"15666","siteRegistry":false}]},{"uuid":"af72295d-0f9c-43dc-9922-770349c963ef","siteID":18093,"address":"94038 O'Keefe Inlet","latitude":57.3663,"longitude":-118.3781,"lastUpdated":"2016-06-29","city":"Koeppfort","region":"Mainland/Southwest","victoriaFile":"26250-20/14919","regionalFile":"N/A","parcelIDs":[885270,2105097,7747670,7551298,3147375],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2020-09-22","completed":"2023-07-27","initiated":"2014-01-08","ministryContact":"WATERS CAMILLE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2019-09-28","completed":"2014-01-28","initiated":"2014-12-25","ministryContact":"ROSENBAUM JACE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":true}],"participants":[{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2020-07-26","startDate":"2020-05-04","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"AMET, DOLOR SIT","endDate":"2022-04-29","startDate":"2014-03-26","notes":"","roles":["EMPLOYEE"],"siteRegistry":false}],"associatedSites":[{"dateNoted":"2021-05-02","notes":"","parcelID":"17402","siteID":"15588","siteRegistry":true}]},{"uuid":"6b470457-6b76-4d35-bd80-7577401aa09b","siteID":15481,"address":"97436 Haley Avenue","latitude":50.3508,"longitude":-127.6366,"lastUpdated":"2014-03-29","city":"Trevacester","region":"Kootenay","victoriaFile":"26250-20/15644","regionalFile":"N/A","parcelIDs":[2873750,5422995,5400068,5768135,8661220],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2018-01-11","completed":"2018-10-14","initiated":"2014-09-23","ministryContact":"MCLAUGHLIN ELSA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2014-09-26","completed":"2014-09-28","initiated":"2019-12-11","ministryContact":"TOY TOMAS","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":true}],"participants":[{"name":"AMET, DOLOR SIT","endDate":"2019-04-11","startDate":"2017-09-30","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"IPSUM","endDate":"2015-09-30","startDate":"2014-12-30","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","endDate":"2013-12-27","startDate":"2022-02-25","notes":"","roles":["ORGANIZATION"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2021-10-18","notes":"","parcelID":"16524","siteID":"18274","siteRegistry":false},{"dateNoted":"2016-05-03","notes":"","parcelID":"15460","siteID":"18587","siteRegistry":false}]},{"uuid":"ceea2cf6-6e7a-4a41-8ac0-b26850448745","siteID":19072,"address":"349 Jakubowski Mount","latitude":53.2393,"longitude":-135.8349,"lastUpdated":"2017-06-04","city":"East Delphia","region":"Kootenay","victoriaFile":"26250-20/2741","regionalFile":"N/A","parcelIDs":[7126998,1137610,3818525,5440607,7802326],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2017-04-26","completed":"2016-04-25","initiated":"2023-08-04","ministryContact":"HILLS JAMIL","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2016-08-06","completed":"2014-01-14","initiated":"2015-07-29","ministryContact":"CORKERY ELBERT","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2015-11-03","completed":"2016-04-13","initiated":"2018-07-03","ministryContact":"FISHER JOE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2020-08-15","completed":"2020-10-09","initiated":"2022-09-23","ministryContact":"SCHNEIDER HOYT","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":true}],"participants":[{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2018-05-17","startDate":"2016-03-17","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"IPSUM","endDate":"2019-07-09","startDate":"2016-10-11","notes":"","roles":["ORGANIZATION"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2021-07-15","notes":"","parcelID":"20997","siteID":"18047","siteRegistry":false},{"dateNoted":"2014-02-19","notes":"","parcelID":"20679","siteID":"17038","siteRegistry":true},{"dateNoted":"2019-02-07","notes":"","parcelID":"19841","siteID":"19248","siteRegistry":false}]},{"uuid":"3c06d48a-8bdd-4f8d-930e-51fbfcda29e0","siteID":20023,"address":"88353 Jermey Avenue","latitude":50.0437,"longitude":-122.8816,"lastUpdated":"2016-05-08","city":"West Enid","region":"Vancouver Island/Coast","victoriaFile":"26250-20/11528","regionalFile":"N/A","parcelIDs":[7378184,6413736,6369839,1980287,345749],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2021-09-28","completed":"2015-05-13","initiated":"2020-03-26","ministryContact":"TURCOTTE ABDUL","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2018-10-29","completed":"2018-11-01","initiated":"2016-03-10","ministryContact":"GISLASON LAMBERT","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2015-04-30","completed":"2020-09-13","initiated":"2016-04-17","ministryContact":"MITCHELL OWEN","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2019-08-14","completed":"2018-10-22","initiated":"2016-06-23","ministryContact":"MEDHURST JULIANA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":true}],"participants":[{"name":"IPSUM","endDate":"2021-07-08","startDate":"2017-06-24","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"IPSUM","endDate":"2017-03-06","startDate":"2021-11-24","notes":"","roles":["ORGANIZATION"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2020-01-05","notes":"","parcelID":"17588","siteID":"20121","siteRegistry":false}]},{"uuid":"7f13b3ac-6c7f-4720-a861-cc8d63912091","siteID":16557,"address":"1429 Rau Harbors","latitude":58.087,"longitude":-129.9837,"lastUpdated":"2016-05-27","city":"East Raphaelleton","region":"Cariboo","victoriaFile":"26250-20/14058","regionalFile":"N/A","parcelIDs":[3915760,9893630,191105,3425149,5876706],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2015-06-01","completed":"2015-05-29","initiated":"2015-03-15","ministryContact":"NIKOLAUS AMOS","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2018-01-08","completed":"2020-02-19","initiated":"2015-05-11","ministryContact":"MARKS THERESE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":true}],"participants":[{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2020-09-23","startDate":"2016-09-02","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"IPSUM","endDate":"2016-10-01","startDate":"2016-03-29","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"AMET, DOLOR SIT","endDate":"2014-04-21","startDate":"2013-12-13","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","endDate":"2021-01-10","startDate":"2021-08-19","notes":"","roles":["EMPLOYEE"],"siteRegistry":false}],"associatedSites":[{"dateNoted":"2015-12-07","notes":"","parcelID":"16704","siteID":"19669","siteRegistry":false}]},{"uuid":"2e11cd85-2492-4107-a9a8-81375444e703","siteID":19807,"address":"36999 Ondricka Unions","latitude":58.0975,"longitude":-123.1498,"lastUpdated":"2018-12-08","city":"North Bennie","region":"Vancouver Island/Coast","victoriaFile":"26250-20/16134","regionalFile":"N/A","parcelIDs":[5197243,1849993,4742629,3648022,7753422],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2017-08-10","completed":"2019-09-13","initiated":"2018-08-27","ministryContact":"WELCH KEIRA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2023-03-03","completed":"2022-05-08","initiated":"2021-01-07","ministryContact":"ANKUNDING EVERETT","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":true}],"participants":[{"name":"AMET, DOLOR SIT","endDate":"2020-10-16","startDate":"2022-06-03","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"IPSUM","endDate":"2021-10-29","startDate":"2016-09-21","notes":"","roles":["EMPLOYEE"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2020-06-22","notes":"","parcelID":"17533","siteID":"18859","siteRegistry":false},{"dateNoted":"2021-08-28","notes":"","parcelID":"17503","siteID":"17898","siteRegistry":false}]},{"uuid":"f1ebd099-a7df-41cc-b6bd-08061ad5f385","siteID":17190,"address":"6383 Patsy Brook","latitude":48.8067,"longitude":-128.7717,"lastUpdated":"2020-12-05","city":"Sanford","region":"Kootenay","victoriaFile":"26250-20/2455","regionalFile":"N/A","parcelIDs":[1628696,592003,1904256,6910862,6886902],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2017-02-16","completed":"2022-07-26","initiated":"2015-06-19","ministryContact":"SCHOWALTER LEW","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2023-03-20","completed":"2019-04-03","initiated":"2021-01-08","ministryContact":"KEEBLER HANK","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2019-09-07","completed":"2020-12-21","initiated":"2022-01-30","ministryContact":"FISHER ELDA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2021-06-07","completed":"2020-04-25","initiated":"2018-08-09","ministryContact":"SCHMITT RAUL","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2022-02-17","completed":"2022-12-05","initiated":"2023-02-01","ministryContact":"ULLRICH JADA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":false}],"participants":[{"name":"AMET, DOLOR SIT","endDate":"2020-07-03","startDate":"2023-05-06","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","endDate":"2021-03-28","startDate":"2023-08-08","notes":"","roles":["ORGANIZATION"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2014-10-16","notes":"","parcelID":"17282","siteID":"17914","siteRegistry":false},{"dateNoted":"2014-01-27","notes":"","parcelID":"16845","siteID":"15481","siteRegistry":true},{"dateNoted":"2017-10-01","notes":"","parcelID":"20817","siteID":"16645","siteRegistry":true}]},{"uuid":"d58ba631-8f3c-4fa4-bf6a-4301a794c1c9","siteID":19762,"address":"40145 Quincy Lane","latitude":54.1689,"longitude":-128.8815,"lastUpdated":"2014-05-25","city":"Roobton","region":"Cariboo","victoriaFile":"26250-20/2863","regionalFile":"N/A","parcelIDs":[9705558,9817471,6677629,8440090,697656],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2022-06-18","completed":"2023-02-13","initiated":"2014-03-13","ministryContact":"ROBEL ARCH","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2020-05-01","completed":"2014-01-21","initiated":"2021-04-24","ministryContact":"SCHROEDER FELIX","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2023-03-04","completed":"2018-09-19","initiated":"2017-07-07","ministryContact":"HALVORSON LUCILE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2020-09-28","completed":"2022-03-04","initiated":"2019-08-24","ministryContact":"ALTENWERTH ZACKERY","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2019-07-15","completed":"2019-07-27","initiated":"2022-03-02","ministryContact":"DICKI-KOSS ALIYAH","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":true}],"participants":[{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2015-03-22","startDate":"2017-05-14","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2014-08-10","startDate":"2017-11-09","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"AMET, DOLOR SIT","endDate":"2022-08-29","startDate":"2018-08-18","notes":"","roles":["ORGANIZATION"],"siteRegistry":false}],"associatedSites":[{"dateNoted":"2018-11-22","notes":"","parcelID":"15400","siteID":"19728","siteRegistry":false},{"dateNoted":"2015-03-10","notes":"","parcelID":"17864","siteID":"18753","siteRegistry":true},{"dateNoted":"2013-11-05","notes":"","parcelID":"17875","siteID":"20930","siteRegistry":true}]},{"uuid":"2ce29f94-aa4c-45b1-ba55-05d271df9172","siteID":17217,"address":"19178 Leuschke Cliff","latitude":58.5221,"longitude":-124.4472,"lastUpdated":"2016-07-14","city":"North Amariborough","region":"Mainland/Southwest","victoriaFile":"26250-20/5116","regionalFile":"N/A","parcelIDs":[1736561,7428106,3650633,970744,3275152],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2017-01-12","completed":"2018-10-19","initiated":"2018-12-02","ministryContact":"BERNHARD TAMIA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2018-05-05","completed":"2016-06-05","initiated":"2018-04-11","ministryContact":"OSINSKI LONDON","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2016-06-11","completed":"2016-12-26","initiated":"2022-02-25","ministryContact":"SKILES AVERY","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2021-10-30","completed":"2018-11-13","initiated":"2019-06-12","ministryContact":"KOZEY MAXIMUS","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":true}],"participants":[{"name":"AMET, DOLOR SIT","endDate":"2022-06-25","startDate":"2015-01-30","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","endDate":"2019-02-23","startDate":"2016-04-14","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2018-01-12","startDate":"2021-02-18","notes":"","roles":["ORGANIZATION"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2016-09-12","notes":"","parcelID":"15401","siteID":"17237","siteRegistry":true},{"dateNoted":"2017-07-18","notes":"","parcelID":"16460","siteID":"16517","siteRegistry":true},{"dateNoted":"2018-01-12","notes":"","parcelID":"15315","siteID":"16839","siteRegistry":false}]},{"uuid":"79c1bb66-e8f5-48b0-8973-3e7178ea6d14","siteID":20758,"address":"47007 Stiedemann Port","latitude":54.5119,"longitude":-126.2661,"lastUpdated":"2017-04-04","city":"Haleystad","region":"Mainland/Southwest","victoriaFile":"26250-20/16767","regionalFile":"N/A","parcelIDs":[8410247,4649765,2498748,4014497,3284732],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2017-09-02","completed":"2021-10-23","initiated":"2021-04-18","ministryContact":"GREEN FREIDA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2017-10-12","completed":"2021-10-04","initiated":"2020-05-30","ministryContact":"SCHAMBERGER DARRICK","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2023-08-01","completed":"2021-01-03","initiated":"2020-02-29","ministryContact":"BOEHM MAC","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":true}],"participants":[{"name":"IPSUM","endDate":"2014-09-03","startDate":"2021-12-01","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","endDate":"2014-03-04","startDate":"2021-04-18","notes":"","roles":["EMPLOYEE"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2015-03-20","notes":"","parcelID":"19902","siteID":"19905","siteRegistry":false}]},{"uuid":"3f3c34c7-a04b-437d-bc5f-c0114e82cb7c","siteID":19197,"address":"9148 Rice Parks","latitude":56.6232,"longitude":-135.5355,"lastUpdated":"2015-02-18","city":"Lake Tiffany","region":"Kootenay","victoriaFile":"26250-20/12885","regionalFile":"N/A","parcelIDs":[2214995,1562480,3376206,4407990,227503],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2022-08-03","completed":"2020-07-22","initiated":"2016-01-19","ministryContact":"BECKER KAITLYN","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2020-08-24","completed":"2017-07-05","initiated":"2018-09-17","ministryContact":"METZ MAXIMILLIA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":false}],"participants":[{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2015-03-16","startDate":"2014-02-15","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"AMET, DOLOR SIT","endDate":"2016-04-22","startDate":"2016-05-27","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","endDate":"2019-05-16","startDate":"2020-10-25","notes":"","roles":["EMPLOYEE"],"siteRegistry":false}],"associatedSites":[{"dateNoted":"2015-05-25","notes":"","parcelID":"16899","siteID":"15784","siteRegistry":false}]},{"uuid":"da55521e-47e4-4812-afc2-3f1008c0462f","siteID":15949,"address":"249 Jazmin Ramp","latitude":55.5452,"longitude":-132.5855,"lastUpdated":"2021-07-25","city":"Honolulu","region":"Mainland/Southwest","victoriaFile":"26250-20/8518","regionalFile":"N/A","parcelIDs":[9550516,3750980,9628768,4422974,6521039],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2014-04-05","completed":"2020-03-14","initiated":"2015-12-11","ministryContact":"WALTER MISTY","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2019-05-26","completed":"2016-01-17","initiated":"2021-11-29","ministryContact":"TOY CLARK","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":false}],"participants":[{"name":"AMET, DOLOR SIT","endDate":"2020-09-30","startDate":"2018-01-10","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"IPSUM","endDate":"2021-02-25","startDate":"2015-01-19","notes":"","roles":["ORGANIZATION"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2017-05-26","notes":"","parcelID":"18542","siteID":"16673","siteRegistry":true},{"dateNoted":"2016-03-26","notes":"","parcelID":"17374","siteID":"20826","siteRegistry":false}]},{"uuid":"43663565-7f96-4fbe-a269-585805e18e8a","siteID":19778,"address":"461 Hirthe Street","latitude":51.5251,"longitude":-129.8461,"lastUpdated":"2015-03-13","city":"Brentfort","region":"Thompson-Okanagan","victoriaFile":"26250-20/17283","regionalFile":"N/A","parcelIDs":[7930033,4488934,7908136,4488173,3619076],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2017-07-22","completed":"2022-07-03","initiated":"2018-08-19","ministryContact":"JAKUBOWSKI MICAH","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2017-04-17","completed":"2019-02-21","initiated":"2019-08-21","ministryContact":"WELCH KRISTIN","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":true}],"participants":[{"name":"SHELL CANADA PRODUCTS","endDate":"2016-09-18","startDate":"2015-07-04","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"IPSUM","endDate":"2020-01-20","startDate":"2022-10-02","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"IPSUM","endDate":"2021-09-23","startDate":"2022-02-24","notes":"","roles":["ORGANIZATION"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2020-09-05","notes":"","parcelID":"20383","siteID":"19837","siteRegistry":true},{"dateNoted":"2017-07-23","notes":"","parcelID":"20546","siteID":"19773","siteRegistry":true}]},{"uuid":"24a2c48e-0de6-4278-b4db-61970286789d","siteID":19087,"address":"6121 Gregory Shore","latitude":58.2855,"longitude":-123.2616,"lastUpdated":"2023-03-05","city":"New Graciehaven","region":"Kootenay","victoriaFile":"26250-20/17100","regionalFile":"N/A","parcelIDs":[3972219,6986542,6467663,652071,4476478],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2015-06-30","completed":"2015-02-25","initiated":"2018-01-05","ministryContact":"TERRY KRISTIAN","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2018-01-06","completed":"2023-03-03","initiated":"2017-07-16","ministryContact":"HAND ADAN","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2018-04-02","completed":"2018-06-02","initiated":"2020-05-26","ministryContact":"LANGOSH HENDERSON","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2015-04-24","completed":"2022-12-24","initiated":"2015-06-21","ministryContact":"BLANDA LAVERN","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2020-10-15","completed":"2016-11-29","initiated":"2023-04-28","ministryContact":"BARTON DESTINEE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":false}],"participants":[{"name":"AMET, DOLOR SIT","endDate":"2019-07-01","startDate":"2017-03-10","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2022-09-26","startDate":"2022-05-12","notes":"","roles":["EMPLOYEE"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2013-10-07","notes":"","parcelID":"18748","siteID":"20023","siteRegistry":true}]},{"uuid":"009b51c6-1af7-4ea0-aec4-00cd8abfed61","siteID":19966,"address":"2145 Lyla Lodge","latitude":58.0554,"longitude":-129.078,"lastUpdated":"2017-03-01","city":"West Missouribury","region":" North Coast","victoriaFile":"26250-20/10828","regionalFile":"N/A","parcelIDs":[147090,9802183,8835217,2079290,1409614],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2015-05-19","completed":"2016-03-17","initiated":"2015-04-13","ministryContact":"TROMP EMMET","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2021-03-04","completed":"2022-07-18","initiated":"2023-06-22","ministryContact":"ROBEL WALTON","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2017-02-01","completed":"2016-12-15","initiated":"2019-08-29","ministryContact":"SCHOWALTER JETT","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2020-05-01","completed":"2014-02-02","initiated":"2023-04-27","ministryContact":"CASSIN REANNA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":true}],"participants":[{"name":"AMET, DOLOR SIT","endDate":"2015-06-11","startDate":"2013-10-31","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"AMET, DOLOR SIT","endDate":"2020-01-08","startDate":"2023-09-09","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","endDate":"2019-12-03","startDate":"2015-02-01","notes":"","roles":["EMPLOYEE"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2020-11-29","notes":"","parcelID":"18663","siteID":"17449","siteRegistry":true},{"dateNoted":"2015-03-10","notes":"","parcelID":"19800","siteID":"17012","siteRegistry":false}]},{"uuid":"b543cd0b-b702-478f-8260-66feb22c8410","siteID":20692,"address":"27902 Bradtke Lock","latitude":51.4351,"longitude":-137.3115,"lastUpdated":"2018-04-12","city":"East Mateo","region":" North Coast","victoriaFile":"26250-20/8534","regionalFile":"N/A","parcelIDs":[8943715,5325409,8443307,9904092,9094285],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2023-05-02","completed":"2018-05-26","initiated":"2014-07-10","ministryContact":"RAYNOR-BARROWS JUDGE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2017-06-13","completed":"2016-05-22","initiated":"2019-10-29","ministryContact":"GORCZANY ESTELL","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":true}],"participants":[{"name":"AMET, DOLOR SIT","endDate":"2021-01-17","startDate":"2022-09-21","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2023-02-27","startDate":"2022-12-07","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2022-08-24","startDate":"2022-04-25","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"AMET, DOLOR SIT","endDate":"2020-10-20","startDate":"2014-06-15","notes":"","roles":["ORGANIZATION"],"siteRegistry":false}],"associatedSites":[{"dateNoted":"2015-03-07","notes":"","parcelID":"15291","siteID":"17783","siteRegistry":false},{"dateNoted":"2015-04-23","notes":"","parcelID":"16602","siteID":"18969","siteRegistry":false}]},{"uuid":"fb033389-79da-4b27-8f12-f5ce1855654d","siteID":16810,"address":"437 Funk Heights","latitude":48.6744,"longitude":-120.933,"lastUpdated":"2015-12-09","city":"Charlotteview","region":" North Coast","victoriaFile":"26250-20/17408","regionalFile":"N/A","parcelIDs":[3638395,4488246,4791223,5857517,6844788],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2020-07-08","completed":"2018-06-12","initiated":"2017-07-29","ministryContact":"KIEHN CLOVIS","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2015-09-16","completed":"2019-01-09","initiated":"2019-05-23","ministryContact":"WINTHEISER RAMON","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2020-12-15","completed":"2019-04-30","initiated":"2016-12-08","ministryContact":"JASKOLSKI KARI","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2015-06-16","completed":"2015-12-27","initiated":"2018-03-14","ministryContact":"RENNER ELI","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2021-06-01","completed":"2020-06-25","initiated":"2017-05-31","ministryContact":"BARTOLETTI VERONICA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":false}],"participants":[{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2023-08-18","startDate":"2018-11-19","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","endDate":"2022-05-14","startDate":"2014-11-14","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"AMET, DOLOR SIT","endDate":"2023-07-17","startDate":"2014-10-06","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","endDate":"2019-11-09","startDate":"2022-12-13","notes":"","roles":["ORGANIZATION"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2023-06-15","notes":"","parcelID":"18820","siteID":"16916","siteRegistry":true},{"dateNoted":"2013-10-06","notes":"","parcelID":"17402","siteID":"20178","siteRegistry":false}]},{"uuid":"596b6e4b-c60d-423f-955f-6f684f4ec440","siteID":19536,"address":"3105 Shirley Glen","latitude":53.9436,"longitude":-127.7155,"lastUpdated":"2018-11-01","city":"North Tyreekport","region":"Mainland/Southwest","victoriaFile":"26250-20/18906","regionalFile":"N/A","parcelIDs":[6763866,7027995,4998769,6707992,4027299],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2022-10-25","completed":"2014-05-05","initiated":"2015-02-27","ministryContact":"BERNHARD JACKELINE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2019-04-27","completed":"2022-05-28","initiated":"2014-08-27","ministryContact":"ANDERSON BETHANY","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2019-09-18","completed":"2023-08-12","initiated":"2018-05-06","ministryContact":"KESSLER MIREYA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2020-07-07","completed":"2015-07-22","initiated":"2019-11-28","ministryContact":"LUEILWITZ ZORA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":false}],"participants":[{"name":"SHELL CANADA PRODUCTS","endDate":"2020-02-27","startDate":"2021-12-27","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","endDate":"2022-07-29","startDate":"2017-08-11","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2018-10-16","startDate":"2022-11-15","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","endDate":"2016-12-12","startDate":"2019-01-16","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"IPSUM","endDate":"2017-10-15","startDate":"2018-02-17","notes":"","roles":["EMPLOYEE"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2021-02-21","notes":"","parcelID":"17939","siteID":"19039","siteRegistry":false},{"dateNoted":"2017-11-15","notes":"","parcelID":"15986","siteID":"17454","siteRegistry":false}]},{"uuid":"54b07e90-377e-41ac-ae99-816fd1c76d07","siteID":15667,"address":"591 Dibbert Pines","latitude":54.7446,"longitude":-119.7465,"lastUpdated":"2017-04-28","city":"East Garnet","region":"Thompson-Okanagan","victoriaFile":"26250-20/12536","regionalFile":"N/A","parcelIDs":[4248714,5677158,2900502,9232544,1628173],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2017-04-22","completed":"2017-06-22","initiated":"2018-12-22","ministryContact":"STEUBER KRISTINA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2019-07-15","completed":"2021-10-09","initiated":"2018-06-08","ministryContact":"HAHN PAT","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":false}],"participants":[{"name":"AMET, DOLOR SIT","endDate":"2020-07-05","startDate":"2018-07-04","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","endDate":"2015-01-14","startDate":"2017-08-09","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","endDate":"2023-05-22","startDate":"2020-04-28","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2018-08-23","startDate":"2023-08-07","notes":"","roles":["EMPLOYEE"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2016-08-23","notes":"","parcelID":"19942","siteID":"15653","siteRegistry":false}]},{"uuid":"0625fcef-6a8d-46be-b501-45a26944b9e5","siteID":20915,"address":"889 Dorian Bypass","latitude":51.6866,"longitude":-124.9995,"lastUpdated":"2022-08-22","city":"Bennyworth","region":"Vancouver Island/Coast","victoriaFile":"26250-20/17375","regionalFile":"N/A","parcelIDs":[2994822,8442776,9167159,752742,2994439],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2020-06-28","completed":"2014-03-27","initiated":"2020-05-23","ministryContact":"POLLICH ORAN","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2016-12-27","completed":"2021-04-14","initiated":"2022-08-11","ministryContact":"CARROLL CLINTON","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2021-07-30","completed":"2022-04-04","initiated":"2016-03-02","ministryContact":"BINS MYRTLE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2023-08-06","completed":"2016-01-14","initiated":"2013-12-25","ministryContact":"ANKUNDING LAURETTA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":true}],"participants":[{"name":"AMET, DOLOR SIT","endDate":"2019-10-29","startDate":"2019-01-16","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"IPSUM","endDate":"2018-05-16","startDate":"2018-08-27","notes":"","roles":["EMPLOYEE"],"siteRegistry":false}],"associatedSites":[{"dateNoted":"2018-07-18","notes":"","parcelID":"16393","siteID":"17866","siteRegistry":true},{"dateNoted":"2014-02-22","notes":"","parcelID":"17614","siteID":"17036","siteRegistry":true}]},{"uuid":"2b8c4645-4a30-4e2b-b8f1-247f37506884","siteID":15653,"address":"97510 Madie Manors","latitude":52.271,"longitude":-118.4052,"lastUpdated":"2015-08-23","city":"Marjolaineshire","region":"Thompson-Okanagan","victoriaFile":"26250-20/3722","regionalFile":"N/A","parcelIDs":[361033,9930414,5665835,5653293,7598662],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2018-11-25","completed":"2017-12-21","initiated":"2022-06-05","ministryContact":"KUHLMAN DARION","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2018-06-05","completed":"2018-03-27","initiated":"2020-02-05","ministryContact":"HALVORSON CELIA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2015-02-17","completed":"2020-01-02","initiated":"2020-11-01","ministryContact":"LEDNER-LARSON CORALIE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2015-11-18","completed":"2015-04-21","initiated":"2019-06-28","ministryContact":"STARK ITZEL","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":true}],"participants":[{"name":"AMET, DOLOR SIT","endDate":"2017-10-01","startDate":"2017-03-15","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"IPSUM","endDate":"2019-04-05","startDate":"2020-05-03","notes":"","roles":["ORGANIZATION"],"siteRegistry":false}],"associatedSites":[{"dateNoted":"2014-12-21","notes":"","parcelID":"16915","siteID":"16559","siteRegistry":true},{"dateNoted":"2019-09-07","notes":"","parcelID":"20303","siteID":"18150","siteRegistry":false},{"dateNoted":"2021-03-14","notes":"","parcelID":"17372","siteID":"17164","siteRegistry":false}]},{"uuid":"48749c5b-a33a-4ada-8ea8-af850f66c5da","siteID":18775,"address":"8336 Bria Trail","latitude":48.3294,"longitude":-126.3835,"lastUpdated":"2021-09-03","city":"Port Brionnafort","region":"Cariboo","victoriaFile":"26250-20/16791","regionalFile":"N/A","parcelIDs":[1678888,326614,9310108,185415,8561171],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2017-11-29","completed":"2020-05-02","initiated":"2021-09-26","ministryContact":"SCHOWALTER LUCILE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2018-09-28","completed":"2017-01-02","initiated":"2022-05-25","ministryContact":"FADEL RHEA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2013-11-24","completed":"2017-01-24","initiated":"2015-11-28","ministryContact":"MITCHELL JERALD","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":false}],"participants":[{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2018-12-16","startDate":"2019-10-16","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2017-10-12","startDate":"2018-02-17","notes":"","roles":["EMPLOYEE"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2016-06-28","notes":"","parcelID":"20140","siteID":"16916","siteRegistry":false}]},{"uuid":"dc28eee2-0062-4593-932b-8c9f17ea0d43","siteID":16916,"address":"216 Marvin Path","latitude":58.0954,"longitude":-120.0524,"lastUpdated":"2017-11-04","city":"East Trevor","region":"Mainland/Southwest","victoriaFile":"26250-20/2652","regionalFile":"N/A","parcelIDs":[6135952,1663604,7415786,6300047,1299076],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2015-10-12","completed":"2016-04-03","initiated":"2016-04-26","ministryContact":"MONAHAN MARLON","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2022-02-08","completed":"2023-07-05","initiated":"2014-09-12","ministryContact":"KONOPELSKI LEORA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2022-08-11","completed":"2018-07-19","initiated":"2015-04-18","ministryContact":"O'CONNELL DELIA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2016-06-16","completed":"2021-04-27","initiated":"2023-04-23","ministryContact":"WYMAN MARYSE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2018-03-17","completed":"2020-11-08","initiated":"2023-06-01","ministryContact":"HAAG CREOLA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":true}],"participants":[{"name":"AMET, DOLOR SIT","endDate":"2016-12-09","startDate":"2017-07-10","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"AMET, DOLOR SIT","endDate":"2020-02-23","startDate":"2018-02-17","notes":"","roles":["ORGANIZATION"],"siteRegistry":false}],"associatedSites":[{"dateNoted":"2015-09-24","notes":"","parcelID":"16905","siteID":"19095","siteRegistry":false},{"dateNoted":"2023-05-12","notes":"","parcelID":"19868","siteID":"19380","siteRegistry":false},{"dateNoted":"2019-03-15","notes":"","parcelID":"19252","siteID":"15855","siteRegistry":false}]},{"uuid":"9b7ab543-ea33-4243-af21-ecd579ade886","siteID":19837,"address":"49911 Alan Spur","latitude":57.9517,"longitude":-137.2213,"lastUpdated":"2020-05-29","city":"Luisworth","region":"Thompson-Okanagan","victoriaFile":"26250-20/11791","regionalFile":"N/A","parcelIDs":[3011269,5862877,9004257,200377,5356615],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2020-05-29","completed":"2014-02-15","initiated":"2018-05-05","ministryContact":"ANDERSON JANICK","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2018-10-25","completed":"2014-09-01","initiated":"2018-02-09","ministryContact":"GUTMANN LULU","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":true}],"participants":[{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2021-09-04","startDate":"2015-01-10","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"AMET, DOLOR SIT","endDate":"2019-07-17","startDate":"2016-06-10","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","endDate":"2014-09-15","startDate":"2020-11-11","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"AMET, DOLOR SIT","endDate":"2021-04-04","startDate":"2016-11-28","notes":"","roles":["ORGANIZATION"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2015-03-28","notes":"","parcelID":"18192","siteID":"15919","siteRegistry":false}]},{"uuid":"48a6c44c-452e-4051-b700-66fb917d508e","siteID":16401,"address":"515 Effie Mills","latitude":54.2195,"longitude":-124.6451,"lastUpdated":"2021-07-05","city":"West Audrey","region":"Vancouver Island/Coast","victoriaFile":"26250-20/4696","regionalFile":"N/A","parcelIDs":[3912761,1560672,9901654,5873177,938604],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2014-04-25","completed":"2017-08-19","initiated":"2015-02-10","ministryContact":"FEIL CHRISTOPHE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2018-04-30","completed":"2023-01-18","initiated":"2013-10-13","ministryContact":"KEEBLER CHARLENE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2021-06-01","completed":"2015-04-12","initiated":"2019-08-03","ministryContact":"GOYETTE TYLER","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2020-12-02","completed":"2013-12-07","initiated":"2021-02-12","ministryContact":"KOSS JAEDEN","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":true}],"participants":[{"name":"AMET, DOLOR SIT","endDate":"2021-10-26","startDate":"2021-07-11","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2019-10-15","startDate":"2020-07-13","notes":"","roles":["EMPLOYEE"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2020-07-08","notes":"","parcelID":"18913","siteID":"19233","siteRegistry":true}]},{"uuid":"60bf1473-3582-401b-9e52-612c19b3fcd2","siteID":19048,"address":"93210 Lulu Fords","latitude":49.2413,"longitude":-135.5592,"lastUpdated":"2014-02-26","city":"South Rashawnbury","region":"Mainland/Southwest","victoriaFile":"26250-20/13159","regionalFile":"N/A","parcelIDs":[6755411,6020133,3316775,4657224,3213815],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2018-07-21","completed":"2014-05-05","initiated":"2017-06-06","ministryContact":"GREEN HERMAN","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2013-12-29","completed":"2016-03-05","initiated":"2014-01-26","ministryContact":"RUNTE PRECIOUS","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2016-01-22","completed":"2017-10-14","initiated":"2018-12-26","ministryContact":"THIEL CAROLINA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2019-05-23","completed":"2023-02-09","initiated":"2019-10-07","ministryContact":"KUB ALAINA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2013-12-05","completed":"2015-02-09","initiated":"2019-09-05","ministryContact":"LEHNER DERON","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":false}],"participants":[{"name":"SHELL CANADA PRODUCTS","endDate":"2018-02-15","startDate":"2014-10-10","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"AMET, DOLOR SIT","endDate":"2014-05-30","startDate":"2019-11-08","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"IPSUM","endDate":"2020-03-01","startDate":"2015-11-23","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2014-09-22","startDate":"2016-05-17","notes":"","roles":["ORGANIZATION"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2014-11-30","notes":"","parcelID":"15804","siteID":"16725","siteRegistry":true},{"dateNoted":"2016-11-14","notes":"","parcelID":"20981","siteID":"18269","siteRegistry":false},{"dateNoted":"2021-01-31","notes":"","parcelID":"15873","siteID":"19903","siteRegistry":false}]},{"uuid":"df2a5bb4-5d4e-4199-a759-2a8c476e2b13","siteID":19603,"address":"283 Ratke Center","latitude":51.9933,"longitude":-118.3944,"lastUpdated":"2019-04-10","city":"Lake Merlin","region":"Kootenay","victoriaFile":"26250-20/19075","regionalFile":"N/A","parcelIDs":[4596388,2194454,7457153,628106,1396639],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2019-10-02","completed":"2022-12-17","initiated":"2020-01-18","ministryContact":"ZBONCAK EZRA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2019-09-28","completed":"2023-04-22","initiated":"2015-12-11","ministryContact":"KRIS ADDISON","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2017-06-26","completed":"2018-05-28","initiated":"2013-12-17","ministryContact":"CUMMINGS KHALIL","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":false}],"participants":[{"name":"AMET, DOLOR SIT","endDate":"2021-11-11","startDate":"2015-10-16","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"IPSUM","endDate":"2015-03-26","startDate":"2022-04-03","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"IPSUM","endDate":"2016-08-02","startDate":"2015-05-25","notes":"","roles":["EMPLOYEE"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2014-07-27","notes":"","parcelID":"16888","siteID":"17260","siteRegistry":false},{"dateNoted":"2016-07-12","notes":"","parcelID":"15320","siteID":"19905","siteRegistry":true}]},{"uuid":"119fd2d8-6c93-4931-8afd-7ebe5658f577","siteID":15855,"address":"14099 Krajcik Branch","latitude":51.0964,"longitude":-118.1081,"lastUpdated":"2022-02-24","city":"Rolfsonport","region":"Cariboo","victoriaFile":"26250-20/6630","regionalFile":"N/A","parcelIDs":[6547275,3210587,1846434,368063,9226261],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2016-02-12","completed":"2023-01-25","initiated":"2022-09-24","ministryContact":"HAHN ULICES","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2015-01-11","completed":"2013-12-05","initiated":"2019-03-14","ministryContact":"SWANIAWSKI VIRGIE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2017-12-01","completed":"2021-11-06","initiated":"2014-02-13","ministryContact":"WALKER MARILIE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2023-06-20","completed":"2019-02-19","initiated":"2013-11-02","ministryContact":"KASSULKE MARJORY","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":true}],"participants":[{"name":"IPSUM","endDate":"2020-12-24","startDate":"2015-02-04","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"IPSUM","endDate":"2017-07-31","startDate":"2021-11-28","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","endDate":"2018-08-10","startDate":"2021-12-01","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"IPSUM","endDate":"2015-01-14","startDate":"2019-02-04","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","endDate":"2021-05-11","startDate":"2020-11-06","notes":"","roles":["ORGANIZATION"],"siteRegistry":false}],"associatedSites":[{"dateNoted":"2022-10-13","notes":"","parcelID":"19345","siteID":"17318","siteRegistry":true}]},{"uuid":"1442e3a9-6f37-4b3f-9848-c63ba822c9c5","siteID":20157,"address":"62372 Dietrich Land","latitude":56.985,"longitude":-120.9708,"lastUpdated":"2020-01-02","city":"Graceville","region":"Thompson-Okanagan","victoriaFile":"26250-20/13183","regionalFile":"N/A","parcelIDs":[5554201,3060161,4644273,8290275,4178281],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2015-12-19","completed":"2016-06-20","initiated":"2020-07-09","ministryContact":"HEIDENREICH PINK","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2015-11-15","completed":"2014-08-05","initiated":"2015-09-17","ministryContact":"YUNDT CLOVIS","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2015-08-16","completed":"2018-11-18","initiated":"2021-11-20","ministryContact":"O'REILLY BENNIE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2015-01-15","completed":"2017-08-15","initiated":"2016-02-29","ministryContact":"HILLL-BROWN ROSELYN","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false}],"participants":[{"name":"SHELL CANADA PRODUCTS","endDate":"2017-07-18","startDate":"2021-04-28","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2016-02-27","startDate":"2018-06-30","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"IPSUM","endDate":"2019-06-14","startDate":"2013-12-31","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"AMET, DOLOR SIT","endDate":"2014-06-26","startDate":"2020-11-22","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2014-07-17","startDate":"2020-10-17","notes":"","roles":["EMPLOYEE"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2020-11-11","notes":"","parcelID":"16373","siteID":"17463","siteRegistry":false},{"dateNoted":"2021-12-31","notes":"","parcelID":"15485","siteID":"16312","siteRegistry":true}]},{"uuid":"ed8ea8b0-72eb-4251-8e06-0b4fdb8b6032","siteID":17036,"address":"38405 Quentin Well","latitude":50.9532,"longitude":-119.6966,"lastUpdated":"2015-03-09","city":"Cathystad","region":"Thompson-Okanagan","victoriaFile":"26250-20/12328","regionalFile":"N/A","parcelIDs":[9812446,6394612,9322373,1523134,3300180],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2021-07-07","completed":"2019-12-30","initiated":"2014-05-26","ministryContact":"GIBSON-HERMANN LORINE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2014-01-30","completed":"2022-04-06","initiated":"2020-06-17","ministryContact":"TILLMAN KOBY","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2016-07-04","completed":"2015-01-15","initiated":"2021-12-28","ministryContact":"LANGWORTH GARRISON","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2016-10-31","completed":"2022-05-29","initiated":"2019-08-22","ministryContact":"FEENEY LOUIE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":false}],"participants":[{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2017-03-17","startDate":"2019-07-29","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"AMET, DOLOR SIT","endDate":"2016-09-05","startDate":"2018-05-23","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2019-11-27","startDate":"2023-05-21","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"IPSUM","endDate":"2021-01-15","startDate":"2021-05-22","notes":"","roles":["ORGANIZATION"],"siteRegistry":false}],"associatedSites":[{"dateNoted":"2019-10-24","notes":"","parcelID":"20155","siteID":"18676","siteRegistry":true}]},{"uuid":"d2bf3f10-7320-4f77-9689-dff3458ebbe5","siteID":15666,"address":"283 Schroeder Corner","latitude":49.4145,"longitude":-136.984,"lastUpdated":"2020-03-17","city":"Anabelville","region":"Thompson-Okanagan","victoriaFile":"26250-20/5807","regionalFile":"N/A","parcelIDs":[9802893,5864416,5796444,933379,7400870],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2021-04-07","completed":"2022-04-16","initiated":"2016-02-09","ministryContact":"KOHLER TONEY","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2020-10-18","completed":"2015-05-18","initiated":"2020-10-23","ministryContact":"STEUBER TOMMIE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2017-02-18","completed":"2016-03-07","initiated":"2014-10-04","ministryContact":"SPORER CULLEN","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2013-12-22","completed":"2023-07-12","initiated":"2014-10-24","ministryContact":"DIBBERT-HETTINGER TRISTIAN","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2023-06-20","completed":"2018-10-31","initiated":"2015-11-07","ministryContact":"HAGENES KILEY","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":true}],"participants":[{"name":"AMET, DOLOR SIT","endDate":"2015-01-14","startDate":"2023-01-27","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"IPSUM","endDate":"2021-10-20","startDate":"2016-10-17","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"IPSUM","endDate":"2023-06-24","startDate":"2020-07-17","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","endDate":"2020-11-07","startDate":"2021-05-15","notes":"","roles":["ORGANIZATION"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2017-06-06","notes":"","parcelID":"19573","siteID":"20441","siteRegistry":false},{"dateNoted":"2023-02-04","notes":"","parcelID":"16427","siteID":"17561","siteRegistry":true}]},{"uuid":"ef0cb58f-401f-4355-89be-265540d12c83","siteID":16193,"address":"24405 Madisyn Station","latitude":52.2268,"longitude":-127.0488,"lastUpdated":"2014-07-14","city":"Westboro","region":"Mainland/Southwest","victoriaFile":"26250-20/15106","regionalFile":"N/A","parcelIDs":[1562423,5199538,7605192,6704720,249520],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2014-02-05","completed":"2017-03-14","initiated":"2018-05-01","ministryContact":"HERMAN DEJUAN","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2021-09-11","completed":"2020-12-16","initiated":"2023-02-25","ministryContact":"TRANTOW ARTURO","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":false}],"participants":[{"name":"AMET, DOLOR SIT","endDate":"2020-07-28","startDate":"2021-12-04","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","endDate":"2021-09-25","startDate":"2022-07-29","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2015-11-05","startDate":"2018-12-20","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2020-08-16","startDate":"2019-05-16","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"IPSUM","endDate":"2014-10-20","startDate":"2022-09-18","notes":"","roles":["ORGANIZATION"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2015-03-23","notes":"","parcelID":"15206","siteID":"15361","siteRegistry":true}]},{"uuid":"680432a1-a785-4485-828a-78bfbfdaee35","siteID":19571,"address":"7133 MacGyver Harbors","latitude":49.5201,"longitude":-134.8348,"lastUpdated":"2018-03-01","city":"Paolochester","region":"Mainland/Southwest","victoriaFile":"26250-20/9298","regionalFile":"N/A","parcelIDs":[1566684,1234706,8123002,3668685,8734963],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2021-09-08","completed":"2019-07-16","initiated":"2014-02-15","ministryContact":"MEDHURST TREMAINE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2014-01-21","completed":"2014-08-28","initiated":"2016-04-03","ministryContact":"MCGLYNN FINN","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2013-10-08","completed":"2021-11-15","initiated":"2016-03-13","ministryContact":"O'KEEFE FLORIAN","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2020-11-06","completed":"2016-03-23","initiated":"2015-11-13","ministryContact":"AUER HAROLD","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":true}],"participants":[{"name":"IPSUM","endDate":"2022-08-22","startDate":"2022-03-03","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2020-04-09","startDate":"2021-01-17","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2014-09-22","startDate":"2016-04-14","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2018-07-05","startDate":"2017-08-01","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"IPSUM","endDate":"2021-11-21","startDate":"2015-08-19","notes":"","roles":["EMPLOYEE"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2015-03-02","notes":"","parcelID":"19727","siteID":"15609","siteRegistry":true}]},{"uuid":"b844a72f-2e51-416f-98b7-e7eec8b68af5","siteID":17318,"address":"2904 Schinner Junctions","latitude":54.8266,"longitude":-123.8415,"lastUpdated":"2013-10-26","city":"Fort Huldaview","region":"Thompson-Okanagan","victoriaFile":"26250-20/11058","regionalFile":"N/A","parcelIDs":[6854659,7599399,2699464,1384116,6710417],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2018-02-26","completed":"2014-05-12","initiated":"2017-02-25","ministryContact":"RITCHIE RICHARD","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2023-08-10","completed":"2015-01-19","initiated":"2023-07-31","ministryContact":"GERLACH BRIDGET","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2022-11-21","completed":"2020-12-02","initiated":"2020-01-13","ministryContact":"HARRIS WILLA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2022-07-23","completed":"2016-02-14","initiated":"2022-03-08","ministryContact":"GREENFELDER YESENIA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":true}],"participants":[{"name":"SHELL CANADA PRODUCTS","endDate":"2019-01-11","startDate":"2015-11-01","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"IPSUM","endDate":"2021-05-05","startDate":"2018-07-19","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2021-06-09","startDate":"2023-07-02","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","endDate":"2022-07-25","startDate":"2023-01-11","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","endDate":"2018-08-12","startDate":"2015-07-31","notes":"","roles":["ORGANIZATION"],"siteRegistry":false}],"associatedSites":[{"dateNoted":"2018-12-05","notes":"","parcelID":"17990","siteID":"17200","siteRegistry":false}]},{"uuid":"2ffb9519-c5c2-48de-bc0b-ec7410fb9ca8","siteID":17514,"address":"10967 Judson Greens","latitude":52.5965,"longitude":-118.5719,"lastUpdated":"2018-08-07","city":"New Krishaven","region":"Thompson-Okanagan","victoriaFile":"26250-20/17404","regionalFile":"N/A","parcelIDs":[9049687,9235026,5912185,7468457,7228883],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2014-08-10","completed":"2016-06-17","initiated":"2018-10-29","ministryContact":"DIBBERT KAITLIN","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2023-04-11","completed":"2020-06-11","initiated":"2015-10-05","ministryContact":"LESCH TONY","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2014-07-14","completed":"2020-05-31","initiated":"2018-07-24","ministryContact":"FRITSCH JEREMY","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2014-10-31","completed":"2016-07-29","initiated":"2019-05-16","ministryContact":"FAY FREDA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":false}],"participants":[{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2018-03-02","startDate":"2016-06-29","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2022-09-29","startDate":"2017-02-26","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2016-09-27","startDate":"2018-05-02","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","endDate":"2022-01-04","startDate":"2018-06-29","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"IPSUM","endDate":"2014-11-24","startDate":"2018-09-27","notes":"","roles":["EMPLOYEE"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2016-09-18","notes":"","parcelID":"19130","siteID":"17151","siteRegistry":true},{"dateNoted":"2022-05-25","notes":"","parcelID":"18250","siteID":"17412","siteRegistry":true},{"dateNoted":"2018-07-10","notes":"","parcelID":"18896","siteID":"17203","siteRegistry":true}]},{"uuid":"079895c4-7609-45eb-8091-62e68862fcf6","siteID":15273,"address":"472 Everette Underpass","latitude":52.5996,"longitude":-136.9152,"lastUpdated":"2014-09-26","city":"Fort Alexandra","region":" North Coast","victoriaFile":"26250-20/2462","regionalFile":"N/A","parcelIDs":[3617856,1243441,2067940,5965593,8039320],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2015-04-10","completed":"2021-07-25","initiated":"2022-04-23","ministryContact":"MCCULLOUGH KOBE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2017-06-28","completed":"2018-06-12","initiated":"2013-10-08","ministryContact":"SANFORD CIERRA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2023-08-25","completed":"2019-06-14","initiated":"2015-12-25","ministryContact":"BOGISICH TRUDIE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2019-09-03","completed":"2016-01-18","initiated":"2017-06-06","ministryContact":"BECHTELAR AUBREE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":true}],"participants":[{"name":"AMET, DOLOR SIT","endDate":"2015-01-12","startDate":"2023-03-27","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","endDate":"2019-09-18","startDate":"2022-12-31","notes":"","roles":["ORGANIZATION"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2023-05-23","notes":"","parcelID":"19200","siteID":"15229","siteRegistry":false}]},{"uuid":"6e77f72b-faf7-4375-b941-d2f8b7fcc10a","siteID":18676,"address":"97613 Robel Keys","latitude":58.288,"longitude":-134.6418,"lastUpdated":"2016-12-16","city":"Schustertown","region":"Kootenay","victoriaFile":"26250-20/1952","regionalFile":"N/A","parcelIDs":[9356782,8836028,3733132,3021045,9013440],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2020-02-01","completed":"2014-09-29","initiated":"2017-03-30","ministryContact":"KOEPP DEJAH","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2020-06-12","completed":"2018-02-13","initiated":"2022-08-04","ministryContact":"GUTMANN TRISHA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2019-01-03","completed":"2015-02-10","initiated":"2023-09-16","ministryContact":"BATZ SHANNON","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2020-12-14","completed":"2020-05-02","initiated":"2014-04-05","ministryContact":"SCHAMBERGER ALEXZANDER","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":false}],"participants":[{"name":"IPSUM","endDate":"2013-12-24","startDate":"2017-01-25","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2023-02-24","startDate":"2016-01-02","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","endDate":"2013-10-07","startDate":"2014-10-10","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","endDate":"2017-10-22","startDate":"2020-03-10","notes":"","roles":["ORGANIZATION"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2021-11-22","notes":"","parcelID":"20890","siteID":"16487","siteRegistry":true}]},{"uuid":"ec896d1f-1a70-45d3-a606-bffac9b418d3","siteID":15689,"address":"6417 Sporer Garden","latitude":48.7699,"longitude":-129.3498,"lastUpdated":"2015-01-18","city":"West Marques","region":" North Coast","victoriaFile":"26250-20/12591","regionalFile":"N/A","parcelIDs":[583589,1380808,3215830,6999927,1215192],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2023-07-19","completed":"2015-12-18","initiated":"2019-12-29","ministryContact":"HAMMES JAYLIN","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2017-09-17","completed":"2020-03-23","initiated":"2014-05-12","ministryContact":"RUTHERFORD CLARISSA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":true}],"participants":[{"name":"AMET, DOLOR SIT","endDate":"2022-01-26","startDate":"2023-01-13","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","endDate":"2015-05-19","startDate":"2022-10-15","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"IPSUM","endDate":"2022-04-15","startDate":"2015-07-11","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"IPSUM","endDate":"2022-03-26","startDate":"2018-12-16","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2015-07-31","startDate":"2021-07-12","notes":"","roles":["EMPLOYEE"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2017-01-30","notes":"","parcelID":"17574","siteID":"16814","siteRegistry":true},{"dateNoted":"2018-09-08","notes":"","parcelID":"17036","siteID":"18368","siteRegistry":false}]},{"uuid":"89ad36e4-ffd7-4da3-9e60-c80397028b07","siteID":16517,"address":"70015 Alexis Corner","latitude":50.8396,"longitude":-127.7127,"lastUpdated":"2014-04-19","city":"Fort Susiemouth","region":"Vancouver Island/Coast","victoriaFile":"26250-20/17048","regionalFile":"N/A","parcelIDs":[2684992,1133563,8746492,8521531,166890],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2022-09-18","completed":"2017-02-02","initiated":"2022-02-16","ministryContact":"WIZA CARMINE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2017-08-21","completed":"2018-01-02","initiated":"2016-07-19","ministryContact":"MANTE KAILEE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2021-03-24","completed":"2015-03-24","initiated":"2021-07-11","ministryContact":"STOKES CHARLOTTE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":true}],"participants":[{"name":"IPSUM","endDate":"2021-03-21","startDate":"2016-08-03","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","endDate":"2021-03-31","startDate":"2014-10-15","notes":"","roles":["EMPLOYEE"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2019-08-18","notes":"","parcelID":"20285","siteID":"17318","siteRegistry":false},{"dateNoted":"2020-10-17","notes":"","parcelID":"17820","siteID":"20223","siteRegistry":true}]},{"uuid":"7c9ce76a-b955-4351-a450-80360ede944a","siteID":18368,"address":"22125 Hermann Extensions","latitude":56.5485,"longitude":-123.6431,"lastUpdated":"2014-05-03","city":"Elvabury","region":"Cariboo","victoriaFile":"26250-20/8656","regionalFile":"N/A","parcelIDs":[6461564,5313137,7394251,8736096,3210699],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2020-01-21","completed":"2018-01-24","initiated":"2022-01-11","ministryContact":"GERLACH NICOLAS","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2020-11-23","completed":"2017-10-03","initiated":"2017-02-25","ministryContact":"KIRLIN MITTIE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2014-07-27","completed":"2013-10-27","initiated":"2018-04-08","ministryContact":"FARRELL KELVIN","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false}],"participants":[{"name":"IPSUM","endDate":"2021-07-28","startDate":"2021-01-18","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2021-07-29","startDate":"2019-08-02","notes":"","roles":["EMPLOYEE"],"siteRegistry":false}],"associatedSites":[{"dateNoted":"2019-04-26","notes":"","parcelID":"16687","siteID":"20773","siteRegistry":true},{"dateNoted":"2022-11-19","notes":"","parcelID":"16216","siteID":"16193","siteRegistry":true},{"dateNoted":"2019-11-12","notes":"","parcelID":"16051","siteID":"17057","siteRegistry":false}]},{"uuid":"5561c309-964a-4f19-a6d6-156292a77462","siteID":15212,"address":"9072 Stehr Garden","latitude":57.1388,"longitude":-118.8763,"lastUpdated":"2022-05-04","city":"Schinnerside","region":"Thompson-Okanagan","victoriaFile":"26250-20/5307","regionalFile":"N/A","parcelIDs":[3995145,773888,2815600,759291,4661385],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2016-08-10","completed":"2021-06-29","initiated":"2021-11-20","ministryContact":"KLING-CUMMINGS GRIFFIN","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2016-06-03","completed":"2015-08-27","initiated":"2019-02-18","ministryContact":"TREMBLAY TIMMOTHY","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":true}],"participants":[{"name":"AMET, DOLOR SIT","endDate":"2022-10-05","startDate":"2022-09-16","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","endDate":"2014-02-05","startDate":"2018-01-08","notes":"","roles":["ORGANIZATION"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2020-05-21","notes":"","parcelID":"15512","siteID":"20641","siteRegistry":true}]},{"uuid":"ded16510-480f-4ba4-af55-a830380c8e43","siteID":20826,"address":"929 Eveline Estates","latitude":55.1169,"longitude":-129.3873,"lastUpdated":"2015-04-20","city":"West Nicoview","region":"Vancouver Island/Coast","victoriaFile":"26250-20/8339","regionalFile":"N/A","parcelIDs":[7295635,9148175,905764,8102517,7015907],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2015-03-30","completed":"2018-05-29","initiated":"2016-06-13","ministryContact":"MULLER VADA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2020-08-12","completed":"2021-08-04","initiated":"2014-02-23","ministryContact":"DIETRICH MAC","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2015-01-10","completed":"2019-05-03","initiated":"2014-10-17","ministryContact":"TILLMAN JAMMIE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":true}],"participants":[{"name":"SHELL CANADA PRODUCTS","endDate":"2023-07-03","startDate":"2023-03-03","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"AMET, DOLOR SIT","endDate":"2017-09-18","startDate":"2017-09-19","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"IPSUM","endDate":"2018-02-12","startDate":"2022-03-20","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"IPSUM","endDate":"2017-03-31","startDate":"2018-01-10","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"AMET, DOLOR SIT","endDate":"2021-08-30","startDate":"2019-01-25","notes":"","roles":["EMPLOYEE"],"siteRegistry":false}],"associatedSites":[{"dateNoted":"2018-10-26","notes":"","parcelID":"17439","siteID":"17463","siteRegistry":true}]},{"uuid":"1fc5e2e1-a656-42df-9bb3-8f82ce91bc18","siteID":20555,"address":"6761 Towne Burgs","latitude":49.2504,"longitude":-135.7515,"lastUpdated":"2018-04-18","city":"Jenkinsview","region":"Cariboo","victoriaFile":"26250-20/9603","regionalFile":"N/A","parcelIDs":[1324279,5940273,8314692,8056149,2138029],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2015-12-09","completed":"2022-08-31","initiated":"2023-07-13","ministryContact":"MORISSETTE OFELIA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2018-12-17","completed":"2018-04-27","initiated":"2014-09-03","ministryContact":"PREDOVIC ALICE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":true}],"participants":[{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2020-02-01","startDate":"2023-01-06","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","endDate":"2016-05-06","startDate":"2022-11-16","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"AMET, DOLOR SIT","endDate":"2016-04-26","startDate":"2015-10-07","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"IPSUM","endDate":"2019-07-15","startDate":"2020-01-29","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2020-08-05","startDate":"2020-05-31","notes":"","roles":["ORGANIZATION"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2015-08-04","notes":"","parcelID":"16638","siteID":"19837","siteRegistry":true}]},{"uuid":"07502cc6-1a98-4e1a-bd90-425e84bc8273","siteID":20211,"address":"831 Shaylee Ridges","latitude":57.3661,"longitude":-136.1172,"lastUpdated":"2020-06-05","city":"New Patienceborough","region":"Kootenay","victoriaFile":"26250-20/17732","regionalFile":"N/A","parcelIDs":[484432,8655186,5497449,3220531,9641381],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2020-09-01","completed":"2023-01-16","initiated":"2020-02-02","ministryContact":"MEDHURST TAD","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2021-10-25","completed":"2020-03-24","initiated":"2015-04-17","ministryContact":"WATERS DESSIE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":false}],"participants":[{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2015-02-25","startDate":"2020-05-20","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2022-02-19","startDate":"2016-11-21","notes":"","roles":["EMPLOYEE"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2020-05-29","notes":"","parcelID":"16312","siteID":"20788","siteRegistry":false},{"dateNoted":"2020-06-06","notes":"","parcelID":"17502","siteID":"19072","siteRegistry":false},{"dateNoted":"2017-11-13","notes":"","parcelID":"19431","siteID":"17304","siteRegistry":true}]},{"uuid":"d2b2214f-c060-44f9-92ef-18c2c9e9bfe6","siteID":15892,"address":"2784 Balistreri Hills","latitude":56.5237,"longitude":-137.8421,"lastUpdated":"2020-10-11","city":"Lowell","region":"Mainland/Southwest","victoriaFile":"26250-20/9025","regionalFile":"N/A","parcelIDs":[3471546,3208072,829814,935223,429459],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2017-07-13","completed":"2014-10-16","initiated":"2017-05-18","ministryContact":"SWANIAWSKI JOHN","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2014-07-07","completed":"2015-05-01","initiated":"2022-10-17","ministryContact":"SAUER LEANNE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2014-02-21","completed":"2015-08-11","initiated":"2016-07-19","ministryContact":"KIHN FERNANDO","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":false}],"participants":[{"name":"AMET, DOLOR SIT","endDate":"2019-03-13","startDate":"2016-08-17","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"AMET, DOLOR SIT","endDate":"2013-12-04","startDate":"2020-06-20","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","endDate":"2017-05-30","startDate":"2021-07-22","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"IPSUM","endDate":"2016-04-28","startDate":"2023-04-11","notes":"","roles":["EMPLOYEE"],"siteRegistry":false}],"associatedSites":[{"dateNoted":"2016-08-15","notes":"","parcelID":"18065","siteID":"19197","siteRegistry":true},{"dateNoted":"2017-05-07","notes":"","parcelID":"18629","siteID":"20915","siteRegistry":false}]},{"uuid":"2b17d0c8-ffc7-459a-9718-b7d26ca62f4d","siteID":19391,"address":"71875 Deckow Fort","latitude":49.4737,"longitude":-123.9388,"lastUpdated":"2021-05-18","city":"Fort Brookfield","region":"Vancouver Island/Coast","victoriaFile":"26250-20/3698","regionalFile":"N/A","parcelIDs":[9983523,674301,817429,2003504,7974602],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2021-03-26","completed":"2015-06-24","initiated":"2023-07-24","ministryContact":"SCHULTZ DEDRIC","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2019-11-27","completed":"2022-01-08","initiated":"2014-09-27","ministryContact":"HALVORSON GRANT","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2016-08-31","completed":"2017-05-03","initiated":"2019-05-21","ministryContact":"HAYES JULES","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2017-01-25","completed":"2014-03-20","initiated":"2016-10-20","ministryContact":"WINTHEISER LANEY","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2020-02-16","completed":"2021-05-30","initiated":"2019-11-21","ministryContact":"HERMANN JOESPH","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":false}],"participants":[{"name":"AMET, DOLOR SIT","endDate":"2015-01-28","startDate":"2016-12-03","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","endDate":"2018-10-26","startDate":"2019-09-28","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","endDate":"2016-05-04","startDate":"2014-07-05","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2019-06-13","startDate":"2022-03-23","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","endDate":"2021-09-25","startDate":"2020-09-27","notes":"","roles":["EMPLOYEE"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2022-06-04","notes":"","parcelID":"17447","siteID":"18969","siteRegistry":false},{"dateNoted":"2021-08-25","notes":"","parcelID":"19959","siteID":"17449","siteRegistry":false},{"dateNoted":"2020-02-22","notes":"","parcelID":"16608","siteID":"19872","siteRegistry":false}]},{"uuid":"f122d440-2fe7-4cbf-ae78-7769d86f1263","siteID":17414,"address":"7156 Lynch Inlet","latitude":49.8562,"longitude":-135.9871,"lastUpdated":"2014-01-03","city":"Velvachester","region":" North Coast","victoriaFile":"26250-20/10433","regionalFile":"N/A","parcelIDs":[4900025,1867596,2426583,9138419,2294409],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2014-06-30","completed":"2016-07-25","initiated":"2019-02-16","ministryContact":"LEDNER ISABELL","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2019-04-29","completed":"2023-03-19","initiated":"2023-04-09","ministryContact":"FISHER LANE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2017-04-16","completed":"2014-06-23","initiated":"2020-08-15","ministryContact":"SHIELDS CHANEL","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2022-05-23","completed":"2016-07-24","initiated":"2023-02-15","ministryContact":"WISOKY CECILIA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":false}],"participants":[{"name":"SHELL CANADA PRODUCTS","endDate":"2020-03-20","startDate":"2021-01-24","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2016-07-16","startDate":"2022-01-02","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2022-03-11","startDate":"2014-07-26","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"AMET, DOLOR SIT","endDate":"2020-03-21","startDate":"2023-08-09","notes":"","roles":["EMPLOYEE"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2017-02-05","notes":"","parcelID":"17078","siteID":"18969","siteRegistry":true}]},{"uuid":"a540e3ce-1bfb-4d68-9bfd-d71c609e131e","siteID":16793,"address":"2310 Keebler Hollow","latitude":52.4986,"longitude":-124.3014,"lastUpdated":"2022-12-15","city":"North Dustin","region":"Cariboo","victoriaFile":"26250-20/6557","regionalFile":"N/A","parcelIDs":[3942731,6394025,7043329,8776630,9441531],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2020-07-05","completed":"2021-03-24","initiated":"2018-07-14","ministryContact":"WELCH GERDA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2013-12-23","completed":"2022-11-09","initiated":"2020-10-21","ministryContact":"MOSCISKI-KUPHAL MELYNA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false}],"participants":[{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2018-09-18","startDate":"2022-08-08","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2016-03-07","startDate":"2018-11-28","notes":"","roles":["EMPLOYEE"],"siteRegistry":false}],"associatedSites":[{"dateNoted":"2016-11-23","notes":"","parcelID":"17239","siteID":"16966","siteRegistry":true},{"dateNoted":"2015-02-01","notes":"","parcelID":"16359","siteID":"18652","siteRegistry":true},{"dateNoted":"2022-02-13","notes":"","parcelID":"20372","siteID":"16810","siteRegistry":false}]},{"uuid":"cc4dd794-6344-4fbd-822d-c2b8bea7eb40","siteID":15609,"address":"7417 Stroman Rapid","latitude":51.068,"longitude":-133.9376,"lastUpdated":"2020-12-15","city":"Gislasonton","region":" North Coast","victoriaFile":"26250-20/13927","regionalFile":"N/A","parcelIDs":[9934842,7091060,5315768,8472006,5159041],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2013-10-26","completed":"2018-09-05","initiated":"2018-06-10","ministryContact":"MOHR CORY","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2014-05-01","completed":"2014-06-21","initiated":"2014-05-24","ministryContact":"MORAR LAFAYETTE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2015-01-11","completed":"2019-10-19","initiated":"2019-05-13","ministryContact":"BECKER CONOR","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2020-05-19","completed":"2021-06-04","initiated":"2021-12-11","ministryContact":"ZEMLAK JASMIN","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2021-06-19","completed":"2015-09-28","initiated":"2015-01-06","ministryContact":"CASSIN ALEXANE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":true}],"participants":[{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2014-08-10","startDate":"2018-07-13","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","endDate":"2014-05-18","startDate":"2017-05-03","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"AMET, DOLOR SIT","endDate":"2019-07-15","startDate":"2017-01-02","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"AMET, DOLOR SIT","endDate":"2019-05-16","startDate":"2014-10-13","notes":"","roles":["ORGANIZATION"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2021-04-16","notes":"","parcelID":"15957","siteID":"18001","siteRegistry":false}]},{"uuid":"d789549b-1d8c-42f2-8ce1-5fbb15205999","siteID":19796,"address":"57215 Tyler Junctions","latitude":48.772,"longitude":-131.3969,"lastUpdated":"2013-11-13","city":"Rathville","region":"Thompson-Okanagan","victoriaFile":"26250-20/9577","regionalFile":"N/A","parcelIDs":[162384,4109186,9143100,5787826,695998],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2022-11-23","completed":"2023-02-17","initiated":"2014-04-24","ministryContact":"PURDY ERNIE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2022-08-03","completed":"2022-05-15","initiated":"2020-03-05","ministryContact":"KUVALIS TRESSA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2015-03-24","completed":"2020-07-15","initiated":"2015-03-17","ministryContact":"MULLER SADYE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2023-07-27","completed":"2020-06-09","initiated":"2020-07-16","ministryContact":"JONES-TURCOTTE ASTRID","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":false}],"participants":[{"name":"IPSUM","endDate":"2015-01-07","startDate":"2022-03-29","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","endDate":"2017-05-28","startDate":"2022-05-19","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","endDate":"2017-07-27","startDate":"2020-08-14","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"IPSUM","endDate":"2017-07-10","startDate":"2023-09-17","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"IPSUM","endDate":"2019-01-21","startDate":"2019-10-27","notes":"","roles":["ORGANIZATION"],"siteRegistry":false}],"associatedSites":[{"dateNoted":"2020-10-13","notes":"","parcelID":"18887","siteID":"16814","siteRegistry":false},{"dateNoted":"2018-03-20","notes":"","parcelID":"19995","siteID":"15695","siteRegistry":false},{"dateNoted":"2014-04-15","notes":"","parcelID":"19033","siteID":"20023","siteRegistry":true}]},{"uuid":"f55e5677-d28e-403e-93f4-b9a512900777","siteID":19124,"address":"3571 Reichel Expressway","latitude":55.5323,"longitude":-119.1717,"lastUpdated":"2014-03-03","city":"Fort Armandochester","region":"Vancouver Island/Coast","victoriaFile":"26250-20/12891","regionalFile":"N/A","parcelIDs":[9812470,3976214,3381301,7444772,3496691],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2016-05-29","completed":"2014-10-25","initiated":"2018-06-24","ministryContact":"LUEILWITZ PATIENCE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2022-11-08","completed":"2023-01-14","initiated":"2023-05-08","ministryContact":"HARRIS FLORENCIO","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2022-12-31","completed":"2020-06-16","initiated":"2018-01-26","ministryContact":"LUBOWITZ RUBEN","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2020-07-26","completed":"2021-08-19","initiated":"2016-01-12","ministryContact":"KONOPELSKI SANTIAGO","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":true}],"participants":[{"name":"IPSUM","endDate":"2018-11-14","startDate":"2021-05-28","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","endDate":"2014-04-07","startDate":"2018-08-18","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"AMET, DOLOR SIT","endDate":"2018-06-17","startDate":"2016-07-21","notes":"","roles":["ORGANIZATION"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2016-02-26","notes":"","parcelID":"16219","siteID":"19701","siteRegistry":false},{"dateNoted":"2018-06-06","notes":"","parcelID":"16093","siteID":"16487","siteRegistry":false},{"dateNoted":"2020-01-07","notes":"","parcelID":"20708","siteID":"15656","siteRegistry":true}]},{"uuid":"20d022f2-30fc-42e2-9eee-905bf891f05e","siteID":16736,"address":"147 Lewis Run","latitude":48.4502,"longitude":-122.6054,"lastUpdated":"2021-09-16","city":"New Eunice","region":"Vancouver Island/Coast","victoriaFile":"26250-20/19765","regionalFile":"N/A","parcelIDs":[866117,6627716,4720104,6076826,3943086],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2016-05-25","completed":"2021-06-04","initiated":"2016-09-30","ministryContact":"KSHLERIN SUZANNE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2022-10-17","completed":"2020-07-14","initiated":"2022-10-25","ministryContact":"BECKER LINDSAY","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2023-06-03","completed":"2015-01-29","initiated":"2015-04-13","ministryContact":"REILLY EVALYN","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2018-12-27","completed":"2018-08-26","initiated":"2023-04-01","ministryContact":"CREMIN DOUG","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2022-01-14","completed":"2014-06-13","initiated":"2018-05-05","ministryContact":"CRUICKSHANK CARISSA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":true}],"participants":[{"name":"IPSUM","endDate":"2015-11-30","startDate":"2017-08-06","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2014-09-04","startDate":"2018-10-23","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"IPSUM","endDate":"2016-03-16","startDate":"2018-01-03","notes":"","roles":["EMPLOYEE"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2017-01-08","notes":"","parcelID":"15570","siteID":"17935","siteRegistry":true},{"dateNoted":"2017-06-17","notes":"","parcelID":"18844","siteID":"17237","siteRegistry":false}]},{"uuid":"011a7f6c-aa94-4c11-bf24-c0cefad6b2ee","siteID":15229,"address":"149 Russel Spurs","latitude":51.9367,"longitude":-127.9694,"lastUpdated":"2021-12-07","city":"Malikastead","region":"Cariboo","victoriaFile":"26250-20/10345","regionalFile":"N/A","parcelIDs":[2050613,3793377,5457101,3759594,7471992],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2014-02-14","completed":"2021-01-22","initiated":"2016-04-09","ministryContact":"HALEY KENDRICK","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2019-08-08","completed":"2016-02-03","initiated":"2014-07-26","ministryContact":"KUHIC CLOYD","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2023-07-01","completed":"2014-12-02","initiated":"2017-01-25","ministryContact":"HESSEL CREOLA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2015-10-19","completed":"2017-07-03","initiated":"2018-01-17","ministryContact":"SPINKA ROY","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":true}],"participants":[{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2015-07-08","startDate":"2018-10-05","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"IPSUM","endDate":"2021-06-30","startDate":"2020-06-12","notes":"","roles":["EMPLOYEE"],"siteRegistry":false}],"associatedSites":[{"dateNoted":"2023-08-12","notes":"","parcelID":"20210","siteID":"17237","siteRegistry":true},{"dateNoted":"2020-08-17","notes":"","parcelID":"19279","siteID":"20443","siteRegistry":false}]},{"uuid":"430445f4-3d66-469d-8ed3-376dc82cb923","siteID":19038,"address":"4328 Keven Ports","latitude":58.1227,"longitude":-125.5549,"lastUpdated":"2022-12-11","city":"Linden","region":"Mainland/Southwest","victoriaFile":"26250-20/12189","regionalFile":"N/A","parcelIDs":[9343295,271598,6366018,394682,5338921],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2020-10-13","completed":"2020-03-15","initiated":"2022-12-14","ministryContact":"CRUICKSHANK GEORGETTE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2014-10-17","completed":"2019-09-19","initiated":"2016-12-06","ministryContact":"UPTON SCARLETT","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":true}],"participants":[{"name":"AMET, DOLOR SIT","endDate":"2020-09-13","startDate":"2017-12-18","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2018-05-06","startDate":"2014-11-25","notes":"","roles":["ORGANIZATION"],"siteRegistry":false}],"associatedSites":[{"dateNoted":"2019-02-05","notes":"","parcelID":"15707","siteID":"19837","siteRegistry":true},{"dateNoted":"2018-08-05","notes":"","parcelID":"17260","siteID":"19897","siteRegistry":false},{"dateNoted":"2014-11-18","notes":"","parcelID":"16887","siteID":"16673","siteRegistry":true}]},{"uuid":"c7184929-87d5-4ad0-9359-c22b34584ef0","siteID":18799,"address":"749 Willms Expressway","latitude":51.6681,"longitude":-122.0844,"lastUpdated":"2018-09-12","city":"Diamond Bar","region":"Vancouver Island/Coast","victoriaFile":"26250-20/12379","regionalFile":"N/A","parcelIDs":[6276539,8069858,9646097,5865975,9368552],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2022-05-09","completed":"2019-12-02","initiated":"2014-01-31","ministryContact":"STIEDEMANN MALVINA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2020-02-15","completed":"2016-01-03","initiated":"2020-06-16","ministryContact":"STEHR RASHAWN","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2020-10-20","completed":"2021-01-24","initiated":"2018-04-07","ministryContact":"HILLL REVA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2019-01-21","completed":"2022-07-17","initiated":"2022-06-05","ministryContact":"STROMAN ELISE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":false}],"participants":[{"name":"IPSUM","endDate":"2020-03-09","startDate":"2018-04-07","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","endDate":"2020-06-22","startDate":"2017-03-03","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","endDate":"2023-01-31","startDate":"2015-08-06","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2014-12-26","startDate":"2022-06-01","notes":"","roles":["ORGANIZATION"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2021-02-22","notes":"","parcelID":"20705","siteID":"17151","siteRegistry":false},{"dateNoted":"2023-01-11","notes":"","parcelID":"19313","siteID":"16645","siteRegistry":false},{"dateNoted":"2020-02-01","notes":"","parcelID":"15296","siteID":"19966","siteRegistry":true}]},{"uuid":"ab0cdab2-33dc-4888-b085-7c3314a2dd77","siteID":17200,"address":"481 Stark Corner","latitude":51.9462,"longitude":-128.7985,"lastUpdated":"2021-07-10","city":"Port Antoniamouth","region":"Vancouver Island/Coast","victoriaFile":"26250-20/1737","regionalFile":"N/A","parcelIDs":[4213521,1562245,6862994,9456698,3104011],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2017-01-24","completed":"2017-04-11","initiated":"2017-01-05","ministryContact":"HARTMANN ALVIS","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2015-06-12","completed":"2014-06-26","initiated":"2023-07-12","ministryContact":"FISHER ALEEN","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2021-01-13","completed":"2017-05-23","initiated":"2022-10-23","ministryContact":"HARVEY NELSON","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":false}],"participants":[{"name":"IPSUM","endDate":"2015-04-09","startDate":"2020-02-09","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"AMET, DOLOR SIT","endDate":"2020-11-08","startDate":"2014-12-25","notes":"","roles":["ORGANIZATION"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2018-08-24","notes":"","parcelID":"20982","siteID":"17322","siteRegistry":false},{"dateNoted":"2020-01-05","notes":"","parcelID":"17766","siteID":"16703","siteRegistry":false},{"dateNoted":"2021-05-17","notes":"","parcelID":"17112","siteID":"19409","siteRegistry":true}]},{"uuid":"7353d1c6-1a79-4d8a-8eda-d6e27fc2f613","siteID":20788,"address":"39884 Arvid Square","latitude":58.3453,"longitude":-123.3734,"lastUpdated":"2018-04-10","city":"Hodkiewiczshire","region":"Mainland/Southwest","victoriaFile":"26250-20/7904","regionalFile":"N/A","parcelIDs":[4100275,7986906,7019428,8325608,3005743],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2022-05-02","completed":"2015-08-14","initiated":"2017-03-02","ministryContact":"STOLTENBERG GEORGE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2015-10-01","completed":"2014-06-08","initiated":"2018-10-10","ministryContact":"JACOBS WALLACE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2018-06-23","completed":"2019-02-27","initiated":"2016-09-18","ministryContact":"HIRTHE RAUL","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2016-09-08","completed":"2013-12-03","initiated":"2021-04-24","ministryContact":"KUHN ANGELA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false}],"participants":[{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2019-02-15","startDate":"2023-05-10","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"IPSUM","endDate":"2017-09-18","startDate":"2020-05-06","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2016-04-19","startDate":"2023-03-04","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2019-01-17","startDate":"2019-02-18","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"IPSUM","endDate":"2019-12-10","startDate":"2021-04-27","notes":"","roles":["EMPLOYEE"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2014-01-19","notes":"","parcelID":"15312","siteID":"17036","siteRegistry":true}]},{"uuid":"6533d50c-3579-4c4f-acfd-b36597baf2b6","siteID":18373,"address":"80156 Swaniawski Common","latitude":54.0101,"longitude":-131.8212,"lastUpdated":"2021-06-23","city":"West Makennafield","region":"Mainland/Southwest","victoriaFile":"26250-20/2311","regionalFile":"N/A","parcelIDs":[6139964,459792,1544806,7151936,7025673],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2017-03-05","completed":"2020-11-19","initiated":"2022-06-01","ministryContact":"WUCKERT JARON","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2016-10-10","completed":"2022-08-04","initiated":"2017-02-17","ministryContact":"BRAUN DAYNA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":true}],"participants":[{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2018-08-16","startDate":"2016-11-16","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2022-02-18","startDate":"2022-11-07","notes":"","roles":["EMPLOYEE"],"siteRegistry":false}],"associatedSites":[{"dateNoted":"2020-06-07","notes":"","parcelID":"18932","siteID":"19572","siteRegistry":true},{"dateNoted":"2014-05-09","notes":"","parcelID":"18071","siteID":"17898","siteRegistry":false}]},{"uuid":"0cf0f216-e689-45c0-a01c-dff1a9e9ec9d","siteID":20661,"address":"27376 Schaefer Bridge","latitude":53.3836,"longitude":-130.5919,"lastUpdated":"2016-10-02","city":"South Kobestead","region":"Vancouver Island/Coast","victoriaFile":"26250-20/1761","regionalFile":"N/A","parcelIDs":[7662717,4261997,9966350,8977619,8717283],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2015-10-06","completed":"2023-05-29","initiated":"2023-09-11","ministryContact":"BRADTKE SERENA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2023-09-03","completed":"2017-06-10","initiated":"2017-07-07","ministryContact":"AUFDERHAR DONNY","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2023-07-29","completed":"2021-03-25","initiated":"2017-12-03","ministryContact":"YOST FRIEDA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false}],"participants":[{"name":"SHELL CANADA PRODUCTS","endDate":"2021-10-14","startDate":"2019-10-29","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"IPSUM","endDate":"2020-04-18","startDate":"2014-02-13","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","endDate":"2023-01-13","startDate":"2014-07-31","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","endDate":"2020-09-09","startDate":"2015-07-16","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"IPSUM","endDate":"2018-02-20","startDate":"2015-01-13","notes":"","roles":["EMPLOYEE"],"siteRegistry":false}],"associatedSites":[{"dateNoted":"2017-10-14","notes":"","parcelID":"20932","siteID":"18269","siteRegistry":true},{"dateNoted":"2021-07-16","notes":"","parcelID":"17705","siteID":"20906","siteRegistry":true}]},{"uuid":"fab2f6c9-7301-4496-8e6e-cfbe3621b8dc","siteID":20947,"address":"30653 Russel Forest","latitude":50.6302,"longitude":-135.5513,"lastUpdated":"2022-08-27","city":"Josestad","region":"Cariboo","victoriaFile":"26250-20/11915","regionalFile":"N/A","parcelIDs":[5271709,8488872,9172178,665633,2544964],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2017-06-30","completed":"2019-06-15","initiated":"2017-05-28","ministryContact":"UPTON-BAYER CANDELARIO","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2019-02-05","completed":"2019-10-21","initiated":"2016-08-13","ministryContact":"NIENOW ALBINA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2023-02-08","completed":"2023-05-14","initiated":"2022-04-16","ministryContact":"JAKUBOWSKI SADIE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2014-07-04","completed":"2015-02-05","initiated":"2021-05-03","ministryContact":"HINTZ KATHRYNE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2018-03-09","completed":"2019-10-01","initiated":"2020-04-11","ministryContact":"VON AALIYAH","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":true}],"participants":[{"name":"IPSUM","endDate":"2018-01-10","startDate":"2019-11-17","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"IPSUM","endDate":"2022-06-24","startDate":"2016-10-26","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","endDate":"2016-03-06","startDate":"2020-12-05","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"AMET, DOLOR SIT","endDate":"2019-12-26","startDate":"2014-06-06","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2022-05-14","startDate":"2020-12-22","notes":"","roles":["ORGANIZATION"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2013-11-12","notes":"","parcelID":"20530","siteID":"16916","siteRegistry":true},{"dateNoted":"2014-10-03","notes":"","parcelID":"17439","siteID":"15784","siteRegistry":true}]},{"uuid":"2d043386-77c9-4d5b-8cf8-2244ad6a0042","siteID":17011,"address":"70545 D'Amore Road","latitude":48.4059,"longitude":-126.7245,"lastUpdated":"2021-11-24","city":"New Corrine","region":"Thompson-Okanagan","victoriaFile":"26250-20/1270","regionalFile":"N/A","parcelIDs":[1409774,5185391,8462506,2751642,2982654],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2018-03-07","completed":"2014-09-11","initiated":"2021-05-22","ministryContact":"PARKER EMELIE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2014-07-13","completed":"2023-07-05","initiated":"2015-07-30","ministryContact":"ROHAN D'ANGELO","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2021-06-22","completed":"2020-03-27","initiated":"2019-08-09","ministryContact":"BOYER ANABEL","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2021-05-05","completed":"2022-03-09","initiated":"2015-10-27","ministryContact":"SMITH MABELLE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2020-02-22","completed":"2020-06-23","initiated":"2022-07-17","ministryContact":"SCHAMBERGER JEROME","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":false}],"participants":[{"name":"AMET, DOLOR SIT","endDate":"2015-12-25","startDate":"2016-03-26","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","endDate":"2022-05-20","startDate":"2022-09-15","notes":"","roles":["EMPLOYEE"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2014-02-10","notes":"","parcelID":"17593","siteID":"19039","siteRegistry":false}]},{"uuid":"a0815481-0cec-432c-aaa1-d6c8ccc2b44f","siteID":16229,"address":"61360 Lynch Lock","latitude":58.6711,"longitude":-128.2438,"lastUpdated":"2017-09-25","city":"East Peter","region":"Kootenay","victoriaFile":"26250-20/17387","regionalFile":"N/A","parcelIDs":[1356795,9269074,7472239,3809895,3604551],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2019-05-28","completed":"2020-10-10","initiated":"2019-09-14","ministryContact":"RUNTE IMMANUEL","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2014-02-17","completed":"2014-12-30","initiated":"2022-10-23","ministryContact":"BOYLE-WIEGAND JAMARCUS","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false}],"participants":[{"name":"IPSUM","endDate":"2021-03-21","startDate":"2021-08-08","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"IPSUM","endDate":"2021-09-20","startDate":"2022-10-26","notes":"","roles":["EMPLOYEE"],"siteRegistry":false}],"associatedSites":[{"dateNoted":"2017-04-26","notes":"","parcelID":"16413","siteID":"17275","siteRegistry":false}]},{"uuid":"a4ceff76-90a9-4431-9beb-caed16cb4eec","siteID":18135,"address":"53589 Hand Haven","latitude":51.0869,"longitude":-121.9083,"lastUpdated":"2016-07-31","city":"Pacochaworth","region":"Kootenay","victoriaFile":"26250-20/10200","regionalFile":"N/A","parcelIDs":[9624827,5372373,8364990,1766426,5590194],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2018-08-30","completed":"2014-02-04","initiated":"2022-12-30","ministryContact":"HESSEL ROSSIE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2014-06-08","completed":"2016-04-27","initiated":"2015-04-25","ministryContact":"RUSSEL ERA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":false}],"participants":[{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2020-07-10","startDate":"2018-09-19","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2021-01-04","startDate":"2016-08-27","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2021-09-18","startDate":"2016-01-25","notes":"","roles":["ORGANIZATION"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2014-02-21","notes":"","parcelID":"15399","siteID":"19741","siteRegistry":false},{"dateNoted":"2023-03-23","notes":"","parcelID":"18000","siteID":"20869","siteRegistry":false}]},{"uuid":"5823804c-c70d-42bc-92ab-e567031da8fa","siteID":20717,"address":"813 Demario Points","latitude":49.6601,"longitude":-119.863,"lastUpdated":"2018-09-17","city":"Rockford","region":"Mainland/Southwest","victoriaFile":"26250-20/19865","regionalFile":"N/A","parcelIDs":[8968487,8325840,3063921,6145142,3668376],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2015-09-28","completed":"2022-12-09","initiated":"2015-05-05","ministryContact":"MURRAY-DECKOW CONSTANCE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2015-11-18","completed":"2019-03-29","initiated":"2016-04-13","ministryContact":"HAMILL MAXIMO","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2014-08-11","completed":"2017-05-28","initiated":"2022-08-27","ministryContact":"ROHAN GEOFFREY","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":true}],"participants":[{"name":"SHELL CANADA PRODUCTS","endDate":"2020-02-11","startDate":"2016-12-14","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"AMET, DOLOR SIT","endDate":"2014-02-16","startDate":"2019-06-12","notes":"","roles":["ORGANIZATION"],"siteRegistry":false}],"associatedSites":[{"dateNoted":"2021-06-27","notes":"","parcelID":"18728","siteID":"16133","siteRegistry":false},{"dateNoted":"2023-09-08","notes":"","parcelID":"18782","siteID":"19075","siteRegistry":false},{"dateNoted":"2017-05-08","notes":"","parcelID":"15211","siteID":"19778","siteRegistry":false}]},{"uuid":"edfcefc7-aeb6-4f0c-b16e-086c0c16ce38","siteID":20930,"address":"1751 Grady Mall","latitude":54.3616,"longitude":-121.1189,"lastUpdated":"2019-08-19","city":"East Budcester","region":"Mainland/Southwest","victoriaFile":"26250-20/12168","regionalFile":"N/A","parcelIDs":[6512842,3047915,6914575,829233,7733966],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2018-12-20","completed":"2016-05-19","initiated":"2016-08-29","ministryContact":"KOZEY CRISTAL","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2022-09-25","completed":"2019-07-16","initiated":"2017-11-23","ministryContact":"JACOBI RODOLFO","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":true}],"participants":[{"name":"IPSUM","endDate":"2016-01-27","startDate":"2021-01-01","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2017-11-20","startDate":"2021-07-29","notes":"","roles":["EMPLOYEE"],"siteRegistry":false}],"associatedSites":[{"dateNoted":"2019-03-06","notes":"","parcelID":"16919","siteID":"18859","siteRegistry":true}]},{"uuid":"e7ab6ab4-fee7-4f3a-a609-0d5a8ee4a672","siteID":20178,"address":"70043 Hamill Pine","latitude":50.7262,"longitude":-121.0374,"lastUpdated":"2021-09-07","city":"Fort Herta","region":"Thompson-Okanagan","victoriaFile":"26250-20/6047","regionalFile":"N/A","parcelIDs":[7995530,1675176,6863097,5340879,199985],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2021-10-24","completed":"2018-11-23","initiated":"2013-12-14","ministryContact":"AUFDERHAR EVERETTE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2019-01-04","completed":"2016-03-02","initiated":"2019-08-23","ministryContact":"FLATLEY VALENTIN","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2023-08-30","completed":"2015-12-29","initiated":"2016-05-11","ministryContact":"BODE MELYSSA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2021-05-05","completed":"2020-09-30","initiated":"2019-04-12","ministryContact":"CRIST REESE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2020-09-06","completed":"2018-01-22","initiated":"2017-10-19","ministryContact":"SCHUSTER VERNER","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":true}],"participants":[{"name":"SHELL CANADA PRODUCTS","endDate":"2019-11-01","startDate":"2018-01-26","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"AMET, DOLOR SIT","endDate":"2018-11-30","startDate":"2016-10-10","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2020-04-20","startDate":"2023-08-29","notes":"","roles":["ORGANIZATION"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2021-06-11","notes":"","parcelID":"18836","siteID":"17448","siteRegistry":false}]},{"uuid":"ccbe39bc-0d22-4d90-9023-7b1af0fbb89d","siteID":17074,"address":"6200 Caitlyn Ramp","latitude":49.2384,"longitude":-122.6844,"lastUpdated":"2019-07-15","city":"Lake Kelleyshire","region":"Cariboo","victoriaFile":"26250-20/16511","regionalFile":"N/A","parcelIDs":[4753072,7165475,3579586,4014857,2579975],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2019-06-27","completed":"2021-05-29","initiated":"2016-06-25","ministryContact":"GERHOLD HOBART","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2016-12-02","completed":"2015-09-29","initiated":"2015-02-23","ministryContact":"OKUNEVA IMOGENE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2014-12-12","completed":"2017-04-19","initiated":"2021-04-09","ministryContact":"VONRUEDEN PIPER","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false}],"participants":[{"name":"IPSUM","endDate":"2018-07-14","startDate":"2023-08-19","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"IPSUM","endDate":"2019-10-18","startDate":"2013-11-08","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","endDate":"2015-04-15","startDate":"2016-03-15","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"AMET, DOLOR SIT","endDate":"2019-05-20","startDate":"2015-07-08","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2019-05-26","startDate":"2022-05-05","notes":"","roles":["ORGANIZATION"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2015-12-30","notes":"","parcelID":"16213","siteID":"20211","siteRegistry":false},{"dateNoted":"2020-02-02","notes":"","parcelID":"16625","siteID":"19762","siteRegistry":false}]},{"uuid":"7f88e2e1-3ad2-4e0f-835d-9951de38d0ab","siteID":16703,"address":"32129 Doris Courts","latitude":52.9389,"longitude":-128.3399,"lastUpdated":"2023-02-16","city":"Lake Berneice","region":" North Coast","victoriaFile":"26250-20/2179","regionalFile":"N/A","parcelIDs":[2377825,1864668,7711805,6807224,3706002],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2016-07-25","completed":"2014-11-30","initiated":"2014-10-03","ministryContact":"CASSIN OLA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2022-02-22","completed":"2015-12-03","initiated":"2019-06-28","ministryContact":"FARRELL RAMONA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2016-07-31","completed":"2018-07-12","initiated":"2021-11-01","ministryContact":"BARTOLETTI-KING JAMARCUS","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2017-01-03","completed":"2014-07-16","initiated":"2014-08-10","ministryContact":"JENKINS MEAGAN","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2014-01-28","completed":"2021-07-08","initiated":"2022-05-22","ministryContact":"CORMIER JULES","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":true}],"participants":[{"name":"IPSUM","endDate":"2020-10-24","startDate":"2016-11-08","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2014-10-15","startDate":"2020-05-30","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"IPSUM","endDate":"2022-07-14","startDate":"2018-01-04","notes":"","roles":["ORGANIZATION"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2020-07-12","notes":"","parcelID":"16866","siteID":"18047","siteRegistry":false},{"dateNoted":"2016-06-23","notes":"","parcelID":"20179","siteID":"19903","siteRegistry":true}]},{"uuid":"40bd5675-1fb9-41e9-a6d0-9c53a17851e0","siteID":17050,"address":"364 Felicita Ville","latitude":52.7189,"longitude":-137.8472,"lastUpdated":"2016-09-11","city":"Rosalynhaven","region":"Cariboo","victoriaFile":"26250-20/6640","regionalFile":"N/A","parcelIDs":[5230155,4995275,1559380,2072552,259201],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2022-05-03","completed":"2016-03-05","initiated":"2018-10-19","ministryContact":"LIND ZOEY","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2014-11-01","completed":"2016-02-19","initiated":"2023-02-27","ministryContact":"SCHMELER PATRICK","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2015-11-02","completed":"2022-02-25","initiated":"2014-07-06","ministryContact":"JOHNSTON HAILEE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":false}],"participants":[{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2023-03-23","startDate":"2023-04-01","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","endDate":"2022-11-16","startDate":"2016-01-14","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"IPSUM","endDate":"2022-04-02","startDate":"2016-09-26","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"IPSUM","endDate":"2016-01-15","startDate":"2019-06-01","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"IPSUM","endDate":"2018-09-12","startDate":"2018-03-13","notes":"","roles":["EMPLOYEE"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2016-07-11","notes":"","parcelID":"17179","siteID":"15654","siteRegistry":true},{"dateNoted":"2023-06-04","notes":"","parcelID":"17143","siteID":"16673","siteRegistry":false},{"dateNoted":"2020-02-29","notes":"","parcelID":"19517","siteID":"17190","siteRegistry":true}]},{"uuid":"b5b54482-2a1e-484e-9601-a46b4af2951b","siteID":19819,"address":"378 Chesley Course","latitude":48.7975,"longitude":-121.8271,"lastUpdated":"2021-02-21","city":"Lake Laneworth","region":"Kootenay","victoriaFile":"26250-20/9184","regionalFile":"N/A","parcelIDs":[1618632,2816910,4620587,3265650,4194508],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2023-07-09","completed":"2019-05-14","initiated":"2018-11-27","ministryContact":"LEFFLER KIERA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2016-07-01","completed":"2022-09-06","initiated":"2015-05-16","ministryContact":"KLEIN AHMAD","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":true}],"participants":[{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2018-10-23","startDate":"2015-02-04","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","endDate":"2015-10-12","startDate":"2015-05-30","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2014-07-20","startDate":"2018-10-24","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","endDate":"2016-08-03","startDate":"2022-12-02","notes":"","roles":["EMPLOYEE"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2017-08-11","notes":"","parcelID":"16448","siteID":"15361","siteRegistry":false},{"dateNoted":"2016-02-05","notes":"","parcelID":"16567","siteID":"15654","siteRegistry":true}]},{"uuid":"ed2a7d16-ceed-4065-941d-dadda86ff477","siteID":19351,"address":"9403 Jacobson Path","latitude":58.1959,"longitude":-131.7107,"lastUpdated":"2019-03-25","city":"Westview","region":" North Coast","victoriaFile":"26250-20/5096","regionalFile":"N/A","parcelIDs":[1639896,6741054,3463012,2349487,2817121],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2020-12-04","completed":"2013-12-13","initiated":"2014-08-17","ministryContact":"CORKERY ICIE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2014-08-30","completed":"2015-12-15","initiated":"2020-03-05","ministryContact":"ROOB KACIE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2022-07-24","completed":"2017-10-25","initiated":"2014-04-24","ministryContact":"CARTER KEVON","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2022-02-27","completed":"2022-04-12","initiated":"2021-07-06","ministryContact":"ONDRICKA JED","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2019-06-06","completed":"2016-05-16","initiated":"2019-02-12","ministryContact":"BOSCO DANE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":false}],"participants":[{"name":"AMET, DOLOR SIT","endDate":"2017-04-23","startDate":"2018-07-07","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","endDate":"2021-07-08","startDate":"2022-01-23","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"AMET, DOLOR SIT","endDate":"2016-04-07","startDate":"2016-07-03","notes":"","roles":["EMPLOYEE"],"siteRegistry":false}],"associatedSites":[{"dateNoted":"2017-02-04","notes":"","parcelID":"15613","siteID":"17304","siteRegistry":false},{"dateNoted":"2016-12-30","notes":"","parcelID":"18314","siteID":"15653","siteRegistry":true}]},{"uuid":"ff563f65-15a1-4e8f-9884-6f84442c6abf","siteID":17572,"address":"6304 Israel Row","latitude":52.4025,"longitude":-124.0437,"lastUpdated":"2013-11-12","city":"New Emerald","region":"Thompson-Okanagan","victoriaFile":"26250-20/4122","regionalFile":"N/A","parcelIDs":[5545119,8119763,9668668,1175280,3754510],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2021-10-20","completed":"2022-03-05","initiated":"2020-06-16","ministryContact":"OLSON NYAH","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2021-02-07","completed":"2022-10-21","initiated":"2013-11-06","ministryContact":"JASKOLSKI KELVIN","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":true}],"participants":[{"name":"AMET, DOLOR SIT","endDate":"2017-09-13","startDate":"2020-09-26","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","endDate":"2019-07-27","startDate":"2016-10-18","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","endDate":"2019-11-25","startDate":"2016-08-30","notes":"","roles":["EMPLOYEE"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2020-11-01","notes":"","parcelID":"16353","siteID":"17226","siteRegistry":true},{"dateNoted":"2022-11-08","notes":"","parcelID":"19367","siteID":"16736","siteRegistry":false}]},{"uuid":"731f8d4b-3b4e-4fb8-9e2a-d0f847175ce4","siteID":20986,"address":"4295 Jennie Ferry","latitude":55.0137,"longitude":-134.9303,"lastUpdated":"2021-03-24","city":"Lake Letitia","region":"Cariboo","victoriaFile":"26250-20/10343","regionalFile":"N/A","parcelIDs":[3686120,1948396,7443928,1681032,6807310],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2023-04-25","completed":"2020-06-16","initiated":"2020-06-13","ministryContact":"RUNOLFSDOTTIR LUDIE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2023-02-08","completed":"2017-01-25","initiated":"2020-12-12","ministryContact":"BOEHM CHARLEY","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2021-06-30","completed":"2022-10-12","initiated":"2018-11-18","ministryContact":"STREICH MADISEN","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2019-01-15","completed":"2015-06-02","initiated":"2020-05-22","ministryContact":"PRICE SHAKIRA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2021-09-22","completed":"2013-11-19","initiated":"2018-09-07","ministryContact":"HERMAN SHERWOOD","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":false}],"participants":[{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2016-02-01","startDate":"2016-02-25","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","endDate":"2018-08-05","startDate":"2017-02-27","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"AMET, DOLOR SIT","endDate":"2016-01-01","startDate":"2018-01-30","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2018-01-17","startDate":"2023-03-11","notes":"","roles":["EMPLOYEE"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2014-11-06","notes":"","parcelID":"18591","siteID":"16222","siteRegistry":true},{"dateNoted":"2016-02-12","notes":"","parcelID":"19731","siteID":"20211","siteRegistry":false}]},{"uuid":"08f0b7e6-9335-46d4-aecc-33982226aa7c","siteID":18695,"address":"367 Lillie Spurs","latitude":53.1604,"longitude":-128.6859,"lastUpdated":"2021-08-31","city":"Keyonfield","region":" North Coast","victoriaFile":"26250-20/8685","regionalFile":"N/A","parcelIDs":[7948437,9077638,4513721,2322374,7725399],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2017-10-20","completed":"2018-07-12","initiated":"2020-03-22","ministryContact":"SWANIAWSKI MARIELA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2022-07-31","completed":"2021-07-01","initiated":"2014-03-26","ministryContact":"BAYER OFELIA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":true}],"participants":[{"name":"AMET, DOLOR SIT","endDate":"2013-12-10","startDate":"2015-06-13","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"AMET, DOLOR SIT","endDate":"2019-01-08","startDate":"2014-10-05","notes":"","roles":["ORGANIZATION"],"siteRegistry":false}],"associatedSites":[{"dateNoted":"2020-02-05","notes":"","parcelID":"16140","siteID":"19233","siteRegistry":false},{"dateNoted":"2019-11-20","notes":"","parcelID":"18182","siteID":"17012","siteRegistry":true}]},{"uuid":"e8221d8c-c189-484b-8fea-44c35571a46f","siteID":17038,"address":"215 Nienow Extensions","latitude":53.7124,"longitude":-136.4697,"lastUpdated":"2014-12-14","city":"Bobbyburgh","region":"Vancouver Island/Coast","victoriaFile":"26250-20/17122","regionalFile":"N/A","parcelIDs":[8746540,6226683,684980,6768722,1938256],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2018-08-08","completed":"2022-11-06","initiated":"2015-06-02","ministryContact":"MAYERT ELOISE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2020-02-23","completed":"2017-06-06","initiated":"2017-08-10","ministryContact":"PADBERG EDEN","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":true}],"participants":[{"name":"AMET, DOLOR SIT","endDate":"2023-07-12","startDate":"2019-10-06","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","endDate":"2021-02-10","startDate":"2020-10-23","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"IPSUM","endDate":"2018-11-16","startDate":"2017-06-17","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","endDate":"2023-03-14","startDate":"2014-04-20","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"AMET, DOLOR SIT","endDate":"2021-05-09","startDate":"2014-07-20","notes":"","roles":["EMPLOYEE"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2016-09-19","notes":"","parcelID":"18327","siteID":"20930","siteRegistry":true}]},{"uuid":"4f538981-dd76-42c7-89c6-e36209d8cbb0","siteID":16351,"address":"64095 Reichert Dale","latitude":57.9585,"longitude":-119.3271,"lastUpdated":"2014-07-23","city":"South Nyasiafurt","region":"Thompson-Okanagan","victoriaFile":"26250-20/1833","regionalFile":"N/A","parcelIDs":[6974862,8178939,4453334,7339380,7087646],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2015-03-22","completed":"2014-09-23","initiated":"2018-03-26","ministryContact":"SCHOEN KACIE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2014-10-16","completed":"2023-08-29","initiated":"2021-06-22","ministryContact":"MURPHY CALLIE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2016-07-02","completed":"2018-12-26","initiated":"2015-08-16","ministryContact":"PROSACCO SUZANNE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":false}],"participants":[{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2017-03-09","startDate":"2019-09-14","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"AMET, DOLOR SIT","endDate":"2014-11-15","startDate":"2020-10-10","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2018-09-15","startDate":"2014-11-27","notes":"","roles":["ORGANIZATION"],"siteRegistry":false}],"associatedSites":[{"dateNoted":"2020-04-12","notes":"","parcelID":"18190","siteID":"17412","siteRegistry":false},{"dateNoted":"2020-03-20","notes":"","parcelID":"17749","siteID":"17113","siteRegistry":false}]},{"uuid":"6500d8db-02ae-451e-95ab-cbb3870e1ade","siteID":18047,"address":"40818 Watsica Trail","latitude":58.2308,"longitude":-127.6677,"lastUpdated":"2022-01-24","city":"Lindafield","region":"Mainland/Southwest","victoriaFile":"26250-20/3132","regionalFile":"N/A","parcelIDs":[1909427,8445083,6439060,5111760,313189],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2021-04-29","completed":"2020-02-17","initiated":"2020-05-22","ministryContact":"GERHOLD ELIAS","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2018-03-06","completed":"2020-12-25","initiated":"2018-12-15","ministryContact":"VANDERVORT KATELIN","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2019-03-24","completed":"2022-05-03","initiated":"2021-02-24","ministryContact":"LESCH SANFORD","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2017-01-22","completed":"2018-04-27","initiated":"2023-07-04","ministryContact":"GUTMANN VIOLETTE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2014-10-25","completed":"2023-05-11","initiated":"2014-10-23","ministryContact":"ZIEME CANDICE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":false}],"participants":[{"name":"IPSUM","endDate":"2015-11-25","startDate":"2022-12-17","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","endDate":"2021-03-28","startDate":"2022-01-19","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","endDate":"2021-04-16","startDate":"2019-05-26","notes":"","roles":["ORGANIZATION"],"siteRegistry":false}],"associatedSites":[{"dateNoted":"2022-11-02","notes":"","parcelID":"20635","siteID":"19039","siteRegistry":true},{"dateNoted":"2019-07-04","notes":"","parcelID":"18847","siteID":"19872","siteRegistry":false}]},{"uuid":"9051a29e-65f3-434e-a7c3-68a93e286b88","siteID":16723,"address":"990 Allene Loaf","latitude":50,"longitude":-131.8873,"lastUpdated":"2018-05-06","city":"Stehrton","region":"Kootenay","victoriaFile":"26250-20/18775","regionalFile":"N/A","parcelIDs":[8931160,6905948,4451476,1751599,8193466],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2015-06-03","completed":"2014-08-18","initiated":"2016-03-11","ministryContact":"HAND KAVON","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2022-01-04","completed":"2019-01-05","initiated":"2018-05-25","ministryContact":"SCHINNER DARIO","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2015-05-25","completed":"2019-12-19","initiated":"2017-10-21","ministryContact":"JAKUBOWSKI TAYLOR","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2016-12-26","completed":"2021-06-29","initiated":"2014-08-18","ministryContact":"BUCKRIDGE-LARSON EDWARD","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":false}],"participants":[{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2018-04-03","startDate":"2015-12-14","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"IPSUM","endDate":"2014-01-31","startDate":"2014-02-18","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","endDate":"2022-06-29","startDate":"2018-04-10","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2021-07-12","startDate":"2023-02-16","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"AMET, DOLOR SIT","endDate":"2017-09-30","startDate":"2015-07-15","notes":"","roles":["ORGANIZATION"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2018-08-22","notes":"","parcelID":"15709","siteID":"15656","siteRegistry":true},{"dateNoted":"2022-02-15","notes":"","parcelID":"15891","siteID":"16793","siteRegistry":true},{"dateNoted":"2018-05-13","notes":"","parcelID":"20937","siteID":"18838","siteRegistry":false}]},{"uuid":"79729799-f4c9-41aa-8965-e9c7136e2d13","siteID":20366,"address":"918 Ramona Radial","latitude":51.166,"longitude":-120.2894,"lastUpdated":"2017-05-05","city":"West Maybell","region":" North Coast","victoriaFile":"26250-20/5979","regionalFile":"N/A","parcelIDs":[7665543,829156,6331600,9877698,2676854],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2021-11-23","completed":"2019-09-14","initiated":"2014-01-20","ministryContact":"MCCLURE BILL","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2017-04-29","completed":"2013-10-24","initiated":"2018-01-23","ministryContact":"MARKS TILLMAN","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":true}],"participants":[{"name":"IPSUM","endDate":"2015-12-02","startDate":"2017-10-02","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"IPSUM","endDate":"2021-04-03","startDate":"2022-08-12","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","endDate":"2019-02-12","startDate":"2020-06-21","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","endDate":"2020-03-09","startDate":"2019-12-04","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2016-07-03","startDate":"2019-12-13","notes":"","roles":["ORGANIZATION"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2015-02-28","notes":"","parcelID":"16167","siteID":"17935","siteRegistry":false},{"dateNoted":"2021-12-12","notes":"","parcelID":"17933","siteID":"20915","siteRegistry":true}]},{"uuid":"b90f334a-7729-4a83-987a-cafae5a01953","siteID":20443,"address":"27757 Bayer Throughway","latitude":55.6979,"longitude":-128.2715,"lastUpdated":"2015-11-15","city":"East Brigittestad","region":"Thompson-Okanagan","victoriaFile":"26250-20/11279","regionalFile":"N/A","parcelIDs":[4983067,725212,9025726,6418320,698857],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2023-08-14","completed":"2019-01-03","initiated":"2016-01-14","ministryContact":"YUNDT DRAKE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2021-10-13","completed":"2014-02-03","initiated":"2014-04-24","ministryContact":"BODE EMMY","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":true}],"participants":[{"name":"SHELL CANADA PRODUCTS","endDate":"2021-01-04","startDate":"2023-07-21","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2022-08-01","startDate":"2017-01-06","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"AMET, DOLOR SIT","endDate":"2017-07-15","startDate":"2018-09-16","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"AMET, DOLOR SIT","endDate":"2020-03-06","startDate":"2015-10-08","notes":"","roles":["ORGANIZATION"],"siteRegistry":false}],"associatedSites":[{"dateNoted":"2020-11-27","notes":"","parcelID":"19841","siteID":"17050","siteRegistry":true},{"dateNoted":"2014-12-10","notes":"","parcelID":"16402","siteID":"18047","siteRegistry":true},{"dateNoted":"2015-05-15","notes":"","parcelID":"18540","siteID":"17275","siteRegistry":false}]},{"uuid":"92ffb73b-4240-498e-92d8-3283384cd07d","siteID":15792,"address":"2626 Kutch Camp","latitude":48.5774,"longitude":-127.9645,"lastUpdated":"2022-01-18","city":"West Lenniechester","region":"Mainland/Southwest","victoriaFile":"26250-20/8813","regionalFile":"N/A","parcelIDs":[8731704,8598487,5966563,1904361,2867658],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2021-03-26","completed":"2014-12-14","initiated":"2023-03-06","ministryContact":"KOVACEK QUINTON","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2016-12-21","completed":"2022-10-28","initiated":"2020-03-31","ministryContact":"DARE CORRINE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2022-11-21","completed":"2016-02-10","initiated":"2016-06-09","ministryContact":"STOKES JOANA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2020-12-03","completed":"2023-05-26","initiated":"2014-01-31","ministryContact":"ROSENBAUM ERNESTO","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2018-10-14","completed":"2019-03-26","initiated":"2023-06-15","ministryContact":"O'CONNER BONITA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false}],"participants":[{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2022-07-25","startDate":"2022-09-13","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","endDate":"2022-10-23","startDate":"2019-06-15","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"IPSUM","endDate":"2014-05-02","startDate":"2021-06-05","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"AMET, DOLOR SIT","endDate":"2018-10-29","startDate":"2020-10-17","notes":"","roles":["EMPLOYEE"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2022-10-16","notes":"","parcelID":"17804","siteID":"20443","siteRegistry":false},{"dateNoted":"2018-12-01","notes":"","parcelID":"20297","siteID":"16725","siteRegistry":true},{"dateNoted":"2022-11-02","notes":"","parcelID":"19767","siteID":"19762","siteRegistry":true}]},{"uuid":"acb16f30-19d9-4b15-873f-aa85ed8e2e13","siteID":16721,"address":"2616 Rippin Turnpike","latitude":56.9949,"longitude":-122.8935,"lastUpdated":"2023-03-03","city":"Tonawanda","region":"Cariboo","victoriaFile":"26250-20/10527","regionalFile":"N/A","parcelIDs":[9232651,1368929,9326830,2138805,4784543],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2023-05-11","completed":"2015-04-10","initiated":"2022-08-06","ministryContact":"BLOCK SHEA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2019-05-26","completed":"2018-11-25","initiated":"2019-01-08","ministryContact":"VEUM JANY","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false}],"participants":[{"name":"IPSUM","endDate":"2020-04-11","startDate":"2016-04-19","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","endDate":"2020-12-02","startDate":"2021-12-21","notes":"","roles":["ORGANIZATION"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2023-05-15","notes":"","parcelID":"15798","siteID":"20930","siteRegistry":false},{"dateNoted":"2015-01-09","notes":"","parcelID":"20782","siteID":"19773","siteRegistry":false}]},{"uuid":"3e4c92d4-ef2f-44aa-bc9d-875f59f550b0","siteID":20858,"address":"8766 Ondricka Light","latitude":54.7224,"longitude":-134.3966,"lastUpdated":"2017-11-11","city":"Tysonside","region":" North Coast","victoriaFile":"26250-20/16235","regionalFile":"N/A","parcelIDs":[8441705,8565745,8512999,7910527,2978169],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2023-04-21","completed":"2015-02-20","initiated":"2019-10-11","ministryContact":"VONRUEDEN DAGMAR","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2022-01-09","completed":"2017-09-29","initiated":"2014-06-09","ministryContact":"ROBERTS BRAD","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":true}],"participants":[{"name":"SHELL CANADA PRODUCTS","endDate":"2017-11-06","startDate":"2017-03-22","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2017-07-06","startDate":"2022-09-27","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"AMET, DOLOR SIT","endDate":"2015-03-17","startDate":"2017-05-21","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"IPSUM","endDate":"2015-08-11","startDate":"2014-04-14","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"IPSUM","endDate":"2022-01-25","startDate":"2015-09-04","notes":"","roles":["ORGANIZATION"],"siteRegistry":false}],"associatedSites":[{"dateNoted":"2017-10-21","notes":"","parcelID":"18810","siteID":"18093","siteRegistry":false},{"dateNoted":"2021-06-22","notes":"","parcelID":"19034","siteID":"17976","siteRegistry":false}]},{"uuid":"cd017f44-6ed2-436d-99c2-e19ef583a8e5","siteID":20162,"address":"4354 Pablo Mountains","latitude":56.1048,"longitude":-138.8038,"lastUpdated":"2021-12-02","city":"Missouriland","region":"Kootenay","victoriaFile":"26250-20/4030","regionalFile":"N/A","parcelIDs":[2808786,6749208,4539734,5912840,7292684],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2021-01-04","completed":"2015-05-16","initiated":"2017-01-19","ministryContact":"WAELCHI-LIND OBIE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2021-08-24","completed":"2017-07-17","initiated":"2020-05-22","ministryContact":"LEFFLER THERESA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":true}],"participants":[{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2013-10-20","startDate":"2013-12-07","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"AMET, DOLOR SIT","endDate":"2019-03-20","startDate":"2018-07-23","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","endDate":"2016-05-13","startDate":"2020-04-27","notes":"","roles":["EMPLOYEE"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2014-09-15","notes":"","parcelID":"18322","siteID":"18652","siteRegistry":true},{"dateNoted":"2016-07-01","notes":"","parcelID":"18973","siteID":"18135","siteRegistry":true}]},{"uuid":"2b6b2337-53d5-4fa5-8c94-a977fd28d3a6","siteID":17226,"address":"1752 Santa Meadows","latitude":49.883,"longitude":-136.1977,"lastUpdated":"2014-07-21","city":"Fort Tyson","region":"Thompson-Okanagan","victoriaFile":"26250-20/17839","regionalFile":"N/A","parcelIDs":[6014355,228964,9997210,1480713,4542030],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2015-10-11","completed":"2016-03-30","initiated":"2015-09-26","ministryContact":"MANTE SELENA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2018-07-08","completed":"2016-12-12","initiated":"2016-02-01","ministryContact":"CONROY MARIANA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":true}],"participants":[{"name":"SHELL CANADA PRODUCTS","endDate":"2020-04-11","startDate":"2021-09-22","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","endDate":"2016-10-09","startDate":"2015-07-21","notes":"","roles":["EMPLOYEE"],"siteRegistry":false}],"associatedSites":[{"dateNoted":"2020-11-21","notes":"","parcelID":"20736","siteID":"16736","siteRegistry":true},{"dateNoted":"2014-11-09","notes":"","parcelID":"15974","siteID":"20947","siteRegistry":true},{"dateNoted":"2019-09-28","notes":"","parcelID":"16458","siteID":"18162","siteRegistry":false}]},{"uuid":"c84c0f70-8565-4f9a-a020-b83475d9cf12","siteID":17012,"address":"81955 Huels Ports","latitude":54.5663,"longitude":-122.264,"lastUpdated":"2015-06-29","city":"Jovanhaven","region":"Thompson-Okanagan","victoriaFile":"26250-20/15997","regionalFile":"N/A","parcelIDs":[9226492,5266721,1062357,5215930,9411905],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2016-11-08","completed":"2023-08-14","initiated":"2017-01-30","ministryContact":"GERLACH MARIANE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2022-09-05","completed":"2022-04-19","initiated":"2014-01-26","ministryContact":"TORPHY ENA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2022-07-14","completed":"2017-11-14","initiated":"2019-01-17","ministryContact":"LANGWORTH ENA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2013-12-29","completed":"2023-08-10","initiated":"2022-10-02","ministryContact":"GLEICHNER JUNIUS","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":false}],"participants":[{"name":"IPSUM","endDate":"2015-12-30","startDate":"2023-01-22","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2022-04-02","startDate":"2018-03-13","notes":"","roles":["ORGANIZATION"],"siteRegistry":false}],"associatedSites":[{"dateNoted":"2017-04-04","notes":"","parcelID":"18262","siteID":"18799","siteRegistry":true},{"dateNoted":"2016-03-11","notes":"","parcelID":"20006","siteID":"18775","siteRegistry":false},{"dateNoted":"2017-12-16","notes":"","parcelID":"19113","siteID":"16839","siteRegistry":true}]},{"uuid":"50fe01b5-0740-41fb-a176-54e60f725b8f","siteID":18001,"address":"1011 Flo Oval","latitude":48.8412,"longitude":-124.977,"lastUpdated":"2023-02-06","city":"New Brucestead","region":"Kootenay","victoriaFile":"26250-20/19653","regionalFile":"N/A","parcelIDs":[4377774,6239390,371891,1191301,9857320],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2016-03-23","completed":"2020-09-21","initiated":"2020-11-22","ministryContact":"KUB SKYLA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2022-08-26","completed":"2021-05-11","initiated":"2017-02-27","ministryContact":"HUELS SALLY","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2015-05-04","completed":"2019-09-16","initiated":"2021-02-05","ministryContact":"WILLIAMSON ELINOR","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":true}],"participants":[{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2014-02-13","startDate":"2018-06-05","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2021-07-16","startDate":"2015-02-19","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2022-01-23","startDate":"2014-12-17","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"AMET, DOLOR SIT","endDate":"2015-04-04","startDate":"2016-07-25","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"AMET, DOLOR SIT","endDate":"2018-12-04","startDate":"2015-02-12","notes":"","roles":["EMPLOYEE"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2022-05-02","notes":"","parcelID":"18066","siteID":"20865","siteRegistry":true},{"dateNoted":"2019-09-16","notes":"","parcelID":"19793","siteID":"20788","siteRegistry":false}]},{"uuid":"85f63c23-f4cb-4d36-ac90-d59d418f5ca2","siteID":18126,"address":"430 Stoltenberg Corners","latitude":57.4977,"longitude":-118.9699,"lastUpdated":"2017-11-25","city":"Beahanside","region":"Mainland/Southwest","victoriaFile":"26250-20/4447","regionalFile":"N/A","parcelIDs":[4670133,9270907,3875043,7928666,9216967],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2016-04-12","completed":"2020-11-20","initiated":"2020-02-25","ministryContact":"STAMM MATHEW","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2022-10-01","completed":"2016-03-14","initiated":"2015-03-14","ministryContact":"FRAMI-EFFERTZ DONNELL","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false}],"participants":[{"name":"AMET, DOLOR SIT","endDate":"2023-05-01","startDate":"2021-05-26","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"AMET, DOLOR SIT","endDate":"2013-10-26","startDate":"2022-09-12","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"IPSUM","endDate":"2015-09-21","startDate":"2014-12-05","notes":"","roles":["EMPLOYEE"],"siteRegistry":false}],"associatedSites":[{"dateNoted":"2023-02-07","notes":"","parcelID":"17518","siteID":"16645","siteRegistry":false},{"dateNoted":"2016-01-02","notes":"","parcelID":"19769","siteID":"19084","siteRegistry":false},{"dateNoted":"2013-10-04","notes":"","parcelID":"16727","siteID":"15695","siteRegistry":true}]}] \ No newline at end of file diff --git a/frontend/site-search-frontend/src/scripts/generate-dummy-data.ts b/frontend/site-search-frontend/src/scripts/generate-dummy-data.ts index 80ac9cfd..2b0690af 100755 --- a/frontend/site-search-frontend/src/scripts/generate-dummy-data.ts +++ b/frontend/site-search-frontend/src/scripts/generate-dummy-data.ts @@ -16,11 +16,12 @@ */ -import { createRandomSite } from '../api/dummy-data.tsx' +import { createRandomSite, generate } from '../api/dummy-data.tsx' import { writeFile } from 'fs'; -const output = Array.from({length: 250}, _ => createRandomSite()); +// const output = Array.from({length: 250}, _ => createRandomSite()); +const output = generate({siteCount: 250}) const json = JSON.stringify(output); console.log('Writing to JSON file...'); writeFile('dummy-data.sites.json', json, 'utf8', () => { From 3aef9d86e79e5bb302e3f9ddd8e4bb7d0021351c Mon Sep 17 00:00:00 2001 From: Adam Coard Date: Fri, 29 Sep 2023 11:23:30 -0700 Subject: [PATCH 106/194] Format json --- .../src/scripts/dummy-data.sites.json | 47135 +++++++++++++++- 1 file changed, 47134 insertions(+), 1 deletion(-) diff --git a/frontend/site-search-frontend/src/scripts/dummy-data.sites.json b/frontend/site-search-frontend/src/scripts/dummy-data.sites.json index 6b41d66c..a498b496 100644 --- a/frontend/site-search-frontend/src/scripts/dummy-data.sites.json +++ b/frontend/site-search-frontend/src/scripts/dummy-data.sites.json @@ -1 +1,47134 @@ -[{"uuid":"7739e0af-e641-42f1-9419-52450e063884","siteID":18319,"address":"7321 King Hill","latitude":57.7618,"longitude":-137.916,"lastUpdated":"2014-06-07","city":"South Madie","region":"Mainland/Southwest","victoriaFile":"26250-20/4893","regionalFile":"N/A","parcelIDs":[7534998,4932627,7039573,539610,9639069],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2015-02-08","completed":"2020-02-26","initiated":"2018-10-06","ministryContact":"HARBER ALTA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2022-10-29","completed":"2015-12-09","initiated":"2015-06-06","ministryContact":"RIPPIN APRIL","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":true}],"participants":[{"name":"SHELL CANADA PRODUCTS","endDate":"2020-04-16","startDate":"2013-11-30","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","endDate":"2021-07-13","startDate":"2021-03-05","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","endDate":"2015-04-19","startDate":"2021-09-03","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","endDate":"2016-12-24","startDate":"2015-05-03","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"AMET, DOLOR SIT","endDate":"2014-06-10","startDate":"2013-12-10","notes":"","roles":["ORGANIZATION"],"siteRegistry":false}],"associatedSites":[{"dateNoted":"2019-01-11","notes":"","parcelID":"17213","siteID":"18093","siteRegistry":false},{"dateNoted":"2013-12-13","notes":"","parcelID":"15594","siteID":"15792","siteRegistry":true}]},{"uuid":"edc0fe89-59c1-4d7f-958b-5138886095df","siteID":18269,"address":"932 Brakus Islands","latitude":53.3937,"longitude":-126.1078,"lastUpdated":"2015-10-25","city":"Titoberg","region":" North Coast","victoriaFile":"26250-20/12018","regionalFile":"N/A","parcelIDs":[9472301,2884191,6409707,1818996,3861543],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2018-03-09","completed":"2021-11-18","initiated":"2019-07-25","ministryContact":"BASHIRIAN PRINCE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2016-02-23","completed":"2014-11-24","initiated":"2023-05-21","ministryContact":"WITTING TRYSTAN","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2015-01-08","completed":"2023-03-07","initiated":"2022-08-21","ministryContact":"RENNER-FUNK CALLIE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2016-08-15","completed":"2019-09-03","initiated":"2021-11-08","ministryContact":"O'REILLY CLAUDIA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":true}],"participants":[{"name":"SHELL CANADA PRODUCTS","endDate":"2017-11-28","startDate":"2017-02-15","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"AMET, DOLOR SIT","endDate":"2020-12-21","startDate":"2022-12-13","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2017-10-08","startDate":"2020-09-07","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","endDate":"2016-09-09","startDate":"2015-06-11","notes":"","roles":["EMPLOYEE"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2023-02-08","notes":"","parcelID":"17312","siteID":"17113","siteRegistry":true},{"dateNoted":"2020-04-29","notes":"","parcelID":"19289","siteID":"18495","siteRegistry":false}]},{"uuid":"fdd08826-fcce-4832-8b02-98e948bc188e","siteID":15980,"address":"968 Mertz Road","latitude":50.1289,"longitude":-136.9081,"lastUpdated":"2021-12-22","city":"South Mohammedworth","region":" North Coast","victoriaFile":"26250-20/1411","regionalFile":"N/A","parcelIDs":[7295341,8323174,7102816,5270134,1312009],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2016-05-02","completed":"2022-09-08","initiated":"2021-05-16","ministryContact":"OLSON XZAVIER","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2017-11-01","completed":"2017-09-30","initiated":"2019-01-23","ministryContact":"LINDGREN NICOLETTE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2018-10-20","completed":"2017-10-14","initiated":"2021-08-15","ministryContact":"EBERT LIANA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2021-01-27","completed":"2021-02-10","initiated":"2018-09-23","ministryContact":"ROOB MARIANA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2023-09-08","completed":"2023-08-21","initiated":"2017-08-03","ministryContact":"RYAN LAURIANNE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":true}],"participants":[{"name":"AMET, DOLOR SIT","endDate":"2017-01-08","startDate":"2016-07-04","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2018-12-13","startDate":"2014-09-03","notes":"","roles":["EMPLOYEE"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2020-01-18","notes":"","parcelID":"15283","siteID":"19903","siteRegistry":false},{"dateNoted":"2019-08-04","notes":"","parcelID":"15389","siteID":"15577","siteRegistry":false},{"dateNoted":"2014-06-10","notes":"","parcelID":"16657","siteID":"19380","siteRegistry":true}]},{"uuid":"889b94d4-736c-4217-a0f2-72e2c9235813","siteID":18065,"address":"64134 Jada Glen","latitude":56.3675,"longitude":-130.3327,"lastUpdated":"2018-02-06","city":"North Carterfurt","region":"Cariboo","victoriaFile":"26250-20/17862","regionalFile":"N/A","parcelIDs":[8846220,8584515,6083650,9174776,9412895],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2023-02-25","completed":"2022-05-21","initiated":"2023-08-08","ministryContact":"STROSIN BELLA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2014-05-04","completed":"2017-02-21","initiated":"2016-04-01","ministryContact":"HUEL LULU","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":true}],"participants":[{"name":"SHELL CANADA PRODUCTS","endDate":"2016-07-14","startDate":"2020-11-11","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"AMET, DOLOR SIT","endDate":"2015-10-08","startDate":"2015-12-09","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2017-04-16","startDate":"2016-04-14","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","endDate":"2023-02-24","startDate":"2014-07-20","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2019-01-07","startDate":"2017-10-20","notes":"","roles":["EMPLOYEE"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2016-05-08","notes":"","parcelID":"18635","siteID":"20788","siteRegistry":false},{"dateNoted":"2016-12-08","notes":"","parcelID":"17135","siteID":"17414","siteRegistry":false}]},{"uuid":"f015e3d9-c3ac-489a-a4a6-8bad67885aa3","siteID":15784,"address":"116 Erin Rue","latitude":53.6632,"longitude":-118.0536,"lastUpdated":"2021-12-19","city":"Kielbury","region":" North Coast","victoriaFile":"26250-20/11964","regionalFile":"N/A","parcelIDs":[1650055,9103114,1089791,515337,6604543],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2020-09-17","completed":"2014-08-28","initiated":"2016-02-14","ministryContact":"CORMIER ERNIE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2017-05-27","completed":"2018-09-20","initiated":"2016-05-31","ministryContact":"CRONIN FLORIDA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2020-03-08","completed":"2021-07-18","initiated":"2015-02-06","ministryContact":"DICKINSON ANNA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2016-02-01","completed":"2014-12-26","initiated":"2020-12-10","ministryContact":"BEATTY-WYMAN PATSY","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2021-01-27","completed":"2021-03-28","initiated":"2014-05-16","ministryContact":"YUNDT RAFAELA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":false}],"participants":[{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2014-09-10","startDate":"2017-03-08","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"IPSUM","endDate":"2018-11-19","startDate":"2014-07-24","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2018-03-03","startDate":"2019-11-15","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"IPSUM","endDate":"2022-01-05","startDate":"2014-11-02","notes":"","roles":["EMPLOYEE"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2015-01-18","notes":"","parcelID":"15293","siteID":"18775","siteRegistry":false},{"dateNoted":"2021-04-08","notes":"","parcelID":"20313","siteID":"20555","siteRegistry":false},{"dateNoted":"2023-02-18","notes":"","parcelID":"15704","siteID":"20957","siteRegistry":true}]},{"uuid":"a0948bb1-b06a-42cc-ab19-86a9cea7f7e9","siteID":19905,"address":"8574 Hayden Forest","latitude":56.4413,"longitude":-120.5489,"lastUpdated":"2022-05-24","city":"Fort Electafield","region":" North Coast","victoriaFile":"26250-20/18738","regionalFile":"N/A","parcelIDs":[9098175,3532457,8278379,9391471,3226250],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2019-06-01","completed":"2014-11-06","initiated":"2018-02-24","ministryContact":"WUNSCH VINCENT","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2017-06-15","completed":"2014-07-26","initiated":"2016-02-10","ministryContact":"STROSIN JEFFREY","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2020-12-31","completed":"2023-04-20","initiated":"2023-01-20","ministryContact":"RIPPIN MORTIMER","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2016-02-10","completed":"2014-05-20","initiated":"2013-12-09","ministryContact":"KING SYDNEE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":true}],"participants":[{"name":"IPSUM","endDate":"2022-01-03","startDate":"2014-04-23","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"IPSUM","endDate":"2014-02-13","startDate":"2019-01-05","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2017-01-16","startDate":"2013-12-16","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","endDate":"2018-06-25","startDate":"2017-09-29","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"AMET, DOLOR SIT","endDate":"2018-05-01","startDate":"2018-09-28","notes":"","roles":["ORGANIZATION"],"siteRegistry":false}],"associatedSites":[{"dateNoted":"2016-03-06","notes":"","parcelID":"19084","siteID":"18497","siteRegistry":true},{"dateNoted":"2021-05-16","notes":"","parcelID":"15553","siteID":"17237","siteRegistry":true}]},{"uuid":"33a07bb8-ab02-4e19-8555-4741f195e715","siteID":15361,"address":"5152 Jana Courts","latitude":54.2664,"longitude":-135.6604,"lastUpdated":"2015-08-26","city":"Redding","region":"Kootenay","victoriaFile":"26250-20/5707","regionalFile":"N/A","parcelIDs":[4622503,5630788,8441620,7447192,9958769],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2016-02-19","completed":"2018-01-21","initiated":"2015-03-10","ministryContact":"MAGGIO DOYLE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2021-11-15","completed":"2017-01-02","initiated":"2016-08-04","ministryContact":"BREITENBERG BELL","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2018-01-31","completed":"2023-05-06","initiated":"2015-01-13","ministryContact":"BODE GILDA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2023-05-30","completed":"2022-07-27","initiated":"2022-01-14","ministryContact":"WEISSNAT ADOLF","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2016-03-07","completed":"2015-08-19","initiated":"2021-07-25","ministryContact":"WOLF COY","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false}],"participants":[{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2021-11-28","startDate":"2015-09-12","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","endDate":"2017-03-23","startDate":"2019-11-13","notes":"","roles":["EMPLOYEE"],"siteRegistry":false}],"associatedSites":[{"dateNoted":"2017-06-27","notes":"","parcelID":"20888","siteID":"15784","siteRegistry":false}]},{"uuid":"8ac095cb-e831-49f8-b8f4-acb48a8900d3","siteID":16312,"address":"8008 Gerlach Junction","latitude":50.6082,"longitude":-125.874,"lastUpdated":"2022-01-31","city":"Veumworth","region":"Mainland/Southwest","victoriaFile":"26250-20/1062","regionalFile":"N/A","parcelIDs":[9193439,8066853,3032864,4702520,3891877],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2022-02-11","completed":"2017-11-10","initiated":"2022-12-05","ministryContact":"CONNELLY-CREMIN DEANGELO","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2017-01-17","completed":"2015-07-19","initiated":"2017-02-02","ministryContact":"GISLASON BUSTER","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":false}],"participants":[{"name":"IPSUM","endDate":"2021-10-17","startDate":"2019-03-31","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2015-01-18","startDate":"2019-05-14","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"IPSUM","endDate":"2017-04-01","startDate":"2020-04-05","notes":"","roles":["ORGANIZATION"],"siteRegistry":false}],"associatedSites":[{"dateNoted":"2020-04-18","notes":"","parcelID":"18436","siteID":"19457","siteRegistry":true},{"dateNoted":"2016-06-30","notes":"","parcelID":"20906","siteID":"16487","siteRegistry":false},{"dateNoted":"2021-11-27","notes":"","parcelID":"19892","siteID":"15513","siteRegistry":true}]},{"uuid":"48ff888b-fde1-4c57-b1d8-41e1a7ef80b9","siteID":15704,"address":"253 Pagac Fall","latitude":48.0323,"longitude":-119.5559,"lastUpdated":"2019-10-26","city":"North Bryonfurt","region":"Kootenay","victoriaFile":"26250-20/14980","regionalFile":"N/A","parcelIDs":[5563997,4959994,7611903,9570744,8955213],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2019-11-22","completed":"2019-06-05","initiated":"2019-03-30","ministryContact":"RITCHIE MARJOLAINE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2019-06-25","completed":"2017-12-27","initiated":"2019-06-22","ministryContact":"GLEICHNER KAREEM","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":true}],"participants":[{"name":"AMET, DOLOR SIT","endDate":"2015-11-30","startDate":"2013-11-30","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","endDate":"2014-09-02","startDate":"2016-05-14","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2020-05-06","startDate":"2017-06-16","notes":"","roles":["ORGANIZATION"],"siteRegistry":false}],"associatedSites":[{"dateNoted":"2020-03-05","notes":"","parcelID":"16990","siteID":"17322","siteRegistry":false},{"dateNoted":"2016-05-26","notes":"","parcelID":"16553","siteID":"18319","siteRegistry":true},{"dateNoted":"2016-02-23","notes":"","parcelID":"18790","siteID":"19777","siteRegistry":false}]},{"uuid":"16f113f3-f04b-47cc-8954-e9a770d4b845","siteID":20906,"address":"8538 Monahan Rest","latitude":56.7973,"longitude":-119.7269,"lastUpdated":"2023-04-19","city":"Robeltown","region":"Thompson-Okanagan","victoriaFile":"26250-20/17012","regionalFile":"N/A","parcelIDs":[9496457,9643662,3665272,9101769,2168183],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2014-05-18","completed":"2015-06-22","initiated":"2014-08-29","ministryContact":"BECKER GAETANO","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2021-03-21","completed":"2022-07-16","initiated":"2017-09-19","ministryContact":"OKUNEVA KIRSTIN","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":false}],"participants":[{"name":"SHELL CANADA PRODUCTS","endDate":"2016-06-16","startDate":"2021-07-07","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"IPSUM","endDate":"2020-06-12","startDate":"2015-06-14","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"IPSUM","endDate":"2018-08-29","startDate":"2014-10-28","notes":"","roles":["ORGANIZATION"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2020-04-12","notes":"","parcelID":"19343","siteID":"19773","siteRegistry":true},{"dateNoted":"2013-12-03","notes":"","parcelID":"15593","siteID":"16025","siteRegistry":false}]},{"uuid":"d59b3dbf-17f6-4d1b-a434-6e220bc70361","siteID":20833,"address":"5819 Emmalee Crest","latitude":53.9487,"longitude":-136.5663,"lastUpdated":"2017-11-06","city":"Fort Kaylaview","region":"Mainland/Southwest","victoriaFile":"26250-20/6285","regionalFile":"N/A","parcelIDs":[5903544,2910198,9526907,7637082,4100828],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2014-07-27","completed":"2014-09-13","initiated":"2023-09-14","ministryContact":"KUNZE HUMBERTO","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2021-05-08","completed":"2014-05-14","initiated":"2014-05-02","ministryContact":"SCHAMBERGER CHET","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":false}],"participants":[{"name":"SHELL CANADA PRODUCTS","endDate":"2019-01-18","startDate":"2021-06-17","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"AMET, DOLOR SIT","endDate":"2017-10-07","startDate":"2019-04-13","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"IPSUM","endDate":"2017-07-23","startDate":"2020-04-22","notes":"","roles":["EMPLOYEE"],"siteRegistry":false}],"associatedSites":[{"dateNoted":"2017-05-21","notes":"","parcelID":"20930","siteID":"20407","siteRegistry":true},{"dateNoted":"2016-10-28","notes":"","parcelID":"15251","siteID":"16118","siteRegistry":false},{"dateNoted":"2023-03-21","notes":"","parcelID":"15243","siteID":"16358","siteRegistry":false}]},{"uuid":"a7033efb-a59f-42f4-b2bc-0d66edd0326a","siteID":20865,"address":"7392 Kamron Parkways","latitude":56.6185,"longitude":-133.1699,"lastUpdated":"2014-08-04","city":"New Corabury","region":"Cariboo","victoriaFile":"26250-20/964","regionalFile":"N/A","parcelIDs":[3395713,588192,327047,1637653,6518812],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2022-11-08","completed":"2017-04-08","initiated":"2020-11-14","ministryContact":"WISOKY ESTELLA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2021-03-19","completed":"2022-06-30","initiated":"2018-05-24","ministryContact":"METZ AMIE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false}],"participants":[{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2016-04-26","startDate":"2013-10-24","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"IPSUM","endDate":"2020-03-01","startDate":"2023-01-24","notes":"","roles":["EMPLOYEE"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2015-02-05","notes":"","parcelID":"19844","siteID":"18528","siteRegistry":true},{"dateNoted":"2021-06-05","notes":"","parcelID":"16150","siteID":"15543","siteRegistry":false}]},{"uuid":"bb1749cd-6350-4e81-a11a-13fa390dc4a5","siteID":15229,"address":"5815 Bednar Crossing","latitude":48.6774,"longitude":-133.6719,"lastUpdated":"2015-04-10","city":"Reichertview","region":"Cariboo","victoriaFile":"26250-20/18792","regionalFile":"N/A","parcelIDs":[8046405,8575670,5790812,9146060,6438717],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2015-02-27","completed":"2016-04-04","initiated":"2023-08-06","ministryContact":"WHITE ALEXANDRINE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2021-07-31","completed":"2019-12-01","initiated":"2014-10-14","ministryContact":"KOHLER URBAN","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false}],"participants":[{"name":"SHELL CANADA PRODUCTS","endDate":"2016-10-03","startDate":"2016-09-09","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"AMET, DOLOR SIT","endDate":"2018-02-10","startDate":"2016-11-13","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"IPSUM","endDate":"2018-07-12","startDate":"2022-09-16","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"AMET, DOLOR SIT","endDate":"2014-11-26","startDate":"2016-08-29","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"AMET, DOLOR SIT","endDate":"2014-02-19","startDate":"2020-04-03","notes":"","roles":["ORGANIZATION"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2018-08-07","notes":"","parcelID":"19850","siteID":"18838","siteRegistry":true}]},{"uuid":"7780d1eb-faec-4533-9a39-cbc1d5782ade","siteID":18150,"address":"18723 Okuneva Drive","latitude":55.0453,"longitude":-127.6661,"lastUpdated":"2015-01-17","city":"Fort Estelle","region":"Thompson-Okanagan","victoriaFile":"26250-20/9191","regionalFile":"N/A","parcelIDs":[3175295,2996023,9404632,7481000,9170989],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2020-12-16","completed":"2014-10-15","initiated":"2016-07-16","ministryContact":"SCHMIDT BRUCE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2018-02-15","completed":"2018-05-06","initiated":"2023-05-22","ministryContact":"CREMIN NORENE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2017-10-25","completed":"2021-02-12","initiated":"2021-04-18","ministryContact":"HAUCK JODIE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2014-02-27","completed":"2023-02-06","initiated":"2017-04-11","ministryContact":"STEHR MAVIS","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":false}],"participants":[{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2018-08-03","startDate":"2016-11-25","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2018-10-15","startDate":"2018-04-11","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"IPSUM","endDate":"2021-08-01","startDate":"2018-06-18","notes":"","roles":["ORGANIZATION"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2017-06-13","notes":"","parcelID":"20712","siteID":"15784","siteRegistry":false},{"dateNoted":"2022-10-13","notes":"","parcelID":"16464","siteID":"18373","siteRegistry":false}]},{"uuid":"a78db1c7-c177-48c3-9a47-36dc6188494d","siteID":18587,"address":"63752 Fernando Orchard","latitude":48.8675,"longitude":-119.9843,"lastUpdated":"2021-07-23","city":"Wardborough","region":"Thompson-Okanagan","victoriaFile":"26250-20/11178","regionalFile":"N/A","parcelIDs":[7310508,4434882,2026222,9418999,592651],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2023-09-07","completed":"2016-11-03","initiated":"2021-10-02","ministryContact":"ZIEME CAMYLLE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2019-04-07","completed":"2021-09-03","initiated":"2023-05-05","ministryContact":"WILDERMAN DAMIEN","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2021-09-02","completed":"2017-02-26","initiated":"2016-10-16","ministryContact":"CHRISTIANSEN HIRAM","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2023-02-02","completed":"2017-05-03","initiated":"2023-08-13","ministryContact":"CARTER LAURIANNE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2021-08-04","completed":"2018-05-23","initiated":"2021-02-04","ministryContact":"BERGNAUM KYLER","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":true}],"participants":[{"name":"SHELL CANADA PRODUCTS","endDate":"2014-11-14","startDate":"2014-09-11","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2017-05-22","startDate":"2021-11-03","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","endDate":"2020-01-21","startDate":"2015-11-14","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","endDate":"2014-12-08","startDate":"2015-03-08","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"AMET, DOLOR SIT","endDate":"2021-05-12","startDate":"2014-08-17","notes":"","roles":["EMPLOYEE"],"siteRegistry":false}],"associatedSites":[{"dateNoted":"2014-06-29","notes":"","parcelID":"19515","siteID":"18001","siteRegistry":true}]},{"uuid":"74524e1f-e3e4-4379-9b2a-a39cedeb4f34","siteID":17898,"address":"52324 Hudson Crest","latitude":56.5456,"longitude":-137.8432,"lastUpdated":"2018-01-28","city":"Tracy","region":" North Coast","victoriaFile":"26250-20/19363","regionalFile":"N/A","parcelIDs":[9073348,9904969,1742137,2064180,977585],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2023-08-05","completed":"2017-12-13","initiated":"2023-02-24","ministryContact":"JAST ELYSE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2017-01-22","completed":"2023-02-16","initiated":"2020-12-31","ministryContact":"BERNHARD LETHA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2016-05-30","completed":"2021-12-30","initiated":"2016-08-14","ministryContact":"FRIESEN BRETT","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false}],"participants":[{"name":"IPSUM","endDate":"2017-03-19","startDate":"2021-02-14","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","endDate":"2022-09-12","startDate":"2023-08-30","notes":"","roles":["ORGANIZATION"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2018-12-07","notes":"","parcelID":"20698","siteID":"19778","siteRegistry":false},{"dateNoted":"2013-12-13","notes":"","parcelID":"17924","siteID":"17567","siteRegistry":true},{"dateNoted":"2023-06-05","notes":"","parcelID":"17507","siteID":"17908","siteRegistry":true}]},{"uuid":"d81a9608-ace1-4dc0-b648-10c135150c97","siteID":20627,"address":"31729 Hackett Freeway","latitude":57.7592,"longitude":-131.1137,"lastUpdated":"2014-01-31","city":"Ratkeville","region":"Vancouver Island/Coast","victoriaFile":"26250-20/10074","regionalFile":"N/A","parcelIDs":[948997,4806015,7923001,726407,729852],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2017-02-23","completed":"2021-07-26","initiated":"2014-10-25","ministryContact":"HANSEN JAIRO","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2017-01-11","completed":"2021-08-31","initiated":"2019-07-02","ministryContact":"VON JERAMY","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2020-04-24","completed":"2016-03-01","initiated":"2019-01-06","ministryContact":"FARRELL ALEXANDRE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":true}],"participants":[{"name":"AMET, DOLOR SIT","endDate":"2019-09-28","startDate":"2022-05-16","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"AMET, DOLOR SIT","endDate":"2014-08-03","startDate":"2016-09-27","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"IPSUM","endDate":"2019-12-23","startDate":"2020-07-31","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"IPSUM","endDate":"2022-09-02","startDate":"2016-05-06","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2018-11-18","startDate":"2017-08-14","notes":"","roles":["ORGANIZATION"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2016-05-02","notes":"","parcelID":"16171","siteID":"17074","siteRegistry":true},{"dateNoted":"2014-01-20","notes":"","parcelID":"20545","siteID":"15917","siteRegistry":false},{"dateNoted":"2017-07-27","notes":"","parcelID":"17949","siteID":"20555","siteRegistry":true}]},{"uuid":"d58e5503-dbd9-4c88-91c5-f7604e4e7c05","siteID":16206,"address":"42701 Kelsi Creek","latitude":55.5753,"longitude":-126.4792,"lastUpdated":"2023-03-29","city":"Port Carterstead","region":"Mainland/Southwest","victoriaFile":"26250-20/952","regionalFile":"N/A","parcelIDs":[986215,1301398,9686702,9791321,4973877],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2023-08-22","completed":"2017-09-02","initiated":"2022-10-20","ministryContact":"PREDOVIC IVORY","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2022-08-30","completed":"2021-12-21","initiated":"2016-01-27","ministryContact":"ADAMS KRISTY","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false}],"participants":[{"name":"IPSUM","endDate":"2019-01-14","startDate":"2023-03-24","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2019-09-15","startDate":"2015-01-28","notes":"","roles":["EMPLOYEE"],"siteRegistry":false}],"associatedSites":[{"dateNoted":"2022-09-09","notes":"","parcelID":"17730","siteID":"16634","siteRegistry":false},{"dateNoted":"2015-04-19","notes":"","parcelID":"19624","siteID":"17260","siteRegistry":false},{"dateNoted":"2022-01-02","notes":"","parcelID":"18333","siteID":"17449","siteRegistry":true}]},{"uuid":"a6f5d1d4-e84f-4cc5-8a17-f5fbc32fba57","siteID":20722,"address":"7486 Witting Greens","latitude":51.236,"longitude":-122.6154,"lastUpdated":"2019-04-21","city":"Weimannfurt","region":"Vancouver Island/Coast","victoriaFile":"26250-20/6466","regionalFile":"N/A","parcelIDs":[4487574,5794278,4063944,9514586,2698213],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2018-06-21","completed":"2013-11-13","initiated":"2022-06-21","ministryContact":"SCHNEIDER REYES","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2021-09-17","completed":"2021-08-04","initiated":"2017-05-10","ministryContact":"DARE KEELEY","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":true}],"participants":[{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2020-01-27","startDate":"2018-05-31","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"AMET, DOLOR SIT","endDate":"2022-03-07","startDate":"2014-09-02","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"AMET, DOLOR SIT","endDate":"2018-02-21","startDate":"2018-04-11","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"AMET, DOLOR SIT","endDate":"2018-02-12","startDate":"2022-01-03","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"IPSUM","endDate":"2021-05-13","startDate":"2014-07-24","notes":"","roles":["ORGANIZATION"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2023-04-01","notes":"","parcelID":"19393","siteID":"18049","siteRegistry":true},{"dateNoted":"2019-06-05","notes":"","parcelID":"20978","siteID":"17692","siteRegistry":true},{"dateNoted":"2021-04-03","notes":"","parcelID":"16084","siteID":"20162","siteRegistry":true}]},{"uuid":"6d4ed0bc-a936-456a-b1be-a39fde2bc567","siteID":20520,"address":"2635 Abbott Shoal","latitude":58.618,"longitude":-128.3292,"lastUpdated":"2014-05-11","city":"Swiftboro","region":"Vancouver Island/Coast","victoriaFile":"26250-20/12273","regionalFile":"N/A","parcelIDs":[1037669,3682758,6837288,5509907,7895798],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2020-04-03","completed":"2017-03-05","initiated":"2016-01-19","ministryContact":"BARTON NELLIE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2020-09-14","completed":"2023-04-08","initiated":"2020-02-11","ministryContact":"POLLICH CHRISTIANA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2023-07-29","completed":"2015-11-18","initiated":"2014-08-21","ministryContact":"BARTOLETTI WILL","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":true}],"participants":[{"name":"AMET, DOLOR SIT","endDate":"2017-12-14","startDate":"2022-04-07","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"AMET, DOLOR SIT","endDate":"2015-04-30","startDate":"2016-11-12","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"AMET, DOLOR SIT","endDate":"2022-10-27","startDate":"2019-09-27","notes":"","roles":["ORGANIZATION"],"siteRegistry":false}],"associatedSites":[{"dateNoted":"2022-07-06","notes":"","parcelID":"20109","siteID":"17012","siteRegistry":true},{"dateNoted":"2015-04-09","notes":"","parcelID":"19496","siteID":"19407","siteRegistry":false}]},{"uuid":"acb765dc-8fbf-449d-b2dc-51c7c53e08ce","siteID":18495,"address":"67825 Marco Streets","latitude":51.9897,"longitude":-127.3366,"lastUpdated":"2019-10-02","city":"East Krystinaborough","region":" North Coast","victoriaFile":"26250-20/8860","regionalFile":"N/A","parcelIDs":[7597740,6622858,3144819,1765580,9783222],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2016-11-15","completed":"2015-01-29","initiated":"2019-11-28","ministryContact":"SCHUPPE ENRICO","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2015-03-02","completed":"2016-02-11","initiated":"2020-04-25","ministryContact":"PARKER CLOYD","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2020-03-20","completed":"2016-07-28","initiated":"2023-06-09","ministryContact":"ROBERTS CHANEL","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":false}],"participants":[{"name":"SHELL CANADA PRODUCTS","endDate":"2018-03-20","startDate":"2022-04-01","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2018-09-06","startDate":"2019-05-09","notes":"","roles":["EMPLOYEE"],"siteRegistry":false}],"associatedSites":[{"dateNoted":"2016-05-06","notes":"","parcelID":"15537","siteID":"18069","siteRegistry":false}]},{"uuid":"f1e5a576-b747-4111-b447-0c26917b1063","siteID":19777,"address":"43391 Jaylin Harbor","latitude":53.9852,"longitude":-131.4538,"lastUpdated":"2016-08-24","city":"Port Laura","region":"Vancouver Island/Coast","victoriaFile":"26250-20/8312","regionalFile":"N/A","parcelIDs":[4914135,4640238,6204221,4000333,1122110],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2020-01-24","completed":"2019-11-25","initiated":"2018-07-21","ministryContact":"ERDMAN ADALINE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2021-07-12","completed":"2020-09-25","initiated":"2017-12-07","ministryContact":"HARBER MARIAN","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2014-05-21","completed":"2018-09-08","initiated":"2014-03-03","ministryContact":"LEHNER MURIEL","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":true}],"participants":[{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2023-01-19","startDate":"2016-03-10","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2017-01-02","startDate":"2021-02-15","notes":"","roles":["EMPLOYEE"],"siteRegistry":false}],"associatedSites":[{"dateNoted":"2020-08-06","notes":"","parcelID":"18337","siteID":"16118","siteRegistry":true},{"dateNoted":"2015-02-05","notes":"","parcelID":"18321","siteID":"19124","siteRegistry":true}]},{"uuid":"dd935091-5178-4939-8416-8009e481c954","siteID":19095,"address":"506 Stark Coves","latitude":52.3731,"longitude":-130.8086,"lastUpdated":"2015-02-21","city":"Blue Springs","region":"Thompson-Okanagan","victoriaFile":"26250-20/14717","regionalFile":"N/A","parcelIDs":[5842166,9571417,5429523,6311578,6512264],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2018-03-12","completed":"2018-07-14","initiated":"2014-11-20","ministryContact":"ROOB ROCIO","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2019-04-17","completed":"2021-12-07","initiated":"2016-03-12","ministryContact":"MURAZIK REVA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2018-01-07","completed":"2016-11-04","initiated":"2015-03-28","ministryContact":"BOYER GUS","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2022-04-12","completed":"2022-03-22","initiated":"2016-01-18","ministryContact":"NIKOLAUS RHODA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2021-02-27","completed":"2020-12-29","initiated":"2022-03-07","ministryContact":"ABERNATHY HARMONY","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":true}],"participants":[{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2014-02-20","startDate":"2018-07-20","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"IPSUM","endDate":"2020-05-28","startDate":"2014-04-30","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"IPSUM","endDate":"2018-04-06","startDate":"2020-01-11","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","endDate":"2019-01-07","startDate":"2016-04-12","notes":"","roles":["ORGANIZATION"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2016-02-11","notes":"","parcelID":"20714","siteID":"16517","siteRegistry":false}]},{"uuid":"c35d1b71-60f0-43ff-8424-886f1cfed57a","siteID":16725,"address":"9702 Toy Lodge","latitude":53.5677,"longitude":-131.359,"lastUpdated":"2022-11-18","city":"Norwalk","region":"Cariboo","victoriaFile":"26250-20/9250","regionalFile":"N/A","parcelIDs":[3587387,5146976,246245,7428619,7071722],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2018-07-03","completed":"2018-03-06","initiated":"2017-03-26","ministryContact":"STIEDEMANN ISABELL","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2015-01-25","completed":"2019-04-06","initiated":"2016-07-21","ministryContact":"COLE BEAU","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2021-08-13","completed":"2019-07-17","initiated":"2015-11-13","ministryContact":"ORTIZ RENEE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2021-09-02","completed":"2019-08-09","initiated":"2020-12-01","ministryContact":"SKILES-FEENEY MURL","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2021-04-09","completed":"2018-04-05","initiated":"2023-05-05","ministryContact":"EBERT ALVINA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":false}],"participants":[{"name":"SHELL CANADA PRODUCTS","endDate":"2016-03-13","startDate":"2016-01-06","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2016-04-16","startDate":"2015-10-03","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"AMET, DOLOR SIT","endDate":"2023-04-22","startDate":"2017-09-09","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2018-05-16","startDate":"2020-08-12","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"IPSUM","endDate":"2014-09-25","startDate":"2022-06-16","notes":"","roles":["ORGANIZATION"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2016-12-19","notes":"","parcelID":"19069","siteID":"18047","siteRegistry":false}]},{"uuid":"827c7bfa-23d0-4254-95e3-2080a225e8c1","siteID":16222,"address":"2945 Allen Tunnel","latitude":57.3944,"longitude":-133.0245,"lastUpdated":"2015-10-26","city":"Georgetown","region":"Cariboo","victoriaFile":"26250-20/14152","regionalFile":"N/A","parcelIDs":[4832935,4628945,4056613,3430160,9695825],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2020-08-25","completed":"2021-06-19","initiated":"2020-12-20","ministryContact":"JOHNSON ADRIENNE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2014-04-08","completed":"2016-07-18","initiated":"2019-01-03","ministryContact":"MRAZ KURTIS","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":true}],"participants":[{"name":"AMET, DOLOR SIT","endDate":"2021-05-09","startDate":"2019-06-19","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2019-09-28","startDate":"2015-12-31","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","endDate":"2019-05-29","startDate":"2016-05-13","notes":"","roles":["EMPLOYEE"],"siteRegistry":false}],"associatedSites":[{"dateNoted":"2017-09-20","notes":"","parcelID":"17243","siteID":"17449","siteRegistry":false}]},{"uuid":"43abcba5-a6b5-4df5-8dd0-deddc31a8d8d","siteID":19233,"address":"512 Treutel Harbor","latitude":51.8086,"longitude":-131.4331,"lastUpdated":"2018-11-26","city":"MacGyverburgh","region":"Cariboo","victoriaFile":"26250-20/10989","regionalFile":"N/A","parcelIDs":[8644763,7115448,2456187,4422795,1453252],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2014-04-15","completed":"2015-06-08","initiated":"2023-07-26","ministryContact":"SCHIMMEL MARTINA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2019-10-28","completed":"2020-01-30","initiated":"2020-05-21","ministryContact":"BAUMBACH TREVION","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2016-01-21","completed":"2019-05-19","initiated":"2015-06-03","ministryContact":"O'KON RIGOBERTO","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":false}],"participants":[{"name":"IPSUM","endDate":"2021-01-23","startDate":"2019-12-06","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"IPSUM","endDate":"2015-06-06","startDate":"2022-03-10","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2023-08-19","startDate":"2015-09-24","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"AMET, DOLOR SIT","endDate":"2017-01-15","startDate":"2019-01-14","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"IPSUM","endDate":"2018-07-17","startDate":"2019-11-07","notes":"","roles":["EMPLOYEE"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2022-06-04","notes":"","parcelID":"19854","siteID":"19075","siteRegistry":false}]},{"uuid":"e313ff01-1589-458d-a83e-50b2519ffce0","siteID":15917,"address":"9677 Fredy Light","latitude":53.182,"longitude":-126.0451,"lastUpdated":"2016-07-09","city":"Candicefield","region":"Mainland/Southwest","victoriaFile":"26250-20/18276","regionalFile":"N/A","parcelIDs":[3390385,1071952,5632610,9158025,8289010],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2014-08-09","completed":"2018-05-28","initiated":"2021-12-12","ministryContact":"WEHNER ZITA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2018-06-06","completed":"2019-01-25","initiated":"2017-09-17","ministryContact":"HUEL THADDEUS","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2022-08-14","completed":"2014-01-16","initiated":"2014-06-02","ministryContact":"DARE ELYSE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":true}],"participants":[{"name":"SHELL CANADA PRODUCTS","endDate":"2022-08-06","startDate":"2023-06-13","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2022-06-09","startDate":"2022-06-29","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2019-07-31","startDate":"2016-12-04","notes":"","roles":["ORGANIZATION"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2019-10-19","notes":"","parcelID":"17956","siteID":"20869","siteRegistry":true},{"dateNoted":"2023-06-04","notes":"","parcelID":"19275","siteID":"17011","siteRegistry":true},{"dateNoted":"2016-08-01","notes":"","parcelID":"19487","siteID":"16986","siteRegistry":false}]},{"uuid":"f93cdc09-ff01-4c75-b7d9-46a2572a51e2","siteID":20641,"address":"58249 Reba Coves","latitude":52.2799,"longitude":-118.1805,"lastUpdated":"2023-02-21","city":"Lake Lynnshire","region":"Kootenay","victoriaFile":"26250-20/8512","regionalFile":"N/A","parcelIDs":[1794596,1528486,5408011,2346442,5549500],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2020-06-17","completed":"2020-04-06","initiated":"2023-01-16","ministryContact":"BAYER BARRY","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2019-09-27","completed":"2018-12-06","initiated":"2017-04-06","ministryContact":"DICKI CLEMENTINE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2018-05-29","completed":"2016-01-31","initiated":"2018-09-16","ministryContact":"CARTER BROCK","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2023-06-25","completed":"2020-05-17","initiated":"2019-04-16","ministryContact":"MOEN ISSAC","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2019-08-05","completed":"2016-12-10","initiated":"2015-11-29","ministryContact":"CARTER DELPHIA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":true}],"participants":[{"name":"SHELL CANADA PRODUCTS","endDate":"2023-07-10","startDate":"2020-01-11","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","endDate":"2014-11-13","startDate":"2020-01-26","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"AMET, DOLOR SIT","endDate":"2019-11-13","startDate":"2016-01-18","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","endDate":"2016-12-20","startDate":"2014-11-05","notes":"","roles":["ORGANIZATION"],"siteRegistry":false}],"associatedSites":[{"dateNoted":"2021-02-21","notes":"","parcelID":"15841","siteID":"16935","siteRegistry":true}]},{"uuid":"e8b2e1eb-d6a0-46ba-84d9-a89649edd4ae","siteID":17151,"address":"187 Jerde Cove","latitude":58.14,"longitude":-122.2097,"lastUpdated":"2015-11-30","city":"Burbank","region":" North Coast","victoriaFile":"26250-20/19322","regionalFile":"N/A","parcelIDs":[4328372,8825104,8387338,272488,1326882],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2020-02-06","completed":"2021-02-19","initiated":"2016-10-19","ministryContact":"REYNOLDS STUART","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2019-10-28","completed":"2015-04-18","initiated":"2015-05-20","ministryContact":"HERMISTON DANNY","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2019-07-24","completed":"2015-04-10","initiated":"2017-10-01","ministryContact":"GLOVER KAY","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":false}],"participants":[{"name":"AMET, DOLOR SIT","endDate":"2016-01-19","startDate":"2015-07-25","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"IPSUM","endDate":"2017-06-08","startDate":"2020-08-06","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","endDate":"2019-03-31","startDate":"2021-09-04","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"AMET, DOLOR SIT","endDate":"2018-04-13","startDate":"2021-09-27","notes":"","roles":["EMPLOYEE"],"siteRegistry":false}],"associatedSites":[{"dateNoted":"2019-08-23","notes":"","parcelID":"16545","siteID":"15775","siteRegistry":true},{"dateNoted":"2017-04-12","notes":"","parcelID":"17864","siteID":"19819","siteRegistry":false},{"dateNoted":"2019-01-03","notes":"","parcelID":"20426","siteID":"18969","siteRegistry":false}]},{"uuid":"8132ad47-ba3d-4b69-aa59-6a6189a0e894","siteID":19589,"address":"60099 Hilll Wells","latitude":53.107,"longitude":-121.118,"lastUpdated":"2013-10-18","city":"Austinland","region":"Mainland/Southwest","victoriaFile":"26250-20/3542","regionalFile":"N/A","parcelIDs":[6558411,8787749,2730018,2868429,2945412],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2018-09-02","completed":"2017-10-04","initiated":"2015-02-22","ministryContact":"HAAG KAY","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2018-09-11","completed":"2013-10-11","initiated":"2017-12-04","ministryContact":"BEIER ASHTYN","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2016-02-15","completed":"2023-07-22","initiated":"2016-10-21","ministryContact":"BRUEN MANUEL","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":false}],"participants":[{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2022-08-22","startDate":"2015-10-14","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"IPSUM","endDate":"2017-05-13","startDate":"2020-11-11","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","endDate":"2019-09-05","startDate":"2022-05-14","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"IPSUM","endDate":"2023-08-09","startDate":"2019-01-12","notes":"","roles":["ORGANIZATION"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2018-05-24","notes":"","parcelID":"17936","siteID":"20858","siteRegistry":false},{"dateNoted":"2016-03-28","notes":"","parcelID":"18183","siteID":"19084","siteRegistry":true},{"dateNoted":"2020-05-25","notes":"","parcelID":"18543","siteID":"19773","siteRegistry":false}]},{"uuid":"6ecef19f-a528-482d-916c-788634b47944","siteID":15919,"address":"89529 Onie Neck","latitude":52.599,"longitude":-137.2404,"lastUpdated":"2023-03-25","city":"Mathiasmouth","region":"Vancouver Island/Coast","victoriaFile":"26250-20/5047","regionalFile":"N/A","parcelIDs":[2773461,2179915,5646421,8422943,576914],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2017-07-11","completed":"2017-02-22","initiated":"2022-05-26","ministryContact":"MCKENZIE META","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2017-02-13","completed":"2018-10-20","initiated":"2018-11-30","ministryContact":"KOELPIN BERNIE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2023-07-27","completed":"2022-10-20","initiated":"2020-03-27","ministryContact":"MURRAY LISA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":true}],"participants":[{"name":"SHELL CANADA PRODUCTS","endDate":"2017-01-22","startDate":"2019-11-30","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2020-04-06","startDate":"2021-04-26","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","endDate":"2020-05-25","startDate":"2016-02-26","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2022-01-23","startDate":"2023-08-11","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"IPSUM","endDate":"2019-11-14","startDate":"2019-11-04","notes":"","roles":["EMPLOYEE"],"siteRegistry":false}],"associatedSites":[{"dateNoted":"2018-09-22","notes":"","parcelID":"20794","siteID":"15609","siteRegistry":false},{"dateNoted":"2019-08-20","notes":"","parcelID":"18631","siteID":"17237","siteRegistry":true},{"dateNoted":"2014-12-21","notes":"","parcelID":"18870","siteID":"16351","siteRegistry":true}]},{"uuid":"a8c175b6-d835-4797-91bf-74aa762727c2","siteID":18771,"address":"388 Abigayle Avenue","latitude":48.256,"longitude":-131.9577,"lastUpdated":"2018-03-14","city":"Downers Grove","region":"Vancouver Island/Coast","victoriaFile":"26250-20/15123","regionalFile":"N/A","parcelIDs":[4324637,4985237,3001840,5344710,6220732],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2021-07-13","completed":"2016-02-25","initiated":"2021-09-14","ministryContact":"CONROY ISAC","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2019-08-31","completed":"2022-01-09","initiated":"2021-09-15","ministryContact":"KUHLMAN AGUSTIN","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false}],"participants":[{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2022-06-28","startDate":"2020-07-17","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"AMET, DOLOR SIT","endDate":"2015-07-27","startDate":"2020-01-02","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"IPSUM","endDate":"2020-10-31","startDate":"2021-11-16","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","endDate":"2014-03-23","startDate":"2020-09-29","notes":"","roles":["EMPLOYEE"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2015-12-04","notes":"","parcelID":"20332","siteID":"19777","siteRegistry":true},{"dateNoted":"2015-06-03","notes":"","parcelID":"20434","siteID":"19037","siteRegistry":true},{"dateNoted":"2023-02-14","notes":"","parcelID":"16178","siteID":"18319","siteRegistry":true}]},{"uuid":"d06dba96-610b-4552-a0b8-1125fa1dd55f","siteID":19380,"address":"431 Conner Bridge","latitude":56.2589,"longitude":-123.2851,"lastUpdated":"2019-10-09","city":"Haagstead","region":"Kootenay","victoriaFile":"26250-20/10368","regionalFile":"N/A","parcelIDs":[5232200,4151889,2376668,7787557,4783937],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2023-09-23","completed":"2020-02-11","initiated":"2014-06-22","ministryContact":"WELCH DARRON","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2013-12-08","completed":"2022-10-27","initiated":"2022-07-27","ministryContact":"DANIEL YESENIA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2022-11-08","completed":"2018-10-01","initiated":"2020-07-03","ministryContact":"MURPHY PRESLEY","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2014-04-12","completed":"2023-08-15","initiated":"2013-10-10","ministryContact":"LABADIE DEDRICK","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2020-09-15","completed":"2015-02-18","initiated":"2018-10-20","ministryContact":"GOODWIN-DOUGLAS JACINTHE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false}],"participants":[{"name":"AMET, DOLOR SIT","endDate":"2019-06-01","startDate":"2014-12-06","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"IPSUM","endDate":"2017-03-23","startDate":"2021-03-03","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"AMET, DOLOR SIT","endDate":"2014-12-20","startDate":"2015-01-21","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"IPSUM","endDate":"2016-03-02","startDate":"2020-02-11","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"IPSUM","endDate":"2021-12-18","startDate":"2021-06-06","notes":"","roles":["EMPLOYEE"],"siteRegistry":false}],"associatedSites":[{"dateNoted":"2016-03-03","notes":"","parcelID":"15275","siteID":"19093","siteRegistry":true}]},{"uuid":"48d3aa0a-6152-4261-9fcb-6e32f205ef14","siteID":19572,"address":"567 Runolfsson Track","latitude":56.2612,"longitude":-137.6122,"lastUpdated":"2022-02-01","city":"Fort Rosemarie","region":" North Coast","victoriaFile":"26250-20/13618","regionalFile":"N/A","parcelIDs":[5836733,7554615,5918876,9790396,9623743],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2015-03-13","completed":"2019-12-30","initiated":"2019-10-23","ministryContact":"MOSCISKI DORIAN","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2015-12-23","completed":"2018-07-29","initiated":"2015-08-27","ministryContact":"RUNOLFSDOTTIR BART","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2021-08-08","completed":"2015-10-12","initiated":"2015-11-26","ministryContact":"FAY NYASIA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2020-04-05","completed":"2015-03-15","initiated":"2020-02-26","ministryContact":"HOWELL NICK","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2018-06-19","completed":"2023-08-04","initiated":"2021-04-28","ministryContact":"TREMBLAY TYRIQUE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":true}],"participants":[{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2014-05-07","startDate":"2019-10-30","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"AMET, DOLOR SIT","endDate":"2023-02-02","startDate":"2023-02-27","notes":"","roles":["EMPLOYEE"],"siteRegistry":false}],"associatedSites":[{"dateNoted":"2015-09-07","notes":"","parcelID":"16823","siteID":"17692","siteRegistry":false},{"dateNoted":"2022-01-03","notes":"","parcelID":"19656","siteID":"20023","siteRegistry":false},{"dateNoted":"2023-09-23","notes":"","parcelID":"15524","siteID":"15855","siteRegistry":false}]},{"uuid":"69df1f2c-f564-4fb0-9058-cc8a407eaa84","siteID":20250,"address":"34741 Grant Club","latitude":54.5821,"longitude":-121.4634,"lastUpdated":"2021-08-28","city":"West Markus","region":"Kootenay","victoriaFile":"26250-20/13755","regionalFile":"N/A","parcelIDs":[1430449,8959150,6801023,1328923,2116242],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2020-06-06","completed":"2017-03-26","initiated":"2018-08-26","ministryContact":"KUPHAL HILARIO","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2022-09-23","completed":"2019-02-10","initiated":"2016-08-15","ministryContact":"TRANTOW EZEQUIEL","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":true}],"participants":[{"name":"IPSUM","endDate":"2020-01-24","startDate":"2015-07-23","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"AMET, DOLOR SIT","endDate":"2015-07-21","startDate":"2016-03-11","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"IPSUM","endDate":"2017-03-24","startDate":"2022-02-13","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"AMET, DOLOR SIT","endDate":"2015-11-03","startDate":"2023-04-02","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2015-06-21","startDate":"2013-11-24","notes":"","roles":["ORGANIZATION"],"siteRegistry":false}],"associatedSites":[{"dateNoted":"2014-09-14","notes":"","parcelID":"17047","siteID":"15361","siteRegistry":false},{"dateNoted":"2016-05-24","notes":"","parcelID":"16035","siteID":"19903","siteRegistry":true},{"dateNoted":"2022-02-18","notes":"","parcelID":"15559","siteID":"18969","siteRegistry":true}]},{"uuid":"b202a0b7-5b37-4f8b-a0dc-6028bbbc0a53","siteID":17304,"address":"1527 Mayert Unions","latitude":49.2068,"longitude":-126.4799,"lastUpdated":"2019-06-21","city":"North Lulu","region":"Mainland/Southwest","victoriaFile":"26250-20/3408","regionalFile":"N/A","parcelIDs":[3740673,5498381,2509728,4085551,8653345],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2014-09-30","completed":"2014-11-07","initiated":"2019-05-15","ministryContact":"FEENEY ALIZA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2018-11-02","completed":"2015-04-18","initiated":"2015-01-10","ministryContact":"KREIGER SHANIYA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2017-01-15","completed":"2020-03-04","initiated":"2017-12-31","ministryContact":"WINTHEISER ADAH","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":false}],"participants":[{"name":"IPSUM","endDate":"2022-05-13","startDate":"2017-07-12","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2014-04-20","startDate":"2016-01-20","notes":"","roles":["ORGANIZATION"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2020-12-20","notes":"","parcelID":"18312","siteID":"16193","siteRegistry":true},{"dateNoted":"2022-07-13","notes":"","parcelID":"17046","siteID":"18026","siteRegistry":false},{"dateNoted":"2023-07-10","notes":"","parcelID":"15377","siteID":"16559","siteRegistry":false}]},{"uuid":"6b62aa3f-69d3-41f4-ab10-c5579523b18a","siteID":20121,"address":"36673 Eula Estates","latitude":52.7732,"longitude":-126.5176,"lastUpdated":"2016-07-06","city":"Richardson","region":"Kootenay","victoriaFile":"26250-20/17939","regionalFile":"N/A","parcelIDs":[1365055,1134021,9323153,3748543,4630316],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2015-02-20","completed":"2018-06-03","initiated":"2018-05-16","ministryContact":"SPORER-HILPERT CARROLL","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2014-11-18","completed":"2019-01-30","initiated":"2022-05-02","ministryContact":"WISOKY MALLORY","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2016-12-18","completed":"2022-09-14","initiated":"2019-12-25","ministryContact":"CONSIDINE MODESTA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2018-07-13","completed":"2021-07-18","initiated":"2021-06-26","ministryContact":"BAUMBACH MALIKA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":true}],"participants":[{"name":"IPSUM","endDate":"2021-09-16","startDate":"2014-09-26","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"AMET, DOLOR SIT","endDate":"2016-10-10","startDate":"2022-10-22","notes":"","roles":["ORGANIZATION"],"siteRegistry":false}],"associatedSites":[{"dateNoted":"2017-03-20","notes":"","parcelID":"18114","siteID":"19777","siteRegistry":true},{"dateNoted":"2022-07-15","notes":"","parcelID":"20945","siteID":"17768","siteRegistry":true},{"dateNoted":"2014-09-13","notes":"","parcelID":"19366","siteID":"20957","siteRegistry":true}]},{"uuid":"d62cd1a7-0585-410c-bf9f-79c2163a8e73","siteID":19699,"address":"15021 Marilyne Trail","latitude":52.2895,"longitude":-124.3934,"lastUpdated":"2022-07-21","city":"Mishawaka","region":"Mainland/Southwest","victoriaFile":"26250-20/6536","regionalFile":"N/A","parcelIDs":[2803868,6456848,4218060,7865947,2214615],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2023-01-27","completed":"2019-04-17","initiated":"2021-11-29","ministryContact":"SCHINNER LULU","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2016-09-19","completed":"2018-10-22","initiated":"2016-02-28","ministryContact":"GRIMES TERESA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2022-05-12","completed":"2018-09-19","initiated":"2015-06-14","ministryContact":"DAVIS JENNINGS","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2020-08-22","completed":"2022-07-30","initiated":"2014-03-24","ministryContact":"BODE CORTNEY","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2023-07-08","completed":"2019-12-15","initiated":"2020-01-20","ministryContact":"FUNK PAXTON","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":true}],"participants":[{"name":"SHELL CANADA PRODUCTS","endDate":"2022-06-08","startDate":"2015-06-21","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"AMET, DOLOR SIT","endDate":"2018-01-28","startDate":"2022-09-08","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"AMET, DOLOR SIT","endDate":"2021-04-10","startDate":"2020-05-16","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","endDate":"2023-03-04","startDate":"2021-03-24","notes":"","roles":["EMPLOYEE"],"siteRegistry":false}],"associatedSites":[{"dateNoted":"2015-03-01","notes":"","parcelID":"18928","siteID":"18080","siteRegistry":true},{"dateNoted":"2015-03-28","notes":"","parcelID":"17497","siteID":"16645","siteRegistry":true}]},{"uuid":"80d96f76-ad65-4ab1-a738-c8e2649fa73b","siteID":15375,"address":"53958 McLaughlin Burg","latitude":49.0346,"longitude":-136.6678,"lastUpdated":"2021-06-27","city":"Danieltown","region":"Kootenay","victoriaFile":"26250-20/19206","regionalFile":"N/A","parcelIDs":[3466719,2749073,2948717,5833809,2956753],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2022-03-21","completed":"2018-11-30","initiated":"2023-05-01","ministryContact":"ROOB GWENDOLYN","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2018-09-21","completed":"2017-04-07","initiated":"2018-01-10","ministryContact":"ROWE SYLVAN","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":true}],"participants":[{"name":"AMET, DOLOR SIT","endDate":"2015-05-29","startDate":"2015-05-03","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2018-04-30","startDate":"2020-02-23","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2014-09-01","startDate":"2015-05-23","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","endDate":"2021-05-20","startDate":"2020-01-10","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"AMET, DOLOR SIT","endDate":"2014-03-08","startDate":"2019-06-20","notes":"","roles":["EMPLOYEE"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2020-06-18","notes":"","parcelID":"20275","siteID":"17304","siteRegistry":false}]},{"uuid":"2627fd34-e3a4-4ad2-8f51-eca86114d5f1","siteID":20323,"address":"9303 Lebsack Crescent","latitude":54.5391,"longitude":-120.4933,"lastUpdated":"2016-04-06","city":"Evelynworth","region":" North Coast","victoriaFile":"26250-20/17133","regionalFile":"N/A","parcelIDs":[3398131,7013258,6028146,2171419,6376056],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2017-03-21","completed":"2022-01-09","initiated":"2019-08-20","ministryContact":"FRANECKI ERA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2017-02-11","completed":"2019-08-20","initiated":"2016-06-14","ministryContact":"BARTOLETTI MADALINE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2021-08-15","completed":"2014-02-22","initiated":"2023-04-18","ministryContact":"FISHER GUS","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":true}],"participants":[{"name":"IPSUM","endDate":"2021-09-13","startDate":"2014-11-16","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","endDate":"2017-09-21","startDate":"2013-12-04","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"AMET, DOLOR SIT","endDate":"2014-02-14","startDate":"2020-05-06","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"AMET, DOLOR SIT","endDate":"2021-05-18","startDate":"2018-02-12","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"AMET, DOLOR SIT","endDate":"2014-12-14","startDate":"2017-09-08","notes":"","roles":["EMPLOYEE"],"siteRegistry":false}],"associatedSites":[{"dateNoted":"2021-07-06","notes":"","parcelID":"15811","siteID":"16916","siteRegistry":true},{"dateNoted":"2022-05-22","notes":"","parcelID":"18921","siteID":"17463","siteRegistry":true},{"dateNoted":"2014-02-14","notes":"","parcelID":"16058","siteID":"15945","siteRegistry":false}]},{"uuid":"553f83fa-9c45-47cc-8261-516fd4076428","siteID":20441,"address":"865 Stark Stravenue","latitude":53.8599,"longitude":-120.0997,"lastUpdated":"2017-09-17","city":"Maple Grove","region":"Kootenay","victoriaFile":"26250-20/13381","regionalFile":"N/A","parcelIDs":[8468904,1836776,8207852,7827285,8726808],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2023-01-05","completed":"2022-04-04","initiated":"2016-02-20","ministryContact":"TERRY MONA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2017-09-06","completed":"2018-09-27","initiated":"2023-05-13","ministryContact":"MURPHY DOMENIC","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2013-10-17","completed":"2021-09-24","initiated":"2016-11-02","ministryContact":"HARVEY KIRK","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2019-08-23","completed":"2015-01-19","initiated":"2022-01-04","ministryContact":"HARVEY JANESSA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":true}],"participants":[{"name":"SHELL CANADA PRODUCTS","endDate":"2021-12-10","startDate":"2018-09-25","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"AMET, DOLOR SIT","endDate":"2023-07-01","startDate":"2021-01-13","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"AMET, DOLOR SIT","endDate":"2019-03-05","startDate":"2014-10-23","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","endDate":"2014-07-22","startDate":"2017-07-10","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"AMET, DOLOR SIT","endDate":"2021-04-10","startDate":"2019-02-20","notes":"","roles":["ORGANIZATION"],"siteRegistry":false}],"associatedSites":[{"dateNoted":"2013-12-09","notes":"","parcelID":"18867","siteID":"15695","siteRegistry":true}]},{"uuid":"a14f7c70-982b-4730-bd8e-718d948a7511","siteID":18838,"address":"7484 Strosin Course","latitude":52.3405,"longitude":-130.7358,"lastUpdated":"2014-02-23","city":"West Demarcus","region":"Vancouver Island/Coast","victoriaFile":"26250-20/8678","regionalFile":"N/A","parcelIDs":[1092714,6615449,3550775,4309529,2741028],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2022-01-27","completed":"2020-03-24","initiated":"2019-01-09","ministryContact":"KOHLER KAMERON","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2022-09-13","completed":"2019-09-11","initiated":"2021-09-20","ministryContact":"REICHERT JESUS","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2020-12-16","completed":"2014-06-25","initiated":"2019-03-11","ministryContact":"SWIFT-KULAS REBECCA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2020-07-16","completed":"2022-02-08","initiated":"2023-01-03","ministryContact":"FRANECKI BRANDT","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":true}],"participants":[{"name":"AMET, DOLOR SIT","endDate":"2015-10-10","startDate":"2015-06-13","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","endDate":"2015-04-20","startDate":"2014-04-16","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"IPSUM","endDate":"2023-04-14","startDate":"2014-11-21","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"IPSUM","endDate":"2020-06-22","startDate":"2016-07-28","notes":"","roles":["ORGANIZATION"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2021-03-03","notes":"","parcelID":"20443","siteID":"15945","siteRegistry":true},{"dateNoted":"2016-02-15","notes":"","parcelID":"16203","siteID":"18587","siteRegistry":true},{"dateNoted":"2017-05-15","notes":"","parcelID":"18737","siteID":"19572","siteRegistry":true}]},{"uuid":"92318901-437d-40fd-a100-01190d587cf1","siteID":20353,"address":"44043 Morissette Neck","latitude":49.2447,"longitude":-127.6819,"lastUpdated":"2020-05-22","city":"West Anastasiafurt","region":"Vancouver Island/Coast","victoriaFile":"26250-20/10323","regionalFile":"N/A","parcelIDs":[4222985,5510589,1349427,233980,3041950],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2020-02-01","completed":"2020-09-24","initiated":"2022-02-17","ministryContact":"HOWE ABDULLAH","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2015-02-28","completed":"2017-11-28","initiated":"2019-04-22","ministryContact":"JAST ANNA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2020-05-26","completed":"2017-03-08","initiated":"2017-07-31","ministryContact":"WISOZK JUSTYN","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2019-05-19","completed":"2021-10-24","initiated":"2014-05-09","ministryContact":"HETTINGER SAMMIE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":true}],"participants":[{"name":"IPSUM","endDate":"2018-11-15","startDate":"2015-09-15","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2020-05-18","startDate":"2017-12-16","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2017-09-23","startDate":"2017-06-20","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"IPSUM","endDate":"2021-05-06","startDate":"2023-09-09","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","endDate":"2020-12-14","startDate":"2016-12-31","notes":"","roles":["ORGANIZATION"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2021-10-16","notes":"","parcelID":"20893","siteID":"17795","siteRegistry":true},{"dateNoted":"2015-10-09","notes":"","parcelID":"19990","siteID":"17935","siteRegistry":true}]},{"uuid":"ad6699fd-d62b-4da7-8e1c-74c47ff5e03f","siteID":20957,"address":"481 Nicolas Mall","latitude":52.9553,"longitude":-130.7153,"lastUpdated":"2020-05-11","city":"West Mattboro","region":"Mainland/Southwest","victoriaFile":"26250-20/17812","regionalFile":"N/A","parcelIDs":[9973402,1048826,8597974,1819992,1550186],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2018-10-28","completed":"2016-05-15","initiated":"2019-05-12","ministryContact":"BERGSTROM-KIEHN AILEEN","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2022-07-27","completed":"2015-12-26","initiated":"2021-07-07","ministryContact":"SAUER KITTY","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2014-01-20","completed":"2018-09-15","initiated":"2017-05-26","ministryContact":"ORTIZ KOBE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2015-12-13","completed":"2023-06-01","initiated":"2014-01-24","ministryContact":"BARTOLETTI NICOLE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":true}],"participants":[{"name":"SHELL CANADA PRODUCTS","endDate":"2018-06-19","startDate":"2014-12-02","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2020-03-18","startDate":"2021-08-13","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"IPSUM","endDate":"2015-03-28","startDate":"2022-08-01","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2023-09-01","startDate":"2021-04-15","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","endDate":"2014-11-30","startDate":"2013-11-26","notes":"","roles":["EMPLOYEE"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2022-05-24","notes":"","parcelID":"16103","siteID":"15229","siteRegistry":false},{"dateNoted":"2018-12-20","notes":"","parcelID":"17051","siteID":"18695","siteRegistry":true},{"dateNoted":"2020-01-07","notes":"","parcelID":"18187","siteID":"17012","siteRegistry":false}]},{"uuid":"a22a0ee7-5343-4db9-ba89-4f43951f17fe","siteID":19669,"address":"7102 Brain Ramp","latitude":51.2112,"longitude":-132.3599,"lastUpdated":"2018-07-14","city":"West Arvidport","region":"Thompson-Okanagan","victoriaFile":"26250-20/4047","regionalFile":"N/A","parcelIDs":[754790,3806529,4375779,4372679,9077601],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2013-10-25","completed":"2021-05-22","initiated":"2020-01-04","ministryContact":"MOSCISKI-RUTHERFORD LEONARD","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2022-04-08","completed":"2020-11-20","initiated":"2016-08-10","ministryContact":"CRONA MALINDA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2015-10-18","completed":"2014-08-11","initiated":"2014-11-27","ministryContact":"CUMMINGS MINERVA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2019-12-30","completed":"2017-07-10","initiated":"2018-09-30","ministryContact":"KIRLIN LAILA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2015-02-17","completed":"2019-06-29","initiated":"2016-04-15","ministryContact":"HARBER JASEN","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":true}],"participants":[{"name":"SHELL CANADA PRODUCTS","endDate":"2018-08-08","startDate":"2022-08-28","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2023-01-11","startDate":"2016-11-26","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"IPSUM","endDate":"2016-12-18","startDate":"2017-03-21","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"AMET, DOLOR SIT","endDate":"2018-07-13","startDate":"2017-06-03","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"IPSUM","endDate":"2018-04-25","startDate":"2022-02-27","notes":"","roles":["EMPLOYEE"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2015-09-26","notes":"","parcelID":"15285","siteID":"17151","siteRegistry":false},{"dateNoted":"2023-08-30","notes":"","parcelID":"17441","siteID":"15457","siteRegistry":false}]},{"uuid":"5a2d7b12-9de1-4f0f-b86d-8af56058d374","siteID":16673,"address":"291 Cloyd Roads","latitude":49.3852,"longitude":-121.6286,"lastUpdated":"2022-10-31","city":"Augusta-Richmond County","region":"Kootenay","victoriaFile":"26250-20/19155","regionalFile":"N/A","parcelIDs":[3156802,4468713,9888926,8147097,1086488],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2015-02-15","completed":"2017-01-15","initiated":"2019-03-19","ministryContact":"COLLIER TAD","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2017-10-13","completed":"2022-12-29","initiated":"2015-03-10","ministryContact":"HARRIS AYLIN","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2019-05-12","completed":"2016-01-18","initiated":"2015-05-17","ministryContact":"TREUTEL LEOPOLDO","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2015-07-23","completed":"2016-09-03","initiated":"2015-06-09","ministryContact":"FEEST COLBY","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2020-05-22","completed":"2013-10-23","initiated":"2016-01-04","ministryContact":"FISHER RODOLFO","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false}],"participants":[{"name":"AMET, DOLOR SIT","endDate":"2019-10-04","startDate":"2019-12-10","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2021-04-25","startDate":"2017-06-11","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2015-03-15","startDate":"2020-06-17","notes":"","roles":["ORGANIZATION"],"siteRegistry":false}],"associatedSites":[{"dateNoted":"2021-08-04","notes":"","parcelID":"18556","siteID":"19084","siteRegistry":true}]},{"uuid":"648643b4-262e-41fc-bcdc-1ba09d51827c","siteID":20773,"address":"43071 O'Keefe Rapid","latitude":54.387,"longitude":-138.3217,"lastUpdated":"2014-07-24","city":"Martashire","region":"Mainland/Southwest","victoriaFile":"26250-20/7776","regionalFile":"N/A","parcelIDs":[9815147,8131291,4411533,4623942,8623466],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2016-01-20","completed":"2019-05-14","initiated":"2018-11-10","ministryContact":"LANGOSH CORENE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2015-07-07","completed":"2020-09-03","initiated":"2019-05-17","ministryContact":"HARBER ABIGAIL","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2015-10-09","completed":"2015-11-29","initiated":"2020-07-16","ministryContact":"JOHNS RON","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2016-11-02","completed":"2020-03-21","initiated":"2015-11-05","ministryContact":"DAUGHERTY WILTON","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false}],"participants":[{"name":"IPSUM","endDate":"2015-12-09","startDate":"2015-04-29","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","endDate":"2018-04-20","startDate":"2023-06-15","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","endDate":"2019-06-12","startDate":"2018-10-29","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"AMET, DOLOR SIT","endDate":"2018-03-17","startDate":"2020-07-17","notes":"","roles":["EMPLOYEE"],"siteRegistry":false}],"associatedSites":[{"dateNoted":"2016-02-26","notes":"","parcelID":"18614","siteID":"15656","siteRegistry":false},{"dateNoted":"2014-09-21","notes":"","parcelID":"17986","siteID":"19699","siteRegistry":true},{"dateNoted":"2015-05-19","notes":"","parcelID":"17425","siteID":"19796","siteRegistry":false}]},{"uuid":"13fc2f1d-4acd-41b5-abdc-2eeea2c75807","siteID":15695,"address":"1143 Gibson Branch","latitude":56.7179,"longitude":-135.2911,"lastUpdated":"2023-05-04","city":"Rancho Palos Verdes","region":"Thompson-Okanagan","victoriaFile":"26250-20/8533","regionalFile":"N/A","parcelIDs":[3342807,2832303,3357844,8770942,8258208],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2022-02-15","completed":"2022-11-04","initiated":"2014-08-26","ministryContact":"LOWE AMARA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2022-10-27","completed":"2017-02-27","initiated":"2018-11-07","ministryContact":"STANTON ALIYAH","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2023-05-30","completed":"2020-05-07","initiated":"2017-06-17","ministryContact":"ONDRICKA MADELYN","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":false}],"participants":[{"name":"IPSUM","endDate":"2023-05-24","startDate":"2014-01-29","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"IPSUM","endDate":"2014-01-26","startDate":"2014-01-12","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"IPSUM","endDate":"2016-03-08","startDate":"2022-11-02","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"AMET, DOLOR SIT","endDate":"2020-02-27","startDate":"2015-11-01","notes":"","roles":["ORGANIZATION"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2018-12-30","notes":"","parcelID":"20707","siteID":"20211","siteRegistry":true},{"dateNoted":"2019-10-04","notes":"","parcelID":"18872","siteID":"16312","siteRegistry":false},{"dateNoted":"2015-07-06","notes":"","parcelID":"18656","siteID":"20869","siteRegistry":false}]},{"uuid":"70a15884-9f89-4e22-806a-2a3fdc41a595","siteID":16935,"address":"94239 O'Keefe Ridges","latitude":48.9139,"longitude":-133.3162,"lastUpdated":"2022-05-25","city":"North Isaiberg","region":"Vancouver Island/Coast","victoriaFile":"26250-20/18132","regionalFile":"N/A","parcelIDs":[6442159,9473650,2196498,1429551,6943597],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2013-10-01","completed":"2016-03-05","initiated":"2016-05-11","ministryContact":"CUMMINGS DELLA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2017-11-09","completed":"2015-12-25","initiated":"2019-08-08","ministryContact":"ANKUNDING CAROLE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":true}],"participants":[{"name":"SHELL CANADA PRODUCTS","endDate":"2019-06-03","startDate":"2019-10-04","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2022-11-03","startDate":"2020-07-19","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"AMET, DOLOR SIT","endDate":"2020-07-18","startDate":"2016-05-13","notes":"","roles":["EMPLOYEE"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2017-11-21","notes":"","parcelID":"18974","siteID":"17260","siteRegistry":false}]},{"uuid":"e1424391-1602-49f4-9923-6b464ab44d69","siteID":18080,"address":"927 Edd Inlet","latitude":58.7303,"longitude":-132.6962,"lastUpdated":"2023-07-03","city":"New Fredy","region":"Vancouver Island/Coast","victoriaFile":"26250-20/4286","regionalFile":"N/A","parcelIDs":[4387933,2723417,3395001,620620,9792215],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2018-07-17","completed":"2018-07-12","initiated":"2014-10-24","ministryContact":"NIKOLAUS THELMA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2021-11-14","completed":"2014-10-18","initiated":"2019-08-27","ministryContact":"JOHNSTON JANY","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2020-10-13","completed":"2019-04-25","initiated":"2013-11-07","ministryContact":"FEENEY CAROLINA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":true}],"participants":[{"name":"SHELL CANADA PRODUCTS","endDate":"2021-04-09","startDate":"2015-04-28","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"IPSUM","endDate":"2022-03-06","startDate":"2016-04-08","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2019-04-30","startDate":"2016-11-08","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2015-07-23","startDate":"2018-11-13","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"AMET, DOLOR SIT","endDate":"2015-11-30","startDate":"2020-02-20","notes":"","roles":["EMPLOYEE"],"siteRegistry":false}],"associatedSites":[{"dateNoted":"2013-12-01","notes":"","parcelID":"18775","siteID":"15919","siteRegistry":true},{"dateNoted":"2014-12-16","notes":"","parcelID":"18457","siteID":"20957","siteRegistry":false},{"dateNoted":"2017-09-26","notes":"","parcelID":"18979","siteID":"15543","siteRegistry":true}]},{"uuid":"da6cf77d-ac87-4076-bc1a-2ed83d09f3c0","siteID":16814,"address":"670 Zemlak Dam","latitude":52.7848,"longitude":-134.7527,"lastUpdated":"2021-06-06","city":"South Sarahberg","region":"Kootenay","victoriaFile":"26250-20/15388","regionalFile":"N/A","parcelIDs":[8164600,2437399,4985247,614088,642230],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2020-09-09","completed":"2022-12-31","initiated":"2023-03-23","ministryContact":"QUIGLEY KATELYNN","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2018-06-05","completed":"2017-12-17","initiated":"2019-09-02","ministryContact":"BERNHARD OWEN","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2015-05-26","completed":"2014-07-12","initiated":"2019-03-16","ministryContact":"FERRY JABARI","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2019-05-24","completed":"2015-12-10","initiated":"2018-01-23","ministryContact":"WISOKY KEEGAN","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":true}],"participants":[{"name":"SHELL CANADA PRODUCTS","endDate":"2017-08-09","startDate":"2018-09-10","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","endDate":"2020-10-22","startDate":"2015-11-12","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2013-11-11","startDate":"2016-10-20","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"AMET, DOLOR SIT","endDate":"2016-12-27","startDate":"2016-11-13","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","endDate":"2019-01-05","startDate":"2020-09-27","notes":"","roles":["ORGANIZATION"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2017-10-27","notes":"","parcelID":"16115","siteID":"19087","siteRegistry":false},{"dateNoted":"2023-07-06","notes":"","parcelID":"19925","siteID":"17304","siteRegistry":false}]},{"uuid":"0e7df480-4e0c-495f-9bdd-90ab21c685e2","siteID":16358,"address":"453 Dariana Wall","latitude":51.3633,"longitude":-129.3411,"lastUpdated":"2020-06-11","city":"Parma","region":" North Coast","victoriaFile":"26250-20/7651","regionalFile":"N/A","parcelIDs":[3221205,6085943,4328061,5768215,7722132],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2017-08-11","completed":"2017-07-10","initiated":"2019-02-25","ministryContact":"BARTOLETTI ULICES","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2022-10-22","completed":"2017-08-01","initiated":"2019-05-19","ministryContact":"DARE ANIBAL","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2016-09-26","completed":"2021-01-07","initiated":"2014-12-28","ministryContact":"FEENEY OLAF","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2016-11-11","completed":"2022-06-07","initiated":"2021-05-01","ministryContact":"WOLFF ALLEN","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":false}],"participants":[{"name":"IPSUM","endDate":"2016-06-11","startDate":"2020-10-14","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","endDate":"2014-05-26","startDate":"2014-09-21","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","endDate":"2021-02-18","startDate":"2014-04-16","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2022-10-27","startDate":"2022-08-14","notes":"","roles":["ORGANIZATION"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2014-08-18","notes":"","parcelID":"16432","siteID":"20443","siteRegistry":false}]},{"uuid":"05d0ea04-d49a-4570-acc2-c222949e2073","siteID":16228,"address":"7310 Randall Mountain","latitude":52.7593,"longitude":-119.4251,"lastUpdated":"2019-07-24","city":"Lake Delfinastad","region":"Cariboo","victoriaFile":"26250-20/13206","regionalFile":"N/A","parcelIDs":[3603920,7748186,3954932,5869004,8839593],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2017-02-10","completed":"2018-01-20","initiated":"2020-01-01","ministryContact":"O'CONNELL JAMMIE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2013-11-24","completed":"2022-11-24","initiated":"2022-01-25","ministryContact":"CHRISTIANSEN MYRA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2015-08-09","completed":"2014-06-13","initiated":"2017-03-27","ministryContact":"PREDOVIC NEVA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":true}],"participants":[{"name":"SHELL CANADA PRODUCTS","endDate":"2019-07-31","startDate":"2015-09-24","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2023-05-24","startDate":"2022-11-19","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"AMET, DOLOR SIT","endDate":"2019-05-02","startDate":"2020-02-24","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"IPSUM","endDate":"2017-02-11","startDate":"2018-09-06","notes":"","roles":["ORGANIZATION"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2023-05-28","notes":"","parcelID":"19501","siteID":"20833","siteRegistry":false}]},{"uuid":"8aaa0cc4-ee00-4da7-977c-f4d3d9bcb80f","siteID":16133,"address":"1331 Cassin Motorway","latitude":53.2407,"longitude":-135.6348,"lastUpdated":"2022-11-28","city":"Douglaschester","region":"Vancouver Island/Coast","victoriaFile":"26250-20/15381","regionalFile":"N/A","parcelIDs":[7530696,1587878,5160817,5826632,8064287],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2017-07-27","completed":"2017-03-23","initiated":"2023-01-10","ministryContact":"BUCKRIDGE NORENE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2015-04-02","completed":"2022-11-18","initiated":"2021-08-18","ministryContact":"STREICH LARUE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2021-02-14","completed":"2021-04-02","initiated":"2022-04-04","ministryContact":"MCCLURE TORREY","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2017-02-02","completed":"2018-11-08","initiated":"2019-12-20","ministryContact":"SCHMIDT KASSANDRA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2017-11-12","completed":"2021-04-30","initiated":"2019-08-22","ministryContact":"FERRY HALIE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":true}],"participants":[{"name":"IPSUM","endDate":"2018-01-12","startDate":"2015-01-09","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","endDate":"2014-01-05","startDate":"2018-07-16","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","endDate":"2023-02-18","startDate":"2017-05-12","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"AMET, DOLOR SIT","endDate":"2022-07-23","startDate":"2018-01-29","notes":"","roles":["EMPLOYEE"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2017-06-03","notes":"","parcelID":"19721","siteID":"19351","siteRegistry":false},{"dateNoted":"2021-03-07","notes":"","parcelID":"19282","siteID":"18587","siteRegistry":false}]},{"uuid":"4896cd4c-83e7-436e-9429-ce7bf5e76a7f","siteID":19457,"address":"843 Macey Parkways","latitude":48.8272,"longitude":-132.3948,"lastUpdated":"2020-12-03","city":"Handville","region":"Vancouver Island/Coast","victoriaFile":"26250-20/11649","regionalFile":"N/A","parcelIDs":[315921,161983,6794481,9573279,2744601],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2021-03-29","completed":"2021-02-13","initiated":"2014-05-17","ministryContact":"KOSS KATELIN","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2022-04-22","completed":"2023-09-11","initiated":"2019-07-29","ministryContact":"SCHADEN HAYLEE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2022-08-25","completed":"2014-04-07","initiated":"2022-09-06","ministryContact":"ALTENWERTH MARISOL","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2018-04-18","completed":"2015-01-12","initiated":"2020-10-11","ministryContact":"BAHRINGER CAMILLE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2015-08-18","completed":"2019-10-13","initiated":"2022-09-16","ministryContact":"TRANTOW GIDEON","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":true}],"participants":[{"name":"IPSUM","endDate":"2019-08-16","startDate":"2021-05-08","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","endDate":"2023-02-26","startDate":"2015-09-27","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2022-12-19","startDate":"2023-08-24","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","endDate":"2021-11-09","startDate":"2017-07-15","notes":"","roles":["ORGANIZATION"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2022-08-08","notes":"","parcelID":"18577","siteID":"17203","siteRegistry":true},{"dateNoted":"2020-01-09","notes":"","parcelID":"15571","siteID":"16645","siteRegistry":false}]},{"uuid":"01c6ceee-f856-4fea-b783-d010e66ab029","siteID":16796,"address":"415 Corkery Lock","latitude":53.7381,"longitude":-137.6596,"lastUpdated":"2014-11-25","city":"Damianworth","region":"Cariboo","victoriaFile":"26250-20/15027","regionalFile":"N/A","parcelIDs":[5089821,5892873,1359939,4897455,5205174],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2023-07-22","completed":"2017-10-13","initiated":"2016-10-17","ministryContact":"GISLASON-ABSHIRE VLADIMIR","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2018-10-18","completed":"2018-05-14","initiated":"2016-12-30","ministryContact":"PARKER ALLAN","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2017-01-20","completed":"2020-05-03","initiated":"2017-10-25","ministryContact":"KRIS DULCE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2019-09-15","completed":"2017-11-20","initiated":"2023-06-18","ministryContact":"METZ LUCAS","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2018-08-21","completed":"2015-09-25","initiated":"2015-11-18","ministryContact":"KUHIC LILLIANA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":true}],"participants":[{"name":"IPSUM","endDate":"2015-03-25","startDate":"2019-05-02","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"AMET, DOLOR SIT","endDate":"2014-03-13","startDate":"2015-06-25","notes":"","roles":["EMPLOYEE"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2014-08-23","notes":"","parcelID":"16214","siteID":"16736","siteRegistry":true}]},{"uuid":"8fc4d6e1-f0d6-423e-87f1-2f76d8073eac","siteID":19728,"address":"4187 Kevon Mill","latitude":51.6467,"longitude":-137.1424,"lastUpdated":"2014-05-06","city":"New Dominiquehaven","region":"Kootenay","victoriaFile":"26250-20/8477","regionalFile":"N/A","parcelIDs":[4472838,6338782,1767861,2115508,436045],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2018-06-01","completed":"2014-10-13","initiated":"2016-05-12","ministryContact":"TORPHY DANE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2015-12-20","completed":"2016-07-23","initiated":"2020-01-02","ministryContact":"SCHUPPE KILEY","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2020-03-05","completed":"2015-02-12","initiated":"2016-08-03","ministryContact":"BOGAN DANIKA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2015-05-25","completed":"2021-11-14","initiated":"2017-02-23","ministryContact":"SPENCER EVERETTE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false}],"participants":[{"name":"SHELL CANADA PRODUCTS","endDate":"2016-10-10","startDate":"2022-08-29","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"IPSUM","endDate":"2015-06-16","startDate":"2014-02-01","notes":"","roles":["EMPLOYEE"],"siteRegistry":false}],"associatedSites":[{"dateNoted":"2016-10-20","notes":"","parcelID":"20457","siteID":"19740","siteRegistry":false},{"dateNoted":"2015-04-11","notes":"","parcelID":"20221","siteID":"17394","siteRegistry":true},{"dateNoted":"2022-10-25","notes":"","parcelID":"17235","siteID":"17057","siteRegistry":true}]},{"uuid":"f4bc52bb-e406-49b5-ba70-98e0d887f6a5","siteID":18497,"address":"19324 Jules Crossroad","latitude":48.4519,"longitude":-127.6226,"lastUpdated":"2013-12-14","city":"Maurinefort","region":"Mainland/Southwest","victoriaFile":"26250-20/3973","regionalFile":"N/A","parcelIDs":[1315602,6754216,1268104,2157161,4483903],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2016-08-14","completed":"2022-06-20","initiated":"2014-03-04","ministryContact":"PFANNERSTILL EDMUND","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2022-06-18","completed":"2019-12-02","initiated":"2020-12-17","ministryContact":"BECKER ADALBERTO","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2022-03-03","completed":"2016-03-05","initiated":"2015-01-04","ministryContact":"BOTSFORD NICKOLAS","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2021-09-29","completed":"2019-08-17","initiated":"2022-10-28","ministryContact":"WINTHEISER HARDY","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":true}],"participants":[{"name":"IPSUM","endDate":"2014-03-31","startDate":"2017-02-21","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2015-07-28","startDate":"2020-04-07","notes":"","roles":["ORGANIZATION"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2017-06-03","notes":"","parcelID":"15947","siteID":"15656","siteRegistry":true},{"dateNoted":"2021-08-01","notes":"","parcelID":"20194","siteID":"17036","siteRegistry":true},{"dateNoted":"2014-10-19","notes":"","parcelID":"18065","siteID":"16193","siteRegistry":true}]},{"uuid":"e6db2523-0781-42f2-b4ef-b5a3ee447bda","siteID":19741,"address":"745 Jayce Ville","latitude":50.3024,"longitude":-118.4011,"lastUpdated":"2014-10-24","city":"New Reggie","region":"Vancouver Island/Coast","victoriaFile":"26250-20/2508","regionalFile":"N/A","parcelIDs":[4226859,6158872,9141372,1910124,5711430],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2020-09-07","completed":"2018-12-31","initiated":"2020-12-05","ministryContact":"CARTWRIGHT ALTHEA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2023-09-17","completed":"2023-01-11","initiated":"2015-12-05","ministryContact":"WEHNER CARLOTTA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2018-08-06","completed":"2021-12-17","initiated":"2014-10-07","ministryContact":"KONOPELSKI DEVAN","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2023-01-21","completed":"2016-05-07","initiated":"2021-11-18","ministryContact":"TOY KASSANDRA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2017-05-08","completed":"2023-05-22","initiated":"2022-10-19","ministryContact":"OSINSKI JUSTEN","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":false}],"participants":[{"name":"SHELL CANADA PRODUCTS","endDate":"2022-04-19","startDate":"2019-12-02","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2020-02-02","startDate":"2017-02-10","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","endDate":"2020-09-14","startDate":"2015-10-17","notes":"","roles":["EMPLOYEE"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2015-05-19","notes":"","parcelID":"16231","siteID":"17011","siteRegistry":true},{"dateNoted":"2019-03-13","notes":"","parcelID":"19484","siteID":"19093","siteRegistry":false}]},{"uuid":"2da3f43b-facb-4c06-80d3-3a3bb806ecfd","siteID":15495,"address":"550 Bradford Via","latitude":54.6787,"longitude":-131.1878,"lastUpdated":"2023-09-09","city":"West Arnoldtown","region":"Mainland/Southwest","victoriaFile":"26250-20/9566","regionalFile":"N/A","parcelIDs":[4382037,6861572,7891637,6323807,5951509],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2018-11-02","completed":"2017-09-04","initiated":"2014-10-31","ministryContact":"BARTELL-GERLACH KILEY","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2014-02-04","completed":"2017-02-15","initiated":"2020-10-29","ministryContact":"LEMKE BERTHA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2021-12-09","completed":"2017-01-04","initiated":"2016-06-08","ministryContact":"RAYNOR GARFIELD","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2018-06-10","completed":"2021-05-26","initiated":"2017-12-13","ministryContact":"RUTHERFORD MARIA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":true}],"participants":[{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2019-01-23","startDate":"2020-06-22","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"IPSUM","endDate":"2016-06-16","startDate":"2020-03-20","notes":"","roles":["EMPLOYEE"],"siteRegistry":false}],"associatedSites":[{"dateNoted":"2022-12-25","notes":"","parcelID":"20080","siteID":"15792","siteRegistry":false},{"dateNoted":"2021-04-05","notes":"","parcelID":"16957","siteID":"19409","siteRegistry":true},{"dateNoted":"2014-04-22","notes":"","parcelID":"19300","siteID":"16723","siteRegistry":false}]},{"uuid":"983f0ace-5a36-48d1-85b5-4d03c733dd81","siteID":17280,"address":"83495 Bergstrom Squares","latitude":55.976,"longitude":-127.8275,"lastUpdated":"2023-02-12","city":"Maggioton","region":"Kootenay","victoriaFile":"26250-20/1861","regionalFile":"N/A","parcelIDs":[6434344,8324651,7921304,306394,5111694],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2013-10-03","completed":"2013-10-02","initiated":"2018-02-12","ministryContact":"WOLFF HECTOR","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2016-10-28","completed":"2022-12-04","initiated":"2020-07-14","ministryContact":"STROSIN CHRISTOPHE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":true}],"participants":[{"name":"AMET, DOLOR SIT","endDate":"2014-05-11","startDate":"2015-03-25","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"IPSUM","endDate":"2020-06-03","startDate":"2014-10-08","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"AMET, DOLOR SIT","endDate":"2016-04-20","startDate":"2022-12-17","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","endDate":"2016-06-08","startDate":"2020-06-08","notes":"","roles":["ORGANIZATION"],"siteRegistry":false}],"associatedSites":[{"dateNoted":"2014-04-13","notes":"","parcelID":"16645","siteID":"17561","siteRegistry":true}]},{"uuid":"6000e622-264c-4e59-9ffb-a4ef031a4480","siteID":17914,"address":"5187 Jazmyne Glens","latitude":50.3944,"longitude":-135.1402,"lastUpdated":"2015-12-13","city":"San Ramon","region":"Mainland/Southwest","victoriaFile":"26250-20/10942","regionalFile":"N/A","parcelIDs":[6563048,9309411,6457112,1846921,5075690],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2014-11-07","completed":"2022-04-05","initiated":"2023-03-14","ministryContact":"PAGAC JASEN","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2017-01-01","completed":"2023-06-07","initiated":"2015-06-29","ministryContact":"WILL ANGELITA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2021-08-09","completed":"2018-10-02","initiated":"2020-01-15","ministryContact":"SHANAHAN DORRIS","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":false}],"participants":[{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2018-01-31","startDate":"2023-09-02","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"AMET, DOLOR SIT","endDate":"2018-12-09","startDate":"2018-06-28","notes":"","roles":["EMPLOYEE"],"siteRegistry":false}],"associatedSites":[{"dateNoted":"2014-12-02","notes":"","parcelID":"16902","siteID":"20017","siteRegistry":true}]},{"uuid":"17dd78c3-e02d-4201-b83b-d6c9f3da3ef8","siteID":15822,"address":"345 Goyette Mill","latitude":49.379,"longitude":-130.511,"lastUpdated":"2016-01-29","city":"Port Cadeville","region":"Mainland/Southwest","victoriaFile":"26250-20/15745","regionalFile":"N/A","parcelIDs":[6387234,6363161,1158289,3669411,5138544],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2019-01-29","completed":"2016-03-13","initiated":"2019-07-17","ministryContact":"MOORE LEOLA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2019-06-18","completed":"2020-02-03","initiated":"2017-06-12","ministryContact":"DIBBERT RICKEY","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2019-03-05","completed":"2022-05-11","initiated":"2022-12-13","ministryContact":"LEDNER EWALD","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":false}],"participants":[{"name":"SHELL CANADA PRODUCTS","endDate":"2015-10-10","startDate":"2020-04-21","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"IPSUM","endDate":"2013-12-23","startDate":"2013-12-26","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"AMET, DOLOR SIT","endDate":"2020-04-22","startDate":"2022-03-15","notes":"","roles":["ORGANIZATION"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2016-01-04","notes":"","parcelID":"16485","siteID":"19072","siteRegistry":true},{"dateNoted":"2023-06-09","notes":"","parcelID":"19779","siteID":"16986","siteRegistry":true}]},{"uuid":"d0c07582-1820-4e0d-9d3c-07fe6061497b","siteID":17275,"address":"849 Gerhold Trace","latitude":51.5662,"longitude":-123.5947,"lastUpdated":"2020-06-25","city":"Kshlerincester","region":"Cariboo","victoriaFile":"26250-20/13758","regionalFile":"N/A","parcelIDs":[6691773,9214706,6946326,2230182,8318527],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2015-12-11","completed":"2020-01-15","initiated":"2017-02-19","ministryContact":"REINGER DONNELL","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2018-06-07","completed":"2018-08-18","initiated":"2014-05-31","ministryContact":"BOYER JAZMIN","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":true}],"participants":[{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2016-06-24","startDate":"2015-02-14","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"IPSUM","endDate":"2023-05-01","startDate":"2021-03-12","notes":"","roles":["EMPLOYEE"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2020-03-03","notes":"","parcelID":"15852","siteID":"17057","siteRegistry":true}]},{"uuid":"00cad5a8-d631-4fdb-b0a1-0f97dc6bcd91","siteID":17935,"address":"99086 Smith Glens","latitude":56.3317,"longitude":-138.6163,"lastUpdated":"2019-03-16","city":"Torphyfurt","region":"Cariboo","victoriaFile":"26250-20/12702","regionalFile":"N/A","parcelIDs":[935366,4508705,6098137,1033671,5327499],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2014-08-11","completed":"2018-04-21","initiated":"2021-02-22","ministryContact":"KOCH THEO","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2013-10-03","completed":"2016-07-11","initiated":"2017-10-29","ministryContact":"GIBSON MARIAH","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2018-04-30","completed":"2017-12-21","initiated":"2021-08-16","ministryContact":"HEANEY ROWENA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2022-02-09","completed":"2014-03-10","initiated":"2015-11-25","ministryContact":"MARVIN BERNICE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2023-06-02","completed":"2020-11-11","initiated":"2021-11-10","ministryContact":"RUNOLFSSON LAUREN","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false}],"participants":[{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2014-04-02","startDate":"2017-08-28","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"AMET, DOLOR SIT","endDate":"2017-07-24","startDate":"2016-01-19","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"IPSUM","endDate":"2020-09-18","startDate":"2022-07-29","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","endDate":"2016-11-28","startDate":"2022-06-22","notes":"","roles":["ORGANIZATION"],"siteRegistry":false}],"associatedSites":[{"dateNoted":"2015-09-07","notes":"","parcelID":"17985","siteID":"16966","siteRegistry":false}]},{"uuid":"2937436c-b092-414a-8549-31e198a4fa72","siteID":17113,"address":"61107 Gorczany Canyon","latitude":48.4982,"longitude":-133.123,"lastUpdated":"2020-04-07","city":"Robertaborough","region":" North Coast","victoriaFile":"26250-20/12523","regionalFile":"N/A","parcelIDs":[9148716,1745820,2725568,5863482,8177127],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2021-03-01","completed":"2019-08-11","initiated":"2016-01-20","ministryContact":"GUTKOWSKI ALYSA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2016-07-28","completed":"2020-11-24","initiated":"2014-05-27","ministryContact":"HANE ELENA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":false}],"participants":[{"name":"SHELL CANADA PRODUCTS","endDate":"2018-08-14","startDate":"2016-01-12","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","endDate":"2019-06-22","startDate":"2017-02-17","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"IPSUM","endDate":"2015-07-07","startDate":"2019-09-17","notes":"","roles":["ORGANIZATION"],"siteRegistry":false}],"associatedSites":[{"dateNoted":"2022-09-13","notes":"","parcelID":"18813","siteID":"15375","siteRegistry":true},{"dateNoted":"2017-06-18","notes":"","parcelID":"15301","siteID":"15351","siteRegistry":false},{"dateNoted":"2023-08-06","notes":"","parcelID":"17264","siteID":"16721","siteRegistry":false}]},{"uuid":"648a1fba-2809-48b6-8c82-4574250f8526","siteID":17237,"address":"28125 Elna Turnpike","latitude":52.1374,"longitude":-118.5191,"lastUpdated":"2016-01-04","city":"New Gloriaside","region":"Thompson-Okanagan","victoriaFile":"26250-20/7046","regionalFile":"N/A","parcelIDs":[2272154,2529468,9704429,6612296,5927772],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2022-09-25","completed":"2013-10-26","initiated":"2019-05-29","ministryContact":"BLICK-HAHN MONTE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2018-02-18","completed":"2023-01-25","initiated":"2014-05-18","ministryContact":"HAGENES PRICE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2022-01-23","completed":"2022-07-06","initiated":"2023-02-06","ministryContact":"VEUM QUINTON","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2016-10-22","completed":"2017-02-20","initiated":"2017-04-15","ministryContact":"HAUCK MURIEL","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":true}],"participants":[{"name":"AMET, DOLOR SIT","endDate":"2015-02-14","startDate":"2020-03-02","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","endDate":"2015-06-23","startDate":"2016-06-23","notes":"","roles":["ORGANIZATION"],"siteRegistry":false}],"associatedSites":[{"dateNoted":"2017-03-23","notes":"","parcelID":"17548","siteID":"18126","siteRegistry":false},{"dateNoted":"2018-12-06","notes":"","parcelID":"15986","siteID":"17074","siteRegistry":false}]},{"uuid":"cfa355b1-ef6c-444c-b4df-727beca114a7","siteID":17260,"address":"3134 Aubrey Parkways","latitude":53.4711,"longitude":-134.1641,"lastUpdated":"2017-01-14","city":"East Mariloubury","region":"Kootenay","victoriaFile":"26250-20/13973","regionalFile":"N/A","parcelIDs":[6319731,6397293,5630114,6998805,996695],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2013-11-13","completed":"2017-05-23","initiated":"2015-12-05","ministryContact":"KOELPIN REBEKAH","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2014-02-12","completed":"2018-09-28","initiated":"2015-03-28","ministryContact":"GLOVER LUTHER","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2019-09-09","completed":"2019-01-22","initiated":"2020-08-03","ministryContact":"RIPPIN LEANN","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2019-10-22","completed":"2016-08-09","initiated":"2014-06-20","ministryContact":"HILLS MILES","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2019-03-16","completed":"2018-08-29","initiated":"2014-03-15","ministryContact":"KSHLERIN CARLOTTA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":true}],"participants":[{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2023-01-04","startDate":"2022-10-16","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"IPSUM","endDate":"2016-06-13","startDate":"2022-02-25","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"IPSUM","endDate":"2020-07-24","startDate":"2020-03-23","notes":"","roles":["EMPLOYEE"],"siteRegistry":false}],"associatedSites":[{"dateNoted":"2020-08-16","notes":"","parcelID":"17344","siteID":"18495","siteRegistry":true},{"dateNoted":"2015-09-05","notes":"","parcelID":"16098","siteID":"16814","siteRegistry":false}]},{"uuid":"7eeeeba2-3488-4ae7-85d5-223c9e3fd806","siteID":20307,"address":"301 Schaden Green","latitude":52.9296,"longitude":-131.9655,"lastUpdated":"2014-11-02","city":"Balistrerihaven","region":" North Coast","victoriaFile":"26250-20/1557","regionalFile":"N/A","parcelIDs":[5709042,2475516,8607587,6838747,5296868],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2023-06-03","completed":"2015-09-22","initiated":"2019-09-06","ministryContact":"OKUNEVA ALPHONSO","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2019-12-24","completed":"2020-10-23","initiated":"2016-03-01","ministryContact":"O'CONNER FRANK","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2021-03-04","completed":"2019-02-21","initiated":"2019-07-05","ministryContact":"DURGAN KING","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":false}],"participants":[{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2018-01-03","startDate":"2021-01-01","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"AMET, DOLOR SIT","endDate":"2015-09-24","startDate":"2020-01-07","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"IPSUM","endDate":"2015-09-21","startDate":"2019-05-08","notes":"","roles":["ORGANIZATION"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2017-12-25","notes":"","parcelID":"15767","siteID":"19773","siteRegistry":true}]},{"uuid":"d8e386d6-b6e6-4191-bba5-2e7c7e7e8d0c","siteID":19773,"address":"37309 Cummings Pine","latitude":56.8824,"longitude":-119.5775,"lastUpdated":"2019-03-06","city":"East Brett","region":"Kootenay","victoriaFile":"26250-20/3488","regionalFile":"N/A","parcelIDs":[233574,1432146,4275686,1776010,7025425],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2023-01-13","completed":"2021-09-06","initiated":"2014-03-25","ministryContact":"HILLS LEONIE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2018-03-25","completed":"2018-03-11","initiated":"2019-02-01","ministryContact":"REICHEL ANDRE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2019-05-20","completed":"2013-10-13","initiated":"2013-12-06","ministryContact":"RUNOLFSDOTTIR NELLIE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2014-04-27","completed":"2017-11-13","initiated":"2020-12-28","ministryContact":"O'KON TRESSIE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2021-03-31","completed":"2014-06-24","initiated":"2018-04-13","ministryContact":"TERRY SABRINA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":false}],"participants":[{"name":"SHELL CANADA PRODUCTS","endDate":"2017-05-28","startDate":"2017-07-04","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","endDate":"2017-12-08","startDate":"2023-06-30","notes":"","roles":["ORGANIZATION"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2017-10-18","notes":"","parcelID":"18774","siteID":"20788","siteRegistry":true},{"dateNoted":"2021-05-17","notes":"","parcelID":"20008","siteID":"17449","siteRegistry":false}]},{"uuid":"f34d7aa7-1847-43ef-9623-4bd479fd98c0","siteID":19872,"address":"2154 Torphy Lock","latitude":48.614,"longitude":-126.1157,"lastUpdated":"2017-07-13","city":"New Oda","region":"Mainland/Southwest","victoriaFile":"26250-20/1444","regionalFile":"N/A","parcelIDs":[3147762,1389596,4576731,5897827,1241325],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2018-11-25","completed":"2013-12-08","initiated":"2013-11-07","ministryContact":"COLLINS JULIET","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2020-04-20","completed":"2023-09-05","initiated":"2022-09-02","ministryContact":"PARKER-HEATHCOTE TRESSA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2022-07-15","completed":"2015-11-08","initiated":"2015-02-19","ministryContact":"GUSIKOWSKI DESTINY","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":false}],"participants":[{"name":"AMET, DOLOR SIT","endDate":"2023-04-02","startDate":"2014-12-26","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"AMET, DOLOR SIT","endDate":"2017-10-21","startDate":"2018-04-01","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","endDate":"2017-02-28","startDate":"2020-11-01","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"IPSUM","endDate":"2020-07-21","startDate":"2017-01-12","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","endDate":"2016-10-11","startDate":"2018-09-05","notes":"","roles":["ORGANIZATION"],"siteRegistry":false}],"associatedSites":[{"dateNoted":"2021-01-24","notes":"","parcelID":"19402","siteID":"17038","siteRegistry":true}]},{"uuid":"7df0b60a-5d9f-4fd0-b4a5-6b4c57398b31","siteID":19093,"address":"32352 Hermann Locks","latitude":49.8272,"longitude":-129.8147,"lastUpdated":"2014-08-03","city":"Baileychester","region":"Vancouver Island/Coast","victoriaFile":"26250-20/9597","regionalFile":"N/A","parcelIDs":[9087147,3603778,5553827,6907641,2515038],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2013-12-27","completed":"2015-02-20","initiated":"2018-06-06","ministryContact":"BARTELL DAMIEN","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2020-03-28","completed":"2020-04-27","initiated":"2014-07-26","ministryContact":"RENNER AUBREE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2013-12-14","completed":"2019-06-28","initiated":"2020-03-21","ministryContact":"HARTMANN MARC","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2019-12-08","completed":"2016-11-02","initiated":"2023-08-29","ministryContact":"HYATT EDISON","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2022-08-19","completed":"2021-03-18","initiated":"2016-04-15","ministryContact":"HARRIS JULIEN","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":false}],"participants":[{"name":"AMET, DOLOR SIT","endDate":"2016-08-29","startDate":"2017-05-07","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"IPSUM","endDate":"2015-09-12","startDate":"2014-10-23","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"AMET, DOLOR SIT","endDate":"2020-02-23","startDate":"2020-08-31","notes":"","roles":["EMPLOYEE"],"siteRegistry":false}],"associatedSites":[{"dateNoted":"2017-03-24","notes":"","parcelID":"19476","siteID":"16703","siteRegistry":true},{"dateNoted":"2016-08-14","notes":"","parcelID":"18472","siteID":"15980","siteRegistry":true}]},{"uuid":"03666d2f-1c9b-4284-9a89-0b810df6dc9d","siteID":19701,"address":"850 Carroll Creek","latitude":53.8145,"longitude":-124.035,"lastUpdated":"2017-03-11","city":"Paterson","region":"Kootenay","victoriaFile":"26250-20/6334","regionalFile":"N/A","parcelIDs":[1603639,5673011,9250838,4132638,9962144],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2015-04-29","completed":"2016-11-20","initiated":"2014-01-24","ministryContact":"LOCKMAN KEELY","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2016-11-15","completed":"2019-04-14","initiated":"2021-04-20","ministryContact":"SAUER CHRISTY","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2022-11-02","completed":"2022-03-25","initiated":"2023-05-16","ministryContact":"WOLF ROBIN","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2018-07-23","completed":"2021-08-28","initiated":"2016-05-15","ministryContact":"HETTINGER AUDRA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":true}],"participants":[{"name":"SHELL CANADA PRODUCTS","endDate":"2016-05-05","startDate":"2020-05-28","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"AMET, DOLOR SIT","endDate":"2016-12-27","startDate":"2017-12-18","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","endDate":"2013-11-09","startDate":"2015-05-13","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","endDate":"2015-09-03","startDate":"2016-11-28","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2015-10-28","startDate":"2017-03-06","notes":"","roles":["ORGANIZATION"],"siteRegistry":false}],"associatedSites":[{"dateNoted":"2014-09-23","notes":"","parcelID":"16837","siteID":"20947","siteRegistry":false},{"dateNoted":"2019-04-14","notes":"","parcelID":"20205","siteID":"19897","siteRegistry":true}]},{"uuid":"9e9d62e1-34e3-4974-9fb1-c1a96a0253f7","siteID":18274,"address":"64350 Ethan Greens","latitude":50.3342,"longitude":-119.6225,"lastUpdated":"2016-01-28","city":"Athens-Clarke County","region":"Kootenay","victoriaFile":"26250-20/17861","regionalFile":"N/A","parcelIDs":[8545610,477863,4402893,386544,8247015],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2019-08-23","completed":"2022-10-22","initiated":"2015-06-06","ministryContact":"HEANEY BERENICE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2016-10-11","completed":"2018-12-20","initiated":"2021-10-11","ministryContact":"REINGER PATTIE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":true}],"participants":[{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2022-04-15","startDate":"2018-10-17","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"IPSUM","endDate":"2018-08-01","startDate":"2022-12-26","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","endDate":"2015-09-06","startDate":"2018-12-16","notes":"","roles":["EMPLOYEE"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2015-03-14","notes":"","parcelID":"17525","siteID":"16986","siteRegistry":true},{"dateNoted":"2017-08-14","notes":"","parcelID":"18581","siteID":"15945","siteRegistry":false},{"dateNoted":"2015-05-20","notes":"","parcelID":"18732","siteID":"19048","siteRegistry":true}]},{"uuid":"8a9503a1-6268-4185-888a-c23cf7d92997","siteID":17454,"address":"721 Erling Trail","latitude":55.151,"longitude":-120.7264,"lastUpdated":"2017-12-26","city":"Myrticeburgh","region":"Mainland/Southwest","victoriaFile":"26250-20/2725","regionalFile":"N/A","parcelIDs":[9863219,5288151,6153099,2153753,6738553],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2022-08-25","completed":"2022-03-09","initiated":"2015-03-08","ministryContact":"KEELING-JENKINS PINKIE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2016-10-05","completed":"2015-06-18","initiated":"2013-10-23","ministryContact":"FARRELL JASPER","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2016-09-11","completed":"2018-11-03","initiated":"2016-06-20","ministryContact":"O'REILLY RAMON","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2021-01-27","completed":"2020-12-18","initiated":"2020-10-23","ministryContact":"BATZ AMIE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2014-10-07","completed":"2020-01-05","initiated":"2022-08-16","ministryContact":"LEANNON DOROTHY","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":true}],"participants":[{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2023-09-12","startDate":"2016-02-06","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"AMET, DOLOR SIT","endDate":"2017-06-25","startDate":"2019-07-06","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"AMET, DOLOR SIT","endDate":"2018-04-09","startDate":"2023-03-28","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2014-06-01","startDate":"2016-01-30","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2014-05-11","startDate":"2021-08-31","notes":"","roles":["EMPLOYEE"],"siteRegistry":false}],"associatedSites":[{"dateNoted":"2017-03-26","notes":"","parcelID":"16559","siteID":"17012","siteRegistry":true},{"dateNoted":"2022-04-04","notes":"","parcelID":"20968","siteID":"19351","siteRegistry":true}]},{"uuid":"cf68a39f-0505-4c34-bd2e-4c1a78631040","siteID":19314,"address":"4863 King Well","latitude":51.8882,"longitude":-133.358,"lastUpdated":"2020-10-27","city":"Layneboro","region":"Kootenay","victoriaFile":"26250-20/9978","regionalFile":"N/A","parcelIDs":[6224003,5290809,5850577,585406,288115],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2015-06-03","completed":"2022-05-03","initiated":"2021-03-03","ministryContact":"KEELING ANITA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2022-10-14","completed":"2021-01-29","initiated":"2015-01-26","ministryContact":"FERRY KAYDEN","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2017-09-03","completed":"2016-02-18","initiated":"2017-05-18","ministryContact":"MILLER TYLER","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2016-06-17","completed":"2016-08-05","initiated":"2017-05-09","ministryContact":"ABSHIRE JOY","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2022-11-03","completed":"2017-09-28","initiated":"2021-02-09","ministryContact":"DARE GRADY","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":false}],"participants":[{"name":"SHELL CANADA PRODUCTS","endDate":"2018-08-29","startDate":"2023-09-17","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"IPSUM","endDate":"2019-04-09","startDate":"2014-04-23","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","endDate":"2020-02-06","startDate":"2022-11-28","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2017-08-20","startDate":"2017-10-23","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","endDate":"2019-10-26","startDate":"2017-08-07","notes":"","roles":["EMPLOYEE"],"siteRegistry":false}],"associatedSites":[{"dateNoted":"2022-12-28","notes":"","parcelID":"18418","siteID":"15919","siteRegistry":true},{"dateNoted":"2015-11-13","notes":"","parcelID":"20570","siteID":"18517","siteRegistry":false}]},{"uuid":"ed839ca2-d6df-4f2c-9c3c-9ed2acc85fbb","siteID":19407,"address":"79946 Langosh Highway","latitude":50.856,"longitude":-125.2751,"lastUpdated":"2016-04-30","city":"Demondberg","region":"Mainland/Southwest","victoriaFile":"26250-20/990","regionalFile":"N/A","parcelIDs":[227262,3372092,6022754,8430587,5971294],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2016-11-18","completed":"2021-09-12","initiated":"2017-10-22","ministryContact":"STREICH NOEMY","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2014-12-19","completed":"2020-10-13","initiated":"2017-05-03","ministryContact":"KULAS JORGE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2020-04-08","completed":"2016-10-02","initiated":"2015-12-05","ministryContact":"KULAS NOVA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2022-08-06","completed":"2014-05-26","initiated":"2018-10-08","ministryContact":"HELLER IGNATIUS","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":true}],"participants":[{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2023-08-13","startDate":"2014-03-18","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2018-07-14","startDate":"2019-04-10","notes":"","roles":["EMPLOYEE"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2022-04-10","notes":"","parcelID":"20039","siteID":"20366","siteRegistry":false}]},{"uuid":"a64f2441-bfae-4187-807b-f20649a6926f","siteID":17795,"address":"16860 Eriberto Valley","latitude":52.9928,"longitude":-126.8573,"lastUpdated":"2020-10-19","city":"Addisonboro","region":"Thompson-Okanagan","victoriaFile":"26250-20/7819","regionalFile":"N/A","parcelIDs":[3368006,5168824,1979922,9865547,7291494],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2014-10-11","completed":"2019-10-25","initiated":"2017-03-31","ministryContact":"CASSIN-WELCH ROSALINDA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2019-12-01","completed":"2020-08-05","initiated":"2018-03-07","ministryContact":"WATSICA STEPHAN","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":true}],"participants":[{"name":"IPSUM","endDate":"2020-11-09","startDate":"2016-08-26","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"AMET, DOLOR SIT","endDate":"2017-02-23","startDate":"2018-04-01","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"IPSUM","endDate":"2020-09-01","startDate":"2023-04-05","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"AMET, DOLOR SIT","endDate":"2018-06-28","startDate":"2014-07-26","notes":"","roles":["ORGANIZATION"],"siteRegistry":false}],"associatedSites":[{"dateNoted":"2021-09-22","notes":"","parcelID":"20319","siteID":"17038","siteRegistry":false},{"dateNoted":"2023-08-03","notes":"","parcelID":"18918","siteID":"17414","siteRegistry":true}]},{"uuid":"8ca034ab-81b0-486d-ba16-82c9f5ab1f4c","siteID":19409,"address":"4368 Rath Greens","latitude":54.4748,"longitude":-130.9228,"lastUpdated":"2015-12-17","city":"Vincenzaboro","region":"Kootenay","victoriaFile":"26250-20/10653","regionalFile":"N/A","parcelIDs":[7936753,6512346,9812202,3871712,6332216],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2019-02-09","completed":"2014-05-02","initiated":"2016-03-27","ministryContact":"KOCH PRISCILLA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2023-04-08","completed":"2021-08-26","initiated":"2020-08-06","ministryContact":"TREUTEL KEITH","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false}],"participants":[{"name":"IPSUM","endDate":"2022-09-20","startDate":"2022-09-21","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"AMET, DOLOR SIT","endDate":"2018-11-10","startDate":"2014-03-28","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"IPSUM","endDate":"2017-01-09","startDate":"2022-05-22","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2017-08-20","startDate":"2017-11-07","notes":"","roles":["ORGANIZATION"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2020-03-07","notes":"","parcelID":"20467","siteID":"17012","siteRegistry":false},{"dateNoted":"2023-02-09","notes":"","parcelID":"17120","siteID":"17012","siteRegistry":true}]},{"uuid":"b4d80de1-65f6-4220-8017-b9149c2a02b6","siteID":18753,"address":"478 Emery Plain","latitude":54.2502,"longitude":-126.6058,"lastUpdated":"2019-01-31","city":"Jacintheworth","region":" North Coast","victoriaFile":"26250-20/9714","regionalFile":"N/A","parcelIDs":[7400397,6651026,7649213,6232797,7320142],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2017-06-24","completed":"2014-12-26","initiated":"2020-08-04","ministryContact":"HARRIS EZEKIEL","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2023-03-22","completed":"2014-06-29","initiated":"2016-05-18","ministryContact":"BARTELL JACE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2016-05-24","completed":"2023-07-05","initiated":"2021-08-21","ministryContact":"STROMAN COLE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2016-08-27","completed":"2020-07-09","initiated":"2016-03-04","ministryContact":"SHANAHAN LYSANNE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":true}],"participants":[{"name":"IPSUM","endDate":"2019-02-23","startDate":"2022-09-03","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2021-03-25","startDate":"2023-04-23","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"IPSUM","endDate":"2015-10-23","startDate":"2021-12-06","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2017-09-01","startDate":"2018-04-05","notes":"","roles":["ORGANIZATION"],"siteRegistry":false}],"associatedSites":[{"dateNoted":"2019-01-27","notes":"","parcelID":"20884","siteID":"17768","siteRegistry":false}]},{"uuid":"f8735ae6-248d-4df9-a32f-a6ba99aca847","siteID":18245,"address":"41284 Silas Loaf","latitude":52.5527,"longitude":-123.7511,"lastUpdated":"2018-09-15","city":"North Alejandra","region":"Cariboo","victoriaFile":"26250-20/18997","regionalFile":"N/A","parcelIDs":[7824487,9276729,8884993,8865443,4436979],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2014-05-01","completed":"2019-07-31","initiated":"2018-03-22","ministryContact":"SCHUMM KENNETH","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2018-05-06","completed":"2022-02-22","initiated":"2022-07-22","ministryContact":"GRIMES HAYLIE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2016-07-03","completed":"2017-06-28","initiated":"2014-01-11","ministryContact":"BEDNAR GREYSON","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2019-11-25","completed":"2017-01-22","initiated":"2022-04-04","ministryContact":"MITCHELL PIPER","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":true}],"participants":[{"name":"SHELL CANADA PRODUCTS","endDate":"2023-07-05","startDate":"2014-08-02","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"IPSUM","endDate":"2022-03-28","startDate":"2015-01-14","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"AMET, DOLOR SIT","endDate":"2020-01-22","startDate":"2017-06-17","notes":"","roles":["ORGANIZATION"],"siteRegistry":false}],"associatedSites":[{"dateNoted":"2015-01-18","notes":"","parcelID":"20832","siteID":"19741","siteRegistry":false},{"dateNoted":"2019-10-06","notes":"","parcelID":"15486","siteID":"18771","siteRegistry":false}]},{"uuid":"68d643a2-0105-4821-ba1b-14134926ff46","siteID":19377,"address":"298 Bartell Valleys","latitude":57.931,"longitude":-121.0183,"lastUpdated":"2016-01-16","city":"South Juanastad","region":"Thompson-Okanagan","victoriaFile":"26250-20/11821","regionalFile":"N/A","parcelIDs":[131669,3351706,9279391,7282081,5465397],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2016-07-14","completed":"2017-05-21","initiated":"2016-05-02","ministryContact":"GUTKOWSKI EVERT","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2018-11-11","completed":"2020-07-01","initiated":"2014-02-15","ministryContact":"KSHLERIN JENNYFER","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":false}],"participants":[{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2023-06-29","startDate":"2017-05-15","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","endDate":"2022-02-06","startDate":"2019-11-17","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"IPSUM","endDate":"2019-08-26","startDate":"2023-01-02","notes":"","roles":["EMPLOYEE"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2020-02-22","notes":"","parcelID":"19236","siteID":"16228","siteRegistry":false},{"dateNoted":"2013-11-07","notes":"","parcelID":"17971","siteID":"16703","siteRegistry":true}]},{"uuid":"b44edbd2-7dc8-4d78-85dd-b39b1eef043a","siteID":16559,"address":"713 Lucio Plains","latitude":57.8976,"longitude":-130.1852,"lastUpdated":"2019-03-16","city":"Otiliaboro","region":"Vancouver Island/Coast","victoriaFile":"26250-20/2010","regionalFile":"N/A","parcelIDs":[9748793,4915429,7243618,3392211,8286779],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2019-03-02","completed":"2016-06-12","initiated":"2015-06-22","ministryContact":"CUMMINGS DESIREE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2022-08-28","completed":"2023-08-27","initiated":"2015-11-30","ministryContact":"MORAR JAYME","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":true}],"participants":[{"name":"SHELL CANADA PRODUCTS","endDate":"2014-03-07","startDate":"2014-07-27","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2016-01-31","startDate":"2017-03-26","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"IPSUM","endDate":"2023-05-18","startDate":"2017-09-20","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","endDate":"2017-04-25","startDate":"2022-05-27","notes":"","roles":["ORGANIZATION"],"siteRegistry":false}],"associatedSites":[{"dateNoted":"2015-05-08","notes":"","parcelID":"20418","siteID":"20906","siteRegistry":true}]},{"uuid":"4ac66654-1019-4a5c-ad78-296a69724ce6","siteID":17448,"address":"1943 Abdullah Mount","latitude":54.3575,"longitude":-122.7209,"lastUpdated":"2016-05-30","city":"Fort Camdenburgh","region":"Mainland/Southwest","victoriaFile":"26250-20/3654","regionalFile":"N/A","parcelIDs":[8163066,9827115,5329616,749003,8085915],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2017-09-02","completed":"2022-02-01","initiated":"2020-10-18","ministryContact":"RATKE CALLIE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2019-06-20","completed":"2018-11-05","initiated":"2019-07-26","ministryContact":"WALSH AUDREY","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2014-03-21","completed":"2020-02-07","initiated":"2023-05-13","ministryContact":"HILPERT JENNIE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2020-06-29","completed":"2019-06-15","initiated":"2020-05-15","ministryContact":"DAUGHERTY ANTWON","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":false}],"participants":[{"name":"AMET, DOLOR SIT","endDate":"2018-05-27","startDate":"2020-04-14","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","endDate":"2020-06-26","startDate":"2023-03-18","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"AMET, DOLOR SIT","endDate":"2017-07-24","startDate":"2017-07-20","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"AMET, DOLOR SIT","endDate":"2020-06-18","startDate":"2017-06-26","notes":"","roles":["ORGANIZATION"],"siteRegistry":false}],"associatedSites":[{"dateNoted":"2014-12-15","notes":"","parcelID":"18957","siteID":"18969","siteRegistry":false}]},{"uuid":"12fd1efe-87a1-4d54-a050-259e1bd9aeea","siteID":19904,"address":"75053 Hodkiewicz Ramp","latitude":55.0262,"longitude":-138.2041,"lastUpdated":"2015-04-12","city":"Pembroke Pines","region":"Thompson-Okanagan","victoriaFile":"26250-20/1699","regionalFile":"N/A","parcelIDs":[8760759,5595200,5729214,1177775,9307903],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2017-07-14","completed":"2015-03-16","initiated":"2014-08-12","ministryContact":"BREKKE EDWARDO","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2021-07-16","completed":"2023-04-05","initiated":"2019-11-08","ministryContact":"WEIMANN NATASHA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2018-12-07","completed":"2019-07-18","initiated":"2017-06-22","ministryContact":"O'CONNER MARJOLAINE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2014-02-28","completed":"2019-06-24","initiated":"2023-02-27","ministryContact":"HEGMANN EVERETTE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false}],"participants":[{"name":"SHELL CANADA PRODUCTS","endDate":"2021-06-06","startDate":"2014-07-21","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"IPSUM","endDate":"2023-01-21","startDate":"2019-08-12","notes":"","roles":["ORGANIZATION"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2021-01-03","notes":"","parcelID":"20560","siteID":"15443","siteRegistry":false},{"dateNoted":"2020-06-07","notes":"","parcelID":"18717","siteID":"20353","siteRegistry":true},{"dateNoted":"2020-01-11","notes":"","parcelID":"20600","siteID":"17164","siteRegistry":false}]},{"uuid":"0e85df4f-feb5-41cf-ba94-a368a6ddd2b1","siteID":16025,"address":"694 Zieme Village","latitude":58.4822,"longitude":-119.3808,"lastUpdated":"2014-03-01","city":"Destineycester","region":"Kootenay","victoriaFile":"26250-20/16333","regionalFile":"N/A","parcelIDs":[2725808,1271097,3502451,5690690,6807741],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2021-12-19","completed":"2021-02-26","initiated":"2019-03-26","ministryContact":"SMITH AUDIE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2021-05-09","completed":"2015-03-13","initiated":"2022-11-03","ministryContact":"WOLF KOBE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2017-04-01","completed":"2015-04-12","initiated":"2023-04-23","ministryContact":"BOSCO WALKER","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2023-07-13","completed":"2014-04-29","initiated":"2016-01-12","ministryContact":"POLLICH EBBA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":false}],"participants":[{"name":"SHELL CANADA PRODUCTS","endDate":"2014-10-31","startDate":"2022-01-04","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2020-10-15","startDate":"2020-05-27","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2022-10-12","startDate":"2017-11-15","notes":"","roles":["EMPLOYEE"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2019-01-30","notes":"","parcelID":"17313","siteID":"16793","siteRegistry":false},{"dateNoted":"2019-07-31","notes":"","parcelID":"19397","siteID":"17011","siteRegistry":false},{"dateNoted":"2015-05-06","notes":"","parcelID":"18527","siteID":"19005","siteRegistry":true}]},{"uuid":"7381e564-baf7-4213-b69b-ed5884da1b10","siteID":15656,"address":"46501 Aurelio Bridge","latitude":57.9362,"longitude":-120.4585,"lastUpdated":"2022-03-17","city":"Clementineborough","region":"Kootenay","victoriaFile":"26250-20/6072","regionalFile":"N/A","parcelIDs":[8822231,5841359,6222000,5725822,9606495],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2015-09-27","completed":"2020-03-28","initiated":"2023-05-25","ministryContact":"FAHEY BROOK","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2017-03-31","completed":"2019-12-30","initiated":"2022-11-01","ministryContact":"PROSACCO WILLY","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2020-07-15","completed":"2016-09-10","initiated":"2023-08-01","ministryContact":"HAND JARED","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2016-12-03","completed":"2016-01-25","initiated":"2019-09-12","ministryContact":"JERDE JADE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2019-09-11","completed":"2016-08-01","initiated":"2016-12-21","ministryContact":"RITCHIE KRYSTAL","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false}],"participants":[{"name":"AMET, DOLOR SIT","endDate":"2021-01-03","startDate":"2019-04-24","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"AMET, DOLOR SIT","endDate":"2015-05-01","startDate":"2014-08-25","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"AMET, DOLOR SIT","endDate":"2015-09-01","startDate":"2021-06-22","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2015-09-26","startDate":"2022-01-19","notes":"","roles":["EMPLOYEE"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2016-08-27","notes":"","parcelID":"16237","siteID":"20906","siteRegistry":false},{"dateNoted":"2022-09-05","notes":"","parcelID":"19220","siteID":"20323","siteRegistry":false}]},{"uuid":"7270a2f7-6739-4e28-8921-d1c986099b30","siteID":20869,"address":"1792 Antonina Path","latitude":50.5211,"longitude":-126.4883,"lastUpdated":"2020-05-11","city":"New Maureenfield","region":"Thompson-Okanagan","victoriaFile":"26250-20/13821","regionalFile":"N/A","parcelIDs":[4996463,8669489,6220217,7064387,9298852],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2020-06-02","completed":"2014-01-06","initiated":"2016-05-22","ministryContact":"BEATTY PAT","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2019-02-27","completed":"2017-06-25","initiated":"2015-04-04","ministryContact":"O'CONNER KIRSTEN","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2014-04-08","completed":"2021-03-08","initiated":"2015-12-29","ministryContact":"DANIEL CLAUD","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false}],"participants":[{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2014-10-01","startDate":"2023-04-13","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","endDate":"2018-09-11","startDate":"2020-02-16","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"AMET, DOLOR SIT","endDate":"2015-12-01","startDate":"2022-04-20","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"AMET, DOLOR SIT","endDate":"2020-02-03","startDate":"2017-09-26","notes":"","roles":["ORGANIZATION"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2022-07-20","notes":"","parcelID":"16271","siteID":"19457","siteRegistry":true},{"dateNoted":"2015-09-15","notes":"","parcelID":"17914","siteID":"17200","siteRegistry":true}]},{"uuid":"1eaf94ad-225d-4af5-95b3-4e424acc60d2","siteID":16118,"address":"4213 Jerde Shoal","latitude":49.2077,"longitude":-138.177,"lastUpdated":"2016-04-20","city":"Schummstead","region":"Thompson-Okanagan","victoriaFile":"26250-20/17832","regionalFile":"N/A","parcelIDs":[6462995,9523345,362754,173631,2778819],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2019-03-24","completed":"2019-03-23","initiated":"2021-08-15","ministryContact":"SMITH ORA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2014-09-07","completed":"2021-09-05","initiated":"2018-11-27","ministryContact":"SCHADEN-PRICE JOHNNY","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2020-05-19","completed":"2022-09-24","initiated":"2019-11-25","ministryContact":"STAMM KARA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2020-12-22","completed":"2020-06-26","initiated":"2015-08-28","ministryContact":"ABSHIRE COLBY","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2017-08-26","completed":"2022-07-17","initiated":"2018-05-01","ministryContact":"BECHTELAR CHEYENNE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":false}],"participants":[{"name":"SHELL CANADA PRODUCTS","endDate":"2022-03-15","startDate":"2018-11-10","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"IPSUM","endDate":"2020-12-12","startDate":"2022-10-08","notes":"","roles":["EMPLOYEE"],"siteRegistry":false}],"associatedSites":[{"dateNoted":"2018-10-18","notes":"","parcelID":"16464","siteID":"19314","siteRegistry":false}]},{"uuid":"99a567a0-19c0-4b2f-a86e-b4793df7fbdc","siteID":18969,"address":"650 Elenor Ridges","latitude":51.3107,"longitude":-120.8581,"lastUpdated":"2018-07-24","city":"Malachichester","region":"Kootenay","victoriaFile":"26250-20/17663","regionalFile":"N/A","parcelIDs":[7289532,2117949,3405760,1666343,1180250],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2018-02-16","completed":"2015-06-12","initiated":"2017-02-08","ministryContact":"LUEILWITZ BEVERLY","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2015-01-16","completed":"2016-04-20","initiated":"2017-05-09","ministryContact":"HAAG CARLOS","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":true}],"participants":[{"name":"AMET, DOLOR SIT","endDate":"2014-05-27","startDate":"2019-09-11","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","endDate":"2022-03-10","startDate":"2020-07-05","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"AMET, DOLOR SIT","endDate":"2018-05-02","startDate":"2015-04-29","notes":"","roles":["EMPLOYEE"],"siteRegistry":false}],"associatedSites":[{"dateNoted":"2023-01-13","notes":"","parcelID":"18086","siteID":"17057","siteRegistry":true},{"dateNoted":"2019-08-05","notes":"","parcelID":"17656","siteID":"16972","siteRegistry":true}]},{"uuid":"193e3d60-a88e-4ea3-87d7-0875677e5ba5","siteID":17394,"address":"61100 Adelbert Pines","latitude":50.3458,"longitude":-134.8701,"lastUpdated":"2020-08-03","city":"East Kentonstead","region":"Thompson-Okanagan","victoriaFile":"26250-20/1099","regionalFile":"N/A","parcelIDs":[7848288,4010624,7261741,7315603,1667638],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2021-05-20","completed":"2015-04-13","initiated":"2018-07-02","ministryContact":"STANTON DARIO","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2016-09-30","completed":"2021-05-20","initiated":"2020-11-24","ministryContact":"GORCZANY ALIYA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2013-12-27","completed":"2015-09-27","initiated":"2018-08-19","ministryContact":"NIENOW LEO","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2017-11-03","completed":"2023-01-06","initiated":"2020-09-27","ministryContact":"WILKINSON CIERRA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2021-06-24","completed":"2022-02-26","initiated":"2015-11-12","ministryContact":"KUVALIS ELEAZAR","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":true}],"participants":[{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2017-12-22","startDate":"2019-06-29","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","endDate":"2018-12-18","startDate":"2018-12-20","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"IPSUM","endDate":"2023-05-07","startDate":"2015-02-16","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"AMET, DOLOR SIT","endDate":"2019-07-29","startDate":"2020-02-19","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","endDate":"2023-05-14","startDate":"2018-12-29","notes":"","roles":["EMPLOYEE"],"siteRegistry":false}],"associatedSites":[{"dateNoted":"2017-10-08","notes":"","parcelID":"17277","siteID":"18065","siteRegistry":true},{"dateNoted":"2015-01-08","notes":"","parcelID":"17419","siteID":"20788","siteRegistry":true}]},{"uuid":"1446c5a1-a05b-48be-aafc-1c1dcb83683f","siteID":17866,"address":"375 Wuckert Roads","latitude":50.7536,"longitude":-135.7884,"lastUpdated":"2023-09-28","city":"New Friedrich","region":"Mainland/Southwest","victoriaFile":"26250-20/4896","regionalFile":"N/A","parcelIDs":[8963662,7550120,4498654,7914848,396071],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2022-03-09","completed":"2014-05-12","initiated":"2023-08-10","ministryContact":"LOWE NICHOLE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2019-08-02","completed":"2020-04-12","initiated":"2019-05-07","ministryContact":"MCGLYNN ELNA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2015-10-02","completed":"2015-04-18","initiated":"2018-12-27","ministryContact":"WISOKY JESSICA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2020-02-05","completed":"2015-08-18","initiated":"2016-10-14","ministryContact":"BARTOLETTI BERRY","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":true}],"participants":[{"name":"IPSUM","endDate":"2015-04-20","startDate":"2015-05-02","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"AMET, DOLOR SIT","endDate":"2016-04-02","startDate":"2017-09-20","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","endDate":"2022-07-27","startDate":"2023-08-07","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2023-06-17","startDate":"2021-08-16","notes":"","roles":["EMPLOYEE"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2021-08-14","notes":"","parcelID":"16512","siteID":"17976","siteRegistry":false},{"dateNoted":"2021-09-08","notes":"","parcelID":"19062","siteID":"16736","siteRegistry":false},{"dateNoted":"2023-05-12","notes":"","parcelID":"18819","siteID":"16796","siteRegistry":false}]},{"uuid":"ac98af65-1856-4bbe-a7ae-482c9278a5fd","siteID":16645,"address":"73049 Schuppe Way","latitude":58.5829,"longitude":-118.4279,"lastUpdated":"2022-07-19","city":"East Melyna","region":"Mainland/Southwest","victoriaFile":"26250-20/17562","regionalFile":"N/A","parcelIDs":[7591823,6150873,3479934,3960143,9768092],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2021-11-12","completed":"2022-02-22","initiated":"2020-06-30","ministryContact":"WIZA LUTHER","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2014-11-05","completed":"2015-07-05","initiated":"2014-05-25","ministryContact":"WYMAN ROWAN","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":true}],"participants":[{"name":"SHELL CANADA PRODUCTS","endDate":"2017-03-01","startDate":"2017-10-18","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2014-12-05","startDate":"2014-06-02","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"AMET, DOLOR SIT","endDate":"2014-06-26","startDate":"2020-01-17","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2016-12-05","startDate":"2020-10-06","notes":"","roles":["EMPLOYEE"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2018-01-08","notes":"","parcelID":"18862","siteID":"15892","siteRegistry":true}]},{"uuid":"7cc56bac-dc2e-421b-9e1b-2a4a0be4367c","siteID":18550,"address":"3747 Nona Fords","latitude":57.0483,"longitude":-128.0366,"lastUpdated":"2020-11-17","city":"Connellychester","region":"Vancouver Island/Coast","victoriaFile":"26250-20/7749","regionalFile":"N/A","parcelIDs":[6918629,6015055,1024912,5430800,2112744],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2016-11-21","completed":"2015-10-27","initiated":"2019-06-17","ministryContact":"HESSEL JERRY","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2020-09-13","completed":"2019-03-19","initiated":"2021-05-16","ministryContact":"LANGOSH CAROL","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2014-04-13","completed":"2017-02-21","initiated":"2019-12-03","ministryContact":"DOYLE ARVID","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2020-06-07","completed":"2017-02-19","initiated":"2022-05-06","ministryContact":"LITTEL DAVID","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":false}],"participants":[{"name":"AMET, DOLOR SIT","endDate":"2018-01-14","startDate":"2015-10-16","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"AMET, DOLOR SIT","endDate":"2021-07-05","startDate":"2016-08-29","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"IPSUM","endDate":"2013-12-26","startDate":"2018-06-12","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2022-12-22","startDate":"2023-02-05","notes":"","roles":["ORGANIZATION"],"siteRegistry":false}],"associatedSites":[{"dateNoted":"2022-03-27","notes":"","parcelID":"20501","siteID":"19087","siteRegistry":false},{"dateNoted":"2022-07-04","notes":"","parcelID":"17018","siteID":"20366","siteRegistry":false},{"dateNoted":"2022-01-05","notes":"","parcelID":"20213","siteID":"17151","siteRegistry":true}]},{"uuid":"51ae7522-ced7-4132-a7be-a069fc88e1d7","siteID":18162,"address":"281 Huel Via","latitude":48.8619,"longitude":-138.1775,"lastUpdated":"2018-11-15","city":"East Lansing","region":"Cariboo","victoriaFile":"26250-20/6930","regionalFile":"N/A","parcelIDs":[7417203,8372755,9576252,6480937,9925658],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2021-08-12","completed":"2019-07-22","initiated":"2022-10-14","ministryContact":"MARQUARDT DAYNE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2015-05-29","completed":"2016-06-20","initiated":"2020-09-04","ministryContact":"SCHULIST CAESAR","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":false}],"participants":[{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2023-09-16","startDate":"2016-08-29","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"IPSUM","endDate":"2021-12-17","startDate":"2018-10-15","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","endDate":"2017-08-18","startDate":"2023-07-06","notes":"","roles":["ORGANIZATION"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2018-10-13","notes":"","parcelID":"16307","siteID":"18695","siteRegistry":true}]},{"uuid":"ff42f458-ce52-4d61-ad7f-2e285a46baff","siteID":17783,"address":"932 Gottlieb Plains","latitude":50.4385,"longitude":-123.1735,"lastUpdated":"2023-04-02","city":"Lake Leonardo","region":"Vancouver Island/Coast","victoriaFile":"26250-20/731","regionalFile":"N/A","parcelIDs":[6749099,6796553,8055378,8712059,5490455],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2022-12-11","completed":"2019-07-10","initiated":"2018-12-22","ministryContact":"FRIESEN SHAD","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2021-02-07","completed":"2020-01-08","initiated":"2023-09-02","ministryContact":"STOLTENBERG-MOHR KITTY","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2014-09-30","completed":"2023-08-13","initiated":"2015-01-19","ministryContact":"BRAKUS GERARDO","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2014-09-28","completed":"2023-06-18","initiated":"2016-11-14","ministryContact":"HANE LUE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":false}],"participants":[{"name":"SHELL CANADA PRODUCTS","endDate":"2015-04-01","startDate":"2020-05-27","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","endDate":"2023-01-18","startDate":"2014-03-14","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","endDate":"2015-09-10","startDate":"2018-11-03","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","endDate":"2022-11-01","startDate":"2022-01-10","notes":"","roles":["EMPLOYEE"],"siteRegistry":false}],"associatedSites":[{"dateNoted":"2015-12-26","notes":"","parcelID":"16031","siteID":"18368","siteRegistry":false},{"dateNoted":"2020-09-20","notes":"","parcelID":"16186","siteID":"19796","siteRegistry":true}]},{"uuid":"a80ee123-8013-4eda-ad20-2955d6073694","siteID":18517,"address":"110 Hayes Branch","latitude":56.5571,"longitude":-125.1135,"lastUpdated":"2014-05-31","city":"Des Plaines","region":" North Coast","victoriaFile":"26250-20/830","regionalFile":"N/A","parcelIDs":[9219160,7412793,7003059,4484212,1721328],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2017-03-05","completed":"2023-09-29","initiated":"2021-03-09","ministryContact":"DARE-ARMSTRONG JALEEL","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2017-07-11","completed":"2023-05-29","initiated":"2022-10-09","ministryContact":"TREMBLAY JOHN","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2015-01-23","completed":"2015-08-21","initiated":"2020-10-14","ministryContact":"FEIL ISAI","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2021-04-17","completed":"2023-02-27","initiated":"2019-07-02","ministryContact":"ROHAN DERON","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false}],"participants":[{"name":"SHELL CANADA PRODUCTS","endDate":"2015-04-22","startDate":"2021-06-25","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"AMET, DOLOR SIT","endDate":"2020-02-08","startDate":"2019-01-27","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","endDate":"2015-07-22","startDate":"2016-02-24","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"IPSUM","endDate":"2018-04-30","startDate":"2015-08-02","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"IPSUM","endDate":"2017-04-08","startDate":"2015-06-07","notes":"","roles":["EMPLOYEE"],"siteRegistry":false}],"associatedSites":[{"dateNoted":"2013-11-26","notes":"","parcelID":"19642","siteID":"19048","siteRegistry":true},{"dateNoted":"2017-07-21","notes":"","parcelID":"15585","siteID":"15361","siteRegistry":false}]},{"uuid":"5cd61a59-d6fa-4158-be68-83808a0790d5","siteID":16272,"address":"57618 Meredith Shores","latitude":55.8684,"longitude":-129.8964,"lastUpdated":"2017-07-31","city":"Justicecester","region":"Thompson-Okanagan","victoriaFile":"26250-20/6288","regionalFile":"N/A","parcelIDs":[3914481,3022817,8696707,7217233,7091490],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2023-09-28","completed":"2019-05-31","initiated":"2016-01-24","ministryContact":"HANSEN DORA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2021-04-27","completed":"2018-07-31","initiated":"2015-06-16","ministryContact":"HILLS JAYLEN","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2019-09-03","completed":"2016-06-22","initiated":"2022-11-13","ministryContact":"FRAMI DEJUAN","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2019-01-14","completed":"2021-02-16","initiated":"2023-03-29","ministryContact":"DAVIS-LITTLE JODY","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2019-01-09","completed":"2023-07-11","initiated":"2020-01-02","ministryContact":"CONROY MELYSSA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false}],"participants":[{"name":"AMET, DOLOR SIT","endDate":"2023-07-14","startDate":"2015-05-17","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2016-06-06","startDate":"2019-08-13","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2018-12-28","startDate":"2021-11-02","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"IPSUM","endDate":"2021-03-31","startDate":"2018-12-16","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"IPSUM","endDate":"2016-12-17","startDate":"2018-12-29","notes":"","roles":["EMPLOYEE"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2017-01-29","notes":"","parcelID":"20609","siteID":"15917","siteRegistry":true},{"dateNoted":"2016-01-19","notes":"","parcelID":"20590","siteID":"18652","siteRegistry":true},{"dateNoted":"2020-03-20","notes":"","parcelID":"18067","siteID":"20614","siteRegistry":false}]},{"uuid":"5a2f75e8-0068-4b96-ae9f-013f2465eaf2","siteID":16151,"address":"344 Laurianne Groves","latitude":56.454,"longitude":-119.0864,"lastUpdated":"2013-12-21","city":"Sarasota","region":"Thompson-Okanagan","victoriaFile":"26250-20/17992","regionalFile":"N/A","parcelIDs":[2286286,4997866,6519356,688451,8984948],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2019-11-19","completed":"2019-12-10","initiated":"2016-08-15","ministryContact":"CRIST OLAF","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2019-03-18","completed":"2017-01-10","initiated":"2017-05-20","ministryContact":"KREIGER OTTO","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2014-05-08","completed":"2015-07-29","initiated":"2017-03-19","ministryContact":"HEATHCOTE MAIA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2019-04-13","completed":"2021-09-04","initiated":"2021-06-14","ministryContact":"WATERS LAWSON","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2020-05-02","completed":"2022-12-09","initiated":"2022-04-10","ministryContact":"PARKER LANCE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":true}],"participants":[{"name":"IPSUM","endDate":"2022-10-04","startDate":"2016-03-16","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"AMET, DOLOR SIT","endDate":"2018-11-19","startDate":"2015-03-03","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2021-09-13","startDate":"2016-08-22","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2015-06-28","startDate":"2023-03-19","notes":"","roles":["ORGANIZATION"],"siteRegistry":false}],"associatedSites":[{"dateNoted":"2020-12-26","notes":"","parcelID":"15459","siteID":"15653","siteRegistry":true}]},{"uuid":"8e3d3b0f-4104-4db6-ba50-08d02b6b4114","siteID":16986,"address":"2915 Susana Islands","latitude":54.1059,"longitude":-126.6917,"lastUpdated":"2019-09-12","city":"West Abner","region":"Thompson-Okanagan","victoriaFile":"26250-20/2646","regionalFile":"N/A","parcelIDs":[8626352,4507356,7123068,9255723,3923623],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2020-11-16","completed":"2018-08-05","initiated":"2018-03-27","ministryContact":"GLEASON GABRIELLE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2014-08-28","completed":"2018-10-23","initiated":"2015-08-13","ministryContact":"MORISSETTE MARKUS","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2021-04-04","completed":"2019-09-24","initiated":"2020-09-30","ministryContact":"COLLIER MAIA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":false}],"participants":[{"name":"AMET, DOLOR SIT","endDate":"2015-06-09","startDate":"2017-09-18","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"AMET, DOLOR SIT","endDate":"2014-08-26","startDate":"2023-02-11","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","endDate":"2018-06-11","startDate":"2021-07-07","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2014-06-22","startDate":"2015-10-13","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"IPSUM","endDate":"2015-11-12","startDate":"2020-10-28","notes":"","roles":["ORGANIZATION"],"siteRegistry":false}],"associatedSites":[{"dateNoted":"2023-05-27","notes":"","parcelID":"19352","siteID":"16814","siteRegistry":true},{"dateNoted":"2014-06-01","notes":"","parcelID":"17872","siteID":"17561","siteRegistry":true},{"dateNoted":"2020-03-17","notes":"","parcelID":"16160","siteID":"15443","siteRegistry":false}]},{"uuid":"597551c6-ad26-4b5e-8b17-4de3e2afb7e2","siteID":20517,"address":"672 Eda Mission","latitude":54.103,"longitude":-130.2468,"lastUpdated":"2021-10-31","city":"West Bobbie","region":"Kootenay","victoriaFile":"26250-20/13394","regionalFile":"N/A","parcelIDs":[1139724,9799529,2735581,1661611,1527164],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2016-04-30","completed":"2021-05-12","initiated":"2014-06-27","ministryContact":"VEUM MERLE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2016-08-28","completed":"2014-04-08","initiated":"2017-08-06","ministryContact":"EMMERICH KEYSHAWN","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2016-09-22","completed":"2023-07-13","initiated":"2015-07-20","ministryContact":"GULGOWSKI OSWALDO","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2023-07-20","completed":"2020-07-03","initiated":"2022-05-24","ministryContact":"HARRIS DESSIE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":false}],"participants":[{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2018-01-11","startDate":"2023-09-16","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"AMET, DOLOR SIT","endDate":"2015-12-28","startDate":"2022-02-11","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","endDate":"2017-10-01","startDate":"2013-12-01","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","endDate":"2021-11-23","startDate":"2018-11-14","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","endDate":"2017-12-16","startDate":"2017-01-05","notes":"","roles":["ORGANIZATION"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2017-12-17","notes":"","parcelID":"17476","siteID":"18753","siteRegistry":true}]},{"uuid":"64e0967f-c03c-4eec-975a-a4b5c5b9e79e","siteID":18652,"address":"897 Jimmy Locks","latitude":56.4339,"longitude":-123.9765,"lastUpdated":"2019-08-30","city":"New Ayden","region":"Mainland/Southwest","victoriaFile":"26250-20/15259","regionalFile":"N/A","parcelIDs":[1280839,2548292,368425,4716930,5127896],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2016-10-25","completed":"2022-02-20","initiated":"2014-01-06","ministryContact":"ROMAGUERA LULA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2020-03-17","completed":"2015-02-23","initiated":"2018-05-23","ministryContact":"LITTLE MARQUIS","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2015-02-27","completed":"2020-08-28","initiated":"2019-08-12","ministryContact":"HOPPE-CORKERY EDGAR","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2019-11-12","completed":"2021-06-22","initiated":"2017-05-03","ministryContact":"RITCHIE GEO","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":true}],"participants":[{"name":"AMET, DOLOR SIT","endDate":"2019-12-26","startDate":"2023-09-11","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","endDate":"2016-05-15","startDate":"2021-02-28","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"IPSUM","endDate":"2017-06-15","startDate":"2013-12-10","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"IPSUM","endDate":"2018-03-28","startDate":"2016-04-29","notes":"","roles":["ORGANIZATION"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2018-05-26","notes":"","parcelID":"18765","siteID":"19314","siteRegistry":false}]},{"uuid":"c4bade3a-a4a6-40a6-9d20-b24714789fda","siteID":20223,"address":"55795 Martina Harbor","latitude":54.2217,"longitude":-129.856,"lastUpdated":"2022-02-03","city":"Virginia Beach","region":"Mainland/Southwest","victoriaFile":"26250-20/15570","regionalFile":"N/A","parcelIDs":[9524181,5327206,6235025,8439421,303716],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2013-10-23","completed":"2018-08-21","initiated":"2018-06-01","ministryContact":"RITCHIE STEVE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2015-11-10","completed":"2023-02-12","initiated":"2017-06-06","ministryContact":"DICKINSON TERRY","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":false}],"participants":[{"name":"AMET, DOLOR SIT","endDate":"2023-09-02","startDate":"2015-07-23","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"IPSUM","endDate":"2017-07-03","startDate":"2017-08-06","notes":"","roles":["ORGANIZATION"],"siteRegistry":false}],"associatedSites":[{"dateNoted":"2014-03-24","notes":"","parcelID":"17437","siteID":"20692","siteRegistry":false},{"dateNoted":"2018-09-14","notes":"","parcelID":"19597","siteID":"18528","siteRegistry":true}]},{"uuid":"fefcaef8-7071-4766-9b95-69f5dc076816","siteID":17412,"address":"56355 Mertie Summit","latitude":55.6813,"longitude":-128.5863,"lastUpdated":"2020-01-29","city":"Lueland","region":"Kootenay","victoriaFile":"26250-20/10479","regionalFile":"N/A","parcelIDs":[2758937,5162357,3736750,2791670,1901387],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2019-11-11","completed":"2018-01-09","initiated":"2018-05-04","ministryContact":"TRANTOW KENNEDY","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2023-07-25","completed":"2017-08-07","initiated":"2018-04-25","ministryContact":"STREICH ALANNA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":false}],"participants":[{"name":"SHELL CANADA PRODUCTS","endDate":"2014-05-26","startDate":"2019-07-31","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"AMET, DOLOR SIT","endDate":"2021-04-17","startDate":"2018-01-11","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","endDate":"2013-10-09","startDate":"2016-03-22","notes":"","roles":["EMPLOYEE"],"siteRegistry":false}],"associatedSites":[{"dateNoted":"2016-04-14","notes":"","parcelID":"20686","siteID":"15273","siteRegistry":true},{"dateNoted":"2022-11-26","notes":"","parcelID":"20551","siteID":"18274","siteRegistry":false},{"dateNoted":"2022-04-05","notes":"","parcelID":"18322","siteID":"17151","siteRegistry":true}]},{"uuid":"2a1b2c4b-37e1-4f63-bf93-3230e0705ffa","siteID":17561,"address":"139 Abelardo Valleys","latitude":49.2302,"longitude":-133.2327,"lastUpdated":"2021-09-13","city":"Donnyside","region":"Thompson-Okanagan","victoriaFile":"26250-20/14591","regionalFile":"N/A","parcelIDs":[891982,7917664,5529895,5249429,3952803],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2021-02-13","completed":"2020-03-23","initiated":"2019-06-21","ministryContact":"BEAHAN MARJOLAINE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2016-03-15","completed":"2019-02-16","initiated":"2020-10-04","ministryContact":"HODKIEWICZ ARNALDO","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2015-08-06","completed":"2013-11-10","initiated":"2015-08-30","ministryContact":"HODKIEWICZ CORA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2020-09-05","completed":"2014-05-27","initiated":"2021-01-28","ministryContact":"MCKENZIE KELTON","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false}],"participants":[{"name":"AMET, DOLOR SIT","endDate":"2022-01-26","startDate":"2017-12-21","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"IPSUM","endDate":"2014-12-17","startDate":"2017-04-20","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"AMET, DOLOR SIT","endDate":"2016-06-17","startDate":"2022-04-23","notes":"","roles":["EMPLOYEE"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2016-11-20","notes":"","parcelID":"17665","siteID":"19854","siteRegistry":true},{"dateNoted":"2022-10-17","notes":"","parcelID":"19629","siteID":"15577","siteRegistry":false},{"dateNoted":"2016-11-21","notes":"","parcelID":"19324","siteID":"17036","siteRegistry":true}]},{"uuid":"41408ef0-dc4b-4703-8206-af38b0d28f1f","siteID":17164,"address":"1934 Abel Light","latitude":54.2901,"longitude":-127.9394,"lastUpdated":"2020-02-28","city":"Fort Lamarfurt","region":"Thompson-Okanagan","victoriaFile":"26250-20/16622","regionalFile":"N/A","parcelIDs":[1731151,6955204,3342106,4929251,4825325],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2019-07-04","completed":"2020-08-02","initiated":"2017-04-16","ministryContact":"ARMSTRONG-MEDHURST JO","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2020-01-22","completed":"2022-01-04","initiated":"2014-08-01","ministryContact":"JONES LIBBY","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false}],"participants":[{"name":"AMET, DOLOR SIT","endDate":"2017-06-03","startDate":"2017-06-13","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2015-07-02","startDate":"2016-06-09","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","endDate":"2019-02-13","startDate":"2019-09-23","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","endDate":"2019-02-22","startDate":"2014-10-28","notes":"","roles":["EMPLOYEE"],"siteRegistry":false}],"associatedSites":[{"dateNoted":"2016-05-03","notes":"","parcelID":"18299","siteID":"17317","siteRegistry":false},{"dateNoted":"2021-12-01","notes":"","parcelID":"17593","siteID":"19092","siteRegistry":true}]},{"uuid":"a540aa5d-92e1-43d8-8c88-853d13c79647","siteID":17322,"address":"56826 Jeffry Path","latitude":58.8625,"longitude":-135.1038,"lastUpdated":"2021-02-02","city":"Noblesville","region":"Thompson-Okanagan","victoriaFile":"26250-20/18651","regionalFile":"N/A","parcelIDs":[6545626,4726093,5322043,9113661,1894520],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2018-03-10","completed":"2017-11-10","initiated":"2019-05-14","ministryContact":"BROWN KHALIL","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2023-07-17","completed":"2021-10-10","initiated":"2013-10-14","ministryContact":"BARTOLETTI GRANVILLE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2018-11-17","completed":"2014-03-26","initiated":"2022-04-25","ministryContact":"KRAJCIK NATHEN","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2021-09-08","completed":"2017-07-07","initiated":"2023-01-04","ministryContact":"SPENCER RAY","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2013-10-27","completed":"2023-04-27","initiated":"2016-06-21","ministryContact":"BECHTELAR NORA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":false}],"participants":[{"name":"IPSUM","endDate":"2015-08-27","startDate":"2021-05-06","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2020-11-18","startDate":"2015-11-05","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","endDate":"2017-01-28","startDate":"2021-11-20","notes":"","roles":["EMPLOYEE"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2020-07-02","notes":"","parcelID":"20566","siteID":"15212","siteRegistry":false},{"dateNoted":"2016-05-31","notes":"","parcelID":"17256","siteID":"19457","siteRegistry":false}]},{"uuid":"790b3fc9-668c-48eb-bdd3-721c0a526c65","siteID":16487,"address":"704 Gina Avenue","latitude":54.1093,"longitude":-131.7961,"lastUpdated":"2022-01-01","city":"Kannapolis","region":"Vancouver Island/Coast","victoriaFile":"26250-20/4907","regionalFile":"N/A","parcelIDs":[2021547,3584107,9244753,8659329,7512143],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2016-12-26","completed":"2015-02-21","initiated":"2014-12-31","ministryContact":"OLSON LEXI","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2018-01-01","completed":"2016-02-10","initiated":"2019-10-06","ministryContact":"D'AMORE JEREMY","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2017-12-06","completed":"2020-01-18","initiated":"2014-05-19","ministryContact":"BERNIER GRANVILLE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":false}],"participants":[{"name":"SHELL CANADA PRODUCTS","endDate":"2021-10-07","startDate":"2015-02-10","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"AMET, DOLOR SIT","endDate":"2023-07-07","startDate":"2020-03-30","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2015-01-17","startDate":"2017-12-28","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"AMET, DOLOR SIT","endDate":"2020-10-26","startDate":"2016-07-26","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2021-09-04","startDate":"2015-02-09","notes":"","roles":["ORGANIZATION"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2021-11-15","notes":"","parcelID":"18411","siteID":"15375","siteRegistry":false},{"dateNoted":"2022-11-16","notes":"","parcelID":"20896","siteID":"17180","siteRegistry":false},{"dateNoted":"2015-12-15","notes":"","parcelID":"17879","siteID":"19728","siteRegistry":false}]},{"uuid":"d1c1687b-4700-488d-ae1e-39926baaad06","siteID":15775,"address":"214 Bret Ways","latitude":51.1366,"longitude":-132.4484,"lastUpdated":"2017-09-08","city":"Kennaboro","region":"Vancouver Island/Coast","victoriaFile":"26250-20/13621","regionalFile":"N/A","parcelIDs":[1319317,7440319,603380,4097870,9675862],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2017-12-08","completed":"2017-04-17","initiated":"2022-12-21","ministryContact":"FRANEY ROY","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2017-02-21","completed":"2022-12-20","initiated":"2022-03-16","ministryContact":"SENGER OSWALD","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":false}],"participants":[{"name":"IPSUM","endDate":"2022-08-04","startDate":"2021-07-26","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","endDate":"2021-03-04","startDate":"2014-03-25","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","endDate":"2021-02-06","startDate":"2021-07-24","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"IPSUM","endDate":"2016-01-09","startDate":"2017-10-15","notes":"","roles":["EMPLOYEE"],"siteRegistry":false}],"associatedSites":[{"dateNoted":"2015-02-17","notes":"","parcelID":"18238","siteID":"15919","siteRegistry":true}]},{"uuid":"f2d07011-6abd-419c-bdb5-44a19807fb83","siteID":19092,"address":"756 Ratke Hills","latitude":54.3936,"longitude":-131.5761,"lastUpdated":"2015-09-11","city":"North Eusebio","region":"Thompson-Okanagan","victoriaFile":"26250-20/3265","regionalFile":"N/A","parcelIDs":[6192270,3846388,8602072,8036326,9693418],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2015-03-17","completed":"2014-10-21","initiated":"2018-10-07","ministryContact":"GERHOLD WANDA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2016-11-29","completed":"2018-03-29","initiated":"2017-03-28","ministryContact":"HOPPE KENTON","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2018-06-11","completed":"2016-07-02","initiated":"2022-06-04","ministryContact":"DIBBERT ROBIN","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2020-02-23","completed":"2022-06-02","initiated":"2015-05-13","ministryContact":"LABADIE LAVADA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2019-07-05","completed":"2020-05-03","initiated":"2017-02-07","ministryContact":"LARKIN ALISHA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":true}],"participants":[{"name":"IPSUM","endDate":"2017-11-09","startDate":"2023-05-13","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","endDate":"2021-06-30","startDate":"2014-02-28","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"AMET, DOLOR SIT","endDate":"2022-07-04","startDate":"2016-07-17","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"IPSUM","endDate":"2014-12-23","startDate":"2017-08-19","notes":"","roles":["EMPLOYEE"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2022-09-24","notes":"","parcelID":"20151","siteID":"18771","siteRegistry":false}]},{"uuid":"12fe2001-3c28-4cd6-abd0-05e979c25430","siteID":18528,"address":"67153 Leonel Meadows","latitude":54.3645,"longitude":-123.1792,"lastUpdated":"2021-04-11","city":"Dockstead","region":"Mainland/Southwest","victoriaFile":"26250-20/7833","regionalFile":"N/A","parcelIDs":[5137809,5877336,2673564,7821967,9276244],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2023-03-15","completed":"2018-01-09","initiated":"2019-12-11","ministryContact":"KOZEY TIANA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2014-09-26","completed":"2016-02-24","initiated":"2023-05-29","ministryContact":"REMPEL KALEY","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2022-01-31","completed":"2020-12-31","initiated":"2022-04-12","ministryContact":"JONES BAYLEE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2020-03-21","completed":"2013-10-20","initiated":"2021-08-07","ministryContact":"GRANT DAMIAN","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2021-02-21","completed":"2018-10-23","initiated":"2021-06-01","ministryContact":"MCKENZIE CHELSIE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":true}],"participants":[{"name":"AMET, DOLOR SIT","endDate":"2020-07-15","startDate":"2014-06-04","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"IPSUM","endDate":"2017-07-08","startDate":"2014-09-26","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"IPSUM","endDate":"2019-03-16","startDate":"2014-03-10","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2023-08-11","startDate":"2019-06-10","notes":"","roles":["EMPLOYEE"],"siteRegistry":false}],"associatedSites":[{"dateNoted":"2013-10-18","notes":"","parcelID":"19180","siteID":"15666","siteRegistry":false},{"dateNoted":"2016-04-30","notes":"","parcelID":"16115","siteID":"19837","siteRegistry":true},{"dateNoted":"2018-12-25","notes":"","parcelID":"17111","siteID":"19536","siteRegistry":false}]},{"uuid":"e0b39f0a-8d46-4ed9-8961-e6fe6bcdba05","siteID":19550,"address":"96242 Mohamed Brooks","latitude":49.848,"longitude":-130.2878,"lastUpdated":"2020-08-07","city":"Lindsayview","region":" North Coast","victoriaFile":"26250-20/19390","regionalFile":"N/A","parcelIDs":[1229483,2922774,8214940,7632063,8719043],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2016-03-28","completed":"2019-06-14","initiated":"2023-07-12","ministryContact":"LAKIN ALVERTA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2017-11-27","completed":"2014-01-12","initiated":"2016-05-02","ministryContact":"FAHEY CHESLEY","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2015-11-09","completed":"2020-06-19","initiated":"2017-08-27","ministryContact":"O'HARA TAD","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":false}],"participants":[{"name":"IPSUM","endDate":"2016-01-27","startDate":"2017-03-27","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","endDate":"2020-08-18","startDate":"2020-06-28","notes":"","roles":["EMPLOYEE"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2020-08-11","notes":"","parcelID":"19501","siteID":"20947","siteRegistry":false},{"dateNoted":"2014-01-03","notes":"","parcelID":"16074","siteID":"19773","siteRegistry":false},{"dateNoted":"2014-02-10","notes":"","parcelID":"16913","siteID":"18497","siteRegistry":false}]},{"uuid":"ac395d3d-e3a4-44f1-a8b6-d7ca2b8ec303","siteID":19005,"address":"443 Ondricka Forks","latitude":49.2118,"longitude":-133.1714,"lastUpdated":"2023-07-02","city":"Douglasworth","region":"Thompson-Okanagan","victoriaFile":"26250-20/8656","regionalFile":"N/A","parcelIDs":[3477288,731906,1133215,845320,3261403],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2022-08-07","completed":"2017-02-20","initiated":"2017-07-07","ministryContact":"BAILEY-MCKENZIE BRIDIE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2014-05-30","completed":"2023-05-19","initiated":"2015-04-11","ministryContact":"BRADTKE FAE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2018-09-30","completed":"2017-10-23","initiated":"2022-10-31","ministryContact":"ANDERSON HELEN","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2021-06-06","completed":"2019-04-23","initiated":"2015-03-12","ministryContact":"GERHOLD ANTONETTE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false}],"participants":[{"name":"IPSUM","endDate":"2016-06-21","startDate":"2017-12-05","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","endDate":"2018-01-20","startDate":"2016-03-03","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","endDate":"2014-01-19","startDate":"2016-05-16","notes":"","roles":["ORGANIZATION"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2018-05-09","notes":"","parcelID":"20370","siteID":"19391","siteRegistry":true},{"dateNoted":"2017-06-03","notes":"","parcelID":"20115","siteID":"19075","siteRegistry":false},{"dateNoted":"2021-02-23","notes":"","parcelID":"17340","siteID":"19550","siteRegistry":true}]},{"uuid":"c925aef6-ee3c-4ebd-86a9-3037efa59f1d","siteID":20017,"address":"6596 Predovic Mission","latitude":57.3614,"longitude":-138.4773,"lastUpdated":"2016-12-25","city":"West Dionport","region":" North Coast","victoriaFile":"26250-20/3709","regionalFile":"N/A","parcelIDs":[6111231,1324376,1316387,3446948,1371821],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2022-05-10","completed":"2015-12-30","initiated":"2017-02-09","ministryContact":"BALISTRERI EMERALD","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2018-11-05","completed":"2022-03-15","initiated":"2022-02-09","ministryContact":"RUECKER RENE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2019-08-01","completed":"2015-10-07","initiated":"2015-08-30","ministryContact":"KIHN ROSALIA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":true}],"participants":[{"name":"IPSUM","endDate":"2019-05-27","startDate":"2021-05-04","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2020-10-13","startDate":"2020-07-24","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"AMET, DOLOR SIT","endDate":"2019-06-10","startDate":"2015-09-24","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"AMET, DOLOR SIT","endDate":"2016-12-10","startDate":"2023-03-30","notes":"","roles":["EMPLOYEE"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2022-03-21","notes":"","parcelID":"20153","siteID":"20758","siteRegistry":false},{"dateNoted":"2015-04-04","notes":"","parcelID":"16585","siteID":"15822","siteRegistry":false}]},{"uuid":"69c06182-5465-4d01-8df1-39997f548195","siteID":15351,"address":"60465 Jeromy Rapids","latitude":50.7385,"longitude":-137.2814,"lastUpdated":"2020-10-01","city":"Emersonborough","region":"Vancouver Island/Coast","victoriaFile":"26250-20/8018","regionalFile":"N/A","parcelIDs":[8771897,7252359,7926200,9971863,1736500],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2018-11-06","completed":"2021-05-30","initiated":"2014-01-13","ministryContact":"PADBERG CAITLYN","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2020-05-31","completed":"2021-07-25","initiated":"2016-03-05","ministryContact":"ROGAHN TAMIA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2019-05-31","completed":"2023-01-24","initiated":"2015-04-04","ministryContact":"KREIGER ANTONE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2022-07-04","completed":"2022-11-12","initiated":"2022-03-21","ministryContact":"SANFORD ADELIA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":false}],"participants":[{"name":"SHELL CANADA PRODUCTS","endDate":"2020-03-23","startDate":"2014-05-27","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"AMET, DOLOR SIT","endDate":"2018-06-09","startDate":"2016-12-07","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"AMET, DOLOR SIT","endDate":"2018-07-07","startDate":"2018-02-19","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"AMET, DOLOR SIT","endDate":"2018-08-09","startDate":"2014-11-22","notes":"","roles":["EMPLOYEE"],"siteRegistry":false}],"associatedSites":[{"dateNoted":"2015-12-31","notes":"","parcelID":"17269","siteID":"20717","siteRegistry":true},{"dateNoted":"2023-06-30","notes":"","parcelID":"16559","siteID":"15222","siteRegistry":true}]},{"uuid":"e2d3fe38-de90-4e13-aab5-0a7ad70f0af3","siteID":18049,"address":"9839 Bins Corner","latitude":57.9594,"longitude":-118.2171,"lastUpdated":"2023-03-17","city":"East Freddie","region":"Mainland/Southwest","victoriaFile":"26250-20/6847","regionalFile":"N/A","parcelIDs":[468392,6423278,9968335,2105040,3469057],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2016-07-14","completed":"2021-02-23","initiated":"2015-10-29","ministryContact":"RUECKER-O'REILLY ZACHARIAH","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2020-06-29","completed":"2014-09-06","initiated":"2017-11-10","ministryContact":"PROHASKA STEFANIE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2017-06-25","completed":"2015-04-09","initiated":"2018-05-18","ministryContact":"SCHUPPE ELLIOT","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2016-07-31","completed":"2022-07-12","initiated":"2021-08-03","ministryContact":"BOTSFORD SHANNA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2023-01-16","completed":"2022-08-15","initiated":"2022-10-14","ministryContact":"ULLRICH BRANDO","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":true}],"participants":[{"name":"SHELL CANADA PRODUCTS","endDate":"2018-04-26","startDate":"2015-03-02","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","endDate":"2023-03-20","startDate":"2014-01-19","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"AMET, DOLOR SIT","endDate":"2014-09-17","startDate":"2014-12-13","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2020-05-10","startDate":"2019-03-21","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"IPSUM","endDate":"2023-07-22","startDate":"2020-02-26","notes":"","roles":["EMPLOYEE"],"siteRegistry":false}],"associatedSites":[{"dateNoted":"2020-11-02","notes":"","parcelID":"16593","siteID":"20858","siteRegistry":true},{"dateNoted":"2020-06-04","notes":"","parcelID":"16845","siteID":"18274","siteRegistry":true},{"dateNoted":"2020-09-06","notes":"","parcelID":"20801","siteID":"16557","siteRegistry":false}]},{"uuid":"4ce06820-1940-4419-a6b7-51efb308080f","siteID":17976,"address":"3093 Nolan Harbors","latitude":58.0529,"longitude":-121.2204,"lastUpdated":"2021-01-08","city":"Grand Junction","region":" North Coast","victoriaFile":"26250-20/13526","regionalFile":"N/A","parcelIDs":[6775251,2867852,9805359,5801175,747986],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2021-08-15","completed":"2017-01-09","initiated":"2017-10-19","ministryContact":"SCHOEN ALEJANDRIN","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2018-06-16","completed":"2014-06-30","initiated":"2014-04-12","ministryContact":"DOYLE GIOVANNY","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2020-02-04","completed":"2022-02-02","initiated":"2019-10-11","ministryContact":"SCHROEDER DANE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":false}],"participants":[{"name":"AMET, DOLOR SIT","endDate":"2015-07-14","startDate":"2017-05-19","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"IPSUM","endDate":"2022-03-16","startDate":"2021-03-09","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","endDate":"2021-04-07","startDate":"2019-08-17","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2014-08-13","startDate":"2017-10-30","notes":"","roles":["ORGANIZATION"],"siteRegistry":false}],"associatedSites":[{"dateNoted":"2017-06-08","notes":"","parcelID":"20777","siteID":"15792","siteRegistry":false},{"dateNoted":"2017-06-21","notes":"","parcelID":"19972","siteID":"18319","siteRegistry":true}]},{"uuid":"6a244184-0958-4ce6-a5b7-1e4fdae22250","siteID":19903,"address":"1531 Tabitha Dale","latitude":57.3701,"longitude":-124.6439,"lastUpdated":"2022-08-21","city":"East Jedport","region":"Vancouver Island/Coast","victoriaFile":"26250-20/12472","regionalFile":"N/A","parcelIDs":[4150698,2863005,3567150,1064934,7343086],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2019-05-29","completed":"2019-04-20","initiated":"2021-05-18","ministryContact":"MCGLYNN ALVAH","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2021-08-25","completed":"2022-01-03","initiated":"2015-04-25","ministryContact":"CUMMINGS AMELIA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2023-06-12","completed":"2016-08-11","initiated":"2022-02-25","ministryContact":"POWLOWSKI KALLIE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false}],"participants":[{"name":"IPSUM","endDate":"2018-11-06","startDate":"2019-01-30","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"IPSUM","endDate":"2020-04-06","startDate":"2016-02-29","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"IPSUM","endDate":"2018-07-31","startDate":"2016-03-09","notes":"","roles":["EMPLOYEE"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2021-10-01","notes":"","parcelID":"19143","siteID":"19603","siteRegistry":false},{"dateNoted":"2013-10-16","notes":"","parcelID":"18434","siteID":"17448","siteRegistry":false},{"dateNoted":"2023-04-01","notes":"","parcelID":"18652","siteID":"20906","siteRegistry":false}]},{"uuid":"d90387ef-355f-4a2f-b0c9-a136d094b69b","siteID":15577,"address":"2114 Gleichner Row","latitude":50.4037,"longitude":-124.4013,"lastUpdated":"2022-09-03","city":"Cincinnati","region":" North Coast","victoriaFile":"26250-20/8678","regionalFile":"N/A","parcelIDs":[3256572,2301207,3253214,606655,7089078],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2015-09-12","completed":"2021-08-06","initiated":"2016-07-12","ministryContact":"LANG ISRAEL","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2014-06-17","completed":"2017-05-11","initiated":"2020-05-12","ministryContact":"STOKES KAILYN","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2023-07-12","completed":"2022-03-30","initiated":"2018-06-04","ministryContact":"BORER LEXIE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2013-11-11","completed":"2023-08-03","initiated":"2014-04-21","ministryContact":"MCGLYNN RANDALL","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":true}],"participants":[{"name":"AMET, DOLOR SIT","endDate":"2023-02-12","startDate":"2014-06-25","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"IPSUM","endDate":"2016-10-25","startDate":"2016-02-29","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"AMET, DOLOR SIT","endDate":"2021-07-16","startDate":"2014-11-24","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"AMET, DOLOR SIT","endDate":"2022-09-22","startDate":"2014-06-01","notes":"","roles":["EMPLOYEE"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2022-03-29","notes":"","parcelID":"17791","siteID":"15656","siteRegistry":true}]},{"uuid":"ab00ee36-be34-4f10-bfad-89c1432401f3","siteID":17057,"address":"8363 Schiller Field","latitude":48.9741,"longitude":-126.1936,"lastUpdated":"2019-03-22","city":"Majorport","region":"Vancouver Island/Coast","victoriaFile":"26250-20/16414","regionalFile":"N/A","parcelIDs":[8872249,8753663,4001393,5470821,3359035],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2014-09-26","completed":"2013-11-02","initiated":"2021-03-27","ministryContact":"SWIFT DELIA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2015-07-16","completed":"2020-06-01","initiated":"2015-09-07","ministryContact":"WARD HAROLD","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2021-09-07","completed":"2018-05-24","initiated":"2021-03-29","ministryContact":"STAMM RENE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2019-04-25","completed":"2016-09-24","initiated":"2019-01-19","ministryContact":"CRUICKSHANK ERICK","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":false}],"participants":[{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2017-10-13","startDate":"2019-12-23","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","endDate":"2022-07-21","startDate":"2021-02-09","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2015-02-03","startDate":"2020-01-12","notes":"","roles":["EMPLOYEE"],"siteRegistry":false}],"associatedSites":[{"dateNoted":"2019-02-14","notes":"","parcelID":"20081","siteID":"19897","siteRegistry":false},{"dateNoted":"2014-11-27","notes":"","parcelID":"19046","siteID":"19351","siteRegistry":true},{"dateNoted":"2018-08-17","notes":"","parcelID":"20554","siteID":"19039","siteRegistry":true}]},{"uuid":"850851e6-37d2-4a5e-a954-0f450d4e4329","siteID":19037,"address":"48047 Shemar Brook","latitude":54.3772,"longitude":-121.2118,"lastUpdated":"2023-05-30","city":"Schultzberg","region":" North Coast","victoriaFile":"26250-20/18925","regionalFile":"N/A","parcelIDs":[7979273,701794,2969400,7529479,9198961],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2014-01-20","completed":"2021-12-18","initiated":"2019-09-19","ministryContact":"FLATLEY-LEBSACK VERDA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2013-11-18","completed":"2016-06-27","initiated":"2018-11-26","ministryContact":"DACH EVALYN","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2020-05-14","completed":"2022-04-19","initiated":"2022-12-29","ministryContact":"MOEN DREW","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2014-02-02","completed":"2017-05-26","initiated":"2022-04-10","ministryContact":"D'AMORE WILLIS","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":true}],"participants":[{"name":"AMET, DOLOR SIT","endDate":"2016-12-29","startDate":"2017-04-26","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","endDate":"2018-05-19","startDate":"2020-12-30","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2017-03-25","startDate":"2016-06-29","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","endDate":"2020-08-14","startDate":"2023-06-30","notes":"","roles":["ORGANIZATION"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2023-07-06","notes":"","parcelID":"15713","siteID":"18497","siteRegistry":false}]},{"uuid":"3c9a2d33-cf8c-46dd-aad3-285fee3aee2f","siteID":17567,"address":"6875 Javonte Mews","latitude":48.6385,"longitude":-124.1532,"lastUpdated":"2022-02-09","city":"New Graciela","region":"Vancouver Island/Coast","victoriaFile":"26250-20/11223","regionalFile":"N/A","parcelIDs":[6499946,7476585,8975223,176689,1074160],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2021-06-02","completed":"2016-02-01","initiated":"2022-08-01","ministryContact":"BALISTRERI AIDAN","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2018-11-30","completed":"2015-01-29","initiated":"2015-07-08","ministryContact":"BRAKUS EPHRAIM","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2017-09-27","completed":"2022-11-19","initiated":"2018-05-19","ministryContact":"HAGENES VICKIE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":true}],"participants":[{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2022-11-19","startDate":"2020-05-08","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"AMET, DOLOR SIT","endDate":"2018-10-25","startDate":"2015-05-07","notes":"","roles":["ORGANIZATION"],"siteRegistry":false}],"associatedSites":[{"dateNoted":"2020-08-04","notes":"","parcelID":"15405","siteID":"19897","siteRegistry":true},{"dateNoted":"2015-08-31","notes":"","parcelID":"19306","siteID":"18775","siteRegistry":true},{"dateNoted":"2016-11-01","notes":"","parcelID":"18600","siteID":"18047","siteRegistry":false}]},{"uuid":"fb37aab9-9681-46f9-81a2-8aea69e193e5","siteID":19897,"address":"32697 Luettgen Mews","latitude":57.6132,"longitude":-135.4502,"lastUpdated":"2019-02-06","city":"Fort Rachelle","region":"Mainland/Southwest","victoriaFile":"26250-20/8542","regionalFile":"N/A","parcelIDs":[2435849,5928742,6482967,8361599,5689784],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2017-01-26","completed":"2022-10-09","initiated":"2014-08-05","ministryContact":"KOCH TYREL","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2020-07-23","completed":"2014-12-03","initiated":"2019-07-16","ministryContact":"CORMIER NOEMIE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2021-03-31","completed":"2014-11-02","initiated":"2016-11-08","ministryContact":"WEBER EMELIE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2020-10-05","completed":"2019-01-08","initiated":"2021-06-28","ministryContact":"STEUBER ALEXANDREA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2021-10-25","completed":"2016-01-30","initiated":"2019-05-28","ministryContact":"LEHNER ILIANA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":false}],"participants":[{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2020-03-24","startDate":"2015-01-19","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","endDate":"2020-12-22","startDate":"2017-08-23","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"AMET, DOLOR SIT","endDate":"2019-08-25","startDate":"2016-06-08","notes":"","roles":["ORGANIZATION"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2015-02-07","notes":"","parcelID":"19051","siteID":"17976","siteRegistry":false},{"dateNoted":"2018-07-13","notes":"","parcelID":"15677","siteID":"19243","siteRegistry":true},{"dateNoted":"2022-08-06","notes":"","parcelID":"19297","siteID":"15666","siteRegistry":false}]},{"uuid":"1dbc6327-2701-4793-81cb-748c17cea261","siteID":17518,"address":"2780 Zulauf Knolls","latitude":55.4365,"longitude":-129.1951,"lastUpdated":"2017-01-07","city":"New Rossie","region":"Mainland/Southwest","victoriaFile":"26250-20/11766","regionalFile":"N/A","parcelIDs":[6874021,7358011,4566935,3152145,3722948],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2019-06-08","completed":"2016-07-02","initiated":"2014-08-23","ministryContact":"LARSON ELIANE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2016-03-25","completed":"2022-01-20","initiated":"2014-07-09","ministryContact":"PADBERG VANESSA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":true}],"participants":[{"name":"AMET, DOLOR SIT","endDate":"2021-08-25","startDate":"2017-06-07","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","endDate":"2019-07-18","startDate":"2019-04-15","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"AMET, DOLOR SIT","endDate":"2017-06-26","startDate":"2023-06-25","notes":"","roles":["ORGANIZATION"],"siteRegistry":false}],"associatedSites":[{"dateNoted":"2023-08-29","notes":"","parcelID":"18275","siteID":"15222","siteRegistry":false},{"dateNoted":"2014-03-02","notes":"","parcelID":"16679","siteID":"20717","siteRegistry":false},{"dateNoted":"2021-06-15","notes":"","parcelID":"20202","siteID":"16673","siteRegistry":true}]},{"uuid":"0c954b38-7607-4be2-9a98-618d949109f4","siteID":19039,"address":"955 Blair Village","latitude":50.7317,"longitude":-135.4352,"lastUpdated":"2016-03-27","city":"Gradyboro","region":"Cariboo","victoriaFile":"26250-20/5203","regionalFile":"N/A","parcelIDs":[7347772,6063762,7838760,1868462,7361451],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2019-03-20","completed":"2019-10-18","initiated":"2016-01-04","ministryContact":"LEMKE WILHELMINE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2023-08-12","completed":"2015-12-06","initiated":"2014-11-23","ministryContact":"OLSON-ERDMAN LINDSAY","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2019-04-26","completed":"2016-05-20","initiated":"2022-07-01","ministryContact":"O'CONNELL THEODORA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2019-09-05","completed":"2022-06-03","initiated":"2021-10-23","ministryContact":"MCKENZIE MARGOT","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2021-05-24","completed":"2018-03-04","initiated":"2019-05-28","ministryContact":"JENKINS DEBORAH","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":true}],"participants":[{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2019-11-23","startDate":"2020-11-20","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","endDate":"2022-02-24","startDate":"2021-10-11","notes":"","roles":["EMPLOYEE"],"siteRegistry":false}],"associatedSites":[{"dateNoted":"2019-06-19","notes":"","parcelID":"18095","siteID":"20017","siteRegistry":true},{"dateNoted":"2016-12-08","notes":"","parcelID":"17944","siteID":"15656","siteRegistry":true}]},{"uuid":"d61bf6df-f5f7-4843-88b9-2a77069cfdb1","siteID":16966,"address":"51575 Brianne Throughway","latitude":49.0904,"longitude":-134.9505,"lastUpdated":"2015-07-09","city":"Mustafaland","region":"Kootenay","victoriaFile":"26250-20/14166","regionalFile":"N/A","parcelIDs":[9075448,708597,121240,6708919,8312465],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2016-11-19","completed":"2019-12-01","initiated":"2014-08-01","ministryContact":"MCKENZIE MACK","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2020-09-16","completed":"2017-10-28","initiated":"2015-04-21","ministryContact":"DOUGLAS EZRA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2016-09-30","completed":"2016-08-06","initiated":"2017-08-01","ministryContact":"DICKINSON KRYSTAL","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2022-12-30","completed":"2020-12-24","initiated":"2013-10-05","ministryContact":"NIKOLAUS VIRGINIA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":false}],"participants":[{"name":"SHELL CANADA PRODUCTS","endDate":"2021-09-26","startDate":"2018-01-11","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"AMET, DOLOR SIT","endDate":"2017-08-30","startDate":"2019-03-02","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","endDate":"2018-05-07","startDate":"2017-02-02","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2017-06-15","startDate":"2016-06-30","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"AMET, DOLOR SIT","endDate":"2017-01-29","startDate":"2018-09-18","notes":"","roles":["ORGANIZATION"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2023-08-02","notes":"","parcelID":"20047","siteID":"15822","siteRegistry":true}]},{"uuid":"ff1c4f62-75bf-4b4a-b777-fb2fc9b019c2","siteID":17908,"address":"604 Turcotte Ridge","latitude":55.2776,"longitude":-135.9238,"lastUpdated":"2014-12-20","city":"Mistytown","region":"Thompson-Okanagan","victoriaFile":"26250-20/7567","regionalFile":"N/A","parcelIDs":[9994175,7323560,2696498,4797949,5620375],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2015-02-05","completed":"2020-11-15","initiated":"2018-05-17","ministryContact":"CARTER BRAULIO","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2023-01-31","completed":"2023-07-01","initiated":"2019-03-29","ministryContact":"WILDERMAN ARLIE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2019-08-27","completed":"2021-03-09","initiated":"2017-11-07","ministryContact":"SIMONIS OSBALDO","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2017-02-22","completed":"2021-09-09","initiated":"2020-04-24","ministryContact":"GLEASON JODY","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":true}],"participants":[{"name":"AMET, DOLOR SIT","endDate":"2016-09-30","startDate":"2016-12-16","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"IPSUM","endDate":"2021-07-05","startDate":"2020-10-12","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"IPSUM","endDate":"2014-01-01","startDate":"2016-01-01","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"IPSUM","endDate":"2023-03-03","startDate":"2014-01-31","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"AMET, DOLOR SIT","endDate":"2021-06-15","startDate":"2019-07-02","notes":"","roles":["EMPLOYEE"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2017-03-01","notes":"","parcelID":"19396","siteID":"17164","siteRegistry":true},{"dateNoted":"2018-01-10","notes":"","parcelID":"20056","siteID":"18049","siteRegistry":true}]},{"uuid":"c0ea5231-3f5d-46ef-b7e3-39758b218e4c","siteID":19243,"address":"3464 Johnson Highway","latitude":52.9682,"longitude":-137.1133,"lastUpdated":"2017-12-14","city":"Oro Valley","region":"Vancouver Island/Coast","victoriaFile":"26250-20/5710","regionalFile":"N/A","parcelIDs":[8959265,3235001,9659890,1800927,9969802],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2023-05-25","completed":"2022-01-22","initiated":"2016-02-04","ministryContact":"GOLDNER JAVONTE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2023-07-25","completed":"2023-04-18","initiated":"2020-02-02","ministryContact":"BROWN LINDSAY","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2015-09-22","completed":"2019-12-08","initiated":"2021-03-03","ministryContact":"HACKETT DERICK","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2021-03-25","completed":"2017-05-03","initiated":"2021-12-28","ministryContact":"LARKIN LUIS","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":true}],"participants":[{"name":"AMET, DOLOR SIT","endDate":"2019-05-29","startDate":"2015-05-14","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"IPSUM","endDate":"2018-04-09","startDate":"2018-11-04","notes":"","roles":["ORGANIZATION"],"siteRegistry":false}],"associatedSites":[{"dateNoted":"2015-02-11","notes":"","parcelID":"17033","siteID":"16517","siteRegistry":false}]},{"uuid":"02abf5a8-5ea7-4c90-ad16-14f26eb286dd","siteID":17449,"address":"36335 Robbie Parkways","latitude":48.0459,"longitude":-133.973,"lastUpdated":"2015-06-12","city":"Lake Tobystead","region":"Thompson-Okanagan","victoriaFile":"26250-20/7211","regionalFile":"N/A","parcelIDs":[5248166,3199598,3050301,4330821,1936142],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2017-12-06","completed":"2014-12-06","initiated":"2018-10-29","ministryContact":"CORKERY ELSE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2016-02-21","completed":"2020-05-17","initiated":"2016-06-17","ministryContact":"FERRY TESS","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2014-06-22","completed":"2017-09-28","initiated":"2020-11-17","ministryContact":"BREKKE-MOHR SHANON","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2022-01-20","completed":"2018-01-25","initiated":"2021-11-06","ministryContact":"RITCHIE SHAYNE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":false}],"participants":[{"name":"IPSUM","endDate":"2019-02-05","startDate":"2020-12-07","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2015-05-17","startDate":"2019-12-07","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"IPSUM","endDate":"2020-09-21","startDate":"2019-09-25","notes":"","roles":["EMPLOYEE"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2022-04-21","notes":"","parcelID":"16345","siteID":"18026","siteRegistry":false}]},{"uuid":"9a05fbce-f459-45b9-ac22-31882b0ea384","siteID":16942,"address":"1563 Haag Courts","latitude":52.7198,"longitude":-120.6518,"lastUpdated":"2018-12-28","city":"Lake Rocioton","region":"Cariboo","victoriaFile":"26250-20/14521","regionalFile":"N/A","parcelIDs":[5439447,6835373,1072963,6951370,8370519],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2021-08-05","completed":"2021-11-26","initiated":"2020-04-23","ministryContact":"BOTSFORD GARRISON","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2020-12-26","completed":"2015-10-07","initiated":"2015-07-28","ministryContact":"ADAMS ROWLAND","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":false}],"participants":[{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2021-03-03","startDate":"2023-07-14","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","endDate":"2018-03-13","startDate":"2016-05-01","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","endDate":"2021-03-10","startDate":"2015-11-20","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2020-07-28","startDate":"2023-02-05","notes":"","roles":["ORGANIZATION"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2018-01-18","notes":"","parcelID":"16095","siteID":"19095","siteRegistry":false},{"dateNoted":"2017-06-24","notes":"","parcelID":"16538","siteID":"18126","siteRegistry":true}]},{"uuid":"e6cd058d-145f-4576-8829-da7baadcea47","siteID":18859,"address":"3183 Satterfield Isle","latitude":57.2433,"longitude":-130.2429,"lastUpdated":"2018-04-03","city":"West Novafurt","region":"Cariboo","victoriaFile":"26250-20/19670","regionalFile":"N/A","parcelIDs":[7431321,3485340,3318830,8066461,2648328],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2022-06-10","completed":"2016-10-21","initiated":"2015-04-18","ministryContact":"LYNCH CATERINA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2019-04-16","completed":"2023-05-20","initiated":"2023-09-15","ministryContact":"WINTHEISER NOEMI","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2021-10-22","completed":"2018-03-13","initiated":"2022-07-28","ministryContact":"GERHOLD ISAIAS","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false}],"participants":[{"name":"IPSUM","endDate":"2016-03-30","startDate":"2020-07-27","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","endDate":"2022-12-03","startDate":"2019-02-19","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","endDate":"2017-01-06","startDate":"2016-10-01","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"AMET, DOLOR SIT","endDate":"2018-07-20","startDate":"2014-05-15","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2018-01-21","startDate":"2017-12-17","notes":"","roles":["ORGANIZATION"],"siteRegistry":false}],"associatedSites":[{"dateNoted":"2022-07-29","notes":"","parcelID":"19098","siteID":"17012","siteRegistry":true},{"dateNoted":"2019-03-11","notes":"","parcelID":"19516","siteID":"20915","siteRegistry":true},{"dateNoted":"2021-12-02","notes":"","parcelID":"15757","siteID":"16634","siteRegistry":true}]},{"uuid":"92226058-dacb-4fc9-8f73-98fea5d6705e","siteID":15654,"address":"49244 Dare Lights","latitude":49.7365,"longitude":-124.8755,"lastUpdated":"2020-02-15","city":"South Estellafield","region":"Kootenay","victoriaFile":"26250-20/5204","regionalFile":"N/A","parcelIDs":[5050623,5238308,3915282,7004656,4862097],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2013-11-18","completed":"2022-05-27","initiated":"2022-02-08","ministryContact":"BEDNAR PEGGIE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2015-05-28","completed":"2019-05-18","initiated":"2021-05-08","ministryContact":"KONOPELSKI FORREST","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":false}],"participants":[{"name":"IPSUM","endDate":"2015-12-16","startDate":"2018-02-28","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"IPSUM","endDate":"2019-05-14","startDate":"2018-06-28","notes":"","roles":["ORGANIZATION"],"siteRegistry":false}],"associatedSites":[{"dateNoted":"2016-10-06","notes":"","parcelID":"18733","siteID":"20407","siteRegistry":true}]},{"uuid":"421ed4a8-c693-42fb-9484-e9fdb6ef0b39","siteID":18590,"address":"712 Nora Mews","latitude":50.6698,"longitude":-130.7698,"lastUpdated":"2017-11-26","city":"New Carissafort","region":"Kootenay","victoriaFile":"26250-20/14052","regionalFile":"N/A","parcelIDs":[4653158,8637617,3617586,3057464,2363528],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2019-07-29","completed":"2016-03-22","initiated":"2020-05-05","ministryContact":"RIPPIN ESTEVAN","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2021-03-28","completed":"2016-10-11","initiated":"2019-11-17","ministryContact":"LABADIE BROOKE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2022-02-21","completed":"2018-02-28","initiated":"2023-03-25","ministryContact":"PARKER ADELL","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2022-02-19","completed":"2016-11-28","initiated":"2018-08-24","ministryContact":"POUROS-MARVIN LORENZ","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2022-09-28","completed":"2021-03-28","initiated":"2016-10-11","ministryContact":"RATH JEROD","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false}],"participants":[{"name":"IPSUM","endDate":"2017-06-15","startDate":"2018-03-29","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"AMET, DOLOR SIT","endDate":"2022-06-03","startDate":"2023-07-24","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2013-11-26","startDate":"2021-08-18","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2014-03-07","startDate":"2021-10-03","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2020-01-10","startDate":"2013-11-07","notes":"","roles":["ORGANIZATION"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2023-08-13","notes":"","parcelID":"18650","siteID":"15543","siteRegistry":true},{"dateNoted":"2022-12-30","notes":"","parcelID":"20869","siteID":"18368","siteRegistry":false}]},{"uuid":"bfdbb5cd-403c-45bd-8e12-966c99be1e92","siteID":19914,"address":"1980 Carolyne Circles","latitude":55.2993,"longitude":-124.2175,"lastUpdated":"2017-10-24","city":"Fort Mckenzieborough","region":" North Coast","victoriaFile":"26250-20/3821","regionalFile":"N/A","parcelIDs":[8907318,311720,7351848,5054569,2171008],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2018-02-27","completed":"2022-05-15","initiated":"2013-11-03","ministryContact":"ARMSTRONG JAZLYN","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2020-05-25","completed":"2017-03-06","initiated":"2019-06-03","ministryContact":"SCHUMM BRENT","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2014-06-10","completed":"2017-07-04","initiated":"2018-11-10","ministryContact":"COLE SHERWOOD","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false}],"participants":[{"name":"SHELL CANADA PRODUCTS","endDate":"2017-09-18","startDate":"2021-02-02","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"AMET, DOLOR SIT","endDate":"2015-12-14","startDate":"2021-12-28","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"AMET, DOLOR SIT","endDate":"2015-03-11","startDate":"2017-05-10","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"IPSUM","endDate":"2017-04-06","startDate":"2021-09-17","notes":"","roles":["EMPLOYEE"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2016-06-27","notes":"","parcelID":"18548","siteID":"18162","siteRegistry":true}]},{"uuid":"580ccb10-1162-4e30-aee5-a2649dd74a0f","siteID":15513,"address":"1718 Collier Lights","latitude":48.4923,"longitude":-132.6128,"lastUpdated":"2019-08-25","city":"Spencerfurt","region":"Thompson-Okanagan","victoriaFile":"26250-20/6399","regionalFile":"N/A","parcelIDs":[5786539,8050444,9835857,7899567,3274058],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2019-02-21","completed":"2017-08-30","initiated":"2019-12-30","ministryContact":"MOORE KELVIN","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2023-02-28","completed":"2017-02-02","initiated":"2020-03-30","ministryContact":"FAHEY ERNA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2018-07-03","completed":"2022-06-02","initiated":"2022-10-10","ministryContact":"LEFFLER-ALTENWERTH EDWARD","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":true}],"participants":[{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2016-07-26","startDate":"2018-03-10","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2020-12-02","startDate":"2016-02-17","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","endDate":"2020-07-26","startDate":"2017-10-28","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"IPSUM","endDate":"2015-10-16","startDate":"2021-10-30","notes":"","roles":["EMPLOYEE"],"siteRegistry":false}],"associatedSites":[{"dateNoted":"2023-09-02","notes":"","parcelID":"20512","siteID":"17151","siteRegistry":false}]},{"uuid":"b2d22b21-ad17-41e7-aa9f-29f468549a52","siteID":16972,"address":"7014 Hammes Manors","latitude":49.1584,"longitude":-130.3932,"lastUpdated":"2020-09-03","city":"East Angieberg","region":"Thompson-Okanagan","victoriaFile":"26250-20/9979","regionalFile":"N/A","parcelIDs":[1959602,6875266,8549337,6568795,3225115],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2015-08-20","completed":"2020-10-22","initiated":"2018-12-19","ministryContact":"MCDERMOTT CAMILLE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2015-03-29","completed":"2022-08-07","initiated":"2019-04-15","ministryContact":"WOLF KEITH","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2015-06-17","completed":"2022-11-29","initiated":"2022-12-09","ministryContact":"EBERT AUBREY","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2018-09-04","completed":"2017-01-19","initiated":"2014-01-27","ministryContact":"LEUSCHKE EDWINA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2022-05-07","completed":"2021-08-09","initiated":"2016-05-14","ministryContact":"ULLRICH PANSY","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":false}],"participants":[{"name":"AMET, DOLOR SIT","endDate":"2015-09-18","startDate":"2017-06-02","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"AMET, DOLOR SIT","endDate":"2016-08-09","startDate":"2018-09-28","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"IPSUM","endDate":"2021-09-19","startDate":"2020-03-29","notes":"","roles":["ORGANIZATION"],"siteRegistry":false}],"associatedSites":[{"dateNoted":"2018-08-17","notes":"","parcelID":"20183","siteID":"15273","siteRegistry":false}]},{"uuid":"2c54f0ff-207d-41c7-bdef-6e1dc0a3b949","siteID":19084,"address":"234 Boyle Drive","latitude":51.3834,"longitude":-132.4634,"lastUpdated":"2015-04-19","city":"Kuphalbury","region":" North Coast","victoriaFile":"26250-20/16194","regionalFile":"N/A","parcelIDs":[3118260,1190324,4117790,1852254,4315177],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2021-01-20","completed":"2018-11-08","initiated":"2019-10-05","ministryContact":"SCHMITT DANGELO","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2015-06-06","completed":"2018-08-29","initiated":"2020-06-26","ministryContact":"KONOPELSKI EMMALEE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":false}],"participants":[{"name":"IPSUM","endDate":"2018-01-28","startDate":"2020-11-09","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"AMET, DOLOR SIT","endDate":"2023-03-11","startDate":"2020-02-17","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"AMET, DOLOR SIT","endDate":"2018-10-11","startDate":"2016-03-07","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","endDate":"2018-01-21","startDate":"2018-05-05","notes":"","roles":["EMPLOYEE"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2018-04-21","notes":"","parcelID":"16116","siteID":"18495","siteRegistry":true},{"dateNoted":"2016-04-11","notes":"","parcelID":"18119","siteID":"16025","siteRegistry":false},{"dateNoted":"2018-09-17","notes":"","parcelID":"17554","siteID":"16118","siteRegistry":false}]},{"uuid":"ecd17974-fa32-4114-95aa-6f6e5bcabe85","siteID":19075,"address":"32971 Ivy Trace","latitude":55.6962,"longitude":-123.2873,"lastUpdated":"2023-09-04","city":"Jonatancester","region":"Thompson-Okanagan","victoriaFile":"26250-20/15079","regionalFile":"N/A","parcelIDs":[9710200,6541983,7106237,6645270,2358038],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2016-04-05","completed":"2021-03-19","initiated":"2021-10-03","ministryContact":"FEIL-KRIS KIANA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2017-04-14","completed":"2019-01-15","initiated":"2018-11-29","ministryContact":"KUVALIS NELS","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2020-05-10","completed":"2023-09-18","initiated":"2015-12-19","ministryContact":"HAGENES JOAN","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2014-04-28","completed":"2022-12-30","initiated":"2021-04-11","ministryContact":"SHANAHAN DELL","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2014-07-10","completed":"2018-04-08","initiated":"2018-01-27","ministryContact":"LANGOSH LESLY","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":false}],"participants":[{"name":"IPSUM","endDate":"2019-05-09","startDate":"2022-02-21","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2018-07-30","startDate":"2021-04-05","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"AMET, DOLOR SIT","endDate":"2020-06-04","startDate":"2018-05-17","notes":"","roles":["EMPLOYEE"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2018-06-22","notes":"","parcelID":"20038","siteID":"20157","siteRegistry":false}]},{"uuid":"a87aadd6-2576-4ba7-822a-4b1231f536c7","siteID":17180,"address":"7337 Heidenreich Shores","latitude":49.1506,"longitude":-133.0138,"lastUpdated":"2023-03-27","city":"Rogers","region":" North Coast","victoriaFile":"26250-20/16905","regionalFile":"N/A","parcelIDs":[6972247,3387017,4324381,1712946,4927812],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2019-04-04","completed":"2020-10-18","initiated":"2019-10-19","ministryContact":"KEELING MAGNOLIA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2022-05-12","completed":"2018-04-22","initiated":"2019-08-04","ministryContact":"PROSACCO STANLEY","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":true}],"participants":[{"name":"SHELL CANADA PRODUCTS","endDate":"2014-09-21","startDate":"2018-05-20","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"IPSUM","endDate":"2017-05-28","startDate":"2016-04-16","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"IPSUM","endDate":"2019-04-07","startDate":"2018-01-21","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"IPSUM","endDate":"2023-09-24","startDate":"2019-05-21","notes":"","roles":["EMPLOYEE"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2014-11-07","notes":"","parcelID":"19147","siteID":"19377","siteRegistry":true},{"dateNoted":"2017-10-23","notes":"","parcelID":"18888","siteID":"17514","siteRegistry":true}]},{"uuid":"1239a955-8ce4-4ce4-a829-8335df96db29","siteID":19740,"address":"946 Jones Throughway","latitude":53.3067,"longitude":-122.0298,"lastUpdated":"2023-02-25","city":"Rueckerport","region":"Thompson-Okanagan","victoriaFile":"26250-20/19022","regionalFile":"N/A","parcelIDs":[3353153,7345713,3077969,5712928,782992],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2023-06-21","completed":"2022-11-07","initiated":"2015-11-26","ministryContact":"ROMAGUERA-HUEL VICKY","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2016-11-22","completed":"2021-06-04","initiated":"2015-12-12","ministryContact":"STAMM DARBY","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2020-06-26","completed":"2014-01-24","initiated":"2018-05-13","ministryContact":"HAHN PHOEBE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2021-12-08","completed":"2015-06-09","initiated":"2021-07-24","ministryContact":"FUNK ALPHONSO","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":true}],"participants":[{"name":"SHELL CANADA PRODUCTS","endDate":"2021-01-27","startDate":"2016-08-07","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2014-11-23","startDate":"2016-08-18","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","endDate":"2020-12-03","startDate":"2014-09-25","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"AMET, DOLOR SIT","endDate":"2022-08-24","startDate":"2015-12-14","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","endDate":"2016-11-27","startDate":"2021-02-17","notes":"","roles":["EMPLOYEE"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2019-11-19","notes":"","parcelID":"19471","siteID":"18245","siteRegistry":true},{"dateNoted":"2016-06-18","notes":"","parcelID":"16366","siteID":"17898","siteRegistry":true}]},{"uuid":"e0245d13-b808-43f6-950e-dde2a0666bc9","siteID":19773,"address":"8479 Turner Summit","latitude":54.0442,"longitude":-132.4007,"lastUpdated":"2014-03-22","city":"Macejkovicborough","region":"Kootenay","victoriaFile":"26250-20/18984","regionalFile":"N/A","parcelIDs":[4592089,6487072,437990,3914098,6096528],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2022-01-07","completed":"2015-05-17","initiated":"2020-07-20","ministryContact":"DANIEL ARLENE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2023-06-24","completed":"2015-04-25","initiated":"2022-07-07","ministryContact":"OSINSKI REBECA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":true}],"participants":[{"name":"AMET, DOLOR SIT","endDate":"2016-05-23","startDate":"2019-06-13","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2022-11-29","startDate":"2023-01-02","notes":"","roles":["ORGANIZATION"],"siteRegistry":false}],"associatedSites":[{"dateNoted":"2018-06-01","notes":"","parcelID":"19096","siteID":"16272","siteRegistry":false},{"dateNoted":"2019-01-15","notes":"","parcelID":"19359","siteID":"15361","siteRegistry":true},{"dateNoted":"2017-03-27","notes":"","parcelID":"18638","siteID":"19457","siteRegistry":true}]},{"uuid":"510d5e5e-cd9e-4ad2-95fa-ce7839ac5064","siteID":17012,"address":"8093 Dibbert Drives","latitude":55.6257,"longitude":-137.0721,"lastUpdated":"2018-08-02","city":"Fremont","region":"Mainland/Southwest","victoriaFile":"26250-20/16794","regionalFile":"N/A","parcelIDs":[8915353,3233829,7997773,8113485,7548974],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2020-08-29","completed":"2014-03-07","initiated":"2015-05-02","ministryContact":"HOWE CORINE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2018-04-04","completed":"2019-06-29","initiated":"2015-03-30","ministryContact":"BREITENBERG ASHLYNN","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2021-09-26","completed":"2021-05-08","initiated":"2023-09-01","ministryContact":"GRANT BERTA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2019-05-27","completed":"2022-11-23","initiated":"2018-05-21","ministryContact":"KUNDE CYNTHIA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2017-07-24","completed":"2019-08-03","initiated":"2017-08-23","ministryContact":"SWIFT LEONARD","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":true}],"participants":[{"name":"SHELL CANADA PRODUCTS","endDate":"2023-09-24","startDate":"2016-08-04","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"IPSUM","endDate":"2013-10-02","startDate":"2020-06-13","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"AMET, DOLOR SIT","endDate":"2014-02-03","startDate":"2013-12-14","notes":"","roles":["EMPLOYEE"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2017-01-14","notes":"","parcelID":"20358","siteID":"19589","siteRegistry":false}]},{"uuid":"5eb91ea7-da41-467d-b54e-329757c38c15","siteID":15945,"address":"1283 Jerde Rue","latitude":49.7245,"longitude":-136.9703,"lastUpdated":"2014-02-23","city":"East Vernie","region":"Cariboo","victoriaFile":"26250-20/17179","regionalFile":"N/A","parcelIDs":[9447882,4187310,2612678,7421022,7985650],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2021-04-09","completed":"2016-02-04","initiated":"2019-08-08","ministryContact":"BREITENBERG CYRUS","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2017-02-01","completed":"2016-01-20","initiated":"2018-09-10","ministryContact":"MORAR MARIBEL","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2017-02-10","completed":"2020-01-02","initiated":"2017-09-02","ministryContact":"LARSON CLAUDIA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2015-01-21","completed":"2015-03-10","initiated":"2015-08-24","ministryContact":"SWIFT BRAEDEN","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false}],"participants":[{"name":"SHELL CANADA PRODUCTS","endDate":"2019-03-08","startDate":"2019-01-21","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","endDate":"2023-09-19","startDate":"2019-05-27","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"AMET, DOLOR SIT","endDate":"2020-12-04","startDate":"2015-01-25","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"AMET, DOLOR SIT","endDate":"2014-10-03","startDate":"2016-04-23","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"IPSUM","endDate":"2018-08-30","startDate":"2015-03-18","notes":"","roles":["EMPLOYEE"],"siteRegistry":false}],"associatedSites":[{"dateNoted":"2020-06-19","notes":"","parcelID":"19748","siteID":"18373","siteRegistry":true},{"dateNoted":"2023-06-15","notes":"","parcelID":"15424","siteID":"20865","siteRegistry":false},{"dateNoted":"2017-04-19","notes":"","parcelID":"15536","siteID":"20957","siteRegistry":false}]},{"uuid":"4cd2af22-991d-42b9-8814-5decc4a15e93","siteID":20614,"address":"8255 Altenwerth Path","latitude":55.3704,"longitude":-122.8263,"lastUpdated":"2014-02-18","city":"East Winfieldworth","region":"Vancouver Island/Coast","victoriaFile":"26250-20/15099","regionalFile":"N/A","parcelIDs":[2460966,4936620,4561604,2412110,5216673],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2016-02-07","completed":"2015-12-25","initiated":"2016-01-04","ministryContact":"HERMISTON VICENTE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2020-11-24","completed":"2023-04-24","initiated":"2016-07-01","ministryContact":"ROHAN AUSTIN","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2016-01-05","completed":"2016-10-17","initiated":"2022-06-08","ministryContact":"SCHAEFER LUCAS","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2013-10-27","completed":"2023-04-28","initiated":"2017-12-02","ministryContact":"VONRUEDEN BELLE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2015-03-13","completed":"2016-10-12","initiated":"2019-06-11","ministryContact":"ZULAUF ASHA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false}],"participants":[{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2022-12-22","startDate":"2016-12-13","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"IPSUM","endDate":"2019-02-06","startDate":"2013-12-28","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","endDate":"2017-11-02","startDate":"2016-04-26","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"IPSUM","endDate":"2021-12-27","startDate":"2019-08-23","notes":"","roles":["ORGANIZATION"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2018-06-07","notes":"","parcelID":"20455","siteID":"17012","siteRegistry":false},{"dateNoted":"2016-06-22","notes":"","parcelID":"19439","siteID":"19854","siteRegistry":true}]},{"uuid":"cab7c5f5-6027-4cbf-97b3-fdf91418eb98","siteID":17768,"address":"89887 Goldner Curve","latitude":58.8263,"longitude":-134.4658,"lastUpdated":"2018-09-06","city":"North Eleazarville","region":" North Coast","victoriaFile":"26250-20/19204","regionalFile":"N/A","parcelIDs":[3178400,6193094,2647749,8339296,3225275],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2019-08-12","completed":"2020-10-30","initiated":"2014-12-19","ministryContact":"KUHIC KYLEE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2015-11-05","completed":"2023-04-11","initiated":"2023-05-15","ministryContact":"WOLF DORCAS","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2020-01-14","completed":"2018-11-28","initiated":"2022-10-04","ministryContact":"ROGAHN IAN","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2023-04-10","completed":"2019-03-17","initiated":"2014-05-22","ministryContact":"BALISTRERI DAWN","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":false}],"participants":[{"name":"IPSUM","endDate":"2015-06-19","startDate":"2018-08-07","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2017-09-24","startDate":"2013-11-23","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"IPSUM","endDate":"2022-10-10","startDate":"2021-09-10","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"AMET, DOLOR SIT","endDate":"2018-06-10","startDate":"2021-07-19","notes":"","roles":["ORGANIZATION"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2014-05-08","notes":"","parcelID":"15522","siteID":"18799","siteRegistry":false}]},{"uuid":"ca759ae1-ba21-4936-945f-9f9cf06de3ae","siteID":16839,"address":"4767 Marietta Squares","latitude":49.8602,"longitude":-128.5745,"lastUpdated":"2015-07-15","city":"North Kristytown","region":"Thompson-Okanagan","victoriaFile":"26250-20/17993","regionalFile":"N/A","parcelIDs":[3862982,1886316,6917212,5525400,8256590],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2022-05-26","completed":"2021-04-06","initiated":"2023-01-26","ministryContact":"WISOKY THEO","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2016-12-08","completed":"2014-04-10","initiated":"2022-09-24","ministryContact":"LOCKMAN MAXIMO","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2019-04-25","completed":"2021-04-29","initiated":"2016-01-08","ministryContact":"MARQUARDT LUELLA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2017-01-23","completed":"2022-11-20","initiated":"2021-11-13","ministryContact":"MUELLER ALENE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2015-12-25","completed":"2017-03-11","initiated":"2022-10-30","ministryContact":"BEIER HOWARD","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":false}],"participants":[{"name":"IPSUM","endDate":"2014-06-30","startDate":"2016-02-28","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","endDate":"2017-09-21","startDate":"2022-11-12","notes":"","roles":["EMPLOYEE"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2019-03-28","notes":"","parcelID":"18841","siteID":"17394","siteRegistry":true},{"dateNoted":"2016-02-29","notes":"","parcelID":"16355","siteID":"20717","siteRegistry":false},{"dateNoted":"2014-08-30","notes":"","parcelID":"19665","siteID":"19407","siteRegistry":false}]},{"uuid":"085c322b-2d43-4bc3-b27f-b65345cc68df","siteID":18069,"address":"339 Stark Land","latitude":50.0283,"longitude":-137.1229,"lastUpdated":"2018-08-10","city":"Mount Vernon","region":"Thompson-Okanagan","victoriaFile":"26250-20/874","regionalFile":"N/A","parcelIDs":[1502082,2737639,937635,2648296,3635942],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2019-06-19","completed":"2020-01-20","initiated":"2023-07-03","ministryContact":"SCHILLER MELVIN","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2014-10-02","completed":"2020-11-09","initiated":"2015-08-21","ministryContact":"ZIEMANN STANTON","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2013-12-26","completed":"2019-09-10","initiated":"2014-06-29","ministryContact":"PACOCHA CLAUDINE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false}],"participants":[{"name":"SHELL CANADA PRODUCTS","endDate":"2016-02-07","startDate":"2023-07-15","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","endDate":"2016-12-24","startDate":"2016-09-17","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2019-01-23","startDate":"2019-07-06","notes":"","roles":["EMPLOYEE"],"siteRegistry":false}],"associatedSites":[{"dateNoted":"2020-05-28","notes":"","parcelID":"17460","siteID":"20366","siteRegistry":false}]},{"uuid":"f4305c91-1fce-492b-b5c5-cf47e63d3a91","siteID":17203,"address":"212 Becker Way","latitude":50.4486,"longitude":-118.1995,"lastUpdated":"2019-07-11","city":"Lake Manley","region":"Cariboo","victoriaFile":"26250-20/7207","regionalFile":"N/A","parcelIDs":[4713914,1413950,3795791,9059115,8325198],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2014-05-11","completed":"2016-11-11","initiated":"2014-09-17","ministryContact":"HAYES IDELLA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2017-01-27","completed":"2022-03-26","initiated":"2023-06-10","ministryContact":"VOLKMAN TREVOR","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2015-01-11","completed":"2016-06-16","initiated":"2015-12-11","ministryContact":"TURCOTTE GRACIE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2014-11-14","completed":"2018-05-28","initiated":"2019-05-30","ministryContact":"RUSSEL JAMISON","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2022-05-31","completed":"2020-06-07","initiated":"2020-06-29","ministryContact":"KUB GLADYCE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":false}],"participants":[{"name":"SHELL CANADA PRODUCTS","endDate":"2016-05-28","startDate":"2014-03-06","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","endDate":"2017-05-08","startDate":"2016-12-14","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","endDate":"2020-02-02","startDate":"2020-06-12","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2014-04-07","startDate":"2019-05-28","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"IPSUM","endDate":"2021-10-02","startDate":"2016-12-24","notes":"","roles":["ORGANIZATION"],"siteRegistry":false}],"associatedSites":[{"dateNoted":"2015-02-18","notes":"","parcelID":"19546","siteID":"18775","siteRegistry":true},{"dateNoted":"2015-07-26","notes":"","parcelID":"19953","siteID":"19740","siteRegistry":true},{"dateNoted":"2017-12-24","notes":"","parcelID":"17485","siteID":"17318","siteRegistry":false}]},{"uuid":"8cd3169c-e6be-4a5b-904d-867d4f7da791","siteID":15457,"address":"731 Renner Flat","latitude":53.6598,"longitude":-138.8618,"lastUpdated":"2022-09-18","city":"Enriqueboro","region":"Mainland/Southwest","victoriaFile":"26250-20/11313","regionalFile":"N/A","parcelIDs":[9957510,4496769,2526105,3355395,2971019],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2021-08-07","completed":"2017-03-07","initiated":"2015-07-13","ministryContact":"HALVORSON KAITLIN","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2015-12-08","completed":"2015-04-01","initiated":"2020-04-03","ministryContact":"KRIS TAVARES","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false}],"participants":[{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2014-05-07","startDate":"2015-02-12","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"AMET, DOLOR SIT","endDate":"2019-06-08","startDate":"2014-05-04","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","endDate":"2017-11-23","startDate":"2021-05-20","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"IPSUM","endDate":"2021-11-01","startDate":"2019-12-15","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"IPSUM","endDate":"2022-08-20","startDate":"2022-05-08","notes":"","roles":["ORGANIZATION"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2023-05-27","notes":"","parcelID":"17902","siteID":"20178","siteRegistry":false},{"dateNoted":"2019-08-18","notes":"","parcelID":"19140","siteID":"19807","siteRegistry":true}]},{"uuid":"472286d0-1c0e-4a52-9f21-7adc4ed14d35","siteID":17317,"address":"39280 Lurline Harbors","latitude":56.801,"longitude":-131.4143,"lastUpdated":"2015-06-27","city":"Dickensburgh","region":"Mainland/Southwest","victoriaFile":"26250-20/8505","regionalFile":"N/A","parcelIDs":[5791868,8617398,6106313,264182,3826017],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2015-07-12","completed":"2017-11-08","initiated":"2020-06-02","ministryContact":"WEST MARGOT","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2019-07-30","completed":"2021-09-01","initiated":"2021-09-05","ministryContact":"BERGSTROM CASPER","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2022-05-12","completed":"2020-05-22","initiated":"2021-06-12","ministryContact":"KOELPIN ABBIGAIL","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2019-05-01","completed":"2014-05-03","initiated":"2020-07-26","ministryContact":"ERDMAN ROSSIE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2016-03-28","completed":"2016-02-22","initiated":"2016-07-11","ministryContact":"RATH SYLVESTER","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":true}],"participants":[{"name":"SHELL CANADA PRODUCTS","endDate":"2019-06-13","startDate":"2018-01-10","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2018-11-24","startDate":"2022-08-11","notes":"","roles":["ORGANIZATION"],"siteRegistry":false}],"associatedSites":[{"dateNoted":"2017-06-26","notes":"","parcelID":"18047","siteID":"18495","siteRegistry":false}]},{"uuid":"a0c8f7c2-00d1-49a0-9e33-1eab425f95b7","siteID":20407,"address":"932 Tatum Fords","latitude":56.4834,"longitude":-120.9259,"lastUpdated":"2015-08-18","city":"Lysannemouth","region":"Kootenay","victoriaFile":"26250-20/14891","regionalFile":"N/A","parcelIDs":[2048609,8740966,6871904,1723142,984079],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2021-04-18","completed":"2019-10-12","initiated":"2019-09-11","ministryContact":"SCHMITT ANDREANNE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2022-08-17","completed":"2018-07-10","initiated":"2016-01-04","ministryContact":"JACOBI DESTINY","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2020-12-09","completed":"2014-11-23","initiated":"2021-07-05","ministryContact":"O'KEEFE JARRETT","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":false}],"participants":[{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2019-10-21","startDate":"2022-07-06","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"AMET, DOLOR SIT","endDate":"2019-06-25","startDate":"2021-09-21","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2017-01-07","startDate":"2014-03-29","notes":"","roles":["EMPLOYEE"],"siteRegistry":false}],"associatedSites":[{"dateNoted":"2014-01-23","notes":"","parcelID":"16374","siteID":"18695","siteRegistry":false},{"dateNoted":"2016-01-29","notes":"","parcelID":"20128","siteID":"19075","siteRegistry":false},{"dateNoted":"2020-12-28","notes":"","parcelID":"15385","siteID":"20157","siteRegistry":true}]},{"uuid":"21c962cf-1aa0-46a7-a73f-7e187563055b","siteID":15588,"address":"60595 Valerie Glen","latitude":52.9706,"longitude":-126.7289,"lastUpdated":"2019-11-23","city":"Hanetown","region":" North Coast","victoriaFile":"26250-20/19561","regionalFile":"N/A","parcelIDs":[5360594,2652450,8125569,8149940,5990677],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2015-10-12","completed":"2020-08-27","initiated":"2023-01-17","ministryContact":"THOMPSON YESENIA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2017-06-09","completed":"2015-08-10","initiated":"2016-06-06","ministryContact":"FRAMI EVALYN","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2016-10-21","completed":"2014-09-03","initiated":"2019-08-12","ministryContact":"RUNTE LEANNE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2019-12-12","completed":"2023-06-24","initiated":"2013-11-13","ministryContact":"AUFDERHAR TRISTIN","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":true}],"participants":[{"name":"AMET, DOLOR SIT","endDate":"2019-02-11","startDate":"2019-11-24","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2017-04-14","startDate":"2015-06-06","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"IPSUM","endDate":"2022-08-03","startDate":"2015-07-02","notes":"","roles":["EMPLOYEE"],"siteRegistry":false}],"associatedSites":[{"dateNoted":"2014-10-10","notes":"","parcelID":"15241","siteID":"20441","siteRegistry":false}]},{"uuid":"9f9a3afd-0a5c-485b-936c-72c6b0964429","siteID":15222,"address":"56064 Kemmer Trace","latitude":58.7797,"longitude":-127.3823,"lastUpdated":"2015-06-02","city":"West Leonora","region":" North Coast","victoriaFile":"26250-20/4333","regionalFile":"N/A","parcelIDs":[2596600,3897450,1956218,7558464,7864484],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2017-08-07","completed":"2019-09-11","initiated":"2023-03-24","ministryContact":"KOHLER JAQUELIN","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2016-01-02","completed":"2021-09-14","initiated":"2015-03-12","ministryContact":"KLOCKO JAMIL","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false}],"participants":[{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2019-07-21","startDate":"2017-10-02","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","endDate":"2021-12-07","startDate":"2022-05-10","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"AMET, DOLOR SIT","endDate":"2023-05-28","startDate":"2020-10-19","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"AMET, DOLOR SIT","endDate":"2016-10-03","startDate":"2022-08-26","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"IPSUM","endDate":"2015-09-15","startDate":"2015-05-08","notes":"","roles":["ORGANIZATION"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2014-01-22","notes":"","parcelID":"16232","siteID":"19773","siteRegistry":false}]},{"uuid":"8de7ef9b-acc0-4894-aaf6-ee6d9a0e7ea9","siteID":15443,"address":"31700 Gloria Wall","latitude":57.3699,"longitude":-125.6569,"lastUpdated":"2018-03-11","city":"West Mohamed","region":"Thompson-Okanagan","victoriaFile":"26250-20/8998","regionalFile":"N/A","parcelIDs":[8256717,2632694,1463439,7109098,5595890],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2017-12-19","completed":"2022-04-22","initiated":"2020-02-22","ministryContact":"JOHNSTON RUTH","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2014-08-07","completed":"2020-11-09","initiated":"2015-04-04","ministryContact":"BARROWS JUSTICE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2023-06-04","completed":"2019-05-15","initiated":"2017-06-21","ministryContact":"EFFERTZ ERNESTINA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2019-02-04","completed":"2021-06-14","initiated":"2021-12-06","ministryContact":"WINDLER-DACH ORIE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":true}],"participants":[{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2013-12-03","startDate":"2015-07-15","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"IPSUM","endDate":"2015-04-25","startDate":"2020-07-31","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"IPSUM","endDate":"2016-09-27","startDate":"2021-02-15","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2020-02-05","startDate":"2016-09-24","notes":"","roles":["ORGANIZATION"],"siteRegistry":false}],"associatedSites":[{"dateNoted":"2015-01-14","notes":"","parcelID":"17859","siteID":"16151","siteRegistry":false}]},{"uuid":"5351029f-b2f5-4a73-9e2e-f25884d81d98","siteID":15365,"address":"851 Cristina Crossroad","latitude":50.1301,"longitude":-128.4784,"lastUpdated":"2021-10-24","city":"Temple","region":"Mainland/Southwest","victoriaFile":"26250-20/2234","regionalFile":"N/A","parcelIDs":[8219267,4753608,1177445,5279579,4510636],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2021-02-25","completed":"2021-02-21","initiated":"2018-04-28","ministryContact":"CONROY MANDY","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2018-02-06","completed":"2023-04-26","initiated":"2020-03-03","ministryContact":"JAKUBOWSKI ALEXIS","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2014-10-04","completed":"2021-10-08","initiated":"2017-05-17","ministryContact":"WARD HUBERT","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2014-11-01","completed":"2014-08-03","initiated":"2020-10-30","ministryContact":"KING NICHOLE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2019-05-04","completed":"2017-08-15","initiated":"2023-06-24","ministryContact":"FEIL LORENZO","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":false}],"participants":[{"name":"AMET, DOLOR SIT","endDate":"2015-06-12","startDate":"2022-08-04","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"AMET, DOLOR SIT","endDate":"2023-05-22","startDate":"2015-08-31","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"AMET, DOLOR SIT","endDate":"2021-04-17","startDate":"2018-12-25","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"IPSUM","endDate":"2015-05-11","startDate":"2022-12-01","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2021-05-24","startDate":"2023-08-11","notes":"","roles":["EMPLOYEE"],"siteRegistry":false}],"associatedSites":[{"dateNoted":"2019-04-27","notes":"","parcelID":"15973","siteID":"16736","siteRegistry":false}]},{"uuid":"e57071d6-aff5-46f8-9a47-f047bb6a4774","siteID":15543,"address":"43923 Pagac Avenue","latitude":55.0683,"longitude":-124.5132,"lastUpdated":"2015-08-13","city":"Katharinaport","region":"Vancouver Island/Coast","victoriaFile":"26250-20/6257","regionalFile":"N/A","parcelIDs":[1991362,3300791,7509566,1911347,6716857],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2016-08-06","completed":"2017-05-08","initiated":"2018-02-11","ministryContact":"CROOKS SHANEL","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2019-06-18","completed":"2016-11-18","initiated":"2019-12-06","ministryContact":"BRADTKE DANIELA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2021-03-07","completed":"2014-02-03","initiated":"2017-03-27","ministryContact":"WYMAN AMINA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2021-05-11","completed":"2017-07-26","initiated":"2021-11-04","ministryContact":"LEANNON ESMERALDA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":true}],"participants":[{"name":"IPSUM","endDate":"2018-02-11","startDate":"2020-09-16","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","endDate":"2016-01-01","startDate":"2016-07-25","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"AMET, DOLOR SIT","endDate":"2023-03-01","startDate":"2015-11-05","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"IPSUM","endDate":"2016-05-22","startDate":"2018-04-17","notes":"","roles":["ORGANIZATION"],"siteRegistry":false}],"associatedSites":[{"dateNoted":"2015-06-10","notes":"","parcelID":"20518","siteID":"19904","siteRegistry":true},{"dateNoted":"2016-11-26","notes":"","parcelID":"17165","siteID":"16986","siteRegistry":false},{"dateNoted":"2021-12-25","notes":"","parcelID":"15390","siteID":"16673","siteRegistry":false}]},{"uuid":"f21f55cc-1a14-4bb0-8769-cb18dad30059","siteID":16634,"address":"478 Simonis Locks","latitude":58.044,"longitude":-131.313,"lastUpdated":"2015-12-07","city":"Port Izaiah","region":"Vancouver Island/Coast","victoriaFile":"26250-20/17883","regionalFile":"N/A","parcelIDs":[9269407,2022222,9061809,8411146,6672215],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2018-05-22","completed":"2023-04-10","initiated":"2023-09-17","ministryContact":"HOEGER KRISTY","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2020-12-31","completed":"2021-11-15","initiated":"2021-09-30","ministryContact":"SMITH IBRAHIM","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2023-08-10","completed":"2016-07-05","initiated":"2018-01-17","ministryContact":"MACGYVER ALETHA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2023-09-10","completed":"2016-02-04","initiated":"2015-11-14","ministryContact":"SCHULTZ CHASITY","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":true}],"participants":[{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2017-12-02","startDate":"2016-11-30","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","endDate":"2014-05-10","startDate":"2023-06-09","notes":"","roles":["EMPLOYEE"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2016-03-01","notes":"","parcelID":"20519","siteID":"17012","siteRegistry":false},{"dateNoted":"2015-12-09","notes":"","parcelID":"17459","siteID":"18838","siteRegistry":true},{"dateNoted":"2017-12-22","notes":"","parcelID":"20553","siteID":"17011","siteRegistry":true}]},{"uuid":"797020c3-68ff-40eb-91b7-a9a83887e6d0","siteID":19248,"address":"14404 Waters Views","latitude":54.3815,"longitude":-126.533,"lastUpdated":"2015-02-08","city":"Port Kennithcester","region":"Mainland/Southwest","victoriaFile":"26250-20/7335","regionalFile":"N/A","parcelIDs":[1193057,5925139,3327807,1847470,8282136],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2021-10-04","completed":"2016-09-13","initiated":"2015-01-04","ministryContact":"HAMILL BRADY","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2023-07-07","completed":"2017-09-23","initiated":"2022-11-21","ministryContact":"JOHNS DESSIE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2021-06-05","completed":"2017-04-16","initiated":"2021-08-28","ministryContact":"RYAN AHMED","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2018-06-15","completed":"2014-07-02","initiated":"2020-08-22","ministryContact":"HICKLE JAYLAN","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2021-05-17","completed":"2014-10-30","initiated":"2017-12-27","ministryContact":"BEER ALLY","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":true}],"participants":[{"name":"SHELL CANADA PRODUCTS","endDate":"2022-12-30","startDate":"2021-07-14","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","endDate":"2018-08-24","startDate":"2013-10-12","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","endDate":"2017-11-15","startDate":"2021-10-12","notes":"","roles":["ORGANIZATION"],"siteRegistry":false}],"associatedSites":[{"dateNoted":"2020-06-21","notes":"","parcelID":"19592","siteID":"17914","siteRegistry":false},{"dateNoted":"2018-09-11","notes":"","parcelID":"20952","siteID":"19740","siteRegistry":false},{"dateNoted":"2021-08-07","notes":"","parcelID":"20152","siteID":"16025","siteRegistry":true}]},{"uuid":"463db693-f7d5-4c5e-add5-38753948754f","siteID":18026,"address":"89498 Casey Crest","latitude":50.1886,"longitude":-131.8699,"lastUpdated":"2018-08-02","city":"Walnut Creek","region":"Thompson-Okanagan","victoriaFile":"26250-20/3290","regionalFile":"N/A","parcelIDs":[3859513,7397483,6967199,7094168,9260551],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2018-07-01","completed":"2020-07-30","initiated":"2020-12-12","ministryContact":"MCLAUGHLIN KRAIG","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2021-11-11","completed":"2014-03-22","initiated":"2014-08-19","ministryContact":"EMMERICH ESMERALDA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":true}],"participants":[{"name":"SHELL CANADA PRODUCTS","endDate":"2014-04-23","startDate":"2022-05-30","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"IPSUM","endDate":"2015-12-16","startDate":"2019-08-02","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"AMET, DOLOR SIT","endDate":"2016-09-04","startDate":"2014-10-18","notes":"","roles":["ORGANIZATION"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2018-07-06","notes":"","parcelID":"20115","siteID":"18245","siteRegistry":false},{"dateNoted":"2018-07-21","notes":"","parcelID":"15868","siteID":"18550","siteRegistry":true}]},{"uuid":"c2bc3f13-d83f-4647-b02c-96da428280e7","siteID":19854,"address":"17673 Shanahan Via","latitude":56.7967,"longitude":-120.023,"lastUpdated":"2014-07-03","city":"Oswaldoland","region":"Vancouver Island/Coast","victoriaFile":"26250-20/5245","regionalFile":"N/A","parcelIDs":[5109709,991955,9683405,6117093,3711313],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2021-09-25","completed":"2022-10-07","initiated":"2021-10-15","ministryContact":"HAMILL TERRENCE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2020-09-04","completed":"2017-01-21","initiated":"2020-01-06","ministryContact":"BOEHM NICKLAUS","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2014-07-26","completed":"2019-10-01","initiated":"2014-05-18","ministryContact":"WUCKERT-REMPEL ANTONETTA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2017-12-02","completed":"2017-03-12","initiated":"2013-11-26","ministryContact":"ZULAUF SHERMAN","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":true}],"participants":[{"name":"IPSUM","endDate":"2019-09-24","startDate":"2022-04-21","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","endDate":"2020-07-30","startDate":"2021-12-27","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"AMET, DOLOR SIT","endDate":"2019-04-11","startDate":"2021-11-17","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2019-12-24","startDate":"2015-09-28","notes":"","roles":["EMPLOYEE"],"siteRegistry":false}],"associatedSites":[{"dateNoted":"2014-02-12","notes":"","parcelID":"16057","siteID":"18753","siteRegistry":true},{"dateNoted":"2015-06-02","notes":"","parcelID":"16642","siteID":"19778","siteRegistry":true},{"dateNoted":"2021-01-28","notes":"","parcelID":"16336","siteID":"19904","siteRegistry":false}]},{"uuid":"d012b652-ab6b-4b47-a3cc-e3ecdfe3b287","siteID":17463,"address":"6730 Davis Haven","latitude":48.7437,"longitude":-127.6937,"lastUpdated":"2022-02-07","city":"New Efrain","region":" North Coast","victoriaFile":"26250-20/3079","regionalFile":"N/A","parcelIDs":[8945222,4176829,5241588,4641866,5242951],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2015-07-11","completed":"2016-06-03","initiated":"2014-02-08","ministryContact":"HERMISTON ALYSHA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2022-01-06","completed":"2017-05-10","initiated":"2014-11-21","ministryContact":"HEGMANN NAOMIE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":true}],"participants":[{"name":"SHELL CANADA PRODUCTS","endDate":"2016-07-22","startDate":"2017-01-28","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"IPSUM","endDate":"2017-01-14","startDate":"2013-10-22","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"AMET, DOLOR SIT","endDate":"2020-04-07","startDate":"2021-10-04","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"AMET, DOLOR SIT","endDate":"2020-03-15","startDate":"2019-12-23","notes":"","roles":["EMPLOYEE"],"siteRegistry":false}],"associatedSites":[{"dateNoted":"2018-05-03","notes":"","parcelID":"20180","siteID":"17275","siteRegistry":false},{"dateNoted":"2014-04-04","notes":"","parcelID":"20700","siteID":"19005","siteRegistry":false}]},{"uuid":"fc0044a5-c2e9-48c6-bec8-2087e35bc631","siteID":17692,"address":"5632 Clifford Brooks","latitude":48.8701,"longitude":-121.9772,"lastUpdated":"2014-06-08","city":"West Jazmyn","region":"Kootenay","victoriaFile":"26250-20/19839","regionalFile":"N/A","parcelIDs":[5850486,5921314,9340826,4755638,4657499],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2018-08-20","completed":"2013-10-09","initiated":"2017-07-02","ministryContact":"BALISTRERI CLEO","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2020-12-03","completed":"2023-03-27","initiated":"2023-07-04","ministryContact":"MANN ZELDA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2015-04-03","completed":"2016-11-28","initiated":"2015-12-09","ministryContact":"HAGENES ROXANNE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":false}],"participants":[{"name":"SHELL CANADA PRODUCTS","endDate":"2021-01-07","startDate":"2016-09-19","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"AMET, DOLOR SIT","endDate":"2016-06-18","startDate":"2019-05-24","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"AMET, DOLOR SIT","endDate":"2015-04-22","startDate":"2020-09-24","notes":"","roles":["ORGANIZATION"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2023-02-04","notes":"","parcelID":"18910","siteID":"15666","siteRegistry":false}]},{"uuid":"af72295d-0f9c-43dc-9922-770349c963ef","siteID":18093,"address":"94038 O'Keefe Inlet","latitude":57.3663,"longitude":-118.3781,"lastUpdated":"2016-06-29","city":"Koeppfort","region":"Mainland/Southwest","victoriaFile":"26250-20/14919","regionalFile":"N/A","parcelIDs":[885270,2105097,7747670,7551298,3147375],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2020-09-22","completed":"2023-07-27","initiated":"2014-01-08","ministryContact":"WATERS CAMILLE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2019-09-28","completed":"2014-01-28","initiated":"2014-12-25","ministryContact":"ROSENBAUM JACE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":true}],"participants":[{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2020-07-26","startDate":"2020-05-04","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"AMET, DOLOR SIT","endDate":"2022-04-29","startDate":"2014-03-26","notes":"","roles":["EMPLOYEE"],"siteRegistry":false}],"associatedSites":[{"dateNoted":"2021-05-02","notes":"","parcelID":"17402","siteID":"15588","siteRegistry":true}]},{"uuid":"6b470457-6b76-4d35-bd80-7577401aa09b","siteID":15481,"address":"97436 Haley Avenue","latitude":50.3508,"longitude":-127.6366,"lastUpdated":"2014-03-29","city":"Trevacester","region":"Kootenay","victoriaFile":"26250-20/15644","regionalFile":"N/A","parcelIDs":[2873750,5422995,5400068,5768135,8661220],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2018-01-11","completed":"2018-10-14","initiated":"2014-09-23","ministryContact":"MCLAUGHLIN ELSA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2014-09-26","completed":"2014-09-28","initiated":"2019-12-11","ministryContact":"TOY TOMAS","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":true}],"participants":[{"name":"AMET, DOLOR SIT","endDate":"2019-04-11","startDate":"2017-09-30","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"IPSUM","endDate":"2015-09-30","startDate":"2014-12-30","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","endDate":"2013-12-27","startDate":"2022-02-25","notes":"","roles":["ORGANIZATION"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2021-10-18","notes":"","parcelID":"16524","siteID":"18274","siteRegistry":false},{"dateNoted":"2016-05-03","notes":"","parcelID":"15460","siteID":"18587","siteRegistry":false}]},{"uuid":"ceea2cf6-6e7a-4a41-8ac0-b26850448745","siteID":19072,"address":"349 Jakubowski Mount","latitude":53.2393,"longitude":-135.8349,"lastUpdated":"2017-06-04","city":"East Delphia","region":"Kootenay","victoriaFile":"26250-20/2741","regionalFile":"N/A","parcelIDs":[7126998,1137610,3818525,5440607,7802326],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2017-04-26","completed":"2016-04-25","initiated":"2023-08-04","ministryContact":"HILLS JAMIL","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2016-08-06","completed":"2014-01-14","initiated":"2015-07-29","ministryContact":"CORKERY ELBERT","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2015-11-03","completed":"2016-04-13","initiated":"2018-07-03","ministryContact":"FISHER JOE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2020-08-15","completed":"2020-10-09","initiated":"2022-09-23","ministryContact":"SCHNEIDER HOYT","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":true}],"participants":[{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2018-05-17","startDate":"2016-03-17","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"IPSUM","endDate":"2019-07-09","startDate":"2016-10-11","notes":"","roles":["ORGANIZATION"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2021-07-15","notes":"","parcelID":"20997","siteID":"18047","siteRegistry":false},{"dateNoted":"2014-02-19","notes":"","parcelID":"20679","siteID":"17038","siteRegistry":true},{"dateNoted":"2019-02-07","notes":"","parcelID":"19841","siteID":"19248","siteRegistry":false}]},{"uuid":"3c06d48a-8bdd-4f8d-930e-51fbfcda29e0","siteID":20023,"address":"88353 Jermey Avenue","latitude":50.0437,"longitude":-122.8816,"lastUpdated":"2016-05-08","city":"West Enid","region":"Vancouver Island/Coast","victoriaFile":"26250-20/11528","regionalFile":"N/A","parcelIDs":[7378184,6413736,6369839,1980287,345749],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2021-09-28","completed":"2015-05-13","initiated":"2020-03-26","ministryContact":"TURCOTTE ABDUL","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2018-10-29","completed":"2018-11-01","initiated":"2016-03-10","ministryContact":"GISLASON LAMBERT","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2015-04-30","completed":"2020-09-13","initiated":"2016-04-17","ministryContact":"MITCHELL OWEN","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2019-08-14","completed":"2018-10-22","initiated":"2016-06-23","ministryContact":"MEDHURST JULIANA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":true}],"participants":[{"name":"IPSUM","endDate":"2021-07-08","startDate":"2017-06-24","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"IPSUM","endDate":"2017-03-06","startDate":"2021-11-24","notes":"","roles":["ORGANIZATION"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2020-01-05","notes":"","parcelID":"17588","siteID":"20121","siteRegistry":false}]},{"uuid":"7f13b3ac-6c7f-4720-a861-cc8d63912091","siteID":16557,"address":"1429 Rau Harbors","latitude":58.087,"longitude":-129.9837,"lastUpdated":"2016-05-27","city":"East Raphaelleton","region":"Cariboo","victoriaFile":"26250-20/14058","regionalFile":"N/A","parcelIDs":[3915760,9893630,191105,3425149,5876706],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2015-06-01","completed":"2015-05-29","initiated":"2015-03-15","ministryContact":"NIKOLAUS AMOS","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2018-01-08","completed":"2020-02-19","initiated":"2015-05-11","ministryContact":"MARKS THERESE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":true}],"participants":[{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2020-09-23","startDate":"2016-09-02","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"IPSUM","endDate":"2016-10-01","startDate":"2016-03-29","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"AMET, DOLOR SIT","endDate":"2014-04-21","startDate":"2013-12-13","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","endDate":"2021-01-10","startDate":"2021-08-19","notes":"","roles":["EMPLOYEE"],"siteRegistry":false}],"associatedSites":[{"dateNoted":"2015-12-07","notes":"","parcelID":"16704","siteID":"19669","siteRegistry":false}]},{"uuid":"2e11cd85-2492-4107-a9a8-81375444e703","siteID":19807,"address":"36999 Ondricka Unions","latitude":58.0975,"longitude":-123.1498,"lastUpdated":"2018-12-08","city":"North Bennie","region":"Vancouver Island/Coast","victoriaFile":"26250-20/16134","regionalFile":"N/A","parcelIDs":[5197243,1849993,4742629,3648022,7753422],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2017-08-10","completed":"2019-09-13","initiated":"2018-08-27","ministryContact":"WELCH KEIRA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2023-03-03","completed":"2022-05-08","initiated":"2021-01-07","ministryContact":"ANKUNDING EVERETT","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":true}],"participants":[{"name":"AMET, DOLOR SIT","endDate":"2020-10-16","startDate":"2022-06-03","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"IPSUM","endDate":"2021-10-29","startDate":"2016-09-21","notes":"","roles":["EMPLOYEE"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2020-06-22","notes":"","parcelID":"17533","siteID":"18859","siteRegistry":false},{"dateNoted":"2021-08-28","notes":"","parcelID":"17503","siteID":"17898","siteRegistry":false}]},{"uuid":"f1ebd099-a7df-41cc-b6bd-08061ad5f385","siteID":17190,"address":"6383 Patsy Brook","latitude":48.8067,"longitude":-128.7717,"lastUpdated":"2020-12-05","city":"Sanford","region":"Kootenay","victoriaFile":"26250-20/2455","regionalFile":"N/A","parcelIDs":[1628696,592003,1904256,6910862,6886902],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2017-02-16","completed":"2022-07-26","initiated":"2015-06-19","ministryContact":"SCHOWALTER LEW","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2023-03-20","completed":"2019-04-03","initiated":"2021-01-08","ministryContact":"KEEBLER HANK","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2019-09-07","completed":"2020-12-21","initiated":"2022-01-30","ministryContact":"FISHER ELDA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2021-06-07","completed":"2020-04-25","initiated":"2018-08-09","ministryContact":"SCHMITT RAUL","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2022-02-17","completed":"2022-12-05","initiated":"2023-02-01","ministryContact":"ULLRICH JADA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":false}],"participants":[{"name":"AMET, DOLOR SIT","endDate":"2020-07-03","startDate":"2023-05-06","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","endDate":"2021-03-28","startDate":"2023-08-08","notes":"","roles":["ORGANIZATION"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2014-10-16","notes":"","parcelID":"17282","siteID":"17914","siteRegistry":false},{"dateNoted":"2014-01-27","notes":"","parcelID":"16845","siteID":"15481","siteRegistry":true},{"dateNoted":"2017-10-01","notes":"","parcelID":"20817","siteID":"16645","siteRegistry":true}]},{"uuid":"d58ba631-8f3c-4fa4-bf6a-4301a794c1c9","siteID":19762,"address":"40145 Quincy Lane","latitude":54.1689,"longitude":-128.8815,"lastUpdated":"2014-05-25","city":"Roobton","region":"Cariboo","victoriaFile":"26250-20/2863","regionalFile":"N/A","parcelIDs":[9705558,9817471,6677629,8440090,697656],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2022-06-18","completed":"2023-02-13","initiated":"2014-03-13","ministryContact":"ROBEL ARCH","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2020-05-01","completed":"2014-01-21","initiated":"2021-04-24","ministryContact":"SCHROEDER FELIX","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2023-03-04","completed":"2018-09-19","initiated":"2017-07-07","ministryContact":"HALVORSON LUCILE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2020-09-28","completed":"2022-03-04","initiated":"2019-08-24","ministryContact":"ALTENWERTH ZACKERY","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2019-07-15","completed":"2019-07-27","initiated":"2022-03-02","ministryContact":"DICKI-KOSS ALIYAH","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":true}],"participants":[{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2015-03-22","startDate":"2017-05-14","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2014-08-10","startDate":"2017-11-09","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"AMET, DOLOR SIT","endDate":"2022-08-29","startDate":"2018-08-18","notes":"","roles":["ORGANIZATION"],"siteRegistry":false}],"associatedSites":[{"dateNoted":"2018-11-22","notes":"","parcelID":"15400","siteID":"19728","siteRegistry":false},{"dateNoted":"2015-03-10","notes":"","parcelID":"17864","siteID":"18753","siteRegistry":true},{"dateNoted":"2013-11-05","notes":"","parcelID":"17875","siteID":"20930","siteRegistry":true}]},{"uuid":"2ce29f94-aa4c-45b1-ba55-05d271df9172","siteID":17217,"address":"19178 Leuschke Cliff","latitude":58.5221,"longitude":-124.4472,"lastUpdated":"2016-07-14","city":"North Amariborough","region":"Mainland/Southwest","victoriaFile":"26250-20/5116","regionalFile":"N/A","parcelIDs":[1736561,7428106,3650633,970744,3275152],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2017-01-12","completed":"2018-10-19","initiated":"2018-12-02","ministryContact":"BERNHARD TAMIA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2018-05-05","completed":"2016-06-05","initiated":"2018-04-11","ministryContact":"OSINSKI LONDON","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2016-06-11","completed":"2016-12-26","initiated":"2022-02-25","ministryContact":"SKILES AVERY","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2021-10-30","completed":"2018-11-13","initiated":"2019-06-12","ministryContact":"KOZEY MAXIMUS","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":true}],"participants":[{"name":"AMET, DOLOR SIT","endDate":"2022-06-25","startDate":"2015-01-30","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","endDate":"2019-02-23","startDate":"2016-04-14","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2018-01-12","startDate":"2021-02-18","notes":"","roles":["ORGANIZATION"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2016-09-12","notes":"","parcelID":"15401","siteID":"17237","siteRegistry":true},{"dateNoted":"2017-07-18","notes":"","parcelID":"16460","siteID":"16517","siteRegistry":true},{"dateNoted":"2018-01-12","notes":"","parcelID":"15315","siteID":"16839","siteRegistry":false}]},{"uuid":"79c1bb66-e8f5-48b0-8973-3e7178ea6d14","siteID":20758,"address":"47007 Stiedemann Port","latitude":54.5119,"longitude":-126.2661,"lastUpdated":"2017-04-04","city":"Haleystad","region":"Mainland/Southwest","victoriaFile":"26250-20/16767","regionalFile":"N/A","parcelIDs":[8410247,4649765,2498748,4014497,3284732],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2017-09-02","completed":"2021-10-23","initiated":"2021-04-18","ministryContact":"GREEN FREIDA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2017-10-12","completed":"2021-10-04","initiated":"2020-05-30","ministryContact":"SCHAMBERGER DARRICK","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2023-08-01","completed":"2021-01-03","initiated":"2020-02-29","ministryContact":"BOEHM MAC","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":true}],"participants":[{"name":"IPSUM","endDate":"2014-09-03","startDate":"2021-12-01","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","endDate":"2014-03-04","startDate":"2021-04-18","notes":"","roles":["EMPLOYEE"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2015-03-20","notes":"","parcelID":"19902","siteID":"19905","siteRegistry":false}]},{"uuid":"3f3c34c7-a04b-437d-bc5f-c0114e82cb7c","siteID":19197,"address":"9148 Rice Parks","latitude":56.6232,"longitude":-135.5355,"lastUpdated":"2015-02-18","city":"Lake Tiffany","region":"Kootenay","victoriaFile":"26250-20/12885","regionalFile":"N/A","parcelIDs":[2214995,1562480,3376206,4407990,227503],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2022-08-03","completed":"2020-07-22","initiated":"2016-01-19","ministryContact":"BECKER KAITLYN","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2020-08-24","completed":"2017-07-05","initiated":"2018-09-17","ministryContact":"METZ MAXIMILLIA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":false}],"participants":[{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2015-03-16","startDate":"2014-02-15","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"AMET, DOLOR SIT","endDate":"2016-04-22","startDate":"2016-05-27","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","endDate":"2019-05-16","startDate":"2020-10-25","notes":"","roles":["EMPLOYEE"],"siteRegistry":false}],"associatedSites":[{"dateNoted":"2015-05-25","notes":"","parcelID":"16899","siteID":"15784","siteRegistry":false}]},{"uuid":"da55521e-47e4-4812-afc2-3f1008c0462f","siteID":15949,"address":"249 Jazmin Ramp","latitude":55.5452,"longitude":-132.5855,"lastUpdated":"2021-07-25","city":"Honolulu","region":"Mainland/Southwest","victoriaFile":"26250-20/8518","regionalFile":"N/A","parcelIDs":[9550516,3750980,9628768,4422974,6521039],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2014-04-05","completed":"2020-03-14","initiated":"2015-12-11","ministryContact":"WALTER MISTY","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2019-05-26","completed":"2016-01-17","initiated":"2021-11-29","ministryContact":"TOY CLARK","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":false}],"participants":[{"name":"AMET, DOLOR SIT","endDate":"2020-09-30","startDate":"2018-01-10","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"IPSUM","endDate":"2021-02-25","startDate":"2015-01-19","notes":"","roles":["ORGANIZATION"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2017-05-26","notes":"","parcelID":"18542","siteID":"16673","siteRegistry":true},{"dateNoted":"2016-03-26","notes":"","parcelID":"17374","siteID":"20826","siteRegistry":false}]},{"uuid":"43663565-7f96-4fbe-a269-585805e18e8a","siteID":19778,"address":"461 Hirthe Street","latitude":51.5251,"longitude":-129.8461,"lastUpdated":"2015-03-13","city":"Brentfort","region":"Thompson-Okanagan","victoriaFile":"26250-20/17283","regionalFile":"N/A","parcelIDs":[7930033,4488934,7908136,4488173,3619076],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2017-07-22","completed":"2022-07-03","initiated":"2018-08-19","ministryContact":"JAKUBOWSKI MICAH","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2017-04-17","completed":"2019-02-21","initiated":"2019-08-21","ministryContact":"WELCH KRISTIN","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":true}],"participants":[{"name":"SHELL CANADA PRODUCTS","endDate":"2016-09-18","startDate":"2015-07-04","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"IPSUM","endDate":"2020-01-20","startDate":"2022-10-02","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"IPSUM","endDate":"2021-09-23","startDate":"2022-02-24","notes":"","roles":["ORGANIZATION"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2020-09-05","notes":"","parcelID":"20383","siteID":"19837","siteRegistry":true},{"dateNoted":"2017-07-23","notes":"","parcelID":"20546","siteID":"19773","siteRegistry":true}]},{"uuid":"24a2c48e-0de6-4278-b4db-61970286789d","siteID":19087,"address":"6121 Gregory Shore","latitude":58.2855,"longitude":-123.2616,"lastUpdated":"2023-03-05","city":"New Graciehaven","region":"Kootenay","victoriaFile":"26250-20/17100","regionalFile":"N/A","parcelIDs":[3972219,6986542,6467663,652071,4476478],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2015-06-30","completed":"2015-02-25","initiated":"2018-01-05","ministryContact":"TERRY KRISTIAN","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2018-01-06","completed":"2023-03-03","initiated":"2017-07-16","ministryContact":"HAND ADAN","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2018-04-02","completed":"2018-06-02","initiated":"2020-05-26","ministryContact":"LANGOSH HENDERSON","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2015-04-24","completed":"2022-12-24","initiated":"2015-06-21","ministryContact":"BLANDA LAVERN","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2020-10-15","completed":"2016-11-29","initiated":"2023-04-28","ministryContact":"BARTON DESTINEE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":false}],"participants":[{"name":"AMET, DOLOR SIT","endDate":"2019-07-01","startDate":"2017-03-10","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2022-09-26","startDate":"2022-05-12","notes":"","roles":["EMPLOYEE"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2013-10-07","notes":"","parcelID":"18748","siteID":"20023","siteRegistry":true}]},{"uuid":"009b51c6-1af7-4ea0-aec4-00cd8abfed61","siteID":19966,"address":"2145 Lyla Lodge","latitude":58.0554,"longitude":-129.078,"lastUpdated":"2017-03-01","city":"West Missouribury","region":" North Coast","victoriaFile":"26250-20/10828","regionalFile":"N/A","parcelIDs":[147090,9802183,8835217,2079290,1409614],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2015-05-19","completed":"2016-03-17","initiated":"2015-04-13","ministryContact":"TROMP EMMET","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2021-03-04","completed":"2022-07-18","initiated":"2023-06-22","ministryContact":"ROBEL WALTON","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2017-02-01","completed":"2016-12-15","initiated":"2019-08-29","ministryContact":"SCHOWALTER JETT","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2020-05-01","completed":"2014-02-02","initiated":"2023-04-27","ministryContact":"CASSIN REANNA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":true}],"participants":[{"name":"AMET, DOLOR SIT","endDate":"2015-06-11","startDate":"2013-10-31","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"AMET, DOLOR SIT","endDate":"2020-01-08","startDate":"2023-09-09","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","endDate":"2019-12-03","startDate":"2015-02-01","notes":"","roles":["EMPLOYEE"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2020-11-29","notes":"","parcelID":"18663","siteID":"17449","siteRegistry":true},{"dateNoted":"2015-03-10","notes":"","parcelID":"19800","siteID":"17012","siteRegistry":false}]},{"uuid":"b543cd0b-b702-478f-8260-66feb22c8410","siteID":20692,"address":"27902 Bradtke Lock","latitude":51.4351,"longitude":-137.3115,"lastUpdated":"2018-04-12","city":"East Mateo","region":" North Coast","victoriaFile":"26250-20/8534","regionalFile":"N/A","parcelIDs":[8943715,5325409,8443307,9904092,9094285],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2023-05-02","completed":"2018-05-26","initiated":"2014-07-10","ministryContact":"RAYNOR-BARROWS JUDGE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2017-06-13","completed":"2016-05-22","initiated":"2019-10-29","ministryContact":"GORCZANY ESTELL","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":true}],"participants":[{"name":"AMET, DOLOR SIT","endDate":"2021-01-17","startDate":"2022-09-21","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2023-02-27","startDate":"2022-12-07","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2022-08-24","startDate":"2022-04-25","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"AMET, DOLOR SIT","endDate":"2020-10-20","startDate":"2014-06-15","notes":"","roles":["ORGANIZATION"],"siteRegistry":false}],"associatedSites":[{"dateNoted":"2015-03-07","notes":"","parcelID":"15291","siteID":"17783","siteRegistry":false},{"dateNoted":"2015-04-23","notes":"","parcelID":"16602","siteID":"18969","siteRegistry":false}]},{"uuid":"fb033389-79da-4b27-8f12-f5ce1855654d","siteID":16810,"address":"437 Funk Heights","latitude":48.6744,"longitude":-120.933,"lastUpdated":"2015-12-09","city":"Charlotteview","region":" North Coast","victoriaFile":"26250-20/17408","regionalFile":"N/A","parcelIDs":[3638395,4488246,4791223,5857517,6844788],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2020-07-08","completed":"2018-06-12","initiated":"2017-07-29","ministryContact":"KIEHN CLOVIS","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2015-09-16","completed":"2019-01-09","initiated":"2019-05-23","ministryContact":"WINTHEISER RAMON","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2020-12-15","completed":"2019-04-30","initiated":"2016-12-08","ministryContact":"JASKOLSKI KARI","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2015-06-16","completed":"2015-12-27","initiated":"2018-03-14","ministryContact":"RENNER ELI","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2021-06-01","completed":"2020-06-25","initiated":"2017-05-31","ministryContact":"BARTOLETTI VERONICA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":false}],"participants":[{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2023-08-18","startDate":"2018-11-19","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","endDate":"2022-05-14","startDate":"2014-11-14","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"AMET, DOLOR SIT","endDate":"2023-07-17","startDate":"2014-10-06","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","endDate":"2019-11-09","startDate":"2022-12-13","notes":"","roles":["ORGANIZATION"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2023-06-15","notes":"","parcelID":"18820","siteID":"16916","siteRegistry":true},{"dateNoted":"2013-10-06","notes":"","parcelID":"17402","siteID":"20178","siteRegistry":false}]},{"uuid":"596b6e4b-c60d-423f-955f-6f684f4ec440","siteID":19536,"address":"3105 Shirley Glen","latitude":53.9436,"longitude":-127.7155,"lastUpdated":"2018-11-01","city":"North Tyreekport","region":"Mainland/Southwest","victoriaFile":"26250-20/18906","regionalFile":"N/A","parcelIDs":[6763866,7027995,4998769,6707992,4027299],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2022-10-25","completed":"2014-05-05","initiated":"2015-02-27","ministryContact":"BERNHARD JACKELINE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2019-04-27","completed":"2022-05-28","initiated":"2014-08-27","ministryContact":"ANDERSON BETHANY","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2019-09-18","completed":"2023-08-12","initiated":"2018-05-06","ministryContact":"KESSLER MIREYA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2020-07-07","completed":"2015-07-22","initiated":"2019-11-28","ministryContact":"LUEILWITZ ZORA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":false}],"participants":[{"name":"SHELL CANADA PRODUCTS","endDate":"2020-02-27","startDate":"2021-12-27","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","endDate":"2022-07-29","startDate":"2017-08-11","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2018-10-16","startDate":"2022-11-15","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","endDate":"2016-12-12","startDate":"2019-01-16","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"IPSUM","endDate":"2017-10-15","startDate":"2018-02-17","notes":"","roles":["EMPLOYEE"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2021-02-21","notes":"","parcelID":"17939","siteID":"19039","siteRegistry":false},{"dateNoted":"2017-11-15","notes":"","parcelID":"15986","siteID":"17454","siteRegistry":false}]},{"uuid":"54b07e90-377e-41ac-ae99-816fd1c76d07","siteID":15667,"address":"591 Dibbert Pines","latitude":54.7446,"longitude":-119.7465,"lastUpdated":"2017-04-28","city":"East Garnet","region":"Thompson-Okanagan","victoriaFile":"26250-20/12536","regionalFile":"N/A","parcelIDs":[4248714,5677158,2900502,9232544,1628173],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2017-04-22","completed":"2017-06-22","initiated":"2018-12-22","ministryContact":"STEUBER KRISTINA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2019-07-15","completed":"2021-10-09","initiated":"2018-06-08","ministryContact":"HAHN PAT","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":false}],"participants":[{"name":"AMET, DOLOR SIT","endDate":"2020-07-05","startDate":"2018-07-04","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","endDate":"2015-01-14","startDate":"2017-08-09","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","endDate":"2023-05-22","startDate":"2020-04-28","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2018-08-23","startDate":"2023-08-07","notes":"","roles":["EMPLOYEE"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2016-08-23","notes":"","parcelID":"19942","siteID":"15653","siteRegistry":false}]},{"uuid":"0625fcef-6a8d-46be-b501-45a26944b9e5","siteID":20915,"address":"889 Dorian Bypass","latitude":51.6866,"longitude":-124.9995,"lastUpdated":"2022-08-22","city":"Bennyworth","region":"Vancouver Island/Coast","victoriaFile":"26250-20/17375","regionalFile":"N/A","parcelIDs":[2994822,8442776,9167159,752742,2994439],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2020-06-28","completed":"2014-03-27","initiated":"2020-05-23","ministryContact":"POLLICH ORAN","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2016-12-27","completed":"2021-04-14","initiated":"2022-08-11","ministryContact":"CARROLL CLINTON","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2021-07-30","completed":"2022-04-04","initiated":"2016-03-02","ministryContact":"BINS MYRTLE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2023-08-06","completed":"2016-01-14","initiated":"2013-12-25","ministryContact":"ANKUNDING LAURETTA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":true}],"participants":[{"name":"AMET, DOLOR SIT","endDate":"2019-10-29","startDate":"2019-01-16","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"IPSUM","endDate":"2018-05-16","startDate":"2018-08-27","notes":"","roles":["EMPLOYEE"],"siteRegistry":false}],"associatedSites":[{"dateNoted":"2018-07-18","notes":"","parcelID":"16393","siteID":"17866","siteRegistry":true},{"dateNoted":"2014-02-22","notes":"","parcelID":"17614","siteID":"17036","siteRegistry":true}]},{"uuid":"2b8c4645-4a30-4e2b-b8f1-247f37506884","siteID":15653,"address":"97510 Madie Manors","latitude":52.271,"longitude":-118.4052,"lastUpdated":"2015-08-23","city":"Marjolaineshire","region":"Thompson-Okanagan","victoriaFile":"26250-20/3722","regionalFile":"N/A","parcelIDs":[361033,9930414,5665835,5653293,7598662],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2018-11-25","completed":"2017-12-21","initiated":"2022-06-05","ministryContact":"KUHLMAN DARION","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2018-06-05","completed":"2018-03-27","initiated":"2020-02-05","ministryContact":"HALVORSON CELIA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2015-02-17","completed":"2020-01-02","initiated":"2020-11-01","ministryContact":"LEDNER-LARSON CORALIE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2015-11-18","completed":"2015-04-21","initiated":"2019-06-28","ministryContact":"STARK ITZEL","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":true}],"participants":[{"name":"AMET, DOLOR SIT","endDate":"2017-10-01","startDate":"2017-03-15","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"IPSUM","endDate":"2019-04-05","startDate":"2020-05-03","notes":"","roles":["ORGANIZATION"],"siteRegistry":false}],"associatedSites":[{"dateNoted":"2014-12-21","notes":"","parcelID":"16915","siteID":"16559","siteRegistry":true},{"dateNoted":"2019-09-07","notes":"","parcelID":"20303","siteID":"18150","siteRegistry":false},{"dateNoted":"2021-03-14","notes":"","parcelID":"17372","siteID":"17164","siteRegistry":false}]},{"uuid":"48749c5b-a33a-4ada-8ea8-af850f66c5da","siteID":18775,"address":"8336 Bria Trail","latitude":48.3294,"longitude":-126.3835,"lastUpdated":"2021-09-03","city":"Port Brionnafort","region":"Cariboo","victoriaFile":"26250-20/16791","regionalFile":"N/A","parcelIDs":[1678888,326614,9310108,185415,8561171],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2017-11-29","completed":"2020-05-02","initiated":"2021-09-26","ministryContact":"SCHOWALTER LUCILE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2018-09-28","completed":"2017-01-02","initiated":"2022-05-25","ministryContact":"FADEL RHEA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2013-11-24","completed":"2017-01-24","initiated":"2015-11-28","ministryContact":"MITCHELL JERALD","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":false}],"participants":[{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2018-12-16","startDate":"2019-10-16","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2017-10-12","startDate":"2018-02-17","notes":"","roles":["EMPLOYEE"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2016-06-28","notes":"","parcelID":"20140","siteID":"16916","siteRegistry":false}]},{"uuid":"dc28eee2-0062-4593-932b-8c9f17ea0d43","siteID":16916,"address":"216 Marvin Path","latitude":58.0954,"longitude":-120.0524,"lastUpdated":"2017-11-04","city":"East Trevor","region":"Mainland/Southwest","victoriaFile":"26250-20/2652","regionalFile":"N/A","parcelIDs":[6135952,1663604,7415786,6300047,1299076],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2015-10-12","completed":"2016-04-03","initiated":"2016-04-26","ministryContact":"MONAHAN MARLON","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2022-02-08","completed":"2023-07-05","initiated":"2014-09-12","ministryContact":"KONOPELSKI LEORA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2022-08-11","completed":"2018-07-19","initiated":"2015-04-18","ministryContact":"O'CONNELL DELIA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2016-06-16","completed":"2021-04-27","initiated":"2023-04-23","ministryContact":"WYMAN MARYSE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2018-03-17","completed":"2020-11-08","initiated":"2023-06-01","ministryContact":"HAAG CREOLA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":true}],"participants":[{"name":"AMET, DOLOR SIT","endDate":"2016-12-09","startDate":"2017-07-10","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"AMET, DOLOR SIT","endDate":"2020-02-23","startDate":"2018-02-17","notes":"","roles":["ORGANIZATION"],"siteRegistry":false}],"associatedSites":[{"dateNoted":"2015-09-24","notes":"","parcelID":"16905","siteID":"19095","siteRegistry":false},{"dateNoted":"2023-05-12","notes":"","parcelID":"19868","siteID":"19380","siteRegistry":false},{"dateNoted":"2019-03-15","notes":"","parcelID":"19252","siteID":"15855","siteRegistry":false}]},{"uuid":"9b7ab543-ea33-4243-af21-ecd579ade886","siteID":19837,"address":"49911 Alan Spur","latitude":57.9517,"longitude":-137.2213,"lastUpdated":"2020-05-29","city":"Luisworth","region":"Thompson-Okanagan","victoriaFile":"26250-20/11791","regionalFile":"N/A","parcelIDs":[3011269,5862877,9004257,200377,5356615],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2020-05-29","completed":"2014-02-15","initiated":"2018-05-05","ministryContact":"ANDERSON JANICK","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2018-10-25","completed":"2014-09-01","initiated":"2018-02-09","ministryContact":"GUTMANN LULU","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":true}],"participants":[{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2021-09-04","startDate":"2015-01-10","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"AMET, DOLOR SIT","endDate":"2019-07-17","startDate":"2016-06-10","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","endDate":"2014-09-15","startDate":"2020-11-11","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"AMET, DOLOR SIT","endDate":"2021-04-04","startDate":"2016-11-28","notes":"","roles":["ORGANIZATION"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2015-03-28","notes":"","parcelID":"18192","siteID":"15919","siteRegistry":false}]},{"uuid":"48a6c44c-452e-4051-b700-66fb917d508e","siteID":16401,"address":"515 Effie Mills","latitude":54.2195,"longitude":-124.6451,"lastUpdated":"2021-07-05","city":"West Audrey","region":"Vancouver Island/Coast","victoriaFile":"26250-20/4696","regionalFile":"N/A","parcelIDs":[3912761,1560672,9901654,5873177,938604],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2014-04-25","completed":"2017-08-19","initiated":"2015-02-10","ministryContact":"FEIL CHRISTOPHE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2018-04-30","completed":"2023-01-18","initiated":"2013-10-13","ministryContact":"KEEBLER CHARLENE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2021-06-01","completed":"2015-04-12","initiated":"2019-08-03","ministryContact":"GOYETTE TYLER","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2020-12-02","completed":"2013-12-07","initiated":"2021-02-12","ministryContact":"KOSS JAEDEN","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":true}],"participants":[{"name":"AMET, DOLOR SIT","endDate":"2021-10-26","startDate":"2021-07-11","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2019-10-15","startDate":"2020-07-13","notes":"","roles":["EMPLOYEE"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2020-07-08","notes":"","parcelID":"18913","siteID":"19233","siteRegistry":true}]},{"uuid":"60bf1473-3582-401b-9e52-612c19b3fcd2","siteID":19048,"address":"93210 Lulu Fords","latitude":49.2413,"longitude":-135.5592,"lastUpdated":"2014-02-26","city":"South Rashawnbury","region":"Mainland/Southwest","victoriaFile":"26250-20/13159","regionalFile":"N/A","parcelIDs":[6755411,6020133,3316775,4657224,3213815],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2018-07-21","completed":"2014-05-05","initiated":"2017-06-06","ministryContact":"GREEN HERMAN","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2013-12-29","completed":"2016-03-05","initiated":"2014-01-26","ministryContact":"RUNTE PRECIOUS","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2016-01-22","completed":"2017-10-14","initiated":"2018-12-26","ministryContact":"THIEL CAROLINA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2019-05-23","completed":"2023-02-09","initiated":"2019-10-07","ministryContact":"KUB ALAINA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2013-12-05","completed":"2015-02-09","initiated":"2019-09-05","ministryContact":"LEHNER DERON","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":false}],"participants":[{"name":"SHELL CANADA PRODUCTS","endDate":"2018-02-15","startDate":"2014-10-10","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"AMET, DOLOR SIT","endDate":"2014-05-30","startDate":"2019-11-08","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"IPSUM","endDate":"2020-03-01","startDate":"2015-11-23","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2014-09-22","startDate":"2016-05-17","notes":"","roles":["ORGANIZATION"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2014-11-30","notes":"","parcelID":"15804","siteID":"16725","siteRegistry":true},{"dateNoted":"2016-11-14","notes":"","parcelID":"20981","siteID":"18269","siteRegistry":false},{"dateNoted":"2021-01-31","notes":"","parcelID":"15873","siteID":"19903","siteRegistry":false}]},{"uuid":"df2a5bb4-5d4e-4199-a759-2a8c476e2b13","siteID":19603,"address":"283 Ratke Center","latitude":51.9933,"longitude":-118.3944,"lastUpdated":"2019-04-10","city":"Lake Merlin","region":"Kootenay","victoriaFile":"26250-20/19075","regionalFile":"N/A","parcelIDs":[4596388,2194454,7457153,628106,1396639],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2019-10-02","completed":"2022-12-17","initiated":"2020-01-18","ministryContact":"ZBONCAK EZRA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2019-09-28","completed":"2023-04-22","initiated":"2015-12-11","ministryContact":"KRIS ADDISON","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2017-06-26","completed":"2018-05-28","initiated":"2013-12-17","ministryContact":"CUMMINGS KHALIL","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":false}],"participants":[{"name":"AMET, DOLOR SIT","endDate":"2021-11-11","startDate":"2015-10-16","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"IPSUM","endDate":"2015-03-26","startDate":"2022-04-03","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"IPSUM","endDate":"2016-08-02","startDate":"2015-05-25","notes":"","roles":["EMPLOYEE"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2014-07-27","notes":"","parcelID":"16888","siteID":"17260","siteRegistry":false},{"dateNoted":"2016-07-12","notes":"","parcelID":"15320","siteID":"19905","siteRegistry":true}]},{"uuid":"119fd2d8-6c93-4931-8afd-7ebe5658f577","siteID":15855,"address":"14099 Krajcik Branch","latitude":51.0964,"longitude":-118.1081,"lastUpdated":"2022-02-24","city":"Rolfsonport","region":"Cariboo","victoriaFile":"26250-20/6630","regionalFile":"N/A","parcelIDs":[6547275,3210587,1846434,368063,9226261],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2016-02-12","completed":"2023-01-25","initiated":"2022-09-24","ministryContact":"HAHN ULICES","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2015-01-11","completed":"2013-12-05","initiated":"2019-03-14","ministryContact":"SWANIAWSKI VIRGIE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2017-12-01","completed":"2021-11-06","initiated":"2014-02-13","ministryContact":"WALKER MARILIE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2023-06-20","completed":"2019-02-19","initiated":"2013-11-02","ministryContact":"KASSULKE MARJORY","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":true}],"participants":[{"name":"IPSUM","endDate":"2020-12-24","startDate":"2015-02-04","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"IPSUM","endDate":"2017-07-31","startDate":"2021-11-28","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","endDate":"2018-08-10","startDate":"2021-12-01","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"IPSUM","endDate":"2015-01-14","startDate":"2019-02-04","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","endDate":"2021-05-11","startDate":"2020-11-06","notes":"","roles":["ORGANIZATION"],"siteRegistry":false}],"associatedSites":[{"dateNoted":"2022-10-13","notes":"","parcelID":"19345","siteID":"17318","siteRegistry":true}]},{"uuid":"1442e3a9-6f37-4b3f-9848-c63ba822c9c5","siteID":20157,"address":"62372 Dietrich Land","latitude":56.985,"longitude":-120.9708,"lastUpdated":"2020-01-02","city":"Graceville","region":"Thompson-Okanagan","victoriaFile":"26250-20/13183","regionalFile":"N/A","parcelIDs":[5554201,3060161,4644273,8290275,4178281],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2015-12-19","completed":"2016-06-20","initiated":"2020-07-09","ministryContact":"HEIDENREICH PINK","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2015-11-15","completed":"2014-08-05","initiated":"2015-09-17","ministryContact":"YUNDT CLOVIS","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2015-08-16","completed":"2018-11-18","initiated":"2021-11-20","ministryContact":"O'REILLY BENNIE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2015-01-15","completed":"2017-08-15","initiated":"2016-02-29","ministryContact":"HILLL-BROWN ROSELYN","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false}],"participants":[{"name":"SHELL CANADA PRODUCTS","endDate":"2017-07-18","startDate":"2021-04-28","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2016-02-27","startDate":"2018-06-30","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"IPSUM","endDate":"2019-06-14","startDate":"2013-12-31","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"AMET, DOLOR SIT","endDate":"2014-06-26","startDate":"2020-11-22","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2014-07-17","startDate":"2020-10-17","notes":"","roles":["EMPLOYEE"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2020-11-11","notes":"","parcelID":"16373","siteID":"17463","siteRegistry":false},{"dateNoted":"2021-12-31","notes":"","parcelID":"15485","siteID":"16312","siteRegistry":true}]},{"uuid":"ed8ea8b0-72eb-4251-8e06-0b4fdb8b6032","siteID":17036,"address":"38405 Quentin Well","latitude":50.9532,"longitude":-119.6966,"lastUpdated":"2015-03-09","city":"Cathystad","region":"Thompson-Okanagan","victoriaFile":"26250-20/12328","regionalFile":"N/A","parcelIDs":[9812446,6394612,9322373,1523134,3300180],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2021-07-07","completed":"2019-12-30","initiated":"2014-05-26","ministryContact":"GIBSON-HERMANN LORINE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2014-01-30","completed":"2022-04-06","initiated":"2020-06-17","ministryContact":"TILLMAN KOBY","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2016-07-04","completed":"2015-01-15","initiated":"2021-12-28","ministryContact":"LANGWORTH GARRISON","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2016-10-31","completed":"2022-05-29","initiated":"2019-08-22","ministryContact":"FEENEY LOUIE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":false}],"participants":[{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2017-03-17","startDate":"2019-07-29","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"AMET, DOLOR SIT","endDate":"2016-09-05","startDate":"2018-05-23","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2019-11-27","startDate":"2023-05-21","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"IPSUM","endDate":"2021-01-15","startDate":"2021-05-22","notes":"","roles":["ORGANIZATION"],"siteRegistry":false}],"associatedSites":[{"dateNoted":"2019-10-24","notes":"","parcelID":"20155","siteID":"18676","siteRegistry":true}]},{"uuid":"d2bf3f10-7320-4f77-9689-dff3458ebbe5","siteID":15666,"address":"283 Schroeder Corner","latitude":49.4145,"longitude":-136.984,"lastUpdated":"2020-03-17","city":"Anabelville","region":"Thompson-Okanagan","victoriaFile":"26250-20/5807","regionalFile":"N/A","parcelIDs":[9802893,5864416,5796444,933379,7400870],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2021-04-07","completed":"2022-04-16","initiated":"2016-02-09","ministryContact":"KOHLER TONEY","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2020-10-18","completed":"2015-05-18","initiated":"2020-10-23","ministryContact":"STEUBER TOMMIE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2017-02-18","completed":"2016-03-07","initiated":"2014-10-04","ministryContact":"SPORER CULLEN","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2013-12-22","completed":"2023-07-12","initiated":"2014-10-24","ministryContact":"DIBBERT-HETTINGER TRISTIAN","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2023-06-20","completed":"2018-10-31","initiated":"2015-11-07","ministryContact":"HAGENES KILEY","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":true}],"participants":[{"name":"AMET, DOLOR SIT","endDate":"2015-01-14","startDate":"2023-01-27","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"IPSUM","endDate":"2021-10-20","startDate":"2016-10-17","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"IPSUM","endDate":"2023-06-24","startDate":"2020-07-17","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","endDate":"2020-11-07","startDate":"2021-05-15","notes":"","roles":["ORGANIZATION"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2017-06-06","notes":"","parcelID":"19573","siteID":"20441","siteRegistry":false},{"dateNoted":"2023-02-04","notes":"","parcelID":"16427","siteID":"17561","siteRegistry":true}]},{"uuid":"ef0cb58f-401f-4355-89be-265540d12c83","siteID":16193,"address":"24405 Madisyn Station","latitude":52.2268,"longitude":-127.0488,"lastUpdated":"2014-07-14","city":"Westboro","region":"Mainland/Southwest","victoriaFile":"26250-20/15106","regionalFile":"N/A","parcelIDs":[1562423,5199538,7605192,6704720,249520],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2014-02-05","completed":"2017-03-14","initiated":"2018-05-01","ministryContact":"HERMAN DEJUAN","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2021-09-11","completed":"2020-12-16","initiated":"2023-02-25","ministryContact":"TRANTOW ARTURO","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":false}],"participants":[{"name":"AMET, DOLOR SIT","endDate":"2020-07-28","startDate":"2021-12-04","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","endDate":"2021-09-25","startDate":"2022-07-29","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2015-11-05","startDate":"2018-12-20","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2020-08-16","startDate":"2019-05-16","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"IPSUM","endDate":"2014-10-20","startDate":"2022-09-18","notes":"","roles":["ORGANIZATION"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2015-03-23","notes":"","parcelID":"15206","siteID":"15361","siteRegistry":true}]},{"uuid":"680432a1-a785-4485-828a-78bfbfdaee35","siteID":19571,"address":"7133 MacGyver Harbors","latitude":49.5201,"longitude":-134.8348,"lastUpdated":"2018-03-01","city":"Paolochester","region":"Mainland/Southwest","victoriaFile":"26250-20/9298","regionalFile":"N/A","parcelIDs":[1566684,1234706,8123002,3668685,8734963],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2021-09-08","completed":"2019-07-16","initiated":"2014-02-15","ministryContact":"MEDHURST TREMAINE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2014-01-21","completed":"2014-08-28","initiated":"2016-04-03","ministryContact":"MCGLYNN FINN","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2013-10-08","completed":"2021-11-15","initiated":"2016-03-13","ministryContact":"O'KEEFE FLORIAN","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2020-11-06","completed":"2016-03-23","initiated":"2015-11-13","ministryContact":"AUER HAROLD","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":true}],"participants":[{"name":"IPSUM","endDate":"2022-08-22","startDate":"2022-03-03","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2020-04-09","startDate":"2021-01-17","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2014-09-22","startDate":"2016-04-14","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2018-07-05","startDate":"2017-08-01","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"IPSUM","endDate":"2021-11-21","startDate":"2015-08-19","notes":"","roles":["EMPLOYEE"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2015-03-02","notes":"","parcelID":"19727","siteID":"15609","siteRegistry":true}]},{"uuid":"b844a72f-2e51-416f-98b7-e7eec8b68af5","siteID":17318,"address":"2904 Schinner Junctions","latitude":54.8266,"longitude":-123.8415,"lastUpdated":"2013-10-26","city":"Fort Huldaview","region":"Thompson-Okanagan","victoriaFile":"26250-20/11058","regionalFile":"N/A","parcelIDs":[6854659,7599399,2699464,1384116,6710417],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2018-02-26","completed":"2014-05-12","initiated":"2017-02-25","ministryContact":"RITCHIE RICHARD","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2023-08-10","completed":"2015-01-19","initiated":"2023-07-31","ministryContact":"GERLACH BRIDGET","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2022-11-21","completed":"2020-12-02","initiated":"2020-01-13","ministryContact":"HARRIS WILLA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2022-07-23","completed":"2016-02-14","initiated":"2022-03-08","ministryContact":"GREENFELDER YESENIA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":true}],"participants":[{"name":"SHELL CANADA PRODUCTS","endDate":"2019-01-11","startDate":"2015-11-01","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"IPSUM","endDate":"2021-05-05","startDate":"2018-07-19","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2021-06-09","startDate":"2023-07-02","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","endDate":"2022-07-25","startDate":"2023-01-11","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","endDate":"2018-08-12","startDate":"2015-07-31","notes":"","roles":["ORGANIZATION"],"siteRegistry":false}],"associatedSites":[{"dateNoted":"2018-12-05","notes":"","parcelID":"17990","siteID":"17200","siteRegistry":false}]},{"uuid":"2ffb9519-c5c2-48de-bc0b-ec7410fb9ca8","siteID":17514,"address":"10967 Judson Greens","latitude":52.5965,"longitude":-118.5719,"lastUpdated":"2018-08-07","city":"New Krishaven","region":"Thompson-Okanagan","victoriaFile":"26250-20/17404","regionalFile":"N/A","parcelIDs":[9049687,9235026,5912185,7468457,7228883],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2014-08-10","completed":"2016-06-17","initiated":"2018-10-29","ministryContact":"DIBBERT KAITLIN","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2023-04-11","completed":"2020-06-11","initiated":"2015-10-05","ministryContact":"LESCH TONY","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2014-07-14","completed":"2020-05-31","initiated":"2018-07-24","ministryContact":"FRITSCH JEREMY","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2014-10-31","completed":"2016-07-29","initiated":"2019-05-16","ministryContact":"FAY FREDA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":false}],"participants":[{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2018-03-02","startDate":"2016-06-29","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2022-09-29","startDate":"2017-02-26","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2016-09-27","startDate":"2018-05-02","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","endDate":"2022-01-04","startDate":"2018-06-29","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"IPSUM","endDate":"2014-11-24","startDate":"2018-09-27","notes":"","roles":["EMPLOYEE"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2016-09-18","notes":"","parcelID":"19130","siteID":"17151","siteRegistry":true},{"dateNoted":"2022-05-25","notes":"","parcelID":"18250","siteID":"17412","siteRegistry":true},{"dateNoted":"2018-07-10","notes":"","parcelID":"18896","siteID":"17203","siteRegistry":true}]},{"uuid":"079895c4-7609-45eb-8091-62e68862fcf6","siteID":15273,"address":"472 Everette Underpass","latitude":52.5996,"longitude":-136.9152,"lastUpdated":"2014-09-26","city":"Fort Alexandra","region":" North Coast","victoriaFile":"26250-20/2462","regionalFile":"N/A","parcelIDs":[3617856,1243441,2067940,5965593,8039320],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2015-04-10","completed":"2021-07-25","initiated":"2022-04-23","ministryContact":"MCCULLOUGH KOBE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2017-06-28","completed":"2018-06-12","initiated":"2013-10-08","ministryContact":"SANFORD CIERRA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2023-08-25","completed":"2019-06-14","initiated":"2015-12-25","ministryContact":"BOGISICH TRUDIE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2019-09-03","completed":"2016-01-18","initiated":"2017-06-06","ministryContact":"BECHTELAR AUBREE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":true}],"participants":[{"name":"AMET, DOLOR SIT","endDate":"2015-01-12","startDate":"2023-03-27","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","endDate":"2019-09-18","startDate":"2022-12-31","notes":"","roles":["ORGANIZATION"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2023-05-23","notes":"","parcelID":"19200","siteID":"15229","siteRegistry":false}]},{"uuid":"6e77f72b-faf7-4375-b941-d2f8b7fcc10a","siteID":18676,"address":"97613 Robel Keys","latitude":58.288,"longitude":-134.6418,"lastUpdated":"2016-12-16","city":"Schustertown","region":"Kootenay","victoriaFile":"26250-20/1952","regionalFile":"N/A","parcelIDs":[9356782,8836028,3733132,3021045,9013440],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2020-02-01","completed":"2014-09-29","initiated":"2017-03-30","ministryContact":"KOEPP DEJAH","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2020-06-12","completed":"2018-02-13","initiated":"2022-08-04","ministryContact":"GUTMANN TRISHA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2019-01-03","completed":"2015-02-10","initiated":"2023-09-16","ministryContact":"BATZ SHANNON","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2020-12-14","completed":"2020-05-02","initiated":"2014-04-05","ministryContact":"SCHAMBERGER ALEXZANDER","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":false}],"participants":[{"name":"IPSUM","endDate":"2013-12-24","startDate":"2017-01-25","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2023-02-24","startDate":"2016-01-02","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","endDate":"2013-10-07","startDate":"2014-10-10","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","endDate":"2017-10-22","startDate":"2020-03-10","notes":"","roles":["ORGANIZATION"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2021-11-22","notes":"","parcelID":"20890","siteID":"16487","siteRegistry":true}]},{"uuid":"ec896d1f-1a70-45d3-a606-bffac9b418d3","siteID":15689,"address":"6417 Sporer Garden","latitude":48.7699,"longitude":-129.3498,"lastUpdated":"2015-01-18","city":"West Marques","region":" North Coast","victoriaFile":"26250-20/12591","regionalFile":"N/A","parcelIDs":[583589,1380808,3215830,6999927,1215192],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2023-07-19","completed":"2015-12-18","initiated":"2019-12-29","ministryContact":"HAMMES JAYLIN","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2017-09-17","completed":"2020-03-23","initiated":"2014-05-12","ministryContact":"RUTHERFORD CLARISSA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":true}],"participants":[{"name":"AMET, DOLOR SIT","endDate":"2022-01-26","startDate":"2023-01-13","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","endDate":"2015-05-19","startDate":"2022-10-15","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"IPSUM","endDate":"2022-04-15","startDate":"2015-07-11","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"IPSUM","endDate":"2022-03-26","startDate":"2018-12-16","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2015-07-31","startDate":"2021-07-12","notes":"","roles":["EMPLOYEE"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2017-01-30","notes":"","parcelID":"17574","siteID":"16814","siteRegistry":true},{"dateNoted":"2018-09-08","notes":"","parcelID":"17036","siteID":"18368","siteRegistry":false}]},{"uuid":"89ad36e4-ffd7-4da3-9e60-c80397028b07","siteID":16517,"address":"70015 Alexis Corner","latitude":50.8396,"longitude":-127.7127,"lastUpdated":"2014-04-19","city":"Fort Susiemouth","region":"Vancouver Island/Coast","victoriaFile":"26250-20/17048","regionalFile":"N/A","parcelIDs":[2684992,1133563,8746492,8521531,166890],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2022-09-18","completed":"2017-02-02","initiated":"2022-02-16","ministryContact":"WIZA CARMINE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2017-08-21","completed":"2018-01-02","initiated":"2016-07-19","ministryContact":"MANTE KAILEE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2021-03-24","completed":"2015-03-24","initiated":"2021-07-11","ministryContact":"STOKES CHARLOTTE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":true}],"participants":[{"name":"IPSUM","endDate":"2021-03-21","startDate":"2016-08-03","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","endDate":"2021-03-31","startDate":"2014-10-15","notes":"","roles":["EMPLOYEE"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2019-08-18","notes":"","parcelID":"20285","siteID":"17318","siteRegistry":false},{"dateNoted":"2020-10-17","notes":"","parcelID":"17820","siteID":"20223","siteRegistry":true}]},{"uuid":"7c9ce76a-b955-4351-a450-80360ede944a","siteID":18368,"address":"22125 Hermann Extensions","latitude":56.5485,"longitude":-123.6431,"lastUpdated":"2014-05-03","city":"Elvabury","region":"Cariboo","victoriaFile":"26250-20/8656","regionalFile":"N/A","parcelIDs":[6461564,5313137,7394251,8736096,3210699],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2020-01-21","completed":"2018-01-24","initiated":"2022-01-11","ministryContact":"GERLACH NICOLAS","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2020-11-23","completed":"2017-10-03","initiated":"2017-02-25","ministryContact":"KIRLIN MITTIE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2014-07-27","completed":"2013-10-27","initiated":"2018-04-08","ministryContact":"FARRELL KELVIN","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false}],"participants":[{"name":"IPSUM","endDate":"2021-07-28","startDate":"2021-01-18","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2021-07-29","startDate":"2019-08-02","notes":"","roles":["EMPLOYEE"],"siteRegistry":false}],"associatedSites":[{"dateNoted":"2019-04-26","notes":"","parcelID":"16687","siteID":"20773","siteRegistry":true},{"dateNoted":"2022-11-19","notes":"","parcelID":"16216","siteID":"16193","siteRegistry":true},{"dateNoted":"2019-11-12","notes":"","parcelID":"16051","siteID":"17057","siteRegistry":false}]},{"uuid":"5561c309-964a-4f19-a6d6-156292a77462","siteID":15212,"address":"9072 Stehr Garden","latitude":57.1388,"longitude":-118.8763,"lastUpdated":"2022-05-04","city":"Schinnerside","region":"Thompson-Okanagan","victoriaFile":"26250-20/5307","regionalFile":"N/A","parcelIDs":[3995145,773888,2815600,759291,4661385],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2016-08-10","completed":"2021-06-29","initiated":"2021-11-20","ministryContact":"KLING-CUMMINGS GRIFFIN","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2016-06-03","completed":"2015-08-27","initiated":"2019-02-18","ministryContact":"TREMBLAY TIMMOTHY","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":true}],"participants":[{"name":"AMET, DOLOR SIT","endDate":"2022-10-05","startDate":"2022-09-16","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","endDate":"2014-02-05","startDate":"2018-01-08","notes":"","roles":["ORGANIZATION"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2020-05-21","notes":"","parcelID":"15512","siteID":"20641","siteRegistry":true}]},{"uuid":"ded16510-480f-4ba4-af55-a830380c8e43","siteID":20826,"address":"929 Eveline Estates","latitude":55.1169,"longitude":-129.3873,"lastUpdated":"2015-04-20","city":"West Nicoview","region":"Vancouver Island/Coast","victoriaFile":"26250-20/8339","regionalFile":"N/A","parcelIDs":[7295635,9148175,905764,8102517,7015907],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2015-03-30","completed":"2018-05-29","initiated":"2016-06-13","ministryContact":"MULLER VADA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2020-08-12","completed":"2021-08-04","initiated":"2014-02-23","ministryContact":"DIETRICH MAC","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2015-01-10","completed":"2019-05-03","initiated":"2014-10-17","ministryContact":"TILLMAN JAMMIE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":true}],"participants":[{"name":"SHELL CANADA PRODUCTS","endDate":"2023-07-03","startDate":"2023-03-03","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"AMET, DOLOR SIT","endDate":"2017-09-18","startDate":"2017-09-19","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"IPSUM","endDate":"2018-02-12","startDate":"2022-03-20","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"IPSUM","endDate":"2017-03-31","startDate":"2018-01-10","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"AMET, DOLOR SIT","endDate":"2021-08-30","startDate":"2019-01-25","notes":"","roles":["EMPLOYEE"],"siteRegistry":false}],"associatedSites":[{"dateNoted":"2018-10-26","notes":"","parcelID":"17439","siteID":"17463","siteRegistry":true}]},{"uuid":"1fc5e2e1-a656-42df-9bb3-8f82ce91bc18","siteID":20555,"address":"6761 Towne Burgs","latitude":49.2504,"longitude":-135.7515,"lastUpdated":"2018-04-18","city":"Jenkinsview","region":"Cariboo","victoriaFile":"26250-20/9603","regionalFile":"N/A","parcelIDs":[1324279,5940273,8314692,8056149,2138029],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2015-12-09","completed":"2022-08-31","initiated":"2023-07-13","ministryContact":"MORISSETTE OFELIA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2018-12-17","completed":"2018-04-27","initiated":"2014-09-03","ministryContact":"PREDOVIC ALICE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":true}],"participants":[{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2020-02-01","startDate":"2023-01-06","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","endDate":"2016-05-06","startDate":"2022-11-16","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"AMET, DOLOR SIT","endDate":"2016-04-26","startDate":"2015-10-07","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"IPSUM","endDate":"2019-07-15","startDate":"2020-01-29","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2020-08-05","startDate":"2020-05-31","notes":"","roles":["ORGANIZATION"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2015-08-04","notes":"","parcelID":"16638","siteID":"19837","siteRegistry":true}]},{"uuid":"07502cc6-1a98-4e1a-bd90-425e84bc8273","siteID":20211,"address":"831 Shaylee Ridges","latitude":57.3661,"longitude":-136.1172,"lastUpdated":"2020-06-05","city":"New Patienceborough","region":"Kootenay","victoriaFile":"26250-20/17732","regionalFile":"N/A","parcelIDs":[484432,8655186,5497449,3220531,9641381],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2020-09-01","completed":"2023-01-16","initiated":"2020-02-02","ministryContact":"MEDHURST TAD","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2021-10-25","completed":"2020-03-24","initiated":"2015-04-17","ministryContact":"WATERS DESSIE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":false}],"participants":[{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2015-02-25","startDate":"2020-05-20","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2022-02-19","startDate":"2016-11-21","notes":"","roles":["EMPLOYEE"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2020-05-29","notes":"","parcelID":"16312","siteID":"20788","siteRegistry":false},{"dateNoted":"2020-06-06","notes":"","parcelID":"17502","siteID":"19072","siteRegistry":false},{"dateNoted":"2017-11-13","notes":"","parcelID":"19431","siteID":"17304","siteRegistry":true}]},{"uuid":"d2b2214f-c060-44f9-92ef-18c2c9e9bfe6","siteID":15892,"address":"2784 Balistreri Hills","latitude":56.5237,"longitude":-137.8421,"lastUpdated":"2020-10-11","city":"Lowell","region":"Mainland/Southwest","victoriaFile":"26250-20/9025","regionalFile":"N/A","parcelIDs":[3471546,3208072,829814,935223,429459],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2017-07-13","completed":"2014-10-16","initiated":"2017-05-18","ministryContact":"SWANIAWSKI JOHN","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2014-07-07","completed":"2015-05-01","initiated":"2022-10-17","ministryContact":"SAUER LEANNE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2014-02-21","completed":"2015-08-11","initiated":"2016-07-19","ministryContact":"KIHN FERNANDO","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":false}],"participants":[{"name":"AMET, DOLOR SIT","endDate":"2019-03-13","startDate":"2016-08-17","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"AMET, DOLOR SIT","endDate":"2013-12-04","startDate":"2020-06-20","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","endDate":"2017-05-30","startDate":"2021-07-22","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"IPSUM","endDate":"2016-04-28","startDate":"2023-04-11","notes":"","roles":["EMPLOYEE"],"siteRegistry":false}],"associatedSites":[{"dateNoted":"2016-08-15","notes":"","parcelID":"18065","siteID":"19197","siteRegistry":true},{"dateNoted":"2017-05-07","notes":"","parcelID":"18629","siteID":"20915","siteRegistry":false}]},{"uuid":"2b17d0c8-ffc7-459a-9718-b7d26ca62f4d","siteID":19391,"address":"71875 Deckow Fort","latitude":49.4737,"longitude":-123.9388,"lastUpdated":"2021-05-18","city":"Fort Brookfield","region":"Vancouver Island/Coast","victoriaFile":"26250-20/3698","regionalFile":"N/A","parcelIDs":[9983523,674301,817429,2003504,7974602],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2021-03-26","completed":"2015-06-24","initiated":"2023-07-24","ministryContact":"SCHULTZ DEDRIC","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2019-11-27","completed":"2022-01-08","initiated":"2014-09-27","ministryContact":"HALVORSON GRANT","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2016-08-31","completed":"2017-05-03","initiated":"2019-05-21","ministryContact":"HAYES JULES","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2017-01-25","completed":"2014-03-20","initiated":"2016-10-20","ministryContact":"WINTHEISER LANEY","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2020-02-16","completed":"2021-05-30","initiated":"2019-11-21","ministryContact":"HERMANN JOESPH","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":false}],"participants":[{"name":"AMET, DOLOR SIT","endDate":"2015-01-28","startDate":"2016-12-03","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","endDate":"2018-10-26","startDate":"2019-09-28","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","endDate":"2016-05-04","startDate":"2014-07-05","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2019-06-13","startDate":"2022-03-23","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","endDate":"2021-09-25","startDate":"2020-09-27","notes":"","roles":["EMPLOYEE"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2022-06-04","notes":"","parcelID":"17447","siteID":"18969","siteRegistry":false},{"dateNoted":"2021-08-25","notes":"","parcelID":"19959","siteID":"17449","siteRegistry":false},{"dateNoted":"2020-02-22","notes":"","parcelID":"16608","siteID":"19872","siteRegistry":false}]},{"uuid":"f122d440-2fe7-4cbf-ae78-7769d86f1263","siteID":17414,"address":"7156 Lynch Inlet","latitude":49.8562,"longitude":-135.9871,"lastUpdated":"2014-01-03","city":"Velvachester","region":" North Coast","victoriaFile":"26250-20/10433","regionalFile":"N/A","parcelIDs":[4900025,1867596,2426583,9138419,2294409],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2014-06-30","completed":"2016-07-25","initiated":"2019-02-16","ministryContact":"LEDNER ISABELL","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2019-04-29","completed":"2023-03-19","initiated":"2023-04-09","ministryContact":"FISHER LANE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2017-04-16","completed":"2014-06-23","initiated":"2020-08-15","ministryContact":"SHIELDS CHANEL","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2022-05-23","completed":"2016-07-24","initiated":"2023-02-15","ministryContact":"WISOKY CECILIA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":false}],"participants":[{"name":"SHELL CANADA PRODUCTS","endDate":"2020-03-20","startDate":"2021-01-24","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2016-07-16","startDate":"2022-01-02","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2022-03-11","startDate":"2014-07-26","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"AMET, DOLOR SIT","endDate":"2020-03-21","startDate":"2023-08-09","notes":"","roles":["EMPLOYEE"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2017-02-05","notes":"","parcelID":"17078","siteID":"18969","siteRegistry":true}]},{"uuid":"a540e3ce-1bfb-4d68-9bfd-d71c609e131e","siteID":16793,"address":"2310 Keebler Hollow","latitude":52.4986,"longitude":-124.3014,"lastUpdated":"2022-12-15","city":"North Dustin","region":"Cariboo","victoriaFile":"26250-20/6557","regionalFile":"N/A","parcelIDs":[3942731,6394025,7043329,8776630,9441531],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2020-07-05","completed":"2021-03-24","initiated":"2018-07-14","ministryContact":"WELCH GERDA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2013-12-23","completed":"2022-11-09","initiated":"2020-10-21","ministryContact":"MOSCISKI-KUPHAL MELYNA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false}],"participants":[{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2018-09-18","startDate":"2022-08-08","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2016-03-07","startDate":"2018-11-28","notes":"","roles":["EMPLOYEE"],"siteRegistry":false}],"associatedSites":[{"dateNoted":"2016-11-23","notes":"","parcelID":"17239","siteID":"16966","siteRegistry":true},{"dateNoted":"2015-02-01","notes":"","parcelID":"16359","siteID":"18652","siteRegistry":true},{"dateNoted":"2022-02-13","notes":"","parcelID":"20372","siteID":"16810","siteRegistry":false}]},{"uuid":"cc4dd794-6344-4fbd-822d-c2b8bea7eb40","siteID":15609,"address":"7417 Stroman Rapid","latitude":51.068,"longitude":-133.9376,"lastUpdated":"2020-12-15","city":"Gislasonton","region":" North Coast","victoriaFile":"26250-20/13927","regionalFile":"N/A","parcelIDs":[9934842,7091060,5315768,8472006,5159041],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2013-10-26","completed":"2018-09-05","initiated":"2018-06-10","ministryContact":"MOHR CORY","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2014-05-01","completed":"2014-06-21","initiated":"2014-05-24","ministryContact":"MORAR LAFAYETTE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2015-01-11","completed":"2019-10-19","initiated":"2019-05-13","ministryContact":"BECKER CONOR","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2020-05-19","completed":"2021-06-04","initiated":"2021-12-11","ministryContact":"ZEMLAK JASMIN","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2021-06-19","completed":"2015-09-28","initiated":"2015-01-06","ministryContact":"CASSIN ALEXANE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":true}],"participants":[{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2014-08-10","startDate":"2018-07-13","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","endDate":"2014-05-18","startDate":"2017-05-03","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"AMET, DOLOR SIT","endDate":"2019-07-15","startDate":"2017-01-02","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"AMET, DOLOR SIT","endDate":"2019-05-16","startDate":"2014-10-13","notes":"","roles":["ORGANIZATION"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2021-04-16","notes":"","parcelID":"15957","siteID":"18001","siteRegistry":false}]},{"uuid":"d789549b-1d8c-42f2-8ce1-5fbb15205999","siteID":19796,"address":"57215 Tyler Junctions","latitude":48.772,"longitude":-131.3969,"lastUpdated":"2013-11-13","city":"Rathville","region":"Thompson-Okanagan","victoriaFile":"26250-20/9577","regionalFile":"N/A","parcelIDs":[162384,4109186,9143100,5787826,695998],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2022-11-23","completed":"2023-02-17","initiated":"2014-04-24","ministryContact":"PURDY ERNIE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2022-08-03","completed":"2022-05-15","initiated":"2020-03-05","ministryContact":"KUVALIS TRESSA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2015-03-24","completed":"2020-07-15","initiated":"2015-03-17","ministryContact":"MULLER SADYE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2023-07-27","completed":"2020-06-09","initiated":"2020-07-16","ministryContact":"JONES-TURCOTTE ASTRID","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":false}],"participants":[{"name":"IPSUM","endDate":"2015-01-07","startDate":"2022-03-29","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","endDate":"2017-05-28","startDate":"2022-05-19","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","endDate":"2017-07-27","startDate":"2020-08-14","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"IPSUM","endDate":"2017-07-10","startDate":"2023-09-17","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"IPSUM","endDate":"2019-01-21","startDate":"2019-10-27","notes":"","roles":["ORGANIZATION"],"siteRegistry":false}],"associatedSites":[{"dateNoted":"2020-10-13","notes":"","parcelID":"18887","siteID":"16814","siteRegistry":false},{"dateNoted":"2018-03-20","notes":"","parcelID":"19995","siteID":"15695","siteRegistry":false},{"dateNoted":"2014-04-15","notes":"","parcelID":"19033","siteID":"20023","siteRegistry":true}]},{"uuid":"f55e5677-d28e-403e-93f4-b9a512900777","siteID":19124,"address":"3571 Reichel Expressway","latitude":55.5323,"longitude":-119.1717,"lastUpdated":"2014-03-03","city":"Fort Armandochester","region":"Vancouver Island/Coast","victoriaFile":"26250-20/12891","regionalFile":"N/A","parcelIDs":[9812470,3976214,3381301,7444772,3496691],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2016-05-29","completed":"2014-10-25","initiated":"2018-06-24","ministryContact":"LUEILWITZ PATIENCE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2022-11-08","completed":"2023-01-14","initiated":"2023-05-08","ministryContact":"HARRIS FLORENCIO","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2022-12-31","completed":"2020-06-16","initiated":"2018-01-26","ministryContact":"LUBOWITZ RUBEN","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2020-07-26","completed":"2021-08-19","initiated":"2016-01-12","ministryContact":"KONOPELSKI SANTIAGO","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":true}],"participants":[{"name":"IPSUM","endDate":"2018-11-14","startDate":"2021-05-28","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","endDate":"2014-04-07","startDate":"2018-08-18","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"AMET, DOLOR SIT","endDate":"2018-06-17","startDate":"2016-07-21","notes":"","roles":["ORGANIZATION"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2016-02-26","notes":"","parcelID":"16219","siteID":"19701","siteRegistry":false},{"dateNoted":"2018-06-06","notes":"","parcelID":"16093","siteID":"16487","siteRegistry":false},{"dateNoted":"2020-01-07","notes":"","parcelID":"20708","siteID":"15656","siteRegistry":true}]},{"uuid":"20d022f2-30fc-42e2-9eee-905bf891f05e","siteID":16736,"address":"147 Lewis Run","latitude":48.4502,"longitude":-122.6054,"lastUpdated":"2021-09-16","city":"New Eunice","region":"Vancouver Island/Coast","victoriaFile":"26250-20/19765","regionalFile":"N/A","parcelIDs":[866117,6627716,4720104,6076826,3943086],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2016-05-25","completed":"2021-06-04","initiated":"2016-09-30","ministryContact":"KSHLERIN SUZANNE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2022-10-17","completed":"2020-07-14","initiated":"2022-10-25","ministryContact":"BECKER LINDSAY","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2023-06-03","completed":"2015-01-29","initiated":"2015-04-13","ministryContact":"REILLY EVALYN","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2018-12-27","completed":"2018-08-26","initiated":"2023-04-01","ministryContact":"CREMIN DOUG","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2022-01-14","completed":"2014-06-13","initiated":"2018-05-05","ministryContact":"CRUICKSHANK CARISSA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":true}],"participants":[{"name":"IPSUM","endDate":"2015-11-30","startDate":"2017-08-06","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2014-09-04","startDate":"2018-10-23","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"IPSUM","endDate":"2016-03-16","startDate":"2018-01-03","notes":"","roles":["EMPLOYEE"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2017-01-08","notes":"","parcelID":"15570","siteID":"17935","siteRegistry":true},{"dateNoted":"2017-06-17","notes":"","parcelID":"18844","siteID":"17237","siteRegistry":false}]},{"uuid":"011a7f6c-aa94-4c11-bf24-c0cefad6b2ee","siteID":15229,"address":"149 Russel Spurs","latitude":51.9367,"longitude":-127.9694,"lastUpdated":"2021-12-07","city":"Malikastead","region":"Cariboo","victoriaFile":"26250-20/10345","regionalFile":"N/A","parcelIDs":[2050613,3793377,5457101,3759594,7471992],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2014-02-14","completed":"2021-01-22","initiated":"2016-04-09","ministryContact":"HALEY KENDRICK","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2019-08-08","completed":"2016-02-03","initiated":"2014-07-26","ministryContact":"KUHIC CLOYD","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2023-07-01","completed":"2014-12-02","initiated":"2017-01-25","ministryContact":"HESSEL CREOLA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2015-10-19","completed":"2017-07-03","initiated":"2018-01-17","ministryContact":"SPINKA ROY","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":true}],"participants":[{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2015-07-08","startDate":"2018-10-05","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"IPSUM","endDate":"2021-06-30","startDate":"2020-06-12","notes":"","roles":["EMPLOYEE"],"siteRegistry":false}],"associatedSites":[{"dateNoted":"2023-08-12","notes":"","parcelID":"20210","siteID":"17237","siteRegistry":true},{"dateNoted":"2020-08-17","notes":"","parcelID":"19279","siteID":"20443","siteRegistry":false}]},{"uuid":"430445f4-3d66-469d-8ed3-376dc82cb923","siteID":19038,"address":"4328 Keven Ports","latitude":58.1227,"longitude":-125.5549,"lastUpdated":"2022-12-11","city":"Linden","region":"Mainland/Southwest","victoriaFile":"26250-20/12189","regionalFile":"N/A","parcelIDs":[9343295,271598,6366018,394682,5338921],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2020-10-13","completed":"2020-03-15","initiated":"2022-12-14","ministryContact":"CRUICKSHANK GEORGETTE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2014-10-17","completed":"2019-09-19","initiated":"2016-12-06","ministryContact":"UPTON SCARLETT","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":true}],"participants":[{"name":"AMET, DOLOR SIT","endDate":"2020-09-13","startDate":"2017-12-18","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2018-05-06","startDate":"2014-11-25","notes":"","roles":["ORGANIZATION"],"siteRegistry":false}],"associatedSites":[{"dateNoted":"2019-02-05","notes":"","parcelID":"15707","siteID":"19837","siteRegistry":true},{"dateNoted":"2018-08-05","notes":"","parcelID":"17260","siteID":"19897","siteRegistry":false},{"dateNoted":"2014-11-18","notes":"","parcelID":"16887","siteID":"16673","siteRegistry":true}]},{"uuid":"c7184929-87d5-4ad0-9359-c22b34584ef0","siteID":18799,"address":"749 Willms Expressway","latitude":51.6681,"longitude":-122.0844,"lastUpdated":"2018-09-12","city":"Diamond Bar","region":"Vancouver Island/Coast","victoriaFile":"26250-20/12379","regionalFile":"N/A","parcelIDs":[6276539,8069858,9646097,5865975,9368552],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2022-05-09","completed":"2019-12-02","initiated":"2014-01-31","ministryContact":"STIEDEMANN MALVINA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2020-02-15","completed":"2016-01-03","initiated":"2020-06-16","ministryContact":"STEHR RASHAWN","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2020-10-20","completed":"2021-01-24","initiated":"2018-04-07","ministryContact":"HILLL REVA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2019-01-21","completed":"2022-07-17","initiated":"2022-06-05","ministryContact":"STROMAN ELISE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":false}],"participants":[{"name":"IPSUM","endDate":"2020-03-09","startDate":"2018-04-07","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","endDate":"2020-06-22","startDate":"2017-03-03","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","endDate":"2023-01-31","startDate":"2015-08-06","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2014-12-26","startDate":"2022-06-01","notes":"","roles":["ORGANIZATION"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2021-02-22","notes":"","parcelID":"20705","siteID":"17151","siteRegistry":false},{"dateNoted":"2023-01-11","notes":"","parcelID":"19313","siteID":"16645","siteRegistry":false},{"dateNoted":"2020-02-01","notes":"","parcelID":"15296","siteID":"19966","siteRegistry":true}]},{"uuid":"ab0cdab2-33dc-4888-b085-7c3314a2dd77","siteID":17200,"address":"481 Stark Corner","latitude":51.9462,"longitude":-128.7985,"lastUpdated":"2021-07-10","city":"Port Antoniamouth","region":"Vancouver Island/Coast","victoriaFile":"26250-20/1737","regionalFile":"N/A","parcelIDs":[4213521,1562245,6862994,9456698,3104011],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2017-01-24","completed":"2017-04-11","initiated":"2017-01-05","ministryContact":"HARTMANN ALVIS","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2015-06-12","completed":"2014-06-26","initiated":"2023-07-12","ministryContact":"FISHER ALEEN","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2021-01-13","completed":"2017-05-23","initiated":"2022-10-23","ministryContact":"HARVEY NELSON","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":false}],"participants":[{"name":"IPSUM","endDate":"2015-04-09","startDate":"2020-02-09","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"AMET, DOLOR SIT","endDate":"2020-11-08","startDate":"2014-12-25","notes":"","roles":["ORGANIZATION"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2018-08-24","notes":"","parcelID":"20982","siteID":"17322","siteRegistry":false},{"dateNoted":"2020-01-05","notes":"","parcelID":"17766","siteID":"16703","siteRegistry":false},{"dateNoted":"2021-05-17","notes":"","parcelID":"17112","siteID":"19409","siteRegistry":true}]},{"uuid":"7353d1c6-1a79-4d8a-8eda-d6e27fc2f613","siteID":20788,"address":"39884 Arvid Square","latitude":58.3453,"longitude":-123.3734,"lastUpdated":"2018-04-10","city":"Hodkiewiczshire","region":"Mainland/Southwest","victoriaFile":"26250-20/7904","regionalFile":"N/A","parcelIDs":[4100275,7986906,7019428,8325608,3005743],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2022-05-02","completed":"2015-08-14","initiated":"2017-03-02","ministryContact":"STOLTENBERG GEORGE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2015-10-01","completed":"2014-06-08","initiated":"2018-10-10","ministryContact":"JACOBS WALLACE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2018-06-23","completed":"2019-02-27","initiated":"2016-09-18","ministryContact":"HIRTHE RAUL","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2016-09-08","completed":"2013-12-03","initiated":"2021-04-24","ministryContact":"KUHN ANGELA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false}],"participants":[{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2019-02-15","startDate":"2023-05-10","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"IPSUM","endDate":"2017-09-18","startDate":"2020-05-06","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2016-04-19","startDate":"2023-03-04","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2019-01-17","startDate":"2019-02-18","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"IPSUM","endDate":"2019-12-10","startDate":"2021-04-27","notes":"","roles":["EMPLOYEE"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2014-01-19","notes":"","parcelID":"15312","siteID":"17036","siteRegistry":true}]},{"uuid":"6533d50c-3579-4c4f-acfd-b36597baf2b6","siteID":18373,"address":"80156 Swaniawski Common","latitude":54.0101,"longitude":-131.8212,"lastUpdated":"2021-06-23","city":"West Makennafield","region":"Mainland/Southwest","victoriaFile":"26250-20/2311","regionalFile":"N/A","parcelIDs":[6139964,459792,1544806,7151936,7025673],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2017-03-05","completed":"2020-11-19","initiated":"2022-06-01","ministryContact":"WUCKERT JARON","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2016-10-10","completed":"2022-08-04","initiated":"2017-02-17","ministryContact":"BRAUN DAYNA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":true}],"participants":[{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2018-08-16","startDate":"2016-11-16","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2022-02-18","startDate":"2022-11-07","notes":"","roles":["EMPLOYEE"],"siteRegistry":false}],"associatedSites":[{"dateNoted":"2020-06-07","notes":"","parcelID":"18932","siteID":"19572","siteRegistry":true},{"dateNoted":"2014-05-09","notes":"","parcelID":"18071","siteID":"17898","siteRegistry":false}]},{"uuid":"0cf0f216-e689-45c0-a01c-dff1a9e9ec9d","siteID":20661,"address":"27376 Schaefer Bridge","latitude":53.3836,"longitude":-130.5919,"lastUpdated":"2016-10-02","city":"South Kobestead","region":"Vancouver Island/Coast","victoriaFile":"26250-20/1761","regionalFile":"N/A","parcelIDs":[7662717,4261997,9966350,8977619,8717283],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2015-10-06","completed":"2023-05-29","initiated":"2023-09-11","ministryContact":"BRADTKE SERENA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2023-09-03","completed":"2017-06-10","initiated":"2017-07-07","ministryContact":"AUFDERHAR DONNY","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2023-07-29","completed":"2021-03-25","initiated":"2017-12-03","ministryContact":"YOST FRIEDA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false}],"participants":[{"name":"SHELL CANADA PRODUCTS","endDate":"2021-10-14","startDate":"2019-10-29","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"IPSUM","endDate":"2020-04-18","startDate":"2014-02-13","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","endDate":"2023-01-13","startDate":"2014-07-31","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","endDate":"2020-09-09","startDate":"2015-07-16","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"IPSUM","endDate":"2018-02-20","startDate":"2015-01-13","notes":"","roles":["EMPLOYEE"],"siteRegistry":false}],"associatedSites":[{"dateNoted":"2017-10-14","notes":"","parcelID":"20932","siteID":"18269","siteRegistry":true},{"dateNoted":"2021-07-16","notes":"","parcelID":"17705","siteID":"20906","siteRegistry":true}]},{"uuid":"fab2f6c9-7301-4496-8e6e-cfbe3621b8dc","siteID":20947,"address":"30653 Russel Forest","latitude":50.6302,"longitude":-135.5513,"lastUpdated":"2022-08-27","city":"Josestad","region":"Cariboo","victoriaFile":"26250-20/11915","regionalFile":"N/A","parcelIDs":[5271709,8488872,9172178,665633,2544964],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2017-06-30","completed":"2019-06-15","initiated":"2017-05-28","ministryContact":"UPTON-BAYER CANDELARIO","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2019-02-05","completed":"2019-10-21","initiated":"2016-08-13","ministryContact":"NIENOW ALBINA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2023-02-08","completed":"2023-05-14","initiated":"2022-04-16","ministryContact":"JAKUBOWSKI SADIE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2014-07-04","completed":"2015-02-05","initiated":"2021-05-03","ministryContact":"HINTZ KATHRYNE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2018-03-09","completed":"2019-10-01","initiated":"2020-04-11","ministryContact":"VON AALIYAH","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":true}],"participants":[{"name":"IPSUM","endDate":"2018-01-10","startDate":"2019-11-17","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"IPSUM","endDate":"2022-06-24","startDate":"2016-10-26","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","endDate":"2016-03-06","startDate":"2020-12-05","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"AMET, DOLOR SIT","endDate":"2019-12-26","startDate":"2014-06-06","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2022-05-14","startDate":"2020-12-22","notes":"","roles":["ORGANIZATION"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2013-11-12","notes":"","parcelID":"20530","siteID":"16916","siteRegistry":true},{"dateNoted":"2014-10-03","notes":"","parcelID":"17439","siteID":"15784","siteRegistry":true}]},{"uuid":"2d043386-77c9-4d5b-8cf8-2244ad6a0042","siteID":17011,"address":"70545 D'Amore Road","latitude":48.4059,"longitude":-126.7245,"lastUpdated":"2021-11-24","city":"New Corrine","region":"Thompson-Okanagan","victoriaFile":"26250-20/1270","regionalFile":"N/A","parcelIDs":[1409774,5185391,8462506,2751642,2982654],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2018-03-07","completed":"2014-09-11","initiated":"2021-05-22","ministryContact":"PARKER EMELIE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2014-07-13","completed":"2023-07-05","initiated":"2015-07-30","ministryContact":"ROHAN D'ANGELO","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2021-06-22","completed":"2020-03-27","initiated":"2019-08-09","ministryContact":"BOYER ANABEL","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2021-05-05","completed":"2022-03-09","initiated":"2015-10-27","ministryContact":"SMITH MABELLE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2020-02-22","completed":"2020-06-23","initiated":"2022-07-17","ministryContact":"SCHAMBERGER JEROME","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":false}],"participants":[{"name":"AMET, DOLOR SIT","endDate":"2015-12-25","startDate":"2016-03-26","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","endDate":"2022-05-20","startDate":"2022-09-15","notes":"","roles":["EMPLOYEE"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2014-02-10","notes":"","parcelID":"17593","siteID":"19039","siteRegistry":false}]},{"uuid":"a0815481-0cec-432c-aaa1-d6c8ccc2b44f","siteID":16229,"address":"61360 Lynch Lock","latitude":58.6711,"longitude":-128.2438,"lastUpdated":"2017-09-25","city":"East Peter","region":"Kootenay","victoriaFile":"26250-20/17387","regionalFile":"N/A","parcelIDs":[1356795,9269074,7472239,3809895,3604551],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2019-05-28","completed":"2020-10-10","initiated":"2019-09-14","ministryContact":"RUNTE IMMANUEL","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2014-02-17","completed":"2014-12-30","initiated":"2022-10-23","ministryContact":"BOYLE-WIEGAND JAMARCUS","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false}],"participants":[{"name":"IPSUM","endDate":"2021-03-21","startDate":"2021-08-08","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"IPSUM","endDate":"2021-09-20","startDate":"2022-10-26","notes":"","roles":["EMPLOYEE"],"siteRegistry":false}],"associatedSites":[{"dateNoted":"2017-04-26","notes":"","parcelID":"16413","siteID":"17275","siteRegistry":false}]},{"uuid":"a4ceff76-90a9-4431-9beb-caed16cb4eec","siteID":18135,"address":"53589 Hand Haven","latitude":51.0869,"longitude":-121.9083,"lastUpdated":"2016-07-31","city":"Pacochaworth","region":"Kootenay","victoriaFile":"26250-20/10200","regionalFile":"N/A","parcelIDs":[9624827,5372373,8364990,1766426,5590194],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2018-08-30","completed":"2014-02-04","initiated":"2022-12-30","ministryContact":"HESSEL ROSSIE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2014-06-08","completed":"2016-04-27","initiated":"2015-04-25","ministryContact":"RUSSEL ERA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":false}],"participants":[{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2020-07-10","startDate":"2018-09-19","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2021-01-04","startDate":"2016-08-27","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2021-09-18","startDate":"2016-01-25","notes":"","roles":["ORGANIZATION"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2014-02-21","notes":"","parcelID":"15399","siteID":"19741","siteRegistry":false},{"dateNoted":"2023-03-23","notes":"","parcelID":"18000","siteID":"20869","siteRegistry":false}]},{"uuid":"5823804c-c70d-42bc-92ab-e567031da8fa","siteID":20717,"address":"813 Demario Points","latitude":49.6601,"longitude":-119.863,"lastUpdated":"2018-09-17","city":"Rockford","region":"Mainland/Southwest","victoriaFile":"26250-20/19865","regionalFile":"N/A","parcelIDs":[8968487,8325840,3063921,6145142,3668376],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2015-09-28","completed":"2022-12-09","initiated":"2015-05-05","ministryContact":"MURRAY-DECKOW CONSTANCE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2015-11-18","completed":"2019-03-29","initiated":"2016-04-13","ministryContact":"HAMILL MAXIMO","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2014-08-11","completed":"2017-05-28","initiated":"2022-08-27","ministryContact":"ROHAN GEOFFREY","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":true}],"participants":[{"name":"SHELL CANADA PRODUCTS","endDate":"2020-02-11","startDate":"2016-12-14","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"AMET, DOLOR SIT","endDate":"2014-02-16","startDate":"2019-06-12","notes":"","roles":["ORGANIZATION"],"siteRegistry":false}],"associatedSites":[{"dateNoted":"2021-06-27","notes":"","parcelID":"18728","siteID":"16133","siteRegistry":false},{"dateNoted":"2023-09-08","notes":"","parcelID":"18782","siteID":"19075","siteRegistry":false},{"dateNoted":"2017-05-08","notes":"","parcelID":"15211","siteID":"19778","siteRegistry":false}]},{"uuid":"edfcefc7-aeb6-4f0c-b16e-086c0c16ce38","siteID":20930,"address":"1751 Grady Mall","latitude":54.3616,"longitude":-121.1189,"lastUpdated":"2019-08-19","city":"East Budcester","region":"Mainland/Southwest","victoriaFile":"26250-20/12168","regionalFile":"N/A","parcelIDs":[6512842,3047915,6914575,829233,7733966],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2018-12-20","completed":"2016-05-19","initiated":"2016-08-29","ministryContact":"KOZEY CRISTAL","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2022-09-25","completed":"2019-07-16","initiated":"2017-11-23","ministryContact":"JACOBI RODOLFO","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":true}],"participants":[{"name":"IPSUM","endDate":"2016-01-27","startDate":"2021-01-01","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2017-11-20","startDate":"2021-07-29","notes":"","roles":["EMPLOYEE"],"siteRegistry":false}],"associatedSites":[{"dateNoted":"2019-03-06","notes":"","parcelID":"16919","siteID":"18859","siteRegistry":true}]},{"uuid":"e7ab6ab4-fee7-4f3a-a609-0d5a8ee4a672","siteID":20178,"address":"70043 Hamill Pine","latitude":50.7262,"longitude":-121.0374,"lastUpdated":"2021-09-07","city":"Fort Herta","region":"Thompson-Okanagan","victoriaFile":"26250-20/6047","regionalFile":"N/A","parcelIDs":[7995530,1675176,6863097,5340879,199985],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2021-10-24","completed":"2018-11-23","initiated":"2013-12-14","ministryContact":"AUFDERHAR EVERETTE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2019-01-04","completed":"2016-03-02","initiated":"2019-08-23","ministryContact":"FLATLEY VALENTIN","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2023-08-30","completed":"2015-12-29","initiated":"2016-05-11","ministryContact":"BODE MELYSSA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2021-05-05","completed":"2020-09-30","initiated":"2019-04-12","ministryContact":"CRIST REESE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2020-09-06","completed":"2018-01-22","initiated":"2017-10-19","ministryContact":"SCHUSTER VERNER","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":true}],"participants":[{"name":"SHELL CANADA PRODUCTS","endDate":"2019-11-01","startDate":"2018-01-26","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"AMET, DOLOR SIT","endDate":"2018-11-30","startDate":"2016-10-10","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2020-04-20","startDate":"2023-08-29","notes":"","roles":["ORGANIZATION"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2021-06-11","notes":"","parcelID":"18836","siteID":"17448","siteRegistry":false}]},{"uuid":"ccbe39bc-0d22-4d90-9023-7b1af0fbb89d","siteID":17074,"address":"6200 Caitlyn Ramp","latitude":49.2384,"longitude":-122.6844,"lastUpdated":"2019-07-15","city":"Lake Kelleyshire","region":"Cariboo","victoriaFile":"26250-20/16511","regionalFile":"N/A","parcelIDs":[4753072,7165475,3579586,4014857,2579975],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2019-06-27","completed":"2021-05-29","initiated":"2016-06-25","ministryContact":"GERHOLD HOBART","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2016-12-02","completed":"2015-09-29","initiated":"2015-02-23","ministryContact":"OKUNEVA IMOGENE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2014-12-12","completed":"2017-04-19","initiated":"2021-04-09","ministryContact":"VONRUEDEN PIPER","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false}],"participants":[{"name":"IPSUM","endDate":"2018-07-14","startDate":"2023-08-19","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"IPSUM","endDate":"2019-10-18","startDate":"2013-11-08","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","endDate":"2015-04-15","startDate":"2016-03-15","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"AMET, DOLOR SIT","endDate":"2019-05-20","startDate":"2015-07-08","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2019-05-26","startDate":"2022-05-05","notes":"","roles":["ORGANIZATION"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2015-12-30","notes":"","parcelID":"16213","siteID":"20211","siteRegistry":false},{"dateNoted":"2020-02-02","notes":"","parcelID":"16625","siteID":"19762","siteRegistry":false}]},{"uuid":"7f88e2e1-3ad2-4e0f-835d-9951de38d0ab","siteID":16703,"address":"32129 Doris Courts","latitude":52.9389,"longitude":-128.3399,"lastUpdated":"2023-02-16","city":"Lake Berneice","region":" North Coast","victoriaFile":"26250-20/2179","regionalFile":"N/A","parcelIDs":[2377825,1864668,7711805,6807224,3706002],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2016-07-25","completed":"2014-11-30","initiated":"2014-10-03","ministryContact":"CASSIN OLA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2022-02-22","completed":"2015-12-03","initiated":"2019-06-28","ministryContact":"FARRELL RAMONA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2016-07-31","completed":"2018-07-12","initiated":"2021-11-01","ministryContact":"BARTOLETTI-KING JAMARCUS","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2017-01-03","completed":"2014-07-16","initiated":"2014-08-10","ministryContact":"JENKINS MEAGAN","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2014-01-28","completed":"2021-07-08","initiated":"2022-05-22","ministryContact":"CORMIER JULES","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":true}],"participants":[{"name":"IPSUM","endDate":"2020-10-24","startDate":"2016-11-08","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2014-10-15","startDate":"2020-05-30","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"IPSUM","endDate":"2022-07-14","startDate":"2018-01-04","notes":"","roles":["ORGANIZATION"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2020-07-12","notes":"","parcelID":"16866","siteID":"18047","siteRegistry":false},{"dateNoted":"2016-06-23","notes":"","parcelID":"20179","siteID":"19903","siteRegistry":true}]},{"uuid":"40bd5675-1fb9-41e9-a6d0-9c53a17851e0","siteID":17050,"address":"364 Felicita Ville","latitude":52.7189,"longitude":-137.8472,"lastUpdated":"2016-09-11","city":"Rosalynhaven","region":"Cariboo","victoriaFile":"26250-20/6640","regionalFile":"N/A","parcelIDs":[5230155,4995275,1559380,2072552,259201],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2022-05-03","completed":"2016-03-05","initiated":"2018-10-19","ministryContact":"LIND ZOEY","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2014-11-01","completed":"2016-02-19","initiated":"2023-02-27","ministryContact":"SCHMELER PATRICK","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2015-11-02","completed":"2022-02-25","initiated":"2014-07-06","ministryContact":"JOHNSTON HAILEE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":false}],"participants":[{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2023-03-23","startDate":"2023-04-01","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","endDate":"2022-11-16","startDate":"2016-01-14","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"IPSUM","endDate":"2022-04-02","startDate":"2016-09-26","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"IPSUM","endDate":"2016-01-15","startDate":"2019-06-01","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"IPSUM","endDate":"2018-09-12","startDate":"2018-03-13","notes":"","roles":["EMPLOYEE"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2016-07-11","notes":"","parcelID":"17179","siteID":"15654","siteRegistry":true},{"dateNoted":"2023-06-04","notes":"","parcelID":"17143","siteID":"16673","siteRegistry":false},{"dateNoted":"2020-02-29","notes":"","parcelID":"19517","siteID":"17190","siteRegistry":true}]},{"uuid":"b5b54482-2a1e-484e-9601-a46b4af2951b","siteID":19819,"address":"378 Chesley Course","latitude":48.7975,"longitude":-121.8271,"lastUpdated":"2021-02-21","city":"Lake Laneworth","region":"Kootenay","victoriaFile":"26250-20/9184","regionalFile":"N/A","parcelIDs":[1618632,2816910,4620587,3265650,4194508],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2023-07-09","completed":"2019-05-14","initiated":"2018-11-27","ministryContact":"LEFFLER KIERA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2016-07-01","completed":"2022-09-06","initiated":"2015-05-16","ministryContact":"KLEIN AHMAD","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":true}],"participants":[{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2018-10-23","startDate":"2015-02-04","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","endDate":"2015-10-12","startDate":"2015-05-30","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2014-07-20","startDate":"2018-10-24","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","endDate":"2016-08-03","startDate":"2022-12-02","notes":"","roles":["EMPLOYEE"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2017-08-11","notes":"","parcelID":"16448","siteID":"15361","siteRegistry":false},{"dateNoted":"2016-02-05","notes":"","parcelID":"16567","siteID":"15654","siteRegistry":true}]},{"uuid":"ed2a7d16-ceed-4065-941d-dadda86ff477","siteID":19351,"address":"9403 Jacobson Path","latitude":58.1959,"longitude":-131.7107,"lastUpdated":"2019-03-25","city":"Westview","region":" North Coast","victoriaFile":"26250-20/5096","regionalFile":"N/A","parcelIDs":[1639896,6741054,3463012,2349487,2817121],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2020-12-04","completed":"2013-12-13","initiated":"2014-08-17","ministryContact":"CORKERY ICIE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2014-08-30","completed":"2015-12-15","initiated":"2020-03-05","ministryContact":"ROOB KACIE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2022-07-24","completed":"2017-10-25","initiated":"2014-04-24","ministryContact":"CARTER KEVON","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2022-02-27","completed":"2022-04-12","initiated":"2021-07-06","ministryContact":"ONDRICKA JED","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2019-06-06","completed":"2016-05-16","initiated":"2019-02-12","ministryContact":"BOSCO DANE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":false}],"participants":[{"name":"AMET, DOLOR SIT","endDate":"2017-04-23","startDate":"2018-07-07","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","endDate":"2021-07-08","startDate":"2022-01-23","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"AMET, DOLOR SIT","endDate":"2016-04-07","startDate":"2016-07-03","notes":"","roles":["EMPLOYEE"],"siteRegistry":false}],"associatedSites":[{"dateNoted":"2017-02-04","notes":"","parcelID":"15613","siteID":"17304","siteRegistry":false},{"dateNoted":"2016-12-30","notes":"","parcelID":"18314","siteID":"15653","siteRegistry":true}]},{"uuid":"ff563f65-15a1-4e8f-9884-6f84442c6abf","siteID":17572,"address":"6304 Israel Row","latitude":52.4025,"longitude":-124.0437,"lastUpdated":"2013-11-12","city":"New Emerald","region":"Thompson-Okanagan","victoriaFile":"26250-20/4122","regionalFile":"N/A","parcelIDs":[5545119,8119763,9668668,1175280,3754510],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2021-10-20","completed":"2022-03-05","initiated":"2020-06-16","ministryContact":"OLSON NYAH","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2021-02-07","completed":"2022-10-21","initiated":"2013-11-06","ministryContact":"JASKOLSKI KELVIN","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":true}],"participants":[{"name":"AMET, DOLOR SIT","endDate":"2017-09-13","startDate":"2020-09-26","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","endDate":"2019-07-27","startDate":"2016-10-18","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","endDate":"2019-11-25","startDate":"2016-08-30","notes":"","roles":["EMPLOYEE"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2020-11-01","notes":"","parcelID":"16353","siteID":"17226","siteRegistry":true},{"dateNoted":"2022-11-08","notes":"","parcelID":"19367","siteID":"16736","siteRegistry":false}]},{"uuid":"731f8d4b-3b4e-4fb8-9e2a-d0f847175ce4","siteID":20986,"address":"4295 Jennie Ferry","latitude":55.0137,"longitude":-134.9303,"lastUpdated":"2021-03-24","city":"Lake Letitia","region":"Cariboo","victoriaFile":"26250-20/10343","regionalFile":"N/A","parcelIDs":[3686120,1948396,7443928,1681032,6807310],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2023-04-25","completed":"2020-06-16","initiated":"2020-06-13","ministryContact":"RUNOLFSDOTTIR LUDIE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2023-02-08","completed":"2017-01-25","initiated":"2020-12-12","ministryContact":"BOEHM CHARLEY","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2021-06-30","completed":"2022-10-12","initiated":"2018-11-18","ministryContact":"STREICH MADISEN","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2019-01-15","completed":"2015-06-02","initiated":"2020-05-22","ministryContact":"PRICE SHAKIRA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2021-09-22","completed":"2013-11-19","initiated":"2018-09-07","ministryContact":"HERMAN SHERWOOD","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":false}],"participants":[{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2016-02-01","startDate":"2016-02-25","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","endDate":"2018-08-05","startDate":"2017-02-27","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"AMET, DOLOR SIT","endDate":"2016-01-01","startDate":"2018-01-30","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2018-01-17","startDate":"2023-03-11","notes":"","roles":["EMPLOYEE"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2014-11-06","notes":"","parcelID":"18591","siteID":"16222","siteRegistry":true},{"dateNoted":"2016-02-12","notes":"","parcelID":"19731","siteID":"20211","siteRegistry":false}]},{"uuid":"08f0b7e6-9335-46d4-aecc-33982226aa7c","siteID":18695,"address":"367 Lillie Spurs","latitude":53.1604,"longitude":-128.6859,"lastUpdated":"2021-08-31","city":"Keyonfield","region":" North Coast","victoriaFile":"26250-20/8685","regionalFile":"N/A","parcelIDs":[7948437,9077638,4513721,2322374,7725399],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2017-10-20","completed":"2018-07-12","initiated":"2020-03-22","ministryContact":"SWANIAWSKI MARIELA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2022-07-31","completed":"2021-07-01","initiated":"2014-03-26","ministryContact":"BAYER OFELIA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":true}],"participants":[{"name":"AMET, DOLOR SIT","endDate":"2013-12-10","startDate":"2015-06-13","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"AMET, DOLOR SIT","endDate":"2019-01-08","startDate":"2014-10-05","notes":"","roles":["ORGANIZATION"],"siteRegistry":false}],"associatedSites":[{"dateNoted":"2020-02-05","notes":"","parcelID":"16140","siteID":"19233","siteRegistry":false},{"dateNoted":"2019-11-20","notes":"","parcelID":"18182","siteID":"17012","siteRegistry":true}]},{"uuid":"e8221d8c-c189-484b-8fea-44c35571a46f","siteID":17038,"address":"215 Nienow Extensions","latitude":53.7124,"longitude":-136.4697,"lastUpdated":"2014-12-14","city":"Bobbyburgh","region":"Vancouver Island/Coast","victoriaFile":"26250-20/17122","regionalFile":"N/A","parcelIDs":[8746540,6226683,684980,6768722,1938256],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2018-08-08","completed":"2022-11-06","initiated":"2015-06-02","ministryContact":"MAYERT ELOISE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2020-02-23","completed":"2017-06-06","initiated":"2017-08-10","ministryContact":"PADBERG EDEN","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":true}],"participants":[{"name":"AMET, DOLOR SIT","endDate":"2023-07-12","startDate":"2019-10-06","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","endDate":"2021-02-10","startDate":"2020-10-23","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"IPSUM","endDate":"2018-11-16","startDate":"2017-06-17","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","endDate":"2023-03-14","startDate":"2014-04-20","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"AMET, DOLOR SIT","endDate":"2021-05-09","startDate":"2014-07-20","notes":"","roles":["EMPLOYEE"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2016-09-19","notes":"","parcelID":"18327","siteID":"20930","siteRegistry":true}]},{"uuid":"4f538981-dd76-42c7-89c6-e36209d8cbb0","siteID":16351,"address":"64095 Reichert Dale","latitude":57.9585,"longitude":-119.3271,"lastUpdated":"2014-07-23","city":"South Nyasiafurt","region":"Thompson-Okanagan","victoriaFile":"26250-20/1833","regionalFile":"N/A","parcelIDs":[6974862,8178939,4453334,7339380,7087646],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2015-03-22","completed":"2014-09-23","initiated":"2018-03-26","ministryContact":"SCHOEN KACIE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2014-10-16","completed":"2023-08-29","initiated":"2021-06-22","ministryContact":"MURPHY CALLIE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2016-07-02","completed":"2018-12-26","initiated":"2015-08-16","ministryContact":"PROSACCO SUZANNE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":false}],"participants":[{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2017-03-09","startDate":"2019-09-14","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"AMET, DOLOR SIT","endDate":"2014-11-15","startDate":"2020-10-10","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2018-09-15","startDate":"2014-11-27","notes":"","roles":["ORGANIZATION"],"siteRegistry":false}],"associatedSites":[{"dateNoted":"2020-04-12","notes":"","parcelID":"18190","siteID":"17412","siteRegistry":false},{"dateNoted":"2020-03-20","notes":"","parcelID":"17749","siteID":"17113","siteRegistry":false}]},{"uuid":"6500d8db-02ae-451e-95ab-cbb3870e1ade","siteID":18047,"address":"40818 Watsica Trail","latitude":58.2308,"longitude":-127.6677,"lastUpdated":"2022-01-24","city":"Lindafield","region":"Mainland/Southwest","victoriaFile":"26250-20/3132","regionalFile":"N/A","parcelIDs":[1909427,8445083,6439060,5111760,313189],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2021-04-29","completed":"2020-02-17","initiated":"2020-05-22","ministryContact":"GERHOLD ELIAS","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2018-03-06","completed":"2020-12-25","initiated":"2018-12-15","ministryContact":"VANDERVORT KATELIN","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2019-03-24","completed":"2022-05-03","initiated":"2021-02-24","ministryContact":"LESCH SANFORD","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2017-01-22","completed":"2018-04-27","initiated":"2023-07-04","ministryContact":"GUTMANN VIOLETTE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2014-10-25","completed":"2023-05-11","initiated":"2014-10-23","ministryContact":"ZIEME CANDICE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":false}],"participants":[{"name":"IPSUM","endDate":"2015-11-25","startDate":"2022-12-17","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","endDate":"2021-03-28","startDate":"2022-01-19","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","endDate":"2021-04-16","startDate":"2019-05-26","notes":"","roles":["ORGANIZATION"],"siteRegistry":false}],"associatedSites":[{"dateNoted":"2022-11-02","notes":"","parcelID":"20635","siteID":"19039","siteRegistry":true},{"dateNoted":"2019-07-04","notes":"","parcelID":"18847","siteID":"19872","siteRegistry":false}]},{"uuid":"9051a29e-65f3-434e-a7c3-68a93e286b88","siteID":16723,"address":"990 Allene Loaf","latitude":50,"longitude":-131.8873,"lastUpdated":"2018-05-06","city":"Stehrton","region":"Kootenay","victoriaFile":"26250-20/18775","regionalFile":"N/A","parcelIDs":[8931160,6905948,4451476,1751599,8193466],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2015-06-03","completed":"2014-08-18","initiated":"2016-03-11","ministryContact":"HAND KAVON","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2022-01-04","completed":"2019-01-05","initiated":"2018-05-25","ministryContact":"SCHINNER DARIO","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2015-05-25","completed":"2019-12-19","initiated":"2017-10-21","ministryContact":"JAKUBOWSKI TAYLOR","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2016-12-26","completed":"2021-06-29","initiated":"2014-08-18","ministryContact":"BUCKRIDGE-LARSON EDWARD","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":false}],"participants":[{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2018-04-03","startDate":"2015-12-14","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"IPSUM","endDate":"2014-01-31","startDate":"2014-02-18","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","endDate":"2022-06-29","startDate":"2018-04-10","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2021-07-12","startDate":"2023-02-16","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"AMET, DOLOR SIT","endDate":"2017-09-30","startDate":"2015-07-15","notes":"","roles":["ORGANIZATION"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2018-08-22","notes":"","parcelID":"15709","siteID":"15656","siteRegistry":true},{"dateNoted":"2022-02-15","notes":"","parcelID":"15891","siteID":"16793","siteRegistry":true},{"dateNoted":"2018-05-13","notes":"","parcelID":"20937","siteID":"18838","siteRegistry":false}]},{"uuid":"79729799-f4c9-41aa-8965-e9c7136e2d13","siteID":20366,"address":"918 Ramona Radial","latitude":51.166,"longitude":-120.2894,"lastUpdated":"2017-05-05","city":"West Maybell","region":" North Coast","victoriaFile":"26250-20/5979","regionalFile":"N/A","parcelIDs":[7665543,829156,6331600,9877698,2676854],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2021-11-23","completed":"2019-09-14","initiated":"2014-01-20","ministryContact":"MCCLURE BILL","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2017-04-29","completed":"2013-10-24","initiated":"2018-01-23","ministryContact":"MARKS TILLMAN","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":true}],"participants":[{"name":"IPSUM","endDate":"2015-12-02","startDate":"2017-10-02","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"IPSUM","endDate":"2021-04-03","startDate":"2022-08-12","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","endDate":"2019-02-12","startDate":"2020-06-21","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","endDate":"2020-03-09","startDate":"2019-12-04","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2016-07-03","startDate":"2019-12-13","notes":"","roles":["ORGANIZATION"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2015-02-28","notes":"","parcelID":"16167","siteID":"17935","siteRegistry":false},{"dateNoted":"2021-12-12","notes":"","parcelID":"17933","siteID":"20915","siteRegistry":true}]},{"uuid":"b90f334a-7729-4a83-987a-cafae5a01953","siteID":20443,"address":"27757 Bayer Throughway","latitude":55.6979,"longitude":-128.2715,"lastUpdated":"2015-11-15","city":"East Brigittestad","region":"Thompson-Okanagan","victoriaFile":"26250-20/11279","regionalFile":"N/A","parcelIDs":[4983067,725212,9025726,6418320,698857],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2023-08-14","completed":"2019-01-03","initiated":"2016-01-14","ministryContact":"YUNDT DRAKE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2021-10-13","completed":"2014-02-03","initiated":"2014-04-24","ministryContact":"BODE EMMY","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":true}],"participants":[{"name":"SHELL CANADA PRODUCTS","endDate":"2021-01-04","startDate":"2023-07-21","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2022-08-01","startDate":"2017-01-06","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"AMET, DOLOR SIT","endDate":"2017-07-15","startDate":"2018-09-16","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"AMET, DOLOR SIT","endDate":"2020-03-06","startDate":"2015-10-08","notes":"","roles":["ORGANIZATION"],"siteRegistry":false}],"associatedSites":[{"dateNoted":"2020-11-27","notes":"","parcelID":"19841","siteID":"17050","siteRegistry":true},{"dateNoted":"2014-12-10","notes":"","parcelID":"16402","siteID":"18047","siteRegistry":true},{"dateNoted":"2015-05-15","notes":"","parcelID":"18540","siteID":"17275","siteRegistry":false}]},{"uuid":"92ffb73b-4240-498e-92d8-3283384cd07d","siteID":15792,"address":"2626 Kutch Camp","latitude":48.5774,"longitude":-127.9645,"lastUpdated":"2022-01-18","city":"West Lenniechester","region":"Mainland/Southwest","victoriaFile":"26250-20/8813","regionalFile":"N/A","parcelIDs":[8731704,8598487,5966563,1904361,2867658],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2021-03-26","completed":"2014-12-14","initiated":"2023-03-06","ministryContact":"KOVACEK QUINTON","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2016-12-21","completed":"2022-10-28","initiated":"2020-03-31","ministryContact":"DARE CORRINE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2022-11-21","completed":"2016-02-10","initiated":"2016-06-09","ministryContact":"STOKES JOANA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2020-12-03","completed":"2023-05-26","initiated":"2014-01-31","ministryContact":"ROSENBAUM ERNESTO","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2018-10-14","completed":"2019-03-26","initiated":"2023-06-15","ministryContact":"O'CONNER BONITA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false}],"participants":[{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2022-07-25","startDate":"2022-09-13","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","endDate":"2022-10-23","startDate":"2019-06-15","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"IPSUM","endDate":"2014-05-02","startDate":"2021-06-05","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"AMET, DOLOR SIT","endDate":"2018-10-29","startDate":"2020-10-17","notes":"","roles":["EMPLOYEE"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2022-10-16","notes":"","parcelID":"17804","siteID":"20443","siteRegistry":false},{"dateNoted":"2018-12-01","notes":"","parcelID":"20297","siteID":"16725","siteRegistry":true},{"dateNoted":"2022-11-02","notes":"","parcelID":"19767","siteID":"19762","siteRegistry":true}]},{"uuid":"acb16f30-19d9-4b15-873f-aa85ed8e2e13","siteID":16721,"address":"2616 Rippin Turnpike","latitude":56.9949,"longitude":-122.8935,"lastUpdated":"2023-03-03","city":"Tonawanda","region":"Cariboo","victoriaFile":"26250-20/10527","regionalFile":"N/A","parcelIDs":[9232651,1368929,9326830,2138805,4784543],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2023-05-11","completed":"2015-04-10","initiated":"2022-08-06","ministryContact":"BLOCK SHEA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2019-05-26","completed":"2018-11-25","initiated":"2019-01-08","ministryContact":"VEUM JANY","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false}],"participants":[{"name":"IPSUM","endDate":"2020-04-11","startDate":"2016-04-19","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","endDate":"2020-12-02","startDate":"2021-12-21","notes":"","roles":["ORGANIZATION"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2023-05-15","notes":"","parcelID":"15798","siteID":"20930","siteRegistry":false},{"dateNoted":"2015-01-09","notes":"","parcelID":"20782","siteID":"19773","siteRegistry":false}]},{"uuid":"3e4c92d4-ef2f-44aa-bc9d-875f59f550b0","siteID":20858,"address":"8766 Ondricka Light","latitude":54.7224,"longitude":-134.3966,"lastUpdated":"2017-11-11","city":"Tysonside","region":" North Coast","victoriaFile":"26250-20/16235","regionalFile":"N/A","parcelIDs":[8441705,8565745,8512999,7910527,2978169],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2023-04-21","completed":"2015-02-20","initiated":"2019-10-11","ministryContact":"VONRUEDEN DAGMAR","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2022-01-09","completed":"2017-09-29","initiated":"2014-06-09","ministryContact":"ROBERTS BRAD","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":true}],"participants":[{"name":"SHELL CANADA PRODUCTS","endDate":"2017-11-06","startDate":"2017-03-22","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2017-07-06","startDate":"2022-09-27","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"AMET, DOLOR SIT","endDate":"2015-03-17","startDate":"2017-05-21","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"IPSUM","endDate":"2015-08-11","startDate":"2014-04-14","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"IPSUM","endDate":"2022-01-25","startDate":"2015-09-04","notes":"","roles":["ORGANIZATION"],"siteRegistry":false}],"associatedSites":[{"dateNoted":"2017-10-21","notes":"","parcelID":"18810","siteID":"18093","siteRegistry":false},{"dateNoted":"2021-06-22","notes":"","parcelID":"19034","siteID":"17976","siteRegistry":false}]},{"uuid":"cd017f44-6ed2-436d-99c2-e19ef583a8e5","siteID":20162,"address":"4354 Pablo Mountains","latitude":56.1048,"longitude":-138.8038,"lastUpdated":"2021-12-02","city":"Missouriland","region":"Kootenay","victoriaFile":"26250-20/4030","regionalFile":"N/A","parcelIDs":[2808786,6749208,4539734,5912840,7292684],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2021-01-04","completed":"2015-05-16","initiated":"2017-01-19","ministryContact":"WAELCHI-LIND OBIE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2021-08-24","completed":"2017-07-17","initiated":"2020-05-22","ministryContact":"LEFFLER THERESA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":true}],"participants":[{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2013-10-20","startDate":"2013-12-07","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"AMET, DOLOR SIT","endDate":"2019-03-20","startDate":"2018-07-23","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","endDate":"2016-05-13","startDate":"2020-04-27","notes":"","roles":["EMPLOYEE"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2014-09-15","notes":"","parcelID":"18322","siteID":"18652","siteRegistry":true},{"dateNoted":"2016-07-01","notes":"","parcelID":"18973","siteID":"18135","siteRegistry":true}]},{"uuid":"2b6b2337-53d5-4fa5-8c94-a977fd28d3a6","siteID":17226,"address":"1752 Santa Meadows","latitude":49.883,"longitude":-136.1977,"lastUpdated":"2014-07-21","city":"Fort Tyson","region":"Thompson-Okanagan","victoriaFile":"26250-20/17839","regionalFile":"N/A","parcelIDs":[6014355,228964,9997210,1480713,4542030],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2015-10-11","completed":"2016-03-30","initiated":"2015-09-26","ministryContact":"MANTE SELENA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2018-07-08","completed":"2016-12-12","initiated":"2016-02-01","ministryContact":"CONROY MARIANA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":true}],"participants":[{"name":"SHELL CANADA PRODUCTS","endDate":"2020-04-11","startDate":"2021-09-22","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","endDate":"2016-10-09","startDate":"2015-07-21","notes":"","roles":["EMPLOYEE"],"siteRegistry":false}],"associatedSites":[{"dateNoted":"2020-11-21","notes":"","parcelID":"20736","siteID":"16736","siteRegistry":true},{"dateNoted":"2014-11-09","notes":"","parcelID":"15974","siteID":"20947","siteRegistry":true},{"dateNoted":"2019-09-28","notes":"","parcelID":"16458","siteID":"18162","siteRegistry":false}]},{"uuid":"c84c0f70-8565-4f9a-a020-b83475d9cf12","siteID":17012,"address":"81955 Huels Ports","latitude":54.5663,"longitude":-122.264,"lastUpdated":"2015-06-29","city":"Jovanhaven","region":"Thompson-Okanagan","victoriaFile":"26250-20/15997","regionalFile":"N/A","parcelIDs":[9226492,5266721,1062357,5215930,9411905],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2016-11-08","completed":"2023-08-14","initiated":"2017-01-30","ministryContact":"GERLACH MARIANE","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2022-09-05","completed":"2022-04-19","initiated":"2014-01-26","ministryContact":"TORPHY ENA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":false},{"createdAt":"2022-07-14","completed":"2017-11-14","initiated":"2019-01-17","ministryContact":"LANGWORTH ENA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2013-12-29","completed":"2023-08-10","initiated":"2022-10-02","ministryContact":"GLEICHNER JUNIUS","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":false}],"participants":[{"name":"IPSUM","endDate":"2015-12-30","startDate":"2023-01-22","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2022-04-02","startDate":"2018-03-13","notes":"","roles":["ORGANIZATION"],"siteRegistry":false}],"associatedSites":[{"dateNoted":"2017-04-04","notes":"","parcelID":"18262","siteID":"18799","siteRegistry":true},{"dateNoted":"2016-03-11","notes":"","parcelID":"20006","siteID":"18775","siteRegistry":false},{"dateNoted":"2017-12-16","notes":"","parcelID":"19113","siteID":"16839","siteRegistry":true}]},{"uuid":"50fe01b5-0740-41fb-a176-54e60f725b8f","siteID":18001,"address":"1011 Flo Oval","latitude":48.8412,"longitude":-124.977,"lastUpdated":"2023-02-06","city":"New Brucestead","region":"Kootenay","victoriaFile":"26250-20/19653","regionalFile":"N/A","parcelIDs":[4377774,6239390,371891,1191301,9857320],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2016-03-23","completed":"2020-09-21","initiated":"2020-11-22","ministryContact":"KUB SKYLA","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":true},{"createdAt":"2022-08-26","completed":"2021-05-11","initiated":"2017-02-27","ministryContact":"HUELS SALLY","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true}],"siteRegistry":true},{"createdAt":"2015-05-04","completed":"2019-09-16","initiated":"2021-02-05","ministryContact":"WILLIAMSON ELINOR","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false}],"siteRegistry":true}],"participants":[{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2014-02-13","startDate":"2018-06-05","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2021-07-16","startDate":"2015-02-19","notes":"","roles":["ORGANIZATION"],"siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC","endDate":"2022-01-23","startDate":"2014-12-17","notes":"","roles":["EMPLOYEE"],"siteRegistry":false},{"name":"AMET, DOLOR SIT","endDate":"2015-04-04","startDate":"2016-07-25","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"AMET, DOLOR SIT","endDate":"2018-12-04","startDate":"2015-02-12","notes":"","roles":["EMPLOYEE"],"siteRegistry":true}],"associatedSites":[{"dateNoted":"2022-05-02","notes":"","parcelID":"18066","siteID":"20865","siteRegistry":true},{"dateNoted":"2019-09-16","notes":"","parcelID":"19793","siteID":"20788","siteRegistry":false}]},{"uuid":"85f63c23-f4cb-4d36-ac90-d59d418f5ca2","siteID":18126,"address":"430 Stoltenberg Corners","latitude":57.4977,"longitude":-118.9699,"lastUpdated":"2017-11-25","city":"Beahanside","region":"Mainland/Southwest","victoriaFile":"26250-20/4447","regionalFile":"N/A","parcelIDs":[4670133,9270907,3875043,7928666,9216967],"locationDescription":"LAT/LONGS CONFIRMED USING ICIS MAY 16,2013","notations":[{"createdAt":"2016-04-12","completed":"2020-11-20","initiated":"2020-02-25","ministryContact":"STAMM MATHEW","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true},{"name":"SHELL CANADA PRODUCTS","role":"REQUESTED BY","siteRegistry":true},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":false}],"siteRegistry":false},{"createdAt":"2022-10-01","completed":"2016-03-14","initiated":"2015-03-14","ministryContact":"FRAMI-EFFERTZ DONNELL","notationClass":"ENVIRONMENTAL MANAGEMENT ACT: GENERAL","note":"","notationType":"CERTIFICATE OF COMPLIANCE REQUESTED","requestedActions":[""],"notationParticipants":[{"name":"SHELL CANADA PRODUCTS","role":"SUBMITTED BY","siteRegistry":false},{"name":"SNC-LAVALIN ENVIRONMENT INC.","role":"SUBMITTED BY","siteRegistry":true}],"siteRegistry":false}],"participants":[{"name":"AMET, DOLOR SIT","endDate":"2023-05-01","startDate":"2021-05-26","notes":"","roles":["EMPLOYEE"],"siteRegistry":true},{"name":"AMET, DOLOR SIT","endDate":"2013-10-26","startDate":"2022-09-12","notes":"","roles":["ORGANIZATION"],"siteRegistry":true},{"name":"IPSUM","endDate":"2015-09-21","startDate":"2014-12-05","notes":"","roles":["EMPLOYEE"],"siteRegistry":false}],"associatedSites":[{"dateNoted":"2023-02-07","notes":"","parcelID":"17518","siteID":"16645","siteRegistry":false},{"dateNoted":"2016-01-02","notes":"","parcelID":"19769","siteID":"19084","siteRegistry":false},{"dateNoted":"2013-10-04","notes":"","parcelID":"16727","siteID":"15695","siteRegistry":true}]}] \ No newline at end of file +[ + { + "uuid": "7739e0af-e641-42f1-9419-52450e063884", + "siteID": 18319, + "address": "7321 King Hill", + "latitude": 57.7618, + "longitude": -137.916, + "lastUpdated": "2014-06-07", + "city": "South Madie", + "region": "Mainland/Southwest", + "victoriaFile": "26250-20/4893", + "regionalFile": "N/A", + "parcelIDs": [ + 7534998, + 4932627, + 7039573, + 539610, + 9639069 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2015-02-08", + "completed": "2020-02-26", + "initiated": "2018-10-06", + "ministryContact": "HARBER ALTA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "createdAt": "2022-10-29", + "completed": "2015-12-09", + "initiated": "2015-06-06", + "ministryContact": "RIPPIN APRIL", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + } + ], + "participants": [ + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2020-04-16", + "startDate": "2013-11-30", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2021-07-13", + "startDate": "2021-03-05", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2015-04-19", + "startDate": "2021-09-03", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2016-12-24", + "startDate": "2015-05-03", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "AMET, DOLOR SIT", + "endDate": "2014-06-10", + "startDate": "2013-12-10", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + } + ], + "associatedSites": [ + { + "dateNoted": "2019-01-11", + "notes": "", + "parcelID": "17213", + "siteID": "18093", + "siteRegistry": false + }, + { + "dateNoted": "2013-12-13", + "notes": "", + "parcelID": "15594", + "siteID": "15792", + "siteRegistry": true + } + ] + }, + { + "uuid": "edc0fe89-59c1-4d7f-958b-5138886095df", + "siteID": 18269, + "address": "932 Brakus Islands", + "latitude": 53.3937, + "longitude": -126.1078, + "lastUpdated": "2015-10-25", + "city": "Titoberg", + "region": " North Coast", + "victoriaFile": "26250-20/12018", + "regionalFile": "N/A", + "parcelIDs": [ + 9472301, + 2884191, + 6409707, + 1818996, + 3861543 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2018-03-09", + "completed": "2021-11-18", + "initiated": "2019-07-25", + "ministryContact": "BASHIRIAN PRINCE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "createdAt": "2016-02-23", + "completed": "2014-11-24", + "initiated": "2023-05-21", + "ministryContact": "WITTING TRYSTAN", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "createdAt": "2015-01-08", + "completed": "2023-03-07", + "initiated": "2022-08-21", + "ministryContact": "RENNER-FUNK CALLIE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "createdAt": "2016-08-15", + "completed": "2019-09-03", + "initiated": "2021-11-08", + "ministryContact": "O'REILLY CLAUDIA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + } + ], + "participants": [ + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2017-11-28", + "startDate": "2017-02-15", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "name": "AMET, DOLOR SIT", + "endDate": "2020-12-21", + "startDate": "2022-12-13", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2017-10-08", + "startDate": "2020-09-07", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2016-09-09", + "startDate": "2015-06-11", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + } + ], + "associatedSites": [ + { + "dateNoted": "2023-02-08", + "notes": "", + "parcelID": "17312", + "siteID": "17113", + "siteRegistry": true + }, + { + "dateNoted": "2020-04-29", + "notes": "", + "parcelID": "19289", + "siteID": "18495", + "siteRegistry": false + } + ] + }, + { + "uuid": "fdd08826-fcce-4832-8b02-98e948bc188e", + "siteID": 15980, + "address": "968 Mertz Road", + "latitude": 50.1289, + "longitude": -136.9081, + "lastUpdated": "2021-12-22", + "city": "South Mohammedworth", + "region": " North Coast", + "victoriaFile": "26250-20/1411", + "regionalFile": "N/A", + "parcelIDs": [ + 7295341, + 8323174, + 7102816, + 5270134, + 1312009 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2016-05-02", + "completed": "2022-09-08", + "initiated": "2021-05-16", + "ministryContact": "OLSON XZAVIER", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "createdAt": "2017-11-01", + "completed": "2017-09-30", + "initiated": "2019-01-23", + "ministryContact": "LINDGREN NICOLETTE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "createdAt": "2018-10-20", + "completed": "2017-10-14", + "initiated": "2021-08-15", + "ministryContact": "EBERT LIANA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "createdAt": "2021-01-27", + "completed": "2021-02-10", + "initiated": "2018-09-23", + "ministryContact": "ROOB MARIANA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "createdAt": "2023-09-08", + "completed": "2023-08-21", + "initiated": "2017-08-03", + "ministryContact": "RYAN LAURIANNE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + } + ], + "participants": [ + { + "name": "AMET, DOLOR SIT", + "endDate": "2017-01-08", + "startDate": "2016-07-04", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2018-12-13", + "startDate": "2014-09-03", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + } + ], + "associatedSites": [ + { + "dateNoted": "2020-01-18", + "notes": "", + "parcelID": "15283", + "siteID": "19903", + "siteRegistry": false + }, + { + "dateNoted": "2019-08-04", + "notes": "", + "parcelID": "15389", + "siteID": "15577", + "siteRegistry": false + }, + { + "dateNoted": "2014-06-10", + "notes": "", + "parcelID": "16657", + "siteID": "19380", + "siteRegistry": true + } + ] + }, + { + "uuid": "889b94d4-736c-4217-a0f2-72e2c9235813", + "siteID": 18065, + "address": "64134 Jada Glen", + "latitude": 56.3675, + "longitude": -130.3327, + "lastUpdated": "2018-02-06", + "city": "North Carterfurt", + "region": "Cariboo", + "victoriaFile": "26250-20/17862", + "regionalFile": "N/A", + "parcelIDs": [ + 8846220, + 8584515, + 6083650, + 9174776, + 9412895 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2023-02-25", + "completed": "2022-05-21", + "initiated": "2023-08-08", + "ministryContact": "STROSIN BELLA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "createdAt": "2014-05-04", + "completed": "2017-02-21", + "initiated": "2016-04-01", + "ministryContact": "HUEL LULU", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + } + ], + "participants": [ + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2016-07-14", + "startDate": "2020-11-11", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "name": "AMET, DOLOR SIT", + "endDate": "2015-10-08", + "startDate": "2015-12-09", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2017-04-16", + "startDate": "2016-04-14", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2023-02-24", + "startDate": "2014-07-20", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2019-01-07", + "startDate": "2017-10-20", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + } + ], + "associatedSites": [ + { + "dateNoted": "2016-05-08", + "notes": "", + "parcelID": "18635", + "siteID": "20788", + "siteRegistry": false + }, + { + "dateNoted": "2016-12-08", + "notes": "", + "parcelID": "17135", + "siteID": "17414", + "siteRegistry": false + } + ] + }, + { + "uuid": "f015e3d9-c3ac-489a-a4a6-8bad67885aa3", + "siteID": 15784, + "address": "116 Erin Rue", + "latitude": 53.6632, + "longitude": -118.0536, + "lastUpdated": "2021-12-19", + "city": "Kielbury", + "region": " North Coast", + "victoriaFile": "26250-20/11964", + "regionalFile": "N/A", + "parcelIDs": [ + 1650055, + 9103114, + 1089791, + 515337, + 6604543 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2020-09-17", + "completed": "2014-08-28", + "initiated": "2016-02-14", + "ministryContact": "CORMIER ERNIE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "createdAt": "2017-05-27", + "completed": "2018-09-20", + "initiated": "2016-05-31", + "ministryContact": "CRONIN FLORIDA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "createdAt": "2020-03-08", + "completed": "2021-07-18", + "initiated": "2015-02-06", + "ministryContact": "DICKINSON ANNA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "createdAt": "2016-02-01", + "completed": "2014-12-26", + "initiated": "2020-12-10", + "ministryContact": "BEATTY-WYMAN PATSY", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "createdAt": "2021-01-27", + "completed": "2021-03-28", + "initiated": "2014-05-16", + "ministryContact": "YUNDT RAFAELA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + } + ], + "participants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2014-09-10", + "startDate": "2017-03-08", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "name": "IPSUM", + "endDate": "2018-11-19", + "startDate": "2014-07-24", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2018-03-03", + "startDate": "2019-11-15", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "name": "IPSUM", + "endDate": "2022-01-05", + "startDate": "2014-11-02", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + } + ], + "associatedSites": [ + { + "dateNoted": "2015-01-18", + "notes": "", + "parcelID": "15293", + "siteID": "18775", + "siteRegistry": false + }, + { + "dateNoted": "2021-04-08", + "notes": "", + "parcelID": "20313", + "siteID": "20555", + "siteRegistry": false + }, + { + "dateNoted": "2023-02-18", + "notes": "", + "parcelID": "15704", + "siteID": "20957", + "siteRegistry": true + } + ] + }, + { + "uuid": "a0948bb1-b06a-42cc-ab19-86a9cea7f7e9", + "siteID": 19905, + "address": "8574 Hayden Forest", + "latitude": 56.4413, + "longitude": -120.5489, + "lastUpdated": "2022-05-24", + "city": "Fort Electafield", + "region": " North Coast", + "victoriaFile": "26250-20/18738", + "regionalFile": "N/A", + "parcelIDs": [ + 9098175, + 3532457, + 8278379, + 9391471, + 3226250 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2019-06-01", + "completed": "2014-11-06", + "initiated": "2018-02-24", + "ministryContact": "WUNSCH VINCENT", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "createdAt": "2017-06-15", + "completed": "2014-07-26", + "initiated": "2016-02-10", + "ministryContact": "STROSIN JEFFREY", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "createdAt": "2020-12-31", + "completed": "2023-04-20", + "initiated": "2023-01-20", + "ministryContact": "RIPPIN MORTIMER", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "createdAt": "2016-02-10", + "completed": "2014-05-20", + "initiated": "2013-12-09", + "ministryContact": "KING SYDNEE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + } + ], + "participants": [ + { + "name": "IPSUM", + "endDate": "2022-01-03", + "startDate": "2014-04-23", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "IPSUM", + "endDate": "2014-02-13", + "startDate": "2019-01-05", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2017-01-16", + "startDate": "2013-12-16", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2018-06-25", + "startDate": "2017-09-29", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "name": "AMET, DOLOR SIT", + "endDate": "2018-05-01", + "startDate": "2018-09-28", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + } + ], + "associatedSites": [ + { + "dateNoted": "2016-03-06", + "notes": "", + "parcelID": "19084", + "siteID": "18497", + "siteRegistry": true + }, + { + "dateNoted": "2021-05-16", + "notes": "", + "parcelID": "15553", + "siteID": "17237", + "siteRegistry": true + } + ] + }, + { + "uuid": "33a07bb8-ab02-4e19-8555-4741f195e715", + "siteID": 15361, + "address": "5152 Jana Courts", + "latitude": 54.2664, + "longitude": -135.6604, + "lastUpdated": "2015-08-26", + "city": "Redding", + "region": "Kootenay", + "victoriaFile": "26250-20/5707", + "regionalFile": "N/A", + "parcelIDs": [ + 4622503, + 5630788, + 8441620, + 7447192, + 9958769 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2016-02-19", + "completed": "2018-01-21", + "initiated": "2015-03-10", + "ministryContact": "MAGGIO DOYLE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "createdAt": "2021-11-15", + "completed": "2017-01-02", + "initiated": "2016-08-04", + "ministryContact": "BREITENBERG BELL", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "createdAt": "2018-01-31", + "completed": "2023-05-06", + "initiated": "2015-01-13", + "ministryContact": "BODE GILDA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "createdAt": "2023-05-30", + "completed": "2022-07-27", + "initiated": "2022-01-14", + "ministryContact": "WEISSNAT ADOLF", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "createdAt": "2016-03-07", + "completed": "2015-08-19", + "initiated": "2021-07-25", + "ministryContact": "WOLF COY", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + } + ], + "participants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2021-11-28", + "startDate": "2015-09-12", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2017-03-23", + "startDate": "2019-11-13", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + } + ], + "associatedSites": [ + { + "dateNoted": "2017-06-27", + "notes": "", + "parcelID": "20888", + "siteID": "15784", + "siteRegistry": false + } + ] + }, + { + "uuid": "8ac095cb-e831-49f8-b8f4-acb48a8900d3", + "siteID": 16312, + "address": "8008 Gerlach Junction", + "latitude": 50.6082, + "longitude": -125.874, + "lastUpdated": "2022-01-31", + "city": "Veumworth", + "region": "Mainland/Southwest", + "victoriaFile": "26250-20/1062", + "regionalFile": "N/A", + "parcelIDs": [ + 9193439, + 8066853, + 3032864, + 4702520, + 3891877 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2022-02-11", + "completed": "2017-11-10", + "initiated": "2022-12-05", + "ministryContact": "CONNELLY-CREMIN DEANGELO", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "createdAt": "2017-01-17", + "completed": "2015-07-19", + "initiated": "2017-02-02", + "ministryContact": "GISLASON BUSTER", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + } + ], + "participants": [ + { + "name": "IPSUM", + "endDate": "2021-10-17", + "startDate": "2019-03-31", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2015-01-18", + "startDate": "2019-05-14", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "IPSUM", + "endDate": "2017-04-01", + "startDate": "2020-04-05", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + } + ], + "associatedSites": [ + { + "dateNoted": "2020-04-18", + "notes": "", + "parcelID": "18436", + "siteID": "19457", + "siteRegistry": true + }, + { + "dateNoted": "2016-06-30", + "notes": "", + "parcelID": "20906", + "siteID": "16487", + "siteRegistry": false + }, + { + "dateNoted": "2021-11-27", + "notes": "", + "parcelID": "19892", + "siteID": "15513", + "siteRegistry": true + } + ] + }, + { + "uuid": "48ff888b-fde1-4c57-b1d8-41e1a7ef80b9", + "siteID": 15704, + "address": "253 Pagac Fall", + "latitude": 48.0323, + "longitude": -119.5559, + "lastUpdated": "2019-10-26", + "city": "North Bryonfurt", + "region": "Kootenay", + "victoriaFile": "26250-20/14980", + "regionalFile": "N/A", + "parcelIDs": [ + 5563997, + 4959994, + 7611903, + 9570744, + 8955213 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2019-11-22", + "completed": "2019-06-05", + "initiated": "2019-03-30", + "ministryContact": "RITCHIE MARJOLAINE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "createdAt": "2019-06-25", + "completed": "2017-12-27", + "initiated": "2019-06-22", + "ministryContact": "GLEICHNER KAREEM", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + } + ], + "participants": [ + { + "name": "AMET, DOLOR SIT", + "endDate": "2015-11-30", + "startDate": "2013-11-30", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2014-09-02", + "startDate": "2016-05-14", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2020-05-06", + "startDate": "2017-06-16", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + } + ], + "associatedSites": [ + { + "dateNoted": "2020-03-05", + "notes": "", + "parcelID": "16990", + "siteID": "17322", + "siteRegistry": false + }, + { + "dateNoted": "2016-05-26", + "notes": "", + "parcelID": "16553", + "siteID": "18319", + "siteRegistry": true + }, + { + "dateNoted": "2016-02-23", + "notes": "", + "parcelID": "18790", + "siteID": "19777", + "siteRegistry": false + } + ] + }, + { + "uuid": "16f113f3-f04b-47cc-8954-e9a770d4b845", + "siteID": 20906, + "address": "8538 Monahan Rest", + "latitude": 56.7973, + "longitude": -119.7269, + "lastUpdated": "2023-04-19", + "city": "Robeltown", + "region": "Thompson-Okanagan", + "victoriaFile": "26250-20/17012", + "regionalFile": "N/A", + "parcelIDs": [ + 9496457, + 9643662, + 3665272, + 9101769, + 2168183 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2014-05-18", + "completed": "2015-06-22", + "initiated": "2014-08-29", + "ministryContact": "BECKER GAETANO", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "createdAt": "2021-03-21", + "completed": "2022-07-16", + "initiated": "2017-09-19", + "ministryContact": "OKUNEVA KIRSTIN", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + } + ], + "participants": [ + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2016-06-16", + "startDate": "2021-07-07", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "name": "IPSUM", + "endDate": "2020-06-12", + "startDate": "2015-06-14", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "IPSUM", + "endDate": "2018-08-29", + "startDate": "2014-10-28", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + } + ], + "associatedSites": [ + { + "dateNoted": "2020-04-12", + "notes": "", + "parcelID": "19343", + "siteID": "19773", + "siteRegistry": true + }, + { + "dateNoted": "2013-12-03", + "notes": "", + "parcelID": "15593", + "siteID": "16025", + "siteRegistry": false + } + ] + }, + { + "uuid": "d59b3dbf-17f6-4d1b-a434-6e220bc70361", + "siteID": 20833, + "address": "5819 Emmalee Crest", + "latitude": 53.9487, + "longitude": -136.5663, + "lastUpdated": "2017-11-06", + "city": "Fort Kaylaview", + "region": "Mainland/Southwest", + "victoriaFile": "26250-20/6285", + "regionalFile": "N/A", + "parcelIDs": [ + 5903544, + 2910198, + 9526907, + 7637082, + 4100828 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2014-07-27", + "completed": "2014-09-13", + "initiated": "2023-09-14", + "ministryContact": "KUNZE HUMBERTO", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "createdAt": "2021-05-08", + "completed": "2014-05-14", + "initiated": "2014-05-02", + "ministryContact": "SCHAMBERGER CHET", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + } + ], + "participants": [ + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2019-01-18", + "startDate": "2021-06-17", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "name": "AMET, DOLOR SIT", + "endDate": "2017-10-07", + "startDate": "2019-04-13", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "name": "IPSUM", + "endDate": "2017-07-23", + "startDate": "2020-04-22", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + } + ], + "associatedSites": [ + { + "dateNoted": "2017-05-21", + "notes": "", + "parcelID": "20930", + "siteID": "20407", + "siteRegistry": true + }, + { + "dateNoted": "2016-10-28", + "notes": "", + "parcelID": "15251", + "siteID": "16118", + "siteRegistry": false + }, + { + "dateNoted": "2023-03-21", + "notes": "", + "parcelID": "15243", + "siteID": "16358", + "siteRegistry": false + } + ] + }, + { + "uuid": "a7033efb-a59f-42f4-b2bc-0d66edd0326a", + "siteID": 20865, + "address": "7392 Kamron Parkways", + "latitude": 56.6185, + "longitude": -133.1699, + "lastUpdated": "2014-08-04", + "city": "New Corabury", + "region": "Cariboo", + "victoriaFile": "26250-20/964", + "regionalFile": "N/A", + "parcelIDs": [ + 3395713, + 588192, + 327047, + 1637653, + 6518812 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2022-11-08", + "completed": "2017-04-08", + "initiated": "2020-11-14", + "ministryContact": "WISOKY ESTELLA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "createdAt": "2021-03-19", + "completed": "2022-06-30", + "initiated": "2018-05-24", + "ministryContact": "METZ AMIE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + } + ], + "participants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2016-04-26", + "startDate": "2013-10-24", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "IPSUM", + "endDate": "2020-03-01", + "startDate": "2023-01-24", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + } + ], + "associatedSites": [ + { + "dateNoted": "2015-02-05", + "notes": "", + "parcelID": "19844", + "siteID": "18528", + "siteRegistry": true + }, + { + "dateNoted": "2021-06-05", + "notes": "", + "parcelID": "16150", + "siteID": "15543", + "siteRegistry": false + } + ] + }, + { + "uuid": "bb1749cd-6350-4e81-a11a-13fa390dc4a5", + "siteID": 15229, + "address": "5815 Bednar Crossing", + "latitude": 48.6774, + "longitude": -133.6719, + "lastUpdated": "2015-04-10", + "city": "Reichertview", + "region": "Cariboo", + "victoriaFile": "26250-20/18792", + "regionalFile": "N/A", + "parcelIDs": [ + 8046405, + 8575670, + 5790812, + 9146060, + 6438717 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2015-02-27", + "completed": "2016-04-04", + "initiated": "2023-08-06", + "ministryContact": "WHITE ALEXANDRINE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "createdAt": "2021-07-31", + "completed": "2019-12-01", + "initiated": "2014-10-14", + "ministryContact": "KOHLER URBAN", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + } + ], + "participants": [ + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2016-10-03", + "startDate": "2016-09-09", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "name": "AMET, DOLOR SIT", + "endDate": "2018-02-10", + "startDate": "2016-11-13", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "name": "IPSUM", + "endDate": "2018-07-12", + "startDate": "2022-09-16", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "AMET, DOLOR SIT", + "endDate": "2014-11-26", + "startDate": "2016-08-29", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "name": "AMET, DOLOR SIT", + "endDate": "2014-02-19", + "startDate": "2020-04-03", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + } + ], + "associatedSites": [ + { + "dateNoted": "2018-08-07", + "notes": "", + "parcelID": "19850", + "siteID": "18838", + "siteRegistry": true + } + ] + }, + { + "uuid": "7780d1eb-faec-4533-9a39-cbc1d5782ade", + "siteID": 18150, + "address": "18723 Okuneva Drive", + "latitude": 55.0453, + "longitude": -127.6661, + "lastUpdated": "2015-01-17", + "city": "Fort Estelle", + "region": "Thompson-Okanagan", + "victoriaFile": "26250-20/9191", + "regionalFile": "N/A", + "parcelIDs": [ + 3175295, + 2996023, + 9404632, + 7481000, + 9170989 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2020-12-16", + "completed": "2014-10-15", + "initiated": "2016-07-16", + "ministryContact": "SCHMIDT BRUCE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "createdAt": "2018-02-15", + "completed": "2018-05-06", + "initiated": "2023-05-22", + "ministryContact": "CREMIN NORENE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "createdAt": "2017-10-25", + "completed": "2021-02-12", + "initiated": "2021-04-18", + "ministryContact": "HAUCK JODIE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "createdAt": "2014-02-27", + "completed": "2023-02-06", + "initiated": "2017-04-11", + "ministryContact": "STEHR MAVIS", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + } + ], + "participants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2018-08-03", + "startDate": "2016-11-25", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2018-10-15", + "startDate": "2018-04-11", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "IPSUM", + "endDate": "2021-08-01", + "startDate": "2018-06-18", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + } + ], + "associatedSites": [ + { + "dateNoted": "2017-06-13", + "notes": "", + "parcelID": "20712", + "siteID": "15784", + "siteRegistry": false + }, + { + "dateNoted": "2022-10-13", + "notes": "", + "parcelID": "16464", + "siteID": "18373", + "siteRegistry": false + } + ] + }, + { + "uuid": "a78db1c7-c177-48c3-9a47-36dc6188494d", + "siteID": 18587, + "address": "63752 Fernando Orchard", + "latitude": 48.8675, + "longitude": -119.9843, + "lastUpdated": "2021-07-23", + "city": "Wardborough", + "region": "Thompson-Okanagan", + "victoriaFile": "26250-20/11178", + "regionalFile": "N/A", + "parcelIDs": [ + 7310508, + 4434882, + 2026222, + 9418999, + 592651 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2023-09-07", + "completed": "2016-11-03", + "initiated": "2021-10-02", + "ministryContact": "ZIEME CAMYLLE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "createdAt": "2019-04-07", + "completed": "2021-09-03", + "initiated": "2023-05-05", + "ministryContact": "WILDERMAN DAMIEN", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "createdAt": "2021-09-02", + "completed": "2017-02-26", + "initiated": "2016-10-16", + "ministryContact": "CHRISTIANSEN HIRAM", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "createdAt": "2023-02-02", + "completed": "2017-05-03", + "initiated": "2023-08-13", + "ministryContact": "CARTER LAURIANNE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "createdAt": "2021-08-04", + "completed": "2018-05-23", + "initiated": "2021-02-04", + "ministryContact": "BERGNAUM KYLER", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + } + ], + "participants": [ + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2014-11-14", + "startDate": "2014-09-11", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2017-05-22", + "startDate": "2021-11-03", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2020-01-21", + "startDate": "2015-11-14", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2014-12-08", + "startDate": "2015-03-08", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "AMET, DOLOR SIT", + "endDate": "2021-05-12", + "startDate": "2014-08-17", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + } + ], + "associatedSites": [ + { + "dateNoted": "2014-06-29", + "notes": "", + "parcelID": "19515", + "siteID": "18001", + "siteRegistry": true + } + ] + }, + { + "uuid": "74524e1f-e3e4-4379-9b2a-a39cedeb4f34", + "siteID": 17898, + "address": "52324 Hudson Crest", + "latitude": 56.5456, + "longitude": -137.8432, + "lastUpdated": "2018-01-28", + "city": "Tracy", + "region": " North Coast", + "victoriaFile": "26250-20/19363", + "regionalFile": "N/A", + "parcelIDs": [ + 9073348, + 9904969, + 1742137, + 2064180, + 977585 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2023-08-05", + "completed": "2017-12-13", + "initiated": "2023-02-24", + "ministryContact": "JAST ELYSE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "createdAt": "2017-01-22", + "completed": "2023-02-16", + "initiated": "2020-12-31", + "ministryContact": "BERNHARD LETHA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "createdAt": "2016-05-30", + "completed": "2021-12-30", + "initiated": "2016-08-14", + "ministryContact": "FRIESEN BRETT", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + } + ], + "participants": [ + { + "name": "IPSUM", + "endDate": "2017-03-19", + "startDate": "2021-02-14", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2022-09-12", + "startDate": "2023-08-30", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + } + ], + "associatedSites": [ + { + "dateNoted": "2018-12-07", + "notes": "", + "parcelID": "20698", + "siteID": "19778", + "siteRegistry": false + }, + { + "dateNoted": "2013-12-13", + "notes": "", + "parcelID": "17924", + "siteID": "17567", + "siteRegistry": true + }, + { + "dateNoted": "2023-06-05", + "notes": "", + "parcelID": "17507", + "siteID": "17908", + "siteRegistry": true + } + ] + }, + { + "uuid": "d81a9608-ace1-4dc0-b648-10c135150c97", + "siteID": 20627, + "address": "31729 Hackett Freeway", + "latitude": 57.7592, + "longitude": -131.1137, + "lastUpdated": "2014-01-31", + "city": "Ratkeville", + "region": "Vancouver Island/Coast", + "victoriaFile": "26250-20/10074", + "regionalFile": "N/A", + "parcelIDs": [ + 948997, + 4806015, + 7923001, + 726407, + 729852 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2017-02-23", + "completed": "2021-07-26", + "initiated": "2014-10-25", + "ministryContact": "HANSEN JAIRO", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "createdAt": "2017-01-11", + "completed": "2021-08-31", + "initiated": "2019-07-02", + "ministryContact": "VON JERAMY", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "createdAt": "2020-04-24", + "completed": "2016-03-01", + "initiated": "2019-01-06", + "ministryContact": "FARRELL ALEXANDRE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + } + ], + "participants": [ + { + "name": "AMET, DOLOR SIT", + "endDate": "2019-09-28", + "startDate": "2022-05-16", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "name": "AMET, DOLOR SIT", + "endDate": "2014-08-03", + "startDate": "2016-09-27", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "name": "IPSUM", + "endDate": "2019-12-23", + "startDate": "2020-07-31", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "name": "IPSUM", + "endDate": "2022-09-02", + "startDate": "2016-05-06", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2018-11-18", + "startDate": "2017-08-14", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + } + ], + "associatedSites": [ + { + "dateNoted": "2016-05-02", + "notes": "", + "parcelID": "16171", + "siteID": "17074", + "siteRegistry": true + }, + { + "dateNoted": "2014-01-20", + "notes": "", + "parcelID": "20545", + "siteID": "15917", + "siteRegistry": false + }, + { + "dateNoted": "2017-07-27", + "notes": "", + "parcelID": "17949", + "siteID": "20555", + "siteRegistry": true + } + ] + }, + { + "uuid": "d58e5503-dbd9-4c88-91c5-f7604e4e7c05", + "siteID": 16206, + "address": "42701 Kelsi Creek", + "latitude": 55.5753, + "longitude": -126.4792, + "lastUpdated": "2023-03-29", + "city": "Port Carterstead", + "region": "Mainland/Southwest", + "victoriaFile": "26250-20/952", + "regionalFile": "N/A", + "parcelIDs": [ + 986215, + 1301398, + 9686702, + 9791321, + 4973877 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2023-08-22", + "completed": "2017-09-02", + "initiated": "2022-10-20", + "ministryContact": "PREDOVIC IVORY", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "createdAt": "2022-08-30", + "completed": "2021-12-21", + "initiated": "2016-01-27", + "ministryContact": "ADAMS KRISTY", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + } + ], + "participants": [ + { + "name": "IPSUM", + "endDate": "2019-01-14", + "startDate": "2023-03-24", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2019-09-15", + "startDate": "2015-01-28", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + } + ], + "associatedSites": [ + { + "dateNoted": "2022-09-09", + "notes": "", + "parcelID": "17730", + "siteID": "16634", + "siteRegistry": false + }, + { + "dateNoted": "2015-04-19", + "notes": "", + "parcelID": "19624", + "siteID": "17260", + "siteRegistry": false + }, + { + "dateNoted": "2022-01-02", + "notes": "", + "parcelID": "18333", + "siteID": "17449", + "siteRegistry": true + } + ] + }, + { + "uuid": "a6f5d1d4-e84f-4cc5-8a17-f5fbc32fba57", + "siteID": 20722, + "address": "7486 Witting Greens", + "latitude": 51.236, + "longitude": -122.6154, + "lastUpdated": "2019-04-21", + "city": "Weimannfurt", + "region": "Vancouver Island/Coast", + "victoriaFile": "26250-20/6466", + "regionalFile": "N/A", + "parcelIDs": [ + 4487574, + 5794278, + 4063944, + 9514586, + 2698213 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2018-06-21", + "completed": "2013-11-13", + "initiated": "2022-06-21", + "ministryContact": "SCHNEIDER REYES", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "createdAt": "2021-09-17", + "completed": "2021-08-04", + "initiated": "2017-05-10", + "ministryContact": "DARE KEELEY", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + } + ], + "participants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2020-01-27", + "startDate": "2018-05-31", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "name": "AMET, DOLOR SIT", + "endDate": "2022-03-07", + "startDate": "2014-09-02", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "name": "AMET, DOLOR SIT", + "endDate": "2018-02-21", + "startDate": "2018-04-11", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "name": "AMET, DOLOR SIT", + "endDate": "2018-02-12", + "startDate": "2022-01-03", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "name": "IPSUM", + "endDate": "2021-05-13", + "startDate": "2014-07-24", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + } + ], + "associatedSites": [ + { + "dateNoted": "2023-04-01", + "notes": "", + "parcelID": "19393", + "siteID": "18049", + "siteRegistry": true + }, + { + "dateNoted": "2019-06-05", + "notes": "", + "parcelID": "20978", + "siteID": "17692", + "siteRegistry": true + }, + { + "dateNoted": "2021-04-03", + "notes": "", + "parcelID": "16084", + "siteID": "20162", + "siteRegistry": true + } + ] + }, + { + "uuid": "6d4ed0bc-a936-456a-b1be-a39fde2bc567", + "siteID": 20520, + "address": "2635 Abbott Shoal", + "latitude": 58.618, + "longitude": -128.3292, + "lastUpdated": "2014-05-11", + "city": "Swiftboro", + "region": "Vancouver Island/Coast", + "victoriaFile": "26250-20/12273", + "regionalFile": "N/A", + "parcelIDs": [ + 1037669, + 3682758, + 6837288, + 5509907, + 7895798 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2020-04-03", + "completed": "2017-03-05", + "initiated": "2016-01-19", + "ministryContact": "BARTON NELLIE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "createdAt": "2020-09-14", + "completed": "2023-04-08", + "initiated": "2020-02-11", + "ministryContact": "POLLICH CHRISTIANA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "createdAt": "2023-07-29", + "completed": "2015-11-18", + "initiated": "2014-08-21", + "ministryContact": "BARTOLETTI WILL", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + } + ], + "participants": [ + { + "name": "AMET, DOLOR SIT", + "endDate": "2017-12-14", + "startDate": "2022-04-07", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "AMET, DOLOR SIT", + "endDate": "2015-04-30", + "startDate": "2016-11-12", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "name": "AMET, DOLOR SIT", + "endDate": "2022-10-27", + "startDate": "2019-09-27", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + } + ], + "associatedSites": [ + { + "dateNoted": "2022-07-06", + "notes": "", + "parcelID": "20109", + "siteID": "17012", + "siteRegistry": true + }, + { + "dateNoted": "2015-04-09", + "notes": "", + "parcelID": "19496", + "siteID": "19407", + "siteRegistry": false + } + ] + }, + { + "uuid": "acb765dc-8fbf-449d-b2dc-51c7c53e08ce", + "siteID": 18495, + "address": "67825 Marco Streets", + "latitude": 51.9897, + "longitude": -127.3366, + "lastUpdated": "2019-10-02", + "city": "East Krystinaborough", + "region": " North Coast", + "victoriaFile": "26250-20/8860", + "regionalFile": "N/A", + "parcelIDs": [ + 7597740, + 6622858, + 3144819, + 1765580, + 9783222 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2016-11-15", + "completed": "2015-01-29", + "initiated": "2019-11-28", + "ministryContact": "SCHUPPE ENRICO", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "createdAt": "2015-03-02", + "completed": "2016-02-11", + "initiated": "2020-04-25", + "ministryContact": "PARKER CLOYD", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "createdAt": "2020-03-20", + "completed": "2016-07-28", + "initiated": "2023-06-09", + "ministryContact": "ROBERTS CHANEL", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + } + ], + "participants": [ + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2018-03-20", + "startDate": "2022-04-01", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2018-09-06", + "startDate": "2019-05-09", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + } + ], + "associatedSites": [ + { + "dateNoted": "2016-05-06", + "notes": "", + "parcelID": "15537", + "siteID": "18069", + "siteRegistry": false + } + ] + }, + { + "uuid": "f1e5a576-b747-4111-b447-0c26917b1063", + "siteID": 19777, + "address": "43391 Jaylin Harbor", + "latitude": 53.9852, + "longitude": -131.4538, + "lastUpdated": "2016-08-24", + "city": "Port Laura", + "region": "Vancouver Island/Coast", + "victoriaFile": "26250-20/8312", + "regionalFile": "N/A", + "parcelIDs": [ + 4914135, + 4640238, + 6204221, + 4000333, + 1122110 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2020-01-24", + "completed": "2019-11-25", + "initiated": "2018-07-21", + "ministryContact": "ERDMAN ADALINE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "createdAt": "2021-07-12", + "completed": "2020-09-25", + "initiated": "2017-12-07", + "ministryContact": "HARBER MARIAN", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "createdAt": "2014-05-21", + "completed": "2018-09-08", + "initiated": "2014-03-03", + "ministryContact": "LEHNER MURIEL", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + } + ], + "participants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2023-01-19", + "startDate": "2016-03-10", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2017-01-02", + "startDate": "2021-02-15", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + } + ], + "associatedSites": [ + { + "dateNoted": "2020-08-06", + "notes": "", + "parcelID": "18337", + "siteID": "16118", + "siteRegistry": true + }, + { + "dateNoted": "2015-02-05", + "notes": "", + "parcelID": "18321", + "siteID": "19124", + "siteRegistry": true + } + ] + }, + { + "uuid": "dd935091-5178-4939-8416-8009e481c954", + "siteID": 19095, + "address": "506 Stark Coves", + "latitude": 52.3731, + "longitude": -130.8086, + "lastUpdated": "2015-02-21", + "city": "Blue Springs", + "region": "Thompson-Okanagan", + "victoriaFile": "26250-20/14717", + "regionalFile": "N/A", + "parcelIDs": [ + 5842166, + 9571417, + 5429523, + 6311578, + 6512264 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2018-03-12", + "completed": "2018-07-14", + "initiated": "2014-11-20", + "ministryContact": "ROOB ROCIO", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "createdAt": "2019-04-17", + "completed": "2021-12-07", + "initiated": "2016-03-12", + "ministryContact": "MURAZIK REVA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "createdAt": "2018-01-07", + "completed": "2016-11-04", + "initiated": "2015-03-28", + "ministryContact": "BOYER GUS", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "createdAt": "2022-04-12", + "completed": "2022-03-22", + "initiated": "2016-01-18", + "ministryContact": "NIKOLAUS RHODA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "createdAt": "2021-02-27", + "completed": "2020-12-29", + "initiated": "2022-03-07", + "ministryContact": "ABERNATHY HARMONY", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + } + ], + "participants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2014-02-20", + "startDate": "2018-07-20", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "name": "IPSUM", + "endDate": "2020-05-28", + "startDate": "2014-04-30", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "name": "IPSUM", + "endDate": "2018-04-06", + "startDate": "2020-01-11", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2019-01-07", + "startDate": "2016-04-12", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + } + ], + "associatedSites": [ + { + "dateNoted": "2016-02-11", + "notes": "", + "parcelID": "20714", + "siteID": "16517", + "siteRegistry": false + } + ] + }, + { + "uuid": "c35d1b71-60f0-43ff-8424-886f1cfed57a", + "siteID": 16725, + "address": "9702 Toy Lodge", + "latitude": 53.5677, + "longitude": -131.359, + "lastUpdated": "2022-11-18", + "city": "Norwalk", + "region": "Cariboo", + "victoriaFile": "26250-20/9250", + "regionalFile": "N/A", + "parcelIDs": [ + 3587387, + 5146976, + 246245, + 7428619, + 7071722 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2018-07-03", + "completed": "2018-03-06", + "initiated": "2017-03-26", + "ministryContact": "STIEDEMANN ISABELL", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "createdAt": "2015-01-25", + "completed": "2019-04-06", + "initiated": "2016-07-21", + "ministryContact": "COLE BEAU", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "createdAt": "2021-08-13", + "completed": "2019-07-17", + "initiated": "2015-11-13", + "ministryContact": "ORTIZ RENEE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "createdAt": "2021-09-02", + "completed": "2019-08-09", + "initiated": "2020-12-01", + "ministryContact": "SKILES-FEENEY MURL", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "createdAt": "2021-04-09", + "completed": "2018-04-05", + "initiated": "2023-05-05", + "ministryContact": "EBERT ALVINA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + } + ], + "participants": [ + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2016-03-13", + "startDate": "2016-01-06", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2016-04-16", + "startDate": "2015-10-03", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "name": "AMET, DOLOR SIT", + "endDate": "2023-04-22", + "startDate": "2017-09-09", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2018-05-16", + "startDate": "2020-08-12", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "name": "IPSUM", + "endDate": "2014-09-25", + "startDate": "2022-06-16", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + } + ], + "associatedSites": [ + { + "dateNoted": "2016-12-19", + "notes": "", + "parcelID": "19069", + "siteID": "18047", + "siteRegistry": false + } + ] + }, + { + "uuid": "827c7bfa-23d0-4254-95e3-2080a225e8c1", + "siteID": 16222, + "address": "2945 Allen Tunnel", + "latitude": 57.3944, + "longitude": -133.0245, + "lastUpdated": "2015-10-26", + "city": "Georgetown", + "region": "Cariboo", + "victoriaFile": "26250-20/14152", + "regionalFile": "N/A", + "parcelIDs": [ + 4832935, + 4628945, + 4056613, + 3430160, + 9695825 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2020-08-25", + "completed": "2021-06-19", + "initiated": "2020-12-20", + "ministryContact": "JOHNSON ADRIENNE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "createdAt": "2014-04-08", + "completed": "2016-07-18", + "initiated": "2019-01-03", + "ministryContact": "MRAZ KURTIS", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + } + ], + "participants": [ + { + "name": "AMET, DOLOR SIT", + "endDate": "2021-05-09", + "startDate": "2019-06-19", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2019-09-28", + "startDate": "2015-12-31", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2019-05-29", + "startDate": "2016-05-13", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + } + ], + "associatedSites": [ + { + "dateNoted": "2017-09-20", + "notes": "", + "parcelID": "17243", + "siteID": "17449", + "siteRegistry": false + } + ] + }, + { + "uuid": "43abcba5-a6b5-4df5-8dd0-deddc31a8d8d", + "siteID": 19233, + "address": "512 Treutel Harbor", + "latitude": 51.8086, + "longitude": -131.4331, + "lastUpdated": "2018-11-26", + "city": "MacGyverburgh", + "region": "Cariboo", + "victoriaFile": "26250-20/10989", + "regionalFile": "N/A", + "parcelIDs": [ + 8644763, + 7115448, + 2456187, + 4422795, + 1453252 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2014-04-15", + "completed": "2015-06-08", + "initiated": "2023-07-26", + "ministryContact": "SCHIMMEL MARTINA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "createdAt": "2019-10-28", + "completed": "2020-01-30", + "initiated": "2020-05-21", + "ministryContact": "BAUMBACH TREVION", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "createdAt": "2016-01-21", + "completed": "2019-05-19", + "initiated": "2015-06-03", + "ministryContact": "O'KON RIGOBERTO", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + } + ], + "participants": [ + { + "name": "IPSUM", + "endDate": "2021-01-23", + "startDate": "2019-12-06", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "name": "IPSUM", + "endDate": "2015-06-06", + "startDate": "2022-03-10", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2023-08-19", + "startDate": "2015-09-24", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "name": "AMET, DOLOR SIT", + "endDate": "2017-01-15", + "startDate": "2019-01-14", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "name": "IPSUM", + "endDate": "2018-07-17", + "startDate": "2019-11-07", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + } + ], + "associatedSites": [ + { + "dateNoted": "2022-06-04", + "notes": "", + "parcelID": "19854", + "siteID": "19075", + "siteRegistry": false + } + ] + }, + { + "uuid": "e313ff01-1589-458d-a83e-50b2519ffce0", + "siteID": 15917, + "address": "9677 Fredy Light", + "latitude": 53.182, + "longitude": -126.0451, + "lastUpdated": "2016-07-09", + "city": "Candicefield", + "region": "Mainland/Southwest", + "victoriaFile": "26250-20/18276", + "regionalFile": "N/A", + "parcelIDs": [ + 3390385, + 1071952, + 5632610, + 9158025, + 8289010 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2014-08-09", + "completed": "2018-05-28", + "initiated": "2021-12-12", + "ministryContact": "WEHNER ZITA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "createdAt": "2018-06-06", + "completed": "2019-01-25", + "initiated": "2017-09-17", + "ministryContact": "HUEL THADDEUS", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "createdAt": "2022-08-14", + "completed": "2014-01-16", + "initiated": "2014-06-02", + "ministryContact": "DARE ELYSE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + } + ], + "participants": [ + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2022-08-06", + "startDate": "2023-06-13", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2022-06-09", + "startDate": "2022-06-29", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2019-07-31", + "startDate": "2016-12-04", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + } + ], + "associatedSites": [ + { + "dateNoted": "2019-10-19", + "notes": "", + "parcelID": "17956", + "siteID": "20869", + "siteRegistry": true + }, + { + "dateNoted": "2023-06-04", + "notes": "", + "parcelID": "19275", + "siteID": "17011", + "siteRegistry": true + }, + { + "dateNoted": "2016-08-01", + "notes": "", + "parcelID": "19487", + "siteID": "16986", + "siteRegistry": false + } + ] + }, + { + "uuid": "f93cdc09-ff01-4c75-b7d9-46a2572a51e2", + "siteID": 20641, + "address": "58249 Reba Coves", + "latitude": 52.2799, + "longitude": -118.1805, + "lastUpdated": "2023-02-21", + "city": "Lake Lynnshire", + "region": "Kootenay", + "victoriaFile": "26250-20/8512", + "regionalFile": "N/A", + "parcelIDs": [ + 1794596, + 1528486, + 5408011, + 2346442, + 5549500 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2020-06-17", + "completed": "2020-04-06", + "initiated": "2023-01-16", + "ministryContact": "BAYER BARRY", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "createdAt": "2019-09-27", + "completed": "2018-12-06", + "initiated": "2017-04-06", + "ministryContact": "DICKI CLEMENTINE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "createdAt": "2018-05-29", + "completed": "2016-01-31", + "initiated": "2018-09-16", + "ministryContact": "CARTER BROCK", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "createdAt": "2023-06-25", + "completed": "2020-05-17", + "initiated": "2019-04-16", + "ministryContact": "MOEN ISSAC", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "createdAt": "2019-08-05", + "completed": "2016-12-10", + "initiated": "2015-11-29", + "ministryContact": "CARTER DELPHIA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + } + ], + "participants": [ + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2023-07-10", + "startDate": "2020-01-11", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2014-11-13", + "startDate": "2020-01-26", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "AMET, DOLOR SIT", + "endDate": "2019-11-13", + "startDate": "2016-01-18", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2016-12-20", + "startDate": "2014-11-05", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + } + ], + "associatedSites": [ + { + "dateNoted": "2021-02-21", + "notes": "", + "parcelID": "15841", + "siteID": "16935", + "siteRegistry": true + } + ] + }, + { + "uuid": "e8b2e1eb-d6a0-46ba-84d9-a89649edd4ae", + "siteID": 17151, + "address": "187 Jerde Cove", + "latitude": 58.14, + "longitude": -122.2097, + "lastUpdated": "2015-11-30", + "city": "Burbank", + "region": " North Coast", + "victoriaFile": "26250-20/19322", + "regionalFile": "N/A", + "parcelIDs": [ + 4328372, + 8825104, + 8387338, + 272488, + 1326882 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2020-02-06", + "completed": "2021-02-19", + "initiated": "2016-10-19", + "ministryContact": "REYNOLDS STUART", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "createdAt": "2019-10-28", + "completed": "2015-04-18", + "initiated": "2015-05-20", + "ministryContact": "HERMISTON DANNY", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "createdAt": "2019-07-24", + "completed": "2015-04-10", + "initiated": "2017-10-01", + "ministryContact": "GLOVER KAY", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + } + ], + "participants": [ + { + "name": "AMET, DOLOR SIT", + "endDate": "2016-01-19", + "startDate": "2015-07-25", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "name": "IPSUM", + "endDate": "2017-06-08", + "startDate": "2020-08-06", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2019-03-31", + "startDate": "2021-09-04", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "AMET, DOLOR SIT", + "endDate": "2018-04-13", + "startDate": "2021-09-27", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + } + ], + "associatedSites": [ + { + "dateNoted": "2019-08-23", + "notes": "", + "parcelID": "16545", + "siteID": "15775", + "siteRegistry": true + }, + { + "dateNoted": "2017-04-12", + "notes": "", + "parcelID": "17864", + "siteID": "19819", + "siteRegistry": false + }, + { + "dateNoted": "2019-01-03", + "notes": "", + "parcelID": "20426", + "siteID": "18969", + "siteRegistry": false + } + ] + }, + { + "uuid": "8132ad47-ba3d-4b69-aa59-6a6189a0e894", + "siteID": 19589, + "address": "60099 Hilll Wells", + "latitude": 53.107, + "longitude": -121.118, + "lastUpdated": "2013-10-18", + "city": "Austinland", + "region": "Mainland/Southwest", + "victoriaFile": "26250-20/3542", + "regionalFile": "N/A", + "parcelIDs": [ + 6558411, + 8787749, + 2730018, + 2868429, + 2945412 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2018-09-02", + "completed": "2017-10-04", + "initiated": "2015-02-22", + "ministryContact": "HAAG KAY", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "createdAt": "2018-09-11", + "completed": "2013-10-11", + "initiated": "2017-12-04", + "ministryContact": "BEIER ASHTYN", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "createdAt": "2016-02-15", + "completed": "2023-07-22", + "initiated": "2016-10-21", + "ministryContact": "BRUEN MANUEL", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + } + ], + "participants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2022-08-22", + "startDate": "2015-10-14", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "name": "IPSUM", + "endDate": "2017-05-13", + "startDate": "2020-11-11", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2019-09-05", + "startDate": "2022-05-14", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "name": "IPSUM", + "endDate": "2023-08-09", + "startDate": "2019-01-12", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + } + ], + "associatedSites": [ + { + "dateNoted": "2018-05-24", + "notes": "", + "parcelID": "17936", + "siteID": "20858", + "siteRegistry": false + }, + { + "dateNoted": "2016-03-28", + "notes": "", + "parcelID": "18183", + "siteID": "19084", + "siteRegistry": true + }, + { + "dateNoted": "2020-05-25", + "notes": "", + "parcelID": "18543", + "siteID": "19773", + "siteRegistry": false + } + ] + }, + { + "uuid": "6ecef19f-a528-482d-916c-788634b47944", + "siteID": 15919, + "address": "89529 Onie Neck", + "latitude": 52.599, + "longitude": -137.2404, + "lastUpdated": "2023-03-25", + "city": "Mathiasmouth", + "region": "Vancouver Island/Coast", + "victoriaFile": "26250-20/5047", + "regionalFile": "N/A", + "parcelIDs": [ + 2773461, + 2179915, + 5646421, + 8422943, + 576914 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2017-07-11", + "completed": "2017-02-22", + "initiated": "2022-05-26", + "ministryContact": "MCKENZIE META", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "createdAt": "2017-02-13", + "completed": "2018-10-20", + "initiated": "2018-11-30", + "ministryContact": "KOELPIN BERNIE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "createdAt": "2023-07-27", + "completed": "2022-10-20", + "initiated": "2020-03-27", + "ministryContact": "MURRAY LISA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + } + ], + "participants": [ + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2017-01-22", + "startDate": "2019-11-30", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2020-04-06", + "startDate": "2021-04-26", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2020-05-25", + "startDate": "2016-02-26", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2022-01-23", + "startDate": "2023-08-11", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "name": "IPSUM", + "endDate": "2019-11-14", + "startDate": "2019-11-04", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + } + ], + "associatedSites": [ + { + "dateNoted": "2018-09-22", + "notes": "", + "parcelID": "20794", + "siteID": "15609", + "siteRegistry": false + }, + { + "dateNoted": "2019-08-20", + "notes": "", + "parcelID": "18631", + "siteID": "17237", + "siteRegistry": true + }, + { + "dateNoted": "2014-12-21", + "notes": "", + "parcelID": "18870", + "siteID": "16351", + "siteRegistry": true + } + ] + }, + { + "uuid": "a8c175b6-d835-4797-91bf-74aa762727c2", + "siteID": 18771, + "address": "388 Abigayle Avenue", + "latitude": 48.256, + "longitude": -131.9577, + "lastUpdated": "2018-03-14", + "city": "Downers Grove", + "region": "Vancouver Island/Coast", + "victoriaFile": "26250-20/15123", + "regionalFile": "N/A", + "parcelIDs": [ + 4324637, + 4985237, + 3001840, + 5344710, + 6220732 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2021-07-13", + "completed": "2016-02-25", + "initiated": "2021-09-14", + "ministryContact": "CONROY ISAC", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "createdAt": "2019-08-31", + "completed": "2022-01-09", + "initiated": "2021-09-15", + "ministryContact": "KUHLMAN AGUSTIN", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + } + ], + "participants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2022-06-28", + "startDate": "2020-07-17", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "name": "AMET, DOLOR SIT", + "endDate": "2015-07-27", + "startDate": "2020-01-02", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "name": "IPSUM", + "endDate": "2020-10-31", + "startDate": "2021-11-16", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2014-03-23", + "startDate": "2020-09-29", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + } + ], + "associatedSites": [ + { + "dateNoted": "2015-12-04", + "notes": "", + "parcelID": "20332", + "siteID": "19777", + "siteRegistry": true + }, + { + "dateNoted": "2015-06-03", + "notes": "", + "parcelID": "20434", + "siteID": "19037", + "siteRegistry": true + }, + { + "dateNoted": "2023-02-14", + "notes": "", + "parcelID": "16178", + "siteID": "18319", + "siteRegistry": true + } + ] + }, + { + "uuid": "d06dba96-610b-4552-a0b8-1125fa1dd55f", + "siteID": 19380, + "address": "431 Conner Bridge", + "latitude": 56.2589, + "longitude": -123.2851, + "lastUpdated": "2019-10-09", + "city": "Haagstead", + "region": "Kootenay", + "victoriaFile": "26250-20/10368", + "regionalFile": "N/A", + "parcelIDs": [ + 5232200, + 4151889, + 2376668, + 7787557, + 4783937 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2023-09-23", + "completed": "2020-02-11", + "initiated": "2014-06-22", + "ministryContact": "WELCH DARRON", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "createdAt": "2013-12-08", + "completed": "2022-10-27", + "initiated": "2022-07-27", + "ministryContact": "DANIEL YESENIA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "createdAt": "2022-11-08", + "completed": "2018-10-01", + "initiated": "2020-07-03", + "ministryContact": "MURPHY PRESLEY", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "createdAt": "2014-04-12", + "completed": "2023-08-15", + "initiated": "2013-10-10", + "ministryContact": "LABADIE DEDRICK", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "createdAt": "2020-09-15", + "completed": "2015-02-18", + "initiated": "2018-10-20", + "ministryContact": "GOODWIN-DOUGLAS JACINTHE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + } + ], + "participants": [ + { + "name": "AMET, DOLOR SIT", + "endDate": "2019-06-01", + "startDate": "2014-12-06", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "name": "IPSUM", + "endDate": "2017-03-23", + "startDate": "2021-03-03", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "AMET, DOLOR SIT", + "endDate": "2014-12-20", + "startDate": "2015-01-21", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "name": "IPSUM", + "endDate": "2016-03-02", + "startDate": "2020-02-11", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "IPSUM", + "endDate": "2021-12-18", + "startDate": "2021-06-06", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + } + ], + "associatedSites": [ + { + "dateNoted": "2016-03-03", + "notes": "", + "parcelID": "15275", + "siteID": "19093", + "siteRegistry": true + } + ] + }, + { + "uuid": "48d3aa0a-6152-4261-9fcb-6e32f205ef14", + "siteID": 19572, + "address": "567 Runolfsson Track", + "latitude": 56.2612, + "longitude": -137.6122, + "lastUpdated": "2022-02-01", + "city": "Fort Rosemarie", + "region": " North Coast", + "victoriaFile": "26250-20/13618", + "regionalFile": "N/A", + "parcelIDs": [ + 5836733, + 7554615, + 5918876, + 9790396, + 9623743 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2015-03-13", + "completed": "2019-12-30", + "initiated": "2019-10-23", + "ministryContact": "MOSCISKI DORIAN", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "createdAt": "2015-12-23", + "completed": "2018-07-29", + "initiated": "2015-08-27", + "ministryContact": "RUNOLFSDOTTIR BART", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "createdAt": "2021-08-08", + "completed": "2015-10-12", + "initiated": "2015-11-26", + "ministryContact": "FAY NYASIA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "createdAt": "2020-04-05", + "completed": "2015-03-15", + "initiated": "2020-02-26", + "ministryContact": "HOWELL NICK", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "createdAt": "2018-06-19", + "completed": "2023-08-04", + "initiated": "2021-04-28", + "ministryContact": "TREMBLAY TYRIQUE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + } + ], + "participants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2014-05-07", + "startDate": "2019-10-30", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "name": "AMET, DOLOR SIT", + "endDate": "2023-02-02", + "startDate": "2023-02-27", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + } + ], + "associatedSites": [ + { + "dateNoted": "2015-09-07", + "notes": "", + "parcelID": "16823", + "siteID": "17692", + "siteRegistry": false + }, + { + "dateNoted": "2022-01-03", + "notes": "", + "parcelID": "19656", + "siteID": "20023", + "siteRegistry": false + }, + { + "dateNoted": "2023-09-23", + "notes": "", + "parcelID": "15524", + "siteID": "15855", + "siteRegistry": false + } + ] + }, + { + "uuid": "69df1f2c-f564-4fb0-9058-cc8a407eaa84", + "siteID": 20250, + "address": "34741 Grant Club", + "latitude": 54.5821, + "longitude": -121.4634, + "lastUpdated": "2021-08-28", + "city": "West Markus", + "region": "Kootenay", + "victoriaFile": "26250-20/13755", + "regionalFile": "N/A", + "parcelIDs": [ + 1430449, + 8959150, + 6801023, + 1328923, + 2116242 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2020-06-06", + "completed": "2017-03-26", + "initiated": "2018-08-26", + "ministryContact": "KUPHAL HILARIO", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "createdAt": "2022-09-23", + "completed": "2019-02-10", + "initiated": "2016-08-15", + "ministryContact": "TRANTOW EZEQUIEL", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + } + ], + "participants": [ + { + "name": "IPSUM", + "endDate": "2020-01-24", + "startDate": "2015-07-23", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "name": "AMET, DOLOR SIT", + "endDate": "2015-07-21", + "startDate": "2016-03-11", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "IPSUM", + "endDate": "2017-03-24", + "startDate": "2022-02-13", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "name": "AMET, DOLOR SIT", + "endDate": "2015-11-03", + "startDate": "2023-04-02", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2015-06-21", + "startDate": "2013-11-24", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + } + ], + "associatedSites": [ + { + "dateNoted": "2014-09-14", + "notes": "", + "parcelID": "17047", + "siteID": "15361", + "siteRegistry": false + }, + { + "dateNoted": "2016-05-24", + "notes": "", + "parcelID": "16035", + "siteID": "19903", + "siteRegistry": true + }, + { + "dateNoted": "2022-02-18", + "notes": "", + "parcelID": "15559", + "siteID": "18969", + "siteRegistry": true + } + ] + }, + { + "uuid": "b202a0b7-5b37-4f8b-a0dc-6028bbbc0a53", + "siteID": 17304, + "address": "1527 Mayert Unions", + "latitude": 49.2068, + "longitude": -126.4799, + "lastUpdated": "2019-06-21", + "city": "North Lulu", + "region": "Mainland/Southwest", + "victoriaFile": "26250-20/3408", + "regionalFile": "N/A", + "parcelIDs": [ + 3740673, + 5498381, + 2509728, + 4085551, + 8653345 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2014-09-30", + "completed": "2014-11-07", + "initiated": "2019-05-15", + "ministryContact": "FEENEY ALIZA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "createdAt": "2018-11-02", + "completed": "2015-04-18", + "initiated": "2015-01-10", + "ministryContact": "KREIGER SHANIYA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "createdAt": "2017-01-15", + "completed": "2020-03-04", + "initiated": "2017-12-31", + "ministryContact": "WINTHEISER ADAH", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + } + ], + "participants": [ + { + "name": "IPSUM", + "endDate": "2022-05-13", + "startDate": "2017-07-12", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2014-04-20", + "startDate": "2016-01-20", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + } + ], + "associatedSites": [ + { + "dateNoted": "2020-12-20", + "notes": "", + "parcelID": "18312", + "siteID": "16193", + "siteRegistry": true + }, + { + "dateNoted": "2022-07-13", + "notes": "", + "parcelID": "17046", + "siteID": "18026", + "siteRegistry": false + }, + { + "dateNoted": "2023-07-10", + "notes": "", + "parcelID": "15377", + "siteID": "16559", + "siteRegistry": false + } + ] + }, + { + "uuid": "6b62aa3f-69d3-41f4-ab10-c5579523b18a", + "siteID": 20121, + "address": "36673 Eula Estates", + "latitude": 52.7732, + "longitude": -126.5176, + "lastUpdated": "2016-07-06", + "city": "Richardson", + "region": "Kootenay", + "victoriaFile": "26250-20/17939", + "regionalFile": "N/A", + "parcelIDs": [ + 1365055, + 1134021, + 9323153, + 3748543, + 4630316 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2015-02-20", + "completed": "2018-06-03", + "initiated": "2018-05-16", + "ministryContact": "SPORER-HILPERT CARROLL", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "createdAt": "2014-11-18", + "completed": "2019-01-30", + "initiated": "2022-05-02", + "ministryContact": "WISOKY MALLORY", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "createdAt": "2016-12-18", + "completed": "2022-09-14", + "initiated": "2019-12-25", + "ministryContact": "CONSIDINE MODESTA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "createdAt": "2018-07-13", + "completed": "2021-07-18", + "initiated": "2021-06-26", + "ministryContact": "BAUMBACH MALIKA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + } + ], + "participants": [ + { + "name": "IPSUM", + "endDate": "2021-09-16", + "startDate": "2014-09-26", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "name": "AMET, DOLOR SIT", + "endDate": "2016-10-10", + "startDate": "2022-10-22", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + } + ], + "associatedSites": [ + { + "dateNoted": "2017-03-20", + "notes": "", + "parcelID": "18114", + "siteID": "19777", + "siteRegistry": true + }, + { + "dateNoted": "2022-07-15", + "notes": "", + "parcelID": "20945", + "siteID": "17768", + "siteRegistry": true + }, + { + "dateNoted": "2014-09-13", + "notes": "", + "parcelID": "19366", + "siteID": "20957", + "siteRegistry": true + } + ] + }, + { + "uuid": "d62cd1a7-0585-410c-bf9f-79c2163a8e73", + "siteID": 19699, + "address": "15021 Marilyne Trail", + "latitude": 52.2895, + "longitude": -124.3934, + "lastUpdated": "2022-07-21", + "city": "Mishawaka", + "region": "Mainland/Southwest", + "victoriaFile": "26250-20/6536", + "regionalFile": "N/A", + "parcelIDs": [ + 2803868, + 6456848, + 4218060, + 7865947, + 2214615 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2023-01-27", + "completed": "2019-04-17", + "initiated": "2021-11-29", + "ministryContact": "SCHINNER LULU", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "createdAt": "2016-09-19", + "completed": "2018-10-22", + "initiated": "2016-02-28", + "ministryContact": "GRIMES TERESA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "createdAt": "2022-05-12", + "completed": "2018-09-19", + "initiated": "2015-06-14", + "ministryContact": "DAVIS JENNINGS", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "createdAt": "2020-08-22", + "completed": "2022-07-30", + "initiated": "2014-03-24", + "ministryContact": "BODE CORTNEY", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "createdAt": "2023-07-08", + "completed": "2019-12-15", + "initiated": "2020-01-20", + "ministryContact": "FUNK PAXTON", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + } + ], + "participants": [ + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2022-06-08", + "startDate": "2015-06-21", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "name": "AMET, DOLOR SIT", + "endDate": "2018-01-28", + "startDate": "2022-09-08", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "name": "AMET, DOLOR SIT", + "endDate": "2021-04-10", + "startDate": "2020-05-16", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2023-03-04", + "startDate": "2021-03-24", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + } + ], + "associatedSites": [ + { + "dateNoted": "2015-03-01", + "notes": "", + "parcelID": "18928", + "siteID": "18080", + "siteRegistry": true + }, + { + "dateNoted": "2015-03-28", + "notes": "", + "parcelID": "17497", + "siteID": "16645", + "siteRegistry": true + } + ] + }, + { + "uuid": "80d96f76-ad65-4ab1-a738-c8e2649fa73b", + "siteID": 15375, + "address": "53958 McLaughlin Burg", + "latitude": 49.0346, + "longitude": -136.6678, + "lastUpdated": "2021-06-27", + "city": "Danieltown", + "region": "Kootenay", + "victoriaFile": "26250-20/19206", + "regionalFile": "N/A", + "parcelIDs": [ + 3466719, + 2749073, + 2948717, + 5833809, + 2956753 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2022-03-21", + "completed": "2018-11-30", + "initiated": "2023-05-01", + "ministryContact": "ROOB GWENDOLYN", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "createdAt": "2018-09-21", + "completed": "2017-04-07", + "initiated": "2018-01-10", + "ministryContact": "ROWE SYLVAN", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + } + ], + "participants": [ + { + "name": "AMET, DOLOR SIT", + "endDate": "2015-05-29", + "startDate": "2015-05-03", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2018-04-30", + "startDate": "2020-02-23", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2014-09-01", + "startDate": "2015-05-23", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2021-05-20", + "startDate": "2020-01-10", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "name": "AMET, DOLOR SIT", + "endDate": "2014-03-08", + "startDate": "2019-06-20", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + } + ], + "associatedSites": [ + { + "dateNoted": "2020-06-18", + "notes": "", + "parcelID": "20275", + "siteID": "17304", + "siteRegistry": false + } + ] + }, + { + "uuid": "2627fd34-e3a4-4ad2-8f51-eca86114d5f1", + "siteID": 20323, + "address": "9303 Lebsack Crescent", + "latitude": 54.5391, + "longitude": -120.4933, + "lastUpdated": "2016-04-06", + "city": "Evelynworth", + "region": " North Coast", + "victoriaFile": "26250-20/17133", + "regionalFile": "N/A", + "parcelIDs": [ + 3398131, + 7013258, + 6028146, + 2171419, + 6376056 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2017-03-21", + "completed": "2022-01-09", + "initiated": "2019-08-20", + "ministryContact": "FRANECKI ERA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "createdAt": "2017-02-11", + "completed": "2019-08-20", + "initiated": "2016-06-14", + "ministryContact": "BARTOLETTI MADALINE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "createdAt": "2021-08-15", + "completed": "2014-02-22", + "initiated": "2023-04-18", + "ministryContact": "FISHER GUS", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + } + ], + "participants": [ + { + "name": "IPSUM", + "endDate": "2021-09-13", + "startDate": "2014-11-16", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2017-09-21", + "startDate": "2013-12-04", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "name": "AMET, DOLOR SIT", + "endDate": "2014-02-14", + "startDate": "2020-05-06", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "name": "AMET, DOLOR SIT", + "endDate": "2021-05-18", + "startDate": "2018-02-12", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "AMET, DOLOR SIT", + "endDate": "2014-12-14", + "startDate": "2017-09-08", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + } + ], + "associatedSites": [ + { + "dateNoted": "2021-07-06", + "notes": "", + "parcelID": "15811", + "siteID": "16916", + "siteRegistry": true + }, + { + "dateNoted": "2022-05-22", + "notes": "", + "parcelID": "18921", + "siteID": "17463", + "siteRegistry": true + }, + { + "dateNoted": "2014-02-14", + "notes": "", + "parcelID": "16058", + "siteID": "15945", + "siteRegistry": false + } + ] + }, + { + "uuid": "553f83fa-9c45-47cc-8261-516fd4076428", + "siteID": 20441, + "address": "865 Stark Stravenue", + "latitude": 53.8599, + "longitude": -120.0997, + "lastUpdated": "2017-09-17", + "city": "Maple Grove", + "region": "Kootenay", + "victoriaFile": "26250-20/13381", + "regionalFile": "N/A", + "parcelIDs": [ + 8468904, + 1836776, + 8207852, + 7827285, + 8726808 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2023-01-05", + "completed": "2022-04-04", + "initiated": "2016-02-20", + "ministryContact": "TERRY MONA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "createdAt": "2017-09-06", + "completed": "2018-09-27", + "initiated": "2023-05-13", + "ministryContact": "MURPHY DOMENIC", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "createdAt": "2013-10-17", + "completed": "2021-09-24", + "initiated": "2016-11-02", + "ministryContact": "HARVEY KIRK", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "createdAt": "2019-08-23", + "completed": "2015-01-19", + "initiated": "2022-01-04", + "ministryContact": "HARVEY JANESSA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + } + ], + "participants": [ + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2021-12-10", + "startDate": "2018-09-25", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "AMET, DOLOR SIT", + "endDate": "2023-07-01", + "startDate": "2021-01-13", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "name": "AMET, DOLOR SIT", + "endDate": "2019-03-05", + "startDate": "2014-10-23", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2014-07-22", + "startDate": "2017-07-10", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "AMET, DOLOR SIT", + "endDate": "2021-04-10", + "startDate": "2019-02-20", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + } + ], + "associatedSites": [ + { + "dateNoted": "2013-12-09", + "notes": "", + "parcelID": "18867", + "siteID": "15695", + "siteRegistry": true + } + ] + }, + { + "uuid": "a14f7c70-982b-4730-bd8e-718d948a7511", + "siteID": 18838, + "address": "7484 Strosin Course", + "latitude": 52.3405, + "longitude": -130.7358, + "lastUpdated": "2014-02-23", + "city": "West Demarcus", + "region": "Vancouver Island/Coast", + "victoriaFile": "26250-20/8678", + "regionalFile": "N/A", + "parcelIDs": [ + 1092714, + 6615449, + 3550775, + 4309529, + 2741028 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2022-01-27", + "completed": "2020-03-24", + "initiated": "2019-01-09", + "ministryContact": "KOHLER KAMERON", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "createdAt": "2022-09-13", + "completed": "2019-09-11", + "initiated": "2021-09-20", + "ministryContact": "REICHERT JESUS", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "createdAt": "2020-12-16", + "completed": "2014-06-25", + "initiated": "2019-03-11", + "ministryContact": "SWIFT-KULAS REBECCA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "createdAt": "2020-07-16", + "completed": "2022-02-08", + "initiated": "2023-01-03", + "ministryContact": "FRANECKI BRANDT", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + } + ], + "participants": [ + { + "name": "AMET, DOLOR SIT", + "endDate": "2015-10-10", + "startDate": "2015-06-13", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2015-04-20", + "startDate": "2014-04-16", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "name": "IPSUM", + "endDate": "2023-04-14", + "startDate": "2014-11-21", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "name": "IPSUM", + "endDate": "2020-06-22", + "startDate": "2016-07-28", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + } + ], + "associatedSites": [ + { + "dateNoted": "2021-03-03", + "notes": "", + "parcelID": "20443", + "siteID": "15945", + "siteRegistry": true + }, + { + "dateNoted": "2016-02-15", + "notes": "", + "parcelID": "16203", + "siteID": "18587", + "siteRegistry": true + }, + { + "dateNoted": "2017-05-15", + "notes": "", + "parcelID": "18737", + "siteID": "19572", + "siteRegistry": true + } + ] + }, + { + "uuid": "92318901-437d-40fd-a100-01190d587cf1", + "siteID": 20353, + "address": "44043 Morissette Neck", + "latitude": 49.2447, + "longitude": -127.6819, + "lastUpdated": "2020-05-22", + "city": "West Anastasiafurt", + "region": "Vancouver Island/Coast", + "victoriaFile": "26250-20/10323", + "regionalFile": "N/A", + "parcelIDs": [ + 4222985, + 5510589, + 1349427, + 233980, + 3041950 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2020-02-01", + "completed": "2020-09-24", + "initiated": "2022-02-17", + "ministryContact": "HOWE ABDULLAH", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "createdAt": "2015-02-28", + "completed": "2017-11-28", + "initiated": "2019-04-22", + "ministryContact": "JAST ANNA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "createdAt": "2020-05-26", + "completed": "2017-03-08", + "initiated": "2017-07-31", + "ministryContact": "WISOZK JUSTYN", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "createdAt": "2019-05-19", + "completed": "2021-10-24", + "initiated": "2014-05-09", + "ministryContact": "HETTINGER SAMMIE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + } + ], + "participants": [ + { + "name": "IPSUM", + "endDate": "2018-11-15", + "startDate": "2015-09-15", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2020-05-18", + "startDate": "2017-12-16", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2017-09-23", + "startDate": "2017-06-20", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "name": "IPSUM", + "endDate": "2021-05-06", + "startDate": "2023-09-09", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2020-12-14", + "startDate": "2016-12-31", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + } + ], + "associatedSites": [ + { + "dateNoted": "2021-10-16", + "notes": "", + "parcelID": "20893", + "siteID": "17795", + "siteRegistry": true + }, + { + "dateNoted": "2015-10-09", + "notes": "", + "parcelID": "19990", + "siteID": "17935", + "siteRegistry": true + } + ] + }, + { + "uuid": "ad6699fd-d62b-4da7-8e1c-74c47ff5e03f", + "siteID": 20957, + "address": "481 Nicolas Mall", + "latitude": 52.9553, + "longitude": -130.7153, + "lastUpdated": "2020-05-11", + "city": "West Mattboro", + "region": "Mainland/Southwest", + "victoriaFile": "26250-20/17812", + "regionalFile": "N/A", + "parcelIDs": [ + 9973402, + 1048826, + 8597974, + 1819992, + 1550186 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2018-10-28", + "completed": "2016-05-15", + "initiated": "2019-05-12", + "ministryContact": "BERGSTROM-KIEHN AILEEN", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "createdAt": "2022-07-27", + "completed": "2015-12-26", + "initiated": "2021-07-07", + "ministryContact": "SAUER KITTY", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "createdAt": "2014-01-20", + "completed": "2018-09-15", + "initiated": "2017-05-26", + "ministryContact": "ORTIZ KOBE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "createdAt": "2015-12-13", + "completed": "2023-06-01", + "initiated": "2014-01-24", + "ministryContact": "BARTOLETTI NICOLE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + } + ], + "participants": [ + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2018-06-19", + "startDate": "2014-12-02", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2020-03-18", + "startDate": "2021-08-13", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "IPSUM", + "endDate": "2015-03-28", + "startDate": "2022-08-01", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2023-09-01", + "startDate": "2021-04-15", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2014-11-30", + "startDate": "2013-11-26", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + } + ], + "associatedSites": [ + { + "dateNoted": "2022-05-24", + "notes": "", + "parcelID": "16103", + "siteID": "15229", + "siteRegistry": false + }, + { + "dateNoted": "2018-12-20", + "notes": "", + "parcelID": "17051", + "siteID": "18695", + "siteRegistry": true + }, + { + "dateNoted": "2020-01-07", + "notes": "", + "parcelID": "18187", + "siteID": "17012", + "siteRegistry": false + } + ] + }, + { + "uuid": "a22a0ee7-5343-4db9-ba89-4f43951f17fe", + "siteID": 19669, + "address": "7102 Brain Ramp", + "latitude": 51.2112, + "longitude": -132.3599, + "lastUpdated": "2018-07-14", + "city": "West Arvidport", + "region": "Thompson-Okanagan", + "victoriaFile": "26250-20/4047", + "regionalFile": "N/A", + "parcelIDs": [ + 754790, + 3806529, + 4375779, + 4372679, + 9077601 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2013-10-25", + "completed": "2021-05-22", + "initiated": "2020-01-04", + "ministryContact": "MOSCISKI-RUTHERFORD LEONARD", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "createdAt": "2022-04-08", + "completed": "2020-11-20", + "initiated": "2016-08-10", + "ministryContact": "CRONA MALINDA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "createdAt": "2015-10-18", + "completed": "2014-08-11", + "initiated": "2014-11-27", + "ministryContact": "CUMMINGS MINERVA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "createdAt": "2019-12-30", + "completed": "2017-07-10", + "initiated": "2018-09-30", + "ministryContact": "KIRLIN LAILA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "createdAt": "2015-02-17", + "completed": "2019-06-29", + "initiated": "2016-04-15", + "ministryContact": "HARBER JASEN", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + } + ], + "participants": [ + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2018-08-08", + "startDate": "2022-08-28", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2023-01-11", + "startDate": "2016-11-26", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "name": "IPSUM", + "endDate": "2016-12-18", + "startDate": "2017-03-21", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "AMET, DOLOR SIT", + "endDate": "2018-07-13", + "startDate": "2017-06-03", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "IPSUM", + "endDate": "2018-04-25", + "startDate": "2022-02-27", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + } + ], + "associatedSites": [ + { + "dateNoted": "2015-09-26", + "notes": "", + "parcelID": "15285", + "siteID": "17151", + "siteRegistry": false + }, + { + "dateNoted": "2023-08-30", + "notes": "", + "parcelID": "17441", + "siteID": "15457", + "siteRegistry": false + } + ] + }, + { + "uuid": "5a2d7b12-9de1-4f0f-b86d-8af56058d374", + "siteID": 16673, + "address": "291 Cloyd Roads", + "latitude": 49.3852, + "longitude": -121.6286, + "lastUpdated": "2022-10-31", + "city": "Augusta-Richmond County", + "region": "Kootenay", + "victoriaFile": "26250-20/19155", + "regionalFile": "N/A", + "parcelIDs": [ + 3156802, + 4468713, + 9888926, + 8147097, + 1086488 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2015-02-15", + "completed": "2017-01-15", + "initiated": "2019-03-19", + "ministryContact": "COLLIER TAD", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "createdAt": "2017-10-13", + "completed": "2022-12-29", + "initiated": "2015-03-10", + "ministryContact": "HARRIS AYLIN", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "createdAt": "2019-05-12", + "completed": "2016-01-18", + "initiated": "2015-05-17", + "ministryContact": "TREUTEL LEOPOLDO", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "createdAt": "2015-07-23", + "completed": "2016-09-03", + "initiated": "2015-06-09", + "ministryContact": "FEEST COLBY", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "createdAt": "2020-05-22", + "completed": "2013-10-23", + "initiated": "2016-01-04", + "ministryContact": "FISHER RODOLFO", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + } + ], + "participants": [ + { + "name": "AMET, DOLOR SIT", + "endDate": "2019-10-04", + "startDate": "2019-12-10", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2021-04-25", + "startDate": "2017-06-11", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2015-03-15", + "startDate": "2020-06-17", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + } + ], + "associatedSites": [ + { + "dateNoted": "2021-08-04", + "notes": "", + "parcelID": "18556", + "siteID": "19084", + "siteRegistry": true + } + ] + }, + { + "uuid": "648643b4-262e-41fc-bcdc-1ba09d51827c", + "siteID": 20773, + "address": "43071 O'Keefe Rapid", + "latitude": 54.387, + "longitude": -138.3217, + "lastUpdated": "2014-07-24", + "city": "Martashire", + "region": "Mainland/Southwest", + "victoriaFile": "26250-20/7776", + "regionalFile": "N/A", + "parcelIDs": [ + 9815147, + 8131291, + 4411533, + 4623942, + 8623466 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2016-01-20", + "completed": "2019-05-14", + "initiated": "2018-11-10", + "ministryContact": "LANGOSH CORENE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "createdAt": "2015-07-07", + "completed": "2020-09-03", + "initiated": "2019-05-17", + "ministryContact": "HARBER ABIGAIL", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "createdAt": "2015-10-09", + "completed": "2015-11-29", + "initiated": "2020-07-16", + "ministryContact": "JOHNS RON", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "createdAt": "2016-11-02", + "completed": "2020-03-21", + "initiated": "2015-11-05", + "ministryContact": "DAUGHERTY WILTON", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + } + ], + "participants": [ + { + "name": "IPSUM", + "endDate": "2015-12-09", + "startDate": "2015-04-29", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2018-04-20", + "startDate": "2023-06-15", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2019-06-12", + "startDate": "2018-10-29", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "name": "AMET, DOLOR SIT", + "endDate": "2018-03-17", + "startDate": "2020-07-17", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + } + ], + "associatedSites": [ + { + "dateNoted": "2016-02-26", + "notes": "", + "parcelID": "18614", + "siteID": "15656", + "siteRegistry": false + }, + { + "dateNoted": "2014-09-21", + "notes": "", + "parcelID": "17986", + "siteID": "19699", + "siteRegistry": true + }, + { + "dateNoted": "2015-05-19", + "notes": "", + "parcelID": "17425", + "siteID": "19796", + "siteRegistry": false + } + ] + }, + { + "uuid": "13fc2f1d-4acd-41b5-abdc-2eeea2c75807", + "siteID": 15695, + "address": "1143 Gibson Branch", + "latitude": 56.7179, + "longitude": -135.2911, + "lastUpdated": "2023-05-04", + "city": "Rancho Palos Verdes", + "region": "Thompson-Okanagan", + "victoriaFile": "26250-20/8533", + "regionalFile": "N/A", + "parcelIDs": [ + 3342807, + 2832303, + 3357844, + 8770942, + 8258208 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2022-02-15", + "completed": "2022-11-04", + "initiated": "2014-08-26", + "ministryContact": "LOWE AMARA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "createdAt": "2022-10-27", + "completed": "2017-02-27", + "initiated": "2018-11-07", + "ministryContact": "STANTON ALIYAH", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "createdAt": "2023-05-30", + "completed": "2020-05-07", + "initiated": "2017-06-17", + "ministryContact": "ONDRICKA MADELYN", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + } + ], + "participants": [ + { + "name": "IPSUM", + "endDate": "2023-05-24", + "startDate": "2014-01-29", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "IPSUM", + "endDate": "2014-01-26", + "startDate": "2014-01-12", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "IPSUM", + "endDate": "2016-03-08", + "startDate": "2022-11-02", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "name": "AMET, DOLOR SIT", + "endDate": "2020-02-27", + "startDate": "2015-11-01", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + } + ], + "associatedSites": [ + { + "dateNoted": "2018-12-30", + "notes": "", + "parcelID": "20707", + "siteID": "20211", + "siteRegistry": true + }, + { + "dateNoted": "2019-10-04", + "notes": "", + "parcelID": "18872", + "siteID": "16312", + "siteRegistry": false + }, + { + "dateNoted": "2015-07-06", + "notes": "", + "parcelID": "18656", + "siteID": "20869", + "siteRegistry": false + } + ] + }, + { + "uuid": "70a15884-9f89-4e22-806a-2a3fdc41a595", + "siteID": 16935, + "address": "94239 O'Keefe Ridges", + "latitude": 48.9139, + "longitude": -133.3162, + "lastUpdated": "2022-05-25", + "city": "North Isaiberg", + "region": "Vancouver Island/Coast", + "victoriaFile": "26250-20/18132", + "regionalFile": "N/A", + "parcelIDs": [ + 6442159, + 9473650, + 2196498, + 1429551, + 6943597 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2013-10-01", + "completed": "2016-03-05", + "initiated": "2016-05-11", + "ministryContact": "CUMMINGS DELLA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "createdAt": "2017-11-09", + "completed": "2015-12-25", + "initiated": "2019-08-08", + "ministryContact": "ANKUNDING CAROLE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + } + ], + "participants": [ + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2019-06-03", + "startDate": "2019-10-04", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2022-11-03", + "startDate": "2020-07-19", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "AMET, DOLOR SIT", + "endDate": "2020-07-18", + "startDate": "2016-05-13", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + } + ], + "associatedSites": [ + { + "dateNoted": "2017-11-21", + "notes": "", + "parcelID": "18974", + "siteID": "17260", + "siteRegistry": false + } + ] + }, + { + "uuid": "e1424391-1602-49f4-9923-6b464ab44d69", + "siteID": 18080, + "address": "927 Edd Inlet", + "latitude": 58.7303, + "longitude": -132.6962, + "lastUpdated": "2023-07-03", + "city": "New Fredy", + "region": "Vancouver Island/Coast", + "victoriaFile": "26250-20/4286", + "regionalFile": "N/A", + "parcelIDs": [ + 4387933, + 2723417, + 3395001, + 620620, + 9792215 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2018-07-17", + "completed": "2018-07-12", + "initiated": "2014-10-24", + "ministryContact": "NIKOLAUS THELMA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "createdAt": "2021-11-14", + "completed": "2014-10-18", + "initiated": "2019-08-27", + "ministryContact": "JOHNSTON JANY", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "createdAt": "2020-10-13", + "completed": "2019-04-25", + "initiated": "2013-11-07", + "ministryContact": "FEENEY CAROLINA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + } + ], + "participants": [ + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2021-04-09", + "startDate": "2015-04-28", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "IPSUM", + "endDate": "2022-03-06", + "startDate": "2016-04-08", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2019-04-30", + "startDate": "2016-11-08", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2015-07-23", + "startDate": "2018-11-13", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "AMET, DOLOR SIT", + "endDate": "2015-11-30", + "startDate": "2020-02-20", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + } + ], + "associatedSites": [ + { + "dateNoted": "2013-12-01", + "notes": "", + "parcelID": "18775", + "siteID": "15919", + "siteRegistry": true + }, + { + "dateNoted": "2014-12-16", + "notes": "", + "parcelID": "18457", + "siteID": "20957", + "siteRegistry": false + }, + { + "dateNoted": "2017-09-26", + "notes": "", + "parcelID": "18979", + "siteID": "15543", + "siteRegistry": true + } + ] + }, + { + "uuid": "da6cf77d-ac87-4076-bc1a-2ed83d09f3c0", + "siteID": 16814, + "address": "670 Zemlak Dam", + "latitude": 52.7848, + "longitude": -134.7527, + "lastUpdated": "2021-06-06", + "city": "South Sarahberg", + "region": "Kootenay", + "victoriaFile": "26250-20/15388", + "regionalFile": "N/A", + "parcelIDs": [ + 8164600, + 2437399, + 4985247, + 614088, + 642230 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2020-09-09", + "completed": "2022-12-31", + "initiated": "2023-03-23", + "ministryContact": "QUIGLEY KATELYNN", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "createdAt": "2018-06-05", + "completed": "2017-12-17", + "initiated": "2019-09-02", + "ministryContact": "BERNHARD OWEN", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "createdAt": "2015-05-26", + "completed": "2014-07-12", + "initiated": "2019-03-16", + "ministryContact": "FERRY JABARI", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "createdAt": "2019-05-24", + "completed": "2015-12-10", + "initiated": "2018-01-23", + "ministryContact": "WISOKY KEEGAN", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + } + ], + "participants": [ + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2017-08-09", + "startDate": "2018-09-10", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2020-10-22", + "startDate": "2015-11-12", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2013-11-11", + "startDate": "2016-10-20", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "AMET, DOLOR SIT", + "endDate": "2016-12-27", + "startDate": "2016-11-13", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2019-01-05", + "startDate": "2020-09-27", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + } + ], + "associatedSites": [ + { + "dateNoted": "2017-10-27", + "notes": "", + "parcelID": "16115", + "siteID": "19087", + "siteRegistry": false + }, + { + "dateNoted": "2023-07-06", + "notes": "", + "parcelID": "19925", + "siteID": "17304", + "siteRegistry": false + } + ] + }, + { + "uuid": "0e7df480-4e0c-495f-9bdd-90ab21c685e2", + "siteID": 16358, + "address": "453 Dariana Wall", + "latitude": 51.3633, + "longitude": -129.3411, + "lastUpdated": "2020-06-11", + "city": "Parma", + "region": " North Coast", + "victoriaFile": "26250-20/7651", + "regionalFile": "N/A", + "parcelIDs": [ + 3221205, + 6085943, + 4328061, + 5768215, + 7722132 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2017-08-11", + "completed": "2017-07-10", + "initiated": "2019-02-25", + "ministryContact": "BARTOLETTI ULICES", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "createdAt": "2022-10-22", + "completed": "2017-08-01", + "initiated": "2019-05-19", + "ministryContact": "DARE ANIBAL", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "createdAt": "2016-09-26", + "completed": "2021-01-07", + "initiated": "2014-12-28", + "ministryContact": "FEENEY OLAF", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "createdAt": "2016-11-11", + "completed": "2022-06-07", + "initiated": "2021-05-01", + "ministryContact": "WOLFF ALLEN", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + } + ], + "participants": [ + { + "name": "IPSUM", + "endDate": "2016-06-11", + "startDate": "2020-10-14", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2014-05-26", + "startDate": "2014-09-21", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2021-02-18", + "startDate": "2014-04-16", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2022-10-27", + "startDate": "2022-08-14", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + } + ], + "associatedSites": [ + { + "dateNoted": "2014-08-18", + "notes": "", + "parcelID": "16432", + "siteID": "20443", + "siteRegistry": false + } + ] + }, + { + "uuid": "05d0ea04-d49a-4570-acc2-c222949e2073", + "siteID": 16228, + "address": "7310 Randall Mountain", + "latitude": 52.7593, + "longitude": -119.4251, + "lastUpdated": "2019-07-24", + "city": "Lake Delfinastad", + "region": "Cariboo", + "victoriaFile": "26250-20/13206", + "regionalFile": "N/A", + "parcelIDs": [ + 3603920, + 7748186, + 3954932, + 5869004, + 8839593 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2017-02-10", + "completed": "2018-01-20", + "initiated": "2020-01-01", + "ministryContact": "O'CONNELL JAMMIE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "createdAt": "2013-11-24", + "completed": "2022-11-24", + "initiated": "2022-01-25", + "ministryContact": "CHRISTIANSEN MYRA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "createdAt": "2015-08-09", + "completed": "2014-06-13", + "initiated": "2017-03-27", + "ministryContact": "PREDOVIC NEVA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + } + ], + "participants": [ + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2019-07-31", + "startDate": "2015-09-24", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2023-05-24", + "startDate": "2022-11-19", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "name": "AMET, DOLOR SIT", + "endDate": "2019-05-02", + "startDate": "2020-02-24", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "name": "IPSUM", + "endDate": "2017-02-11", + "startDate": "2018-09-06", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + } + ], + "associatedSites": [ + { + "dateNoted": "2023-05-28", + "notes": "", + "parcelID": "19501", + "siteID": "20833", + "siteRegistry": false + } + ] + }, + { + "uuid": "8aaa0cc4-ee00-4da7-977c-f4d3d9bcb80f", + "siteID": 16133, + "address": "1331 Cassin Motorway", + "latitude": 53.2407, + "longitude": -135.6348, + "lastUpdated": "2022-11-28", + "city": "Douglaschester", + "region": "Vancouver Island/Coast", + "victoriaFile": "26250-20/15381", + "regionalFile": "N/A", + "parcelIDs": [ + 7530696, + 1587878, + 5160817, + 5826632, + 8064287 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2017-07-27", + "completed": "2017-03-23", + "initiated": "2023-01-10", + "ministryContact": "BUCKRIDGE NORENE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "createdAt": "2015-04-02", + "completed": "2022-11-18", + "initiated": "2021-08-18", + "ministryContact": "STREICH LARUE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "createdAt": "2021-02-14", + "completed": "2021-04-02", + "initiated": "2022-04-04", + "ministryContact": "MCCLURE TORREY", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "createdAt": "2017-02-02", + "completed": "2018-11-08", + "initiated": "2019-12-20", + "ministryContact": "SCHMIDT KASSANDRA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "createdAt": "2017-11-12", + "completed": "2021-04-30", + "initiated": "2019-08-22", + "ministryContact": "FERRY HALIE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + } + ], + "participants": [ + { + "name": "IPSUM", + "endDate": "2018-01-12", + "startDate": "2015-01-09", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2014-01-05", + "startDate": "2018-07-16", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2023-02-18", + "startDate": "2017-05-12", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "AMET, DOLOR SIT", + "endDate": "2022-07-23", + "startDate": "2018-01-29", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + } + ], + "associatedSites": [ + { + "dateNoted": "2017-06-03", + "notes": "", + "parcelID": "19721", + "siteID": "19351", + "siteRegistry": false + }, + { + "dateNoted": "2021-03-07", + "notes": "", + "parcelID": "19282", + "siteID": "18587", + "siteRegistry": false + } + ] + }, + { + "uuid": "4896cd4c-83e7-436e-9429-ce7bf5e76a7f", + "siteID": 19457, + "address": "843 Macey Parkways", + "latitude": 48.8272, + "longitude": -132.3948, + "lastUpdated": "2020-12-03", + "city": "Handville", + "region": "Vancouver Island/Coast", + "victoriaFile": "26250-20/11649", + "regionalFile": "N/A", + "parcelIDs": [ + 315921, + 161983, + 6794481, + 9573279, + 2744601 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2021-03-29", + "completed": "2021-02-13", + "initiated": "2014-05-17", + "ministryContact": "KOSS KATELIN", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "createdAt": "2022-04-22", + "completed": "2023-09-11", + "initiated": "2019-07-29", + "ministryContact": "SCHADEN HAYLEE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "createdAt": "2022-08-25", + "completed": "2014-04-07", + "initiated": "2022-09-06", + "ministryContact": "ALTENWERTH MARISOL", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "createdAt": "2018-04-18", + "completed": "2015-01-12", + "initiated": "2020-10-11", + "ministryContact": "BAHRINGER CAMILLE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "createdAt": "2015-08-18", + "completed": "2019-10-13", + "initiated": "2022-09-16", + "ministryContact": "TRANTOW GIDEON", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + } + ], + "participants": [ + { + "name": "IPSUM", + "endDate": "2019-08-16", + "startDate": "2021-05-08", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2023-02-26", + "startDate": "2015-09-27", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2022-12-19", + "startDate": "2023-08-24", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2021-11-09", + "startDate": "2017-07-15", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + } + ], + "associatedSites": [ + { + "dateNoted": "2022-08-08", + "notes": "", + "parcelID": "18577", + "siteID": "17203", + "siteRegistry": true + }, + { + "dateNoted": "2020-01-09", + "notes": "", + "parcelID": "15571", + "siteID": "16645", + "siteRegistry": false + } + ] + }, + { + "uuid": "01c6ceee-f856-4fea-b783-d010e66ab029", + "siteID": 16796, + "address": "415 Corkery Lock", + "latitude": 53.7381, + "longitude": -137.6596, + "lastUpdated": "2014-11-25", + "city": "Damianworth", + "region": "Cariboo", + "victoriaFile": "26250-20/15027", + "regionalFile": "N/A", + "parcelIDs": [ + 5089821, + 5892873, + 1359939, + 4897455, + 5205174 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2023-07-22", + "completed": "2017-10-13", + "initiated": "2016-10-17", + "ministryContact": "GISLASON-ABSHIRE VLADIMIR", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "createdAt": "2018-10-18", + "completed": "2018-05-14", + "initiated": "2016-12-30", + "ministryContact": "PARKER ALLAN", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "createdAt": "2017-01-20", + "completed": "2020-05-03", + "initiated": "2017-10-25", + "ministryContact": "KRIS DULCE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "createdAt": "2019-09-15", + "completed": "2017-11-20", + "initiated": "2023-06-18", + "ministryContact": "METZ LUCAS", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "createdAt": "2018-08-21", + "completed": "2015-09-25", + "initiated": "2015-11-18", + "ministryContact": "KUHIC LILLIANA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + } + ], + "participants": [ + { + "name": "IPSUM", + "endDate": "2015-03-25", + "startDate": "2019-05-02", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "AMET, DOLOR SIT", + "endDate": "2014-03-13", + "startDate": "2015-06-25", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + } + ], + "associatedSites": [ + { + "dateNoted": "2014-08-23", + "notes": "", + "parcelID": "16214", + "siteID": "16736", + "siteRegistry": true + } + ] + }, + { + "uuid": "8fc4d6e1-f0d6-423e-87f1-2f76d8073eac", + "siteID": 19728, + "address": "4187 Kevon Mill", + "latitude": 51.6467, + "longitude": -137.1424, + "lastUpdated": "2014-05-06", + "city": "New Dominiquehaven", + "region": "Kootenay", + "victoriaFile": "26250-20/8477", + "regionalFile": "N/A", + "parcelIDs": [ + 4472838, + 6338782, + 1767861, + 2115508, + 436045 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2018-06-01", + "completed": "2014-10-13", + "initiated": "2016-05-12", + "ministryContact": "TORPHY DANE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "createdAt": "2015-12-20", + "completed": "2016-07-23", + "initiated": "2020-01-02", + "ministryContact": "SCHUPPE KILEY", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "createdAt": "2020-03-05", + "completed": "2015-02-12", + "initiated": "2016-08-03", + "ministryContact": "BOGAN DANIKA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "createdAt": "2015-05-25", + "completed": "2021-11-14", + "initiated": "2017-02-23", + "ministryContact": "SPENCER EVERETTE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + } + ], + "participants": [ + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2016-10-10", + "startDate": "2022-08-29", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "name": "IPSUM", + "endDate": "2015-06-16", + "startDate": "2014-02-01", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + } + ], + "associatedSites": [ + { + "dateNoted": "2016-10-20", + "notes": "", + "parcelID": "20457", + "siteID": "19740", + "siteRegistry": false + }, + { + "dateNoted": "2015-04-11", + "notes": "", + "parcelID": "20221", + "siteID": "17394", + "siteRegistry": true + }, + { + "dateNoted": "2022-10-25", + "notes": "", + "parcelID": "17235", + "siteID": "17057", + "siteRegistry": true + } + ] + }, + { + "uuid": "f4bc52bb-e406-49b5-ba70-98e0d887f6a5", + "siteID": 18497, + "address": "19324 Jules Crossroad", + "latitude": 48.4519, + "longitude": -127.6226, + "lastUpdated": "2013-12-14", + "city": "Maurinefort", + "region": "Mainland/Southwest", + "victoriaFile": "26250-20/3973", + "regionalFile": "N/A", + "parcelIDs": [ + 1315602, + 6754216, + 1268104, + 2157161, + 4483903 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2016-08-14", + "completed": "2022-06-20", + "initiated": "2014-03-04", + "ministryContact": "PFANNERSTILL EDMUND", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "createdAt": "2022-06-18", + "completed": "2019-12-02", + "initiated": "2020-12-17", + "ministryContact": "BECKER ADALBERTO", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "createdAt": "2022-03-03", + "completed": "2016-03-05", + "initiated": "2015-01-04", + "ministryContact": "BOTSFORD NICKOLAS", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "createdAt": "2021-09-29", + "completed": "2019-08-17", + "initiated": "2022-10-28", + "ministryContact": "WINTHEISER HARDY", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + } + ], + "participants": [ + { + "name": "IPSUM", + "endDate": "2014-03-31", + "startDate": "2017-02-21", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2015-07-28", + "startDate": "2020-04-07", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + } + ], + "associatedSites": [ + { + "dateNoted": "2017-06-03", + "notes": "", + "parcelID": "15947", + "siteID": "15656", + "siteRegistry": true + }, + { + "dateNoted": "2021-08-01", + "notes": "", + "parcelID": "20194", + "siteID": "17036", + "siteRegistry": true + }, + { + "dateNoted": "2014-10-19", + "notes": "", + "parcelID": "18065", + "siteID": "16193", + "siteRegistry": true + } + ] + }, + { + "uuid": "e6db2523-0781-42f2-b4ef-b5a3ee447bda", + "siteID": 19741, + "address": "745 Jayce Ville", + "latitude": 50.3024, + "longitude": -118.4011, + "lastUpdated": "2014-10-24", + "city": "New Reggie", + "region": "Vancouver Island/Coast", + "victoriaFile": "26250-20/2508", + "regionalFile": "N/A", + "parcelIDs": [ + 4226859, + 6158872, + 9141372, + 1910124, + 5711430 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2020-09-07", + "completed": "2018-12-31", + "initiated": "2020-12-05", + "ministryContact": "CARTWRIGHT ALTHEA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "createdAt": "2023-09-17", + "completed": "2023-01-11", + "initiated": "2015-12-05", + "ministryContact": "WEHNER CARLOTTA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "createdAt": "2018-08-06", + "completed": "2021-12-17", + "initiated": "2014-10-07", + "ministryContact": "KONOPELSKI DEVAN", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "createdAt": "2023-01-21", + "completed": "2016-05-07", + "initiated": "2021-11-18", + "ministryContact": "TOY KASSANDRA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "createdAt": "2017-05-08", + "completed": "2023-05-22", + "initiated": "2022-10-19", + "ministryContact": "OSINSKI JUSTEN", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + } + ], + "participants": [ + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2022-04-19", + "startDate": "2019-12-02", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2020-02-02", + "startDate": "2017-02-10", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2020-09-14", + "startDate": "2015-10-17", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + } + ], + "associatedSites": [ + { + "dateNoted": "2015-05-19", + "notes": "", + "parcelID": "16231", + "siteID": "17011", + "siteRegistry": true + }, + { + "dateNoted": "2019-03-13", + "notes": "", + "parcelID": "19484", + "siteID": "19093", + "siteRegistry": false + } + ] + }, + { + "uuid": "2da3f43b-facb-4c06-80d3-3a3bb806ecfd", + "siteID": 15495, + "address": "550 Bradford Via", + "latitude": 54.6787, + "longitude": -131.1878, + "lastUpdated": "2023-09-09", + "city": "West Arnoldtown", + "region": "Mainland/Southwest", + "victoriaFile": "26250-20/9566", + "regionalFile": "N/A", + "parcelIDs": [ + 4382037, + 6861572, + 7891637, + 6323807, + 5951509 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2018-11-02", + "completed": "2017-09-04", + "initiated": "2014-10-31", + "ministryContact": "BARTELL-GERLACH KILEY", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "createdAt": "2014-02-04", + "completed": "2017-02-15", + "initiated": "2020-10-29", + "ministryContact": "LEMKE BERTHA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "createdAt": "2021-12-09", + "completed": "2017-01-04", + "initiated": "2016-06-08", + "ministryContact": "RAYNOR GARFIELD", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "createdAt": "2018-06-10", + "completed": "2021-05-26", + "initiated": "2017-12-13", + "ministryContact": "RUTHERFORD MARIA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + } + ], + "participants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2019-01-23", + "startDate": "2020-06-22", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "name": "IPSUM", + "endDate": "2016-06-16", + "startDate": "2020-03-20", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + } + ], + "associatedSites": [ + { + "dateNoted": "2022-12-25", + "notes": "", + "parcelID": "20080", + "siteID": "15792", + "siteRegistry": false + }, + { + "dateNoted": "2021-04-05", + "notes": "", + "parcelID": "16957", + "siteID": "19409", + "siteRegistry": true + }, + { + "dateNoted": "2014-04-22", + "notes": "", + "parcelID": "19300", + "siteID": "16723", + "siteRegistry": false + } + ] + }, + { + "uuid": "983f0ace-5a36-48d1-85b5-4d03c733dd81", + "siteID": 17280, + "address": "83495 Bergstrom Squares", + "latitude": 55.976, + "longitude": -127.8275, + "lastUpdated": "2023-02-12", + "city": "Maggioton", + "region": "Kootenay", + "victoriaFile": "26250-20/1861", + "regionalFile": "N/A", + "parcelIDs": [ + 6434344, + 8324651, + 7921304, + 306394, + 5111694 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2013-10-03", + "completed": "2013-10-02", + "initiated": "2018-02-12", + "ministryContact": "WOLFF HECTOR", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "createdAt": "2016-10-28", + "completed": "2022-12-04", + "initiated": "2020-07-14", + "ministryContact": "STROSIN CHRISTOPHE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + } + ], + "participants": [ + { + "name": "AMET, DOLOR SIT", + "endDate": "2014-05-11", + "startDate": "2015-03-25", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "name": "IPSUM", + "endDate": "2020-06-03", + "startDate": "2014-10-08", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "AMET, DOLOR SIT", + "endDate": "2016-04-20", + "startDate": "2022-12-17", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2016-06-08", + "startDate": "2020-06-08", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + } + ], + "associatedSites": [ + { + "dateNoted": "2014-04-13", + "notes": "", + "parcelID": "16645", + "siteID": "17561", + "siteRegistry": true + } + ] + }, + { + "uuid": "6000e622-264c-4e59-9ffb-a4ef031a4480", + "siteID": 17914, + "address": "5187 Jazmyne Glens", + "latitude": 50.3944, + "longitude": -135.1402, + "lastUpdated": "2015-12-13", + "city": "San Ramon", + "region": "Mainland/Southwest", + "victoriaFile": "26250-20/10942", + "regionalFile": "N/A", + "parcelIDs": [ + 6563048, + 9309411, + 6457112, + 1846921, + 5075690 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2014-11-07", + "completed": "2022-04-05", + "initiated": "2023-03-14", + "ministryContact": "PAGAC JASEN", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "createdAt": "2017-01-01", + "completed": "2023-06-07", + "initiated": "2015-06-29", + "ministryContact": "WILL ANGELITA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "createdAt": "2021-08-09", + "completed": "2018-10-02", + "initiated": "2020-01-15", + "ministryContact": "SHANAHAN DORRIS", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + } + ], + "participants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2018-01-31", + "startDate": "2023-09-02", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "name": "AMET, DOLOR SIT", + "endDate": "2018-12-09", + "startDate": "2018-06-28", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + } + ], + "associatedSites": [ + { + "dateNoted": "2014-12-02", + "notes": "", + "parcelID": "16902", + "siteID": "20017", + "siteRegistry": true + } + ] + }, + { + "uuid": "17dd78c3-e02d-4201-b83b-d6c9f3da3ef8", + "siteID": 15822, + "address": "345 Goyette Mill", + "latitude": 49.379, + "longitude": -130.511, + "lastUpdated": "2016-01-29", + "city": "Port Cadeville", + "region": "Mainland/Southwest", + "victoriaFile": "26250-20/15745", + "regionalFile": "N/A", + "parcelIDs": [ + 6387234, + 6363161, + 1158289, + 3669411, + 5138544 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2019-01-29", + "completed": "2016-03-13", + "initiated": "2019-07-17", + "ministryContact": "MOORE LEOLA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "createdAt": "2019-06-18", + "completed": "2020-02-03", + "initiated": "2017-06-12", + "ministryContact": "DIBBERT RICKEY", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "createdAt": "2019-03-05", + "completed": "2022-05-11", + "initiated": "2022-12-13", + "ministryContact": "LEDNER EWALD", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + } + ], + "participants": [ + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2015-10-10", + "startDate": "2020-04-21", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "IPSUM", + "endDate": "2013-12-23", + "startDate": "2013-12-26", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "AMET, DOLOR SIT", + "endDate": "2020-04-22", + "startDate": "2022-03-15", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + } + ], + "associatedSites": [ + { + "dateNoted": "2016-01-04", + "notes": "", + "parcelID": "16485", + "siteID": "19072", + "siteRegistry": true + }, + { + "dateNoted": "2023-06-09", + "notes": "", + "parcelID": "19779", + "siteID": "16986", + "siteRegistry": true + } + ] + }, + { + "uuid": "d0c07582-1820-4e0d-9d3c-07fe6061497b", + "siteID": 17275, + "address": "849 Gerhold Trace", + "latitude": 51.5662, + "longitude": -123.5947, + "lastUpdated": "2020-06-25", + "city": "Kshlerincester", + "region": "Cariboo", + "victoriaFile": "26250-20/13758", + "regionalFile": "N/A", + "parcelIDs": [ + 6691773, + 9214706, + 6946326, + 2230182, + 8318527 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2015-12-11", + "completed": "2020-01-15", + "initiated": "2017-02-19", + "ministryContact": "REINGER DONNELL", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "createdAt": "2018-06-07", + "completed": "2018-08-18", + "initiated": "2014-05-31", + "ministryContact": "BOYER JAZMIN", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + } + ], + "participants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2016-06-24", + "startDate": "2015-02-14", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "IPSUM", + "endDate": "2023-05-01", + "startDate": "2021-03-12", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + } + ], + "associatedSites": [ + { + "dateNoted": "2020-03-03", + "notes": "", + "parcelID": "15852", + "siteID": "17057", + "siteRegistry": true + } + ] + }, + { + "uuid": "00cad5a8-d631-4fdb-b0a1-0f97dc6bcd91", + "siteID": 17935, + "address": "99086 Smith Glens", + "latitude": 56.3317, + "longitude": -138.6163, + "lastUpdated": "2019-03-16", + "city": "Torphyfurt", + "region": "Cariboo", + "victoriaFile": "26250-20/12702", + "regionalFile": "N/A", + "parcelIDs": [ + 935366, + 4508705, + 6098137, + 1033671, + 5327499 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2014-08-11", + "completed": "2018-04-21", + "initiated": "2021-02-22", + "ministryContact": "KOCH THEO", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "createdAt": "2013-10-03", + "completed": "2016-07-11", + "initiated": "2017-10-29", + "ministryContact": "GIBSON MARIAH", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "createdAt": "2018-04-30", + "completed": "2017-12-21", + "initiated": "2021-08-16", + "ministryContact": "HEANEY ROWENA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "createdAt": "2022-02-09", + "completed": "2014-03-10", + "initiated": "2015-11-25", + "ministryContact": "MARVIN BERNICE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "createdAt": "2023-06-02", + "completed": "2020-11-11", + "initiated": "2021-11-10", + "ministryContact": "RUNOLFSSON LAUREN", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + } + ], + "participants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2014-04-02", + "startDate": "2017-08-28", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "name": "AMET, DOLOR SIT", + "endDate": "2017-07-24", + "startDate": "2016-01-19", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "name": "IPSUM", + "endDate": "2020-09-18", + "startDate": "2022-07-29", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2016-11-28", + "startDate": "2022-06-22", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + } + ], + "associatedSites": [ + { + "dateNoted": "2015-09-07", + "notes": "", + "parcelID": "17985", + "siteID": "16966", + "siteRegistry": false + } + ] + }, + { + "uuid": "2937436c-b092-414a-8549-31e198a4fa72", + "siteID": 17113, + "address": "61107 Gorczany Canyon", + "latitude": 48.4982, + "longitude": -133.123, + "lastUpdated": "2020-04-07", + "city": "Robertaborough", + "region": " North Coast", + "victoriaFile": "26250-20/12523", + "regionalFile": "N/A", + "parcelIDs": [ + 9148716, + 1745820, + 2725568, + 5863482, + 8177127 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2021-03-01", + "completed": "2019-08-11", + "initiated": "2016-01-20", + "ministryContact": "GUTKOWSKI ALYSA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "createdAt": "2016-07-28", + "completed": "2020-11-24", + "initiated": "2014-05-27", + "ministryContact": "HANE ELENA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + } + ], + "participants": [ + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2018-08-14", + "startDate": "2016-01-12", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2019-06-22", + "startDate": "2017-02-17", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "name": "IPSUM", + "endDate": "2015-07-07", + "startDate": "2019-09-17", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + } + ], + "associatedSites": [ + { + "dateNoted": "2022-09-13", + "notes": "", + "parcelID": "18813", + "siteID": "15375", + "siteRegistry": true + }, + { + "dateNoted": "2017-06-18", + "notes": "", + "parcelID": "15301", + "siteID": "15351", + "siteRegistry": false + }, + { + "dateNoted": "2023-08-06", + "notes": "", + "parcelID": "17264", + "siteID": "16721", + "siteRegistry": false + } + ] + }, + { + "uuid": "648a1fba-2809-48b6-8c82-4574250f8526", + "siteID": 17237, + "address": "28125 Elna Turnpike", + "latitude": 52.1374, + "longitude": -118.5191, + "lastUpdated": "2016-01-04", + "city": "New Gloriaside", + "region": "Thompson-Okanagan", + "victoriaFile": "26250-20/7046", + "regionalFile": "N/A", + "parcelIDs": [ + 2272154, + 2529468, + 9704429, + 6612296, + 5927772 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2022-09-25", + "completed": "2013-10-26", + "initiated": "2019-05-29", + "ministryContact": "BLICK-HAHN MONTE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "createdAt": "2018-02-18", + "completed": "2023-01-25", + "initiated": "2014-05-18", + "ministryContact": "HAGENES PRICE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "createdAt": "2022-01-23", + "completed": "2022-07-06", + "initiated": "2023-02-06", + "ministryContact": "VEUM QUINTON", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "createdAt": "2016-10-22", + "completed": "2017-02-20", + "initiated": "2017-04-15", + "ministryContact": "HAUCK MURIEL", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + } + ], + "participants": [ + { + "name": "AMET, DOLOR SIT", + "endDate": "2015-02-14", + "startDate": "2020-03-02", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2015-06-23", + "startDate": "2016-06-23", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + } + ], + "associatedSites": [ + { + "dateNoted": "2017-03-23", + "notes": "", + "parcelID": "17548", + "siteID": "18126", + "siteRegistry": false + }, + { + "dateNoted": "2018-12-06", + "notes": "", + "parcelID": "15986", + "siteID": "17074", + "siteRegistry": false + } + ] + }, + { + "uuid": "cfa355b1-ef6c-444c-b4df-727beca114a7", + "siteID": 17260, + "address": "3134 Aubrey Parkways", + "latitude": 53.4711, + "longitude": -134.1641, + "lastUpdated": "2017-01-14", + "city": "East Mariloubury", + "region": "Kootenay", + "victoriaFile": "26250-20/13973", + "regionalFile": "N/A", + "parcelIDs": [ + 6319731, + 6397293, + 5630114, + 6998805, + 996695 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2013-11-13", + "completed": "2017-05-23", + "initiated": "2015-12-05", + "ministryContact": "KOELPIN REBEKAH", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "createdAt": "2014-02-12", + "completed": "2018-09-28", + "initiated": "2015-03-28", + "ministryContact": "GLOVER LUTHER", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "createdAt": "2019-09-09", + "completed": "2019-01-22", + "initiated": "2020-08-03", + "ministryContact": "RIPPIN LEANN", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "createdAt": "2019-10-22", + "completed": "2016-08-09", + "initiated": "2014-06-20", + "ministryContact": "HILLS MILES", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "createdAt": "2019-03-16", + "completed": "2018-08-29", + "initiated": "2014-03-15", + "ministryContact": "KSHLERIN CARLOTTA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + } + ], + "participants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2023-01-04", + "startDate": "2022-10-16", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "name": "IPSUM", + "endDate": "2016-06-13", + "startDate": "2022-02-25", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "IPSUM", + "endDate": "2020-07-24", + "startDate": "2020-03-23", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + } + ], + "associatedSites": [ + { + "dateNoted": "2020-08-16", + "notes": "", + "parcelID": "17344", + "siteID": "18495", + "siteRegistry": true + }, + { + "dateNoted": "2015-09-05", + "notes": "", + "parcelID": "16098", + "siteID": "16814", + "siteRegistry": false + } + ] + }, + { + "uuid": "7eeeeba2-3488-4ae7-85d5-223c9e3fd806", + "siteID": 20307, + "address": "301 Schaden Green", + "latitude": 52.9296, + "longitude": -131.9655, + "lastUpdated": "2014-11-02", + "city": "Balistrerihaven", + "region": " North Coast", + "victoriaFile": "26250-20/1557", + "regionalFile": "N/A", + "parcelIDs": [ + 5709042, + 2475516, + 8607587, + 6838747, + 5296868 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2023-06-03", + "completed": "2015-09-22", + "initiated": "2019-09-06", + "ministryContact": "OKUNEVA ALPHONSO", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "createdAt": "2019-12-24", + "completed": "2020-10-23", + "initiated": "2016-03-01", + "ministryContact": "O'CONNER FRANK", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "createdAt": "2021-03-04", + "completed": "2019-02-21", + "initiated": "2019-07-05", + "ministryContact": "DURGAN KING", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + } + ], + "participants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2018-01-03", + "startDate": "2021-01-01", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "name": "AMET, DOLOR SIT", + "endDate": "2015-09-24", + "startDate": "2020-01-07", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "name": "IPSUM", + "endDate": "2015-09-21", + "startDate": "2019-05-08", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + } + ], + "associatedSites": [ + { + "dateNoted": "2017-12-25", + "notes": "", + "parcelID": "15767", + "siteID": "19773", + "siteRegistry": true + } + ] + }, + { + "uuid": "d8e386d6-b6e6-4191-bba5-2e7c7e7e8d0c", + "siteID": 19773, + "address": "37309 Cummings Pine", + "latitude": 56.8824, + "longitude": -119.5775, + "lastUpdated": "2019-03-06", + "city": "East Brett", + "region": "Kootenay", + "victoriaFile": "26250-20/3488", + "regionalFile": "N/A", + "parcelIDs": [ + 233574, + 1432146, + 4275686, + 1776010, + 7025425 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2023-01-13", + "completed": "2021-09-06", + "initiated": "2014-03-25", + "ministryContact": "HILLS LEONIE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "createdAt": "2018-03-25", + "completed": "2018-03-11", + "initiated": "2019-02-01", + "ministryContact": "REICHEL ANDRE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "createdAt": "2019-05-20", + "completed": "2013-10-13", + "initiated": "2013-12-06", + "ministryContact": "RUNOLFSDOTTIR NELLIE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "createdAt": "2014-04-27", + "completed": "2017-11-13", + "initiated": "2020-12-28", + "ministryContact": "O'KON TRESSIE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "createdAt": "2021-03-31", + "completed": "2014-06-24", + "initiated": "2018-04-13", + "ministryContact": "TERRY SABRINA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + } + ], + "participants": [ + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2017-05-28", + "startDate": "2017-07-04", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2017-12-08", + "startDate": "2023-06-30", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + } + ], + "associatedSites": [ + { + "dateNoted": "2017-10-18", + "notes": "", + "parcelID": "18774", + "siteID": "20788", + "siteRegistry": true + }, + { + "dateNoted": "2021-05-17", + "notes": "", + "parcelID": "20008", + "siteID": "17449", + "siteRegistry": false + } + ] + }, + { + "uuid": "f34d7aa7-1847-43ef-9623-4bd479fd98c0", + "siteID": 19872, + "address": "2154 Torphy Lock", + "latitude": 48.614, + "longitude": -126.1157, + "lastUpdated": "2017-07-13", + "city": "New Oda", + "region": "Mainland/Southwest", + "victoriaFile": "26250-20/1444", + "regionalFile": "N/A", + "parcelIDs": [ + 3147762, + 1389596, + 4576731, + 5897827, + 1241325 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2018-11-25", + "completed": "2013-12-08", + "initiated": "2013-11-07", + "ministryContact": "COLLINS JULIET", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "createdAt": "2020-04-20", + "completed": "2023-09-05", + "initiated": "2022-09-02", + "ministryContact": "PARKER-HEATHCOTE TRESSA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "createdAt": "2022-07-15", + "completed": "2015-11-08", + "initiated": "2015-02-19", + "ministryContact": "GUSIKOWSKI DESTINY", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + } + ], + "participants": [ + { + "name": "AMET, DOLOR SIT", + "endDate": "2023-04-02", + "startDate": "2014-12-26", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "AMET, DOLOR SIT", + "endDate": "2017-10-21", + "startDate": "2018-04-01", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2017-02-28", + "startDate": "2020-11-01", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "IPSUM", + "endDate": "2020-07-21", + "startDate": "2017-01-12", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2016-10-11", + "startDate": "2018-09-05", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + } + ], + "associatedSites": [ + { + "dateNoted": "2021-01-24", + "notes": "", + "parcelID": "19402", + "siteID": "17038", + "siteRegistry": true + } + ] + }, + { + "uuid": "7df0b60a-5d9f-4fd0-b4a5-6b4c57398b31", + "siteID": 19093, + "address": "32352 Hermann Locks", + "latitude": 49.8272, + "longitude": -129.8147, + "lastUpdated": "2014-08-03", + "city": "Baileychester", + "region": "Vancouver Island/Coast", + "victoriaFile": "26250-20/9597", + "regionalFile": "N/A", + "parcelIDs": [ + 9087147, + 3603778, + 5553827, + 6907641, + 2515038 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2013-12-27", + "completed": "2015-02-20", + "initiated": "2018-06-06", + "ministryContact": "BARTELL DAMIEN", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "createdAt": "2020-03-28", + "completed": "2020-04-27", + "initiated": "2014-07-26", + "ministryContact": "RENNER AUBREE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "createdAt": "2013-12-14", + "completed": "2019-06-28", + "initiated": "2020-03-21", + "ministryContact": "HARTMANN MARC", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "createdAt": "2019-12-08", + "completed": "2016-11-02", + "initiated": "2023-08-29", + "ministryContact": "HYATT EDISON", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "createdAt": "2022-08-19", + "completed": "2021-03-18", + "initiated": "2016-04-15", + "ministryContact": "HARRIS JULIEN", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + } + ], + "participants": [ + { + "name": "AMET, DOLOR SIT", + "endDate": "2016-08-29", + "startDate": "2017-05-07", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "name": "IPSUM", + "endDate": "2015-09-12", + "startDate": "2014-10-23", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "name": "AMET, DOLOR SIT", + "endDate": "2020-02-23", + "startDate": "2020-08-31", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + } + ], + "associatedSites": [ + { + "dateNoted": "2017-03-24", + "notes": "", + "parcelID": "19476", + "siteID": "16703", + "siteRegistry": true + }, + { + "dateNoted": "2016-08-14", + "notes": "", + "parcelID": "18472", + "siteID": "15980", + "siteRegistry": true + } + ] + }, + { + "uuid": "03666d2f-1c9b-4284-9a89-0b810df6dc9d", + "siteID": 19701, + "address": "850 Carroll Creek", + "latitude": 53.8145, + "longitude": -124.035, + "lastUpdated": "2017-03-11", + "city": "Paterson", + "region": "Kootenay", + "victoriaFile": "26250-20/6334", + "regionalFile": "N/A", + "parcelIDs": [ + 1603639, + 5673011, + 9250838, + 4132638, + 9962144 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2015-04-29", + "completed": "2016-11-20", + "initiated": "2014-01-24", + "ministryContact": "LOCKMAN KEELY", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "createdAt": "2016-11-15", + "completed": "2019-04-14", + "initiated": "2021-04-20", + "ministryContact": "SAUER CHRISTY", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "createdAt": "2022-11-02", + "completed": "2022-03-25", + "initiated": "2023-05-16", + "ministryContact": "WOLF ROBIN", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "createdAt": "2018-07-23", + "completed": "2021-08-28", + "initiated": "2016-05-15", + "ministryContact": "HETTINGER AUDRA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + } + ], + "participants": [ + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2016-05-05", + "startDate": "2020-05-28", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "name": "AMET, DOLOR SIT", + "endDate": "2016-12-27", + "startDate": "2017-12-18", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2013-11-09", + "startDate": "2015-05-13", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2015-09-03", + "startDate": "2016-11-28", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2015-10-28", + "startDate": "2017-03-06", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + } + ], + "associatedSites": [ + { + "dateNoted": "2014-09-23", + "notes": "", + "parcelID": "16837", + "siteID": "20947", + "siteRegistry": false + }, + { + "dateNoted": "2019-04-14", + "notes": "", + "parcelID": "20205", + "siteID": "19897", + "siteRegistry": true + } + ] + }, + { + "uuid": "9e9d62e1-34e3-4974-9fb1-c1a96a0253f7", + "siteID": 18274, + "address": "64350 Ethan Greens", + "latitude": 50.3342, + "longitude": -119.6225, + "lastUpdated": "2016-01-28", + "city": "Athens-Clarke County", + "region": "Kootenay", + "victoriaFile": "26250-20/17861", + "regionalFile": "N/A", + "parcelIDs": [ + 8545610, + 477863, + 4402893, + 386544, + 8247015 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2019-08-23", + "completed": "2022-10-22", + "initiated": "2015-06-06", + "ministryContact": "HEANEY BERENICE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "createdAt": "2016-10-11", + "completed": "2018-12-20", + "initiated": "2021-10-11", + "ministryContact": "REINGER PATTIE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + } + ], + "participants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2022-04-15", + "startDate": "2018-10-17", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "name": "IPSUM", + "endDate": "2018-08-01", + "startDate": "2022-12-26", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2015-09-06", + "startDate": "2018-12-16", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + } + ], + "associatedSites": [ + { + "dateNoted": "2015-03-14", + "notes": "", + "parcelID": "17525", + "siteID": "16986", + "siteRegistry": true + }, + { + "dateNoted": "2017-08-14", + "notes": "", + "parcelID": "18581", + "siteID": "15945", + "siteRegistry": false + }, + { + "dateNoted": "2015-05-20", + "notes": "", + "parcelID": "18732", + "siteID": "19048", + "siteRegistry": true + } + ] + }, + { + "uuid": "8a9503a1-6268-4185-888a-c23cf7d92997", + "siteID": 17454, + "address": "721 Erling Trail", + "latitude": 55.151, + "longitude": -120.7264, + "lastUpdated": "2017-12-26", + "city": "Myrticeburgh", + "region": "Mainland/Southwest", + "victoriaFile": "26250-20/2725", + "regionalFile": "N/A", + "parcelIDs": [ + 9863219, + 5288151, + 6153099, + 2153753, + 6738553 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2022-08-25", + "completed": "2022-03-09", + "initiated": "2015-03-08", + "ministryContact": "KEELING-JENKINS PINKIE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "createdAt": "2016-10-05", + "completed": "2015-06-18", + "initiated": "2013-10-23", + "ministryContact": "FARRELL JASPER", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "createdAt": "2016-09-11", + "completed": "2018-11-03", + "initiated": "2016-06-20", + "ministryContact": "O'REILLY RAMON", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "createdAt": "2021-01-27", + "completed": "2020-12-18", + "initiated": "2020-10-23", + "ministryContact": "BATZ AMIE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "createdAt": "2014-10-07", + "completed": "2020-01-05", + "initiated": "2022-08-16", + "ministryContact": "LEANNON DOROTHY", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + } + ], + "participants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2023-09-12", + "startDate": "2016-02-06", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "name": "AMET, DOLOR SIT", + "endDate": "2017-06-25", + "startDate": "2019-07-06", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "name": "AMET, DOLOR SIT", + "endDate": "2018-04-09", + "startDate": "2023-03-28", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2014-06-01", + "startDate": "2016-01-30", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2014-05-11", + "startDate": "2021-08-31", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + } + ], + "associatedSites": [ + { + "dateNoted": "2017-03-26", + "notes": "", + "parcelID": "16559", + "siteID": "17012", + "siteRegistry": true + }, + { + "dateNoted": "2022-04-04", + "notes": "", + "parcelID": "20968", + "siteID": "19351", + "siteRegistry": true + } + ] + }, + { + "uuid": "cf68a39f-0505-4c34-bd2e-4c1a78631040", + "siteID": 19314, + "address": "4863 King Well", + "latitude": 51.8882, + "longitude": -133.358, + "lastUpdated": "2020-10-27", + "city": "Layneboro", + "region": "Kootenay", + "victoriaFile": "26250-20/9978", + "regionalFile": "N/A", + "parcelIDs": [ + 6224003, + 5290809, + 5850577, + 585406, + 288115 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2015-06-03", + "completed": "2022-05-03", + "initiated": "2021-03-03", + "ministryContact": "KEELING ANITA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "createdAt": "2022-10-14", + "completed": "2021-01-29", + "initiated": "2015-01-26", + "ministryContact": "FERRY KAYDEN", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "createdAt": "2017-09-03", + "completed": "2016-02-18", + "initiated": "2017-05-18", + "ministryContact": "MILLER TYLER", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "createdAt": "2016-06-17", + "completed": "2016-08-05", + "initiated": "2017-05-09", + "ministryContact": "ABSHIRE JOY", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "createdAt": "2022-11-03", + "completed": "2017-09-28", + "initiated": "2021-02-09", + "ministryContact": "DARE GRADY", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + } + ], + "participants": [ + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2018-08-29", + "startDate": "2023-09-17", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "IPSUM", + "endDate": "2019-04-09", + "startDate": "2014-04-23", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2020-02-06", + "startDate": "2022-11-28", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2017-08-20", + "startDate": "2017-10-23", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2019-10-26", + "startDate": "2017-08-07", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + } + ], + "associatedSites": [ + { + "dateNoted": "2022-12-28", + "notes": "", + "parcelID": "18418", + "siteID": "15919", + "siteRegistry": true + }, + { + "dateNoted": "2015-11-13", + "notes": "", + "parcelID": "20570", + "siteID": "18517", + "siteRegistry": false + } + ] + }, + { + "uuid": "ed839ca2-d6df-4f2c-9c3c-9ed2acc85fbb", + "siteID": 19407, + "address": "79946 Langosh Highway", + "latitude": 50.856, + "longitude": -125.2751, + "lastUpdated": "2016-04-30", + "city": "Demondberg", + "region": "Mainland/Southwest", + "victoriaFile": "26250-20/990", + "regionalFile": "N/A", + "parcelIDs": [ + 227262, + 3372092, + 6022754, + 8430587, + 5971294 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2016-11-18", + "completed": "2021-09-12", + "initiated": "2017-10-22", + "ministryContact": "STREICH NOEMY", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "createdAt": "2014-12-19", + "completed": "2020-10-13", + "initiated": "2017-05-03", + "ministryContact": "KULAS JORGE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "createdAt": "2020-04-08", + "completed": "2016-10-02", + "initiated": "2015-12-05", + "ministryContact": "KULAS NOVA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "createdAt": "2022-08-06", + "completed": "2014-05-26", + "initiated": "2018-10-08", + "ministryContact": "HELLER IGNATIUS", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + } + ], + "participants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2023-08-13", + "startDate": "2014-03-18", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2018-07-14", + "startDate": "2019-04-10", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + } + ], + "associatedSites": [ + { + "dateNoted": "2022-04-10", + "notes": "", + "parcelID": "20039", + "siteID": "20366", + "siteRegistry": false + } + ] + }, + { + "uuid": "a64f2441-bfae-4187-807b-f20649a6926f", + "siteID": 17795, + "address": "16860 Eriberto Valley", + "latitude": 52.9928, + "longitude": -126.8573, + "lastUpdated": "2020-10-19", + "city": "Addisonboro", + "region": "Thompson-Okanagan", + "victoriaFile": "26250-20/7819", + "regionalFile": "N/A", + "parcelIDs": [ + 3368006, + 5168824, + 1979922, + 9865547, + 7291494 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2014-10-11", + "completed": "2019-10-25", + "initiated": "2017-03-31", + "ministryContact": "CASSIN-WELCH ROSALINDA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "createdAt": "2019-12-01", + "completed": "2020-08-05", + "initiated": "2018-03-07", + "ministryContact": "WATSICA STEPHAN", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + } + ], + "participants": [ + { + "name": "IPSUM", + "endDate": "2020-11-09", + "startDate": "2016-08-26", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "name": "AMET, DOLOR SIT", + "endDate": "2017-02-23", + "startDate": "2018-04-01", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "IPSUM", + "endDate": "2020-09-01", + "startDate": "2023-04-05", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "AMET, DOLOR SIT", + "endDate": "2018-06-28", + "startDate": "2014-07-26", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + } + ], + "associatedSites": [ + { + "dateNoted": "2021-09-22", + "notes": "", + "parcelID": "20319", + "siteID": "17038", + "siteRegistry": false + }, + { + "dateNoted": "2023-08-03", + "notes": "", + "parcelID": "18918", + "siteID": "17414", + "siteRegistry": true + } + ] + }, + { + "uuid": "8ca034ab-81b0-486d-ba16-82c9f5ab1f4c", + "siteID": 19409, + "address": "4368 Rath Greens", + "latitude": 54.4748, + "longitude": -130.9228, + "lastUpdated": "2015-12-17", + "city": "Vincenzaboro", + "region": "Kootenay", + "victoriaFile": "26250-20/10653", + "regionalFile": "N/A", + "parcelIDs": [ + 7936753, + 6512346, + 9812202, + 3871712, + 6332216 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2019-02-09", + "completed": "2014-05-02", + "initiated": "2016-03-27", + "ministryContact": "KOCH PRISCILLA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "createdAt": "2023-04-08", + "completed": "2021-08-26", + "initiated": "2020-08-06", + "ministryContact": "TREUTEL KEITH", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + } + ], + "participants": [ + { + "name": "IPSUM", + "endDate": "2022-09-20", + "startDate": "2022-09-21", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "name": "AMET, DOLOR SIT", + "endDate": "2018-11-10", + "startDate": "2014-03-28", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "name": "IPSUM", + "endDate": "2017-01-09", + "startDate": "2022-05-22", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2017-08-20", + "startDate": "2017-11-07", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + } + ], + "associatedSites": [ + { + "dateNoted": "2020-03-07", + "notes": "", + "parcelID": "20467", + "siteID": "17012", + "siteRegistry": false + }, + { + "dateNoted": "2023-02-09", + "notes": "", + "parcelID": "17120", + "siteID": "17012", + "siteRegistry": true + } + ] + }, + { + "uuid": "b4d80de1-65f6-4220-8017-b9149c2a02b6", + "siteID": 18753, + "address": "478 Emery Plain", + "latitude": 54.2502, + "longitude": -126.6058, + "lastUpdated": "2019-01-31", + "city": "Jacintheworth", + "region": " North Coast", + "victoriaFile": "26250-20/9714", + "regionalFile": "N/A", + "parcelIDs": [ + 7400397, + 6651026, + 7649213, + 6232797, + 7320142 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2017-06-24", + "completed": "2014-12-26", + "initiated": "2020-08-04", + "ministryContact": "HARRIS EZEKIEL", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "createdAt": "2023-03-22", + "completed": "2014-06-29", + "initiated": "2016-05-18", + "ministryContact": "BARTELL JACE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "createdAt": "2016-05-24", + "completed": "2023-07-05", + "initiated": "2021-08-21", + "ministryContact": "STROMAN COLE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "createdAt": "2016-08-27", + "completed": "2020-07-09", + "initiated": "2016-03-04", + "ministryContact": "SHANAHAN LYSANNE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + } + ], + "participants": [ + { + "name": "IPSUM", + "endDate": "2019-02-23", + "startDate": "2022-09-03", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2021-03-25", + "startDate": "2023-04-23", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "name": "IPSUM", + "endDate": "2015-10-23", + "startDate": "2021-12-06", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2017-09-01", + "startDate": "2018-04-05", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + } + ], + "associatedSites": [ + { + "dateNoted": "2019-01-27", + "notes": "", + "parcelID": "20884", + "siteID": "17768", + "siteRegistry": false + } + ] + }, + { + "uuid": "f8735ae6-248d-4df9-a32f-a6ba99aca847", + "siteID": 18245, + "address": "41284 Silas Loaf", + "latitude": 52.5527, + "longitude": -123.7511, + "lastUpdated": "2018-09-15", + "city": "North Alejandra", + "region": "Cariboo", + "victoriaFile": "26250-20/18997", + "regionalFile": "N/A", + "parcelIDs": [ + 7824487, + 9276729, + 8884993, + 8865443, + 4436979 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2014-05-01", + "completed": "2019-07-31", + "initiated": "2018-03-22", + "ministryContact": "SCHUMM KENNETH", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "createdAt": "2018-05-06", + "completed": "2022-02-22", + "initiated": "2022-07-22", + "ministryContact": "GRIMES HAYLIE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "createdAt": "2016-07-03", + "completed": "2017-06-28", + "initiated": "2014-01-11", + "ministryContact": "BEDNAR GREYSON", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "createdAt": "2019-11-25", + "completed": "2017-01-22", + "initiated": "2022-04-04", + "ministryContact": "MITCHELL PIPER", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + } + ], + "participants": [ + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2023-07-05", + "startDate": "2014-08-02", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "IPSUM", + "endDate": "2022-03-28", + "startDate": "2015-01-14", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "AMET, DOLOR SIT", + "endDate": "2020-01-22", + "startDate": "2017-06-17", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + } + ], + "associatedSites": [ + { + "dateNoted": "2015-01-18", + "notes": "", + "parcelID": "20832", + "siteID": "19741", + "siteRegistry": false + }, + { + "dateNoted": "2019-10-06", + "notes": "", + "parcelID": "15486", + "siteID": "18771", + "siteRegistry": false + } + ] + }, + { + "uuid": "68d643a2-0105-4821-ba1b-14134926ff46", + "siteID": 19377, + "address": "298 Bartell Valleys", + "latitude": 57.931, + "longitude": -121.0183, + "lastUpdated": "2016-01-16", + "city": "South Juanastad", + "region": "Thompson-Okanagan", + "victoriaFile": "26250-20/11821", + "regionalFile": "N/A", + "parcelIDs": [ + 131669, + 3351706, + 9279391, + 7282081, + 5465397 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2016-07-14", + "completed": "2017-05-21", + "initiated": "2016-05-02", + "ministryContact": "GUTKOWSKI EVERT", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "createdAt": "2018-11-11", + "completed": "2020-07-01", + "initiated": "2014-02-15", + "ministryContact": "KSHLERIN JENNYFER", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + } + ], + "participants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2023-06-29", + "startDate": "2017-05-15", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2022-02-06", + "startDate": "2019-11-17", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "name": "IPSUM", + "endDate": "2019-08-26", + "startDate": "2023-01-02", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + } + ], + "associatedSites": [ + { + "dateNoted": "2020-02-22", + "notes": "", + "parcelID": "19236", + "siteID": "16228", + "siteRegistry": false + }, + { + "dateNoted": "2013-11-07", + "notes": "", + "parcelID": "17971", + "siteID": "16703", + "siteRegistry": true + } + ] + }, + { + "uuid": "b44edbd2-7dc8-4d78-85dd-b39b1eef043a", + "siteID": 16559, + "address": "713 Lucio Plains", + "latitude": 57.8976, + "longitude": -130.1852, + "lastUpdated": "2019-03-16", + "city": "Otiliaboro", + "region": "Vancouver Island/Coast", + "victoriaFile": "26250-20/2010", + "regionalFile": "N/A", + "parcelIDs": [ + 9748793, + 4915429, + 7243618, + 3392211, + 8286779 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2019-03-02", + "completed": "2016-06-12", + "initiated": "2015-06-22", + "ministryContact": "CUMMINGS DESIREE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "createdAt": "2022-08-28", + "completed": "2023-08-27", + "initiated": "2015-11-30", + "ministryContact": "MORAR JAYME", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + } + ], + "participants": [ + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2014-03-07", + "startDate": "2014-07-27", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2016-01-31", + "startDate": "2017-03-26", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "IPSUM", + "endDate": "2023-05-18", + "startDate": "2017-09-20", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2017-04-25", + "startDate": "2022-05-27", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + } + ], + "associatedSites": [ + { + "dateNoted": "2015-05-08", + "notes": "", + "parcelID": "20418", + "siteID": "20906", + "siteRegistry": true + } + ] + }, + { + "uuid": "4ac66654-1019-4a5c-ad78-296a69724ce6", + "siteID": 17448, + "address": "1943 Abdullah Mount", + "latitude": 54.3575, + "longitude": -122.7209, + "lastUpdated": "2016-05-30", + "city": "Fort Camdenburgh", + "region": "Mainland/Southwest", + "victoriaFile": "26250-20/3654", + "regionalFile": "N/A", + "parcelIDs": [ + 8163066, + 9827115, + 5329616, + 749003, + 8085915 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2017-09-02", + "completed": "2022-02-01", + "initiated": "2020-10-18", + "ministryContact": "RATKE CALLIE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "createdAt": "2019-06-20", + "completed": "2018-11-05", + "initiated": "2019-07-26", + "ministryContact": "WALSH AUDREY", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "createdAt": "2014-03-21", + "completed": "2020-02-07", + "initiated": "2023-05-13", + "ministryContact": "HILPERT JENNIE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "createdAt": "2020-06-29", + "completed": "2019-06-15", + "initiated": "2020-05-15", + "ministryContact": "DAUGHERTY ANTWON", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + } + ], + "participants": [ + { + "name": "AMET, DOLOR SIT", + "endDate": "2018-05-27", + "startDate": "2020-04-14", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2020-06-26", + "startDate": "2023-03-18", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "name": "AMET, DOLOR SIT", + "endDate": "2017-07-24", + "startDate": "2017-07-20", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "name": "AMET, DOLOR SIT", + "endDate": "2020-06-18", + "startDate": "2017-06-26", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + } + ], + "associatedSites": [ + { + "dateNoted": "2014-12-15", + "notes": "", + "parcelID": "18957", + "siteID": "18969", + "siteRegistry": false + } + ] + }, + { + "uuid": "12fd1efe-87a1-4d54-a050-259e1bd9aeea", + "siteID": 19904, + "address": "75053 Hodkiewicz Ramp", + "latitude": 55.0262, + "longitude": -138.2041, + "lastUpdated": "2015-04-12", + "city": "Pembroke Pines", + "region": "Thompson-Okanagan", + "victoriaFile": "26250-20/1699", + "regionalFile": "N/A", + "parcelIDs": [ + 8760759, + 5595200, + 5729214, + 1177775, + 9307903 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2017-07-14", + "completed": "2015-03-16", + "initiated": "2014-08-12", + "ministryContact": "BREKKE EDWARDO", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "createdAt": "2021-07-16", + "completed": "2023-04-05", + "initiated": "2019-11-08", + "ministryContact": "WEIMANN NATASHA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "createdAt": "2018-12-07", + "completed": "2019-07-18", + "initiated": "2017-06-22", + "ministryContact": "O'CONNER MARJOLAINE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "createdAt": "2014-02-28", + "completed": "2019-06-24", + "initiated": "2023-02-27", + "ministryContact": "HEGMANN EVERETTE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + } + ], + "participants": [ + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2021-06-06", + "startDate": "2014-07-21", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "name": "IPSUM", + "endDate": "2023-01-21", + "startDate": "2019-08-12", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + } + ], + "associatedSites": [ + { + "dateNoted": "2021-01-03", + "notes": "", + "parcelID": "20560", + "siteID": "15443", + "siteRegistry": false + }, + { + "dateNoted": "2020-06-07", + "notes": "", + "parcelID": "18717", + "siteID": "20353", + "siteRegistry": true + }, + { + "dateNoted": "2020-01-11", + "notes": "", + "parcelID": "20600", + "siteID": "17164", + "siteRegistry": false + } + ] + }, + { + "uuid": "0e85df4f-feb5-41cf-ba94-a368a6ddd2b1", + "siteID": 16025, + "address": "694 Zieme Village", + "latitude": 58.4822, + "longitude": -119.3808, + "lastUpdated": "2014-03-01", + "city": "Destineycester", + "region": "Kootenay", + "victoriaFile": "26250-20/16333", + "regionalFile": "N/A", + "parcelIDs": [ + 2725808, + 1271097, + 3502451, + 5690690, + 6807741 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2021-12-19", + "completed": "2021-02-26", + "initiated": "2019-03-26", + "ministryContact": "SMITH AUDIE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "createdAt": "2021-05-09", + "completed": "2015-03-13", + "initiated": "2022-11-03", + "ministryContact": "WOLF KOBE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "createdAt": "2017-04-01", + "completed": "2015-04-12", + "initiated": "2023-04-23", + "ministryContact": "BOSCO WALKER", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "createdAt": "2023-07-13", + "completed": "2014-04-29", + "initiated": "2016-01-12", + "ministryContact": "POLLICH EBBA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + } + ], + "participants": [ + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2014-10-31", + "startDate": "2022-01-04", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2020-10-15", + "startDate": "2020-05-27", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2022-10-12", + "startDate": "2017-11-15", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + } + ], + "associatedSites": [ + { + "dateNoted": "2019-01-30", + "notes": "", + "parcelID": "17313", + "siteID": "16793", + "siteRegistry": false + }, + { + "dateNoted": "2019-07-31", + "notes": "", + "parcelID": "19397", + "siteID": "17011", + "siteRegistry": false + }, + { + "dateNoted": "2015-05-06", + "notes": "", + "parcelID": "18527", + "siteID": "19005", + "siteRegistry": true + } + ] + }, + { + "uuid": "7381e564-baf7-4213-b69b-ed5884da1b10", + "siteID": 15656, + "address": "46501 Aurelio Bridge", + "latitude": 57.9362, + "longitude": -120.4585, + "lastUpdated": "2022-03-17", + "city": "Clementineborough", + "region": "Kootenay", + "victoriaFile": "26250-20/6072", + "regionalFile": "N/A", + "parcelIDs": [ + 8822231, + 5841359, + 6222000, + 5725822, + 9606495 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2015-09-27", + "completed": "2020-03-28", + "initiated": "2023-05-25", + "ministryContact": "FAHEY BROOK", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "createdAt": "2017-03-31", + "completed": "2019-12-30", + "initiated": "2022-11-01", + "ministryContact": "PROSACCO WILLY", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "createdAt": "2020-07-15", + "completed": "2016-09-10", + "initiated": "2023-08-01", + "ministryContact": "HAND JARED", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "createdAt": "2016-12-03", + "completed": "2016-01-25", + "initiated": "2019-09-12", + "ministryContact": "JERDE JADE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "createdAt": "2019-09-11", + "completed": "2016-08-01", + "initiated": "2016-12-21", + "ministryContact": "RITCHIE KRYSTAL", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + } + ], + "participants": [ + { + "name": "AMET, DOLOR SIT", + "endDate": "2021-01-03", + "startDate": "2019-04-24", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "name": "AMET, DOLOR SIT", + "endDate": "2015-05-01", + "startDate": "2014-08-25", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "AMET, DOLOR SIT", + "endDate": "2015-09-01", + "startDate": "2021-06-22", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2015-09-26", + "startDate": "2022-01-19", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + } + ], + "associatedSites": [ + { + "dateNoted": "2016-08-27", + "notes": "", + "parcelID": "16237", + "siteID": "20906", + "siteRegistry": false + }, + { + "dateNoted": "2022-09-05", + "notes": "", + "parcelID": "19220", + "siteID": "20323", + "siteRegistry": false + } + ] + }, + { + "uuid": "7270a2f7-6739-4e28-8921-d1c986099b30", + "siteID": 20869, + "address": "1792 Antonina Path", + "latitude": 50.5211, + "longitude": -126.4883, + "lastUpdated": "2020-05-11", + "city": "New Maureenfield", + "region": "Thompson-Okanagan", + "victoriaFile": "26250-20/13821", + "regionalFile": "N/A", + "parcelIDs": [ + 4996463, + 8669489, + 6220217, + 7064387, + 9298852 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2020-06-02", + "completed": "2014-01-06", + "initiated": "2016-05-22", + "ministryContact": "BEATTY PAT", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "createdAt": "2019-02-27", + "completed": "2017-06-25", + "initiated": "2015-04-04", + "ministryContact": "O'CONNER KIRSTEN", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "createdAt": "2014-04-08", + "completed": "2021-03-08", + "initiated": "2015-12-29", + "ministryContact": "DANIEL CLAUD", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + } + ], + "participants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2014-10-01", + "startDate": "2023-04-13", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2018-09-11", + "startDate": "2020-02-16", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "name": "AMET, DOLOR SIT", + "endDate": "2015-12-01", + "startDate": "2022-04-20", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "name": "AMET, DOLOR SIT", + "endDate": "2020-02-03", + "startDate": "2017-09-26", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + } + ], + "associatedSites": [ + { + "dateNoted": "2022-07-20", + "notes": "", + "parcelID": "16271", + "siteID": "19457", + "siteRegistry": true + }, + { + "dateNoted": "2015-09-15", + "notes": "", + "parcelID": "17914", + "siteID": "17200", + "siteRegistry": true + } + ] + }, + { + "uuid": "1eaf94ad-225d-4af5-95b3-4e424acc60d2", + "siteID": 16118, + "address": "4213 Jerde Shoal", + "latitude": 49.2077, + "longitude": -138.177, + "lastUpdated": "2016-04-20", + "city": "Schummstead", + "region": "Thompson-Okanagan", + "victoriaFile": "26250-20/17832", + "regionalFile": "N/A", + "parcelIDs": [ + 6462995, + 9523345, + 362754, + 173631, + 2778819 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2019-03-24", + "completed": "2019-03-23", + "initiated": "2021-08-15", + "ministryContact": "SMITH ORA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "createdAt": "2014-09-07", + "completed": "2021-09-05", + "initiated": "2018-11-27", + "ministryContact": "SCHADEN-PRICE JOHNNY", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "createdAt": "2020-05-19", + "completed": "2022-09-24", + "initiated": "2019-11-25", + "ministryContact": "STAMM KARA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "createdAt": "2020-12-22", + "completed": "2020-06-26", + "initiated": "2015-08-28", + "ministryContact": "ABSHIRE COLBY", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "createdAt": "2017-08-26", + "completed": "2022-07-17", + "initiated": "2018-05-01", + "ministryContact": "BECHTELAR CHEYENNE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + } + ], + "participants": [ + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2022-03-15", + "startDate": "2018-11-10", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "name": "IPSUM", + "endDate": "2020-12-12", + "startDate": "2022-10-08", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + } + ], + "associatedSites": [ + { + "dateNoted": "2018-10-18", + "notes": "", + "parcelID": "16464", + "siteID": "19314", + "siteRegistry": false + } + ] + }, + { + "uuid": "99a567a0-19c0-4b2f-a86e-b4793df7fbdc", + "siteID": 18969, + "address": "650 Elenor Ridges", + "latitude": 51.3107, + "longitude": -120.8581, + "lastUpdated": "2018-07-24", + "city": "Malachichester", + "region": "Kootenay", + "victoriaFile": "26250-20/17663", + "regionalFile": "N/A", + "parcelIDs": [ + 7289532, + 2117949, + 3405760, + 1666343, + 1180250 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2018-02-16", + "completed": "2015-06-12", + "initiated": "2017-02-08", + "ministryContact": "LUEILWITZ BEVERLY", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "createdAt": "2015-01-16", + "completed": "2016-04-20", + "initiated": "2017-05-09", + "ministryContact": "HAAG CARLOS", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + } + ], + "participants": [ + { + "name": "AMET, DOLOR SIT", + "endDate": "2014-05-27", + "startDate": "2019-09-11", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2022-03-10", + "startDate": "2020-07-05", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "name": "AMET, DOLOR SIT", + "endDate": "2018-05-02", + "startDate": "2015-04-29", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + } + ], + "associatedSites": [ + { + "dateNoted": "2023-01-13", + "notes": "", + "parcelID": "18086", + "siteID": "17057", + "siteRegistry": true + }, + { + "dateNoted": "2019-08-05", + "notes": "", + "parcelID": "17656", + "siteID": "16972", + "siteRegistry": true + } + ] + }, + { + "uuid": "193e3d60-a88e-4ea3-87d7-0875677e5ba5", + "siteID": 17394, + "address": "61100 Adelbert Pines", + "latitude": 50.3458, + "longitude": -134.8701, + "lastUpdated": "2020-08-03", + "city": "East Kentonstead", + "region": "Thompson-Okanagan", + "victoriaFile": "26250-20/1099", + "regionalFile": "N/A", + "parcelIDs": [ + 7848288, + 4010624, + 7261741, + 7315603, + 1667638 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2021-05-20", + "completed": "2015-04-13", + "initiated": "2018-07-02", + "ministryContact": "STANTON DARIO", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "createdAt": "2016-09-30", + "completed": "2021-05-20", + "initiated": "2020-11-24", + "ministryContact": "GORCZANY ALIYA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "createdAt": "2013-12-27", + "completed": "2015-09-27", + "initiated": "2018-08-19", + "ministryContact": "NIENOW LEO", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "createdAt": "2017-11-03", + "completed": "2023-01-06", + "initiated": "2020-09-27", + "ministryContact": "WILKINSON CIERRA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "createdAt": "2021-06-24", + "completed": "2022-02-26", + "initiated": "2015-11-12", + "ministryContact": "KUVALIS ELEAZAR", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + } + ], + "participants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2017-12-22", + "startDate": "2019-06-29", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2018-12-18", + "startDate": "2018-12-20", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "name": "IPSUM", + "endDate": "2023-05-07", + "startDate": "2015-02-16", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "AMET, DOLOR SIT", + "endDate": "2019-07-29", + "startDate": "2020-02-19", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2023-05-14", + "startDate": "2018-12-29", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + } + ], + "associatedSites": [ + { + "dateNoted": "2017-10-08", + "notes": "", + "parcelID": "17277", + "siteID": "18065", + "siteRegistry": true + }, + { + "dateNoted": "2015-01-08", + "notes": "", + "parcelID": "17419", + "siteID": "20788", + "siteRegistry": true + } + ] + }, + { + "uuid": "1446c5a1-a05b-48be-aafc-1c1dcb83683f", + "siteID": 17866, + "address": "375 Wuckert Roads", + "latitude": 50.7536, + "longitude": -135.7884, + "lastUpdated": "2023-09-28", + "city": "New Friedrich", + "region": "Mainland/Southwest", + "victoriaFile": "26250-20/4896", + "regionalFile": "N/A", + "parcelIDs": [ + 8963662, + 7550120, + 4498654, + 7914848, + 396071 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2022-03-09", + "completed": "2014-05-12", + "initiated": "2023-08-10", + "ministryContact": "LOWE NICHOLE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "createdAt": "2019-08-02", + "completed": "2020-04-12", + "initiated": "2019-05-07", + "ministryContact": "MCGLYNN ELNA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "createdAt": "2015-10-02", + "completed": "2015-04-18", + "initiated": "2018-12-27", + "ministryContact": "WISOKY JESSICA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "createdAt": "2020-02-05", + "completed": "2015-08-18", + "initiated": "2016-10-14", + "ministryContact": "BARTOLETTI BERRY", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + } + ], + "participants": [ + { + "name": "IPSUM", + "endDate": "2015-04-20", + "startDate": "2015-05-02", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "name": "AMET, DOLOR SIT", + "endDate": "2016-04-02", + "startDate": "2017-09-20", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2022-07-27", + "startDate": "2023-08-07", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2023-06-17", + "startDate": "2021-08-16", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + } + ], + "associatedSites": [ + { + "dateNoted": "2021-08-14", + "notes": "", + "parcelID": "16512", + "siteID": "17976", + "siteRegistry": false + }, + { + "dateNoted": "2021-09-08", + "notes": "", + "parcelID": "19062", + "siteID": "16736", + "siteRegistry": false + }, + { + "dateNoted": "2023-05-12", + "notes": "", + "parcelID": "18819", + "siteID": "16796", + "siteRegistry": false + } + ] + }, + { + "uuid": "ac98af65-1856-4bbe-a7ae-482c9278a5fd", + "siteID": 16645, + "address": "73049 Schuppe Way", + "latitude": 58.5829, + "longitude": -118.4279, + "lastUpdated": "2022-07-19", + "city": "East Melyna", + "region": "Mainland/Southwest", + "victoriaFile": "26250-20/17562", + "regionalFile": "N/A", + "parcelIDs": [ + 7591823, + 6150873, + 3479934, + 3960143, + 9768092 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2021-11-12", + "completed": "2022-02-22", + "initiated": "2020-06-30", + "ministryContact": "WIZA LUTHER", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "createdAt": "2014-11-05", + "completed": "2015-07-05", + "initiated": "2014-05-25", + "ministryContact": "WYMAN ROWAN", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + } + ], + "participants": [ + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2017-03-01", + "startDate": "2017-10-18", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2014-12-05", + "startDate": "2014-06-02", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "name": "AMET, DOLOR SIT", + "endDate": "2014-06-26", + "startDate": "2020-01-17", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2016-12-05", + "startDate": "2020-10-06", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + } + ], + "associatedSites": [ + { + "dateNoted": "2018-01-08", + "notes": "", + "parcelID": "18862", + "siteID": "15892", + "siteRegistry": true + } + ] + }, + { + "uuid": "7cc56bac-dc2e-421b-9e1b-2a4a0be4367c", + "siteID": 18550, + "address": "3747 Nona Fords", + "latitude": 57.0483, + "longitude": -128.0366, + "lastUpdated": "2020-11-17", + "city": "Connellychester", + "region": "Vancouver Island/Coast", + "victoriaFile": "26250-20/7749", + "regionalFile": "N/A", + "parcelIDs": [ + 6918629, + 6015055, + 1024912, + 5430800, + 2112744 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2016-11-21", + "completed": "2015-10-27", + "initiated": "2019-06-17", + "ministryContact": "HESSEL JERRY", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "createdAt": "2020-09-13", + "completed": "2019-03-19", + "initiated": "2021-05-16", + "ministryContact": "LANGOSH CAROL", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "createdAt": "2014-04-13", + "completed": "2017-02-21", + "initiated": "2019-12-03", + "ministryContact": "DOYLE ARVID", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "createdAt": "2020-06-07", + "completed": "2017-02-19", + "initiated": "2022-05-06", + "ministryContact": "LITTEL DAVID", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + } + ], + "participants": [ + { + "name": "AMET, DOLOR SIT", + "endDate": "2018-01-14", + "startDate": "2015-10-16", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "name": "AMET, DOLOR SIT", + "endDate": "2021-07-05", + "startDate": "2016-08-29", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "name": "IPSUM", + "endDate": "2013-12-26", + "startDate": "2018-06-12", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2022-12-22", + "startDate": "2023-02-05", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + } + ], + "associatedSites": [ + { + "dateNoted": "2022-03-27", + "notes": "", + "parcelID": "20501", + "siteID": "19087", + "siteRegistry": false + }, + { + "dateNoted": "2022-07-04", + "notes": "", + "parcelID": "17018", + "siteID": "20366", + "siteRegistry": false + }, + { + "dateNoted": "2022-01-05", + "notes": "", + "parcelID": "20213", + "siteID": "17151", + "siteRegistry": true + } + ] + }, + { + "uuid": "51ae7522-ced7-4132-a7be-a069fc88e1d7", + "siteID": 18162, + "address": "281 Huel Via", + "latitude": 48.8619, + "longitude": -138.1775, + "lastUpdated": "2018-11-15", + "city": "East Lansing", + "region": "Cariboo", + "victoriaFile": "26250-20/6930", + "regionalFile": "N/A", + "parcelIDs": [ + 7417203, + 8372755, + 9576252, + 6480937, + 9925658 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2021-08-12", + "completed": "2019-07-22", + "initiated": "2022-10-14", + "ministryContact": "MARQUARDT DAYNE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "createdAt": "2015-05-29", + "completed": "2016-06-20", + "initiated": "2020-09-04", + "ministryContact": "SCHULIST CAESAR", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + } + ], + "participants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2023-09-16", + "startDate": "2016-08-29", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "IPSUM", + "endDate": "2021-12-17", + "startDate": "2018-10-15", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2017-08-18", + "startDate": "2023-07-06", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + } + ], + "associatedSites": [ + { + "dateNoted": "2018-10-13", + "notes": "", + "parcelID": "16307", + "siteID": "18695", + "siteRegistry": true + } + ] + }, + { + "uuid": "ff42f458-ce52-4d61-ad7f-2e285a46baff", + "siteID": 17783, + "address": "932 Gottlieb Plains", + "latitude": 50.4385, + "longitude": -123.1735, + "lastUpdated": "2023-04-02", + "city": "Lake Leonardo", + "region": "Vancouver Island/Coast", + "victoriaFile": "26250-20/731", + "regionalFile": "N/A", + "parcelIDs": [ + 6749099, + 6796553, + 8055378, + 8712059, + 5490455 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2022-12-11", + "completed": "2019-07-10", + "initiated": "2018-12-22", + "ministryContact": "FRIESEN SHAD", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "createdAt": "2021-02-07", + "completed": "2020-01-08", + "initiated": "2023-09-02", + "ministryContact": "STOLTENBERG-MOHR KITTY", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "createdAt": "2014-09-30", + "completed": "2023-08-13", + "initiated": "2015-01-19", + "ministryContact": "BRAKUS GERARDO", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "createdAt": "2014-09-28", + "completed": "2023-06-18", + "initiated": "2016-11-14", + "ministryContact": "HANE LUE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + } + ], + "participants": [ + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2015-04-01", + "startDate": "2020-05-27", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2023-01-18", + "startDate": "2014-03-14", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2015-09-10", + "startDate": "2018-11-03", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2022-11-01", + "startDate": "2022-01-10", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + } + ], + "associatedSites": [ + { + "dateNoted": "2015-12-26", + "notes": "", + "parcelID": "16031", + "siteID": "18368", + "siteRegistry": false + }, + { + "dateNoted": "2020-09-20", + "notes": "", + "parcelID": "16186", + "siteID": "19796", + "siteRegistry": true + } + ] + }, + { + "uuid": "a80ee123-8013-4eda-ad20-2955d6073694", + "siteID": 18517, + "address": "110 Hayes Branch", + "latitude": 56.5571, + "longitude": -125.1135, + "lastUpdated": "2014-05-31", + "city": "Des Plaines", + "region": " North Coast", + "victoriaFile": "26250-20/830", + "regionalFile": "N/A", + "parcelIDs": [ + 9219160, + 7412793, + 7003059, + 4484212, + 1721328 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2017-03-05", + "completed": "2023-09-29", + "initiated": "2021-03-09", + "ministryContact": "DARE-ARMSTRONG JALEEL", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "createdAt": "2017-07-11", + "completed": "2023-05-29", + "initiated": "2022-10-09", + "ministryContact": "TREMBLAY JOHN", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "createdAt": "2015-01-23", + "completed": "2015-08-21", + "initiated": "2020-10-14", + "ministryContact": "FEIL ISAI", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "createdAt": "2021-04-17", + "completed": "2023-02-27", + "initiated": "2019-07-02", + "ministryContact": "ROHAN DERON", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + } + ], + "participants": [ + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2015-04-22", + "startDate": "2021-06-25", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "name": "AMET, DOLOR SIT", + "endDate": "2020-02-08", + "startDate": "2019-01-27", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2015-07-22", + "startDate": "2016-02-24", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "IPSUM", + "endDate": "2018-04-30", + "startDate": "2015-08-02", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "name": "IPSUM", + "endDate": "2017-04-08", + "startDate": "2015-06-07", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + } + ], + "associatedSites": [ + { + "dateNoted": "2013-11-26", + "notes": "", + "parcelID": "19642", + "siteID": "19048", + "siteRegistry": true + }, + { + "dateNoted": "2017-07-21", + "notes": "", + "parcelID": "15585", + "siteID": "15361", + "siteRegistry": false + } + ] + }, + { + "uuid": "5cd61a59-d6fa-4158-be68-83808a0790d5", + "siteID": 16272, + "address": "57618 Meredith Shores", + "latitude": 55.8684, + "longitude": -129.8964, + "lastUpdated": "2017-07-31", + "city": "Justicecester", + "region": "Thompson-Okanagan", + "victoriaFile": "26250-20/6288", + "regionalFile": "N/A", + "parcelIDs": [ + 3914481, + 3022817, + 8696707, + 7217233, + 7091490 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2023-09-28", + "completed": "2019-05-31", + "initiated": "2016-01-24", + "ministryContact": "HANSEN DORA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "createdAt": "2021-04-27", + "completed": "2018-07-31", + "initiated": "2015-06-16", + "ministryContact": "HILLS JAYLEN", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "createdAt": "2019-09-03", + "completed": "2016-06-22", + "initiated": "2022-11-13", + "ministryContact": "FRAMI DEJUAN", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "createdAt": "2019-01-14", + "completed": "2021-02-16", + "initiated": "2023-03-29", + "ministryContact": "DAVIS-LITTLE JODY", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "createdAt": "2019-01-09", + "completed": "2023-07-11", + "initiated": "2020-01-02", + "ministryContact": "CONROY MELYSSA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + } + ], + "participants": [ + { + "name": "AMET, DOLOR SIT", + "endDate": "2023-07-14", + "startDate": "2015-05-17", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2016-06-06", + "startDate": "2019-08-13", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2018-12-28", + "startDate": "2021-11-02", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "name": "IPSUM", + "endDate": "2021-03-31", + "startDate": "2018-12-16", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "IPSUM", + "endDate": "2016-12-17", + "startDate": "2018-12-29", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + } + ], + "associatedSites": [ + { + "dateNoted": "2017-01-29", + "notes": "", + "parcelID": "20609", + "siteID": "15917", + "siteRegistry": true + }, + { + "dateNoted": "2016-01-19", + "notes": "", + "parcelID": "20590", + "siteID": "18652", + "siteRegistry": true + }, + { + "dateNoted": "2020-03-20", + "notes": "", + "parcelID": "18067", + "siteID": "20614", + "siteRegistry": false + } + ] + }, + { + "uuid": "5a2f75e8-0068-4b96-ae9f-013f2465eaf2", + "siteID": 16151, + "address": "344 Laurianne Groves", + "latitude": 56.454, + "longitude": -119.0864, + "lastUpdated": "2013-12-21", + "city": "Sarasota", + "region": "Thompson-Okanagan", + "victoriaFile": "26250-20/17992", + "regionalFile": "N/A", + "parcelIDs": [ + 2286286, + 4997866, + 6519356, + 688451, + 8984948 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2019-11-19", + "completed": "2019-12-10", + "initiated": "2016-08-15", + "ministryContact": "CRIST OLAF", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "createdAt": "2019-03-18", + "completed": "2017-01-10", + "initiated": "2017-05-20", + "ministryContact": "KREIGER OTTO", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "createdAt": "2014-05-08", + "completed": "2015-07-29", + "initiated": "2017-03-19", + "ministryContact": "HEATHCOTE MAIA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "createdAt": "2019-04-13", + "completed": "2021-09-04", + "initiated": "2021-06-14", + "ministryContact": "WATERS LAWSON", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "createdAt": "2020-05-02", + "completed": "2022-12-09", + "initiated": "2022-04-10", + "ministryContact": "PARKER LANCE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + } + ], + "participants": [ + { + "name": "IPSUM", + "endDate": "2022-10-04", + "startDate": "2016-03-16", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "name": "AMET, DOLOR SIT", + "endDate": "2018-11-19", + "startDate": "2015-03-03", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2021-09-13", + "startDate": "2016-08-22", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2015-06-28", + "startDate": "2023-03-19", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + } + ], + "associatedSites": [ + { + "dateNoted": "2020-12-26", + "notes": "", + "parcelID": "15459", + "siteID": "15653", + "siteRegistry": true + } + ] + }, + { + "uuid": "8e3d3b0f-4104-4db6-ba50-08d02b6b4114", + "siteID": 16986, + "address": "2915 Susana Islands", + "latitude": 54.1059, + "longitude": -126.6917, + "lastUpdated": "2019-09-12", + "city": "West Abner", + "region": "Thompson-Okanagan", + "victoriaFile": "26250-20/2646", + "regionalFile": "N/A", + "parcelIDs": [ + 8626352, + 4507356, + 7123068, + 9255723, + 3923623 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2020-11-16", + "completed": "2018-08-05", + "initiated": "2018-03-27", + "ministryContact": "GLEASON GABRIELLE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "createdAt": "2014-08-28", + "completed": "2018-10-23", + "initiated": "2015-08-13", + "ministryContact": "MORISSETTE MARKUS", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "createdAt": "2021-04-04", + "completed": "2019-09-24", + "initiated": "2020-09-30", + "ministryContact": "COLLIER MAIA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + } + ], + "participants": [ + { + "name": "AMET, DOLOR SIT", + "endDate": "2015-06-09", + "startDate": "2017-09-18", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "name": "AMET, DOLOR SIT", + "endDate": "2014-08-26", + "startDate": "2023-02-11", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2018-06-11", + "startDate": "2021-07-07", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2014-06-22", + "startDate": "2015-10-13", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "name": "IPSUM", + "endDate": "2015-11-12", + "startDate": "2020-10-28", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + } + ], + "associatedSites": [ + { + "dateNoted": "2023-05-27", + "notes": "", + "parcelID": "19352", + "siteID": "16814", + "siteRegistry": true + }, + { + "dateNoted": "2014-06-01", + "notes": "", + "parcelID": "17872", + "siteID": "17561", + "siteRegistry": true + }, + { + "dateNoted": "2020-03-17", + "notes": "", + "parcelID": "16160", + "siteID": "15443", + "siteRegistry": false + } + ] + }, + { + "uuid": "597551c6-ad26-4b5e-8b17-4de3e2afb7e2", + "siteID": 20517, + "address": "672 Eda Mission", + "latitude": 54.103, + "longitude": -130.2468, + "lastUpdated": "2021-10-31", + "city": "West Bobbie", + "region": "Kootenay", + "victoriaFile": "26250-20/13394", + "regionalFile": "N/A", + "parcelIDs": [ + 1139724, + 9799529, + 2735581, + 1661611, + 1527164 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2016-04-30", + "completed": "2021-05-12", + "initiated": "2014-06-27", + "ministryContact": "VEUM MERLE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "createdAt": "2016-08-28", + "completed": "2014-04-08", + "initiated": "2017-08-06", + "ministryContact": "EMMERICH KEYSHAWN", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "createdAt": "2016-09-22", + "completed": "2023-07-13", + "initiated": "2015-07-20", + "ministryContact": "GULGOWSKI OSWALDO", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "createdAt": "2023-07-20", + "completed": "2020-07-03", + "initiated": "2022-05-24", + "ministryContact": "HARRIS DESSIE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + } + ], + "participants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2018-01-11", + "startDate": "2023-09-16", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "name": "AMET, DOLOR SIT", + "endDate": "2015-12-28", + "startDate": "2022-02-11", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2017-10-01", + "startDate": "2013-12-01", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2021-11-23", + "startDate": "2018-11-14", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2017-12-16", + "startDate": "2017-01-05", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + } + ], + "associatedSites": [ + { + "dateNoted": "2017-12-17", + "notes": "", + "parcelID": "17476", + "siteID": "18753", + "siteRegistry": true + } + ] + }, + { + "uuid": "64e0967f-c03c-4eec-975a-a4b5c5b9e79e", + "siteID": 18652, + "address": "897 Jimmy Locks", + "latitude": 56.4339, + "longitude": -123.9765, + "lastUpdated": "2019-08-30", + "city": "New Ayden", + "region": "Mainland/Southwest", + "victoriaFile": "26250-20/15259", + "regionalFile": "N/A", + "parcelIDs": [ + 1280839, + 2548292, + 368425, + 4716930, + 5127896 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2016-10-25", + "completed": "2022-02-20", + "initiated": "2014-01-06", + "ministryContact": "ROMAGUERA LULA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "createdAt": "2020-03-17", + "completed": "2015-02-23", + "initiated": "2018-05-23", + "ministryContact": "LITTLE MARQUIS", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "createdAt": "2015-02-27", + "completed": "2020-08-28", + "initiated": "2019-08-12", + "ministryContact": "HOPPE-CORKERY EDGAR", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "createdAt": "2019-11-12", + "completed": "2021-06-22", + "initiated": "2017-05-03", + "ministryContact": "RITCHIE GEO", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + } + ], + "participants": [ + { + "name": "AMET, DOLOR SIT", + "endDate": "2019-12-26", + "startDate": "2023-09-11", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2016-05-15", + "startDate": "2021-02-28", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "name": "IPSUM", + "endDate": "2017-06-15", + "startDate": "2013-12-10", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "IPSUM", + "endDate": "2018-03-28", + "startDate": "2016-04-29", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + } + ], + "associatedSites": [ + { + "dateNoted": "2018-05-26", + "notes": "", + "parcelID": "18765", + "siteID": "19314", + "siteRegistry": false + } + ] + }, + { + "uuid": "c4bade3a-a4a6-40a6-9d20-b24714789fda", + "siteID": 20223, + "address": "55795 Martina Harbor", + "latitude": 54.2217, + "longitude": -129.856, + "lastUpdated": "2022-02-03", + "city": "Virginia Beach", + "region": "Mainland/Southwest", + "victoriaFile": "26250-20/15570", + "regionalFile": "N/A", + "parcelIDs": [ + 9524181, + 5327206, + 6235025, + 8439421, + 303716 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2013-10-23", + "completed": "2018-08-21", + "initiated": "2018-06-01", + "ministryContact": "RITCHIE STEVE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "createdAt": "2015-11-10", + "completed": "2023-02-12", + "initiated": "2017-06-06", + "ministryContact": "DICKINSON TERRY", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + } + ], + "participants": [ + { + "name": "AMET, DOLOR SIT", + "endDate": "2023-09-02", + "startDate": "2015-07-23", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "name": "IPSUM", + "endDate": "2017-07-03", + "startDate": "2017-08-06", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + } + ], + "associatedSites": [ + { + "dateNoted": "2014-03-24", + "notes": "", + "parcelID": "17437", + "siteID": "20692", + "siteRegistry": false + }, + { + "dateNoted": "2018-09-14", + "notes": "", + "parcelID": "19597", + "siteID": "18528", + "siteRegistry": true + } + ] + }, + { + "uuid": "fefcaef8-7071-4766-9b95-69f5dc076816", + "siteID": 17412, + "address": "56355 Mertie Summit", + "latitude": 55.6813, + "longitude": -128.5863, + "lastUpdated": "2020-01-29", + "city": "Lueland", + "region": "Kootenay", + "victoriaFile": "26250-20/10479", + "regionalFile": "N/A", + "parcelIDs": [ + 2758937, + 5162357, + 3736750, + 2791670, + 1901387 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2019-11-11", + "completed": "2018-01-09", + "initiated": "2018-05-04", + "ministryContact": "TRANTOW KENNEDY", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "createdAt": "2023-07-25", + "completed": "2017-08-07", + "initiated": "2018-04-25", + "ministryContact": "STREICH ALANNA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + } + ], + "participants": [ + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2014-05-26", + "startDate": "2019-07-31", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "AMET, DOLOR SIT", + "endDate": "2021-04-17", + "startDate": "2018-01-11", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2013-10-09", + "startDate": "2016-03-22", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + } + ], + "associatedSites": [ + { + "dateNoted": "2016-04-14", + "notes": "", + "parcelID": "20686", + "siteID": "15273", + "siteRegistry": true + }, + { + "dateNoted": "2022-11-26", + "notes": "", + "parcelID": "20551", + "siteID": "18274", + "siteRegistry": false + }, + { + "dateNoted": "2022-04-05", + "notes": "", + "parcelID": "18322", + "siteID": "17151", + "siteRegistry": true + } + ] + }, + { + "uuid": "2a1b2c4b-37e1-4f63-bf93-3230e0705ffa", + "siteID": 17561, + "address": "139 Abelardo Valleys", + "latitude": 49.2302, + "longitude": -133.2327, + "lastUpdated": "2021-09-13", + "city": "Donnyside", + "region": "Thompson-Okanagan", + "victoriaFile": "26250-20/14591", + "regionalFile": "N/A", + "parcelIDs": [ + 891982, + 7917664, + 5529895, + 5249429, + 3952803 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2021-02-13", + "completed": "2020-03-23", + "initiated": "2019-06-21", + "ministryContact": "BEAHAN MARJOLAINE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "createdAt": "2016-03-15", + "completed": "2019-02-16", + "initiated": "2020-10-04", + "ministryContact": "HODKIEWICZ ARNALDO", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "createdAt": "2015-08-06", + "completed": "2013-11-10", + "initiated": "2015-08-30", + "ministryContact": "HODKIEWICZ CORA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "createdAt": "2020-09-05", + "completed": "2014-05-27", + "initiated": "2021-01-28", + "ministryContact": "MCKENZIE KELTON", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + } + ], + "participants": [ + { + "name": "AMET, DOLOR SIT", + "endDate": "2022-01-26", + "startDate": "2017-12-21", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "IPSUM", + "endDate": "2014-12-17", + "startDate": "2017-04-20", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "name": "AMET, DOLOR SIT", + "endDate": "2016-06-17", + "startDate": "2022-04-23", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + } + ], + "associatedSites": [ + { + "dateNoted": "2016-11-20", + "notes": "", + "parcelID": "17665", + "siteID": "19854", + "siteRegistry": true + }, + { + "dateNoted": "2022-10-17", + "notes": "", + "parcelID": "19629", + "siteID": "15577", + "siteRegistry": false + }, + { + "dateNoted": "2016-11-21", + "notes": "", + "parcelID": "19324", + "siteID": "17036", + "siteRegistry": true + } + ] + }, + { + "uuid": "41408ef0-dc4b-4703-8206-af38b0d28f1f", + "siteID": 17164, + "address": "1934 Abel Light", + "latitude": 54.2901, + "longitude": -127.9394, + "lastUpdated": "2020-02-28", + "city": "Fort Lamarfurt", + "region": "Thompson-Okanagan", + "victoriaFile": "26250-20/16622", + "regionalFile": "N/A", + "parcelIDs": [ + 1731151, + 6955204, + 3342106, + 4929251, + 4825325 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2019-07-04", + "completed": "2020-08-02", + "initiated": "2017-04-16", + "ministryContact": "ARMSTRONG-MEDHURST JO", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "createdAt": "2020-01-22", + "completed": "2022-01-04", + "initiated": "2014-08-01", + "ministryContact": "JONES LIBBY", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + } + ], + "participants": [ + { + "name": "AMET, DOLOR SIT", + "endDate": "2017-06-03", + "startDate": "2017-06-13", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2015-07-02", + "startDate": "2016-06-09", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2019-02-13", + "startDate": "2019-09-23", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2019-02-22", + "startDate": "2014-10-28", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + } + ], + "associatedSites": [ + { + "dateNoted": "2016-05-03", + "notes": "", + "parcelID": "18299", + "siteID": "17317", + "siteRegistry": false + }, + { + "dateNoted": "2021-12-01", + "notes": "", + "parcelID": "17593", + "siteID": "19092", + "siteRegistry": true + } + ] + }, + { + "uuid": "a540aa5d-92e1-43d8-8c88-853d13c79647", + "siteID": 17322, + "address": "56826 Jeffry Path", + "latitude": 58.8625, + "longitude": -135.1038, + "lastUpdated": "2021-02-02", + "city": "Noblesville", + "region": "Thompson-Okanagan", + "victoriaFile": "26250-20/18651", + "regionalFile": "N/A", + "parcelIDs": [ + 6545626, + 4726093, + 5322043, + 9113661, + 1894520 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2018-03-10", + "completed": "2017-11-10", + "initiated": "2019-05-14", + "ministryContact": "BROWN KHALIL", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "createdAt": "2023-07-17", + "completed": "2021-10-10", + "initiated": "2013-10-14", + "ministryContact": "BARTOLETTI GRANVILLE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "createdAt": "2018-11-17", + "completed": "2014-03-26", + "initiated": "2022-04-25", + "ministryContact": "KRAJCIK NATHEN", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "createdAt": "2021-09-08", + "completed": "2017-07-07", + "initiated": "2023-01-04", + "ministryContact": "SPENCER RAY", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "createdAt": "2013-10-27", + "completed": "2023-04-27", + "initiated": "2016-06-21", + "ministryContact": "BECHTELAR NORA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + } + ], + "participants": [ + { + "name": "IPSUM", + "endDate": "2015-08-27", + "startDate": "2021-05-06", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2020-11-18", + "startDate": "2015-11-05", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2017-01-28", + "startDate": "2021-11-20", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + } + ], + "associatedSites": [ + { + "dateNoted": "2020-07-02", + "notes": "", + "parcelID": "20566", + "siteID": "15212", + "siteRegistry": false + }, + { + "dateNoted": "2016-05-31", + "notes": "", + "parcelID": "17256", + "siteID": "19457", + "siteRegistry": false + } + ] + }, + { + "uuid": "790b3fc9-668c-48eb-bdd3-721c0a526c65", + "siteID": 16487, + "address": "704 Gina Avenue", + "latitude": 54.1093, + "longitude": -131.7961, + "lastUpdated": "2022-01-01", + "city": "Kannapolis", + "region": "Vancouver Island/Coast", + "victoriaFile": "26250-20/4907", + "regionalFile": "N/A", + "parcelIDs": [ + 2021547, + 3584107, + 9244753, + 8659329, + 7512143 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2016-12-26", + "completed": "2015-02-21", + "initiated": "2014-12-31", + "ministryContact": "OLSON LEXI", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "createdAt": "2018-01-01", + "completed": "2016-02-10", + "initiated": "2019-10-06", + "ministryContact": "D'AMORE JEREMY", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "createdAt": "2017-12-06", + "completed": "2020-01-18", + "initiated": "2014-05-19", + "ministryContact": "BERNIER GRANVILLE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + } + ], + "participants": [ + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2021-10-07", + "startDate": "2015-02-10", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "name": "AMET, DOLOR SIT", + "endDate": "2023-07-07", + "startDate": "2020-03-30", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2015-01-17", + "startDate": "2017-12-28", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "name": "AMET, DOLOR SIT", + "endDate": "2020-10-26", + "startDate": "2016-07-26", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2021-09-04", + "startDate": "2015-02-09", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + } + ], + "associatedSites": [ + { + "dateNoted": "2021-11-15", + "notes": "", + "parcelID": "18411", + "siteID": "15375", + "siteRegistry": false + }, + { + "dateNoted": "2022-11-16", + "notes": "", + "parcelID": "20896", + "siteID": "17180", + "siteRegistry": false + }, + { + "dateNoted": "2015-12-15", + "notes": "", + "parcelID": "17879", + "siteID": "19728", + "siteRegistry": false + } + ] + }, + { + "uuid": "d1c1687b-4700-488d-ae1e-39926baaad06", + "siteID": 15775, + "address": "214 Bret Ways", + "latitude": 51.1366, + "longitude": -132.4484, + "lastUpdated": "2017-09-08", + "city": "Kennaboro", + "region": "Vancouver Island/Coast", + "victoriaFile": "26250-20/13621", + "regionalFile": "N/A", + "parcelIDs": [ + 1319317, + 7440319, + 603380, + 4097870, + 9675862 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2017-12-08", + "completed": "2017-04-17", + "initiated": "2022-12-21", + "ministryContact": "FRANEY ROY", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "createdAt": "2017-02-21", + "completed": "2022-12-20", + "initiated": "2022-03-16", + "ministryContact": "SENGER OSWALD", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + } + ], + "participants": [ + { + "name": "IPSUM", + "endDate": "2022-08-04", + "startDate": "2021-07-26", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2021-03-04", + "startDate": "2014-03-25", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2021-02-06", + "startDate": "2021-07-24", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "name": "IPSUM", + "endDate": "2016-01-09", + "startDate": "2017-10-15", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + } + ], + "associatedSites": [ + { + "dateNoted": "2015-02-17", + "notes": "", + "parcelID": "18238", + "siteID": "15919", + "siteRegistry": true + } + ] + }, + { + "uuid": "f2d07011-6abd-419c-bdb5-44a19807fb83", + "siteID": 19092, + "address": "756 Ratke Hills", + "latitude": 54.3936, + "longitude": -131.5761, + "lastUpdated": "2015-09-11", + "city": "North Eusebio", + "region": "Thompson-Okanagan", + "victoriaFile": "26250-20/3265", + "regionalFile": "N/A", + "parcelIDs": [ + 6192270, + 3846388, + 8602072, + 8036326, + 9693418 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2015-03-17", + "completed": "2014-10-21", + "initiated": "2018-10-07", + "ministryContact": "GERHOLD WANDA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "createdAt": "2016-11-29", + "completed": "2018-03-29", + "initiated": "2017-03-28", + "ministryContact": "HOPPE KENTON", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "createdAt": "2018-06-11", + "completed": "2016-07-02", + "initiated": "2022-06-04", + "ministryContact": "DIBBERT ROBIN", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "createdAt": "2020-02-23", + "completed": "2022-06-02", + "initiated": "2015-05-13", + "ministryContact": "LABADIE LAVADA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "createdAt": "2019-07-05", + "completed": "2020-05-03", + "initiated": "2017-02-07", + "ministryContact": "LARKIN ALISHA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + } + ], + "participants": [ + { + "name": "IPSUM", + "endDate": "2017-11-09", + "startDate": "2023-05-13", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2021-06-30", + "startDate": "2014-02-28", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "AMET, DOLOR SIT", + "endDate": "2022-07-04", + "startDate": "2016-07-17", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "name": "IPSUM", + "endDate": "2014-12-23", + "startDate": "2017-08-19", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + } + ], + "associatedSites": [ + { + "dateNoted": "2022-09-24", + "notes": "", + "parcelID": "20151", + "siteID": "18771", + "siteRegistry": false + } + ] + }, + { + "uuid": "12fe2001-3c28-4cd6-abd0-05e979c25430", + "siteID": 18528, + "address": "67153 Leonel Meadows", + "latitude": 54.3645, + "longitude": -123.1792, + "lastUpdated": "2021-04-11", + "city": "Dockstead", + "region": "Mainland/Southwest", + "victoriaFile": "26250-20/7833", + "regionalFile": "N/A", + "parcelIDs": [ + 5137809, + 5877336, + 2673564, + 7821967, + 9276244 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2023-03-15", + "completed": "2018-01-09", + "initiated": "2019-12-11", + "ministryContact": "KOZEY TIANA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "createdAt": "2014-09-26", + "completed": "2016-02-24", + "initiated": "2023-05-29", + "ministryContact": "REMPEL KALEY", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "createdAt": "2022-01-31", + "completed": "2020-12-31", + "initiated": "2022-04-12", + "ministryContact": "JONES BAYLEE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "createdAt": "2020-03-21", + "completed": "2013-10-20", + "initiated": "2021-08-07", + "ministryContact": "GRANT DAMIAN", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "createdAt": "2021-02-21", + "completed": "2018-10-23", + "initiated": "2021-06-01", + "ministryContact": "MCKENZIE CHELSIE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + } + ], + "participants": [ + { + "name": "AMET, DOLOR SIT", + "endDate": "2020-07-15", + "startDate": "2014-06-04", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "name": "IPSUM", + "endDate": "2017-07-08", + "startDate": "2014-09-26", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "name": "IPSUM", + "endDate": "2019-03-16", + "startDate": "2014-03-10", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2023-08-11", + "startDate": "2019-06-10", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + } + ], + "associatedSites": [ + { + "dateNoted": "2013-10-18", + "notes": "", + "parcelID": "19180", + "siteID": "15666", + "siteRegistry": false + }, + { + "dateNoted": "2016-04-30", + "notes": "", + "parcelID": "16115", + "siteID": "19837", + "siteRegistry": true + }, + { + "dateNoted": "2018-12-25", + "notes": "", + "parcelID": "17111", + "siteID": "19536", + "siteRegistry": false + } + ] + }, + { + "uuid": "e0b39f0a-8d46-4ed9-8961-e6fe6bcdba05", + "siteID": 19550, + "address": "96242 Mohamed Brooks", + "latitude": 49.848, + "longitude": -130.2878, + "lastUpdated": "2020-08-07", + "city": "Lindsayview", + "region": " North Coast", + "victoriaFile": "26250-20/19390", + "regionalFile": "N/A", + "parcelIDs": [ + 1229483, + 2922774, + 8214940, + 7632063, + 8719043 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2016-03-28", + "completed": "2019-06-14", + "initiated": "2023-07-12", + "ministryContact": "LAKIN ALVERTA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "createdAt": "2017-11-27", + "completed": "2014-01-12", + "initiated": "2016-05-02", + "ministryContact": "FAHEY CHESLEY", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "createdAt": "2015-11-09", + "completed": "2020-06-19", + "initiated": "2017-08-27", + "ministryContact": "O'HARA TAD", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + } + ], + "participants": [ + { + "name": "IPSUM", + "endDate": "2016-01-27", + "startDate": "2017-03-27", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2020-08-18", + "startDate": "2020-06-28", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + } + ], + "associatedSites": [ + { + "dateNoted": "2020-08-11", + "notes": "", + "parcelID": "19501", + "siteID": "20947", + "siteRegistry": false + }, + { + "dateNoted": "2014-01-03", + "notes": "", + "parcelID": "16074", + "siteID": "19773", + "siteRegistry": false + }, + { + "dateNoted": "2014-02-10", + "notes": "", + "parcelID": "16913", + "siteID": "18497", + "siteRegistry": false + } + ] + }, + { + "uuid": "ac395d3d-e3a4-44f1-a8b6-d7ca2b8ec303", + "siteID": 19005, + "address": "443 Ondricka Forks", + "latitude": 49.2118, + "longitude": -133.1714, + "lastUpdated": "2023-07-02", + "city": "Douglasworth", + "region": "Thompson-Okanagan", + "victoriaFile": "26250-20/8656", + "regionalFile": "N/A", + "parcelIDs": [ + 3477288, + 731906, + 1133215, + 845320, + 3261403 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2022-08-07", + "completed": "2017-02-20", + "initiated": "2017-07-07", + "ministryContact": "BAILEY-MCKENZIE BRIDIE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "createdAt": "2014-05-30", + "completed": "2023-05-19", + "initiated": "2015-04-11", + "ministryContact": "BRADTKE FAE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "createdAt": "2018-09-30", + "completed": "2017-10-23", + "initiated": "2022-10-31", + "ministryContact": "ANDERSON HELEN", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "createdAt": "2021-06-06", + "completed": "2019-04-23", + "initiated": "2015-03-12", + "ministryContact": "GERHOLD ANTONETTE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + } + ], + "participants": [ + { + "name": "IPSUM", + "endDate": "2016-06-21", + "startDate": "2017-12-05", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2018-01-20", + "startDate": "2016-03-03", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2014-01-19", + "startDate": "2016-05-16", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + } + ], + "associatedSites": [ + { + "dateNoted": "2018-05-09", + "notes": "", + "parcelID": "20370", + "siteID": "19391", + "siteRegistry": true + }, + { + "dateNoted": "2017-06-03", + "notes": "", + "parcelID": "20115", + "siteID": "19075", + "siteRegistry": false + }, + { + "dateNoted": "2021-02-23", + "notes": "", + "parcelID": "17340", + "siteID": "19550", + "siteRegistry": true + } + ] + }, + { + "uuid": "c925aef6-ee3c-4ebd-86a9-3037efa59f1d", + "siteID": 20017, + "address": "6596 Predovic Mission", + "latitude": 57.3614, + "longitude": -138.4773, + "lastUpdated": "2016-12-25", + "city": "West Dionport", + "region": " North Coast", + "victoriaFile": "26250-20/3709", + "regionalFile": "N/A", + "parcelIDs": [ + 6111231, + 1324376, + 1316387, + 3446948, + 1371821 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2022-05-10", + "completed": "2015-12-30", + "initiated": "2017-02-09", + "ministryContact": "BALISTRERI EMERALD", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "createdAt": "2018-11-05", + "completed": "2022-03-15", + "initiated": "2022-02-09", + "ministryContact": "RUECKER RENE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "createdAt": "2019-08-01", + "completed": "2015-10-07", + "initiated": "2015-08-30", + "ministryContact": "KIHN ROSALIA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + } + ], + "participants": [ + { + "name": "IPSUM", + "endDate": "2019-05-27", + "startDate": "2021-05-04", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2020-10-13", + "startDate": "2020-07-24", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "AMET, DOLOR SIT", + "endDate": "2019-06-10", + "startDate": "2015-09-24", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "name": "AMET, DOLOR SIT", + "endDate": "2016-12-10", + "startDate": "2023-03-30", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + } + ], + "associatedSites": [ + { + "dateNoted": "2022-03-21", + "notes": "", + "parcelID": "20153", + "siteID": "20758", + "siteRegistry": false + }, + { + "dateNoted": "2015-04-04", + "notes": "", + "parcelID": "16585", + "siteID": "15822", + "siteRegistry": false + } + ] + }, + { + "uuid": "69c06182-5465-4d01-8df1-39997f548195", + "siteID": 15351, + "address": "60465 Jeromy Rapids", + "latitude": 50.7385, + "longitude": -137.2814, + "lastUpdated": "2020-10-01", + "city": "Emersonborough", + "region": "Vancouver Island/Coast", + "victoriaFile": "26250-20/8018", + "regionalFile": "N/A", + "parcelIDs": [ + 8771897, + 7252359, + 7926200, + 9971863, + 1736500 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2018-11-06", + "completed": "2021-05-30", + "initiated": "2014-01-13", + "ministryContact": "PADBERG CAITLYN", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "createdAt": "2020-05-31", + "completed": "2021-07-25", + "initiated": "2016-03-05", + "ministryContact": "ROGAHN TAMIA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "createdAt": "2019-05-31", + "completed": "2023-01-24", + "initiated": "2015-04-04", + "ministryContact": "KREIGER ANTONE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "createdAt": "2022-07-04", + "completed": "2022-11-12", + "initiated": "2022-03-21", + "ministryContact": "SANFORD ADELIA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + } + ], + "participants": [ + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2020-03-23", + "startDate": "2014-05-27", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "name": "AMET, DOLOR SIT", + "endDate": "2018-06-09", + "startDate": "2016-12-07", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "name": "AMET, DOLOR SIT", + "endDate": "2018-07-07", + "startDate": "2018-02-19", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "name": "AMET, DOLOR SIT", + "endDate": "2018-08-09", + "startDate": "2014-11-22", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + } + ], + "associatedSites": [ + { + "dateNoted": "2015-12-31", + "notes": "", + "parcelID": "17269", + "siteID": "20717", + "siteRegistry": true + }, + { + "dateNoted": "2023-06-30", + "notes": "", + "parcelID": "16559", + "siteID": "15222", + "siteRegistry": true + } + ] + }, + { + "uuid": "e2d3fe38-de90-4e13-aab5-0a7ad70f0af3", + "siteID": 18049, + "address": "9839 Bins Corner", + "latitude": 57.9594, + "longitude": -118.2171, + "lastUpdated": "2023-03-17", + "city": "East Freddie", + "region": "Mainland/Southwest", + "victoriaFile": "26250-20/6847", + "regionalFile": "N/A", + "parcelIDs": [ + 468392, + 6423278, + 9968335, + 2105040, + 3469057 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2016-07-14", + "completed": "2021-02-23", + "initiated": "2015-10-29", + "ministryContact": "RUECKER-O'REILLY ZACHARIAH", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "createdAt": "2020-06-29", + "completed": "2014-09-06", + "initiated": "2017-11-10", + "ministryContact": "PROHASKA STEFANIE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "createdAt": "2017-06-25", + "completed": "2015-04-09", + "initiated": "2018-05-18", + "ministryContact": "SCHUPPE ELLIOT", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "createdAt": "2016-07-31", + "completed": "2022-07-12", + "initiated": "2021-08-03", + "ministryContact": "BOTSFORD SHANNA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "createdAt": "2023-01-16", + "completed": "2022-08-15", + "initiated": "2022-10-14", + "ministryContact": "ULLRICH BRANDO", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + } + ], + "participants": [ + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2018-04-26", + "startDate": "2015-03-02", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2023-03-20", + "startDate": "2014-01-19", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "AMET, DOLOR SIT", + "endDate": "2014-09-17", + "startDate": "2014-12-13", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2020-05-10", + "startDate": "2019-03-21", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "name": "IPSUM", + "endDate": "2023-07-22", + "startDate": "2020-02-26", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + } + ], + "associatedSites": [ + { + "dateNoted": "2020-11-02", + "notes": "", + "parcelID": "16593", + "siteID": "20858", + "siteRegistry": true + }, + { + "dateNoted": "2020-06-04", + "notes": "", + "parcelID": "16845", + "siteID": "18274", + "siteRegistry": true + }, + { + "dateNoted": "2020-09-06", + "notes": "", + "parcelID": "20801", + "siteID": "16557", + "siteRegistry": false + } + ] + }, + { + "uuid": "4ce06820-1940-4419-a6b7-51efb308080f", + "siteID": 17976, + "address": "3093 Nolan Harbors", + "latitude": 58.0529, + "longitude": -121.2204, + "lastUpdated": "2021-01-08", + "city": "Grand Junction", + "region": " North Coast", + "victoriaFile": "26250-20/13526", + "regionalFile": "N/A", + "parcelIDs": [ + 6775251, + 2867852, + 9805359, + 5801175, + 747986 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2021-08-15", + "completed": "2017-01-09", + "initiated": "2017-10-19", + "ministryContact": "SCHOEN ALEJANDRIN", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "createdAt": "2018-06-16", + "completed": "2014-06-30", + "initiated": "2014-04-12", + "ministryContact": "DOYLE GIOVANNY", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "createdAt": "2020-02-04", + "completed": "2022-02-02", + "initiated": "2019-10-11", + "ministryContact": "SCHROEDER DANE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + } + ], + "participants": [ + { + "name": "AMET, DOLOR SIT", + "endDate": "2015-07-14", + "startDate": "2017-05-19", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "name": "IPSUM", + "endDate": "2022-03-16", + "startDate": "2021-03-09", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2021-04-07", + "startDate": "2019-08-17", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2014-08-13", + "startDate": "2017-10-30", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + } + ], + "associatedSites": [ + { + "dateNoted": "2017-06-08", + "notes": "", + "parcelID": "20777", + "siteID": "15792", + "siteRegistry": false + }, + { + "dateNoted": "2017-06-21", + "notes": "", + "parcelID": "19972", + "siteID": "18319", + "siteRegistry": true + } + ] + }, + { + "uuid": "6a244184-0958-4ce6-a5b7-1e4fdae22250", + "siteID": 19903, + "address": "1531 Tabitha Dale", + "latitude": 57.3701, + "longitude": -124.6439, + "lastUpdated": "2022-08-21", + "city": "East Jedport", + "region": "Vancouver Island/Coast", + "victoriaFile": "26250-20/12472", + "regionalFile": "N/A", + "parcelIDs": [ + 4150698, + 2863005, + 3567150, + 1064934, + 7343086 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2019-05-29", + "completed": "2019-04-20", + "initiated": "2021-05-18", + "ministryContact": "MCGLYNN ALVAH", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "createdAt": "2021-08-25", + "completed": "2022-01-03", + "initiated": "2015-04-25", + "ministryContact": "CUMMINGS AMELIA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "createdAt": "2023-06-12", + "completed": "2016-08-11", + "initiated": "2022-02-25", + "ministryContact": "POWLOWSKI KALLIE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + } + ], + "participants": [ + { + "name": "IPSUM", + "endDate": "2018-11-06", + "startDate": "2019-01-30", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "name": "IPSUM", + "endDate": "2020-04-06", + "startDate": "2016-02-29", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "IPSUM", + "endDate": "2018-07-31", + "startDate": "2016-03-09", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + } + ], + "associatedSites": [ + { + "dateNoted": "2021-10-01", + "notes": "", + "parcelID": "19143", + "siteID": "19603", + "siteRegistry": false + }, + { + "dateNoted": "2013-10-16", + "notes": "", + "parcelID": "18434", + "siteID": "17448", + "siteRegistry": false + }, + { + "dateNoted": "2023-04-01", + "notes": "", + "parcelID": "18652", + "siteID": "20906", + "siteRegistry": false + } + ] + }, + { + "uuid": "d90387ef-355f-4a2f-b0c9-a136d094b69b", + "siteID": 15577, + "address": "2114 Gleichner Row", + "latitude": 50.4037, + "longitude": -124.4013, + "lastUpdated": "2022-09-03", + "city": "Cincinnati", + "region": " North Coast", + "victoriaFile": "26250-20/8678", + "regionalFile": "N/A", + "parcelIDs": [ + 3256572, + 2301207, + 3253214, + 606655, + 7089078 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2015-09-12", + "completed": "2021-08-06", + "initiated": "2016-07-12", + "ministryContact": "LANG ISRAEL", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "createdAt": "2014-06-17", + "completed": "2017-05-11", + "initiated": "2020-05-12", + "ministryContact": "STOKES KAILYN", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "createdAt": "2023-07-12", + "completed": "2022-03-30", + "initiated": "2018-06-04", + "ministryContact": "BORER LEXIE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "createdAt": "2013-11-11", + "completed": "2023-08-03", + "initiated": "2014-04-21", + "ministryContact": "MCGLYNN RANDALL", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + } + ], + "participants": [ + { + "name": "AMET, DOLOR SIT", + "endDate": "2023-02-12", + "startDate": "2014-06-25", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "IPSUM", + "endDate": "2016-10-25", + "startDate": "2016-02-29", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "name": "AMET, DOLOR SIT", + "endDate": "2021-07-16", + "startDate": "2014-11-24", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "name": "AMET, DOLOR SIT", + "endDate": "2022-09-22", + "startDate": "2014-06-01", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + } + ], + "associatedSites": [ + { + "dateNoted": "2022-03-29", + "notes": "", + "parcelID": "17791", + "siteID": "15656", + "siteRegistry": true + } + ] + }, + { + "uuid": "ab00ee36-be34-4f10-bfad-89c1432401f3", + "siteID": 17057, + "address": "8363 Schiller Field", + "latitude": 48.9741, + "longitude": -126.1936, + "lastUpdated": "2019-03-22", + "city": "Majorport", + "region": "Vancouver Island/Coast", + "victoriaFile": "26250-20/16414", + "regionalFile": "N/A", + "parcelIDs": [ + 8872249, + 8753663, + 4001393, + 5470821, + 3359035 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2014-09-26", + "completed": "2013-11-02", + "initiated": "2021-03-27", + "ministryContact": "SWIFT DELIA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "createdAt": "2015-07-16", + "completed": "2020-06-01", + "initiated": "2015-09-07", + "ministryContact": "WARD HAROLD", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "createdAt": "2021-09-07", + "completed": "2018-05-24", + "initiated": "2021-03-29", + "ministryContact": "STAMM RENE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "createdAt": "2019-04-25", + "completed": "2016-09-24", + "initiated": "2019-01-19", + "ministryContact": "CRUICKSHANK ERICK", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + } + ], + "participants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2017-10-13", + "startDate": "2019-12-23", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2022-07-21", + "startDate": "2021-02-09", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2015-02-03", + "startDate": "2020-01-12", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + } + ], + "associatedSites": [ + { + "dateNoted": "2019-02-14", + "notes": "", + "parcelID": "20081", + "siteID": "19897", + "siteRegistry": false + }, + { + "dateNoted": "2014-11-27", + "notes": "", + "parcelID": "19046", + "siteID": "19351", + "siteRegistry": true + }, + { + "dateNoted": "2018-08-17", + "notes": "", + "parcelID": "20554", + "siteID": "19039", + "siteRegistry": true + } + ] + }, + { + "uuid": "850851e6-37d2-4a5e-a954-0f450d4e4329", + "siteID": 19037, + "address": "48047 Shemar Brook", + "latitude": 54.3772, + "longitude": -121.2118, + "lastUpdated": "2023-05-30", + "city": "Schultzberg", + "region": " North Coast", + "victoriaFile": "26250-20/18925", + "regionalFile": "N/A", + "parcelIDs": [ + 7979273, + 701794, + 2969400, + 7529479, + 9198961 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2014-01-20", + "completed": "2021-12-18", + "initiated": "2019-09-19", + "ministryContact": "FLATLEY-LEBSACK VERDA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "createdAt": "2013-11-18", + "completed": "2016-06-27", + "initiated": "2018-11-26", + "ministryContact": "DACH EVALYN", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "createdAt": "2020-05-14", + "completed": "2022-04-19", + "initiated": "2022-12-29", + "ministryContact": "MOEN DREW", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "createdAt": "2014-02-02", + "completed": "2017-05-26", + "initiated": "2022-04-10", + "ministryContact": "D'AMORE WILLIS", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + } + ], + "participants": [ + { + "name": "AMET, DOLOR SIT", + "endDate": "2016-12-29", + "startDate": "2017-04-26", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2018-05-19", + "startDate": "2020-12-30", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2017-03-25", + "startDate": "2016-06-29", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2020-08-14", + "startDate": "2023-06-30", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + } + ], + "associatedSites": [ + { + "dateNoted": "2023-07-06", + "notes": "", + "parcelID": "15713", + "siteID": "18497", + "siteRegistry": false + } + ] + }, + { + "uuid": "3c9a2d33-cf8c-46dd-aad3-285fee3aee2f", + "siteID": 17567, + "address": "6875 Javonte Mews", + "latitude": 48.6385, + "longitude": -124.1532, + "lastUpdated": "2022-02-09", + "city": "New Graciela", + "region": "Vancouver Island/Coast", + "victoriaFile": "26250-20/11223", + "regionalFile": "N/A", + "parcelIDs": [ + 6499946, + 7476585, + 8975223, + 176689, + 1074160 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2021-06-02", + "completed": "2016-02-01", + "initiated": "2022-08-01", + "ministryContact": "BALISTRERI AIDAN", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "createdAt": "2018-11-30", + "completed": "2015-01-29", + "initiated": "2015-07-08", + "ministryContact": "BRAKUS EPHRAIM", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "createdAt": "2017-09-27", + "completed": "2022-11-19", + "initiated": "2018-05-19", + "ministryContact": "HAGENES VICKIE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + } + ], + "participants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2022-11-19", + "startDate": "2020-05-08", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "name": "AMET, DOLOR SIT", + "endDate": "2018-10-25", + "startDate": "2015-05-07", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + } + ], + "associatedSites": [ + { + "dateNoted": "2020-08-04", + "notes": "", + "parcelID": "15405", + "siteID": "19897", + "siteRegistry": true + }, + { + "dateNoted": "2015-08-31", + "notes": "", + "parcelID": "19306", + "siteID": "18775", + "siteRegistry": true + }, + { + "dateNoted": "2016-11-01", + "notes": "", + "parcelID": "18600", + "siteID": "18047", + "siteRegistry": false + } + ] + }, + { + "uuid": "fb37aab9-9681-46f9-81a2-8aea69e193e5", + "siteID": 19897, + "address": "32697 Luettgen Mews", + "latitude": 57.6132, + "longitude": -135.4502, + "lastUpdated": "2019-02-06", + "city": "Fort Rachelle", + "region": "Mainland/Southwest", + "victoriaFile": "26250-20/8542", + "regionalFile": "N/A", + "parcelIDs": [ + 2435849, + 5928742, + 6482967, + 8361599, + 5689784 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2017-01-26", + "completed": "2022-10-09", + "initiated": "2014-08-05", + "ministryContact": "KOCH TYREL", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "createdAt": "2020-07-23", + "completed": "2014-12-03", + "initiated": "2019-07-16", + "ministryContact": "CORMIER NOEMIE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "createdAt": "2021-03-31", + "completed": "2014-11-02", + "initiated": "2016-11-08", + "ministryContact": "WEBER EMELIE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "createdAt": "2020-10-05", + "completed": "2019-01-08", + "initiated": "2021-06-28", + "ministryContact": "STEUBER ALEXANDREA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "createdAt": "2021-10-25", + "completed": "2016-01-30", + "initiated": "2019-05-28", + "ministryContact": "LEHNER ILIANA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + } + ], + "participants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2020-03-24", + "startDate": "2015-01-19", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2020-12-22", + "startDate": "2017-08-23", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "name": "AMET, DOLOR SIT", + "endDate": "2019-08-25", + "startDate": "2016-06-08", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + } + ], + "associatedSites": [ + { + "dateNoted": "2015-02-07", + "notes": "", + "parcelID": "19051", + "siteID": "17976", + "siteRegistry": false + }, + { + "dateNoted": "2018-07-13", + "notes": "", + "parcelID": "15677", + "siteID": "19243", + "siteRegistry": true + }, + { + "dateNoted": "2022-08-06", + "notes": "", + "parcelID": "19297", + "siteID": "15666", + "siteRegistry": false + } + ] + }, + { + "uuid": "1dbc6327-2701-4793-81cb-748c17cea261", + "siteID": 17518, + "address": "2780 Zulauf Knolls", + "latitude": 55.4365, + "longitude": -129.1951, + "lastUpdated": "2017-01-07", + "city": "New Rossie", + "region": "Mainland/Southwest", + "victoriaFile": "26250-20/11766", + "regionalFile": "N/A", + "parcelIDs": [ + 6874021, + 7358011, + 4566935, + 3152145, + 3722948 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2019-06-08", + "completed": "2016-07-02", + "initiated": "2014-08-23", + "ministryContact": "LARSON ELIANE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "createdAt": "2016-03-25", + "completed": "2022-01-20", + "initiated": "2014-07-09", + "ministryContact": "PADBERG VANESSA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + } + ], + "participants": [ + { + "name": "AMET, DOLOR SIT", + "endDate": "2021-08-25", + "startDate": "2017-06-07", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2019-07-18", + "startDate": "2019-04-15", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "name": "AMET, DOLOR SIT", + "endDate": "2017-06-26", + "startDate": "2023-06-25", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + } + ], + "associatedSites": [ + { + "dateNoted": "2023-08-29", + "notes": "", + "parcelID": "18275", + "siteID": "15222", + "siteRegistry": false + }, + { + "dateNoted": "2014-03-02", + "notes": "", + "parcelID": "16679", + "siteID": "20717", + "siteRegistry": false + }, + { + "dateNoted": "2021-06-15", + "notes": "", + "parcelID": "20202", + "siteID": "16673", + "siteRegistry": true + } + ] + }, + { + "uuid": "0c954b38-7607-4be2-9a98-618d949109f4", + "siteID": 19039, + "address": "955 Blair Village", + "latitude": 50.7317, + "longitude": -135.4352, + "lastUpdated": "2016-03-27", + "city": "Gradyboro", + "region": "Cariboo", + "victoriaFile": "26250-20/5203", + "regionalFile": "N/A", + "parcelIDs": [ + 7347772, + 6063762, + 7838760, + 1868462, + 7361451 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2019-03-20", + "completed": "2019-10-18", + "initiated": "2016-01-04", + "ministryContact": "LEMKE WILHELMINE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "createdAt": "2023-08-12", + "completed": "2015-12-06", + "initiated": "2014-11-23", + "ministryContact": "OLSON-ERDMAN LINDSAY", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "createdAt": "2019-04-26", + "completed": "2016-05-20", + "initiated": "2022-07-01", + "ministryContact": "O'CONNELL THEODORA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "createdAt": "2019-09-05", + "completed": "2022-06-03", + "initiated": "2021-10-23", + "ministryContact": "MCKENZIE MARGOT", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "createdAt": "2021-05-24", + "completed": "2018-03-04", + "initiated": "2019-05-28", + "ministryContact": "JENKINS DEBORAH", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + } + ], + "participants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2019-11-23", + "startDate": "2020-11-20", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2022-02-24", + "startDate": "2021-10-11", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + } + ], + "associatedSites": [ + { + "dateNoted": "2019-06-19", + "notes": "", + "parcelID": "18095", + "siteID": "20017", + "siteRegistry": true + }, + { + "dateNoted": "2016-12-08", + "notes": "", + "parcelID": "17944", + "siteID": "15656", + "siteRegistry": true + } + ] + }, + { + "uuid": "d61bf6df-f5f7-4843-88b9-2a77069cfdb1", + "siteID": 16966, + "address": "51575 Brianne Throughway", + "latitude": 49.0904, + "longitude": -134.9505, + "lastUpdated": "2015-07-09", + "city": "Mustafaland", + "region": "Kootenay", + "victoriaFile": "26250-20/14166", + "regionalFile": "N/A", + "parcelIDs": [ + 9075448, + 708597, + 121240, + 6708919, + 8312465 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2016-11-19", + "completed": "2019-12-01", + "initiated": "2014-08-01", + "ministryContact": "MCKENZIE MACK", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "createdAt": "2020-09-16", + "completed": "2017-10-28", + "initiated": "2015-04-21", + "ministryContact": "DOUGLAS EZRA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "createdAt": "2016-09-30", + "completed": "2016-08-06", + "initiated": "2017-08-01", + "ministryContact": "DICKINSON KRYSTAL", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "createdAt": "2022-12-30", + "completed": "2020-12-24", + "initiated": "2013-10-05", + "ministryContact": "NIKOLAUS VIRGINIA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + } + ], + "participants": [ + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2021-09-26", + "startDate": "2018-01-11", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "name": "AMET, DOLOR SIT", + "endDate": "2017-08-30", + "startDate": "2019-03-02", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2018-05-07", + "startDate": "2017-02-02", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2017-06-15", + "startDate": "2016-06-30", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "AMET, DOLOR SIT", + "endDate": "2017-01-29", + "startDate": "2018-09-18", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + } + ], + "associatedSites": [ + { + "dateNoted": "2023-08-02", + "notes": "", + "parcelID": "20047", + "siteID": "15822", + "siteRegistry": true + } + ] + }, + { + "uuid": "ff1c4f62-75bf-4b4a-b777-fb2fc9b019c2", + "siteID": 17908, + "address": "604 Turcotte Ridge", + "latitude": 55.2776, + "longitude": -135.9238, + "lastUpdated": "2014-12-20", + "city": "Mistytown", + "region": "Thompson-Okanagan", + "victoriaFile": "26250-20/7567", + "regionalFile": "N/A", + "parcelIDs": [ + 9994175, + 7323560, + 2696498, + 4797949, + 5620375 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2015-02-05", + "completed": "2020-11-15", + "initiated": "2018-05-17", + "ministryContact": "CARTER BRAULIO", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "createdAt": "2023-01-31", + "completed": "2023-07-01", + "initiated": "2019-03-29", + "ministryContact": "WILDERMAN ARLIE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "createdAt": "2019-08-27", + "completed": "2021-03-09", + "initiated": "2017-11-07", + "ministryContact": "SIMONIS OSBALDO", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "createdAt": "2017-02-22", + "completed": "2021-09-09", + "initiated": "2020-04-24", + "ministryContact": "GLEASON JODY", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + } + ], + "participants": [ + { + "name": "AMET, DOLOR SIT", + "endDate": "2016-09-30", + "startDate": "2016-12-16", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "name": "IPSUM", + "endDate": "2021-07-05", + "startDate": "2020-10-12", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "name": "IPSUM", + "endDate": "2014-01-01", + "startDate": "2016-01-01", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "name": "IPSUM", + "endDate": "2023-03-03", + "startDate": "2014-01-31", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "name": "AMET, DOLOR SIT", + "endDate": "2021-06-15", + "startDate": "2019-07-02", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + } + ], + "associatedSites": [ + { + "dateNoted": "2017-03-01", + "notes": "", + "parcelID": "19396", + "siteID": "17164", + "siteRegistry": true + }, + { + "dateNoted": "2018-01-10", + "notes": "", + "parcelID": "20056", + "siteID": "18049", + "siteRegistry": true + } + ] + }, + { + "uuid": "c0ea5231-3f5d-46ef-b7e3-39758b218e4c", + "siteID": 19243, + "address": "3464 Johnson Highway", + "latitude": 52.9682, + "longitude": -137.1133, + "lastUpdated": "2017-12-14", + "city": "Oro Valley", + "region": "Vancouver Island/Coast", + "victoriaFile": "26250-20/5710", + "regionalFile": "N/A", + "parcelIDs": [ + 8959265, + 3235001, + 9659890, + 1800927, + 9969802 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2023-05-25", + "completed": "2022-01-22", + "initiated": "2016-02-04", + "ministryContact": "GOLDNER JAVONTE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "createdAt": "2023-07-25", + "completed": "2023-04-18", + "initiated": "2020-02-02", + "ministryContact": "BROWN LINDSAY", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "createdAt": "2015-09-22", + "completed": "2019-12-08", + "initiated": "2021-03-03", + "ministryContact": "HACKETT DERICK", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "createdAt": "2021-03-25", + "completed": "2017-05-03", + "initiated": "2021-12-28", + "ministryContact": "LARKIN LUIS", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + } + ], + "participants": [ + { + "name": "AMET, DOLOR SIT", + "endDate": "2019-05-29", + "startDate": "2015-05-14", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "name": "IPSUM", + "endDate": "2018-04-09", + "startDate": "2018-11-04", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + } + ], + "associatedSites": [ + { + "dateNoted": "2015-02-11", + "notes": "", + "parcelID": "17033", + "siteID": "16517", + "siteRegistry": false + } + ] + }, + { + "uuid": "02abf5a8-5ea7-4c90-ad16-14f26eb286dd", + "siteID": 17449, + "address": "36335 Robbie Parkways", + "latitude": 48.0459, + "longitude": -133.973, + "lastUpdated": "2015-06-12", + "city": "Lake Tobystead", + "region": "Thompson-Okanagan", + "victoriaFile": "26250-20/7211", + "regionalFile": "N/A", + "parcelIDs": [ + 5248166, + 3199598, + 3050301, + 4330821, + 1936142 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2017-12-06", + "completed": "2014-12-06", + "initiated": "2018-10-29", + "ministryContact": "CORKERY ELSE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "createdAt": "2016-02-21", + "completed": "2020-05-17", + "initiated": "2016-06-17", + "ministryContact": "FERRY TESS", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "createdAt": "2014-06-22", + "completed": "2017-09-28", + "initiated": "2020-11-17", + "ministryContact": "BREKKE-MOHR SHANON", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "createdAt": "2022-01-20", + "completed": "2018-01-25", + "initiated": "2021-11-06", + "ministryContact": "RITCHIE SHAYNE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + } + ], + "participants": [ + { + "name": "IPSUM", + "endDate": "2019-02-05", + "startDate": "2020-12-07", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2015-05-17", + "startDate": "2019-12-07", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "IPSUM", + "endDate": "2020-09-21", + "startDate": "2019-09-25", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + } + ], + "associatedSites": [ + { + "dateNoted": "2022-04-21", + "notes": "", + "parcelID": "16345", + "siteID": "18026", + "siteRegistry": false + } + ] + }, + { + "uuid": "9a05fbce-f459-45b9-ac22-31882b0ea384", + "siteID": 16942, + "address": "1563 Haag Courts", + "latitude": 52.7198, + "longitude": -120.6518, + "lastUpdated": "2018-12-28", + "city": "Lake Rocioton", + "region": "Cariboo", + "victoriaFile": "26250-20/14521", + "regionalFile": "N/A", + "parcelIDs": [ + 5439447, + 6835373, + 1072963, + 6951370, + 8370519 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2021-08-05", + "completed": "2021-11-26", + "initiated": "2020-04-23", + "ministryContact": "BOTSFORD GARRISON", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "createdAt": "2020-12-26", + "completed": "2015-10-07", + "initiated": "2015-07-28", + "ministryContact": "ADAMS ROWLAND", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + } + ], + "participants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2021-03-03", + "startDate": "2023-07-14", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2018-03-13", + "startDate": "2016-05-01", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2021-03-10", + "startDate": "2015-11-20", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2020-07-28", + "startDate": "2023-02-05", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + } + ], + "associatedSites": [ + { + "dateNoted": "2018-01-18", + "notes": "", + "parcelID": "16095", + "siteID": "19095", + "siteRegistry": false + }, + { + "dateNoted": "2017-06-24", + "notes": "", + "parcelID": "16538", + "siteID": "18126", + "siteRegistry": true + } + ] + }, + { + "uuid": "e6cd058d-145f-4576-8829-da7baadcea47", + "siteID": 18859, + "address": "3183 Satterfield Isle", + "latitude": 57.2433, + "longitude": -130.2429, + "lastUpdated": "2018-04-03", + "city": "West Novafurt", + "region": "Cariboo", + "victoriaFile": "26250-20/19670", + "regionalFile": "N/A", + "parcelIDs": [ + 7431321, + 3485340, + 3318830, + 8066461, + 2648328 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2022-06-10", + "completed": "2016-10-21", + "initiated": "2015-04-18", + "ministryContact": "LYNCH CATERINA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "createdAt": "2019-04-16", + "completed": "2023-05-20", + "initiated": "2023-09-15", + "ministryContact": "WINTHEISER NOEMI", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "createdAt": "2021-10-22", + "completed": "2018-03-13", + "initiated": "2022-07-28", + "ministryContact": "GERHOLD ISAIAS", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + } + ], + "participants": [ + { + "name": "IPSUM", + "endDate": "2016-03-30", + "startDate": "2020-07-27", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2022-12-03", + "startDate": "2019-02-19", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2017-01-06", + "startDate": "2016-10-01", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "name": "AMET, DOLOR SIT", + "endDate": "2018-07-20", + "startDate": "2014-05-15", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2018-01-21", + "startDate": "2017-12-17", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + } + ], + "associatedSites": [ + { + "dateNoted": "2022-07-29", + "notes": "", + "parcelID": "19098", + "siteID": "17012", + "siteRegistry": true + }, + { + "dateNoted": "2019-03-11", + "notes": "", + "parcelID": "19516", + "siteID": "20915", + "siteRegistry": true + }, + { + "dateNoted": "2021-12-02", + "notes": "", + "parcelID": "15757", + "siteID": "16634", + "siteRegistry": true + } + ] + }, + { + "uuid": "92226058-dacb-4fc9-8f73-98fea5d6705e", + "siteID": 15654, + "address": "49244 Dare Lights", + "latitude": 49.7365, + "longitude": -124.8755, + "lastUpdated": "2020-02-15", + "city": "South Estellafield", + "region": "Kootenay", + "victoriaFile": "26250-20/5204", + "regionalFile": "N/A", + "parcelIDs": [ + 5050623, + 5238308, + 3915282, + 7004656, + 4862097 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2013-11-18", + "completed": "2022-05-27", + "initiated": "2022-02-08", + "ministryContact": "BEDNAR PEGGIE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "createdAt": "2015-05-28", + "completed": "2019-05-18", + "initiated": "2021-05-08", + "ministryContact": "KONOPELSKI FORREST", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + } + ], + "participants": [ + { + "name": "IPSUM", + "endDate": "2015-12-16", + "startDate": "2018-02-28", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "name": "IPSUM", + "endDate": "2019-05-14", + "startDate": "2018-06-28", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + } + ], + "associatedSites": [ + { + "dateNoted": "2016-10-06", + "notes": "", + "parcelID": "18733", + "siteID": "20407", + "siteRegistry": true + } + ] + }, + { + "uuid": "421ed4a8-c693-42fb-9484-e9fdb6ef0b39", + "siteID": 18590, + "address": "712 Nora Mews", + "latitude": 50.6698, + "longitude": -130.7698, + "lastUpdated": "2017-11-26", + "city": "New Carissafort", + "region": "Kootenay", + "victoriaFile": "26250-20/14052", + "regionalFile": "N/A", + "parcelIDs": [ + 4653158, + 8637617, + 3617586, + 3057464, + 2363528 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2019-07-29", + "completed": "2016-03-22", + "initiated": "2020-05-05", + "ministryContact": "RIPPIN ESTEVAN", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "createdAt": "2021-03-28", + "completed": "2016-10-11", + "initiated": "2019-11-17", + "ministryContact": "LABADIE BROOKE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "createdAt": "2022-02-21", + "completed": "2018-02-28", + "initiated": "2023-03-25", + "ministryContact": "PARKER ADELL", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "createdAt": "2022-02-19", + "completed": "2016-11-28", + "initiated": "2018-08-24", + "ministryContact": "POUROS-MARVIN LORENZ", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "createdAt": "2022-09-28", + "completed": "2021-03-28", + "initiated": "2016-10-11", + "ministryContact": "RATH JEROD", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + } + ], + "participants": [ + { + "name": "IPSUM", + "endDate": "2017-06-15", + "startDate": "2018-03-29", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "AMET, DOLOR SIT", + "endDate": "2022-06-03", + "startDate": "2023-07-24", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2013-11-26", + "startDate": "2021-08-18", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2014-03-07", + "startDate": "2021-10-03", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2020-01-10", + "startDate": "2013-11-07", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + } + ], + "associatedSites": [ + { + "dateNoted": "2023-08-13", + "notes": "", + "parcelID": "18650", + "siteID": "15543", + "siteRegistry": true + }, + { + "dateNoted": "2022-12-30", + "notes": "", + "parcelID": "20869", + "siteID": "18368", + "siteRegistry": false + } + ] + }, + { + "uuid": "bfdbb5cd-403c-45bd-8e12-966c99be1e92", + "siteID": 19914, + "address": "1980 Carolyne Circles", + "latitude": 55.2993, + "longitude": -124.2175, + "lastUpdated": "2017-10-24", + "city": "Fort Mckenzieborough", + "region": " North Coast", + "victoriaFile": "26250-20/3821", + "regionalFile": "N/A", + "parcelIDs": [ + 8907318, + 311720, + 7351848, + 5054569, + 2171008 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2018-02-27", + "completed": "2022-05-15", + "initiated": "2013-11-03", + "ministryContact": "ARMSTRONG JAZLYN", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "createdAt": "2020-05-25", + "completed": "2017-03-06", + "initiated": "2019-06-03", + "ministryContact": "SCHUMM BRENT", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "createdAt": "2014-06-10", + "completed": "2017-07-04", + "initiated": "2018-11-10", + "ministryContact": "COLE SHERWOOD", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + } + ], + "participants": [ + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2017-09-18", + "startDate": "2021-02-02", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "name": "AMET, DOLOR SIT", + "endDate": "2015-12-14", + "startDate": "2021-12-28", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "name": "AMET, DOLOR SIT", + "endDate": "2015-03-11", + "startDate": "2017-05-10", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "name": "IPSUM", + "endDate": "2017-04-06", + "startDate": "2021-09-17", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + } + ], + "associatedSites": [ + { + "dateNoted": "2016-06-27", + "notes": "", + "parcelID": "18548", + "siteID": "18162", + "siteRegistry": true + } + ] + }, + { + "uuid": "580ccb10-1162-4e30-aee5-a2649dd74a0f", + "siteID": 15513, + "address": "1718 Collier Lights", + "latitude": 48.4923, + "longitude": -132.6128, + "lastUpdated": "2019-08-25", + "city": "Spencerfurt", + "region": "Thompson-Okanagan", + "victoriaFile": "26250-20/6399", + "regionalFile": "N/A", + "parcelIDs": [ + 5786539, + 8050444, + 9835857, + 7899567, + 3274058 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2019-02-21", + "completed": "2017-08-30", + "initiated": "2019-12-30", + "ministryContact": "MOORE KELVIN", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "createdAt": "2023-02-28", + "completed": "2017-02-02", + "initiated": "2020-03-30", + "ministryContact": "FAHEY ERNA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "createdAt": "2018-07-03", + "completed": "2022-06-02", + "initiated": "2022-10-10", + "ministryContact": "LEFFLER-ALTENWERTH EDWARD", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + } + ], + "participants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2016-07-26", + "startDate": "2018-03-10", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2020-12-02", + "startDate": "2016-02-17", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2020-07-26", + "startDate": "2017-10-28", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "IPSUM", + "endDate": "2015-10-16", + "startDate": "2021-10-30", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + } + ], + "associatedSites": [ + { + "dateNoted": "2023-09-02", + "notes": "", + "parcelID": "20512", + "siteID": "17151", + "siteRegistry": false + } + ] + }, + { + "uuid": "b2d22b21-ad17-41e7-aa9f-29f468549a52", + "siteID": 16972, + "address": "7014 Hammes Manors", + "latitude": 49.1584, + "longitude": -130.3932, + "lastUpdated": "2020-09-03", + "city": "East Angieberg", + "region": "Thompson-Okanagan", + "victoriaFile": "26250-20/9979", + "regionalFile": "N/A", + "parcelIDs": [ + 1959602, + 6875266, + 8549337, + 6568795, + 3225115 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2015-08-20", + "completed": "2020-10-22", + "initiated": "2018-12-19", + "ministryContact": "MCDERMOTT CAMILLE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "createdAt": "2015-03-29", + "completed": "2022-08-07", + "initiated": "2019-04-15", + "ministryContact": "WOLF KEITH", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "createdAt": "2015-06-17", + "completed": "2022-11-29", + "initiated": "2022-12-09", + "ministryContact": "EBERT AUBREY", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "createdAt": "2018-09-04", + "completed": "2017-01-19", + "initiated": "2014-01-27", + "ministryContact": "LEUSCHKE EDWINA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "createdAt": "2022-05-07", + "completed": "2021-08-09", + "initiated": "2016-05-14", + "ministryContact": "ULLRICH PANSY", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + } + ], + "participants": [ + { + "name": "AMET, DOLOR SIT", + "endDate": "2015-09-18", + "startDate": "2017-06-02", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "AMET, DOLOR SIT", + "endDate": "2016-08-09", + "startDate": "2018-09-28", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "name": "IPSUM", + "endDate": "2021-09-19", + "startDate": "2020-03-29", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + } + ], + "associatedSites": [ + { + "dateNoted": "2018-08-17", + "notes": "", + "parcelID": "20183", + "siteID": "15273", + "siteRegistry": false + } + ] + }, + { + "uuid": "2c54f0ff-207d-41c7-bdef-6e1dc0a3b949", + "siteID": 19084, + "address": "234 Boyle Drive", + "latitude": 51.3834, + "longitude": -132.4634, + "lastUpdated": "2015-04-19", + "city": "Kuphalbury", + "region": " North Coast", + "victoriaFile": "26250-20/16194", + "regionalFile": "N/A", + "parcelIDs": [ + 3118260, + 1190324, + 4117790, + 1852254, + 4315177 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2021-01-20", + "completed": "2018-11-08", + "initiated": "2019-10-05", + "ministryContact": "SCHMITT DANGELO", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "createdAt": "2015-06-06", + "completed": "2018-08-29", + "initiated": "2020-06-26", + "ministryContact": "KONOPELSKI EMMALEE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + } + ], + "participants": [ + { + "name": "IPSUM", + "endDate": "2018-01-28", + "startDate": "2020-11-09", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "AMET, DOLOR SIT", + "endDate": "2023-03-11", + "startDate": "2020-02-17", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "AMET, DOLOR SIT", + "endDate": "2018-10-11", + "startDate": "2016-03-07", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2018-01-21", + "startDate": "2018-05-05", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + } + ], + "associatedSites": [ + { + "dateNoted": "2018-04-21", + "notes": "", + "parcelID": "16116", + "siteID": "18495", + "siteRegistry": true + }, + { + "dateNoted": "2016-04-11", + "notes": "", + "parcelID": "18119", + "siteID": "16025", + "siteRegistry": false + }, + { + "dateNoted": "2018-09-17", + "notes": "", + "parcelID": "17554", + "siteID": "16118", + "siteRegistry": false + } + ] + }, + { + "uuid": "ecd17974-fa32-4114-95aa-6f6e5bcabe85", + "siteID": 19075, + "address": "32971 Ivy Trace", + "latitude": 55.6962, + "longitude": -123.2873, + "lastUpdated": "2023-09-04", + "city": "Jonatancester", + "region": "Thompson-Okanagan", + "victoriaFile": "26250-20/15079", + "regionalFile": "N/A", + "parcelIDs": [ + 9710200, + 6541983, + 7106237, + 6645270, + 2358038 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2016-04-05", + "completed": "2021-03-19", + "initiated": "2021-10-03", + "ministryContact": "FEIL-KRIS KIANA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "createdAt": "2017-04-14", + "completed": "2019-01-15", + "initiated": "2018-11-29", + "ministryContact": "KUVALIS NELS", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "createdAt": "2020-05-10", + "completed": "2023-09-18", + "initiated": "2015-12-19", + "ministryContact": "HAGENES JOAN", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "createdAt": "2014-04-28", + "completed": "2022-12-30", + "initiated": "2021-04-11", + "ministryContact": "SHANAHAN DELL", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "createdAt": "2014-07-10", + "completed": "2018-04-08", + "initiated": "2018-01-27", + "ministryContact": "LANGOSH LESLY", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + } + ], + "participants": [ + { + "name": "IPSUM", + "endDate": "2019-05-09", + "startDate": "2022-02-21", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2018-07-30", + "startDate": "2021-04-05", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "AMET, DOLOR SIT", + "endDate": "2020-06-04", + "startDate": "2018-05-17", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + } + ], + "associatedSites": [ + { + "dateNoted": "2018-06-22", + "notes": "", + "parcelID": "20038", + "siteID": "20157", + "siteRegistry": false + } + ] + }, + { + "uuid": "a87aadd6-2576-4ba7-822a-4b1231f536c7", + "siteID": 17180, + "address": "7337 Heidenreich Shores", + "latitude": 49.1506, + "longitude": -133.0138, + "lastUpdated": "2023-03-27", + "city": "Rogers", + "region": " North Coast", + "victoriaFile": "26250-20/16905", + "regionalFile": "N/A", + "parcelIDs": [ + 6972247, + 3387017, + 4324381, + 1712946, + 4927812 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2019-04-04", + "completed": "2020-10-18", + "initiated": "2019-10-19", + "ministryContact": "KEELING MAGNOLIA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "createdAt": "2022-05-12", + "completed": "2018-04-22", + "initiated": "2019-08-04", + "ministryContact": "PROSACCO STANLEY", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + } + ], + "participants": [ + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2014-09-21", + "startDate": "2018-05-20", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "name": "IPSUM", + "endDate": "2017-05-28", + "startDate": "2016-04-16", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "name": "IPSUM", + "endDate": "2019-04-07", + "startDate": "2018-01-21", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "name": "IPSUM", + "endDate": "2023-09-24", + "startDate": "2019-05-21", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + } + ], + "associatedSites": [ + { + "dateNoted": "2014-11-07", + "notes": "", + "parcelID": "19147", + "siteID": "19377", + "siteRegistry": true + }, + { + "dateNoted": "2017-10-23", + "notes": "", + "parcelID": "18888", + "siteID": "17514", + "siteRegistry": true + } + ] + }, + { + "uuid": "1239a955-8ce4-4ce4-a829-8335df96db29", + "siteID": 19740, + "address": "946 Jones Throughway", + "latitude": 53.3067, + "longitude": -122.0298, + "lastUpdated": "2023-02-25", + "city": "Rueckerport", + "region": "Thompson-Okanagan", + "victoriaFile": "26250-20/19022", + "regionalFile": "N/A", + "parcelIDs": [ + 3353153, + 7345713, + 3077969, + 5712928, + 782992 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2023-06-21", + "completed": "2022-11-07", + "initiated": "2015-11-26", + "ministryContact": "ROMAGUERA-HUEL VICKY", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "createdAt": "2016-11-22", + "completed": "2021-06-04", + "initiated": "2015-12-12", + "ministryContact": "STAMM DARBY", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "createdAt": "2020-06-26", + "completed": "2014-01-24", + "initiated": "2018-05-13", + "ministryContact": "HAHN PHOEBE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "createdAt": "2021-12-08", + "completed": "2015-06-09", + "initiated": "2021-07-24", + "ministryContact": "FUNK ALPHONSO", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + } + ], + "participants": [ + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2021-01-27", + "startDate": "2016-08-07", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2014-11-23", + "startDate": "2016-08-18", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2020-12-03", + "startDate": "2014-09-25", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "name": "AMET, DOLOR SIT", + "endDate": "2022-08-24", + "startDate": "2015-12-14", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2016-11-27", + "startDate": "2021-02-17", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + } + ], + "associatedSites": [ + { + "dateNoted": "2019-11-19", + "notes": "", + "parcelID": "19471", + "siteID": "18245", + "siteRegistry": true + }, + { + "dateNoted": "2016-06-18", + "notes": "", + "parcelID": "16366", + "siteID": "17898", + "siteRegistry": true + } + ] + }, + { + "uuid": "e0245d13-b808-43f6-950e-dde2a0666bc9", + "siteID": 19773, + "address": "8479 Turner Summit", + "latitude": 54.0442, + "longitude": -132.4007, + "lastUpdated": "2014-03-22", + "city": "Macejkovicborough", + "region": "Kootenay", + "victoriaFile": "26250-20/18984", + "regionalFile": "N/A", + "parcelIDs": [ + 4592089, + 6487072, + 437990, + 3914098, + 6096528 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2022-01-07", + "completed": "2015-05-17", + "initiated": "2020-07-20", + "ministryContact": "DANIEL ARLENE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "createdAt": "2023-06-24", + "completed": "2015-04-25", + "initiated": "2022-07-07", + "ministryContact": "OSINSKI REBECA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + } + ], + "participants": [ + { + "name": "AMET, DOLOR SIT", + "endDate": "2016-05-23", + "startDate": "2019-06-13", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2022-11-29", + "startDate": "2023-01-02", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + } + ], + "associatedSites": [ + { + "dateNoted": "2018-06-01", + "notes": "", + "parcelID": "19096", + "siteID": "16272", + "siteRegistry": false + }, + { + "dateNoted": "2019-01-15", + "notes": "", + "parcelID": "19359", + "siteID": "15361", + "siteRegistry": true + }, + { + "dateNoted": "2017-03-27", + "notes": "", + "parcelID": "18638", + "siteID": "19457", + "siteRegistry": true + } + ] + }, + { + "uuid": "510d5e5e-cd9e-4ad2-95fa-ce7839ac5064", + "siteID": 17012, + "address": "8093 Dibbert Drives", + "latitude": 55.6257, + "longitude": -137.0721, + "lastUpdated": "2018-08-02", + "city": "Fremont", + "region": "Mainland/Southwest", + "victoriaFile": "26250-20/16794", + "regionalFile": "N/A", + "parcelIDs": [ + 8915353, + 3233829, + 7997773, + 8113485, + 7548974 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2020-08-29", + "completed": "2014-03-07", + "initiated": "2015-05-02", + "ministryContact": "HOWE CORINE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "createdAt": "2018-04-04", + "completed": "2019-06-29", + "initiated": "2015-03-30", + "ministryContact": "BREITENBERG ASHLYNN", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "createdAt": "2021-09-26", + "completed": "2021-05-08", + "initiated": "2023-09-01", + "ministryContact": "GRANT BERTA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "createdAt": "2019-05-27", + "completed": "2022-11-23", + "initiated": "2018-05-21", + "ministryContact": "KUNDE CYNTHIA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "createdAt": "2017-07-24", + "completed": "2019-08-03", + "initiated": "2017-08-23", + "ministryContact": "SWIFT LEONARD", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + } + ], + "participants": [ + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2023-09-24", + "startDate": "2016-08-04", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "name": "IPSUM", + "endDate": "2013-10-02", + "startDate": "2020-06-13", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "AMET, DOLOR SIT", + "endDate": "2014-02-03", + "startDate": "2013-12-14", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + } + ], + "associatedSites": [ + { + "dateNoted": "2017-01-14", + "notes": "", + "parcelID": "20358", + "siteID": "19589", + "siteRegistry": false + } + ] + }, + { + "uuid": "5eb91ea7-da41-467d-b54e-329757c38c15", + "siteID": 15945, + "address": "1283 Jerde Rue", + "latitude": 49.7245, + "longitude": -136.9703, + "lastUpdated": "2014-02-23", + "city": "East Vernie", + "region": "Cariboo", + "victoriaFile": "26250-20/17179", + "regionalFile": "N/A", + "parcelIDs": [ + 9447882, + 4187310, + 2612678, + 7421022, + 7985650 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2021-04-09", + "completed": "2016-02-04", + "initiated": "2019-08-08", + "ministryContact": "BREITENBERG CYRUS", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "createdAt": "2017-02-01", + "completed": "2016-01-20", + "initiated": "2018-09-10", + "ministryContact": "MORAR MARIBEL", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "createdAt": "2017-02-10", + "completed": "2020-01-02", + "initiated": "2017-09-02", + "ministryContact": "LARSON CLAUDIA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "createdAt": "2015-01-21", + "completed": "2015-03-10", + "initiated": "2015-08-24", + "ministryContact": "SWIFT BRAEDEN", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + } + ], + "participants": [ + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2019-03-08", + "startDate": "2019-01-21", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2023-09-19", + "startDate": "2019-05-27", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "name": "AMET, DOLOR SIT", + "endDate": "2020-12-04", + "startDate": "2015-01-25", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "name": "AMET, DOLOR SIT", + "endDate": "2014-10-03", + "startDate": "2016-04-23", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "IPSUM", + "endDate": "2018-08-30", + "startDate": "2015-03-18", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + } + ], + "associatedSites": [ + { + "dateNoted": "2020-06-19", + "notes": "", + "parcelID": "19748", + "siteID": "18373", + "siteRegistry": true + }, + { + "dateNoted": "2023-06-15", + "notes": "", + "parcelID": "15424", + "siteID": "20865", + "siteRegistry": false + }, + { + "dateNoted": "2017-04-19", + "notes": "", + "parcelID": "15536", + "siteID": "20957", + "siteRegistry": false + } + ] + }, + { + "uuid": "4cd2af22-991d-42b9-8814-5decc4a15e93", + "siteID": 20614, + "address": "8255 Altenwerth Path", + "latitude": 55.3704, + "longitude": -122.8263, + "lastUpdated": "2014-02-18", + "city": "East Winfieldworth", + "region": "Vancouver Island/Coast", + "victoriaFile": "26250-20/15099", + "regionalFile": "N/A", + "parcelIDs": [ + 2460966, + 4936620, + 4561604, + 2412110, + 5216673 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2016-02-07", + "completed": "2015-12-25", + "initiated": "2016-01-04", + "ministryContact": "HERMISTON VICENTE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "createdAt": "2020-11-24", + "completed": "2023-04-24", + "initiated": "2016-07-01", + "ministryContact": "ROHAN AUSTIN", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "createdAt": "2016-01-05", + "completed": "2016-10-17", + "initiated": "2022-06-08", + "ministryContact": "SCHAEFER LUCAS", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "createdAt": "2013-10-27", + "completed": "2023-04-28", + "initiated": "2017-12-02", + "ministryContact": "VONRUEDEN BELLE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "createdAt": "2015-03-13", + "completed": "2016-10-12", + "initiated": "2019-06-11", + "ministryContact": "ZULAUF ASHA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + } + ], + "participants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2022-12-22", + "startDate": "2016-12-13", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "name": "IPSUM", + "endDate": "2019-02-06", + "startDate": "2013-12-28", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2017-11-02", + "startDate": "2016-04-26", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "IPSUM", + "endDate": "2021-12-27", + "startDate": "2019-08-23", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + } + ], + "associatedSites": [ + { + "dateNoted": "2018-06-07", + "notes": "", + "parcelID": "20455", + "siteID": "17012", + "siteRegistry": false + }, + { + "dateNoted": "2016-06-22", + "notes": "", + "parcelID": "19439", + "siteID": "19854", + "siteRegistry": true + } + ] + }, + { + "uuid": "cab7c5f5-6027-4cbf-97b3-fdf91418eb98", + "siteID": 17768, + "address": "89887 Goldner Curve", + "latitude": 58.8263, + "longitude": -134.4658, + "lastUpdated": "2018-09-06", + "city": "North Eleazarville", + "region": " North Coast", + "victoriaFile": "26250-20/19204", + "regionalFile": "N/A", + "parcelIDs": [ + 3178400, + 6193094, + 2647749, + 8339296, + 3225275 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2019-08-12", + "completed": "2020-10-30", + "initiated": "2014-12-19", + "ministryContact": "KUHIC KYLEE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "createdAt": "2015-11-05", + "completed": "2023-04-11", + "initiated": "2023-05-15", + "ministryContact": "WOLF DORCAS", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "createdAt": "2020-01-14", + "completed": "2018-11-28", + "initiated": "2022-10-04", + "ministryContact": "ROGAHN IAN", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "createdAt": "2023-04-10", + "completed": "2019-03-17", + "initiated": "2014-05-22", + "ministryContact": "BALISTRERI DAWN", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + } + ], + "participants": [ + { + "name": "IPSUM", + "endDate": "2015-06-19", + "startDate": "2018-08-07", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2017-09-24", + "startDate": "2013-11-23", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "IPSUM", + "endDate": "2022-10-10", + "startDate": "2021-09-10", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "name": "AMET, DOLOR SIT", + "endDate": "2018-06-10", + "startDate": "2021-07-19", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + } + ], + "associatedSites": [ + { + "dateNoted": "2014-05-08", + "notes": "", + "parcelID": "15522", + "siteID": "18799", + "siteRegistry": false + } + ] + }, + { + "uuid": "ca759ae1-ba21-4936-945f-9f9cf06de3ae", + "siteID": 16839, + "address": "4767 Marietta Squares", + "latitude": 49.8602, + "longitude": -128.5745, + "lastUpdated": "2015-07-15", + "city": "North Kristytown", + "region": "Thompson-Okanagan", + "victoriaFile": "26250-20/17993", + "regionalFile": "N/A", + "parcelIDs": [ + 3862982, + 1886316, + 6917212, + 5525400, + 8256590 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2022-05-26", + "completed": "2021-04-06", + "initiated": "2023-01-26", + "ministryContact": "WISOKY THEO", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "createdAt": "2016-12-08", + "completed": "2014-04-10", + "initiated": "2022-09-24", + "ministryContact": "LOCKMAN MAXIMO", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "createdAt": "2019-04-25", + "completed": "2021-04-29", + "initiated": "2016-01-08", + "ministryContact": "MARQUARDT LUELLA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "createdAt": "2017-01-23", + "completed": "2022-11-20", + "initiated": "2021-11-13", + "ministryContact": "MUELLER ALENE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "createdAt": "2015-12-25", + "completed": "2017-03-11", + "initiated": "2022-10-30", + "ministryContact": "BEIER HOWARD", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + } + ], + "participants": [ + { + "name": "IPSUM", + "endDate": "2014-06-30", + "startDate": "2016-02-28", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2017-09-21", + "startDate": "2022-11-12", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + } + ], + "associatedSites": [ + { + "dateNoted": "2019-03-28", + "notes": "", + "parcelID": "18841", + "siteID": "17394", + "siteRegistry": true + }, + { + "dateNoted": "2016-02-29", + "notes": "", + "parcelID": "16355", + "siteID": "20717", + "siteRegistry": false + }, + { + "dateNoted": "2014-08-30", + "notes": "", + "parcelID": "19665", + "siteID": "19407", + "siteRegistry": false + } + ] + }, + { + "uuid": "085c322b-2d43-4bc3-b27f-b65345cc68df", + "siteID": 18069, + "address": "339 Stark Land", + "latitude": 50.0283, + "longitude": -137.1229, + "lastUpdated": "2018-08-10", + "city": "Mount Vernon", + "region": "Thompson-Okanagan", + "victoriaFile": "26250-20/874", + "regionalFile": "N/A", + "parcelIDs": [ + 1502082, + 2737639, + 937635, + 2648296, + 3635942 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2019-06-19", + "completed": "2020-01-20", + "initiated": "2023-07-03", + "ministryContact": "SCHILLER MELVIN", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "createdAt": "2014-10-02", + "completed": "2020-11-09", + "initiated": "2015-08-21", + "ministryContact": "ZIEMANN STANTON", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "createdAt": "2013-12-26", + "completed": "2019-09-10", + "initiated": "2014-06-29", + "ministryContact": "PACOCHA CLAUDINE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + } + ], + "participants": [ + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2016-02-07", + "startDate": "2023-07-15", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2016-12-24", + "startDate": "2016-09-17", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2019-01-23", + "startDate": "2019-07-06", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + } + ], + "associatedSites": [ + { + "dateNoted": "2020-05-28", + "notes": "", + "parcelID": "17460", + "siteID": "20366", + "siteRegistry": false + } + ] + }, + { + "uuid": "f4305c91-1fce-492b-b5c5-cf47e63d3a91", + "siteID": 17203, + "address": "212 Becker Way", + "latitude": 50.4486, + "longitude": -118.1995, + "lastUpdated": "2019-07-11", + "city": "Lake Manley", + "region": "Cariboo", + "victoriaFile": "26250-20/7207", + "regionalFile": "N/A", + "parcelIDs": [ + 4713914, + 1413950, + 3795791, + 9059115, + 8325198 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2014-05-11", + "completed": "2016-11-11", + "initiated": "2014-09-17", + "ministryContact": "HAYES IDELLA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "createdAt": "2017-01-27", + "completed": "2022-03-26", + "initiated": "2023-06-10", + "ministryContact": "VOLKMAN TREVOR", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "createdAt": "2015-01-11", + "completed": "2016-06-16", + "initiated": "2015-12-11", + "ministryContact": "TURCOTTE GRACIE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "createdAt": "2014-11-14", + "completed": "2018-05-28", + "initiated": "2019-05-30", + "ministryContact": "RUSSEL JAMISON", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "createdAt": "2022-05-31", + "completed": "2020-06-07", + "initiated": "2020-06-29", + "ministryContact": "KUB GLADYCE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + } + ], + "participants": [ + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2016-05-28", + "startDate": "2014-03-06", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2017-05-08", + "startDate": "2016-12-14", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2020-02-02", + "startDate": "2020-06-12", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2014-04-07", + "startDate": "2019-05-28", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "name": "IPSUM", + "endDate": "2021-10-02", + "startDate": "2016-12-24", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + } + ], + "associatedSites": [ + { + "dateNoted": "2015-02-18", + "notes": "", + "parcelID": "19546", + "siteID": "18775", + "siteRegistry": true + }, + { + "dateNoted": "2015-07-26", + "notes": "", + "parcelID": "19953", + "siteID": "19740", + "siteRegistry": true + }, + { + "dateNoted": "2017-12-24", + "notes": "", + "parcelID": "17485", + "siteID": "17318", + "siteRegistry": false + } + ] + }, + { + "uuid": "8cd3169c-e6be-4a5b-904d-867d4f7da791", + "siteID": 15457, + "address": "731 Renner Flat", + "latitude": 53.6598, + "longitude": -138.8618, + "lastUpdated": "2022-09-18", + "city": "Enriqueboro", + "region": "Mainland/Southwest", + "victoriaFile": "26250-20/11313", + "regionalFile": "N/A", + "parcelIDs": [ + 9957510, + 4496769, + 2526105, + 3355395, + 2971019 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2021-08-07", + "completed": "2017-03-07", + "initiated": "2015-07-13", + "ministryContact": "HALVORSON KAITLIN", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "createdAt": "2015-12-08", + "completed": "2015-04-01", + "initiated": "2020-04-03", + "ministryContact": "KRIS TAVARES", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + } + ], + "participants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2014-05-07", + "startDate": "2015-02-12", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "name": "AMET, DOLOR SIT", + "endDate": "2019-06-08", + "startDate": "2014-05-04", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2017-11-23", + "startDate": "2021-05-20", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "name": "IPSUM", + "endDate": "2021-11-01", + "startDate": "2019-12-15", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "name": "IPSUM", + "endDate": "2022-08-20", + "startDate": "2022-05-08", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + } + ], + "associatedSites": [ + { + "dateNoted": "2023-05-27", + "notes": "", + "parcelID": "17902", + "siteID": "20178", + "siteRegistry": false + }, + { + "dateNoted": "2019-08-18", + "notes": "", + "parcelID": "19140", + "siteID": "19807", + "siteRegistry": true + } + ] + }, + { + "uuid": "472286d0-1c0e-4a52-9f21-7adc4ed14d35", + "siteID": 17317, + "address": "39280 Lurline Harbors", + "latitude": 56.801, + "longitude": -131.4143, + "lastUpdated": "2015-06-27", + "city": "Dickensburgh", + "region": "Mainland/Southwest", + "victoriaFile": "26250-20/8505", + "regionalFile": "N/A", + "parcelIDs": [ + 5791868, + 8617398, + 6106313, + 264182, + 3826017 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2015-07-12", + "completed": "2017-11-08", + "initiated": "2020-06-02", + "ministryContact": "WEST MARGOT", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "createdAt": "2019-07-30", + "completed": "2021-09-01", + "initiated": "2021-09-05", + "ministryContact": "BERGSTROM CASPER", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "createdAt": "2022-05-12", + "completed": "2020-05-22", + "initiated": "2021-06-12", + "ministryContact": "KOELPIN ABBIGAIL", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "createdAt": "2019-05-01", + "completed": "2014-05-03", + "initiated": "2020-07-26", + "ministryContact": "ERDMAN ROSSIE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "createdAt": "2016-03-28", + "completed": "2016-02-22", + "initiated": "2016-07-11", + "ministryContact": "RATH SYLVESTER", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + } + ], + "participants": [ + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2019-06-13", + "startDate": "2018-01-10", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2018-11-24", + "startDate": "2022-08-11", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + } + ], + "associatedSites": [ + { + "dateNoted": "2017-06-26", + "notes": "", + "parcelID": "18047", + "siteID": "18495", + "siteRegistry": false + } + ] + }, + { + "uuid": "a0c8f7c2-00d1-49a0-9e33-1eab425f95b7", + "siteID": 20407, + "address": "932 Tatum Fords", + "latitude": 56.4834, + "longitude": -120.9259, + "lastUpdated": "2015-08-18", + "city": "Lysannemouth", + "region": "Kootenay", + "victoriaFile": "26250-20/14891", + "regionalFile": "N/A", + "parcelIDs": [ + 2048609, + 8740966, + 6871904, + 1723142, + 984079 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2021-04-18", + "completed": "2019-10-12", + "initiated": "2019-09-11", + "ministryContact": "SCHMITT ANDREANNE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "createdAt": "2022-08-17", + "completed": "2018-07-10", + "initiated": "2016-01-04", + "ministryContact": "JACOBI DESTINY", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "createdAt": "2020-12-09", + "completed": "2014-11-23", + "initiated": "2021-07-05", + "ministryContact": "O'KEEFE JARRETT", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + } + ], + "participants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2019-10-21", + "startDate": "2022-07-06", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "name": "AMET, DOLOR SIT", + "endDate": "2019-06-25", + "startDate": "2021-09-21", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2017-01-07", + "startDate": "2014-03-29", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + } + ], + "associatedSites": [ + { + "dateNoted": "2014-01-23", + "notes": "", + "parcelID": "16374", + "siteID": "18695", + "siteRegistry": false + }, + { + "dateNoted": "2016-01-29", + "notes": "", + "parcelID": "20128", + "siteID": "19075", + "siteRegistry": false + }, + { + "dateNoted": "2020-12-28", + "notes": "", + "parcelID": "15385", + "siteID": "20157", + "siteRegistry": true + } + ] + }, + { + "uuid": "21c962cf-1aa0-46a7-a73f-7e187563055b", + "siteID": 15588, + "address": "60595 Valerie Glen", + "latitude": 52.9706, + "longitude": -126.7289, + "lastUpdated": "2019-11-23", + "city": "Hanetown", + "region": " North Coast", + "victoriaFile": "26250-20/19561", + "regionalFile": "N/A", + "parcelIDs": [ + 5360594, + 2652450, + 8125569, + 8149940, + 5990677 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2015-10-12", + "completed": "2020-08-27", + "initiated": "2023-01-17", + "ministryContact": "THOMPSON YESENIA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "createdAt": "2017-06-09", + "completed": "2015-08-10", + "initiated": "2016-06-06", + "ministryContact": "FRAMI EVALYN", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "createdAt": "2016-10-21", + "completed": "2014-09-03", + "initiated": "2019-08-12", + "ministryContact": "RUNTE LEANNE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "createdAt": "2019-12-12", + "completed": "2023-06-24", + "initiated": "2013-11-13", + "ministryContact": "AUFDERHAR TRISTIN", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + } + ], + "participants": [ + { + "name": "AMET, DOLOR SIT", + "endDate": "2019-02-11", + "startDate": "2019-11-24", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2017-04-14", + "startDate": "2015-06-06", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "name": "IPSUM", + "endDate": "2022-08-03", + "startDate": "2015-07-02", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + } + ], + "associatedSites": [ + { + "dateNoted": "2014-10-10", + "notes": "", + "parcelID": "15241", + "siteID": "20441", + "siteRegistry": false + } + ] + }, + { + "uuid": "9f9a3afd-0a5c-485b-936c-72c6b0964429", + "siteID": 15222, + "address": "56064 Kemmer Trace", + "latitude": 58.7797, + "longitude": -127.3823, + "lastUpdated": "2015-06-02", + "city": "West Leonora", + "region": " North Coast", + "victoriaFile": "26250-20/4333", + "regionalFile": "N/A", + "parcelIDs": [ + 2596600, + 3897450, + 1956218, + 7558464, + 7864484 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2017-08-07", + "completed": "2019-09-11", + "initiated": "2023-03-24", + "ministryContact": "KOHLER JAQUELIN", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "createdAt": "2016-01-02", + "completed": "2021-09-14", + "initiated": "2015-03-12", + "ministryContact": "KLOCKO JAMIL", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + } + ], + "participants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2019-07-21", + "startDate": "2017-10-02", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2021-12-07", + "startDate": "2022-05-10", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "AMET, DOLOR SIT", + "endDate": "2023-05-28", + "startDate": "2020-10-19", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "name": "AMET, DOLOR SIT", + "endDate": "2016-10-03", + "startDate": "2022-08-26", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "name": "IPSUM", + "endDate": "2015-09-15", + "startDate": "2015-05-08", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + } + ], + "associatedSites": [ + { + "dateNoted": "2014-01-22", + "notes": "", + "parcelID": "16232", + "siteID": "19773", + "siteRegistry": false + } + ] + }, + { + "uuid": "8de7ef9b-acc0-4894-aaf6-ee6d9a0e7ea9", + "siteID": 15443, + "address": "31700 Gloria Wall", + "latitude": 57.3699, + "longitude": -125.6569, + "lastUpdated": "2018-03-11", + "city": "West Mohamed", + "region": "Thompson-Okanagan", + "victoriaFile": "26250-20/8998", + "regionalFile": "N/A", + "parcelIDs": [ + 8256717, + 2632694, + 1463439, + 7109098, + 5595890 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2017-12-19", + "completed": "2022-04-22", + "initiated": "2020-02-22", + "ministryContact": "JOHNSTON RUTH", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "createdAt": "2014-08-07", + "completed": "2020-11-09", + "initiated": "2015-04-04", + "ministryContact": "BARROWS JUSTICE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "createdAt": "2023-06-04", + "completed": "2019-05-15", + "initiated": "2017-06-21", + "ministryContact": "EFFERTZ ERNESTINA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "createdAt": "2019-02-04", + "completed": "2021-06-14", + "initiated": "2021-12-06", + "ministryContact": "WINDLER-DACH ORIE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + } + ], + "participants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2013-12-03", + "startDate": "2015-07-15", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "name": "IPSUM", + "endDate": "2015-04-25", + "startDate": "2020-07-31", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "name": "IPSUM", + "endDate": "2016-09-27", + "startDate": "2021-02-15", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2020-02-05", + "startDate": "2016-09-24", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + } + ], + "associatedSites": [ + { + "dateNoted": "2015-01-14", + "notes": "", + "parcelID": "17859", + "siteID": "16151", + "siteRegistry": false + } + ] + }, + { + "uuid": "5351029f-b2f5-4a73-9e2e-f25884d81d98", + "siteID": 15365, + "address": "851 Cristina Crossroad", + "latitude": 50.1301, + "longitude": -128.4784, + "lastUpdated": "2021-10-24", + "city": "Temple", + "region": "Mainland/Southwest", + "victoriaFile": "26250-20/2234", + "regionalFile": "N/A", + "parcelIDs": [ + 8219267, + 4753608, + 1177445, + 5279579, + 4510636 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2021-02-25", + "completed": "2021-02-21", + "initiated": "2018-04-28", + "ministryContact": "CONROY MANDY", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "createdAt": "2018-02-06", + "completed": "2023-04-26", + "initiated": "2020-03-03", + "ministryContact": "JAKUBOWSKI ALEXIS", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "createdAt": "2014-10-04", + "completed": "2021-10-08", + "initiated": "2017-05-17", + "ministryContact": "WARD HUBERT", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "createdAt": "2014-11-01", + "completed": "2014-08-03", + "initiated": "2020-10-30", + "ministryContact": "KING NICHOLE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "createdAt": "2019-05-04", + "completed": "2017-08-15", + "initiated": "2023-06-24", + "ministryContact": "FEIL LORENZO", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + } + ], + "participants": [ + { + "name": "AMET, DOLOR SIT", + "endDate": "2015-06-12", + "startDate": "2022-08-04", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "name": "AMET, DOLOR SIT", + "endDate": "2023-05-22", + "startDate": "2015-08-31", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "name": "AMET, DOLOR SIT", + "endDate": "2021-04-17", + "startDate": "2018-12-25", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "name": "IPSUM", + "endDate": "2015-05-11", + "startDate": "2022-12-01", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2021-05-24", + "startDate": "2023-08-11", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + } + ], + "associatedSites": [ + { + "dateNoted": "2019-04-27", + "notes": "", + "parcelID": "15973", + "siteID": "16736", + "siteRegistry": false + } + ] + }, + { + "uuid": "e57071d6-aff5-46f8-9a47-f047bb6a4774", + "siteID": 15543, + "address": "43923 Pagac Avenue", + "latitude": 55.0683, + "longitude": -124.5132, + "lastUpdated": "2015-08-13", + "city": "Katharinaport", + "region": "Vancouver Island/Coast", + "victoriaFile": "26250-20/6257", + "regionalFile": "N/A", + "parcelIDs": [ + 1991362, + 3300791, + 7509566, + 1911347, + 6716857 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2016-08-06", + "completed": "2017-05-08", + "initiated": "2018-02-11", + "ministryContact": "CROOKS SHANEL", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "createdAt": "2019-06-18", + "completed": "2016-11-18", + "initiated": "2019-12-06", + "ministryContact": "BRADTKE DANIELA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "createdAt": "2021-03-07", + "completed": "2014-02-03", + "initiated": "2017-03-27", + "ministryContact": "WYMAN AMINA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "createdAt": "2021-05-11", + "completed": "2017-07-26", + "initiated": "2021-11-04", + "ministryContact": "LEANNON ESMERALDA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + } + ], + "participants": [ + { + "name": "IPSUM", + "endDate": "2018-02-11", + "startDate": "2020-09-16", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2016-01-01", + "startDate": "2016-07-25", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "name": "AMET, DOLOR SIT", + "endDate": "2023-03-01", + "startDate": "2015-11-05", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "IPSUM", + "endDate": "2016-05-22", + "startDate": "2018-04-17", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + } + ], + "associatedSites": [ + { + "dateNoted": "2015-06-10", + "notes": "", + "parcelID": "20518", + "siteID": "19904", + "siteRegistry": true + }, + { + "dateNoted": "2016-11-26", + "notes": "", + "parcelID": "17165", + "siteID": "16986", + "siteRegistry": false + }, + { + "dateNoted": "2021-12-25", + "notes": "", + "parcelID": "15390", + "siteID": "16673", + "siteRegistry": false + } + ] + }, + { + "uuid": "f21f55cc-1a14-4bb0-8769-cb18dad30059", + "siteID": 16634, + "address": "478 Simonis Locks", + "latitude": 58.044, + "longitude": -131.313, + "lastUpdated": "2015-12-07", + "city": "Port Izaiah", + "region": "Vancouver Island/Coast", + "victoriaFile": "26250-20/17883", + "regionalFile": "N/A", + "parcelIDs": [ + 9269407, + 2022222, + 9061809, + 8411146, + 6672215 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2018-05-22", + "completed": "2023-04-10", + "initiated": "2023-09-17", + "ministryContact": "HOEGER KRISTY", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "createdAt": "2020-12-31", + "completed": "2021-11-15", + "initiated": "2021-09-30", + "ministryContact": "SMITH IBRAHIM", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "createdAt": "2023-08-10", + "completed": "2016-07-05", + "initiated": "2018-01-17", + "ministryContact": "MACGYVER ALETHA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "createdAt": "2023-09-10", + "completed": "2016-02-04", + "initiated": "2015-11-14", + "ministryContact": "SCHULTZ CHASITY", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + } + ], + "participants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2017-12-02", + "startDate": "2016-11-30", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2014-05-10", + "startDate": "2023-06-09", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + } + ], + "associatedSites": [ + { + "dateNoted": "2016-03-01", + "notes": "", + "parcelID": "20519", + "siteID": "17012", + "siteRegistry": false + }, + { + "dateNoted": "2015-12-09", + "notes": "", + "parcelID": "17459", + "siteID": "18838", + "siteRegistry": true + }, + { + "dateNoted": "2017-12-22", + "notes": "", + "parcelID": "20553", + "siteID": "17011", + "siteRegistry": true + } + ] + }, + { + "uuid": "797020c3-68ff-40eb-91b7-a9a83887e6d0", + "siteID": 19248, + "address": "14404 Waters Views", + "latitude": 54.3815, + "longitude": -126.533, + "lastUpdated": "2015-02-08", + "city": "Port Kennithcester", + "region": "Mainland/Southwest", + "victoriaFile": "26250-20/7335", + "regionalFile": "N/A", + "parcelIDs": [ + 1193057, + 5925139, + 3327807, + 1847470, + 8282136 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2021-10-04", + "completed": "2016-09-13", + "initiated": "2015-01-04", + "ministryContact": "HAMILL BRADY", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "createdAt": "2023-07-07", + "completed": "2017-09-23", + "initiated": "2022-11-21", + "ministryContact": "JOHNS DESSIE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "createdAt": "2021-06-05", + "completed": "2017-04-16", + "initiated": "2021-08-28", + "ministryContact": "RYAN AHMED", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "createdAt": "2018-06-15", + "completed": "2014-07-02", + "initiated": "2020-08-22", + "ministryContact": "HICKLE JAYLAN", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "createdAt": "2021-05-17", + "completed": "2014-10-30", + "initiated": "2017-12-27", + "ministryContact": "BEER ALLY", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + } + ], + "participants": [ + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2022-12-30", + "startDate": "2021-07-14", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2018-08-24", + "startDate": "2013-10-12", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2017-11-15", + "startDate": "2021-10-12", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + } + ], + "associatedSites": [ + { + "dateNoted": "2020-06-21", + "notes": "", + "parcelID": "19592", + "siteID": "17914", + "siteRegistry": false + }, + { + "dateNoted": "2018-09-11", + "notes": "", + "parcelID": "20952", + "siteID": "19740", + "siteRegistry": false + }, + { + "dateNoted": "2021-08-07", + "notes": "", + "parcelID": "20152", + "siteID": "16025", + "siteRegistry": true + } + ] + }, + { + "uuid": "463db693-f7d5-4c5e-add5-38753948754f", + "siteID": 18026, + "address": "89498 Casey Crest", + "latitude": 50.1886, + "longitude": -131.8699, + "lastUpdated": "2018-08-02", + "city": "Walnut Creek", + "region": "Thompson-Okanagan", + "victoriaFile": "26250-20/3290", + "regionalFile": "N/A", + "parcelIDs": [ + 3859513, + 7397483, + 6967199, + 7094168, + 9260551 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2018-07-01", + "completed": "2020-07-30", + "initiated": "2020-12-12", + "ministryContact": "MCLAUGHLIN KRAIG", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "createdAt": "2021-11-11", + "completed": "2014-03-22", + "initiated": "2014-08-19", + "ministryContact": "EMMERICH ESMERALDA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + } + ], + "participants": [ + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2014-04-23", + "startDate": "2022-05-30", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "name": "IPSUM", + "endDate": "2015-12-16", + "startDate": "2019-08-02", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "name": "AMET, DOLOR SIT", + "endDate": "2016-09-04", + "startDate": "2014-10-18", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + } + ], + "associatedSites": [ + { + "dateNoted": "2018-07-06", + "notes": "", + "parcelID": "20115", + "siteID": "18245", + "siteRegistry": false + }, + { + "dateNoted": "2018-07-21", + "notes": "", + "parcelID": "15868", + "siteID": "18550", + "siteRegistry": true + } + ] + }, + { + "uuid": "c2bc3f13-d83f-4647-b02c-96da428280e7", + "siteID": 19854, + "address": "17673 Shanahan Via", + "latitude": 56.7967, + "longitude": -120.023, + "lastUpdated": "2014-07-03", + "city": "Oswaldoland", + "region": "Vancouver Island/Coast", + "victoriaFile": "26250-20/5245", + "regionalFile": "N/A", + "parcelIDs": [ + 5109709, + 991955, + 9683405, + 6117093, + 3711313 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2021-09-25", + "completed": "2022-10-07", + "initiated": "2021-10-15", + "ministryContact": "HAMILL TERRENCE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "createdAt": "2020-09-04", + "completed": "2017-01-21", + "initiated": "2020-01-06", + "ministryContact": "BOEHM NICKLAUS", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "createdAt": "2014-07-26", + "completed": "2019-10-01", + "initiated": "2014-05-18", + "ministryContact": "WUCKERT-REMPEL ANTONETTA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "createdAt": "2017-12-02", + "completed": "2017-03-12", + "initiated": "2013-11-26", + "ministryContact": "ZULAUF SHERMAN", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + } + ], + "participants": [ + { + "name": "IPSUM", + "endDate": "2019-09-24", + "startDate": "2022-04-21", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2020-07-30", + "startDate": "2021-12-27", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "AMET, DOLOR SIT", + "endDate": "2019-04-11", + "startDate": "2021-11-17", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2019-12-24", + "startDate": "2015-09-28", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + } + ], + "associatedSites": [ + { + "dateNoted": "2014-02-12", + "notes": "", + "parcelID": "16057", + "siteID": "18753", + "siteRegistry": true + }, + { + "dateNoted": "2015-06-02", + "notes": "", + "parcelID": "16642", + "siteID": "19778", + "siteRegistry": true + }, + { + "dateNoted": "2021-01-28", + "notes": "", + "parcelID": "16336", + "siteID": "19904", + "siteRegistry": false + } + ] + }, + { + "uuid": "d012b652-ab6b-4b47-a3cc-e3ecdfe3b287", + "siteID": 17463, + "address": "6730 Davis Haven", + "latitude": 48.7437, + "longitude": -127.6937, + "lastUpdated": "2022-02-07", + "city": "New Efrain", + "region": " North Coast", + "victoriaFile": "26250-20/3079", + "regionalFile": "N/A", + "parcelIDs": [ + 8945222, + 4176829, + 5241588, + 4641866, + 5242951 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2015-07-11", + "completed": "2016-06-03", + "initiated": "2014-02-08", + "ministryContact": "HERMISTON ALYSHA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "createdAt": "2022-01-06", + "completed": "2017-05-10", + "initiated": "2014-11-21", + "ministryContact": "HEGMANN NAOMIE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + } + ], + "participants": [ + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2016-07-22", + "startDate": "2017-01-28", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "name": "IPSUM", + "endDate": "2017-01-14", + "startDate": "2013-10-22", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "name": "AMET, DOLOR SIT", + "endDate": "2020-04-07", + "startDate": "2021-10-04", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "name": "AMET, DOLOR SIT", + "endDate": "2020-03-15", + "startDate": "2019-12-23", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + } + ], + "associatedSites": [ + { + "dateNoted": "2018-05-03", + "notes": "", + "parcelID": "20180", + "siteID": "17275", + "siteRegistry": false + }, + { + "dateNoted": "2014-04-04", + "notes": "", + "parcelID": "20700", + "siteID": "19005", + "siteRegistry": false + } + ] + }, + { + "uuid": "fc0044a5-c2e9-48c6-bec8-2087e35bc631", + "siteID": 17692, + "address": "5632 Clifford Brooks", + "latitude": 48.8701, + "longitude": -121.9772, + "lastUpdated": "2014-06-08", + "city": "West Jazmyn", + "region": "Kootenay", + "victoriaFile": "26250-20/19839", + "regionalFile": "N/A", + "parcelIDs": [ + 5850486, + 5921314, + 9340826, + 4755638, + 4657499 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2018-08-20", + "completed": "2013-10-09", + "initiated": "2017-07-02", + "ministryContact": "BALISTRERI CLEO", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "createdAt": "2020-12-03", + "completed": "2023-03-27", + "initiated": "2023-07-04", + "ministryContact": "MANN ZELDA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "createdAt": "2015-04-03", + "completed": "2016-11-28", + "initiated": "2015-12-09", + "ministryContact": "HAGENES ROXANNE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + } + ], + "participants": [ + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2021-01-07", + "startDate": "2016-09-19", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "name": "AMET, DOLOR SIT", + "endDate": "2016-06-18", + "startDate": "2019-05-24", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "AMET, DOLOR SIT", + "endDate": "2015-04-22", + "startDate": "2020-09-24", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + } + ], + "associatedSites": [ + { + "dateNoted": "2023-02-04", + "notes": "", + "parcelID": "18910", + "siteID": "15666", + "siteRegistry": false + } + ] + }, + { + "uuid": "af72295d-0f9c-43dc-9922-770349c963ef", + "siteID": 18093, + "address": "94038 O'Keefe Inlet", + "latitude": 57.3663, + "longitude": -118.3781, + "lastUpdated": "2016-06-29", + "city": "Koeppfort", + "region": "Mainland/Southwest", + "victoriaFile": "26250-20/14919", + "regionalFile": "N/A", + "parcelIDs": [ + 885270, + 2105097, + 7747670, + 7551298, + 3147375 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2020-09-22", + "completed": "2023-07-27", + "initiated": "2014-01-08", + "ministryContact": "WATERS CAMILLE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "createdAt": "2019-09-28", + "completed": "2014-01-28", + "initiated": "2014-12-25", + "ministryContact": "ROSENBAUM JACE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + } + ], + "participants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2020-07-26", + "startDate": "2020-05-04", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "name": "AMET, DOLOR SIT", + "endDate": "2022-04-29", + "startDate": "2014-03-26", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + } + ], + "associatedSites": [ + { + "dateNoted": "2021-05-02", + "notes": "", + "parcelID": "17402", + "siteID": "15588", + "siteRegistry": true + } + ] + }, + { + "uuid": "6b470457-6b76-4d35-bd80-7577401aa09b", + "siteID": 15481, + "address": "97436 Haley Avenue", + "latitude": 50.3508, + "longitude": -127.6366, + "lastUpdated": "2014-03-29", + "city": "Trevacester", + "region": "Kootenay", + "victoriaFile": "26250-20/15644", + "regionalFile": "N/A", + "parcelIDs": [ + 2873750, + 5422995, + 5400068, + 5768135, + 8661220 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2018-01-11", + "completed": "2018-10-14", + "initiated": "2014-09-23", + "ministryContact": "MCLAUGHLIN ELSA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "createdAt": "2014-09-26", + "completed": "2014-09-28", + "initiated": "2019-12-11", + "ministryContact": "TOY TOMAS", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + } + ], + "participants": [ + { + "name": "AMET, DOLOR SIT", + "endDate": "2019-04-11", + "startDate": "2017-09-30", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "name": "IPSUM", + "endDate": "2015-09-30", + "startDate": "2014-12-30", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2013-12-27", + "startDate": "2022-02-25", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + } + ], + "associatedSites": [ + { + "dateNoted": "2021-10-18", + "notes": "", + "parcelID": "16524", + "siteID": "18274", + "siteRegistry": false + }, + { + "dateNoted": "2016-05-03", + "notes": "", + "parcelID": "15460", + "siteID": "18587", + "siteRegistry": false + } + ] + }, + { + "uuid": "ceea2cf6-6e7a-4a41-8ac0-b26850448745", + "siteID": 19072, + "address": "349 Jakubowski Mount", + "latitude": 53.2393, + "longitude": -135.8349, + "lastUpdated": "2017-06-04", + "city": "East Delphia", + "region": "Kootenay", + "victoriaFile": "26250-20/2741", + "regionalFile": "N/A", + "parcelIDs": [ + 7126998, + 1137610, + 3818525, + 5440607, + 7802326 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2017-04-26", + "completed": "2016-04-25", + "initiated": "2023-08-04", + "ministryContact": "HILLS JAMIL", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "createdAt": "2016-08-06", + "completed": "2014-01-14", + "initiated": "2015-07-29", + "ministryContact": "CORKERY ELBERT", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "createdAt": "2015-11-03", + "completed": "2016-04-13", + "initiated": "2018-07-03", + "ministryContact": "FISHER JOE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "createdAt": "2020-08-15", + "completed": "2020-10-09", + "initiated": "2022-09-23", + "ministryContact": "SCHNEIDER HOYT", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + } + ], + "participants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2018-05-17", + "startDate": "2016-03-17", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "IPSUM", + "endDate": "2019-07-09", + "startDate": "2016-10-11", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + } + ], + "associatedSites": [ + { + "dateNoted": "2021-07-15", + "notes": "", + "parcelID": "20997", + "siteID": "18047", + "siteRegistry": false + }, + { + "dateNoted": "2014-02-19", + "notes": "", + "parcelID": "20679", + "siteID": "17038", + "siteRegistry": true + }, + { + "dateNoted": "2019-02-07", + "notes": "", + "parcelID": "19841", + "siteID": "19248", + "siteRegistry": false + } + ] + }, + { + "uuid": "3c06d48a-8bdd-4f8d-930e-51fbfcda29e0", + "siteID": 20023, + "address": "88353 Jermey Avenue", + "latitude": 50.0437, + "longitude": -122.8816, + "lastUpdated": "2016-05-08", + "city": "West Enid", + "region": "Vancouver Island/Coast", + "victoriaFile": "26250-20/11528", + "regionalFile": "N/A", + "parcelIDs": [ + 7378184, + 6413736, + 6369839, + 1980287, + 345749 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2021-09-28", + "completed": "2015-05-13", + "initiated": "2020-03-26", + "ministryContact": "TURCOTTE ABDUL", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "createdAt": "2018-10-29", + "completed": "2018-11-01", + "initiated": "2016-03-10", + "ministryContact": "GISLASON LAMBERT", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "createdAt": "2015-04-30", + "completed": "2020-09-13", + "initiated": "2016-04-17", + "ministryContact": "MITCHELL OWEN", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "createdAt": "2019-08-14", + "completed": "2018-10-22", + "initiated": "2016-06-23", + "ministryContact": "MEDHURST JULIANA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + } + ], + "participants": [ + { + "name": "IPSUM", + "endDate": "2021-07-08", + "startDate": "2017-06-24", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "IPSUM", + "endDate": "2017-03-06", + "startDate": "2021-11-24", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + } + ], + "associatedSites": [ + { + "dateNoted": "2020-01-05", + "notes": "", + "parcelID": "17588", + "siteID": "20121", + "siteRegistry": false + } + ] + }, + { + "uuid": "7f13b3ac-6c7f-4720-a861-cc8d63912091", + "siteID": 16557, + "address": "1429 Rau Harbors", + "latitude": 58.087, + "longitude": -129.9837, + "lastUpdated": "2016-05-27", + "city": "East Raphaelleton", + "region": "Cariboo", + "victoriaFile": "26250-20/14058", + "regionalFile": "N/A", + "parcelIDs": [ + 3915760, + 9893630, + 191105, + 3425149, + 5876706 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2015-06-01", + "completed": "2015-05-29", + "initiated": "2015-03-15", + "ministryContact": "NIKOLAUS AMOS", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "createdAt": "2018-01-08", + "completed": "2020-02-19", + "initiated": "2015-05-11", + "ministryContact": "MARKS THERESE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + } + ], + "participants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2020-09-23", + "startDate": "2016-09-02", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "name": "IPSUM", + "endDate": "2016-10-01", + "startDate": "2016-03-29", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "name": "AMET, DOLOR SIT", + "endDate": "2014-04-21", + "startDate": "2013-12-13", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2021-01-10", + "startDate": "2021-08-19", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + } + ], + "associatedSites": [ + { + "dateNoted": "2015-12-07", + "notes": "", + "parcelID": "16704", + "siteID": "19669", + "siteRegistry": false + } + ] + }, + { + "uuid": "2e11cd85-2492-4107-a9a8-81375444e703", + "siteID": 19807, + "address": "36999 Ondricka Unions", + "latitude": 58.0975, + "longitude": -123.1498, + "lastUpdated": "2018-12-08", + "city": "North Bennie", + "region": "Vancouver Island/Coast", + "victoriaFile": "26250-20/16134", + "regionalFile": "N/A", + "parcelIDs": [ + 5197243, + 1849993, + 4742629, + 3648022, + 7753422 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2017-08-10", + "completed": "2019-09-13", + "initiated": "2018-08-27", + "ministryContact": "WELCH KEIRA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "createdAt": "2023-03-03", + "completed": "2022-05-08", + "initiated": "2021-01-07", + "ministryContact": "ANKUNDING EVERETT", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + } + ], + "participants": [ + { + "name": "AMET, DOLOR SIT", + "endDate": "2020-10-16", + "startDate": "2022-06-03", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "IPSUM", + "endDate": "2021-10-29", + "startDate": "2016-09-21", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + } + ], + "associatedSites": [ + { + "dateNoted": "2020-06-22", + "notes": "", + "parcelID": "17533", + "siteID": "18859", + "siteRegistry": false + }, + { + "dateNoted": "2021-08-28", + "notes": "", + "parcelID": "17503", + "siteID": "17898", + "siteRegistry": false + } + ] + }, + { + "uuid": "f1ebd099-a7df-41cc-b6bd-08061ad5f385", + "siteID": 17190, + "address": "6383 Patsy Brook", + "latitude": 48.8067, + "longitude": -128.7717, + "lastUpdated": "2020-12-05", + "city": "Sanford", + "region": "Kootenay", + "victoriaFile": "26250-20/2455", + "regionalFile": "N/A", + "parcelIDs": [ + 1628696, + 592003, + 1904256, + 6910862, + 6886902 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2017-02-16", + "completed": "2022-07-26", + "initiated": "2015-06-19", + "ministryContact": "SCHOWALTER LEW", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "createdAt": "2023-03-20", + "completed": "2019-04-03", + "initiated": "2021-01-08", + "ministryContact": "KEEBLER HANK", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "createdAt": "2019-09-07", + "completed": "2020-12-21", + "initiated": "2022-01-30", + "ministryContact": "FISHER ELDA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "createdAt": "2021-06-07", + "completed": "2020-04-25", + "initiated": "2018-08-09", + "ministryContact": "SCHMITT RAUL", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "createdAt": "2022-02-17", + "completed": "2022-12-05", + "initiated": "2023-02-01", + "ministryContact": "ULLRICH JADA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + } + ], + "participants": [ + { + "name": "AMET, DOLOR SIT", + "endDate": "2020-07-03", + "startDate": "2023-05-06", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2021-03-28", + "startDate": "2023-08-08", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + } + ], + "associatedSites": [ + { + "dateNoted": "2014-10-16", + "notes": "", + "parcelID": "17282", + "siteID": "17914", + "siteRegistry": false + }, + { + "dateNoted": "2014-01-27", + "notes": "", + "parcelID": "16845", + "siteID": "15481", + "siteRegistry": true + }, + { + "dateNoted": "2017-10-01", + "notes": "", + "parcelID": "20817", + "siteID": "16645", + "siteRegistry": true + } + ] + }, + { + "uuid": "d58ba631-8f3c-4fa4-bf6a-4301a794c1c9", + "siteID": 19762, + "address": "40145 Quincy Lane", + "latitude": 54.1689, + "longitude": -128.8815, + "lastUpdated": "2014-05-25", + "city": "Roobton", + "region": "Cariboo", + "victoriaFile": "26250-20/2863", + "regionalFile": "N/A", + "parcelIDs": [ + 9705558, + 9817471, + 6677629, + 8440090, + 697656 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2022-06-18", + "completed": "2023-02-13", + "initiated": "2014-03-13", + "ministryContact": "ROBEL ARCH", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "createdAt": "2020-05-01", + "completed": "2014-01-21", + "initiated": "2021-04-24", + "ministryContact": "SCHROEDER FELIX", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "createdAt": "2023-03-04", + "completed": "2018-09-19", + "initiated": "2017-07-07", + "ministryContact": "HALVORSON LUCILE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "createdAt": "2020-09-28", + "completed": "2022-03-04", + "initiated": "2019-08-24", + "ministryContact": "ALTENWERTH ZACKERY", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "createdAt": "2019-07-15", + "completed": "2019-07-27", + "initiated": "2022-03-02", + "ministryContact": "DICKI-KOSS ALIYAH", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + } + ], + "participants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2015-03-22", + "startDate": "2017-05-14", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2014-08-10", + "startDate": "2017-11-09", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "name": "AMET, DOLOR SIT", + "endDate": "2022-08-29", + "startDate": "2018-08-18", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + } + ], + "associatedSites": [ + { + "dateNoted": "2018-11-22", + "notes": "", + "parcelID": "15400", + "siteID": "19728", + "siteRegistry": false + }, + { + "dateNoted": "2015-03-10", + "notes": "", + "parcelID": "17864", + "siteID": "18753", + "siteRegistry": true + }, + { + "dateNoted": "2013-11-05", + "notes": "", + "parcelID": "17875", + "siteID": "20930", + "siteRegistry": true + } + ] + }, + { + "uuid": "2ce29f94-aa4c-45b1-ba55-05d271df9172", + "siteID": 17217, + "address": "19178 Leuschke Cliff", + "latitude": 58.5221, + "longitude": -124.4472, + "lastUpdated": "2016-07-14", + "city": "North Amariborough", + "region": "Mainland/Southwest", + "victoriaFile": "26250-20/5116", + "regionalFile": "N/A", + "parcelIDs": [ + 1736561, + 7428106, + 3650633, + 970744, + 3275152 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2017-01-12", + "completed": "2018-10-19", + "initiated": "2018-12-02", + "ministryContact": "BERNHARD TAMIA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "createdAt": "2018-05-05", + "completed": "2016-06-05", + "initiated": "2018-04-11", + "ministryContact": "OSINSKI LONDON", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "createdAt": "2016-06-11", + "completed": "2016-12-26", + "initiated": "2022-02-25", + "ministryContact": "SKILES AVERY", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "createdAt": "2021-10-30", + "completed": "2018-11-13", + "initiated": "2019-06-12", + "ministryContact": "KOZEY MAXIMUS", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + } + ], + "participants": [ + { + "name": "AMET, DOLOR SIT", + "endDate": "2022-06-25", + "startDate": "2015-01-30", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2019-02-23", + "startDate": "2016-04-14", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2018-01-12", + "startDate": "2021-02-18", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + } + ], + "associatedSites": [ + { + "dateNoted": "2016-09-12", + "notes": "", + "parcelID": "15401", + "siteID": "17237", + "siteRegistry": true + }, + { + "dateNoted": "2017-07-18", + "notes": "", + "parcelID": "16460", + "siteID": "16517", + "siteRegistry": true + }, + { + "dateNoted": "2018-01-12", + "notes": "", + "parcelID": "15315", + "siteID": "16839", + "siteRegistry": false + } + ] + }, + { + "uuid": "79c1bb66-e8f5-48b0-8973-3e7178ea6d14", + "siteID": 20758, + "address": "47007 Stiedemann Port", + "latitude": 54.5119, + "longitude": -126.2661, + "lastUpdated": "2017-04-04", + "city": "Haleystad", + "region": "Mainland/Southwest", + "victoriaFile": "26250-20/16767", + "regionalFile": "N/A", + "parcelIDs": [ + 8410247, + 4649765, + 2498748, + 4014497, + 3284732 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2017-09-02", + "completed": "2021-10-23", + "initiated": "2021-04-18", + "ministryContact": "GREEN FREIDA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "createdAt": "2017-10-12", + "completed": "2021-10-04", + "initiated": "2020-05-30", + "ministryContact": "SCHAMBERGER DARRICK", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "createdAt": "2023-08-01", + "completed": "2021-01-03", + "initiated": "2020-02-29", + "ministryContact": "BOEHM MAC", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + } + ], + "participants": [ + { + "name": "IPSUM", + "endDate": "2014-09-03", + "startDate": "2021-12-01", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2014-03-04", + "startDate": "2021-04-18", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + } + ], + "associatedSites": [ + { + "dateNoted": "2015-03-20", + "notes": "", + "parcelID": "19902", + "siteID": "19905", + "siteRegistry": false + } + ] + }, + { + "uuid": "3f3c34c7-a04b-437d-bc5f-c0114e82cb7c", + "siteID": 19197, + "address": "9148 Rice Parks", + "latitude": 56.6232, + "longitude": -135.5355, + "lastUpdated": "2015-02-18", + "city": "Lake Tiffany", + "region": "Kootenay", + "victoriaFile": "26250-20/12885", + "regionalFile": "N/A", + "parcelIDs": [ + 2214995, + 1562480, + 3376206, + 4407990, + 227503 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2022-08-03", + "completed": "2020-07-22", + "initiated": "2016-01-19", + "ministryContact": "BECKER KAITLYN", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "createdAt": "2020-08-24", + "completed": "2017-07-05", + "initiated": "2018-09-17", + "ministryContact": "METZ MAXIMILLIA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + } + ], + "participants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2015-03-16", + "startDate": "2014-02-15", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "name": "AMET, DOLOR SIT", + "endDate": "2016-04-22", + "startDate": "2016-05-27", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2019-05-16", + "startDate": "2020-10-25", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + } + ], + "associatedSites": [ + { + "dateNoted": "2015-05-25", + "notes": "", + "parcelID": "16899", + "siteID": "15784", + "siteRegistry": false + } + ] + }, + { + "uuid": "da55521e-47e4-4812-afc2-3f1008c0462f", + "siteID": 15949, + "address": "249 Jazmin Ramp", + "latitude": 55.5452, + "longitude": -132.5855, + "lastUpdated": "2021-07-25", + "city": "Honolulu", + "region": "Mainland/Southwest", + "victoriaFile": "26250-20/8518", + "regionalFile": "N/A", + "parcelIDs": [ + 9550516, + 3750980, + 9628768, + 4422974, + 6521039 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2014-04-05", + "completed": "2020-03-14", + "initiated": "2015-12-11", + "ministryContact": "WALTER MISTY", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "createdAt": "2019-05-26", + "completed": "2016-01-17", + "initiated": "2021-11-29", + "ministryContact": "TOY CLARK", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + } + ], + "participants": [ + { + "name": "AMET, DOLOR SIT", + "endDate": "2020-09-30", + "startDate": "2018-01-10", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "IPSUM", + "endDate": "2021-02-25", + "startDate": "2015-01-19", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + } + ], + "associatedSites": [ + { + "dateNoted": "2017-05-26", + "notes": "", + "parcelID": "18542", + "siteID": "16673", + "siteRegistry": true + }, + { + "dateNoted": "2016-03-26", + "notes": "", + "parcelID": "17374", + "siteID": "20826", + "siteRegistry": false + } + ] + }, + { + "uuid": "43663565-7f96-4fbe-a269-585805e18e8a", + "siteID": 19778, + "address": "461 Hirthe Street", + "latitude": 51.5251, + "longitude": -129.8461, + "lastUpdated": "2015-03-13", + "city": "Brentfort", + "region": "Thompson-Okanagan", + "victoriaFile": "26250-20/17283", + "regionalFile": "N/A", + "parcelIDs": [ + 7930033, + 4488934, + 7908136, + 4488173, + 3619076 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2017-07-22", + "completed": "2022-07-03", + "initiated": "2018-08-19", + "ministryContact": "JAKUBOWSKI MICAH", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "createdAt": "2017-04-17", + "completed": "2019-02-21", + "initiated": "2019-08-21", + "ministryContact": "WELCH KRISTIN", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + } + ], + "participants": [ + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2016-09-18", + "startDate": "2015-07-04", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "name": "IPSUM", + "endDate": "2020-01-20", + "startDate": "2022-10-02", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "name": "IPSUM", + "endDate": "2021-09-23", + "startDate": "2022-02-24", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + } + ], + "associatedSites": [ + { + "dateNoted": "2020-09-05", + "notes": "", + "parcelID": "20383", + "siteID": "19837", + "siteRegistry": true + }, + { + "dateNoted": "2017-07-23", + "notes": "", + "parcelID": "20546", + "siteID": "19773", + "siteRegistry": true + } + ] + }, + { + "uuid": "24a2c48e-0de6-4278-b4db-61970286789d", + "siteID": 19087, + "address": "6121 Gregory Shore", + "latitude": 58.2855, + "longitude": -123.2616, + "lastUpdated": "2023-03-05", + "city": "New Graciehaven", + "region": "Kootenay", + "victoriaFile": "26250-20/17100", + "regionalFile": "N/A", + "parcelIDs": [ + 3972219, + 6986542, + 6467663, + 652071, + 4476478 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2015-06-30", + "completed": "2015-02-25", + "initiated": "2018-01-05", + "ministryContact": "TERRY KRISTIAN", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "createdAt": "2018-01-06", + "completed": "2023-03-03", + "initiated": "2017-07-16", + "ministryContact": "HAND ADAN", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "createdAt": "2018-04-02", + "completed": "2018-06-02", + "initiated": "2020-05-26", + "ministryContact": "LANGOSH HENDERSON", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "createdAt": "2015-04-24", + "completed": "2022-12-24", + "initiated": "2015-06-21", + "ministryContact": "BLANDA LAVERN", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "createdAt": "2020-10-15", + "completed": "2016-11-29", + "initiated": "2023-04-28", + "ministryContact": "BARTON DESTINEE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + } + ], + "participants": [ + { + "name": "AMET, DOLOR SIT", + "endDate": "2019-07-01", + "startDate": "2017-03-10", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2022-09-26", + "startDate": "2022-05-12", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + } + ], + "associatedSites": [ + { + "dateNoted": "2013-10-07", + "notes": "", + "parcelID": "18748", + "siteID": "20023", + "siteRegistry": true + } + ] + }, + { + "uuid": "009b51c6-1af7-4ea0-aec4-00cd8abfed61", + "siteID": 19966, + "address": "2145 Lyla Lodge", + "latitude": 58.0554, + "longitude": -129.078, + "lastUpdated": "2017-03-01", + "city": "West Missouribury", + "region": " North Coast", + "victoriaFile": "26250-20/10828", + "regionalFile": "N/A", + "parcelIDs": [ + 147090, + 9802183, + 8835217, + 2079290, + 1409614 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2015-05-19", + "completed": "2016-03-17", + "initiated": "2015-04-13", + "ministryContact": "TROMP EMMET", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "createdAt": "2021-03-04", + "completed": "2022-07-18", + "initiated": "2023-06-22", + "ministryContact": "ROBEL WALTON", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "createdAt": "2017-02-01", + "completed": "2016-12-15", + "initiated": "2019-08-29", + "ministryContact": "SCHOWALTER JETT", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "createdAt": "2020-05-01", + "completed": "2014-02-02", + "initiated": "2023-04-27", + "ministryContact": "CASSIN REANNA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + } + ], + "participants": [ + { + "name": "AMET, DOLOR SIT", + "endDate": "2015-06-11", + "startDate": "2013-10-31", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "AMET, DOLOR SIT", + "endDate": "2020-01-08", + "startDate": "2023-09-09", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2019-12-03", + "startDate": "2015-02-01", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + } + ], + "associatedSites": [ + { + "dateNoted": "2020-11-29", + "notes": "", + "parcelID": "18663", + "siteID": "17449", + "siteRegistry": true + }, + { + "dateNoted": "2015-03-10", + "notes": "", + "parcelID": "19800", + "siteID": "17012", + "siteRegistry": false + } + ] + }, + { + "uuid": "b543cd0b-b702-478f-8260-66feb22c8410", + "siteID": 20692, + "address": "27902 Bradtke Lock", + "latitude": 51.4351, + "longitude": -137.3115, + "lastUpdated": "2018-04-12", + "city": "East Mateo", + "region": " North Coast", + "victoriaFile": "26250-20/8534", + "regionalFile": "N/A", + "parcelIDs": [ + 8943715, + 5325409, + 8443307, + 9904092, + 9094285 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2023-05-02", + "completed": "2018-05-26", + "initiated": "2014-07-10", + "ministryContact": "RAYNOR-BARROWS JUDGE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "createdAt": "2017-06-13", + "completed": "2016-05-22", + "initiated": "2019-10-29", + "ministryContact": "GORCZANY ESTELL", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + } + ], + "participants": [ + { + "name": "AMET, DOLOR SIT", + "endDate": "2021-01-17", + "startDate": "2022-09-21", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2023-02-27", + "startDate": "2022-12-07", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2022-08-24", + "startDate": "2022-04-25", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "AMET, DOLOR SIT", + "endDate": "2020-10-20", + "startDate": "2014-06-15", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + } + ], + "associatedSites": [ + { + "dateNoted": "2015-03-07", + "notes": "", + "parcelID": "15291", + "siteID": "17783", + "siteRegistry": false + }, + { + "dateNoted": "2015-04-23", + "notes": "", + "parcelID": "16602", + "siteID": "18969", + "siteRegistry": false + } + ] + }, + { + "uuid": "fb033389-79da-4b27-8f12-f5ce1855654d", + "siteID": 16810, + "address": "437 Funk Heights", + "latitude": 48.6744, + "longitude": -120.933, + "lastUpdated": "2015-12-09", + "city": "Charlotteview", + "region": " North Coast", + "victoriaFile": "26250-20/17408", + "regionalFile": "N/A", + "parcelIDs": [ + 3638395, + 4488246, + 4791223, + 5857517, + 6844788 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2020-07-08", + "completed": "2018-06-12", + "initiated": "2017-07-29", + "ministryContact": "KIEHN CLOVIS", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "createdAt": "2015-09-16", + "completed": "2019-01-09", + "initiated": "2019-05-23", + "ministryContact": "WINTHEISER RAMON", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "createdAt": "2020-12-15", + "completed": "2019-04-30", + "initiated": "2016-12-08", + "ministryContact": "JASKOLSKI KARI", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "createdAt": "2015-06-16", + "completed": "2015-12-27", + "initiated": "2018-03-14", + "ministryContact": "RENNER ELI", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "createdAt": "2021-06-01", + "completed": "2020-06-25", + "initiated": "2017-05-31", + "ministryContact": "BARTOLETTI VERONICA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + } + ], + "participants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2023-08-18", + "startDate": "2018-11-19", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2022-05-14", + "startDate": "2014-11-14", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "name": "AMET, DOLOR SIT", + "endDate": "2023-07-17", + "startDate": "2014-10-06", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2019-11-09", + "startDate": "2022-12-13", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + } + ], + "associatedSites": [ + { + "dateNoted": "2023-06-15", + "notes": "", + "parcelID": "18820", + "siteID": "16916", + "siteRegistry": true + }, + { + "dateNoted": "2013-10-06", + "notes": "", + "parcelID": "17402", + "siteID": "20178", + "siteRegistry": false + } + ] + }, + { + "uuid": "596b6e4b-c60d-423f-955f-6f684f4ec440", + "siteID": 19536, + "address": "3105 Shirley Glen", + "latitude": 53.9436, + "longitude": -127.7155, + "lastUpdated": "2018-11-01", + "city": "North Tyreekport", + "region": "Mainland/Southwest", + "victoriaFile": "26250-20/18906", + "regionalFile": "N/A", + "parcelIDs": [ + 6763866, + 7027995, + 4998769, + 6707992, + 4027299 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2022-10-25", + "completed": "2014-05-05", + "initiated": "2015-02-27", + "ministryContact": "BERNHARD JACKELINE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "createdAt": "2019-04-27", + "completed": "2022-05-28", + "initiated": "2014-08-27", + "ministryContact": "ANDERSON BETHANY", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "createdAt": "2019-09-18", + "completed": "2023-08-12", + "initiated": "2018-05-06", + "ministryContact": "KESSLER MIREYA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "createdAt": "2020-07-07", + "completed": "2015-07-22", + "initiated": "2019-11-28", + "ministryContact": "LUEILWITZ ZORA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + } + ], + "participants": [ + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2020-02-27", + "startDate": "2021-12-27", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2022-07-29", + "startDate": "2017-08-11", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2018-10-16", + "startDate": "2022-11-15", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2016-12-12", + "startDate": "2019-01-16", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "name": "IPSUM", + "endDate": "2017-10-15", + "startDate": "2018-02-17", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + } + ], + "associatedSites": [ + { + "dateNoted": "2021-02-21", + "notes": "", + "parcelID": "17939", + "siteID": "19039", + "siteRegistry": false + }, + { + "dateNoted": "2017-11-15", + "notes": "", + "parcelID": "15986", + "siteID": "17454", + "siteRegistry": false + } + ] + }, + { + "uuid": "54b07e90-377e-41ac-ae99-816fd1c76d07", + "siteID": 15667, + "address": "591 Dibbert Pines", + "latitude": 54.7446, + "longitude": -119.7465, + "lastUpdated": "2017-04-28", + "city": "East Garnet", + "region": "Thompson-Okanagan", + "victoriaFile": "26250-20/12536", + "regionalFile": "N/A", + "parcelIDs": [ + 4248714, + 5677158, + 2900502, + 9232544, + 1628173 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2017-04-22", + "completed": "2017-06-22", + "initiated": "2018-12-22", + "ministryContact": "STEUBER KRISTINA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "createdAt": "2019-07-15", + "completed": "2021-10-09", + "initiated": "2018-06-08", + "ministryContact": "HAHN PAT", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + } + ], + "participants": [ + { + "name": "AMET, DOLOR SIT", + "endDate": "2020-07-05", + "startDate": "2018-07-04", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2015-01-14", + "startDate": "2017-08-09", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2023-05-22", + "startDate": "2020-04-28", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2018-08-23", + "startDate": "2023-08-07", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + } + ], + "associatedSites": [ + { + "dateNoted": "2016-08-23", + "notes": "", + "parcelID": "19942", + "siteID": "15653", + "siteRegistry": false + } + ] + }, + { + "uuid": "0625fcef-6a8d-46be-b501-45a26944b9e5", + "siteID": 20915, + "address": "889 Dorian Bypass", + "latitude": 51.6866, + "longitude": -124.9995, + "lastUpdated": "2022-08-22", + "city": "Bennyworth", + "region": "Vancouver Island/Coast", + "victoriaFile": "26250-20/17375", + "regionalFile": "N/A", + "parcelIDs": [ + 2994822, + 8442776, + 9167159, + 752742, + 2994439 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2020-06-28", + "completed": "2014-03-27", + "initiated": "2020-05-23", + "ministryContact": "POLLICH ORAN", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "createdAt": "2016-12-27", + "completed": "2021-04-14", + "initiated": "2022-08-11", + "ministryContact": "CARROLL CLINTON", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "createdAt": "2021-07-30", + "completed": "2022-04-04", + "initiated": "2016-03-02", + "ministryContact": "BINS MYRTLE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "createdAt": "2023-08-06", + "completed": "2016-01-14", + "initiated": "2013-12-25", + "ministryContact": "ANKUNDING LAURETTA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + } + ], + "participants": [ + { + "name": "AMET, DOLOR SIT", + "endDate": "2019-10-29", + "startDate": "2019-01-16", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "name": "IPSUM", + "endDate": "2018-05-16", + "startDate": "2018-08-27", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + } + ], + "associatedSites": [ + { + "dateNoted": "2018-07-18", + "notes": "", + "parcelID": "16393", + "siteID": "17866", + "siteRegistry": true + }, + { + "dateNoted": "2014-02-22", + "notes": "", + "parcelID": "17614", + "siteID": "17036", + "siteRegistry": true + } + ] + }, + { + "uuid": "2b8c4645-4a30-4e2b-b8f1-247f37506884", + "siteID": 15653, + "address": "97510 Madie Manors", + "latitude": 52.271, + "longitude": -118.4052, + "lastUpdated": "2015-08-23", + "city": "Marjolaineshire", + "region": "Thompson-Okanagan", + "victoriaFile": "26250-20/3722", + "regionalFile": "N/A", + "parcelIDs": [ + 361033, + 9930414, + 5665835, + 5653293, + 7598662 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2018-11-25", + "completed": "2017-12-21", + "initiated": "2022-06-05", + "ministryContact": "KUHLMAN DARION", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "createdAt": "2018-06-05", + "completed": "2018-03-27", + "initiated": "2020-02-05", + "ministryContact": "HALVORSON CELIA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "createdAt": "2015-02-17", + "completed": "2020-01-02", + "initiated": "2020-11-01", + "ministryContact": "LEDNER-LARSON CORALIE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "createdAt": "2015-11-18", + "completed": "2015-04-21", + "initiated": "2019-06-28", + "ministryContact": "STARK ITZEL", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + } + ], + "participants": [ + { + "name": "AMET, DOLOR SIT", + "endDate": "2017-10-01", + "startDate": "2017-03-15", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "IPSUM", + "endDate": "2019-04-05", + "startDate": "2020-05-03", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + } + ], + "associatedSites": [ + { + "dateNoted": "2014-12-21", + "notes": "", + "parcelID": "16915", + "siteID": "16559", + "siteRegistry": true + }, + { + "dateNoted": "2019-09-07", + "notes": "", + "parcelID": "20303", + "siteID": "18150", + "siteRegistry": false + }, + { + "dateNoted": "2021-03-14", + "notes": "", + "parcelID": "17372", + "siteID": "17164", + "siteRegistry": false + } + ] + }, + { + "uuid": "48749c5b-a33a-4ada-8ea8-af850f66c5da", + "siteID": 18775, + "address": "8336 Bria Trail", + "latitude": 48.3294, + "longitude": -126.3835, + "lastUpdated": "2021-09-03", + "city": "Port Brionnafort", + "region": "Cariboo", + "victoriaFile": "26250-20/16791", + "regionalFile": "N/A", + "parcelIDs": [ + 1678888, + 326614, + 9310108, + 185415, + 8561171 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2017-11-29", + "completed": "2020-05-02", + "initiated": "2021-09-26", + "ministryContact": "SCHOWALTER LUCILE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "createdAt": "2018-09-28", + "completed": "2017-01-02", + "initiated": "2022-05-25", + "ministryContact": "FADEL RHEA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "createdAt": "2013-11-24", + "completed": "2017-01-24", + "initiated": "2015-11-28", + "ministryContact": "MITCHELL JERALD", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + } + ], + "participants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2018-12-16", + "startDate": "2019-10-16", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2017-10-12", + "startDate": "2018-02-17", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + } + ], + "associatedSites": [ + { + "dateNoted": "2016-06-28", + "notes": "", + "parcelID": "20140", + "siteID": "16916", + "siteRegistry": false + } + ] + }, + { + "uuid": "dc28eee2-0062-4593-932b-8c9f17ea0d43", + "siteID": 16916, + "address": "216 Marvin Path", + "latitude": 58.0954, + "longitude": -120.0524, + "lastUpdated": "2017-11-04", + "city": "East Trevor", + "region": "Mainland/Southwest", + "victoriaFile": "26250-20/2652", + "regionalFile": "N/A", + "parcelIDs": [ + 6135952, + 1663604, + 7415786, + 6300047, + 1299076 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2015-10-12", + "completed": "2016-04-03", + "initiated": "2016-04-26", + "ministryContact": "MONAHAN MARLON", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "createdAt": "2022-02-08", + "completed": "2023-07-05", + "initiated": "2014-09-12", + "ministryContact": "KONOPELSKI LEORA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "createdAt": "2022-08-11", + "completed": "2018-07-19", + "initiated": "2015-04-18", + "ministryContact": "O'CONNELL DELIA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "createdAt": "2016-06-16", + "completed": "2021-04-27", + "initiated": "2023-04-23", + "ministryContact": "WYMAN MARYSE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "createdAt": "2018-03-17", + "completed": "2020-11-08", + "initiated": "2023-06-01", + "ministryContact": "HAAG CREOLA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + } + ], + "participants": [ + { + "name": "AMET, DOLOR SIT", + "endDate": "2016-12-09", + "startDate": "2017-07-10", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "name": "AMET, DOLOR SIT", + "endDate": "2020-02-23", + "startDate": "2018-02-17", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + } + ], + "associatedSites": [ + { + "dateNoted": "2015-09-24", + "notes": "", + "parcelID": "16905", + "siteID": "19095", + "siteRegistry": false + }, + { + "dateNoted": "2023-05-12", + "notes": "", + "parcelID": "19868", + "siteID": "19380", + "siteRegistry": false + }, + { + "dateNoted": "2019-03-15", + "notes": "", + "parcelID": "19252", + "siteID": "15855", + "siteRegistry": false + } + ] + }, + { + "uuid": "9b7ab543-ea33-4243-af21-ecd579ade886", + "siteID": 19837, + "address": "49911 Alan Spur", + "latitude": 57.9517, + "longitude": -137.2213, + "lastUpdated": "2020-05-29", + "city": "Luisworth", + "region": "Thompson-Okanagan", + "victoriaFile": "26250-20/11791", + "regionalFile": "N/A", + "parcelIDs": [ + 3011269, + 5862877, + 9004257, + 200377, + 5356615 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2020-05-29", + "completed": "2014-02-15", + "initiated": "2018-05-05", + "ministryContact": "ANDERSON JANICK", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "createdAt": "2018-10-25", + "completed": "2014-09-01", + "initiated": "2018-02-09", + "ministryContact": "GUTMANN LULU", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + } + ], + "participants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2021-09-04", + "startDate": "2015-01-10", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "name": "AMET, DOLOR SIT", + "endDate": "2019-07-17", + "startDate": "2016-06-10", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2014-09-15", + "startDate": "2020-11-11", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "name": "AMET, DOLOR SIT", + "endDate": "2021-04-04", + "startDate": "2016-11-28", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + } + ], + "associatedSites": [ + { + "dateNoted": "2015-03-28", + "notes": "", + "parcelID": "18192", + "siteID": "15919", + "siteRegistry": false + } + ] + }, + { + "uuid": "48a6c44c-452e-4051-b700-66fb917d508e", + "siteID": 16401, + "address": "515 Effie Mills", + "latitude": 54.2195, + "longitude": -124.6451, + "lastUpdated": "2021-07-05", + "city": "West Audrey", + "region": "Vancouver Island/Coast", + "victoriaFile": "26250-20/4696", + "regionalFile": "N/A", + "parcelIDs": [ + 3912761, + 1560672, + 9901654, + 5873177, + 938604 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2014-04-25", + "completed": "2017-08-19", + "initiated": "2015-02-10", + "ministryContact": "FEIL CHRISTOPHE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "createdAt": "2018-04-30", + "completed": "2023-01-18", + "initiated": "2013-10-13", + "ministryContact": "KEEBLER CHARLENE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "createdAt": "2021-06-01", + "completed": "2015-04-12", + "initiated": "2019-08-03", + "ministryContact": "GOYETTE TYLER", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "createdAt": "2020-12-02", + "completed": "2013-12-07", + "initiated": "2021-02-12", + "ministryContact": "KOSS JAEDEN", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + } + ], + "participants": [ + { + "name": "AMET, DOLOR SIT", + "endDate": "2021-10-26", + "startDate": "2021-07-11", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2019-10-15", + "startDate": "2020-07-13", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + } + ], + "associatedSites": [ + { + "dateNoted": "2020-07-08", + "notes": "", + "parcelID": "18913", + "siteID": "19233", + "siteRegistry": true + } + ] + }, + { + "uuid": "60bf1473-3582-401b-9e52-612c19b3fcd2", + "siteID": 19048, + "address": "93210 Lulu Fords", + "latitude": 49.2413, + "longitude": -135.5592, + "lastUpdated": "2014-02-26", + "city": "South Rashawnbury", + "region": "Mainland/Southwest", + "victoriaFile": "26250-20/13159", + "regionalFile": "N/A", + "parcelIDs": [ + 6755411, + 6020133, + 3316775, + 4657224, + 3213815 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2018-07-21", + "completed": "2014-05-05", + "initiated": "2017-06-06", + "ministryContact": "GREEN HERMAN", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "createdAt": "2013-12-29", + "completed": "2016-03-05", + "initiated": "2014-01-26", + "ministryContact": "RUNTE PRECIOUS", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "createdAt": "2016-01-22", + "completed": "2017-10-14", + "initiated": "2018-12-26", + "ministryContact": "THIEL CAROLINA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "createdAt": "2019-05-23", + "completed": "2023-02-09", + "initiated": "2019-10-07", + "ministryContact": "KUB ALAINA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "createdAt": "2013-12-05", + "completed": "2015-02-09", + "initiated": "2019-09-05", + "ministryContact": "LEHNER DERON", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + } + ], + "participants": [ + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2018-02-15", + "startDate": "2014-10-10", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "name": "AMET, DOLOR SIT", + "endDate": "2014-05-30", + "startDate": "2019-11-08", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "name": "IPSUM", + "endDate": "2020-03-01", + "startDate": "2015-11-23", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2014-09-22", + "startDate": "2016-05-17", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + } + ], + "associatedSites": [ + { + "dateNoted": "2014-11-30", + "notes": "", + "parcelID": "15804", + "siteID": "16725", + "siteRegistry": true + }, + { + "dateNoted": "2016-11-14", + "notes": "", + "parcelID": "20981", + "siteID": "18269", + "siteRegistry": false + }, + { + "dateNoted": "2021-01-31", + "notes": "", + "parcelID": "15873", + "siteID": "19903", + "siteRegistry": false + } + ] + }, + { + "uuid": "df2a5bb4-5d4e-4199-a759-2a8c476e2b13", + "siteID": 19603, + "address": "283 Ratke Center", + "latitude": 51.9933, + "longitude": -118.3944, + "lastUpdated": "2019-04-10", + "city": "Lake Merlin", + "region": "Kootenay", + "victoriaFile": "26250-20/19075", + "regionalFile": "N/A", + "parcelIDs": [ + 4596388, + 2194454, + 7457153, + 628106, + 1396639 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2019-10-02", + "completed": "2022-12-17", + "initiated": "2020-01-18", + "ministryContact": "ZBONCAK EZRA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "createdAt": "2019-09-28", + "completed": "2023-04-22", + "initiated": "2015-12-11", + "ministryContact": "KRIS ADDISON", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "createdAt": "2017-06-26", + "completed": "2018-05-28", + "initiated": "2013-12-17", + "ministryContact": "CUMMINGS KHALIL", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + } + ], + "participants": [ + { + "name": "AMET, DOLOR SIT", + "endDate": "2021-11-11", + "startDate": "2015-10-16", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "name": "IPSUM", + "endDate": "2015-03-26", + "startDate": "2022-04-03", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "name": "IPSUM", + "endDate": "2016-08-02", + "startDate": "2015-05-25", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + } + ], + "associatedSites": [ + { + "dateNoted": "2014-07-27", + "notes": "", + "parcelID": "16888", + "siteID": "17260", + "siteRegistry": false + }, + { + "dateNoted": "2016-07-12", + "notes": "", + "parcelID": "15320", + "siteID": "19905", + "siteRegistry": true + } + ] + }, + { + "uuid": "119fd2d8-6c93-4931-8afd-7ebe5658f577", + "siteID": 15855, + "address": "14099 Krajcik Branch", + "latitude": 51.0964, + "longitude": -118.1081, + "lastUpdated": "2022-02-24", + "city": "Rolfsonport", + "region": "Cariboo", + "victoriaFile": "26250-20/6630", + "regionalFile": "N/A", + "parcelIDs": [ + 6547275, + 3210587, + 1846434, + 368063, + 9226261 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2016-02-12", + "completed": "2023-01-25", + "initiated": "2022-09-24", + "ministryContact": "HAHN ULICES", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "createdAt": "2015-01-11", + "completed": "2013-12-05", + "initiated": "2019-03-14", + "ministryContact": "SWANIAWSKI VIRGIE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "createdAt": "2017-12-01", + "completed": "2021-11-06", + "initiated": "2014-02-13", + "ministryContact": "WALKER MARILIE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "createdAt": "2023-06-20", + "completed": "2019-02-19", + "initiated": "2013-11-02", + "ministryContact": "KASSULKE MARJORY", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + } + ], + "participants": [ + { + "name": "IPSUM", + "endDate": "2020-12-24", + "startDate": "2015-02-04", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "IPSUM", + "endDate": "2017-07-31", + "startDate": "2021-11-28", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2018-08-10", + "startDate": "2021-12-01", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "name": "IPSUM", + "endDate": "2015-01-14", + "startDate": "2019-02-04", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2021-05-11", + "startDate": "2020-11-06", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + } + ], + "associatedSites": [ + { + "dateNoted": "2022-10-13", + "notes": "", + "parcelID": "19345", + "siteID": "17318", + "siteRegistry": true + } + ] + }, + { + "uuid": "1442e3a9-6f37-4b3f-9848-c63ba822c9c5", + "siteID": 20157, + "address": "62372 Dietrich Land", + "latitude": 56.985, + "longitude": -120.9708, + "lastUpdated": "2020-01-02", + "city": "Graceville", + "region": "Thompson-Okanagan", + "victoriaFile": "26250-20/13183", + "regionalFile": "N/A", + "parcelIDs": [ + 5554201, + 3060161, + 4644273, + 8290275, + 4178281 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2015-12-19", + "completed": "2016-06-20", + "initiated": "2020-07-09", + "ministryContact": "HEIDENREICH PINK", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "createdAt": "2015-11-15", + "completed": "2014-08-05", + "initiated": "2015-09-17", + "ministryContact": "YUNDT CLOVIS", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "createdAt": "2015-08-16", + "completed": "2018-11-18", + "initiated": "2021-11-20", + "ministryContact": "O'REILLY BENNIE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "createdAt": "2015-01-15", + "completed": "2017-08-15", + "initiated": "2016-02-29", + "ministryContact": "HILLL-BROWN ROSELYN", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + } + ], + "participants": [ + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2017-07-18", + "startDate": "2021-04-28", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2016-02-27", + "startDate": "2018-06-30", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "name": "IPSUM", + "endDate": "2019-06-14", + "startDate": "2013-12-31", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "name": "AMET, DOLOR SIT", + "endDate": "2014-06-26", + "startDate": "2020-11-22", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2014-07-17", + "startDate": "2020-10-17", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + } + ], + "associatedSites": [ + { + "dateNoted": "2020-11-11", + "notes": "", + "parcelID": "16373", + "siteID": "17463", + "siteRegistry": false + }, + { + "dateNoted": "2021-12-31", + "notes": "", + "parcelID": "15485", + "siteID": "16312", + "siteRegistry": true + } + ] + }, + { + "uuid": "ed8ea8b0-72eb-4251-8e06-0b4fdb8b6032", + "siteID": 17036, + "address": "38405 Quentin Well", + "latitude": 50.9532, + "longitude": -119.6966, + "lastUpdated": "2015-03-09", + "city": "Cathystad", + "region": "Thompson-Okanagan", + "victoriaFile": "26250-20/12328", + "regionalFile": "N/A", + "parcelIDs": [ + 9812446, + 6394612, + 9322373, + 1523134, + 3300180 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2021-07-07", + "completed": "2019-12-30", + "initiated": "2014-05-26", + "ministryContact": "GIBSON-HERMANN LORINE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "createdAt": "2014-01-30", + "completed": "2022-04-06", + "initiated": "2020-06-17", + "ministryContact": "TILLMAN KOBY", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "createdAt": "2016-07-04", + "completed": "2015-01-15", + "initiated": "2021-12-28", + "ministryContact": "LANGWORTH GARRISON", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "createdAt": "2016-10-31", + "completed": "2022-05-29", + "initiated": "2019-08-22", + "ministryContact": "FEENEY LOUIE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + } + ], + "participants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2017-03-17", + "startDate": "2019-07-29", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "name": "AMET, DOLOR SIT", + "endDate": "2016-09-05", + "startDate": "2018-05-23", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2019-11-27", + "startDate": "2023-05-21", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "name": "IPSUM", + "endDate": "2021-01-15", + "startDate": "2021-05-22", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + } + ], + "associatedSites": [ + { + "dateNoted": "2019-10-24", + "notes": "", + "parcelID": "20155", + "siteID": "18676", + "siteRegistry": true + } + ] + }, + { + "uuid": "d2bf3f10-7320-4f77-9689-dff3458ebbe5", + "siteID": 15666, + "address": "283 Schroeder Corner", + "latitude": 49.4145, + "longitude": -136.984, + "lastUpdated": "2020-03-17", + "city": "Anabelville", + "region": "Thompson-Okanagan", + "victoriaFile": "26250-20/5807", + "regionalFile": "N/A", + "parcelIDs": [ + 9802893, + 5864416, + 5796444, + 933379, + 7400870 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2021-04-07", + "completed": "2022-04-16", + "initiated": "2016-02-09", + "ministryContact": "KOHLER TONEY", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "createdAt": "2020-10-18", + "completed": "2015-05-18", + "initiated": "2020-10-23", + "ministryContact": "STEUBER TOMMIE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "createdAt": "2017-02-18", + "completed": "2016-03-07", + "initiated": "2014-10-04", + "ministryContact": "SPORER CULLEN", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "createdAt": "2013-12-22", + "completed": "2023-07-12", + "initiated": "2014-10-24", + "ministryContact": "DIBBERT-HETTINGER TRISTIAN", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "createdAt": "2023-06-20", + "completed": "2018-10-31", + "initiated": "2015-11-07", + "ministryContact": "HAGENES KILEY", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + } + ], + "participants": [ + { + "name": "AMET, DOLOR SIT", + "endDate": "2015-01-14", + "startDate": "2023-01-27", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "IPSUM", + "endDate": "2021-10-20", + "startDate": "2016-10-17", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "IPSUM", + "endDate": "2023-06-24", + "startDate": "2020-07-17", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2020-11-07", + "startDate": "2021-05-15", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + } + ], + "associatedSites": [ + { + "dateNoted": "2017-06-06", + "notes": "", + "parcelID": "19573", + "siteID": "20441", + "siteRegistry": false + }, + { + "dateNoted": "2023-02-04", + "notes": "", + "parcelID": "16427", + "siteID": "17561", + "siteRegistry": true + } + ] + }, + { + "uuid": "ef0cb58f-401f-4355-89be-265540d12c83", + "siteID": 16193, + "address": "24405 Madisyn Station", + "latitude": 52.2268, + "longitude": -127.0488, + "lastUpdated": "2014-07-14", + "city": "Westboro", + "region": "Mainland/Southwest", + "victoriaFile": "26250-20/15106", + "regionalFile": "N/A", + "parcelIDs": [ + 1562423, + 5199538, + 7605192, + 6704720, + 249520 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2014-02-05", + "completed": "2017-03-14", + "initiated": "2018-05-01", + "ministryContact": "HERMAN DEJUAN", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "createdAt": "2021-09-11", + "completed": "2020-12-16", + "initiated": "2023-02-25", + "ministryContact": "TRANTOW ARTURO", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + } + ], + "participants": [ + { + "name": "AMET, DOLOR SIT", + "endDate": "2020-07-28", + "startDate": "2021-12-04", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2021-09-25", + "startDate": "2022-07-29", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2015-11-05", + "startDate": "2018-12-20", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2020-08-16", + "startDate": "2019-05-16", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "name": "IPSUM", + "endDate": "2014-10-20", + "startDate": "2022-09-18", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + } + ], + "associatedSites": [ + { + "dateNoted": "2015-03-23", + "notes": "", + "parcelID": "15206", + "siteID": "15361", + "siteRegistry": true + } + ] + }, + { + "uuid": "680432a1-a785-4485-828a-78bfbfdaee35", + "siteID": 19571, + "address": "7133 MacGyver Harbors", + "latitude": 49.5201, + "longitude": -134.8348, + "lastUpdated": "2018-03-01", + "city": "Paolochester", + "region": "Mainland/Southwest", + "victoriaFile": "26250-20/9298", + "regionalFile": "N/A", + "parcelIDs": [ + 1566684, + 1234706, + 8123002, + 3668685, + 8734963 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2021-09-08", + "completed": "2019-07-16", + "initiated": "2014-02-15", + "ministryContact": "MEDHURST TREMAINE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "createdAt": "2014-01-21", + "completed": "2014-08-28", + "initiated": "2016-04-03", + "ministryContact": "MCGLYNN FINN", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "createdAt": "2013-10-08", + "completed": "2021-11-15", + "initiated": "2016-03-13", + "ministryContact": "O'KEEFE FLORIAN", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "createdAt": "2020-11-06", + "completed": "2016-03-23", + "initiated": "2015-11-13", + "ministryContact": "AUER HAROLD", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + } + ], + "participants": [ + { + "name": "IPSUM", + "endDate": "2022-08-22", + "startDate": "2022-03-03", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2020-04-09", + "startDate": "2021-01-17", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2014-09-22", + "startDate": "2016-04-14", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2018-07-05", + "startDate": "2017-08-01", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "name": "IPSUM", + "endDate": "2021-11-21", + "startDate": "2015-08-19", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + } + ], + "associatedSites": [ + { + "dateNoted": "2015-03-02", + "notes": "", + "parcelID": "19727", + "siteID": "15609", + "siteRegistry": true + } + ] + }, + { + "uuid": "b844a72f-2e51-416f-98b7-e7eec8b68af5", + "siteID": 17318, + "address": "2904 Schinner Junctions", + "latitude": 54.8266, + "longitude": -123.8415, + "lastUpdated": "2013-10-26", + "city": "Fort Huldaview", + "region": "Thompson-Okanagan", + "victoriaFile": "26250-20/11058", + "regionalFile": "N/A", + "parcelIDs": [ + 6854659, + 7599399, + 2699464, + 1384116, + 6710417 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2018-02-26", + "completed": "2014-05-12", + "initiated": "2017-02-25", + "ministryContact": "RITCHIE RICHARD", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "createdAt": "2023-08-10", + "completed": "2015-01-19", + "initiated": "2023-07-31", + "ministryContact": "GERLACH BRIDGET", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "createdAt": "2022-11-21", + "completed": "2020-12-02", + "initiated": "2020-01-13", + "ministryContact": "HARRIS WILLA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "createdAt": "2022-07-23", + "completed": "2016-02-14", + "initiated": "2022-03-08", + "ministryContact": "GREENFELDER YESENIA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + } + ], + "participants": [ + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2019-01-11", + "startDate": "2015-11-01", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "IPSUM", + "endDate": "2021-05-05", + "startDate": "2018-07-19", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2021-06-09", + "startDate": "2023-07-02", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2022-07-25", + "startDate": "2023-01-11", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2018-08-12", + "startDate": "2015-07-31", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + } + ], + "associatedSites": [ + { + "dateNoted": "2018-12-05", + "notes": "", + "parcelID": "17990", + "siteID": "17200", + "siteRegistry": false + } + ] + }, + { + "uuid": "2ffb9519-c5c2-48de-bc0b-ec7410fb9ca8", + "siteID": 17514, + "address": "10967 Judson Greens", + "latitude": 52.5965, + "longitude": -118.5719, + "lastUpdated": "2018-08-07", + "city": "New Krishaven", + "region": "Thompson-Okanagan", + "victoriaFile": "26250-20/17404", + "regionalFile": "N/A", + "parcelIDs": [ + 9049687, + 9235026, + 5912185, + 7468457, + 7228883 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2014-08-10", + "completed": "2016-06-17", + "initiated": "2018-10-29", + "ministryContact": "DIBBERT KAITLIN", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "createdAt": "2023-04-11", + "completed": "2020-06-11", + "initiated": "2015-10-05", + "ministryContact": "LESCH TONY", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "createdAt": "2014-07-14", + "completed": "2020-05-31", + "initiated": "2018-07-24", + "ministryContact": "FRITSCH JEREMY", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "createdAt": "2014-10-31", + "completed": "2016-07-29", + "initiated": "2019-05-16", + "ministryContact": "FAY FREDA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + } + ], + "participants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2018-03-02", + "startDate": "2016-06-29", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2022-09-29", + "startDate": "2017-02-26", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2016-09-27", + "startDate": "2018-05-02", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2022-01-04", + "startDate": "2018-06-29", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "IPSUM", + "endDate": "2014-11-24", + "startDate": "2018-09-27", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + } + ], + "associatedSites": [ + { + "dateNoted": "2016-09-18", + "notes": "", + "parcelID": "19130", + "siteID": "17151", + "siteRegistry": true + }, + { + "dateNoted": "2022-05-25", + "notes": "", + "parcelID": "18250", + "siteID": "17412", + "siteRegistry": true + }, + { + "dateNoted": "2018-07-10", + "notes": "", + "parcelID": "18896", + "siteID": "17203", + "siteRegistry": true + } + ] + }, + { + "uuid": "079895c4-7609-45eb-8091-62e68862fcf6", + "siteID": 15273, + "address": "472 Everette Underpass", + "latitude": 52.5996, + "longitude": -136.9152, + "lastUpdated": "2014-09-26", + "city": "Fort Alexandra", + "region": " North Coast", + "victoriaFile": "26250-20/2462", + "regionalFile": "N/A", + "parcelIDs": [ + 3617856, + 1243441, + 2067940, + 5965593, + 8039320 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2015-04-10", + "completed": "2021-07-25", + "initiated": "2022-04-23", + "ministryContact": "MCCULLOUGH KOBE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "createdAt": "2017-06-28", + "completed": "2018-06-12", + "initiated": "2013-10-08", + "ministryContact": "SANFORD CIERRA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "createdAt": "2023-08-25", + "completed": "2019-06-14", + "initiated": "2015-12-25", + "ministryContact": "BOGISICH TRUDIE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "createdAt": "2019-09-03", + "completed": "2016-01-18", + "initiated": "2017-06-06", + "ministryContact": "BECHTELAR AUBREE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + } + ], + "participants": [ + { + "name": "AMET, DOLOR SIT", + "endDate": "2015-01-12", + "startDate": "2023-03-27", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2019-09-18", + "startDate": "2022-12-31", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + } + ], + "associatedSites": [ + { + "dateNoted": "2023-05-23", + "notes": "", + "parcelID": "19200", + "siteID": "15229", + "siteRegistry": false + } + ] + }, + { + "uuid": "6e77f72b-faf7-4375-b941-d2f8b7fcc10a", + "siteID": 18676, + "address": "97613 Robel Keys", + "latitude": 58.288, + "longitude": -134.6418, + "lastUpdated": "2016-12-16", + "city": "Schustertown", + "region": "Kootenay", + "victoriaFile": "26250-20/1952", + "regionalFile": "N/A", + "parcelIDs": [ + 9356782, + 8836028, + 3733132, + 3021045, + 9013440 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2020-02-01", + "completed": "2014-09-29", + "initiated": "2017-03-30", + "ministryContact": "KOEPP DEJAH", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "createdAt": "2020-06-12", + "completed": "2018-02-13", + "initiated": "2022-08-04", + "ministryContact": "GUTMANN TRISHA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "createdAt": "2019-01-03", + "completed": "2015-02-10", + "initiated": "2023-09-16", + "ministryContact": "BATZ SHANNON", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "createdAt": "2020-12-14", + "completed": "2020-05-02", + "initiated": "2014-04-05", + "ministryContact": "SCHAMBERGER ALEXZANDER", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + } + ], + "participants": [ + { + "name": "IPSUM", + "endDate": "2013-12-24", + "startDate": "2017-01-25", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2023-02-24", + "startDate": "2016-01-02", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2013-10-07", + "startDate": "2014-10-10", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2017-10-22", + "startDate": "2020-03-10", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + } + ], + "associatedSites": [ + { + "dateNoted": "2021-11-22", + "notes": "", + "parcelID": "20890", + "siteID": "16487", + "siteRegistry": true + } + ] + }, + { + "uuid": "ec896d1f-1a70-45d3-a606-bffac9b418d3", + "siteID": 15689, + "address": "6417 Sporer Garden", + "latitude": 48.7699, + "longitude": -129.3498, + "lastUpdated": "2015-01-18", + "city": "West Marques", + "region": " North Coast", + "victoriaFile": "26250-20/12591", + "regionalFile": "N/A", + "parcelIDs": [ + 583589, + 1380808, + 3215830, + 6999927, + 1215192 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2023-07-19", + "completed": "2015-12-18", + "initiated": "2019-12-29", + "ministryContact": "HAMMES JAYLIN", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "createdAt": "2017-09-17", + "completed": "2020-03-23", + "initiated": "2014-05-12", + "ministryContact": "RUTHERFORD CLARISSA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + } + ], + "participants": [ + { + "name": "AMET, DOLOR SIT", + "endDate": "2022-01-26", + "startDate": "2023-01-13", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2015-05-19", + "startDate": "2022-10-15", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "name": "IPSUM", + "endDate": "2022-04-15", + "startDate": "2015-07-11", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "name": "IPSUM", + "endDate": "2022-03-26", + "startDate": "2018-12-16", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2015-07-31", + "startDate": "2021-07-12", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + } + ], + "associatedSites": [ + { + "dateNoted": "2017-01-30", + "notes": "", + "parcelID": "17574", + "siteID": "16814", + "siteRegistry": true + }, + { + "dateNoted": "2018-09-08", + "notes": "", + "parcelID": "17036", + "siteID": "18368", + "siteRegistry": false + } + ] + }, + { + "uuid": "89ad36e4-ffd7-4da3-9e60-c80397028b07", + "siteID": 16517, + "address": "70015 Alexis Corner", + "latitude": 50.8396, + "longitude": -127.7127, + "lastUpdated": "2014-04-19", + "city": "Fort Susiemouth", + "region": "Vancouver Island/Coast", + "victoriaFile": "26250-20/17048", + "regionalFile": "N/A", + "parcelIDs": [ + 2684992, + 1133563, + 8746492, + 8521531, + 166890 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2022-09-18", + "completed": "2017-02-02", + "initiated": "2022-02-16", + "ministryContact": "WIZA CARMINE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "createdAt": "2017-08-21", + "completed": "2018-01-02", + "initiated": "2016-07-19", + "ministryContact": "MANTE KAILEE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "createdAt": "2021-03-24", + "completed": "2015-03-24", + "initiated": "2021-07-11", + "ministryContact": "STOKES CHARLOTTE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + } + ], + "participants": [ + { + "name": "IPSUM", + "endDate": "2021-03-21", + "startDate": "2016-08-03", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2021-03-31", + "startDate": "2014-10-15", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + } + ], + "associatedSites": [ + { + "dateNoted": "2019-08-18", + "notes": "", + "parcelID": "20285", + "siteID": "17318", + "siteRegistry": false + }, + { + "dateNoted": "2020-10-17", + "notes": "", + "parcelID": "17820", + "siteID": "20223", + "siteRegistry": true + } + ] + }, + { + "uuid": "7c9ce76a-b955-4351-a450-80360ede944a", + "siteID": 18368, + "address": "22125 Hermann Extensions", + "latitude": 56.5485, + "longitude": -123.6431, + "lastUpdated": "2014-05-03", + "city": "Elvabury", + "region": "Cariboo", + "victoriaFile": "26250-20/8656", + "regionalFile": "N/A", + "parcelIDs": [ + 6461564, + 5313137, + 7394251, + 8736096, + 3210699 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2020-01-21", + "completed": "2018-01-24", + "initiated": "2022-01-11", + "ministryContact": "GERLACH NICOLAS", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "createdAt": "2020-11-23", + "completed": "2017-10-03", + "initiated": "2017-02-25", + "ministryContact": "KIRLIN MITTIE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "createdAt": "2014-07-27", + "completed": "2013-10-27", + "initiated": "2018-04-08", + "ministryContact": "FARRELL KELVIN", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + } + ], + "participants": [ + { + "name": "IPSUM", + "endDate": "2021-07-28", + "startDate": "2021-01-18", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2021-07-29", + "startDate": "2019-08-02", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + } + ], + "associatedSites": [ + { + "dateNoted": "2019-04-26", + "notes": "", + "parcelID": "16687", + "siteID": "20773", + "siteRegistry": true + }, + { + "dateNoted": "2022-11-19", + "notes": "", + "parcelID": "16216", + "siteID": "16193", + "siteRegistry": true + }, + { + "dateNoted": "2019-11-12", + "notes": "", + "parcelID": "16051", + "siteID": "17057", + "siteRegistry": false + } + ] + }, + { + "uuid": "5561c309-964a-4f19-a6d6-156292a77462", + "siteID": 15212, + "address": "9072 Stehr Garden", + "latitude": 57.1388, + "longitude": -118.8763, + "lastUpdated": "2022-05-04", + "city": "Schinnerside", + "region": "Thompson-Okanagan", + "victoriaFile": "26250-20/5307", + "regionalFile": "N/A", + "parcelIDs": [ + 3995145, + 773888, + 2815600, + 759291, + 4661385 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2016-08-10", + "completed": "2021-06-29", + "initiated": "2021-11-20", + "ministryContact": "KLING-CUMMINGS GRIFFIN", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "createdAt": "2016-06-03", + "completed": "2015-08-27", + "initiated": "2019-02-18", + "ministryContact": "TREMBLAY TIMMOTHY", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + } + ], + "participants": [ + { + "name": "AMET, DOLOR SIT", + "endDate": "2022-10-05", + "startDate": "2022-09-16", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2014-02-05", + "startDate": "2018-01-08", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + } + ], + "associatedSites": [ + { + "dateNoted": "2020-05-21", + "notes": "", + "parcelID": "15512", + "siteID": "20641", + "siteRegistry": true + } + ] + }, + { + "uuid": "ded16510-480f-4ba4-af55-a830380c8e43", + "siteID": 20826, + "address": "929 Eveline Estates", + "latitude": 55.1169, + "longitude": -129.3873, + "lastUpdated": "2015-04-20", + "city": "West Nicoview", + "region": "Vancouver Island/Coast", + "victoriaFile": "26250-20/8339", + "regionalFile": "N/A", + "parcelIDs": [ + 7295635, + 9148175, + 905764, + 8102517, + 7015907 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2015-03-30", + "completed": "2018-05-29", + "initiated": "2016-06-13", + "ministryContact": "MULLER VADA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "createdAt": "2020-08-12", + "completed": "2021-08-04", + "initiated": "2014-02-23", + "ministryContact": "DIETRICH MAC", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "createdAt": "2015-01-10", + "completed": "2019-05-03", + "initiated": "2014-10-17", + "ministryContact": "TILLMAN JAMMIE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + } + ], + "participants": [ + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2023-07-03", + "startDate": "2023-03-03", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "AMET, DOLOR SIT", + "endDate": "2017-09-18", + "startDate": "2017-09-19", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "name": "IPSUM", + "endDate": "2018-02-12", + "startDate": "2022-03-20", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "IPSUM", + "endDate": "2017-03-31", + "startDate": "2018-01-10", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "name": "AMET, DOLOR SIT", + "endDate": "2021-08-30", + "startDate": "2019-01-25", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + } + ], + "associatedSites": [ + { + "dateNoted": "2018-10-26", + "notes": "", + "parcelID": "17439", + "siteID": "17463", + "siteRegistry": true + } + ] + }, + { + "uuid": "1fc5e2e1-a656-42df-9bb3-8f82ce91bc18", + "siteID": 20555, + "address": "6761 Towne Burgs", + "latitude": 49.2504, + "longitude": -135.7515, + "lastUpdated": "2018-04-18", + "city": "Jenkinsview", + "region": "Cariboo", + "victoriaFile": "26250-20/9603", + "regionalFile": "N/A", + "parcelIDs": [ + 1324279, + 5940273, + 8314692, + 8056149, + 2138029 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2015-12-09", + "completed": "2022-08-31", + "initiated": "2023-07-13", + "ministryContact": "MORISSETTE OFELIA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "createdAt": "2018-12-17", + "completed": "2018-04-27", + "initiated": "2014-09-03", + "ministryContact": "PREDOVIC ALICE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + } + ], + "participants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2020-02-01", + "startDate": "2023-01-06", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2016-05-06", + "startDate": "2022-11-16", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "name": "AMET, DOLOR SIT", + "endDate": "2016-04-26", + "startDate": "2015-10-07", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "name": "IPSUM", + "endDate": "2019-07-15", + "startDate": "2020-01-29", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2020-08-05", + "startDate": "2020-05-31", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + } + ], + "associatedSites": [ + { + "dateNoted": "2015-08-04", + "notes": "", + "parcelID": "16638", + "siteID": "19837", + "siteRegistry": true + } + ] + }, + { + "uuid": "07502cc6-1a98-4e1a-bd90-425e84bc8273", + "siteID": 20211, + "address": "831 Shaylee Ridges", + "latitude": 57.3661, + "longitude": -136.1172, + "lastUpdated": "2020-06-05", + "city": "New Patienceborough", + "region": "Kootenay", + "victoriaFile": "26250-20/17732", + "regionalFile": "N/A", + "parcelIDs": [ + 484432, + 8655186, + 5497449, + 3220531, + 9641381 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2020-09-01", + "completed": "2023-01-16", + "initiated": "2020-02-02", + "ministryContact": "MEDHURST TAD", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "createdAt": "2021-10-25", + "completed": "2020-03-24", + "initiated": "2015-04-17", + "ministryContact": "WATERS DESSIE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + } + ], + "participants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2015-02-25", + "startDate": "2020-05-20", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2022-02-19", + "startDate": "2016-11-21", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + } + ], + "associatedSites": [ + { + "dateNoted": "2020-05-29", + "notes": "", + "parcelID": "16312", + "siteID": "20788", + "siteRegistry": false + }, + { + "dateNoted": "2020-06-06", + "notes": "", + "parcelID": "17502", + "siteID": "19072", + "siteRegistry": false + }, + { + "dateNoted": "2017-11-13", + "notes": "", + "parcelID": "19431", + "siteID": "17304", + "siteRegistry": true + } + ] + }, + { + "uuid": "d2b2214f-c060-44f9-92ef-18c2c9e9bfe6", + "siteID": 15892, + "address": "2784 Balistreri Hills", + "latitude": 56.5237, + "longitude": -137.8421, + "lastUpdated": "2020-10-11", + "city": "Lowell", + "region": "Mainland/Southwest", + "victoriaFile": "26250-20/9025", + "regionalFile": "N/A", + "parcelIDs": [ + 3471546, + 3208072, + 829814, + 935223, + 429459 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2017-07-13", + "completed": "2014-10-16", + "initiated": "2017-05-18", + "ministryContact": "SWANIAWSKI JOHN", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "createdAt": "2014-07-07", + "completed": "2015-05-01", + "initiated": "2022-10-17", + "ministryContact": "SAUER LEANNE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "createdAt": "2014-02-21", + "completed": "2015-08-11", + "initiated": "2016-07-19", + "ministryContact": "KIHN FERNANDO", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + } + ], + "participants": [ + { + "name": "AMET, DOLOR SIT", + "endDate": "2019-03-13", + "startDate": "2016-08-17", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "AMET, DOLOR SIT", + "endDate": "2013-12-04", + "startDate": "2020-06-20", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2017-05-30", + "startDate": "2021-07-22", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "name": "IPSUM", + "endDate": "2016-04-28", + "startDate": "2023-04-11", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + } + ], + "associatedSites": [ + { + "dateNoted": "2016-08-15", + "notes": "", + "parcelID": "18065", + "siteID": "19197", + "siteRegistry": true + }, + { + "dateNoted": "2017-05-07", + "notes": "", + "parcelID": "18629", + "siteID": "20915", + "siteRegistry": false + } + ] + }, + { + "uuid": "2b17d0c8-ffc7-459a-9718-b7d26ca62f4d", + "siteID": 19391, + "address": "71875 Deckow Fort", + "latitude": 49.4737, + "longitude": -123.9388, + "lastUpdated": "2021-05-18", + "city": "Fort Brookfield", + "region": "Vancouver Island/Coast", + "victoriaFile": "26250-20/3698", + "regionalFile": "N/A", + "parcelIDs": [ + 9983523, + 674301, + 817429, + 2003504, + 7974602 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2021-03-26", + "completed": "2015-06-24", + "initiated": "2023-07-24", + "ministryContact": "SCHULTZ DEDRIC", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "createdAt": "2019-11-27", + "completed": "2022-01-08", + "initiated": "2014-09-27", + "ministryContact": "HALVORSON GRANT", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "createdAt": "2016-08-31", + "completed": "2017-05-03", + "initiated": "2019-05-21", + "ministryContact": "HAYES JULES", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "createdAt": "2017-01-25", + "completed": "2014-03-20", + "initiated": "2016-10-20", + "ministryContact": "WINTHEISER LANEY", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "createdAt": "2020-02-16", + "completed": "2021-05-30", + "initiated": "2019-11-21", + "ministryContact": "HERMANN JOESPH", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + } + ], + "participants": [ + { + "name": "AMET, DOLOR SIT", + "endDate": "2015-01-28", + "startDate": "2016-12-03", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2018-10-26", + "startDate": "2019-09-28", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2016-05-04", + "startDate": "2014-07-05", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2019-06-13", + "startDate": "2022-03-23", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2021-09-25", + "startDate": "2020-09-27", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + } + ], + "associatedSites": [ + { + "dateNoted": "2022-06-04", + "notes": "", + "parcelID": "17447", + "siteID": "18969", + "siteRegistry": false + }, + { + "dateNoted": "2021-08-25", + "notes": "", + "parcelID": "19959", + "siteID": "17449", + "siteRegistry": false + }, + { + "dateNoted": "2020-02-22", + "notes": "", + "parcelID": "16608", + "siteID": "19872", + "siteRegistry": false + } + ] + }, + { + "uuid": "f122d440-2fe7-4cbf-ae78-7769d86f1263", + "siteID": 17414, + "address": "7156 Lynch Inlet", + "latitude": 49.8562, + "longitude": -135.9871, + "lastUpdated": "2014-01-03", + "city": "Velvachester", + "region": " North Coast", + "victoriaFile": "26250-20/10433", + "regionalFile": "N/A", + "parcelIDs": [ + 4900025, + 1867596, + 2426583, + 9138419, + 2294409 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2014-06-30", + "completed": "2016-07-25", + "initiated": "2019-02-16", + "ministryContact": "LEDNER ISABELL", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "createdAt": "2019-04-29", + "completed": "2023-03-19", + "initiated": "2023-04-09", + "ministryContact": "FISHER LANE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "createdAt": "2017-04-16", + "completed": "2014-06-23", + "initiated": "2020-08-15", + "ministryContact": "SHIELDS CHANEL", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "createdAt": "2022-05-23", + "completed": "2016-07-24", + "initiated": "2023-02-15", + "ministryContact": "WISOKY CECILIA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + } + ], + "participants": [ + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2020-03-20", + "startDate": "2021-01-24", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2016-07-16", + "startDate": "2022-01-02", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2022-03-11", + "startDate": "2014-07-26", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "name": "AMET, DOLOR SIT", + "endDate": "2020-03-21", + "startDate": "2023-08-09", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + } + ], + "associatedSites": [ + { + "dateNoted": "2017-02-05", + "notes": "", + "parcelID": "17078", + "siteID": "18969", + "siteRegistry": true + } + ] + }, + { + "uuid": "a540e3ce-1bfb-4d68-9bfd-d71c609e131e", + "siteID": 16793, + "address": "2310 Keebler Hollow", + "latitude": 52.4986, + "longitude": -124.3014, + "lastUpdated": "2022-12-15", + "city": "North Dustin", + "region": "Cariboo", + "victoriaFile": "26250-20/6557", + "regionalFile": "N/A", + "parcelIDs": [ + 3942731, + 6394025, + 7043329, + 8776630, + 9441531 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2020-07-05", + "completed": "2021-03-24", + "initiated": "2018-07-14", + "ministryContact": "WELCH GERDA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "createdAt": "2013-12-23", + "completed": "2022-11-09", + "initiated": "2020-10-21", + "ministryContact": "MOSCISKI-KUPHAL MELYNA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + } + ], + "participants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2018-09-18", + "startDate": "2022-08-08", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2016-03-07", + "startDate": "2018-11-28", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + } + ], + "associatedSites": [ + { + "dateNoted": "2016-11-23", + "notes": "", + "parcelID": "17239", + "siteID": "16966", + "siteRegistry": true + }, + { + "dateNoted": "2015-02-01", + "notes": "", + "parcelID": "16359", + "siteID": "18652", + "siteRegistry": true + }, + { + "dateNoted": "2022-02-13", + "notes": "", + "parcelID": "20372", + "siteID": "16810", + "siteRegistry": false + } + ] + }, + { + "uuid": "cc4dd794-6344-4fbd-822d-c2b8bea7eb40", + "siteID": 15609, + "address": "7417 Stroman Rapid", + "latitude": 51.068, + "longitude": -133.9376, + "lastUpdated": "2020-12-15", + "city": "Gislasonton", + "region": " North Coast", + "victoriaFile": "26250-20/13927", + "regionalFile": "N/A", + "parcelIDs": [ + 9934842, + 7091060, + 5315768, + 8472006, + 5159041 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2013-10-26", + "completed": "2018-09-05", + "initiated": "2018-06-10", + "ministryContact": "MOHR CORY", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "createdAt": "2014-05-01", + "completed": "2014-06-21", + "initiated": "2014-05-24", + "ministryContact": "MORAR LAFAYETTE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "createdAt": "2015-01-11", + "completed": "2019-10-19", + "initiated": "2019-05-13", + "ministryContact": "BECKER CONOR", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "createdAt": "2020-05-19", + "completed": "2021-06-04", + "initiated": "2021-12-11", + "ministryContact": "ZEMLAK JASMIN", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "createdAt": "2021-06-19", + "completed": "2015-09-28", + "initiated": "2015-01-06", + "ministryContact": "CASSIN ALEXANE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + } + ], + "participants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2014-08-10", + "startDate": "2018-07-13", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2014-05-18", + "startDate": "2017-05-03", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "name": "AMET, DOLOR SIT", + "endDate": "2019-07-15", + "startDate": "2017-01-02", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "AMET, DOLOR SIT", + "endDate": "2019-05-16", + "startDate": "2014-10-13", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + } + ], + "associatedSites": [ + { + "dateNoted": "2021-04-16", + "notes": "", + "parcelID": "15957", + "siteID": "18001", + "siteRegistry": false + } + ] + }, + { + "uuid": "d789549b-1d8c-42f2-8ce1-5fbb15205999", + "siteID": 19796, + "address": "57215 Tyler Junctions", + "latitude": 48.772, + "longitude": -131.3969, + "lastUpdated": "2013-11-13", + "city": "Rathville", + "region": "Thompson-Okanagan", + "victoriaFile": "26250-20/9577", + "regionalFile": "N/A", + "parcelIDs": [ + 162384, + 4109186, + 9143100, + 5787826, + 695998 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2022-11-23", + "completed": "2023-02-17", + "initiated": "2014-04-24", + "ministryContact": "PURDY ERNIE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "createdAt": "2022-08-03", + "completed": "2022-05-15", + "initiated": "2020-03-05", + "ministryContact": "KUVALIS TRESSA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "createdAt": "2015-03-24", + "completed": "2020-07-15", + "initiated": "2015-03-17", + "ministryContact": "MULLER SADYE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "createdAt": "2023-07-27", + "completed": "2020-06-09", + "initiated": "2020-07-16", + "ministryContact": "JONES-TURCOTTE ASTRID", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + } + ], + "participants": [ + { + "name": "IPSUM", + "endDate": "2015-01-07", + "startDate": "2022-03-29", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2017-05-28", + "startDate": "2022-05-19", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2017-07-27", + "startDate": "2020-08-14", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "IPSUM", + "endDate": "2017-07-10", + "startDate": "2023-09-17", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "IPSUM", + "endDate": "2019-01-21", + "startDate": "2019-10-27", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + } + ], + "associatedSites": [ + { + "dateNoted": "2020-10-13", + "notes": "", + "parcelID": "18887", + "siteID": "16814", + "siteRegistry": false + }, + { + "dateNoted": "2018-03-20", + "notes": "", + "parcelID": "19995", + "siteID": "15695", + "siteRegistry": false + }, + { + "dateNoted": "2014-04-15", + "notes": "", + "parcelID": "19033", + "siteID": "20023", + "siteRegistry": true + } + ] + }, + { + "uuid": "f55e5677-d28e-403e-93f4-b9a512900777", + "siteID": 19124, + "address": "3571 Reichel Expressway", + "latitude": 55.5323, + "longitude": -119.1717, + "lastUpdated": "2014-03-03", + "city": "Fort Armandochester", + "region": "Vancouver Island/Coast", + "victoriaFile": "26250-20/12891", + "regionalFile": "N/A", + "parcelIDs": [ + 9812470, + 3976214, + 3381301, + 7444772, + 3496691 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2016-05-29", + "completed": "2014-10-25", + "initiated": "2018-06-24", + "ministryContact": "LUEILWITZ PATIENCE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "createdAt": "2022-11-08", + "completed": "2023-01-14", + "initiated": "2023-05-08", + "ministryContact": "HARRIS FLORENCIO", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "createdAt": "2022-12-31", + "completed": "2020-06-16", + "initiated": "2018-01-26", + "ministryContact": "LUBOWITZ RUBEN", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "createdAt": "2020-07-26", + "completed": "2021-08-19", + "initiated": "2016-01-12", + "ministryContact": "KONOPELSKI SANTIAGO", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + } + ], + "participants": [ + { + "name": "IPSUM", + "endDate": "2018-11-14", + "startDate": "2021-05-28", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2014-04-07", + "startDate": "2018-08-18", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "AMET, DOLOR SIT", + "endDate": "2018-06-17", + "startDate": "2016-07-21", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + } + ], + "associatedSites": [ + { + "dateNoted": "2016-02-26", + "notes": "", + "parcelID": "16219", + "siteID": "19701", + "siteRegistry": false + }, + { + "dateNoted": "2018-06-06", + "notes": "", + "parcelID": "16093", + "siteID": "16487", + "siteRegistry": false + }, + { + "dateNoted": "2020-01-07", + "notes": "", + "parcelID": "20708", + "siteID": "15656", + "siteRegistry": true + } + ] + }, + { + "uuid": "20d022f2-30fc-42e2-9eee-905bf891f05e", + "siteID": 16736, + "address": "147 Lewis Run", + "latitude": 48.4502, + "longitude": -122.6054, + "lastUpdated": "2021-09-16", + "city": "New Eunice", + "region": "Vancouver Island/Coast", + "victoriaFile": "26250-20/19765", + "regionalFile": "N/A", + "parcelIDs": [ + 866117, + 6627716, + 4720104, + 6076826, + 3943086 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2016-05-25", + "completed": "2021-06-04", + "initiated": "2016-09-30", + "ministryContact": "KSHLERIN SUZANNE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "createdAt": "2022-10-17", + "completed": "2020-07-14", + "initiated": "2022-10-25", + "ministryContact": "BECKER LINDSAY", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "createdAt": "2023-06-03", + "completed": "2015-01-29", + "initiated": "2015-04-13", + "ministryContact": "REILLY EVALYN", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "createdAt": "2018-12-27", + "completed": "2018-08-26", + "initiated": "2023-04-01", + "ministryContact": "CREMIN DOUG", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "createdAt": "2022-01-14", + "completed": "2014-06-13", + "initiated": "2018-05-05", + "ministryContact": "CRUICKSHANK CARISSA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + } + ], + "participants": [ + { + "name": "IPSUM", + "endDate": "2015-11-30", + "startDate": "2017-08-06", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2014-09-04", + "startDate": "2018-10-23", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "IPSUM", + "endDate": "2016-03-16", + "startDate": "2018-01-03", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + } + ], + "associatedSites": [ + { + "dateNoted": "2017-01-08", + "notes": "", + "parcelID": "15570", + "siteID": "17935", + "siteRegistry": true + }, + { + "dateNoted": "2017-06-17", + "notes": "", + "parcelID": "18844", + "siteID": "17237", + "siteRegistry": false + } + ] + }, + { + "uuid": "011a7f6c-aa94-4c11-bf24-c0cefad6b2ee", + "siteID": 15229, + "address": "149 Russel Spurs", + "latitude": 51.9367, + "longitude": -127.9694, + "lastUpdated": "2021-12-07", + "city": "Malikastead", + "region": "Cariboo", + "victoriaFile": "26250-20/10345", + "regionalFile": "N/A", + "parcelIDs": [ + 2050613, + 3793377, + 5457101, + 3759594, + 7471992 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2014-02-14", + "completed": "2021-01-22", + "initiated": "2016-04-09", + "ministryContact": "HALEY KENDRICK", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "createdAt": "2019-08-08", + "completed": "2016-02-03", + "initiated": "2014-07-26", + "ministryContact": "KUHIC CLOYD", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "createdAt": "2023-07-01", + "completed": "2014-12-02", + "initiated": "2017-01-25", + "ministryContact": "HESSEL CREOLA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "createdAt": "2015-10-19", + "completed": "2017-07-03", + "initiated": "2018-01-17", + "ministryContact": "SPINKA ROY", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + } + ], + "participants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2015-07-08", + "startDate": "2018-10-05", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "name": "IPSUM", + "endDate": "2021-06-30", + "startDate": "2020-06-12", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + } + ], + "associatedSites": [ + { + "dateNoted": "2023-08-12", + "notes": "", + "parcelID": "20210", + "siteID": "17237", + "siteRegistry": true + }, + { + "dateNoted": "2020-08-17", + "notes": "", + "parcelID": "19279", + "siteID": "20443", + "siteRegistry": false + } + ] + }, + { + "uuid": "430445f4-3d66-469d-8ed3-376dc82cb923", + "siteID": 19038, + "address": "4328 Keven Ports", + "latitude": 58.1227, + "longitude": -125.5549, + "lastUpdated": "2022-12-11", + "city": "Linden", + "region": "Mainland/Southwest", + "victoriaFile": "26250-20/12189", + "regionalFile": "N/A", + "parcelIDs": [ + 9343295, + 271598, + 6366018, + 394682, + 5338921 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2020-10-13", + "completed": "2020-03-15", + "initiated": "2022-12-14", + "ministryContact": "CRUICKSHANK GEORGETTE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "createdAt": "2014-10-17", + "completed": "2019-09-19", + "initiated": "2016-12-06", + "ministryContact": "UPTON SCARLETT", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + } + ], + "participants": [ + { + "name": "AMET, DOLOR SIT", + "endDate": "2020-09-13", + "startDate": "2017-12-18", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2018-05-06", + "startDate": "2014-11-25", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + } + ], + "associatedSites": [ + { + "dateNoted": "2019-02-05", + "notes": "", + "parcelID": "15707", + "siteID": "19837", + "siteRegistry": true + }, + { + "dateNoted": "2018-08-05", + "notes": "", + "parcelID": "17260", + "siteID": "19897", + "siteRegistry": false + }, + { + "dateNoted": "2014-11-18", + "notes": "", + "parcelID": "16887", + "siteID": "16673", + "siteRegistry": true + } + ] + }, + { + "uuid": "c7184929-87d5-4ad0-9359-c22b34584ef0", + "siteID": 18799, + "address": "749 Willms Expressway", + "latitude": 51.6681, + "longitude": -122.0844, + "lastUpdated": "2018-09-12", + "city": "Diamond Bar", + "region": "Vancouver Island/Coast", + "victoriaFile": "26250-20/12379", + "regionalFile": "N/A", + "parcelIDs": [ + 6276539, + 8069858, + 9646097, + 5865975, + 9368552 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2022-05-09", + "completed": "2019-12-02", + "initiated": "2014-01-31", + "ministryContact": "STIEDEMANN MALVINA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "createdAt": "2020-02-15", + "completed": "2016-01-03", + "initiated": "2020-06-16", + "ministryContact": "STEHR RASHAWN", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "createdAt": "2020-10-20", + "completed": "2021-01-24", + "initiated": "2018-04-07", + "ministryContact": "HILLL REVA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "createdAt": "2019-01-21", + "completed": "2022-07-17", + "initiated": "2022-06-05", + "ministryContact": "STROMAN ELISE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + } + ], + "participants": [ + { + "name": "IPSUM", + "endDate": "2020-03-09", + "startDate": "2018-04-07", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2020-06-22", + "startDate": "2017-03-03", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2023-01-31", + "startDate": "2015-08-06", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2014-12-26", + "startDate": "2022-06-01", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + } + ], + "associatedSites": [ + { + "dateNoted": "2021-02-22", + "notes": "", + "parcelID": "20705", + "siteID": "17151", + "siteRegistry": false + }, + { + "dateNoted": "2023-01-11", + "notes": "", + "parcelID": "19313", + "siteID": "16645", + "siteRegistry": false + }, + { + "dateNoted": "2020-02-01", + "notes": "", + "parcelID": "15296", + "siteID": "19966", + "siteRegistry": true + } + ] + }, + { + "uuid": "ab0cdab2-33dc-4888-b085-7c3314a2dd77", + "siteID": 17200, + "address": "481 Stark Corner", + "latitude": 51.9462, + "longitude": -128.7985, + "lastUpdated": "2021-07-10", + "city": "Port Antoniamouth", + "region": "Vancouver Island/Coast", + "victoriaFile": "26250-20/1737", + "regionalFile": "N/A", + "parcelIDs": [ + 4213521, + 1562245, + 6862994, + 9456698, + 3104011 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2017-01-24", + "completed": "2017-04-11", + "initiated": "2017-01-05", + "ministryContact": "HARTMANN ALVIS", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "createdAt": "2015-06-12", + "completed": "2014-06-26", + "initiated": "2023-07-12", + "ministryContact": "FISHER ALEEN", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "createdAt": "2021-01-13", + "completed": "2017-05-23", + "initiated": "2022-10-23", + "ministryContact": "HARVEY NELSON", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + } + ], + "participants": [ + { + "name": "IPSUM", + "endDate": "2015-04-09", + "startDate": "2020-02-09", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "name": "AMET, DOLOR SIT", + "endDate": "2020-11-08", + "startDate": "2014-12-25", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + } + ], + "associatedSites": [ + { + "dateNoted": "2018-08-24", + "notes": "", + "parcelID": "20982", + "siteID": "17322", + "siteRegistry": false + }, + { + "dateNoted": "2020-01-05", + "notes": "", + "parcelID": "17766", + "siteID": "16703", + "siteRegistry": false + }, + { + "dateNoted": "2021-05-17", + "notes": "", + "parcelID": "17112", + "siteID": "19409", + "siteRegistry": true + } + ] + }, + { + "uuid": "7353d1c6-1a79-4d8a-8eda-d6e27fc2f613", + "siteID": 20788, + "address": "39884 Arvid Square", + "latitude": 58.3453, + "longitude": -123.3734, + "lastUpdated": "2018-04-10", + "city": "Hodkiewiczshire", + "region": "Mainland/Southwest", + "victoriaFile": "26250-20/7904", + "regionalFile": "N/A", + "parcelIDs": [ + 4100275, + 7986906, + 7019428, + 8325608, + 3005743 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2022-05-02", + "completed": "2015-08-14", + "initiated": "2017-03-02", + "ministryContact": "STOLTENBERG GEORGE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "createdAt": "2015-10-01", + "completed": "2014-06-08", + "initiated": "2018-10-10", + "ministryContact": "JACOBS WALLACE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "createdAt": "2018-06-23", + "completed": "2019-02-27", + "initiated": "2016-09-18", + "ministryContact": "HIRTHE RAUL", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "createdAt": "2016-09-08", + "completed": "2013-12-03", + "initiated": "2021-04-24", + "ministryContact": "KUHN ANGELA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + } + ], + "participants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2019-02-15", + "startDate": "2023-05-10", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "IPSUM", + "endDate": "2017-09-18", + "startDate": "2020-05-06", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2016-04-19", + "startDate": "2023-03-04", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2019-01-17", + "startDate": "2019-02-18", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "name": "IPSUM", + "endDate": "2019-12-10", + "startDate": "2021-04-27", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + } + ], + "associatedSites": [ + { + "dateNoted": "2014-01-19", + "notes": "", + "parcelID": "15312", + "siteID": "17036", + "siteRegistry": true + } + ] + }, + { + "uuid": "6533d50c-3579-4c4f-acfd-b36597baf2b6", + "siteID": 18373, + "address": "80156 Swaniawski Common", + "latitude": 54.0101, + "longitude": -131.8212, + "lastUpdated": "2021-06-23", + "city": "West Makennafield", + "region": "Mainland/Southwest", + "victoriaFile": "26250-20/2311", + "regionalFile": "N/A", + "parcelIDs": [ + 6139964, + 459792, + 1544806, + 7151936, + 7025673 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2017-03-05", + "completed": "2020-11-19", + "initiated": "2022-06-01", + "ministryContact": "WUCKERT JARON", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "createdAt": "2016-10-10", + "completed": "2022-08-04", + "initiated": "2017-02-17", + "ministryContact": "BRAUN DAYNA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + } + ], + "participants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2018-08-16", + "startDate": "2016-11-16", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2022-02-18", + "startDate": "2022-11-07", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + } + ], + "associatedSites": [ + { + "dateNoted": "2020-06-07", + "notes": "", + "parcelID": "18932", + "siteID": "19572", + "siteRegistry": true + }, + { + "dateNoted": "2014-05-09", + "notes": "", + "parcelID": "18071", + "siteID": "17898", + "siteRegistry": false + } + ] + }, + { + "uuid": "0cf0f216-e689-45c0-a01c-dff1a9e9ec9d", + "siteID": 20661, + "address": "27376 Schaefer Bridge", + "latitude": 53.3836, + "longitude": -130.5919, + "lastUpdated": "2016-10-02", + "city": "South Kobestead", + "region": "Vancouver Island/Coast", + "victoriaFile": "26250-20/1761", + "regionalFile": "N/A", + "parcelIDs": [ + 7662717, + 4261997, + 9966350, + 8977619, + 8717283 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2015-10-06", + "completed": "2023-05-29", + "initiated": "2023-09-11", + "ministryContact": "BRADTKE SERENA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "createdAt": "2023-09-03", + "completed": "2017-06-10", + "initiated": "2017-07-07", + "ministryContact": "AUFDERHAR DONNY", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "createdAt": "2023-07-29", + "completed": "2021-03-25", + "initiated": "2017-12-03", + "ministryContact": "YOST FRIEDA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + } + ], + "participants": [ + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2021-10-14", + "startDate": "2019-10-29", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "name": "IPSUM", + "endDate": "2020-04-18", + "startDate": "2014-02-13", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2023-01-13", + "startDate": "2014-07-31", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2020-09-09", + "startDate": "2015-07-16", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "name": "IPSUM", + "endDate": "2018-02-20", + "startDate": "2015-01-13", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + } + ], + "associatedSites": [ + { + "dateNoted": "2017-10-14", + "notes": "", + "parcelID": "20932", + "siteID": "18269", + "siteRegistry": true + }, + { + "dateNoted": "2021-07-16", + "notes": "", + "parcelID": "17705", + "siteID": "20906", + "siteRegistry": true + } + ] + }, + { + "uuid": "fab2f6c9-7301-4496-8e6e-cfbe3621b8dc", + "siteID": 20947, + "address": "30653 Russel Forest", + "latitude": 50.6302, + "longitude": -135.5513, + "lastUpdated": "2022-08-27", + "city": "Josestad", + "region": "Cariboo", + "victoriaFile": "26250-20/11915", + "regionalFile": "N/A", + "parcelIDs": [ + 5271709, + 8488872, + 9172178, + 665633, + 2544964 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2017-06-30", + "completed": "2019-06-15", + "initiated": "2017-05-28", + "ministryContact": "UPTON-BAYER CANDELARIO", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "createdAt": "2019-02-05", + "completed": "2019-10-21", + "initiated": "2016-08-13", + "ministryContact": "NIENOW ALBINA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "createdAt": "2023-02-08", + "completed": "2023-05-14", + "initiated": "2022-04-16", + "ministryContact": "JAKUBOWSKI SADIE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "createdAt": "2014-07-04", + "completed": "2015-02-05", + "initiated": "2021-05-03", + "ministryContact": "HINTZ KATHRYNE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "createdAt": "2018-03-09", + "completed": "2019-10-01", + "initiated": "2020-04-11", + "ministryContact": "VON AALIYAH", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + } + ], + "participants": [ + { + "name": "IPSUM", + "endDate": "2018-01-10", + "startDate": "2019-11-17", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "name": "IPSUM", + "endDate": "2022-06-24", + "startDate": "2016-10-26", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2016-03-06", + "startDate": "2020-12-05", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "name": "AMET, DOLOR SIT", + "endDate": "2019-12-26", + "startDate": "2014-06-06", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2022-05-14", + "startDate": "2020-12-22", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + } + ], + "associatedSites": [ + { + "dateNoted": "2013-11-12", + "notes": "", + "parcelID": "20530", + "siteID": "16916", + "siteRegistry": true + }, + { + "dateNoted": "2014-10-03", + "notes": "", + "parcelID": "17439", + "siteID": "15784", + "siteRegistry": true + } + ] + }, + { + "uuid": "2d043386-77c9-4d5b-8cf8-2244ad6a0042", + "siteID": 17011, + "address": "70545 D'Amore Road", + "latitude": 48.4059, + "longitude": -126.7245, + "lastUpdated": "2021-11-24", + "city": "New Corrine", + "region": "Thompson-Okanagan", + "victoriaFile": "26250-20/1270", + "regionalFile": "N/A", + "parcelIDs": [ + 1409774, + 5185391, + 8462506, + 2751642, + 2982654 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2018-03-07", + "completed": "2014-09-11", + "initiated": "2021-05-22", + "ministryContact": "PARKER EMELIE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "createdAt": "2014-07-13", + "completed": "2023-07-05", + "initiated": "2015-07-30", + "ministryContact": "ROHAN D'ANGELO", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "createdAt": "2021-06-22", + "completed": "2020-03-27", + "initiated": "2019-08-09", + "ministryContact": "BOYER ANABEL", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "createdAt": "2021-05-05", + "completed": "2022-03-09", + "initiated": "2015-10-27", + "ministryContact": "SMITH MABELLE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "createdAt": "2020-02-22", + "completed": "2020-06-23", + "initiated": "2022-07-17", + "ministryContact": "SCHAMBERGER JEROME", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + } + ], + "participants": [ + { + "name": "AMET, DOLOR SIT", + "endDate": "2015-12-25", + "startDate": "2016-03-26", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2022-05-20", + "startDate": "2022-09-15", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + } + ], + "associatedSites": [ + { + "dateNoted": "2014-02-10", + "notes": "", + "parcelID": "17593", + "siteID": "19039", + "siteRegistry": false + } + ] + }, + { + "uuid": "a0815481-0cec-432c-aaa1-d6c8ccc2b44f", + "siteID": 16229, + "address": "61360 Lynch Lock", + "latitude": 58.6711, + "longitude": -128.2438, + "lastUpdated": "2017-09-25", + "city": "East Peter", + "region": "Kootenay", + "victoriaFile": "26250-20/17387", + "regionalFile": "N/A", + "parcelIDs": [ + 1356795, + 9269074, + 7472239, + 3809895, + 3604551 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2019-05-28", + "completed": "2020-10-10", + "initiated": "2019-09-14", + "ministryContact": "RUNTE IMMANUEL", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "createdAt": "2014-02-17", + "completed": "2014-12-30", + "initiated": "2022-10-23", + "ministryContact": "BOYLE-WIEGAND JAMARCUS", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + } + ], + "participants": [ + { + "name": "IPSUM", + "endDate": "2021-03-21", + "startDate": "2021-08-08", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "name": "IPSUM", + "endDate": "2021-09-20", + "startDate": "2022-10-26", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + } + ], + "associatedSites": [ + { + "dateNoted": "2017-04-26", + "notes": "", + "parcelID": "16413", + "siteID": "17275", + "siteRegistry": false + } + ] + }, + { + "uuid": "a4ceff76-90a9-4431-9beb-caed16cb4eec", + "siteID": 18135, + "address": "53589 Hand Haven", + "latitude": 51.0869, + "longitude": -121.9083, + "lastUpdated": "2016-07-31", + "city": "Pacochaworth", + "region": "Kootenay", + "victoriaFile": "26250-20/10200", + "regionalFile": "N/A", + "parcelIDs": [ + 9624827, + 5372373, + 8364990, + 1766426, + 5590194 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2018-08-30", + "completed": "2014-02-04", + "initiated": "2022-12-30", + "ministryContact": "HESSEL ROSSIE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "createdAt": "2014-06-08", + "completed": "2016-04-27", + "initiated": "2015-04-25", + "ministryContact": "RUSSEL ERA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + } + ], + "participants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2020-07-10", + "startDate": "2018-09-19", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2021-01-04", + "startDate": "2016-08-27", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2021-09-18", + "startDate": "2016-01-25", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + } + ], + "associatedSites": [ + { + "dateNoted": "2014-02-21", + "notes": "", + "parcelID": "15399", + "siteID": "19741", + "siteRegistry": false + }, + { + "dateNoted": "2023-03-23", + "notes": "", + "parcelID": "18000", + "siteID": "20869", + "siteRegistry": false + } + ] + }, + { + "uuid": "5823804c-c70d-42bc-92ab-e567031da8fa", + "siteID": 20717, + "address": "813 Demario Points", + "latitude": 49.6601, + "longitude": -119.863, + "lastUpdated": "2018-09-17", + "city": "Rockford", + "region": "Mainland/Southwest", + "victoriaFile": "26250-20/19865", + "regionalFile": "N/A", + "parcelIDs": [ + 8968487, + 8325840, + 3063921, + 6145142, + 3668376 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2015-09-28", + "completed": "2022-12-09", + "initiated": "2015-05-05", + "ministryContact": "MURRAY-DECKOW CONSTANCE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "createdAt": "2015-11-18", + "completed": "2019-03-29", + "initiated": "2016-04-13", + "ministryContact": "HAMILL MAXIMO", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "createdAt": "2014-08-11", + "completed": "2017-05-28", + "initiated": "2022-08-27", + "ministryContact": "ROHAN GEOFFREY", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + } + ], + "participants": [ + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2020-02-11", + "startDate": "2016-12-14", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "name": "AMET, DOLOR SIT", + "endDate": "2014-02-16", + "startDate": "2019-06-12", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + } + ], + "associatedSites": [ + { + "dateNoted": "2021-06-27", + "notes": "", + "parcelID": "18728", + "siteID": "16133", + "siteRegistry": false + }, + { + "dateNoted": "2023-09-08", + "notes": "", + "parcelID": "18782", + "siteID": "19075", + "siteRegistry": false + }, + { + "dateNoted": "2017-05-08", + "notes": "", + "parcelID": "15211", + "siteID": "19778", + "siteRegistry": false + } + ] + }, + { + "uuid": "edfcefc7-aeb6-4f0c-b16e-086c0c16ce38", + "siteID": 20930, + "address": "1751 Grady Mall", + "latitude": 54.3616, + "longitude": -121.1189, + "lastUpdated": "2019-08-19", + "city": "East Budcester", + "region": "Mainland/Southwest", + "victoriaFile": "26250-20/12168", + "regionalFile": "N/A", + "parcelIDs": [ + 6512842, + 3047915, + 6914575, + 829233, + 7733966 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2018-12-20", + "completed": "2016-05-19", + "initiated": "2016-08-29", + "ministryContact": "KOZEY CRISTAL", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "createdAt": "2022-09-25", + "completed": "2019-07-16", + "initiated": "2017-11-23", + "ministryContact": "JACOBI RODOLFO", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + } + ], + "participants": [ + { + "name": "IPSUM", + "endDate": "2016-01-27", + "startDate": "2021-01-01", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2017-11-20", + "startDate": "2021-07-29", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + } + ], + "associatedSites": [ + { + "dateNoted": "2019-03-06", + "notes": "", + "parcelID": "16919", + "siteID": "18859", + "siteRegistry": true + } + ] + }, + { + "uuid": "e7ab6ab4-fee7-4f3a-a609-0d5a8ee4a672", + "siteID": 20178, + "address": "70043 Hamill Pine", + "latitude": 50.7262, + "longitude": -121.0374, + "lastUpdated": "2021-09-07", + "city": "Fort Herta", + "region": "Thompson-Okanagan", + "victoriaFile": "26250-20/6047", + "regionalFile": "N/A", + "parcelIDs": [ + 7995530, + 1675176, + 6863097, + 5340879, + 199985 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2021-10-24", + "completed": "2018-11-23", + "initiated": "2013-12-14", + "ministryContact": "AUFDERHAR EVERETTE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "createdAt": "2019-01-04", + "completed": "2016-03-02", + "initiated": "2019-08-23", + "ministryContact": "FLATLEY VALENTIN", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "createdAt": "2023-08-30", + "completed": "2015-12-29", + "initiated": "2016-05-11", + "ministryContact": "BODE MELYSSA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "createdAt": "2021-05-05", + "completed": "2020-09-30", + "initiated": "2019-04-12", + "ministryContact": "CRIST REESE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "createdAt": "2020-09-06", + "completed": "2018-01-22", + "initiated": "2017-10-19", + "ministryContact": "SCHUSTER VERNER", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + } + ], + "participants": [ + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2019-11-01", + "startDate": "2018-01-26", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "name": "AMET, DOLOR SIT", + "endDate": "2018-11-30", + "startDate": "2016-10-10", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2020-04-20", + "startDate": "2023-08-29", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + } + ], + "associatedSites": [ + { + "dateNoted": "2021-06-11", + "notes": "", + "parcelID": "18836", + "siteID": "17448", + "siteRegistry": false + } + ] + }, + { + "uuid": "ccbe39bc-0d22-4d90-9023-7b1af0fbb89d", + "siteID": 17074, + "address": "6200 Caitlyn Ramp", + "latitude": 49.2384, + "longitude": -122.6844, + "lastUpdated": "2019-07-15", + "city": "Lake Kelleyshire", + "region": "Cariboo", + "victoriaFile": "26250-20/16511", + "regionalFile": "N/A", + "parcelIDs": [ + 4753072, + 7165475, + 3579586, + 4014857, + 2579975 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2019-06-27", + "completed": "2021-05-29", + "initiated": "2016-06-25", + "ministryContact": "GERHOLD HOBART", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "createdAt": "2016-12-02", + "completed": "2015-09-29", + "initiated": "2015-02-23", + "ministryContact": "OKUNEVA IMOGENE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "createdAt": "2014-12-12", + "completed": "2017-04-19", + "initiated": "2021-04-09", + "ministryContact": "VONRUEDEN PIPER", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + } + ], + "participants": [ + { + "name": "IPSUM", + "endDate": "2018-07-14", + "startDate": "2023-08-19", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "name": "IPSUM", + "endDate": "2019-10-18", + "startDate": "2013-11-08", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2015-04-15", + "startDate": "2016-03-15", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "name": "AMET, DOLOR SIT", + "endDate": "2019-05-20", + "startDate": "2015-07-08", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2019-05-26", + "startDate": "2022-05-05", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + } + ], + "associatedSites": [ + { + "dateNoted": "2015-12-30", + "notes": "", + "parcelID": "16213", + "siteID": "20211", + "siteRegistry": false + }, + { + "dateNoted": "2020-02-02", + "notes": "", + "parcelID": "16625", + "siteID": "19762", + "siteRegistry": false + } + ] + }, + { + "uuid": "7f88e2e1-3ad2-4e0f-835d-9951de38d0ab", + "siteID": 16703, + "address": "32129 Doris Courts", + "latitude": 52.9389, + "longitude": -128.3399, + "lastUpdated": "2023-02-16", + "city": "Lake Berneice", + "region": " North Coast", + "victoriaFile": "26250-20/2179", + "regionalFile": "N/A", + "parcelIDs": [ + 2377825, + 1864668, + 7711805, + 6807224, + 3706002 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2016-07-25", + "completed": "2014-11-30", + "initiated": "2014-10-03", + "ministryContact": "CASSIN OLA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "createdAt": "2022-02-22", + "completed": "2015-12-03", + "initiated": "2019-06-28", + "ministryContact": "FARRELL RAMONA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "createdAt": "2016-07-31", + "completed": "2018-07-12", + "initiated": "2021-11-01", + "ministryContact": "BARTOLETTI-KING JAMARCUS", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "createdAt": "2017-01-03", + "completed": "2014-07-16", + "initiated": "2014-08-10", + "ministryContact": "JENKINS MEAGAN", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "createdAt": "2014-01-28", + "completed": "2021-07-08", + "initiated": "2022-05-22", + "ministryContact": "CORMIER JULES", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + } + ], + "participants": [ + { + "name": "IPSUM", + "endDate": "2020-10-24", + "startDate": "2016-11-08", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2014-10-15", + "startDate": "2020-05-30", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "name": "IPSUM", + "endDate": "2022-07-14", + "startDate": "2018-01-04", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + } + ], + "associatedSites": [ + { + "dateNoted": "2020-07-12", + "notes": "", + "parcelID": "16866", + "siteID": "18047", + "siteRegistry": false + }, + { + "dateNoted": "2016-06-23", + "notes": "", + "parcelID": "20179", + "siteID": "19903", + "siteRegistry": true + } + ] + }, + { + "uuid": "40bd5675-1fb9-41e9-a6d0-9c53a17851e0", + "siteID": 17050, + "address": "364 Felicita Ville", + "latitude": 52.7189, + "longitude": -137.8472, + "lastUpdated": "2016-09-11", + "city": "Rosalynhaven", + "region": "Cariboo", + "victoriaFile": "26250-20/6640", + "regionalFile": "N/A", + "parcelIDs": [ + 5230155, + 4995275, + 1559380, + 2072552, + 259201 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2022-05-03", + "completed": "2016-03-05", + "initiated": "2018-10-19", + "ministryContact": "LIND ZOEY", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "createdAt": "2014-11-01", + "completed": "2016-02-19", + "initiated": "2023-02-27", + "ministryContact": "SCHMELER PATRICK", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "createdAt": "2015-11-02", + "completed": "2022-02-25", + "initiated": "2014-07-06", + "ministryContact": "JOHNSTON HAILEE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + } + ], + "participants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2023-03-23", + "startDate": "2023-04-01", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2022-11-16", + "startDate": "2016-01-14", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "name": "IPSUM", + "endDate": "2022-04-02", + "startDate": "2016-09-26", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "name": "IPSUM", + "endDate": "2016-01-15", + "startDate": "2019-06-01", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "IPSUM", + "endDate": "2018-09-12", + "startDate": "2018-03-13", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + } + ], + "associatedSites": [ + { + "dateNoted": "2016-07-11", + "notes": "", + "parcelID": "17179", + "siteID": "15654", + "siteRegistry": true + }, + { + "dateNoted": "2023-06-04", + "notes": "", + "parcelID": "17143", + "siteID": "16673", + "siteRegistry": false + }, + { + "dateNoted": "2020-02-29", + "notes": "", + "parcelID": "19517", + "siteID": "17190", + "siteRegistry": true + } + ] + }, + { + "uuid": "b5b54482-2a1e-484e-9601-a46b4af2951b", + "siteID": 19819, + "address": "378 Chesley Course", + "latitude": 48.7975, + "longitude": -121.8271, + "lastUpdated": "2021-02-21", + "city": "Lake Laneworth", + "region": "Kootenay", + "victoriaFile": "26250-20/9184", + "regionalFile": "N/A", + "parcelIDs": [ + 1618632, + 2816910, + 4620587, + 3265650, + 4194508 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2023-07-09", + "completed": "2019-05-14", + "initiated": "2018-11-27", + "ministryContact": "LEFFLER KIERA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "createdAt": "2016-07-01", + "completed": "2022-09-06", + "initiated": "2015-05-16", + "ministryContact": "KLEIN AHMAD", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + } + ], + "participants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2018-10-23", + "startDate": "2015-02-04", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2015-10-12", + "startDate": "2015-05-30", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2014-07-20", + "startDate": "2018-10-24", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2016-08-03", + "startDate": "2022-12-02", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + } + ], + "associatedSites": [ + { + "dateNoted": "2017-08-11", + "notes": "", + "parcelID": "16448", + "siteID": "15361", + "siteRegistry": false + }, + { + "dateNoted": "2016-02-05", + "notes": "", + "parcelID": "16567", + "siteID": "15654", + "siteRegistry": true + } + ] + }, + { + "uuid": "ed2a7d16-ceed-4065-941d-dadda86ff477", + "siteID": 19351, + "address": "9403 Jacobson Path", + "latitude": 58.1959, + "longitude": -131.7107, + "lastUpdated": "2019-03-25", + "city": "Westview", + "region": " North Coast", + "victoriaFile": "26250-20/5096", + "regionalFile": "N/A", + "parcelIDs": [ + 1639896, + 6741054, + 3463012, + 2349487, + 2817121 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2020-12-04", + "completed": "2013-12-13", + "initiated": "2014-08-17", + "ministryContact": "CORKERY ICIE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "createdAt": "2014-08-30", + "completed": "2015-12-15", + "initiated": "2020-03-05", + "ministryContact": "ROOB KACIE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "createdAt": "2022-07-24", + "completed": "2017-10-25", + "initiated": "2014-04-24", + "ministryContact": "CARTER KEVON", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "createdAt": "2022-02-27", + "completed": "2022-04-12", + "initiated": "2021-07-06", + "ministryContact": "ONDRICKA JED", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "createdAt": "2019-06-06", + "completed": "2016-05-16", + "initiated": "2019-02-12", + "ministryContact": "BOSCO DANE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + } + ], + "participants": [ + { + "name": "AMET, DOLOR SIT", + "endDate": "2017-04-23", + "startDate": "2018-07-07", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2021-07-08", + "startDate": "2022-01-23", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "name": "AMET, DOLOR SIT", + "endDate": "2016-04-07", + "startDate": "2016-07-03", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + } + ], + "associatedSites": [ + { + "dateNoted": "2017-02-04", + "notes": "", + "parcelID": "15613", + "siteID": "17304", + "siteRegistry": false + }, + { + "dateNoted": "2016-12-30", + "notes": "", + "parcelID": "18314", + "siteID": "15653", + "siteRegistry": true + } + ] + }, + { + "uuid": "ff563f65-15a1-4e8f-9884-6f84442c6abf", + "siteID": 17572, + "address": "6304 Israel Row", + "latitude": 52.4025, + "longitude": -124.0437, + "lastUpdated": "2013-11-12", + "city": "New Emerald", + "region": "Thompson-Okanagan", + "victoriaFile": "26250-20/4122", + "regionalFile": "N/A", + "parcelIDs": [ + 5545119, + 8119763, + 9668668, + 1175280, + 3754510 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2021-10-20", + "completed": "2022-03-05", + "initiated": "2020-06-16", + "ministryContact": "OLSON NYAH", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "createdAt": "2021-02-07", + "completed": "2022-10-21", + "initiated": "2013-11-06", + "ministryContact": "JASKOLSKI KELVIN", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + } + ], + "participants": [ + { + "name": "AMET, DOLOR SIT", + "endDate": "2017-09-13", + "startDate": "2020-09-26", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2019-07-27", + "startDate": "2016-10-18", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2019-11-25", + "startDate": "2016-08-30", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + } + ], + "associatedSites": [ + { + "dateNoted": "2020-11-01", + "notes": "", + "parcelID": "16353", + "siteID": "17226", + "siteRegistry": true + }, + { + "dateNoted": "2022-11-08", + "notes": "", + "parcelID": "19367", + "siteID": "16736", + "siteRegistry": false + } + ] + }, + { + "uuid": "731f8d4b-3b4e-4fb8-9e2a-d0f847175ce4", + "siteID": 20986, + "address": "4295 Jennie Ferry", + "latitude": 55.0137, + "longitude": -134.9303, + "lastUpdated": "2021-03-24", + "city": "Lake Letitia", + "region": "Cariboo", + "victoriaFile": "26250-20/10343", + "regionalFile": "N/A", + "parcelIDs": [ + 3686120, + 1948396, + 7443928, + 1681032, + 6807310 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2023-04-25", + "completed": "2020-06-16", + "initiated": "2020-06-13", + "ministryContact": "RUNOLFSDOTTIR LUDIE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "createdAt": "2023-02-08", + "completed": "2017-01-25", + "initiated": "2020-12-12", + "ministryContact": "BOEHM CHARLEY", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "createdAt": "2021-06-30", + "completed": "2022-10-12", + "initiated": "2018-11-18", + "ministryContact": "STREICH MADISEN", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "createdAt": "2019-01-15", + "completed": "2015-06-02", + "initiated": "2020-05-22", + "ministryContact": "PRICE SHAKIRA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "createdAt": "2021-09-22", + "completed": "2013-11-19", + "initiated": "2018-09-07", + "ministryContact": "HERMAN SHERWOOD", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + } + ], + "participants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2016-02-01", + "startDate": "2016-02-25", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2018-08-05", + "startDate": "2017-02-27", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "AMET, DOLOR SIT", + "endDate": "2016-01-01", + "startDate": "2018-01-30", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2018-01-17", + "startDate": "2023-03-11", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + } + ], + "associatedSites": [ + { + "dateNoted": "2014-11-06", + "notes": "", + "parcelID": "18591", + "siteID": "16222", + "siteRegistry": true + }, + { + "dateNoted": "2016-02-12", + "notes": "", + "parcelID": "19731", + "siteID": "20211", + "siteRegistry": false + } + ] + }, + { + "uuid": "08f0b7e6-9335-46d4-aecc-33982226aa7c", + "siteID": 18695, + "address": "367 Lillie Spurs", + "latitude": 53.1604, + "longitude": -128.6859, + "lastUpdated": "2021-08-31", + "city": "Keyonfield", + "region": " North Coast", + "victoriaFile": "26250-20/8685", + "regionalFile": "N/A", + "parcelIDs": [ + 7948437, + 9077638, + 4513721, + 2322374, + 7725399 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2017-10-20", + "completed": "2018-07-12", + "initiated": "2020-03-22", + "ministryContact": "SWANIAWSKI MARIELA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "createdAt": "2022-07-31", + "completed": "2021-07-01", + "initiated": "2014-03-26", + "ministryContact": "BAYER OFELIA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + } + ], + "participants": [ + { + "name": "AMET, DOLOR SIT", + "endDate": "2013-12-10", + "startDate": "2015-06-13", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "name": "AMET, DOLOR SIT", + "endDate": "2019-01-08", + "startDate": "2014-10-05", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + } + ], + "associatedSites": [ + { + "dateNoted": "2020-02-05", + "notes": "", + "parcelID": "16140", + "siteID": "19233", + "siteRegistry": false + }, + { + "dateNoted": "2019-11-20", + "notes": "", + "parcelID": "18182", + "siteID": "17012", + "siteRegistry": true + } + ] + }, + { + "uuid": "e8221d8c-c189-484b-8fea-44c35571a46f", + "siteID": 17038, + "address": "215 Nienow Extensions", + "latitude": 53.7124, + "longitude": -136.4697, + "lastUpdated": "2014-12-14", + "city": "Bobbyburgh", + "region": "Vancouver Island/Coast", + "victoriaFile": "26250-20/17122", + "regionalFile": "N/A", + "parcelIDs": [ + 8746540, + 6226683, + 684980, + 6768722, + 1938256 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2018-08-08", + "completed": "2022-11-06", + "initiated": "2015-06-02", + "ministryContact": "MAYERT ELOISE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "createdAt": "2020-02-23", + "completed": "2017-06-06", + "initiated": "2017-08-10", + "ministryContact": "PADBERG EDEN", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + } + ], + "participants": [ + { + "name": "AMET, DOLOR SIT", + "endDate": "2023-07-12", + "startDate": "2019-10-06", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2021-02-10", + "startDate": "2020-10-23", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "IPSUM", + "endDate": "2018-11-16", + "startDate": "2017-06-17", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2023-03-14", + "startDate": "2014-04-20", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "name": "AMET, DOLOR SIT", + "endDate": "2021-05-09", + "startDate": "2014-07-20", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + } + ], + "associatedSites": [ + { + "dateNoted": "2016-09-19", + "notes": "", + "parcelID": "18327", + "siteID": "20930", + "siteRegistry": true + } + ] + }, + { + "uuid": "4f538981-dd76-42c7-89c6-e36209d8cbb0", + "siteID": 16351, + "address": "64095 Reichert Dale", + "latitude": 57.9585, + "longitude": -119.3271, + "lastUpdated": "2014-07-23", + "city": "South Nyasiafurt", + "region": "Thompson-Okanagan", + "victoriaFile": "26250-20/1833", + "regionalFile": "N/A", + "parcelIDs": [ + 6974862, + 8178939, + 4453334, + 7339380, + 7087646 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2015-03-22", + "completed": "2014-09-23", + "initiated": "2018-03-26", + "ministryContact": "SCHOEN KACIE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "createdAt": "2014-10-16", + "completed": "2023-08-29", + "initiated": "2021-06-22", + "ministryContact": "MURPHY CALLIE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "createdAt": "2016-07-02", + "completed": "2018-12-26", + "initiated": "2015-08-16", + "ministryContact": "PROSACCO SUZANNE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + } + ], + "participants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2017-03-09", + "startDate": "2019-09-14", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "name": "AMET, DOLOR SIT", + "endDate": "2014-11-15", + "startDate": "2020-10-10", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2018-09-15", + "startDate": "2014-11-27", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + } + ], + "associatedSites": [ + { + "dateNoted": "2020-04-12", + "notes": "", + "parcelID": "18190", + "siteID": "17412", + "siteRegistry": false + }, + { + "dateNoted": "2020-03-20", + "notes": "", + "parcelID": "17749", + "siteID": "17113", + "siteRegistry": false + } + ] + }, + { + "uuid": "6500d8db-02ae-451e-95ab-cbb3870e1ade", + "siteID": 18047, + "address": "40818 Watsica Trail", + "latitude": 58.2308, + "longitude": -127.6677, + "lastUpdated": "2022-01-24", + "city": "Lindafield", + "region": "Mainland/Southwest", + "victoriaFile": "26250-20/3132", + "regionalFile": "N/A", + "parcelIDs": [ + 1909427, + 8445083, + 6439060, + 5111760, + 313189 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2021-04-29", + "completed": "2020-02-17", + "initiated": "2020-05-22", + "ministryContact": "GERHOLD ELIAS", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "createdAt": "2018-03-06", + "completed": "2020-12-25", + "initiated": "2018-12-15", + "ministryContact": "VANDERVORT KATELIN", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "createdAt": "2019-03-24", + "completed": "2022-05-03", + "initiated": "2021-02-24", + "ministryContact": "LESCH SANFORD", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "createdAt": "2017-01-22", + "completed": "2018-04-27", + "initiated": "2023-07-04", + "ministryContact": "GUTMANN VIOLETTE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "createdAt": "2014-10-25", + "completed": "2023-05-11", + "initiated": "2014-10-23", + "ministryContact": "ZIEME CANDICE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + } + ], + "participants": [ + { + "name": "IPSUM", + "endDate": "2015-11-25", + "startDate": "2022-12-17", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2021-03-28", + "startDate": "2022-01-19", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2021-04-16", + "startDate": "2019-05-26", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + } + ], + "associatedSites": [ + { + "dateNoted": "2022-11-02", + "notes": "", + "parcelID": "20635", + "siteID": "19039", + "siteRegistry": true + }, + { + "dateNoted": "2019-07-04", + "notes": "", + "parcelID": "18847", + "siteID": "19872", + "siteRegistry": false + } + ] + }, + { + "uuid": "9051a29e-65f3-434e-a7c3-68a93e286b88", + "siteID": 16723, + "address": "990 Allene Loaf", + "latitude": 50, + "longitude": -131.8873, + "lastUpdated": "2018-05-06", + "city": "Stehrton", + "region": "Kootenay", + "victoriaFile": "26250-20/18775", + "regionalFile": "N/A", + "parcelIDs": [ + 8931160, + 6905948, + 4451476, + 1751599, + 8193466 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2015-06-03", + "completed": "2014-08-18", + "initiated": "2016-03-11", + "ministryContact": "HAND KAVON", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "createdAt": "2022-01-04", + "completed": "2019-01-05", + "initiated": "2018-05-25", + "ministryContact": "SCHINNER DARIO", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "createdAt": "2015-05-25", + "completed": "2019-12-19", + "initiated": "2017-10-21", + "ministryContact": "JAKUBOWSKI TAYLOR", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "createdAt": "2016-12-26", + "completed": "2021-06-29", + "initiated": "2014-08-18", + "ministryContact": "BUCKRIDGE-LARSON EDWARD", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + } + ], + "participants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2018-04-03", + "startDate": "2015-12-14", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "name": "IPSUM", + "endDate": "2014-01-31", + "startDate": "2014-02-18", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2022-06-29", + "startDate": "2018-04-10", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2021-07-12", + "startDate": "2023-02-16", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "name": "AMET, DOLOR SIT", + "endDate": "2017-09-30", + "startDate": "2015-07-15", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + } + ], + "associatedSites": [ + { + "dateNoted": "2018-08-22", + "notes": "", + "parcelID": "15709", + "siteID": "15656", + "siteRegistry": true + }, + { + "dateNoted": "2022-02-15", + "notes": "", + "parcelID": "15891", + "siteID": "16793", + "siteRegistry": true + }, + { + "dateNoted": "2018-05-13", + "notes": "", + "parcelID": "20937", + "siteID": "18838", + "siteRegistry": false + } + ] + }, + { + "uuid": "79729799-f4c9-41aa-8965-e9c7136e2d13", + "siteID": 20366, + "address": "918 Ramona Radial", + "latitude": 51.166, + "longitude": -120.2894, + "lastUpdated": "2017-05-05", + "city": "West Maybell", + "region": " North Coast", + "victoriaFile": "26250-20/5979", + "regionalFile": "N/A", + "parcelIDs": [ + 7665543, + 829156, + 6331600, + 9877698, + 2676854 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2021-11-23", + "completed": "2019-09-14", + "initiated": "2014-01-20", + "ministryContact": "MCCLURE BILL", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "createdAt": "2017-04-29", + "completed": "2013-10-24", + "initiated": "2018-01-23", + "ministryContact": "MARKS TILLMAN", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + } + ], + "participants": [ + { + "name": "IPSUM", + "endDate": "2015-12-02", + "startDate": "2017-10-02", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "name": "IPSUM", + "endDate": "2021-04-03", + "startDate": "2022-08-12", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2019-02-12", + "startDate": "2020-06-21", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2020-03-09", + "startDate": "2019-12-04", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2016-07-03", + "startDate": "2019-12-13", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + } + ], + "associatedSites": [ + { + "dateNoted": "2015-02-28", + "notes": "", + "parcelID": "16167", + "siteID": "17935", + "siteRegistry": false + }, + { + "dateNoted": "2021-12-12", + "notes": "", + "parcelID": "17933", + "siteID": "20915", + "siteRegistry": true + } + ] + }, + { + "uuid": "b90f334a-7729-4a83-987a-cafae5a01953", + "siteID": 20443, + "address": "27757 Bayer Throughway", + "latitude": 55.6979, + "longitude": -128.2715, + "lastUpdated": "2015-11-15", + "city": "East Brigittestad", + "region": "Thompson-Okanagan", + "victoriaFile": "26250-20/11279", + "regionalFile": "N/A", + "parcelIDs": [ + 4983067, + 725212, + 9025726, + 6418320, + 698857 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2023-08-14", + "completed": "2019-01-03", + "initiated": "2016-01-14", + "ministryContact": "YUNDT DRAKE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "createdAt": "2021-10-13", + "completed": "2014-02-03", + "initiated": "2014-04-24", + "ministryContact": "BODE EMMY", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + } + ], + "participants": [ + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2021-01-04", + "startDate": "2023-07-21", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2022-08-01", + "startDate": "2017-01-06", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "name": "AMET, DOLOR SIT", + "endDate": "2017-07-15", + "startDate": "2018-09-16", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "AMET, DOLOR SIT", + "endDate": "2020-03-06", + "startDate": "2015-10-08", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + } + ], + "associatedSites": [ + { + "dateNoted": "2020-11-27", + "notes": "", + "parcelID": "19841", + "siteID": "17050", + "siteRegistry": true + }, + { + "dateNoted": "2014-12-10", + "notes": "", + "parcelID": "16402", + "siteID": "18047", + "siteRegistry": true + }, + { + "dateNoted": "2015-05-15", + "notes": "", + "parcelID": "18540", + "siteID": "17275", + "siteRegistry": false + } + ] + }, + { + "uuid": "92ffb73b-4240-498e-92d8-3283384cd07d", + "siteID": 15792, + "address": "2626 Kutch Camp", + "latitude": 48.5774, + "longitude": -127.9645, + "lastUpdated": "2022-01-18", + "city": "West Lenniechester", + "region": "Mainland/Southwest", + "victoriaFile": "26250-20/8813", + "regionalFile": "N/A", + "parcelIDs": [ + 8731704, + 8598487, + 5966563, + 1904361, + 2867658 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2021-03-26", + "completed": "2014-12-14", + "initiated": "2023-03-06", + "ministryContact": "KOVACEK QUINTON", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "createdAt": "2016-12-21", + "completed": "2022-10-28", + "initiated": "2020-03-31", + "ministryContact": "DARE CORRINE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "createdAt": "2022-11-21", + "completed": "2016-02-10", + "initiated": "2016-06-09", + "ministryContact": "STOKES JOANA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "createdAt": "2020-12-03", + "completed": "2023-05-26", + "initiated": "2014-01-31", + "ministryContact": "ROSENBAUM ERNESTO", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "createdAt": "2018-10-14", + "completed": "2019-03-26", + "initiated": "2023-06-15", + "ministryContact": "O'CONNER BONITA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + } + ], + "participants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2022-07-25", + "startDate": "2022-09-13", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2022-10-23", + "startDate": "2019-06-15", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "name": "IPSUM", + "endDate": "2014-05-02", + "startDate": "2021-06-05", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "name": "AMET, DOLOR SIT", + "endDate": "2018-10-29", + "startDate": "2020-10-17", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + } + ], + "associatedSites": [ + { + "dateNoted": "2022-10-16", + "notes": "", + "parcelID": "17804", + "siteID": "20443", + "siteRegistry": false + }, + { + "dateNoted": "2018-12-01", + "notes": "", + "parcelID": "20297", + "siteID": "16725", + "siteRegistry": true + }, + { + "dateNoted": "2022-11-02", + "notes": "", + "parcelID": "19767", + "siteID": "19762", + "siteRegistry": true + } + ] + }, + { + "uuid": "acb16f30-19d9-4b15-873f-aa85ed8e2e13", + "siteID": 16721, + "address": "2616 Rippin Turnpike", + "latitude": 56.9949, + "longitude": -122.8935, + "lastUpdated": "2023-03-03", + "city": "Tonawanda", + "region": "Cariboo", + "victoriaFile": "26250-20/10527", + "regionalFile": "N/A", + "parcelIDs": [ + 9232651, + 1368929, + 9326830, + 2138805, + 4784543 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2023-05-11", + "completed": "2015-04-10", + "initiated": "2022-08-06", + "ministryContact": "BLOCK SHEA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "createdAt": "2019-05-26", + "completed": "2018-11-25", + "initiated": "2019-01-08", + "ministryContact": "VEUM JANY", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + } + ], + "participants": [ + { + "name": "IPSUM", + "endDate": "2020-04-11", + "startDate": "2016-04-19", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2020-12-02", + "startDate": "2021-12-21", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + } + ], + "associatedSites": [ + { + "dateNoted": "2023-05-15", + "notes": "", + "parcelID": "15798", + "siteID": "20930", + "siteRegistry": false + }, + { + "dateNoted": "2015-01-09", + "notes": "", + "parcelID": "20782", + "siteID": "19773", + "siteRegistry": false + } + ] + }, + { + "uuid": "3e4c92d4-ef2f-44aa-bc9d-875f59f550b0", + "siteID": 20858, + "address": "8766 Ondricka Light", + "latitude": 54.7224, + "longitude": -134.3966, + "lastUpdated": "2017-11-11", + "city": "Tysonside", + "region": " North Coast", + "victoriaFile": "26250-20/16235", + "regionalFile": "N/A", + "parcelIDs": [ + 8441705, + 8565745, + 8512999, + 7910527, + 2978169 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2023-04-21", + "completed": "2015-02-20", + "initiated": "2019-10-11", + "ministryContact": "VONRUEDEN DAGMAR", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "createdAt": "2022-01-09", + "completed": "2017-09-29", + "initiated": "2014-06-09", + "ministryContact": "ROBERTS BRAD", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + } + ], + "participants": [ + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2017-11-06", + "startDate": "2017-03-22", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2017-07-06", + "startDate": "2022-09-27", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "name": "AMET, DOLOR SIT", + "endDate": "2015-03-17", + "startDate": "2017-05-21", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "name": "IPSUM", + "endDate": "2015-08-11", + "startDate": "2014-04-14", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "name": "IPSUM", + "endDate": "2022-01-25", + "startDate": "2015-09-04", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + } + ], + "associatedSites": [ + { + "dateNoted": "2017-10-21", + "notes": "", + "parcelID": "18810", + "siteID": "18093", + "siteRegistry": false + }, + { + "dateNoted": "2021-06-22", + "notes": "", + "parcelID": "19034", + "siteID": "17976", + "siteRegistry": false + } + ] + }, + { + "uuid": "cd017f44-6ed2-436d-99c2-e19ef583a8e5", + "siteID": 20162, + "address": "4354 Pablo Mountains", + "latitude": 56.1048, + "longitude": -138.8038, + "lastUpdated": "2021-12-02", + "city": "Missouriland", + "region": "Kootenay", + "victoriaFile": "26250-20/4030", + "regionalFile": "N/A", + "parcelIDs": [ + 2808786, + 6749208, + 4539734, + 5912840, + 7292684 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2021-01-04", + "completed": "2015-05-16", + "initiated": "2017-01-19", + "ministryContact": "WAELCHI-LIND OBIE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "createdAt": "2021-08-24", + "completed": "2017-07-17", + "initiated": "2020-05-22", + "ministryContact": "LEFFLER THERESA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + } + ], + "participants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2013-10-20", + "startDate": "2013-12-07", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "name": "AMET, DOLOR SIT", + "endDate": "2019-03-20", + "startDate": "2018-07-23", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2016-05-13", + "startDate": "2020-04-27", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + } + ], + "associatedSites": [ + { + "dateNoted": "2014-09-15", + "notes": "", + "parcelID": "18322", + "siteID": "18652", + "siteRegistry": true + }, + { + "dateNoted": "2016-07-01", + "notes": "", + "parcelID": "18973", + "siteID": "18135", + "siteRegistry": true + } + ] + }, + { + "uuid": "2b6b2337-53d5-4fa5-8c94-a977fd28d3a6", + "siteID": 17226, + "address": "1752 Santa Meadows", + "latitude": 49.883, + "longitude": -136.1977, + "lastUpdated": "2014-07-21", + "city": "Fort Tyson", + "region": "Thompson-Okanagan", + "victoriaFile": "26250-20/17839", + "regionalFile": "N/A", + "parcelIDs": [ + 6014355, + 228964, + 9997210, + 1480713, + 4542030 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2015-10-11", + "completed": "2016-03-30", + "initiated": "2015-09-26", + "ministryContact": "MANTE SELENA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "createdAt": "2018-07-08", + "completed": "2016-12-12", + "initiated": "2016-02-01", + "ministryContact": "CONROY MARIANA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + } + ], + "participants": [ + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2020-04-11", + "startDate": "2021-09-22", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2016-10-09", + "startDate": "2015-07-21", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + } + ], + "associatedSites": [ + { + "dateNoted": "2020-11-21", + "notes": "", + "parcelID": "20736", + "siteID": "16736", + "siteRegistry": true + }, + { + "dateNoted": "2014-11-09", + "notes": "", + "parcelID": "15974", + "siteID": "20947", + "siteRegistry": true + }, + { + "dateNoted": "2019-09-28", + "notes": "", + "parcelID": "16458", + "siteID": "18162", + "siteRegistry": false + } + ] + }, + { + "uuid": "c84c0f70-8565-4f9a-a020-b83475d9cf12", + "siteID": 17012, + "address": "81955 Huels Ports", + "latitude": 54.5663, + "longitude": -122.264, + "lastUpdated": "2015-06-29", + "city": "Jovanhaven", + "region": "Thompson-Okanagan", + "victoriaFile": "26250-20/15997", + "regionalFile": "N/A", + "parcelIDs": [ + 9226492, + 5266721, + 1062357, + 5215930, + 9411905 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2016-11-08", + "completed": "2023-08-14", + "initiated": "2017-01-30", + "ministryContact": "GERLACH MARIANE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "createdAt": "2022-09-05", + "completed": "2022-04-19", + "initiated": "2014-01-26", + "ministryContact": "TORPHY ENA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "createdAt": "2022-07-14", + "completed": "2017-11-14", + "initiated": "2019-01-17", + "ministryContact": "LANGWORTH ENA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "createdAt": "2013-12-29", + "completed": "2023-08-10", + "initiated": "2022-10-02", + "ministryContact": "GLEICHNER JUNIUS", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + } + ], + "participants": [ + { + "name": "IPSUM", + "endDate": "2015-12-30", + "startDate": "2023-01-22", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2022-04-02", + "startDate": "2018-03-13", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + } + ], + "associatedSites": [ + { + "dateNoted": "2017-04-04", + "notes": "", + "parcelID": "18262", + "siteID": "18799", + "siteRegistry": true + }, + { + "dateNoted": "2016-03-11", + "notes": "", + "parcelID": "20006", + "siteID": "18775", + "siteRegistry": false + }, + { + "dateNoted": "2017-12-16", + "notes": "", + "parcelID": "19113", + "siteID": "16839", + "siteRegistry": true + } + ] + }, + { + "uuid": "50fe01b5-0740-41fb-a176-54e60f725b8f", + "siteID": 18001, + "address": "1011 Flo Oval", + "latitude": 48.8412, + "longitude": -124.977, + "lastUpdated": "2023-02-06", + "city": "New Brucestead", + "region": "Kootenay", + "victoriaFile": "26250-20/19653", + "regionalFile": "N/A", + "parcelIDs": [ + 4377774, + 6239390, + 371891, + 1191301, + 9857320 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2016-03-23", + "completed": "2020-09-21", + "initiated": "2020-11-22", + "ministryContact": "KUB SKYLA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "createdAt": "2022-08-26", + "completed": "2021-05-11", + "initiated": "2017-02-27", + "ministryContact": "HUELS SALLY", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "createdAt": "2015-05-04", + "completed": "2019-09-16", + "initiated": "2021-02-05", + "ministryContact": "WILLIAMSON ELINOR", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + } + ], + "participants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2014-02-13", + "startDate": "2018-06-05", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2021-07-16", + "startDate": "2015-02-19", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2022-01-23", + "startDate": "2014-12-17", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "AMET, DOLOR SIT", + "endDate": "2015-04-04", + "startDate": "2016-07-25", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "name": "AMET, DOLOR SIT", + "endDate": "2018-12-04", + "startDate": "2015-02-12", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + } + ], + "associatedSites": [ + { + "dateNoted": "2022-05-02", + "notes": "", + "parcelID": "18066", + "siteID": "20865", + "siteRegistry": true + }, + { + "dateNoted": "2019-09-16", + "notes": "", + "parcelID": "19793", + "siteID": "20788", + "siteRegistry": false + } + ] + }, + { + "uuid": "85f63c23-f4cb-4d36-ac90-d59d418f5ca2", + "siteID": 18126, + "address": "430 Stoltenberg Corners", + "latitude": 57.4977, + "longitude": -118.9699, + "lastUpdated": "2017-11-25", + "city": "Beahanside", + "region": "Mainland/Southwest", + "victoriaFile": "26250-20/4447", + "regionalFile": "N/A", + "parcelIDs": [ + 4670133, + 9270907, + 3875043, + 7928666, + 9216967 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2016-04-12", + "completed": "2020-11-20", + "initiated": "2020-02-25", + "ministryContact": "STAMM MATHEW", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "createdAt": "2022-10-01", + "completed": "2016-03-14", + "initiated": "2015-03-14", + "ministryContact": "FRAMI-EFFERTZ DONNELL", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + } + ], + "participants": [ + { + "name": "AMET, DOLOR SIT", + "endDate": "2023-05-01", + "startDate": "2021-05-26", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "name": "AMET, DOLOR SIT", + "endDate": "2013-10-26", + "startDate": "2022-09-12", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "name": "IPSUM", + "endDate": "2015-09-21", + "startDate": "2014-12-05", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + } + ], + "associatedSites": [ + { + "dateNoted": "2023-02-07", + "notes": "", + "parcelID": "17518", + "siteID": "16645", + "siteRegistry": false + }, + { + "dateNoted": "2016-01-02", + "notes": "", + "parcelID": "19769", + "siteID": "19084", + "siteRegistry": false + }, + { + "dateNoted": "2013-10-04", + "notes": "", + "parcelID": "16727", + "siteID": "15695", + "siteRegistry": true + } + ] + } +] \ No newline at end of file From 78a0ba67ac3d0d447370f9386d2245c8eded24a5 Mon Sep 17 00:00:00 2001 From: Adam Coard Date: Fri, 29 Sep 2023 11:28:03 -0700 Subject: [PATCH 107/194] Participants loading data, table label setup --- .../src/features/site-details/notations.tsx | 1 + .../src/features/site-details/participants.tsx | 16 +++++++++------- .../site-details/table/SiteDetailsTable.tsx | 9 +++++---- 3 files changed, 15 insertions(+), 11 deletions(-) diff --git a/frontend/site-search-frontend/src/features/site-details/notations.tsx b/frontend/site-search-frontend/src/features/site-details/notations.tsx index 11ae22d1..bde1153c 100644 --- a/frontend/site-search-frontend/src/features/site-details/notations.tsx +++ b/frontend/site-search-frontend/src/features/site-details/notations.tsx @@ -117,6 +117,7 @@ function NotationItem({ notation, index, onClickAddParticipant }: { notation: No state.edit.editMode); + const { siteID } = useParams(); + const siteIDNum = parseInt(siteID); + const site: Site = useSelector((state: RootState) => state.site.value.find(searchedSite => searchedSite.siteID === siteIDNum)); + // const dispatch = useDispatch(); return (
-

Site Participants go here

- diff --git a/frontend/site-search-frontend/src/features/site-details/table/SiteDetailsTable.tsx b/frontend/site-search-frontend/src/features/site-details/table/SiteDetailsTable.tsx index d2099d1d..2990580b 100644 --- a/frontend/site-search-frontend/src/features/site-details/table/SiteDetailsTable.tsx +++ b/frontend/site-search-frontend/src/features/site-details/table/SiteDetailsTable.tsx @@ -7,6 +7,7 @@ import { SiteRegistryIconButton } from '@/components/SiteRegistryIcon'; interface SiteDetailsTableProps { onClickAdd? + label: string; headers: { label: string, accessor: string}[] // rows: any[]; data: { @@ -21,7 +22,7 @@ interface SiteDetailsTableProps { // Site Registry togglez // editMode -export default function SiteDetailsTable({ onClickAdd, headers, data }: SiteDetailsTableProps) { +export default function SiteDetailsTable({ onClickAdd, headers, data, label }: SiteDetailsTableProps) { // const isMinistry = useSelector((state: RootState) => state.user.isMinistry); const editMode = useSelector((state: RootState) => state.edit.editMode); @@ -39,11 +40,11 @@ export default function SiteDetailsTable({ onClickAdd, headers, data }: SiteDeta {/* TODO - Rip this out and make its own component, but how handle differing columns and fields elegantly? children props / slots most likely. */} {/* SiteDetailsTable */} -
Notation Participants
+
{label}
- {editMode && } + {editMode && } {headers?.map((header, index) => )} {editMode && } @@ -53,7 +54,7 @@ export default function SiteDetailsTable({ onClickAdd, headers, data }: SiteDeta {data?.map((row, index) => { return ( - {editMode && } + {editMode && } {headers?.map((header, index) => )} {editMode && } From afde35a624674ff77b4d131db53731c398c2e974 Mon Sep 17 00:00:00 2001 From: Adam Coard Date: Fri, 29 Sep 2023 12:57:37 -0700 Subject: [PATCH 108/194] Have checkmarks working in site details table --- .../src/features/site-details/notations.tsx | 5 -- .../site-details/table/SiteDetailsTable.tsx | 48 +++++++++++++++---- 2 files changed, 39 insertions(+), 14 deletions(-) diff --git a/frontend/site-search-frontend/src/features/site-details/notations.tsx b/frontend/site-search-frontend/src/features/site-details/notations.tsx index bde1153c..778061d4 100644 --- a/frontend/site-search-frontend/src/features/site-details/notations.tsx +++ b/frontend/site-search-frontend/src/features/site-details/notations.tsx @@ -87,11 +87,6 @@ function NotationItem({ notation, index, onClickAddParticipant }: { notation: No // const defaultSelectionState: {index: number, siteRegistry: boolean}[] = notation.notationParticipants.map((x,index) => {return {index, siteRegistry: false}} ) // const [participationSelection, setParticipationSeleciton] = useState(defaultSelectionState) - - // const - // TODO: Need to handle 'SR', update data model - - return (
diff --git a/frontend/site-search-frontend/src/features/site-details/table/SiteDetailsTable.tsx b/frontend/site-search-frontend/src/features/site-details/table/SiteDetailsTable.tsx index 2990580b..7af327d5 100644 --- a/frontend/site-search-frontend/src/features/site-details/table/SiteDetailsTable.tsx +++ b/frontend/site-search-frontend/src/features/site-details/table/SiteDetailsTable.tsx @@ -1,19 +1,20 @@ import siteDetailsStyles from '@/pages/site-details.module.css' import { RootState } from '@/store'; -import { Button, Form, Table } from 'react-bootstrap' +import { Button, Form, Table, ToggleButton } from 'react-bootstrap' import { useSelector } from 'react-redux'; import { TableEditItem } from '../TableEditItem'; import { SiteRegistryIconButton } from '@/components/SiteRegistryIcon'; +import { useState } from 'react'; interface SiteDetailsTableProps { onClickAdd? label: string; - headers: { label: string, accessor: string}[] + headers: { label: string, accessor: string }[] // rows: any[]; data: { roles?: string[], siteRegistry: boolean - [key:string]: any; + [key: string]: any; }[]; } @@ -23,8 +24,38 @@ interface SiteDetailsTableProps { // editMode export default function SiteDetailsTable({ onClickAdd, headers, data, label }: SiteDetailsTableProps) { - // const isMinistry = useSelector((state: RootState) => state.user.isMinistry); const editMode = useSelector((state: RootState) => state.edit.editMode); + const [checked, setChecked] = useState<{ [key: string]: boolean }>(initializeCheckedObject(false)); + + // checked = { + // 1: true, + // 2: false, + // 3: true + // ... etc, will be dynamic + // } + + function handleCheck({ index, event }) { + console.log('handleCheck', {index, event, checked}) + const newCheck = { ...checked } + newCheck[index] = event.target.checked + setChecked(newCheck) + } + + function checkAll(value: boolean) { + const newChecked = initializeCheckedObject(value); + setChecked(newChecked) + } + + + function initializeCheckedObject(value: boolean) { + const newChecked = {}; + + for (let i = 0; i < data.length; i++) { + newChecked[i] = value; + } + return newChecked; + } + return ( @@ -37,14 +68,11 @@ export default function SiteDetailsTable({ onClickAdd, headers, data, label }: S
} - - {/* TODO - Rip this out and make its own component, but how handle differing columns and fields elegantly? children props / slots most likely. */} - {/* SiteDetailsTable */}
{label}
{header.label}SR
- {editMode && } + {editMode && } {headers?.map((header, index) => )} {editMode && } @@ -54,7 +82,9 @@ export default function SiteDetailsTable({ onClickAdd, headers, data, label }: S {data?.map((row, index) => { return ( - {editMode && } + {editMode && } {headers?.map((header, index) => )} {editMode && } From 4d918e9e4ebaff29414370eabc33845f838512a1 Mon Sep 17 00:00:00 2001 From: Adam Coard Date: Fri, 29 Sep 2023 13:03:33 -0700 Subject: [PATCH 109/194] Toggle disable field visibility --- .../site-details/table/SiteDetailsTable.tsx | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) diff --git a/frontend/site-search-frontend/src/features/site-details/table/SiteDetailsTable.tsx b/frontend/site-search-frontend/src/features/site-details/table/SiteDetailsTable.tsx index 7af327d5..8ad90776 100644 --- a/frontend/site-search-frontend/src/features/site-details/table/SiteDetailsTable.tsx +++ b/frontend/site-search-frontend/src/features/site-details/table/SiteDetailsTable.tsx @@ -7,7 +7,8 @@ import { SiteRegistryIconButton } from '@/components/SiteRegistryIcon'; import { useState } from 'react'; interface SiteDetailsTableProps { - onClickAdd? + onClickAdd?; + onClickRemove?; label: string; headers: { label: string, accessor: string }[] // rows: any[]; @@ -56,6 +57,14 @@ export default function SiteDetailsTable({ onClickAdd, headers, data, label }: S return newChecked; } + function setVisibleOnSiteRegistry(){ + alert('todo'); + } + + function getSelection(): string[]{ + return Object.keys(checked).filter(key => checked[key] === true); + } + return ( @@ -63,8 +72,8 @@ export default function SiteDetailsTable({ onClickAdd, headers, data, label }: S {editMode &&
- - + +
} From db50bf84b39af2a2a32d27083c6d29a50333f74e Mon Sep 17 00:00:00 2001 From: nikhila-aot Date: Tue, 3 Oct 2023 09:38:01 -0700 Subject: [PATCH 110/194] changes for handling reviewer action buttons --- ...nated Sites Services Application Form.json | 365 ++++++++++-------- .../Site Risk Classification Report.json | 211 ++++++---- 2 files changed, 341 insertions(+), 235 deletions(-) diff --git a/forms-flow-ai/epd-forms/bundling/Contaminated Sites Services Application Form.json b/forms-flow-ai/epd-forms/bundling/Contaminated Sites Services Application Form.json index 02bfa13e..ce244b29 100644 --- a/forms-flow-ai/epd-forms/bundling/Contaminated Sites Services Application Form.json +++ b/forms-flow-ai/epd-forms/bundling/Contaminated Sites Services Application Form.json @@ -198,35 +198,60 @@ "label": "Previous Reviewer", "action": "custom", "showValidations": false, + "theme": "primary", + "size": "md", + "block": false, + "leftIcon": "", + "rightIcon": "", + "shortcut": "", + "description": "", + "tooltip": "", + "customClass": "", + "tabindex": "", + "disableOnInvalid": false, + "hidden": false, + "autofocus": false, + "disabled": false, "tableView": false, + "modalEdit": false, "key": "prevReviewer", - "customConditional": "const UserDetails = JSON.parse(localStorage.getItem(\"UserDetails\"))\r\n\r\nconst roles = UserDetails[\"role\"];\r\n\r\n\r\nif(roles.includes(\"formsflow-reviewer\") && \r\n!roles.includes(\"formsflow-reviewer/caseworker\") &&\r\n!(roles.includes(\"formsflow-reviewer/sdm\") && data.typeOfReview === \"applicationViaTheSocietyOfContaminatedSitesApprovedProfessionalsOfBc\")) {\r\n show = true;\r\n}\r\nelse\r\n{\r\n show = false;\r\n}", + "tags": [], + "properties": {}, + "conditional": { + "show": null, + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "const UserDetails = JSON.parse(localStorage.getItem(\"UserDetails\"))\r\n\r\nconst roles = UserDetails[\"role\"];\r\n\r\n\r\nif(roles.includes(\"formsflow-reviewer\") && \r\n!roles.includes(\"formsflow-reviewer/caseworker\") &&\r\n!(roles.includes(\"formsflow-reviewer/sdm\") && data.typeOfReview === \"applicationViaTheSocietyOfContaminatedSitesApprovedProfessionalsOfBc\")) {\r\n show = true;\r\n}\r\nelse\r\n{\r\n if (roles.includes(\"formsflow-reviewer/caseworker\") &&\r\n roles.includes(\"formsflow-reviewer/sdm\") &&\r\n data.bundleStatus === \"cssaCaseworkerAccepted\")\r\n show = true;\r\n else\r\n show = false;\r\n}", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, "type": "button", "custom": "const submissionId = form._submission._id;\r\nconst formId = form._submission.form;\r\nconst formDataReqUrl = form.formio?form.formio.formUrl:(localStorage.getItem('customSubmissionUrl')+'/form/'+formId)+'/submission/'+submissionId;\r\nconst filteredData = _.pick(data, data.cssaUtilKeys);\r\nconst formDataReqObj1 = { \"_id\": submissionId, \"data\": filteredData};\r\nconst formio = new Formio(formDataReqUrl);\r\nformio.saveSubmission(formDataReqObj1).then( result => {\r\nform.emit('customEvent', {\r\n type: \"actionComplete\", \r\n component: component,\r\n actionType: 'Recheck'\r\n }); \r\n}).catch((error)=>{\r\n//Error callback on not Save\r\nform.emit('customEvent', {\r\n type: \"actionError\", \r\n component: component,\r\n actionType:'Recheck'\r\n }); \r\n});", "input": true, "placeholder": "", "prefix": "", - "customClass": "", "suffix": "", "multiple": false, "defaultValue": null, "protected": false, "unique": false, "persistent": false, - "hidden": false, "clearOnHide": true, "refreshOn": "", "redrawOn": "", - "modalEdit": false, "dataGridLabel": true, "labelPosition": "top", - "description": "", "errorLabel": "", - "tooltip": "", "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, "dbIndex": false, "customDefaultValue": "", "calculateValue": "", @@ -234,7 +259,6 @@ "widget": { "type": "input" }, - "attributes": {}, "validateOn": "change", "validate": { "required": false, @@ -244,32 +268,13 @@ "multiple": false, "unique": false }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, "allowCalculateOverride": false, "encrypted": false, "showCharCount": false, "showWordCount": false, - "properties": {}, "allowMultipleMasks": false, "addons": [], - "size": "md", - "leftIcon": "", - "rightIcon": "", - "block": false, - "disableOnInvalid": false, - "theme": "primary", - "id": "e3wtbqi" + "id": "eydc00x" } ], "offset": 0, @@ -285,35 +290,60 @@ "label": "Next Reviewer", "action": "custom", "showValidations": false, + "theme": "primary", + "size": "md", + "block": false, + "leftIcon": "", + "rightIcon": "", + "shortcut": "", + "description": "", + "tooltip": "", + "customClass": "", + "tabindex": "", + "disableOnInvalid": false, + "hidden": false, + "autofocus": false, + "disabled": false, "tableView": false, + "modalEdit": false, "key": "nextReviewer", - "customConditional": "const UserDetails = JSON.parse(localStorage.getItem(\"UserDetails\"));\r\n\r\nconst roles = UserDetails[\"role\"];\r\n\r\nif(roles.includes(\"formsflow-reviewer/caseworker\")) {\r\n show = true;\r\n}\r\nelse\r\n{\r\n show = false;\r\n}", + "tags": [], + "properties": {}, + "conditional": { + "show": null, + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "const UserDetails = JSON.parse(localStorage.getItem(\"UserDetails\"));\r\n\r\nconst roles = UserDetails[\"role\"];\r\n\r\nif(roles.includes(\"formsflow-reviewer/caseworker\")&&\r\ndata.bundleStatus === 'cssaMgrAccepted') {\r\n if(data.typeOfReview === \"applicationViaTheSocietyOfContaminatedSitesApprovedProfessionalsOfBc\")\r\n show = false;\r\n else\r\n show = true;\r\n}\r\nelse\r\n{\r\n show = false;\r\n}", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, "type": "button", "custom": "const submissionId = form._submission._id;\r\nconst formId = form._submission.form;\r\nconst formDataReqUrl = form.formio?form.formio.formUrl:(localStorage.getItem('customSubmissionUrl')+'/form/'+formId)+'/submission/'+submissionId;\r\n\r\nconst filteredData = _.pick(data, data.cssaUtilKeys);\r\n\r\nconst formDataReqObj1 = { \"_id\": submissionId, \"data\": filteredData};\r\nconst formio = new Formio(formDataReqUrl);\r\nformio.saveSubmission(formDataReqObj1).then( result => {\r\nform.emit('customEvent', {\r\n type: \"actionComplete\", \r\n component: component,\r\n actionType: 'Accepted'\r\n }); \r\n}).catch((error)=>{\r\n//Error callback on not Save\r\nform.emit('customEvent', {\r\n type: \"actionError\", \r\n component: component,\r\n actionType:'Accepted'\r\n }); \r\n});", "input": true, "placeholder": "", "prefix": "", - "customClass": "", "suffix": "", "multiple": false, "defaultValue": null, "protected": false, "unique": false, "persistent": false, - "hidden": false, "clearOnHide": true, "refreshOn": "", "redrawOn": "", - "modalEdit": false, "dataGridLabel": true, "labelPosition": "top", - "description": "", "errorLabel": "", - "tooltip": "", "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, "dbIndex": false, "customDefaultValue": "", "calculateValue": "", @@ -321,7 +351,6 @@ "widget": { "type": "input" }, - "attributes": {}, "validateOn": "change", "validate": { "required": false, @@ -331,66 +360,72 @@ "multiple": false, "unique": false }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, "allowCalculateOverride": false, "encrypted": false, "showCharCount": false, "showWordCount": false, - "properties": {}, "allowMultipleMasks": false, "addons": [], - "size": "md", - "leftIcon": "", - "rightIcon": "", - "block": false, - "disableOnInvalid": false, - "theme": "primary", - "id": "eapbjag" + "id": "ew6jvpd" }, { "label": "Approved", "action": "custom", "showValidations": false, + "theme": "primary", + "size": "md", + "block": false, + "leftIcon": "", + "rightIcon": "", + "shortcut": "", + "description": "", + "tooltip": "", + "customClass": "", + "tabindex": "", + "disableOnInvalid": false, + "hidden": false, + "autofocus": false, + "disabled": false, "tableView": false, + "modalEdit": false, "key": "approved", - "customConditional": "const UserDetails = JSON.parse(localStorage.getItem(\"UserDetails\"));\r\n\r\nconst roles = UserDetails[\"role\"];\r\n\r\nif(roles.includes(\"formsflow-reviewer/sdm\")) {\r\n show = true;\r\n}\r\nelse\r\n{\r\n show = false;\r\n}", + "tags": [], + "properties": {}, + "conditional": { + "show": null, + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "const UserDetails = JSON.parse(localStorage.getItem(\"UserDetails\"));\r\n\r\nconst roles = UserDetails[\"role\"];\r\n\r\nif(roles.includes(\"formsflow-reviewer/sdm\")&&\r\ndata.bundleStatus !== 'cssaMgrAccepted') {\r\n show = true;\r\n}\r\nelse\r\n{\r\n if(data.typeOfReview === \"applicationViaTheSocietyOfContaminatedSitesApprovedProfessionalsOfBc\")\r\n show = true;\r\n else\r\n show = false;\r\n}", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, "type": "button", "custom": "\r\nconst submissionId = form._submission._id;\r\nconst formId = form._submission.form;\r\nconst formDataReqUrl = form.formio?form.formio.formUrl:(localStorage.getItem('customSubmissionUrl')+'/form/'+formId)+'/submission/'+submissionId;\r\nconst filteredData = _.pick(data, data.cssaUtilKeys);\r\nconst formDataReqObj1 = { \"_id\": submissionId, \"data\": filteredData};\r\nconst formio = new Formio(formDataReqUrl);\r\nformio.saveSubmission(formDataReqObj1).then( result => {\r\nform.emit('customEvent', {\r\n type: \"actionComplete\", \r\n component: component,\r\n actionType: 'Approved'\r\n }); \r\n}).catch((error)=>{\r\n//Error callback on not Save\r\nform.emit('customEvent', {\r\n type: \"actionError\", \r\n component: component,\r\n actionType:'Approved'\r\n }); \r\n});\r\n", "input": true, "placeholder": "", "prefix": "", - "customClass": "", "suffix": "", "multiple": false, "defaultValue": null, "protected": false, "unique": false, "persistent": false, - "hidden": false, "clearOnHide": true, "refreshOn": "", "redrawOn": "", - "modalEdit": false, "dataGridLabel": true, "labelPosition": "top", - "description": "", "errorLabel": "", - "tooltip": "", "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, "dbIndex": false, "customDefaultValue": "", "calculateValue": "", @@ -398,7 +433,6 @@ "widget": { "type": "input" }, - "attributes": {}, "validateOn": "change", "validate": { "required": false, @@ -408,32 +442,13 @@ "multiple": false, "unique": false }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, "allowCalculateOverride": false, "encrypted": false, "showCharCount": false, "showWordCount": false, - "properties": {}, "allowMultipleMasks": false, "addons": [], - "size": "md", - "leftIcon": "", - "rightIcon": "", - "block": false, - "disableOnInvalid": false, - "theme": "primary", - "id": "e2wq7ji" + "id": "ejizu0n" } ], "width": 3, @@ -740,7 +755,7 @@ "key": "cssaBundleActions", "tags": [], "properties": {}, - "customConditional": "\r\nconst UserDetails = JSON.parse(localStorage.getItem(\"UserDetails\"))\r\nconst roles = UserDetails[\"role\"];\r\n\r\nif(roles.includes(\"formsflow-reviewer/cssa-team\") || \r\nroles.includes(\"formsflow-reviewer/cssa-manager\") ||\r\nroles.includes(\"formsflow-reviewer/csap\") || \r\nroles.includes(\"formsflow-reviewer/csap-society\")|| \r\nroles.includes(\"formsflow-reviewer/caseworker\")|| \r\nroles.includes(\"formsflow-reviewer/sdm\")) {\r\n if (data.riskclassification === \"exempt\"){\r\n show = true;\r\n } else {\r\n show = false;\r\n }\r\n}\r\nelse\r\n{\r\n show = false;\r\n}", + "customConditional": "const UserDetails = JSON.parse(localStorage.getItem(\"UserDetails\"))\r\nconst roles = UserDetails[\"role\"];\r\n\r\nif(roles.includes(\"formsflow-reviewer/cssa-team\") || \r\nroles.includes(\"formsflow-reviewer/cssa-manager\") ||\r\nroles.includes(\"formsflow-reviewer/csap\") || \r\nroles.includes(\"formsflow-reviewer/csap-society\")|| \r\nroles.includes(\"formsflow-reviewer/caseworker\")|| \r\nroles.includes(\"formsflow-reviewer/sdm\")) {\r\n if (data.riskclassification === \"exempt\"){\r\n show = true;\r\n } else {\r\n show = false;\r\n }\r\n}\r\nelse\r\n{\r\n show = false;\r\n}", "conditional": { "json": "", "show": null, @@ -844,7 +859,7 @@ "block": false, "disableOnInvalid": false, "theme": "primary", - "id": "e7uk4dk" + "id": "ecp4rx8" } ], "width": 3, @@ -860,36 +875,61 @@ "label": "Next Reviewer", "action": "custom", "showValidations": false, + "theme": "primary", + "size": "md", + "block": false, + "leftIcon": "", + "rightIcon": "", + "shortcut": "", + "description": "", + "tooltip": "", + "customClass": "", + "tabindex": "", + "disableOnInvalid": false, + "hidden": false, + "autofocus": false, + "disabled": false, "tableView": false, + "modalEdit": false, "key": "sendBundleToNextReviewer", - "customConditional": "\r\nconst UserDetails = JSON.parse(localStorage.getItem(\"UserDetails\"))\r\n\r\n\r\n\r\nconst roles = UserDetails[\"role\"];\r\n\r\n\r\nif(roles.includes(\"formsflow-reviewer/cssa-team\") || \r\nroles.includes(\"formsflow-reviewer/cssa-manager\") || \r\nroles.includes(\"formsflow-reviewer/csap\") || \r\nroles.includes(\"formsflow-reviewer/csap-society\") || \r\nroles.includes(\"formsflow-reviewer/caseworker\")) {\r\n show = true;\r\n}\r\nelse\r\n{\r\n show = false;\r\n}", + "tags": [], + "properties": {}, + "conditional": { + "show": null, + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "const UserDetails = JSON.parse(localStorage.getItem(\"UserDetails\"))\r\nconst roles = UserDetails[\"role\"];\r\nif(roles.includes(\"formsflow-reviewer/cssa-team\") || \r\nroles.includes(\"formsflow-reviewer/cssa-manager\") || \r\nroles.includes(\"formsflow-reviewer/csap\") || \r\nroles.includes(\"formsflow-reviewer/csap-society\") || \r\nroles.includes(\"formsflow-reviewer/caseworker\")) \r\n{\r\n if(data.bundleStatus === 'cssaCaseworkerAccepted' ||\r\n (data.bundleStatus === 'cssaMgrAccepted' && \r\n data.typeOfReview === 'applicationViaTheSocietyOfContaminatedSitesApprovedProfessionalsOfBc'))\r\n show = false;\r\n else\r\n show = true;\r\n}\r\nelse\r\n{\r\n if(data.bundleStatus === 'cssaMgrAccepted')\r\n show = true;\r\n else\r\n show = false;\r\n}", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, "type": "button", "custom": "const UserDetails = JSON.parse(localStorage.getItem(\"UserDetails\"))\r\nconst roles = UserDetails[\"role\"];\r\nif(roles.includes(\"formsflow-reviewer/cssa-manager\") && \r\n(data.selectCssaSdm===''||data.selectCssaSdm===undefined|| \r\n(data.typeOfReview==='directToMinistryApplication'&&data.selectCssaCaseworker===undefined|| data.selectCssaCaseworker==='')))\r\n{\r\n alert('Please assign reviewers to continue!');\r\n \r\n}\r\nelse\r\n{\r\n form.emit('customEvent', {\r\n type: \"actionComplete\", \r\n component: component,\r\n actionType:'Accepted'\r\n });\r\n}", "input": true, "keyModified": true, "placeholder": "", "prefix": "", - "customClass": "", "suffix": "", "multiple": false, "defaultValue": null, "protected": false, "unique": false, "persistent": false, - "hidden": false, "clearOnHide": true, "refreshOn": "", "redrawOn": "", - "modalEdit": false, "dataGridLabel": true, "labelPosition": "top", - "description": "", "errorLabel": "", - "tooltip": "", "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, "dbIndex": false, "customDefaultValue": "", "calculateValue": "", @@ -897,7 +937,6 @@ "widget": { "type": "input" }, - "attributes": {}, "validateOn": "change", "validate": { "required": false, @@ -907,66 +946,72 @@ "multiple": false, "unique": false }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, "allowCalculateOverride": false, "encrypted": false, "showCharCount": false, "showWordCount": false, - "properties": {}, "allowMultipleMasks": false, "addons": [], - "size": "md", - "leftIcon": "", - "rightIcon": "", - "block": false, - "disableOnInvalid": false, - "theme": "primary", - "id": "e817byi" + "id": "ebxefsa" }, { "label": "Approved", "action": "custom", "showValidations": false, + "theme": "primary", + "size": "md", + "block": false, + "leftIcon": "", + "rightIcon": "", + "shortcut": "", + "description": "", + "tooltip": "", + "customClass": "", + "tabindex": "", + "disableOnInvalid": false, + "hidden": false, + "autofocus": false, + "disabled": false, "tableView": false, + "modalEdit": false, "key": "approveBundle", - "customConditional": "const UserDetails = JSON.parse(localStorage.getItem(\"UserDetails\"))\r\n\r\n\r\n\r\nconst roles = UserDetails[\"role\"];\r\n\r\n\r\nif(roles.includes(\"formsflow-reviewer/sdm\")) {\r\n show = true;\r\n}\r\nelse\r\n{\r\n show = false;\r\n}", + "tags": [], + "properties": {}, + "conditional": { + "show": null, + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "const UserDetails = JSON.parse(localStorage.getItem(\"UserDetails\"));\r\nconst roles = UserDetails[\"role\"];\r\n\r\nif((roles.includes(\"formsflow-reviewer/sdm\") &&\r\ndata.bundleStatus === 'cssaCaseworkerAccepted') ||\r\n(roles.includes(\"formsflow-reviewer/sdm\") &&\r\ndata.bundleStatus === 'cssaMgrAccepted' &&\r\ndata.typeOfReview === \"applicationViaTheSocietyOfContaminatedSitesApprovedProfessionalsOfBc\")) {\r\n show = true;\r\n}\r\nelse\r\n{\r\n show = false;\r\n}", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, "type": "button", "custom": "\r\nform.emit('customEvent', {\r\n type: \"actionComplete\", \r\n component: component,\r\n actionType: 'Approved'\r\n})", "input": true, "placeholder": "", "prefix": "", - "customClass": "", "suffix": "", "multiple": false, "defaultValue": null, "protected": false, "unique": false, "persistent": false, - "hidden": false, "clearOnHide": true, "refreshOn": "", "redrawOn": "", - "modalEdit": false, "dataGridLabel": true, "labelPosition": "top", - "description": "", "errorLabel": "", - "tooltip": "", "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, "dbIndex": false, "customDefaultValue": "", "calculateValue": "", @@ -974,7 +1019,6 @@ "widget": { "type": "input" }, - "attributes": {}, "validateOn": "change", "validate": { "required": false, @@ -984,32 +1028,13 @@ "multiple": false, "unique": false }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, "allowCalculateOverride": false, "encrypted": false, "showCharCount": false, "showWordCount": false, - "properties": {}, "allowMultipleMasks": false, "addons": [], - "size": "md", - "leftIcon": "", - "rightIcon": "", - "block": false, - "disableOnInvalid": false, - "theme": "primary", - "id": "et1slbj" + "id": "ek1owd" } ], "width": 3, @@ -1096,7 +1121,7 @@ "rightIcon": "", "block": false, "disableOnInvalid": false, - "id": "ej0ldaa" + "id": "edgjnco" } ], "size": "md", @@ -1183,7 +1208,7 @@ "rightIcon": "", "block": false, "disableOnInvalid": false, - "id": "eskq5iu" + "id": "e4xxzl" } ], "size": "md", @@ -1258,7 +1283,7 @@ "tree": false, "lazyLoad": false, "autoAdjust": false, - "id": "e086zvi" + "id": "emcpleb" } ], "keyModified": true, @@ -1300,7 +1325,7 @@ "addons": [], "tree": false, "lazyLoad": false, - "id": "ei2zeac" + "id": "ezc31jf" }, { "title": "Assign Reviewers", @@ -3834,7 +3859,7 @@ "addons": [], "inputType": "email", "inputMask": "", - "id": "eu56lhs", + "id": "es6oy", "defaultValue": "" }, { @@ -7216,7 +7241,7 @@ "addons": [], "inputType": "email", "inputMask": "", - "id": "et0ecz", + "id": "enb3fl", "defaultValue": "" } ], @@ -7325,7 +7350,7 @@ "addons": [], "tree": false, "lazyLoad": false, - "id": "ehmz9lv0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" + "id": "ehmz9lv00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" } ], "placeholder": "", @@ -8968,7 +8993,7 @@ } ], "collapsible": false, - "id": "ewhx8sm000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "id": "ewhx8sm0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", "placeholder": "", "prefix": "", "customClass": "", @@ -18136,7 +18161,7 @@ }, "inputMask": "999-999-999", "tableView": true, - "id": "elva88000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "id": "elva880000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", "placeholder": "", "prefix": "", "customClass": "", @@ -18216,7 +18241,7 @@ "tableView": true, "autoExpand": true, "inputFormat": "plain", - "id": "ey48nu000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "id": "ey48nu0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", "placeholder": "", "prefix": "", "customClass": "", @@ -18591,7 +18616,7 @@ "input": true, "label": "PIN", "tableView": true, - "id": "eyxe45n000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "id": "eyxe45n0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", "placeholder": "", "prefix": "", "customClass": "", @@ -18684,7 +18709,7 @@ "autoExpand": true, "inputFormat": "plain", "placeholder": "example, metes and bounds", - "id": "efdcvf000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "id": "efdcvf0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", "prefix": "", "customClass": "", "suffix": "", @@ -18898,7 +18923,7 @@ "input": true, "label": "Crown Land File Numbers", "tableView": true, - "id": "emf4u7g000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "id": "emf4u7g0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", "placeholder": "", "prefix": "", "customClass": "", @@ -19950,7 +19975,7 @@ }, "inputMask": "999-999-999", "tableView": true, - "id": "ev43oe9000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "id": "ev43oe90000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", "placeholder": "", "prefix": "", "customClass": "", @@ -20030,7 +20055,7 @@ "tableView": true, "autoExpand": true, "inputFormat": "plain", - "id": "eb3d0l000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "id": "eb3d0l0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", "placeholder": "", "prefix": "", "customClass": "", @@ -20405,7 +20430,7 @@ "input": true, "label": "PIN", "tableView": true, - "id": "eyv4fcu00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "id": "eyv4fcu000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", "placeholder": "", "prefix": "", "customClass": "", @@ -20498,7 +20523,7 @@ "autoExpand": true, "inputFormat": "plain", "placeholder": "example, metes and bounds", - "id": "ecgeub00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "id": "ecgeub000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", "prefix": "", "customClass": "", "suffix": "", @@ -20712,7 +20737,7 @@ "input": true, "label": "Crown Land File Numbers", "tableView": true, - "id": "eguyyh00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "id": "eguyyh000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", "placeholder": "", "prefix": "", "customClass": "", diff --git a/forms-flow-ai/epd-forms/bundling/Site Risk Classification Report.json b/forms-flow-ai/epd-forms/bundling/Site Risk Classification Report.json index 7453627c..33023841 100644 --- a/forms-flow-ai/epd-forms/bundling/Site Risk Classification Report.json +++ b/forms-flow-ai/epd-forms/bundling/Site Risk Classification Report.json @@ -995,36 +995,61 @@ "label": "Next Reviewer", "action": "custom", "showValidations": false, + "theme": "primary", + "size": "md", + "block": false, + "leftIcon": "", + "rightIcon": "", + "shortcut": "", + "description": "", + "tooltip": "", + "customClass": "", + "tabindex": "", + "disableOnInvalid": false, + "hidden": false, + "autofocus": false, + "disabled": false, "tableView": false, + "modalEdit": false, "key": "sendToNextReviewer", - "customConditional": "\r\nconst UserDetails = JSON.parse(localStorage.getItem(\"UserDetails\"))\r\n\r\n\r\n\r\nconst roles = UserDetails[\"role\"];\r\n\r\n\r\nif(roles.includes(\"formsflow-reviewer/site-risk-classification-officer\") || roles.includes(\"formsflow-reviewer/caseworker\")) {\r\n show = true;\r\n}\r\nelse\r\n{\r\n show = false;\r\n}", + "tags": [], + "properties": {}, + "conditional": { + "show": null, + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "const UserDetails = JSON.parse(localStorage.getItem(\"UserDetails\"))\r\nconst roles = UserDetails[\"role\"];\r\n\r\nif(roles.includes(\"formsflow-reviewer/site-risk-classification-officer\")) \r\n{\r\n show = true;\r\n}\r\nelse if (roles.includes(\"formsflow-reviewer/caseworker\") &&\r\ndata.srcrBundleStatus === \"srcrSrcoAccepted\")\r\n{\r\n if (data.typeOfReview === \"applicationViaTheSocietyOfContaminatedSitesApprovedProfessionalsOfBc\" ||\r\n data.siteRiskClassification !== 'notHighRisk')\r\n show = false;\r\nelse\r\n show = true;\r\n}\r\nelse\r\n{\r\n show = false;\r\n}", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, "type": "button", "custom": "const submissionId = form._submission._id;\r\nconst formId = form._submission.form;\r\nconst formDataReqUrl = form.formio?form.formio.formUrl:(localStorage.getItem('customSubmissionUrl')+'/form/'+formId)+'/submission/'+submissionId;\r\nconst filteredData = _.pick(data, data.srcrUtilKeys);\r\nconst formDataReqObj1 = { \"_id\": submissionId, \"data\": filteredData};\r\nconst formio = new Formio(formDataReqUrl);\r\nformio.saveSubmission(formDataReqObj1).then( result => {\r\nform.emit('customEvent', {\r\n type: \"actionComplete\", \r\n component: component,\r\n actionType: 'Accepted'\r\n }); \r\n}).catch((error)=>{\r\n//Error callback on not Save\r\nform.emit('customEvent', {\r\n type: \"actionError\", \r\n component: component,\r\n actionType:'srcoAccepted'\r\n }); \r\n});", "input": true, "keyModified": true, "placeholder": "", "prefix": "", - "customClass": "", "suffix": "", "multiple": false, "defaultValue": null, "protected": false, "unique": false, "persistent": false, - "hidden": false, "clearOnHide": true, "refreshOn": "", "redrawOn": "", - "modalEdit": false, "dataGridLabel": true, "labelPosition": "top", - "description": "", "errorLabel": "", - "tooltip": "", "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, "dbIndex": false, "customDefaultValue": "", "calculateValue": "", @@ -1032,7 +1057,6 @@ "widget": { "type": "input" }, - "attributes": {}, "validateOn": "change", "validate": { "required": false, @@ -1042,66 +1066,72 @@ "multiple": false, "unique": false }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, "allowCalculateOverride": false, "encrypted": false, "showCharCount": false, "showWordCount": false, - "properties": {}, "allowMultipleMasks": false, "addons": [], - "size": "md", - "leftIcon": "", - "rightIcon": "", - "block": false, - "disableOnInvalid": false, - "theme": "primary", - "id": "ehzyts" + "id": "eznm0q" }, { "label": "Approved", "action": "custom", "showValidations": false, + "theme": "primary", + "size": "md", + "block": false, + "leftIcon": "", + "rightIcon": "", + "shortcut": "", + "description": "", + "tooltip": "", + "customClass": "", + "tabindex": "", + "disableOnInvalid": false, + "hidden": false, + "autofocus": false, + "disabled": false, "tableView": false, + "modalEdit": false, "key": "approve", - "customConditional": "const UserDetails = JSON.parse(localStorage.getItem(\"UserDetails\"))\r\n\r\n\r\n\r\nconst roles = UserDetails[\"role\"];\r\n\r\n\r\nif(roles.includes(\"formsflow-reviewer/sdm\")) {\r\n show = true;\r\n}\r\nelse\r\n{\r\n show = false;\r\n}", + "tags": [], + "properties": {}, + "conditional": { + "show": null, + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "const UserDetails = JSON.parse(localStorage.getItem(\"UserDetails\"));\r\nconst roles = UserDetails[\"role\"];\r\n\r\nif(roles.includes(\"formsflow-reviewer/sdm\")) {\r\n if (data.srcrBundleStatus === \"srcrCaseworkerAccepted\") \r\n show = true;\r\n else if (data.srcrBundleStatus === \"srcrSrcoAccepted\") {\r\n if (data.typeOfReview === \"applicationViaTheSocietyOfContaminatedSitesApprovedProfessionalsOfBc\" ||\r\n data.siteRiskClassification !== 'notHighRisk')\r\n show = true;\r\n else\r\n show = false;\r\n }\r\n}\r\nelse\r\n{\r\n show = false;\r\n}", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, "type": "button", "custom": "const submissionId = form._submission._id;\r\nconst formId = form._submission.form;\r\nconst formDataReqUrl = form.formio?form.formio.formUrl:(localStorage.getItem('customSubmissionUrl')+'/form/'+formId)+'/submission/'+submissionId;\r\nconst filteredData = _.pick(data, data.srcrUtilKeys);\r\nconst formDataReqObj1 = { \"_id\": submissionId, \"data\": filteredData};\r\nconst formio = new Formio(formDataReqUrl);\r\nformio.saveSubmission(formDataReqObj1).then( result => {\r\nform.emit('customEvent', {\r\n type: \"actionComplete\", \r\n component: component,\r\n actionType: 'Approved'\r\n }); \r\n}).catch((error)=>{\r\n//Error callback on not Save\r\nform.emit('customEvent', {\r\n type: \"actionError\", \r\n component: component,\r\n actionType:'Approved'\r\n }); \r\n});", "input": true, "placeholder": "", "prefix": "", - "customClass": "", "suffix": "", "multiple": false, "defaultValue": null, "protected": false, "unique": false, "persistent": false, - "hidden": false, "clearOnHide": true, "refreshOn": "", "redrawOn": "", - "modalEdit": false, "dataGridLabel": true, "labelPosition": "top", - "description": "", "errorLabel": "", - "tooltip": "", "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, "dbIndex": false, "customDefaultValue": "", "calculateValue": "", @@ -1109,7 +1139,6 @@ "widget": { "type": "input" }, - "attributes": {}, "validateOn": "change", "validate": { "required": false, @@ -1119,32 +1148,13 @@ "multiple": false, "unique": false }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, "allowCalculateOverride": false, "encrypted": false, "showCharCount": false, "showWordCount": false, - "properties": {}, "allowMultipleMasks": false, "addons": [], - "size": "md", - "leftIcon": "", - "rightIcon": "", - "block": false, - "disableOnInvalid": false, - "theme": "primary", - "id": "etis9h8" + "id": "en5bg5o" } ], "width": 3, @@ -1185,7 +1195,7 @@ "eq": "", "json": "" }, - "customConditional": "const UserDetails = JSON.parse(localStorage.getItem(\"UserDetails\"));\r\nconst roles = UserDetails[\"role\"];\r\nconst taskUrl = window.location.pathname.split('/');\r\nconst taskId = taskUrl[2];\r\nconst authToken = localStorage.getItem(\"authToken\");\r\nconst bpmUrl = localStorage.getItem(\"bpmApiUrl\");\r\nvar reqUrl = bpmUrl + \"/task/\" + taskId + \"/variables\";\r\n\r\n getData(reqUrl, authToken).then((response) => {\r\n\t\tconsole.log('response',response);\r\n \r\n \t\t var applicationStatus = response.applicationStatus?response.applicationStatus.value:'';\r\n\t if(response.deraStatus.value === 'Returned'){\r\n \t\t component.disabled = true;\r\n\t component.description = 'Disabled since DERA resubmission in progress';\r\n\t instance.triggerRedraw();\r\n\r\n\t }\r\n\t else if (applicationStatus === 'Resubmit') {\r\n\r\n\t component.disabled = true;\r\n\t component.description = 'Disabled since CSSA resubmission in progress';\r\n\t instance.triggerRedraw();\r\n\t } else {\r\n\t component.description = '';\r\n\t component.disabled = false;\r\n\t instance.triggerRedraw();\r\n\t }\r\n\t \r\n });\r\n\r\n\r\nasync function getData(reqUrl, authToken) {\r\n const response = await fetch(reqUrl, {\r\n method: \"GET\",\r\n headers: {\r\n \"Content-type\": \"application/json\",\r\n Accept: \"application/json\",\r\n Authorization: \"Bearer \" + authToken,\r\n },\r\n });\r\n const data = await response.json();\r\n return data;\r\n}", + "customConditional": "const UserDetails = JSON.parse(localStorage.getItem(\"UserDetails\"));\r\nconst roles = UserDetails[\"role\"];\r\nconst taskUrl = window.location.pathname.split('/');\r\nconst taskId = taskUrl[2];\r\nconst authToken = localStorage.getItem(\"authToken\");\r\nconst bpmUrl = localStorage.getItem(\"bpmApiUrl\");\r\nvar reqUrl = bpmUrl + \"/task/\" + taskId + \"/variables\";\r\n\r\n getData(reqUrl, authToken).then((response) => {\r\n \r\n \t\t var applicationStatus = response.applicationStatus?response.applicationStatus.value:'';\r\n\t if(response.deraStatus && response.deraStatus.value === 'Returned'){\r\n \t\t component.disabled = true;\r\n\t component.description = 'Disabled since DERA resubmission in progress';\r\n\t instance.triggerRedraw();\r\n\r\n\t }\r\n\t else if (applicationStatus === 'Resubmit') {\r\n\r\n\t component.disabled = true;\r\n\t component.description = 'Disabled since CSSA resubmission in progress';\r\n\t instance.triggerRedraw();\r\n\t } else {\r\n\t component.description = '';\r\n\t component.disabled = false;\r\n\t instance.triggerRedraw();\r\n\t }\r\n\t \r\n });\r\n\r\n\r\nasync function getData(reqUrl, authToken) {\r\n const response = await fetch(reqUrl, {\r\n method: \"GET\",\r\n headers: {\r\n \"Content-type\": \"application/json\",\r\n Accept: \"application/json\",\r\n Authorization: \"Bearer \" + authToken,\r\n },\r\n });\r\n const data = await response.json();\r\n return data;\r\n}", "logic": [], "attributes": {}, "overlay": { @@ -1236,7 +1246,7 @@ "showWordCount": false, "allowMultipleMasks": false, "addons": [], - "id": "eia18mo" + "id": "epaslsk" } ], "size": "md", @@ -5059,7 +5069,7 @@ "attributes": {}, "components": [ { - "id": "ele95t000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "id": "ele95t0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", "key": "spropertyOwnerAndOrOperator", "tree": false, "type": "panel", @@ -14471,7 +14481,7 @@ "attributes": {}, "components": [ { - "id": "eks0gu00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "id": "eks0gu000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", "key": "exposurePathwayQuestionnaireAffectedParcel", "tree": false, "type": "panel", @@ -18414,7 +18424,7 @@ } ], "collapsible": false, - "id": "eo5mwyp000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "id": "eo5mwyp0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", "placeholder": "", "prefix": "", "customClass": "", @@ -19583,6 +19593,77 @@ "inputType": "hidden", "id": "e12wr4" }, + { + "label": "srcrBundleStatus", + "customClass": "", + "modalEdit": false, + "defaultValue": null, + "persistent": true, + "protected": false, + "dbIndex": false, + "encrypted": false, + "redrawOn": "", + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "key": "srcrBundleStatus", + "tags": [], + "properties": {}, + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "hidden", + "input": true, + "tableView": false, + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "unique": false, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "widget": { + "type": "input" + }, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "allowCalculateOverride": false, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "inputType": "hidden", + "id": "ec2f3y" + }, { "label": "srcrUtilKeys", "customClass": "", From 9b5f1a551748e17e493a96fe7b6c172ffe619227 Mon Sep 17 00:00:00 2001 From: nikhila-aot Date: Tue, 3 Oct 2023 11:51:14 -0700 Subject: [PATCH 111/194] fixing some issues --- .../Summary of Site Condition-Bundle.json | 44865 ---------------- .../bundling/Summary of Site Condition.json | 92 +- .../SOSCBundleWorklow.bpmn | 442 +- 3 files changed, 185 insertions(+), 45214 deletions(-) delete mode 100644 forms-flow-ai/epd-forms/bundling/Summary of Site Condition-Bundle.json rename forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/processes/Bundling/{callActivity => subProcess}/SOSCBundleWorklow.bpmn (91%) diff --git a/forms-flow-ai/epd-forms/bundling/Summary of Site Condition-Bundle.json b/forms-flow-ai/epd-forms/bundling/Summary of Site Condition-Bundle.json deleted file mode 100644 index 57a9b046..00000000 --- a/forms-flow-ai/epd-forms/bundling/Summary of Site Condition-Bundle.json +++ /dev/null @@ -1,44865 +0,0 @@ -{ - "forms": [ - { - "title": "Summary of Site Condition", - "display": "form", - "type": "form", - "name": "summaryOfSiteConditionBundle", - "path": "summaryofsiteconditionbundle", - "tags": [ - "common" - ], - "components": [ - { - "title": "Reviewer Actions", - "collapsible": false, - "hideLabel": true, - "key": "reviewerActions", - "customConditional": "const UserDetails = JSON.parse(localStorage.getItem(\"UserDetails\"));\r\nconst roles = UserDetails[\"role\"];\r\nif(roles.includes(\"formsflow-client\") || \r\nroles.includes(\"formsflow-reviewer/cssa-team\") || \r\nroles.includes(\"formsflow-reviewer/cssa-manager\")|| \r\nroles.includes(\"formsflow-reviewer/csap\") || \r\nroles.includes(\"formsflow-reviewer/csap-society\") ||\r\nroles.includes(\"formsflow-reviewer/formsflow-client-reviewer\")) {\r\n show = false;\r\n}\r\nelse\r\n{\r\n if (data.riskclassification === \"exempt\") {\r\n show = false;\r\n } else {\r\n show = true;\r\n }\r\n}", - "type": "panel", - "label": "Panel", - "input": false, - "tableView": false, - "components": [ - { - "label": "Columns", - "columns": [ - { - "components": [ - { - "label": "Previous Reviewer", - "action": "custom", - "showValidations": false, - "tableView": false, - "key": "prevReviewer", - "customConditional": "const UserDetails = JSON.parse(localStorage.getItem(\"UserDetails\"))\r\n\r\nconst roles = UserDetails[\"role\"];\r\n\r\n\r\nif(roles.includes(\"formsflow-reviewer\") && \r\n!roles.includes(\"formsflow-reviewer/caseworker\") &&\r\n!(roles.includes(\"formsflow-reviewer/sdm\") && data.typeOfReview === \"applicationViaTheSocietyOfContaminatedSitesApprovedProfessionalsOfBc\")) {\r\n show = true;\r\n}\r\nelse\r\n{\r\n show = false;\r\n}", - "type": "button", - "custom": "const submissionId = form._submission._id;\r\nconst formId = form._submission.form;\r\nconst formDataReqUrl = form.formio?form.formio.formUrl:(localStorage.getItem('customSubmissionUrl')+'/form/'+formId)+'/submission/'+submissionId;\r\nconst filteredData = _.pick(data, data.cssaUtilKeys);\r\nconst formDataReqObj1 = { \"_id\": submissionId, \"data\": filteredData};\r\nconst formio = new Formio(formDataReqUrl);\r\nformio.saveSubmission(formDataReqObj1).then( result => {\r\nform.emit('customEvent', {\r\n type: \"actionComplete\", \r\n component: component,\r\n actionType: 'Recheck'\r\n }); \r\n}).catch((error)=>{\r\n//Error callback on not Save\r\nform.emit('customEvent', {\r\n type: \"actionError\", \r\n component: component,\r\n actionType:'Recheck'\r\n }); \r\n});", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": true, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "size": "md", - "leftIcon": "", - "rightIcon": "", - "block": false, - "disableOnInvalid": false, - "theme": "primary", - "id": "egxsp3h" - } - ], - "offset": 0, - "push": 0, - "pull": 0, - "size": "md", - "currentWidth": 3, - "width": 3 - }, - { - "components": [ - { - "label": "Next Reviewer", - "action": "custom", - "showValidations": false, - "tableView": false, - "key": "nextReviewer", - "customConditional": "const UserDetails = JSON.parse(localStorage.getItem(\"UserDetails\"));\r\n\r\nconst roles = UserDetails[\"role\"];\r\n\r\nif(roles.includes(\"formsflow-reviewer/caseworker\")) {\r\n show = true;\r\n}\r\nelse\r\n{\r\n show = false;\r\n}", - "type": "button", - "custom": "const submissionId = form._submission._id;\r\nconst formId = form._submission.form;\r\nconst formDataReqUrl = form.formio?form.formio.formUrl:(localStorage.getItem('customSubmissionUrl')+'/form/'+formId)+'/submission/'+submissionId;\r\n\r\nconst filteredData = _.pick(data, data.cssaUtilKeys);\r\n\r\nconst formDataReqObj1 = { \"_id\": submissionId, \"data\": filteredData};\r\nconst formio = new Formio(formDataReqUrl);\r\nformio.saveSubmission(formDataReqObj1).then( result => {\r\nform.emit('customEvent', {\r\n type: \"actionComplete\", \r\n component: component,\r\n actionType: 'Accepted'\r\n }); \r\n}).catch((error)=>{\r\n//Error callback on not Save\r\nform.emit('customEvent', {\r\n type: \"actionError\", \r\n component: component,\r\n actionType:'Accepted'\r\n }); \r\n});", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": true, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "size": "md", - "leftIcon": "", - "rightIcon": "", - "block": false, - "disableOnInvalid": false, - "theme": "primary", - "id": "e8ywitm" - }, - { - "label": "Approved", - "action": "custom", - "showValidations": false, - "tableView": false, - "key": "approved", - "customConditional": "const UserDetails = JSON.parse(localStorage.getItem(\"UserDetails\"));\r\n\r\nconst roles = UserDetails[\"role\"];\r\n\r\nif(roles.includes(\"formsflow-reviewer/sdm\")) {\r\n show = true;\r\n}\r\nelse\r\n{\r\n show = false;\r\n}", - "type": "button", - "custom": "\r\nconst submissionId = form._submission._id;\r\nconst formId = form._submission.form;\r\nconst formDataReqUrl = form.formio?form.formio.formUrl:(localStorage.getItem('customSubmissionUrl')+'/form/'+formId)+'/submission/'+submissionId;\r\nconst filteredData = _.pick(data, data.cssaUtilKeys);\r\nconst formDataReqObj1 = { \"_id\": submissionId, \"data\": filteredData};\r\nconst formio = new Formio(formDataReqUrl);\r\nformio.saveSubmission(formDataReqObj1).then( result => {\r\nform.emit('customEvent', {\r\n type: \"actionComplete\", \r\n component: component,\r\n actionType: 'Approved'\r\n }); \r\n}).catch((error)=>{\r\n//Error callback on not Save\r\nform.emit('customEvent', {\r\n type: \"actionError\", \r\n component: component,\r\n actionType:'Approved'\r\n }); \r\n});\r\n", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": true, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "size": "md", - "leftIcon": "", - "rightIcon": "", - "block": false, - "disableOnInvalid": false, - "theme": "primary", - "id": "evn8m09" - } - ], - "width": 3, - "offset": 0, - "push": 0, - "pull": 0, - "size": "md", - "currentWidth": 3 - }, - { - "components": [ - { - "label": "Needs More Info", - "action": "custom", - "showValidations": false, - "theme": "warning", - "disabled": true, - "tableView": false, - "key": "needsMoreInfo", - "customConditional": "const UserDetails = JSON.parse(localStorage.getItem(\"UserDetails\"));\r\nconst roles = UserDetails[\"role\"];\r\nconst taskUrl = window.location.pathname.split('/');\r\nconst taskId = taskUrl[2];\r\nconst authToken = localStorage.getItem(\"authToken\");\r\nconst bpmUrl = localStorage.getItem(\"bpmApiUrl\");\r\nvar reqUrl = bpmUrl + \"/task/\" + taskId + \"/variables\";\r\n\r\n\r\n getData(reqUrl, authToken).then((response) => {\r\n \r\n\t if(roles.includes(\"formsflow-reviewer\")) {\r\n \tvar applicationStatus = response.applicationStatus ? response.applicationStatus.value : '';\r\n \t show = true;\r\n \t \r\n\r\n \t\t\r\n\t if (applicationStatus === 'Resubmit') {\r\n\t component.disabled = true;\r\n\t component.description = 'Disabled since SRCR resubmission in progress';\r\n\t instance.triggerRedraw();\r\n\t } else {\r\n\t component.description = '';\r\n\t component.disabled = false;\r\n\t instance.triggerRedraw();\r\n\t }\r\n\t }\r\n\t else\r\n\t {\r\n \t\tshow = false;\r\n\t }\r\n });\r\n\r\n\r\nasync function getData(reqUrl, authToken) {\r\n const response = await fetch(reqUrl, {\r\n method: \"GET\",\r\n headers: {\r\n \"Content-type\": \"application/json\",\r\n Accept: \"application/json\",\r\n Authorization: \"Bearer \" + authToken,\r\n },\r\n });\r\n const data = await response.json();\r\n return data;\r\n}", - "type": "button", - "custom": "const submissionId = form._submission._id;\r\nconst formId = form._submission.form;\r\nconst formDataReqUrl = form.formio?form.formio.formUrl:(localStorage.getItem('customSubmissionUrl')+'/form/'+formId)+'/submission/'+submissionId;+submissionId;\r\nconst filteredData = _.pick(data, data.cssaUtilKeys);\r\nconst formDataReqObj1 = { \"_id\": submissionId, \"data\": filteredData};\r\nconst formio = new Formio(formDataReqUrl);\r\nformio.saveSubmission(formDataReqObj1).then( result => {\r\nform.emit('customEvent', {\r\n type: \"actionComplete\", \r\n component: component,\r\n actionType: 'Returned'\r\n }); \r\n}).catch((error)=>{\r\n//Error callback on not Save\r\nform.emit('customEvent', {\r\n type: \"actionError\", \r\n component: component,\r\n actionType:'Returned'\r\n }); \r\n});", - "input": true, - "redrawOn": "textField", - "keyModified": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "modalEdit": false, - "dataGridLabel": true, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "size": "md", - "leftIcon": "", - "rightIcon": "", - "block": false, - "disableOnInvalid": false, - "id": "e5ues4" - } - ], - "size": "md", - "width": 3, - "offset": 0, - "push": 0, - "pull": 0, - "currentWidth": 3 - }, - { - "components": [ - { - "label": "Reject Form", - "action": "custom", - "showValidations": false, - "theme": "danger", - "tableView": false, - "key": "rejected", - "customConditional": "const UserDetails = JSON.parse(localStorage.getItem(\"UserDetails\"))\r\n\r\nconst roles = UserDetails[\"role\"];\r\n\r\nif(roles.includes(\"formsflow-reviewer\") && \r\n!(roles.includes(\"formsflow-reviewer/csap\") ||\r\nroles.includes(\"formsflow-reviewer/csap-society\"))) {\r\n show = true;\r\n}\r\nelse\r\n{\r\n show = false;\r\n}", - "type": "button", - "custom": "const submissionId = form._submission._id;\r\nconst formId = form._submission.form;\r\nconst formDataReqUrl = form.formio?form.formio.formUrl:(localStorage.getItem('customSubmissionUrl')+'/form/'+formId)+'/submission/'+submissionId;\r\nconst filteredData = _.pick(data, data.cssaUtilKeys);\r\nconst formDataReqObj1 = { \"_id\": submissionId, \"data\": filteredData};\r\nconst formio = new Formio(formDataReqUrl);\r\nformio.saveSubmission(formDataReqObj1).then( result => {\r\nform.emit('customEvent', {\r\n type: \"actionComplete\", \r\n component: component,\r\n actionType: 'Rejected'\r\n }); \r\n}).catch((error)=>{\r\n//Error callback on not Save\r\nform.emit('customEvent', {\r\n type: \"actionError\", \r\n component: component,\r\n actionType:'Rejected'\r\n }); \r\n});\r\n", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": true, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "size": "md", - "leftIcon": "", - "rightIcon": "", - "block": false, - "disableOnInvalid": false, - "id": "eeuquma" - } - ], - "size": "md", - "width": 3, - "offset": 0, - "push": 0, - "pull": 0, - "currentWidth": 3 - } - ], - "hideLabel": true, - "key": "columns", - "type": "columns", - "input": false, - "tableView": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "hidden": false, - "clearOnHide": false, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "tree": false, - "lazyLoad": false, - "autoAdjust": false, - "id": "e9sdimc" - } - ], - "keyModified": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "hidden": false, - "clearOnHide": false, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "tree": false, - "lazyLoad": false, - "theme": "default", - "breadcrumb": "default", - "id": "e3fjtw" - }, - { - "title": "Reviewer Actions", - "collapsible": false, - "key": "cssaBundleActions", - "customConditional": "\r\nconst UserDetails = JSON.parse(localStorage.getItem(\"UserDetails\"))\r\nconst roles = UserDetails[\"role\"];\r\n\r\nif(roles.includes(\"formsflow-reviewer/cssa-team\") || \r\nroles.includes(\"formsflow-reviewer/cssa-manager\") ||\r\nroles.includes(\"formsflow-reviewer/csap\") || \r\nroles.includes(\"formsflow-reviewer/csap-society\")|| \r\nroles.includes(\"formsflow-reviewer/caseworker\")|| \r\nroles.includes(\"formsflow-reviewer/sdm\")) {\r\n if (data.riskclassification === \"exempt\"){\r\n show = true;\r\n } else {\r\n show = false;\r\n }\r\n}\r\nelse\r\n{\r\n show = false;\r\n}", - "type": "panel", - "label": "Panel", - "input": false, - "tableView": false, - "components": [ - { - "label": "Columns", - "columns": [ - { - "components": [ - { - "label": "Previous Reviewer", - "action": "custom", - "showValidations": false, - "tableView": false, - "key": "sendBundleToPreviousReviewer", - "customConditional": "const UserDetails = JSON.parse(localStorage.getItem(\"UserDetails\"))\r\n\r\n\r\n\r\nconst roles = UserDetails[\"role\"];\r\n\r\n\r\nif(\r\n(roles.includes(\"formsflow-reviewer/csap\") || roles.includes(\"formsflow-reviewer/cssa-team\")) && \r\n(data.applicationStatus===\"New\" || data.applicationStatus===\"Resubmitted\" || data.applicationStatus===\"Recheck\") \r\n) {\r\n show = false;\r\n}\r\nelse\r\n{\r\n show = true;\r\n}", - "type": "button", - "custom": "form.emit('customEvent', {\r\n type: \"actionComplete\", \r\n component: component,\r\n actionType:'Recheck'\r\n });", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": true, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "size": "md", - "leftIcon": "", - "rightIcon": "", - "block": false, - "disableOnInvalid": false, - "theme": "primary", - "id": "e9xv8c" - } - ], - "width": 3, - "offset": 0, - "push": 0, - "pull": 0, - "size": "md", - "currentWidth": 3 - }, - { - "components": [ - { - "label": "Next Reviewer", - "action": "custom", - "showValidations": false, - "tableView": false, - "key": "sendBundleToNextReviewer", - "customConditional": "\r\nconst UserDetails = JSON.parse(localStorage.getItem(\"UserDetails\"))\r\n\r\n\r\n\r\nconst roles = UserDetails[\"role\"];\r\n\r\n\r\nif(roles.includes(\"formsflow-reviewer/cssa-team\") || \r\nroles.includes(\"formsflow-reviewer/cssa-manager\") || \r\nroles.includes(\"formsflow-reviewer/csap\") || \r\nroles.includes(\"formsflow-reviewer/csap-society\") || \r\nroles.includes(\"formsflow-reviewer/caseworker\")) {\r\n show = true;\r\n}\r\nelse\r\n{\r\n show = false;\r\n}", - "type": "button", - "custom": "const UserDetails = JSON.parse(localStorage.getItem(\"UserDetails\"))\r\nconst roles = UserDetails[\"role\"];\r\nif(roles.includes(\"formsflow-reviewer/cssa-manager\") && \r\n(data.selectCssaSdm===''||data.selectCssaSdm===undefined|| \r\n(data.typeOfReview==='directToMinistryApplication'&&data.selectCssaCaseworker===undefined|| data.selectCssaCaseworker==='')))\r\n{\r\n alert('Please assign reviewers to continue!');\r\n \r\n}\r\nelse\r\n{\r\n form.emit('customEvent', {\r\n type: \"actionComplete\", \r\n component: component,\r\n actionType:'Accepted'\r\n });\r\n}", - "input": true, - "keyModified": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": true, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "size": "md", - "leftIcon": "", - "rightIcon": "", - "block": false, - "disableOnInvalid": false, - "theme": "primary", - "id": "e5d0iuo" - }, - { - "label": "Approved", - "action": "custom", - "showValidations": false, - "tableView": false, - "key": "approveBundle", - "customConditional": "const UserDetails = JSON.parse(localStorage.getItem(\"UserDetails\"))\r\n\r\n\r\n\r\nconst roles = UserDetails[\"role\"];\r\n\r\n\r\nif(roles.includes(\"formsflow-reviewer/sdm\")) {\r\n show = true;\r\n}\r\nelse\r\n{\r\n show = false;\r\n}", - "type": "button", - "custom": "\r\nform.emit('customEvent', {\r\n type: \"actionComplete\", \r\n component: component,\r\n actionType: 'Approved'\r\n})", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": true, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "size": "md", - "leftIcon": "", - "rightIcon": "", - "block": false, - "disableOnInvalid": false, - "theme": "primary", - "id": "eu9gwi" - } - ], - "width": 3, - "offset": 0, - "push": 0, - "pull": 0, - "size": "md", - "currentWidth": 3 - }, - { - "components": [ - { - "label": "Needs More Info", - "action": "custom", - "showValidations": false, - "theme": "warning", - "tableView": false, - "key": "sendBundleToApplicant", - "customConditional": "const UserDetails = JSON.parse(localStorage.getItem(\"UserDetails\"))\r\nconst roles = UserDetails[\"role\"];\r\n\r\nif(roles.includes(\"formsflow-reviewer/cssa-manager\")) {\r\n show = false;\r\n}\r\nelse\r\n{\r\n show = true;\r\n}", - "type": "button", - "custom": "form.emit('customEvent', {\r\n type: \"actionComplete\", \r\n component: component,\r\n actionType:'Returned'\r\n });", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": true, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "size": "md", - "leftIcon": "", - "rightIcon": "", - "block": false, - "disableOnInvalid": false, - "id": "esfoixl" - } - ], - "size": "md", - "width": 3, - "offset": 0, - "push": 0, - "pull": 0, - "currentWidth": 3 - }, - { - "components": [ - { - "label": "Reject Form", - "action": "custom", - "showValidations": false, - "theme": "danger", - "tableView": false, - "key": "rejectBundle", - "customConditional": "const UserDetails = JSON.parse(localStorage.getItem(\"UserDetails\"))\r\n\r\nconst roles = UserDetails[\"role\"];\r\n\r\nif(roles.includes(\"formsflow-reviewer\") && \r\n!(roles.includes(\"formsflow-reviewer/cssa-manager\") || \r\nroles.includes(\"formsflow-reviewer/csap\") ||\r\nroles.includes(\"formsflow-reviewer/csap-society\"))) {\r\n show = true;\r\n}\r\nelse\r\n{\r\n show = false;\r\n}", - "type": "button", - "custom": "\r\nform.emit('customEvent', {\r\n type: \"actionComplete\", \r\n component: component,\r\n actionType: 'Rejected'\r\n}); ", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": true, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "size": "md", - "leftIcon": "", - "rightIcon": "", - "block": false, - "disableOnInvalid": false, - "id": "eh5xh0h" - } - ], - "size": "md", - "width": 3, - "offset": 0, - "push": 0, - "pull": 0, - "currentWidth": 3 - } - ], - "key": "columns", - "type": "columns", - "input": false, - "tableView": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "hidden": false, - "clearOnHide": false, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "tree": false, - "lazyLoad": false, - "autoAdjust": false, - "id": "epe166" - } - ], - "keyModified": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "hidden": false, - "clearOnHide": false, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "tree": false, - "lazyLoad": false, - "theme": "default", - "breadcrumb": "default", - "id": "eiaowx6" - }, - { - "label": "Edit Grid", - "labelPosition": "top", - "description": "", - "tooltip": "", - "customClass": "", - "tabindex": "", - "openWhenEmpty": false, - "disableAddingRemovingRows": false, - "conditionalAddButton": "", - "hidden": false, - "hideLabel": true, - "autofocus": false, - "disabled": false, - "tableView": true, - "modalEdit": false, - "templates": { - "header": "\r\n{% console.log(\"row-key header\",'commentFor',row['commentFor']) %}\r\n{% const UserDetails = JSON.parse(localStorage.getItem(\"UserDetails\"))%}\r\n{% const groups = UserDetails[\"groups\"]; %}\r\n\r\n{% if(groups.includes(\"/formsflow/formsflow-reviewer/formsflow-client-reviewer\") || groups.includes(\"/formsflow/formsflow-reviewer/lrs-approving-authority\") || groups.includes(\"/formsflow/formsflow-client\")){ %}\r\n\r\n
\r\n {% util.eachComponent(components, function(component) { %}\r\n {% if (displayValue(component) && component.key !== 'commentFor' ) { %}\r\n {% if(component.label === 'Notes') { %}\r\n
{{ t(component.label) }}
\r\n {% } else if(component.key !== 'comments') { %}\r\n
{{ t(component.label) }}
\r\n {% } %}\r\n {% } %}\r\n {% }) %}\r\n
\r\n\r\n{% } else { %}\r\n\r\n
\r\n {% util.eachComponent(components, function(component) { %}\r\n {% if (displayValue(component)) { %}\r\n {% if(component.key == 'comments') { %}\r\n
{{ t(component.label)}}
\r\n{% } else { %}\r\n
{{ t(component.label)}}
\r\n{% } %} \r\n {% } %}\r\n {% }) %}\r\n
\r\n\r\n{% } %}", - "tableHeader": "\n
\n {% util.eachComponent(components, function(component) { %}\n {% if (!component.hasOwnProperty('tableView') || component.tableView) { %}\n \n {% } %}\n {% }) %}\n {% if (!instance.options.readOnly && !instance.disabled) { %}\n \n {% } %}\n \n ", - "row": "{% console.log(\"row-key main\",'commentFor',row['commentFor']) %}\r\n{% const UserDetails = JSON.parse(localStorage.getItem(\"UserDetails\"))%}\r\n{% const groups = UserDetails[\"groups\"]; %}\r\n\r\n{% if((groups.includes(\"/formsflow/formsflow-reviewer/formsflow-client-reviewer\") || groups.includes(\"/formsflow/formsflow-reviewer/lrs-approving-authority\") || groups.includes(\"/formsflow/formsflow-client\")) && row['commentFor']==='external'){ %}\r\n\r\n\r\n\r\n
\r\n\r\n {% util.eachComponent(components, function(component) { %}\r\n {% if (displayValue(component) && component.key !== 'commentFor' ) { %}\r\n {% console.log(\"row-key\",component.key,row[component.key]) %}\r\n {% const UserDetails = JSON.parse(localStorage.getItem(\"UserDetails\"))%}\r\n{% const groups = UserDetails[\"groups\"]; %}\r\n{% if((groups.includes(\"/formsflow/formsflow-reviewer/formsflow-client-reviewer\") || groups.includes(\"/formsflow/formsflow-reviewer/lrs-approving-authority\") || groups.includes(\"/formsflow/formsflow-client\")) && row['commentFor']==='external'){ %}\r\n{% if(component.key == 'comments') { %}\r\n
\r\n {{ getView(component, row[component.key])}}\r\n
\r\n{% } else { %}\r\n
\r\n {{ getView(component, row[component.key])}}\r\n
\r\n{%}%}\r\n \r\n\r\n {% } %}\r\n {% } %}\r\n {% }) %}\r\n {% if (!instance.options.readOnly && !instance.disabled) { %}\r\n {% const UserDetails = JSON.parse(localStorage.getItem(\"UserDetails\"))%}\r\n{% const groups = UserDetails[\"groups\"]; %}\r\n{% if((groups.includes(\"/formsflow/formsflow-reviewer/formsflow-client-reviewer\") || groups.includes(\"/formsflow/formsflow-reviewer/lrs-approving-authority\") || groups.includes(\"/formsflow/formsflow-client\")) && row['commentFor']==='external'){ %}\r\n
\r\n
\r\n \r\n {% if (!instance.hasRemoveButtons || instance.hasRemoveButtons()) { %}\r\n \r\n {% } %}\r\n
\r\n
\r\n \r\n {% } %}\r\n {% } %}\r\n
\r\n {% } else if (groups.includes(\"/formsflow/formsflow-reviewer/site-information-advisor\")) { %}\r\n
\r\n {% util.eachComponent(components, function(component) { %}\r\n {% console.log('for sia') %}\r\n {% if (displayValue(component)) { %}\r\n {% if(component.key == 'comments') { %}\r\n
{{ getView(component, row[component.key])}}
\r\n{% } else { %}\r\n
{{ getView(component, row[component.key])}}
\r\n{% } %} \r\n \r\n {% } %}\r\n {% }) %}\r\n {% if (!instance.options.readOnly && !instance.disabled) { %}\r\n
\r\n
\r\n \r\n {% if (!instance.hasRemoveButtons || instance.hasRemoveButtons()) { %}\r\n \r\n {% } %}\r\n
\r\n
\r\n {% } %}\r\n
\r\n {% } %}\r\n \r\n \r\n \r\n{% const emptyElements = []; %}\r\n{% const elements = document.getElementsByClassName(\"list-group-item\"); %}\r\n{% for (let i = 0; i < elements.length; i++) { %}\r\n{% const element = elements[i]; %}\r\n{% if(element.querySelectorAll('div.row').length===0){(element).remove() }} %}", - "tableRow": "\n {% util.eachComponent(components, function(component) { %}\n {% if (!component.hasOwnProperty('tableView') || component.tableView) { %}\n \n {% } %}\n {% }) %}\n {% if (!instance.options.readOnly && !instance.disabled) { %}\n \n {% } %}\n ", - "footer": "" - }, - "rowClass": "", - "addAnother": "", - "modal": false, - "saveRow": "", - "removeRow": "Cancel", - "persistent": true, - "inlineEdit": false, - "protected": false, - "dbIndex": false, - "encrypted": false, - "redrawOn": "", - "clearOnHide": true, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "allowCalculateOverride": false, - "validateOn": "change", - "validate": { - "required": false, - "customMessage": "", - "custom": "const emptyElements = [];\r\nconst elements = document.getElementsByClassName(\"list-group-item\");\r\nfor (let i = 0; i < elements.length; i++) {\r\nconst element = elements[i];\r\nconsole.log('in validation remove');\r\nif(element.querySelectorAll('div.row').length===0){(element).remove() }\r\n \r\n}\r\n\r\n\r\nvar b =JSON.parse(localStorage.getItem('UserDetails'))\r\nif(b.groups.indexOf('/formsflow/formsflow-client') > -1 || b.groups.indexOf('/formsflow/formsflow-reviewer/lrs-approving-authority') > -1 || b.groups.indexOf('/formsflow/formsflow-reviewer/formsflow-client-reviewer') > -1 )\r\n{\r\ndocument.querySelector(\"[ref='editgrid-notesSOSC-addRow']\").remove();\r\nvar editButtons = document.querySelectorAll('button.btn.btn-default.btn-light.btn-sm.editRow');\r\nfor(i=0;ix.commentFor==='external').length > 0)\r\nshow = true;\r\nelse\r\nshow = false;\r\n}\r\nelse\r\n{\r\n show = true;\r\n}\r\n", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "editgrid", - "displayAsTable": false, - "input": true, - "components": [ - { - "label": "Columns", - "columns": [ - { - "components": [ - { - "label": "Notes", - "autoExpand": false, - "tableView": true, - "key": "notesSOSC", - "type": "textarea", - "input": true, - "keyModified": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "", - "minWords": "", - "maxWords": "" - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "html", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "rows": 3, - "wysiwyg": false, - "editor": "", - "fixedSize": true, - "id": "ewhsx7p" - } - ], - "width": 4, - "offset": 0, - "push": 0, - "pull": 0, - "size": "md", - "currentWidth": 4 - }, - { - "components": [ - { - "label": "Visibility", - "optionsLabelPosition": "right", - "inline": false, - "tableView": true, - "defaultValue": "internal", - "values": [ - { - "label": "Internal", - "value": "internal", - "shortcut": "" - }, - { - "label": "External", - "value": "external", - "shortcut": "" - } - ], - "key": "commentFor", - "type": "radio", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "onlyAvailableItems": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "inputType": "radio", - "fieldSet": false, - "id": "eg6l854" - } - ], - "width": 2, - "offset": 0, - "push": 0, - "pull": 0, - "size": "md", - "currentWidth": 2 - }, - { - "components": [ - { - "label": "Role", - "disabled": true, - "tableView": true, - "customDefaultValue": "var b =JSON.parse(localStorage.getItem('UserDetails'))\r\nif(b.groups.indexOf('/formsflow/formsflow-client') > -1 )\r\n{\r\n value = 'Client'\r\n}\r\nelse if(b.groups.indexOf('/formsflow/formsflow-reviewer/site-information-advisor') > -1 )\r\n{\r\n value = 'SIA'\r\n}", - "key": "role", - "type": "textfield", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "autofocus": false, - "dbIndex": false, - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "esrtubp" - } - ], - "size": "md", - "width": 2, - "offset": 0, - "push": 0, - "pull": 0, - "currentWidth": 2 - }, - { - "components": [ - { - "label": "Created By", - "disabled": true, - "tableView": true, - "customDefaultValue": "value = JSON.parse( localStorage.UserDetails).name ", - "key": "createdBy", - "type": "textfield", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "autofocus": false, - "dbIndex": false, - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "elcgok" - } - ], - "size": "md", - "width": 2, - "offset": 0, - "push": 0, - "pull": 0, - "currentWidth": 2 - }, - { - "components": [ - { - "label": "Created At", - "disabled": true, - "tableView": true, - "customDefaultValue": "value = (new Date()).toLocaleDateString() + ' At ' + (new Date()).toLocaleTimeString()", - "key": "createdAt", - "type": "textfield", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "autofocus": false, - "dbIndex": false, - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "emurgb" - } - ], - "size": "md", - "width": 2, - "offset": 0, - "push": 0, - "pull": 0, - "currentWidth": 2 - } - ], - "key": "columns", - "type": "columns", - "input": false, - "tableView": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "hidden": false, - "clearOnHide": false, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "tree": false, - "lazyLoad": false, - "autoAdjust": false, - "id": "e4fbc5e" - } - ], - "keyModified": true, - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "unique": false, - "refreshOn": "", - "dataGridLabel": false, - "widget": null, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "tree": true, - "lazyLoad": false, - "defaultOpen": false, - "id": "e6vzi4" - }, - { - "title": "Assign Reviewers", - "collapsible": true, - "key": "soscReviewerAssignment", - "customConditional": " if (data.riskclassification === \"exempt\"){\r\n const UserDetails = JSON.parse(localStorage.getItem(\"UserDetails\"))\r\n const roles = UserDetails[\"role\"];\r\n \r\n if(roles.includes(\"formsflow-reviewer/cssa-manager\")) {\r\n show = true;\r\n }\r\n else\r\n {\r\n show = false;\r\n }\r\n} else {\r\n show = false;\r\n}", - "type": "panel", - "label": "", - "collapsed": false, - "input": false, - "tableView": false, - "components": [ - { - "label": "Columns", - "columns": [ - { - "components": [ - { - "label": "Select SDM", - "widget": "choicesjs", - "tableView": true, - "dataSrc": "url", - "data": { - "url": "{{localStorage.getItem('formsflow.ai.api.url')}}/user?memberOfGroup=formsflow/formsflow-reviewer/sdm", - "headers": [ - { - "key": "Authorization", - "value": "Bearer {{localStorage.getItem(\"authToken\")}}" - }, - { - "key": "Content-type", - "value": "application/json" - }, - { - "key": "Accept", - "value": "application/json" - } - ], - "values": [ - { - "label": "", - "value": "" - } - ], - "json": "", - "resource": "", - "custom": "" - }, - "dataType": "string", - "valueProperty": "username", - "template": "{{ item.lastName }}, {{ item.firstName }}", - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "onlyAvailableItems": false - }, - "key": "selectCssaSdm", - "type": "select", - "selectValues": "data", - "disableLimit": false, - "input": true, - "keyModified": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "idPath": "id", - "clearOnRefresh": false, - "limit": 100, - "lazyLoad": true, - "filter": "", - "searchEnabled": true, - "searchDebounce": 0.3, - "searchField": "", - "minSearch": 0, - "readOnlyValue": false, - "authenticate": false, - "ignoreCache": false, - "selectFields": "", - "selectThreshold": 0.3, - "uniqueOptions": false, - "fuseOptions": { - "include": "score", - "threshold": 0.3 - }, - "indexeddb": { - "filter": {} - }, - "customOptions": {}, - "useExactSearch": false, - "id": "e9csp3n" - } - ], - "width": 4, - "offset": 0, - "push": 0, - "pull": 0, - "size": "md", - "currentWidth": 4 - }, - { - "components": [ - { - "label": "Select Caseworker", - "widget": "choicesjs", - "tableView": true, - "dataSrc": "url", - "data": { - "url": "{{localStorage.getItem('formsflow.ai.api.url')}}/user?memberOfGroup=formsflow/formsflow-reviewer/caseworker", - "headers": [ - { - "key": "Authorization", - "value": "Bearer {{localStorage.getItem(\"authToken\")}}" - }, - { - "key": "Content-type", - "value": "application/json" - }, - { - "key": "Accept", - "value": "application/json" - } - ], - "values": [ - { - "label": "", - "value": "" - } - ], - "json": "", - "resource": "", - "custom": "" - }, - "dataType": "string", - "valueProperty": "username", - "template": "{{ item.lastName }}, {{ item.firstName }}", - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "onlyAvailableItems": false - }, - "key": "selectCssaCaseworker", - "customConditional": "if (data.typeOfReview==='applicationViaTheSocietyOfContaminatedSitesApprovedProfessionalsOfBc')\n{\n show = false;\n}\nelse {\n show = true;\n}", - "type": "select", - "selectValues": "data", - "disableLimit": false, - "input": true, - "keyModified": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "idPath": "id", - "clearOnRefresh": false, - "limit": 100, - "lazyLoad": true, - "filter": "", - "searchEnabled": true, - "searchDebounce": 0.3, - "searchField": "", - "minSearch": 0, - "readOnlyValue": false, - "authenticate": false, - "ignoreCache": false, - "selectFields": "", - "selectThreshold": 0.3, - "uniqueOptions": false, - "fuseOptions": { - "include": "score", - "threshold": 0.3 - }, - "indexeddb": { - "filter": {} - }, - "customOptions": {}, - "useExactSearch": false, - "id": "e8pinfp" - } - ], - "width": 4, - "offset": 0, - "push": 0, - "pull": 0, - "size": "md", - "currentWidth": 4 - }, - { - "components": [], - "size": "md", - "width": 4, - "offset": 0, - "push": 0, - "pull": 0, - "currentWidth": 4 - } - ], - "key": "columns3", - "type": "columns", - "input": false, - "tableView": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "hidden": false, - "clearOnHide": false, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "tree": false, - "lazyLoad": false, - "autoAdjust": false, - "id": "ejnemx9" - } - ], - "keyModified": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "hidden": false, - "clearOnHide": false, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "tree": false, - "lazyLoad": false, - "theme": "default", - "breadcrumb": "default", - "id": "ecgbuxt" - }, - { - "label": "hiddenUserIdForFormSharingApplicantAsOwner", - "customClass": "", - "modalEdit": false, - "defaultValue": null, - "persistent": true, - "protected": false, - "dbIndex": false, - "encrypted": false, - "redrawOn": "", - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "key": "hiddenUserIdForFormSharingApplicantAsOwner", - "tags": [], - "properties": {}, - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "hidden", - "input": true, - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "unique": false, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "tableView": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "widget": { - "type": "input" - }, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "allowCalculateOverride": false, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "inputType": "hidden", - "id": "e51bxw" - }, - { - "label": "hiddenUserIdForFormSharingWithDiffOwner", - "customClass": "", - "modalEdit": false, - "defaultValue": null, - "persistent": true, - "protected": false, - "dbIndex": false, - "encrypted": false, - "redrawOn": "", - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "key": "hiddenUserIdForFormSharingWithDiffOwner", - "tags": [], - "properties": {}, - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "hidden", - "input": true, - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "unique": false, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "tableView": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "widget": { - "type": "input" - }, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "allowCalculateOverride": false, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "inputType": "hidden", - "id": "eia0fkf" - }, - { - "html": "

Part 1  - Contact Information

", - "label": "Content", - "customClass": "", - "refreshOnChange": false, - "hidden": false, - "modalEdit": false, - "key": "content3", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "content", - "input": false, - "tableView": false, - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "id": "e7c7u3u" - }, - { - "key": "Section1-ContactInformation", - "type": "panel", - "input": false, - "label": "", - "title": "Section I - CONTACT INFORMATION", - "collapsed": false, - "tableView": false, - "components": [ - { - "key": "siteOwnerOrOperator", - "type": "panel", - "input": false, - "label": "Panel", - "title": "Site Owner or Operator", - "hideLabel": true, - "tableView": false, - "components": [ - { - "key": "Section1A-NameColumn", - "type": "columns", - "input": false, - "label": "Columns - 2", - "columns": [ - { - "pull": 0, - "push": 0, - "size": "md", - "width": 6, - "offset": 0, - "components": [ - { - "key": "Section1A-LastName", - "type": "textfield", - "input": true, - "label": "Last Name", - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "tableView": false, - "hideOnChildrenHidden": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "ekh7nj9" - } - ], - "currentWidth": 6 - }, - { - "pull": 0, - "push": 0, - "size": "md", - "width": 6, - "offset": 0, - "components": [ - { - "key": "Section1A-FirstName", - "type": "textfield", - "input": true, - "label": "First Name", - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "tableView": false, - "hideOnChildrenHidden": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "euc0sw" - } - ], - "currentWidth": 6 - } - ], - "tableView": false, - "hideOnChildrenHidden": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "hidden": false, - "clearOnHide": false, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "tree": false, - "lazyLoad": false, - "autoAdjust": false, - "id": "euaafu" - }, - { - "key": "Section1A-Company", - "type": "textfield", - "input": true, - "label": "Company, if applicable", - "tableView": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "effeqnf" - }, - { - "key": "Section1A-AddressColumn3", - "type": "columns", - "input": false, - "label": "Columns - 2", - "columns": [ - { - "pull": 0, - "push": 0, - "size": "md", - "width": 6, - "offset": 0, - "components": [ - { - "key": "Section1A-Address", - "type": "textfield", - "input": true, - "label": "Address", - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "tableView": false, - "hideOnChildrenHidden": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "e2utqz" - } - ], - "currentWidth": 6 - }, - { - "pull": 0, - "push": 0, - "size": "md", - "width": 6, - "offset": 0, - "components": [ - { - "key": "Section1A-City", - "type": "textfield", - "input": true, - "label": "City", - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "tableView": false, - "hideOnChildrenHidden": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "e5u2rue" - } - ], - "currentWidth": 6 - } - ], - "tableView": false, - "hideOnChildrenHidden": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "hidden": false, - "clearOnHide": false, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "tree": false, - "lazyLoad": false, - "autoAdjust": false, - "id": "emhj7ub" - }, - { - "key": "Section1A-AddressColumn", - "type": "columns", - "input": false, - "label": "Columns - 3", - "columns": [ - { - "pull": 0, - "push": 0, - "size": "md", - "width": 4, - "offset": 0, - "components": [ - { - "key": "Section1A-ProvinceState", - "type": "textfield", - "input": true, - "label": "Province", - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "tableView": false, - "hideOnChildrenHidden": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "ea49wil" - } - ], - "currentWidth": 4 - }, - { - "pull": 0, - "push": 0, - "size": "md", - "width": 4, - "offset": 0, - "components": [ - { - "key": "Section1A-Country", - "type": "textfield", - "input": true, - "label": "Country", - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "tableView": false, - "hideOnChildrenHidden": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "elb9xr8" - } - ], - "currentWidth": 4 - }, - { - "pull": 0, - "push": 0, - "size": "md", - "width": 4, - "offset": 0, - "components": [ - { - "key": "Section1A-PostalZipCode", - "type": "textfield", - "input": true, - "label": "Postal Code", - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "tableView": false, - "hideOnChildrenHidden": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "etaog87" - } - ], - "currentWidth": 4 - } - ], - "tableView": false, - "hideOnChildrenHidden": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "hidden": false, - "clearOnHide": false, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "tree": false, - "lazyLoad": false, - "autoAdjust": false, - "id": "ewwkail" - }, - { - "key": "Section1A-ContactInfoColumn", - "type": "columns", - "input": false, - "label": "Columns - 2", - "columns": [ - { - "pull": 0, - "push": 0, - "size": "md", - "width": 6, - "offset": 0, - "components": [ - { - "key": "phoneNumber2", - "type": "textfield", - "input": true, - "label": "Phone Number", - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "tableView": false, - "hideOnChildrenHidden": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "eunnqpj" - } - ], - "currentWidth": 6 - }, - { - "pull": 0, - "push": 0, - "size": "md", - "width": 6, - "offset": 0, - "components": [ - { - "label": "Email", - "tableView": true, - "validate": { - "required": true, - "custom": "\r\nvar currentValue = input;\r\nconsole.log('currentValue',currentValue);\r\nfetch('https://forms-flow-api-e38158-dev.apps.silver.devops.gov.bc.ca/user?memberOfGroup=formsflow%2Fformsflow-reviewer%2Fformsflow-client-reviewer',\r\n{'headers':{ 'authorization': 'Bearer '+localStorage.getItem('authToken')},'mode':'cors'})\r\n.then((p)=> {return p.json();}).\r\nthen((x)=>{\r\n data.hiddenUserIdForFormSharing = '' ;\r\n x.find((y)=>{ console.log('currentValue',currentValue); \r\n if( y.email=== currentValue ) \r\n { data.hiddenUserIdForFormSharing = y.id}\r\n\r\n })\r\n\r\n if(data.hiddenUserIdForFormSharing==='')\r\n {\r\n valid = 'Unable to find user with provided email address';\r\n }\r\n else\r\n {\r\n valid = true;\r\n }\r\n\r\n});", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "key": "ownerEmailAddress", - "type": "email", - "input": true, - "delimiter": false, - "requireDecimal": false, - "hideOnChildrenHidden": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "email", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "kickbox": { - "enabled": false - }, - "id": "ewvvqh" - } - ], - "currentWidth": 6 - } - ], - "tableView": false, - "hideOnChildrenHidden": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "hidden": false, - "clearOnHide": false, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "tree": false, - "lazyLoad": false, - "autoAdjust": false, - "id": "eeq9dzs" - }, - { - "label": "Is applicant same as above?", - "optionsLabelPosition": "right", - "inline": false, - "tableView": false, - "values": [ - { - "label": "Yes", - "value": "true", - "shortcut": "" - }, - { - "label": "No", - "value": "false", - "shortcut": "" - } - ], - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "onlyAvailableItems": false - }, - "key": "isApplicantSameAsAbove", - "type": "radio", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "inputType": "radio", - "fieldSet": false, - "id": "enx9oad" - } - ], - "collapsible": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "hidden": false, - "clearOnHide": false, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "tree": false, - "lazyLoad": false, - "theme": "default", - "breadcrumb": "default", - "id": "evm4w5b" - }, - { - "title": "Applicant", - "theme": "default", - "tooltip": "", - "customClass": "", - "collapsible": false, - "hidden": false, - "hideLabel": false, - "disabled": false, - "modalEdit": false, - "key": "applicant", - "tags": [], - "properties": {}, - "customConditional": "", - "conditional": { - "json": "", - "show": true, - "when": "isApplicantSameAsAbove", - "eq": "false" - }, - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "panel", - "label": "Panel", - "breadcrumb": "default", - "tabindex": "", - "input": false, - "tableView": false, - "components": [ - { - "key": "Section1C-NameColumn", - "type": "columns", - "input": false, - "label": "Columns - 2", - "columns": [ - { - "pull": 0, - "push": 0, - "size": "md", - "width": 6, - "offset": 0, - "components": [ - { - "key": "Section1C-LastName", - "type": "textfield", - "input": true, - "label": "Last Name", - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "tableView": false, - "hideOnChildrenHidden": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "e40la5k" - } - ], - "currentWidth": 6 - }, - { - "pull": 0, - "push": 0, - "size": "md", - "width": 6, - "offset": 0, - "components": [ - { - "key": "Section1C-FirstName", - "type": "textfield", - "input": true, - "label": "First Name", - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "tableView": false, - "hideOnChildrenHidden": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "e0oy6rg" - } - ], - "currentWidth": 6 - } - ], - "tableView": false, - "hideOnChildrenHidden": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "hidden": false, - "clearOnHide": false, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "tree": false, - "lazyLoad": false, - "autoAdjust": false, - "id": "e9ur3d" - }, - { - "key": "Section1C-Company", - "type": "textfield", - "input": true, - "label": "Company, if applicable", - "tableView": false, - "hideOnChildrenHidden": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "eikmhmk" - }, - { - "key": "Section1C-AddressColumn", - "type": "columns", - "input": false, - "label": "Columns - 2", - "columns": [ - { - "pull": 0, - "push": 0, - "size": "md", - "width": 6, - "offset": 0, - "components": [ - { - "key": "Section1C-Address", - "type": "textfield", - "input": true, - "label": "Address", - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "tableView": false, - "hideOnChildrenHidden": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "efojt6s" - } - ], - "currentWidth": 6 - }, - { - "pull": 0, - "push": 0, - "size": "md", - "width": 6, - "offset": 0, - "components": [ - { - "key": "Section1C-City", - "type": "textfield", - "input": true, - "label": "City", - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "tableView": false, - "hideOnChildrenHidden": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "e59u27" - } - ], - "currentWidth": 6 - } - ], - "tableView": false, - "hideOnChildrenHidden": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "hidden": false, - "clearOnHide": false, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "tree": false, - "lazyLoad": false, - "autoAdjust": false, - "id": "eigg0un" - }, - { - "key": "Section1A-AddressColumn2", - "type": "columns", - "input": false, - "label": "Columns - 3", - "columns": [ - { - "pull": 0, - "push": 0, - "size": "md", - "width": 4, - "offset": 0, - "components": [ - { - "key": "Section1A-ProvinceState2", - "type": "textfield", - "input": true, - "label": "Province", - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "tableView": false, - "hideOnChildrenHidden": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "efyqlzn" - } - ], - "currentWidth": 4 - }, - { - "pull": 0, - "push": 0, - "size": "md", - "width": 4, - "offset": 0, - "components": [ - { - "key": "Section1A-Country2", - "type": "textfield", - "input": true, - "label": "Country", - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "tableView": false, - "hideOnChildrenHidden": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "edhcyho" - } - ], - "currentWidth": 4 - }, - { - "pull": 0, - "push": 0, - "size": "md", - "width": 4, - "offset": 0, - "components": [ - { - "key": "Section1A-PostalZipCode2", - "type": "textfield", - "input": true, - "label": "Postal Code", - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "tableView": false, - "hideOnChildrenHidden": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "e3mm0qo" - } - ], - "currentWidth": 4 - } - ], - "tableView": false, - "hideOnChildrenHidden": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "hidden": false, - "clearOnHide": false, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "tree": false, - "lazyLoad": false, - "autoAdjust": false, - "id": "elurmt" - }, - { - "key": "Section1C-ContactInfoColumn", - "type": "columns", - "input": false, - "label": "Columns - 2", - "columns": [ - { - "pull": 0, - "push": 0, - "size": "md", - "width": 6, - "offset": 0, - "components": [ - { - "key": "phoneNumber", - "type": "textfield", - "input": true, - "label": "Phone Number", - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "tableView": false, - "hideOnChildrenHidden": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "eidhmy6" - } - ], - "currentWidth": 6 - }, - { - "pull": 0, - "push": 0, - "size": "md", - "width": 6, - "offset": 0, - "components": [ - { - "label": "Email", - "tableView": true, - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "key": "contactPersonEmailAddress", - "type": "email", - "input": true, - "delimiter": false, - "requireDecimal": false, - "hideOnChildrenHidden": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "email", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "kickbox": { - "enabled": false - }, - "id": "ee0ed8f" - } - ], - "currentWidth": 6 - } - ], - "tableView": false, - "hideOnChildrenHidden": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "hidden": false, - "clearOnHide": false, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "tree": false, - "lazyLoad": false, - "autoAdjust": false, - "id": "ebgnl1p" - }, - { - "label": "Is the agent same as the applicant?", - "optionsLabelPosition": "right", - "inline": false, - "tableView": false, - "values": [ - { - "label": "Yes", - "value": "true", - "shortcut": "" - }, - { - "label": "No", - "value": "false", - "shortcut": "" - } - ], - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "onlyAvailableItems": false - }, - "key": "isApplicantSameAsAbove1", - "conditional": { - "show": true, - "when": "isApplicantSameAsAbove", - "eq": "false" - }, - "type": "radio", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "inputType": "radio", - "fieldSet": false, - "id": "et6b04k" - } - ], - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "clearOnHide": false, - "refreshOn": "", - "redrawOn": "", - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "tree": false, - "lazyLoad": false, - "id": "er3axs" - }, - { - "title": "Agent", - "theme": "default", - "tooltip": "", - "customClass": "", - "collapsible": false, - "hidden": false, - "hideLabel": false, - "disabled": false, - "modalEdit": false, - "key": "panel", - "tags": [], - "properties": {}, - "customConditional": "", - "conditional": { - "json": "", - "show": true, - "when": "isApplicantSameAsAbove1", - "eq": "false" - }, - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "panel", - "label": "Panel", - "breadcrumb": "default", - "tabindex": "", - "input": false, - "tableView": false, - "components": [ - { - "key": "Section1B-NameColumn", - "type": "columns", - "input": false, - "label": "Section1B-NameColumn", - "columns": [ - { - "pull": 0, - "push": 0, - "size": "md", - "width": 6, - "offset": 0, - "components": [ - { - "label": "Last Name", - "labelPosition": "top", - "placeholder": "", - "description": "", - "tooltip": "", - "prefix": "", - "suffix": "", - "widget": { - "type": "input" - }, - "inputMask": "", - "displayMask": "", - "allowMultipleMasks": false, - "customClass": "", - "tabindex": "", - "autocomplete": "", - "hidden": false, - "hideLabel": false, - "showWordCount": false, - "showCharCount": false, - "mask": false, - "autofocus": false, - "spellcheck": true, - "disabled": false, - "tableView": false, - "modalEdit": false, - "multiple": false, - "persistent": true, - "inputFormat": "plain", - "protected": false, - "dbIndex": false, - "case": "", - "truncateMultipleSpaces": false, - "encrypted": false, - "redrawOn": "", - "clearOnHide": true, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "allowCalculateOverride": false, - "validateOn": "change", - "validate": { - "required": true, - "pattern": "", - "customMessage": "", - "custom": "", - "customPrivate": false, - "json": "", - "minLength": "", - "maxLength": "", - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "unique": false, - "errorLabel": "", - "errors": "", - "key": "Section1B-LastName", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "textfield", - "input": true, - "hideOnChildrenHidden": false, - "refreshOn": "", - "dataGridLabel": false, - "addons": [], - "inputType": "text", - "id": "ehh4qkk", - "defaultValue": "" - } - ], - "currentWidth": 6 - }, - { - "pull": 0, - "push": 0, - "size": "md", - "width": 6, - "offset": 0, - "components": [ - { - "label": "First Name", - "labelPosition": "top", - "placeholder": "", - "description": "", - "tooltip": "", - "prefix": "", - "suffix": "", - "widget": { - "type": "input" - }, - "inputMask": "", - "displayMask": "", - "allowMultipleMasks": false, - "customClass": "", - "tabindex": "", - "autocomplete": "", - "hidden": false, - "hideLabel": false, - "showWordCount": false, - "showCharCount": false, - "mask": false, - "autofocus": false, - "spellcheck": true, - "disabled": false, - "tableView": false, - "modalEdit": false, - "multiple": false, - "persistent": true, - "inputFormat": "plain", - "protected": false, - "dbIndex": false, - "case": "", - "truncateMultipleSpaces": false, - "encrypted": false, - "redrawOn": "", - "clearOnHide": true, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "allowCalculateOverride": false, - "validateOn": "change", - "validate": { - "required": true, - "pattern": "", - "customMessage": "", - "custom": "", - "customPrivate": false, - "json": "", - "minLength": "", - "maxLength": "", - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "unique": false, - "errorLabel": "", - "errors": "", - "key": "Section1B-FirstName", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "textfield", - "input": true, - "hideOnChildrenHidden": false, - "refreshOn": "", - "dataGridLabel": false, - "addons": [], - "inputType": "text", - "id": "e2couam", - "defaultValue": "" - } - ], - "currentWidth": 6 - } - ], - "tableView": false, - "hideOnChildrenHidden": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "hidden": false, - "clearOnHide": false, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "tree": false, - "lazyLoad": false, - "autoAdjust": false, - "id": "eyy4ce" - }, - { - "key": "Section1C-Company1", - "type": "textfield", - "input": true, - "label": "Company, if applicable", - "tableView": false, - "hideOnChildrenHidden": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "ex0z6ex" - }, - { - "key": "Section1C-AddressColumn1", - "type": "columns", - "input": false, - "label": "Columns - 2", - "columns": [ - { - "pull": 0, - "push": 0, - "size": "md", - "width": 6, - "offset": 0, - "components": [ - { - "key": "Section1C-Address1", - "type": "textfield", - "input": true, - "label": "Address", - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "tableView": false, - "hideOnChildrenHidden": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "eks23e" - } - ], - "currentWidth": 6 - }, - { - "pull": 0, - "push": 0, - "size": "md", - "width": 6, - "offset": 0, - "components": [ - { - "key": "Section1C-City1", - "type": "textfield", - "input": true, - "label": "City", - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "tableView": false, - "hideOnChildrenHidden": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "e026ykm" - } - ], - "currentWidth": 6 - } - ], - "tableView": false, - "hideOnChildrenHidden": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "hidden": false, - "clearOnHide": false, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "tree": false, - "lazyLoad": false, - "autoAdjust": false, - "id": "eb0na63" - }, - { - "key": "Section1A-AddressColumn4", - "type": "columns", - "input": false, - "label": "Columns - 3", - "columns": [ - { - "pull": 0, - "push": 0, - "size": "md", - "width": 4, - "offset": 0, - "components": [ - { - "key": "Section1A-ProvinceState3", - "type": "textfield", - "input": true, - "label": "Province", - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "tableView": false, - "hideOnChildrenHidden": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "er0guec" - } - ], - "currentWidth": 4 - }, - { - "pull": 0, - "push": 0, - "size": "md", - "width": 4, - "offset": 0, - "components": [ - { - "key": "Section1A-Country3", - "type": "textfield", - "input": true, - "label": "Country", - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "tableView": false, - "hideOnChildrenHidden": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "ex5fali" - } - ], - "currentWidth": 4 - }, - { - "pull": 0, - "push": 0, - "size": "md", - "width": 4, - "offset": 0, - "components": [ - { - "key": "Section1A-PostalZipCode3", - "type": "textfield", - "input": true, - "label": "Postal Code", - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "tableView": false, - "hideOnChildrenHidden": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "e5v9qcs" - } - ], - "currentWidth": 4 - } - ], - "tableView": false, - "hideOnChildrenHidden": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "hidden": false, - "clearOnHide": false, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "tree": false, - "lazyLoad": false, - "autoAdjust": false, - "id": "ek9ixdb" - }, - { - "key": "Section1C-ContactInfoColumn1", - "type": "columns", - "input": false, - "label": "Columns - 2", - "columns": [ - { - "pull": 0, - "push": 0, - "size": "md", - "width": 6, - "offset": 0, - "components": [ - { - "key": "phoneNumber1", - "type": "textfield", - "input": true, - "label": "Phone Number", - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "tableView": false, - "hideOnChildrenHidden": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "etn06w9" - } - ], - "currentWidth": 6 - }, - { - "pull": 0, - "push": 0, - "size": "md", - "width": 6, - "offset": 0, - "components": [ - { - "label": "Email", - "tableView": true, - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "key": "contactPersonEmailAddress1", - "type": "email", - "input": true, - "delimiter": false, - "requireDecimal": false, - "hideOnChildrenHidden": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "email", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "kickbox": { - "enabled": false - }, - "id": "elk9b5f" - } - ], - "currentWidth": 6 - } - ], - "tableView": false, - "hideOnChildrenHidden": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "hidden": false, - "clearOnHide": false, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "tree": false, - "lazyLoad": false, - "autoAdjust": false, - "id": "esdtr6j" - } - ], - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "clearOnHide": false, - "refreshOn": "", - "redrawOn": "", - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "tree": false, - "lazyLoad": false, - "id": "eccpvcc" - }, - { - "title": "Approved Professional", - "theme": "default", - "tooltip": "", - "customClass": "", - "collapsible": false, - "hidden": false, - "hideLabel": false, - "disabled": false, - "modalEdit": false, - "key": "panel1", - "tags": [], - "properties": {}, - "customConditional": "", - "conditional": { - "json": "", - "show": null, - "when": null, - "eq": "" - }, - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "panel", - "label": "Panel", - "breadcrumb": "default", - "tabindex": "", - "input": false, - "tableView": false, - "components": [ - { - "key": "Section1B-NameColumn1", - "type": "columns", - "input": false, - "label": "Section1B-NameColumn", - "columns": [ - { - "pull": 0, - "push": 0, - "size": "md", - "width": 6, - "offset": 0, - "components": [ - { - "label": "Last Name", - "labelPosition": "top", - "placeholder": "", - "description": "", - "tooltip": "", - "prefix": "", - "suffix": "", - "widget": { - "type": "input" - }, - "inputMask": "", - "displayMask": "", - "allowMultipleMasks": false, - "customClass": "", - "tabindex": "", - "autocomplete": "", - "hidden": false, - "hideLabel": false, - "showWordCount": false, - "showCharCount": false, - "mask": false, - "autofocus": false, - "spellcheck": true, - "disabled": false, - "tableView": false, - "modalEdit": false, - "multiple": false, - "persistent": true, - "inputFormat": "plain", - "protected": false, - "dbIndex": false, - "case": "", - "truncateMultipleSpaces": false, - "encrypted": false, - "redrawOn": "", - "clearOnHide": true, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "allowCalculateOverride": false, - "validateOn": "change", - "validate": { - "required": true, - "pattern": "", - "customMessage": "", - "custom": "", - "customPrivate": false, - "json": "", - "minLength": "", - "maxLength": "", - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "unique": false, - "errorLabel": "", - "errors": "", - "key": "Section1B-LastName1", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "textfield", - "input": true, - "hideOnChildrenHidden": false, - "refreshOn": "", - "dataGridLabel": false, - "addons": [], - "inputType": "text", - "id": "euvjh55", - "defaultValue": "" - } - ], - "currentWidth": 6 - }, - { - "pull": 0, - "push": 0, - "size": "md", - "width": 6, - "offset": 0, - "components": [ - { - "label": "First Name", - "labelPosition": "top", - "placeholder": "", - "description": "", - "tooltip": "", - "prefix": "", - "suffix": "", - "widget": { - "type": "input" - }, - "inputMask": "", - "displayMask": "", - "allowMultipleMasks": false, - "customClass": "", - "tabindex": "", - "autocomplete": "", - "hidden": false, - "hideLabel": false, - "showWordCount": false, - "showCharCount": false, - "mask": false, - "autofocus": false, - "spellcheck": true, - "disabled": false, - "tableView": false, - "modalEdit": false, - "multiple": false, - "persistent": true, - "inputFormat": "plain", - "protected": false, - "dbIndex": false, - "case": "", - "truncateMultipleSpaces": false, - "encrypted": false, - "redrawOn": "", - "clearOnHide": true, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "allowCalculateOverride": false, - "validateOn": "change", - "validate": { - "required": true, - "pattern": "", - "customMessage": "", - "custom": "", - "customPrivate": false, - "json": "", - "minLength": "", - "maxLength": "", - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "unique": false, - "errorLabel": "", - "errors": "", - "key": "Section1B-FirstName1", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "textfield", - "input": true, - "hideOnChildrenHidden": false, - "refreshOn": "", - "dataGridLabel": false, - "addons": [], - "inputType": "text", - "id": "ei7qvpq", - "defaultValue": "" - } - ], - "currentWidth": 6 - } - ], - "tableView": false, - "hideOnChildrenHidden": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "hidden": false, - "clearOnHide": false, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "tree": false, - "lazyLoad": false, - "autoAdjust": false, - "id": "ebe00dr" - }, - { - "key": "Section1C-Company2", - "type": "textfield", - "input": true, - "label": "Company, if applicable", - "tableView": false, - "hideOnChildrenHidden": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "ehx2r3c" - }, - { - "key": "Section1C-AddressColumn2", - "type": "columns", - "input": false, - "label": "Columns - 2", - "columns": [ - { - "pull": 0, - "push": 0, - "size": "md", - "width": 6, - "offset": 0, - "components": [ - { - "key": "Section1C-Address2", - "type": "textfield", - "input": true, - "label": "Address", - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "tableView": false, - "hideOnChildrenHidden": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "eviqouu" - } - ], - "currentWidth": 6 - }, - { - "pull": 0, - "push": 0, - "size": "md", - "width": 6, - "offset": 0, - "components": [ - { - "key": "Section1C-City2", - "type": "textfield", - "input": true, - "label": "City", - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "tableView": false, - "hideOnChildrenHidden": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "ej96lic" - } - ], - "currentWidth": 6 - } - ], - "tableView": false, - "hideOnChildrenHidden": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "hidden": false, - "clearOnHide": false, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "tree": false, - "lazyLoad": false, - "autoAdjust": false, - "id": "eo3ukfa" - }, - { - "key": "Section1A-AddressColumn5", - "type": "columns", - "input": false, - "label": "Columns - 3", - "columns": [ - { - "pull": 0, - "push": 0, - "size": "md", - "width": 4, - "offset": 0, - "components": [ - { - "key": "Section1A-ProvinceState4", - "type": "textfield", - "input": true, - "label": "Province", - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "tableView": false, - "hideOnChildrenHidden": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "euw0tfs" - } - ], - "currentWidth": 4 - }, - { - "pull": 0, - "push": 0, - "size": "md", - "width": 4, - "offset": 0, - "components": [ - { - "key": "Section1A-Country4", - "type": "textfield", - "input": true, - "label": "Country", - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "tableView": false, - "hideOnChildrenHidden": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "eq6im" - } - ], - "currentWidth": 4 - }, - { - "pull": 0, - "push": 0, - "size": "md", - "width": 4, - "offset": 0, - "components": [ - { - "key": "Section1A-PostalZipCode4", - "type": "textfield", - "input": true, - "label": "Postal Code", - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "tableView": false, - "hideOnChildrenHidden": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "ezn76c" - } - ], - "currentWidth": 4 - } - ], - "tableView": false, - "hideOnChildrenHidden": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "hidden": false, - "clearOnHide": false, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "tree": false, - "lazyLoad": false, - "autoAdjust": false, - "id": "ed95jch" - }, - { - "key": "Section1C-ContactInfoColumn2", - "type": "columns", - "input": false, - "label": "Columns - 2", - "columns": [ - { - "pull": 0, - "push": 0, - "size": "md", - "width": 6, - "offset": 0, - "components": [ - { - "key": "phoneNumber3", - "type": "textfield", - "input": true, - "label": "Phone Number", - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "tableView": false, - "hideOnChildrenHidden": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "epk5n6b" - } - ], - "currentWidth": 6 - }, - { - "pull": 0, - "push": 0, - "size": "md", - "width": 6, - "offset": 0, - "components": [ - { - "label": "Email", - "tableView": true, - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "key": "contactPersonEmailAddress2", - "type": "email", - "input": true, - "delimiter": false, - "requireDecimal": false, - "hideOnChildrenHidden": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "email", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "kickbox": { - "enabled": false - }, - "id": "e2vlpc" - } - ], - "currentWidth": 6 - } - ], - "tableView": false, - "hideOnChildrenHidden": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "hidden": false, - "clearOnHide": false, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "tree": false, - "lazyLoad": false, - "autoAdjust": false, - "id": "e4f2vgv" - }, - { - "label": "Professional Designation", - "labelPosition": "top", - "placeholder": "", - "description": "", - "tooltip": "", - "prefix": "", - "suffix": "", - "widget": { - "type": "input" - }, - "inputMask": "", - "displayMask": "", - "allowMultipleMasks": false, - "customClass": "", - "tabindex": "", - "autocomplete": "", - "hidden": false, - "hideLabel": false, - "showWordCount": false, - "showCharCount": false, - "mask": false, - "autofocus": false, - "spellcheck": true, - "disabled": false, - "tableView": true, - "modalEdit": false, - "multiple": false, - "persistent": true, - "inputFormat": "plain", - "protected": false, - "dbIndex": false, - "case": "", - "truncateMultipleSpaces": false, - "encrypted": false, - "redrawOn": "", - "clearOnHide": true, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "allowCalculateOverride": false, - "validateOn": "change", - "validate": { - "required": false, - "pattern": "", - "customMessage": "", - "custom": "", - "customPrivate": false, - "json": "", - "minLength": "", - "maxLength": "", - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "unique": false, - "errorLabel": "", - "errors": "", - "key": "professionalDesignation", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "textfield", - "input": true, - "refreshOn": "", - "dataGridLabel": false, - "addons": [], - "inputType": "text", - "id": "e4erht", - "defaultValue": "" - }, - { - "label": "Scope of review completed by Approved Professional (eg. arm's length risk-based standards review)", - "labelPosition": "top", - "placeholder": "", - "description": "", - "tooltip": "", - "prefix": "", - "suffix": "", - "widget": { - "type": "input" - }, - "displayMask": "", - "editor": "", - "autoExpand": false, - "customClass": "", - "tabindex": "", - "autocomplete": "", - "hidden": false, - "hideLabel": false, - "showWordCount": false, - "showCharCount": false, - "autofocus": false, - "spellcheck": true, - "disabled": false, - "tableView": true, - "modalEdit": false, - "multiple": false, - "persistent": true, - "inputFormat": "html", - "protected": false, - "dbIndex": false, - "case": "", - "truncateMultipleSpaces": false, - "encrypted": false, - "redrawOn": "", - "clearOnHide": true, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "allowCalculateOverride": false, - "validateOn": "change", - "validate": { - "required": false, - "pattern": "", - "customMessage": "", - "custom": "", - "customPrivate": false, - "json": "", - "minLength": "", - "maxLength": "", - "minWords": "", - "maxWords": "", - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "unique": false, - "errorLabel": "", - "errors": "", - "key": "scopeOfReviewCompletedByApprovedProfessionalEgArmsLengthRiskBasedStandardsReview", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "textarea", - "rows": 3, - "wysiwyg": false, - "input": true, - "refreshOn": "", - "dataGridLabel": false, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputMask": "", - "fixedSize": true, - "id": "e3504l8", - "defaultValue": "" - } - ], - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "clearOnHide": false, - "refreshOn": "", - "redrawOn": "", - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "tree": false, - "lazyLoad": false, - "id": "euyo4sn" - } - ], - "collapsible": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "hidden": false, - "clearOnHide": false, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "tree": false, - "lazyLoad": false, - "theme": "default", - "breadcrumb": "default", - "id": "e52kzii", - "keyModified": true - }, - { - "html": "

Part 2 - Executive Summary

", - "label": "Content", - "customClass": "", - "refreshOnChange": false, - "hidden": false, - "modalEdit": false, - "key": "content4", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "content", - "input": false, - "tableView": false, - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "id": "eip4sw7" - }, - { - "title": "Section II - EXECUTIVE SUMMARY", - "theme": "default", - "tooltip": "", - "customClass": "", - "collapsible": true, - "hidden": false, - "hideLabel": false, - "disabled": false, - "modalEdit": false, - "key": "Section1-ContactInformation1", - "tags": [], - "properties": {}, - "customConditional": "", - "conditional": { - "json": "", - "show": null, - "when": null, - "eq": "" - }, - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "panel", - "label": "", - "breadcrumb": "default", - "tabindex": "", - "collapsed": false, - "input": false, - "tableView": false, - "keyModified": true, - "components": [ - { - "html": "

To be completed by the approved professionals reviewing the site investigation, risk assessment, remediation or confirmation of remediation reports.

", - "label": "Content", - "customClass": "", - "refreshOnChange": false, - "hidden": false, - "modalEdit": false, - "key": "content2", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "content", - "input": false, - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "tableView": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "id": "epyqnv" - }, - { - "label": "Subject Site Locations", - "reorder": false, - "addAnotherPosition": "bottom", - "layoutFixed": false, - "enableRowGroups": false, - "initEmpty": false, - "tableView": false, - "defaultValue": [ - { - "siteId": "", - "siteCommonName": "", - "section2LatitudeDegrees": "", - "section2LatitudeMinutes": "", - "section2LatitudeSeconds": "", - "section2LongitudeDegrees": "", - "section2LongitudeMinutes": "", - "section2LongitudeSeconds": "" - } - ], - "key": "dataGrid", - "type": "datagrid", - "input": true, - "components": [ - { - "title": "Subject Site Location", - "collapsible": false, - "key": "panel2", - "type": "panel", - "label": "Site", - "input": false, - "tableView": false, - "components": [ - { - "label": "Site ID", - "tableView": true, - "key": "siteId", - "type": "textfield", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "etpvslk" - }, - { - "label": "Site Common Name", - "autoExpand": false, - "tableView": true, - "key": "siteCommonName", - "type": "textarea", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "", - "minWords": "", - "maxWords": "" - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "html", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "rows": 3, - "wysiwyg": false, - "editor": "", - "fixedSize": true, - "id": "edrol6" - }, - { - "key": "heading4", - "tag": "h4", - "type": "htmlelement", - "input": false, - "label": "Heading", - "content": "Latitude", - "tableView": false, - "headingSize": "h1", - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "attrs": [], - "id": "e8b5q86" - }, - { - "key": "Section2-LatitudeColumn", - "type": "columns", - "input": false, - "label": "Columns - 3", - "columns": [ - { - "pull": 0, - "push": 0, - "size": "md", - "width": 4, - "offset": 0, - "components": [ - { - "key": "section2LatitudeDegrees", - "type": "textfield", - "input": true, - "label": "Degrees", - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "tableView": false, - "hideOnChildrenHidden": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "ef4s1gv" - } - ], - "currentWidth": 4 - }, - { - "pull": 0, - "push": 0, - "size": "md", - "width": 4, - "offset": 0, - "components": [ - { - "key": "section2LatitudeMinutes", - "type": "textfield", - "input": true, - "label": "Minutes", - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "tableView": false, - "hideOnChildrenHidden": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "evm2u7" - } - ], - "currentWidth": 4 - }, - { - "pull": 0, - "push": 0, - "size": "md", - "width": 4, - "offset": 0, - "components": [ - { - "key": "section2LatitudeSeconds", - "type": "textfield", - "input": true, - "label": "Seconds", - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "tableView": false, - "hideOnChildrenHidden": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "ezwdsq8" - } - ], - "currentWidth": 4 - } - ], - "tableView": false, - "hideOnChildrenHidden": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "hidden": false, - "clearOnHide": false, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "tree": false, - "lazyLoad": false, - "autoAdjust": false, - "id": "elda0gq" - }, - { - "key": "heading5", - "tag": "h4", - "type": "htmlelement", - "input": false, - "label": "Heading", - "content": "Longitude", - "tableView": false, - "headingSize": "h1", - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "attrs": [], - "id": "en3p8e9" - }, - { - "key": "Section2-LongitudeColumn", - "type": "columns", - "input": false, - "label": "Columns - 3", - "columns": [ - { - "pull": 0, - "push": 0, - "size": "md", - "width": 4, - "offset": 0, - "components": [ - { - "key": "section2LongitudeDegrees", - "type": "textfield", - "input": true, - "label": "Degrees", - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "tableView": false, - "hideOnChildrenHidden": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "e8hqhvc" - } - ], - "currentWidth": 4 - }, - { - "pull": 0, - "push": 0, - "size": "md", - "width": 4, - "offset": 0, - "components": [ - { - "key": "section2LongitudeMinutes", - "type": "textfield", - "input": true, - "label": "Minutes", - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "tableView": false, - "hideOnChildrenHidden": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "er4jc8h" - } - ], - "currentWidth": 4 - }, - { - "pull": 0, - "push": 0, - "size": "md", - "width": 4, - "offset": 0, - "components": [ - { - "key": "section2LongitudeSeconds", - "type": "textfield", - "input": true, - "label": "Seconds", - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "tableView": false, - "hideOnChildrenHidden": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "ekx2hxj" - } - ], - "currentWidth": 4 - } - ], - "tableView": false, - "hideOnChildrenHidden": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "hidden": false, - "clearOnHide": false, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "tree": false, - "lazyLoad": false, - "autoAdjust": false, - "id": "eco0438" - } - ], - "id": "edowey00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "hidden": false, - "clearOnHide": false, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "tree": false, - "lazyLoad": false, - "theme": "default", - "breadcrumb": "default" - } - ], - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "tree": true, - "lazyLoad": false, - "disableAddingRemovingRows": false, - "id": "evusv2q" - }, - { - "key": "heading3", - "tag": "h3", - "type": "htmlelement", - "input": false, - "label": "Heading", - "content": "Coordinates for the centre of the site:", - "tableView": false, - "headingSize": "h1", - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "attrs": [], - "id": "ee72tiv" - }, - { - "key": "content", - "html": "

Attention:

A separate map with appropriate scale showing the location and boundaries of the site must be included with an SDS submission.

", - "type": "content", - "input": false, - "label": "Static Text", - "tableView": false, - "hideOnChildrenHidden": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "id": "e5fmbyj" - }, - { - "key": "iUnderstandAndWillAttachAMapWithMySubmission", - "type": "checkbox", - "input": true, - "label": "I will include a map with my submission", - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "tableView": false, - "defaultValue": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": true, - "labelPosition": "right", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "inputType": "checkbox", - "value": "", - "name": "", - "id": "ekbr5fb" - }, - { - "label": "Land ownership (Source Site) Please select all that apply:", - "labelPosition": "top", - "optionsLabelPosition": "right", - "description": "", - "tooltip": "", - "customClass": "", - "tabindex": "", - "inline": false, - "hidden": false, - "hideLabel": false, - "autofocus": false, - "disabled": false, - "tableView": false, - "modalEdit": false, - "values": [ - { - "label": "Legally Titled, Registered Property", - "value": "legallyTitled", - "shortcut": "" - }, - { - "label": "Untitled Crown Land", - "value": "untitledCrown", - "shortcut": "" - }, - { - "label": "Untitled Municipal Land", - "value": "untitledMunicipal", - "shortcut": "" - } - ], - "persistent": true, - "protected": false, - "dbIndex": false, - "encrypted": false, - "redrawOn": "", - "clearOnHide": true, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "allowCalculateOverride": false, - "validate": { - "required": true, - "onlyAvailableItems": false, - "customMessage": "", - "custom": "", - "customPrivate": false, - "json": "", - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "errorLabel": "", - "minSelectedCountMessage": "", - "maxSelectedCountMessage": "", - "errors": "", - "key": "landOwnershipSourceSitePleaseSelectAllThatApply", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "selectboxes", - "input": true, - "inputType": "checkbox", - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "unique": false, - "refreshOn": "", - "dataGridLabel": false, - "widget": null, - "validateOn": "change", - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "fieldSet": false, - "id": "e66yx6u", - "defaultValue": { - "legallyTitled": false, - "untitledCrown": false, - "untitledMunicipal": false - } - }, - { - "title": "For Legally Titled, Registered Property (Source Site)", - "theme": "default", - "tooltip": "", - "customClass": "", - "collapsible": false, - "hidden": false, - "hideLabel": false, - "disabled": false, - "modalEdit": false, - "key": "forLegallyTitledRegisteredProperty-panel", - "tags": [], - "properties": {}, - "customConditional": "", - "conditional": { - "json": "", - "show": true, - "when": "landOwnershipSourceSitePleaseSelectAllThatApply", - "eq": "legallyTitled" - }, - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "panel", - "label": "", - "breadcrumb": "default", - "tabindex": "", - "input": false, - "collapsed": false, - "tableView": false, - "components": [ - { - "key": "Section2-LegallyTitled-Address", - "type": "textfield", - "input": true, - "label": "Site Address", - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "tableView": false, - "placeholder": "or nearest street name/intersection if no address is assigned", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "emyfj89" - }, - { - "key": "Section2-LegallyTitled-AddressColumn", - "type": "columns", - "input": false, - "label": "Columns - 2", - "columns": [ - { - "pull": 0, - "push": 0, - "size": "md", - "width": 6, - "offset": 0, - "components": [ - { - "key": "Section2-LegallyTitled-City", - "type": "textfield", - "input": true, - "label": "City", - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "tableView": false, - "hideOnChildrenHidden": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "ev16eg9" - } - ], - "currentWidth": 6 - }, - { - "pull": 0, - "push": 0, - "size": "md", - "width": 6, - "offset": 0, - "components": [ - { - "key": "Section2-LegallyTitled-PostalZipCode", - "type": "textfield", - "input": true, - "label": "Postal Code", - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "tableView": false, - "hideOnChildrenHidden": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "eftbs3h" - } - ], - "currentWidth": 6 - } - ], - "tableView": false, - "hideOnChildrenHidden": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "hidden": false, - "clearOnHide": false, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "tree": false, - "lazyLoad": false, - "autoAdjust": false, - "id": "eavg5jx" - }, - { - "label": "Enter PIDs and Land Descriptions below", - "tooltip": "Select the 'X' button to delete an entry.", - "reorder": false, - "addAnotherPosition": "bottom", - "layoutFixed": false, - "enableRowGroups": false, - "initEmpty": false, - "hideLabel": true, - "tableView": false, - "defaultValue": [ - { - "Section2-LegallyTitled-PID": "", - "SiteAddress-LegallyTitled-PID": "", - "Section2-LegallyTitled-LandDescription": "", - "SiteAddress-LegallyTitled-LandDescription": "" - } - ], - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "key": "Section2-LegallyTitled-PIDColumn", - "type": "datagrid", - "input": true, - "components": [ - { - "title": "Entries", - "collapsible": false, - "hideLabel": true, - "key": "panel1", - "type": "panel", - "label": "Panel", - "input": false, - "tableView": false, - "components": [ - { - "key": "cols3", - "type": "columns", - "input": false, - "label": "Columns - 2", - "columns": [ - { - "pull": 0, - "push": 0, - "size": "md", - "width": 6, - "offset": 0, - "components": [ - { - "key": "Section2-LegallyTitled-PID", - "type": "textfield", - "input": true, - "label": "PID", - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "inputMask": "999-999-999", - "tableView": true, - "hideOnChildrenHidden": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "eaoeej" - } - ], - "currentWidth": 6 - }, - { - "pull": 0, - "push": 0, - "size": "md", - "width": 6, - "offset": 0, - "components": [], - "currentWidth": 6 - } - ], - "tableView": false, - "hideOnChildrenHidden": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "hidden": false, - "clearOnHide": false, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "tree": false, - "lazyLoad": false, - "autoAdjust": false, - "id": "e35et7b" - }, - { - "key": "Section2-LegallyTitled-LandDescription", - "type": "textarea", - "input": true, - "label": "Land Description", - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "", - "minWords": "", - "maxWords": "" - }, - "tableView": true, - "autoExpand": false, - "inputFormat": "plain", - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "rows": 3, - "wysiwyg": false, - "editor": "", - "fixedSize": true, - "id": "eqnyhh" - } - ], - "id": "eskogm000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "hidden": false, - "clearOnHide": false, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "tree": false, - "lazyLoad": false, - "theme": "default", - "breadcrumb": "default" - } - ], - "hideOnChildrenHidden": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "tree": true, - "lazyLoad": false, - "disableAddingRemovingRows": false, - "id": "eyxh9qa" - } - ], - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "clearOnHide": false, - "refreshOn": "", - "redrawOn": "", - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "tree": false, - "lazyLoad": false, - "id": "esaica" - }, - { - "title": "For Untitled Crown Land (Source Site)", - "theme": "default", - "tooltip": "", - "customClass": "", - "collapsible": false, - "hidden": false, - "hideLabel": false, - "disabled": false, - "modalEdit": false, - "key": "Section2-forUntitledCrownLand", - "tags": [], - "properties": {}, - "customConditional": "", - "conditional": { - "json": "", - "show": true, - "when": "landOwnershipSourceSitePleaseSelectAllThatApply", - "eq": "untitledCrown" - }, - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "panel", - "label": "", - "breadcrumb": "default", - "tabindex": "", - "input": false, - "collapsed": false, - "tableView": false, - "components": [ - { - "key": "Section2-UntitledCrown-PINColumn", - "type": "datagrid", - "input": true, - "label": "", - "reorder": false, - "hideLabel": true, - "initEmpty": false, - "tableView": false, - "components": [ - { - "title": "Untitled Crown Land", - "theme": "default", - "tooltip": "", - "customClass": "", - "collapsible": false, - "hidden": false, - "hideLabel": true, - "dataGridLabel": false, - "disabled": false, - "modalEdit": false, - "key": "panel1", - "tags": [], - "properties": {}, - "customConditional": "", - "conditional": { - "json": "", - "show": null, - "when": null, - "eq": "" - }, - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "panel", - "label": "Crown Land", - "breadcrumb": "default", - "tabindex": "", - "input": false, - "tableView": false, - "components": [ - { - "key": "cols3", - "type": "columns", - "input": false, - "label": "Columns - 2", - "columns": [ - { - "pull": 0, - "push": 0, - "size": "md", - "width": 6, - "offset": 0, - "components": [ - { - "key": "Section2-LegallyTitled-PID", - "type": "textfield", - "input": true, - "label": "PIN", - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "tableView": true, - "hideOnChildrenHidden": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "e0zxpd" - } - ], - "currentWidth": 6 - }, - { - "pull": 0, - "push": 0, - "size": "md", - "width": 6, - "offset": 0, - "components": [], - "currentWidth": 6 - } - ], - "tableView": false, - "hideOnChildrenHidden": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "hidden": false, - "clearOnHide": false, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "tree": false, - "lazyLoad": false, - "autoAdjust": false, - "id": "eohw9y" - }, - { - "key": "Section2-LegallyTitled-LandDescription", - "type": "textarea", - "input": true, - "label": "Land Description or metes and bounds", - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "", - "minWords": "", - "maxWords": "" - }, - "tableView": true, - "autoExpand": false, - "inputFormat": "plain", - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "rows": 3, - "wysiwyg": false, - "editor": "", - "fixedSize": true, - "id": "e9sdlfc" - } - ], - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "clearOnHide": false, - "refreshOn": "", - "redrawOn": "", - "labelPosition": "top", - "description": "", - "errorLabel": "", - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "tree": false, - "lazyLoad": false, - "id": "e0cqfrg000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" - } - ], - "layoutFixed": false, - "defaultValue": [ - { - "Section2-LegallyTitled-PID": "", - "SiteAddress-UntitledCrown-PIN": "", - "Section2-LegallyTitled-LandDescription": "", - "SiteAddress-UntitledCrown-LandDescription": "" - } - ], - "enableRowGroups": false, - "addAnotherPosition": "bottom", - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "tree": true, - "lazyLoad": false, - "disableAddingRemovingRows": false, - "id": "eg4uvab" - }, - { - "label": "And if available:", - "reorder": false, - "addAnotherPosition": "bottom", - "layoutFixed": false, - "enableRowGroups": false, - "initEmpty": false, - "hideLabel": true, - "tableView": false, - "defaultValue": [ - { - "Section2-UntitledCrown-CrownLandFileNumbers": "", - "SiteAddress-UntitledCrown-CrownLandFileNumbers": "" - } - ], - "key": "Section2-UntitledCrownLand-FileNumberColumn", - "type": "datagrid", - "input": true, - "components": [ - { - "key": "Section2-UntitledCrown-CrownLandFileNumbers", - "type": "textfield", - "input": true, - "label": "Crown Land File Numbers", - "tableView": true, - "id": "elizdoh000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false - } - ], - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "tree": true, - "lazyLoad": false, - "disableAddingRemovingRows": false, - "id": "eeq9myk" - } - ], - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "clearOnHide": false, - "refreshOn": "", - "redrawOn": "", - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "tree": false, - "lazyLoad": false, - "id": "eids8qa" - }, - { - "title": "For untitled municipal land (Source Site)", - "theme": "default", - "tooltip": "", - "customClass": "", - "collapsible": false, - "hidden": false, - "hideLabel": false, - "disabled": false, - "modalEdit": false, - "key": "Section2-forUntitledCrownLand1", - "tags": [], - "properties": {}, - "customConditional": "", - "conditional": { - "json": "", - "show": true, - "when": "landOwnershipSourceSitePleaseSelectAllThatApply", - "eq": "untitledMunicipal" - }, - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "panel", - "label": "", - "breadcrumb": "default", - "tabindex": "", - "input": false, - "collapsed": false, - "tableView": false, - "components": [ - { - "key": "Section2-LegallyTitled-LandDescription", - "type": "textarea", - "input": true, - "label": "Land Description", - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "", - "minWords": "", - "maxWords": "" - }, - "tableView": true, - "autoExpand": false, - "inputFormat": "plain", - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "rows": 3, - "wysiwyg": false, - "editor": "", - "fixedSize": true, - "id": "eggg59w" - } - ], - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "clearOnHide": false, - "refreshOn": "", - "redrawOn": "", - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "tree": false, - "lazyLoad": false, - "id": "e8g7fan" - } - ], - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "clearOnHide": false, - "refreshOn": "", - "redrawOn": "", - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "tree": false, - "lazyLoad": false, - "id": "eqif3zi" - }, - { - "title": "Offsite Impacted Properties", - "theme": "default", - "tooltip": "", - "customClass": "", - "collapsible": false, - "hidden": false, - "hideLabel": false, - "disabled": false, - "modalEdit": false, - "key": "offsiteImpactedProperties1", - "tags": [], - "properties": {}, - "customConditional": "", - "conditional": { - "json": "", - "show": null, - "when": null, - "eq": "" - }, - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "panel", - "label": "Panel", - "breadcrumb": "default", - "tabindex": "", - "input": false, - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "clearOnHide": false, - "refreshOn": "", - "redrawOn": "", - "tableView": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "tree": false, - "lazyLoad": false, - "components": [ - { - "label": "Select one:", - "labelPosition": "top", - "optionsLabelPosition": "right", - "description": "", - "tooltip": "", - "customClass": "", - "tabindex": "", - "inline": false, - "hidden": false, - "hideLabel": false, - "autofocus": false, - "disabled": false, - "tableView": false, - "modalEdit": false, - "values": [ - { - "label": "Offsite impacted property(ies) - Provide information for each", - "value": "offsiteImpactedProperty", - "shortcut": "" - }, - { - "label": "Not Applicable", - "value": "notApplicable", - "shortcut": "" - } - ], - "dataType": "", - "persistent": true, - "protected": false, - "dbIndex": false, - "encrypted": false, - "redrawOn": "", - "clearOnHide": true, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "allowCalculateOverride": false, - "validate": { - "required": true, - "onlyAvailableItems": false, - "customMessage": "", - "custom": "", - "customPrivate": false, - "json": "", - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "errorLabel": "", - "errors": "", - "key": "offsiteImpactedProperties", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "radio", - "input": true, - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "unique": false, - "refreshOn": "", - "dataGridLabel": false, - "widget": null, - "validateOn": "change", - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "inputType": "radio", - "fieldSet": false, - "id": "e2ysuh", - "defaultValue": "" - }, - { - "label": "", - "reorder": false, - "addAnotherPosition": "bottom", - "layoutFixed": false, - "enableRowGroups": false, - "initEmpty": false, - "hideLabel": true, - "tableView": false, - "defaultValue": [ - {} - ], - "key": "dataGrid1", - "conditional": { - "show": true, - "when": "offsiteImpactedProperties", - "eq": "offsiteImpactedProperty" - }, - "type": "datagrid", - "input": true, - "components": [ - { - "title": "Coordinates for the centre of the impacted site", - "collapsible": false, - "key": "Section2-forUntitledCrownLand2", - "conditional": { - "show": true, - "when": "offsiteImpactedProperties", - "eq": "offsiteImpactedProperty" - }, - "type": "panel", - "label": "Impacted Sites", - "input": false, - "collapsed": false, - "tableView": false, - "components": [ - { - "key": "heading8", - "tag": "h4", - "type": "htmlelement", - "input": false, - "label": "Heading", - "content": "Latitude", - "tableView": false, - "headingSize": "h1", - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "attrs": [], - "id": "e2ug45e" - }, - { - "key": "Section2-LatitudeColumn2", - "type": "columns", - "input": false, - "label": "Columns - 3", - "columns": [ - { - "pull": 0, - "push": 0, - "size": "md", - "width": 4, - "offset": 0, - "components": [ - { - "key": "section2LatitudeDegrees2", - "type": "textfield", - "input": true, - "label": "Degrees", - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "tableView": false, - "hideOnChildrenHidden": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "ey5x9g8" - } - ], - "currentWidth": 4 - }, - { - "pull": 0, - "push": 0, - "size": "md", - "width": 4, - "offset": 0, - "components": [ - { - "key": "section2LatitudeMinutes2", - "type": "textfield", - "input": true, - "label": "Minutes", - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "tableView": false, - "hideOnChildrenHidden": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "e1ftky" - } - ], - "currentWidth": 4 - }, - { - "pull": 0, - "push": 0, - "size": "md", - "width": 4, - "offset": 0, - "components": [ - { - "key": "section2LatitudeSeconds2", - "type": "textfield", - "input": true, - "label": "Seconds", - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "tableView": false, - "hideOnChildrenHidden": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "e4whd08" - } - ], - "currentWidth": 4 - } - ], - "tableView": false, - "hideOnChildrenHidden": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "hidden": false, - "clearOnHide": false, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "tree": false, - "lazyLoad": false, - "autoAdjust": false, - "id": "el90wzy" - }, - { - "key": "heading9", - "tag": "h4", - "type": "htmlelement", - "input": false, - "label": "Heading", - "content": "Longitude", - "tableView": false, - "headingSize": "h1", - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "attrs": [], - "id": "ex8n8vc" - }, - { - "key": "Section2-LongitudeColumn2", - "type": "columns", - "input": false, - "label": "Columns - 3", - "columns": [ - { - "pull": 0, - "push": 0, - "size": "md", - "width": 4, - "offset": 0, - "components": [ - { - "key": "section2LongitudeDegrees2", - "type": "textfield", - "input": true, - "label": "Degrees", - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "tableView": false, - "hideOnChildrenHidden": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "eayewmr" - } - ], - "currentWidth": 4 - }, - { - "pull": 0, - "push": 0, - "size": "md", - "width": 4, - "offset": 0, - "components": [ - { - "key": "section2LongitudeMinutes2", - "type": "textfield", - "input": true, - "label": "Minutes", - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "tableView": false, - "hideOnChildrenHidden": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "eg5a19" - } - ], - "currentWidth": 4 - }, - { - "pull": 0, - "push": 0, - "size": "md", - "width": 4, - "offset": 0, - "components": [ - { - "key": "section2LongitudeSeconds2", - "type": "textfield", - "input": true, - "label": "Seconds", - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "tableView": false, - "hideOnChildrenHidden": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "evt9aao" - } - ], - "currentWidth": 4 - } - ], - "tableView": false, - "hideOnChildrenHidden": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "hidden": false, - "clearOnHide": false, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "tree": false, - "lazyLoad": false, - "autoAdjust": false, - "id": "e6o3au0o" - } - ], - "id": "erlwlrl00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "hidden": false, - "clearOnHide": false, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "tree": false, - "lazyLoad": false, - "theme": "default", - "breadcrumb": "default" - } - ], - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "tree": true, - "lazyLoad": false, - "disableAddingRemovingRows": false, - "id": "eef218" - }, - { - "html": "

Attention:

", - "label": "Content", - "customClass": "", - "refreshOnChange": false, - "hidden": false, - "modalEdit": false, - "key": "content1", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "content", - "input": false, - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "tableView": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "id": "edgwhqh" - }, - { - "label": "Include land title record, where applicable", - "labelPosition": "top", - "optionsLabelPosition": "right", - "description": "", - "tooltip": "", - "customClass": "", - "tabindex": "", - "inline": false, - "hidden": false, - "hideLabel": false, - "autofocus": false, - "disabled": false, - "tableView": false, - "modalEdit": false, - "values": [ - { - "label": "I understand and will include a land title record with my submission", - "value": "hasTitleRecord", - "shortcut": "" - }, - { - "label": "Land title record not available", - "value": "noTitleRecord", - "shortcut": "" - } - ], - "dataType": "", - "persistent": true, - "protected": false, - "dbIndex": false, - "encrypted": false, - "redrawOn": "", - "clearOnHide": true, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "allowCalculateOverride": false, - "validate": { - "required": true, - "onlyAvailableItems": false, - "customMessage": "", - "custom": "", - "customPrivate": false, - "json": "", - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "errorLabel": "", - "errors": "", - "key": "includeLandTitleRecordWhereApplicable", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "radio", - "input": true, - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "unique": false, - "refreshOn": "", - "dataGridLabel": false, - "widget": null, - "validateOn": "change", - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "inputType": "radio", - "fieldSet": false, - "id": "e0vaduj", - "defaultValue": "noTitleRecord" - }, - { - "label": "Land ownership (Impacted Property or Receiving Site) Please select all that apply:", - "optionsLabelPosition": "right", - "tableView": false, - "values": [ - { - "label": "Legally Titled, Registered Property", - "value": "legallyTitled", - "shortcut": "" - }, - { - "label": "Untitled Crown Land", - "value": "untitledCrown", - "shortcut": "" - }, - { - "label": "Untitled Municipal Land", - "value": "untitledMunicipal", - "shortcut": "" - } - ], - "key": "landOwnershipImpactedPropertyPleaseSelectAllThatApply", - "type": "selectboxes", - "input": true, - "inputType": "checkbox", - "defaultValue": { - "legallyTitled": false, - "untitledCrown": false, - "untitledMunicipal": false - }, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "onlyAvailableItems": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "fieldSet": false, - "inline": false, - "id": "ebvkqdh" - }, - { - "title": "For Legally Titled, Registered Property (Impacted Property)", - "theme": "default", - "tooltip": "", - "customClass": "", - "collapsible": false, - "hidden": false, - "hideLabel": false, - "disabled": false, - "modalEdit": false, - "key": "forLegallyTitledRegisteredProperty-panel1", - "tags": [], - "properties": {}, - "customConditional": "", - "conditional": { - "json": "", - "show": true, - "when": "landOwnershipImpactedPropertyPleaseSelectAllThatApply", - "eq": "legallyTitled" - }, - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "panel", - "label": "", - "breadcrumb": "default", - "tabindex": "", - "input": false, - "collapsed": false, - "tableView": false, - "components": [ - { - "key": "Section2-LegallyTitled-Address1", - "type": "textfield", - "input": true, - "label": "Site Address", - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "tableView": false, - "placeholder": "or nearest street name/intersection if no address is assigned", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "epwcnl" - }, - { - "key": "Section2-LegallyTitled-AddressColumn1", - "type": "columns", - "input": false, - "label": "Columns - 2", - "columns": [ - { - "pull": 0, - "push": 0, - "size": "md", - "width": 6, - "offset": 0, - "components": [ - { - "key": "Section2-LegallyTitled-City1", - "type": "textfield", - "input": true, - "label": "City", - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "tableView": false, - "hideOnChildrenHidden": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "e6ii8s" - } - ], - "currentWidth": 6 - }, - { - "pull": 0, - "push": 0, - "size": "md", - "width": 6, - "offset": 0, - "components": [ - { - "key": "Section2-LegallyTitled-PostalZipCode1", - "type": "textfield", - "input": true, - "label": "Postal Code", - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "tableView": false, - "hideOnChildrenHidden": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "erie2w" - } - ], - "currentWidth": 6 - } - ], - "tableView": false, - "hideOnChildrenHidden": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "hidden": false, - "clearOnHide": false, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "tree": false, - "lazyLoad": false, - "autoAdjust": false, - "id": "e5j0jj4" - }, - { - "label": "Enter PIDs and Land Descriptions below", - "tooltip": "Select the 'X' button to delete an entry.", - "reorder": false, - "addAnotherPosition": "bottom", - "layoutFixed": false, - "enableRowGroups": false, - "initEmpty": false, - "hideLabel": true, - "tableView": false, - "defaultValue": [ - { - "Section2-LegallyTitled-PID": "", - "SiteAddress-LegallyTitled-PID": "", - "Section2-LegallyTitled-LandDescription": "", - "SiteAddress-LegallyTitled-LandDescription": "" - } - ], - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "key": "Section2-LegallyTitled-PIDColumn1", - "type": "datagrid", - "input": true, - "components": [ - { - "title": "Entries", - "collapsible": false, - "hideLabel": true, - "key": "panel1", - "type": "panel", - "label": "Panel", - "input": false, - "tableView": false, - "components": [ - { - "key": "cols3", - "type": "columns", - "input": false, - "label": "Columns - 2", - "columns": [ - { - "pull": 0, - "push": 0, - "size": "md", - "width": 6, - "offset": 0, - "components": [ - { - "key": "Section2-LegallyTitled-PID", - "type": "textfield", - "input": true, - "label": "PID", - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "inputMask": "999-999-999", - "tableView": true, - "hideOnChildrenHidden": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "e35yp8o" - } - ], - "currentWidth": 6 - }, - { - "pull": 0, - "push": 0, - "size": "md", - "width": 6, - "offset": 0, - "components": [], - "currentWidth": 6 - } - ], - "tableView": false, - "hideOnChildrenHidden": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "hidden": false, - "clearOnHide": false, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "tree": false, - "lazyLoad": false, - "autoAdjust": false, - "id": "edxz0kc" - }, - { - "key": "Section2-LegallyTitled-LandDescription", - "type": "textarea", - "input": true, - "label": "Land Description", - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "", - "minWords": "", - "maxWords": "" - }, - "tableView": true, - "autoExpand": false, - "inputFormat": "plain", - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "rows": 3, - "wysiwyg": false, - "editor": "", - "fixedSize": true, - "id": "eg4rrls" - } - ], - "id": "ehjtgz000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "hidden": false, - "clearOnHide": false, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "tree": false, - "lazyLoad": false, - "theme": "default", - "breadcrumb": "default" - } - ], - "hideOnChildrenHidden": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "tree": true, - "lazyLoad": false, - "disableAddingRemovingRows": false, - "id": "edwqg5s" - } - ], - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "clearOnHide": false, - "refreshOn": "", - "redrawOn": "", - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "tree": false, - "lazyLoad": false, - "id": "eljmet" - }, - { - "title": "For Untitled Crown Land (Impacted Property)", - "theme": "default", - "tooltip": "", - "customClass": "", - "collapsible": false, - "hidden": false, - "hideLabel": false, - "disabled": false, - "modalEdit": false, - "key": "Section2-forUntitledCrownLand2", - "tags": [], - "properties": {}, - "customConditional": "", - "conditional": { - "json": "", - "show": true, - "when": "landOwnershipImpactedPropertyPleaseSelectAllThatApply", - "eq": "untitledCrown" - }, - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "panel", - "label": "", - "breadcrumb": "default", - "tabindex": "", - "input": false, - "collapsed": false, - "tableView": false, - "components": [ - { - "label": "Crown Land Entries", - "labelPosition": "top", - "description": "", - "tooltip": "", - "disableAddingRemovingRows": false, - "conditionalAddButton": "", - "reorder": false, - "addAnother": "", - "addAnotherPosition": "bottom", - "layoutFixed": false, - "enableRowGroups": false, - "initEmpty": false, - "customClass": "", - "tabindex": "", - "hidden": false, - "hideLabel": true, - "autofocus": false, - "disabled": false, - "tableView": false, - "modalEdit": false, - "defaultValue": [ - { - "Section2-LegallyTitled-PID": "", - "SiteAddress-UntitledCrown-PIN": "", - "Section2-LegallyTitled-LandDescription": "", - "SiteAddress-UntitledCrown-LandDescription": "" - } - ], - "persistent": true, - "protected": false, - "dbIndex": false, - "encrypted": false, - "redrawOn": "", - "clearOnHide": true, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "allowCalculateOverride": false, - "validateOn": "change", - "validate": { - "required": false, - "minLength": "", - "maxLength": "", - "customMessage": "", - "custom": "", - "customPrivate": false, - "json": "", - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "errorLabel": "", - "errors": "", - "key": "Section2-UntitledCrown-PINColumn1", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "datagrid", - "input": true, - "components": [ - { - "title": "Crown Land", - "theme": "default", - "tooltip": "", - "customClass": "", - "collapsible": false, - "hidden": false, - "hideLabel": true, - "dataGridLabel": false, - "disabled": false, - "modalEdit": false, - "key": "panel1", - "tags": [], - "properties": {}, - "customConditional": "", - "conditional": { - "json": "", - "show": null, - "when": null, - "eq": "" - }, - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "panel", - "label": "", - "breadcrumb": "default", - "tabindex": "", - "input": false, - "tableView": false, - "components": [ - { - "key": "cols3", - "type": "columns", - "input": false, - "label": "Columns - 2", - "columns": [ - { - "pull": 0, - "push": 0, - "size": "md", - "width": 6, - "offset": 0, - "components": [ - { - "label": "PIN", - "tableView": true, - "key": "Section2-LegallyTitled-PID", - "type": "textfield", - "input": true, - "hideOnChildrenHidden": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "e6g3hkp" - } - ], - "currentWidth": 6 - }, - { - "pull": 0, - "push": 0, - "size": "md", - "width": 6, - "offset": 0, - "components": [], - "currentWidth": 6 - } - ], - "tableView": false, - "hideOnChildrenHidden": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "hidden": false, - "clearOnHide": false, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "tree": false, - "lazyLoad": false, - "autoAdjust": false, - "id": "eqa4hvn" - }, - { - "label": "Land Description or metes and bounds", - "autoExpand": false, - "tableView": true, - "inputFormat": "plain", - "key": "Section2-LegallyTitled-LandDescription", - "type": "textarea", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "", - "minWords": "", - "maxWords": "" - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "rows": 3, - "wysiwyg": false, - "editor": "", - "fixedSize": true, - "id": "esiwlom" - } - ], - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "clearOnHide": false, - "refreshOn": "", - "redrawOn": "", - "labelPosition": "top", - "description": "", - "errorLabel": "", - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "tree": false, - "lazyLoad": false, - "id": "emjblk6000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" - } - ], - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "unique": false, - "refreshOn": "", - "dataGridLabel": false, - "widget": null, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "tree": true, - "lazyLoad": false, - "id": "ecdu066" - }, - { - "label": "And if available:", - "reorder": false, - "addAnotherPosition": "bottom", - "layoutFixed": false, - "enableRowGroups": false, - "initEmpty": false, - "hideLabel": true, - "tableView": false, - "defaultValue": [ - { - "Section2-UntitledCrown-CrownLandFileNumbers": "", - "SiteAddress-UntitledCrown-CrownLandFileNumbers": "" - } - ], - "key": "Section2-UntitledCrownLand-FileNumberColumn1", - "type": "datagrid", - "input": true, - "components": [ - { - "key": "Section2-UntitledCrown-CrownLandFileNumbers", - "type": "textfield", - "input": true, - "label": "Crown Land File Numbers", - "tableView": true, - "id": "eh8kmqu0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false - } - ], - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "tree": true, - "lazyLoad": false, - "disableAddingRemovingRows": false, - "id": "ebjum0p" - } - ], - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "clearOnHide": false, - "refreshOn": "", - "redrawOn": "", - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "tree": false, - "lazyLoad": false, - "id": "e6t7knc" - }, - { - "title": "For untitled municipal land (Impacted Property)", - "theme": "default", - "tooltip": "", - "customClass": "", - "collapsible": false, - "hidden": false, - "hideLabel": false, - "disabled": false, - "modalEdit": false, - "key": "Section2-forUntitledCrownLand3", - "tags": [], - "properties": {}, - "customConditional": "", - "conditional": { - "json": "", - "show": true, - "when": "landOwnershipImpactedPropertyPleaseSelectAllThatApply", - "eq": "untitledMunicipal" - }, - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "panel", - "label": "", - "breadcrumb": "default", - "tabindex": "", - "input": false, - "collapsed": false, - "tableView": false, - "components": [ - { - "key": "Section2-LegallyTitled-LandDescription1", - "type": "textarea", - "input": true, - "label": "Land Description", - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "", - "minWords": "", - "maxWords": "" - }, - "tableView": true, - "autoExpand": false, - "inputFormat": "plain", - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "rows": 3, - "wysiwyg": false, - "editor": "", - "fixedSize": true, - "id": "eze39c" - } - ], - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "clearOnHide": false, - "refreshOn": "", - "redrawOn": "", - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "tree": false, - "lazyLoad": false, - "id": "ewwn6y8" - } - ], - "id": "e8qmdma" - }, - { - "html": "

Part 3 - Document Summary

 

", - "label": "Content", - "customClass": "", - "refreshOnChange": false, - "hidden": false, - "modalEdit": false, - "key": "content5", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "content", - "input": false, - "tableView": false, - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "id": "ewlel6g" - }, - { - "title": "", - "theme": "default", - "tooltip": "", - "customClass": "", - "collapsible": false, - "hidden": false, - "hideLabel": false, - "disabled": false, - "modalEdit": false, - "key": "panel8", - "tags": [], - "properties": {}, - "customConditional": "", - "conditional": { - "json": "", - "show": null, - "when": null, - "eq": "" - }, - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "panel", - "label": "Panel", - "breadcrumb": "default", - "tabindex": "", - "input": false, - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "clearOnHide": false, - "refreshOn": "", - "redrawOn": "", - "tableView": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "tree": false, - "lazyLoad": false, - "components": [ - { - "html": "

List all known site investigation, risk assessment (including screening level risk assessment), remediation plan and confirmation of remediation reports comleted and directly supporting correspondence submitted (for source site and offsite impacted sites). 

List documents in order from newest to oldest.

", - "label": "Content", - "customClass": "", - "refreshOnChange": false, - "hidden": false, - "modalEdit": false, - "key": "content8", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "content", - "input": false, - "tableView": false, - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "id": "eevyl1r" - }, - { - "label": "", - "reorder": false, - "addAnotherPosition": "bottom", - "layoutFixed": false, - "enableRowGroups": false, - "initEmpty": false, - "hideLabel": true, - "tableView": false, - "defaultValue": [ - { - "document": "", - "documentTitle": "", - "authorCompany": "", - "documentDate": "00/00/0000" - } - ], - "key": "dataGrid2", - "type": "datagrid", - "input": true, - "components": [ - { - "title": "Document", - "collapsible": false, - "key": "documents", - "type": "panel", - "label": "Documents", - "input": false, - "tableView": false, - "components": [ - { - "label": "Document #:", - "tableView": true, - "key": "document", - "type": "textfield", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "e0ufs5o" - }, - { - "label": "Document Title", - "tableView": true, - "key": "documentTitle", - "type": "textfield", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "e839axn" - }, - { - "label": "Author/Company", - "tableView": true, - "key": "authorCompany", - "type": "textfield", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "eum71oo" - }, - { - "label": "Document Date", - "hideInputLabels": false, - "inputsLabelPosition": "top", - "useLocaleSettings": false, - "tableView": false, - "fields": { - "day": { - "hide": false, - "type": "number", - "placeholder": "", - "required": false - }, - "month": { - "hide": false, - "type": "select", - "placeholder": "", - "required": false - }, - "year": { - "hide": false, - "type": "number", - "placeholder": "", - "required": false - } - }, - "key": "documentDate", - "type": "day", - "input": true, - "defaultValue": "00/00/0000", - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "dayFirst": false, - "id": "egqqs34" - } - ], - "id": "e80y9k8000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "hidden": false, - "clearOnHide": false, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "tree": false, - "lazyLoad": false, - "theme": "default", - "breadcrumb": "default" - } - ], - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "tree": true, - "lazyLoad": false, - "disableAddingRemovingRows": false, - "id": "e1pcqd3" - } - ], - "id": "euq4ro" - }, - { - "html": "

Part 4 - Investigation Summary

 

", - "label": "Content", - "customClass": "", - "refreshOnChange": false, - "hidden": false, - "modalEdit": false, - "key": "content6", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "content", - "input": false, - "tableView": false, - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "id": "e08pdh" - }, - { - "label": "Has an Approval in Principal (AiP) been issued for this site?", - "labelPosition": "top", - "optionsLabelPosition": "right", - "description": "", - "tooltip": "", - "customClass": "", - "tabindex": "", - "inline": false, - "hidden": false, - "hideLabel": false, - "autofocus": false, - "disabled": false, - "tableView": false, - "modalEdit": false, - "values": [ - { - "label": "Yes", - "value": "true", - "shortcut": "" - }, - { - "label": "No", - "value": "false", - "shortcut": "" - } - ], - "dataType": "", - "persistent": true, - "protected": false, - "dbIndex": false, - "encrypted": false, - "redrawOn": "", - "clearOnHide": true, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "allowCalculateOverride": false, - "validate": { - "required": false, - "onlyAvailableItems": false, - "customMessage": "", - "custom": "", - "customPrivate": false, - "json": "", - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "errorLabel": "", - "errors": "", - "key": "hasAnApprovalInPrincipalAiPBeenIssuedForThisSite", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "radio", - "input": true, - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "unique": false, - "refreshOn": "", - "dataGridLabel": false, - "widget": null, - "validateOn": "change", - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "inputType": "radio", - "fieldSet": false, - "id": "etgpg9", - "defaultValue": "" - }, - { - "html": "

If an Approval in Principle (AIP) has been issued and this SoSC form is being submitted as part of a Certificate of Compliance, you do not need to complete PART 4.

If an AiP has not been issued, or if other circumstances require completion of section 4, please complete PARTS 4.1 to 4.8 below where indicated.

 

", - "label": "Content", - "customClass": "", - "refreshOnChange": false, - "hidden": false, - "modalEdit": false, - "key": "content7", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "content", - "input": false, - "tableView": false, - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "id": "e4z1cma" - }, - { - "title": "SECTION I - Investigations Completed", - "collapsible": false, - "key": "sectionIInvestigationsCompleted", - "conditional": { - "show": true, - "when": "hasAnApprovalInPrincipalAiPBeenIssuedForThisSite", - "eq": "false" - }, - "type": "panel", - "label": "Panel", - "input": false, - "tableView": false, - "components": [ - { - "title": "", - "collapsible": false, - "key": "panel2", - "type": "panel", - "label": "Panel", - "input": false, - "tableView": false, - "components": [ - { - "html": "

Stage 1 PSI

", - "label": "Content", - "refreshOnChange": false, - "key": "content9", - "type": "content", - "input": false, - "tableView": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "id": "e3pl2xr" - }, - { - "label": "Completed? ", - "optionsLabelPosition": "right", - "inline": false, - "tableView": false, - "values": [ - { - "label": "Yes", - "value": "yes", - "shortcut": "" - }, - { - "label": "No", - "value": "no", - "shortcut": "" - }, - { - "label": "N/A", - "value": "nA", - "shortcut": "" - } - ], - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "onlyAvailableItems": false - }, - "key": "completed", - "type": "radio", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "inputType": "radio", - "fieldSet": false, - "id": "e5mdhfh" - }, - { - "label": "Includes Stage 1 PSI information as listed in CSR Section 58 and any current applicable ministry protocols, guidelines, checklists, etc.?", - "optionsLabelPosition": "right", - "inline": false, - "tableView": false, - "values": [ - { - "label": "Yes", - "value": "yes", - "shortcut": "" - }, - { - "label": "No", - "value": "no", - "shortcut": "" - }, - { - "label": "N/A", - "value": "nA", - "shortcut": "" - } - ], - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "onlyAvailableItems": false - }, - "key": "includesStage1PsiInformationAsListedInCsrSection58AndAnyCurrentApplicableMinistryProtocolsGuidelinesChecklistsEtc", - "type": "radio", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "inputType": "radio", - "fieldSet": false, - "id": "eaori8x" - }, - { - "html": "

Stage 2 PSI

", - "label": "Content", - "refreshOnChange": false, - "key": "content10", - "type": "content", - "input": false, - "tableView": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "id": "epv4kl" - }, - { - "label": "Completed? ", - "optionsLabelPosition": "right", - "inline": false, - "tableView": false, - "values": [ - { - "label": "Yes", - "value": "yes", - "shortcut": "" - }, - { - "label": "No", - "value": "no", - "shortcut": "" - }, - { - "label": "N/A", - "value": "nA", - "shortcut": "" - } - ], - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "onlyAvailableItems": false - }, - "key": "completed1", - "type": "radio", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "inputType": "radio", - "fieldSet": false, - "id": "evp0dxp" - }, - { - "label": "Includes Stage 2 PSI information as listed in CSR Section 59 and any current applicable ministry protocols, guidelines, checklists, etc.?", - "optionsLabelPosition": "right", - "inline": false, - "tableView": false, - "values": [ - { - "label": "Yes", - "value": "yes", - "shortcut": "" - }, - { - "label": "No", - "value": "no", - "shortcut": "" - }, - { - "label": "N/A", - "value": "nA", - "shortcut": "" - } - ], - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "onlyAvailableItems": false - }, - "key": "includesStage1PsiInformationAsListedInCsrSection58AndAnyCurrentApplicableMinistryProtocolsGuidelinesChecklistsEtc1", - "type": "radio", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "inputType": "radio", - "fieldSet": false, - "id": "ep82c5k" - }, - { - "html": "

DSI

", - "label": "Content", - "refreshOnChange": false, - "key": "content11", - "type": "content", - "input": false, - "tableView": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "id": "era84nd" - }, - { - "label": "Completed? ", - "optionsLabelPosition": "right", - "inline": false, - "tableView": false, - "values": [ - { - "label": "Yes", - "value": "yes", - "shortcut": "" - }, - { - "label": "No", - "value": "no", - "shortcut": "" - }, - { - "label": "N/A", - "value": "nA", - "shortcut": "" - } - ], - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "onlyAvailableItems": false - }, - "key": "completed2", - "type": "radio", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "inputType": "radio", - "fieldSet": false, - "id": "e1o53pv" - }, - { - "label": "Includes DSI information as listed in CSR Section 59 and any current applicable ministry protocols, guidelines, checklists, etc.?", - "optionsLabelPosition": "right", - "inline": false, - "tableView": false, - "values": [ - { - "label": "Yes", - "value": "yes", - "shortcut": "" - }, - { - "label": "No", - "value": "no", - "shortcut": "" - }, - { - "label": "N/A", - "value": "nA", - "shortcut": "" - } - ], - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "onlyAvailableItems": false - }, - "key": "includesStage1PsiInformationAsListedInCsrSection58AndAnyCurrentApplicableMinistryProtocolsGuidelinesChecklistsEtc2", - "type": "radio", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "inputType": "radio", - "fieldSet": false, - "id": "eaetjce" - }, - { - "html": "

Other Reports

", - "label": "Content", - "refreshOnChange": false, - "key": "content12", - "type": "content", - "input": false, - "tableView": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "id": "e54l6dg" - }, - { - "label": "Completed? ", - "optionsLabelPosition": "right", - "inline": false, - "tableView": false, - "values": [ - { - "label": "Yes", - "value": "yes", - "shortcut": "" - }, - { - "label": "No", - "value": "no", - "shortcut": "" - }, - { - "label": "N/A", - "value": "nA", - "shortcut": "" - } - ], - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "onlyAvailableItems": false - }, - "key": "completed3", - "type": "radio", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "inputType": "radio", - "fieldSet": false, - "id": "enqzxx" - }, - { - "label": "According to other guidelines? (Provide explanation in notes below. Indicate how reports assist understanding of conditions and remediation.)", - "optionsLabelPosition": "right", - "inline": false, - "tableView": false, - "values": [ - { - "label": "Yes", - "value": "yes", - "shortcut": "" - }, - { - "label": "No", - "value": "no", - "shortcut": "" - }, - { - "label": "N/A", - "value": "nA", - "shortcut": "" - } - ], - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "onlyAvailableItems": false - }, - "key": "includesStage1PsiInformationAsListedInCsrSection58AndAnyCurrentApplicableMinistryProtocolsGuidelinesChecklistsEtc3", - "type": "radio", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "inputType": "radio", - "fieldSet": false, - "id": "epuetea" - }, - { - "label": "Notes", - "tableView": true, - "key": "notes", - "type": "textfield", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "e40v61c" - } - ], - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "hidden": false, - "clearOnHide": false, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "tree": false, - "lazyLoad": false, - "theme": "default", - "breadcrumb": "default", - "id": "e5czdm" - }, - { - "html": "

If completed investigation reports are not adequate or if reports are titled differently or have a different scope than those listed above in accordance with the Contaminated Sites Regulation (i.e. PSI, DSI), complete Section 4.8 (Investigation or Interpretation Issues)

", - "label": "Content", - "refreshOnChange": false, - "key": "content66", - "type": "content", - "input": false, - "tableView": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "id": "eckn0k" - } - ], - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "hidden": false, - "clearOnHide": false, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "tree": false, - "lazyLoad": false, - "theme": "default", - "breadcrumb": "default", - "id": "eqjsu9p" - }, - { - "title": "SECTION II - Site Conditions", - "collapsible": false, - "key": "sectionIiSiteConditions", - "conditional": { - "show": true, - "when": "hasAnApprovalInPrincipalAiPBeenIssuedForThisSite", - "eq": "false" - }, - "type": "panel", - "label": "Panel", - "input": false, - "tableView": false, - "components": [ - { - "label": "Topography", - "labelPosition": "top", - "placeholder": "", - "description": "Describe steepness, direction of slope and position of site in relation to surrounding land", - "tooltip": "", - "prefix": "", - "suffix": "", - "widget": { - "type": "input" - }, - "displayMask": "", - "editor": "", - "autoExpand": false, - "customClass": "", - "tabindex": "", - "autocomplete": "", - "hidden": false, - "hideLabel": false, - "showWordCount": false, - "showCharCount": false, - "autofocus": false, - "spellcheck": true, - "disabled": false, - "tableView": true, - "modalEdit": false, - "multiple": false, - "persistent": true, - "inputFormat": "html", - "protected": false, - "dbIndex": false, - "case": "", - "truncateMultipleSpaces": false, - "encrypted": false, - "redrawOn": "", - "clearOnHide": true, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "allowCalculateOverride": false, - "validateOn": "change", - "validate": { - "required": true, - "pattern": "", - "customMessage": "", - "custom": "", - "customPrivate": false, - "json": "", - "minLength": "", - "maxLength": "", - "minWords": "", - "maxWords": "", - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "unique": false, - "errorLabel": "", - "errors": "", - "key": "topography", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "textarea", - "rows": 3, - "wysiwyg": false, - "input": true, - "refreshOn": "", - "dataGridLabel": false, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputMask": "", - "fixedSize": true, - "id": "e0d63ci", - "defaultValue": "" - }, - { - "label": "Stratigraphy", - "labelPosition": "top", - "placeholder": "", - "description": "Describe depth and thickness, grain size, etc. of typical stratigraphic components and note depth to cemented or very compact materials, bedrock / refusal, etc.", - "tooltip": "", - "prefix": "", - "suffix": "", - "widget": { - "type": "input" - }, - "displayMask": "", - "editor": "", - "autoExpand": false, - "customClass": "", - "tabindex": "", - "autocomplete": "", - "hidden": false, - "hideLabel": false, - "showWordCount": false, - "showCharCount": false, - "autofocus": false, - "spellcheck": true, - "disabled": false, - "tableView": true, - "modalEdit": false, - "multiple": false, - "persistent": true, - "inputFormat": "html", - "protected": false, - "dbIndex": false, - "case": "", - "truncateMultipleSpaces": false, - "encrypted": false, - "redrawOn": "", - "clearOnHide": true, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "allowCalculateOverride": false, - "validateOn": "change", - "validate": { - "required": true, - "pattern": "", - "customMessage": "", - "custom": "", - "customPrivate": false, - "json": "", - "minLength": "", - "maxLength": "", - "minWords": "", - "maxWords": "", - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "unique": false, - "errorLabel": "", - "errors": "", - "key": "stratigraphy", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "textarea", - "rows": 3, - "wysiwyg": false, - "input": true, - "refreshOn": "", - "dataGridLabel": false, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputMask": "", - "fixedSize": true, - "id": "etgkvg", - "defaultValue": "" - }, - { - "label": "Hydrogeology", - "labelPosition": "top", - "placeholder": "", - "description": "Describe groundwater levels, confining / semi-confining layers, flow velocity and hydraulic conductivity. Provide arguments and supporting data to show compliance with Protocol 21 \"Water Use Determination\" where a specified groundwater use (DW, AW, IW or LW) has been determined not to apply. Provide explicit statements and description for every geological unit where an exemption from a specified water use is proposed to apply (add additional pages if necessary).", - "tooltip": "", - "prefix": "", - "suffix": "", - "widget": { - "type": "input" - }, - "displayMask": "", - "editor": "", - "autoExpand": false, - "customClass": "", - "tabindex": "", - "autocomplete": "", - "hidden": false, - "hideLabel": false, - "showWordCount": false, - "showCharCount": false, - "autofocus": false, - "spellcheck": true, - "disabled": false, - "tableView": true, - "modalEdit": false, - "multiple": false, - "persistent": true, - "inputFormat": "html", - "protected": false, - "dbIndex": false, - "case": "", - "truncateMultipleSpaces": false, - "encrypted": false, - "redrawOn": "", - "clearOnHide": true, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "allowCalculateOverride": false, - "validateOn": "change", - "validate": { - "required": true, - "pattern": "", - "customMessage": "", - "custom": "", - "customPrivate": false, - "json": "", - "minLength": "", - "maxLength": "", - "minWords": "", - "maxWords": "", - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "unique": false, - "errorLabel": "", - "errors": "", - "key": "hydrogeology", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "textarea", - "rows": 3, - "wysiwyg": false, - "input": true, - "refreshOn": "", - "dataGridLabel": false, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputMask": "", - "fixedSize": true, - "id": "ejzhbnb", - "defaultValue": "" - }, - { - "label": "Surface water features - freshwater ", - "labelPosition": "top", - "placeholder": "", - "description": "List name, direction and distance to nearest surface water bodies and the characteristics (e.g., relative size / flow) of the water body", - "tooltip": "", - "prefix": "", - "suffix": "", - "widget": { - "type": "input" - }, - "displayMask": "", - "editor": "", - "autoExpand": false, - "customClass": "", - "tabindex": "", - "autocomplete": "", - "hidden": false, - "hideLabel": false, - "showWordCount": false, - "showCharCount": false, - "autofocus": false, - "spellcheck": true, - "disabled": false, - "tableView": true, - "modalEdit": false, - "multiple": false, - "persistent": true, - "inputFormat": "html", - "protected": false, - "dbIndex": false, - "case": "", - "truncateMultipleSpaces": false, - "encrypted": false, - "redrawOn": "", - "clearOnHide": true, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "allowCalculateOverride": false, - "validateOn": "change", - "validate": { - "required": true, - "pattern": "", - "customMessage": "", - "custom": "", - "customPrivate": false, - "json": "", - "minLength": "", - "maxLength": "", - "minWords": "", - "maxWords": "", - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "unique": false, - "errorLabel": "", - "errors": "", - "key": "surfaceWaterFeaturesFreshwater", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "textarea", - "rows": 3, - "wysiwyg": false, - "input": true, - "refreshOn": "", - "dataGridLabel": false, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputMask": "", - "fixedSize": true, - "id": "etp7mp", - "defaultValue": "" - }, - { - "label": "Surface water features - marine waters", - "labelPosition": "top", - "placeholder": "", - "description": "List name, direction and distance to nearest surface water bodies and the characteristics (e.g., relative size / flow) of the water body", - "tooltip": "", - "prefix": "", - "suffix": "", - "widget": { - "type": "input" - }, - "displayMask": "", - "editor": "", - "autoExpand": false, - "customClass": "", - "tabindex": "", - "autocomplete": "", - "hidden": false, - "hideLabel": false, - "showWordCount": false, - "showCharCount": false, - "autofocus": false, - "spellcheck": true, - "disabled": false, - "tableView": true, - "modalEdit": false, - "multiple": false, - "persistent": true, - "inputFormat": "html", - "protected": false, - "dbIndex": false, - "case": "", - "truncateMultipleSpaces": false, - "encrypted": false, - "redrawOn": "", - "clearOnHide": true, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "allowCalculateOverride": false, - "validateOn": "change", - "validate": { - "required": true, - "pattern": "", - "customMessage": "", - "custom": "", - "customPrivate": false, - "json": "", - "minLength": "", - "maxLength": "", - "minWords": "", - "maxWords": "", - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "unique": false, - "errorLabel": "", - "errors": "", - "key": "surfaceWaterFeaturesMarineWaters", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "textarea", - "rows": 3, - "wysiwyg": false, - "input": true, - "refreshOn": "", - "dataGridLabel": false, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputMask": "", - "fixedSize": true, - "id": "eng6xqr", - "defaultValue": "" - } - ], - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "hidden": false, - "clearOnHide": false, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "tree": false, - "lazyLoad": false, - "theme": "default", - "breadcrumb": "default", - "id": "ejah089" - }, - { - "title": "SECTION III - Land Use", - "collapsible": false, - "key": "sectionIiiLandUse", - "conditional": { - "show": true, - "when": "hasAnApprovalInPrincipalAiPBeenIssuedForThisSite", - "eq": "false" - }, - "type": "panel", - "label": "Panel", - "input": false, - "tableView": false, - "components": [ - { - "html": "

Please indicate land use for each applicable area

", - "label": "Content", - "refreshOnChange": false, - "key": "content14", - "type": "content", - "input": false, - "tableView": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "id": "enxqvoe" - }, - { - "label": "Onsite: Site", - "description": "Description of current land use(s)/activities:", - "autoExpand": false, - "tableView": true, - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "", - "minWords": "", - "maxWords": "" - }, - "key": "onsiteSite", - "type": "textarea", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "html", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "rows": 3, - "wysiwyg": false, - "editor": "", - "fixedSize": true, - "id": "e6rs9wg" - }, - { - "label": "Offsite: North", - "description": "Description of current land use(s)/activities:", - "autoExpand": false, - "tableView": true, - "key": "offsiteNorth", - "type": "textarea", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "", - "minWords": "", - "maxWords": "" - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "html", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "rows": 3, - "wysiwyg": false, - "editor": "", - "fixedSize": true, - "id": "e7l6j3" - }, - { - "label": "Offsite: East", - "description": "Description of current land use(s)/activities:", - "autoExpand": false, - "tableView": true, - "key": "offsiteEast", - "type": "textarea", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "", - "minWords": "", - "maxWords": "" - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "html", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "rows": 3, - "wysiwyg": false, - "editor": "", - "fixedSize": true, - "id": "es0gn0e" - }, - { - "label": "Offsite: South", - "description": "Description of current land use(s)/activities:", - "autoExpand": false, - "tableView": true, - "key": "offsiteSouth", - "type": "textarea", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "", - "minWords": "", - "maxWords": "" - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "html", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "rows": 3, - "wysiwyg": false, - "editor": "", - "fixedSize": true, - "id": "eizhyma" - }, - { - "label": "Offsite: West", - "description": "Description of current land use(s)/activities:", - "autoExpand": false, - "tableView": true, - "key": "offsiteWest", - "type": "textarea", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "", - "minWords": "", - "maxWords": "" - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "html", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "rows": 3, - "wysiwyg": false, - "editor": "", - "fixedSize": true, - "id": "eajh7y" - }, - { - "label": "Proposed land use of site", - "optionsLabelPosition": "right", - "inline": false, - "tableView": false, - "values": [ - { - "label": "Same as above", - "value": "sameAsAbove", - "shortcut": "" - }, - { - "label": "Other", - "value": "other", - "shortcut": "" - } - ], - "key": "proposedLandUseOfSite", - "type": "radio", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "onlyAvailableItems": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "inputType": "radio", - "fieldSet": false, - "id": "ef9c7xv" - }, - { - "label": "Describe:", - "autoExpand": false, - "tableView": true, - "key": "describe", - "conditional": { - "show": true, - "when": "proposedLandUseOfSite", - "eq": "other" - }, - "type": "textarea", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "", - "minWords": "", - "maxWords": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "html", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "rows": 3, - "wysiwyg": false, - "editor": "", - "fixedSize": true, - "id": "enenb" - } - ], - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "hidden": false, - "clearOnHide": false, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "tree": false, - "lazyLoad": false, - "theme": "default", - "breadcrumb": "default", - "id": "ehd14l6" - }, - { - "title": "SECTION IV - Applicable Numerical Standards and Criteria", - "theme": "default", - "tooltip": "", - "customClass": "", - "collapsible": false, - "hidden": false, - "hideLabel": false, - "disabled": false, - "modalEdit": false, - "key": "sectionIvApplicableNumericalStandardsAndCriteria", - "tags": [], - "properties": {}, - "customConditional": "", - "conditional": { - "json": "", - "show": true, - "when": "hasAnApprovalInPrincipalAiPBeenIssuedForThisSite", - "eq": "false" - }, - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "panel", - "label": "Panel", - "breadcrumb": "default", - "tabindex": "", - "input": false, - "tableView": false, - "components": [ - { - "html": "

Soil (CSR Schedule 3.1)

Property - Source Site

", - "label": "Content", - "refreshOnChange": false, - "key": "content15", - "type": "content", - "input": false, - "tableView": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "id": "epzrwqp" - }, - { - "label": "CSR Land Use - Current", - "optionsLabelPosition": "right", - "tableView": false, - "values": [ - { - "label": "Industrial Land Use (IL)", - "value": "industrialLandUseIl", - "shortcut": "" - }, - { - "label": "Commercial Land Use (CL)", - "value": "commercialLandUseCl", - "shortcut": "" - }, - { - "label": "Residential Land Use High Density (RLHD)", - "value": "residentialLandUseHighDensityRlhd", - "shortcut": "" - }, - { - "label": "Residential Land Use Low Density (RLLD)", - "value": "residentialLandUseLowDensityRlld", - "shortcut": "" - }, - { - "label": "Urban Park Land Use (PL)", - "value": "urbanParkLandUsePl", - "shortcut": "" - }, - { - "label": "Agricultural Land Use (AL)", - "value": "agriculturalLandUseAl", - "shortcut": "" - }, - { - "label": "Wildlands Natural Land Use (WLN)", - "value": "wildlandsNaturalLandUseWln", - "shortcut": "" - }, - { - "label": "Wildlands Reverted Land Use (WLR)", - "value": "wildlandsRevertedLandUseWlr", - "shortcut": "" - }, - { - "label": "Other", - "value": "other", - "shortcut": "" - } - ], - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "onlyAvailableItems": false - }, - "key": "csrLandUseCurrent", - "type": "selectboxes", - "input": true, - "inputType": "checkbox", - "defaultValue": { - "industrialLandUseIl": false, - "commercialLandUseCl": false, - "residentialLandUseHighDensityRlhd": false, - "residentialLandUseLowDensityRlld": false, - "urbanParkLandUsePl": false, - "agriculturalLandUseAl": false, - "wildlandsNaturalLandUseWln": false, - "wildlandsRevertedLandUseWlr": false, - "other": false - }, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "fieldSet": false, - "inline": false, - "id": "e24v93" - }, - { - "label": "If 'Other' is specified above, please explain: (e.g. applicable or excluded guidance, protocols or policies specific to the site)", - "autoExpand": false, - "tableView": true, - "key": "ifOtherIsSpecifiedAbovePleaseExplainEGApplicableOrExcludedGuidanceProtocolsOrPoliciesSpecificToTheSite", - "conditional": { - "show": true, - "when": "csrLandUseCurrent", - "eq": "other" - }, - "type": "textarea", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "", - "minWords": "", - "maxWords": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "html", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "rows": 3, - "wysiwyg": false, - "editor": "", - "fixedSize": true, - "id": "e4nly1" - }, - { - "label": "Notes: If 'Other' standards selected above, provide rationale for why a typical standard does not apply:", - "autoExpand": false, - "tableView": true, - "key": "notesIfOtherStandardsSelectedAboveProvideRationaleForWhyATypicalStandardDoesNotApply", - "conditional": { - "show": true, - "when": "csrLandUseCurrent", - "eq": "other" - }, - "type": "textarea", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "", - "minWords": "", - "maxWords": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "html", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "rows": 3, - "wysiwyg": false, - "editor": "", - "fixedSize": true, - "id": "ebde74r" - }, - { - "label": "Have Protocol 2 site-specific standards been applied?", - "optionsLabelPosition": "right", - "inline": false, - "tableView": false, - "values": [ - { - "label": "Yes", - "value": "yes", - "shortcut": "" - }, - { - "label": "No", - "value": "no", - "shortcut": "" - } - ], - "key": "haveProtocol2SiteSpecificStandardsBeenApplied", - "type": "radio", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "onlyAvailableItems": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "inputType": "radio", - "fieldSet": false, - "id": "exwmue8" - }, - { - "label": "Note: If P2 site-specific numerical standards selected above, identify the substance and provide rationale for application of the site-specific numerical standard.", - "autoExpand": false, - "tableView": true, - "key": "noteIfP2SiteSpecificNumericalStandardsSelectedAboveIdentifyTheSubstanceAndProvideRationaleForApplicationOfTheSiteSpecificNumericalStandard", - "type": "textarea", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "", - "minWords": "", - "maxWords": "" - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "html", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "rows": 3, - "wysiwyg": false, - "editor": "", - "fixedSize": true, - "id": "eu2f997" - }, - { - "label": "Have Protocol 4 site-specific standards been applied?", - "optionsLabelPosition": "right", - "inline": false, - "tableView": false, - "values": [ - { - "label": "Yes", - "value": "yes", - "shortcut": "" - }, - { - "label": "No", - "value": "no", - "shortcut": "" - } - ], - "key": "haveProtocol4SiteSpecificStandardsBeenApplied", - "type": "radio", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "onlyAvailableItems": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "inputType": "radio", - "fieldSet": false, - "id": "ea8eabc" - }, - { - "label": "Note: If P4 background selected above, provide rationale for why the background concentration applies.", - "autoExpand": false, - "tableView": true, - "key": "noteIfP4BackgroundSelectedAboveProvideRationaleForWhyTheBackgroundConcentrationApplies", - "type": "textarea", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "", - "minWords": "", - "maxWords": "" - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "html", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "rows": 3, - "wysiwyg": false, - "editor": "", - "fixedSize": true, - "id": "eztiog" - }, - { - "label": "Does more than one land use apply at this site?", - "optionsLabelPosition": "right", - "inline": false, - "tableView": false, - "values": [ - { - "label": "Yes", - "value": "yes", - "shortcut": "" - }, - { - "label": "No", - "value": "no", - "shortcut": "" - } - ], - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "onlyAvailableItems": false - }, - "key": "haveProtocol4SiteSpecificStandardsBeenApplied1", - "type": "radio", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "inputType": "radio", - "fieldSet": false, - "id": "elpsvca" - }, - { - "label": "If more than one land use applies to the site, specify additional land uses covered by the document, i.e., riparian areas, roadways, etc. include a diagram to clearly show the area(s) with different standards.", - "autoExpand": false, - "tableView": true, - "key": "ifMoreThanOneLandUseAppliesToTheSiteSpecifyAdditionalLandUsesCoveredByTheDocumentIERiparianAreasRoadwaysEtcIncludeADiagramToClearlyShowTheAreaSWithDifferentStandards", - "type": "textarea", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "", - "minWords": "", - "maxWords": "" - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "html", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "rows": 3, - "wysiwyg": false, - "editor": "", - "fixedSize": true, - "id": "ekvvcob" - }, - { - "label": "Attention: attach diagram if more than one land use applies", - "tableView": false, - "defaultValue": false, - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "key": "attentionAttachDiagramIfMoreThanOneLandUseApplies", - "type": "checkbox", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": true, - "labelPosition": "right", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "inputType": "checkbox", - "value": "", - "name": "", - "id": "ez43pr" - }, - { - "label": "CSR Land Use - Proposed", - "optionsLabelPosition": "right", - "tableView": false, - "defaultValue": { - "industrialLandUseIl": false, - "commercialLandUseCl": false, - "residentialLandUseHighDensityRlhd": false, - "residentialLandUseLowDensityRlld": false, - "urbanParkLandUsePl": false, - "agriculturalLandUseAl": false, - "wildlandsNaturalLandUseWln": false, - "wildlandsRevertedLandUseWlr": false, - "other": false - }, - "values": [ - { - "label": "Industrial Land Use (IL)", - "value": "industrialLandUseIl", - "shortcut": "" - }, - { - "label": "Commercial Land Use (CL)", - "value": "commercialLandUseCl", - "shortcut": "" - }, - { - "label": "Residential Land Use High Density (RLHD)", - "value": "residentialLandUseHighDensityRlhd", - "shortcut": "" - }, - { - "label": "Residential Land Use Low Density (RLLD)", - "value": "residentialLandUseLowDensityRlld", - "shortcut": "" - }, - { - "label": "Urban Park Land Use (PL)", - "value": "urbanParkLandUsePl", - "shortcut": "" - }, - { - "label": "Agricultural Land Use (AL)", - "value": "agriculturalLandUseAl", - "shortcut": "" - }, - { - "label": "Wildlands Natural Land Use (WLN)", - "value": "wildlandsNaturalLandUseWln", - "shortcut": "" - }, - { - "label": "Wildlands Reverted Land Use (WLR)", - "value": "wildlandsRevertedLandUseWlr", - "shortcut": "" - }, - { - "label": "Other", - "value": "other", - "shortcut": "" - } - ], - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "onlyAvailableItems": false - }, - "key": "csrLandUseProposed", - "type": "selectboxes", - "input": true, - "inputType": "checkbox", - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "fieldSet": false, - "inline": false, - "id": "ehtn49" - }, - { - "label": "If 'Other' is specified above, please explain: (e.g. applicable or excluded guidance, protocols or policies specific to the site)", - "autoExpand": false, - "tableView": true, - "key": "ifOtherIsSpecifiedAbovePleaseExplainEGApplicableOrExcludedGuidanceProtocolsOrPoliciesSpecificToTheSite1", - "conditional": { - "show": true, - "when": "csrLandUseProposed", - "eq": "other" - }, - "type": "textarea", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "", - "minWords": "", - "maxWords": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "html", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "rows": 3, - "wysiwyg": false, - "editor": "", - "fixedSize": true, - "id": "ewle16h" - }, - { - "label": "Notes: If 'Other' standards selected above, provide rationale for why a typical standard does not apply:", - "autoExpand": false, - "tableView": true, - "key": "notesIfOtherStandardsSelectedAboveProvideRationaleForWhyATypicalStandardDoesNotApply1", - "conditional": { - "show": true, - "when": "csrLandUseProposed", - "eq": "other" - }, - "type": "textarea", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "", - "minWords": "", - "maxWords": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "html", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "rows": 3, - "wysiwyg": false, - "editor": "", - "fixedSize": true, - "id": "emkd1y" - }, - { - "label": "Have Protocol 2 site-specific standards been applied?", - "optionsLabelPosition": "right", - "inline": false, - "tableView": false, - "values": [ - { - "label": "Yes", - "value": "yes", - "shortcut": "" - }, - { - "label": "No", - "value": "no", - "shortcut": "" - } - ], - "key": "haveProtocol2SiteSpecificStandardsBeenApplied1", - "type": "radio", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "onlyAvailableItems": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "inputType": "radio", - "fieldSet": false, - "id": "eq1wesd" - }, - { - "label": "Note: If P2 site-specific numerical standards selected above, identify the substance and provide rationale for application of the site-specific numerical standard.", - "autoExpand": false, - "tableView": true, - "key": "noteIfP2SiteSpecificNumericalStandardsSelectedAboveIdentifyTheSubstanceAndProvideRationaleForApplicationOfTheSiteSpecificNumericalStandard1", - "type": "textarea", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "", - "minWords": "", - "maxWords": "" - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "html", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "rows": 3, - "wysiwyg": false, - "editor": "", - "fixedSize": true, - "id": "eo1fmv" - }, - { - "label": "Have Protocol 4 site-specific standards been applied?", - "optionsLabelPosition": "right", - "inline": false, - "tableView": false, - "values": [ - { - "label": "Yes", - "value": "yes", - "shortcut": "" - }, - { - "label": "No", - "value": "no", - "shortcut": "" - } - ], - "key": "haveProtocol4SiteSpecificStandardsBeenApplied2", - "type": "radio", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "onlyAvailableItems": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "inputType": "radio", - "fieldSet": false, - "id": "em04tuv" - }, - { - "label": "Note: If P4 background selected above, provide rationale for why the background concentration applies.", - "autoExpand": false, - "tableView": true, - "key": "noteIfP4BackgroundSelectedAboveProvideRationaleForWhyTheBackgroundConcentrationApplies1", - "type": "textarea", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "", - "minWords": "", - "maxWords": "" - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "html", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "rows": 3, - "wysiwyg": false, - "editor": "", - "fixedSize": true, - "id": "e736awck" - }, - { - "label": "Does more than one land use apply at this site?", - "optionsLabelPosition": "right", - "inline": false, - "tableView": false, - "values": [ - { - "label": "Yes", - "value": "yes", - "shortcut": "" - }, - { - "label": "No", - "value": "no", - "shortcut": "" - } - ], - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "onlyAvailableItems": false - }, - "key": "multipleLandUse", - "type": "radio", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "inputType": "radio", - "fieldSet": false, - "id": "erk6myf" - }, - { - "label": "If more than one land use applies to the site, specify additional land uses covered by the document, i.e., riparian areas, roadways, etc. include a diagram to clearly show the area(s) with different standards.", - "autoExpand": false, - "tableView": true, - "key": "ifMoreThanOneLandUseAppliesToTheSiteSpecifyAdditionalLandUsesCoveredByTheDocumentIERiparianAreasRoadwaysEtcIncludeADiagramToClearlyShowTheAreaSWithDifferentStandards1", - "conditional": { - "show": true, - "when": "multipleLandUse", - "eq": "yes" - }, - "type": "textarea", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "", - "minWords": "", - "maxWords": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "html", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "rows": 3, - "wysiwyg": false, - "editor": "", - "fixedSize": true, - "id": "e339galn" - }, - { - "label": "Attention: attach diagram if more than one land use applies", - "tableView": false, - "defaultValue": false, - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "key": "attentionAttachDiagramIfMoreThanOneLandUseApplies1", - "conditional": { - "show": true, - "when": "multipleLandUse", - "eq": "yes" - }, - "type": "checkbox", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": true, - "labelPosition": "right", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "inputType": "checkbox", - "value": "", - "name": "", - "id": "enw2hzm" - }, - { - "html": "

Offsite Impacted Property(ies) / Management Area Land Use

", - "label": "Content", - "refreshOnChange": false, - "key": "content16", - "type": "content", - "input": false, - "tableView": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "id": "er8zxoq" - }, - { - "label": "CSR Land Use - Current", - "optionsLabelPosition": "right", - "tableView": false, - "defaultValue": { - "industrialLandUseIl": false, - "commercialLandUseCl": false, - "residentialLandUseHighDensityRlhd": false, - "residentialLandUseLowDensityRlld": false, - "urbanParkLandUsePl": false, - "agriculturalLandUseAl": false, - "wildlandsNaturalLandUseWln": false, - "wildlandsRevertedLandUseWlr": false, - "other": false - }, - "values": [ - { - "label": "Industrial Land Use (IL)", - "value": "industrialLandUseIl", - "shortcut": "" - }, - { - "label": "Commercial Land Use (CL)", - "value": "commercialLandUseCl", - "shortcut": "" - }, - { - "label": "Residential Land Use High Density (RLHD)", - "value": "residentialLandUseHighDensityRlhd", - "shortcut": "" - }, - { - "label": "Residential Land Use Low Density (RLLD)", - "value": "residentialLandUseLowDensityRlld", - "shortcut": "" - }, - { - "label": "Urban Park Land Use (PL)", - "value": "urbanParkLandUsePl", - "shortcut": "" - }, - { - "label": "Agricultural Land Use (AL)", - "value": "agriculturalLandUseAl", - "shortcut": "" - }, - { - "label": "Wildlands Natural Land Use (WLN)", - "value": "wildlandsNaturalLandUseWln", - "shortcut": "" - }, - { - "label": "Wildlands Reverted Land Use (WLR)", - "value": "wildlandsRevertedLandUseWlr", - "shortcut": "" - }, - { - "label": "Other", - "value": "other", - "shortcut": "" - } - ], - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "onlyAvailableItems": false - }, - "key": "csrLandUseCurrentImpacted", - "type": "selectboxes", - "input": true, - "inputType": "checkbox", - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "fieldSet": false, - "inline": false, - "id": "e4z13y" - }, - { - "label": "If 'other' is specified above, please explain: (e.g. applicable or excluded guidance, protocols or policies specific to the site)", - "autoExpand": false, - "tableView": true, - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "", - "minWords": "", - "maxWords": "" - }, - "key": "ifOtherIsSpecifiedAbovePleaseExplainEGApplicableOrExcludedGuidanceProtocolsOrPoliciesSpecificToTheSite2", - "conditional": { - "show": true, - "when": "csrLandUseCurrentImpacted", - "eq": "other" - }, - "type": "textarea", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "html", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "rows": 3, - "wysiwyg": false, - "editor": "", - "fixedSize": true, - "id": "esytwkl" - }, - { - "label": "Notes: provide rationale for why a typical standard does not apply", - "autoExpand": false, - "tableView": true, - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "", - "minWords": "", - "maxWords": "" - }, - "key": "ifOtherIsSpecifiedAbovePleaseExplainEGApplicableOrExcludedGuidanceProtocolsOrPoliciesSpecificToTheSite3", - "conditional": { - "show": true, - "when": "csrLandUseCurrentImpacted", - "eq": "other" - }, - "type": "textarea", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "html", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "rows": 3, - "wysiwyg": false, - "editor": "", - "fixedSize": true, - "id": "ey5bxu7" - }, - { - "label": "Have Protocol 2 site-specific standards been applied?", - "optionsLabelPosition": "right", - "inline": false, - "tableView": false, - "values": [ - { - "label": "Yes", - "value": "yes", - "shortcut": "" - }, - { - "label": "No", - "value": "no", - "shortcut": "" - } - ], - "key": "haveProtocol2SiteSpecificStandardsBeenApplied2", - "type": "radio", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "onlyAvailableItems": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "inputType": "radio", - "fieldSet": false, - "id": "eks5u89" - }, - { - "label": "Note: If P2 site-specific numerical standards selected above, identify the substance and provide rationale for application of the site-specific numerical standard.", - "autoExpand": false, - "tableView": true, - "key": "noteIfP2SiteSpecificNumericalStandardsSelectedAboveIdentifyTheSubstanceAndProvideRationaleForApplicationOfTheSiteSpecificNumericalStandard2", - "type": "textarea", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "", - "minWords": "", - "maxWords": "" - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "html", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "rows": 3, - "wysiwyg": false, - "editor": "", - "fixedSize": true, - "id": "eveexvi" - }, - { - "label": "Have Protocol 4 site-specific standards been applied?", - "optionsLabelPosition": "right", - "inline": false, - "tableView": false, - "values": [ - { - "label": "Yes", - "value": "yes", - "shortcut": "" - }, - { - "label": "No", - "value": "no", - "shortcut": "" - } - ], - "key": "haveProtocol4SiteSpecificStandardsBeenApplied4", - "type": "radio", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "onlyAvailableItems": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "inputType": "radio", - "fieldSet": false, - "id": "ecl4kdi" - }, - { - "label": "Note: If P4 background selected above, provide rationale for why the background concentration applies.", - "autoExpand": false, - "tableView": true, - "key": "noteIfP4BackgroundSelectedAboveProvideRationaleForWhyTheBackgroundConcentrationApplies2", - "type": "textarea", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "", - "minWords": "", - "maxWords": "" - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "html", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "rows": 3, - "wysiwyg": false, - "editor": "", - "fixedSize": true, - "id": "e1vwxs" - }, - { - "html": "

Groundwater (CSR Schedule 3.2)

", - "label": "Content", - "refreshOnChange": false, - "key": "content17", - "type": "content", - "input": false, - "tableView": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "id": "e47bqcv" - }, - { - "label": "Do groundwater standards apply at your site?", - "optionsLabelPosition": "right", - "inline": false, - "tableView": false, - "values": [ - { - "label": "Yes", - "value": "yes", - "shortcut": "" - }, - { - "label": "No", - "value": "no", - "shortcut": "" - } - ], - "key": "doGroundwaterStandardsApplyAtYourSite", - "type": "radio", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "onlyAvailableItems": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "inputType": "radio", - "fieldSet": false, - "id": "eh13wx" - }, - { - "html": "

Groundwater

", - "label": "Content", - "refreshOnChange": false, - "key": "content18", - "type": "content", - "input": false, - "tableView": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "id": "eqg5o7" - }, - { - "label": "Select all that apply ", - "optionsLabelPosition": "right", - "tableView": false, - "values": [ - { - "label": "Aquatic Life (AW) Fresh", - "value": "aquaticLifeAwFresh", - "shortcut": "" - }, - { - "label": "Aquatic Life (AW) Marine", - "value": "aquaticLifeAwMarine", - "shortcut": "" - }, - { - "label": "Irrigation (IW)", - "value": "irrigationIw", - "shortcut": "" - }, - { - "label": "Livestock (LW)", - "value": "livestockLw", - "shortcut": "" - }, - { - "label": "Drinking Water (DW)", - "value": "drinkingWaterDw", - "shortcut": "" - }, - { - "label": "No Water Use", - "value": "noWaterUse", - "shortcut": "" - } - ], - "key": "selectAllThatApply", - "type": "selectboxes", - "input": true, - "inputType": "checkbox", - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "onlyAvailableItems": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "fieldSet": false, - "inline": false, - "id": "en2a4pq" - }, - { - "label": "Has a Protocol 9 background concentration been applied? ", - "optionsLabelPosition": "right", - "inline": false, - "tableView": false, - "values": [ - { - "label": "Yes", - "value": "yes", - "shortcut": "" - }, - { - "label": "No", - "value": "no", - "shortcut": "" - } - ], - "key": "hasAProtocol9BackgroundConcentrationBeenApplied", - "type": "radio", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "onlyAvailableItems": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "inputType": "radio", - "fieldSet": false, - "id": "eimpdh" - }, - { - "label": "Notes: If Protocol 9 background concentration selected, provide rationale for why the background concentration applies.", - "autoExpand": false, - "tableView": true, - "key": "notesIfProtocol9BackgroundConcentrationSelectedProvideRationaleForWhyTheBackgroundConcentrationApplies", - "type": "textarea", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "", - "minWords": "", - "maxWords": "" - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "html", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "rows": 3, - "wysiwyg": false, - "editor": "", - "fixedSize": true, - "id": "e5tilj" - }, - { - "html": "

Surface water (BC Approved Water Quality Guidelines) 

", - "label": "Content", - "refreshOnChange": false, - "key": "content19", - "type": "content", - "input": false, - "tableView": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "id": "eja0cs8" - }, - { - "label": "Do surface water guidelines apply at your site? ", - "optionsLabelPosition": "right", - "inline": false, - "tableView": false, - "values": [ - { - "label": "Yes", - "value": "yes", - "shortcut": "" - }, - { - "label": "No", - "value": "no", - "shortcut": "" - } - ], - "key": "surfaceWaterGuidelinesApply", - "type": "radio", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "onlyAvailableItems": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "inputType": "radio", - "fieldSet": false, - "id": "e6ew7lk" - }, - { - "label": "Select all that apply", - "optionsLabelPosition": "right", - "tableView": false, - "values": [ - { - "label": "Ambient freshwater", - "value": "ambientFreshwater", - "shortcut": "" - }, - { - "label": "Ambient marine", - "value": "ambientMarine", - "shortcut": "" - }, - { - "label": "Not Applicable", - "value": "notApplicable", - "shortcut": "" - } - ], - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "onlyAvailableItems": false - }, - "key": "selectAllThatApply1", - "type": "selectboxes", - "input": true, - "inputType": "checkbox", - "defaultValue": { - "ambientFreshwater": false, - "ambientMarine": false, - "notApplicable": false - }, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "fieldSet": false, - "inline": false, - "id": "el4jtnu" - }, - { - "html": "

Vapour (CSR Schedule 3.3)

", - "label": "Content", - "refreshOnChange": false, - "key": "content20", - "type": "content", - "input": false, - "tableView": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "id": "ek320f" - }, - { - "label": "Do vapour standards apply at your site?", - "optionsLabelPosition": "right", - "inline": false, - "tableView": false, - "values": [ - { - "label": "Yes", - "value": "yes", - "shortcut": "" - }, - { - "label": "No", - "value": "no", - "shortcut": "" - } - ], - "key": "vapourStandardsApply", - "type": "radio", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "onlyAvailableItems": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "inputType": "radio", - "fieldSet": false, - "id": "ehz6d3p" - }, - { - "label": "Please indicate all that apply:", - "optionsLabelPosition": "right", - "tableView": false, - "values": [ - { - "label": "Agricultural, Urban park, Residential use (AL, PL, RL)", - "value": "agriculturalUrbanParkResidentialUseAlPlRl", - "shortcut": "" - }, - { - "label": "Commercial use (CL)", - "value": "commercialUseCl", - "shortcut": "" - }, - { - "label": "Industrial use (IL)", - "value": "industrialUseIl", - "shortcut": "" - }, - { - "label": "Parkade", - "value": "parkade", - "shortcut": "" - }, - { - "label": "Other", - "value": "other", - "shortcut": "" - } - ], - "key": "pleaseIndicateAllThatApply", - "type": "selectboxes", - "input": true, - "inputType": "checkbox", - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "onlyAvailableItems": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "fieldSet": false, - "inline": false, - "id": "e2uphxt" - }, - { - "label": "Notes: if other is specified above, include description of assumptions for both current and future development of the site that the selected vapour attenuation factors are based on.", - "autoExpand": false, - "tableView": true, - "key": "notesIfOtherIsSpecifiedAboveIncludeDescriptionOfAssumptionsForBothCurrentAndFutureDevelopmentOfTheSiteThatTheSelectedVapourAttenuationFactorsAreBasedOn", - "type": "textarea", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "", - "minWords": "", - "maxWords": "" - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "html", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "rows": 3, - "wysiwyg": false, - "editor": "", - "fixedSize": true, - "id": "eapxfka" - }, - { - "html": "

Sediment (CSR Schedule 3.4)

", - "label": "Content", - "refreshOnChange": false, - "key": "content21", - "type": "content", - "input": false, - "tableView": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "id": "emfcc6" - }, - { - "label": "Do sediment standards apply at your site?", - "optionsLabelPosition": "right", - "inline": false, - "tableView": false, - "values": [ - { - "label": "Yes", - "value": "yes", - "shortcut": "" - }, - { - "label": "No", - "value": "no", - "shortcut": "" - } - ], - "key": "sedimentStandardsApply", - "type": "radio", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "onlyAvailableItems": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "inputType": "radio", - "fieldSet": false, - "id": "ep179tu" - }, - { - "html": "

Sediment

", - "label": "Content", - "refreshOnChange": false, - "key": "content25", - "type": "content", - "input": false, - "tableView": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "id": "eefkhsr" - }, - { - "html": "

Type of aquatic life:

", - "label": "Content", - "refreshOnChange": false, - "key": "content22", - "type": "content", - "input": false, - "tableView": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "id": "e3thv5" - }, - { - "label": "Freshwater", - "optionsLabelPosition": "right", - "inline": false, - "tableView": false, - "values": [ - { - "label": "Yes", - "value": "yes", - "shortcut": "" - }, - { - "label": "No", - "value": "no", - "shortcut": "" - } - ], - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "onlyAvailableItems": false - }, - "key": "aquaticLifeFreshwater", - "type": "radio", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "inputType": "radio", - "fieldSet": false, - "id": "eiorz7g" - }, - { - "label": "Marine/Estuarine", - "optionsLabelPosition": "right", - "inline": false, - "tableView": false, - "values": [ - { - "label": "Yes", - "value": "yes", - "shortcut": "" - }, - { - "label": "No", - "value": "no", - "shortcut": "" - } - ], - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "onlyAvailableItems": false - }, - "key": "aquaticLifeMarineEstuarine", - "type": "radio", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "inputType": "radio", - "fieldSet": false, - "id": "ejh5scg" - }, - { - "html": "

Type of Habitat:

", - "label": "Content", - "refreshOnChange": false, - "key": "content23", - "type": "content", - "input": false, - "tableView": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "id": "ep3ei0k" - }, - { - "label": "Sensitive", - "optionsLabelPosition": "right", - "inline": false, - "tableView": false, - "values": [ - { - "label": "Yes", - "value": "yes", - "shortcut": "" - }, - { - "label": "No", - "value": "no", - "shortcut": "" - } - ], - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "onlyAvailableItems": false - }, - "key": "sensitive", - "type": "radio", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "inputType": "radio", - "fieldSet": false, - "id": "ey1i3fk" - }, - { - "label": "Typical", - "optionsLabelPosition": "right", - "inline": false, - "tableView": false, - "values": [ - { - "label": "Yes", - "value": "yes", - "shortcut": "" - }, - { - "label": "No", - "value": "no", - "shortcut": "" - } - ], - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "onlyAvailableItems": false - }, - "key": "typical", - "type": "radio", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "inputType": "radio", - "fieldSet": false, - "id": "ehliufd" - } - ], - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "clearOnHide": false, - "refreshOn": "", - "redrawOn": "", - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "tree": false, - "lazyLoad": false, - "id": "ezpn8f" - }, - { - "title": "SECTION V - Areas of Potential Environmental Concern (APEC) and Potential Contaminants of Concern (PCOC) Summary", - "theme": "default", - "tooltip": "", - "customClass": "", - "collapsible": false, - "hidden": false, - "hideLabel": false, - "disabled": false, - "modalEdit": false, - "key": "sectionVAreasOfPotentialEnvironmentalConcernApecAndPotentialContaminantsOfConcernPcocSummary", - "tags": [], - "properties": {}, - "customConditional": "", - "conditional": { - "json": "", - "show": true, - "when": "hasAnApprovalInPrincipalAiPBeenIssuedForThisSite", - "eq": "false" - }, - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "panel", - "label": "Panel", - "breadcrumb": "default", - "tabindex": "", - "input": false, - "tableView": false, - "components": [ - { - "html": "

Provide reference to a figure showing onsite and offsite APECs and PCOCs associated with each APEC 

", - "label": "Content", - "refreshOnChange": false, - "key": "content24", - "type": "content", - "input": false, - "tableView": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "id": "ep4sdn" - }, - { - "label": "add additional entries as necessary:", - "reorder": false, - "addAnotherPosition": "bottom", - "layoutFixed": false, - "enableRowGroups": false, - "initEmpty": false, - "tableView": false, - "defaultValue": [ - { - "report": "", - "figure": "", - "page": "" - } - ], - "key": "dataGrid3", - "type": "datagrid", - "input": true, - "components": [ - { - "title": "References", - "collapsible": false, - "key": "references", - "type": "panel", - "label": "", - "input": false, - "tableView": false, - "components": [ - { - "label": "Report #", - "tableView": true, - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "key": "report", - "type": "textfield", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "e42c3ej" - }, - { - "label": "Figure #", - "tableView": true, - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "key": "figure", - "type": "textfield", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "e1sgs7i" - }, - { - "label": "Page #", - "tableView": true, - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "key": "page", - "type": "textfield", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "es5kcwo" - } - ], - "id": "egwgsw0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "hidden": false, - "clearOnHide": false, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "tree": false, - "lazyLoad": false, - "theme": "default", - "breadcrumb": "default" - } - ], - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "tree": true, - "lazyLoad": false, - "disableAddingRemovingRows": false, - "id": "e7yn7b9" - }, - { - "html": "

Attention:

Include reports listed above outlining APECs and PCOCs

", - "label": "Content", - "refreshOnChange": false, - "key": "content26", - "type": "content", - "input": false, - "tableView": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "id": "ek43j2" - }, - { - "label": "I acknowledge that I will include reports as listed above ", - "tableView": false, - "key": "iAcknowledgeThatIWillIncludeReportsAsListedAbove", - "type": "checkbox", - "input": true, - "defaultValue": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": true, - "labelPosition": "right", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "inputType": "checkbox", - "value": "", - "name": "", - "id": "e7orccq" - }, - { - "html": "

APEC and PCOC Summary

 

APEC Description: Describe location in relation to process source, waste, fill, land use or activity, etc., giving rise to APEC and if APEC is primarily due to soil or water contamination.

PCOC : Indicate products, chemicals, waste type, etc. and / or analytical parameter.

APEC and PCOC summary: List individual substances or groups of substances and their Chemical Abstract Service Numbers as they appear in the applicable schedule of the CSR. Attach lists or tables as needed.

", - "label": "Content", - "refreshOnChange": false, - "key": "content27", - "type": "content", - "input": false, - "tableView": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "id": "el9sxmn" - }, - { - "label": "", - "reorder": false, - "addAnotherPosition": "bottom", - "layoutFixed": false, - "enableRowGroups": false, - "initEmpty": false, - "tableView": false, - "defaultValue": [ - { - "apec": "", - "apecDescription": "", - "pcocS": "", - "pleaseIndicateWhereAnalysesCompleted": { - "soil": false, - "sediment": false, - "groundwater": false, - "surfaceWater": false, - "vapour": false, - "otherPleaseExplainBelow": false, - "other": false - } - } - ], - "key": "dataGrid4", - "type": "datagrid", - "input": true, - "components": [ - { - "title": "Summary", - "collapsible": false, - "key": "summary", - "type": "panel", - "label": "Summaries", - "input": false, - "tableView": false, - "components": [ - { - "label": "APEC #", - "tableView": true, - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "key": "apec", - "type": "textfield", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "ey16rue" - }, - { - "label": "APEC Description", - "autoExpand": false, - "tableView": true, - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "", - "minWords": "", - "maxWords": "" - }, - "key": "apecDescription", - "type": "textarea", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "html", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "rows": 3, - "wysiwyg": false, - "editor": "", - "fixedSize": true, - "id": "euv345s" - }, - { - "label": "PCOC(s)", - "tableView": true, - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "key": "pcocS", - "type": "textfield", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "e7sbcyi" - }, - { - "label": "Please indicate where analyses completed:", - "optionsLabelPosition": "right", - "tableView": false, - "values": [ - { - "label": "Soil", - "value": "soil", - "shortcut": "" - }, - { - "label": "Sediment", - "value": "sediment", - "shortcut": "" - }, - { - "label": "Groundwater", - "value": "groundwater", - "shortcut": "" - }, - { - "label": "Surface Water", - "value": "surfaceWater", - "shortcut": "" - }, - { - "label": "Vapour", - "value": "vapour", - "shortcut": "" - }, - { - "label": "Other (Please explain below)", - "value": "other", - "shortcut": "" - } - ], - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "onlyAvailableItems": false - }, - "key": "pleaseIndicateWhereAnalysesCompleted", - "type": "selectboxes", - "input": true, - "inputType": "checkbox", - "defaultValue": { - "soil": false, - "sediment": false, - "groundwater": false, - "surfaceWater": false, - "vapour": false, - "otherPleaseExplainBelow": false, - "other": false - }, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "fieldSet": false, - "inline": false, - "id": "eg618ak" - }, - { - "label": "'Other' explanation", - "autoExpand": false, - "tableView": true, - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "", - "minWords": "", - "maxWords": "" - }, - "key": "otherExplanation", - "conditional": { - "show": true, - "when": "pleaseIndicateWhereAnalysesCompleted", - "eq": "other" - }, - "type": "textarea", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "html", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "rows": 3, - "wysiwyg": false, - "editor": "", - "fixedSize": true, - "id": "erxxdli" - } - ], - "id": "e09khr20000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "hidden": false, - "clearOnHide": false, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "tree": false, - "lazyLoad": false, - "theme": "default", - "breadcrumb": "default" - } - ], - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "tree": true, - "lazyLoad": false, - "disableAddingRemovingRows": false, - "id": "ei568rj" - } - ], - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "clearOnHide": false, - "refreshOn": "", - "redrawOn": "", - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "tree": false, - "lazyLoad": false, - "id": "e7q3hil" - }, - { - "title": "SECTION VI - Areas of Environmental Concern (AEC) and Contaminants of Concern (COC) Summary", - "theme": "default", - "tooltip": "", - "customClass": "", - "collapsible": false, - "hidden": false, - "hideLabel": false, - "disabled": false, - "modalEdit": false, - "key": "sectionViAreasOfEnvironmentalConcernAecAndContaminantsOfConcernCocSummary", - "tags": [], - "properties": {}, - "customConditional": "", - "conditional": { - "json": "", - "show": true, - "when": "hasAnApprovalInPrincipalAiPBeenIssuedForThisSite", - "eq": "false" - }, - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "panel", - "label": "Panel", - "breadcrumb": "default", - "tabindex": "", - "input": false, - "tableView": false, - "components": [ - { - "html": "

Stage 2 Preliminary Site Investigation (PSI) 

Provide reference to figure(s) showing the AEC and COC associated with each AEC in onsite and offsite soil, water, sediment and/or vapour. Sample locations and corresponding analytical results shall be shown on each figure and in tabular form with reference to applicable standards:

", - "label": "Content", - "refreshOnChange": false, - "key": "content28", - "type": "content", - "input": false, - "tableView": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "id": "e348r8u" - }, - { - "label": "", - "reorder": false, - "addAnotherPosition": "bottom", - "layoutFixed": false, - "enableRowGroups": false, - "initEmpty": false, - "hideLabel": true, - "tableView": false, - "defaultValue": [ - { - "environmentalMedium": "", - "report": "", - "page": "", - "figure": "" - } - ], - "key": "dataGrid5", - "type": "datagrid", - "input": true, - "components": [ - { - "title": "Summary", - "collapsible": false, - "key": "summary", - "type": "panel", - "label": "AEC and COC Summary", - "input": false, - "tableView": false, - "components": [ - { - "label": "Environmental Medium", - "tableView": true, - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "key": "environmentalMedium", - "type": "textfield", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "emrnwt" - }, - { - "label": "Report #", - "tableView": true, - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "key": "report", - "type": "textfield", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "ezjgbqk" - }, - { - "label": "Page #", - "tableView": true, - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "key": "page", - "type": "textfield", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "e93qh3o" - }, - { - "label": "Figure #", - "tableView": true, - "key": "figure", - "type": "textfield", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "eu9o53q" - } - ], - "id": "eipn9d000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "hidden": false, - "clearOnHide": false, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "tree": false, - "lazyLoad": false, - "theme": "default", - "breadcrumb": "default" - } - ], - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "tree": true, - "lazyLoad": false, - "disableAddingRemovingRows": false, - "id": "enyqev" - }, - { - "html": "

Detailed Site Investigation (DSI) 

Provide references to figures (plan and section), with contours, showing the specific lateral and vertical distribution of each contaminant of concern in onsite and offsite soil, sediment, water and vapour. Sections shall be longitudinal and transverse with respect to groundwater flow and include physical conditions (e.g. stratigraphy, water table etc.). Sample locations with corresponding analytical results used to develop each figure shall be shown on the figure and in tabular form with reference to applicable standards:

", - "label": "Content", - "refreshOnChange": false, - "key": "content29", - "type": "content", - "input": false, - "tableView": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "id": "egzo5zb" - }, - { - "label": "", - "reorder": false, - "addAnotherPosition": "bottom", - "layoutFixed": false, - "enableRowGroups": false, - "initEmpty": false, - "hideLabel": true, - "tableView": false, - "defaultValue": [ - { - "environmentalMedium": "", - "report": "", - "page": "", - "figure": "" - } - ], - "key": "dataGrid6", - "type": "datagrid", - "input": true, - "components": [ - { - "title": "", - "collapsible": false, - "key": "summary", - "type": "panel", - "label": "AEC and COC Summary", - "input": false, - "tableView": false, - "components": [ - { - "label": "Environmental Medium", - "tableView": true, - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "key": "environmentalMedium", - "type": "textfield", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "edmm3sb" - }, - { - "label": "Report #", - "tableView": true, - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "key": "report", - "type": "textfield", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "e3mvybo" - }, - { - "label": "Page #", - "tableView": true, - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "key": "page", - "type": "textfield", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "eknllaa" - }, - { - "label": "Figure #", - "tableView": true, - "key": "figure", - "type": "textfield", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "ef617zf" - } - ], - "id": "ebh60il000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "hidden": false, - "clearOnHide": false, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "tree": false, - "lazyLoad": false, - "theme": "default", - "breadcrumb": "default" - } - ], - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "tree": true, - "lazyLoad": false, - "disableAddingRemovingRows": false, - "id": "e5mao0a" - }, - { - "html": "

AEC/APEC and COC Extent of Contamination

", - "label": "Content", - "refreshOnChange": false, - "key": "content30", - "type": "content", - "input": false, - "tableView": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "id": "e0havy" - }, - { - "label": "", - "reorder": false, - "addAnotherPosition": "bottom", - "layoutFixed": false, - "enableRowGroups": false, - "initEmpty": false, - "hideLabel": true, - "tableView": false, - "defaultValue": [ - { - "aecApecUseSameSAsForApeCsInTableAbove": "", - "coc": "", - "mediumEGSoilGroundwaterSedimentVapourSurfaceWaterOther": "", - "maxMeasuredConcentrationIndicateUnits": "", - "areaM": "", - "depthRangeM": "", - "notes1": "" - } - ], - "key": "dataGrid7", - "type": "datagrid", - "input": true, - "components": [ - { - "title": "", - "collapsible": false, - "key": "panel8", - "type": "panel", - "label": "", - "input": false, - "tableView": false, - "components": [ - { - "label": "AEC/APEC: Use same #s as for APECs in table above", - "tableView": true, - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "key": "aecApecUseSameSAsForApeCsInTableAbove", - "type": "textfield", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "e99tie4" - }, - { - "label": "COC", - "tableView": true, - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "key": "coc", - "type": "textfield", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "eo9g8ms" - }, - { - "label": "Medium", - "placeholder": "e.g. soil, groundwater, sediment, vapour, surface water, other", - "tableView": true, - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "key": "mediumEGSoilGroundwaterSedimentVapourSurfaceWaterOther", - "type": "textfield", - "input": true, - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "erqoauyy" - }, - { - "label": "Max Measured Concentration (indicate units)", - "tableView": true, - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "key": "maxMeasuredConcentrationIndicateUnits", - "type": "textfield", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "eqfcnt7" - }, - { - "label": "Area (m²)", - "tableView": true, - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "key": "areaM", - "type": "textfield", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "ecx8h8h" - }, - { - "label": "Depth Range (m)", - "tableView": true, - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "key": "depthRangeM", - "type": "textfield", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "evgae2q" - }, - { - "label": "Notes", - "placeholder": "e.g. site type, classification, relevant approvals, etc.", - "autoExpand": false, - "tableView": true, - "key": "notes2", - "type": "textarea", - "input": true, - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "", - "minWords": "", - "maxWords": "" - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "html", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "rows": 3, - "wysiwyg": false, - "editor": "", - "fixedSize": true, - "id": "eak2oy8" - } - ], - "id": "evgsijp000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "hidden": false, - "clearOnHide": false, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "tree": false, - "lazyLoad": false, - "theme": "default", - "breadcrumb": "default" - } - ], - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "tree": true, - "lazyLoad": false, - "disableAddingRemovingRows": false, - "id": "e3pfzbj" - } - ], - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "clearOnHide": false, - "refreshOn": "", - "redrawOn": "", - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "tree": false, - "lazyLoad": false, - "id": "e1tcxwk" - }, - { - "title": "SECTION VII - Offsite Migration", - "collapsible": false, - "key": "sectionViiOffsiteMigration", - "conditional": { - "show": true, - "when": "hasAnApprovalInPrincipalAiPBeenIssuedForThisSite", - "eq": "no" - }, - "type": "panel", - "label": "Panel", - "input": false, - "tableView": false, - "components": [ - { - "label": "Is there evidence that one or more substances has migrated or is likely to have migrated to a neighbouring site and is or is likely causing contamination of the neighbouring property?", - "optionsLabelPosition": "right", - "inline": false, - "tableView": false, - "values": [ - { - "label": "Yes", - "value": "yes", - "shortcut": "" - }, - { - "label": "No", - "value": "no", - "shortcut": "" - } - ], - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "onlyAvailableItems": false - }, - "key": "isThereEvidenceThatOneOrMoreSubstancesHasMigratedOrIsLikelyToHaveMigratedToANeighbouringSiteAndIsOrIsLikelyCausingContaminationOfTheNeighbouringProperty", - "type": "radio", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "inputType": "radio", - "fieldSet": false, - "id": "eyt9j6k" - }, - { - "label": "Has any sampling occurred offsite for PCOCs in any media?", - "optionsLabelPosition": "right", - "inline": false, - "tableView": false, - "values": [ - { - "label": "Yes", - "value": "yes", - "shortcut": "" - }, - { - "label": "No", - "value": "no", - "shortcut": "" - } - ], - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "onlyAvailableItems": false - }, - "key": "hasAnySamplingOccurredOffsiteForPcoCsInAnyMedia", - "type": "radio", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "inputType": "radio", - "fieldSet": false, - "id": "e5kz2pn" - }, - { - "label": "Have preferential pathways been assessed? (including assessment of all neighbouring underground utility rights-of-way)", - "optionsLabelPosition": "right", - "inline": false, - "tableView": false, - "values": [ - { - "label": "Yes", - "value": "yes", - "shortcut": "" - }, - { - "label": "No", - "value": "no", - "shortcut": "" - } - ], - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "onlyAvailableItems": false - }, - "key": "havePreferentialPathwaysBeenAssessedIncludingAssessmentOfAllNeighbouringUndergroundUtilityRightsOfWay", - "type": "radio", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "inputType": "radio", - "fieldSet": false, - "id": "e6fg35s" - }, - { - "title": "", - "collapsible": false, - "hideLabel": true, - "key": "panel3", - "conditional": { - "show": true, - "when": "isThereEvidenceThatOneOrMoreSubstancesHasMigratedOrIsLikelyToHaveMigratedToANeighbouringSiteAndIsOrIsLikelyCausingContaminationOfTheNeighbouringProperty", - "eq": "yes" - }, - "type": "panel", - "label": "Panel", - "input": false, - "tableView": false, - "components": [ - { - "label": "Current offsite transport of contaminants from the site", - "tableView": false, - "key": "currentOffsiteTransportOfContaminantsFromTheSite", - "type": "checkbox", - "input": true, - "defaultValue": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": true, - "labelPosition": "right", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "inputType": "checkbox", - "value": "", - "name": "", - "id": "e75y38c" - }, - { - "label": "Historical offsite transport of contaminants from the site", - "tableView": false, - "defaultValue": false, - "key": "currentOffsiteTransportOfContaminantsFromTheSite1", - "type": "checkbox", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": true, - "labelPosition": "right", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "inputType": "checkbox", - "value": "", - "name": "", - "id": "e2bknmb" - }, - { - "label": "Historical or Current offsite transport of contaminants from the site in:", - "optionsLabelPosition": "right", - "tableView": false, - "defaultValue": { - "groundwater": false, - "surfaceWater": false, - "vapour": false, - "otherExplainBelow": false - }, - "values": [ - { - "label": "Groundwater", - "value": "groundwater", - "shortcut": "" - }, - { - "label": "Surface Water", - "value": "surfaceWater", - "shortcut": "" - }, - { - "label": "Vapour", - "value": "vapour", - "shortcut": "" - }, - { - "label": "Other (explain below)", - "value": "otherExplainBelow", - "shortcut": "" - } - ], - "key": "in", - "type": "selectboxes", - "input": true, - "inputType": "checkbox", - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "onlyAvailableItems": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "fieldSet": false, - "inline": false, - "id": "eon7ijc" - }, - { - "label": "If other, describe environmental media:", - "autoExpand": false, - "tableView": true, - "key": "ifOtherDescribeEnvironmentalMedia", - "type": "textarea", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "", - "minWords": "", - "maxWords": "" - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "html", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "rows": 3, - "wysiwyg": false, - "editor": "", - "fixedSize": true, - "id": "e6tjnc8" - }, - { - "label": "Briefly describe the nature of and evidence for offsite migration (either known, suspected, or potential)", - "autoExpand": false, - "tableView": true, - "key": "brieflyDescribeTheNatureOfAndEvidenceForOffsiteMigrationEitherKnownSuspectedOrPotential", - "type": "textarea", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "", - "minWords": "", - "maxWords": "" - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "html", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "rows": 3, - "wysiwyg": false, - "editor": "", - "fixedSize": true, - "id": "er9735" - }, - { - "label": "The impacted offsite lands are categorized as:", - "optionsLabelPosition": "right", - "tableView": false, - "values": [ - { - "label": "Having a potable groundwater source", - "value": "havingAPotableGroundwaterSource", - "shortcut": "" - }, - { - "label": "Being aquatic habitat, as formally defined", - "value": "beingAquaticHabitatAsFormallyDefined", - "shortcut": "" - }, - { - "label": "Agricultural lands", - "value": "agriculturalLands", - "shortcut": "" - }, - { - "label": "Residential or Urban parklands", - "value": "residentialOrUrbanParklands", - "shortcut": "" - }, - { - "label": "Commercial land", - "value": "commercialLand", - "shortcut": "" - }, - { - "label": "Industrial land", - "value": "industrialLand", - "shortcut": "" - }, - { - "label": "Wildlands", - "value": "wildlands", - "shortcut": "" - } - ], - "key": "theImpactedOffsiteLandsAreCategorizedAs", - "type": "selectboxes", - "input": true, - "inputType": "checkbox", - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "onlyAvailableItems": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "fieldSet": false, - "inline": false, - "id": "e1stkrj" - } - ], - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "hidden": false, - "clearOnHide": false, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "tree": false, - "lazyLoad": false, - "theme": "default", - "breadcrumb": "default", - "id": "en99wz" - } - ], - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "hidden": false, - "clearOnHide": false, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "tree": false, - "lazyLoad": false, - "theme": "default", - "breadcrumb": "default", - "id": "edqxa27" - }, - { - "title": "SECTION VIII - Investigation or Interpretation Issues to be Adressed", - "theme": "default", - "tooltip": "", - "customClass": "", - "collapsible": false, - "hidden": false, - "hideLabel": false, - "disabled": false, - "modalEdit": false, - "key": "sectionViiiInvestigationOrInterpretationIssuesToBeAdressed", - "tags": [], - "properties": {}, - "customConditional": "", - "conditional": { - "json": "", - "show": true, - "when": "hasAnApprovalInPrincipalAiPBeenIssuedForThisSite", - "eq": "false" - }, - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "panel", - "label": "Panel", - "breadcrumb": "default", - "tabindex": "", - "input": false, - "tableView": false, - "components": [ - { - "label": "Identify any issues regarding investigations or interpretations if the PSI and DSI information may not satisfy the requirements of CSR Sections 58 and 59 and applicable protocols and guidance documents. Briefly describe how these deficiencies will be addressed. Enter n/a if not applicable.", - "autoExpand": false, - "tableView": true, - "key": "identifyAnyIssuesRegardingInvestigationsOrInterpretationsIfThePsiAndDsiInformationMayNotSatisfyTheRequirementsOfCsrSections58And59AndApplicableProtocolsAndGuidanceDocumentsBrieflyDescribeHowTheseDeficienciesWillBeAddressedEnterNAIfNotApplicable", - "type": "textarea", - "rows": 5, - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "", - "minWords": "", - "maxWords": "" - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "html", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "wysiwyg": false, - "editor": "", - "fixedSize": true, - "id": "ekbzgj" - } - ], - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "clearOnHide": false, - "refreshOn": "", - "redrawOn": "", - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "tree": false, - "lazyLoad": false, - "id": "edczfu" - }, - { - "html": "

Part 5 - Remediation Summary

", - "label": "Content", - "customClass": "", - "refreshOnChange": false, - "hidden": false, - "modalEdit": false, - "key": "content33", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "content", - "input": false, - "tableView": false, - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "id": "etcmt0o" - }, - { - "title": "SECTION I - Remediation Reporting Summary", - "theme": "default", - "tooltip": "", - "customClass": "", - "collapsible": false, - "hidden": false, - "hideLabel": false, - "disabled": false, - "modalEdit": false, - "key": "sectionIRemediationReportingSummary", - "tags": [], - "properties": {}, - "customConditional": "", - "conditional": { - "json": "", - "show": null, - "when": null, - "eq": "" - }, - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "panel", - "label": "Panel", - "breadcrumb": "default", - "tabindex": "", - "input": false, - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "clearOnHide": false, - "refreshOn": "", - "redrawOn": "", - "tableView": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "tree": false, - "lazyLoad": false, - "components": [ - { - "title": "Risk Assessment", - "theme": "default", - "tooltip": "", - "customClass": "", - "collapsible": false, - "hidden": false, - "hideLabel": false, - "disabled": false, - "modalEdit": false, - "key": "riskAssessment", - "tags": [], - "properties": {}, - "customConditional": "", - "conditional": { - "json": "", - "show": null, - "when": null, - "eq": "" - }, - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "panel", - "label": "Panel", - "breadcrumb": "default", - "tabindex": "", - "input": false, - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "clearOnHide": false, - "refreshOn": "", - "redrawOn": "", - "tableView": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "tree": false, - "lazyLoad": false, - "components": [ - { - "label": "Completed?", - "optionsLabelPosition": "right", - "tableView": false, - "values": [ - { - "label": "Yes", - "value": "yes", - "shortcut": "" - }, - { - "label": "No", - "value": "no", - "shortcut": "" - } - ], - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "onlyAvailableItems": false - }, - "key": "completed4", - "type": "radio", - "input": true, - "inputType": "radio", - "defaultValue": { - "yes": false, - "no": false - }, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "fieldSet": false, - "id": "e4gsdhh" - }, - { - "label": "Includes quantitative human health and ecological risk assessment report information or screening level risk assessment per EMA, CSR and current applicable ministry protocols, guidelines, checklists? ", - "optionsLabelPosition": "right", - "tableView": false, - "values": [ - { - "label": "Yes", - "value": "yes", - "shortcut": "" - }, - { - "label": "No", - "value": "no", - "shortcut": "" - }, - { - "label": "N/A", - "value": "nA", - "shortcut": "" - } - ], - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "onlyAvailableItems": false - }, - "key": "includesQuantitativeHumanHealthAndEcologicalRiskAssessmentReportInformationOrScreeningLevelRiskAssessmentPerEmaCsrAndCurrentApplicableMinistryProtocolsGuidelinesChecklists", - "type": "radio", - "input": true, - "inputType": "radio", - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "fieldSet": false, - "id": "ezw7671c" - } - ], - "id": "ejp45z9" - }, - { - "title": "Remediation Plan", - "theme": "default", - "tooltip": "", - "customClass": "", - "collapsible": false, - "hidden": false, - "hideLabel": false, - "disabled": false, - "modalEdit": false, - "key": "riskAssessment1", - "tags": [], - "properties": {}, - "customConditional": "", - "conditional": { - "json": "", - "show": null, - "when": null, - "eq": "" - }, - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "panel", - "label": "Panel", - "breadcrumb": "default", - "tabindex": "", - "input": false, - "tableView": false, - "components": [ - { - "label": "Completed?", - "optionsLabelPosition": "right", - "tableView": false, - "values": [ - { - "label": "Yes", - "value": "yes", - "shortcut": "" - }, - { - "label": "No", - "value": "no", - "shortcut": "" - } - ], - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "onlyAvailableItems": false - }, - "key": "completed5", - "type": "radio", - "input": true, - "inputType": "radio", - "defaultValue": { - "yes": false, - "no": false - }, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "fieldSet": false, - "id": "el5sg7" - }, - { - "label": "Includes CSR specified information for a Remediation Plan (see CSR S.1, 16, 47) and current applicable ministry protocols, guidelines, checklists, etc.?", - "optionsLabelPosition": "right", - "tableView": false, - "values": [ - { - "label": "Yes", - "value": "yes", - "shortcut": "" - }, - { - "label": "No", - "value": "no", - "shortcut": "" - }, - { - "label": "N/A", - "value": "nA", - "shortcut": "" - } - ], - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "onlyAvailableItems": false - }, - "key": "includesQuantitativeHumanHealthAndEcologicalRiskAssessmentReportInformationOrScreeningLevelRiskAssessmentPerEmaCsrAndCurrentApplicableMinistryProtocolsGuidelinesChecklists1", - "type": "radio", - "input": true, - "inputType": "radio", - "defaultValue": { - "yes": false, - "no": false, - "nA": false - }, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "fieldSet": false, - "id": "e8p4jr" - } - ], - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "clearOnHide": false, - "refreshOn": "", - "redrawOn": "", - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "tree": false, - "lazyLoad": false, - "id": "evp1obv" - }, - { - "title": "Confirmation of Remediation", - "theme": "default", - "tooltip": "", - "customClass": "", - "collapsible": false, - "hidden": false, - "hideLabel": false, - "disabled": false, - "modalEdit": false, - "key": "riskAssessment2", - "tags": [], - "properties": {}, - "customConditional": "", - "conditional": { - "json": "", - "show": null, - "when": null, - "eq": "" - }, - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "panel", - "label": "Panel", - "breadcrumb": "default", - "tabindex": "", - "input": false, - "tableView": false, - "components": [ - { - "label": "Completed?", - "optionsLabelPosition": "right", - "tableView": false, - "values": [ - { - "label": "Yes", - "value": "yes", - "shortcut": "" - }, - { - "label": "No", - "value": "no", - "shortcut": "" - } - ], - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "onlyAvailableItems": false - }, - "key": "completed6", - "type": "radio", - "input": true, - "inputType": "radio", - "defaultValue": { - "yes": false, - "no": false - }, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "fieldSet": false, - "id": "ejkw9fd" - }, - { - "label": "Includes CSR specified information (see CSR S.49) and any current applicable ministry protocols, guidelines, checklists for COR reports? ", - "optionsLabelPosition": "right", - "tableView": false, - "defaultValue": { - "yes": false, - "no": false, - "nA": false - }, - "values": [ - { - "label": "Yes", - "value": "yes", - "shortcut": "" - }, - { - "label": "No", - "value": "no", - "shortcut": "" - }, - { - "label": "N/A", - "value": "nA", - "shortcut": "" - } - ], - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "onlyAvailableItems": false - }, - "key": "includesQuantitativeHumanHealthAndEcologicalRiskAssessmentReportInformationOrScreeningLevelRiskAssessmentPerEmaCsrAndCurrentApplicableMinistryProtocolsGuidelinesChecklists2", - "type": "radio", - "input": true, - "inputType": "radio", - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "fieldSet": false, - "id": "ezc4bx5" - } - ], - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "clearOnHide": false, - "refreshOn": "", - "redrawOn": "", - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "tree": false, - "lazyLoad": false, - "id": "eg2f3g" - }, - { - "title": "Other Reports", - "theme": "default", - "tooltip": "", - "customClass": "", - "collapsible": false, - "hidden": false, - "hideLabel": false, - "disabled": false, - "modalEdit": false, - "key": "riskAssessment3", - "tags": [], - "properties": {}, - "customConditional": "", - "conditional": { - "json": "", - "show": null, - "when": null, - "eq": "" - }, - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "panel", - "label": "Panel", - "breadcrumb": "default", - "tabindex": "", - "input": false, - "tableView": false, - "components": [ - { - "label": "Completed?", - "optionsLabelPosition": "right", - "tableView": false, - "values": [ - { - "label": "Yes", - "value": "yes", - "shortcut": "" - }, - { - "label": "No", - "value": "no", - "shortcut": "" - } - ], - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "onlyAvailableItems": false - }, - "key": "completed7", - "type": "radio", - "input": true, - "inputType": "radio", - "defaultValue": { - "yes": false, - "no": false - }, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "fieldSet": false, - "id": "ew6b1fi" - }, - { - "label": "According to other guidelines? (Provide explanation in notes below. Indicate how reports assist understanding of conditions and/or remediation.) ", - "labelPosition": "top", - "optionsLabelPosition": "right", - "description": "", - "tooltip": "", - "customClass": "", - "tabindex": "", - "inline": false, - "hidden": false, - "hideLabel": false, - "autofocus": false, - "disabled": false, - "tableView": false, - "modalEdit": false, - "defaultValue": { - "yes": false, - "no": false, - "nA": false - }, - "values": [ - { - "label": "Yes", - "value": "yes", - "shortcut": "" - }, - { - "label": "No", - "value": "no", - "shortcut": "" - }, - { - "label": "N/A", - "value": "nA", - "shortcut": "" - } - ], - "dataType": "", - "persistent": true, - "protected": false, - "dbIndex": false, - "encrypted": false, - "redrawOn": "", - "clearOnHide": true, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "allowCalculateOverride": false, - "validate": { - "required": true, - "onlyAvailableItems": false, - "customMessage": "", - "custom": "", - "customPrivate": false, - "json": "", - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "errorLabel": "", - "errors": "", - "key": "includesQuantitativeHumanHealthAndEcologicalRiskAssessmentReportInformationOrScreeningLevelRiskAssessmentPerEmaCsrAndCurrentApplicableMinistryProtocolsGuidelinesChecklists3", - "tags": [], - "properties": {}, - "conditional": { - "show": true, - "when": "completed7", - "eq": "yes", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "radio", - "input": true, - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "unique": false, - "refreshOn": "", - "dataGridLabel": false, - "widget": null, - "validateOn": "change", - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "inputType": "radio", - "fieldSet": false, - "id": "e9z694e" - }, - { - "label": "Notes", - "labelPosition": "top", - "placeholder": "", - "description": "", - "tooltip": "", - "prefix": "", - "suffix": "", - "widget": { - "type": "input" - }, - "displayMask": "", - "editor": "", - "autoExpand": false, - "customClass": "", - "tabindex": "", - "autocomplete": "", - "hidden": false, - "hideLabel": false, - "showWordCount": false, - "showCharCount": false, - "autofocus": false, - "spellcheck": true, - "disabled": false, - "tableView": true, - "modalEdit": false, - "multiple": false, - "persistent": true, - "inputFormat": "html", - "protected": false, - "dbIndex": false, - "case": "", - "truncateMultipleSpaces": false, - "encrypted": false, - "redrawOn": "", - "clearOnHide": true, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "allowCalculateOverride": false, - "validateOn": "change", - "validate": { - "required": true, - "pattern": "", - "customMessage": "", - "custom": "", - "customPrivate": false, - "json": "", - "minLength": "", - "maxLength": "", - "minWords": "", - "maxWords": "", - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "unique": false, - "errorLabel": "", - "errors": "", - "key": "notes1", - "tags": [], - "properties": {}, - "conditional": { - "show": true, - "when": "completed7", - "eq": "yes", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "textarea", - "rows": 3, - "wysiwyg": false, - "input": true, - "refreshOn": "", - "dataGridLabel": false, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputMask": "", - "fixedSize": true, - "id": "eirkrzs", - "defaultValue": "" - } - ], - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "clearOnHide": false, - "refreshOn": "", - "redrawOn": "", - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "tree": false, - "lazyLoad": false, - "id": "en3xr0m" - }, - { - "html": "

If completed remediation reports are not adequate or if reports have a different scope than those listed above in accordance with the CSR complete Section 5.6 - Outstanding Remediation Issues.

", - "label": "Content", - "customClass": "", - "refreshOnChange": false, - "hidden": false, - "modalEdit": false, - "key": "content67", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "content", - "input": false, - "tableView": false, - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "id": "e4jq65" - } - ], - "id": "e8ipwk5" - }, - { - "title": "SECTION II - Proposed or Completed Remedial Activities", - "theme": "default", - "tooltip": "", - "customClass": "", - "collapsible": false, - "hidden": false, - "hideLabel": false, - "disabled": false, - "modalEdit": false, - "key": "sectionIiProposedOrCompletedRemedialActivities", - "tags": [], - "properties": {}, - "customConditional": "", - "conditional": { - "json": "", - "show": null, - "when": null, - "eq": "" - }, - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "panel", - "label": "Panel", - "breadcrumb": "default", - "tabindex": "", - "input": false, - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "clearOnHide": false, - "refreshOn": "", - "redrawOn": "", - "tableView": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "tree": false, - "lazyLoad": false, - "components": [ - { - "html": "

Describe all aspects of remediation including regulatory actions and activities to comply with numerical and/or risk-based standards

", - "label": "Content", - "customClass": "", - "refreshOnChange": false, - "hidden": false, - "modalEdit": false, - "key": "content35", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "content", - "input": false, - "tableView": false, - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "id": "e3pr3l7" - }, - { - "label": "Regulatory: Notification of Independent Remediation, Approval in Principle, Certificate of Compliance, Determination, Restrictive Covenant etc.", - "labelPosition": "top", - "placeholder": "", - "description": "", - "tooltip": "", - "prefix": "", - "suffix": "", - "widget": { - "type": "input" - }, - "displayMask": "", - "editor": "", - "autoExpand": false, - "customClass": "", - "tabindex": "", - "autocomplete": "", - "hidden": false, - "hideLabel": false, - "showWordCount": false, - "showCharCount": false, - "autofocus": false, - "spellcheck": true, - "disabled": false, - "tableView": true, - "modalEdit": false, - "multiple": false, - "persistent": true, - "inputFormat": "html", - "protected": false, - "dbIndex": false, - "case": "", - "truncateMultipleSpaces": false, - "encrypted": false, - "redrawOn": "", - "clearOnHide": true, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "allowCalculateOverride": false, - "validateOn": "change", - "validate": { - "required": true, - "pattern": "", - "customMessage": "", - "custom": "", - "customPrivate": false, - "json": "", - "minLength": "", - "maxLength": "", - "minWords": "", - "maxWords": "", - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "unique": false, - "errorLabel": "", - "errors": "", - "key": "regulatoryNotificationOfIndependentRemediationApprovalInPrincipleCertificateOfComplianceDeterminationRestrictiveCovenantEtc", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "textarea", - "rows": 3, - "wysiwyg": false, - "input": true, - "refreshOn": "", - "dataGridLabel": false, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputMask": "", - "fixedSize": true, - "id": "elmoc77", - "defaultValue": "" - }, - { - "label": "If commitments or conditions to be met are included in an Approval in Principle issued for the site, list these conditions and identify how they were met though remedial activities. ", - "labelPosition": "top", - "placeholder": "", - "description": "", - "tooltip": "", - "prefix": "", - "suffix": "", - "widget": { - "type": "input" - }, - "displayMask": "", - "editor": "", - "autoExpand": false, - "customClass": "", - "tabindex": "", - "autocomplete": "", - "hidden": false, - "hideLabel": false, - "showWordCount": false, - "showCharCount": false, - "autofocus": false, - "spellcheck": true, - "disabled": false, - "tableView": true, - "modalEdit": false, - "multiple": false, - "persistent": true, - "inputFormat": "html", - "protected": false, - "dbIndex": false, - "case": "", - "truncateMultipleSpaces": false, - "encrypted": false, - "redrawOn": "", - "clearOnHide": true, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "allowCalculateOverride": false, - "validateOn": "change", - "validate": { - "required": true, - "pattern": "", - "customMessage": "", - "custom": "", - "customPrivate": false, - "json": "", - "minLength": "", - "maxLength": "", - "minWords": "", - "maxWords": "", - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "unique": false, - "errorLabel": "", - "errors": "", - "key": "ifCommitmentsOrConditionsToBeMetAreIncludedInAnApprovalInPrincipleIssuedForTheSiteListTheseConditionsAndIdentifyHowTheyWereMetThoughRemedialActivities", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "textarea", - "rows": 3, - "wysiwyg": false, - "input": true, - "refreshOn": "", - "dataGridLabel": false, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputMask": "", - "fixedSize": true, - "id": "eg9hfx", - "defaultValue": "" - }, - { - "label": "Remediation to comply with numerical standards (Excavation / disposal of soil, Treatment of soil; Treatment of groundwater, etc.) ", - "labelPosition": "top", - "placeholder": "", - "description": "", - "tooltip": "", - "prefix": "", - "suffix": "", - "widget": { - "type": "input" - }, - "displayMask": "", - "editor": "", - "autoExpand": false, - "customClass": "", - "tabindex": "", - "autocomplete": "", - "hidden": false, - "hideLabel": false, - "showWordCount": false, - "showCharCount": false, - "autofocus": false, - "spellcheck": true, - "disabled": false, - "tableView": true, - "modalEdit": false, - "multiple": false, - "persistent": true, - "inputFormat": "html", - "protected": false, - "dbIndex": false, - "case": "", - "truncateMultipleSpaces": false, - "encrypted": false, - "redrawOn": "", - "clearOnHide": true, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "allowCalculateOverride": false, - "validateOn": "change", - "validate": { - "required": true, - "pattern": "", - "customMessage": "", - "custom": "", - "customPrivate": false, - "json": "", - "minLength": "", - "maxLength": "", - "minWords": "", - "maxWords": "", - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "unique": false, - "errorLabel": "", - "errors": "", - "key": "remediationToComplyWithNumericalStandardsExcavationDisposalOfSoilTreatmentOfSoilTreatmentOfGroundwaterEtc", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "textarea", - "rows": 3, - "wysiwyg": false, - "input": true, - "refreshOn": "", - "dataGridLabel": false, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputMask": "", - "fixedSize": true, - "id": "ed566qt", - "defaultValue": "" - }, - { - "html": "

Screening Level Risk Assessment

", - "label": "Content", - "customClass": "", - "refreshOnChange": false, - "hidden": false, - "modalEdit": false, - "key": "content36", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "content", - "input": false, - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "tableView": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "id": "enhsylu" - }, - { - "label": "Intended", - "labelPosition": "top", - "optionsLabelPosition": "right", - "description": "", - "tooltip": "", - "customClass": "", - "tabindex": "", - "inline": false, - "hidden": false, - "hideLabel": false, - "autofocus": false, - "disabled": false, - "tableView": false, - "modalEdit": false, - "values": [ - { - "label": "Yes", - "value": "yes", - "shortcut": "" - }, - { - "label": "No", - "value": "no", - "shortcut": "" - } - ], - "dataType": "", - "persistent": true, - "protected": false, - "dbIndex": false, - "encrypted": false, - "redrawOn": "", - "clearOnHide": true, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "allowCalculateOverride": false, - "validate": { - "required": true, - "onlyAvailableItems": false, - "customMessage": "", - "custom": "", - "customPrivate": false, - "json": "", - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "errorLabel": "", - "errors": "", - "key": "intended", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "radio", - "input": true, - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "unique": false, - "refreshOn": "", - "dataGridLabel": false, - "widget": null, - "validateOn": "change", - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "inputType": "radio", - "fieldSet": false, - "id": "egyizxi", - "defaultValue": "" - }, - { - "label": "Carried out", - "labelPosition": "top", - "optionsLabelPosition": "right", - "description": "", - "tooltip": "", - "customClass": "", - "tabindex": "", - "inline": false, - "hidden": false, - "hideLabel": false, - "autofocus": false, - "disabled": false, - "tableView": false, - "modalEdit": false, - "values": [ - { - "label": "Yes", - "value": "yes", - "shortcut": "" - }, - { - "label": "No", - "value": "no", - "shortcut": "" - } - ], - "dataType": "", - "persistent": true, - "protected": false, - "dbIndex": false, - "encrypted": false, - "redrawOn": "", - "clearOnHide": true, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "allowCalculateOverride": false, - "validate": { - "required": true, - "onlyAvailableItems": false, - "customMessage": "", - "custom": "", - "customPrivate": false, - "json": "", - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "errorLabel": "", - "errors": "", - "key": "intended1", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "radio", - "input": true, - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "unique": false, - "refreshOn": "", - "dataGridLabel": false, - "widget": null, - "validateOn": "change", - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "inputType": "radio", - "fieldSet": false, - "id": "efbt54b", - "defaultValue": "" - }, - { - "html": "

Quantitative Risk Assessment

", - "label": "Content", - "customClass": "", - "refreshOnChange": false, - "hidden": false, - "modalEdit": false, - "key": "content37", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "content", - "input": false, - "tableView": false, - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "id": "e7p5rjw" - }, - { - "label": "Intended", - "optionsLabelPosition": "right", - "inline": false, - "tableView": false, - "values": [ - { - "label": "Yes", - "value": "yes", - "shortcut": "" - }, - { - "label": "No", - "value": "no", - "shortcut": "" - } - ], - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "onlyAvailableItems": false - }, - "key": "intended2", - "type": "radio", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "inputType": "radio", - "fieldSet": false, - "id": "emo5xjg" - }, - { - "label": "Carried out", - "optionsLabelPosition": "right", - "inline": false, - "tableView": false, - "values": [ - { - "label": "Yes", - "value": "yes", - "shortcut": "" - }, - { - "label": "No", - "value": "no", - "shortcut": "" - } - ], - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "onlyAvailableItems": false - }, - "key": "intended3", - "type": "radio", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "inputType": "radio", - "fieldSet": false, - "id": "euhh0a4" - }, - { - "html": "

If yes for any above, complete Section 5.5 (Summary of Residual Contamination)

", - "label": "Content", - "customClass": "", - "refreshOnChange": false, - "hidden": false, - "modalEdit": false, - "key": "content38", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "content", - "input": false, - "tableView": false, - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "id": "ez6x9bq" - }, - { - "label": "Describe risk management / exposure reduction methods intended or implemented and indicate the status of any measures.", - "labelPosition": "top", - "placeholder": "e.g., Physical / engineering: monitoring, capping or barriers to exposure; Institutional: registration of restrictive covenants, financial security, etc.", - "description": "", - "tooltip": "", - "prefix": "", - "suffix": "", - "widget": { - "type": "input" - }, - "displayMask": "", - "editor": "", - "autoExpand": false, - "customClass": "", - "tabindex": "", - "autocomplete": "", - "hidden": false, - "hideLabel": false, - "showWordCount": false, - "showCharCount": false, - "autofocus": false, - "spellcheck": true, - "disabled": false, - "tableView": true, - "modalEdit": false, - "multiple": false, - "persistent": true, - "inputFormat": "html", - "protected": false, - "dbIndex": false, - "case": "", - "truncateMultipleSpaces": false, - "encrypted": false, - "redrawOn": "", - "clearOnHide": true, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "allowCalculateOverride": false, - "validateOn": "change", - "validate": { - "required": false, - "pattern": "", - "customMessage": "", - "custom": "", - "customPrivate": false, - "json": "", - "minLength": "", - "maxLength": "", - "minWords": "", - "maxWords": "", - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "unique": false, - "errorLabel": "", - "errors": "", - "key": "describeRiskManagementExposureReductionMethodsIntendedOrImplementedAndIndicateTheStatusOfAnyMeasures", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "textarea", - "rows": 6, - "wysiwyg": false, - "input": true, - "refreshOn": "", - "dataGridLabel": false, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputMask": "", - "fixedSize": true, - "id": "ew7umzp", - "defaultValue": "" - }, - { - "html": "

Provide a reference to signed and stamped design drawings provided by a professional engineer for works installed at site boundaries to prevent recontamination of a site.

", - "label": "Content", - "customClass": "", - "refreshOnChange": false, - "hidden": false, - "modalEdit": false, - "key": "content39", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "content", - "input": false, - "tableView": false, - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "id": "e8a6e6" - }, - { - "label": "", - "reorder": false, - "addAnotherPosition": "bottom", - "layoutFixed": false, - "enableRowGroups": false, - "initEmpty": false, - "tableView": false, - "defaultValue": [ - { - "report": "", - "page": "", - "orAppendix": "" - } - ], - "key": "references", - "type": "datagrid", - "input": true, - "components": [ - { - "title": "", - "collapsible": false, - "key": "panel4", - "type": "panel", - "label": "References", - "input": false, - "tableView": false, - "components": [ - { - "label": "Columns", - "columns": [ - { - "components": [ - { - "label": "Report #", - "tableView": true, - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "key": "report", - "type": "textfield", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "ev76fb" - } - ], - "width": 4, - "offset": 0, - "push": 0, - "pull": 0, - "size": "md", - "currentWidth": 4 - }, - { - "components": [ - { - "label": "Page #", - "tableView": true, - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "key": "page", - "type": "textfield", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "exu4dc8" - } - ], - "width": 4, - "offset": 0, - "push": 0, - "pull": 0, - "size": "md", - "currentWidth": 4 - }, - { - "components": [ - { - "label": "Appendix #", - "tableView": true, - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "key": "orAppendix", - "type": "textfield", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "e1a2r8o" - } - ], - "size": "md", - "width": 4, - "offset": 0, - "push": 0, - "pull": 0, - "currentWidth": 4 - } - ], - "key": "columns", - "type": "columns", - "input": false, - "tableView": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "hidden": false, - "clearOnHide": false, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "tree": false, - "lazyLoad": false, - "autoAdjust": false, - "id": "e9e5bm" - } - ], - "id": "e6l31cy0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "hidden": false, - "clearOnHide": false, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "tree": false, - "lazyLoad": false, - "theme": "default", - "breadcrumb": "default" - } - ], - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "tree": true, - "lazyLoad": false, - "disableAddingRemovingRows": false, - "id": "e2jy1yl" - } - ], - "id": "epn9oxk" - }, - { - "title": "SECTION III - Summary of Remediation Plan/Remediation", - "theme": "default", - "tooltip": "", - "customClass": "", - "collapsible": false, - "hidden": false, - "hideLabel": false, - "disabled": false, - "modalEdit": false, - "key": "sectionIiiSummaryOfRemediationPlanRemediation", - "tags": [], - "properties": {}, - "customConditional": "", - "conditional": { - "json": "", - "show": null, - "when": null, - "eq": "" - }, - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "panel", - "label": "Panel", - "breadcrumb": "default", - "tabindex": "", - "input": false, - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "clearOnHide": false, - "refreshOn": "", - "redrawOn": "", - "tableView": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "tree": false, - "lazyLoad": false, - "components": [ - { - "html": "

Remediation Standards and Schedule

", - "label": "Content", - "customClass": "", - "refreshOnChange": false, - "hidden": false, - "modalEdit": false, - "key": "content40", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "content", - "input": false, - "tableView": false, - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "id": "ep2zw9j" - }, - { - "label": "Environmental medium assessed. Select all that apply. (If this SOSC is to support a Negative Determination Application, select N/A)", - "labelPosition": "top", - "optionsLabelPosition": "right", - "description": "", - "tooltip": "", - "customClass": "", - "tabindex": "", - "inline": false, - "hidden": false, - "hideLabel": false, - "autofocus": false, - "disabled": false, - "tableView": false, - "modalEdit": false, - "defaultValue": { - "soil": false, - "groundwater": false, - "surfaceWater": false, - "sediment": false, - "nA": false, - "vapour": false - }, - "values": [ - { - "label": "Soil", - "value": "soil", - "shortcut": "" - }, - { - "label": "Groundwater", - "value": "groundwater", - "shortcut": "" - }, - { - "label": "Surface Water", - "value": "surfaceWater", - "shortcut": "" - }, - { - "label": "Vapour", - "value": "vapour", - "shortcut": "" - }, - { - "label": "Sediment", - "value": "sediment", - "shortcut": "" - }, - { - "label": "N/A", - "value": "nA", - "shortcut": "" - } - ], - "persistent": true, - "protected": false, - "dbIndex": false, - "encrypted": false, - "redrawOn": "", - "clearOnHide": true, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "allowCalculateOverride": false, - "validate": { - "required": true, - "onlyAvailableItems": false, - "customMessage": "", - "custom": "", - "customPrivate": false, - "json": "", - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "errorLabel": "", - "minSelectedCountMessage": "", - "maxSelectedCountMessage": "", - "errors": "", - "key": "environmentalMediumAssessedSelectAllThatApplyIfThisSoscIsToSupportANegativeDeterminationApplicationSelectNA", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "selectboxes", - "input": true, - "inputType": "checkbox", - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "unique": false, - "refreshOn": "", - "dataGridLabel": false, - "widget": null, - "validateOn": "change", - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "fieldSet": false, - "id": "e165oim" - }, - { - "label": "Soil", - "labelPosition": "top", - "description": "", - "tooltip": "", - "disableAddingRemovingRows": false, - "conditionalAddButton": "", - "reorder": false, - "addAnother": "", - "addAnotherPosition": "bottom", - "layoutFixed": false, - "enableRowGroups": false, - "initEmpty": false, - "customClass": "", - "tabindex": "", - "hidden": false, - "hideLabel": false, - "autofocus": false, - "disabled": false, - "tableView": false, - "modalEdit": false, - "defaultValue": [ - { - "aecUseTheSameAecAsForAeCsInSection46": "", - "coc": "", - "remediatedToTheFollowingStandardProposedOrCompleted": { - "numericalStandardGuidelineOrCriteria": false, - "siteSpecificNumericalStandard": false, - "backgroundConcentrationAttachProtocol4ApprovalIfApplicable": false, - "riskBased": false - }, - "remediationComplete": "", - "proposedOrActualCompletionDate": "00/00/0000" - } - ], - "persistent": true, - "protected": false, - "dbIndex": false, - "encrypted": false, - "redrawOn": "", - "clearOnHide": true, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "allowCalculateOverride": false, - "validateOn": "change", - "validate": { - "required": false, - "minLength": "", - "maxLength": "", - "customMessage": "", - "custom": "", - "customPrivate": false, - "json": "", - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "errorLabel": "", - "errors": "", - "key": "dataGrid8", - "tags": [], - "properties": {}, - "conditional": { - "show": true, - "when": "environmentalMediumAssessedSelectAllThatApplyIfThisSoscIsToSupportANegativeDeterminationApplicationSelectNA", - "eq": "soil", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "datagrid", - "input": true, - "components": [ - { - "title": "Soil", - "collapsible": false, - "hideLabel": true, - "key": "panel4", - "type": "panel", - "label": "", - "input": false, - "tableView": false, - "components": [ - { - "label": "AEC # (Use the same AEC# as for AECs in the table in Section 4.6)", - "tableView": true, - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "key": "aecUseTheSameAecAsForAeCsInSection46", - "type": "textfield", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "eaf7t1" - }, - { - "label": "COC", - "tableView": true, - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "key": "coc", - "type": "textfield", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "eoda2go" - }, - { - "label": "Remediated to the following standard (proposed or completed)", - "optionsLabelPosition": "right", - "tableView": false, - "values": [ - { - "label": "Numerical (standard, guideline or criteria)", - "value": "numericalStandardGuidelineOrCriteria", - "shortcut": "" - }, - { - "label": "Site-Specific numerical standard", - "value": "siteSpecificNumericalStandard", - "shortcut": "" - }, - { - "label": "Background concentration (attach protocol 4 approval if applicable)", - "value": "backgroundConcentrationAttachProtocol4ApprovalIfApplicable", - "shortcut": "" - }, - { - "label": "Risk-based", - "value": "riskBased", - "shortcut": "" - } - ], - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "onlyAvailableItems": false - }, - "key": "remediatedToTheFollowingStandardProposedOrCompleted", - "type": "selectboxes", - "input": true, - "inputType": "checkbox", - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "fieldSet": false, - "inline": false, - "id": "emv34m" - }, - { - "label": "Remediation complete", - "optionsLabelPosition": "right", - "inline": false, - "tableView": false, - "values": [ - { - "label": "Yes", - "value": "yes", - "shortcut": "" - }, - { - "label": "No", - "value": "no", - "shortcut": "" - }, - { - "label": "Remediation Planned", - "value": "remediationPlanned", - "shortcut": "" - } - ], - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "onlyAvailableItems": false - }, - "key": "remediationComplete", - "type": "radio", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "inputType": "radio", - "fieldSet": false, - "id": "ek8hrjd" - }, - { - "label": "Proposed or actual completion date", - "hideInputLabels": false, - "inputsLabelPosition": "top", - "useLocaleSettings": false, - "tableView": false, - "fields": { - "day": { - "hide": false, - "required": true, - "type": "number", - "placeholder": "" - }, - "month": { - "hide": false, - "required": true, - "type": "select", - "placeholder": "" - }, - "year": { - "hide": false, - "required": true, - "type": "number", - "placeholder": "" - } - }, - "defaultValue": "00/00/0000", - "key": "proposedOrActualCompletionDate", - "type": "day", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "dayFirst": false, - "id": "eb274z" - } - ], - "id": "eauzdys000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "hidden": false, - "clearOnHide": false, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "tree": false, - "lazyLoad": false, - "theme": "default", - "breadcrumb": "default" - } - ], - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "unique": false, - "refreshOn": "", - "dataGridLabel": false, - "widget": null, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "tree": true, - "lazyLoad": false, - "id": "eojass" - }, - { - "label": "Groundwater", - "labelPosition": "top", - "description": "", - "tooltip": "", - "disableAddingRemovingRows": false, - "conditionalAddButton": "", - "reorder": false, - "addAnother": "", - "addAnotherPosition": "bottom", - "layoutFixed": false, - "enableRowGroups": false, - "initEmpty": false, - "customClass": "", - "tabindex": "", - "hidden": false, - "hideLabel": false, - "autofocus": false, - "disabled": false, - "tableView": false, - "modalEdit": false, - "defaultValue": [ - { - "aecUseTheSameAecAsForAeCsInSection46": "", - "coc": "", - "remediatedToTheFollowingStandardProposedOrCompleted": { - "numericalStandardGuidelineOrCriteria": false, - "siteSpecificNumericalStandard": false, - "backgroundConcentrationAttachProtocol4ApprovalIfApplicable": false, - "riskBased": false - }, - "remediationComplete": "", - "proposedOrActualCompletionDate": "00/00/0000" - } - ], - "persistent": true, - "protected": false, - "dbIndex": false, - "encrypted": false, - "redrawOn": "", - "clearOnHide": true, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "allowCalculateOverride": false, - "validateOn": "change", - "validate": { - "required": false, - "minLength": "", - "maxLength": "", - "customMessage": "", - "custom": "", - "customPrivate": false, - "json": "", - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "errorLabel": "", - "errors": "", - "key": "dataGrid9", - "tags": [], - "properties": {}, - "conditional": { - "show": true, - "when": "environmentalMediumAssessedSelectAllThatApplyIfThisSoscIsToSupportANegativeDeterminationApplicationSelectNA", - "eq": "groundwater", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "datagrid", - "input": true, - "components": [ - { - "title": "Groundwater", - "collapsible": false, - "hideLabel": true, - "key": "groundwater", - "type": "panel", - "label": "", - "input": false, - "tableView": false, - "components": [ - { - "label": "AEC # (Use the same AEC# as for AECs in the table in Section 4.6)", - "tableView": true, - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "key": "aecUseTheSameAecAsForAeCsInSection46", - "type": "textfield", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "ej8l9ey" - }, - { - "label": "COC", - "tableView": true, - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "key": "coc", - "type": "textfield", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "e9w6crd" - }, - { - "label": "Remediated to the following standard (proposed or completed)", - "optionsLabelPosition": "right", - "tableView": false, - "values": [ - { - "label": "Numerical (standard, guideline or criteria)", - "value": "numericalStandardGuidelineOrCriteria", - "shortcut": "" - }, - { - "label": "Site-Specific numerical standard", - "value": "siteSpecificNumericalStandard", - "shortcut": "" - }, - { - "label": "Background concentration (attach protocol 4 approval if applicable)", - "value": "backgroundConcentrationAttachProtocol4ApprovalIfApplicable", - "shortcut": "" - }, - { - "label": "Risk-based", - "value": "riskBased", - "shortcut": "" - } - ], - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "onlyAvailableItems": false - }, - "key": "remediatedToTheFollowingStandardProposedOrCompleted", - "type": "selectboxes", - "input": true, - "inputType": "checkbox", - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "fieldSet": false, - "inline": false, - "id": "euyjc8g" - }, - { - "label": "Remediation complete", - "optionsLabelPosition": "right", - "inline": false, - "tableView": false, - "values": [ - { - "label": "Yes", - "value": "yes", - "shortcut": "" - }, - { - "label": "No", - "value": "no", - "shortcut": "" - }, - { - "label": "Remediation Planned", - "value": "remediationPlanned", - "shortcut": "" - } - ], - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "onlyAvailableItems": false - }, - "key": "remediationComplete", - "type": "radio", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "inputType": "radio", - "fieldSet": false, - "id": "ef329mn" - }, - { - "label": "Proposed or actual completion date", - "hideInputLabels": false, - "inputsLabelPosition": "top", - "useLocaleSettings": false, - "tableView": false, - "fields": { - "day": { - "hide": false, - "required": true, - "type": "number", - "placeholder": "" - }, - "month": { - "hide": false, - "required": true, - "type": "select", - "placeholder": "" - }, - "year": { - "hide": false, - "required": true, - "type": "number", - "placeholder": "" - } - }, - "defaultValue": "00/00/0000", - "key": "proposedOrActualCompletionDate", - "type": "day", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "dayFirst": false, - "id": "euj2r2l" - } - ], - "id": "ey0h0vl00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "hidden": false, - "clearOnHide": false, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "tree": false, - "lazyLoad": false, - "theme": "default", - "breadcrumb": "default" - } - ], - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "unique": false, - "refreshOn": "", - "dataGridLabel": false, - "widget": null, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "tree": true, - "lazyLoad": false, - "id": "ew0r1gt" - }, - { - "label": "Surface Water", - "labelPosition": "top", - "description": "", - "tooltip": "", - "disableAddingRemovingRows": false, - "conditionalAddButton": "", - "reorder": false, - "addAnother": "", - "addAnotherPosition": "bottom", - "layoutFixed": false, - "enableRowGroups": false, - "initEmpty": false, - "customClass": "", - "tabindex": "", - "hidden": false, - "hideLabel": false, - "autofocus": false, - "disabled": false, - "tableView": false, - "modalEdit": false, - "defaultValue": [ - { - "aecUseTheSameAecAsForAeCsInSection46": "", - "coc": "", - "remediatedToTheFollowingStandardProposedOrCompleted": { - "numericalStandardGuidelineOrCriteria": false, - "siteSpecificNumericalStandard": false, - "backgroundConcentrationAttachProtocol4ApprovalIfApplicable": false, - "riskBased": false - }, - "remediationComplete": "", - "proposedOrActualCompletionDate": "00/00/0000" - } - ], - "persistent": true, - "protected": false, - "dbIndex": false, - "encrypted": false, - "redrawOn": "", - "clearOnHide": true, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "allowCalculateOverride": false, - "validateOn": "change", - "validate": { - "required": false, - "minLength": "", - "maxLength": "", - "customMessage": "", - "custom": "", - "customPrivate": false, - "json": "", - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "errorLabel": "", - "errors": "", - "key": "dataGrid10", - "tags": [], - "properties": {}, - "conditional": { - "show": true, - "when": "environmentalMediumAssessedSelectAllThatApplyIfThisSoscIsToSupportANegativeDeterminationApplicationSelectNA", - "eq": "surfaceWater", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "datagrid", - "input": true, - "components": [ - { - "title": "Surface Water", - "collapsible": false, - "hideLabel": true, - "key": "surfaceWater", - "type": "panel", - "label": "", - "input": false, - "tableView": false, - "components": [ - { - "label": "AEC # (Use the same AEC# as for AECs in the table in Section 4.6)", - "tableView": true, - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "key": "aecUseTheSameAecAsForAeCsInSection46", - "type": "textfield", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "exhym4b" - }, - { - "label": "COC", - "tableView": true, - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "key": "coc", - "type": "textfield", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "edjxf9" - }, - { - "label": "Remediated to the following standard (proposed or completed)", - "optionsLabelPosition": "right", - "tableView": false, - "values": [ - { - "label": "Numerical (standard, guideline or criteria)", - "value": "numericalStandardGuidelineOrCriteria", - "shortcut": "" - }, - { - "label": "Site-Specific numerical standard", - "value": "siteSpecificNumericalStandard", - "shortcut": "" - }, - { - "label": "Background concentration (attach protocol 4 approval if applicable)", - "value": "backgroundConcentrationAttachProtocol4ApprovalIfApplicable", - "shortcut": "" - }, - { - "label": "Risk-based", - "value": "riskBased", - "shortcut": "" - } - ], - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "onlyAvailableItems": false - }, - "key": "remediatedToTheFollowingStandardProposedOrCompleted", - "type": "selectboxes", - "input": true, - "inputType": "checkbox", - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "fieldSet": false, - "inline": false, - "id": "eslf5sl" - }, - { - "label": "Remediation complete", - "optionsLabelPosition": "right", - "inline": false, - "tableView": false, - "values": [ - { - "label": "Yes", - "value": "yes", - "shortcut": "" - }, - { - "label": "No", - "value": "no", - "shortcut": "" - }, - { - "label": "Remediation Planned", - "value": "remediationPlanned", - "shortcut": "" - } - ], - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "onlyAvailableItems": false - }, - "key": "remediationComplete", - "type": "radio", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "inputType": "radio", - "fieldSet": false, - "id": "eyhnsyf" - }, - { - "label": "Proposed or actual completion date", - "hideInputLabels": false, - "inputsLabelPosition": "top", - "useLocaleSettings": false, - "tableView": false, - "fields": { - "day": { - "hide": false, - "required": true, - "type": "number", - "placeholder": "" - }, - "month": { - "hide": false, - "required": true, - "type": "select", - "placeholder": "" - }, - "year": { - "hide": false, - "required": true, - "type": "number", - "placeholder": "" - } - }, - "defaultValue": "00/00/0000", - "key": "proposedOrActualCompletionDate", - "type": "day", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "dayFirst": false, - "id": "ehez7s" - } - ], - "id": "el9aclo0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "hidden": false, - "clearOnHide": false, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "tree": false, - "lazyLoad": false, - "theme": "default", - "breadcrumb": "default" - } - ], - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "unique": false, - "refreshOn": "", - "dataGridLabel": false, - "widget": null, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "tree": true, - "lazyLoad": false, - "id": "eb6spa00000" - }, - { - "label": "Vapour", - "labelPosition": "top", - "description": "", - "tooltip": "", - "disableAddingRemovingRows": false, - "conditionalAddButton": "", - "reorder": false, - "addAnother": "", - "addAnotherPosition": "bottom", - "layoutFixed": false, - "enableRowGroups": false, - "initEmpty": false, - "customClass": "", - "tabindex": "", - "hidden": false, - "hideLabel": false, - "autofocus": false, - "disabled": false, - "tableView": false, - "modalEdit": false, - "defaultValue": [ - { - "aecUseTheSameAecAsForAeCsInSection46": "", - "coc": "", - "remediatedToTheFollowingStandardProposedOrCompleted": { - "numericalStandardGuidelineOrCriteria": false, - "siteSpecificNumericalStandard": false, - "backgroundConcentrationAttachProtocol4ApprovalIfApplicable": false, - "riskBased": false - }, - "remediationComplete": "", - "proposedOrActualCompletionDate": "00/00/0000" - } - ], - "persistent": true, - "protected": false, - "dbIndex": false, - "encrypted": false, - "redrawOn": "", - "clearOnHide": true, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "allowCalculateOverride": false, - "validateOn": "change", - "validate": { - "required": false, - "minLength": "", - "maxLength": "", - "customMessage": "", - "custom": "", - "customPrivate": false, - "json": "", - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "errorLabel": "", - "errors": "", - "key": "dataGrid11", - "tags": [], - "properties": {}, - "conditional": { - "show": true, - "when": "environmentalMediumAssessedSelectAllThatApplyIfThisSoscIsToSupportANegativeDeterminationApplicationSelectNA", - "eq": "vapour", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "datagrid", - "input": true, - "components": [ - { - "title": "Vapour", - "collapsible": false, - "hideLabel": true, - "key": "vapour", - "type": "panel", - "label": "", - "input": false, - "tableView": false, - "components": [ - { - "label": "AEC # (Use the same AEC# as for AECs in the table in Section 4.6)", - "tableView": true, - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "key": "aecUseTheSameAecAsForAeCsInSection46", - "type": "textfield", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "etqxeaii" - }, - { - "label": "COC", - "tableView": true, - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "key": "coc", - "type": "textfield", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "ec8vxle" - }, - { - "label": "Remediated to the following standard (proposed or completed)", - "optionsLabelPosition": "right", - "tableView": false, - "values": [ - { - "label": "Numerical (standard, guideline or criteria)", - "value": "numericalStandardGuidelineOrCriteria", - "shortcut": "" - }, - { - "label": "Site-Specific numerical standard", - "value": "siteSpecificNumericalStandard", - "shortcut": "" - }, - { - "label": "Background concentration (attach protocol 4 approval if applicable)", - "value": "backgroundConcentrationAttachProtocol4ApprovalIfApplicable", - "shortcut": "" - }, - { - "label": "Risk-based", - "value": "riskBased", - "shortcut": "" - } - ], - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "onlyAvailableItems": false - }, - "key": "remediatedToTheFollowingStandardProposedOrCompleted", - "type": "selectboxes", - "input": true, - "inputType": "checkbox", - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "fieldSet": false, - "inline": false, - "id": "exo08af" - }, - { - "label": "Remediation complete", - "optionsLabelPosition": "right", - "inline": false, - "tableView": false, - "values": [ - { - "label": "Yes", - "value": "yes", - "shortcut": "" - }, - { - "label": "No", - "value": "no", - "shortcut": "" - }, - { - "label": "Remediation Planned", - "value": "remediationPlanned", - "shortcut": "" - } - ], - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "onlyAvailableItems": false - }, - "key": "remediationComplete", - "type": "radio", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "inputType": "radio", - "fieldSet": false, - "id": "e86fmgcc" - }, - { - "label": "Proposed or actual completion date", - "hideInputLabels": false, - "inputsLabelPosition": "top", - "useLocaleSettings": false, - "tableView": false, - "fields": { - "day": { - "hide": false, - "required": true, - "type": "number", - "placeholder": "" - }, - "month": { - "hide": false, - "required": true, - "type": "select", - "placeholder": "" - }, - "year": { - "hide": false, - "required": true, - "type": "number", - "placeholder": "" - } - }, - "defaultValue": "00/00/0000", - "key": "proposedOrActualCompletionDate", - "type": "day", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "dayFirst": false, - "id": "et10s3fg" - } - ], - "id": "ehk7lsj000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "hidden": false, - "clearOnHide": false, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "tree": false, - "lazyLoad": false, - "theme": "default", - "breadcrumb": "default" - } - ], - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "unique": false, - "refreshOn": "", - "dataGridLabel": false, - "widget": null, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "tree": true, - "lazyLoad": false, - "id": "ec6dxnf" - }, - { - "label": "Sediment", - "labelPosition": "top", - "description": "", - "tooltip": "", - "disableAddingRemovingRows": false, - "conditionalAddButton": "", - "reorder": false, - "addAnother": "", - "addAnotherPosition": "bottom", - "layoutFixed": false, - "enableRowGroups": false, - "initEmpty": false, - "customClass": "", - "tabindex": "", - "hidden": false, - "hideLabel": false, - "autofocus": false, - "disabled": false, - "tableView": false, - "modalEdit": false, - "defaultValue": [ - { - "aecUseTheSameAecAsForAeCsInSection46": "", - "coc": "", - "remediatedToTheFollowingStandardProposedOrCompleted": { - "numericalStandardGuidelineOrCriteria": false, - "siteSpecificNumericalStandard": false, - "backgroundConcentrationAttachProtocol4ApprovalIfApplicable": false, - "riskBased": false - }, - "remediationComplete": "", - "proposedOrActualCompletionDate": "00/00/0000" - } - ], - "persistent": true, - "protected": false, - "dbIndex": false, - "encrypted": false, - "redrawOn": "", - "clearOnHide": true, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "allowCalculateOverride": false, - "validateOn": "change", - "validate": { - "required": false, - "minLength": "", - "maxLength": "", - "customMessage": "", - "custom": "", - "customPrivate": false, - "json": "", - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "errorLabel": "", - "errors": "", - "key": "dataGrid12", - "tags": [], - "properties": {}, - "conditional": { - "show": true, - "when": "environmentalMediumAssessedSelectAllThatApplyIfThisSoscIsToSupportANegativeDeterminationApplicationSelectNA", - "eq": "sediment", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "datagrid", - "input": true, - "components": [ - { - "title": "Sediment", - "collapsible": false, - "hideLabel": true, - "key": "sediment", - "type": "panel", - "label": "", - "input": false, - "tableView": false, - "components": [ - { - "label": "AEC # (Use the same AEC# as for AECs in the table in Section 4.6)", - "tableView": true, - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "key": "aecUseTheSameAecAsForAeCsInSection46", - "type": "textfield", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "e7jbx9j" - }, - { - "label": "COC", - "tableView": true, - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "key": "coc", - "type": "textfield", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "esfs5p" - }, - { - "label": "Remediated to the following standard (proposed or completed)", - "optionsLabelPosition": "right", - "tableView": false, - "values": [ - { - "label": "Numerical (standard, guideline or criteria)", - "value": "numericalStandardGuidelineOrCriteria", - "shortcut": "" - }, - { - "label": "Site-Specific numerical standard", - "value": "siteSpecificNumericalStandard", - "shortcut": "" - }, - { - "label": "Background concentration (attach protocol 4 approval if applicable)", - "value": "backgroundConcentrationAttachProtocol4ApprovalIfApplicable", - "shortcut": "" - }, - { - "label": "Risk-based", - "value": "riskBased", - "shortcut": "" - } - ], - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "onlyAvailableItems": false - }, - "key": "remediatedToTheFollowingStandardProposedOrCompleted1", - "type": "selectboxes", - "input": true, - "inputType": "checkbox", - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "fieldSet": false, - "inline": false, - "id": "euis3w" - }, - { - "label": "Remediation complete", - "optionsLabelPosition": "right", - "inline": false, - "tableView": false, - "values": [ - { - "label": "Yes", - "value": "yes", - "shortcut": "" - }, - { - "label": "No", - "value": "no", - "shortcut": "" - }, - { - "label": "Remediation Planned", - "value": "remediationPlanned", - "shortcut": "" - } - ], - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "onlyAvailableItems": false - }, - "key": "remediationComplete", - "type": "radio", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "inputType": "radio", - "fieldSet": false, - "id": "ek6jihq" - }, - { - "label": "Proposed or actual completion date", - "hideInputLabels": false, - "inputsLabelPosition": "top", - "useLocaleSettings": false, - "tableView": false, - "fields": { - "day": { - "hide": false, - "required": true, - "type": "number", - "placeholder": "" - }, - "month": { - "hide": false, - "required": true, - "type": "select", - "placeholder": "" - }, - "year": { - "hide": false, - "required": true, - "type": "number", - "placeholder": "" - } - }, - "defaultValue": "00/00/0000", - "key": "proposedOrActualCompletionDate", - "type": "day", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "dayFirst": false, - "id": "eu50tno" - } - ], - "id": "ejahpfm000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "hidden": false, - "clearOnHide": false, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "tree": false, - "lazyLoad": false, - "theme": "default", - "breadcrumb": "default" - } - ], - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "unique": false, - "refreshOn": "", - "dataGridLabel": false, - "widget": null, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "tree": true, - "lazyLoad": false, - "id": "exwpiia0" - } - ], - "id": "e3zicjv" - }, - { - "title": "SECTION IV - Summary of Contaminant Treatment or Removal", - "theme": "default", - "tooltip": "", - "customClass": "", - "collapsible": false, - "hidden": false, - "hideLabel": false, - "disabled": false, - "modalEdit": false, - "key": "sectionIvSummaryOfContaminantTreatmentOrRemoval", - "tags": [], - "properties": {}, - "customConditional": "", - "conditional": { - "json": "", - "show": null, - "when": null, - "eq": "" - }, - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "panel", - "label": "Panel", - "breadcrumb": "default", - "tabindex": "", - "input": false, - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "clearOnHide": false, - "refreshOn": "", - "redrawOn": "", - "tableView": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "tree": false, - "lazyLoad": false, - "components": [ - { - "html": "

 

Identify and describe all contamination removed from or treated on-site. Ensure Part 6 is completed regarding the relocation of waste and non-waste soil.

Provide references to figure(s) showing the lateral and vertical extent of any treated or removed contamination. Confirmatory sample locations and corresponding analytical results shall be shown on each figure and in tabular form with reference to applicable standards:

 

In the AEC column, specify as n/a (not applicable) if remediation or assessment is not required in this environmental medium.

", - "label": "Content", - "customClass": "", - "refreshOnChange": false, - "hidden": false, - "modalEdit": false, - "key": "content41", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "content", - "input": false, - "tableView": false, - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "id": "e12mm2s" - }, - { - "label": "Data Grid", - "reorder": false, - "addAnotherPosition": "bottom", - "layoutFixed": false, - "enableRowGroups": false, - "initEmpty": false, - "hideLabel": true, - "tableView": false, - "defaultValue": [ - {} - ], - "key": "dataGrid13", - "type": "datagrid", - "input": true, - "components": [ - { - "title": "", - "theme": "default", - "tooltip": "", - "customClass": "", - "collapsible": false, - "hidden": false, - "hideLabel": false, - "dataGridLabel": false, - "disabled": false, - "modalEdit": false, - "key": "panel", - "tags": [], - "properties": {}, - "customConditional": "", - "conditional": { - "json": "", - "show": null, - "when": null, - "eq": "" - }, - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "panel", - "label": "", - "breadcrumb": "default", - "tabindex": "", - "input": false, - "tableView": false, - "components": [ - { - "label": "AEC / APEC #", - "tableView": true, - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "key": "aecApec", - "type": "textfield", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "eqnfc6c" - }, - { - "label": "COC", - "tableView": true, - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "key": "coc", - "type": "textfield", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "ea1vh2f" - }, - { - "label": "Medium", - "placeholder": "(e.g. soil, groundwater, surface water, vapour, sediment, other)", - "tableView": true, - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "key": "medium", - "type": "textfield", - "input": true, - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "ekz1zpq" - }, - { - "label": "Material removed volume (m³ or L) ", - "tableView": true, - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "key": "materialRemovedVolumeMOrL", - "type": "textfield", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "e287y9a" - }, - { - "label": "Material removed disposal location (indicate if treated on- site)", - "tableView": true, - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "key": "textField", - "type": "textfield", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "enr29qh" - } - ], - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "clearOnHide": false, - "refreshOn": "", - "redrawOn": "", - "labelPosition": "top", - "description": "", - "errorLabel": "", - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "tree": false, - "lazyLoad": false, - "id": "etzpsl000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" - } - ], - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "tree": true, - "lazyLoad": false, - "disableAddingRemovingRows": false, - "id": "eiqygdt" - } - ], - "id": "ezlmejd" - }, - { - "title": "SECTION V - Summary of Residual Contamination After Remediation", - "theme": "default", - "tooltip": "", - "customClass": "", - "collapsible": false, - "hidden": false, - "hideLabel": false, - "disabled": false, - "modalEdit": false, - "key": "sectionVSummaryOfResidualContaminationAfterRemediation", - "tags": [], - "properties": {}, - "customConditional": "", - "conditional": { - "json": "", - "show": null, - "when": null, - "eq": "" - }, - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "panel", - "label": "Panel", - "breadcrumb": "default", - "tabindex": "", - "input": false, - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "clearOnHide": false, - "refreshOn": "", - "redrawOn": "", - "tableView": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "tree": false, - "lazyLoad": false, - "components": [ - { - "html": "

Identify and describe all contamination that exceeds CSR numerical standards, after the remediation described above has been implemented.

", - "label": "Content", - "customClass": "", - "refreshOnChange": false, - "hidden": false, - "modalEdit": false, - "key": "content42", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "content", - "input": false, - "tableView": false, - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "id": "evqw2d" - }, - { - "label": "Data Grid", - "reorder": false, - "addAnotherPosition": "bottom", - "layoutFixed": false, - "enableRowGroups": false, - "initEmpty": false, - "hideLabel": true, - "tableView": false, - "defaultValue": [ - {} - ], - "key": "dataGrid14", - "type": "datagrid", - "input": true, - "components": [ - { - "title": "", - "collapsible": false, - "key": "panel10", - "type": "panel", - "label": "", - "input": false, - "tableView": false, - "components": [ - { - "label": "AEC / APEC #", - "labelPosition": "top", - "placeholder": "Use same # as for APECS above", - "description": "", - "tooltip": "", - "prefix": "", - "suffix": "", - "widget": { - "type": "input" - }, - "inputMask": "", - "displayMask": "", - "allowMultipleMasks": false, - "customClass": "", - "tabindex": "", - "autocomplete": "", - "hidden": false, - "hideLabel": false, - "showWordCount": false, - "showCharCount": false, - "mask": false, - "autofocus": false, - "spellcheck": true, - "disabled": false, - "tableView": true, - "modalEdit": false, - "multiple": false, - "persistent": true, - "inputFormat": "plain", - "protected": false, - "dbIndex": false, - "case": "", - "truncateMultipleSpaces": false, - "encrypted": false, - "redrawOn": "", - "clearOnHide": true, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "allowCalculateOverride": false, - "validateOn": "change", - "validate": { - "required": true, - "pattern": "", - "customMessage": "", - "custom": "", - "customPrivate": false, - "json": "", - "minLength": "", - "maxLength": "", - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "unique": false, - "errorLabel": "", - "errors": "", - "key": "aecApec", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "textfield", - "input": true, - "refreshOn": "", - "dataGridLabel": false, - "addons": [], - "inputType": "text", - "id": "equan8wd", - "defaultValue": "" - }, - { - "label": "COC", - "tableView": true, - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "key": "coc", - "type": "textfield", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "e8l3z6" - }, - { - "label": "Medium", - "placeholder": "(e.g. soil, groundwater, surface water, vapour, sediment, other)", - "tableView": true, - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "key": "medium", - "type": "textfield", - "input": true, - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "e5nxmnx" - }, - { - "label": "Maximum measured concentration (indicate units)", - "labelPosition": "top", - "placeholder": "", - "description": "", - "tooltip": "", - "prefix": "", - "suffix": "", - "widget": { - "type": "input" - }, - "inputMask": "", - "displayMask": "", - "allowMultipleMasks": false, - "customClass": "", - "tabindex": "", - "autocomplete": "", - "hidden": false, - "hideLabel": false, - "showWordCount": false, - "showCharCount": false, - "mask": false, - "autofocus": false, - "spellcheck": true, - "disabled": false, - "tableView": true, - "modalEdit": false, - "multiple": false, - "persistent": true, - "inputFormat": "plain", - "protected": false, - "dbIndex": false, - "case": "", - "truncateMultipleSpaces": false, - "encrypted": false, - "redrawOn": "", - "clearOnHide": true, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "allowCalculateOverride": false, - "validateOn": "change", - "validate": { - "required": true, - "pattern": "", - "customMessage": "", - "custom": "", - "customPrivate": false, - "json": "", - "minLength": "", - "maxLength": "", - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "unique": false, - "errorLabel": "", - "errors": "", - "key": "materialRemovedVolumeMOrL", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "textfield", - "input": true, - "refreshOn": "", - "dataGridLabel": false, - "addons": [], - "inputType": "text", - "id": "eknlfdn", - "defaultValue": "" - }, - { - "label": "Extent of Contamination (area m²)", - "labelPosition": "top", - "placeholder": "", - "description": "", - "tooltip": "", - "prefix": "", - "suffix": "", - "widget": { - "type": "input" - }, - "inputMask": "", - "displayMask": "", - "allowMultipleMasks": false, - "customClass": "", - "tabindex": "", - "autocomplete": "", - "hidden": false, - "hideLabel": false, - "showWordCount": false, - "showCharCount": false, - "mask": false, - "autofocus": false, - "spellcheck": true, - "disabled": false, - "tableView": true, - "modalEdit": false, - "multiple": false, - "persistent": true, - "inputFormat": "plain", - "protected": false, - "dbIndex": false, - "case": "", - "truncateMultipleSpaces": false, - "encrypted": false, - "redrawOn": "", - "clearOnHide": true, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "allowCalculateOverride": false, - "validateOn": "change", - "validate": { - "required": true, - "pattern": "", - "customMessage": "", - "custom": "", - "customPrivate": false, - "json": "", - "minLength": "", - "maxLength": "", - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "unique": false, - "errorLabel": "", - "errors": "", - "key": "textField", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "textfield", - "input": true, - "refreshOn": "", - "dataGridLabel": false, - "addons": [], - "inputType": "text", - "id": "e64bv9p", - "defaultValue": "" - }, - { - "label": "Extent of contamination (depth range (m))", - "labelPosition": "top", - "placeholder": "", - "description": "", - "tooltip": "", - "prefix": "", - "suffix": "", - "widget": { - "type": "input" - }, - "inputMask": "", - "displayMask": "", - "allowMultipleMasks": false, - "customClass": "", - "tabindex": "", - "autocomplete": "", - "hidden": false, - "hideLabel": false, - "showWordCount": false, - "showCharCount": false, - "mask": false, - "autofocus": false, - "spellcheck": true, - "disabled": false, - "tableView": true, - "modalEdit": false, - "multiple": false, - "persistent": true, - "inputFormat": "plain", - "protected": false, - "dbIndex": false, - "case": "", - "truncateMultipleSpaces": false, - "encrypted": false, - "redrawOn": "", - "clearOnHide": true, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "allowCalculateOverride": false, - "validateOn": "change", - "validate": { - "required": true, - "pattern": "", - "customMessage": "", - "custom": "", - "customPrivate": false, - "json": "", - "minLength": "", - "maxLength": "", - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "unique": false, - "errorLabel": "", - "errors": "", - "key": "extentOfContaminationDepthRangeM", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "textfield", - "input": true, - "refreshOn": "", - "dataGridLabel": false, - "addons": [], - "inputType": "text", - "id": "exmk0l", - "defaultValue": "" - } - ], - "id": "esvz3la0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "hidden": false, - "clearOnHide": false, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "tree": false, - "lazyLoad": false, - "theme": "default", - "breadcrumb": "default" - } - ], - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "tree": true, - "lazyLoad": false, - "disableAddingRemovingRows": false, - "id": "eo9nnrn" - } - ], - "id": "er09bl" - }, - { - "html": "

 

5.6 Remediation Issues

 

", - "label": "Content", - "customClass": "", - "refreshOnChange": false, - "hidden": false, - "modalEdit": false, - "key": "content43", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "content", - "input": false, - "tableView": false, - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "id": "ehwovt" - }, - { - "label": "Identify any issues regarding investigations or interpretations if the PSI and DSI information may not satisfy the requirements of CSR Sections 58 and 59 and applicable protocols and guidance documents. Briefly describe how these deficiencies will be addressed (examples include destroyed wells, completion of detailed delineation following building demolition or other proposed work at a later stage of remediation). ", - "labelPosition": "top", - "placeholder": "", - "description": "", - "tooltip": "", - "prefix": "", - "suffix": "", - "widget": { - "type": "input" - }, - "displayMask": "", - "editor": "", - "autoExpand": false, - "customClass": "", - "tabindex": "", - "autocomplete": "", - "hidden": false, - "hideLabel": false, - "showWordCount": false, - "showCharCount": false, - "autofocus": false, - "spellcheck": true, - "disabled": false, - "tableView": true, - "modalEdit": false, - "multiple": false, - "persistent": true, - "inputFormat": "html", - "protected": false, - "dbIndex": false, - "case": "", - "truncateMultipleSpaces": false, - "encrypted": false, - "redrawOn": "", - "clearOnHide": true, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "allowCalculateOverride": false, - "validateOn": "change", - "validate": { - "required": false, - "pattern": "", - "customMessage": "", - "custom": "", - "customPrivate": false, - "json": "", - "minLength": "", - "maxLength": "", - "minWords": "", - "maxWords": "", - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "unique": false, - "errorLabel": "", - "errors": "", - "key": "textArea", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "textarea", - "rows": 12, - "wysiwyg": false, - "input": true, - "refreshOn": "", - "dataGridLabel": false, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputMask": "", - "fixedSize": true, - "id": "e3l2fgh", - "defaultValue": "" - }, - { - "html": "

Part 6 - Summary of Soil Management

", - "label": "Content", - "customClass": "", - "refreshOnChange": false, - "hidden": false, - "modalEdit": false, - "key": "content44", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "content", - "input": false, - "tableView": false, - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "id": "e80swfv" - }, - { - "label": "Was soil relocated from the source site?", - "labelPosition": "top", - "optionsLabelPosition": "right", - "description": "", - "tooltip": "", - "customClass": "", - "tabindex": "", - "inline": false, - "hidden": false, - "hideLabel": false, - "autofocus": false, - "disabled": false, - "tableView": false, - "modalEdit": false, - "values": [ - { - "label": "Yes", - "value": "yes", - "shortcut": "" - }, - { - "label": "No", - "value": "no", - "shortcut": "" - } - ], - "dataType": "", - "persistent": true, - "protected": false, - "dbIndex": false, - "encrypted": false, - "redrawOn": "", - "clearOnHide": true, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "allowCalculateOverride": false, - "validate": { - "required": true, - "onlyAvailableItems": false, - "customMessage": "", - "custom": "", - "customPrivate": false, - "json": "", - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "errorLabel": "", - "errors": "", - "key": "wasSoilRelocatedFromTheSourceSite", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "radio", - "input": true, - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "unique": false, - "refreshOn": "", - "dataGridLabel": false, - "widget": null, - "validateOn": "change", - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "inputType": "radio", - "fieldSet": false, - "id": "em6ei1p", - "defaultValue": "" - }, - { - "title": "Panel", - "theme": "default", - "tooltip": "", - "customClass": "", - "collapsible": false, - "hidden": false, - "hideLabel": true, - "disabled": false, - "modalEdit": false, - "key": "panel4", - "tags": [], - "properties": {}, - "customConditional": "", - "conditional": { - "json": "", - "show": true, - "when": "wasSoilRelocatedFromTheSourceSite", - "eq": "yes" - }, - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "panel", - "label": "Panel", - "breadcrumb": "default", - "tabindex": "", - "input": false, - "tableView": false, - "components": [ - { - "html": "

6.1 Waste Soil Management

", - "label": "Content", - "refreshOnChange": false, - "key": "content45", - "type": "content", - "input": false, - "tableView": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "id": "eubtd7o" - }, - { - "label": "Was waste soil relocated to a site authorized under Part 2 of the Environmental Management Act or an Approval in Principle to receive waste soil?", - "optionsLabelPosition": "right", - "inline": false, - "tableView": false, - "values": [ - { - "label": "Yes", - "value": "yes", - "shortcut": "" - }, - { - "label": "No", - "value": "no", - "shortcut": "" - } - ], - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "onlyAvailableItems": false - }, - "key": "wasWasteSoilRelocatedToASiteAuthorizedUnderPart2OfTheEnvironmentalManagementActOrAnApprovalInPrincipleToReceiveWasteSoil", - "type": "radio", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "inputType": "radio", - "fieldSet": false, - "id": "eioxo4w" - }, - { - "html": "

6.2 Non-Waste Soil Relocation

", - "label": "Content", - "refreshOnChange": false, - "key": "content46", - "type": "content", - "input": false, - "tableView": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "id": "efcqmu3" - }, - { - "label": "Was non-waste soil relocated to a receiving site?", - "optionsLabelPosition": "right", - "inline": false, - "tableView": false, - "values": [ - { - "label": "Yes", - "value": "yes", - "shortcut": "" - }, - { - "label": "No", - "value": "no", - "shortcut": "" - } - ], - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "onlyAvailableItems": false - }, - "key": "wasNonWasteSoilRelocatedToAReceivingSite", - "type": "radio", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "inputType": "radio", - "fieldSet": false, - "id": "e7iq2oh" - }, - { - "label": "Was notification provided according to section 55 (1.1) of the Environmental Management Act? ", - "optionsLabelPosition": "right", - "inline": false, - "tableView": false, - "values": [ - { - "label": "Yes", - "value": "yes", - "shortcut": "" - }, - { - "label": "No", - "value": "no", - "shortcut": "" - } - ], - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "onlyAvailableItems": false - }, - "key": "wasNotificationProvidedAccordingToSection5511OfTheEnvironmentalManagementAct", - "type": "radio", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "inputType": "radio", - "fieldSet": false, - "id": "ewp4le7" - }, - { - "label": "If no, indicate which exemption applies (see CSR section 42) (Please select all that apply)", - "optionsLabelPosition": "right", - "tableView": false, - "defaultValue": { - "siteHasNotBeenUsedForASpecifiedIndustrialOrCommercialUse": false, - "forNonHighRiskSitesTheAmountOfSoilRemovedIsLessThan30CubicMetres": false, - "soilWasRelocatedToASiteWhereTheDepositIsAuthorizedByPermitApprovalOrderWasteManagementPlanAndOperationalCertificate": false, - "receivingSiteIsOutsideOfBritishColumbia": false, - "receivingSiteIsOnFederalLandOtherThanAReserveWithinTheMeaningOfTheIndianActCanada": false, - "sourceSiteHasNotBeenUsedOtherThanForALowImpactLandUseOrMiningOfMarlEarthSoilPeatSandGravelDimensionStoneRockOrAnyNaturalSubstanceThatIsUsedForAConstructionPurposeOnLandAndTheSoilWasIExtractedInAccordanceWithAPermitUnderTheMinesActAndIiTransportedDirectlyToTheReceivingSite": false, - "soilIsPreload": false, - "soilIsWinterMaintenanceSand": false - }, - "values": [ - { - "label": "Site has not been used for a specified industrial or commercial use", - "value": "siteHasNotBeenUsedForASpecifiedIndustrialOrCommercialUse", - "shortcut": "" - }, - { - "label": "For non-high risk sites, the amount of soil removed is less than 30 cubic metres", - "value": "forNonHighRiskSitesTheAmountOfSoilRemovedIsLessThan30CubicMetres", - "shortcut": "" - }, - { - "label": "Soil was relocated to a site where the deposit is authorized by permit, approval, order, waste management plan and operational certificate", - "value": "soilWasRelocatedToASiteWhereTheDepositIsAuthorizedByPermitApprovalOrderWasteManagementPlanAndOperationalCertificate", - "shortcut": "" - }, - { - "label": "Receiving site is outside of British Columbia", - "value": "receivingSiteIsOutsideOfBritishColumbia", - "shortcut": "" - }, - { - "label": "Receiving site is on federal land, other than a reserve within the meaning of the Indian Act (Canada)", - "value": "receivingSiteIsOnFederalLandOtherThanAReserveWithinTheMeaningOfTheIndianActCanada", - "shortcut": "" - }, - { - "label": "Source site has not been used other than for a low-impact land use or mining of marl, earth, soil, peat, sand, gravel, dimension stone, rock or any natural substance that is used for a construction purpose on land and the soil was: (i) extracted in accordance with a permit under the Mines Act, and (ii) transported directly to the receiving site", - "value": "sourceSiteHasNotBeenUsedOtherThanForALowImpactLandUseOrMiningOfMarlEarthSoilPeatSandGravelDimensionStoneRockOrAnyNaturalSubstanceThatIsUsedForAConstructionPurposeOnLandAndTheSoilWasIExtractedInAccordanceWithAPermitUnderTheMinesActAndIiTransportedDirectlyToTheReceivingSite", - "shortcut": "" - }, - { - "label": "Soil is preload", - "value": "soilIsPreload", - "shortcut": "" - }, - { - "label": "Soil is winter-maintenance sand", - "value": "soilIsWinterMaintenanceSand", - "shortcut": "" - } - ], - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "onlyAvailableItems": false - }, - "key": "ifNoIndicateWhichExemptionAppliesSeeCsrSection42PleaseSelectAllThatApply", - "conditional": { - "show": true, - "when": "wasNotificationProvidedAccordingToSection5511OfTheEnvironmentalManagementAct", - "eq": "no" - }, - "type": "selectboxes", - "input": true, - "inputType": "checkbox", - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "fieldSet": false, - "inline": false, - "id": "ey50ioo" - } - ], - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "clearOnHide": false, - "refreshOn": "", - "redrawOn": "", - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "tree": false, - "lazyLoad": false, - "id": "en97uhj" - }, - { - "html": "

Part 7 - Recomendation of Approved Professionals

", - "label": "Content", - "customClass": "", - "refreshOnChange": false, - "hidden": false, - "modalEdit": false, - "key": "content47", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "content", - "input": false, - "tableView": false, - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "id": "ep2pdaq" - }, - { - "label": "Recommendation under Protocol 6", - "labelPosition": "top", - "optionsLabelPosition": "right", - "description": "", - "tooltip": "", - "customClass": "", - "tabindex": "", - "inline": false, - "hidden": false, - "hideLabel": false, - "autofocus": false, - "disabled": false, - "tableView": false, - "modalEdit": false, - "values": [ - { - "label": "Yes", - "value": "yes", - "shortcut": "" - }, - { - "label": "No", - "value": "no", - "shortcut": "" - } - ], - "dataType": "", - "persistent": true, - "protected": false, - "dbIndex": false, - "encrypted": false, - "redrawOn": "", - "clearOnHide": true, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "allowCalculateOverride": false, - "validate": { - "required": false, - "onlyAvailableItems": false, - "customMessage": "", - "custom": "", - "customPrivate": false, - "json": "", - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "errorLabel": "", - "errors": "", - "key": "recommendationUnderProtocol6", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "radio", - "input": true, - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "unique": false, - "refreshOn": "", - "dataGridLabel": false, - "widget": null, - "validateOn": "change", - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "inputType": "radio", - "fieldSet": false, - "id": "e6idi1p", - "defaultValue": "" - }, - { - "label": "Direct to ministry application?", - "optionsLabelPosition": "right", - "inline": false, - "tableView": false, - "values": [ - { - "label": "Yes", - "value": "true", - "shortcut": "" - }, - { - "label": "No", - "value": "false", - "shortcut": "" - } - ], - "key": "directToMinistryApplication", - "type": "radio", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "onlyAvailableItems": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "inputType": "radio", - "fieldSet": false, - "id": "e7lksy9" - }, - { - "title": "SECTION I - Certification Document and Summary Recommendation", - "theme": "default", - "tooltip": "", - "customClass": "", - "collapsible": false, - "hidden": false, - "hideLabel": false, - "disabled": false, - "modalEdit": false, - "key": "panel9", - "tags": [], - "properties": {}, - "customConditional": "", - "conditional": { - "json": "", - "show": null, - "when": null, - "eq": "" - }, - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "panel", - "label": "Panel", - "breadcrumb": "default", - "tabindex": "", - "input": false, - "tableView": false, - "components": [ - { - "html": "

Based on the detailed technical information available for the site, as summarized in this Summary of Site Condition, I recommend that the following certification document be issued for the subject site.

", - "label": "Content", - "customClass": "", - "refreshOnChange": false, - "hidden": false, - "modalEdit": false, - "key": "content49", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "content", - "input": false, - "tableView": false, - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "id": "e1y6n5q" - }, - { - "label": "Approved Professional Name", - "labelPosition": "top", - "placeholder": "", - "description": "", - "tooltip": "", - "prefix": "", - "suffix": "", - "widget": { - "type": "input" - }, - "inputMask": "", - "displayMask": "", - "allowMultipleMasks": false, - "customClass": "", - "tabindex": "", - "autocomplete": "", - "hidden": false, - "hideLabel": false, - "showWordCount": false, - "showCharCount": false, - "mask": false, - "autofocus": false, - "spellcheck": true, - "disabled": false, - "tableView": true, - "modalEdit": false, - "multiple": false, - "persistent": true, - "inputFormat": "plain", - "protected": false, - "dbIndex": false, - "case": "", - "truncateMultipleSpaces": false, - "encrypted": false, - "redrawOn": "", - "clearOnHide": true, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "allowCalculateOverride": false, - "validateOn": "change", - "validate": { - "required": true, - "pattern": "", - "customMessage": "", - "custom": "", - "customPrivate": false, - "json": "", - "minLength": "", - "maxLength": "", - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "unique": false, - "errorLabel": "", - "errors": "", - "key": "approvedProfessionalName", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "textfield", - "input": true, - "refreshOn": "", - "dataGridLabel": false, - "addons": [], - "inputType": "text", - "id": "evgk94d", - "defaultValue": "" - }, - { - "label": "Please select those that apply", - "labelPosition": "top", - "optionsLabelPosition": "right", - "description": "", - "tooltip": "", - "customClass": "", - "tabindex": "", - "inline": false, - "hidden": false, - "hideLabel": false, - "autofocus": false, - "disabled": false, - "tableView": false, - "modalEdit": false, - "defaultValue": { - "aDeterminationUnderSection44OfEma": false, - "anAiPUnderSection531OfEma": false, - "aCoCUnderSection533OfEma": false, - "aSiteRiskReclassification": false, - "other": false - }, - "values": [ - { - "label": "A Determination under section 44 of EMA", - "value": "aDeterminationUnderSection44OfEma", - "shortcut": "" - }, - { - "label": "An AiP under section 53 (1) of EMA", - "value": "anAiPUnderSection531OfEma", - "shortcut": "" - }, - { - "label": "A CoC under section 53(3) of EMA ", - "value": "aCoCUnderSection533OfEma", - "shortcut": "" - }, - { - "label": "A Site Risk Reclassification", - "value": "aSiteRiskReclassification", - "shortcut": "" - }, - { - "label": "Other", - "value": "other", - "shortcut": "" - } - ], - "persistent": true, - "protected": false, - "dbIndex": false, - "encrypted": false, - "redrawOn": "", - "clearOnHide": true, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "allowCalculateOverride": false, - "validate": { - "required": true, - "onlyAvailableItems": false, - "customMessage": "", - "custom": "", - "customPrivate": false, - "json": "", - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "errorLabel": "", - "minSelectedCountMessage": "", - "maxSelectedCountMessage": "", - "errors": "", - "key": "recommendationCheckbox", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "selectboxes", - "input": true, - "inputType": "checkbox", - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "unique": false, - "refreshOn": "", - "dataGridLabel": false, - "widget": null, - "validateOn": "change", - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "fieldSet": false, - "id": "egkjvv6" - }, - { - "label": "Describe:", - "labelPosition": "top", - "placeholder": "", - "description": "", - "tooltip": "", - "prefix": "", - "suffix": "", - "widget": { - "type": "input" - }, - "displayMask": "", - "editor": "", - "autoExpand": false, - "customClass": "", - "tabindex": "", - "autocomplete": "", - "hidden": false, - "hideLabel": false, - "showWordCount": false, - "showCharCount": false, - "autofocus": false, - "spellcheck": true, - "disabled": false, - "tableView": true, - "modalEdit": false, - "multiple": false, - "persistent": true, - "inputFormat": "html", - "protected": false, - "dbIndex": false, - "case": "", - "truncateMultipleSpaces": false, - "encrypted": false, - "redrawOn": "", - "clearOnHide": true, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "allowCalculateOverride": false, - "validateOn": "change", - "validate": { - "required": true, - "pattern": "", - "customMessage": "", - "custom": "", - "customPrivate": false, - "json": "", - "minLength": "", - "maxLength": "", - "minWords": "", - "maxWords": "", - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "unique": false, - "errorLabel": "", - "errors": "", - "key": "describe1", - "tags": [], - "properties": {}, - "conditional": { - "show": "", - "when": "", - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "textarea", - "rows": 3, - "wysiwyg": false, - "input": true, - "refreshOn": "", - "dataGridLabel": false, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputMask": "", - "fixedSize": true, - "id": "e6u9cg", - "defaultValue": "" - }, - { - "html": "

Although I understand that the basis of such recommendations should only be formally evaluated by reference to detailed technical guidance, the primary basis of this recommendation or these recommendations is as follows:

", - "label": "Content", - "customClass": "", - "refreshOnChange": false, - "hidden": false, - "modalEdit": false, - "key": "content50", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "content", - "input": false, - "tableView": false, - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "id": "e2cnv1r" - }, - { - "html": "

 

Approved Professional Recommendation

", - "label": "Content", - "customClass": "", - "refreshOnChange": false, - "hidden": false, - "modalEdit": false, - "key": "content51", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "content", - "input": false, - "tableView": false, - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "id": "ehkcebn" - }, - { - "label": "For a recommendation for a Determination", - "optionsLabelPosition": "right", - "inline": false, - "tableView": false, - "values": [ - { - "label": "Yes", - "value": "yes", - "shortcut": "" - }, - { - "label": "No", - "value": "no", - "shortcut": "" - } - ], - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "onlyAvailableItems": false - }, - "key": "forARecommendationForADetermination", - "type": "radio", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "inputType": "radio", - "fieldSet": false, - "id": "e6m3fu" - }, - { - "label": "For a recommendation for an Approval in Principle and for a Certificate of Compliance", - "optionsLabelPosition": "right", - "inline": false, - "tableView": false, - "values": [ - { - "label": "Yes", - "value": "yes", - "shortcut": "" - }, - { - "label": "No", - "value": "no", - "shortcut": "" - } - ], - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "onlyAvailableItems": false - }, - "key": "forARecommendationForanApprovalInPrinciple", - "type": "radio", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "inputType": "radio", - "fieldSet": false, - "id": "es27vr8" - }, - { - "label": "For a recommendation for a Site Risk Reclassification", - "labelPosition": "top", - "optionsLabelPosition": "right", - "description": "", - "tooltip": "", - "customClass": "", - "tabindex": "", - "inline": false, - "hidden": false, - "hideLabel": false, - "autofocus": false, - "disabled": false, - "tableView": false, - "modalEdit": false, - "values": [ - { - "label": "Yes", - "value": "true", - "shortcut": "" - }, - { - "label": "No", - "value": "false", - "shortcut": "" - } - ], - "dataType": "", - "persistent": true, - "protected": false, - "dbIndex": false, - "encrypted": false, - "redrawOn": "", - "clearOnHide": true, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "allowCalculateOverride": false, - "validate": { - "required": true, - "onlyAvailableItems": false, - "customMessage": "", - "custom": "", - "customPrivate": false, - "json": "", - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "errorLabel": "", - "errors": "", - "key": "siteRiskReclassification", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "radio", - "input": true, - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "unique": false, - "refreshOn": "", - "dataGridLabel": false, - "widget": null, - "validateOn": "change", - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "inputType": "radio", - "fieldSet": false, - "id": "el2mw07", - "defaultValue": "" - }, - { - "title": "Panel", - "theme": "default", - "tooltip": "", - "customClass": "", - "collapsible": false, - "hidden": false, - "hideLabel": true, - "disabled": false, - "modalEdit": false, - "key": "panel5", - "tags": [], - "properties": {}, - "customConditional": "", - "conditional": { - "json": "", - "show": true, - "when": "forARecommendationForADetermination", - "eq": "yes" - }, - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "panel", - "label": "Panel", - "breadcrumb": "default", - "tabindex": "", - "input": false, - "tableView": false, - "components": [ - { - "html": "

For a Recommendation for a Determination

", - "label": "Content", - "refreshOnChange": false, - "key": "content52", - "type": "content", - "input": false, - "tableView": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "id": "ep5zkki" - }, - { - "label": "Please select those that apply:", - "optionsLabelPosition": "right", - "inline": false, - "tableView": false, - "values": [ - { - "label": "On the basis of information provided and reviewed, it is my opinion that no CSR Schedule 2 activities have occurred at the subject site.", - "value": "onTheBasisOfInformationProvidedAndReviewedItIsMyOpinionThatNoCsrSchedule2ActivitiesHaveOccurredAtTheSubjectSite", - "shortcut": "" - }, - { - "label": "CSR Schedule 2 activities are known or suspected to have occurred at the subject site, therefore in my opinion contaminants may have been released onto the subject site so that the site would be classified as a contaminated site in accordance with the CSR.", - "value": "csrSchedule2ActivitiesAreKnownOrSuspectedToHaveOccurredAtTheSubjectSiteThereforeInMyOpinionContaminantsMayHaveBeenReleasedOntoTheSubjectSiteSoThatTheSiteWouldBeClassifiedAsAContaminatedSiteInAccordanceWithTheCsr", - "shortcut": "" - }, - { - "label": "CSR Schedule 2 activities are known or suspected to have occurred at the subject site, but it is my opinion that the specific nature of such activities would not result in contamination so that the site would be classified as a contaminated site in accordance with the CSR", - "value": "csrSchedule2ActivitiesAreKnownOrSuspectedToHaveOccurredAtTheSubjectSiteButItIsMyOpinionThatTheSpecificNatureOfSuchActivitiesWouldNotResultInContaminationSoThatTheSiteWouldBeClassifiedAsAContaminatedSiteInAccordanceWithTheCsr", - "shortcut": "" - } - ], - "key": "pleaseSelectThoseThatApply1", - "type": "radio", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "onlyAvailableItems": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "inputType": "radio", - "fieldSet": false, - "id": "eax6pvb" - }, - { - "label": "Preliminary Site Investigation addressing all identified areas of potential environmental concern (APECs) and potential contaminants of concern (PCOCs) was completed. No substances were identified in concentrations exceeding those identified in BC CSR Schedules 3.1, 3.2, 3.3 or 3.4, as applicable. All PCOCs have been listed in Schedule B of the draft Determination.", - "tableView": false, - "key": "preliminarySiteInvestigationAddressingAllIdentifiedAreasOfPotentialEnvironmentalConcernApeCsAndPotentialContaminantsOfConcernPcoCsWasCompletedNoSubstancesWereIdentifiedInConcentrationsExceedingThoseIdentifiedInBcCsrSchedules313233Or34AsApplicableAllPcoCsHaveBeenListedInScheduleBOfTheDraftDetermination", - "type": "checkbox", - "input": true, - "defaultValue": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": true, - "labelPosition": "right", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "inputType": "checkbox", - "value": "", - "name": "", - "id": "emb80v" - } - ], - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "clearOnHide": false, - "refreshOn": "", - "redrawOn": "", - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "tree": false, - "lazyLoad": false, - "id": "emq5me" - }, - { - "title": "Panel", - "theme": "default", - "tooltip": "", - "customClass": "", - "collapsible": false, - "hidden": false, - "hideLabel": true, - "disabled": false, - "modalEdit": false, - "key": "panel6", - "tags": [], - "properties": {}, - "customConditional": "", - "conditional": { - "json": "", - "show": true, - "when": "forARecommendationForanApprovalInPrinciple", - "eq": "yes" - }, - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "panel", - "label": "Panel", - "breadcrumb": "default", - "tabindex": "", - "input": false, - "tableView": false, - "components": [ - { - "html": "

For a recommendation for an Approval in Principle and for a Certificate of Compliance

", - "label": "Content", - "refreshOnChange": false, - "key": "content53", - "type": "content", - "input": false, - "tableView": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "id": "eht7ie" - }, - { - "label": "A Preliminary Site Investigation addressing all identified areas of potential environmental concern (APECs) and potential contaminants of concern (PCOCs) was completed. One or more substances were identified at concentrations exceeding applicable standards or criteria in CSR Schedules 3.1, 3.2, 3.3 or 3.4", - "tableView": false, - "key": "aPreliminarySiteInvestigationAddressingAllIdentifiedAreasOfPotentialEnvironmentalConcernApeCsAndPotentialContaminantsOfConcernPcoCsWasCompletedOneOrMoreSubstancesWereIdentifiedAtConcentrationsExceedingApplicableStandardsOrCriteriaInCsrSchedules313233Or34", - "type": "checkbox", - "input": true, - "defaultValue": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": true, - "labelPosition": "right", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "inputType": "checkbox", - "value": "", - "name": "", - "id": "e83hcb" - }, - { - "label": "A Detailed Site Investigation addressing the locations and extent of all identified areas of environmental concern (AECs) and contaminants of concern (COCs) was completed ", - "tableView": false, - "defaultValue": false, - "key": "aDetailedSiteInvestigationAddressingTheLocationsAndExtentOfAllIdentifiedAreasOfEnvironmentalConcernAeCsAndContaminantsOfConcernCoCsWasCompletedAnd", - "type": "checkbox", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": true, - "labelPosition": "right", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "inputType": "checkbox", - "value": "", - "name": "", - "id": "eife04m" - }, - { - "label": "And:", - "optionsLabelPosition": "right", - "tableView": false, - "values": [ - { - "label": "Forms the basis of a remediation plan or risk assessment", - "value": "formsTheBasisOfARemediationPlanOrRiskAssessment", - "shortcut": "" - }, - { - "label": "Was the basis for remediation of the site", - "value": "wasTheBasisForRemediationOfTheSite", - "shortcut": "" - }, - { - "label": "The site is classified as non-high risk under Protocol 12", - "value": "theSiteIsClassifiedAsNonHighRiskUnderProtocol12", - "shortcut": "" - } - ], - "key": "and", - "conditional": { - "show": true, - "when": "aDetailedSiteInvestigationAddressingTheLocationsAndExtentOfAllIdentifiedAreasOfEnvironmentalConcernAeCsAndContaminantsOfConcernCoCsWasCompletedAnd", - "eq": "true" - }, - "type": "selectboxes", - "input": true, - "inputType": "checkbox", - "defaultValue": { - "formsTheBasisOfARemediationPlanOrRiskAssessment": false, - "wasTheBasisForRemediationOfTheSite": false, - "theSiteIsClassifiedAsNonHighRiskUnderProtocol12": false - }, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "onlyAvailableItems": false - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "fieldSet": false, - "inline": false, - "id": "ecf28xg" - }, - { - "label": "When this Summary of Site Condition was prepared", - "optionsLabelPosition": "right", - "inline": false, - "tableView": false, - "values": [ - { - "label": "Remediation plan had been prepared that provides for remediating all identified locations and respective extent of all contaminants to either CSR numerical or risk-based standards.", - "value": "remediationPlanHadBeenPreparedThatProvidesForRemediatingAllIdentifiedLocationsAndRespectiveExtentOfAllContaminantsToEitherCsrNumericalOrRiskBasedStandards", - "shortcut": "" - }, - { - "label": "All contaminants and their respective locations and extent as identified in investigation and risk assessment reports had been remediated to CSR numerical concentration or risk-based standards.", - "value": "allContaminantsAndTheirRespectiveLocationsAndExtentAsIdentifiedInInvestigationAndRiskAssessmentReportsHadBeenRemediatedToCsrNumericalConcentrationOrRiskBasedStandards", - "shortcut": "" - } - ], - "key": "whenThisSummaryOfSiteConditionWasPrepared", - "type": "radio", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "onlyAvailableItems": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "inputType": "radio", - "fieldSet": false, - "id": "e4himt9" - } - ], - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "clearOnHide": false, - "refreshOn": "", - "redrawOn": "", - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "tree": false, - "lazyLoad": false, - "id": "ecumlo6" - }, - { - "title": "Panel", - "theme": "default", - "tooltip": "", - "customClass": "", - "collapsible": false, - "hidden": false, - "hideLabel": true, - "disabled": false, - "modalEdit": false, - "key": "panel7", - "tags": [], - "properties": {}, - "customConditional": "", - "conditional": { - "json": "", - "show": true, - "when": "siteRiskReclassification", - "eq": "true" - }, - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "panel", - "label": "Panel", - "breadcrumb": "default", - "tabindex": "", - "input": false, - "tableView": false, - "components": [ - { - "html": "

For a recommendation for a Site Risk Reclassification

", - "label": "Content", - "refreshOnChange": false, - "key": "content54", - "type": "content", - "input": false, - "tableView": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "id": "ekdiwsi" - }, - { - "label": "Please select", - "optionsLabelPosition": "right", - "inline": false, - "tableView": false, - "values": [ - { - "label": "The site is classified as risk-managed high risk under Protocol 12.", - "value": "theSiteIsClassifiedAsRiskManagedHighRiskUnderProtocol12", - "shortcut": "" - }, - { - "label": "The site is classified as non-high risk under Protocol 12.", - "value": "theSiteIsClassifiedAsNonHighRiskUnderProtocol12", - "shortcut": "" - } - ], - "key": "pleaseSelect", - "type": "radio", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "onlyAvailableItems": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "inputType": "radio", - "fieldSet": false, - "id": "eiohx6i" - } - ], - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "clearOnHide": false, - "refreshOn": "", - "redrawOn": "", - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "tree": false, - "lazyLoad": false, - "id": "e3y0rp9" - } - ], - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "clearOnHide": false, - "refreshOn": "", - "redrawOn": "", - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "tree": false, - "lazyLoad": false, - "id": "exfhnl" - }, - { - "title": "SECTION II - Substances Remediated or Standards or Criteria Applied", - "theme": "default", - "tooltip": "", - "customClass": "", - "collapsible": false, - "hidden": false, - "hideLabel": false, - "disabled": false, - "modalEdit": false, - "key": "sectionIiSubstancesRemediatedOrStandardsOrCriteriaApplied", - "tags": [], - "properties": {}, - "customConditional": "", - "conditional": { - "json": "", - "show": null, - "when": null, - "eq": "" - }, - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "panel", - "label": "Panel", - "breadcrumb": "default", - "tabindex": "", - "input": false, - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "clearOnHide": false, - "refreshOn": "", - "redrawOn": "", - "tableView": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "tree": false, - "lazyLoad": false, - "components": [ - { - "html": "

7.2 Substances remediated and standards or criteria applied

 

Contaminants have been remediated to comply with standards or criteria listed in the following table: (If the site required remediation and has been remediated.) 

", - "label": "Content", - "customClass": "", - "refreshOnChange": false, - "hidden": false, - "modalEdit": false, - "key": "content55", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "content", - "input": false, - "tableView": false, - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "id": "egplxle" - }, - { - "label": "Substances Remediated", - "labelPosition": "top", - "optionsLabelPosition": "right", - "description": "", - "tooltip": "", - "customClass": "", - "tabindex": "", - "inline": false, - "hidden": false, - "hideLabel": false, - "autofocus": false, - "disabled": false, - "tableView": false, - "modalEdit": false, - "values": [ - { - "label": "N/A", - "value": "nA", - "shortcut": "" - }, - { - "label": "Soil", - "value": "soil", - "shortcut": "" - }, - { - "label": "Water", - "value": "water", - "shortcut": "" - }, - { - "label": "Vapour", - "value": "vapour", - "shortcut": "" - }, - { - "label": "Sediment", - "value": "sediment", - "shortcut": "" - }, - { - "label": "Other", - "value": "other", - "shortcut": "" - } - ], - "persistent": true, - "protected": false, - "dbIndex": false, - "encrypted": false, - "redrawOn": "", - "clearOnHide": true, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "allowCalculateOverride": false, - "validate": { - "required": false, - "onlyAvailableItems": false, - "customMessage": "", - "custom": "", - "customPrivate": false, - "json": "", - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "errorLabel": "", - "minSelectedCountMessage": "", - "maxSelectedCountMessage": "", - "errors": "", - "key": "substancesRemediated", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "selectboxes", - "input": true, - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "unique": false, - "refreshOn": "", - "dataGridLabel": false, - "widget": null, - "validateOn": "change", - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "inputType": "checkbox", - "fieldSet": false, - "id": "ec3tb", - "defaultValue": {} - }, - { - "html": "

Use specific compound names as listed in the Contaminated Sites Regulation Schedules. Please list compounds in columns to aid review.

", - "label": "Content", - "customClass": "", - "refreshOnChange": false, - "hidden": false, - "modalEdit": false, - "key": "content56", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "content", - "input": false, - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "tableView": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "id": "ep1zcdl" - }, - { - "label": "Soil", - "labelPosition": "top", - "description": "", - "tooltip": "", - "disableAddingRemovingRows": false, - "conditionalAddButton": "", - "reorder": false, - "addAnother": "", - "addAnotherPosition": "bottom", - "layoutFixed": false, - "enableRowGroups": false, - "initEmpty": false, - "customClass": "", - "tabindex": "", - "hidden": false, - "hideLabel": false, - "autofocus": false, - "disabled": false, - "tableView": false, - "modalEdit": false, - "defaultValue": [ - { - "numericalStandards": "", - "riskBasedStandards": "", - "p2SiteSpecificNumericalStandards": "", - "p4BackgroundConcentrations": "", - "whatLandUseHasTheSubstanceBeenRemediatedToInSoilPleaseSelectAllThatApply": { - "il": false, - "cl": false, - "rlhd": false, - "rlld": false, - "pl": false, - "al": false, - "wln": false, - "wlr": false - } - } - ], - "persistent": true, - "protected": false, - "dbIndex": false, - "encrypted": false, - "redrawOn": "", - "clearOnHide": true, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "allowCalculateOverride": false, - "validateOn": "change", - "validate": { - "required": false, - "minLength": "", - "maxLength": "", - "customMessage": "", - "custom": "", - "customPrivate": false, - "json": "", - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "errorLabel": "", - "errors": "", - "key": "soil", - "tags": [], - "properties": {}, - "conditional": { - "show": true, - "when": "substancesRemediated", - "eq": "soil", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "datagrid", - "input": true, - "components": [ - { - "title": "Soil", - "collapsible": false, - "hideLabel": true, - "key": "soil1", - "type": "panel", - "label": "Panel", - "input": false, - "tableView": false, - "components": [ - { - "label": "Numerical Standards", - "tableView": true, - "key": "numericalStandards", - "type": "textfield", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "emlo7p" - }, - { - "label": "Risk-based standards", - "tableView": true, - "key": "riskBasedStandards", - "type": "textfield", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "en9kpdt" - }, - { - "label": "P2 site specific numerical standards", - "tableView": true, - "key": "p2SiteSpecificNumericalStandards", - "type": "textfield", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "emstd8s" - }, - { - "label": "P4 Background concentrations", - "tableView": true, - "key": "p4BackgroundConcentrations", - "type": "textfield", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "ez67mug" - }, - { - "label": "What land use has the substance been remediated to in soil? (Please select all that apply)", - "optionsLabelPosition": "right", - "tableView": false, - "values": [ - { - "label": "IL", - "value": "il", - "shortcut": "" - }, - { - "label": "CL", - "value": "cl", - "shortcut": "" - }, - { - "label": "RLHD", - "value": "rlhd", - "shortcut": "" - }, - { - "label": "RLLD", - "value": "rlld", - "shortcut": "" - }, - { - "label": "PL", - "value": "pl", - "shortcut": "" - }, - { - "label": "AL", - "value": "al", - "shortcut": "" - }, - { - "label": "WLN", - "value": "wln", - "shortcut": "" - }, - { - "label": "WLR", - "value": "wlr", - "shortcut": "" - } - ], - "key": "whatLandUseHasTheSubstanceBeenRemediatedToInSoilPleaseSelectAllThatApply", - "type": "selectboxes", - "input": true, - "inputType": "checkbox", - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "onlyAvailableItems": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "fieldSet": false, - "inline": false, - "id": "estazfs" - } - ], - "id": "ef5nwt0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "hidden": false, - "clearOnHide": false, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "tree": false, - "lazyLoad": false, - "theme": "default", - "breadcrumb": "default" - } - ], - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "unique": false, - "refreshOn": "", - "dataGridLabel": false, - "widget": null, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "tree": true, - "lazyLoad": false, - "id": "edy1cum" - }, - { - "label": "Water", - "labelPosition": "top", - "description": "", - "tooltip": "", - "disableAddingRemovingRows": false, - "conditionalAddButton": "", - "reorder": false, - "addAnother": "", - "addAnotherPosition": "bottom", - "layoutFixed": false, - "enableRowGroups": false, - "initEmpty": false, - "customClass": "", - "tabindex": "", - "hidden": false, - "hideLabel": false, - "autofocus": false, - "disabled": false, - "tableView": false, - "modalEdit": false, - "defaultValue": [ - { - "numericalStandards": "", - "riskBasedStandards": "", - "p9BackgroundConcentration": "", - "whatWaterUseHasTheSubstanceBeenRemediatedToPleaseSelectAllThatApply": { - "aquaticLifeAwFresh": false, - "aquaticLifeAwMarine": false, - "irrigationIw": false, - "livestockLw": false, - "drinkingWaterDw": false, - "noWaterUse": false - } - } - ], - "persistent": true, - "protected": false, - "dbIndex": false, - "encrypted": false, - "redrawOn": "", - "clearOnHide": true, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "allowCalculateOverride": false, - "validateOn": "change", - "validate": { - "required": false, - "minLength": "", - "maxLength": "", - "customMessage": "", - "custom": "", - "customPrivate": false, - "json": "", - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "errorLabel": "", - "errors": "", - "key": "water", - "tags": [], - "properties": {}, - "conditional": { - "show": true, - "when": "substancesRemediated", - "eq": "water", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "datagrid", - "input": true, - "components": [ - { - "collapsible": false, - "hideLabel": true, - "key": "panel", - "type": "panel", - "label": "Panel", - "input": false, - "tableView": false, - "components": [ - { - "label": "Numerical Standards", - "tableView": true, - "key": "numericalStandards", - "type": "textfield", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "ehpkhqe" - }, - { - "label": "Risk-based standards", - "tableView": true, - "key": "riskBasedStandards", - "type": "textfield", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "ebrjb1o" - }, - { - "label": "P9 Background concentration", - "tableView": true, - "key": "p9BackgroundConcentration", - "type": "textfield", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "ee4f77p" - }, - { - "label": "What water use has the substance been remediated to? (Please select all that apply)", - "optionsLabelPosition": "right", - "tableView": false, - "values": [ - { - "label": "Aquatic Life (AW) Fresh", - "value": "aquaticLifeAwFresh", - "shortcut": "" - }, - { - "label": "Aquatic Life (AW) Marine", - "value": "aquaticLifeAwMarine", - "shortcut": "" - }, - { - "label": "Irrigation (IW)", - "value": "irrigationIw", - "shortcut": "" - }, - { - "label": "Livestock (LW)", - "value": "livestockLw", - "shortcut": "" - }, - { - "label": "Drinking Water (DW)", - "value": "drinkingWaterDw", - "shortcut": "" - }, - { - "label": "No Water Use", - "value": "noWaterUse", - "shortcut": "" - } - ], - "key": "whatWaterUseHasTheSubstanceBeenRemediatedToPleaseSelectAllThatApply", - "type": "selectboxes", - "input": true, - "inputType": "checkbox", - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "onlyAvailableItems": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "fieldSet": false, - "inline": false, - "id": "eq5jxk" - } - ], - "id": "eoq12ev000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "hidden": false, - "clearOnHide": false, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "tree": false, - "lazyLoad": false, - "title": "Panel", - "theme": "default", - "breadcrumb": "default" - } - ], - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "unique": false, - "refreshOn": "", - "dataGridLabel": false, - "widget": null, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "tree": true, - "lazyLoad": false, - "id": "e7or7bq" - }, - { - "label": "Vapour", - "labelPosition": "top", - "description": "", - "tooltip": "", - "disableAddingRemovingRows": false, - "conditionalAddButton": "", - "reorder": false, - "addAnother": "", - "addAnotherPosition": "bottom", - "layoutFixed": false, - "enableRowGroups": false, - "initEmpty": false, - "customClass": "", - "tabindex": "", - "hidden": false, - "hideLabel": false, - "autofocus": false, - "disabled": false, - "tableView": false, - "modalEdit": false, - "defaultValue": [ - { - "numericalStandards": "", - "riskBasedStandards": "" - } - ], - "persistent": true, - "protected": false, - "dbIndex": false, - "encrypted": false, - "redrawOn": "", - "clearOnHide": true, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "allowCalculateOverride": false, - "validateOn": "change", - "validate": { - "required": false, - "minLength": "", - "maxLength": "", - "customMessage": "", - "custom": "", - "customPrivate": false, - "json": "", - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "errorLabel": "", - "errors": "", - "key": "vapour", - "tags": [], - "properties": {}, - "conditional": { - "show": true, - "when": "substancesRemediated", - "eq": "vapour", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "datagrid", - "input": true, - "components": [ - { - "collapsible": false, - "hideLabel": true, - "key": "panel", - "type": "panel", - "label": "Panel", - "input": false, - "tableView": false, - "components": [ - { - "label": "Numerical Standards", - "tableView": true, - "key": "numericalStandards", - "type": "textfield", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "ecjqd2" - }, - { - "label": "Risk-based standards", - "tableView": true, - "key": "riskBasedStandards", - "type": "textfield", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "enjn8bkh" - } - ], - "id": "ett43n0j00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "hidden": false, - "clearOnHide": false, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "tree": false, - "lazyLoad": false, - "title": "Panel", - "theme": "default", - "breadcrumb": "default" - } - ], - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "unique": false, - "refreshOn": "", - "dataGridLabel": false, - "widget": null, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "tree": true, - "lazyLoad": false, - "id": "eghuf8" - }, - { - "label": "Sediment", - "labelPosition": "top", - "description": "", - "tooltip": "", - "disableAddingRemovingRows": false, - "conditionalAddButton": "", - "reorder": false, - "addAnother": "", - "addAnotherPosition": "bottom", - "layoutFixed": false, - "enableRowGroups": false, - "initEmpty": false, - "customClass": "", - "tabindex": "", - "hidden": false, - "hideLabel": false, - "autofocus": false, - "disabled": false, - "tableView": false, - "modalEdit": false, - "defaultValue": [ - { - "numericalStandards": "", - "riskBasedStandards": "" - } - ], - "persistent": true, - "protected": false, - "dbIndex": false, - "encrypted": false, - "redrawOn": "", - "clearOnHide": true, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "allowCalculateOverride": false, - "validateOn": "change", - "validate": { - "required": false, - "minLength": "", - "maxLength": "", - "customMessage": "", - "custom": "", - "customPrivate": false, - "json": "", - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "errorLabel": "", - "errors": "", - "key": "sediment", - "tags": [], - "properties": {}, - "conditional": { - "show": true, - "when": "substancesRemediated", - "eq": "sediment", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "datagrid", - "input": true, - "components": [ - { - "collapsible": false, - "hideLabel": true, - "key": "panel8", - "type": "panel", - "label": "Panel", - "input": false, - "tableView": false, - "components": [ - { - "label": "Numerical Standards", - "tableView": true, - "key": "numericalStandards", - "type": "textfield", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "esi48dn" - }, - { - "label": "Risk-based standards", - "tableView": true, - "key": "riskBasedStandards", - "type": "textfield", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "ee9w9ok" - } - ], - "id": "euuaaa0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "hidden": false, - "clearOnHide": false, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "tree": false, - "lazyLoad": false, - "title": "Panel", - "theme": "default", - "breadcrumb": "default" - } - ], - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "unique": false, - "refreshOn": "", - "dataGridLabel": false, - "widget": null, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "tree": true, - "lazyLoad": false, - "id": "ecd1ylh" - }, - { - "label": "Other", - "labelPosition": "top", - "description": "", - "tooltip": "", - "disableAddingRemovingRows": false, - "conditionalAddButton": "", - "reorder": false, - "addAnother": "", - "addAnotherPosition": "bottom", - "layoutFixed": false, - "enableRowGroups": false, - "initEmpty": false, - "customClass": "", - "tabindex": "", - "hidden": false, - "hideLabel": false, - "autofocus": false, - "disabled": false, - "tableView": false, - "modalEdit": false, - "defaultValue": [ - { - "numericalStandards": "", - "riskBasedStandards": "" - } - ], - "persistent": true, - "protected": false, - "dbIndex": false, - "encrypted": false, - "redrawOn": "", - "clearOnHide": true, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "allowCalculateOverride": false, - "validateOn": "change", - "validate": { - "required": false, - "minLength": "", - "maxLength": "", - "customMessage": "", - "custom": "", - "customPrivate": false, - "json": "", - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "errorLabel": "", - "errors": "", - "key": "other", - "tags": [], - "properties": {}, - "conditional": { - "show": true, - "when": "substancesRemediated", - "eq": "other", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "datagrid", - "input": true, - "components": [ - { - "collapsible": false, - "hideLabel": true, - "key": "panel8", - "type": "panel", - "label": "Panel", - "input": false, - "tableView": false, - "components": [ - { - "label": "Numerical Standards", - "tableView": true, - "key": "numericalStandards", - "type": "textfield", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "e5cfjgb" - }, - { - "label": "Risk-based standards", - "tableView": true, - "key": "riskBasedStandards", - "type": "textfield", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "e6efm7o" - } - ], - "id": "edr4h05000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "hidden": false, - "clearOnHide": false, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "tree": false, - "lazyLoad": false, - "title": "Panel", - "theme": "default", - "breadcrumb": "default" - } - ], - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "unique": false, - "refreshOn": "", - "dataGridLabel": false, - "widget": null, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "tree": true, - "lazyLoad": false, - "id": "efz782r" - }, - { - "title": "", - "theme": "default", - "tooltip": "", - "customClass": "", - "collapsible": false, - "hidden": false, - "hideLabel": false, - "disabled": false, - "modalEdit": false, - "key": "panel11", - "tags": [], - "properties": {}, - "customConditional": "", - "conditional": { - "json": "", - "show": null, - "when": null, - "eq": "" - }, - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "panel", - "label": "Panel", - "breadcrumb": "default", - "tabindex": "", - "input": false, - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "clearOnHide": false, - "refreshOn": "", - "redrawOn": "", - "tableView": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "tree": false, - "lazyLoad": false, - "components": [ - { - "html": "

The Director may accept the recommendations of an Approved Professional(s) involved in the review and submission of investigation, risk assessment or remediation reports based in part on the understanding that

", - "label": "Content", - "customClass": "", - "refreshOnChange": false, - "hidden": false, - "modalEdit": false, - "key": "content57", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "content", - "input": false, - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "tableView": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "id": "e8rd8qj" - }, - { - "label": "As of the date of signing of this report the approved professional, or approved professionals if more than one, is/are member(s) in good standing of the Roster of Approved Professionals, as maintained by the ministry, and member(s) of the Contaminated Sites Approved Professionals Society (CSAP Society)", - "description": "", - "tooltip": "", - "shortcut": "", - "inputType": "checkbox", - "customClass": "", - "tabindex": "", - "hidden": false, - "hideLabel": false, - "autofocus": false, - "disabled": false, - "tableView": false, - "modalEdit": false, - "persistent": true, - "protected": false, - "dbIndex": false, - "encrypted": false, - "redrawOn": "", - "clearOnHide": true, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "allowCalculateOverride": false, - "validate": { - "required": true, - "customMessage": "", - "custom": "", - "customPrivate": false, - "json": "", - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "errorLabel": "", - "errors": "", - "key": "asOfTheDateOfSigningOfThisReportTheApprovedProfessionalOrApprovedProfessionalsIfMoreThanOneIsAreMemberSInGoodStandingOfTheRosterOfApprovedProfessionalsAsMaintainedByTheMinistryAndMemberSOfTheContaminatedSitesApprovedProfessionalsSocietyCsapSociety", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "checkbox", - "name": "", - "value": "", - "input": true, - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "unique": false, - "refreshOn": "", - "dataGridLabel": true, - "labelPosition": "right", - "widget": null, - "validateOn": "change", - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "id": "espd59k", - "defaultValue": false - }, - { - "label": "The approved professionals signing this Summary of Site Condition have reviewed Table 1, Protocol 6 for Contaminated Sites (Eligibility of Applications for Review by Approved Professionals) and confirm that the Application for Contaminated Sites Services may be processed in the manner for non-high risk sites under the Roster of Approved Professionals process", - "description": "", - "tooltip": "", - "shortcut": "", - "inputType": "checkbox", - "customClass": "", - "tabindex": "", - "hidden": false, - "hideLabel": false, - "autofocus": false, - "disabled": false, - "tableView": false, - "modalEdit": false, - "persistent": true, - "protected": false, - "dbIndex": false, - "encrypted": false, - "redrawOn": "", - "clearOnHide": true, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "allowCalculateOverride": false, - "validate": { - "required": true, - "customMessage": "", - "custom": "", - "customPrivate": false, - "json": "", - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "errorLabel": "", - "errors": "", - "key": "theApprovedProfessionalsSigningThisSummaryOfSiteConditionHaveReviewedTable1Protocol6ForContaminatedSitesEligibilityOfApplicationsForReviewByApprovedProfessionalsAndConfirmThatTheApplicationForContaminatedSitesServicesMayBeProcessedInTheMannerForNonHighRiskSitesUnderTheRosterOfApprovedProfessionalsProcess", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "checkbox", - "name": "", - "value": "", - "input": true, - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "unique": false, - "refreshOn": "", - "dataGridLabel": true, - "labelPosition": "right", - "widget": null, - "validateOn": "change", - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "id": "eso2ic", - "defaultValue": false - }, - { - "label": "The reviewer has no obligation to undertake any inquiry into the validity, accuracy or precision of what is reported in the documents reviewed, beyond that which there is reasonable cause to believe that there could be errors or oversights in those reports", - "description": "", - "tooltip": "", - "shortcut": "", - "inputType": "checkbox", - "customClass": "", - "tabindex": "", - "hidden": false, - "hideLabel": false, - "autofocus": false, - "disabled": false, - "tableView": false, - "modalEdit": false, - "persistent": true, - "protected": false, - "dbIndex": false, - "encrypted": false, - "redrawOn": "", - "clearOnHide": true, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "allowCalculateOverride": false, - "validate": { - "required": true, - "customMessage": "", - "custom": "", - "customPrivate": false, - "json": "", - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "errorLabel": "", - "errors": "", - "key": "theReviewerHasNoObligationToUndertakeAnyInquiryIntoTheValidityAccuracyOrPrecisionOfWhatIsReportedInTheDocumentsReviewedBeyondThatWhichThereIsReasonableCauseToBelieveThatThereCouldBeErrorsOrOversightsInThoseReports", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "checkbox", - "name": "", - "value": "", - "input": true, - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "unique": false, - "refreshOn": "", - "dataGridLabel": true, - "labelPosition": "right", - "widget": null, - "validateOn": "change", - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "id": "ei6b2fp", - "defaultValue": false - }, - { - "label": "(as appropriate) The source site has been satisfactorily investigated for all areas of (potential) environmental concern and (potential) contaminants of concern to determine the lateral and vertical extents of contamination with due regard to EMA, the CSR, and the HWR;", - "description": "", - "tooltip": "", - "shortcut": "", - "inputType": "checkbox", - "customClass": "", - "tabindex": "", - "hidden": false, - "hideLabel": false, - "autofocus": false, - "disabled": false, - "tableView": false, - "modalEdit": false, - "persistent": true, - "protected": false, - "dbIndex": false, - "encrypted": false, - "redrawOn": "", - "clearOnHide": true, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "allowCalculateOverride": false, - "validate": { - "required": false, - "customMessage": "", - "custom": "", - "customPrivate": false, - "json": "", - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "errorLabel": "", - "errors": "", - "key": "asAppropriateTheSourceSiteHasBeenSatisfactorilyInvestigatedForAllAreasOfPotentialEnvironmentalConcernAndPotentialContaminantsOfConcernToDetermineTheLateralAndVerticalExtentsOfContaminationWithDueRegardToEmaTheCsrAndTheHwr", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "checkbox", - "name": "", - "value": "", - "input": true, - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "unique": false, - "refreshOn": "", - "dataGridLabel": true, - "labelPosition": "right", - "widget": null, - "validateOn": "change", - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "id": "e2whe88", - "defaultValue": false - }, - { - "label": "(as appropriate) The submitted documentation meets the requirements of Sections 1, 47, 49, 58 and 59 of the CSR;", - "description": "", - "tooltip": "", - "shortcut": "", - "inputType": "checkbox", - "customClass": "", - "tabindex": "", - "hidden": false, - "hideLabel": false, - "autofocus": false, - "disabled": false, - "tableView": false, - "modalEdit": false, - "persistent": true, - "protected": false, - "dbIndex": false, - "encrypted": false, - "redrawOn": "", - "clearOnHide": true, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "allowCalculateOverride": false, - "validate": { - "required": false, - "customMessage": "", - "custom": "", - "customPrivate": false, - "json": "", - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "errorLabel": "", - "errors": "", - "key": "asAppropriateTheSubmittedDocumentationMeetsTheRequirementsOfSections1474958And59OfTheCsr", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "checkbox", - "name": "", - "value": "", - "input": true, - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "unique": false, - "refreshOn": "", - "dataGridLabel": true, - "labelPosition": "right", - "widget": null, - "validateOn": "change", - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "id": "eyeklkd", - "defaultValue": false - }, - { - "label": "(as appropriate) The Screening Level Risk Assessment meets the requirements of Protocol 13;", - "description": "", - "tooltip": "", - "shortcut": "", - "inputType": "checkbox", - "customClass": "", - "tabindex": "", - "hidden": false, - "hideLabel": false, - "autofocus": false, - "disabled": false, - "tableView": false, - "modalEdit": false, - "persistent": true, - "protected": false, - "dbIndex": false, - "encrypted": false, - "redrawOn": "", - "clearOnHide": true, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "allowCalculateOverride": false, - "validate": { - "required": false, - "customMessage": "", - "custom": "", - "customPrivate": false, - "json": "", - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "errorLabel": "", - "errors": "", - "key": "asAppropriateTheScreeningLevelRiskAssessmentMeetsTheRequirementsOfProtocol13", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "checkbox", - "name": "", - "value": "", - "input": true, - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "unique": false, - "refreshOn": "", - "dataGridLabel": true, - "labelPosition": "right", - "widget": null, - "validateOn": "change", - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "id": "ewud17", - "defaultValue": false - } - ], - "id": "e2kqn9c" - }, - { - "title": "", - "theme": "default", - "tooltip": "", - "customClass": "", - "collapsible": false, - "hidden": false, - "hideLabel": false, - "disabled": false, - "modalEdit": false, - "key": "panel12", - "tags": [], - "properties": {}, - "customConditional": "", - "conditional": { - "json": "", - "show": null, - "when": null, - "eq": "" - }, - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "panel", - "label": "Panel", - "breadcrumb": "default", - "tabindex": "", - "input": false, - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "clearOnHide": false, - "refreshOn": "", - "redrawOn": "", - "tableView": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "tree": false, - "lazyLoad": false, - "components": [ - { - "html": "

 

Additional for AIPs, Determination, CoC

", - "label": "Content", - "customClass": "", - "refreshOnChange": false, - "hidden": false, - "modalEdit": false, - "key": "content58", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "content", - "input": false, - "tableView": false, - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "id": "e3om77a" - }, - { - "label": "(for AiPs) The submitted remediation plan, if implemented in accordance with the specified conditions imposed in its draft Schedule 'B' of the AIP, will result in the source site being remediated in accordance with the applicable standards of the CSR and the HWR;", - "description": "", - "tooltip": "", - "shortcut": "", - "inputType": "checkbox", - "customClass": "", - "tabindex": "", - "hidden": false, - "hideLabel": false, - "autofocus": false, - "disabled": false, - "tableView": false, - "modalEdit": false, - "persistent": true, - "protected": false, - "dbIndex": false, - "encrypted": false, - "redrawOn": "", - "clearOnHide": true, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "allowCalculateOverride": false, - "validate": { - "required": false, - "customMessage": "", - "custom": "", - "customPrivate": false, - "json": "", - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "errorLabel": "", - "errors": "", - "key": "forAiPsTheSubmittedRemediationPlanIfImplementedInAccordanceWithTheSpecifiedConditionsImposedInItsDraftScheduleBOfTheAipWillResultInTheSourceSiteBeingRemediatedInAccordanceWithTheApplicableStandardsOfTheCsrAndTheHwr", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "checkbox", - "name": "", - "value": "", - "input": true, - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "unique": false, - "refreshOn": "", - "dataGridLabel": true, - "labelPosition": "right", - "widget": null, - "validateOn": "change", - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "id": "em40f0m", - "defaultValue": false - }, - { - "label": "(for AiPs) It is feasible to implement all provisions of the Remediation Plan and to achieve its objectives and the conditions of the AIP within 5 years of issuance of the AIP", - "description": "", - "tooltip": "", - "shortcut": "", - "inputType": "checkbox", - "customClass": "", - "tabindex": "", - "hidden": false, - "hideLabel": false, - "autofocus": false, - "disabled": false, - "tableView": false, - "modalEdit": false, - "persistent": true, - "protected": false, - "dbIndex": false, - "encrypted": false, - "redrawOn": "", - "clearOnHide": true, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "allowCalculateOverride": false, - "validate": { - "required": false, - "customMessage": "", - "custom": "", - "customPrivate": false, - "json": "", - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "errorLabel": "", - "errors": "", - "key": "forAiPsItIsFeasibleToImplementAllProvisionsOfTheRemediationPlanAndToAchieveItsObjectivesAndTheConditionsOfTheAipWithin5YearsOfIssuanceOfTheAip", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "checkbox", - "name": "", - "value": "", - "input": true, - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "unique": false, - "refreshOn": "", - "dataGridLabel": true, - "labelPosition": "right", - "widget": null, - "validateOn": "change", - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "id": "eko8qoe", - "defaultValue": false - }, - { - "label": "(for AiPs) The confirmation of remediation report meets the requirements of section 49(2) of the CSR;", - "description": "", - "tooltip": "", - "shortcut": "", - "inputType": "checkbox", - "customClass": "", - "tabindex": "", - "hidden": false, - "hideLabel": false, - "autofocus": false, - "disabled": false, - "tableView": false, - "modalEdit": false, - "persistent": true, - "protected": false, - "dbIndex": false, - "encrypted": false, - "redrawOn": "", - "clearOnHide": true, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "allowCalculateOverride": false, - "validate": { - "required": false, - "customMessage": "", - "custom": "", - "customPrivate": false, - "json": "", - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "errorLabel": "", - "errors": "", - "key": "forAiPsTheConfirmationOfRemediationReportMeetsTheRequirementsOfSection492OfTheCsr", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "checkbox", - "name": "", - "value": "", - "input": true, - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "unique": false, - "refreshOn": "", - "dataGridLabel": true, - "labelPosition": "right", - "widget": null, - "validateOn": "change", - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "id": "e1z4cw", - "defaultValue": false - }, - { - "label": "(for CoCs) The confirmation of remediation report meets the requirements of section 49 (2) of the CSR", - "description": "", - "tooltip": "", - "shortcut": "", - "inputType": "checkbox", - "customClass": "", - "tabindex": "", - "hidden": false, - "hideLabel": false, - "autofocus": false, - "disabled": false, - "tableView": false, - "modalEdit": false, - "persistent": true, - "protected": false, - "dbIndex": false, - "encrypted": false, - "redrawOn": "", - "clearOnHide": true, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "allowCalculateOverride": false, - "validate": { - "required": false, - "customMessage": "", - "custom": "", - "customPrivate": false, - "json": "", - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "errorLabel": "", - "errors": "", - "key": "forCoCsTheConfirmationOfRemediationReportMeetsTheRequirementsOfSection492OfTheCsr", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "checkbox", - "name": "", - "value": "", - "input": true, - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "unique": false, - "refreshOn": "", - "dataGridLabel": true, - "labelPosition": "right", - "widget": null, - "validateOn": "change", - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "id": "ebhel0f", - "defaultValue": false - }, - { - "label": "(for CoCs) The onsite management area(s) has/have been satisfactorily remediated in accordance with section 53 (3) of the EMA and section 49(2) of the CSR in accordance with applicable standards as identified in the draft COC;", - "description": "", - "tooltip": "", - "shortcut": "", - "inputType": "checkbox", - "customClass": "", - "tabindex": "", - "hidden": false, - "hideLabel": false, - "autofocus": false, - "disabled": false, - "tableView": false, - "modalEdit": false, - "persistent": true, - "protected": false, - "dbIndex": false, - "encrypted": false, - "redrawOn": "", - "clearOnHide": true, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "allowCalculateOverride": false, - "validate": { - "required": false, - "customMessage": "", - "custom": "", - "customPrivate": false, - "json": "", - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "errorLabel": "", - "errors": "", - "key": "forCoCsTheOnsiteManagementAreaSHasHaveBeenSatisfactorilyRemediatedInAccordanceWithSection533OfTheEmaAndSection492OfTheCsrInAccordanceWithApplicableStandardsAsIdentifiedInTheDraftCoc", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "checkbox", - "name": "", - "value": "", - "input": true, - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "unique": false, - "refreshOn": "", - "dataGridLabel": true, - "labelPosition": "right", - "widget": null, - "validateOn": "change", - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "id": "e5sr4p4", - "defaultValue": false - }, - { - "label": "For CoCs where contamination exists beyond the legal lot boundaries", - "labelPosition": "top", - "optionsLabelPosition": "right", - "description": "", - "tooltip": "", - "customClass": "", - "tabindex": "", - "inline": false, - "hidden": false, - "hideLabel": false, - "autofocus": false, - "disabled": false, - "tableView": false, - "modalEdit": false, - "values": [ - { - "label": "The off-site portion(s) of the site has/have been satisfactorily remediated in accordance with section 53 (3) of the EMA and section 49(2) of the CSR and makes up part of this application", - "value": "theOffSitePortionSOfTheSiteHasHaveBeenSatisfactorilyRemediatedInAccordanceWithSection533OfTheEmaAndSection492OfTheCsrAndMakesUpPartOfThisApplication", - "shortcut": "" - }, - { - "label": "a Remediation Plan in accordance with requirements of the the CSR, sections 1 and 47 has/have been prepared and application has been made for AIP for the off-site portions", - "value": "aRemediationPlanInAccordanceWithRequirementsOfTheTheCsrSections1And47HasHaveBeenPreparedAndApplicationHasBeenMadeForAipForTheOffSitePortions", - "shortcut": "" - } - ], - "dataType": "", - "persistent": true, - "protected": false, - "dbIndex": false, - "encrypted": false, - "redrawOn": "", - "clearOnHide": true, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "allowCalculateOverride": false, - "validate": { - "required": false, - "onlyAvailableItems": false, - "customMessage": "", - "custom": "", - "customPrivate": false, - "json": "", - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "errorLabel": "", - "errors": "", - "key": "forCoCsWhereContaminationExistsBeyondTheLegalLotBoundaries", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "radio", - "input": true, - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "unique": false, - "refreshOn": "", - "dataGridLabel": false, - "widget": null, - "validateOn": "change", - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "inputType": "radio", - "fieldSet": false, - "id": "e2vnfbod", - "defaultValue": "" - }, - { - "label": "(for CoCs where contamination exists beyond the legal lot boundaries and engineered works are required to prevent recontamination of the site) A signed and stamped design drawing has been provided by a professional engineer for works installed at site boundaries to prevent recontamination of the site. The signatory need not be the Approved Professional signing below.", - "description": "", - "tooltip": "", - "shortcut": "", - "inputType": "checkbox", - "customClass": "", - "tabindex": "", - "hidden": false, - "hideLabel": false, - "autofocus": false, - "disabled": false, - "tableView": false, - "modalEdit": false, - "persistent": true, - "protected": false, - "dbIndex": false, - "encrypted": false, - "redrawOn": "", - "clearOnHide": true, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "allowCalculateOverride": false, - "validate": { - "required": false, - "customMessage": "", - "custom": "", - "customPrivate": false, - "json": "", - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "errorLabel": "", - "errors": "", - "key": "forCoCsWhereContaminationExistsBeyondTheLegalLotBoundariesAndEngineeredWorksAreRequiredToPreventRecontaminationOfTheSiteASignedAndStampedDesignDrawingHasBeenProvidedByAProfessionalEngineerForWorksInstalledAtSiteBoundariesToPreventRecontaminationOfTheSiteTheSignatoryNeedNotBeTheApprovedProfessionalSigningBelow", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "checkbox", - "name": "", - "value": "", - "input": true, - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "unique": false, - "refreshOn": "", - "dataGridLabel": true, - "labelPosition": "right", - "widget": null, - "validateOn": "change", - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "id": "equjrfb", - "defaultValue": false - }, - { - "label": "(for Determination) In accordance with section 15 (5) of the CSR, the source site a contaminated site under section 44(1) of the Environmental Management Act;", - "description": "", - "tooltip": "", - "shortcut": "", - "inputType": "checkbox", - "customClass": "", - "tabindex": "", - "hidden": false, - "hideLabel": false, - "autofocus": false, - "disabled": false, - "tableView": false, - "modalEdit": false, - "persistent": true, - "protected": false, - "dbIndex": false, - "encrypted": false, - "redrawOn": "", - "clearOnHide": true, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "allowCalculateOverride": false, - "validate": { - "required": false, - "customMessage": "", - "custom": "", - "customPrivate": false, - "json": "", - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "errorLabel": "", - "errors": "", - "key": "forDeterminationInAccordanceWithSection155OfTheCsrTheSourceSiteAContaminatedSiteUnderSection441OfTheEnvironmentalManagementAct", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "checkbox", - "name": "", - "value": "", - "input": true, - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "unique": false, - "refreshOn": "", - "dataGridLabel": true, - "labelPosition": "right", - "widget": null, - "validateOn": "change", - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "id": "ekx5xzp", - "defaultValue": false - }, - { - "label": "(if a 'direct' final determination) In accordance with section 15 (5) of the CSR, the source site is a contaminated site under section 44 (3) of EMA", - "description": "", - "tooltip": "", - "shortcut": "", - "inputType": "checkbox", - "customClass": "", - "tabindex": "", - "hidden": false, - "hideLabel": false, - "autofocus": false, - "disabled": false, - "tableView": false, - "modalEdit": false, - "persistent": true, - "protected": false, - "dbIndex": false, - "encrypted": false, - "redrawOn": "", - "clearOnHide": true, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "allowCalculateOverride": false, - "validate": { - "required": false, - "customMessage": "", - "custom": "", - "customPrivate": false, - "json": "", - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "errorLabel": "", - "errors": "", - "key": "ifADirectFinalDeterminationInAccordanceWithSection155OfTheCsrTheSourceSiteIsAContaminatedSiteUnderSection443OfEma", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "checkbox", - "name": "", - "value": "", - "input": true, - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "unique": false, - "refreshOn": "", - "dataGridLabel": true, - "labelPosition": "right", - "widget": null, - "validateOn": "change", - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "id": "e617ge", - "defaultValue": false - } - ], - "id": "ec7vbrl" - }, - { - "html": "

The opinions, advice and recommendations expressed in this Summary of Site Condition are made in accordance with generally accepted principles and practices as recognized by members of the applicable profession or discipline practicing at the same time and in the same or similar locations. This Summary of Site Condition does not provide a legal opinion or guarantee regarding compliance with applicable laws.

", - "label": "Content", - "customClass": "", - "refreshOnChange": false, - "hidden": false, - "modalEdit": false, - "key": "content59", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "content", - "input": false, - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "tableView": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "id": "eg6vc" - }, - { - "label": "Data Grid", - "labelPosition": "top", - "description": "", - "tooltip": "", - "disableAddingRemovingRows": false, - "conditionalAddButton": "", - "reorder": false, - "addAnother": "", - "addAnotherPosition": "bottom", - "layoutFixed": false, - "enableRowGroups": false, - "initEmpty": false, - "customClass": "", - "tabindex": "", - "hidden": false, - "hideLabel": true, - "autofocus": false, - "disabled": false, - "tableView": false, - "modalEdit": false, - "defaultValue": [ - { - "signatureOfApprovedProfessional": "", - "firstName": "", - "lastName": "", - "dateSigned": "00/00/0000" - } - ], - "persistent": true, - "protected": false, - "dbIndex": false, - "encrypted": false, - "redrawOn": "", - "clearOnHide": true, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "allowCalculateOverride": false, - "validateOn": "change", - "validate": { - "required": false, - "minLength": "", - "maxLength": "", - "customMessage": "", - "custom": "", - "customPrivate": false, - "json": "", - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "errorLabel": "", - "errors": "", - "key": "dataGrid15", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "datagrid", - "input": true, - "components": [ - { - "label": "Approved Professional Signatures", - "columns": [ - { - "components": [ - { - "label": "Signature of Approved Professional", - "tableView": false, - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "key": "signatureOfApprovedProfessional", - "type": "signature", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "footer": "Sign above", - "width": "100%", - "height": "150px", - "penColor": "black", - "backgroundColor": "rgb(245,245,235)", - "minWidth": "0.5", - "maxWidth": "2.5", - "keepOverlayRatio": true, - "id": "eufhqc8" - } - ], - "width": 6, - "offset": 0, - "push": 0, - "pull": 0, - "size": "md", - "currentWidth": 6 - }, - { - "components": [ - { - "label": "First Name", - "tableView": true, - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "key": "firstName", - "type": "textfield", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "e459o2u" - }, - { - "label": "Last Name", - "labelPosition": "top", - "placeholder": "", - "description": "", - "tooltip": "", - "prefix": "", - "suffix": "", - "widget": { - "type": "input" - }, - "inputMask": "", - "displayMask": "", - "allowMultipleMasks": false, - "customClass": "", - "tabindex": "", - "autocomplete": "", - "hidden": false, - "hideLabel": false, - "showWordCount": false, - "showCharCount": false, - "mask": false, - "autofocus": false, - "spellcheck": true, - "disabled": false, - "tableView": true, - "modalEdit": false, - "multiple": false, - "persistent": true, - "inputFormat": "plain", - "protected": false, - "dbIndex": false, - "case": "", - "truncateMultipleSpaces": false, - "encrypted": false, - "redrawOn": "", - "clearOnHide": true, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "allowCalculateOverride": false, - "validateOn": "change", - "validate": { - "required": true, - "pattern": "", - "customMessage": "", - "custom": "", - "customPrivate": false, - "json": "", - "minLength": "", - "maxLength": "", - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "unique": false, - "errorLabel": "", - "errors": "", - "key": "lastName", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "textfield", - "input": true, - "refreshOn": "", - "dataGridLabel": false, - "addons": [], - "inputType": "text", - "id": "ewkt9qr", - "defaultValue": "" - }, - { - "label": "Date", - "labelPosition": "top", - "displayInTimezone": "viewer", - "useLocaleSettings": false, - "allowInput": true, - "format": "yyyy-MM-dd hh:mm a", - "placeholder": "", - "description": "", - "tooltip": "", - "customClass": "", - "tabindex": "", - "hidden": false, - "hideLabel": false, - "autofocus": false, - "disabled": false, - "tableView": false, - "modalEdit": false, - "shortcutButtons": [], - "enableDate": true, - "datePicker": { - "disable": "", - "disableFunction": "", - "disableWeekends": false, - "disableWeekdays": false, - "minDate": null, - "maxDate": null, - "showWeeks": true, - "startingDay": 0, - "initDate": "", - "minMode": "day", - "maxMode": "year", - "yearRows": 4, - "yearColumns": 5 - }, - "enableTime": true, - "timePicker": { - "showMeridian": true, - "hourStep": 1, - "minuteStep": 1, - "readonlyInput": false, - "mousewheel": true, - "arrowkeys": true - }, - "multiple": false, - "defaultValue": "", - "defaultDate": "", - "customOptions": {}, - "persistent": true, - "protected": false, - "dbIndex": false, - "encrypted": false, - "redrawOn": "", - "clearOnHide": true, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "allowCalculateOverride": false, - "validateOn": "change", - "validate": { - "required": false, - "customMessage": "", - "custom": "", - "customPrivate": false, - "json": "", - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "enableMinDateInput": false, - "enableMaxDateInput": false, - "unique": false, - "errorLabel": "", - "errors": "", - "key": "dateTime", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "datetime", - "timezone": "", - "input": true, - "widget": { - "type": "calendar", - "displayInTimezone": "viewer", - "locale": "en", - "useLocaleSettings": false, - "allowInput": true, - "mode": "single", - "enableTime": true, - "noCalendar": false, - "format": "yyyy-MM-dd hh:mm a", - "hourIncrement": 1, - "minuteIncrement": 1, - "time_24hr": false, - "minDate": null, - "disabledDates": "", - "disableWeekends": false, - "disableWeekdays": false, - "disableFunction": "", - "maxDate": null - }, - "prefix": "", - "suffix": "", - "refreshOn": "", - "dataGridLabel": false, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "datepickerMode": "day", - "id": "eucmj7" - } - ], - "width": 6, - "offset": 0, - "push": 0, - "pull": 0, - "size": "md", - "currentWidth": 6 - } - ], - "key": "approvedProfessionalSignature", - "type": "columns", - "input": false, - "tableView": false, - "id": "ev4kpmc00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "hidden": false, - "clearOnHide": false, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "tree": false, - "lazyLoad": false, - "autoAdjust": false - } - ], - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "unique": false, - "refreshOn": "", - "dataGridLabel": false, - "widget": null, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "tree": true, - "lazyLoad": false, - "id": "eizst9" - } - ], - "id": "efpt8i" - }, - { - "title": "SECTION III - Arm's Length Review", - "theme": "default", - "tooltip": "", - "customClass": "", - "collapsible": false, - "hidden": false, - "hideLabel": false, - "disabled": false, - "modalEdit": false, - "key": "sectionIiiArmsLengthReview", - "tags": [], - "properties": {}, - "customConditional": "", - "conditional": { - "json": "", - "show": null, - "when": null, - "eq": "" - }, - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "panel", - "label": "Panel", - "breadcrumb": "default", - "tabindex": "", - "input": false, - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "clearOnHide": false, - "refreshOn": "", - "redrawOn": "", - "tableView": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "tree": false, - "lazyLoad": false, - "components": [ - { - "html": "

There may have been an arm’s length review of one or more of the following recommendations to the Director of Waste Management:

 

1. Making a recommendation to a Director in support of an application for an Approval in Principle based on remediation to numerical standards or a screening level risk assessment where there is offsite migration at the site.

2. Making a recommendation to a Director in support of an application for an Approval in Principle based on a risk assessment (other than a screening level risk assessment) and remediation to risk-based standards.

3. Making a recommendation to a Director in support of an application for a Certificate of Compliance based on remediation to numerical standards or a screening level risk assessment where there is offsite migration at the site.

4. Making a recommendation to a Director in support of an application for a Certificate of Compliance based on a risk assessment (other than a screening level risk assessment) and remediation to risk-based standards.

5. Making a recommendation to a Director in support of an application for site risk classification/reclassification.

6. Making a recommendation to a Director in support of any other application based on risk assessment or risk management (other than a screening level risk assessment) not otherwise described in any other row in this list, as required under a protocol signed by a Director.

If this is the case please have the Approved Professional who carried out the arm’s length review to sign below, specifying the type of arm’s length review done for the site.

", - "label": "Content", - "customClass": "", - "refreshOnChange": false, - "hidden": false, - "modalEdit": false, - "key": "content60", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "content", - "input": false, - "tableView": false, - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "id": "elcdtyx" - }, - { - "label": "Data Grid", - "labelPosition": "top", - "description": "", - "tooltip": "", - "disableAddingRemovingRows": false, - "conditionalAddButton": "", - "reorder": false, - "addAnother": "", - "addAnotherPosition": "bottom", - "layoutFixed": false, - "enableRowGroups": false, - "initEmpty": false, - "customClass": "", - "tabindex": "", - "hidden": false, - "hideLabel": true, - "autofocus": false, - "disabled": false, - "tableView": false, - "modalEdit": false, - "defaultValue": [ - { - "typeOfArmsLengthReview": "", - "signatureOfApprovedProfessional": "", - "firstName": "", - "lastName": "", - "dateSigned": "00/00/0000" - } - ], - "persistent": true, - "protected": false, - "dbIndex": false, - "encrypted": false, - "redrawOn": "", - "clearOnHide": true, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "allowCalculateOverride": false, - "validateOn": "change", - "validate": { - "required": false, - "minLength": "", - "maxLength": "", - "customMessage": "", - "custom": "", - "customPrivate": false, - "json": "", - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "errorLabel": "", - "errors": "", - "key": "dataGrid16", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "datagrid", - "input": true, - "components": [ - { - "label": "Approved Professional Signatures", - "columns": [ - { - "components": [ - { - "label": "Type of Arm's length Review", - "placeholder": "Enter number from list above", - "tableView": true, - "key": "typeOfArmsLengthReview", - "type": "textfield", - "input": true, - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "eqgxg2q" - }, - { - "label": "Signature of Approved Professional", - "tableView": false, - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "key": "signatureOfApprovedProfessional", - "type": "signature", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "footer": "Sign above", - "width": "100%", - "height": "150px", - "penColor": "black", - "backgroundColor": "rgb(245,245,235)", - "minWidth": "0.5", - "maxWidth": "2.5", - "keepOverlayRatio": true, - "id": "egps3u" - } - ], - "width": 6, - "offset": 0, - "push": 0, - "pull": 0, - "size": "md", - "currentWidth": 6 - }, - { - "components": [ - { - "label": "First Name", - "tableView": true, - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "key": "firstName", - "type": "textfield", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "ehbl8ry" - }, - { - "label": "Last Name", - "labelPosition": "top", - "placeholder": "", - "description": "", - "tooltip": "", - "prefix": "", - "suffix": "", - "widget": { - "type": "input" - }, - "inputMask": "", - "displayMask": "", - "allowMultipleMasks": false, - "customClass": "", - "tabindex": "", - "autocomplete": "", - "hidden": false, - "hideLabel": false, - "showWordCount": false, - "showCharCount": false, - "mask": false, - "autofocus": false, - "spellcheck": true, - "disabled": false, - "tableView": true, - "modalEdit": false, - "multiple": false, - "persistent": true, - "inputFormat": "plain", - "protected": false, - "dbIndex": false, - "case": "", - "truncateMultipleSpaces": false, - "encrypted": false, - "redrawOn": "", - "clearOnHide": true, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "allowCalculateOverride": false, - "validateOn": "change", - "validate": { - "required": true, - "pattern": "", - "customMessage": "", - "custom": "", - "customPrivate": false, - "json": "", - "minLength": "", - "maxLength": "", - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "unique": false, - "errorLabel": "", - "errors": "", - "key": "lastName", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "textfield", - "input": true, - "refreshOn": "", - "dataGridLabel": false, - "addons": [], - "inputType": "text", - "id": "ew4j73", - "defaultValue": "" - }, - { - "label": "Date", - "labelPosition": "top", - "displayInTimezone": "viewer", - "useLocaleSettings": false, - "allowInput": true, - "format": "yyyy-MM-dd hh:mm a", - "placeholder": "", - "description": "", - "tooltip": "", - "customClass": "", - "tabindex": "", - "hidden": false, - "hideLabel": false, - "autofocus": false, - "disabled": false, - "tableView": false, - "modalEdit": false, - "shortcutButtons": [], - "enableDate": true, - "datePicker": { - "disable": "", - "disableFunction": "", - "disableWeekends": false, - "disableWeekdays": false, - "minDate": null, - "maxDate": null, - "showWeeks": true, - "startingDay": 0, - "initDate": "", - "minMode": "day", - "maxMode": "year", - "yearRows": 4, - "yearColumns": 5 - }, - "enableTime": true, - "timePicker": { - "showMeridian": true, - "hourStep": 1, - "minuteStep": 1, - "readonlyInput": false, - "mousewheel": true, - "arrowkeys": true - }, - "multiple": false, - "defaultValue": "", - "defaultDate": "", - "customOptions": {}, - "persistent": true, - "protected": false, - "dbIndex": false, - "encrypted": false, - "redrawOn": "", - "clearOnHide": true, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "allowCalculateOverride": false, - "validateOn": "change", - "validate": { - "required": false, - "customMessage": "", - "custom": "", - "customPrivate": false, - "json": "", - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "enableMinDateInput": false, - "enableMaxDateInput": false, - "unique": false, - "errorLabel": "", - "errors": "", - "key": "date", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "datetime", - "timezone": "", - "input": true, - "prefix": "", - "suffix": "", - "refreshOn": "", - "dataGridLabel": false, - "widget": { - "type": "calendar", - "displayInTimezone": "viewer", - "locale": "en", - "useLocaleSettings": false, - "allowInput": true, - "mode": "single", - "enableTime": true, - "noCalendar": false, - "format": "yyyy-MM-dd hh:mm a", - "hourIncrement": 1, - "minuteIncrement": 1, - "time_24hr": false, - "minDate": null, - "disabledDates": "", - "disableWeekends": false, - "disableWeekdays": false, - "disableFunction": "", - "maxDate": null - }, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "datepickerMode": "day", - "id": "ewqskd" - } - ], - "width": 6, - "offset": 0, - "push": 0, - "pull": 0, - "size": "md", - "currentWidth": 6 - } - ], - "key": "approvedProfessionalSignature", - "type": "columns", - "input": false, - "tableView": false, - "id": "ehbime0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "hidden": false, - "clearOnHide": false, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "tree": false, - "lazyLoad": false, - "autoAdjust": false - } - ], - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "unique": false, - "refreshOn": "", - "dataGridLabel": false, - "widget": null, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "tree": true, - "lazyLoad": false, - "id": "et2496k" - } - ], - "id": "ew977y" - }, - { - "html": "

Part 8 - Statement of Site Owner / Agent / Lessee

 

8.1 Offsite Migration Notification

", - "label": "Content", - "customClass": "", - "refreshOnChange": false, - "hidden": false, - "modalEdit": false, - "key": "content61", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "content", - "input": false, - "tableView": false, - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "id": "e31mug" - }, - { - "title": "SECTION I - Offsite Migration Notification", - "theme": "default", - "tooltip": "", - "customClass": "", - "collapsible": false, - "hidden": false, - "hideLabel": false, - "disabled": false, - "modalEdit": false, - "key": "sectionIOffsiteMigration", - "tags": [], - "properties": {}, - "customConditional": "", - "conditional": { - "json": "", - "show": null, - "when": null, - "eq": "" - }, - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "panel", - "label": "Panel", - "breadcrumb": "default", - "tabindex": "", - "input": false, - "tableView": false, - "components": [ - { - "label": "Not Applicable", - "tableView": false, - "key": "notApplicable", - "type": "checkbox", - "input": true, - "defaultValue": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": true, - "labelPosition": "right", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "inputType": "checkbox", - "value": "", - "name": "", - "id": "e3tubmm" - }, - { - "html": "

If it is known that one or more substances has migrated or is likely to have migrated to a neighbouring site and is or is likely causing contamination of the neighbouring site, have notifications been given?

See CSR Sec. 57 and 60.1 for requirements.

", - "label": "Content", - "customClass": "", - "refreshOnChange": false, - "hidden": false, - "modalEdit": false, - "key": "content62", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "content", - "input": false, - "tableView": false, - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "id": "ei2pshc" - }, - { - "label": "Have owners of impacted offsite properties been formally notified?", - "labelPosition": "top", - "optionsLabelPosition": "right", - "description": "", - "tooltip": "", - "customClass": "", - "tabindex": "", - "inline": false, - "hidden": false, - "hideLabel": false, - "autofocus": false, - "disabled": false, - "tableView": false, - "modalEdit": false, - "values": [ - { - "label": "Yes", - "value": "yes", - "shortcut": "" - }, - { - "label": "No", - "value": "no", - "shortcut": "" - } - ], - "dataType": "", - "persistent": true, - "protected": false, - "dbIndex": false, - "encrypted": false, - "redrawOn": "", - "clearOnHide": true, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "allowCalculateOverride": false, - "validate": { - "required": false, - "onlyAvailableItems": false, - "customMessage": "", - "custom": "", - "customPrivate": false, - "json": "", - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "errorLabel": "", - "errors": "", - "key": "haveOwnersOfImpactedOffsitePropertiesBeenFormallyNotified", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "radio", - "input": true, - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "unique": false, - "refreshOn": "", - "dataGridLabel": false, - "widget": null, - "validateOn": "change", - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "inputType": "radio", - "fieldSet": false, - "id": "e5x4165", - "defaultValue": "" - }, - { - "label": "Has the ministry been formally notified?", - "labelPosition": "top", - "optionsLabelPosition": "right", - "description": "", - "tooltip": "", - "customClass": "", - "tabindex": "", - "inline": false, - "hidden": false, - "hideLabel": false, - "autofocus": false, - "disabled": false, - "tableView": false, - "modalEdit": false, - "values": [ - { - "label": "Yes", - "value": "yes", - "shortcut": "" - }, - { - "label": "No", - "value": "no", - "shortcut": "" - } - ], - "dataType": "", - "persistent": true, - "protected": false, - "dbIndex": false, - "encrypted": false, - "redrawOn": "", - "clearOnHide": true, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "allowCalculateOverride": false, - "validate": { - "required": false, - "onlyAvailableItems": false, - "customMessage": "", - "custom": "", - "customPrivate": false, - "json": "", - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "errorLabel": "", - "errors": "", - "key": "hasTheMinistryBeenFormallyNotified", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "radio", - "input": true, - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "unique": false, - "refreshOn": "", - "dataGridLabel": false, - "widget": null, - "validateOn": "change", - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "inputType": "radio", - "fieldSet": false, - "id": "ert8af", - "defaultValue": "" - } - ], - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "clearOnHide": false, - "refreshOn": "", - "redrawOn": "", - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "tree": false, - "lazyLoad": false, - "id": "egmyibh" - }, - { - "title": "SECTION II - Confirmations by Owner/Agent/Lessee Regarding Approved Professional", - "theme": "default", - "tooltip": "", - "customClass": "", - "collapsible": false, - "hidden": false, - "hideLabel": false, - "disabled": false, - "modalEdit": false, - "key": "sectionIiConfirmationsByOwnerAgentLesseeRegardingApprovedProfessional", - "tags": [], - "properties": {}, - "customConditional": "", - "conditional": { - "json": "", - "show": null, - "when": null, - "eq": "" - }, - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "panel", - "label": "Panel", - "breadcrumb": "default", - "tabindex": "", - "input": false, - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "clearOnHide": false, - "refreshOn": "", - "redrawOn": "", - "tableView": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "tree": false, - "lazyLoad": false, - "components": [ - { - "label": "This is to acknowledge that as:", - "labelPosition": "top", - "optionsLabelPosition": "right", - "description": "", - "tooltip": "", - "customClass": "", - "tabindex": "", - "inline": false, - "hidden": false, - "hideLabel": false, - "autofocus": false, - "disabled": false, - "tableView": false, - "modalEdit": false, - "values": [ - { - "label": "The Owner", - "value": "theOwner", - "shortcut": "" - }, - { - "label": "The Agent on behalf of the owner", - "value": "theAgentOnBehalfOfTheOwner", - "shortcut": "" - }, - { - "label": "Lessee", - "value": "lessee", - "shortcut": "" - }, - { - "label": "The agent on behalf of the responsible party", - "value": "theAgentOnBehalfOfTheResponsibleParty", - "shortcut": "" - } - ], - "persistent": true, - "protected": false, - "dbIndex": false, - "encrypted": false, - "redrawOn": "", - "clearOnHide": true, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "allowCalculateOverride": false, - "validate": { - "required": true, - "onlyAvailableItems": false, - "customMessage": "", - "custom": "", - "customPrivate": false, - "json": "", - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "errorLabel": "", - "minSelectedCountMessage": "", - "maxSelectedCountMessage": "", - "errors": "", - "key": "thisIsToAcknowledgeThatAs", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "selectboxes", - "input": true, - "inputType": "checkbox", - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "unique": false, - "refreshOn": "", - "dataGridLabel": false, - "widget": null, - "validateOn": "change", - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "fieldSet": false, - "id": "e7tj2m", - "defaultValue": { - "theOwner": false, - "theAgentOnBehalfOfTheOwner": false, - "lessee": false, - "theAgentOnBehalfOfTheResponsibleParty": false - } - }, - { - "html": "

Of the site, I have engaged

", - "label": "Content", - "customClass": "", - "refreshOnChange": false, - "hidden": false, - "modalEdit": false, - "key": "content64", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "content", - "input": false, - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "tableView": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "id": "ezlflsn" - }, - { - "label": "Data Grid", - "reorder": false, - "addAnotherPosition": "bottom", - "layoutFixed": false, - "enableRowGroups": false, - "initEmpty": false, - "hideLabel": true, - "tableView": false, - "defaultValue": [ - {} - ], - "key": "dataGrid17", - "type": "datagrid", - "input": true, - "components": [ - { - "label": "Name(s) of Approved Professional(s)", - "labelPosition": "top", - "placeholder": "", - "description": "", - "tooltip": "", - "prefix": "", - "suffix": "", - "widget": { - "type": "input" - }, - "inputMask": "", - "displayMask": "", - "allowMultipleMasks": false, - "customClass": "", - "tabindex": "", - "autocomplete": "", - "hidden": false, - "hideLabel": false, - "showWordCount": false, - "showCharCount": false, - "mask": false, - "autofocus": false, - "spellcheck": true, - "dataGridLabel": false, - "disabled": false, - "tableView": true, - "modalEdit": false, - "multiple": false, - "persistent": true, - "inputFormat": "plain", - "protected": false, - "dbIndex": false, - "case": "", - "truncateMultipleSpaces": false, - "encrypted": false, - "redrawOn": "", - "clearOnHide": true, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "allowCalculateOverride": false, - "validateOn": "change", - "validate": { - "required": true, - "pattern": "", - "customMessage": "", - "custom": "", - "customPrivate": false, - "json": "", - "minLength": "", - "maxLength": "", - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "unique": false, - "errorLabel": "", - "errors": "", - "key": "approvedProfessionalFullName", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "textfield", - "input": true, - "refreshOn": "", - "addons": [], - "inputType": "text", - "id": "errpqaf00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", - "defaultValue": "" - } - ], - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "tree": true, - "lazyLoad": false, - "disableAddingRemovingRows": false, - "id": "ezfplf" - }, - { - "html": "

as the Approved Professional(s) to review site investigation, risk assessment and remediation reports and to make submission and application with recommendations, if applicable, for the regulatory instrument(s) as indicated in this Summary of Site Condition.

If signing as the agent of the owner or lessee, written consent from the owner or lessee authorizing signature of this Summary of Site Condition must be attached

", - "label": "Content", - "customClass": "", - "refreshOnChange": false, - "hidden": false, - "modalEdit": false, - "key": "content65", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "content", - "input": false, - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "tableView": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "id": "eelhteh" - }, - { - "label": "I agree to comply with any requirements on the site regarding monitoring and maintenance of works as documented in schedule B of the draft contaminated sites legal instrument", - "description": "", - "tooltip": "", - "shortcut": "", - "inputType": "checkbox", - "customClass": "", - "tabindex": "", - "hidden": false, - "hideLabel": false, - "autofocus": false, - "disabled": false, - "tableView": false, - "modalEdit": false, - "persistent": true, - "protected": false, - "dbIndex": false, - "encrypted": false, - "redrawOn": "", - "clearOnHide": true, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "allowCalculateOverride": false, - "validate": { - "required": true, - "customMessage": "", - "custom": "", - "customPrivate": false, - "json": "", - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "errorLabel": "", - "errors": "", - "key": "checkbox", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "checkbox", - "name": "", - "value": "", - "input": true, - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "unique": false, - "refreshOn": "", - "dataGridLabel": true, - "labelPosition": "right", - "widget": null, - "validateOn": "change", - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "id": "eldkgns", - "defaultValue": false - }, - { - "label": "I accept that if a risk assessment has been applied at the site, that the risk assessment is only valid as long as conditions at the site do not change.", - "description": "", - "tooltip": "", - "shortcut": "", - "inputType": "checkbox", - "customClass": "", - "tabindex": "", - "hidden": false, - "hideLabel": false, - "autofocus": false, - "disabled": false, - "tableView": false, - "modalEdit": false, - "persistent": true, - "protected": false, - "dbIndex": false, - "encrypted": false, - "redrawOn": "", - "clearOnHide": true, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "allowCalculateOverride": false, - "validate": { - "required": true, - "customMessage": "", - "custom": "", - "customPrivate": false, - "json": "", - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "errorLabel": "", - "errors": "", - "key": "iAcceptThatIfARiskAssessmentHasBeenAppliedAtTheSiteThatTheRiskAssessmentIsOnlyValidAsLongAsConditionsAtTheSiteDoNotChange", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "checkbox", - "name": "", - "value": "", - "input": true, - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "unique": false, - "refreshOn": "", - "dataGridLabel": true, - "labelPosition": "right", - "widget": null, - "validateOn": "change", - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "id": "eogtso", - "defaultValue": false - }, - { - "label": "I have undertaken reasonable inquiry into the previous ownership and uses of the property and to the best of my knowledge I have provided to the Approved Professional, information relevant to the investigation and remediation of the environmental condition of the site, in the preparation of this document.", - "description": "", - "tooltip": "", - "shortcut": "", - "inputType": "checkbox", - "customClass": "", - "tabindex": "", - "hidden": false, - "hideLabel": false, - "autofocus": false, - "disabled": false, - "tableView": false, - "modalEdit": false, - "persistent": true, - "protected": false, - "dbIndex": false, - "encrypted": false, - "redrawOn": "", - "clearOnHide": true, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "allowCalculateOverride": false, - "validate": { - "required": true, - "customMessage": "", - "custom": "", - "customPrivate": false, - "json": "", - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "errorLabel": "", - "errors": "", - "key": "iHaveUndertakenReasonableInquiryIntoThePreviousOwnershipAndUsesOfThePropertyAndToTheBestOfMyKnowledgeIHaveProvidedToTheApprovedProfessionalInformationRelevantToTheInvestigationAndRemediationOfTheEnvironmentalConditionOfTheSiteInThePreparationOfThisDocument", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "checkbox", - "name": "", - "value": "", - "input": true, - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "unique": false, - "refreshOn": "", - "dataGridLabel": true, - "labelPosition": "right", - "widget": null, - "validateOn": "change", - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "id": "etmpgu", - "defaultValue": false - }, - { - "label": "I acknowledge that this Summary of Site Condition becomes a public document after it has been received and acknowledged by the Director of Waste Management. Any party intending to purchase, lease, take a security interest in, or occupy the site may review this document and any supporting documents to satisfy themselves with respect to the environmental condition of the site, and the extent of responsibility and liability that may arise from taking ownership, taking a security interest, or occupying the site. ", - "description": "", - "tooltip": "", - "shortcut": "", - "inputType": "checkbox", - "customClass": "", - "tabindex": "", - "hidden": false, - "hideLabel": false, - "autofocus": false, - "disabled": false, - "tableView": false, - "modalEdit": false, - "defaultValue": false, - "persistent": true, - "protected": false, - "dbIndex": false, - "encrypted": false, - "redrawOn": "", - "clearOnHide": true, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "allowCalculateOverride": false, - "validate": { - "required": true, - "customMessage": "", - "custom": "", - "customPrivate": false, - "json": "", - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "errorLabel": "", - "errors": "", - "key": "iAcknowledgeThatThisSummaryOfSiteConditionBecomesAPublicDocumentAfterItHasBeenReceivedAndAcknowledgedByTheDirectorOfWasteManagementAnyPartyIntendingToPurchaseLeaseTakeASecurityInterestInOrOccupyTheSiteMayReviewThisDocumentAndAnySupportingDocumentsToSatisfyThemselvesWithRespectToTheEnvironmentalConditionOfTheSiteAndTheExtentOfResponsibilityAndLiabilityThatMayAriseFromTakingOwnershipTakingASecurityInterestOrOccupyingTheSite", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "checkbox", - "name": "", - "value": "", - "input": true, - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "unique": false, - "refreshOn": "", - "dataGridLabel": true, - "labelPosition": "right", - "widget": null, - "validateOn": "change", - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "id": "e57l23" - }, - { - "label": "Approved Professional Signatures", - "columns": [ - { - "components": [ - { - "label": "I have made no modifications to this document except as allowed by the form", - "description": "", - "tooltip": "", - "shortcut": "", - "inputType": "checkbox", - "customClass": "", - "tabindex": "", - "hidden": false, - "hideLabel": false, - "autofocus": false, - "disabled": false, - "tableView": false, - "modalEdit": false, - "defaultValue": false, - "persistent": true, - "protected": false, - "dbIndex": false, - "encrypted": false, - "redrawOn": "", - "clearOnHide": true, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "allowCalculateOverride": false, - "validate": { - "required": true, - "customMessage": "", - "custom": "", - "customPrivate": false, - "json": "", - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "errorLabel": "", - "errors": "", - "key": "iHaveMadeNoModificationsToThisDocumentExceptAsAllowedByTheForm", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "checkbox", - "name": "", - "value": "", - "input": true, - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "unique": false, - "refreshOn": "", - "dataGridLabel": true, - "labelPosition": "right", - "widget": null, - "validateOn": "change", - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "id": "ed8psb" - }, - { - "label": "First Name", - "tableView": true, - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "key": "firstName", - "type": "textfield", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "et5ljp" - }, - { - "label": "Last Name", - "tableView": true, - "key": "lastName", - "type": "textfield", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "eq5xc5d" - }, - { - "label": "Signature of Owner/Agent/Lessee", - "footer": "Sign above", - "labelPosition": "top", - "width": "100%", - "height": "150px", - "backgroundColor": "rgb(245,245,235)", - "penColor": "black", - "description": "", - "tooltip": "", - "customClass": "", - "tabindex": "", - "hidden": false, - "hideLabel": false, - "disabled": false, - "tableView": false, - "modalEdit": false, - "persistent": true, - "protected": false, - "encrypted": false, - "redrawOn": "", - "clearOnHide": true, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "allowCalculateOverride": false, - "validate": { - "required": true, - "customMessage": "", - "custom": "", - "customPrivate": false, - "json": "", - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "errorLabel": "", - "errors": "", - "key": "signatureOfApprovedProfessional", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "signature", - "input": true, - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "unique": false, - "refreshOn": "", - "dataGridLabel": false, - "autofocus": false, - "dbIndex": false, - "widget": { - "type": "input" - }, - "validateOn": "change", - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "minWidth": "0.5", - "maxWidth": "2.5", - "keepOverlayRatio": true, - "id": "ehazy0p" - }, - { - "label": "Date", - "labelPosition": "top", - "displayInTimezone": "viewer", - "useLocaleSettings": false, - "allowInput": true, - "format": "yyyy-MM-dd hh:mm a", - "placeholder": "", - "description": "", - "tooltip": "", - "customClass": "", - "tabindex": "", - "hidden": false, - "hideLabel": false, - "autofocus": false, - "disabled": false, - "tableView": false, - "modalEdit": false, - "shortcutButtons": [], - "enableDate": true, - "datePicker": { - "disable": "", - "disableFunction": "", - "disableWeekends": false, - "disableWeekdays": false, - "minDate": null, - "maxDate": null, - "showWeeks": true, - "startingDay": 0, - "initDate": "", - "minMode": "day", - "maxMode": "year", - "yearRows": 4, - "yearColumns": 5 - }, - "enableTime": true, - "timePicker": { - "showMeridian": true, - "hourStep": 1, - "minuteStep": 1, - "readonlyInput": false, - "mousewheel": true, - "arrowkeys": true - }, - "multiple": false, - "defaultValue": "", - "defaultDate": "", - "customOptions": {}, - "persistent": true, - "protected": false, - "dbIndex": false, - "encrypted": false, - "redrawOn": "", - "clearOnHide": true, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "allowCalculateOverride": false, - "validateOn": "change", - "validate": { - "required": false, - "customMessage": "", - "custom": "", - "customPrivate": false, - "json": "", - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "enableMinDateInput": false, - "enableMaxDateInput": false, - "unique": false, - "errorLabel": "", - "errors": "", - "key": "dateTime", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "datetime", - "timezone": "", - "input": true, - "widget": { - "type": "calendar", - "displayInTimezone": "viewer", - "locale": "en", - "useLocaleSettings": false, - "allowInput": true, - "mode": "single", - "enableTime": true, - "noCalendar": false, - "format": "yyyy-MM-dd hh:mm a", - "hourIncrement": 1, - "minuteIncrement": 1, - "time_24hr": false, - "minDate": null, - "disabledDates": "", - "disableWeekends": false, - "disableWeekdays": false, - "disableFunction": "", - "maxDate": null - }, - "prefix": "", - "suffix": "", - "refreshOn": "", - "dataGridLabel": false, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "datepickerMode": "day", - "id": "etjv8wm" - } - ], - "width": 6, - "offset": 0, - "push": 0, - "pull": 0, - "size": "md", - "currentWidth": 6 - }, - { - "components": [ - { - "label": "Address", - "labelPosition": "top", - "placeholder": "", - "description": "", - "tooltip": "", - "prefix": "", - "suffix": "", - "widget": { - "type": "input" - }, - "inputMask": "", - "displayMask": "", - "allowMultipleMasks": false, - "customClass": "", - "tabindex": "", - "autocomplete": "", - "hidden": false, - "hideLabel": false, - "showWordCount": false, - "showCharCount": false, - "mask": false, - "autofocus": false, - "spellcheck": true, - "disabled": false, - "tableView": true, - "modalEdit": false, - "multiple": false, - "persistent": true, - "inputFormat": "plain", - "protected": false, - "dbIndex": false, - "case": "", - "truncateMultipleSpaces": false, - "encrypted": false, - "redrawOn": "", - "clearOnHide": true, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "allowCalculateOverride": false, - "validateOn": "change", - "validate": { - "required": true, - "pattern": "", - "customMessage": "", - "custom": "", - "customPrivate": false, - "json": "", - "minLength": "", - "maxLength": "", - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "unique": false, - "errorLabel": "", - "errors": "", - "key": "address", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "textfield", - "input": true, - "refreshOn": "", - "dataGridLabel": false, - "addons": [], - "inputType": "text", - "id": "ehvzv6o", - "defaultValue": "" - }, - { - "input": false, - "key": "columns1", - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "hidden": false, - "clearOnHide": false, - "refreshOn": "", - "redrawOn": "", - "tableView": false, - "modalEdit": false, - "label": "Columns", - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "tree": false, - "lazyLoad": false, - "type": "columns", - "columns": [ - { - "components": [ - { - "label": "City", - "labelPosition": "top", - "placeholder": "", - "description": "", - "tooltip": "", - "prefix": "", - "suffix": "", - "widget": { - "type": "input" - }, - "inputMask": "", - "displayMask": "", - "allowMultipleMasks": false, - "customClass": "", - "tabindex": "", - "autocomplete": "", - "hidden": false, - "hideLabel": false, - "showWordCount": false, - "showCharCount": false, - "mask": false, - "autofocus": false, - "spellcheck": true, - "disabled": false, - "tableView": true, - "modalEdit": false, - "multiple": false, - "persistent": true, - "inputFormat": "plain", - "protected": false, - "dbIndex": false, - "case": "", - "truncateMultipleSpaces": false, - "encrypted": false, - "redrawOn": "", - "clearOnHide": true, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "allowCalculateOverride": false, - "validateOn": "change", - "validate": { - "required": true, - "pattern": "", - "customMessage": "", - "custom": "", - "customPrivate": false, - "json": "", - "minLength": "", - "maxLength": "", - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "unique": false, - "errorLabel": "", - "errors": "", - "key": "city", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "textfield", - "input": true, - "refreshOn": "", - "dataGridLabel": false, - "addons": [], - "inputType": "text", - "id": "e1koxeg", - "defaultValue": "" - }, - { - "label": "Postal Code", - "labelPosition": "top", - "placeholder": "", - "description": "", - "tooltip": "", - "prefix": "", - "suffix": "", - "widget": { - "type": "input" - }, - "inputMask": "", - "displayMask": "", - "allowMultipleMasks": false, - "customClass": "", - "tabindex": "", - "autocomplete": "", - "hidden": false, - "hideLabel": false, - "showWordCount": false, - "showCharCount": false, - "mask": false, - "autofocus": false, - "spellcheck": true, - "disabled": false, - "tableView": true, - "modalEdit": false, - "multiple": false, - "persistent": true, - "inputFormat": "plain", - "protected": false, - "dbIndex": false, - "case": "", - "truncateMultipleSpaces": false, - "encrypted": false, - "redrawOn": "", - "clearOnHide": true, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "allowCalculateOverride": false, - "validateOn": "change", - "validate": { - "required": true, - "pattern": "", - "customMessage": "", - "custom": "", - "customPrivate": false, - "json": "", - "minLength": "", - "maxLength": "", - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "unique": false, - "errorLabel": "", - "errors": "", - "key": "postalCode1", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "textfield", - "input": true, - "refreshOn": "", - "dataGridLabel": false, - "addons": [], - "inputType": "text", - "id": "eiw0krr", - "defaultValue": "" - } - ], - "width": 6, - "offset": 0, - "push": 0, - "pull": 0, - "size": "md", - "currentWidth": 6 - }, - { - "components": [ - { - "label": "Province", - "labelPosition": "top", - "placeholder": "", - "description": "", - "tooltip": "", - "prefix": "", - "suffix": "", - "widget": { - "type": "input" - }, - "inputMask": "", - "displayMask": "", - "allowMultipleMasks": false, - "customClass": "", - "tabindex": "", - "autocomplete": "", - "hidden": false, - "hideLabel": false, - "showWordCount": false, - "showCharCount": false, - "mask": false, - "autofocus": false, - "spellcheck": true, - "disabled": false, - "tableView": true, - "modalEdit": false, - "multiple": false, - "persistent": true, - "inputFormat": "plain", - "protected": false, - "dbIndex": false, - "case": "", - "truncateMultipleSpaces": false, - "encrypted": false, - "redrawOn": "", - "clearOnHide": true, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "allowCalculateOverride": false, - "validateOn": "change", - "validate": { - "required": true, - "pattern": "", - "customMessage": "", - "custom": "", - "customPrivate": false, - "json": "", - "minLength": "", - "maxLength": "", - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "unique": false, - "errorLabel": "", - "errors": "", - "key": "province", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "textfield", - "input": true, - "refreshOn": "", - "dataGridLabel": false, - "addons": [], - "inputType": "text", - "id": "es4bja", - "defaultValue": "" - }, - { - "label": "Country", - "labelPosition": "top", - "placeholder": "", - "description": "", - "tooltip": "", - "prefix": "", - "suffix": "", - "widget": { - "type": "input" - }, - "inputMask": "", - "displayMask": "", - "allowMultipleMasks": false, - "customClass": "", - "tabindex": "", - "autocomplete": "", - "hidden": false, - "hideLabel": false, - "showWordCount": false, - "showCharCount": false, - "mask": false, - "autofocus": false, - "spellcheck": true, - "disabled": false, - "tableView": true, - "modalEdit": false, - "multiple": false, - "persistent": true, - "inputFormat": "plain", - "protected": false, - "dbIndex": false, - "case": "", - "truncateMultipleSpaces": false, - "encrypted": false, - "redrawOn": "", - "clearOnHide": true, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "allowCalculateOverride": false, - "validateOn": "change", - "validate": { - "required": true, - "pattern": "", - "customMessage": "", - "custom": "", - "customPrivate": false, - "json": "", - "minLength": "", - "maxLength": "", - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "unique": false, - "errorLabel": "", - "errors": "", - "key": "country", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "textfield", - "input": true, - "refreshOn": "", - "dataGridLabel": false, - "addons": [], - "inputType": "text", - "id": "e893hnl", - "defaultValue": "" - } - ], - "width": 6, - "offset": 0, - "push": 0, - "pull": 0, - "size": "md", - "currentWidth": 6 - } - ], - "autoAdjust": false, - "id": "ergznb" - } - ], - "width": 6, - "offset": 0, - "push": 0, - "pull": 0, - "size": "md", - "currentWidth": 6 - } - ], - "key": "approvedProfessionalSignature", - "type": "columns", - "input": false, - "tableView": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "hidden": false, - "clearOnHide": false, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "tree": false, - "lazyLoad": false, - "autoAdjust": false, - "id": "e18pyfg" - } - ], - "id": "e3jlek" - }, - { - "type": "button", - "label": "Submit", - "key": "submit", - "size": "md", - "block": false, - "action": "submit", - "disableOnInvalid": true, - "theme": "primary", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "tableView": false, - "modalEdit": false, - "dataGridLabel": true, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "leftIcon": "", - "rightIcon": "", - "id": "emkrxp" - }, - { - "label": "bundleStatus", - "customClass": "", - "modalEdit": false, - "defaultValue": null, - "persistent": true, - "protected": false, - "dbIndex": false, - "encrypted": false, - "redrawOn": "", - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "key": "bundleStatus", - "tags": [], - "properties": {}, - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "hidden", - "input": true, - "tableView": false, - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "unique": false, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "widget": { - "type": "input" - }, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "allowCalculateOverride": false, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "inputType": "hidden", - "id": "eryzjur" - }, - { - "label": "soscUtilKeys", - "customDefaultValue": "const cssaKeys = Object.keys(\n      utils.flattenComponents(form.components, false)\n    );\n\nvalue = cssaKeys;", - "key": "cssaUtilKeys", - "type": "hidden", - "input": true, - "tableView": false, - "keyModified": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "inputType": "hidden", - "id": "e6did" - }, - { - "label": "soscStatus", - "customClass": "", - "modalEdit": false, - "defaultValue": null, - "persistent": true, - "protected": false, - "dbIndex": false, - "encrypted": false, - "redrawOn": "", - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "key": "soscBundleStatus", - "tags": [], - "properties": {}, - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "hidden", - "input": true, - "tableView": false, - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "unique": false, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "widget": { - "type": "input" - }, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "allowCalculateOverride": false, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "inputType": "hidden", - "id": "epy41s4" - }, - { - "label": "applicationId", - "customClass": "", - "addons": [], - "modalEdit": false, - "persistent": true, - "protected": false, - "dbIndex": false, - "encrypted": false, - "redrawOn": "", - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "key": "applicationId", - "tags": [], - "properties": {}, - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "hidden", - "input": true, - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "unique": false, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "tableView": false, - "labelPosition": "top", - "Description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "widget": { - "type": "input" - }, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "allowCalculateOverride": false, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "inputType": "hidden", - "id": "em1y8gd", - "defaultValue": "", - "dataGridLabel": false, - "description": "" - }, - { - "label": "applicationStatus", - "addons": [], - "customClass": "", - "modalEdit": false, - "defaultValue": null, - "persistent": true, - "protected": false, - "dbIndex": false, - "encrypted": false, - "redrawOn": "", - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "key": "applicationStatus", - "tags": [], - "properties": {}, - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "hidden", - "input": true, - "tableView": false, - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "unique": false, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "dataGridLabel": false, - "labelPosition": "top", - "Description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "widget": { - "type": "input" - }, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "allowCalculateOverride": false, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "inputType": "hidden", - "id": "e6z1qd9", - "description": "" - } - ] - } - ] -} \ No newline at end of file diff --git a/forms-flow-ai/epd-forms/bundling/Summary of Site Condition.json b/forms-flow-ai/epd-forms/bundling/Summary of Site Condition.json index 0d3c30df..19a4603c 100644 --- a/forms-flow-ai/epd-forms/bundling/Summary of Site Condition.json +++ b/forms-flow-ai/epd-forms/bundling/Summary of Site Condition.json @@ -4,8 +4,8 @@ "title": "Summary of Site Condition", "display": "form", "type": "form", - "name": "summaryOfSiteConditionBundle", - "path": "summaryofsiteconditionbundle", + "name": "soscBundleForm", + "path": "soscbundleform", "tags": [ "common" ], @@ -34,7 +34,7 @@ "key": "prevReviewer", "customConditional": "const UserDetails = JSON.parse(localStorage.getItem(\"UserDetails\"))\r\n\r\nconst roles = UserDetails[\"role\"];\r\n\r\n\r\nif(roles.includes(\"formsflow-reviewer\") && \r\n!roles.includes(\"formsflow-reviewer/caseworker\") &&\r\n!(roles.includes(\"formsflow-reviewer/sdm\") && data.typeOfReview === \"applicationViaTheSocietyOfContaminatedSitesApprovedProfessionalsOfBc\")) {\r\n show = true;\r\n}\r\nelse\r\n{\r\n show = false;\r\n}", "type": "button", - "custom": "const submissionId = form._submission._id;\r\nconst formId = form._submission.form;\r\nconst formDataReqUrl = form.formio?form.formio.formUrl:(localStorage.getItem('customSubmissionUrl')+'/form/'+formId)+'/submission/'+submissionId;\r\nconst filteredData = _.pick(data, data.cssaUtilKeys);\r\nconst formDataReqObj1 = { \"_id\": submissionId, \"data\": filteredData};\r\nconst formio = new Formio(formDataReqUrl);\r\nformio.saveSubmission(formDataReqObj1).then( result => {\r\nform.emit('customEvent', {\r\n type: \"actionComplete\", \r\n component: component,\r\n actionType: 'Recheck'\r\n }); \r\n}).catch((error)=>{\r\n//Error callback on not Save\r\nform.emit('customEvent', {\r\n type: \"actionError\", \r\n component: component,\r\n actionType:'Recheck'\r\n }); \r\n});", + "custom": "const submissionId = form._submission._id;\r\nconst formId = form._submission.form;\r\nconst formDataReqUrl = form.formio?form.formio.formUrl:(localStorage.getItem('customSubmissionUrl')+'/form/'+formId)+'/submission/'+submissionId;\r\nconst filteredData = _.pick(data, data.soscUtilKeys);\r\nconst formDataReqObj1 = { \"_id\": submissionId, \"data\": filteredData};\r\nconst formio = new Formio(formDataReqUrl);\r\nformio.saveSubmission(formDataReqObj1).then( result => {\r\nform.emit('customEvent', {\r\n type: \"actionComplete\", \r\n component: component,\r\n actionType: 'Recheck'\r\n }); \r\n}).catch((error)=>{\r\n//Error callback on not Save\r\nform.emit('customEvent', {\r\n type: \"actionError\", \r\n component: component,\r\n actionType:'Recheck'\r\n }); \r\n});", "input": true, "placeholder": "", "prefix": "", @@ -121,7 +121,7 @@ "key": "nextReviewer", "customConditional": "const UserDetails = JSON.parse(localStorage.getItem(\"UserDetails\"));\r\n\r\nconst roles = UserDetails[\"role\"];\r\n\r\nif(roles.includes(\"formsflow-reviewer/caseworker\")) {\r\n show = true;\r\n}\r\nelse\r\n{\r\n show = false;\r\n}", "type": "button", - "custom": "const submissionId = form._submission._id;\r\nconst formId = form._submission.form;\r\nconst formDataReqUrl = form.formio?form.formio.formUrl:(localStorage.getItem('customSubmissionUrl')+'/form/'+formId)+'/submission/'+submissionId;\r\n\r\nconst filteredData = _.pick(data, data.cssaUtilKeys);\r\n\r\nconst formDataReqObj1 = { \"_id\": submissionId, \"data\": filteredData};\r\nconst formio = new Formio(formDataReqUrl);\r\nformio.saveSubmission(formDataReqObj1).then( result => {\r\nform.emit('customEvent', {\r\n type: \"actionComplete\", \r\n component: component,\r\n actionType: 'Accepted'\r\n }); \r\n}).catch((error)=>{\r\n//Error callback on not Save\r\nform.emit('customEvent', {\r\n type: \"actionError\", \r\n component: component,\r\n actionType:'Accepted'\r\n }); \r\n});", + "custom": "const submissionId = form._submission._id;\r\nconst formId = form._submission.form;\r\nconst formDataReqUrl = form.formio?form.formio.formUrl:(localStorage.getItem('customSubmissionUrl')+'/form/'+formId)+'/submission/'+submissionId;\r\n\r\nconst filteredData = _.pick(data, data.soscUtilKeys);\r\n\r\nconst formDataReqObj1 = { \"_id\": submissionId, \"data\": filteredData};\r\nconst formio = new Formio(formDataReqUrl);\r\nformio.saveSubmission(formDataReqObj1).then( result => {\r\nform.emit('customEvent', {\r\n type: \"actionComplete\", \r\n component: component,\r\n actionType: 'Accepted'\r\n }); \r\n}).catch((error)=>{\r\n//Error callback on not Save\r\nform.emit('customEvent', {\r\n type: \"actionError\", \r\n component: component,\r\n actionType:'Accepted'\r\n }); \r\n});", "input": true, "placeholder": "", "prefix": "", @@ -198,7 +198,7 @@ "key": "approved", "customConditional": "const UserDetails = JSON.parse(localStorage.getItem(\"UserDetails\"));\r\n\r\nconst roles = UserDetails[\"role\"];\r\n\r\nif(roles.includes(\"formsflow-reviewer/sdm\")) {\r\n show = true;\r\n}\r\nelse\r\n{\r\n show = false;\r\n}", "type": "button", - "custom": "\r\nconst submissionId = form._submission._id;\r\nconst formId = form._submission.form;\r\nconst formDataReqUrl = form.formio?form.formio.formUrl:(localStorage.getItem('customSubmissionUrl')+'/form/'+formId)+'/submission/'+submissionId;\r\nconst filteredData = _.pick(data, data.cssaUtilKeys);\r\nconst formDataReqObj1 = { \"_id\": submissionId, \"data\": filteredData};\r\nconst formio = new Formio(formDataReqUrl);\r\nformio.saveSubmission(formDataReqObj1).then( result => {\r\nform.emit('customEvent', {\r\n type: \"actionComplete\", \r\n component: component,\r\n actionType: 'Approved'\r\n }); \r\n}).catch((error)=>{\r\n//Error callback on not Save\r\nform.emit('customEvent', {\r\n type: \"actionError\", \r\n component: component,\r\n actionType:'Approved'\r\n }); \r\n});\r\n", + "custom": "\r\nconst submissionId = form._submission._id;\r\nconst formId = form._submission.form;\r\nconst formDataReqUrl = form.formio?form.formio.formUrl:(localStorage.getItem('customSubmissionUrl')+'/form/'+formId)+'/submission/'+submissionId;\r\nconst filteredData = _.pick(data, data.soscUtilKeys);\r\nconst formDataReqObj1 = { \"_id\": submissionId, \"data\": filteredData};\r\nconst formio = new Formio(formDataReqUrl);\r\nformio.saveSubmission(formDataReqObj1).then( result => {\r\nform.emit('customEvent', {\r\n type: \"actionComplete\", \r\n component: component,\r\n actionType: 'Approved'\r\n }); \r\n}).catch((error)=>{\r\n//Error callback on not Save\r\nform.emit('customEvent', {\r\n type: \"actionError\", \r\n component: component,\r\n actionType:'Approved'\r\n }); \r\n});\r\n", "input": true, "placeholder": "", "prefix": "", @@ -287,7 +287,7 @@ "key": "needsMoreInfo", "customConditional": "const UserDetails = JSON.parse(localStorage.getItem(\"UserDetails\"));\r\nconst roles = UserDetails[\"role\"];\r\nconst taskUrl = window.location.pathname.split('/');\r\nconst taskId = taskUrl[2];\r\nconst authToken = localStorage.getItem(\"authToken\");\r\nconst bpmUrl = localStorage.getItem(\"bpmApiUrl\");\r\nvar reqUrl = bpmUrl + \"/task/\" + taskId + \"/variables\";\r\n\r\n\r\n getData(reqUrl, authToken).then((response) => {\r\n \r\n\t if(roles.includes(\"formsflow-reviewer\")) {\r\n \tvar applicationStatus = response.applicationStatus ? response.applicationStatus.value : '';\r\n \t show = true;\r\n \t \r\n\r\n \t\t\r\n\t if (applicationStatus === 'Resubmit') {\r\n\t component.disabled = true;\r\n\t component.description = 'Disabled since SRCR resubmission in progress';\r\n\t instance.triggerRedraw();\r\n\t } else {\r\n\t component.description = '';\r\n\t component.disabled = false;\r\n\t instance.triggerRedraw();\r\n\t }\r\n\t }\r\n\t else\r\n\t {\r\n \t\tshow = false;\r\n\t }\r\n });\r\n\r\n\r\nasync function getData(reqUrl, authToken) {\r\n const response = await fetch(reqUrl, {\r\n method: \"GET\",\r\n headers: {\r\n \"Content-type\": \"application/json\",\r\n Accept: \"application/json\",\r\n Authorization: \"Bearer \" + authToken,\r\n },\r\n });\r\n const data = await response.json();\r\n return data;\r\n}", "type": "button", - "custom": "const submissionId = form._submission._id;\r\nconst formId = form._submission.form;\r\nconst formDataReqUrl = form.formio?form.formio.formUrl:(localStorage.getItem('customSubmissionUrl')+'/form/'+formId)+'/submission/'+submissionId;+submissionId;\r\nconst filteredData = _.pick(data, data.cssaUtilKeys);\r\nconst formDataReqObj1 = { \"_id\": submissionId, \"data\": filteredData};\r\nconst formio = new Formio(formDataReqUrl);\r\nformio.saveSubmission(formDataReqObj1).then( result => {\r\nform.emit('customEvent', {\r\n type: \"actionComplete\", \r\n component: component,\r\n actionType: 'Returned'\r\n }); \r\n}).catch((error)=>{\r\n//Error callback on not Save\r\nform.emit('customEvent', {\r\n type: \"actionError\", \r\n component: component,\r\n actionType:'Returned'\r\n }); \r\n});", + "custom": "const submissionId = form._submission._id;\r\nconst formId = form._submission.form;\r\nconst formDataReqUrl = form.formio?form.formio.formUrl:(localStorage.getItem('customSubmissionUrl')+'/form/'+formId)+'/submission/'+submissionId;+submissionId;\r\nconst filteredData = _.pick(data, data.soscUtilKeys);\r\nconst formDataReqObj1 = { \"_id\": submissionId, \"data\": filteredData};\r\nconst formio = new Formio(formDataReqUrl);\r\nformio.saveSubmission(formDataReqObj1).then( result => {\r\nform.emit('customEvent', {\r\n type: \"actionComplete\", \r\n component: component,\r\n actionType: 'Returned'\r\n }); \r\n}).catch((error)=>{\r\n//Error callback on not Save\r\nform.emit('customEvent', {\r\n type: \"actionError\", \r\n component: component,\r\n actionType:'Returned'\r\n }); \r\n});", "input": true, "redrawOn": "textField", "keyModified": true, @@ -374,7 +374,7 @@ "key": "rejected", "customConditional": "const UserDetails = JSON.parse(localStorage.getItem(\"UserDetails\"))\r\n\r\nconst roles = UserDetails[\"role\"];\r\n\r\nif(roles.includes(\"formsflow-reviewer\") && \r\n!(roles.includes(\"formsflow-reviewer/csap\") ||\r\nroles.includes(\"formsflow-reviewer/csap-society\"))) {\r\n show = true;\r\n}\r\nelse\r\n{\r\n show = false;\r\n}", "type": "button", - "custom": "const submissionId = form._submission._id;\r\nconst formId = form._submission.form;\r\nconst formDataReqUrl = form.formio?form.formio.formUrl:(localStorage.getItem('customSubmissionUrl')+'/form/'+formId)+'/submission/'+submissionId;\r\nconst filteredData = _.pick(data, data.cssaUtilKeys);\r\nconst formDataReqObj1 = { \"_id\": submissionId, \"data\": filteredData};\r\nconst formio = new Formio(formDataReqUrl);\r\nformio.saveSubmission(formDataReqObj1).then( result => {\r\nform.emit('customEvent', {\r\n type: \"actionComplete\", \r\n component: component,\r\n actionType: 'Rejected'\r\n }); \r\n}).catch((error)=>{\r\n//Error callback on not Save\r\nform.emit('customEvent', {\r\n type: \"actionError\", \r\n component: component,\r\n actionType:'Rejected'\r\n }); \r\n});\r\n", + "custom": "const submissionId = form._submission._id;\r\nconst formId = form._submission.form;\r\nconst formDataReqUrl = form.formio?form.formio.formUrl:(localStorage.getItem('customSubmissionUrl')+'/form/'+formId)+'/submission/'+submissionId;\r\nconst filteredData = _.pick(data, data.soscUtilKeys);\r\nconst formDataReqObj1 = { \"_id\": submissionId, \"data\": filteredData};\r\nconst formio = new Formio(formDataReqUrl);\r\nformio.saveSubmission(formDataReqObj1).then( result => {\r\nform.emit('customEvent', {\r\n type: \"actionComplete\", \r\n component: component,\r\n actionType: 'Rejected'\r\n }); \r\n}).catch((error)=>{\r\n//Error callback on not Save\r\nform.emit('customEvent', {\r\n type: \"actionError\", \r\n component: component,\r\n actionType:'Rejected'\r\n }); \r\n});\r\n", "input": true, "placeholder": "", "prefix": "", @@ -584,7 +584,7 @@ { "title": "Reviewer Actions", "collapsible": false, - "key": "cssaBundleActions", + "key": "soscBundleActions", "customConditional": "\r\nconst UserDetails = JSON.parse(localStorage.getItem(\"UserDetails\"))\r\nconst roles = UserDetails[\"role\"];\r\n\r\nif(roles.includes(\"formsflow-reviewer/cssa-team\") || \r\nroles.includes(\"formsflow-reviewer/cssa-manager\") ||\r\nroles.includes(\"formsflow-reviewer/csap\") || \r\nroles.includes(\"formsflow-reviewer/csap-society\")|| \r\nroles.includes(\"formsflow-reviewer/caseworker\")|| \r\nroles.includes(\"formsflow-reviewer/sdm\")) {\r\n if (data.riskclassification === \"exempt\"){\r\n show = true;\r\n } else {\r\n show = false;\r\n }\r\n}\r\nelse\r\n{\r\n show = false;\r\n}", "type": "panel", "label": "Panel", @@ -691,7 +691,7 @@ "key": "sendBundleToNextReviewer", "customConditional": "\r\nconst UserDetails = JSON.parse(localStorage.getItem(\"UserDetails\"))\r\n\r\n\r\n\r\nconst roles = UserDetails[\"role\"];\r\n\r\n\r\nif(roles.includes(\"formsflow-reviewer/cssa-team\") || \r\nroles.includes(\"formsflow-reviewer/cssa-manager\") || \r\nroles.includes(\"formsflow-reviewer/csap\") || \r\nroles.includes(\"formsflow-reviewer/csap-society\") || \r\nroles.includes(\"formsflow-reviewer/caseworker\")) {\r\n show = true;\r\n}\r\nelse\r\n{\r\n show = false;\r\n}", "type": "button", - "custom": "const UserDetails = JSON.parse(localStorage.getItem(\"UserDetails\"))\r\nconst roles = UserDetails[\"role\"];\r\nif(roles.includes(\"formsflow-reviewer/cssa-manager\") && \r\n(data.selectCssaSdm===''||data.selectCssaSdm===undefined|| \r\n(data.typeOfReview==='directToMinistryApplication'&&data.selectCssaCaseworker===undefined|| data.selectCssaCaseworker==='')))\r\n{\r\n alert('Please assign reviewers to continue!');\r\n \r\n}\r\nelse\r\n{\r\n form.emit('customEvent', {\r\n type: \"actionComplete\", \r\n component: component,\r\n actionType:'Accepted'\r\n });\r\n}", + "custom": "const UserDetails = JSON.parse(localStorage.getItem(\"UserDetails\"))\r\nconst roles = UserDetails[\"role\"];\r\nif(roles.includes(\"formsflow-reviewer/cssa-manager\") && \r\n(data.selectSoscSdm===''||data.selectSoscSdm===undefined|| \r\n(data.typeOfReview==='directToMinistryApplication'&&data.selectSoscCaseworker===undefined|| data.selectSoscCaseworker==='')))\r\n{\r\n alert('Please assign reviewers to continue!');\r\n \r\n}\r\nelse\r\n{\r\n form.emit('customEvent', {\r\n type: \"actionComplete\", \r\n component: component,\r\n actionType:'Accepted'\r\n });\r\n}", "input": true, "keyModified": true, "placeholder": "", @@ -1195,7 +1195,7 @@ "validate": { "required": false, "customMessage": "", - "custom": "const emptyElements = [];\r\nconst elements = document.getElementsByClassName(\"list-group-item\");\r\nfor (let i = 0; i < elements.length; i++) {\r\nconst element = elements[i];\r\nconsole.log('in validation remove');\r\nif(element.querySelectorAll('div.row').length===0){(element).remove() }\r\n \r\n}\r\n\r\n\r\nvar b =JSON.parse(localStorage.getItem('UserDetails'))\r\nif(b.groups.indexOf('/formsflow/formsflow-client') > -1 || b.groups.indexOf('/formsflow/formsflow-reviewer/lrs-approving-authority') > -1 || b.groups.indexOf('/formsflow/formsflow-reviewer/formsflow-client-reviewer') > -1 )\r\n{\r\ndocument.querySelector(\"[ref='editgrid-notesSOSC-addRow']\").remove();\r\nvar editButtons = document.querySelectorAll('button.btn.btn-default.btn-light.btn-sm.editRow');\r\nfor(i=0;i -1 || b.groups.indexOf('/formsflow/formsflow-reviewer/lrs-approving-authority') > -1 || b.groups.indexOf('/formsflow/formsflow-reviewer/formsflow-client-reviewer') > -1 )\r\n{\r\ndocument.querySelector(\"[ref='editgrid-notesSOSC-addRow']\").remove();\r\nvar editButtons = document.querySelectorAll('button.btn.btn-default.btn-light.btn-sm.editRow');\r\nfor(i=0;ix.commentFor==='external').length > 0)\r\nshow = true;\r\nelse\r\nshow = false;\r\n}\r\nelse\r\n{\r\n show = true;\r\n}\r\n", + "customConditional": "show = false;\r\n\r\nconst UserDetails = JSON.parse(localStorage.getItem(\"UserDetails\"))\r\nconst groups = UserDetails[\"groups\"];\r\nif((groups.includes(\"/formsflow/formsflow-client\") || groups.includes(\"/formsflow/formsflow-reviewer/lrs-approving-authority\") || groups.includes(\"/formsflow/formsflow-reviewer/formsflow-client-reviewer\")))\r\n{\r\nif(data.notes.filter((x)=>x.commentFor==='external').length > 0)\r\nshow = true;\r\nelse\r\nshow = false;\r\n}\r\nelse\r\n{\r\n show = true;\r\n}\r\n", "logic": [], "attributes": {}, "overlay": { @@ -1826,7 +1826,7 @@ "unique": false, "onlyAvailableItems": false }, - "key": "selectCssaSdm", + "key": "selectSoscSdm", "type": "select", "selectValues": "data", "disableLimit": false, @@ -1959,7 +1959,7 @@ "unique": false, "onlyAvailableItems": false }, - "key": "selectCssaCaseworker", + "key": "selectSoscCaseworker", "customConditional": "if (data.typeOfReview==='applicationViaTheSocietyOfContaminatedSitesApprovedProfessionalsOfBc')\n{\n show = false;\n}\nelse {\n show = true;\n}", "type": "select", "selectValues": "data", @@ -3433,7 +3433,7 @@ "tableView": true, "validate": { "required": true, - "custom": "\r\nvar currentValue = input;\r\nconsole.log('currentValue',currentValue);\r\nfetch('https://forms-flow-api-e38158-dev.apps.silver.devops.gov.bc.ca/user?memberOfGroup=formsflow%2Fformsflow-reviewer%2Fformsflow-client-reviewer',\r\n{'headers':{ 'authorization': 'Bearer '+localStorage.getItem('authToken')},'mode':'cors'})\r\n.then((p)=> {return p.json();}).\r\nthen((x)=>{\r\n data.hiddenUserIdForFormSharing = '' ;\r\n x.find((y)=>{ console.log('currentValue',currentValue); \r\n if( y.email=== currentValue ) \r\n { data.hiddenUserIdForFormSharing = y.id}\r\n\r\n })\r\n\r\n if(data.hiddenUserIdForFormSharing==='')\r\n {\r\n valid = 'Unable to find user with provided email address';\r\n }\r\n else\r\n {\r\n valid = true;\r\n }\r\n\r\n});", + "custom": "\r\nvar currentValue = input;\r\nfetch('https://forms-flow-api-e38158-dev.apps.silver.devops.gov.bc.ca/user?memberOfGroup=formsflow%2Fformsflow-reviewer%2Fformsflow-client-reviewer',\r\n{'headers':{ 'authorization': 'Bearer '+localStorage.getItem('authToken')},'mode':'cors'})\r\n.then((p)=> {return p.json();}).\r\nthen((x)=>{\r\n data.hiddenUserIdForFormSharing = '' ;\r\n x.find((y)=>{ if( y.email=== currentValue ) \r\n { data.hiddenUserIdForFormSharing = y.id}\r\n\r\n })\r\n\r\n if(data.hiddenUserIdForFormSharing==='')\r\n {\r\n valid = 'Unable to find user with provided email address';\r\n }\r\n else\r\n {\r\n valid = true;\r\n }\r\n\r\n});", "customPrivate": false, "strictDateValidation": false, "multiple": false, @@ -8991,7 +8991,7 @@ "id": "eco0438" } ], - "id": "edowey000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "id": "edowey00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", "placeholder": "", "prefix": "", "customClass": "", @@ -10076,7 +10076,7 @@ "id": "eqnyhh" } ], - "id": "eskogm0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "id": "eskogm000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", "placeholder": "", "prefix": "", "customClass": "", @@ -10608,7 +10608,7 @@ "addons": [], "tree": false, "lazyLoad": false, - "id": "e0cqfrg0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" + "id": "e0cqfrg000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" } ], "layoutFixed": false, @@ -10707,7 +10707,7 @@ "input": true, "label": "Crown Land File Numbers", "tableView": true, - "id": "elizdoh0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "id": "elizdoh000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", "placeholder": "", "prefix": "", "customClass": "", @@ -12095,7 +12095,7 @@ "id": "e6o3au0o" } ], - "id": "erlwlrl000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "id": "erlwlrl00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", "placeholder": "", "prefix": "", "customClass": "", @@ -13118,7 +13118,7 @@ "id": "eg4rrls" } ], - "id": "ehjtgz0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "id": "ehjtgz000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", "placeholder": "", "prefix": "", "customClass": "", @@ -13717,7 +13717,7 @@ "addons": [], "tree": false, "lazyLoad": false, - "id": "emjblk60000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" + "id": "emjblk6000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" } ], "placeholder": "", @@ -13761,7 +13761,7 @@ "input": true, "label": "Crown Land File Numbers", "tableView": true, - "id": "eh8kmqu00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "id": "eh8kmqu0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", "placeholder": "", "prefix": "", "customClass": "", @@ -14670,7 +14670,7 @@ "id": "egqqs34" } ], - "id": "e80y9k80000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "id": "e80y9k8000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", "placeholder": "", "prefix": "", "customClass": "", @@ -22212,7 +22212,7 @@ "id": "es5kcwo" } ], - "id": "egwgsw00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "id": "egwgsw0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", "placeholder": "", "prefix": "", "customClass": "", @@ -23009,7 +23009,7 @@ "id": "erxxdli" } ], - "id": "e09khr200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "id": "e09khr20000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", "placeholder": "", "prefix": "", "customClass": "", @@ -23618,7 +23618,7 @@ "id": "eu9o53q" } ], - "id": "eipn9d0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "id": "eipn9d000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", "placeholder": "", "prefix": "", "customClass": "", @@ -24148,7 +24148,7 @@ "id": "ef617zf" } ], - "id": "ebh60il0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "id": "ebh60il000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", "placeholder": "", "prefix": "", "customClass": "", @@ -24919,7 +24919,7 @@ "id": "eak2oy8" } ], - "id": "evgsijp0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "id": "evgsijp000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", "placeholder": "", "prefix": "", "customClass": "", @@ -28993,7 +28993,7 @@ "id": "e9e5bm" } ], - "id": "e6l31cy00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "id": "e6l31cy0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", "placeholder": "", "prefix": "", "customClass": "", @@ -29903,7 +29903,7 @@ "id": "eb274z" } ], - "id": "eauzdys0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "id": "eauzdys000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", "placeholder": "", "prefix": "", "customClass": "", @@ -30498,7 +30498,7 @@ "id": "euj2r2l" } ], - "id": "ey0h0vl000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "id": "ey0h0vl00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", "placeholder": "", "prefix": "", "customClass": "", @@ -31093,7 +31093,7 @@ "id": "ehez7s" } ], - "id": "el9aclo00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "id": "el9aclo0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", "placeholder": "", "prefix": "", "customClass": "", @@ -31688,7 +31688,7 @@ "id": "et10s3fg" } ], - "id": "ehk7lsj0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "id": "ehk7lsj000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", "placeholder": "", "prefix": "", "customClass": "", @@ -32283,7 +32283,7 @@ "id": "eu50tno" } ], - "id": "ejahpfm0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "id": "ejahpfm000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", "placeholder": "", "prefix": "", "customClass": "", @@ -32989,7 +32989,7 @@ "addons": [], "tree": false, "lazyLoad": false, - "id": "etzpsl0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" + "id": "etzpsl000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" } ], "placeholder": "", @@ -33730,7 +33730,7 @@ "defaultValue": "" } ], - "id": "esvz3la00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "id": "esvz3la0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", "placeholder": "", "prefix": "", "customClass": "", @@ -37683,7 +37683,7 @@ "id": "estazfs" } ], - "id": "ef5nwt00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "id": "ef5nwt0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", "placeholder": "", "prefix": "", "customClass": "", @@ -38189,7 +38189,7 @@ "id": "eq5jxk" } ], - "id": "eoq12ev0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "id": "eoq12ev000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", "placeholder": "", "prefix": "", "customClass": "", @@ -38508,7 +38508,7 @@ "id": "enjn8bkh" } ], - "id": "ett43n0j000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "id": "ett43n0j00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", "placeholder": "", "prefix": "", "customClass": "", @@ -38827,7 +38827,7 @@ "id": "ee9w9ok" } ], - "id": "euuaaa00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "id": "euuaaa0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", "placeholder": "", "prefix": "", "customClass": "", @@ -39146,7 +39146,7 @@ "id": "e6efm7o" } ], - "id": "edr4h050000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "id": "edr4h05000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", "placeholder": "", "prefix": "", "customClass": "", @@ -41239,7 +41239,7 @@ "type": "columns", "input": false, "tableView": false, - "id": "ev4kpmc000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "id": "ev4kpmc00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", "placeholder": "", "prefix": "", "customClass": "", @@ -42018,7 +42018,7 @@ "type": "columns", "input": false, "tableView": false, - "id": "ehbime00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "id": "ehbime0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", "placeholder": "", "prefix": "", "customClass": "", @@ -42926,7 +42926,7 @@ "refreshOn": "", "addons": [], "inputType": "text", - "id": "errpqaf000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "id": "errpqaf00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", "defaultValue": "" } ], @@ -44577,8 +44577,8 @@ }, { "label": "soscUtilKeys", - "customDefaultValue": "const cssaKeys = Object.keys(\n      utils.flattenComponents(form.components, false)\n    );\n\nvalue = cssaKeys;", - "key": "cssaUtilKeys", + "customDefaultValue": "const soscKeys = Object.keys(\n      utils.flattenComponents(form.components, false)\n    );\n\nvalue = soscKeys;", + "key": "soscUtilKeys", "type": "hidden", "input": true, "tableView": false, diff --git a/forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/processes/Bundling/callActivity/SOSCBundleWorklow.bpmn b/forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/processes/Bundling/subProcess/SOSCBundleWorklow.bpmn similarity index 91% rename from forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/processes/Bundling/callActivity/SOSCBundleWorklow.bpmn rename to forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/processes/Bundling/subProcess/SOSCBundleWorklow.bpmn index b3f92fd2..cd969b3b 100644 --- a/forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/processes/Bundling/callActivity/SOSCBundleWorklow.bpmn +++ b/forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/processes/Bundling/subProcess/SOSCBundleWorklow.bpmn @@ -1,20 +1,16 @@ - + - Activity_0a9pnut - Gateway_1qqphxe + StartEvent_1 Activity_1v5ffpw Activity_1ozfgid - Activity_0k6ixqm - StartEvent_1 - Gateway_08cgufe - Activity_15772wo Gateway_17raw62 + Activity_0k6ixqm Activity_1uc1xs1 @@ -65,22 +61,6 @@ ${action == 'Recheck'} - - - ${applicationStatus== 'Signed'} - - - - - var system = java.lang.System; -system.out.println ("site owner flow"); - - - ${owneroperatorradioGroup=='different'} - - - ${owneroperatorradioGroup=='sameAsApplicant'} - @@ -105,7 +85,7 @@ system.out.println ("site owner flow"); ${action == 'Returned'} - + @@ -140,20 +120,6 @@ system.out.println ("site owner flow"); ${riskclassification != 'exempt'} - - - - var system = java.lang.System; -execution.setVariable('isSentFromSociety',false); -system.out.println ("isSentFromSociety "+ execution.getVariable('isSentFromSociety')); - - - ${directToMinistryApplication} - - - - ${directToMinistryApplication} - ${action == 'Accepted'} @@ -192,10 +158,9 @@ system.out.println ("isSentFromSociety "+ execution.getVariable('isSentFromSocie ${applicationStatus== 'Resubmitted' and isAp== true} - + ${applicationStatus!= 'Resubmitted'} - Flow_0bz8atu Flow_19ktqsm @@ -220,131 +185,14 @@ task.execution.setVariable('deleteReason', "completed"); - Flow_1quswsc Flow_0gb2oz2 Flow_0wr0mei Flow_0lgivc3 Flow_0bz8atu - - - - - task.execution.setVariable('applicationStatus', task.execution.getVariable('action')); -task.execution.setVariable('deleteReason', "completed"); - - - - - ["applicationId", "applicationStatus"] - - - - Flow_1xx7tz6 - Flow_16fwgn1 - - - Flow_05pndkl - Flow_1asq9fa - Flow_1xx7tz6 - - - - - execution.setVariable('applicationStatus', "Resubmit"); -execution.setVariable('returnedBy', "cssaTeam"); - - - - - ["applicationId", "applicationStatus"] - - - - - Flow_19ktqsm - Flow_12uv3km - Flow_0qw9o9a - Flow_0wxa7vb - Flow_0b5e332 - Flow_1stifo9 - - - Flow_0dbqph3 - Flow_1stifo9 - Flow_05pndkl - var system = java.lang.System; -var riskclassification = execution.getVariable('riskclassification'); -system.out.println ("riskclassification "+riskclassification); -var directToMinistryApplication= execution.getVariable('directToMinistryApplication'); -system.out.println ("directToMinistryApplication? "+ directToMinistryApplication); -execution.setVariable('directToMinistryApplication',directToMinistryApplication); - -var contactEmail = execution.getVariable('contactPersonEmailAddress'); -execution.setVariable('contactEmail', contactEmail); - -var apEmail = execution.getVariable('contactPersonEmailAddress2'); -execution.setVariable('apEmail', apEmail); -system.out.println("apEmail" + apEmail); - -var clientEmail = execution.getVariable('ownerEmailAddress'); -system.out.println ("clientEmail "+clientEmail); -execution.setVariable('clientEmail',clientEmail); - -var agentEmail = execution.getVariable('contactPersonEmailAddress1'); -execution.setVariable('agentEmail',agentEmail); -system.out.println("agentEmail"+agentEmail); - -var siteRiskClassification = execution.getVariable('siteRiskClassification'); -system.out.println ("siteRiskClassification "+siteRiskClassification ); -execution.setVariable('siteRiskClassification',siteRiskClassification); - - -var isOwnerApplicant= execution.getVariable('isApplicantSameAsAbove'); -var hiddenUserIdForFormSharingApplicantAsOwner = execution.getVariable('hiddenUserIdForFormSharingApplicantAsOwner'); -var hiddenUserIdForFormSharingWithDiffOwner = execution.getVariable('hiddenUserIdForFormSharingWithDiffOwner'); -var userIdForSharing = ''; - - -system.out.println ("isOwnerApplicant"+isOwnerApplicant); -system.out.println ("hiddenUserIdForFormSharingApplicantAsOwner"+hiddenUserIdForFormSharingApplicantAsOwner); -system.out.println ("hiddenUserIdForFormSharingWithDiffOwner "+hiddenUserIdForFormSharingWithDiffOwner); - - -if(isOwnerApplicant) - { - system.out.println("owneroperatorradioGroup"+hiddenUserIdForFormSharingApplicantAsOwner); - userIdForSharing = hiddenUserIdForFormSharingApplicantAsOwner; - - } - else - { - - system.out.println("WithDiffOwner"+hiddenUserIdForFormSharingWithDiffOwner); - userIdForSharing = hiddenUserIdForFormSharingWithDiffOwner; - - } - -system.out.println ("userIdForSharing"+userIdForSharing); -execution.setVariable('userIdForSharing',userIdForSharing); - - - Flow_1rc30l8 - Flow_0dbqph3 - var system = java.lang.System; -system.out.println ("Submit Bundle"); -execution.setVariable('isAp',false); -execution.setVariable('isSociety',false); -execution.setVariable('isCssaTeam',false); - Flow_1rc30l8 - - Flow_1xj96i6 - Flow_1quswsc - Flow_142lsgk - @@ -387,9 +235,9 @@ task.execution.setVariable('deleteReason', "completed"); - Flow_142lsgk Flow_0pzpbn7 Flow_0527h3y + Flow_1xj96i6 Flow_0b418rv @@ -409,26 +257,6 @@ task.execution.setVariable('deleteReason', "completed"); ${applicationStatus== 'Resubmitted' and isSdm== true} - - - - var system = java.lang.System; -system.out.println ("form signed"); - - - Flow_1asq9fa - Flow_16fwgn1 - Flow_0ohuh4k - - - Flow_0ohuh4k - Flow_1xj96i6 - Flow_0527h3y - Flow_0543g25 - Flow_0wr0mei - Flow_0d8ioqs - Flow_0ovj0pk - ${action == 'Recheck' and isSentFromSociety == true} @@ -497,7 +325,7 @@ task.execution.setVariable('srcrStatus', task.execution.getVariable('action')); task.execution.setVariable('applicationStatus', task.execution.getVariable('action')); - + Flow_0cdvwnp @@ -540,7 +368,7 @@ task.execution.setVariable('srcrStatus', task.execution.getVariable('action')); task.execution.setVariable('applicationStatus', task.execution.getVariable('action')); - + Flow_0qaeplv @@ -630,7 +458,7 @@ task.execution.setVariable('srcrStatus', task.execution.getVariable('action')); task.execution.setVariable('applicationStatus', task.execution.getVariable('action')); - + Flow_0c71o5w @@ -900,13 +728,13 @@ system.out.println ("Sent to SDM"); task.execution.setVariable('requestStatus', task.execution.getVariable('action')); -task.execution.setVariable('requestType', 'CSSA'); +task.execution.setVariable('requestType', 'SoSC'); task.execution.setVariable('soscStatus', task.execution.getVariable('action')); task.execution.setVariable('applicationStatus', task.execution.getVariable('action')); task.execution.setVariable('deleteReason', "completed"); - + Flow_130v3rp @@ -950,17 +778,17 @@ task.execution.setVariable('deleteReason', "completed"); task.execution.setVariable('task_id',task.getId()); -task.execution.setVariableLocal('variable1',"cssa"); +task.execution.setVariableLocal('variable1',"sosc"); task.execution.setVariable('requestStatus', task.execution.getVariable('action')); -task.execution.setVariable('requestType', 'CSSA'); +task.execution.setVariable('requestType', 'SoSC'); task.execution.setVariable('soscStatus', task.execution.getVariable('action')); task.execution.setVariable('applicationStatus', task.execution.getVariable('action')); task.execution.setVariable('deleteReason', "completed"); - + Flow_0go33vq @@ -994,7 +822,7 @@ task.execution.setVariable('deleteReason', "completed"); Flow_18exjmw Flow_0orrcue var system = java.lang.System; -system.out.println ("Begin CSSA Flow - Sent To Caseworker"); +system.out.println ("Begin SoSC Flow - Sent To Caseworker"); execution.setVariable('isCaseworker',false); system.out.println ("isSentFromSociety "+execution.getVariable('isSentFromSociety')); @@ -1038,7 +866,7 @@ execution.setVariable('soscStatus', "Resubmitted"); - execution.setVariable('cssaFormUrl', execution.getVariable('formUrl')); + execution.setVariable('soscFormUrl', execution.getVariable('formUrl')); @@ -1086,7 +914,7 @@ execution.setVariable('soscStatus', "Resubmitted"); - execution.setVariable('cssaFormUrl', execution.getVariable('formUrl')); + execution.setVariable('soscFormUrl', execution.getVariable('formUrl')); @@ -1119,7 +947,7 @@ execution.setVariable('soscStatus', "Resubmitted"); execution.setVariable('requestStatus', 'New'); -execution.setVariable('requestType', 'CSSA'); +execution.setVariable('requestType', 'SoSC'); @@ -1150,7 +978,7 @@ execution.setVariable('requestType', 'CSSA'); Flow_0izwlc1 - + task.execution.setVariable('isSdm',false); @@ -1170,7 +998,7 @@ task.execution.setVariable('deleteReason', "completed"); Flow_07vh0na Flow_08c8ij1 - + task.execution.setVariable('isCaseworker',false); @@ -1201,7 +1029,7 @@ task.execution.setVariable('deleteReason', "completed"); Flow_1jxxrt6 Flow_0qiqnks var system = java.lang.System; -system.out.println ("Begin CSSA Individual Flow - Sent To Caseworker"); +system.out.println ("Begin SoSC Individual Flow - Sent To Caseworker"); execution.setVariable('isCaseworker',false); system.out.println ("isSentFromSociety "+execution.getVariable('isSentFromSociety')); @@ -1233,7 +1061,7 @@ system.out.println ("Sent to SDM"); - + ${action == 'Rejected' or action == 'Approved' } @@ -1243,7 +1071,7 @@ system.out.println ("Sent to SDM"); - execution.setVariable('formUrl', execution.getVariable('cssaFormUrl')); + execution.setVariable('formUrl', execution.getVariable('soscFormUrl')); @@ -1293,15 +1121,15 @@ execution.setVariable("applicationStatus", "Rejected"); Flow_02ysv7t Flow_026ykts var system = java.lang.System; -var selectCssaSdm= execution.getVariable('selectCssaSdm'); -system.out.println ("selectCssaSdm"+selectCssaSdm); -execution.setVariable('cssaSdmAssignment',selectCssaSdm); -system.out.println ("cssaSdmAssignment"+execution.getVariable('cssaSdmAssignment')); +var selectSoscSdm= execution.getVariable('selectSoscSdm'); +system.out.println ("selectSoscSdm"+selectSoscSdm); +execution.setVariable('soscSdmAssignment',selectSoscSdm); +system.out.println ("soscSdmAssignment"+execution.getVariable('soscSdmAssignment')); -var selectCssaCaseworker= execution.getVariable('selectCssaCaseworker'); -system.out.println ("selectCssaCaseworker"+selectCssaCaseworker); -execution.setVariable('cssaCaseworkerAssignment',selectCssaCaseworker); -system.out.println ("cssaCaseworkerAssignment"+execution.getVariable('cssaCaseworkerAssignment')); +var selectSoscCaseworker= execution.getVariable('selectSoscCaseworker'); +system.out.println ("selectSoscCaseworker"+selectSoscCaseworker); +execution.setVariable('soscCaseworkerAssignment',selectSoscCaseworker); +system.out.println ("soscCaseworkerAssignment"+execution.getVariable('soscCaseworkerAssignment')); var selectSdm= execution.getVariable('selectSdm'); system.out.println ("selectSdm"+selectSdm); @@ -1325,6 +1153,73 @@ system.out.println ("srcoAssignment"+execution.getVariable('srcoAssignment')); Flow_0lgivc3 + + + + execution.setVariable('applicationStatus', "Resubmit"); +execution.setVariable('returnedBy', "cssaTeam"); + + + + + ["applicationId", "applicationStatus"] + + + + + Flow_19ktqsm + Flow_12uv3km + Flow_0qw9o9a + Flow_0wxa7vb + Flow_0b5e332 + Flow_1stifo9 + + + Flow_0dbqph3 + Flow_1stifo9 + Flow_05pndkl + var system = java.lang.System; + +execution.setVariable('riskclassification','required'); +system.out.println ("riskclassification"+ execution.getVariable('riskclassification')); + +var contactEmail = execution.getVariable('contactPersonEmailAddress'); +execution.setVariable('contactEmail', contactEmail); + +var apEmail = execution.getVariable('contactPersonEmailAddress2'); +execution.setVariable('apEmail', apEmail); +system.out.println("apEmail" + apEmail); + +var clientEmail = execution.getVariable('ownerEmailAddress'); +system.out.println ("clientEmail "+clientEmail); +execution.setVariable('clientEmail',clientEmail); + +var agentEmail = execution.getVariable('contactPersonEmailAddress1'); +execution.setVariable('agentEmail',agentEmail); +system.out.println("agentEmail"+agentEmail); + +var siteRiskClassification = execution.getVariable('siteRiskClassification'); +system.out.println ("siteRiskClassification "+siteRiskClassification ); +execution.setVariable('siteRiskClassification',siteRiskClassification); + + + Flow_05pndkl + Flow_1xj96i6 + Flow_0527h3y + Flow_0543g25 + Flow_0wr0mei + Flow_0d8ioqs + Flow_0ovj0pk + + + Flow_1rc30l8 + Flow_0dbqph3 + var system = java.lang.System; +system.out.println ("Submit Bundle"); +execution.setVariable('isAp',false); +execution.setVariable('isSociety',false); +execution.setVariable('isCssaTeam',false); + @@ -1367,38 +1262,12 @@ system.out.println ("srcoAssignment"+execution.getVariable('srcoAssignment')); - - - - - - - - - - - - - - - - - - - - - - - - - - @@ -1419,19 +1288,25 @@ system.out.println ("srcoAssignment"+execution.getVariable('srcoAssignment')); - - + + + + + + + + + - + - + - - - + + @@ -1966,29 +1841,10 @@ system.out.println ("srcoAssignment"+execution.getVariable('srcoAssignment')); - - - - - - - - - - - - - - - - - - - - + @@ -1997,7 +1853,7 @@ system.out.println ("srcoAssignment"+execution.getVariable('srcoAssignment')); - + @@ -2006,29 +1862,29 @@ system.out.println ("srcoAssignment"+execution.getVariable('srcoAssignment')); - + - - + + - - + + - + - - + + - + @@ -2037,22 +1893,6 @@ system.out.println ("srcoAssignment"+execution.getVariable('srcoAssignment')); - - - - - - - - - - - - - - - - @@ -2064,7 +1904,7 @@ system.out.println ("srcoAssignment"+execution.getVariable('srcoAssignment')); - + @@ -2086,7 +1926,7 @@ system.out.println ("srcoAssignment"+execution.getVariable('srcoAssignment')); - + @@ -2103,49 +1943,45 @@ system.out.println ("srcoAssignment"+execution.getVariable('srcoAssignment')); - - + + - - + + - - + + - + - - + + - + - - - - - - + + - + - - + + From 3ede482bbe54286dd54f748d31fe2c68079f9101 Mon Sep 17 00:00:00 2001 From: nikhila-aot Date: Wed, 4 Oct 2023 09:12:03 -0700 Subject: [PATCH 112/194] fix for issue 119 --- ...nated Sites Services Application Form.json | 286 +++++++++++++++++- 1 file changed, 274 insertions(+), 12 deletions(-) diff --git a/forms-flow-ai/epd-forms/bundling/Contaminated Sites Services Application Form.json b/forms-flow-ai/epd-forms/bundling/Contaminated Sites Services Application Form.json index ce244b29..5073bacd 100644 --- a/forms-flow-ai/epd-forms/bundling/Contaminated Sites Services Application Form.json +++ b/forms-flow-ai/epd-forms/bundling/Contaminated Sites Services Application Form.json @@ -742,6 +742,268 @@ "lazyLoad": false, "id": "eesyhf1" }, + { + "title": "Site Owner Actions", + "theme": "default", + "tooltip": "", + "customClass": "", + "collapsible": false, + "hidden": false, + "hideLabel": false, + "disabled": false, + "modalEdit": false, + "key": "cssaSiteOwnerActions", + "tags": [], + "properties": {}, + "customConditional": "const UserDetails = JSON.parse(localStorage.getItem(\"UserDetails\"))\r\n\r\n\r\n\r\nconst roles = UserDetails[\"role\"];\r\n\r\nif (data.riskclassification === \"exempt\") {\r\n if(roles.includes(\"formsflow-reviewer/formsflow-client-reviewer\") && data.applicationStatus !== undefined && data.applicationStatus !== '') {\r\n show = true;\r\n }\r\n else\r\n {\r\n show = false;\r\n }\r\n} else\r\n show = false;\r\n }", + "conditional": { + "json": "", + "show": null, + "when": null, + "eq": "" + }, + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "panel", + "label": "Panel", + "breadcrumb": "default", + "tabindex": "", + "input": false, + "tableView": false, + "components": [ + { + "label": "Columns", + "columns": [ + { + "components": [ + { + "label": "Submit Bundle", + "action": "custom", + "showValidations": false, + "tableView": false, + "key": "submitBundle", + "type": "button", + "custom": "form.emit('customEvent', {\r\n type: \"actionComplete\", \r\n component: component,\r\n actionType:'Signed'\r\n });", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": true, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "size": "md", + "leftIcon": "", + "rightIcon": "", + "block": false, + "disableOnInvalid": false, + "theme": "primary", + "id": "e29fdgb" + } + ], + "width": 3, + "offset": 0, + "push": 0, + "pull": 0, + "size": "md", + "currentWidth": 3 + }, + { + "components": [], + "width": 3, + "offset": 0, + "push": 0, + "pull": 0, + "size": "md", + "currentWidth": 3 + }, + { + "components": [], + "size": "md", + "width": 3, + "offset": 0, + "push": 0, + "pull": 0, + "currentWidth": 3 + }, + { + "components": [], + "size": "md", + "width": 3, + "offset": 0, + "push": 0, + "pull": 0, + "currentWidth": 3 + } + ], + "key": "columns2", + "type": "columns", + "input": false, + "tableView": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "hidden": false, + "clearOnHide": false, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "tree": false, + "lazyLoad": false, + "autoAdjust": false, + "id": "eq33mem" + } + ], + "keyModified": true, + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "clearOnHide": false, + "refreshOn": "", + "redrawOn": "", + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "tree": false, + "lazyLoad": false, + "id": "edb2y6f" + }, { "title": "Reviewer Actions", "theme": "default", @@ -7350,7 +7612,7 @@ "addons": [], "tree": false, "lazyLoad": false, - "id": "ehmz9lv00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" + "id": "ehmz9lv00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" } ], "placeholder": "", @@ -8993,7 +9255,7 @@ } ], "collapsible": false, - "id": "ewhx8sm0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "id": "ewhx8sm0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", "placeholder": "", "prefix": "", "customClass": "", @@ -18161,7 +18423,7 @@ }, "inputMask": "999-999-999", "tableView": true, - "id": "elva880000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "id": "elva880000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", "placeholder": "", "prefix": "", "customClass": "", @@ -18241,7 +18503,7 @@ "tableView": true, "autoExpand": true, "inputFormat": "plain", - "id": "ey48nu0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "id": "ey48nu0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", "placeholder": "", "prefix": "", "customClass": "", @@ -18616,7 +18878,7 @@ "input": true, "label": "PIN", "tableView": true, - "id": "eyxe45n0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "id": "eyxe45n0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", "placeholder": "", "prefix": "", "customClass": "", @@ -18709,7 +18971,7 @@ "autoExpand": true, "inputFormat": "plain", "placeholder": "example, metes and bounds", - "id": "efdcvf0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "id": "efdcvf0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", "prefix": "", "customClass": "", "suffix": "", @@ -18923,7 +19185,7 @@ "input": true, "label": "Crown Land File Numbers", "tableView": true, - "id": "emf4u7g0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "id": "emf4u7g0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", "placeholder": "", "prefix": "", "customClass": "", @@ -19975,7 +20237,7 @@ }, "inputMask": "999-999-999", "tableView": true, - "id": "ev43oe90000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "id": "ev43oe90000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", "placeholder": "", "prefix": "", "customClass": "", @@ -20055,7 +20317,7 @@ "tableView": true, "autoExpand": true, "inputFormat": "plain", - "id": "eb3d0l0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "id": "eb3d0l0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", "placeholder": "", "prefix": "", "customClass": "", @@ -20430,7 +20692,7 @@ "input": true, "label": "PIN", "tableView": true, - "id": "eyv4fcu000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "id": "eyv4fcu000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", "placeholder": "", "prefix": "", "customClass": "", @@ -20523,7 +20785,7 @@ "autoExpand": true, "inputFormat": "plain", "placeholder": "example, metes and bounds", - "id": "ecgeub000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "id": "ecgeub000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", "prefix": "", "customClass": "", "suffix": "", @@ -20737,7 +20999,7 @@ "input": true, "label": "Crown Land File Numbers", "tableView": true, - "id": "eguyyh000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "id": "eguyyh000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", "placeholder": "", "prefix": "", "customClass": "", From 64654dbd4aeea39c46ce1ec989146d12bfb11a73 Mon Sep 17 00:00:00 2001 From: sakthi-aot <81777282+sakthi-aot@users.noreply.github.com> Date: Wed, 4 Oct 2023 11:17:03 -0600 Subject: [PATCH 113/194] Ss 60 GitHub actions bug (#534) * test auto trigger issue * test auto deploy * test auto deploy * test auto trigger * test auto deploy * test * test * test auto trigger * test auto trigger * test * test auto trigger * test auto trigger * test auto trigger --- .github/workflows/cd-forms-flow-bpm.yaml | 8 +++++--- .github/workflows/cd-forms-flow-nav.yaml | 10 ++++++---- .github/workflows/cd-forms-flow-theme.yaml | 10 ++++++---- .github/workflows/cd-forms-flow-web-ee.yaml | 10 ++++++---- .github/workflows/cd-forms-flow-web-root-config.yaml | 11 ++++++----- .../bundling/Site Risk Classification Report.json | 2 +- 6 files changed, 30 insertions(+), 21 deletions(-) diff --git a/.github/workflows/cd-forms-flow-bpm.yaml b/.github/workflows/cd-forms-flow-bpm.yaml index cd044a70..71c21cb5 100644 --- a/.github/workflows/cd-forms-flow-bpm.yaml +++ b/.github/workflows/cd-forms-flow-bpm.yaml @@ -11,10 +11,12 @@ on: branches: - dev - main - - feat/task-228 # Remove in future, just to verify this works + - ss-60-github-actions-bug #test auto trigger issue#test1 paths: - - "forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm" - - ".github/workflows/cd-forms-flow-bpm.yaml" + - 'backend/**' + - 'frontend/**' + - 'forms-flow-ai/**' + - '.github/workflows/**' defaults: run: diff --git a/.github/workflows/cd-forms-flow-nav.yaml b/.github/workflows/cd-forms-flow-nav.yaml index 50e43cff..f2e19d0a 100644 --- a/.github/workflows/cd-forms-flow-nav.yaml +++ b/.github/workflows/cd-forms-flow-nav.yaml @@ -1,4 +1,4 @@ -name: forms-flow-web Custom +name: forms-flow-nav Custom on: workflow_dispatch: @@ -11,10 +11,12 @@ on: branches: - dev - main - - epdds-270 # Remove in future, just to verify this works + paths: - - "forms-flow-ai/forms-flow-ai-micro-front-ends/forms-flow-nav" - - ".github/workflows/cd-forms-flow-nav.yaml" + - 'backend/**' + - 'frontend/**' + - 'forms-flow-ai/**' + - '.github/workflows/**' defaults: run: diff --git a/.github/workflows/cd-forms-flow-theme.yaml b/.github/workflows/cd-forms-flow-theme.yaml index 7a9569ff..02a68831 100644 --- a/.github/workflows/cd-forms-flow-theme.yaml +++ b/.github/workflows/cd-forms-flow-theme.yaml @@ -1,4 +1,4 @@ -name: forms-flow-web Custom +name: forms-flow-web-theme Custom on: workflow_dispatch: @@ -11,10 +11,12 @@ on: branches: - dev - main - - epdds-270 # Remove in future, just to verify this works + paths: - - "forms-flow-ai/forms-flow-ai-micro-front-ends/forms-flow-theme" - - ".github/workflows/cd-forms-flow-theme.yaml" + - 'backend/**' + - 'frontend/**' + - 'forms-flow-ai/**' + - '.github/workflows/**' defaults: run: diff --git a/.github/workflows/cd-forms-flow-web-ee.yaml b/.github/workflows/cd-forms-flow-web-ee.yaml index b30f1723..c45f8b6c 100644 --- a/.github/workflows/cd-forms-flow-web-ee.yaml +++ b/.github/workflows/cd-forms-flow-web-ee.yaml @@ -1,4 +1,4 @@ -name: forms-flow-web Custom +name: forms-flow-web-ee Custom on: workflow_dispatch: @@ -11,10 +11,12 @@ on: branches: - dev - main - - epdds-270 # Remove in future, just to verify this works + paths: - - "forms-flow-ai/forms-flow-ai-ee/forms-flow-web" - - ".github/workflows/cd-forms-flow-web-ee.yaml" + - 'backend/**' + - 'frontend/**' + - 'forms-flow-ai/**' + - '.github/workflows/**' defaults: run: diff --git a/.github/workflows/cd-forms-flow-web-root-config.yaml b/.github/workflows/cd-forms-flow-web-root-config.yaml index 1bcdfa7c..e3889920 100644 --- a/.github/workflows/cd-forms-flow-web-root-config.yaml +++ b/.github/workflows/cd-forms-flow-web-root-config.yaml @@ -1,4 +1,4 @@ -name: forms-flow-web Custom +name: forms-flow-web-root-config Custom on: workflow_dispatch: @@ -11,11 +11,12 @@ on: branches: - dev - main - - epdds-270 # Remove in future, just to verify this works - - epdds-270-fix # Remove in future, just to verify this works + paths: - - "forms-flow-ai/forms-flow-ai-ee/forms-flow-web-root-config" - - ".github/workflows/cd-forms-flow-web-root-config.yaml" + - 'backend/**' + - 'frontend/**' + - 'forms-flow-ai/**' + - '.github/workflows/**' defaults: run: diff --git a/forms-flow-ai/epd-forms/bundling/Site Risk Classification Report.json b/forms-flow-ai/epd-forms/bundling/Site Risk Classification Report.json index 33023841..eba882ea 100644 --- a/forms-flow-ai/epd-forms/bundling/Site Risk Classification Report.json +++ b/forms-flow-ai/epd-forms/bundling/Site Risk Classification Report.json @@ -19738,4 +19738,4 @@ ] } ] -} \ No newline at end of file +} From 05899c3dc00f95638f56ea34e464538a81994575 Mon Sep 17 00:00:00 2001 From: midhun-aot Date: Thu, 5 Oct 2023 00:31:45 -0700 Subject: [PATCH 114/194] latest changes for NOM email integrations --- .../subProcess/NOMBundleWorkflow.bpmn | 231 +++++++++--------- .../processes/Common/CommonEmailWorkflow.bpmn | 19 +- .../processes/Common/email-template.dmn | 26 ++ .../templates/nom_application.ftl | 69 ++++++ 4 files changed, 218 insertions(+), 127 deletions(-) create mode 100644 forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/templates/nom_application.ftl diff --git a/forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/processes/Bundling/subProcess/NOMBundleWorkflow.bpmn b/forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/processes/Bundling/subProcess/NOMBundleWorkflow.bpmn index e5f2cfcf..3e0018b0 100644 --- a/forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/processes/Bundling/subProcess/NOMBundleWorkflow.bpmn +++ b/forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/processes/Bundling/subProcess/NOMBundleWorkflow.bpmn @@ -17,7 +17,6 @@ Activity_06nypz0 - Event_0ml6v2t Gateway_1pd38qv Activity_0ro66yt Gateway_0nd8s9d @@ -29,6 +28,7 @@ Gateway_15uoiyo Activity_123733v Activity_0hieobd + Event_0ml6v2t @@ -48,9 +48,18 @@ execution.setVariable('name','Test'); system.out.println ("emailTo "+execution.getVariable('emailTo')); system.out.println ("name "+execution.getVariable('name')); -system.out.println("dataGrid length"+ dataGrid.length); +system.out.println("dataGrid simple"+ dataGrid); +system.out.println("dataGrid exe"+ execution.getVariable('dataGrid')); + +system.out.println ("emailsToArray before "+execution.getVariable('emailsToArray')); + +var dataGridObject = null; + +dataGridObject = JSON.parse(dataGrid); + + var listOwnerEmailAddress = []; -var dataGridObject = JSON.parse(dataGrid); + for(i in dataGridObject) { if(dataGridObject[i] !== null && dataGridObject[i] != undefined ) @@ -64,21 +73,22 @@ for(i in dataGridObject) } if(listOwnerEmailAddress.length > 0) -{ - execution.setVariable('emailsToArray',JSON.stringify(listOwnerEmailAddress)); +{ + execution.setVariable("emailTo", Java.to(listOwnerEmailAddress, "java.lang.Object[]")); } execution.setVariable('EmailType','nom'); -system.out.println ("emailsToArray "+execution.getVariable('emailsToArray')); - +system.out.println ("emailsToArray after "+execution.getVariable('emailsToArray')); +execution.setVariable('formName','Notification of Likely or Actual Migration'); - task.execution.setVariable('isCssaTeam',false); + task.execution.setVariable('isCssaTeam',false); +task.execution.setVariable('userRole','Site Information Advisor'); @@ -97,9 +107,6 @@ task.execution.setVariable('deleteReason', "completed"); Flow_1oam11w Flow_0l71ern - - Flow_0x0w3ip - @@ -227,7 +234,8 @@ system.out.println ("Sent to Caseworker"); task.execution.setVariable('task_id',task.getId()); -task.execution.setVariableLocal('variable1',"srcr"); +task.execution.setVariableLocal('variable1',"srcr"); +task.execution.setVariable('userRole','Case Worker'); task.execution.setVariable('requestStatus', task.execution.getVariable('action')); @@ -269,7 +277,9 @@ system.out.println ("Sent to SDM"); - task.execution.setVariable('task_id',task.getId()); + task.execution.setVariable('task_id',task.getId()); +task.execution.setVariable('userRole','Statutory Decision Maker'); + task.execution.setVariable('requestStatus', task.execution.getVariable('action')); @@ -353,7 +363,8 @@ system.out.println ("isSentFromSociety "+execution.getVariable('isSentFromSociet task.execution.setVariable('task_id',task.getId()); -task.execution.setVariableLocal('variable1',"srcr"); +task.execution.setVariableLocal('variable1',"srcr"); +task.execution.setVariable('userRole','Site Risk Classification Officer'); task.execution.setVariable('requestStatus', task.execution.getVariable('action')); @@ -656,7 +667,7 @@ execution.setVariable('requestType', 'SRCR'); Flow_04l5mhw Flow_00msr8t - + Flow_00msr8t Flow_10qa12g var system = java.lang.System; @@ -731,6 +742,9 @@ system.out.println ("srcoAssignment"+execution.getVariable('srcoAssignment')); + + Flow_0x0w3ip + @@ -752,6 +766,47 @@ system.out.println ("srcoAssignment"+execution.getVariable('srcoAssignment')); + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -787,15 +842,9 @@ system.out.println ("srcoAssignment"+execution.getVariable('srcoAssignment')); - - - - - - - + @@ -828,43 +877,6 @@ system.out.println ("srcoAssignment"+execution.getVariable('srcoAssignment')); - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - @@ -879,59 +891,25 @@ system.out.println ("srcoAssignment"+execution.getVariable('srcoAssignment')); - - - - - - + + + + + + - - - - - - + + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - @@ -1076,11 +1054,11 @@ system.out.println ("srcoAssignment"+execution.getVariable('srcoAssignment')); - - + + - + @@ -1218,11 +1196,46 @@ system.out.println ("srcoAssignment"+execution.getVariable('srcoAssignment')); - - + + + - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/processes/Common/CommonEmailWorkflow.bpmn b/forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/processes/Common/CommonEmailWorkflow.bpmn index a4baee00..0ba457da 100644 --- a/forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/processes/Common/CommonEmailWorkflow.bpmn +++ b/forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/processes/Common/CommonEmailWorkflow.bpmn @@ -68,28 +68,11 @@ system.out.println ("name: "+name); "from": "NOREPLYEPD@gov.bc.ca", "priority": "normal", "subject": execution.getVariable("subject"), - "to": [], + "to": execution.getVariable("emailTo"), "tag": "", "attachments": [] } -if(applicationType==="nom") -{ - console.log("nom emails",toEmailListArray); - console.log("nom emails type",typeof toEmailListArray); - var toEmailListArrayObj = JSON.parse(toEmailListArray); - console.log("toEmailListArrayObj",toEmailListArrayObj); - for(i in toEmailListArrayObj) - { - p.to.push(toEmailListArrayObj[i]); - } -} -else -{ - p.to.push(execution.getVariable("emailTo")) -} - - console.log("Payload") console.log(JSON.stringify(p)) JSON.stringify(p) diff --git a/forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/processes/Common/email-template.dmn b/forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/processes/Common/email-template.dmn index 47bb2c94..ce8a40d6 100644 --- a/forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/processes/Common/email-template.dmn +++ b/forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/processes/Common/email-template.dmn @@ -92,6 +92,32 @@ "epd-support@gov.bc.ca" + + + "dera_updated" + + + + + + "NOREPLYEPD@gov.bc.ca" + + + + + + + + + "Detailed Ecological Risk Assessment Checklist" + + + "templates/nom_application.ftl" + + + "epd-support@gov.bc.ca" + + diff --git a/forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/templates/nom_application.ftl b/forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/templates/nom_application.ftl new file mode 100644 index 00000000..f2dc0edb --- /dev/null +++ b/forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/templates/nom_application.ftl @@ -0,0 +1,69 @@ + + + + + + + + + + + +
checkAll(e.target.checked)} />{header.label}SR
+ handleCheck({ index, event })} /> +
{{ component.label }}Actions
\n {{ getView(component, row[component.key]) }}\n \n
\n \n {% if (!instance.hasRemoveButtons || instance.hasRemoveButtons()) { %}\n \n {% } %}\n
\n
+ + + + +
+ + + Site Remediation System +
+ + + + + + + + + + + + + + + + + + + +
+
+
+

+ Notification of Likely or Actual Migration. +

+
+

+ Hello ${name}, +

+

+ Your Notification of Likely or Actual Migration application has been updated. Current status is ${action}. +

+
+

+ If you need any help, don’t hesitate to reach out to us at ${support} +

+
+
+
+ +

EPD will never send an email that asks you to provide, confirm or verify personal, log on or account information. + DO NOT reply to this email as it was sent from an unmonitored account. +

+
+ + \ No newline at end of file From a545d43d8240be05c6bd631b94e656277f41b212 Mon Sep 17 00:00:00 2001 From: midhun-aot Date: Thu, 5 Oct 2023 00:33:05 -0700 Subject: [PATCH 115/194] initial changes for DERA email integrations --- .../subProcess/DERABundleWorkflow.bpmn | 2487 ++++++++++++++++- 1 file changed, 2432 insertions(+), 55 deletions(-) diff --git a/forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/processes/Bundling/subProcess/DERABundleWorkflow.bpmn b/forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/processes/Bundling/subProcess/DERABundleWorkflow.bpmn index 00722660..265c91e7 100644 --- a/forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/processes/Bundling/subProcess/DERABundleWorkflow.bpmn +++ b/forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/processes/Bundling/subProcess/DERABundleWorkflow.bpmn @@ -1,9 +1,237 @@ -Activity_1v5ffpwActivity_1ozfgidActivity_0k6ixqmStartEvent_1Gateway_08cgufeActivity_15772woGateway_17raw62Activity_1uc1xs1Gateway_04o747eGateway_0oobb3zActivity_08ykdarActivity_1ao3zkjGateway_15p5urdActivity_0p4hm8rGateway_1lbpcugEvent_0sdygwcActivity_1hs3djaActivity_1bsz2qmGateway_1lgyz1hActivity_0tsm937Gateway_0o9l3lpActivity_15e3ho6Gateway_1m36jweGateway_0uf75owActivity_1bhbq4yActivity_07ttn7qActivity_0vo5rlsGateway_1chdummActivity_1qnqtakGateway_1lfy3cm${action == 'Accepted'}${action == 'Rejected'}${riskclassification == 'exempt'}${action == 'Recheck'}execution.setVariable('isSdm',true);${action == 'Returned'}execution.setVariable('isCaseworker',true);${action == 'Returned'}execution.setVariable('isCssaTeam',true);${action == 'Returned'}execution.setVariable('applicationStatus', "Resubmitted");["applicationId", "applicationStatus"]["applicationId", "applicationStatus"]execution.setVariable('bundleUrl', execution.getVariable('formUrl'));${riskclassification != 'exempt'}var system = java.lang.System; + + + + + + + + Activity_1v5ffpw + Activity_1ozfgid + Activity_0k6ixqm + StartEvent_1 + Gateway_08cgufe + Activity_15772wo + Gateway_17raw62 + + + Activity_1uc1xs1 + Activity_1os7sys + Gateway_04o747e + Gateway_04zwcaq + Event_1mmor63 + + + Activity_08ykdar + Gateway_0oobb3z + Gateway_1jh43p2 + + + Activity_1ao3zkj + Gateway_15p5urd + Gateway_1p7skmz + + + Gateway_1lbpcug + Activity_1hs3dja + Activity_1bsz2qm + Gateway_1lgyz1h + Activity_0tsm937 + Activity_15e3ho6 + Gateway_1m36jwe + Gateway_0uf75ow + Activity_07ttn7q + Activity_1bhbq4y + Gateway_0o9l3lp + Gateway_0vaxmur + Event_0sdygwc + Activity_0q5r5d4 + Gateway_0uti2q1 + + + Activity_0vo5rls + Gateway_1chdumm + Activity_1qnqtak + Gateway_1lfy3cm + + + + ${action == 'Accepted'} + + + + + + ${riskclassification == 'exempt'} + + + ${action == 'Recheck'} + + + + + execution.setVariable('isSdm',true); + + + ${action == 'Returned'} + + + + + execution.setVariable('isCaseworker',true); + + + ${action == 'Returned'} + + + + + execution.setVariable('isCssaTeam',true); + + + ${action == 'Returned'} + + + + + + + execution.setVariable('applicationStatus', "Resubmitted"); + + + + ["applicationId", "applicationStatus"] + + + + + + + + + + + + ["applicationId", "applicationStatus"] + + + + + + + + + execution.setVariable('bundleUrl', execution.getVariable('formUrl')); + + + ${riskclassification != 'exempt'} + + + + + var system = java.lang.System; execution.setVariable('isSentFromSociety',false); -system.out.println ("isSentFromSociety "+ execution.getVariable('isSentFromSociety'));${typeOfReview== 'directToMinistryApplication'}${typeOfReview!= 'directToMinistryApplication'}${action == 'Accepted'}execution.setVariable('isAp',true);${action == 'Returned'}${action == 'Recheck'}execution.setVariable('isSociety',true);${action == 'Returned'}${action == 'Accepted'}${applicationStatus== 'Resubmitted' and isCssaTeam== true}${applicationStatus== 'Resubmitted' and isSociety== true}${applicationStatus== 'Resubmitted' and isAp== true}${applicationStatus!= 'Resubmitted'}Flow_0bz8atuFlow_19ktqsmFlow_0qbjx6eFlow_1tu4hj7Flow_1ev1kr6task.execution.setVariable('isCssaTeam',false);task.execution.setVariable('applicationStatus', task.execution.getVariable('action')); -task.execution.setVariable('deleteReason', "completed");["applicationId", "applicationStatus"]Flow_1quswscFlow_0gb2oz2Flow_0wr0meiFlow_0lgivc3Flow_0bz8atuexecution.setVariable('applicationStatus', "Resubmit"); -execution.setVariable('returnedBy', "cssaTeam");["applicationId", "applicationStatus"]Flow_19ktqsmFlow_12uv3kmFlow_0qw9o9aFlow_0wxa7vbFlow_0b5e332Flow_1stifo9Flow_0dbqph3Flow_1stifo9Flow_05pndklvar system = java.lang.System; +system.out.println ("isSentFromSociety "+ execution.getVariable('isSentFromSociety')); + + + ${typeOfReview== 'directToMinistryApplication'} + + + + ${typeOfReview!= 'directToMinistryApplication'} + + + + ${action == 'Accepted'} + + + + + execution.setVariable('isAp',true); + + + ${action == 'Returned'} + + + + ${action == 'Recheck'} + + + + + execution.setVariable('isSociety',true); + + + ${action == 'Returned'} + + + + ${action == 'Accepted'} + + + + ${applicationStatus== 'Resubmitted' and isCssaTeam== true} + + + ${applicationStatus== 'Resubmitted' and isSociety== true} + + + ${applicationStatus== 'Resubmitted' and isAp== true} + + + ${applicationStatus!= 'Resubmitted'} + + + + + + task.execution.setVariable('isCssaTeam',false); +task.execution.setVariable('userRole','CSSA Team'); + + + + task.execution.setVariable('applicationStatus', task.execution.getVariable('action')); +task.execution.setVariable('deleteReason', "completed"); + + + + + ["applicationId", "applicationStatus"] + + + + Flow_1quswsc + Flow_0gb2oz2 + Flow_0wr0mei + Flow_0lgivc3 + Flow_0bz8atu + + + + + execution.setVariable('applicationStatus', "Resubmit"); +execution.setVariable('returnedBy', "cssaTeam"); + + + + + ["applicationId", "applicationStatus"] + + + + + Flow_0wxa7vb + Flow_19ktqsm + Flow_0qw9o9a + Flow_12uv3km + Flow_1ij7p7z + Flow_1stifo9 + + + Flow_0dbqph3 + Flow_1stifo9 + Flow_05pndkl + var system = java.lang.System; var riskclassification = execution.getVariable('riskclassification'); system.out.println ("riskclassification "+riskclassification); var typeOfReview = execution.getVariable('typeOfReview'); @@ -14,74 +242,551 @@ system.out.println ("clientEmail "+clientEmail); execution.setVariable('clientEmail',clientEmail); var siteRiskClassification = execution.getVariable('siteRiskClassification'); system.out.println ("siteRiskClassification "+siteRiskClassification ); -execution.setVariable('siteRiskClassification',siteRiskClassification);Flow_1rc30l8Flow_0dbqph3var system = java.lang.System; +execution.setVariable('siteRiskClassification',siteRiskClassification); +execution.setVariable('formName','Detailed Ecological Risk Assessment Checklist'); +execution.setVariable('EmailType','DERA'); +execution.setVariable('name',execution.getVariable('deraPropertyOwnerName')); +var emailsToArray = []; +emailsToArray.push(clientEmail) +execution.setVariable("emailTo", Java.to(emailsToArray, "java.lang.Object[]")); + + + Flow_1rc30l8 + Flow_0dbqph3 + var system = java.lang.System; system.out.println ("Submit Bundle"); execution.setVariable('isAp',false); execution.setVariable('isSociety',false); -execution.setVariable('isCssaTeam',false);Flow_1rc30l8Flow_1xj96i6Flow_1quswscFlow_142lsgktask.execution.setVariable('isSociety',false);task.execution.setVariable('applicationStatus', task.execution.getVariable('action')); +execution.setVariable('isCssaTeam',false); + + + Flow_1rc30l8 + + + Flow_1xj96i6 + Flow_1quswsc + Flow_142lsgk + + + + + task.execution.setVariable('isSociety',false); +task.execution.setVariable('userRole','CSAP Society'); + + + + task.execution.setVariable('applicationStatus', task.execution.getVariable('action')); task.execution.setVariable('deleteReason', "completed"); var system = java.lang.System; task.execution.setVariable('isSentFromSociety',true); -system.out.println ("isSentFromSociety "+ task.execution.getVariable('isSentFromSociety'));["applicationId", "applicationStatus"]Flow_0kfjdmpFlow_0543g25Flow_1ev1kr6Flow_0d8ruaxtask.execution.setVariable('isAp',false);task.execution.setVariable('applicationStatus', task.execution.getVariable('action')); -task.execution.setVariable('deleteReason', "completed");["applicationId", "applicationStatus"]Flow_142lsgkFlow_0pzpbn7Flow_0527h3yFlow_0b418rvFlow_0b418rvFlow_12uv3kmFlow_0kfjdmpFlow_0d8ruaxFlow_0gb2oz2Flow_0qw9o9aFlow_0pzpbn7${applicationStatus== 'Resubmitted' and isCaseworker== true}${applicationStatus== 'Resubmitted' and isSdm== true}var system = java.lang.System; -system.out.println ("form signed");Flow_05pndklFlow_0ohuh4kFlow_0ohuh4kFlow_1xj96i6Flow_0527h3yFlow_0543g25Flow_0wr0meiFlow_0d8ioqsFlow_0ovj0pk${action == 'Recheck' and isSentFromSociety == true}${action == 'Recheck'}${action == 'Accepted'}task.execution.setVariable('isCssaTeam',false);task.execution.setVariable('applicationStatus', task.execution.getVariable('action')); -task.execution.setVariable('deleteReason', "completed");["applicationId", "applicationStatus"]Flow_1tu4hj7Flow_1esdw3mFlow_0aabyhyFlow_0gcqir8Flow_1u3s5mjFlow_1phkhb3Flow_05vthw4Flow_1ojyq91Flow_019edztFlow_0cdvwnpvar system = java.lang.System; -system.out.println ("Sent to Caseworker");Y["pid","applicationId","process_pid","task_id"]task.execution.setVariable('task_id',task.getId()); -task.execution.setVariableLocal('variable1',"srcr");task.execution.setVariable('requestStatus', task.execution.getVariable('action')); -task.execution.setVariable('requestType', 'SRCR'); -task.execution.setVariable('deleteReason', "completed"); -task.execution.setVariable('srcrStatus', task.execution.getVariable('action')); -task.execution.setVariable('applicationStatus', task.execution.getVariable('action'));Flow_0cdvwnpFlow_1ccbyzkFlow_1ccbyzkFlow_0zzhouiFlow_1ixkifdFlow_0pqd76uFlow_187pabgFlow_1ixkifdFlow_0izugkbFlow_0xqj2smFlow_1pdey0jFlow_0qaeplvvar system = java.lang.System; -system.out.println ("Sent to SDM");Y["pid","applicationId","process_pid","task_id"]task.execution.setVariable('task_id',task.getId());task.execution.setVariable('requestStatus', task.execution.getVariable('action')); -task.execution.setVariable('requestType', 'SRCR'); -task.execution.setVariable('deleteReason', "completed"); -task.execution.setVariable('srcrStatus', task.execution.getVariable('action')); -task.execution.setVariable('applicationStatus', task.execution.getVariable('action'));Flow_0qaeplvFlow_0mtd57dFlow_0mtd57dFlow_0k5l8nkFlow_0rygleeFlow_1kizv19Flow_0zzhouiFlow_0k5l8nkFlow_14snpj2execution.setVariable('applicationStatus', "Resubmit");["applicationId", "applicationStatus", "srcrStatus"]Flow_187pabgFlow_1ojyq91execution.setVariable('applicationStatus', "Resubmit");["applicationId", "applicationStatus", "srcrStatus"]Flow_0rygleeFlow_0izugkbFlow_0q159o1Flow_019edztFlow_0xqj2smFlow_0pqd76uFlow_00vao62Flow_1axts3rFlow_1g44pguFlow_1up3td8Flow_0c71o5wvar system = java.lang.System; -system.out.println ("Begin SRCR Flow - Sent To SRCO"); -system.out.println ("isSentFromSociety "+execution.getVariable('isSentFromSociety'));Flow_1axts3rY["pid","applicationId","process_pid","task_id"]task.execution.setVariable('task_id',task.getId()); -task.execution.setVariableLocal('variable1',"srcr");task.execution.setVariable('requestStatus', task.execution.getVariable('action')); -task.execution.setVariable('requestType', 'SRCR'); -task.execution.setVariable('deleteReason', "completed"); -task.execution.setVariable('srcrStatus', task.execution.getVariable('action')); -task.execution.setVariable('applicationStatus', task.execution.getVariable('action'));Flow_0c71o5wFlow_0h34vewFlow_0h34vewFlow_14snpj2Flow_0qz0c7uFlow_1ifs52wexecution.setVariable('applicationStatus', "Resubmit");["applicationId", "applicationStatus", "srcrStatus"]Flow_1ifs52wFlow_00vao62Flow_0qz0c7uFlow_1pdey0jFlow_0q159o1${isSentFromSociety == false}execution.setVariable('applicationStatus', "Resubmitted"); -execution.setVariable('requestStatus', "Resubmitted"); -execution.setVariable('srcrStatus', "Resubmitted");["applicationId", "applicationStatus", "srcrStatus"]${isSentFromSociety == false}["applicationId", "applicationStatus", "srcrStatus"]execution.setVariable('srcrFormUrl', execution.getVariable('formUrl'));execution.setVariable('bundleUrl', execution.getVariable('formUrl'));${action == 'Rejected'}${action == 'Accepted'}${action == 'Recheck'}${action == 'Returned' }execution.setVariable('applicationStatus', "Resubmitted"); -execution.setVariable('requestStatus', "Resubmitted"); -execution.setVariable('srcrStatus', "Resubmitted");["applicationId", "applicationStatus", "srcrStatus"]${isSentFromSociety == true}${siteRiskClassification != 'notHighRisk'}["applicationId", "applicationStatus", "srcrStatus"]execution.setVariable('srcrFormUrl', execution.getVariable('formUrl'));execution.setVariable('bundleUrl', execution.getVariable('formUrl'));${action == 'Approved' or action == 'Rejected' }${action == 'Returned' }execution.setVariable('bundleUrl', execution.getVariable('formUrl'));${action == 'Rejected' }${siteRiskClassification == 'notHighRisk'}execution.setVariable('applicationStatus', "Resubmitted"); -execution.setVariable('requestStatus', "Resubmitted"); -execution.setVariable('srcrStatus', "Resubmitted");["applicationId", "applicationStatus", "srcrStatus"]execution.setVariable('requestStatus', 'New'); -execution.setVariable('requestType', 'SRCR');["applicationId", "applicationStatus", "srcrStatus"]execution.setVariable('srcrFormUrl', execution.getVariable('formUrl'));${action == 'Accepted'}${action == 'Returned' }${siteRiskClassification != 'notHighRisk' }Flow_1kizv19Flow_1g44pguFlow_1q2jho1${action == 'Recheck' }Flow_1q2jho1Flow_05vthw4Flow_1up3td8${siteRiskClassification == 'notHighRisk' }${isSentFromSociety == true}Flow_1kyum71Flow_0fa3iduFlow_0f731f5Flow_1vxydh0Flow_00qi8nkFlow_130v3rpvar system = java.lang.System; -system.out.println ("Sent to SDM");Y["pid","applicationId","process_pid","task_id"]task.execution.setVariable('task_id',task.getId());task.execution.setVariable('requestStatus', task.execution.getVariable('action')); +system.out.println ("isSentFromSociety "+ task.execution.getVariable('isSentFromSociety')); + + + + + ["applicationId", "applicationStatus"] + + + + Flow_0kfjdmp + Flow_0543g25 + Flow_1ev1kr6 + Flow_0d8ruax + + + + + task.execution.setVariable('isAp',false); +task.execution.setVariable('userRole','CSAP'); + + + + task.execution.setVariable('applicationStatus', task.execution.getVariable('action')); +task.execution.setVariable('deleteReason', "completed"); + + + + + ["applicationId", "applicationStatus"] + + + + Flow_142lsgk + Flow_0pzpbn7 + Flow_0527h3y + Flow_0b418rv + + + ${applicationStatus== 'Resubmitted' and isCaseworker== true} + + + ${applicationStatus== 'Resubmitted' and isSdm== true} + + + + + var system = java.lang.System; +system.out.println ("form signed"); + + + Flow_05pndkl + Flow_0ohuh4k + + + Flow_0ohuh4k + Flow_1xj96i6 + Flow_0527h3y + Flow_0543g25 + Flow_0wr0mei + Flow_0d8ioqs + Flow_0ovj0pk + + + ${action == 'Recheck' and isSentFromSociety == true} + + + ${action == 'Recheck'} + + + + + + + ${action == 'Accepted'} + + + + + task.execution.setVariable('isCssaTeam',false); + + + + task.execution.setVariable('applicationStatus', task.execution.getVariable('action')); +task.execution.setVariable('deleteReason', "completed"); + + + + + ["applicationId", "applicationStatus"] + + + + Flow_1tu4hj7 + Flow_1esdw3m + Flow_0aabyhy + Flow_0gcqir8 + + + Flow_1kyum71 + Flow_0fa3idu + + Flow_0f731f5 + Flow_1vxydh0 + Flow_00qi8nk + Flow_130v3rp + var system = java.lang.System; +system.out.println ("Sent to SDM"); + + + + + + Y + + + ["pid","applicationId","process_pid","task_id"] + + + + task.execution.setVariable('task_id',task.getId()); + + + + task.execution.setVariable('requestStatus', task.execution.getVariable('action')); task.execution.setVariable('requestType', 'DERA'); task.execution.setVariable('deraStatus', task.execution.getVariable('action')); task.execution.setVariable('applicationStatus', task.execution.getVariable('action')); -task.execution.setVariable('deleteReason', "completed");Flow_130v3rpFlow_04rzv3xexecution.setVariable('applicationStatus', "Resubmit");["applicationId", "applicationStatus"]Flow_0ui56bnFlow_1vxydh0Flow_04rzv3xFlow_0ui56bnFlow_0pqk381Flow_07enxwqFlow_07enxwqFlow_0yy721oY["pid","applicationId","process_pid","task_id"]task.execution.setVariable('task_id',task.getId()); -task.execution.setVariableLocal('variable1',"dera");task.execution.setVariable('requestStatus', task.execution.getVariable('action')); +task.execution.setVariable('deleteReason', "completed"); +task.execution.setVariable('userRole','Statutory Decision Maker'); + + + + + + Flow_130v3rp + Flow_04rzv3x + + + + + execution.setVariable('applicationStatus', "Resubmit"); + + + + + ["applicationId", "applicationStatus"] + + + + + Flow_0ui56bn + Flow_1vxydh0 + + + Flow_1wvb9m4 + Flow_0ui56bn + Flow_0pqk381 + Flow_07enxwq + + + Flow_07enxwq + Flow_0yy721o + + + + + + Y + + + ["pid","applicationId","process_pid","task_id"] + + + + task.execution.setVariable('task_id',task.getId()); +task.execution.setVariableLocal('variable1',"dera"); + + + + task.execution.setVariable('requestStatus', task.execution.getVariable('action')); task.execution.setVariable('requestType', 'DERA'); task.execution.setVariable('deraStatus', task.execution.getVariable('action')); task.execution.setVariable('applicationStatus', task.execution.getVariable('action')); -task.execution.setVariable('deleteReason', "completed");Flow_0go33vqFlow_13zl1ndFlow_13zl1ndFlow_0f731f5Flow_0yy721oFlow_1c0kfisexecution.setVariable('applicationStatus', "Resubmit");["applicationId", "applicationStatus"]Flow_1c0kfisFlow_06v4kdfFlow_0pqk381Flow_06v4kdfFlow_18exjmwFlow_0orrcuevar system = java.lang.System; +task.execution.setVariable('deleteReason', "completed"); +task.execution.setVariable('userRole','Case worker'); + + + + + + Flow_0go33vq + Flow_13zl1nd + + + Flow_1qn2dpn + Flow_0f731f5 + Flow_0yy721o + Flow_1c0kfis + + + + + execution.setVariable('applicationStatus', "Resubmit"); + + + + + ["applicationId", "applicationStatus"] + + + + + Flow_1c0kfis + Flow_06v4kdf + + + Flow_0pqk381 + Flow_06v4kdf + Flow_18exjmw + Flow_0orrcue + var system = java.lang.System; system.out.println ("Begin DERA Flow - Sent To Caseworker"); execution.setVariable('isCaseworker',false); -system.out.println ("isSentFromSociety "+execution.getVariable('isSentFromSociety'));Flow_18exjmwFlow_0orrcueFlow_00qi8nkFlow_0go33vq${action == 'Accepted'}execution.setVariable('applicationStatus', "Resubmitted"); +system.out.println ("isSentFromSociety "+execution.getVariable('isSentFromSociety')); + + + Flow_18exjmw + + + Flow_0orrcue + Flow_00qi8nk + Flow_0go33vq + + + ${action == 'Accepted'} + + + + + execution.setVariable('applicationStatus', "Resubmitted"); execution.setVariable('requestStatus', "Resubmitted"); -execution.setVariable('deraStatus', "Resubmitted");["applicationId", "applicationStatus", "deraStatus"]${isSentFromSociety == true}["applicationId", "applicationStatus", "deraStatus"]execution.setVariable('deraFormUrl', execution.getVariable('formUrl'));${action == 'Returned'}${action == 'Recheck' and isSentFromSociety == false}execution.setVariable('bundleUrl', execution.getVariable('formUrl'));${action == 'Rejected' or action == 'Approved' }execution.setVariable('bundleUrl', execution.getVariable('formUrl'));${action == 'Rejected'}${isSentFromSociety == false}["applicationId", "applicationStatus", "deraStatus"]execution.setVariable('deraFormUrl', execution.getVariable('formUrl'));${action == 'Returned'}execution.setVariable('applicationStatus', "Resubmitted"); +execution.setVariable('deraStatus', "Resubmitted"); + + + + + ["applicationId", "applicationStatus", "deraStatus"] + + + + + + + + ${isSentFromSociety == true} + + + + + + + ["applicationId", "applicationStatus", "deraStatus"] + + + + execution.setVariable('deraFormUrl', execution.getVariable('formUrl')); + + + + + + + + + + ${action == 'Returned'} + + + + + + + ${action == 'Recheck' and isSentFromSociety == false} + + + + + + + execution.setVariable('bundleUrl', execution.getVariable('formUrl')); + + + ${action == 'Rejected' or action == 'Approved' } + + + + + execution.setVariable('bundleUrl', execution.getVariable('formUrl')); + + + ${action == 'Rejected'} + + + ${isSentFromSociety == false} + + + + + + ["applicationId", "applicationStatus", "deraStatus"] + + + + execution.setVariable('deraFormUrl', execution.getVariable('formUrl')); + + + + + + + + + + ${action == 'Returned'} + + + + + + execution.setVariable('applicationStatus', "Resubmitted"); execution.setVariable('requestStatus', "Resubmitted"); -execution.setVariable('deraStatus', "Resubmitted");["applicationId", "applicationStatus", "deraStatus"]execution.setVariable('requestStatus', 'New'); -execution.setVariable('requestType', 'DERA');Flow_0qbjx6eFlow_1nowy63Flow_07eueokFlow_1xju4axFlow_0izwlc1Flow_08c8ij1Flow_0b5e332Flow_1jxxrt6Flow_07eueokFlow_0aabyhyFlow_0izwlc1task.execution.setVariable('isSdm',false);task.execution.setVariable('applicationStatus', task.execution.getVariable('action')); -task.execution.setVariable('deleteReason', "completed");["applicationId", "applicationStatus"]Flow_07vh0naFlow_08c8ij1task.execution.setVariable('isCaseworker',false);task.execution.setVariable('applicationStatus', task.execution.getVariable('action')); -task.execution.setVariable('deleteReason', "completed");["applicationId", "applicationStatus"]Flow_01suxh6Flow_19ik9s7Flow_0qiqnksFlow_057qs1xFlow_01suxh6Flow_0i3fcvyFlow_0d8ioqsFlow_1jxxrt6Flow_0qiqnksvar system = java.lang.System; +execution.setVariable('deraStatus', "Resubmitted"); + + + + ["applicationId", "applicationStatus", "deraStatus"] + + + + + + + + + + execution.setVariable('requestStatus', 'New'); +execution.setVariable('requestType', 'DERA'); + + + + + + + + + + + + dera_updated + + + Flow_0zq3j61 + Flow_04eqln5 + Flow_19nit40 + + + + Flow_13zl1nd + Flow_1qn2dpn + Flow_0zq3j61 + + + + + + + + Flow_19nit40 + + + + + Flow_04rzv3x + Flow_1wvb9m4 + Flow_04eqln5 + + + + + Flow_08c8ij1 + Flow_0b5e332 + Flow_1jxxrt6 + Flow_07eueok + Flow_0aabyhy + + + + + task.execution.setVariable('isSdm',false); + + + + + task.execution.setVariable('applicationStatus', task.execution.getVariable('action')); +task.execution.setVariable('deleteReason', "completed"); +task.execution.setVariable('userRole','Statutory Decision Maker'); + + + + + ["applicationId", "applicationStatus"] + + + + Flow_07vh0na + Flow_08c8ij1 + + + + + task.execution.setVariable('isCaseworker',false); + + + + + task.execution.setVariable('applicationStatus', task.execution.getVariable('action')); +task.execution.setVariable('deleteReason', "completed"); +task.execution.setVariable('userRole','Case worker'); + + + + + ["applicationId", "applicationStatus"] + + + + Flow_01suxh6 + Flow_19ik9s7 + + + Flow_0qiqnks + Flow_057qs1x + Flow_01suxh6 + + + Flow_0i3fcvy + Flow_0d8ioqs + Flow_1jxxrt6 + Flow_0qiqnks + var system = java.lang.System; system.out.println ("Begin DERA Individual Flow - Sent To Caseworker"); execution.setVariable('isCaseworker',false); -system.out.println ("isSentFromSociety "+execution.getVariable('isSentFromSociety'));Flow_19ik9s7Flow_0kw2jboFlow_0wxa7vbFlow_1xju4axFlow_1esdw3mFlow_0kw2jboFlow_057qs1xFlow_0ovj0pkFlow_07vh0navar system = java.lang.System; -system.out.println ("Sent to SDM");Flow_0fa3iduFlow_1phkhb3Flow_1nowy63Flow_0drs8s9Flow_1kyum71Flow_1u3s5mj${action == 'Rejected' or action == 'Approved' }${action == 'Rejected'}execution.setVariable('formUrl', execution.getVariable('deraFormUrl'));execution.setVariable('bundleUrl', execution.getVariable('formUrl')); -execution.setVariable('formUrl', execution.getVariable('srcrFormUrl'));if (execution.getVariable('deraStatus') === "Approved" && execution.getVariable('srcrStatus') === "Approved" ) -{ -execution.setVariable("applicationStatus", "Approved"); -} -else{ -execution.setVariable("applicationStatus", "Rejected"); -}${action == 'Recheck' and isSentFromSociety == false}${isSentFromSociety == false}${isSentFromSociety == true}${action == 'Accepted'}${action == 'Recheck'}Flow_026yktsFlow_0drs8s9Flow_0i3fcvyFlow_02ysv7tFlow_026yktsvar system = java.lang.System; +system.out.println ("isSentFromSociety "+execution.getVariable('isSentFromSociety')); + + + Flow_0kw2jbo + Flow_057qs1x + Flow_0ovj0pk + Flow_07vh0na + var system = java.lang.System; +system.out.println ("Sent to SDM"); + + + Flow_0fa3idu + Flow_1phkhb3 + Flow_1nowy63 + + + Flow_0drs8s9 + Flow_1kyum71 + Flow_1u3s5mj + + + + + + + ${action == 'Rejected' or action == 'Approved' } + + + + ${action == 'Recheck' and isSentFromSociety == false} + + + + ${isSentFromSociety == false} + + + + + ${isSentFromSociety == true} + + + ${action == 'Accepted'} + + + ${action == 'Recheck'} + + + Flow_026ykts + Flow_0drs8s9 + Flow_0i3fcvy + + + + Flow_02ysv7t + Flow_026ykts + var system = java.lang.System; var selectSdm= execution.getVariable('selectSdm'); system.out.println ("selectSdm"+selectSdm); execution.setVariable('sdmAssignment',selectSdm); @@ -106,4 +811,1676 @@ var selectSrco= execution.getVariable('selectSrco'); system.out.println ("selectSrco"+selectSrco); execution.setVariable('srcoAssignment',selectSrco); system.out.println ("srcoAssignment"+execution.getVariable('srcoAssignment')); -Flow_0gcqir8Flow_02ysv7tFlow_0lgivc3 \ No newline at end of file + + + + Flow_0gcqir8 + Flow_02ysv7t + Flow_0lgivc3 + + + + + + + dera_updated + + + Flow_1h10kqx + Flow_0yrx5xj + Flow_1sj5fc8 + Flow_1kvztr8 + + + Flow_1s7krwr + Flow_12uv3km + Flow_0kfjdmp + + + Flow_1j8wa3r + Flow_19ktqsm + Flow_1tu4hj7 + Flow_1ev1kr6 + Flow_0qbjx6e + + + + Flow_0b418rv + Flow_1s7krwr + Flow_1h10kqx + + + + + + Flow_12oauvz + Flow_0gb2oz2 + Flow_0qw9o9a + Flow_0pzpbn7 + + + Flow_0d8ruax + Flow_12oauvz + Flow_0yrx5xj + + + + + Flow_0bz8atu + Flow_1j8wa3r + Flow_1sj5fc8 + + + Flow_1u3s5mj + Flow_1phkhb3 + + Flow_05vthw4 + Flow_1ojyq91 + Flow_019edzt + Flow_0cdvwnp + var system = java.lang.System; +system.out.println ("Sent to Caseworker"); + + + + + + Y + + + ["pid","applicationId","process_pid","task_id"] + + + + task.execution.setVariable('task_id',task.getId()); +task.execution.setVariableLocal('variable1',"srcr"); +task.execution.setVariable('userRole','Case worker'); + + + task.execution.setVariable('requestStatus', task.execution.getVariable('action')); +task.execution.setVariable('requestType', 'SRCR'); +task.execution.setVariable('deleteReason', "completed"); +task.execution.setVariable('srcrStatus', task.execution.getVariable('action')); +task.execution.setVariable('applicationStatus', task.execution.getVariable('action')); +task.execution.setVariable('userRole','Case worker'); + + + + + + Flow_0cdvwnp + Flow_1ccbyzk + + + Flow_09v3kpi + Flow_0zzhoui + Flow_1ixkifd + Flow_0pqd76u + Flow_187pabg + + + Flow_1ixkifd + Flow_0izugkb + Flow_0xqj2sm + Flow_1pdey0j + Flow_0qaeplv + var system = java.lang.System; +system.out.println ("Sent to SDM"); + + + + + + Y + + + ["pid","applicationId","process_pid","task_id"] + + + + task.execution.setVariable('task_id',task.getId()); + + + + task.execution.setVariable('requestStatus', task.execution.getVariable('action')); +task.execution.setVariable('requestType', 'SRCR'); +task.execution.setVariable('deleteReason', "completed"); +task.execution.setVariable('srcrStatus', task.execution.getVariable('action')); +task.execution.setVariable('applicationStatus', task.execution.getVariable('action')); + + + + + + Flow_0qaeplv + Flow_0mtd57d + + + Flow_0qvoubs + Flow_0k5l8nk + Flow_0ryglee + Flow_1kizv19 + + + Flow_0zzhoui + Flow_0k5l8nk + Flow_14snpj2 + + + + + execution.setVariable('applicationStatus', "Resubmit"); + + + + + ["applicationId", "applicationStatus", "srcrStatus"] + + + + + Flow_187pabg + Flow_1ojyq91 + + + + + execution.setVariable('applicationStatus', "Resubmit"); + + + + + ["applicationId", "applicationStatus", "srcrStatus"] + + + + + Flow_0ryglee + Flow_0izugkb + + + Flow_0q159o1 + Flow_019edzt + Flow_0xqj2sm + + + Flow_0pqd76u + Flow_00vao62 + Flow_1axts3r + Flow_1g44pgu + Flow_1up3td8 + Flow_0c71o5w + var system = java.lang.System; +system.out.println ("Begin SRCR Flow - Sent To SRCO"); +system.out.println ("isSentFromSociety "+execution.getVariable('isSentFromSociety')); + + + Flow_1axts3r + + + + + + Y + + + ["pid","applicationId","process_pid","task_id"] + + + + task.execution.setVariable('task_id',task.getId()); +task.execution.setVariableLocal('variable1',"srcr"); + + + + task.execution.setVariable('requestStatus', task.execution.getVariable('action')); +task.execution.setVariable('requestType', 'SRCR'); +task.execution.setVariable('deleteReason', "completed"); +task.execution.setVariable('srcrStatus', task.execution.getVariable('action')); +task.execution.setVariable('applicationStatus', task.execution.getVariable('action')); +task.execution.setVariable('userRole','Site Risk Classification Officer'); + + + + + + Flow_0c71o5w + Flow_0h34vew + + + Flow_1mxzqgt + Flow_14snpj2 + Flow_0qz0c7u + Flow_1ifs52w + + + + + execution.setVariable('applicationStatus', "Resubmit"); + + + + + ["applicationId", "applicationStatus", "srcrStatus"] + + + + + Flow_1ifs52w + Flow_00vao62 + + + Flow_0qz0c7u + Flow_1pdey0j + Flow_0q159o1 + + + + + + + ${isSentFromSociety == false} + + + + + + execution.setVariable('applicationStatus', "Resubmitted"); +execution.setVariable('requestStatus', "Resubmitted"); +execution.setVariable('srcrStatus', "Resubmitted"); + + + + ["applicationId", "applicationStatus", "srcrStatus"] + + + + + + + + ${isSentFromSociety == false} + + + + + + + ["applicationId", "applicationStatus", "srcrStatus"] + + + + execution.setVariable('srcrFormUrl', execution.getVariable('formUrl')); + + + + + + + + + execution.setVariable('bundleUrl', execution.getVariable('formUrl')); + + + ${action == 'Rejected'} + + + ${action == 'Accepted'} + + + + ${action == 'Recheck'} + + + + + + ${action == 'Returned' } + + + + + execution.setVariable('applicationStatus', "Resubmitted"); +execution.setVariable('requestStatus', "Resubmitted"); +execution.setVariable('srcrStatus', "Resubmitted"); + + + + + ["applicationId", "applicationStatus", "srcrStatus"] + + + + + + + + ${isSentFromSociety == true} + + + ${siteRiskClassification != 'notHighRisk'} + + + + + + + ["applicationId", "applicationStatus", "srcrStatus"] + + + + execution.setVariable('srcrFormUrl', execution.getVariable('formUrl')); + + + + + + + + + execution.setVariable('bundleUrl', execution.getVariable('formUrl')); + + + ${action == 'Approved' or action == 'Rejected' } + + + + + + + + ${action == 'Returned' } + + + + + execution.setVariable('bundleUrl', execution.getVariable('formUrl')); + + + ${action == 'Rejected' } + + + ${siteRiskClassification == 'notHighRisk'} + + + + + + execution.setVariable('applicationStatus', "Resubmitted"); +execution.setVariable('requestStatus', "Resubmitted"); +execution.setVariable('srcrStatus', "Resubmitted"); + + + + ["applicationId", "applicationStatus", "srcrStatus"] + + + + + + + + + + execution.setVariable('requestStatus', 'New'); +execution.setVariable('requestType', 'SRCR'); + + + + + + + + + + + + ["applicationId", "applicationStatus", "srcrStatus"] + + + + execution.setVariable('srcrFormUrl', execution.getVariable('formUrl')); + + + + + + + ${action == 'Accepted'} + + + + + + ${action == 'Returned' } + + + + + + + ${siteRiskClassification != 'notHighRisk' } + + + Flow_1kizv19 + Flow_1g44pgu + Flow_1q2jho1 + + + ${action == 'Recheck' } + + + Flow_1q2jho1 + Flow_05vthw4 + Flow_1up3td8 + + + ${siteRiskClassification == 'notHighRisk' } + + + + + + + ${isSentFromSociety == true} + + + + Flow_0h34vew + Flow_1mxzqgt + Flow_0lklj13 + + + + + + dera_updated + + + Flow_0lklj13 + Flow_18o75ov + Flow_1u837pr + Flow_0184u8i + + + + + Flow_1ccbyzk + Flow_09v3kpi + Flow_18o75ov + + + + + Flow_0mtd57d + Flow_0qvoubs + Flow_1u837pr + + + + Flow_0184u8i + + + + + Flow_1s58qkt + Flow_0kw2jbo + Flow_0wxa7vb + Flow_1esdw3m + Flow_1xju4ax + + + + + + Flow_19ik9s7 + Flow_1s58qkt + Flow_1v6zje9 + + + + Flow_1kvztr8 + + + + + + + execution.setVariable('formUrl', execution.getVariable('deraFormUrl')); + + + + execution.setVariable('bundleUrl', execution.getVariable('formUrl')); +execution.setVariable('formUrl', execution.getVariable('srcrFormUrl')); + + + + if (execution.getVariable('deraStatus') === "Approved" && execution.getVariable('srcrStatus') === "Approved" ) +{ +execution.setVariable("applicationStatus", "Approved"); +} +else{ +execution.setVariable("applicationStatus", "Rejected"); +} + + + + + + ${action == 'Rejected'} + + + ${action == 'Rejected'} + + + Flow_0izwlc1 + + + + + + dera_updated + + + Flow_165eq8z + Flow_07eueok + Flow_1v6zje9 + Flow_0qbjx6e + Flow_1xju4ax + Flow_1nowy63 + Flow_0izwlc1 + + + Flow_0b5e332 + Flow_1ij7p7z + Flow_165eq8z + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + From 4bfff4e5638d504f551cc8be1cc0786f2980dd42 Mon Sep 17 00:00:00 2001 From: midhun-aot Date: Thu, 5 Oct 2023 00:46:00 -0700 Subject: [PATCH 116/194] updated DERA form field key --- ... Ecological Risk Assessment Checklist.json | 138 +++++++++--------- 1 file changed, 72 insertions(+), 66 deletions(-) diff --git a/forms-flow-ai/epd-forms/bundling/Detailed Ecological Risk Assessment Checklist.json b/forms-flow-ai/epd-forms/bundling/Detailed Ecological Risk Assessment Checklist.json index 13f5444c..12aba115 100644 --- a/forms-flow-ai/epd-forms/bundling/Detailed Ecological Risk Assessment Checklist.json +++ b/forms-flow-ai/epd-forms/bundling/Detailed Ecological Risk Assessment Checklist.json @@ -5487,7 +5487,7 @@ "attributes": {}, "components": [ { - "id": "eh8z2bfa0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "id": "eh8z2bfa000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", "key": "panel", "tags": [], "tree": false, @@ -7097,92 +7097,98 @@ "addons": [] }, { - "id": "e52n5r", - "key": "simpletextarea", - "case": "", - "mask": false, - "rows": 2, - "type": "textarea", - "input": true, "label": "Multi-line Text", - "editor": "", - "hidden": false, + "labelPosition": "top", + "placeholder": "", + "description": "", + "tooltip": "", "prefix": "", "suffix": "", - "unique": false, "widget": { "type": "input" }, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "wysiwyg": false, + "displayMask": "", + "editor": "", + "autoExpand": true, + "customClass": "", + "tabindex": "", + "autocomplete": "", + "hidden": false, + "hideLabel": true, + "showWordCount": false, + "showCharCount": false, + "autofocus": false, + "spellcheck": true, "disabled": false, + "tableView": true, + "modalEdit": false, "multiple": false, + "persistent": true, + "inputFormat": "plain", + "protected": false, + "dbIndex": false, + "case": "", + "truncateMultipleSpaces": false, + "encrypted": false, "redrawOn": "", - "tabindex": "", + "clearOnHide": true, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "allowCalculateOverride": false, + "validateOn": "change", "validate": { - "custom": "", - "unique": false, - "pattern": "", - "maxWords": "", - "minWords": "", - "multiple": false, "required": false, - "maxLength": "", - "minLength": "", + "pattern": "", "customMessage": "", + "custom": "", "customPrivate": false, - "strictDateValidation": false + "json": "", + "minLength": "", + "maxLength": "", + "minWords": "", + "maxWords": "", + "strictDateValidation": false, + "multiple": false, + "unique": false }, - "autofocus": false, - "encrypted": false, - "fixedSize": true, - "hideLabel": true, - "inputMask": "", - "inputType": "text", - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": true, - "attributes": {}, - "autoExpand": true, + "unique": false, "errorLabel": "", - "persistent": true, + "errors": "", + "key": "simpletextareaveryfirst", + "tags": [], "properties": {}, - "spellcheck": true, - "validateOn": "change", - "clearOnHide": true, "conditional": { - "eq": "", - "json": "", "show": null, - "when": null + "when": null, + "eq": "", + "json": "" }, - "customClass": "", - "description": "", - "inputFormat": "plain", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "textarea", + "rows": 2, + "wysiwyg": false, + "input": true, + "refreshOn": "", + "dataGridLabel": false, "allowMultipleMasks": false, - "customDefaultValue": "", - "allowCalculateOverride": false, "addons": [], - "displayMask": "", - "truncateMultipleSpaces": false + "mask": false, + "inputType": "text", + "inputMask": "", + "fixedSize": true, + "id": "e8uwweq", + "defaultValue": "" } ], "currentWidth": 6 @@ -36010,7 +36016,7 @@ } ], "collapsible": false, - "id": "eof79400000000000000000000000000000000000000000000000000000000000000000000000", + "id": "eof7940000000000000000000000000000000000000000000000000000000000000000000000000", "placeholder": "", "prefix": "", "customClass": "", From a545328125a1656d1970b7fe06ad928778389234 Mon Sep 17 00:00:00 2001 From: nikhila-aot Date: Thu, 5 Oct 2023 10:25:58 -0700 Subject: [PATCH 117/194] initial changes for email --- .../processes/Common/email-template.dmn | 28 +- .../processes/SRCR/SRCRWorkflow.bpmn | 1569 ++++++++++------- .../templates/srcr_application.ftl | 69 + 3 files changed, 1019 insertions(+), 647 deletions(-) create mode 100644 forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/templates/srcr_application.ftl diff --git a/forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/processes/Common/email-template.dmn b/forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/processes/Common/email-template.dmn index 2554ae6f..34ccaf56 100644 --- a/forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/processes/Common/email-template.dmn +++ b/forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/processes/Common/email-template.dmn @@ -1,5 +1,5 @@ - + @@ -118,6 +118,32 @@ "epd-support@gov.bc.ca" + + + "srcr_updated" + + + + + + "NOREPLYEPD@gov.bc.ca" + + + + + + + + + "Site Risk Classification Report Update" + + + "templates/srcr_application.ftl" + + + "epd-support@gov.bc.ca" + + diff --git a/forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/processes/SRCR/SRCRWorkflow.bpmn b/forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/processes/SRCR/SRCRWorkflow.bpmn index fbb1f231..2b276ac9 100644 --- a/forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/processes/SRCR/SRCRWorkflow.bpmn +++ b/forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/processes/SRCR/SRCRWorkflow.bpmn @@ -5,85 +5,60 @@ - - Activity_00qh5e4 - Gateway_13mf7un - Gateway_0qzb9h1 - Gateway_0g6vr2y + + Activity_1tj511f + Gateway_13wml2g + Event_1l1d1pi + Activity_0p4hm8r + Event_0rqe9p4 + Activity_1fk777i + Event_1myg2g0 + Gateway_0offnz6 + Gateway_0my2itl + Gateway_0jbzlkk + Gateway_0cjov6g - - Activity_0dughh2 - Gateway_1nljcfc - Task_05ulff4 - Activity_1ozfgid - Gateway_0qeiyw3 - Event_02fettt - Activity_0j9b17x + + Activity_0s3vft8 + Gateway_18qjjlu + Gateway_1bo7lxa - - Activity_06nypz0 - Gateway_1osruh3 + + Gateway_132oe4w + Activity_08fgjgt + Gateway_1hnklt5 + Gateway_06tcm00 Activity_11o1equ Gateway_1kotdsu + Gateway_1a7z18k + Gateway_0dwdwof - - Activity_08fgjgt - Gateway_132oe4w + + Activity_06nypz0 + Gateway_1osruh3 + Gateway_06gi296 + Gateway_0i28cb1 - - Activity_0s3vft8 - Gateway_18qjjlu + + Gateway_1nljcfc + Activity_1ozfgid + Gateway_0qeiyw3 + Event_02fettt + Activity_0j9b17x + Task_05ulff4 + Gateway_0frt7pf - - Event_0rqe9p4 - Activity_1tj511f - Gateway_0cjov6g - Activity_0p4hm8r - Gateway_0my2itl - Gateway_0offnz6 + + Activity_00qh5e4 + Gateway_13mf7un + Gateway_0g6vr2y + Gateway_0qzb9h1 + Gateway_16ahhga + Gateway_1of2jzi - - - - - - - Flow_0glptri - Flow_0y1l5de - Flow_0y8vydy - Flow_0n8r7v3 - Flow_09svnbh - Flow_0w0po21 - Flow_0qui51z - - - Flow_07h69t7 - - - - - - - - - task.execution.setVariable('applicationStatus', task.execution.getVariable('action')); - - - - - - ["applicationId","applicationStatus"] - - - - Flow_0err7mx - Flow_058kqm8 - Flow_1wf5te7 - Flow_159m7j9 - @@ -101,39 +76,12 @@ - Flow_11adl9o - Flow_1ydjyj9 Flow_15zu2ec Flow_1p1932t + Flow_0ki2gre + Flow_063u1s7 Flow_0bo4cc7 - - Flow_159m7j9 - Flow_0iim75v - Flow_0glptri - - - - - - - - - task.execution.setVariable('applicationStatus', task.execution.getVariable('action')); - - - - - - ["applicationId","applicationStatus"] - - - - Flow_0iim75v - Flow_15il78e - Flow_128jxf3 - Flow_1pghhuh - Flow_1pghhuh Flow_11adl9o @@ -164,11 +112,11 @@ - Flow_1igr7br - Flow_0nu7red Flow_12ysqpj Flow_1w4srg6 Flow_0oxgtz8 + Flow_1xul524 + Flow_0dpi9u6 Flow_0njekxy @@ -178,117 +126,11 @@ Flow_1ydjyj9 Flow_0hga66e - - Flow_0hga66e - Flow_1lmkg6x - Flow_0vjceh7 - - - Flow_0vjceh7 - Flow_1smevfl - Flow_18g9fm9 - - - - - - - - - task.execution.setVariable('applicationStatus', task.execution.getVariable('action')); - - - - - - ["applicationId","applicationStatus"] - - - - Flow_1lmkg6x - Flow_18g9fm9 - Flow_0busbvw - Flow_08zx269 - Flow_1ifelq5 - - - - - - - - - task.execution.setVariable('applicationStatus', task.execution.getVariable('action')); - - - - - - ["applicationId","applicationStatus"] - - - - Flow_1smevfl - Flow_0ted4eh - Flow_1lj8tdk - Flow_0klnns9 - - - Flow_0klnns9 - Flow_0rtx9ud - Flow_0busbvw - Flow_09svnbh - Flow_0nu7red - - - Flow_1ifelq5 - Flow_1rsleyy - Flow_0w0po21 - Flow_0avadfd - - - - - - - - Flow_16z6m4e - Flow_1rsleyy - Flow_0rtx9ud - Flow_10wb8jx - Flow_07h69t7 - - - Flow_0avadfd - Flow_1ch9vjq - Flow_1w4srg6 - - - Flow_1ch9vjq - Flow_12ysqpj - Flow_0ted4eh - Flow_1mjvum7 Flow_058kqm8 Flow_15zu2ec - - - - execution.setVariable('applicationStatus', "Resubmit"); - - - - - - ["applicationId", "applicationStatus"] - - - - Flow_0qui51z - Flow_0ddusnc - Flow_0ddusnc Flow_1j5aqkd @@ -298,6 +140,12 @@ var clientEmail = execution.getVariable('simpleemail'); system.out.println ("clientEmail "+clientEmail); execution.setVariable('clientEmail',clientEmail); + +var emailsToArray = []; +emailsToArray.push(clientEmail) +execution.setVariable("emailTo", Java.to(emailsToArray, "java.lang.Object[]")); +system.out.println ("emailTo"+execution.getVariable('emailTo')); + var siteRiskClassification = execution.getVariable('siteRiskClassification'); system.out.println ("siteRiskClassification "+siteRiskClassification ); execution.setVariable('siteRiskClassification',siteRiskClassification); @@ -335,706 +183,1135 @@ execution.setVariable('isCaseworker',false); execution.setVariable('isSrco',false); execution.setVariable('isSdm',false); - + - - execution.setVariable('isAp',true); -execution.setVariable('isSociety',false); -execution.setVariable('isCssaTeam',false); -execution.setVariable('isCaseworker',false); -execution.setVariable('isSrco',false); -execution.setVariable('isSdm',false); + + execution.setVariable('applicationStatus', "Resubmit"); + + + + + + ["applicationId", "applicationStatus"] + - ${action == 'Returned'} - - + Flow_1cxpybp + Flow_0ddusnc + + - - execution.setVariable('isSociety',true); -execution.setVariable('isAp',false); -execution.setVariable('isCssaTeam',false); -execution.setVariable('isCaseworker',false); -execution.setVariable('isSrco',false); -execution.setVariable('isSdm',false); - + + + + + + task.execution.setVariable('applicationStatus', task.execution.getVariable('action')); + + + + + + ["applicationId","applicationStatus"] + + - ${action == 'Returned'} - - + Flow_1smevfl + Flow_0ted4eh + Flow_1lj8tdk + Flow_0klnns9 + + - - execution.setVariable('isCssaTeam',true); -execution.setVariable('isAp',false); -execution.setVariable('isSociety',false); -execution.setVariable('isCaseworker',false); -execution.setVariable('isSrco',false); -execution.setVariable('isSdm',false); - + + + + + + task.execution.setVariable('applicationStatus', task.execution.getVariable('action')); + + + + + + ["applicationId","applicationStatus"] + + - ${action == 'Returned'} + Flow_1lmkg6x + Flow_18g9fm9 + Flow_08zx269 + Flow_1d75g3l + Flow_1ifelq5 + + + Flow_1rsleyy + Flow_0rtx9ud + Flow_10wb8jx + Flow_16z6m4e + Flow_06vodk0 + Flow_07h69t7 + + + Flow_162fl3i + + + + + + + + srcr_updated + + + Flow_06vodk0 + Flow_0rr7wdh + Flow_1p5sg3a + Flow_10gwral + Flow_0hhcuk8 + Flow_1dod89e + Flow_0uvzh44 + Flow_162fl3i + + + + + + + + + task.execution.setVariable('applicationStatus', task.execution.getVariable('action')); + + + + + + ["applicationId","applicationStatus"] + + + + Flow_058kqm8 + Flow_1wf5te7 + Flow_0j749xl + Flow_159m7j9 + + + Flow_159m7j9 + Flow_0iim75v + Flow_0glptri + + + + + + + + + task.execution.setVariable('applicationStatus', task.execution.getVariable('action')); + + + + + + ["applicationId","applicationStatus"] + + + + Flow_128jxf3 + Flow_16nov5i + Flow_0u8isdy + Flow_1pghhuh + + + Flow_0iim75v + Flow_16nov5i + Flow_0rr7wdh + + + Flow_1igr7br + Flow_1xul524 + Flow_10gwral + + + Flow_0vjceh7 + Flow_1smevfl + Flow_18g9fm9 + + + Flow_01gwf0f + Flow_1lmkg6x + Flow_0vjceh7 + + + Flow_0hga66e + Flow_01gwf0f + Flow_0hhcuk8 + + + Flow_0klnns9 + Flow_0rtx9ud + Flow_0busbvw + Flow_09svnbh + Flow_0nu7red + + + Flow_0busbvw + Flow_1d75g3l + Flow_1dod89e + + + Flow_07h69t7 + + + Flow_0w0po21 + Flow_09svnbh + Flow_0n8r7v3 + Flow_0y8vydy + Flow_0y1l5de + Flow_0glptri + Flow_1cxpybp + Flow_0uvzh44 + + + Flow_11adl9o + Flow_0ki2gre + Flow_1p5sg3a + + + + + + + + srcr_updated + + + Flow_179yjf3 + Flow_09lg5lq + Flow_1i279wq + Flow_13vo61m + Flow_0gins7w + Flow_0p3iq5v + + + Flow_0p3iq5v + + + Flow_0err7mx + Flow_0j749xl + Flow_179yjf3 + + + Flow_15il78e + Flow_0u8isdy + Flow_09lg5lq + + + Flow_1ydjyj9 + Flow_063u1s7 + Flow_1i279wq + + + Flow_1ch9vjq + Flow_12ysqpj + Flow_0ted4eh + + + Flow_1g8mwwm + Flow_1ch9vjq + Flow_1w4srg6 + + + Flow_0nu7red + Flow_0dpi9u6 + Flow_13vo61m + + + Flow_0avadfd + Flow_1g8mwwm + Flow_0gins7w + + + Flow_1ifelq5 + Flow_1rsleyy + Flow_0w0po21 + Flow_0avadfd + + + ${triggers != 'ministryServiceApplicationWithTheRecommendationOfAnApprovedProfessional'} - + + ${applicationStatus== 'Resubmitted' and isCssaTeam == true} + + + + + + - execution.setVariable('isSrco',true); + execution.setVariable('isSociety',true); execution.setVariable('isAp',false); -execution.setVariable('isSociety',false); execution.setVariable('isCssaTeam',false); execution.setVariable('isCaseworker',false); +execution.setVariable('isSrco',false); execution.setVariable('isSdm',false); ${action == 'Returned'} - + + ${action == 'Recheck'} + + + ${action == 'Accepted'} + + - execution.setVariable('isCaseworker',true); + execution.setVariable('isCssaTeam',true); execution.setVariable('isAp',false); execution.setVariable('isSociety',false); -execution.setVariable('isCssaTeam',false); +execution.setVariable('isCaseworker',false); execution.setVariable('isSrco',false); execution.setVariable('isSdm',false); ${action == 'Returned'} - + + ${action == 'Recheck'} + + + ${action == 'Accepted'} + + + ${action == 'Rejected'} + + + ${isSentFromSociety == true} + + + ${siteRiskClassification != 'notHighRisk' } + + + ${applicationStatus== 'Resubmitted' and isSrco == true} + + + + + - execution.setVariable('isSdm',true); + execution.setVariable('isSrco',true); execution.setVariable('isAp',false); execution.setVariable('isSociety',false); execution.setVariable('isCssaTeam',false); execution.setVariable('isCaseworker',false); -execution.setVariable('isSrco',false); +execution.setVariable('isSdm',false); ${action == 'Returned'} - - - + ${action == 'Recheck'} - - ${triggers == 'ministryServiceApplicationWithTheRecommendationOfAnApprovedProfessional'} - - - ${applicationStatus== 'Resubmitted' and isAp== true} + + ${action == 'Rejected'} - - + ${action == 'Accepted'} - - ${action == 'Recheck'} - - - ${triggers != 'ministryServiceApplicationWithTheRecommendationOfAnApprovedProfessional'} + + ${applicationStatus!= 'Resubmitted'} - - ${applicationStatus== 'Resubmitted' and isCssaTeam == true} + + ${triggers == 'ministryServiceApplicationWithTheRecommendationOfAnApprovedProfessional'} - - - ${action == 'Accepted'} + + + + execution.setVariable('applicationStatus', 'Resubmitted'); + + + + + ["applicationId", "applicationStatus"] + + + - - ${action == 'Recheck'} + + + + ${applicationStatus== 'Resubmitted' and isAp== true} ${applicationStatus== 'Resubmitted' and isSociety == true} - - - ${action == 'Accepted'} - - - ${action == 'Rejected'} - - - ${action == 'Recheck'} - - - ${isSentFromSociety == true} + + ${applicationStatus== 'Resubmitted' and isSdm == true} - - ${siteRiskClassification != 'notHighRisk' } + + ${applicationStatus== 'Resubmitted' and isCaseworker == true} - - ${applicationStatus== 'Resubmitted' and isSrco == true} + + + + execution.setVariable('applicationStatus', 'New'); + + + + + ["applicationId", "applicationStatus"] + + + + - - - ${action == 'Rejected'} + + + ${isSentFromSociety == false} - - ${action == 'Accepted'} + + ${isSentFromSociety == false} + ${siteRiskClassification != 'notHighRisk'} - - ${siteRiskClassification == 'notHighRisk'} - - - ${isSentFromSociety == false} - ${isSentFromSociety == true} - - ${action == 'Accepted'} - - - ${applicationStatus== 'Resubmitted' and isSdm == true} - + - - ${isSentFromSociety == false} - - - ${applicationStatus== 'Resubmitted' and isCaseworker == true} + + ${action == 'Approved' or action == 'Rejected' } - - + ${action == 'Rejected'} - - ${action == 'Approved' or action == 'Rejected' } - - - ${action == 'Recheck'} + + + + + + + + + + + + + + + execution.setVariable('isAp',true); +execution.setVariable('isSociety',false); +execution.setVariable('isCssaTeam',false); +execution.setVariable('isCaseworker',false); +execution.setVariable('isSrco',false); +execution.setVariable('isSdm',false); + + + ${action == 'Returned'} - - ${siteRiskClassification == 'notHighRisk' } + + ${action == 'Accepted'} - - ${applicationStatus!= 'Resubmitted'} + + + + ${siteRiskClassification == 'notHighRisk'} - + + - execution.setVariable('applicationStatus', 'Resubmitted'); - - - - - ["applicationId", "applicationStatus"] - + execution.setVariable('isCaseworker',true); +execution.setVariable('isAp',false); +execution.setVariable('isSociety',false); +execution.setVariable('isCssaTeam',false); +execution.setVariable('isSrco',false); +execution.setVariable('isSdm',false); + ${action == 'Returned'} - - - + + ${action == 'Recheck'} + + + ${action == 'Accepted'} + + - execution.setVariable('applicationStatus', 'New'); - - - - - ["applicationId", "applicationStatus"] - + execution.setVariable('isSdm',true); +execution.setVariable('isAp',false); +execution.setVariable('isSociety',false); +execution.setVariable('isCssaTeam',false); +execution.setVariable('isCaseworker',false); +execution.setVariable('isSrco',false); - + ${action == 'Returned'} + + + + + + + + + ${siteRiskClassification == 'notHighRisk' } + + + + ${action == 'Recheck'} - + - + - + - + - + - + - + - - - - - - - - - - - - + - - - - - - - - - - - + - + - + - + - + - + - + - + - - + + - + - - + + + + + + + + + + + + - + + + + + + + + + + + - + - - + + + + + + + + - - - - - + + + - - + + - + - - + + - - + + + + + + + + - + - - + + - + - - + + + + + - + - - + + - - + + + + + + + + + + + - - + + + + + + + + + + + + + + - + - - + + - + - - + + - - - - + + + + + - + - - - - - + + + + + + - + - - - - - - - + + + + + - - - - + + + + + + + + + + + + + + + + + + + + + - + - - - - + + + + - + - - - - + + + - + - - - - - - - - - - - - - + + + + - + - - - + + + + - + - - - - - + + + - + - - - - - - - + + + + + - + - - - - - + + + + - + - - - - - + + + + + - + - - - - - + + + + + - - - + + + - - - + + + + + + + + + + + + + - + - - - - - + + + + - + - - - - - - - - - - - - - + + + + + - + - - - - - + + + - + - - - - - + + + - + - - - - + + + - + - - - - - + + + + + + + + + + + + + + + + + - + - - - - - + + + + + - - - + + + + + - - - - - + + + + + + + + + + + + + + + + + + - + - - - + + + + + - + + + + + - - - - + + + + - + - - - + + + + + - + - - - - - - + + + - - - - - + + + + + + + + - + - - - + + + + + - + - - - - - + + + + - - - + + + + - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - - - - - + + + + + + - - - + + + - - - - - + + + + + + + + - + - - - - + + + + + + + + - + - - - - + + + + - + - - - + + + - + - - - + + + + - + - - - + + + + - - - + + + + - - - + + + + - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - \ No newline at end of file + diff --git a/forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/templates/srcr_application.ftl b/forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/templates/srcr_application.ftl new file mode 100644 index 00000000..4b2a82ef --- /dev/null +++ b/forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/templates/srcr_application.ftl @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + +
+ + + Site Remediation Services +
+ + + + + + + + + + + + + + + + + + + +
+
+
+

+ Site Risk Classification Report. +

+
+

+ Dear ${name}, +

+

+ Your Site Risk Classification Repor application has been updated. Current status is ${action}. +

+
+

+ If you need any help, don’t hesitate to reach out to us at ${support} +

+
+
+
+ +

BC Public Services will never send an email that asks you to provide, confirm or verify personal, log on or account information. + DO NOT reply to this email as it was sent from an unmonitored account. +

+
+ + \ No newline at end of file From 6a9b6cc39e5b1b1f2cb228ebd0693d9d35b472b3 Mon Sep 17 00:00:00 2001 From: nikhila-aot Date: Thu, 5 Oct 2023 10:38:52 -0700 Subject: [PATCH 118/194] issue fix for client --- ...nated Sites Services Application Form.json | 32 +++++++++---------- 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/forms-flow-ai/epd-forms/bundling/Contaminated Sites Services Application Form.json b/forms-flow-ai/epd-forms/bundling/Contaminated Sites Services Application Form.json index 5073bacd..71f98aa5 100644 --- a/forms-flow-ai/epd-forms/bundling/Contaminated Sites Services Application Form.json +++ b/forms-flow-ai/epd-forms/bundling/Contaminated Sites Services Application Form.json @@ -755,7 +755,7 @@ "key": "cssaSiteOwnerActions", "tags": [], "properties": {}, - "customConditional": "const UserDetails = JSON.parse(localStorage.getItem(\"UserDetails\"))\r\n\r\n\r\n\r\nconst roles = UserDetails[\"role\"];\r\n\r\nif (data.riskclassification === \"exempt\") {\r\n if(roles.includes(\"formsflow-reviewer/formsflow-client-reviewer\") && data.applicationStatus !== undefined && data.applicationStatus !== '') {\r\n show = true;\r\n }\r\n else\r\n {\r\n show = false;\r\n }\r\n} else\r\n show = false;\r\n }", + "customConditional": "const UserDetails = JSON.parse(localStorage.getItem(\"UserDetails\"));\r\nconst roles = UserDetails[\"role\"];\r\n\r\nif (data.riskclassification === \"exempt\") {\r\n if(roles.includes(\"formsflow-reviewer/formsflow-client-reviewer\") && data.applicationStatus !== undefined && data.applicationStatus !== '') {\r\n show = true;\r\n }\r\n else\r\n {\r\n show = false;\r\n }\r\n} else {\r\n show = false;\r\n}", "conditional": { "json": "", "show": null, @@ -858,7 +858,7 @@ "block": false, "disableOnInvalid": false, "theme": "primary", - "id": "e29fdgb" + "id": "evkup66c" } ], "width": 3, @@ -960,7 +960,7 @@ "tree": false, "lazyLoad": false, "autoAdjust": false, - "id": "eq33mem" + "id": "e6pk3ur" } ], "keyModified": true, @@ -1002,7 +1002,7 @@ "addons": [], "tree": false, "lazyLoad": false, - "id": "edb2y6f" + "id": "edm36dr" }, { "title": "Reviewer Actions", @@ -7612,7 +7612,7 @@ "addons": [], "tree": false, "lazyLoad": false, - "id": "ehmz9lv00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" + "id": "ehmz9lv" } ], "placeholder": "", @@ -9255,7 +9255,7 @@ } ], "collapsible": false, - "id": "ewhx8sm0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "id": "ewhx8sm", "placeholder": "", "prefix": "", "customClass": "", @@ -18423,7 +18423,7 @@ }, "inputMask": "999-999-999", "tableView": true, - "id": "elva880000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "id": "elva88", "placeholder": "", "prefix": "", "customClass": "", @@ -18503,7 +18503,7 @@ "tableView": true, "autoExpand": true, "inputFormat": "plain", - "id": "ey48nu0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "id": "ey48nu", "placeholder": "", "prefix": "", "customClass": "", @@ -18878,7 +18878,7 @@ "input": true, "label": "PIN", "tableView": true, - "id": "eyxe45n0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "id": "eyxe45n", "placeholder": "", "prefix": "", "customClass": "", @@ -18971,7 +18971,7 @@ "autoExpand": true, "inputFormat": "plain", "placeholder": "example, metes and bounds", - "id": "efdcvf0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "id": "efdcvf", "prefix": "", "customClass": "", "suffix": "", @@ -19185,7 +19185,7 @@ "input": true, "label": "Crown Land File Numbers", "tableView": true, - "id": "emf4u7g0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "id": "emf4u7g", "placeholder": "", "prefix": "", "customClass": "", @@ -20237,7 +20237,7 @@ }, "inputMask": "999-999-999", "tableView": true, - "id": "ev43oe90000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "id": "ev43oe9", "placeholder": "", "prefix": "", "customClass": "", @@ -20317,7 +20317,7 @@ "tableView": true, "autoExpand": true, "inputFormat": "plain", - "id": "eb3d0l0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "id": "eb3d0l", "placeholder": "", "prefix": "", "customClass": "", @@ -20692,7 +20692,7 @@ "input": true, "label": "PIN", "tableView": true, - "id": "eyv4fcu000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "id": "eyv4fcu", "placeholder": "", "prefix": "", "customClass": "", @@ -20785,7 +20785,7 @@ "autoExpand": true, "inputFormat": "plain", "placeholder": "example, metes and bounds", - "id": "ecgeub000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "id": "ecgeub", "prefix": "", "customClass": "", "suffix": "", @@ -20999,7 +20999,7 @@ "input": true, "label": "Crown Land File Numbers", "tableView": true, - "id": "eguyyh000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "id": "eguyyh", "placeholder": "", "prefix": "", "customClass": "", From d074736c8e99b5d70b58e326e7e257e5bba7cebe Mon Sep 17 00:00:00 2001 From: midhun-aot Date: Thu, 5 Oct 2023 13:31:33 -0700 Subject: [PATCH 119/194] updated DERA workflow --- .../Bundling/subProcess/DERABundleWorkflow.bpmn | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/processes/Bundling/subProcess/DERABundleWorkflow.bpmn b/forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/processes/Bundling/subProcess/DERABundleWorkflow.bpmn index 265c91e7..b055785b 100644 --- a/forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/processes/Bundling/subProcess/DERABundleWorkflow.bpmn +++ b/forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/processes/Bundling/subProcess/DERABundleWorkflow.bpmn @@ -651,9 +651,7 @@ execution.setVariable('requestType', 'DERA'); Flow_0zq3j61 - - - + Flow_19nit40 @@ -706,7 +704,7 @@ task.execution.setVariable('userRole','Statutory Decision Maker'); task.execution.setVariable('applicationStatus', task.execution.getVariable('action')); task.execution.setVariable('deleteReason', "completed"); -task.execution.setVariable('userRole','Case worker'); +task.execution.setVariable('userRole','Case worker 3'); @@ -902,7 +900,7 @@ task.execution.setVariable('requestType', 'SRCR'); task.execution.setVariable('deleteReason', "completed"); task.execution.setVariable('srcrStatus', task.execution.getVariable('action')); task.execution.setVariable('applicationStatus', task.execution.getVariable('action')); -task.execution.setVariable('userRole','Case worker'); +task.execution.setVariable('userRole','Case worker 2'); @@ -946,7 +944,8 @@ system.out.println ("Sent to SDM"); task.execution.setVariable('requestType', 'SRCR'); task.execution.setVariable('deleteReason', "completed"); task.execution.setVariable('srcrStatus', task.execution.getVariable('action')); -task.execution.setVariable('applicationStatus', task.execution.getVariable('action')); +task.execution.setVariable('applicationStatus', task.execution.getVariable('action')); +task.execution.setVariable('userRole','Statutory Decision Maker'); From 93f958a8596c823e398e4d9d5ed4830b6f8aa427 Mon Sep 17 00:00:00 2001 From: midhun-aot Date: Thu, 5 Oct 2023 16:35:14 -0700 Subject: [PATCH 120/194] fix for reviewer assignment --- .../subProcess/NOMBundleWorkflow.bpmn | 34 ++++++++----------- 1 file changed, 14 insertions(+), 20 deletions(-) diff --git a/forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/processes/Bundling/subProcess/NOMBundleWorkflow.bpmn b/forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/processes/Bundling/subProcess/NOMBundleWorkflow.bpmn index 3e0018b0..f4b758b7 100644 --- a/forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/processes/Bundling/subProcess/NOMBundleWorkflow.bpmn +++ b/forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/processes/Bundling/subProcess/NOMBundleWorkflow.bpmn @@ -222,7 +222,7 @@ execution.setVariable('returnedBy', "cssaTeam"); var system = java.lang.System; system.out.println ("Sent to Caseworker"); - + @@ -266,7 +266,7 @@ task.execution.setVariable('applicationStatus', task.execution.getVariable('acti var system = java.lang.System; system.out.println ("Sent to SDM"); - + @@ -351,7 +351,7 @@ system.out.println ("isSentFromSociety "+execution.getVariable('isSentFromSociet Flow_1f79u4n - + @@ -715,16 +715,6 @@ task.execution.setVariable('deleteReason', "completed"); Flow_077ihmr Flow_1ld9bfn var system = java.lang.System; -var selectCssaSdm= execution.getVariable('selectCssaSdm'); -system.out.println ("selectCssaSdm"+selectCssaSdm); -execution.setVariable('cssaSdmAssignment',selectCssaSdm); -system.out.println ("cssaSdmAssignment"+execution.getVariable('cssaSdmAssignment')); - -var selectCssaCaseworker= execution.getVariable('selectCssaCaseworker'); -system.out.println ("selectCssaCaseworker"+selectCssaCaseworker); -execution.setVariable('cssaCaseworkerAssignment',selectCssaCaseworker); -system.out.println ("cssaCaseworkerAssignment"+execution.getVariable('cssaCaseworkerAssignment')); - var selectSdm= execution.getVariable('selectSdm'); system.out.println ("selectSdm"+selectSdm); execution.setVariable('sdmAssignment',selectSdm); @@ -741,7 +731,11 @@ execution.setVariable('srcoAssignment',selectSrco); system.out.println ("srcoAssignment"+execution.getVariable('srcoAssignment')); - + + + + + Flow_0x0w3ip @@ -904,12 +898,6 @@ system.out.println ("srcoAssignment"+execution.getVariable('srcoAssignment')); - - - - - - @@ -1237,6 +1225,12 @@ system.out.println ("srcoAssignment"+execution.getVariable('srcoAssignment')); + + + + + + From d2aa80a8062324dfeee3b8d887dc1a4ca8e111d1 Mon Sep 17 00:00:00 2001 From: nikhila-aot Date: Sun, 8 Oct 2023 21:04:27 -0700 Subject: [PATCH 121/194] changes for email and reviewer assignment --- .gitignore | 4 +- .../Site Risk Classification Report.json | 710 ++++++- .../callActivity/CSSABundleWorklow.bpmn | 692 ------- .../Bundling/callActivity/CSSAWorkflow.bpmn | 399 ---- .../Bundling/callActivity/SRCRWorkflow.bpmn | 608 ------ .../processes/Common/email-template.dmn | 438 ++--- .../processes/SRCR/SRCRWorkflow.bpmn | 1745 ++++++++--------- .../templates/nom_application.ftl | 2 +- .../templates/srcr_application.ftl | 6 +- 9 files changed, 1720 insertions(+), 2884 deletions(-) delete mode 100644 forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/processes/Bundling/callActivity/CSSABundleWorklow.bpmn delete mode 100644 forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/processes/Bundling/callActivity/CSSAWorkflow.bpmn delete mode 100644 forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/processes/Bundling/callActivity/SRCRWorkflow.bpmn diff --git a/.gitignore b/.gitignore index 9df77555..a043d6c7 100644 --- a/.gitignore +++ b/.gitignore @@ -125,4 +125,6 @@ backend/etl/debezium-jdbc/target/ notes/ forms-flow-ai/forms-flow-bpm/postgres/ -forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/postgres/ \ No newline at end of file +forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/postgres/ +forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/id_rsa_epd +forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/id_rsa_epd.pub \ No newline at end of file diff --git a/forms-flow-ai/epd-forms/Site Risk Classification Report.json b/forms-flow-ai/epd-forms/Site Risk Classification Report.json index 7e5d1f6d..8dc58db7 100644 --- a/forms-flow-ai/epd-forms/Site Risk Classification Report.json +++ b/forms-flow-ai/epd-forms/Site Risk Classification Report.json @@ -23,7 +23,7 @@ "key": "formActions", "tags": [], "properties": {}, - "customConditional": "const UserDetails = JSON.parse(localStorage.getItem(\"UserDetails\"));\r\nconst roles = UserDetails?UserDetails[\"role\"]:[];\r\nif(!UserDetails){\r\n show = false;\r\n}\r\nelse if(roles.includes(\"formsflow-client\")||\r\nroles.includes(\"formsflow-reviewer/formsflow-client-reviewer\")) {\r\n show = false;\r\n}\r\nelse\r\n{\r\n show = true;\r\n}", + "customConditional": "const UserDetails = JSON.parse(localStorage.getItem(\"UserDetails\"));\r\nconst roles = UserDetails?UserDetails[\"role\"]:[];\r\nconsole.log('data-----', data);\r\nif(!UserDetails){\r\n show = false;\r\n}\r\nelse if(roles.includes(\"formsflow-client\")||\r\nroles.includes(\"formsflow-reviewer/formsflow-client-reviewer\")) {\r\n show = false;\r\n}\r\nelse\r\n{\r\n show = true;\r\n}", "conditional": { "json": "", "show": null, @@ -127,7 +127,7 @@ "block": false, "disableOnInvalid": false, "theme": "primary", - "id": "eco6ay8" + "id": "evm89dm" } ], "width": 3, @@ -143,36 +143,61 @@ "label": "Next Reviewer", "action": "custom", "showValidations": false, + "theme": "primary", + "size": "md", + "block": false, + "leftIcon": "", + "rightIcon": "", + "shortcut": "", + "description": "", + "tooltip": "", + "customClass": "", + "tabindex": "", + "disableOnInvalid": false, + "hidden": false, + "autofocus": false, + "disabled": false, "tableView": false, + "modalEdit": false, "key": "sendToNextReviewer", - "customConditional": "\r\nconst UserDetails = JSON.parse(localStorage.getItem(\"UserDetails\"))\r\nconst roles = UserDetails[\"role\"];\r\n\r\nif(roles.includes(\"formsflow-reviewer/cssa-team\") || \r\nroles.includes(\"formsflow-reviewer/cssa-manager\") || \r\nroles.includes(\"formsflow-reviewer/csap\") || \r\nroles.includes(\"formsflow-reviewer/csap-society\") || \r\nroles.includes(\"formsflow-reviewer/caseworker\")|| \r\nroles.includes(\"formsflow-reviewer/site-risk-classification-officer\")) {\r\n show = true;\r\n}\r\nelse\r\n{\r\n show = false;\r\n}", + "tags": [], + "properties": {}, + "conditional": { + "show": null, + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "const UserDetails = JSON.parse(localStorage.getItem(\"UserDetails\"))\r\nconst roles = UserDetails[\"role\"];\r\n\r\nif(roles.includes(\"formsflow-reviewer/cssa-team\") || \r\nroles.includes(\"formsflow-reviewer/cssa-manager\") || \r\nroles.includes(\"formsflow-reviewer/csap\") || \r\nroles.includes(\"formsflow-reviewer/csap-society\") || \r\nroles.includes(\"formsflow-reviewer/site-risk-classification-officer\")) \r\n{\r\n show = true;\r\n}\r\nelse if (roles.includes(\"formsflow-reviewer/caseworker\") &&\r\ndata.srcrBundleStatus === \"srcrSrcoAccepted\")\r\n{\r\n if (data.applicabletriggers === \"ministryServiceApplicationWithTheRecommendationOfAnApprovedProfessional\" ||\r\n data.siteRiskClassification !== 'notHighRisk')\r\n show = false;\r\nelse\r\n show = true;\r\n}\r\nelse\r\n{\r\n show = false;\r\n}", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, "type": "button", - "custom": "const submissionId = form._submission._id;\r\nconst formId = form._submission.form;\r\nconst formDataReqUrl = form.formio?form.formio.formUrl:(localStorage.getItem('customSubmissionUrl')+'/form/'+formId)+'/submission/'+submissionId;\r\nconst formDataReqObj1 = { \"_id\": submissionId, \"data\": data};\r\nconst formio = new Formio(formDataReqUrl);\r\nformio.saveSubmission(formDataReqObj1).then( result => {\r\nform.emit('customEvent', {\r\n type: \"actionComplete\", \r\n component: component,\r\n actionType: 'Accepted'\r\n }); \r\n}).catch((error)=>{\r\n//Error callback on not Save\r\nform.emit('customEvent', {\r\n type: \"actionError\", \r\n component: component,\r\n actionType:'Accepted'\r\n }); \r\n});", + "custom": "const UserDetails = JSON.parse(localStorage.getItem(\"UserDetails\"))\r\nconst roles = UserDetails[\"role\"];\r\n\r\nif(roles.includes(\"formsflow-reviewer/cssa-manager\") && \r\n(data.selectSdm===''|| data.selectCaseworker===''||data.selectSrco===''))\r\n{\r\n alert('Please assign reviewers to continue!');\r\n \r\n}\r\nelse\r\n{\r\n const submissionId = form._submission._id;\r\n const formId = form._submission.form;\r\n const formDataReqUrl = form.formio?form.formio.formUrl:(localStorage.getItem('customSubmissionUrl')+'/form/'+formId)+'/submission/'+submissionId;\r\n const formDataReqObj1 = { \"_id\": submissionId, \"data\": data};\r\n const formio = new Formio(formDataReqUrl);\r\n formio.saveSubmission(formDataReqObj1).then( result => {\r\n form.emit('customEvent', {\r\n type: \"actionComplete\", \r\n component: component,\r\n actionType: 'Accepted'\r\n }); \r\n }).catch((error)=>{\r\n //Error callback on not Save\r\n form.emit('customEvent', {\r\n type: \"actionError\", \r\n component: component,\r\n actionType:'Accepted'\r\n }); \r\n });\r\n}", "input": true, "keyModified": true, "placeholder": "", "prefix": "", - "customClass": "", "suffix": "", "multiple": false, "defaultValue": null, "protected": false, "unique": false, "persistent": false, - "hidden": false, "clearOnHide": true, "refreshOn": "", "redrawOn": "", - "modalEdit": false, "dataGridLabel": true, "labelPosition": "top", - "description": "", "errorLabel": "", - "tooltip": "", "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, "dbIndex": false, "customDefaultValue": "", "calculateValue": "", @@ -180,7 +205,6 @@ "widget": { "type": "input" }, - "attributes": {}, "validateOn": "change", "validate": { "required": false, @@ -190,32 +214,13 @@ "multiple": false, "unique": false }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, "allowCalculateOverride": false, "encrypted": false, "showCharCount": false, "showWordCount": false, - "properties": {}, "allowMultipleMasks": false, "addons": [], - "size": "md", - "leftIcon": "", - "rightIcon": "", - "block": false, - "disableOnInvalid": false, - "theme": "primary", - "id": "eu5pfce" + "id": "eueyf98" }, { "label": "Approved", @@ -223,7 +228,7 @@ "showValidations": false, "tableView": false, "key": "approve", - "customConditional": "const UserDetails = JSON.parse(localStorage.getItem(\"UserDetails\"))\r\n\r\n\r\n\r\nconst roles = UserDetails[\"role\"];\r\n\r\n\r\nif(roles.includes(\"formsflow-reviewer/sdm\")) {\r\n show = true;\r\n}\r\nelse\r\n{\r\n show = false;\r\n}", + "customConditional": "const UserDetails = JSON.parse(localStorage.getItem(\"UserDetails\"));\r\nconst roles = UserDetails[\"role\"];\r\n\r\nif(roles.includes(\"formsflow-reviewer/sdm\")) {\r\n if (data.srcrBundleStatus === \"srcrCaseworkerAccepted\") \r\n show = true;\r\n else if (data.srcrBundleStatus === \"srcrSrcoAccepted\") {\r\n if (data.applicabletriggers === \"ministryServiceApplicationWithTheRecommendationOfAnApprovedProfessional\" ||\r\n data.siteRiskClassification !== 'notHighRisk')\r\n show = true;\r\n else\r\n show = false;\r\n }\r\n}\r\nelse\r\n{\r\n show = false;\r\n}", "type": "button", "custom": "const submissionId = form._submission._id;\r\nconst formId = form._submission.form;\r\nconst formDataReqUrl = form.formio?form.formio.formUrl:(localStorage.getItem('customSubmissionUrl')+'/form/'+formId)+'/submission/'+submissionId;\r\nconst formDataReqObj1 = { \"_id\": submissionId, \"data\": data};\r\nconst formio = new Formio(formDataReqUrl);\r\nformio.saveSubmission(formDataReqObj1).then( result => {\r\nform.emit('customEvent', {\r\n type: \"actionComplete\", \r\n component: component,\r\n actionType: 'Approved'\r\n }); \r\n}).catch((error)=>{\r\n//Error callback on not Save\r\nform.emit('customEvent', {\r\n type: \"actionError\", \r\n component: component,\r\n actionType:'Approved'\r\n }); \r\n});", "input": true, @@ -292,7 +297,7 @@ "block": false, "disableOnInvalid": false, "theme": "primary", - "id": "ez2767s" + "id": "ed33nc" } ], "width": 3, @@ -311,6 +316,7 @@ "theme": "warning", "tableView": false, "key": "sendToApplicant", + "customConditional": "\r\nconst UserDetails = JSON.parse(localStorage.getItem(\"UserDetails\"))\r\nconst roles = UserDetails[\"role\"];\r\n\r\nif(roles.includes(\"formsflow-reviewer/cssa-manager\")) {\r\n show = false;\r\n}\r\nelse\r\n{\r\n show = true;\r\n}", "type": "button", "custom": "const submissionId = form._submission._id;\r\nconst formId = form._submission.form;\r\nconst formDataReqUrl = form.formio?form.formio.formUrl:(localStorage.getItem('customSubmissionUrl')+'/form/'+formId)+'/submission/'+submissionId;\r\nconst formDataReqObj1 = { \"_id\": submissionId, \"data\": data};\r\nconst formio = new Formio(formDataReqUrl);\r\nformio.saveSubmission(formDataReqObj1).then( result => {\r\nform.emit('customEvent', {\r\n type: \"actionComplete\", \r\n component: component,\r\n actionType: 'Returned'\r\n }); \r\n}).catch((error)=>{\r\n//Error callback on not Save\r\nform.emit('customEvent', {\r\n type: \"actionError\", \r\n component: component,\r\n actionType:'Returned'\r\n }); \r\n});", "input": true, @@ -378,7 +384,7 @@ "rightIcon": "", "block": false, "disableOnInvalid": false, - "id": "ewgqusg" + "id": "ehvms7i" } ], "size": "md", @@ -397,7 +403,7 @@ "theme": "danger", "tableView": false, "key": "rejectForm", - "customConditional": "\r\nconst UserDetails = JSON.parse(localStorage.getItem(\"UserDetails\"))\r\nconst roles = UserDetails[\"role\"];\r\n\r\nif(roles.includes(\"formsflow-reviewer/csap\") || \r\nroles.includes(\"formsflow-reviewer/csap-society\")) {\r\n show = false;\r\n}\r\nelse\r\n{\r\n show = true;\r\n}", + "customConditional": "\r\nconst UserDetails = JSON.parse(localStorage.getItem(\"UserDetails\"))\r\nconst roles = UserDetails[\"role\"];\r\n\r\nif(roles.includes(\"formsflow-reviewer/csap\") || \r\nroles.includes(\"formsflow-reviewer/csap-society\")|| \r\nroles.includes(\"formsflow-reviewer/cssa-manager\")) {\r\n show = false;\r\n}\r\nelse\r\n{\r\n show = true;\r\n}", "type": "button", "custom": "const submissionId = form._submission._id;\r\nconst formId = form._submission.form;\r\nconst formDataReqUrl = form.formio?form.formio.formUrl:(localStorage.getItem('customSubmissionUrl')+'/form/'+formId)+'/submission/'+submissionId;\r\nconst formDataReqObj1 = { \"_id\": submissionId, \"data\": data};\r\nconst formio = new Formio(formDataReqUrl);\r\nformio.saveSubmission(formDataReqObj1).then( result => {\r\nform.emit('customEvent', {\r\n type: \"actionComplete\", \r\n component: component,\r\n actionType: 'Rejected'\r\n }); \r\n}).catch((error)=>{\r\n//Error callback on not Save\r\nform.emit('customEvent', {\r\n type: \"actionError\", \r\n component: component,\r\n actionType:'Rejected'\r\n }); \r\n});", "input": true, @@ -465,7 +471,7 @@ "rightIcon": "", "block": false, "disableOnInvalid": false, - "id": "eb3ty7" + "id": "emzwhoj" } ], "size": "md", @@ -540,7 +546,7 @@ "tree": false, "lazyLoad": false, "autoAdjust": false, - "id": "emwomfh" + "id": "e8js46" } ], "keyModified": true, @@ -582,7 +588,556 @@ "addons": [], "tree": false, "lazyLoad": false, - "id": "e6d8x0j" + "id": "e1zxgyg" + }, + { + "title": "Assign Reviewers", + "theme": "default", + "tooltip": "", + "customClass": "", + "collapsible": true, + "hidden": false, + "hideLabel": false, + "disabled": false, + "modalEdit": false, + "key": "sdmAssignment", + "tags": [], + "properties": {}, + "customConditional": "const UserDetails = JSON.parse(localStorage.getItem(\"UserDetails\"));\r\nconst roles = UserDetails[\"role\"];\r\n\r\nif(roles.includes(\"formsflow-reviewer/cssa-manager\")) {\r\n show = true;\r\n}\r\nelse\r\n{\r\n show = false;\r\n}", + "conditional": { + "json": "", + "show": null, + "when": null, + "eq": "" + }, + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "panel", + "label": "", + "breadcrumb": "default", + "tabindex": "", + "collapsed": false, + "input": false, + "tableView": false, + "components": [ + { + "label": "Columns", + "columns": [ + { + "components": [ + { + "label": "Select SDM", + "widget": "choicesjs", + "tableView": true, + "dataSrc": "url", + "data": { + "url": "{{localStorage.getItem('formsflow.ai.api.url')}}/user?memberOfGroup=formsflow/formsflow-reviewer/sdm", + "headers": [ + { + "key": "Authorization", + "value": "Bearer {{localStorage.getItem(\"authToken\")}}" + }, + { + "key": "Content-type", + "value": "application/json" + }, + { + "key": "Accept", + "value": "application/json" + } + ], + "values": [ + { + "label": "", + "value": "" + } + ], + "json": "", + "resource": "", + "custom": "" + }, + "dataType": "string", + "valueProperty": "username", + "template": "{{ item.lastName }}, {{ item.firstName }}", + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "onlyAvailableItems": false + }, + "key": "selectSdm", + "type": "select", + "selectValues": "data", + "disableLimit": false, + "input": true, + "keyModified": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "idPath": "id", + "clearOnRefresh": false, + "limit": 100, + "lazyLoad": true, + "filter": "", + "searchEnabled": true, + "searchDebounce": 0.3, + "searchField": "", + "minSearch": 0, + "readOnlyValue": false, + "authenticate": false, + "ignoreCache": false, + "selectFields": "", + "selectThreshold": 0.3, + "uniqueOptions": false, + "fuseOptions": { + "include": "score", + "threshold": 0.3 + }, + "indexeddb": { + "filter": {} + }, + "customOptions": {}, + "useExactSearch": false, + "id": "e08q3" + } + ], + "width": 4, + "offset": 0, + "push": 0, + "pull": 0, + "size": "md", + "currentWidth": 4 + }, + { + "components": [ + { + "label": "Select Caseworker", + "widget": "choicesjs", + "tableView": true, + "dataSrc": "url", + "data": { + "url": "{{localStorage.getItem('formsflow.ai.api.url')}}/user?memberOfGroup=formsflow/formsflow-reviewer/caseworker", + "headers": [ + { + "key": "Authorization", + "value": "Bearer {{localStorage.getItem(\"authToken\")}}" + }, + { + "key": "Content-type", + "value": "application/json" + }, + { + "key": "Accept", + "value": "application/json" + } + ], + "values": [ + { + "label": "", + "value": "" + } + ], + "json": "", + "resource": "", + "custom": "" + }, + "dataType": "string", + "valueProperty": "username", + "template": "{{ item.lastName }}, {{ item.firstName }}", + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "onlyAvailableItems": false + }, + "key": "selectCaseworker", + "type": "select", + "selectValues": "data", + "disableLimit": false, + "input": true, + "keyModified": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "idPath": "id", + "clearOnRefresh": false, + "limit": 100, + "lazyLoad": true, + "filter": "", + "searchEnabled": true, + "searchDebounce": 0.3, + "searchField": "", + "minSearch": 0, + "readOnlyValue": false, + "authenticate": false, + "ignoreCache": false, + "selectFields": "", + "selectThreshold": 0.3, + "uniqueOptions": false, + "fuseOptions": { + "include": "score", + "threshold": 0.3 + }, + "indexeddb": { + "filter": {} + }, + "customOptions": {}, + "useExactSearch": false, + "id": "ewmgoh" + } + ], + "width": 4, + "offset": 0, + "push": 0, + "pull": 0, + "size": "md", + "currentWidth": 4 + }, + { + "components": [ + { + "label": "Select SRCO", + "widget": "choicesjs", + "tableView": true, + "dataSrc": "url", + "data": { + "url": "{{localStorage.getItem('formsflow.ai.api.url')}}/user?memberOfGroup=formsflow/formsflow-reviewer/site-risk-classification-officer", + "headers": [ + { + "key": "Authorization", + "value": "Bearer {{localStorage.getItem(\"authToken\")}}" + }, + { + "key": "Content-type", + "value": "application/json" + }, + { + "key": "Accept", + "value": "application/json" + } + ], + "values": [ + { + "label": "", + "value": "" + } + ], + "json": "", + "resource": "", + "custom": "" + }, + "dataType": "string", + "valueProperty": "username", + "template": "{{ item.lastName }}, {{ item.firstName }}", + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "onlyAvailableItems": false + }, + "key": "selectSrco", + "type": "select", + "selectValues": "data", + "disableLimit": false, + "input": true, + "keyModified": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "attributes": {}, + "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "idPath": "id", + "clearOnRefresh": false, + "limit": 100, + "lazyLoad": true, + "filter": "", + "searchEnabled": true, + "searchDebounce": 0.3, + "searchField": "", + "minSearch": 0, + "readOnlyValue": false, + "authenticate": false, + "ignoreCache": false, + "selectFields": "", + "selectThreshold": 0.3, + "uniqueOptions": false, + "fuseOptions": { + "include": "score", + "threshold": 0.3 + }, + "indexeddb": { + "filter": {} + }, + "customOptions": {}, + "useExactSearch": false, + "id": "eq18r4" + } + ], + "size": "md", + "width": 4, + "offset": 0, + "push": 0, + "pull": 0, + "currentWidth": 4 + } + ], + "key": "columns3", + "type": "columns", + "input": false, + "tableView": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "hidden": false, + "clearOnHide": false, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "tree": false, + "lazyLoad": false, + "autoAdjust": false, + "id": "enk5gkd" + } + ], + "keyModified": true, + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "clearOnHide": false, + "refreshOn": "", + "redrawOn": "", + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "tree": false, + "lazyLoad": false, + "id": "exezpw" }, { "label": "Notes", @@ -3623,7 +4178,7 @@ "attributes": {}, "components": [ { - "id": "ele95t0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "id": "ele95t0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", "key": "spropertyOwnerAndOrOperator", "tree": false, "type": "panel", @@ -13033,7 +13588,7 @@ "attributes": {}, "components": [ { - "id": "eks0gu000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "id": "eks0gu000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", "key": "exposurePathwayQuestionnaireAffectedParcel", "tree": false, "type": "panel", @@ -16976,7 +17531,7 @@ } ], "collapsible": false, - "id": "eo5mwyp0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "id": "eo5mwyp0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", "placeholder": "", "prefix": "", "customClass": "", @@ -18073,6 +18628,75 @@ "id": "e6z1qd9", "description": "", "addons": [] + }, + { + "label": "srcrBundleStatus", + "key": "srcrBundleStatus", + "type": "hidden", + "input": true, + "tableView": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "inputType": "hidden", + "id": "ezs3a9", + "keyModified": true } ] } diff --git a/forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/processes/Bundling/callActivity/CSSABundleWorklow.bpmn b/forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/processes/Bundling/callActivity/CSSABundleWorklow.bpmn deleted file mode 100644 index cb624650..00000000 --- a/forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/processes/Bundling/callActivity/CSSABundleWorklow.bpmn +++ /dev/null @@ -1,692 +0,0 @@ - - - - - - - - - Gateway_0uf75ow - Activity_0vkc1zi - Activity_1mo5nko - Gateway_1o5uudb - Activity_0p4hm8r - Event_0sdygwc - - - Gateway_15p5urd - Activity_1ao3zkj - - - Activity_08ykdar - Gateway_0oobb3z - - - Gateway_04o747e - Activity_1uc1xs1 - - - StartEvent_1 - Activity_0k6ixqm - Activity_1ozfgid - Gateway_17raw62 - Activity_1v5ffpw - Gateway_08cgufe - - - - Flow_1rc30l8 - - - Flow_1rc30l8 - Flow_0dbqph3 - var system = java.lang.System; -system.out.println ("Submit Bundle"); -execution.setVariable('isCaseworker',false); -execution.setVariable('isSdm',false); -execution.setVariable('isAp',false); -execution.setVariable('isSociety',false); -execution.setVariable('isCssaTeam',false); - - - Flow_0dbqph3 - Flow_1stifo9 - Flow_05pndkl - var system = java.lang.System; -var typeOfReview = execution.getVariable('typeOfReview'); -system.out.println ("typeOfReview "+typeOfReview); -execution.setVariable('typeOfReview',typeOfReview); -var clientEmail = execution.getVariable('simpleemail'); -system.out.println ("clientEmail "+clientEmail); -execution.setVariable('clientEmail',clientEmail); -var siteRiskClassification = execution.getVariable('siteRiskClassification'); -system.out.println ("siteRiskClassification "+siteRiskClassification ); -execution.setVariable('siteRiskClassification',siteRiskClassification); - -var professionalradio = execution.getVariable('Professionalradio'); -var owneroperatorradioGroup = execution.getVariable('owneroperatorradioGroup'); -var hiddenUserIdForFormSharingApplicantAsOwner = execution.getVariable('hiddenUserIdForFormSharingApplicantAsOwner'); -var hiddenUserIdForFormSharingWithDiffOwner = execution.getVariable('hiddenUserIdForFormSharingWithDiffOwner'); -var userIdForSharing = ''; - -system.out.println ("professionalradio "+professionalradio ); -system.out.println ("owneroperatorradioGroup "+owneroperatorradioGroup ); -system.out.println ("hiddenUserIdForFormSharingApplicantAsOwner"+hiddenUserIdForFormSharingApplicantAsOwner); -system.out.println ("hiddenUserIdForFormSharingWithDiffOwner "+hiddenUserIdForFormSharingWithDiffOwner); - -system.out.println(professionalradio == "yes"); -if(professionalradio == "yes") -{ - if(owneroperatorradioGroup == "sameAsApplicant") - { - system.out.println("owneroperatorradioGroup"+hiddenUserIdForFormSharingApplicantAsOwner); - userIdForSharing = hiddenUserIdForFormSharingApplicantAsOwner; - - } - else - { - - system.out.println("WithDiffOwner"+hiddenUserIdForFormSharingApplicantAsOwner); - userIdForSharing = hiddenUserIdForFormSharingApplicantAsOwner; - - } -} -system.out.println ("userIdForSharing"+userIdForSharing); -execution.setVariable('professionalradio',professionalradio); -execution.setVariable('userIdForSharing',userIdForSharing); - - - - - execution.setVariable('bundleUrl', execution.getVariable('formUrl')); - - - ${action == 'Accepted'} - - - ${applicationStatus!= 'Resubmitted'} - - - - - execution.setVariable('isCssaTeam',true); - - - ${action == 'Returned'} - - - ${action == 'Rejected'} - - - - - execution.setVariable('applicationStatus', "Resubmitted"); - - - - ["applicationId", "applicationStatus", "cssaStatus", "srcrStatus"] - - - - - - - - - - - ["applicationId", "applicationStatus", "cssaStatus", "srcrStatus"] - - - - - - - - - Flow_05pndkl - Flow_1xj96i6 - Flow_0527h3y - Flow_0543g25 - Flow_0wr0mei - - - - - var system = java.lang.System; -execution.setVariable('isSentFromSociety',false); -system.out.println ("isSentFromSociety "+ execution.getVariable('isSentFromSociety')); - - - - ${typeOfReview== 'directToMinistryApplication'} - - - - - - ${typeOfReview!= 'directToMinistryApplication'} - - - - - execution.setVariable('isAp',true); - - - ${action == 'Returned'} - - - - - - ${action == 'Accepted'} - - - - - - - Flow_0d8ruax - Flow_0gb2oz2 - Flow_0qw9o9a - Flow_0pzpbn7 - - - - - - - ${action == 'Accepted'} - - - - - execution.setVariable('isSociety',true); - - - ${action == 'Returned'} - - - Flow_0b418rv - Flow_12uv3km - Flow_0kfjdmp - - - - - task.execution.setVariable('applicationStatus', task.execution.getVariable('action')); -task.execution.setVariable('deleteReason', "completed"); - - - - - ["applicationId", "applicationStatus", "cssaStatus", "srcrStatus"] - - - - task.execution.setVariable('isAp',false); - - - Flow_142lsgk - Flow_0pzpbn7 - Flow_0527h3y - Flow_0b418rv - - - - - task.execution.setVariable('isCssaTeam',false); - - - task.execution.setVariable('applicationStatus', task.execution.getVariable('action')); -task.execution.setVariable('deleteReason', "completed"); - - - - - ["applicationId", "applicationStatus", "cssaStatus", "srcrStatus"] - - - - Flow_1quswsc - Flow_0gb2oz2 - Flow_0wr0mei - Flow_0bz8atu - - - Flow_0bz8atu - Flow_19ktqsm - Flow_0drs8s9 - Flow_0qbjx6e - - - Flow_0drs8s9 - Flow_0doe9r5 - Flow_12948vs - - - - - - - - Flow_0doe9r5 - Flow_0mfw34y - - - - - - - - Flow_12948vs - Flow_0nv59tm - - - - - - - - - ${action == 'Recheck'} - - - - - execution.setVariable('applicationStatus', "Resubmit"); -execution.setVariable('returnedBy', "cssaTeam"); - - - - - ["applicationId", "applicationStatus", "cssaStatus", "cssaStatus", "srcrStatus"] - - - - - Flow_19ktqsm - Flow_12uv3km - Flow_0qw9o9a - Flow_1stifo9 - - - - - task.execution.setVariable('applicationStatus', task.execution.getVariable('action')); -task.execution.setVariable('deleteReason', "completed"); - -var system = java.lang.System; -task.execution.setVariable('isSentFromSociety',true); -system.out.println ("isSentFromSociety "+ task.execution.getVariable('isSentFromSociety')); - - - - - ["applicationId", "applicationStatus", "cssaStatus", "srcrStatus"] - - - - task.execution.setVariable('isSociety',false); - - - Flow_0kfjdmp - Flow_0543g25 - Flow_0d8ruax - - - - - - ${applicationStatus== 'Resubmitted' and isAp== true} - - - ${applicationStatus== 'Resubmitted' and isSociety== true} - - - ${applicationStatus== 'Resubmitted' and isCssaTeam== true} - - - Flow_1xj96i6 - Flow_1quswsc - Flow_142lsgk - - - Flow_0mfw34y - Flow_0nv59tm - Flow_0xt0zzz - - - - - - - - execution.setVariable('formUrl', execution.getVariable('cssaFormUrl')); - - - - execution.setVariable('bundleUrl', execution.getVariable('formUrl')); -execution.setVariable('formUrl', execution.getVariable('srcrFormUrl')); - - - - if (execution.getVariable('cssaStatus') === "Approved" && execution.getVariable('srcrStatus') === "Approved" ) -{ -execution.setVariable("applicationStatus", "Approved"); -} -else{ -execution.setVariable("applicationStatus", "Rejected"); -} - - - - - - - - - - - Flow_0xt0zzz - Flow_0qbjx6e - Flow_0izwlc1 - - - Flow_0izwlc1 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/processes/Bundling/callActivity/CSSAWorkflow.bpmn b/forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/processes/Bundling/callActivity/CSSAWorkflow.bpmn deleted file mode 100644 index e85d9038..00000000 --- a/forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/processes/Bundling/callActivity/CSSAWorkflow.bpmn +++ /dev/null @@ -1,399 +0,0 @@ - - - - - - - - - Activity_04r8f23 - Gateway_1qw997s - Activity_00tohfy - Activity_1ff78ds - Event_1qm6l82 - Gateway_1omb0e4 - - - Activity_1d5shlh - Activity_0bgk1vx - Activity_0wpacz7 - Gateway_1n0lr9l - Event_1t7witx - - - - Flow_1j1io38 - Flow_0si4iok - Flow_01wog1m - Flow_1736w99 - var system = java.lang.System; -system.out.println ("Sent to SDM"); - - - - - - Y - - - ["pid","applicationId","process_pid","task_id"] - - - - task.execution.setVariable('task_id',task.getId()); - - - task.execution.setVariable('requestStatus', task.execution.getVariable('action')); -task.execution.setVariable('requestType', 'CSSA'); -task.execution.setVariable('deleteReason', "completed"); -task.execution.setVariable('cssaStatus', task.execution.getVariable('action')); - - - - - - Flow_1736w99 - Flow_0z2zmpk - - - - - execution.setVariable('applicationStatus', "Resubmit"); - - - - - ["applicationId", "applicationStatus", "cssaStatus"] - - - - - Flow_0ntmq91 - Flow_0si4iok - - - Flow_0z2zmpk - Flow_03rkwes - Flow_0s6kwqx - Flow_0ntmq91 - - - Flow_03rkwes - Flow_0gs43q1 - - - - - - Y - - - ["pid","applicationId","process_pid","task_id"] - - - - task.execution.setVariable('task_id',task.getId()); -task.execution.setVariableLocal('variable1',"cssa"); - - - task.execution.setVariable('requestStatus', task.execution.getVariable('action')); -task.execution.setVariable('requestType', 'CSSA'); -task.execution.setVariable('deleteReason', "completed"); -task.execution.setVariable('cssaStatus', task.execution.getVariable('action')); - - - - - - Flow_1motvr5 - Flow_1nept3o - - - Flow_1nept3o - Flow_1j1io38 - Flow_0gs43q1 - Flow_06fbd3v - - - - - execution.setVariable('applicationStatus', "Resubmit"); - - - - - ["applicationId", "applicationStatus", "cssaStatus"] - - - - - Flow_06fbd3v - Flow_11w6mij - - - Flow_0duzfvj - Flow_0s6kwqx - Flow_11w6mij - Flow_12yep0a - var system = java.lang.System; -system.out.println ("Begin CSSA Flow - Sent To Caseworker"); -execution.setVariable('isCaseworker',false); -system.out.println ("isSentFromSociety "+execution.getVariable('isSentFromSociety')); - - - Flow_0duzfvj - - - Flow_12yep0a - Flow_1motvr5 - Flow_01wog1m - - - ${action == 'Accepted'} - - - - - - ["applicationId", "applicationStatus", "cssaStatus"] - - - - - execution.setVariable('applicationStatus', "Resubmitted"); - - - - - ${isSentFromSociety == true} - - - - - - - - execution.setVariable('cssaFormUrl', execution.getVariable('formUrl')); - - - - - ${action == 'Returned'} - - - ${action == 'Recheck'} - - - - - execution.setVariable('cssaStatus', execution.getVariable('action')); - - - - - ${action == 'Rejected' or action == 'Approved' } - - - - - execution.setVariable('cssaFormUrl', execution.getVariable('formUrl')); -execution.setVariable('cssaStatus', execution.getVariable('action')); - - - ${action == 'Rejected'} - - - ${isSentFromSociety == false} - - - - - - - - - ${action == 'Returned'} - - - - - - ["applicationId", "applicationStatus", "cssaStatus"] - - - - - execution.setVariable('applicationStatus', "Resubmitted"); - - - - - - - execution.setVariable('requestStatus', 'New'); -execution.setVariable('requestType', 'CSSA'); - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/processes/Bundling/callActivity/SRCRWorkflow.bpmn b/forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/processes/Bundling/callActivity/SRCRWorkflow.bpmn deleted file mode 100644 index 65a52e86..00000000 --- a/forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/processes/Bundling/callActivity/SRCRWorkflow.bpmn +++ /dev/null @@ -1,608 +0,0 @@ - - - - - - - - - Gateway_01gll8v - Activity_1ff78ds - Event_1qm6l82 - Activity_04r8f23 - Gateway_1qw997s - Activity_00tohfy - Gateway_0ynmdzk - - - Activity_1d5shlh - Activity_0bgk1vx - Gateway_137ft2z - Event_1t7witx - Activity_0aiiz1c - - - Activity_15cbea9 - Activity_1voobmv - Gateway_0wyokmr - Activity_0fgdxru - - - - Flow_05vthw4 - Flow_1ojyq91 - Flow_019edzt - Flow_0cdvwnp - var system = java.lang.System; -system.out.println ("Sent to Caseworker"); - - - - - - Y - - - ["pid","applicationId","process_pid","task_id"] - - - - task.execution.setVariable('task_id',task.getId()); -task.execution.setVariableLocal('variable1',"srcr"); - - - task.execution.setVariable('requestStatus', task.execution.getVariable('action')); -task.execution.setVariable('requestType', 'SRCR'); -task.execution.setVariable('deleteReason', "completed"); -task.execution.setVariable('srcrStatus', task.execution.getVariable('action')); - - - - - - Flow_0cdvwnp - Flow_1ccbyzk - - - Flow_1ccbyzk - Flow_0zzhoui - Flow_1ixkifd - Flow_0pqd76u - Flow_187pabg - - - Flow_1ixkifd - Flow_0izugkb - Flow_0xqj2sm - Flow_1pdey0j - Flow_1736w99 - var system = java.lang.System; -system.out.println ("Sent to SDM"); - - - - - - Y - - - ["pid","applicationId","process_pid","task_id"] - - - - task.execution.setVariable('task_id',task.getId()); - - - task.execution.setVariable('requestStatus', task.execution.getVariable('action')); -task.execution.setVariable('requestType', 'SRCR'); -task.execution.setVariable('deleteReason', "completed"); -task.execution.setVariable('srcrStatus', task.execution.getVariable('action')); - - - - - - Flow_1736w99 - Flow_0mtd57d - - - Flow_0mtd57d - Flow_0k5l8nk - Flow_05vthw4 - Flow_0ryglee - - - Flow_0gs43q1 - Flow_0zzhoui - Flow_0k5l8nk - - - - - execution.setVariable('applicationStatus', "Resubmit"); - - - - - ["applicationId", "applicationStatus", "srcrStatus"] - - - - - Flow_187pabg - Flow_1ojyq91 - - - - - execution.setVariable('applicationStatus', "Resubmit"); - - - - - ["applicationId", "applicationStatus", "srcrStatus"] - - - - - Flow_0ryglee - Flow_0izugkb - - - Flow_0q159o1 - Flow_019edzt - Flow_0xqj2sm - - - Flow_0pqd76u - Flow_00vao62 - Flow_0duzfvj - Flow_12yep0a - var system = java.lang.System; -system.out.println ("Begin SRCR Flow - Sent To SRCO"); -system.out.println ("isSentFromSociety "+execution.getVariable('isSentFromSociety')); - - - Flow_0duzfvj - - - - - - Y - - - ["pid","applicationId","process_pid","task_id"] - - - - task.execution.setVariable('task_id',task.getId()); -task.execution.setVariableLocal('variable1',"srcr"); - - - task.execution.setVariable('requestStatus', task.execution.getVariable('action')); -task.execution.setVariable('requestType', 'SRCR'); -task.execution.setVariable('deleteReason', "completed"); -task.execution.setVariable('srcrStatus', task.execution.getVariable('action')); - - - - - - Flow_12yep0a - Flow_1nept3o - - - Flow_1nept3o - Flow_1j1io38 - Flow_0gs43q1 - Flow_1ifs52w - - - - - execution.setVariable('applicationStatus', "Resubmit"); - - - - - ["applicationId", "applicationStatus", "srcrStatus"] - - - - - Flow_1ifs52w - Flow_00vao62 - - - Flow_1j1io38 - Flow_0q159o1 - Flow_1pdey0j - - - ${action == 'Recheck'} - - - - - - ["applicationId", "applicationStatus", "srcrStatus"] - - - - - execution.setVariable('applicationStatus', "Resubmitted"); - - - - - ${isSentFromSociety == false} - - - - - - - - - - - - - - execution.setVariable('srcrFormUrl', execution.getVariable('formUrl')); -execution.setVariable('srcrStatus', execution.getVariable('action')); - - - ${action == 'Rejected'} - - - ${action == 'Accepted'} - - - ${action == 'Recheck'} - - - ${action == 'Returned' } - - - - - - ["applicationId", "applicationStatus", "srcrStatus"] - - - - - execution.setVariable('applicationStatus', "Resubmitted"); - - - - - ${isSentFromSociety == true} - - - - - - - - execution.setVariable('srcrFormUrl', execution.getVariable('formUrl')); - - - - - - - execution.setVariable('srcrStatus', execution.getVariable('action')); - - - - - ${action == 'Approved' or action == 'Rejected' } - - - ${action == 'Returned' } - - - - - execution.setVariable('srcrFormUrl', execution.getVariable('formUrl')); -execution.setVariable('srcrStatus', execution.getVariable('action')); - - - ${action == 'Rejected' } - - - ${siteRiskClassification == 'notHighRisk'} - - - - - - ["applicationId", "applicationStatus", "srcrStatus"] - - - - - execution.setVariable('applicationStatus', "Resubmitted"); - - - - - - - execution.setVariable('requestStatus', 'New'); -execution.setVariable('requestType', 'SRCR'); - - - - - - - - - - - - - - - - ${action == 'Accepted'} - - - ${action == 'Returned' } - - - ${siteRiskClassification != 'notHighRisk'} - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/processes/Common/email-template.dmn b/forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/processes/Common/email-template.dmn index 516c7230..fe35b935 100644 --- a/forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/processes/Common/email-template.dmn +++ b/forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/processes/Common/email-template.dmn @@ -1,262 +1,182 @@ - - - - - - category - - - - - - - - - - - - - - "sir_status_rejected" - - - - - - - - - "NOREPLYEPD@gov.bc.ca" - - - - - - - - - - - - - "Site Information Request Rejected" - - - - - "templates/sir_application_rejected.ftl" - - - - - "epd-support@gov.bc.ca" - - - - - - - "sir_status_approved" - - - - - - - - - "NOREPLYEPD@gov.bc.ca" - - - - - - - - - - - - - "Site Information Request Approved" - - - - - "templates/sir_application_approved.ftl" - - - - - "epd-support@gov.bc.ca" - - - - - - - "nom_updated" - - - - - - - - - "NOREPLYEPD@gov.bc.ca" - - - - - - - - - - - - - "Notification of Likely or Actual Migration Application Status Update" - - - - - "templates/nom_application.ftl" - - - - - "epd-support@gov.bc.ca" - - - - - - - "dera_updated" - - - - - - - - - "NOREPLYEPD@gov.bc.ca" - - - - - - - - - - - - - "Detailed Ecological Risk Assessment Checklist" - - - - - "templates/nom_application.ftl" - - - - - "epd-support@gov.bc.ca" - - - - - - - "nir_updated" - - - - - - - - - "NOREPLYEPD@gov.bc.ca" - - - - - - - - - - - - - "Notification of Independent Remediation Application Status Update" - - - - - "templates/nir_application.ftl" - - - - - "epd-support@gov.bc.ca" - - - - - - - "srcr_updated" - - - - - - - - - "NOREPLYEPD@gov.bc.ca" - - - - - - - - - - - - - "Site Risk Classification Report Update" - - - - - "templates/srcr_application.ftl" - - - - - "epd-support@gov.bc.ca" - - - - - - - - - - - - + + + + + category + + + + + + + + + + + + "sir_status_rejected" + + + + + + "NOREPLYEPD@gov.bc.ca" + + + + + + + + + "Site Information Request Rejected" + + + "templates/sir_application_rejected.ftl" + + + "epd-support@gov.bc.ca" + + + + + "sir_status_approved" + + + + + + "NOREPLYEPD@gov.bc.ca" + + + + + + + + + "Site Information Request Approved" + + + "templates/sir_application_approved.ftl" + + + "epd-support@gov.bc.ca" + + + + + "nom_updated" + + + + + + "NOREPLYEPD@gov.bc.ca" + + + + + + + + + "Notification of Likely or Actual Migration Application Status Update" + + + "templates/nom_application.ftl" + + + "epd-support@gov.bc.ca" + + + + + "dera_updated" + + + + + + "NOREPLYEPD@gov.bc.ca" + + + + + + + + + "Detailed Ecological Risk Assessment Checklist" + + + "templates/nom_application.ftl" + + + "epd-support@gov.bc.ca" + + + + + "nir_updated" + + + + + + "NOREPLYEPD@gov.bc.ca" + + + + + + + + + "Notification of Independent Remediation Application Status Update" + + + "templates/nir_application.ftl" + + + "epd-support@gov.bc.ca" + + + + + "srcr_updated" + + + + + + "NOREPLYEPD@gov.bc.ca" + + + + + + + + + "Site Risk Classification Report Update" + + + "templates/srcr_application.ftl" + + + "epd-support@gov.bc.ca" + + + + + + + + + + + diff --git a/forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/processes/SRCR/SRCRWorkflow.bpmn b/forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/processes/SRCR/SRCRWorkflow.bpmn index 2b276ac9..2a64bed9 100644 --- a/forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/processes/SRCR/SRCRWorkflow.bpmn +++ b/forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/processes/SRCR/SRCRWorkflow.bpmn @@ -5,41 +5,21 @@ - - Activity_1tj511f - Gateway_13wml2g - Event_1l1d1pi - Activity_0p4hm8r - Event_0rqe9p4 - Activity_1fk777i - Event_1myg2g0 - Gateway_0offnz6 - Gateway_0my2itl - Gateway_0jbzlkk - Gateway_0cjov6g - - - Activity_0s3vft8 - Gateway_18qjjlu - Gateway_1bo7lxa - - Gateway_132oe4w Activity_08fgjgt - Gateway_1hnklt5 - Gateway_06tcm00 + Gateway_132oe4w + Gateway_1epcelq - Activity_11o1equ Gateway_1kotdsu - Gateway_1a7z18k - Gateway_0dwdwof + Activity_11o1equ + Gateway_1og7p31 + Activity_05x4sl7 Activity_06nypz0 Gateway_1osruh3 - Gateway_06gi296 - Gateway_0i28cb1 + Gateway_05aj26w Gateway_1nljcfc @@ -48,84 +28,34 @@ Event_02fettt Activity_0j9b17x Task_05ulff4 - Gateway_0frt7pf - Activity_00qh5e4 - Gateway_13mf7un Gateway_0g6vr2y Gateway_0qzb9h1 - Gateway_16ahhga - Gateway_1of2jzi + Gateway_13mf7un + Activity_00qh5e4 + Gateway_1ih6c9g + + + Gateway_18qjjlu + Activity_0s3vft8 + Gateway_1q4ox6z + + + Event_0rqe9p4 + Activity_1tj511f + Gateway_0cjov6g + Gateway_0my2itl + Gateway_0offnz6 + Gateway_1vz1eaa + + + Activity_1qnqtak + Gateway_0mexztf + Activity_0m6abz8 + Gateway_0urokjh - - - - - - - - task.execution.setVariable('applicationStatus', task.execution.getVariable('action')); - - - - - - ["applicationId","applicationStatus"] - - - - Flow_15zu2ec - Flow_1p1932t - Flow_0ki2gre - Flow_063u1s7 - Flow_0bo4cc7 - - - Flow_1pghhuh - Flow_11adl9o - Flow_0y1l5de - Flow_0err7mx - - - Flow_0bo4cc7 - Flow_1igr7br - Flow_0y8vydy - Flow_15il78e - Flow_16z6m4e - - - - - - - - - task.execution.setVariable('applicationStatus', task.execution.getVariable('action')); - - - - - - ["applicationId","applicationStatus"] - - - - Flow_12ysqpj - Flow_1w4srg6 - Flow_0oxgtz8 - Flow_1xul524 - Flow_0dpi9u6 - Flow_0njekxy - - - Flow_0njekxy - Flow_0n8r7v3 - Flow_10wb8jx - Flow_1ydjyj9 - Flow_0hga66e - Flow_1mjvum7 Flow_058kqm8 @@ -137,15 +67,21 @@ Flow_0xiuxfc var system = java.lang.System; -var clientEmail = execution.getVariable('simpleemail'); -system.out.println ("clientEmail "+clientEmail); -execution.setVariable('clientEmail',clientEmail); +var agentEmail = execution.getVariable('simpleemail'); +system.out.println ("agentEmail "+agentEmail ); +execution.setVariable('agentEmail ',agentEmail ); + +var ownerEmail = execution.getVariable('owneremail'); +system.out.println ("ownerEmail "+ownerEmail); +execution.setVariable('ownerEmail',ownerEmail); var emailsToArray = []; -emailsToArray.push(clientEmail) +emailsToArray.push(agentEmail); execution.setVariable("emailTo", Java.to(emailsToArray, "java.lang.Object[]")); system.out.println ("emailTo"+execution.getVariable('emailTo')); +execution.setVariable('name','User'); + var siteRiskClassification = execution.getVariable('siteRiskClassification'); system.out.println ("siteRiskClassification "+siteRiskClassification ); execution.setVariable('siteRiskClassification',siteRiskClassification); @@ -183,23 +119,7 @@ execution.setVariable('isCaseworker',false); execution.setVariable('isSrco',false); execution.setVariable('isSdm',false); - - - - execution.setVariable('applicationStatus', "Resubmit"); - - - - - - ["applicationId", "applicationStatus"] - - - - Flow_1cxpybp - Flow_0ddusnc - - + @@ -216,12 +136,22 @@ execution.setVariable('isSdm',false); - Flow_1smevfl - Flow_0ted4eh - Flow_1lj8tdk - Flow_0klnns9 + Flow_0err7mx + Flow_058kqm8 + Flow_1wf5te7 + Flow_159m7j9 - + + Flow_0lds37b + Flow_0iim75v + Flow_0glptri + + + Flow_159m7j9 + Flow_0lds37b + Flow_1js7p0u + + @@ -238,42 +168,30 @@ execution.setVariable('isSdm',false); - Flow_1lmkg6x - Flow_18g9fm9 - Flow_08zx269 - Flow_1d75g3l - Flow_1ifelq5 + Flow_0iim75v + Flow_15il78e + Flow_128jxf3 + Flow_1pghhuh - - Flow_1rsleyy - Flow_0rtx9ud - Flow_10wb8jx - Flow_16z6m4e - Flow_06vodk0 - Flow_07h69t7 + + Flow_1vlzzd5 + Flow_11adl9o + Flow_0y1l5de + Flow_0err7mx + + + Flow_1pghhuh + Flow_1vlzzd5 + Flow_10q9o6e - - Flow_162fl3i - - - - - - - - srcr_updated - - - Flow_06vodk0 - Flow_0rr7wdh - Flow_1p5sg3a - Flow_10gwral - Flow_0hhcuk8 - Flow_1dod89e - Flow_0uvzh44 - Flow_162fl3i - - + + Flow_13r7dqy + Flow_1igr7br + Flow_0y8vydy + Flow_15il78e + Flow_16z6m4e + + @@ -290,237 +208,98 @@ execution.setVariable('isSdm',false); - Flow_058kqm8 - Flow_1wf5te7 - Flow_0j749xl - Flow_159m7j9 + Flow_11adl9o + Flow_1ydjyj9 + Flow_15zu2ec + Flow_1p1932t + Flow_1qaodt0 + Flow_0bo4cc7 - - Flow_159m7j9 - Flow_0iim75v - Flow_0glptri - - + + Flow_0bo4cc7 + Flow_13r7dqy + Flow_1d8a6i9 + + - - - - - - task.execution.setVariable('applicationStatus', task.execution.getVariable('action')); - - - - + + + srcr_updated + + + Flow_1js7p0u + Flow_10q9o6e + Flow_1d8a6i9 + Flow_1s9sm8u + Flow_1gnzs70 + Flow_0e8b4d4 + Flow_0v5ez8t + Flow_1ehxfe5 + + + + + execution.setVariable('applicationStatus', "Resubmit"); + + + + - ["applicationId","applicationStatus"] + ["applicationId", "applicationStatus"] - + - Flow_128jxf3 - Flow_16nov5i - Flow_0u8isdy - Flow_1pghhuh - - - Flow_0iim75v - Flow_16nov5i - Flow_0rr7wdh - - - Flow_1igr7br - Flow_1xul524 - Flow_10gwral - - - Flow_0vjceh7 - Flow_1smevfl - Flow_18g9fm9 - - - Flow_01gwf0f - Flow_1lmkg6x - Flow_0vjceh7 - - - Flow_0hga66e - Flow_01gwf0f - Flow_0hhcuk8 - - - Flow_0klnns9 - Flow_0rtx9ud - Flow_0busbvw - Flow_09svnbh - Flow_0nu7red - - - Flow_0busbvw - Flow_1d75g3l - Flow_1dod89e - - - Flow_07h69t7 - - Flow_0w0po21 Flow_09svnbh Flow_0n8r7v3 Flow_0y8vydy Flow_0y1l5de Flow_0glptri - Flow_1cxpybp - Flow_0uvzh44 - - - Flow_11adl9o - Flow_0ki2gre - Flow_1p5sg3a - - + Flow_0ddusnc + + + ${siteRiskClassification != 'notHighRisk'} + + + ${isSentFromSociety == true} + + - - - - - srcr_updated - + + execution.setVariable('srcrBundleStatus', "srcrCaseworkerAccepted"); + + + + ["srcrBundleStatus"] + + - Flow_179yjf3 - Flow_09lg5lq - Flow_1i279wq - Flow_13vo61m - Flow_0gins7w - Flow_0p3iq5v - - - Flow_0p3iq5v - - - Flow_0err7mx - Flow_0j749xl - Flow_179yjf3 - - - Flow_15il78e - Flow_0u8isdy - Flow_09lg5lq - - - Flow_1ydjyj9 - Flow_063u1s7 - Flow_1i279wq - - - Flow_1ch9vjq - Flow_12ysqpj - Flow_0ted4eh - - - Flow_1g8mwwm - Flow_1ch9vjq - Flow_1w4srg6 - - - Flow_0nu7red - Flow_0dpi9u6 - Flow_13vo61m - - - Flow_0avadfd - Flow_1g8mwwm - Flow_0gins7w - - - Flow_1ifelq5 - Flow_1rsleyy - Flow_0w0po21 - Flow_0avadfd - - - ${triggers != 'ministryServiceApplicationWithTheRecommendationOfAnApprovedProfessional'} - - - ${applicationStatus== 'Resubmitted' and isCssaTeam == true} - - - - - - - - - execution.setVariable('isSociety',true); -execution.setVariable('isAp',false); -execution.setVariable('isCssaTeam',false); -execution.setVariable('isCaseworker',false); -execution.setVariable('isSrco',false); -execution.setVariable('isSdm',false); - - - ${action == 'Returned'} - - - ${action == 'Recheck'} - - ${action == 'Accepted'} - - - - execution.setVariable('isCssaTeam',true); -execution.setVariable('isAp',false); -execution.setVariable('isSociety',false); -execution.setVariable('isCaseworker',false); -execution.setVariable('isSrco',false); -execution.setVariable('isSdm',false); - - - ${action == 'Returned'} - - - ${action == 'Recheck'} - - - ${action == 'Accepted'} - - - ${action == 'Rejected'} - - - ${isSentFromSociety == true} - - - ${siteRiskClassification != 'notHighRisk' } - - - ${applicationStatus== 'Resubmitted' and isSrco == true} + + ${applicationStatus== 'Resubmitted' and isSdm == true} - - - - + - execution.setVariable('isSrco',true); + execution.setVariable('isSdm',true); execution.setVariable('isAp',false); execution.setVariable('isSociety',false); execution.setVariable('isCssaTeam',false); execution.setVariable('isCaseworker',false); -execution.setVariable('isSdm',false); +execution.setVariable('isSrco',false); ${action == 'Returned'} - - ${action == 'Recheck'} + + ${siteRiskClassification != 'notHighRisk' } - - ${action == 'Rejected'} + + ${isSentFromSociety == true} - - ${action == 'Accepted'} + + ${isSentFromSociety == false} ${applicationStatus!= 'Resubmitted'} @@ -528,6 +307,9 @@ execution.setVariable('isSdm',false); ${triggers == 'ministryServiceApplicationWithTheRecommendationOfAnApprovedProfessional'} + + ${triggers != 'ministryServiceApplicationWithTheRecommendationOfAnApprovedProfessional'} + @@ -546,11 +328,14 @@ execution.setVariable('isSdm',false); ${applicationStatus== 'Resubmitted' and isAp== true} + + ${applicationStatus== 'Resubmitted' and isCssaTeam == true} + ${applicationStatus== 'Resubmitted' and isSociety == true} - - ${applicationStatus== 'Resubmitted' and isSdm == true} + + ${applicationStatus== 'Resubmitted' and isSrco == true} ${applicationStatus== 'Resubmitted' and isCaseworker == true} @@ -569,45 +354,57 @@ execution.setVariable('isSdm',false); - - - ${isSentFromSociety == false} + + ${action == 'Recheck'} - - ${isSentFromSociety == false} + + + + + + execution.setVariable('isAp',true); +execution.setVariable('isSociety',false); +execution.setVariable('isCssaTeam',false); +execution.setVariable('isCaseworker',false); +execution.setVariable('isSrco',false); +execution.setVariable('isSdm',false); + + + ${action == 'Returned'} - - - ${siteRiskClassification != 'notHighRisk'} + + ${action == 'Accepted'} - - ${isSentFromSociety == true} + + + ${action == 'Recheck'} - - - - ${action == 'Approved' or action == 'Rejected' } + + + + + + execution.setVariable('isSociety',true); +execution.setVariable('isAp',false); +execution.setVariable('isCssaTeam',false); +execution.setVariable('isCaseworker',false); +execution.setVariable('isSrco',false); +execution.setVariable('isSdm',false); + + + ${action == 'Returned'} - - ${action == 'Rejected'} + + ${action == 'Accepted'} - - - - - - - - - - - - + + + - execution.setVariable('isAp',true); + execution.setVariable('isCssaTeam',true); +execution.setVariable('isAp',false); execution.setVariable('isSociety',false); -execution.setVariable('isCssaTeam',false); execution.setVariable('isCaseworker',false); execution.setVariable('isSrco',false); execution.setVariable('isSdm',false); @@ -615,16 +412,41 @@ execution.setVariable('isSdm',false); ${action == 'Returned'} - + ${action == 'Accepted'} - - - - ${siteRiskClassification == 'notHighRisk'} + + ${action == 'Rejected'} - - + + ${action == 'Recheck'} + + + + + ${isSentFromSociety == false} + + + + + execution.setVariable('isSrco',true); +execution.setVariable('isAp',false); +execution.setVariable('isSociety',false); +execution.setVariable('isCssaTeam',false); +execution.setVariable('isCaseworker',false); +execution.setVariable('isSdm',false); + + + ${action == 'Returned'} + + + ${action == 'Rejected'} + + + ${action == 'Recheck'} + + + execution.setVariable('isCaseworker',true); @@ -637,681 +459,848 @@ execution.setVariable('isSdm',false); ${action == 'Returned'} - + + ${action == 'Rejected'} + + + + + + Flow_1rsleyy + Flow_0rtx9ud + Flow_10wb8jx + Flow_16z6m4e + Flow_1ehxfe5 + + + ${action == 'Approved' or action == 'Rejected' } + + + + + + + ${action == 'Accepted'} + + + ${action == 'Recheck'} + + + + + + + + + task.execution.setVariable('applicationStatus', task.execution.getVariable('action')); + + + + + + ["applicationId","applicationStatus"] + + + + Flow_1lmkg6x + Flow_18g9fm9 + Flow_0busbvw + Flow_08zx269 + Flow_1ifelq5 + + + Flow_0tc1zyz + Flow_1rsleyy + Flow_0w0po21 + Flow_0avadfd + + + Flow_0avadfd + Flow_1ch9vjq + Flow_1w4srg6 + + + Flow_1ch9vjq + Flow_12ysqpj + Flow_0ted4eh + + + Flow_1ifelq5 + Flow_0tc1zyz + Flow_0e8b4d4 + + + + ${action == 'Recheck'} - + + ${siteRiskClassification == 'notHighRisk' } + + + Flow_1lhwgrf + Flow_0rtx9ud + Flow_0busbvw + Flow_09svnbh + Flow_0nu7red + + + + + + + + + task.execution.setVariable('applicationStatus', task.execution.getVariable('action')); + + + + + + ["applicationId","applicationStatus","srcrBundleStatus"] + + + + Flow_1smevfl + Flow_0ted4eh + Flow_1lj8tdk + Flow_0klnns9 + + + Flow_0klnns9 + Flow_1lhwgrf + Flow_1gnzs70 + + + + + Flow_0vjceh7 + Flow_1smevfl + Flow_18g9fm9 + + + Flow_0hga66e + Flow_1lmkg6x + Flow_0vjceh7 + + + Flow_1bqktnr + Flow_0n8r7v3 + Flow_10wb8jx + Flow_1ydjyj9 + Flow_0hga66e + + + + + + + + + task.execution.setVariable('applicationStatus', task.execution.getVariable('action')); + + + + + + ["applicationId","applicationStatus","srcrBundleStatus"] + + + + Flow_0nu7red + Flow_12ysqpj + Flow_1w4srg6 + Flow_0oxgtz8 + Flow_19r835c + Flow_0njekxy + + + Flow_0njekxy + Flow_1bqktnr + Flow_1s9sm8u + + + ${siteRiskClassification == 'notHighRisk'} + + + + + execution.setVariable('srcrBundleStatus', "srcrSrcoAccepted"); + + + + ["srcrBundleStatus"] + + + ${action == 'Accepted'} - + + + + + Flow_07tic47 + Flow_19r835c + var system = java.lang.System; + +var selectSdm= execution.getVariable('selectSdm'); +system.out.println ("selectSdm"+selectSdm); +execution.setVariable('sdmAssignment',selectSdm); +system.out.println ("sdmAssignment"+execution.getVariable('sdmAssignment')); + +var selectCaseworker= execution.getVariable('selectCaseworker'); +system.out.println ("selectCaseworker"+selectCaseworker); +execution.setVariable('caseworkerAssignment',selectCaseworker); +system.out.println ("caseworkerAssignment"+execution.getVariable('caseworkerAssignment')); + +var selectSrco= execution.getVariable('selectSrco'); +system.out.println ("selectSrco"+selectSrco); +execution.setVariable('srcoAssignment',selectSrco); +system.out.println ("srcoAssignment"+execution.getVariable('srcoAssignment')); + + + + Flow_1q9t450 + Flow_07tic47 + Flow_1qaodt0 + + - - execution.setVariable('isSdm',true); -execution.setVariable('isAp',false); -execution.setVariable('isSociety',false); -execution.setVariable('isCssaTeam',false); -execution.setVariable('isCaseworker',false); -execution.setVariable('isSrco',false); - + + + + + + task.execution.setVariable('applicationStatus', task.execution.getVariable('action')); + + + + + + ["applicationId","applicationStatus"] + + - ${action == 'Returned'} - - - - - - - - - ${siteRiskClassification == 'notHighRisk' } - - - - ${action == 'Recheck'} - + Flow_1igr7br + Flow_0s43gpy + + + + Flow_0s43gpy + Flow_1q9t450 + Flow_0v5ez8t + + - + - - - - - - - - - - - + + - + - - + + - - - + + - - + + - - - - - + + - - - - - + + - - + + - - - - - - - + - + - + - + - + - + - + - - - - - - - - - - - - - - - - - - - - - - + - + - + - + + + + - + - - - - - - - - - - - - - - + + - + - - + + - - + + - + - - - - - - - - + + + - - + + - - + + - - - - - + + - - + + - - + + + - - + + - + - + - + - - + + + + + - - + + - - + + - + - - - - - + + + + + + + + + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + - + - - - - - + + + - + - - - - + + + + + + + + + + + + + + - + - - - - - + + + + + + + + + + + + + - + - - - - + + + + + - + - - - + + + - + - - - - - - - - + + + + + - - - - + + + + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + - + - - - - + + + + - + - - - - - + + + + + - + - - - + + + - + - - - + + + - + - - - + + + + + - + - - + + - - + + - - + + - - - - + + + + - + + + + + + + - - - - + + + + - - - - - + + + + + - - - - + + + + - - + + - - - - - - - - + + + + + - + - - - - - + + + + + + + + + + + + - + - - - - - - - - - + + + - + - - - - - + + + + + + + + + + - + - - - + + + - - - + + + - - - - + + + + - + - - - - - + + + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + - - - + + + - - - - + + + + - + - - - + + + + + + + + + + + + + + + + + + + + + - + - - - + + + - - - - + + + - - - + + + - + - - - + + + + + + + - - - - + + + + + - + - - - + + + + - + - - - + + + + + + + + + - + - - - - + + + + + - + - - - - + + + + - - - - + + + + - - - - + + + + - - - - + + + + + + + - - - - + + + - - - + + + + + + - - - + + + + + - + - - - + + + + + + + - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + + + + + + + + + + + + + + + + + + + + + + diff --git a/forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/templates/nom_application.ftl b/forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/templates/nom_application.ftl index f2dc0edb..346c64fa 100644 --- a/forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/templates/nom_application.ftl +++ b/forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/templates/nom_application.ftl @@ -15,7 +15,7 @@ - Site Remediation System + Site Remediation Services diff --git a/forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/templates/srcr_application.ftl b/forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/templates/srcr_application.ftl index 4b2a82ef..70d86bed 100644 --- a/forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/templates/srcr_application.ftl +++ b/forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/templates/srcr_application.ftl @@ -35,10 +35,10 @@

- Dear ${name}, + Hello,

- Your Site Risk Classification Repor application has been updated. Current status is ${action}. + Your Site Risk Classification Report application has been updated. Current status is ${action}.

@@ -59,7 +59,7 @@ -

BC Public Services will never send an email that asks you to provide, confirm or verify personal, log on or account information. +

EPD will never send an email that asks you to provide, confirm or verify personal, log on or account information. DO NOT reply to this email as it was sent from an unmonitored account.

From 845e9dd85ecd9b9f0b13a5eb0e8756ae635356a8 Mon Sep 17 00:00:00 2001 From: nikhila-aot Date: Sun, 8 Oct 2023 23:40:12 -0700 Subject: [PATCH 122/194] removed console log --- forms-flow-ai/epd-forms/Site Risk Classification Report.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/forms-flow-ai/epd-forms/Site Risk Classification Report.json b/forms-flow-ai/epd-forms/Site Risk Classification Report.json index 8dc58db7..e68004f8 100644 --- a/forms-flow-ai/epd-forms/Site Risk Classification Report.json +++ b/forms-flow-ai/epd-forms/Site Risk Classification Report.json @@ -23,7 +23,7 @@ "key": "formActions", "tags": [], "properties": {}, - "customConditional": "const UserDetails = JSON.parse(localStorage.getItem(\"UserDetails\"));\r\nconst roles = UserDetails?UserDetails[\"role\"]:[];\r\nconsole.log('data-----', data);\r\nif(!UserDetails){\r\n show = false;\r\n}\r\nelse if(roles.includes(\"formsflow-client\")||\r\nroles.includes(\"formsflow-reviewer/formsflow-client-reviewer\")) {\r\n show = false;\r\n}\r\nelse\r\n{\r\n show = true;\r\n}", + "customConditional": "const UserDetails = JSON.parse(localStorage.getItem(\"UserDetails\"));\r\nconst roles = UserDetails?UserDetails[\"role\"]:[];\r\nif(!UserDetails){\r\n show = false;\r\n}\r\nelse if(roles.includes(\"formsflow-client\")||\r\nroles.includes(\"formsflow-reviewer/formsflow-client-reviewer\")) {\r\n show = false;\r\n}\r\nelse\r\n{\r\n show = true;\r\n}", "conditional": { "json": "", "show": null, From 45d46625fdd158605434c3926756057d611f7d2a Mon Sep 17 00:00:00 2001 From: Adam Coard Date: Tue, 10 Oct 2023 08:45:33 -0700 Subject: [PATCH 123/194] Site registry icon bulk update on table working --- .../src/components/SiteRegistryIcon.tsx | 19 +++++--- .../site-details/table/SiteDetailsTable.tsx | 43 ++++++++++++++++--- 2 files changed, 50 insertions(+), 12 deletions(-) diff --git a/frontend/site-search-frontend/src/components/SiteRegistryIcon.tsx b/frontend/site-search-frontend/src/components/SiteRegistryIcon.tsx index 36698c3c..df3222cf 100644 --- a/frontend/site-search-frontend/src/components/SiteRegistryIcon.tsx +++ b/frontend/site-search-frontend/src/components/SiteRegistryIcon.tsx @@ -2,23 +2,32 @@ import { useState } from 'react'; import { Button } from 'react-bootstrap'; import { Eye, EyeSlash } from 'react-bootstrap-icons'; -export default function SiteRegistryIcon({siteRegistry}: {siteRegistry: boolean}) { +export default function SiteRegistryIcon({ siteRegistry }: { siteRegistry: boolean }) { if (siteRegistry) { return ( - + ) } else { return ( - + ) } } -export function SiteRegistryIconButton({siteRegistry}: {siteRegistry: boolean}) { +export function SiteRegistryIconButton({ siteRegistry }: { siteRegistry: boolean }) { const [dummySRState, setDummySRState] = useState(siteRegistry) return ( - + <> + + ) } \ No newline at end of file diff --git a/frontend/site-search-frontend/src/features/site-details/table/SiteDetailsTable.tsx b/frontend/site-search-frontend/src/features/site-details/table/SiteDetailsTable.tsx index 8ad90776..2b4d5f3b 100644 --- a/frontend/site-search-frontend/src/features/site-details/table/SiteDetailsTable.tsx +++ b/frontend/site-search-frontend/src/features/site-details/table/SiteDetailsTable.tsx @@ -27,6 +27,21 @@ interface SiteDetailsTableProps { export default function SiteDetailsTable({ onClickAdd, headers, data, label }: SiteDetailsTableProps) { const editMode = useSelector((state: RootState) => state.edit.editMode); const [checked, setChecked] = useState<{ [key: string]: boolean }>(initializeCheckedObject(false)); + const [SRCheck, setSRChecks] = useState(copySiteRegistryToState()); + + + /** + * Clones a prop to a state so we can modify it. Only works in prototype. + * In final result, would need to properly update state. + * See also onChangeSiteRegistry. + * @returns + */ + function copySiteRegistryToState() { + // get all data siteRegistry map values + return data.map(row => { + return row.siteRegistry + }) + } // checked = { // 1: true, @@ -36,13 +51,13 @@ export default function SiteDetailsTable({ onClickAdd, headers, data, label }: S // } function handleCheck({ index, event }) { - console.log('handleCheck', {index, event, checked}) + console.log('handleCheck', { index, event, checked }) const newCheck = { ...checked } newCheck[index] = event.target.checked setChecked(newCheck) } - function checkAll(value: boolean) { + function checkAll(value: boolean) { const newChecked = initializeCheckedObject(value); setChecked(newChecked) } @@ -57,11 +72,25 @@ export default function SiteDetailsTable({ onClickAdd, headers, data, label }: S return newChecked; } - function setVisibleOnSiteRegistry(){ - alert('todo'); + function onChangeSiteRegistry() { + // alert('todo'); + // const idsToSetTrue = getSelection(); + // console.log({idsToSetTrue, checked, SRCheck }) + console.log({ checked, SRCheck }) + + // what are we updating here, site? no, only the props passed in? but can't update props... + // idea: clone the props, set that as state, show that state, and modify that stae. + // e.g. checked[key])]; + setSRChecks(checkedAsArray) + } - function getSelection(): string[]{ + function getSelection(): string[] { return Object.keys(checked).filter(key => checked[key] === true); } @@ -72,7 +101,7 @@ export default function SiteDetailsTable({ onClickAdd, headers, data, label }: S {editMode &&
- +
} @@ -95,7 +124,7 @@ export default function SiteDetailsTable({ onClickAdd, headers, data, label }: S handleCheck({ index, event })} /> } {headers?.map((header, index) => )} - {editMode && } + {editMode && } ) })} From e3dfb4d5f690ba6ee1a298287f98d92e10e3e877 Mon Sep 17 00:00:00 2001 From: Adam Coard Date: Tue, 10 Oct 2023 08:59:48 -0700 Subject: [PATCH 124/194] Associated sites table working, but site hyperlinks not working yet --- .../site-details/associated-sites.tsx | 24 +++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/frontend/site-search-frontend/src/features/site-details/associated-sites.tsx b/frontend/site-search-frontend/src/features/site-details/associated-sites.tsx index eb992654..3eccfbf9 100644 --- a/frontend/site-search-frontend/src/features/site-details/associated-sites.tsx +++ b/frontend/site-search-frontend/src/features/site-details/associated-sites.tsx @@ -1,9 +1,33 @@ +import { Site } from "@/api/sites"; +import { RootState } from "@/store"; +import { useSelector } from "react-redux"; +import { useParams } from "react-router-dom"; +import SubSearch from "./sub-search/SubSearch"; +import SiteDetailsTable from "./table/SiteDetailsTable"; export default function AssociatedSites() { + const { siteID } = useParams(); + const siteIDNum = parseInt(siteID); + const site: Site = useSelector((state: RootState) => state.site.value.find(searchedSite => searchedSite.siteID === siteIDNum)); return (

Associated Sites go here

+ + + {/* IDEA: Put in 'renderer' or 'component' option for each header? Should set component to use for that row + This will let us patch in custom link component? Same with Date components. */} + +
) } \ No newline at end of file From c4642f0accbc8e27764975f1b6d4129b8cd962f7 Mon Sep 17 00:00:00 2001 From: Adam Coard Date: Tue, 10 Oct 2023 09:57:21 -0700 Subject: [PATCH 125/194] Create dummy data for all sections beside Documents --- .../src/api/dummy-data.tsx | 70 +- .../site-search-frontend/src/api/sites.ts | 51 +- .../site-details/associated-sites.tsx | 1 - .../site-details/suspect-land-uses.tsx | 22 +- .../src/scripts/dummy-data.sites.json | 70826 +++++++++++----- 5 files changed, 48968 insertions(+), 22002 deletions(-) diff --git a/frontend/site-search-frontend/src/api/dummy-data.tsx b/frontend/site-search-frontend/src/api/dummy-data.tsx index a24dbeed..55b39cc7 100644 --- a/frontend/site-search-frontend/src/api/dummy-data.tsx +++ b/frontend/site-search-frontend/src/api/dummy-data.tsx @@ -1,5 +1,5 @@ import { faker } from '@faker-js/faker'; -import { SiteParticipant, type Notation, type Site, AssociatedSite } from './sites' +import { SiteParticipant, type Notation, type Site, AssociatedSite, SuspectLandUse, SiteDisclosure, ActivityLogItem, SiteDisclosurePurpose } from './sites' // import formatDateToString from '@/helpers/formatDateToString'; import formatDateToString from '../helpers/formatDateToString.ts' @@ -32,8 +32,17 @@ export function createRandomSite(): Site { locationDescription: 'LAT/LONGS CONFIRMED USING ICIS MAY 16,2013', // Generate 1-5 notations - notations: Array.from({length: faker.number.int({min: 2, max: 5}) }, () => { return randomNotation() }), - participants: Array.from({length: faker.number.int({min: 2, max: 5}) }, () => { return randomSiteParticipant() }), + // notations: Array.from({length: faker.number.int({min: 2, max: 5}) }, () => { return randomNotation() }), + // participants: Array.from({length: faker.number.int({min: 2, max: 5}) }, () => { return randomSiteParticipant() }), + notations: createAndPopulateArray({min: 2, max: 5, generator: randomNotation}), + participants: createAndPopulateArray({min: 2, max: 5, generator: randomSiteParticipant}), + suspectLandUses: createAndPopulateArray({min: 2, max: 5, generator: randomSuspectLandUse}), + + + siteDisclosures: createAndPopulateArray({min: 1, max: 2, generator: randomSiteDisclosure}), + activityLog: createAndPopulateArray({min: 5, max: 10, generator: randomActivityLogItem}), + + // Associated Sites is generated after site generation with `createSiteAssociations()`, as we need siteIDs already gen'd. associatedSites: [] @@ -41,6 +50,13 @@ export function createRandomSite(): Site { } } +/** + * Helper function, creates an array of varying length (between min-max) and each item in array will be created by invoking generator(). + */ +function createAndPopulateArray({min, max, generator}): T[] { + return Array.from({length: faker.number.int({min, max}) }, () => { return generator() }); +} + const REGIONS = ['Vancouver Island/Coast', 'Mainland/Southwest', 'Thompson-Okanagan', 'Kootenay', 'Cariboo',' North Coast']; function randomRegion() { const random = Math.floor(Math.random() * REGIONS.length) @@ -114,4 +130,52 @@ function randomAssociation(siteIDs: number[], parentSiteID: number): AssociatedS siteRegistry: faker.datatype.boolean(), } +} + +function randomSuspectLandUse(): SuspectLandUse { + const date = formatDateToString(faker.date.past({years: 10})); + + return { + siteRegistry: faker.datatype.boolean(), + notes: `INSERTED FOR SITE PROFILE DATED ${date} (described on Site Profile dated ${date})`, + landUse: faker.helpers.arrayElement(['PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES', 'PETROLEUM OR NATURAL GAS DRILLING']), + } +} + +function randomSiteDisclosure(): SiteDisclosure { + return { + siteRegistry: faker.datatype.boolean(), + dateReceived: formatDateToString(faker.date.past({years: 10})), + dateCompleted: formatDateToString(faker.date.past({years: 10})), + dateEntered: formatDateToString(faker.date.past({years: 10})), + dateRegistrar: formatDateToString(faker.date.past({years: 10})), + dateLocalAuthorityReceived: formatDateToString(faker.date.past({years: 10})), + summary: faker.lorem.lines({min: 1, max: 3}), + informationUsed: faker.lorem.lines({min: 3, max: 5}), + pastOrPresentOrders: faker.lorem.lines({min: 1, max: 3}), + commercialAndIndustrialPurposes: createAndPopulateArray({min: 2, max: 4, generator: randomSiteCommercialIndustrialActivity}) + + + + } + +} + +function randomSiteCommercialIndustrialActivity(): SiteDisclosurePurpose { + return { + scheduleReference: faker.helpers.arrayElement(['F1*', 'F2*']), + description: faker.helpers.arrayElement(['PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES', 'PETROLEUM OR NATURAL GAS DRILLING']), + siteRegistry: faker.datatype.boolean() + } +} + +function randomActivityLogItem(): ActivityLogItem { + + return { + siteRegistry: faker.datatype.boolean(), + activity: 'Lorem ipsum dolor sit amet', + user: faker.person.lastName().toUpperCase() + " " + faker.person.firstName().toUpperCase(), + timestamp: formatDateToString(faker.date.past({years: 10})) + } + } \ No newline at end of file diff --git a/frontend/site-search-frontend/src/api/sites.ts b/frontend/site-search-frontend/src/api/sites.ts index 4a3fbd72..59d95c28 100644 --- a/frontend/site-search-frontend/src/api/sites.ts +++ b/frontend/site-search-frontend/src/api/sites.ts @@ -19,7 +19,12 @@ export class Site { notations: Notation[]; participants: SiteParticipant[]; - associatedSites: AssociatedSite[] + associatedSites: AssociatedSite[]; + + suspectLandUses: SuspectLandUse[]; + siteDisclosures: SiteDisclosure[]; + activityLog: ActivityLogItem[]; + // constructor(data: Site) { // // Using "Object.assign()" to bypass having to assign all properties @@ -78,5 +83,49 @@ export class AssociatedSite implements canBeOnSiteRegistry { parcelID: string; dateNoted: string; notes: string; + siteRegistry: boolean; +} + +export class SuspectLandUse implements canBeOnSiteRegistry { + siteRegistry: boolean; + landUse: string; + notes: string; +} + +export class ParcelDescription implements canBeOnSiteRegistry { + siteRegistry: boolean; + dateNoted: string; + parcelID: string; + crownLandUsePIN: string; + crownLandFileNumber: string; + landDescription: string; +} + +export class SiteDisclosure implements canBeOnSiteRegistry { + siteRegistry: boolean; + dateReceived: string; + dateCompleted: string; + dateLocalAuthorityReceived: string; + dateRegistrar: string; + dateEntered: string; + + commercialAndIndustrialPurposes: SiteDisclosurePurpose[] + + summary: string; + informationUsed: string; + pastOrPresentOrders: string; +} + +export class SiteDisclosurePurpose implements canBeOnSiteRegistry { + scheduleReference: string; + description: string; + siteRegistry: boolean + +} + +export class ActivityLogItem implements canBeOnSiteRegistry { siteRegistry: boolean; + activity: string; + user: string; + timestamp: string; } \ No newline at end of file diff --git a/frontend/site-search-frontend/src/features/site-details/associated-sites.tsx b/frontend/site-search-frontend/src/features/site-details/associated-sites.tsx index 3eccfbf9..5205ff24 100644 --- a/frontend/site-search-frontend/src/features/site-details/associated-sites.tsx +++ b/frontend/site-search-frontend/src/features/site-details/associated-sites.tsx @@ -12,7 +12,6 @@ export default function AssociatedSites() { return (
-

Associated Sites go here

{/* IDEA: Put in 'renderer' or 'component' option for each header? Should set component to use for that row diff --git a/frontend/site-search-frontend/src/features/site-details/suspect-land-uses.tsx b/frontend/site-search-frontend/src/features/site-details/suspect-land-uses.tsx index 2a933dc0..0479ff32 100644 --- a/frontend/site-search-frontend/src/features/site-details/suspect-land-uses.tsx +++ b/frontend/site-search-frontend/src/features/site-details/suspect-land-uses.tsx @@ -1,9 +1,29 @@ +import { Site } from "@/api/sites"; +import { RootState } from "@/store"; +import { useSelector } from "react-redux"; +import { useParams } from "react-router-dom"; +import SubSearch from "./sub-search/SubSearch"; +import SiteDetailsTable from "./table/SiteDetailsTable"; export default function SuspectLandUses() { + const { siteID } = useParams(); + const siteIDNum = parseInt(siteID); + const site: Site = useSelector((state: RootState) => state.site.value.find(searchedSite => searchedSite.siteID === siteIDNum)); + return (
-

Suspect Land Uses go here

+ + + +
) } \ No newline at end of file diff --git a/frontend/site-search-frontend/src/scripts/dummy-data.sites.json b/frontend/site-search-frontend/src/scripts/dummy-data.sites.json index a498b496..5d352a2d 100644 --- a/frontend/site-search-frontend/src/scripts/dummy-data.sites.json +++ b/frontend/site-search-frontend/src/scripts/dummy-data.sites.json @@ -1,29 +1,29 @@ [ { - "uuid": "7739e0af-e641-42f1-9419-52450e063884", - "siteID": 18319, - "address": "7321 King Hill", - "latitude": 57.7618, - "longitude": -137.916, - "lastUpdated": "2014-06-07", - "city": "South Madie", + "uuid": "a806cad0-0aa7-4363-9602-10379c2131b8", + "siteID": 18197, + "address": "9416 Jameson Trace", + "latitude": 48.8701, + "longitude": -125.3203, + "lastUpdated": "2022-10-05", + "city": "North Jane", "region": "Mainland/Southwest", - "victoriaFile": "26250-20/4893", + "victoriaFile": "26250-20/18182", "regionalFile": "N/A", "parcelIDs": [ - 7534998, - 4932627, - 7039573, - 539610, - 9639069 + 6014936, + 2152903, + 6664748, + 2471062, + 5772645 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2015-02-08", - "completed": "2020-02-26", - "initiated": "2018-10-06", - "ministryContact": "HARBER ALTA", + "createdAt": "2022-04-02", + "completed": "2016-12-15", + "initiated": "2018-01-26", + "ministryContact": "STEHR RAHUL", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -32,38 +32,23 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2022-10-29", - "completed": "2015-12-09", - "initiated": "2015-06-06", - "ministryContact": "RIPPIN APRIL", + "createdAt": "2016-01-03", + "completed": "2021-12-16", + "initiated": "2018-07-29", + "ministryContact": "RUECKER BRIONNA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -78,122 +63,199 @@ }, { "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true + "role": "REQUESTED BY", + "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false } ], "participants": [ { "name": "SHELL CANADA PRODUCTS", - "endDate": "2020-04-16", - "startDate": "2013-11-30", + "endDate": "2023-05-03", + "startDate": "2021-08-15", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", - "endDate": "2021-07-13", - "startDate": "2021-03-05", + "endDate": "2014-09-11", + "startDate": "2020-06-27", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2015-04-19", - "startDate": "2021-09-03", + "name": "AMET, DOLOR SIT", + "endDate": "2015-04-25", + "startDate": "2017-05-04", "notes": "", "roles": [ "ORGANIZATION" ], "siteRegistry": false + } + ], + "suspectLandUses": [ + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2017-06-17 (described on Site Profile dated 2017-06-17)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2016-12-24", - "startDate": "2015-05-03", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": false + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2019-10-11 (described on Site Profile dated 2019-10-11)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "name": "AMET, DOLOR SIT", - "endDate": "2014-06-10", - "startDate": "2013-12-10", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": false + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2016-06-08 (described on Site Profile dated 2016-06-08)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2017-07-29 (described on Site Profile dated 2017-07-29)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + } + ], + "siteDisclosures": [ + { + "siteRegistry": false, + "dateReceived": "2021-09-07", + "dateCompleted": "2021-12-10", + "dateEntered": "2015-04-04", + "dateRegistrar": "2019-10-20", + "dateLocalAuthorityReceived": "2018-05-01", + "summary": "Autem laudantium sint deleniti provident officiis blanditiis.", + "informationUsed": "Culpa rerum nihil perspiciatis id asperiores exercitationem quibusdam debitis.\nAspernatur optio perspiciatis.\nNulla voluptates fugit cupiditate expedita veritatis aspernatur nulla assumenda nulla.", + "pastOrPresentOrders": "Autem tenetur ab.\nLabore est ut explicabo aspernatur.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + } + ] + }, + { + "siteRegistry": true, + "dateReceived": "2013-10-19", + "dateCompleted": "2021-03-24", + "dateEntered": "2013-12-12", + "dateRegistrar": "2018-11-28", + "dateLocalAuthorityReceived": "2014-04-22", + "summary": "In voluptatum explicabo architecto omnis tenetur numquam reiciendis.\nOmnis placeat libero ipsa autem eveniet eveniet animi.\nReprehenderit dignissimos maiores rerum.", + "informationUsed": "Ad id eos odio.\nAspernatur totam recusandae hic distinctio unde tempora at sequi placeat.\nHic placeat explicabo excepturi illum autem culpa possimus praesentium.", + "pastOrPresentOrders": "Vitae perspiciatis doloribus eius quis est odio earum.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + } + ] + } + ], + "activityLog": [ + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "NOLAN NELLIE", + "timestamp": "2017-03-26" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "RIPPIN CARSON", + "timestamp": "2017-10-15" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "WUNSCH-WILLMS MODESTO", + "timestamp": "2016-09-04" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "MURRAY ELODY", + "timestamp": "2017-02-03" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "KOVACEK GENOVEVA", + "timestamp": "2013-10-26" } ], "associatedSites": [ { - "dateNoted": "2019-01-11", + "dateNoted": "2022-02-06", "notes": "", - "parcelID": "17213", - "siteID": "18093", - "siteRegistry": false + "parcelID": "15381", + "siteID": "15517", + "siteRegistry": true }, { - "dateNoted": "2013-12-13", + "dateNoted": "2022-11-11", "notes": "", - "parcelID": "15594", - "siteID": "15792", + "parcelID": "16243", + "siteID": "17809", "siteRegistry": true } ] }, { - "uuid": "edc0fe89-59c1-4d7f-958b-5138886095df", - "siteID": 18269, - "address": "932 Brakus Islands", - "latitude": 53.3937, - "longitude": -126.1078, - "lastUpdated": "2015-10-25", - "city": "Titoberg", - "region": " North Coast", - "victoriaFile": "26250-20/12018", + "uuid": "b798b637-7047-4898-8fab-cb83149eb95f", + "siteID": 16504, + "address": "315 Martina Ranch", + "latitude": 48.0335, + "longitude": -137.5519, + "lastUpdated": "2017-03-18", + "city": "Hacienda Heights", + "region": "Mainland/Southwest", + "victoriaFile": "26250-20/8919", "regionalFile": "N/A", "parcelIDs": [ - 9472301, - 2884191, - 6409707, - 1818996, - 3861543 + 7548927, + 8978359, + 9110836, + 4213703, + 2333990 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2018-03-09", - "completed": "2021-11-18", - "initiated": "2019-07-25", - "ministryContact": "BASHIRIAN PRINCE", + "createdAt": "2013-12-03", + "completed": "2016-08-24", + "initiated": "2013-11-29", + "ministryContact": "ZIEME TRE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -202,28 +264,38 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2016-02-23", - "completed": "2014-11-24", - "initiated": "2023-05-21", - "ministryContact": "WITTING TRYSTAN", + "createdAt": "2021-10-11", + "completed": "2017-08-31", + "initiated": "2015-02-22", + "ministryContact": "WALTER DENA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -232,12 +304,7 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true }, @@ -245,20 +312,15 @@ "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false } ], "siteRegistry": true }, { - "createdAt": "2015-01-08", - "completed": "2023-03-07", - "initiated": "2022-08-21", - "ministryContact": "RENNER-FUNK CALLIE", + "createdAt": "2015-03-22", + "completed": "2018-09-13", + "initiated": "2023-09-14", + "ministryContact": "HIRTHE JOSEPH", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -268,12 +330,32 @@ "notationParticipants": [ { "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false + "role": "REQUESTED BY", + "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "createdAt": "2019-05-26", + "completed": "2023-04-11", + "initiated": "2017-04-19", + "ministryContact": "REINGER LAURY", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", "siteRegistry": false }, { @@ -283,22 +365,22 @@ }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2016-08-15", - "completed": "2019-09-03", - "initiated": "2021-11-08", - "ministryContact": "O'REILLY CLAUDIA", + "createdAt": "2023-09-02", + "completed": "2022-02-05", + "initiated": "2021-12-29", + "ministryContact": "HIRTHE JOANNY", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -306,6 +388,11 @@ "" ], "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", @@ -314,11 +401,6 @@ { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", "siteRegistry": false }, { @@ -327,34 +409,44 @@ "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false } ], "participants": [ { "name": "SHELL CANADA PRODUCTS", - "endDate": "2017-11-28", - "startDate": "2017-02-15", + "endDate": "2017-12-19", + "startDate": "2014-08-28", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": true }, { - "name": "AMET, DOLOR SIT", - "endDate": "2020-12-21", - "startDate": "2022-12-13", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2014-11-05", + "startDate": "2020-08-14", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2017-10-08", - "startDate": "2020-09-07", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2022-09-18", + "startDate": "2017-07-17", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "name": "IPSUM", + "endDate": "2018-07-27", + "startDate": "2020-02-04", "notes": "", "roles": [ "EMPLOYEE" @@ -363,57 +455,181 @@ }, { "name": "SHELL CANADA PRODUCTS", - "endDate": "2016-09-09", - "startDate": "2015-06-11", + "endDate": "2018-03-14", + "startDate": "2020-02-22", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], - "siteRegistry": true + "siteRegistry": false } ], - "associatedSites": [ + "suspectLandUses": [ { - "dateNoted": "2023-02-08", - "notes": "", - "parcelID": "17312", - "siteID": "17113", - "siteRegistry": true + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2023-03-08 (described on Site Profile dated 2023-03-08)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2014-07-28 (described on Site Profile dated 2014-07-28)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + } + ], + "siteDisclosures": [ + { + "siteRegistry": false, + "dateReceived": "2015-04-14", + "dateCompleted": "2015-11-30", + "dateEntered": "2015-05-10", + "dateRegistrar": "2021-04-15", + "dateLocalAuthorityReceived": "2023-09-15", + "summary": "Culpa ut perferendis fugit odit dolore eligendi consequuntur quidem.\nIncidunt laborum sit deserunt hic voluptatibus.", + "informationUsed": "Vel ad expedita pariatur quasi nesciunt libero veniam autem aliquam.\nConsequuntur velit sapiente neque.\nEarum dignissimos tempora itaque in eligendi consectetur hic maiores.", + "pastOrPresentOrders": "Itaque labore voluptates reprehenderit veritatis pariatur.\nSunt autem odio praesentium adipisci recusandae.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + } + ] + }, + { + "siteRegistry": false, + "dateReceived": "2020-01-16", + "dateCompleted": "2023-04-23", + "dateEntered": "2015-05-18", + "dateRegistrar": "2016-03-14", + "dateLocalAuthorityReceived": "2017-04-02", + "summary": "Ducimus totam quaerat cupiditate nihil sit libero corrupti quae.\nPerspiciatis tempore temporibus numquam fuga perferendis.", + "informationUsed": "Magni quo placeat.\nAb rem minus ipsum est adipisci quasi.\nEos quis facere.\nAut fuga fuga officiis consequatur.\nEx in repellat ex iste ducimus.", + "pastOrPresentOrders": "Dicta soluta dicta aliquid similique.\nReprehenderit eligendi labore enim minus incidunt exercitationem cupiditate itaque.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + } + ] + } + ], + "activityLog": [ + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "MOORE PORTER", + "timestamp": "2021-01-27" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "LABADIE GILES", + "timestamp": "2018-01-23" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "REMPEL MARIANO", + "timestamp": "2015-08-11" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "COLE PIERCE", + "timestamp": "2014-10-27" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "VON KATTIE", + "timestamp": "2021-08-09" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "BOSCO COBY", + "timestamp": "2015-01-14" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "EMARD-WEBER VELDA", + "timestamp": "2017-04-12" }, { - "dateNoted": "2020-04-29", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "SCHAMBERGER SAMANTA", + "timestamp": "2016-10-31" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "BOGISICH MARITZA", + "timestamp": "2015-10-20" + } + ], + "associatedSites": [ + { + "dateNoted": "2023-02-20", "notes": "", - "parcelID": "19289", - "siteID": "18495", - "siteRegistry": false + "parcelID": "18722", + "siteID": "16916", + "siteRegistry": true } ] }, { - "uuid": "fdd08826-fcce-4832-8b02-98e948bc188e", - "siteID": 15980, - "address": "968 Mertz Road", - "latitude": 50.1289, - "longitude": -136.9081, - "lastUpdated": "2021-12-22", - "city": "South Mohammedworth", - "region": " North Coast", - "victoriaFile": "26250-20/1411", + "uuid": "552e0f14-1131-4083-b61b-dc771ffec344", + "siteID": 16418, + "address": "258 Selina Heights", + "latitude": 54.2219, + "longitude": -134.8991, + "lastUpdated": "2014-09-10", + "city": "Miramar", + "region": "Cariboo", + "victoriaFile": "26250-20/5564", "regionalFile": "N/A", "parcelIDs": [ - 7295341, - 8323174, - 7102816, - 5270134, - 1312009 + 8976886, + 8777885, + 1872608, + 2426660, + 3427762 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2016-05-02", - "completed": "2022-09-08", - "initiated": "2021-05-16", - "ministryContact": "OLSON XZAVIER", + "createdAt": "2021-10-01", + "completed": "2018-05-20", + "initiated": "2021-12-27", + "ministryContact": "KUHIC THERESA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -421,10 +637,15 @@ "" ], "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", @@ -432,13 +653,13 @@ "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2017-11-01", - "completed": "2017-09-30", - "initiated": "2019-01-23", - "ministryContact": "LINDGREN NICOLETTE", + "createdAt": "2021-06-24", + "completed": "2018-06-25", + "initiated": "2014-01-15", + "ministryContact": "FRANECKI WHITNEY", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -447,8 +668,8 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": true }, { @@ -457,48 +678,195 @@ "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false } ], "siteRegistry": false + } + ], + "participants": [ + { + "name": "IPSUM", + "endDate": "2022-11-09", + "startDate": "2016-12-04", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true }, { - "createdAt": "2018-10-20", - "completed": "2017-10-14", - "initiated": "2021-08-15", - "ministryContact": "EBERT LIANA", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" + "name": "AMET, DOLOR SIT", + "endDate": "2015-06-12", + "startDate": "2016-12-24", + "notes": "", + "roles": [ + "EMPLOYEE" ], - "notationParticipants": [ + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2020-12-19", + "startDate": "2022-08-02", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + } + ], + "suspectLandUses": [ + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2022-12-10 (described on Site Profile dated 2022-12-10)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2015-08-05 (described on Site Profile dated 2015-08-05)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + } + ], + "siteDisclosures": [ + { + "siteRegistry": false, + "dateReceived": "2016-01-17", + "dateCompleted": "2019-08-17", + "dateEntered": "2014-09-04", + "dateRegistrar": "2020-02-09", + "dateLocalAuthorityReceived": "2021-07-18", + "summary": "Ducimus sunt vitae accusamus.\nIste laborum corporis.\nSuscipit repellat natus in aut aperiam vero ut.", + "informationUsed": "Pariatur doloremque molestias veritatis quos blanditiis iure excepturi.\nIure ullam culpa pariatur occaecati.\nAccusantium dolor expedita maxime veniam officia.\nVoluptate commodi explicabo est quisquam accusamus.", + "pastOrPresentOrders": "Ipsa deserunt qui iste error neque quo veniam modi.\nNemo quae magnam aliquid distinctio suscipit voluptas.", + "commercialAndIndustrialPurposes": [ { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false - }, + } + ] + }, + { + "siteRegistry": true, + "dateReceived": "2022-05-15", + "dateCompleted": "2016-11-13", + "dateEntered": "2023-08-07", + "dateRegistrar": "2019-08-21", + "dateLocalAuthorityReceived": "2021-11-13", + "summary": "Ullam quas iure reiciendis ducimus numquam asperiores optio.\nCommodi explicabo sunt voluptate consequatur ullam saepe molestias incidunt.", + "informationUsed": "Minima cumque laboriosam occaecati quod.\nDicta sint accusamus iure reprehenderit ea exercitationem illum labore.\nMagni qui quo iusto.\nExpedita id assumenda ipsa molestiae rerum pariatur amet ratione.\nAt ipsa quas sit dolores corporis occaecati voluptatibus ea totam.", + "pastOrPresentOrders": "Officia id ut quaerat numquam quibusdam pariatur tenetur veniam iste.\nSed accusantium quos velit omnis recusandae facilis eius.", + "commercialAndIndustrialPurposes": [ { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false } - ], - "siteRegistry": false + ] + } + ], + "activityLog": [ + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "LUBOWITZ GEORGE", + "timestamp": "2021-08-04" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "WEISSNAT KRAIG", + "timestamp": "2021-02-20" }, { - "createdAt": "2021-01-27", - "completed": "2021-02-10", - "initiated": "2018-09-23", - "ministryContact": "ROOB MARIANA", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "CONN OTHO", + "timestamp": "2014-05-11" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "BERGSTROM FREDDY", + "timestamp": "2017-12-27" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "HAAG REGGIE", + "timestamp": "2023-05-26" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "WHITE KACI", + "timestamp": "2016-09-29" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "DUBUQUE JANIE", + "timestamp": "2020-10-22" + } + ], + "associatedSites": [ + { + "dateNoted": "2023-04-19", + "notes": "", + "parcelID": "19250", + "siteID": "18155", + "siteRegistry": true + } + ] + }, + { + "uuid": "eb5bfec1-a80f-4205-944a-bdc1542e99bc", + "siteID": 19463, + "address": "433 Ratke Lodge", + "latitude": 54.7118, + "longitude": -124.4411, + "lastUpdated": "2016-08-31", + "city": "Wylie", + "region": " North Coast", + "victoriaFile": "26250-20/17739", + "regionalFile": "N/A", + "parcelIDs": [ + 8031701, + 2512553, + 694177, + 7089637, + 6355134 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2023-04-20", + "completed": "2020-03-04", + "initiated": "2019-03-20", + "ministryContact": "KONOPELSKI RICHMOND", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -506,39 +874,24 @@ "" ], "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true } ], "siteRegistry": false }, { - "createdAt": "2023-09-08", - "completed": "2023-08-21", - "initiated": "2017-08-03", - "ministryContact": "RYAN LAURIANNE", + "createdAt": "2021-12-18", + "completed": "2021-02-18", + "initiated": "2020-12-21", + "ministryContact": "FRANECKI TYRESE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -546,15 +899,25 @@ "" ], "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", @@ -562,80 +925,13 @@ "siteRegistry": true } ], - "siteRegistry": true - } - ], - "participants": [ - { - "name": "AMET, DOLOR SIT", - "endDate": "2017-01-08", - "startDate": "2016-07-04", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2018-12-13", - "startDate": "2014-09-03", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": true - } - ], - "associatedSites": [ - { - "dateNoted": "2020-01-18", - "notes": "", - "parcelID": "15283", - "siteID": "19903", "siteRegistry": false }, { - "dateNoted": "2019-08-04", - "notes": "", - "parcelID": "15389", - "siteID": "15577", - "siteRegistry": false - }, - { - "dateNoted": "2014-06-10", - "notes": "", - "parcelID": "16657", - "siteID": "19380", - "siteRegistry": true - } - ] - }, - { - "uuid": "889b94d4-736c-4217-a0f2-72e2c9235813", - "siteID": 18065, - "address": "64134 Jada Glen", - "latitude": 56.3675, - "longitude": -130.3327, - "lastUpdated": "2018-02-06", - "city": "North Carterfurt", - "region": "Cariboo", - "victoriaFile": "26250-20/17862", - "regionalFile": "N/A", - "parcelIDs": [ - 8846220, - 8584515, - 6083650, - 9174776, - 9412895 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2023-02-25", - "completed": "2022-05-21", - "initiated": "2023-08-08", - "ministryContact": "STROSIN BELLA", + "createdAt": "2020-07-30", + "completed": "2015-02-26", + "initiated": "2018-05-18", + "ministryContact": "BEIER QUINTON", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -644,7 +940,12 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false }, @@ -655,22 +956,22 @@ }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2014-05-04", - "completed": "2017-02-21", - "initiated": "2016-04-01", - "ministryContact": "HUEL LULU", + "createdAt": "2018-04-08", + "completed": "2015-08-29", + "initiated": "2017-09-17", + "ministryContact": "LEMKE-SCHAEFER DANTE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -678,6 +979,11 @@ "" ], "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", @@ -685,8 +991,8 @@ }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true + "role": "REQUESTED BY", + "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", @@ -694,19 +1000,19 @@ "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false } ], "participants": [ { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2016-07-14", - "startDate": "2020-11-11", + "name": "IPSUM", + "endDate": "2017-08-13", + "startDate": "2018-07-07", "notes": "", "roles": [ "ORGANIZATION" @@ -715,142 +1021,191 @@ }, { "name": "AMET, DOLOR SIT", - "endDate": "2015-10-08", - "startDate": "2015-12-09", + "endDate": "2017-08-09", + "startDate": "2015-11-02", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2017-04-16", - "startDate": "2016-04-14", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2023-06-08", + "startDate": "2022-05-06", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2023-02-24", - "startDate": "2014-07-20", + "name": "IPSUM", + "endDate": "2015-08-30", + "startDate": "2022-12-05", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": false + "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2019-01-07", - "startDate": "2017-10-20", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2016-06-14", + "startDate": "2019-12-16", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": true } ], - "associatedSites": [ + "suspectLandUses": [ { - "dateNoted": "2016-05-08", - "notes": "", - "parcelID": "18635", - "siteID": "20788", - "siteRegistry": false + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2022-05-22 (described on Site Profile dated 2022-05-22)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "dateNoted": "2016-12-08", - "notes": "", - "parcelID": "17135", - "siteID": "17414", - "siteRegistry": false + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2018-04-06 (described on Site Profile dated 2018-04-06)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2022-03-16 (described on Site Profile dated 2022-03-16)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } - ] - }, - { - "uuid": "f015e3d9-c3ac-489a-a4a6-8bad67885aa3", - "siteID": 15784, - "address": "116 Erin Rue", - "latitude": 53.6632, - "longitude": -118.0536, - "lastUpdated": "2021-12-19", - "city": "Kielbury", - "region": " North Coast", - "victoriaFile": "26250-20/11964", - "regionalFile": "N/A", - "parcelIDs": [ - 1650055, - 9103114, - 1089791, - 515337, - 6604543 ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ + "siteDisclosures": [ { - "createdAt": "2020-09-17", - "completed": "2014-08-28", - "initiated": "2016-02-14", - "ministryContact": "CORMIER ERNIE", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ + "siteRegistry": true, + "dateReceived": "2021-05-24", + "dateCompleted": "2022-12-24", + "dateEntered": "2017-02-21", + "dateRegistrar": "2015-01-11", + "dateLocalAuthorityReceived": "2019-10-15", + "summary": "Magnam voluptatibus ducimus assumenda libero sapiente soluta dolorum.", + "informationUsed": "Et ipsam tenetur molestias nemo consequatur culpa.\nVoluptas cumque consectetur quaerat adipisci dolorum.\nSoluta mollitia dolorum.\nReiciendis quaerat ipsam aliquam necessitatibus.\nDignissimos debitis nostrum accusamus fuga ea tempore esse.", + "pastOrPresentOrders": "Quaerat quas ex quae repellendus amet.", + "commercialAndIndustrialPurposes": [ { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true } - ], - "siteRegistry": true + ] + } + ], + "activityLog": [ + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "DENESIK GLENNIE", + "timestamp": "2016-05-01" }, { - "createdAt": "2017-05-27", - "completed": "2018-09-20", - "initiated": "2016-05-31", - "ministryContact": "CRONIN FLORIDA", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - } - ], + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "CARTER KYLE", + "timestamp": "2015-09-26" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "GUSIKOWSKI-FRAMI LOTTIE", + "timestamp": "2021-07-13" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "MUELLER MAY", + "timestamp": "2021-12-14" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "TOWNE MARIE", + "timestamp": "2014-09-28" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "NITZSCHE LOLITA", + "timestamp": "2016-02-13" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "KOSS ANTONIETTA", + "timestamp": "2022-02-14" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "HEGMANN ERICA", + "timestamp": "2016-08-20" + } + ], + "associatedSites": [ + { + "dateNoted": "2018-01-26", + "notes": "", + "parcelID": "17856", + "siteID": "17809", "siteRegistry": false }, { - "createdAt": "2020-03-08", - "completed": "2021-07-18", - "initiated": "2015-02-06", - "ministryContact": "DICKINSON ANNA", + "dateNoted": "2020-04-12", + "notes": "", + "parcelID": "19789", + "siteID": "16586", + "siteRegistry": true + }, + { + "dateNoted": "2016-01-01", + "notes": "", + "parcelID": "17054", + "siteID": "16876", + "siteRegistry": true + } + ] + }, + { + "uuid": "945fb08e-9dfa-4479-8ab6-6a7e048f78e5", + "siteID": 17498, + "address": "3091 Katelynn Creek", + "latitude": 48.6827, + "longitude": -123.8712, + "lastUpdated": "2018-09-10", + "city": "West Alenaboro", + "region": " North Coast", + "victoriaFile": "26250-20/2308", + "regionalFile": "N/A", + "parcelIDs": [ + 9022820, + 6634794, + 5491815, + 9263178, + 2428880 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2021-02-25", + "completed": "2019-12-17", + "initiated": "2023-04-24", + "ministryContact": "PREDOVIC SHYANN", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -865,32 +1220,17 @@ }, { "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2016-02-01", - "completed": "2014-12-26", - "initiated": "2020-12-10", - "ministryContact": "BEATTY-WYMAN PATSY", + "createdAt": "2017-04-14", + "completed": "2015-07-14", + "initiated": "2019-05-29", + "ministryContact": "RATH AURELIO", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -899,38 +1239,33 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false } ], "siteRegistry": false }, { - "createdAt": "2021-01-27", - "completed": "2021-03-28", - "initiated": "2014-05-16", - "ministryContact": "YUNDT RAFAELA", + "createdAt": "2014-08-27", + "completed": "2020-05-23", + "initiated": "2023-05-02", + "ministryContact": "ORTIZ MODESTA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -938,121 +1273,214 @@ "" ], "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true } ], "participants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2014-09-10", - "startDate": "2017-03-08", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2020-09-04", + "startDate": "2018-12-16", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], - "siteRegistry": false + "siteRegistry": true }, { - "name": "IPSUM", - "endDate": "2018-11-19", - "startDate": "2014-07-24", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2019-12-04", + "startDate": "2020-10-21", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2018-03-03", - "startDate": "2019-11-15", + "endDate": "2020-03-06", + "startDate": "2020-12-28", "notes": "", "roles": [ "ORGANIZATION" ], "siteRegistry": true + } + ], + "suspectLandUses": [ + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2022-03-10 (described on Site Profile dated 2022-03-10)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "name": "IPSUM", - "endDate": "2022-01-05", - "startDate": "2014-11-02", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": true + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2016-10-30 (described on Site Profile dated 2016-10-30)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2015-02-23 (described on Site Profile dated 2015-02-23)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2014-02-24 (described on Site Profile dated 2014-02-24)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], - "associatedSites": [ + "siteDisclosures": [ { - "dateNoted": "2015-01-18", - "notes": "", - "parcelID": "15293", - "siteID": "18775", - "siteRegistry": false + "siteRegistry": true, + "dateReceived": "2021-01-27", + "dateCompleted": "2016-05-11", + "dateEntered": "2018-09-04", + "dateRegistrar": "2014-05-04", + "dateLocalAuthorityReceived": "2018-01-30", + "summary": "Ipsam id quia quaerat.\nImpedit ducimus pariatur repudiandae facere.\nFugit culpa recusandae ad quod exercitationem.", + "informationUsed": "Necessitatibus porro fuga reiciendis facilis amet.\nEos qui unde quis et esse provident mollitia omnis nisi.\nRepudiandae reprehenderit cum dolor provident a modi adipisci suscipit.\nVoluptatum sint quo officiis distinctio.", + "pastOrPresentOrders": "Impedit minus minus.\nSed modi quisquam voluptatem nostrum.\nNostrum ullam et dicta.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + } + ] }, { - "dateNoted": "2021-04-08", - "notes": "", - "parcelID": "20313", - "siteID": "20555", - "siteRegistry": false + "siteRegistry": false, + "dateReceived": "2020-08-26", + "dateCompleted": "2016-09-06", + "dateEntered": "2020-06-06", + "dateRegistrar": "2021-11-28", + "dateLocalAuthorityReceived": "2017-05-23", + "summary": "Nihil rerum similique praesentium.\nLaboriosam asperiores possimus vitae quos expedita doloremque.\nAt molestiae quod nam doloremque nulla.", + "informationUsed": "Fugiat esse corrupti consequatur officiis minima temporibus.\nAdipisci dignissimos doloribus.\nNon possimus provident consequatur ipsam recusandae saepe ullam magnam.", + "pastOrPresentOrders": "Labore ut officiis consequatur expedita aut labore exercitationem.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + } + ] + } + ], + "activityLog": [ + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "CROOKS STEPHANIA", + "timestamp": "2014-03-15" }, { - "dateNoted": "2023-02-18", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "CHRISTIANSEN ISABELLA", + "timestamp": "2018-11-10" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "HARVEY GEOVANNY", + "timestamp": "2019-02-27" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "ROBEL HOBART", + "timestamp": "2015-10-01" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "FISHER LEA", + "timestamp": "2014-01-19" + } + ], + "associatedSites": [ + { + "dateNoted": "2022-02-06", "notes": "", - "parcelID": "15704", - "siteID": "20957", + "parcelID": "15923", + "siteID": "20178", "siteRegistry": true } ] }, { - "uuid": "a0948bb1-b06a-42cc-ab19-86a9cea7f7e9", - "siteID": 19905, - "address": "8574 Hayden Forest", - "latitude": 56.4413, - "longitude": -120.5489, - "lastUpdated": "2022-05-24", - "city": "Fort Electafield", - "region": " North Coast", - "victoriaFile": "26250-20/18738", + "uuid": "b2d77b76-1485-4add-b82f-8b6c3a60c511", + "siteID": 19117, + "address": "322 Dean Avenue", + "latitude": 55.1378, + "longitude": -129.2486, + "lastUpdated": "2015-05-28", + "city": "South Shyannfurt", + "region": "Kootenay", + "victoriaFile": "26250-20/4401", "regionalFile": "N/A", "parcelIDs": [ - 9098175, - 3532457, - 8278379, - 9391471, - 3226250 + 4762515, + 2391823, + 9715575, + 1063795, + 813438 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2019-06-01", - "completed": "2014-11-06", - "initiated": "2018-02-24", - "ministryContact": "WUNSCH VINCENT", + "createdAt": "2017-11-25", + "completed": "2020-07-02", + "initiated": "2014-05-05", + "ministryContact": "HAMILL TURNER", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -1061,28 +1489,23 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2017-06-15", - "completed": "2014-07-26", - "initiated": "2016-02-10", - "ministryContact": "STROSIN JEFFREY", + "createdAt": "2016-10-11", + "completed": "2019-12-04", + "initiated": "2022-12-20", + "ministryContact": "BREKKE-CRONA COLEMAN", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -1092,22 +1515,22 @@ "notationParticipants": [ { "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2020-12-31", - "completed": "2023-04-20", - "initiated": "2023-01-20", - "ministryContact": "RIPPIN MORTIMER", + "createdAt": "2015-10-13", + "completed": "2017-01-26", + "initiated": "2018-07-22", + "ministryContact": "CRONIN JOSH", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -1117,13 +1540,13 @@ "notationParticipants": [ { "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false + "role": "REQUESTED BY", + "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", @@ -1136,34 +1559,9 @@ "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - } - ], - "siteRegistry": true - }, - { - "createdAt": "2016-02-10", - "completed": "2014-05-20", - "initiated": "2013-12-09", - "ministryContact": "KING SYDNEE", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false } ], "siteRegistry": true @@ -1171,9 +1569,9 @@ ], "participants": [ { - "name": "IPSUM", - "endDate": "2022-01-03", - "startDate": "2014-04-23", + "name": "AMET, DOLOR SIT", + "endDate": "2014-08-31", + "startDate": "2020-05-26", "notes": "", "roles": [ "EMPLOYEE" @@ -1181,29 +1579,29 @@ "siteRegistry": false }, { - "name": "IPSUM", - "endDate": "2014-02-13", - "startDate": "2019-01-05", + "name": "AMET, DOLOR SIT", + "endDate": "2023-03-08", + "startDate": "2018-03-05", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2017-01-16", - "startDate": "2013-12-16", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2015-11-05", + "startDate": "2021-09-01", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2018-06-25", - "startDate": "2017-09-29", + "name": "IPSUM", + "endDate": "2017-06-13", + "startDate": "2015-10-23", "notes": "", "roles": [ "ORGANIZATION" @@ -1211,58 +1609,177 @@ "siteRegistry": false }, { - "name": "AMET, DOLOR SIT", - "endDate": "2018-05-01", - "startDate": "2018-09-28", + "name": "IPSUM", + "endDate": "2023-01-06", + "startDate": "2019-09-13", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": false } ], + "suspectLandUses": [ + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2017-12-21 (described on Site Profile dated 2017-12-21)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2020-02-25 (described on Site Profile dated 2020-02-25)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2023-09-14 (described on Site Profile dated 2023-09-14)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + } + ], + "siteDisclosures": [ + { + "siteRegistry": false, + "dateReceived": "2017-06-21", + "dateCompleted": "2021-10-15", + "dateEntered": "2018-08-18", + "dateRegistrar": "2022-06-25", + "dateLocalAuthorityReceived": "2018-12-26", + "summary": "Incidunt temporibus et rerum.\nIllo consequatur corporis officia perferendis ducimus voluptates autem.", + "informationUsed": "Excepturi accusamus delectus.\nPerspiciatis exercitationem id.\nNon iste quae mollitia distinctio odio repellat pariatur laboriosam.\nEa est sapiente.", + "pastOrPresentOrders": "Placeat illo molestias maxime ea.\nMolestias magni totam ex aliquid.\nMolestiae ipsam eum totam nesciunt est porro.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + } + ] + }, + { + "siteRegistry": true, + "dateReceived": "2016-09-21", + "dateCompleted": "2019-06-10", + "dateEntered": "2023-09-29", + "dateRegistrar": "2014-10-13", + "dateLocalAuthorityReceived": "2016-07-04", + "summary": "Earum quae voluptate aliquam maxime aliquid libero necessitatibus perspiciatis.\nEum rem itaque quod tempore beatae reprehenderit modi voluptatum repellat.\nSapiente repellendus vel earum sed fugit fugit.", + "informationUsed": "Nulla iste suscipit quaerat.\nQuos eum accusantium ipsa aspernatur corporis minus.\nAssumenda quisquam veniam molestiae id dolor.", + "pastOrPresentOrders": "Ab laborum ad dignissimos nihil voluptatibus molestias molestias saepe perferendis.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + } + ] + } + ], + "activityLog": [ + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "ROGAHN WALKER", + "timestamp": "2014-12-06" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "RUNOLFSDOTTIR MAUREEN", + "timestamp": "2016-11-21" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "WALTER TERRY", + "timestamp": "2017-11-22" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "LEHNER DEON", + "timestamp": "2018-08-02" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "KING-MERTZ MISAEL", + "timestamp": "2023-02-01" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "KOVACEK BROOKE", + "timestamp": "2021-02-23" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "GREENFELDER GARNETT", + "timestamp": "2017-05-17" + } + ], "associatedSites": [ { - "dateNoted": "2016-03-06", + "dateNoted": "2017-03-06", "notes": "", - "parcelID": "19084", - "siteID": "18497", - "siteRegistry": true + "parcelID": "20692", + "siteID": "20921", + "siteRegistry": false }, { - "dateNoted": "2021-05-16", + "dateNoted": "2021-01-19", "notes": "", - "parcelID": "15553", - "siteID": "17237", + "parcelID": "18162", + "siteID": "16758", "siteRegistry": true } ] }, { - "uuid": "33a07bb8-ab02-4e19-8555-4741f195e715", - "siteID": 15361, - "address": "5152 Jana Courts", - "latitude": 54.2664, - "longitude": -135.6604, - "lastUpdated": "2015-08-26", - "city": "Redding", - "region": "Kootenay", - "victoriaFile": "26250-20/5707", + "uuid": "ed352618-5ff5-4275-82e8-5acea66e8a53", + "siteID": 20586, + "address": "80706 Elian Street", + "latitude": 52.9563, + "longitude": -133.2998, + "lastUpdated": "2015-02-14", + "city": "Corkeryhaven", + "region": "Mainland/Southwest", + "victoriaFile": "26250-20/4428", "regionalFile": "N/A", "parcelIDs": [ - 4622503, - 5630788, - 8441620, - 7447192, - 9958769 + 6571803, + 9407281, + 1193554, + 4535129, + 9503173 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2016-02-19", - "completed": "2018-01-21", - "initiated": "2015-03-10", - "ministryContact": "MAGGIO DOYLE", + "createdAt": "2017-09-25", + "completed": "2023-07-22", + "initiated": "2018-02-19", + "ministryContact": "MAYERT KATARINA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -1270,24 +1787,39 @@ "" ], "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2021-11-15", - "completed": "2017-01-02", - "initiated": "2016-08-04", - "ministryContact": "BREITENBERG BELL", + "createdAt": "2022-12-04", + "completed": "2016-03-06", + "initiated": "2019-03-25", + "ministryContact": "LINDGREN FREDDIE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -1295,21 +1827,6 @@ "" ], "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", @@ -1321,13 +1838,13 @@ "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2018-01-31", - "completed": "2023-05-06", - "initiated": "2015-01-13", - "ministryContact": "BODE GILDA", + "createdAt": "2019-04-07", + "completed": "2023-08-08", + "initiated": "2020-09-14", + "ministryContact": "FEEST THERESE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -1337,160 +1854,232 @@ "notationParticipants": [ { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true } ], "siteRegistry": false + } + ], + "participants": [ + { + "name": "AMET, DOLOR SIT", + "endDate": "2018-06-09", + "startDate": "2017-12-12", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false }, { - "createdAt": "2023-05-30", - "completed": "2022-07-27", - "initiated": "2022-01-14", - "ministryContact": "WEISSNAT ADOLF", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2017-08-01", + "startDate": "2013-11-21", + "notes": "", + "roles": [ + "ORGANIZATION" ], - "notationParticipants": [ + "siteRegistry": false + } + ], + "suspectLandUses": [ + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2018-12-03 (described on Site Profile dated 2018-12-03)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2017-01-10 (described on Site Profile dated 2017-01-10)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2022-03-22 (described on Site Profile dated 2022-03-22)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2014-06-06 (described on Site Profile dated 2014-06-06)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2017-07-21 (described on Site Profile dated 2017-07-21)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + } + ], + "siteDisclosures": [ + { + "siteRegistry": true, + "dateReceived": "2021-04-14", + "dateCompleted": "2016-01-10", + "dateEntered": "2016-03-25", + "dateRegistrar": "2016-03-30", + "dateLocalAuthorityReceived": "2022-02-19", + "summary": "Impedit ut odio in harum provident nihil autem repudiandae labore.\nReiciendis eum nisi debitis.\nAccusamus quidem blanditiis iste omnis.", + "informationUsed": "Dolor totam deleniti tempore.\nCorrupti odit error.\nQuia repellendus inventore.\nPlaceat deserunt tempore beatae perferendis nam nulla praesentium.\nPlaceat sequi rerum inventore explicabo itaque nihil ea quas.", + "pastOrPresentOrders": "Tenetur corporis temporibus velit debitis nihil minus nobis.\nSimilique in iste voluptatibus qui ipsum blanditiis repellat.\nNumquam autem molestiae necessitatibus explicabo repellendus similique veritatis similique.", + "commercialAndIndustrialPurposes": [ { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true } - ], - "siteRegistry": false + ] }, { - "createdAt": "2016-03-07", - "completed": "2015-08-19", - "initiated": "2021-07-25", - "ministryContact": "WOLF COY", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ + "siteRegistry": false, + "dateReceived": "2013-11-02", + "dateCompleted": "2017-01-17", + "dateEntered": "2019-10-28", + "dateRegistrar": "2015-11-14", + "dateLocalAuthorityReceived": "2018-01-28", + "summary": "Aliquam id fugit omnis laboriosam placeat.\nIure iste voluptate.", + "informationUsed": "Aperiam repudiandae voluptas dignissimos inventore quaerat quisquam blanditiis repudiandae.\nNatus nobis repellat ad sequi nesciunt id.\nIusto provident tempora.\nDoloremque nam quam vel aliquid.", + "pastOrPresentOrders": "Aut ex id suscipit.", + "commercialAndIndustrialPurposes": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true } - ], - "siteRegistry": false + ] } ], - "participants": [ + "activityLog": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2021-11-28", - "startDate": "2015-09-12", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": false + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "ADAMS IMANI", + "timestamp": "2018-04-04" }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2017-03-23", - "startDate": "2019-11-13", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": false + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "ROGAHN DOLORES", + "timestamp": "2017-04-05" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "FRAMI EVE", + "timestamp": "2017-06-08" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "QUITZON CIELO", + "timestamp": "2019-05-13" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "POWLOWSKI ASHTYN", + "timestamp": "2015-02-24" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "GUTMANN ROGERS", + "timestamp": "2014-01-12" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "BOYLE TREMAINE", + "timestamp": "2018-08-22" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "REICHERT ANIKA", + "timestamp": "2022-07-07" } ], "associatedSites": [ { - "dateNoted": "2017-06-27", + "dateNoted": "2014-06-20", "notes": "", - "parcelID": "20888", - "siteID": "15784", + "parcelID": "18657", + "siteID": "18231", "siteRegistry": false + }, + { + "dateNoted": "2022-02-22", + "notes": "", + "parcelID": "16914", + "siteID": "20194", + "siteRegistry": true } ] }, { - "uuid": "8ac095cb-e831-49f8-b8f4-acb48a8900d3", - "siteID": 16312, - "address": "8008 Gerlach Junction", - "latitude": 50.6082, - "longitude": -125.874, - "lastUpdated": "2022-01-31", - "city": "Veumworth", + "uuid": "008300bb-1a18-49a8-a908-db40565d897c", + "siteID": 18030, + "address": "599 Huel Row", + "latitude": 48.1842, + "longitude": -125.2429, + "lastUpdated": "2023-09-05", + "city": "West Helene", "region": "Mainland/Southwest", - "victoriaFile": "26250-20/1062", + "victoriaFile": "26250-20/2380", "regionalFile": "N/A", "parcelIDs": [ - 9193439, - 8066853, - 3032864, - 4702520, - 3891877 + 7405030, + 6916312, + 8231166, + 2298568, + 6731343 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2022-02-11", - "completed": "2017-11-10", - "initiated": "2022-12-05", - "ministryContact": "CONNELLY-CREMIN DEANGELO", + "createdAt": "2020-09-25", + "completed": "2020-07-26", + "initiated": "2015-11-14", + "ministryContact": "LANG DONNA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -1498,34 +2087,24 @@ "" ], "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2017-01-17", - "completed": "2015-07-19", - "initiated": "2017-02-02", - "ministryContact": "GISLASON BUSTER", + "createdAt": "2021-12-13", + "completed": "2014-02-13", + "initiated": "2015-04-16", + "ministryContact": "LAKIN KALEY", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -1533,35 +2112,50 @@ "" ], "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true } ], "participants": [ { - "name": "IPSUM", - "endDate": "2021-10-17", - "startDate": "2019-03-31", + "name": "AMET, DOLOR SIT", + "endDate": "2022-04-03", + "startDate": "2020-05-17", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], - "siteRegistry": true + "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2015-01-18", - "startDate": "2019-05-14", + "name": "IPSUM", + "endDate": "2017-04-04", + "startDate": "2015-11-27", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2014-08-10", + "startDate": "2015-05-24", "notes": "", "roles": [ "EMPLOYEE" @@ -1570,64 +2164,155 @@ }, { "name": "IPSUM", - "endDate": "2017-04-01", - "startDate": "2020-04-05", + "endDate": "2016-06-08", + "startDate": "2016-11-02", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], - "siteRegistry": false + "siteRegistry": true + } + ], + "suspectLandUses": [ + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2022-05-19 (described on Site Profile dated 2022-05-19)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2018-09-10 (described on Site Profile dated 2018-09-10)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2021-03-21 (described on Site Profile dated 2021-03-21)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2023-02-26 (described on Site Profile dated 2023-02-26)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + } + ], + "siteDisclosures": [ + { + "siteRegistry": true, + "dateReceived": "2020-12-25", + "dateCompleted": "2020-04-21", + "dateEntered": "2020-07-25", + "dateRegistrar": "2015-08-21", + "dateLocalAuthorityReceived": "2017-11-08", + "summary": "Corporis corporis illo odio et provident odio iusto atque.", + "informationUsed": "Voluptas incidunt ea sed ab atque totam saepe.\nSed explicabo accusamus iure consequuntur maiores natus.\nNostrum cupiditate beatae reiciendis autem illo.", + "pastOrPresentOrders": "Asperiores qui enim iusto aperiam omnis soluta recusandae ea.\nRecusandae explicabo quia cum atque quam.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + } + ] + } + ], + "activityLog": [ + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "BOYLE-WIEGAND NATHANAEL", + "timestamp": "2018-01-13" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "RODRIGUEZ BO", + "timestamp": "2014-05-12" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "HACKETT ROSALINDA", + "timestamp": "2017-06-28" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "DICKINSON PATIENCE", + "timestamp": "2020-10-16" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "BOGISICH LURA", + "timestamp": "2014-07-11" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "BRAKUS ODESSA", + "timestamp": "2021-03-15" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "ABBOTT REBECA", + "timestamp": "2020-01-10" } ], "associatedSites": [ { - "dateNoted": "2020-04-18", + "dateNoted": "2017-09-20", "notes": "", - "parcelID": "18436", - "siteID": "19457", + "parcelID": "17392", + "siteID": "18625", "siteRegistry": true }, { - "dateNoted": "2016-06-30", + "dateNoted": "2017-09-10", "notes": "", - "parcelID": "20906", - "siteID": "16487", + "parcelID": "20067", + "siteID": "17118", "siteRegistry": false }, { - "dateNoted": "2021-11-27", + "dateNoted": "2019-12-13", "notes": "", - "parcelID": "19892", - "siteID": "15513", - "siteRegistry": true + "parcelID": "15727", + "siteID": "16617", + "siteRegistry": false } ] }, { - "uuid": "48ff888b-fde1-4c57-b1d8-41e1a7ef80b9", - "siteID": 15704, - "address": "253 Pagac Fall", - "latitude": 48.0323, - "longitude": -119.5559, - "lastUpdated": "2019-10-26", - "city": "North Bryonfurt", + "uuid": "d4dcbbcb-ac00-4bf0-a574-771c9e87da79", + "siteID": 20137, + "address": "9252 Macejkovic Keys", + "latitude": 58.3638, + "longitude": -132.3258, + "lastUpdated": "2022-05-11", + "city": "Percivalland", "region": "Kootenay", - "victoriaFile": "26250-20/14980", + "victoriaFile": "26250-20/8491", "regionalFile": "N/A", "parcelIDs": [ - 5563997, - 4959994, - 7611903, - 9570744, - 8955213 + 7569109, + 8849010, + 8235364, + 5970263, + 847909 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2019-11-22", - "completed": "2019-06-05", - "initiated": "2019-03-30", - "ministryContact": "RITCHIE MARJOLAINE", + "createdAt": "2020-03-13", + "completed": "2019-10-25", + "initiated": "2019-06-30", + "ministryContact": "BOTSFORD GUS", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -1636,14 +2321,14 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true + "role": "SUBMITTED BY", + "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", @@ -1651,13 +2336,13 @@ "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2019-06-25", - "completed": "2017-12-27", - "initiated": "2019-06-22", - "ministryContact": "GLEICHNER KAREEM", + "createdAt": "2016-09-25", + "completed": "2020-11-06", + "initiated": "2022-01-28", + "ministryContact": "O'HARA JOEL", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -1673,7 +2358,7 @@ { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", @@ -1681,9 +2366,9 @@ "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true } ], "siteRegistry": true @@ -1691,85 +2376,186 @@ ], "participants": [ { - "name": "AMET, DOLOR SIT", - "endDate": "2015-11-30", - "startDate": "2013-11-30", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2015-05-27", + "startDate": "2020-09-09", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2014-09-02", - "startDate": "2016-05-14", + "name": "AMET, DOLOR SIT", + "endDate": "2019-03-04", + "startDate": "2016-05-27", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2020-05-06", - "startDate": "2017-06-16", + "endDate": "2019-12-15", + "startDate": "2016-01-18", "notes": "", "roles": [ "ORGANIZATION" ], "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2017-06-10", + "startDate": "2021-05-03", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + } + ], + "suspectLandUses": [ + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2016-08-12 (described on Site Profile dated 2016-08-12)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2014-07-01 (described on Site Profile dated 2014-07-01)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2022-08-09 (described on Site Profile dated 2022-08-09)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2014-03-25 (described on Site Profile dated 2014-03-25)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + } + ], + "siteDisclosures": [ + { + "siteRegistry": true, + "dateReceived": "2018-12-07", + "dateCompleted": "2014-07-04", + "dateEntered": "2017-08-19", + "dateRegistrar": "2021-02-18", + "dateLocalAuthorityReceived": "2014-10-28", + "summary": "Asperiores nesciunt aspernatur.\nExpedita illo voluptate quae laborum ut laudantium et atque laudantium.\nRepellat fugit veniam magnam.", + "informationUsed": "Voluptas eius saepe soluta impedit quaerat accusamus.\nError explicabo sapiente quas sint tenetur non ab repellat culpa.\nAspernatur dolore quibusdam animi corporis totam autem inventore nihil velit.\nDeleniti fugiat et libero earum debitis error accusantium.\nId deserunt ducimus dolorem quisquam.", + "pastOrPresentOrders": "Laborum eum et reprehenderit vel qui quaerat ex reprehenderit.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + } + ] + } + ], + "activityLog": [ + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "SANFORD EWELL", + "timestamp": "2014-03-21" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "BARTOLETTI ARNO", + "timestamp": "2023-03-19" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "FAHEY MODESTO", + "timestamp": "2017-01-26" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "STARK TESS", + "timestamp": "2022-01-23" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "WEHNER KHALID", + "timestamp": "2017-02-08" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "HALEY KIP", + "timestamp": "2015-06-09" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "HICKLE ADRIEN", + "timestamp": "2016-05-26" } ], "associatedSites": [ { - "dateNoted": "2020-03-05", + "dateNoted": "2016-11-21", "notes": "", - "parcelID": "16990", - "siteID": "17322", + "parcelID": "18225", + "siteID": "17309", "siteRegistry": false }, { - "dateNoted": "2016-05-26", + "dateNoted": "2016-11-05", "notes": "", - "parcelID": "16553", - "siteID": "18319", + "parcelID": "19007", + "siteID": "16922", "siteRegistry": true }, { - "dateNoted": "2016-02-23", + "dateNoted": "2020-06-29", "notes": "", - "parcelID": "18790", - "siteID": "19777", + "parcelID": "17098", + "siteID": "19077", "siteRegistry": false } ] }, { - "uuid": "16f113f3-f04b-47cc-8954-e9a770d4b845", - "siteID": 20906, - "address": "8538 Monahan Rest", - "latitude": 56.7973, - "longitude": -119.7269, - "lastUpdated": "2023-04-19", - "city": "Robeltown", - "region": "Thompson-Okanagan", - "victoriaFile": "26250-20/17012", + "uuid": "36e735d7-ffb5-4e79-946c-38b244544916", + "siteID": 20966, + "address": "44306 Kyleigh Lights", + "latitude": 55.6286, + "longitude": -138.7257, + "lastUpdated": "2023-03-19", + "city": "North Arch", + "region": "Cariboo", + "victoriaFile": "26250-20/10722", "regionalFile": "N/A", "parcelIDs": [ - 9496457, - 9643662, - 3665272, - 9101769, - 2168183 + 7394751, + 7005625, + 8699872, + 181921, + 4496057 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2014-05-18", - "completed": "2015-06-22", - "initiated": "2014-08-29", - "ministryContact": "BECKER GAETANO", + "createdAt": "2015-08-20", + "completed": "2023-04-03", + "initiated": "2019-03-31", + "ministryContact": "MULLER MORTON", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -1777,6 +2563,11 @@ "" ], "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", @@ -1785,16 +2576,21 @@ { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false } ], "siteRegistry": true }, { - "createdAt": "2021-03-21", - "completed": "2022-07-16", - "initiated": "2017-09-19", - "ministryContact": "OKUNEVA KIRSTIN", + "createdAt": "2018-01-24", + "completed": "2014-09-17", + "initiated": "2022-01-24", + "ministryContact": "SCHULIST BRYCE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -1802,94 +2598,34 @@ "" ], "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true } ], "siteRegistry": false - } - ], - "participants": [ - { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2016-06-16", - "startDate": "2021-07-07", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": true - }, - { - "name": "IPSUM", - "endDate": "2020-06-12", - "startDate": "2015-06-14", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": false - }, - { - "name": "IPSUM", - "endDate": "2018-08-29", - "startDate": "2014-10-28", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": true - } - ], - "associatedSites": [ - { - "dateNoted": "2020-04-12", - "notes": "", - "parcelID": "19343", - "siteID": "19773", - "siteRegistry": true }, { - "dateNoted": "2013-12-03", - "notes": "", - "parcelID": "15593", - "siteID": "16025", - "siteRegistry": false - } - ] - }, - { - "uuid": "d59b3dbf-17f6-4d1b-a434-6e220bc70361", - "siteID": 20833, - "address": "5819 Emmalee Crest", - "latitude": 53.9487, - "longitude": -136.5663, - "lastUpdated": "2017-11-06", - "city": "Fort Kaylaview", - "region": "Mainland/Southwest", - "victoriaFile": "26250-20/6285", - "regionalFile": "N/A", - "parcelIDs": [ - 5903544, - 2910198, - 9526907, - 7637082, - 4100828 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2014-07-27", - "completed": "2014-09-13", - "initiated": "2023-09-14", - "ministryContact": "KUNZE HUMBERTO", + "createdAt": "2016-05-12", + "completed": "2013-12-19", + "initiated": "2013-10-20", + "ministryContact": "SCHOEN ELEAZAR", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -1899,8 +2635,8 @@ "notationParticipants": [ { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false + "role": "REQUESTED BY", + "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", @@ -1908,23 +2644,23 @@ "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2021-05-08", - "completed": "2014-05-14", - "initiated": "2014-05-02", - "ministryContact": "SCHAMBERGER CHET", + "createdAt": "2019-08-06", + "completed": "2017-04-24", + "initiated": "2014-06-03", + "ministryContact": "LEGROS QUINN", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -1933,13 +2669,13 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": false } ], @@ -1948,29 +2684,19 @@ ], "participants": [ { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2019-01-18", - "startDate": "2021-06-17", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": true - }, - { - "name": "AMET, DOLOR SIT", - "endDate": "2017-10-07", - "startDate": "2019-04-13", + "name": "IPSUM", + "endDate": "2022-03-16", + "startDate": "2020-04-30", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false }, { "name": "IPSUM", - "endDate": "2017-07-23", - "startDate": "2020-04-22", + "endDate": "2016-04-11", + "startDate": "2021-05-31", "notes": "", "roles": [ "EMPLOYEE" @@ -1978,180 +2704,176 @@ "siteRegistry": false } ], - "associatedSites": [ + "suspectLandUses": [ { - "dateNoted": "2017-05-21", - "notes": "", - "parcelID": "20930", - "siteID": "20407", - "siteRegistry": true + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2021-07-10 (described on Site Profile dated 2021-07-10)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "dateNoted": "2016-10-28", - "notes": "", - "parcelID": "15251", - "siteID": "16118", - "siteRegistry": false + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2021-12-02 (described on Site Profile dated 2021-12-02)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "dateNoted": "2023-03-21", - "notes": "", - "parcelID": "15243", - "siteID": "16358", - "siteRegistry": false + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2018-04-20 (described on Site Profile dated 2018-04-20)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2023-04-27 (described on Site Profile dated 2023-04-27)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } - ] - }, - { - "uuid": "a7033efb-a59f-42f4-b2bc-0d66edd0326a", - "siteID": 20865, - "address": "7392 Kamron Parkways", - "latitude": 56.6185, - "longitude": -133.1699, - "lastUpdated": "2014-08-04", - "city": "New Corabury", - "region": "Cariboo", - "victoriaFile": "26250-20/964", - "regionalFile": "N/A", - "parcelIDs": [ - 3395713, - 588192, - 327047, - 1637653, - 6518812 ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ + "siteDisclosures": [ { - "createdAt": "2022-11-08", - "completed": "2017-04-08", - "initiated": "2020-11-14", - "ministryContact": "WISOKY ESTELLA", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, + "siteRegistry": false, + "dateReceived": "2023-06-13", + "dateCompleted": "2014-10-14", + "dateEntered": "2020-02-27", + "dateRegistrar": "2014-08-16", + "dateLocalAuthorityReceived": "2017-11-20", + "summary": "Aperiam distinctio nihil aperiam.\nDucimus quo illo delectus autem suscipit repellat sapiente dolores.\nVoluptate qui ex reiciendis.", + "informationUsed": "Aliquam cupiditate dicta tenetur vitae perferendis similique ducimus necessitatibus esse.\nMinima molestiae necessitatibus aliquam sed inventore fuga molestiae ipsum nam.\nFugit doloribus inventore quia sunt suscipit.", + "pastOrPresentOrders": "Repellat laudantium ipsa dolore dolorem.", + "commercialAndIndustrialPurposes": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false } - ], - "siteRegistry": false + ] }, { - "createdAt": "2021-03-19", - "completed": "2022-06-30", - "initiated": "2018-05-24", - "ministryContact": "METZ AMIE", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ + "siteRegistry": false, + "dateReceived": "2019-11-29", + "dateCompleted": "2016-05-21", + "dateEntered": "2017-10-25", + "dateRegistrar": "2020-04-08", + "dateLocalAuthorityReceived": "2015-01-31", + "summary": "Quidem labore exercitationem placeat.\nMollitia maiores quidem veniam ea.\nEum officiis repellendus nesciunt suscipit asperiores labore tenetur.", + "informationUsed": "Fugit ex omnis minima ipsum aspernatur doloremque.\nIpsam dicta illo impedit pariatur a fuga.\nSoluta alias blanditiis nulla ex.\nMagni natus adipisci.", + "pastOrPresentOrders": "Necessitatibus harum ullam harum tempore.", + "commercialAndIndustrialPurposes": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false } - ], - "siteRegistry": false + ] } ], - "participants": [ + "activityLog": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2016-04-26", - "startDate": "2013-10-24", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": false + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "MARVIN MERLE", + "timestamp": "2017-07-11" }, { - "name": "IPSUM", - "endDate": "2020-03-01", - "startDate": "2023-01-24", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": true + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "JOHNSON JOELLE", + "timestamp": "2014-05-22" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "KUTCH PAYTON", + "timestamp": "2017-03-14" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "KLOCKO DEVEN", + "timestamp": "2015-10-28" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "HERMANN CORTEZ", + "timestamp": "2018-06-10" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "MONAHAN KENNETH", + "timestamp": "2017-04-25" } ], "associatedSites": [ { - "dateNoted": "2015-02-05", + "dateNoted": "2016-06-21", "notes": "", - "parcelID": "19844", - "siteID": "18528", + "parcelID": "20914", + "siteID": "16563", "siteRegistry": true }, { - "dateNoted": "2021-06-05", + "dateNoted": "2021-05-26", "notes": "", - "parcelID": "16150", - "siteID": "15543", - "siteRegistry": false + "parcelID": "19028", + "siteID": "17854", + "siteRegistry": true } ] }, { - "uuid": "bb1749cd-6350-4e81-a11a-13fa390dc4a5", - "siteID": 15229, - "address": "5815 Bednar Crossing", - "latitude": 48.6774, - "longitude": -133.6719, - "lastUpdated": "2015-04-10", - "city": "Reichertview", - "region": "Cariboo", - "victoriaFile": "26250-20/18792", + "uuid": "9b671d4a-5e24-4cef-bb57-a533aefbce3e", + "siteID": 15332, + "address": "688 Steve Gateway", + "latitude": 58.5261, + "longitude": -119.6432, + "lastUpdated": "2023-08-01", + "city": "North Cyriltown", + "region": "Vancouver Island/Coast", + "victoriaFile": "26250-20/18450", "regionalFile": "N/A", "parcelIDs": [ - 8046405, - 8575670, - 5790812, - 9146060, - 6438717 + 1606558, + 2170649, + 8803831, + 522279, + 5506920 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2015-02-27", - "completed": "2016-04-04", - "initiated": "2023-08-06", - "ministryContact": "WHITE ALEXANDRINE", + "createdAt": "2016-04-28", + "completed": "2023-01-30", + "initiated": "2017-11-04", + "ministryContact": "SANFORD SONIA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -2160,14 +2882,14 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", @@ -2175,18 +2897,18 @@ "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true } ], "siteRegistry": true }, { - "createdAt": "2021-07-31", - "completed": "2019-12-01", - "initiated": "2014-10-14", - "ministryContact": "KOHLER URBAN", + "createdAt": "2017-07-30", + "completed": "2016-04-23", + "initiated": "2021-08-10", + "ministryContact": "JOHNS DARLENE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -2201,8 +2923,18 @@ }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false } ], "siteRegistry": false @@ -2210,9 +2942,9 @@ ], "participants": [ { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2016-10-03", - "startDate": "2016-09-09", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2016-01-25", + "startDate": "2020-09-05", "notes": "", "roles": [ "ORGANIZATION" @@ -2220,9 +2952,9 @@ "siteRegistry": true }, { - "name": "AMET, DOLOR SIT", - "endDate": "2018-02-10", - "startDate": "2016-11-13", + "name": "IPSUM", + "endDate": "2017-10-12", + "startDate": "2016-03-13", "notes": "", "roles": [ "ORGANIZATION" @@ -2231,18 +2963,18 @@ }, { "name": "IPSUM", - "endDate": "2018-07-12", - "startDate": "2022-09-16", + "endDate": "2022-12-04", + "startDate": "2018-07-10", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": false + "siteRegistry": true }, { - "name": "AMET, DOLOR SIT", - "endDate": "2014-11-26", - "startDate": "2016-08-29", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2018-02-08", + "startDate": "2014-08-20", "notes": "", "roles": [ "EMPLOYEE" @@ -2250,51 +2982,147 @@ "siteRegistry": true }, { - "name": "AMET, DOLOR SIT", - "endDate": "2014-02-19", - "startDate": "2020-04-03", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2015-03-25", + "startDate": "2021-06-28", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": true } ], + "suspectLandUses": [ + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2022-08-01 (described on Site Profile dated 2022-08-01)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2017-10-03 (described on Site Profile dated 2017-10-03)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2017-04-15 (described on Site Profile dated 2017-04-15)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2020-12-16 (described on Site Profile dated 2020-12-16)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + } + ], + "siteDisclosures": [ + { + "siteRegistry": true, + "dateReceived": "2017-07-01", + "dateCompleted": "2019-02-25", + "dateEntered": "2014-08-24", + "dateRegistrar": "2021-10-29", + "dateLocalAuthorityReceived": "2017-10-07", + "summary": "Nemo ab ducimus porro quibusdam perspiciatis.\nIpsa tenetur dolor iure vitae at enim.", + "informationUsed": "Alias perferendis aperiam culpa.\nIpsum placeat aliquam accusantium dolorum.\nEveniet assumenda quis aliquid dignissimos repellat in ipsa.\nFugit mollitia tempora quidem odit consequatur.\nMaxime fuga omnis quibusdam mollitia.", + "pastOrPresentOrders": "Repellat quod id explicabo error a voluptatum.\nDebitis asperiores non.\nAmet earum quaerat dolore similique dicta ratione cum labore quia.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + } + ] + } + ], + "activityLog": [ + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "TREUTEL CONSTANCE", + "timestamp": "2015-02-15" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "GUTMANN JEWELL", + "timestamp": "2017-05-03" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "LEDNER MARTIN", + "timestamp": "2018-04-08" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "DENESIK KOREY", + "timestamp": "2015-04-28" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "RIPPIN-OSINSKI BERNIECE", + "timestamp": "2019-04-25" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "BOTSFORD ISABELLE", + "timestamp": "2018-12-01" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "SCHMIDT MARGIE", + "timestamp": "2014-01-01" + } + ], "associatedSites": [ { - "dateNoted": "2018-08-07", + "dateNoted": "2017-10-22", "notes": "", - "parcelID": "19850", - "siteID": "18838", + "parcelID": "15576", + "siteID": "18243", "siteRegistry": true } ] }, { - "uuid": "7780d1eb-faec-4533-9a39-cbc1d5782ade", - "siteID": 18150, - "address": "18723 Okuneva Drive", - "latitude": 55.0453, - "longitude": -127.6661, - "lastUpdated": "2015-01-17", - "city": "Fort Estelle", - "region": "Thompson-Okanagan", - "victoriaFile": "26250-20/9191", + "uuid": "efa91a88-fb19-4364-85b4-2422cbe615ba", + "siteID": 15785, + "address": "749 Cassin Circle", + "latitude": 51.6024, + "longitude": -124.0052, + "lastUpdated": "2016-11-10", + "city": "Guillermochester", + "region": " North Coast", + "victoriaFile": "26250-20/12496", "regionalFile": "N/A", "parcelIDs": [ - 3175295, - 2996023, - 9404632, - 7481000, - 9170989 + 728795, + 5711933, + 9233991, + 496196, + 1310909 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2020-12-16", - "completed": "2014-10-15", - "initiated": "2016-07-16", - "ministryContact": "SCHMIDT BRUCE", + "createdAt": "2021-03-04", + "completed": "2016-02-26", + "initiated": "2019-02-28", + "ministryContact": "WOLF VERNA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -2303,8 +3131,8 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": true }, { @@ -2313,42 +3141,17 @@ "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - } - ], - "siteRegistry": true - }, - { - "createdAt": "2018-02-15", - "completed": "2018-05-06", - "initiated": "2023-05-22", - "ministryContact": "CREMIN NORENE", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true } @@ -2356,10 +3159,10 @@ "siteRegistry": true }, { - "createdAt": "2017-10-25", - "completed": "2021-02-12", - "initiated": "2021-04-18", - "ministryContact": "HAUCK JODIE", + "createdAt": "2018-06-27", + "completed": "2020-08-01", + "initiated": "2018-11-04", + "ministryContact": "SCHOWALTER KARINE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -2368,23 +3171,13 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": true }, { @@ -2394,107 +3187,211 @@ } ], "siteRegistry": true - }, - { - "createdAt": "2014-02-27", - "completed": "2023-02-06", - "initiated": "2017-04-11", - "ministryContact": "STEHR MAVIS", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - } - ], - "siteRegistry": false } ], "participants": [ { "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2018-08-03", - "startDate": "2016-11-25", + "endDate": "2021-03-01", + "startDate": "2023-08-02", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2018-10-15", - "startDate": "2018-04-11", + "endDate": "2019-07-06", + "startDate": "2020-06-30", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": false + "siteRegistry": true }, { "name": "IPSUM", - "endDate": "2021-08-01", - "startDate": "2018-06-18", + "endDate": "2019-01-30", + "startDate": "2023-01-11", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false } ], - "associatedSites": [ + "suspectLandUses": [ { - "dateNoted": "2017-06-13", - "notes": "", - "parcelID": "20712", - "siteID": "15784", - "siteRegistry": false + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2016-05-09 (described on Site Profile dated 2016-05-09)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "dateNoted": "2022-10-13", - "notes": "", - "parcelID": "16464", - "siteID": "18373", - "siteRegistry": false + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2019-09-30 (described on Site Profile dated 2019-09-30)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2020-09-27 (described on Site Profile dated 2020-09-27)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2022-05-12 (described on Site Profile dated 2022-05-12)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } - ] - }, - { - "uuid": "a78db1c7-c177-48c3-9a47-36dc6188494d", - "siteID": 18587, - "address": "63752 Fernando Orchard", - "latitude": 48.8675, - "longitude": -119.9843, - "lastUpdated": "2021-07-23", - "city": "Wardborough", - "region": "Thompson-Okanagan", - "victoriaFile": "26250-20/11178", + ], + "siteDisclosures": [ + { + "siteRegistry": false, + "dateReceived": "2022-09-29", + "dateCompleted": "2022-03-08", + "dateEntered": "2021-03-19", + "dateRegistrar": "2014-03-19", + "dateLocalAuthorityReceived": "2019-08-24", + "summary": "Laudantium odit vero aspernatur ut rerum minima necessitatibus ipsum optio.\nCumque eligendi quam excepturi porro ipsa mollitia.\nSaepe nam expedita consequuntur voluptatum quibusdam.", + "informationUsed": "Porro quam nulla mollitia expedita consectetur.\nNemo deserunt expedita nisi beatae autem blanditiis.\nAutem quidem ducimus nulla cumque.\nDicta totam voluptates culpa totam dolorem.", + "pastOrPresentOrders": "Alias eos maxime optio rem.\nQuaerat vitae facilis nostrum qui sapiente.\nPossimus dignissimos officia beatae illum vero explicabo totam.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + } + ] + }, + { + "siteRegistry": false, + "dateReceived": "2023-07-31", + "dateCompleted": "2022-01-14", + "dateEntered": "2018-05-08", + "dateRegistrar": "2016-07-24", + "dateLocalAuthorityReceived": "2015-03-17", + "summary": "Ipsam blanditiis amet totam molestiae harum.", + "informationUsed": "Aliquid deleniti quia temporibus nobis saepe labore.\nQuisquam assumenda enim placeat repellendus deleniti quos necessitatibus consectetur.\nCum eveniet quidem quam ad animi asperiores expedita.", + "pastOrPresentOrders": "Assumenda atque cupiditate id.\nVelit rerum magni laboriosam.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + } + ] + } + ], + "activityLog": [ + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "KUNDE KOLE", + "timestamp": "2016-12-22" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "WILLMS SYLVAN", + "timestamp": "2015-09-28" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "HACKETT FLORENCIO", + "timestamp": "2019-08-27" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "GIBSON CHADD", + "timestamp": "2014-09-18" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "HILPERT EDNA", + "timestamp": "2015-10-01" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "BERGSTROM DESIREE", + "timestamp": "2014-12-15" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "BEATTY JERMAIN", + "timestamp": "2022-02-28" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "O'HARA BERTHA", + "timestamp": "2022-10-05" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "EBERT OREN", + "timestamp": "2014-06-07" + } + ], + "associatedSites": [ + { + "dateNoted": "2014-09-03", + "notes": "", + "parcelID": "20927", + "siteID": "15327", + "siteRegistry": false + } + ] + }, + { + "uuid": "67127747-e39e-44d6-be26-c2773f815f45", + "siteID": 17309, + "address": "3326 Hodkiewicz Passage", + "latitude": 48.9131, + "longitude": -135.1086, + "lastUpdated": "2020-01-16", + "city": "Nicholasburgh", + "region": "Thompson-Okanagan", + "victoriaFile": "26250-20/9651", "regionalFile": "N/A", "parcelIDs": [ - 7310508, - 4434882, - 2026222, - 9418999, - 592651 + 7604183, + 377692, + 1079044, + 730627, + 3840984 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2023-09-07", - "completed": "2016-11-03", - "initiated": "2021-10-02", - "ministryContact": "ZIEME CAMYLLE", + "createdAt": "2015-11-04", + "completed": "2015-08-09", + "initiated": "2022-12-07", + "ministryContact": "KEEBLER NORA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -2509,27 +3406,17 @@ }, { "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2019-04-07", - "completed": "2021-09-03", - "initiated": "2023-05-05", - "ministryContact": "WILDERMAN DAMIEN", + "createdAt": "2023-01-03", + "completed": "2019-02-08", + "initiated": "2016-12-21", + "ministryContact": "AUER ALEC", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -2537,39 +3424,24 @@ "" ], "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true } ], "siteRegistry": false }, { - "createdAt": "2021-09-02", - "completed": "2017-02-26", - "initiated": "2016-10-16", - "ministryContact": "CHRISTIANSEN HIRAM", + "createdAt": "2020-09-30", + "completed": "2017-01-06", + "initiated": "2022-07-19", + "ministryContact": "MANTE JAIRO", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -2579,32 +3451,37 @@ "notationParticipants": [ { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2023-02-02", - "completed": "2017-05-03", - "initiated": "2023-08-13", - "ministryContact": "CARTER LAURIANNE", + "createdAt": "2016-08-18", + "completed": "2021-12-22", + "initiated": "2019-06-01", + "ministryContact": "BECKER WARREN", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -2612,15 +3489,15 @@ "" ], "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", @@ -2628,18 +3505,18 @@ "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false } ], "siteRegistry": false }, { - "createdAt": "2021-08-04", - "completed": "2018-05-23", - "initiated": "2021-02-04", - "ministryContact": "BERGNAUM KYLER", + "createdAt": "2017-02-23", + "completed": "2016-08-15", + "initiated": "2014-09-17", + "ministryContact": "PAGAC ANGELINE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -2647,13 +3524,23 @@ "" ], "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false } @@ -2664,8 +3551,8 @@ "participants": [ { "name": "SHELL CANADA PRODUCTS", - "endDate": "2014-11-14", - "startDate": "2014-09-11", + "endDate": "2020-01-09", + "startDate": "2022-06-25", "notes": "", "roles": [ "ORGANIZATION" @@ -2673,81 +3560,211 @@ "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2017-05-22", - "startDate": "2021-11-03", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2014-09-18", + "startDate": "2016-02-18", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", - "endDate": "2020-01-21", - "startDate": "2015-11-14", + "endDate": "2015-05-28", + "startDate": "2023-06-02", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", - "endDate": "2014-12-08", - "startDate": "2015-03-08", + "endDate": "2023-06-07", + "startDate": "2014-09-21", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": false }, { - "name": "AMET, DOLOR SIT", - "endDate": "2021-05-12", - "startDate": "2014-08-17", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2018-01-29", + "startDate": "2022-10-30", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": false } ], + "suspectLandUses": [ + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2021-04-28 (described on Site Profile dated 2021-04-28)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2019-03-08 (described on Site Profile dated 2019-03-08)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2022-05-24 (described on Site Profile dated 2022-05-24)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2018-12-05 (described on Site Profile dated 2018-12-05)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2014-12-10 (described on Site Profile dated 2014-12-10)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + } + ], + "siteDisclosures": [ + { + "siteRegistry": true, + "dateReceived": "2023-04-23", + "dateCompleted": "2018-06-26", + "dateEntered": "2015-01-07", + "dateRegistrar": "2014-10-27", + "dateLocalAuthorityReceived": "2019-12-27", + "summary": "Perferendis vero hic aliquam voluptas aperiam autem aspernatur.\nAutem accusamus iusto quis excepturi fuga placeat dignissimos.\nAlias dicta at.", + "informationUsed": "Quis doloribus quidem recusandae quaerat dicta ab beatae ullam ut.\nMolestias repellendus repellat ducimus necessitatibus sed ad.\nTempore id voluptatum officiis aspernatur excepturi dolor amet nostrum libero.\nRepellendus modi a delectus.", + "pastOrPresentOrders": "Aperiam nemo tempore facilis non voluptas fugit nesciunt maxime.\nCumque deserunt adipisci non tempore.\nEos eligendi iusto quia.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + } + ] + }, + { + "siteRegistry": false, + "dateReceived": "2018-05-27", + "dateCompleted": "2013-12-12", + "dateEntered": "2020-05-17", + "dateRegistrar": "2023-05-08", + "dateLocalAuthorityReceived": "2016-02-21", + "summary": "Consequuntur vitae dolorum accusamus est.", + "informationUsed": "Nihil libero adipisci ad quasi quidem molestiae quis reprehenderit.\nUnde corrupti similique laboriosam dolorem quas sequi.\nQuidem ex nisi sequi fugiat delectus dolores ipsa.\nNemo provident maxime perferendis recusandae.", + "pastOrPresentOrders": "Consectetur eligendi vel dolorum doloremque rem repellendus nemo.\nQui suscipit alias fuga.\nQuo perferendis inventore sed id atque quas.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + } + ] + } + ], + "activityLog": [ + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "GUSIKOWSKI KAMRYN", + "timestamp": "2016-06-06" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "STRACKE CONNER", + "timestamp": "2015-11-16" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "QUIGLEY CASANDRA", + "timestamp": "2014-09-29" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "GERHOLD NEOMA", + "timestamp": "2023-02-27" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "HELLER-HANSEN LARRY", + "timestamp": "2021-03-15" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "TRANTOW MOZELLE", + "timestamp": "2015-06-06" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "LUBOWITZ SETH", + "timestamp": "2018-11-05" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "SCHMIDT CULLEN", + "timestamp": "2019-09-17" + } + ], "associatedSites": [ { - "dateNoted": "2014-06-29", + "dateNoted": "2014-05-09", "notes": "", - "parcelID": "19515", - "siteID": "18001", + "parcelID": "20158", + "siteID": "17805", "siteRegistry": true } ] }, { - "uuid": "74524e1f-e3e4-4379-9b2a-a39cedeb4f34", - "siteID": 17898, - "address": "52324 Hudson Crest", - "latitude": 56.5456, - "longitude": -137.8432, - "lastUpdated": "2018-01-28", - "city": "Tracy", - "region": " North Coast", - "victoriaFile": "26250-20/19363", + "uuid": "91b65d53-7afe-45e3-8c46-92d0996fd1c2", + "siteID": 19603, + "address": "13935 Joelle Motorway", + "latitude": 54.7186, + "longitude": -129.481, + "lastUpdated": "2014-12-13", + "city": "Howeborough", + "region": "Kootenay", + "victoriaFile": "26250-20/1886", "regionalFile": "N/A", "parcelIDs": [ - 9073348, - 9904969, - 1742137, - 2064180, - 977585 + 9864275, + 8822593, + 3991916, + 6692629, + 554128 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2023-08-05", - "completed": "2017-12-13", - "initiated": "2023-02-24", - "ministryContact": "JAST ELYSE", + "createdAt": "2014-06-06", + "completed": "2022-07-27", + "initiated": "2022-01-16", + "ministryContact": "BOGAN BELLE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -2756,48 +3773,28 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": false - } - ], - "siteRegistry": true - }, - { - "createdAt": "2017-01-22", - "completed": "2023-02-16", - "initiated": "2020-12-31", - "ministryContact": "BERNHARD LETHA", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ + }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true } ], "siteRegistry": false }, { - "createdAt": "2016-05-30", - "completed": "2021-12-30", - "initiated": "2016-08-14", - "ministryContact": "FRIESEN BRETT", + "createdAt": "2020-10-23", + "completed": "2022-11-22", + "initiated": "2015-02-15", + "ministryContact": "BOTSFORD NELLA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -2805,28 +3802,13 @@ "" ], "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true } @@ -2836,9 +3818,9 @@ ], "participants": [ { - "name": "IPSUM", - "endDate": "2017-03-19", - "startDate": "2021-02-14", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2017-12-12", + "startDate": "2014-02-27", "notes": "", "roles": [ "ORGANIZATION" @@ -2847,64 +3829,168 @@ }, { "name": "SHELL CANADA PRODUCTS", - "endDate": "2022-09-12", - "startDate": "2023-08-30", + "endDate": "2020-03-12", + "startDate": "2016-05-14", "notes": "", "roles": [ "ORGANIZATION" ], "siteRegistry": true + }, + { + "name": "AMET, DOLOR SIT", + "endDate": "2021-08-10", + "startDate": "2022-04-24", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true } ], - "associatedSites": [ + "suspectLandUses": [ { - "dateNoted": "2018-12-07", - "notes": "", - "parcelID": "20698", - "siteID": "19778", - "siteRegistry": false + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2019-10-21 (described on Site Profile dated 2019-10-21)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "dateNoted": "2013-12-13", - "notes": "", - "parcelID": "17924", - "siteID": "17567", - "siteRegistry": true + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2016-02-08 (described on Site Profile dated 2016-02-08)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2021-05-08 (described on Site Profile dated 2021-05-08)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2019-06-24 (described on Site Profile dated 2019-06-24)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + } + ], + "siteDisclosures": [ + { + "siteRegistry": false, + "dateReceived": "2016-10-03", + "dateCompleted": "2022-03-18", + "dateEntered": "2018-07-29", + "dateRegistrar": "2017-09-13", + "dateLocalAuthorityReceived": "2019-09-13", + "summary": "Occaecati vitae perferendis ea.", + "informationUsed": "Sint voluptates voluptatem tempore ut ab et beatae quae eligendi.\nEx officia dolorem quisquam occaecati illum.\nPerferendis facilis earum iste error ut doloribus laboriosam non nemo.\nIpsam ex dolore maxime molestiae libero recusandae aperiam.", + "pastOrPresentOrders": "Pariatur fugit voluptates odio laudantium necessitatibus nam tempore.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + } + ] + }, + { + "siteRegistry": false, + "dateReceived": "2019-04-25", + "dateCompleted": "2023-04-12", + "dateEntered": "2015-03-31", + "dateRegistrar": "2015-03-17", + "dateLocalAuthorityReceived": "2022-08-30", + "summary": "Voluptatem saepe nulla possimus facere temporibus.\nOdio voluptate facere esse nostrum atque.\nDoloremque cupiditate quia mollitia incidunt maxime excepturi modi at perspiciatis.", + "informationUsed": "Distinctio eos fugiat itaque natus fuga quos maxime.\nFuga nulla modi ipsa incidunt voluptatem id molestiae rem.\nDolorem maxime nostrum optio a dignissimos earum voluptate quae repudiandae.\nAccusamus occaecati tempore distinctio ut laborum facilis quas iusto sint.", + "pastOrPresentOrders": "Libero ex facilis.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + } + ] + } + ], + "activityLog": [ + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "GUSIKOWSKI VAN", + "timestamp": "2016-05-30" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "DURGAN BERYL", + "timestamp": "2022-11-16" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "DOOLEY URSULA", + "timestamp": "2013-10-22" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "SCHULIST FERNANDO", + "timestamp": "2022-10-27" }, { - "dateNoted": "2023-06-05", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "LANGOSH ALLIE", + "timestamp": "2022-01-31" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "BINS CRAIG", + "timestamp": "2018-02-24" + } + ], + "associatedSites": [ + { + "dateNoted": "2017-04-28", "notes": "", - "parcelID": "17507", - "siteID": "17908", + "parcelID": "15497", + "siteID": "20766", "siteRegistry": true } ] }, { - "uuid": "d81a9608-ace1-4dc0-b648-10c135150c97", - "siteID": 20627, - "address": "31729 Hackett Freeway", - "latitude": 57.7592, - "longitude": -131.1137, - "lastUpdated": "2014-01-31", - "city": "Ratkeville", - "region": "Vancouver Island/Coast", - "victoriaFile": "26250-20/10074", + "uuid": "3d710481-8e69-49ae-87db-c17c70e55267", + "siteID": 16489, + "address": "4011 Bauch Corner", + "latitude": 54.6299, + "longitude": -120.4188, + "lastUpdated": "2016-02-16", + "city": "Abbottfield", + "region": " North Coast", + "victoriaFile": "26250-20/1598", "regionalFile": "N/A", "parcelIDs": [ - 948997, - 4806015, - 7923001, - 726407, - 729852 + 8095186, + 3670924, + 7245591, + 4103219, + 3132215 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2017-02-23", - "completed": "2021-07-26", - "initiated": "2014-10-25", - "ministryContact": "HANSEN JAIRO", + "createdAt": "2014-12-27", + "completed": "2023-08-01", + "initiated": "2018-12-28", + "ministryContact": "HELLER JERROD", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -2912,20 +3998,10 @@ "" ], "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", @@ -2933,18 +4009,18 @@ "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true } ], "siteRegistry": false }, { - "createdAt": "2017-01-11", - "completed": "2021-08-31", - "initiated": "2019-07-02", - "ministryContact": "VON JERAMY", + "createdAt": "2020-04-23", + "completed": "2017-08-05", + "initiated": "2022-12-08", + "ministryContact": "POWLOWSKI GEORGE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -2954,38 +4030,13 @@ "notationParticipants": [ { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true - } - ], - "siteRegistry": true - }, - { - "createdAt": "2020-04-24", - "completed": "2016-03-01", - "initiated": "2019-01-06", - "ministryContact": "FARRELL ALEXANDRE", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", @@ -2995,240 +4046,229 @@ { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false } ], "participants": [ { - "name": "AMET, DOLOR SIT", - "endDate": "2019-09-28", - "startDate": "2022-05-16", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": true - }, - { - "name": "AMET, DOLOR SIT", - "endDate": "2014-08-03", - "startDate": "2016-09-27", + "name": "IPSUM", + "endDate": "2015-01-20", + "startDate": "2023-06-19", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], - "siteRegistry": true + "siteRegistry": false }, { - "name": "IPSUM", - "endDate": "2019-12-23", - "startDate": "2020-07-31", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2014-03-04", + "startDate": "2021-12-04", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false }, { - "name": "IPSUM", - "endDate": "2022-09-02", - "startDate": "2016-05-06", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2019-10-04", + "startDate": "2023-02-22", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2018-11-18", - "startDate": "2017-08-14", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2013-10-31", + "startDate": "2022-07-02", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": true } ], - "associatedSites": [ + "suspectLandUses": [ { - "dateNoted": "2016-05-02", - "notes": "", - "parcelID": "16171", - "siteID": "17074", - "siteRegistry": true + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2017-03-19 (described on Site Profile dated 2017-03-19)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "dateNoted": "2014-01-20", - "notes": "", - "parcelID": "20545", - "siteID": "15917", - "siteRegistry": false + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2017-12-09 (described on Site Profile dated 2017-12-09)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "dateNoted": "2017-07-27", - "notes": "", - "parcelID": "17949", - "siteID": "20555", - "siteRegistry": true + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2022-01-30 (described on Site Profile dated 2022-01-30)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2020-08-08 (described on Site Profile dated 2020-08-08)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2020-06-20 (described on Site Profile dated 2020-06-20)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } - ] - }, - { - "uuid": "d58e5503-dbd9-4c88-91c5-f7604e4e7c05", - "siteID": 16206, - "address": "42701 Kelsi Creek", - "latitude": 55.5753, - "longitude": -126.4792, - "lastUpdated": "2023-03-29", - "city": "Port Carterstead", - "region": "Mainland/Southwest", - "victoriaFile": "26250-20/952", - "regionalFile": "N/A", - "parcelIDs": [ - 986215, - 1301398, - 9686702, - 9791321, - 4973877 ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ + "siteDisclosures": [ { - "createdAt": "2023-08-22", - "completed": "2017-09-02", - "initiated": "2022-10-20", - "ministryContact": "PREDOVIC IVORY", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ + "siteRegistry": false, + "dateReceived": "2022-07-01", + "dateCompleted": "2022-01-14", + "dateEntered": "2013-12-27", + "dateRegistrar": "2020-07-12", + "dateLocalAuthorityReceived": "2016-02-11", + "summary": "Eius doloribus soluta temporibus eum totam inventore exercitationem veniam.", + "informationUsed": "Eligendi ipsam dolore.\nPariatur optio recusandae id quo reiciendis aperiam asperiores provident quam.\nInventore aliquid minima numquam amet.\nVoluptatibus hic accusantium laboriosam.", + "pastOrPresentOrders": "Est doloribus itaque.", + "commercialAndIndustrialPurposes": [ { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true } - ], - "siteRegistry": false + ] }, { - "createdAt": "2022-08-30", - "completed": "2021-12-21", - "initiated": "2016-01-27", - "ministryContact": "ADAMS KRISTY", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ + "siteRegistry": true, + "dateReceived": "2022-12-08", + "dateCompleted": "2017-06-29", + "dateEntered": "2019-10-02", + "dateRegistrar": "2018-11-02", + "dateLocalAuthorityReceived": "2021-08-20", + "summary": "Eius porro unde impedit at saepe atque velit magni quas.\nCorrupti voluptas fugiat vitae tempore unde quo quas deleniti.\nDolores explicabo enim distinctio.", + "informationUsed": "Maiores corporis labore et repellat voluptates dolorem iste tenetur praesentium.\nImpedit temporibus nihil.\nExplicabo tempora dolores deleniti velit cumque aperiam at.\nSoluta hic totam placeat at.\nNobis repellat distinctio omnis dolore eos eos vitae illum.", + "pastOrPresentOrders": "Quae laborum itaque ratione delectus sint cumque dicta eius provident.\nFacilis optio eaque consequatur dicta.\nFuga facilis voluptate distinctio quae molestias.", + "commercialAndIndustrialPurposes": [ { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false } - ], - "siteRegistry": false + ] } ], - "participants": [ + "activityLog": [ { - "name": "IPSUM", - "endDate": "2019-01-14", - "startDate": "2023-03-24", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": true + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "LEUSCHKE GARFIELD", + "timestamp": "2014-08-22" }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2019-09-15", - "startDate": "2015-01-28", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": false + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "DOYLE ADELA", + "timestamp": "2016-03-28" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "JACOBS LYDA", + "timestamp": "2014-02-18" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "DURGAN MOZELLE", + "timestamp": "2020-08-27" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "RUECKER COLLIN", + "timestamp": "2017-05-21" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "STAMM CARMELLA", + "timestamp": "2022-12-20" } ], "associatedSites": [ { - "dateNoted": "2022-09-09", + "dateNoted": "2014-09-26", "notes": "", - "parcelID": "17730", - "siteID": "16634", - "siteRegistry": false + "parcelID": "20021", + "siteID": "19221", + "siteRegistry": true }, { - "dateNoted": "2015-04-19", + "dateNoted": "2013-10-25", "notes": "", - "parcelID": "19624", - "siteID": "17260", + "parcelID": "18945", + "siteID": "18598", "siteRegistry": false - }, - { - "dateNoted": "2022-01-02", - "notes": "", - "parcelID": "18333", - "siteID": "17449", - "siteRegistry": true } ] }, { - "uuid": "a6f5d1d4-e84f-4cc5-8a17-f5fbc32fba57", - "siteID": 20722, - "address": "7486 Witting Greens", - "latitude": 51.236, - "longitude": -122.6154, - "lastUpdated": "2019-04-21", - "city": "Weimannfurt", - "region": "Vancouver Island/Coast", - "victoriaFile": "26250-20/6466", + "uuid": "175bcd89-254e-45d4-8b22-1e354e17cdc6", + "siteID": 17601, + "address": "162 Reichel Glens", + "latitude": 55.5881, + "longitude": -131.4084, + "lastUpdated": "2014-11-16", + "city": "West Ulices", + "region": " North Coast", + "victoriaFile": "26250-20/16811", "regionalFile": "N/A", "parcelIDs": [ - 4487574, - 5794278, - 4063944, - 9514586, - 2698213 + 3196706, + 613815, + 858050, + 8124893, + 7084043 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2018-06-21", - "completed": "2013-11-13", - "initiated": "2022-06-21", - "ministryContact": "SCHNEIDER REYES", + "createdAt": "2022-03-07", + "completed": "2015-10-30", + "initiated": "2021-09-25", + "ministryContact": "DUBUQUE CLEMENTINA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -3237,28 +4277,63 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "createdAt": "2014-07-22", + "completed": "2018-08-22", + "initiated": "2019-07-25", + "ministryContact": "PADBERG MARILOU", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false } ], "siteRegistry": false }, { - "createdAt": "2021-09-17", - "completed": "2021-08-04", - "initiated": "2017-05-10", - "ministryContact": "DARE KEELEY", + "createdAt": "2013-11-09", + "completed": "2021-07-14", + "initiated": "2022-12-16", + "ministryContact": "STANTON VITA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -3267,120 +4342,28 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true } ], - "siteRegistry": true - } - ], - "participants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2020-01-27", - "startDate": "2018-05-31", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": false - }, - { - "name": "AMET, DOLOR SIT", - "endDate": "2022-03-07", - "startDate": "2014-09-02", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": true - }, - { - "name": "AMET, DOLOR SIT", - "endDate": "2018-02-21", - "startDate": "2018-04-11", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": false - }, - { - "name": "AMET, DOLOR SIT", - "endDate": "2018-02-12", - "startDate": "2022-01-03", - "notes": "", - "roles": [ - "ORGANIZATION" - ], "siteRegistry": false }, { - "name": "IPSUM", - "endDate": "2021-05-13", - "startDate": "2014-07-24", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": true - } - ], - "associatedSites": [ - { - "dateNoted": "2023-04-01", - "notes": "", - "parcelID": "19393", - "siteID": "18049", - "siteRegistry": true - }, - { - "dateNoted": "2019-06-05", - "notes": "", - "parcelID": "20978", - "siteID": "17692", - "siteRegistry": true - }, - { - "dateNoted": "2021-04-03", - "notes": "", - "parcelID": "16084", - "siteID": "20162", - "siteRegistry": true - } - ] - }, - { - "uuid": "6d4ed0bc-a936-456a-b1be-a39fde2bc567", - "siteID": 20520, - "address": "2635 Abbott Shoal", - "latitude": 58.618, - "longitude": -128.3292, - "lastUpdated": "2014-05-11", - "city": "Swiftboro", - "region": "Vancouver Island/Coast", - "victoriaFile": "26250-20/12273", - "regionalFile": "N/A", - "parcelIDs": [ - 1037669, - 3682758, - 6837288, - 5509907, - 7895798 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2020-04-03", - "completed": "2017-03-05", - "initiated": "2016-01-19", - "ministryContact": "BARTON NELLIE", + "createdAt": "2021-07-16", + "completed": "2014-09-09", + "initiated": "2023-06-15", + "ministryContact": "RATKE-KUNZE AMYA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -3388,20 +4371,10 @@ "" ], "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", @@ -3410,42 +4383,22 @@ }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - } - ], - "siteRegistry": false - }, - { - "createdAt": "2020-09-14", - "completed": "2023-04-08", - "initiated": "2020-02-11", - "ministryContact": "POLLICH CHRISTIANA", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2023-07-29", - "completed": "2015-11-18", - "initiated": "2014-08-21", - "ministryContact": "BARTOLETTI WILL", + "createdAt": "2017-07-17", + "completed": "2022-11-29", + "initiated": "2016-05-08", + "ministryContact": "HAAG-FUNK AUGUSTINE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -3455,13 +4408,13 @@ "notationParticipants": [ { "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false } ], "siteRegistry": true @@ -3469,19 +4422,9 @@ ], "participants": [ { - "name": "AMET, DOLOR SIT", - "endDate": "2017-12-14", - "startDate": "2022-04-07", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": false - }, - { - "name": "AMET, DOLOR SIT", - "endDate": "2015-04-30", - "startDate": "2016-11-12", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2020-08-27", + "startDate": "2020-10-01", "notes": "", "roles": [ "EMPLOYEE" @@ -3490,8 +4433,8 @@ }, { "name": "AMET, DOLOR SIT", - "endDate": "2022-10-27", - "startDate": "2019-09-27", + "endDate": "2019-09-22", + "startDate": "2022-06-03", "notes": "", "roles": [ "ORGANIZATION" @@ -3499,48 +4442,127 @@ "siteRegistry": false } ], - "associatedSites": [ + "suspectLandUses": [ { - "dateNoted": "2022-07-06", - "notes": "", - "parcelID": "20109", - "siteID": "17012", - "siteRegistry": true + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2022-10-07 (described on Site Profile dated 2022-10-07)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2021-02-19 (described on Site Profile dated 2021-02-19)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + } + ], + "siteDisclosures": [ + { + "siteRegistry": true, + "dateReceived": "2017-07-09", + "dateCompleted": "2023-02-20", + "dateEntered": "2018-08-13", + "dateRegistrar": "2018-02-18", + "dateLocalAuthorityReceived": "2016-10-02", + "summary": "Eius consequatur cum non suscipit beatae.\nIn temporibus et tempora.\nNisi iste quo dolores ipsum explicabo ipsum minima.", + "informationUsed": "Nulla occaecati quam dicta incidunt animi quia cumque placeat.\nLaboriosam unde eveniet.\nDolorem ab nihil debitis harum repellendus tempora asperiores modi in.", + "pastOrPresentOrders": "Quaerat atque aliquid dolor unde inventore pariatur.\nItaque dolores illo porro asperiores mollitia ex ullam modi accusamus.\nBeatae totam tempore officiis quos.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + } + ] + } + ], + "activityLog": [ + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "LANGWORTH CRISTOBAL", + "timestamp": "2021-07-28" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "O'KEEFE LERA", + "timestamp": "2022-04-13" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "MOEN JOSE", + "timestamp": "2021-08-26" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "THIEL CAMREN", + "timestamp": "2014-11-02" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "LOWE RETHA", + "timestamp": "2021-11-19" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "MORISSETTE CHARLOTTE", + "timestamp": "2020-10-12" }, { - "dateNoted": "2015-04-09", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "LINDGREN LEATHA", + "timestamp": "2021-03-27" + } + ], + "associatedSites": [ + { + "dateNoted": "2014-11-17", "notes": "", - "parcelID": "19496", - "siteID": "19407", + "parcelID": "15321", + "siteID": "17854", "siteRegistry": false } ] }, { - "uuid": "acb765dc-8fbf-449d-b2dc-51c7c53e08ce", - "siteID": 18495, - "address": "67825 Marco Streets", - "latitude": 51.9897, - "longitude": -127.3366, - "lastUpdated": "2019-10-02", - "city": "East Krystinaborough", - "region": " North Coast", - "victoriaFile": "26250-20/8860", + "uuid": "393d8081-9122-47bf-8835-d5a0f6d611d0", + "siteID": 15216, + "address": "94271 Geoffrey Ferry", + "latitude": 53.2479, + "longitude": -132.5539, + "lastUpdated": "2020-12-11", + "city": "East Geovannyfort", + "region": "Thompson-Okanagan", + "victoriaFile": "26250-20/8263", "regionalFile": "N/A", "parcelIDs": [ - 7597740, - 6622858, - 3144819, - 1765580, - 9783222 + 7901487, + 3740600, + 9798305, + 9719903, + 670427 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2016-11-15", - "completed": "2015-01-29", - "initiated": "2019-11-28", - "ministryContact": "SCHUPPE ENRICO", + "createdAt": "2022-01-03", + "completed": "2015-09-18", + "initiated": "2016-08-31", + "ministryContact": "HICKLE HOLLIE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -3551,15 +4573,10 @@ { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true }, @@ -3572,10 +4589,10 @@ "siteRegistry": false }, { - "createdAt": "2015-03-02", - "completed": "2016-02-11", - "initiated": "2020-04-25", - "ministryContact": "PARKER CLOYD", + "createdAt": "2018-04-23", + "completed": "2020-01-31", + "initiated": "2017-11-09", + "ministryContact": "BARTON MYRTIE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -3583,11 +4600,6 @@ "" ], "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", @@ -3597,25 +4609,15 @@ "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true } ], "siteRegistry": true }, { - "createdAt": "2020-03-20", - "completed": "2016-07-28", - "initiated": "2023-06-09", - "ministryContact": "ROBERTS CHANEL", + "createdAt": "2016-01-19", + "completed": "2020-02-18", + "initiated": "2016-03-01", + "ministryContact": "RODRIGUEZ-RUNOLFSDOTTIR LEMUEL", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -3623,82 +4625,24 @@ "" ], "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true } ], "siteRegistry": false - } - ], - "participants": [ - { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2018-03-20", - "startDate": "2022-04-01", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2018-09-06", - "startDate": "2019-05-09", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": false - } - ], - "associatedSites": [ - { - "dateNoted": "2016-05-06", - "notes": "", - "parcelID": "15537", - "siteID": "18069", - "siteRegistry": false - } - ] - }, - { - "uuid": "f1e5a576-b747-4111-b447-0c26917b1063", - "siteID": 19777, - "address": "43391 Jaylin Harbor", - "latitude": 53.9852, - "longitude": -131.4538, - "lastUpdated": "2016-08-24", - "city": "Port Laura", - "region": "Vancouver Island/Coast", - "victoriaFile": "26250-20/8312", - "regionalFile": "N/A", - "parcelIDs": [ - 4914135, - 4640238, - 6204221, - 4000333, - 1122110 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2020-01-24", - "completed": "2019-11-25", - "initiated": "2018-07-21", - "ministryContact": "ERDMAN ADALINE", + "createdAt": "2020-06-08", + "completed": "2014-11-13", + "initiated": "2014-10-09", + "ministryContact": "REICHERT DOCK", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -3706,6 +4650,11 @@ "" ], "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", @@ -3718,47 +4667,22 @@ }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": true - } - ], - "siteRegistry": true - }, - { - "createdAt": "2021-07-12", - "completed": "2020-09-25", - "initiated": "2017-12-07", - "ministryContact": "HARBER MARIAN", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", "siteRegistry": false } ], "siteRegistry": true }, { - "createdAt": "2014-05-21", - "completed": "2018-09-08", - "initiated": "2014-03-03", - "ministryContact": "LEHNER MURIEL", + "createdAt": "2017-05-20", + "completed": "2018-02-22", + "initiated": "2022-04-21", + "ministryContact": "GIBSON META", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -3766,25 +4690,10 @@ "" ], "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", @@ -3792,14 +4701,24 @@ "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false } ], "participants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2023-01-19", - "startDate": "2016-03-10", + "name": "AMET, DOLOR SIT", + "endDate": "2022-12-26", + "startDate": "2015-10-08", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2015-08-17", + "startDate": "2014-10-20", "notes": "", "roles": [ "EMPLOYEE" @@ -3808,57 +4727,172 @@ }, { "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2017-01-02", - "startDate": "2021-02-15", + "endDate": "2017-07-25", + "startDate": "2020-06-08", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "name": "IPSUM", + "endDate": "2023-01-03", + "startDate": "2018-02-25", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": false + "siteRegistry": true + } + ], + "suspectLandUses": [ + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2016-03-18 (described on Site Profile dated 2016-03-18)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2023-01-18 (described on Site Profile dated 2023-01-18)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2017-01-22 (described on Site Profile dated 2017-01-22)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + } + ], + "siteDisclosures": [ + { + "siteRegistry": true, + "dateReceived": "2022-02-17", + "dateCompleted": "2014-02-12", + "dateEntered": "2017-03-21", + "dateRegistrar": "2016-09-04", + "dateLocalAuthorityReceived": "2014-12-09", + "summary": "Praesentium facere eos id reiciendis.\nTemporibus voluptate distinctio placeat maiores atque.", + "informationUsed": "Corporis natus aspernatur numquam suscipit quos corrupti.\nVelit sint placeat cupiditate amet ducimus dolor nisi.\nVero molestiae sequi quaerat natus cupiditate.\nMaiores amet adipisci recusandae recusandae earum iste.\nIste illo modi quasi culpa.", + "pastOrPresentOrders": "Sed optio vel necessitatibus neque illo occaecati modi repellendus cupiditate.\nNumquam quos unde vel hic tenetur eveniet odit quidem.\nNumquam tenetur magnam mollitia nam perspiciatis iure illo.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + } + ] + } + ], + "activityLog": [ + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "PRICE ARTURO", + "timestamp": "2022-11-06" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "STEUBER DESIREE", + "timestamp": "2019-01-02" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "HARRIS THEA", + "timestamp": "2016-04-13" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "WINTHEISER BAYLEE", + "timestamp": "2023-01-12" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "FUNK ELISE", + "timestamp": "2021-02-18" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "GUTMANN LILY", + "timestamp": "2018-01-28" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "MUELLER SHAYNA", + "timestamp": "2014-08-01" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "WUNSCH CARMELA", + "timestamp": "2019-08-23" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "WELCH CALEIGH", + "timestamp": "2023-02-25" } ], "associatedSites": [ { - "dateNoted": "2020-08-06", + "dateNoted": "2021-03-29", "notes": "", - "parcelID": "18337", - "siteID": "16118", + "parcelID": "18467", + "siteID": "16386", "siteRegistry": true }, { - "dateNoted": "2015-02-05", + "dateNoted": "2014-08-28", "notes": "", - "parcelID": "18321", - "siteID": "19124", - "siteRegistry": true + "parcelID": "16523", + "siteID": "20137", + "siteRegistry": false + }, + { + "dateNoted": "2022-01-26", + "notes": "", + "parcelID": "18385", + "siteID": "18030", + "siteRegistry": false } ] }, { - "uuid": "dd935091-5178-4939-8416-8009e481c954", - "siteID": 19095, - "address": "506 Stark Coves", - "latitude": 52.3731, - "longitude": -130.8086, - "lastUpdated": "2015-02-21", - "city": "Blue Springs", - "region": "Thompson-Okanagan", - "victoriaFile": "26250-20/14717", + "uuid": "40e24884-9b91-43d7-ab85-de7da8999fa3", + "siteID": 15423, + "address": "9595 Bradtke Mount", + "latitude": 57.2807, + "longitude": -124.131, + "lastUpdated": "2022-07-17", + "city": "Karenfort", + "region": "Kootenay", + "victoriaFile": "26250-20/17347", "regionalFile": "N/A", "parcelIDs": [ - 5842166, - 9571417, - 5429523, - 6311578, - 6512264 + 152735, + 8822449, + 650173, + 2173485, + 3898436 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2018-03-12", - "completed": "2018-07-14", - "initiated": "2014-11-20", - "ministryContact": "ROOB ROCIO", + "createdAt": "2018-03-04", + "completed": "2021-10-17", + "initiated": "2023-09-01", + "ministryContact": "ROSENBAUM KYLA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -3866,24 +4900,24 @@ "" ], "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true } ], "siteRegistry": true }, { - "createdAt": "2019-04-17", - "completed": "2021-12-07", - "initiated": "2016-03-12", - "ministryContact": "MURAZIK REVA", + "createdAt": "2022-05-26", + "completed": "2021-09-11", + "initiated": "2016-11-08", + "ministryContact": "CRONIN CARLEY", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -3892,7 +4926,12 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false }, @@ -3902,13 +4941,13 @@ "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2018-01-07", - "completed": "2016-11-04", - "initiated": "2015-03-28", - "ministryContact": "BOYER GUS", + "createdAt": "2020-10-23", + "completed": "2014-09-16", + "initiated": "2022-04-03", + "ministryContact": "BECKER LUCIOUS", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -3927,13 +4966,13 @@ "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2022-04-12", - "completed": "2022-03-22", - "initiated": "2016-01-18", - "ministryContact": "NIKOLAUS RHODA", + "createdAt": "2020-09-05", + "completed": "2019-06-21", + "initiated": "2015-08-24", + "ministryContact": "SWANIAWSKI HANS", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -3941,24 +4980,34 @@ "" ], "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true } ], "siteRegistry": true }, { - "createdAt": "2021-02-27", - "completed": "2020-12-29", - "initiated": "2022-03-07", - "ministryContact": "ABERNATHY HARMONY", + "createdAt": "2016-06-10", + "completed": "2023-07-22", + "initiated": "2019-07-26", + "ministryContact": "JACOBI LEMPI", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -3966,30 +5015,15 @@ "" ], "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false } ], "siteRegistry": true @@ -3997,9 +5031,9 @@ ], "participants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2014-02-20", - "startDate": "2018-07-20", + "name": "AMET, DOLOR SIT", + "endDate": "2016-02-12", + "startDate": "2020-03-01", "notes": "", "roles": [ "EMPLOYEE" @@ -4007,71 +5041,187 @@ "siteRegistry": true }, { - "name": "IPSUM", - "endDate": "2020-05-28", - "startDate": "2014-04-30", + "name": "AMET, DOLOR SIT", + "endDate": "2023-03-02", + "startDate": "2022-01-06", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": false }, { "name": "IPSUM", - "endDate": "2018-04-06", - "startDate": "2020-01-11", + "endDate": "2019-02-24", + "startDate": "2015-09-29", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": true + "siteRegistry": false + } + ], + "suspectLandUses": [ + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2021-02-21 (described on Site Profile dated 2021-02-21)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2019-01-07", - "startDate": "2016-04-12", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": true + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2023-04-15 (described on Site Profile dated 2023-04-15)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2020-05-26 (described on Site Profile dated 2020-05-26)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2015-10-30 (described on Site Profile dated 2015-10-30)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2018-11-06 (described on Site Profile dated 2018-11-06)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + } + ], + "siteDisclosures": [ + { + "siteRegistry": false, + "dateReceived": "2021-09-04", + "dateCompleted": "2017-06-12", + "dateEntered": "2023-05-12", + "dateRegistrar": "2022-06-22", + "dateLocalAuthorityReceived": "2014-07-02", + "summary": "Quam minima rerum dolor reiciendis.\nDignissimos doloribus blanditiis ab laborum sed qui.\nImpedit aliquam repellat alias doloribus exercitationem temporibus.", + "informationUsed": "Voluptate ratione aperiam exercitationem iste accusamus aliquid harum consequuntur quis.\nAccusantium iure quibusdam qui delectus cumque.\nMaiores sunt unde tenetur architecto incidunt.", + "pastOrPresentOrders": "Omnis quidem rerum voluptas.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + } + ] + } + ], + "activityLog": [ + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "WILDERMAN DANIELA", + "timestamp": "2016-08-22" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "SCHNEIDER MERLE", + "timestamp": "2023-01-17" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "ROBEL HILBERT", + "timestamp": "2023-04-17" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "RUNOLFSDOTTIR ROSALEE", + "timestamp": "2014-01-30" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "BECHTELAR LINNEA", + "timestamp": "2014-05-31" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "JACOBI PIERRE", + "timestamp": "2023-01-29" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "DICKENS-HANE WYATT", + "timestamp": "2019-07-16" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "CORMIER MABEL", + "timestamp": "2018-08-21" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "PAUCEK MARISA", + "timestamp": "2016-01-28" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "WILLMS RUSTY", + "timestamp": "2015-12-04" } ], "associatedSites": [ { - "dateNoted": "2016-02-11", + "dateNoted": "2019-09-11", "notes": "", - "parcelID": "20714", - "siteID": "16517", + "parcelID": "17965", + "siteID": "17648", "siteRegistry": false + }, + { + "dateNoted": "2021-02-08", + "notes": "", + "parcelID": "17591", + "siteID": "20921", + "siteRegistry": true } ] }, { - "uuid": "c35d1b71-60f0-43ff-8424-886f1cfed57a", - "siteID": 16725, - "address": "9702 Toy Lodge", - "latitude": 53.5677, - "longitude": -131.359, - "lastUpdated": "2022-11-18", - "city": "Norwalk", - "region": "Cariboo", - "victoriaFile": "26250-20/9250", + "uuid": "df462fa9-c569-4643-80b5-a6cd5c24ff3e", + "siteID": 18513, + "address": "79207 Ritchie Crossroad", + "latitude": 54.5108, + "longitude": -124.4419, + "lastUpdated": "2022-04-26", + "city": "Merlland", + "region": "Thompson-Okanagan", + "victoriaFile": "26250-20/4654", "regionalFile": "N/A", "parcelIDs": [ - 3587387, - 5146976, - 246245, - 7428619, - 7071722 + 1813087, + 2654674, + 3276271, + 8534312, + 6462061 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2018-07-03", - "completed": "2018-03-06", - "initiated": "2017-03-26", - "ministryContact": "STIEDEMANN ISABELL", + "createdAt": "2020-01-10", + "completed": "2022-01-28", + "initiated": "2018-04-13", + "ministryContact": "KREIGER AMINA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -4081,27 +5231,27 @@ "notationParticipants": [ { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true + "role": "REQUESTED BY", + "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2015-01-25", - "completed": "2019-04-06", - "initiated": "2016-07-21", - "ministryContact": "COLE BEAU", + "createdAt": "2018-08-27", + "completed": "2016-03-08", + "initiated": "2020-12-03", + "ministryContact": "BOGAN BRETT", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -4111,32 +5261,32 @@ "notationParticipants": [ { "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true } ], "siteRegistry": false }, { - "createdAt": "2021-08-13", - "completed": "2019-07-17", - "initiated": "2015-11-13", - "ministryContact": "ORTIZ RENEE", + "createdAt": "2019-10-27", + "completed": "2018-05-16", + "initiated": "2019-12-16", + "ministryContact": "MAYERT IRMA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -4149,100 +5299,40 @@ "role": "SUBMITTED BY", "siteRegistry": false }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - } - ], - "siteRegistry": false - }, - { - "createdAt": "2021-09-02", - "completed": "2019-08-09", - "initiated": "2020-12-01", - "ministryContact": "SKILES-FEENEY MURL", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false } ], "siteRegistry": true - }, - { - "createdAt": "2021-04-09", - "completed": "2018-04-05", - "initiated": "2023-05-05", - "ministryContact": "EBERT ALVINA", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - } - ], - "siteRegistry": false } ], "participants": [ { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2016-03-13", - "startDate": "2016-01-06", + "name": "IPSUM", + "endDate": "2021-02-13", + "startDate": "2022-10-14", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2016-04-16", - "startDate": "2015-10-03", + "name": "IPSUM", + "endDate": "2016-06-09", + "startDate": "2018-04-24", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": false }, { "name": "AMET, DOLOR SIT", - "endDate": "2023-04-22", - "startDate": "2017-09-09", + "endDate": "2016-01-30", + "startDate": "2018-08-10", "notes": "", "roles": [ "ORGANIZATION" @@ -4250,189 +5340,168 @@ "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2018-05-16", - "startDate": "2020-08-12", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2014-11-17", + "startDate": "2020-07-18", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true }, { - "name": "IPSUM", - "endDate": "2014-09-25", - "startDate": "2022-06-16", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2021-04-29", + "startDate": "2019-05-30", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": true + "siteRegistry": false } ], - "associatedSites": [ + "suspectLandUses": [ { - "dateNoted": "2016-12-19", - "notes": "", - "parcelID": "19069", - "siteID": "18047", - "siteRegistry": false + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2021-06-12 (described on Site Profile dated 2021-06-12)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2016-07-20 (described on Site Profile dated 2016-07-20)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } - ] - }, - { - "uuid": "827c7bfa-23d0-4254-95e3-2080a225e8c1", - "siteID": 16222, - "address": "2945 Allen Tunnel", - "latitude": 57.3944, - "longitude": -133.0245, - "lastUpdated": "2015-10-26", - "city": "Georgetown", - "region": "Cariboo", - "victoriaFile": "26250-20/14152", - "regionalFile": "N/A", - "parcelIDs": [ - 4832935, - 4628945, - 4056613, - 3430160, - 9695825 ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ + "siteDisclosures": [ { - "createdAt": "2020-08-25", - "completed": "2021-06-19", - "initiated": "2020-12-20", - "ministryContact": "JOHNSON ADRIENNE", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ + "siteRegistry": false, + "dateReceived": "2015-01-13", + "dateCompleted": "2018-01-14", + "dateEntered": "2015-12-11", + "dateRegistrar": "2020-07-14", + "dateLocalAuthorityReceived": "2022-05-12", + "summary": "Dolorum ullam architecto nostrum nam rem vero illum molestias excepturi.\nOdio culpa laborum tempore veniam cum cum praesentium.", + "informationUsed": "Magnam odio necessitatibus qui assumenda rem cumque officiis nemo.\nSoluta occaecati excepturi dolore.\nPraesentium asperiores delectus.\nEarum dolores asperiores unde repudiandae.\nSunt consectetur sunt.", + "pastOrPresentOrders": "Nisi voluptatibus suscipit ipsum nobis iure hic ducimus quisquam pariatur.", + "commercialAndIndustrialPurposes": [ { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false } - ], - "siteRegistry": false + ] }, { - "createdAt": "2014-04-08", - "completed": "2016-07-18", - "initiated": "2019-01-03", - "ministryContact": "MRAZ KURTIS", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ + "siteRegistry": false, + "dateReceived": "2020-05-13", + "dateCompleted": "2015-08-06", + "dateEntered": "2017-01-09", + "dateRegistrar": "2023-05-08", + "dateLocalAuthorityReceived": "2015-01-06", + "summary": "Dicta suscipit quod ad aspernatur.\nMolestiae cum ratione provident pariatur.", + "informationUsed": "Quisquam aperiam odit ipsa.\nSimilique culpa voluptatem dignissimos minus voluptate doloremque qui beatae.\nDucimus praesentium molestias tempore.", + "pastOrPresentOrders": "Modi odio harum quibusdam magni culpa.\nModi atque minus at et culpa.\nSunt exercitationem tempora architecto.", + "commercialAndIndustrialPurposes": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true } - ], - "siteRegistry": true + ] } ], - "participants": [ + "activityLog": [ { - "name": "AMET, DOLOR SIT", - "endDate": "2021-05-09", - "startDate": "2019-06-19", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": true + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "YUNDT CELINE", + "timestamp": "2016-07-18" }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2019-09-28", - "startDate": "2015-12-31", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": false + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "LANGOSH DAYNA", + "timestamp": "2022-06-29" }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2019-05-29", - "startDate": "2016-05-13", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": false + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "HODKIEWICZ NARCISO", + "timestamp": "2017-03-02" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "LABADIE TALIA", + "timestamp": "2018-03-27" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "SPENCER ASIA", + "timestamp": "2022-10-05" } ], "associatedSites": [ { - "dateNoted": "2017-09-20", + "dateNoted": "2014-07-27", "notes": "", - "parcelID": "17243", - "siteID": "17449", - "siteRegistry": false + "parcelID": "19132", + "siteID": "19103", + "siteRegistry": true } ] }, { - "uuid": "43abcba5-a6b5-4df5-8dd0-deddc31a8d8d", - "siteID": 19233, - "address": "512 Treutel Harbor", - "latitude": 51.8086, - "longitude": -131.4331, - "lastUpdated": "2018-11-26", - "city": "MacGyverburgh", + "uuid": "94ba8dda-edae-45a4-b9de-1d4b2abbff8c", + "siteID": 18494, + "address": "9224 Lottie Radial", + "latitude": 52.7127, + "longitude": -124.1853, + "lastUpdated": "2020-01-28", + "city": "New Jordistad", "region": "Cariboo", - "victoriaFile": "26250-20/10989", + "victoriaFile": "26250-20/16252", "regionalFile": "N/A", "parcelIDs": [ - 8644763, - 7115448, - 2456187, - 4422795, - 1453252 + 3158936, + 8359958, + 5313792, + 4582632, + 7119680 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2014-04-15", - "completed": "2015-06-08", - "initiated": "2023-07-26", - "ministryContact": "SCHIMMEL MARTINA", + "createdAt": "2022-02-08", + "completed": "2023-04-10", + "initiated": "2022-08-28", + "ministryContact": "CONN KEYON", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -4441,33 +5510,33 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true } ], "siteRegistry": true }, { - "createdAt": "2019-10-28", - "completed": "2020-01-30", - "initiated": "2020-05-21", - "ministryContact": "BAUMBACH TREVION", + "createdAt": "2017-12-24", + "completed": "2020-09-28", + "initiated": "2022-10-26", + "ministryContact": "MUELLER BUCK", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -4478,36 +5547,56 @@ { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false - }, + } + ], + "siteRegistry": true + }, + { + "createdAt": "2021-04-15", + "completed": "2023-09-28", + "initiated": "2019-06-11", + "ministryContact": "JOHNSON MCKENNA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2016-01-21", - "completed": "2019-05-19", - "initiated": "2015-06-03", - "ministryContact": "O'KON RIGOBERTO", + "createdAt": "2023-07-17", + "completed": "2015-05-05", + "initiated": "2018-06-23", + "ministryContact": "HINTZ CHLOE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -4516,12 +5605,12 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true }, @@ -4536,14 +5625,14 @@ "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true } ], "participants": [ { - "name": "IPSUM", - "endDate": "2021-01-23", - "startDate": "2019-12-06", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2018-08-17", + "startDate": "2022-06-07", "notes": "", "roles": [ "ORGANIZATION" @@ -4552,28 +5641,18 @@ }, { "name": "IPSUM", - "endDate": "2015-06-06", - "startDate": "2022-03-10", + "endDate": "2019-10-28", + "startDate": "2017-06-25", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2023-08-19", - "startDate": "2015-09-24", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": false + "siteRegistry": true }, { "name": "AMET, DOLOR SIT", - "endDate": "2017-01-15", - "startDate": "2019-01-14", + "endDate": "2023-02-08", + "startDate": "2021-11-25", "notes": "", "roles": [ "ORGANIZATION" @@ -4582,50 +5661,125 @@ }, { "name": "IPSUM", - "endDate": "2018-07-17", - "startDate": "2019-11-07", + "endDate": "2023-03-01", + "startDate": "2018-12-29", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], - "siteRegistry": true + "siteRegistry": false + } + ], + "suspectLandUses": [ + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2014-08-25 (described on Site Profile dated 2014-08-25)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2015-12-09 (described on Site Profile dated 2015-12-09)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + } + ], + "siteDisclosures": [ + { + "siteRegistry": false, + "dateReceived": "2021-09-30", + "dateCompleted": "2022-05-10", + "dateEntered": "2017-01-07", + "dateRegistrar": "2019-12-01", + "dateLocalAuthorityReceived": "2020-03-17", + "summary": "Optio iste unde placeat aspernatur error.", + "informationUsed": "Dolor veniam aut cumque temporibus velit.\nPraesentium facere pariatur quis ex nostrum natus.\nDistinctio ullam nulla illo voluptatibus natus.\nReiciendis quod laborum amet expedita pariatur perspiciatis accusantium rem deserunt.", + "pastOrPresentOrders": "Doloremque odit nostrum nisi magnam corporis totam dolore mollitia tenetur.\nIn voluptas unde aut maxime magnam facere suscipit sapiente fuga.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + } + ] + } + ], + "activityLog": [ + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "NOLAN KAELA", + "timestamp": "2014-04-24" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "MERTZ MAYA", + "timestamp": "2021-08-06" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "HANE DAKOTA", + "timestamp": "2014-09-10" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "WUCKERT MOISES", + "timestamp": "2023-05-21" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "DICKENS MATTIE", + "timestamp": "2021-02-28" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "BORER KEENAN", + "timestamp": "2015-05-13" } ], "associatedSites": [ { - "dateNoted": "2022-06-04", + "dateNoted": "2014-05-01", "notes": "", - "parcelID": "19854", - "siteID": "19075", - "siteRegistry": false + "parcelID": "16562", + "siteID": "17741", + "siteRegistry": true } ] }, { - "uuid": "e313ff01-1589-458d-a83e-50b2519ffce0", - "siteID": 15917, - "address": "9677 Fredy Light", - "latitude": 53.182, - "longitude": -126.0451, - "lastUpdated": "2016-07-09", - "city": "Candicefield", - "region": "Mainland/Southwest", - "victoriaFile": "26250-20/18276", + "uuid": "c2976dd3-87de-431f-8a27-170e170e1906", + "siteID": 18625, + "address": "5291 Trantow Via", + "latitude": 53.1512, + "longitude": -120.0952, + "lastUpdated": "2016-11-22", + "city": "Sedrickburgh", + "region": " North Coast", + "victoriaFile": "26250-20/4477", "regionalFile": "N/A", "parcelIDs": [ - 3390385, - 1071952, - 5632610, - 9158025, - 8289010 + 7146344, + 4866628, + 1917937, + 4479047, + 3905149 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2014-08-09", - "completed": "2018-05-28", - "initiated": "2021-12-12", - "ministryContact": "WEHNER ZITA", + "createdAt": "2019-04-12", + "completed": "2018-10-27", + "initiated": "2019-12-26", + "ministryContact": "LABADIE NOLA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -4635,27 +5789,37 @@ "notationParticipants": [ { "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2018-06-06", - "completed": "2019-01-25", - "initiated": "2017-09-17", - "ministryContact": "HUEL THADDEUS", + "createdAt": "2023-09-26", + "completed": "2014-02-14", + "initiated": "2014-04-06", + "ministryContact": "HACKETT EUNICE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -4664,38 +5828,58 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "createdAt": "2022-08-03", + "completed": "2020-11-25", + "initiated": "2015-12-11", + "ministryContact": "ZIEMANN CAMILA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": false } ], "siteRegistry": true }, { - "createdAt": "2022-08-14", - "completed": "2014-01-16", - "initiated": "2014-06-02", - "ministryContact": "DARE ELYSE", + "createdAt": "2015-07-12", + "completed": "2021-04-26", + "initiated": "2016-12-21", + "ministryContact": "BAUCH HIRAM", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -4704,7 +5888,7 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true }, @@ -4712,16 +5896,6 @@ "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false } ], "siteRegistry": true @@ -4729,85 +5903,163 @@ ], "participants": [ { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2022-08-06", - "startDate": "2023-06-13", + "name": "IPSUM", + "endDate": "2015-03-27", + "startDate": "2017-02-07", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], - "siteRegistry": true + "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2022-06-09", - "startDate": "2022-06-29", + "name": "AMET, DOLOR SIT", + "endDate": "2014-12-14", + "startDate": "2019-12-23", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": false + } + ], + "suspectLandUses": [ + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2019-07-01 (described on Site Profile dated 2019-07-01)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2019-07-31", - "startDate": "2016-12-04", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": true + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2022-03-04 (described on Site Profile dated 2022-03-04)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], - "associatedSites": [ + "siteDisclosures": [ { - "dateNoted": "2019-10-19", - "notes": "", - "parcelID": "17956", - "siteID": "20869", - "siteRegistry": true + "siteRegistry": true, + "dateReceived": "2022-07-21", + "dateCompleted": "2019-01-20", + "dateEntered": "2015-12-29", + "dateRegistrar": "2017-10-08", + "dateLocalAuthorityReceived": "2021-09-20", + "summary": "Voluptatibus porro sequi deleniti doloribus.\nAtque facere tenetur quidem quasi in earum accusamus ipsum.\nLabore eligendi eligendi enim.", + "informationUsed": "Natus modi esse vero ducimus alias.\nFugit assumenda sit quia alias alias maxime nesciunt.\nSaepe fuga sit sequi.", + "pastOrPresentOrders": "Velit aperiam est ipsum corrupti esse sapiente alias voluptate unde.\nFacere itaque fugit facere nesciunt dicta voluptates quasi.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + } + ] }, { - "dateNoted": "2023-06-04", - "notes": "", - "parcelID": "19275", - "siteID": "17011", - "siteRegistry": true + "siteRegistry": true, + "dateReceived": "2017-03-29", + "dateCompleted": "2014-06-15", + "dateEntered": "2019-02-04", + "dateRegistrar": "2018-07-05", + "dateLocalAuthorityReceived": "2015-06-25", + "summary": "Distinctio aut doloremque harum cupiditate.\nQuos nobis possimus quod qui aperiam quae veniam.", + "informationUsed": "Voluptatibus odio iste architecto qui adipisci voluptatem mollitia quae.\nIn minima hic libero id magni blanditiis.\nVelit quod consequatur reprehenderit nobis iure.", + "pastOrPresentOrders": "Quisquam facere sequi facilis eveniet vero omnis ratione voluptatem tenetur.\nBeatae quis facilis eligendi distinctio accusamus.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + } + ] + } + ], + "activityLog": [ + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "BINS JALON", + "timestamp": "2018-01-11" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "BARROWS JAVONTE", + "timestamp": "2014-09-15" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "ALTENWERTH NETTIE", + "timestamp": "2021-09-18" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "D'AMORE LAVINA", + "timestamp": "2014-09-27" }, { - "dateNoted": "2016-08-01", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "BERGNAUM ZARIA", + "timestamp": "2014-04-17" + } + ], + "associatedSites": [ + { + "dateNoted": "2020-01-23", "notes": "", - "parcelID": "19487", - "siteID": "16986", + "parcelID": "19069", + "siteID": "18598", "siteRegistry": false } ] }, { - "uuid": "f93cdc09-ff01-4c75-b7d9-46a2572a51e2", - "siteID": 20641, - "address": "58249 Reba Coves", - "latitude": 52.2799, - "longitude": -118.1805, - "lastUpdated": "2023-02-21", - "city": "Lake Lynnshire", - "region": "Kootenay", - "victoriaFile": "26250-20/8512", + "uuid": "5f00ab98-3ac9-4bcf-844a-76ccf3046753", + "siteID": 17954, + "address": "4502 Smitham Meadows", + "latitude": 51.5124, + "longitude": -132.2858, + "lastUpdated": "2019-12-08", + "city": "Lake Lyric", + "region": "Cariboo", + "victoriaFile": "26250-20/3416", "regionalFile": "N/A", "parcelIDs": [ - 1794596, - 1528486, - 5408011, - 2346442, - 5549500 + 3623727, + 6435345, + 5708920, + 4903229, + 5197281 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2020-06-17", - "completed": "2020-04-06", - "initiated": "2023-01-16", - "ministryContact": "BAYER BARRY", + "createdAt": "2018-06-19", + "completed": "2019-01-22", + "initiated": "2021-08-09", + "ministryContact": "FRITSCH JERMAIN", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -4822,16 +6074,11 @@ }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false } @@ -4839,10 +6086,10 @@ "siteRegistry": true }, { - "createdAt": "2019-09-27", - "completed": "2018-12-06", - "initiated": "2017-04-06", - "ministryContact": "DICKI CLEMENTINE", + "createdAt": "2020-07-16", + "completed": "2019-02-12", + "initiated": "2016-09-13", + "ministryContact": "JACOBSON LOGAN", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -4853,36 +6100,26 @@ { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2018-05-29", - "completed": "2016-01-31", - "initiated": "2018-09-16", - "ministryContact": "CARTER BROCK", + "createdAt": "2021-06-04", + "completed": "2014-03-08", + "initiated": "2020-09-18", + "ministryContact": "ORN JARRELL", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -4892,57 +6129,32 @@ "notationParticipants": [ { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": true - } - ], - "siteRegistry": false - }, - { - "createdAt": "2023-06-25", - "completed": "2020-05-17", - "initiated": "2019-04-16", - "ministryContact": "MOEN ISSAC", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true } ], "siteRegistry": false }, { - "createdAt": "2019-08-05", - "completed": "2016-12-10", - "initiated": "2015-11-29", - "ministryContact": "CARTER DELPHIA", + "createdAt": "2015-11-20", + "completed": "2018-07-21", + "initiated": "2013-12-24", + "ministryContact": "VON BRETT", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -4951,44 +6163,34 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false } ], "participants": [ { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2023-07-10", - "startDate": "2020-01-11", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2017-02-03", + "startDate": "2016-09-09", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2014-11-13", - "startDate": "2020-01-26", + "name": "AMET, DOLOR SIT", + "endDate": "2018-07-18", + "startDate": "2016-04-07", "notes": "", "roles": [ "EMPLOYEE" @@ -4996,9 +6198,9 @@ "siteRegistry": false }, { - "name": "AMET, DOLOR SIT", - "endDate": "2019-11-13", - "startDate": "2016-01-18", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2019-03-05", + "startDate": "2023-05-12", "notes": "", "roles": [ "ORGANIZATION" @@ -5006,51 +6208,188 @@ "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2016-12-20", - "startDate": "2014-11-05", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2019-06-13", + "startDate": "2015-03-07", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], - "siteRegistry": false + "siteRegistry": true } ], - "associatedSites": [ + "suspectLandUses": [ { - "dateNoted": "2021-02-21", - "notes": "", - "parcelID": "15841", - "siteID": "16935", - "siteRegistry": true + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2019-07-10 (described on Site Profile dated 2019-07-10)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2022-12-30 (described on Site Profile dated 2022-12-30)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2015-03-25 (described on Site Profile dated 2015-03-25)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2018-12-18 (described on Site Profile dated 2018-12-18)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } - ] - }, - { - "uuid": "e8b2e1eb-d6a0-46ba-84d9-a89649edd4ae", - "siteID": 17151, - "address": "187 Jerde Cove", - "latitude": 58.14, - "longitude": -122.2097, - "lastUpdated": "2015-11-30", - "city": "Burbank", - "region": " North Coast", - "victoriaFile": "26250-20/19322", - "regionalFile": "N/A", - "parcelIDs": [ - 4328372, - 8825104, - 8387338, - 272488, - 1326882 ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ + "siteDisclosures": [ { - "createdAt": "2020-02-06", - "completed": "2021-02-19", - "initiated": "2016-10-19", - "ministryContact": "REYNOLDS STUART", + "siteRegistry": false, + "dateReceived": "2022-12-05", + "dateCompleted": "2021-03-21", + "dateEntered": "2019-06-05", + "dateRegistrar": "2016-12-08", + "dateLocalAuthorityReceived": "2016-02-02", + "summary": "Reiciendis quisquam sit.\nIusto neque ipsum excepturi enim beatae quibusdam repellat at.", + "informationUsed": "Velit quod et nihil.\nMollitia exercitationem quo mollitia officia beatae.\nIpsam veritatis sit nesciunt voluptatum dolores velit.\nDebitis ipsam nisi.\nVeniam nihil nobis.", + "pastOrPresentOrders": "Molestiae necessitatibus facilis velit voluptas tempore fugit voluptatibus facere eveniet.\nNam itaque fuga error repudiandae.\nMagnam voluptatibus tempora voluptates minima.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + } + ] + }, + { + "siteRegistry": false, + "dateReceived": "2021-07-05", + "dateCompleted": "2017-12-04", + "dateEntered": "2017-11-02", + "dateRegistrar": "2016-04-22", + "dateLocalAuthorityReceived": "2019-03-14", + "summary": "Amet eum quia quam tempore consectetur labore.\nRatione iure ipsam sit ipsa.", + "informationUsed": "Totam corporis corporis sit alias ullam cupiditate eius.\nSapiente cupiditate numquam magnam.\nArchitecto fuga corporis saepe voluptate earum assumenda exercitationem nesciunt fugit.\nVoluptates expedita libero possimus minus ex.\nIpsa veritatis fugit occaecati nisi iusto totam.", + "pastOrPresentOrders": "Dignissimos molestiae commodi maiores commodi qui ipsum deserunt.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + } + ] + } + ], + "activityLog": [ + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "FEEST GLEN", + "timestamp": "2019-07-10" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "RIPPIN ITZEL", + "timestamp": "2020-03-05" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "WALTER-DENESIK PARKER", + "timestamp": "2018-06-17" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "SCHAEFER ADAM", + "timestamp": "2014-10-13" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "WATERS GUS", + "timestamp": "2013-11-05" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "ALTENWERTH-BASHIRIAN VERNON", + "timestamp": "2022-08-27" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "NITZSCHE HERMINIO", + "timestamp": "2017-11-20" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "PACOCHA SOLEDAD", + "timestamp": "2015-02-28" + } + ], + "associatedSites": [ + { + "dateNoted": "2015-12-11", + "notes": "", + "parcelID": "20449", + "siteID": "20320", + "siteRegistry": false + }, + { + "dateNoted": "2015-02-15", + "notes": "", + "parcelID": "15333", + "siteID": "18625", + "siteRegistry": true + } + ] + }, + { + "uuid": "ad074e7a-c562-432f-baa0-da908b368d8e", + "siteID": 19506, + "address": "497 Mavis Path", + "latitude": 54.8447, + "longitude": -134.1094, + "lastUpdated": "2022-08-17", + "city": "West Elberthaven", + "region": "Kootenay", + "victoriaFile": "26250-20/2197", + "regionalFile": "N/A", + "parcelIDs": [ + 5047752, + 4523275, + 7107586, + 5151425, + 7699791 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2017-05-08", + "completed": "2015-10-01", + "initiated": "2014-10-13", + "ministryContact": "LAKIN ALLAN", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -5063,20 +6402,10 @@ "role": "REQUESTED BY", "siteRegistry": false }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", @@ -5084,13 +6413,13 @@ "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2019-10-28", - "completed": "2015-04-18", - "initiated": "2015-05-20", - "ministryContact": "HERMISTON DANNY", + "createdAt": "2018-05-31", + "completed": "2022-10-20", + "initiated": "2022-11-07", + "ministryContact": "CONSIDINE DEMETRIS", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -5098,13 +6427,23 @@ "" ], "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true }, @@ -5112,25 +6451,45 @@ "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false - }, + } + ], + "siteRegistry": true + }, + { + "createdAt": "2016-10-07", + "completed": "2017-03-27", + "initiated": "2017-04-28", + "ministryContact": "PROSACCO BETTY", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true } ], "siteRegistry": false }, { - "createdAt": "2019-07-24", - "completed": "2015-04-10", - "initiated": "2017-10-01", - "ministryContact": "GLOVER KAY", + "createdAt": "2018-03-07", + "completed": "2023-09-09", + "initiated": "2015-09-23", + "ministryContact": "CREMIN ARDITH", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -5140,12 +6499,7 @@ "notationParticipants": [ { "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true }, { @@ -5154,19 +6508,19 @@ "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true } ], "participants": [ { "name": "AMET, DOLOR SIT", - "endDate": "2016-01-19", - "startDate": "2015-07-25", + "endDate": "2018-09-23", + "startDate": "2019-09-27", "notes": "", "roles": [ "ORGANIZATION" @@ -5174,19 +6528,19 @@ "siteRegistry": true }, { - "name": "IPSUM", - "endDate": "2017-06-08", - "startDate": "2020-08-06", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2015-06-04", + "startDate": "2019-04-05", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2019-03-31", - "startDate": "2021-09-04", + "name": "AMET, DOLOR SIT", + "endDate": "2020-10-19", + "startDate": "2014-10-20", "notes": "", "roles": [ "EMPLOYEE" @@ -5194,9 +6548,9 @@ "siteRegistry": false }, { - "name": "AMET, DOLOR SIT", - "endDate": "2018-04-13", - "startDate": "2021-09-27", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2019-10-13", + "startDate": "2016-10-05", "notes": "", "roles": [ "EMPLOYEE" @@ -5204,227 +6558,144 @@ "siteRegistry": false } ], - "associatedSites": [ + "suspectLandUses": [ { - "dateNoted": "2019-08-23", - "notes": "", - "parcelID": "16545", - "siteID": "15775", - "siteRegistry": true + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2020-02-08 (described on Site Profile dated 2020-02-08)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "dateNoted": "2017-04-12", - "notes": "", - "parcelID": "17864", - "siteID": "19819", - "siteRegistry": false + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2017-07-16 (described on Site Profile dated 2017-07-16)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "dateNoted": "2019-01-03", - "notes": "", - "parcelID": "20426", - "siteID": "18969", - "siteRegistry": false + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2016-04-13 (described on Site Profile dated 2016-04-13)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } - ] - }, - { - "uuid": "8132ad47-ba3d-4b69-aa59-6a6189a0e894", - "siteID": 19589, - "address": "60099 Hilll Wells", - "latitude": 53.107, - "longitude": -121.118, - "lastUpdated": "2013-10-18", - "city": "Austinland", - "region": "Mainland/Southwest", - "victoriaFile": "26250-20/3542", - "regionalFile": "N/A", - "parcelIDs": [ - 6558411, - 8787749, - 2730018, - 2868429, - 2945412 ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ + "siteDisclosures": [ { - "createdAt": "2018-09-02", - "completed": "2017-10-04", - "initiated": "2015-02-22", - "ministryContact": "HAAG KAY", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ + "siteRegistry": false, + "dateReceived": "2015-08-09", + "dateCompleted": "2020-01-01", + "dateEntered": "2017-05-06", + "dateRegistrar": "2017-10-27", + "dateLocalAuthorityReceived": "2016-03-19", + "summary": "Corporis facere voluptates fugit.\nCum quisquam odit rerum hic qui qui.\nAut adipisci non labore incidunt officia aliquam.", + "informationUsed": "Nobis laudantium deleniti nulla quam praesentium.\nExplicabo reiciendis aliquid.\nDelectus culpa possimus tenetur praesentium aliquid illum rem sunt magni.\nMolestiae incidunt odio numquam.", + "pastOrPresentOrders": "Occaecati neque occaecati molestiae temporibus asperiores pariatur sunt delectus ratione.\nFugiat id iste accusantium exercitationem eveniet.\nTemporibus animi porro.", + "commercialAndIndustrialPurposes": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - } - ], - "siteRegistry": true - }, - { - "createdAt": "2018-09-11", - "completed": "2013-10-11", - "initiated": "2017-12-04", - "ministryContact": "BEIER ASHTYN", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - } - ], - "siteRegistry": true - }, - { - "createdAt": "2016-02-15", - "completed": "2023-07-22", - "initiated": "2016-10-21", - "ministryContact": "BRUEN MANUEL", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false } - ], - "siteRegistry": false + ] } ], - "participants": [ + "activityLog": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2022-08-22", - "startDate": "2015-10-14", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": false + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "STROMAN LUCIANO", + "timestamp": "2021-05-16" }, { - "name": "IPSUM", - "endDate": "2017-05-13", - "startDate": "2020-11-11", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": true + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "REYNOLDS LENORE", + "timestamp": "2023-06-08" }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2019-09-05", - "startDate": "2022-05-14", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": true + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "HOPPE GEO", + "timestamp": "2015-01-24" }, { - "name": "IPSUM", - "endDate": "2023-08-09", - "startDate": "2019-01-12", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": true + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "CORMIER DERICK", + "timestamp": "2014-01-20" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "SCHUPPE EDISON", + "timestamp": "2019-03-13" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "HERMANN HORTENSE", + "timestamp": "2020-09-09" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "WILL SANFORD", + "timestamp": "2017-06-07" } ], "associatedSites": [ { - "dateNoted": "2018-05-24", + "dateNoted": "2018-08-15", "notes": "", - "parcelID": "17936", - "siteID": "20858", + "parcelID": "20043", + "siteID": "20188", "siteRegistry": false }, { - "dateNoted": "2016-03-28", + "dateNoted": "2016-04-04", "notes": "", - "parcelID": "18183", - "siteID": "19084", + "parcelID": "17209", + "siteID": "20178", "siteRegistry": true - }, - { - "dateNoted": "2020-05-25", - "notes": "", - "parcelID": "18543", - "siteID": "19773", - "siteRegistry": false } ] }, { - "uuid": "6ecef19f-a528-482d-916c-788634b47944", - "siteID": 15919, - "address": "89529 Onie Neck", - "latitude": 52.599, - "longitude": -137.2404, - "lastUpdated": "2023-03-25", - "city": "Mathiasmouth", - "region": "Vancouver Island/Coast", - "victoriaFile": "26250-20/5047", + "uuid": "8fee1a65-273f-4a27-9a9f-af960cd08998", + "siteID": 20782, + "address": "58436 Celine Lights", + "latitude": 48.9787, + "longitude": -128.7369, + "lastUpdated": "2020-12-25", + "city": "Ciaraberg", + "region": "Cariboo", + "victoriaFile": "26250-20/13041", "regionalFile": "N/A", "parcelIDs": [ - 2773461, - 2179915, - 5646421, - 8422943, - 576914 + 3324900, + 9389091, + 3929151, + 3947082, + 6259739 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2017-07-11", - "completed": "2017-02-22", - "initiated": "2022-05-26", - "ministryContact": "MCKENZIE META", + "createdAt": "2021-08-07", + "completed": "2020-08-11", + "initiated": "2022-07-18", + "ministryContact": "WALKER CICERO", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -5435,11 +6706,6 @@ { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", "siteRegistry": true }, { @@ -5451,10 +6717,10 @@ "siteRegistry": true }, { - "createdAt": "2017-02-13", - "completed": "2018-10-20", - "initiated": "2018-11-30", - "ministryContact": "KOELPIN BERNIE", + "createdAt": "2017-11-14", + "completed": "2022-01-09", + "initiated": "2017-08-11", + "ministryContact": "DICKI CONSUELO", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -5462,11 +6728,6 @@ "" ], "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", @@ -5475,11 +6736,16 @@ { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true }, { @@ -5488,13 +6754,13 @@ "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2023-07-27", - "completed": "2022-10-20", - "initiated": "2020-03-27", - "ministryContact": "MURRAY LISA", + "createdAt": "2022-07-11", + "completed": "2020-08-14", + "initiated": "2016-01-23", + "ministryContact": "LEGROS EUGENIA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -5503,18 +6769,53 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "createdAt": "2018-10-04", + "completed": "2015-05-03", + "initiated": "2017-10-04", + "ministryContact": "SCHULTZ JONATHON", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": true }, { @@ -5527,106 +6828,194 @@ } ], "participants": [ - { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2017-01-22", - "startDate": "2019-11-30", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": true - }, { "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2020-04-06", - "startDate": "2021-04-26", + "endDate": "2019-04-17", + "startDate": "2018-06-11", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2020-05-25", - "startDate": "2016-02-26", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2018-01-11", + "startDate": "2015-02-10", "notes": "", "roles": [ "EMPLOYEE" ], "siteRegistry": true + } + ], + "suspectLandUses": [ + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2021-02-20 (described on Site Profile dated 2021-02-20)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2022-01-23", - "startDate": "2023-08-11", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": false + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2016-04-29 (described on Site Profile dated 2016-04-29)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + } + ], + "siteDisclosures": [ + { + "siteRegistry": true, + "dateReceived": "2020-10-27", + "dateCompleted": "2020-10-31", + "dateEntered": "2022-05-28", + "dateRegistrar": "2020-05-16", + "dateLocalAuthorityReceived": "2013-12-06", + "summary": "Aliquam et corporis repellendus sit expedita ad corporis quae.\nIpsam illum sint in maiores incidunt soluta totam cum.\nConsectetur quod hic fuga fugit fugit natus minima accusamus.", + "informationUsed": "Veritatis nesciunt fugiat quis suscipit soluta sed nobis.\nQuidem deserunt provident animi repellendus non quis eius.\nExplicabo illo sint iste reiciendis earum maxime.\nSed nam deserunt pariatur repudiandae non corporis itaque reiciendis architecto.", + "pastOrPresentOrders": "Amet consequatur placeat ipsa.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + } + ] }, { - "name": "IPSUM", - "endDate": "2019-11-14", - "startDate": "2019-11-04", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": false + "siteRegistry": false, + "dateReceived": "2013-11-18", + "dateCompleted": "2020-02-24", + "dateEntered": "2016-01-24", + "dateRegistrar": "2017-10-17", + "dateLocalAuthorityReceived": "2018-04-24", + "summary": "Ipsa veniam asperiores dolore necessitatibus quibusdam.", + "informationUsed": "Mollitia tempora illo incidunt error odit autem nisi ducimus velit.\nSaepe laborum cumque quibusdam ut minima fugiat.\nUnde eius voluptates asperiores voluptatum asperiores dicta.\nNeque excepturi magnam enim similique temporibus sed neque.\nConsequatur in laborum reiciendis.", + "pastOrPresentOrders": "Vero nisi veritatis perspiciatis nisi adipisci cumque.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + } + ] } ], - "associatedSites": [ + "activityLog": [ { - "dateNoted": "2018-09-22", - "notes": "", - "parcelID": "20794", - "siteID": "15609", - "siteRegistry": false + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "CROOKS TERRELL", + "timestamp": "2022-02-17" }, { - "dateNoted": "2019-08-20", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "GUSIKOWSKI DAYNE", + "timestamp": "2023-08-30" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "HAND PABLO", + "timestamp": "2021-12-14" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "SCHULIST JOAN", + "timestamp": "2017-09-24" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "CORKERY LAVONNE", + "timestamp": "2014-05-24" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "GUSIKOWSKI TRE", + "timestamp": "2014-07-24" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "GREENHOLT DIANA", + "timestamp": "2018-03-04" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "ULLRICH JAMARCUS", + "timestamp": "2022-03-30" + } + ], + "associatedSites": [ + { + "dateNoted": "2017-07-26", "notes": "", - "parcelID": "18631", - "siteID": "17237", - "siteRegistry": true + "parcelID": "17522", + "siteID": "20367", + "siteRegistry": false }, { - "dateNoted": "2014-12-21", + "dateNoted": "2023-09-05", "notes": "", - "parcelID": "18870", - "siteID": "16351", + "parcelID": "16912", + "siteID": "17477", "siteRegistry": true } ] }, { - "uuid": "a8c175b6-d835-4797-91bf-74aa762727c2", - "siteID": 18771, - "address": "388 Abigayle Avenue", - "latitude": 48.256, - "longitude": -131.9577, - "lastUpdated": "2018-03-14", - "city": "Downers Grove", - "region": "Vancouver Island/Coast", - "victoriaFile": "26250-20/15123", + "uuid": "c5a5d833-cb8e-47e1-a476-cf27f56d5aeb", + "siteID": 15754, + "address": "799 Marvin Bypass", + "latitude": 58.8671, + "longitude": -120.1413, + "lastUpdated": "2020-12-10", + "city": "Camarillo", + "region": "Cariboo", + "victoriaFile": "26250-20/5746", "regionalFile": "N/A", "parcelIDs": [ - 4324637, - 4985237, - 3001840, - 5344710, - 6220732 + 244923, + 3678274, + 3728336, + 5833731, + 3627698 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2021-07-13", - "completed": "2016-02-25", - "initiated": "2021-09-14", - "ministryContact": "CONROY ISAC", + "createdAt": "2017-06-17", + "completed": "2015-01-31", + "initiated": "2014-12-01", + "ministryContact": "RUTHERFORD PATRICK", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -5634,6 +7023,11 @@ "" ], "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", @@ -5641,17 +7035,17 @@ }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false + "role": "SUBMITTED BY", + "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2019-08-31", - "completed": "2022-01-09", - "initiated": "2021-09-15", - "ministryContact": "KUHLMAN AGUSTIN", + "createdAt": "2015-05-28", + "completed": "2022-05-13", + "initiated": "2019-02-04", + "ministryContact": "SCHULIST CAREY", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -5660,24 +7054,24 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true } ], "participants": [ { "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2022-06-28", - "startDate": "2020-07-17", + "endDate": "2017-07-24", + "startDate": "2018-11-17", "notes": "", "roles": [ "EMPLOYEE" @@ -5685,9 +7079,9 @@ "siteRegistry": true }, { - "name": "AMET, DOLOR SIT", - "endDate": "2015-07-27", - "startDate": "2020-01-02", + "name": "IPSUM", + "endDate": "2016-11-16", + "startDate": "2014-01-20", "notes": "", "roles": [ "EMPLOYEE" @@ -5696,74 +7090,154 @@ }, { "name": "IPSUM", - "endDate": "2020-10-31", - "startDate": "2021-11-16", + "endDate": "2020-07-01", + "startDate": "2018-06-08", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false + } + ], + "suspectLandUses": [ + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2015-11-11 (described on Site Profile dated 2015-11-11)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2014-03-23", - "startDate": "2020-09-29", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": true + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2020-10-09 (described on Site Profile dated 2020-10-09)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2015-12-30 (described on Site Profile dated 2015-12-30)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2017-04-21 (described on Site Profile dated 2017-04-21)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2022-12-25 (described on Site Profile dated 2022-12-25)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + } + ], + "siteDisclosures": [ + { + "siteRegistry": false, + "dateReceived": "2021-11-25", + "dateCompleted": "2017-11-02", + "dateEntered": "2017-06-05", + "dateRegistrar": "2022-06-30", + "dateLocalAuthorityReceived": "2021-07-08", + "summary": "Pariatur nisi laborum.", + "informationUsed": "Explicabo delectus voluptas voluptates architecto nam sed voluptatum repellat fugit.\nPraesentium tenetur nulla.\nA provident impedit exercitationem fugit laudantium architecto deleniti nobis.\nIusto dicta laudantium ex aspernatur.\nFacere facilis illum repellat quos possimus explicabo assumenda.", + "pastOrPresentOrders": "Facilis rerum a soluta perferendis laudantium.\nLibero quod temporibus ex maxime incidunt voluptas.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + } + ] + } + ], + "activityLog": [ + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "BALISTRERI AMERICA", + "timestamp": "2014-08-14" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "HUDSON GRAYSON", + "timestamp": "2018-05-12" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "SHIELDS JOVAN", + "timestamp": "2021-10-22" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "MURRAY JOSEPH", + "timestamp": "2019-03-09" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "WIZA AMARI", + "timestamp": "2021-12-27" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "HEATHCOTE ISAAC", + "timestamp": "2018-04-14" } ], "associatedSites": [ { - "dateNoted": "2015-12-04", + "dateNoted": "2016-01-01", "notes": "", - "parcelID": "20332", - "siteID": "19777", + "parcelID": "18687", + "siteID": "18243", "siteRegistry": true }, { - "dateNoted": "2015-06-03", + "dateNoted": "2014-12-24", "notes": "", - "parcelID": "20434", - "siteID": "19037", - "siteRegistry": true + "parcelID": "16257", + "siteID": "17810", + "siteRegistry": false }, { - "dateNoted": "2023-02-14", + "dateNoted": "2020-10-21", "notes": "", - "parcelID": "16178", - "siteID": "18319", + "parcelID": "16888", + "siteID": "16552", "siteRegistry": true } ] }, { - "uuid": "d06dba96-610b-4552-a0b8-1125fa1dd55f", - "siteID": 19380, - "address": "431 Conner Bridge", - "latitude": 56.2589, - "longitude": -123.2851, - "lastUpdated": "2019-10-09", - "city": "Haagstead", - "region": "Kootenay", - "victoriaFile": "26250-20/10368", + "uuid": "f1509121-e4db-4ece-8bed-577b199d5b0c", + "siteID": 17477, + "address": "80484 Landen Squares", + "latitude": 57.7876, + "longitude": -122.8314, + "lastUpdated": "2016-01-22", + "city": "South Gina", + "region": " North Coast", + "victoriaFile": "26250-20/5433", "regionalFile": "N/A", "parcelIDs": [ - 5232200, - 4151889, - 2376668, - 7787557, - 4783937 + 1710884, + 4681367, + 2146779, + 9893851, + 8627776 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2023-09-23", - "completed": "2020-02-11", - "initiated": "2014-06-22", - "ministryContact": "WELCH DARRON", + "createdAt": "2020-07-14", + "completed": "2023-01-15", + "initiated": "2019-05-30", + "ministryContact": "TURNER JULES", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -5774,31 +7248,31 @@ { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false + "role": "SUBMITTED BY", + "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false + "role": "SUBMITTED BY", + "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2013-12-08", - "completed": "2022-10-27", - "initiated": "2022-07-27", - "ministryContact": "DANIEL YESENIA", + "createdAt": "2022-10-19", + "completed": "2017-07-07", + "initiated": "2019-11-14", + "ministryContact": "SHIELDS GABRIELLE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -5812,18 +7286,23 @@ "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2022-11-08", - "completed": "2018-10-01", - "initiated": "2020-07-03", - "ministryContact": "MURPHY PRESLEY", + "createdAt": "2020-09-18", + "completed": "2016-08-26", + "initiated": "2017-07-10", + "ministryContact": "BODE JOSIANNE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -5841,14 +7320,9 @@ "role": "SUBMITTED BY", "siteRegistry": true }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false }, { @@ -5857,20 +7331,209 @@ "siteRegistry": true } ], + "siteRegistry": false + } + ], + "participants": [ + { + "name": "IPSUM", + "endDate": "2018-09-29", + "startDate": "2021-01-10", + "notes": "", + "roles": [ + "ORGANIZATION" + ], "siteRegistry": true }, { - "createdAt": "2014-04-12", - "completed": "2023-08-15", - "initiated": "2013-10-10", - "ministryContact": "LABADIE DEDRICK", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" + "name": "IPSUM", + "endDate": "2022-12-19", + "startDate": "2014-09-07", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "name": "IPSUM", + "endDate": "2022-05-08", + "startDate": "2015-04-10", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + } + ], + "suspectLandUses": [ + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2020-02-17 (described on Site Profile dated 2020-02-17)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2023-04-20 (described on Site Profile dated 2023-04-20)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2019-12-17 (described on Site Profile dated 2019-12-17)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + } + ], + "siteDisclosures": [ + { + "siteRegistry": false, + "dateReceived": "2016-03-20", + "dateCompleted": "2023-05-12", + "dateEntered": "2023-05-29", + "dateRegistrar": "2015-08-09", + "dateLocalAuthorityReceived": "2020-01-16", + "summary": "Architecto odit recusandae temporibus.\nNam assumenda rerum deleniti facilis.", + "informationUsed": "Hic cumque impedit quis quaerat minus temporibus minus.\nCupiditate aut vitae blanditiis quod.\nQuasi exercitationem iste quae illum vitae voluptatem quasi.", + "pastOrPresentOrders": "Accusamus eligendi eum aliquam unde vel eos adipisci amet asperiores.\nEius laborum voluptate.\nAlias nobis aut alias facere eligendi accusantium esse explicabo quam.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + } + ] + } + ], + "activityLog": [ + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "WYMAN NORENE", + "timestamp": "2020-09-23" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "ARMSTRONG JEFFEREY", + "timestamp": "2016-04-27" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "ROSENBAUM JABARI", + "timestamp": "2015-04-17" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "JOHNSON FLORIAN", + "timestamp": "2016-12-04" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "HERZOG SEAN", + "timestamp": "2016-09-03" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "CUMMERATA FRANCES", + "timestamp": "2018-10-13" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "MITCHELL JUANA", + "timestamp": "2017-06-06" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "DOOLEY LOYAL", + "timestamp": "2014-04-15" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "GERLACH MAE", + "timestamp": "2014-05-11" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "WILLMS GIOVANNI", + "timestamp": "2019-08-29" + } + ], + "associatedSites": [ + { + "dateNoted": "2022-06-08", + "notes": "", + "parcelID": "15507", + "siteID": "17548", + "siteRegistry": false + }, + { + "dateNoted": "2014-04-26", + "notes": "", + "parcelID": "20635", + "siteID": "19899", + "siteRegistry": false + } + ] + }, + { + "uuid": "b487f479-57d1-400e-ade3-18bf699eeb10", + "siteID": 19011, + "address": "425 Kohler Well", + "latitude": 54.3039, + "longitude": -124.4061, + "lastUpdated": "2020-04-25", + "city": "Gerholdcester", + "region": "Mainland/Southwest", + "victoriaFile": "26250-20/19274", + "regionalFile": "N/A", + "parcelIDs": [ + 7313836, + 290048, + 3877266, + 8915981, + 4409346 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2017-03-23", + "completed": "2021-02-08", + "initiated": "2016-08-28", + "ministryContact": "WELCH GERARD", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" ], "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", @@ -5885,15 +7548,20 @@ "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2020-09-15", - "completed": "2015-02-18", - "initiated": "2018-10-20", - "ministryContact": "GOODWIN-DOUGLAS JACINTHE", + "createdAt": "2014-10-06", + "completed": "2016-01-22", + "initiated": "2015-11-13", + "ministryContact": "LUETTGEN JAYLON", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -5901,11 +7569,6 @@ "" ], "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", @@ -5913,13 +7576,13 @@ }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false } ], "siteRegistry": false @@ -5928,90 +7591,171 @@ "participants": [ { "name": "AMET, DOLOR SIT", - "endDate": "2019-06-01", - "startDate": "2014-12-06", + "endDate": "2023-01-18", + "startDate": "2014-05-16", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": true }, { "name": "IPSUM", - "endDate": "2017-03-23", - "startDate": "2021-03-03", + "endDate": "2021-12-31", + "startDate": "2017-03-29", "notes": "", "roles": [ "EMPLOYEE" ], "siteRegistry": false + } + ], + "suspectLandUses": [ + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2021-11-18 (described on Site Profile dated 2021-11-18)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "name": "AMET, DOLOR SIT", - "endDate": "2014-12-20", - "startDate": "2015-01-21", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": false + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2021-08-23 (described on Site Profile dated 2021-08-23)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "name": "IPSUM", - "endDate": "2016-03-02", - "startDate": "2020-02-11", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": false + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2016-01-24 (described on Site Profile dated 2016-01-24)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + } + ], + "siteDisclosures": [ + { + "siteRegistry": true, + "dateReceived": "2018-06-28", + "dateCompleted": "2018-12-19", + "dateEntered": "2017-04-09", + "dateRegistrar": "2023-06-03", + "dateLocalAuthorityReceived": "2022-11-21", + "summary": "Laudantium quae dolorem beatae soluta itaque ipsa quaerat.", + "informationUsed": "Tempore totam ad perspiciatis quo commodi optio assumenda.\nIure molestias iste velit tempore illum impedit veritatis.\nTempore inventore dignissimos porro.\nLaudantium nesciunt exercitationem debitis.\nDolores unde eum nulla explicabo.", + "pastOrPresentOrders": "Esse illum nemo officiis perspiciatis quibusdam vitae repudiandae.\nVoluptates velit veniam distinctio ratione.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + } + ] + } + ], + "activityLog": [ + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "KESSLER DAPHNE", + "timestamp": "2014-09-07" }, { - "name": "IPSUM", - "endDate": "2021-12-18", - "startDate": "2021-06-06", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": false + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "DOUGLAS DOCK", + "timestamp": "2016-08-19" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "SKILES FRANZ", + "timestamp": "2023-07-01" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "BERNIER LYDA", + "timestamp": "2014-03-20" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "MOORE KRYSTINA", + "timestamp": "2018-09-04" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "CARTWRIGHT ZENA", + "timestamp": "2021-12-26" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "GIBSON EMERSON", + "timestamp": "2017-06-11" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "WISOZK BERTRAM", + "timestamp": "2020-02-11" } ], "associatedSites": [ { - "dateNoted": "2016-03-03", + "dateNoted": "2016-10-22", "notes": "", - "parcelID": "15275", - "siteID": "19093", + "parcelID": "19038", + "siteID": "20727", "siteRegistry": true + }, + { + "dateNoted": "2016-03-01", + "notes": "", + "parcelID": "16468", + "siteID": "19246", + "siteRegistry": false + }, + { + "dateNoted": "2022-08-23", + "notes": "", + "parcelID": "20519", + "siteID": "20948", + "siteRegistry": false } ] }, { - "uuid": "48d3aa0a-6152-4261-9fcb-6e32f205ef14", - "siteID": 19572, - "address": "567 Runolfsson Track", - "latitude": 56.2612, - "longitude": -137.6122, - "lastUpdated": "2022-02-01", - "city": "Fort Rosemarie", - "region": " North Coast", - "victoriaFile": "26250-20/13618", + "uuid": "103f7975-5929-40cf-b3af-e5653fe0d8be", + "siteID": 17648, + "address": "6821 Donna Radial", + "latitude": 57.9162, + "longitude": -120.3331, + "lastUpdated": "2023-03-16", + "city": "Kirlinton", + "region": "Thompson-Okanagan", + "victoriaFile": "26250-20/6426", "regionalFile": "N/A", "parcelIDs": [ - 5836733, - 7554615, - 5918876, - 9790396, - 9623743 + 4902672, + 3234095, + 3573481, + 3778640, + 8966064 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2015-03-13", - "completed": "2019-12-30", - "initiated": "2019-10-23", - "ministryContact": "MOSCISKI DORIAN", + "createdAt": "2015-09-20", + "completed": "2016-10-28", + "initiated": "2016-07-30", + "ministryContact": "DOUGLAS NIKKI", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -6020,23 +7764,23 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false } ], "siteRegistry": true }, { - "createdAt": "2015-12-23", - "completed": "2018-07-29", - "initiated": "2015-08-27", - "ministryContact": "RUNOLFSDOTTIR BART", + "createdAt": "2022-05-06", + "completed": "2015-06-23", + "initiated": "2014-04-22", + "ministryContact": "FRANECKI BRITTANY", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -6044,6 +7788,11 @@ "" ], "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", @@ -6058,20 +7807,15 @@ "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true } ], "siteRegistry": false }, { - "createdAt": "2021-08-08", - "completed": "2015-10-12", - "initiated": "2015-11-26", - "ministryContact": "FAY NYASIA", + "createdAt": "2014-10-31", + "completed": "2020-07-11", + "initiated": "2019-07-25", + "ministryContact": "MITCHELL HELMER", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -6079,49 +7823,39 @@ "" ], "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true - } - ], - "siteRegistry": false - }, - { - "createdAt": "2020-04-05", - "completed": "2015-03-15", - "initiated": "2020-02-26", - "ministryContact": "HOWELL NICK", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ + }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true } ], "siteRegistry": true }, { - "createdAt": "2018-06-19", - "completed": "2023-08-04", - "initiated": "2021-04-28", - "ministryContact": "TREMBLAY TYRIQUE", + "createdAt": "2016-10-26", + "completed": "2019-08-20", + "initiated": "2014-09-30", + "ministryContact": "METZ JUDSON", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -6130,14 +7864,14 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true } ], "siteRegistry": true @@ -6145,232 +7879,223 @@ ], "participants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2014-05-07", - "startDate": "2019-10-30", + "name": "IPSUM", + "endDate": "2022-12-15", + "startDate": "2016-04-20", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": true }, { "name": "AMET, DOLOR SIT", - "endDate": "2023-02-02", - "startDate": "2023-02-27", + "endDate": "2016-07-21", + "startDate": "2018-12-08", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": false - } - ], - "associatedSites": [ + }, { - "dateNoted": "2015-09-07", + "name": "AMET, DOLOR SIT", + "endDate": "2015-08-05", + "startDate": "2019-10-11", "notes": "", - "parcelID": "16823", - "siteID": "17692", + "roles": [ + "EMPLOYEE" + ], "siteRegistry": false }, { - "dateNoted": "2022-01-03", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2021-07-09", + "startDate": "2023-08-05", "notes": "", - "parcelID": "19656", - "siteID": "20023", + "roles": [ + "ORGANIZATION" + ], "siteRegistry": false + } + ], + "suspectLandUses": [ + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2022-06-01 (described on Site Profile dated 2022-06-01)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "dateNoted": "2023-09-23", - "notes": "", - "parcelID": "15524", - "siteID": "15855", - "siteRegistry": false + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2016-11-03 (described on Site Profile dated 2016-11-03)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2021-05-13 (described on Site Profile dated 2021-05-13)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2016-01-29 (described on Site Profile dated 2016-01-29)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2016-05-21 (described on Site Profile dated 2016-05-21)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } - ] - }, - { - "uuid": "69df1f2c-f564-4fb0-9058-cc8a407eaa84", - "siteID": 20250, - "address": "34741 Grant Club", - "latitude": 54.5821, - "longitude": -121.4634, - "lastUpdated": "2021-08-28", - "city": "West Markus", - "region": "Kootenay", - "victoriaFile": "26250-20/13755", - "regionalFile": "N/A", - "parcelIDs": [ - 1430449, - 8959150, - 6801023, - 1328923, - 2116242 ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ + "siteDisclosures": [ { - "createdAt": "2020-06-06", - "completed": "2017-03-26", - "initiated": "2018-08-26", - "ministryContact": "KUPHAL HILARIO", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ + "siteRegistry": false, + "dateReceived": "2016-11-20", + "dateCompleted": "2014-12-29", + "dateEntered": "2015-01-16", + "dateRegistrar": "2021-11-01", + "dateLocalAuthorityReceived": "2018-12-09", + "summary": "Recusandae ratione magni odio voluptates.", + "informationUsed": "Cum nam explicabo nostrum autem corporis dicta.\nMinima impedit at non laudantium perferendis sapiente officia vero at.\nQuod impedit tempora quisquam ut magnam aliquam repellat tempore.\nExpedita quae tenetur a nihil sint consequuntur fugit unde.", + "pastOrPresentOrders": "Perspiciatis quae culpa laboriosam quam.\nPorro eius in beatae vel quis.", + "commercialAndIndustrialPurposes": [ { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true } - ], - "siteRegistry": true + ] }, { - "createdAt": "2022-09-23", - "completed": "2019-02-10", - "initiated": "2016-08-15", - "ministryContact": "TRANTOW EZEQUIEL", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, + "siteRegistry": false, + "dateReceived": "2023-06-24", + "dateCompleted": "2021-08-18", + "dateEntered": "2014-03-25", + "dateRegistrar": "2022-12-20", + "dateLocalAuthorityReceived": "2014-02-22", + "summary": "Necessitatibus ducimus reiciendis eligendi nihil animi itaque similique doloribus quidem.\nTemporibus ut non accusamus rerum aspernatur.", + "informationUsed": "Magni doloribus occaecati corporis neque quas nisi.\nModi distinctio assumenda recusandae quasi odio vero delectus commodi distinctio.\nExpedita excepturi dolore delectus.\nLaudantium accusamus ea delectus.", + "pastOrPresentOrders": "Nisi ipsa rerum consectetur esse eaque laborum deleniti aliquid voluptas.\nInventore rem cupiditate repudiandae eligendi dolore consequatur fuga veniam.\nMollitia quibusdam velit.", + "commercialAndIndustrialPurposes": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true } - ], - "siteRegistry": true + ] } ], - "participants": [ + "activityLog": [ { - "name": "IPSUM", - "endDate": "2020-01-24", - "startDate": "2015-07-23", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": true + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "KASSULKE ROWLAND", + "timestamp": "2017-08-08" }, { - "name": "AMET, DOLOR SIT", - "endDate": "2015-07-21", - "startDate": "2016-03-11", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": false + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "BEAHAN BEAU", + "timestamp": "2016-10-02" }, { - "name": "IPSUM", - "endDate": "2017-03-24", - "startDate": "2022-02-13", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": false + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "MORISSETTE NICHOLE", + "timestamp": "2016-05-01" }, { - "name": "AMET, DOLOR SIT", - "endDate": "2015-11-03", - "startDate": "2023-04-02", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": false + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "FADEL-TORPHY DEION", + "timestamp": "2019-11-05" }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2015-06-21", - "startDate": "2013-11-24", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": false - } - ], - "associatedSites": [ + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "MONAHAN XZAVIER", + "timestamp": "2014-11-13" + }, { - "dateNoted": "2014-09-14", - "notes": "", - "parcelID": "17047", - "siteID": "15361", - "siteRegistry": false + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "CREMIN HOBART", + "timestamp": "2015-10-04" }, { - "dateNoted": "2016-05-24", - "notes": "", - "parcelID": "16035", - "siteID": "19903", - "siteRegistry": true + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "CARTWRIGHT CHEYANNE", + "timestamp": "2019-02-16" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "MILLS LUCIANO", + "timestamp": "2016-08-07" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "KUHN GERTRUDE", + "timestamp": "2019-11-07" }, { - "dateNoted": "2022-02-18", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "HAUCK RUPERT", + "timestamp": "2020-12-02" + } + ], + "associatedSites": [ + { + "dateNoted": "2020-01-24", "notes": "", - "parcelID": "15559", - "siteID": "18969", + "parcelID": "19609", + "siteID": "15574", "siteRegistry": true } ] }, { - "uuid": "b202a0b7-5b37-4f8b-a0dc-6028bbbc0a53", - "siteID": 17304, - "address": "1527 Mayert Unions", - "latitude": 49.2068, - "longitude": -126.4799, - "lastUpdated": "2019-06-21", - "city": "North Lulu", - "region": "Mainland/Southwest", - "victoriaFile": "26250-20/3408", + "uuid": "12a2934f-e2de-4a33-9823-c96932f1d3d0", + "siteID": 17181, + "address": "72767 Sally Brooks", + "latitude": 50.8595, + "longitude": -121.5817, + "lastUpdated": "2022-08-20", + "city": "Minervaboro", + "region": "Kootenay", + "victoriaFile": "26250-20/13539", "regionalFile": "N/A", "parcelIDs": [ - 3740673, - 5498381, - 2509728, - 4085551, - 8653345 + 7195020, + 8531703, + 218348, + 5056664, + 7088777 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2014-09-30", - "completed": "2014-11-07", - "initiated": "2019-05-15", - "ministryContact": "FEENEY ALIZA", + "createdAt": "2019-10-15", + "completed": "2021-03-28", + "initiated": "2023-03-06", + "ministryContact": "HEATHCOTE DARRYL", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -6379,23 +8104,23 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2018-11-02", - "completed": "2015-04-18", - "initiated": "2015-01-10", - "ministryContact": "KREIGER SHANIYA", + "createdAt": "2022-08-10", + "completed": "2018-11-27", + "initiated": "2022-01-12", + "ministryContact": "GOLDNER KACI", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -6404,7 +8129,7 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false }, @@ -6414,18 +8139,28 @@ "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true } ], "siteRegistry": true }, { - "createdAt": "2017-01-15", - "completed": "2020-03-04", - "initiated": "2017-12-31", - "ministryContact": "WINTHEISER ADAH", + "createdAt": "2021-09-27", + "completed": "2015-10-28", + "initiated": "2021-03-26", + "ministryContact": "WIEGAND-KLING OVA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -6433,29 +8168,19 @@ "" ], "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false } ], @@ -6463,20 +8188,40 @@ } ], "participants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2016-09-27", + "startDate": "2017-02-12", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2015-02-01", + "startDate": "2019-12-09", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, { "name": "IPSUM", - "endDate": "2022-05-13", - "startDate": "2017-07-12", + "endDate": "2023-07-20", + "startDate": "2022-05-26", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2014-04-20", - "startDate": "2016-01-20", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2017-07-18", + "startDate": "2015-05-20", "notes": "", "roles": [ "ORGANIZATION" @@ -6484,55 +8229,174 @@ "siteRegistry": true } ], - "associatedSites": [ + "suspectLandUses": [ { - "dateNoted": "2020-12-20", - "notes": "", - "parcelID": "18312", - "siteID": "16193", - "siteRegistry": true + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2016-01-24 (described on Site Profile dated 2016-01-24)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2018-09-19 (described on Site Profile dated 2018-09-19)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + } + ], + "siteDisclosures": [ + { + "siteRegistry": true, + "dateReceived": "2014-04-02", + "dateCompleted": "2014-02-22", + "dateEntered": "2023-08-08", + "dateRegistrar": "2019-12-24", + "dateLocalAuthorityReceived": "2015-01-27", + "summary": "At nihil voluptatem impedit quis nam veritatis molestiae illo.\nIn minus dicta veniam.\nAccusantium ipsum enim.", + "informationUsed": "Saepe asperiores ipsa quidem rerum eveniet tempora laudantium.\nPerspiciatis unde culpa harum nobis omnis.\nNumquam odit autem tempore vitae.", + "pastOrPresentOrders": "Saepe necessitatibus excepturi.\nAccusantium facilis exercitationem ipsum expedita.\nItaque sint soluta.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + } + ] + }, + { + "siteRegistry": true, + "dateReceived": "2014-10-11", + "dateCompleted": "2022-01-14", + "dateEntered": "2015-02-28", + "dateRegistrar": "2015-06-18", + "dateLocalAuthorityReceived": "2018-07-27", + "summary": "Illo labore modi.", + "informationUsed": "Sed quis sequi alias quidem velit id omnis cupiditate.\nQuos nihil maxime quam molestias.\nTenetur vitae voluptate rem deserunt dolorem voluptatibus asperiores.", + "pastOrPresentOrders": "Incidunt praesentium ad repudiandae quidem.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + } + ] + } + ], + "activityLog": [ + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "HUELS DEMARCUS", + "timestamp": "2017-06-15" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "HALEY JENA", + "timestamp": "2021-03-13" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "WEST JAVIER", + "timestamp": "2021-10-20" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "MOHR LOGAN", + "timestamp": "2017-04-20" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "MOORE CRUZ", + "timestamp": "2013-12-09" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "BEER PAUL", + "timestamp": "2019-06-18" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "ALTENWERTH MARIETTA", + "timestamp": "2018-06-21" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "WILLIAMSON EZEQUIEL", + "timestamp": "2015-01-04" }, { - "dateNoted": "2022-07-13", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "GUTKOWSKI DARION", + "timestamp": "2017-05-29" + } + ], + "associatedSites": [ + { + "dateNoted": "2017-07-04", "notes": "", - "parcelID": "17046", - "siteID": "18026", - "siteRegistry": false + "parcelID": "15481", + "siteID": "20361", + "siteRegistry": true }, { - "dateNoted": "2023-07-10", + "dateNoted": "2014-11-21", "notes": "", - "parcelID": "15377", - "siteID": "16559", + "parcelID": "17328", + "siteID": "17534", "siteRegistry": false } ] }, { - "uuid": "6b62aa3f-69d3-41f4-ab10-c5579523b18a", - "siteID": 20121, - "address": "36673 Eula Estates", - "latitude": 52.7732, - "longitude": -126.5176, - "lastUpdated": "2016-07-06", - "city": "Richardson", + "uuid": "f39f67f0-4e9e-4699-abdb-0780e35c1cda", + "siteID": 15342, + "address": "75017 Murphy Shore", + "latitude": 50.745, + "longitude": -118.9917, + "lastUpdated": "2022-02-16", + "city": "Somerville", "region": "Kootenay", - "victoriaFile": "26250-20/17939", + "victoriaFile": "26250-20/3339", "regionalFile": "N/A", "parcelIDs": [ - 1365055, - 1134021, - 9323153, - 3748543, - 4630316 + 8334602, + 4165961, + 3066943, + 3500689, + 4837272 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2015-02-20", - "completed": "2018-06-03", - "initiated": "2018-05-16", - "ministryContact": "SPORER-HILPERT CARROLL", + "createdAt": "2023-10-06", + "completed": "2018-02-20", + "initiated": "2018-03-18", + "ministryContact": "STAMM MONSERRAT", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -6542,27 +8406,27 @@ "notationParticipants": [ { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false } ], "siteRegistry": true }, { - "createdAt": "2014-11-18", - "completed": "2019-01-30", - "initiated": "2022-05-02", - "ministryContact": "WISOKY MALLORY", + "createdAt": "2014-03-04", + "completed": "2017-04-21", + "initiated": "2015-02-27", + "ministryContact": "HEGMANN RENE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -6573,56 +8437,209 @@ { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": false - } - ], - "siteRegistry": true - }, - { - "createdAt": "2016-12-18", - "completed": "2022-09-14", - "initiated": "2019-12-25", - "ministryContact": "CONSIDINE MODESTA", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ + }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + } + ], + "participants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2021-10-13", + "startDate": "2020-02-24", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2016-02-19", + "startDate": "2015-08-08", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "name": "IPSUM", + "endDate": "2017-11-16", + "startDate": "2022-05-14", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + } + ], + "suspectLandUses": [ + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2020-09-22 (described on Site Profile dated 2020-09-22)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2017-02-27 (described on Site Profile dated 2017-02-27)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + } + ], + "siteDisclosures": [ + { + "siteRegistry": false, + "dateReceived": "2015-01-22", + "dateCompleted": "2017-04-07", + "dateEntered": "2021-04-08", + "dateRegistrar": "2022-07-28", + "dateLocalAuthorityReceived": "2016-09-25", + "summary": "Officia placeat maxime ut vero.\nReprehenderit eum earum.", + "informationUsed": "Facere voluptatibus velit assumenda sequi maxime eos unde natus rem.\nDolor porro ipsam iste neque occaecati aut illum dolor.\nEnim expedita iure quas dolorum architecto eveniet itaque.", + "pastOrPresentOrders": "Aliquam ex repellat alias asperiores numquam error.\nOfficia rem velit numquam culpa id et cumque rerum.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + } + ] + } + ], + "activityLog": [ + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "KUB SAGE", + "timestamp": "2020-02-09" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "DANIEL KORY", + "timestamp": "2019-03-06" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "HANSEN KALLIE", + "timestamp": "2023-07-28" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "MCDERMOTT JAKE", + "timestamp": "2017-07-14" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "LEFFLER SUMMER", + "timestamp": "2021-02-21" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "QUIGLEY ANNABELLE", + "timestamp": "2021-09-09" + } + ], + "associatedSites": [ + { + "dateNoted": "2014-05-22", + "notes": "", + "parcelID": "20645", + "siteID": "15864", + "siteRegistry": false + } + ] + }, + { + "uuid": "f48fb772-11e2-47c7-9cd7-80701830a1f3", + "siteID": 20671, + "address": "42452 Lambert Garden", + "latitude": 55.4436, + "longitude": -119.0878, + "lastUpdated": "2021-06-09", + "city": "Olgastad", + "region": "Kootenay", + "victoriaFile": "26250-20/2276", + "regionalFile": "N/A", + "parcelIDs": [ + 936414, + 7568674, + 2414262, + 6116575, + 5214492 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2019-03-07", + "completed": "2019-09-03", + "initiated": "2022-10-05", + "ministryContact": "HALVORSON MARLEN", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ { "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true } ], "siteRegistry": false }, { - "createdAt": "2018-07-13", - "completed": "2021-07-18", - "initiated": "2021-06-26", - "ministryContact": "BAUMBACH MALIKA", + "createdAt": "2017-11-11", + "completed": "2019-10-28", + "initiated": "2014-12-07", + "ministryContact": "LOWE MATT", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -6630,15 +8647,10 @@ "" ], "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", @@ -6646,9 +8658,9 @@ "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false } ], "siteRegistry": true @@ -6656,110 +8668,180 @@ ], "participants": [ { - "name": "IPSUM", - "endDate": "2021-09-16", - "startDate": "2014-09-26", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2023-02-18", + "startDate": "2021-05-20", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": true + "siteRegistry": false }, { - "name": "AMET, DOLOR SIT", - "endDate": "2016-10-10", - "startDate": "2022-10-22", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2018-06-07", + "startDate": "2019-06-06", "notes": "", "roles": [ "ORGANIZATION" ], "siteRegistry": false - } - ], - "associatedSites": [ + }, { - "dateNoted": "2017-03-20", + "name": "IPSUM", + "endDate": "2015-04-03", + "startDate": "2023-01-01", "notes": "", - "parcelID": "18114", - "siteID": "19777", + "roles": [ + "EMPLOYEE" + ], "siteRegistry": true + } + ], + "suspectLandUses": [ + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2021-11-24 (described on Site Profile dated 2021-11-24)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "dateNoted": "2022-07-15", - "notes": "", - "parcelID": "20945", - "siteID": "17768", - "siteRegistry": true + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2020-10-12 (described on Site Profile dated 2020-10-12)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "dateNoted": "2014-09-13", - "notes": "", - "parcelID": "19366", - "siteID": "20957", - "siteRegistry": true + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2014-11-11 (described on Site Profile dated 2014-11-11)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } - ] - }, - { - "uuid": "d62cd1a7-0585-410c-bf9f-79c2163a8e73", - "siteID": 19699, - "address": "15021 Marilyne Trail", - "latitude": 52.2895, - "longitude": -124.3934, - "lastUpdated": "2022-07-21", - "city": "Mishawaka", - "region": "Mainland/Southwest", - "victoriaFile": "26250-20/6536", - "regionalFile": "N/A", - "parcelIDs": [ - 2803868, - 6456848, - 4218060, - 7865947, - 2214615 ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ + "siteDisclosures": [ { - "createdAt": "2023-01-27", - "completed": "2019-04-17", - "initiated": "2021-11-29", - "ministryContact": "SCHINNER LULU", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, + "siteRegistry": true, + "dateReceived": "2022-10-08", + "dateCompleted": "2017-06-15", + "dateEntered": "2023-09-05", + "dateRegistrar": "2021-08-14", + "dateLocalAuthorityReceived": "2015-05-19", + "summary": "Dolore itaque perferendis nobis temporibus ex hic aspernatur.", + "informationUsed": "Quidem placeat provident cum corrupti quisquam nisi mollitia quisquam.\nLaboriosam ducimus nesciunt quasi architecto porro inventore maiores alias.\nUllam quisquam consequuntur velit enim expedita porro odio aut.\nRepudiandae magni quod vel impedit.\nAlias mollitia inventore recusandae ullam non.", + "pastOrPresentOrders": "Beatae adipisci animi.\nSit dicta quod quasi eum eaque a eos quibusdam perferendis.", + "commercialAndIndustrialPurposes": [ { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false } - ], - "siteRegistry": false + ] + } + ], + "activityLog": [ + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "WILLMS CONOR", + "timestamp": "2018-06-06" }, { - "createdAt": "2016-09-19", - "completed": "2018-10-22", - "initiated": "2016-02-28", - "ministryContact": "GRIMES TERESA", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "BOGAN DOMENICO", + "timestamp": "2016-02-14" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "JAST MUHAMMAD", + "timestamp": "2022-01-07" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "ORTIZ SYLVAN", + "timestamp": "2015-02-03" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "TORP NARCISO", + "timestamp": "2016-02-08" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "MAGGIO OSCAR", + "timestamp": "2018-11-23" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "BEATTY DAMARIS", + "timestamp": "2018-03-01" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "BEDNAR ELIZA", + "timestamp": "2019-09-11" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "ANDERSON MAFALDA", + "timestamp": "2018-06-23" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "RICE ARNE", + "timestamp": "2021-10-06" + } + ], + "associatedSites": [ + { + "dateNoted": "2021-02-17", + "notes": "", + "parcelID": "20989", + "siteID": "15998", + "siteRegistry": false + } + ] + }, + { + "uuid": "3de30943-eb60-4f37-949f-6c7d658c1b80", + "siteID": 20194, + "address": "50912 Lavonne Vista", + "latitude": 55.2255, + "longitude": -129.6989, + "lastUpdated": "2014-03-22", + "city": "Larsoncester", + "region": "Thompson-Okanagan", + "victoriaFile": "26250-20/9877", + "regionalFile": "N/A", + "parcelIDs": [ + 3019509, + 8638210, + 5018906, + 8325115, + 5321085 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2016-08-07", + "completed": "2015-01-08", + "initiated": "2022-03-02", + "ministryContact": "KIHN MARLEY", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -6768,38 +8850,28 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2022-05-12", - "completed": "2018-09-19", - "initiated": "2015-06-14", - "ministryContact": "DAVIS JENNINGS", + "createdAt": "2016-07-15", + "completed": "2021-10-13", + "initiated": "2018-03-31", + "ministryContact": "MCCULLOUGH GOLDA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -6810,10 +8882,10 @@ { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true } @@ -6821,10 +8893,10 @@ "siteRegistry": true }, { - "createdAt": "2020-08-22", - "completed": "2022-07-30", - "initiated": "2014-03-24", - "ministryContact": "BODE CORTNEY", + "createdAt": "2020-11-17", + "completed": "2017-04-12", + "initiated": "2017-07-25", + "ministryContact": "KOEPP-BOSCO NEWTON", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -6833,33 +8905,38 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2023-07-08", - "completed": "2019-12-15", - "initiated": "2020-01-20", - "ministryContact": "FUNK PAXTON", + "createdAt": "2018-07-16", + "completed": "2018-01-03", + "initiated": "2022-07-05", + "ministryContact": "KERLUKE ZULA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -6867,15 +8944,10 @@ "" ], "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", @@ -6883,103 +8955,168 @@ "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false } ], "participants": [ { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2022-06-08", - "startDate": "2015-06-21", + "name": "AMET, DOLOR SIT", + "endDate": "2015-04-21", + "startDate": "2020-02-14", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], - "siteRegistry": false + "siteRegistry": true }, { "name": "AMET, DOLOR SIT", - "endDate": "2018-01-28", - "startDate": "2022-09-08", + "endDate": "2018-01-09", + "startDate": "2021-02-11", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": true + "siteRegistry": false + } + ], + "suspectLandUses": [ + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2023-06-20 (described on Site Profile dated 2023-06-20)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "name": "AMET, DOLOR SIT", - "endDate": "2021-04-10", - "startDate": "2020-05-16", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": true + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2020-11-29 (described on Site Profile dated 2020-11-29)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2023-03-04", - "startDate": "2021-03-24", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": false + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2018-04-18 (described on Site Profile dated 2018-04-18)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2020-10-17 (described on Site Profile dated 2020-10-17)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + } + ], + "siteDisclosures": [ + { + "siteRegistry": true, + "dateReceived": "2020-05-14", + "dateCompleted": "2020-08-04", + "dateEntered": "2023-04-25", + "dateRegistrar": "2014-05-21", + "dateLocalAuthorityReceived": "2020-09-19", + "summary": "Saepe voluptates nobis tenetur ipsa fugiat.\nNemo rerum porro.\nFugiat deleniti mollitia at.", + "informationUsed": "Nihil nam aspernatur quia voluptates nobis nihil consequuntur ex minima.\nFuga assumenda occaecati.\nSaepe aperiam aperiam impedit inventore ex nihil beatae alias vel.\nVitae maxime ab enim possimus beatae asperiores delectus.\nIncidunt dolor porro velit pariatur facilis voluptas odio.", + "pastOrPresentOrders": "Rerum nesciunt iusto dicta voluptate quis.\nIllo necessitatibus voluptas porro corrupti amet veniam.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + } + ] + } + ], + "activityLog": [ + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "MARQUARDT BRENNAN", + "timestamp": "2015-10-07" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "MCGLYNN HANNA", + "timestamp": "2022-06-06" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "GORCZANY CASIMIR", + "timestamp": "2016-09-29" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "HAMMES THERESA", + "timestamp": "2022-09-21" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "ROHAN DAN", + "timestamp": "2021-10-01" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "GLOVER SHELDON", + "timestamp": "2022-11-14" } ], "associatedSites": [ { - "dateNoted": "2015-03-01", + "dateNoted": "2014-03-18", "notes": "", - "parcelID": "18928", - "siteID": "18080", + "parcelID": "19592", + "siteID": "18736", "siteRegistry": true }, { - "dateNoted": "2015-03-28", + "dateNoted": "2018-12-12", "notes": "", - "parcelID": "17497", - "siteID": "16645", - "siteRegistry": true + "parcelID": "20805", + "siteID": "20571", + "siteRegistry": false } ] }, { - "uuid": "80d96f76-ad65-4ab1-a738-c8e2649fa73b", - "siteID": 15375, - "address": "53958 McLaughlin Burg", - "latitude": 49.0346, - "longitude": -136.6678, - "lastUpdated": "2021-06-27", - "city": "Danieltown", + "uuid": "ec9a80b2-4bbe-48ae-904d-504816344d81", + "siteID": 15206, + "address": "781 Aurelio Run", + "latitude": 53.1747, + "longitude": -133.8966, + "lastUpdated": "2016-08-04", + "city": "Port Noelport", "region": "Kootenay", - "victoriaFile": "26250-20/19206", + "victoriaFile": "26250-20/14466", "regionalFile": "N/A", "parcelIDs": [ - 3466719, - 2749073, - 2948717, - 5833809, - 2956753 + 7101362, + 998634, + 2588354, + 9730189, + 1356155 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2022-03-21", - "completed": "2018-11-30", - "initiated": "2023-05-01", - "ministryContact": "ROOB GWENDOLYN", + "createdAt": "2022-12-10", + "completed": "2022-08-04", + "initiated": "2023-04-25", + "ministryContact": "SCHULTZ FLORINE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -6987,6 +9124,16 @@ "" ], "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", @@ -6994,6 +9141,31 @@ }, { "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "createdAt": "2018-04-25", + "completed": "2019-11-18", + "initiated": "2014-11-22", + "ministryContact": "ABSHIRE MILFORD", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false }, @@ -7002,19 +9174,29 @@ "role": "SUBMITTED BY", "siteRegistry": false }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": true } ], "siteRegistry": true }, { - "createdAt": "2018-09-21", - "completed": "2017-04-07", - "initiated": "2018-01-10", - "ministryContact": "ROWE SYLVAN", + "createdAt": "2017-02-12", + "completed": "2013-11-24", + "initiated": "2014-05-03", + "ministryContact": "SCHIMMEL LESLY", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -7024,8 +9206,8 @@ "notationParticipants": [ { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true + "role": "REQUESTED BY", + "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", @@ -7033,9 +9215,9 @@ "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", @@ -7043,14 +9225,14 @@ "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false } ], "participants": [ { - "name": "AMET, DOLOR SIT", - "endDate": "2015-05-29", - "startDate": "2015-05-03", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2015-07-09", + "startDate": "2021-06-18", "notes": "", "roles": [ "ORGANIZATION" @@ -7059,38 +9241,38 @@ }, { "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2018-04-30", - "startDate": "2020-02-23", + "endDate": "2022-01-06", + "startDate": "2020-05-29", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2014-09-01", - "startDate": "2015-05-23", + "endDate": "2015-04-13", + "startDate": "2015-02-16", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", - "endDate": "2021-05-20", - "startDate": "2020-01-10", + "endDate": "2019-03-22", + "startDate": "2019-10-06", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], - "siteRegistry": false + "siteRegistry": true }, { - "name": "AMET, DOLOR SIT", - "endDate": "2014-03-08", - "startDate": "2019-06-20", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2014-07-26", + "startDate": "2022-08-28", "notes": "", "roles": [ "EMPLOYEE" @@ -7098,41 +9280,167 @@ "siteRegistry": true } ], + "suspectLandUses": [ + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2016-05-12 (described on Site Profile dated 2016-05-12)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2016-07-30 (described on Site Profile dated 2016-07-30)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2023-05-26 (described on Site Profile dated 2023-05-26)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2020-06-24 (described on Site Profile dated 2020-06-24)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2021-03-09 (described on Site Profile dated 2021-03-09)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + } + ], + "siteDisclosures": [ + { + "siteRegistry": true, + "dateReceived": "2015-12-18", + "dateCompleted": "2023-05-04", + "dateEntered": "2023-06-01", + "dateRegistrar": "2017-03-27", + "dateLocalAuthorityReceived": "2014-04-27", + "summary": "Odio fugit tempora autem velit sunt impedit.\nVelit excepturi pariatur reprehenderit asperiores mollitia in fugiat blanditiis.\nVeritatis reiciendis consectetur dolorem illo quas velit incidunt quam.", + "informationUsed": "Laudantium porro earum nesciunt delectus recusandae tempore vitae.\nVoluptatibus porro aut eligendi omnis consectetur.\nIusto deleniti omnis voluptatibus expedita porro voluptates.", + "pastOrPresentOrders": "Labore voluptate quam maiores hic iure laudantium.\nEst magni a sunt sapiente veritatis repellat voluptatibus.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + } + ] + }, + { + "siteRegistry": false, + "dateReceived": "2018-05-04", + "dateCompleted": "2015-03-06", + "dateEntered": "2019-08-19", + "dateRegistrar": "2014-04-21", + "dateLocalAuthorityReceived": "2017-01-31", + "summary": "Eaque blanditiis corporis a nisi voluptas.\nPerspiciatis debitis laborum quod autem voluptatibus necessitatibus suscipit magni repellat.\nAperiam voluptatibus temporibus eos perferendis dolor quibusdam sequi reiciendis.", + "informationUsed": "Sapiente adipisci sed magnam molestiae aliquid iste provident rerum.\nOdio placeat nemo maxime porro distinctio quibusdam modi natus.\nPerferendis est sequi quas veritatis alias facilis cumque.", + "pastOrPresentOrders": "Temporibus molestias earum laudantium temporibus iusto corporis consequuntur.\nQuidem porro ducimus eius sapiente a.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + } + ] + } + ], + "activityLog": [ + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "BRUEN CYRIL", + "timestamp": "2017-07-06" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "CHRISTIANSEN ANTONETTE", + "timestamp": "2014-11-29" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "OBERBRUNNER EMERY", + "timestamp": "2020-08-21" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "NIENOW CAYLA", + "timestamp": "2022-01-01" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "KOCH PATSY", + "timestamp": "2015-09-27" + } + ], "associatedSites": [ { - "dateNoted": "2020-06-18", + "dateNoted": "2017-02-26", + "notes": "", + "parcelID": "18822", + "siteID": "20194", + "siteRegistry": false + }, + { + "dateNoted": "2020-06-11", + "notes": "", + "parcelID": "18404", + "siteID": "16303", + "siteRegistry": false + }, + { + "dateNoted": "2020-03-01", "notes": "", - "parcelID": "20275", - "siteID": "17304", + "parcelID": "18659", + "siteID": "19960", "siteRegistry": false } ] }, { - "uuid": "2627fd34-e3a4-4ad2-8f51-eca86114d5f1", - "siteID": 20323, - "address": "9303 Lebsack Crescent", - "latitude": 54.5391, - "longitude": -120.4933, - "lastUpdated": "2016-04-06", - "city": "Evelynworth", - "region": " North Coast", - "victoriaFile": "26250-20/17133", + "uuid": "23400bd1-6b99-4469-a2b4-d258c36a5ff6", + "siteID": 19367, + "address": "335 Laila Flats", + "latitude": 48.8827, + "longitude": -126.6325, + "lastUpdated": "2016-04-20", + "city": "Strosinshire", + "region": "Mainland/Southwest", + "victoriaFile": "26250-20/14557", "regionalFile": "N/A", "parcelIDs": [ - 3398131, - 7013258, - 6028146, - 2171419, - 6376056 + 2117070, + 2294403, + 3016810, + 3952947, + 5570860 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2017-03-21", - "completed": "2022-01-09", - "initiated": "2019-08-20", - "ministryContact": "FRANECKI ERA", + "createdAt": "2018-11-25", + "completed": "2018-09-12", + "initiated": "2016-03-13", + "ministryContact": "CASPER TALON", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -7140,50 +9448,25 @@ "" ], "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false - } - ], - "siteRegistry": true - }, - { - "createdAt": "2017-02-11", - "completed": "2019-08-20", - "initiated": "2016-06-14", - "ministryContact": "BARTOLETTI MADALINE", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", @@ -7191,13 +9474,13 @@ "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2021-08-15", - "completed": "2014-02-22", - "initiated": "2023-04-18", - "ministryContact": "FISHER GUS", + "createdAt": "2018-01-26", + "completed": "2017-03-31", + "initiated": "2016-01-13", + "ministryContact": "SMITHAM ROLLIN", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -7207,17 +9490,17 @@ "notationParticipants": [ { "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": true } ], @@ -7226,19 +9509,19 @@ ], "participants": [ { - "name": "IPSUM", - "endDate": "2021-09-13", - "startDate": "2014-11-16", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2015-02-28", + "startDate": "2022-05-21", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2017-09-21", - "startDate": "2013-12-04", + "name": "AMET, DOLOR SIT", + "endDate": "2018-10-30", + "startDate": "2020-11-06", "notes": "", "roles": [ "EMPLOYEE" @@ -7247,84 +9530,187 @@ }, { "name": "AMET, DOLOR SIT", - "endDate": "2014-02-14", - "startDate": "2020-05-06", + "endDate": "2020-07-29", + "startDate": "2020-01-18", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], - "siteRegistry": false + "siteRegistry": true }, { - "name": "AMET, DOLOR SIT", - "endDate": "2021-05-18", - "startDate": "2018-02-12", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2014-03-13", + "startDate": "2016-01-24", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": false - }, - { - "name": "AMET, DOLOR SIT", - "endDate": "2014-12-14", - "startDate": "2017-09-08", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": false + "siteRegistry": true } ], - "associatedSites": [ + "suspectLandUses": [ { - "dateNoted": "2021-07-06", - "notes": "", - "parcelID": "15811", - "siteID": "16916", - "siteRegistry": true + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2021-05-31 (described on Site Profile dated 2021-05-31)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2021-09-30 (described on Site Profile dated 2021-09-30)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + } + ], + "siteDisclosures": [ + { + "siteRegistry": true, + "dateReceived": "2019-11-13", + "dateCompleted": "2016-09-07", + "dateEntered": "2021-08-29", + "dateRegistrar": "2017-10-15", + "dateLocalAuthorityReceived": "2020-10-19", + "summary": "Quas tempora tempore necessitatibus enim doloremque voluptas blanditiis.", + "informationUsed": "Dicta molestiae reprehenderit dicta.\nIllum quisquam dicta culpa iste aliquam et ullam itaque dolorum.\nBeatae ducimus nisi nobis alias blanditiis voluptatum.\nEaque soluta voluptatem facere enim commodi excepturi asperiores.\nVoluptate tenetur placeat molestiae vel cum nam quia.", + "pastOrPresentOrders": "Perspiciatis ex inventore numquam ipsam.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + } + ] + }, + { + "siteRegistry": true, + "dateReceived": "2016-12-11", + "dateCompleted": "2016-09-11", + "dateEntered": "2021-03-13", + "dateRegistrar": "2014-12-03", + "dateLocalAuthorityReceived": "2019-10-26", + "summary": "Animi quo libero dignissimos culpa sit velit sapiente.", + "informationUsed": "Exercitationem minus temporibus ipsa commodi quis.\nRepudiandae unde aliquam eos magnam fugit odit.\nDicta hic nostrum temporibus.\nEarum saepe repellat repellendus nobis quisquam.\nMaxime qui deserunt aperiam fuga consequuntur sequi itaque voluptatum neque.", + "pastOrPresentOrders": "Laudantium beatae quaerat quisquam possimus est officia.\nMollitia velit expedita excepturi laboriosam.\nEaque distinctio placeat in repellendus quaerat sed vero accusantium officia.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + } + ] + } + ], + "activityLog": [ + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "CORKERY NESTOR", + "timestamp": "2022-08-11" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "MARVIN MARK", + "timestamp": "2014-07-31" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "NOLAN QUINCY", + "timestamp": "2021-01-17" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "KSHLERIN EVANS", + "timestamp": "2014-07-26" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "MOHR VINCE", + "timestamp": "2014-04-05" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "BROWN RYLEY", + "timestamp": "2019-01-02" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "FARRELL YASMEEN", + "timestamp": "2016-04-15" }, { - "dateNoted": "2022-05-22", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "BECKER ELNORA", + "timestamp": "2015-08-28" + } + ], + "associatedSites": [ + { + "dateNoted": "2014-04-22", "notes": "", - "parcelID": "18921", - "siteID": "17463", + "parcelID": "20507", + "siteID": "16418", "siteRegistry": true }, { - "dateNoted": "2014-02-14", + "dateNoted": "2016-01-22", "notes": "", - "parcelID": "16058", - "siteID": "15945", - "siteRegistry": false + "parcelID": "18391", + "siteID": "20554", + "siteRegistry": true } ] }, { - "uuid": "553f83fa-9c45-47cc-8261-516fd4076428", - "siteID": 20441, - "address": "865 Stark Stravenue", - "latitude": 53.8599, - "longitude": -120.0997, - "lastUpdated": "2017-09-17", - "city": "Maple Grove", - "region": "Kootenay", - "victoriaFile": "26250-20/13381", + "uuid": "da231958-7dd3-4c59-900e-73145268a582", + "siteID": 18598, + "address": "41299 Alessandra Cove", + "latitude": 53.7467, + "longitude": -138.2391, + "lastUpdated": "2019-08-31", + "city": "Meriden", + "region": "Thompson-Okanagan", + "victoriaFile": "26250-20/6700", "regionalFile": "N/A", "parcelIDs": [ - 8468904, - 1836776, - 8207852, - 7827285, - 8726808 + 4024156, + 2218799, + 1279162, + 7131086, + 3302164 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2023-01-05", - "completed": "2022-04-04", - "initiated": "2016-02-20", - "ministryContact": "TERRY MONA", + "createdAt": "2021-05-12", + "completed": "2018-03-25", + "initiated": "2018-08-04", + "ministryContact": "RUNOLFSSON KEIRA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -7332,13 +9718,23 @@ "" ], "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true } @@ -7346,10 +9742,10 @@ "siteRegistry": true }, { - "createdAt": "2017-09-06", - "completed": "2018-09-27", - "initiated": "2023-05-13", - "ministryContact": "MURPHY DOMENIC", + "createdAt": "2023-08-02", + "completed": "2020-01-26", + "initiated": "2023-05-24", + "ministryContact": "WALKER JAYDE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -7360,17 +9756,12 @@ { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", @@ -7381,10 +9772,10 @@ "siteRegistry": true }, { - "createdAt": "2013-10-17", - "completed": "2021-09-24", - "initiated": "2016-11-02", - "ministryContact": "HARVEY KIRK", + "createdAt": "2019-03-23", + "completed": "2018-03-03", + "initiated": "2017-03-11", + "ministryContact": "JASKOLSKI REMINGTON", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -7399,17 +9790,27 @@ }, { "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2019-08-23", - "completed": "2015-01-19", - "initiated": "2022-01-04", - "ministryContact": "HARVEY JANESSA", + "createdAt": "2020-07-28", + "completed": "2019-09-09", + "initiated": "2015-03-31", + "ministryContact": "DIETRICH ASSUNTA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -7423,8 +9824,18 @@ "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": false } ], @@ -7434,90 +9845,169 @@ "participants": [ { "name": "SHELL CANADA PRODUCTS", - "endDate": "2021-12-10", - "startDate": "2018-09-25", + "endDate": "2018-07-03", + "startDate": "2014-06-30", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": false }, { - "name": "AMET, DOLOR SIT", - "endDate": "2023-07-01", - "startDate": "2021-01-13", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": true - }, - { - "name": "AMET, DOLOR SIT", - "endDate": "2019-03-05", - "startDate": "2014-10-23", + "name": "IPSUM", + "endDate": "2016-06-08", + "startDate": "2018-07-11", "notes": "", "roles": [ "ORGANIZATION" ], "siteRegistry": false + } + ], + "suspectLandUses": [ + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2015-02-13 (described on Site Profile dated 2015-02-13)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2014-07-22", - "startDate": "2017-07-10", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": false + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2019-07-26 (described on Site Profile dated 2019-07-26)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "name": "AMET, DOLOR SIT", - "endDate": "2021-04-10", - "startDate": "2019-02-20", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": false + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2016-09-30 (described on Site Profile dated 2016-09-30)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2017-04-23 (described on Site Profile dated 2017-04-23)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2023-06-17 (described on Site Profile dated 2023-06-17)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + } + ], + "siteDisclosures": [ + { + "siteRegistry": false, + "dateReceived": "2018-11-17", + "dateCompleted": "2020-01-11", + "dateEntered": "2022-09-26", + "dateRegistrar": "2018-06-20", + "dateLocalAuthorityReceived": "2013-11-08", + "summary": "Consectetur atque vel laborum tenetur earum tenetur corporis praesentium quae.\nVel excepturi molestias placeat consectetur ratione deserunt pariatur corrupti.", + "informationUsed": "Cumque accusantium quidem repudiandae quisquam quis.\nMolestiae vitae illo.\nEaque harum illo excepturi.\nEa id sunt voluptate eligendi consectetur.", + "pastOrPresentOrders": "Harum provident quaerat sit reiciendis.\nNisi rem temporibus similique.\nAccusamus corrupti numquam placeat ut ducimus ipsam fuga.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + } + ] + } + ], + "activityLog": [ + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "MORISSETTE MEAGAN", + "timestamp": "2021-03-30" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "GREEN CHANELLE", + "timestamp": "2020-02-23" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "STANTON ROSALYN", + "timestamp": "2018-12-25" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "MURRAY NEDRA", + "timestamp": "2014-03-29" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "BERGNAUM REYES", + "timestamp": "2021-11-20" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "LIND ZOILA", + "timestamp": "2016-06-30" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "ZEMLAK NAKIA", + "timestamp": "2016-02-29" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "BASHIRIAN IGNATIUS", + "timestamp": "2016-10-10" } ], "associatedSites": [ { - "dateNoted": "2013-12-09", + "dateNoted": "2015-07-24", + "notes": "", + "parcelID": "20854", + "siteID": "16563", + "siteRegistry": false + }, + { + "dateNoted": "2018-02-25", "notes": "", - "parcelID": "18867", - "siteID": "15695", + "parcelID": "16392", + "siteID": "20194", "siteRegistry": true } ] }, { - "uuid": "a14f7c70-982b-4730-bd8e-718d948a7511", - "siteID": 18838, - "address": "7484 Strosin Course", - "latitude": 52.3405, - "longitude": -130.7358, - "lastUpdated": "2014-02-23", - "city": "West Demarcus", - "region": "Vancouver Island/Coast", - "victoriaFile": "26250-20/8678", + "uuid": "eb4d5fba-8092-42c5-abde-8d8f7ed65303", + "siteID": 17043, + "address": "922 Stanton Keys", + "latitude": 51.1976, + "longitude": -134.0523, + "lastUpdated": "2022-04-02", + "city": "Bradenton", + "region": "Kootenay", + "victoriaFile": "26250-20/19058", "regionalFile": "N/A", "parcelIDs": [ - 1092714, - 6615449, - 3550775, - 4309529, - 2741028 + 4410881, + 6843005, + 9008701, + 9466017, + 1717383 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2022-01-27", - "completed": "2020-03-24", - "initiated": "2019-01-09", - "ministryContact": "KOHLER KAMERON", + "createdAt": "2020-03-03", + "completed": "2021-06-27", + "initiated": "2020-05-13", + "ministryContact": "MORISSETTE NOLA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -7527,27 +10017,37 @@ "notationParticipants": [ { "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2022-09-13", - "completed": "2019-09-11", - "initiated": "2021-09-20", - "ministryContact": "REICHERT JESUS", + "createdAt": "2018-06-26", + "completed": "2021-11-27", + "initiated": "2016-12-18", + "ministryContact": "ZBONCAK AMPARO", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -7556,28 +10056,28 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true } ], "siteRegistry": false }, { - "createdAt": "2020-12-16", - "completed": "2014-06-25", - "initiated": "2019-03-11", - "ministryContact": "SWIFT-KULAS REBECCA", + "createdAt": "2015-02-08", + "completed": "2021-08-07", + "initiated": "2018-07-20", + "ministryContact": "BOGAN VIRGIL", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -7585,39 +10085,24 @@ "" ], "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false } ], "siteRegistry": false }, { - "createdAt": "2020-07-16", - "completed": "2022-02-08", - "initiated": "2023-01-03", - "ministryContact": "FRANECKI BRANDT", + "createdAt": "2019-01-06", + "completed": "2021-06-17", + "initiated": "2019-01-06", + "ministryContact": "HALVORSON GAETANO", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -7627,6 +10112,11 @@ "notationParticipants": [ { "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false }, @@ -7638,17 +10128,12 @@ { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false } ], "siteRegistry": true @@ -7657,8 +10142,8 @@ "participants": [ { "name": "AMET, DOLOR SIT", - "endDate": "2015-10-10", - "startDate": "2015-06-13", + "endDate": "2020-12-30", + "startDate": "2021-05-21", "notes": "", "roles": [ "EMPLOYEE" @@ -7666,9 +10151,9 @@ "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2015-04-20", - "startDate": "2014-04-16", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2022-01-15", + "startDate": "2018-12-22", "notes": "", "roles": [ "EMPLOYEE" @@ -7676,75 +10161,199 @@ "siteRegistry": true }, { - "name": "IPSUM", - "endDate": "2023-04-14", - "startDate": "2014-11-21", + "name": "AMET, DOLOR SIT", + "endDate": "2021-07-20", + "startDate": "2019-01-31", "notes": "", "roles": [ "ORGANIZATION" ], "siteRegistry": false }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2013-12-19", + "startDate": "2015-12-11", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, { "name": "IPSUM", - "endDate": "2020-06-22", - "startDate": "2016-07-28", + "endDate": "2015-03-11", + "startDate": "2022-01-03", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": true } ], + "suspectLandUses": [ + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2023-01-18 (described on Site Profile dated 2023-01-18)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2019-12-11 (described on Site Profile dated 2019-12-11)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2015-11-19 (described on Site Profile dated 2015-11-19)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2015-11-19 (described on Site Profile dated 2015-11-19)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2015-01-16 (described on Site Profile dated 2015-01-16)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + } + ], + "siteDisclosures": [ + { + "siteRegistry": true, + "dateReceived": "2014-09-17", + "dateCompleted": "2023-09-16", + "dateEntered": "2018-05-05", + "dateRegistrar": "2020-03-20", + "dateLocalAuthorityReceived": "2018-12-09", + "summary": "Nihil qui culpa quasi labore.", + "informationUsed": "Inventore ab officia laboriosam placeat sunt error saepe ab.\nQuisquam expedita sint eligendi.\nAsperiores voluptatem adipisci fugit nostrum quas ea cupiditate deleniti.\nLaborum delectus pariatur.\nNeque neque hic cupiditate ducimus exercitationem vero nam provident.", + "pastOrPresentOrders": "Distinctio nemo explicabo expedita.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + } + ] + } + ], + "activityLog": [ + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "ZBONCAK RYLEIGH", + "timestamp": "2015-07-31" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "DICKINSON JUSTICE", + "timestamp": "2018-12-15" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "NICOLAS MYRA", + "timestamp": "2014-03-24" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "GREENHOLT-GUTMANN MAUD", + "timestamp": "2017-09-24" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "HALVORSON-HOMENICK STELLA", + "timestamp": "2021-09-13" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "SHIELDS CRYSTAL", + "timestamp": "2023-05-10" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "WUNSCH MARIO", + "timestamp": "2014-04-01" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "HOWELL EVELINE", + "timestamp": "2021-02-25" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "JONES IBRAHIM", + "timestamp": "2017-04-27" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "MONAHAN MARCELINA", + "timestamp": "2015-08-10" + } + ], "associatedSites": [ { - "dateNoted": "2021-03-03", + "dateNoted": "2018-11-22", "notes": "", - "parcelID": "20443", - "siteID": "15945", - "siteRegistry": true + "parcelID": "19032", + "siteID": "16504", + "siteRegistry": false }, { - "dateNoted": "2016-02-15", + "dateNoted": "2016-09-24", "notes": "", - "parcelID": "16203", - "siteID": "18587", - "siteRegistry": true + "parcelID": "19481", + "siteID": "15498", + "siteRegistry": false }, { - "dateNoted": "2017-05-15", + "dateNoted": "2017-10-23", "notes": "", - "parcelID": "18737", - "siteID": "19572", + "parcelID": "18243", + "siteID": "16386", "siteRegistry": true } ] }, { - "uuid": "92318901-437d-40fd-a100-01190d587cf1", - "siteID": 20353, - "address": "44043 Morissette Neck", - "latitude": 49.2447, - "longitude": -127.6819, - "lastUpdated": "2020-05-22", - "city": "West Anastasiafurt", - "region": "Vancouver Island/Coast", - "victoriaFile": "26250-20/10323", + "uuid": "3cf730b1-0fc9-40af-b672-29b88eece3fa", + "siteID": 18179, + "address": "9175 Mayert Isle", + "latitude": 54.8203, + "longitude": -124.2472, + "lastUpdated": "2022-09-03", + "city": "Newtonshire", + "region": "Mainland/Southwest", + "victoriaFile": "26250-20/13478", "regionalFile": "N/A", "parcelIDs": [ - 4222985, - 5510589, - 1349427, - 233980, - 3041950 + 1677276, + 5174751, + 3920703, + 8692001, + 8446310 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2020-02-01", - "completed": "2020-09-24", - "initiated": "2022-02-17", - "ministryContact": "HOWE ABDULLAH", + "createdAt": "2023-03-12", + "completed": "2018-11-03", + "initiated": "2020-07-06", + "ministryContact": "HETTINGER SHANON", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -7753,30 +10362,10 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": true }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - } - ], - "siteRegistry": true - }, - { - "createdAt": "2015-02-28", - "completed": "2017-11-28", - "initiated": "2019-04-22", - "ministryContact": "JAST ANNA", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", @@ -7785,21 +10374,16 @@ { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true } ], "siteRegistry": true }, { - "createdAt": "2020-05-26", - "completed": "2017-03-08", - "initiated": "2017-07-31", - "ministryContact": "WISOZK JUSTYN", + "createdAt": "2020-09-10", + "completed": "2020-01-02", + "initiated": "2017-06-01", + "ministryContact": "WEISSNAT CALISTA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -7814,27 +10398,17 @@ }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2019-05-19", - "completed": "2021-10-24", - "initiated": "2014-05-09", - "ministryContact": "HETTINGER SAMMIE", + "createdAt": "2014-04-02", + "completed": "2018-05-29", + "initiated": "2020-12-28", + "ministryContact": "OBERBRUNNER OLE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -7844,112 +10418,237 @@ "notationParticipants": [ { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false } ], "participants": [ { - "name": "IPSUM", - "endDate": "2018-11-15", - "startDate": "2015-09-15", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2020-03-26", + "startDate": "2023-02-20", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], - "siteRegistry": false + "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2020-05-18", - "startDate": "2017-12-16", + "name": "IPSUM", + "endDate": "2021-09-04", + "startDate": "2019-11-02", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2017-09-23", - "startDate": "2017-06-20", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2022-03-16", + "startDate": "2014-02-25", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": false }, { - "name": "IPSUM", - "endDate": "2021-05-06", - "startDate": "2023-09-09", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2023-03-11", + "startDate": "2016-01-02", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": false + "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2020-12-14", - "startDate": "2016-12-31", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2014-11-06", + "startDate": "2017-08-08", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false + } + ], + "suspectLandUses": [ + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2020-04-15 (described on Site Profile dated 2020-04-15)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2018-12-11 (described on Site Profile dated 2018-12-11)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + } + ], + "siteDisclosures": [ + { + "siteRegistry": true, + "dateReceived": "2019-04-05", + "dateCompleted": "2023-06-08", + "dateEntered": "2019-01-30", + "dateRegistrar": "2014-05-25", + "dateLocalAuthorityReceived": "2021-02-09", + "summary": "Modi numquam perspiciatis aperiam quod.", + "informationUsed": "Temporibus fugiat quis nulla cumque sapiente in totam perferendis.\nIusto incidunt eveniet totam inventore architecto cum recusandae velit.\nVel aliquam quia repudiandae exercitationem.", + "pastOrPresentOrders": "Nulla quam qui dignissimos.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + } + ] + }, + { + "siteRegistry": true, + "dateReceived": "2018-09-11", + "dateCompleted": "2016-03-24", + "dateEntered": "2013-12-22", + "dateRegistrar": "2015-03-28", + "dateLocalAuthorityReceived": "2015-09-10", + "summary": "Dolor praesentium accusantium dolore.\nAut esse modi.\nQuam asperiores temporibus.", + "informationUsed": "Illum facere repellendus maiores occaecati corrupti modi.\nEveniet dolore id esse maiores tempora illum porro eum ipsa.\nIllo quasi nesciunt recusandae adipisci quam quae vitae consequuntur.", + "pastOrPresentOrders": "Provident temporibus at ipsam quibusdam optio saepe.\nQuo accusantium ipsa accusantium facere laborum non laboriosam velit.\nPossimus porro perferendis assumenda sapiente.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + } + ] + } + ], + "activityLog": [ + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "KERTZMANN HORTENSE", + "timestamp": "2021-06-05" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "KILBACK ANDERSON", + "timestamp": "2018-10-16" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "ADAMS KOREY", + "timestamp": "2022-08-15" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "LYNCH ELVIS", + "timestamp": "2016-10-21" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "BOYLE HULDA", + "timestamp": "2022-10-18" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "ORTIZ DARREL", + "timestamp": "2014-04-21" } ], "associatedSites": [ { - "dateNoted": "2021-10-16", + "dateNoted": "2017-11-04", "notes": "", - "parcelID": "20893", - "siteID": "17795", - "siteRegistry": true + "parcelID": "20412", + "siteID": "18936", + "siteRegistry": false }, { - "dateNoted": "2015-10-09", + "dateNoted": "2017-09-03", "notes": "", - "parcelID": "19990", - "siteID": "17935", - "siteRegistry": true + "parcelID": "16852", + "siteID": "19438", + "siteRegistry": false + }, + { + "dateNoted": "2018-02-10", + "notes": "", + "parcelID": "19965", + "siteID": "18840", + "siteRegistry": false } ] }, { - "uuid": "ad6699fd-d62b-4da7-8e1c-74c47ff5e03f", - "siteID": 20957, - "address": "481 Nicolas Mall", - "latitude": 52.9553, - "longitude": -130.7153, - "lastUpdated": "2020-05-11", - "city": "West Mattboro", - "region": "Mainland/Southwest", - "victoriaFile": "26250-20/17812", + "uuid": "40714a60-fce7-4452-94b3-76349c05a3f5", + "siteID": 16303, + "address": "42139 Aliyah Spurs", + "latitude": 54.7099, + "longitude": -126.0149, + "lastUpdated": "2016-02-23", + "city": "North Kraigworth", + "region": "Cariboo", + "victoriaFile": "26250-20/13668", "regionalFile": "N/A", "parcelIDs": [ - 9973402, - 1048826, - 8597974, - 1819992, - 1550186 + 9900353, + 6040120, + 7393720, + 3890867, + 9249542 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2018-10-28", - "completed": "2016-05-15", - "initiated": "2019-05-12", - "ministryContact": "BERGSTROM-KIEHN AILEEN", + "createdAt": "2017-09-13", + "completed": "2019-01-04", + "initiated": "2022-10-21", + "ministryContact": "ROMAGUERA KALI", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -7957,34 +10656,24 @@ "" ], "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true } ], "siteRegistry": false }, { - "createdAt": "2022-07-27", - "completed": "2015-12-26", - "initiated": "2021-07-07", - "ministryContact": "SAUER KITTY", + "createdAt": "2016-02-04", + "completed": "2022-07-22", + "initiated": "2013-12-15", + "ministryContact": "STROMAN LYDIA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -8000,16 +10689,31 @@ { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2014-01-20", - "completed": "2018-09-15", - "initiated": "2017-05-26", - "ministryContact": "ORTIZ KOBE", + "createdAt": "2014-06-10", + "completed": "2017-04-02", + "initiated": "2021-08-29", + "ministryContact": "O'KON BERNADINE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -8017,39 +10721,39 @@ "" ], "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2015-12-13", - "completed": "2023-06-01", - "initiated": "2014-01-24", - "ministryContact": "BARTOLETTI NICOLE", + "createdAt": "2016-04-19", + "completed": "2015-09-29", + "initiated": "2014-12-05", + "ministryContact": "TREMBLAY ALEXANDREA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -8057,11 +10761,6 @@ "" ], "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", @@ -8069,23 +10768,53 @@ }, { "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "createdAt": "2020-09-19", + "completed": "2020-01-04", + "initiated": "2023-01-28", + "ministryContact": "MILLER URIAH", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false } ], "participants": [ { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2018-06-19", - "startDate": "2014-12-02", + "name": "IPSUM", + "endDate": "2022-07-15", + "startDate": "2014-04-07", "notes": "", "roles": [ "ORGANIZATION" @@ -8093,95 +10822,237 @@ "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2020-03-18", - "startDate": "2021-08-13", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2014-12-20", + "startDate": "2017-04-11", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": false + "siteRegistry": true }, { - "name": "IPSUM", - "endDate": "2015-03-28", - "startDate": "2022-08-01", + "name": "AMET, DOLOR SIT", + "endDate": "2015-09-14", + "startDate": "2022-07-18", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2023-09-01", - "startDate": "2021-04-15", + "endDate": "2017-05-27", + "startDate": "2014-04-19", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", - "endDate": "2014-11-30", - "startDate": "2013-11-26", + "endDate": "2014-12-12", + "startDate": "2014-11-06", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], - "siteRegistry": true + "siteRegistry": false } ], - "associatedSites": [ + "suspectLandUses": [ { - "dateNoted": "2022-05-24", - "notes": "", - "parcelID": "16103", - "siteID": "15229", - "siteRegistry": false + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2022-06-10 (described on Site Profile dated 2022-06-10)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2018-08-09 (described on Site Profile dated 2018-08-09)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2020-04-02 (described on Site Profile dated 2020-04-02)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + } + ], + "siteDisclosures": [ + { + "siteRegistry": true, + "dateReceived": "2015-03-03", + "dateCompleted": "2018-08-29", + "dateEntered": "2014-02-12", + "dateRegistrar": "2017-11-27", + "dateLocalAuthorityReceived": "2021-05-02", + "summary": "Voluptatem adipisci ipsum deserunt quasi cumque adipisci eveniet sed.", + "informationUsed": "Tempora ut nesciunt cumque.\nVeritatis dolorum reprehenderit similique facere laboriosam.\nCumque suscipit optio repudiandae.\nReprehenderit atque cumque qui cupiditate nam neque.", + "pastOrPresentOrders": "Veritatis placeat iste.\nEos enim corporis.\nMaxime expedita omnis dolorem voluptatum amet.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + } + ] + }, + { + "siteRegistry": true, + "dateReceived": "2018-03-03", + "dateCompleted": "2018-02-05", + "dateEntered": "2021-08-27", + "dateRegistrar": "2019-07-12", + "dateLocalAuthorityReceived": "2021-05-24", + "summary": "Harum alias id.\nVel eos commodi odit.", + "informationUsed": "Accusamus maxime ratione praesentium quos corporis.\nQuae id quis.\nConsequuntur quidem explicabo molestias ad odio fugit perferendis.\nDicta dignissimos eaque voluptatibus.", + "pastOrPresentOrders": "Asperiores excepturi odio amet reprehenderit tenetur possimus neque.\nRem animi fugiat rem quam eligendi repudiandae ipsum laudantium voluptas.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + } + ] + } + ], + "activityLog": [ + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "BINS SEBASTIAN", + "timestamp": "2022-05-13" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "HALEY LOURDES", + "timestamp": "2018-08-07" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "KEMMER DAPHNE", + "timestamp": "2016-06-06" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "ROHAN FELIPA", + "timestamp": "2022-11-03" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "WISOZK LOURDES", + "timestamp": "2019-11-04" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "SIPES-STARK KODY", + "timestamp": "2023-06-21" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "LUEILWITZ-JERDE ALEXZANDER", + "timestamp": "2014-10-06" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "MILLER WAINO", + "timestamp": "2020-02-19" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "PURDY ALAINA", + "timestamp": "2015-05-25" }, { - "dateNoted": "2018-12-20", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "BUCKRIDGE LORA", + "timestamp": "2022-03-03" + } + ], + "associatedSites": [ + { + "dateNoted": "2020-05-09", "notes": "", - "parcelID": "17051", - "siteID": "18695", + "parcelID": "16534", + "siteID": "19726", "siteRegistry": true }, { - "dateNoted": "2020-01-07", + "dateNoted": "2017-05-10", "notes": "", - "parcelID": "18187", - "siteID": "17012", + "parcelID": "19610", + "siteID": "15592", "siteRegistry": false + }, + { + "dateNoted": "2015-06-17", + "notes": "", + "parcelID": "17154", + "siteID": "19478", + "siteRegistry": true } ] }, { - "uuid": "a22a0ee7-5343-4db9-ba89-4f43951f17fe", - "siteID": 19669, - "address": "7102 Brain Ramp", - "latitude": 51.2112, - "longitude": -132.3599, - "lastUpdated": "2018-07-14", - "city": "West Arvidport", - "region": "Thompson-Okanagan", - "victoriaFile": "26250-20/4047", + "uuid": "e0ff6835-6dff-4843-8afe-9247786943f2", + "siteID": 16850, + "address": "6736 Lindgren Field", + "latitude": 55.4585, + "longitude": -128.2976, + "lastUpdated": "2019-02-26", + "city": "North Niko", + "region": "Kootenay", + "victoriaFile": "26250-20/18379", "regionalFile": "N/A", "parcelIDs": [ - 754790, - 3806529, - 4375779, - 4372679, - 9077601 + 5895319, + 3661451, + 4758600, + 3288399, + 6052117 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2013-10-25", - "completed": "2021-05-22", - "initiated": "2020-01-04", - "ministryContact": "MOSCISKI-RUTHERFORD LEONARD", + "createdAt": "2018-11-24", + "completed": "2018-06-22", + "initiated": "2021-06-24", + "ministryContact": "BOSCO SHANON", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -8191,22 +11062,37 @@ "notationParticipants": [ { "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2022-04-08", - "completed": "2020-11-20", - "initiated": "2016-08-10", - "ministryContact": "CRONA MALINDA", + "createdAt": "2016-04-08", + "completed": "2016-07-07", + "initiated": "2020-11-30", + "ministryContact": "GOLDNER REBECCA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -8216,26 +11102,11 @@ "notationParticipants": [ { "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false } @@ -8243,10 +11114,10 @@ "siteRegistry": false }, { - "createdAt": "2015-10-18", - "completed": "2014-08-11", - "initiated": "2014-11-27", - "ministryContact": "CUMMINGS MINERVA", + "createdAt": "2018-10-08", + "completed": "2019-03-15", + "initiated": "2015-06-03", + "ministryContact": "HOWE ETHA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -8255,23 +11126,38 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false } ], "siteRegistry": true }, { - "createdAt": "2019-12-30", - "completed": "2017-07-10", - "initiated": "2018-09-30", - "ministryContact": "KIRLIN LAILA", + "createdAt": "2023-06-19", + "completed": "2022-12-06", + "initiated": "2020-04-14", + "ministryContact": "FEIL CESAR", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -8279,39 +11165,34 @@ "" ], "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true } ], "siteRegistry": false }, { - "createdAt": "2015-02-17", - "completed": "2019-06-29", - "initiated": "2016-04-15", - "ministryContact": "HARBER JASEN", + "createdAt": "2013-10-31", + "completed": "2017-03-11", + "initiated": "2019-10-08", + "ministryContact": "POWLOWSKI FREDERICK", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -8321,18 +11202,23 @@ "notationParticipants": [ { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true + "role": "REQUESTED BY", + "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", @@ -8346,38 +11232,38 @@ "participants": [ { "name": "SHELL CANADA PRODUCTS", - "endDate": "2018-08-08", - "startDate": "2022-08-28", + "endDate": "2015-04-22", + "startDate": "2014-04-10", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2023-01-11", - "startDate": "2016-11-26", + "name": "AMET, DOLOR SIT", + "endDate": "2023-08-14", + "startDate": "2016-05-19", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false }, { - "name": "IPSUM", - "endDate": "2016-12-18", - "startDate": "2017-03-21", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2023-04-18", + "startDate": "2018-02-17", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true }, { - "name": "AMET, DOLOR SIT", - "endDate": "2018-07-13", - "startDate": "2017-06-03", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2022-07-03", + "startDate": "2016-08-26", "notes": "", "roles": [ "EMPLOYEE" @@ -8386,57 +11272,186 @@ }, { "name": "IPSUM", - "endDate": "2018-04-25", - "startDate": "2022-02-27", + "endDate": "2018-05-14", + "startDate": "2022-06-21", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false + } + ], + "suspectLandUses": [ + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2022-06-30 (described on Site Profile dated 2022-06-30)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2015-11-12 (described on Site Profile dated 2015-11-12)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2020-03-19 (described on Site Profile dated 2020-03-19)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2019-03-07 (described on Site Profile dated 2019-03-07)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2015-05-03 (described on Site Profile dated 2015-05-03)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + } + ], + "siteDisclosures": [ + { + "siteRegistry": false, + "dateReceived": "2016-07-24", + "dateCompleted": "2016-06-19", + "dateEntered": "2018-11-19", + "dateRegistrar": "2020-04-03", + "dateLocalAuthorityReceived": "2023-09-24", + "summary": "Reprehenderit illum sed tempore ducimus vitae.\nReprehenderit perferendis quam vel animi numquam est quas.", + "informationUsed": "Et laborum ullam explicabo odio quibusdam soluta facere pariatur laborum.\nExpedita nemo adipisci pariatur.\nQuas odio animi est placeat optio suscipit.", + "pastOrPresentOrders": "Reiciendis adipisci corrupti ea ad.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + } + ] + }, + { + "siteRegistry": true, + "dateReceived": "2017-05-25", + "dateCompleted": "2016-03-18", + "dateEntered": "2017-05-15", + "dateRegistrar": "2021-01-02", + "dateLocalAuthorityReceived": "2023-08-13", + "summary": "Quasi amet repudiandae ad quod doloremque.\nDolorem cupiditate architecto rem cumque accusantium.\nTotam cupiditate explicabo vitae corrupti nulla molestiae nobis exercitationem exercitationem.", + "informationUsed": "Tempore maiores quia illo aspernatur dolores ducimus consectetur.\nNulla dolorem ipsum dolor quaerat culpa iure aliquam.\nA eum sapiente.\nDignissimos voluptates dolorum architecto voluptatem maiores officiis sunt.\nLibero rem corporis ipsa odit accusamus magni officiis pariatur cum.", + "pastOrPresentOrders": "Laborum expedita quo esse.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + } + ] + } + ], + "activityLog": [ + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "PAGAC FLETA", + "timestamp": "2020-12-06" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "LANGOSH MAEGAN", + "timestamp": "2021-04-29" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "BEER DUSTIN", + "timestamp": "2023-04-12" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "JOHNS-LITTLE BURLEY", + "timestamp": "2020-04-12" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "WUNSCH CAROLINE", + "timestamp": "2019-06-14" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "CONSIDINE SYDNIE", + "timestamp": "2022-12-17" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "FRANECKI ALAYNA", + "timestamp": "2017-10-15" } ], "associatedSites": [ { - "dateNoted": "2015-09-26", + "dateNoted": "2020-09-28", "notes": "", - "parcelID": "15285", - "siteID": "17151", + "parcelID": "20805", + "siteID": "15216", "siteRegistry": false }, { - "dateNoted": "2023-08-30", + "dateNoted": "2014-02-12", "notes": "", - "parcelID": "17441", - "siteID": "15457", - "siteRegistry": false + "parcelID": "20515", + "siteID": "20942", + "siteRegistry": true } ] }, { - "uuid": "5a2d7b12-9de1-4f0f-b86d-8af56058d374", - "siteID": 16673, - "address": "291 Cloyd Roads", - "latitude": 49.3852, - "longitude": -121.6286, - "lastUpdated": "2022-10-31", - "city": "Augusta-Richmond County", - "region": "Kootenay", - "victoriaFile": "26250-20/19155", + "uuid": "577089ff-dffc-4a81-a7ae-40da0dfb3f30", + "siteID": 19221, + "address": "23640 Schulist Parks", + "latitude": 55.1799, + "longitude": -135.682, + "lastUpdated": "2022-03-13", + "city": "Pocatello", + "region": "Mainland/Southwest", + "victoriaFile": "26250-20/18694", "regionalFile": "N/A", "parcelIDs": [ - 3156802, - 4468713, - 9888926, - 8147097, - 1086488 + 9311878, + 4457502, + 5335768, + 5440514, + 5888858 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2015-02-15", - "completed": "2017-01-15", - "initiated": "2019-03-19", - "ministryContact": "COLLIER TAD", + "createdAt": "2020-07-29", + "completed": "2019-10-29", + "initiated": "2014-03-25", + "ministryContact": "MUELLER VIRGIL", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -8446,22 +11461,32 @@ "notationParticipants": [ { "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2017-10-13", - "completed": "2022-12-29", - "initiated": "2015-03-10", - "ministryContact": "HARRIS AYLIN", + "createdAt": "2015-01-01", + "completed": "2021-05-17", + "initiated": "2021-01-16", + "ministryContact": "STIEDEMANN ABBIGAIL", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -8477,26 +11502,21 @@ { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false + "role": "SUBMITTED BY", + "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2019-05-12", - "completed": "2016-01-18", - "initiated": "2015-05-17", - "ministryContact": "TREUTEL LEOPOLDO", + "createdAt": "2021-11-16", + "completed": "2022-04-19", + "initiated": "2014-01-21", + "ministryContact": "BOEHM HERSHEL", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -8504,29 +11524,39 @@ "" ], "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2015-07-23", - "completed": "2016-09-03", - "initiated": "2015-06-09", - "ministryContact": "FEEST COLBY", + "createdAt": "2018-04-22", + "completed": "2021-04-04", + "initiated": "2022-10-28", + "ministryContact": "CUMMERATA ROLLIN", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -8534,11 +11564,6 @@ "" ], "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", @@ -8553,10 +11578,10 @@ "siteRegistry": false }, { - "createdAt": "2020-05-22", - "completed": "2013-10-23", - "initiated": "2016-01-04", - "ministryContact": "FISHER RODOLFO", + "createdAt": "2017-03-25", + "completed": "2015-01-05", + "initiated": "2014-05-31", + "ministryContact": "WILDERMAN LACY", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -8565,18 +11590,13 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", "siteRegistry": false }, { @@ -8590,19 +11610,19 @@ ], "participants": [ { - "name": "AMET, DOLOR SIT", - "endDate": "2019-10-04", - "startDate": "2019-12-10", + "name": "IPSUM", + "endDate": "2020-06-28", + "startDate": "2019-12-30", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], - "siteRegistry": false + "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2021-04-25", - "startDate": "2017-06-11", + "endDate": "2021-11-22", + "startDate": "2017-02-11", "notes": "", "roles": [ "ORGANIZATION" @@ -8610,51 +11630,189 @@ "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2015-03-15", - "startDate": "2020-06-17", + "name": "AMET, DOLOR SIT", + "endDate": "2014-06-17", + "startDate": "2016-02-29", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "AMET, DOLOR SIT", + "endDate": "2021-02-28", + "startDate": "2016-01-15", "notes": "", "roles": [ "ORGANIZATION" ], "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2018-11-23", + "startDate": "2021-04-14", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + } + ], + "suspectLandUses": [ + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2015-02-04 (described on Site Profile dated 2015-02-04)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2018-11-16 (described on Site Profile dated 2018-11-16)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2023-09-19 (described on Site Profile dated 2023-09-19)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2016-01-27 (described on Site Profile dated 2016-01-27)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2021-08-04 (described on Site Profile dated 2021-08-04)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + } + ], + "siteDisclosures": [ + { + "siteRegistry": false, + "dateReceived": "2015-01-01", + "dateCompleted": "2018-10-16", + "dateEntered": "2016-06-25", + "dateRegistrar": "2020-11-16", + "dateLocalAuthorityReceived": "2016-11-17", + "summary": "Enim voluptatum voluptatum temporibus magni minima.", + "informationUsed": "Aliquam laudantium quod tempora laudantium.\nConsequuntur ut voluptas soluta repudiandae eum autem vitae.\nEst tempore quia error quasi vel numquam.\nMolestias totam odit sunt quidem excepturi sunt.", + "pastOrPresentOrders": "Amet error rerum quos maiores quod inventore.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + } + ] + }, + { + "siteRegistry": true, + "dateReceived": "2019-07-01", + "dateCompleted": "2016-02-06", + "dateEntered": "2014-01-21", + "dateRegistrar": "2015-07-05", + "dateLocalAuthorityReceived": "2017-03-19", + "summary": "Iusto sunt placeat possimus quaerat numquam consequuntur officiis enim facilis.\nSed nobis nisi culpa.", + "informationUsed": "Cumque culpa esse voluptatibus fuga alias ducimus iusto.\nIn aliquam laudantium at expedita laudantium magnam quam doloribus.\nQuidem quam quos ipsum dolore animi voluptatum saepe.\nVoluptate praesentium beatae voluptatum voluptatem earum.", + "pastOrPresentOrders": "Repudiandae dolor nostrum possimus nostrum non esse.\nOptio natus dignissimos consequatur eligendi aperiam quam voluptatem inventore.\nMaiores tempore tempora repellat minima placeat quaerat ullam quod corporis.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + } + ] + } + ], + "activityLog": [ + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "ORN DANNIE", + "timestamp": "2023-06-29" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "CRIST MARCIA", + "timestamp": "2022-08-25" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "LUBOWITZ ANNAMAE", + "timestamp": "2021-11-25" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "TREUTEL ELADIO", + "timestamp": "2015-12-08" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "CHRISTIANSEN PAIGE", + "timestamp": "2018-10-16" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "BAHRINGER JAYLAN", + "timestamp": "2022-12-21" } ], "associatedSites": [ { - "dateNoted": "2021-08-04", + "dateNoted": "2019-09-27", "notes": "", - "parcelID": "18556", - "siteID": "19084", - "siteRegistry": true + "parcelID": "15700", + "siteID": "20782", + "siteRegistry": false } ] }, { - "uuid": "648643b4-262e-41fc-bcdc-1ba09d51827c", - "siteID": 20773, - "address": "43071 O'Keefe Rapid", - "latitude": 54.387, - "longitude": -138.3217, - "lastUpdated": "2014-07-24", - "city": "Martashire", - "region": "Mainland/Southwest", - "victoriaFile": "26250-20/7776", + "uuid": "363399f3-9091-447b-ad84-0f767ea0791b", + "siteID": 17846, + "address": "782 Stehr Path", + "latitude": 56.14, + "longitude": -131.5652, + "lastUpdated": "2016-11-07", + "city": "Priceville", + "region": "Vancouver Island/Coast", + "victoriaFile": "26250-20/10433", "regionalFile": "N/A", "parcelIDs": [ - 9815147, - 8131291, - 4411533, - 4623942, - 8623466 + 2320566, + 4937275, + 1762629, + 3667010, + 3356215 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2016-01-20", - "completed": "2019-05-14", - "initiated": "2018-11-10", - "ministryContact": "LANGOSH CORENE", + "createdAt": "2015-12-16", + "completed": "2023-04-04", + "initiated": "2014-08-22", + "ministryContact": "O'REILLY SHANIE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -8664,32 +11822,27 @@ "notationParticipants": [ { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2015-07-07", - "completed": "2020-09-03", - "initiated": "2019-05-17", - "ministryContact": "HARBER ABIGAIL", + "createdAt": "2023-06-02", + "completed": "2017-12-29", + "initiated": "2020-12-28", + "ministryContact": "LANG ALEXA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -8699,32 +11852,22 @@ "notationParticipants": [ { "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false + "role": "REQUESTED BY", + "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false } ], "siteRegistry": true }, { - "createdAt": "2015-10-09", - "completed": "2015-11-29", - "initiated": "2020-07-16", - "ministryContact": "JOHNS RON", + "createdAt": "2019-02-28", + "completed": "2017-11-28", + "initiated": "2021-04-26", + "ministryContact": "CONNELLY OTTILIE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -8739,22 +11882,32 @@ }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, { "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2016-11-02", - "completed": "2020-03-21", - "initiated": "2015-11-05", - "ministryContact": "DAUGHERTY WILTON", + "createdAt": "2018-01-12", + "completed": "2021-03-14", + "initiated": "2016-10-27", + "ministryContact": "HUDSON CHAIM", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -8765,7 +11918,7 @@ { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", @@ -8773,9 +11926,34 @@ "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "createdAt": "2022-05-22", + "completed": "2022-02-12", + "initiated": "2020-09-01", + "ministryContact": "BAHRINGER FAVIAN", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false } ], "siteRegistry": false @@ -8783,9 +11961,9 @@ ], "participants": [ { - "name": "IPSUM", - "endDate": "2015-12-09", - "startDate": "2015-04-29", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2014-08-17", + "startDate": "2019-09-15", "notes": "", "roles": [ "EMPLOYEE" @@ -8793,19 +11971,19 @@ "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2018-04-20", - "startDate": "2023-06-15", + "name": "AMET, DOLOR SIT", + "endDate": "2013-12-07", + "startDate": "2021-07-07", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": false + "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", - "endDate": "2019-06-12", - "startDate": "2018-10-29", + "endDate": "2019-08-02", + "startDate": "2022-08-04", "notes": "", "roles": [ "EMPLOYEE" @@ -8814,246 +11992,173 @@ }, { "name": "AMET, DOLOR SIT", - "endDate": "2018-03-17", - "startDate": "2020-07-17", + "endDate": "2022-11-29", + "startDate": "2020-08-26", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": false + "siteRegistry": true } ], - "associatedSites": [ + "suspectLandUses": [ { - "dateNoted": "2016-02-26", - "notes": "", - "parcelID": "18614", - "siteID": "15656", - "siteRegistry": false + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2014-04-13 (described on Site Profile dated 2014-04-13)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "dateNoted": "2014-09-21", - "notes": "", - "parcelID": "17986", - "siteID": "19699", - "siteRegistry": true + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2019-10-16 (described on Site Profile dated 2019-10-16)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "dateNoted": "2015-05-19", - "notes": "", - "parcelID": "17425", - "siteID": "19796", - "siteRegistry": false + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2014-09-12 (described on Site Profile dated 2014-09-12)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2021-09-01 (described on Site Profile dated 2021-09-01)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } - ] - }, - { - "uuid": "13fc2f1d-4acd-41b5-abdc-2eeea2c75807", - "siteID": 15695, - "address": "1143 Gibson Branch", - "latitude": 56.7179, - "longitude": -135.2911, - "lastUpdated": "2023-05-04", - "city": "Rancho Palos Verdes", - "region": "Thompson-Okanagan", - "victoriaFile": "26250-20/8533", - "regionalFile": "N/A", - "parcelIDs": [ - 3342807, - 2832303, - 3357844, - 8770942, - 8258208 ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ + "siteDisclosures": [ { - "createdAt": "2022-02-15", - "completed": "2022-11-04", - "initiated": "2014-08-26", - "ministryContact": "LOWE AMARA", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, + "siteRegistry": false, + "dateReceived": "2019-05-29", + "dateCompleted": "2014-10-27", + "dateEntered": "2018-01-18", + "dateRegistrar": "2016-03-02", + "dateLocalAuthorityReceived": "2013-10-23", + "summary": "Itaque quaerat alias.\nVelit rem perferendis.", + "informationUsed": "Adipisci voluptas voluptas ipsa delectus.\nFacere unde sint eveniet eum error rerum.\nRepudiandae laborum soluta quibusdam modi expedita.", + "pastOrPresentOrders": "Totam facilis voluptate ipsum exercitationem iste error labore.\nOptio officiis enim dolorum excepturi consectetur.", + "commercialAndIndustrialPurposes": [ { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true } - ], - "siteRegistry": false + ] + } + ], + "activityLog": [ + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "DICKI LEXI", + "timestamp": "2015-10-04" }, { - "createdAt": "2022-10-27", - "completed": "2017-02-27", - "initiated": "2018-11-07", - "ministryContact": "STANTON ALIYAH", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - } - ], - "siteRegistry": true + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "MILLER SANTINO", + "timestamp": "2023-06-01" }, { - "createdAt": "2023-05-30", - "completed": "2020-05-07", - "initiated": "2017-06-17", - "ministryContact": "ONDRICKA MADELYN", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - } - ], - "siteRegistry": false - } - ], - "participants": [ + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "LABADIE CHADRICK", + "timestamp": "2016-09-26" + }, { - "name": "IPSUM", - "endDate": "2023-05-24", - "startDate": "2014-01-29", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": false + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "LITTEL ISOM", + "timestamp": "2020-03-25" }, { - "name": "IPSUM", - "endDate": "2014-01-26", - "startDate": "2014-01-12", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": false + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "FAY NASIR", + "timestamp": "2020-02-18" }, { - "name": "IPSUM", - "endDate": "2016-03-08", - "startDate": "2022-11-02", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": false + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "KUNZE KAREN", + "timestamp": "2020-02-17" }, { - "name": "AMET, DOLOR SIT", - "endDate": "2020-02-27", - "startDate": "2015-11-01", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": true + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "SHANAHAN-VON MYRTIS", + "timestamp": "2023-04-30" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "BATZ RHETT", + "timestamp": "2022-07-13" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "BERNIER DAVION", + "timestamp": "2014-03-30" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "NITZSCHE AMELIA", + "timestamp": "2018-05-26" } ], "associatedSites": [ { - "dateNoted": "2018-12-30", + "dateNoted": "2014-06-15", "notes": "", - "parcelID": "20707", - "siteID": "20211", - "siteRegistry": true + "parcelID": "19190", + "siteID": "20230", + "siteRegistry": false }, { - "dateNoted": "2019-10-04", + "dateNoted": "2016-03-01", "notes": "", - "parcelID": "18872", - "siteID": "16312", + "parcelID": "18656", + "siteID": "20329", "siteRegistry": false }, { - "dateNoted": "2015-07-06", + "dateNoted": "2021-03-08", "notes": "", - "parcelID": "18656", - "siteID": "20869", - "siteRegistry": false + "parcelID": "15715", + "siteID": "18201", + "siteRegistry": true } ] }, { - "uuid": "70a15884-9f89-4e22-806a-2a3fdc41a595", - "siteID": 16935, - "address": "94239 O'Keefe Ridges", - "latitude": 48.9139, - "longitude": -133.3162, - "lastUpdated": "2022-05-25", - "city": "North Isaiberg", + "uuid": "89341b8a-c430-47ac-8648-7870e7cbe8a1", + "siteID": 18188, + "address": "16971 Nicolas Gardens", + "latitude": 56.794, + "longitude": -121.1345, + "lastUpdated": "2020-09-28", + "city": "Lake Clevehaven", "region": "Vancouver Island/Coast", - "victoriaFile": "26250-20/18132", + "victoriaFile": "26250-20/4235", "regionalFile": "N/A", "parcelIDs": [ - 6442159, - 9473650, - 2196498, - 1429551, - 6943597 + 7876272, + 4727229, + 6825023, + 4646713, + 4639961 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2013-10-01", - "completed": "2016-03-05", - "initiated": "2016-05-11", - "ministryContact": "CUMMINGS DELLA", + "createdAt": "2016-03-06", + "completed": "2020-03-12", + "initiated": "2019-07-01", + "ministryContact": "ULLRICH EMMANUEL", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -9063,8 +12168,8 @@ "notationParticipants": [ { "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true + "role": "SUBMITTED BY", + "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", @@ -9072,18 +12177,23 @@ "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true } ], "siteRegistry": true }, { - "createdAt": "2017-11-09", - "completed": "2015-12-25", - "initiated": "2019-08-08", - "ministryContact": "ANKUNDING CAROLE", + "createdAt": "2016-07-31", + "completed": "2013-12-01", + "initiated": "2015-03-20", + "ministryContact": "PADBERG CESAR", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -9092,24 +12202,19 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false + "role": "REQUESTED BY", + "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false + "role": "SUBMITTED BY", + "siteRegistry": true } ], "siteRegistry": true @@ -9117,71 +12222,182 @@ ], "participants": [ { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2019-06-03", - "startDate": "2019-10-04", + "name": "AMET, DOLOR SIT", + "endDate": "2014-06-13", + "startDate": "2015-01-12", "notes": "", "roles": [ "EMPLOYEE" ], "siteRegistry": true }, + { + "name": "AMET, DOLOR SIT", + "endDate": "2020-10-03", + "startDate": "2021-10-26", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, { "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2022-11-03", - "startDate": "2020-07-19", + "endDate": "2015-02-10", + "startDate": "2018-10-11", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": false + "siteRegistry": true }, { - "name": "AMET, DOLOR SIT", - "endDate": "2020-07-18", - "startDate": "2016-05-13", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2014-08-17", + "startDate": "2017-04-24", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2016-11-28", + "startDate": "2021-02-26", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + } + ], + "suspectLandUses": [ + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2013-12-01 (described on Site Profile dated 2013-12-01)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2017-11-08 (described on Site Profile dated 2017-11-08)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2019-04-20 (described on Site Profile dated 2019-04-20)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2022-09-24 (described on Site Profile dated 2022-09-24)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2018-09-25 (described on Site Profile dated 2018-09-25)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + } + ], + "siteDisclosures": [ + { + "siteRegistry": true, + "dateReceived": "2023-01-05", + "dateCompleted": "2017-04-21", + "dateEntered": "2014-07-10", + "dateRegistrar": "2023-01-24", + "dateLocalAuthorityReceived": "2023-06-15", + "summary": "Exercitationem optio nobis deleniti explicabo quam sapiente at nobis magni.\nPariatur ab cupiditate libero.", + "informationUsed": "Veniam quasi ut ratione enim maiores optio.\nAsperiores rerum ipsam quis.\nEsse beatae accusamus incidunt natus nulla adipisci.", + "pastOrPresentOrders": "Eum mollitia dolorem.\nTotam occaecati maiores sed possimus aspernatur maxime.\nQuam cum quaerat quam sunt.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + } + ] + } + ], + "activityLog": [ + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "MCLAUGHLIN SIBYL", + "timestamp": "2023-07-23" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "JAKUBOWSKI CASEY", + "timestamp": "2019-09-04" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "STEUBER CORNELL", + "timestamp": "2018-07-10" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "HAMILL CAMDEN", + "timestamp": "2020-02-05" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "JACOBS DARBY", + "timestamp": "2020-06-23" } ], "associatedSites": [ { - "dateNoted": "2017-11-21", + "dateNoted": "2013-12-05", + "notes": "", + "parcelID": "15988", + "siteID": "15592", + "siteRegistry": false + }, + { + "dateNoted": "2020-04-19", "notes": "", - "parcelID": "18974", - "siteID": "17260", + "parcelID": "16175", + "siteID": "17036", "siteRegistry": false } ] }, { - "uuid": "e1424391-1602-49f4-9923-6b464ab44d69", - "siteID": 18080, - "address": "927 Edd Inlet", - "latitude": 58.7303, - "longitude": -132.6962, - "lastUpdated": "2023-07-03", - "city": "New Fredy", - "region": "Vancouver Island/Coast", - "victoriaFile": "26250-20/4286", + "uuid": "865bb62c-1cde-4d98-90e8-05e31d164089", + "siteID": 15889, + "address": "57267 Priscilla Rapid", + "latitude": 53.3338, + "longitude": -138.2796, + "lastUpdated": "2016-07-19", + "city": "West Saigeview", + "region": "Kootenay", + "victoriaFile": "26250-20/4118", "regionalFile": "N/A", "parcelIDs": [ - 4387933, - 2723417, - 3395001, - 620620, - 9792215 + 182595, + 4709001, + 844201, + 3117672, + 5289727 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2018-07-17", - "completed": "2018-07-12", - "initiated": "2014-10-24", - "ministryContact": "NIKOLAUS THELMA", + "createdAt": "2020-05-29", + "completed": "2023-05-18", + "initiated": "2018-07-11", + "ministryContact": "ERDMAN ERA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -9194,24 +12410,34 @@ "role": "SUBMITTED BY", "siteRegistry": true }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2021-11-14", - "completed": "2014-10-18", - "initiated": "2019-08-27", - "ministryContact": "JOHNSTON JANY", + "createdAt": "2016-02-05", + "completed": "2021-03-21", + "initiated": "2014-08-31", + "ministryContact": "KONOPELSKI DEON", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -9222,26 +12448,21 @@ { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2020-10-13", - "completed": "2019-04-25", - "initiated": "2013-11-07", - "ministryContact": "FEENEY CAROLINA", + "createdAt": "2020-09-14", + "completed": "2019-09-14", + "initiated": "2016-11-15", + "ministryContact": "RUNTE DESHAWN", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -9251,11 +12472,16 @@ "notationParticipants": [ { "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false } @@ -9265,29 +12491,19 @@ ], "participants": [ { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2021-04-09", - "startDate": "2015-04-28", + "name": "AMET, DOLOR SIT", + "endDate": "2016-02-03", + "startDate": "2022-02-24", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": false + "siteRegistry": true }, { "name": "IPSUM", - "endDate": "2022-03-06", - "startDate": "2016-04-08", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2019-04-30", - "startDate": "2016-11-08", + "endDate": "2022-01-03", + "startDate": "2016-09-12", "notes": "", "roles": [ "ORGANIZATION" @@ -9295,9 +12511,9 @@ "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2015-07-23", - "startDate": "2018-11-13", + "name": "IPSUM", + "endDate": "2015-12-14", + "startDate": "2016-06-18", "notes": "", "roles": [ "EMPLOYEE" @@ -9305,9 +12521,9 @@ "siteRegistry": false }, { - "name": "AMET, DOLOR SIT", - "endDate": "2015-11-30", - "startDate": "2020-02-20", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2022-03-30", + "startDate": "2016-02-08", "notes": "", "roles": [ "EMPLOYEE" @@ -9315,255 +12531,199 @@ "siteRegistry": false } ], - "associatedSites": [ + "suspectLandUses": [ { - "dateNoted": "2013-12-01", - "notes": "", - "parcelID": "18775", - "siteID": "15919", - "siteRegistry": true + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2015-12-11 (described on Site Profile dated 2015-12-11)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "dateNoted": "2014-12-16", - "notes": "", - "parcelID": "18457", - "siteID": "20957", - "siteRegistry": false + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2020-06-18 (described on Site Profile dated 2020-06-18)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "dateNoted": "2017-09-26", - "notes": "", - "parcelID": "18979", - "siteID": "15543", - "siteRegistry": true + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2021-12-15 (described on Site Profile dated 2021-12-15)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2023-01-01 (described on Site Profile dated 2023-01-01)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2018-10-05 (described on Site Profile dated 2018-10-05)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } - ] - }, - { - "uuid": "da6cf77d-ac87-4076-bc1a-2ed83d09f3c0", - "siteID": 16814, - "address": "670 Zemlak Dam", - "latitude": 52.7848, - "longitude": -134.7527, - "lastUpdated": "2021-06-06", - "city": "South Sarahberg", - "region": "Kootenay", - "victoriaFile": "26250-20/15388", - "regionalFile": "N/A", - "parcelIDs": [ - 8164600, - 2437399, - 4985247, - 614088, - 642230 ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ + "siteDisclosures": [ { - "createdAt": "2020-09-09", - "completed": "2022-12-31", - "initiated": "2023-03-23", - "ministryContact": "QUIGLEY KATELYNN", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ + "siteRegistry": true, + "dateReceived": "2022-08-13", + "dateCompleted": "2017-08-28", + "dateEntered": "2016-07-12", + "dateRegistrar": "2018-08-10", + "dateLocalAuthorityReceived": "2017-08-09", + "summary": "Harum reprehenderit aperiam atque voluptas eaque repellat similique.", + "informationUsed": "Nisi voluptates rem asperiores.\nOmnis fugiat hic ratione reprehenderit aperiam minima quam facilis.\nDignissimos explicabo ut quibusdam veniam sit.", + "pastOrPresentOrders": "Officia in illo voluptate.\nNihil nostrum voluptas.\nMolestiae consectetur enim laudantium accusamus eos totam sapiente aspernatur et.", + "commercialAndIndustrialPurposes": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - } - ], - "siteRegistry": true - }, - { - "createdAt": "2018-06-05", - "completed": "2017-12-17", - "initiated": "2019-09-02", - "ministryContact": "BERNHARD OWEN", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - } - ], - "siteRegistry": false - }, - { - "createdAt": "2015-05-26", - "completed": "2014-07-12", - "initiated": "2019-03-16", - "ministryContact": "FERRY JABARI", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true } - ], - "siteRegistry": false + ] }, { - "createdAt": "2019-05-24", - "completed": "2015-12-10", - "initiated": "2018-01-23", - "ministryContact": "WISOKY KEEGAN", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ + "siteRegistry": true, + "dateReceived": "2023-04-29", + "dateCompleted": "2019-04-26", + "dateEntered": "2014-01-19", + "dateRegistrar": "2017-08-11", + "dateLocalAuthorityReceived": "2021-08-01", + "summary": "Officiis dicta earum veniam dolores in inventore vitae ea alias.\nIncidunt ratione commodi minus est aperiam exercitationem.\nMollitia culpa aliquam.", + "informationUsed": "Repellat earum at veniam quasi.\nDebitis molestiae possimus dolore.\nExcepturi laudantium recusandae harum.", + "pastOrPresentOrders": "Sunt sunt nostrum dolore quo error.\nProvident excepturi labore sunt ducimus pariatur doloribus natus.", + "commercialAndIndustrialPurposes": [ { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true } - ], - "siteRegistry": true + ] } ], - "participants": [ + "activityLog": [ { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2017-08-09", - "startDate": "2018-09-10", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": true + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "GLEASON CELESTINE", + "timestamp": "2020-11-16" }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2020-10-22", - "startDate": "2015-11-12", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": false + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "GERHOLD DEMARCUS", + "timestamp": "2019-03-28" }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2013-11-11", - "startDate": "2016-10-20", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": false + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "HAND CIERRA", + "timestamp": "2022-11-27" }, { - "name": "AMET, DOLOR SIT", - "endDate": "2016-12-27", - "startDate": "2016-11-13", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": false + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "EMARD GINO", + "timestamp": "2017-05-19" }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2019-01-05", - "startDate": "2020-09-27", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": true + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "HAMMES IVAH", + "timestamp": "2020-11-25" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "LYNCH CLETA", + "timestamp": "2021-06-20" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "SIPES SHEA", + "timestamp": "2016-02-20" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "SWANIAWSKI JEANETTE", + "timestamp": "2022-05-04" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "HAMMES SUSAN", + "timestamp": "2018-05-28" } ], "associatedSites": [ { - "dateNoted": "2017-10-27", + "dateNoted": "2019-04-14", "notes": "", - "parcelID": "16115", - "siteID": "19087", + "parcelID": "16001", + "siteID": "20762", "siteRegistry": false }, { - "dateNoted": "2023-07-06", + "dateNoted": "2017-06-21", "notes": "", - "parcelID": "19925", - "siteID": "17304", - "siteRegistry": false + "parcelID": "18855", + "siteID": "17809", + "siteRegistry": true } ] }, { - "uuid": "0e7df480-4e0c-495f-9bdd-90ab21c685e2", - "siteID": 16358, - "address": "453 Dariana Wall", - "latitude": 51.3633, - "longitude": -129.3411, - "lastUpdated": "2020-06-11", - "city": "Parma", - "region": " North Coast", - "victoriaFile": "26250-20/7651", + "uuid": "e4748d2f-f15a-47f5-bd4d-fcbe65dfbfcd", + "siteID": 18995, + "address": "43265 Lehner Avenue", + "latitude": 50.2033, + "longitude": -124.974, + "lastUpdated": "2021-12-31", + "city": "South Johnathan", + "region": "Kootenay", + "victoriaFile": "26250-20/4078", "regionalFile": "N/A", "parcelIDs": [ - 3221205, - 6085943, - 4328061, - 5768215, - 7722132 + 4057286, + 5654777, + 1448657, + 863402, + 8996501 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2017-08-11", - "completed": "2017-07-10", - "initiated": "2019-02-25", - "ministryContact": "BARTOLETTI ULICES", + "createdAt": "2023-10-02", + "completed": "2013-10-19", + "initiated": "2022-10-15", + "ministryContact": "HETTINGER VALERIE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -9572,33 +12732,53 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "createdAt": "2018-09-27", + "completed": "2019-03-08", + "initiated": "2023-05-01", + "ministryContact": "OLSON AIYANA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true + "role": "SUBMITTED BY", + "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false } ], "siteRegistry": true }, { - "createdAt": "2022-10-22", - "completed": "2017-08-01", - "initiated": "2019-05-19", - "ministryContact": "DARE ANIBAL", + "createdAt": "2015-06-25", + "completed": "2021-04-07", + "initiated": "2015-06-21", + "ministryContact": "FRAMI BROOK", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -9606,6 +12786,11 @@ "" ], "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", @@ -9613,7 +12798,12 @@ }, { "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": false }, { @@ -9625,10 +12815,10 @@ "siteRegistry": false }, { - "createdAt": "2016-09-26", - "completed": "2021-01-07", - "initiated": "2014-12-28", - "ministryContact": "FEENEY OLAF", + "createdAt": "2020-02-07", + "completed": "2023-03-20", + "initiated": "2018-10-04", + "ministryContact": "NITZSCHE BEATRICE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -9639,31 +12829,31 @@ { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2016-11-11", - "completed": "2022-06-07", - "initiated": "2021-05-01", - "ministryContact": "WOLFF ALLEN", + "createdAt": "2019-04-20", + "completed": "2015-04-12", + "initiated": "2015-04-01", + "ministryContact": "RICE VERNICE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -9671,15 +12861,10 @@ "" ], "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", @@ -9688,8 +12873,18 @@ }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false } ], "siteRegistry": false @@ -9697,9 +12892,9 @@ ], "participants": [ { - "name": "IPSUM", - "endDate": "2016-06-11", - "startDate": "2020-10-14", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2015-09-05", + "startDate": "2015-06-01", "notes": "", "roles": [ "ORGANIZATION" @@ -9707,19 +12902,19 @@ "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2014-05-26", - "startDate": "2014-09-21", + "name": "AMET, DOLOR SIT", + "endDate": "2023-10-07", + "startDate": "2022-08-10", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2021-02-18", - "startDate": "2014-04-16", + "name": "AMET, DOLOR SIT", + "endDate": "2018-11-20", + "startDate": "2020-11-29", "notes": "", "roles": [ "ORGANIZATION" @@ -9727,51 +12922,191 @@ "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2022-10-27", - "startDate": "2022-08-14", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2013-11-02", + "startDate": "2018-04-14", "notes": "", "roles": [ "ORGANIZATION" ], "siteRegistry": true - } - ], - "associatedSites": [ + }, { - "dateNoted": "2014-08-18", + "name": "AMET, DOLOR SIT", + "endDate": "2023-05-20", + "startDate": "2014-01-22", "notes": "", - "parcelID": "16432", - "siteID": "20443", - "siteRegistry": false - } + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + } + ], + "suspectLandUses": [ + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2021-04-11 (described on Site Profile dated 2021-04-11)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2016-04-09 (described on Site Profile dated 2016-04-09)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2014-05-25 (described on Site Profile dated 2014-05-25)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2023-08-11 (described on Site Profile dated 2023-08-11)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + } + ], + "siteDisclosures": [ + { + "siteRegistry": false, + "dateReceived": "2016-05-09", + "dateCompleted": "2023-02-11", + "dateEntered": "2014-06-01", + "dateRegistrar": "2016-02-10", + "dateLocalAuthorityReceived": "2020-04-09", + "summary": "Alias quis atque cum voluptatibus harum deleniti.", + "informationUsed": "Dicta culpa tempore.\nQuibusdam repellat maxime exercitationem repudiandae mollitia corrupti numquam voluptatibus.\nNon nemo error quod inventore.\nQuis odit animi deleniti nemo ab nostrum quasi.", + "pastOrPresentOrders": "Debitis laudantium et.\nDicta libero perspiciatis consectetur.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + } + ] + }, + { + "siteRegistry": true, + "dateReceived": "2014-07-22", + "dateCompleted": "2021-05-16", + "dateEntered": "2023-06-02", + "dateRegistrar": "2014-02-09", + "dateLocalAuthorityReceived": "2023-08-14", + "summary": "Voluptate quis aspernatur nam.\nMagni culpa pariatur odit aspernatur enim dicta.\nDeleniti animi voluptatum iste ipsa id dolorum eos voluptas.", + "informationUsed": "Placeat perferendis accusantium.\nRepudiandae nemo nostrum et voluptates.\nVoluptatem accusamus unde iste nemo laboriosam.\nVeritatis nulla ad.\nId dignissimos veniam nostrum tempora totam.", + "pastOrPresentOrders": "Temporibus ad commodi mollitia expedita vero doloribus.\nExercitationem ipsam deserunt reiciendis quod mollitia provident.\nRepudiandae iste distinctio saepe similique dolor minima dolor molestias.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + } + ] + } + ], + "activityLog": [ + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "KOSS ANTONINA", + "timestamp": "2015-09-27" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "WILDERMAN SAVANNAH", + "timestamp": "2020-10-03" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "REICHEL HILLARY", + "timestamp": "2014-11-22" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "BEAHAN RUBYE", + "timestamp": "2023-09-26" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "KUPHAL KAIA", + "timestamp": "2016-03-21" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "SPENCER SANDY", + "timestamp": "2021-06-11" + } + ], + "associatedSites": [ + { + "dateNoted": "2017-11-05", + "notes": "", + "parcelID": "18413", + "siteID": "20734", + "siteRegistry": true + }, + { + "dateNoted": "2019-07-31", + "notes": "", + "parcelID": "19556", + "siteID": "15251", + "siteRegistry": false + } ] }, { - "uuid": "05d0ea04-d49a-4570-acc2-c222949e2073", - "siteID": 16228, - "address": "7310 Randall Mountain", - "latitude": 52.7593, - "longitude": -119.4251, - "lastUpdated": "2019-07-24", - "city": "Lake Delfinastad", - "region": "Cariboo", - "victoriaFile": "26250-20/13206", + "uuid": "d4b05c79-4861-4863-a44a-c4bda7a4e678", + "siteID": 20188, + "address": "3617 Einar Curve", + "latitude": 57.422, + "longitude": -137.0863, + "lastUpdated": "2015-05-01", + "city": "Port Virginie", + "region": "Kootenay", + "victoriaFile": "26250-20/14053", "regionalFile": "N/A", "parcelIDs": [ - 3603920, - 7748186, - 3954932, - 5869004, - 8839593 + 8863371, + 9466740, + 9682054, + 6750544, + 5041519 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2017-02-10", - "completed": "2018-01-20", - "initiated": "2020-01-01", - "ministryContact": "O'CONNELL JAMMIE", + "createdAt": "2020-03-02", + "completed": "2014-06-18", + "initiated": "2022-08-07", + "ministryContact": "HARRIS AFTON", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -9779,34 +13114,34 @@ "" ], "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2013-11-24", - "completed": "2022-11-24", - "initiated": "2022-01-25", - "ministryContact": "CHRISTIANSEN MYRA", + "createdAt": "2014-01-29", + "completed": "2019-11-07", + "initiated": "2014-05-29", + "ministryContact": "WEST ELROY", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -9815,15 +13150,192 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": true + } + ], + "siteRegistry": false + } + ], + "participants": [ + { + "name": "IPSUM", + "endDate": "2022-07-14", + "startDate": "2018-12-17", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "name": "IPSUM", + "endDate": "2016-07-29", + "startDate": "2022-10-06", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + } + ], + "suspectLandUses": [ + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2022-10-05 (described on Site Profile dated 2022-10-05)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2015-07-22 (described on Site Profile dated 2015-07-22)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2020-07-30 (described on Site Profile dated 2020-07-30)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + } + ], + "siteDisclosures": [ + { + "siteRegistry": true, + "dateReceived": "2018-11-23", + "dateCompleted": "2014-07-06", + "dateEntered": "2022-05-14", + "dateRegistrar": "2014-01-24", + "dateLocalAuthorityReceived": "2019-12-16", + "summary": "Esse dignissimos et sequi occaecati.", + "informationUsed": "Nemo harum odio illum voluptas.\nSint expedita veniam.\nItaque quia dolore voluptate quam nulla.\nMagnam voluptatum ad.", + "pastOrPresentOrders": "Blanditiis sunt aliquid dolores impedit.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + } + ] + } + ], + "activityLog": [ + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "LIND DOMENIC", + "timestamp": "2021-10-28" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "FUNK MURRAY", + "timestamp": "2014-06-03" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "EBERT ISOM", + "timestamp": "2018-01-25" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "EBERT FRITZ", + "timestamp": "2023-05-25" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "ROSENBAUM HAROLD", + "timestamp": "2014-04-10" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "HANSEN ANNETTE", + "timestamp": "2023-08-14" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "KUHIC STEPHANY", + "timestamp": "2017-10-27" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "RUNOLFSDOTTIR AYDEN", + "timestamp": "2016-03-23" + } + ], + "associatedSites": [ + { + "dateNoted": "2018-08-12", + "notes": "", + "parcelID": "18793", + "siteID": "18404", + "siteRegistry": true + }, + { + "dateNoted": "2017-04-25", + "notes": "", + "parcelID": "18630", + "siteID": "18004", + "siteRegistry": false + } + ] + }, + { + "uuid": "172cc7be-5e23-4397-8fe0-d916fdab6a63", + "siteID": 15381, + "address": "971 Leta Mount", + "latitude": 58.2783, + "longitude": -138.7633, + "lastUpdated": "2016-03-10", + "city": "Greenholtbury", + "region": " North Coast", + "victoriaFile": "26250-20/11518", + "regionalFile": "N/A", + "parcelIDs": [ + 5933556, + 1334007, + 4887411, + 9520649, + 9743485 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2018-07-23", + "completed": "2016-01-29", + "initiated": "2015-03-13", + "ministryContact": "WUNSCH EMMETT", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", @@ -9832,16 +13344,16 @@ { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2015-08-09", - "completed": "2014-06-13", - "initiated": "2017-03-27", - "ministryContact": "PREDOVIC NEVA", + "createdAt": "2016-03-31", + "completed": "2020-07-02", + "initiated": "2020-08-01", + "ministryContact": "CHAMPLIN ALTA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -9851,18 +13363,18 @@ "notationParticipants": [ { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true + "role": "REQUESTED BY", + "siteRegistry": false } ], "siteRegistry": true @@ -9870,9 +13382,9 @@ ], "participants": [ { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2019-07-31", - "startDate": "2015-09-24", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2021-05-11", + "startDate": "2023-06-09", "notes": "", "roles": [ "ORGANIZATION" @@ -9880,9 +13392,9 @@ "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2023-05-24", - "startDate": "2022-11-19", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2020-04-25", + "startDate": "2014-07-31", "notes": "", "roles": [ "EMPLOYEE" @@ -9890,61 +13402,179 @@ "siteRegistry": true }, { - "name": "AMET, DOLOR SIT", - "endDate": "2019-05-02", - "startDate": "2020-02-24", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2020-04-27", + "startDate": "2016-06-06", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": true }, { - "name": "IPSUM", - "endDate": "2017-02-11", - "startDate": "2018-09-06", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2023-05-25", + "startDate": "2018-03-18", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false + } + ], + "suspectLandUses": [ + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2017-07-12 (described on Site Profile dated 2017-07-12)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2019-05-10 (described on Site Profile dated 2019-05-10)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2014-04-28 (described on Site Profile dated 2014-04-28)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2021-05-15 (described on Site Profile dated 2021-05-15)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + } + ], + "siteDisclosures": [ + { + "siteRegistry": true, + "dateReceived": "2016-03-19", + "dateCompleted": "2020-09-28", + "dateEntered": "2016-03-12", + "dateRegistrar": "2015-02-03", + "dateLocalAuthorityReceived": "2014-07-20", + "summary": "Illum ea cupiditate.", + "informationUsed": "Veritatis eius consequuntur natus esse quasi doloremque inventore ratione.\nMagni recusandae magni quaerat qui ipsa expedita sapiente cum voluptates.\nUt at impedit voluptas nihil harum vero dolorum.", + "pastOrPresentOrders": "Expedita sapiente repellendus reprehenderit ducimus illum nostrum itaque facere necessitatibus.\nEaque beatae neque excepturi et fugiat amet.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + } + ] + }, + { + "siteRegistry": true, + "dateReceived": "2020-10-17", + "dateCompleted": "2016-12-02", + "dateEntered": "2021-05-02", + "dateRegistrar": "2018-10-21", + "dateLocalAuthorityReceived": "2023-01-26", + "summary": "Perspiciatis quam dolor alias veritatis quaerat ex repellendus ab.", + "informationUsed": "Sint ipsum sequi sapiente ipsum corporis natus tempora sed magnam.\nVoluptates perferendis numquam.\nConsequatur rerum alias ratione inventore.", + "pastOrPresentOrders": "Unde eos numquam.\nMinima ipsam voluptatem expedita asperiores non quos occaecati.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + } + ] + } + ], + "activityLog": [ + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "QUITZON CADE", + "timestamp": "2016-06-12" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "MEDHURST JASON", + "timestamp": "2022-08-19" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "HUDSON LEXI", + "timestamp": "2017-08-12" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "MOEN TYRELL", + "timestamp": "2020-12-05" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "RENNER KYLA", + "timestamp": "2019-05-24" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "BODE OCTAVIA", + "timestamp": "2022-12-31" } ], "associatedSites": [ { - "dateNoted": "2023-05-28", + "dateNoted": "2014-08-13", "notes": "", - "parcelID": "19501", - "siteID": "20833", + "parcelID": "16840", + "siteID": "17862", "siteRegistry": false } ] }, { - "uuid": "8aaa0cc4-ee00-4da7-977c-f4d3d9bcb80f", - "siteID": 16133, - "address": "1331 Cassin Motorway", - "latitude": 53.2407, - "longitude": -135.6348, - "lastUpdated": "2022-11-28", - "city": "Douglaschester", - "region": "Vancouver Island/Coast", - "victoriaFile": "26250-20/15381", + "uuid": "bb1fa49b-8b51-46af-a07f-9eb0c8c325f4", + "siteID": 18905, + "address": "2051 Ledner Dam", + "latitude": 56.1149, + "longitude": -138.3408, + "lastUpdated": "2019-07-09", + "city": "South Cleta", + "region": "Cariboo", + "victoriaFile": "26250-20/1417", "regionalFile": "N/A", "parcelIDs": [ - 7530696, - 1587878, - 5160817, - 5826632, - 8064287 + 5970243, + 5369870, + 5350465, + 7316712, + 657893 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2017-07-27", - "completed": "2017-03-23", - "initiated": "2023-01-10", - "ministryContact": "BUCKRIDGE NORENE", + "createdAt": "2023-10-01", + "completed": "2019-09-19", + "initiated": "2021-10-26", + "ministryContact": "KOVACEK BRAIN", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -9952,6 +13582,11 @@ "" ], "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", @@ -9959,27 +13594,27 @@ }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true + "role": "SUBMITTED BY", + "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", "siteRegistry": true } ], "siteRegistry": false }, { - "createdAt": "2015-04-02", - "completed": "2022-11-18", - "initiated": "2021-08-18", - "ministryContact": "STREICH LARUE", + "createdAt": "2020-12-21", + "completed": "2022-06-05", + "initiated": "2014-04-10", + "ministryContact": "LUBOWITZ DONNIE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -9988,23 +13623,23 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2021-02-14", - "completed": "2021-04-02", - "initiated": "2022-04-04", - "ministryContact": "MCCLURE TORREY", + "createdAt": "2020-05-20", + "completed": "2021-08-08", + "initiated": "2019-01-13", + "ministryContact": "KUVALIS EMILE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -10014,7 +13649,7 @@ "notationParticipants": [ { "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": true }, { @@ -10031,10 +13666,10 @@ "siteRegistry": false }, { - "createdAt": "2017-02-02", - "completed": "2018-11-08", - "initiated": "2019-12-20", - "ministryContact": "SCHMIDT KASSANDRA", + "createdAt": "2016-05-19", + "completed": "2017-02-06", + "initiated": "2020-10-20", + "ministryContact": "CARTER HILLARY", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -10043,33 +13678,28 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2017-11-12", - "completed": "2021-04-30", - "initiated": "2019-08-22", - "ministryContact": "FERRY HALIE", + "createdAt": "2018-08-26", + "completed": "2015-05-05", + "initiated": "2014-04-05", + "ministryContact": "HARBER VINCE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -10078,14 +13708,14 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", @@ -10099,28 +13729,28 @@ "participants": [ { "name": "IPSUM", - "endDate": "2018-01-12", - "startDate": "2015-01-09", + "endDate": "2022-11-26", + "startDate": "2021-11-01", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2014-01-05", - "startDate": "2018-07-16", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2021-04-15", + "startDate": "2021-05-07", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], - "siteRegistry": false + "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", - "endDate": "2023-02-18", - "startDate": "2017-05-12", + "endDate": "2013-12-10", + "startDate": "2020-12-19", "notes": "", "roles": [ "EMPLOYEE" @@ -10128,58 +13758,131 @@ "siteRegistry": false }, { - "name": "AMET, DOLOR SIT", - "endDate": "2022-07-23", - "startDate": "2018-01-29", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2017-11-13", + "startDate": "2022-11-08", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], - "siteRegistry": true + "siteRegistry": false } ], - "associatedSites": [ + "suspectLandUses": [ { - "dateNoted": "2017-06-03", - "notes": "", - "parcelID": "19721", - "siteID": "19351", - "siteRegistry": false + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2018-07-29 (described on Site Profile dated 2018-07-29)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2020-01-18 (described on Site Profile dated 2020-01-18)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2017-07-10 (described on Site Profile dated 2017-07-10)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + } + ], + "siteDisclosures": [ + { + "siteRegistry": true, + "dateReceived": "2022-05-17", + "dateCompleted": "2017-03-21", + "dateEntered": "2017-06-08", + "dateRegistrar": "2016-08-17", + "dateLocalAuthorityReceived": "2013-11-13", + "summary": "Ducimus fugiat sunt ab hic quas minima.\nProvident asperiores voluptas.\nDelectus velit earum saepe officia quidem accusantium vero error consectetur.", + "informationUsed": "Perferendis consectetur delectus harum architecto dolores reiciendis molestiae quibusdam.\nTemporibus qui officiis cum ipsa placeat fugiat.\nTemporibus amet quibusdam possimus illo id dicta enim ab aliquam.", + "pastOrPresentOrders": "Quasi fuga eveniet rem repellat quam nisi deserunt repellendus eos.\nFugit tempore nulla aperiam similique facilis.\nVoluptatem optio accusamus.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + } + ] + } + ], + "activityLog": [ + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "LEHNER GLENNA", + "timestamp": "2019-07-30" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "FLATLEY ARNALDO", + "timestamp": "2018-12-12" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "SATTERFIELD AUTUMN", + "timestamp": "2015-11-09" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "MARKS ANIYA", + "timestamp": "2015-02-17" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "KRIS-GISLASON JEDEDIAH", + "timestamp": "2019-01-16" }, { - "dateNoted": "2021-03-07", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "FAY REESE", + "timestamp": "2023-06-08" + } + ], + "associatedSites": [ + { + "dateNoted": "2022-07-19", "notes": "", - "parcelID": "19282", - "siteID": "18587", + "parcelID": "19038", + "siteID": "16489", "siteRegistry": false } ] }, { - "uuid": "4896cd4c-83e7-436e-9429-ce7bf5e76a7f", - "siteID": 19457, - "address": "843 Macey Parkways", - "latitude": 48.8272, - "longitude": -132.3948, - "lastUpdated": "2020-12-03", - "city": "Handville", - "region": "Vancouver Island/Coast", - "victoriaFile": "26250-20/11649", + "uuid": "0dac963b-1ffb-497a-a645-dc289c3e1e23", + "siteID": 19726, + "address": "64790 Tito Shoals", + "latitude": 55.9431, + "longitude": -136.6571, + "lastUpdated": "2014-03-26", + "city": "Blairside", + "region": "Kootenay", + "victoriaFile": "26250-20/2313", "regionalFile": "N/A", "parcelIDs": [ - 315921, - 161983, - 6794481, - 9573279, - 2744601 + 6176589, + 5594622, + 3017452, + 4112444, + 6991768 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2021-03-29", - "completed": "2021-02-13", - "initiated": "2014-05-17", - "ministryContact": "KOSS KATELIN", + "createdAt": "2019-11-04", + "completed": "2022-09-14", + "initiated": "2018-12-13", + "ministryContact": "SWIFT FELICITA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -10188,9 +13891,9 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", @@ -10198,9 +13901,9 @@ "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", @@ -10209,17 +13912,17 @@ }, { "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2022-04-22", - "completed": "2023-09-11", - "initiated": "2019-07-29", - "ministryContact": "SCHADEN HAYLEE", + "createdAt": "2023-03-09", + "completed": "2019-12-28", + "initiated": "2018-03-28", + "ministryContact": "WEBER JORDY", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -10227,39 +13930,24 @@ "" ], "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2022-08-25", - "completed": "2014-04-07", - "initiated": "2022-09-06", - "ministryContact": "ALTENWERTH MARISOL", + "createdAt": "2014-10-21", + "completed": "2022-04-11", + "initiated": "2017-01-19", + "ministryContact": "SAWAYN LILIAN", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -10270,31 +13958,36 @@ { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2018-04-18", - "completed": "2015-01-12", - "initiated": "2020-10-11", - "ministryContact": "BAHRINGER CAMILLE", + "createdAt": "2021-01-25", + "completed": "2020-08-01", + "initiated": "2019-10-11", + "ministryContact": "PROSACCO LAURENCE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -10302,11 +13995,6 @@ "" ], "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", @@ -10315,26 +14003,21 @@ { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true } ], "siteRegistry": false }, { - "createdAt": "2015-08-18", - "completed": "2019-10-13", - "initiated": "2022-09-16", - "ministryContact": "TRANTOW GIDEON", + "createdAt": "2014-02-24", + "completed": "2015-09-17", + "initiated": "2021-09-22", + "ministryContact": "KRAJCIK TAMARA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -10349,8 +14032,13 @@ }, { "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false } ], "siteRegistry": true @@ -10359,28 +14047,38 @@ "participants": [ { "name": "IPSUM", - "endDate": "2019-08-16", - "startDate": "2021-05-08", + "endDate": "2023-01-24", + "startDate": "2016-05-25", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2023-02-26", - "startDate": "2015-09-27", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2020-07-20", + "startDate": "2020-05-06", "notes": "", "roles": [ "EMPLOYEE" ], "siteRegistry": false }, + { + "name": "IPSUM", + "endDate": "2023-04-18", + "startDate": "2023-06-25", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, { "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2022-12-19", - "startDate": "2023-08-24", + "endDate": "2021-12-24", + "startDate": "2021-09-09", "notes": "", "roles": [ "ORGANIZATION" @@ -10388,122 +14086,246 @@ "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2021-11-09", - "startDate": "2017-07-15", + "name": "IPSUM", + "endDate": "2018-01-19", + "startDate": "2017-01-21", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": true } ], - "associatedSites": [ + "suspectLandUses": [ { - "dateNoted": "2022-08-08", - "notes": "", - "parcelID": "18577", - "siteID": "17203", - "siteRegistry": true + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2018-01-21 (described on Site Profile dated 2018-01-21)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "dateNoted": "2020-01-09", - "notes": "", - "parcelID": "15571", - "siteID": "16645", - "siteRegistry": false + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2016-10-26 (described on Site Profile dated 2016-10-26)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2014-11-22 (described on Site Profile dated 2014-11-22)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2015-08-07 (described on Site Profile dated 2015-08-07)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2017-04-19 (described on Site Profile dated 2017-04-19)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } - ] - }, - { - "uuid": "01c6ceee-f856-4fea-b783-d010e66ab029", - "siteID": 16796, - "address": "415 Corkery Lock", - "latitude": 53.7381, - "longitude": -137.6596, - "lastUpdated": "2014-11-25", - "city": "Damianworth", - "region": "Cariboo", - "victoriaFile": "26250-20/15027", - "regionalFile": "N/A", - "parcelIDs": [ - 5089821, - 5892873, - 1359939, - 4897455, - 5205174 ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ + "siteDisclosures": [ { - "createdAt": "2023-07-22", - "completed": "2017-10-13", - "initiated": "2016-10-17", - "ministryContact": "GISLASON-ABSHIRE VLADIMIR", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ + "siteRegistry": false, + "dateReceived": "2023-06-03", + "dateCompleted": "2020-06-26", + "dateEntered": "2020-07-10", + "dateRegistrar": "2020-02-21", + "dateLocalAuthorityReceived": "2017-06-13", + "summary": "Ratione ipsum sint quas consequatur et perferendis sapiente.\nOccaecati repellat perspiciatis minus quasi illum ipsam mollitia quaerat.", + "informationUsed": "Earum doloremque commodi quisquam modi unde.\nAperiam praesentium molestias.\nSit quaerat itaque magni unde soluta quaerat.\nAccusamus laudantium dolorum sed quasi vero voluptatum iste.", + "pastOrPresentOrders": "Excepturi tempora nemo laudantium rem quasi id repudiandae porro.\nIpsum autem ipsam.", + "commercialAndIndustrialPurposes": [ { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true } - ], - "siteRegistry": true + ] }, { - "createdAt": "2018-10-18", - "completed": "2018-05-14", - "initiated": "2016-12-30", - "ministryContact": "PARKER ALLAN", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", + "siteRegistry": false, + "dateReceived": "2023-05-29", + "dateCompleted": "2017-02-01", + "dateEntered": "2015-02-15", + "dateRegistrar": "2019-10-05", + "dateLocalAuthorityReceived": "2017-12-01", + "summary": "Iusto enim officia perferendis ducimus necessitatibus.\nAssumenda eveniet quod minus illo consequuntur inventore.", + "informationUsed": "Sequi cupiditate assumenda.\nError ea maxime similique.\nFuga dignissimos ex labore vero labore vel voluptatum quod.", + "pastOrPresentOrders": "Ratione distinctio doloremque et ducimus autem esse ut magni.\nQuis reprehenderit perspiciatis laboriosam odio necessitatibus maxime iusto iusto.\nQuaerat qui culpa accusantium corrupti.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + } + ] + } + ], + "activityLog": [ + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "WALSH JACKELINE", + "timestamp": "2016-05-07" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "WOLF JOELLE", + "timestamp": "2014-05-10" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "STAMM KYRA", + "timestamp": "2014-01-29" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "ZULAUF NICK", + "timestamp": "2014-07-12" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "BLICK CASEY", + "timestamp": "2019-11-24" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "HAHN DON", + "timestamp": "2016-02-20" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "O'REILLY TRYSTAN", + "timestamp": "2017-07-04" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "MAYERT COLTON", + "timestamp": "2022-03-07" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "MARVIN ADDIE", + "timestamp": "2021-06-24" + } + ], + "associatedSites": [ + { + "dateNoted": "2017-05-02", + "notes": "", + "parcelID": "16183", + "siteID": "16916", + "siteRegistry": true + } + ] + }, + { + "uuid": "90a1dc31-2a9e-4312-b79c-3e92b2dda2f5", + "siteID": 15517, + "address": "6116 Katelynn Falls", + "latitude": 49.9002, + "longitude": -119.0459, + "lastUpdated": "2014-08-26", + "city": "Kaitlinborough", + "region": "Vancouver Island/Coast", + "victoriaFile": "26250-20/8382", + "regionalFile": "N/A", + "parcelIDs": [ + 1880676, + 1709865, + 9638575, + 8067601, + 9375558 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2018-04-27", + "completed": "2018-09-13", + "initiated": "2015-12-20", + "ministryContact": "WIEGAND SIGRID", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", "requestedActions": [ "" ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "createdAt": "2020-11-19", + "completed": "2018-03-17", + "initiated": "2020-12-08", + "ministryContact": "RUECKER EVANS", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ { "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true } @@ -10511,10 +14333,10 @@ "siteRegistry": true }, { - "createdAt": "2017-01-20", - "completed": "2020-05-03", - "initiated": "2017-10-25", - "ministryContact": "KRIS DULCE", + "createdAt": "2016-03-26", + "completed": "2014-01-23", + "initiated": "2016-11-13", + "ministryContact": "HUELS GRADY", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -10524,22 +14346,27 @@ "notationParticipants": [ { "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true + "role": "SUBMITTED BY", + "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false } ], "siteRegistry": false }, { - "createdAt": "2019-09-15", - "completed": "2017-11-20", - "initiated": "2023-06-18", - "ministryContact": "METZ LUCAS", + "createdAt": "2018-03-06", + "completed": "2020-11-30", + "initiated": "2023-02-11", + "ministryContact": "SMITH JAMMIE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -10550,21 +14377,31 @@ { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2018-08-21", - "completed": "2015-09-25", - "initiated": "2015-11-18", - "ministryContact": "KUHIC LILLIANA", + "createdAt": "2017-06-04", + "completed": "2022-05-21", + "initiated": "2018-08-13", + "ministryContact": "JOHNS SELINA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -10573,86 +14410,216 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false } ], "participants": [ { - "name": "IPSUM", - "endDate": "2015-03-25", - "startDate": "2019-05-02", + "name": "AMET, DOLOR SIT", + "endDate": "2014-03-30", + "startDate": "2021-07-18", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2015-05-17", + "startDate": "2021-10-15", + "notes": "", + "roles": [ + "ORGANIZATION" ], "siteRegistry": false }, { "name": "AMET, DOLOR SIT", - "endDate": "2014-03-13", - "startDate": "2015-06-25", + "endDate": "2020-02-19", + "startDate": "2020-01-15", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2023-01-27", + "startDate": "2017-08-22", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2014-04-20", + "startDate": "2014-05-19", + "notes": "", + "roles": [ + "ORGANIZATION" ], "siteRegistry": true } ], + "suspectLandUses": [ + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2022-12-20 (described on Site Profile dated 2022-12-20)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2014-04-05 (described on Site Profile dated 2014-04-05)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2019-03-22 (described on Site Profile dated 2019-03-22)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2022-05-02 (described on Site Profile dated 2022-05-02)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + } + ], + "siteDisclosures": [ + { + "siteRegistry": true, + "dateReceived": "2016-12-28", + "dateCompleted": "2020-08-10", + "dateEntered": "2018-04-07", + "dateRegistrar": "2019-03-17", + "dateLocalAuthorityReceived": "2021-04-02", + "summary": "Voluptatibus nemo tempora alias dolores corrupti consequuntur excepturi.\nAccusamus recusandae officia perferendis nostrum atque tenetur amet asperiores iste.", + "informationUsed": "Id quibusdam velit cum dolores inventore dolorem sit veritatis.\nArchitecto voluptas omnis atque corrupti reiciendis ab tempora voluptatibus iure.\nQuam a recusandae repellendus quasi aspernatur officiis dolorum mollitia quasi.\nMagni minus explicabo suscipit.", + "pastOrPresentOrders": "Fugit itaque itaque.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + } + ] + } + ], + "activityLog": [ + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "GUTKOWSKI NYAH", + "timestamp": "2017-07-14" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "GRANT LELA", + "timestamp": "2021-01-05" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "TURNER LEONORA", + "timestamp": "2020-05-09" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "HUDSON BRAEDEN", + "timestamp": "2022-11-17" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "ZIEMANN MADILYN", + "timestamp": "2017-06-22" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "O'KEEFE POLLY", + "timestamp": "2019-03-04" + } + ], "associatedSites": [ { - "dateNoted": "2014-08-23", + "dateNoted": "2015-02-19", "notes": "", - "parcelID": "16214", - "siteID": "16736", - "siteRegistry": true + "parcelID": "17347", + "siteID": "18509", + "siteRegistry": false } ] }, { - "uuid": "8fc4d6e1-f0d6-423e-87f1-2f76d8073eac", - "siteID": 19728, - "address": "4187 Kevon Mill", - "latitude": 51.6467, - "longitude": -137.1424, - "lastUpdated": "2014-05-06", - "city": "New Dominiquehaven", - "region": "Kootenay", - "victoriaFile": "26250-20/8477", + "uuid": "a5802aa9-252f-4f57-840d-51fa28a5d4cf", + "siteID": 16500, + "address": "395 Maggio Forges", + "latitude": 54.5126, + "longitude": -132.4622, + "lastUpdated": "2019-09-01", + "city": "Ullrichland", + "region": " North Coast", + "victoriaFile": "26250-20/7760", "regionalFile": "N/A", "parcelIDs": [ - 4472838, - 6338782, - 1767861, - 2115508, - 436045 + 1812356, + 3566495, + 2447866, + 6058456, + 3386995 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2018-06-01", - "completed": "2014-10-13", - "initiated": "2016-05-12", - "ministryContact": "TORPHY DANE", + "createdAt": "2015-10-20", + "completed": "2022-05-02", + "initiated": "2020-09-30", + "ministryContact": "HOWELL REBECCA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -10666,28 +14633,23 @@ "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2015-12-20", - "completed": "2016-07-23", - "initiated": "2020-01-02", - "ministryContact": "SCHUPPE KILEY", + "createdAt": "2013-12-18", + "completed": "2013-10-23", + "initiated": "2023-09-28", + "ministryContact": "ZIEMANN PRECIOUS", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -10696,19 +14658,39 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "createdAt": "2016-07-02", + "completed": "2021-08-01", + "initiated": "2015-10-23", + "ministryContact": "KOELPIN KENDRA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ { "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true + "role": "SUBMITTED BY", + "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true + "role": "SUBMITTED BY", + "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", @@ -10716,13 +14698,13 @@ "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2020-03-05", - "completed": "2015-02-12", - "initiated": "2016-08-03", - "ministryContact": "BOGAN DANIKA", + "createdAt": "2022-07-22", + "completed": "2017-03-05", + "initiated": "2022-12-22", + "ministryContact": "MILLS KATHRYN", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -10730,15 +14712,20 @@ "" ], "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", @@ -10749,10 +14736,10 @@ "siteRegistry": true }, { - "createdAt": "2015-05-25", - "completed": "2021-11-14", - "initiated": "2017-02-23", - "ministryContact": "SPENCER EVERETTE", + "createdAt": "2021-10-15", + "completed": "2016-07-26", + "initiated": "2018-03-10", + "ministryContact": "DICKINSON MARA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -10760,30 +14747,25 @@ "" ], "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, { "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true + "role": "REQUESTED BY", + "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true } ], "participants": [ { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2016-10-10", - "startDate": "2022-08-29", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2022-09-23", + "startDate": "2022-02-17", "notes": "", "roles": [ "EMPLOYEE" @@ -10791,100 +14773,172 @@ "siteRegistry": true }, { - "name": "IPSUM", - "endDate": "2015-06-16", - "startDate": "2014-02-01", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2023-03-04", + "startDate": "2020-04-09", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": false - } - ], - "associatedSites": [ - { - "dateNoted": "2016-10-20", - "notes": "", - "parcelID": "20457", - "siteID": "19740", - "siteRegistry": false }, { - "dateNoted": "2015-04-11", + "name": "AMET, DOLOR SIT", + "endDate": "2014-01-30", + "startDate": "2023-10-03", "notes": "", - "parcelID": "20221", - "siteID": "17394", + "roles": [ + "ORGANIZATION" + ], "siteRegistry": true }, { - "dateNoted": "2022-10-25", + "name": "AMET, DOLOR SIT", + "endDate": "2017-02-20", + "startDate": "2017-06-28", "notes": "", - "parcelID": "17235", - "siteID": "17057", + "roles": [ + "ORGANIZATION" + ], "siteRegistry": true } - ] - }, - { - "uuid": "f4bc52bb-e406-49b5-ba70-98e0d887f6a5", - "siteID": 18497, - "address": "19324 Jules Crossroad", - "latitude": 48.4519, - "longitude": -127.6226, - "lastUpdated": "2013-12-14", - "city": "Maurinefort", - "region": "Mainland/Southwest", - "victoriaFile": "26250-20/3973", - "regionalFile": "N/A", - "parcelIDs": [ - 1315602, - 6754216, - 1268104, - 2157161, - 4483903 ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ + "suspectLandUses": [ { - "createdAt": "2016-08-14", - "completed": "2022-06-20", - "initiated": "2014-03-04", - "ministryContact": "PFANNERSTILL EDMUND", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2015-02-27 (described on Site Profile dated 2015-02-27)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2023-08-06 (described on Site Profile dated 2023-08-06)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2021-09-12 (described on Site Profile dated 2021-09-12)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2013-10-14 (described on Site Profile dated 2013-10-14)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + } + ], + "siteDisclosures": [ + { + "siteRegistry": false, + "dateReceived": "2019-12-05", + "dateCompleted": "2014-07-30", + "dateEntered": "2022-10-19", + "dateRegistrar": "2021-08-26", + "dateLocalAuthorityReceived": "2014-09-02", + "summary": "Repellendus nisi asperiores ab optio tenetur nemo at saepe quae.\nSed enim rerum distinctio accusamus.", + "informationUsed": "Magnam iure ad incidunt.\nNobis dolorem repudiandae impedit qui mollitia rerum quae.\nImpedit sequi minima unde tenetur dignissimos ut facilis dolorum.", + "pastOrPresentOrders": "Sit dolor quaerat.\nNam culpa sapiente.", + "commercialAndIndustrialPurposes": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true } - ], - "siteRegistry": false + ] + } + ], + "activityLog": [ + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "VANDERVORT RUSSEL", + "timestamp": "2023-04-29" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "WILDERMAN DIMITRI", + "timestamp": "2022-12-15" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "KLING GEOFFREY", + "timestamp": "2023-08-08" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "NIENOW ALVERTA", + "timestamp": "2023-06-28" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "ANDERSON JANICE", + "timestamp": "2018-10-20" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "SIPES SKYLA", + "timestamp": "2018-03-29" }, { - "createdAt": "2022-06-18", - "completed": "2019-12-02", - "initiated": "2020-12-17", - "ministryContact": "BECKER ADALBERTO", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "WILLMS ARACELY", + "timestamp": "2019-08-03" + } + ], + "associatedSites": [ + { + "dateNoted": "2016-11-13", + "notes": "", + "parcelID": "19426", + "siteID": "18179", + "siteRegistry": true + } + ] + }, + { + "uuid": "14759b1f-e6b3-42cf-89cd-283cf40e2b55", + "siteID": 16876, + "address": "778 Sammy Union", + "latitude": 56.2544, + "longitude": -123.6943, + "lastUpdated": "2013-12-10", + "city": "Lake Yoshiko", + "region": "Cariboo", + "victoriaFile": "26250-20/7117", + "regionalFile": "N/A", + "parcelIDs": [ + 1416243, + 318519, + 2115164, + 8411406, + 7854645 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2018-12-08", + "completed": "2016-04-24", + "initiated": "2021-12-11", + "ministryContact": "PAUCEK FRANCISCA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -10892,41 +14946,11 @@ "" ], "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - } - ], - "siteRegistry": false - }, - { - "createdAt": "2022-03-03", - "completed": "2016-03-05", - "initiated": "2015-01-04", - "ministryContact": "BOTSFORD NICKOLAS", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", @@ -10934,21 +14958,6 @@ }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true } @@ -10956,10 +14965,10 @@ "siteRegistry": true }, { - "createdAt": "2021-09-29", - "completed": "2019-08-17", - "initiated": "2022-10-28", - "ministryContact": "WINTHEISER HARDY", + "createdAt": "2018-06-02", + "completed": "2019-12-12", + "initiated": "2014-07-04", + "ministryContact": "LEGROS LADARIUS", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -10967,20 +14976,15 @@ "" ], "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, { "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true } ], "siteRegistry": true @@ -10988,19 +14992,29 @@ ], "participants": [ { - "name": "IPSUM", - "endDate": "2014-03-31", - "startDate": "2017-02-21", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2014-08-02", + "startDate": "2019-03-09", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2015-07-28", - "startDate": "2020-04-07", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2022-06-29", + "startDate": "2023-03-02", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2019-11-25", + "startDate": "2015-12-08", "notes": "", "roles": [ "ORGANIZATION" @@ -11008,55 +15022,135 @@ "siteRegistry": true } ], + "suspectLandUses": [ + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2019-05-09 (described on Site Profile dated 2019-05-09)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2015-02-11 (described on Site Profile dated 2015-02-11)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2017-08-15 (described on Site Profile dated 2017-08-15)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + } + ], + "siteDisclosures": [ + { + "siteRegistry": false, + "dateReceived": "2022-12-07", + "dateCompleted": "2018-10-16", + "dateEntered": "2023-02-24", + "dateRegistrar": "2018-09-21", + "dateLocalAuthorityReceived": "2017-04-15", + "summary": "Consectetur cupiditate maxime commodi quam deserunt minima voluptatum.", + "informationUsed": "Temporibus libero fuga adipisci itaque adipisci.\nError adipisci iste eaque.\nSequi nulla voluptates qui delectus consequuntur hic atque fugit ullam.\nAdipisci placeat mollitia illo ad.", + "pastOrPresentOrders": "Accusamus numquam voluptatem quo aperiam molestias consequuntur consectetur.\nLaborum reprehenderit deserunt odio ex harum.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + } + ] + } + ], + "activityLog": [ + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "MULLER FIONA", + "timestamp": "2017-06-06" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "MANN DASHAWN", + "timestamp": "2019-11-07" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "DIBBERT HELLEN", + "timestamp": "2019-12-11" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "MERTZ ERNA", + "timestamp": "2017-05-20" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "WARD URSULA", + "timestamp": "2014-01-02" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "STAMM OMA", + "timestamp": "2023-08-20" + } + ], "associatedSites": [ { - "dateNoted": "2017-06-03", + "dateNoted": "2018-06-06", "notes": "", - "parcelID": "15947", - "siteID": "15656", - "siteRegistry": true + "parcelID": "15518", + "siteID": "15752", + "siteRegistry": false }, { - "dateNoted": "2021-08-01", + "dateNoted": "2023-08-05", "notes": "", - "parcelID": "20194", - "siteID": "17036", + "parcelID": "20013", + "siteID": "19962", "siteRegistry": true }, { - "dateNoted": "2014-10-19", + "dateNoted": "2020-05-23", "notes": "", - "parcelID": "18065", - "siteID": "16193", - "siteRegistry": true + "parcelID": "17094", + "siteID": "17548", + "siteRegistry": false } ] }, { - "uuid": "e6db2523-0781-42f2-b4ef-b5a3ee447bda", - "siteID": 19741, - "address": "745 Jayce Ville", - "latitude": 50.3024, - "longitude": -118.4011, - "lastUpdated": "2014-10-24", - "city": "New Reggie", - "region": "Vancouver Island/Coast", - "victoriaFile": "26250-20/2508", + "uuid": "e4e6ab22-2bb8-4758-8da1-d541c7809064", + "siteID": 17224, + "address": "4433 Jones Rest", + "latitude": 53.9797, + "longitude": -118.271, + "lastUpdated": "2014-03-27", + "city": "New Bailee", + "region": "Thompson-Okanagan", + "victoriaFile": "26250-20/7680", "regionalFile": "N/A", "parcelIDs": [ - 4226859, - 6158872, - 9141372, - 1910124, - 5711430 + 1065208, + 4015944, + 8780275, + 8544942, + 7269359 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2020-09-07", - "completed": "2018-12-31", - "initiated": "2020-12-05", - "ministryContact": "CARTWRIGHT ALTHEA", + "createdAt": "2023-07-23", + "completed": "2021-04-29", + "initiated": "2021-05-30", + "ministryContact": "ZIEME LELIA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -11071,22 +15165,32 @@ }, { "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false + "role": "REQUESTED BY", + "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true } ], "siteRegistry": false }, { - "createdAt": "2023-09-17", - "completed": "2023-01-11", - "initiated": "2015-12-05", - "ministryContact": "WEHNER CARLOTTA", + "createdAt": "2018-08-18", + "completed": "2019-07-03", + "initiated": "2019-01-10", + "ministryContact": "FARRELL HAYLEY", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -11105,188 +15209,199 @@ "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false } ], "siteRegistry": false + } + ], + "participants": [ + { + "name": "IPSUM", + "endDate": "2017-01-03", + "startDate": "2022-02-03", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false }, { - "createdAt": "2018-08-06", - "completed": "2021-12-17", - "initiated": "2014-10-07", - "ministryContact": "KONOPELSKI DEVAN", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" + "name": "SHELL CANADA PRODUCTS", + "endDate": "2014-11-04", + "startDate": "2017-09-08", + "notes": "", + "roles": [ + "EMPLOYEE" ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - } + "siteRegistry": false + }, + { + "name": "AMET, DOLOR SIT", + "endDate": "2016-04-01", + "startDate": "2016-07-23", + "notes": "", + "roles": [ + "ORGANIZATION" ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2023-01-21", - "completed": "2016-05-07", - "initiated": "2021-11-18", - "ministryContact": "TOY KASSANDRA", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" + "name": "AMET, DOLOR SIT", + "endDate": "2021-03-19", + "startDate": "2015-05-08", + "notes": "", + "roles": [ + "ORGANIZATION" ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, + "siteRegistry": false + } + ], + "suspectLandUses": [ + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2023-09-19 (described on Site Profile dated 2023-09-19)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2020-06-27 (described on Site Profile dated 2020-06-27)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2016-04-08 (described on Site Profile dated 2016-04-08)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2019-06-19 (described on Site Profile dated 2019-06-19)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + } + ], + "siteDisclosures": [ + { + "siteRegistry": true, + "dateReceived": "2023-02-09", + "dateCompleted": "2015-11-17", + "dateEntered": "2020-07-21", + "dateRegistrar": "2023-08-18", + "dateLocalAuthorityReceived": "2020-12-27", + "summary": "Id cumque fugiat ad libero voluptatem.", + "informationUsed": "Excepturi omnis eveniet repudiandae illum possimus quo.\nCorporis nihil dolor alias facilis.\nNam error id qui officia.\nRecusandae distinctio ad.\nSapiente itaque blanditiis voluptatum reprehenderit sunt ad earum temporibus nostrum.", + "pastOrPresentOrders": "Fugit mollitia voluptate.\nSint dolores quas at.\nNulla tempora velit debitis vel iure veniam incidunt.", + "commercialAndIndustrialPurposes": [ { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true } - ], - "siteRegistry": true + ] }, { - "createdAt": "2017-05-08", - "completed": "2023-05-22", - "initiated": "2022-10-19", - "ministryContact": "OSINSKI JUSTEN", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, + "siteRegistry": true, + "dateReceived": "2019-09-28", + "dateCompleted": "2014-03-30", + "dateEntered": "2015-12-03", + "dateRegistrar": "2021-07-11", + "dateLocalAuthorityReceived": "2017-08-30", + "summary": "Assumenda tenetur cupiditate reiciendis.\nInventore expedita eius voluptatem veritatis ex eaque voluptatem repellendus dolorem.\nTempore ab iste nobis reiciendis veritatis.", + "informationUsed": "Voluptatibus rem dolores necessitatibus magni molestiae.\nUt qui iure nam nulla numquam consectetur consectetur.\nDolorum possimus exercitationem hic sequi rerum necessitatibus rem velit.\nFugit molestiae quod unde voluptas voluptates ullam.\nQuasi minus sunt sint nihil quibusdam inventore aut fugiat.", + "pastOrPresentOrders": "Non dolorum sit incidunt mollitia eaque.\nConsectetur at blanditiis totam vero blanditiis ipsa quos.\nUllam culpa sint ex a fugiat rerum natus.", + "commercialAndIndustrialPurposes": [ { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false } - ], - "siteRegistry": false + ] } ], - "participants": [ + "activityLog": [ { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2022-04-19", - "startDate": "2019-12-02", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": true + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "BODE KAILYN", + "timestamp": "2016-06-22" }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2020-02-02", - "startDate": "2017-02-10", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": false + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "MURRAY ZOIE", + "timestamp": "2019-10-24" }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2020-09-14", - "startDate": "2015-10-17", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": true + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "ZULAUF JEFF", + "timestamp": "2023-01-25" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "RUNTE DAISY", + "timestamp": "2022-02-03" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "GOLDNER-HARBER ZULA", + "timestamp": "2019-01-10" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "WISOZK KARIANNE", + "timestamp": "2019-08-13" } ], "associatedSites": [ { - "dateNoted": "2015-05-19", + "dateNoted": "2015-11-13", "notes": "", - "parcelID": "16231", - "siteID": "17011", + "parcelID": "18684", + "siteID": "18884", "siteRegistry": true - }, - { - "dateNoted": "2019-03-13", - "notes": "", - "parcelID": "19484", - "siteID": "19093", - "siteRegistry": false } ] }, { - "uuid": "2da3f43b-facb-4c06-80d3-3a3bb806ecfd", - "siteID": 15495, - "address": "550 Bradford Via", - "latitude": 54.6787, - "longitude": -131.1878, - "lastUpdated": "2023-09-09", - "city": "West Arnoldtown", + "uuid": "ec0fb120-1fa3-46bb-8e1e-e438bea7648b", + "siteID": 17809, + "address": "6864 Swift Corners", + "latitude": 57.4799, + "longitude": -133.1537, + "lastUpdated": "2016-09-26", + "city": "West Loyal", "region": "Mainland/Southwest", - "victoriaFile": "26250-20/9566", + "victoriaFile": "26250-20/12527", "regionalFile": "N/A", "parcelIDs": [ - 4382037, - 6861572, - 7891637, - 6323807, - 5951509 + 7797424, + 5285151, + 6361440, + 2277570, + 793223 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2018-11-02", - "completed": "2017-09-04", - "initiated": "2014-10-31", - "ministryContact": "BARTELL-GERLACH KILEY", + "createdAt": "2023-08-21", + "completed": "2018-10-05", + "initiated": "2021-09-08", + "ministryContact": "O'KON ANGELITA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -11295,10 +15410,15 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": false }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", @@ -11306,22 +15426,22 @@ }, { "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false } ], "siteRegistry": true }, { - "createdAt": "2014-02-04", - "completed": "2017-02-15", - "initiated": "2020-10-29", - "ministryContact": "LEMKE BERTHA", + "createdAt": "2017-02-19", + "completed": "2016-09-02", + "initiated": "2014-12-05", + "ministryContact": "KOEPP NICOLE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -11331,13 +15451,13 @@ "notationParticipants": [ { "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true + "role": "SUBMITTED BY", + "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", @@ -11346,17 +15466,17 @@ }, { "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false } ], "siteRegistry": true }, { - "createdAt": "2021-12-09", - "completed": "2017-01-04", - "initiated": "2016-06-08", - "ministryContact": "RAYNOR GARFIELD", + "createdAt": "2021-08-05", + "completed": "2021-09-04", + "initiated": "2018-11-14", + "ministryContact": "TURNER EMILY", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -11365,44 +15485,29 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": true - } - ], - "siteRegistry": false - }, - { - "createdAt": "2018-06-10", - "completed": "2021-05-26", - "initiated": "2017-12-13", - "ministryContact": "RUTHERFORD MARIA", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true } ], "siteRegistry": true @@ -11410,213 +15515,190 @@ ], "participants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2019-01-23", - "startDate": "2020-06-22", + "name": "IPSUM", + "endDate": "2022-02-26", + "startDate": "2016-11-09", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": true }, { "name": "IPSUM", - "endDate": "2016-06-16", - "startDate": "2020-03-20", + "endDate": "2020-04-13", + "startDate": "2016-06-28", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": false + "siteRegistry": true } ], - "associatedSites": [ + "suspectLandUses": [ { - "dateNoted": "2022-12-25", - "notes": "", - "parcelID": "20080", - "siteID": "15792", - "siteRegistry": false + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2021-08-29 (described on Site Profile dated 2021-08-29)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "dateNoted": "2021-04-05", - "notes": "", - "parcelID": "16957", - "siteID": "19409", - "siteRegistry": true + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2021-12-01 (described on Site Profile dated 2021-12-01)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "dateNoted": "2014-04-22", - "notes": "", - "parcelID": "19300", - "siteID": "16723", - "siteRegistry": false + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2023-08-13 (described on Site Profile dated 2023-08-13)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2019-05-12 (described on Site Profile dated 2019-05-12)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2022-08-23 (described on Site Profile dated 2022-08-23)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } - ] - }, - { - "uuid": "983f0ace-5a36-48d1-85b5-4d03c733dd81", - "siteID": 17280, - "address": "83495 Bergstrom Squares", - "latitude": 55.976, - "longitude": -127.8275, - "lastUpdated": "2023-02-12", - "city": "Maggioton", - "region": "Kootenay", - "victoriaFile": "26250-20/1861", - "regionalFile": "N/A", - "parcelIDs": [ - 6434344, - 8324651, - 7921304, - 306394, - 5111694 ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ + "siteDisclosures": [ { - "createdAt": "2013-10-03", - "completed": "2013-10-02", - "initiated": "2018-02-12", - "ministryContact": "WOLFF HECTOR", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ + "siteRegistry": false, + "dateReceived": "2023-07-20", + "dateCompleted": "2021-12-15", + "dateEntered": "2014-08-28", + "dateRegistrar": "2018-02-24", + "dateLocalAuthorityReceived": "2020-05-11", + "summary": "Rem mollitia corrupti incidunt facere amet doloremque vel.", + "informationUsed": "Error eaque a assumenda explicabo autem ad quae.\nSuscipit ducimus excepturi esse laboriosam corporis nulla aspernatur maxime.\nPariatur impedit impedit.", + "pastOrPresentOrders": "Minus perferendis ab.\nAut dignissimos nulla rem deserunt.", + "commercialAndIndustrialPurposes": [ { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false } - ], - "siteRegistry": true + ] }, { - "createdAt": "2016-10-28", - "completed": "2022-12-04", - "initiated": "2020-07-14", - "ministryContact": "STROSIN CHRISTOPHE", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ + "siteRegistry": true, + "dateReceived": "2019-09-07", + "dateCompleted": "2014-10-14", + "dateEntered": "2015-12-29", + "dateRegistrar": "2021-01-30", + "dateLocalAuthorityReceived": "2019-06-20", + "summary": "Magnam aperiam deserunt accusantium autem excepturi.\nCum quae tenetur culpa illo sequi.\nDicta repudiandae quis iusto eligendi porro quos ab ipsa.", + "informationUsed": "Enim quo molestias necessitatibus excepturi alias nisi consectetur sequi.\nLaborum soluta unde quisquam cum inventore excepturi magnam.\nNihil debitis odit optio asperiores nulla corporis porro.\nMolestias vel nulla consequatur modi cupiditate hic porro adipisci non.", + "pastOrPresentOrders": "Accusantium similique occaecati inventore.\nQuibusdam quos quos voluptas fuga velit.\nEx consequatur dolor ut ducimus aliquam ratione eaque excepturi.", + "commercialAndIndustrialPurposes": [ { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true } - ], - "siteRegistry": true + ] } ], - "participants": [ + "activityLog": [ { - "name": "AMET, DOLOR SIT", - "endDate": "2014-05-11", - "startDate": "2015-03-25", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": false + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "WHITE MARILOU", + "timestamp": "2021-05-24" }, { - "name": "IPSUM", - "endDate": "2020-06-03", - "startDate": "2014-10-08", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": false + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "BEAHAN NELS", + "timestamp": "2018-12-04" }, { - "name": "AMET, DOLOR SIT", - "endDate": "2016-04-20", - "startDate": "2022-12-17", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": true + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "GIBSON ERWIN", + "timestamp": "2018-05-11" }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2016-06-08", - "startDate": "2020-06-08", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": false + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "OKUNEVA ISSAC", + "timestamp": "2023-05-02" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "ARMSTRONG ASHTYN", + "timestamp": "2019-11-21" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "MCKENZIE RAINA", + "timestamp": "2017-12-27" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "TOWNE RALEIGH", + "timestamp": "2021-11-17" } ], "associatedSites": [ { - "dateNoted": "2014-04-13", + "dateNoted": "2017-04-16", "notes": "", - "parcelID": "16645", - "siteID": "17561", + "parcelID": "17832", + "siteID": "18995", "siteRegistry": true } ] }, { - "uuid": "6000e622-264c-4e59-9ffb-a4ef031a4480", - "siteID": 17914, - "address": "5187 Jazmyne Glens", - "latitude": 50.3944, - "longitude": -135.1402, - "lastUpdated": "2015-12-13", - "city": "San Ramon", - "region": "Mainland/Southwest", - "victoriaFile": "26250-20/10942", + "uuid": "b7391e5d-e9f9-45c8-8c09-e3cdc4497216", + "siteID": 15944, + "address": "723 Abdul Mill", + "latitude": 53.4829, + "longitude": -119.9065, + "lastUpdated": "2017-08-01", + "city": "Fort Blakefort", + "region": "Kootenay", + "victoriaFile": "26250-20/12646", "regionalFile": "N/A", "parcelIDs": [ - 6563048, - 9309411, - 6457112, - 1846921, - 5075690 + 7223263, + 168064, + 803983, + 7803377, + 5896857 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2014-11-07", - "completed": "2022-04-05", - "initiated": "2023-03-14", - "ministryContact": "PAGAC JASEN", + "createdAt": "2020-04-26", + "completed": "2019-10-29", + "initiated": "2016-06-26", + "ministryContact": "HANSEN EBONY", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -11626,9 +15708,14 @@ "notationParticipants": [ { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", @@ -11637,10 +15724,10 @@ { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true } @@ -11648,10 +15735,10 @@ "siteRegistry": false }, { - "createdAt": "2017-01-01", - "completed": "2023-06-07", - "initiated": "2015-06-29", - "ministryContact": "WILL ANGELITA", + "createdAt": "2023-10-06", + "completed": "2022-03-14", + "initiated": "2023-06-25", + "ministryContact": "RUTHERFORD LADARIUS", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -11666,32 +15753,17 @@ }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true } ], "siteRegistry": false }, { - "createdAt": "2021-08-09", - "completed": "2018-10-02", - "initiated": "2020-01-15", - "ministryContact": "SHANAHAN DORRIS", + "createdAt": "2017-09-26", + "completed": "2022-10-31", + "initiated": "2018-06-21", + "ministryContact": "BOEHM CLIFTON", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -11700,19 +15772,24 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true } ], "siteRegistry": false @@ -11720,19 +15797,29 @@ ], "participants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2018-01-31", - "startDate": "2023-09-02", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2022-06-17", + "startDate": "2020-05-22", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false }, { - "name": "AMET, DOLOR SIT", - "endDate": "2018-12-09", - "startDate": "2018-06-28", + "name": "IPSUM", + "endDate": "2018-12-30", + "startDate": "2023-03-09", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2017-03-09", + "startDate": "2014-09-07", "notes": "", "roles": [ "EMPLOYEE" @@ -11740,41 +15827,202 @@ "siteRegistry": false } ], + "suspectLandUses": [ + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2017-02-10 (described on Site Profile dated 2017-02-10)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2021-12-31 (described on Site Profile dated 2021-12-31)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2017-06-11 (described on Site Profile dated 2017-06-11)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2016-02-12 (described on Site Profile dated 2016-02-12)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2016-11-27 (described on Site Profile dated 2016-11-27)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + } + ], + "siteDisclosures": [ + { + "siteRegistry": true, + "dateReceived": "2015-05-06", + "dateCompleted": "2020-10-28", + "dateEntered": "2023-09-10", + "dateRegistrar": "2021-11-30", + "dateLocalAuthorityReceived": "2020-11-29", + "summary": "Repellendus quae pariatur.", + "informationUsed": "Officia culpa repudiandae.\nMollitia aliquam vel autem quidem asperiores odio nihil molestias.\nOmnis debitis assumenda facere atque quasi totam amet.", + "pastOrPresentOrders": "Delectus assumenda laborum incidunt consequatur libero rem.\nFacere natus exercitationem.\nSuscipit quasi repellendus quisquam architecto ipsam repudiandae temporibus deserunt esse.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + } + ] + }, + { + "siteRegistry": false, + "dateReceived": "2022-06-27", + "dateCompleted": "2017-03-16", + "dateEntered": "2022-11-01", + "dateRegistrar": "2016-06-03", + "dateLocalAuthorityReceived": "2021-03-28", + "summary": "Ipsum doloribus sit quis optio culpa fugit.\nPariatur perspiciatis minus.", + "informationUsed": "Eius delectus soluta aspernatur corporis.\nAlias itaque consectetur rem.\nDignissimos aperiam iure.\nQuis non maiores est temporibus vel mollitia consequuntur.", + "pastOrPresentOrders": "Explicabo eaque in excepturi dolores ex.\nLaudantium enim minus ipsum totam dicta esse quasi.\nAd quae molestiae aliquam a porro.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + } + ] + } + ], + "activityLog": [ + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "SCHUSTER HORTENSE", + "timestamp": "2020-10-17" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "LANG KHALIL", + "timestamp": "2020-03-27" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "SIMONIS RYLEE", + "timestamp": "2021-05-27" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "LUEILWITZ MAVIS", + "timestamp": "2023-06-06" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "TOWNE SUZANNE", + "timestamp": "2020-05-13" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "POLLICH DARRICK", + "timestamp": "2014-08-01" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "NIENOW CATHRINE", + "timestamp": "2016-02-19" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "PROSACCO CAMILLA", + "timestamp": "2022-08-03" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "VOLKMAN ESTEBAN", + "timestamp": "2023-07-06" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "CREMIN CAMYLLE", + "timestamp": "2021-08-20" + } + ], "associatedSites": [ { - "dateNoted": "2014-12-02", + "dateNoted": "2016-08-27", + "notes": "", + "parcelID": "15807", + "siteID": "17527", + "siteRegistry": true + }, + { + "dateNoted": "2018-05-18", "notes": "", - "parcelID": "16902", - "siteID": "20017", + "parcelID": "19487", + "siteID": "19159", "siteRegistry": true + }, + { + "dateNoted": "2023-06-14", + "notes": "", + "parcelID": "20591", + "siteID": "18884", + "siteRegistry": false } ] }, { - "uuid": "17dd78c3-e02d-4201-b83b-d6c9f3da3ef8", - "siteID": 15822, - "address": "345 Goyette Mill", - "latitude": 49.379, - "longitude": -130.511, - "lastUpdated": "2016-01-29", - "city": "Port Cadeville", - "region": "Mainland/Southwest", - "victoriaFile": "26250-20/15745", + "uuid": "0f53fa23-860d-4615-9686-0719cbc5c88a", + "siteID": 19475, + "address": "5700 Florencio Highway", + "latitude": 48.7868, + "longitude": -132.0265, + "lastUpdated": "2023-03-25", + "city": "Anissaborough", + "region": "Vancouver Island/Coast", + "victoriaFile": "26250-20/5083", "regionalFile": "N/A", "parcelIDs": [ - 6387234, - 6363161, - 1158289, - 3669411, - 5138544 + 372682, + 238569, + 6521923, + 2531305, + 2119550 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2019-01-29", - "completed": "2016-03-13", - "initiated": "2019-07-17", - "ministryContact": "MOORE LEOLA", + "createdAt": "2022-02-24", + "completed": "2021-11-29", + "initiated": "2017-04-23", + "ministryContact": "KEMMER JACLYN", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -11785,36 +16033,31 @@ { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, { "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false + "role": "REQUESTED BY", + "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2019-06-18", - "completed": "2020-02-03", - "initiated": "2017-06-12", - "ministryContact": "DIBBERT RICKEY", + "createdAt": "2022-07-31", + "completed": "2017-04-15", + "initiated": "2019-10-04", + "ministryContact": "MURAZIK STEPHON", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -11833,13 +16076,13 @@ "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2019-03-05", - "completed": "2022-05-11", - "initiated": "2022-12-13", - "ministryContact": "LEDNER EWALD", + "createdAt": "2019-06-26", + "completed": "2015-10-01", + "initiated": "2015-02-08", + "ministryContact": "VANDERVORT ITZEL", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -11847,28 +16090,18 @@ "" ], "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true } @@ -11878,78 +16111,181 @@ ], "participants": [ { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2015-10-10", - "startDate": "2020-04-21", + "name": "IPSUM", + "endDate": "2015-03-02", + "startDate": "2016-09-08", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": false + "siteRegistry": true }, { - "name": "IPSUM", - "endDate": "2013-12-23", - "startDate": "2013-12-26", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2021-03-16", + "startDate": "2015-08-12", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": false }, { "name": "AMET, DOLOR SIT", - "endDate": "2020-04-22", - "startDate": "2022-03-15", + "endDate": "2021-01-12", + "startDate": "2021-09-13", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": true + "siteRegistry": false + }, + { + "name": "IPSUM", + "endDate": "2020-04-08", + "startDate": "2017-01-04", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + } + ], + "suspectLandUses": [ + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2017-11-09 (described on Site Profile dated 2017-11-09)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2022-01-14 (described on Site Profile dated 2022-01-14)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + } + ], + "siteDisclosures": [ + { + "siteRegistry": false, + "dateReceived": "2019-06-30", + "dateCompleted": "2014-07-21", + "dateEntered": "2022-07-02", + "dateRegistrar": "2020-08-12", + "dateLocalAuthorityReceived": "2020-10-09", + "summary": "Exercitationem ullam perspiciatis nemo harum ad quasi dolore.", + "informationUsed": "Mollitia praesentium quisquam facilis quo corrupti officiis quas.\nModi excepturi aperiam exercitationem quia.\nPerferendis iure dolore dolores blanditiis debitis quo placeat sit.\nLaudantium provident qui veritatis eaque.\nVero magnam animi accusantium architecto.", + "pastOrPresentOrders": "Totam beatae amet eius tempora quo officiis.\nIusto fugit dolor molestiae atque corporis id similique.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + } + ] + } + ], + "activityLog": [ + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "MOHR LOY", + "timestamp": "2023-05-03" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "ORN WILEY", + "timestamp": "2013-12-23" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "ZIEMANN AMARA", + "timestamp": "2014-02-18" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "SHANAHAN MAXWELL", + "timestamp": "2017-08-29" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "SWANIAWSKI-MACGYVER ALEX", + "timestamp": "2022-10-04" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "GLEASON-LEFFLER JEANIE", + "timestamp": "2018-03-19" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "CONSIDINE FLORINE", + "timestamp": "2016-03-03" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "WILKINSON CAROLINE", + "timestamp": "2018-05-16" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "HAGENES JAMESON", + "timestamp": "2020-02-29" } ], "associatedSites": [ { - "dateNoted": "2016-01-04", + "dateNoted": "2013-11-10", "notes": "", - "parcelID": "16485", - "siteID": "19072", + "parcelID": "17592", + "siteID": "18999", "siteRegistry": true }, { - "dateNoted": "2023-06-09", + "dateNoted": "2013-12-03", "notes": "", - "parcelID": "19779", - "siteID": "16986", - "siteRegistry": true + "parcelID": "17767", + "siteID": "19962", + "siteRegistry": false } ] }, { - "uuid": "d0c07582-1820-4e0d-9d3c-07fe6061497b", - "siteID": 17275, - "address": "849 Gerhold Trace", - "latitude": 51.5662, - "longitude": -123.5947, - "lastUpdated": "2020-06-25", - "city": "Kshlerincester", - "region": "Cariboo", - "victoriaFile": "26250-20/13758", + "uuid": "bcd22a32-dc31-4f92-86e0-5720cbc9acae", + "siteID": 20877, + "address": "80100 Deon Mills", + "latitude": 48.6114, + "longitude": -118.1815, + "lastUpdated": "2018-09-27", + "city": "Port Kobyfield", + "region": "Mainland/Southwest", + "victoriaFile": "26250-20/17724", "regionalFile": "N/A", "parcelIDs": [ - 6691773, - 9214706, - 6946326, - 2230182, - 8318527 + 721757, + 2994540, + 800856, + 8008535, + 2829689 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2015-12-11", - "completed": "2020-01-15", - "initiated": "2017-02-19", - "ministryContact": "REINGER DONNELL", + "createdAt": "2016-02-08", + "completed": "2014-03-24", + "initiated": "2020-12-14", + "ministryContact": "WALSH MADDISON", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -11958,9 +16294,14 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", @@ -11976,20 +16317,40 @@ "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true - }, + } + ], + "siteRegistry": true + }, + { + "createdAt": "2020-05-26", + "completed": "2016-08-28", + "initiated": "2022-05-14", + "ministryContact": "CONROY CHAYA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false } ], "siteRegistry": false }, { - "createdAt": "2018-06-07", - "completed": "2018-08-18", - "initiated": "2014-05-31", - "ministryContact": "BOYER JAZMIN", + "createdAt": "2023-07-10", + "completed": "2023-08-07", + "initiated": "2017-06-12", + "ministryContact": "CREMIN LEOPOLD", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -11998,81 +16359,195 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true } ], "siteRegistry": true + }, + { + "createdAt": "2023-08-18", + "completed": "2020-05-19", + "initiated": "2018-03-14", + "ministryContact": "GREENHOLT SHANE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true } ], "participants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2016-06-24", - "startDate": "2015-02-14", + "name": "AMET, DOLOR SIT", + "endDate": "2017-01-19", + "startDate": "2016-04-18", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": false }, { - "name": "IPSUM", - "endDate": "2023-05-01", - "startDate": "2021-03-12", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2019-08-12", + "startDate": "2020-08-25", "notes": "", "roles": [ "EMPLOYEE" ], + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2018-09-01", + "startDate": "2023-06-12", + "notes": "", + "roles": [ + "ORGANIZATION" + ], "siteRegistry": true } ], + "suspectLandUses": [ + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2021-02-02 (described on Site Profile dated 2021-02-02)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2022-03-26 (described on Site Profile dated 2022-03-26)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + } + ], + "siteDisclosures": [ + { + "siteRegistry": true, + "dateReceived": "2016-01-13", + "dateCompleted": "2020-08-16", + "dateEntered": "2016-02-22", + "dateRegistrar": "2018-06-19", + "dateLocalAuthorityReceived": "2023-02-25", + "summary": "Iste debitis distinctio blanditiis.\nOccaecati doloribus officia cumque voluptatem occaecati aliquam consequatur a.", + "informationUsed": "Possimus aut assumenda sequi temporibus labore quis nulla suscipit.\nRepudiandae sapiente enim officiis nam rerum assumenda nulla dolorum ut.\nSit quas exercitationem cum temporibus doloribus laborum placeat.\nMaxime eligendi in tenetur accusamus nobis earum suscipit sequi.", + "pastOrPresentOrders": "Voluptatum quos laboriosam mollitia sed omnis ex numquam cumque.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + } + ] + } + ], + "activityLog": [ + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "DOYLE DARYL", + "timestamp": "2014-03-01" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "HERMANN-GRANT MELYNA", + "timestamp": "2019-09-23" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "ROLFSON ZACHARY", + "timestamp": "2017-04-11" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "CHAMPLIN VELMA", + "timestamp": "2016-04-18" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "THIEL HALIE", + "timestamp": "2021-01-02" + } + ], "associatedSites": [ { - "dateNoted": "2020-03-03", + "dateNoted": "2023-09-29", "notes": "", - "parcelID": "15852", - "siteID": "17057", + "parcelID": "17660", + "siteID": "19899", "siteRegistry": true } ] }, { - "uuid": "00cad5a8-d631-4fdb-b0a1-0f97dc6bcd91", - "siteID": 17935, - "address": "99086 Smith Glens", - "latitude": 56.3317, - "longitude": -138.6163, - "lastUpdated": "2019-03-16", - "city": "Torphyfurt", - "region": "Cariboo", - "victoriaFile": "26250-20/12702", + "uuid": "e72636a0-454f-407e-8869-84a6f76811be", + "siteID": 20775, + "address": "716 Kovacek Canyon", + "latitude": 52.7722, + "longitude": -121.8371, + "lastUpdated": "2022-04-01", + "city": "North Howard", + "region": "Vancouver Island/Coast", + "victoriaFile": "26250-20/2787", "regionalFile": "N/A", "parcelIDs": [ - 935366, - 4508705, - 6098137, - 1033671, - 5327499 + 5258105, + 8772932, + 1225035, + 8137624, + 681077 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2014-08-11", - "completed": "2018-04-21", - "initiated": "2021-02-22", - "ministryContact": "KOCH THEO", + "createdAt": "2017-01-13", + "completed": "2019-09-20", + "initiated": "2020-06-29", + "ministryContact": "RENNER KENNEDY", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -12081,23 +16556,23 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2013-10-03", - "completed": "2016-07-11", - "initiated": "2017-10-29", - "ministryContact": "GIBSON MARIAH", + "createdAt": "2023-09-16", + "completed": "2023-08-07", + "initiated": "2016-05-11", + "ministryContact": "LEMKE JUSTINE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -12106,33 +16581,217 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true } ], + "siteRegistry": false + } + ], + "participants": [ + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2022-05-26", + "startDate": "2016-10-02", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2014-03-04", + "startDate": "2017-05-03", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2016-05-05", + "startDate": "2021-01-26", + "notes": "", + "roles": [ + "EMPLOYEE" + ], "siteRegistry": true + } + ], + "suspectLandUses": [ + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2022-02-08 (described on Site Profile dated 2022-02-08)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2022-07-24 (described on Site Profile dated 2022-07-24)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2022-02-06 (described on Site Profile dated 2022-02-06)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + } + ], + "siteDisclosures": [ + { + "siteRegistry": false, + "dateReceived": "2019-09-01", + "dateCompleted": "2023-05-11", + "dateEntered": "2017-06-27", + "dateRegistrar": "2014-08-30", + "dateLocalAuthorityReceived": "2019-08-08", + "summary": "Ad iure ut minima.\nConsequuntur officiis deleniti reprehenderit distinctio ipsa quos similique.\nConsequatur distinctio molestias.", + "informationUsed": "Eius quidem velit id ea.\nRem quisquam ea in deserunt.\nAssumenda dolor fuga officia amet et.\nUt ipsa distinctio.", + "pastOrPresentOrders": "Nesciunt atque dolore.\nMolestias ex eos a est neque impedit sunt.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + } + ] + }, + { + "siteRegistry": true, + "dateReceived": "2017-09-04", + "dateCompleted": "2021-07-06", + "dateEntered": "2017-08-28", + "dateRegistrar": "2021-08-19", + "dateLocalAuthorityReceived": "2020-03-07", + "summary": "Ratione earum hic officia rem illo laudantium.\nCorrupti commodi minus id tempore molestiae voluptates aliquid praesentium soluta.\nDolores quasi iusto facilis.", + "informationUsed": "Soluta amet illum cupiditate delectus accusamus voluptate autem.\nSed saepe libero.\nQuaerat aliquam nostrum magnam possimus.\nQuae rem iusto odio ab dignissimos.\nPariatur laboriosam pariatur dolore quae dolorem iure.", + "pastOrPresentOrders": "Tempore qui quibusdam totam dolore omnis magnam.\nVoluptate officia explicabo reprehenderit accusamus quo iusto molestiae iste doloremque.\nIpsum unde maxime ad.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + } + ] + } + ], + "activityLog": [ + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "KUVALIS MOSSIE", + "timestamp": "2016-02-13" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "LANGOSH JACINTO", + "timestamp": "2017-05-06" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "ABSHIRE ESTRELLA", + "timestamp": "2023-10-05" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "SPINKA CASIMIR", + "timestamp": "2023-05-19" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "MCDERMOTT CHELSEA", + "timestamp": "2019-08-23" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "KUB BRAULIO", + "timestamp": "2023-02-19" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "JACOBS-STEUBER AUBREE", + "timestamp": "2015-12-20" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "GUSIKOWSKI JEREMIE", + "timestamp": "2018-09-01" }, { - "createdAt": "2018-04-30", - "completed": "2017-12-21", - "initiated": "2021-08-16", - "ministryContact": "HEANEY ROWENA", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "WATSICA MICHEAL", + "timestamp": "2016-08-09" + } + ], + "associatedSites": [ + { + "dateNoted": "2021-07-02", + "notes": "", + "parcelID": "18437", + "siteID": "20948", + "siteRegistry": false + } + ] + }, + { + "uuid": "cf0cab1a-55a5-4fcf-8143-dac4d1326609", + "siteID": 18999, + "address": "67044 Bradley Ford", + "latitude": 55.2441, + "longitude": -136.5097, + "lastUpdated": "2022-11-01", + "city": "East Kelleyton", + "region": "Cariboo", + "victoriaFile": "26250-20/4448", + "regionalFile": "N/A", + "parcelIDs": [ + 7163375, + 4336962, + 9445257, + 1772374, + 3659770 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2021-02-04", + "completed": "2016-07-22", + "initiated": "2021-08-23", + "ministryContact": "ABSHIRE CIERRA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -12143,26 +16802,21 @@ { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2022-02-09", - "completed": "2014-03-10", - "initiated": "2015-11-25", - "ministryContact": "MARVIN BERNICE", + "createdAt": "2015-01-04", + "completed": "2015-08-20", + "initiated": "2019-09-16", + "ministryContact": "PFEFFER SID", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -12171,33 +16825,28 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false } ], "siteRegistry": true }, { - "createdAt": "2023-06-02", - "completed": "2020-11-11", - "initiated": "2021-11-10", - "ministryContact": "RUNOLFSSON LAUREN", + "createdAt": "2023-04-23", + "completed": "2019-05-18", + "initiated": "2020-01-09", + "ministryContact": "COLE EMANUEL", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -12206,111 +16855,235 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true } ], "participants": [ { "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2014-04-02", - "startDate": "2017-08-28", + "endDate": "2017-04-23", + "startDate": "2015-01-21", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": false }, { - "name": "AMET, DOLOR SIT", - "endDate": "2017-07-24", - "startDate": "2016-01-19", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2014-03-08", + "startDate": "2019-04-11", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": false + } + ], + "suspectLandUses": [ + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2022-05-23 (described on Site Profile dated 2022-05-23)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "name": "IPSUM", - "endDate": "2020-09-18", - "startDate": "2022-07-29", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": false + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2022-04-19 (described on Site Profile dated 2022-04-19)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2016-11-28", - "startDate": "2022-06-22", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": false + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2018-08-14 (described on Site Profile dated 2018-08-14)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2022-11-15 (described on Site Profile dated 2022-11-15)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + } + ], + "siteDisclosures": [ + { + "siteRegistry": true, + "dateReceived": "2020-11-24", + "dateCompleted": "2017-04-13", + "dateEntered": "2022-09-11", + "dateRegistrar": "2023-06-28", + "dateLocalAuthorityReceived": "2014-01-18", + "summary": "Doloremque ducimus error accusamus.", + "informationUsed": "Ipsa modi aliquid corrupti ducimus.\nNeque nostrum temporibus quaerat occaecati.\nQuod tempore consequatur.\nPorro dolorem maiores voluptatum perferendis officiis dolores soluta vitae corrupti.", + "pastOrPresentOrders": "Debitis eaque quaerat.\nDolore inventore eos aperiam pariatur expedita rerum.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + } + ] + }, + { + "siteRegistry": true, + "dateReceived": "2016-10-02", + "dateCompleted": "2014-02-12", + "dateEntered": "2016-08-31", + "dateRegistrar": "2021-03-28", + "dateLocalAuthorityReceived": "2020-08-06", + "summary": "Similique distinctio reiciendis sequi quae maxime ducimus suscipit velit adipisci.\nAsperiores fuga non molestias.\nUnde officiis perferendis consectetur quisquam voluptatum.", + "informationUsed": "Quos consectetur natus sunt.\nNumquam non minus.\nError culpa exercitationem doloremque voluptatibus placeat expedita labore.\nPerferendis pariatur vero nulla.\nVoluptatibus dolorum labore assumenda excepturi quod.", + "pastOrPresentOrders": "Quibusdam nesciunt cum impedit eius fugit.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + } + ] + } + ], + "activityLog": [ + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "HUDSON JACINTO", + "timestamp": "2016-06-30" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "HILLS ERVIN", + "timestamp": "2018-12-16" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "GOTTLIEB LIBBIE", + "timestamp": "2021-03-07" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "JACOBSON KEYON", + "timestamp": "2017-04-29" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "HANSEN ERWIN", + "timestamp": "2019-08-08" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "REICHERT LEDA", + "timestamp": "2023-10-08" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "KRAJCIK DAYTON", + "timestamp": "2017-05-16" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "BALISTRERI HAILEE", + "timestamp": "2018-03-10" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "POWLOWSKI CARLOS", + "timestamp": "2020-03-24" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "MANTE IMMANUEL", + "timestamp": "2017-01-03" } ], "associatedSites": [ { - "dateNoted": "2015-09-07", + "dateNoted": "2021-01-26", "notes": "", - "parcelID": "17985", - "siteID": "16966", + "parcelID": "20551", + "siteID": "15566", + "siteRegistry": true + }, + { + "dateNoted": "2019-05-01", + "notes": "", + "parcelID": "19926", + "siteID": "20418", "siteRegistry": false } ] }, { - "uuid": "2937436c-b092-414a-8549-31e198a4fa72", - "siteID": 17113, - "address": "61107 Gorczany Canyon", - "latitude": 48.4982, - "longitude": -133.123, - "lastUpdated": "2020-04-07", - "city": "Robertaborough", + "uuid": "db563e39-ac74-446c-a020-fec6ff4f76ca", + "siteID": 20294, + "address": "21398 Braxton Alley", + "latitude": 51.6304, + "longitude": -131.4158, + "lastUpdated": "2014-07-21", + "city": "Longview", "region": " North Coast", - "victoriaFile": "26250-20/12523", + "victoriaFile": "26250-20/15235", "regionalFile": "N/A", "parcelIDs": [ - 9148716, - 1745820, - 2725568, - 5863482, - 8177127 + 2915302, + 4975614, + 7907322, + 3492436, + 593725 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2021-03-01", - "completed": "2019-08-11", - "initiated": "2016-01-20", - "ministryContact": "GUTKOWSKI ALYSA", + "createdAt": "2014-01-12", + "completed": "2018-09-02", + "initiated": "2015-01-29", + "ministryContact": "ROWE GILBERT", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -12323,21 +17096,6 @@ "role": "REQUESTED BY", "siteRegistry": true }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", @@ -12347,10 +17105,10 @@ "siteRegistry": true }, { - "createdAt": "2016-07-28", - "completed": "2020-11-24", - "initiated": "2014-05-27", - "ministryContact": "HANE ELENA", + "createdAt": "2020-07-06", + "completed": "2017-05-18", + "initiated": "2022-02-03", + "ministryContact": "LYNCH ADOLPH", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -12359,14 +17117,14 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false + "role": "REQUESTED BY", + "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", @@ -12380,84 +17138,208 @@ "participants": [ { "name": "SHELL CANADA PRODUCTS", - "endDate": "2018-08-14", - "startDate": "2016-01-12", + "endDate": "2023-02-15", + "startDate": "2021-08-30", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2019-06-22", - "startDate": "2017-02-17", + "name": "AMET, DOLOR SIT", + "endDate": "2017-08-08", + "startDate": "2014-07-12", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": true + "siteRegistry": false }, { - "name": "IPSUM", - "endDate": "2015-07-07", - "startDate": "2019-09-17", + "name": "AMET, DOLOR SIT", + "endDate": "2019-01-19", + "startDate": "2020-12-23", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": false - } - ], - "associatedSites": [ + }, { - "dateNoted": "2022-09-13", + "name": "AMET, DOLOR SIT", + "endDate": "2017-05-15", + "startDate": "2021-12-26", "notes": "", - "parcelID": "18813", - "siteID": "15375", + "roles": [ + "ORGANIZATION" + ], "siteRegistry": true + } + ], + "suspectLandUses": [ + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2022-09-05 (described on Site Profile dated 2022-09-05)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "dateNoted": "2017-06-18", - "notes": "", - "parcelID": "15301", - "siteID": "15351", - "siteRegistry": false + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2014-09-06 (described on Site Profile dated 2014-09-06)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2019-06-25 (described on Site Profile dated 2019-06-25)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2015-08-06 (described on Site Profile dated 2015-08-06)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2018-05-30 (described on Site Profile dated 2018-05-30)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + } + ], + "siteDisclosures": [ + { + "siteRegistry": false, + "dateReceived": "2015-07-29", + "dateCompleted": "2023-02-24", + "dateEntered": "2021-10-12", + "dateRegistrar": "2015-10-30", + "dateLocalAuthorityReceived": "2021-09-02", + "summary": "Deserunt possimus doloremque autem enim fugiat unde doloribus.\nBlanditiis incidunt aperiam aliquid odio nobis.", + "informationUsed": "Maxime ratione ex sint mollitia sapiente culpa debitis minima.\nDolorem necessitatibus asperiores omnis odio natus voluptatem illo dolore minus.\nCulpa ipsa tempora asperiores eum aliquid.\nLaborum qui natus vitae maiores reprehenderit.", + "pastOrPresentOrders": "Dolor fugit assumenda.\nMaiores nulla odit et.\nNon recusandae deleniti.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + } + ] + }, + { + "siteRegistry": true, + "dateReceived": "2014-12-12", + "dateCompleted": "2023-09-07", + "dateEntered": "2017-02-07", + "dateRegistrar": "2017-05-06", + "dateLocalAuthorityReceived": "2015-01-07", + "summary": "Aut debitis fugit eum delectus.", + "informationUsed": "Ab eaque numquam.\nQuod dolores voluptatum illum consectetur provident unde at aut.\nAutem quas deserunt odit hic dicta soluta eveniet earum.\nQuaerat praesentium eaque.", + "pastOrPresentOrders": "Recusandae quas laboriosam.\nEarum placeat laudantium excepturi odit.\nAdipisci sunt autem modi repudiandae.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + } + ] + } + ], + "activityLog": [ + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "MAYERT DAHLIA", + "timestamp": "2020-03-31" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "STREICH JAYLAN", + "timestamp": "2019-09-20" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "ADAMS TAVARES", + "timestamp": "2019-01-05" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "CORWIN ALANIS", + "timestamp": "2015-02-21" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "SCHUPPE-PACOCHA ILIANA", + "timestamp": "2017-10-26" }, { - "dateNoted": "2023-08-06", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "GUTMANN MADGE", + "timestamp": "2016-03-05" + } + ], + "associatedSites": [ + { + "dateNoted": "2019-05-10", "notes": "", - "parcelID": "17264", - "siteID": "16721", - "siteRegistry": false + "parcelID": "18854", + "siteID": "18509", + "siteRegistry": true } ] }, { - "uuid": "648a1fba-2809-48b6-8c82-4574250f8526", - "siteID": 17237, - "address": "28125 Elna Turnpike", - "latitude": 52.1374, - "longitude": -118.5191, - "lastUpdated": "2016-01-04", - "city": "New Gloriaside", - "region": "Thompson-Okanagan", - "victoriaFile": "26250-20/7046", + "uuid": "2d6eb984-3fb1-4dea-bfbd-65f91d4608a2", + "siteID": 19438, + "address": "2252 Graham Inlet", + "latitude": 50.4218, + "longitude": -130.6958, + "lastUpdated": "2020-11-29", + "city": "Kubhaven", + "region": "Kootenay", + "victoriaFile": "26250-20/8493", "regionalFile": "N/A", "parcelIDs": [ - 2272154, - 2529468, - 9704429, - 6612296, - 5927772 + 4402947, + 2591980, + 7046427, + 9291234, + 9569496 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2022-09-25", - "completed": "2013-10-26", - "initiated": "2019-05-29", - "ministryContact": "BLICK-HAHN MONTE", + "createdAt": "2016-04-27", + "completed": "2016-06-25", + "initiated": "2022-05-01", + "ministryContact": "GREEN ZULA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -12466,9 +17348,9 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", @@ -12477,11 +17359,6 @@ }, { "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true } @@ -12489,10 +17366,10 @@ "siteRegistry": false }, { - "createdAt": "2018-02-18", - "completed": "2023-01-25", - "initiated": "2014-05-18", - "ministryContact": "HAGENES PRICE", + "createdAt": "2017-05-12", + "completed": "2021-09-18", + "initiated": "2017-01-26", + "ministryContact": "SPORER BAILEE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -12500,24 +17377,39 @@ "" ], "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2022-01-23", - "completed": "2022-07-06", - "initiated": "2023-02-06", - "ministryContact": "VEUM QUINTON", + "createdAt": "2014-04-15", + "completed": "2020-05-12", + "initiated": "2021-10-01", + "ministryContact": "HETTINGER SABRYNA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -12526,38 +17418,38 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2016-10-22", - "completed": "2017-02-20", - "initiated": "2017-04-15", - "ministryContact": "HAUCK MURIEL", + "createdAt": "2017-01-29", + "completed": "2014-07-12", + "initiated": "2015-12-29", + "ministryContact": "DAVIS AL", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -12566,34 +17458,49 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false } ], "participants": [ { "name": "AMET, DOLOR SIT", - "endDate": "2015-02-14", - "startDate": "2020-03-02", + "endDate": "2014-05-20", + "startDate": "2016-11-24", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2015-04-08", + "startDate": "2014-12-30", + "notes": "", + "roles": [ + "EMPLOYEE" ], "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2015-06-23", - "startDate": "2016-06-23", + "name": "AMET, DOLOR SIT", + "endDate": "2015-12-16", + "startDate": "2020-10-10", "notes": "", "roles": [ "ORGANIZATION" @@ -12601,48 +17508,129 @@ "siteRegistry": false } ], + "suspectLandUses": [ + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2019-12-09 (described on Site Profile dated 2019-12-09)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2019-02-02 (described on Site Profile dated 2019-02-02)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + } + ], + "siteDisclosures": [ + { + "siteRegistry": true, + "dateReceived": "2020-12-05", + "dateCompleted": "2016-10-22", + "dateEntered": "2019-03-13", + "dateRegistrar": "2016-10-23", + "dateLocalAuthorityReceived": "2015-12-02", + "summary": "Vitae veritatis voluptate fugiat quas.\nIncidunt sequi perferendis iusto amet voluptatibus unde consequatur aut.", + "informationUsed": "Neque esse quam exercitationem doloremque repellendus adipisci quae.\nEum labore quam nobis.\nRepellendus laborum distinctio non ipsum magnam.", + "pastOrPresentOrders": "Impedit tenetur iure explicabo soluta officiis corrupti voluptas quasi.\nQuia aut corrupti vel inventore ab sit adipisci ut sint.\nSequi aperiam in ullam qui modi eligendi.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + } + ] + } + ], + "activityLog": [ + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "BOYER CIERRA", + "timestamp": "2021-09-24" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "ROSENBAUM MARGOT", + "timestamp": "2019-05-27" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "BEDNAR DOMINIC", + "timestamp": "2016-07-03" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "REMPEL KARA", + "timestamp": "2017-12-08" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "HELLER CALEIGH", + "timestamp": "2020-09-04" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "BOGAN SID", + "timestamp": "2015-07-18" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "WILKINSON ADRIENNE", + "timestamp": "2020-04-17" + } + ], "associatedSites": [ { - "dateNoted": "2017-03-23", + "dateNoted": "2014-07-23", "notes": "", - "parcelID": "17548", - "siteID": "18126", + "parcelID": "18907", + "siteID": "17810", "siteRegistry": false }, { - "dateNoted": "2018-12-06", + "dateNoted": "2016-12-17", "notes": "", - "parcelID": "15986", - "siteID": "17074", + "parcelID": "18105", + "siteID": "16920", "siteRegistry": false } ] }, { - "uuid": "cfa355b1-ef6c-444c-b4df-727beca114a7", - "siteID": 17260, - "address": "3134 Aubrey Parkways", - "latitude": 53.4711, - "longitude": -134.1641, - "lastUpdated": "2017-01-14", - "city": "East Mariloubury", + "uuid": "c28c6919-a88e-4c46-8551-cf1157005d01", + "siteID": 20879, + "address": "89745 Padberg Ford", + "latitude": 55.1621, + "longitude": -128.9772, + "lastUpdated": "2013-11-30", + "city": "The Woodlands", "region": "Kootenay", - "victoriaFile": "26250-20/13973", + "victoriaFile": "26250-20/7773", "regionalFile": "N/A", "parcelIDs": [ - 6319731, - 6397293, - 5630114, - 6998805, - 996695 + 708939, + 3738903, + 988668, + 2573200, + 2455989 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2013-11-13", - "completed": "2017-05-23", - "initiated": "2015-12-05", - "ministryContact": "KOELPIN REBEKAH", + "createdAt": "2023-05-13", + "completed": "2021-01-24", + "initiated": "2017-09-15", + "ministryContact": "WILKINSON RUTH", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -12653,36 +17641,233 @@ { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": true }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "createdAt": "2015-06-10", + "completed": "2017-07-30", + "initiated": "2018-11-30", + "ministryContact": "KIEHN REINA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true } ], "siteRegistry": true + } + ], + "participants": [ + { + "name": "IPSUM", + "endDate": "2019-09-11", + "startDate": "2014-05-05", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2014-04-13", + "startDate": "2023-07-08", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2018-07-17", + "startDate": "2022-12-17", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + } + ], + "suspectLandUses": [ + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2023-03-29 (described on Site Profile dated 2023-03-29)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2023-06-28 (described on Site Profile dated 2023-06-28)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2021-08-27 (described on Site Profile dated 2021-08-27)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + } + ], + "siteDisclosures": [ + { + "siteRegistry": false, + "dateReceived": "2019-03-11", + "dateCompleted": "2018-11-19", + "dateEntered": "2017-07-03", + "dateRegistrar": "2019-12-10", + "dateLocalAuthorityReceived": "2018-01-10", + "summary": "Sed esse est illum perspiciatis voluptate.\nImpedit non facere.\nTotam voluptas aliquid suscipit similique aut.", + "informationUsed": "Soluta minima repellat earum accusantium debitis non et repudiandae.\nDicta alias quis.\nAspernatur animi magni vitae magni labore eveniet molestiae natus.", + "pastOrPresentOrders": "Adipisci eaque provident reiciendis.\nSit quaerat veritatis voluptatem beatae iste ratione optio atque.\nNeque numquam quis provident recusandae aut perspiciatis inventore.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + } + ] + }, + { + "siteRegistry": false, + "dateReceived": "2021-10-10", + "dateCompleted": "2018-07-18", + "dateEntered": "2015-09-21", + "dateRegistrar": "2017-08-10", + "dateLocalAuthorityReceived": "2022-03-01", + "summary": "Perferendis distinctio quas magni dolorem.\nEst impedit deleniti quam possimus voluptatibus.\nMinima voluptatum rem odio.", + "informationUsed": "Rerum maxime perferendis ducimus corrupti delectus tempora quasi odit ipsam.\nConsequatur quam earum consectetur vero blanditiis et reiciendis porro.\nVoluptatum libero eveniet similique beatae quis.\nLabore cumque ipsam quisquam voluptatibus suscipit.", + "pastOrPresentOrders": "Eveniet voluptatibus inventore perspiciatis tempore.\nConsequatur quia voluptate occaecati odit vitae fugit asperiores aut modi.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + } + ] + } + ], + "activityLog": [ + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "REYNOLDS MONSERRAT", + "timestamp": "2014-05-16" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "ROSENBAUM ZITA", + "timestamp": "2022-08-25" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "VEUM IRWIN", + "timestamp": "2021-03-30" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "KUNDE JOYCE", + "timestamp": "2020-07-09" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "HEANEY WILMER", + "timestamp": "2021-03-22" + } + ], + "associatedSites": [ + { + "dateNoted": "2020-02-18", + "notes": "", + "parcelID": "15412", + "siteID": "18884", + "siteRegistry": true }, { - "createdAt": "2014-02-12", - "completed": "2018-09-28", - "initiated": "2015-03-28", - "ministryContact": "GLOVER LUTHER", + "dateNoted": "2018-03-11", + "notes": "", + "parcelID": "18874", + "siteID": "20671", + "siteRegistry": false + } + ] + }, + { + "uuid": "c7167ed1-f842-48b7-ae71-354ecd93c63a", + "siteID": 19019, + "address": "425 Rice Avenue", + "latitude": 58.256, + "longitude": -127.5654, + "lastUpdated": "2014-11-01", + "city": "New Lenoraville", + "region": "Mainland/Southwest", + "victoriaFile": "26250-20/12568", + "regionalFile": "N/A", + "parcelIDs": [ + 9053724, + 2651877, + 2688391, + 4553304, + 7127905 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2015-08-05", + "completed": "2014-07-31", + "initiated": "2014-03-05", + "ministryContact": "MITCHELL JACINTO", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -12690,6 +17875,11 @@ "" ], "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", @@ -12701,18 +17891,23 @@ "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2019-09-09", - "completed": "2019-01-22", - "initiated": "2020-08-03", - "ministryContact": "RIPPIN LEANN", + "createdAt": "2021-11-23", + "completed": "2017-04-28", + "initiated": "2014-12-21", + "ministryContact": "HALVORSON VITA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -12721,28 +17916,28 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2019-10-22", - "completed": "2016-08-09", - "initiated": "2014-06-20", - "ministryContact": "HILLS MILES", + "createdAt": "2022-05-22", + "completed": "2016-04-13", + "initiated": "2016-08-13", + "ministryContact": "EMMERICH LESLIE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -12751,27 +17946,17 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true } @@ -12779,10 +17964,10 @@ "siteRegistry": false }, { - "createdAt": "2019-03-16", - "completed": "2018-08-29", - "initiated": "2014-03-15", - "ministryContact": "KSHLERIN CARLOTTA", + "createdAt": "2017-11-03", + "completed": "2017-01-09", + "initiated": "2019-04-06", + "ministryContact": "WUCKERT ANTONINA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -12798,8 +17983,23 @@ { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false - }, + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "createdAt": "2019-02-25", + "completed": "2016-11-08", + "initiated": "2018-09-15", + "ministryContact": "RENNER DEVANTE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", @@ -12809,16 +18009,31 @@ "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false } ], "participants": [ { "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2023-01-04", - "startDate": "2022-10-16", + "endDate": "2016-01-16", + "startDate": "2016-09-22", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "name": "AMET, DOLOR SIT", + "endDate": "2020-12-14", + "startDate": "2022-12-20", "notes": "", "roles": [ "EMPLOYEE" @@ -12826,9 +18041,9 @@ "siteRegistry": true }, { - "name": "IPSUM", - "endDate": "2016-06-13", - "startDate": "2022-02-25", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2014-09-13", + "startDate": "2017-04-27", "notes": "", "roles": [ "EMPLOYEE" @@ -12836,9 +18051,19 @@ "siteRegistry": false }, { - "name": "IPSUM", - "endDate": "2020-07-24", - "startDate": "2020-03-23", + "name": "AMET, DOLOR SIT", + "endDate": "2015-05-23", + "startDate": "2023-02-17", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2023-06-22", + "startDate": "2023-04-12", "notes": "", "roles": [ "EMPLOYEE" @@ -12846,48 +18071,169 @@ "siteRegistry": false } ], + "suspectLandUses": [ + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2016-11-30 (described on Site Profile dated 2016-11-30)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2015-08-06 (described on Site Profile dated 2015-08-06)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + } + ], + "siteDisclosures": [ + { + "siteRegistry": false, + "dateReceived": "2021-03-12", + "dateCompleted": "2017-12-02", + "dateEntered": "2020-01-27", + "dateRegistrar": "2014-03-10", + "dateLocalAuthorityReceived": "2018-02-25", + "summary": "Atque corporis dolorem aspernatur molestiae quod.\nEnim molestiae quis libero illum molestias rerum officia velit aperiam.\nFuga ut animi accusamus nulla placeat magni adipisci dolorum qui.", + "informationUsed": "Asperiores laborum quo.\nConsequuntur porro accusantium optio quae magnam molestiae.\nRepudiandae iure odio.\nEaque facere ullam voluptatum placeat quia facere.\nSit reprehenderit totam tenetur.", + "pastOrPresentOrders": "Repudiandae nemo eum.\nOfficiis debitis harum.\nRem asperiores suscipit quod delectus libero neque ipsam.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + } + ] + }, + { + "siteRegistry": false, + "dateReceived": "2019-04-11", + "dateCompleted": "2020-02-16", + "dateEntered": "2018-03-05", + "dateRegistrar": "2016-08-14", + "dateLocalAuthorityReceived": "2019-12-24", + "summary": "Vitae minus nulla nisi.\nQuae distinctio explicabo deleniti omnis commodi doloribus.\nEt dignissimos autem harum exercitationem minus.", + "informationUsed": "Unde sit eaque quis similique incidunt reiciendis accusantium beatae quaerat.\nRem minus cum quia velit laboriosam magnam architecto totam veritatis.\nNesciunt doloribus assumenda.\nOptio eaque facilis pariatur aliquid necessitatibus labore soluta aspernatur architecto.", + "pastOrPresentOrders": "Voluptatem necessitatibus aliquid debitis.\nNisi quibusdam natus id velit repellendus optio.\nTemporibus ea veniam est ex commodi officiis.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + } + ] + } + ], + "activityLog": [ + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "SCHUMM EMMANUELLE", + "timestamp": "2015-09-01" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "PACOCHA RAMON", + "timestamp": "2023-04-09" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "SCHULTZ ETTIE", + "timestamp": "2016-06-15" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "WIZA KIANNA", + "timestamp": "2023-06-01" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "LUBOWITZ JEAN", + "timestamp": "2014-12-03" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "KOSS DAN", + "timestamp": "2016-09-14" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "WELCH DALTON", + "timestamp": "2022-08-27" + } + ], "associatedSites": [ { - "dateNoted": "2020-08-16", + "dateNoted": "2022-03-26", + "notes": "", + "parcelID": "17496", + "siteID": "20789", + "siteRegistry": false + }, + { + "dateNoted": "2015-10-03", "notes": "", - "parcelID": "17344", - "siteID": "18495", + "parcelID": "15634", + "siteID": "18066", "siteRegistry": true }, { - "dateNoted": "2015-09-05", + "dateNoted": "2014-06-01", "notes": "", - "parcelID": "16098", - "siteID": "16814", + "parcelID": "18763", + "siteID": "20877", "siteRegistry": false } ] }, { - "uuid": "7eeeeba2-3488-4ae7-85d5-223c9e3fd806", - "siteID": 20307, - "address": "301 Schaden Green", - "latitude": 52.9296, - "longitude": -131.9655, - "lastUpdated": "2014-11-02", - "city": "Balistrerihaven", - "region": " North Coast", - "victoriaFile": "26250-20/1557", + "uuid": "5181a22f-6c5c-498b-9555-cc5bad60cae0", + "siteID": 16814, + "address": "49852 Jayson Port", + "latitude": 56.6961, + "longitude": -132.3376, + "lastUpdated": "2020-06-22", + "city": "West Bethburgh", + "region": "Cariboo", + "victoriaFile": "26250-20/1804", "regionalFile": "N/A", "parcelIDs": [ - 5709042, - 2475516, - 8607587, - 6838747, - 5296868 + 3080045, + 5226042, + 8463871, + 6225394, + 4323742 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2023-06-03", - "completed": "2015-09-22", - "initiated": "2019-09-06", - "ministryContact": "OKUNEVA ALPHONSO", + "createdAt": "2023-04-15", + "completed": "2019-07-12", + "initiated": "2020-01-11", + "ministryContact": "CONROY-GLEASON MARCEL", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -12896,23 +18242,28 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false } ], "siteRegistry": true }, { - "createdAt": "2019-12-24", - "completed": "2020-10-23", - "initiated": "2016-03-01", - "ministryContact": "O'CONNER FRANK", + "createdAt": "2015-07-15", + "completed": "2016-12-12", + "initiated": "2021-02-06", + "ministryContact": "KLOCKO TERRANCE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -12921,49 +18272,24 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - } - ], - "siteRegistry": false - }, - { - "createdAt": "2021-03-04", - "completed": "2019-02-21", - "initiated": "2019-07-05", - "ministryContact": "DURGAN KING", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true } ], "siteRegistry": false @@ -12971,9 +18297,19 @@ ], "participants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2018-01-03", - "startDate": "2021-01-01", + "name": "IPSUM", + "endDate": "2022-07-22", + "startDate": "2023-03-25", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "name": "IPSUM", + "endDate": "2016-11-11", + "startDate": "2013-11-19", "notes": "", "roles": [ "ORGANIZATION" @@ -12982,8 +18318,18 @@ }, { "name": "AMET, DOLOR SIT", - "endDate": "2015-09-24", - "startDate": "2020-01-07", + "endDate": "2021-11-29", + "startDate": "2018-10-08", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "AMET, DOLOR SIT", + "endDate": "2018-06-30", + "startDate": "2015-05-29", "notes": "", "roles": [ "ORGANIZATION" @@ -12991,51 +18337,184 @@ "siteRegistry": true }, { - "name": "IPSUM", - "endDate": "2015-09-21", - "startDate": "2019-05-08", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2020-05-17", + "startDate": "2022-09-24", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": true } ], + "suspectLandUses": [ + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2015-04-27 (described on Site Profile dated 2015-04-27)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2017-11-30 (described on Site Profile dated 2017-11-30)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + } + ], + "siteDisclosures": [ + { + "siteRegistry": true, + "dateReceived": "2015-08-24", + "dateCompleted": "2017-02-22", + "dateEntered": "2020-01-25", + "dateRegistrar": "2016-10-30", + "dateLocalAuthorityReceived": "2013-11-14", + "summary": "Sint consequatur incidunt impedit nesciunt voluptatem error itaque atque quibusdam.", + "informationUsed": "Delectus qui quidem consectetur magni consequuntur sint porro eum.\nHic libero tempora officia totam similique.\nRepudiandae distinctio voluptatibus.\nVel ex ratione mollitia excepturi consectetur tenetur.", + "pastOrPresentOrders": "Distinctio omnis inventore iste.\nMagnam pariatur accusamus totam.\nReiciendis dicta animi corrupti neque sunt delectus illo sequi provident.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + } + ] + }, + { + "siteRegistry": false, + "dateReceived": "2019-01-10", + "dateCompleted": "2018-07-28", + "dateEntered": "2016-10-10", + "dateRegistrar": "2022-10-23", + "dateLocalAuthorityReceived": "2018-06-11", + "summary": "Velit enim est pariatur nihil vel iste.\nQuis dolore id adipisci eaque.", + "informationUsed": "Dignissimos ea consequatur ipsa a.\nEst blanditiis praesentium.\nFugit rerum eum at saepe.", + "pastOrPresentOrders": "Occaecati voluptatibus deserunt.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + } + ] + } + ], + "activityLog": [ + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "BOYLE YESENIA", + "timestamp": "2017-09-28" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "REINGER AUDRA", + "timestamp": "2014-07-26" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "BOEHM DECLAN", + "timestamp": "2019-03-13" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "SAWAYN ABRAHAM", + "timestamp": "2014-09-03" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "RITCHIE EDISON", + "timestamp": "2022-11-03" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "WOLFF SARAI", + "timestamp": "2013-11-25" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "SPINKA LLEWELLYN", + "timestamp": "2023-05-23" + } + ], "associatedSites": [ { - "dateNoted": "2017-12-25", + "dateNoted": "2016-06-12", + "notes": "", + "parcelID": "19588", + "siteID": "17419", + "siteRegistry": true + }, + { + "dateNoted": "2021-04-01", + "notes": "", + "parcelID": "16396", + "siteID": "16740", + "siteRegistry": true + }, + { + "dateNoted": "2020-10-08", "notes": "", - "parcelID": "15767", - "siteID": "19773", + "parcelID": "20829", + "siteID": "15958", "siteRegistry": true } ] }, { - "uuid": "d8e386d6-b6e6-4191-bba5-2e7c7e7e8d0c", - "siteID": 19773, - "address": "37309 Cummings Pine", - "latitude": 56.8824, - "longitude": -119.5775, - "lastUpdated": "2019-03-06", - "city": "East Brett", - "region": "Kootenay", - "victoriaFile": "26250-20/3488", + "uuid": "09c657a1-0d15-4113-9622-18cdd10acc08", + "siteID": 15954, + "address": "419 Rau Falls", + "latitude": 54.5402, + "longitude": -130.9945, + "lastUpdated": "2020-09-11", + "city": "Carrollton", + "region": " North Coast", + "victoriaFile": "26250-20/8392", "regionalFile": "N/A", "parcelIDs": [ - 233574, - 1432146, - 4275686, - 1776010, - 7025425 + 7122985, + 9089326, + 3185603, + 2530529, + 6591825 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2023-01-13", - "completed": "2021-09-06", - "initiated": "2014-03-25", - "ministryContact": "HILLS LEONIE", + "createdAt": "2023-03-31", + "completed": "2021-05-21", + "initiated": "2016-05-24", + "ministryContact": "LOWE JERMAINE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -13043,39 +18522,29 @@ "" ], "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true + "role": "SUBMITTED BY", + "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2018-03-25", - "completed": "2018-03-11", - "initiated": "2019-02-01", - "ministryContact": "REICHEL ANDRE", + "createdAt": "2014-09-17", + "completed": "2013-11-06", + "initiated": "2014-05-29", + "ministryContact": "LESCH WHITNEY", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -13084,13 +18553,13 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true }, { @@ -13098,24 +18567,19 @@ "role": "REQUESTED BY", "siteRegistry": false }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false } ], "siteRegistry": true }, { - "createdAt": "2019-05-20", - "completed": "2013-10-13", - "initiated": "2013-12-06", - "ministryContact": "RUNOLFSDOTTIR NELLIE", + "createdAt": "2022-02-14", + "completed": "2021-12-29", + "initiated": "2017-04-24", + "ministryContact": "WEHNER ROSLYN", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -13123,29 +18587,24 @@ "" ], "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2014-04-27", - "completed": "2017-11-13", - "initiated": "2020-12-28", - "ministryContact": "O'KON TRESSIE", + "createdAt": "2023-04-18", + "completed": "2014-12-10", + "initiated": "2022-06-21", + "ministryContact": "LEHNER THAD", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -13155,17 +18614,7 @@ "notationParticipants": [ { "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false }, { @@ -13179,13 +18628,13 @@ "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2021-03-31", - "completed": "2014-06-24", - "initiated": "2018-04-13", - "ministryContact": "TERRY SABRINA", + "createdAt": "2022-07-12", + "completed": "2019-04-29", + "initiated": "2016-04-28", + "ministryContact": "SCHOEN DALLIN", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -13194,14 +18643,19 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true } ], "siteRegistry": false @@ -13209,246 +18663,214 @@ ], "participants": [ { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2017-05-28", - "startDate": "2017-07-04", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2017-09-05", + "startDate": "2015-12-26", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": false + "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2017-12-08", - "startDate": "2023-06-30", + "name": "AMET, DOLOR SIT", + "endDate": "2017-12-10", + "startDate": "2017-09-20", "notes": "", "roles": [ "ORGANIZATION" ], "siteRegistry": true - } - ], - "associatedSites": [ - { - "dateNoted": "2017-10-18", - "notes": "", - "parcelID": "18774", - "siteID": "20788", - "siteRegistry": true }, { - "dateNoted": "2021-05-17", + "name": "AMET, DOLOR SIT", + "endDate": "2015-09-23", + "startDate": "2015-02-18", "notes": "", - "parcelID": "20008", - "siteID": "17449", - "siteRegistry": false + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true } - ] - }, - { - "uuid": "f34d7aa7-1847-43ef-9623-4bd479fd98c0", - "siteID": 19872, - "address": "2154 Torphy Lock", - "latitude": 48.614, - "longitude": -126.1157, - "lastUpdated": "2017-07-13", - "city": "New Oda", - "region": "Mainland/Southwest", - "victoriaFile": "26250-20/1444", - "regionalFile": "N/A", - "parcelIDs": [ - 3147762, - 1389596, - 4576731, - 5897827, - 1241325 ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ + "suspectLandUses": [ { - "createdAt": "2018-11-25", - "completed": "2013-12-08", - "initiated": "2013-11-07", - "ministryContact": "COLLINS JULIET", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - } - ], - "siteRegistry": false + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2021-05-10 (described on Site Profile dated 2021-05-10)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "createdAt": "2020-04-20", - "completed": "2023-09-05", - "initiated": "2022-09-02", - "ministryContact": "PARKER-HEATHCOTE TRESSA", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2022-07-23 (described on Site Profile dated 2022-07-23)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2019-01-09 (described on Site Profile dated 2019-01-09)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + } + ], + "siteDisclosures": [ + { + "siteRegistry": false, + "dateReceived": "2019-07-28", + "dateCompleted": "2015-09-19", + "dateEntered": "2014-06-03", + "dateRegistrar": "2020-04-12", + "dateLocalAuthorityReceived": "2017-08-05", + "summary": "Adipisci eum sit.\nAccusamus velit dignissimos sed error quibusdam nemo.\nArchitecto laborum alias sapiente quisquam quibusdam est vitae dolor nam.", + "informationUsed": "Consectetur repellendus necessitatibus soluta ad cumque est cupiditate.\nAliquid qui quisquam vero vero ad dolor nesciunt fuga.\nProvident mollitia nam corporis necessitatibus necessitatibus ullam.\nRepellendus quia dicta earum.\nIste repudiandae enim odio.", + "pastOrPresentOrders": "Adipisci fugiat et totam.\nFuga id facilis quae consequatur minima rerum.", + "commercialAndIndustrialPurposes": [ { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true } - ], - "siteRegistry": false + ] }, { - "createdAt": "2022-07-15", - "completed": "2015-11-08", - "initiated": "2015-02-19", - "ministryContact": "GUSIKOWSKI DESTINY", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ + "siteRegistry": true, + "dateReceived": "2016-09-07", + "dateCompleted": "2016-02-11", + "dateEntered": "2020-08-21", + "dateRegistrar": "2014-04-20", + "dateLocalAuthorityReceived": "2022-01-13", + "summary": "Dolorem alias odit quia repellendus error minima.", + "informationUsed": "Molestiae tenetur cupiditate distinctio ipsum aliquam.\nError facilis consequatur cum laborum exercitationem consequatur dolor.\nUllam eum dolorem a dolores pariatur repellat neque impedit eius.\nRerum nisi nesciunt reprehenderit eaque accusantium occaecati.", + "pastOrPresentOrders": "Aspernatur voluptatum impedit atque quisquam tempora odio.\nRecusandae natus dolorum sit nulla sunt quia.", + "commercialAndIndustrialPurposes": [ { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true } - ], - "siteRegistry": false + ] } ], - "participants": [ + "activityLog": [ { - "name": "AMET, DOLOR SIT", - "endDate": "2023-04-02", - "startDate": "2014-12-26", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": false + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "JACOBS GARETT", + "timestamp": "2023-04-15" }, { - "name": "AMET, DOLOR SIT", - "endDate": "2017-10-21", - "startDate": "2018-04-01", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": true + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "HAND DANNIE", + "timestamp": "2016-09-10" }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2017-02-28", - "startDate": "2020-11-01", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": false + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "MERTZ MAYBELL", + "timestamp": "2022-03-14" }, { - "name": "IPSUM", - "endDate": "2020-07-21", - "startDate": "2017-01-12", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": true + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "LEGROS VAUGHN", + "timestamp": "2016-03-07" }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2016-10-11", - "startDate": "2018-09-05", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": false + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "ALTENWERTH TALON", + "timestamp": "2020-01-24" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "MAYERT ARIEL", + "timestamp": "2016-01-12" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "BOTSFORD HILBERT", + "timestamp": "2014-07-31" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "OSINSKI GENNARO", + "timestamp": "2019-03-25" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "HYATT CHADD", + "timestamp": "2018-01-11" } ], "associatedSites": [ { - "dateNoted": "2021-01-24", + "dateNoted": "2021-04-14", + "notes": "", + "parcelID": "17784", + "siteID": "18790", + "siteRegistry": false + }, + { + "dateNoted": "2015-01-14", "notes": "", - "parcelID": "19402", - "siteID": "17038", + "parcelID": "17113", + "siteID": "20571", "siteRegistry": true } ] }, { - "uuid": "7df0b60a-5d9f-4fd0-b4a5-6b4c57398b31", - "siteID": 19093, - "address": "32352 Hermann Locks", - "latitude": 49.8272, - "longitude": -129.8147, - "lastUpdated": "2014-08-03", - "city": "Baileychester", - "region": "Vancouver Island/Coast", - "victoriaFile": "26250-20/9597", + "uuid": "e62f98fb-134a-4327-821e-c458e2e379f5", + "siteID": 17036, + "address": "78045 Hudson Squares", + "latitude": 57.7805, + "longitude": -138.9534, + "lastUpdated": "2018-11-13", + "city": "Hoegerland", + "region": "Thompson-Okanagan", + "victoriaFile": "26250-20/15720", "regionalFile": "N/A", "parcelIDs": [ - 9087147, - 3603778, - 5553827, - 6907641, - 2515038 + 2408898, + 1224106, + 4981140, + 3175355, + 4722957 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2013-12-27", - "completed": "2015-02-20", - "initiated": "2018-06-06", - "ministryContact": "BARTELL DAMIEN", + "createdAt": "2015-09-26", + "completed": "2022-10-18", + "initiated": "2019-06-23", + "ministryContact": "DARE HOLLY", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -13458,8 +18880,13 @@ "notationParticipants": [ { "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", @@ -13468,17 +18895,17 @@ }, { "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2020-03-28", - "completed": "2020-04-27", - "initiated": "2014-07-26", - "ministryContact": "RENNER AUBREE", + "createdAt": "2017-12-01", + "completed": "2022-03-28", + "initiated": "2019-01-26", + "ministryContact": "GERHOLD JERMEY", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -13488,27 +18915,32 @@ "notationParticipants": [ { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2013-12-14", - "completed": "2019-06-28", - "initiated": "2020-03-21", - "ministryContact": "HARTMANN MARC", + "createdAt": "2021-03-15", + "completed": "2017-12-07", + "initiated": "2017-05-12", + "ministryContact": "GLEASON LEIF", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -13528,22 +18960,22 @@ }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false } ], "siteRegistry": true }, { - "createdAt": "2019-12-08", - "completed": "2016-11-02", - "initiated": "2023-08-29", - "ministryContact": "HYATT EDISON", + "createdAt": "2019-05-15", + "completed": "2015-03-09", + "initiated": "2016-01-01", + "ministryContact": "SIMONIS GAYLE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -13551,39 +18983,24 @@ "" ], "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2022-08-19", - "completed": "2021-03-18", - "initiated": "2016-04-15", - "ministryContact": "HARRIS JULIEN", + "createdAt": "2021-11-26", + "completed": "2017-08-17", + "initiated": "2020-12-19", + "ministryContact": "WITTING HILDEGARD", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -13592,49 +19009,54 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true + "role": "REQUESTED BY", + "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true } ], "participants": [ { - "name": "AMET, DOLOR SIT", - "endDate": "2016-08-29", - "startDate": "2017-05-07", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2016-10-20", + "startDate": "2014-02-21", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false + }, + { + "name": "IPSUM", + "endDate": "2014-04-10", + "startDate": "2020-10-04", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false }, { "name": "IPSUM", - "endDate": "2015-09-12", - "startDate": "2014-10-23", + "endDate": "2017-06-04", + "startDate": "2014-04-29", "notes": "", "roles": [ "ORGANIZATION" @@ -13642,58 +19064,206 @@ "siteRegistry": true }, { - "name": "AMET, DOLOR SIT", - "endDate": "2020-02-23", - "startDate": "2020-08-31", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2023-08-11", + "startDate": "2016-01-11", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": false + "siteRegistry": true + } + ], + "suspectLandUses": [ + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2014-10-06 (described on Site Profile dated 2014-10-06)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2022-10-19 (described on Site Profile dated 2022-10-19)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2015-11-29 (described on Site Profile dated 2015-11-29)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2015-05-22 (described on Site Profile dated 2015-05-22)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2022-01-13 (described on Site Profile dated 2022-01-13)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + } + ], + "siteDisclosures": [ + { + "siteRegistry": true, + "dateReceived": "2013-10-26", + "dateCompleted": "2013-12-31", + "dateEntered": "2023-04-18", + "dateRegistrar": "2016-07-21", + "dateLocalAuthorityReceived": "2017-04-22", + "summary": "Rerum provident explicabo libero similique id tempora voluptas minima iusto.\nDolorum dicta numquam ab error tenetur eum ad a aliquam.\nEveniet distinctio quisquam impedit iste.", + "informationUsed": "Asperiores accusantium velit.\nNobis nam eius commodi a voluptates vel necessitatibus nisi fugiat.\nEveniet voluptate molestiae vel earum explicabo alias ratione.", + "pastOrPresentOrders": "Nisi consectetur adipisci.\nSequi cum vero.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + } + ] + }, + { + "siteRegistry": false, + "dateReceived": "2020-06-10", + "dateCompleted": "2023-01-12", + "dateEntered": "2018-11-19", + "dateRegistrar": "2020-06-22", + "dateLocalAuthorityReceived": "2015-04-05", + "summary": "Similique beatae voluptatibus cumque nesciunt voluptas impedit.\nDolores error magni aspernatur dolore pariatur quia minus temporibus dolor.\nDolorum ipsam minus voluptate occaecati dolor.", + "informationUsed": "Inventore dolor expedita porro.\nNulla porro illo tempora tempora commodi accusamus molestias magni iure.\nA neque earum veniam.", + "pastOrPresentOrders": "Aut ad deleniti.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + } + ] + } + ], + "activityLog": [ + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "SCHOWALTER CHANCE", + "timestamp": "2019-04-02" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "GRAHAM MELISA", + "timestamp": "2015-06-10" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "BOSCO RILEY", + "timestamp": "2020-05-20" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "SCHINNER ZELDA", + "timestamp": "2017-09-13" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "KAUTZER MARJORY", + "timestamp": "2022-05-05" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "JOHNSTON MELANY", + "timestamp": "2017-12-27" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "ARMSTRONG EBBA", + "timestamp": "2020-08-23" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "JACOBSON LUCIE", + "timestamp": "2015-06-18" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "RUNOLFSDOTTIR FLAVIO", + "timestamp": "2018-12-13" } ], "associatedSites": [ { - "dateNoted": "2017-03-24", + "dateNoted": "2020-11-05", + "notes": "", + "parcelID": "19430", + "siteID": "17710", + "siteRegistry": false + }, + { + "dateNoted": "2016-07-25", "notes": "", - "parcelID": "19476", - "siteID": "16703", + "parcelID": "20412", + "siteID": "19367", "siteRegistry": true }, { - "dateNoted": "2016-08-14", + "dateNoted": "2016-11-05", "notes": "", - "parcelID": "18472", - "siteID": "15980", + "parcelID": "17985", + "siteID": "16209", "siteRegistry": true } ] }, { - "uuid": "03666d2f-1c9b-4284-9a89-0b810df6dc9d", - "siteID": 19701, - "address": "850 Carroll Creek", - "latitude": 53.8145, - "longitude": -124.035, - "lastUpdated": "2017-03-11", - "city": "Paterson", - "region": "Kootenay", - "victoriaFile": "26250-20/6334", + "uuid": "7f0d3881-ec0a-4142-b0be-1bfbbc7e4c8a", + "siteID": 17480, + "address": "22773 Eleanore Ford", + "latitude": 52.496, + "longitude": -126.9632, + "lastUpdated": "2022-11-16", + "city": "Lake Garland", + "region": "Vancouver Island/Coast", + "victoriaFile": "26250-20/10490", "regionalFile": "N/A", "parcelIDs": [ - 1603639, - 5673011, - 9250838, - 4132638, - 9962144 + 2382970, + 8692204, + 3047111, + 4233887, + 1275413 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2015-04-29", - "completed": "2016-11-20", - "initiated": "2014-01-24", - "ministryContact": "LOCKMAN KEELY", + "createdAt": "2016-12-04", + "completed": "2021-07-07", + "initiated": "2021-11-08", + "ministryContact": "HEIDENREICH HIRAM", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -13703,27 +19273,27 @@ "notationParticipants": [ { "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2016-11-15", - "completed": "2019-04-14", - "initiated": "2021-04-20", - "ministryContact": "SAUER CHRISTY", + "createdAt": "2023-05-04", + "completed": "2022-08-13", + "initiated": "2017-07-27", + "ministryContact": "LITTEL HARRY", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -13732,38 +19302,33 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2022-11-02", - "completed": "2022-03-25", - "initiated": "2023-05-16", - "ministryContact": "WOLF ROBIN", + "createdAt": "2017-08-24", + "completed": "2015-12-03", + "initiated": "2014-09-05", + "ministryContact": "BROWN LEILANI", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -13773,22 +19338,27 @@ "notationParticipants": [ { "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2018-07-23", - "completed": "2021-08-28", - "initiated": "2016-05-15", - "ministryContact": "HETTINGER AUDRA", + "createdAt": "2019-09-09", + "completed": "2016-11-23", + "initiated": "2014-01-28", + "ministryContact": "VONRUEDEN-ULLRICH LAILA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -13798,7 +19368,7 @@ "notationParticipants": [ { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false }, { @@ -13808,8 +19378,18 @@ }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true } ], "siteRegistry": true @@ -13817,98 +19397,171 @@ ], "participants": [ { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2016-05-05", - "startDate": "2020-05-28", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2023-01-16", + "startDate": "2023-01-06", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false }, { "name": "AMET, DOLOR SIT", - "endDate": "2016-12-27", - "startDate": "2017-12-18", + "endDate": "2022-09-07", + "startDate": "2022-06-22", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": true + } + ], + "suspectLandUses": [ + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2020-02-26 (described on Site Profile dated 2020-02-26)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2013-11-09", - "startDate": "2015-05-13", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": true + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2021-11-15 (described on Site Profile dated 2021-11-15)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2015-09-03", - "startDate": "2016-11-28", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": false + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2018-03-17 (described on Site Profile dated 2018-03-17)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2015-10-28", - "startDate": "2017-03-06", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": false + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2013-12-24 (described on Site Profile dated 2013-12-24)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + } + ], + "siteDisclosures": [ + { + "siteRegistry": true, + "dateReceived": "2020-06-04", + "dateCompleted": "2017-11-26", + "dateEntered": "2021-01-30", + "dateRegistrar": "2019-04-15", + "dateLocalAuthorityReceived": "2014-03-14", + "summary": "Numquam consequuntur vel ullam ex dolore molestiae.\nError dolore deleniti neque quia nobis.", + "informationUsed": "Sint dolor architecto.\nHarum cupiditate perspiciatis a reiciendis cum dicta sequi.\nSequi harum cumque deleniti sunt repellat tempore cupiditate deleniti.\nPorro vero unde minima velit quae distinctio dolores aspernatur.", + "pastOrPresentOrders": "Praesentium praesentium suscipit magnam natus.\nExcepturi deleniti tempore ut nostrum quaerat nemo itaque iure.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + } + ] + } + ], + "activityLog": [ + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "LYNCH KEAGAN", + "timestamp": "2018-11-06" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "MCCLURE LESSIE", + "timestamp": "2023-05-24" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "HYATT JANET", + "timestamp": "2015-09-21" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "HICKLE ARNULFO", + "timestamp": "2020-07-09" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "HOWE CHRIST", + "timestamp": "2017-06-11" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "SKILES PAT", + "timestamp": "2015-04-06" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "LANGOSH EMILIANO", + "timestamp": "2022-12-23" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "HERZOG ELMO", + "timestamp": "2016-10-02" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "COLLIER GEORGETTE", + "timestamp": "2016-12-25" } ], "associatedSites": [ { - "dateNoted": "2014-09-23", + "dateNoted": "2018-01-01", "notes": "", - "parcelID": "16837", - "siteID": "20947", - "siteRegistry": false + "parcelID": "19343", + "siteID": "19013", + "siteRegistry": true }, { - "dateNoted": "2019-04-14", + "dateNoted": "2022-07-07", "notes": "", - "parcelID": "20205", - "siteID": "19897", + "parcelID": "15655", + "siteID": "20188", "siteRegistry": true } ] }, { - "uuid": "9e9d62e1-34e3-4974-9fb1-c1a96a0253f7", - "siteID": 18274, - "address": "64350 Ethan Greens", - "latitude": 50.3342, - "longitude": -119.6225, - "lastUpdated": "2016-01-28", - "city": "Athens-Clarke County", - "region": "Kootenay", - "victoriaFile": "26250-20/17861", + "uuid": "b9aac421-1fdf-46dd-9aff-171fa5072c47", + "siteID": 17774, + "address": "65918 Brandi Lodge", + "latitude": 48.2599, + "longitude": -135.2832, + "lastUpdated": "2021-08-01", + "city": "Gleasonburgh", + "region": "Thompson-Okanagan", + "victoriaFile": "26250-20/9037", "regionalFile": "N/A", "parcelIDs": [ - 8545610, - 477863, - 4402893, - 386544, - 8247015 + 3753866, + 5901055, + 8518886, + 5899759, + 8647948 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2019-08-23", - "completed": "2022-10-22", - "initiated": "2015-06-06", - "ministryContact": "HEANEY BERENICE", + "createdAt": "2020-08-13", + "completed": "2019-04-18", + "initiated": "2016-02-17", + "ministryContact": "KIHN NESTOR", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -13918,27 +19571,27 @@ "notationParticipants": [ { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2016-10-11", - "completed": "2018-12-20", - "initiated": "2021-10-11", - "ministryContact": "REINGER PATTIE", + "createdAt": "2018-07-22", + "completed": "2016-08-17", + "initiated": "2021-08-19", + "ministryContact": "GUTKOWSKI CINDY", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -13947,18 +19600,18 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false } ], @@ -13967,19 +19620,29 @@ ], "participants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2022-04-15", - "startDate": "2018-10-17", + "name": "IPSUM", + "endDate": "2020-09-14", + "startDate": "2015-02-17", "notes": "", "roles": [ "EMPLOYEE" ], + "siteRegistry": false + }, + { + "name": "AMET, DOLOR SIT", + "endDate": "2020-10-26", + "startDate": "2018-01-08", + "notes": "", + "roles": [ + "ORGANIZATION" + ], "siteRegistry": true }, { - "name": "IPSUM", - "endDate": "2018-08-01", - "startDate": "2022-12-26", + "name": "AMET, DOLOR SIT", + "endDate": "2015-01-10", + "startDate": "2015-07-27", "notes": "", "roles": [ "ORGANIZATION" @@ -13988,119 +19651,173 @@ }, { "name": "SHELL CANADA PRODUCTS", - "endDate": "2015-09-06", - "startDate": "2018-12-16", + "endDate": "2016-10-01", + "startDate": "2018-11-19", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], - "siteRegistry": true + "siteRegistry": false } ], - "associatedSites": [ + "suspectLandUses": [ { - "dateNoted": "2015-03-14", - "notes": "", - "parcelID": "17525", - "siteID": "16986", - "siteRegistry": true + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2017-09-21 (described on Site Profile dated 2017-09-21)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "dateNoted": "2017-08-14", - "notes": "", - "parcelID": "18581", - "siteID": "15945", - "siteRegistry": false + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2018-03-10 (described on Site Profile dated 2018-03-10)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "dateNoted": "2015-05-20", - "notes": "", - "parcelID": "18732", - "siteID": "19048", - "siteRegistry": true + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2017-11-05 (described on Site Profile dated 2017-11-05)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2016-12-03 (described on Site Profile dated 2016-12-03)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2021-09-30 (described on Site Profile dated 2021-09-30)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } - ] - }, - { - "uuid": "8a9503a1-6268-4185-888a-c23cf7d92997", - "siteID": 17454, - "address": "721 Erling Trail", - "latitude": 55.151, - "longitude": -120.7264, - "lastUpdated": "2017-12-26", - "city": "Myrticeburgh", - "region": "Mainland/Southwest", - "victoriaFile": "26250-20/2725", - "regionalFile": "N/A", - "parcelIDs": [ - 9863219, - 5288151, - 6153099, - 2153753, - 6738553 ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ + "siteDisclosures": [ { - "createdAt": "2022-08-25", - "completed": "2022-03-09", - "initiated": "2015-03-08", - "ministryContact": "KEELING-JENKINS PINKIE", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ + "siteRegistry": false, + "dateReceived": "2018-02-17", + "dateCompleted": "2017-08-28", + "dateEntered": "2018-02-10", + "dateRegistrar": "2014-08-16", + "dateLocalAuthorityReceived": "2014-09-04", + "summary": "Aut neque reprehenderit illum officia eius ducimus.\nNesciunt facilis animi.\nNam praesentium corporis cum eveniet occaecati.", + "informationUsed": "Accusantium cum vero rerum odit officiis quisquam repudiandae.\nVoluptates autem sint deleniti illo repellat.\nQuam dolor dolorum non magni ullam perspiciatis eaque unde.", + "pastOrPresentOrders": "Maxime unde veniam sint quia.\nCulpa numquam maiores porro explicabo.\nDoloribus sit soluta.", + "commercialAndIndustrialPurposes": [ { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true } - ], - "siteRegistry": true + ] }, { - "createdAt": "2016-10-05", - "completed": "2015-06-18", - "initiated": "2013-10-23", - "ministryContact": "FARRELL JASPER", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ + "siteRegistry": true, + "dateReceived": "2023-08-04", + "dateCompleted": "2017-10-12", + "dateEntered": "2020-10-23", + "dateRegistrar": "2016-03-05", + "dateLocalAuthorityReceived": "2023-05-04", + "summary": "Voluptas eveniet explicabo nulla iure accusantium.\nMolestiae ea quia nihil voluptates porro culpa sequi facilis.", + "informationUsed": "Quasi aspernatur ad.\nAliquid ea rem at architecto pariatur labore culpa.\nRem molestias doloribus provident et aliquid minima.\nTenetur expedita magnam saepe deserunt.", + "pastOrPresentOrders": "Vel odit itaque.\nNecessitatibus neque atque exercitationem quasi excepturi neque ullam nesciunt temporibus.\nNam iure deserunt cum animi.", + "commercialAndIndustrialPurposes": [ { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false } - ], - "siteRegistry": true + ] + } + ], + "activityLog": [ + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "MCDERMOTT MORIAH", + "timestamp": "2017-08-09" }, { - "createdAt": "2016-09-11", - "completed": "2018-11-03", - "initiated": "2016-06-20", - "ministryContact": "O'REILLY RAMON", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "FRITSCH BRICE", + "timestamp": "2016-12-10" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "SPENCER KODY", + "timestamp": "2023-03-31" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "ZULAUF FREIDA", + "timestamp": "2020-07-01" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "SMITHAM FELICITY", + "timestamp": "2016-07-03" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "SHIELDS BERT", + "timestamp": "2018-09-21" + } + ], + "associatedSites": [ + { + "dateNoted": "2022-02-02", + "notes": "", + "parcelID": "16374", + "siteID": "15251", + "siteRegistry": true + } + ] + }, + { + "uuid": "887a2c91-dac9-4012-abef-084fe25ebeae", + "siteID": 15800, + "address": "589 Retta Plaza", + "latitude": 48.5321, + "longitude": -132.3046, + "lastUpdated": "2018-10-27", + "city": "North Elfriedaworth", + "region": "Kootenay", + "victoriaFile": "26250-20/3565", + "regionalFile": "N/A", + "parcelIDs": [ + 7880128, + 3955238, + 8602133, + 906748, + 2976088 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2022-08-08", + "completed": "2016-11-23", + "initiated": "2017-09-12", + "ministryContact": "HILPERT BRANDI", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -14108,6 +19825,11 @@ "" ], "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", @@ -14115,27 +19837,22 @@ }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2021-01-27", - "completed": "2020-12-18", - "initiated": "2020-10-23", - "ministryContact": "BATZ AMIE", + "createdAt": "2017-08-05", + "completed": "2018-09-05", + "initiated": "2021-10-07", + "ministryContact": "DIBBERT HERSHEL", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -14146,28 +19863,18 @@ { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": false - } - ], - "siteRegistry": true - }, - { - "createdAt": "2014-10-07", - "completed": "2020-01-05", - "initiated": "2022-08-16", - "ministryContact": "LEANNON DOROTHY", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ + }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", @@ -14175,7 +19882,7 @@ }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false } ], @@ -14184,49 +19891,49 @@ ], "participants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2023-09-12", - "startDate": "2016-02-06", + "name": "AMET, DOLOR SIT", + "endDate": "2016-07-04", + "startDate": "2018-03-27", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false }, { "name": "AMET, DOLOR SIT", - "endDate": "2017-06-25", - "startDate": "2019-07-06", + "endDate": "2015-07-05", + "startDate": "2017-09-14", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true }, { - "name": "AMET, DOLOR SIT", - "endDate": "2018-04-09", - "startDate": "2023-03-28", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2022-11-01", + "startDate": "2020-02-27", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2014-06-01", - "startDate": "2016-01-30", + "name": "IPSUM", + "endDate": "2014-01-02", + "startDate": "2017-04-06", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2014-05-11", - "startDate": "2021-08-31", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2016-03-25", + "startDate": "2017-01-30", "notes": "", "roles": [ "EMPLOYEE" @@ -14234,48 +19941,168 @@ "siteRegistry": false } ], + "suspectLandUses": [ + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2019-03-30 (described on Site Profile dated 2019-03-30)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2020-05-25 (described on Site Profile dated 2020-05-25)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2020-09-27 (described on Site Profile dated 2020-09-27)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2015-02-01 (described on Site Profile dated 2015-02-01)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2020-07-11 (described on Site Profile dated 2020-07-11)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + } + ], + "siteDisclosures": [ + { + "siteRegistry": true, + "dateReceived": "2015-04-13", + "dateCompleted": "2016-09-17", + "dateEntered": "2014-05-18", + "dateRegistrar": "2016-04-02", + "dateLocalAuthorityReceived": "2020-04-18", + "summary": "Sit expedita occaecati error voluptas perferendis aperiam magnam.\nTotam ipsa placeat voluptas velit eum eum provident aliquid.\nPerspiciatis iste iusto fugiat vero earum fugit facere possimus.", + "informationUsed": "Iusto eum porro tenetur in placeat aut nulla.\nExpedita repellendus perferendis sapiente doloremque.\nAut eveniet maxime eaque culpa occaecati.", + "pastOrPresentOrders": "Aliquam tempore a occaecati dolores qui autem reprehenderit necessitatibus dolor.\nPossimus totam nemo tenetur atque voluptas quis aliquid recusandae nihil.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + } + ] + } + ], + "activityLog": [ + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "MRAZ MARCEL", + "timestamp": "2014-12-31" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "LESCH KAMILLE", + "timestamp": "2020-05-12" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "WISOKY LISANDRO", + "timestamp": "2018-01-07" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "D'AMORE BARRY", + "timestamp": "2023-08-07" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "O'CONNELL TRACY", + "timestamp": "2017-10-31" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "WELCH-CASPER KELLEN", + "timestamp": "2018-07-02" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "GISLASON EVIE", + "timestamp": "2016-05-18" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "RATH MAUDE", + "timestamp": "2017-09-04" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "ROMAGUERA KELSI", + "timestamp": "2016-04-09" + } + ], "associatedSites": [ { - "dateNoted": "2017-03-26", + "dateNoted": "2014-01-25", "notes": "", - "parcelID": "16559", - "siteID": "17012", - "siteRegistry": true + "parcelID": "16159", + "siteID": "17534", + "siteRegistry": false + }, + { + "dateNoted": "2017-09-03", + "notes": "", + "parcelID": "15258", + "siteID": "15327", + "siteRegistry": false }, { - "dateNoted": "2022-04-04", + "dateNoted": "2022-02-21", "notes": "", - "parcelID": "20968", - "siteID": "19351", + "parcelID": "18188", + "siteID": "20382", "siteRegistry": true } ] }, { - "uuid": "cf68a39f-0505-4c34-bd2e-4c1a78631040", - "siteID": 19314, - "address": "4863 King Well", - "latitude": 51.8882, - "longitude": -133.358, - "lastUpdated": "2020-10-27", - "city": "Layneboro", - "region": "Kootenay", - "victoriaFile": "26250-20/9978", + "uuid": "09190125-2383-4877-9bdc-f337b678320c", + "siteID": 16701, + "address": "6402 Ebert Viaduct", + "latitude": 54.4535, + "longitude": -119.4667, + "lastUpdated": "2020-01-30", + "city": "San Ramon", + "region": "Mainland/Southwest", + "victoriaFile": "26250-20/10591", "regionalFile": "N/A", "parcelIDs": [ - 6224003, - 5290809, - 5850577, - 585406, - 288115 + 9131202, + 4705419, + 4436747, + 466563, + 9862379 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2015-06-03", - "completed": "2022-05-03", - "initiated": "2021-03-03", - "ministryContact": "KEELING ANITA", + "createdAt": "2021-06-13", + "completed": "2021-04-16", + "initiated": "2017-09-18", + "ministryContact": "PFANNERSTILL VLADIMIR", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -14288,34 +20115,24 @@ "role": "SUBMITTED BY", "siteRegistry": false }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2022-10-14", - "completed": "2021-01-29", - "initiated": "2015-01-26", - "ministryContact": "FERRY KAYDEN", + "createdAt": "2023-02-04", + "completed": "2016-10-08", + "initiated": "2019-02-28", + "ministryContact": "SCHUPPE WARREN", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -14325,77 +20142,213 @@ "notationParticipants": [ { "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": false } ], "siteRegistry": false + } + ], + "participants": [ + { + "name": "IPSUM", + "endDate": "2020-01-05", + "startDate": "2019-07-06", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false }, { - "createdAt": "2017-09-03", - "completed": "2016-02-18", - "initiated": "2017-05-18", - "ministryContact": "MILLER TYLER", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" + "name": "IPSUM", + "endDate": "2015-06-27", + "startDate": "2016-07-04", + "notes": "", + "roles": [ + "EMPLOYEE" ], - "notationParticipants": [ + "siteRegistry": false + }, + { + "name": "IPSUM", + "endDate": "2019-11-08", + "startDate": "2015-09-08", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + } + ], + "suspectLandUses": [ + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2017-03-20 (described on Site Profile dated 2017-03-20)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2021-03-29 (described on Site Profile dated 2021-03-29)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2021-07-25 (described on Site Profile dated 2021-07-25)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2023-05-20 (described on Site Profile dated 2023-05-20)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2021-06-08 (described on Site Profile dated 2021-06-08)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + } + ], + "siteDisclosures": [ + { + "siteRegistry": false, + "dateReceived": "2022-01-12", + "dateCompleted": "2017-07-23", + "dateEntered": "2018-02-11", + "dateRegistrar": "2021-01-25", + "dateLocalAuthorityReceived": "2019-03-25", + "summary": "Eius incidunt iure iusto.", + "informationUsed": "Magnam in temporibus porro placeat sunt esse quod molestias.\nExercitationem ipsa beatae pariatur blanditiis tempore non deleniti non.\nNihil itaque doloremque reiciendis doloribus.", + "pastOrPresentOrders": "Occaecati a reiciendis.\nSequi enim commodi expedita occaecati qui a reprehenderit.\nDeserunt culpa autem iste corporis exercitationem.", + "commercialAndIndustrialPurposes": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false } - ], - "siteRegistry": true + ] + } + ], + "activityLog": [ + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "MOSCISKI DANTE", + "timestamp": "2022-10-27" }, { - "createdAt": "2016-06-17", - "completed": "2016-08-05", - "initiated": "2017-05-09", - "ministryContact": "ABSHIRE JOY", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "VON GAGE", + "timestamp": "2023-02-09" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "DECKOW AILEEN", + "timestamp": "2020-09-28" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "HYATT TABITHA", + "timestamp": "2022-12-05" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "GUSIKOWSKI SANDRA", + "timestamp": "2021-11-15" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "BARTOLETTI WILLA", + "timestamp": "2020-01-11" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "HINTZ BOBBY", + "timestamp": "2022-09-10" + } + ], + "associatedSites": [ + { + "dateNoted": "2019-03-07", + "notes": "", + "parcelID": "15732", + "siteID": "15381", + "siteRegistry": false + }, + { + "dateNoted": "2019-07-07", + "notes": "", + "parcelID": "15984", + "siteID": "17036", + "siteRegistry": false + } + ] + }, + { + "uuid": "f9b1551c-745e-4bf3-985b-2dfc0d30b755", + "siteID": 19985, + "address": "387 Abernathy Place", + "latitude": 58.5692, + "longitude": -123.0327, + "lastUpdated": "2014-04-08", + "city": "South Donald", + "region": "Mainland/Southwest", + "victoriaFile": "26250-20/12841", + "regionalFile": "N/A", + "parcelIDs": [ + 3412240, + 4340993, + 9480607, + 7066665, + 5338525 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2018-04-29", + "completed": "2018-07-10", + "initiated": "2021-10-08", + "ministryContact": "KRAJCIK JACKY", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -14403,24 +20356,34 @@ "" ], "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true } ], "siteRegistry": true }, { - "createdAt": "2022-11-03", - "completed": "2017-09-28", - "initiated": "2021-02-09", - "ministryContact": "DARE GRADY", + "createdAt": "2019-10-06", + "completed": "2019-12-19", + "initiated": "2021-10-26", + "ministryContact": "KRIS AARON", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -14429,24 +20392,29 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true } ], "participants": [ { "name": "SHELL CANADA PRODUCTS", - "endDate": "2018-08-29", - "startDate": "2023-09-17", + "endDate": "2018-01-01", + "startDate": "2018-04-02", "notes": "", "roles": [ "EMPLOYEE" @@ -14455,87 +20423,179 @@ }, { "name": "IPSUM", - "endDate": "2019-04-09", - "startDate": "2014-04-23", + "endDate": "2018-10-01", + "startDate": "2020-04-23", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", - "endDate": "2020-02-06", - "startDate": "2022-11-28", + "endDate": "2018-07-19", + "startDate": "2014-10-11", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2017-08-20", - "startDate": "2017-10-23", + "name": "AMET, DOLOR SIT", + "endDate": "2018-03-13", + "startDate": "2020-10-26", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true + } + ], + "suspectLandUses": [ + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2021-07-28 (described on Site Profile dated 2021-07-28)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2019-10-26", - "startDate": "2017-08-07", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": false + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2020-12-30 (described on Site Profile dated 2020-12-30)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], - "associatedSites": [ + "siteDisclosures": [ { - "dateNoted": "2022-12-28", - "notes": "", - "parcelID": "18418", - "siteID": "15919", - "siteRegistry": true + "siteRegistry": true, + "dateReceived": "2020-07-31", + "dateCompleted": "2016-06-27", + "dateEntered": "2020-05-26", + "dateRegistrar": "2017-07-14", + "dateLocalAuthorityReceived": "2016-05-05", + "summary": "Modi consequuntur placeat ducimus veritatis maiores culpa.", + "informationUsed": "Molestias exercitationem illum delectus non fugiat similique.\nFugit possimus hic qui ducimus repellendus.\nIn non cum qui.", + "pastOrPresentOrders": "Quidem quae quae incidunt impedit eius ut ad.\nReprehenderit possimus non illum officia magni consequatur.\nInventore illum nostrum praesentium.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + } + ] }, { - "dateNoted": "2015-11-13", + "siteRegistry": true, + "dateReceived": "2021-05-02", + "dateCompleted": "2020-08-12", + "dateEntered": "2021-10-13", + "dateRegistrar": "2016-01-30", + "dateLocalAuthorityReceived": "2017-08-17", + "summary": "Nulla exercitationem dolorum ab aperiam ea.", + "informationUsed": "Laudantium magnam asperiores eum eum odio temporibus blanditiis labore atque.\nPraesentium error voluptate dignissimos quidem.\nMagnam fugiat sapiente corrupti accusantium voluptatem voluptas.\nDelectus cupiditate optio aperiam culpa doloribus maxime harum.", + "pastOrPresentOrders": "Itaque illum expedita explicabo.\nVel unde perspiciatis amet nemo.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + } + ] + } + ], + "activityLog": [ + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "BRUEN EDGARDO", + "timestamp": "2023-07-02" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "KLOCKO BO", + "timestamp": "2022-01-21" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "HANSEN AALIYAH", + "timestamp": "2022-03-15" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "HARRIS WILTON", + "timestamp": "2021-02-20" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "LEGROS IRMA", + "timestamp": "2018-06-04" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "RENNER BESSIE", + "timestamp": "2022-10-24" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "POUROS DESTANY", + "timestamp": "2018-04-17" + } + ], + "associatedSites": [ + { + "dateNoted": "2023-02-18", "notes": "", - "parcelID": "20570", - "siteID": "18517", - "siteRegistry": false + "parcelID": "17158", + "siteID": "16902", + "siteRegistry": true } ] }, { - "uuid": "ed839ca2-d6df-4f2c-9c3c-9ed2acc85fbb", - "siteID": 19407, - "address": "79946 Langosh Highway", - "latitude": 50.856, - "longitude": -125.2751, - "lastUpdated": "2016-04-30", - "city": "Demondberg", - "region": "Mainland/Southwest", - "victoriaFile": "26250-20/990", + "uuid": "7eb7f99a-5192-4785-a605-e79fdb39ad91", + "siteID": 18243, + "address": "348 Leannon Drives", + "latitude": 49.9058, + "longitude": -135.0202, + "lastUpdated": "2022-11-13", + "city": "Metzfield", + "region": "Thompson-Okanagan", + "victoriaFile": "26250-20/2422", "regionalFile": "N/A", "parcelIDs": [ - 227262, - 3372092, - 6022754, - 8430587, - 5971294 + 650880, + 6074296, + 4182989, + 3323372, + 1521953 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2016-11-18", - "completed": "2021-09-12", - "initiated": "2017-10-22", - "ministryContact": "STREICH NOEMY", + "createdAt": "2020-09-23", + "completed": "2020-03-06", + "initiated": "2014-01-23", + "ministryContact": "ZIEME SAMMY", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -14543,23 +20603,13 @@ "" ], "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true } @@ -14567,10 +20617,10 @@ "siteRegistry": false }, { - "createdAt": "2014-12-19", - "completed": "2020-10-13", - "initiated": "2017-05-03", - "ministryContact": "KULAS JORGE", + "createdAt": "2022-03-03", + "completed": "2021-08-17", + "initiated": "2021-03-31", + "ministryContact": "GUTKOWSKI BRENNON", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -14578,49 +20628,19 @@ "" ], "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - } - ], - "siteRegistry": false - }, - { - "createdAt": "2020-04-08", - "completed": "2016-10-02", - "initiated": "2015-12-05", - "ministryContact": "KULAS NOVA", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false }, { @@ -14630,17 +20650,17 @@ }, { "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true + "role": "REQUESTED BY", + "siteRegistry": false } ], "siteRegistry": true }, { - "createdAt": "2022-08-06", - "completed": "2014-05-26", - "initiated": "2018-10-08", - "ministryContact": "HELLER IGNATIUS", + "createdAt": "2019-05-25", + "completed": "2018-09-26", + "initiated": "2022-08-03", + "ministryContact": "BOGAN DANGELO", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -14650,80 +20670,27 @@ "notationParticipants": [ { "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false + "role": "SUBMITTED BY", + "siteRegistry": true } ], - "siteRegistry": true - } - ], - "participants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2023-08-13", - "startDate": "2014-03-18", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2018-07-14", - "startDate": "2019-04-10", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": true - } - ], - "associatedSites": [ - { - "dateNoted": "2022-04-10", - "notes": "", - "parcelID": "20039", - "siteID": "20366", "siteRegistry": false - } - ] - }, - { - "uuid": "a64f2441-bfae-4187-807b-f20649a6926f", - "siteID": 17795, - "address": "16860 Eriberto Valley", - "latitude": 52.9928, - "longitude": -126.8573, - "lastUpdated": "2020-10-19", - "city": "Addisonboro", - "region": "Thompson-Okanagan", - "victoriaFile": "26250-20/7819", - "regionalFile": "N/A", - "parcelIDs": [ - 3368006, - 5168824, - 1979922, - 9865547, - 7291494 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ + }, { - "createdAt": "2014-10-11", - "completed": "2019-10-25", - "initiated": "2017-03-31", - "ministryContact": "CASSIN-WELCH ROSALINDA", + "createdAt": "2022-06-13", + "completed": "2020-10-14", + "initiated": "2021-01-24", + "ministryContact": "ZBONCAK POLLY", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -14739,7 +20706,17 @@ { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", @@ -14750,10 +20727,10 @@ "siteRegistry": false }, { - "createdAt": "2019-12-01", - "completed": "2020-08-05", - "initiated": "2018-03-07", - "ministryContact": "WATSICA STEPHAN", + "createdAt": "2019-05-15", + "completed": "2023-06-18", + "initiated": "2020-04-28", + "ministryContact": "HOWELL-CASSIN WYMAN", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -14771,30 +20748,20 @@ "role": "SUBMITTED BY", "siteRegistry": true }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false } ], "participants": [ { - "name": "IPSUM", - "endDate": "2020-11-09", - "startDate": "2016-08-26", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2018-04-11", + "startDate": "2020-02-26", "notes": "", "roles": [ "EMPLOYEE" @@ -14802,19 +20769,19 @@ "siteRegistry": true }, { - "name": "AMET, DOLOR SIT", - "endDate": "2017-02-23", - "startDate": "2018-04-01", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2019-04-17", + "startDate": "2022-12-19", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": false }, { - "name": "IPSUM", - "endDate": "2020-09-01", - "startDate": "2023-04-05", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2019-05-18", + "startDate": "2015-11-28", "notes": "", "roles": [ "EMPLOYEE" @@ -14822,208 +20789,152 @@ "siteRegistry": false }, { - "name": "AMET, DOLOR SIT", - "endDate": "2018-06-28", - "startDate": "2014-07-26", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2016-07-11", + "startDate": "2019-03-19", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true } ], - "associatedSites": [ + "suspectLandUses": [ { - "dateNoted": "2021-09-22", - "notes": "", - "parcelID": "20319", - "siteID": "17038", - "siteRegistry": false + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2018-08-01 (described on Site Profile dated 2018-08-01)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "dateNoted": "2023-08-03", - "notes": "", - "parcelID": "18918", - "siteID": "17414", - "siteRegistry": true + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2021-04-20 (described on Site Profile dated 2021-04-20)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2016-06-25 (described on Site Profile dated 2016-06-25)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2016-07-13 (described on Site Profile dated 2016-07-13)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } - ] - }, - { - "uuid": "8ca034ab-81b0-486d-ba16-82c9f5ab1f4c", - "siteID": 19409, - "address": "4368 Rath Greens", - "latitude": 54.4748, - "longitude": -130.9228, - "lastUpdated": "2015-12-17", - "city": "Vincenzaboro", - "region": "Kootenay", - "victoriaFile": "26250-20/10653", - "regionalFile": "N/A", - "parcelIDs": [ - 7936753, - 6512346, - 9812202, - 3871712, - 6332216 ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ + "siteDisclosures": [ { - "createdAt": "2019-02-09", - "completed": "2014-05-02", - "initiated": "2016-03-27", - "ministryContact": "KOCH PRISCILLA", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, + "siteRegistry": true, + "dateReceived": "2019-01-12", + "dateCompleted": "2014-06-27", + "dateEntered": "2018-06-02", + "dateRegistrar": "2020-02-17", + "dateLocalAuthorityReceived": "2014-06-23", + "summary": "Voluptate accusamus vitae enim nam placeat itaque accusamus.\nIste nobis error officiis aliquam laboriosam facere blanditiis molestias similique.\nBlanditiis eum rem beatae consectetur dolor deleniti odit numquam ullam.", + "informationUsed": "Enim ducimus eaque odit fugit quaerat sit autem veniam.\nQuis ipsam sequi provident sequi fugit vel explicabo necessitatibus.\nPossimus sed nisi quasi amet dicta.\nSint voluptas nihil cumque.\nAt nulla error dolores dicta repellat neque.", + "pastOrPresentOrders": "Facilis molestiae aut impedit consequuntur nisi harum iusto modi.\nVelit quas ullam accusamus consequatur provident dolorum.", + "commercialAndIndustrialPurposes": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - } - ], - "siteRegistry": false - }, - { - "createdAt": "2023-04-08", - "completed": "2021-08-26", - "initiated": "2020-08-06", - "ministryContact": "TREUTEL KEITH", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false } - ], - "siteRegistry": false + ] } ], - "participants": [ + "activityLog": [ { - "name": "IPSUM", - "endDate": "2022-09-20", - "startDate": "2022-09-21", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": true + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "WATSICA JAYNE", + "timestamp": "2016-01-27" }, { - "name": "AMET, DOLOR SIT", - "endDate": "2018-11-10", - "startDate": "2014-03-28", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": true + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "MCCULLOUGH CANDIDO", + "timestamp": "2016-03-24" }, { - "name": "IPSUM", - "endDate": "2017-01-09", - "startDate": "2022-05-22", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": false + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "REINGER MIREILLE", + "timestamp": "2013-12-16" }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2017-08-20", - "startDate": "2017-11-07", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": true + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "GUTKOWSKI DAPHNEY", + "timestamp": "2019-01-10" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "HERZOG WARD", + "timestamp": "2017-08-27" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "CROOKS ASHA", + "timestamp": "2020-05-21" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "BINS MARIO", + "timestamp": "2022-09-08" } ], "associatedSites": [ { - "dateNoted": "2020-03-07", + "dateNoted": "2015-04-07", "notes": "", - "parcelID": "20467", - "siteID": "17012", - "siteRegistry": false - }, - { - "dateNoted": "2023-02-09", - "notes": "", - "parcelID": "17120", - "siteID": "17012", + "parcelID": "17809", + "siteID": "16509", "siteRegistry": true } ] }, { - "uuid": "b4d80de1-65f6-4220-8017-b9149c2a02b6", - "siteID": 18753, - "address": "478 Emery Plain", - "latitude": 54.2502, - "longitude": -126.6058, - "lastUpdated": "2019-01-31", - "city": "Jacintheworth", - "region": " North Coast", - "victoriaFile": "26250-20/9714", + "uuid": "68cc0bfb-e754-45dd-aa77-ea1706ac6cac", + "siteID": 18067, + "address": "3897 Isabella Village", + "latitude": 58.0074, + "longitude": -138.9864, + "lastUpdated": "2015-04-10", + "city": "East Lysannebury", + "region": "Thompson-Okanagan", + "victoriaFile": "26250-20/16935", "regionalFile": "N/A", "parcelIDs": [ - 7400397, - 6651026, - 7649213, - 6232797, - 7320142 + 2510591, + 9929757, + 4207087, + 5010730, + 3623181 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2017-06-24", - "completed": "2014-12-26", - "initiated": "2020-08-04", - "ministryContact": "HARRIS EZEKIEL", + "createdAt": "2014-06-22", + "completed": "2013-11-15", + "initiated": "2015-12-06", + "ministryContact": "CORWIN PHILIP", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -15034,26 +20945,21 @@ { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2023-03-22", - "completed": "2014-06-29", - "initiated": "2016-05-18", - "ministryContact": "BARTELL JACE", + "createdAt": "2018-12-03", + "completed": "2020-12-21", + "initiated": "2020-09-01", + "ministryContact": "ROOB MYRTIE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -15067,23 +20973,33 @@ "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2016-05-24", - "completed": "2023-07-05", - "initiated": "2021-08-21", - "ministryContact": "STROMAN COLE", + "createdAt": "2014-01-18", + "completed": "2019-11-10", + "initiated": "2019-09-27", + "ministryContact": "KREIGER VICTOR", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -15094,21 +21010,21 @@ { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2016-08-27", - "completed": "2020-07-09", - "initiated": "2016-03-04", - "ministryContact": "SHANAHAN LYSANNE", + "createdAt": "2015-05-19", + "completed": "2020-06-16", + "initiated": "2022-03-08", + "ministryContact": "DOOLEY MAEVE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -15117,14 +21033,9 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", @@ -15132,9 +21043,9 @@ "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false } ], "siteRegistry": true @@ -15142,81 +21053,175 @@ ], "participants": [ { - "name": "IPSUM", - "endDate": "2019-02-23", - "startDate": "2022-09-03", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2018-04-23", + "startDate": "2020-03-10", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2021-03-25", - "startDate": "2023-04-23", - "notes": "", - "roles": [ - "ORGANIZATION" - ], "siteRegistry": false }, { - "name": "IPSUM", - "endDate": "2015-10-23", - "startDate": "2021-12-06", + "name": "AMET, DOLOR SIT", + "endDate": "2020-05-29", + "startDate": "2021-08-11", "notes": "", "roles": [ "EMPLOYEE" ], "siteRegistry": true + } + ], + "suspectLandUses": [ + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2019-09-11 (described on Site Profile dated 2019-09-11)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2017-09-01", - "startDate": "2018-04-05", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": false + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2015-12-14 (described on Site Profile dated 2015-12-14)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2023-05-31 (described on Site Profile dated 2023-05-31)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + } + ], + "siteDisclosures": [ + { + "siteRegistry": true, + "dateReceived": "2023-07-09", + "dateCompleted": "2020-08-25", + "dateEntered": "2016-11-07", + "dateRegistrar": "2023-08-03", + "dateLocalAuthorityReceived": "2020-11-30", + "summary": "Totam fugiat minima id illo.\nQuos a unde sunt modi reiciendis atque eaque sapiente illum.", + "informationUsed": "Inventore dolorum quasi.\nMinima ex iste illo perferendis consequatur aut.\nTempora voluptatum quae nemo consectetur quidem harum.\nMagnam quam architecto cupiditate praesentium porro consectetur veritatis earum.", + "pastOrPresentOrders": "Libero iure autem nobis in temporibus nesciunt iste ducimus.\nIpsum quisquam at nesciunt blanditiis impedit modi magni repudiandae.\nAspernatur provident laboriosam fugit.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + } + ] + } + ], + "activityLog": [ + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "AUFDERHAR JOANY", + "timestamp": "2023-01-10" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "FARRELL EFRAIN", + "timestamp": "2016-12-26" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "HERMAN QUINN", + "timestamp": "2019-07-02" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "WALKER SKYLA", + "timestamp": "2019-12-22" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "MOORE AMELIE", + "timestamp": "2017-11-24" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "GOTTLIEB FREEMAN", + "timestamp": "2023-02-14" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "BRUEN-MCDERMOTT SCOT", + "timestamp": "2021-02-02" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "LARSON MICHEAL", + "timestamp": "2022-11-11" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "WYMAN LOLA", + "timestamp": "2022-04-21" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "O'CONNER MICAELA", + "timestamp": "2022-06-21" } ], "associatedSites": [ { - "dateNoted": "2019-01-27", + "dateNoted": "2022-12-16", "notes": "", - "parcelID": "20884", - "siteID": "17768", - "siteRegistry": false + "parcelID": "16495", + "siteID": "15785", + "siteRegistry": true } ] }, { - "uuid": "f8735ae6-248d-4df9-a32f-a6ba99aca847", - "siteID": 18245, - "address": "41284 Silas Loaf", - "latitude": 52.5527, - "longitude": -123.7511, - "lastUpdated": "2018-09-15", - "city": "North Alejandra", - "region": "Cariboo", - "victoriaFile": "26250-20/18997", + "uuid": "35cd2067-8c9f-44a3-9b8d-02c9f388d233", + "siteID": 20571, + "address": "51424 Shad Green", + "latitude": 56.2205, + "longitude": -131.4751, + "lastUpdated": "2013-11-04", + "city": "Hesselboro", + "region": "Vancouver Island/Coast", + "victoriaFile": "26250-20/10142", "regionalFile": "N/A", "parcelIDs": [ - 7824487, - 9276729, - 8884993, - 8865443, - 4436979 + 8036288, + 8517931, + 6065671, + 7236857, + 9894120 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2014-05-01", - "completed": "2019-07-31", - "initiated": "2018-03-22", - "ministryContact": "SCHUMM KENNETH", + "createdAt": "2020-01-12", + "completed": "2020-12-24", + "initiated": "2019-05-16", + "ministryContact": "CARTER ELDRIDGE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -15226,32 +21231,32 @@ "notationParticipants": [ { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2018-05-06", - "completed": "2022-02-22", - "initiated": "2022-07-22", - "ministryContact": "GRIMES HAYLIE", + "createdAt": "2021-04-08", + "completed": "2015-02-02", + "initiated": "2017-10-01", + "ministryContact": "FARRELL MOZELLE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -15260,22 +21265,27 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true } @@ -15283,10 +21293,10 @@ "siteRegistry": true }, { - "createdAt": "2016-07-03", - "completed": "2017-06-28", - "initiated": "2014-01-11", - "ministryContact": "BEDNAR GREYSON", + "createdAt": "2015-08-16", + "completed": "2022-12-23", + "initiated": "2021-11-26", + "ministryContact": "ROHAN ELISSA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -15296,32 +21306,37 @@ "notationParticipants": [ { "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false } ], "siteRegistry": false }, { - "createdAt": "2019-11-25", - "completed": "2017-01-22", - "initiated": "2022-04-04", - "ministryContact": "MITCHELL PIPER", + "createdAt": "2017-01-14", + "completed": "2014-06-22", + "initiated": "2022-05-22", + "ministryContact": "LINDGREN JUSTYN", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -15331,18 +21346,18 @@ "notationParticipants": [ { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true + "role": "SUBMITTED BY", + "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", @@ -15356,18 +21371,18 @@ "participants": [ { "name": "SHELL CANADA PRODUCTS", - "endDate": "2023-07-05", - "startDate": "2014-08-02", + "endDate": "2014-09-18", + "startDate": "2022-06-10", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": false }, { - "name": "IPSUM", - "endDate": "2022-03-28", - "startDate": "2015-01-14", + "name": "AMET, DOLOR SIT", + "endDate": "2022-01-09", + "startDate": "2019-11-16", "notes": "", "roles": [ "EMPLOYEE" @@ -15375,58 +21390,154 @@ "siteRegistry": false }, { - "name": "AMET, DOLOR SIT", - "endDate": "2020-01-22", - "startDate": "2017-06-17", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2017-10-01", + "startDate": "2015-04-07", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2020-01-10", + "startDate": "2017-10-16", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2018-09-12", + "startDate": "2023-04-08", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + } + ], + "suspectLandUses": [ + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2016-06-09 (described on Site Profile dated 2016-06-09)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2023-07-15 (described on Site Profile dated 2023-07-15)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + } + ], + "siteDisclosures": [ + { + "siteRegistry": false, + "dateReceived": "2019-09-15", + "dateCompleted": "2014-12-07", + "dateEntered": "2020-08-21", + "dateRegistrar": "2014-05-21", + "dateLocalAuthorityReceived": "2020-08-04", + "summary": "Voluptatem porro nemo.", + "informationUsed": "Provident qui illo sit ipsum autem exercitationem possimus necessitatibus nobis.\nQuod consectetur porro maxime.\nSequi perspiciatis omnis nisi optio aperiam distinctio explicabo velit numquam.\nMollitia molestias ipsam.", + "pastOrPresentOrders": "Iste voluptate cum excepturi veniam doloribus laudantium vitae suscipit.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + } + ] + } + ], + "activityLog": [ + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "CARROLL IMELDA", + "timestamp": "2023-04-18" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "BOEHM ABBY", + "timestamp": "2020-03-09" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "RATH ALENE", + "timestamp": "2019-08-07" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "WOLF IAN", + "timestamp": "2016-06-07" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "STROMAN KATARINA", + "timestamp": "2022-01-10" } ], "associatedSites": [ { - "dateNoted": "2015-01-18", + "dateNoted": "2023-10-01", + "notes": "", + "parcelID": "17204", + "siteID": "20230", + "siteRegistry": false + }, + { + "dateNoted": "2022-01-20", "notes": "", - "parcelID": "20832", - "siteID": "19741", + "parcelID": "15948", + "siteID": "18598", "siteRegistry": false }, { - "dateNoted": "2019-10-06", + "dateNoted": "2020-09-19", "notes": "", - "parcelID": "15486", - "siteID": "18771", + "parcelID": "16055", + "siteID": "16303", "siteRegistry": false } ] }, { - "uuid": "68d643a2-0105-4821-ba1b-14134926ff46", - "siteID": 19377, - "address": "298 Bartell Valleys", - "latitude": 57.931, - "longitude": -121.0183, - "lastUpdated": "2016-01-16", - "city": "South Juanastad", - "region": "Thompson-Okanagan", - "victoriaFile": "26250-20/11821", + "uuid": "7efa36f5-a3ef-4df4-8b76-5d89a69a72e1", + "siteID": 18884, + "address": "8613 Rice Cape", + "latitude": 52.5128, + "longitude": -122.5308, + "lastUpdated": "2016-01-13", + "city": "Kautzerbury", + "region": "Mainland/Southwest", + "victoriaFile": "26250-20/5185", "regionalFile": "N/A", "parcelIDs": [ - 131669, - 3351706, - 9279391, - 7282081, - 5465397 + 6781151, + 6131783, + 8154875, + 2822724, + 9297130 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2016-07-14", - "completed": "2017-05-21", - "initiated": "2016-05-02", - "ministryContact": "GUTKOWSKI EVERT", + "createdAt": "2021-08-29", + "completed": "2019-01-28", + "initiated": "2016-04-10", + "ministryContact": "ROWE EMELIE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -15439,19 +21550,29 @@ "role": "REQUESTED BY", "siteRegistry": true }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": false } ], "siteRegistry": true }, { - "createdAt": "2018-11-11", - "completed": "2020-07-01", - "initiated": "2014-02-15", - "ministryContact": "KSHLERIN JENNYFER", + "createdAt": "2015-06-23", + "completed": "2023-08-19", + "initiated": "2016-06-04", + "ministryContact": "SCHADEN CLAUDINE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -15461,33 +21582,23 @@ "notationParticipants": [ { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true } ], "participants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2023-06-29", - "startDate": "2017-05-15", + "name": "IPSUM", + "endDate": "2021-10-31", + "startDate": "2014-03-29", "notes": "", "roles": [ "ORGANIZATION" @@ -15495,68 +21606,182 @@ "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2022-02-06", - "startDate": "2019-11-17", + "name": "AMET, DOLOR SIT", + "endDate": "2013-12-26", + "startDate": "2017-04-16", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], - "siteRegistry": true + "siteRegistry": false + } + ], + "suspectLandUses": [ + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2020-10-26 (described on Site Profile dated 2020-10-26)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "name": "IPSUM", - "endDate": "2019-08-26", - "startDate": "2023-01-02", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": true + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2018-08-23 (described on Site Profile dated 2018-08-23)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2021-07-27 (described on Site Profile dated 2021-07-27)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], - "associatedSites": [ + "siteDisclosures": [ { - "dateNoted": "2020-02-22", - "notes": "", - "parcelID": "19236", - "siteID": "16228", - "siteRegistry": false + "siteRegistry": false, + "dateReceived": "2021-12-11", + "dateCompleted": "2019-06-11", + "dateEntered": "2014-01-03", + "dateRegistrar": "2021-01-23", + "dateLocalAuthorityReceived": "2015-08-06", + "summary": "Voluptatem dolorum vero animi totam exercitationem nobis id distinctio a.\nDolore unde minima repudiandae voluptatibus expedita temporibus.\nEos quas nobis.", + "informationUsed": "Ad necessitatibus consequatur corporis ex beatae quisquam vero architecto omnis.\nDeleniti eos quaerat.\nQuod rerum veritatis.", + "pastOrPresentOrders": "Labore libero asperiores consectetur aspernatur soluta officiis.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + } + ] }, { - "dateNoted": "2013-11-07", + "siteRegistry": true, + "dateReceived": "2017-11-28", + "dateCompleted": "2016-01-24", + "dateEntered": "2021-04-28", + "dateRegistrar": "2015-12-29", + "dateLocalAuthorityReceived": "2015-03-25", + "summary": "Impedit corrupti esse soluta accusamus voluptatum libero.\nIllum similique nesciunt doloribus quidem quasi suscipit ullam rem velit.", + "informationUsed": "Omnis quam officia nemo maiores officiis inventore soluta.\nCorporis id neque dolores eligendi laudantium labore.\nSit laboriosam culpa ipsum quisquam occaecati dicta.", + "pastOrPresentOrders": "Dicta ipsum sed tempore distinctio iste necessitatibus consequuntur est.\nEos repellat aliquid ab maiores.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + } + ] + } + ], + "activityLog": [ + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "POWLOWSKI DAMION", + "timestamp": "2015-10-26" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "SCHMIDT LAILA", + "timestamp": "2014-12-14" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "ERDMAN IDELL", + "timestamp": "2017-08-24" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "GIBSON ADITYA", + "timestamp": "2022-06-12" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "HOEGER ABDIEL", + "timestamp": "2014-10-23" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "FADEL BILLIE", + "timestamp": "2013-11-20" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "WIZA VERDIE", + "timestamp": "2014-12-07" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "HERMANN ALAINA", + "timestamp": "2014-04-01" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "GISLASON-JOHNSTON GRADY", + "timestamp": "2020-10-11" + } + ], + "associatedSites": [ + { + "dateNoted": "2019-03-14", "notes": "", - "parcelID": "17971", - "siteID": "16703", - "siteRegistry": true + "parcelID": "18216", + "siteID": "16715", + "siteRegistry": false } ] }, { - "uuid": "b44edbd2-7dc8-4d78-85dd-b39b1eef043a", - "siteID": 16559, - "address": "713 Lucio Plains", - "latitude": 57.8976, - "longitude": -130.1852, - "lastUpdated": "2019-03-16", - "city": "Otiliaboro", + "uuid": "8115d82a-40e2-41f8-b9ae-77d1aa07200a", + "siteID": 19987, + "address": "7806 Rice Ridge", + "latitude": 52.1212, + "longitude": -123.1303, + "lastUpdated": "2019-08-11", + "city": "Jakubowskiworth", "region": "Vancouver Island/Coast", - "victoriaFile": "26250-20/2010", + "victoriaFile": "26250-20/7316", "regionalFile": "N/A", "parcelIDs": [ - 9748793, - 4915429, - 7243618, - 3392211, - 8286779 + 8850189, + 6032855, + 6562613, + 6775147, + 6417686 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2019-03-02", - "completed": "2016-06-12", - "initiated": "2015-06-22", - "ministryContact": "CUMMINGS DESIREE", + "createdAt": "2022-11-29", + "completed": "2015-08-12", + "initiated": "2014-09-14", + "ministryContact": "KILBACK BUSTER", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -15571,27 +21796,57 @@ }, { "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "createdAt": "2023-01-24", + "completed": "2015-05-23", + "initiated": "2014-06-19", + "ministryContact": "DACH WOODROW", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2022-08-28", - "completed": "2023-08-27", - "initiated": "2015-11-30", - "ministryContact": "MORAR JAYME", + "createdAt": "2020-12-02", + "completed": "2017-02-22", + "initiated": "2020-07-19", + "ministryContact": "KIHN RAQUEL", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -15600,96 +21855,202 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false } ], "participants": [ { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2014-03-07", - "startDate": "2014-07-27", + "name": "IPSUM", + "endDate": "2022-08-22", + "startDate": "2019-06-08", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2016-01-31", - "startDate": "2017-03-26", + "endDate": "2020-12-21", + "startDate": "2018-04-12", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": false }, { - "name": "IPSUM", - "endDate": "2023-05-18", - "startDate": "2017-09-20", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2014-08-10", + "startDate": "2019-12-27", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", - "endDate": "2017-04-25", - "startDate": "2022-05-27", + "endDate": "2023-01-05", + "startDate": "2021-11-19", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": false } ], - "associatedSites": [ + "suspectLandUses": [ { - "dateNoted": "2015-05-08", - "notes": "", - "parcelID": "20418", - "siteID": "20906", - "siteRegistry": true - } - ] - }, - { - "uuid": "4ac66654-1019-4a5c-ad78-296a69724ce6", - "siteID": 17448, - "address": "1943 Abdullah Mount", - "latitude": 54.3575, - "longitude": -122.7209, - "lastUpdated": "2016-05-30", - "city": "Fort Camdenburgh", - "region": "Mainland/Southwest", - "victoriaFile": "26250-20/3654", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2015-03-29 (described on Site Profile dated 2015-03-29)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2021-05-29 (described on Site Profile dated 2021-05-29)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2015-05-13 (described on Site Profile dated 2015-05-13)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2014-10-29 (described on Site Profile dated 2014-10-29)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + } + ], + "siteDisclosures": [ + { + "siteRegistry": false, + "dateReceived": "2022-06-15", + "dateCompleted": "2018-10-13", + "dateEntered": "2015-08-13", + "dateRegistrar": "2015-10-29", + "dateLocalAuthorityReceived": "2014-01-21", + "summary": "Quis ipsum ipsa ducimus unde.\nEius cupiditate tempora.\nCulpa mollitia distinctio qui necessitatibus possimus esse voluptatibus laborum.", + "informationUsed": "Blanditiis vel exercitationem.\nQuidem animi voluptas odio voluptas occaecati minima molestiae.\nQuae quas repellendus animi temporibus rem iusto libero.\nDolorem minus laboriosam dolorum est facere sint ducimus blanditiis maiores.", + "pastOrPresentOrders": "Molestiae mollitia laborum blanditiis.\nQuae voluptate fugiat aperiam sequi sequi incidunt cum voluptatibus minima.\nQuis vero optio.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + } + ] + } + ], + "activityLog": [ + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "LINDGREN HILMA", + "timestamp": "2017-05-10" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "HAUCK VILMA", + "timestamp": "2019-07-16" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "MAYERT JAMAR", + "timestamp": "2022-04-30" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "KUPHAL GERTRUDE", + "timestamp": "2020-05-14" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "KOELPIN MARIAM", + "timestamp": "2021-10-20" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "SCHNEIDER JAQUELIN", + "timestamp": "2020-02-21" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "FRIESEN PAYTON", + "timestamp": "2017-02-10" + } + ], + "associatedSites": [ + { + "dateNoted": "2014-07-03", + "notes": "", + "parcelID": "20947", + "siteID": "17962", + "siteRegistry": true + } + ] + }, + { + "uuid": "347d0210-2de4-4df8-8bbb-49fcda124cac", + "siteID": 20804, + "address": "54736 Mertz Ramp", + "latitude": 51.5908, + "longitude": -136.0571, + "lastUpdated": "2020-08-16", + "city": "Kuphalstead", + "region": " North Coast", + "victoriaFile": "26250-20/11758", "regionalFile": "N/A", "parcelIDs": [ - 8163066, - 9827115, - 5329616, - 749003, - 8085915 + 641066, + 9517561, + 8872938, + 1895841, + 3532149 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2017-09-02", - "completed": "2022-02-01", - "initiated": "2020-10-18", - "ministryContact": "RATKE CALLIE", + "createdAt": "2016-04-05", + "completed": "2015-08-14", + "initiated": "2023-07-17", + "ministryContact": "ROSENBAUM ELVIS", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -15698,28 +22059,28 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true } ], "siteRegistry": false }, { - "createdAt": "2019-06-20", - "completed": "2018-11-05", - "initiated": "2019-07-26", - "ministryContact": "WALSH AUDREY", + "createdAt": "2017-11-30", + "completed": "2017-06-28", + "initiated": "2020-11-22", + "ministryContact": "JAST ELLIE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -15727,24 +22088,29 @@ "" ], "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2014-03-21", - "completed": "2020-02-07", - "initiated": "2023-05-13", - "ministryContact": "HILPERT JENNIE", + "createdAt": "2018-01-03", + "completed": "2021-02-13", + "initiated": "2019-09-27", + "ministryContact": "EFFERTZ NYASIA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -15755,67 +22121,37 @@ { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false - } - ], - "siteRegistry": true - }, - { - "createdAt": "2020-06-29", - "completed": "2019-06-15", - "initiated": "2020-05-15", - "ministryContact": "DAUGHERTY ANTWON", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ + "siteRegistry": true + }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true } ], "participants": [ - { - "name": "AMET, DOLOR SIT", - "endDate": "2018-05-27", - "startDate": "2020-04-14", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": false - }, { "name": "SHELL CANADA PRODUCTS", - "endDate": "2020-06-26", - "startDate": "2023-03-18", + "endDate": "2015-03-09", + "startDate": "2016-10-24", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": true }, { "name": "AMET, DOLOR SIT", - "endDate": "2017-07-24", - "startDate": "2017-07-20", + "endDate": "2015-09-24", + "startDate": "2021-08-16", "notes": "", "roles": [ "ORGANIZATION" @@ -15823,51 +22159,165 @@ "siteRegistry": false }, { - "name": "AMET, DOLOR SIT", - "endDate": "2020-06-18", - "startDate": "2017-06-26", + "name": "IPSUM", + "endDate": "2017-09-01", + "startDate": "2019-06-21", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": false } ], + "suspectLandUses": [ + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2023-08-01 (described on Site Profile dated 2023-08-01)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2020-05-11 (described on Site Profile dated 2020-05-11)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2022-07-02 (described on Site Profile dated 2022-07-02)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2020-11-29 (described on Site Profile dated 2020-11-29)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + } + ], + "siteDisclosures": [ + { + "siteRegistry": true, + "dateReceived": "2014-06-10", + "dateCompleted": "2015-01-17", + "dateEntered": "2022-05-04", + "dateRegistrar": "2019-08-20", + "dateLocalAuthorityReceived": "2017-07-24", + "summary": "Dicta neque repellendus.", + "informationUsed": "Error excepturi neque odio consequuntur blanditiis dignissimos laboriosam.\nSuscipit assumenda praesentium cum nulla sed in recusandae.\nRepellendus consequuntur repellat molestiae minus.\nImpedit laudantium officia soluta dolorem.", + "pastOrPresentOrders": "Modi asperiores quod minima esse fugit quaerat ad.\nOptio aut similique porro debitis omnis perferendis.\nEx facere esse laudantium aperiam libero odio sunt.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + } + ] + } + ], + "activityLog": [ + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "KIEHN NORRIS", + "timestamp": "2014-12-18" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "FEENEY KARI", + "timestamp": "2016-04-10" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "HALEY NILS", + "timestamp": "2021-11-28" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "HANSEN MAURINE", + "timestamp": "2013-12-15" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "TURNER OSVALDO", + "timestamp": "2016-06-09" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "PREDOVIC WILFRED", + "timestamp": "2021-12-23" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "CONN ODELL", + "timestamp": "2023-09-04" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "WISOKY JOSIE", + "timestamp": "2016-04-10" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "CORKERY GROVER", + "timestamp": "2014-05-16" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "SCHOWALTER CATHARINE", + "timestamp": "2017-05-26" + } + ], "associatedSites": [ { - "dateNoted": "2014-12-15", + "dateNoted": "2020-03-13", "notes": "", - "parcelID": "18957", - "siteID": "18969", - "siteRegistry": false + "parcelID": "18397", + "siteID": "16902", + "siteRegistry": true } ] }, { - "uuid": "12fd1efe-87a1-4d54-a050-259e1bd9aeea", - "siteID": 19904, - "address": "75053 Hodkiewicz Ramp", - "latitude": 55.0262, - "longitude": -138.2041, - "lastUpdated": "2015-04-12", - "city": "Pembroke Pines", - "region": "Thompson-Okanagan", - "victoriaFile": "26250-20/1699", + "uuid": "b735a907-a24a-4482-b58c-4e822ccf0b57", + "siteID": 16563, + "address": "2924 Jeanie Walk", + "latitude": 56.5015, + "longitude": -131.3383, + "lastUpdated": "2020-11-25", + "city": "Port Anne", + "region": "Vancouver Island/Coast", + "victoriaFile": "26250-20/11881", "regionalFile": "N/A", "parcelIDs": [ - 8760759, - 5595200, - 5729214, - 1177775, - 9307903 + 256421, + 7701662, + 4443315, + 478682, + 5297732 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2017-07-14", - "completed": "2015-03-16", - "initiated": "2014-08-12", - "ministryContact": "BREKKE EDWARDO", + "createdAt": "2020-03-06", + "completed": "2020-02-03", + "initiated": "2016-06-11", + "ministryContact": "AUFDERHAR NICO", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -15875,53 +22325,18 @@ "" ], "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - } - ], - "siteRegistry": true - }, - { - "createdAt": "2021-07-16", - "completed": "2023-04-05", - "initiated": "2019-11-08", - "ministryContact": "WEIMANN NATASHA", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false } @@ -15929,10 +22344,10 @@ "siteRegistry": false }, { - "createdAt": "2018-12-07", - "completed": "2019-07-18", - "initiated": "2017-06-22", - "ministryContact": "O'CONNER MARJOLAINE", + "createdAt": "2017-01-19", + "completed": "2018-08-04", + "initiated": "2014-06-26", + "ministryContact": "DECKOW ARLENE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -15940,75 +22355,50 @@ "" ], "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false - } - ], - "siteRegistry": false - }, - { - "createdAt": "2014-02-28", - "completed": "2019-06-24", - "initiated": "2023-02-27", - "ministryContact": "HEGMANN EVERETTE", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true } ], "participants": [ + { + "name": "AMET, DOLOR SIT", + "endDate": "2022-04-18", + "startDate": "2019-05-03", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, { "name": "SHELL CANADA PRODUCTS", - "endDate": "2021-06-06", - "startDate": "2014-07-21", + "endDate": "2022-01-19", + "startDate": "2016-04-25", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false }, { "name": "IPSUM", - "endDate": "2023-01-21", - "startDate": "2019-08-12", + "endDate": "2020-09-20", + "startDate": "2018-02-15", "notes": "", "roles": [ "ORGANIZATION" @@ -16016,55 +22406,150 @@ "siteRegistry": true } ], - "associatedSites": [ + "suspectLandUses": [ { - "dateNoted": "2021-01-03", - "notes": "", - "parcelID": "20560", - "siteID": "15443", - "siteRegistry": false + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2018-10-25 (described on Site Profile dated 2018-10-25)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "dateNoted": "2020-06-07", - "notes": "", - "parcelID": "18717", - "siteID": "20353", - "siteRegistry": true + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2015-07-26 (described on Site Profile dated 2015-07-26)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2023-05-20 (described on Site Profile dated 2023-05-20)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + } + ], + "siteDisclosures": [ + { + "siteRegistry": true, + "dateReceived": "2019-01-22", + "dateCompleted": "2018-05-11", + "dateEntered": "2016-03-27", + "dateRegistrar": "2021-09-21", + "dateLocalAuthorityReceived": "2022-09-08", + "summary": "Minus quisquam impedit facilis harum fugiat rerum repellendus.", + "informationUsed": "Perspiciatis unde odit non.\nPorro modi accusamus voluptate recusandae ea reiciendis in.\nIpsam modi tempora recusandae tenetur voluptatibus.\nAutem cum recusandae atque nostrum quisquam libero asperiores consequatur alias.\nEnim quos nulla earum in harum.", + "pastOrPresentOrders": "Natus tempora ipsa sequi quia.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + } + ] + } + ], + "activityLog": [ + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "WALSH PATSY", + "timestamp": "2017-12-21" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "MCDERMOTT KIRK", + "timestamp": "2013-10-17" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "HILLS BERNADINE", + "timestamp": "2022-10-18" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "BERNHARD ALENE", + "timestamp": "2022-11-14" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "RAYNOR JOHATHAN", + "timestamp": "2019-02-27" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "BERNIER BETTE", + "timestamp": "2022-11-03" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "BAYER JOANIE", + "timestamp": "2023-02-19" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "SCHIMMEL GRAHAM", + "timestamp": "2013-11-01" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "HARTMANN ALIZA", + "timestamp": "2020-01-14" }, { - "dateNoted": "2020-01-11", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "NITZSCHE FABIOLA", + "timestamp": "2021-10-02" + } + ], + "associatedSites": [ + { + "dateNoted": "2016-12-26", "notes": "", - "parcelID": "20600", - "siteID": "17164", + "parcelID": "16560", + "siteID": "17224", "siteRegistry": false } ] }, { - "uuid": "0e85df4f-feb5-41cf-ba94-a368a6ddd2b1", - "siteID": 16025, - "address": "694 Zieme Village", - "latitude": 58.4822, - "longitude": -119.3808, - "lastUpdated": "2014-03-01", - "city": "Destineycester", - "region": "Kootenay", - "victoriaFile": "26250-20/16333", + "uuid": "1f4c9615-3b59-44c2-8d54-283532439504", + "siteID": 15574, + "address": "90038 Travis Overpass", + "latitude": 57.5799, + "longitude": -119.4211, + "lastUpdated": "2014-06-19", + "city": "Dellaland", + "region": "Vancouver Island/Coast", + "victoriaFile": "26250-20/1062", "regionalFile": "N/A", "parcelIDs": [ - 2725808, - 1271097, - 3502451, - 5690690, - 6807741 + 4049842, + 9764519, + 2570010, + 7832203, + 8371794 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2021-12-19", - "completed": "2021-02-26", - "initiated": "2019-03-26", - "ministryContact": "SMITH AUDIE", + "createdAt": "2018-03-17", + "completed": "2015-09-02", + "initiated": "2017-11-04", + "ministryContact": "JERDE WYMAN", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -16073,28 +22558,33 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2021-05-09", - "completed": "2015-03-13", - "initiated": "2022-11-03", - "ministryContact": "WOLF KOBE", + "createdAt": "2023-01-19", + "completed": "2020-01-04", + "initiated": "2016-06-13", + "ministryContact": "CHAMPLIN VERNA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -16102,34 +22592,24 @@ "" ], "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2017-04-01", - "completed": "2015-04-12", - "initiated": "2023-04-23", - "ministryContact": "BOSCO WALKER", + "createdAt": "2017-10-30", + "completed": "2020-03-17", + "initiated": "2017-08-31", + "ministryContact": "HINTZ MUSTAFA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -16137,16 +22617,26 @@ "" ], "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", @@ -16156,10 +22646,10 @@ "siteRegistry": true }, { - "createdAt": "2023-07-13", - "completed": "2014-04-29", - "initiated": "2016-01-12", - "ministryContact": "POLLICH EBBA", + "createdAt": "2016-02-28", + "completed": "2022-04-22", + "initiated": "2017-04-24", + "ministryContact": "FUNK JAZLYN", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -16168,24 +22658,29 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true } ], "participants": [ { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2014-10-31", - "startDate": "2022-01-04", + "name": "IPSUM", + "endDate": "2021-06-11", + "startDate": "2016-08-07", "notes": "", "roles": [ "ORGANIZATION" @@ -16193,75 +22688,168 @@ "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2020-10-15", - "startDate": "2020-05-27", + "name": "IPSUM", + "endDate": "2016-03-14", + "startDate": "2020-09-14", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2018-06-06", + "startDate": "2021-05-03", + "notes": "", + "roles": [ + "ORGANIZATION" ], "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2022-10-12", - "startDate": "2017-11-15", + "endDate": "2018-05-13", + "startDate": "2019-10-31", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false } ], - "associatedSites": [ + "suspectLandUses": [ { - "dateNoted": "2019-01-30", - "notes": "", - "parcelID": "17313", - "siteID": "16793", - "siteRegistry": false + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2014-04-12 (described on Site Profile dated 2014-04-12)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "dateNoted": "2019-07-31", - "notes": "", - "parcelID": "19397", - "siteID": "17011", - "siteRegistry": false + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2020-04-27 (described on Site Profile dated 2020-04-27)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + } + ], + "siteDisclosures": [ + { + "siteRegistry": false, + "dateReceived": "2016-06-19", + "dateCompleted": "2016-11-04", + "dateEntered": "2018-09-19", + "dateRegistrar": "2018-02-25", + "dateLocalAuthorityReceived": "2015-08-14", + "summary": "Magni animi placeat iusto corrupti accusantium.", + "informationUsed": "Excepturi laudantium optio sequi.\nAnimi voluptatum unde dolor quas quam.\nVoluptas praesentium at expedita quod.\nAperiam distinctio laudantium at nobis natus repellat quis quod ipsa.", + "pastOrPresentOrders": "Nostrum dolorum cumque expedita aliquid eligendi voluptatem quasi culpa.\nHarum facilis quia commodi quas iste dolores dolorum aut voluptatum.\nEius assumenda animi debitis cumque odit.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + } + ] + } + ], + "activityLog": [ + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "SCHUSTER BEULAH", + "timestamp": "2022-02-24" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "CORKERY YAZMIN", + "timestamp": "2014-07-03" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "JERDE FRIDA", + "timestamp": "2021-08-28" }, { - "dateNoted": "2015-05-06", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "DICKENS TOD", + "timestamp": "2017-09-20" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "ERNSER NIKOLAS", + "timestamp": "2017-11-21" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "HAUCK ROEL", + "timestamp": "2023-03-16" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "BERGE DARRIN", + "timestamp": "2023-09-27" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "CONSIDINE MARCELINA", + "timestamp": "2014-01-16" + } + ], + "associatedSites": [ + { + "dateNoted": "2023-09-16", "notes": "", - "parcelID": "18527", - "siteID": "19005", + "parcelID": "16924", + "siteID": "16209", "siteRegistry": true } ] }, { - "uuid": "7381e564-baf7-4213-b69b-ed5884da1b10", - "siteID": 15656, - "address": "46501 Aurelio Bridge", - "latitude": 57.9362, - "longitude": -120.4585, - "lastUpdated": "2022-03-17", - "city": "Clementineborough", - "region": "Kootenay", - "victoriaFile": "26250-20/6072", + "uuid": "085896fc-e611-4743-88be-c07d82ac4ee3", + "siteID": 18155, + "address": "997 Jayde Views", + "latitude": 50.2446, + "longitude": -127.2383, + "lastUpdated": "2016-12-25", + "city": "Kunzefort", + "region": " North Coast", + "victoriaFile": "26250-20/6389", "regionalFile": "N/A", "parcelIDs": [ - 8822231, - 5841359, - 6222000, - 5725822, - 9606495 + 3922733, + 9351838, + 7640900, + 8933088, + 7849967 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2015-09-27", - "completed": "2020-03-28", - "initiated": "2023-05-25", - "ministryContact": "FAHEY BROOK", + "createdAt": "2016-12-17", + "completed": "2022-03-07", + "initiated": "2014-10-24", + "ministryContact": "TORPHY TRE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -16270,9 +22858,9 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", @@ -16283,10 +22871,10 @@ "siteRegistry": false }, { - "createdAt": "2017-03-31", - "completed": "2019-12-30", - "initiated": "2022-11-01", - "ministryContact": "PROSACCO WILLY", + "createdAt": "2022-04-19", + "completed": "2014-09-08", + "initiated": "2021-07-26", + "ministryContact": "BRAUN SHAYNA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -16296,32 +22884,12 @@ "notationParticipants": [ { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - } - ], - "siteRegistry": true - }, - { - "createdAt": "2020-07-15", - "completed": "2016-09-10", - "initiated": "2023-08-01", - "ministryContact": "HAND JARED", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": true }, { @@ -16330,23 +22898,23 @@ "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false } ], "siteRegistry": true }, { - "createdAt": "2016-12-03", - "completed": "2016-01-25", - "initiated": "2019-09-12", - "ministryContact": "JERDE JADE", + "createdAt": "2020-05-09", + "completed": "2020-01-07", + "initiated": "2019-09-05", + "ministryContact": "ZIEME DAYTON", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -16356,93 +22924,68 @@ "notationParticipants": [ { "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - } - ], - "siteRegistry": false - }, - { - "createdAt": "2019-09-11", - "completed": "2016-08-01", - "initiated": "2016-12-21", - "ministryContact": "RITCHIE KRYSTAL", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true } ], "participants": [ { "name": "AMET, DOLOR SIT", - "endDate": "2021-01-03", - "startDate": "2019-04-24", + "endDate": "2017-09-05", + "startDate": "2018-11-23", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false }, { - "name": "AMET, DOLOR SIT", - "endDate": "2015-05-01", - "startDate": "2014-08-25", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2013-10-25", + "startDate": "2019-01-12", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": false + "siteRegistry": true }, { - "name": "AMET, DOLOR SIT", - "endDate": "2015-09-01", - "startDate": "2021-06-22", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2016-06-19", + "startDate": "2016-09-12", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": true + "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2015-09-26", - "startDate": "2022-01-19", + "name": "AMET, DOLOR SIT", + "endDate": "2019-01-06", + "startDate": "2021-08-24", "notes": "", "roles": [ "EMPLOYEE" @@ -16450,233 +22993,149 @@ "siteRegistry": true } ], - "associatedSites": [ + "suspectLandUses": [ { - "dateNoted": "2016-08-27", - "notes": "", - "parcelID": "16237", - "siteID": "20906", - "siteRegistry": false + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2021-05-21 (described on Site Profile dated 2021-05-21)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "dateNoted": "2022-09-05", - "notes": "", - "parcelID": "19220", - "siteID": "20323", - "siteRegistry": false - } - ] - }, - { - "uuid": "7270a2f7-6739-4e28-8921-d1c986099b30", - "siteID": 20869, - "address": "1792 Antonina Path", - "latitude": 50.5211, - "longitude": -126.4883, - "lastUpdated": "2020-05-11", - "city": "New Maureenfield", - "region": "Thompson-Okanagan", - "victoriaFile": "26250-20/13821", - "regionalFile": "N/A", - "parcelIDs": [ - 4996463, - 8669489, - 6220217, - 7064387, - 9298852 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2018-10-04 (described on Site Profile dated 2018-10-04)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, { - "createdAt": "2020-06-02", - "completed": "2014-01-06", - "initiated": "2016-05-22", - "ministryContact": "BEATTY PAT", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - } - ], - "siteRegistry": true + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2017-08-16 (described on Site Profile dated 2017-08-16)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "createdAt": "2019-02-27", - "completed": "2017-06-25", - "initiated": "2015-04-04", - "ministryContact": "O'CONNER KIRSTEN", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - } - ], - "siteRegistry": true + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2018-03-11 (described on Site Profile dated 2018-03-11)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "createdAt": "2014-04-08", - "completed": "2021-03-08", - "initiated": "2015-12-29", - "ministryContact": "DANIEL CLAUD", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2017-01-25 (described on Site Profile dated 2017-01-25)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + } + ], + "siteDisclosures": [ + { + "siteRegistry": true, + "dateReceived": "2023-02-25", + "dateCompleted": "2016-06-09", + "dateEntered": "2022-08-19", + "dateRegistrar": "2019-05-14", + "dateLocalAuthorityReceived": "2014-06-23", + "summary": "Corporis labore eligendi ullam necessitatibus sed vitae quis assumenda dolore.\nVoluptatibus impedit numquam expedita excepturi dolorem illum.", + "informationUsed": "Possimus fugiat eius.\nImpedit in ipsum labore possimus iste dicta.\nEa aspernatur aliquid expedita dolorum.\nHarum totam modi earum rerum incidunt.\nNulla esse ipsum consequatur quas animi maiores.", + "pastOrPresentOrders": "Nulla provident saepe iure odit natus assumenda.\nUnde soluta neque labore excepturi dolorem iste id.", + "commercialAndIndustrialPurposes": [ { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true } - ], - "siteRegistry": false + ] } ], - "participants": [ + "activityLog": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2014-10-01", - "startDate": "2023-04-13", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": true + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "O'KEEFE LINNIE", + "timestamp": "2020-12-31" }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2018-09-11", - "startDate": "2020-02-16", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": true + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "SCHMELER DESTINEY", + "timestamp": "2019-02-01" }, { - "name": "AMET, DOLOR SIT", - "endDate": "2015-12-01", - "startDate": "2022-04-20", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": true + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "SMITH SHAWN", + "timestamp": "2018-11-01" }, { - "name": "AMET, DOLOR SIT", - "endDate": "2020-02-03", - "startDate": "2017-09-26", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": true + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "KSHLERIN MAXIMUS", + "timestamp": "2019-08-05" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "JONES CRYSTAL", + "timestamp": "2022-09-05" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "TOY BORIS", + "timestamp": "2017-04-08" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "KLOCKO NAOMIE", + "timestamp": "2020-09-14" } ], "associatedSites": [ { - "dateNoted": "2022-07-20", + "dateNoted": "2022-11-09", "notes": "", - "parcelID": "16271", - "siteID": "19457", + "parcelID": "20131", + "siteID": "16893", "siteRegistry": true }, { - "dateNoted": "2015-09-15", + "dateNoted": "2020-06-21", "notes": "", - "parcelID": "17914", - "siteID": "17200", + "parcelID": "20230", + "siteID": "16563", "siteRegistry": true } ] }, { - "uuid": "1eaf94ad-225d-4af5-95b3-4e424acc60d2", - "siteID": 16118, - "address": "4213 Jerde Shoal", - "latitude": 49.2077, - "longitude": -138.177, - "lastUpdated": "2016-04-20", - "city": "Schummstead", - "region": "Thompson-Okanagan", - "victoriaFile": "26250-20/17832", + "uuid": "6bffcb8f-0e74-4396-a692-f9cb6f46a125", + "siteID": 20418, + "address": "1506 Glennie Knoll", + "latitude": 53.9264, + "longitude": -131.5601, + "lastUpdated": "2019-05-16", + "city": "North Celiaberg", + "region": "Cariboo", + "victoriaFile": "26250-20/19606", "regionalFile": "N/A", "parcelIDs": [ - 6462995, - 9523345, - 362754, - 173631, - 2778819 + 7886918, + 6361553, + 8493829, + 4718142, + 9010554 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2019-03-24", - "completed": "2019-03-23", - "initiated": "2021-08-15", - "ministryContact": "SMITH ORA", + "createdAt": "2019-02-12", + "completed": "2018-03-06", + "initiated": "2023-02-24", + "ministryContact": "SIMONIS SALVADOR", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -16691,22 +23150,32 @@ }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true } ], "siteRegistry": false }, { - "createdAt": "2014-09-07", - "completed": "2021-09-05", - "initiated": "2018-11-27", - "ministryContact": "SCHADEN-PRICE JOHNNY", + "createdAt": "2018-08-06", + "completed": "2016-11-20", + "initiated": "2022-05-09", + "ministryContact": "AUFDERHAR WILLA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -16721,8 +23190,13 @@ }, { "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", @@ -16733,10 +23207,10 @@ "siteRegistry": false }, { - "createdAt": "2020-05-19", - "completed": "2022-09-24", - "initiated": "2019-11-25", - "ministryContact": "STAMM KARA", + "createdAt": "2014-07-24", + "completed": "2023-06-03", + "initiated": "2016-05-20", + "ministryContact": "QUIGLEY KATRINE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -16746,11 +23220,6 @@ "notationParticipants": [ { "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false }, @@ -16758,25 +23227,15 @@ "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false } ], "siteRegistry": true }, { - "createdAt": "2020-12-22", - "completed": "2020-06-26", - "initiated": "2015-08-28", - "ministryContact": "ABSHIRE COLBY", + "createdAt": "2019-10-20", + "completed": "2014-01-17", + "initiated": "2022-07-22", + "ministryContact": "HOWE CHADRICK", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -16784,48 +23243,13 @@ "" ], "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - } - ], - "siteRegistry": false - }, - { - "createdAt": "2017-08-26", - "completed": "2022-07-17", - "initiated": "2018-05-01", - "ministryContact": "BECHTELAR CHEYENNE", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false }, @@ -16837,6 +23261,11 @@ { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": false } ], @@ -16846,8 +23275,8 @@ "participants": [ { "name": "SHELL CANADA PRODUCTS", - "endDate": "2022-03-15", - "startDate": "2018-11-10", + "endDate": "2022-09-29", + "startDate": "2015-05-11", "notes": "", "roles": [ "ORGANIZATION" @@ -16855,51 +23284,148 @@ "siteRegistry": false }, { - "name": "IPSUM", - "endDate": "2020-12-12", - "startDate": "2022-10-08", + "name": "AMET, DOLOR SIT", + "endDate": "2023-05-09", + "startDate": "2017-10-14", "notes": "", "roles": [ "EMPLOYEE" ], + "siteRegistry": true + }, + { + "name": "AMET, DOLOR SIT", + "endDate": "2019-04-10", + "startDate": "2015-10-08", + "notes": "", + "roles": [ + "ORGANIZATION" + ], "siteRegistry": false } ], + "suspectLandUses": [ + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2022-03-02 (described on Site Profile dated 2022-03-02)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2021-10-04 (described on Site Profile dated 2021-10-04)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2014-09-13 (described on Site Profile dated 2014-09-13)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + } + ], + "siteDisclosures": [ + { + "siteRegistry": false, + "dateReceived": "2014-05-17", + "dateCompleted": "2017-03-30", + "dateEntered": "2014-07-28", + "dateRegistrar": "2016-11-12", + "dateLocalAuthorityReceived": "2017-11-07", + "summary": "Error dolorum minus aperiam.\nVeritatis corporis adipisci aut nihil.", + "informationUsed": "Non consequuntur doloribus repudiandae.\nSit deserunt reiciendis vitae.\nDelectus deleniti doloribus sapiente consequatur recusandae excepturi animi deleniti.\nEarum culpa voluptatum reprehenderit animi.\nQuaerat modi voluptates quibusdam sint doloremque.", + "pastOrPresentOrders": "Veritatis quod quae ab accusamus dolorem deleniti suscipit repellat.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + } + ] + } + ], + "activityLog": [ + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "WEHNER JUDGE", + "timestamp": "2021-01-02" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "SPINKA ALISHA", + "timestamp": "2023-07-23" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "KESSLER ISMAEL", + "timestamp": "2018-02-08" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "RUECKER HAZLE", + "timestamp": "2014-03-04" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "HANSEN ELDRIDGE", + "timestamp": "2021-07-18" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "GOTTLIEB MARIELA", + "timestamp": "2019-11-25" + } + ], "associatedSites": [ { - "dateNoted": "2018-10-18", + "dateNoted": "2017-05-24", + "notes": "", + "parcelID": "17029", + "siteID": "17480", + "siteRegistry": true + }, + { + "dateNoted": "2017-11-26", "notes": "", - "parcelID": "16464", - "siteID": "19314", + "parcelID": "20934", + "siteID": "20554", "siteRegistry": false } ] }, { - "uuid": "99a567a0-19c0-4b2f-a86e-b4793df7fbdc", - "siteID": 18969, - "address": "650 Elenor Ridges", - "latitude": 51.3107, - "longitude": -120.8581, - "lastUpdated": "2018-07-24", - "city": "Malachichester", + "uuid": "6fb6b79a-bdbc-4809-925e-787cd0973681", + "siteID": 15276, + "address": "994 Bret Divide", + "latitude": 48.1241, + "longitude": -126.8554, + "lastUpdated": "2019-09-11", + "city": "South Lura", "region": "Kootenay", - "victoriaFile": "26250-20/17663", + "victoriaFile": "26250-20/4141", "regionalFile": "N/A", "parcelIDs": [ - 7289532, - 2117949, - 3405760, - 1666343, - 1180250 + 3407337, + 5599486, + 9531464, + 5726658, + 6103307 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2018-02-16", - "completed": "2015-06-12", - "initiated": "2017-02-08", - "ministryContact": "LUEILWITZ BEVERLY", + "createdAt": "2015-01-24", + "completed": "2021-02-07", + "initiated": "2017-09-09", + "ministryContact": "CARTER HILDA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -16908,33 +23434,23 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false } ], "siteRegistry": false }, { - "createdAt": "2015-01-16", - "completed": "2016-04-20", - "initiated": "2017-05-09", - "ministryContact": "HAAG CARLOS", + "createdAt": "2015-05-28", + "completed": "2020-01-30", + "initiated": "2014-02-01", + "ministryContact": "STREICH-ROBEL PHYLLIS", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -16943,28 +23459,28 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false } ], @@ -16973,19 +23489,19 @@ ], "participants": [ { - "name": "AMET, DOLOR SIT", - "endDate": "2014-05-27", - "startDate": "2019-09-11", + "name": "IPSUM", + "endDate": "2019-12-18", + "startDate": "2019-05-12", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", - "endDate": "2022-03-10", - "startDate": "2020-07-05", + "endDate": "2019-09-21", + "startDate": "2015-06-12", "notes": "", "roles": [ "EMPLOYEE" @@ -16993,58 +23509,172 @@ "siteRegistry": true }, { - "name": "AMET, DOLOR SIT", - "endDate": "2018-05-02", - "startDate": "2015-04-29", + "name": "IPSUM", + "endDate": "2015-01-29", + "startDate": "2021-05-15", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2014-10-10", + "startDate": "2016-05-20", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2020-05-16", + "startDate": "2017-06-30", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": false + "siteRegistry": true + } + ], + "suspectLandUses": [ + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2020-02-17 (described on Site Profile dated 2020-02-17)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2022-07-30 (described on Site Profile dated 2022-07-30)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + } + ], + "siteDisclosures": [ + { + "siteRegistry": true, + "dateReceived": "2018-10-08", + "dateCompleted": "2023-01-20", + "dateEntered": "2021-11-22", + "dateRegistrar": "2014-07-04", + "dateLocalAuthorityReceived": "2019-09-03", + "summary": "Aut fugiat doloremque natus.\nAt quo porro.\nAsperiores nemo cum.", + "informationUsed": "Blanditiis fuga autem quasi.\nA voluptas labore vel.\nDistinctio fuga ullam consectetur numquam.", + "pastOrPresentOrders": "Inventore cumque praesentium repudiandae molestiae quia illo.\nAliquid nesciunt veritatis numquam inventore quod distinctio.\nIure itaque incidunt.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + } + ] + } + ], + "activityLog": [ + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "CREMIN ELEONORE", + "timestamp": "2018-08-18" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "KUVALIS SAMANTHA", + "timestamp": "2015-10-30" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "WYMAN RACHELLE", + "timestamp": "2019-02-18" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "SCHULIST ROCIO", + "timestamp": "2019-12-31" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "DOYLE IDELL", + "timestamp": "2016-02-29" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "ROHAN AHMED", + "timestamp": "2016-12-09" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "LINDGREN CHARITY", + "timestamp": "2015-05-24" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "VEUM AHMAD", + "timestamp": "2016-08-15" } ], "associatedSites": [ { - "dateNoted": "2023-01-13", + "dateNoted": "2020-05-19", "notes": "", - "parcelID": "18086", - "siteID": "17057", + "parcelID": "20162", + "siteID": "15864", "siteRegistry": true }, { - "dateNoted": "2019-08-05", + "dateNoted": "2023-07-01", "notes": "", - "parcelID": "17656", - "siteID": "16972", + "parcelID": "18350", + "siteID": "15998", + "siteRegistry": false + }, + { + "dateNoted": "2017-11-01", + "notes": "", + "parcelID": "20290", + "siteID": "17036", "siteRegistry": true } ] }, { - "uuid": "193e3d60-a88e-4ea3-87d7-0875677e5ba5", - "siteID": 17394, - "address": "61100 Adelbert Pines", - "latitude": 50.3458, - "longitude": -134.8701, - "lastUpdated": "2020-08-03", - "city": "East Kentonstead", - "region": "Thompson-Okanagan", - "victoriaFile": "26250-20/1099", + "uuid": "7e812ea5-aebb-4715-840c-7ad3292b7736", + "siteID": 15706, + "address": "849 Kris Union", + "latitude": 58.0542, + "longitude": -124.2305, + "lastUpdated": "2016-02-24", + "city": "Germantown", + "region": "Vancouver Island/Coast", + "victoriaFile": "26250-20/18969", "regionalFile": "N/A", "parcelIDs": [ - 7848288, - 4010624, - 7261741, - 7315603, - 1667638 + 7240831, + 8630937, + 4891005, + 3039684, + 1640162 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2021-05-20", - "completed": "2015-04-13", - "initiated": "2018-07-02", - "ministryContact": "STANTON DARIO", + "createdAt": "2017-08-05", + "completed": "2019-04-20", + "initiated": "2016-12-18", + "ministryContact": "RITCHIE FOSTER", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -17053,52 +23683,22 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", "siteRegistry": true }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - } - ], - "siteRegistry": true - }, - { - "createdAt": "2016-09-30", - "completed": "2021-05-20", - "initiated": "2020-11-24", - "ministryContact": "GORCZANY ALIYA", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false } @@ -17106,10 +23706,10 @@ "siteRegistry": false }, { - "createdAt": "2013-12-27", - "completed": "2015-09-27", - "initiated": "2018-08-19", - "ministryContact": "NIENOW LEO", + "createdAt": "2018-01-23", + "completed": "2017-03-19", + "initiated": "2018-10-21", + "ministryContact": "VON MORGAN", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -17117,39 +23717,24 @@ "" ], "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2017-11-03", - "completed": "2023-01-06", - "initiated": "2020-09-27", - "ministryContact": "WILKINSON CIERRA", + "createdAt": "2022-02-04", + "completed": "2020-10-05", + "initiated": "2023-05-27", + "ministryContact": "BARTON NED", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -17159,43 +23744,28 @@ "notationParticipants": [ { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true + "role": "REQUESTED BY", + "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false - } - ], - "siteRegistry": false - }, - { - "createdAt": "2021-06-24", - "completed": "2022-02-26", - "initiated": "2015-11-12", - "ministryContact": "KUVALIS ELEAZAR", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ + }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true + "role": "SUBMITTED BY", + "siteRegistry": false } ], "siteRegistry": true @@ -17203,138 +23773,205 @@ ], "participants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2017-12-22", - "startDate": "2019-06-29", + "name": "IPSUM", + "endDate": "2021-10-05", + "startDate": "2018-09-03", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2018-12-18", - "startDate": "2018-12-20", + "name": "IPSUM", + "endDate": "2021-02-07", + "startDate": "2020-10-17", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": true + "siteRegistry": false }, { - "name": "IPSUM", - "endDate": "2023-05-07", - "startDate": "2015-02-16", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2014-11-09", + "startDate": "2020-05-12", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": false + "siteRegistry": true }, { "name": "AMET, DOLOR SIT", - "endDate": "2019-07-29", - "startDate": "2020-02-19", + "endDate": "2016-03-04", + "startDate": "2015-04-10", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2023-05-14", - "startDate": "2018-12-29", + "name": "AMET, DOLOR SIT", + "endDate": "2020-03-26", + "startDate": "2019-03-17", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true } ], - "associatedSites": [ + "suspectLandUses": [ { - "dateNoted": "2017-10-08", - "notes": "", - "parcelID": "17277", - "siteID": "18065", - "siteRegistry": true + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2021-12-08 (described on Site Profile dated 2021-12-08)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "dateNoted": "2015-01-08", - "notes": "", - "parcelID": "17419", - "siteID": "20788", - "siteRegistry": true + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2021-01-18 (described on Site Profile dated 2021-01-18)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2016-01-30 (described on Site Profile dated 2016-01-30)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2018-01-18 (described on Site Profile dated 2018-01-18)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2018-12-23 (described on Site Profile dated 2018-12-23)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } - ] - }, - { - "uuid": "1446c5a1-a05b-48be-aafc-1c1dcb83683f", - "siteID": 17866, - "address": "375 Wuckert Roads", - "latitude": 50.7536, - "longitude": -135.7884, - "lastUpdated": "2023-09-28", - "city": "New Friedrich", - "region": "Mainland/Southwest", - "victoriaFile": "26250-20/4896", - "regionalFile": "N/A", - "parcelIDs": [ - 8963662, - 7550120, - 4498654, - 7914848, - 396071 ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ + "siteDisclosures": [ { - "createdAt": "2022-03-09", - "completed": "2014-05-12", - "initiated": "2023-08-10", - "ministryContact": "LOWE NICHOLE", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, + "siteRegistry": false, + "dateReceived": "2014-03-16", + "dateCompleted": "2019-01-05", + "dateEntered": "2023-04-30", + "dateRegistrar": "2022-09-28", + "dateLocalAuthorityReceived": "2015-11-02", + "summary": "Nemo esse voluptatibus ut minus facilis iure iusto doloremque.\nAlias quia corporis eum animi debitis qui velit soluta maiores.", + "informationUsed": "Debitis nemo dolorem.\nId cupiditate fugit repellendus a eligendi cumque nemo commodi.\nIpsam ullam molestiae exercitationem laboriosam.\nLibero odio nesciunt molestiae amet repellendus quaerat magni repellendus earum.", + "pastOrPresentOrders": "Dicta quae consequatur labore.\nSint laudantium repudiandae placeat labore dolorem dolores.\nNemo animi sunt dicta consequatur omnis dolores.", + "commercialAndIndustrialPurposes": [ { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true } - ], - "siteRegistry": true + ] + } + ], + "activityLog": [ + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "HODKIEWICZ DOMENIC", + "timestamp": "2021-11-21" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "MORAR LIBBY", + "timestamp": "2016-03-13" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "HALVORSON LUTHER", + "timestamp": "2017-04-15" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "FISHER DECLAN", + "timestamp": "2019-12-16" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "BERGSTROM CARRIE", + "timestamp": "2014-03-31" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "SCHAMBERGER MERLE", + "timestamp": "2022-03-07" }, { - "createdAt": "2019-08-02", - "completed": "2020-04-12", - "initiated": "2019-05-07", - "ministryContact": "MCGLYNN ELNA", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "JOHNSON ROSEMARIE", + "timestamp": "2020-03-23" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "DANIEL BRICE", + "timestamp": "2022-04-19" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "ZBONCAK LINCOLN", + "timestamp": "2016-07-26" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "WISOKY JASEN", + "timestamp": "2016-07-07" + } + ], + "associatedSites": [ + { + "dateNoted": "2021-11-19", + "notes": "", + "parcelID": "18897", + "siteID": "17155", + "siteRegistry": false + } + ] + }, + { + "uuid": "a315add7-e277-435e-a2d8-fc9b5759ac52", + "siteID": 17810, + "address": "400 Crystel Mountains", + "latitude": 53.8025, + "longitude": -128.5708, + "lastUpdated": "2015-08-12", + "city": "Bergnaumchester", + "region": "Vancouver Island/Coast", + "victoriaFile": "26250-20/4796", + "regionalFile": "N/A", + "parcelIDs": [ + 3558860, + 2437075, + 4163224, + 5024135, + 5463814 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2016-04-19", + "completed": "2020-01-04", + "initiated": "2021-08-25", + "ministryContact": "JOHNSON ANDRE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -17345,26 +23982,46 @@ { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "createdAt": "2017-09-15", + "completed": "2022-03-08", + "initiated": "2014-02-16", + "ministryContact": "MILLER KELLIE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": true } ], "siteRegistry": false }, { - "createdAt": "2015-10-02", - "completed": "2015-04-18", - "initiated": "2018-12-27", - "ministryContact": "WISOKY JESSICA", + "createdAt": "2021-05-01", + "completed": "2021-04-30", + "initiated": "2023-06-06", + "ministryContact": "RAYNOR YASMEEN", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -17375,31 +24032,26 @@ { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false + "role": "SUBMITTED BY", + "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2020-02-05", - "completed": "2015-08-18", - "initiated": "2016-10-14", - "ministryContact": "BARTOLETTI BERRY", + "createdAt": "2021-12-11", + "completed": "2016-02-10", + "initiated": "2019-11-27", + "ministryContact": "CRIST DEVIN", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -17410,26 +24062,26 @@ { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false } ], @@ -17438,243 +24090,246 @@ ], "participants": [ { - "name": "IPSUM", - "endDate": "2015-04-20", - "startDate": "2015-05-02", + "name": "AMET, DOLOR SIT", + "endDate": "2019-01-08", + "startDate": "2022-12-19", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": false }, { - "name": "AMET, DOLOR SIT", - "endDate": "2016-04-02", - "startDate": "2017-09-20", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2017-05-14", + "startDate": "2021-10-12", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2022-07-27", - "startDate": "2023-08-07", + "name": "AMET, DOLOR SIT", + "endDate": "2014-08-27", + "startDate": "2022-11-15", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": true + "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2023-06-17", - "startDate": "2021-08-16", + "name": "AMET, DOLOR SIT", + "endDate": "2014-07-17", + "startDate": "2019-10-10", "notes": "", "roles": [ "EMPLOYEE" ], "siteRegistry": true + }, + { + "name": "IPSUM", + "endDate": "2023-08-12", + "startDate": "2022-07-28", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true } ], - "associatedSites": [ + "suspectLandUses": [ { - "dateNoted": "2021-08-14", - "notes": "", - "parcelID": "16512", - "siteID": "17976", - "siteRegistry": false + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2020-09-02 (described on Site Profile dated 2020-09-02)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "dateNoted": "2021-09-08", - "notes": "", - "parcelID": "19062", - "siteID": "16736", - "siteRegistry": false + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2017-03-18 (described on Site Profile dated 2017-03-18)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "dateNoted": "2023-05-12", - "notes": "", - "parcelID": "18819", - "siteID": "16796", - "siteRegistry": false + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2015-01-20 (described on Site Profile dated 2015-01-20)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2021-07-22 (described on Site Profile dated 2021-07-22)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2018-08-22 (described on Site Profile dated 2018-08-22)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } - ] - }, - { - "uuid": "ac98af65-1856-4bbe-a7ae-482c9278a5fd", - "siteID": 16645, - "address": "73049 Schuppe Way", - "latitude": 58.5829, - "longitude": -118.4279, - "lastUpdated": "2022-07-19", - "city": "East Melyna", - "region": "Mainland/Southwest", - "victoriaFile": "26250-20/17562", - "regionalFile": "N/A", - "parcelIDs": [ - 7591823, - 6150873, - 3479934, - 3960143, - 9768092 ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ + "siteDisclosures": [ { - "createdAt": "2021-11-12", - "completed": "2022-02-22", - "initiated": "2020-06-30", - "ministryContact": "WIZA LUTHER", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, + "siteRegistry": true, + "dateReceived": "2018-07-18", + "dateCompleted": "2017-01-10", + "dateEntered": "2019-12-30", + "dateRegistrar": "2023-07-29", + "dateLocalAuthorityReceived": "2022-12-27", + "summary": "Mollitia perferendis eius esse neque dolorum aliquam ab voluptates.\nNemo nostrum perferendis ab molestiae quo.", + "informationUsed": "Iusto quod neque iure sint pariatur dolore eum consequuntur.\nVoluptates aperiam in asperiores.\nHarum corporis ducimus laudantium assumenda neque.", + "pastOrPresentOrders": "Alias molestiae nulla in sint nulla doloribus eaque autem perferendis.\nHarum eum natus aspernatur esse aliquam recusandae quas.", + "commercialAndIndustrialPurposes": [ { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false } - ], - "siteRegistry": true + ] }, { - "createdAt": "2014-11-05", - "completed": "2015-07-05", - "initiated": "2014-05-25", - "ministryContact": "WYMAN ROWAN", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ + "siteRegistry": false, + "dateReceived": "2019-06-18", + "dateCompleted": "2016-10-11", + "dateEntered": "2021-03-06", + "dateRegistrar": "2021-09-16", + "dateLocalAuthorityReceived": "2016-10-19", + "summary": "Aperiam numquam ex mollitia consectetur.", + "informationUsed": "Iure nostrum voluptate culpa reprehenderit corrupti natus.\nLaboriosam adipisci rem a architecto assumenda molestias est quo.\nVitae cupiditate iusto occaecati repellat consectetur porro facilis ad.", + "pastOrPresentOrders": "Debitis quia quae minus itaque laborum facere perferendis.\nQuos mollitia commodi dolor necessitatibus dolorum neque non ad.\nRem repellendus neque architecto aspernatur accusamus nam.", + "commercialAndIndustrialPurposes": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true } - ], - "siteRegistry": true + ] } ], - "participants": [ + "activityLog": [ { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2017-03-01", - "startDate": "2017-10-18", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": true + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "ROWE MINA", + "timestamp": "2021-04-19" }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2014-12-05", - "startDate": "2014-06-02", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": false + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "WISOKY KAYCEE", + "timestamp": "2022-03-10" }, { - "name": "AMET, DOLOR SIT", - "endDate": "2014-06-26", - "startDate": "2020-01-17", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": false + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "PARKER RICHIE", + "timestamp": "2016-06-29" }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2016-12-05", - "startDate": "2020-10-06", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": true + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "HAMMES CAROLANNE", + "timestamp": "2019-02-01" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "BATZ ALEXANDER", + "timestamp": "2018-07-27" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "ROLFSON ALBIN", + "timestamp": "2015-05-23" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "GULGOWSKI ERICKA", + "timestamp": "2022-10-28" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "FRIESEN ADRIAN", + "timestamp": "2014-01-21" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "METZ LULA", + "timestamp": "2023-06-13" } ], "associatedSites": [ { - "dateNoted": "2018-01-08", + "dateNoted": "2015-11-17", + "notes": "", + "parcelID": "19930", + "siteID": "16504", + "siteRegistry": false + }, + { + "dateNoted": "2021-12-07", "notes": "", - "parcelID": "18862", - "siteID": "15892", + "parcelID": "18364", + "siteID": "19078", "siteRegistry": true + }, + { + "dateNoted": "2022-06-10", + "notes": "", + "parcelID": "15761", + "siteID": "15889", + "siteRegistry": false } ] }, { - "uuid": "7cc56bac-dc2e-421b-9e1b-2a4a0be4367c", - "siteID": 18550, - "address": "3747 Nona Fords", - "latitude": 57.0483, - "longitude": -128.0366, - "lastUpdated": "2020-11-17", - "city": "Connellychester", - "region": "Vancouver Island/Coast", - "victoriaFile": "26250-20/7749", + "uuid": "b5ce849e-a35c-4062-b085-f3632513fafa", + "siteID": 17450, + "address": "3444 Ratke Passage", + "latitude": 56.2297, + "longitude": -131.3254, + "lastUpdated": "2019-08-23", + "city": "Jaredcester", + "region": "Kootenay", + "victoriaFile": "26250-20/11863", "regionalFile": "N/A", "parcelIDs": [ - 6918629, - 6015055, - 1024912, - 5430800, - 2112744 + 1527837, + 9572028, + 2022666, + 431203, + 7789220 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2016-11-21", - "completed": "2015-10-27", - "initiated": "2019-06-17", - "ministryContact": "HESSEL JERRY", + "createdAt": "2020-04-08", + "completed": "2023-06-30", + "initiated": "2021-01-25", + "ministryContact": "KOCH CAMDEN", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -17687,11 +24342,6 @@ "role": "REQUESTED BY", "siteRegistry": false }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", @@ -17699,22 +24349,17 @@ }, { "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2020-09-13", - "completed": "2019-03-19", - "initiated": "2021-05-16", - "ministryContact": "LANGOSH CAROL", + "createdAt": "2023-06-15", + "completed": "2018-12-16", + "initiated": "2018-08-17", + "ministryContact": "HAGENES DWIGHT", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -17724,21 +24369,6 @@ "notationParticipants": [ { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false }, @@ -17751,10 +24381,10 @@ "siteRegistry": true }, { - "createdAt": "2014-04-13", - "completed": "2017-02-21", - "initiated": "2019-12-03", - "ministryContact": "DOYLE ARVID", + "createdAt": "2023-02-07", + "completed": "2019-02-03", + "initiated": "2017-10-02", + "ministryContact": "YOST GUISEPPE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -17763,28 +24393,28 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false } ], "siteRegistry": true }, { - "createdAt": "2020-06-07", - "completed": "2017-02-19", - "initiated": "2022-05-06", - "ministryContact": "LITTEL DAVID", + "createdAt": "2018-08-03", + "completed": "2022-07-11", + "initiated": "2013-11-19", + "ministryContact": "GREENFELDER MARYAM", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -17792,20 +24422,10 @@ "" ], "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false + "role": "REQUESTED BY", + "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", @@ -17813,14 +24433,24 @@ "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true } ], "participants": [ { "name": "AMET, DOLOR SIT", - "endDate": "2018-01-14", - "startDate": "2015-10-16", + "endDate": "2020-08-26", + "startDate": "2018-12-14", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "name": "IPSUM", + "endDate": "2020-12-23", + "startDate": "2019-06-07", "notes": "", "roles": [ "ORGANIZATION" @@ -17829,8 +24459,8 @@ }, { "name": "AMET, DOLOR SIT", - "endDate": "2021-07-05", - "startDate": "2016-08-29", + "endDate": "2014-03-03", + "startDate": "2016-05-08", "notes": "", "roles": [ "ORGANIZATION" @@ -17838,19 +24468,19 @@ "siteRegistry": true }, { - "name": "IPSUM", - "endDate": "2013-12-26", - "startDate": "2018-06-12", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2017-01-01", + "startDate": "2021-06-11", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": false + "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2022-12-22", - "startDate": "2023-02-05", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2022-08-07", + "startDate": "2013-10-14", "notes": "", "roles": [ "ORGANIZATION" @@ -17858,183 +24488,160 @@ "siteRegistry": false } ], - "associatedSites": [ + "suspectLandUses": [ { - "dateNoted": "2022-03-27", - "notes": "", - "parcelID": "20501", - "siteID": "19087", - "siteRegistry": false + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2020-05-20 (described on Site Profile dated 2020-05-20)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "dateNoted": "2022-07-04", - "notes": "", - "parcelID": "17018", - "siteID": "20366", - "siteRegistry": false + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2022-09-19 (described on Site Profile dated 2022-09-19)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "dateNoted": "2022-01-05", - "notes": "", - "parcelID": "20213", - "siteID": "17151", - "siteRegistry": true + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2016-12-27 (described on Site Profile dated 2016-12-27)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2013-12-08 (described on Site Profile dated 2013-12-08)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2014-09-04 (described on Site Profile dated 2014-09-04)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } - ] - }, - { - "uuid": "51ae7522-ced7-4132-a7be-a069fc88e1d7", - "siteID": 18162, - "address": "281 Huel Via", - "latitude": 48.8619, - "longitude": -138.1775, - "lastUpdated": "2018-11-15", - "city": "East Lansing", - "region": "Cariboo", - "victoriaFile": "26250-20/6930", - "regionalFile": "N/A", - "parcelIDs": [ - 7417203, - 8372755, - 9576252, - 6480937, - 9925658 ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ + "siteDisclosures": [ { - "createdAt": "2021-08-12", - "completed": "2019-07-22", - "initiated": "2022-10-14", - "ministryContact": "MARQUARDT DAYNE", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ + "siteRegistry": false, + "dateReceived": "2023-09-27", + "dateCompleted": "2020-01-17", + "dateEntered": "2021-05-09", + "dateRegistrar": "2021-07-20", + "dateLocalAuthorityReceived": "2017-08-15", + "summary": "Ipsa vero eaque quos odit.", + "informationUsed": "Debitis natus cupiditate.\nLaudantium quos nam aperiam eius hic.\nQuam occaecati molestiae repudiandae nulla.\nQuo unde tempora.\nCommodi quaerat voluptatum eligendi quidem.", + "pastOrPresentOrders": "Blanditiis rem occaecati nostrum rem.\nVoluptate impedit architecto dolorem ex beatae facilis.", + "commercialAndIndustrialPurposes": [ { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false } - ], - "siteRegistry": true + ] }, { - "createdAt": "2015-05-29", - "completed": "2016-06-20", - "initiated": "2020-09-04", - "ministryContact": "SCHULIST CAESAR", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ + "siteRegistry": true, + "dateReceived": "2016-04-17", + "dateCompleted": "2023-04-26", + "dateEntered": "2020-11-20", + "dateRegistrar": "2014-10-28", + "dateLocalAuthorityReceived": "2022-09-21", + "summary": "Aspernatur nihil odit nemo consequuntur quibusdam est.\nNesciunt aliquid exercitationem.\nDolore deleniti minima.", + "informationUsed": "Voluptas culpa saepe dicta quidem officiis animi sapiente.\nVel aperiam minima occaecati hic.\nSaepe maxime autem quasi dolorum temporibus quis.\nMaiores aspernatur id alias.", + "pastOrPresentOrders": "Cum et cum quae itaque cum.\nEst commodi non porro nulla excepturi.", + "commercialAndIndustrialPurposes": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true } - ], - "siteRegistry": false + ] } ], - "participants": [ + "activityLog": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2023-09-16", - "startDate": "2016-08-29", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": false + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "MITCHELL WILLARD", + "timestamp": "2018-12-06" }, { - "name": "IPSUM", - "endDate": "2021-12-17", - "startDate": "2018-10-15", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": false + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "FRIESEN TAYLOR", + "timestamp": "2023-03-10" }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2017-08-18", - "startDate": "2023-07-06", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": true + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "ROHAN HERMINA", + "timestamp": "2023-09-12" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "SMITHAM ALDA", + "timestamp": "2014-01-31" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "BARROWS GRETA", + "timestamp": "2023-10-01" } ], "associatedSites": [ { - "dateNoted": "2018-10-13", + "dateNoted": "2022-02-14", "notes": "", - "parcelID": "16307", - "siteID": "18695", + "parcelID": "18818", + "siteID": "19985", + "siteRegistry": true + }, + { + "dateNoted": "2019-07-03", + "notes": "", + "parcelID": "18811", + "siteID": "19013", "siteRegistry": true } ] }, { - "uuid": "ff42f458-ce52-4d61-ad7f-2e285a46baff", - "siteID": 17783, - "address": "932 Gottlieb Plains", - "latitude": 50.4385, - "longitude": -123.1735, - "lastUpdated": "2023-04-02", - "city": "Lake Leonardo", + "uuid": "719f14bf-59a8-4256-9ac8-a1a1b7154084", + "siteID": 15262, + "address": "5556 Clotilde Fall", + "latitude": 55.5701, + "longitude": -124.0945, + "lastUpdated": "2014-10-05", + "city": "Kosschester", "region": "Vancouver Island/Coast", - "victoriaFile": "26250-20/731", + "victoriaFile": "26250-20/16255", "regionalFile": "N/A", "parcelIDs": [ - 6749099, - 6796553, - 8055378, - 8712059, - 5490455 + 4560440, + 9269341, + 8539958, + 7856658, + 5322716 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2022-12-11", - "completed": "2019-07-10", - "initiated": "2018-12-22", - "ministryContact": "FRIESEN SHAD", + "createdAt": "2022-12-31", + "completed": "2020-05-15", + "initiated": "2022-04-27", + "ministryContact": "MRAZ JANICK", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -18055,21 +24662,21 @@ { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2021-02-07", - "completed": "2020-01-08", - "initiated": "2023-09-02", - "ministryContact": "STOLTENBERG-MOHR KITTY", + "createdAt": "2020-11-22", + "completed": "2022-02-15", + "initiated": "2015-03-11", + "ministryContact": "CUMMERATA HAL", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -18078,48 +24685,33 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false - } - ], - "siteRegistry": true - }, - { - "createdAt": "2014-09-30", - "completed": "2023-08-13", - "initiated": "2015-01-19", - "ministryContact": "BRAKUS GERARDO", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ + }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": false } ], "siteRegistry": false }, { - "createdAt": "2014-09-28", - "completed": "2023-06-18", - "initiated": "2016-11-14", - "ministryContact": "HANE LUE", + "createdAt": "2015-12-01", + "completed": "2022-03-22", + "initiated": "2020-07-03", + "ministryContact": "BAUCH CHELSIE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -18128,44 +24720,44 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true } ], "participants": [ { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2015-04-01", - "startDate": "2020-05-27", + "name": "IPSUM", + "endDate": "2023-05-17", + "startDate": "2020-12-29", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", - "endDate": "2023-01-18", - "startDate": "2014-03-14", + "endDate": "2022-11-19", + "startDate": "2023-09-01", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2015-09-10", - "startDate": "2018-11-03", + "name": "AMET, DOLOR SIT", + "endDate": "2021-11-22", + "startDate": "2018-04-26", "notes": "", "roles": [ "EMPLOYEE" @@ -18174,57 +24766,146 @@ }, { "name": "SHELL CANADA PRODUCTS", - "endDate": "2022-11-01", - "startDate": "2022-01-10", + "endDate": "2018-01-21", + "startDate": "2020-12-04", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": false - } - ], - "associatedSites": [ + }, { - "dateNoted": "2015-12-26", + "name": "AMET, DOLOR SIT", + "endDate": "2022-08-24", + "startDate": "2023-05-24", "notes": "", - "parcelID": "16031", - "siteID": "18368", + "roles": [ + "ORGANIZATION" + ], "siteRegistry": false + } + ], + "suspectLandUses": [ + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2015-04-16 (described on Site Profile dated 2015-04-16)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2016-07-04 (described on Site Profile dated 2016-07-04)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2014-10-26 (described on Site Profile dated 2014-10-26)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + } + ], + "siteDisclosures": [ + { + "siteRegistry": false, + "dateReceived": "2017-06-25", + "dateCompleted": "2022-11-26", + "dateEntered": "2019-06-15", + "dateRegistrar": "2023-01-07", + "dateLocalAuthorityReceived": "2016-10-11", + "summary": "Qui nobis provident nobis quam impedit.", + "informationUsed": "Nostrum dolor consectetur sunt minima cupiditate quia reprehenderit sapiente.\nCulpa doloribus veniam quae officiis.\nFacere nobis dolore minus deleniti blanditiis soluta perferendis tenetur a.\nQuidem magni officia nemo.", + "pastOrPresentOrders": "Maiores earum velit dignissimos.\nVoluptates nesciunt aperiam hic deserunt impedit aspernatur explicabo voluptatem.\nNobis autem quia.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + } + ] + } + ], + "activityLog": [ + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "CARROLL MAKAYLA", + "timestamp": "2014-10-26" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "CORKERY LILIANA", + "timestamp": "2019-10-26" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "MCCLURE GLORIA", + "timestamp": "2021-11-16" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "JOHNSTON REMINGTON", + "timestamp": "2022-06-26" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "KOEPP AXEL", + "timestamp": "2017-12-13" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "JOHNSON ISAC", + "timestamp": "2019-10-10" }, { - "dateNoted": "2020-09-20", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "MANN ABIGALE", + "timestamp": "2014-01-26" + } + ], + "associatedSites": [ + { + "dateNoted": "2014-08-21", "notes": "", - "parcelID": "16186", - "siteID": "19796", + "parcelID": "17114", + "siteID": "17309", "siteRegistry": true } ] }, { - "uuid": "a80ee123-8013-4eda-ad20-2955d6073694", - "siteID": 18517, - "address": "110 Hayes Branch", - "latitude": 56.5571, - "longitude": -125.1135, - "lastUpdated": "2014-05-31", - "city": "Des Plaines", - "region": " North Coast", - "victoriaFile": "26250-20/830", + "uuid": "cc1bcd26-5cb8-4959-8505-6976188ce50b", + "siteID": 16157, + "address": "3618 Runolfsdottir Plains", + "latitude": 50.3661, + "longitude": -132.7114, + "lastUpdated": "2017-02-01", + "city": "West Jacky", + "region": "Mainland/Southwest", + "victoriaFile": "26250-20/18136", "regionalFile": "N/A", "parcelIDs": [ - 9219160, - 7412793, - 7003059, - 4484212, - 1721328 + 7821555, + 7520964, + 9236900, + 6454355, + 5759307 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2017-03-05", - "completed": "2023-09-29", - "initiated": "2021-03-09", - "ministryContact": "DARE-ARMSTRONG JALEEL", + "createdAt": "2017-03-11", + "completed": "2019-09-10", + "initiated": "2018-02-02", + "ministryContact": "LESCH MELYSSA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -18233,27 +24914,52 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, { "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "createdAt": "2020-11-20", + "completed": "2015-05-12", + "initiated": "2015-08-30", + "ministryContact": "HAMMES HERMANN", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", "siteRegistry": true }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, { "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true } @@ -18261,10 +24967,10 @@ "siteRegistry": true }, { - "createdAt": "2017-07-11", - "completed": "2023-05-29", - "initiated": "2022-10-09", - "ministryContact": "TREMBLAY JOHN", + "createdAt": "2014-12-11", + "completed": "2021-05-24", + "initiated": "2014-11-26", + "ministryContact": "GREEN ROD", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -18275,31 +24981,31 @@ { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false + "role": "SUBMITTED BY", + "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true + "role": "SUBMITTED BY", + "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false + "role": "REQUESTED BY", + "siteRegistry": true } ], "siteRegistry": false }, { - "createdAt": "2015-01-23", - "completed": "2015-08-21", - "initiated": "2020-10-14", - "ministryContact": "FEIL ISAI", + "createdAt": "2019-01-18", + "completed": "2018-07-04", + "initiated": "2022-11-11", + "ministryContact": "WILL THAD", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -18314,32 +25020,22 @@ }, { "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false } ], "siteRegistry": false }, { - "createdAt": "2021-04-17", - "completed": "2023-02-27", - "initiated": "2019-07-02", - "ministryContact": "ROHAN DERON", + "createdAt": "2022-12-11", + "completed": "2017-05-08", + "initiated": "2017-11-21", + "ministryContact": "LITTEL LESSIE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -18349,28 +25045,23 @@ "notationParticipants": [ { "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true } ], "participants": [ { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2015-04-22", - "startDate": "2021-06-25", + "name": "AMET, DOLOR SIT", + "endDate": "2014-12-20", + "startDate": "2015-10-20", "notes": "", "roles": [ "EMPLOYEE" @@ -18378,9 +25069,9 @@ "siteRegistry": true }, { - "name": "AMET, DOLOR SIT", - "endDate": "2020-02-08", - "startDate": "2019-01-27", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2013-12-17", + "startDate": "2015-10-02", "notes": "", "roles": [ "ORGANIZATION" @@ -18389,28 +25080,28 @@ }, { "name": "SHELL CANADA PRODUCTS", - "endDate": "2015-07-22", - "startDate": "2016-02-24", + "endDate": "2021-01-31", + "startDate": "2017-12-15", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": false }, { "name": "IPSUM", - "endDate": "2018-04-30", - "startDate": "2015-08-02", + "endDate": "2022-04-09", + "startDate": "2015-05-02", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], - "siteRegistry": true + "siteRegistry": false }, { - "name": "IPSUM", - "endDate": "2017-04-08", - "startDate": "2015-06-07", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2019-02-23", + "startDate": "2019-01-09", "notes": "", "roles": [ "EMPLOYEE" @@ -18418,48 +25109,146 @@ "siteRegistry": false } ], + "suspectLandUses": [ + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2018-08-22 (described on Site Profile dated 2018-08-22)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2019-06-07 (described on Site Profile dated 2019-06-07)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + } + ], + "siteDisclosures": [ + { + "siteRegistry": true, + "dateReceived": "2020-06-29", + "dateCompleted": "2015-10-19", + "dateEntered": "2021-08-18", + "dateRegistrar": "2016-01-04", + "dateLocalAuthorityReceived": "2020-06-27", + "summary": "Amet quidem neque id officiis.", + "informationUsed": "Vel culpa iure animi facilis dolorem sunt sint.\nAperiam nihil iure necessitatibus quo iste debitis harum.\nDeleniti nemo dolorem perspiciatis.", + "pastOrPresentOrders": "Et laboriosam nihil est voluptatibus dolore.\nPerspiciatis ad unde facere quis quibusdam.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + } + ] + } + ], + "activityLog": [ + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "TILLMAN MARION", + "timestamp": "2022-07-19" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "KOELPIN REGAN", + "timestamp": "2019-10-20" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "BEDNAR LILLIAN", + "timestamp": "2020-03-26" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "KERLUKE JACINTHE", + "timestamp": "2014-04-25" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "GUSIKOWSKI JEANIE", + "timestamp": "2015-04-23" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "GUTMANN PINKIE", + "timestamp": "2017-03-11" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "KUTCH JOSIANNE", + "timestamp": "2020-06-04" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "OKUNEVA MAYNARD", + "timestamp": "2016-12-10" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "SKILES ERNESTINA", + "timestamp": "2021-04-15" + } + ], "associatedSites": [ { - "dateNoted": "2013-11-26", + "dateNoted": "2022-07-07", "notes": "", - "parcelID": "19642", - "siteID": "19048", - "siteRegistry": true + "parcelID": "20775", + "siteID": "18004", + "siteRegistry": false }, { - "dateNoted": "2017-07-21", + "dateNoted": "2023-03-29", "notes": "", - "parcelID": "15585", - "siteID": "15361", - "siteRegistry": false + "parcelID": "16993", + "siteID": "18123", + "siteRegistry": true } ] }, { - "uuid": "5cd61a59-d6fa-4158-be68-83808a0790d5", - "siteID": 16272, - "address": "57618 Meredith Shores", - "latitude": 55.8684, - "longitude": -129.8964, - "lastUpdated": "2017-07-31", - "city": "Justicecester", - "region": "Thompson-Okanagan", - "victoriaFile": "26250-20/6288", + "uuid": "9bc07fc7-2fdc-4707-bffe-c9c049218639", + "siteID": 16320, + "address": "821 McCullough Green", + "latitude": 55.1921, + "longitude": -124.5777, + "lastUpdated": "2018-02-26", + "city": "Fremont", + "region": "Cariboo", + "victoriaFile": "26250-20/2305", "regionalFile": "N/A", "parcelIDs": [ - 3914481, - 3022817, - 8696707, - 7217233, - 7091490 + 234875, + 2171974, + 2236823, + 344523, + 8389328 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2023-09-28", - "completed": "2019-05-31", - "initiated": "2016-01-24", - "ministryContact": "HANSEN DORA", + "createdAt": "2021-10-01", + "completed": "2019-10-24", + "initiated": "2015-06-28", + "ministryContact": "TREUTEL TATYANA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -18467,34 +25256,39 @@ "" ], "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, { "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": true } ], "siteRegistry": false }, { - "createdAt": "2021-04-27", - "completed": "2018-07-31", - "initiated": "2015-06-16", - "ministryContact": "HILLS JAYLEN", + "createdAt": "2014-08-22", + "completed": "2017-08-02", + "initiated": "2022-12-14", + "ministryContact": "HALVORSON BERNADETTE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -18507,11 +25301,6 @@ "role": "SUBMITTED BY", "siteRegistry": false }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", @@ -18519,42 +25308,198 @@ } ], "siteRegistry": true + } + ], + "participants": [ + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2022-11-04", + "startDate": "2020-08-10", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true }, { - "createdAt": "2019-09-03", - "completed": "2016-06-22", - "initiated": "2022-11-13", - "ministryContact": "FRAMI DEJUAN", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" + "name": "SHELL CANADA PRODUCTS", + "endDate": "2020-05-16", + "startDate": "2018-03-10", + "notes": "", + "roles": [ + "EMPLOYEE" ], - "notationParticipants": [ + "siteRegistry": true + }, + { + "name": "IPSUM", + "endDate": "2017-06-22", + "startDate": "2023-04-15", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2014-03-05", + "startDate": "2017-10-28", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2019-08-30", + "startDate": "2023-03-05", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + } + ], + "suspectLandUses": [ + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2021-02-14 (described on Site Profile dated 2021-02-14)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2014-06-16 (described on Site Profile dated 2014-06-16)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2018-08-14 (described on Site Profile dated 2018-08-14)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2014-01-17 (described on Site Profile dated 2014-01-17)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2016-11-23 (described on Site Profile dated 2016-11-23)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + } + ], + "siteDisclosures": [ + { + "siteRegistry": true, + "dateReceived": "2020-04-23", + "dateCompleted": "2022-02-05", + "dateEntered": "2014-08-30", + "dateRegistrar": "2022-10-05", + "dateLocalAuthorityReceived": "2017-11-18", + "summary": "Tempore perspiciatis ducimus quis ea.", + "informationUsed": "Dolorem libero blanditiis neque rem repellat labore aliquid commodi.\nNihil quidem ipsum iure officiis accusamus quos quaerat illo animi.\nDoloribus provident sunt quasi vitae.", + "pastOrPresentOrders": "Officiis accusamus reprehenderit quos optio accusantium.\nRerum consequuntur hic quas assumenda sapiente adipisci sequi.\nLibero quaerat molestias ex deleniti quas.", + "commercialAndIndustrialPurposes": [ { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false } - ], + ] + } + ], + "activityLog": [ + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "PARISIAN GWEN", + "timestamp": "2018-03-22" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "SCHULTZ TREY", + "timestamp": "2016-05-23" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "CHRISTIANSEN FANNIE", + "timestamp": "2021-09-10" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "KIEHN FERNANDO", + "timestamp": "2019-02-10" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "POWLOWSKI BERNARDO", + "timestamp": "2016-10-18" + } + ], + "associatedSites": [ + { + "dateNoted": "2021-06-13", + "notes": "", + "parcelID": "16300", + "siteID": "16701", + "siteRegistry": true + }, + { + "dateNoted": "2022-03-31", + "notes": "", + "parcelID": "20544", + "siteID": "17309", "siteRegistry": false }, { - "createdAt": "2019-01-14", - "completed": "2021-02-16", - "initiated": "2023-03-29", - "ministryContact": "DAVIS-LITTLE JODY", + "dateNoted": "2018-11-20", + "notes": "", + "parcelID": "18070", + "siteID": "15958", + "siteRegistry": true + } + ] + }, + { + "uuid": "f10587a1-cb26-4062-bf94-8fa9e67bb167", + "siteID": 17710, + "address": "7432 Dickens Cliffs", + "latitude": 50.2101, + "longitude": -131.7424, + "lastUpdated": "2020-04-25", + "city": "Erdmanport", + "region": "Kootenay", + "victoriaFile": "26250-20/7465", + "regionalFile": "N/A", + "parcelIDs": [ + 8684318, + 1021300, + 3862960, + 3797310, + 6699405 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2018-08-06", + "completed": "2017-05-01", + "initiated": "2017-01-04", + "ministryContact": "LESCH DEWAYNE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -18563,33 +25508,23 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false } ], "siteRegistry": true }, { - "createdAt": "2019-01-09", - "completed": "2023-07-11", - "initiated": "2020-01-02", - "ministryContact": "CONROY MELYSSA", + "createdAt": "2016-02-22", + "completed": "2017-09-24", + "initiated": "2019-03-31", + "ministryContact": "STROSIN WILBERT", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -18604,33 +25539,28 @@ }, { "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false + "role": "SUBMITTED BY", + "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false } ], "siteRegistry": false } ], "participants": [ - { - "name": "AMET, DOLOR SIT", - "endDate": "2023-07-14", - "startDate": "2015-05-17", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": false - }, { "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2016-06-06", - "startDate": "2019-08-13", + "endDate": "2023-02-07", + "startDate": "2019-01-29", "notes": "", "roles": [ "ORGANIZATION" @@ -18639,84 +25569,171 @@ }, { "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2018-12-28", - "startDate": "2021-11-02", + "endDate": "2017-02-14", + "startDate": "2022-05-29", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": true + } + ], + "suspectLandUses": [ + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2019-03-01 (described on Site Profile dated 2019-03-01)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "name": "IPSUM", - "endDate": "2021-03-31", - "startDate": "2018-12-16", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": false + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2020-12-26 (described on Site Profile dated 2020-12-26)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "name": "IPSUM", - "endDate": "2016-12-17", - "startDate": "2018-12-29", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": true + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2018-08-04 (described on Site Profile dated 2018-08-04)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2021-04-11 (described on Site Profile dated 2021-04-11)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], - "associatedSites": [ + "siteDisclosures": [ { - "dateNoted": "2017-01-29", - "notes": "", - "parcelID": "20609", - "siteID": "15917", - "siteRegistry": true + "siteRegistry": false, + "dateReceived": "2017-07-06", + "dateCompleted": "2014-11-03", + "dateEntered": "2019-06-17", + "dateRegistrar": "2015-04-19", + "dateLocalAuthorityReceived": "2016-11-18", + "summary": "Recusandae voluptatibus odio.\nAccusantium beatae labore exercitationem.", + "informationUsed": "Laborum voluptates assumenda.\nLabore accusamus possimus eveniet nihil quasi.\nTotam et mollitia officiis officia sit laudantium voluptatem modi illum.", + "pastOrPresentOrders": "Doloribus quam fuga.\nAliquid optio ipsam modi.\nDucimus quasi pariatur.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + } + ] + }, + { + "siteRegistry": true, + "dateReceived": "2022-11-19", + "dateCompleted": "2015-07-03", + "dateEntered": "2021-07-11", + "dateRegistrar": "2014-11-28", + "dateLocalAuthorityReceived": "2016-05-10", + "summary": "Nemo fuga et facere.", + "informationUsed": "Aliquam in doloremque ullam delectus accusantium quaerat optio sed.\nSunt minus perspiciatis minima.\nConsequuntur fuga facere veniam minus quia mollitia fugiat.", + "pastOrPresentOrders": "Repellendus quo aperiam voluptates ex ex recusandae.\nNulla necessitatibus ullam accusamus.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + } + ] + } + ], + "activityLog": [ + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "DENESIK VERNER", + "timestamp": "2016-02-10" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "TURNER REGAN", + "timestamp": "2017-10-24" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "BEIER CAESAR", + "timestamp": "2015-10-23" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "RATH RETHA", + "timestamp": "2023-04-24" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "SMITHAM-RENNER CONSTANTIN", + "timestamp": "2023-06-29" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "HILLS WESTLEY", + "timestamp": "2014-07-24" }, { - "dateNoted": "2016-01-19", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "KRIS KEENAN", + "timestamp": "2016-09-30" + } + ], + "associatedSites": [ + { + "dateNoted": "2018-05-22", "notes": "", - "parcelID": "20590", - "siteID": "18652", + "parcelID": "20166", + "siteID": "20609", "siteRegistry": true }, { - "dateNoted": "2020-03-20", + "dateNoted": "2018-12-16", "notes": "", - "parcelID": "18067", - "siteID": "20614", + "parcelID": "16427", + "siteID": "19203", "siteRegistry": false } ] }, { - "uuid": "5a2f75e8-0068-4b96-ae9f-013f2465eaf2", - "siteID": 16151, - "address": "344 Laurianne Groves", - "latitude": 56.454, - "longitude": -119.0864, - "lastUpdated": "2013-12-21", - "city": "Sarasota", - "region": "Thompson-Okanagan", - "victoriaFile": "26250-20/17992", + "uuid": "df075eff-21bb-4d50-ab6e-43bd821b3f1a", + "siteID": 15858, + "address": "2644 Name Grove", + "latitude": 57.0395, + "longitude": -120.3143, + "lastUpdated": "2022-12-18", + "city": "East Heberville", + "region": " North Coast", + "victoriaFile": "26250-20/6117", "regionalFile": "N/A", "parcelIDs": [ - 2286286, - 4997866, - 6519356, - 688451, - 8984948 + 5735980, + 4362040, + 3294419, + 3223910, + 7649566 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2019-11-19", - "completed": "2019-12-10", - "initiated": "2016-08-15", - "ministryContact": "CRIST OLAF", + "createdAt": "2014-04-26", + "completed": "2023-03-07", + "initiated": "2023-04-28", + "ministryContact": "THIEL RUPERT", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -18725,23 +25742,33 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2019-03-18", - "completed": "2017-01-10", - "initiated": "2017-05-20", - "ministryContact": "KREIGER OTTO", + "createdAt": "2023-04-07", + "completed": "2022-04-05", + "initiated": "2021-07-13", + "ministryContact": "HAHN DANIELA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -18751,32 +25778,37 @@ "notationParticipants": [ { "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", "siteRegistry": false } ], "siteRegistry": true }, { - "createdAt": "2014-05-08", - "completed": "2015-07-29", - "initiated": "2017-03-19", - "ministryContact": "HEATHCOTE MAIA", + "createdAt": "2022-01-14", + "completed": "2018-02-11", + "initiated": "2020-11-02", + "ministryContact": "EBERT VERNICE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -18785,33 +25817,28 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true } ], "siteRegistry": false }, { - "createdAt": "2019-04-13", - "completed": "2021-09-04", - "initiated": "2021-06-14", - "ministryContact": "WATERS LAWSON", + "createdAt": "2014-10-12", + "completed": "2020-08-29", + "initiated": "2018-11-04", + "ministryContact": "FRAMI CRISTOBAL", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -18820,23 +25847,38 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false } ], "siteRegistry": true }, { - "createdAt": "2020-05-02", - "completed": "2022-12-09", - "initiated": "2022-04-10", - "ministryContact": "PARKER LANCE", + "createdAt": "2019-12-21", + "completed": "2019-04-25", + "initiated": "2014-01-12", + "ministryContact": "HOWELL CHANEL", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -18849,11 +25891,6 @@ "role": "REQUESTED BY", "siteRegistry": false }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", @@ -18861,23 +25898,23 @@ }, { "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false } ], "participants": [ { "name": "IPSUM", - "endDate": "2022-10-04", - "startDate": "2016-03-16", + "endDate": "2018-06-11", + "startDate": "2016-10-28", "notes": "", "roles": [ "EMPLOYEE" @@ -18885,29 +25922,29 @@ "siteRegistry": true }, { - "name": "AMET, DOLOR SIT", - "endDate": "2018-11-19", - "startDate": "2015-03-03", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2016-04-14", + "startDate": "2014-02-26", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2021-09-13", - "startDate": "2016-08-22", + "endDate": "2016-08-19", + "startDate": "2022-12-07", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2015-06-28", - "startDate": "2023-03-19", + "endDate": "2022-12-22", + "startDate": "2021-10-29", "notes": "", "roles": [ "ORGANIZATION" @@ -18915,41 +25952,135 @@ "siteRegistry": false } ], + "suspectLandUses": [ + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2018-03-15 (described on Site Profile dated 2018-03-15)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2020-03-26 (described on Site Profile dated 2020-03-26)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + } + ], + "siteDisclosures": [ + { + "siteRegistry": false, + "dateReceived": "2018-05-23", + "dateCompleted": "2022-03-16", + "dateEntered": "2019-08-24", + "dateRegistrar": "2019-06-08", + "dateLocalAuthorityReceived": "2021-05-12", + "summary": "Fugiat magni atque.\nArchitecto tempore quam dolorem quo.\nVeniam consequatur labore voluptate.", + "informationUsed": "Alias maxime accusamus in nisi voluptatibus distinctio.\nCupiditate rerum dolorem.\nNostrum nesciunt aperiam id tempora ullam totam quia.\nVoluptate quisquam earum tempora tempora tempore.\nNatus sequi ipsum veritatis error nam nesciunt architecto quia temporibus.", + "pastOrPresentOrders": "Eum totam quod ab asperiores laudantium unde excepturi.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + } + ] + } + ], + "activityLog": [ + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "HAGENES HERMINIO", + "timestamp": "2023-02-21" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "WISOKY MARCELINA", + "timestamp": "2014-03-05" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "UPTON VIOLET", + "timestamp": "2015-12-03" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "SPINKA DARREL", + "timestamp": "2017-04-02" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "TOWNE VALLIE", + "timestamp": "2018-01-15" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "STRACKE MARION", + "timestamp": "2016-01-29" + } + ], "associatedSites": [ { - "dateNoted": "2020-12-26", + "dateNoted": "2019-10-04", "notes": "", - "parcelID": "15459", - "siteID": "15653", - "siteRegistry": true + "parcelID": "20736", + "siteID": "15864", + "siteRegistry": false + }, + { + "dateNoted": "2014-05-13", + "notes": "", + "parcelID": "18275", + "siteID": "18201", + "siteRegistry": false + }, + { + "dateNoted": "2022-03-25", + "notes": "", + "parcelID": "19990", + "siteID": "18995", + "siteRegistry": false } ] }, { - "uuid": "8e3d3b0f-4104-4db6-ba50-08d02b6b4114", - "siteID": 16986, - "address": "2915 Susana Islands", - "latitude": 54.1059, - "longitude": -126.6917, - "lastUpdated": "2019-09-12", - "city": "West Abner", - "region": "Thompson-Okanagan", - "victoriaFile": "26250-20/2646", + "uuid": "17dca8fc-9a14-43ca-a7e2-2721d9065fb3", + "siteID": 16870, + "address": "19599 Kirlin Pass", + "latitude": 56.1452, + "longitude": -138.6666, + "lastUpdated": "2019-08-09", + "city": "Port Axel", + "region": "Vancouver Island/Coast", + "victoriaFile": "26250-20/13719", "regionalFile": "N/A", "parcelIDs": [ - 8626352, - 4507356, - 7123068, - 9255723, - 3923623 + 7603238, + 7086742, + 3223111, + 2947736, + 8125197 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2020-11-16", - "completed": "2018-08-05", - "initiated": "2018-03-27", - "ministryContact": "GLEASON GABRIELLE", + "createdAt": "2023-09-14", + "completed": "2020-01-11", + "initiated": "2021-06-18", + "ministryContact": "KUTCH WILLA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -18957,19 +26088,9 @@ "" ], "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", "siteRegistry": false }, { @@ -18986,10 +26107,10 @@ "siteRegistry": false }, { - "createdAt": "2014-08-28", - "completed": "2018-10-23", - "initiated": "2015-08-13", - "ministryContact": "MORISSETTE MARKUS", + "createdAt": "2022-06-21", + "completed": "2014-07-17", + "initiated": "2019-05-10", + "ministryContact": "CORMIER CATHY", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -19000,26 +26121,71 @@ { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": true }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2021-04-04", - "completed": "2019-09-24", - "initiated": "2020-09-30", - "ministryContact": "COLLIER MAIA", + "createdAt": "2017-10-20", + "completed": "2017-01-26", + "initiated": "2016-12-08", + "ministryContact": "TORPHY ELMIRA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "createdAt": "2015-05-11", + "completed": "2016-09-23", + "initiated": "2020-06-02", + "ministryContact": "KULAS KENDALL", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -19027,15 +26193,60 @@ "" ], "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "createdAt": "2016-10-07", + "completed": "2018-07-28", + "initiated": "2015-06-17", + "ministryContact": "KUHN KEVEN", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false } ], "siteRegistry": false @@ -19043,19 +26254,19 @@ ], "participants": [ { - "name": "AMET, DOLOR SIT", - "endDate": "2015-06-09", - "startDate": "2017-09-18", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2022-12-06", + "startDate": "2015-12-09", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false }, { - "name": "AMET, DOLOR SIT", - "endDate": "2014-08-26", - "startDate": "2023-02-11", + "name": "IPSUM", + "endDate": "2023-06-27", + "startDate": "2023-09-20", "notes": "", "roles": [ "EMPLOYEE" @@ -19063,85 +26274,154 @@ "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2018-06-11", - "startDate": "2021-07-07", + "name": "AMET, DOLOR SIT", + "endDate": "2016-03-28", + "startDate": "2022-02-01", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2014-06-22", - "startDate": "2015-10-13", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2016-12-03", + "startDate": "2021-09-21", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": true + } + ], + "suspectLandUses": [ + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2015-09-22 (described on Site Profile dated 2015-09-22)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "name": "IPSUM", - "endDate": "2015-11-12", - "startDate": "2020-10-28", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": false + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2021-10-11 (described on Site Profile dated 2021-10-11)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + } + ], + "siteDisclosures": [ + { + "siteRegistry": false, + "dateReceived": "2014-01-25", + "dateCompleted": "2021-04-21", + "dateEntered": "2023-06-30", + "dateRegistrar": "2018-01-14", + "dateLocalAuthorityReceived": "2016-07-17", + "summary": "Suscipit nisi quis ut provident corrupti.\nPerferendis accusamus blanditiis distinctio.\nDeserunt laudantium sunt quo aspernatur repellat sapiente soluta.", + "informationUsed": "Atque optio commodi a reprehenderit molestiae libero natus reprehenderit laboriosam.\nQuis eveniet quos excepturi blanditiis quas earum quibusdam.\nEveniet itaque nemo maiores quos beatae commodi.\nTotam laboriosam repellendus ullam ea placeat numquam corrupti ut.", + "pastOrPresentOrders": "Eaque fuga enim non iste eaque ad.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + } + ] + } + ], + "activityLog": [ + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "LANGOSH ELENORA", + "timestamp": "2019-07-04" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "TOY ALPHONSO", + "timestamp": "2016-10-14" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "ANKUNDING ALEXANDRA", + "timestamp": "2023-06-25" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "WINTHEISER MACK", + "timestamp": "2014-11-23" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "KSHLERIN LEW", + "timestamp": "2019-11-13" } ], "associatedSites": [ { - "dateNoted": "2023-05-27", + "dateNoted": "2020-11-09", "notes": "", - "parcelID": "19352", - "siteID": "16814", - "siteRegistry": true + "parcelID": "19741", + "siteID": "15594", + "siteRegistry": false }, { - "dateNoted": "2014-06-01", + "dateNoted": "2017-05-09", "notes": "", - "parcelID": "17872", - "siteID": "17561", - "siteRegistry": true + "parcelID": "19223", + "siteID": "17936", + "siteRegistry": false }, { - "dateNoted": "2020-03-17", + "dateNoted": "2018-11-11", "notes": "", - "parcelID": "16160", - "siteID": "15443", - "siteRegistry": false + "parcelID": "20499", + "siteID": "17155", + "siteRegistry": true } ] }, { - "uuid": "597551c6-ad26-4b5e-8b17-4de3e2afb7e2", - "siteID": 20517, - "address": "672 Eda Mission", - "latitude": 54.103, - "longitude": -130.2468, - "lastUpdated": "2021-10-31", - "city": "West Bobbie", - "region": "Kootenay", - "victoriaFile": "26250-20/13394", + "uuid": "ce2b7f7a-b8cb-42f7-824c-3e2536199cf5", + "siteID": 16758, + "address": "98074 Larry Mills", + "latitude": 50.7224, + "longitude": -122.9476, + "lastUpdated": "2016-01-11", + "city": "Prosaccoborough", + "region": "Mainland/Southwest", + "victoriaFile": "26250-20/15334", "regionalFile": "N/A", "parcelIDs": [ - 1139724, - 9799529, - 2735581, - 1661611, - 1527164 + 6907315, + 4310479, + 6168555, + 1863941, + 3852588 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2016-04-30", - "completed": "2021-05-12", - "initiated": "2014-06-27", - "ministryContact": "VEUM MERLE", + "createdAt": "2020-03-17", + "completed": "2017-05-15", + "initiated": "2022-12-15", + "ministryContact": "ABSHIRE CORNELIUS", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -19149,11 +26429,6 @@ "" ], "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", @@ -19162,26 +26437,16 @@ { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2016-08-28", - "completed": "2014-04-08", - "initiated": "2017-08-06", - "ministryContact": "EMMERICH KEYSHAWN", + "createdAt": "2022-03-01", + "completed": "2015-08-06", + "initiated": "2014-02-09", + "ministryContact": "LEUSCHKE-MURPHY JOSEFINA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -19192,26 +26457,26 @@ { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2016-09-22", - "completed": "2023-07-13", - "initiated": "2015-07-20", - "ministryContact": "GULGOWSKI OSWALDO", + "createdAt": "2014-06-13", + "completed": "2019-01-05", + "initiated": "2013-12-06", + "ministryContact": "BRADTKE DARIUS", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -19220,23 +26485,23 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2023-07-20", - "completed": "2020-07-03", - "initiated": "2022-05-24", - "ministryContact": "HARRIS DESSIE", + "createdAt": "2023-09-17", + "completed": "2021-12-05", + "initiated": "2019-12-20", + "ministryContact": "WISOKY HYMAN", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -19245,121 +26510,248 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true } ], "participants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2018-01-11", - "startDate": "2023-09-16", + "name": "IPSUM", + "endDate": "2017-10-21", + "startDate": "2016-02-08", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false }, { - "name": "AMET, DOLOR SIT", - "endDate": "2015-12-28", - "startDate": "2022-02-11", + "name": "IPSUM", + "endDate": "2021-01-11", + "startDate": "2023-05-06", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2017-10-01", - "startDate": "2013-12-01", + "name": "IPSUM", + "endDate": "2017-10-26", + "startDate": "2023-04-27", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", - "endDate": "2021-11-23", - "startDate": "2018-11-14", + "endDate": "2013-10-29", + "startDate": "2015-10-03", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2017-12-16", - "startDate": "2017-01-05", + "name": "IPSUM", + "endDate": "2023-03-03", + "startDate": "2015-07-24", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false + } + ], + "suspectLandUses": [ + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2020-04-30 (described on Site Profile dated 2020-04-30)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2017-03-30 (described on Site Profile dated 2017-03-30)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2017-12-26 (described on Site Profile dated 2017-12-26)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2018-08-13 (described on Site Profile dated 2018-08-13)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + } + ], + "siteDisclosures": [ + { + "siteRegistry": true, + "dateReceived": "2020-07-12", + "dateCompleted": "2019-10-18", + "dateEntered": "2015-03-27", + "dateRegistrar": "2021-03-19", + "dateLocalAuthorityReceived": "2020-10-15", + "summary": "Dolor sint quas dolor vitae amet rem delectus.", + "informationUsed": "Dolor amet maiores beatae ipsa error ut expedita perferendis.\nIpsum nihil totam odio reiciendis laudantium illo facere fuga quam.\nAssumenda totam ut saepe quo ut cumque quod occaecati.\nIpsum aliquam repellat ratione odit voluptatum quidem.", + "pastOrPresentOrders": "Quos temporibus itaque qui nulla.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + } + ] + }, + { + "siteRegistry": false, + "dateReceived": "2014-06-01", + "dateCompleted": "2022-09-16", + "dateEntered": "2018-12-01", + "dateRegistrar": "2020-11-04", + "dateLocalAuthorityReceived": "2021-10-13", + "summary": "Sit accusantium necessitatibus error tempore optio sint iste non.", + "informationUsed": "Voluptas quos alias vero nulla quas occaecati.\nItaque quasi eius quod nulla at.\nUnde vel adipisci perspiciatis eum facilis voluptatem eaque totam veritatis.\nMolestias nulla magni magnam quisquam porro.\nSed distinctio vel repellendus.", + "pastOrPresentOrders": "Explicabo nesciunt asperiores asperiores.\nVoluptas provident exercitationem dolore voluptatibus esse iusto quasi quidem quo.\nDolorum necessitatibus natus quod.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + } + ] + } + ], + "activityLog": [ + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "ROBERTS MONTY", + "timestamp": "2019-03-16" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "BOTSFORD KATHLEEN", + "timestamp": "2019-04-30" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "MAYERT NEOMA", + "timestamp": "2016-05-26" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "OBERBRUNNER CARLETON", + "timestamp": "2015-01-31" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "HICKLE-GOLDNER GREYSON", + "timestamp": "2016-05-06" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "HERMAN-RUNOLFSSON MAGNOLIA", + "timestamp": "2015-12-30" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "MACGYVER EDWARDO", + "timestamp": "2019-05-31" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "CUMMINGS-KEEBLER NORENE", + "timestamp": "2020-07-17" } ], "associatedSites": [ { - "dateNoted": "2017-12-17", + "dateNoted": "2015-05-22", "notes": "", - "parcelID": "17476", - "siteID": "18753", + "parcelID": "15590", + "siteID": "17294", + "siteRegistry": true + }, + { + "dateNoted": "2021-04-20", + "notes": "", + "parcelID": "17723", + "siteID": "18067", "siteRegistry": true } ] }, { - "uuid": "64e0967f-c03c-4eec-975a-a4b5c5b9e79e", - "siteID": 18652, - "address": "897 Jimmy Locks", - "latitude": 56.4339, - "longitude": -123.9765, - "lastUpdated": "2019-08-30", - "city": "New Ayden", - "region": "Mainland/Southwest", - "victoriaFile": "26250-20/15259", + "uuid": "ce09dd26-a3e6-4fe4-af2e-69aed81c7ecb", + "siteID": 15461, + "address": "56350 Rempel Spur", + "latitude": 50.6836, + "longitude": -129.1594, + "lastUpdated": "2016-04-27", + "city": "Lake Marvin", + "region": "Cariboo", + "victoriaFile": "26250-20/11848", "regionalFile": "N/A", "parcelIDs": [ - 1280839, - 2548292, - 368425, - 4716930, - 5127896 + 715074, + 8430408, + 7960919, + 5567842, + 4232592 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2016-10-25", - "completed": "2022-02-20", - "initiated": "2014-01-06", - "ministryContact": "ROMAGUERA LULA", + "createdAt": "2020-12-17", + "completed": "2017-03-24", + "initiated": "2021-09-22", + "ministryContact": "KOHLER MAYMIE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -19375,16 +26767,31 @@ { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2020-03-17", - "completed": "2015-02-23", - "initiated": "2018-05-23", - "ministryContact": "LITTLE MARQUIS", + "createdAt": "2016-10-14", + "completed": "2020-10-07", + "initiated": "2020-07-05", + "ministryContact": "PURDY ALISA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -19393,12 +26800,12 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true } @@ -19406,10 +26813,10 @@ "siteRegistry": false }, { - "createdAt": "2015-02-27", - "completed": "2020-08-28", - "initiated": "2019-08-12", - "ministryContact": "HOPPE-CORKERY EDGAR", + "createdAt": "2019-01-08", + "completed": "2019-12-08", + "initiated": "2017-12-30", + "ministryContact": "BAUMBACH ADITYA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -19422,24 +26829,29 @@ "role": "REQUESTED BY", "siteRegistry": true }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", "siteRegistry": false } ], "siteRegistry": false }, { - "createdAt": "2019-11-12", - "completed": "2021-06-22", - "initiated": "2017-05-03", - "ministryContact": "RITCHIE GEO", + "createdAt": "2015-02-05", + "completed": "2020-06-22", + "initiated": "2022-04-18", + "ministryContact": "FRITSCH DARLENE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -19448,29 +26860,44 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false + "role": "SUBMITTED BY", + "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "createdAt": "2019-04-17", + "completed": "2020-01-07", + "initiated": "2021-04-18", + "ministryContact": "JENKINS ENRIQUE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false } ], "siteRegistry": true @@ -19478,9 +26905,9 @@ ], "participants": [ { - "name": "AMET, DOLOR SIT", - "endDate": "2019-12-26", - "startDate": "2023-09-11", + "name": "IPSUM", + "endDate": "2019-11-02", + "startDate": "2022-04-24", "notes": "", "roles": [ "EMPLOYEE" @@ -19488,196 +26915,207 @@ "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2016-05-15", - "startDate": "2021-02-28", + "name": "IPSUM", + "endDate": "2020-11-14", + "startDate": "2014-05-16", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": true }, { - "name": "IPSUM", - "endDate": "2017-06-15", - "startDate": "2013-12-10", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2016-06-08", + "startDate": "2015-10-20", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": false + "siteRegistry": true }, { "name": "IPSUM", - "endDate": "2018-03-28", - "startDate": "2016-04-29", + "endDate": "2019-06-24", + "startDate": "2014-04-26", "notes": "", "roles": [ "ORGANIZATION" ], "siteRegistry": true - } - ], - "associatedSites": [ + }, { - "dateNoted": "2018-05-26", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2021-05-28", + "startDate": "2015-10-05", "notes": "", - "parcelID": "18765", - "siteID": "19314", + "roles": [ + "EMPLOYEE" + ], "siteRegistry": false } - ] - }, - { - "uuid": "c4bade3a-a4a6-40a6-9d20-b24714789fda", - "siteID": 20223, - "address": "55795 Martina Harbor", - "latitude": 54.2217, - "longitude": -129.856, - "lastUpdated": "2022-02-03", - "city": "Virginia Beach", - "region": "Mainland/Southwest", - "victoriaFile": "26250-20/15570", - "regionalFile": "N/A", - "parcelIDs": [ - 9524181, - 5327206, - 6235025, - 8439421, - 303716 ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ + "suspectLandUses": [ { - "createdAt": "2013-10-23", - "completed": "2018-08-21", - "initiated": "2018-06-01", - "ministryContact": "RITCHIE STEVE", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2022-08-25 (described on Site Profile dated 2022-08-25)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2016-03-15 (described on Site Profile dated 2016-03-15)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2022-09-16 (described on Site Profile dated 2022-09-16)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2017-06-29 (described on Site Profile dated 2017-06-29)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + } + ], + "siteDisclosures": [ + { + "siteRegistry": false, + "dateReceived": "2017-11-17", + "dateCompleted": "2022-07-25", + "dateEntered": "2019-08-23", + "dateRegistrar": "2018-04-19", + "dateLocalAuthorityReceived": "2018-03-15", + "summary": "Quibusdam beatae sit quaerat nam.\nLaborum delectus culpa.\nNobis minus reiciendis provident iusto ex commodi maxime.", + "informationUsed": "Dolores nostrum consectetur esse similique assumenda.\nMagnam a commodi deleniti debitis.\nInventore cupiditate molestias nobis sint in.\nSuscipit reprehenderit laudantium laudantium.\nAd nostrum itaque quidem facere reprehenderit vel.", + "pastOrPresentOrders": "Dicta ipsum id reprehenderit laudantium soluta sequi quaerat minus libero.\nQuo quos molestiae reiciendis in quaerat asperiores.", + "commercialAndIndustrialPurposes": [ { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true } - ], - "siteRegistry": false + ] }, { - "createdAt": "2015-11-10", - "completed": "2023-02-12", - "initiated": "2017-06-06", - "ministryContact": "DICKINSON TERRY", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ + "siteRegistry": true, + "dateReceived": "2023-10-05", + "dateCompleted": "2020-04-09", + "dateEntered": "2016-08-25", + "dateRegistrar": "2018-11-24", + "dateLocalAuthorityReceived": "2016-07-23", + "summary": "Voluptas pariatur molestiae enim voluptatum ut.", + "informationUsed": "Eum excepturi unde quod ab.\nEx corrupti deserunt quod aliquam voluptatum vitae.\nQuam pariatur aut explicabo exercitationem commodi possimus.", + "pastOrPresentOrders": "Consequatur quam non.\nDistinctio aliquam possimus eius iusto voluptatem.", + "commercialAndIndustrialPurposes": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false } - ], - "siteRegistry": false + ] } ], - "participants": [ + "activityLog": [ { - "name": "AMET, DOLOR SIT", - "endDate": "2023-09-02", - "startDate": "2015-07-23", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": false + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "GRAHAM JOLIE", + "timestamp": "2022-01-07" }, { - "name": "IPSUM", - "endDate": "2017-07-03", - "startDate": "2017-08-06", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": false + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "SCHINNER OLAF", + "timestamp": "2022-04-12" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "STIEDEMANN LACEY", + "timestamp": "2018-05-11" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "KUB MATHIAS", + "timestamp": "2019-08-14" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "KUHLMAN IRMA", + "timestamp": "2018-02-10" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "KEEBLER ZITA", + "timestamp": "2018-09-25" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "KIEHN-FARRELL ADALINE", + "timestamp": "2020-06-07" } ], "associatedSites": [ { - "dateNoted": "2014-03-24", + "dateNoted": "2017-07-29", "notes": "", - "parcelID": "17437", - "siteID": "20692", - "siteRegistry": false + "parcelID": "19713", + "siteID": "19726", + "siteRegistry": true }, { - "dateNoted": "2018-09-14", + "dateNoted": "2020-07-07", "notes": "", - "parcelID": "19597", - "siteID": "18528", + "parcelID": "16307", + "siteID": "16863", "siteRegistry": true } ] }, { - "uuid": "fefcaef8-7071-4766-9b95-69f5dc076816", - "siteID": 17412, - "address": "56355 Mertie Summit", - "latitude": 55.6813, - "longitude": -128.5863, - "lastUpdated": "2020-01-29", - "city": "Lueland", + "uuid": "28680e8c-fe6e-4831-b26e-555594b180f0", + "siteID": 16617, + "address": "474 Bernhard Radial", + "latitude": 52.0004, + "longitude": -125.0877, + "lastUpdated": "2015-01-07", + "city": "Margarettfort", "region": "Kootenay", - "victoriaFile": "26250-20/10479", + "victoriaFile": "26250-20/19760", "regionalFile": "N/A", "parcelIDs": [ - 2758937, - 5162357, - 3736750, - 2791670, - 1901387 + 8210505, + 8295722, + 7193555, + 9864857, + 7095727 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2019-11-11", - "completed": "2018-01-09", - "initiated": "2018-05-04", - "ministryContact": "TRANTOW KENNEDY", + "createdAt": "2016-01-12", + "completed": "2021-06-12", + "initiated": "2016-12-02", + "ministryContact": "MACGYVER KHALID", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -19693,21 +27131,31 @@ { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true } ], "siteRegistry": true }, { - "createdAt": "2023-07-25", - "completed": "2017-08-07", - "initiated": "2018-04-25", - "ministryContact": "STREICH ALANNA", + "createdAt": "2021-01-19", + "completed": "2015-06-27", + "initiated": "2020-10-29", + "ministryContact": "O'KEEFE KAILEE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -19715,29 +27163,29 @@ "" ], "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": true } ], @@ -19746,9 +27194,9 @@ ], "participants": [ { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2014-05-26", - "startDate": "2019-07-31", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2021-12-24", + "startDate": "2019-06-03", "notes": "", "roles": [ "EMPLOYEE" @@ -19756,75 +27204,231 @@ "siteRegistry": false }, { - "name": "AMET, DOLOR SIT", - "endDate": "2021-04-17", - "startDate": "2018-01-11", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2019-10-14", + "startDate": "2019-12-02", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2013-10-09", - "startDate": "2016-03-22", + "name": "AMET, DOLOR SIT", + "endDate": "2019-09-17", + "startDate": "2014-08-30", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "name": "IPSUM", + "endDate": "2019-02-22", + "startDate": "2018-08-06", + "notes": "", + "roles": [ + "ORGANIZATION" ], "siteRegistry": false } ], + "suspectLandUses": [ + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2016-04-03 (described on Site Profile dated 2016-04-03)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2017-01-04 (described on Site Profile dated 2017-01-04)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2023-04-16 (described on Site Profile dated 2023-04-16)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2017-02-10 (described on Site Profile dated 2017-02-10)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + } + ], + "siteDisclosures": [ + { + "siteRegistry": false, + "dateReceived": "2019-02-16", + "dateCompleted": "2020-03-26", + "dateEntered": "2018-03-03", + "dateRegistrar": "2021-11-10", + "dateLocalAuthorityReceived": "2018-04-03", + "summary": "Nemo corrupti vero ab deserunt animi ut laudantium laudantium velit.\nIpsa error assumenda consequatur natus labore labore aliquam repellendus aliquid.\nOfficia sed asperiores.", + "informationUsed": "Sapiente repellat vitae necessitatibus iusto occaecati nobis dolore.\nTempora hic vero.\nCumque ea labore at corporis doloribus iste.\nCulpa laborum quidem ipsam temporibus hic omnis sed libero esse.\nAliquam dolor debitis cupiditate.", + "pastOrPresentOrders": "Nostrum unde corrupti ea numquam voluptatibus odit esse libero sit.\nMinima ipsa accusamus.\nFuga omnis aperiam hic nulla accusamus doloremque quas.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + } + ] + }, + { + "siteRegistry": true, + "dateReceived": "2021-05-17", + "dateCompleted": "2016-12-03", + "dateEntered": "2017-08-13", + "dateRegistrar": "2017-02-04", + "dateLocalAuthorityReceived": "2016-01-13", + "summary": "Reiciendis aut dignissimos et veritatis amet aut vel temporibus.\nTempore quod commodi consectetur est odio laudantium.", + "informationUsed": "Sed quod repellendus vero vitae cumque.\nEarum doloremque saepe odio porro enim expedita quisquam architecto nihil.\nLabore perspiciatis odio veritatis asperiores dolorem ab impedit.\nQuos beatae quis aut ad.", + "pastOrPresentOrders": "Provident perspiciatis magnam ut occaecati.\nNihil possimus ut modi architecto.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + } + ] + } + ], + "activityLog": [ + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "BODE EDYTH", + "timestamp": "2020-06-18" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "HACKETT KARINA", + "timestamp": "2016-10-16" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "DIBBERT MARCELINA", + "timestamp": "2022-07-15" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "TOWNE SILAS", + "timestamp": "2020-01-31" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "RAU BRENNA", + "timestamp": "2014-01-30" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "HANSEN TRINITY", + "timestamp": "2015-10-22" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "SANFORD DANIELLA", + "timestamp": "2016-12-28" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "PADBERG ASHLY", + "timestamp": "2014-02-11" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "SPENCER ADA", + "timestamp": "2023-08-28" + } + ], "associatedSites": [ { - "dateNoted": "2016-04-14", + "dateNoted": "2022-06-17", "notes": "", - "parcelID": "20686", - "siteID": "15273", + "parcelID": "18993", + "siteID": "16920", "siteRegistry": true }, { - "dateNoted": "2022-11-26", + "dateNoted": "2017-02-02", "notes": "", - "parcelID": "20551", - "siteID": "18274", - "siteRegistry": false + "parcelID": "19358", + "siteID": "16209", + "siteRegistry": true }, { - "dateNoted": "2022-04-05", + "dateNoted": "2023-08-31", "notes": "", - "parcelID": "18322", - "siteID": "17151", - "siteRegistry": true + "parcelID": "16457", + "siteID": "18123", + "siteRegistry": false } ] }, { - "uuid": "2a1b2c4b-37e1-4f63-bf93-3230e0705ffa", - "siteID": 17561, - "address": "139 Abelardo Valleys", - "latitude": 49.2302, - "longitude": -133.2327, - "lastUpdated": "2021-09-13", - "city": "Donnyside", - "region": "Thompson-Okanagan", - "victoriaFile": "26250-20/14591", + "uuid": "33a4d128-870e-44d7-9a26-a6e9a6b9b45d", + "siteID": 20521, + "address": "34777 Waldo Fields", + "latitude": 52.1075, + "longitude": -136.7756, + "lastUpdated": "2016-07-07", + "city": "Fort Joanyworth", + "region": "Cariboo", + "victoriaFile": "26250-20/12099", "regionalFile": "N/A", "parcelIDs": [ - 891982, - 7917664, - 5529895, - 5249429, - 3952803 + 969690, + 6820894, + 6454869, + 1049186, + 713349 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2021-02-13", - "completed": "2020-03-23", - "initiated": "2019-06-21", - "ministryContact": "BEAHAN MARJOLAINE", + "createdAt": "2015-08-11", + "completed": "2023-10-04", + "initiated": "2018-09-17", + "ministryContact": "ROLFSON ALEJANDRIN", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -19833,10 +27437,40 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "createdAt": "2015-11-30", + "completed": "2017-03-15", + "initiated": "2021-08-21", + "ministryContact": "ROBEL MARCO", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", @@ -19849,22 +27483,22 @@ }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true + "role": "REQUESTED BY", + "siteRegistry": false } ], "siteRegistry": true }, { - "createdAt": "2016-03-15", - "completed": "2019-02-16", - "initiated": "2020-10-04", - "ministryContact": "HODKIEWICZ ARNALDO", + "createdAt": "2015-08-09", + "completed": "2019-10-16", + "initiated": "2022-08-23", + "ministryContact": "BOTSFORD DORIAN", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -19878,23 +27512,33 @@ "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true } ], "siteRegistry": false }, { - "createdAt": "2015-08-06", - "completed": "2013-11-10", - "initiated": "2015-08-30", - "ministryContact": "HODKIEWICZ CORA", + "createdAt": "2019-11-01", + "completed": "2022-05-16", + "initiated": "2015-12-18", + "ministryContact": "RUECKER NORA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -19902,6 +27546,11 @@ "" ], "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", @@ -19911,15 +27560,20 @@ "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false } ], "siteRegistry": false }, { - "createdAt": "2020-09-05", - "completed": "2014-05-27", - "initiated": "2021-01-28", - "ministryContact": "MCKENZIE KELTON", + "createdAt": "2015-09-15", + "completed": "2022-10-01", + "initiated": "2017-03-02", + "ministryContact": "HEGMANN JUDAH", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -19928,245 +27582,199 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", "siteRegistry": true }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, { "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true } ], "participants": [ { - "name": "AMET, DOLOR SIT", - "endDate": "2022-01-26", - "startDate": "2017-12-21", + "name": "IPSUM", + "endDate": "2014-01-12", + "startDate": "2015-03-07", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": false }, { "name": "IPSUM", - "endDate": "2014-12-17", - "startDate": "2017-04-20", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": true - }, - { - "name": "AMET, DOLOR SIT", - "endDate": "2016-06-17", - "startDate": "2022-04-23", + "endDate": "2022-03-09", + "startDate": "2015-05-25", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": true } ], - "associatedSites": [ + "suspectLandUses": [ { - "dateNoted": "2016-11-20", - "notes": "", - "parcelID": "17665", - "siteID": "19854", - "siteRegistry": true + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2019-09-18 (described on Site Profile dated 2019-09-18)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "dateNoted": "2022-10-17", - "notes": "", - "parcelID": "19629", - "siteID": "15577", - "siteRegistry": false + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2017-12-16 (described on Site Profile dated 2017-12-16)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "dateNoted": "2016-11-21", - "notes": "", - "parcelID": "19324", - "siteID": "17036", - "siteRegistry": true + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2020-06-09 (described on Site Profile dated 2020-06-09)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2022-11-14 (described on Site Profile dated 2022-11-14)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } - ] - }, - { - "uuid": "41408ef0-dc4b-4703-8206-af38b0d28f1f", - "siteID": 17164, - "address": "1934 Abel Light", - "latitude": 54.2901, - "longitude": -127.9394, - "lastUpdated": "2020-02-28", - "city": "Fort Lamarfurt", - "region": "Thompson-Okanagan", - "victoriaFile": "26250-20/16622", - "regionalFile": "N/A", - "parcelIDs": [ - 1731151, - 6955204, - 3342106, - 4929251, - 4825325 ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ + "siteDisclosures": [ { - "createdAt": "2019-07-04", - "completed": "2020-08-02", - "initiated": "2017-04-16", - "ministryContact": "ARMSTRONG-MEDHURST JO", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, + "siteRegistry": true, + "dateReceived": "2020-10-08", + "dateCompleted": "2018-05-31", + "dateEntered": "2015-06-25", + "dateRegistrar": "2019-08-07", + "dateLocalAuthorityReceived": "2018-03-16", + "summary": "Velit doloremque dolores.\nMagnam amet ab.\nVoluptate et excepturi ab aliquam facilis non animi.", + "informationUsed": "Maiores voluptatibus distinctio laboriosam rerum labore quam dignissimos quam.\nEnim fuga optio unde.\nNatus rem nam ullam atque vero quasi repellat.", + "pastOrPresentOrders": "Quibusdam suscipit non aspernatur cum eveniet ut cumque natus.\nIn veritatis inventore aut accusamus praesentium.", + "commercialAndIndustrialPurposes": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true } - ], - "siteRegistry": true + ] }, { - "createdAt": "2020-01-22", - "completed": "2022-01-04", - "initiated": "2014-08-01", - "ministryContact": "JONES LIBBY", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ + "siteRegistry": false, + "dateReceived": "2019-07-27", + "dateCompleted": "2021-01-08", + "dateEntered": "2022-05-02", + "dateRegistrar": "2023-05-28", + "dateLocalAuthorityReceived": "2016-09-19", + "summary": "Corrupti voluptatem enim repellendus assumenda tenetur.", + "informationUsed": "Hic iure magnam voluptatum officia ipsam expedita quis ipsam perspiciatis.\nMaxime consectetur maiores dicta eligendi.\nEarum saepe tempore perferendis eveniet.", + "pastOrPresentOrders": "Eius doloremque dolorem quaerat porro.", + "commercialAndIndustrialPurposes": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false } - ], - "siteRegistry": false + ] } ], - "participants": [ + "activityLog": [ { - "name": "AMET, DOLOR SIT", - "endDate": "2017-06-03", - "startDate": "2017-06-13", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": true + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "NADER DOUG", + "timestamp": "2013-11-09" }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2015-07-02", - "startDate": "2016-06-09", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": false + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "EFFERTZ MICAH", + "timestamp": "2019-04-12" }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2019-02-13", - "startDate": "2019-09-23", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": true + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "POUROS UBALDO", + "timestamp": "2017-06-25" }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2019-02-22", - "startDate": "2014-10-28", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": false + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "BLICK JAYDE", + "timestamp": "2022-05-05" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "SMITHAM BERNICE", + "timestamp": "2022-03-14" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "JOHNSON ALIA", + "timestamp": "2020-02-04" } ], "associatedSites": [ { - "dateNoted": "2016-05-03", + "dateNoted": "2020-11-06", "notes": "", - "parcelID": "18299", - "siteID": "17317", + "parcelID": "16854", + "siteID": "19075", "siteRegistry": false - }, - { - "dateNoted": "2021-12-01", - "notes": "", - "parcelID": "17593", - "siteID": "19092", - "siteRegistry": true } ] }, { - "uuid": "a540aa5d-92e1-43d8-8c88-853d13c79647", - "siteID": 17322, - "address": "56826 Jeffry Path", - "latitude": 58.8625, - "longitude": -135.1038, - "lastUpdated": "2021-02-02", - "city": "Noblesville", - "region": "Thompson-Okanagan", - "victoriaFile": "26250-20/18651", + "uuid": "281abc88-01dc-45ea-bd84-52ce3a1b5ceb", + "siteID": 19157, + "address": "35974 Breitenberg Mountain", + "latitude": 52.8155, + "longitude": -126.8254, + "lastUpdated": "2020-08-02", + "city": "Fort Myabury", + "region": "Cariboo", + "victoriaFile": "26250-20/10662", "regionalFile": "N/A", "parcelIDs": [ - 6545626, - 4726093, - 5322043, - 9113661, - 1894520 + 8281998, + 5312929, + 881947, + 1125670, + 2382749 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2018-03-10", - "completed": "2017-11-10", - "initiated": "2019-05-14", - "ministryContact": "BROWN KHALIL", + "createdAt": "2014-08-22", + "completed": "2017-09-26", + "initiated": "2015-12-29", + "ministryContact": "CONROY COLTON", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -20176,27 +27784,22 @@ "notationParticipants": [ { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false } ], "siteRegistry": true }, { - "createdAt": "2023-07-17", - "completed": "2021-10-10", - "initiated": "2013-10-14", - "ministryContact": "BARTOLETTI GRANVILLE", + "createdAt": "2015-09-26", + "completed": "2021-04-06", + "initiated": "2018-09-12", + "ministryContact": "LANGOSH JODIE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -20210,33 +27813,33 @@ "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true + "role": "REQUESTED BY", + "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2018-11-17", - "completed": "2014-03-26", - "initiated": "2022-04-25", - "ministryContact": "KRAJCIK NATHEN", + "createdAt": "2018-06-07", + "completed": "2018-08-23", + "initiated": "2016-07-05", + "ministryContact": "BORER JULIUS", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -20244,6 +27847,11 @@ "" ], "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", @@ -20252,21 +27860,26 @@ { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2021-09-08", - "completed": "2017-07-07", - "initiated": "2023-01-04", - "ministryContact": "SPENCER RAY", + "createdAt": "2017-09-05", + "completed": "2015-12-05", + "initiated": "2022-06-17", + "ministryContact": "KUNZE MAKENNA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -20276,11 +27889,11 @@ "notationParticipants": [ { "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false + "role": "REQUESTED BY", + "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false }, @@ -20290,13 +27903,13 @@ "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2013-10-27", - "completed": "2023-04-27", - "initiated": "2016-06-21", - "ministryContact": "BECHTELAR NORA", + "createdAt": "2023-07-22", + "completed": "2020-03-05", + "initiated": "2015-07-05", + "ministryContact": "HEIDENREICH GREG", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -20304,20 +27917,15 @@ "" ], "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false } ], "siteRegistry": false @@ -20325,9 +27933,9 @@ ], "participants": [ { - "name": "IPSUM", - "endDate": "2015-08-27", - "startDate": "2021-05-06", + "name": "AMET, DOLOR SIT", + "endDate": "2021-01-04", + "startDate": "2019-02-14", "notes": "", "roles": [ "ORGANIZATION" @@ -20335,68 +27943,177 @@ "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2020-11-18", - "startDate": "2015-11-05", + "name": "IPSUM", + "endDate": "2015-11-21", + "startDate": "2015-08-24", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": false + } + ], + "suspectLandUses": [ + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2020-11-08 (described on Site Profile dated 2020-11-08)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2017-01-28", - "startDate": "2021-11-20", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": true + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2016-10-15 (described on Site Profile dated 2016-10-15)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2023-02-07 (described on Site Profile dated 2023-02-07)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + } + ], + "siteDisclosures": [ + { + "siteRegistry": true, + "dateReceived": "2022-01-24", + "dateCompleted": "2018-11-02", + "dateEntered": "2020-04-04", + "dateRegistrar": "2016-04-29", + "dateLocalAuthorityReceived": "2019-04-10", + "summary": "Eum neque harum unde quod.\nQuibusdam omnis quisquam.", + "informationUsed": "Veritatis voluptates perspiciatis autem qui.\nCulpa veniam molestiae dicta provident.\nQuos id nesciunt magnam ad in.", + "pastOrPresentOrders": "Blanditiis eveniet animi ad soluta magni illo ullam.\nPraesentium minima delectus aspernatur beatae perspiciatis nesciunt vel.\nDolorem dolorem provident fugiat quia assumenda voluptatem ad magnam.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + } + ] + }, + { + "siteRegistry": true, + "dateReceived": "2017-08-22", + "dateCompleted": "2020-09-30", + "dateEntered": "2014-07-05", + "dateRegistrar": "2023-09-17", + "dateLocalAuthorityReceived": "2015-07-03", + "summary": "Distinctio sit sit vitae doloribus eligendi perspiciatis tempora culpa quidem.\nEius ab sunt alias quos nam minima et.", + "informationUsed": "Voluptatibus impedit asperiores expedita sapiente enim esse quis.\nNatus temporibus quisquam quia dolorem velit voluptates ullam.\nMinus ipsam ab voluptatem aperiam nihil.\nEt hic possimus qui atque quas.\nItaque rem at quaerat exercitationem nemo.", + "pastOrPresentOrders": "Deleniti aliquam nisi vitae ad itaque dolorem dignissimos porro sit.\nProvident consequatur nesciunt.\nEveniet accusantium consectetur porro dicta.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + } + ] + } + ], + "activityLog": [ + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "ZIEME MARQUISE", + "timestamp": "2020-10-15" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "FAY KIRSTEN", + "timestamp": "2021-09-07" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "HAAG DENA", + "timestamp": "2017-10-09" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "ABBOTT DAMION", + "timestamp": "2017-12-12" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "BECHTELAR ODESSA", + "timestamp": "2018-06-01" } ], "associatedSites": [ { - "dateNoted": "2020-07-02", + "dateNoted": "2020-07-01", "notes": "", - "parcelID": "20566", - "siteID": "15212", + "parcelID": "20573", + "siteID": "20789", "siteRegistry": false }, { - "dateNoted": "2016-05-31", + "dateNoted": "2022-09-13", + "notes": "", + "parcelID": "16503", + "siteID": "17846", + "siteRegistry": false + }, + { + "dateNoted": "2013-11-07", "notes": "", - "parcelID": "17256", - "siteID": "19457", + "parcelID": "16300", + "siteID": "16740", "siteRegistry": false } ] }, { - "uuid": "790b3fc9-668c-48eb-bdd3-721c0a526c65", - "siteID": 16487, - "address": "704 Gina Avenue", - "latitude": 54.1093, - "longitude": -131.7961, - "lastUpdated": "2022-01-01", - "city": "Kannapolis", + "uuid": "2e206365-af4b-4a5b-b794-4c16bc1f94fa", + "siteID": 16209, + "address": "102 Gilda Highway", + "latitude": 58.2959, + "longitude": -127.9798, + "lastUpdated": "2014-12-24", + "city": "Gudrunport", "region": "Vancouver Island/Coast", - "victoriaFile": "26250-20/4907", + "victoriaFile": "26250-20/1507", "regionalFile": "N/A", "parcelIDs": [ - 2021547, - 3584107, - 9244753, - 8659329, - 7512143 + 1334218, + 2804903, + 9363916, + 1577929, + 7554358 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2016-12-26", - "completed": "2015-02-21", - "initiated": "2014-12-31", - "ministryContact": "OLSON LEXI", + "createdAt": "2018-07-21", + "completed": "2019-01-23", + "initiated": "2014-09-24", + "ministryContact": "HERMAN PATIENCE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -20407,22 +28124,17 @@ { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true + "role": "SUBMITTED BY", + "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", @@ -20433,10 +28145,10 @@ "siteRegistry": false }, { - "createdAt": "2018-01-01", - "completed": "2016-02-10", - "initiated": "2019-10-06", - "ministryContact": "D'AMORE JEREMY", + "createdAt": "2018-01-24", + "completed": "2018-06-30", + "initiated": "2016-03-01", + "ministryContact": "JOHNSTON STUART", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -20446,7 +28158,12 @@ "notationParticipants": [ { "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": false }, { @@ -20462,21 +28179,16 @@ { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2017-12-06", - "completed": "2020-01-18", - "initiated": "2014-05-19", - "ministryContact": "BERNIER GRANVILLE", + "createdAt": "2018-03-09", + "completed": "2018-01-08", + "initiated": "2023-06-29", + "ministryContact": "HILLL ELOISA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -20484,11 +28196,6 @@ "" ], "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", @@ -20496,18 +28203,33 @@ }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false - }, + } + ], + "siteRegistry": true + }, + { + "createdAt": "2014-03-19", + "completed": "2022-04-18", + "initiated": "2016-05-11", + "ministryContact": "GUSIKOWSKI SHAYNE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true } ], "siteRegistry": false @@ -20516,247 +28238,194 @@ "participants": [ { "name": "SHELL CANADA PRODUCTS", - "endDate": "2021-10-07", - "startDate": "2015-02-10", + "endDate": "2017-07-04", + "startDate": "2020-07-23", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true }, { - "name": "AMET, DOLOR SIT", - "endDate": "2023-07-07", - "startDate": "2020-03-30", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2017-11-25", + "startDate": "2016-12-09", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2015-01-17", - "startDate": "2017-12-28", + "name": "IPSUM", + "endDate": "2017-09-13", + "startDate": "2022-03-24", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": true + "siteRegistry": false }, { - "name": "AMET, DOLOR SIT", - "endDate": "2020-10-26", - "startDate": "2016-07-26", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2018-11-24", + "startDate": "2015-03-03", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2021-09-04", - "startDate": "2015-02-09", + "endDate": "2018-02-14", + "startDate": "2020-04-10", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false } ], - "associatedSites": [ + "suspectLandUses": [ { - "dateNoted": "2021-11-15", - "notes": "", - "parcelID": "18411", - "siteID": "15375", - "siteRegistry": false + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2018-05-06 (described on Site Profile dated 2018-05-06)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "dateNoted": "2022-11-16", - "notes": "", - "parcelID": "20896", - "siteID": "17180", - "siteRegistry": false + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2023-05-25 (described on Site Profile dated 2023-05-25)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "dateNoted": "2015-12-15", - "notes": "", - "parcelID": "17879", - "siteID": "19728", - "siteRegistry": false + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2022-06-06 (described on Site Profile dated 2022-06-06)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } - ] - }, - { - "uuid": "d1c1687b-4700-488d-ae1e-39926baaad06", - "siteID": 15775, - "address": "214 Bret Ways", - "latitude": 51.1366, - "longitude": -132.4484, - "lastUpdated": "2017-09-08", - "city": "Kennaboro", - "region": "Vancouver Island/Coast", - "victoriaFile": "26250-20/13621", - "regionalFile": "N/A", - "parcelIDs": [ - 1319317, - 7440319, - 603380, - 4097870, - 9675862 ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ + "siteDisclosures": [ { - "createdAt": "2017-12-08", - "completed": "2017-04-17", - "initiated": "2022-12-21", - "ministryContact": "FRANEY ROY", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ + "siteRegistry": false, + "dateReceived": "2016-07-26", + "dateCompleted": "2021-07-21", + "dateEntered": "2022-02-14", + "dateRegistrar": "2023-06-23", + "dateLocalAuthorityReceived": "2015-08-14", + "summary": "Aliquam voluptatibus ipsam recusandae dolorem rerum cumque ab.\nSaepe inventore laboriosam beatae similique iure quo laudantium ad.\nDolorum optio saepe voluptas perferendis.", + "informationUsed": "Tempora natus est omnis mollitia.\nIpsum ad fugit.\nSoluta enim quibusdam laborum molestias praesentium ex.\nQuod soluta cupiditate ea consequatur magni.", + "pastOrPresentOrders": "Excepturi dignissimos perspiciatis perspiciatis iure nisi alias excepturi.\nSed totam maxime deserunt at totam eos vero laborum.", + "commercialAndIndustrialPurposes": [ { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - } - ], - "siteRegistry": true - }, - { - "createdAt": "2017-02-21", - "completed": "2022-12-20", - "initiated": "2022-03-16", - "ministryContact": "SENGER OSWALD", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false } - ], - "siteRegistry": false + ] } ], - "participants": [ + "activityLog": [ { - "name": "IPSUM", - "endDate": "2022-08-04", - "startDate": "2021-07-26", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": false + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "DENESIK HAILEY", + "timestamp": "2013-11-25" }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2021-03-04", - "startDate": "2014-03-25", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": true + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "ZBONCAK ALFONSO", + "timestamp": "2013-10-18" }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2021-02-06", - "startDate": "2021-07-24", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": true + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "PROHASKA BART", + "timestamp": "2019-12-09" }, { - "name": "IPSUM", - "endDate": "2016-01-09", - "startDate": "2017-10-15", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": false + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "SCHMIDT CONCEPCION", + "timestamp": "2016-09-04" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "BAHRINGER REUBEN", + "timestamp": "2019-07-03" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "TREMBLAY GERALDINE", + "timestamp": "2015-02-22" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "FISHER JENNIFER", + "timestamp": "2020-02-24" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "ONDRICKA MELYNA", + "timestamp": "2018-11-09" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "DANIEL-MERTZ EDUARDO", + "timestamp": "2014-10-09" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "CARTWRIGHT ANGELO", + "timestamp": "2021-04-19" } ], "associatedSites": [ { - "dateNoted": "2015-02-17", + "dateNoted": "2022-07-15", "notes": "", - "parcelID": "18238", - "siteID": "15919", - "siteRegistry": true + "parcelID": "18584", + "siteID": "20418", + "siteRegistry": false } ] }, { - "uuid": "f2d07011-6abd-419c-bdb5-44a19807fb83", - "siteID": 19092, - "address": "756 Ratke Hills", - "latitude": 54.3936, - "longitude": -131.5761, - "lastUpdated": "2015-09-11", - "city": "North Eusebio", - "region": "Thompson-Okanagan", - "victoriaFile": "26250-20/3265", + "uuid": "d39683b1-a4af-4d2b-9070-08c9010930db", + "siteID": 15594, + "address": "753 Johns Circles", + "latitude": 49.1944, + "longitude": -136.8007, + "lastUpdated": "2014-12-17", + "city": "Kayamouth", + "region": "Kootenay", + "victoriaFile": "26250-20/12981", "regionalFile": "N/A", "parcelIDs": [ - 6192270, - 3846388, - 8602072, - 8036326, - 9693418 + 5562021, + 6151212, + 2196271, + 3715649, + 2558042 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2015-03-17", - "completed": "2014-10-21", - "initiated": "2018-10-07", - "ministryContact": "GERHOLD WANDA", + "createdAt": "2021-06-29", + "completed": "2014-04-01", + "initiated": "2020-02-21", + "ministryContact": "DICKENS BREANNA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -20765,30 +28434,10 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": true }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - } - ], - "siteRegistry": true - }, - { - "createdAt": "2016-11-29", - "completed": "2018-03-29", - "initiated": "2017-03-28", - "ministryContact": "HOPPE KENTON", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", @@ -20796,22 +28445,22 @@ }, { "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false + "role": "SUBMITTED BY", + "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false } ], "siteRegistry": false }, { - "createdAt": "2018-06-11", - "completed": "2016-07-02", - "initiated": "2022-06-04", - "ministryContact": "DIBBERT ROBIN", + "createdAt": "2016-07-11", + "completed": "2018-03-19", + "initiated": "2017-12-12", + "ministryContact": "FEEST DOUGLAS", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -20822,36 +28471,36 @@ { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false + "role": "REQUESTED BY", + "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false } ], "siteRegistry": false }, { - "createdAt": "2020-02-23", - "completed": "2022-06-02", - "initiated": "2015-05-13", - "ministryContact": "LABADIE LAVADA", + "createdAt": "2021-06-03", + "completed": "2021-05-12", + "initiated": "2020-07-26", + "ministryContact": "KOSS IMA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -20861,47 +28510,12 @@ "notationParticipants": [ { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - } - ], - "siteRegistry": true - }, - { - "createdAt": "2019-07-05", - "completed": "2020-05-03", - "initiated": "2017-02-07", - "ministryContact": "LARKIN ALISHA", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false } ], @@ -20911,28 +28525,18 @@ "participants": [ { "name": "IPSUM", - "endDate": "2017-11-09", - "startDate": "2023-05-13", + "endDate": "2015-01-04", + "startDate": "2023-02-10", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2021-06-30", - "startDate": "2014-02-28", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": false + "siteRegistry": true }, { - "name": "AMET, DOLOR SIT", - "endDate": "2022-07-04", - "startDate": "2016-07-17", + "name": "IPSUM", + "endDate": "2015-02-02", + "startDate": "2017-05-16", "notes": "", "roles": [ "ORGANIZATION" @@ -20941,8 +28545,8 @@ }, { "name": "IPSUM", - "endDate": "2014-12-23", - "startDate": "2017-08-19", + "endDate": "2023-05-15", + "startDate": "2015-03-30", "notes": "", "roles": [ "EMPLOYEE" @@ -20950,41 +28554,172 @@ "siteRegistry": true } ], + "suspectLandUses": [ + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2022-02-11 (described on Site Profile dated 2022-02-11)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2014-11-25 (described on Site Profile dated 2014-11-25)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2019-10-17 (described on Site Profile dated 2019-10-17)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2022-08-07 (described on Site Profile dated 2022-08-07)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2020-04-15 (described on Site Profile dated 2020-04-15)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + } + ], + "siteDisclosures": [ + { + "siteRegistry": true, + "dateReceived": "2023-10-03", + "dateCompleted": "2019-11-11", + "dateEntered": "2015-01-07", + "dateRegistrar": "2017-03-05", + "dateLocalAuthorityReceived": "2013-12-28", + "summary": "Eius sed temporibus vitae.\nConsectetur neque vel sapiente in tenetur incidunt.\nBeatae repellat magnam eaque.", + "informationUsed": "Enim officia sapiente natus omnis voluptatem ratione.\nAt explicabo earum tenetur vitae.\nPerspiciatis esse minus nulla.\nTotam possimus expedita ad ullam assumenda eligendi iste doloremque cum.", + "pastOrPresentOrders": "Distinctio placeat eos quam deserunt doloremque dolorum pariatur.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + } + ] + } + ], + "activityLog": [ + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "FAY FELIX", + "timestamp": "2022-04-19" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "LYNCH KOLBY", + "timestamp": "2019-10-27" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "OBERBRUNNER HILLARY", + "timestamp": "2020-02-11" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "ULLRICH IKE", + "timestamp": "2014-04-21" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "SCHOEN CHRISTIANA", + "timestamp": "2017-03-18" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "BERGE SOPHIE", + "timestamp": "2018-07-20" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "KOELPIN-NITZSCHE TIARA", + "timestamp": "2016-03-14" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "LINDGREN RIGOBERTO", + "timestamp": "2016-03-01" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "DONNELLY AMOS", + "timestamp": "2022-01-30" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "RUNOLFSDOTTIR JOANIE", + "timestamp": "2019-08-01" + } + ], "associatedSites": [ { - "dateNoted": "2022-09-24", + "dateNoted": "2016-04-03", "notes": "", - "parcelID": "20151", - "siteID": "18771", - "siteRegistry": false + "parcelID": "17422", + "siteID": "17224", + "siteRegistry": true + }, + { + "dateNoted": "2016-10-26", + "notes": "", + "parcelID": "15450", + "siteID": "19475", + "siteRegistry": true } ] }, { - "uuid": "12fe2001-3c28-4cd6-abd0-05e979c25430", - "siteID": 18528, - "address": "67153 Leonel Meadows", - "latitude": 54.3645, - "longitude": -123.1792, - "lastUpdated": "2021-04-11", - "city": "Dockstead", - "region": "Mainland/Southwest", - "victoriaFile": "26250-20/7833", + "uuid": "48584b7f-20c1-425d-b879-5f7f27ab0d90", + "siteID": 16386, + "address": "49292 Parisian Green", + "latitude": 56.1009, + "longitude": -129.8877, + "lastUpdated": "2023-01-28", + "city": "Anaheim", + "region": "Thompson-Okanagan", + "victoriaFile": "26250-20/4451", "regionalFile": "N/A", "parcelIDs": [ - 5137809, - 5877336, - 2673564, - 7821967, - 9276244 + 1180891, + 4530042, + 4657048, + 8550135, + 748547 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2023-03-15", - "completed": "2018-01-09", - "initiated": "2019-12-11", - "ministryContact": "KOZEY TIANA", + "createdAt": "2017-08-22", + "completed": "2019-07-24", + "initiated": "2017-11-07", + "ministryContact": "MEDHURST LESLY", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -20993,7 +28728,7 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false }, @@ -21002,6 +28737,11 @@ "role": "REQUESTED BY", "siteRegistry": false }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", @@ -21011,10 +28751,10 @@ "siteRegistry": true }, { - "createdAt": "2014-09-26", - "completed": "2016-02-24", - "initiated": "2023-05-29", - "ministryContact": "REMPEL KALEY", + "createdAt": "2015-05-09", + "completed": "2016-01-01", + "initiated": "2016-10-28", + "ministryContact": "WILLIAMSON ANGEL", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -21023,17 +28763,27 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": false }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true } @@ -21041,10 +28791,10 @@ "siteRegistry": false }, { - "createdAt": "2022-01-31", - "completed": "2020-12-31", - "initiated": "2022-04-12", - "ministryContact": "JONES BAYLEE", + "createdAt": "2014-09-10", + "completed": "2014-05-15", + "initiated": "2021-12-31", + "ministryContact": "BREKKE ADAH", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -21054,22 +28804,27 @@ "notationParticipants": [ { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2020-03-21", - "completed": "2013-10-20", - "initiated": "2021-08-07", - "ministryContact": "GRANT DAMIAN", + "createdAt": "2014-06-05", + "completed": "2018-10-20", + "initiated": "2018-09-05", + "ministryContact": "JONES ELLIS", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -21077,34 +28832,34 @@ "" ], "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false } ], "siteRegistry": true }, { - "createdAt": "2021-02-21", - "completed": "2018-10-23", - "initiated": "2021-06-01", - "ministryContact": "MCKENZIE CHELSIE", + "createdAt": "2023-03-09", + "completed": "2022-07-25", + "initiated": "2019-11-30", + "ministryContact": "OKUNEVA POLLY", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -21115,37 +28870,32 @@ { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false } ], "participants": [ { "name": "AMET, DOLOR SIT", - "endDate": "2020-07-15", - "startDate": "2014-06-04", + "endDate": "2022-10-09", + "startDate": "2020-12-03", "notes": "", "roles": [ "EMPLOYEE" @@ -21153,85 +28903,170 @@ "siteRegistry": true }, { - "name": "IPSUM", - "endDate": "2017-07-08", - "startDate": "2014-09-26", + "name": "AMET, DOLOR SIT", + "endDate": "2018-12-15", + "startDate": "2018-06-15", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false + } + ], + "suspectLandUses": [ + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2015-12-23 (described on Site Profile dated 2015-12-23)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "name": "IPSUM", - "endDate": "2019-03-16", - "startDate": "2014-03-10", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": false + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2015-07-03 (described on Site Profile dated 2015-07-03)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2023-08-11", - "startDate": "2019-06-10", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": false + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2018-03-06 (described on Site Profile dated 2018-03-06)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2021-08-16 (described on Site Profile dated 2021-08-16)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2016-06-13 (described on Site Profile dated 2016-06-13)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], - "associatedSites": [ + "siteDisclosures": [ { - "dateNoted": "2013-10-18", - "notes": "", - "parcelID": "19180", - "siteID": "15666", - "siteRegistry": false + "siteRegistry": false, + "dateReceived": "2014-12-01", + "dateCompleted": "2017-08-18", + "dateEntered": "2020-10-15", + "dateRegistrar": "2014-08-23", + "dateLocalAuthorityReceived": "2014-12-01", + "summary": "Laborum eaque odit atque distinctio adipisci autem cum.\nDoloribus consequuntur dolore tempora sunt accusamus aperiam minus.\nHic itaque consequuntur autem iure porro fugiat.", + "informationUsed": "Similique nesciunt accusamus asperiores mollitia quae ratione occaecati expedita.\nDolorem nulla optio neque voluptates.\nPerspiciatis adipisci rerum fugit adipisci corporis quas vero.\nEx quaerat quae ipsa.", + "pastOrPresentOrders": "Soluta quo ad assumenda cum praesentium cupiditate quam.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + } + ] + } + ], + "activityLog": [ + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "WELCH ANIKA", + "timestamp": "2022-01-13" }, { - "dateNoted": "2016-04-30", - "notes": "", - "parcelID": "16115", - "siteID": "19837", - "siteRegistry": true + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "BODE MONSERRAT", + "timestamp": "2022-11-05" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "NADER MURIEL", + "timestamp": "2019-05-31" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "ZBONCAK JANNIE", + "timestamp": "2017-08-21" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "WILDERMAN ALLY", + "timestamp": "2018-07-10" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "MANN ADRIAN", + "timestamp": "2016-11-03" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "GUTMANN ALISHA", + "timestamp": "2014-11-11" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "RITCHIE WESTON", + "timestamp": "2021-12-07" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "SATTERFIELD RYLEIGH", + "timestamp": "2014-12-13" }, { - "dateNoted": "2018-12-25", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "LEDNER-LITTEL ELWIN", + "timestamp": "2020-03-31" + } + ], + "associatedSites": [ + { + "dateNoted": "2020-08-13", "notes": "", - "parcelID": "17111", - "siteID": "19536", - "siteRegistry": false + "parcelID": "15419", + "siteID": "18316", + "siteRegistry": true } ] }, { - "uuid": "e0b39f0a-8d46-4ed9-8961-e6fe6bcdba05", - "siteID": 19550, - "address": "96242 Mohamed Brooks", - "latitude": 49.848, - "longitude": -130.2878, - "lastUpdated": "2020-08-07", - "city": "Lindsayview", - "region": " North Coast", - "victoriaFile": "26250-20/19390", + "uuid": "460b6e2e-deba-4948-91b1-714ed394826e", + "siteID": 16824, + "address": "90818 Morissette Manors", + "latitude": 56.216, + "longitude": -121.9011, + "lastUpdated": "2021-12-13", + "city": "Port Betsyboro", + "region": "Vancouver Island/Coast", + "victoriaFile": "26250-20/17023", "regionalFile": "N/A", "parcelIDs": [ - 1229483, - 2922774, - 8214940, - 7632063, - 8719043 + 9236328, + 7973471, + 8691782, + 4330954, + 8149645 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2016-03-28", - "completed": "2019-06-14", - "initiated": "2023-07-12", - "ministryContact": "LAKIN ALVERTA", + "createdAt": "2018-02-26", + "completed": "2021-04-20", + "initiated": "2013-10-24", + "ministryContact": "SMITH PRICE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -21239,48 +29074,13 @@ "" ], "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true + "role": "REQUESTED BY", + "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - } - ], - "siteRegistry": true - }, - { - "createdAt": "2017-11-27", - "completed": "2014-01-12", - "initiated": "2016-05-02", - "ministryContact": "FAHEY CHESLEY", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true }, @@ -21295,23 +29095,18 @@ "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false } ], "siteRegistry": false }, { - "createdAt": "2015-11-09", - "completed": "2020-06-19", - "initiated": "2017-08-27", - "ministryContact": "O'HARA TAD", + "createdAt": "2014-04-02", + "completed": "2022-04-12", + "initiated": "2016-10-09", + "ministryContact": "HYATT DEJON", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -21320,10 +29115,15 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", "siteRegistry": false }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", @@ -21340,9 +29140,9 @@ ], "participants": [ { - "name": "IPSUM", - "endDate": "2016-01-27", - "startDate": "2017-03-27", + "name": "AMET, DOLOR SIT", + "endDate": "2017-06-07", + "startDate": "2014-09-06", "notes": "", "roles": [ "EMPLOYEE" @@ -21350,65 +29150,184 @@ "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2020-08-18", - "startDate": "2020-06-28", + "name": "IPSUM", + "endDate": "2021-08-16", + "startDate": "2016-04-08", "notes": "", "roles": [ "EMPLOYEE" ], "siteRegistry": true - } - ], - "associatedSites": [ + }, { - "dateNoted": "2020-08-11", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2016-10-14", + "startDate": "2021-07-31", "notes": "", - "parcelID": "19501", - "siteID": "20947", + "roles": [ + "ORGANIZATION" + ], "siteRegistry": false }, { - "dateNoted": "2014-01-03", + "name": "AMET, DOLOR SIT", + "endDate": "2013-11-16", + "startDate": "2015-01-15", "notes": "", - "parcelID": "16074", - "siteID": "19773", + "roles": [ + "EMPLOYEE" + ], "siteRegistry": false + } + ], + "suspectLandUses": [ + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2017-06-07 (described on Site Profile dated 2017-06-07)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2017-05-28 (described on Site Profile dated 2017-05-28)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2016-08-14 (described on Site Profile dated 2016-08-14)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + } + ], + "siteDisclosures": [ + { + "siteRegistry": false, + "dateReceived": "2015-04-29", + "dateCompleted": "2018-10-08", + "dateEntered": "2023-08-21", + "dateRegistrar": "2013-10-19", + "dateLocalAuthorityReceived": "2018-11-27", + "summary": "Nihil qui quasi dicta corrupti molestiae praesentium eaque voluptates.", + "informationUsed": "Odio rerum voluptatum aliquid.\nQuam odio eaque aliquam maiores natus.\nEa sed earum.", + "pastOrPresentOrders": "Tempora sequi dolores ipsa ab deleniti provident.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + } + ] + }, + { + "siteRegistry": true, + "dateReceived": "2016-09-02", + "dateCompleted": "2014-06-08", + "dateEntered": "2019-10-19", + "dateRegistrar": "2016-06-12", + "dateLocalAuthorityReceived": "2016-01-23", + "summary": "Nemo harum tempora voluptatum reiciendis.\nConsequuntur laboriosam maxime sunt eius inventore totam.\nQuod maxime rem cupiditate eligendi.", + "informationUsed": "Est odio eius reiciendis nisi unde aperiam.\nQuia necessitatibus quibusdam rem ex iusto eligendi.\nDucimus cum perferendis unde consequuntur iure.\nBlanditiis nisi eveniet quisquam aspernatur repellendus praesentium quod quas.", + "pastOrPresentOrders": "Maiores necessitatibus adipisci recusandae ipsam nisi aliquam enim debitis.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + } + ] + } + ], + "activityLog": [ + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "SCHUSTER RASHEED", + "timestamp": "2018-08-02" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "METZ IVY", + "timestamp": "2015-06-04" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "KAUTZER IMMANUEL", + "timestamp": "2021-03-01" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "SCHAEFER BRANDT", + "timestamp": "2014-03-21" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "RUTHERFORD ADAN", + "timestamp": "2015-09-22" }, { - "dateNoted": "2014-02-10", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "JOHNSON JESS", + "timestamp": "2015-02-05" + } + ], + "associatedSites": [ + { + "dateNoted": "2018-12-24", "notes": "", - "parcelID": "16913", - "siteID": "18497", - "siteRegistry": false + "parcelID": "18235", + "siteID": "19960", + "siteRegistry": true } ] }, { - "uuid": "ac395d3d-e3a4-44f1-a8b6-d7ca2b8ec303", - "siteID": 19005, - "address": "443 Ondricka Forks", - "latitude": 49.2118, - "longitude": -133.1714, - "lastUpdated": "2023-07-02", - "city": "Douglasworth", - "region": "Thompson-Okanagan", - "victoriaFile": "26250-20/8656", + "uuid": "74b8d4d8-01cc-46b5-8ec8-8e19c5420903", + "siteID": 17972, + "address": "2274 Kozey Lights", + "latitude": 57.2122, + "longitude": -134.0558, + "lastUpdated": "2015-04-04", + "city": "Bend", + "region": "Vancouver Island/Coast", + "victoriaFile": "26250-20/17363", "regionalFile": "N/A", "parcelIDs": [ - 3477288, - 731906, - 1133215, - 845320, - 3261403 + 1781684, + 3593788, + 4236978, + 4533609, + 5139305 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2022-08-07", - "completed": "2017-02-20", - "initiated": "2017-07-07", - "ministryContact": "BAILEY-MCKENZIE BRIDIE", + "createdAt": "2023-06-19", + "completed": "2019-11-09", + "initiated": "2021-09-22", + "ministryContact": "KING ANIYA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -21417,28 +29336,23 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", "siteRegistry": false } ], "siteRegistry": false }, { - "createdAt": "2014-05-30", - "completed": "2023-05-19", - "initiated": "2015-04-11", - "ministryContact": "BRADTKE FAE", + "createdAt": "2019-12-04", + "completed": "2022-04-04", + "initiated": "2021-03-11", + "ministryContact": "HOEGER DESIREE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -21447,73 +29361,38 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false + "role": "REQUESTED BY", + "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true - } - ], - "siteRegistry": false - }, - { - "createdAt": "2018-09-30", - "completed": "2017-10-23", - "initiated": "2022-10-31", - "ministryContact": "ANDERSON HELEN", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", "siteRegistry": false }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": true } ], "siteRegistry": false }, { - "createdAt": "2021-06-06", - "completed": "2019-04-23", - "initiated": "2015-03-12", - "ministryContact": "GERHOLD ANTONETTE", + "createdAt": "2020-09-21", + "completed": "2020-08-13", + "initiated": "2019-08-04", + "ministryContact": "TORP TRINITY", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -21523,7 +29402,7 @@ "notationParticipants": [ { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": true }, { @@ -21537,24 +29416,29 @@ "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true } ], "participants": [ + { + "name": "AMET, DOLOR SIT", + "endDate": "2020-10-02", + "startDate": "2014-03-20", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, { "name": "IPSUM", - "endDate": "2016-06-21", - "startDate": "2017-12-05", + "endDate": "2020-10-27", + "startDate": "2021-07-13", "notes": "", "roles": [ "ORGANIZATION" @@ -21562,9 +29446,19 @@ "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2018-01-20", - "startDate": "2016-03-03", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2017-11-04", + "startDate": "2015-01-15", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2023-07-14", + "startDate": "2016-12-12", "notes": "", "roles": [ "ORGANIZATION" @@ -21573,64 +29467,145 @@ }, { "name": "SHELL CANADA PRODUCTS", - "endDate": "2014-01-19", - "startDate": "2016-05-16", + "endDate": "2014-09-12", + "startDate": "2022-04-09", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false } ], - "associatedSites": [ + "suspectLandUses": [ { - "dateNoted": "2018-05-09", - "notes": "", - "parcelID": "20370", - "siteID": "19391", - "siteRegistry": true + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2017-06-05 (described on Site Profile dated 2017-06-05)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "dateNoted": "2017-06-03", - "notes": "", - "parcelID": "20115", - "siteID": "19075", - "siteRegistry": false + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2016-09-24 (described on Site Profile dated 2016-09-24)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "dateNoted": "2021-02-23", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2023-09-11 (described on Site Profile dated 2023-09-11)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2015-05-21 (described on Site Profile dated 2015-05-21)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2022-10-01 (described on Site Profile dated 2022-10-01)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + } + ], + "siteDisclosures": [ + { + "siteRegistry": false, + "dateReceived": "2019-11-20", + "dateCompleted": "2020-06-04", + "dateEntered": "2021-03-06", + "dateRegistrar": "2021-07-30", + "dateLocalAuthorityReceived": "2014-02-01", + "summary": "Dolorum ducimus inventore cumque voluptate sed quos in eius quae.\nConsequatur veniam tempore quia earum in autem.\nModi blanditiis tempore asperiores ea rerum tempore illum magnam nulla.", + "informationUsed": "Magni nam nobis omnis dolor quae iure at minus quod.\nDistinctio dicta explicabo.\nAspernatur odio accusamus occaecati in tenetur cupiditate repudiandae hic illum.\nCumque hic saepe nisi fuga veniam reprehenderit saepe recusandae vel.", + "pastOrPresentOrders": "Quod qui quam odio a ab voluptatibus alias.\nAsperiores suscipit nulla inventore.\nDolorem magnam eligendi provident sapiente eaque vero deleniti.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + } + ] + } + ], + "activityLog": [ + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "VONRUEDEN JOSIANE", + "timestamp": "2017-08-12" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "BECHTELAR AKEEM", + "timestamp": "2019-10-12" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "HARRIS CLIFFORD", + "timestamp": "2021-01-02" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "REINGER SAIGE", + "timestamp": "2014-10-27" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "TORP DARIEN", + "timestamp": "2023-06-25" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "COLLINS ASHLEIGH", + "timestamp": "2018-08-18" + } + ], + "associatedSites": [ + { + "dateNoted": "2016-11-30", "notes": "", - "parcelID": "17340", - "siteID": "19550", + "parcelID": "19132", + "siteID": "17036", "siteRegistry": true } ] }, { - "uuid": "c925aef6-ee3c-4ebd-86a9-3037efa59f1d", - "siteID": 20017, - "address": "6596 Predovic Mission", - "latitude": 57.3614, - "longitude": -138.4773, - "lastUpdated": "2016-12-25", - "city": "West Dionport", - "region": " North Coast", - "victoriaFile": "26250-20/3709", + "uuid": "b6e17606-3268-4ba9-a6db-cd8a723b00c1", + "siteID": 15474, + "address": "304 Price Court", + "latitude": 56.9216, + "longitude": -129.3287, + "lastUpdated": "2019-06-09", + "city": "Gutmannboro", + "region": "Mainland/Southwest", + "victoriaFile": "26250-20/18569", "regionalFile": "N/A", "parcelIDs": [ - 6111231, - 1324376, - 1316387, - 3446948, - 1371821 + 1591477, + 8931466, + 3844086, + 2972476, + 468067 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2022-05-10", - "completed": "2015-12-30", - "initiated": "2017-02-09", - "ministryContact": "BALISTRERI EMERALD", + "createdAt": "2023-03-25", + "completed": "2020-06-11", + "initiated": "2017-07-12", + "ministryContact": "ROMAGUERA WADE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -21644,7 +29619,12 @@ "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false }, @@ -21652,20 +29632,15 @@ "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2018-11-05", - "completed": "2022-03-15", - "initiated": "2022-02-09", - "ministryContact": "RUECKER RENE", + "createdAt": "2015-07-26", + "completed": "2017-04-15", + "initiated": "2022-10-11", + "ministryContact": "LEMKE DORTHY", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -21673,10 +29648,15 @@ "" ], "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", @@ -21685,17 +29665,17 @@ }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2019-08-01", - "completed": "2015-10-07", - "initiated": "2015-08-30", - "ministryContact": "KIHN ROSALIA", + "createdAt": "2019-03-27", + "completed": "2015-12-06", + "initiated": "2023-03-15", + "ministryContact": "BREKKE LELAND", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -21703,6 +29683,16 @@ "" ], "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", @@ -21710,7 +29700,7 @@ }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true }, { @@ -21723,30 +29713,20 @@ } ], "participants": [ - { - "name": "IPSUM", - "endDate": "2019-05-27", - "startDate": "2021-05-04", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": false - }, { "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2020-10-13", - "startDate": "2020-07-24", + "endDate": "2015-08-06", + "startDate": "2014-10-16", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": false + "siteRegistry": true }, { "name": "AMET, DOLOR SIT", - "endDate": "2019-06-10", - "startDate": "2015-09-24", + "endDate": "2015-07-05", + "startDate": "2014-02-25", "notes": "", "roles": [ "ORGANIZATION" @@ -21754,58 +29734,142 @@ "siteRegistry": true }, { - "name": "AMET, DOLOR SIT", - "endDate": "2016-12-10", - "startDate": "2023-03-30", + "name": "IPSUM", + "endDate": "2018-02-17", + "startDate": "2016-12-15", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": true } ], + "suspectLandUses": [ + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2023-10-02 (described on Site Profile dated 2023-10-02)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2018-06-11 (described on Site Profile dated 2018-06-11)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2015-03-27 (described on Site Profile dated 2015-03-27)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2023-05-30 (described on Site Profile dated 2023-05-30)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2021-04-04 (described on Site Profile dated 2021-04-04)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + } + ], + "siteDisclosures": [ + { + "siteRegistry": true, + "dateReceived": "2019-04-30", + "dateCompleted": "2019-04-04", + "dateEntered": "2015-02-08", + "dateRegistrar": "2014-04-25", + "dateLocalAuthorityReceived": "2018-04-03", + "summary": "Quidem maiores saepe iure vero dolores.", + "informationUsed": "Animi aperiam maxime doloribus minima molestias laborum quibusdam blanditiis praesentium.\nPerferendis eligendi dolores.\nRepellat suscipit dolorum odio fugiat magnam natus.", + "pastOrPresentOrders": "Eum beatae repellendus quae neque deleniti rerum.\nQuisquam necessitatibus inventore tenetur accusamus cupiditate doloremque magnam aut.\nVitae similique ducimus saepe error.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + } + ] + } + ], + "activityLog": [ + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "HAUCK JAYDA", + "timestamp": "2017-05-19" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "HARBER MEAGAN", + "timestamp": "2015-04-19" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "RYAN ALISON", + "timestamp": "2016-08-31" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "GOODWIN WILLA", + "timestamp": "2020-08-08" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "LEFFLER JUVENAL", + "timestamp": "2019-05-16" + } + ], "associatedSites": [ { - "dateNoted": "2022-03-21", + "dateNoted": "2014-01-24", "notes": "", - "parcelID": "20153", - "siteID": "20758", - "siteRegistry": false + "parcelID": "18516", + "siteID": "20727", + "siteRegistry": true }, { - "dateNoted": "2015-04-04", + "dateNoted": "2018-05-07", "notes": "", - "parcelID": "16585", - "siteID": "15822", + "parcelID": "20776", + "siteID": "16863", "siteRegistry": false } ] }, { - "uuid": "69c06182-5465-4d01-8df1-39997f548195", - "siteID": 15351, - "address": "60465 Jeromy Rapids", - "latitude": 50.7385, - "longitude": -137.2814, - "lastUpdated": "2020-10-01", - "city": "Emersonborough", - "region": "Vancouver Island/Coast", - "victoriaFile": "26250-20/8018", + "uuid": "07512122-58a1-456d-a705-8a48df006acb", + "siteID": 19043, + "address": "343 Stark Harbors", + "latitude": 55.2899, + "longitude": -123.2542, + "lastUpdated": "2015-06-23", + "city": "Farmington", + "region": " North Coast", + "victoriaFile": "26250-20/11263", "regionalFile": "N/A", "parcelIDs": [ - 8771897, - 7252359, - 7926200, - 9971863, - 1736500 + 6590259, + 3322664, + 4686400, + 6736408, + 8021940 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2018-11-06", - "completed": "2021-05-30", - "initiated": "2014-01-13", - "ministryContact": "PADBERG CAITLYN", + "createdAt": "2019-04-26", + "completed": "2013-11-17", + "initiated": "2023-03-29", + "ministryContact": "WOLF WHITNEY", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -21814,68 +29878,38 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": true - } - ], - "siteRegistry": true - }, - { - "createdAt": "2020-05-31", - "completed": "2021-07-25", - "initiated": "2016-03-05", - "ministryContact": "ROGAHN TAMIA", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true } ], "siteRegistry": false }, { - "createdAt": "2019-05-31", - "completed": "2023-01-24", - "initiated": "2015-04-04", - "ministryContact": "KREIGER ANTONE", + "createdAt": "2018-02-08", + "completed": "2019-02-12", + "initiated": "2013-12-22", + "ministryContact": "ALTENWERTH ED", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -21883,60 +29917,40 @@ "" ], "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false - } - ], - "siteRegistry": true - }, - { - "createdAt": "2022-07-04", - "completed": "2022-11-12", - "initiated": "2022-03-21", - "ministryContact": "SANFORD ADELIA", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ + }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true + "role": "REQUESTED BY", + "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true } ], "participants": [ { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2020-03-23", - "startDate": "2014-05-27", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2017-07-03", + "startDate": "2020-09-23", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false }, { - "name": "AMET, DOLOR SIT", - "endDate": "2018-06-09", - "startDate": "2016-12-07", + "name": "IPSUM", + "endDate": "2020-01-18", + "startDate": "2021-06-23", "notes": "", "roles": [ "ORGANIZATION" @@ -21944,9 +29958,19 @@ "siteRegistry": true }, { - "name": "AMET, DOLOR SIT", - "endDate": "2018-07-07", - "startDate": "2018-02-19", + "name": "IPSUM", + "endDate": "2015-03-09", + "startDate": "2017-05-08", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "name": "IPSUM", + "endDate": "2015-10-26", + "startDate": "2013-12-17", "notes": "", "roles": [ "EMPLOYEE" @@ -21955,57 +29979,142 @@ }, { "name": "AMET, DOLOR SIT", - "endDate": "2018-08-09", - "startDate": "2014-11-22", + "endDate": "2022-03-08", + "startDate": "2017-09-13", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true + } + ], + "suspectLandUses": [ + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2020-08-02 (described on Site Profile dated 2020-08-02)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2017-01-05 (described on Site Profile dated 2017-01-05)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2022-02-24 (described on Site Profile dated 2022-02-24)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2014-09-20 (described on Site Profile dated 2014-09-20)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + } + ], + "siteDisclosures": [ + { + "siteRegistry": false, + "dateReceived": "2016-08-30", + "dateCompleted": "2017-04-22", + "dateEntered": "2017-01-30", + "dateRegistrar": "2022-09-02", + "dateLocalAuthorityReceived": "2015-04-06", + "summary": "Laudantium maxime similique porro voluptate corporis unde consequatur possimus facilis.", + "informationUsed": "Neque ratione delectus nulla totam inventore est.\nSapiente illum ea temporibus non dolorem debitis voluptate repellat.\nQuaerat autem doloremque assumenda omnis veniam quidem fugit consequatur.\nPraesentium tempora mollitia.", + "pastOrPresentOrders": "Nobis fuga ipsa.\nNostrum vero facilis fuga.\nDicta vero fugiat hic eum voluptatibus tempore officia.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + } + ] + } + ], + "activityLog": [ + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "STROMAN MURL", + "timestamp": "2020-06-10" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "LEHNER HUMBERTO", + "timestamp": "2017-06-25" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "MANN LEOPOLDO", + "timestamp": "2023-02-06" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "LEMKE AMPARO", + "timestamp": "2020-06-18" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "COLLINS KARLIE", + "timestamp": "2022-07-21" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "GREEN-MANTE ELIAN", + "timestamp": "2017-06-06" } ], "associatedSites": [ { - "dateNoted": "2015-12-31", + "dateNoted": "2023-01-10", "notes": "", - "parcelID": "17269", - "siteID": "20717", - "siteRegistry": true + "parcelID": "16486", + "siteID": "19078", + "siteRegistry": false }, { - "dateNoted": "2023-06-30", + "dateNoted": "2021-06-18", "notes": "", - "parcelID": "16559", - "siteID": "15222", - "siteRegistry": true + "parcelID": "18338", + "siteID": "20294", + "siteRegistry": false } ] }, { - "uuid": "e2d3fe38-de90-4e13-aab5-0a7ad70f0af3", - "siteID": 18049, - "address": "9839 Bins Corner", - "latitude": 57.9594, - "longitude": -118.2171, - "lastUpdated": "2023-03-17", - "city": "East Freddie", - "region": "Mainland/Southwest", - "victoriaFile": "26250-20/6847", + "uuid": "3ba6a7c3-6209-438f-9e5a-7339039d9aef", + "siteID": 16922, + "address": "56975 Marcelo Port", + "latitude": 53.5759, + "longitude": -119.2303, + "lastUpdated": "2016-11-06", + "city": "Jaydencester", + "region": "Cariboo", + "victoriaFile": "26250-20/14907", "regionalFile": "N/A", "parcelIDs": [ - 468392, - 6423278, - 9968335, - 2105040, - 3469057 + 3634070, + 8283396, + 258003, + 1199233, + 6950015 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2016-07-14", - "completed": "2021-02-23", - "initiated": "2015-10-29", - "ministryContact": "RUECKER-O'REILLY ZACHARIAH", + "createdAt": "2019-05-26", + "completed": "2019-04-24", + "initiated": "2017-09-29", + "ministryContact": "DARE LESLIE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -22014,19 +30123,19 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", @@ -22035,17 +30144,17 @@ }, { "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false + "role": "SUBMITTED BY", + "siteRegistry": true } ], "siteRegistry": true }, { - "createdAt": "2020-06-29", - "completed": "2014-09-06", - "initiated": "2017-11-10", - "ministryContact": "PROHASKA STEFANIE", + "createdAt": "2017-02-27", + "completed": "2017-02-25", + "initiated": "2023-09-29", + "ministryContact": "SIPES ABIGAIL", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -22054,28 +30163,23 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2017-06-25", - "completed": "2015-04-09", - "initiated": "2018-05-18", - "ministryContact": "SCHUPPE ELLIOT", + "createdAt": "2020-06-12", + "completed": "2016-08-31", + "initiated": "2013-10-18", + "ministryContact": "LANG KASANDRA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -22088,19 +30192,29 @@ "role": "SUBMITTED BY", "siteRegistry": false }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2016-07-31", - "completed": "2022-07-12", - "initiated": "2021-08-03", - "ministryContact": "BOTSFORD SHANNA", + "createdAt": "2019-05-19", + "completed": "2023-09-16", + "initiated": "2016-03-01", + "ministryContact": "FEIL SAVION", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -22109,54 +30223,29 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - } - ], - "siteRegistry": false - }, - { - "createdAt": "2023-01-16", - "completed": "2022-08-15", - "initiated": "2022-10-14", - "ministryContact": "ULLRICH BRANDO", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false } ], "siteRegistry": true @@ -22164,29 +30253,39 @@ ], "participants": [ { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2018-04-26", - "startDate": "2015-03-02", + "name": "AMET, DOLOR SIT", + "endDate": "2022-06-09", + "startDate": "2021-09-27", "notes": "", "roles": [ "EMPLOYEE" ], + "siteRegistry": true + }, + { + "name": "AMET, DOLOR SIT", + "endDate": "2021-09-14", + "startDate": "2022-10-31", + "notes": "", + "roles": [ + "ORGANIZATION" + ], "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2023-03-20", - "startDate": "2014-01-19", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2016-03-30", + "startDate": "2020-12-25", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": false + "siteRegistry": true }, { "name": "AMET, DOLOR SIT", - "endDate": "2014-09-17", - "startDate": "2014-12-13", + "endDate": "2014-01-08", + "startDate": "2022-01-15", "notes": "", "roles": [ "ORGANIZATION" @@ -22194,75 +30293,187 @@ "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2020-05-10", - "startDate": "2019-03-21", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2016-09-02", + "startDate": "2019-08-02", "notes": "", "roles": [ "EMPLOYEE" ], "siteRegistry": true + } + ], + "suspectLandUses": [ + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2019-10-03 (described on Site Profile dated 2019-10-03)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "name": "IPSUM", - "endDate": "2023-07-22", - "startDate": "2020-02-26", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": false + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2018-02-26 (described on Site Profile dated 2018-02-26)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2022-04-23 (described on Site Profile dated 2022-04-23)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2023-02-27 (described on Site Profile dated 2023-02-27)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2021-08-26 (described on Site Profile dated 2021-08-26)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], - "associatedSites": [ + "siteDisclosures": [ { - "dateNoted": "2020-11-02", - "notes": "", - "parcelID": "16593", - "siteID": "20858", - "siteRegistry": true + "siteRegistry": false, + "dateReceived": "2021-12-31", + "dateCompleted": "2018-03-16", + "dateEntered": "2017-04-19", + "dateRegistrar": "2017-11-03", + "dateLocalAuthorityReceived": "2015-06-23", + "summary": "Enim temporibus quaerat voluptates occaecati cupiditate facilis.\nTemporibus eius vero ipsam laboriosam quam dicta.\nNon at dolores officiis et beatae.", + "informationUsed": "Reiciendis nostrum tempora culpa natus repellendus repudiandae quia.\nPariatur in modi tempora.\nEum debitis iure aliquam exercitationem quasi libero.\nUllam sunt laudantium nesciunt ab modi dolores iure quidem.", + "pastOrPresentOrders": "Tempore eos et voluptate.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + } + ] + }, + { + "siteRegistry": true, + "dateReceived": "2014-06-16", + "dateCompleted": "2015-11-08", + "dateEntered": "2015-04-05", + "dateRegistrar": "2015-02-12", + "dateLocalAuthorityReceived": "2023-10-09", + "summary": "Quaerat deserunt ea.", + "informationUsed": "Eum eligendi sed quo eos dolorem odio ullam in ullam.\nAt exercitationem ipsum eaque sed quia adipisci illo doloribus eligendi.\nFacilis reprehenderit earum expedita nesciunt et illo saepe asperiores.\nVoluptate magnam dolorum ipsum repudiandae dolorum molestias illo nobis dolores.\nTenetur voluptatum saepe vel.", + "pastOrPresentOrders": "Officiis accusantium aut quod deleniti illum nostrum recusandae ab eveniet.\nDolor quisquam omnis.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + } + ] + } + ], + "activityLog": [ + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "MCLAUGHLIN ALVA", + "timestamp": "2014-07-05" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "FEENEY KYRA", + "timestamp": "2020-02-14" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "KUTCH ERNESTO", + "timestamp": "2016-12-02" }, { - "dateNoted": "2020-06-04", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "WILKINSON LEANN", + "timestamp": "2022-03-26" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "SMITH DWIGHT", + "timestamp": "2021-06-30" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "BARTON MAXIMILLIA", + "timestamp": "2016-10-28" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "WAELCHI KATTIE", + "timestamp": "2020-10-29" + } + ], + "associatedSites": [ + { + "dateNoted": "2021-08-16", "notes": "", - "parcelID": "16845", - "siteID": "18274", - "siteRegistry": true + "parcelID": "19262", + "siteID": "18404", + "siteRegistry": false }, { - "dateNoted": "2020-09-06", + "dateNoted": "2022-06-02", "notes": "", - "parcelID": "20801", - "siteID": "16557", + "parcelID": "20901", + "siteID": "18110", "siteRegistry": false } ] }, { - "uuid": "4ce06820-1940-4419-a6b7-51efb308080f", - "siteID": 17976, - "address": "3093 Nolan Harbors", - "latitude": 58.0529, - "longitude": -121.2204, - "lastUpdated": "2021-01-08", - "city": "Grand Junction", - "region": " North Coast", - "victoriaFile": "26250-20/13526", + "uuid": "4f6665a8-320c-4b38-a190-800009a5f582", + "siteID": 15998, + "address": "6317 Evans Cove", + "latitude": 54.2993, + "longitude": -122.3362, + "lastUpdated": "2020-01-09", + "city": "Wellington", + "region": "Kootenay", + "victoriaFile": "26250-20/2880", "regionalFile": "N/A", "parcelIDs": [ - 6775251, - 2867852, - 9805359, - 5801175, - 747986 + 7792344, + 2614705, + 7084258, + 5661678, + 5507213 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2021-08-15", - "completed": "2017-01-09", - "initiated": "2017-10-19", - "ministryContact": "SCHOEN ALEJANDRIN", + "createdAt": "2015-09-20", + "completed": "2014-03-15", + "initiated": "2019-03-08", + "ministryContact": "BLOCK ZENA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -22271,23 +30482,23 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2018-06-16", - "completed": "2014-06-30", - "initiated": "2014-04-12", - "ministryContact": "DOYLE GIOVANNY", + "createdAt": "2018-08-28", + "completed": "2019-05-19", + "initiated": "2018-09-14", + "ministryContact": "CARTER EMILIA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -22298,36 +30509,56 @@ { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "createdAt": "2021-06-06", + "completed": "2022-03-13", + "initiated": "2015-11-14", + "ministryContact": "MOSCISKI NATHANAEL", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true } ], "siteRegistry": false }, { - "createdAt": "2020-02-04", - "completed": "2022-02-02", - "initiated": "2019-10-11", - "ministryContact": "SCHROEDER DANE", + "createdAt": "2014-11-04", + "completed": "2021-11-18", + "initiated": "2019-03-19", + "ministryContact": "O'CONNER DESMOND", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -22335,6 +30566,11 @@ "" ], "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", @@ -22343,7 +30579,7 @@ { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false } ], "siteRegistry": false @@ -22351,88 +30587,177 @@ ], "participants": [ { - "name": "AMET, DOLOR SIT", - "endDate": "2015-07-14", - "startDate": "2017-05-19", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2015-10-11", + "startDate": "2016-05-24", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": false }, { - "name": "IPSUM", - "endDate": "2022-03-16", - "startDate": "2021-03-09", + "name": "AMET, DOLOR SIT", + "endDate": "2021-01-05", + "startDate": "2015-05-07", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", - "endDate": "2021-04-07", - "startDate": "2019-08-17", + "endDate": "2014-05-14", + "startDate": "2014-02-23", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": true + } + ], + "suspectLandUses": [ + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2017-01-11 (described on Site Profile dated 2017-01-11)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2014-08-13", - "startDate": "2017-10-30", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": false + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2022-07-23 (described on Site Profile dated 2022-07-23)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2019-11-06 (described on Site Profile dated 2019-11-06)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2018-08-16 (described on Site Profile dated 2018-08-16)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2022-11-17 (described on Site Profile dated 2022-11-17)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], - "associatedSites": [ + "siteDisclosures": [ { - "dateNoted": "2017-06-08", - "notes": "", - "parcelID": "20777", - "siteID": "15792", - "siteRegistry": false + "siteRegistry": false, + "dateReceived": "2013-11-24", + "dateCompleted": "2018-04-21", + "dateEntered": "2020-01-17", + "dateRegistrar": "2021-03-23", + "dateLocalAuthorityReceived": "2021-07-22", + "summary": "Soluta dicta saepe enim molestias sed modi recusandae commodi.", + "informationUsed": "Et esse voluptate laborum fugiat harum.\nCulpa quasi occaecati facere aspernatur voluptatem.\nInventore corrupti aliquid labore labore.\nAccusamus blanditiis cupiditate.", + "pastOrPresentOrders": "Cumque maiores animi saepe porro.\nNecessitatibus iusto ullam sed quo amet corrupti accusantium sapiente.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + } + ] + } + ], + "activityLog": [ + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "LOWE ZELLA", + "timestamp": "2022-12-19" }, { - "dateNoted": "2017-06-21", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "BAILEY GABRIELLE", + "timestamp": "2021-03-11" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "SKILES JUDY", + "timestamp": "2019-03-28" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "AUFDERHAR LUCIOUS", + "timestamp": "2017-05-28" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "HAND EMMETT", + "timestamp": "2018-12-16" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "MURRAY STANFORD", + "timestamp": "2015-12-08" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "STIEDEMANN CELESTINO", + "timestamp": "2019-01-05" + } + ], + "associatedSites": [ + { + "dateNoted": "2020-09-28", "notes": "", - "parcelID": "19972", - "siteID": "18319", + "parcelID": "20450", + "siteID": "19019", "siteRegistry": true } ] }, { - "uuid": "6a244184-0958-4ce6-a5b7-1e4fdae22250", - "siteID": 19903, - "address": "1531 Tabitha Dale", - "latitude": 57.3701, - "longitude": -124.6439, - "lastUpdated": "2022-08-21", - "city": "East Jedport", + "uuid": "224600d9-c109-411a-9513-68d49b59a86b", + "siteID": 19991, + "address": "199 O'Hara Throughway", + "latitude": 56.0608, + "longitude": -137.8194, + "lastUpdated": "2022-01-03", + "city": "New Barry", "region": "Vancouver Island/Coast", - "victoriaFile": "26250-20/12472", + "victoriaFile": "26250-20/7683", "regionalFile": "N/A", "parcelIDs": [ - 4150698, - 2863005, - 3567150, - 1064934, - 7343086 + 2016231, + 8036569, + 354300, + 6860065, + 5710587 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2019-05-29", - "completed": "2019-04-20", - "initiated": "2021-05-18", - "ministryContact": "MCGLYNN ALVAH", + "createdAt": "2018-01-25", + "completed": "2018-02-27", + "initiated": "2016-06-05", + "ministryContact": "KLEIN-KUHIC HALLIE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -22443,17 +30768,12 @@ { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", @@ -22461,18 +30781,18 @@ "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2021-08-25", - "completed": "2022-01-03", - "initiated": "2015-04-25", - "ministryContact": "CUMMINGS AMELIA", + "createdAt": "2019-03-07", + "completed": "2016-08-07", + "initiated": "2014-07-17", + "ministryContact": "LANGWORTH AMYA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -22481,33 +30801,23 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false } ], "siteRegistry": false }, { - "createdAt": "2023-06-12", - "completed": "2016-08-11", - "initiated": "2022-02-25", - "ministryContact": "POWLOWSKI KALLIE", + "createdAt": "2021-12-08", + "completed": "2023-06-24", + "initiated": "2015-02-02", + "ministryContact": "MANN OSVALDO", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -22516,9 +30826,9 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", @@ -22531,90 +30841,195 @@ "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true } ], "participants": [ { - "name": "IPSUM", - "endDate": "2018-11-06", - "startDate": "2019-01-30", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2017-07-02", + "startDate": "2016-01-15", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], - "siteRegistry": true + "siteRegistry": false }, { - "name": "IPSUM", - "endDate": "2020-04-06", - "startDate": "2016-02-29", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2014-12-01", + "startDate": "2023-03-08", "notes": "", "roles": [ "EMPLOYEE" ], "siteRegistry": false }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2023-07-09", + "startDate": "2016-06-14", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, { "name": "IPSUM", - "endDate": "2018-07-31", - "startDate": "2016-03-09", + "endDate": "2015-08-16", + "startDate": "2017-01-26", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": true } ], - "associatedSites": [ + "suspectLandUses": [ { - "dateNoted": "2021-10-01", - "notes": "", - "parcelID": "19143", - "siteID": "19603", - "siteRegistry": false + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2017-11-29 (described on Site Profile dated 2017-11-29)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2023-01-24 (described on Site Profile dated 2023-01-24)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2020-02-03 (described on Site Profile dated 2020-02-03)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2014-04-07 (described on Site Profile dated 2014-04-07)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + } + ], + "siteDisclosures": [ + { + "siteRegistry": true, + "dateReceived": "2014-07-26", + "dateCompleted": "2017-04-05", + "dateEntered": "2014-04-20", + "dateRegistrar": "2015-07-29", + "dateLocalAuthorityReceived": "2023-03-23", + "summary": "Quis inventore molestias ipsam amet cum.\nCorrupti maxime temporibus.", + "informationUsed": "Voluptatem facilis est quo aspernatur magnam.\nExercitationem laudantium culpa accusamus neque odio illo.\nSapiente voluptates minima facilis ex ad laudantium facilis deserunt.", + "pastOrPresentOrders": "Quos ab eius.\nExercitationem cupiditate aut eaque provident rem aspernatur in reprehenderit nobis.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + } + ] + } + ], + "activityLog": [ + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "GUSIKOWSKI-SMITH MARY", + "timestamp": "2023-02-17" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "KUVALIS MERVIN", + "timestamp": "2022-12-02" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "LAKIN JIMMIE", + "timestamp": "2021-11-06" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "GERHOLD EFRAIN", + "timestamp": "2014-05-07" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "FEENEY LINDA", + "timestamp": "2019-03-27" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "O'KON DAISHA", + "timestamp": "2014-10-02" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "RODRIGUEZ CARMINE", + "timestamp": "2020-03-08" }, { - "dateNoted": "2013-10-16", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "VEUM HILMA", + "timestamp": "2018-09-09" + } + ], + "associatedSites": [ + { + "dateNoted": "2017-07-04", "notes": "", - "parcelID": "18434", - "siteID": "17448", - "siteRegistry": false + "parcelID": "19835", + "siteID": "16504", + "siteRegistry": true }, { - "dateNoted": "2023-04-01", + "dateNoted": "2016-05-16", "notes": "", - "parcelID": "18652", - "siteID": "20906", - "siteRegistry": false + "parcelID": "15302", + "siteID": "16752", + "siteRegistry": true } ] }, { - "uuid": "d90387ef-355f-4a2f-b0c9-a136d094b69b", - "siteID": 15577, - "address": "2114 Gleichner Row", - "latitude": 50.4037, - "longitude": -124.4013, - "lastUpdated": "2022-09-03", - "city": "Cincinnati", - "region": " North Coast", - "victoriaFile": "26250-20/8678", + "uuid": "4f3d6a75-c554-48f9-87ae-eda9ae25d7d3", + "siteID": 15864, + "address": "21063 Hodkiewicz Center", + "latitude": 48.3484, + "longitude": -120.3432, + "lastUpdated": "2022-02-15", + "city": "Davis", + "region": "Mainland/Southwest", + "victoriaFile": "26250-20/7630", "regionalFile": "N/A", "parcelIDs": [ - 3256572, - 2301207, - 3253214, - 606655, - 7089078 + 6504732, + 4454337, + 6999549, + 3943145, + 9774976 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2015-09-12", - "completed": "2021-08-06", - "initiated": "2016-07-12", - "ministryContact": "LANG ISRAEL", + "createdAt": "2017-07-01", + "completed": "2019-09-05", + "initiated": "2019-06-03", + "ministryContact": "SCHROEDER SAM", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -22624,27 +31039,37 @@ "notationParticipants": [ { "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false + "role": "REQUESTED BY", + "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false + "role": "REQUESTED BY", + "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true } ], "siteRegistry": false }, { - "createdAt": "2014-06-17", - "completed": "2017-05-11", - "initiated": "2020-05-12", - "ministryContact": "STOKES KAILYN", + "createdAt": "2019-04-09", + "completed": "2021-11-01", + "initiated": "2022-05-13", + "ministryContact": "LABADIE MOISES", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -22653,23 +31078,23 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2023-07-12", - "completed": "2022-03-30", - "initiated": "2018-06-04", - "ministryContact": "BORER LEXIE", + "createdAt": "2014-08-13", + "completed": "2022-10-06", + "initiated": "2021-10-11", + "ministryContact": "SCHAMBERGER DARIANA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -22679,37 +31104,37 @@ "notationParticipants": [ { "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true + "role": "SUBMITTED BY", + "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": true } ], "siteRegistry": false }, { - "createdAt": "2013-11-11", - "completed": "2023-08-03", - "initiated": "2014-04-21", - "ministryContact": "MCGLYNN RANDALL", + "createdAt": "2016-07-06", + "completed": "2014-03-21", + "initiated": "2014-04-12", + "ministryContact": "LEMKE JENNYFER", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -22727,40 +31152,75 @@ "role": "SUBMITTED BY", "siteRegistry": true }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "createdAt": "2020-01-30", + "completed": "2013-11-05", + "initiated": "2015-08-27", + "ministryContact": "GIBSON LEATHA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false } ], "participants": [ { - "name": "AMET, DOLOR SIT", - "endDate": "2023-02-12", - "startDate": "2014-06-25", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2017-03-21", + "startDate": "2022-05-17", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": false + "siteRegistry": true }, { - "name": "IPSUM", - "endDate": "2016-10-25", - "startDate": "2016-02-29", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2015-12-10", + "startDate": "2015-02-02", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true }, { "name": "AMET, DOLOR SIT", - "endDate": "2021-07-16", - "startDate": "2014-11-24", + "endDate": "2017-11-28", + "startDate": "2014-04-19", "notes": "", "roles": [ "ORGANIZATION" @@ -22768,51 +31228,189 @@ "siteRegistry": false }, { - "name": "AMET, DOLOR SIT", - "endDate": "2022-09-22", - "startDate": "2014-06-01", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2023-03-08", + "startDate": "2022-02-22", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2018-05-18", + "startDate": "2015-11-22", + "notes": "", + "roles": [ + "ORGANIZATION" ], "siteRegistry": true } ], + "suspectLandUses": [ + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2017-10-15 (described on Site Profile dated 2017-10-15)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2017-09-12 (described on Site Profile dated 2017-09-12)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + } + ], + "siteDisclosures": [ + { + "siteRegistry": false, + "dateReceived": "2023-03-11", + "dateCompleted": "2014-09-08", + "dateEntered": "2013-12-06", + "dateRegistrar": "2017-08-15", + "dateLocalAuthorityReceived": "2016-08-01", + "summary": "Asperiores alias dolorum id quibusdam explicabo fugit magnam praesentium iste.\nDelectus repellat voluptates placeat minus debitis tempore.\nIusto at saepe eos tenetur.", + "informationUsed": "Cupiditate accusantium in similique corrupti excepturi placeat soluta provident voluptas.\nAutem reprehenderit in nesciunt veniam error.\nIste dolorem provident iure excepturi odit.", + "pastOrPresentOrders": "Blanditiis dicta voluptas corrupti sit consequatur cumque consequuntur.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + } + ] + }, + { + "siteRegistry": false, + "dateReceived": "2016-11-24", + "dateCompleted": "2023-09-05", + "dateEntered": "2017-04-21", + "dateRegistrar": "2022-12-18", + "dateLocalAuthorityReceived": "2021-04-30", + "summary": "Optio corporis laborum.\nCum aliquid provident commodi cum totam est quaerat perferendis.\nRepellendus sint numquam eius eaque dignissimos unde.", + "informationUsed": "Dolorum quae possimus ipsam consequatur expedita reiciendis ullam.\nAliquam itaque necessitatibus vel quisquam.\nDolor laudantium nostrum similique voluptate modi officia id.\nRepudiandae enim minus esse distinctio dolor.\nAccusantium hic maxime repudiandae totam placeat enim laudantium.", + "pastOrPresentOrders": "Modi quam voluptates quos soluta blanditiis dolor cumque.\nDeserunt harum voluptatibus debitis.\nAlias maxime inventore enim nostrum recusandae.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + } + ] + } + ], + "activityLog": [ + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "MRAZ SALLY", + "timestamp": "2022-07-06" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "WALSH KIRK", + "timestamp": "2018-05-30" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "LEUSCHKE TAMARA", + "timestamp": "2022-02-06" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "CORWIN KRISTOFER", + "timestamp": "2015-02-05" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "ANDERSON REECE", + "timestamp": "2023-05-19" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "SWANIAWSKI RYLEE", + "timestamp": "2014-12-28" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "KOHLER TURNER", + "timestamp": "2017-02-01" + } + ], "associatedSites": [ { - "dateNoted": "2022-03-29", + "dateNoted": "2020-03-10", + "notes": "", + "parcelID": "19604", + "siteID": "16418", + "siteRegistry": false + }, + { + "dateNoted": "2019-06-04", "notes": "", - "parcelID": "17791", - "siteID": "15656", + "parcelID": "16083", + "siteID": "19991", "siteRegistry": true + }, + { + "dateNoted": "2016-05-31", + "notes": "", + "parcelID": "19634", + "siteID": "17710", + "siteRegistry": false } ] }, { - "uuid": "ab00ee36-be34-4f10-bfad-89c1432401f3", - "siteID": 17057, - "address": "8363 Schiller Field", - "latitude": 48.9741, - "longitude": -126.1936, - "lastUpdated": "2019-03-22", - "city": "Majorport", - "region": "Vancouver Island/Coast", - "victoriaFile": "26250-20/16414", + "uuid": "516d8754-14e7-4254-8543-b6806557f6a0", + "siteID": 19041, + "address": "246 Astrid Wells", + "latitude": 48.7114, + "longitude": -136.9558, + "lastUpdated": "2022-04-02", + "city": "South Katrinefort", + "region": "Kootenay", + "victoriaFile": "26250-20/4199", "regionalFile": "N/A", "parcelIDs": [ - 8872249, - 8753663, - 4001393, - 5470821, - 3359035 + 1186313, + 710517, + 8812680, + 5629579, + 3517633 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2014-09-26", - "completed": "2013-11-02", - "initiated": "2021-03-27", - "ministryContact": "SWIFT DELIA", + "createdAt": "2018-03-11", + "completed": "2019-03-20", + "initiated": "2015-08-06", + "ministryContact": "D'AMORE TREVOR", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -22820,36 +31418,11 @@ "" ], "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true - } - ], - "siteRegistry": false - }, - { - "createdAt": "2015-07-16", - "completed": "2020-06-01", - "initiated": "2015-09-07", - "ministryContact": "WARD HAROLD", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ + }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", @@ -22860,19 +31433,24 @@ "role": "SUBMITTED BY", "siteRegistry": false }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2021-09-07", - "completed": "2018-05-24", - "initiated": "2021-03-29", - "ministryContact": "STAMM RENE", + "createdAt": "2019-11-01", + "completed": "2018-09-21", + "initiated": "2015-02-28", + "ministryContact": "HERMANN GIOVANNY", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -22880,6 +31458,11 @@ "" ], "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", @@ -22888,21 +31471,16 @@ { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2019-04-25", - "completed": "2016-09-24", - "initiated": "2019-01-19", - "ministryContact": "CRUICKSHANK ERICK", + "createdAt": "2021-07-07", + "completed": "2022-03-07", + "initiated": "2020-04-04", + "ministryContact": "HAMMES FRIEDA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -22916,7 +31494,12 @@ "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true } @@ -22926,85 +31509,184 @@ ], "participants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2017-10-13", - "startDate": "2019-12-23", + "name": "AMET, DOLOR SIT", + "endDate": "2017-03-13", + "startDate": "2018-04-02", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", - "endDate": "2022-07-21", - "startDate": "2021-02-09", + "endDate": "2017-09-25", + "startDate": "2016-05-07", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], - "siteRegistry": true + "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2015-02-03", - "startDate": "2020-01-12", + "endDate": "2014-09-15", + "startDate": "2021-10-13", "notes": "", "roles": [ "EMPLOYEE" ], "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2015-11-06", + "startDate": "2019-03-26", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + } + ], + "suspectLandUses": [ + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2014-04-02 (described on Site Profile dated 2014-04-02)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2018-05-15 (described on Site Profile dated 2018-05-15)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2016-10-03 (described on Site Profile dated 2016-10-03)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2020-01-03 (described on Site Profile dated 2020-01-03)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2014-07-08 (described on Site Profile dated 2014-07-08)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + } + ], + "siteDisclosures": [ + { + "siteRegistry": false, + "dateReceived": "2013-10-24", + "dateCompleted": "2023-03-17", + "dateEntered": "2015-08-12", + "dateRegistrar": "2018-05-15", + "dateLocalAuthorityReceived": "2019-12-14", + "summary": "Non soluta numquam ea.\nAliquid distinctio itaque ducimus.", + "informationUsed": "Natus dolore sunt animi quibusdam possimus exercitationem ut.\nInventore est esse cupiditate fugit.\nDolor sapiente aliquid cum fuga.", + "pastOrPresentOrders": "Adipisci earum ab expedita temporibus veritatis.\nNatus tenetur expedita sequi quia adipisci.\nCorporis exercitationem repudiandae quos esse laboriosam quos beatae.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + } + ] + } + ], + "activityLog": [ + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "SCHNEIDER TRACE", + "timestamp": "2020-07-20" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "ZEMLAK ALEXYS", + "timestamp": "2020-08-24" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "BLOCK AHMED", + "timestamp": "2015-03-13" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "KLEIN JACINTO", + "timestamp": "2021-02-10" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "ALTENWERTH CALI", + "timestamp": "2018-06-18" } ], "associatedSites": [ { - "dateNoted": "2019-02-14", + "dateNoted": "2016-12-31", "notes": "", - "parcelID": "20081", - "siteID": "19897", - "siteRegistry": false + "parcelID": "20606", + "siteID": "17078", + "siteRegistry": true }, { - "dateNoted": "2014-11-27", + "dateNoted": "2014-08-12", "notes": "", - "parcelID": "19046", - "siteID": "19351", - "siteRegistry": true + "parcelID": "16362", + "siteID": "20571", + "siteRegistry": false }, { - "dateNoted": "2018-08-17", + "dateNoted": "2023-06-21", "notes": "", - "parcelID": "20554", - "siteID": "19039", + "parcelID": "18626", + "siteID": "15327", "siteRegistry": true } ] }, { - "uuid": "850851e6-37d2-4a5e-a954-0f450d4e4329", - "siteID": 19037, - "address": "48047 Shemar Brook", - "latitude": 54.3772, - "longitude": -121.2118, - "lastUpdated": "2023-05-30", - "city": "Schultzberg", - "region": " North Coast", - "victoriaFile": "26250-20/18925", + "uuid": "1b2dfbfa-9c98-4033-a2e5-9d20e00cbc9a", + "siteID": 16715, + "address": "44227 Betty Square", + "latitude": 52.982, + "longitude": -132.2525, + "lastUpdated": "2022-09-14", + "city": "Ashleeborough", + "region": "Cariboo", + "victoriaFile": "26250-20/19600", "regionalFile": "N/A", "parcelIDs": [ - 7979273, - 701794, - 2969400, - 7529479, - 9198961 + 7932952, + 8266127, + 397820, + 4508235, + 4672033 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2014-01-20", - "completed": "2021-12-18", - "initiated": "2019-09-19", - "ministryContact": "FLATLEY-LEBSACK VERDA", + "createdAt": "2015-08-10", + "completed": "2019-08-25", + "initiated": "2022-01-28", + "ministryContact": "WATSICA HOYT", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -23015,36 +31697,36 @@ { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true } ], "siteRegistry": false }, { - "createdAt": "2013-11-18", - "completed": "2016-06-27", - "initiated": "2018-11-26", - "ministryContact": "DACH EVALYN", + "createdAt": "2015-06-01", + "completed": "2022-12-29", + "initiated": "2021-12-02", + "ministryContact": "GERHOLD RAHSAAN", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -23054,27 +31736,22 @@ "notationParticipants": [ { "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2020-05-14", - "completed": "2022-04-19", - "initiated": "2022-12-29", - "ministryContact": "MOEN DREW", + "createdAt": "2021-10-18", + "completed": "2019-01-13", + "initiated": "2017-01-05", + "ministryContact": "ONDRICKA SAVANNA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -23084,8 +31761,23 @@ "notationParticipants": [ { "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", @@ -23096,10 +31788,10 @@ "siteRegistry": false }, { - "createdAt": "2014-02-02", - "completed": "2017-05-26", - "initiated": "2022-04-10", - "ministryContact": "D'AMORE WILLIS", + "createdAt": "2015-02-22", + "completed": "2014-04-25", + "initiated": "2018-05-23", + "ministryContact": "ZEMLAK BURDETTE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -23109,28 +31801,28 @@ "notationParticipants": [ { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false + "role": "SUBMITTED BY", + "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false } ], "participants": [ { - "name": "AMET, DOLOR SIT", - "endDate": "2016-12-29", - "startDate": "2017-04-26", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2019-02-05", + "startDate": "2018-04-20", "notes": "", "roles": [ "EMPLOYEE" @@ -23139,18 +31831,28 @@ }, { "name": "SHELL CANADA PRODUCTS", - "endDate": "2018-05-19", - "startDate": "2020-12-30", + "endDate": "2022-04-21", + "startDate": "2016-07-07", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": true + "siteRegistry": false + }, + { + "name": "AMET, DOLOR SIT", + "endDate": "2020-07-09", + "startDate": "2017-06-26", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2017-03-25", - "startDate": "2016-06-29", + "endDate": "2020-04-07", + "startDate": "2019-12-01", "notes": "", "roles": [ "ORGANIZATION" @@ -23159,50 +31861,150 @@ }, { "name": "SHELL CANADA PRODUCTS", - "endDate": "2020-08-14", - "startDate": "2023-06-30", + "endDate": "2017-09-10", + "startDate": "2021-02-12", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": true } ], + "suspectLandUses": [ + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2017-09-05 (described on Site Profile dated 2017-09-05)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2020-04-21 (described on Site Profile dated 2020-04-21)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + } + ], + "siteDisclosures": [ + { + "siteRegistry": false, + "dateReceived": "2013-12-21", + "dateCompleted": "2022-12-08", + "dateEntered": "2023-02-01", + "dateRegistrar": "2017-12-29", + "dateLocalAuthorityReceived": "2014-01-01", + "summary": "Dolorem sint totam distinctio quisquam ea consequatur quaerat.", + "informationUsed": "Temporibus facere repellendus fugiat incidunt.\nVelit vero cupiditate quibusdam.\nVoluptatem eaque ad placeat quos sunt earum dolore.", + "pastOrPresentOrders": "Optio sed explicabo.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + } + ] + } + ], + "activityLog": [ + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "WEHNER EMERALD", + "timestamp": "2014-01-03" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "ROGAHN DAHLIA", + "timestamp": "2017-10-16" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "SPORER-STREICH BOBBIE", + "timestamp": "2020-11-20" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "WALKER JERROLD", + "timestamp": "2022-08-16" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "WALTER TRISTON", + "timestamp": "2015-12-31" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "BREITENBERG JAYLAN", + "timestamp": "2014-09-13" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "WATERS HALIE", + "timestamp": "2014-06-28" + } + ], "associatedSites": [ { - "dateNoted": "2023-07-06", + "dateNoted": "2019-12-20", + "notes": "", + "parcelID": "20569", + "siteID": "16701", + "siteRegistry": false + }, + { + "dateNoted": "2019-06-02", + "notes": "", + "parcelID": "16281", + "siteID": "20188", + "siteRegistry": true + }, + { + "dateNoted": "2022-06-22", "notes": "", - "parcelID": "15713", - "siteID": "18497", + "parcelID": "15736", + "siteID": "19077", "siteRegistry": false } ] }, { - "uuid": "3c9a2d33-cf8c-46dd-aad3-285fee3aee2f", - "siteID": 17567, - "address": "6875 Javonte Mews", - "latitude": 48.6385, - "longitude": -124.1532, - "lastUpdated": "2022-02-09", - "city": "New Graciela", - "region": "Vancouver Island/Coast", - "victoriaFile": "26250-20/11223", + "uuid": "040ef3be-6a44-4812-b255-406372491c00", + "siteID": 18839, + "address": "1692 Audie Mews", + "latitude": 52.989, + "longitude": -130.4234, + "lastUpdated": "2013-11-29", + "city": "West Brando", + "region": "Mainland/Southwest", + "victoriaFile": "26250-20/17066", "regionalFile": "N/A", "parcelIDs": [ - 6499946, - 7476585, - 8975223, - 176689, - 1074160 + 3750179, + 4403237, + 3674941, + 2671936, + 3548685 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2021-06-02", - "completed": "2016-02-01", - "initiated": "2022-08-01", - "ministryContact": "BALISTRERI AIDAN", + "createdAt": "2018-01-22", + "completed": "2017-01-24", + "initiated": "2019-06-16", + "ministryContact": "LOWE EMMETT", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -23210,49 +32012,19 @@ "" ], "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - } - ], - "siteRegistry": true - }, - { - "createdAt": "2018-11-30", - "completed": "2015-01-29", - "initiated": "2015-07-08", - "ministryContact": "BRAKUS EPHRAIM", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": false }, { @@ -23261,13 +32033,13 @@ "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2017-09-27", - "completed": "2022-11-19", - "initiated": "2018-05-19", - "ministryContact": "HAGENES VICKIE", + "createdAt": "2019-10-10", + "completed": "2015-10-10", + "initiated": "2018-01-25", + "ministryContact": "STEUBER KOLBY", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -23278,17 +32050,7 @@ { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", @@ -23296,7 +32058,7 @@ "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false } @@ -23307,74 +32069,198 @@ "participants": [ { "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2022-11-19", - "startDate": "2020-05-08", + "endDate": "2021-09-27", + "startDate": "2014-10-31", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], - "siteRegistry": false + "siteRegistry": true }, { "name": "AMET, DOLOR SIT", - "endDate": "2018-10-25", - "startDate": "2015-05-07", + "endDate": "2020-05-09", + "startDate": "2018-10-21", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2019-12-21", + "startDate": "2018-02-17", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "name": "IPSUM", + "endDate": "2021-09-13", + "startDate": "2015-08-07", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + } + ], + "suspectLandUses": [ + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2014-07-19 (described on Site Profile dated 2014-07-19)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2021-10-30 (described on Site Profile dated 2021-10-30)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2021-04-01 (described on Site Profile dated 2021-04-01)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + } + ], + "siteDisclosures": [ + { + "siteRegistry": true, + "dateReceived": "2016-02-09", + "dateCompleted": "2014-10-11", + "dateEntered": "2023-05-16", + "dateRegistrar": "2021-08-25", + "dateLocalAuthorityReceived": "2022-02-26", + "summary": "Sint quasi iste beatae.", + "informationUsed": "Debitis ut tempora deserunt deserunt.\nAlias aut assumenda autem eum inventore qui porro consequatur.\nSunt quo qui voluptas dignissimos.\nOdit fuga asperiores voluptas sapiente sint similique corrupti sit.\nId recusandae tempore a dolorum voluptate sunt corporis ipsa adipisci.", + "pastOrPresentOrders": "Doloremque necessitatibus reprehenderit tempore expedita molestiae at fugiat veniam.\nNemo expedita debitis distinctio accusamus repudiandae.\nEligendi rem dolorem perspiciatis molestiae.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + } + ] + } + ], + "activityLog": [ + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "AUFDERHAR NICOLA", + "timestamp": "2021-03-29" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "CHRISTIANSEN HELENE", + "timestamp": "2018-03-10" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "WIEGAND ELZA", + "timestamp": "2021-05-25" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "VEUM TRUDIE", + "timestamp": "2023-06-19" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "BECHTELAR LENNA", + "timestamp": "2018-08-18" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "SAUER KARI", + "timestamp": "2020-05-19" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "OKUNEVA AILEEN", + "timestamp": "2017-11-19" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "SCHULIST GENOVEVA", + "timestamp": "2022-06-05" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "CORWIN THEODORE", + "timestamp": "2015-11-23" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "HEATHCOTE HILTON", + "timestamp": "2020-05-24" } ], "associatedSites": [ { - "dateNoted": "2020-08-04", + "dateNoted": "2023-04-10", "notes": "", - "parcelID": "15405", - "siteID": "19897", - "siteRegistry": true + "parcelID": "16651", + "siteID": "17309", + "siteRegistry": false }, { - "dateNoted": "2015-08-31", + "dateNoted": "2014-11-12", "notes": "", - "parcelID": "19306", - "siteID": "18775", + "parcelID": "20927", + "siteID": "18403", "siteRegistry": true }, { - "dateNoted": "2016-11-01", + "dateNoted": "2015-12-31", "notes": "", - "parcelID": "18600", - "siteID": "18047", - "siteRegistry": false + "parcelID": "18256", + "siteID": "17419", + "siteRegistry": true } ] }, { - "uuid": "fb37aab9-9681-46f9-81a2-8aea69e193e5", - "siteID": 19897, - "address": "32697 Luettgen Mews", - "latitude": 57.6132, - "longitude": -135.4502, - "lastUpdated": "2019-02-06", - "city": "Fort Rachelle", - "region": "Mainland/Southwest", - "victoriaFile": "26250-20/8542", + "uuid": "4303bcb4-5378-4e7c-9a27-f55f8067b799", + "siteID": 16813, + "address": "94220 Noemy Stravenue", + "latitude": 58.7078, + "longitude": -134.2468, + "lastUpdated": "2014-05-01", + "city": "East Ryleighborough", + "region": "Cariboo", + "victoriaFile": "26250-20/4596", "regionalFile": "N/A", "parcelIDs": [ - 2435849, - 5928742, - 6482967, - 8361599, - 5689784 + 8872278, + 5569404, + 842381, + 1426995, + 8079966 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2017-01-26", - "completed": "2022-10-09", - "initiated": "2014-08-05", - "ministryContact": "KOCH TYREL", + "createdAt": "2016-03-27", + "completed": "2020-08-29", + "initiated": "2018-10-18", + "ministryContact": "CASSIN VITO", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -23382,19 +32268,9 @@ "" ], "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", "siteRegistry": true }, { @@ -23406,10 +32282,10 @@ "siteRegistry": true }, { - "createdAt": "2020-07-23", - "completed": "2014-12-03", - "initiated": "2019-07-16", - "ministryContact": "CORMIER NOEMIE", + "createdAt": "2022-06-30", + "completed": "2020-10-12", + "initiated": "2016-04-23", + "ministryContact": "BOYER LEATHA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -23418,23 +32294,28 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2021-03-31", - "completed": "2014-11-02", - "initiated": "2016-11-08", - "ministryContact": "WEBER EMELIE", + "createdAt": "2017-07-15", + "completed": "2023-01-26", + "initiated": "2023-03-04", + "ministryContact": "BRADTKE CANDIDO", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -23448,28 +32329,33 @@ "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false } ], "siteRegistry": true }, { - "createdAt": "2020-10-05", - "completed": "2019-01-08", - "initiated": "2021-06-28", - "ministryContact": "STEUBER ALEXANDREA", + "createdAt": "2016-12-11", + "completed": "2014-04-10", + "initiated": "2017-11-02", + "ministryContact": "JOHNSON CASSIE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -23478,23 +32364,23 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2021-10-25", - "completed": "2016-01-30", - "initiated": "2019-05-28", - "ministryContact": "LEHNER ILIANA", + "createdAt": "2021-05-19", + "completed": "2018-07-26", + "initiated": "2021-06-27", + "ministryContact": "POUROS JEROD", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -23505,17 +32391,12 @@ { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false } ], "siteRegistry": false @@ -23523,19 +32404,9 @@ ], "participants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2020-03-24", - "startDate": "2015-01-19", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2020-12-22", - "startDate": "2017-08-23", + "name": "IPSUM", + "endDate": "2020-12-09", + "startDate": "2022-10-10", "notes": "", "roles": [ "EMPLOYEE" @@ -23543,65 +32414,158 @@ "siteRegistry": true }, { - "name": "AMET, DOLOR SIT", - "endDate": "2019-08-25", - "startDate": "2016-06-08", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2021-10-29", + "startDate": "2022-02-05", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": true + "siteRegistry": false } ], - "associatedSites": [ + "suspectLandUses": [ { - "dateNoted": "2015-02-07", - "notes": "", - "parcelID": "19051", - "siteID": "17976", - "siteRegistry": false + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2019-05-09 (described on Site Profile dated 2019-05-09)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "dateNoted": "2018-07-13", - "notes": "", - "parcelID": "15677", - "siteID": "19243", - "siteRegistry": true + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2020-08-24 (described on Site Profile dated 2020-08-24)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2018-08-28 (described on Site Profile dated 2018-08-28)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2018-02-22 (described on Site Profile dated 2018-02-22)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + } + ], + "siteDisclosures": [ + { + "siteRegistry": false, + "dateReceived": "2016-03-08", + "dateCompleted": "2015-10-30", + "dateEntered": "2015-01-07", + "dateRegistrar": "2021-03-06", + "dateLocalAuthorityReceived": "2016-02-23", + "summary": "Ducimus id ipsam ipsa rem.", + "informationUsed": "Voluptatum beatae rerum voluptatibus voluptatibus non doloremque.\nSint veritatis voluptates aliquid facilis tempora molestias.\nDucimus dolorum nemo ut eum hic in.", + "pastOrPresentOrders": "Voluptate at facilis velit fugit asperiores facere.\nLaboriosam harum temporibus consequatur.\nRepellendus asperiores distinctio incidunt.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + } + ] + }, + { + "siteRegistry": false, + "dateReceived": "2023-04-30", + "dateCompleted": "2017-12-18", + "dateEntered": "2017-02-24", + "dateRegistrar": "2015-04-04", + "dateLocalAuthorityReceived": "2021-02-25", + "summary": "Incidunt suscipit occaecati dicta est ullam.\nVelit minima eligendi unde natus laborum reprehenderit alias ab eos.\nAd quaerat voluptatum dolore numquam asperiores.", + "informationUsed": "Perspiciatis minima quam hic nisi suscipit.\nPraesentium nesciunt mollitia eius maiores odit.\nCupiditate accusantium sapiente in dolorum nam laboriosam rerum a exercitationem.", + "pastOrPresentOrders": "Hic aut maiores culpa quidem corporis.\nAutem tenetur consequatur esse hic magni.\nTempore blanditiis iste ab molestias commodi provident a odit vero.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + } + ] + } + ], + "activityLog": [ + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "KLOCKO-HACKETT MARGRET", + "timestamp": "2019-05-03" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "QUITZON VLADIMIR", + "timestamp": "2021-01-20" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "CONSIDINE NELDA", + "timestamp": "2017-01-04" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "RIPPIN KRISTOFER", + "timestamp": "2014-08-30" }, { - "dateNoted": "2022-08-06", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "MITCHELL OTHA", + "timestamp": "2014-02-06" + } + ], + "associatedSites": [ + { + "dateNoted": "2020-09-23", "notes": "", - "parcelID": "19297", - "siteID": "15666", - "siteRegistry": false + "parcelID": "20831", + "siteID": "19019", + "siteRegistry": true } ] }, { - "uuid": "1dbc6327-2701-4793-81cb-748c17cea261", - "siteID": 17518, - "address": "2780 Zulauf Knolls", - "latitude": 55.4365, - "longitude": -129.1951, - "lastUpdated": "2017-01-07", - "city": "New Rossie", - "region": "Mainland/Southwest", - "victoriaFile": "26250-20/11766", + "uuid": "00c69cd3-5e06-487a-b7d6-98f06cc4b8b5", + "siteID": 19962, + "address": "1372 Jayde Hollow", + "latitude": 52.8384, + "longitude": -130.0149, + "lastUpdated": "2020-09-08", + "city": "Abelfurt", + "region": "Cariboo", + "victoriaFile": "26250-20/8833", "regionalFile": "N/A", "parcelIDs": [ - 6874021, - 7358011, - 4566935, - 3152145, - 3722948 + 7105355, + 4197046, + 4273063, + 1305937, + 8140763 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2019-06-08", - "completed": "2016-07-02", - "initiated": "2014-08-23", - "ministryContact": "LARSON ELIANE", + "createdAt": "2015-12-15", + "completed": "2020-02-06", + "initiated": "2014-11-10", + "ministryContact": "GRADY ALEXANDRIA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -23610,27 +32574,12 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true } @@ -23638,10 +32587,10 @@ "siteRegistry": true }, { - "createdAt": "2016-03-25", - "completed": "2022-01-20", - "initiated": "2014-07-09", - "ministryContact": "PADBERG VANESSA", + "createdAt": "2016-08-16", + "completed": "2017-11-06", + "initiated": "2019-11-01", + "ministryContact": "BOTSFORD CODY", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -23651,43 +32600,58 @@ "notationParticipants": [ { "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false + "role": "REQUESTED BY", + "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false } ], "participants": [ { - "name": "AMET, DOLOR SIT", - "endDate": "2021-08-25", - "startDate": "2017-06-07", + "name": "IPSUM", + "endDate": "2016-01-13", + "startDate": "2019-04-22", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2019-05-17", + "startDate": "2016-10-14", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", - "endDate": "2019-07-18", - "startDate": "2019-04-15", + "endDate": "2021-07-08", + "startDate": "2015-07-06", "notes": "", "roles": [ "ORGANIZATION" @@ -23696,64 +32660,169 @@ }, { "name": "AMET, DOLOR SIT", - "endDate": "2017-06-26", - "startDate": "2023-06-25", + "endDate": "2016-04-27", + "startDate": "2022-05-14", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": false } ], - "associatedSites": [ + "suspectLandUses": [ { - "dateNoted": "2023-08-29", - "notes": "", - "parcelID": "18275", - "siteID": "15222", - "siteRegistry": false + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2023-08-02 (described on Site Profile dated 2023-08-02)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2014-03-30 (described on Site Profile dated 2014-03-30)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2018-12-31 (described on Site Profile dated 2018-12-31)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2019-12-03 (described on Site Profile dated 2019-12-03)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2014-01-27 (described on Site Profile dated 2014-01-27)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + } + ], + "siteDisclosures": [ + { + "siteRegistry": true, + "dateReceived": "2022-07-07", + "dateCompleted": "2015-08-17", + "dateEntered": "2021-10-28", + "dateRegistrar": "2017-05-22", + "dateLocalAuthorityReceived": "2017-11-08", + "summary": "Deserunt voluptatibus dolore quae incidunt ullam.\nAccusantium eveniet quibusdam laboriosam accusantium sapiente eius libero voluptatibus.", + "informationUsed": "Soluta aspernatur sequi repellat fugiat possimus soluta.\nMagni perferendis impedit incidunt magnam dolorum id blanditiis.\nMagni magni minus nam quo inventore quasi.\nIncidunt eum repellat.\nVoluptatum quidem aperiam velit perferendis totam maiores.", + "pastOrPresentOrders": "Ut consequuntur minima mollitia quisquam odio fugiat dolore suscipit.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + } + ] + }, + { + "siteRegistry": false, + "dateReceived": "2017-03-13", + "dateCompleted": "2020-03-26", + "dateEntered": "2014-12-06", + "dateRegistrar": "2021-08-19", + "dateLocalAuthorityReceived": "2023-09-26", + "summary": "Saepe deleniti non eius.\nDolorum adipisci dolorum deserunt quos accusantium doloremque cupiditate.\nLibero accusamus vitae facilis beatae.", + "informationUsed": "Occaecati aut quae assumenda nesciunt soluta dolorem nesciunt id.\nNumquam pariatur dolores.\nBlanditiis animi quos quibusdam perferendis placeat voluptatibus culpa officiis eius.\nAccusantium illo ab debitis optio.", + "pastOrPresentOrders": "Vero modi odit dolor.\nQuod impedit voluptates id minus.\nEa ut tempore dolorem.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + } + ] + } + ], + "activityLog": [ + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "KOSS MARLEE", + "timestamp": "2020-02-22" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "STROMAN STANTON", + "timestamp": "2019-06-02" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "CONN CHELSIE", + "timestamp": "2023-07-22" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "FRANEY GRANT", + "timestamp": "2020-01-10" }, { - "dateNoted": "2014-03-02", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "WEBER BURLEY", + "timestamp": "2013-12-10" + } + ], + "associatedSites": [ + { + "dateNoted": "2019-03-29", "notes": "", - "parcelID": "16679", - "siteID": "20717", + "parcelID": "19800", + "siteID": "15594", "siteRegistry": false }, { - "dateNoted": "2021-06-15", + "dateNoted": "2021-08-10", "notes": "", - "parcelID": "20202", - "siteID": "16673", - "siteRegistry": true + "parcelID": "17186", + "siteID": "19899", + "siteRegistry": false } ] }, { - "uuid": "0c954b38-7607-4be2-9a98-618d949109f4", - "siteID": 19039, - "address": "955 Blair Village", - "latitude": 50.7317, - "longitude": -135.4352, - "lastUpdated": "2016-03-27", - "city": "Gradyboro", - "region": "Cariboo", - "victoriaFile": "26250-20/5203", + "uuid": "324709da-9e3c-41da-baea-4cb50c974c90", + "siteID": 19397, + "address": "8017 Shanny Island", + "latitude": 53.1126, + "longitude": -130.5647, + "lastUpdated": "2019-01-16", + "city": "West Eltontown", + "region": " North Coast", + "victoriaFile": "26250-20/1794", "regionalFile": "N/A", "parcelIDs": [ - 7347772, - 6063762, - 7838760, - 1868462, - 7361451 + 907414, + 889772, + 8686743, + 7011239, + 1727480 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2019-03-20", - "completed": "2019-10-18", - "initiated": "2016-01-04", - "ministryContact": "LEMKE WILHELMINE", + "createdAt": "2022-10-19", + "completed": "2020-11-13", + "initiated": "2023-02-24", + "ministryContact": "LEHNER AMARI", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -23766,29 +32835,19 @@ "role": "SUBMITTED BY", "siteRegistry": false }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2023-08-12", - "completed": "2015-12-06", - "initiated": "2014-11-23", - "ministryContact": "OLSON-ERDMAN LINDSAY", + "createdAt": "2016-10-21", + "completed": "2022-04-29", + "initiated": "2020-08-09", + "ministryContact": "VONRUEDEN LUZ", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -23801,43 +32860,13 @@ "role": "SUBMITTED BY", "siteRegistry": true }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - } - ], - "siteRegistry": true - }, - { - "createdAt": "2019-04-26", - "completed": "2016-05-20", - "initiated": "2022-07-01", - "ministryContact": "O'CONNELL THEODORA", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false }, @@ -23849,16 +32878,16 @@ { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2019-09-05", - "completed": "2022-06-03", - "initiated": "2021-10-23", - "ministryContact": "MCKENZIE MARGOT", + "createdAt": "2020-02-11", + "completed": "2016-07-03", + "initiated": "2015-03-16", + "ministryContact": "GUTKOWSKI EZEQUIEL", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -23866,75 +32895,35 @@ "" ], "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true } ], - "siteRegistry": true - }, - { - "createdAt": "2021-05-24", - "completed": "2018-03-04", - "initiated": "2019-05-28", - "ministryContact": "JENKINS DEBORAH", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - } - ], - "siteRegistry": true + "siteRegistry": false } ], "participants": [ { "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2019-11-23", - "startDate": "2020-11-20", + "endDate": "2016-03-02", + "startDate": "2014-07-09", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2023-06-11", + "startDate": "2019-07-25", "notes": "", "roles": [ "EMPLOYEE" @@ -23942,9 +32931,29 @@ "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2022-02-24", - "startDate": "2021-10-11", + "name": "IPSUM", + "endDate": "2020-05-19", + "startDate": "2015-05-11", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "name": "IPSUM", + "endDate": "2019-03-01", + "startDate": "2014-06-12", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "name": "IPSUM", + "endDate": "2017-09-15", + "startDate": "2023-02-21", "notes": "", "roles": [ "EMPLOYEE" @@ -23952,48 +32961,144 @@ "siteRegistry": false } ], - "associatedSites": [ + "suspectLandUses": [ { - "dateNoted": "2019-06-19", - "notes": "", - "parcelID": "18095", - "siteID": "20017", - "siteRegistry": true + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2016-09-02 (described on Site Profile dated 2016-09-02)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2023-01-22 (described on Site Profile dated 2023-01-22)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + } + ], + "siteDisclosures": [ + { + "siteRegistry": true, + "dateReceived": "2018-07-03", + "dateCompleted": "2014-11-02", + "dateEntered": "2019-05-19", + "dateRegistrar": "2022-10-09", + "dateLocalAuthorityReceived": "2014-10-14", + "summary": "Quia commodi ea tempora saepe.\nSaepe harum labore debitis non eaque.", + "informationUsed": "Nostrum enim quaerat.\nFacilis ratione similique possimus minus quaerat consequatur suscipit magnam voluptatibus.\nAssumenda amet distinctio doloremque.\nFuga voluptatum iusto asperiores nemo illo porro aperiam.\nEx nam iure repudiandae quibusdam facere at animi modi itaque.", + "pastOrPresentOrders": "Voluptates facere quasi totam laboriosam ex voluptatum.\nNobis magni numquam.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + } + ] + } + ], + "activityLog": [ + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "CREMIN MARCELLE", + "timestamp": "2021-05-01" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "WITTING D'ANGELO", + "timestamp": "2017-12-01" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "MORISSETTE RANDALL", + "timestamp": "2014-09-26" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "LARKIN MORGAN", + "timestamp": "2022-02-13" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "LEUSCHKE ISAC", + "timestamp": "2022-10-22" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "TOWNE VERDA", + "timestamp": "2021-11-12" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "BLICK JULIAN", + "timestamp": "2017-01-26" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "MANN ALIYAH", + "timestamp": "2020-10-28" }, { - "dateNoted": "2016-12-08", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "MONAHAN RODRIGO", + "timestamp": "2014-12-27" + } + ], + "associatedSites": [ + { + "dateNoted": "2021-06-18", "notes": "", - "parcelID": "17944", - "siteID": "15656", + "parcelID": "18813", + "siteID": "16920", "siteRegistry": true } ] }, { - "uuid": "d61bf6df-f5f7-4843-88b9-2a77069cfdb1", - "siteID": 16966, - "address": "51575 Brianne Throughway", - "latitude": 49.0904, - "longitude": -134.9505, - "lastUpdated": "2015-07-09", - "city": "Mustafaland", - "region": "Kootenay", - "victoriaFile": "26250-20/14166", + "uuid": "ec598427-32cf-456a-a73a-e16768248aad", + "siteID": 16330, + "address": "2539 Cassidy Club", + "latitude": 49.6501, + "longitude": -129.0877, + "lastUpdated": "2016-10-08", + "city": "DeSoto", + "region": "Thompson-Okanagan", + "victoriaFile": "26250-20/16616", "regionalFile": "N/A", "parcelIDs": [ - 9075448, - 708597, - 121240, - 6708919, - 8312465 + 706480, + 4356277, + 7058659, + 7124027, + 7943109 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2016-11-19", - "completed": "2019-12-01", - "initiated": "2014-08-01", - "ministryContact": "MCKENZIE MACK", + "createdAt": "2023-04-03", + "completed": "2016-07-30", + "initiated": "2021-04-23", + "ministryContact": "STREICH TIA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -24002,8 +33107,8 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", "siteRegistry": true }, { @@ -24013,33 +33118,13 @@ }, { "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - } - ], - "siteRegistry": false - }, - { - "createdAt": "2020-09-16", - "completed": "2017-10-28", - "initiated": "2015-04-21", - "ministryContact": "DOUGLAS EZRA", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", @@ -24050,10 +33135,10 @@ "siteRegistry": true }, { - "createdAt": "2016-09-30", - "completed": "2016-08-06", - "initiated": "2017-08-01", - "ministryContact": "DICKINSON KRYSTAL", + "createdAt": "2020-11-29", + "completed": "2016-12-08", + "initiated": "2017-10-31", + "ministryContact": "KESSLER ALBERTA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -24063,27 +33148,22 @@ "notationParticipants": [ { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true + "role": "REQUESTED BY", + "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2022-12-30", - "completed": "2020-12-24", - "initiated": "2013-10-05", - "ministryContact": "NIKOLAUS VIRGINIA", + "createdAt": "2019-01-28", + "completed": "2015-01-25", + "initiated": "2014-07-29", + "ministryContact": "GREENHOLT AMYA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -24093,21 +33173,26 @@ "notationParticipants": [ { "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true + "role": "SUBMITTED BY", + "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false } @@ -24117,9 +33202,9 @@ ], "participants": [ { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2021-09-26", - "startDate": "2018-01-11", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2017-06-25", + "startDate": "2019-01-31", "notes": "", "roles": [ "ORGANIZATION" @@ -24127,81 +33212,154 @@ "siteRegistry": true }, { - "name": "AMET, DOLOR SIT", - "endDate": "2017-08-30", - "startDate": "2019-03-02", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2015-07-07", + "startDate": "2017-08-20", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": false + "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2018-05-07", - "startDate": "2017-02-02", + "name": "AMET, DOLOR SIT", + "endDate": "2022-01-22", + "startDate": "2014-02-15", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": false + "siteRegistry": true + } + ], + "suspectLandUses": [ + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2016-05-16 (described on Site Profile dated 2016-05-16)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2017-06-15", - "startDate": "2016-06-30", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": false + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2021-05-27 (described on Site Profile dated 2021-05-27)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + } + ], + "siteDisclosures": [ + { + "siteRegistry": false, + "dateReceived": "2021-10-22", + "dateCompleted": "2019-03-02", + "dateEntered": "2023-08-31", + "dateRegistrar": "2021-04-26", + "dateLocalAuthorityReceived": "2017-09-05", + "summary": "Sint illum cum.", + "informationUsed": "Suscipit illo quidem illum quisquam.\nExplicabo iusto distinctio iusto maxime dolorum dicta explicabo.\nPerspiciatis dolores tempore ea praesentium eligendi sunt.", + "pastOrPresentOrders": "Vitae soluta excepturi sint tempora saepe deleniti.\nQuibusdam culpa recusandae quis quos.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + } + ] + } + ], + "activityLog": [ + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "KESSLER FABIOLA", + "timestamp": "2022-02-11" }, { - "name": "AMET, DOLOR SIT", - "endDate": "2017-01-29", - "startDate": "2018-09-18", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": true + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "SPINKA GILES", + "timestamp": "2017-07-19" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "GORCZANY ALYSA", + "timestamp": "2014-11-25" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "MCCLURE-MCKENZIE ZION", + "timestamp": "2021-10-27" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "GUTKOWSKI GUADALUPE", + "timestamp": "2021-07-03" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "PFEFFER SCOTTIE", + "timestamp": "2015-05-29" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "NIKOLAUS BESSIE", + "timestamp": "2013-10-20" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "GOLDNER JUDAH", + "timestamp": "2014-06-17" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "GUSIKOWSKI BETTYE", + "timestamp": "2015-06-27" } ], "associatedSites": [ { - "dateNoted": "2023-08-02", + "dateNoted": "2016-06-01", "notes": "", - "parcelID": "20047", - "siteID": "15822", + "parcelID": "18234", + "siteID": "19306", "siteRegistry": true } ] }, { - "uuid": "ff1c4f62-75bf-4b4a-b777-fb2fc9b019c2", - "siteID": 17908, - "address": "604 Turcotte Ridge", - "latitude": 55.2776, - "longitude": -135.9238, - "lastUpdated": "2014-12-20", - "city": "Mistytown", - "region": "Thompson-Okanagan", - "victoriaFile": "26250-20/7567", + "uuid": "5ea028df-bbeb-4b8a-aad7-0402ac4a6bbc", + "siteID": 18243, + "address": "5294 Hamill Trace", + "latitude": 50.6202, + "longitude": -124.4275, + "lastUpdated": "2021-01-18", + "city": "Fort Viola", + "region": "Vancouver Island/Coast", + "victoriaFile": "26250-20/11077", "regionalFile": "N/A", "parcelIDs": [ - 9994175, - 7323560, - 2696498, - 4797949, - 5620375 + 5011828, + 8613576, + 8679934, + 7926120, + 4276846 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2015-02-05", - "completed": "2020-11-15", - "initiated": "2018-05-17", - "ministryContact": "CARTER BRAULIO", + "createdAt": "2020-02-13", + "completed": "2023-09-07", + "initiated": "2015-11-20", + "ministryContact": "BOGAN JERROLD", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -24210,17 +33368,12 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true } @@ -24228,10 +33381,10 @@ "siteRegistry": false }, { - "createdAt": "2023-01-31", - "completed": "2023-07-01", - "initiated": "2019-03-29", - "ministryContact": "WILDERMAN ARLIE", + "createdAt": "2019-11-12", + "completed": "2017-08-17", + "initiated": "2016-11-16", + "ministryContact": "KOCH FRIDA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -24242,16 +33395,16 @@ { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", "siteRegistry": true }, { @@ -24261,17 +33414,17 @@ }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false } ], "siteRegistry": false }, { - "createdAt": "2019-08-27", - "completed": "2021-03-09", - "initiated": "2017-11-07", - "ministryContact": "SIMONIS OSBALDO", + "createdAt": "2019-05-18", + "completed": "2014-05-02", + "initiated": "2022-01-22", + "ministryContact": "NIKOLAUS SHANON", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -24279,34 +33432,34 @@ "" ], "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, { "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false } ], "siteRegistry": true }, { - "createdAt": "2017-02-22", - "completed": "2021-09-09", - "initiated": "2020-04-24", - "ministryContact": "GLEASON JODY", + "createdAt": "2017-07-19", + "completed": "2020-11-22", + "initiated": "2023-05-31", + "ministryContact": "MARVIN BRIDGETTE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -24315,24 +33468,29 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true + "role": "SUBMITTED BY", + "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false } ], "siteRegistry": true @@ -24340,98 +33498,182 @@ ], "participants": [ { - "name": "AMET, DOLOR SIT", - "endDate": "2016-09-30", - "startDate": "2016-12-16", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2023-07-28", + "startDate": "2017-07-27", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": true }, { - "name": "IPSUM", - "endDate": "2021-07-05", - "startDate": "2020-10-12", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2017-12-04", + "startDate": "2017-10-25", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false + } + ], + "suspectLandUses": [ + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2019-10-29 (described on Site Profile dated 2019-10-29)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "name": "IPSUM", - "endDate": "2014-01-01", - "startDate": "2016-01-01", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": true + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2017-05-28 (described on Site Profile dated 2017-05-28)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "name": "IPSUM", - "endDate": "2023-03-03", - "startDate": "2014-01-31", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": true + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2018-09-28 (described on Site Profile dated 2018-09-28)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + } + ], + "siteDisclosures": [ + { + "siteRegistry": true, + "dateReceived": "2017-04-29", + "dateCompleted": "2016-09-23", + "dateEntered": "2014-06-16", + "dateRegistrar": "2017-04-16", + "dateLocalAuthorityReceived": "2018-12-01", + "summary": "Illo maiores repellendus sit voluptatem.", + "informationUsed": "Assumenda dolor laudantium doloremque vero.\nDoloremque atque ducimus delectus.\nTempora quos unde.\nSunt placeat excepturi.\nAssumenda dicta vel.", + "pastOrPresentOrders": "Omnis dolore cupiditate.\nVoluptas officia ipsum quam earum ut.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + } + ] + } + ], + "activityLog": [ + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "MCKENZIE CATALINA", + "timestamp": "2016-06-03" }, { - "name": "AMET, DOLOR SIT", - "endDate": "2021-06-15", - "startDate": "2019-07-02", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": true + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "BAHRINGER GABRIEL", + "timestamp": "2019-01-01" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "LARSON KALEIGH", + "timestamp": "2021-07-24" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "MURPHY GIOVANNY", + "timestamp": "2015-11-22" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "DICKI REID", + "timestamp": "2021-10-25" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "TOY-MORAR JAZMYN", + "timestamp": "2021-09-21" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "JAKUBOWSKI MITCHELL", + "timestamp": "2020-11-04" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "SAWAYN LORA", + "timestamp": "2014-10-15" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "LOWE KEELEY", + "timestamp": "2022-07-05" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "MAYERT MARCELLA", + "timestamp": "2019-03-24" } ], "associatedSites": [ { - "dateNoted": "2017-03-01", + "dateNoted": "2016-01-12", "notes": "", - "parcelID": "19396", - "siteID": "17164", + "parcelID": "16698", + "siteID": "17962", "siteRegistry": true }, { - "dateNoted": "2018-01-10", + "dateNoted": "2021-05-12", "notes": "", - "parcelID": "20056", - "siteID": "18049", + "parcelID": "19071", + "siteID": "18004", "siteRegistry": true } ] }, { - "uuid": "c0ea5231-3f5d-46ef-b7e3-39758b218e4c", - "siteID": 19243, - "address": "3464 Johnson Highway", - "latitude": 52.9682, - "longitude": -137.1133, - "lastUpdated": "2017-12-14", - "city": "Oro Valley", - "region": "Vancouver Island/Coast", - "victoriaFile": "26250-20/5710", + "uuid": "61268eac-e94c-4f10-940e-5c5025aef7cc", + "siteID": 20727, + "address": "9276 Moore Mews", + "latitude": 54.5384, + "longitude": -124.2229, + "lastUpdated": "2019-10-27", + "city": "Klockobury", + "region": " North Coast", + "victoriaFile": "26250-20/6474", "regionalFile": "N/A", "parcelIDs": [ - 8959265, - 3235001, - 9659890, - 1800927, - 9969802 + 9468879, + 1685868, + 5610259, + 4798680, + 7788084 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2023-05-25", - "completed": "2022-01-22", - "initiated": "2016-02-04", - "ministryContact": "GOLDNER JAVONTE", + "createdAt": "2016-04-20", + "completed": "2014-06-11", + "initiated": "2017-12-14", + "ministryContact": "FEEST DESTINEE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -24439,6 +33681,11 @@ "" ], "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", @@ -24447,7 +33694,7 @@ { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", @@ -24458,20 +33705,15 @@ "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false } ], "siteRegistry": true }, { - "createdAt": "2023-07-25", - "completed": "2023-04-18", - "initiated": "2020-02-02", - "ministryContact": "BROWN LINDSAY", + "createdAt": "2017-04-06", + "completed": "2017-12-30", + "initiated": "2016-09-04", + "ministryContact": "MRAZ ROWLAND", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -24487,31 +33729,21 @@ { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true } ], "siteRegistry": false }, { - "createdAt": "2015-09-22", - "completed": "2019-12-08", - "initiated": "2021-03-03", - "ministryContact": "HACKETT DERICK", + "createdAt": "2015-05-30", + "completed": "2022-02-21", + "initiated": "2021-08-30", + "ministryContact": "SCHAEFER MABEL", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -24521,17 +33753,22 @@ "notationParticipants": [ { "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": true }, { @@ -24543,10 +33780,10 @@ "siteRegistry": true }, { - "createdAt": "2021-03-25", - "completed": "2017-05-03", - "initiated": "2021-12-28", - "ministryContact": "LARKIN LUIS", + "createdAt": "2021-03-16", + "completed": "2019-01-21", + "initiated": "2020-10-15", + "ministryContact": "SHANAHAN GRAYCE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -24556,90 +33793,259 @@ "notationParticipants": [ { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false } ], "participants": [ { "name": "AMET, DOLOR SIT", - "endDate": "2019-05-29", - "startDate": "2015-05-14", + "endDate": "2015-05-28", + "startDate": "2017-01-19", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2017-12-25", + "startDate": "2016-07-02", + "notes": "", + "roles": [ + "ORGANIZATION" ], "siteRegistry": true }, { - "name": "IPSUM", - "endDate": "2018-04-09", - "startDate": "2018-11-04", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2023-09-22", + "startDate": "2019-03-10", "notes": "", "roles": [ "ORGANIZATION" ], "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2022-06-19", + "startDate": "2019-10-20", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2023-06-21", + "startDate": "2016-09-07", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + } + ], + "suspectLandUses": [ + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2017-05-23 (described on Site Profile dated 2017-05-23)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2014-06-05 (described on Site Profile dated 2014-06-05)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + } + ], + "siteDisclosures": [ + { + "siteRegistry": false, + "dateReceived": "2023-07-30", + "dateCompleted": "2016-01-04", + "dateEntered": "2017-12-01", + "dateRegistrar": "2017-05-17", + "dateLocalAuthorityReceived": "2016-07-31", + "summary": "Velit fuga non error quia recusandae expedita sed.", + "informationUsed": "Ratione neque laborum sunt et autem excepturi qui magnam quasi.\nNam repellat laborum repudiandae nihil autem doloremque laudantium similique.\nOfficia nisi adipisci labore.", + "pastOrPresentOrders": "Tempora odio pariatur veniam libero atque excepturi.\nRepudiandae tenetur debitis reiciendis possimus eaque.\nLabore quidem veritatis cupiditate.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + } + ] + }, + { + "siteRegistry": true, + "dateReceived": "2015-08-19", + "dateCompleted": "2022-05-29", + "dateEntered": "2015-06-02", + "dateRegistrar": "2015-12-04", + "dateLocalAuthorityReceived": "2018-03-22", + "summary": "Eaque omnis quis esse delectus natus saepe eum cum.\nMagni incidunt nisi necessitatibus optio ea repellat sunt.\nId doloremque tempore rerum dolore pariatur.", + "informationUsed": "Distinctio repellat nobis beatae blanditiis accusamus incidunt ratione perspiciatis.\nHarum itaque illo temporibus accusantium.\nEum debitis in molestias aliquam.\nFugiat quaerat accusamus blanditiis.", + "pastOrPresentOrders": "Fugiat modi expedita sequi animi tenetur reprehenderit optio.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + } + ] + } + ], + "activityLog": [ + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "HAAG ALVA", + "timestamp": "2020-07-04" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "SPORER JASON", + "timestamp": "2019-10-14" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "FEIL TERESA", + "timestamp": "2015-09-22" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "MAGGIO TITUS", + "timestamp": "2013-10-14" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "SANFORD BEULAH", + "timestamp": "2018-01-27" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "FADEL MARIE", + "timestamp": "2022-07-12" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "KLEIN SHAWNA", + "timestamp": "2015-03-08" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "PARISIAN MARCELLE", + "timestamp": "2016-08-31" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "WIEGAND HAILIE", + "timestamp": "2020-03-09" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "BERGNAUM LAURINE", + "timestamp": "2022-06-15" } ], "associatedSites": [ { - "dateNoted": "2015-02-11", + "dateNoted": "2019-10-09", "notes": "", - "parcelID": "17033", - "siteID": "16517", - "siteRegistry": false + "parcelID": "15230", + "siteID": "18188", + "siteRegistry": true + }, + { + "dateNoted": "2023-04-17", + "notes": "", + "parcelID": "18623", + "siteID": "17527", + "siteRegistry": true } ] }, { - "uuid": "02abf5a8-5ea7-4c90-ad16-14f26eb286dd", - "siteID": 17449, - "address": "36335 Robbie Parkways", - "latitude": 48.0459, - "longitude": -133.973, - "lastUpdated": "2015-06-12", - "city": "Lake Tobystead", + "uuid": "f1b89766-9d40-4707-aa5e-d1a8e69d2f06", + "siteID": 17945, + "address": "93747 Drew Pass", + "latitude": 56.9884, + "longitude": -135.5916, + "lastUpdated": "2013-12-13", + "city": "West Margarettashire", "region": "Thompson-Okanagan", - "victoriaFile": "26250-20/7211", + "victoriaFile": "26250-20/17253", "regionalFile": "N/A", "parcelIDs": [ - 5248166, - 3199598, - 3050301, - 4330821, - 1936142 + 9522138, + 4730961, + 6878812, + 8999912, + 9646959 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2017-12-06", - "completed": "2014-12-06", - "initiated": "2018-10-29", - "ministryContact": "CORKERY ELSE", + "createdAt": "2017-07-17", + "completed": "2020-02-25", + "initiated": "2013-11-04", + "ministryContact": "BOGISICH GUS", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -24648,23 +34054,28 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true } ], "siteRegistry": true }, { - "createdAt": "2016-02-21", - "completed": "2020-05-17", - "initiated": "2016-06-17", - "ministryContact": "FERRY TESS", + "createdAt": "2019-07-13", + "completed": "2014-03-25", + "initiated": "2015-05-31", + "ministryContact": "REICHERT LONNY", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -24675,144 +34086,246 @@ { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false } ], + "siteRegistry": false + } + ], + "participants": [ + { + "name": "AMET, DOLOR SIT", + "endDate": "2019-04-17", + "startDate": "2017-09-23", + "notes": "", + "roles": [ + "ORGANIZATION" + ], "siteRegistry": true }, { - "createdAt": "2014-06-22", - "completed": "2017-09-28", - "initiated": "2020-11-17", - "ministryContact": "BREKKE-MOHR SHANON", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" + "name": "SHELL CANADA PRODUCTS", + "endDate": "2015-05-27", + "startDate": "2016-11-25", + "notes": "", + "roles": [ + "ORGANIZATION" ], - "notationParticipants": [ + "siteRegistry": false + }, + { + "name": "IPSUM", + "endDate": "2014-11-01", + "startDate": "2015-04-21", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "name": "AMET, DOLOR SIT", + "endDate": "2019-11-18", + "startDate": "2018-01-11", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2014-04-21", + "startDate": "2023-07-18", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + } + ], + "suspectLandUses": [ + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2018-01-05 (described on Site Profile dated 2018-01-05)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2022-05-18 (described on Site Profile dated 2022-05-18)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2014-08-02 (described on Site Profile dated 2014-08-02)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2013-12-23 (described on Site Profile dated 2013-12-23)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + } + ], + "siteDisclosures": [ + { + "siteRegistry": false, + "dateReceived": "2021-03-14", + "dateCompleted": "2014-12-15", + "dateEntered": "2019-03-12", + "dateRegistrar": "2022-01-12", + "dateLocalAuthorityReceived": "2013-10-28", + "summary": "Placeat numquam illo reprehenderit dolor possimus voluptas.\nVeritatis voluptatum iusto laudantium iste.\nLibero repellendus velit.", + "informationUsed": "Eius rem itaque illo excepturi nesciunt id inventore.\nAtque delectus accusantium nulla nostrum.\nLibero corporis ea voluptas fugiat distinctio esse beatae nulla tempore.\nMolestiae officiis recusandae minima esse necessitatibus ad totam corporis ipsa.", + "pastOrPresentOrders": "Vitae expedita cum distinctio facilis quidem dolor voluptatibus et.", + "commercialAndIndustrialPurposes": [ { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false } - ], - "siteRegistry": true + ] }, { - "createdAt": "2022-01-20", - "completed": "2018-01-25", - "initiated": "2021-11-06", - "ministryContact": "RITCHIE SHAYNE", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ + "siteRegistry": true, + "dateReceived": "2019-04-12", + "dateCompleted": "2017-09-07", + "dateEntered": "2023-06-16", + "dateRegistrar": "2018-04-10", + "dateLocalAuthorityReceived": "2019-05-23", + "summary": "Velit sequi a ex officiis fugiat aperiam a exercitationem delectus.\nCum dolor officiis et repellendus provident.\nCorrupti totam saepe vero quae quae id.", + "informationUsed": "Dolorem distinctio molestias iste recusandae atque doloribus tenetur.\nAlias itaque at ut sunt facere delectus numquam aliquid rerum.\nOfficia ipsum nam illo odit nihil iusto voluptatum ab.\nMolestiae fugit tempora rerum.\nNatus amet voluptatibus nam non odio.", + "pastOrPresentOrders": "Dolores voluptas cum voluptatibus voluptas cumque adipisci sequi unde aut.\nRepellendus velit sunt consequuntur incidunt.", + "commercialAndIndustrialPurposes": [ { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true } - ], - "siteRegistry": false + ] } ], - "participants": [ + "activityLog": [ { - "name": "IPSUM", - "endDate": "2019-02-05", - "startDate": "2020-12-07", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": false + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "SCHAMBERGER EMMETT", + "timestamp": "2014-01-12" }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2015-05-17", - "startDate": "2019-12-07", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "TREUTEL GEORGETTE", + "timestamp": "2022-10-05" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "BOTSFORD HADLEY", + "timestamp": "2020-12-14" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "SCHINNER NELLE", + "timestamp": "2017-11-05" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "BECHTELAR ENOCH", + "timestamp": "2021-06-02" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "YUNDT DAYNE", + "timestamp": "2022-02-13" + } + ], + "associatedSites": [ + { + "dateNoted": "2022-06-28", "notes": "", - "roles": [ - "EMPLOYEE" - ], + "parcelID": "20312", + "siteID": "19075", "siteRegistry": false }, { - "name": "IPSUM", - "endDate": "2020-09-21", - "startDate": "2019-09-25", + "dateNoted": "2022-09-14", "notes": "", - "roles": [ - "EMPLOYEE" - ], + "parcelID": "16632", + "siteID": "15498", "siteRegistry": true - } - ], - "associatedSites": [ + }, { - "dateNoted": "2022-04-21", + "dateNoted": "2022-05-23", "notes": "", - "parcelID": "16345", - "siteID": "18026", + "parcelID": "20908", + "siteID": "20762", "siteRegistry": false } ] }, { - "uuid": "9a05fbce-f459-45b9-ac22-31882b0ea384", - "siteID": 16942, - "address": "1563 Haag Courts", - "latitude": 52.7198, - "longitude": -120.6518, - "lastUpdated": "2018-12-28", - "city": "Lake Rocioton", - "region": "Cariboo", - "victoriaFile": "26250-20/14521", + "uuid": "8cbbb3e5-1ac7-4a6e-b66b-2a718d911d79", + "siteID": 17962, + "address": "1536 Cole Mission", + "latitude": 54.619, + "longitude": -127.0047, + "lastUpdated": "2021-01-16", + "city": "Kossberg", + "region": " North Coast", + "victoriaFile": "26250-20/4052", "regionalFile": "N/A", "parcelIDs": [ - 5439447, - 6835373, - 1072963, - 6951370, - 8370519 + 7167744, + 7986753, + 6378019, + 8797028, + 1633968 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2021-08-05", - "completed": "2021-11-26", - "initiated": "2020-04-23", - "ministryContact": "BOTSFORD GARRISON", + "createdAt": "2023-09-25", + "completed": "2014-09-23", + "initiated": "2020-05-30", + "ministryContact": "JONES-JOHNSTON CORDELL", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -24822,11 +34335,16 @@ "notationParticipants": [ { "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false }, @@ -24837,22 +34355,42 @@ }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "createdAt": "2014-09-24", + "completed": "2021-01-11", + "initiated": "2021-01-07", + "ministryContact": "LIND HEAVEN", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2020-12-26", - "completed": "2015-10-07", - "initiated": "2015-07-28", - "ministryContact": "ADAMS ROWLAND", + "createdAt": "2023-01-22", + "completed": "2021-11-11", + "initiated": "2021-12-30", + "ministryContact": "CONN FREDERIK", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -24860,11 +34398,31 @@ "" ], "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true - }, + } + ], + "siteRegistry": true + }, + { + "createdAt": "2014-11-26", + "completed": "2022-08-28", + "initiated": "2018-03-18", + "ministryContact": "BRAKUS ASA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", @@ -24873,6 +34431,36 @@ { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "createdAt": "2020-05-11", + "completed": "2016-04-18", + "initiated": "2014-01-14", + "ministryContact": "RUSSEL REID", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": true } ], @@ -24881,88 +34469,164 @@ ], "participants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2021-03-03", - "startDate": "2023-07-14", + "name": "AMET, DOLOR SIT", + "endDate": "2017-06-10", + "startDate": "2015-08-21", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": true + "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2018-03-13", - "startDate": "2016-05-01", + "name": "IPSUM", + "endDate": "2020-06-12", + "startDate": "2021-02-22", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2021-03-10", - "startDate": "2015-11-20", + "name": "IPSUM", + "endDate": "2015-02-13", + "startDate": "2015-03-16", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": true + } + ], + "suspectLandUses": [ + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2014-09-24 (described on Site Profile dated 2014-09-24)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2020-07-28", - "startDate": "2023-02-05", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": true + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2014-07-17 (described on Site Profile dated 2014-07-17)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + } + ], + "siteDisclosures": [ + { + "siteRegistry": true, + "dateReceived": "2023-04-16", + "dateCompleted": "2021-06-22", + "dateEntered": "2014-08-12", + "dateRegistrar": "2018-01-31", + "dateLocalAuthorityReceived": "2021-01-29", + "summary": "Corrupti eos autem mollitia exercitationem quaerat iste.\nFugiat omnis quaerat quidem modi placeat minima aperiam aspernatur.\nAtque dolor illo vero temporibus error illo ratione amet.", + "informationUsed": "Molestiae voluptate at magni magnam hic omnis animi.\nEa distinctio atque modi iusto possimus.\nTempore at veniam tenetur dicta occaecati magni minus iusto numquam.\nNatus fuga corporis.\nQuia praesentium delectus voluptatibus aspernatur eius natus tempora.", + "pastOrPresentOrders": "Esse tempore ea ab.\nUllam praesentium laboriosam.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + } + ] + } + ], + "activityLog": [ + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "MCKENZIE SONIA", + "timestamp": "2020-06-11" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "SWANIAWSKI LAISHA", + "timestamp": "2019-01-23" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "KREIGER MARLEY", + "timestamp": "2020-05-02" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "GUTKOWSKI JANESSA", + "timestamp": "2021-12-08" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "STARK URIEL", + "timestamp": "2022-04-09" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "BAUCH ISADORE", + "timestamp": "2021-03-28" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "HARBER MEGHAN", + "timestamp": "2017-04-26" } ], "associatedSites": [ { - "dateNoted": "2018-01-18", + "dateNoted": "2020-03-29", "notes": "", - "parcelID": "16095", - "siteID": "19095", + "parcelID": "17695", + "siteID": "19043", "siteRegistry": false }, { - "dateNoted": "2017-06-24", + "dateNoted": "2015-11-08", "notes": "", - "parcelID": "16538", - "siteID": "18126", + "parcelID": "17991", + "siteID": "15498", "siteRegistry": true } ] }, { - "uuid": "e6cd058d-145f-4576-8829-da7baadcea47", - "siteID": 18859, - "address": "3183 Satterfield Isle", - "latitude": 57.2433, - "longitude": -130.2429, - "lastUpdated": "2018-04-03", - "city": "West Novafurt", - "region": "Cariboo", - "victoriaFile": "26250-20/19670", + "uuid": "586001fb-e8de-4e10-8c5f-8b44173ed184", + "siteID": 20253, + "address": "97701 Vella Mountain", + "latitude": 49.5128, + "longitude": -136.6097, + "lastUpdated": "2019-09-16", + "city": "East Ralphcester", + "region": "Kootenay", + "victoriaFile": "26250-20/12054", "regionalFile": "N/A", "parcelIDs": [ - 7431321, - 3485340, - 3318830, - 8066461, - 2648328 + 499123, + 1467028, + 5874702, + 4709481, + 7622816 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2022-06-10", - "completed": "2016-10-21", - "initiated": "2015-04-18", - "ministryContact": "LYNCH CATERINA", + "createdAt": "2014-01-07", + "completed": "2016-05-06", + "initiated": "2020-04-23", + "ministryContact": "KEMMER DON", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -24970,6 +34634,11 @@ "" ], "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", @@ -24977,22 +34646,22 @@ }, { "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false + "role": "REQUESTED BY", + "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": true } ], "siteRegistry": false }, { - "createdAt": "2019-04-16", - "completed": "2023-05-20", - "initiated": "2023-09-15", - "ministryContact": "WINTHEISER NOEMI", + "createdAt": "2021-08-12", + "completed": "2018-02-02", + "initiated": "2022-01-27", + "ministryContact": "THIEL ZELLA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -25000,28 +34669,18 @@ "" ], "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true } @@ -25029,10 +34688,10 @@ "siteRegistry": true }, { - "createdAt": "2021-10-22", - "completed": "2018-03-13", - "initiated": "2022-07-28", - "ministryContact": "GERHOLD ISAIAS", + "createdAt": "2015-10-05", + "completed": "2022-08-24", + "initiated": "2015-01-09", + "ministryContact": "HAND REBECA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -25041,12 +34700,12 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true }, @@ -25054,117 +34713,15 @@ "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true } ], - "siteRegistry": false - } - ], - "participants": [ - { - "name": "IPSUM", - "endDate": "2016-03-30", - "startDate": "2020-07-27", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2022-12-03", - "startDate": "2019-02-19", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2017-01-06", - "startDate": "2016-10-01", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": true - }, - { - "name": "AMET, DOLOR SIT", - "endDate": "2018-07-20", - "startDate": "2014-05-15", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2018-01-21", - "startDate": "2017-12-17", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": false - } - ], - "associatedSites": [ - { - "dateNoted": "2022-07-29", - "notes": "", - "parcelID": "19098", - "siteID": "17012", - "siteRegistry": true - }, - { - "dateNoted": "2019-03-11", - "notes": "", - "parcelID": "19516", - "siteID": "20915", "siteRegistry": true }, { - "dateNoted": "2021-12-02", - "notes": "", - "parcelID": "15757", - "siteID": "16634", - "siteRegistry": true - } - ] - }, - { - "uuid": "92226058-dacb-4fc9-8f73-98fea5d6705e", - "siteID": 15654, - "address": "49244 Dare Lights", - "latitude": 49.7365, - "longitude": -124.8755, - "lastUpdated": "2020-02-15", - "city": "South Estellafield", - "region": "Kootenay", - "victoriaFile": "26250-20/5204", - "regionalFile": "N/A", - "parcelIDs": [ - 5050623, - 5238308, - 3915282, - 7004656, - 4862097 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2013-11-18", - "completed": "2022-05-27", - "initiated": "2022-02-08", - "ministryContact": "BEDNAR PEGGIE", + "createdAt": "2020-10-18", + "completed": "2017-12-28", + "initiated": "2021-04-19", + "ministryContact": "BAUMBACH ALEXANDREA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -25177,34 +34734,34 @@ "role": "REQUESTED BY", "siteRegistry": true }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2015-05-28", - "completed": "2019-05-18", - "initiated": "2021-05-08", - "ministryContact": "KONOPELSKI FORREST", + "createdAt": "2016-02-27", + "completed": "2019-06-13", + "initiated": "2020-07-04", + "ministryContact": "EFFERTZ ELINORE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -25215,7 +34772,7 @@ { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", @@ -25223,13 +34780,18 @@ "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", "siteRegistry": true } ], @@ -25238,61 +34800,173 @@ ], "participants": [ { - "name": "IPSUM", - "endDate": "2015-12-16", - "startDate": "2018-02-28", + "name": "AMET, DOLOR SIT", + "endDate": "2014-12-20", + "startDate": "2015-04-29", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": false }, { - "name": "IPSUM", - "endDate": "2019-05-14", - "startDate": "2018-06-28", + "name": "AMET, DOLOR SIT", + "endDate": "2017-12-31", + "startDate": "2021-08-02", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true + } + ], + "suspectLandUses": [ + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2022-06-23 (described on Site Profile dated 2022-06-23)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2016-09-16 (described on Site Profile dated 2016-09-16)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2020-07-26 (described on Site Profile dated 2020-07-26)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + } + ], + "siteDisclosures": [ + { + "siteRegistry": false, + "dateReceived": "2023-08-10", + "dateCompleted": "2017-11-26", + "dateEntered": "2022-06-04", + "dateRegistrar": "2015-03-26", + "dateLocalAuthorityReceived": "2019-01-29", + "summary": "Reprehenderit dolorem id quasi autem modi delectus sit possimus.\nDolore aut suscipit ipsa accusantium voluptatem deleniti magni nulla hic.", + "informationUsed": "Occaecati temporibus doloremque nam alias dolore nostrum.\nVeritatis recusandae sint voluptatum corporis rem voluptatum.\nMagnam dolorem cum mollitia.\nCum commodi qui esse.\nRepudiandae sed voluptas eveniet dicta repudiandae tempora.", + "pastOrPresentOrders": "Repellendus fugit dolores ut minima quasi distinctio quidem.\nEveniet saepe similique iure.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + } + ] + }, + { + "siteRegistry": true, + "dateReceived": "2019-09-23", + "dateCompleted": "2020-04-26", + "dateEntered": "2020-10-31", + "dateRegistrar": "2014-03-14", + "dateLocalAuthorityReceived": "2015-01-25", + "summary": "Aliquid reiciendis quidem consequatur natus a nulla natus est.\nQuaerat ea beatae rem natus unde molestiae.", + "informationUsed": "Doloremque ad ex eveniet nam minima minima harum.\nError ullam dolorem dolorem soluta.\nPlaceat eum dolorum.", + "pastOrPresentOrders": "Hic magnam rerum eaque.\nMinima sequi eum.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + } + ] + } + ], + "activityLog": [ + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "HACKETT RYLAN", + "timestamp": "2018-03-07" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "COLLIER MATHEW", + "timestamp": "2017-04-07" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "SCHAEFER JORDON", + "timestamp": "2014-03-18" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "NITZSCHE KENNITH", + "timestamp": "2015-05-17" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "SAUER TREVION", + "timestamp": "2019-07-19" } ], "associatedSites": [ { - "dateNoted": "2016-10-06", + "dateNoted": "2013-11-04", "notes": "", - "parcelID": "18733", - "siteID": "20407", - "siteRegistry": true + "parcelID": "18532", + "siteID": "16740", + "siteRegistry": false } ] }, { - "uuid": "421ed4a8-c693-42fb-9484-e9fdb6ef0b39", - "siteID": 18590, - "address": "712 Nora Mews", - "latitude": 50.6698, - "longitude": -130.7698, - "lastUpdated": "2017-11-26", - "city": "New Carissafort", - "region": "Kootenay", - "victoriaFile": "26250-20/14052", + "uuid": "de431c9e-e2b6-4a89-b04a-2c9c55a1f2e6", + "siteID": 19478, + "address": "11201 Parisian Turnpike", + "latitude": 50.2666, + "longitude": -137.6419, + "lastUpdated": "2022-06-22", + "city": "West Mossieview", + "region": "Cariboo", + "victoriaFile": "26250-20/3503", "regionalFile": "N/A", "parcelIDs": [ - 4653158, - 8637617, - 3617586, - 3057464, - 2363528 + 1572437, + 7751369, + 2186621, + 4196194, + 7178362 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2019-07-29", - "completed": "2016-03-22", - "initiated": "2020-05-05", - "ministryContact": "RIPPIN ESTEVAN", + "createdAt": "2020-10-07", + "completed": "2019-07-21", + "initiated": "2014-02-07", + "ministryContact": "HERZOG FREDERIK", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -25300,59 +34974,34 @@ "" ], "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true - } - ], - "siteRegistry": false - }, - { - "createdAt": "2021-03-28", - "completed": "2016-10-11", - "initiated": "2019-11-17", - "ministryContact": "LABADIE BROOKE", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ + "siteRegistry": false + }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false } ], "siteRegistry": true }, { - "createdAt": "2022-02-21", - "completed": "2018-02-28", - "initiated": "2023-03-25", - "ministryContact": "PARKER ADELL", + "createdAt": "2017-07-09", + "completed": "2017-08-18", + "initiated": "2021-02-27", + "ministryContact": "KLING CLEMMIE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -25360,11 +35009,6 @@ "" ], "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", @@ -25373,26 +35017,26 @@ { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2022-02-19", - "completed": "2016-11-28", - "initiated": "2018-08-24", - "ministryContact": "POUROS-MARVIN LORENZ", + "createdAt": "2015-02-28", + "completed": "2023-04-14", + "initiated": "2013-12-23", + "ministryContact": "BARTON STEWART", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -25402,103 +35046,58 @@ "notationParticipants": [ { "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true } ], "siteRegistry": false - }, + } + ], + "participants": [ { - "createdAt": "2022-09-28", - "completed": "2021-03-28", - "initiated": "2016-10-11", - "ministryContact": "RATH JEROD", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - } - ], - "siteRegistry": false - } - ], - "participants": [ - { - "name": "IPSUM", - "endDate": "2017-06-15", - "startDate": "2018-03-29", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2020-10-17", + "startDate": "2016-09-17", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": false + "siteRegistry": true }, { - "name": "AMET, DOLOR SIT", - "endDate": "2022-06-03", - "startDate": "2023-07-24", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2014-08-06", + "startDate": "2020-05-01", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2013-11-26", - "startDate": "2021-08-18", + "name": "AMET, DOLOR SIT", + "endDate": "2023-06-19", + "startDate": "2015-11-26", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2014-03-07", - "startDate": "2021-10-03", + "endDate": "2020-12-13", + "startDate": "2023-02-18", "notes": "", "roles": [ "ORGANIZATION" @@ -25506,9 +35105,9 @@ "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2020-01-10", - "startDate": "2013-11-07", + "name": "IPSUM", + "endDate": "2022-11-23", + "startDate": "2016-06-13", "notes": "", "roles": [ "ORGANIZATION" @@ -25516,48 +35115,136 @@ "siteRegistry": true } ], - "associatedSites": [ + "suspectLandUses": [ { - "dateNoted": "2023-08-13", - "notes": "", - "parcelID": "18650", - "siteID": "15543", - "siteRegistry": true + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2017-08-28 (described on Site Profile dated 2017-08-28)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2021-07-20 (described on Site Profile dated 2021-07-20)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2020-04-25 (described on Site Profile dated 2020-04-25)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2017-02-04 (described on Site Profile dated 2017-02-04)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + } + ], + "siteDisclosures": [ + { + "siteRegistry": false, + "dateReceived": "2014-06-23", + "dateCompleted": "2021-10-26", + "dateEntered": "2015-01-07", + "dateRegistrar": "2016-12-13", + "dateLocalAuthorityReceived": "2018-05-07", + "summary": "Eum labore praesentium id.\nDeleniti ratione itaque repellendus aliquam.", + "informationUsed": "Rerum unde magni maiores ipsum est.\nEaque excepturi cum.\nOfficiis ipsam blanditiis sed quaerat totam odio officia expedita.\nNihil quibusdam qui culpa natus.\nPorro ipsum omnis velit.", + "pastOrPresentOrders": "Explicabo impedit sunt unde.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + } + ] + } + ], + "activityLog": [ + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "SCHOWALTER-BAUCH JOCELYN", + "timestamp": "2022-02-28" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "SAUER LOUVENIA", + "timestamp": "2016-04-23" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "SCHOWALTER HIPOLITO", + "timestamp": "2015-06-11" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "BAHRINGER-ABBOTT TRUDIE", + "timestamp": "2017-06-02" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "PAGAC MORTIMER", + "timestamp": "2014-05-11" }, { - "dateNoted": "2022-12-30", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "HIRTHE KAMREN", + "timestamp": "2014-08-08" + } + ], + "associatedSites": [ + { + "dateNoted": "2018-01-22", "notes": "", - "parcelID": "20869", - "siteID": "18368", - "siteRegistry": false + "parcelID": "16475", + "siteID": "17480", + "siteRegistry": true } ] }, { - "uuid": "bfdbb5cd-403c-45bd-8e12-966c99be1e92", - "siteID": 19914, - "address": "1980 Carolyne Circles", - "latitude": 55.2993, - "longitude": -124.2175, - "lastUpdated": "2017-10-24", - "city": "Fort Mckenzieborough", - "region": " North Coast", - "victoriaFile": "26250-20/3821", + "uuid": "ed6b5be6-6b2f-4bac-863d-00557d33e37d", + "siteID": 16693, + "address": "41423 Batz View", + "latitude": 55.2043, + "longitude": -124.378, + "lastUpdated": "2020-01-23", + "city": "Hesselboro", + "region": "Thompson-Okanagan", + "victoriaFile": "26250-20/8419", "regionalFile": "N/A", "parcelIDs": [ - 8907318, - 311720, - 7351848, - 5054569, - 2171008 + 1132183, + 5546395, + 7648288, + 5378442, + 9492906 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2018-02-27", - "completed": "2022-05-15", - "initiated": "2013-11-03", - "ministryContact": "ARMSTRONG JAZLYN", + "createdAt": "2013-12-27", + "completed": "2019-03-16", + "initiated": "2015-06-28", + "ministryContact": "STIEDEMANN ALBERT", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -25566,7 +35253,7 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false }, @@ -25576,18 +35263,28 @@ "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2020-05-25", - "completed": "2017-03-06", - "initiated": "2019-06-03", - "ministryContact": "SCHUMM BRENT", + "createdAt": "2016-03-04", + "completed": "2013-10-23", + "initiated": "2014-03-05", + "ministryContact": "HICKLE SHAWNA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -25596,23 +35293,38 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": false }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2014-06-10", - "completed": "2017-07-04", - "initiated": "2018-11-10", - "ministryContact": "COLE SHERWOOD", + "createdAt": "2018-12-26", + "completed": "2020-03-29", + "initiated": "2023-07-01", + "ministryContact": "GLEASON EVERETTE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -25620,6 +35332,11 @@ "" ], "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", @@ -25627,11 +35344,61 @@ }, { "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "createdAt": "2021-07-28", + "completed": "2017-02-18", + "initiated": "2021-09-03", + "ministryContact": "JOHNS REID", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "createdAt": "2018-12-22", + "completed": "2017-10-14", + "initiated": "2015-02-07", + "ministryContact": "DACH AMANDA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true } @@ -25642,18 +35409,8 @@ "participants": [ { "name": "SHELL CANADA PRODUCTS", - "endDate": "2017-09-18", - "startDate": "2021-02-02", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": false - }, - { - "name": "AMET, DOLOR SIT", - "endDate": "2015-12-14", - "startDate": "2021-12-28", + "endDate": "2022-12-14", + "startDate": "2023-08-07", "notes": "", "roles": [ "ORGANIZATION" @@ -25662,8 +35419,8 @@ }, { "name": "AMET, DOLOR SIT", - "endDate": "2015-03-11", - "startDate": "2017-05-10", + "endDate": "2019-05-05", + "startDate": "2016-11-13", "notes": "", "roles": [ "ORGANIZATION" @@ -25672,50 +35429,181 @@ }, { "name": "IPSUM", - "endDate": "2017-04-06", - "startDate": "2021-09-17", + "endDate": "2015-06-19", + "startDate": "2015-07-30", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false + } + ], + "suspectLandUses": [ + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2019-07-10 (described on Site Profile dated 2019-07-10)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2013-11-19 (described on Site Profile dated 2013-11-19)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2015-03-24 (described on Site Profile dated 2015-03-24)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2014-12-08 (described on Site Profile dated 2014-12-08)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2015-02-15 (described on Site Profile dated 2015-02-15)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + } + ], + "siteDisclosures": [ + { + "siteRegistry": false, + "dateReceived": "2014-03-13", + "dateCompleted": "2014-03-02", + "dateEntered": "2023-01-01", + "dateRegistrar": "2018-04-25", + "dateLocalAuthorityReceived": "2020-10-10", + "summary": "Doloribus sed eos aut veritatis.\nProvident debitis tenetur debitis quis laborum excepturi ipsum sunt.\nNatus possimus soluta voluptatum possimus quae fugit rem at reprehenderit.", + "informationUsed": "Molestiae amet qui quisquam tenetur quos deserunt numquam.\nSoluta qui sunt vitae atque vero sed deleniti perspiciatis.\nAspernatur voluptas enim fugit nihil.\nIpsum illo iusto maiores tempora aut earum assumenda.\nEligendi deserunt autem eaque quasi totam.", + "pastOrPresentOrders": "Architecto numquam aut eaque itaque modi dolor et.\nReprehenderit perferendis rem beatae repellat minima mollitia deserunt.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + } + ] + }, + { + "siteRegistry": false, + "dateReceived": "2018-06-27", + "dateCompleted": "2013-12-06", + "dateEntered": "2019-10-07", + "dateRegistrar": "2014-11-17", + "dateLocalAuthorityReceived": "2016-08-17", + "summary": "Beatae nisi nesciunt sunt distinctio at laudantium autem illo.\nNumquam debitis voluptas pariatur tenetur sint dolore id facere.\nIusto suscipit expedita.", + "informationUsed": "Quod sapiente explicabo blanditiis quidem nihil fugiat beatae velit.\nAccusantium totam sequi temporibus non vitae eligendi nemo ea.\nAperiam totam quos voluptatem commodi dignissimos maxime maiores dolores.", + "pastOrPresentOrders": "Modi suscipit fuga.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + } + ] + } + ], + "activityLog": [ + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "ROOB BUSTER", + "timestamp": "2020-06-30" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "ULLRICH WINSTON", + "timestamp": "2021-10-19" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "SCHUPPE-MILLS TERRILL", + "timestamp": "2022-04-24" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "LEGROS FRANKIE", + "timestamp": "2022-06-02" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "ALTENWERTH JACKSON", + "timestamp": "2017-03-03" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "TROMP KARIANNE", + "timestamp": "2016-07-09" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "KUTCH FANNIE", + "timestamp": "2014-04-02" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "HAHN PETE", + "timestamp": "2021-12-22" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "MARQUARDT FLETA", + "timestamp": "2015-05-01" } ], "associatedSites": [ { - "dateNoted": "2016-06-27", + "dateNoted": "2023-09-06", "notes": "", - "parcelID": "18548", - "siteID": "18162", + "parcelID": "17651", + "siteID": "18179", "siteRegistry": true } ] }, { - "uuid": "580ccb10-1162-4e30-aee5-a2649dd74a0f", - "siteID": 15513, - "address": "1718 Collier Lights", - "latitude": 48.4923, - "longitude": -132.6128, - "lastUpdated": "2019-08-25", - "city": "Spencerfurt", - "region": "Thompson-Okanagan", - "victoriaFile": "26250-20/6399", + "uuid": "3490f8fa-33ec-40c0-bbb0-2b03f272f0d7", + "siteID": 20554, + "address": "882 Turner Gateway", + "latitude": 49.1912, + "longitude": -130.5195, + "lastUpdated": "2017-10-27", + "city": "Cierrahaven", + "region": "Kootenay", + "victoriaFile": "26250-20/8336", "regionalFile": "N/A", "parcelIDs": [ - 5786539, - 8050444, - 9835857, - 7899567, - 3274058 + 7825254, + 6358380, + 3496111, + 5942588, + 6853710 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2019-02-21", - "completed": "2017-08-30", - "initiated": "2019-12-30", - "ministryContact": "MOORE KELVIN", + "createdAt": "2023-06-29", + "completed": "2018-08-01", + "initiated": "2023-08-08", + "ministryContact": "POLLICH MACKENZIE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -25725,22 +35613,72 @@ "notationParticipants": [ { "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "createdAt": "2013-11-06", + "completed": "2019-07-15", + "initiated": "2020-07-07", + "ministryContact": "BAUMBACH IVAH", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2023-02-28", - "completed": "2017-02-02", - "initiated": "2020-03-30", - "ministryContact": "FAHEY ERNA", + "createdAt": "2023-02-24", + "completed": "2014-03-13", + "initiated": "2018-04-09", + "ministryContact": "STRACKE MIKEL", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -25748,11 +35686,21 @@ "" ], "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", @@ -25767,10 +35715,10 @@ "siteRegistry": true }, { - "createdAt": "2018-07-03", - "completed": "2022-06-02", - "initiated": "2022-10-10", - "ministryContact": "LEFFLER-ALTENWERTH EDWARD", + "createdAt": "2023-07-07", + "completed": "2017-03-28", + "initiated": "2013-10-22", + "ministryContact": "MULLER BROOK", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -25788,6 +35736,11 @@ "role": "SUBMITTED BY", "siteRegistry": true }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", @@ -25805,18 +35758,18 @@ "participants": [ { "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2016-07-26", - "startDate": "2018-03-10", + "endDate": "2023-06-23", + "startDate": "2017-06-20", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2020-12-02", - "startDate": "2016-02-17", + "name": "IPSUM", + "endDate": "2020-05-31", + "startDate": "2013-12-31", "notes": "", "roles": [ "ORGANIZATION" @@ -25824,61 +35777,131 @@ "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2020-07-26", - "startDate": "2017-10-28", + "name": "AMET, DOLOR SIT", + "endDate": "2015-12-27", + "startDate": "2015-03-11", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": false + } + ], + "suspectLandUses": [ + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2015-04-21 (described on Site Profile dated 2015-04-21)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "name": "IPSUM", - "endDate": "2015-10-16", - "startDate": "2021-10-30", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": false + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2023-09-20 (described on Site Profile dated 2023-09-20)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2016-11-23 (described on Site Profile dated 2016-11-23)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + } + ], + "siteDisclosures": [ + { + "siteRegistry": true, + "dateReceived": "2018-11-18", + "dateCompleted": "2014-02-02", + "dateEntered": "2019-07-18", + "dateRegistrar": "2013-11-01", + "dateLocalAuthorityReceived": "2018-08-15", + "summary": "Harum deleniti repellat a fuga eos expedita.\nExercitationem nihil sunt pariatur impedit eos incidunt accusantium.\nExcepturi assumenda laboriosam velit eos error dolor recusandae debitis.", + "informationUsed": "Corporis iste similique.\nQuidem non tenetur corrupti ea excepturi.\nVoluptas inventore doloremque ratione soluta dicta est soluta cumque.\nHarum blanditiis optio maiores delectus corporis placeat at fugiat.\nPraesentium officiis ut nam ipsa mollitia sequi.", + "pastOrPresentOrders": "Accusantium hic tempora.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + } + ] + } + ], + "activityLog": [ + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "VEUM ARNE", + "timestamp": "2018-07-02" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "SCHULTZ-BERNIER JAQUAN", + "timestamp": "2019-12-07" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "LIND RODOLFO", + "timestamp": "2021-10-05" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "RAYNOR ELODY", + "timestamp": "2018-10-02" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "SCHMIDT EMMALEE", + "timestamp": "2017-12-12" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "MULLER KURT", + "timestamp": "2020-07-15" } ], "associatedSites": [ { - "dateNoted": "2023-09-02", + "dateNoted": "2014-08-18", "notes": "", - "parcelID": "20512", - "siteID": "17151", - "siteRegistry": false + "parcelID": "20099", + "siteID": "17078", + "siteRegistry": true } ] }, { - "uuid": "b2d22b21-ad17-41e7-aa9f-29f468549a52", - "siteID": 16972, - "address": "7014 Hammes Manors", - "latitude": 49.1584, - "longitude": -130.3932, - "lastUpdated": "2020-09-03", - "city": "East Angieberg", - "region": "Thompson-Okanagan", - "victoriaFile": "26250-20/9979", + "uuid": "86bd0713-725a-4b60-ab95-50132e38f66b", + "siteID": 20967, + "address": "12967 Ted Mews", + "latitude": 52.1119, + "longitude": -120.2285, + "lastUpdated": "2019-02-14", + "city": "Costa Mesa", + "region": "Mainland/Southwest", + "victoriaFile": "26250-20/8861", "regionalFile": "N/A", "parcelIDs": [ - 1959602, - 6875266, - 8549337, - 6568795, - 3225115 + 2088816, + 1669929, + 8877654, + 8314121, + 4775881 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2015-08-20", - "completed": "2020-10-22", - "initiated": "2018-12-19", - "ministryContact": "MCDERMOTT CAMILLE", + "createdAt": "2019-05-24", + "completed": "2016-10-16", + "initiated": "2021-08-22", + "ministryContact": "FLATLEY-DENESIK SPENCER", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -25886,29 +35909,39 @@ "" ], "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": false } ], "siteRegistry": true }, { - "createdAt": "2015-03-29", - "completed": "2022-08-07", - "initiated": "2019-04-15", - "ministryContact": "WOLF KEITH", + "createdAt": "2023-05-21", + "completed": "2014-01-03", + "initiated": "2017-09-11", + "ministryContact": "PARKER VALENTINE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -25916,39 +35949,29 @@ "" ], "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, { "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2015-06-17", - "completed": "2022-11-29", - "initiated": "2022-12-09", - "ministryContact": "EBERT AUBREY", + "createdAt": "2021-02-11", + "completed": "2021-11-09", + "initiated": "2021-07-03", + "ministryContact": "FLATLEY ROSARIO", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -25957,12 +35980,12 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true } @@ -25970,10 +35993,10 @@ "siteRegistry": true }, { - "createdAt": "2018-09-04", - "completed": "2017-01-19", - "initiated": "2014-01-27", - "ministryContact": "LEUSCHKE EDWINA", + "createdAt": "2017-07-06", + "completed": "2014-04-27", + "initiated": "2017-04-18", + "ministryContact": "SCHAMBERGER WHITNEY", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -25981,16 +36004,26 @@ "" ], "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", @@ -26000,10 +36033,10 @@ "siteRegistry": false }, { - "createdAt": "2022-05-07", - "completed": "2021-08-09", - "initiated": "2016-05-14", - "ministryContact": "ULLRICH PANSY", + "createdAt": "2021-03-18", + "completed": "2017-05-12", + "initiated": "2017-02-15", + "ministryContact": "KSHLERIN ALPHONSO", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -26012,23 +36045,18 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false } ], @@ -26038,18 +36066,28 @@ "participants": [ { "name": "AMET, DOLOR SIT", - "endDate": "2015-09-18", - "startDate": "2017-06-02", + "endDate": "2022-12-27", + "startDate": "2019-09-27", "notes": "", "roles": [ "EMPLOYEE" ], "siteRegistry": false }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2019-09-15", + "startDate": "2021-08-05", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, { "name": "AMET, DOLOR SIT", - "endDate": "2016-08-09", - "startDate": "2018-09-28", + "endDate": "2015-08-20", + "startDate": "2023-08-27", "notes": "", "roles": [ "ORGANIZATION" @@ -26058,50 +36096,158 @@ }, { "name": "IPSUM", - "endDate": "2021-09-19", - "startDate": "2020-03-29", + "endDate": "2016-12-05", + "startDate": "2023-09-13", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true + }, + { + "name": "AMET, DOLOR SIT", + "endDate": "2023-09-15", + "startDate": "2021-08-09", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + } + ], + "suspectLandUses": [ + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2020-03-05 (described on Site Profile dated 2020-03-05)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2022-08-20 (described on Site Profile dated 2022-08-20)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2023-09-11 (described on Site Profile dated 2023-09-11)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2019-09-30 (described on Site Profile dated 2019-09-30)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + } + ], + "siteDisclosures": [ + { + "siteRegistry": true, + "dateReceived": "2017-10-29", + "dateCompleted": "2022-08-03", + "dateEntered": "2019-05-21", + "dateRegistrar": "2022-10-10", + "dateLocalAuthorityReceived": "2022-08-06", + "summary": "Sequi esse voluptate labore ea dicta culpa.\nLaborum esse quisquam saepe ipsum architecto labore nulla libero consequuntur.\nNemo dolorum placeat nesciunt praesentium unde sapiente rerum.", + "informationUsed": "Minus temporibus eaque beatae nostrum.\nBlanditiis occaecati repellat officia culpa.\nAnimi nihil praesentium tempore dolor repudiandae.", + "pastOrPresentOrders": "Quaerat voluptate qui delectus minima perferendis vitae vero iste.\nAdipisci nulla enim nihil iste in exercitationem provident.\nAnimi eveniet error ex eligendi aliquam.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + } + ] + } + ], + "activityLog": [ + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "SCHOEN AIDAN", + "timestamp": "2021-03-28" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "REILLY WAYLON", + "timestamp": "2019-02-21" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "WUNSCH JAMEL", + "timestamp": "2015-01-05" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "ROBEL DANIELLE", + "timestamp": "2014-03-20" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "MILLER SOPHIE", + "timestamp": "2016-07-02" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "ROSENBAUM LANDEN", + "timestamp": "2017-07-05" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "KIRLIN EVAN", + "timestamp": "2015-05-29" } ], "associatedSites": [ { - "dateNoted": "2018-08-17", + "dateNoted": "2019-06-23", "notes": "", - "parcelID": "20183", - "siteID": "15273", + "parcelID": "15946", + "siteID": "16632", "siteRegistry": false + }, + { + "dateNoted": "2021-03-28", + "notes": "", + "parcelID": "17602", + "siteID": "16296", + "siteRegistry": true } ] }, { - "uuid": "2c54f0ff-207d-41c7-bdef-6e1dc0a3b949", - "siteID": 19084, - "address": "234 Boyle Drive", - "latitude": 51.3834, - "longitude": -132.4634, - "lastUpdated": "2015-04-19", - "city": "Kuphalbury", + "uuid": "7d1aaed5-cc32-4f62-a7bc-8639f5618989", + "siteID": 17073, + "address": "5543 Cole Walk", + "latitude": 55.1371, + "longitude": -129.9419, + "lastUpdated": "2020-03-15", + "city": "Berkeley", "region": " North Coast", - "victoriaFile": "26250-20/16194", + "victoriaFile": "26250-20/16191", "regionalFile": "N/A", "parcelIDs": [ - 3118260, - 1190324, - 4117790, - 1852254, - 4315177 + 4819328, + 778596, + 9814698, + 6780070, + 3630410 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2021-01-20", - "completed": "2018-11-08", - "initiated": "2019-10-05", - "ministryContact": "SCHMITT DANGELO", + "createdAt": "2019-03-16", + "completed": "2017-01-26", + "initiated": "2019-07-31", + "ministryContact": "WILL YASMEEN", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -26110,28 +36256,28 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2015-06-06", - "completed": "2018-08-29", - "initiated": "2020-06-26", - "ministryContact": "KONOPELSKI EMMALEE", + "createdAt": "2017-08-27", + "completed": "2017-11-04", + "initiated": "2018-03-11", + "ministryContact": "ALTENWERTH JEROMY", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -26141,22 +36287,72 @@ "notationParticipants": [ { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false - }, - { + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "createdAt": "2018-09-08", + "completed": "2019-03-28", + "initiated": "2016-12-27", + "ministryContact": "SPINKA EASTON", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "createdAt": "2014-07-09", + "completed": "2019-12-05", + "initiated": "2015-07-08", + "ministryContact": "SPINKA JORDAN", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": false } ], @@ -26166,94 +36362,224 @@ "participants": [ { "name": "IPSUM", - "endDate": "2018-01-28", - "startDate": "2020-11-09", + "endDate": "2022-09-20", + "startDate": "2019-03-20", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true }, { - "name": "AMET, DOLOR SIT", - "endDate": "2023-03-11", - "startDate": "2020-02-17", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2017-09-07", + "startDate": "2018-12-25", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true }, { "name": "AMET, DOLOR SIT", - "endDate": "2018-10-11", - "startDate": "2016-03-07", + "endDate": "2014-11-27", + "startDate": "2014-02-23", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], - "siteRegistry": true + "siteRegistry": false + } + ], + "suspectLandUses": [ + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2015-04-12 (described on Site Profile dated 2015-04-12)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2018-01-21", - "startDate": "2018-05-05", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": true + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2020-01-23 (described on Site Profile dated 2020-01-23)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2021-07-13 (described on Site Profile dated 2021-07-13)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2019-11-19 (described on Site Profile dated 2019-11-19)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + } + ], + "siteDisclosures": [ + { + "siteRegistry": false, + "dateReceived": "2016-07-04", + "dateCompleted": "2015-10-15", + "dateEntered": "2019-08-28", + "dateRegistrar": "2022-11-14", + "dateLocalAuthorityReceived": "2013-10-20", + "summary": "Quo asperiores quia quas perspiciatis consequatur repudiandae id ratione iste.", + "informationUsed": "Architecto quod molestiae exercitationem delectus assumenda.\nAmet occaecati voluptatum laborum porro possimus eum temporibus rem.\nPraesentium fuga dicta quos porro eligendi quibusdam sequi et magnam.\nTempora rerum voluptate voluptatem.", + "pastOrPresentOrders": "Officiis velit mollitia ad ut quam.\nFugit facilis quam inventore pariatur.\nSapiente qui blanditiis doloremque maxime accusantium quam dolorum sapiente.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + } + ] + }, + { + "siteRegistry": true, + "dateReceived": "2015-09-19", + "dateCompleted": "2017-04-20", + "dateEntered": "2019-08-08", + "dateRegistrar": "2016-03-25", + "dateLocalAuthorityReceived": "2020-03-19", + "summary": "Provident vel perferendis vero voluptates repellat eum.\nAliquam cum dignissimos qui quam odio.\nNeque quaerat commodi.", + "informationUsed": "Eligendi laboriosam ducimus.\nMollitia aut dolores odio deserunt amet possimus.\nDucimus voluptas quibusdam a soluta eveniet quam odio harum.\nPariatur corrupti repellat ut odio animi sed aliquam dolores expedita.\nNisi minus ab pariatur corrupti cumque fuga excepturi.", + "pastOrPresentOrders": "Ea ab nisi laboriosam.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + } + ] + } + ], + "activityLog": [ + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "BOTSFORD JAROD", + "timestamp": "2020-01-31" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "LANGWORTH DANYKA", + "timestamp": "2019-04-09" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "WALSH KEYSHAWN", + "timestamp": "2013-12-24" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "TURCOTTE BERTA", + "timestamp": "2015-02-17" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "SMITHAM LOYCE", + "timestamp": "2016-01-08" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "HUELS TOMMIE", + "timestamp": "2017-07-10" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "HALVORSON EMILIO", + "timestamp": "2016-05-17" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "VOLKMAN JERMEY", + "timestamp": "2020-11-24" } ], "associatedSites": [ { - "dateNoted": "2018-04-21", + "dateNoted": "2015-11-03", "notes": "", - "parcelID": "16116", - "siteID": "18495", + "parcelID": "16715", + "siteID": "18999", "siteRegistry": true }, { - "dateNoted": "2016-04-11", + "dateNoted": "2020-04-25", "notes": "", - "parcelID": "18119", - "siteID": "16025", + "parcelID": "17832", + "siteID": "17078", "siteRegistry": false }, { - "dateNoted": "2018-09-17", + "dateNoted": "2016-07-04", "notes": "", - "parcelID": "17554", - "siteID": "16118", + "parcelID": "19930", + "siteID": "18160", "siteRegistry": false } ] }, { - "uuid": "ecd17974-fa32-4114-95aa-6f6e5bcabe85", - "siteID": 19075, - "address": "32971 Ivy Trace", - "latitude": 55.6962, - "longitude": -123.2873, - "lastUpdated": "2023-09-04", - "city": "Jonatancester", - "region": "Thompson-Okanagan", - "victoriaFile": "26250-20/15079", + "uuid": "9141cf14-d604-4ad2-8142-0902ab730861", + "siteID": 16586, + "address": "30405 Streich Crossing", + "latitude": 56.3679, + "longitude": -135.5891, + "lastUpdated": "2014-11-04", + "city": "Kubfurt", + "region": "Vancouver Island/Coast", + "victoriaFile": "26250-20/1377", "regionalFile": "N/A", "parcelIDs": [ - 9710200, - 6541983, - 7106237, - 6645270, - 2358038 + 1711272, + 2542075, + 9895040, + 9729451, + 9952560 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2016-04-05", - "completed": "2021-03-19", - "initiated": "2021-10-03", - "ministryContact": "FEIL-KRIS KIANA", + "createdAt": "2018-01-15", + "completed": "2016-09-23", + "initiated": "2019-05-26", + "ministryContact": "ROBEL-KERTZMANN LUCIE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -26262,33 +36588,23 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2017-04-14", - "completed": "2019-01-15", - "initiated": "2018-11-29", - "ministryContact": "KUVALIS NELS", + "createdAt": "2018-10-30", + "completed": "2015-06-08", + "initiated": "2023-04-20", + "ministryContact": "MANN BERNARDO", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -26297,38 +36613,38 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true } ], "siteRegistry": true }, { - "createdAt": "2020-05-10", - "completed": "2023-09-18", - "initiated": "2015-12-19", - "ministryContact": "HAGENES JOAN", + "createdAt": "2016-01-24", + "completed": "2020-10-18", + "initiated": "2019-12-21", + "ministryContact": "HEATHCOTE MARLENE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -26337,23 +36653,28 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false } ], "siteRegistry": false }, { - "createdAt": "2014-04-28", - "completed": "2022-12-30", - "initiated": "2021-04-11", - "ministryContact": "SHANAHAN DELL", + "createdAt": "2016-12-01", + "completed": "2021-09-13", + "initiated": "2015-03-06", + "ministryContact": "JOHNS MONA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -26362,23 +36683,33 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2014-07-10", - "completed": "2018-04-08", - "initiated": "2018-01-27", - "ministryContact": "LANGOSH LESLY", + "createdAt": "2020-05-07", + "completed": "2020-03-31", + "initiated": "2018-01-17", + "ministryContact": "FARRELL-CASPER HILBERT", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -26388,17 +36719,22 @@ "notationParticipants": [ { "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true + "role": "REQUESTED BY", + "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": false }, { @@ -26412,9 +36748,9 @@ ], "participants": [ { - "name": "IPSUM", - "endDate": "2019-05-09", - "startDate": "2022-02-21", + "name": "AMET, DOLOR SIT", + "endDate": "2018-03-18", + "startDate": "2020-06-16", "notes": "", "roles": [ "ORGANIZATION" @@ -26422,61 +36758,172 @@ "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2018-07-30", - "startDate": "2021-04-05", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2014-10-21", + "startDate": "2023-03-21", "notes": "", "roles": [ "EMPLOYEE" ], "siteRegistry": false + } + ], + "suspectLandUses": [ + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2014-01-14 (described on Site Profile dated 2014-01-14)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "name": "AMET, DOLOR SIT", - "endDate": "2020-06-04", - "startDate": "2018-05-17", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": true + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2015-05-11 (described on Site Profile dated 2015-05-11)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2023-05-28 (described on Site Profile dated 2023-05-28)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2017-09-11 (described on Site Profile dated 2017-09-11)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2015-07-28 (described on Site Profile dated 2015-07-28)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + } + ], + "siteDisclosures": [ + { + "siteRegistry": true, + "dateReceived": "2022-03-23", + "dateCompleted": "2020-11-16", + "dateEntered": "2015-03-16", + "dateRegistrar": "2018-03-24", + "dateLocalAuthorityReceived": "2023-03-16", + "summary": "Molestias distinctio voluptates modi modi repudiandae eligendi.\nVelit quos distinctio beatae ipsam explicabo.", + "informationUsed": "Consequatur quam debitis vel corporis officia nam tempore.\nVoluptates tenetur quo corporis explicabo nulla.\nQuidem pariatur illum autem numquam iste molestiae rem autem vero.\nVoluptatem eaque facilis commodi rem aut sequi facilis.", + "pastOrPresentOrders": "Maiores repellat laboriosam voluptate itaque magni consequatur.\nAspernatur voluptatum assumenda quibusdam ipsum.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + } + ] + } + ], + "activityLog": [ + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "COLE ZACKARY", + "timestamp": "2014-11-16" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "BERGE AHMAD", + "timestamp": "2021-05-30" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "DONNELLY GENERAL", + "timestamp": "2018-12-20" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "WINDLER RANSOM", + "timestamp": "2017-04-30" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "DICKINSON CONCEPCION", + "timestamp": "2021-02-13" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "PFEFFER VIRGINIE", + "timestamp": "2016-03-12" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "HAGENES AMERICO", + "timestamp": "2014-05-18" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "FEENEY MODESTO", + "timestamp": "2023-08-26" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "JERDE-WINTHEISER MARK", + "timestamp": "2017-05-02" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "KEEBLER CORNELL", + "timestamp": "2017-10-15" } ], "associatedSites": [ { - "dateNoted": "2018-06-22", + "dateNoted": "2019-11-19", + "notes": "", + "parcelID": "15635", + "siteID": "19899", + "siteRegistry": false + }, + { + "dateNoted": "2017-09-27", "notes": "", - "parcelID": "20038", - "siteID": "20157", + "parcelID": "20777", + "siteID": "17862", "siteRegistry": false } ] }, { - "uuid": "a87aadd6-2576-4ba7-822a-4b1231f536c7", - "siteID": 17180, - "address": "7337 Heidenreich Shores", - "latitude": 49.1506, - "longitude": -133.0138, - "lastUpdated": "2023-03-27", - "city": "Rogers", - "region": " North Coast", - "victoriaFile": "26250-20/16905", + "uuid": "3b2a879c-8594-48a9-bac8-47b3a11de1d9", + "siteID": 18736, + "address": "79890 Gene Ridge", + "latitude": 51.9406, + "longitude": -138.0059, + "lastUpdated": "2023-06-22", + "city": "Steuberside", + "region": "Kootenay", + "victoriaFile": "26250-20/17312", "regionalFile": "N/A", "parcelIDs": [ - 6972247, - 3387017, - 4324381, - 1712946, - 4927812 + 9560098, + 9031154, + 5459776, + 5363865, + 292974 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2019-04-04", - "completed": "2020-10-18", - "initiated": "2019-10-19", - "ministryContact": "KEELING MAGNOLIA", + "createdAt": "2021-09-02", + "completed": "2014-12-15", + "initiated": "2018-05-03", + "ministryContact": "WAELCHI FILOMENA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -26486,6 +36933,11 @@ "notationParticipants": [ { "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true }, @@ -26495,18 +36947,18 @@ "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2022-05-12", - "completed": "2018-04-22", - "initiated": "2019-08-04", - "ministryContact": "PROSACCO STANLEY", + "createdAt": "2013-11-14", + "completed": "2014-02-14", + "initiated": "2016-10-24", + "ministryContact": "METZ ZOLA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -26515,44 +36967,44 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false } ], "participants": [ { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2014-09-21", - "startDate": "2018-05-20", + "name": "AMET, DOLOR SIT", + "endDate": "2015-10-16", + "startDate": "2014-01-03", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": false }, { - "name": "IPSUM", - "endDate": "2017-05-28", - "startDate": "2016-04-16", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2018-12-11", + "startDate": "2016-07-12", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true }, { "name": "IPSUM", - "endDate": "2019-04-07", - "startDate": "2018-01-21", + "endDate": "2016-04-02", + "startDate": "2022-04-26", "notes": "", "roles": [ "ORGANIZATION" @@ -26560,58 +37012,155 @@ "siteRegistry": true }, { - "name": "IPSUM", - "endDate": "2023-09-24", - "startDate": "2019-05-21", + "name": "AMET, DOLOR SIT", + "endDate": "2022-12-21", + "startDate": "2023-02-01", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false + } + ], + "suspectLandUses": [ + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2021-03-10 (described on Site Profile dated 2021-03-10)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2021-03-20 (described on Site Profile dated 2021-03-20)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + } + ], + "siteDisclosures": [ + { + "siteRegistry": true, + "dateReceived": "2019-03-19", + "dateCompleted": "2017-09-06", + "dateEntered": "2022-12-02", + "dateRegistrar": "2014-12-03", + "dateLocalAuthorityReceived": "2014-01-05", + "summary": "Quas modi voluptatum consectetur perspiciatis consequuntur quo.\nFuga praesentium alias libero eaque quasi totam tempore deleniti repudiandae.\nEx rerum impedit tempora commodi.", + "informationUsed": "Quod nihil officiis sed tempore.\nMollitia repellendus accusantium officia consectetur dolorum.\nQuasi tempore sapiente voluptas ut error nulla maxime nam repellat.\nQuaerat officiis molestiae expedita asperiores blanditiis consectetur asperiores laudantium.\nCumque maxime at odio sint perferendis corrupti.", + "pastOrPresentOrders": "Cupiditate maiores nemo labore aliquam.\nRepellendus ducimus impedit occaecati vel nulla.\nMollitia debitis suscipit voluptatibus eum mollitia in nulla voluptas impedit.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + } + ] + } + ], + "activityLog": [ + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "CARROLL ADELL", + "timestamp": "2014-08-28" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "HOMENICK BRAXTON", + "timestamp": "2016-03-21" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "HAYES-SKILES MARIAH", + "timestamp": "2017-01-12" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "DIETRICH NEOMA", + "timestamp": "2021-01-24" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "DICKI JAQUELINE", + "timestamp": "2014-02-18" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "MCKENZIE OSVALDO", + "timestamp": "2021-07-03" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "RENNER ZETTA", + "timestamp": "2016-04-12" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "BROWN-HELLER KRISTOPHER", + "timestamp": "2019-10-31" } ], "associatedSites": [ { - "dateNoted": "2014-11-07", + "dateNoted": "2018-06-18", "notes": "", - "parcelID": "19147", - "siteID": "19377", + "parcelID": "18295", + "siteID": "17249", "siteRegistry": true }, { - "dateNoted": "2017-10-23", + "dateNoted": "2017-12-23", "notes": "", - "parcelID": "18888", - "siteID": "17514", - "siteRegistry": true + "parcelID": "20372", + "siteID": "18849", + "siteRegistry": false } ] }, { - "uuid": "1239a955-8ce4-4ce4-a829-8335df96db29", - "siteID": 19740, - "address": "946 Jones Throughway", - "latitude": 53.3067, - "longitude": -122.0298, - "lastUpdated": "2023-02-25", - "city": "Rueckerport", - "region": "Thompson-Okanagan", - "victoriaFile": "26250-20/19022", + "uuid": "40879964-4062-4745-8ef5-fdbb79a703f3", + "siteID": 20872, + "address": "86306 Levi Meadows", + "latitude": 58.9347, + "longitude": -136.6179, + "lastUpdated": "2016-04-05", + "city": "Marjoryton", + "region": "Kootenay", + "victoriaFile": "26250-20/832", "regionalFile": "N/A", "parcelIDs": [ - 3353153, - 7345713, - 3077969, - 5712928, - 782992 + 2539463, + 4538943, + 6310393, + 1119517, + 2351271 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2023-06-21", - "completed": "2022-11-07", - "initiated": "2015-11-26", - "ministryContact": "ROMAGUERA-HUEL VICKY", + "createdAt": "2021-10-19", + "completed": "2023-10-10", + "initiated": "2021-10-15", + "ministryContact": "ROLFSON GILBERTO", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -26619,34 +37168,24 @@ "" ], "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2016-11-22", - "completed": "2021-06-04", - "initiated": "2015-12-12", - "ministryContact": "STAMM DARBY", + "createdAt": "2016-09-05", + "completed": "2018-10-14", + "initiated": "2014-02-05", + "ministryContact": "BOEHM BONITA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -26654,16 +37193,6 @@ "" ], "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", @@ -26672,21 +37201,21 @@ { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2020-06-26", - "completed": "2014-01-24", - "initiated": "2018-05-13", - "ministryContact": "HAHN PHOEBE", + "createdAt": "2016-09-24", + "completed": "2017-06-03", + "initiated": "2019-03-21", + "ministryContact": "MCDERMOTT-NITZSCHE NELLE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -26696,83 +37225,38 @@ "notationParticipants": [ { "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false } ], "siteRegistry": false - }, - { - "createdAt": "2021-12-08", - "completed": "2015-06-09", - "initiated": "2021-07-24", - "ministryContact": "FUNK ALPHONSO", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - } - ], - "siteRegistry": true } ], "participants": [ { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2021-01-27", - "startDate": "2016-08-07", + "name": "AMET, DOLOR SIT", + "endDate": "2015-03-03", + "startDate": "2022-05-02", "notes": "", "roles": [ "ORGANIZATION" ], "siteRegistry": true }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2014-11-23", - "startDate": "2016-08-18", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": false - }, { "name": "SHELL CANADA PRODUCTS", - "endDate": "2020-12-03", - "startDate": "2014-09-25", + "endDate": "2021-10-17", + "startDate": "2017-10-24", "notes": "", "roles": [ "EMPLOYEE" @@ -26780,68 +37264,144 @@ "siteRegistry": true }, { - "name": "AMET, DOLOR SIT", - "endDate": "2022-08-24", - "startDate": "2015-12-14", + "name": "IPSUM", + "endDate": "2015-05-05", + "startDate": "2020-08-14", "notes": "", "roles": [ "EMPLOYEE" ], "siteRegistry": true + } + ], + "suspectLandUses": [ + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2015-02-24 (described on Site Profile dated 2015-02-24)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2016-11-27", - "startDate": "2021-02-17", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": true + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2021-05-12 (described on Site Profile dated 2021-05-12)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + } + ], + "siteDisclosures": [ + { + "siteRegistry": true, + "dateReceived": "2015-10-11", + "dateCompleted": "2014-05-22", + "dateEntered": "2013-11-24", + "dateRegistrar": "2018-09-10", + "dateLocalAuthorityReceived": "2019-12-28", + "summary": "Rem doloremque labore soluta.", + "informationUsed": "Id facere officiis.\nSequi beatae cupiditate dicta ipsam suscipit inventore.\nOfficiis error ipsum expedita nesciunt delectus.\nNulla libero hic veritatis nihil beatae ab soluta.\nNobis nemo magni tempora repellat assumenda.", + "pastOrPresentOrders": "Praesentium sapiente inventore aliquid.\nIpsum consequatur iste repudiandae repellendus adipisci tempore deserunt quibusdam veritatis.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + } + ] + } + ], + "activityLog": [ + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "LUETTGEN ALIA", + "timestamp": "2016-01-30" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "MACEJKOVIC MCKENZIE", + "timestamp": "2014-04-24" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "REICHERT EVANS", + "timestamp": "2020-03-03" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "WEBER MYAH", + "timestamp": "2023-07-08" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "AUER SERENITY", + "timestamp": "2016-12-19" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "HEGMANN LORENA", + "timestamp": "2021-12-01" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "MCCULLOUGH RASHAD", + "timestamp": "2019-06-15" } ], "associatedSites": [ { - "dateNoted": "2019-11-19", + "dateNoted": "2017-05-29", "notes": "", - "parcelID": "19471", - "siteID": "18245", + "parcelID": "17792", + "siteID": "18201", "siteRegistry": true }, { - "dateNoted": "2016-06-18", + "dateNoted": "2014-02-20", "notes": "", - "parcelID": "16366", - "siteID": "17898", - "siteRegistry": true + "parcelID": "16240", + "siteID": "19157", + "siteRegistry": false } ] }, { - "uuid": "e0245d13-b808-43f6-950e-dde2a0666bc9", - "siteID": 19773, - "address": "8479 Turner Summit", - "latitude": 54.0442, - "longitude": -132.4007, - "lastUpdated": "2014-03-22", - "city": "Macejkovicborough", - "region": "Kootenay", - "victoriaFile": "26250-20/18984", + "uuid": "b95a8e36-0f6b-4587-89f2-74c930521f6c", + "siteID": 20382, + "address": "9654 Waters Vista", + "latitude": 48.5145, + "longitude": -125.5945, + "lastUpdated": "2020-10-03", + "city": "Rathview", + "region": "Cariboo", + "victoriaFile": "26250-20/8927", "regionalFile": "N/A", "parcelIDs": [ - 4592089, - 6487072, - 437990, - 3914098, - 6096528 + 3324796, + 5920642, + 8018812, + 7402877, + 139944 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2022-01-07", - "completed": "2015-05-17", - "initiated": "2020-07-20", - "ministryContact": "DANIEL ARLENE", + "createdAt": "2019-07-19", + "completed": "2021-06-07", + "initiated": "2018-05-24", + "ministryContact": "O'REILLY EMIE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -26851,12 +37411,12 @@ "notationParticipants": [ { "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true + "role": "REQUESTED BY", + "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": true }, { @@ -26866,11 +37426,6 @@ }, { "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false } @@ -26878,10 +37433,10 @@ "siteRegistry": true }, { - "createdAt": "2023-06-24", - "completed": "2015-04-25", - "initiated": "2022-07-07", - "ministryContact": "OSINSKI REBECA", + "createdAt": "2022-12-09", + "completed": "2022-05-01", + "initiated": "2023-02-13", + "ministryContact": "KUTCH FREDERIQUE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -26889,171 +37444,223 @@ "" ], "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false } ], "participants": [ { - "name": "AMET, DOLOR SIT", - "endDate": "2016-05-23", - "startDate": "2019-06-13", + "name": "IPSUM", + "endDate": "2015-10-01", + "startDate": "2022-07-07", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2022-11-29", - "startDate": "2023-01-02", + "name": "IPSUM", + "endDate": "2021-04-16", + "startDate": "2017-01-06", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": false - } - ], - "associatedSites": [ + "siteRegistry": true + }, { - "dateNoted": "2018-06-01", + "name": "AMET, DOLOR SIT", + "endDate": "2014-02-19", + "startDate": "2020-02-06", "notes": "", - "parcelID": "19096", - "siteID": "16272", + "roles": [ + "EMPLOYEE" + ], "siteRegistry": false }, { - "dateNoted": "2019-01-15", + "name": "IPSUM", + "endDate": "2018-10-18", + "startDate": "2020-01-13", "notes": "", - "parcelID": "19359", - "siteID": "15361", + "roles": [ + "ORGANIZATION" + ], "siteRegistry": true + } + ], + "suspectLandUses": [ + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2023-09-10 (described on Site Profile dated 2023-09-10)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "dateNoted": "2017-03-27", - "notes": "", - "parcelID": "18638", - "siteID": "19457", - "siteRegistry": true + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2019-12-09 (described on Site Profile dated 2019-12-09)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } - ] - }, - { - "uuid": "510d5e5e-cd9e-4ad2-95fa-ce7839ac5064", - "siteID": 17012, - "address": "8093 Dibbert Drives", - "latitude": 55.6257, - "longitude": -137.0721, - "lastUpdated": "2018-08-02", - "city": "Fremont", - "region": "Mainland/Southwest", - "victoriaFile": "26250-20/16794", - "regionalFile": "N/A", - "parcelIDs": [ - 8915353, - 3233829, - 7997773, - 8113485, - 7548974 ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ + "siteDisclosures": [ { - "createdAt": "2020-08-29", - "completed": "2014-03-07", - "initiated": "2015-05-02", - "ministryContact": "HOWE CORINE", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ + "siteRegistry": true, + "dateReceived": "2016-12-02", + "dateCompleted": "2018-10-02", + "dateEntered": "2016-05-26", + "dateRegistrar": "2018-06-07", + "dateLocalAuthorityReceived": "2016-05-16", + "summary": "Eveniet alias praesentium alias totam quibusdam corporis corrupti quia illum.\nUllam eius labore nemo omnis earum.\nEos consequatur molestias.", + "informationUsed": "Beatae beatae dolorum velit eum voluptas ea possimus atque ab.\nNulla quis itaque a voluptas.\nError saepe fugiat corporis voluptas aliquid amet id.", + "pastOrPresentOrders": "Alias maxime aliquid.", + "commercialAndIndustrialPurposes": [ { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false } - ], - "siteRegistry": true + ] }, { - "createdAt": "2018-04-04", - "completed": "2019-06-29", - "initiated": "2015-03-30", - "ministryContact": "BREITENBERG ASHLYNN", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ + "siteRegistry": false, + "dateReceived": "2019-02-20", + "dateCompleted": "2019-01-06", + "dateEntered": "2022-10-09", + "dateRegistrar": "2014-10-24", + "dateLocalAuthorityReceived": "2017-10-25", + "summary": "Odio assumenda quis deserunt harum quam officiis.\nQuos quo quo.", + "informationUsed": "Harum odit quod tempore accusantium similique pariatur repellendus.\nHic quisquam veniam eum reprehenderit architecto libero.\nOptio repellat est eaque qui excepturi.", + "pastOrPresentOrders": "Doloribus ab suscipit ducimus officiis nesciunt.\nFacilis atque debitis eligendi ad laboriosam eligendi architecto animi odit.\nFacere rem voluptatibus voluptatem blanditiis iste fugit.", + "commercialAndIndustrialPurposes": [ { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false } - ], + ] + } + ], + "activityLog": [ + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "HERZOG CLEMENS", + "timestamp": "2016-04-26" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "CONSIDINE SHEA", + "timestamp": "2021-02-19" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "AUFDERHAR CARRIE", + "timestamp": "2019-07-06" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "LYNCH WARREN", + "timestamp": "2018-01-15" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "BLICK ELDA", + "timestamp": "2016-04-23" + } + ], + "associatedSites": [ + { + "dateNoted": "2013-12-14", + "notes": "", + "parcelID": "20071", + "siteID": "15206", "siteRegistry": false }, { - "createdAt": "2021-09-26", - "completed": "2021-05-08", - "initiated": "2023-09-01", - "ministryContact": "GRANT BERTA", + "dateNoted": "2021-02-23", + "notes": "", + "parcelID": "19009", + "siteID": "18919", + "siteRegistry": false + }, + { + "dateNoted": "2018-01-09", + "notes": "", + "parcelID": "18400", + "siteID": "15752", + "siteRegistry": false + } + ] + }, + { + "uuid": "a8daa2e0-da67-4743-b2dd-124232dd671b", + "siteID": 19052, + "address": "129 Oberbrunner Burg", + "latitude": 54.7646, + "longitude": -133.7358, + "lastUpdated": "2014-07-17", + "city": "Mesquite", + "region": "Kootenay", + "victoriaFile": "26250-20/17516", + "regionalFile": "N/A", + "parcelIDs": [ + 9806091, + 7566019, + 6028692, + 6095371, + 4918878 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2020-09-12", + "completed": "2017-02-24", + "initiated": "2018-09-09", + "ministryContact": "QUITZON ERICK", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -27062,38 +37669,28 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2019-05-27", - "completed": "2022-11-23", - "initiated": "2018-05-21", - "ministryContact": "KUNDE CYNTHIA", + "createdAt": "2017-11-27", + "completed": "2018-08-22", + "initiated": "2019-03-11", + "ministryContact": "BOGAN SIGURD", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -27107,28 +37704,18 @@ "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2017-07-24", - "completed": "2019-08-03", - "initiated": "2017-08-23", - "ministryContact": "SWIFT LEONARD", + "createdAt": "2021-05-03", + "completed": "2019-08-16", + "initiated": "2014-12-03", + "ministryContact": "KEELING JEANNE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -27143,33 +37730,28 @@ }, { "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false } ], "participants": [ { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2023-09-24", - "startDate": "2016-08-04", + "name": "AMET, DOLOR SIT", + "endDate": "2019-06-14", + "startDate": "2014-11-26", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": true + "siteRegistry": false }, { "name": "IPSUM", - "endDate": "2013-10-02", - "startDate": "2020-06-13", + "endDate": "2015-06-15", + "startDate": "2022-03-05", "notes": "", "roles": [ "EMPLOYEE" @@ -27177,51 +37759,211 @@ "siteRegistry": false }, { - "name": "AMET, DOLOR SIT", - "endDate": "2014-02-03", - "startDate": "2013-12-14", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2017-12-20", + "startDate": "2021-06-22", "notes": "", "roles": [ "EMPLOYEE" ], "siteRegistry": true + }, + { + "name": "AMET, DOLOR SIT", + "endDate": "2023-05-07", + "startDate": "2020-01-29", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "IPSUM", + "endDate": "2020-07-07", + "startDate": "2021-12-08", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + } + ], + "suspectLandUses": [ + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2015-04-15 (described on Site Profile dated 2015-04-15)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2021-10-30 (described on Site Profile dated 2021-10-30)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2018-01-30 (described on Site Profile dated 2018-01-30)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + } + ], + "siteDisclosures": [ + { + "siteRegistry": true, + "dateReceived": "2015-12-13", + "dateCompleted": "2014-10-21", + "dateEntered": "2020-12-19", + "dateRegistrar": "2015-06-16", + "dateLocalAuthorityReceived": "2016-05-18", + "summary": "Sunt provident ab accusantium iure saepe nesciunt.\nRecusandae voluptates nulla quae in.\nEos optio nobis.", + "informationUsed": "Enim sapiente ratione iusto impedit.\nFuga consectetur impedit necessitatibus itaque numquam quod.\nCorporis quis ut dolores amet.\nAccusantium beatae fugit.\nAsperiores enim libero facilis excepturi ratione deserunt.", + "pastOrPresentOrders": "Numquam temporibus consequatur illo nam at.\nFugiat distinctio nesciunt.\nAmet asperiores sapiente earum facere ratione reprehenderit.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + } + ] + }, + { + "siteRegistry": false, + "dateReceived": "2023-04-16", + "dateCompleted": "2014-12-29", + "dateEntered": "2017-10-07", + "dateRegistrar": "2016-11-06", + "dateLocalAuthorityReceived": "2023-09-30", + "summary": "Incidunt quae deserunt magni.\nVoluptatum quibusdam commodi pariatur reiciendis dolore amet praesentium velit.\nSint perferendis consequatur eaque voluptas aliquam quidem magni.", + "informationUsed": "Nesciunt quasi vero.\nVitae debitis a.\nIllum illo non.\nEius tempore voluptatum sapiente assumenda harum officiis.\nVero ratione commodi dicta molestiae tenetur.", + "pastOrPresentOrders": "Quia voluptate officia ad laborum voluptatum laboriosam.\nDeleniti vitae corporis amet.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + } + ] + } + ], + "activityLog": [ + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "SHIELDS ZACHARIAH", + "timestamp": "2019-06-30" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "HODKIEWICZ OTIS", + "timestamp": "2022-09-15" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "KOVACEK CICERO", + "timestamp": "2019-02-12" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "HETTINGER LAVERNE", + "timestamp": "2019-03-31" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "BASHIRIAN SISTER", + "timestamp": "2022-07-07" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "CREMIN CHRIS", + "timestamp": "2014-09-21" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "O'REILLY JANAE", + "timestamp": "2014-02-21" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "CONN ROLANDO", + "timestamp": "2013-10-25" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "GLEASON TYSHAWN", + "timestamp": "2021-05-14" } ], "associatedSites": [ { - "dateNoted": "2017-01-14", + "dateNoted": "2021-09-21", + "notes": "", + "parcelID": "19776", + "siteID": "15574", + "siteRegistry": false + }, + { + "dateNoted": "2019-10-22", + "notes": "", + "parcelID": "19975", + "siteID": "18067", + "siteRegistry": true + }, + { + "dateNoted": "2016-07-12", "notes": "", - "parcelID": "20358", - "siteID": "19589", + "parcelID": "18238", + "siteID": "15276", "siteRegistry": false } ] }, { - "uuid": "5eb91ea7-da41-467d-b54e-329757c38c15", - "siteID": 15945, - "address": "1283 Jerde Rue", - "latitude": 49.7245, - "longitude": -136.9703, - "lastUpdated": "2014-02-23", - "city": "East Vernie", - "region": "Cariboo", - "victoriaFile": "26250-20/17179", + "uuid": "731b972c-69a2-4e91-889a-3bb837f3fda5", + "siteID": 16438, + "address": "2930 Rath Mountains", + "latitude": 58.7185, + "longitude": -138.3097, + "lastUpdated": "2022-06-29", + "city": "Logan", + "region": "Kootenay", + "victoriaFile": "26250-20/10423", "regionalFile": "N/A", "parcelIDs": [ - 9447882, - 4187310, - 2612678, - 7421022, - 7985650 + 8799426, + 3926680, + 5583111, + 5102898, + 1104336 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2021-04-09", - "completed": "2016-02-04", - "initiated": "2019-08-08", - "ministryContact": "BREITENBERG CYRUS", + "createdAt": "2014-09-17", + "completed": "2023-01-18", + "initiated": "2017-08-30", + "ministryContact": "BOYLE-RUTHERFORD KAELYN", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -27230,28 +37972,28 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false } ], "siteRegistry": false }, { - "createdAt": "2017-02-01", - "completed": "2016-01-20", - "initiated": "2018-09-10", - "ministryContact": "MORAR MARIBEL", + "createdAt": "2017-09-27", + "completed": "2018-06-20", + "initiated": "2022-06-18", + "ministryContact": "SHANAHAN JOSIANNE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -27260,33 +38002,38 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2017-02-10", - "completed": "2020-01-02", - "initiated": "2017-09-02", - "ministryContact": "LARSON CLAUDIA", + "createdAt": "2017-02-23", + "completed": "2016-10-02", + "initiated": "2019-02-15", + "ministryContact": "CHRISTIANSEN FRED", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -27300,7 +38047,7 @@ "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false } @@ -27308,10 +38055,10 @@ "siteRegistry": false }, { - "createdAt": "2015-01-21", - "completed": "2015-03-10", - "initiated": "2015-08-24", - "ministryContact": "SWIFT BRAEDEN", + "createdAt": "2019-12-28", + "completed": "2013-11-12", + "initiated": "2017-03-20", + "ministryContact": "RODRIGUEZ ANGELA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -27319,30 +38066,20 @@ "" ], "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false } ], "siteRegistry": false @@ -27350,19 +38087,19 @@ ], "participants": [ { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2019-03-08", - "startDate": "2019-01-21", + "name": "AMET, DOLOR SIT", + "endDate": "2015-02-09", + "startDate": "2016-08-07", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", - "endDate": "2023-09-19", - "startDate": "2019-05-27", + "endDate": "2013-10-15", + "startDate": "2013-11-21", "notes": "", "roles": [ "ORGANIZATION" @@ -27370,85 +38107,145 @@ "siteRegistry": true }, { - "name": "AMET, DOLOR SIT", - "endDate": "2020-12-04", - "startDate": "2015-01-25", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2022-11-14", + "startDate": "2021-11-13", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": true + "siteRegistry": false }, { - "name": "AMET, DOLOR SIT", - "endDate": "2014-10-03", - "startDate": "2016-04-23", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2014-06-21", + "startDate": "2015-03-10", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true + } + ], + "suspectLandUses": [ + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2021-11-08 (described on Site Profile dated 2021-11-08)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "name": "IPSUM", - "endDate": "2018-08-30", - "startDate": "2015-03-18", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": false + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2017-04-06 (described on Site Profile dated 2017-04-06)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2015-06-12 (described on Site Profile dated 2015-06-12)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2018-12-05 (described on Site Profile dated 2018-12-05)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2017-08-24 (described on Site Profile dated 2017-08-24)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], - "associatedSites": [ + "siteDisclosures": [ { - "dateNoted": "2020-06-19", - "notes": "", - "parcelID": "19748", - "siteID": "18373", - "siteRegistry": true + "siteRegistry": false, + "dateReceived": "2021-02-22", + "dateCompleted": "2019-08-10", + "dateEntered": "2019-08-28", + "dateRegistrar": "2023-06-17", + "dateLocalAuthorityReceived": "2013-11-20", + "summary": "Mollitia sapiente esse laudantium minima nulla blanditiis voluptates.", + "informationUsed": "Qui velit nobis ea quis.\nTotam dolorem fuga labore incidunt recusandae.\nInventore facilis illo commodi unde ab magnam impedit.", + "pastOrPresentOrders": "Molestias sunt culpa minus similique error quasi voluptate.\nAccusantium error nesciunt adipisci.\nAut repudiandae ratione ratione omnis.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + } + ] + } + ], + "activityLog": [ + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "TERRY TELLY", + "timestamp": "2018-09-05" }, { - "dateNoted": "2023-06-15", - "notes": "", - "parcelID": "15424", - "siteID": "20865", - "siteRegistry": false + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "WITTING MANLEY", + "timestamp": "2022-04-27" }, { - "dateNoted": "2017-04-19", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "WEIMANN ARNO", + "timestamp": "2016-07-09" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "OLSON SAMSON", + "timestamp": "2023-06-03" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "MULLER RUDY", + "timestamp": "2022-08-29" + } + ], + "associatedSites": [ + { + "dateNoted": "2019-04-28", "notes": "", - "parcelID": "15536", - "siteID": "20957", + "parcelID": "19210", + "siteID": "15954", "siteRegistry": false } ] }, { - "uuid": "4cd2af22-991d-42b9-8814-5decc4a15e93", - "siteID": 20614, - "address": "8255 Altenwerth Path", - "latitude": 55.3704, - "longitude": -122.8263, - "lastUpdated": "2014-02-18", - "city": "East Winfieldworth", - "region": "Vancouver Island/Coast", - "victoriaFile": "26250-20/15099", + "uuid": "7eff5706-284f-4d89-8ac5-d6e6a5523599", + "siteID": 17527, + "address": "552 Manley Tunnel", + "latitude": 51.2637, + "longitude": -123.4948, + "lastUpdated": "2016-04-20", + "city": "Larsoncester", + "region": "Mainland/Southwest", + "victoriaFile": "26250-20/17689", "regionalFile": "N/A", "parcelIDs": [ - 2460966, - 4936620, - 4561604, - 2412110, - 5216673 + 2253672, + 4519309, + 1993558, + 4821060, + 8091314 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2016-02-07", - "completed": "2015-12-25", - "initiated": "2016-01-04", - "ministryContact": "HERMISTON VICENTE", + "createdAt": "2018-06-03", + "completed": "2014-06-01", + "initiated": "2014-03-12", + "ministryContact": "BLOCK WILLY", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -27459,46 +38256,21 @@ { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - } - ], - "siteRegistry": true - }, - { - "createdAt": "2020-11-24", - "completed": "2023-04-24", - "initiated": "2016-07-01", - "ministryContact": "ROHAN AUSTIN", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": true }, { @@ -27507,13 +38279,13 @@ "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2016-01-05", - "completed": "2016-10-17", - "initiated": "2022-06-08", - "ministryContact": "SCHAEFER LUCAS", + "createdAt": "2022-10-16", + "completed": "2020-11-14", + "initiated": "2017-05-09", + "ministryContact": "MONAHAN JERRELL", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -27523,27 +38295,27 @@ "notationParticipants": [ { "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true + "role": "REQUESTED BY", + "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true } ], "siteRegistry": false }, { - "createdAt": "2013-10-27", - "completed": "2023-04-28", - "initiated": "2017-12-02", - "ministryContact": "VONRUEDEN BELLE", + "createdAt": "2014-04-08", + "completed": "2017-03-04", + "initiated": "2016-05-09", + "ministryContact": "WIEGAND COLLIN", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -27554,31 +38326,26 @@ { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false } ], "siteRegistry": true }, { - "createdAt": "2015-03-13", - "completed": "2016-10-12", - "initiated": "2019-06-11", - "ministryContact": "ZULAUF ASHA", + "createdAt": "2022-12-26", + "completed": "2022-11-03", + "initiated": "2017-07-30", + "ministryContact": "GOLDNER ANTONETTA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -27587,19 +38354,24 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true + "role": "SUBMITTED BY", + "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", @@ -27607,44 +38379,54 @@ "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true } ], "participants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2022-12-22", - "startDate": "2016-12-13", + "name": "AMET, DOLOR SIT", + "endDate": "2014-09-13", + "startDate": "2020-11-07", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false }, { - "name": "IPSUM", - "endDate": "2019-02-06", - "startDate": "2013-12-28", + "name": "AMET, DOLOR SIT", + "endDate": "2014-08-06", + "startDate": "2022-11-14", "notes": "", "roles": [ "EMPLOYEE" ], + "siteRegistry": true + }, + { + "name": "AMET, DOLOR SIT", + "endDate": "2014-02-22", + "startDate": "2017-11-20", + "notes": "", + "roles": [ + "ORGANIZATION" + ], "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", - "endDate": "2017-11-02", - "startDate": "2016-04-26", + "endDate": "2022-08-29", + "startDate": "2018-11-09", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": false }, { - "name": "IPSUM", - "endDate": "2021-12-27", - "startDate": "2019-08-23", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2022-01-21", + "startDate": "2017-09-18", "notes": "", "roles": [ "ORGANIZATION" @@ -27652,48 +38434,132 @@ "siteRegistry": true } ], + "suspectLandUses": [ + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2018-11-03 (described on Site Profile dated 2018-11-03)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2018-09-21 (described on Site Profile dated 2018-09-21)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2013-11-11 (described on Site Profile dated 2013-11-11)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2013-12-16 (described on Site Profile dated 2013-12-16)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + } + ], + "siteDisclosures": [ + { + "siteRegistry": true, + "dateReceived": "2017-06-10", + "dateCompleted": "2021-09-03", + "dateEntered": "2014-08-21", + "dateRegistrar": "2016-11-13", + "dateLocalAuthorityReceived": "2015-11-27", + "summary": "Minima dolorem quo temporibus eligendi.\nDolore ad magnam aperiam nobis.", + "informationUsed": "Commodi corrupti necessitatibus fuga hic dolor atque sit hic ducimus.\nUnde quisquam ipsam excepturi.\nVoluptate reiciendis quisquam.\nMaiores minus laudantium asperiores expedita nesciunt saepe occaecati blanditiis enim.", + "pastOrPresentOrders": "Illo laborum odio asperiores cumque tenetur unde.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + } + ] + } + ], + "activityLog": [ + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "ZIEME BUD", + "timestamp": "2018-05-29" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "JACOBI BELLE", + "timestamp": "2020-11-13" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "CROOKS LINDSEY", + "timestamp": "2016-02-15" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "GULGOWSKI EASTER", + "timestamp": "2013-12-16" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "O'REILLY FABIOLA", + "timestamp": "2018-04-03" + } + ], "associatedSites": [ { - "dateNoted": "2018-06-07", + "dateNoted": "2018-05-12", "notes": "", - "parcelID": "20455", - "siteID": "17012", - "siteRegistry": false + "parcelID": "16927", + "siteID": "17181", + "siteRegistry": true }, { - "dateNoted": "2016-06-22", + "dateNoted": "2020-11-28", "notes": "", - "parcelID": "19439", - "siteID": "19854", - "siteRegistry": true + "parcelID": "20793", + "siteID": "18494", + "siteRegistry": false } ] }, { - "uuid": "cab7c5f5-6027-4cbf-97b3-fdf91418eb98", - "siteID": 17768, - "address": "89887 Goldner Curve", - "latitude": 58.8263, - "longitude": -134.4658, - "lastUpdated": "2018-09-06", - "city": "North Eleazarville", + "uuid": "4ac851cd-9886-4f6f-83f5-7efe9521aef0", + "siteID": 17294, + "address": "8761 Hessel Canyon", + "latitude": 53.5329, + "longitude": -127.6297, + "lastUpdated": "2014-09-07", + "city": "Monserrathaven", "region": " North Coast", - "victoriaFile": "26250-20/19204", + "victoriaFile": "26250-20/10895", "regionalFile": "N/A", "parcelIDs": [ - 3178400, - 6193094, - 2647749, - 8339296, - 3225275 + 8950200, + 9322363, + 341502, + 3992048, + 487122 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2019-08-12", - "completed": "2020-10-30", - "initiated": "2014-12-19", - "ministryContact": "KUHIC KYLEE", + "createdAt": "2018-11-20", + "completed": "2019-10-02", + "initiated": "2016-11-21", + "ministryContact": "RAU ERIN", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -27703,11 +38569,16 @@ "notationParticipants": [ { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true }, @@ -27719,16 +38590,16 @@ { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true } ], "siteRegistry": true }, { - "createdAt": "2015-11-05", - "completed": "2023-04-11", - "initiated": "2023-05-15", - "ministryContact": "WOLF DORCAS", + "createdAt": "2014-04-05", + "completed": "2022-01-12", + "initiated": "2016-07-03", + "ministryContact": "RUNOLFSSON LARISSA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -27751,6 +38622,11 @@ "role": "REQUESTED BY", "siteRegistry": true }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", @@ -27760,10 +38636,10 @@ "siteRegistry": true }, { - "createdAt": "2020-01-14", - "completed": "2018-11-28", - "initiated": "2022-10-04", - "ministryContact": "ROGAHN IAN", + "createdAt": "2020-09-01", + "completed": "2015-03-19", + "initiated": "2021-01-08", + "ministryContact": "KUVALIS ANGELA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -27774,10 +38650,10 @@ { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true } @@ -27785,10 +38661,10 @@ "siteRegistry": false }, { - "createdAt": "2023-04-10", - "completed": "2019-03-17", - "initiated": "2014-05-22", - "ministryContact": "BALISTRERI DAWN", + "createdAt": "2015-06-12", + "completed": "2014-01-11", + "initiated": "2022-06-13", + "ministryContact": "O'REILLY BRENDEN", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -27798,12 +38674,12 @@ "notationParticipants": [ { "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true + "role": "SUBMITTED BY", + "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true }, { @@ -27811,35 +38687,20 @@ "role": "REQUESTED BY", "siteRegistry": true }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true } ], "participants": [ { - "name": "IPSUM", - "endDate": "2015-06-19", - "startDate": "2018-08-07", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2017-09-24", - "startDate": "2013-11-23", + "name": "AMET, DOLOR SIT", + "endDate": "2019-04-13", + "startDate": "2016-08-27", "notes": "", "roles": [ "EMPLOYEE" @@ -27848,60 +38709,164 @@ }, { "name": "IPSUM", - "endDate": "2022-10-10", - "startDate": "2021-09-10", + "endDate": "2021-04-16", + "startDate": "2017-03-17", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true + } + ], + "suspectLandUses": [ + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2019-11-28 (described on Site Profile dated 2019-11-28)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "name": "AMET, DOLOR SIT", - "endDate": "2018-06-10", - "startDate": "2021-07-19", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": true + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2013-12-16 (described on Site Profile dated 2013-12-16)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2014-09-17 (described on Site Profile dated 2014-09-17)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2018-05-08 (described on Site Profile dated 2018-05-08)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2016-11-10 (described on Site Profile dated 2016-11-10)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + } + ], + "siteDisclosures": [ + { + "siteRegistry": false, + "dateReceived": "2014-01-06", + "dateCompleted": "2022-05-31", + "dateEntered": "2023-08-08", + "dateRegistrar": "2020-05-21", + "dateLocalAuthorityReceived": "2020-04-22", + "summary": "Facere enim laborum exercitationem.\nNostrum itaque soluta.\nVoluptatem unde voluptatum aperiam nihil.", + "informationUsed": "Voluptates eligendi magnam impedit debitis iste.\nPorro quisquam ipsa adipisci repudiandae corporis necessitatibus corrupti vitae recusandae.\nIure perspiciatis culpa quasi quo cum voluptatem occaecati.\nIusto tempora tenetur officia laborum magnam.\nNeque magni consectetur.", + "pastOrPresentOrders": "Iure blanditiis ipsum fuga.\nSimilique accusantium dolorum cumque nam mollitia incidunt accusamus.\nEos delectus aspernatur.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + } + ] + } + ], + "activityLog": [ + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "SCHINNER ROSELLA", + "timestamp": "2017-06-19" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "WUNSCH DELPHIA", + "timestamp": "2021-11-05" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "BECHTELAR PANSY", + "timestamp": "2016-09-20" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "MEDHURST DEXTER", + "timestamp": "2023-01-10" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "SIPES ULISES", + "timestamp": "2016-04-11" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "HOPPE CLETUS", + "timestamp": "2017-03-05" } ], "associatedSites": [ { - "dateNoted": "2014-05-08", + "dateNoted": "2019-03-19", "notes": "", - "parcelID": "15522", - "siteID": "18799", - "siteRegistry": false + "parcelID": "18026", + "siteID": "17155", + "siteRegistry": true + }, + { + "dateNoted": "2020-01-28", + "notes": "", + "parcelID": "15290", + "siteID": "17118", + "siteRegistry": true + }, + { + "dateNoted": "2018-09-03", + "notes": "", + "parcelID": "19690", + "siteID": "16916", + "siteRegistry": true } ] }, { - "uuid": "ca759ae1-ba21-4936-945f-9f9cf06de3ae", - "siteID": 16839, - "address": "4767 Marietta Squares", - "latitude": 49.8602, - "longitude": -128.5745, - "lastUpdated": "2015-07-15", - "city": "North Kristytown", - "region": "Thompson-Okanagan", - "victoriaFile": "26250-20/17993", + "uuid": "f44add4d-281e-419e-bab1-d91ea8d65e89", + "siteID": 18110, + "address": "7104 Runolfsdottir Wall", + "latitude": 51.6247, + "longitude": -133.4989, + "lastUpdated": "2022-01-12", + "city": "East Furman", + "region": "Mainland/Southwest", + "victoriaFile": "26250-20/10736", "regionalFile": "N/A", "parcelIDs": [ - 3862982, - 1886316, - 6917212, - 5525400, - 8256590 + 9318280, + 3840559, + 7756680, + 4570893, + 8151765 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2022-05-26", - "completed": "2021-04-06", - "initiated": "2023-01-26", - "ministryContact": "WISOKY THEO", + "createdAt": "2016-01-15", + "completed": "2016-05-06", + "initiated": "2015-07-12", + "ministryContact": "ORN DARYL", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -27912,26 +38877,26 @@ { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2016-12-08", - "completed": "2014-04-10", - "initiated": "2022-09-24", - "ministryContact": "LOCKMAN MAXIMO", + "createdAt": "2013-12-31", + "completed": "2018-08-24", + "initiated": "2014-12-10", + "ministryContact": "FRANEY DEXTER", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -27940,18 +38905,33 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false - }, + } + ], + "siteRegistry": false + }, + { + "createdAt": "2019-11-14", + "completed": "2015-05-12", + "initiated": "2023-06-04", + "ministryContact": "RUNOLFSSON DESTINEE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": true }, { @@ -27961,12 +38941,208 @@ } ], "siteRegistry": false + } + ], + "participants": [ + { + "name": "AMET, DOLOR SIT", + "endDate": "2016-06-29", + "startDate": "2022-12-26", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false }, { - "createdAt": "2019-04-25", - "completed": "2021-04-29", - "initiated": "2016-01-08", - "ministryContact": "MARQUARDT LUELLA", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2018-06-16", + "startDate": "2019-12-29", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2016-11-22", + "startDate": "2022-03-30", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2016-12-09", + "startDate": "2015-06-23", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + } + ], + "suspectLandUses": [ + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2019-11-25 (described on Site Profile dated 2019-11-25)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2021-02-16 (described on Site Profile dated 2021-02-16)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2017-12-21 (described on Site Profile dated 2017-12-21)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2017-01-03 (described on Site Profile dated 2017-01-03)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2015-04-05 (described on Site Profile dated 2015-04-05)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + } + ], + "siteDisclosures": [ + { + "siteRegistry": false, + "dateReceived": "2020-06-16", + "dateCompleted": "2017-05-13", + "dateEntered": "2017-07-08", + "dateRegistrar": "2019-05-21", + "dateLocalAuthorityReceived": "2016-07-01", + "summary": "Esse aspernatur maxime maiores pariatur magnam voluptates nisi.", + "informationUsed": "Modi facilis commodi iusto.\nSequi ex atque eius a ducimus pariatur.\nTempore quo minus eius aut tempora debitis sed suscipit repellendus.\nAdipisci veniam quae impedit consequuntur eos doloribus maxime deleniti.", + "pastOrPresentOrders": "Laudantium fugit veritatis.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + } + ] + }, + { + "siteRegistry": true, + "dateReceived": "2021-10-27", + "dateCompleted": "2021-05-05", + "dateEntered": "2021-05-23", + "dateRegistrar": "2015-09-23", + "dateLocalAuthorityReceived": "2022-06-07", + "summary": "Tempora nesciunt rerum distinctio repudiandae excepturi id nemo maiores totam.\nMaiores vel quidem.\nSuscipit explicabo rem natus.", + "informationUsed": "Aut placeat animi eligendi reiciendis error dicta fugiat.\nVeniam voluptate dignissimos.\nOdio unde necessitatibus cum corporis.", + "pastOrPresentOrders": "Porro eveniet saepe recusandae sapiente hic dolores.\nMaiores facilis earum tempora rerum eius beatae illum pariatur.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + } + ] + } + ], + "activityLog": [ + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "CUMMERATA BRIANA", + "timestamp": "2020-07-02" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "PARISIAN ELSE", + "timestamp": "2019-09-20" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "MUELLER BART", + "timestamp": "2019-11-18" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "KSHLERIN MANLEY", + "timestamp": "2020-05-17" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "GOODWIN FRIEDRICH", + "timestamp": "2017-02-18" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "BEDNAR-PURDY GREGORY", + "timestamp": "2019-05-11" + } + ], + "associatedSites": [ + { + "dateNoted": "2023-03-01", + "notes": "", + "parcelID": "20950", + "siteID": "18884", + "siteRegistry": false + } + ] + }, + { + "uuid": "d6ca1abb-017f-4778-aa6f-6a3ad0d0d77c", + "siteID": 16220, + "address": "878 Kutch Burg", + "latitude": 51.2968, + "longitude": -138.4448, + "lastUpdated": "2023-01-09", + "city": "Shoreline", + "region": "Cariboo", + "victoriaFile": "26250-20/14951", + "regionalFile": "N/A", + "parcelIDs": [ + 7236292, + 8237226, + 1869458, + 9217611, + 7031380 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2014-02-13", + "completed": "2023-03-31", + "initiated": "2023-02-15", + "ministryContact": "BODE-STROSIN KIEL", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -27977,36 +39153,51 @@ { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true - }, + "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "createdAt": "2016-04-13", + "completed": "2015-06-08", + "initiated": "2019-08-01", + "ministryContact": "KUPHAL ELIJAH", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true } ], "siteRegistry": false }, { - "createdAt": "2017-01-23", - "completed": "2022-11-20", - "initiated": "2021-11-13", - "ministryContact": "MUELLER ALENE", + "createdAt": "2014-10-25", + "completed": "2017-11-05", + "initiated": "2019-01-02", + "ministryContact": "SANFORD LEXIE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -28015,19 +39206,19 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", @@ -28038,10 +39229,10 @@ "siteRegistry": false }, { - "createdAt": "2015-12-25", - "completed": "2017-03-11", - "initiated": "2022-10-30", - "ministryContact": "BEIER HOWARD", + "createdAt": "2015-09-07", + "completed": "2022-01-16", + "initiated": "2023-03-16", + "ministryContact": "GUSIKOWSKI SYDNIE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -28049,30 +39240,35 @@ "" ], "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true } ], "participants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2015-05-03", + "startDate": "2015-09-29", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, { "name": "IPSUM", - "endDate": "2014-06-30", - "startDate": "2016-02-28", + "endDate": "2022-03-08", + "startDate": "2021-11-17", "notes": "", "roles": [ "EMPLOYEE" @@ -28080,65 +39276,179 @@ "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2017-09-21", - "startDate": "2022-11-12", + "name": "AMET, DOLOR SIT", + "endDate": "2014-11-20", + "startDate": "2021-07-02", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false + } + ], + "suspectLandUses": [ + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2014-05-01 (described on Site Profile dated 2014-05-01)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2021-08-23 (described on Site Profile dated 2021-08-23)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2013-11-17 (described on Site Profile dated 2013-11-17)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2018-05-03 (described on Site Profile dated 2018-05-03)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + } + ], + "siteDisclosures": [ + { + "siteRegistry": false, + "dateReceived": "2022-02-08", + "dateCompleted": "2019-06-04", + "dateEntered": "2022-11-26", + "dateRegistrar": "2017-10-27", + "dateLocalAuthorityReceived": "2021-05-04", + "summary": "Quos quibusdam ipsa beatae quae sed recusandae modi.\nAliquid nostrum accusantium minus accusamus alias.", + "informationUsed": "Nobis nisi dolorum mollitia quod eius veniam.\nFugiat labore natus.\nDeserunt ullam eveniet.", + "pastOrPresentOrders": "Ducimus voluptatibus incidunt minima laudantium.\nLaborum accusamus officia excepturi nemo.\nOfficia quod facilis aliquam earum aut magnam.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + } + ] + }, + { + "siteRegistry": false, + "dateReceived": "2014-11-27", + "dateCompleted": "2020-06-19", + "dateEntered": "2023-09-16", + "dateRegistrar": "2016-08-11", + "dateLocalAuthorityReceived": "2017-11-08", + "summary": "Laudantium mollitia ut libero illo nulla.\nExpedita distinctio sapiente aliquid exercitationem quos.\nBlanditiis architecto ex.", + "informationUsed": "Similique enim architecto aliquam.\nMagnam cupiditate explicabo quis.\nQuisquam perspiciatis laudantium sint distinctio exercitationem temporibus magnam molestias dolore.", + "pastOrPresentOrders": "Quaerat perspiciatis sapiente.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + } + ] + } + ], + "activityLog": [ + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "CORMIER JESSIE", + "timestamp": "2020-05-30" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "MULLER ADA", + "timestamp": "2018-08-14" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "TOWNE KAVON", + "timestamp": "2018-08-08" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "ROMAGUERA VADA", + "timestamp": "2020-01-16" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "PROHASKA RAEGAN", + "timestamp": "2018-10-21" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "JERDE ALISON", + "timestamp": "2020-08-14" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "STANTON NASH", + "timestamp": "2022-05-17" } ], "associatedSites": [ { - "dateNoted": "2019-03-28", + "dateNoted": "2020-12-16", "notes": "", - "parcelID": "18841", - "siteID": "17394", - "siteRegistry": true + "parcelID": "17095", + "siteID": "20571", + "siteRegistry": false }, { - "dateNoted": "2016-02-29", + "dateNoted": "2018-11-16", "notes": "", - "parcelID": "16355", - "siteID": "20717", - "siteRegistry": false + "parcelID": "17904", + "siteID": "19587", + "siteRegistry": true }, { - "dateNoted": "2014-08-30", + "dateNoted": "2020-08-06", "notes": "", - "parcelID": "19665", - "siteID": "19407", + "parcelID": "18119", + "siteID": "18840", "siteRegistry": false } ] }, { - "uuid": "085c322b-2d43-4bc3-b27f-b65345cc68df", - "siteID": 18069, - "address": "339 Stark Land", - "latitude": 50.0283, - "longitude": -137.1229, - "lastUpdated": "2018-08-10", - "city": "Mount Vernon", - "region": "Thompson-Okanagan", - "victoriaFile": "26250-20/874", + "uuid": "38d823c4-41a1-43f0-ae88-4006128ade0c", + "siteID": 16296, + "address": "514 Berge Overpass", + "latitude": 52.8652, + "longitude": -123.4114, + "lastUpdated": "2014-05-10", + "city": "Gastonchester", + "region": "Cariboo", + "victoriaFile": "26250-20/6306", "regionalFile": "N/A", "parcelIDs": [ - 1502082, - 2737639, - 937635, - 2648296, - 3635942 + 1086071, + 9120497, + 8438378, + 832396, + 1867518 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2019-06-19", - "completed": "2020-01-20", - "initiated": "2023-07-03", - "ministryContact": "SCHILLER MELVIN", + "createdAt": "2023-01-16", + "completed": "2014-05-19", + "initiated": "2023-09-16", + "ministryContact": "HARBER-PURDY ALEXANDRA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -28152,28 +39462,28 @@ "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true } ], "siteRegistry": true }, { - "createdAt": "2014-10-02", - "completed": "2020-11-09", - "initiated": "2015-08-21", - "ministryContact": "ZIEMANN STANTON", + "createdAt": "2021-08-25", + "completed": "2020-10-15", + "initiated": "2020-11-12", + "ministryContact": "MARVIN SAVANNAH", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -28181,39 +39491,34 @@ "" ], "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2013-12-26", - "completed": "2019-09-10", - "initiated": "2014-06-29", - "ministryContact": "PACOCHA CLAUDINE", + "createdAt": "2021-01-06", + "completed": "2021-12-31", + "initiated": "2023-06-01", + "ministryContact": "VOLKMAN TOMMIE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -28222,13 +39527,8 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": true }, { @@ -28243,70 +39543,197 @@ "participants": [ { "name": "SHELL CANADA PRODUCTS", - "endDate": "2016-02-07", - "startDate": "2023-07-15", + "endDate": "2014-06-12", + "startDate": "2019-06-15", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2016-12-24", - "startDate": "2016-09-17", + "name": "AMET, DOLOR SIT", + "endDate": "2014-11-11", + "startDate": "2023-08-01", "notes": "", "roles": [ "EMPLOYEE" ], "siteRegistry": true + } + ], + "suspectLandUses": [ + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2014-04-05 (described on Site Profile dated 2014-04-05)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2019-01-23", - "startDate": "2019-07-06", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": false + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2016-02-02 (described on Site Profile dated 2016-02-02)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2020-01-15 (described on Site Profile dated 2020-01-15)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2019-11-02 (described on Site Profile dated 2019-11-02)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2022-10-25 (described on Site Profile dated 2022-10-25)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + } + ], + "siteDisclosures": [ + { + "siteRegistry": true, + "dateReceived": "2015-01-16", + "dateCompleted": "2021-02-19", + "dateEntered": "2020-03-02", + "dateRegistrar": "2015-09-03", + "dateLocalAuthorityReceived": "2022-04-25", + "summary": "Magni mollitia alias cum similique consequuntur illo eveniet ullam.", + "informationUsed": "Soluta illo quod.\nDelectus debitis expedita doloribus autem autem perferendis.\nVoluptatum maiores nesciunt neque magni ipsam fugiat in.\nRepudiandae quas voluptatem iste libero animi.\nIllo tenetur aspernatur quas.", + "pastOrPresentOrders": "Iusto odit voluptates.\nEx dolorem tenetur atque tempore.\nId ab suscipit eveniet ut in sapiente.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + } + ] + }, + { + "siteRegistry": true, + "dateReceived": "2016-10-15", + "dateCompleted": "2020-09-27", + "dateEntered": "2018-03-08", + "dateRegistrar": "2013-12-03", + "dateLocalAuthorityReceived": "2021-03-08", + "summary": "Ea vitae impedit error sequi similique praesentium totam aliquid.", + "informationUsed": "Ipsum id deserunt rerum velit iste itaque laboriosam.\nAutem quam quia nulla iste.\nAssumenda ea facere harum quae tempore suscipit facilis.\nUnde consectetur qui inventore provident dolorum.\nDoloremque ut illo pariatur.", + "pastOrPresentOrders": "Voluptates aspernatur quos rem.\nFuga voluptas veniam qui voluptate accusantium mollitia numquam cum eaque.\nArchitecto sint officiis sed ipsa dolore ipsam voluptatibus totam quae.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + } + ] + } + ], + "activityLog": [ + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "HELLER WENDY", + "timestamp": "2020-07-14" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "GREENHOLT MAURICE", + "timestamp": "2021-04-12" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "HOEGER TIMOTHY", + "timestamp": "2022-02-19" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "MOEN KOBE", + "timestamp": "2017-03-11" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "GRAHAM ARTHUR", + "timestamp": "2016-05-11" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "HAUCK DELL", + "timestamp": "2023-01-10" } ], "associatedSites": [ { - "dateNoted": "2020-05-28", + "dateNoted": "2016-09-29", + "notes": "", + "parcelID": "20311", + "siteID": "15381", + "siteRegistry": false + }, + { + "dateNoted": "2016-10-05", "notes": "", - "parcelID": "17460", - "siteID": "20366", + "parcelID": "16134", + "siteID": "15944", "siteRegistry": false + }, + { + "dateNoted": "2018-05-06", + "notes": "", + "parcelID": "16636", + "siteID": "20178", + "siteRegistry": true } ] }, { - "uuid": "f4305c91-1fce-492b-b5c5-cf47e63d3a91", - "siteID": 17203, - "address": "212 Becker Way", - "latitude": 50.4486, - "longitude": -118.1995, - "lastUpdated": "2019-07-11", - "city": "Lake Manley", - "region": "Cariboo", - "victoriaFile": "26250-20/7207", + "uuid": "312a4887-346a-4d13-98b8-6a57cedcd9df", + "siteID": 20329, + "address": "3274 Stehr Drive", + "latitude": 51.369, + "longitude": -136.3499, + "lastUpdated": "2023-06-25", + "city": "Howetown", + "region": " North Coast", + "victoriaFile": "26250-20/7891", "regionalFile": "N/A", "parcelIDs": [ - 4713914, - 1413950, - 3795791, - 9059115, - 8325198 + 4437680, + 8599936, + 6712235, + 9272456, + 787222 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2014-05-11", - "completed": "2016-11-11", - "initiated": "2014-09-17", - "ministryContact": "HAYES IDELLA", + "createdAt": "2020-02-28", + "completed": "2014-08-02", + "initiated": "2020-05-11", + "ministryContact": "FRIESEN ROGERS", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -28314,24 +39741,34 @@ "" ], "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2017-01-27", - "completed": "2022-03-26", - "initiated": "2023-06-10", - "ministryContact": "VOLKMAN TREVOR", + "createdAt": "2022-05-20", + "completed": "2023-08-12", + "initiated": "2021-10-02", + "ministryContact": "HILPERT DANDRE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -28339,34 +39776,29 @@ "" ], "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2015-01-11", - "completed": "2016-06-16", - "initiated": "2015-12-11", - "ministryContact": "TURCOTTE GRACIE", + "createdAt": "2016-01-23", + "completed": "2019-02-28", + "initiated": "2013-12-18", + "ministryContact": "VON KAYDEN", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -28374,59 +39806,34 @@ "" ], "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2014-11-14", - "completed": "2018-05-28", - "initiated": "2019-05-30", - "ministryContact": "RUSSEL JAMISON", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - } - ], - "siteRegistry": true - }, - { - "createdAt": "2022-05-31", - "completed": "2020-06-07", - "initiated": "2020-06-29", - "ministryContact": "KUB GLADYCE", + "createdAt": "2022-09-25", + "completed": "2021-01-14", + "initiated": "2022-07-23", + "ministryContact": "QUITZON HALIE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -28440,14 +39847,9 @@ "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false } ], "siteRegistry": false @@ -28455,9 +39857,9 @@ ], "participants": [ { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2016-05-28", - "startDate": "2014-03-06", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2022-11-14", + "startDate": "2015-12-08", "notes": "", "roles": [ "ORGANIZATION" @@ -28465,19 +39867,19 @@ "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2017-05-08", - "startDate": "2016-12-14", + "name": "AMET, DOLOR SIT", + "endDate": "2022-09-19", + "startDate": "2015-09-02", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2020-02-02", - "startDate": "2020-06-12", + "name": "IPSUM", + "endDate": "2013-11-07", + "startDate": "2019-09-09", "notes": "", "roles": [ "EMPLOYEE" @@ -28485,75 +39887,156 @@ "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2014-04-07", - "startDate": "2019-05-28", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2019-03-11", + "startDate": "2021-05-20", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false + } + ], + "suspectLandUses": [ + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2015-06-23 (described on Site Profile dated 2015-06-23)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "name": "IPSUM", - "endDate": "2021-10-02", - "startDate": "2016-12-24", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": false + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2019-12-16 (described on Site Profile dated 2019-12-16)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + } + ], + "siteDisclosures": [ + { + "siteRegistry": false, + "dateReceived": "2017-01-11", + "dateCompleted": "2014-10-14", + "dateEntered": "2013-11-22", + "dateRegistrar": "2019-01-08", + "dateLocalAuthorityReceived": "2019-08-20", + "summary": "Incidunt recusandae harum explicabo iure est necessitatibus.\nExplicabo adipisci vitae harum culpa delectus consequatur iusto.\nNihil distinctio earum.", + "informationUsed": "Voluptatum quae dolorem nisi non voluptates ut earum sapiente magnam.\nMollitia adipisci quae ex necessitatibus qui molestias laudantium aliquid.\nDignissimos quisquam saepe molestiae quis.", + "pastOrPresentOrders": "Quia praesentium consectetur blanditiis aspernatur facilis eveniet et nulla ipsa.\nPraesentium maiores ipsa consequuntur error odit labore esse.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + } + ] + } + ], + "activityLog": [ + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "HERMANN RICHMOND", + "timestamp": "2015-11-12" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "SMITH MARIANNE", + "timestamp": "2023-08-10" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "HETTINGER CORDIA", + "timestamp": "2016-10-27" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "KEELING IAN", + "timestamp": "2021-07-15" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "ADAMS NORBERTO", + "timestamp": "2023-08-22" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "BRAUN AYLIN", + "timestamp": "2022-04-14" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "SENGER RICHMOND", + "timestamp": "2022-07-13" } ], "associatedSites": [ { - "dateNoted": "2015-02-18", + "dateNoted": "2020-12-12", "notes": "", - "parcelID": "19546", - "siteID": "18775", - "siteRegistry": true + "parcelID": "20063", + "siteID": "18243", + "siteRegistry": false }, { - "dateNoted": "2015-07-26", + "dateNoted": "2019-07-05", "notes": "", - "parcelID": "19953", - "siteID": "19740", - "siteRegistry": true + "parcelID": "20315", + "siteID": "16330", + "siteRegistry": false }, { - "dateNoted": "2017-12-24", + "dateNoted": "2016-06-08", "notes": "", - "parcelID": "17485", - "siteID": "17318", - "siteRegistry": false + "parcelID": "19849", + "siteID": "18066", + "siteRegistry": true } ] }, { - "uuid": "8cd3169c-e6be-4a5b-904d-867d4f7da791", - "siteID": 15457, - "address": "731 Renner Flat", - "latitude": 53.6598, - "longitude": -138.8618, - "lastUpdated": "2022-09-18", - "city": "Enriqueboro", - "region": "Mainland/Southwest", - "victoriaFile": "26250-20/11313", + "uuid": "26c40ece-90a4-4fc3-b3f1-1381ee71776b", + "siteID": 20836, + "address": "3141 Letha Ferry", + "latitude": 52.7535, + "longitude": -131.8367, + "lastUpdated": "2020-12-27", + "city": "Toledo", + "region": "Thompson-Okanagan", + "victoriaFile": "26250-20/4367", "regionalFile": "N/A", "parcelIDs": [ - 9957510, - 4496769, - 2526105, - 3355395, - 2971019 + 1849669, + 6419101, + 2189670, + 5293730, + 1310408 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2021-08-07", - "completed": "2017-03-07", - "initiated": "2015-07-13", - "ministryContact": "HALVORSON KAITLIN", + "createdAt": "2017-03-22", + "completed": "2016-11-13", + "initiated": "2021-02-08", + "ministryContact": "HINTZ JEANIE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -28562,23 +40045,33 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": false } ], "siteRegistry": true }, { - "createdAt": "2015-12-08", - "completed": "2015-04-01", - "initiated": "2020-04-03", - "ministryContact": "KRIS TAVARES", + "createdAt": "2015-03-13", + "completed": "2019-05-02", + "initiated": "2019-02-06", + "ministryContact": "SCHUMM CLEMENTINE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -28592,19 +40085,64 @@ "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "createdAt": "2016-04-04", + "completed": "2022-05-20", + "initiated": "2022-04-15", + "ministryContact": "LEHNER SANTINO", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false - }, + } + ], + "siteRegistry": false + }, + { + "createdAt": "2014-01-06", + "completed": "2020-10-30", + "initiated": "2022-07-24", + "ministryContact": "KUHLMAN AMPARO", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false } ], "siteRegistry": false @@ -28612,9 +40150,9 @@ ], "participants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2014-05-07", - "startDate": "2015-02-12", + "name": "AMET, DOLOR SIT", + "endDate": "2023-02-01", + "startDate": "2017-07-08", "notes": "", "roles": [ "ORGANIZATION" @@ -28622,39 +40160,39 @@ "siteRegistry": true }, { - "name": "AMET, DOLOR SIT", - "endDate": "2019-06-08", - "startDate": "2014-05-04", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2019-03-18", + "startDate": "2015-04-30", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], - "siteRegistry": false + "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2017-11-23", - "startDate": "2021-05-20", + "name": "IPSUM", + "endDate": "2017-10-26", + "startDate": "2017-05-12", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false }, { "name": "IPSUM", - "endDate": "2021-11-01", - "startDate": "2019-12-15", + "endDate": "2015-09-17", + "startDate": "2015-09-02", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false }, { "name": "IPSUM", - "endDate": "2022-08-20", - "startDate": "2022-05-08", + "endDate": "2020-12-03", + "startDate": "2016-03-15", "notes": "", "roles": [ "ORGANIZATION" @@ -28662,48 +40200,174 @@ "siteRegistry": true } ], + "suspectLandUses": [ + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2016-03-19 (described on Site Profile dated 2016-03-19)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2014-10-28 (described on Site Profile dated 2014-10-28)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2016-09-22 (described on Site Profile dated 2016-09-22)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2022-06-19 (described on Site Profile dated 2022-06-19)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2018-03-06 (described on Site Profile dated 2018-03-06)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + } + ], + "siteDisclosures": [ + { + "siteRegistry": false, + "dateReceived": "2023-09-16", + "dateCompleted": "2014-07-20", + "dateEntered": "2018-10-29", + "dateRegistrar": "2014-07-21", + "dateLocalAuthorityReceived": "2016-03-20", + "summary": "Magni dolorum at dignissimos accusantium nam.", + "informationUsed": "In quas sequi sunt enim harum.\nModi temporibus perferendis asperiores quia in nemo rerum delectus cum.\nAutem dolore nostrum reprehenderit magni aliquid.\nAd enim modi nemo consequatur facere.", + "pastOrPresentOrders": "Minus aut rerum odit voluptatibus temporibus ea fuga vero.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + } + ] + } + ], + "activityLog": [ + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "BALISTRERI BURNICE", + "timestamp": "2022-01-31" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "HETTINGER NIKKI", + "timestamp": "2023-01-14" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "MCKENZIE OZELLA", + "timestamp": "2021-07-11" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "ALTENWERTH CRAWFORD", + "timestamp": "2016-05-17" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "BERNHARD OCTAVIA", + "timestamp": "2017-01-24" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "KONOPELSKI MYRTLE", + "timestamp": "2022-05-14" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "HARBER EMMETT", + "timestamp": "2020-01-28" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "COLLIER IDA", + "timestamp": "2021-02-13" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "ZEMLAK ADELLE", + "timestamp": "2020-05-09" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "SIPES CATHERINE", + "timestamp": "2018-12-01" + } + ], "associatedSites": [ { - "dateNoted": "2023-05-27", + "dateNoted": "2015-06-08", "notes": "", - "parcelID": "17902", - "siteID": "20178", + "parcelID": "16101", + "siteID": "20671", + "siteRegistry": true + }, + { + "dateNoted": "2019-01-20", + "notes": "", + "parcelID": "18131", + "siteID": "16824", "siteRegistry": false }, { - "dateNoted": "2019-08-18", + "dateNoted": "2023-04-23", "notes": "", - "parcelID": "19140", - "siteID": "19807", - "siteRegistry": true + "parcelID": "17219", + "siteID": "18905", + "siteRegistry": false } ] }, { - "uuid": "472286d0-1c0e-4a52-9f21-7adc4ed14d35", - "siteID": 17317, - "address": "39280 Lurline Harbors", - "latitude": 56.801, - "longitude": -131.4143, - "lastUpdated": "2015-06-27", - "city": "Dickensburgh", + "uuid": "85280046-6448-4c54-950a-8263173805ea", + "siteID": 19203, + "address": "149 Halle Points", + "latitude": 54.7547, + "longitude": -121.7815, + "lastUpdated": "2018-10-15", + "city": "West Ewaldstead", "region": "Mainland/Southwest", - "victoriaFile": "26250-20/8505", + "victoriaFile": "26250-20/1127", "regionalFile": "N/A", "parcelIDs": [ - 5791868, - 8617398, - 6106313, - 264182, - 3826017 + 2456798, + 4636188, + 504774, + 5083210, + 1265239 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2015-07-12", - "completed": "2017-11-08", - "initiated": "2020-06-02", - "ministryContact": "WEST MARGOT", + "createdAt": "2019-06-23", + "completed": "2017-12-14", + "initiated": "2022-12-08", + "ministryContact": "KLOCKO MYRNA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -28713,57 +40377,27 @@ "notationParticipants": [ { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false - } - ], - "siteRegistry": true - }, - { - "createdAt": "2019-07-30", - "completed": "2021-09-01", - "initiated": "2021-09-05", - "ministryContact": "BERGSTROM CASPER", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true } ], "siteRegistry": false }, { - "createdAt": "2022-05-12", - "completed": "2020-05-22", - "initiated": "2021-06-12", - "ministryContact": "KOELPIN ABBIGAIL", + "createdAt": "2014-08-27", + "completed": "2020-06-15", + "initiated": "2019-02-19", + "ministryContact": "HILLS MARISOL", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -28771,34 +40405,29 @@ "" ], "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2019-05-01", - "completed": "2014-05-03", - "initiated": "2020-07-26", - "ministryContact": "ERDMAN ROSSIE", + "createdAt": "2016-09-24", + "completed": "2014-06-08", + "initiated": "2018-12-08", + "ministryContact": "WELCH DILLAN", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -28807,23 +40436,23 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true } ], "siteRegistry": true }, { - "createdAt": "2016-03-28", - "completed": "2016-02-22", - "initiated": "2016-07-11", - "ministryContact": "RATH SYLVESTER", + "createdAt": "2021-12-31", + "completed": "2022-01-30", + "initiated": "2021-12-16", + "ministryContact": "GRIMES ADONIS", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -28832,39 +40461,59 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false } ], "participants": [ { "name": "SHELL CANADA PRODUCTS", - "endDate": "2019-06-13", - "startDate": "2018-01-10", + "endDate": "2018-10-21", + "startDate": "2018-02-09", "notes": "", "roles": [ "ORGANIZATION" ], + "siteRegistry": false + }, + { + "name": "IPSUM", + "endDate": "2019-08-23", + "startDate": "2016-06-27", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2016-04-16", + "startDate": "2021-04-16", + "notes": "", + "roles": [ + "EMPLOYEE" + ], "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2018-11-24", - "startDate": "2022-08-11", + "endDate": "2015-04-30", + "startDate": "2023-08-02", "notes": "", "roles": [ "ORGANIZATION" @@ -28872,218 +40521,181 @@ "siteRegistry": false } ], - "associatedSites": [ + "suspectLandUses": [ { - "dateNoted": "2017-06-26", - "notes": "", - "parcelID": "18047", - "siteID": "18495", - "siteRegistry": false - } - ] - }, - { - "uuid": "a0c8f7c2-00d1-49a0-9e33-1eab425f95b7", - "siteID": 20407, - "address": "932 Tatum Fords", - "latitude": 56.4834, - "longitude": -120.9259, - "lastUpdated": "2015-08-18", - "city": "Lysannemouth", - "region": "Kootenay", - "victoriaFile": "26250-20/14891", - "regionalFile": "N/A", - "parcelIDs": [ - 2048609, - 8740966, - 6871904, - 1723142, - 984079 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2023-07-18 (described on Site Profile dated 2023-07-18)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, { - "createdAt": "2021-04-18", - "completed": "2019-10-12", - "initiated": "2019-09-11", - "ministryContact": "SCHMITT ANDREANNE", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - } - ], - "siteRegistry": false + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2020-03-19 (described on Site Profile dated 2020-03-19)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "createdAt": "2022-08-17", - "completed": "2018-07-10", - "initiated": "2016-01-04", - "ministryContact": "JACOBI DESTINY", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2014-05-09 (described on Site Profile dated 2014-05-09)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2021-11-15 (described on Site Profile dated 2021-11-15)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2019-03-13 (described on Site Profile dated 2019-03-13)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + } + ], + "siteDisclosures": [ + { + "siteRegistry": true, + "dateReceived": "2020-09-02", + "dateCompleted": "2015-12-21", + "dateEntered": "2019-08-15", + "dateRegistrar": "2016-09-09", + "dateLocalAuthorityReceived": "2019-03-21", + "summary": "Blanditiis in ipsa ut corporis occaecati soluta.\nMaiores delectus nemo architecto saepe mollitia voluptas nihil quibusdam.\nTempore eum doloremque velit fuga sunt.", + "informationUsed": "Quas consequatur culpa sapiente doloribus.\nVeritatis commodi corrupti voluptas facilis pariatur.\nVeritatis nostrum amet doloribus sit sit corrupti fugit.\nSoluta nesciunt adipisci ad quisquam nostrum totam sequi at.\nDoloribus et cum nulla.", + "pastOrPresentOrders": "Ut libero dolore voluptates totam cum quam.", + "commercialAndIndustrialPurposes": [ { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true } - ], - "siteRegistry": true + ] }, { - "createdAt": "2020-12-09", - "completed": "2014-11-23", - "initiated": "2021-07-05", - "ministryContact": "O'KEEFE JARRETT", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ + "siteRegistry": true, + "dateReceived": "2022-08-26", + "dateCompleted": "2017-02-20", + "dateEntered": "2019-09-10", + "dateRegistrar": "2021-08-15", + "dateLocalAuthorityReceived": "2013-10-30", + "summary": "Fuga eligendi repellendus quas iusto deserunt accusantium distinctio quasi.\nDebitis et adipisci cumque ratione doloribus accusantium ipsa sapiente.\nDebitis saepe minima magnam quod dolor vitae.", + "informationUsed": "Itaque libero temporibus commodi laudantium.\nAperiam error harum eligendi dolores doloribus doloribus distinctio ipsum.\nCum nobis rem incidunt.\nExercitationem odio expedita aliquid.\nQuibusdam qui ad cumque officia esse voluptate.", + "pastOrPresentOrders": "Eos eaque dolorem eligendi omnis vel accusantium.\nIncidunt harum numquam dolor perferendis impedit dignissimos.\nEveniet cumque est nobis.", + "commercialAndIndustrialPurposes": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false } - ], - "siteRegistry": false + ] } ], - "participants": [ + "activityLog": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2019-10-21", - "startDate": "2022-07-06", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": true + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "CASSIN COLEMAN", + "timestamp": "2021-11-04" }, { - "name": "AMET, DOLOR SIT", - "endDate": "2019-06-25", - "startDate": "2021-09-21", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": true + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "FEEST BIRDIE", + "timestamp": "2015-07-05" }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2017-01-07", - "startDate": "2014-03-29", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": false + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "CUMMINGS DAYNE", + "timestamp": "2015-07-08" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "SWIFT MARSHALL", + "timestamp": "2019-03-10" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "WISOZK REINHOLD", + "timestamp": "2021-04-07" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "BAUCH GABE", + "timestamp": "2016-05-25" } ], "associatedSites": [ { - "dateNoted": "2014-01-23", + "dateNoted": "2015-08-18", "notes": "", - "parcelID": "16374", - "siteID": "18695", + "parcelID": "18929", + "siteID": "17810", "siteRegistry": false }, { - "dateNoted": "2016-01-29", + "dateNoted": "2018-04-04", "notes": "", - "parcelID": "20128", - "siteID": "19075", + "parcelID": "20527", + "siteID": "16814", "siteRegistry": false - }, - { - "dateNoted": "2020-12-28", - "notes": "", - "parcelID": "15385", - "siteID": "20157", - "siteRegistry": true } ] }, { - "uuid": "21c962cf-1aa0-46a7-a73f-7e187563055b", - "siteID": 15588, - "address": "60595 Valerie Glen", - "latitude": 52.9706, - "longitude": -126.7289, - "lastUpdated": "2019-11-23", - "city": "Hanetown", - "region": " North Coast", - "victoriaFile": "26250-20/19561", + "uuid": "dd78cd1a-574d-4d23-a0da-724a54553b17", + "siteID": 18849, + "address": "5382 Michelle Lock", + "latitude": 56.5319, + "longitude": -133.3707, + "lastUpdated": "2020-08-06", + "city": "South Kimberlychester", + "region": "Kootenay", + "victoriaFile": "26250-20/6428", "regionalFile": "N/A", "parcelIDs": [ - 5360594, - 2652450, - 8125569, - 8149940, - 5990677 + 7093894, + 3484443, + 3735735, + 4097386, + 5140041 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2015-10-12", - "completed": "2020-08-27", - "initiated": "2023-01-17", - "ministryContact": "THOMPSON YESENIA", + "createdAt": "2018-11-27", + "completed": "2014-10-29", + "initiated": "2017-05-21", + "ministryContact": "ROBEL ABBIGAIL", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -29092,23 +40704,33 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false } ], "siteRegistry": true }, { - "createdAt": "2017-06-09", - "completed": "2015-08-10", - "initiated": "2016-06-06", - "ministryContact": "FRAMI EVALYN", + "createdAt": "2020-09-04", + "completed": "2019-02-28", + "initiated": "2019-05-17", + "ministryContact": "ROLFSON GUADALUPE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -29119,7 +40741,7 @@ { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", @@ -29127,13 +40749,13 @@ "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2016-10-21", - "completed": "2014-09-03", - "initiated": "2019-08-12", - "ministryContact": "RUNTE LEANNE", + "createdAt": "2020-05-01", + "completed": "2020-11-24", + "initiated": "2022-04-17", + "ministryContact": "POLLICH MEGANE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -29141,24 +40763,39 @@ "" ], "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2019-12-12", - "completed": "2023-06-24", - "initiated": "2013-11-13", - "ministryContact": "AUFDERHAR TRISTIN", + "createdAt": "2021-12-12", + "completed": "2016-10-31", + "initiated": "2017-11-11", + "ministryContact": "SCHIMMEL CRYSTAL", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -29167,18 +40804,23 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": false } ], @@ -29188,18 +40830,18 @@ "participants": [ { "name": "AMET, DOLOR SIT", - "endDate": "2019-02-11", - "startDate": "2019-11-24", + "endDate": "2014-10-07", + "startDate": "2021-07-15", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2017-04-14", - "startDate": "2015-06-06", + "endDate": "2017-03-16", + "startDate": "2014-09-19", "notes": "", "roles": [ "EMPLOYEE" @@ -29208,50 +40850,186 @@ }, { "name": "IPSUM", - "endDate": "2022-08-03", - "startDate": "2015-07-02", + "endDate": "2021-07-21", + "startDate": "2022-07-21", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": false - } - ], - "associatedSites": [ + }, { - "dateNoted": "2014-10-10", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2015-12-26", + "startDate": "2015-11-05", "notes": "", - "parcelID": "15241", - "siteID": "20441", - "siteRegistry": false + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + } + ], + "suspectLandUses": [ + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2019-11-29 (described on Site Profile dated 2019-11-29)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2018-04-14 (described on Site Profile dated 2018-04-14)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2016-03-31 (described on Site Profile dated 2016-03-31)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2019-11-06 (described on Site Profile dated 2019-11-06)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2015-03-07 (described on Site Profile dated 2015-03-07)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + } + ], + "siteDisclosures": [ + { + "siteRegistry": false, + "dateReceived": "2018-08-11", + "dateCompleted": "2021-12-24", + "dateEntered": "2019-07-31", + "dateRegistrar": "2019-06-29", + "dateLocalAuthorityReceived": "2016-10-27", + "summary": "Numquam voluptas architecto et culpa.\nIusto asperiores sed reprehenderit saepe modi.\nIn quia quo libero inventore a hic.", + "informationUsed": "Molestiae debitis rerum porro consectetur quidem sint ut quas.\nEaque voluptas possimus asperiores dolorem consectetur officia suscipit.\nDolor laboriosam voluptatem vero.\nHarum iste aspernatur aut quasi accusamus eaque similique.", + "pastOrPresentOrders": "Enim ipsam commodi provident.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + } + ] + } + ], + "activityLog": [ + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "MURAZIK ZACKERY", + "timestamp": "2014-05-26" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "BORER KIEL", + "timestamp": "2015-09-25" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "BAUMBACH SANDRINE", + "timestamp": "2020-09-30" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "BAUMBACH HERMAN", + "timestamp": "2014-07-03" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "TURNER SHERMAN", + "timestamp": "2023-02-27" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "BOEHM ALIVIA", + "timestamp": "2014-09-21" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "WARD CYNTHIA", + "timestamp": "2015-07-19" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "RICE JULIA", + "timestamp": "2016-09-30" + } + ], + "associatedSites": [ + { + "dateNoted": "2018-06-28", + "notes": "", + "parcelID": "20311", + "siteID": "15592", + "siteRegistry": true + }, + { + "dateNoted": "2022-08-30", + "notes": "", + "parcelID": "15865", + "siteID": "16824", + "siteRegistry": true + }, + { + "dateNoted": "2021-12-08", + "notes": "", + "parcelID": "19795", + "siteID": "18231", + "siteRegistry": false } ] }, { - "uuid": "9f9a3afd-0a5c-485b-936c-72c6b0964429", - "siteID": 15222, - "address": "56064 Kemmer Trace", - "latitude": 58.7797, - "longitude": -127.3823, - "lastUpdated": "2015-06-02", - "city": "West Leonora", + "uuid": "0ed690dc-7f5b-4933-a5d6-43e614aab340", + "siteID": 19159, + "address": "895 Jones Bridge", + "latitude": 50.6619, + "longitude": -120.6487, + "lastUpdated": "2022-12-13", + "city": "Jasenshire", "region": " North Coast", - "victoriaFile": "26250-20/4333", + "victoriaFile": "26250-20/1613", "regionalFile": "N/A", "parcelIDs": [ - 2596600, - 3897450, - 1956218, - 7558464, - 7864484 + 4488648, + 9891237, + 5483480, + 7798535, + 225450 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2017-08-07", - "completed": "2019-09-11", - "initiated": "2023-03-24", - "ministryContact": "KOHLER JAQUELIN", + "createdAt": "2017-07-02", + "completed": "2020-11-30", + "initiated": "2017-09-23", + "ministryContact": "NIKOLAUS DONALD", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -29259,21 +41037,76 @@ "" ], "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, { "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "createdAt": "2019-09-10", + "completed": "2022-08-31", + "initiated": "2020-03-02", + "ministryContact": "LYNCH MALCOLM", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "createdAt": "2013-12-12", + "completed": "2016-03-12", + "initiated": "2023-01-15", + "ministryContact": "COLLINS BERTRAND", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", @@ -29283,10 +41116,10 @@ "siteRegistry": false }, { - "createdAt": "2016-01-02", - "completed": "2021-09-14", - "initiated": "2015-03-12", - "ministryContact": "KLOCKO JAMIL", + "createdAt": "2016-03-06", + "completed": "2023-01-18", + "initiated": "2016-07-29", + "ministryContact": "KLOCKO THURMAN", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -29295,9 +41128,9 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", @@ -29305,111 +41138,240 @@ "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "createdAt": "2023-07-11", + "completed": "2018-05-08", + "initiated": "2017-07-01", + "ministryContact": "ULLRICH ELISABETH", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true } ], "participants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2019-07-21", - "startDate": "2017-10-02", + "name": "IPSUM", + "endDate": "2015-07-15", + "startDate": "2022-04-30", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2021-12-07", - "startDate": "2022-05-10", + "name": "AMET, DOLOR SIT", + "endDate": "2019-07-05", + "startDate": "2019-06-27", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": false + } + ], + "suspectLandUses": [ + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2021-09-04 (described on Site Profile dated 2021-09-04)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "name": "AMET, DOLOR SIT", - "endDate": "2023-05-28", - "startDate": "2020-10-19", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": true + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2018-03-19 (described on Site Profile dated 2018-03-19)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "name": "AMET, DOLOR SIT", - "endDate": "2016-10-03", - "startDate": "2022-08-26", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": true + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2016-10-05 (described on Site Profile dated 2016-10-05)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "name": "IPSUM", - "endDate": "2015-09-15", - "startDate": "2015-05-08", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": true + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2021-04-01 (described on Site Profile dated 2021-04-01)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + } + ], + "siteDisclosures": [ + { + "siteRegistry": true, + "dateReceived": "2016-03-23", + "dateCompleted": "2017-03-30", + "dateEntered": "2023-07-02", + "dateRegistrar": "2014-06-26", + "dateLocalAuthorityReceived": "2014-11-22", + "summary": "Modi voluptate suscipit rem accusamus magnam voluptate et doloribus.\nSimilique a perferendis saepe adipisci consequuntur aliquid est dolores.", + "informationUsed": "Enim possimus consectetur numquam autem beatae nam sunt recusandae dolorum.\nExcepturi culpa dolores asperiores molestiae.\nAtque nemo doloribus occaecati cupiditate quam.", + "pastOrPresentOrders": "Exercitationem beatae similique autem inventore impedit explicabo.\nFacere aspernatur vel consectetur molestias.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + } + ] + }, + { + "siteRegistry": false, + "dateReceived": "2014-12-18", + "dateCompleted": "2021-06-27", + "dateEntered": "2015-09-21", + "dateRegistrar": "2023-02-14", + "dateLocalAuthorityReceived": "2014-06-02", + "summary": "Accusantium hic aspernatur mollitia rerum ea atque.\nDolorum dicta similique inventore perferendis nihil.\nRem error neque reprehenderit quam voluptatem laborum facilis amet unde.", + "informationUsed": "Praesentium soluta repudiandae repudiandae ex.\nDicta non laborum quod eligendi.\nRepellat libero vel debitis modi beatae sapiente pariatur dolores.\nCumque delectus nostrum minima neque incidunt fugit a dicta vitae.", + "pastOrPresentOrders": "Quaerat rem cupiditate ut alias.\nEst laboriosam esse.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + } + ] + } + ], + "activityLog": [ + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "CONSIDINE SUSANNA", + "timestamp": "2020-02-06" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "KEMMER ALTHEA", + "timestamp": "2017-02-18" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "WINDLER LELA", + "timestamp": "2014-04-04" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "WHITE KELLY", + "timestamp": "2018-02-17" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "BINS ALIYA", + "timestamp": "2016-10-12" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "VON BARTHOLOME", + "timestamp": "2022-04-17" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "HODKIEWICZ KESHAWN", + "timestamp": "2014-06-25" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "SPORER IZABELLA", + "timestamp": "2019-10-17" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "ZIEMANN DELL", + "timestamp": "2019-08-18" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "CONSIDINE BERNHARD", + "timestamp": "2017-01-01" } ], "associatedSites": [ { - "dateNoted": "2014-01-22", + "dateNoted": "2018-06-01", + "notes": "", + "parcelID": "16105", + "siteID": "19478", + "siteRegistry": true + }, + { + "dateNoted": "2022-10-21", "notes": "", - "parcelID": "16232", - "siteID": "19773", + "parcelID": "16980", + "siteID": "17962", "siteRegistry": false } ] }, { - "uuid": "8de7ef9b-acc0-4894-aaf6-ee6d9a0e7ea9", - "siteID": 15443, - "address": "31700 Gloria Wall", - "latitude": 57.3699, - "longitude": -125.6569, - "lastUpdated": "2018-03-11", - "city": "West Mohamed", + "uuid": "ed57251c-5d07-4a0a-b6ae-d7cf223abdac", + "siteID": 19248, + "address": "916 Daija Forge", + "latitude": 58.4738, + "longitude": -130.043, + "lastUpdated": "2020-04-10", + "city": "Port Gretchenhaven", "region": "Thompson-Okanagan", - "victoriaFile": "26250-20/8998", + "victoriaFile": "26250-20/11456", "regionalFile": "N/A", "parcelIDs": [ - 8256717, - 2632694, - 1463439, - 7109098, - 5595890 + 5363895, + 7510461, + 2899975, + 1519606, + 2267544 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2017-12-19", - "completed": "2022-04-22", - "initiated": "2020-02-22", - "ministryContact": "JOHNSTON RUTH", + "createdAt": "2017-01-06", + "completed": "2021-05-05", + "initiated": "2019-01-06", + "ministryContact": "HAHN WALTER", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -29418,57 +41380,27 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - } - ], - "siteRegistry": false - }, - { - "createdAt": "2014-08-07", - "completed": "2020-11-09", - "initiated": "2015-04-04", - "ministryContact": "BARROWS JUSTICE", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ { "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false } @@ -29476,10 +41408,10 @@ "siteRegistry": true }, { - "createdAt": "2023-06-04", - "completed": "2019-05-15", - "initiated": "2017-06-21", - "ministryContact": "EFFERTZ ERNESTINA", + "createdAt": "2014-01-17", + "completed": "2023-06-19", + "initiated": "2014-12-21", + "ministryContact": "CRONA FRANCES", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -29488,7 +41420,7 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true }, @@ -29497,29 +41429,19 @@ "role": "SUBMITTED BY", "siteRegistry": false }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2019-02-04", - "completed": "2021-06-14", - "initiated": "2021-12-06", - "ministryContact": "WINDLER-DACH ORIE", + "createdAt": "2015-10-25", + "completed": "2015-12-30", + "initiated": "2015-03-16", + "ministryContact": "KIRLIN JANIYA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -29529,28 +41451,28 @@ "notationParticipants": [ { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false } ], "participants": [ { "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2013-12-03", - "startDate": "2015-07-15", + "endDate": "2019-02-10", + "startDate": "2023-09-29", "notes": "", "roles": [ "EMPLOYEE" @@ -29558,71 +41480,177 @@ "siteRegistry": true }, { - "name": "IPSUM", - "endDate": "2015-04-25", - "startDate": "2020-07-31", + "name": "AMET, DOLOR SIT", + "endDate": "2017-05-30", + "startDate": "2022-04-30", "notes": "", "roles": [ "EMPLOYEE" ], "siteRegistry": true + } + ], + "suspectLandUses": [ + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2020-06-01 (described on Site Profile dated 2020-06-01)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "name": "IPSUM", - "endDate": "2016-09-27", - "startDate": "2021-02-15", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": true + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2022-05-10 (described on Site Profile dated 2022-05-10)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2020-02-05", - "startDate": "2016-09-24", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": false + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2018-01-16 (described on Site Profile dated 2018-01-16)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2020-09-06 (described on Site Profile dated 2020-09-06)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + } + ], + "siteDisclosures": [ + { + "siteRegistry": false, + "dateReceived": "2020-01-18", + "dateCompleted": "2021-07-19", + "dateEntered": "2015-07-15", + "dateRegistrar": "2016-03-23", + "dateLocalAuthorityReceived": "2017-10-15", + "summary": "Molestiae consequatur doloremque sed iure sequi.\nOptio unde quidem magnam voluptate temporibus sit.\nSoluta minima cupiditate totam omnis porro voluptatum.", + "informationUsed": "Commodi maiores ex dolorem illo laudantium nesciunt eius eaque.\nEnim laboriosam tempora quibusdam voluptate ipsam distinctio blanditiis esse.\nSaepe dolorum ratione dicta occaecati.\nSimilique assumenda vitae porro odio accusantium id occaecati ullam.", + "pastOrPresentOrders": "Labore at vel necessitatibus temporibus.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + } + ] + }, + { + "siteRegistry": false, + "dateReceived": "2021-06-04", + "dateCompleted": "2015-02-21", + "dateEntered": "2016-08-08", + "dateRegistrar": "2021-10-13", + "dateLocalAuthorityReceived": "2021-11-18", + "summary": "Ipsa temporibus fuga nemo pariatur illo impedit doloribus corrupti.\nItaque repellendus quis iste quod soluta adipisci quod.", + "informationUsed": "Ea explicabo quaerat quisquam.\nNobis vero enim at veritatis explicabo veritatis dolorum consequuntur omnis.\nNesciunt temporibus eum nostrum veritatis nisi itaque.", + "pastOrPresentOrders": "Dolor eaque laborum.\nPerferendis magnam exercitationem delectus.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + } + ] + } + ], + "activityLog": [ + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "SMITHAM GODFREY", + "timestamp": "2018-02-04" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "DOYLE NYA", + "timestamp": "2023-09-02" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "BREITENBERG POLLY", + "timestamp": "2021-09-10" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "JACOBS PIERRE", + "timestamp": "2016-05-23" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "JAST FLAVIO", + "timestamp": "2022-01-04" } ], "associatedSites": [ { - "dateNoted": "2015-01-14", + "dateNoted": "2022-08-30", "notes": "", - "parcelID": "17859", - "siteID": "16151", - "siteRegistry": false + "parcelID": "17650", + "siteID": "17078", + "siteRegistry": true + }, + { + "dateNoted": "2016-04-16", + "notes": "", + "parcelID": "18050", + "siteID": "16813", + "siteRegistry": true + }, + { + "dateNoted": "2015-11-28", + "notes": "", + "parcelID": "19870", + "siteID": "19216", + "siteRegistry": true } ] }, { - "uuid": "5351029f-b2f5-4a73-9e2e-f25884d81d98", - "siteID": 15365, - "address": "851 Cristina Crossroad", - "latitude": 50.1301, - "longitude": -128.4784, - "lastUpdated": "2021-10-24", - "city": "Temple", + "uuid": "2bd1d6d5-50fd-473e-a603-c2d159714306", + "siteID": 16509, + "address": "207 Roob Highway", + "latitude": 49.783, + "longitude": -131.1263, + "lastUpdated": "2019-01-31", + "city": "Lucianoview", "region": "Mainland/Southwest", - "victoriaFile": "26250-20/2234", + "victoriaFile": "26250-20/2876", "regionalFile": "N/A", "parcelIDs": [ - 8219267, - 4753608, - 1177445, - 5279579, - 4510636 + 7574732, + 1744468, + 9423203, + 952495, + 5026563 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2021-02-25", - "completed": "2021-02-21", - "initiated": "2018-04-28", - "ministryContact": "CONROY MANDY", + "createdAt": "2017-01-08", + "completed": "2022-09-24", + "initiated": "2018-02-17", + "ministryContact": "LAKIN ANSEL", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -29632,51 +41660,21 @@ "notationParticipants": [ { "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": true }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - } - ], - "siteRegistry": false - }, - { - "createdAt": "2018-02-06", - "completed": "2023-04-26", - "initiated": "2020-03-03", - "ministryContact": "JAKUBOWSKI ALEXIS", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false } @@ -29684,10 +41682,10 @@ "siteRegistry": true }, { - "createdAt": "2014-10-04", - "completed": "2021-10-08", - "initiated": "2017-05-17", - "ministryContact": "WARD HUBERT", + "createdAt": "2022-09-03", + "completed": "2021-02-26", + "initiated": "2016-02-07", + "ministryContact": "BLOCK ROLLIN", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -29697,12 +41695,7 @@ "notationParticipants": [ { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true }, { @@ -29711,9 +41704,9 @@ "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", @@ -29721,13 +41714,13 @@ "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2014-11-01", - "completed": "2014-08-03", - "initiated": "2020-10-30", - "ministryContact": "KING NICHOLE", + "createdAt": "2014-03-02", + "completed": "2017-09-02", + "initiated": "2019-10-01", + "ministryContact": "HODKIEWICZ ROMA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -29736,19 +41729,19 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true + "role": "SUBMITTED BY", + "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", @@ -29761,13 +41754,13 @@ "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2019-05-04", - "completed": "2017-08-15", - "initiated": "2023-06-24", - "ministryContact": "FEIL LORENZO", + "createdAt": "2023-09-29", + "completed": "2018-08-18", + "initiated": "2017-11-06", + "ministryContact": "REICHERT COLUMBUS", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -29781,54 +41774,54 @@ "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true } ], "participants": [ { - "name": "AMET, DOLOR SIT", - "endDate": "2015-06-12", - "startDate": "2022-08-04", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2022-03-22", + "startDate": "2016-07-12", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false }, { "name": "AMET, DOLOR SIT", - "endDate": "2023-05-22", - "startDate": "2015-08-31", + "endDate": "2017-07-26", + "startDate": "2014-12-03", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": true }, { - "name": "AMET, DOLOR SIT", - "endDate": "2021-04-17", - "startDate": "2018-12-25", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2023-03-16", + "startDate": "2023-08-21", "notes": "", "roles": [ "ORGANIZATION" @@ -29836,61 +41829,147 @@ "siteRegistry": false }, { - "name": "IPSUM", - "endDate": "2015-05-11", - "startDate": "2022-12-01", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2015-06-24", + "startDate": "2014-03-08", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": true + } + ], + "suspectLandUses": [ + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2022-03-23 (described on Site Profile dated 2022-03-23)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2021-05-24", - "startDate": "2023-08-11", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": false + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2017-08-21 (described on Site Profile dated 2017-08-21)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2022-09-07 (described on Site Profile dated 2022-09-07)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2021-09-25 (described on Site Profile dated 2021-09-25)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2020-12-20 (described on Site Profile dated 2020-12-20)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + } + ], + "siteDisclosures": [ + { + "siteRegistry": false, + "dateReceived": "2021-12-29", + "dateCompleted": "2020-12-05", + "dateEntered": "2014-08-29", + "dateRegistrar": "2021-12-15", + "dateLocalAuthorityReceived": "2017-10-08", + "summary": "Explicabo nemo aliquid.\nItaque nostrum velit.\nVoluptatibus libero quibusdam.", + "informationUsed": "Hic sunt corporis vel harum reprehenderit eos dolor et.\nQuod mollitia nesciunt fugiat dolorem vitae id.\nAnimi quibusdam veniam veniam totam quod at molestias labore.\nSuscipit fugiat tenetur dicta rerum natus quasi blanditiis fuga.", + "pastOrPresentOrders": "Sapiente accusamus quo mollitia quaerat ullam iure ipsa.\nAb sunt in.\nCulpa aspernatur asperiores corporis.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + } + ] + } + ], + "activityLog": [ + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "SMITH GERARD", + "timestamp": "2022-07-13" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "LEFFLER PEDRO", + "timestamp": "2016-01-06" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "TRANTOW ELADIO", + "timestamp": "2020-02-11" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "HALVORSON DEION", + "timestamp": "2021-02-24" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "LITTLE MILAN", + "timestamp": "2019-02-25" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "YUNDT MAGGIE", + "timestamp": "2021-12-13" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "CROOKS MICHAELA", + "timestamp": "2014-03-06" } ], "associatedSites": [ { - "dateNoted": "2019-04-27", + "dateNoted": "2020-03-13", "notes": "", - "parcelID": "15973", - "siteID": "16736", + "parcelID": "17590", + "siteID": "20734", "siteRegistry": false } ] }, { - "uuid": "e57071d6-aff5-46f8-9a47-f047bb6a4774", - "siteID": 15543, - "address": "43923 Pagac Avenue", - "latitude": 55.0683, - "longitude": -124.5132, - "lastUpdated": "2015-08-13", - "city": "Katharinaport", + "uuid": "0bc6b544-5807-45ce-8e97-f54cbfad1d16", + "siteID": 19590, + "address": "94490 Caesar Loaf", + "latitude": 58.254, + "longitude": -118.2712, + "lastUpdated": "2016-06-03", + "city": "Schaeferville", "region": "Vancouver Island/Coast", - "victoriaFile": "26250-20/6257", + "victoriaFile": "26250-20/10853", "regionalFile": "N/A", "parcelIDs": [ - 1991362, - 3300791, - 7509566, - 1911347, - 6716857 + 9892073, + 4910244, + 625836, + 8220411, + 5665644 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2016-08-06", - "completed": "2017-05-08", - "initiated": "2018-02-11", - "ministryContact": "CROOKS SHANEL", + "createdAt": "2022-03-26", + "completed": "2021-06-27", + "initiated": "2021-10-07", + "ministryContact": "BECHTELAR RHETT", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -29901,26 +41980,26 @@ { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2019-06-18", - "completed": "2016-11-18", - "initiated": "2019-12-06", - "ministryContact": "BRADTKE DANIELA", + "createdAt": "2021-04-27", + "completed": "2019-05-28", + "initiated": "2014-07-19", + "ministryContact": "MURRAY JUSTINA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -29929,104 +42008,44 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true - } - ], - "siteRegistry": true - }, - { - "createdAt": "2021-03-07", - "completed": "2014-02-03", - "initiated": "2017-03-27", - "ministryContact": "WYMAN AMINA", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", "siteRegistry": false } ], - "siteRegistry": true - }, - { - "createdAt": "2021-05-11", - "completed": "2017-07-26", - "initiated": "2021-11-04", - "ministryContact": "LEANNON ESMERALDA", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - } - ], - "siteRegistry": true + "siteRegistry": false } ], "participants": [ { - "name": "IPSUM", - "endDate": "2018-02-11", - "startDate": "2020-09-16", + "name": "AMET, DOLOR SIT", + "endDate": "2020-04-15", + "startDate": "2016-06-23", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "name": "AMET, DOLOR SIT", + "endDate": "2021-06-11", + "startDate": "2014-12-27", "notes": "", "roles": [ "ORGANIZATION" @@ -30034,9 +42053,9 @@ "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2016-01-01", - "startDate": "2016-07-25", + "name": "AMET, DOLOR SIT", + "endDate": "2016-04-10", + "startDate": "2013-11-05", "notes": "", "roles": [ "ORGANIZATION" @@ -30044,9 +42063,9 @@ "siteRegistry": false }, { - "name": "AMET, DOLOR SIT", - "endDate": "2023-03-01", - "startDate": "2015-11-05", + "name": "IPSUM", + "endDate": "2019-11-01", + "startDate": "2013-12-04", "notes": "", "roles": [ "EMPLOYEE" @@ -30055,64 +42074,153 @@ }, { "name": "IPSUM", - "endDate": "2016-05-22", - "startDate": "2018-04-17", + "endDate": "2018-01-10", + "startDate": "2022-06-08", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], - "siteRegistry": false + "siteRegistry": true } ], - "associatedSites": [ + "suspectLandUses": [ { - "dateNoted": "2015-06-10", - "notes": "", - "parcelID": "20518", - "siteID": "19904", - "siteRegistry": true + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2017-11-08 (described on Site Profile dated 2017-11-08)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "dateNoted": "2016-11-26", - "notes": "", - "parcelID": "17165", - "siteID": "16986", - "siteRegistry": false + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2015-11-01 (described on Site Profile dated 2015-11-01)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2017-05-29 (described on Site Profile dated 2017-05-29)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2020-05-31 (described on Site Profile dated 2020-05-31)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + } + ], + "siteDisclosures": [ + { + "siteRegistry": false, + "dateReceived": "2017-09-03", + "dateCompleted": "2023-03-04", + "dateEntered": "2017-03-04", + "dateRegistrar": "2017-12-02", + "dateLocalAuthorityReceived": "2021-03-26", + "summary": "Consequatur possimus est omnis esse.\nAdipisci fuga laboriosam facilis molestiae.", + "informationUsed": "Nobis culpa quasi deserunt.\nBlanditiis a nobis odio velit quisquam quibusdam tempora.\nExcepturi ut velit doloribus.\nVoluptas dolor quam quaerat qui illo quod temporibus.", + "pastOrPresentOrders": "Nesciunt earum ad debitis ut aliquam laborum.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + } + ] + } + ], + "activityLog": [ + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "DACH TYRA", + "timestamp": "2019-11-20" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "TRANTOW PIERCE", + "timestamp": "2019-03-07" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "KOEPP EVALYN", + "timestamp": "2017-04-23" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "NADER EMILY", + "timestamp": "2023-09-28" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "HEGMANN SYLVIA", + "timestamp": "2021-03-12" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "WINTHEISER MILO", + "timestamp": "2019-06-18" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "GUTMANN GEOFFREY", + "timestamp": "2023-04-12" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "GULGOWSKI CLEO", + "timestamp": "2022-12-19" }, { - "dateNoted": "2021-12-25", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "STROMAN ESTELL", + "timestamp": "2014-11-15" + } + ], + "associatedSites": [ + { + "dateNoted": "2017-08-18", "notes": "", - "parcelID": "15390", - "siteID": "16673", - "siteRegistry": false + "parcelID": "16546", + "siteID": "19078", + "siteRegistry": true } ] }, { - "uuid": "f21f55cc-1a14-4bb0-8769-cb18dad30059", - "siteID": 16634, - "address": "478 Simonis Locks", - "latitude": 58.044, - "longitude": -131.313, - "lastUpdated": "2015-12-07", - "city": "Port Izaiah", - "region": "Vancouver Island/Coast", - "victoriaFile": "26250-20/17883", + "uuid": "1617b42d-87f9-4ab0-bfc4-e043cf52f7ca", + "siteID": 15958, + "address": "687 Bode Glens", + "latitude": 49.5143, + "longitude": -123.2331, + "lastUpdated": "2015-10-20", + "city": "Columbia", + "region": " North Coast", + "victoriaFile": "26250-20/12834", "regionalFile": "N/A", "parcelIDs": [ - 9269407, - 2022222, - 9061809, - 8411146, - 6672215 + 5068263, + 1464777, + 4475021, + 3283188, + 2141860 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2018-05-22", - "completed": "2023-04-10", - "initiated": "2023-09-17", - "ministryContact": "HOEGER KRISTY", + "createdAt": "2015-09-16", + "completed": "2019-09-07", + "initiated": "2013-11-18", + "ministryContact": "NOLAN BILLIE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -30123,31 +42231,21 @@ { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false } ], "siteRegistry": false }, { - "createdAt": "2020-12-31", - "completed": "2021-11-15", - "initiated": "2021-09-30", - "ministryContact": "SMITH IBRAHIM", + "createdAt": "2020-06-21", + "completed": "2017-04-17", + "initiated": "2023-09-10", + "ministryContact": "KEMMER MINNIE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -30157,44 +42255,14 @@ "notationParticipants": [ { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", "siteRegistry": true }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - } - ], - "siteRegistry": false - }, - { - "createdAt": "2023-08-10", - "completed": "2016-07-05", - "initiated": "2018-01-17", - "ministryContact": "MACGYVER ALETHA", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", @@ -30202,12 +42270,7 @@ }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true }, { @@ -30216,13 +42279,13 @@ "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2023-09-10", - "completed": "2016-02-04", - "initiated": "2015-11-14", - "ministryContact": "SCHULTZ CHASITY", + "createdAt": "2014-06-29", + "completed": "2014-02-19", + "initiated": "2015-06-13", + "ministryContact": "BLOCK URIAH", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -30233,22 +42296,17 @@ { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false + "role": "REQUESTED BY", + "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false } ], "siteRegistry": true @@ -30256,155 +42314,192 @@ ], "participants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2017-12-02", - "startDate": "2016-11-30", + "name": "AMET, DOLOR SIT", + "endDate": "2021-07-19", + "startDate": "2014-10-30", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": false + "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2014-05-10", - "startDate": "2023-06-09", + "name": "AMET, DOLOR SIT", + "endDate": "2019-08-09", + "startDate": "2018-04-25", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": true } ], - "associatedSites": [ + "suspectLandUses": [ { - "dateNoted": "2016-03-01", - "notes": "", - "parcelID": "20519", - "siteID": "17012", - "siteRegistry": false + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2016-04-12 (described on Site Profile dated 2016-04-12)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "dateNoted": "2015-12-09", - "notes": "", - "parcelID": "17459", - "siteID": "18838", - "siteRegistry": true + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2020-11-03 (described on Site Profile dated 2020-11-03)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "dateNoted": "2017-12-22", - "notes": "", - "parcelID": "20553", - "siteID": "17011", - "siteRegistry": true + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2023-03-03 (described on Site Profile dated 2023-03-03)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2016-01-27 (described on Site Profile dated 2016-01-27)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } - ] - }, - { - "uuid": "797020c3-68ff-40eb-91b7-a9a83887e6d0", - "siteID": 19248, - "address": "14404 Waters Views", - "latitude": 54.3815, - "longitude": -126.533, - "lastUpdated": "2015-02-08", - "city": "Port Kennithcester", - "region": "Mainland/Southwest", - "victoriaFile": "26250-20/7335", - "regionalFile": "N/A", - "parcelIDs": [ - 1193057, - 5925139, - 3327807, - 1847470, - 8282136 ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ + "siteDisclosures": [ { - "createdAt": "2021-10-04", - "completed": "2016-09-13", - "initiated": "2015-01-04", - "ministryContact": "HAMILL BRADY", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, + "siteRegistry": true, + "dateReceived": "2016-07-11", + "dateCompleted": "2019-06-30", + "dateEntered": "2022-01-12", + "dateRegistrar": "2019-11-03", + "dateLocalAuthorityReceived": "2021-11-01", + "summary": "Temporibus dolorem maiores beatae corporis explicabo excepturi tempore aspernatur.", + "informationUsed": "Recusandae ad quisquam enim sit id odit repellendus.\nVeritatis eos saepe veniam.\nIure quasi sapiente soluta eveniet.\nFuga ipsam illo nobis laboriosam excepturi pariatur deserunt doloremque quo.", + "pastOrPresentOrders": "Tempora quos architecto repellat a.\nConsectetur nihil at.\nReprehenderit perferendis assumenda molestias molestiae aperiam repudiandae quibusdam consequatur.", + "commercialAndIndustrialPurposes": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true } - ], - "siteRegistry": true + ] }, { - "createdAt": "2023-07-07", - "completed": "2017-09-23", - "initiated": "2022-11-21", - "ministryContact": "JOHNS DESSIE", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, + "siteRegistry": true, + "dateReceived": "2017-02-01", + "dateCompleted": "2019-06-20", + "dateEntered": "2022-05-13", + "dateRegistrar": "2022-12-27", + "dateLocalAuthorityReceived": "2020-06-12", + "summary": "Nostrum voluptatibus blanditiis earum ullam facere.", + "informationUsed": "Voluptatem neque suscipit in nesciunt.\nCulpa quo molestias sed error corrupti ut.\nReprehenderit ut fuga repellat cumque eos dolorem minus.\nAliquid earum ab incidunt deserunt vero.\nIllum animi fugiat voluptatibus voluptatibus corrupti ratione ipsa libero dolor.", + "pastOrPresentOrders": "Atque in nisi sunt adipisci minus tempore ipsam quibusdam.", + "commercialAndIndustrialPurposes": [ { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true } - ], + ] + } + ], + "activityLog": [ + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "BOYER RYLEE", + "timestamp": "2022-06-24" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "SMITHAM JAYME", + "timestamp": "2019-12-11" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "MORAR LILLA", + "timestamp": "2017-08-06" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "MCKENZIE JEAN", + "timestamp": "2022-09-07" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "WILKINSON CAMREN", + "timestamp": "2022-04-02" + } + ], + "associatedSites": [ + { + "dateNoted": "2014-02-16", + "notes": "", + "parcelID": "18722", + "siteID": "15706", "siteRegistry": true }, { - "createdAt": "2021-06-05", - "completed": "2017-04-16", - "initiated": "2021-08-28", - "ministryContact": "RYAN AHMED", + "dateNoted": "2018-01-02", + "notes": "", + "parcelID": "15230", + "siteID": "15754", + "siteRegistry": true + }, + { + "dateNoted": "2020-02-09", + "notes": "", + "parcelID": "17248", + "siteID": "16386", + "siteRegistry": true + } + ] + }, + { + "uuid": "cd899d8f-9c7d-48fb-be00-e07ad42a5903", + "siteID": 20178, + "address": "3886 Lottie Terrace", + "latitude": 56.0518, + "longitude": -135.6366, + "lastUpdated": "2016-06-25", + "city": "Bechtelarport", + "region": "Kootenay", + "victoriaFile": "26250-20/11932", + "regionalFile": "N/A", + "parcelIDs": [ + 9607641, + 9100583, + 8706515, + 4187683, + 2597553 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2013-11-04", + "completed": "2020-01-10", + "initiated": "2013-10-25", + "ministryContact": "KOZEY GUISEPPE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -30413,10 +42508,15 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": true }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", @@ -30424,22 +42524,22 @@ }, { "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true + "role": "SUBMITTED BY", + "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2018-06-15", - "completed": "2014-07-02", - "initiated": "2020-08-22", - "ministryContact": "HICKLE JAYLAN", + "createdAt": "2017-06-08", + "completed": "2015-12-27", + "initiated": "2020-04-29", + "ministryContact": "SCHNEIDER JORDY", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -30448,9 +42548,9 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", @@ -30458,28 +42558,23 @@ "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false } ], "siteRegistry": false }, { - "createdAt": "2021-05-17", - "completed": "2014-10-30", - "initiated": "2017-12-27", - "ministryContact": "BEER ALLY", + "createdAt": "2018-10-30", + "completed": "2015-06-28", + "initiated": "2022-05-19", + "ministryContact": "BECHTELAR YESSENIA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -30489,23 +42584,23 @@ "notationParticipants": [ { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true + "role": "SUBMITTED BY", + "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false + "role": "SUBMITTED BY", + "siteRegistry": true } ], "siteRegistry": true @@ -30514,84 +42609,165 @@ "participants": [ { "name": "SHELL CANADA PRODUCTS", - "endDate": "2022-12-30", - "startDate": "2021-07-14", + "endDate": "2015-07-27", + "startDate": "2017-01-09", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2018-08-24", - "startDate": "2013-10-12", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2021-08-18", + "startDate": "2021-11-01", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2017-11-15", - "startDate": "2021-10-12", + "name": "IPSUM", + "endDate": "2016-04-16", + "startDate": "2016-03-29", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true + } + ], + "suspectLandUses": [ + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2015-12-24 (described on Site Profile dated 2015-12-24)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2020-12-25 (described on Site Profile dated 2020-12-25)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + } + ], + "siteDisclosures": [ + { + "siteRegistry": false, + "dateReceived": "2017-02-24", + "dateCompleted": "2016-08-10", + "dateEntered": "2019-03-20", + "dateRegistrar": "2014-05-18", + "dateLocalAuthorityReceived": "2022-02-09", + "summary": "Accusamus quis impedit iusto quasi quos voluptas esse eius aut.", + "informationUsed": "Eius modi at blanditiis optio ipsum magnam.\nExpedita inventore pariatur eos excepturi soluta.\nCupiditate provident non ullam doloribus reprehenderit harum quae.", + "pastOrPresentOrders": "Architecto similique iure facilis sint incidunt.\nExcepturi molestiae earum.\nDolore dolore nam.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + } + ] + } + ], + "activityLog": [ + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "MARKS VIRGINIA", + "timestamp": "2015-01-03" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "GRIMES GIA", + "timestamp": "2013-11-17" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "RITCHIE ELEANORA", + "timestamp": "2014-12-22" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "VON BARRETT", + "timestamp": "2023-06-24" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "FERRY BRYCE", + "timestamp": "2013-11-03" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "GRIMES ALIZA", + "timestamp": "2021-02-24" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "SCHUPPE CARMINE", + "timestamp": "2016-02-19" } ], "associatedSites": [ { - "dateNoted": "2020-06-21", + "dateNoted": "2023-09-21", "notes": "", - "parcelID": "19592", - "siteID": "17914", - "siteRegistry": false + "parcelID": "20373", + "siteID": "19475", + "siteRegistry": true }, { - "dateNoted": "2018-09-11", + "dateNoted": "2021-01-21", "notes": "", - "parcelID": "20952", - "siteID": "19740", + "parcelID": "18855", + "siteID": "18849", "siteRegistry": false }, { - "dateNoted": "2021-08-07", + "dateNoted": "2015-11-23", "notes": "", - "parcelID": "20152", - "siteID": "16025", + "parcelID": "16922", + "siteID": "20921", "siteRegistry": true } ] }, { - "uuid": "463db693-f7d5-4c5e-add5-38753948754f", - "siteID": 18026, - "address": "89498 Casey Crest", - "latitude": 50.1886, - "longitude": -131.8699, - "lastUpdated": "2018-08-02", - "city": "Walnut Creek", - "region": "Thompson-Okanagan", - "victoriaFile": "26250-20/3290", + "uuid": "6612baff-cfbe-437f-ad42-f25739bf2e80", + "siteID": 15592, + "address": "534 Dulce Valley", + "latitude": 57.257, + "longitude": -124.553, + "lastUpdated": "2019-06-20", + "city": "North Herminiaworth", + "region": "Kootenay", + "victoriaFile": "26250-20/11429", "regionalFile": "N/A", "parcelIDs": [ - 3859513, - 7397483, - 6967199, - 7094168, - 9260551 + 5358872, + 299457, + 8887609, + 5196087, + 5594266 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2018-07-01", - "completed": "2020-07-30", - "initiated": "2020-12-12", - "ministryContact": "MCLAUGHLIN KRAIG", + "createdAt": "2021-09-02", + "completed": "2023-03-16", + "initiated": "2016-11-29", + "ministryContact": "MONAHAN DANNIE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -30599,26 +42775,16 @@ "" ], "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", @@ -30628,10 +42794,10 @@ "siteRegistry": true }, { - "createdAt": "2021-11-11", - "completed": "2014-03-22", - "initiated": "2014-08-19", - "ministryContact": "EMMERICH ESMERALDA", + "createdAt": "2017-11-30", + "completed": "2017-01-05", + "initiated": "2017-01-02", + "ministryContact": "ABBOTT ORIE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -30640,23 +42806,48 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "createdAt": "2020-04-28", + "completed": "2021-10-19", + "initiated": "2016-12-17", + "ministryContact": "KRIS TERESA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true } ], @@ -30665,115 +42856,196 @@ ], "participants": [ { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2014-04-23", - "startDate": "2022-05-30", + "name": "AMET, DOLOR SIT", + "endDate": "2020-08-12", + "startDate": "2017-05-19", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": false - }, - { - "name": "IPSUM", - "endDate": "2015-12-16", - "startDate": "2019-08-02", - "notes": "", - "roles": [ - "EMPLOYEE" - ], "siteRegistry": true }, { "name": "AMET, DOLOR SIT", - "endDate": "2016-09-04", - "startDate": "2014-10-18", + "endDate": "2022-11-30", + "startDate": "2022-02-03", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": true } ], - "associatedSites": [ + "suspectLandUses": [ { - "dateNoted": "2018-07-06", - "notes": "", - "parcelID": "20115", - "siteID": "18245", - "siteRegistry": false + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2023-01-24 (described on Site Profile dated 2023-01-24)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "dateNoted": "2018-07-21", - "notes": "", - "parcelID": "15868", - "siteID": "18550", - "siteRegistry": true + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2020-12-29 (described on Site Profile dated 2020-12-29)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2019-11-07 (described on Site Profile dated 2019-11-07)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2022-08-28 (described on Site Profile dated 2022-08-28)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } - ] - }, - { - "uuid": "c2bc3f13-d83f-4647-b02c-96da428280e7", - "siteID": 19854, - "address": "17673 Shanahan Via", - "latitude": 56.7967, - "longitude": -120.023, - "lastUpdated": "2014-07-03", - "city": "Oswaldoland", - "region": "Vancouver Island/Coast", - "victoriaFile": "26250-20/5245", - "regionalFile": "N/A", - "parcelIDs": [ - 5109709, - 991955, - 9683405, - 6117093, - 3711313 ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ + "siteDisclosures": [ { - "createdAt": "2021-09-25", - "completed": "2022-10-07", - "initiated": "2021-10-15", - "ministryContact": "HAMILL TERRENCE", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ + "siteRegistry": false, + "dateReceived": "2020-09-01", + "dateCompleted": "2018-10-12", + "dateEntered": "2021-03-16", + "dateRegistrar": "2018-10-10", + "dateLocalAuthorityReceived": "2017-03-24", + "summary": "Eos atque quisquam iusto temporibus alias culpa non eaque.\nItaque quia perspiciatis alias porro voluptate illo.", + "informationUsed": "Aspernatur aspernatur odit suscipit nostrum unde consectetur magnam natus fuga.\nOfficia maxime neque.\nReiciendis voluptas porro ut vel quibusdam animi non.\nDucimus distinctio quam necessitatibus omnis maiores rem repellendus perspiciatis quaerat.\nAsperiores vel culpa quae.", + "pastOrPresentOrders": "A eligendi doloribus.", + "commercialAndIndustrialPurposes": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false } - ], - "siteRegistry": true + ] + } + ], + "activityLog": [ + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "GREENFELDER SHAYLEE", + "timestamp": "2016-03-26" }, { - "createdAt": "2020-09-04", - "completed": "2017-01-21", - "initiated": "2020-01-06", - "ministryContact": "BOEHM NICKLAUS", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "LEDNER STACY", + "timestamp": "2019-12-03" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "GULGOWSKI JACQUES", + "timestamp": "2014-11-18" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "ROMAGUERA LUNA", + "timestamp": "2017-04-19" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "SHIELDS BRIGITTE", + "timestamp": "2017-06-17" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "MOHR FLOYD", + "timestamp": "2014-05-01" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "ROOB MONTY", + "timestamp": "2022-10-06" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "DICKINSON LUZ", + "timestamp": "2017-01-19" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "RUSSEL EUNA", + "timestamp": "2020-08-14" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "CRIST FRANK", + "timestamp": "2018-01-17" + } + ], + "associatedSites": [ + { + "dateNoted": "2020-01-22", + "notes": "", + "parcelID": "16375", + "siteID": "15206", + "siteRegistry": true + }, + { + "dateNoted": "2020-11-13", + "notes": "", + "parcelID": "18564", + "siteID": "20942", + "siteRegistry": false + }, + { + "dateNoted": "2013-10-14", + "notes": "", + "parcelID": "17476", + "siteID": "19397", + "siteRegistry": false + } + ] + }, + { + "uuid": "c1212263-9d44-4607-85b0-fdec2aa4c268", + "siteID": 17898, + "address": "18260 Mante Hills", + "latitude": 49.8131, + "longitude": -126.1368, + "lastUpdated": "2022-07-28", + "city": "Tobinside", + "region": "Mainland/Southwest", + "victoriaFile": "26250-20/13209", + "regionalFile": "N/A", + "parcelIDs": [ + 4983584, + 6117147, + 366877, + 4842412, + 1500627 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2015-12-27", + "completed": "2018-08-01", + "initiated": "2017-08-12", + "ministryContact": "WIEGAND NAME", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", "requestedActions": [ "" @@ -30782,31 +43054,21 @@ { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": true } ], "siteRegistry": false }, { - "createdAt": "2014-07-26", - "completed": "2019-10-01", - "initiated": "2014-05-18", - "ministryContact": "WUCKERT-REMPEL ANTONETTA", + "createdAt": "2019-05-20", + "completed": "2020-10-15", + "initiated": "2021-03-06", + "ministryContact": "GREENFELDER VILMA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -30815,22 +43077,17 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false }, @@ -30840,13 +43097,13 @@ "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2017-12-02", - "completed": "2017-03-12", - "initiated": "2013-11-26", - "ministryContact": "ZULAUF SHERMAN", + "createdAt": "2015-11-01", + "completed": "2018-03-14", + "initiated": "2021-01-08", + "ministryContact": "GREEN CATHERINE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -30855,110 +43112,38 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true } ], "siteRegistry": true - } - ], - "participants": [ - { - "name": "IPSUM", - "endDate": "2019-09-24", - "startDate": "2022-04-21", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2020-07-30", - "startDate": "2021-12-27", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": false - }, - { - "name": "AMET, DOLOR SIT", - "endDate": "2019-04-11", - "startDate": "2021-11-17", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2019-12-24", - "startDate": "2015-09-28", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": false - } - ], - "associatedSites": [ - { - "dateNoted": "2014-02-12", - "notes": "", - "parcelID": "16057", - "siteID": "18753", - "siteRegistry": true - }, - { - "dateNoted": "2015-06-02", - "notes": "", - "parcelID": "16642", - "siteID": "19778", - "siteRegistry": true }, { - "dateNoted": "2021-01-28", - "notes": "", - "parcelID": "16336", - "siteID": "19904", - "siteRegistry": false - } - ] - }, - { - "uuid": "d012b652-ab6b-4b47-a3cc-e3ecdfe3b287", - "siteID": 17463, - "address": "6730 Davis Haven", - "latitude": 48.7437, - "longitude": -127.6937, - "lastUpdated": "2022-02-07", - "city": "New Efrain", - "region": " North Coast", - "victoriaFile": "26250-20/3079", - "regionalFile": "N/A", - "parcelIDs": [ - 8945222, - 4176829, - 5241588, - 4641866, - 5242951 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2015-07-11", - "completed": "2016-06-03", - "initiated": "2014-02-08", - "ministryContact": "HERMISTON ALYSHA", + "createdAt": "2014-12-19", + "completed": "2017-09-04", + "initiated": "2017-06-07", + "ministryContact": "NICOLAS JOSIAH", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -30968,18 +43153,13 @@ "notationParticipants": [ { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", @@ -30990,10 +43170,10 @@ "siteRegistry": false }, { - "createdAt": "2022-01-06", - "completed": "2017-05-10", - "initiated": "2014-11-21", - "ministryContact": "HEGMANN NAOMIE", + "createdAt": "2021-05-20", + "completed": "2021-01-28", + "initiated": "2023-02-11", + "ministryContact": "JONES AISHA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -31001,35 +43181,25 @@ "" ], "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false } ], "participants": [ { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2016-07-22", - "startDate": "2017-01-28", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2021-11-16", + "startDate": "2019-10-14", "notes": "", "roles": [ "ORGANIZATION" @@ -31037,78 +43207,189 @@ "siteRegistry": true }, { - "name": "IPSUM", - "endDate": "2017-01-14", - "startDate": "2013-10-22", + "name": "AMET, DOLOR SIT", + "endDate": "2018-02-17", + "startDate": "2018-10-27", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": true }, { - "name": "AMET, DOLOR SIT", - "endDate": "2020-04-07", - "startDate": "2021-10-04", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2022-03-17", + "startDate": "2014-11-06", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": true + } + ], + "suspectLandUses": [ + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2022-08-12 (described on Site Profile dated 2022-08-12)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "name": "AMET, DOLOR SIT", - "endDate": "2020-03-15", - "startDate": "2019-12-23", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": false + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2020-02-28 (described on Site Profile dated 2020-02-28)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2019-01-10 (described on Site Profile dated 2019-01-10)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2020-07-20 (described on Site Profile dated 2020-07-20)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2016-12-11 (described on Site Profile dated 2016-12-11)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + } + ], + "siteDisclosures": [ + { + "siteRegistry": true, + "dateReceived": "2014-03-24", + "dateCompleted": "2019-12-10", + "dateEntered": "2013-11-30", + "dateRegistrar": "2019-07-01", + "dateLocalAuthorityReceived": "2023-05-11", + "summary": "Alias nam repellat rem minus.\nAsperiores dignissimos labore magni amet ullam neque.", + "informationUsed": "Eos maiores alias molestiae dolores molestias distinctio distinctio.\nPerspiciatis praesentium labore expedita.\nFuga non deserunt nesciunt molestiae sequi aut neque veritatis qui.", + "pastOrPresentOrders": "Et beatae voluptatem labore ipsa.\nIpsa recusandae optio id maxime autem.\nOfficiis rem nemo assumenda odio vitae hic.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + } + ] + } + ], + "activityLog": [ + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "HAHN LORENA", + "timestamp": "2018-09-21" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "SCHULTZ BOBBY", + "timestamp": "2015-05-21" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "WILLIAMSON HASSIE", + "timestamp": "2019-03-03" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "MURPHY CORALIE", + "timestamp": "2019-09-01" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "SPINKA BOYD", + "timestamp": "2018-06-02" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "BATZ BAYLEE", + "timestamp": "2021-05-14" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "THIEL SYDNI", + "timestamp": "2019-03-07" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "HILLS MARLEY", + "timestamp": "2020-01-13" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "BERGE GARTH", + "timestamp": "2019-07-17" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "GULGOWSKI KYLER", + "timestamp": "2020-07-24" } ], "associatedSites": [ { - "dateNoted": "2018-05-03", + "dateNoted": "2015-01-21", "notes": "", - "parcelID": "20180", - "siteID": "17275", + "parcelID": "18052", + "siteID": "19041", "siteRegistry": false }, { - "dateNoted": "2014-04-04", + "dateNoted": "2019-07-25", + "notes": "", + "parcelID": "18039", + "siteID": "19103", + "siteRegistry": true + }, + { + "dateNoted": "2020-04-03", "notes": "", - "parcelID": "20700", - "siteID": "19005", + "parcelID": "20532", + "siteID": "17411", "siteRegistry": false } ] }, { - "uuid": "fc0044a5-c2e9-48c6-bec8-2087e35bc631", - "siteID": 17692, - "address": "5632 Clifford Brooks", - "latitude": 48.8701, - "longitude": -121.9772, - "lastUpdated": "2014-06-08", - "city": "West Jazmyn", - "region": "Kootenay", - "victoriaFile": "26250-20/19839", + "uuid": "3cb26cca-23b2-429b-a76f-87d31045902e", + "siteID": 17155, + "address": "58972 McCullough Place", + "latitude": 48.6828, + "longitude": -118.314, + "lastUpdated": "2013-12-28", + "city": "Orem", + "region": "Thompson-Okanagan", + "victoriaFile": "26250-20/15334", "regionalFile": "N/A", "parcelIDs": [ - 5850486, - 5921314, - 9340826, - 4755638, - 4657499 + 4609462, + 7990295, + 9319461, + 7165135, + 4126510 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2018-08-20", - "completed": "2013-10-09", - "initiated": "2017-07-02", - "ministryContact": "BALISTRERI CLEO", + "createdAt": "2021-03-24", + "completed": "2019-12-30", + "initiated": "2021-10-31", + "ministryContact": "SCHOWALTER JOHNSON", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -31116,19 +43397,19 @@ "" ], "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": false }, { @@ -31140,10 +43421,10 @@ "siteRegistry": true }, { - "createdAt": "2020-12-03", - "completed": "2023-03-27", - "initiated": "2023-07-04", - "ministryContact": "MANN ZELDA", + "createdAt": "2023-06-11", + "completed": "2020-03-20", + "initiated": "2019-02-05", + "ministryContact": "ROWE HATTIE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -31163,17 +43444,17 @@ }, { "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2015-04-03", - "completed": "2016-11-28", - "initiated": "2015-12-09", - "ministryContact": "HAGENES ROXANNE", + "createdAt": "2019-12-01", + "completed": "2015-05-12", + "initiated": "2019-01-22", + "ministryContact": "NIKOLAUS ARCH", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -31184,27 +43465,17 @@ { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false } ], "siteRegistry": false @@ -31212,19 +43483,19 @@ ], "participants": [ { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2021-01-07", - "startDate": "2016-09-19", + "name": "AMET, DOLOR SIT", + "endDate": "2020-01-05", + "startDate": "2013-11-28", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": true }, { - "name": "AMET, DOLOR SIT", - "endDate": "2016-06-18", - "startDate": "2019-05-24", + "name": "IPSUM", + "endDate": "2018-07-28", + "startDate": "2016-05-01", "notes": "", "roles": [ "EMPLOYEE" @@ -31233,178 +43504,191 @@ }, { "name": "AMET, DOLOR SIT", - "endDate": "2015-04-22", - "startDate": "2020-09-24", + "endDate": "2020-03-24", + "startDate": "2013-11-11", "notes": "", "roles": [ "ORGANIZATION" ], + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2015-12-22", + "startDate": "2017-05-29", + "notes": "", + "roles": [ + "EMPLOYEE" + ], "siteRegistry": true } ], - "associatedSites": [ + "suspectLandUses": [ { - "dateNoted": "2023-02-04", - "notes": "", - "parcelID": "18910", - "siteID": "15666", - "siteRegistry": false + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2014-01-09 (described on Site Profile dated 2014-01-09)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2019-04-03 (described on Site Profile dated 2019-04-03)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2021-01-01 (described on Site Profile dated 2021-01-01)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2020-11-03 (described on Site Profile dated 2020-11-03)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } - ] - }, - { - "uuid": "af72295d-0f9c-43dc-9922-770349c963ef", - "siteID": 18093, - "address": "94038 O'Keefe Inlet", - "latitude": 57.3663, - "longitude": -118.3781, - "lastUpdated": "2016-06-29", - "city": "Koeppfort", - "region": "Mainland/Southwest", - "victoriaFile": "26250-20/14919", - "regionalFile": "N/A", - "parcelIDs": [ - 885270, - 2105097, - 7747670, - 7551298, - 3147375 ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ + "siteDisclosures": [ { - "createdAt": "2020-09-22", - "completed": "2023-07-27", - "initiated": "2014-01-08", - "ministryContact": "WATERS CAMILLE", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, + "siteRegistry": true, + "dateReceived": "2020-09-01", + "dateCompleted": "2023-04-10", + "dateEntered": "2013-12-08", + "dateRegistrar": "2020-07-15", + "dateLocalAuthorityReceived": "2016-08-13", + "summary": "Excepturi magnam sint officiis dolor molestias deserunt tenetur sed.\nIncidunt corporis cumque.\nDolorum nulla animi in nostrum.", + "informationUsed": "Cumque doloremque quidem quidem illo nulla.\nOmnis ipsa fugiat hic.\nDicta at quia totam.\nConsectetur saepe autem iste officia assumenda ipsum odio amet modi.", + "pastOrPresentOrders": "Placeat quia nulla voluptates perspiciatis possimus tempore aliquam.", + "commercialAndIndustrialPurposes": [ { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false } - ], - "siteRegistry": true + ] }, { - "createdAt": "2019-09-28", - "completed": "2014-01-28", - "initiated": "2014-12-25", - "ministryContact": "ROSENBAUM JACE", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, + "siteRegistry": true, + "dateReceived": "2018-10-26", + "dateCompleted": "2016-05-25", + "dateEntered": "2016-07-17", + "dateRegistrar": "2014-10-21", + "dateLocalAuthorityReceived": "2019-07-23", + "summary": "Numquam iure quia nobis deserunt iste nam saepe occaecati.", + "informationUsed": "Explicabo odio numquam.\nMagnam libero corporis modi non sunt dolore voluptate.\nEnim illum natus esse.", + "pastOrPresentOrders": "Sequi ea tempore maiores delectus sint ut deleniti facere ratione.\nSaepe reiciendis molestiae cumque similique animi ipsum possimus.", + "commercialAndIndustrialPurposes": [ { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true } - ], - "siteRegistry": true + ] } ], - "participants": [ + "activityLog": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2020-07-26", - "startDate": "2020-05-04", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": false + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "ZIEME AUGUST", + "timestamp": "2020-04-26" }, { - "name": "AMET, DOLOR SIT", - "endDate": "2022-04-29", - "startDate": "2014-03-26", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": false + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "BEIER MARIANA", + "timestamp": "2015-10-10" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "FRIESEN NICOLETTE", + "timestamp": "2017-07-17" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "MAGGIO BIRDIE", + "timestamp": "2021-06-14" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "BARTON GERHARD", + "timestamp": "2020-05-07" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "GRIMES LAZARO", + "timestamp": "2019-04-11" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "LEHNER KAMREN", + "timestamp": "2015-01-12" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "SCHIMMEL NOEMIE", + "timestamp": "2016-06-29" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "HARBER ARLENE", + "timestamp": "2015-09-16" } ], "associatedSites": [ { - "dateNoted": "2021-05-02", + "dateNoted": "2018-02-24", "notes": "", - "parcelID": "17402", - "siteID": "15588", + "parcelID": "19649", + "siteID": "16870", "siteRegistry": true } ] }, { - "uuid": "6b470457-6b76-4d35-bd80-7577401aa09b", - "siteID": 15481, - "address": "97436 Haley Avenue", - "latitude": 50.3508, - "longitude": -127.6366, - "lastUpdated": "2014-03-29", - "city": "Trevacester", + "uuid": "ddfc46e5-a05e-4283-975b-16f437e41977", + "siteID": 18840, + "address": "161 Winston Ways", + "latitude": 53.5103, + "longitude": -125.4358, + "lastUpdated": "2019-11-12", + "city": "Anaheim", "region": "Kootenay", - "victoriaFile": "26250-20/15644", + "victoriaFile": "26250-20/18634", "regionalFile": "N/A", "parcelIDs": [ - 2873750, - 5422995, - 5400068, - 5768135, - 8661220 + 1792785, + 868911, + 4617060, + 9595062, + 3994119 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2018-01-11", - "completed": "2018-10-14", - "initiated": "2014-09-23", - "ministryContact": "MCLAUGHLIN ELSA", + "createdAt": "2017-03-22", + "completed": "2018-03-02", + "initiated": "2014-03-09", + "ministryContact": "D'AMORE PEARL", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -31418,23 +43702,33 @@ "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2014-09-26", - "completed": "2014-09-28", - "initiated": "2019-12-11", - "ministryContact": "TOY TOMAS", + "createdAt": "2017-09-12", + "completed": "2019-03-11", + "initiated": "2022-11-26", + "ministryContact": "RUSSEL ZITA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -31445,42 +43739,42 @@ { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false } ], "participants": [ { - "name": "AMET, DOLOR SIT", - "endDate": "2019-04-11", - "startDate": "2017-09-30", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2014-03-19", + "startDate": "2022-02-17", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": true }, { - "name": "IPSUM", - "endDate": "2015-09-30", - "startDate": "2014-12-30", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2016-07-27", + "startDate": "2017-06-20", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2015-06-08", + "startDate": "2018-01-14", "notes": "", "roles": [ "EMPLOYEE" @@ -31488,9 +43782,9 @@ "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2013-12-27", - "startDate": "2022-02-25", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2023-02-25", + "startDate": "2018-01-12", "notes": "", "roles": [ "ORGANIZATION" @@ -31498,48 +43792,135 @@ "siteRegistry": true } ], + "suspectLandUses": [ + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2016-09-25 (described on Site Profile dated 2016-09-25)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2017-11-17 (described on Site Profile dated 2017-11-17)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + } + ], + "siteDisclosures": [ + { + "siteRegistry": true, + "dateReceived": "2020-04-20", + "dateCompleted": "2023-03-16", + "dateEntered": "2021-01-09", + "dateRegistrar": "2017-04-15", + "dateLocalAuthorityReceived": "2014-06-24", + "summary": "Nostrum voluptatum enim sint dicta hic magni qui ea.", + "informationUsed": "Similique minus numquam illo atque aut.\nIllum eum sequi mollitia laudantium enim doloremque accusantium commodi.\nEx at assumenda voluptates qui doloremque commodi quas occaecati dolor.\nAspernatur voluptatum error natus velit.\nAspernatur id eius pariatur tempore tempora commodi.", + "pastOrPresentOrders": "Ut deserunt itaque ipsa aperiam enim repellendus animi.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + } + ] + } + ], + "activityLog": [ + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "PRICE EDGAR", + "timestamp": "2016-07-16" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "KRAJCIK KURT", + "timestamp": "2015-04-16" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "MARKS EMMALEE", + "timestamp": "2018-06-11" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "CROOKS AMARA", + "timestamp": "2020-05-29" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "REMPEL MEGANE", + "timestamp": "2014-10-02" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "COLE FLETA", + "timestamp": "2022-04-26" + } + ], "associatedSites": [ { - "dateNoted": "2021-10-18", + "dateNoted": "2015-06-08", "notes": "", - "parcelID": "16524", - "siteID": "18274", + "parcelID": "20187", + "siteID": "19041", "siteRegistry": false }, { - "dateNoted": "2016-05-03", + "dateNoted": "2014-04-22", "notes": "", - "parcelID": "15460", - "siteID": "18587", + "parcelID": "19353", + "siteID": "15706", "siteRegistry": false + }, + { + "dateNoted": "2018-12-21", + "notes": "", + "parcelID": "15827", + "siteID": "15327", + "siteRegistry": true } ] }, { - "uuid": "ceea2cf6-6e7a-4a41-8ac0-b26850448745", - "siteID": 19072, - "address": "349 Jakubowski Mount", - "latitude": 53.2393, - "longitude": -135.8349, - "lastUpdated": "2017-06-04", - "city": "East Delphia", - "region": "Kootenay", - "victoriaFile": "26250-20/2741", + "uuid": "bc834d97-5bb7-41b3-a4e5-2899992d38bc", + "siteID": 19118, + "address": "22632 Gregorio Forge", + "latitude": 51.1211, + "longitude": -129.8848, + "lastUpdated": "2019-06-10", + "city": "Clementinehaven", + "region": "Thompson-Okanagan", + "victoriaFile": "26250-20/4887", "regionalFile": "N/A", "parcelIDs": [ - 7126998, - 1137610, - 3818525, - 5440607, - 7802326 + 3759121, + 3100509, + 8218532, + 8020819, + 2723680 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2017-04-26", - "completed": "2016-04-25", - "initiated": "2023-08-04", - "ministryContact": "HILLS JAMIL", + "createdAt": "2015-08-29", + "completed": "2013-11-17", + "initiated": "2019-09-03", + "ministryContact": "MONAHAN VIRGIE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -31549,21 +43930,16 @@ "notationParticipants": [ { "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true } @@ -31571,10 +43947,10 @@ "siteRegistry": false }, { - "createdAt": "2016-08-06", - "completed": "2014-01-14", - "initiated": "2015-07-29", - "ministryContact": "CORKERY ELBERT", + "createdAt": "2020-10-21", + "completed": "2015-12-07", + "initiated": "2020-06-21", + "ministryContact": "CARTWRIGHT HARMON", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -31583,9 +43959,9 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", @@ -31595,21 +43971,21 @@ { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true } ], "siteRegistry": false }, { - "createdAt": "2015-11-03", - "completed": "2016-04-13", - "initiated": "2018-07-03", - "ministryContact": "FISHER JOE", + "createdAt": "2022-06-26", + "completed": "2018-07-13", + "initiated": "2015-06-20", + "ministryContact": "HAND LUCIO", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -31618,130 +43994,207 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - } - ], - "siteRegistry": true - }, - { - "createdAt": "2020-08-15", - "completed": "2020-10-09", - "initiated": "2022-09-23", - "ministryContact": "SCHNEIDER HOYT", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, { "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false } ], "participants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2018-05-17", - "startDate": "2016-03-17", + "name": "AMET, DOLOR SIT", + "endDate": "2020-07-18", + "startDate": "2015-10-27", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": false }, { "name": "IPSUM", - "endDate": "2019-07-09", - "startDate": "2016-10-11", + "endDate": "2018-06-06", + "startDate": "2017-02-17", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": true - } - ], - "associatedSites": [ + }, { - "dateNoted": "2021-07-15", + "name": "IPSUM", + "endDate": "2019-07-21", + "startDate": "2020-09-28", "notes": "", - "parcelID": "20997", - "siteID": "18047", + "roles": [ + "ORGANIZATION" + ], "siteRegistry": false }, { - "dateNoted": "2014-02-19", + "name": "IPSUM", + "endDate": "2021-12-25", + "startDate": "2019-07-17", "notes": "", - "parcelID": "20679", - "siteID": "17038", - "siteRegistry": true + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + } + ], + "suspectLandUses": [ + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2018-11-12 (described on Site Profile dated 2018-11-12)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "dateNoted": "2019-02-07", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2017-06-02 (described on Site Profile dated 2017-06-02)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2023-05-30 (described on Site Profile dated 2023-05-30)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2016-04-30 (described on Site Profile dated 2016-04-30)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2015-07-12 (described on Site Profile dated 2015-07-12)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + } + ], + "siteDisclosures": [ + { + "siteRegistry": true, + "dateReceived": "2021-10-17", + "dateCompleted": "2023-03-30", + "dateEntered": "2021-03-30", + "dateRegistrar": "2016-04-27", + "dateLocalAuthorityReceived": "2017-02-26", + "summary": "Molestiae ullam expedita veniam placeat unde et quo eius.\nQuae deleniti eum.", + "informationUsed": "Exercitationem quisquam at quisquam in perspiciatis dicta modi excepturi esse.\nQuos qui laboriosam doloremque.\nIllo velit commodi impedit aut.\nRem aspernatur quam hic facilis quaerat ab beatae quibusdam.\nDolore reiciendis consectetur repudiandae autem corrupti ea.", + "pastOrPresentOrders": "Dicta numquam rem.\nSaepe rem iste eius saepe dolores.\nDucimus impedit odit ut.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + } + ] + } + ], + "activityLog": [ + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "HILPERT BRENNA", + "timestamp": "2020-09-04" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "ARMSTRONG ONIE", + "timestamp": "2014-12-06" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "VANDERVORT BEAU", + "timestamp": "2019-05-05" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "RIPPIN DARIEN", + "timestamp": "2022-12-08" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "BINS DAGMAR", + "timestamp": "2022-11-29" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "GOODWIN ALEXANDRO", + "timestamp": "2014-06-01" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "MULLER KEVEN", + "timestamp": "2015-08-20" + } + ], + "associatedSites": [ + { + "dateNoted": "2023-02-08", "notes": "", - "parcelID": "19841", - "siteID": "19248", - "siteRegistry": false + "parcelID": "16447", + "siteID": "20967", + "siteRegistry": true } ] }, { - "uuid": "3c06d48a-8bdd-4f8d-930e-51fbfcda29e0", - "siteID": 20023, - "address": "88353 Jermey Avenue", - "latitude": 50.0437, - "longitude": -122.8816, - "lastUpdated": "2016-05-08", - "city": "West Enid", - "region": "Vancouver Island/Coast", - "victoriaFile": "26250-20/11528", + "uuid": "a169df8f-2e7d-4fb4-9963-5fae43683d87", + "siteID": 16617, + "address": "35418 DuBuque Park", + "latitude": 49.062, + "longitude": -128.6743, + "lastUpdated": "2017-07-15", + "city": "West Lila", + "region": "Kootenay", + "victoriaFile": "26250-20/3090", "regionalFile": "N/A", "parcelIDs": [ - 7378184, - 6413736, - 6369839, - 1980287, - 345749 + 3734211, + 4654516, + 9858810, + 6702782, + 2595831 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2021-09-28", - "completed": "2015-05-13", - "initiated": "2020-03-26", - "ministryContact": "TURCOTTE ABDUL", + "createdAt": "2014-09-04", + "completed": "2021-03-20", + "initiated": "2018-01-26", + "ministryContact": "SCHUMM KELLEN", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -31751,27 +44204,27 @@ "notationParticipants": [ { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true } ], "siteRegistry": false }, { - "createdAt": "2018-10-29", - "completed": "2018-11-01", - "initiated": "2016-03-10", - "ministryContact": "GISLASON LAMBERT", + "createdAt": "2022-07-29", + "completed": "2014-08-15", + "initiated": "2016-11-17", + "ministryContact": "OBERBRUNNER ASSUNTA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -31784,21 +44237,6 @@ "role": "REQUESTED BY", "siteRegistry": false }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", @@ -31808,10 +44246,10 @@ "siteRegistry": true }, { - "createdAt": "2015-04-30", - "completed": "2020-09-13", - "initiated": "2016-04-17", - "ministryContact": "MITCHELL OWEN", + "createdAt": "2015-09-13", + "completed": "2013-12-07", + "initiated": "2023-01-25", + "ministryContact": "LINDGREN JERAMIE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -31821,32 +44259,27 @@ "notationParticipants": [ { "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2019-08-14", - "completed": "2018-10-22", - "initiated": "2016-06-23", - "ministryContact": "MEDHURST JULIANA", + "createdAt": "2020-05-09", + "completed": "2016-04-01", + "initiated": "2015-05-22", + "ministryContact": "SPENCER DESSIE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -31856,13 +44289,18 @@ "notationParticipants": [ { "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false } ], "siteRegistry": true @@ -31871,18 +44309,28 @@ "participants": [ { "name": "IPSUM", - "endDate": "2021-07-08", - "startDate": "2017-06-24", + "endDate": "2021-03-16", + "startDate": "2017-02-17", "notes": "", "roles": [ "EMPLOYEE" ], "siteRegistry": false }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2019-01-15", + "startDate": "2016-07-24", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, { "name": "IPSUM", - "endDate": "2017-03-06", - "startDate": "2021-11-24", + "endDate": "2015-10-22", + "startDate": "2017-05-24", "notes": "", "roles": [ "ORGANIZATION" @@ -31890,41 +44338,161 @@ "siteRegistry": true } ], + "suspectLandUses": [ + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2021-05-23 (described on Site Profile dated 2021-05-23)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2022-08-28 (described on Site Profile dated 2022-08-28)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2021-05-20 (described on Site Profile dated 2021-05-20)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2019-09-13 (described on Site Profile dated 2019-09-13)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + } + ], + "siteDisclosures": [ + { + "siteRegistry": true, + "dateReceived": "2022-09-20", + "dateCompleted": "2022-08-05", + "dateEntered": "2019-11-07", + "dateRegistrar": "2019-03-24", + "dateLocalAuthorityReceived": "2014-09-20", + "summary": "Ullam quaerat iusto minima.\nConsectetur provident et aperiam fugit aliquam dolorum mollitia.", + "informationUsed": "Esse iure libero deleniti dicta.\nVoluptatibus quo quam quos dicta ipsa molestias.\nQuaerat nostrum perspiciatis.", + "pastOrPresentOrders": "Inventore laborum dolor neque nam harum officia.\nEnim hic quisquam ullam dolore ad.\nImpedit ipsam distinctio et repudiandae accusantium odio molestias sit quo.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + } + ] + }, + { + "siteRegistry": true, + "dateReceived": "2019-06-06", + "dateCompleted": "2014-06-19", + "dateEntered": "2016-01-02", + "dateRegistrar": "2016-07-19", + "dateLocalAuthorityReceived": "2014-05-26", + "summary": "Accusantium ut nisi.\nExplicabo vel blanditiis natus architecto.", + "informationUsed": "Earum veniam fugiat eum dignissimos minus voluptas culpa.\nDeleniti ullam laboriosam quaerat ab nulla minus libero voluptate maxime.\nAutem assumenda illum nihil quas deserunt.", + "pastOrPresentOrders": "Maiores quod sit et ea.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + } + ] + } + ], + "activityLog": [ + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "KRIS GERARD", + "timestamp": "2015-02-13" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "HEIDENREICH ROWLAND", + "timestamp": "2019-09-16" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "LOWE SYDNIE", + "timestamp": "2022-01-24" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "ORTIZ-KAUTZER ABBY", + "timestamp": "2023-07-31" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "DOUGLAS JO", + "timestamp": "2014-05-22" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "NICOLAS CHARLENE", + "timestamp": "2018-04-26" + } + ], "associatedSites": [ { - "dateNoted": "2020-01-05", + "dateNoted": "2018-06-10", "notes": "", - "parcelID": "17588", - "siteID": "20121", + "parcelID": "18937", + "siteID": "17854", "siteRegistry": false + }, + { + "dateNoted": "2014-10-05", + "notes": "", + "parcelID": "18971", + "siteID": "18123", + "siteRegistry": true } ] }, { - "uuid": "7f13b3ac-6c7f-4720-a861-cc8d63912091", - "siteID": 16557, - "address": "1429 Rau Harbors", - "latitude": 58.087, - "longitude": -129.9837, - "lastUpdated": "2016-05-27", - "city": "East Raphaelleton", + "uuid": "92775d4e-569c-439f-b35f-f19804013431", + "siteID": 15327, + "address": "441 Andrew Union", + "latitude": 52.8336, + "longitude": -128.6186, + "lastUpdated": "2013-11-20", + "city": "Lake Gunner", "region": "Cariboo", - "victoriaFile": "26250-20/14058", + "victoriaFile": "26250-20/11482", "regionalFile": "N/A", "parcelIDs": [ - 3915760, - 9893630, - 191105, - 3425149, - 5876706 + 7904144, + 6999086, + 4705771, + 2665412, + 2581360 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2015-06-01", - "completed": "2015-05-29", - "initiated": "2015-03-15", - "ministryContact": "NIKOLAUS AMOS", + "createdAt": "2016-10-22", + "completed": "2022-02-05", + "initiated": "2017-11-12", + "ministryContact": "GREEN ELENOR", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -31939,27 +44507,17 @@ }, { "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2018-01-08", - "completed": "2020-02-19", - "initiated": "2015-05-11", - "ministryContact": "MARKS THERESE", + "createdAt": "2019-06-15", + "completed": "2021-04-08", + "initiated": "2021-12-12", + "ministryContact": "FISHER NEAL", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -31968,7 +44526,7 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false }, @@ -31978,44 +44536,24 @@ "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true + "role": "SUBMITTED BY", + "siteRegistry": false } ], "siteRegistry": true } ], "participants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2020-09-23", - "startDate": "2016-09-02", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": false - }, { "name": "IPSUM", - "endDate": "2016-10-01", - "startDate": "2016-03-29", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": true - }, - { - "name": "AMET, DOLOR SIT", - "endDate": "2014-04-21", - "startDate": "2013-12-13", + "endDate": "2019-02-13", + "startDate": "2018-02-11", "notes": "", "roles": [ "EMPLOYEE" @@ -32024,8 +44562,8 @@ }, { "name": "SHELL CANADA PRODUCTS", - "endDate": "2021-01-10", - "startDate": "2021-08-19", + "endDate": "2022-12-11", + "startDate": "2020-05-21", "notes": "", "roles": [ "EMPLOYEE" @@ -32033,41 +44571,158 @@ "siteRegistry": false } ], + "suspectLandUses": [ + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2018-09-16 (described on Site Profile dated 2018-09-16)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2019-02-27 (described on Site Profile dated 2019-02-27)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + } + ], + "siteDisclosures": [ + { + "siteRegistry": true, + "dateReceived": "2016-11-12", + "dateCompleted": "2019-12-15", + "dateEntered": "2022-07-07", + "dateRegistrar": "2018-04-24", + "dateLocalAuthorityReceived": "2018-08-23", + "summary": "Minus accusamus quis optio.", + "informationUsed": "Dolorum dignissimos autem provident qui doloribus unde impedit omnis ipsum.\nNecessitatibus sit ad ab.\nMolestiae soluta facere.\nAccusantium aliquam deleniti repellat corporis tempora maiores assumenda distinctio.", + "pastOrPresentOrders": "Illo alias consectetur at omnis eaque.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + } + ] + } + ], + "activityLog": [ + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "KIRLIN KRISTIN", + "timestamp": "2021-10-26" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "O'KEEFE YASMIN", + "timestamp": "2022-08-01" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "NOLAN KIRSTEN", + "timestamp": "2017-08-17" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "LANGOSH ORPHA", + "timestamp": "2020-05-20" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "BOEHM KEYSHAWN", + "timestamp": "2019-10-27" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "GERHOLD TAMARA", + "timestamp": "2021-05-15" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "LEMKE PETE", + "timestamp": "2022-02-01" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "BALISTRERI RENEE", + "timestamp": "2014-02-02" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "KOHLER LOUISA", + "timestamp": "2020-03-24" + } + ], "associatedSites": [ { - "dateNoted": "2015-12-07", + "dateNoted": "2016-02-10", "notes": "", - "parcelID": "16704", - "siteID": "19669", + "parcelID": "18928", + "siteID": "19019", "siteRegistry": false + }, + { + "dateNoted": "2015-08-03", + "notes": "", + "parcelID": "15547", + "siteID": "19790", + "siteRegistry": true + }, + { + "dateNoted": "2018-12-26", + "notes": "", + "parcelID": "20838", + "siteID": "20879", + "siteRegistry": true } ] }, { - "uuid": "2e11cd85-2492-4107-a9a8-81375444e703", - "siteID": 19807, - "address": "36999 Ondricka Unions", - "latitude": 58.0975, - "longitude": -123.1498, - "lastUpdated": "2018-12-08", - "city": "North Bennie", - "region": "Vancouver Island/Coast", - "victoriaFile": "26250-20/16134", + "uuid": "574369db-fa64-4648-95f7-4c3b47c3e793", + "siteID": 16740, + "address": "7749 Dariana Lakes", + "latitude": 58.3728, + "longitude": -135.7552, + "lastUpdated": "2023-04-23", + "city": "West Rubye", + "region": "Thompson-Okanagan", + "victoriaFile": "26250-20/10369", "regionalFile": "N/A", "parcelIDs": [ - 5197243, - 1849993, - 4742629, - 3648022, - 7753422 + 2374283, + 2204666, + 4345251, + 6632242, + 7950429 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2017-08-10", - "completed": "2019-09-13", - "initiated": "2018-08-27", - "ministryContact": "WELCH KEIRA", + "createdAt": "2019-06-11", + "completed": "2018-12-06", + "initiated": "2014-03-11", + "ministryContact": "LEUSCHKE ELECTA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -32078,26 +44733,21 @@ { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false + "role": "SUBMITTED BY", + "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2023-03-03", - "completed": "2022-05-08", - "initiated": "2021-01-07", - "ministryContact": "ANKUNDING EVERETT", + "createdAt": "2018-08-15", + "completed": "2017-06-18", + "initiated": "2023-09-02", + "ministryContact": "SPORER ISIDRO", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -32110,25 +44760,10 @@ "role": "REQUESTED BY", "siteRegistry": false }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true } ], "siteRegistry": true @@ -32136,68 +44771,166 @@ ], "participants": [ { - "name": "AMET, DOLOR SIT", - "endDate": "2020-10-16", - "startDate": "2022-06-03", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2020-05-06", + "startDate": "2019-03-22", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": false + "siteRegistry": true }, { - "name": "IPSUM", - "endDate": "2021-10-29", - "startDate": "2016-09-21", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2019-04-18", + "startDate": "2019-04-06", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2019-10-31", + "startDate": "2021-08-28", "notes": "", "roles": [ "EMPLOYEE" ], + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2023-05-25", + "startDate": "2018-08-01", + "notes": "", + "roles": [ + "ORGANIZATION" + ], "siteRegistry": true - } - ], - "associatedSites": [ + }, { - "dateNoted": "2020-06-22", + "name": "IPSUM", + "endDate": "2014-12-20", + "startDate": "2016-12-04", "notes": "", - "parcelID": "17533", - "siteID": "18859", + "roles": [ + "ORGANIZATION" + ], "siteRegistry": false + } + ], + "suspectLandUses": [ + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2017-10-31 (described on Site Profile dated 2017-10-31)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2021-11-22 (described on Site Profile dated 2021-11-22)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + } + ], + "siteDisclosures": [ + { + "siteRegistry": true, + "dateReceived": "2022-06-24", + "dateCompleted": "2016-09-03", + "dateEntered": "2016-06-27", + "dateRegistrar": "2016-06-22", + "dateLocalAuthorityReceived": "2014-04-24", + "summary": "Molestias sed cumque.\nAccusamus dolorem suscipit ad blanditiis reprehenderit repellat velit.", + "informationUsed": "Accusamus id eveniet suscipit doloribus fugit modi ipsam reiciendis.\nNihil ab reprehenderit.\nFacilis ullam ex sapiente voluptates hic totam.\nPlaceat nobis quam maiores asperiores distinctio non accusantium excepturi.", + "pastOrPresentOrders": "Quod doloribus culpa vel nulla blanditiis libero.\nAmet necessitatibus facere labore dolore ullam voluptates fugiat.\nPraesentium reiciendis nulla odio culpa consequatur.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + } + ] + } + ], + "activityLog": [ + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "KOZEY ANASTASIA", + "timestamp": "2020-05-09" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "GRAHAM MALLORY", + "timestamp": "2022-01-15" }, { - "dateNoted": "2021-08-28", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "COLE KATHRYN", + "timestamp": "2015-06-06" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "STOLTENBERG MALINDA", + "timestamp": "2019-04-07" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "HERMAN OSCAR", + "timestamp": "2017-09-12" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "DONNELLY JOYCE", + "timestamp": "2022-04-19" + } + ], + "associatedSites": [ + { + "dateNoted": "2014-05-18", "notes": "", - "parcelID": "17503", - "siteID": "17898", + "parcelID": "16903", + "siteID": "17945", "siteRegistry": false } ] }, { - "uuid": "f1ebd099-a7df-41cc-b6bd-08061ad5f385", - "siteID": 17190, - "address": "6383 Patsy Brook", - "latitude": 48.8067, - "longitude": -128.7717, - "lastUpdated": "2020-12-05", - "city": "Sanford", + "uuid": "7d9dd6b0-7cff-41e3-8fa2-26d615659996", + "siteID": 15238, + "address": "8971 Konopelski Heights", + "latitude": 54.1307, + "longitude": -128.5246, + "lastUpdated": "2022-03-23", + "city": "Port Orange", "region": "Kootenay", - "victoriaFile": "26250-20/2455", + "victoriaFile": "26250-20/8174", "regionalFile": "N/A", "parcelIDs": [ - 1628696, - 592003, - 1904256, - 6910862, - 6886902 + 5069075, + 1944297, + 3037284, + 8816109, + 9485151 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2017-02-16", - "completed": "2022-07-26", - "initiated": "2015-06-19", - "ministryContact": "SCHOWALTER LEW", + "createdAt": "2015-09-04", + "completed": "2022-12-10", + "initiated": "2020-03-29", + "ministryContact": "COLE AMAYA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -32208,58 +44941,18 @@ { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - } - ], - "siteRegistry": false - }, - { - "createdAt": "2023-03-20", - "completed": "2019-04-03", - "initiated": "2021-01-08", - "ministryContact": "KEEBLER HANK", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": true }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - } - ], - "siteRegistry": false - }, - { - "createdAt": "2019-09-07", - "completed": "2020-12-21", - "initiated": "2022-01-30", - "ministryContact": "FISHER ELDA", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", @@ -32268,26 +44961,16 @@ { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2021-06-07", - "completed": "2020-04-25", - "initiated": "2018-08-09", - "ministryContact": "SCHMITT RAUL", + "createdAt": "2016-10-05", + "completed": "2023-01-03", + "initiated": "2022-03-16", + "ministryContact": "RICE JOSEPHINE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -32297,37 +44980,37 @@ "notationParticipants": [ { "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true } ], "siteRegistry": true }, { - "createdAt": "2022-02-17", - "completed": "2022-12-05", - "initiated": "2023-02-01", - "ministryContact": "ULLRICH JADA", + "createdAt": "2019-06-10", + "completed": "2019-11-26", + "initiated": "2015-09-25", + "ministryContact": "BRAUN CLETUS", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -32336,90 +45019,206 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true } ], "participants": [ { - "name": "AMET, DOLOR SIT", - "endDate": "2020-07-03", - "startDate": "2023-05-06", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2022-07-30", + "startDate": "2019-12-26", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", - "endDate": "2021-03-28", - "startDate": "2023-08-08", + "endDate": "2018-04-26", + "startDate": "2022-12-19", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "AMET, DOLOR SIT", + "endDate": "2019-11-18", + "startDate": "2013-10-19", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": true + "siteRegistry": false } ], - "associatedSites": [ + "suspectLandUses": [ { - "dateNoted": "2014-10-16", - "notes": "", - "parcelID": "17282", - "siteID": "17914", - "siteRegistry": false + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2019-11-11 (described on Site Profile dated 2019-11-11)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "dateNoted": "2014-01-27", - "notes": "", - "parcelID": "16845", - "siteID": "15481", - "siteRegistry": true - }, + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2017-09-28 (described on Site Profile dated 2017-09-28)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + } + ], + "siteDisclosures": [ { - "dateNoted": "2017-10-01", + "siteRegistry": false, + "dateReceived": "2017-04-14", + "dateCompleted": "2014-04-20", + "dateEntered": "2016-12-01", + "dateRegistrar": "2020-09-01", + "dateLocalAuthorityReceived": "2016-03-09", + "summary": "Iusto culpa voluptatem soluta magnam officiis.\nAccusamus explicabo eos dolorem corrupti ad nam.", + "informationUsed": "Dolor exercitationem dolorem earum vero aliquam dolores.\nNecessitatibus eaque incidunt id vitae numquam.\nEum consequuntur voluptatibus animi molestiae aperiam.", + "pastOrPresentOrders": "Aliquid eos rem tempore veniam.\nQuisquam aut magnam.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + } + ] + }, + { + "siteRegistry": false, + "dateReceived": "2017-06-02", + "dateCompleted": "2017-12-05", + "dateEntered": "2015-01-15", + "dateRegistrar": "2023-04-30", + "dateLocalAuthorityReceived": "2022-11-15", + "summary": "Non aperiam eligendi adipisci corporis beatae.\nProvident accusantium ab eaque illo.", + "informationUsed": "Itaque debitis hic quo reiciendis.\nDistinctio blanditiis voluptatum eius.\nAutem voluptas veniam excepturi ab harum nobis modi.\nVoluptate recusandae hic eius natus laborum vel est.\nQuia tenetur cupiditate soluta totam nesciunt eius.", + "pastOrPresentOrders": "Error incidunt assumenda officia laudantium quos quibusdam quia cupiditate reprehenderit.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + } + ] + } + ], + "activityLog": [ + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "RITCHIE REED", + "timestamp": "2019-01-15" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "CRONIN DANDRE", + "timestamp": "2020-04-01" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "METZ ANNABEL", + "timestamp": "2018-08-05" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "LINDGREN ALISON", + "timestamp": "2019-06-01" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "HAMILL JESSIKA", + "timestamp": "2022-07-08" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "MORISSETTE BILL", + "timestamp": "2014-07-14" + } + ], + "associatedSites": [ + { + "dateNoted": "2016-01-28", "notes": "", - "parcelID": "20817", - "siteID": "16645", - "siteRegistry": true + "parcelID": "20811", + "siteID": "17954", + "siteRegistry": false + }, + { + "dateNoted": "2018-02-13", + "notes": "", + "parcelID": "19406", + "siteID": "15342", + "siteRegistry": false } ] }, { - "uuid": "d58ba631-8f3c-4fa4-bf6a-4301a794c1c9", - "siteID": 19762, - "address": "40145 Quincy Lane", - "latitude": 54.1689, - "longitude": -128.8815, - "lastUpdated": "2014-05-25", - "city": "Roobton", - "region": "Cariboo", - "victoriaFile": "26250-20/2863", + "uuid": "b3f55b7a-feb2-498b-a324-29a2d4d4eeba", + "siteID": 15829, + "address": "49850 Fritsch Meadows", + "latitude": 56.3137, + "longitude": -126.5308, + "lastUpdated": "2016-11-19", + "city": "Santa Rosa", + "region": "Thompson-Okanagan", + "victoriaFile": "26250-20/917", "regionalFile": "N/A", "parcelIDs": [ - 9705558, - 9817471, - 6677629, - 8440090, - 697656 + 623352, + 2609096, + 2678722, + 1998852, + 600867 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2022-06-18", - "completed": "2023-02-13", - "initiated": "2014-03-13", - "ministryContact": "ROBEL ARCH", + "createdAt": "2017-01-22", + "completed": "2022-10-31", + "initiated": "2016-10-26", + "ministryContact": "GRANT BERT", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -32429,14 +45228,9 @@ "notationParticipants": [ { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": true }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", @@ -32445,21 +45239,21 @@ { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false } ], "siteRegistry": true }, { - "createdAt": "2020-05-01", - "completed": "2014-01-21", - "initiated": "2021-04-24", - "ministryContact": "SCHROEDER FELIX", + "createdAt": "2022-06-17", + "completed": "2016-07-16", + "initiated": "2016-04-29", + "ministryContact": "SCHILLER SCOT", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -32468,38 +45262,33 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false + "role": "SUBMITTED BY", + "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", "siteRegistry": true } ], "siteRegistry": false }, { - "createdAt": "2023-03-04", - "completed": "2018-09-19", - "initiated": "2017-07-07", - "ministryContact": "HALVORSON LUCILE", + "createdAt": "2015-01-21", + "completed": "2014-02-10", + "initiated": "2016-04-12", + "ministryContact": "GULGOWSKI ALTHEA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -32508,28 +45297,28 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2020-09-28", - "completed": "2022-03-04", - "initiated": "2019-08-24", - "ministryContact": "ALTENWERTH ZACKERY", + "createdAt": "2021-09-26", + "completed": "2014-07-25", + "initiated": "2019-07-30", + "ministryContact": "LINDGREN-LEFFLER GENE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -32538,28 +45327,33 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2019-07-15", - "completed": "2019-07-27", - "initiated": "2022-03-02", - "ministryContact": "DICKI-KOSS ALIYAH", + "createdAt": "2017-08-31", + "completed": "2021-06-05", + "initiated": "2019-12-21", + "ministryContact": "MCDERMOTT RAPHAEL", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -32567,171 +45361,207 @@ "" ], "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false } ], "participants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2015-03-22", - "startDate": "2017-05-14", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2014-12-25", + "startDate": "2014-02-03", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2014-08-10", - "startDate": "2017-11-09", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2022-03-09", + "startDate": "2015-12-19", "notes": "", "roles": [ "ORGANIZATION" ], "siteRegistry": true }, + { + "name": "IPSUM", + "endDate": "2015-05-08", + "startDate": "2016-09-06", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, { "name": "AMET, DOLOR SIT", - "endDate": "2022-08-29", - "startDate": "2018-08-18", + "endDate": "2023-01-27", + "startDate": "2019-05-25", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": false } ], - "associatedSites": [ + "suspectLandUses": [ { - "dateNoted": "2018-11-22", - "notes": "", - "parcelID": "15400", - "siteID": "19728", - "siteRegistry": false + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2022-08-09 (described on Site Profile dated 2022-08-09)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "dateNoted": "2015-03-10", - "notes": "", - "parcelID": "17864", - "siteID": "18753", - "siteRegistry": true + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2018-11-02 (described on Site Profile dated 2018-11-02)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "dateNoted": "2013-11-05", - "notes": "", - "parcelID": "17875", - "siteID": "20930", - "siteRegistry": true + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2017-05-24 (described on Site Profile dated 2017-05-24)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } - ] - }, - { - "uuid": "2ce29f94-aa4c-45b1-ba55-05d271df9172", - "siteID": 17217, - "address": "19178 Leuschke Cliff", - "latitude": 58.5221, - "longitude": -124.4472, - "lastUpdated": "2016-07-14", - "city": "North Amariborough", - "region": "Mainland/Southwest", - "victoriaFile": "26250-20/5116", - "regionalFile": "N/A", - "parcelIDs": [ - 1736561, - 7428106, - 3650633, - 970744, - 3275152 ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ + "siteDisclosures": [ { - "createdAt": "2017-01-12", - "completed": "2018-10-19", - "initiated": "2018-12-02", - "ministryContact": "BERNHARD TAMIA", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ + "siteRegistry": false, + "dateReceived": "2015-04-05", + "dateCompleted": "2021-11-06", + "dateEntered": "2016-09-07", + "dateRegistrar": "2020-01-01", + "dateLocalAuthorityReceived": "2020-05-09", + "summary": "Vero debitis aliquam sit itaque nesciunt tempora similique nemo maxime.\nQuasi a quia tempore nesciunt rerum veniam dolor.", + "informationUsed": "Nisi nihil error dolore ducimus culpa adipisci voluptate iusto rerum.\nDeleniti et unde impedit.\nQuibusdam nisi voluptatem incidunt voluptatum aliquam porro earum.\nRerum quos porro tempore dicta ea doloremque voluptatibus.\nDignissimos error perferendis facilis similique pariatur recusandae earum blanditiis exercitationem.", + "pastOrPresentOrders": "Veritatis nesciunt odit nisi consequatur quisquam facere beatae voluptatem.\nTempore sint sit porro consectetur.", + "commercialAndIndustrialPurposes": [ { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - } - ], - "siteRegistry": true - }, - { - "createdAt": "2018-05-05", - "completed": "2016-06-05", - "initiated": "2018-04-11", - "ministryContact": "OSINSKI LONDON", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false } - ], + ] + } + ], + "activityLog": [ + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "RATH ESTEL", + "timestamp": "2022-09-02" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "KESSLER ROCKY", + "timestamp": "2013-11-24" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "HERMANN DEMARIO", + "timestamp": "2017-07-15" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "JONES RUTH", + "timestamp": "2021-10-16" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "LARKIN GODFREY", + "timestamp": "2014-01-02" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "TOY DELANEY", + "timestamp": "2015-06-21" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "DAUGHERTY TIMOTHY", + "timestamp": "2017-09-07" + } + ], + "associatedSites": [ + { + "dateNoted": "2018-03-05", + "notes": "", + "parcelID": "18469", + "siteID": "18160", + "siteRegistry": false + }, + { + "dateNoted": "2020-08-03", + "notes": "", + "parcelID": "15213", + "siteID": "16740", "siteRegistry": false }, { - "createdAt": "2016-06-11", - "completed": "2016-12-26", - "initiated": "2022-02-25", - "ministryContact": "SKILES AVERY", + "dateNoted": "2019-08-31", + "notes": "", + "parcelID": "18760", + "siteID": "15998", + "siteRegistry": true + } + ] + }, + { + "uuid": "54b65ff6-ef6e-4353-afa2-04644e4463b2", + "siteID": 17534, + "address": "2487 Janis Port", + "latitude": 52.5563, + "longitude": -121.9227, + "lastUpdated": "2013-11-09", + "city": "Little Rock", + "region": " North Coast", + "victoriaFile": "26250-20/7960", + "regionalFile": "N/A", + "parcelIDs": [ + 4514395, + 5038189, + 7956325, + 2609865, + 7374121 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2018-08-18", + "completed": "2023-08-03", + "initiated": "2023-07-06", + "ministryContact": "PARISIAN HERTHA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -32742,11 +45572,6 @@ { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", "siteRegistry": true }, { @@ -32756,11 +45581,11 @@ }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true } @@ -32768,10 +45593,10 @@ "siteRegistry": false }, { - "createdAt": "2021-10-30", - "completed": "2018-11-13", - "initiated": "2019-06-12", - "ministryContact": "KOZEY MAXIMUS", + "createdAt": "2013-12-10", + "completed": "2020-06-26", + "initiated": "2014-11-12", + "ministryContact": "BOYER MELYSSA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -32781,22 +45606,7 @@ "notationParticipants": [ { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", "siteRegistry": true }, { @@ -32805,90 +45615,181 @@ "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false } ], "participants": [ { - "name": "AMET, DOLOR SIT", - "endDate": "2022-06-25", - "startDate": "2015-01-30", + "name": "IPSUM", + "endDate": "2020-01-26", + "startDate": "2017-01-21", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2019-02-23", - "startDate": "2016-04-14", + "name": "IPSUM", + "endDate": "2018-10-06", + "startDate": "2014-05-11", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], - "siteRegistry": false + "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2018-01-12", - "startDate": "2021-02-18", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2017-07-18", + "startDate": "2018-03-13", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": true + "siteRegistry": false + } + ], + "suspectLandUses": [ + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2022-06-15 (described on Site Profile dated 2022-06-15)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2018-02-18 (described on Site Profile dated 2018-02-18)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2014-09-06 (described on Site Profile dated 2014-09-06)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2018-11-16 (described on Site Profile dated 2018-11-16)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + } + ], + "siteDisclosures": [ + { + "siteRegistry": false, + "dateReceived": "2019-07-18", + "dateCompleted": "2016-05-11", + "dateEntered": "2021-06-30", + "dateRegistrar": "2014-01-10", + "dateLocalAuthorityReceived": "2015-01-27", + "summary": "Nam necessitatibus neque laborum incidunt.\nSit mollitia minima consectetur corrupti natus animi minima earum consectetur.", + "informationUsed": "Veritatis hic commodi reiciendis sequi soluta nobis natus.\nPraesentium repudiandae omnis eos voluptas qui.\nNatus nihil aliquam quos saepe architecto nam dolores sequi.", + "pastOrPresentOrders": "Fuga doloribus placeat quis explicabo quidem.\nEsse aperiam autem officiis quas amet vel quidem ratione vero.\nSint eius perferendis at consequatur.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + } + ] + } + ], + "activityLog": [ + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "MANN BERNEICE", + "timestamp": "2022-05-18" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "BALISTRERI LIANA", + "timestamp": "2023-03-03" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "TILLMAN MICAH", + "timestamp": "2020-12-29" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "LANGOSH FAYE", + "timestamp": "2018-05-31" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "JAST LEILA", + "timestamp": "2023-05-30" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "MURRAY GRAYCE", + "timestamp": "2015-01-24" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "FRANEY TIERRA", + "timestamp": "2022-08-01" } ], "associatedSites": [ { - "dateNoted": "2016-09-12", + "dateNoted": "2014-09-15", "notes": "", - "parcelID": "15401", - "siteID": "17237", + "parcelID": "15715", + "siteID": "20586", "siteRegistry": true }, { - "dateNoted": "2017-07-18", + "dateNoted": "2017-10-07", "notes": "", - "parcelID": "16460", - "siteID": "16517", + "parcelID": "17350", + "siteID": "18155", "siteRegistry": true }, { - "dateNoted": "2018-01-12", + "dateNoted": "2015-02-25", "notes": "", - "parcelID": "15315", - "siteID": "16839", - "siteRegistry": false + "parcelID": "18606", + "siteID": "17411", + "siteRegistry": true } ] }, { - "uuid": "79c1bb66-e8f5-48b0-8973-3e7178ea6d14", - "siteID": 20758, - "address": "47007 Stiedemann Port", - "latitude": 54.5119, - "longitude": -126.2661, - "lastUpdated": "2017-04-04", - "city": "Haleystad", + "uuid": "c4ef3a0f-6283-4559-bcbe-14769ad403ef", + "siteID": 18790, + "address": "42677 Murazik Crest", + "latitude": 54.1741, + "longitude": -120.4678, + "lastUpdated": "2022-12-27", + "city": "Kolemouth", "region": "Mainland/Southwest", - "victoriaFile": "26250-20/16767", + "victoriaFile": "26250-20/1211", "regionalFile": "N/A", "parcelIDs": [ - 8410247, - 4649765, - 2498748, - 4014497, - 3284732 + 8584390, + 4954145, + 9195663, + 6730375, + 4172402 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2017-09-02", - "completed": "2021-10-23", - "initiated": "2021-04-18", - "ministryContact": "GREEN FREIDA", + "createdAt": "2017-08-21", + "completed": "2022-07-29", + "initiated": "2020-08-22", + "ministryContact": "DOYLE HARRY", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -32896,20 +45797,15 @@ "" ], "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", @@ -32917,18 +45813,18 @@ "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2017-10-12", - "completed": "2021-10-04", - "initiated": "2020-05-30", - "ministryContact": "SCHAMBERGER DARRICK", + "createdAt": "2018-04-03", + "completed": "2016-02-12", + "initiated": "2022-04-16", + "ministryContact": "ERNSER CLOYD", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -32941,19 +45837,34 @@ "role": "SUBMITTED BY", "siteRegistry": true }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2023-08-01", - "completed": "2021-01-03", - "initiated": "2020-02-29", - "ministryContact": "BOEHM MAC", + "createdAt": "2016-12-05", + "completed": "2020-08-25", + "initiated": "2022-06-21", + "ministryContact": "PROSACCO TRE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -32961,6 +45872,21 @@ "" ], "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", @@ -32969,69 +45895,16 @@ { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false } ], - "siteRegistry": true - } - ], - "participants": [ - { - "name": "IPSUM", - "endDate": "2014-09-03", - "startDate": "2021-12-01", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2014-03-04", - "startDate": "2021-04-18", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": true - } - ], - "associatedSites": [ - { - "dateNoted": "2015-03-20", - "notes": "", - "parcelID": "19902", - "siteID": "19905", "siteRegistry": false - } - ] - }, - { - "uuid": "3f3c34c7-a04b-437d-bc5f-c0114e82cb7c", - "siteID": 19197, - "address": "9148 Rice Parks", - "latitude": 56.6232, - "longitude": -135.5355, - "lastUpdated": "2015-02-18", - "city": "Lake Tiffany", - "region": "Kootenay", - "victoriaFile": "26250-20/12885", - "regionalFile": "N/A", - "parcelIDs": [ - 2214995, - 1562480, - 3376206, - 4407990, - 227503 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ + }, { - "createdAt": "2022-08-03", - "completed": "2020-07-22", - "initiated": "2016-01-19", - "ministryContact": "BECKER KAITLYN", + "createdAt": "2021-06-26", + "completed": "2018-05-24", + "initiated": "2014-03-13", + "ministryContact": "KIRLIN MATHIAS", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -33042,16 +45915,11 @@ { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", "siteRegistry": true }, { @@ -33060,13 +45928,13 @@ "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2020-08-24", - "completed": "2017-07-05", - "initiated": "2018-09-17", - "ministryContact": "METZ MAXIMILLIA", + "createdAt": "2023-02-27", + "completed": "2017-08-15", + "initiated": "2021-03-16", + "ministryContact": "FADEL FELTON", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -33075,27 +45943,27 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false } @@ -33105,19 +45973,19 @@ ], "participants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2015-03-16", - "startDate": "2014-02-15", + "name": "IPSUM", + "endDate": "2023-02-11", + "startDate": "2017-09-24", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true }, { - "name": "AMET, DOLOR SIT", - "endDate": "2016-04-22", - "startDate": "2016-05-27", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2014-06-25", + "startDate": "2020-11-24", "notes": "", "roles": [ "EMPLOYEE" @@ -33126,175 +45994,181 @@ }, { "name": "SHELL CANADA PRODUCTS", - "endDate": "2019-05-16", - "startDate": "2020-10-25", + "endDate": "2022-10-16", + "startDate": "2020-08-26", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": false + "siteRegistry": true + }, + { + "name": "AMET, DOLOR SIT", + "endDate": "2019-12-26", + "startDate": "2016-12-25", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2017-01-27", + "startDate": "2015-09-05", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true } ], - "associatedSites": [ + "suspectLandUses": [ { - "dateNoted": "2015-05-25", - "notes": "", - "parcelID": "16899", - "siteID": "15784", - "siteRegistry": false + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2020-02-11 (described on Site Profile dated 2020-02-11)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2017-09-24 (described on Site Profile dated 2017-09-24)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } - ] - }, - { - "uuid": "da55521e-47e4-4812-afc2-3f1008c0462f", - "siteID": 15949, - "address": "249 Jazmin Ramp", - "latitude": 55.5452, - "longitude": -132.5855, - "lastUpdated": "2021-07-25", - "city": "Honolulu", - "region": "Mainland/Southwest", - "victoriaFile": "26250-20/8518", - "regionalFile": "N/A", - "parcelIDs": [ - 9550516, - 3750980, - 9628768, - 4422974, - 6521039 ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ + "siteDisclosures": [ { - "createdAt": "2014-04-05", - "completed": "2020-03-14", - "initiated": "2015-12-11", - "ministryContact": "WALTER MISTY", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, + "siteRegistry": true, + "dateReceived": "2019-02-14", + "dateCompleted": "2013-12-09", + "dateEntered": "2018-03-15", + "dateRegistrar": "2023-03-23", + "dateLocalAuthorityReceived": "2016-01-05", + "summary": "Mollitia placeat ea quod consequuntur aperiam ducimus velit necessitatibus.\nNam cumque similique minima earum est harum necessitatibus molestias.\nOccaecati quibusdam laborum.", + "informationUsed": "Impedit dignissimos delectus dolorum fugit earum veritatis.\nSaepe similique facilis sint accusantium.\nOdit harum eos necessitatibus ut esse.\nMolestiae esse ipsam vel deleniti.\nDebitis eos expedita vitae sapiente molestiae modi sit.", + "pastOrPresentOrders": "Necessitatibus laudantium error.", + "commercialAndIndustrialPurposes": [ { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false } - ], - "siteRegistry": true + ] }, { - "createdAt": "2019-05-26", - "completed": "2016-01-17", - "initiated": "2021-11-29", - "ministryContact": "TOY CLARK", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, + "siteRegistry": true, + "dateReceived": "2022-03-21", + "dateCompleted": "2019-06-20", + "dateEntered": "2019-11-28", + "dateRegistrar": "2017-08-30", + "dateLocalAuthorityReceived": "2013-12-23", + "summary": "Necessitatibus fugit vel esse tenetur et cupiditate magnam aliquam.\nDolorem rerum praesentium.", + "informationUsed": "Culpa error a officia consectetur incidunt possimus consectetur ducimus.\nHic consequuntur quas nam voluptas inventore.\nAccusamus eaque corporis omnis vero.\nEius temporibus iste sint incidunt voluptatibus.", + "pastOrPresentOrders": "Quibusdam excepturi corrupti.\nDolor dolorum ut sit.\nDolorem libero iusto repellendus quisquam corrupti minima.", + "commercialAndIndustrialPurposes": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true } - ], - "siteRegistry": false + ] } ], - "participants": [ + "activityLog": [ { - "name": "AMET, DOLOR SIT", - "endDate": "2020-09-30", - "startDate": "2018-01-10", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": false + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "WALSH JOVAN", + "timestamp": "2017-01-27" }, { - "name": "IPSUM", - "endDate": "2021-02-25", - "startDate": "2015-01-19", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": true + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "FLATLEY DELPHA", + "timestamp": "2014-12-16" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "GOLDNER SHANEL", + "timestamp": "2021-09-08" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "HAND EZEKIEL", + "timestamp": "2017-01-13" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "SCHUSTER PINK", + "timestamp": "2023-03-18" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "CRUICKSHANK SIERRA", + "timestamp": "2014-11-24" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "BAYER JAQUELIN", + "timestamp": "2019-01-01" } ], "associatedSites": [ { - "dateNoted": "2017-05-26", + "dateNoted": "2014-06-02", "notes": "", - "parcelID": "18542", - "siteID": "16673", + "parcelID": "19908", + "siteID": "17477", "siteRegistry": true }, { - "dateNoted": "2016-03-26", + "dateNoted": "2019-08-04", "notes": "", - "parcelID": "17374", - "siteID": "20826", - "siteRegistry": false + "parcelID": "17306", + "siteID": "19400", + "siteRegistry": true } ] }, { - "uuid": "43663565-7f96-4fbe-a269-585805e18e8a", - "siteID": 19778, - "address": "461 Hirthe Street", - "latitude": 51.5251, - "longitude": -129.8461, - "lastUpdated": "2015-03-13", - "city": "Brentfort", - "region": "Thompson-Okanagan", - "victoriaFile": "26250-20/17283", + "uuid": "fb1edee8-e37b-44c9-ba25-1e835e13773f", + "siteID": 19077, + "address": "62710 Kautzer Shore", + "latitude": 57.7369, + "longitude": -128.5048, + "lastUpdated": "2021-09-26", + "city": "Fort Kattie", + "region": "Kootenay", + "victoriaFile": "26250-20/18536", "regionalFile": "N/A", "parcelIDs": [ - 7930033, - 4488934, - 7908136, - 4488173, - 3619076 + 2114614, + 923260, + 7163232, + 1675571, + 6683638 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2017-07-22", - "completed": "2022-07-03", - "initiated": "2018-08-19", - "ministryContact": "JAKUBOWSKI MICAH", + "createdAt": "2015-07-04", + "completed": "2014-08-25", + "initiated": "2021-07-02", + "ministryContact": "ROSENBAUM MONSERRAT", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -33303,23 +46177,28 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2017-04-17", - "completed": "2019-02-21", - "initiated": "2019-08-21", - "ministryContact": "WELCH KRISTIN", + "createdAt": "2020-06-09", + "completed": "2021-04-04", + "initiated": "2023-03-09", + "ministryContact": "DOUGLAS HEBER", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -33328,34 +46207,49 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true - }, + "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "createdAt": "2017-07-10", + "completed": "2018-04-10", + "initiated": "2020-07-13", + "ministryContact": "DACH CLEVELAND", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ { "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false + "role": "SUBMITTED BY", + "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false } ], "participants": [ { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2016-09-18", - "startDate": "2015-07-04", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2021-12-02", + "startDate": "2017-11-10", "notes": "", "roles": [ "ORGANIZATION" @@ -33363,68 +46257,207 @@ "siteRegistry": true }, { - "name": "IPSUM", - "endDate": "2020-01-20", - "startDate": "2022-10-02", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2015-05-17", + "startDate": "2015-11-07", "notes": "", "roles": [ "ORGANIZATION" ], "siteRegistry": true + } + ], + "suspectLandUses": [ + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2022-11-13 (described on Site Profile dated 2022-11-13)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "name": "IPSUM", - "endDate": "2021-09-23", - "startDate": "2022-02-24", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": true + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2017-10-29 (described on Site Profile dated 2017-10-29)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2017-10-09 (described on Site Profile dated 2017-10-09)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2018-09-23 (described on Site Profile dated 2018-09-23)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + } + ], + "siteDisclosures": [ + { + "siteRegistry": true, + "dateReceived": "2019-12-15", + "dateCompleted": "2021-06-10", + "dateEntered": "2017-05-15", + "dateRegistrar": "2014-02-15", + "dateLocalAuthorityReceived": "2017-01-08", + "summary": "Totam ex sequi minima eius minima.", + "informationUsed": "Quas corrupti fuga aperiam eveniet officiis.\nSuscipit itaque eum quod officia dolorem nam.\nAutem aliquam suscipit porro iure.", + "pastOrPresentOrders": "A totam iusto modi facilis.\nSimilique ratione perspiciatis iure.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + } + ] + }, + { + "siteRegistry": false, + "dateReceived": "2015-03-12", + "dateCompleted": "2015-08-17", + "dateEntered": "2019-12-11", + "dateRegistrar": "2022-06-04", + "dateLocalAuthorityReceived": "2017-07-26", + "summary": "Autem sequi similique ipsam repudiandae corporis non.\nQuis dolor eius ratione adipisci atque ipsum optio minus harum.", + "informationUsed": "Nihil id libero inventore repellat.\nNatus error officia quos.\nVero natus laboriosam.", + "pastOrPresentOrders": "Neque perferendis excepturi eveniet earum dolore.\nConsectetur veritatis autem.\nDolorum hic ut error expedita architecto.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + } + ] + } + ], + "activityLog": [ + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "KIEHN CICERO", + "timestamp": "2018-01-17" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "BARTELL AIDEN", + "timestamp": "2023-09-04" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "MCCULLOUGH MADISYN", + "timestamp": "2016-12-06" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "BOYLE KAYLAH", + "timestamp": "2023-09-08" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "O'KON-PADBERG FREIDA", + "timestamp": "2016-07-27" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "LESCH KATHLEEN", + "timestamp": "2017-04-22" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "KUTCH KEVEN", + "timestamp": "2019-02-08" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "PURDY-SIMONIS JONATHAN", + "timestamp": "2016-01-20" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "KASSULKE HALEIGH", + "timestamp": "2021-10-08" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "MANN TERRY", + "timestamp": "2020-10-06" } ], "associatedSites": [ { - "dateNoted": "2020-09-05", + "dateNoted": "2023-09-08", "notes": "", - "parcelID": "20383", - "siteID": "19837", + "parcelID": "18040", + "siteID": "18685", "siteRegistry": true }, { - "dateNoted": "2017-07-23", + "dateNoted": "2014-11-24", "notes": "", - "parcelID": "20546", - "siteID": "19773", + "parcelID": "20166", + "siteID": "18849", "siteRegistry": true + }, + { + "dateNoted": "2014-07-01", + "notes": "", + "parcelID": "15871", + "siteID": "18231", + "siteRegistry": false } ] }, { - "uuid": "24a2c48e-0de6-4278-b4db-61970286789d", - "siteID": 19087, - "address": "6121 Gregory Shore", - "latitude": 58.2855, - "longitude": -123.2616, - "lastUpdated": "2023-03-05", - "city": "New Graciehaven", + "uuid": "85649e48-87b4-4b30-be68-dea1d4467248", + "siteID": 19246, + "address": "701 Greenfelder Manor", + "latitude": 57.0449, + "longitude": -133.5822, + "lastUpdated": "2014-03-22", + "city": "South Courtney", "region": "Kootenay", - "victoriaFile": "26250-20/17100", + "victoriaFile": "26250-20/16567", "regionalFile": "N/A", "parcelIDs": [ - 3972219, - 6986542, - 6467663, - 652071, - 4476478 + 730593, + 9903412, + 8724404, + 3301848, + 4719789 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2015-06-30", - "completed": "2015-02-25", - "initiated": "2018-01-05", - "ministryContact": "TERRY KRISTIAN", + "createdAt": "2023-04-14", + "completed": "2016-10-12", + "initiated": "2021-04-28", + "ministryContact": "SPINKA DEXTER", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -33433,15 +46466,10 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", @@ -33450,16 +46478,16 @@ { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2018-01-06", - "completed": "2023-03-03", - "initiated": "2017-07-16", - "ministryContact": "HAND ADAN", + "createdAt": "2023-04-09", + "completed": "2018-01-06", + "initiated": "2019-01-10", + "ministryContact": "CONNELLY KELLEY", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -33472,19 +46500,9 @@ "role": "SUBMITTED BY", "siteRegistry": true }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, { "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true }, { @@ -33496,10 +46514,10 @@ "siteRegistry": true }, { - "createdAt": "2018-04-02", - "completed": "2018-06-02", - "initiated": "2020-05-26", - "ministryContact": "LANGOSH HENDERSON", + "createdAt": "2016-03-24", + "completed": "2016-01-04", + "initiated": "2013-10-29", + "ministryContact": "HAMMES FREDERIK", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -33508,7 +46526,7 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true }, @@ -33520,134 +46538,208 @@ { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true - } - ], - "siteRegistry": false - }, - { - "createdAt": "2015-04-24", - "completed": "2022-12-24", - "initiated": "2015-06-21", - "ministryContact": "BLANDA LAVERN", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ + "siteRegistry": false + }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false } ], "siteRegistry": false + } + ], + "participants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2020-11-27", + "startDate": "2016-01-13", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true }, { - "createdAt": "2020-10-15", - "completed": "2016-11-29", - "initiated": "2023-04-28", - "ministryContact": "BARTON DESTINEE", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" + "name": "AMET, DOLOR SIT", + "endDate": "2018-02-24", + "startDate": "2017-05-05", + "notes": "", + "roles": [ + "EMPLOYEE" ], - "notationParticipants": [ + "siteRegistry": false + } + ], + "suspectLandUses": [ + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2022-02-24 (described on Site Profile dated 2022-02-24)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2022-09-07 (described on Site Profile dated 2022-09-07)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2015-08-06 (described on Site Profile dated 2015-08-06)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2020-07-06 (described on Site Profile dated 2020-07-06)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + } + ], + "siteDisclosures": [ + { + "siteRegistry": false, + "dateReceived": "2016-04-16", + "dateCompleted": "2022-08-09", + "dateEntered": "2021-07-31", + "dateRegistrar": "2016-03-06", + "dateLocalAuthorityReceived": "2017-09-04", + "summary": "Ad dolorum incidunt doloribus quam soluta sequi.\nMinus quos fugit accusamus in quia non fugit distinctio quis.", + "informationUsed": "Aspernatur quo voluptate ea.\nConsectetur et autem quo aliquid eveniet aperiam.\nVoluptatem perspiciatis repellat ea nihil magni perspiciatis dolorum eum.\nDolor suscipit inventore.\nSaepe ipsa illo tempore odio numquam.", + "pastOrPresentOrders": "Magnam consectetur rerum autem culpa.\nTotam illum dolorem vel.", + "commercialAndIndustrialPurposes": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + } + ] + }, + { + "siteRegistry": false, + "dateReceived": "2023-07-04", + "dateCompleted": "2021-04-10", + "dateEntered": "2020-02-19", + "dateRegistrar": "2023-09-27", + "dateLocalAuthorityReceived": "2020-01-30", + "summary": "Voluptate voluptate mollitia assumenda vel ut mollitia.\nDoloribus temporibus dolorem aliquam ducimus ad dolore.", + "informationUsed": "Nam pariatur consectetur vero distinctio.\nIste ut voluptas consectetur.\nMollitia odio molestiae accusamus veniam ipsam incidunt quod excepturi.\nInventore aliquam nisi possimus soluta quaerat inventore veniam ipsam.\nProvident sit non atque labore enim consequuntur.", + "pastOrPresentOrders": "Eveniet vel esse possimus.\nVoluptate ducimus amet quod voluptates nihil.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true } - ], - "siteRegistry": false + ] } ], - "participants": [ + "activityLog": [ { - "name": "AMET, DOLOR SIT", - "endDate": "2019-07-01", - "startDate": "2017-03-10", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": true + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "GERLACH LAVERN", + "timestamp": "2018-10-20" }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2022-09-26", - "startDate": "2022-05-12", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": true + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "DONNELLY ADRAIN", + "timestamp": "2014-12-21" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "EFFERTZ DALE", + "timestamp": "2014-08-12" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "QUITZON BETTE", + "timestamp": "2018-02-12" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "JOHNSTON MATEO", + "timestamp": "2020-11-17" } ], "associatedSites": [ { - "dateNoted": "2013-10-07", + "dateNoted": "2017-08-20", + "notes": "", + "parcelID": "19909", + "siteID": "15858", + "siteRegistry": false + }, + { + "dateNoted": "2016-06-14", "notes": "", - "parcelID": "18748", - "siteID": "20023", + "parcelID": "17714", + "siteID": "15574", "siteRegistry": true } ] }, { - "uuid": "009b51c6-1af7-4ea0-aec4-00cd8abfed61", - "siteID": 19966, - "address": "2145 Lyla Lodge", - "latitude": 58.0554, - "longitude": -129.078, - "lastUpdated": "2017-03-01", - "city": "West Missouribury", - "region": " North Coast", - "victoriaFile": "26250-20/10828", + "uuid": "473cd036-67ae-4448-b769-5a7214c07d2d", + "siteID": 17411, + "address": "189 Jacklyn Glen", + "latitude": 48.6952, + "longitude": -119.825, + "lastUpdated": "2021-05-02", + "city": "Lowell", + "region": "Thompson-Okanagan", + "victoriaFile": "26250-20/17961", "regionalFile": "N/A", "parcelIDs": [ - 147090, - 9802183, - 8835217, - 2079290, - 1409614 + 8443793, + 9712548, + 234959, + 8671457, + 2143784 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2015-05-19", - "completed": "2016-03-17", - "initiated": "2015-04-13", - "ministryContact": "TROMP EMMET", + "createdAt": "2016-04-27", + "completed": "2014-06-04", + "initiated": "2018-03-14", + "ministryContact": "WELCH AVA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -33656,7 +46748,7 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false }, @@ -33664,20 +46756,15 @@ "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false } ], "siteRegistry": false }, { - "createdAt": "2021-03-04", - "completed": "2022-07-18", - "initiated": "2023-06-22", - "ministryContact": "ROBEL WALTON", + "createdAt": "2019-06-17", + "completed": "2020-03-29", + "initiated": "2022-04-12", + "ministryContact": "EMMERICH KRAIG", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -33685,11 +46772,6 @@ "" ], "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", @@ -33697,27 +46779,22 @@ }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2017-02-01", - "completed": "2016-12-15", - "initiated": "2019-08-29", - "ministryContact": "SCHOWALTER JETT", + "createdAt": "2021-06-16", + "completed": "2013-12-24", + "initiated": "2016-11-14", + "ministryContact": "KEELING EZEQUIEL", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -33726,33 +46803,33 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2020-05-01", - "completed": "2014-02-02", - "initiated": "2023-04-27", - "ministryContact": "CASSIN REANNA", + "createdAt": "2023-03-15", + "completed": "2021-02-11", + "initiated": "2023-09-15", + "ministryContact": "BERGSTROM EMILIA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -33762,11 +46839,11 @@ "notationParticipants": [ { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false }, @@ -33776,24 +46853,59 @@ "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "createdAt": "2014-01-12", + "completed": "2019-07-09", + "initiated": "2014-02-24", + "ministryContact": "KERLUKE ELEANORA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false } ], "participants": [ { - "name": "AMET, DOLOR SIT", - "endDate": "2015-06-11", - "startDate": "2013-10-31", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2019-03-14", + "startDate": "2019-12-20", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2017-10-27", + "startDate": "2017-10-17", "notes": "", "roles": [ "EMPLOYEE" @@ -33801,198 +46913,189 @@ "siteRegistry": false }, { - "name": "AMET, DOLOR SIT", - "endDate": "2020-01-08", - "startDate": "2023-09-09", + "name": "IPSUM", + "endDate": "2022-12-19", + "startDate": "2016-05-16", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", - "endDate": "2019-12-03", - "startDate": "2015-02-01", + "endDate": "2021-08-24", + "startDate": "2020-12-23", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": true } ], - "associatedSites": [ + "suspectLandUses": [ { - "dateNoted": "2020-11-29", - "notes": "", - "parcelID": "18663", - "siteID": "17449", - "siteRegistry": true + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2014-12-28 (described on Site Profile dated 2014-12-28)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "dateNoted": "2015-03-10", - "notes": "", - "parcelID": "19800", - "siteID": "17012", - "siteRegistry": false + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2017-03-11 (described on Site Profile dated 2017-03-11)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } - ] - }, - { - "uuid": "b543cd0b-b702-478f-8260-66feb22c8410", - "siteID": 20692, - "address": "27902 Bradtke Lock", - "latitude": 51.4351, - "longitude": -137.3115, - "lastUpdated": "2018-04-12", - "city": "East Mateo", - "region": " North Coast", - "victoriaFile": "26250-20/8534", - "regionalFile": "N/A", - "parcelIDs": [ - 8943715, - 5325409, - 8443307, - 9904092, - 9094285 ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ + "siteDisclosures": [ { - "createdAt": "2023-05-02", - "completed": "2018-05-26", - "initiated": "2014-07-10", - "ministryContact": "RAYNOR-BARROWS JUDGE", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ + "siteRegistry": false, + "dateReceived": "2016-05-11", + "dateCompleted": "2015-02-20", + "dateEntered": "2014-06-15", + "dateRegistrar": "2017-09-04", + "dateLocalAuthorityReceived": "2022-12-17", + "summary": "Repellat voluptatum occaecati.", + "informationUsed": "Soluta fugit explicabo id delectus fugit soluta.\nEt quos fugiat quisquam quia.\nVeritatis neque suscipit accusantium.\nDignissimos eius accusamus vel quia numquam numquam culpa sequi.\nIpsum mollitia fuga totam tempora possimus odio velit dolorum.", + "pastOrPresentOrders": "Iusto nobis minus quibusdam modi saepe similique voluptates delectus enim.\nMolestiae quia vel.\nOdio deleniti at.", + "commercialAndIndustrialPurposes": [ { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false } - ], - "siteRegistry": false + ] }, { - "createdAt": "2017-06-13", - "completed": "2016-05-22", - "initiated": "2019-10-29", - "ministryContact": "GORCZANY ESTELL", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ + "siteRegistry": true, + "dateReceived": "2015-11-09", + "dateCompleted": "2018-04-27", + "dateEntered": "2019-03-25", + "dateRegistrar": "2018-06-12", + "dateLocalAuthorityReceived": "2013-11-17", + "summary": "Harum in ipsum laborum assumenda repellat architecto provident laboriosam dolor.\nError fuga unde quae iusto harum.\nLaborum assumenda earum.", + "informationUsed": "Quis ipsum ipsum rerum et asperiores dignissimos tempora.\nId reiciendis eaque expedita odio illum atque esse.\nAd eaque aperiam ea ipsa.\nVoluptates fugiat nobis voluptatem.\nQuas recusandae expedita dicta doloribus sed.", + "pastOrPresentOrders": "Similique vero inventore unde dolores fugit inventore explicabo ut cum.", + "commercialAndIndustrialPurposes": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false } - ], - "siteRegistry": true + ] } ], - "participants": [ + "activityLog": [ { - "name": "AMET, DOLOR SIT", - "endDate": "2021-01-17", - "startDate": "2022-09-21", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": true + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "NIENOW GAYLE", + "timestamp": "2022-10-09" }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2023-02-27", - "startDate": "2022-12-07", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": false + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "CORKERY ENOS", + "timestamp": "2015-06-03" }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2022-08-24", - "startDate": "2022-04-25", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": false + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "O'KON ALYCE", + "timestamp": "2021-08-31" }, { - "name": "AMET, DOLOR SIT", - "endDate": "2020-10-20", - "startDate": "2014-06-15", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": false + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "DOOLEY PINKIE", + "timestamp": "2017-06-29" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "PARKER MELANY", + "timestamp": "2016-09-22" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "BAUCH MARTA", + "timestamp": "2014-09-19" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "BROWN HORACE", + "timestamp": "2022-02-15" } ], "associatedSites": [ { - "dateNoted": "2015-03-07", + "dateNoted": "2018-12-27", "notes": "", - "parcelID": "15291", - "siteID": "17783", + "parcelID": "16489", + "siteID": "16893", "siteRegistry": false }, { - "dateNoted": "2015-04-23", + "dateNoted": "2018-04-20", "notes": "", - "parcelID": "16602", - "siteID": "18969", + "parcelID": "17401", + "siteID": "17568", "siteRegistry": false + }, + { + "dateNoted": "2015-03-03", + "notes": "", + "parcelID": "18513", + "siteID": "19960", + "siteRegistry": true } ] }, { - "uuid": "fb033389-79da-4b27-8f12-f5ce1855654d", - "siteID": 16810, - "address": "437 Funk Heights", - "latitude": 48.6744, - "longitude": -120.933, - "lastUpdated": "2015-12-09", - "city": "Charlotteview", - "region": " North Coast", - "victoriaFile": "26250-20/17408", + "uuid": "b80d8513-6ce4-412b-8a14-b9f1833e851f", + "siteID": 19306, + "address": "3899 Norberto Rapid", + "latitude": 55.3893, + "longitude": -134.7675, + "lastUpdated": "2014-04-24", + "city": "North Benjamin", + "region": "Cariboo", + "victoriaFile": "26250-20/12589", "regionalFile": "N/A", "parcelIDs": [ - 3638395, - 4488246, - 4791223, - 5857517, - 6844788 + 7777163, + 9578009, + 7234819, + 1304533, + 927944 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2020-07-08", - "completed": "2018-06-12", - "initiated": "2017-07-29", - "ministryContact": "KIEHN CLOVIS", + "createdAt": "2023-08-22", + "completed": "2016-08-01", + "initiated": "2019-09-14", + "ministryContact": "LEGROS ZACKARY", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -34001,14 +47104,19 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", @@ -34016,13 +47124,13 @@ "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2015-09-16", - "completed": "2019-01-09", - "initiated": "2019-05-23", - "ministryContact": "WINTHEISER RAMON", + "createdAt": "2023-05-28", + "completed": "2019-09-27", + "initiated": "2014-05-27", + "ministryContact": "CRIST JAVONTE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -34031,53 +47139,33 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": true }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - } - ], - "siteRegistry": true - }, - { - "createdAt": "2020-12-15", - "completed": "2019-04-30", - "initiated": "2016-12-08", - "ministryContact": "JASKOLSKI KARI", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2015-06-16", - "completed": "2015-12-27", - "initiated": "2018-03-14", - "ministryContact": "RENNER ELI", + "createdAt": "2022-06-23", + "completed": "2022-05-27", + "initiated": "2015-07-26", + "ministryContact": "GERLACH IVA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -34088,7 +47176,7 @@ { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", @@ -34099,10 +47187,10 @@ "siteRegistry": false }, { - "createdAt": "2021-06-01", - "completed": "2020-06-25", - "initiated": "2017-05-31", - "ministryContact": "BARTOLETTI VERONICA", + "createdAt": "2021-02-08", + "completed": "2018-09-10", + "initiated": "2017-08-25", + "ministryContact": "HOWELL ELEANORA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -34112,13 +47200,18 @@ "notationParticipants": [ { "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false } ], "siteRegistry": false @@ -34126,88 +47219,205 @@ ], "participants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2023-08-18", - "startDate": "2018-11-19", + "name": "AMET, DOLOR SIT", + "endDate": "2023-01-23", + "startDate": "2017-02-15", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2022-05-14", - "startDate": "2014-11-14", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2014-01-04", + "startDate": "2014-10-07", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true + } + ], + "suspectLandUses": [ + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2020-11-17 (described on Site Profile dated 2020-11-17)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "name": "AMET, DOLOR SIT", - "endDate": "2023-07-17", - "startDate": "2014-10-06", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": false + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2018-01-29 (described on Site Profile dated 2018-01-29)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2019-11-09", - "startDate": "2022-12-13", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": true + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2021-10-22 (described on Site Profile dated 2021-10-22)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + } + ], + "siteDisclosures": [ + { + "siteRegistry": false, + "dateReceived": "2015-07-07", + "dateCompleted": "2014-03-19", + "dateEntered": "2014-10-26", + "dateRegistrar": "2016-04-29", + "dateLocalAuthorityReceived": "2014-03-27", + "summary": "Perferendis asperiores qui minima impedit ullam dolor.\nQuibusdam laborum deserunt molestiae.\nMinima debitis nostrum autem neque ipsum.", + "informationUsed": "Et nostrum minima possimus.\nVeritatis reprehenderit mollitia deleniti modi commodi cumque eveniet et veritatis.\nDolorem a odit quidem.\nQuos voluptatem illo rerum perspiciatis nisi cumque minus.\nOmnis officiis mollitia possimus.", + "pastOrPresentOrders": "Quaerat expedita dolore debitis dicta quibusdam.\nAccusamus suscipit officiis sit totam vero.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + } + ] + }, + { + "siteRegistry": true, + "dateReceived": "2021-05-03", + "dateCompleted": "2016-05-20", + "dateEntered": "2017-09-12", + "dateRegistrar": "2014-02-05", + "dateLocalAuthorityReceived": "2021-06-02", + "summary": "Libero veniam numquam cupiditate error blanditiis.", + "informationUsed": "Aliquam officiis sunt natus et reprehenderit animi fuga.\nFacilis incidunt maxime.\nAnimi architecto praesentium odit amet unde saepe eum unde.\nEum hic nulla excepturi neque itaque labore eos iste quidem.\nQuas repellat amet ipsam velit quidem eaque.", + "pastOrPresentOrders": "Tempore deserunt beatae saepe numquam facilis consequuntur.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + } + ] + } + ], + "activityLog": [ + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "MULLER-CARTWRIGHT MATTEO", + "timestamp": "2023-01-08" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "KSHLERIN LUCIO", + "timestamp": "2023-06-27" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "KESSLER ISOBEL", + "timestamp": "2015-02-18" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "SPINKA DOCK", + "timestamp": "2017-12-10" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "CREMIN RUPERT", + "timestamp": "2017-07-03" } ], "associatedSites": [ { - "dateNoted": "2023-06-15", + "dateNoted": "2022-10-06", "notes": "", - "parcelID": "18820", - "siteID": "16916", - "siteRegistry": true + "parcelID": "19941", + "siteID": "16632", + "siteRegistry": false }, { - "dateNoted": "2013-10-06", + "dateNoted": "2016-06-16", "notes": "", - "parcelID": "17402", - "siteID": "20178", + "parcelID": "18056", + "siteID": "20891", "siteRegistry": false } ] }, { - "uuid": "596b6e4b-c60d-423f-955f-6f684f4ec440", - "siteID": 19536, - "address": "3105 Shirley Glen", - "latitude": 53.9436, - "longitude": -127.7155, - "lastUpdated": "2018-11-01", - "city": "North Tyreekport", - "region": "Mainland/Southwest", - "victoriaFile": "26250-20/18906", + "uuid": "a63852db-8982-46f2-86b3-438dcff96ab5", + "siteID": 17741, + "address": "581 Lubowitz Well", + "latitude": 56.2504, + "longitude": -135.7647, + "lastUpdated": "2018-12-16", + "city": "Lindview", + "region": "Thompson-Okanagan", + "victoriaFile": "26250-20/19555", "regionalFile": "N/A", "parcelIDs": [ - 6763866, - 7027995, - 4998769, - 6707992, - 4027299 + 4831648, + 4793808, + 8102227, + 7550784, + 8880156 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2022-10-25", - "completed": "2014-05-05", - "initiated": "2015-02-27", - "ministryContact": "BERNHARD JACKELINE", + "createdAt": "2016-10-10", + "completed": "2015-05-02", + "initiated": "2018-12-13", + "ministryContact": "REINGER MAUD", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "createdAt": "2021-02-04", + "completed": "2017-02-09", + "initiated": "2014-07-02", + "ministryContact": "GORCZANY NORBERTO", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -34215,6 +47425,11 @@ "" ], "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", @@ -34226,18 +47441,18 @@ "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2019-04-27", - "completed": "2022-05-28", - "initiated": "2014-08-27", - "ministryContact": "ANDERSON BETHANY", + "createdAt": "2015-07-29", + "completed": "2017-11-10", + "initiated": "2015-04-27", + "ministryContact": "ROBEL CAROLINE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -34245,24 +47460,39 @@ "" ], "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": true }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2019-09-18", - "completed": "2023-08-12", - "initiated": "2018-05-06", - "ministryContact": "KESSLER MIREYA", + "createdAt": "2018-10-19", + "completed": "2019-12-04", + "initiated": "2022-09-30", + "ministryContact": "MACEJKOVIC GUADALUPE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -34277,16 +47507,16 @@ }, { "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true + "role": "SUBMITTED BY", + "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false } @@ -34294,10 +47524,10 @@ "siteRegistry": true }, { - "createdAt": "2020-07-07", - "completed": "2015-07-22", - "initiated": "2019-11-28", - "ministryContact": "LUEILWITZ ZORA", + "createdAt": "2016-07-26", + "completed": "2021-02-15", + "initiated": "2015-10-07", + "ministryContact": "GISLASON MYRNA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -34305,6 +47535,16 @@ "" ], "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", @@ -34312,28 +47552,33 @@ }, { "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true } ], "participants": [ { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2020-02-27", - "startDate": "2021-12-27", + "name": "AMET, DOLOR SIT", + "endDate": "2018-04-11", + "startDate": "2021-07-19", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], - "siteRegistry": false + "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", - "endDate": "2022-07-29", - "startDate": "2017-08-11", + "endDate": "2014-04-01", + "startDate": "2017-08-02", "notes": "", "roles": [ "EMPLOYEE" @@ -34341,29 +47586,29 @@ "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2018-10-16", - "startDate": "2022-11-15", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2022-01-10", + "startDate": "2015-07-14", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2016-12-12", - "startDate": "2019-01-16", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2014-10-20", + "startDate": "2016-04-27", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true }, { - "name": "IPSUM", - "endDate": "2017-10-15", - "startDate": "2018-02-17", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2015-03-20", + "startDate": "2016-04-22", "notes": "", "roles": [ "EMPLOYEE" @@ -34371,181 +47616,135 @@ "siteRegistry": true } ], - "associatedSites": [ + "suspectLandUses": [ { - "dateNoted": "2021-02-21", - "notes": "", - "parcelID": "17939", - "siteID": "19039", - "siteRegistry": false + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2018-04-21 (described on Site Profile dated 2018-04-21)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "dateNoted": "2017-11-15", - "notes": "", - "parcelID": "15986", - "siteID": "17454", - "siteRegistry": false + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2015-12-31 (described on Site Profile dated 2015-12-31)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } - ] - }, - { - "uuid": "54b07e90-377e-41ac-ae99-816fd1c76d07", - "siteID": 15667, - "address": "591 Dibbert Pines", - "latitude": 54.7446, - "longitude": -119.7465, - "lastUpdated": "2017-04-28", - "city": "East Garnet", - "region": "Thompson-Okanagan", - "victoriaFile": "26250-20/12536", - "regionalFile": "N/A", - "parcelIDs": [ - 4248714, - 5677158, - 2900502, - 9232544, - 1628173 ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2017-04-22", - "completed": "2017-06-22", - "initiated": "2018-12-22", - "ministryContact": "STEUBER KRISTINA", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - } - ], - "siteRegistry": true - }, + "siteDisclosures": [ { - "createdAt": "2019-07-15", - "completed": "2021-10-09", - "initiated": "2018-06-08", - "ministryContact": "HAHN PAT", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, + "siteRegistry": false, + "dateReceived": "2014-04-08", + "dateCompleted": "2015-02-08", + "dateEntered": "2019-12-21", + "dateRegistrar": "2022-06-19", + "dateLocalAuthorityReceived": "2017-10-31", + "summary": "Placeat magni ab.", + "informationUsed": "Cupiditate illo libero perferendis ducimus ad nihil.\nPerspiciatis accusantium eaque facere dolores.\nQuod quia laudantium iste laborum provident repellat laudantium vitae molestias.\nTempore perferendis commodi.\nMollitia esse inventore.", + "pastOrPresentOrders": "Voluptas commodi suscipit laudantium quia voluptate.", + "commercialAndIndustrialPurposes": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false } - ], - "siteRegistry": false + ] } ], - "participants": [ + "activityLog": [ { - "name": "AMET, DOLOR SIT", - "endDate": "2020-07-05", - "startDate": "2018-07-04", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": false + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "BINS CORRINE", + "timestamp": "2020-07-19" }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2015-01-14", - "startDate": "2017-08-09", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": true + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "THIEL JAYLIN", + "timestamp": "2022-07-30" }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2023-05-22", - "startDate": "2020-04-28", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": true + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "HICKLE DEJA", + "timestamp": "2023-02-04" }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2018-08-23", - "startDate": "2023-08-07", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": true + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "HYATT ARNULFO", + "timestamp": "2016-02-27" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "WUNSCH GENNARO", + "timestamp": "2022-02-08" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "SCHMIDT RAHSAAN", + "timestamp": "2017-05-17" } ], "associatedSites": [ { - "dateNoted": "2016-08-23", + "dateNoted": "2023-03-11", + "notes": "", + "parcelID": "15375", + "siteID": "15381", + "siteRegistry": true + }, + { + "dateNoted": "2017-12-01", + "notes": "", + "parcelID": "17461", + "siteID": "15206", + "siteRegistry": false + }, + { + "dateNoted": "2015-08-19", "notes": "", - "parcelID": "19942", - "siteID": "15653", + "parcelID": "19495", + "siteID": "15889", "siteRegistry": false } ] }, { - "uuid": "0625fcef-6a8d-46be-b501-45a26944b9e5", - "siteID": 20915, - "address": "889 Dorian Bypass", - "latitude": 51.6866, - "longitude": -124.9995, - "lastUpdated": "2022-08-22", - "city": "Bennyworth", + "uuid": "3aef68e6-74d8-4a53-8a76-a6ea5680d9c6", + "siteID": 19899, + "address": "263 Ron Orchard", + "latitude": 48.3948, + "longitude": -121.6977, + "lastUpdated": "2016-05-04", + "city": "Frisco", "region": "Vancouver Island/Coast", - "victoriaFile": "26250-20/17375", + "victoriaFile": "26250-20/15978", "regionalFile": "N/A", "parcelIDs": [ - 2994822, - 8442776, - 9167159, - 752742, - 2994439 + 8863883, + 8380195, + 287971, + 3909514, + 5299417 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2020-06-28", - "completed": "2014-03-27", - "initiated": "2020-05-23", - "ministryContact": "POLLICH ORAN", + "createdAt": "2016-06-23", + "completed": "2021-10-17", + "initiated": "2022-12-15", + "ministryContact": "WALTER ESTELLE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -34554,19 +47753,14 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", @@ -34575,17 +47769,17 @@ }, { "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2016-12-27", - "completed": "2021-04-14", - "initiated": "2022-08-11", - "ministryContact": "CARROLL CLINTON", + "createdAt": "2023-08-05", + "completed": "2021-10-22", + "initiated": "2015-09-23", + "ministryContact": "QUITZON FABIAN", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -34594,23 +47788,33 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false } ], "siteRegistry": false }, { - "createdAt": "2021-07-30", - "completed": "2022-04-04", - "initiated": "2016-03-02", - "ministryContact": "BINS MYRTLE", + "createdAt": "2015-07-05", + "completed": "2020-07-17", + "initiated": "2019-06-05", + "ministryContact": "OLSON CLEORA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -34620,22 +47824,22 @@ "notationParticipants": [ { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false + "role": "SUBMITTED BY", + "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": false } ], "siteRegistry": true }, { - "createdAt": "2023-08-06", - "completed": "2016-01-14", - "initiated": "2013-12-25", - "ministryContact": "ANKUNDING LAURETTA", + "createdAt": "2020-03-04", + "completed": "2022-03-02", + "initiated": "2015-06-01", + "ministryContact": "POWLOWSKI LESSIE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -34645,92 +47849,237 @@ "notationParticipants": [ { "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false + "role": "SUBMITTED BY", + "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false } ], "participants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2021-01-25", + "startDate": "2020-04-24", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, { "name": "AMET, DOLOR SIT", - "endDate": "2019-10-29", - "startDate": "2019-01-16", + "endDate": "2019-03-01", + "startDate": "2021-06-09", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true }, { "name": "IPSUM", - "endDate": "2018-05-16", - "startDate": "2018-08-27", + "endDate": "2017-12-27", + "startDate": "2013-10-21", "notes": "", "roles": [ "EMPLOYEE" ], + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2016-09-09", + "startDate": "2022-10-13", + "notes": "", + "roles": [ + "ORGANIZATION" + ], "siteRegistry": false } ], - "associatedSites": [ + "suspectLandUses": [ { - "dateNoted": "2018-07-18", - "notes": "", - "parcelID": "16393", - "siteID": "17866", - "siteRegistry": true + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2021-03-03 (described on Site Profile dated 2021-03-03)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2022-11-28 (described on Site Profile dated 2022-11-28)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2017-03-23 (described on Site Profile dated 2017-03-23)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + } + ], + "siteDisclosures": [ + { + "siteRegistry": true, + "dateReceived": "2021-02-12", + "dateCompleted": "2021-10-20", + "dateEntered": "2023-02-02", + "dateRegistrar": "2021-06-01", + "dateLocalAuthorityReceived": "2013-11-12", + "summary": "Saepe aliquam animi.\nVoluptas laudantium molestias repellendus neque consequuntur blanditiis.", + "informationUsed": "Delectus perferendis commodi cupiditate inventore quidem.\nVeritatis quidem aspernatur ipsum nam.\nAlias fugiat architecto doloremque repellendus vitae soluta dolor.\nLaudantium cupiditate dolor.\nQuisquam voluptas dignissimos occaecati.", + "pastOrPresentOrders": "Ut sed eligendi adipisci.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + } + ] + }, + { + "siteRegistry": false, + "dateReceived": "2014-12-19", + "dateCompleted": "2016-09-10", + "dateEntered": "2017-01-20", + "dateRegistrar": "2014-10-28", + "dateLocalAuthorityReceived": "2013-11-23", + "summary": "Beatae ex culpa maiores a ipsam quod nesciunt delectus.", + "informationUsed": "Sunt perferendis in quam porro.\nVoluptates ducimus ratione voluptas sunt eveniet mollitia est soluta.\nCommodi possimus recusandae laboriosam delectus dignissimos est tempore id nostrum.\nVoluptatem veniam amet dicta molestias.", + "pastOrPresentOrders": "Quisquam suscipit error asperiores beatae ex.\nOmnis enim sapiente laborum nesciunt molestiae ex pariatur.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + } + ] + } + ], + "activityLog": [ + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "HARTMANN ZOEY", + "timestamp": "2020-11-28" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "FEIL SHANA", + "timestamp": "2020-11-23" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "ROGAHN TOMMIE", + "timestamp": "2023-02-08" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "SIMONIS FLETCHER", + "timestamp": "2020-05-17" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "MACGYVER SANTINA", + "timestamp": "2019-01-20" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "LEDNER MARLEN", + "timestamp": "2023-10-08" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "O'REILLY AMBER", + "timestamp": "2023-06-04" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "JONES EDEN", + "timestamp": "2018-05-20" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "PAGAC-TURNER WAINO", + "timestamp": "2020-04-23" }, { - "dateNoted": "2014-02-22", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "AUER-ROBERTS CASSANDRA", + "timestamp": "2022-06-14" + } + ], + "associatedSites": [ + { + "dateNoted": "2023-09-24", "notes": "", - "parcelID": "17614", - "siteID": "17036", - "siteRegistry": true + "parcelID": "19080", + "siteID": "17271", + "siteRegistry": false } ] }, { - "uuid": "2b8c4645-4a30-4e2b-b8f1-247f37506884", - "siteID": 15653, - "address": "97510 Madie Manors", - "latitude": 52.271, - "longitude": -118.4052, - "lastUpdated": "2015-08-23", - "city": "Marjolaineshire", - "region": "Thompson-Okanagan", - "victoriaFile": "26250-20/3722", + "uuid": "1f35e90e-def7-488d-9e05-5d0ea156a09a", + "siteID": 17419, + "address": "6241 Emily Lock", + "latitude": 49.2887, + "longitude": -118.9766, + "lastUpdated": "2016-08-21", + "city": "North Nya", + "region": "Mainland/Southwest", + "victoriaFile": "26250-20/10157", "regionalFile": "N/A", "parcelIDs": [ - 361033, - 9930414, - 5665835, - 5653293, - 7598662 + 5280565, + 8562373, + 9101945, + 8115001, + 1427888 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2018-11-25", - "completed": "2017-12-21", - "initiated": "2022-06-05", - "ministryContact": "KUHLMAN DARION", + "createdAt": "2016-12-30", + "completed": "2022-03-12", + "initiated": "2015-02-24", + "ministryContact": "FRANECKI ERWIN", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -34741,17 +48090,17 @@ { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", @@ -34759,13 +48108,13 @@ "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2018-06-05", - "completed": "2018-03-27", - "initiated": "2020-02-05", - "ministryContact": "HALVORSON CELIA", + "createdAt": "2015-11-19", + "completed": "2018-08-05", + "initiated": "2016-11-18", + "ministryContact": "PFEFFER GAGE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -34775,21 +48124,16 @@ "notationParticipants": [ { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false }, @@ -34799,13 +48143,13 @@ "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2015-02-17", - "completed": "2020-01-02", - "initiated": "2020-11-01", - "ministryContact": "LEDNER-LARSON CORALIE", + "createdAt": "2019-02-02", + "completed": "2020-05-17", + "initiated": "2022-01-20", + "ministryContact": "DIETRICH ALBIN", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -34813,50 +48157,20 @@ "" ], "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - } - ], - "siteRegistry": true - }, - { - "createdAt": "2015-11-18", - "completed": "2015-04-21", - "initiated": "2019-06-28", - "ministryContact": "STARK ITZEL", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false } ], "siteRegistry": true @@ -34865,8 +48179,8 @@ "participants": [ { "name": "AMET, DOLOR SIT", - "endDate": "2017-10-01", - "startDate": "2017-03-15", + "endDate": "2015-04-01", + "startDate": "2017-09-21", "notes": "", "roles": [ "EMPLOYEE" @@ -34874,65 +48188,168 @@ "siteRegistry": false }, { - "name": "IPSUM", - "endDate": "2019-04-05", - "startDate": "2020-05-03", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2022-10-15", + "startDate": "2017-06-11", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": false - } - ], - "associatedSites": [ - { - "dateNoted": "2014-12-21", - "notes": "", - "parcelID": "16915", - "siteID": "16559", "siteRegistry": true }, { - "dateNoted": "2019-09-07", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2023-01-19", + "startDate": "2023-01-12", "notes": "", - "parcelID": "20303", - "siteID": "18150", + "roles": [ + "ORGANIZATION" + ], "siteRegistry": false + } + ], + "suspectLandUses": [ + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2015-07-18 (described on Site Profile dated 2015-07-18)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "dateNoted": "2021-03-14", - "notes": "", - "parcelID": "17372", - "siteID": "17164", - "siteRegistry": false + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2016-05-28 (described on Site Profile dated 2016-05-28)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + } + ], + "siteDisclosures": [ + { + "siteRegistry": false, + "dateReceived": "2023-03-11", + "dateCompleted": "2018-05-15", + "dateEntered": "2023-02-11", + "dateRegistrar": "2021-02-12", + "dateLocalAuthorityReceived": "2020-09-24", + "summary": "Adipisci ipsum asperiores excepturi earum aliquam ipsam consequuntur perspiciatis accusantium.\nNam nemo voluptates.", + "informationUsed": "Sed cum ex eos maxime consequatur impedit natus sit possimus.\nUnde ut odio culpa nulla eveniet dolorem.\nConsectetur libero maxime.\nVoluptates eligendi minima praesentium ab ipsum cum.\nVero dolore ipsa molestiae eum.", + "pastOrPresentOrders": "Dicta quidem quam esse quasi temporibus.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + } + ] + }, + { + "siteRegistry": false, + "dateReceived": "2020-03-11", + "dateCompleted": "2021-06-24", + "dateEntered": "2019-06-14", + "dateRegistrar": "2018-04-27", + "dateLocalAuthorityReceived": "2022-09-06", + "summary": "A molestiae ipsa adipisci vitae.", + "informationUsed": "Aperiam fugiat asperiores deserunt et ex.\nDolorum quod dicta corrupti architecto.\nAssumenda fugit ex quam maxime minima possimus tenetur iure.\nDolorem occaecati nisi tenetur ducimus dolores deleniti voluptas debitis perspiciatis.", + "pastOrPresentOrders": "Nisi voluptate corrupti quaerat nostrum.\nTotam tempore a.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + } + ] + } + ], + "activityLog": [ + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "TRANTOW IZABELLA", + "timestamp": "2015-07-21" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "KRIS RAOUL", + "timestamp": "2019-07-02" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "STOKES JED", + "timestamp": "2017-02-04" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "SCHAMBERGER DRAKE", + "timestamp": "2016-09-20" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "GRIMES EMMITT", + "timestamp": "2022-04-03" + } + ], + "associatedSites": [ + { + "dateNoted": "2022-01-25", + "notes": "", + "parcelID": "15887", + "siteID": "19203", + "siteRegistry": true } ] }, { - "uuid": "48749c5b-a33a-4ada-8ea8-af850f66c5da", - "siteID": 18775, - "address": "8336 Bria Trail", - "latitude": 48.3294, - "longitude": -126.3835, - "lastUpdated": "2021-09-03", - "city": "Port Brionnafort", - "region": "Cariboo", - "victoriaFile": "26250-20/16791", + "uuid": "497dc1ea-bc89-4a74-975d-2b530ea08174", + "siteID": 20766, + "address": "723 Janelle Village", + "latitude": 48.1814, + "longitude": -128.9978, + "lastUpdated": "2016-12-07", + "city": "Edwardworth", + "region": "Kootenay", + "victoriaFile": "26250-20/8304", "regionalFile": "N/A", "parcelIDs": [ - 1678888, - 326614, - 9310108, - 185415, - 8561171 + 4854756, + 841499, + 3982867, + 5475482, + 6227899 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2017-11-29", - "completed": "2020-05-02", - "initiated": "2021-09-26", - "ministryContact": "SCHOWALTER LUCILE", + "createdAt": "2021-12-06", + "completed": "2022-03-04", + "initiated": "2016-01-17", + "ministryContact": "BEAHAN CALI", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -34941,28 +48358,33 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false } ], "siteRegistry": false }, { - "createdAt": "2018-09-28", - "completed": "2017-01-02", - "initiated": "2022-05-25", - "ministryContact": "FADEL RHEA", + "createdAt": "2019-12-26", + "completed": "2017-07-28", + "initiated": "2021-07-20", + "ministryContact": "BERNHARD VIRGIL", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -34971,20 +48393,45 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "createdAt": "2021-08-13", + "completed": "2020-04-18", + "initiated": "2021-12-13", + "ministryContact": "SMITH JESSE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", @@ -34992,17 +48439,17 @@ }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false } ], "siteRegistry": false }, { - "createdAt": "2013-11-24", - "completed": "2017-01-24", - "initiated": "2015-11-28", - "ministryContact": "MITCHELL JERALD", + "createdAt": "2019-03-27", + "completed": "2019-11-04", + "initiated": "2022-07-08", + "ministryContact": "AUFDERHAR ELVA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -35011,14 +48458,19 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true } ], "siteRegistry": false @@ -35026,61 +48478,171 @@ ], "participants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2018-12-16", - "startDate": "2019-10-16", + "name": "AMET, DOLOR SIT", + "endDate": "2017-07-29", + "startDate": "2016-11-07", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": true + "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2017-10-12", - "startDate": "2018-02-17", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2014-05-07", + "startDate": "2014-09-19", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false + } + ], + "suspectLandUses": [ + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2017-10-11 (described on Site Profile dated 2017-10-11)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2014-01-02 (described on Site Profile dated 2014-01-02)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + } + ], + "siteDisclosures": [ + { + "siteRegistry": false, + "dateReceived": "2019-10-24", + "dateCompleted": "2017-11-24", + "dateEntered": "2018-03-22", + "dateRegistrar": "2015-05-15", + "dateLocalAuthorityReceived": "2013-10-13", + "summary": "Totam nulla perferendis quisquam fugiat.\nEx repudiandae assumenda amet.\nAdipisci blanditiis rem et voluptatem ad esse ad dignissimos.", + "informationUsed": "Cupiditate tempore rem nam.\nHic non velit quis consequatur quam velit.\nAdipisci atque illo eum repudiandae autem tempora officiis fuga sapiente.\nNumquam neque amet voluptate ut repudiandae vel reiciendis voluptatibus.\nOmnis assumenda aut ex voluptas corrupti odit.", + "pastOrPresentOrders": "Possimus impedit facere officiis qui facilis iste labore repudiandae pariatur.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + } + ] + }, + { + "siteRegistry": true, + "dateReceived": "2016-05-24", + "dateCompleted": "2014-10-03", + "dateEntered": "2017-09-14", + "dateRegistrar": "2021-06-20", + "dateLocalAuthorityReceived": "2020-09-26", + "summary": "Porro iusto nihil incidunt facere sapiente sapiente exercitationem id corrupti.\nMolestias ab exercitationem in perspiciatis.", + "informationUsed": "Quia eaque quidem illum neque deleniti quae temporibus hic temporibus.\nAliquid consequatur tempore aut.\nMolestias cum voluptatibus veritatis libero suscipit.\nEx ratione deserunt commodi optio autem.", + "pastOrPresentOrders": "Ab velit perferendis nesciunt.\nAt quam provident numquam tempora dignissimos molestias.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + } + ] + } + ], + "activityLog": [ + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "FUNK ALFRED", + "timestamp": "2016-04-30" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "FERRY MURPHY", + "timestamp": "2015-02-15" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "JACOBI-REINGER DWIGHT", + "timestamp": "2016-04-20" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "STOKES JAYLON", + "timestamp": "2016-10-05" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "RODRIGUEZ ROSE", + "timestamp": "2021-06-02" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "GERHOLD KARI", + "timestamp": "2018-05-24" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "BODE-SAUER PHILIP", + "timestamp": "2014-03-09" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "BAILEY DESIREE", + "timestamp": "2016-09-07" } ], "associatedSites": [ { - "dateNoted": "2016-06-28", + "dateNoted": "2022-02-07", "notes": "", - "parcelID": "20140", - "siteID": "16916", + "parcelID": "17315", + "siteID": "20804", "siteRegistry": false } ] }, { - "uuid": "dc28eee2-0062-4593-932b-8c9f17ea0d43", - "siteID": 16916, - "address": "216 Marvin Path", - "latitude": 58.0954, - "longitude": -120.0524, - "lastUpdated": "2017-11-04", - "city": "East Trevor", - "region": "Mainland/Southwest", - "victoriaFile": "26250-20/2652", + "uuid": "e4048601-efa3-4eb2-83ff-6beff0e2af8a", + "siteID": 18231, + "address": "3232 West Knolls", + "latitude": 51.3361, + "longitude": -133.8699, + "lastUpdated": "2020-08-24", + "city": "Casa Grande", + "region": "Vancouver Island/Coast", + "victoriaFile": "26250-20/1283", "regionalFile": "N/A", "parcelIDs": [ - 6135952, - 1663604, - 7415786, - 6300047, - 1299076 + 3968496, + 8228063, + 363465, + 3877196, + 8908161 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2015-10-12", - "completed": "2016-04-03", - "initiated": "2016-04-26", - "ministryContact": "MONAHAN MARLON", + "createdAt": "2014-06-12", + "completed": "2018-11-21", + "initiated": "2023-01-31", + "ministryContact": "LEBSACK GUISEPPE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -35089,23 +48651,23 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2022-02-08", - "completed": "2023-07-05", - "initiated": "2014-09-12", - "ministryContact": "KONOPELSKI LEORA", + "createdAt": "2016-01-28", + "completed": "2015-10-30", + "initiated": "2023-04-08", + "ministryContact": "DICKI ETHYL", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -35115,8 +48677,8 @@ "notationParticipants": [ { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false + "role": "SUBMITTED BY", + "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", @@ -35124,28 +48686,28 @@ "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2022-08-11", - "completed": "2018-07-19", - "initiated": "2015-04-18", - "ministryContact": "O'CONNELL DELIA", + "createdAt": "2016-08-27", + "completed": "2015-09-14", + "initiated": "2020-01-25", + "ministryContact": "ZULAUF FLOYD", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -35156,21 +48718,31 @@ { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2016-06-16", - "completed": "2021-04-27", - "initiated": "2023-04-23", - "ministryContact": "WYMAN MARYSE", + "createdAt": "2022-03-13", + "completed": "2020-08-30", + "initiated": "2015-06-25", + "ministryContact": "RYAN SAMANTHA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -35181,72 +48753,67 @@ { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - } - ], - "siteRegistry": false - }, - { - "createdAt": "2018-03-17", - "completed": "2020-11-08", - "initiated": "2023-06-01", - "ministryContact": "HAAG CREOLA", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false } ], "participants": [ { - "name": "AMET, DOLOR SIT", - "endDate": "2016-12-09", - "startDate": "2017-07-10", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2020-11-25", + "startDate": "2021-06-19", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "name": "IPSUM", + "endDate": "2016-04-27", + "startDate": "2019-09-27", "notes": "", "roles": [ "EMPLOYEE" ], + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2019-07-24", + "startDate": "2019-03-01", + "notes": "", + "roles": [ + "ORGANIZATION" + ], "siteRegistry": true }, { - "name": "AMET, DOLOR SIT", - "endDate": "2020-02-23", - "startDate": "2018-02-17", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2022-05-25", + "startDate": "2018-04-04", "notes": "", "roles": [ "ORGANIZATION" @@ -35254,55 +48821,157 @@ "siteRegistry": false } ], - "associatedSites": [ + "suspectLandUses": [ { - "dateNoted": "2015-09-24", - "notes": "", - "parcelID": "16905", - "siteID": "19095", - "siteRegistry": false + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2022-02-28 (described on Site Profile dated 2022-02-28)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2015-10-31 (described on Site Profile dated 2015-10-31)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + } + ], + "siteDisclosures": [ + { + "siteRegistry": true, + "dateReceived": "2023-07-09", + "dateCompleted": "2020-02-24", + "dateEntered": "2020-08-21", + "dateRegistrar": "2016-11-12", + "dateLocalAuthorityReceived": "2014-07-21", + "summary": "Culpa minus nam numquam dignissimos delectus minima.\nSuscipit non quas neque nihil repellat voluptatibus praesentium.", + "informationUsed": "Officia nobis ratione aliquam nam.\nAspernatur aperiam corrupti voluptas explicabo quos.\nPariatur sint quisquam eos aut molestias harum quisquam error vitae.\nDolore doloremque a provident facere asperiores aspernatur deserunt beatae nihil.\nHarum architecto accusantium.", + "pastOrPresentOrders": "Esse modi provident.\nDicta sint molestias.\nCum illo adipisci sequi quas excepturi libero.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + } + ] + } + ], + "activityLog": [ + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "TERRY ANDRES", + "timestamp": "2023-05-24" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "DECKOW ALLAN", + "timestamp": "2021-03-22" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "JACOBS VIVA", + "timestamp": "2019-05-11" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "MORAR-ZIEMANN JANICE", + "timestamp": "2018-08-02" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "RAU REBA", + "timestamp": "2014-03-31" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "FRANECKI GROVER", + "timestamp": "2014-04-27" }, { - "dateNoted": "2023-05-12", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "GUSIKOWSKI VALERIE", + "timestamp": "2021-06-17" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "MITCHELL MADALINE", + "timestamp": "2019-04-25" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "CARTER KEITH", + "timestamp": "2014-09-14" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "MCLAUGHLIN NICKLAUS", + "timestamp": "2019-04-21" + } + ], + "associatedSites": [ + { + "dateNoted": "2021-01-08", "notes": "", - "parcelID": "19868", - "siteID": "19380", + "parcelID": "15356", + "siteID": "17224", "siteRegistry": false }, { - "dateNoted": "2019-03-15", + "dateNoted": "2023-03-24", "notes": "", - "parcelID": "19252", - "siteID": "15855", + "parcelID": "20833", + "siteID": "19991", "siteRegistry": false } ] }, { - "uuid": "9b7ab543-ea33-4243-af21-ecd579ade886", - "siteID": 19837, - "address": "49911 Alan Spur", - "latitude": 57.9517, - "longitude": -137.2213, - "lastUpdated": "2020-05-29", - "city": "Luisworth", - "region": "Thompson-Okanagan", - "victoriaFile": "26250-20/11791", + "uuid": "1f755b4f-1927-47a3-9c0f-e7d843599248", + "siteID": 20361, + "address": "2285 Zemlak Crossing", + "latitude": 52.9556, + "longitude": -134.1931, + "lastUpdated": "2020-07-25", + "city": "New Emmyview", + "region": "Mainland/Southwest", + "victoriaFile": "26250-20/12837", "regionalFile": "N/A", "parcelIDs": [ - 3011269, - 5862877, - 9004257, - 200377, - 5356615 + 131764, + 5605537, + 7428519, + 6625870, + 4315244 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2020-05-29", - "completed": "2014-02-15", - "initiated": "2018-05-05", - "ministryContact": "ANDERSON JANICK", + "createdAt": "2015-09-03", + "completed": "2023-03-07", + "initiated": "2022-11-04", + "ministryContact": "YUNDT ANDY", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -35311,20 +48980,30 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false - }, + } + ], + "siteRegistry": false + }, + { + "createdAt": "2019-11-06", + "completed": "2014-10-16", + "initiated": "2014-09-29", + "ministryContact": "KERTZMANN CARLOTTA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", @@ -35339,10 +49018,10 @@ "siteRegistry": true }, { - "createdAt": "2018-10-25", - "completed": "2014-09-01", - "initiated": "2018-02-09", - "ministryContact": "GUTMANN LULU", + "createdAt": "2014-01-27", + "completed": "2014-10-24", + "initiated": "2020-02-21", + "ministryContact": "STIEDEMANN DOROTHEA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -35352,11 +49031,11 @@ "notationParticipants": [ { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false }, @@ -35365,14 +49044,9 @@ "role": "SUBMITTED BY", "siteRegistry": true }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true } ], @@ -35381,81 +49055,183 @@ ], "participants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2021-09-04", - "startDate": "2015-01-10", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2016-10-13", + "startDate": "2021-06-29", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": true }, { - "name": "AMET, DOLOR SIT", - "endDate": "2019-07-17", - "startDate": "2016-06-10", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2021-05-25", + "startDate": "2023-09-22", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": false + "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", - "endDate": "2014-09-15", - "startDate": "2020-11-11", + "endDate": "2015-05-19", + "startDate": "2021-06-17", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": true }, { - "name": "AMET, DOLOR SIT", - "endDate": "2021-04-04", - "startDate": "2016-11-28", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2016-08-23", + "startDate": "2019-04-11", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": true + "siteRegistry": false + } + ], + "suspectLandUses": [ + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2017-09-22 (described on Site Profile dated 2017-09-22)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2019-07-23 (described on Site Profile dated 2019-07-23)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2022-01-13 (described on Site Profile dated 2022-01-13)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2016-10-01 (described on Site Profile dated 2016-10-01)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2016-05-16 (described on Site Profile dated 2016-05-16)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + } + ], + "siteDisclosures": [ + { + "siteRegistry": false, + "dateReceived": "2017-09-04", + "dateCompleted": "2022-01-23", + "dateEntered": "2023-03-08", + "dateRegistrar": "2014-06-16", + "dateLocalAuthorityReceived": "2018-03-11", + "summary": "Assumenda illo iste laborum blanditiis debitis.", + "informationUsed": "Nobis reprehenderit possimus debitis.\nDolore sapiente ut quas qui a in vitae quam quia.\nEius modi architecto tempore fuga delectus corrupti modi.\nMolestias temporibus magnam facere cum cumque odit nemo accusamus dolore.\nCulpa sint perspiciatis veritatis in sed velit nisi.", + "pastOrPresentOrders": "Aut nam rem suscipit fuga voluptas nisi.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + } + ] + } + ], + "activityLog": [ + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "HACKETT CEASAR", + "timestamp": "2017-04-25" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "HEIDENREICH ALISHA", + "timestamp": "2017-09-04" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "JENKINS CALEB", + "timestamp": "2023-03-12" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "DAUGHERTY MICAH", + "timestamp": "2019-11-25" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "HEGMANN BRADLY", + "timestamp": "2015-12-01" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "REICHEL CHRISTELLE", + "timestamp": "2022-12-07" } ], "associatedSites": [ { - "dateNoted": "2015-03-28", + "dateNoted": "2019-07-16", "notes": "", - "parcelID": "18192", - "siteID": "15919", - "siteRegistry": false + "parcelID": "19132", + "siteID": "19118", + "siteRegistry": true + }, + { + "dateNoted": "2016-05-03", + "notes": "", + "parcelID": "19026", + "siteID": "17309", + "siteRegistry": true } ] }, { - "uuid": "48a6c44c-452e-4051-b700-66fb917d508e", - "siteID": 16401, - "address": "515 Effie Mills", - "latitude": 54.2195, - "longitude": -124.6451, - "lastUpdated": "2021-07-05", - "city": "West Audrey", - "region": "Vancouver Island/Coast", - "victoriaFile": "26250-20/4696", + "uuid": "b858c0a3-8be9-463d-bc50-cf8ba5e261a8", + "siteID": 16632, + "address": "138 Stanton Gateway", + "latitude": 48.2806, + "longitude": -130.667, + "lastUpdated": "2022-07-31", + "city": "Port Rethaburgh", + "region": "Thompson-Okanagan", + "victoriaFile": "26250-20/16153", "regionalFile": "N/A", "parcelIDs": [ - 3912761, - 1560672, - 9901654, - 5873177, - 938604 + 6689789, + 7730540, + 2284176, + 6333976, + 1335587 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2014-04-25", - "completed": "2017-08-19", - "initiated": "2015-02-10", - "ministryContact": "FEIL CHRISTOPHE", + "createdAt": "2020-04-08", + "completed": "2020-03-11", + "initiated": "2022-11-26", + "ministryContact": "GRIMES ANIYA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -35464,48 +49240,28 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - } - ], - "siteRegistry": true - }, - { - "createdAt": "2018-04-30", - "completed": "2023-01-18", - "initiated": "2013-10-13", - "ministryContact": "KEEBLER CHARLENE", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true } ], "siteRegistry": false }, { - "createdAt": "2021-06-01", - "completed": "2015-04-12", - "initiated": "2019-08-03", - "ministryContact": "GOYETTE TYLER", + "createdAt": "2023-07-12", + "completed": "2014-03-25", + "initiated": "2019-04-06", + "ministryContact": "CASSIN-HEATHCOTE AMERICO", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -35514,38 +49270,38 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", "siteRegistry": false } ], "siteRegistry": false }, { - "createdAt": "2020-12-02", - "completed": "2013-12-07", - "initiated": "2021-02-12", - "ministryContact": "KOSS JAEDEN", + "createdAt": "2023-04-17", + "completed": "2014-04-09", + "initiated": "2018-12-05", + "ministryContact": "DIETRICH MOSHE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -35555,13 +49311,18 @@ "notationParticipants": [ { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true } ], "siteRegistry": true @@ -35570,8 +49331,8 @@ "participants": [ { "name": "AMET, DOLOR SIT", - "endDate": "2021-10-26", - "startDate": "2021-07-11", + "endDate": "2015-09-14", + "startDate": "2016-09-02", "notes": "", "roles": [ "ORGANIZATION" @@ -35579,51 +49340,140 @@ "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2019-10-15", - "startDate": "2020-07-13", + "name": "AMET, DOLOR SIT", + "endDate": "2021-11-06", + "startDate": "2020-07-25", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": true } ], + "suspectLandUses": [ + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2015-07-07 (described on Site Profile dated 2015-07-07)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2023-08-04 (described on Site Profile dated 2023-08-04)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2023-05-21 (described on Site Profile dated 2023-05-21)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2016-04-20 (described on Site Profile dated 2016-04-20)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2017-05-06 (described on Site Profile dated 2017-05-06)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + } + ], + "siteDisclosures": [ + { + "siteRegistry": false, + "dateReceived": "2015-10-19", + "dateCompleted": "2018-06-12", + "dateEntered": "2023-06-05", + "dateRegistrar": "2016-12-04", + "dateLocalAuthorityReceived": "2016-12-12", + "summary": "Sequi aperiam dolore quis mollitia libero optio nam maxime excepturi.", + "informationUsed": "Dolore quo modi cumque consequatur odit.\nNecessitatibus ipsum nemo.\nAspernatur architecto libero amet.\nAliquam in iure et veniam nulla rerum.", + "pastOrPresentOrders": "Dicta odit velit natus iste dicta soluta praesentium.\nSapiente repellendus nostrum quo pariatur natus necessitatibus quia sapiente consectetur.\nIste modi possimus ex.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + } + ] + } + ], + "activityLog": [ + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "WILLMS MITCHELL", + "timestamp": "2021-10-13" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "GLEICHNER BERNICE", + "timestamp": "2021-04-19" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "KUHLMAN-BEATTY QUINTEN", + "timestamp": "2019-04-27" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "MCGLYNN JAYDE", + "timestamp": "2016-02-04" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "BOGISICH ELISA", + "timestamp": "2022-04-10" + } + ], "associatedSites": [ { - "dateNoted": "2020-07-08", + "dateNoted": "2022-04-29", "notes": "", - "parcelID": "18913", - "siteID": "19233", - "siteRegistry": true + "parcelID": "19977", + "siteID": "20967", + "siteRegistry": false } ] }, { - "uuid": "60bf1473-3582-401b-9e52-612c19b3fcd2", - "siteID": 19048, - "address": "93210 Lulu Fords", - "latitude": 49.2413, - "longitude": -135.5592, - "lastUpdated": "2014-02-26", - "city": "South Rashawnbury", - "region": "Mainland/Southwest", - "victoriaFile": "26250-20/13159", + "uuid": "a183b33f-b469-4227-938f-9adff064f2eb", + "siteID": 20007, + "address": "650 Leuschke Mill", + "latitude": 54.5186, + "longitude": -125.2941, + "lastUpdated": "2016-06-08", + "city": "Edmond", + "region": "Cariboo", + "victoriaFile": "26250-20/2093", "regionalFile": "N/A", "parcelIDs": [ - 6755411, - 6020133, - 3316775, - 4657224, - 3213815 + 3807486, + 4252050, + 4081000, + 4155506, + 1941792 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2018-07-21", - "completed": "2014-05-05", - "initiated": "2017-06-06", - "ministryContact": "GREEN HERMAN", + "createdAt": "2015-03-10", + "completed": "2022-12-21", + "initiated": "2023-07-09", + "ministryContact": "WISOKY AKEEM", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -35633,32 +49483,32 @@ "notationParticipants": [ { "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2013-12-29", - "completed": "2016-03-05", - "initiated": "2014-01-26", - "ministryContact": "RUNTE PRECIOUS", + "createdAt": "2017-12-21", + "completed": "2017-02-16", + "initiated": "2016-09-21", + "ministryContact": "GOTTLIEB SUMMER", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -35666,10 +49516,7927 @@ "" ], "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + } + ], + "participants": [ + { + "name": "IPSUM", + "endDate": "2022-05-18", + "startDate": "2019-05-15", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2023-06-02", + "startDate": "2014-09-28", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2020-04-25", + "startDate": "2020-08-20", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2018-06-08", + "startDate": "2015-08-18", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + } + ], + "suspectLandUses": [ + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2020-04-15 (described on Site Profile dated 2020-04-15)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2014-06-21 (described on Site Profile dated 2014-06-21)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2016-01-05 (described on Site Profile dated 2016-01-05)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2014-11-30 (described on Site Profile dated 2014-11-30)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2019-02-12 (described on Site Profile dated 2019-02-12)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + } + ], + "siteDisclosures": [ + { + "siteRegistry": false, + "dateReceived": "2021-01-07", + "dateCompleted": "2020-05-04", + "dateEntered": "2017-10-06", + "dateRegistrar": "2022-03-31", + "dateLocalAuthorityReceived": "2019-02-09", + "summary": "Accusantium iure dolorum a laudantium facere aliquam.\nQuam commodi voluptatibus ratione distinctio incidunt nesciunt repudiandae.", + "informationUsed": "Numquam enim minus necessitatibus cum consectetur quis voluptatem impedit.\nDolor suscipit temporibus magni voluptatem.\nEos facilis nesciunt ea sit reiciendis animi ad placeat in.\nAliquam esse recusandae.", + "pastOrPresentOrders": "Non nulla atque omnis sapiente quia.\nCulpa sed dignissimos fugiat alias.\nHarum ea cupiditate.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + } + ] + }, + { + "siteRegistry": false, + "dateReceived": "2017-08-16", + "dateCompleted": "2013-10-22", + "dateEntered": "2015-11-05", + "dateRegistrar": "2019-01-01", + "dateLocalAuthorityReceived": "2016-04-29", + "summary": "Libero dolor officia.\nNostrum dignissimos eligendi provident eligendi repellendus consequatur ex ratione repellendus.\nPlaceat accusantium deleniti culpa.", + "informationUsed": "Voluptatum iusto ipsa tempore.\nIure sint nam at quos voluptatem veniam.\nCupiditate fugit eius eius accusantium similique autem repellat omnis animi.", + "pastOrPresentOrders": "Dicta eligendi quaerat aspernatur magnam veritatis temporibus porro facere.\nTempora porro architecto perferendis ipsum aperiam aut est inventore.\nDelectus ullam vel.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + } + ] + } + ], + "activityLog": [ + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "CASPER NEDRA", + "timestamp": "2023-09-13" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "HUEL DEMARIO", + "timestamp": "2015-11-04" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "O'REILLY ORLAND", + "timestamp": "2017-09-27" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "WALKER MAGDALEN", + "timestamp": "2019-12-07" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "CONNELLY SYBLE", + "timestamp": "2017-11-03" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "RICE JANAE", + "timestamp": "2017-02-05" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "FEIL CARMEL", + "timestamp": "2023-09-22" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "ROMAGUERA TAUREAN", + "timestamp": "2022-02-03" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "SCHMIDT ELIAS", + "timestamp": "2020-08-19" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "O'CONNER WILLIS", + "timestamp": "2019-01-31" + } + ], + "associatedSites": [ + { + "dateNoted": "2017-12-27", + "notes": "", + "parcelID": "17310", + "siteID": "20966", + "siteRegistry": false + }, + { + "dateNoted": "2016-08-17", + "notes": "", + "parcelID": "20822", + "siteID": "15423", + "siteRegistry": true + }, + { + "dateNoted": "2013-11-06", + "notes": "", + "parcelID": "19904", + "siteID": "20879", + "siteRegistry": true + } + ] + }, + { + "uuid": "ae043ca4-b123-41ef-9243-27f84ac40a58", + "siteID": 18930, + "address": "460 Weimann Garden", + "latitude": 50.9062, + "longitude": -138.8795, + "lastUpdated": "2022-06-25", + "city": "Reneeport", + "region": "Vancouver Island/Coast", + "victoriaFile": "26250-20/8734", + "regionalFile": "N/A", + "parcelIDs": [ + 1622487, + 2340950, + 2802523, + 8000531, + 6786250 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2014-06-05", + "completed": "2021-02-24", + "initiated": "2015-07-10", + "ministryContact": "KLING FRANCIS", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "createdAt": "2014-03-10", + "completed": "2019-01-26", + "initiated": "2016-11-13", + "ministryContact": "CASSIN GRAYSON", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "createdAt": "2014-12-10", + "completed": "2020-11-14", + "initiated": "2018-12-25", + "ministryContact": "PFEFFER WAINO", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "createdAt": "2014-07-22", + "completed": "2017-11-01", + "initiated": "2014-05-29", + "ministryContact": "O'REILLY JOE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "createdAt": "2022-08-15", + "completed": "2019-07-17", + "initiated": "2020-01-23", + "ministryContact": "CARTWRIGHT SHAYNA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + } + ], + "participants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2014-10-01", + "startDate": "2021-03-08", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "name": "IPSUM", + "endDate": "2017-01-08", + "startDate": "2023-04-01", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2019-04-24", + "startDate": "2022-10-17", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "name": "AMET, DOLOR SIT", + "endDate": "2014-02-28", + "startDate": "2017-03-29", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + } + ], + "suspectLandUses": [ + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2015-02-11 (described on Site Profile dated 2015-02-11)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2019-02-27 (described on Site Profile dated 2019-02-27)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + } + ], + "siteDisclosures": [ + { + "siteRegistry": true, + "dateReceived": "2015-01-06", + "dateCompleted": "2017-08-25", + "dateEntered": "2023-02-17", + "dateRegistrar": "2018-06-17", + "dateLocalAuthorityReceived": "2022-10-23", + "summary": "Velit perferendis tenetur deleniti enim voluptatem quibusdam suscipit itaque.", + "informationUsed": "Quis doloribus fugit ratione.\nItaque quisquam dolores magni ut maxime repellendus.\nReprehenderit officiis id consequuntur ipsa perspiciatis.\nRatione repudiandae asperiores earum explicabo ut ipsam vitae quaerat expedita.\nMolestias quam ipsam pariatur doloribus eius tenetur itaque.", + "pastOrPresentOrders": "Mollitia blanditiis voluptate quisquam sunt culpa.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + } + ] + } + ], + "activityLog": [ + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "FRITSCH ALEXANDRA", + "timestamp": "2017-10-02" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "KEMMER CAROLINE", + "timestamp": "2015-04-13" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "HERZOG KARINA", + "timestamp": "2017-02-08" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "SPINKA BLAIR", + "timestamp": "2015-05-09" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "SCHAEFER MARIBEL", + "timestamp": "2020-05-21" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "JACOBSON ADOLFO", + "timestamp": "2013-10-27" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "TREMBLAY ESTEVAN", + "timestamp": "2017-05-14" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "JENKINS PRICE", + "timestamp": "2017-06-12" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "SWIFT LIZETH", + "timestamp": "2021-03-23" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "KLOCKO RAE", + "timestamp": "2016-12-24" + } + ], + "associatedSites": [ + { + "dateNoted": "2016-04-08", + "notes": "", + "parcelID": "18408", + "siteID": "20775", + "siteRegistry": false + }, + { + "dateNoted": "2021-11-06", + "notes": "", + "parcelID": "15680", + "siteID": "18179", + "siteRegistry": true + }, + { + "dateNoted": "2022-12-18", + "notes": "", + "parcelID": "16977", + "siteID": "18188", + "siteRegistry": true + } + ] + }, + { + "uuid": "95f9e609-f354-4ee1-892f-b5e3b8f38281", + "siteID": 18283, + "address": "5046 Boyle Lights", + "latitude": 56.7545, + "longitude": -132.3339, + "lastUpdated": "2022-12-30", + "city": "Kovacekfield", + "region": "Thompson-Okanagan", + "victoriaFile": "26250-20/13304", + "regionalFile": "N/A", + "parcelIDs": [ + 6596945, + 5171644, + 4833020, + 1050984, + 6119213 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2017-10-13", + "completed": "2015-01-05", + "initiated": "2019-10-08", + "ministryContact": "NIENOW BRANSON", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "createdAt": "2021-04-26", + "completed": "2020-03-05", + "initiated": "2020-03-21", + "ministryContact": "CONNELLY-TURCOTTE LONDON", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "createdAt": "2022-09-01", + "completed": "2020-08-30", + "initiated": "2018-03-09", + "ministryContact": "MOHR HARRISON", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + } + ], + "participants": [ + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2016-04-08", + "startDate": "2017-06-01", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2020-09-19", + "startDate": "2014-04-07", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2015-04-23", + "startDate": "2022-05-25", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "AMET, DOLOR SIT", + "endDate": "2013-12-04", + "startDate": "2022-01-27", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2022-12-25", + "startDate": "2021-09-23", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + } + ], + "suspectLandUses": [ + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2020-04-23 (described on Site Profile dated 2020-04-23)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2019-01-22 (described on Site Profile dated 2019-01-22)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2015-04-29 (described on Site Profile dated 2015-04-29)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2019-03-13 (described on Site Profile dated 2019-03-13)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + } + ], + "siteDisclosures": [ + { + "siteRegistry": false, + "dateReceived": "2021-08-04", + "dateCompleted": "2020-07-25", + "dateEntered": "2021-06-16", + "dateRegistrar": "2016-12-13", + "dateLocalAuthorityReceived": "2017-08-11", + "summary": "Quae hic nisi necessitatibus esse aliquam.\nNesciunt voluptatibus saepe velit.\nBlanditiis dolorum aut eligendi provident inventore.", + "informationUsed": "Nobis laborum recusandae quam eveniet.\nIllo voluptates deleniti numquam accusantium pariatur consectetur vitae reiciendis.\nNemo necessitatibus pariatur animi facere asperiores unde.\nError sapiente maiores cumque cumque delectus.", + "pastOrPresentOrders": "Fugit sint et laboriosam.\nNihil magni quos quasi illo error.\nPariatur eaque aspernatur cupiditate dolor rem commodi suscipit dolorem minima.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + } + ] + } + ], + "activityLog": [ + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "KIEHN RANDALL", + "timestamp": "2022-08-11" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "HODKIEWICZ CALI", + "timestamp": "2018-06-12" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "MCDERMOTT LUISA", + "timestamp": "2019-06-11" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "REILLY ALAYNA", + "timestamp": "2022-03-27" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "HOEGER JANICK", + "timestamp": "2023-06-15" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "LOCKMAN DANE", + "timestamp": "2019-08-25" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "DOUGLAS CHANELLE", + "timestamp": "2017-07-10" + } + ], + "associatedSites": [ + { + "dateNoted": "2021-01-30", + "notes": "", + "parcelID": "18464", + "siteID": "16509", + "siteRegistry": false + }, + { + "dateNoted": "2019-11-04", + "notes": "", + "parcelID": "16234", + "siteID": "17249", + "siteRegistry": true + }, + { + "dateNoted": "2020-01-20", + "notes": "", + "parcelID": "18831", + "siteID": "16803", + "siteRegistry": false + } + ] + }, + { + "uuid": "e4c77b73-5693-4b14-bd77-623856a55138", + "siteID": 15752, + "address": "5480 Tad Stravenue", + "latitude": 49.0415, + "longitude": -123.2946, + "lastUpdated": "2023-06-17", + "city": "Markscester", + "region": " North Coast", + "victoriaFile": "26250-20/17370", + "regionalFile": "N/A", + "parcelIDs": [ + 5095858, + 7398528, + 9674634, + 5237098, + 1306982 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2014-08-24", + "completed": "2017-06-10", + "initiated": "2020-05-25", + "ministryContact": "HOMENICK JEROD", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "createdAt": "2020-04-20", + "completed": "2020-11-01", + "initiated": "2014-01-31", + "ministryContact": "BEATTY ANAIS", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + } + ], + "participants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2019-11-19", + "startDate": "2020-09-09", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "name": "AMET, DOLOR SIT", + "endDate": "2022-11-19", + "startDate": "2019-01-30", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2018-10-15", + "startDate": "2020-05-02", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2020-05-05", + "startDate": "2023-08-19", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2022-03-27", + "startDate": "2022-05-11", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + } + ], + "suspectLandUses": [ + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2020-10-07 (described on Site Profile dated 2020-10-07)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2022-10-26 (described on Site Profile dated 2022-10-26)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2020-09-09 (described on Site Profile dated 2020-09-09)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2022-04-04 (described on Site Profile dated 2022-04-04)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + } + ], + "siteDisclosures": [ + { + "siteRegistry": false, + "dateReceived": "2014-01-02", + "dateCompleted": "2013-12-03", + "dateEntered": "2017-08-02", + "dateRegistrar": "2021-08-05", + "dateLocalAuthorityReceived": "2018-06-19", + "summary": "Similique sequi sit explicabo amet voluptas minima ab debitis incidunt.\nPerspiciatis amet explicabo recusandae dignissimos numquam.\nMinima est quibusdam quaerat.", + "informationUsed": "Deserunt fuga beatae consequuntur cum quo ipsa molestiae.\nSed pariatur est itaque facere aspernatur necessitatibus non eius.\nCupiditate explicabo provident veritatis.", + "pastOrPresentOrders": "Aliquam repellat asperiores.\nBlanditiis occaecati corporis perspiciatis aperiam.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + } + ] + }, + { + "siteRegistry": true, + "dateReceived": "2014-11-27", + "dateCompleted": "2016-01-22", + "dateEntered": "2022-12-18", + "dateRegistrar": "2021-12-10", + "dateLocalAuthorityReceived": "2019-08-21", + "summary": "Explicabo soluta quam.", + "informationUsed": "Soluta eum cumque consectetur.\nUnde repellendus quam corrupti esse accusantium veritatis sint.\nExercitationem eaque nulla debitis.\nSequi natus ipsam suscipit necessitatibus deserunt eligendi.\nPlaceat voluptate modi vitae blanditiis accusamus dicta qui ut esse.", + "pastOrPresentOrders": "Cumque culpa sunt commodi nostrum.\nInventore maiores possimus soluta ducimus illum vitae sunt dignissimos.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + } + ] + } + ], + "activityLog": [ + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "LITTEL SALLY", + "timestamp": "2019-12-10" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "MOEN JOVANNY", + "timestamp": "2022-10-07" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "WUNSCH KORBIN", + "timestamp": "2019-02-12" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "MARVIN FOREST", + "timestamp": "2021-02-03" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "HERZOG SARAI", + "timestamp": "2018-11-02" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "HANSEN JOCELYN", + "timestamp": "2015-08-06" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "O'KON CHANDLER", + "timestamp": "2014-01-23" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "LARSON NELLA", + "timestamp": "2019-10-01" + } + ], + "associatedSites": [ + { + "dateNoted": "2015-08-11", + "notes": "", + "parcelID": "18211", + "siteID": "15276", + "siteRegistry": true + }, + { + "dateNoted": "2018-06-06", + "notes": "", + "parcelID": "19217", + "siteID": "16157", + "siteRegistry": false + } + ] + }, + { + "uuid": "65458c95-8599-46e0-b978-f26b4b4b8909", + "siteID": 17548, + "address": "2240 Gregorio Ridge", + "latitude": 48.6754, + "longitude": -128.8191, + "lastUpdated": "2021-10-01", + "city": "Lake Ila", + "region": "Vancouver Island/Coast", + "victoriaFile": "26250-20/957", + "regionalFile": "N/A", + "parcelIDs": [ + 1141251, + 1123217, + 9987258, + 5326740, + 5035743 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2023-01-23", + "completed": "2014-09-04", + "initiated": "2015-12-08", + "ministryContact": "SAUER KATRINE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "createdAt": "2021-12-29", + "completed": "2023-07-28", + "initiated": "2015-01-10", + "ministryContact": "ROGAHN HARVEY", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "createdAt": "2017-02-27", + "completed": "2018-06-21", + "initiated": "2019-10-09", + "ministryContact": "ZIEMANN MARCELINA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "createdAt": "2020-10-31", + "completed": "2020-10-02", + "initiated": "2021-09-29", + "ministryContact": "PROSACCO PEARL", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + } + ], + "participants": [ + { + "name": "IPSUM", + "endDate": "2018-10-30", + "startDate": "2020-08-07", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2020-12-24", + "startDate": "2022-03-12", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "name": "IPSUM", + "endDate": "2015-01-15", + "startDate": "2018-09-19", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2016-12-01", + "startDate": "2015-10-13", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2022-04-28", + "startDate": "2022-01-07", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + } + ], + "suspectLandUses": [ + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2022-01-19 (described on Site Profile dated 2022-01-19)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2023-05-23 (described on Site Profile dated 2023-05-23)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + } + ], + "siteDisclosures": [ + { + "siteRegistry": true, + "dateReceived": "2021-02-17", + "dateCompleted": "2020-02-08", + "dateEntered": "2022-09-21", + "dateRegistrar": "2015-08-13", + "dateLocalAuthorityReceived": "2014-03-11", + "summary": "Dolorum atque earum.\nA quis quibusdam quia eaque quibusdam similique non quisquam.\nIncidunt aliquam nulla cupiditate error provident ea distinctio dolore.", + "informationUsed": "Quos quisquam placeat esse vel ratione.\nNon ipsa ea dolor soluta nostrum qui.\nSit aspernatur magni amet laudantium aliquid ex voluptatibus laborum incidunt.\nDeleniti nostrum alias suscipit.\nFacere eaque ratione eveniet nobis doloribus commodi aut aspernatur.", + "pastOrPresentOrders": "Officia pariatur adipisci.\nAsperiores dolor fugiat.\nCupiditate excepturi adipisci eius sapiente vel officiis.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + } + ] + }, + { + "siteRegistry": false, + "dateReceived": "2014-07-13", + "dateCompleted": "2017-12-28", + "dateEntered": "2017-11-11", + "dateRegistrar": "2014-09-25", + "dateLocalAuthorityReceived": "2019-10-13", + "summary": "Quia labore repudiandae ipsa.\nRatione animi sit iusto cumque sapiente suscipit.\nFacilis earum maxime numquam corrupti.", + "informationUsed": "Minus hic facere mollitia.\nQuibusdam commodi quidem.\nDoloribus occaecati nihil rerum.\nA pariatur dolorum enim fugit assumenda ab.", + "pastOrPresentOrders": "Error repudiandae alias adipisci similique quos ut dolores sit fuga.\nOccaecati eum tempore occaecati suscipit repellat nostrum laudantium quae atque.\nSint exercitationem fuga.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + } + ] + } + ], + "activityLog": [ + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "KUTCH DARIANA", + "timestamp": "2016-09-02" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "BAILEY TRISTIAN", + "timestamp": "2022-01-11" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "SENGER BRICE", + "timestamp": "2016-11-19" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "BRAUN SADIE", + "timestamp": "2021-01-15" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "ROMAGUERA BRANDON", + "timestamp": "2020-01-30" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "WEHNER-BOTSFORD LINWOOD", + "timestamp": "2015-06-20" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "BERNIER JADYN", + "timestamp": "2020-07-13" + } + ], + "associatedSites": [ + { + "dateNoted": "2013-11-04", + "notes": "", + "parcelID": "15356", + "siteID": "18685", + "siteRegistry": true + } + ] + }, + { + "uuid": "282b26fe-8cbe-49f8-96cb-a23d137832d6", + "siteID": 20762, + "address": "49405 Larson Drives", + "latitude": 52.4656, + "longitude": -120.2158, + "lastUpdated": "2018-01-23", + "city": "East Armando", + "region": "Mainland/Southwest", + "victoriaFile": "26250-20/12380", + "regionalFile": "N/A", + "parcelIDs": [ + 8748427, + 3791118, + 7263965, + 6806789, + 8848162 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2014-01-23", + "completed": "2014-08-07", + "initiated": "2015-04-26", + "ministryContact": "LANGOSH VINCENT", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "createdAt": "2023-04-10", + "completed": "2014-09-28", + "initiated": "2018-10-20", + "ministryContact": "HOMENICK-SCHUMM ALYSSON", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "createdAt": "2018-08-02", + "completed": "2019-08-26", + "initiated": "2017-08-28", + "ministryContact": "KUNZE TERRILL", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "createdAt": "2016-08-01", + "completed": "2021-01-31", + "initiated": "2014-06-13", + "ministryContact": "BREITENBERG WARD", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + } + ], + "participants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2016-05-01", + "startDate": "2021-11-15", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "name": "IPSUM", + "endDate": "2015-10-09", + "startDate": "2014-06-18", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2018-03-04", + "startDate": "2013-11-26", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + } + ], + "suspectLandUses": [ + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2016-12-18 (described on Site Profile dated 2016-12-18)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2017-05-07 (described on Site Profile dated 2017-05-07)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + } + ], + "siteDisclosures": [ + { + "siteRegistry": false, + "dateReceived": "2017-03-14", + "dateCompleted": "2016-05-16", + "dateEntered": "2018-06-06", + "dateRegistrar": "2023-03-19", + "dateLocalAuthorityReceived": "2016-05-15", + "summary": "Adipisci cum deserunt sequi sunt facilis dicta perspiciatis vero.\nVoluptates rerum eaque.", + "informationUsed": "Temporibus labore quo magnam neque quisquam itaque.\nQui cum quis velit sed dolores.\nNesciunt tempore aspernatur est enim quasi quaerat fugiat recusandae et.", + "pastOrPresentOrders": "Sapiente quaerat itaque.\nEveniet fugiat error provident vitae.\nEt illum quo officiis sed similique.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + } + ] + }, + { + "siteRegistry": true, + "dateReceived": "2022-08-19", + "dateCompleted": "2021-03-10", + "dateEntered": "2019-06-05", + "dateRegistrar": "2023-04-30", + "dateLocalAuthorityReceived": "2023-02-17", + "summary": "Totam eaque deleniti enim.\nAnimi dicta reprehenderit perspiciatis earum.", + "informationUsed": "Quod praesentium officia asperiores cupiditate dignissimos.\nMagni consequuntur id excepturi quas a asperiores aut dolores consequuntur.\nDolor eligendi reiciendis quas voluptates quidem.", + "pastOrPresentOrders": "Quibusdam repellat aperiam non tenetur odio.\nItaque consectetur suscipit omnis nostrum.\nCulpa occaecati quia commodi inventore culpa perferendis eum quisquam.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + } + ] + } + ], + "activityLog": [ + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "MILLER MILFORD", + "timestamp": "2020-01-03" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "RAYNOR-HARRIS ILA", + "timestamp": "2014-03-21" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "LUBOWITZ EMANUEL", + "timestamp": "2019-11-29" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "MARQUARDT LAURIANE", + "timestamp": "2016-06-13" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "RICE JUSTYN", + "timestamp": "2016-07-01" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "MAGGIO GAVIN", + "timestamp": "2017-10-26" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "HOWELL DENNIS", + "timestamp": "2019-03-22" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "SCHMIDT LESSIE", + "timestamp": "2018-05-30" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "BALISTRERI HESTER", + "timestamp": "2014-04-23" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "LUEILWITZ ESTELLA", + "timestamp": "2014-08-27" + } + ], + "associatedSites": [ + { + "dateNoted": "2019-03-04", + "notes": "", + "parcelID": "16250", + "siteID": "18201", + "siteRegistry": false + } + ] + }, + { + "uuid": "84fe9d77-5725-425c-8a2f-a7335ebdce2d", + "siteID": 18936, + "address": "954 Dean Avenue", + "latitude": 56.0672, + "longitude": -123.474, + "lastUpdated": "2015-10-11", + "city": "Port Johanfield", + "region": "Thompson-Okanagan", + "victoriaFile": "26250-20/7146", + "regionalFile": "N/A", + "parcelIDs": [ + 1597442, + 3737247, + 3328470, + 6936377, + 5171706 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2022-12-27", + "completed": "2017-12-31", + "initiated": "2018-10-22", + "ministryContact": "HACKETT MEGANE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "createdAt": "2016-10-28", + "completed": "2013-12-30", + "initiated": "2014-12-20", + "ministryContact": "WEHNER MISTY", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "createdAt": "2022-05-10", + "completed": "2020-03-30", + "initiated": "2015-02-14", + "ministryContact": "FRITSCH VANCE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + } + ], + "participants": [ + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2015-06-07", + "startDate": "2014-03-20", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "name": "IPSUM", + "endDate": "2021-04-24", + "startDate": "2016-11-11", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "name": "AMET, DOLOR SIT", + "endDate": "2017-09-15", + "startDate": "2021-02-23", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2014-01-16", + "startDate": "2017-09-09", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2017-04-08", + "startDate": "2015-11-26", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + } + ], + "suspectLandUses": [ + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2015-01-02 (described on Site Profile dated 2015-01-02)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2023-06-13 (described on Site Profile dated 2023-06-13)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + } + ], + "siteDisclosures": [ + { + "siteRegistry": true, + "dateReceived": "2017-10-08", + "dateCompleted": "2018-06-19", + "dateEntered": "2018-01-16", + "dateRegistrar": "2014-10-27", + "dateLocalAuthorityReceived": "2015-06-22", + "summary": "Omnis expedita accusamus minima quas aliquid rem deleniti ducimus reiciendis.", + "informationUsed": "Amet quas nihil fugit sint fuga voluptatem totam.\nOdit necessitatibus ut laudantium expedita pariatur cupiditate quos.\nOfficiis recusandae aliquam deleniti quo quos.", + "pastOrPresentOrders": "Quod totam earum odit error placeat perferendis nemo perspiciatis ad.\nQuasi distinctio quibusdam officiis mollitia ipsa.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + } + ] + }, + { + "siteRegistry": true, + "dateReceived": "2015-05-18", + "dateCompleted": "2015-05-09", + "dateEntered": "2023-03-24", + "dateRegistrar": "2015-09-02", + "dateLocalAuthorityReceived": "2018-09-27", + "summary": "Omnis doloribus voluptatibus nostrum alias accusantium expedita quae porro.\nFugit a quidem nostrum ad consectetur tempore dolorem.\nCupiditate corrupti perferendis.", + "informationUsed": "Libero voluptates at.\nDebitis nihil ipsa illo nulla ipsam eveniet facere eligendi.\nMinima commodi libero aut aperiam adipisci facilis et minima.\nImpedit veritatis ex quas asperiores sint.", + "pastOrPresentOrders": "Laborum quibusdam animi dignissimos eos distinctio blanditiis dolorum delectus.\nLabore eligendi occaecati dolore facere.\nPerspiciatis autem facere optio possimus eligendi voluptatem recusandae odio.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + } + ] + } + ], + "activityLog": [ + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "MURRAY ARIEL", + "timestamp": "2016-09-27" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "FRAMI HARRISON", + "timestamp": "2018-01-30" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "MAYERT BREANNE", + "timestamp": "2023-02-07" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "TOY MAYBELL", + "timestamp": "2014-05-30" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "HALVORSON RAHUL", + "timestamp": "2013-11-05" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "HOEGER SKYLA", + "timestamp": "2018-03-23" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "TURCOTTE DAMION", + "timestamp": "2018-03-21" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "UPTON-BEIER JABARI", + "timestamp": "2019-03-25" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "JAKUBOWSKI ZACHERY", + "timestamp": "2017-07-28" + } + ], + "associatedSites": [ + { + "dateNoted": "2021-05-05", + "notes": "", + "parcelID": "19203", + "siteID": "19962", + "siteRegistry": true + }, + { + "dateNoted": "2021-02-10", + "notes": "", + "parcelID": "18276", + "siteID": "17419", + "siteRegistry": true + } + ] + }, + { + "uuid": "1ee06b29-bda0-45b5-9dd3-efd5c132003e", + "siteID": 19349, + "address": "68823 Gorczany Crossing", + "latitude": 48.0189, + "longitude": -135.7699, + "lastUpdated": "2016-03-28", + "city": "Mittieboro", + "region": "Cariboo", + "victoriaFile": "26250-20/3930", + "regionalFile": "N/A", + "parcelIDs": [ + 9298437, + 6122730, + 1710950, + 270284, + 1865246 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2015-05-14", + "completed": "2023-01-25", + "initiated": "2014-03-27", + "ministryContact": "ROSENBAUM JADA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "createdAt": "2016-12-02", + "completed": "2023-01-19", + "initiated": "2020-03-24", + "ministryContact": "MUELLER CARMINE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "createdAt": "2019-04-12", + "completed": "2014-05-01", + "initiated": "2016-02-29", + "ministryContact": "PACOCHA MAEGAN", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + } + ], + "participants": [ + { + "name": "IPSUM", + "endDate": "2014-05-29", + "startDate": "2015-04-27", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "name": "IPSUM", + "endDate": "2020-10-24", + "startDate": "2013-12-05", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + } + ], + "suspectLandUses": [ + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2019-01-22 (described on Site Profile dated 2019-01-22)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2017-11-02 (described on Site Profile dated 2017-11-02)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + } + ], + "siteDisclosures": [ + { + "siteRegistry": true, + "dateReceived": "2022-01-21", + "dateCompleted": "2015-10-15", + "dateEntered": "2017-11-23", + "dateRegistrar": "2019-09-02", + "dateLocalAuthorityReceived": "2018-08-04", + "summary": "Dolor eius facere.\nCorporis voluptatem fuga eos at mollitia aperiam.", + "informationUsed": "Perferendis nobis fugit illum repudiandae earum quae exercitationem.\nAut labore accusantium amet fugiat.\nNecessitatibus quaerat quos nesciunt ea eius nemo.\nId reprehenderit nam molestiae laborum recusandae dolores ad.\nAut consectetur quas quidem voluptatum culpa eveniet.", + "pastOrPresentOrders": "Sed magnam eaque fugiat hic unde.\nQuasi accusantium doloremque est magnam magnam accusantium cumque.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + } + ] + }, + { + "siteRegistry": false, + "dateReceived": "2016-05-02", + "dateCompleted": "2022-07-01", + "dateEntered": "2015-09-21", + "dateRegistrar": "2014-07-29", + "dateLocalAuthorityReceived": "2018-01-26", + "summary": "Pariatur dicta aut minima facere.\nDolorum eum quos neque facilis molestias non.", + "informationUsed": "Minima soluta autem voluptas optio dolorem illum voluptate cum suscipit.\nNecessitatibus ea ipsam voluptatibus cum tenetur optio.\nIllo tempore iusto aliquam.\nSequi magnam explicabo voluptatibus accusamus consequuntur libero itaque accusamus.", + "pastOrPresentOrders": "Enim modi saepe fugit porro iusto culpa.\nNulla voluptatibus nam nemo veniam nobis consequatur ut iusto.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + } + ] + } + ], + "activityLog": [ + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "BERGSTROM AMARI", + "timestamp": "2022-05-01" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "NIENOW BETH", + "timestamp": "2018-01-20" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "JACOBI IGNACIO", + "timestamp": "2014-03-02" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "BOEHM MIREYA", + "timestamp": "2017-01-27" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "KIEHN ALBERTHA", + "timestamp": "2014-08-29" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "BEIER ROCKY", + "timestamp": "2014-05-04" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "BOYER MACEY", + "timestamp": "2019-06-04" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "WISOZK RONALDO", + "timestamp": "2019-05-02" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "JONES JUSTINA", + "timestamp": "2023-04-15" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "EMMERICH BERTA", + "timestamp": "2017-04-04" + } + ], + "associatedSites": [ + { + "dateNoted": "2023-01-01", + "notes": "", + "parcelID": "15930", + "siteID": "19397", + "siteRegistry": false + }, + { + "dateNoted": "2015-08-21", + "notes": "", + "parcelID": "18754", + "siteID": "20230", + "siteRegistry": false + }, + { + "dateNoted": "2022-10-19", + "notes": "", + "parcelID": "15991", + "siteID": "19246", + "siteRegistry": true + } + ] + }, + { + "uuid": "cb301469-57c3-4bc8-bf06-20494702cf10", + "siteID": 17805, + "address": "793 Rogahn Forges", + "latitude": 54.0998, + "longitude": -128.5528, + "lastUpdated": "2021-05-11", + "city": "East Rowanchester", + "region": "Mainland/Southwest", + "victoriaFile": "26250-20/15005", + "regionalFile": "N/A", + "parcelIDs": [ + 5930726, + 3730484, + 9243174, + 2428263, + 7106857 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2020-12-15", + "completed": "2019-08-21", + "initiated": "2015-06-27", + "ministryContact": "PROHASKA LILLA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "createdAt": "2023-01-10", + "completed": "2017-07-16", + "initiated": "2014-06-27", + "ministryContact": "FRITSCH LULU", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "createdAt": "2016-04-07", + "completed": "2018-07-20", + "initiated": "2015-04-25", + "ministryContact": "WILLMS ELIJAH", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "createdAt": "2018-09-19", + "completed": "2014-04-29", + "initiated": "2023-01-27", + "ministryContact": "HANSEN MARCOS", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "createdAt": "2019-05-17", + "completed": "2019-11-20", + "initiated": "2015-07-11", + "ministryContact": "CHAMPLIN KAREN", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + } + ], + "participants": [ + { + "name": "IPSUM", + "endDate": "2016-07-13", + "startDate": "2020-12-20", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "name": "IPSUM", + "endDate": "2019-08-08", + "startDate": "2016-03-13", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "name": "IPSUM", + "endDate": "2019-02-21", + "startDate": "2015-01-21", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "AMET, DOLOR SIT", + "endDate": "2021-07-13", + "startDate": "2017-04-22", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2018-07-09", + "startDate": "2014-01-23", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + } + ], + "suspectLandUses": [ + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2016-03-02 (described on Site Profile dated 2016-03-02)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2018-02-22 (described on Site Profile dated 2018-02-22)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2017-09-27 (described on Site Profile dated 2017-09-27)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + } + ], + "siteDisclosures": [ + { + "siteRegistry": true, + "dateReceived": "2020-10-30", + "dateCompleted": "2022-01-05", + "dateEntered": "2023-07-17", + "dateRegistrar": "2019-05-29", + "dateLocalAuthorityReceived": "2016-01-14", + "summary": "Culpa eligendi deleniti a mollitia porro ut minus velit.", + "informationUsed": "Voluptatem harum accusantium dolorem quam quaerat debitis sed sunt.\nNulla illum consequuntur occaecati minus.\nEx aut iusto at esse fugiat perferendis officiis distinctio.\nOccaecati a tenetur exercitationem dignissimos amet temporibus earum reprehenderit saepe.", + "pastOrPresentOrders": "Rerum officia voluptate quasi assumenda error minus unde sunt nobis.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + } + ] + }, + { + "siteRegistry": true, + "dateReceived": "2020-10-18", + "dateCompleted": "2013-11-01", + "dateEntered": "2017-02-20", + "dateRegistrar": "2014-08-22", + "dateLocalAuthorityReceived": "2021-12-29", + "summary": "Assumenda dolor maiores voluptatem ipsam velit quis.\nDignissimos mollitia itaque omnis accusantium temporibus.\nSoluta voluptatum mollitia illum ab adipisci quisquam ex.", + "informationUsed": "Odio possimus non nulla officiis.\nDoloremque nisi tempore repellendus illum eaque.\nVoluptates hic similique atque eaque.\nQuisquam in asperiores.", + "pastOrPresentOrders": "Qui officiis officia consequuntur.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + } + ] + } + ], + "activityLog": [ + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "JOHNSON TERRY", + "timestamp": "2014-04-06" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "KOZEY MARQUISE", + "timestamp": "2018-01-27" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "ADAMS-DURGAN JERMAINE", + "timestamp": "2022-09-18" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "YOST AMARA", + "timestamp": "2014-02-28" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "MARVIN DELBERT", + "timestamp": "2014-08-23" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "CONNELLY RICO", + "timestamp": "2015-08-29" + } + ], + "associatedSites": [ + { + "dateNoted": "2019-05-28", + "notes": "", + "parcelID": "19955", + "siteID": "20007", + "siteRegistry": true + }, + { + "dateNoted": "2016-09-10", + "notes": "", + "parcelID": "16062", + "siteID": "15461", + "siteRegistry": true + }, + { + "dateNoted": "2018-12-30", + "notes": "", + "parcelID": "18208", + "siteID": "18995", + "siteRegistry": false + } + ] + }, + { + "uuid": "73bf73a5-7182-4428-b539-0a3140cba784", + "siteID": 16920, + "address": "5476 Janelle Brook", + "latitude": 49.2514, + "longitude": -122.614, + "lastUpdated": "2017-10-04", + "city": "Harrisonburg", + "region": "Cariboo", + "victoriaFile": "26250-20/2591", + "regionalFile": "N/A", + "parcelIDs": [ + 1251596, + 160738, + 1286473, + 8427357, + 5816180 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2016-07-08", + "completed": "2014-02-17", + "initiated": "2021-01-09", + "ministryContact": "ERNSER QUENTIN", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "createdAt": "2014-12-29", + "completed": "2013-12-04", + "initiated": "2023-09-02", + "ministryContact": "HARVEY ALBERT", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "createdAt": "2021-09-01", + "completed": "2016-10-22", + "initiated": "2018-05-25", + "ministryContact": "TILLMAN SEAN", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "createdAt": "2016-10-06", + "completed": "2022-11-13", + "initiated": "2014-08-17", + "ministryContact": "FRANEY CRYSTEL", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + } + ], + "participants": [ + { + "name": "AMET, DOLOR SIT", + "endDate": "2014-03-04", + "startDate": "2020-12-02", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "IPSUM", + "endDate": "2022-03-06", + "startDate": "2022-11-04", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + } + ], + "suspectLandUses": [ + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2014-04-02 (described on Site Profile dated 2014-04-02)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2014-07-14 (described on Site Profile dated 2014-07-14)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2020-09-22 (described on Site Profile dated 2020-09-22)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2015-01-26 (described on Site Profile dated 2015-01-26)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + } + ], + "siteDisclosures": [ + { + "siteRegistry": true, + "dateReceived": "2015-05-17", + "dateCompleted": "2014-06-14", + "dateEntered": "2020-10-05", + "dateRegistrar": "2021-02-21", + "dateLocalAuthorityReceived": "2015-03-02", + "summary": "Rerum nihil atque eligendi praesentium eveniet.", + "informationUsed": "Quis assumenda atque minima a maiores incidunt minus perspiciatis.\nBlanditiis esse soluta quos quasi esse.\nPariatur distinctio sunt nulla sapiente unde incidunt cum iusto corporis.\nEnim omnis quaerat eum temporibus alias iusto sequi fugit ut.\nUllam ducimus earum illum minus est repellendus quas eos.", + "pastOrPresentOrders": "Sequi libero dolor.\nDoloribus similique ut dolore adipisci sapiente iusto autem reprehenderit deserunt.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + } + ] + }, + { + "siteRegistry": true, + "dateReceived": "2021-07-15", + "dateCompleted": "2023-10-02", + "dateEntered": "2022-11-28", + "dateRegistrar": "2014-05-12", + "dateLocalAuthorityReceived": "2022-01-19", + "summary": "Ipsam inventore ducimus qui reiciendis.\nEa dolore neque distinctio aperiam repudiandae et facilis voluptatum provident.", + "informationUsed": "Temporibus soluta architecto vitae rerum est sequi.\nError cupiditate maiores veritatis nulla consequuntur praesentium aperiam deserunt.\nAliquid quidem rerum nam porro tenetur.\nSit tempore dicta aspernatur cumque asperiores.", + "pastOrPresentOrders": "Magni doloremque eligendi quod ad fugit tempore accusamus.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + } + ] + } + ], + "activityLog": [ + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "VANDERVORT MADELYN", + "timestamp": "2023-10-03" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "AUFDERHAR GORDON", + "timestamp": "2016-06-20" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "ROLFSON JOAN", + "timestamp": "2023-06-23" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "DICKINSON ANTWON", + "timestamp": "2020-12-16" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "SCHAEFER KACI", + "timestamp": "2023-08-15" + } + ], + "associatedSites": [ + { + "dateNoted": "2019-05-29", + "notes": "", + "parcelID": "20527", + "siteID": "20586", + "siteRegistry": false + }, + { + "dateNoted": "2015-02-20", + "notes": "", + "parcelID": "15534", + "siteID": "15958", + "siteRegistry": true + } + ] + }, + { + "uuid": "21e6131d-7d4f-4211-834c-f78bb0c2f51d", + "siteID": 16746, + "address": "11522 Tanner Radial", + "latitude": 52.83, + "longitude": -135.4981, + "lastUpdated": "2022-06-03", + "city": "North Suzannestad", + "region": "Thompson-Okanagan", + "victoriaFile": "26250-20/10571", + "regionalFile": "N/A", + "parcelIDs": [ + 163096, + 3294688, + 7504458, + 3758936, + 5486059 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2015-06-09", + "completed": "2021-06-11", + "initiated": "2023-05-17", + "ministryContact": "HESSEL GLADYS", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "createdAt": "2020-05-11", + "completed": "2013-12-18", + "initiated": "2022-04-15", + "ministryContact": "REMPEL LILLY", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "createdAt": "2015-03-25", + "completed": "2022-09-26", + "initiated": "2022-12-29", + "ministryContact": "HERZOG GERALDINE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "createdAt": "2017-11-16", + "completed": "2020-04-23", + "initiated": "2020-09-13", + "ministryContact": "MCCLURE OTIS", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + } + ], + "participants": [ + { + "name": "AMET, DOLOR SIT", + "endDate": "2020-01-20", + "startDate": "2023-01-23", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2020-06-29", + "startDate": "2020-01-05", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + } + ], + "suspectLandUses": [ + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2020-12-24 (described on Site Profile dated 2020-12-24)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2022-01-17 (described on Site Profile dated 2022-01-17)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2017-09-20 (described on Site Profile dated 2017-09-20)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + } + ], + "siteDisclosures": [ + { + "siteRegistry": false, + "dateReceived": "2018-03-11", + "dateCompleted": "2015-08-24", + "dateEntered": "2013-11-06", + "dateRegistrar": "2023-02-18", + "dateLocalAuthorityReceived": "2015-07-17", + "summary": "Consequuntur possimus vitae molestiae dignissimos assumenda eius.\nTenetur tempora exercitationem deleniti voluptatibus laboriosam natus.\nVoluptatem reprehenderit illo sint magnam repudiandae occaecati repudiandae pariatur.", + "informationUsed": "Minima odio repudiandae velit molestiae quae maiores.\nDebitis facilis aspernatur dolorem placeat maiores dolor vel repudiandae.\nSint doloribus explicabo magni.\nEa quisquam sapiente reprehenderit blanditiis.\nDistinctio neque tenetur fugit at praesentium.", + "pastOrPresentOrders": "Accusamus fugiat reprehenderit laborum iusto unde autem.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + } + ] + }, + { + "siteRegistry": true, + "dateReceived": "2015-06-24", + "dateCompleted": "2017-10-30", + "dateEntered": "2014-07-10", + "dateRegistrar": "2017-07-26", + "dateLocalAuthorityReceived": "2014-08-08", + "summary": "Aut occaecati non inventore numquam nostrum nihil quod adipisci repellat.\nIn consequuntur atque enim architecto nemo eos quasi earum.", + "informationUsed": "Eum error odit ratione odio quam voluptate praesentium maiores ea.\nQuidem voluptatibus minima libero ex.\nInventore porro dolorem asperiores voluptate maxime dolores officiis odit tenetur.\nQuae itaque dolore aliquam consequuntur vero repudiandae id.\nReiciendis a doloremque doloribus.", + "pastOrPresentOrders": "Possimus quisquam minima.\nProvident reprehenderit odit consequatur omnis incidunt quam vitae quasi.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + } + ] + } + ], + "activityLog": [ + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "BAUCH VELMA", + "timestamp": "2015-03-06" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "MOHR DEVYN", + "timestamp": "2018-08-05" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "SMITHAM ELISABETH", + "timestamp": "2021-05-23" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "MORISSETTE JOHNPAUL", + "timestamp": "2020-05-27" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "WEST WADE", + "timestamp": "2014-03-03" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "POWLOWSKI LUCILE", + "timestamp": "2018-05-20" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "BAILEY RODERICK", + "timestamp": "2016-10-27" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "GRAHAM MARGE", + "timestamp": "2014-01-26" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "DECKOW MINERVA", + "timestamp": "2023-04-10" + } + ], + "associatedSites": [ + { + "dateNoted": "2017-06-29", + "notes": "", + "parcelID": "16714", + "siteID": "16220", + "siteRegistry": false + }, + { + "dateNoted": "2017-03-31", + "notes": "", + "parcelID": "17033", + "siteID": "17294", + "siteRegistry": false + }, + { + "dateNoted": "2014-04-11", + "notes": "", + "parcelID": "15244", + "siteID": "20734", + "siteRegistry": true + } + ] + }, + { + "uuid": "4e5f1609-cd37-4e75-ad79-9502eac9487e", + "siteID": 16916, + "address": "61824 Amber Creek", + "latitude": 56.805, + "longitude": -132.4429, + "lastUpdated": "2019-02-17", + "city": "Breitenbergworth", + "region": "Cariboo", + "victoriaFile": "26250-20/11467", + "regionalFile": "N/A", + "parcelIDs": [ + 5882481, + 728890, + 4665137, + 3298561, + 1898820 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2016-01-26", + "completed": "2014-06-30", + "initiated": "2022-04-25", + "ministryContact": "FRANEY BRANDY", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "createdAt": "2020-07-30", + "completed": "2022-05-11", + "initiated": "2015-09-20", + "ministryContact": "CORMIER SHANIA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "createdAt": "2018-12-25", + "completed": "2014-01-01", + "initiated": "2023-03-05", + "ministryContact": "GUSIKOWSKI CARMEL", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "createdAt": "2016-09-22", + "completed": "2019-12-06", + "initiated": "2016-09-08", + "ministryContact": "CHRISTIANSEN GUS", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "createdAt": "2014-01-11", + "completed": "2016-05-01", + "initiated": "2021-07-31", + "ministryContact": "ERDMAN JUDAH", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + } + ], + "participants": [ + { + "name": "AMET, DOLOR SIT", + "endDate": "2019-06-15", + "startDate": "2020-02-27", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "name": "AMET, DOLOR SIT", + "endDate": "2014-10-23", + "startDate": "2021-08-05", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2018-01-21", + "startDate": "2019-05-04", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2018-01-20", + "startDate": "2015-10-29", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2022-01-21", + "startDate": "2017-12-25", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + } + ], + "suspectLandUses": [ + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2014-02-20 (described on Site Profile dated 2014-02-20)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2022-09-13 (described on Site Profile dated 2022-09-13)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + } + ], + "siteDisclosures": [ + { + "siteRegistry": false, + "dateReceived": "2017-01-08", + "dateCompleted": "2016-03-14", + "dateEntered": "2022-06-02", + "dateRegistrar": "2019-04-04", + "dateLocalAuthorityReceived": "2016-02-05", + "summary": "Nostrum ipsam eum ad non quisquam.\nVeritatis soluta quo sapiente.", + "informationUsed": "Voluptatem ea beatae veniam rem omnis.\nDelectus vitae ipsam ad libero excepturi soluta mollitia.\nAsperiores reiciendis praesentium optio quaerat.\nMolestias dolores quod corrupti recusandae iusto.", + "pastOrPresentOrders": "Dolores cupiditate quod ad sed animi dolore similique doloribus.\nCupiditate voluptatum id nobis ab.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + } + ] + }, + { + "siteRegistry": true, + "dateReceived": "2015-05-29", + "dateCompleted": "2022-07-20", + "dateEntered": "2019-02-02", + "dateRegistrar": "2020-07-26", + "dateLocalAuthorityReceived": "2014-11-30", + "summary": "Quidem ex consectetur dolores provident perspiciatis similique.\nHic accusamus a molestiae eveniet ipsum cupiditate dolores iusto.", + "informationUsed": "Aspernatur a ipsum voluptatibus ea magnam.\nQuibusdam enim laudantium voluptas nam.\nNisi culpa natus modi iste corporis tempore molestiae alias.", + "pastOrPresentOrders": "Dolor voluptas repudiandae blanditiis.\nQuaerat error ex ex maxime possimus nulla corrupti officia.\nIusto officiis fugiat ex qui quaerat velit voluptate natus.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + } + ] + } + ], + "activityLog": [ + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "SHIELDS ROGERS", + "timestamp": "2018-09-08" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "FRITSCH HADLEY", + "timestamp": "2014-09-12" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "KOZEY RASHAWN", + "timestamp": "2016-06-21" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "HIRTHE BLAISE", + "timestamp": "2016-08-12" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "GREENFELDER DANIELLA", + "timestamp": "2020-06-26" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "PFANNERSTILL AUGUSTA", + "timestamp": "2017-08-10" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "NOLAN OSWALDO", + "timestamp": "2022-11-09" + } + ], + "associatedSites": [ + { + "dateNoted": "2018-09-13", + "notes": "", + "parcelID": "20402", + "siteID": "16320", + "siteRegistry": true + } + ] + }, + { + "uuid": "99a257e1-b59b-4a7a-a689-2599ad6c837f", + "siteID": 20609, + "address": "1124 Rice Rest", + "latitude": 48.6297, + "longitude": -126.3636, + "lastUpdated": "2019-11-01", + "city": "Port Oceane", + "region": "Mainland/Southwest", + "victoriaFile": "26250-20/8688", + "regionalFile": "N/A", + "parcelIDs": [ + 8215963, + 9683853, + 4943530, + 4780698, + 4666139 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2017-08-15", + "completed": "2016-11-30", + "initiated": "2019-05-30", + "ministryContact": "STOLTENBERG JAEDEN", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "createdAt": "2022-05-13", + "completed": "2021-09-16", + "initiated": "2016-08-10", + "ministryContact": "STOLTENBERG-GLEASON ALIZA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + } + ], + "participants": [ + { + "name": "AMET, DOLOR SIT", + "endDate": "2018-03-04", + "startDate": "2021-11-18", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2018-10-13", + "startDate": "2023-04-28", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2023-06-22", + "startDate": "2023-01-13", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2019-11-08", + "startDate": "2022-10-31", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + } + ], + "suspectLandUses": [ + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2023-10-05 (described on Site Profile dated 2023-10-05)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2014-12-27 (described on Site Profile dated 2014-12-27)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2022-03-16 (described on Site Profile dated 2022-03-16)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2019-10-05 (described on Site Profile dated 2019-10-05)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2023-05-10 (described on Site Profile dated 2023-05-10)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + } + ], + "siteDisclosures": [ + { + "siteRegistry": true, + "dateReceived": "2022-05-04", + "dateCompleted": "2016-12-10", + "dateEntered": "2018-04-24", + "dateRegistrar": "2016-01-30", + "dateLocalAuthorityReceived": "2016-12-27", + "summary": "Temporibus nesciunt quae quos ducimus ducimus consequatur unde.\nId soluta reiciendis vitae culpa neque sint consequatur asperiores maxime.\nSapiente voluptatibus sapiente rerum culpa provident sed.", + "informationUsed": "Fuga debitis quaerat expedita impedit aperiam odit.\nIure totam quisquam.\nAut voluptatem nesciunt exercitationem porro totam explicabo eum tenetur.", + "pastOrPresentOrders": "Sit a provident.\nRem non optio odio ullam optio nisi laboriosam cum.\nLaboriosam quod consequatur a ex omnis veritatis nihil praesentium.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + } + ] + } + ], + "activityLog": [ + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "HOEGER MAYBELLE", + "timestamp": "2022-02-14" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "YOST CALI", + "timestamp": "2020-01-13" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "GREENFELDER LILIAN", + "timestamp": "2016-11-20" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "FRANEY OLIVER", + "timestamp": "2018-02-20" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "NIENOW SELINA", + "timestamp": "2020-01-27" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "MANN CESAR", + "timestamp": "2015-02-24" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "HARVEY-BERGE KEITH", + "timestamp": "2020-11-15" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "RAU JENSEN", + "timestamp": "2015-06-14" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "BLANDA ADRIENNE", + "timestamp": "2020-06-15" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "ONDRICKA WILBURN", + "timestamp": "2016-11-09" + } + ], + "associatedSites": [ + { + "dateNoted": "2016-11-27", + "notes": "", + "parcelID": "20073", + "siteID": "18598", + "siteRegistry": true + }, + { + "dateNoted": "2023-09-13", + "notes": "", + "parcelID": "20096", + "siteID": "20571", + "siteRegistry": false + } + ] + }, + { + "uuid": "26f713fb-07bc-4f68-aeb4-1081f9da0f78", + "siteID": 19039, + "address": "79391 Hipolito Villages", + "latitude": 52.9087, + "longitude": -120.8511, + "lastUpdated": "2016-08-23", + "city": "Wichita", + "region": "Kootenay", + "victoriaFile": "26250-20/2367", + "regionalFile": "N/A", + "parcelIDs": [ + 7976520, + 3581320, + 992740, + 7154274, + 9964308 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2018-09-24", + "completed": "2016-07-16", + "initiated": "2022-02-03", + "ministryContact": "MERTZ TRYSTAN", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "createdAt": "2014-08-27", + "completed": "2021-06-06", + "initiated": "2022-03-24", + "ministryContact": "O'CONNER ELIEZER", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + } + ], + "participants": [ + { + "name": "IPSUM", + "endDate": "2015-07-10", + "startDate": "2019-05-12", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2021-07-26", + "startDate": "2022-04-16", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "name": "AMET, DOLOR SIT", + "endDate": "2023-06-24", + "startDate": "2023-05-13", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "AMET, DOLOR SIT", + "endDate": "2018-05-02", + "startDate": "2014-10-12", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + } + ], + "suspectLandUses": [ + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2013-12-14 (described on Site Profile dated 2013-12-14)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2021-07-06 (described on Site Profile dated 2021-07-06)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + } + ], + "siteDisclosures": [ + { + "siteRegistry": true, + "dateReceived": "2018-07-17", + "dateCompleted": "2016-07-16", + "dateEntered": "2014-12-20", + "dateRegistrar": "2017-03-08", + "dateLocalAuthorityReceived": "2013-11-07", + "summary": "Soluta quisquam totam qui maiores iste ut.", + "informationUsed": "Cum corrupti cum.\nQuod error ex fugit repellendus.\nError praesentium commodi qui velit sint dolore aliquam laboriosam esse.\nQuidem quis in quam.\nAliquam placeat eveniet maiores exercitationem voluptate.", + "pastOrPresentOrders": "Necessitatibus beatae est eum.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + } + ] + }, + { + "siteRegistry": true, + "dateReceived": "2021-05-17", + "dateCompleted": "2023-06-10", + "dateEntered": "2016-05-28", + "dateRegistrar": "2018-02-07", + "dateLocalAuthorityReceived": "2023-09-05", + "summary": "Voluptatum tempore aspernatur quo.\nDebitis rem eaque pariatur nam vitae deleniti.", + "informationUsed": "Neque nemo cupiditate nostrum voluptate veniam necessitatibus.\nAt dicta quas itaque voluptatem mollitia perferendis.\nIncidunt architecto inventore.", + "pastOrPresentOrders": "Accusantium totam error.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + } + ] + } + ], + "activityLog": [ + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "FRAMI JARRED", + "timestamp": "2021-12-10" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "KOEPP DAVONTE", + "timestamp": "2022-10-06" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "EMMERICH ROWLAND", + "timestamp": "2015-04-07" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "RIPPIN LUNA", + "timestamp": "2021-06-07" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "BORER CHET", + "timestamp": "2021-04-28" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "SMITH MARLON", + "timestamp": "2019-11-27" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "CHAMPLIN ALISHA", + "timestamp": "2017-08-12" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "HEIDENREICH JAZMYN", + "timestamp": "2019-08-14" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "SCHOEN HAYLEY", + "timestamp": "2018-07-22" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "KUHLMAN HORACE", + "timestamp": "2015-09-25" + } + ], + "associatedSites": [ + { + "dateNoted": "2016-01-04", + "notes": "", + "parcelID": "16223", + "siteID": "17181", + "siteRegistry": false + }, + { + "dateNoted": "2018-03-07", + "notes": "", + "parcelID": "18212", + "siteID": "18053", + "siteRegistry": false + }, + { + "dateNoted": "2021-03-22", + "notes": "", + "parcelID": "16674", + "siteID": "18840", + "siteRegistry": true + } + ] + }, + { + "uuid": "2339f321-ec90-47d8-a076-c782fdb570ab", + "siteID": 16893, + "address": "8359 Jaiden Walks", + "latitude": 48.7866, + "longitude": -137.0555, + "lastUpdated": "2016-02-01", + "city": "Randalland", + "region": "Kootenay", + "victoriaFile": "26250-20/753", + "regionalFile": "N/A", + "parcelIDs": [ + 4869177, + 580846, + 1999309, + 9840278, + 1807675 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2014-11-24", + "completed": "2015-11-27", + "initiated": "2017-05-16", + "ministryContact": "CONN-HILPERT CINDY", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "createdAt": "2018-08-06", + "completed": "2016-12-16", + "initiated": "2020-03-11", + "ministryContact": "BASHIRIAN KELSIE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "createdAt": "2019-10-06", + "completed": "2019-04-15", + "initiated": "2017-06-16", + "ministryContact": "CORMIER-LEFFLER KIANA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + } + ], + "participants": [ + { + "name": "IPSUM", + "endDate": "2018-07-20", + "startDate": "2020-02-11", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "name": "IPSUM", + "endDate": "2018-06-04", + "startDate": "2014-03-01", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "name": "IPSUM", + "endDate": "2022-02-09", + "startDate": "2014-04-22", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2015-10-12", + "startDate": "2020-05-16", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2015-08-19", + "startDate": "2017-12-04", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + } + ], + "suspectLandUses": [ + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2021-08-09 (described on Site Profile dated 2021-08-09)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2014-11-01 (described on Site Profile dated 2014-11-01)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2017-07-30 (described on Site Profile dated 2017-07-30)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + } + ], + "siteDisclosures": [ + { + "siteRegistry": true, + "dateReceived": "2014-12-07", + "dateCompleted": "2021-06-15", + "dateEntered": "2018-01-23", + "dateRegistrar": "2019-07-02", + "dateLocalAuthorityReceived": "2016-11-18", + "summary": "Nihil consequuntur dolorem odio hic recusandae quos ipsam sequi.\nBeatae molestias saepe itaque corrupti.\nId temporibus vel aperiam amet cum vel fugiat a.", + "informationUsed": "Est enim deserunt distinctio vitae placeat quaerat velit.\nVoluptatum nam officia ut placeat animi rem.\nEum voluptatibus animi.", + "pastOrPresentOrders": "Dolorem ipsum magni.\nVoluptate facilis occaecati beatae exercitationem aspernatur minima laborum odit.\nVoluptas temporibus dicta.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + } + ] + }, + { + "siteRegistry": true, + "dateReceived": "2015-11-02", + "dateCompleted": "2016-01-19", + "dateEntered": "2016-01-14", + "dateRegistrar": "2020-10-27", + "dateLocalAuthorityReceived": "2015-09-27", + "summary": "Reprehenderit est repellat quam.", + "informationUsed": "Odit doloremque quidem assumenda est sint illo perspiciatis voluptates porro.\nExplicabo aliquid officia facere fugiat eveniet ut.\nAd corporis odio asperiores.", + "pastOrPresentOrders": "Officiis blanditiis neque iure autem minima.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + } + ] + } + ], + "activityLog": [ + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "WILLMS LINNIE", + "timestamp": "2017-04-02" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "LEGROS DIMITRI", + "timestamp": "2017-07-31" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "ROHAN DIANA", + "timestamp": "2017-08-22" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "DAUGHERTY-DAVIS BARRY", + "timestamp": "2022-07-13" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "WILL VALENTINA", + "timestamp": "2018-09-15" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "HICKLE ARLENE", + "timestamp": "2014-04-03" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "AUER WAINO", + "timestamp": "2018-07-16" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "GRANT ELLIOTT", + "timestamp": "2020-02-02" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "FARRELL NIKO", + "timestamp": "2020-02-07" + } + ], + "associatedSites": [ + { + "dateNoted": "2022-08-14", + "notes": "", + "parcelID": "18950", + "siteID": "19159", + "siteRegistry": true + } + ] + }, + { + "uuid": "6398c78d-6c36-49d4-a904-42c1f5037b65", + "siteID": 18919, + "address": "761 Carissa Extensions", + "latitude": 48.552, + "longitude": -124.7041, + "lastUpdated": "2015-01-21", + "city": "North Oral", + "region": "Thompson-Okanagan", + "victoriaFile": "26250-20/14842", + "regionalFile": "N/A", + "parcelIDs": [ + 8378545, + 9182964, + 8453198, + 1677381, + 6132665 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2021-05-29", + "completed": "2022-08-12", + "initiated": "2017-08-28", + "ministryContact": "CONN KENYON", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "createdAt": "2022-07-21", + "completed": "2018-10-26", + "initiated": "2021-01-15", + "ministryContact": "SCHMITT GENOVEVA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + } + ], + "participants": [ + { + "name": "AMET, DOLOR SIT", + "endDate": "2020-05-01", + "startDate": "2016-10-21", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "name": "AMET, DOLOR SIT", + "endDate": "2015-11-08", + "startDate": "2016-01-12", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "IPSUM", + "endDate": "2017-08-31", + "startDate": "2019-05-30", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2023-02-25", + "startDate": "2018-02-26", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2015-09-19", + "startDate": "2019-08-31", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + } + ], + "suspectLandUses": [ + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2018-04-07 (described on Site Profile dated 2018-04-07)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2020-01-24 (described on Site Profile dated 2020-01-24)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + } + ], + "siteDisclosures": [ + { + "siteRegistry": false, + "dateReceived": "2020-02-29", + "dateCompleted": "2017-07-08", + "dateEntered": "2023-10-01", + "dateRegistrar": "2018-04-22", + "dateLocalAuthorityReceived": "2017-10-03", + "summary": "Perspiciatis dolor praesentium.", + "informationUsed": "Tenetur cupiditate aperiam quis dolorem.\nPlaceat a maiores facilis incidunt sequi nostrum porro.\nDicta ad officia totam doloribus.\nNisi fuga illo accusamus accusantium vel alias nulla.", + "pastOrPresentOrders": "Quis corrupti blanditiis distinctio tempora vero facilis.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + } + ] + } + ], + "activityLog": [ + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "HEIDENREICH ALYCE", + "timestamp": "2020-07-07" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "BERNIER PETE", + "timestamp": "2019-01-19" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "ARMSTRONG BRIDGETTE", + "timestamp": "2018-04-07" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "HAMMES SEAMUS", + "timestamp": "2014-01-05" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "GUTMANN ALDEN", + "timestamp": "2022-07-24" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "NITZSCHE DONALD", + "timestamp": "2019-12-15" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "TILLMAN RODGER", + "timestamp": "2022-10-02" + } + ], + "associatedSites": [ + { + "dateNoted": "2015-11-10", + "notes": "", + "parcelID": "18198", + "siteID": "16489", + "siteRegistry": false + }, + { + "dateNoted": "2020-06-19", + "notes": "", + "parcelID": "18166", + "siteID": "16418", + "siteRegistry": true + } + ] + }, + { + "uuid": "1f0be679-ebc7-4814-bced-513409481131", + "siteID": 17083, + "address": "97961 Merl Land", + "latitude": 51.8361, + "longitude": -126.0698, + "lastUpdated": "2019-05-02", + "city": "Katherinetown", + "region": "Kootenay", + "victoriaFile": "26250-20/12756", + "regionalFile": "N/A", + "parcelIDs": [ + 9907898, + 241172, + 9978651, + 7854422, + 2389240 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2019-05-06", + "completed": "2020-02-04", + "initiated": "2014-04-16", + "ministryContact": "BOYLE LEORA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "createdAt": "2018-10-18", + "completed": "2022-03-02", + "initiated": "2014-08-05", + "ministryContact": "MITCHELL ASIA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "createdAt": "2023-07-12", + "completed": "2020-11-16", + "initiated": "2020-12-29", + "ministryContact": "WISOZK RICKEY", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "createdAt": "2021-01-26", + "completed": "2014-07-27", + "initiated": "2016-01-26", + "ministryContact": "GERLACH MISTY", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + } + ], + "participants": [ + { + "name": "AMET, DOLOR SIT", + "endDate": "2021-10-14", + "startDate": "2018-01-03", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2015-04-27", + "startDate": "2021-11-06", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "AMET, DOLOR SIT", + "endDate": "2019-05-31", + "startDate": "2015-07-15", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + } + ], + "suspectLandUses": [ + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2014-09-29 (described on Site Profile dated 2014-09-29)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2023-02-05 (described on Site Profile dated 2023-02-05)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2019-05-16 (described on Site Profile dated 2019-05-16)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2015-11-24 (described on Site Profile dated 2015-11-24)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + } + ], + "siteDisclosures": [ + { + "siteRegistry": false, + "dateReceived": "2016-10-17", + "dateCompleted": "2023-05-17", + "dateEntered": "2022-07-29", + "dateRegistrar": "2021-09-29", + "dateLocalAuthorityReceived": "2015-05-17", + "summary": "Explicabo tempora fugit reiciendis voluptatum facilis rerum.", + "informationUsed": "Error voluptatibus iusto deserunt dolor.\nNon occaecati corporis.\nQuod sint modi cum est at.", + "pastOrPresentOrders": "Est cumque placeat vitae a odio dignissimos dolorum officia eaque.\nFacere cum hic veniam veritatis veniam perspiciatis.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + } + ] + } + ], + "activityLog": [ + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "RENNER KYRA", + "timestamp": "2021-07-23" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "O'REILLY KALEB", + "timestamp": "2016-10-19" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "COLLIER ANNAMARIE", + "timestamp": "2015-01-21" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "STOKES ANDY", + "timestamp": "2017-08-26" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "HACKETT EMMA", + "timestamp": "2016-10-06" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "WARD SHAUN", + "timestamp": "2020-09-21" + } + ], + "associatedSites": [ + { + "dateNoted": "2020-12-06", + "notes": "", + "parcelID": "17104", + "siteID": "18066", + "siteRegistry": true + }, + { + "dateNoted": "2023-05-20", + "notes": "", + "parcelID": "16610", + "siteID": "20188", + "siteRegistry": false + }, + { + "dateNoted": "2017-07-25", + "notes": "", + "parcelID": "15864", + "siteID": "17710", + "siteRegistry": true + } + ] + }, + { + "uuid": "65d847d1-7945-413e-b9b7-220e390e02db", + "siteID": 16067, + "address": "76237 Marisol Lane", + "latitude": 57.8335, + "longitude": -118.7289, + "lastUpdated": "2019-08-01", + "city": "Macon-Bibb County", + "region": "Thompson-Okanagan", + "victoriaFile": "26250-20/2207", + "regionalFile": "N/A", + "parcelIDs": [ + 3226332, + 4270676, + 6325188, + 6740583, + 7640412 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2013-12-04", + "completed": "2021-03-25", + "initiated": "2016-11-04", + "ministryContact": "STROMAN MARILYNE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "createdAt": "2019-03-24", + "completed": "2015-10-17", + "initiated": "2019-07-14", + "ministryContact": "MILLS GRETA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "createdAt": "2023-03-29", + "completed": "2021-10-02", + "initiated": "2015-11-22", + "ministryContact": "HARTMANN DESHAUN", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + } + ], + "participants": [ + { + "name": "IPSUM", + "endDate": "2015-06-29", + "startDate": "2015-01-20", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "IPSUM", + "endDate": "2016-06-07", + "startDate": "2021-11-03", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + } + ], + "suspectLandUses": [ + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2016-08-12 (described on Site Profile dated 2016-08-12)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2015-09-21 (described on Site Profile dated 2015-09-21)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2023-03-08 (described on Site Profile dated 2023-03-08)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2017-09-21 (described on Site Profile dated 2017-09-21)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + } + ], + "siteDisclosures": [ + { + "siteRegistry": false, + "dateReceived": "2023-01-23", + "dateCompleted": "2023-03-20", + "dateEntered": "2022-12-04", + "dateRegistrar": "2015-06-20", + "dateLocalAuthorityReceived": "2016-11-19", + "summary": "Neque cupiditate libero incidunt corrupti similique voluptatem animi pariatur.\nIllo quia in nobis sit explicabo reprehenderit deserunt iure.\nAccusantium harum ipsam eius rerum molestiae quia corrupti.", + "informationUsed": "Iure ad alias corporis iure quis rem ex.\nNulla quod aperiam magni ipsam possimus dolorum recusandae incidunt culpa.\nQuo itaque dolorum temporibus.\nSapiente debitis voluptatibus sapiente tenetur blanditiis cupiditate.\nQuod cupiditate numquam veritatis dicta optio atque error fugiat.", + "pastOrPresentOrders": "Id maxime vitae.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + } + ] + }, + { + "siteRegistry": false, + "dateReceived": "2023-02-19", + "dateCompleted": "2013-11-19", + "dateEntered": "2015-06-22", + "dateRegistrar": "2019-05-05", + "dateLocalAuthorityReceived": "2014-08-19", + "summary": "Recusandae sapiente ipsum aliquid accusamus odio nam.\nRerum eius explicabo dolorem.\nConsequuntur similique voluptatum.", + "informationUsed": "Praesentium repudiandae magnam exercitationem.\nCumque quae iste nostrum asperiores placeat maxime at.\nCumque facere quo iure sapiente aut consequuntur cumque.\nNeque autem culpa sunt reiciendis maiores.\nAspernatur sequi assumenda quidem corporis.", + "pastOrPresentOrders": "Assumenda eaque molestiae ea enim explicabo eligendi quo repudiandae.\nVoluptatem eveniet itaque iure temporibus praesentium.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + } + ] + } + ], + "activityLog": [ + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "GRIMES MELISA", + "timestamp": "2021-12-18" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "SCHMELER JEANNE", + "timestamp": "2013-11-08" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "GERLACH ORAL", + "timestamp": "2019-09-02" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "NIENOW-MOHR ADRIAN", + "timestamp": "2017-04-13" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "D'AMORE GRANT", + "timestamp": "2017-09-18" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "HARVEY ASTRID", + "timestamp": "2023-01-14" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "SPINKA FLAVIE", + "timestamp": "2020-11-02" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "LEDNER MORRIS", + "timestamp": "2018-09-14" + } + ], + "associatedSites": [ + { + "dateNoted": "2016-05-16", + "notes": "", + "parcelID": "19131", + "siteID": "18840", + "siteRegistry": true + }, + { + "dateNoted": "2022-02-26", + "notes": "", + "parcelID": "20054", + "siteID": "16758", + "siteRegistry": false + }, + { + "dateNoted": "2013-12-10", + "notes": "", + "parcelID": "17993", + "siteID": "17498", + "siteRegistry": false + } + ] + }, + { + "uuid": "4e551ddd-ae11-4693-b6e7-23914c09bed3", + "siteID": 19790, + "address": "1312 Willie Spur", + "latitude": 52.8514, + "longitude": -119.3484, + "lastUpdated": "2013-11-26", + "city": "Alycialand", + "region": " North Coast", + "victoriaFile": "26250-20/7452", + "regionalFile": "N/A", + "parcelIDs": [ + 6108211, + 3235438, + 2635615, + 9031060, + 8685316 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2021-08-20", + "completed": "2021-03-12", + "initiated": "2022-09-04", + "ministryContact": "LOWE ANTONETTE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "createdAt": "2014-06-08", + "completed": "2014-11-04", + "initiated": "2018-03-09", + "ministryContact": "KIEHN COLTON", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "createdAt": "2014-05-22", + "completed": "2022-03-21", + "initiated": "2021-03-20", + "ministryContact": "KUHLMAN REILLY", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + } + ], + "participants": [ + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2022-08-24", + "startDate": "2021-11-03", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2021-09-23", + "startDate": "2014-11-15", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + } + ], + "suspectLandUses": [ + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2021-12-29 (described on Site Profile dated 2021-12-29)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2018-02-01 (described on Site Profile dated 2018-02-01)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2019-08-25 (described on Site Profile dated 2019-08-25)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2023-06-18 (described on Site Profile dated 2023-06-18)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + } + ], + "siteDisclosures": [ + { + "siteRegistry": false, + "dateReceived": "2018-07-18", + "dateCompleted": "2016-05-14", + "dateEntered": "2016-03-30", + "dateRegistrar": "2019-05-18", + "dateLocalAuthorityReceived": "2020-02-29", + "summary": "Culpa animi ipsam minima molestias laborum ab.\nNostrum asperiores inventore quas provident eveniet officiis.", + "informationUsed": "Perspiciatis perferendis alias ex consequuntur architecto minima cum.\nConsectetur ad voluptatum incidunt tenetur tempore adipisci aliquam.\nVero temporibus possimus alias quas nemo modi sed occaecati impedit.", + "pastOrPresentOrders": "Laboriosam optio nesciunt eos.\nBlanditiis nam nobis esse consequatur aspernatur cum incidunt.\nDoloremque sint laudantium facere recusandae consequuntur quisquam.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + } + ] + } + ], + "activityLog": [ + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "O'REILLY HILTON", + "timestamp": "2023-09-03" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "WOLF JIMMY", + "timestamp": "2021-10-25" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "ERNSER LEILANI", + "timestamp": "2019-12-08" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "HARVEY GRANVILLE", + "timestamp": "2014-06-10" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "MORAR ROSCOE", + "timestamp": "2013-11-22" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "CORMIER FELIPE", + "timestamp": "2015-09-09" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "BRUEN LOURDES", + "timestamp": "2017-09-30" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "BRAKUS MONSERRATE", + "timestamp": "2017-08-17" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "VONRUEDEN NELLIE", + "timestamp": "2019-02-25" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "SCHMELER MITTIE", + "timestamp": "2020-04-02" + } + ], + "associatedSites": [ + { + "dateNoted": "2013-11-17", + "notes": "", + "parcelID": "15776", + "siteID": "18509", + "siteRegistry": true + }, + { + "dateNoted": "2014-06-09", + "notes": "", + "parcelID": "17612", + "siteID": "16813", + "siteRegistry": true + }, + { + "dateNoted": "2017-12-05", + "notes": "", + "parcelID": "17263", + "siteID": "16296", + "siteRegistry": false + } + ] + }, + { + "uuid": "859856ad-243b-4216-a5c3-c8ebe7fcbe96", + "siteID": 19013, + "address": "515 Amya Circle", + "latitude": 48.1734, + "longitude": -134.5103, + "lastUpdated": "2017-08-15", + "city": "Genovevaborough", + "region": "Cariboo", + "victoriaFile": "26250-20/6784", + "regionalFile": "N/A", + "parcelIDs": [ + 8450549, + 9709315, + 5779737, + 4025283, + 2184827 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2023-01-07", + "completed": "2016-08-19", + "initiated": "2023-04-19", + "ministryContact": "SKILES BRIGITTE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "createdAt": "2022-12-25", + "completed": "2013-10-26", + "initiated": "2018-03-02", + "ministryContact": "KOCH KAREEM", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "createdAt": "2018-01-14", + "completed": "2017-07-07", + "initiated": "2015-08-11", + "ministryContact": "KRAJCIK KARIANE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + } + ], + "participants": [ + { + "name": "AMET, DOLOR SIT", + "endDate": "2019-04-15", + "startDate": "2014-09-06", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2021-06-23", + "startDate": "2014-06-11", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "name": "AMET, DOLOR SIT", + "endDate": "2021-02-09", + "startDate": "2015-06-15", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2013-10-22", + "startDate": "2014-05-02", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "name": "AMET, DOLOR SIT", + "endDate": "2019-11-01", + "startDate": "2021-12-23", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + } + ], + "suspectLandUses": [ + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2022-09-01 (described on Site Profile dated 2022-09-01)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2016-10-17 (described on Site Profile dated 2016-10-17)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + } + ], + "siteDisclosures": [ + { + "siteRegistry": true, + "dateReceived": "2014-07-20", + "dateCompleted": "2020-11-23", + "dateEntered": "2020-08-07", + "dateRegistrar": "2015-11-03", + "dateLocalAuthorityReceived": "2018-11-09", + "summary": "Enim minus veniam.\nMaiores modi deleniti ullam quos assumenda unde saepe minus.", + "informationUsed": "Quos aliquid nam provident tempore voluptate neque omnis ea.\nEx itaque quos excepturi qui voluptatem.\nDolor voluptatum adipisci.", + "pastOrPresentOrders": "Fuga autem debitis dolorem corrupti laboriosam.\nLaudantium hic dolorum voluptas earum.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + } + ] + } + ], + "activityLog": [ + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "WIEGAND MINA", + "timestamp": "2016-07-04" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "HARBER YASMINE", + "timestamp": "2016-02-17" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "ABSHIRE GUIDO", + "timestamp": "2022-12-19" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "POLLICH EWELL", + "timestamp": "2017-10-13" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "LUETTGEN HOLLIS", + "timestamp": "2022-11-14" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "HOPPE UNA", + "timestamp": "2022-07-31" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "EMMERICH NATHANAEL", + "timestamp": "2015-03-01" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "RAU GAGE", + "timestamp": "2021-05-03" + } + ], + "associatedSites": [ + { + "dateNoted": "2022-04-07", + "notes": "", + "parcelID": "16848", + "siteID": "20782", + "siteRegistry": true + }, + { + "dateNoted": "2017-04-03", + "notes": "", + "parcelID": "19817", + "siteID": "18839", + "siteRegistry": false + } + ] + }, + { + "uuid": "e7eeead2-f8ec-4bfe-b0f6-f91a3b7e8e03", + "siteID": 19075, + "address": "7034 Hilll Hollow", + "latitude": 48.3946, + "longitude": -131.3523, + "lastUpdated": "2014-11-09", + "city": "New Ginafort", + "region": "Cariboo", + "victoriaFile": "26250-20/7822", + "regionalFile": "N/A", + "parcelIDs": [ + 8394632, + 8082260, + 4366558, + 3426447, + 6738856 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2020-07-30", + "completed": "2022-10-22", + "initiated": "2014-08-25", + "ministryContact": "BREKKE RYLEY", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "createdAt": "2023-07-18", + "completed": "2014-10-24", + "initiated": "2018-09-13", + "ministryContact": "HARVEY ALVERA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "createdAt": "2023-07-11", + "completed": "2022-03-22", + "initiated": "2022-06-19", + "ministryContact": "KOCH ELMER", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + } + ], + "participants": [ + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2015-03-21", + "startDate": "2019-05-03", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "name": "AMET, DOLOR SIT", + "endDate": "2020-10-20", + "startDate": "2016-02-23", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2017-01-21", + "startDate": "2015-08-15", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "IPSUM", + "endDate": "2015-01-18", + "startDate": "2014-12-03", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2014-04-18", + "startDate": "2019-06-22", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + } + ], + "suspectLandUses": [ + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2014-05-19 (described on Site Profile dated 2014-05-19)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2016-10-16 (described on Site Profile dated 2016-10-16)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2016-06-29 (described on Site Profile dated 2016-06-29)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2020-09-22 (described on Site Profile dated 2020-09-22)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2015-02-24 (described on Site Profile dated 2015-02-24)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + } + ], + "siteDisclosures": [ + { + "siteRegistry": true, + "dateReceived": "2022-09-05", + "dateCompleted": "2014-09-08", + "dateEntered": "2015-01-03", + "dateRegistrar": "2020-04-08", + "dateLocalAuthorityReceived": "2017-08-03", + "summary": "Numquam ut asperiores necessitatibus ea nulla ipsa recusandae recusandae ad.\nAb eligendi similique.", + "informationUsed": "Sint eligendi nulla.\nRatione impedit vitae quasi.\nSunt dolore provident ipsum error nemo doloribus est vel a.\nRatione doloremque quisquam facere exercitationem odio qui dolorem repellat dicta.\nExercitationem porro officia.", + "pastOrPresentOrders": "Amet esse repudiandae dolor perspiciatis.\nInventore expedita dicta officia dolor illo sequi quis corporis.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + } + ] + } + ], + "activityLog": [ + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "EBERT-OSINSKI MARJOLAINE", + "timestamp": "2013-10-26" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "CHAMPLIN CAREY", + "timestamp": "2015-03-02" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "VOLKMAN ROGERS", + "timestamp": "2017-01-03" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "LARSON ELDRED", + "timestamp": "2015-10-08" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "BAILEY MARGUERITE", + "timestamp": "2017-10-01" + } + ], + "associatedSites": [ + { + "dateNoted": "2020-08-27", + "notes": "", + "parcelID": "18123", + "siteID": "19590", + "siteRegistry": false + } + ] + }, + { + "uuid": "ab255fd9-239c-4557-a2ce-80c61c39efcb", + "siteID": 16752, + "address": "274 Kertzmann Fork", + "latitude": 48.9094, + "longitude": -121.2263, + "lastUpdated": "2023-02-13", + "city": "San Bernardino", + "region": "Mainland/Southwest", + "victoriaFile": "26250-20/18917", + "regionalFile": "N/A", + "parcelIDs": [ + 3761052, + 5396063, + 8519103, + 6724538, + 3202089 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2023-05-08", + "completed": "2019-03-09", + "initiated": "2018-04-11", + "ministryContact": "O'CONNELL DIMITRI", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "createdAt": "2014-01-05", + "completed": "2016-11-08", + "initiated": "2014-01-21", + "ministryContact": "SCHULIST JULIO", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "createdAt": "2013-12-19", + "completed": "2015-01-28", + "initiated": "2023-09-10", + "ministryContact": "FRIESEN BENNETT", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + } + ], + "participants": [ + { + "name": "AMET, DOLOR SIT", + "endDate": "2020-04-29", + "startDate": "2023-07-09", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2017-04-25", + "startDate": "2020-08-08", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2020-09-08", + "startDate": "2017-09-24", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "IPSUM", + "endDate": "2022-03-02", + "startDate": "2015-05-18", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2018-03-02", + "startDate": "2022-03-19", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + } + ], + "suspectLandUses": [ + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2015-05-23 (described on Site Profile dated 2015-05-23)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2022-03-26 (described on Site Profile dated 2022-03-26)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2023-03-10 (described on Site Profile dated 2023-03-10)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + } + ], + "siteDisclosures": [ + { + "siteRegistry": true, + "dateReceived": "2023-07-27", + "dateCompleted": "2015-07-29", + "dateEntered": "2017-12-06", + "dateRegistrar": "2023-03-17", + "dateLocalAuthorityReceived": "2023-07-08", + "summary": "Iste ea repellat voluptas ratione ad adipisci.\nCorporis excepturi iusto nam officia explicabo.\nAccusantium quod sed corporis neque consectetur voluptates quo officia voluptate.", + "informationUsed": "Delectus consequuntur molestias consectetur dolor laborum laudantium alias explicabo.\nProvident esse eius error sit accusantium totam similique nostrum debitis.\nCorporis et aut enim quasi.\nVoluptatibus veritatis ipsa laboriosam laudantium optio.\nArchitecto laboriosam modi.", + "pastOrPresentOrders": "Harum necessitatibus minus similique vel ipsa debitis architecto sed ipsam.\nEum dolorum debitis esse nisi amet debitis molestiae sequi inventore.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + } + ] + }, + { + "siteRegistry": true, + "dateReceived": "2023-04-21", + "dateCompleted": "2016-04-12", + "dateEntered": "2022-07-10", + "dateRegistrar": "2017-07-05", + "dateLocalAuthorityReceived": "2016-06-27", + "summary": "Quam totam modi est nisi.\nIure explicabo doloribus voluptates enim ducimus.\nAnimi unde ipsa provident.", + "informationUsed": "Laborum repellat porro aliquid nesciunt cum sed.\nVelit mollitia ipsa pariatur assumenda cumque vero quo minus.\nDicta pariatur natus molestiae.\nFuga reprehenderit voluptate libero veniam.", + "pastOrPresentOrders": "Vitae eos mollitia.\nCorrupti at provident occaecati soluta distinctio dolorem maiores minima.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + } + ] + } + ], + "activityLog": [ + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "MANN LAWSON", + "timestamp": "2022-07-27" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "EMMERICH JAMESON", + "timestamp": "2022-04-13" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "GLEICHNER KAREN", + "timestamp": "2022-04-19" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "HAAG FRIEDA", + "timestamp": "2014-02-25" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "KULAS KAILYN", + "timestamp": "2013-11-17" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "HEANEY KANE", + "timestamp": "2017-09-04" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "HIRTHE TIMMY", + "timestamp": "2021-08-14" + } + ], + "associatedSites": [ + { + "dateNoted": "2019-04-14", + "notes": "", + "parcelID": "20662", + "siteID": "19011", + "siteRegistry": true + }, + { + "dateNoted": "2023-08-30", + "notes": "", + "parcelID": "17292", + "siteID": "18179", + "siteRegistry": true + } + ] + }, + { + "uuid": "6abf170b-0908-42c0-ae7d-a2329216527f", + "siteID": 17974, + "address": "963 Klein Fork", + "latitude": 52.9428, + "longitude": -125.6187, + "lastUpdated": "2018-10-03", + "city": "Hudsonton", + "region": "Kootenay", + "victoriaFile": "26250-20/15088", + "regionalFile": "N/A", + "parcelIDs": [ + 5455596, + 9718815, + 108437, + 9951102, + 2043986 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2016-05-26", + "completed": "2019-01-22", + "initiated": "2016-03-01", + "ministryContact": "NIENOW SHANNA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "createdAt": "2016-05-03", + "completed": "2018-08-24", + "initiated": "2021-10-09", + "ministryContact": "HEANEY SHANNY", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "createdAt": "2019-11-16", + "completed": "2020-08-28", + "initiated": "2017-03-28", + "ministryContact": "GLOVER DELILAH", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "createdAt": "2015-04-08", + "completed": "2014-11-08", + "initiated": "2015-03-13", + "ministryContact": "KUTCH TRENT", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "createdAt": "2018-10-24", + "completed": "2019-12-28", + "initiated": "2015-03-16", + "ministryContact": "BODE LYDA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + } + ], + "participants": [ + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2015-11-06", + "startDate": "2022-03-02", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "name": "AMET, DOLOR SIT", + "endDate": "2014-02-18", + "startDate": "2020-05-17", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "name": "IPSUM", + "endDate": "2017-10-02", + "startDate": "2023-07-09", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2018-10-09", + "startDate": "2020-04-29", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "name": "AMET, DOLOR SIT", + "endDate": "2019-12-22", + "startDate": "2019-10-07", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + } + ], + "suspectLandUses": [ + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2014-04-05 (described on Site Profile dated 2014-04-05)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2014-12-07 (described on Site Profile dated 2014-12-07)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2020-11-20 (described on Site Profile dated 2020-11-20)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + } + ], + "siteDisclosures": [ + { + "siteRegistry": true, + "dateReceived": "2018-07-21", + "dateCompleted": "2014-03-26", + "dateEntered": "2020-05-18", + "dateRegistrar": "2015-10-19", + "dateLocalAuthorityReceived": "2013-12-04", + "summary": "Assumenda reprehenderit dolore repellat culpa molestias fuga enim nam dicta.", + "informationUsed": "Cum delectus autem vero dolores expedita sint nostrum.\nMagni tempora molestiae.\nIllum fugit est at.\nTenetur qui ab voluptas iusto repellendus at ullam.", + "pastOrPresentOrders": "In esse tempora molestias maiores.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + } + ] + }, + { + "siteRegistry": false, + "dateReceived": "2023-04-11", + "dateCompleted": "2021-05-17", + "dateEntered": "2016-12-27", + "dateRegistrar": "2017-08-22", + "dateLocalAuthorityReceived": "2020-04-02", + "summary": "Nemo dignissimos laudantium libero expedita sed aliquid quaerat repudiandae.\nNihil consequuntur dolor amet nemo vel magnam occaecati.\nNostrum nihil amet consectetur eius.", + "informationUsed": "Nam beatae accusamus eius sit.\nProvident quae vitae tempore asperiores in accusamus eum dicta.\nAspernatur accusamus magni beatae repellendus.", + "pastOrPresentOrders": "Soluta unde doloribus.\nTenetur expedita illum dicta itaque.\nFuga ratione occaecati ea est itaque ducimus maxime dolorum eaque.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + } + ] + } + ], + "activityLog": [ + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "KLOCKO ELNORA", + "timestamp": "2016-08-23" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "PURDY ZACHARIAH", + "timestamp": "2018-08-18" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "MOEN GRACIELA", + "timestamp": "2021-12-17" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "LEDNER-CRONA MATTEO", + "timestamp": "2023-06-04" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "SCHUSTER FRIEDA", + "timestamp": "2015-01-09" + } + ], + "associatedSites": [ + { + "dateNoted": "2023-08-11", + "notes": "", + "parcelID": "16332", + "siteID": "17249", + "siteRegistry": false + }, + { + "dateNoted": "2023-04-26", + "notes": "", + "parcelID": "20858", + "siteID": "17450", + "siteRegistry": true + } + ] + }, + { + "uuid": "cb6551c8-271f-4385-82a8-fc21425f1353", + "siteID": 20942, + "address": "1818 Lucy Keys", + "latitude": 48.0791, + "longitude": -135.8696, + "lastUpdated": "2023-07-05", + "city": "Lake Caitlyn", + "region": "Kootenay", + "victoriaFile": "26250-20/11695", + "regionalFile": "N/A", + "parcelIDs": [ + 2374230, + 3828913, + 9359093, + 3438106, + 1039067 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2014-01-22", + "completed": "2022-01-29", + "initiated": "2017-07-02", + "ministryContact": "MCGLYNN BRANNON", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "createdAt": "2016-05-23", + "completed": "2022-12-03", + "initiated": "2017-03-05", + "ministryContact": "WILDERMAN CARLI", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + } + ], + "participants": [ + { + "name": "AMET, DOLOR SIT", + "endDate": "2023-06-01", + "startDate": "2016-09-26", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "name": "AMET, DOLOR SIT", + "endDate": "2015-04-27", + "startDate": "2015-11-21", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "name": "IPSUM", + "endDate": "2019-01-07", + "startDate": "2022-06-30", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "name": "AMET, DOLOR SIT", + "endDate": "2019-08-16", + "startDate": "2023-06-17", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + } + ], + "suspectLandUses": [ + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2021-09-15 (described on Site Profile dated 2021-09-15)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2014-10-20 (described on Site Profile dated 2014-10-20)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + } + ], + "siteDisclosures": [ + { + "siteRegistry": false, + "dateReceived": "2013-11-17", + "dateCompleted": "2021-11-29", + "dateEntered": "2017-11-25", + "dateRegistrar": "2019-11-28", + "dateLocalAuthorityReceived": "2021-07-10", + "summary": "Quisquam quis non earum minus molestias enim natus doloremque voluptatem.\nMolestias ut autem non ullam eaque.", + "informationUsed": "Temporibus numquam provident eligendi vero laborum.\nEx in eos iusto ex quis voluptate harum odio voluptas.\nRem necessitatibus laboriosam.\nNemo ad quidem ratione tenetur id ea.\nReiciendis impedit dolorum quos doloribus quasi modi sunt.", + "pastOrPresentOrders": "Excepturi in libero excepturi odit magni consequatur eos aliquam.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + } + ] + } + ], + "activityLog": [ + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "GUTKOWSKI CARMINE", + "timestamp": "2015-04-11" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "SIPES JARRETT", + "timestamp": "2019-03-25" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "BARTOLETTI FRANCESCA", + "timestamp": "2016-02-27" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "SATTERFIELD ELDON", + "timestamp": "2018-08-14" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "PACOCHA MARJOLAINE", + "timestamp": "2017-03-02" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "HALEY DAMARIS", + "timestamp": "2022-05-13" + } + ], + "associatedSites": [ + { + "dateNoted": "2023-06-25", + "notes": "", + "parcelID": "16030", + "siteID": "15594", + "siteRegistry": true + }, + { + "dateNoted": "2016-07-05", + "notes": "", + "parcelID": "19461", + "siteID": "17826", + "siteRegistry": false + } + ] + }, + { + "uuid": "f37bcc20-98fe-49bd-8d76-b0d4cf7b035a", + "siteID": 19103, + "address": "64372 Ronny Mission", + "latitude": 54.6691, + "longitude": -125.9339, + "lastUpdated": "2016-09-11", + "city": "South Roycester", + "region": "Vancouver Island/Coast", + "victoriaFile": "26250-20/18592", + "regionalFile": "N/A", + "parcelIDs": [ + 679372, + 932527, + 4775720, + 7513111, + 2039558 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2019-04-13", + "completed": "2023-04-09", + "initiated": "2014-04-13", + "ministryContact": "VANDERVORT JOANNY", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "createdAt": "2019-05-28", + "completed": "2017-07-07", + "initiated": "2019-06-27", + "ministryContact": "ERNSER JEFF", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "createdAt": "2021-01-04", + "completed": "2021-08-23", + "initiated": "2016-04-16", + "ministryContact": "STARK ZENA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "createdAt": "2014-12-17", + "completed": "2018-10-16", + "initiated": "2020-08-30", + "ministryContact": "SANFORD CHANDLER", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + } + ], + "participants": [ + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2014-11-09", + "startDate": "2018-06-20", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "name": "AMET, DOLOR SIT", + "endDate": "2021-03-28", + "startDate": "2015-03-03", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "name": "IPSUM", + "endDate": "2018-11-27", + "startDate": "2015-04-27", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2023-01-24", + "startDate": "2015-02-06", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + } + ], + "suspectLandUses": [ + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2014-10-03 (described on Site Profile dated 2014-10-03)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2016-01-05 (described on Site Profile dated 2016-01-05)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2023-08-01 (described on Site Profile dated 2023-08-01)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2019-10-26 (described on Site Profile dated 2019-10-26)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + } + ], + "siteDisclosures": [ + { + "siteRegistry": true, + "dateReceived": "2016-06-24", + "dateCompleted": "2014-09-30", + "dateEntered": "2021-10-26", + "dateRegistrar": "2016-11-24", + "dateLocalAuthorityReceived": "2016-06-29", + "summary": "Ad eligendi ipsa.", + "informationUsed": "Fuga deleniti at corrupti.\nSequi molestiae dolorem laboriosam eius labore.\nInventore minima repellendus ab quo placeat laudantium ipsam sapiente perspiciatis.", + "pastOrPresentOrders": "Reiciendis labore inventore aliquid delectus ex eos.\nAut recusandae occaecati ullam nam libero nulla veniam quam.\nItaque alias nulla.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + } + ] + } + ], + "activityLog": [ + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "ROGAHN QUINTEN", + "timestamp": "2015-04-25" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "ERNSER EMMANUELLE", + "timestamp": "2014-10-19" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "DECKOW GUSSIE", + "timestamp": "2014-05-04" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "NITZSCHE VIDAL", + "timestamp": "2019-07-24" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "MUELLER EVELINE", + "timestamp": "2017-02-13" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "KUVALIS-SCHIMMEL BLANCA", + "timestamp": "2016-08-02" + } + ], + "associatedSites": [ + { + "dateNoted": "2023-01-13", + "notes": "", + "parcelID": "18517", + "siteID": "16220", + "siteRegistry": true + } + ] + }, + { + "uuid": "5bdd4f24-212f-42fc-9fd2-a7cbb2b0a7a7", + "siteID": 17281, + "address": "2294 Rippin Hills", + "latitude": 52.3264, + "longitude": -127.1665, + "lastUpdated": "2020-06-20", + "city": "Marionborough", + "region": " North Coast", + "victoriaFile": "26250-20/1466", + "regionalFile": "N/A", + "parcelIDs": [ + 299912, + 8347732, + 9479261, + 9874824, + 2113548 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2015-02-04", + "completed": "2016-01-11", + "initiated": "2017-03-13", + "ministryContact": "KOCH DREW", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "createdAt": "2023-08-14", + "completed": "2015-12-02", + "initiated": "2021-03-13", + "ministryContact": "SPORER DARBY", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "createdAt": "2018-08-03", + "completed": "2015-06-05", + "initiated": "2016-09-12", + "ministryContact": "PARISIAN HOLDEN", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + } + ], + "participants": [ + { + "name": "AMET, DOLOR SIT", + "endDate": "2014-08-23", + "startDate": "2018-04-16", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2016-05-09", + "startDate": "2016-07-04", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "name": "IPSUM", + "endDate": "2017-02-19", + "startDate": "2019-04-24", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2023-08-07", + "startDate": "2020-07-01", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "AMET, DOLOR SIT", + "endDate": "2021-09-18", + "startDate": "2020-10-21", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + } + ], + "suspectLandUses": [ + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2014-08-21 (described on Site Profile dated 2014-08-21)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2021-10-18 (described on Site Profile dated 2021-10-18)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2022-11-28 (described on Site Profile dated 2022-11-28)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2016-12-01 (described on Site Profile dated 2016-12-01)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + } + ], + "siteDisclosures": [ + { + "siteRegistry": false, + "dateReceived": "2023-03-01", + "dateCompleted": "2023-02-17", + "dateEntered": "2013-11-29", + "dateRegistrar": "2017-11-02", + "dateLocalAuthorityReceived": "2020-03-11", + "summary": "Nobis minus saepe.", + "informationUsed": "Rerum libero illum neque quos.\nMolestias quisquam ratione facilis placeat atque dignissimos.\nIllo error culpa ipsa.\nLaborum nobis aliquid dolorum enim.", + "pastOrPresentOrders": "Eligendi quod cupiditate officia.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + } + ] + } + ], + "activityLog": [ + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "LUBOWITZ BARTHOLOME", + "timestamp": "2021-07-22" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "WOLF LINDSEY", + "timestamp": "2021-02-28" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "GRAHAM MERL", + "timestamp": "2018-07-01" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "HARBER HORACE", + "timestamp": "2015-01-09" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "BRAKUS KEN", + "timestamp": "2015-07-04" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "MCCLURE MARGUERITE", + "timestamp": "2021-10-10" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "WEIMANN BRAIN", + "timestamp": "2022-10-24" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "STROMAN ELVERA", + "timestamp": "2018-02-22" + } + ], + "associatedSites": [ + { + "dateNoted": "2022-08-15", + "notes": "", + "parcelID": "15226", + "siteID": "15592", + "siteRegistry": false + }, + { + "dateNoted": "2021-07-24", + "notes": "", + "parcelID": "18005", + "siteID": "18066", + "siteRegistry": true + }, + { + "dateNoted": "2014-09-10", + "notes": "", + "parcelID": "17267", + "siteID": "16303", + "siteRegistry": true + } + ] + }, + { + "uuid": "204bef86-6885-4c73-9699-60d2f02f42b1", + "siteID": 17854, + "address": "8977 Quigley Manor", + "latitude": 52.022, + "longitude": -126.0358, + "lastUpdated": "2015-10-07", + "city": "Raphaelfield", + "region": "Vancouver Island/Coast", + "victoriaFile": "26250-20/11535", + "regionalFile": "N/A", + "parcelIDs": [ + 1628482, + 5368136, + 9258663, + 2937698, + 9973151 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2019-05-13", + "completed": "2022-12-20", + "initiated": "2022-05-05", + "ministryContact": "PREDOVIC SETH", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "createdAt": "2020-11-09", + "completed": "2019-05-04", + "initiated": "2017-09-01", + "ministryContact": "HOWE CHRISTINE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "createdAt": "2018-04-25", + "completed": "2017-11-09", + "initiated": "2020-01-17", + "ministryContact": "THOMPSON VIVIANE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "createdAt": "2023-09-14", + "completed": "2021-07-09", + "initiated": "2020-11-16", + "ministryContact": "TORPHY THEA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", @@ -35677,13 +57444,180 @@ "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true + } + ], + "participants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2014-10-26", + "startDate": "2022-09-20", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true }, { - "createdAt": "2016-01-22", - "completed": "2017-10-14", - "initiated": "2018-12-26", - "ministryContact": "THIEL CAROLINA", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2015-05-24", + "startDate": "2019-10-31", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + } + ], + "suspectLandUses": [ + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2022-03-25 (described on Site Profile dated 2022-03-25)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2019-01-13 (described on Site Profile dated 2019-01-13)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2018-09-29 (described on Site Profile dated 2018-09-29)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2014-07-24 (described on Site Profile dated 2014-07-24)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2019-09-23 (described on Site Profile dated 2019-09-23)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + } + ], + "siteDisclosures": [ + { + "siteRegistry": false, + "dateReceived": "2019-07-27", + "dateCompleted": "2015-01-28", + "dateEntered": "2014-09-15", + "dateRegistrar": "2021-05-31", + "dateLocalAuthorityReceived": "2020-04-04", + "summary": "Tempora voluptates tempora magni est.\nItaque minus minima nihil cumque harum dolore qui sit autem.\nReprehenderit atque asperiores labore cum aliquam cum laboriosam itaque.", + "informationUsed": "Aliquid cum consequatur quo quibusdam blanditiis eius amet officia nobis.\nOdio culpa soluta consectetur officiis praesentium quod necessitatibus deleniti.\nSuscipit quasi vel occaecati tenetur.\nMollitia vel voluptatibus cumque inventore eligendi.\nVeniam pariatur quia rem.", + "pastOrPresentOrders": "Officiis qui ea earum error et dolore aliquam.\nInventore ullam facilis odio iure veritatis provident ullam.\nAdipisci aperiam repellat quas.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + } + ] + } + ], + "activityLog": [ + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "RICE PERRY", + "timestamp": "2014-10-16" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "RODRIGUEZ DELPHA", + "timestamp": "2015-10-07" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "ROBEL ARMANDO", + "timestamp": "2014-08-04" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "MANTE ARTURO", + "timestamp": "2022-11-06" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "WISOKY MILFORD", + "timestamp": "2017-11-24" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "SCHUPPE TANYA", + "timestamp": "2021-12-30" + } + ], + "associatedSites": [ + { + "dateNoted": "2019-08-28", + "notes": "", + "parcelID": "15904", + "siteID": "20609", + "siteRegistry": true + }, + { + "dateNoted": "2018-12-14", + "notes": "", + "parcelID": "19352", + "siteID": "19078", + "siteRegistry": true + }, + { + "dateNoted": "2015-12-12", + "notes": "", + "parcelID": "16739", + "siteID": "15474", + "siteRegistry": false + } + ] + }, + { + "uuid": "53bf878d-65dc-4ba1-ae0d-cbb58ed7faa2", + "siteID": 18160, + "address": "4736 Loma Ridges", + "latitude": 52.0827, + "longitude": -138.6613, + "lastUpdated": "2023-08-07", + "city": "Avondale", + "region": "Vancouver Island/Coast", + "victoriaFile": "26250-20/16007", + "regionalFile": "N/A", + "parcelIDs": [ + 7541930, + 8339049, + 4032648, + 1064645, + 9342495 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2016-10-13", + "completed": "2021-10-19", + "initiated": "2016-04-06", + "ministryContact": "STOKES NICOLETTE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -35694,20 +57628,20 @@ { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false + "role": "REQUESTED BY", + "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true }, @@ -35720,10 +57654,10 @@ "siteRegistry": false }, { - "createdAt": "2019-05-23", - "completed": "2023-02-09", - "initiated": "2019-10-07", - "ministryContact": "KUB ALAINA", + "createdAt": "2020-03-01", + "completed": "2023-02-14", + "initiated": "2020-12-09", + "ministryContact": "REYNOLDS AMALIA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -35732,28 +57666,23 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true } ], "siteRegistry": false }, { - "createdAt": "2013-12-05", - "completed": "2015-02-09", - "initiated": "2019-09-05", - "ministryContact": "LEHNER DERON", + "createdAt": "2022-10-31", + "completed": "2016-05-20", + "initiated": "2023-09-30", + "ministryContact": "BOGISICH EVELINE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -35762,17 +57691,37 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "createdAt": "2020-08-12", + "completed": "2023-02-17", + "initiated": "2015-11-25", + "ministryContact": "BAUMBACH VIRGINIE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true }, @@ -35783,104 +57732,213 @@ }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false + "role": "SUBMITTED BY", + "siteRegistry": true } ], "siteRegistry": false + }, + { + "createdAt": "2019-02-25", + "completed": "2018-10-12", + "initiated": "2017-04-13", + "ministryContact": "HEGMANN ELWIN", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true } ], "participants": [ { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2018-02-15", - "startDate": "2014-10-10", + "name": "AMET, DOLOR SIT", + "endDate": "2014-09-27", + "startDate": "2014-11-28", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": true }, { - "name": "AMET, DOLOR SIT", - "endDate": "2014-05-30", - "startDate": "2019-11-08", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2019-05-10", + "startDate": "2015-12-03", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": true + } + ], + "suspectLandUses": [ + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2020-06-27 (described on Site Profile dated 2020-06-27)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "name": "IPSUM", - "endDate": "2020-03-01", - "startDate": "2015-11-23", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": true + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2022-07-10 (described on Site Profile dated 2022-07-10)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2014-09-22", - "startDate": "2016-05-17", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": true + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2016-01-21 (described on Site Profile dated 2016-01-21)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + } + ], + "siteDisclosures": [ + { + "siteRegistry": false, + "dateReceived": "2017-04-04", + "dateCompleted": "2016-01-09", + "dateEntered": "2022-11-01", + "dateRegistrar": "2015-08-19", + "dateLocalAuthorityReceived": "2018-12-07", + "summary": "Non non tempore rem eius atque autem dolorem tempore.\nLabore iste debitis reprehenderit repudiandae quasi repellat voluptatibus iusto.", + "informationUsed": "Odio ullam explicabo laudantium similique porro.\nLaborum temporibus atque dolore illo nemo est beatae laborum.\nDeleniti nulla consectetur culpa porro illo vel.\nSit laboriosam esse maxime fugit et sint perspiciatis consequuntur sit.\nSimilique dicta autem sequi corrupti adipisci odit fugiat voluptatibus nisi.", + "pastOrPresentOrders": "Aspernatur cumque labore nisi.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + } + ] + } + ], + "activityLog": [ + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "FRANECKI EZEQUIEL", + "timestamp": "2023-08-13" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "SANFORD LOUIE", + "timestamp": "2022-05-18" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "CREMIN MONTANA", + "timestamp": "2022-12-13" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "SWIFT LAILA", + "timestamp": "2014-12-21" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "FEIL CORENE", + "timestamp": "2020-01-24" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "LITTLE SYLVIA", + "timestamp": "2014-06-10" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "LEANNON LACY", + "timestamp": "2017-09-01" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "HACKETT VIOLET", + "timestamp": "2014-01-20" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "HELLER THURMAN", + "timestamp": "2015-05-05" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "ALTENWERTH MARILYNE", + "timestamp": "2022-02-25" } ], "associatedSites": [ { - "dateNoted": "2014-11-30", + "dateNoted": "2022-04-12", "notes": "", - "parcelID": "15804", - "siteID": "16725", - "siteRegistry": true + "parcelID": "18464", + "siteID": "17249", + "siteRegistry": false }, { - "dateNoted": "2016-11-14", + "dateNoted": "2013-11-20", "notes": "", - "parcelID": "20981", - "siteID": "18269", - "siteRegistry": false + "parcelID": "19495", + "siteID": "17862", + "siteRegistry": true }, { - "dateNoted": "2021-01-31", + "dateNoted": "2016-10-21", "notes": "", - "parcelID": "15873", - "siteID": "19903", + "parcelID": "15852", + "siteID": "16813", "siteRegistry": false } ] }, { - "uuid": "df2a5bb4-5d4e-4199-a759-2a8c476e2b13", - "siteID": 19603, - "address": "283 Ratke Center", - "latitude": 51.9933, - "longitude": -118.3944, - "lastUpdated": "2019-04-10", - "city": "Lake Merlin", - "region": "Kootenay", - "victoriaFile": "26250-20/19075", + "uuid": "0e4f5dde-a529-4937-b544-e8727dc5f51d", + "siteID": 19960, + "address": "103 Shakira Pike", + "latitude": 48.8292, + "longitude": -134.0898, + "lastUpdated": "2015-06-12", + "city": "Oak Park", + "region": "Vancouver Island/Coast", + "victoriaFile": "26250-20/4545", "regionalFile": "N/A", "parcelIDs": [ - 4596388, - 2194454, - 7457153, - 628106, - 1396639 + 161023, + 3110377, + 7389711, + 7855319, + 929702 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2019-10-02", - "completed": "2022-12-17", - "initiated": "2020-01-18", - "ministryContact": "ZBONCAK EZRA", + "createdAt": "2021-02-07", + "completed": "2022-06-11", + "initiated": "2017-10-06", + "ministryContact": "KREIGER DOLORES", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -35889,12 +57947,12 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true }, @@ -35904,7 +57962,7 @@ "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false } @@ -35912,10 +57970,10 @@ "siteRegistry": false }, { - "createdAt": "2019-09-28", - "completed": "2023-04-22", - "initiated": "2015-12-11", - "ministryContact": "KRIS ADDISON", + "createdAt": "2016-11-22", + "completed": "2022-08-31", + "initiated": "2022-01-11", + "ministryContact": "BROWN CESAR", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -35925,27 +57983,22 @@ "notationParticipants": [ { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true + "role": "SUBMITTED BY", + "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true } ], "siteRegistry": false }, { - "createdAt": "2017-06-26", - "completed": "2018-05-28", - "initiated": "2013-12-17", - "ministryContact": "CUMMINGS KHALIL", + "createdAt": "2016-08-24", + "completed": "2014-07-18", + "initiated": "2020-03-06", + "ministryContact": "HYATT PEGGIE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -35954,13 +58007,13 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false } ], @@ -35970,77 +58023,196 @@ "participants": [ { "name": "AMET, DOLOR SIT", - "endDate": "2021-11-11", - "startDate": "2015-10-16", + "endDate": "2023-06-24", + "startDate": "2019-01-19", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], - "siteRegistry": true + "siteRegistry": false }, { - "name": "IPSUM", - "endDate": "2015-03-26", - "startDate": "2022-04-03", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2017-03-27", + "startDate": "2022-05-04", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": true }, { - "name": "IPSUM", - "endDate": "2016-08-02", - "startDate": "2015-05-25", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2015-07-16", + "startDate": "2018-03-15", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false } ], - "associatedSites": [ + "suspectLandUses": [ { - "dateNoted": "2014-07-27", - "notes": "", - "parcelID": "16888", - "siteID": "17260", - "siteRegistry": false + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2022-12-24 (described on Site Profile dated 2022-12-24)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "dateNoted": "2016-07-12", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2017-07-21 (described on Site Profile dated 2017-07-21)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + } + ], + "siteDisclosures": [ + { + "siteRegistry": false, + "dateReceived": "2021-03-04", + "dateCompleted": "2023-02-09", + "dateEntered": "2016-08-23", + "dateRegistrar": "2015-10-31", + "dateLocalAuthorityReceived": "2017-06-19", + "summary": "Voluptatum laudantium perferendis sit saepe cupiditate.", + "informationUsed": "Deleniti corrupti modi sint architecto ullam accusamus illo fugiat fugit.\nUnde ratione dolor dolorum harum.\nNesciunt eveniet rerum totam repudiandae cupiditate quam saepe tempora.\nMagni praesentium sapiente tempore officia voluptas vero nemo accusamus repellendus.\nConsequatur at veritatis vero.", + "pastOrPresentOrders": "Enim tempore laboriosam sint.\nAliquid deserunt quidem aperiam incidunt.\nSoluta earum occaecati rem praesentium similique repudiandae illo.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + } + ] + }, + { + "siteRegistry": true, + "dateReceived": "2021-07-01", + "dateCompleted": "2023-07-24", + "dateEntered": "2015-07-26", + "dateRegistrar": "2019-04-22", + "dateLocalAuthorityReceived": "2023-02-22", + "summary": "Excepturi dignissimos quod doloribus molestiae ipsum pariatur aliquid voluptatem molestiae.", + "informationUsed": "Provident asperiores nostrum nobis velit atque velit perferendis.\nReprehenderit similique dolore explicabo esse quas.\nProvident dolores harum et molestias id corporis excepturi eos.\nIste eveniet ipsa impedit quis nostrum nostrum.\nFugit dolorum blanditiis repudiandae odio magnam porro facere quod commodi.", + "pastOrPresentOrders": "Facere odit distinctio.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + } + ] + } + ], + "activityLog": [ + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "COLLINS RONNY", + "timestamp": "2021-01-12" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "SWANIAWSKI DEMARCO", + "timestamp": "2014-06-14" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "CRONA OLIVER", + "timestamp": "2017-10-23" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "HAHN GENNARO", + "timestamp": "2018-11-26" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "RUNOLFSDOTTIR DAVON", + "timestamp": "2016-04-08" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "REICHEL MITTIE", + "timestamp": "2014-08-25" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "MILLS ANDRE", + "timestamp": "2022-12-14" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "ZBONCAK ANGELINA", + "timestamp": "2020-12-30" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "CONROY-KESSLER DOCK", + "timestamp": "2018-08-31" + } + ], + "associatedSites": [ + { + "dateNoted": "2015-02-18", "notes": "", - "parcelID": "15320", - "siteID": "19905", - "siteRegistry": true + "parcelID": "20530", + "siteID": "19041", + "siteRegistry": false } ] }, { - "uuid": "119fd2d8-6c93-4931-8afd-7ebe5658f577", - "siteID": 15855, - "address": "14099 Krajcik Branch", - "latitude": 51.0964, - "longitude": -118.1081, - "lastUpdated": "2022-02-24", - "city": "Rolfsonport", - "region": "Cariboo", - "victoriaFile": "26250-20/6630", + "uuid": "7d43e1e8-da28-4e61-acd7-d9adc5e7168b", + "siteID": 15631, + "address": "7793 Schulist Well", + "latitude": 49.8679, + "longitude": -130.7556, + "lastUpdated": "2017-11-03", + "city": "Fort Bessiestad", + "region": "Kootenay", + "victoriaFile": "26250-20/8612", "regionalFile": "N/A", "parcelIDs": [ - 6547275, - 3210587, - 1846434, - 368063, - 9226261 + 8630234, + 8742454, + 2754541, + 8316297, + 3480220 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2016-02-12", - "completed": "2023-01-25", - "initiated": "2022-09-24", - "ministryContact": "HAHN ULICES", + "createdAt": "2021-02-21", + "completed": "2016-07-02", + "initiated": "2018-03-28", + "ministryContact": "HUEL VICTOR", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -36049,7 +58221,7 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true }, @@ -36057,20 +58229,15 @@ "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2015-01-11", - "completed": "2013-12-05", - "initiated": "2019-03-14", - "ministryContact": "SWANIAWSKI VIRGIE", + "createdAt": "2014-04-10", + "completed": "2020-02-12", + "initiated": "2018-01-03", + "ministryContact": "KUTCH GIANNI", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -36079,28 +58246,28 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": false } ], "siteRegistry": true }, { - "createdAt": "2017-12-01", - "completed": "2021-11-06", - "initiated": "2014-02-13", - "ministryContact": "WALKER MARILIE", + "createdAt": "2023-01-02", + "completed": "2017-07-03", + "initiated": "2020-11-26", + "ministryContact": "MCCULLOUGH LILLIAN", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -36108,11 +58275,6 @@ "" ], "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", @@ -36127,10 +58289,10 @@ "siteRegistry": true }, { - "createdAt": "2023-06-20", - "completed": "2019-02-19", - "initiated": "2013-11-02", - "ministryContact": "KASSULKE MARJORY", + "createdAt": "2018-09-22", + "completed": "2014-02-10", + "initiated": "2016-08-12", + "ministryContact": "WALTER DESHAUN", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -36140,7 +58302,7 @@ "notationParticipants": [ { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false }, { @@ -36149,17 +58311,52 @@ "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "createdAt": "2022-04-04", + "completed": "2014-10-19", + "initiated": "2017-02-09", + "ministryContact": "FEEST KAYLIE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false } @@ -36169,29 +58366,29 @@ ], "participants": [ { - "name": "IPSUM", - "endDate": "2020-12-24", - "startDate": "2015-02-04", + "name": "AMET, DOLOR SIT", + "endDate": "2016-10-20", + "startDate": "2021-05-27", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": false + "siteRegistry": true }, { "name": "IPSUM", - "endDate": "2017-07-31", - "startDate": "2021-11-28", + "endDate": "2020-01-30", + "startDate": "2014-03-25", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2018-08-10", - "startDate": "2021-12-01", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2020-05-30", + "startDate": "2019-06-08", "notes": "", "roles": [ "ORGANIZATION" @@ -36199,9 +58396,9 @@ "siteRegistry": false }, { - "name": "IPSUM", - "endDate": "2015-01-14", - "startDate": "2019-02-04", + "name": "AMET, DOLOR SIT", + "endDate": "2020-04-21", + "startDate": "2017-03-17", "notes": "", "roles": [ "ORGANIZATION" @@ -36209,121 +58406,188 @@ "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2021-05-11", - "startDate": "2020-11-06", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2022-11-21", + "startDate": "2016-02-11", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], - "siteRegistry": false + "siteRegistry": true } ], - "associatedSites": [ + "suspectLandUses": [ { - "dateNoted": "2022-10-13", - "notes": "", - "parcelID": "19345", - "siteID": "17318", - "siteRegistry": true + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2023-04-20 (described on Site Profile dated 2023-04-20)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2021-12-20 (described on Site Profile dated 2021-12-20)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2017-07-26 (described on Site Profile dated 2017-07-26)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2022-12-18 (described on Site Profile dated 2022-12-18)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } - ] - }, - { - "uuid": "1442e3a9-6f37-4b3f-9848-c63ba822c9c5", - "siteID": 20157, - "address": "62372 Dietrich Land", - "latitude": 56.985, - "longitude": -120.9708, - "lastUpdated": "2020-01-02", - "city": "Graceville", - "region": "Thompson-Okanagan", - "victoriaFile": "26250-20/13183", - "regionalFile": "N/A", - "parcelIDs": [ - 5554201, - 3060161, - 4644273, - 8290275, - 4178281 ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ + "siteDisclosures": [ { - "createdAt": "2015-12-19", - "completed": "2016-06-20", - "initiated": "2020-07-09", - "ministryContact": "HEIDENREICH PINK", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, + "siteRegistry": true, + "dateReceived": "2017-04-09", + "dateCompleted": "2020-04-05", + "dateEntered": "2017-02-17", + "dateRegistrar": "2018-02-17", + "dateLocalAuthorityReceived": "2018-11-09", + "summary": "Ea velit error corporis impedit.\nQuisquam aliquam amet culpa labore.", + "informationUsed": "Est voluptatibus earum perferendis officia neque necessitatibus.\nError officia illo.\nPraesentium eos eveniet perferendis nesciunt perspiciatis.", + "pastOrPresentOrders": "Necessitatibus velit unde ad quos provident optio natus error.\nHarum ipsam nemo corrupti architecto corrupti unde ex tenetur.", + "commercialAndIndustrialPurposes": [ { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true - } - ], - "siteRegistry": false - }, - { - "createdAt": "2015-11-15", - "completed": "2014-08-05", - "initiated": "2015-09-17", - "ministryContact": "YUNDT CLOVIS", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ + }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false - }, + } + ] + }, + { + "siteRegistry": false, + "dateReceived": "2020-02-03", + "dateCompleted": "2021-06-27", + "dateEntered": "2022-04-21", + "dateRegistrar": "2022-10-28", + "dateLocalAuthorityReceived": "2020-04-04", + "summary": "Esse soluta nisi.\nFuga sequi ut aliquam adipisci totam.\nFuga at dignissimos doloribus voluptatum unde iste.", + "informationUsed": "Odio corrupti ipsum deleniti quibusdam.\nEnim alias aliquam quo reprehenderit.\nPariatur iusto vel sit.", + "pastOrPresentOrders": "Molestiae ab porro quisquam.\nNeque ducimus natus.\nDolores rerum eligendi ut.", + "commercialAndIndustrialPurposes": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true } - ], + ] + } + ], + "activityLog": [ + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "RENNER BETTE", + "timestamp": "2021-07-12" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "HALVORSON CAREY", + "timestamp": "2021-09-11" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "LESCH GILES", + "timestamp": "2014-09-29" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "TROMP EINAR", + "timestamp": "2018-05-04" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "ANDERSON KALEY", + "timestamp": "2018-10-26" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "KUVALIS JACQUES", + "timestamp": "2014-09-09" + } + ], + "associatedSites": [ + { + "dateNoted": "2018-12-19", + "notes": "", + "parcelID": "17840", + "siteID": "17648", "siteRegistry": false }, { - "createdAt": "2015-08-16", - "completed": "2018-11-18", - "initiated": "2021-11-20", - "ministryContact": "O'REILLY BENNIE", + "dateNoted": "2023-04-24", + "notes": "", + "parcelID": "15367", + "siteID": "19117", + "siteRegistry": false + }, + { + "dateNoted": "2023-06-04", + "notes": "", + "parcelID": "16420", + "siteID": "20967", + "siteRegistry": false + } + ] + }, + { + "uuid": "2f1083ed-e18e-46a3-9338-4f16686ddfc3", + "siteID": 19587, + "address": "969 Rex Passage", + "latitude": 48.3906, + "longitude": -118.338, + "lastUpdated": "2023-02-14", + "city": "Oakland Park", + "region": "Cariboo", + "victoriaFile": "26250-20/5501", + "regionalFile": "N/A", + "parcelIDs": [ + 7249774, + 9793903, + 4413736, + 5732586, + 5474584 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2017-07-06", + "completed": "2017-02-15", + "initiated": "2014-07-05", + "ministryContact": "JERDE GINO", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -36336,29 +58600,19 @@ "role": "SUBMITTED BY", "siteRegistry": true }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2015-01-15", - "completed": "2017-08-15", - "initiated": "2016-02-29", - "ministryContact": "HILLL-BROWN ROSELYN", + "createdAt": "2014-02-23", + "completed": "2020-10-17", + "initiated": "2014-06-01", + "ministryContact": "SCHUPPE JANA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -36366,21 +58620,11 @@ "" ], "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", @@ -36397,98 +58641,177 @@ ], "participants": [ { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2017-07-18", - "startDate": "2021-04-28", + "name": "AMET, DOLOR SIT", + "endDate": "2016-04-22", + "startDate": "2019-02-28", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2016-02-27", - "startDate": "2018-06-30", + "name": "IPSUM", + "endDate": "2017-03-24", + "startDate": "2019-06-21", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": true }, { "name": "IPSUM", - "endDate": "2019-06-14", - "startDate": "2013-12-31", + "endDate": "2016-12-31", + "startDate": "2023-09-12", "notes": "", "roles": [ "ORGANIZATION" ], "siteRegistry": true + } + ], + "suspectLandUses": [ + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2017-03-06 (described on Site Profile dated 2017-03-06)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "name": "AMET, DOLOR SIT", - "endDate": "2014-06-26", - "startDate": "2020-11-22", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": true + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2017-11-20 (described on Site Profile dated 2017-11-20)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + } + ], + "siteDisclosures": [ + { + "siteRegistry": false, + "dateReceived": "2021-04-20", + "dateCompleted": "2017-07-18", + "dateEntered": "2019-01-28", + "dateRegistrar": "2015-04-23", + "dateLocalAuthorityReceived": "2015-03-04", + "summary": "Fugit provident quo ut vitae voluptatum.\nAccusamus unde illum aut corporis cum dolores similique sunt doloribus.\nSunt amet nihil quis dolorum tenetur.", + "informationUsed": "Occaecati iure delectus itaque natus cupiditate reiciendis ex.\nAdipisci perspiciatis et.\nLaboriosam laborum laboriosam iure cum id.\nExplicabo temporibus facilis.\nCum voluptates repellendus quisquam magnam repellat quasi reprehenderit voluptate.", + "pastOrPresentOrders": "Dicta reiciendis quo similique facere eligendi.\nDicta sed error aliquam voluptatem porro ipsa.\nNon cumque quaerat eius voluptates eveniet.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + } + ] + } + ], + "activityLog": [ + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "MURPHY BENEDICT", + "timestamp": "2016-10-22" }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2014-07-17", - "startDate": "2020-10-17", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": true + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "STEHR FLOYD", + "timestamp": "2021-12-16" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "KASSULKE JENNIFER", + "timestamp": "2014-10-27" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "KUNDE JAQUAN", + "timestamp": "2020-06-12" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "PACOCHA COURTNEY", + "timestamp": "2022-04-07" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "PFANNERSTILL CARMEN", + "timestamp": "2022-06-11" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "GUSIKOWSKI ALVERTA", + "timestamp": "2022-04-21" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "BOTSFORD DELPHIA", + "timestamp": "2017-04-05" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "TURNER FREDRICK", + "timestamp": "2016-07-24" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "VON HANNA", + "timestamp": "2013-11-25" } ], "associatedSites": [ { - "dateNoted": "2020-11-11", + "dateNoted": "2019-04-20", "notes": "", - "parcelID": "16373", - "siteID": "17463", - "siteRegistry": false + "parcelID": "18616", + "siteID": "20382", + "siteRegistry": true }, { - "dateNoted": "2021-12-31", + "dateNoted": "2014-10-08", "notes": "", - "parcelID": "15485", - "siteID": "16312", - "siteRegistry": true + "parcelID": "16858", + "siteID": "19991", + "siteRegistry": false } ] }, { - "uuid": "ed8ea8b0-72eb-4251-8e06-0b4fdb8b6032", - "siteID": 17036, - "address": "38405 Quentin Well", - "latitude": 50.9532, - "longitude": -119.6966, - "lastUpdated": "2015-03-09", - "city": "Cathystad", - "region": "Thompson-Okanagan", - "victoriaFile": "26250-20/12328", + "uuid": "98e1ebeb-adef-4fe5-bbc2-23d9730ff9dd", + "siteID": 15566, + "address": "3866 Bonnie Haven", + "latitude": 48.7571, + "longitude": -124.6655, + "lastUpdated": "2023-01-26", + "city": "Joshview", + "region": "Cariboo", + "victoriaFile": "26250-20/9968", "regionalFile": "N/A", "parcelIDs": [ - 9812446, - 6394612, - 9322373, - 1523134, - 3300180 + 9981509, + 7731557, + 9163380, + 5080841, + 9130037 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2021-07-07", - "completed": "2019-12-30", - "initiated": "2014-05-26", - "ministryContact": "GIBSON-HERMANN LORINE", + "createdAt": "2015-07-29", + "completed": "2020-09-01", + "initiated": "2014-10-04", + "ministryContact": "DONNELLY PEDRO", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -36496,39 +58819,34 @@ "" ], "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2014-01-30", - "completed": "2022-04-06", - "initiated": "2020-06-17", - "ministryContact": "TILLMAN KOBY", + "createdAt": "2023-02-14", + "completed": "2016-07-09", + "initiated": "2014-02-18", + "ministryContact": "KOHLER SHANEL", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -36537,20 +58855,15 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", @@ -36560,15 +58873,20 @@ "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2016-07-04", - "completed": "2015-01-15", - "initiated": "2021-12-28", - "ministryContact": "LANGWORTH GARRISON", + "createdAt": "2017-02-03", + "completed": "2016-04-22", + "initiated": "2014-10-10", + "ministryContact": "VON KASSANDRA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -36576,39 +58894,14 @@ "" ], "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false - } - ], - "siteRegistry": true - }, - { - "createdAt": "2016-10-31", - "completed": "2022-05-29", - "initiated": "2019-08-22", - "ministryContact": "FEENEY LOUIE", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", "siteRegistry": true }, { @@ -36616,60 +58909,50 @@ "role": "SUBMITTED BY", "siteRegistry": false }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true } ], "participants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2017-03-17", - "startDate": "2019-07-29", + "name": "IPSUM", + "endDate": "2015-02-22", + "startDate": "2021-05-09", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false }, { - "name": "AMET, DOLOR SIT", - "endDate": "2016-09-05", - "startDate": "2018-05-23", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2020-02-12", + "startDate": "2019-01-26", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": false + "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2019-11-27", - "startDate": "2023-05-21", + "name": "IPSUM", + "endDate": "2016-03-15", + "startDate": "2014-09-02", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": true + "siteRegistry": false }, { - "name": "IPSUM", - "endDate": "2021-01-15", - "startDate": "2021-05-22", + "name": "AMET, DOLOR SIT", + "endDate": "2022-11-20", + "startDate": "2020-12-13", "notes": "", "roles": [ "ORGANIZATION" @@ -36677,41 +58960,115 @@ "siteRegistry": false } ], + "suspectLandUses": [ + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2017-12-24 (described on Site Profile dated 2017-12-24)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2020-08-25 (described on Site Profile dated 2020-08-25)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + } + ], + "siteDisclosures": [ + { + "siteRegistry": true, + "dateReceived": "2019-08-26", + "dateCompleted": "2020-05-28", + "dateEntered": "2016-12-10", + "dateRegistrar": "2016-03-10", + "dateLocalAuthorityReceived": "2014-08-10", + "summary": "Facere in odio.", + "informationUsed": "Cupiditate totam iure fuga sapiente.\nCupiditate voluptatem expedita voluptate itaque nihil asperiores quibusdam ipsum.\nOptio adipisci placeat iste repellendus distinctio.", + "pastOrPresentOrders": "Nihil repudiandae magni eos aperiam deleniti ullam natus.\nTenetur quod dolorem.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + } + ] + } + ], + "activityLog": [ + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "GULGOWSKI TYREL", + "timestamp": "2020-12-21" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "NIKOLAUS IDELL", + "timestamp": "2016-04-17" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "METZ DUDLEY", + "timestamp": "2022-04-28" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "SCHUSTER DEMARCO", + "timestamp": "2016-03-29" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "PAUCEK FRIDA", + "timestamp": "2016-12-24" + } + ], "associatedSites": [ { - "dateNoted": "2019-10-24", + "dateNoted": "2022-10-14", "notes": "", - "parcelID": "20155", - "siteID": "18676", - "siteRegistry": true + "parcelID": "18308", + "siteID": "16586", + "siteRegistry": false } ] }, { - "uuid": "d2bf3f10-7320-4f77-9689-dff3458ebbe5", - "siteID": 15666, - "address": "283 Schroeder Corner", - "latitude": 49.4145, - "longitude": -136.984, - "lastUpdated": "2020-03-17", - "city": "Anabelville", - "region": "Thompson-Okanagan", - "victoriaFile": "26250-20/5807", + "uuid": "c0d86bca-b651-4700-804d-7a2dc72ca3e1", + "siteID": 18123, + "address": "4004 Elouise Wall", + "latitude": 54.7943, + "longitude": -134.3623, + "lastUpdated": "2022-08-26", + "city": "Nathanialtown", + "region": "Vancouver Island/Coast", + "victoriaFile": "26250-20/5060", "regionalFile": "N/A", "parcelIDs": [ - 9802893, - 5864416, - 5796444, - 933379, - 7400870 + 7702502, + 8821456, + 980341, + 438535, + 7050429 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2021-04-07", - "completed": "2022-04-16", - "initiated": "2016-02-09", - "ministryContact": "KOHLER TONEY", + "createdAt": "2022-02-18", + "completed": "2018-09-27", + "initiated": "2022-11-15", + "ministryContact": "KILBACK DOUG", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -36719,24 +59076,34 @@ "" ], "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2020-10-18", - "completed": "2015-05-18", - "initiated": "2020-10-23", - "ministryContact": "STEUBER TOMMIE", + "createdAt": "2014-08-10", + "completed": "2019-06-23", + "initiated": "2023-03-03", + "ministryContact": "GREEN MATTIE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -36745,58 +59112,33 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false - } - ], - "siteRegistry": false - }, - { - "createdAt": "2017-02-18", - "completed": "2016-03-07", - "initiated": "2014-10-04", - "ministryContact": "SPORER CULLEN", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2013-12-22", - "completed": "2023-07-12", - "initiated": "2014-10-24", - "ministryContact": "DIBBERT-HETTINGER TRISTIAN", + "createdAt": "2018-06-07", + "completed": "2020-05-14", + "initiated": "2014-07-20", + "ministryContact": "HERZOG SPENCER", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -36806,8 +59148,8 @@ "notationParticipants": [ { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true + "role": "REQUESTED BY", + "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", @@ -36816,9 +59158,14 @@ }, { "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", @@ -36828,10 +59175,10 @@ "siteRegistry": false }, { - "createdAt": "2023-06-20", - "completed": "2018-10-31", - "initiated": "2015-11-07", - "ministryContact": "HAGENES KILEY", + "createdAt": "2017-10-04", + "completed": "2020-08-19", + "initiated": "2014-04-23", + "ministryContact": "KUVALIS GUST", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -36839,20 +59186,30 @@ "" ], "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true + "role": "SUBMITTED BY", + "siteRegistry": false } ], "siteRegistry": true @@ -36860,19 +59217,9 @@ ], "participants": [ { - "name": "AMET, DOLOR SIT", - "endDate": "2015-01-14", - "startDate": "2023-01-27", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": false - }, - { - "name": "IPSUM", - "endDate": "2021-10-20", - "startDate": "2016-10-17", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2018-02-23", + "startDate": "2021-08-25", "notes": "", "roles": [ "EMPLOYEE" @@ -36881,18 +59228,8 @@ }, { "name": "IPSUM", - "endDate": "2023-06-24", - "startDate": "2020-07-17", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2020-11-07", - "startDate": "2021-05-15", + "endDate": "2022-12-18", + "startDate": "2020-03-18", "notes": "", "roles": [ "ORGANIZATION" @@ -36900,281 +59237,127 @@ "siteRegistry": true } ], - "associatedSites": [ + "suspectLandUses": [ { - "dateNoted": "2017-06-06", - "notes": "", - "parcelID": "19573", - "siteID": "20441", - "siteRegistry": false + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2019-03-24 (described on Site Profile dated 2019-03-24)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "dateNoted": "2023-02-04", - "notes": "", - "parcelID": "16427", - "siteID": "17561", - "siteRegistry": true + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2018-04-07 (described on Site Profile dated 2018-04-07)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } - ] - }, - { - "uuid": "ef0cb58f-401f-4355-89be-265540d12c83", - "siteID": 16193, - "address": "24405 Madisyn Station", - "latitude": 52.2268, - "longitude": -127.0488, - "lastUpdated": "2014-07-14", - "city": "Westboro", - "region": "Mainland/Southwest", - "victoriaFile": "26250-20/15106", - "regionalFile": "N/A", - "parcelIDs": [ - 1562423, - 5199538, - 7605192, - 6704720, - 249520 ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ + "siteDisclosures": [ { - "createdAt": "2014-02-05", - "completed": "2017-03-14", - "initiated": "2018-05-01", - "ministryContact": "HERMAN DEJUAN", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, + "siteRegistry": true, + "dateReceived": "2019-01-08", + "dateCompleted": "2014-08-13", + "dateEntered": "2017-12-22", + "dateRegistrar": "2023-05-25", + "dateLocalAuthorityReceived": "2015-01-04", + "summary": "Modi vel deserunt.\nCumque tempora perspiciatis soluta error vel distinctio doloremque vero numquam.\nNisi eveniet eius sit tempora voluptatibus assumenda cum.", + "informationUsed": "Vero suscipit delectus velit.\nPorro cum tempore enim placeat.\nVoluptates aperiam asperiores est vero quibusdam nesciunt consectetur eligendi.\nPorro aliquam natus placeat temporibus.", + "pastOrPresentOrders": "Non in voluptatum.\nSunt nisi quibusdam illum doloremque.\nReprehenderit facilis voluptas minima autem quam doloribus doloremque.", + "commercialAndIndustrialPurposes": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - } - ], - "siteRegistry": false - }, - { - "createdAt": "2021-09-11", - "completed": "2020-12-16", - "initiated": "2023-02-25", - "ministryContact": "TRANTOW ARTURO", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false } - ], - "siteRegistry": false + ] } ], - "participants": [ + "activityLog": [ { - "name": "AMET, DOLOR SIT", - "endDate": "2020-07-28", - "startDate": "2021-12-04", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": false + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "REICHERT KELLEY", + "timestamp": "2015-04-19" }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2021-09-25", - "startDate": "2022-07-29", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": false + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "KUTCH IMANI", + "timestamp": "2020-07-09" }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2015-11-05", - "startDate": "2018-12-20", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": true + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "LUEILWITZ REY", + "timestamp": "2020-06-04" }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2020-08-16", - "startDate": "2019-05-16", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": false + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "TILLMAN QUINTON", + "timestamp": "2013-10-21" }, { - "name": "IPSUM", - "endDate": "2014-10-20", - "startDate": "2022-09-18", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": true + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "MUELLER CYNTHIA", + "timestamp": "2022-04-05" } ], "associatedSites": [ { - "dateNoted": "2015-03-23", + "dateNoted": "2022-03-03", "notes": "", - "parcelID": "15206", - "siteID": "15361", - "siteRegistry": true + "parcelID": "15348", + "siteID": "18197", + "siteRegistry": false + }, + { + "dateNoted": "2017-05-04", + "notes": "", + "parcelID": "20913", + "siteID": "16586", + "siteRegistry": false } ] }, { - "uuid": "680432a1-a785-4485-828a-78bfbfdaee35", - "siteID": 19571, - "address": "7133 MacGyver Harbors", - "latitude": 49.5201, - "longitude": -134.8348, - "lastUpdated": "2018-03-01", - "city": "Paolochester", - "region": "Mainland/Southwest", - "victoriaFile": "26250-20/9298", + "uuid": "35dba527-922a-4fc1-a22c-e14a2baabb8b", + "siteID": 20230, + "address": "54173 Carol Mission", + "latitude": 54.7444, + "longitude": -122.2406, + "lastUpdated": "2022-11-24", + "city": "West Lafayette", + "region": " North Coast", + "victoriaFile": "26250-20/16449", "regionalFile": "N/A", "parcelIDs": [ - 1566684, - 1234706, - 8123002, - 3668685, - 8734963 + 8514506, + 8105598, + 416426, + 227951, + 2386408 ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2021-09-08", - "completed": "2019-07-16", - "initiated": "2014-02-15", - "ministryContact": "MEDHURST TREMAINE", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - } - ], - "siteRegistry": false - }, - { - "createdAt": "2014-01-21", - "completed": "2014-08-28", - "initiated": "2016-04-03", - "ministryContact": "MCGLYNN FINN", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - } - ], - "siteRegistry": true - }, + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ { - "createdAt": "2013-10-08", - "completed": "2021-11-15", - "initiated": "2016-03-13", - "ministryContact": "O'KEEFE FLORIAN", + "createdAt": "2018-09-16", + "completed": "2023-01-03", + "initiated": "2018-08-27", + "ministryContact": "CARROLL MARJORIE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -37183,28 +59366,38 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false } ], "siteRegistry": true }, { - "createdAt": "2020-11-06", - "completed": "2016-03-23", - "initiated": "2015-11-13", - "ministryContact": "AUER HAROLD", + "createdAt": "2016-02-01", + "completed": "2023-08-11", + "initiated": "2017-06-21", + "ministryContact": "MCCLURE CELESTINE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -37212,30 +59405,15 @@ "" ], "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true } ], "siteRegistry": true @@ -37243,126 +59421,228 @@ ], "participants": [ { - "name": "IPSUM", - "endDate": "2022-08-22", - "startDate": "2022-03-03", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2023-06-25", + "startDate": "2022-07-01", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2020-04-09", - "startDate": "2021-01-17", + "name": "IPSUM", + "endDate": "2014-03-10", + "startDate": "2018-06-03", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2014-09-22", - "startDate": "2016-04-14", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2021-11-02", + "startDate": "2016-02-26", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2018-07-05", - "startDate": "2017-08-01", + "name": "IPSUM", + "endDate": "2022-03-24", + "startDate": "2018-01-16", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], - "siteRegistry": true + "siteRegistry": false }, { - "name": "IPSUM", - "endDate": "2021-11-21", - "startDate": "2015-08-19", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2016-05-24", + "startDate": "2021-02-15", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], - "siteRegistry": true + "siteRegistry": false } ], - "associatedSites": [ + "suspectLandUses": [ { - "dateNoted": "2015-03-02", - "notes": "", - "parcelID": "19727", - "siteID": "15609", - "siteRegistry": true + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2019-01-22 (described on Site Profile dated 2019-01-22)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2016-06-04 (described on Site Profile dated 2016-06-04)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2018-11-22 (described on Site Profile dated 2018-11-22)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } - ] - }, - { - "uuid": "b844a72f-2e51-416f-98b7-e7eec8b68af5", - "siteID": 17318, - "address": "2904 Schinner Junctions", - "latitude": 54.8266, - "longitude": -123.8415, - "lastUpdated": "2013-10-26", - "city": "Fort Huldaview", - "region": "Thompson-Okanagan", - "victoriaFile": "26250-20/11058", - "regionalFile": "N/A", - "parcelIDs": [ - 6854659, - 7599399, - 2699464, - 1384116, - 6710417 ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ + "siteDisclosures": [ { - "createdAt": "2018-02-26", - "completed": "2014-05-12", - "initiated": "2017-02-25", - "ministryContact": "RITCHIE RICHARD", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ + "siteRegistry": true, + "dateReceived": "2021-09-11", + "dateCompleted": "2020-08-15", + "dateEntered": "2022-08-01", + "dateRegistrar": "2014-04-16", + "dateLocalAuthorityReceived": "2023-07-02", + "summary": "Suscipit aperiam explicabo in incidunt modi odit maxime est.\nError quam nam consectetur corporis inventore laboriosam possimus eos.\nDolore deleniti sed quibusdam corporis.", + "informationUsed": "Harum illo pariatur debitis cumque possimus quaerat saepe.\nVelit animi unde corrupti facere.\nFacilis eligendi unde aperiam amet unde excepturi similique temporibus.\nTempora minus sint perspiciatis maxime distinctio sed optio velit.\nOmnis eum dicta unde animi aliquam veniam placeat quaerat vel.", + "pastOrPresentOrders": "Laborum dicta laboriosam nesciunt provident.\nArchitecto esse vero.", + "commercialAndIndustrialPurposes": [ { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + } + ] + }, + { + "siteRegistry": true, + "dateReceived": "2019-11-11", + "dateCompleted": "2015-06-06", + "dateEntered": "2022-04-12", + "dateRegistrar": "2014-06-06", + "dateLocalAuthorityReceived": "2021-09-23", + "summary": "Assumenda ipsa neque.\nQuidem dolores dicta ipsam recusandae impedit.", + "informationUsed": "Aliquid veritatis possimus nesciunt.\nIllo veritatis quisquam corrupti sapiente officiis.\nSuscipit numquam nihil molestiae laboriosam.", + "pastOrPresentOrders": "Rem voluptatibus perspiciatis dolorem perspiciatis fugit.\nAliquid itaque hic magni asperiores nesciunt atque.\nVoluptatem incidunt fugiat harum laboriosam repellat.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false } - ], - "siteRegistry": false + ] + } + ], + "activityLog": [ + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "TURNER SANDRA", + "timestamp": "2015-07-19" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "PACOCHA MARQUISE", + "timestamp": "2022-02-18" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "BAUMBACH DINA", + "timestamp": "2022-03-16" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "SCHILLER ARA", + "timestamp": "2015-01-18" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "O'REILLY CARMELA", + "timestamp": "2015-10-24" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "BORER JEANIE", + "timestamp": "2016-08-27" }, { - "createdAt": "2023-08-10", - "completed": "2015-01-19", - "initiated": "2023-07-31", - "ministryContact": "GERLACH BRIDGET", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "GERHOLD DORIS", + "timestamp": "2014-01-16" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "FUNK EVERETTE", + "timestamp": "2023-01-10" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "CARTER TOREY", + "timestamp": "2018-04-21" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "HILPERT DORCAS", + "timestamp": "2017-04-15" + } + ], + "associatedSites": [ + { + "dateNoted": "2017-09-30", + "notes": "", + "parcelID": "20590", + "siteID": "17480", + "siteRegistry": false + } + ] + }, + { + "uuid": "b7291273-205c-4861-b8ec-6f44904aa801", + "siteID": 17078, + "address": "428 Macey Glens", + "latitude": 58.3414, + "longitude": -129.3804, + "lastUpdated": "2022-05-02", + "city": "Williamsonborough", + "region": "Vancouver Island/Coast", + "victoriaFile": "26250-20/11236", + "regionalFile": "N/A", + "parcelIDs": [ + 419857, + 6195809, + 5237076, + 2641417, + 6746740 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2019-04-12", + "completed": "2016-06-16", + "initiated": "2016-12-15", + "ministryContact": "BERNIER MARILYNE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -37372,8 +59652,8 @@ "notationParticipants": [ { "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false + "role": "SUBMITTED BY", + "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", @@ -37384,40 +59664,20 @@ "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false - } - ], - "siteRegistry": false - }, - { - "createdAt": "2022-11-21", - "completed": "2020-12-02", - "initiated": "2020-01-13", - "ministryContact": "HARRIS WILLA", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2022-07-23", - "completed": "2016-02-14", - "initiated": "2022-03-08", - "ministryContact": "GREENFELDER YESENIA", + "createdAt": "2015-06-14", + "completed": "2015-12-28", + "initiated": "2014-02-14", + "ministryContact": "OKUNEVA SERENITY", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -37428,22 +59688,12 @@ { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false } ], "siteRegistry": true @@ -37451,49 +59701,39 @@ ], "participants": [ { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2019-01-11", - "startDate": "2015-11-01", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2019-05-21", + "startDate": "2023-01-18", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": false + "siteRegistry": true }, { - "name": "IPSUM", - "endDate": "2021-05-05", - "startDate": "2018-07-19", + "name": "AMET, DOLOR SIT", + "endDate": "2018-03-03", + "startDate": "2017-06-22", "notes": "", "roles": [ "EMPLOYEE" ], "siteRegistry": false }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2021-06-09", - "startDate": "2023-07-02", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": true - }, { "name": "SHELL CANADA PRODUCTS", - "endDate": "2022-07-25", - "startDate": "2023-01-11", + "endDate": "2023-02-14", + "startDate": "2022-02-26", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], - "siteRegistry": true + "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2018-08-12", - "startDate": "2015-07-31", + "name": "AMET, DOLOR SIT", + "endDate": "2015-07-03", + "startDate": "2022-10-18", "notes": "", "roles": [ "ORGANIZATION" @@ -37501,41 +59741,185 @@ "siteRegistry": false } ], + "suspectLandUses": [ + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2022-04-13 (described on Site Profile dated 2022-04-13)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2016-06-08 (described on Site Profile dated 2016-06-08)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + } + ], + "siteDisclosures": [ + { + "siteRegistry": true, + "dateReceived": "2015-10-03", + "dateCompleted": "2018-09-26", + "dateEntered": "2022-04-26", + "dateRegistrar": "2017-01-13", + "dateLocalAuthorityReceived": "2022-02-12", + "summary": "Aspernatur amet quisquam minus sint.", + "informationUsed": "Omnis ducimus corporis fugiat cumque aliquam eligendi quibusdam non accusantium.\nVoluptatibus magni voluptatem optio nemo harum odit reprehenderit consequuntur corrupti.\nAliquam facilis modi porro illo laboriosam.\nTenetur quibusdam incidunt.", + "pastOrPresentOrders": "Nobis quibusdam soluta.\nVeritatis deleniti quasi sunt fuga dolorum.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + } + ] + }, + { + "siteRegistry": true, + "dateReceived": "2018-11-08", + "dateCompleted": "2023-05-13", + "dateEntered": "2020-03-27", + "dateRegistrar": "2020-07-08", + "dateLocalAuthorityReceived": "2022-06-10", + "summary": "Non dignissimos sed.\nQuia voluptas aliquid.", + "informationUsed": "Dolor laudantium reprehenderit quo doloribus minus.\nAt esse quasi eveniet perferendis in nulla accusamus consectetur.\nSit eum at quam tenetur architecto similique.", + "pastOrPresentOrders": "Optio odit voluptas.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + } + ] + } + ], + "activityLog": [ + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "WINDLER KENNITH", + "timestamp": "2016-07-28" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "HAYES-MILLER ESTEL", + "timestamp": "2016-01-19" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "HIRTHE ASHLEE", + "timestamp": "2014-01-12" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "LEMKE AL", + "timestamp": "2014-07-22" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "O'CONNELL JEANETTE", + "timestamp": "2016-06-15" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "TORP ELMER", + "timestamp": "2021-06-21" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "FERRY ZORA", + "timestamp": "2017-09-18" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "ERNSER KILEY", + "timestamp": "2015-05-17" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "WALTER ADITYA", + "timestamp": "2016-09-15" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "FAHEY JESSYCA", + "timestamp": "2022-03-15" + } + ], "associatedSites": [ { - "dateNoted": "2018-12-05", + "dateNoted": "2021-04-13", "notes": "", - "parcelID": "17990", - "siteID": "17200", - "siteRegistry": false + "parcelID": "16451", + "siteID": "20586", + "siteRegistry": true + }, + { + "dateNoted": "2021-02-12", + "notes": "", + "parcelID": "17439", + "siteID": "17450", + "siteRegistry": true } ] }, { - "uuid": "2ffb9519-c5c2-48de-bc0b-ec7410fb9ca8", - "siteID": 17514, - "address": "10967 Judson Greens", - "latitude": 52.5965, - "longitude": -118.5719, - "lastUpdated": "2018-08-07", - "city": "New Krishaven", - "region": "Thompson-Okanagan", - "victoriaFile": "26250-20/17404", + "uuid": "6594d797-e039-4bfc-9e60-c0eeda41890b", + "siteID": 18404, + "address": "7011 Billy Parks", + "latitude": 52.981, + "longitude": -131.5634, + "lastUpdated": "2014-05-09", + "city": "North Eliezerland", + "region": "Vancouver Island/Coast", + "victoriaFile": "26250-20/4395", "regionalFile": "N/A", "parcelIDs": [ - 9049687, - 9235026, - 5912185, - 7468457, - 7228883 + 456772, + 8371406, + 5102214, + 7070126, + 662619 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2014-08-10", - "completed": "2016-06-17", - "initiated": "2018-10-29", - "ministryContact": "DIBBERT KAITLIN", + "createdAt": "2023-09-16", + "completed": "2017-10-17", + "initiated": "2022-06-01", + "ministryContact": "EMARD SADYE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -37545,22 +59929,27 @@ "notationParticipants": [ { "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2023-04-11", - "completed": "2020-06-11", - "initiated": "2015-10-05", - "ministryContact": "LESCH TONY", + "createdAt": "2014-05-24", + "completed": "2021-10-31", + "initiated": "2020-09-04", + "ministryContact": "STEHR MARIANO", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -37569,23 +59958,23 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": false } ], "siteRegistry": true }, { - "createdAt": "2014-07-14", - "completed": "2020-05-31", - "initiated": "2018-07-24", - "ministryContact": "FRITSCH JEREMY", + "createdAt": "2021-06-07", + "completed": "2021-08-13", + "initiated": "2021-04-25", + "ministryContact": "CRONA OTTILIE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -37594,38 +59983,28 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false + "role": "SUBMITTED BY", + "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2014-10-31", - "completed": "2016-07-29", - "initiated": "2019-05-16", - "ministryContact": "FAY FREDA", + "createdAt": "2014-11-28", + "completed": "2020-07-01", + "initiated": "2022-07-16", + "ministryContact": "SHIELDS DELANEY", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -37635,43 +60014,43 @@ "notationParticipants": [ { "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false + "role": "REQUESTED BY", + "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true } ], "participants": [ { "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2018-03-02", - "startDate": "2016-06-29", + "endDate": "2020-09-09", + "startDate": "2014-09-17", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2022-09-29", - "startDate": "2017-02-26", + "endDate": "2020-08-29", + "startDate": "2013-10-26", "notes": "", "roles": [ "ORGANIZATION" @@ -37679,85 +60058,161 @@ "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2016-09-27", - "startDate": "2018-05-02", + "name": "IPSUM", + "endDate": "2018-01-20", + "startDate": "2020-10-23", "notes": "", "roles": [ "ORGANIZATION" ], "siteRegistry": true + } + ], + "suspectLandUses": [ + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2018-05-17 (described on Site Profile dated 2018-05-17)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2022-01-04", - "startDate": "2018-06-29", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": false + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2014-08-20 (described on Site Profile dated 2014-08-20)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "name": "IPSUM", - "endDate": "2014-11-24", - "startDate": "2018-09-27", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": true + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2020-06-19 (described on Site Profile dated 2020-06-19)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + } + ], + "siteDisclosures": [ + { + "siteRegistry": true, + "dateReceived": "2021-09-15", + "dateCompleted": "2015-10-29", + "dateEntered": "2014-10-24", + "dateRegistrar": "2016-12-26", + "dateLocalAuthorityReceived": "2017-08-31", + "summary": "Vitae molestias neque laboriosam omnis quo iste dignissimos aliquam deserunt.\nCulpa nulla autem fuga consequuntur.", + "informationUsed": "Aspernatur sint ea nam quos.\nSoluta sunt dolores repellat adipisci natus culpa recusandae esse.\nLabore id voluptatibus tempora sunt fugit aperiam.\nHarum laboriosam molestiae dignissimos.", + "pastOrPresentOrders": "Dignissimos explicabo illo quod.\nEius nobis dignissimos adipisci culpa at sequi tempora soluta.\nTemporibus error deserunt reprehenderit necessitatibus deserunt modi quidem.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + } + ] + } + ], + "activityLog": [ + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "RIPPIN SHAYNA", + "timestamp": "2023-03-14" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "KUNZE-BEAHAN MAEGAN", + "timestamp": "2021-07-12" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "MACEJKOVIC KENNITH", + "timestamp": "2019-03-02" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "CRONIN JEANIE", + "timestamp": "2017-10-14" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "KOZEY ABIGALE", + "timestamp": "2017-12-23" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "DICKINSON HORACIO", + "timestamp": "2015-03-31" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "PAUCEK MAXIMUS", + "timestamp": "2018-12-11" } ], "associatedSites": [ { - "dateNoted": "2016-09-18", + "dateNoted": "2015-03-13", "notes": "", - "parcelID": "19130", - "siteID": "17151", + "parcelID": "16451", + "siteID": "17155", "siteRegistry": true }, { - "dateNoted": "2022-05-25", + "dateNoted": "2015-10-30", "notes": "", - "parcelID": "18250", - "siteID": "17412", - "siteRegistry": true + "parcelID": "19931", + "siteID": "16920", + "siteRegistry": false }, { - "dateNoted": "2018-07-10", + "dateNoted": "2019-10-30", "notes": "", - "parcelID": "18896", - "siteID": "17203", - "siteRegistry": true + "parcelID": "17023", + "siteID": "16902", + "siteRegistry": false } ] }, { - "uuid": "079895c4-7609-45eb-8091-62e68862fcf6", - "siteID": 15273, - "address": "472 Everette Underpass", - "latitude": 52.5996, - "longitude": -136.9152, - "lastUpdated": "2014-09-26", - "city": "Fort Alexandra", + "uuid": "dae630d5-2672-43ed-8a03-ebd0ea11a363", + "siteID": 18600, + "address": "400 Clement Key", + "latitude": 52.4262, + "longitude": -132.9243, + "lastUpdated": "2023-06-21", + "city": "Parkerborough", "region": " North Coast", - "victoriaFile": "26250-20/2462", + "victoriaFile": "26250-20/13700", "regionalFile": "N/A", "parcelIDs": [ - 3617856, - 1243441, - 2067940, - 5965593, - 8039320 + 9909609, + 621241, + 8460567, + 1071223, + 4095969 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2015-04-10", - "completed": "2021-07-25", - "initiated": "2022-04-23", - "ministryContact": "MCCULLOUGH KOBE", + "createdAt": "2015-02-21", + "completed": "2015-09-27", + "initiated": "2020-06-04", + "ministryContact": "SCHROEDER HANS", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -37766,38 +60221,38 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": true } ], "siteRegistry": true }, { - "createdAt": "2017-06-28", - "completed": "2018-06-12", - "initiated": "2013-10-08", - "ministryContact": "SANFORD CIERRA", + "createdAt": "2020-08-22", + "completed": "2019-01-13", + "initiated": "2017-01-04", + "ministryContact": "ROBERTS AMELY", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -37805,11 +60260,6 @@ "" ], "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", @@ -37817,22 +60267,27 @@ }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2023-08-25", - "completed": "2019-06-14", - "initiated": "2015-12-25", - "ministryContact": "BOGISICH TRUDIE", + "createdAt": "2018-04-07", + "completed": "2016-04-15", + "initiated": "2019-02-06", + "ministryContact": "STEHR IDELLA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -37847,110 +60302,209 @@ }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": true - }, + } + ], + "siteRegistry": false + } + ], + "participants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2022-01-10", + "startDate": "2020-10-28", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2018-01-12", + "startDate": "2016-03-20", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "name": "AMET, DOLOR SIT", + "endDate": "2023-09-19", + "startDate": "2020-06-21", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + } + ], + "suspectLandUses": [ + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2022-11-19 (described on Site Profile dated 2022-11-19)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2021-08-08 (described on Site Profile dated 2021-08-08)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2022-06-25 (described on Site Profile dated 2022-06-25)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2017-06-16 (described on Site Profile dated 2017-06-16)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + } + ], + "siteDisclosures": [ + { + "siteRegistry": false, + "dateReceived": "2021-07-05", + "dateCompleted": "2015-03-29", + "dateEntered": "2013-10-13", + "dateRegistrar": "2014-05-17", + "dateLocalAuthorityReceived": "2014-04-25", + "summary": "Quis occaecati possimus magnam ipsam quas libero.\nTotam molestiae iure placeat aperiam voluptate ad.\nVoluptate iusto quia dignissimos.", + "informationUsed": "Vero autem corrupti.\nReprehenderit molestias exercitationem perspiciatis delectus.\nTemporibus doloremque hic cupiditate vitae in praesentium.\nFuga repellat occaecati quaerat inventore sequi voluptatum hic.\nFugit labore quo quasi nam distinctio distinctio perspiciatis illo.", + "pastOrPresentOrders": "Nemo aspernatur pariatur.\nFugiat aut quidem maiores ullam delectus neque amet velit.", + "commercialAndIndustrialPurposes": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false } - ], - "siteRegistry": true + ] }, { - "createdAt": "2019-09-03", - "completed": "2016-01-18", - "initiated": "2017-06-06", - "ministryContact": "BECHTELAR AUBREE", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ + "siteRegistry": true, + "dateReceived": "2021-09-16", + "dateCompleted": "2020-07-26", + "dateEntered": "2021-02-05", + "dateRegistrar": "2022-07-07", + "dateLocalAuthorityReceived": "2019-12-12", + "summary": "Nobis reiciendis velit.", + "informationUsed": "Ullam ex distinctio qui debitis rerum alias accusantium impedit neque.\nDistinctio dicta facere nam commodi dolor architecto.\nNeque nobis vero veniam voluptates optio aspernatur vel.\nAnimi excepturi id.", + "pastOrPresentOrders": "Voluptatum exercitationem minima numquam ducimus ipsa ab hic consectetur consectetur.", + "commercialAndIndustrialPurposes": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false } - ], - "siteRegistry": true + ] } ], - "participants": [ + "activityLog": [ + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "LYNCH SABRYNA", + "timestamp": "2018-11-30" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "MCGLYNN REYMUNDO", + "timestamp": "2016-02-20" + }, { - "name": "AMET, DOLOR SIT", - "endDate": "2015-01-12", - "startDate": "2023-03-27", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": true + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "LOWE CLOYD", + "timestamp": "2016-12-18" }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2019-09-18", - "startDate": "2022-12-31", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": true + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "LEGROS SABRYNA", + "timestamp": "2023-01-18" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "SCHMELER AMIR", + "timestamp": "2021-12-15" } ], "associatedSites": [ { - "dateNoted": "2023-05-23", + "dateNoted": "2016-03-09", "notes": "", - "parcelID": "19200", - "siteID": "15229", + "parcelID": "15651", + "siteID": "17450", "siteRegistry": false + }, + { + "dateNoted": "2021-05-23", + "notes": "", + "parcelID": "18073", + "siteID": "17601", + "siteRegistry": true } ] }, { - "uuid": "6e77f72b-faf7-4375-b941-d2f8b7fcc10a", - "siteID": 18676, - "address": "97613 Robel Keys", - "latitude": 58.288, - "longitude": -134.6418, - "lastUpdated": "2016-12-16", - "city": "Schustertown", - "region": "Kootenay", - "victoriaFile": "26250-20/1952", + "uuid": "e247c7bd-4657-4c70-a991-141a21b26b7a", + "siteID": 17936, + "address": "86199 Lela Road", + "latitude": 54.9147, + "longitude": -127.6541, + "lastUpdated": "2021-12-30", + "city": "West Clareboro", + "region": "Mainland/Southwest", + "victoriaFile": "26250-20/5232", "regionalFile": "N/A", "parcelIDs": [ - 9356782, - 8836028, - 3733132, - 3021045, - 9013440 + 7059073, + 8165970, + 4216874, + 9984867, + 2828956 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2020-02-01", - "completed": "2014-09-29", - "initiated": "2017-03-30", - "ministryContact": "KOEPP DEJAH", + "createdAt": "2014-07-29", + "completed": "2020-04-21", + "initiated": "2015-09-20", + "ministryContact": "GOLDNER RAY", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -37960,27 +60514,22 @@ "notationParticipants": [ { "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true + "role": "REQUESTED BY", + "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2020-06-12", - "completed": "2018-02-13", - "initiated": "2022-08-04", - "ministryContact": "GUTMANN TRISHA", + "createdAt": "2019-01-09", + "completed": "2022-06-17", + "initiated": "2021-07-10", + "ministryContact": "MURRAY OMER", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -37995,27 +60544,22 @@ }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2019-01-03", - "completed": "2015-02-10", - "initiated": "2023-09-16", - "ministryContact": "BATZ SHANNON", + "createdAt": "2017-10-28", + "completed": "2019-02-01", + "initiated": "2021-10-03", + "ministryContact": "GLOVER PAYTON", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -38026,26 +60570,26 @@ { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": true } ], "siteRegistry": false }, { - "createdAt": "2020-12-14", - "completed": "2020-05-02", - "initiated": "2014-04-05", - "ministryContact": "SCHAMBERGER ALEXZANDER", + "createdAt": "2014-01-01", + "completed": "2015-07-27", + "initiated": "2014-03-05", + "ministryContact": "MURAZIK KRIS", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -38054,19 +60598,19 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", @@ -38075,18 +60619,18 @@ }, { "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true } ], "participants": [ { - "name": "IPSUM", - "endDate": "2013-12-24", - "startDate": "2017-01-25", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2022-06-12", + "startDate": "2019-01-31", "notes": "", "roles": [ "EMPLOYEE" @@ -38094,19 +60638,19 @@ "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2023-02-24", - "startDate": "2016-01-02", + "name": "AMET, DOLOR SIT", + "endDate": "2016-05-19", + "startDate": "2014-05-03", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2013-10-07", - "startDate": "2014-10-10", + "name": "AMET, DOLOR SIT", + "endDate": "2014-06-22", + "startDate": "2017-07-18", "notes": "", "roles": [ "ORGANIZATION" @@ -38114,51 +60658,178 @@ "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2017-10-22", - "startDate": "2020-03-10", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2014-04-19", + "startDate": "2016-05-09", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": true + "siteRegistry": false + } + ], + "suspectLandUses": [ + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2016-09-29 (described on Site Profile dated 2016-09-29)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2016-03-05 (described on Site Profile dated 2016-03-05)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + } + ], + "siteDisclosures": [ + { + "siteRegistry": true, + "dateReceived": "2021-09-26", + "dateCompleted": "2019-11-12", + "dateEntered": "2018-05-27", + "dateRegistrar": "2018-11-02", + "dateLocalAuthorityReceived": "2022-06-20", + "summary": "Nemo eos illo sapiente ex odio error voluptatum illum.\nEarum est exercitationem.", + "informationUsed": "Earum corporis provident reiciendis suscipit.\nAt cum doloribus laudantium.\nAperiam adipisci eaque esse dolor voluptatum voluptatibus autem dolores accusamus.", + "pastOrPresentOrders": "Amet beatae saepe aut.\nAb culpa facilis harum.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + } + ] + }, + { + "siteRegistry": false, + "dateReceived": "2018-05-20", + "dateCompleted": "2015-08-28", + "dateEntered": "2017-02-04", + "dateRegistrar": "2022-07-05", + "dateLocalAuthorityReceived": "2017-03-07", + "summary": "Dolor commodi sapiente alias nam rerum quam adipisci.\nAd atque illo dicta quae laudantium non.", + "informationUsed": "Aliquid aliquid laudantium.\nVoluptatem nobis odit dignissimos officia at ad veritatis culpa similique.\nIn modi cum eaque eligendi minus.", + "pastOrPresentOrders": "Ea saepe accusamus minima eum voluptas.\nEum iure neque.\nSunt officiis reiciendis quibusdam.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + } + ] + } + ], + "activityLog": [ + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "KILBACK DASHAWN", + "timestamp": "2018-12-17" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "ROGAHN-LAKIN ALIZA", + "timestamp": "2017-11-17" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "DUBUQUE CECILE", + "timestamp": "2013-10-17" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "RATH SHEILA", + "timestamp": "2022-12-14" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "ORN CAMREN", + "timestamp": "2022-11-08" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "TILLMAN MAY", + "timestamp": "2018-08-23" } ], "associatedSites": [ { - "dateNoted": "2021-11-22", + "dateNoted": "2022-08-29", + "notes": "", + "parcelID": "19068", + "siteID": "15216", + "siteRegistry": false + }, + { + "dateNoted": "2020-02-07", + "notes": "", + "parcelID": "15226", + "siteID": "19221", + "siteRegistry": true + }, + { + "dateNoted": "2014-09-25", "notes": "", - "parcelID": "20890", - "siteID": "16487", + "parcelID": "18944", + "siteID": "20188", "siteRegistry": true } ] }, { - "uuid": "ec896d1f-1a70-45d3-a606-bffac9b418d3", - "siteID": 15689, - "address": "6417 Sporer Garden", - "latitude": 48.7699, - "longitude": -129.3498, - "lastUpdated": "2015-01-18", - "city": "West Marques", + "uuid": "307f4ee8-116c-433c-bca1-ca634e679898", + "siteID": 18108, + "address": "297 Zboncak Freeway", + "latitude": 51.6757, + "longitude": -136.8531, + "lastUpdated": "2020-12-15", + "city": "Ponce", "region": " North Coast", - "victoriaFile": "26250-20/12591", + "victoriaFile": "26250-20/16202", "regionalFile": "N/A", "parcelIDs": [ - 583589, - 1380808, - 3215830, - 6999927, - 1215192 + 346825, + 722667, + 831821, + 3709276, + 2976295 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2023-07-19", - "completed": "2015-12-18", - "initiated": "2019-12-29", - "ministryContact": "HAMMES JAYLIN", + "createdAt": "2022-01-18", + "completed": "2022-04-10", + "initiated": "2016-11-19", + "ministryContact": "BASHIRIAN ARTHUR", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -38167,33 +60838,48 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false - }, + } + ], + "siteRegistry": false + }, + { + "createdAt": "2015-01-16", + "completed": "2021-06-19", + "initiated": "2022-10-17", + "ministryContact": "JACOBSON EINO", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false } ], "siteRegistry": false }, { - "createdAt": "2017-09-17", - "completed": "2020-03-23", - "initiated": "2014-05-12", - "ministryContact": "RUTHERFORD CLARISSA", + "createdAt": "2018-03-29", + "completed": "2014-08-02", + "initiated": "2021-02-01", + "ministryContact": "WILLMS WILL", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -38207,49 +60893,44 @@ "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false } ], "participants": [ { - "name": "AMET, DOLOR SIT", - "endDate": "2022-01-26", - "startDate": "2023-01-13", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2015-10-06", + "startDate": "2021-08-22", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], - "siteRegistry": true + "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", - "endDate": "2015-05-19", - "startDate": "2022-10-15", + "endDate": "2023-07-24", + "startDate": "2019-11-16", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], - "siteRegistry": true + "siteRegistry": false }, { - "name": "IPSUM", - "endDate": "2022-04-15", - "startDate": "2015-07-11", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2014-12-10", + "startDate": "2015-11-11", "notes": "", "roles": [ "ORGANIZATION" @@ -38258,67 +60939,168 @@ }, { "name": "IPSUM", - "endDate": "2022-03-26", - "startDate": "2018-12-16", + "endDate": "2015-03-07", + "startDate": "2020-11-07", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": false + "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2015-07-31", - "startDate": "2021-07-12", + "endDate": "2019-12-14", + "startDate": "2019-11-14", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], - "siteRegistry": true + "siteRegistry": false + } + ], + "suspectLandUses": [ + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2018-05-16 (described on Site Profile dated 2018-05-16)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2022-04-14 (described on Site Profile dated 2022-04-14)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2020-02-17 (described on Site Profile dated 2020-02-17)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2018-09-09 (described on Site Profile dated 2018-09-09)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2015-02-20 (described on Site Profile dated 2015-02-20)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + } + ], + "siteDisclosures": [ + { + "siteRegistry": false, + "dateReceived": "2020-08-02", + "dateCompleted": "2014-08-05", + "dateEntered": "2020-09-24", + "dateRegistrar": "2014-04-13", + "dateLocalAuthorityReceived": "2019-02-21", + "summary": "Ullam dolores id reprehenderit sint sit autem.\nCorporis architecto perspiciatis tempora.", + "informationUsed": "Temporibus et quis consectetur deserunt placeat deleniti.\nRem alias voluptatem accusantium eveniet soluta blanditiis sunt maiores.\nIllo maiores quam perferendis voluptatem fugit.\nMinus provident officiis deleniti autem quia.\nDolor non nulla est hic molestias.", + "pastOrPresentOrders": "Consectetur eveniet aliquam modi eius.\nReprehenderit sapiente alias facere doloribus non excepturi dolorum illum.\nIllo molestias error laboriosam ad optio tenetur.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + } + ] + } + ], + "activityLog": [ + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "POLLICH ARIELLE", + "timestamp": "2020-02-13" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "CORWIN ROSIE", + "timestamp": "2014-10-17" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "MANN JOHANN", + "timestamp": "2014-03-07" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "HERMANN CARLI", + "timestamp": "2023-09-19" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "MONAHAN FORREST", + "timestamp": "2018-05-15" } ], "associatedSites": [ { - "dateNoted": "2017-01-30", + "dateNoted": "2018-06-04", "notes": "", - "parcelID": "17574", - "siteID": "16814", - "siteRegistry": true + "parcelID": "18381", + "siteID": "16220", + "siteRegistry": false + }, + { + "dateNoted": "2020-05-20", + "notes": "", + "parcelID": "20298", + "siteID": "18231", + "siteRegistry": false }, { - "dateNoted": "2018-09-08", + "dateNoted": "2023-03-29", "notes": "", - "parcelID": "17036", - "siteID": "18368", + "parcelID": "16124", + "siteID": "17450", "siteRegistry": false } ] }, { - "uuid": "89ad36e4-ffd7-4da3-9e60-c80397028b07", - "siteID": 16517, - "address": "70015 Alexis Corner", - "latitude": 50.8396, - "longitude": -127.7127, - "lastUpdated": "2014-04-19", - "city": "Fort Susiemouth", - "region": "Vancouver Island/Coast", - "victoriaFile": "26250-20/17048", + "uuid": "63932f55-f9ac-40cf-850d-12fc764ba733", + "siteID": 18509, + "address": "2504 McDermott Landing", + "latitude": 56.9611, + "longitude": -136.6601, + "lastUpdated": "2016-03-11", + "city": "South Madison", + "region": "Kootenay", + "victoriaFile": "26250-20/11734", "regionalFile": "N/A", "parcelIDs": [ - 2684992, - 1133563, - 8746492, - 8521531, - 166890 + 4606863, + 4657320, + 4275317, + 2305767, + 4106952 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2022-09-18", - "completed": "2017-02-02", - "initiated": "2022-02-16", - "ministryContact": "WIZA CARMINE", + "createdAt": "2015-11-24", + "completed": "2021-06-20", + "initiated": "2017-04-21", + "ministryContact": "JOHNSON ESMERALDA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -38329,26 +61111,21 @@ { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": true } ], "siteRegistry": true }, { - "createdAt": "2017-08-21", - "completed": "2018-01-02", - "initiated": "2016-07-19", - "ministryContact": "MANTE KAILEE", + "createdAt": "2017-11-24", + "completed": "2023-03-11", + "initiated": "2015-11-04", + "ministryContact": "BEATTY JAZMIN", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -38357,118 +61134,205 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false } ], + "siteRegistry": false + } + ], + "participants": [ + { + "name": "IPSUM", + "endDate": "2016-07-04", + "startDate": "2023-03-27", + "notes": "", + "roles": [ + "ORGANIZATION" + ], "siteRegistry": true }, { - "createdAt": "2021-03-24", - "completed": "2015-03-24", - "initiated": "2021-07-11", - "ministryContact": "STOKES CHARLOTTE", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" + "name": "AMET, DOLOR SIT", + "endDate": "2022-05-13", + "startDate": "2020-08-29", + "notes": "", + "roles": [ + "ORGANIZATION" ], - "notationParticipants": [ + "siteRegistry": false + } + ], + "suspectLandUses": [ + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2019-02-23 (described on Site Profile dated 2019-02-23)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2021-01-16 (described on Site Profile dated 2021-01-16)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2019-06-28 (described on Site Profile dated 2019-06-28)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2021-05-14 (described on Site Profile dated 2021-05-14)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + } + ], + "siteDisclosures": [ + { + "siteRegistry": false, + "dateReceived": "2019-02-28", + "dateCompleted": "2023-01-05", + "dateEntered": "2016-11-23", + "dateRegistrar": "2023-06-14", + "dateLocalAuthorityReceived": "2023-09-18", + "summary": "Laboriosam molestiae accusamus porro.\nEaque nobis autem doloremque asperiores mollitia fugit eveniet.", + "informationUsed": "Reiciendis earum pariatur dolorum sapiente minima quos nemo magnam.\nNihil vel accusantium temporibus optio adipisci eveniet cupiditate nesciunt labore.\nNon delectus quia nostrum amet commodi.\nId quis ad culpa similique fuga.", + "pastOrPresentOrders": "Placeat aliquid ipsam.\nRepellat reprehenderit iusto officiis porro dolor ullam.", + "commercialAndIndustrialPurposes": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false } - ], - "siteRegistry": true + ] + }, + { + "siteRegistry": false, + "dateReceived": "2023-06-18", + "dateCompleted": "2023-08-13", + "dateEntered": "2021-01-23", + "dateRegistrar": "2021-04-01", + "dateLocalAuthorityReceived": "2019-03-27", + "summary": "Modi impedit consequuntur cum excepturi tempora deserunt.\nModi sunt nesciunt suscipit voluptates tempora nisi ex saepe maiores.\nA necessitatibus veritatis voluptate possimus aspernatur aspernatur.", + "informationUsed": "Alias debitis corporis libero sint sequi.\nDicta totam nulla autem veritatis saepe.\nProvident quia atque temporibus odit.\nExpedita ut nulla mollitia voluptatum rerum.\nArchitecto perspiciatis aliquam quod esse quos consequatur animi.", + "pastOrPresentOrders": "Dolor iusto eum.\nNobis expedita alias incidunt tenetur laboriosam amet.\nDolor omnis culpa sapiente officiis.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + } + ] } ], - "participants": [ + "activityLog": [ { - "name": "IPSUM", - "endDate": "2021-03-21", - "startDate": "2016-08-03", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": false + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "BRAKUS AHMAD", + "timestamp": "2017-04-01" }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2021-03-31", - "startDate": "2014-10-15", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": true + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "KOCH BENEDICT", + "timestamp": "2018-08-23" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "MORISSETTE ZORA", + "timestamp": "2019-12-16" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "PROHASKA KRYSTINA", + "timestamp": "2017-05-23" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "ROBERTS NAKIA", + "timestamp": "2022-09-01" } ], "associatedSites": [ { - "dateNoted": "2019-08-18", + "dateNoted": "2020-09-01", "notes": "", - "parcelID": "20285", - "siteID": "17318", + "parcelID": "17569", + "siteID": "19726", "siteRegistry": false }, { - "dateNoted": "2020-10-17", + "dateNoted": "2020-09-09", "notes": "", - "parcelID": "17820", - "siteID": "20223", - "siteRegistry": true + "parcelID": "16996", + "siteID": "15785", + "siteRegistry": false } ] }, { - "uuid": "7c9ce76a-b955-4351-a450-80360ede944a", - "siteID": 18368, - "address": "22125 Hermann Extensions", - "latitude": 56.5485, - "longitude": -123.6431, - "lastUpdated": "2014-05-03", - "city": "Elvabury", - "region": "Cariboo", - "victoriaFile": "26250-20/8656", + "uuid": "d2e1fcf2-15d7-4f61-bef8-5c0cec9f08a4", + "siteID": 18685, + "address": "29147 Lubowitz Crest", + "latitude": 50.039, + "longitude": -138.5181, + "lastUpdated": "2015-12-20", + "city": "East Tara", + "region": "Vancouver Island/Coast", + "victoriaFile": "26250-20/4416", "regionalFile": "N/A", "parcelIDs": [ - 6461564, - 5313137, - 7394251, - 8736096, - 3210699 + 9708365, + 9925863, + 8992199, + 5664734, + 1098689 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2020-01-21", - "completed": "2018-01-24", - "initiated": "2022-01-11", - "ministryContact": "GERLACH NICOLAS", + "createdAt": "2022-06-13", + "completed": "2023-02-07", + "initiated": "2021-08-19", + "ministryContact": "TOY ARELY", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -38479,6 +61343,11 @@ { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", "siteRegistry": false }, { @@ -38489,16 +61358,16 @@ { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false } ], "siteRegistry": true }, { - "createdAt": "2020-11-23", - "completed": "2017-10-03", - "initiated": "2017-02-25", - "ministryContact": "KIRLIN MITTIE", + "createdAt": "2021-03-16", + "completed": "2020-09-03", + "initiated": "2015-01-10", + "ministryContact": "DICKINSON AMERICA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -38507,33 +61376,28 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2014-07-27", - "completed": "2013-10-27", - "initiated": "2018-04-08", - "ministryContact": "FARRELL KELVIN", + "createdAt": "2022-10-27", + "completed": "2022-10-18", + "initiated": "2014-08-18", + "ministryContact": "HICKLE THERON", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -38542,7 +61406,7 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true }, @@ -38550,185 +61414,242 @@ "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false } ], "siteRegistry": false + }, + { + "createdAt": "2016-02-07", + "completed": "2014-03-07", + "initiated": "2020-04-03", + "ministryContact": "VEUM ALEXANDRA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true } ], "participants": [ { - "name": "IPSUM", - "endDate": "2021-07-28", - "startDate": "2021-01-18", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2017-06-26", + "startDate": "2020-07-15", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2021-07-29", - "startDate": "2019-08-02", + "name": "IPSUM", + "endDate": "2021-07-12", + "startDate": "2016-07-31", "notes": "", "roles": [ "EMPLOYEE" ], "siteRegistry": false - } - ], - "associatedSites": [ + }, { - "dateNoted": "2019-04-26", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2019-07-11", + "startDate": "2018-08-22", "notes": "", - "parcelID": "16687", - "siteID": "20773", + "roles": [ + "EMPLOYEE" + ], "siteRegistry": true }, { - "dateNoted": "2022-11-19", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2018-11-12", + "startDate": "2021-01-04", "notes": "", - "parcelID": "16216", - "siteID": "16193", + "roles": [ + "ORGANIZATION" + ], "siteRegistry": true }, { - "dateNoted": "2019-11-12", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2021-03-27", + "startDate": "2016-10-22", "notes": "", - "parcelID": "16051", - "siteID": "17057", + "roles": [ + "ORGANIZATION" + ], "siteRegistry": false } - ] - }, - { - "uuid": "5561c309-964a-4f19-a6d6-156292a77462", - "siteID": 15212, - "address": "9072 Stehr Garden", - "latitude": 57.1388, - "longitude": -118.8763, - "lastUpdated": "2022-05-04", - "city": "Schinnerside", - "region": "Thompson-Okanagan", - "victoriaFile": "26250-20/5307", - "regionalFile": "N/A", - "parcelIDs": [ - 3995145, - 773888, - 2815600, - 759291, - 4661385 ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ + "suspectLandUses": [ { - "createdAt": "2016-08-10", - "completed": "2021-06-29", - "initiated": "2021-11-20", - "ministryContact": "KLING-CUMMINGS GRIFFIN", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2022-04-19 (described on Site Profile dated 2022-04-19)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2017-12-25 (described on Site Profile dated 2017-12-25)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2022-12-28 (described on Site Profile dated 2022-12-28)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + } + ], + "siteDisclosures": [ + { + "siteRegistry": true, + "dateReceived": "2022-03-10", + "dateCompleted": "2015-03-21", + "dateEntered": "2022-07-01", + "dateRegistrar": "2014-07-05", + "dateLocalAuthorityReceived": "2018-07-17", + "summary": "Quam voluptatum in illo ratione quod odio asperiores.", + "informationUsed": "Similique sint hic molestias sint ipsa laudantium fugiat itaque.\nVoluptates repudiandae deleniti quia.\nVero amet harum ipsa non.\nQuidem excepturi impedit eligendi aliquid est.\nIste recusandae accusantium quam molestiae expedita voluptate.", + "pastOrPresentOrders": "Pariatur iusto natus recusandae sapiente numquam illo.", + "commercialAndIndustrialPurposes": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false } - ], - "siteRegistry": true + ] }, { - "createdAt": "2016-06-03", - "completed": "2015-08-27", - "initiated": "2019-02-18", - "ministryContact": "TREMBLAY TIMMOTHY", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ + "siteRegistry": true, + "dateReceived": "2015-07-09", + "dateCompleted": "2015-09-06", + "dateEntered": "2016-04-28", + "dateRegistrar": "2018-02-01", + "dateLocalAuthorityReceived": "2014-08-16", + "summary": "Esse quasi error at quasi at optio nam.", + "informationUsed": "Sed perferendis quibusdam.\nCupiditate est impedit reiciendis.\nConsequuntur hic dolor facilis.\nOfficia dolore assumenda.\nVel dolorum inventore alias.", + "pastOrPresentOrders": "Eius aperiam aspernatur autem accusamus repudiandae molestiae omnis molestias.", + "commercialAndIndustrialPurposes": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false } - ], - "siteRegistry": true + ] } ], - "participants": [ + "activityLog": [ { - "name": "AMET, DOLOR SIT", - "endDate": "2022-10-05", - "startDate": "2022-09-16", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": true + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "JAKUBOWSKI FLAVIO", + "timestamp": "2023-03-23" }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2014-02-05", - "startDate": "2018-01-08", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": true + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "MCGLYNN ELIJAH", + "timestamp": "2016-07-09" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "BOSCO ANAIS", + "timestamp": "2023-04-19" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "MONAHAN VAUGHN", + "timestamp": "2019-11-03" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "O'KON BRIDIE", + "timestamp": "2022-01-03" } ], "associatedSites": [ { - "dateNoted": "2020-05-21", + "dateNoted": "2021-08-27", + "notes": "", + "parcelID": "17908", + "siteID": "15327", + "siteRegistry": true + }, + { + "dateNoted": "2023-07-17", "notes": "", - "parcelID": "15512", - "siteID": "20641", + "parcelID": "18056", + "siteID": "19019", "siteRegistry": true } ] }, { - "uuid": "ded16510-480f-4ba4-af55-a830380c8e43", - "siteID": 20826, - "address": "929 Eveline Estates", - "latitude": 55.1169, - "longitude": -129.3873, - "lastUpdated": "2015-04-20", - "city": "West Nicoview", - "region": "Vancouver Island/Coast", - "victoriaFile": "26250-20/8339", + "uuid": "7b8d19d9-c8b4-47f7-8194-120fc90d451a", + "siteID": 19019, + "address": "1600 Lourdes Brook", + "latitude": 52.918, + "longitude": -133.2033, + "lastUpdated": "2017-02-05", + "city": "Watsonville", + "region": " North Coast", + "victoriaFile": "26250-20/11470", "regionalFile": "N/A", "parcelIDs": [ - 7295635, - 9148175, - 905764, - 8102517, - 7015907 + 1217589, + 7932154, + 2789006, + 5126846, + 6049632 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2015-03-30", - "completed": "2018-05-29", - "initiated": "2016-06-13", - "ministryContact": "MULLER VADA", + "createdAt": "2018-05-18", + "completed": "2021-05-08", + "initiated": "2015-07-26", + "ministryContact": "RATH MARCELLUS", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -38743,17 +61664,27 @@ }, { "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true } ], "siteRegistry": true }, { - "createdAt": "2020-08-12", - "completed": "2021-08-04", - "initiated": "2014-02-23", - "ministryContact": "DIETRICH MAC", + "createdAt": "2020-10-04", + "completed": "2020-09-23", + "initiated": "2023-05-02", + "ministryContact": "KULAS VICENTE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -38762,28 +61693,33 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false + "role": "REQUESTED BY", + "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2015-01-10", - "completed": "2019-05-03", - "initiated": "2014-10-17", - "ministryContact": "TILLMAN JAMMIE", + "createdAt": "2017-07-18", + "completed": "2018-07-07", + "initiated": "2017-08-30", + "ministryContact": "THIEL GARRY", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -38797,29 +61733,49 @@ "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "createdAt": "2013-11-19", + "completed": "2016-01-31", + "initiated": "2020-12-14", + "ministryContact": "MOEN BRAULIO", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ { "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false } ], "participants": [ { "name": "SHELL CANADA PRODUCTS", - "endDate": "2023-07-03", - "startDate": "2023-03-03", + "endDate": "2018-03-27", + "startDate": "2018-12-13", "notes": "", "roles": [ "EMPLOYEE" @@ -38827,234 +61783,197 @@ "siteRegistry": false }, { - "name": "AMET, DOLOR SIT", - "endDate": "2017-09-18", - "startDate": "2017-09-19", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2022-05-01", + "startDate": "2020-12-17", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": true - }, - { - "name": "IPSUM", - "endDate": "2018-02-12", - "startDate": "2022-03-20", - "notes": "", - "roles": [ - "EMPLOYEE" - ], "siteRegistry": false }, { - "name": "IPSUM", - "endDate": "2017-03-31", - "startDate": "2018-01-10", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2020-05-30", + "startDate": "2022-04-13", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": true }, { "name": "AMET, DOLOR SIT", - "endDate": "2021-08-30", - "startDate": "2019-01-25", + "endDate": "2022-02-18", + "startDate": "2023-03-18", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true } ], - "associatedSites": [ + "suspectLandUses": [ { - "dateNoted": "2018-10-26", - "notes": "", - "parcelID": "17439", - "siteID": "17463", - "siteRegistry": true + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2022-04-13 (described on Site Profile dated 2022-04-13)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2020-06-29 (described on Site Profile dated 2020-06-29)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } - ] - }, - { - "uuid": "1fc5e2e1-a656-42df-9bb3-8f82ce91bc18", - "siteID": 20555, - "address": "6761 Towne Burgs", - "latitude": 49.2504, - "longitude": -135.7515, - "lastUpdated": "2018-04-18", - "city": "Jenkinsview", - "region": "Cariboo", - "victoriaFile": "26250-20/9603", - "regionalFile": "N/A", - "parcelIDs": [ - 1324279, - 5940273, - 8314692, - 8056149, - 2138029 ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ + "siteDisclosures": [ { - "createdAt": "2015-12-09", - "completed": "2022-08-31", - "initiated": "2023-07-13", - "ministryContact": "MORISSETTE OFELIA", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, + "siteRegistry": false, + "dateReceived": "2018-08-21", + "dateCompleted": "2021-08-04", + "dateEntered": "2016-05-28", + "dateRegistrar": "2013-12-31", + "dateLocalAuthorityReceived": "2016-07-07", + "summary": "Aliquid expedita dolorum ex sit odio alias quasi deserunt.\nTenetur totam dolores.", + "informationUsed": "Quod dolores enim repellat quasi est magni.\nBlanditiis nihil libero.\nTempore dicta in deleniti sequi repellendus.", + "pastOrPresentOrders": "A doloremque suscipit.\nQuod nobis veritatis nisi facere sequi eos neque.\nPorro doloribus ea.", + "commercialAndIndustrialPurposes": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false } - ], - "siteRegistry": false + ] }, { - "createdAt": "2018-12-17", - "completed": "2018-04-27", - "initiated": "2014-09-03", - "ministryContact": "PREDOVIC ALICE", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ + "siteRegistry": false, + "dateReceived": "2023-06-17", + "dateCompleted": "2021-11-02", + "dateEntered": "2017-09-07", + "dateRegistrar": "2016-03-18", + "dateLocalAuthorityReceived": "2019-04-02", + "summary": "Consequatur ea modi voluptatem reiciendis voluptatem.\nVoluptatem qui perspiciatis dolores iusto.\nNecessitatibus quod amet consectetur voluptatibus ut dolorem quam nostrum.", + "informationUsed": "Rem quo eius aperiam repellendus fuga vel.\nPraesentium aliquam iusto eius perspiciatis ipsum optio ipsa excepturi voluptatibus.\nSuscipit est alias sed eum quaerat assumenda voluptatibus est.\nEarum quidem quos commodi.\nTemporibus aliquam ipsam autem molestiae vel maxime eveniet fugiat veniam.", + "pastOrPresentOrders": "Veritatis eligendi dolores soluta enim optio voluptas.\nAtque eligendi sed reprehenderit molestiae repellat inventore.\nQuibusdam temporibus minima provident quos recusandae sequi odit minima.", + "commercialAndIndustrialPurposes": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false } - ], - "siteRegistry": true + ] } ], - "participants": [ + "activityLog": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2020-02-01", - "startDate": "2023-01-06", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": true + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "COLLIER MARIELA", + "timestamp": "2019-08-30" }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2016-05-06", - "startDate": "2022-11-16", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": true + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "TROMP MADISEN", + "timestamp": "2017-01-23" }, { - "name": "AMET, DOLOR SIT", - "endDate": "2016-04-26", - "startDate": "2015-10-07", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": true + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "JASKOLSKI MAYE", + "timestamp": "2019-03-01" }, { - "name": "IPSUM", - "endDate": "2019-07-15", - "startDate": "2020-01-29", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": false + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "WISOKY DEONDRE", + "timestamp": "2021-11-24" }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2020-08-05", - "startDate": "2020-05-31", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": true + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "HAMILL-ULLRICH ASHTYN", + "timestamp": "2021-02-23" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "HEATHCOTE XAVIER", + "timestamp": "2021-07-16" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "D'AMORE MERTIE", + "timestamp": "2017-06-26" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "KSHLERIN RAYMUNDO", + "timestamp": "2021-12-07" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "O'KEEFE PROVIDENCI", + "timestamp": "2015-09-27" } ], "associatedSites": [ { - "dateNoted": "2015-08-04", + "dateNoted": "2019-03-26", "notes": "", - "parcelID": "16638", - "siteID": "19837", + "parcelID": "20456", + "siteID": "15754", "siteRegistry": true } ] }, { - "uuid": "07502cc6-1a98-4e1a-bd90-425e84bc8273", - "siteID": 20211, - "address": "831 Shaylee Ridges", - "latitude": 57.3661, - "longitude": -136.1172, - "lastUpdated": "2020-06-05", - "city": "New Patienceborough", - "region": "Kootenay", - "victoriaFile": "26250-20/17732", + "uuid": "3f8dc20b-9a3d-4575-a384-6642956d9e7e", + "siteID": 19739, + "address": "527 Collier Flats", + "latitude": 49.9322, + "longitude": -130.6346, + "lastUpdated": "2020-06-03", + "city": "Pittsburg", + "region": "Vancouver Island/Coast", + "victoriaFile": "26250-20/17005", "regionalFile": "N/A", "parcelIDs": [ - 484432, - 8655186, - 5497449, - 3220531, - 9641381 + 3366279, + 7372894, + 9156259, + 4475466, + 867705 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2020-09-01", - "completed": "2023-01-16", - "initiated": "2020-02-02", - "ministryContact": "MEDHURST TAD", + "createdAt": "2018-08-02", + "completed": "2022-01-05", + "initiated": "2020-09-09", + "ministryContact": "KASSULKE JACE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -39063,33 +61982,33 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", "siteRegistry": false } ], "siteRegistry": false }, { - "createdAt": "2021-10-25", - "completed": "2020-03-24", - "initiated": "2015-04-17", - "ministryContact": "WATERS DESSIE", + "createdAt": "2018-10-12", + "completed": "2018-03-08", + "initiated": "2021-01-12", + "ministryContact": "WALKER MARILYNE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -39099,7 +62018,17 @@ "notationParticipants": [ { "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": false }, { @@ -39109,7 +62038,7 @@ }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true } ], @@ -39119,18 +62048,18 @@ "participants": [ { "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2015-02-25", - "startDate": "2020-05-20", + "endDate": "2013-11-04", + "startDate": "2015-08-13", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2022-02-19", - "startDate": "2016-11-21", + "endDate": "2014-09-04", + "startDate": "2023-10-08", "notes": "", "roles": [ "EMPLOYEE" @@ -39138,215 +62067,155 @@ "siteRegistry": true } ], - "associatedSites": [ - { - "dateNoted": "2020-05-29", - "notes": "", - "parcelID": "16312", - "siteID": "20788", - "siteRegistry": false - }, + "suspectLandUses": [ { - "dateNoted": "2020-06-06", - "notes": "", - "parcelID": "17502", - "siteID": "19072", - "siteRegistry": false + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2020-05-13 (described on Site Profile dated 2020-05-13)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "dateNoted": "2017-11-13", - "notes": "", - "parcelID": "19431", - "siteID": "17304", - "siteRegistry": true + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2023-05-07 (described on Site Profile dated 2023-05-07)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } - ] - }, - { - "uuid": "d2b2214f-c060-44f9-92ef-18c2c9e9bfe6", - "siteID": 15892, - "address": "2784 Balistreri Hills", - "latitude": 56.5237, - "longitude": -137.8421, - "lastUpdated": "2020-10-11", - "city": "Lowell", - "region": "Mainland/Southwest", - "victoriaFile": "26250-20/9025", - "regionalFile": "N/A", - "parcelIDs": [ - 3471546, - 3208072, - 829814, - 935223, - 429459 ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ + "siteDisclosures": [ { - "createdAt": "2017-07-13", - "completed": "2014-10-16", - "initiated": "2017-05-18", - "ministryContact": "SWANIAWSKI JOHN", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ + "siteRegistry": true, + "dateReceived": "2016-01-07", + "dateCompleted": "2019-09-20", + "dateEntered": "2018-05-05", + "dateRegistrar": "2020-11-03", + "dateLocalAuthorityReceived": "2020-04-16", + "summary": "Deserunt hic voluptate laboriosam iure fuga molestias illum ratione consequuntur.\nRecusandae aliquid doloribus odit.\nFugiat id magni dolorem veritatis.", + "informationUsed": "Maxime saepe dolorum earum error.\nMagnam saepe id esse dolor quidem eius alias enim.\nAliquid consequatur quas deserunt deleniti numquam quos nam.", + "pastOrPresentOrders": "Molestias dolor sed commodi.\nAdipisci est tenetur sunt optio ut accusantium ut commodi dolores.\nMaiores aliquid praesentium hic quia explicabo nemo.", + "commercialAndIndustrialPurposes": [ { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true } - ], - "siteRegistry": true + ] }, { - "createdAt": "2014-07-07", - "completed": "2015-05-01", - "initiated": "2022-10-17", - "ministryContact": "SAUER LEANNE", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ + "siteRegistry": true, + "dateReceived": "2015-03-12", + "dateCompleted": "2015-03-12", + "dateEntered": "2014-04-30", + "dateRegistrar": "2021-02-24", + "dateLocalAuthorityReceived": "2019-08-03", + "summary": "Sint iste ratione amet.\nTempora nulla voluptates tempore magnam consequatur nemo.\nQuia aspernatur soluta quia.", + "informationUsed": "Ab veritatis est ipsam ratione molestiae praesentium eum.\nQuas aliquid ad.\nQui autem dolore.\nRecusandae occaecati voluptatem optio fugiat quidem tenetur earum.\nSed deserunt corporis eveniet asperiores facilis accusantium ratione dolor sunt.", + "pastOrPresentOrders": "Molestias perferendis consequatur nisi molestiae similique voluptatum sequi officiis.\nOfficiis sunt quas nihil repudiandae quae quibusdam hic nobis.", + "commercialAndIndustrialPurposes": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true - } - ], - "siteRegistry": false - }, - { - "createdAt": "2014-02-21", - "completed": "2015-08-11", - "initiated": "2016-07-19", - "ministryContact": "KIHN FERNANDO", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true } - ], - "siteRegistry": false + ] } ], - "participants": [ + "activityLog": [ { - "name": "AMET, DOLOR SIT", - "endDate": "2019-03-13", - "startDate": "2016-08-17", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": false + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "LAKIN CESAR", + "timestamp": "2020-08-24" }, { - "name": "AMET, DOLOR SIT", - "endDate": "2013-12-04", - "startDate": "2020-06-20", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": false + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "STROMAN KATELIN", + "timestamp": "2019-02-27" }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2017-05-30", - "startDate": "2021-07-22", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": false + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "PFANNERSTILL HAILEE", + "timestamp": "2015-12-31" }, { - "name": "IPSUM", - "endDate": "2016-04-28", - "startDate": "2023-04-11", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": false + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "POUROS-GERHOLD GERALDINE", + "timestamp": "2020-06-13" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "HAYES KAYLEIGH", + "timestamp": "2015-01-01" } ], "associatedSites": [ { - "dateNoted": "2016-08-15", + "dateNoted": "2017-08-05", "notes": "", - "parcelID": "18065", - "siteID": "19197", - "siteRegistry": true + "parcelID": "17173", + "siteID": "15706", + "siteRegistry": false }, { - "dateNoted": "2017-05-07", + "dateNoted": "2017-10-27", "notes": "", - "parcelID": "18629", - "siteID": "20915", + "parcelID": "20635", + "siteID": "19349", "siteRegistry": false } ] }, { - "uuid": "2b17d0c8-ffc7-459a-9718-b7d26ca62f4d", - "siteID": 19391, - "address": "71875 Deckow Fort", - "latitude": 49.4737, - "longitude": -123.9388, - "lastUpdated": "2021-05-18", - "city": "Fort Brookfield", - "region": "Vancouver Island/Coast", - "victoriaFile": "26250-20/3698", + "uuid": "22dc4908-d90e-4222-b878-87081de7716a", + "siteID": 17791, + "address": "7967 Evalyn Streets", + "latitude": 58.5574, + "longitude": -132.7327, + "lastUpdated": "2019-01-24", + "city": "East Imogene", + "region": "Cariboo", + "victoriaFile": "26250-20/1095", "regionalFile": "N/A", "parcelIDs": [ - 9983523, - 674301, - 817429, - 2003504, - 7974602 + 2689285, + 8135050, + 816741, + 3936213, + 9685832 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2021-03-26", - "completed": "2015-06-24", - "initiated": "2023-07-24", - "ministryContact": "SCHULTZ DEDRIC", + "createdAt": "2021-01-18", + "completed": "2023-04-01", + "initiated": "2013-10-15", + "ministryContact": "CRONIN CATHARINE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -39356,12 +62225,7 @@ "notationParticipants": [ { "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true }, { @@ -39372,51 +62236,26 @@ { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false - } - ], - "siteRegistry": false - }, - { - "createdAt": "2019-11-27", - "completed": "2022-01-08", - "initiated": "2014-09-27", - "ministryContact": "HALVORSON GRANT", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2016-08-31", - "completed": "2017-05-03", - "initiated": "2019-05-21", - "ministryContact": "HAYES JULES", + "createdAt": "2023-03-15", + "completed": "2019-12-27", + "initiated": "2017-08-17", + "ministryContact": "ROWE-CARTER BLAZE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -39426,52 +62265,32 @@ "notationParticipants": [ { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true + "role": "SUBMITTED BY", + "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false - } - ], - "siteRegistry": false - }, - { - "createdAt": "2017-01-25", - "completed": "2014-03-20", - "initiated": "2016-10-20", - "ministryContact": "WINTHEISER LANEY", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2020-02-16", - "completed": "2021-05-30", - "initiated": "2019-11-21", - "ministryContact": "HERMANN JOESPH", + "createdAt": "2014-06-24", + "completed": "2017-10-05", + "initiated": "2019-07-22", + "ministryContact": "LOCKMAN CAROLYNE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -39481,8 +62300,8 @@ "notationParticipants": [ { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false + "role": "SUBMITTED BY", + "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", @@ -39490,34 +62309,24 @@ "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true } ], "participants": [ - { - "name": "AMET, DOLOR SIT", - "endDate": "2015-01-28", - "startDate": "2016-12-03", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": false - }, { "name": "SHELL CANADA PRODUCTS", - "endDate": "2018-10-26", - "startDate": "2019-09-28", + "endDate": "2014-07-13", + "startDate": "2014-05-17", "notes": "", "roles": [ "ORGANIZATION" @@ -39525,85 +62334,159 @@ "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2016-05-04", - "startDate": "2014-07-05", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2017-12-19", + "startDate": "2017-02-23", "notes": "", "roles": [ "EMPLOYEE" ], "siteRegistry": false + } + ], + "suspectLandUses": [ + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2018-04-30 (described on Site Profile dated 2018-04-30)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2019-06-13", - "startDate": "2022-03-23", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": false + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2016-11-22 (described on Site Profile dated 2016-11-22)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2021-09-25", - "startDate": "2020-09-27", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": true + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2020-12-19 (described on Site Profile dated 2020-12-19)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2020-07-17 (described on Site Profile dated 2020-07-17)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], - "associatedSites": [ + "siteDisclosures": [ { - "dateNoted": "2022-06-04", - "notes": "", - "parcelID": "17447", - "siteID": "18969", - "siteRegistry": false + "siteRegistry": false, + "dateReceived": "2020-05-09", + "dateCompleted": "2018-08-05", + "dateEntered": "2014-05-31", + "dateRegistrar": "2023-03-24", + "dateLocalAuthorityReceived": "2017-08-28", + "summary": "Corrupti illo debitis praesentium molestias laudantium officia qui veniam illum.\nDolorem illo amet illo consequatur perspiciatis unde exercitationem.\nVoluptates voluptate excepturi voluptas magni rem illo voluptatibus sit praesentium.", + "informationUsed": "Perspiciatis facilis voluptate tempore.\nMolestiae illum ut est expedita excepturi.\nFacilis nam ipsa aspernatur doloremque vero dolore.\nNobis vero odio.\nArchitecto rerum nostrum perferendis quas facere corporis qui.", + "pastOrPresentOrders": "Labore quo sit nam tenetur odit.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + } + ] + } + ], + "activityLog": [ + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "HAGENES ALAYNA", + "timestamp": "2016-03-16" }, { - "dateNoted": "2021-08-25", - "notes": "", - "parcelID": "19959", - "siteID": "17449", - "siteRegistry": false + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "WALTER KARINE", + "timestamp": "2022-12-17" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "LUEILWITZ KENNA", + "timestamp": "2017-09-12" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "HEANEY GUILLERMO", + "timestamp": "2016-10-12" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "O'CONNER JANESSA", + "timestamp": "2016-05-22" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "PARISIAN JOHNSON", + "timestamp": "2017-10-06" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "TERRY LERA", + "timestamp": "2018-12-28" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "JAST ELISE", + "timestamp": "2019-04-04" }, { - "dateNoted": "2020-02-22", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "TOWNE CURT", + "timestamp": "2018-08-22" + } + ], + "associatedSites": [ + { + "dateNoted": "2016-03-03", "notes": "", - "parcelID": "16608", - "siteID": "19872", + "parcelID": "19422", + "siteID": "17972", "siteRegistry": false } ] }, { - "uuid": "f122d440-2fe7-4cbf-ae78-7769d86f1263", - "siteID": 17414, - "address": "7156 Lynch Inlet", - "latitude": 49.8562, - "longitude": -135.9871, - "lastUpdated": "2014-01-03", - "city": "Velvachester", - "region": " North Coast", - "victoriaFile": "26250-20/10433", + "uuid": "45f797e6-23ca-4dd1-b691-ade80fc5f244", + "siteID": 18087, + "address": "341 Bobbie Brooks", + "latitude": 58.3505, + "longitude": -134.1761, + "lastUpdated": "2015-05-17", + "city": "Adelineview", + "region": "Vancouver Island/Coast", + "victoriaFile": "26250-20/15118", "regionalFile": "N/A", "parcelIDs": [ - 4900025, - 1867596, - 2426583, - 9138419, - 2294409 + 6485305, + 7574246, + 3139449, + 5782024, + 3509311 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2014-06-30", - "completed": "2016-07-25", - "initiated": "2019-02-16", - "ministryContact": "LEDNER ISABELL", + "createdAt": "2019-05-03", + "completed": "2021-05-08", + "initiated": "2016-12-03", + "ministryContact": "SPENCER ROSALEE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -39612,18 +62495,13 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false }, { @@ -39635,10 +62513,10 @@ "siteRegistry": true }, { - "createdAt": "2019-04-29", - "completed": "2023-03-19", - "initiated": "2023-04-09", - "ministryContact": "FISHER LANE", + "createdAt": "2018-09-03", + "completed": "2019-05-07", + "initiated": "2018-04-27", + "ministryContact": "KAUTZER FRANKIE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -39647,8 +62525,8 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": true }, { @@ -39657,28 +62535,43 @@ "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": true - }, + } + ], + "siteRegistry": false + }, + { + "createdAt": "2017-10-14", + "completed": "2023-10-01", + "initiated": "2017-04-03", + "ministryContact": "SPENCER BUDDY", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2017-04-16", - "completed": "2014-06-23", - "initiated": "2020-08-15", - "ministryContact": "SHIELDS CHANEL", + "createdAt": "2021-10-19", + "completed": "2021-05-07", + "initiated": "2022-10-25", + "ministryContact": "MARKS CLETUS", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -39692,10 +62585,15 @@ "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", @@ -39705,10 +62603,10 @@ "siteRegistry": true }, { - "createdAt": "2022-05-23", - "completed": "2016-07-24", - "initiated": "2023-02-15", - "ministryContact": "WISOKY CECILIA", + "createdAt": "2015-02-14", + "completed": "2014-10-10", + "initiated": "2018-06-24", + "ministryContact": "WARD JUDGE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -39718,7 +62616,7 @@ "notationParticipants": [ { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false }, { @@ -39727,8 +62625,8 @@ "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": true }, { @@ -39737,86 +62635,210 @@ "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true } ], "participants": [ { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2020-03-20", - "startDate": "2021-01-24", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2023-05-06", + "startDate": "2021-05-08", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], - "siteRegistry": true + "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2016-07-16", - "startDate": "2022-01-02", + "endDate": "2016-08-18", + "startDate": "2020-06-01", "notes": "", "roles": [ "EMPLOYEE" ], "siteRegistry": true + } + ], + "suspectLandUses": [ + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2022-06-23 (described on Site Profile dated 2022-06-23)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2022-03-11", - "startDate": "2014-07-26", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": true + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2017-01-09 (described on Site Profile dated 2017-01-09)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "name": "AMET, DOLOR SIT", - "endDate": "2020-03-21", - "startDate": "2023-08-09", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": true + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2016-11-10 (described on Site Profile dated 2016-11-10)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2020-12-23 (described on Site Profile dated 2020-12-23)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + } + ], + "siteDisclosures": [ + { + "siteRegistry": true, + "dateReceived": "2017-09-03", + "dateCompleted": "2022-06-14", + "dateEntered": "2021-09-17", + "dateRegistrar": "2018-11-18", + "dateLocalAuthorityReceived": "2022-09-20", + "summary": "Eum dicta quasi iusto dolores.\nMinima incidunt aliquam non laudantium voluptatibus.", + "informationUsed": "Nostrum quasi delectus non.\nAsperiores quidem blanditiis culpa voluptate minima hic autem dignissimos.\nEos velit ullam.\nPorro sapiente officia ex animi perferendis atque architecto laboriosam voluptas.", + "pastOrPresentOrders": "Rerum nihil corporis quaerat ut ad iure error rem eos.\nSed repellat corporis nemo iste quia.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + } + ] + }, + { + "siteRegistry": true, + "dateReceived": "2021-03-05", + "dateCompleted": "2019-05-05", + "dateEntered": "2018-05-07", + "dateRegistrar": "2019-12-18", + "dateLocalAuthorityReceived": "2016-02-07", + "summary": "Animi non porro quod rerum.\nDicta provident et nesciunt expedita praesentium earum eaque.\nVoluptate optio adipisci ducimus quisquam fugit accusantium.", + "informationUsed": "Aspernatur fugiat quidem cumque vel porro necessitatibus illum.\nPariatur nesciunt odio eius.\nMaxime est facilis odit nam voluptas quo cupiditate corporis molestiae.", + "pastOrPresentOrders": "Animi alias ducimus at ipsa dignissimos iure reprehenderit beatae.\nEst architecto numquam debitis.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + } + ] + } + ], + "activityLog": [ + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "PFEFFER ISSAC", + "timestamp": "2015-06-29" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "WELCH BONNIE", + "timestamp": "2018-06-28" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "BREITENBERG DAMION", + "timestamp": "2016-07-26" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "LITTLE NATALIA", + "timestamp": "2014-09-25" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "ERNSER SHANIYA", + "timestamp": "2019-12-15" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "STOLTENBERG VICTORIA", + "timestamp": "2021-05-04" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "KIRLIN OTIS", + "timestamp": "2019-12-03" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "ROBERTS STEFANIE", + "timestamp": "2020-11-09" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "COLLIER KAREEM", + "timestamp": "2014-04-11" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "MONAHAN KENNEDI", + "timestamp": "2016-10-02" } ], "associatedSites": [ { - "dateNoted": "2017-02-05", + "dateNoted": "2014-10-25", + "notes": "", + "parcelID": "20354", + "siteID": "16902", + "siteRegistry": false + }, + { + "dateNoted": "2019-10-15", "notes": "", - "parcelID": "17078", - "siteID": "18969", + "parcelID": "19809", + "siteID": "17309", "siteRegistry": true } ] }, { - "uuid": "a540e3ce-1bfb-4d68-9bfd-d71c609e131e", - "siteID": 16793, - "address": "2310 Keebler Hollow", - "latitude": 52.4986, - "longitude": -124.3014, - "lastUpdated": "2022-12-15", - "city": "North Dustin", - "region": "Cariboo", - "victoriaFile": "26250-20/6557", + "uuid": "dacabceb-df66-4da5-af7e-782fe4482762", + "siteID": 16863, + "address": "135 Kyleigh Center", + "latitude": 56.347, + "longitude": -124.4083, + "lastUpdated": "2023-04-17", + "city": "South Maritza", + "region": "Vancouver Island/Coast", + "victoriaFile": "26250-20/7693", "regionalFile": "N/A", "parcelIDs": [ - 3942731, - 6394025, - 7043329, - 8776630, - 9441531 + 698033, + 2943746, + 628953, + 2670351, + 3616983 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2020-07-05", - "completed": "2021-03-24", - "initiated": "2018-07-14", - "ministryContact": "WELCH GERDA", + "createdAt": "2019-12-12", + "completed": "2019-02-14", + "initiated": "2014-06-04", + "ministryContact": "WIZA ROSALYN", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -39825,38 +62847,23 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2013-12-23", - "completed": "2022-11-09", - "initiated": "2020-10-21", - "ministryContact": "MOSCISKI-KUPHAL MELYNA", + "createdAt": "2016-11-04", + "completed": "2014-11-23", + "initiated": "2017-06-28", + "ministryContact": "BLOCK ARVID", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -39865,14 +62872,14 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false } ], "siteRegistry": false @@ -39881,74 +62888,177 @@ "participants": [ { "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2018-09-18", - "startDate": "2022-08-08", + "endDate": "2017-04-06", + "startDate": "2015-01-02", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2016-03-07", - "startDate": "2018-11-28", + "name": "IPSUM", + "endDate": "2020-12-12", + "startDate": "2017-03-28", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": false } ], + "suspectLandUses": [ + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2015-05-12 (described on Site Profile dated 2015-05-12)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2014-01-11 (described on Site Profile dated 2014-01-11)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2022-05-02 (described on Site Profile dated 2022-05-02)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2022-04-30 (described on Site Profile dated 2022-04-30)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + } + ], + "siteDisclosures": [ + { + "siteRegistry": true, + "dateReceived": "2017-07-07", + "dateCompleted": "2015-05-24", + "dateEntered": "2018-07-18", + "dateRegistrar": "2021-04-24", + "dateLocalAuthorityReceived": "2022-01-20", + "summary": "Accusantium nesciunt amet veritatis neque placeat eveniet sunt.", + "informationUsed": "Sunt aliquid voluptatibus minima a maxime veniam vero officia nobis.\nOptio ipsa accusamus inventore voluptatem asperiores a.\nMaiores consequuntur odio.\nEsse quia dolor veritatis animi minima non id quasi.\nExcepturi ratione eveniet itaque enim.", + "pastOrPresentOrders": "Ab vel magnam nesciunt molestiae beatae maiores.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + } + ] + } + ], + "activityLog": [ + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "QUIGLEY-MEDHURST DAWN", + "timestamp": "2023-06-19" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "CRUICKSHANK HERMINIO", + "timestamp": "2013-12-13" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "JACOBS MALACHI", + "timestamp": "2014-05-02" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "BERNHARD TRACE", + "timestamp": "2021-11-29" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "GUSIKOWSKI KRYSTAL", + "timestamp": "2014-05-28" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "BORER MINNIE", + "timestamp": "2015-05-21" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "MAGGIO DINA", + "timestamp": "2023-05-28" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "O'KEEFE MARIETTA", + "timestamp": "2014-08-17" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "ZIEMANN CHAUNCEY", + "timestamp": "2022-12-03" + } + ], "associatedSites": [ { - "dateNoted": "2016-11-23", + "dateNoted": "2017-04-20", "notes": "", - "parcelID": "17239", - "siteID": "16966", + "parcelID": "20712", + "siteID": "19248", "siteRegistry": true }, { - "dateNoted": "2015-02-01", + "dateNoted": "2022-01-30", "notes": "", - "parcelID": "16359", - "siteID": "18652", - "siteRegistry": true + "parcelID": "20940", + "siteID": "17601", + "siteRegistry": false }, { - "dateNoted": "2022-02-13", + "dateNoted": "2017-09-19", "notes": "", - "parcelID": "20372", - "siteID": "16810", - "siteRegistry": false + "parcelID": "19046", + "siteID": "15574", + "siteRegistry": true } ] }, { - "uuid": "cc4dd794-6344-4fbd-822d-c2b8bea7eb40", - "siteID": 15609, - "address": "7417 Stroman Rapid", - "latitude": 51.068, - "longitude": -133.9376, - "lastUpdated": "2020-12-15", - "city": "Gislasonton", + "uuid": "06e3a0e0-97e0-4e88-a3c3-324284dbdaf9", + "siteID": 19078, + "address": "864 Mann Turnpike", + "latitude": 54.528, + "longitude": -122.4358, + "lastUpdated": "2022-05-20", + "city": "Goldaboro", "region": " North Coast", - "victoriaFile": "26250-20/13927", + "victoriaFile": "26250-20/7950", "regionalFile": "N/A", "parcelIDs": [ - 9934842, - 7091060, - 5315768, - 8472006, - 5159041 + 6146848, + 2028625, + 2413678, + 1603966, + 866184 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2013-10-26", - "completed": "2018-09-05", - "initiated": "2018-06-10", - "ministryContact": "MOHR CORY", + "createdAt": "2022-12-14", + "completed": "2022-10-21", + "initiated": "2017-03-14", + "ministryContact": "FEENEY NOELIA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -39956,11 +63066,6 @@ "" ], "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", @@ -39969,27 +63074,7 @@ { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false - } - ], - "siteRegistry": true - }, - { - "createdAt": "2014-05-01", - "completed": "2014-06-21", - "initiated": "2014-05-24", - "ministryContact": "MORAR LAFAYETTE", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", @@ -39997,18 +63082,23 @@ "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false } ], "siteRegistry": false }, { - "createdAt": "2015-01-11", - "completed": "2019-10-19", - "initiated": "2019-05-13", - "ministryContact": "BECKER CONOR", + "createdAt": "2019-09-18", + "completed": "2015-12-26", + "initiated": "2017-09-03", + "ministryContact": "SCHMELER ANAIS", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -40019,17 +63109,7 @@ { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", @@ -40037,13 +63117,13 @@ "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2020-05-19", - "completed": "2021-06-04", - "initiated": "2021-12-11", - "ministryContact": "ZEMLAK JASMIN", + "createdAt": "2021-06-19", + "completed": "2018-11-30", + "initiated": "2021-03-12", + "ministryContact": "THIEL FATIMA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -40053,32 +63133,27 @@ "notationParticipants": [ { "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2021-06-19", - "completed": "2015-09-28", - "initiated": "2015-01-06", - "ministryContact": "CASSIN ALEXANE", + "createdAt": "2018-01-30", + "completed": "2021-12-03", + "initiated": "2019-01-17", + "ministryContact": "HALEY MISAEL", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -40087,44 +63162,54 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false } ], "participants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2014-08-10", - "startDate": "2018-07-13", + "name": "IPSUM", + "endDate": "2018-05-05", + "startDate": "2022-01-24", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], - "siteRegistry": true + "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", - "endDate": "2014-05-18", - "startDate": "2017-05-03", + "endDate": "2014-07-04", + "startDate": "2018-11-06", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2016-11-30", + "startDate": "2023-04-06", "notes": "", "roles": [ "EMPLOYEE" @@ -40133,60 +63218,154 @@ }, { "name": "AMET, DOLOR SIT", - "endDate": "2019-07-15", - "startDate": "2017-01-02", + "endDate": "2014-02-05", + "startDate": "2020-06-15", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": false }, { "name": "AMET, DOLOR SIT", - "endDate": "2019-05-16", - "startDate": "2014-10-13", + "endDate": "2013-10-16", + "startDate": "2015-08-28", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": true } ], + "suspectLandUses": [ + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2018-06-25 (described on Site Profile dated 2018-06-25)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2023-09-30 (described on Site Profile dated 2023-09-30)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2016-04-30 (described on Site Profile dated 2016-04-30)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + } + ], + "siteDisclosures": [ + { + "siteRegistry": false, + "dateReceived": "2022-08-30", + "dateCompleted": "2021-07-17", + "dateEntered": "2014-11-14", + "dateRegistrar": "2017-01-10", + "dateLocalAuthorityReceived": "2022-11-07", + "summary": "Quia quaerat voluptatum.\nAccusamus accusamus illum eaque ex.", + "informationUsed": "Iusto nobis dignissimos eligendi architecto accusantium natus.\nDolor quod exercitationem vitae iusto doloremque possimus ex natus.\nSed odit veniam tempora tenetur dolor quod corrupti et similique.\nOdio ut ad architecto adipisci.\nQui natus beatae fugiat ipsa reprehenderit repellendus natus quod.", + "pastOrPresentOrders": "Ullam repudiandae nisi magnam.\nMaiores voluptas atque tempora eos sed magni.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + } + ] + } + ], + "activityLog": [ + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "METZ JAUNITA", + "timestamp": "2019-10-22" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "BARTELL ALYSSON", + "timestamp": "2022-02-20" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "WYMAN MAXIME", + "timestamp": "2018-05-24" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "GULGOWSKI ELSE", + "timestamp": "2020-08-13" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "LEUSCHKE GREGG", + "timestamp": "2018-09-03" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "KOVACEK SHANNA", + "timestamp": "2014-12-28" + } + ], "associatedSites": [ { - "dateNoted": "2021-04-16", + "dateNoted": "2018-06-09", "notes": "", - "parcelID": "15957", - "siteID": "18001", + "parcelID": "19623", + "siteID": "20836", + "siteRegistry": true + }, + { + "dateNoted": "2021-07-13", + "notes": "", + "parcelID": "15375", + "siteID": "17854", + "siteRegistry": false + }, + { + "dateNoted": "2019-01-10", + "notes": "", + "parcelID": "18536", + "siteID": "19987", "siteRegistry": false } ] }, { - "uuid": "d789549b-1d8c-42f2-8ce1-5fbb15205999", - "siteID": 19796, - "address": "57215 Tyler Junctions", - "latitude": 48.772, - "longitude": -131.3969, - "lastUpdated": "2013-11-13", - "city": "Rathville", - "region": "Thompson-Okanagan", - "victoriaFile": "26250-20/9577", + "uuid": "eb050a05-206a-40a2-baf1-86705c9b2767", + "siteID": 17862, + "address": "3719 Cartwright Crest", + "latitude": 57.4008, + "longitude": -125.7174, + "lastUpdated": "2013-12-23", + "city": "East Kacie", + "region": "Cariboo", + "victoriaFile": "26250-20/14118", "regionalFile": "N/A", "parcelIDs": [ - 162384, - 4109186, - 9143100, - 5787826, - 695998 + 3903429, + 5856433, + 786932, + 7759952, + 2253567 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2022-11-23", - "completed": "2023-02-17", - "initiated": "2014-04-24", - "ministryContact": "PURDY ERNIE", + "createdAt": "2023-02-15", + "completed": "2017-10-28", + "initiated": "2014-09-19", + "ministryContact": "LANG WAVA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -40195,8 +63374,13 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": false }, { @@ -40206,27 +63390,22 @@ }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2022-08-03", - "completed": "2022-05-15", - "initiated": "2020-03-05", - "ministryContact": "KUVALIS TRESSA", + "createdAt": "2020-05-15", + "completed": "2019-01-26", + "initiated": "2019-03-15", + "ministryContact": "BECHTELAR MILTON", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -40235,23 +63414,33 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2015-03-24", - "completed": "2020-07-15", - "initiated": "2015-03-17", - "ministryContact": "MULLER SADYE", + "createdAt": "2021-11-03", + "completed": "2016-01-07", + "initiated": "2014-11-10", + "ministryContact": "HICKLE AILEEN", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -40261,22 +63450,22 @@ "notationParticipants": [ { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false } ], "siteRegistry": false }, { - "createdAt": "2023-07-27", - "completed": "2020-06-09", - "initiated": "2020-07-16", - "ministryContact": "JONES-TURCOTTE ASTRID", + "createdAt": "2023-08-11", + "completed": "2018-05-03", + "initiated": "2023-07-13", + "ministryContact": "STROSIN KATHRYNE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -40284,21 +63473,6 @@ "" ], "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", @@ -40307,113 +63481,283 @@ { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true } ], "participants": [ { - "name": "IPSUM", - "endDate": "2015-01-07", - "startDate": "2022-03-29", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2016-12-26", + "startDate": "2019-08-12", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], - "siteRegistry": true + "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2017-05-28", - "startDate": "2022-05-19", + "name": "AMET, DOLOR SIT", + "endDate": "2022-04-25", + "startDate": "2015-10-23", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2017-07-27", - "startDate": "2020-08-14", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2016-06-27", + "startDate": "2015-02-19", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": false + "siteRegistry": true }, { - "name": "IPSUM", - "endDate": "2017-07-10", - "startDate": "2023-09-17", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2016-12-06", + "startDate": "2015-12-30", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": false }, { "name": "IPSUM", - "endDate": "2019-01-21", - "startDate": "2019-10-27", + "endDate": "2016-07-19", + "startDate": "2023-07-12", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true + } + ], + "suspectLandUses": [ + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2018-11-01 (described on Site Profile dated 2018-11-01)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2020-11-27 (described on Site Profile dated 2020-11-27)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2017-01-02 (described on Site Profile dated 2017-01-02)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2014-03-10 (described on Site Profile dated 2014-03-10)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2019-11-25 (described on Site Profile dated 2019-11-25)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + } + ], + "siteDisclosures": [ + { + "siteRegistry": false, + "dateReceived": "2015-07-11", + "dateCompleted": "2019-05-12", + "dateEntered": "2020-03-16", + "dateRegistrar": "2021-12-20", + "dateLocalAuthorityReceived": "2022-03-13", + "summary": "Optio voluptates dicta esse sunt officia nulla vero aliquid laudantium.", + "informationUsed": "Dolor quae praesentium incidunt.\nProvident iure totam sit ullam dolorem neque.\nModi quibusdam quia dolores nam libero harum quo illum saepe.\nSed eum fugit unde dolorem laboriosam laboriosam.", + "pastOrPresentOrders": "Minima neque quo rerum.\nProvident commodi ipsa tenetur quisquam facere illum illo maxime.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + } + ] + }, + { + "siteRegistry": true, + "dateReceived": "2014-10-30", + "dateCompleted": "2019-05-22", + "dateEntered": "2020-09-11", + "dateRegistrar": "2019-04-05", + "dateLocalAuthorityReceived": "2021-05-30", + "summary": "Ullam eos sequi accusantium quae.\nQuam ut labore dolorum nam libero mollitia fugiat dignissimos et.\nNon dolores quam dolorem odit veritatis sed corrupti sapiente.", + "informationUsed": "Praesentium ipsam quaerat.\nTempore officiis totam modi voluptas aliquid sed.\nAssumenda ex quia perspiciatis quam.\nMagni inventore quisquam laboriosam voluptatem mollitia inventore.\nEx optio quos iste fugiat quaerat dolore provident quod rem.", + "pastOrPresentOrders": "Maxime quo tempore voluptas.\nMolestias necessitatibus odio dicta libero omnis consectetur odio voluptas.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + } + ] + } + ], + "activityLog": [ + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "ALTENWERTH GREGORIA", + "timestamp": "2020-11-25" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "STEUBER HILDA", + "timestamp": "2018-01-11" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "LANG MARTA", + "timestamp": "2021-04-20" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "FRANECKI MAZIE", + "timestamp": "2022-12-02" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "FADEL KEIRA", + "timestamp": "2017-12-21" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "DAVIS HALEY", + "timestamp": "2017-01-26" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "RUNTE EARLENE", + "timestamp": "2015-05-27" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "ORN DEAN", + "timestamp": "2017-09-10" } ], "associatedSites": [ { - "dateNoted": "2020-10-13", + "dateNoted": "2022-04-21", "notes": "", - "parcelID": "18887", - "siteID": "16814", - "siteRegistry": false + "parcelID": "20107", + "siteID": "20727", + "siteRegistry": true }, { - "dateNoted": "2018-03-20", + "dateNoted": "2021-05-29", "notes": "", - "parcelID": "19995", - "siteID": "15695", + "parcelID": "16685", + "siteID": "18108", "siteRegistry": false }, { - "dateNoted": "2014-04-15", + "dateNoted": "2014-10-29", "notes": "", - "parcelID": "19033", - "siteID": "20023", - "siteRegistry": true + "parcelID": "15663", + "siteID": "18999", + "siteRegistry": false } ] }, { - "uuid": "f55e5677-d28e-403e-93f4-b9a512900777", - "siteID": 19124, - "address": "3571 Reichel Expressway", - "latitude": 55.5323, - "longitude": -119.1717, - "lastUpdated": "2014-03-03", - "city": "Fort Armandochester", - "region": "Vancouver Island/Coast", - "victoriaFile": "26250-20/12891", + "uuid": "b14d936c-55dc-4aa3-8842-3313a27890f7", + "siteID": 17271, + "address": "8508 Giovanni Square", + "latitude": 54.5056, + "longitude": -123.1276, + "lastUpdated": "2015-07-07", + "city": "Binghamton", + "region": "Kootenay", + "victoriaFile": "26250-20/14760", "regionalFile": "N/A", "parcelIDs": [ - 9812470, - 3976214, - 3381301, - 7444772, - 3496691 + 9757436, + 3525704, + 1253678, + 2442694, + 7939706 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2016-05-29", - "completed": "2014-10-25", - "initiated": "2018-06-24", - "ministryContact": "LUEILWITZ PATIENCE", + "createdAt": "2019-10-30", + "completed": "2015-01-08", + "initiated": "2020-06-01", + "ministryContact": "BERGE AIDAN", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "createdAt": "2014-03-30", + "completed": "2020-07-25", + "initiated": "2016-10-08", + "ministryContact": "DARE JEVON", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -40421,6 +63765,11 @@ "" ], "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", @@ -40428,6 +63777,11 @@ }, { "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true } @@ -40435,10 +63789,10 @@ "siteRegistry": true }, { - "createdAt": "2022-11-08", - "completed": "2023-01-14", - "initiated": "2023-05-08", - "ministryContact": "HARRIS FLORENCIO", + "createdAt": "2018-01-01", + "completed": "2014-12-08", + "initiated": "2023-07-05", + "ministryContact": "RAU LAYNE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -40459,16 +63813,26 @@ { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2022-12-31", - "completed": "2020-06-16", - "initiated": "2018-01-26", - "ministryContact": "LUBOWITZ RUBEN", + "createdAt": "2022-11-20", + "completed": "2016-07-02", + "initiated": "2020-07-02", + "ministryContact": "FISHER MAIDA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -40477,23 +63841,28 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": true } ], "siteRegistry": true }, { - "createdAt": "2020-07-26", - "completed": "2021-08-19", - "initiated": "2016-01-12", - "ministryContact": "KONOPELSKI SANTIAGO", + "createdAt": "2021-09-24", + "completed": "2017-07-07", + "initiated": "2017-03-11", + "ministryContact": "OSINSKI HELOISE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -40502,8 +63871,8 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": true }, { @@ -40511,14 +63880,19 @@ "role": "SUBMITTED BY", "siteRegistry": true }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true } ], @@ -40527,9 +63901,9 @@ ], "participants": [ { - "name": "IPSUM", - "endDate": "2018-11-14", - "startDate": "2021-05-28", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2018-06-16", + "startDate": "2019-01-20", "notes": "", "roles": [ "ORGANIZATION" @@ -40538,18 +63912,18 @@ }, { "name": "SHELL CANADA PRODUCTS", - "endDate": "2014-04-07", - "startDate": "2018-08-18", + "endDate": "2019-06-16", + "startDate": "2022-01-13", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": false }, { "name": "AMET, DOLOR SIT", - "endDate": "2018-06-17", - "startDate": "2016-07-21", + "endDate": "2017-01-19", + "startDate": "2015-11-07", "notes": "", "roles": [ "ORGANIZATION" @@ -40557,55 +63931,149 @@ "siteRegistry": true } ], - "associatedSites": [ + "suspectLandUses": [ { - "dateNoted": "2016-02-26", - "notes": "", - "parcelID": "16219", - "siteID": "19701", - "siteRegistry": false + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2016-06-07 (described on Site Profile dated 2016-06-07)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "dateNoted": "2018-06-06", - "notes": "", - "parcelID": "16093", - "siteID": "16487", - "siteRegistry": false + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2018-12-03 (described on Site Profile dated 2018-12-03)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2016-10-29 (described on Site Profile dated 2016-10-29)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2017-09-13 (described on Site Profile dated 2017-09-13)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2015-06-13 (described on Site Profile dated 2015-06-13)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + } + ], + "siteDisclosures": [ + { + "siteRegistry": false, + "dateReceived": "2022-11-10", + "dateCompleted": "2023-03-09", + "dateEntered": "2017-07-06", + "dateRegistrar": "2014-06-23", + "dateLocalAuthorityReceived": "2017-12-06", + "summary": "Aliquid nulla dolorem magnam iste blanditiis delectus.", + "informationUsed": "Magni a quam quo tenetur eum repellat vero ipsam natus.\nAt quo possimus voluptate quo modi.\nCommodi officiis asperiores dolore adipisci suscipit occaecati voluptate aspernatur reprehenderit.\nSit voluptatum quibusdam minima.\nQuod non nobis a blanditiis architecto perferendis unde aliquid.", + "pastOrPresentOrders": "Consectetur delectus odio totam vel voluptate mollitia asperiores optio quasi.\nQuibusdam vero quisquam consequuntur ipsam beatae quae provident.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + } + ] + } + ], + "activityLog": [ + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "REMPEL FANNY", + "timestamp": "2015-03-08" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "ALTENWERTH ARON", + "timestamp": "2021-04-08" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "D'AMORE COBY", + "timestamp": "2019-10-23" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "ROMAGUERA DANIELLA", + "timestamp": "2016-07-09" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "LEFFLER VIRGINIE", + "timestamp": "2023-05-07" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "KILBACK FREDRICK", + "timestamp": "2015-01-22" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "LEMKE LAMAR", + "timestamp": "2022-10-30" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "KESSLER TRAVIS", + "timestamp": "2016-01-03" }, { - "dateNoted": "2020-01-07", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "KEMMER HAROLD", + "timestamp": "2014-10-30" + } + ], + "associatedSites": [ + { + "dateNoted": "2020-02-24", "notes": "", - "parcelID": "20708", - "siteID": "15656", + "parcelID": "20873", + "siteID": "16157", "siteRegistry": true } ] }, { - "uuid": "20d022f2-30fc-42e2-9eee-905bf891f05e", - "siteID": 16736, - "address": "147 Lewis Run", - "latitude": 48.4502, - "longitude": -122.6054, - "lastUpdated": "2021-09-16", - "city": "New Eunice", - "region": "Vancouver Island/Coast", - "victoriaFile": "26250-20/19765", + "uuid": "20c294d4-7d5f-4247-b886-5a677ccf8d7f", + "siteID": 18004, + "address": "590 Flavie Falls", + "latitude": 48.1932, + "longitude": -126.7327, + "lastUpdated": "2022-12-09", + "city": "Euless", + "region": "Thompson-Okanagan", + "victoriaFile": "26250-20/7083", "regionalFile": "N/A", "parcelIDs": [ - 866117, - 6627716, - 4720104, - 6076826, - 3943086 + 3645358, + 9017358, + 8805972, + 6208163, + 2256889 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2016-05-25", - "completed": "2021-06-04", - "initiated": "2016-09-30", - "ministryContact": "KSHLERIN SUZANNE", + "createdAt": "2021-10-11", + "completed": "2018-06-25", + "initiated": "2018-03-23", + "ministryContact": "HUELS ADRIANA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -40615,37 +64083,37 @@ "notationParticipants": [ { "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false } ], "siteRegistry": false }, { - "createdAt": "2022-10-17", - "completed": "2020-07-14", - "initiated": "2022-10-25", - "ministryContact": "BECKER LINDSAY", + "createdAt": "2020-10-18", + "completed": "2023-04-13", + "initiated": "2018-03-08", + "ministryContact": "VANDERVORT SIDNEY", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -40664,23 +64132,251 @@ "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true } ], "siteRegistry": true + } + ], + "participants": [ + { + "name": "AMET, DOLOR SIT", + "endDate": "2013-12-02", + "startDate": "2015-03-27", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2022-02-08", + "startDate": "2016-10-15", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "name": "IPSUM", + "endDate": "2018-01-18", + "startDate": "2018-01-15", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2019-09-08", + "startDate": "2016-03-02", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2018-04-20", + "startDate": "2020-11-01", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + } + ], + "suspectLandUses": [ + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2023-02-04 (described on Site Profile dated 2023-02-04)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2020-03-09 (described on Site Profile dated 2020-03-09)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2016-03-20 (described on Site Profile dated 2016-03-20)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2018-10-07 (described on Site Profile dated 2018-10-07)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2015-05-08 (described on Site Profile dated 2015-05-08)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + } + ], + "siteDisclosures": [ + { + "siteRegistry": true, + "dateReceived": "2016-12-09", + "dateCompleted": "2014-05-13", + "dateEntered": "2018-12-22", + "dateRegistrar": "2014-03-22", + "dateLocalAuthorityReceived": "2013-11-03", + "summary": "Excepturi sequi magnam molestias vitae fugit corporis.\nDolore quia delectus nostrum suscipit repellendus cumque repudiandae odio.", + "informationUsed": "Laudantium repellat autem.\nQuibusdam commodi maxime.\nQuaerat unde officiis.\nAt animi quibusdam.\nVero labore recusandae quas recusandae praesentium dolorem quas deserunt molestias.", + "pastOrPresentOrders": "In eum perspiciatis ullam neque.\nVero vitae consequatur natus consequatur.\nCorrupti blanditiis esse nesciunt sunt magnam aliquid excepturi sequi.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + } + ] + }, + { + "siteRegistry": false, + "dateReceived": "2017-01-04", + "dateCompleted": "2015-07-04", + "dateEntered": "2018-04-27", + "dateRegistrar": "2017-04-19", + "dateLocalAuthorityReceived": "2015-10-24", + "summary": "Natus tempora dolor esse quisquam pariatur.", + "informationUsed": "Labore odit quasi sint molestiae error ipsa.\nNobis magni est libero in tenetur aliquid.\nAccusantium pariatur nam illum beatae animi veniam autem laborum.\nAssumenda porro velit.\nPerferendis dolore quod.", + "pastOrPresentOrders": "Molestiae et doloribus amet repellat at quo temporibus quaerat facilis.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + } + ] + } + ], + "activityLog": [ + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "BREITENBERG OLGA", + "timestamp": "2019-08-13" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "GLEASON JORDYN", + "timestamp": "2016-10-01" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "GUSIKOWSKI NELDA", + "timestamp": "2015-03-03" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "JENKINS-MCKENZIE RETTA", + "timestamp": "2014-03-23" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "GISLASON RAPHAELLE", + "timestamp": "2016-02-11" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "KERLUKE KALEIGH", + "timestamp": "2015-11-27" + } + ], + "associatedSites": [ + { + "dateNoted": "2014-10-12", + "notes": "", + "parcelID": "17424", + "siteID": "20188", + "siteRegistry": true }, { - "createdAt": "2023-06-03", - "completed": "2015-01-29", - "initiated": "2015-04-13", - "ministryContact": "REILLY EVALYN", + "dateNoted": "2017-05-08", + "notes": "", + "parcelID": "17574", + "siteID": "19559", + "siteRegistry": true + } + ] + }, + { + "uuid": "fdb04312-34d0-46b9-800a-62aade39bb5f", + "siteID": 20891, + "address": "239 Waelchi Gateway", + "latitude": 48.8805, + "longitude": -135.6973, + "lastUpdated": "2019-06-22", + "city": "Schmidtcester", + "region": " North Coast", + "victoriaFile": "26250-20/11334", + "regionalFile": "N/A", + "parcelIDs": [ + 3682231, + 6484151, + 8254848, + 1582701, + 1796495 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2020-08-14", + "completed": "2018-01-07", + "initiated": "2020-11-24", + "ministryContact": "BEATTY HUGH", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -40688,11 +64384,26 @@ "" ], "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", @@ -40702,10 +64413,10 @@ "siteRegistry": false }, { - "createdAt": "2018-12-27", - "completed": "2018-08-26", - "initiated": "2023-04-01", - "ministryContact": "CREMIN DOUG", + "createdAt": "2015-09-24", + "completed": "2018-07-25", + "initiated": "2021-04-16", + "ministryContact": "MEDHURST WANDA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -40714,33 +64425,38 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2022-01-14", - "completed": "2014-06-13", - "initiated": "2018-05-05", - "ministryContact": "CRUICKSHANK CARISSA", + "createdAt": "2018-07-09", + "completed": "2015-04-11", + "initiated": "2018-04-02", + "ministryContact": "BERNIER ALFONSO", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -40750,8 +64466,8 @@ "notationParticipants": [ { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true + "role": "SUBMITTED BY", + "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", @@ -40761,12 +64477,17 @@ { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false } ], "siteRegistry": true @@ -40774,78 +64495,194 @@ ], "participants": [ { - "name": "IPSUM", - "endDate": "2015-11-30", - "startDate": "2017-08-06", + "name": "AMET, DOLOR SIT", + "endDate": "2018-12-16", + "startDate": "2023-01-25", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2014-09-04", - "startDate": "2018-10-23", + "name": "AMET, DOLOR SIT", + "endDate": "2013-12-04", + "startDate": "2014-01-04", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": false }, { "name": "IPSUM", - "endDate": "2016-03-16", - "startDate": "2018-01-03", + "endDate": "2017-04-17", + "startDate": "2020-03-22", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "name": "IPSUM", + "endDate": "2022-03-05", + "startDate": "2022-08-18", + "notes": "", + "roles": [ + "ORGANIZATION" ], "siteRegistry": true } ], - "associatedSites": [ + "suspectLandUses": [ { - "dateNoted": "2017-01-08", - "notes": "", - "parcelID": "15570", - "siteID": "17935", - "siteRegistry": true + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2016-03-26 (described on Site Profile dated 2016-03-26)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2016-06-24 (described on Site Profile dated 2016-06-24)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + } + ], + "siteDisclosures": [ + { + "siteRegistry": true, + "dateReceived": "2017-05-06", + "dateCompleted": "2020-01-10", + "dateEntered": "2018-10-05", + "dateRegistrar": "2015-09-30", + "dateLocalAuthorityReceived": "2016-04-26", + "summary": "Atque doloremque labore eaque facere corrupti maiores illo aliquid quae.\nVero odio odit ex voluptate asperiores ex velit debitis.\nAut suscipit ea tempore.", + "informationUsed": "Adipisci deleniti minus est atque distinctio.\nOccaecati voluptatibus alias odio autem ea vel.\nDolorem reprehenderit facilis et alias atque quisquam.\nExpedita quas sequi harum mollitia.\nNostrum corporis ducimus.", + "pastOrPresentOrders": "Animi sapiente labore placeat omnis reprehenderit quidem nesciunt dicta repudiandae.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + } + ] + }, + { + "siteRegistry": false, + "dateReceived": "2019-09-29", + "dateCompleted": "2021-03-25", + "dateEntered": "2020-11-09", + "dateRegistrar": "2023-06-24", + "dateLocalAuthorityReceived": "2020-01-17", + "summary": "Consequatur veritatis ex nam et eum quibusdam illum.\nPariatur laborum sint.\nNihil ab harum.", + "informationUsed": "Tenetur aliquam sequi fuga eius quos alias hic consequatur harum.\nCulpa impedit eligendi doloremque labore ullam nam ipsam molestias pariatur.\nEos id inventore maxime neque doloribus temporibus adipisci sit.\nVoluptate vitae voluptatum at cum velit a ducimus.\nArchitecto consequatur dolorum.", + "pastOrPresentOrders": "Voluptate nemo veniam neque et dolore saepe modi in accusamus.\nMinima excepturi non autem.\nMolestias consectetur iure soluta iure consectetur.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + } + ] + } + ], + "activityLog": [ + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "KOVACEK ANNA", + "timestamp": "2019-04-16" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "DAVIS ESTRELLA", + "timestamp": "2014-07-15" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "WINDLER WOODROW", + "timestamp": "2016-09-06" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "RATH DANA", + "timestamp": "2017-11-05" }, { - "dateNoted": "2017-06-17", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "MCCLURE KAELYN", + "timestamp": "2023-02-07" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "CONN VERLA", + "timestamp": "2018-01-27" + } + ], + "associatedSites": [ + { + "dateNoted": "2014-07-05", "notes": "", - "parcelID": "18844", - "siteID": "17237", - "siteRegistry": false + "parcelID": "19931", + "siteID": "19590", + "siteRegistry": true } ] }, { - "uuid": "011a7f6c-aa94-4c11-bf24-c0cefad6b2ee", - "siteID": 15229, - "address": "149 Russel Spurs", - "latitude": 51.9367, - "longitude": -127.9694, - "lastUpdated": "2021-12-07", - "city": "Malikastead", - "region": "Cariboo", - "victoriaFile": "26250-20/10345", + "uuid": "50518880-0aba-461f-868e-54895a044c9a", + "siteID": 20921, + "address": "609 Ledner Hollow", + "latitude": 58.0928, + "longitude": -132.9882, + "lastUpdated": "2021-11-13", + "city": "Linneaview", + "region": " North Coast", + "victoriaFile": "26250-20/10477", "regionalFile": "N/A", "parcelIDs": [ - 2050613, - 3793377, - 5457101, - 3759594, - 7471992 + 6947018, + 6021975, + 6475822, + 2354342, + 4768356 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2014-02-14", - "completed": "2021-01-22", - "initiated": "2016-04-09", - "ministryContact": "HALEY KENDRICK", + "createdAt": "2020-11-14", + "completed": "2021-04-24", + "initiated": "2017-05-09", + "ministryContact": "ZULAUF REMINGTON", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -40853,9 +64690,39 @@ "" ], "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "createdAt": "2021-09-21", + "completed": "2016-09-21", + "initiated": "2018-01-30", + "ministryContact": "STOLTENBERG JERAD", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", "siteRegistry": true }, { @@ -40867,10 +64734,10 @@ "siteRegistry": false }, { - "createdAt": "2019-08-08", - "completed": "2016-02-03", - "initiated": "2014-07-26", - "ministryContact": "KUHIC CLOYD", + "createdAt": "2023-09-29", + "completed": "2021-08-29", + "initiated": "2013-12-16", + "ministryContact": "DIBBERT ANGELITA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -40879,28 +64746,28 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false } ], "siteRegistry": false }, { - "createdAt": "2023-07-01", - "completed": "2014-12-02", - "initiated": "2017-01-25", - "ministryContact": "HESSEL CREOLA", + "createdAt": "2020-11-06", + "completed": "2020-09-19", + "initiated": "2018-06-22", + "ministryContact": "SMITHAM LAYNE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -40911,15 +64778,20 @@ { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true }, @@ -40932,10 +64804,10 @@ "siteRegistry": true }, { - "createdAt": "2015-10-19", - "completed": "2017-07-03", - "initiated": "2018-01-17", - "ministryContact": "SPINKA ROY", + "createdAt": "2016-06-03", + "completed": "2015-01-12", + "initiated": "2017-11-28", + "ministryContact": "GISLASON JERRELL", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -40943,25 +64815,60 @@ "" ], "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false } ], "participants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2015-07-08", - "startDate": "2018-10-05", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2019-01-23", + "startDate": "2023-05-05", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "IPSUM", + "endDate": "2018-08-19", + "startDate": "2017-09-06", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "name": "AMET, DOLOR SIT", + "endDate": "2020-02-26", + "startDate": "2015-01-22", "notes": "", "roles": [ "ORGANIZATION" @@ -40970,8 +64877,18 @@ }, { "name": "IPSUM", - "endDate": "2021-06-30", - "startDate": "2020-06-12", + "endDate": "2016-12-27", + "startDate": "2017-08-07", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2013-10-17", + "startDate": "2016-06-25", "notes": "", "roles": [ "EMPLOYEE" @@ -40979,180 +64896,145 @@ "siteRegistry": false } ], - "associatedSites": [ + "suspectLandUses": [ { - "dateNoted": "2023-08-12", - "notes": "", - "parcelID": "20210", - "siteID": "17237", - "siteRegistry": true + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2019-06-17 (described on Site Profile dated 2019-06-17)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "dateNoted": "2020-08-17", - "notes": "", - "parcelID": "19279", - "siteID": "20443", - "siteRegistry": false + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2014-03-15 (described on Site Profile dated 2014-03-15)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2021-05-03 (described on Site Profile dated 2021-05-03)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2018-12-25 (described on Site Profile dated 2018-12-25)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } - ] - }, - { - "uuid": "430445f4-3d66-469d-8ed3-376dc82cb923", - "siteID": 19038, - "address": "4328 Keven Ports", - "latitude": 58.1227, - "longitude": -125.5549, - "lastUpdated": "2022-12-11", - "city": "Linden", - "region": "Mainland/Southwest", - "victoriaFile": "26250-20/12189", - "regionalFile": "N/A", - "parcelIDs": [ - 9343295, - 271598, - 6366018, - 394682, - 5338921 ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ + "siteDisclosures": [ { - "createdAt": "2020-10-13", - "completed": "2020-03-15", - "initiated": "2022-12-14", - "ministryContact": "CRUICKSHANK GEORGETTE", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ + "siteRegistry": false, + "dateReceived": "2015-11-13", + "dateCompleted": "2014-02-13", + "dateEntered": "2017-10-09", + "dateRegistrar": "2023-09-28", + "dateLocalAuthorityReceived": "2019-10-20", + "summary": "Officiis ad sint vel non soluta pariatur dignissimos.\nDolorem iste accusantium laboriosam aut nam eos quasi eveniet.\nRatione facere error perferendis totam praesentium magnam quo.", + "informationUsed": "Earum deserunt quos.\nDoloremque animi odit officiis laudantium saepe.\nTotam nemo repellendus illo quia dolor laboriosam mollitia nemo minus.", + "pastOrPresentOrders": "Cumque cumque omnis.", + "commercialAndIndustrialPurposes": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - } - ], - "siteRegistry": true - }, - { - "createdAt": "2014-10-17", - "completed": "2019-09-19", - "initiated": "2016-12-06", - "ministryContact": "UPTON SCARLETT", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true } - ], - "siteRegistry": true + ] } ], - "participants": [ + "activityLog": [ + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "HILLS RICKEY", + "timestamp": "2020-05-25" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "FERRY ALTHEA", + "timestamp": "2019-12-30" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "MAGGIO IZAIAH", + "timestamp": "2014-12-27" + }, { - "name": "AMET, DOLOR SIT", - "endDate": "2020-09-13", - "startDate": "2017-12-18", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": true + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "REINGER CORINE", + "timestamp": "2015-02-26" }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2018-05-06", - "startDate": "2014-11-25", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": false + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "STANTON JORGE", + "timestamp": "2019-07-16" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "PROHASKA JAIME", + "timestamp": "2013-11-19" } ], "associatedSites": [ { - "dateNoted": "2019-02-05", + "dateNoted": "2014-02-17", "notes": "", - "parcelID": "15707", - "siteID": "19837", - "siteRegistry": true + "parcelID": "15335", + "siteID": "17419", + "siteRegistry": false }, { - "dateNoted": "2018-08-05", + "dateNoted": "2014-11-07", "notes": "", - "parcelID": "17260", - "siteID": "19897", + "parcelID": "17208", + "siteID": "18160", "siteRegistry": false }, { - "dateNoted": "2014-11-18", + "dateNoted": "2022-03-15", "notes": "", - "parcelID": "16887", - "siteID": "16673", - "siteRegistry": true + "parcelID": "16692", + "siteID": "17477", + "siteRegistry": false } ] }, { - "uuid": "c7184929-87d5-4ad0-9359-c22b34584ef0", - "siteID": 18799, - "address": "749 Willms Expressway", - "latitude": 51.6681, - "longitude": -122.0844, - "lastUpdated": "2018-09-12", - "city": "Diamond Bar", - "region": "Vancouver Island/Coast", - "victoriaFile": "26250-20/12379", + "uuid": "30c70c37-fdaf-4948-8f85-b7500f687236", + "siteID": 20734, + "address": "48979 Abshire Falls", + "latitude": 51.1232, + "longitude": -119.5505, + "lastUpdated": "2023-09-03", + "city": "East Dane", + "region": "Thompson-Okanagan", + "victoriaFile": "26250-20/3354", "regionalFile": "N/A", "parcelIDs": [ - 6276539, - 8069858, - 9646097, - 5865975, - 9368552 + 3751032, + 5764082, + 6415500, + 8656888, + 8046203 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2022-05-09", - "completed": "2019-12-02", - "initiated": "2014-01-31", - "ministryContact": "STIEDEMANN MALVINA", + "createdAt": "2022-11-21", + "completed": "2017-07-02", + "initiated": "2022-12-24", + "ministryContact": "KOVACEK BETTIE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -41162,13 +65044,8 @@ "notationParticipants": [ { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", @@ -41184,10 +65061,10 @@ "siteRegistry": false }, { - "createdAt": "2020-02-15", - "completed": "2016-01-03", - "initiated": "2020-06-16", - "ministryContact": "STEHR RASHAWN", + "createdAt": "2013-12-06", + "completed": "2016-11-25", + "initiated": "2021-06-25", + "ministryContact": "LEFFLER ESTELLE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -41201,23 +65078,18 @@ "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2020-10-20", - "completed": "2021-01-24", - "initiated": "2018-04-07", - "ministryContact": "HILLL REVA", + "createdAt": "2019-02-28", + "completed": "2023-05-31", + "initiated": "2021-04-01", + "ministryContact": "REMPEL MARIANO", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -41228,26 +65100,31 @@ { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2019-01-21", - "completed": "2022-07-17", - "initiated": "2022-06-05", - "ministryContact": "STROMAN ELISE", + "createdAt": "2017-09-02", + "completed": "2018-11-15", + "initiated": "2017-01-05", + "ministryContact": "PARISIAN ADAH", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -41255,126 +65132,227 @@ "" ], "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true } ], "participants": [ { - "name": "IPSUM", - "endDate": "2020-03-09", - "startDate": "2018-04-07", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2016-10-12", + "startDate": "2019-07-06", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], - "siteRegistry": true + "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", - "endDate": "2020-06-22", - "startDate": "2017-03-03", + "endDate": "2019-06-12", + "startDate": "2018-06-26", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2023-01-31", - "startDate": "2015-08-06", + "name": "IPSUM", + "endDate": "2023-04-12", + "startDate": "2023-08-05", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2014-12-26", - "startDate": "2022-06-01", + "name": "AMET, DOLOR SIT", + "endDate": "2016-03-04", + "startDate": "2020-10-16", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": true + "siteRegistry": false } ], - "associatedSites": [ + "suspectLandUses": [ { - "dateNoted": "2021-02-22", - "notes": "", - "parcelID": "20705", - "siteID": "17151", - "siteRegistry": false + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2013-12-29 (described on Site Profile dated 2013-12-29)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "dateNoted": "2023-01-11", - "notes": "", - "parcelID": "19313", - "siteID": "16645", - "siteRegistry": false + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2015-04-21 (described on Site Profile dated 2015-04-21)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + } + ], + "siteDisclosures": [ + { + "siteRegistry": true, + "dateReceived": "2015-06-18", + "dateCompleted": "2015-10-02", + "dateEntered": "2015-07-14", + "dateRegistrar": "2023-07-28", + "dateLocalAuthorityReceived": "2018-10-28", + "summary": "Debitis fugit aliquam quos reiciendis beatae enim optio.\nQuis aperiam exercitationem eveniet ducimus incidunt laborum pariatur veniam deleniti.\nSapiente nobis eius nobis repellendus.", + "informationUsed": "Asperiores facilis dolores.\nRepudiandae earum ipsam ea dolore minus atque fugiat nisi.\nIn vel consequuntur sapiente vel molestiae commodi cum labore ab.\nEarum nihil error culpa neque commodi architecto quam commodi.\nEx quaerat omnis et amet minima iusto nam.", + "pastOrPresentOrders": "Rem porro veniam velit vel molestiae animi.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + } + ] + }, + { + "siteRegistry": false, + "dateReceived": "2022-12-15", + "dateCompleted": "2021-03-08", + "dateEntered": "2019-02-28", + "dateRegistrar": "2017-07-28", + "dateLocalAuthorityReceived": "2016-12-07", + "summary": "Repellendus fuga nesciunt molestiae.\nExcepturi quas accusamus consequatur sapiente.", + "informationUsed": "Eum expedita eligendi veritatis quos aperiam asperiores unde provident.\nNeque culpa illo accusantium blanditiis explicabo aliquid quis.\nQuaerat veniam minima doloremque quis molestias officiis officia.\nPlaceat quia laborum corrupti debitis.", + "pastOrPresentOrders": "Voluptatem asperiores nesciunt harum molestias quasi.\nTempora rem ut aperiam in enim architecto commodi fugiat maxime.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + } + ] + } + ], + "activityLog": [ + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "SWIFT CONSTANCE", + "timestamp": "2020-02-26" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "STROMAN KEITH", + "timestamp": "2016-11-28" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "RUNOLFSDOTTIR JACINTO", + "timestamp": "2014-04-25" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "MANTE OBIE", + "timestamp": "2014-11-11" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "STOLTENBERG JAYDE", + "timestamp": "2013-12-14" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "MURPHY JULIE", + "timestamp": "2022-02-08" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "DOUGLAS ANGELINE", + "timestamp": "2017-09-17" }, { - "dateNoted": "2020-02-01", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "GREENHOLT NICOLAS", + "timestamp": "2023-05-08" + } + ], + "associatedSites": [ + { + "dateNoted": "2018-02-24", "notes": "", - "parcelID": "15296", - "siteID": "19966", + "parcelID": "18009", + "siteID": "19043", "siteRegistry": true } ] }, { - "uuid": "ab0cdab2-33dc-4888-b085-7c3314a2dd77", - "siteID": 17200, - "address": "481 Stark Corner", - "latitude": 51.9462, - "longitude": -128.7985, - "lastUpdated": "2021-07-10", - "city": "Port Antoniamouth", - "region": "Vancouver Island/Coast", - "victoriaFile": "26250-20/1737", + "uuid": "17daffdc-a1ac-44a5-9842-c5318b9e4366", + "siteID": 20314, + "address": "948 Becker Oval", + "latitude": 53.7228, + "longitude": -119.9601, + "lastUpdated": "2022-03-01", + "city": "Wehnerburgh", + "region": "Cariboo", + "victoriaFile": "26250-20/6632", "regionalFile": "N/A", "parcelIDs": [ - 4213521, - 1562245, - 6862994, - 9456698, - 3104011 + 2099852, + 613582, + 6975656, + 7947527, + 6350957 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2017-01-24", - "completed": "2017-04-11", - "initiated": "2017-01-05", - "ministryContact": "HARTMANN ALVIS", + "createdAt": "2023-07-12", + "completed": "2022-08-14", + "initiated": "2013-11-14", + "ministryContact": "GOODWIN-BASHIRIAN JESSE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -41385,36 +65363,71 @@ { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "createdAt": "2022-06-08", + "completed": "2022-12-23", + "initiated": "2016-04-11", + "ministryContact": "BERNIER FAUSTINO", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, { "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2015-06-12", - "completed": "2014-06-26", - "initiated": "2023-07-12", - "ministryContact": "FISHER ALEEN", + "createdAt": "2020-06-18", + "completed": "2020-10-22", + "initiated": "2017-12-29", + "ministryContact": "HACKETT EVIE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -41422,6 +65435,11 @@ "" ], "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", @@ -41429,17 +65447,22 @@ }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false } ], "siteRegistry": true }, { - "createdAt": "2021-01-13", - "completed": "2017-05-23", - "initiated": "2022-10-23", - "ministryContact": "HARVEY NELSON", + "createdAt": "2020-07-01", + "completed": "2020-11-09", + "initiated": "2021-04-24", + "ministryContact": "CASPER MARYAM", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -41450,123 +65473,257 @@ { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "createdAt": "2019-10-15", + "completed": "2018-04-19", + "initiated": "2020-07-10", + "ministryContact": "WUNSCH GENESIS", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false } ], "siteRegistry": false } ], "participants": [ + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2022-11-30", + "startDate": "2021-12-04", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, { "name": "IPSUM", - "endDate": "2015-04-09", - "startDate": "2020-02-09", + "endDate": "2018-09-11", + "startDate": "2015-05-27", "notes": "", "roles": [ "EMPLOYEE" ], + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2020-06-15", + "startDate": "2015-03-11", + "notes": "", + "roles": [ + "ORGANIZATION" + ], "siteRegistry": true }, { - "name": "AMET, DOLOR SIT", - "endDate": "2020-11-08", - "startDate": "2014-12-25", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2021-02-08", + "startDate": "2018-03-13", "notes": "", "roles": [ "ORGANIZATION" ], "siteRegistry": true + }, + { + "name": "IPSUM", + "endDate": "2015-01-27", + "startDate": "2023-05-09", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + } + ], + "suspectLandUses": [ + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2017-08-30 (described on Site Profile dated 2017-08-30)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2018-10-08 (described on Site Profile dated 2018-10-08)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2021-05-12 (described on Site Profile dated 2021-05-12)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2018-09-17 (described on Site Profile dated 2018-09-17)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + } + ], + "siteDisclosures": [ + { + "siteRegistry": false, + "dateReceived": "2014-12-20", + "dateCompleted": "2019-11-29", + "dateEntered": "2017-04-01", + "dateRegistrar": "2018-08-30", + "dateLocalAuthorityReceived": "2022-01-08", + "summary": "Dolorum fuga esse.", + "informationUsed": "Quibusdam numquam nesciunt.\nAd quae laborum porro cumque esse cumque hic dolore incidunt.\nDistinctio ex quasi aut veritatis corrupti quisquam consequuntur.\nImpedit minima enim maxime tempora laborum fugiat provident ducimus excepturi.", + "pastOrPresentOrders": "Dignissimos provident fugit cum quod.\nDeserunt suscipit praesentium eligendi reprehenderit deleniti.\nAspernatur voluptatum at.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + } + ] + } + ], + "activityLog": [ + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "WEHNER ERA", + "timestamp": "2014-01-11" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "HILPERT MOLLIE", + "timestamp": "2022-04-21" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "JERDE LILIAN", + "timestamp": "2013-12-10" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "MONAHAN JERROLD", + "timestamp": "2022-04-10" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "BODE JAQUAN", + "timestamp": "2019-11-12" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "KEEBLER KYLER", + "timestamp": "2022-11-24" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "SAUER JAIDA", + "timestamp": "2020-01-22" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "KIHN RESSIE", + "timestamp": "2022-08-26" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "O'HARA MALCOLM", + "timestamp": "2021-08-05" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "MAYERT AIDEN", + "timestamp": "2014-05-22" } ], "associatedSites": [ { - "dateNoted": "2018-08-24", + "dateNoted": "2018-10-02", "notes": "", - "parcelID": "20982", - "siteID": "17322", + "parcelID": "19946", + "siteID": "20891", "siteRegistry": false }, { - "dateNoted": "2020-01-05", + "dateNoted": "2020-04-04", "notes": "", - "parcelID": "17766", - "siteID": "16703", - "siteRegistry": false + "parcelID": "18256", + "siteID": "16758", + "siteRegistry": true }, { - "dateNoted": "2021-05-17", + "dateNoted": "2022-03-06", "notes": "", - "parcelID": "17112", - "siteID": "19409", + "parcelID": "19338", + "siteID": "16386", "siteRegistry": true } ] }, { - "uuid": "7353d1c6-1a79-4d8a-8eda-d6e27fc2f613", - "siteID": 20788, - "address": "39884 Arvid Square", - "latitude": 58.3453, - "longitude": -123.3734, - "lastUpdated": "2018-04-10", - "city": "Hodkiewiczshire", - "region": "Mainland/Southwest", - "victoriaFile": "26250-20/7904", + "uuid": "4a68027e-00e1-4a4d-80cc-854a191ee84f", + "siteID": 19200, + "address": "7475 Jeromy Landing", + "latitude": 52.4187, + "longitude": -136.4707, + "lastUpdated": "2016-09-19", + "city": "South Clara", + "region": "Thompson-Okanagan", + "victoriaFile": "26250-20/12817", "regionalFile": "N/A", "parcelIDs": [ - 4100275, - 7986906, - 7019428, - 8325608, - 3005743 + 1032907, + 2437755, + 5733850, + 8145808, + 9366214 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2022-05-02", - "completed": "2015-08-14", - "initiated": "2017-03-02", - "ministryContact": "STOLTENBERG GEORGE", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - } - ], - "siteRegistry": false - }, - { - "createdAt": "2015-10-01", - "completed": "2014-06-08", - "initiated": "2018-10-10", - "ministryContact": "JACOBS WALLACE", + "createdAt": "2014-11-26", + "completed": "2015-02-21", + "initiated": "2020-09-14", + "ministryContact": "CARTER DERECK", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -41579,11 +65736,6 @@ "role": "SUBMITTED BY", "siteRegistry": true }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", @@ -41591,33 +65743,13 @@ }, { "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false + "role": "REQUESTED BY", + "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true - } - ], - "siteRegistry": true - }, - { - "createdAt": "2018-06-23", - "completed": "2019-02-27", - "initiated": "2016-09-18", - "ministryContact": "HIRTHE RAUL", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", @@ -41625,13 +65757,13 @@ "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2016-09-08", - "completed": "2013-12-03", - "initiated": "2021-04-24", - "ministryContact": "KUHN ANGELA", + "createdAt": "2014-01-15", + "completed": "2023-01-06", + "initiated": "2022-06-23", + "ministryContact": "ZIEMANN ADAN", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -41639,25 +65771,15 @@ "" ], "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false } ], "siteRegistry": false @@ -41665,91 +65787,172 @@ ], "participants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2019-02-15", - "startDate": "2023-05-10", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2022-11-14", + "startDate": "2021-05-09", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": false }, { - "name": "IPSUM", - "endDate": "2017-09-18", - "startDate": "2020-05-06", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2017-11-10", + "startDate": "2023-06-29", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], - "siteRegistry": false + "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2016-04-19", - "startDate": "2023-03-04", + "name": "AMET, DOLOR SIT", + "endDate": "2015-05-19", + "startDate": "2014-06-30", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2019-01-17", - "startDate": "2019-02-18", + "endDate": "2015-12-07", + "startDate": "2021-10-20", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": false }, { - "name": "IPSUM", - "endDate": "2019-12-10", - "startDate": "2021-04-27", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2018-12-22", + "startDate": "2016-04-23", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false + } + ], + "suspectLandUses": [ + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2013-12-16 (described on Site Profile dated 2013-12-16)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2017-10-25 (described on Site Profile dated 2017-10-25)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2022-09-19 (described on Site Profile dated 2022-09-19)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + } + ], + "siteDisclosures": [ + { + "siteRegistry": false, + "dateReceived": "2022-05-25", + "dateCompleted": "2018-07-27", + "dateEntered": "2023-04-25", + "dateRegistrar": "2022-12-05", + "dateLocalAuthorityReceived": "2020-01-20", + "summary": "Accusamus facere quam.\nEarum voluptatem molestias exercitationem dolorum aliquam alias.\nRecusandae expedita modi a eos consequatur suscipit sequi labore.", + "informationUsed": "Nam hic dolorum.\nMaiores animi rem magni deserunt.\nAccusamus cumque modi eius odit.", + "pastOrPresentOrders": "Id provident vitae vero vero aperiam laudantium.\nSit tempore nemo unde est.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + } + ] + } + ], + "activityLog": [ + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "STANTON URSULA", + "timestamp": "2018-10-18" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "MANTE LELIA", + "timestamp": "2017-03-19" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "KUHN CLARA", + "timestamp": "2020-01-17" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "BREKKE KAMERON", + "timestamp": "2015-09-19" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "REILLY DESMOND", + "timestamp": "2020-11-26" } ], "associatedSites": [ { - "dateNoted": "2014-01-19", + "dateNoted": "2016-06-29", "notes": "", - "parcelID": "15312", - "siteID": "17036", + "parcelID": "20999", + "siteID": "15785", + "siteRegistry": false + }, + { + "dateNoted": "2020-10-26", + "notes": "", + "parcelID": "16276", + "siteID": "16563", "siteRegistry": true } ] }, { - "uuid": "6533d50c-3579-4c4f-acfd-b36597baf2b6", - "siteID": 18373, - "address": "80156 Swaniawski Common", - "latitude": 54.0101, - "longitude": -131.8212, - "lastUpdated": "2021-06-23", - "city": "West Makennafield", + "uuid": "2f0a4dc5-ee7f-42c2-9563-b1d99bbc6ec3", + "siteID": 18066, + "address": "2643 Watsica Rapids", + "latitude": 49.3016, + "longitude": -123.3807, + "lastUpdated": "2014-09-09", + "city": "East Dalton", "region": "Mainland/Southwest", - "victoriaFile": "26250-20/2311", + "victoriaFile": "26250-20/16277", "regionalFile": "N/A", "parcelIDs": [ - 6139964, - 459792, - 1544806, - 7151936, - 7025673 + 2631641, + 370881, + 4243301, + 2520843, + 7041913 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2017-03-05", - "completed": "2020-11-19", - "initiated": "2022-06-01", - "ministryContact": "WUCKERT JARON", + "createdAt": "2020-12-23", + "completed": "2017-06-01", + "initiated": "2017-11-14", + "ministryContact": "ZULAUF MARCOS", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -41758,28 +65961,23 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true } ], "siteRegistry": true }, { - "createdAt": "2016-10-10", - "completed": "2022-08-04", - "initiated": "2017-02-17", - "ministryContact": "BRAUN DAYNA", + "createdAt": "2016-12-21", + "completed": "2019-07-24", + "initiated": "2017-03-08", + "ministryContact": "TRANTOW-LOWE CODY", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -41789,7 +65987,7 @@ "notationParticipants": [ { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false }, { @@ -41800,16 +65998,16 @@ { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": true } ], @@ -41819,18 +66017,18 @@ "participants": [ { "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2018-08-16", - "startDate": "2016-11-16", + "endDate": "2017-10-17", + "startDate": "2019-08-24", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2022-02-18", - "startDate": "2022-11-07", + "name": "AMET, DOLOR SIT", + "endDate": "2015-09-20", + "startDate": "2017-03-07", "notes": "", "roles": [ "EMPLOYEE" @@ -41838,48 +66036,172 @@ "siteRegistry": false } ], + "suspectLandUses": [ + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2018-02-13 (described on Site Profile dated 2018-02-13)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2017-02-05 (described on Site Profile dated 2017-02-05)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2014-01-13 (described on Site Profile dated 2014-01-13)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2017-10-01 (described on Site Profile dated 2017-10-01)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2015-11-28 (described on Site Profile dated 2015-11-28)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + } + ], + "siteDisclosures": [ + { + "siteRegistry": false, + "dateReceived": "2019-03-11", + "dateCompleted": "2022-02-17", + "dateEntered": "2023-02-26", + "dateRegistrar": "2016-06-13", + "dateLocalAuthorityReceived": "2016-05-08", + "summary": "Beatae saepe accusantium ducimus officiis ex optio aut fugit.", + "informationUsed": "Corrupti distinctio consequatur officia laudantium.\nExpedita quibusdam libero tenetur eum perspiciatis.\nPraesentium officiis consectetur a nemo.\nVoluptatibus facere animi optio debitis officia omnis ipsum.\nTenetur fuga ut amet cupiditate incidunt.", + "pastOrPresentOrders": "Quia quaerat minima quibusdam porro distinctio quos dicta.\nOfficia dicta ex expedita perferendis nostrum.\nFacilis inventore tempora eum.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + } + ] + }, + { + "siteRegistry": false, + "dateReceived": "2018-10-01", + "dateCompleted": "2023-08-14", + "dateEntered": "2017-05-26", + "dateRegistrar": "2023-06-18", + "dateLocalAuthorityReceived": "2021-05-29", + "summary": "Dolores cupiditate voluptatem id commodi voluptatem illo mollitia.", + "informationUsed": "Voluptatum esse velit similique possimus dolorum.\nPerferendis quasi suscipit eligendi minus nesciunt sunt aliquid fugiat.\nCorrupti tenetur quo vel nulla.\nCorporis laboriosam asperiores nisi enim error officia esse dolorem.\nOdit voluptatum optio quas rerum minus.", + "pastOrPresentOrders": "Enim qui quisquam cupiditate eos nobis.\nExcepturi dolorem eos dolores suscipit ipsam.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + } + ] + } + ], + "activityLog": [ + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "PFANNERSTILL FREDDY", + "timestamp": "2018-02-23" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "BERGSTROM DARRYL", + "timestamp": "2015-09-08" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "MANTE JAQUAN", + "timestamp": "2017-12-05" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "DUBUQUE DALLIN", + "timestamp": "2014-02-05" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "O'KEEFE KIP", + "timestamp": "2014-01-13" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "DARE WILLOW", + "timestamp": "2018-06-14" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "WEISSNAT BARBARA", + "timestamp": "2021-01-19" + } + ], "associatedSites": [ { - "dateNoted": "2020-06-07", + "dateNoted": "2016-07-31", "notes": "", - "parcelID": "18932", - "siteID": "19572", - "siteRegistry": true + "parcelID": "15834", + "siteID": "18087", + "siteRegistry": false }, { - "dateNoted": "2014-05-09", + "dateNoted": "2023-06-14", "notes": "", - "parcelID": "18071", - "siteID": "17898", - "siteRegistry": false + "parcelID": "19879", + "siteID": "16504", + "siteRegistry": true } ] }, { - "uuid": "0cf0f216-e689-45c0-a01c-dff1a9e9ec9d", - "siteID": 20661, - "address": "27376 Schaefer Bridge", - "latitude": 53.3836, - "longitude": -130.5919, - "lastUpdated": "2016-10-02", - "city": "South Kobestead", - "region": "Vancouver Island/Coast", - "victoriaFile": "26250-20/1761", + "uuid": "f5300801-51e8-43cd-b5a0-f045d3e68b44", + "siteID": 20320, + "address": "548 Jakubowski Crest", + "latitude": 48.0457, + "longitude": -134.7904, + "lastUpdated": "2022-06-12", + "city": "Pine Hills", + "region": " North Coast", + "victoriaFile": "26250-20/7610", "regionalFile": "N/A", "parcelIDs": [ - 7662717, - 4261997, - 9966350, - 8977619, - 8717283 + 2932333, + 7326430, + 4945586, + 9517176, + 1441093 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2015-10-06", - "completed": "2023-05-29", - "initiated": "2023-09-11", - "ministryContact": "BRADTKE SERENA", + "createdAt": "2020-10-06", + "completed": "2014-10-19", + "initiated": "2021-08-26", + "ministryContact": "OLSON ASHLEY", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -41890,31 +66212,31 @@ { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true + "role": "REQUESTED BY", + "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": true } ], "siteRegistry": false }, { - "createdAt": "2023-09-03", - "completed": "2017-06-10", - "initiated": "2017-07-07", - "ministryContact": "AUFDERHAR DONNY", + "createdAt": "2018-02-04", + "completed": "2022-07-18", + "initiated": "2019-04-13", + "ministryContact": "O'KEEFE DEDRICK", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -41930,6 +66252,36 @@ { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "createdAt": "2021-07-05", + "completed": "2013-10-20", + "initiated": "2018-07-15", + "ministryContact": "WILLMS DOMINIC", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": true }, { @@ -41941,15 +66293,20 @@ "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false } ], "siteRegistry": false }, { - "createdAt": "2023-07-29", - "completed": "2021-03-25", - "initiated": "2017-12-03", - "ministryContact": "YOST FRIEDA", + "createdAt": "2015-01-06", + "completed": "2021-11-25", + "initiated": "2018-11-13", + "ministryContact": "PRICE ORLAND", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -41957,15 +66314,35 @@ "" ], "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true - }, + } + ], + "siteRegistry": false + }, + { + "createdAt": "2014-10-20", + "completed": "2022-10-01", + "initiated": "2017-03-18", + "ministryContact": "COLE-JASKOLSKI SHANY", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", @@ -41973,103 +66350,219 @@ "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true } ], "participants": [ { "name": "SHELL CANADA PRODUCTS", - "endDate": "2021-10-14", - "startDate": "2019-10-29", + "endDate": "2021-06-21", + "startDate": "2014-02-22", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": false }, { "name": "IPSUM", - "endDate": "2020-04-18", - "startDate": "2014-02-13", + "endDate": "2023-04-14", + "startDate": "2016-11-17", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], - "siteRegistry": false + "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", - "endDate": "2023-01-13", - "startDate": "2014-07-31", + "endDate": "2018-01-13", + "startDate": "2020-10-18", "notes": "", "roles": [ "EMPLOYEE" ], "siteRegistry": true + } + ], + "suspectLandUses": [ + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2019-10-18 (described on Site Profile dated 2019-10-18)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2020-09-09", - "startDate": "2015-07-16", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": true + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2023-06-07 (described on Site Profile dated 2023-06-07)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "name": "IPSUM", - "endDate": "2018-02-20", - "startDate": "2015-01-13", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": false + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2023-07-27 (described on Site Profile dated 2023-07-27)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2017-12-27 (described on Site Profile dated 2017-12-27)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + } + ], + "siteDisclosures": [ + { + "siteRegistry": true, + "dateReceived": "2016-12-17", + "dateCompleted": "2017-06-11", + "dateEntered": "2015-03-11", + "dateRegistrar": "2018-12-09", + "dateLocalAuthorityReceived": "2019-11-29", + "summary": "Perspiciatis provident veritatis enim.\nMagnam aliquam inventore.\nConsequatur similique officiis earum sint deleniti molestiae.", + "informationUsed": "Laboriosam deleniti eaque.\nQuam quam reprehenderit eaque mollitia.\nPlaceat quod sequi sint quia nulla.", + "pastOrPresentOrders": "Optio ipsum minima atque.\nQuam cumque voluptas quibusdam tempora illo beatae nobis fugit perspiciatis.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + } + ] + }, + { + "siteRegistry": true, + "dateReceived": "2016-01-27", + "dateCompleted": "2013-12-18", + "dateEntered": "2018-10-25", + "dateRegistrar": "2014-08-16", + "dateLocalAuthorityReceived": "2018-11-03", + "summary": "Exercitationem reiciendis fuga blanditiis tenetur fugiat eos corporis beatae.", + "informationUsed": "Pariatur soluta quasi earum error.\nNemo eum perspiciatis ea amet porro dicta nemo quisquam.\nDelectus ab consequatur voluptatem provident ducimus sed quidem accusantium sunt.", + "pastOrPresentOrders": "Beatae sunt numquam expedita placeat modi harum adipisci consequatur.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + } + ] + } + ], + "activityLog": [ + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "NADER BRAD", + "timestamp": "2021-02-26" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "ORN ANTWON", + "timestamp": "2015-07-06" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "WISOZK RACHAEL", + "timestamp": "2019-12-02" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "BINS DEJUAN", + "timestamp": "2015-08-22" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "GLEICHNER MAGGIE", + "timestamp": "2015-10-13" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "KUTCH BERNARD", + "timestamp": "2019-01-08" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "FRANEY-SATTERFIELD ROCIO", + "timestamp": "2023-02-01" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "LIND JACQUES", + "timestamp": "2019-03-26" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "SCHUPPE STEVE", + "timestamp": "2022-10-26" } ], "associatedSites": [ { - "dateNoted": "2017-10-14", + "dateNoted": "2014-12-26", "notes": "", - "parcelID": "20932", - "siteID": "18269", + "parcelID": "16084", + "siteID": "18849", "siteRegistry": true }, { - "dateNoted": "2021-07-16", + "dateNoted": "2018-04-03", "notes": "", - "parcelID": "17705", - "siteID": "20906", + "parcelID": "19207", + "siteID": "17218", "siteRegistry": true } ] }, { - "uuid": "fab2f6c9-7301-4496-8e6e-cfbe3621b8dc", - "siteID": 20947, - "address": "30653 Russel Forest", - "latitude": 50.6302, - "longitude": -135.5513, - "lastUpdated": "2022-08-27", - "city": "Josestad", + "uuid": "b489746e-9581-438c-b5a7-70e4d12aba51", + "siteID": 16803, + "address": "70374 Rempel Ville", + "latitude": 51.0305, + "longitude": -138.058, + "lastUpdated": "2021-07-13", + "city": "Menifee", "region": "Cariboo", - "victoriaFile": "26250-20/11915", + "victoriaFile": "26250-20/1275", "regionalFile": "N/A", "parcelIDs": [ - 5271709, - 8488872, - 9172178, - 665633, - 2544964 + 2955139, + 6557910, + 6164374, + 3054652, + 6144700 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2017-06-30", - "completed": "2019-06-15", - "initiated": "2017-05-28", - "ministryContact": "UPTON-BAYER CANDELARIO", + "createdAt": "2019-04-10", + "completed": "2023-03-11", + "initiated": "2019-12-02", + "ministryContact": "HARTMANN-FRANEY IVAH", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -42079,6 +66572,16 @@ "notationParticipants": [ { "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false }, @@ -42086,15 +66589,20 @@ "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2019-02-05", - "completed": "2019-10-21", - "initiated": "2016-08-13", - "ministryContact": "NIENOW ALBINA", + "createdAt": "2022-10-23", + "completed": "2015-11-29", + "initiated": "2016-03-07", + "ministryContact": "HERMISTON GEOFFREY", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -42105,18 +66613,13 @@ { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", @@ -42126,10 +66629,10 @@ "siteRegistry": false }, { - "createdAt": "2023-02-08", - "completed": "2023-05-14", - "initiated": "2022-04-16", - "ministryContact": "JAKUBOWSKI SADIE", + "createdAt": "2015-09-26", + "completed": "2019-11-11", + "initiated": "2021-01-30", + "ministryContact": "OLSON-PARKER ADRIENNE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -42137,39 +66640,34 @@ "" ], "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false } ], "siteRegistry": false }, { - "createdAt": "2014-07-04", - "completed": "2015-02-05", - "initiated": "2021-05-03", - "ministryContact": "HINTZ KATHRYNE", + "createdAt": "2020-11-11", + "completed": "2018-11-12", + "initiated": "2019-04-27", + "ministryContact": "BOGAN HOLLIS", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -42178,9 +66676,9 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", @@ -42188,23 +66686,23 @@ "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": true } ], "siteRegistry": false }, { - "createdAt": "2018-03-09", - "completed": "2019-10-01", - "initiated": "2020-04-11", - "ministryContact": "VON AALIYAH", + "createdAt": "2018-04-03", + "completed": "2022-12-27", + "initiated": "2020-04-14", + "ministryContact": "HAYES JORDON", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -42213,14 +66711,19 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true } ], "siteRegistry": true @@ -42229,97 +66732,163 @@ "participants": [ { "name": "IPSUM", - "endDate": "2018-01-10", - "startDate": "2019-11-17", + "endDate": "2021-06-20", + "startDate": "2023-06-07", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": true }, { - "name": "IPSUM", - "endDate": "2022-06-24", - "startDate": "2016-10-26", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2018-04-26", + "startDate": "2020-05-21", "notes": "", "roles": [ "EMPLOYEE" ], "siteRegistry": false - }, + } + ], + "suspectLandUses": [ { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2016-03-06", - "startDate": "2020-12-05", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": true + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2021-12-07 (described on Site Profile dated 2021-12-07)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "name": "AMET, DOLOR SIT", - "endDate": "2019-12-26", - "startDate": "2014-06-06", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": false + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2021-02-09 (described on Site Profile dated 2021-02-09)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + } + ], + "siteDisclosures": [ + { + "siteRegistry": true, + "dateReceived": "2016-08-15", + "dateCompleted": "2016-10-03", + "dateEntered": "2015-10-29", + "dateRegistrar": "2014-05-03", + "dateLocalAuthorityReceived": "2022-06-25", + "summary": "Quidem deserunt dolore tempora rerum enim vel.\nConsequuntur neque minima voluptate perspiciatis soluta in doloribus.", + "informationUsed": "Architecto velit facere.\nQuae facere impedit magni.\nEa hic voluptatibus repellat nemo dicta mollitia.", + "pastOrPresentOrders": "Atque at impedit inventore.\nVel laboriosam assumenda commodi tenetur facilis voluptatum ipsa.\nUllam repellendus voluptatem.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + } + ] }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2022-05-14", - "startDate": "2020-12-22", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": true + "siteRegistry": false, + "dateReceived": "2023-08-02", + "dateCompleted": "2021-06-11", + "dateEntered": "2022-07-02", + "dateRegistrar": "2014-03-17", + "dateLocalAuthorityReceived": "2017-06-26", + "summary": "Inventore qui blanditiis adipisci repellendus quas saepe.\nSimilique adipisci assumenda eos.\nIure iure recusandae suscipit dolore maxime repellat quisquam veritatis non.", + "informationUsed": "Cumque minus ullam voluptatum esse.\nIste quod fugit autem.\nMagnam commodi omnis magnam nostrum dolores iste.\nEa accusantium iste facilis aliquam eveniet excepturi quibusdam.\nCulpa accusantium atque doloribus.", + "pastOrPresentOrders": "Impedit magnam quasi fugit.\nTempore et quo.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + } + ] } ], - "associatedSites": [ + "activityLog": [ { - "dateNoted": "2013-11-12", - "notes": "", - "parcelID": "20530", - "siteID": "16916", - "siteRegistry": true + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "DAUGHERTY PERRY", + "timestamp": "2014-10-07" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "STROMAN ANDRE", + "timestamp": "2019-07-11" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "DAVIS ORVAL", + "timestamp": "2014-09-13" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "CARTWRIGHT CANDICE", + "timestamp": "2013-11-25" }, { - "dateNoted": "2014-10-03", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "WARD ERYN", + "timestamp": "2020-12-10" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "RATKE ORAN", + "timestamp": "2020-04-04" + } + ], + "associatedSites": [ + { + "dateNoted": "2020-03-24", "notes": "", - "parcelID": "17439", - "siteID": "15784", + "parcelID": "15577", + "siteID": "16715", "siteRegistry": true } ] }, { - "uuid": "2d043386-77c9-4d5b-8cf8-2244ad6a0042", - "siteID": 17011, - "address": "70545 D'Amore Road", - "latitude": 48.4059, - "longitude": -126.7245, - "lastUpdated": "2021-11-24", - "city": "New Corrine", - "region": "Thompson-Okanagan", - "victoriaFile": "26250-20/1270", + "uuid": "ad02da2e-61ce-4008-b84a-d0b06472e759", + "siteID": 18733, + "address": "128 Lueilwitz Hill", + "latitude": 55.6907, + "longitude": -134.5072, + "lastUpdated": "2015-06-06", + "city": "San Mateo", + "region": "Cariboo", + "victoriaFile": "26250-20/9148", "regionalFile": "N/A", "parcelIDs": [ - 1409774, - 5185391, - 8462506, - 2751642, - 2982654 + 9346963, + 6321891, + 1488921, + 2046448, + 3615122 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2018-03-07", - "completed": "2014-09-11", - "initiated": "2021-05-22", - "ministryContact": "PARKER EMELIE", + "createdAt": "2014-08-07", + "completed": "2019-02-28", + "initiated": "2021-10-04", + "ministryContact": "CASSIN-HICKLE HENRIETTE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -42329,27 +66898,32 @@ "notationParticipants": [ { "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false + "role": "REQUESTED BY", + "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false } ], "siteRegistry": false }, { - "createdAt": "2014-07-13", - "completed": "2023-07-05", - "initiated": "2015-07-30", - "ministryContact": "ROHAN D'ANGELO", + "createdAt": "2019-09-29", + "completed": "2022-06-24", + "initiated": "2019-09-03", + "ministryContact": "ROHAN ELSE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -42360,7 +66934,7 @@ { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", @@ -42368,33 +66942,13 @@ "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - } - ], - "siteRegistry": true - }, - { - "createdAt": "2021-06-22", - "completed": "2020-03-27", - "initiated": "2019-08-09", - "ministryContact": "BOYER ANABEL", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false }, { @@ -42404,120 +66958,215 @@ } ], "siteRegistry": false + } + ], + "participants": [ + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2023-06-09", + "startDate": "2016-05-27", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false }, { - "createdAt": "2021-05-05", - "completed": "2022-03-09", - "initiated": "2015-10-27", - "ministryContact": "SMITH MABELLE", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" + "name": "AMET, DOLOR SIT", + "endDate": "2020-03-13", + "startDate": "2014-10-27", + "notes": "", + "roles": [ + "ORGANIZATION" ], - "notationParticipants": [ + "siteRegistry": false + } + ], + "suspectLandUses": [ + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2021-12-30 (described on Site Profile dated 2021-12-30)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2022-10-30 (described on Site Profile dated 2022-10-30)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2022-08-13 (described on Site Profile dated 2022-08-13)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2021-12-23 (described on Site Profile dated 2021-12-23)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2015-04-10 (described on Site Profile dated 2015-04-10)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + } + ], + "siteDisclosures": [ + { + "siteRegistry": true, + "dateReceived": "2014-12-22", + "dateCompleted": "2022-04-16", + "dateEntered": "2016-07-21", + "dateRegistrar": "2019-05-21", + "dateLocalAuthorityReceived": "2017-12-27", + "summary": "Asperiores sint occaecati quia.\nOptio velit repellendus iste officiis soluta tempora porro nisi.\nProvident qui consequuntur corrupti fugiat cum.", + "informationUsed": "Quae odio soluta temporibus placeat et quia laboriosam.\nEligendi accusantium odio maxime.\nQuae repellendus temporibus.\nEaque doloremque tempore commodi tempore odit.", + "pastOrPresentOrders": "Itaque sed corrupti.\nAccusamus praesentium at atque odio.\nDignissimos voluptatem dignissimos repellat perferendis temporibus quam rerum ipsam sunt.", + "commercialAndIndustrialPurposes": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false } - ], - "siteRegistry": false + ] }, { - "createdAt": "2020-02-22", - "completed": "2020-06-23", - "initiated": "2022-07-17", - "ministryContact": "SCHAMBERGER JEROME", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ + "siteRegistry": true, + "dateReceived": "2015-10-13", + "dateCompleted": "2020-07-30", + "dateEntered": "2021-06-04", + "dateRegistrar": "2021-07-28", + "dateLocalAuthorityReceived": "2019-08-18", + "summary": "Optio nulla ipsum.\nMolestias amet soluta maiores reprehenderit ipsam eius asperiores quia animi.\nNeque vero laborum voluptatum.", + "informationUsed": "Velit ullam ipsa nisi.\nRerum quo rerum ab.\nMinima minima facere.\nAliquam earum aperiam accusamus exercitationem et accusantium.", + "pastOrPresentOrders": "Quibusdam alias corporis.", + "commercialAndIndustrialPurposes": [ { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true } - ], - "siteRegistry": false + ] } ], - "participants": [ + "activityLog": [ { - "name": "AMET, DOLOR SIT", - "endDate": "2015-12-25", - "startDate": "2016-03-26", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "BARTON JADA", + "timestamp": "2022-08-31" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "MAYERT SOFIA", + "timestamp": "2014-01-13" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "MACGYVER LEDA", + "timestamp": "2020-04-20" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "KSHLERIN EARLENE", + "timestamp": "2019-07-28" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "LEHNER ASHTYN", + "timestamp": "2018-11-15" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "WALSH BROOKE", + "timestamp": "2021-11-17" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "SCHINNER CORRINE", + "timestamp": "2017-06-14" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "JOHNSON CALLIE", + "timestamp": "2019-12-07" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "STANTON LYDA", + "timestamp": "2023-09-05" + } + ], + "associatedSites": [ + { + "dateNoted": "2022-08-02", "notes": "", - "roles": [ - "ORGANIZATION" - ], + "parcelID": "20004", + "siteID": "19506", "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2022-05-20", - "startDate": "2022-09-15", + "dateNoted": "2021-07-01", "notes": "", - "roles": [ - "EMPLOYEE" - ], + "parcelID": "16754", + "siteID": "16504", "siteRegistry": true - } - ], - "associatedSites": [ + }, { - "dateNoted": "2014-02-10", + "dateNoted": "2015-07-04", "notes": "", - "parcelID": "17593", - "siteID": "19039", + "parcelID": "17534", + "siteID": "18790", "siteRegistry": false } ] }, { - "uuid": "a0815481-0cec-432c-aaa1-d6c8ccc2b44f", - "siteID": 16229, - "address": "61360 Lynch Lock", - "latitude": 58.6711, - "longitude": -128.2438, - "lastUpdated": "2017-09-25", - "city": "East Peter", - "region": "Kootenay", - "victoriaFile": "26250-20/17387", + "uuid": "909565dc-938b-4e49-88d0-d64074a40747", + "siteID": 15251, + "address": "697 Muhammad Forges", + "latitude": 51.9137, + "longitude": -135.6124, + "lastUpdated": "2022-03-21", + "city": "Feeneystead", + "region": "Vancouver Island/Coast", + "victoriaFile": "26250-20/11978", "regionalFile": "N/A", "parcelIDs": [ - 1356795, - 9269074, - 7472239, - 3809895, - 3604551 + 4766835, + 3052584, + 8660407, + 6491423, + 2001244 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2019-05-28", - "completed": "2020-10-10", - "initiated": "2019-09-14", - "ministryContact": "RUNTE IMMANUEL", + "createdAt": "2015-06-26", + "completed": "2016-01-02", + "initiated": "2021-06-10", + "ministryContact": "WITTING TALIA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -42527,22 +67176,27 @@ "notationParticipants": [ { "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2014-02-17", - "completed": "2014-12-30", - "initiated": "2022-10-23", - "ministryContact": "BOYLE-WIEGAND JAMARCUS", + "createdAt": "2021-08-17", + "completed": "2020-09-13", + "initiated": "2014-05-04", + "ministryContact": "GREEN BRADLEY", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -42556,76 +67210,219 @@ "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true } ], "participants": [ { - "name": "IPSUM", - "endDate": "2021-03-21", - "startDate": "2021-08-08", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2019-02-07", + "startDate": "2023-03-18", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": false }, { - "name": "IPSUM", - "endDate": "2021-09-20", - "startDate": "2022-10-26", + "name": "AMET, DOLOR SIT", + "endDate": "2019-11-12", + "startDate": "2015-09-13", "notes": "", "roles": [ "EMPLOYEE" ], "siteRegistry": false + }, + { + "name": "AMET, DOLOR SIT", + "endDate": "2019-06-20", + "startDate": "2018-05-09", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + } + ], + "suspectLandUses": [ + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2019-11-16 (described on Site Profile dated 2019-11-16)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2017-07-17 (described on Site Profile dated 2017-07-17)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2018-11-08 (described on Site Profile dated 2018-11-08)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2019-11-30 (described on Site Profile dated 2019-11-30)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2014-10-01 (described on Site Profile dated 2014-10-01)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + } + ], + "siteDisclosures": [ + { + "siteRegistry": true, + "dateReceived": "2020-04-28", + "dateCompleted": "2021-10-03", + "dateEntered": "2015-11-29", + "dateRegistrar": "2019-10-06", + "dateLocalAuthorityReceived": "2022-09-11", + "summary": "Quod occaecati enim velit non odit magnam vitae animi cumque.\nEa deserunt optio at ipsam nesciunt pariatur quisquam.", + "informationUsed": "Eaque adipisci dicta quam porro natus ullam aut.\nVeritatis sapiente in nostrum ut possimus.\nAccusantium eaque iste hic laudantium sapiente hic facere.\nIure voluptatibus nesciunt velit non ea iste quidem sit quis.\nArchitecto soluta laborum dicta aliquid.", + "pastOrPresentOrders": "Ex repellendus aut.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + } + ] + }, + { + "siteRegistry": true, + "dateReceived": "2016-08-10", + "dateCompleted": "2019-03-02", + "dateEntered": "2014-08-23", + "dateRegistrar": "2022-04-23", + "dateLocalAuthorityReceived": "2020-02-05", + "summary": "Quae asperiores eligendi necessitatibus.\nOdio earum aliquam neque optio reiciendis.", + "informationUsed": "Autem expedita porro aperiam vel nulla.\nTempore atque natus rem dicta quaerat.\nIpsum recusandae facere officia eum sit libero numquam.\nCulpa neque id nisi consectetur error eaque vitae soluta.", + "pastOrPresentOrders": "Distinctio praesentium voluptatibus exercitationem nostrum odio.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + } + ] + } + ], + "activityLog": [ + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "JAKUBOWSKI ALFREDA", + "timestamp": "2020-07-28" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "TREMBLAY BETH", + "timestamp": "2014-11-12" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "WINTHEISER MARJORIE", + "timestamp": "2021-09-22" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "CORKERY MATHIAS", + "timestamp": "2017-06-27" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "LEBSACK ROWLAND", + "timestamp": "2017-08-23" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "QUITZON LULU", + "timestamp": "2016-07-17" } ], "associatedSites": [ { - "dateNoted": "2017-04-26", + "dateNoted": "2018-02-18", "notes": "", - "parcelID": "16413", - "siteID": "17275", - "siteRegistry": false + "parcelID": "20032", + "siteID": "19103", + "siteRegistry": true } ] }, { - "uuid": "a4ceff76-90a9-4431-9beb-caed16cb4eec", - "siteID": 18135, - "address": "53589 Hand Haven", - "latitude": 51.0869, - "longitude": -121.9083, - "lastUpdated": "2016-07-31", - "city": "Pacochaworth", - "region": "Kootenay", - "victoriaFile": "26250-20/10200", + "uuid": "78dd8522-cfa9-4472-a0b9-2cc212763b02", + "siteID": 18201, + "address": "906 Adolphus Common", + "latitude": 52.4233, + "longitude": -133.2931, + "lastUpdated": "2021-03-26", + "city": "Schmelerchester", + "region": "Thompson-Okanagan", + "victoriaFile": "26250-20/19394", "regionalFile": "N/A", "parcelIDs": [ - 9624827, - 5372373, - 8364990, - 1766426, - 5590194 + 370855, + 1688814, + 6474102, + 9474135, + 8776889 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2018-08-30", - "completed": "2014-02-04", - "initiated": "2022-12-30", - "ministryContact": "HESSEL ROSSIE", + "createdAt": "2015-06-03", + "completed": "2020-06-14", + "initiated": "2021-08-25", + "ministryContact": "OBERBRUNNER MARLEE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -42634,15 +67431,55 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "createdAt": "2015-05-13", + "completed": "2019-11-30", + "initiated": "2021-03-01", + "ministryContact": "JOHNS KAYDEN", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", @@ -42657,10 +67494,10 @@ "siteRegistry": true }, { - "createdAt": "2014-06-08", - "completed": "2016-04-27", - "initiated": "2015-04-25", - "ministryContact": "RUSSEL ERA", + "createdAt": "2015-06-03", + "completed": "2019-11-06", + "initiated": "2019-03-31", + "ministryContact": "WINDLER OTHA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -42669,13 +67506,13 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true } ], @@ -42684,78 +67521,179 @@ ], "participants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2020-07-10", - "startDate": "2018-09-19", + "name": "IPSUM", + "endDate": "2014-07-09", + "startDate": "2019-06-29", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2021-01-04", - "startDate": "2016-08-27", + "endDate": "2020-04-22", + "startDate": "2021-04-12", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2016-05-05", + "startDate": "2023-04-05", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2021-09-18", - "startDate": "2016-01-25", + "endDate": "2018-04-07", + "startDate": "2021-07-07", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": true + "siteRegistry": false + } + ], + "suspectLandUses": [ + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2015-09-19 (described on Site Profile dated 2015-09-19)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2020-05-29 (described on Site Profile dated 2020-05-29)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2018-03-28 (described on Site Profile dated 2018-03-28)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + } + ], + "siteDisclosures": [ + { + "siteRegistry": false, + "dateReceived": "2013-10-13", + "dateCompleted": "2021-12-23", + "dateEntered": "2020-08-21", + "dateRegistrar": "2019-09-09", + "dateLocalAuthorityReceived": "2021-05-11", + "summary": "Impedit magnam doloribus possimus aspernatur odio tempora molestiae illum.\nOdio soluta voluptatem aliquid illum repellat eligendi aut earum.", + "informationUsed": "Inventore voluptas illo adipisci sapiente optio cum at molestiae provident.\nVeniam incidunt assumenda.\nNisi ad facilis pariatur.", + "pastOrPresentOrders": "Dolorum fugit dolor dolore officiis.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + } + ] + } + ], + "activityLog": [ + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "SAWAYN ADRIEL", + "timestamp": "2019-06-10" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "CONNELLY MELYNA", + "timestamp": "2020-01-21" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "KOVACEK ADELINE", + "timestamp": "2021-06-25" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "MANTE ALEXANDER", + "timestamp": "2021-08-27" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "STROSIN KIAN", + "timestamp": "2014-08-13" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "WARD TRENTON", + "timestamp": "2018-12-26" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "KOEPP SYDNIE", + "timestamp": "2020-04-20" } ], "associatedSites": [ { - "dateNoted": "2014-02-21", + "dateNoted": "2018-03-08", "notes": "", - "parcelID": "15399", - "siteID": "19741", + "parcelID": "20043", + "siteID": "17078", "siteRegistry": false }, { - "dateNoted": "2023-03-23", + "dateNoted": "2021-05-12", "notes": "", - "parcelID": "18000", - "siteID": "20869", + "parcelID": "17617", + "siteID": "20521", "siteRegistry": false } ] }, { - "uuid": "5823804c-c70d-42bc-92ab-e567031da8fa", - "siteID": 20717, - "address": "813 Demario Points", - "latitude": 49.6601, - "longitude": -119.863, - "lastUpdated": "2018-09-17", - "city": "Rockford", - "region": "Mainland/Southwest", - "victoriaFile": "26250-20/19865", + "uuid": "9fe4d185-1b96-4325-903e-b7cfcd7ced3d", + "siteID": 17568, + "address": "279 Deron Spurs", + "latitude": 55.9004, + "longitude": -128.2951, + "lastUpdated": "2014-08-24", + "city": "Virginia Beach", + "region": "Kootenay", + "victoriaFile": "26250-20/7482", "regionalFile": "N/A", "parcelIDs": [ - 8968487, - 8325840, - 3063921, - 6145142, - 3668376 + 127563, + 8621019, + 1294960, + 3032950, + 8386156 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2015-09-28", - "completed": "2022-12-09", - "initiated": "2015-05-05", - "ministryContact": "MURRAY-DECKOW CONSTANCE", + "createdAt": "2020-12-19", + "completed": "2017-09-19", + "initiated": "2017-06-22", + "ministryContact": "BEAHAN DESMOND", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -42765,27 +67703,37 @@ "notationParticipants": [ { "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false + "role": "SUBMITTED BY", + "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true } ], "siteRegistry": true }, { - "createdAt": "2015-11-18", - "completed": "2019-03-29", - "initiated": "2016-04-13", - "ministryContact": "HAMILL MAXIMO", + "createdAt": "2014-04-15", + "completed": "2023-05-19", + "initiated": "2017-09-17", + "ministryContact": "TOY JOEY", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -42795,32 +67743,27 @@ "notationParticipants": [ { "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true } ], "siteRegistry": true }, { - "createdAt": "2014-08-11", - "completed": "2017-05-28", - "initiated": "2022-08-27", - "ministryContact": "ROHAN GEOFFREY", + "createdAt": "2014-10-19", + "completed": "2023-07-28", + "initiated": "2021-08-10", + "ministryContact": "PAGAC DEDRIC", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -42830,99 +67773,197 @@ "notationParticipants": [ { "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false } ], "participants": [ { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2020-02-11", - "startDate": "2016-12-14", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2021-08-29", + "startDate": "2021-06-23", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true }, { - "name": "AMET, DOLOR SIT", - "endDate": "2014-02-16", - "startDate": "2019-06-12", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2020-01-30", + "startDate": "2016-02-01", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2017-06-22", + "startDate": "2015-02-23", "notes": "", "roles": [ "ORGANIZATION" ], "siteRegistry": false - } - ], - "associatedSites": [ + }, { - "dateNoted": "2021-06-27", + "name": "IPSUM", + "endDate": "2014-10-08", + "startDate": "2018-02-13", "notes": "", - "parcelID": "18728", - "siteID": "16133", + "roles": [ + "EMPLOYEE" + ], "siteRegistry": false }, { - "dateNoted": "2023-09-08", + "name": "IPSUM", + "endDate": "2022-11-29", + "startDate": "2021-10-14", "notes": "", - "parcelID": "18782", - "siteID": "19075", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + } + ], + "suspectLandUses": [ + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2018-01-27 (described on Site Profile dated 2018-01-27)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2023-09-21 (described on Site Profile dated 2023-09-21)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + } + ], + "siteDisclosures": [ + { + "siteRegistry": true, + "dateReceived": "2020-12-31", + "dateCompleted": "2020-08-01", + "dateEntered": "2020-02-11", + "dateRegistrar": "2019-06-12", + "dateLocalAuthorityReceived": "2018-04-12", + "summary": "Repellat sed cumque dolores at.\nEius odit vel reiciendis sequi adipisci error asperiores ut.\nIllo facere quia deleniti dolorum laudantium eum.", + "informationUsed": "Provident dolor expedita et repudiandae optio.\nSit nulla consequuntur aperiam perferendis.\nNam aliquam deleniti aliquid cum accusamus beatae.\nExplicabo quasi tempore sit inventore tenetur inventore assumenda.\nCum vel minima repellat.", + "pastOrPresentOrders": "Consequuntur aspernatur laboriosam incidunt nihil.\nTenetur placeat totam ab.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + } + ] + } + ], + "activityLog": [ + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "ALTENWERTH AILEEN", + "timestamp": "2017-09-29" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "BRADTKE NATHANIEL", + "timestamp": "2017-01-13" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "KUHN ANDREW", + "timestamp": "2021-11-15" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "PAGAC WILBERT", + "timestamp": "2022-12-06" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "SCHADEN CORNELL", + "timestamp": "2022-03-06" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "ZULAUF ROSELYN", + "timestamp": "2019-06-04" + } + ], + "associatedSites": [ + { + "dateNoted": "2018-10-21", + "notes": "", + "parcelID": "17140", + "siteID": "16509", "siteRegistry": false }, { - "dateNoted": "2017-05-08", + "dateNoted": "2020-02-02", "notes": "", - "parcelID": "15211", - "siteID": "19778", + "parcelID": "15273", + "siteID": "17249", "siteRegistry": false } ] }, { - "uuid": "edfcefc7-aeb6-4f0c-b16e-086c0c16ce38", - "siteID": 20930, - "address": "1751 Grady Mall", - "latitude": 54.3616, - "longitude": -121.1189, - "lastUpdated": "2019-08-19", - "city": "East Budcester", - "region": "Mainland/Southwest", - "victoriaFile": "26250-20/12168", + "uuid": "54410957-58d9-441d-b6d7-752d55e56d53", + "siteID": 16552, + "address": "494 Marks Spurs", + "latitude": 55.4236, + "longitude": -138.4225, + "lastUpdated": "2020-08-05", + "city": "New Aliside", + "region": "Vancouver Island/Coast", + "victoriaFile": "26250-20/9842", "regionalFile": "N/A", "parcelIDs": [ - 6512842, - 3047915, - 6914575, - 829233, - 7733966 + 3523117, + 7705649, + 416977, + 3036566, + 9861219 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2018-12-20", - "completed": "2016-05-19", - "initiated": "2016-08-29", - "ministryContact": "KOZEY CRISTAL", + "createdAt": "2014-01-14", + "completed": "2016-02-11", + "initiated": "2019-10-31", + "ministryContact": "HAMMES STANFORD", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -42933,21 +67974,36 @@ { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true } ], "siteRegistry": false }, { - "createdAt": "2022-09-25", - "completed": "2019-07-16", - "initiated": "2017-11-23", - "ministryContact": "JACOBI RODOLFO", + "createdAt": "2019-08-25", + "completed": "2021-11-10", + "initiated": "2020-02-17", + "ministryContact": "WAELCHI KARINE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -42957,85 +68013,202 @@ "notationParticipants": [ { "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true + "role": "REQUESTED BY", + "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false } ], "participants": [ { - "name": "IPSUM", - "endDate": "2016-01-27", - "startDate": "2021-01-01", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2021-10-30", + "startDate": "2021-02-20", "notes": "", "roles": [ "EMPLOYEE" ], + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2018-11-08", + "startDate": "2015-07-03", + "notes": "", + "roles": [ + "ORGANIZATION" + ], "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2017-11-20", - "startDate": "2021-07-29", + "endDate": "2019-09-28", + "startDate": "2015-10-11", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": false } ], + "suspectLandUses": [ + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2017-08-28 (described on Site Profile dated 2017-08-28)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2015-05-17 (described on Site Profile dated 2015-05-17)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2014-06-07 (described on Site Profile dated 2014-06-07)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + } + ], + "siteDisclosures": [ + { + "siteRegistry": true, + "dateReceived": "2023-03-13", + "dateCompleted": "2020-05-27", + "dateEntered": "2018-04-22", + "dateRegistrar": "2016-10-06", + "dateLocalAuthorityReceived": "2022-11-19", + "summary": "Explicabo vero quis inventore doloremque.", + "informationUsed": "Similique necessitatibus quibusdam vero deserunt.\nMinima cum eaque aliquam laudantium placeat vitae.\nVeniam totam corporis consectetur consequuntur labore.\nRepudiandae dolorem necessitatibus molestias.", + "pastOrPresentOrders": "Animi modi perferendis expedita.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + } + ] + } + ], + "activityLog": [ + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "HUELS TATE", + "timestamp": "2014-09-21" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "LANGOSH KIMBERLY", + "timestamp": "2014-01-16" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "CONSIDINE PEGGIE", + "timestamp": "2022-04-14" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "REICHERT MOHAMMAD", + "timestamp": "2017-08-23" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "SKILES KAELYN", + "timestamp": "2018-08-25" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "HALVORSON LYLA", + "timestamp": "2022-06-11" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "LEMKE TRACY", + "timestamp": "2015-10-02" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "GOTTLIEB CORTEZ", + "timestamp": "2022-07-18" + } + ], "associatedSites": [ { - "dateNoted": "2019-03-06", + "dateNoted": "2020-03-22", "notes": "", - "parcelID": "16919", - "siteID": "18859", + "parcelID": "16776", + "siteID": "17774", "siteRegistry": true } ] }, { - "uuid": "e7ab6ab4-fee7-4f3a-a609-0d5a8ee4a672", - "siteID": 20178, - "address": "70043 Hamill Pine", - "latitude": 50.7262, - "longitude": -121.0374, - "lastUpdated": "2021-09-07", - "city": "Fort Herta", - "region": "Thompson-Okanagan", - "victoriaFile": "26250-20/6047", + "uuid": "4e37b3f5-fc1c-4b35-8fed-61e8a8e0f57c", + "siteID": 20948, + "address": "4634 Bosco Manor", + "latitude": 51.9308, + "longitude": -124.3863, + "lastUpdated": "2017-11-18", + "city": "Prosaccotown", + "region": "Mainland/Southwest", + "victoriaFile": "26250-20/17572", "regionalFile": "N/A", "parcelIDs": [ - 7995530, - 1675176, - 6863097, - 5340879, - 199985 + 3451805, + 3133472, + 9248461, + 8507299, + 9335169 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2021-10-24", - "completed": "2018-11-23", - "initiated": "2013-12-14", - "ministryContact": "AUFDERHAR EVERETTE", + "createdAt": "2017-03-27", + "completed": "2019-03-02", + "initiated": "2018-06-26", + "ministryContact": "NIENOW JASMIN", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -43050,16 +68223,6 @@ }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true }, @@ -43067,45 +68230,20 @@ "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true - } - ], - "siteRegistry": false - }, - { - "createdAt": "2019-01-04", - "completed": "2016-03-02", - "initiated": "2019-08-23", - "ministryContact": "FLATLEY VALENTIN", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ + }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", "siteRegistry": false } ], "siteRegistry": false }, { - "createdAt": "2023-08-30", - "completed": "2015-12-29", - "initiated": "2016-05-11", - "ministryContact": "BODE MELYSSA", + "createdAt": "2021-03-16", + "completed": "2015-04-14", + "initiated": "2023-08-09", + "ministryContact": "WILL GARTH", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -43115,52 +68253,32 @@ "notationParticipants": [ { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true - } - ], - "siteRegistry": false - }, - { - "createdAt": "2021-05-05", - "completed": "2020-09-30", - "initiated": "2019-04-12", - "ministryContact": "CRIST REESE", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2020-09-06", - "completed": "2018-01-22", - "initiated": "2017-10-19", - "ministryContact": "SCHUSTER VERNER", + "createdAt": "2019-06-05", + "completed": "2013-12-29", + "initiated": "2023-06-02", + "ministryContact": "COLLIER GUS", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -43169,276 +68287,230 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true } ], "siteRegistry": true } ], "participants": [ - { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2019-11-01", - "startDate": "2018-01-26", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": true - }, { "name": "AMET, DOLOR SIT", - "endDate": "2018-11-30", - "startDate": "2016-10-10", + "endDate": "2018-01-02", + "startDate": "2021-03-15", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2020-04-20", - "startDate": "2023-08-29", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2020-12-08", + "startDate": "2022-02-26", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false } ], - "associatedSites": [ + "suspectLandUses": [ { - "dateNoted": "2021-06-11", - "notes": "", - "parcelID": "18836", - "siteID": "17448", - "siteRegistry": false + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2014-09-13 (described on Site Profile dated 2014-09-13)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2017-09-06 (described on Site Profile dated 2017-09-06)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2016-01-08 (described on Site Profile dated 2016-01-08)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } - ] - }, - { - "uuid": "ccbe39bc-0d22-4d90-9023-7b1af0fbb89d", - "siteID": 17074, - "address": "6200 Caitlyn Ramp", - "latitude": 49.2384, - "longitude": -122.6844, - "lastUpdated": "2019-07-15", - "city": "Lake Kelleyshire", - "region": "Cariboo", - "victoriaFile": "26250-20/16511", - "regionalFile": "N/A", - "parcelIDs": [ - 4753072, - 7165475, - 3579586, - 4014857, - 2579975 ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ + "siteDisclosures": [ { - "createdAt": "2019-06-27", - "completed": "2021-05-29", - "initiated": "2016-06-25", - "ministryContact": "GERHOLD HOBART", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ + "siteRegistry": false, + "dateReceived": "2014-07-09", + "dateCompleted": "2020-10-23", + "dateEntered": "2022-06-05", + "dateRegistrar": "2020-08-28", + "dateLocalAuthorityReceived": "2021-09-01", + "summary": "Repudiandae quisquam culpa beatae.\nVel nostrum veniam explicabo commodi aliquam nisi repudiandae.\nNostrum perferendis nesciunt incidunt minima distinctio enim.", + "informationUsed": "Similique quisquam deserunt hic corporis.\nAperiam optio exercitationem officiis aut deleniti.\nPossimus quasi impedit nemo consectetur.\nReprehenderit enim similique.\nCorporis nostrum quaerat nobis.", + "pastOrPresentOrders": "Praesentium corrupti voluptatum sunt dignissimos.\nMollitia totam deserunt quo ipsam dicta.\nAutem placeat quasi nulla.", + "commercialAndIndustrialPurposes": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - } - ], - "siteRegistry": true - }, - { - "createdAt": "2016-12-02", - "completed": "2015-09-29", - "initiated": "2015-02-23", - "ministryContact": "OKUNEVA IMOGENE", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true } - ], - "siteRegistry": true + ] }, { - "createdAt": "2014-12-12", - "completed": "2017-04-19", - "initiated": "2021-04-09", - "ministryContact": "VONRUEDEN PIPER", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, + "siteRegistry": false, + "dateReceived": "2014-04-06", + "dateCompleted": "2020-03-09", + "dateEntered": "2018-08-23", + "dateRegistrar": "2023-08-24", + "dateLocalAuthorityReceived": "2022-08-06", + "summary": "Adipisci corrupti nisi esse provident at nostrum architecto natus.\nNisi saepe molestiae at alias eum.", + "informationUsed": "Consequuntur a debitis vitae.\nAmet molestias blanditiis laudantium.\nNulla nostrum minima.", + "pastOrPresentOrders": "Fuga quae dolorem doloribus optio odit quos eaque laborum.\nEaque exercitationem occaecati delectus fuga nam libero incidunt ad incidunt.\nCum velit culpa ullam dignissimos quisquam impedit earum laborum placeat.", + "commercialAndIndustrialPurposes": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true } - ], - "siteRegistry": false + ] } ], - "participants": [ + "activityLog": [ { - "name": "IPSUM", - "endDate": "2018-07-14", - "startDate": "2023-08-19", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": true + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "KOCH EDMOND", + "timestamp": "2023-03-06" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "LITTEL HERTHA", + "timestamp": "2017-06-20" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "DONNELLY KAREEM", + "timestamp": "2023-03-10" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "FEENEY JACEY", + "timestamp": "2020-05-31" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "THIEL FREDERIC", + "timestamp": "2021-10-17" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "MAYER RAYMUNDO", + "timestamp": "2019-04-13" }, { - "name": "IPSUM", - "endDate": "2019-10-18", - "startDate": "2013-11-08", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": true + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "BOGISICH ROXANNE", + "timestamp": "2014-01-11" }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2015-04-15", - "startDate": "2016-03-15", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": true + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "OKUNEVA HECTOR", + "timestamp": "2017-07-17" }, { - "name": "AMET, DOLOR SIT", - "endDate": "2019-05-20", - "startDate": "2015-07-08", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": false + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "BOSCO CARA", + "timestamp": "2015-02-11" }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2019-05-26", - "startDate": "2022-05-05", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": true + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "WILL ARTHUR", + "timestamp": "2018-06-26" } ], "associatedSites": [ { - "dateNoted": "2015-12-30", + "dateNoted": "2017-04-18", "notes": "", - "parcelID": "16213", - "siteID": "20211", + "parcelID": "18384", + "siteID": "18513", "siteRegistry": false }, { - "dateNoted": "2020-02-02", + "dateNoted": "2022-11-27", "notes": "", - "parcelID": "16625", - "siteID": "19762", - "siteRegistry": false + "parcelID": "17099", + "siteID": "16489", + "siteRegistry": true } ] }, { - "uuid": "7f88e2e1-3ad2-4e0f-835d-9951de38d0ab", - "siteID": 16703, - "address": "32129 Doris Courts", - "latitude": 52.9389, - "longitude": -128.3399, - "lastUpdated": "2023-02-16", - "city": "Lake Berneice", - "region": " North Coast", - "victoriaFile": "26250-20/2179", + "uuid": "05d9eafd-4f19-47eb-99e8-0e0e9d0bd722", + "siteID": 19362, + "address": "44971 Joanie Bridge", + "latitude": 53.7312, + "longitude": -119.9526, + "lastUpdated": "2021-05-25", + "city": "West Assuntaside", + "region": "Mainland/Southwest", + "victoriaFile": "26250-20/2125", "regionalFile": "N/A", "parcelIDs": [ - 2377825, - 1864668, - 7711805, - 6807224, - 3706002 + 6031950, + 7445718, + 3388908, + 4449625, + 6311776 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2016-07-25", - "completed": "2014-11-30", - "initiated": "2014-10-03", - "ministryContact": "CASSIN OLA", + "createdAt": "2023-03-10", + "completed": "2022-02-17", + "initiated": "2018-05-29", + "ministryContact": "HANSEN ABDUL", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -43453,32 +68525,17 @@ }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false } ], "siteRegistry": false }, { - "createdAt": "2022-02-22", - "completed": "2015-12-03", - "initiated": "2019-06-28", - "ministryContact": "FARRELL RAMONA", + "createdAt": "2018-10-14", + "completed": "2016-10-11", + "initiated": "2021-09-02", + "ministryContact": "KONOPELSKI KEELY", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -43488,27 +68545,32 @@ "notationParticipants": [ { "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false } ], "siteRegistry": true }, { - "createdAt": "2016-07-31", - "completed": "2018-07-12", - "initiated": "2021-11-01", - "ministryContact": "BARTOLETTI-KING JAMARCUS", + "createdAt": "2015-06-10", + "completed": "2022-11-15", + "initiated": "2015-06-24", + "ministryContact": "MAYER TYRA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -43517,23 +68579,23 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true + "role": "REQUESTED BY", + "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false }, { @@ -43545,10 +68607,10 @@ "siteRegistry": true }, { - "createdAt": "2017-01-03", - "completed": "2014-07-16", - "initiated": "2014-08-10", - "ministryContact": "JENKINS MEAGAN", + "createdAt": "2022-03-03", + "completed": "2018-10-15", + "initiated": "2022-11-05", + "ministryContact": "HERMISTON BRIDIE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -43556,39 +68618,24 @@ "" ], "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true } ], "siteRegistry": false }, { - "createdAt": "2014-01-28", - "completed": "2021-07-08", - "initiated": "2022-05-22", - "ministryContact": "CORMIER JULES", + "createdAt": "2021-02-02", + "completed": "2023-06-20", + "initiated": "2014-07-21", + "ministryContact": "REMPEL EDEN", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -43597,24 +68644,14 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false } ], "siteRegistry": true @@ -43622,9 +68659,9 @@ ], "participants": [ { - "name": "IPSUM", - "endDate": "2020-10-24", - "startDate": "2016-11-08", + "name": "AMET, DOLOR SIT", + "endDate": "2021-02-18", + "startDate": "2021-11-05", "notes": "", "roles": [ "ORGANIZATION" @@ -43633,67 +68670,142 @@ }, { "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2014-10-15", - "startDate": "2020-05-30", + "endDate": "2021-06-23", + "startDate": "2023-04-05", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": true + } + ], + "suspectLandUses": [ + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2014-03-10 (described on Site Profile dated 2014-03-10)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "name": "IPSUM", - "endDate": "2022-07-14", - "startDate": "2018-01-04", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": true + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2018-11-17 (described on Site Profile dated 2018-11-17)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2019-05-13 (described on Site Profile dated 2019-05-13)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], - "associatedSites": [ + "siteDisclosures": [ { - "dateNoted": "2020-07-12", - "notes": "", - "parcelID": "16866", - "siteID": "18047", - "siteRegistry": false + "siteRegistry": true, + "dateReceived": "2019-06-24", + "dateCompleted": "2018-06-10", + "dateEntered": "2018-10-06", + "dateRegistrar": "2020-07-08", + "dateLocalAuthorityReceived": "2023-01-19", + "summary": "Libero nostrum quidem optio tempora.", + "informationUsed": "Vero illo quaerat sequi iste repellendus.\nSapiente dolor rerum corporis explicabo numquam repellendus quibusdam ratione.\nRecusandae est deleniti ut molestias omnis aut blanditiis accusantium.\nQuasi eaque iure fugiat suscipit deleniti exercitationem.\nAutem perspiciatis voluptatum aperiam pariatur at vel sequi.", + "pastOrPresentOrders": "Doloremque soluta perferendis debitis exercitationem quod.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + } + ] + } + ], + "activityLog": [ + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "EMMERICH MORGAN", + "timestamp": "2023-04-27" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "BLOCK COOPER", + "timestamp": "2014-04-13" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "ZEMLAK MALVINA", + "timestamp": "2018-09-09" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "O'KON JOLIE", + "timestamp": "2021-05-11" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "BERNHARD RANDAL", + "timestamp": "2016-12-31" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "LANG KIANNA", + "timestamp": "2022-04-17" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "WOLFF ORAN", + "timestamp": "2019-02-06" }, { - "dateNoted": "2016-06-23", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "RICE BERTRAND", + "timestamp": "2014-06-07" + } + ], + "associatedSites": [ + { + "dateNoted": "2019-08-14", "notes": "", - "parcelID": "20179", - "siteID": "19903", + "parcelID": "20116", + "siteID": "17854", "siteRegistry": true } ] }, { - "uuid": "40bd5675-1fb9-41e9-a6d0-9c53a17851e0", - "siteID": 17050, - "address": "364 Felicita Ville", - "latitude": 52.7189, - "longitude": -137.8472, - "lastUpdated": "2016-09-11", - "city": "Rosalynhaven", - "region": "Cariboo", - "victoriaFile": "26250-20/6640", + "uuid": "309e32e0-9088-4600-b470-0104bd5fb6c9", + "siteID": 17589, + "address": "44600 Trantow Ferry", + "latitude": 55.5237, + "longitude": -131.1475, + "lastUpdated": "2018-11-06", + "city": "Lake Nyasia", + "region": "Thompson-Okanagan", + "victoriaFile": "26250-20/10986", "regionalFile": "N/A", "parcelIDs": [ - 5230155, - 4995275, - 1559380, - 2072552, - 259201 + 1499216, + 1566194, + 2679430, + 7726300, + 5748858 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2022-05-03", - "completed": "2016-03-05", - "initiated": "2018-10-19", - "ministryContact": "LIND ZOEY", + "createdAt": "2013-12-26", + "completed": "2020-07-06", + "initiated": "2019-02-23", + "ministryContact": "CORKERY ZANE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -43708,12 +68820,42 @@ }, { "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "createdAt": "2023-05-23", + "completed": "2015-07-27", + "initiated": "2018-08-17", + "ministryContact": "MANTE ANASTACIO", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": true }, { @@ -43725,10 +68867,10 @@ "siteRegistry": true }, { - "createdAt": "2014-11-01", - "completed": "2016-02-19", - "initiated": "2023-02-27", - "ministryContact": "SCHMELER PATRICK", + "createdAt": "2022-12-05", + "completed": "2017-10-16", + "initiated": "2018-12-26", + "ministryContact": "CONNELLY SEDRICK", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -43737,12 +68879,12 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false }, @@ -43753,22 +68895,17 @@ }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2015-11-02", - "completed": "2022-02-25", - "initiated": "2014-07-06", - "ministryContact": "JOHNSTON HAILEE", + "createdAt": "2022-04-09", + "completed": "2018-07-05", + "initiated": "2023-06-23", + "ministryContact": "JOHNSON KAROLANN", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -43782,115 +68919,213 @@ "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true } ], "participants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2023-03-23", - "startDate": "2023-04-01", + "name": "AMET, DOLOR SIT", + "endDate": "2017-09-03", + "startDate": "2013-12-31", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2022-11-16", - "startDate": "2016-01-14", - "notes": "", - "roles": [ - "ORGANIZATION" - ], "siteRegistry": true }, { - "name": "IPSUM", - "endDate": "2022-04-02", - "startDate": "2016-09-26", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2016-02-17", + "startDate": "2020-01-16", "notes": "", "roles": [ "ORGANIZATION" ], "siteRegistry": false + } + ], + "suspectLandUses": [ + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2017-11-27 (described on Site Profile dated 2017-11-27)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "name": "IPSUM", - "endDate": "2016-01-15", - "startDate": "2019-06-01", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": false + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2023-03-29 (described on Site Profile dated 2023-03-29)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "name": "IPSUM", - "endDate": "2018-09-12", - "startDate": "2018-03-13", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": true + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2015-01-05 (described on Site Profile dated 2015-01-05)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2019-07-11 (described on Site Profile dated 2019-07-11)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2015-10-13 (described on Site Profile dated 2015-10-13)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + } + ], + "siteDisclosures": [ + { + "siteRegistry": true, + "dateReceived": "2015-10-13", + "dateCompleted": "2017-01-30", + "dateEntered": "2016-09-10", + "dateRegistrar": "2019-02-08", + "dateLocalAuthorityReceived": "2018-10-11", + "summary": "Officiis veritatis similique corrupti illo vero illum.\nEst quidem dolorum temporibus neque repellat.\nQuos laboriosam suscipit aspernatur fugit minus distinctio.", + "informationUsed": "Ipsum nisi possimus nulla.\nId aut perferendis quam nostrum sit repudiandae iste ab pariatur.\nLibero asperiores alias.\nAliquid dolor culpa esse ipsum perspiciatis ipsa.", + "pastOrPresentOrders": "Perspiciatis porro praesentium molestias.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + } + ] + }, + { + "siteRegistry": false, + "dateReceived": "2022-06-30", + "dateCompleted": "2014-12-12", + "dateEntered": "2020-12-09", + "dateRegistrar": "2022-10-12", + "dateLocalAuthorityReceived": "2021-03-17", + "summary": "Unde cum occaecati saepe suscipit illum iusto magni libero.\nArchitecto mollitia maiores occaecati enim est corrupti aperiam.", + "informationUsed": "Impedit assumenda possimus mollitia sed corporis magni.\nNisi corrupti mollitia commodi deleniti ad dolore delectus unde.\nIusto aliquid labore doloribus.", + "pastOrPresentOrders": "Assumenda dolorum accusamus modi.\nTotam at id mollitia impedit quod a unde.\nAut veritatis voluptatibus laborum.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + } + ] + } + ], + "activityLog": [ + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "LESCH KESHAUN", + "timestamp": "2017-06-03" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "WILLIAMSON ROSSIE", + "timestamp": "2014-06-17" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "RAU ELBERT", + "timestamp": "2019-06-27" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "MOHR COTY", + "timestamp": "2014-03-14" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "MULLER CAMERON", + "timestamp": "2015-04-17" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "LESCH DAYNA", + "timestamp": "2014-11-10" } ], "associatedSites": [ { - "dateNoted": "2016-07-11", + "dateNoted": "2017-01-29", "notes": "", - "parcelID": "17179", - "siteID": "15654", + "parcelID": "17242", + "siteID": "19590", "siteRegistry": true }, { - "dateNoted": "2023-06-04", + "dateNoted": "2013-10-30", "notes": "", - "parcelID": "17143", - "siteID": "16673", - "siteRegistry": false + "parcelID": "20414", + "siteID": "15461", + "siteRegistry": true }, { - "dateNoted": "2020-02-29", + "dateNoted": "2017-05-15", "notes": "", - "parcelID": "19517", - "siteID": "17190", - "siteRegistry": true + "parcelID": "18809", + "siteID": "15800", + "siteRegistry": false } ] }, { - "uuid": "b5b54482-2a1e-484e-9601-a46b4af2951b", - "siteID": 19819, - "address": "378 Chesley Course", - "latitude": 48.7975, - "longitude": -121.8271, - "lastUpdated": "2021-02-21", - "city": "Lake Laneworth", - "region": "Kootenay", - "victoriaFile": "26250-20/9184", + "uuid": "773a7ce5-9245-4257-bcd5-a70515681d0d", + "siteID": 18403, + "address": "28036 Will Views", + "latitude": 48.77, + "longitude": -136.8517, + "lastUpdated": "2014-01-30", + "city": "Joannyport", + "region": "Thompson-Okanagan", + "victoriaFile": "26250-20/16836", "regionalFile": "N/A", "parcelIDs": [ - 1618632, - 2816910, - 4620587, - 3265650, - 4194508 + 9739776, + 7342236, + 8424309, + 3043381, + 1280634 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2023-07-09", - "completed": "2019-05-14", - "initiated": "2018-11-27", - "ministryContact": "LEFFLER KIERA", + "createdAt": "2015-09-27", + "completed": "2017-09-25", + "initiated": "2021-04-24", + "ministryContact": "BLANDA EULA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -43899,28 +69134,38 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2016-07-01", - "completed": "2022-09-06", - "initiated": "2015-05-16", - "ministryContact": "KLEIN AHMAD", + "createdAt": "2023-04-01", + "completed": "2022-11-08", + "initiated": "2022-06-09", + "ministryContact": "CORWIN GARRY", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -43935,18 +69180,33 @@ }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false } ], "participants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2018-10-23", - "startDate": "2015-02-04", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2021-01-24", + "startDate": "2019-11-30", "notes": "", "roles": [ "EMPLOYEE" @@ -43954,78 +69214,198 @@ "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2015-10-12", - "startDate": "2015-05-30", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2014-06-09", + "startDate": "2021-05-02", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2014-07-20", - "startDate": "2018-10-24", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2020-06-12", + "startDate": "2016-05-14", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2016-08-03", - "startDate": "2022-12-02", + "name": "AMET, DOLOR SIT", + "endDate": "2020-01-04", + "startDate": "2019-06-04", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false + } + ], + "suspectLandUses": [ + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2020-07-31 (described on Site Profile dated 2020-07-31)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2016-10-09 (described on Site Profile dated 2016-10-09)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + } + ], + "siteDisclosures": [ + { + "siteRegistry": true, + "dateReceived": "2023-09-30", + "dateCompleted": "2018-07-31", + "dateEntered": "2013-12-23", + "dateRegistrar": "2015-10-20", + "dateLocalAuthorityReceived": "2021-12-30", + "summary": "Maiores quisquam minima.\nPerferendis dolorem quis rerum beatae.\nPlaceat ipsa modi.", + "informationUsed": "Sequi culpa earum animi reiciendis dolore nesciunt exercitationem iste modi.\nDebitis qui ipsa ut maxime dolore dicta.\nConsequatur corrupti omnis sapiente eos.\nDolorum molestiae fuga nesciunt atque ut odio.\nVitae modi aliquam ad eos consequuntur omnis neque fugiat.", + "pastOrPresentOrders": "Perferendis natus vero architecto non provident fuga quos vel amet.\nEligendi labore doloremque.\nCorrupti similique necessitatibus omnis quisquam laudantium.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + } + ] + }, + { + "siteRegistry": false, + "dateReceived": "2017-04-17", + "dateCompleted": "2020-12-14", + "dateEntered": "2015-10-28", + "dateRegistrar": "2023-09-21", + "dateLocalAuthorityReceived": "2021-04-07", + "summary": "Reiciendis fugit quod at.\nOptio sint tempore quod eos aut ullam magni blanditiis.\nConsequuntur explicabo ratione sapiente modi quibusdam nobis.", + "informationUsed": "Ducimus libero ut minima quod aliquid animi.\nVero pariatur eius inventore reprehenderit optio quidem veniam.\nModi deleniti corporis.", + "pastOrPresentOrders": "Beatae praesentium magnam voluptatum magnam.\nRatione dolorum occaecati voluptate.\nAlias laboriosam quos dolorum at fugiat in nisi veritatis repellendus.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + } + ] + } + ], + "activityLog": [ + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "DAUGHERTY MADELYNN", + "timestamp": "2022-05-15" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "MCLAUGHLIN RHEA", + "timestamp": "2017-03-04" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "PREDOVIC HECTOR", + "timestamp": "2019-01-17" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "DONNELLY MEGHAN", + "timestamp": "2019-01-26" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "GORCZANY ABBIE", + "timestamp": "2015-08-23" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "SCHILLER KENNEDY", + "timestamp": "2018-01-22" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "EBERT ZULA", + "timestamp": "2023-09-10" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "PURDY BROOKS", + "timestamp": "2022-12-05" } ], "associatedSites": [ { - "dateNoted": "2017-08-11", + "dateNoted": "2021-05-20", "notes": "", - "parcelID": "16448", - "siteID": "15361", + "parcelID": "19566", + "siteID": "15800", "siteRegistry": false }, { - "dateNoted": "2016-02-05", + "dateNoted": "2014-09-23", "notes": "", - "parcelID": "16567", - "siteID": "15654", - "siteRegistry": true + "parcelID": "19628", + "siteID": "18201", + "siteRegistry": false } ] }, { - "uuid": "ed2a7d16-ceed-4065-941d-dadda86ff477", - "siteID": 19351, - "address": "9403 Jacobson Path", - "latitude": 58.1959, - "longitude": -131.7107, - "lastUpdated": "2019-03-25", - "city": "Westview", - "region": " North Coast", - "victoriaFile": "26250-20/5096", + "uuid": "48f1a357-9974-45c4-b116-ea5699ffb62a", + "siteID": 18053, + "address": "5461 Marlee Harbors", + "latitude": 53.0592, + "longitude": -124.3292, + "lastUpdated": "2020-07-22", + "city": "West Cory", + "region": "Thompson-Okanagan", + "victoriaFile": "26250-20/10903", "regionalFile": "N/A", "parcelIDs": [ - 1639896, - 6741054, - 3463012, - 2349487, - 2817121 + 789234, + 9374053, + 7832035, + 1813936, + 5942438 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2020-12-04", - "completed": "2013-12-13", - "initiated": "2014-08-17", - "ministryContact": "CORKERY ICIE", + "createdAt": "2021-09-17", + "completed": "2014-06-27", + "initiated": "2022-01-16", + "ministryContact": "AUER STANLEY", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -44034,28 +69414,38 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true } ], "siteRegistry": true }, { - "createdAt": "2014-08-30", - "completed": "2015-12-15", - "initiated": "2020-03-05", - "ministryContact": "ROOB KACIE", + "createdAt": "2018-04-27", + "completed": "2017-08-07", + "initiated": "2016-01-28", + "ministryContact": "WUNSCH VERN", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -44064,53 +69454,195 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true } ], "siteRegistry": false + } + ], + "participants": [ + { + "name": "AMET, DOLOR SIT", + "endDate": "2016-04-13", + "startDate": "2021-02-27", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false }, { - "createdAt": "2022-07-24", - "completed": "2017-10-25", - "initiated": "2014-04-24", - "ministryContact": "CARTER KEVON", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" + "name": "IPSUM", + "endDate": "2014-01-05", + "startDate": "2023-05-04", + "notes": "", + "roles": [ + "EMPLOYEE" ], - "notationParticipants": [ + "siteRegistry": true + } + ], + "suspectLandUses": [ + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2022-02-12 (described on Site Profile dated 2022-02-12)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2022-12-22 (described on Site Profile dated 2022-12-22)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2015-05-02 (described on Site Profile dated 2015-05-02)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2015-12-27 (described on Site Profile dated 2015-12-27)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + } + ], + "siteDisclosures": [ + { + "siteRegistry": true, + "dateReceived": "2023-06-19", + "dateCompleted": "2018-06-30", + "dateEntered": "2018-12-26", + "dateRegistrar": "2014-08-06", + "dateLocalAuthorityReceived": "2021-12-01", + "summary": "Itaque sunt dolores.\nVelit ea id quisquam labore tenetur adipisci corrupti molestias.", + "informationUsed": "Ex quo praesentium omnis nihil.\nOptio hic vero deleniti consectetur.\nUt deleniti consequuntur aperiam facilis eum error nobis.", + "pastOrPresentOrders": "Porro minima optio aliquid dolore omnis quas eos iure.", + "commercialAndIndustrialPurposes": [ { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true } - ], - "siteRegistry": false + ] + } + ], + "activityLog": [ + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "LANGOSH NICOLAS", + "timestamp": "2017-09-12" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "TOY DRAKE", + "timestamp": "2017-05-07" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "JAST DEWAYNE", + "timestamp": "2018-04-28" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "CARROLL DAREN", + "timestamp": "2015-12-31" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "PRICE HASKELL", + "timestamp": "2019-03-08" }, { - "createdAt": "2022-02-27", - "completed": "2022-04-12", - "initiated": "2021-07-06", - "ministryContact": "ONDRICKA JED", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "BERNHARD STANLEY", + "timestamp": "2021-01-22" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "KSHLERIN ROGER", + "timestamp": "2018-09-11" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "KREIGER RENE", + "timestamp": "2023-07-08" + } + ], + "associatedSites": [ + { + "dateNoted": "2020-04-10", + "notes": "", + "parcelID": "18072", + "siteID": "19118", + "siteRegistry": true + }, + { + "dateNoted": "2023-05-14", + "notes": "", + "parcelID": "17463", + "siteID": "16320", + "siteRegistry": false + } + ] + }, + { + "uuid": "a09d987b-ac1e-4115-8514-42ac5999a5f5", + "siteID": 17826, + "address": "7154 Brown Pine", + "latitude": 55.4531, + "longitude": -122.8096, + "lastUpdated": "2020-08-26", + "city": "Kentwood", + "region": "Vancouver Island/Coast", + "victoriaFile": "26250-20/16235", + "regionalFile": "N/A", + "parcelIDs": [ + 2137699, + 4833063, + 3376677, + 3896326, + 5659865 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2019-06-13", + "completed": "2018-06-26", + "initiated": "2020-01-14", + "ministryContact": "GOTTLIEB DOMINIQUE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -44119,28 +69651,38 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2019-06-06", - "completed": "2016-05-16", - "initiated": "2019-02-12", - "ministryContact": "BOSCO DANE", + "createdAt": "2020-09-25", + "completed": "2018-03-12", + "initiated": "2017-03-29", + "ministryContact": "WALKER PERRY", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -44154,14 +69696,24 @@ "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true } ], "siteRegistry": false @@ -44169,9 +69721,19 @@ ], "participants": [ { - "name": "AMET, DOLOR SIT", - "endDate": "2017-04-23", - "startDate": "2018-07-07", + "name": "IPSUM", + "endDate": "2018-11-06", + "startDate": "2015-01-29", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2016-05-18", + "startDate": "2016-02-18", "notes": "", "roles": [ "ORGANIZATION" @@ -44180,18 +69742,18 @@ }, { "name": "SHELL CANADA PRODUCTS", - "endDate": "2021-07-08", - "startDate": "2022-01-23", + "endDate": "2020-09-10", + "startDate": "2019-07-04", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], - "siteRegistry": false + "siteRegistry": true }, { - "name": "AMET, DOLOR SIT", - "endDate": "2016-04-07", - "startDate": "2016-07-03", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2015-05-03", + "startDate": "2017-11-06", "notes": "", "roles": [ "EMPLOYEE" @@ -44199,48 +69761,150 @@ "siteRegistry": false } ], - "associatedSites": [ + "suspectLandUses": [ { - "dateNoted": "2017-02-04", - "notes": "", - "parcelID": "15613", - "siteID": "17304", - "siteRegistry": false + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2017-01-11 (described on Site Profile dated 2017-01-11)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2014-06-05 (described on Site Profile dated 2014-06-05)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2022-12-09 (described on Site Profile dated 2022-12-09)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2014-11-22 (described on Site Profile dated 2014-11-22)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + } + ], + "siteDisclosures": [ + { + "siteRegistry": false, + "dateReceived": "2023-07-09", + "dateCompleted": "2019-11-08", + "dateEntered": "2016-09-11", + "dateRegistrar": "2013-12-01", + "dateLocalAuthorityReceived": "2013-11-19", + "summary": "Veniam numquam illum.", + "informationUsed": "Reprehenderit praesentium vel possimus nam eaque.\nExpedita nihil ullam.\nOfficia ullam illum explicabo voluptate odit accusantium molestias dignissimos.\nTempore esse adipisci neque nisi.", + "pastOrPresentOrders": "Ad tenetur optio aperiam impedit.\nQuas fugit cupiditate eveniet soluta praesentium natus.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + } + ] + } + ], + "activityLog": [ + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "DAVIS FAE", + "timestamp": "2017-03-04" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "PARKER-HEIDENREICH JESS", + "timestamp": "2014-06-23" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "CONSIDINE CATHARINE", + "timestamp": "2020-08-31" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "NIENOW LANEY", + "timestamp": "2014-10-31" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "HOEGER JEROME", + "timestamp": "2017-07-03" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "BATZ GRANVILLE", + "timestamp": "2016-07-03" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "GOODWIN JACYNTHE", + "timestamp": "2021-11-15" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "OLSON LEILA", + "timestamp": "2016-06-27" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "HESSEL REMINGTON", + "timestamp": "2023-10-03" }, { - "dateNoted": "2016-12-30", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "WISOZK DALTON", + "timestamp": "2013-10-15" + } + ], + "associatedSites": [ + { + "dateNoted": "2017-12-01", "notes": "", - "parcelID": "18314", - "siteID": "15653", + "parcelID": "19200", + "siteID": "17271", "siteRegistry": true } ] }, { - "uuid": "ff563f65-15a1-4e8f-9884-6f84442c6abf", - "siteID": 17572, - "address": "6304 Israel Row", - "latitude": 52.4025, - "longitude": -124.0437, - "lastUpdated": "2013-11-12", - "city": "New Emerald", - "region": "Thompson-Okanagan", - "victoriaFile": "26250-20/4122", + "uuid": "d38a3338-5c00-4c46-a412-b0cff5ff072c", + "siteID": 16902, + "address": "8370 Wilderman Circles", + "latitude": 49.8169, + "longitude": -126.3014, + "lastUpdated": "2023-06-20", + "city": "Emmanuelstad", + "region": "Mainland/Southwest", + "victoriaFile": "26250-20/4169", "regionalFile": "N/A", "parcelIDs": [ - 5545119, - 8119763, - 9668668, - 1175280, - 3754510 + 7077597, + 2490324, + 8759033, + 2567818, + 6103794 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2021-10-20", - "completed": "2022-03-05", - "initiated": "2020-06-16", - "ministryContact": "OLSON NYAH", + "createdAt": "2018-11-06", + "completed": "2016-12-13", + "initiated": "2014-02-17", + "ministryContact": "CRONIN BRYANA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -44250,27 +69914,32 @@ "notationParticipants": [ { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false } ], "siteRegistry": true }, { - "createdAt": "2021-02-07", - "completed": "2022-10-21", - "initiated": "2013-11-06", - "ministryContact": "JASKOLSKI KELVIN", + "createdAt": "2016-08-14", + "completed": "2019-08-14", + "initiated": "2018-05-19", + "ministryContact": "JOHNSTON BRUCE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -44280,17 +69949,12 @@ "notationParticipants": [ { "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false + "role": "REQUESTED BY", + "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false }, { @@ -44299,39 +69963,39 @@ "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false } ], "participants": [ { - "name": "AMET, DOLOR SIT", - "endDate": "2017-09-13", - "startDate": "2020-09-26", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2021-04-23", + "startDate": "2023-05-11", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2019-07-27", - "startDate": "2016-10-18", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2017-05-14", + "startDate": "2014-11-26", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2019-11-25", - "startDate": "2016-08-30", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2016-09-07", + "startDate": "2017-02-05", "notes": "", "roles": [ "EMPLOYEE" @@ -44339,48 +70003,184 @@ "siteRegistry": true } ], + "suspectLandUses": [ + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2014-12-11 (described on Site Profile dated 2014-12-11)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2017-05-28 (described on Site Profile dated 2017-05-28)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2017-05-11 (described on Site Profile dated 2017-05-11)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2018-05-26 (described on Site Profile dated 2018-05-26)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2018-02-14 (described on Site Profile dated 2018-02-14)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + } + ], + "siteDisclosures": [ + { + "siteRegistry": false, + "dateReceived": "2017-11-12", + "dateCompleted": "2017-05-03", + "dateEntered": "2023-09-15", + "dateRegistrar": "2018-05-04", + "dateLocalAuthorityReceived": "2018-06-01", + "summary": "Vel aliquid facilis temporibus incidunt quibusdam animi illo.", + "informationUsed": "Quam reprehenderit a optio itaque eius.\nDicta amet fugiat perferendis est deserunt consequuntur nobis maxime.\nEst corporis qui aspernatur itaque aut harum voluptates.\nIpsa molestiae sit deserunt facere amet quam quis minus.", + "pastOrPresentOrders": "Officiis porro facilis corporis blanditiis sint similique voluptatibus.\nOmnis iste molestiae.\nExcepturi neque nobis harum molestiae similique occaecati.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + } + ] + }, + { + "siteRegistry": true, + "dateReceived": "2018-09-27", + "dateCompleted": "2022-11-29", + "dateEntered": "2016-11-19", + "dateRegistrar": "2018-11-12", + "dateLocalAuthorityReceived": "2020-02-25", + "summary": "Suscipit nemo ea.\nReiciendis blanditiis corporis nulla molestiae vel.", + "informationUsed": "Deserunt maiores eveniet itaque unde amet dolorum.\nMollitia amet dignissimos amet debitis blanditiis qui culpa aut.\nFacilis consequatur ad nostrum ullam vel.\nEx enim neque occaecati dolore ratione libero accusantium.\nMolestiae at ad quis commodi iure enim consectetur.", + "pastOrPresentOrders": "Vitae eaque ab non.\nVeniam optio praesentium doloremque rerum blanditiis debitis aliquam maiores alias.\nDelectus saepe illum.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + } + ] + } + ], + "activityLog": [ + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "STARK WILSON", + "timestamp": "2017-04-16" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "HINTZ KAVON", + "timestamp": "2021-04-04" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "HAND DAWN", + "timestamp": "2019-10-02" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "HETTINGER TRENTON", + "timestamp": "2021-05-23" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "MILLER WARD", + "timestamp": "2016-12-23" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "FEEST-STIEDEMANN JUDE", + "timestamp": "2015-03-02" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "SCHIMMEL JIMMIE", + "timestamp": "2014-04-15" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "WUCKERT VERNICE", + "timestamp": "2014-11-10" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "HERZOG KAILEE", + "timestamp": "2013-10-29" + } + ], "associatedSites": [ { - "dateNoted": "2020-11-01", + "dateNoted": "2016-12-12", "notes": "", - "parcelID": "16353", - "siteID": "17226", + "parcelID": "18677", + "siteID": "18736", "siteRegistry": true }, { - "dateNoted": "2022-11-08", + "dateNoted": "2023-02-17", "notes": "", - "parcelID": "19367", - "siteID": "16736", + "parcelID": "17860", + "siteID": "20329", "siteRegistry": false } ] }, { - "uuid": "731f8d4b-3b4e-4fb8-9e2a-d0f847175ce4", - "siteID": 20986, - "address": "4295 Jennie Ferry", - "latitude": 55.0137, - "longitude": -134.9303, - "lastUpdated": "2021-03-24", - "city": "Lake Letitia", + "uuid": "b79b7e32-1ea5-4358-a0fa-61a8ff1ee7ba", + "siteID": 17118, + "address": "700 Orlando Manors", + "latitude": 55.2388, + "longitude": -118.7605, + "lastUpdated": "2013-12-12", + "city": "Stantonport", "region": "Cariboo", - "victoriaFile": "26250-20/10343", + "victoriaFile": "26250-20/4712", "regionalFile": "N/A", "parcelIDs": [ - 3686120, - 1948396, - 7443928, - 1681032, - 6807310 + 1980967, + 7609662, + 9073957, + 9657600, + 4824578 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2023-04-25", - "completed": "2020-06-16", - "initiated": "2020-06-13", - "ministryContact": "RUNOLFSDOTTIR LUDIE", + "createdAt": "2021-03-21", + "completed": "2017-04-23", + "initiated": "2017-07-13", + "ministryContact": "BLANDA EDUARDO", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -44388,54 +70188,24 @@ "" ], "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true - } - ], - "siteRegistry": false - }, - { - "createdAt": "2023-02-08", - "completed": "2017-01-25", - "initiated": "2020-12-12", - "ministryContact": "BOEHM CHARLEY", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2021-06-30", - "completed": "2022-10-12", - "initiated": "2018-11-18", - "ministryContact": "STREICH MADISEN", + "createdAt": "2016-10-20", + "completed": "2014-02-22", + "initiated": "2015-09-02", + "ministryContact": "BEAHAN CAMILA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -44444,12 +70214,7 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false }, @@ -44458,29 +70223,9 @@ "role": "SUBMITTED BY", "siteRegistry": false }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - } - ], - "siteRegistry": false - }, - { - "createdAt": "2019-01-15", - "completed": "2015-06-02", - "initiated": "2020-05-22", - "ministryContact": "PRICE SHAKIRA", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ { "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": true }, { @@ -44488,11 +70233,6 @@ "role": "REQUESTED BY", "siteRegistry": false }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", @@ -44500,117 +70240,233 @@ } ], "siteRegistry": true - }, - { - "createdAt": "2021-09-22", - "completed": "2013-11-19", - "initiated": "2018-09-07", - "ministryContact": "HERMAN SHERWOOD", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - } - ], - "siteRegistry": false } ], "participants": [ { "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2016-02-01", - "startDate": "2016-02-25", + "endDate": "2015-07-19", + "startDate": "2014-05-13", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2018-08-05", - "startDate": "2017-02-27", + "name": "AMET, DOLOR SIT", + "endDate": "2020-06-23", + "startDate": "2021-11-07", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": false }, { - "name": "AMET, DOLOR SIT", - "endDate": "2016-01-01", - "startDate": "2018-01-30", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2017-12-21", + "startDate": "2017-02-13", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2018-01-17", - "startDate": "2023-03-11", + "endDate": "2023-05-08", + "startDate": "2016-02-21", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false + } + ], + "suspectLandUses": [ + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2019-12-07 (described on Site Profile dated 2019-12-07)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2014-08-13 (described on Site Profile dated 2014-08-13)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2022-02-24 (described on Site Profile dated 2022-02-24)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2020-01-27 (described on Site Profile dated 2020-01-27)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + } + ], + "siteDisclosures": [ + { + "siteRegistry": false, + "dateReceived": "2016-08-08", + "dateCompleted": "2018-03-17", + "dateEntered": "2018-08-18", + "dateRegistrar": "2019-05-15", + "dateLocalAuthorityReceived": "2014-11-18", + "summary": "Neque provident eaque voluptas dolor nulla corporis similique dolores nisi.\nSoluta id expedita aperiam.", + "informationUsed": "Dolore aliquid saepe molestias id.\nPorro consectetur numquam tempore facere repellat ad perferendis.\nRerum numquam molestiae vitae.", + "pastOrPresentOrders": "Explicabo sequi explicabo autem harum aliquam soluta.\nDolorum totam rerum itaque accusantium fugiat similique id.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + } + ] + }, + { + "siteRegistry": true, + "dateReceived": "2017-10-03", + "dateCompleted": "2021-05-14", + "dateEntered": "2022-12-10", + "dateRegistrar": "2015-09-26", + "dateLocalAuthorityReceived": "2014-12-06", + "summary": "Id possimus laboriosam tempore.\nEx quam perferendis ipsa nihil culpa laborum deserunt dolorum.", + "informationUsed": "In nihil maxime maxime assumenda expedita quo adipisci.\nInventore voluptas fugiat accusantium.\nCorrupti aliquid quod natus assumenda quos odit.\nNisi consectetur perferendis.\nRem quae rem dolorum corporis quas autem voluptatibus.", + "pastOrPresentOrders": "Sapiente quasi saepe recusandae explicabo quasi odio animi ratione consectetur.\nQuaerat molestiae adipisci perspiciatis quibusdam deserunt ducimus molestias culpa.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + } + ] + } + ], + "activityLog": [ + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "WOLFF TIFFANY", + "timestamp": "2022-02-08" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "ONDRICKA ELMORE", + "timestamp": "2015-01-04" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "KOVACEK BROWN", + "timestamp": "2014-07-26" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "LANG QUENTIN", + "timestamp": "2018-08-10" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "HUELS NILS", + "timestamp": "2021-01-15" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "LUBOWITZ DOVIE", + "timestamp": "2020-07-04" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "KUVALIS ALPHONSO", + "timestamp": "2019-04-03" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "BOYER GISSELLE", + "timestamp": "2017-09-24" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "HARBER WALLACE", + "timestamp": "2019-01-17" } ], "associatedSites": [ { - "dateNoted": "2014-11-06", + "dateNoted": "2015-01-27", "notes": "", - "parcelID": "18591", - "siteID": "16222", + "parcelID": "20397", + "siteID": "19790", "siteRegistry": true }, { - "dateNoted": "2016-02-12", + "dateNoted": "2016-04-11", "notes": "", - "parcelID": "19731", - "siteID": "20211", - "siteRegistry": false + "parcelID": "18946", + "siteID": "18685", + "siteRegistry": true } ] }, { - "uuid": "08f0b7e6-9335-46d4-aecc-33982226aa7c", - "siteID": 18695, - "address": "367 Lillie Spurs", - "latitude": 53.1604, - "longitude": -128.6859, - "lastUpdated": "2021-08-31", - "city": "Keyonfield", + "uuid": "f8b80a27-949d-4081-bead-f8a2b2b6f6c7", + "siteID": 20789, + "address": "8056 Hellen Crossroad", + "latitude": 56.734, + "longitude": -120.8617, + "lastUpdated": "2015-03-06", + "city": "Prudenceview", "region": " North Coast", - "victoriaFile": "26250-20/8685", + "victoriaFile": "26250-20/7746", "regionalFile": "N/A", "parcelIDs": [ - 7948437, - 9077638, - 4513721, - 2322374, - 7725399 + 7400098, + 9688453, + 9569016, + 4938699, + 9245597 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2017-10-20", - "completed": "2018-07-12", - "initiated": "2020-03-22", - "ministryContact": "SWANIAWSKI MARIELA", + "createdAt": "2020-04-12", + "completed": "2015-02-26", + "initiated": "2021-09-26", + "ministryContact": "CONSIDINE-QUITZON BERNITA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -44619,19 +70475,44 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "createdAt": "2021-02-02", + "completed": "2022-06-24", + "initiated": "2014-07-05", + "ministryContact": "WALKER EVA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", @@ -44640,17 +70521,27 @@ }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false } ], "siteRegistry": true }, { - "createdAt": "2022-07-31", - "completed": "2021-07-01", - "initiated": "2014-03-26", - "ministryContact": "BAYER OFELIA", + "createdAt": "2017-12-17", + "completed": "2014-12-21", + "initiated": "2015-09-03", + "ministryContact": "WYMAN PATRICK", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -44659,28 +70550,63 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "createdAt": "2016-10-26", + "completed": "2017-05-12", + "initiated": "2020-05-02", + "ministryContact": "RUSSEL KAREEM", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": true } ], @@ -44690,8 +70616,8 @@ "participants": [ { "name": "AMET, DOLOR SIT", - "endDate": "2013-12-10", - "startDate": "2015-06-13", + "endDate": "2016-02-14", + "startDate": "2015-01-19", "notes": "", "roles": [ "ORGANIZATION" @@ -44700,205 +70626,236 @@ }, { "name": "AMET, DOLOR SIT", - "endDate": "2019-01-08", - "startDate": "2014-10-05", + "endDate": "2023-08-09", + "startDate": "2022-09-20", "notes": "", "roles": [ "ORGANIZATION" ], "siteRegistry": false - } - ], - "associatedSites": [ + }, + { + "name": "AMET, DOLOR SIT", + "endDate": "2020-03-16", + "startDate": "2017-07-03", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, { - "dateNoted": "2020-02-05", + "name": "AMET, DOLOR SIT", + "endDate": "2016-05-06", + "startDate": "2020-10-21", "notes": "", - "parcelID": "16140", - "siteID": "19233", + "roles": [ + "EMPLOYEE" + ], "siteRegistry": false }, { - "dateNoted": "2019-11-20", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2016-03-03", + "startDate": "2016-01-05", "notes": "", - "parcelID": "18182", - "siteID": "17012", + "roles": [ + "ORGANIZATION" + ], "siteRegistry": true } - ] - }, - { - "uuid": "e8221d8c-c189-484b-8fea-44c35571a46f", - "siteID": 17038, - "address": "215 Nienow Extensions", - "latitude": 53.7124, - "longitude": -136.4697, - "lastUpdated": "2014-12-14", - "city": "Bobbyburgh", - "region": "Vancouver Island/Coast", - "victoriaFile": "26250-20/17122", - "regionalFile": "N/A", - "parcelIDs": [ - 8746540, - 6226683, - 684980, - 6768722, - 1938256 ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ + "suspectLandUses": [ { - "createdAt": "2018-08-08", - "completed": "2022-11-06", - "initiated": "2015-06-02", - "ministryContact": "MAYERT ELOISE", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - } - ], - "siteRegistry": true + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2014-11-05 (described on Site Profile dated 2014-11-05)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "createdAt": "2020-02-23", - "completed": "2017-06-06", - "initiated": "2017-08-10", - "ministryContact": "PADBERG EDEN", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2021-11-02 (described on Site Profile dated 2021-11-02)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2022-11-26 (described on Site Profile dated 2022-11-26)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + } + ], + "siteDisclosures": [ + { + "siteRegistry": false, + "dateReceived": "2023-03-06", + "dateCompleted": "2015-07-31", + "dateEntered": "2019-10-03", + "dateRegistrar": "2020-09-26", + "dateLocalAuthorityReceived": "2018-02-16", + "summary": "Esse labore aperiam magni nesciunt pariatur.\nLaborum aperiam sunt ipsum magni quaerat nulla nobis velit nemo.\nSaepe in dignissimos voluptate veniam at.", + "informationUsed": "Laudantium fugit numquam corrupti commodi accusantium aliquid laborum debitis.\nNam ab dolore reprehenderit et dolor fugiat neque reiciendis.\nEligendi non sint nesciunt impedit non beatae ullam reiciendis unde.\nEsse sit iure libero.", + "pastOrPresentOrders": "Tenetur vero qui minus qui placeat recusandae repellat totam.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + } + ] + }, + { + "siteRegistry": false, + "dateReceived": "2015-06-22", + "dateCompleted": "2022-09-26", + "dateEntered": "2019-07-29", + "dateRegistrar": "2021-08-14", + "dateLocalAuthorityReceived": "2021-07-25", + "summary": "Velit beatae facere tenetur itaque magni.\nVero neque illum officia reprehenderit nam expedita beatae perferendis quisquam.\nPerferendis excepturi officiis quod magni quibusdam ipsam.", + "informationUsed": "Totam deserunt repellat officiis id natus architecto quasi non doloribus.\nIpsam qui alias voluptatem unde consectetur quod consequuntur earum.\nUllam eligendi adipisci tempore aliquid aspernatur incidunt.\nQuas expedita quisquam reprehenderit veritatis praesentium tenetur.\nId sint veritatis occaecati commodi consectetur tenetur.", + "pastOrPresentOrders": "Alias ipsam ab necessitatibus dolorem.\nAperiam nesciunt quas.\nAb ad ad voluptas.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true } - ], - "siteRegistry": true + ] } ], - "participants": [ + "activityLog": [ { - "name": "AMET, DOLOR SIT", - "endDate": "2023-07-12", - "startDate": "2019-10-06", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": true + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "YOST LILLY", + "timestamp": "2022-12-26" }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2021-02-10", - "startDate": "2020-10-23", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": false + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "GUTKOWSKI MYRTLE", + "timestamp": "2016-02-18" }, { - "name": "IPSUM", - "endDate": "2018-11-16", - "startDate": "2017-06-17", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": false + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "GUTMANN FREDA", + "timestamp": "2023-07-12" }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2023-03-14", - "startDate": "2014-04-20", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": false + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "DENESIK ELLIS", + "timestamp": "2016-04-24" }, { - "name": "AMET, DOLOR SIT", - "endDate": "2021-05-09", - "startDate": "2014-07-20", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": true + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "DACH MAIYA", + "timestamp": "2023-04-17" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "ZULAUF-LEBSACK MAXIMILLIA", + "timestamp": "2022-06-07" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "O'KON CHRISTOPHE", + "timestamp": "2022-04-26" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "LANGOSH-TORP KARIANE", + "timestamp": "2023-07-22" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "MCDERMOTT HALEIGH", + "timestamp": "2018-12-29" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "SPENCER SERENA", + "timestamp": "2020-03-29" } ], "associatedSites": [ { - "dateNoted": "2016-09-19", + "dateNoted": "2023-02-18", + "notes": "", + "parcelID": "16410", + "siteID": "20137", + "siteRegistry": true + }, + { + "dateNoted": "2023-05-23", + "notes": "", + "parcelID": "19317", + "siteID": "15574", + "siteRegistry": true + }, + { + "dateNoted": "2018-10-18", "notes": "", - "parcelID": "18327", - "siteID": "20930", + "parcelID": "19281", + "siteID": "18625", "siteRegistry": true } ] }, { - "uuid": "4f538981-dd76-42c7-89c6-e36209d8cbb0", - "siteID": 16351, - "address": "64095 Reichert Dale", - "latitude": 57.9585, - "longitude": -119.3271, - "lastUpdated": "2014-07-23", - "city": "South Nyasiafurt", - "region": "Thompson-Okanagan", - "victoriaFile": "26250-20/1833", + "uuid": "f3a0d5b6-bcb9-4188-9069-133f8f5c2ff8", + "siteID": 17966, + "address": "647 Muller Grove", + "latitude": 56.0831, + "longitude": -138.487, + "lastUpdated": "2019-06-06", + "city": "New Marcelofurt", + "region": "Mainland/Southwest", + "victoriaFile": "26250-20/5517", "regionalFile": "N/A", "parcelIDs": [ - 6974862, - 8178939, - 4453334, - 7339380, - 7087646 + 4449795, + 8508451, + 4310945, + 2253770, + 329519 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2015-03-22", - "completed": "2014-09-23", - "initiated": "2018-03-26", - "ministryContact": "SCHOEN KACIE", + "createdAt": "2016-12-24", + "completed": "2016-04-12", + "initiated": "2023-03-25", + "ministryContact": "WEBER BRADFORD", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -44912,23 +70869,23 @@ "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false + "role": "REQUESTED BY", + "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2014-10-16", - "completed": "2023-08-29", - "initiated": "2021-06-22", - "ministryContact": "MURPHY CALLIE", + "createdAt": "2021-06-05", + "completed": "2021-11-23", + "initiated": "2023-08-04", + "ministryContact": "PAUCEK JAEDEN", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -44937,28 +70894,48 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "createdAt": "2023-03-15", + "completed": "2021-08-07", + "initiated": "2021-04-28", + "ministryContact": "ZIEME SHERWOOD", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true } ], "siteRegistry": false }, { - "createdAt": "2016-07-02", - "completed": "2018-12-26", - "initiated": "2015-08-16", - "ministryContact": "PROSACCO SUZANNE", + "createdAt": "2020-07-14", + "completed": "2023-06-04", + "initiated": "2019-07-17", + "ministryContact": "KOVACEK CARROLL", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -44968,28 +70945,28 @@ "notationParticipants": [ { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false + "role": "REQUESTED BY", + "siteRegistry": true } ], "siteRegistry": false @@ -44998,8 +70975,8 @@ "participants": [ { "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2017-03-09", - "startDate": "2019-09-14", + "endDate": "2018-01-20", + "startDate": "2015-10-27", "notes": "", "roles": [ "ORGANIZATION" @@ -45007,68 +70984,194 @@ "siteRegistry": true }, { - "name": "AMET, DOLOR SIT", - "endDate": "2014-11-15", - "startDate": "2020-10-10", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2018-12-13", + "startDate": "2021-10-21", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2018-09-15", - "startDate": "2014-11-27", + "endDate": "2014-02-18", + "startDate": "2018-08-11", "notes": "", "roles": [ "ORGANIZATION" ], "siteRegistry": false + }, + { + "name": "IPSUM", + "endDate": "2017-10-12", + "startDate": "2016-10-20", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + } + ], + "suspectLandUses": [ + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2018-01-15 (described on Site Profile dated 2018-01-15)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2019-08-27 (described on Site Profile dated 2019-08-27)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2021-10-02 (described on Site Profile dated 2021-10-02)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + } + ], + "siteDisclosures": [ + { + "siteRegistry": false, + "dateReceived": "2019-05-15", + "dateCompleted": "2015-05-31", + "dateEntered": "2021-11-26", + "dateRegistrar": "2017-04-20", + "dateLocalAuthorityReceived": "2019-09-26", + "summary": "Repellat maxime explicabo est assumenda repellendus sint impedit.", + "informationUsed": "Aliquam quod repudiandae reprehenderit quidem velit exercitationem numquam totam assumenda.\nDicta eos nobis ullam tenetur neque sit aperiam maxime similique.\nNihil quasi cum distinctio.", + "pastOrPresentOrders": "Numquam iste voluptates culpa et fugit quod cupiditate animi.\nExplicabo soluta explicabo.\nIn cumque atque exercitationem blanditiis quod at harum reiciendis.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + } + ] + } + ], + "activityLog": [ + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "SHANAHAN DAN", + "timestamp": "2019-11-22" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "JOHNSTON MADALYN", + "timestamp": "2022-06-14" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "GUTMANN DOMENICO", + "timestamp": "2019-01-10" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "BERNHARD KENNEDY", + "timestamp": "2017-02-10" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "OSINSKI ANAHI", + "timestamp": "2021-07-22" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "CUMMERATA ELEONORE", + "timestamp": "2023-07-30" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "KLOCKO SPENCER", + "timestamp": "2021-08-21" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "CONN DEVYN", + "timestamp": "2018-06-26" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "CHRISTIANSEN ADELBERT", + "timestamp": "2018-08-15" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "FADEL FREDERIK", + "timestamp": "2019-05-30" } ], "associatedSites": [ { - "dateNoted": "2020-04-12", + "dateNoted": "2015-09-11", "notes": "", - "parcelID": "18190", - "siteID": "17412", - "siteRegistry": false + "parcelID": "16857", + "siteID": "20891", + "siteRegistry": true + }, + { + "dateNoted": "2022-08-07", + "notes": "", + "parcelID": "18206", + "siteID": "19985", + "siteRegistry": true }, { - "dateNoted": "2020-03-20", + "dateNoted": "2022-11-03", "notes": "", - "parcelID": "17749", - "siteID": "17113", + "parcelID": "19904", + "siteID": "16850", "siteRegistry": false } ] }, { - "uuid": "6500d8db-02ae-451e-95ab-cbb3870e1ade", - "siteID": 18047, - "address": "40818 Watsica Trail", - "latitude": 58.2308, - "longitude": -127.6677, - "lastUpdated": "2022-01-24", - "city": "Lindafield", - "region": "Mainland/Southwest", - "victoriaFile": "26250-20/3132", + "uuid": "a5a2397d-9924-45f6-bb81-e238f5130386", + "siteID": 19559, + "address": "251 Marvin Knoll", + "latitude": 50.1096, + "longitude": -130.1715, + "lastUpdated": "2023-08-19", + "city": "Westfield", + "region": "Vancouver Island/Coast", + "victoriaFile": "26250-20/18538", "regionalFile": "N/A", "parcelIDs": [ - 1909427, - 8445083, - 6439060, - 5111760, - 313189 + 3357801, + 5979228, + 3451422, + 490526, + 6848972 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2021-04-29", - "completed": "2020-02-17", - "initiated": "2020-05-22", - "ministryContact": "GERHOLD ELIAS", + "createdAt": "2020-05-30", + "completed": "2019-09-02", + "initiated": "2017-04-18", + "ministryContact": "AUFDERHAR WENDY", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -45082,53 +71185,33 @@ "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - } - ], - "siteRegistry": true - }, - { - "createdAt": "2018-03-06", - "completed": "2020-12-25", - "initiated": "2018-12-15", - "ministryContact": "VANDERVORT KATELIN", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ { "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false } ], "siteRegistry": false }, { - "createdAt": "2019-03-24", - "completed": "2022-05-03", - "initiated": "2021-02-24", - "ministryContact": "LESCH SANFORD", + "createdAt": "2016-03-29", + "completed": "2020-05-23", + "initiated": "2023-08-16", + "ministryContact": "BOEHM NEWTON", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -45137,53 +71220,28 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - } - ], - "siteRegistry": true - }, - { - "createdAt": "2017-01-22", - "completed": "2018-04-27", - "initiated": "2023-07-04", - "ministryContact": "GUTMANN VIOLETTE", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ { "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true } ], "siteRegistry": true }, { - "createdAt": "2014-10-25", - "completed": "2023-05-11", - "initiated": "2014-10-23", - "ministryContact": "ZIEME CANDICE", + "createdAt": "2017-05-16", + "completed": "2017-07-05", + "initiated": "2023-08-31", + "ministryContact": "SPORER FLAVIE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -45196,15 +71254,10 @@ "role": "REQUESTED BY", "siteRegistry": true }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false + "role": "SUBMITTED BY", + "siteRegistry": true } ], "siteRegistry": false @@ -45213,18 +71266,18 @@ "participants": [ { "name": "IPSUM", - "endDate": "2015-11-25", - "startDate": "2022-12-17", + "endDate": "2019-07-19", + "startDate": "2023-03-12", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": false + "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2021-03-28", - "startDate": "2022-01-19", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2018-03-14", + "startDate": "2014-01-26", "notes": "", "roles": [ "EMPLOYEE" @@ -45232,58 +71285,170 @@ "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2021-04-16", - "startDate": "2019-05-26", + "name": "IPSUM", + "endDate": "2021-12-04", + "startDate": "2023-08-03", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "name": "AMET, DOLOR SIT", + "endDate": "2021-09-21", + "startDate": "2017-11-27", "notes": "", "roles": [ "ORGANIZATION" ], "siteRegistry": false + }, + { + "name": "AMET, DOLOR SIT", + "endDate": "2021-10-12", + "startDate": "2016-10-11", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + } + ], + "suspectLandUses": [ + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2016-03-01 (described on Site Profile dated 2016-03-01)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2015-03-09 (described on Site Profile dated 2015-03-09)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2015-03-24 (described on Site Profile dated 2015-03-24)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2019-05-10 (described on Site Profile dated 2019-05-10)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + } + ], + "siteDisclosures": [ + { + "siteRegistry": false, + "dateReceived": "2014-09-22", + "dateCompleted": "2013-11-12", + "dateEntered": "2014-10-24", + "dateRegistrar": "2016-11-20", + "dateLocalAuthorityReceived": "2014-01-17", + "summary": "Commodi aspernatur expedita.\nHarum molestiae excepturi mollitia autem ratione ducimus.", + "informationUsed": "Nulla maiores optio repudiandae nostrum.\nRerum tempore error iste suscipit fugiat incidunt in ducimus id.\nFugiat mollitia unde perspiciatis delectus impedit.\nSapiente quasi expedita fuga aliquam earum.\nOdio asperiores eos molestiae molestias vitae sunt maxime maiores animi.", + "pastOrPresentOrders": "Veritatis dolorem optio assumenda nam quae nisi corrupti rem repellat.\nEa repellendus incidunt harum molestiae minus quae cumque autem asperiores.\nIste possimus consequuntur in consectetur maxime laudantium mollitia.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + } + ] + } + ], + "activityLog": [ + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "ABSHIRE OTTIS", + "timestamp": "2015-05-29" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "LOWE GREEN", + "timestamp": "2019-02-24" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "REINGER ABRAHAM", + "timestamp": "2017-02-14" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "DAUGHERTY NOLAN", + "timestamp": "2016-04-05" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "ROGAHN CECILE", + "timestamp": "2015-08-25" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "HIRTHE MARIANA", + "timestamp": "2014-08-14" } ], "associatedSites": [ { - "dateNoted": "2022-11-02", + "dateNoted": "2023-02-20", "notes": "", - "parcelID": "20635", - "siteID": "19039", + "parcelID": "15938", + "siteID": "16386", "siteRegistry": true }, { - "dateNoted": "2019-07-04", + "dateNoted": "2022-03-18", + "notes": "", + "parcelID": "20851", + "siteID": "15498", + "siteRegistry": false + }, + { + "dateNoted": "2021-09-09", "notes": "", - "parcelID": "18847", - "siteID": "19872", + "parcelID": "17514", + "siteID": "17083", "siteRegistry": false } ] }, { - "uuid": "9051a29e-65f3-434e-a7c3-68a93e286b88", - "siteID": 16723, - "address": "990 Allene Loaf", - "latitude": 50, - "longitude": -131.8873, - "lastUpdated": "2018-05-06", - "city": "Stehrton", - "region": "Kootenay", - "victoriaFile": "26250-20/18775", + "uuid": "db5981c4-068e-4e6d-85d5-78a75acecc73", + "siteID": 15498, + "address": "548 Brando Meadows", + "latitude": 50.9383, + "longitude": -132.9057, + "lastUpdated": "2014-11-18", + "city": "Port Landenmouth", + "region": "Vancouver Island/Coast", + "victoriaFile": "26250-20/7097", "regionalFile": "N/A", "parcelIDs": [ - 8931160, - 6905948, - 4451476, - 1751599, - 8193466 + 2232676, + 6452185, + 3859856, + 9800736, + 882725 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2015-06-03", - "completed": "2014-08-18", - "initiated": "2016-03-11", - "ministryContact": "HAND KAVON", + "createdAt": "2016-09-21", + "completed": "2023-02-15", + "initiated": "2023-09-02", + "ministryContact": "SIPES DEWAYNE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -45293,43 +71458,13 @@ "notationParticipants": [ { "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - } - ], - "siteRegistry": false - }, - { - "createdAt": "2022-01-04", - "completed": "2019-01-05", - "initiated": "2018-05-25", - "ministryContact": "SCHINNER DARIO", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", @@ -45338,11 +71473,11 @@ }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true + "role": "SUBMITTED BY", + "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true } @@ -45350,10 +71485,10 @@ "siteRegistry": true }, { - "createdAt": "2015-05-25", - "completed": "2019-12-19", - "initiated": "2017-10-21", - "ministryContact": "JAKUBOWSKI TAYLOR", + "createdAt": "2018-06-13", + "completed": "2022-02-24", + "initiated": "2019-12-03", + "ministryContact": "UPTON MOHAMMED", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -45362,28 +71497,23 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2016-12-26", - "completed": "2021-06-29", - "initiated": "2014-08-18", - "ministryContact": "BUCKRIDGE-LARSON EDWARD", + "createdAt": "2017-05-22", + "completed": "2014-09-20", + "initiated": "2018-10-18", + "ministryContact": "FAHEY DORIS", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -45391,35 +71521,30 @@ "" ], "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true } ], "participants": [ { "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2018-04-03", - "startDate": "2015-12-14", + "endDate": "2015-07-25", + "startDate": "2016-09-17", "notes": "", "roles": [ "EMPLOYEE" @@ -45427,19 +71552,19 @@ "siteRegistry": true }, { - "name": "IPSUM", - "endDate": "2014-01-31", - "startDate": "2014-02-18", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2021-11-29", + "startDate": "2016-07-27", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": true + "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2022-06-29", - "startDate": "2018-04-10", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2021-03-15", + "startDate": "2018-07-26", "notes": "", "roles": [ "EMPLOYEE" @@ -45448,74 +71573,217 @@ }, { "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2021-07-12", - "startDate": "2023-02-16", + "endDate": "2016-08-22", + "startDate": "2023-06-15", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false + } + ], + "suspectLandUses": [ + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2019-11-30 (described on Site Profile dated 2019-11-30)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "name": "AMET, DOLOR SIT", - "endDate": "2017-09-30", - "startDate": "2015-07-15", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": true + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2016-07-09 (described on Site Profile dated 2016-07-09)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2020-09-27 (described on Site Profile dated 2020-09-27)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], - "associatedSites": [ + "siteDisclosures": [ { - "dateNoted": "2018-08-22", - "notes": "", - "parcelID": "15709", - "siteID": "15656", - "siteRegistry": true + "siteRegistry": false, + "dateReceived": "2020-04-14", + "dateCompleted": "2019-03-11", + "dateEntered": "2014-10-05", + "dateRegistrar": "2022-09-20", + "dateLocalAuthorityReceived": "2022-03-19", + "summary": "Perferendis nostrum doloremque veniam exercitationem.\nFuga recusandae labore vero maxime quaerat sapiente.", + "informationUsed": "Debitis veniam error excepturi quam dolor.\nReiciendis autem odio nam tenetur soluta illo ipsam.\nConsectetur voluptatum maiores quae rerum neque.", + "pastOrPresentOrders": "Occaecati aliquam quidem sequi ratione quaerat officia minima.\nTemporibus provident reprehenderit occaecati.\nSunt nesciunt inventore maxime ipsa.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + } + ] }, { - "dateNoted": "2022-02-15", - "notes": "", - "parcelID": "15891", - "siteID": "16793", - "siteRegistry": true + "siteRegistry": true, + "dateReceived": "2022-03-22", + "dateCompleted": "2020-10-16", + "dateEntered": "2023-09-25", + "dateRegistrar": "2023-07-13", + "dateLocalAuthorityReceived": "2022-07-11", + "summary": "Provident doloribus velit repudiandae.\nTemporibus iste aperiam consectetur laborum.", + "informationUsed": "Fugit deleniti sapiente quis explicabo ullam atque exercitationem facere modi.\nModi nisi quasi tenetur ipsa quaerat voluptatem laborum consequuntur velit.\nExercitationem quia veniam veniam possimus id vitae voluptas.\nQuae eos dolores expedita suscipit.\nPariatur eaque et sunt non explicabo.", + "pastOrPresentOrders": "Cupiditate quisquam atque fugiat voluptates.\nDistinctio quaerat nihil dignissimos blanditiis minima delectus voluptatibus debitis.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + } + ] + } + ], + "activityLog": [ + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "HALVORSON SUZANNE", + "timestamp": "2015-07-07" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "KREIGER CAROL", + "timestamp": "2019-12-01" }, { - "dateNoted": "2018-05-13", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "LINDGREN RANDALL", + "timestamp": "2015-05-12" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "ROWE REECE", + "timestamp": "2019-05-24" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "WILLMS JOHANN", + "timestamp": "2015-06-24" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "BEER LITZY", + "timestamp": "2015-12-31" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "WELCH JENNIE", + "timestamp": "2022-05-08" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "SCHULIST ANAIS", + "timestamp": "2017-01-30" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "KUPHAL CONRAD", + "timestamp": "2016-01-14" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "MOSCISKI JAMIL", + "timestamp": "2016-06-01" + } + ], + "associatedSites": [ + { + "dateNoted": "2018-12-11", "notes": "", - "parcelID": "20937", - "siteID": "18838", + "parcelID": "20972", + "siteID": "20361", + "siteRegistry": false + } + ] + }, + { + "uuid": "05accb93-87c3-41df-bcc9-a055c83b579f", + "siteID": 17249, + "address": "750 Anais Throughway", + "latitude": 48.2185, + "longitude": -135.3625, + "lastUpdated": "2014-05-10", + "city": "Dannytown", + "region": " North Coast", + "victoriaFile": "26250-20/18730", + "regionalFile": "N/A", + "parcelIDs": [ + 1603815, + 8280441, + 1409805, + 579300, + 4713160 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2023-02-22", + "completed": "2019-11-06", + "initiated": "2018-08-03", + "ministryContact": "QUIGLEY RYLAN", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], "siteRegistry": false - } - ] - }, - { - "uuid": "79729799-f4c9-41aa-8965-e9c7136e2d13", - "siteID": 20366, - "address": "918 Ramona Radial", - "latitude": 51.166, - "longitude": -120.2894, - "lastUpdated": "2017-05-05", - "city": "West Maybell", - "region": " North Coast", - "victoriaFile": "26250-20/5979", - "regionalFile": "N/A", - "parcelIDs": [ - 7665543, - 829156, - 6331600, - 9877698, - 2676854 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ + }, { - "createdAt": "2021-11-23", - "completed": "2019-09-14", - "initiated": "2014-01-20", - "ministryContact": "MCCLURE BILL", + "createdAt": "2014-11-25", + "completed": "2013-12-21", + "initiated": "2018-12-15", + "ministryContact": "YOST CAROLINE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -45529,23 +71797,33 @@ "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2017-04-29", - "completed": "2013-10-24", - "initiated": "2018-01-23", - "ministryContact": "MARKS TILLMAN", + "createdAt": "2013-10-27", + "completed": "2019-03-15", + "initiated": "2023-07-28", + "ministryContact": "KOELPIN VELMA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -45554,8 +71832,23 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": false }, { @@ -45564,34 +71857,34 @@ "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false } ], "participants": [ { - "name": "IPSUM", - "endDate": "2015-12-02", - "startDate": "2017-10-02", + "name": "AMET, DOLOR SIT", + "endDate": "2015-03-03", + "startDate": "2019-12-26", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": true }, { - "name": "IPSUM", - "endDate": "2021-04-03", - "startDate": "2022-08-12", + "name": "AMET, DOLOR SIT", + "endDate": "2021-02-07", + "startDate": "2019-09-10", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": false + "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2019-02-12", - "startDate": "2020-06-21", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2022-03-14", + "startDate": "2018-04-25", "notes": "", "roles": [ "ORGANIZATION" @@ -45599,220 +71892,204 @@ "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2020-03-09", - "startDate": "2019-12-04", + "name": "AMET, DOLOR SIT", + "endDate": "2023-03-22", + "startDate": "2021-08-23", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": true + "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2016-07-03", - "startDate": "2019-12-13", + "endDate": "2015-05-07", + "startDate": "2017-11-16", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": true } ], - "associatedSites": [ + "suspectLandUses": [ { - "dateNoted": "2015-02-28", - "notes": "", - "parcelID": "16167", - "siteID": "17935", - "siteRegistry": false + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2018-06-10 (described on Site Profile dated 2018-06-10)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "dateNoted": "2021-12-12", - "notes": "", - "parcelID": "17933", - "siteID": "20915", - "siteRegistry": true + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2021-06-22 (described on Site Profile dated 2021-06-22)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2023-03-12 (described on Site Profile dated 2023-03-12)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2017-12-17 (described on Site Profile dated 2017-12-17)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } - ] - }, - { - "uuid": "b90f334a-7729-4a83-987a-cafae5a01953", - "siteID": 20443, - "address": "27757 Bayer Throughway", - "latitude": 55.6979, - "longitude": -128.2715, - "lastUpdated": "2015-11-15", - "city": "East Brigittestad", - "region": "Thompson-Okanagan", - "victoriaFile": "26250-20/11279", - "regionalFile": "N/A", - "parcelIDs": [ - 4983067, - 725212, - 9025726, - 6418320, - 698857 ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ + "siteDisclosures": [ { - "createdAt": "2023-08-14", - "completed": "2019-01-03", - "initiated": "2016-01-14", - "ministryContact": "YUNDT DRAKE", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ + "siteRegistry": false, + "dateReceived": "2021-08-05", + "dateCompleted": "2022-05-03", + "dateEntered": "2021-07-12", + "dateRegistrar": "2019-08-28", + "dateLocalAuthorityReceived": "2016-12-19", + "summary": "Illo distinctio earum.", + "informationUsed": "Laborum id corrupti repellendus beatae neque assumenda non natus.\nQuidem explicabo asperiores perferendis magni tempore.\nEa accusantium est quasi ab nostrum.\nEarum quis quod quisquam accusamus neque.", + "pastOrPresentOrders": "Cum quis ratione facere corrupti sit.", + "commercialAndIndustrialPurposes": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false } - ], - "siteRegistry": false + ] }, { - "createdAt": "2021-10-13", - "completed": "2014-02-03", - "initiated": "2014-04-24", - "ministryContact": "BODE EMMY", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ + "siteRegistry": false, + "dateReceived": "2015-07-18", + "dateCompleted": "2022-12-08", + "dateEntered": "2015-10-20", + "dateRegistrar": "2022-06-02", + "dateLocalAuthorityReceived": "2019-09-18", + "summary": "Incidunt cupiditate inventore dolorem aliquam quo.\nUllam voluptatum architecto minus quis facilis reiciendis.\nEaque necessitatibus autem maiores explicabo officia.", + "informationUsed": "Eos sequi atque dolor minus molestiae eum accusamus autem blanditiis.\nVeritatis occaecati expedita molestiae cumque praesentium nostrum.\nEarum facere quod blanditiis amet quas reiciendis maxime rerum.\nUt quos temporibus ratione voluptatum laborum nemo unde.", + "pastOrPresentOrders": "Reprehenderit sit quaerat quam non autem.", + "commercialAndIndustrialPurposes": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false } - ], - "siteRegistry": true + ] } ], - "participants": [ + "activityLog": [ { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2021-01-04", - "startDate": "2023-07-21", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": false + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "VANDERVORT PAXTON", + "timestamp": "2018-08-09" }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2022-08-01", - "startDate": "2017-01-06", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": true + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "SHIELDS CARMELO", + "timestamp": "2023-03-19" }, { - "name": "AMET, DOLOR SIT", - "endDate": "2017-07-15", - "startDate": "2018-09-16", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": false + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "GREEN-JAST ALENA", + "timestamp": "2019-12-12" }, { - "name": "AMET, DOLOR SIT", - "endDate": "2020-03-06", - "startDate": "2015-10-08", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": false + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "MILLER ZORA", + "timestamp": "2014-10-10" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "BOGAN GABE", + "timestamp": "2018-10-16" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "FRITSCH SINCERE", + "timestamp": "2017-07-25" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "GREENHOLT KODY", + "timestamp": "2018-07-07" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "WITTING FELICITY", + "timestamp": "2020-12-29" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "STRACKE MARCIA", + "timestamp": "2017-03-24" } ], "associatedSites": [ { - "dateNoted": "2020-11-27", + "dateNoted": "2015-11-10", "notes": "", - "parcelID": "19841", - "siteID": "17050", - "siteRegistry": true + "parcelID": "18105", + "siteID": "17155", + "siteRegistry": false }, { - "dateNoted": "2014-12-10", + "dateNoted": "2020-07-04", "notes": "", - "parcelID": "16402", - "siteID": "18047", + "parcelID": "16182", + "siteID": "18736", "siteRegistry": true - }, - { - "dateNoted": "2015-05-15", - "notes": "", - "parcelID": "18540", - "siteID": "17275", - "siteRegistry": false } ] }, { - "uuid": "92ffb73b-4240-498e-92d8-3283384cd07d", - "siteID": 15792, - "address": "2626 Kutch Camp", - "latitude": 48.5774, - "longitude": -127.9645, - "lastUpdated": "2022-01-18", - "city": "West Lenniechester", - "region": "Mainland/Southwest", - "victoriaFile": "26250-20/8813", + "uuid": "6572c61e-53fa-4ea0-bbbf-586c73400942", + "siteID": 20367, + "address": "7807 Okuneva Wells", + "latitude": 50.5723, + "longitude": -124.9287, + "lastUpdated": "2017-06-11", + "city": "Robinfurt", + "region": "Cariboo", + "victoriaFile": "26250-20/1065", "regionalFile": "N/A", "parcelIDs": [ - 8731704, - 8598487, - 5966563, - 1904361, - 2867658 + 2709522, + 2156668, + 9456705, + 9833686, + 2440020 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2021-03-26", - "completed": "2014-12-14", - "initiated": "2023-03-06", - "ministryContact": "KOVACEK QUINTON", + "createdAt": "2017-11-19", + "completed": "2021-05-23", + "initiated": "2022-03-15", + "ministryContact": "FADEL MARTIN", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -45821,63 +72098,28 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", "siteRegistry": false }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - } - ], - "siteRegistry": false - }, - { - "createdAt": "2016-12-21", - "completed": "2022-10-28", - "initiated": "2020-03-31", - "ministryContact": "DARE CORRINE", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false } ], "siteRegistry": true }, { - "createdAt": "2022-11-21", - "completed": "2016-02-10", - "initiated": "2016-06-09", - "ministryContact": "STOKES JOANA", + "createdAt": "2018-01-14", + "completed": "2018-02-27", + "initiated": "2015-04-27", + "ministryContact": "NITZSCHE NOLAN", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -45888,36 +72130,21 @@ { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", "siteRegistry": false }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, { "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2020-12-03", - "completed": "2023-05-26", - "initiated": "2014-01-31", - "ministryContact": "ROSENBAUM ERNESTO", + "createdAt": "2020-09-23", + "completed": "2020-09-12", + "initiated": "2021-07-06", + "ministryContact": "ZBONCAK FORD", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -45926,33 +72153,33 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": true } ], "siteRegistry": true }, { - "createdAt": "2018-10-14", - "completed": "2019-03-26", - "initiated": "2023-06-15", - "ministryContact": "O'CONNER BONITA", + "createdAt": "2022-10-31", + "completed": "2016-12-03", + "initiated": "2017-05-07", + "ministryContact": "YUNDT TREVER", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -45960,23 +72187,18 @@ "" ], "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false }, @@ -45991,95 +72213,176 @@ ], "participants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2022-07-25", - "startDate": "2022-09-13", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2023-06-21", + "startDate": "2020-09-13", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": false + "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2022-10-23", - "startDate": "2019-06-15", + "name": "IPSUM", + "endDate": "2019-09-23", + "startDate": "2022-03-23", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": true }, { - "name": "IPSUM", - "endDate": "2014-05-02", - "startDate": "2021-06-05", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2016-04-11", + "startDate": "2020-02-03", "notes": "", "roles": [ "ORGANIZATION" ], "siteRegistry": false + } + ], + "suspectLandUses": [ + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2022-06-03 (described on Site Profile dated 2022-06-03)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "name": "AMET, DOLOR SIT", - "endDate": "2018-10-29", - "startDate": "2020-10-17", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": true + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2019-10-27 (described on Site Profile dated 2019-10-27)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2019-08-25 (described on Site Profile dated 2019-08-25)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2015-10-05 (described on Site Profile dated 2015-10-05)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + } + ], + "siteDisclosures": [ + { + "siteRegistry": false, + "dateReceived": "2022-10-11", + "dateCompleted": "2016-07-14", + "dateEntered": "2022-06-08", + "dateRegistrar": "2020-06-25", + "dateLocalAuthorityReceived": "2014-08-16", + "summary": "Impedit et expedita exercitationem corrupti ratione.\nMinus dolores neque sit adipisci id.", + "informationUsed": "Enim error in sunt odio.\nDicta ipsa asperiores vitae impedit dolorem totam tempora.\nDolor fugiat minus.", + "pastOrPresentOrders": "Similique aliquid modi quaerat itaque.\nSuscipit facere magni.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + } + ] + } + ], + "activityLog": [ + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "D'AMORE ANNETTA", + "timestamp": "2015-03-23" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "DICKENS ANISSA", + "timestamp": "2016-01-22" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "BARROWS JOSE", + "timestamp": "2022-01-17" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "ERDMAN LUELLA", + "timestamp": "2017-09-08" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "WINTHEISER ABBIGAIL", + "timestamp": "2022-12-31" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "BAHRINGER CHASITY", + "timestamp": "2019-03-25" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "CROOKS LAMBERT", + "timestamp": "2015-11-27" } ], "associatedSites": [ { - "dateNoted": "2022-10-16", + "dateNoted": "2021-07-02", "notes": "", - "parcelID": "17804", - "siteID": "20443", - "siteRegistry": false + "parcelID": "16666", + "siteID": "18839", + "siteRegistry": true }, { - "dateNoted": "2018-12-01", + "dateNoted": "2020-07-15", "notes": "", - "parcelID": "20297", - "siteID": "16725", + "parcelID": "19313", + "siteID": "16632", "siteRegistry": true }, { - "dateNoted": "2022-11-02", + "dateNoted": "2022-07-01", "notes": "", - "parcelID": "19767", - "siteID": "19762", + "parcelID": "20494", + "siteID": "15332", "siteRegistry": true } ] }, { - "uuid": "acb16f30-19d9-4b15-873f-aa85ed8e2e13", - "siteID": 16721, - "address": "2616 Rippin Turnpike", - "latitude": 56.9949, - "longitude": -122.8935, - "lastUpdated": "2023-03-03", - "city": "Tonawanda", - "region": "Cariboo", - "victoriaFile": "26250-20/10527", + "uuid": "e0e540f4-3c4b-46cb-bd00-0374b4c28286", + "siteID": 18316, + "address": "60408 DuBuque Bridge", + "latitude": 56.53, + "longitude": -138.3596, + "lastUpdated": "2015-09-16", + "city": "Elviebury", + "region": "Mainland/Southwest", + "victoriaFile": "26250-20/7338", "regionalFile": "N/A", "parcelIDs": [ - 9232651, - 1368929, - 9326830, - 2138805, - 4784543 + 2822748, + 424127, + 8776950, + 2315707, + 3396593 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2023-05-11", - "completed": "2015-04-10", - "initiated": "2022-08-06", - "ministryContact": "BLOCK SHEA", + "createdAt": "2020-03-02", + "completed": "2017-03-14", + "initiated": "2014-01-29", + "ministryContact": "FAHEY CARLIE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -46088,28 +72391,28 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false } ], "siteRegistry": false }, { - "createdAt": "2019-05-26", - "completed": "2018-11-25", - "initiated": "2019-01-08", - "ministryContact": "VEUM JANY", + "createdAt": "2020-07-14", + "completed": "2023-08-28", + "initiated": "2021-06-17", + "ministryContact": "MCLAUGHLIN DARREL", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -46119,92 +72422,32 @@ "notationParticipants": [ { "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", "siteRegistry": true } ], "siteRegistry": false - } - ], - "participants": [ - { - "name": "IPSUM", - "endDate": "2020-04-11", - "startDate": "2016-04-19", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2020-12-02", - "startDate": "2021-12-21", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": true - } - ], - "associatedSites": [ - { - "dateNoted": "2023-05-15", - "notes": "", - "parcelID": "15798", - "siteID": "20930", - "siteRegistry": false }, { - "dateNoted": "2015-01-09", - "notes": "", - "parcelID": "20782", - "siteID": "19773", - "siteRegistry": false - } - ] - }, - { - "uuid": "3e4c92d4-ef2f-44aa-bc9d-875f59f550b0", - "siteID": 20858, - "address": "8766 Ondricka Light", - "latitude": 54.7224, - "longitude": -134.3966, - "lastUpdated": "2017-11-11", - "city": "Tysonside", - "region": " North Coast", - "victoriaFile": "26250-20/16235", - "regionalFile": "N/A", - "parcelIDs": [ - 8441705, - 8565745, - 8512999, - 7910527, - 2978169 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2023-04-21", - "completed": "2015-02-20", - "initiated": "2019-10-11", - "ministryContact": "VONRUEDEN DAGMAR", + "createdAt": "2014-11-17", + "completed": "2014-03-23", + "initiated": "2018-12-17", + "ministryContact": "RATKE ABDIEL", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -46213,44 +72456,29 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false - } - ], - "siteRegistry": false - }, - { - "createdAt": "2022-01-09", - "completed": "2017-09-29", - "initiated": "2014-06-09", - "ministryContact": "ROBERTS BRAD", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ + }, { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true } ], "siteRegistry": true @@ -46258,9 +72486,9 @@ ], "participants": [ { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2017-11-06", - "startDate": "2017-03-22", + "name": "AMET, DOLOR SIT", + "endDate": "2022-03-12", + "startDate": "2013-12-20", "notes": "", "roles": [ "EMPLOYEE" @@ -46268,88 +72496,172 @@ "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2017-07-06", - "startDate": "2022-09-27", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2015-03-17", + "startDate": "2016-04-29", "notes": "", "roles": [ "ORGANIZATION" ], "siteRegistry": false + } + ], + "suspectLandUses": [ + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2022-04-01 (described on Site Profile dated 2022-04-01)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "name": "AMET, DOLOR SIT", - "endDate": "2015-03-17", - "startDate": "2017-05-21", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": true + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2015-04-17 (described on Site Profile dated 2015-04-17)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "name": "IPSUM", - "endDate": "2015-08-11", - "startDate": "2014-04-14", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": true + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2017-09-08 (described on Site Profile dated 2017-09-08)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + } + ], + "siteDisclosures": [ + { + "siteRegistry": false, + "dateReceived": "2022-05-14", + "dateCompleted": "2015-11-11", + "dateEntered": "2021-11-09", + "dateRegistrar": "2018-08-09", + "dateLocalAuthorityReceived": "2021-02-26", + "summary": "Laborum voluptatibus voluptates nisi cumque consectetur reiciendis eos.", + "informationUsed": "Soluta iste ipsam.\nCommodi debitis expedita perspiciatis dignissimos.\nIllum facere aspernatur repellendus reprehenderit reiciendis.\nEsse numquam aperiam.\nDebitis sequi dolorum accusamus culpa ea.", + "pastOrPresentOrders": "Vel cupiditate quod deleniti nesciunt quas nostrum iusto.\nIpsam eligendi distinctio eaque nostrum.\nAutem quisquam pariatur quam animi nihil ea.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + } + ] + } + ], + "activityLog": [ + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "HILPERT RAMON", + "timestamp": "2021-09-23" }, { - "name": "IPSUM", - "endDate": "2022-01-25", - "startDate": "2015-09-04", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": false + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "DIETRICH ONA", + "timestamp": "2017-11-08" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "SAWAYN KALEIGH", + "timestamp": "2017-08-25" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "WEBER JADON", + "timestamp": "2014-07-14" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "SCHMELER MARION", + "timestamp": "2015-02-14" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "ZIEMANN LAFAYETTE", + "timestamp": "2018-04-07" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "TREUTEL-LEMKE SUSIE", + "timestamp": "2016-05-21" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "CORMIER SOPHIA", + "timestamp": "2014-12-15" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "BERGSTROM DAVONTE", + "timestamp": "2015-07-11" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "KILBACK AMELIE", + "timestamp": "2017-06-25" } ], "associatedSites": [ { - "dateNoted": "2017-10-21", + "dateNoted": "2017-03-01", "notes": "", - "parcelID": "18810", - "siteID": "18093", - "siteRegistry": false + "parcelID": "17324", + "siteID": "20804", + "siteRegistry": true }, { - "dateNoted": "2021-06-22", + "dateNoted": "2014-12-11", "notes": "", - "parcelID": "19034", - "siteID": "17976", + "parcelID": "17443", + "siteID": "16418", "siteRegistry": false } ] }, { - "uuid": "cd017f44-6ed2-436d-99c2-e19ef583a8e5", - "siteID": 20162, - "address": "4354 Pablo Mountains", - "latitude": 56.1048, - "longitude": -138.8038, - "lastUpdated": "2021-12-02", - "city": "Missouriland", - "region": "Kootenay", - "victoriaFile": "26250-20/4030", + "uuid": "17b61022-d1c1-410c-ae32-825dde597b7a", + "siteID": 18352, + "address": "2529 Lucinda Bypass", + "latitude": 51.4711, + "longitude": -133.7314, + "lastUpdated": "2019-06-29", + "city": "West Codybury", + "region": "Vancouver Island/Coast", + "victoriaFile": "26250-20/13564", "regionalFile": "N/A", "parcelIDs": [ - 2808786, - 6749208, - 4539734, - 5912840, - 7292684 + 4063114, + 5621136, + 4003754, + 5281928, + 3801597 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2021-01-04", - "completed": "2015-05-16", - "initiated": "2017-01-19", - "ministryContact": "WAELCHI-LIND OBIE", + "createdAt": "2023-04-04", + "completed": "2018-11-10", + "initiated": "2018-11-02", + "ministryContact": "WELCH AUBREY", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -46359,32 +72671,62 @@ "notationParticipants": [ { "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "createdAt": "2016-05-16", + "completed": "2019-07-27", + "initiated": "2021-11-27", + "ministryContact": "CUMMINGS-VON SAIGE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2021-08-24", - "completed": "2017-07-17", - "initiated": "2020-05-22", - "ministryContact": "LEFFLER THERESA", + "createdAt": "2017-08-12", + "completed": "2018-12-07", + "initiated": "2016-09-18", + "ministryContact": "LARSON JETTIE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -46393,12 +72735,7 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false }, @@ -46406,11 +72743,6 @@ "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true } ], "siteRegistry": true @@ -46419,77 +72751,203 @@ "participants": [ { "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2013-10-20", - "startDate": "2013-12-07", + "endDate": "2019-06-11", + "startDate": "2015-02-14", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": true }, { - "name": "AMET, DOLOR SIT", - "endDate": "2019-03-20", - "startDate": "2018-07-23", + "name": "IPSUM", + "endDate": "2014-01-21", + "startDate": "2022-02-02", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2016-05-13", - "startDate": "2020-04-27", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2014-10-06", + "startDate": "2020-10-19", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": true } ], + "suspectLandUses": [ + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2019-11-16 (described on Site Profile dated 2019-11-16)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2022-01-25 (described on Site Profile dated 2022-01-25)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + } + ], + "siteDisclosures": [ + { + "siteRegistry": true, + "dateReceived": "2017-02-16", + "dateCompleted": "2021-01-30", + "dateEntered": "2015-08-10", + "dateRegistrar": "2015-02-17", + "dateLocalAuthorityReceived": "2021-09-21", + "summary": "Maiores at sequi delectus.", + "informationUsed": "Vero minus excepturi quidem porro.\nAliquid et exercitationem optio at accusantium beatae dolores.\nVelit aut a ipsum nobis consectetur ad ratione.", + "pastOrPresentOrders": "Provident exercitationem quia enim.\nDistinctio inventore repudiandae amet accusamus mollitia quis.\nEius impedit dolores suscipit vel.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + } + ] + }, + { + "siteRegistry": false, + "dateReceived": "2018-06-11", + "dateCompleted": "2015-04-17", + "dateEntered": "2020-04-13", + "dateRegistrar": "2020-05-11", + "dateLocalAuthorityReceived": "2023-06-23", + "summary": "Ea id quas ut.\nSuscipit nemo non accusamus nulla magnam ipsa quo ea architecto.\nIpsam quisquam magnam excepturi.", + "informationUsed": "Soluta iste harum alias beatae aspernatur.\nNisi nostrum eveniet earum hic neque expedita optio nesciunt exercitationem.\nSapiente in hic quo rerum similique.", + "pastOrPresentOrders": "Fugit id fugit incidunt necessitatibus sint neque.\nEligendi labore modi beatae sunt.\nLibero possimus quisquam repellendus sed debitis non sed modi.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + } + ] + } + ], + "activityLog": [ + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "KIEHN SHANON", + "timestamp": "2022-11-06" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "HOEGER JAMISON", + "timestamp": "2017-04-02" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "HERMISTON DESHAUN", + "timestamp": "2018-04-05" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "ARMSTRONG ERIK", + "timestamp": "2020-11-22" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "LITTEL-HILLL HENRI", + "timestamp": "2019-07-28" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "PAUCEK ANNABEL", + "timestamp": "2014-04-22" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "O'CONNELL VENA", + "timestamp": "2018-12-23" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "STEUBER HAILIE", + "timestamp": "2020-03-17" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "KULAS MEKHI", + "timestamp": "2020-03-15" + } + ], "associatedSites": [ { - "dateNoted": "2014-09-15", + "dateNoted": "2021-04-06", "notes": "", - "parcelID": "18322", - "siteID": "18652", + "parcelID": "19516", + "siteID": "17036", "siteRegistry": true }, { - "dateNoted": "2016-07-01", + "dateNoted": "2016-10-31", "notes": "", - "parcelID": "18973", - "siteID": "18135", - "siteRegistry": true + "parcelID": "19786", + "siteID": "20671", + "siteRegistry": false } ] }, { - "uuid": "2b6b2337-53d5-4fa5-8c94-a977fd28d3a6", - "siteID": 17226, - "address": "1752 Santa Meadows", - "latitude": 49.883, - "longitude": -136.1977, - "lastUpdated": "2014-07-21", - "city": "Fort Tyson", - "region": "Thompson-Okanagan", - "victoriaFile": "26250-20/17839", + "uuid": "e13d1f8b-34ce-4d74-8c00-11d99a3128c3", + "siteID": 17218, + "address": "506 Cassin Parkways", + "latitude": 53.4722, + "longitude": -132.1537, + "lastUpdated": "2022-01-27", + "city": "Deannabury", + "region": "Kootenay", + "victoriaFile": "26250-20/8508", "regionalFile": "N/A", "parcelIDs": [ - 6014355, - 228964, - 9997210, - 1480713, - 4542030 + 6407218, + 2672147, + 3645084, + 2398854, + 9948122 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2015-10-11", - "completed": "2016-03-30", - "initiated": "2015-09-26", - "ministryContact": "MANTE SELENA", + "createdAt": "2019-05-04", + "completed": "2014-04-22", + "initiated": "2015-10-05", + "ministryContact": "HUELS DENIS", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -46497,21 +72955,6 @@ "" ], "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", @@ -46519,17 +72962,17 @@ }, { "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true } ], "siteRegistry": true }, { - "createdAt": "2018-07-08", - "completed": "2016-12-12", - "initiated": "2016-02-01", - "ministryContact": "CONROY MARIANA", + "createdAt": "2021-01-16", + "completed": "2018-09-11", + "initiated": "2017-10-14", + "ministryContact": "ROLFSON OSVALDO", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -46540,7 +72983,7 @@ { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", @@ -46548,24 +72991,29 @@ "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false } ], "participants": [ { "name": "SHELL CANADA PRODUCTS", - "endDate": "2020-04-11", - "startDate": "2021-09-22", + "endDate": "2014-04-02", + "startDate": "2015-05-27", "notes": "", "roles": [ "EMPLOYEE" @@ -46574,64 +73022,192 @@ }, { "name": "SHELL CANADA PRODUCTS", - "endDate": "2016-10-09", - "startDate": "2015-07-21", + "endDate": "2018-03-24", + "startDate": "2021-09-15", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": false - } - ], - "associatedSites": [ + }, { - "dateNoted": "2020-11-21", + "name": "AMET, DOLOR SIT", + "endDate": "2016-02-23", + "startDate": "2018-10-23", "notes": "", - "parcelID": "20736", - "siteID": "16736", + "roles": [ + "ORGANIZATION" + ], "siteRegistry": true + } + ], + "suspectLandUses": [ + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2021-07-17 (described on Site Profile dated 2021-07-17)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "dateNoted": "2014-11-09", - "notes": "", - "parcelID": "15974", - "siteID": "20947", - "siteRegistry": true + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2021-09-02 (described on Site Profile dated 2021-09-02)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + } + ], + "siteDisclosures": [ + { + "siteRegistry": false, + "dateReceived": "2019-02-13", + "dateCompleted": "2019-04-24", + "dateEntered": "2016-08-23", + "dateRegistrar": "2018-04-30", + "dateLocalAuthorityReceived": "2017-02-27", + "summary": "Culpa debitis sint nihil pariatur laudantium.", + "informationUsed": "Non nulla laudantium provident veniam doloremque.\nQuia consequatur tenetur praesentium voluptatibus saepe inventore dolores.\nOfficia quo corporis error ratione repellendus.\nQuibusdam facere impedit similique inventore deserunt atque sequi.", + "pastOrPresentOrders": "Praesentium perferendis molestias aliquam cum occaecati rerum quisquam.\nConsequatur excepturi consequuntur fuga inventore optio occaecati aperiam quod maxime.\nDolore tempora commodi reprehenderit eum nihil.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + } + ] + }, + { + "siteRegistry": false, + "dateReceived": "2015-12-04", + "dateCompleted": "2018-07-24", + "dateEntered": "2016-08-22", + "dateRegistrar": "2020-05-29", + "dateLocalAuthorityReceived": "2023-08-30", + "summary": "Natus odio omnis recusandae repellendus beatae facilis error.", + "informationUsed": "Tempora distinctio voluptas quibusdam voluptatum praesentium atque quisquam beatae nostrum.\nRepudiandae pariatur eaque vero.\nRepellendus quia unde aspernatur tempora consectetur dolorum rerum impedit.", + "pastOrPresentOrders": "Veniam culpa excepturi cupiditate error ad et itaque ullam perferendis.\nVero sapiente omnis praesentium autem repellat.\nMolestiae magnam ipsum quidem.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + } + ] + } + ], + "activityLog": [ + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "CRIST-WATSICA NAOMIE", + "timestamp": "2014-08-02" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "WUNSCH KARIANNE", + "timestamp": "2023-01-24" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "KIRLIN VICENTE", + "timestamp": "2014-03-17" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "SCHMITT NICOLETTE", + "timestamp": "2016-11-10" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "MARVIN SUSANA", + "timestamp": "2019-03-01" }, { - "dateNoted": "2019-09-28", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "OBERBRUNNER NYASIA", + "timestamp": "2018-05-21" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "MAYERT FREEDA", + "timestamp": "2018-01-18" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "RAU NELSON", + "timestamp": "2021-12-04" + } + ], + "associatedSites": [ + { + "dateNoted": "2018-12-15", "notes": "", - "parcelID": "16458", - "siteID": "18162", + "parcelID": "16649", + "siteID": "19367", "siteRegistry": false + }, + { + "dateNoted": "2016-12-07", + "notes": "", + "parcelID": "15246", + "siteID": "18201", + "siteRegistry": true } ] }, { - "uuid": "c84c0f70-8565-4f9a-a020-b83475d9cf12", - "siteID": 17012, - "address": "81955 Huels Ports", - "latitude": 54.5663, - "longitude": -122.264, - "lastUpdated": "2015-06-29", - "city": "Jovanhaven", - "region": "Thompson-Okanagan", - "victoriaFile": "26250-20/15997", + "uuid": "1e75a7f1-fef1-49ac-8efe-71705b9a02d3", + "siteID": 16638, + "address": "782 West Spurs", + "latitude": 56.0798, + "longitude": -133.3413, + "lastUpdated": "2017-02-15", + "city": "Emelyboro", + "region": " North Coast", + "victoriaFile": "26250-20/2048", "regionalFile": "N/A", "parcelIDs": [ - 9226492, - 5266721, - 1062357, - 5215930, - 9411905 + 4261877, + 8165085, + 6543374, + 2828739, + 7452087 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2016-11-08", - "completed": "2023-08-14", - "initiated": "2017-01-30", - "ministryContact": "GERLACH MARIANE", + "createdAt": "2019-01-13", + "completed": "2023-08-25", + "initiated": "2017-09-18", + "ministryContact": "HEATHCOTE MARLEY", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -46640,23 +73216,18 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": true }, { @@ -46668,10 +73239,10 @@ "siteRegistry": true }, { - "createdAt": "2022-09-05", - "completed": "2022-04-19", - "initiated": "2014-01-26", - "ministryContact": "TORPHY ENA", + "createdAt": "2017-06-04", + "completed": "2015-06-15", + "initiated": "2017-01-06", + "ministryContact": "RUNOLFSDOTTIR EUGENIA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -46680,13 +73251,13 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", "siteRegistry": false }, { @@ -46698,10 +73269,10 @@ "siteRegistry": false }, { - "createdAt": "2022-07-14", - "completed": "2017-11-14", - "initiated": "2019-01-17", - "ministryContact": "LANGWORTH ENA", + "createdAt": "2016-11-05", + "completed": "2019-08-15", + "initiated": "2016-02-28", + "ministryContact": "GERLACH MYRTLE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -46711,34 +73282,14 @@ "notationParticipants": [ { "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - } - ], - "siteRegistry": true - }, - { - "createdAt": "2013-12-29", - "completed": "2023-08-10", - "initiated": "2022-10-02", - "ministryContact": "GLEICHNER JUNIUS", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", @@ -46746,8 +73297,8 @@ }, { "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false + "role": "REQUESTED BY", + "siteRegistry": true } ], "siteRegistry": false @@ -46755,19 +73306,29 @@ ], "participants": [ { - "name": "IPSUM", - "endDate": "2015-12-30", - "startDate": "2023-01-22", + "name": "AMET, DOLOR SIT", + "endDate": "2022-03-30", + "startDate": "2022-08-02", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": true + "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2022-04-02", - "startDate": "2018-03-13", + "name": "IPSUM", + "endDate": "2015-10-13", + "startDate": "2022-05-05", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "AMET, DOLOR SIT", + "endDate": "2022-08-09", + "startDate": "2016-09-26", "notes": "", "roles": [ "ORGANIZATION" @@ -46775,55 +73336,146 @@ "siteRegistry": false } ], + "suspectLandUses": [ + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2017-10-02 (described on Site Profile dated 2017-10-02)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2013-12-23 (described on Site Profile dated 2013-12-23)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2018-06-27 (described on Site Profile dated 2018-06-27)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2014-12-03 (described on Site Profile dated 2014-12-03)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + } + ], + "siteDisclosures": [ + { + "siteRegistry": false, + "dateReceived": "2022-05-31", + "dateCompleted": "2022-12-01", + "dateEntered": "2018-09-02", + "dateRegistrar": "2018-12-26", + "dateLocalAuthorityReceived": "2022-01-07", + "summary": "Provident placeat corrupti qui adipisci.", + "informationUsed": "Tenetur fugit voluptatibus suscipit tempore totam.\nQui quas nostrum aliquam optio distinctio.\nUnde ipsam distinctio asperiores dignissimos incidunt deleniti sed labore laudantium.\nMagnam ducimus deleniti.", + "pastOrPresentOrders": "Voluptatem consequatur laboriosam cumque et.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + } + ] + } + ], + "activityLog": [ + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "HARRIS TRAVON", + "timestamp": "2022-01-18" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "HILLS MAXIMILLIA", + "timestamp": "2016-04-07" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "KUHLMAN LILLIAN", + "timestamp": "2019-11-05" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "GRIMES-PREDOVIC ARNO", + "timestamp": "2015-12-11" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "WOLF-RODRIGUEZ KENNA", + "timestamp": "2018-06-01" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "VONRUEDEN MICHELE", + "timestamp": "2023-07-19" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "SCHULTZ DELL", + "timestamp": "2014-11-17" + } + ], "associatedSites": [ { - "dateNoted": "2017-04-04", + "dateNoted": "2015-08-15", "notes": "", - "parcelID": "18262", - "siteID": "18799", - "siteRegistry": true + "parcelID": "15523", + "siteID": "18995", + "siteRegistry": false }, { - "dateNoted": "2016-03-11", + "dateNoted": "2021-10-23", "notes": "", - "parcelID": "20006", - "siteID": "18775", - "siteRegistry": false + "parcelID": "19053", + "siteID": "17898", + "siteRegistry": true }, { - "dateNoted": "2017-12-16", + "dateNoted": "2019-10-03", "notes": "", - "parcelID": "19113", - "siteID": "16839", + "parcelID": "17297", + "siteID": "15276", "siteRegistry": true } ] }, { - "uuid": "50fe01b5-0740-41fb-a176-54e60f725b8f", - "siteID": 18001, - "address": "1011 Flo Oval", - "latitude": 48.8412, - "longitude": -124.977, - "lastUpdated": "2023-02-06", - "city": "New Brucestead", - "region": "Kootenay", - "victoriaFile": "26250-20/19653", + "uuid": "56235a5f-5adb-49b1-842f-0afd1c892999", + "siteID": 19400, + "address": "973 Davis Oval", + "latitude": 51.8665, + "longitude": -131.0994, + "lastUpdated": "2021-09-05", + "city": "Stanshire", + "region": "Vancouver Island/Coast", + "victoriaFile": "26250-20/4661", "regionalFile": "N/A", "parcelIDs": [ - 4377774, - 6239390, - 371891, - 1191301, - 9857320 + 4107747, + 6238319, + 213172, + 7752073, + 4853551 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2016-03-23", - "completed": "2020-09-21", - "initiated": "2020-11-22", - "ministryContact": "KUB SKYLA", + "createdAt": "2017-08-22", + "completed": "2023-04-29", + "initiated": "2018-06-04", + "ministryContact": "BUCKRIDGE CATHARINE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -46834,56 +73486,26 @@ { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false - } - ], - "siteRegistry": true - }, - { - "createdAt": "2022-08-26", - "completed": "2021-05-11", - "initiated": "2017-02-27", - "ministryContact": "HUELS SALLY", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false } ], "siteRegistry": true }, { - "createdAt": "2015-05-04", - "completed": "2019-09-16", - "initiated": "2021-02-05", - "ministryContact": "WILLIAMSON ELINOR", + "createdAt": "2014-10-31", + "completed": "2019-08-04", + "initiated": "2021-05-17", + "ministryContact": "MARKS ENRIQUE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -46891,40 +73513,35 @@ "" ], "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false } ], "participants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2014-02-13", - "startDate": "2018-06-05", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2014-12-20", + "startDate": "2020-11-10", "notes": "", "roles": [ "ORGANIZATION" @@ -46933,87 +73550,175 @@ }, { "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2021-07-16", - "startDate": "2015-02-19", + "endDate": "2015-12-09", + "startDate": "2023-01-19", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true + } + ], + "suspectLandUses": [ + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2022-09-29 (described on Site Profile dated 2022-09-29)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2022-01-23", - "startDate": "2014-12-17", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": false + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2021-10-31 (described on Site Profile dated 2021-10-31)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "name": "AMET, DOLOR SIT", - "endDate": "2015-04-04", - "startDate": "2016-07-25", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": true + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2020-03-23 (described on Site Profile dated 2020-03-23)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "name": "AMET, DOLOR SIT", - "endDate": "2018-12-04", - "startDate": "2015-02-12", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": true + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2017-09-22 (described on Site Profile dated 2017-09-22)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], - "associatedSites": [ + "siteDisclosures": [ { - "dateNoted": "2022-05-02", - "notes": "", - "parcelID": "18066", - "siteID": "20865", - "siteRegistry": true + "siteRegistry": true, + "dateReceived": "2023-06-13", + "dateCompleted": "2017-06-10", + "dateEntered": "2019-05-09", + "dateRegistrar": "2020-10-01", + "dateLocalAuthorityReceived": "2018-07-25", + "summary": "Suscipit debitis recusandae expedita aperiam.", + "informationUsed": "Nihil minima hic ullam aliquid.\nNatus commodi quas.\nMaiores harum ab perspiciatis itaque.\nDolorum explicabo iusto dolorum dolor ipsa error odit.", + "pastOrPresentOrders": "Quae ullam aperiam saepe harum ullam nisi.\nBlanditiis velit asperiores recusandae impedit libero corporis quae illum necessitatibus.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + } + ] + }, + { + "siteRegistry": true, + "dateReceived": "2015-03-23", + "dateCompleted": "2016-11-30", + "dateEntered": "2014-09-23", + "dateRegistrar": "2020-05-14", + "dateLocalAuthorityReceived": "2023-07-08", + "summary": "Cum natus earum consequatur autem temporibus voluptatum voluptatum beatae.\nEius rem rerum placeat ratione error.\nQuos perspiciatis adipisci omnis magnam.", + "informationUsed": "Repellat dolor at saepe deleniti debitis provident.\nPerferendis facere quos recusandae voluptatibus repellat accusamus.\nMolestias voluptas perspiciatis numquam eligendi unde aliquid excepturi mollitia nisi.", + "pastOrPresentOrders": "Enim praesentium sed totam.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + } + ] + } + ], + "activityLog": [ + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "ANDERSON BERNIECE", + "timestamp": "2014-12-20" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "GULGOWSKI LOTTIE", + "timestamp": "2015-12-28" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "GOYETTE JAYDON", + "timestamp": "2017-02-01" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "KSHLERIN LOURDES", + "timestamp": "2021-02-12" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "AUFDERHAR HENRY", + "timestamp": "2014-07-20" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "POUROS FRANCESCO", + "timestamp": "2019-08-04" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "UPTON LARISSA", + "timestamp": "2019-06-11" }, { - "dateNoted": "2019-09-16", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "WEBER ZARIA", + "timestamp": "2016-10-23" + } + ], + "associatedSites": [ + { + "dateNoted": "2017-11-14", "notes": "", - "parcelID": "19793", - "siteID": "20788", + "parcelID": "19133", + "siteID": "16296", "siteRegistry": false } ] }, { - "uuid": "85f63c23-f4cb-4d36-ac90-d59d418f5ca2", - "siteID": 18126, - "address": "430 Stoltenberg Corners", - "latitude": 57.4977, - "longitude": -118.9699, - "lastUpdated": "2017-11-25", - "city": "Beahanside", - "region": "Mainland/Southwest", - "victoriaFile": "26250-20/4447", + "uuid": "44b492ad-4ee3-498f-809f-35a403d18107", + "siteID": 19216, + "address": "46825 Parisian Land", + "latitude": 52.7209, + "longitude": -123.089, + "lastUpdated": "2017-03-12", + "city": "Santa Clara", + "region": "Kootenay", + "victoriaFile": "26250-20/15423", "regionalFile": "N/A", "parcelIDs": [ - 4670133, - 9270907, - 3875043, - 7928666, - 9216967 + 2055690, + 4655321, + 9257038, + 7931364, + 3199245 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2016-04-12", - "completed": "2020-11-20", - "initiated": "2020-02-25", - "ministryContact": "STAMM MATHEW", + "createdAt": "2016-10-18", + "completed": "2023-08-14", + "initiated": "2019-10-12", + "ministryContact": "CHAMPLIN ELMORE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -47022,23 +73727,23 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": true }, { @@ -47050,10 +73755,10 @@ "siteRegistry": false }, { - "createdAt": "2022-10-01", - "completed": "2016-03-14", - "initiated": "2015-03-14", - "ministryContact": "FRAMI-EFFERTZ DONNELL", + "createdAt": "2017-09-25", + "completed": "2020-09-10", + "initiated": "2020-03-25", + "ministryContact": "HAAG NATALIE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -47064,12 +73769,22 @@ { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true } ], "siteRegistry": false @@ -47077,9 +73792,9 @@ ], "participants": [ { - "name": "AMET, DOLOR SIT", - "endDate": "2023-05-01", - "startDate": "2021-05-26", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2017-08-31", + "startDate": "2015-05-26", "notes": "", "roles": [ "EMPLOYEE" @@ -47088,8 +73803,18 @@ }, { "name": "AMET, DOLOR SIT", - "endDate": "2013-10-26", - "startDate": "2022-09-12", + "endDate": "2021-06-02", + "startDate": "2016-11-24", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "AMET, DOLOR SIT", + "endDate": "2016-02-17", + "startDate": "2018-01-08", "notes": "", "roles": [ "ORGANIZATION" @@ -47097,36 +73822,145 @@ "siteRegistry": true }, { - "name": "IPSUM", - "endDate": "2015-09-21", - "startDate": "2014-12-05", + "name": "AMET, DOLOR SIT", + "endDate": "2015-07-27", + "startDate": "2016-01-29", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true } ], - "associatedSites": [ + "suspectLandUses": [ { - "dateNoted": "2023-02-07", - "notes": "", - "parcelID": "17518", - "siteID": "16645", - "siteRegistry": false + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2015-05-23 (described on Site Profile dated 2015-05-23)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "dateNoted": "2016-01-02", - "notes": "", - "parcelID": "19769", - "siteID": "19084", - "siteRegistry": false + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2022-09-30 (described on Site Profile dated 2022-09-30)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2016-12-15 (described on Site Profile dated 2016-12-15)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2018-05-28 (described on Site Profile dated 2018-05-28)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + } + ], + "siteDisclosures": [ + { + "siteRegistry": true, + "dateReceived": "2016-07-26", + "dateCompleted": "2019-08-02", + "dateEntered": "2022-01-26", + "dateRegistrar": "2016-05-23", + "dateLocalAuthorityReceived": "2020-05-10", + "summary": "Dolores eveniet nobis sunt amet ad.\nIpsam dolore voluptatem eaque nam.\nPossimus vero quam repellat neque nostrum soluta quas.", + "informationUsed": "Ex nesciunt soluta numquam repellat molestiae non corporis.\nId eius aspernatur ex cupiditate tenetur officiis est.\nCommodi distinctio et sit doloremque nostrum laudantium consequuntur cupiditate cupiditate.\nEius amet fuga unde adipisci eius.", + "pastOrPresentOrders": "Ut saepe provident perferendis iusto amet facilis.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + } + ] + }, + { + "siteRegistry": false, + "dateReceived": "2022-03-03", + "dateCompleted": "2014-07-20", + "dateEntered": "2022-05-16", + "dateRegistrar": "2021-07-24", + "dateLocalAuthorityReceived": "2022-12-18", + "summary": "Quasi rerum delectus.\nCommodi ad aliquam consectetur id illo harum itaque.", + "informationUsed": "Quibusdam hic esse corrupti mollitia nulla.\nAssumenda consequatur tenetur.\nIure optio rem molestiae.", + "pastOrPresentOrders": "Accusantium eius voluptatem explicabo vitae recusandae illo.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + } + ] + } + ], + "activityLog": [ + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "GRANT AGLAE", + "timestamp": "2020-09-20" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "SCHINNER MARGARITA", + "timestamp": "2022-12-17" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "TILLMAN LISETTE", + "timestamp": "2018-12-15" }, { - "dateNoted": "2013-10-04", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "BECKER TOBIN", + "timestamp": "2015-01-08" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "RODRIGUEZ KOBY", + "timestamp": "2019-06-01" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "KLEIN OLIVER", + "timestamp": "2018-01-16" + } + ], + "associatedSites": [ + { + "dateNoted": "2014-04-12", "notes": "", - "parcelID": "16727", - "siteID": "15695", + "parcelID": "19223", + "siteID": "19590", "siteRegistry": true } ] From a2144f5056010aae1a36fec7106d0832a6741169 Mon Sep 17 00:00:00 2001 From: Adam Coard Date: Tue, 10 Oct 2023 10:19:43 -0700 Subject: [PATCH 126/194] Added ParcelDescription dummy data, was missed previously --- .../src/api/dummy-data.tsx | 27 +- .../site-search-frontend/src/api/sites.ts | 1 + .../site-details/parcel-description.tsx | 24 +- .../src/scripts/dummy-data.sites.json | 74634 +++++++++------- 4 files changed, 41143 insertions(+), 33543 deletions(-) diff --git a/frontend/site-search-frontend/src/api/dummy-data.tsx b/frontend/site-search-frontend/src/api/dummy-data.tsx index 55b39cc7..397b1a8f 100644 --- a/frontend/site-search-frontend/src/api/dummy-data.tsx +++ b/frontend/site-search-frontend/src/api/dummy-data.tsx @@ -1,5 +1,5 @@ import { faker } from '@faker-js/faker'; -import { SiteParticipant, type Notation, type Site, AssociatedSite, SuspectLandUse, SiteDisclosure, ActivityLogItem, SiteDisclosurePurpose } from './sites' +import { SiteParticipant, type Notation, type Site, AssociatedSite, SuspectLandUse, SiteDisclosure, ActivityLogItem, SiteDisclosurePurpose, ParcelDescription } from './sites' // import formatDateToString from '@/helpers/formatDateToString'; import formatDateToString from '../helpers/formatDateToString.ts' @@ -31,19 +31,13 @@ export function createRandomSite(): Site { parcelIDs: Array.from({length: 5}, _ => faker.number.int({min: 100000, max: 10000000})), locationDescription: 'LAT/LONGS CONFIRMED USING ICIS MAY 16,2013', - // Generate 1-5 notations - // notations: Array.from({length: faker.number.int({min: 2, max: 5}) }, () => { return randomNotation() }), - // participants: Array.from({length: faker.number.int({min: 2, max: 5}) }, () => { return randomSiteParticipant() }), notations: createAndPopulateArray({min: 2, max: 5, generator: randomNotation}), participants: createAndPopulateArray({min: 2, max: 5, generator: randomSiteParticipant}), suspectLandUses: createAndPopulateArray({min: 2, max: 5, generator: randomSuspectLandUse}), - - + parcelDescriptions: createAndPopulateArray({min: 2, max: 5, generator: randomParcelDescription}), siteDisclosures: createAndPopulateArray({min: 1, max: 2, generator: randomSiteDisclosure}), activityLog: createAndPopulateArray({min: 5, max: 10, generator: randomActivityLogItem}), - - // Associated Sites is generated after site generation with `createSiteAssociations()`, as we need siteIDs already gen'd. associatedSites: [] @@ -178,4 +172,21 @@ function randomActivityLogItem(): ActivityLogItem { timestamp: formatDateToString(faker.date.past({years: 10})) } +} + +function randomParcelDescription(): ParcelDescription { + const lot = faker.number.int({min: 1, max: 5}) + const secondLot = faker.number.int({min: 1, max: 5}) + const block = faker.number.int({min: 1, max: 5}) + const district = faker.number.int({min: 1, max: 5}) + const plan = faker.number.int({min: 2901, max: 9802}) + + return { + siteRegistry: faker.datatype.boolean(), + dateNoted: formatDateToString(faker.date.past({years: 10})), + parcelID: faker.number.int({min: 15192, max: 20999}).toString(), + crownLandUsePIN: faker.number.int({min: 15192, max: 20999}).toString(), + crownLandFileNumber: faker.number.int({min: 15192, max: 20999}).toString(), + landDescription: `LOT ${lot} OF LOT ${secondLot} BLOCK ${block} DISTRICT LOT ${district} PLAN ${plan}` + } } \ No newline at end of file diff --git a/frontend/site-search-frontend/src/api/sites.ts b/frontend/site-search-frontend/src/api/sites.ts index 59d95c28..c90a05c8 100644 --- a/frontend/site-search-frontend/src/api/sites.ts +++ b/frontend/site-search-frontend/src/api/sites.ts @@ -22,6 +22,7 @@ export class Site { associatedSites: AssociatedSite[]; suspectLandUses: SuspectLandUse[]; + parcelDescriptions: ParcelDescription[] siteDisclosures: SiteDisclosure[]; activityLog: ActivityLogItem[]; diff --git a/frontend/site-search-frontend/src/features/site-details/parcel-description.tsx b/frontend/site-search-frontend/src/features/site-details/parcel-description.tsx index ef7f7d98..45771c40 100644 --- a/frontend/site-search-frontend/src/features/site-details/parcel-description.tsx +++ b/frontend/site-search-frontend/src/features/site-details/parcel-description.tsx @@ -1,9 +1,31 @@ +import { Site } from "@/api/sites"; +import { RootState } from "@/store"; +import { useSelector } from "react-redux"; +import { useParams } from "react-router-dom"; +import SubSearch from "./sub-search/SubSearch"; +import SiteDetailsTable from "./table/SiteDetailsTable"; export default function ParcelDescription() { + const { siteID } = useParams(); + const siteIDNum = parseInt(siteID); + const site: Site = useSelector((state: RootState) => state.site.value.find(searchedSite => searchedSite.siteID === siteIDNum)); + return (
-

Parcel Description go here

+ + +
) } \ No newline at end of file diff --git a/frontend/site-search-frontend/src/scripts/dummy-data.sites.json b/frontend/site-search-frontend/src/scripts/dummy-data.sites.json index 5d352a2d..98302f21 100644 --- a/frontend/site-search-frontend/src/scripts/dummy-data.sites.json +++ b/frontend/site-search-frontend/src/scripts/dummy-data.sites.json @@ -1,29 +1,29 @@ [ { - "uuid": "a806cad0-0aa7-4363-9602-10379c2131b8", - "siteID": 18197, - "address": "9416 Jameson Trace", - "latitude": 48.8701, - "longitude": -125.3203, - "lastUpdated": "2022-10-05", - "city": "North Jane", - "region": "Mainland/Southwest", - "victoriaFile": "26250-20/18182", + "uuid": "fbd8cd02-fa1d-4861-85c3-03ef22cc0151", + "siteID": 15284, + "address": "2185 Daija Center", + "latitude": 58.3138, + "longitude": -136.9511, + "lastUpdated": "2016-09-11", + "city": "South Marjory", + "region": "Kootenay", + "victoriaFile": "26250-20/9066", "regionalFile": "N/A", "parcelIDs": [ - 6014936, - 2152903, - 6664748, - 2471062, - 5772645 + 6196657, + 5762544, + 8516660, + 3383870, + 8575001 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2022-04-02", - "completed": "2016-12-15", - "initiated": "2018-01-26", - "ministryContact": "STEHR RAHUL", + "createdAt": "2014-03-31", + "completed": "2016-01-17", + "initiated": "2021-05-17", + "ministryContact": "UPTON JESSIKA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -32,23 +32,63 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "createdAt": "2015-05-23", + "completed": "2013-11-11", + "initiated": "2017-09-20", + "ministryContact": "WINTHEISER KACIE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true } ], "siteRegistry": false }, { - "createdAt": "2016-01-03", - "completed": "2021-12-16", - "initiated": "2018-07-29", - "ministryContact": "RUECKER BRIONNA", + "createdAt": "2020-04-24", + "completed": "2017-07-18", + "initiated": "2022-02-09", + "ministryContact": "RATH LETHA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -66,108 +106,139 @@ "role": "REQUESTED BY", "siteRegistry": false }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "createdAt": "2019-03-12", + "completed": "2019-02-01", + "initiated": "2022-11-29", + "ministryContact": "BARTELL DILLAN", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true } ], "participants": [ { "name": "SHELL CANADA PRODUCTS", - "endDate": "2023-05-03", - "startDate": "2021-08-15", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2014-09-11", - "startDate": "2020-06-27", + "endDate": "2021-01-20", + "startDate": "2019-03-04", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": true }, { - "name": "AMET, DOLOR SIT", - "endDate": "2015-04-25", - "startDate": "2017-05-04", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2023-04-16", + "startDate": "2020-11-11", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": false } ], "suspectLandUses": [ { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-06-17 (described on Site Profile dated 2017-06-17)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2021-12-17 (described on Site Profile dated 2021-12-17)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-10-11 (described on Site Profile dated 2019-10-11)", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2023-08-31 (described on Site Profile dated 2023-08-31)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-06-08 (described on Site Profile dated 2016-06-08)", + "notes": "INSERTED FOR SITE PROFILE DATED 2023-06-15 (described on Site Profile dated 2023-06-15)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + } + ], + "parcelDescriptions": [ + { + "siteRegistry": false, + "dateNoted": "2017-07-05", + "parcelID": "20470", + "crownLandUsePIN": "18958", + "crownLandFileNumber": "17338", + "landDescription": "LOT 4 OF LOT 4 BLOCK 4 DISTRICT LOT 5 PLAN 6247" + }, + { + "siteRegistry": true, + "dateNoted": "2018-01-31", + "parcelID": "19136", + "crownLandUsePIN": "15692", + "crownLandFileNumber": "16300", + "landDescription": "LOT 5 OF LOT 5 BLOCK 3 DISTRICT LOT 5 PLAN 8086" }, { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-07-29 (described on Site Profile dated 2017-07-29)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "dateNoted": "2019-06-11", + "parcelID": "16728", + "crownLandUsePIN": "18666", + "crownLandFileNumber": "17588", + "landDescription": "LOT 3 OF LOT 3 BLOCK 3 DISTRICT LOT 2 PLAN 6752" + }, + { + "siteRegistry": false, + "dateNoted": "2016-03-21", + "parcelID": "20096", + "crownLandUsePIN": "16566", + "crownLandFileNumber": "20450", + "landDescription": "LOT 1 OF LOT 1 BLOCK 2 DISTRICT LOT 3 PLAN 7550" } ], "siteDisclosures": [ { - "siteRegistry": false, - "dateReceived": "2021-09-07", - "dateCompleted": "2021-12-10", - "dateEntered": "2015-04-04", - "dateRegistrar": "2019-10-20", - "dateLocalAuthorityReceived": "2018-05-01", - "summary": "Autem laudantium sint deleniti provident officiis blanditiis.", - "informationUsed": "Culpa rerum nihil perspiciatis id asperiores exercitationem quibusdam debitis.\nAspernatur optio perspiciatis.\nNulla voluptates fugit cupiditate expedita veritatis aspernatur nulla assumenda nulla.", - "pastOrPresentOrders": "Autem tenetur ab.\nLabore est ut explicabo aspernatur.", + "siteRegistry": true, + "dateReceived": "2019-04-22", + "dateCompleted": "2014-12-22", + "dateEntered": "2019-08-21", + "dateRegistrar": "2015-03-17", + "dateLocalAuthorityReceived": "2020-01-29", + "summary": "Voluptate nostrum commodi atque sint.\nIllum numquam facere.\nQuisquam voluptas ad eius beatae.", + "informationUsed": "Eveniet itaque consequatur cum sint facere quos.\nExpedita laborum sit nisi architecto alias.\nVoluptates ipsam inventore fugit nam ratione harum quidem enim.\nMinima nihil consequatur hic tempora dolor aliquam aliquam quibusdam.\nVeniam odit necessitatibus expedita error perspiciatis.", + "pastOrPresentOrders": "Quaerat sed exercitationem accusantium illo reprehenderit accusamus dolores sint.", "commercialAndIndustrialPurposes": [ - { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true - }, { "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false - } - ] - }, - { - "siteRegistry": true, - "dateReceived": "2013-10-19", - "dateCompleted": "2021-03-24", - "dateEntered": "2013-12-12", - "dateRegistrar": "2018-11-28", - "dateLocalAuthorityReceived": "2014-04-22", - "summary": "In voluptatum explicabo architecto omnis tenetur numquam reiciendis.\nOmnis placeat libero ipsa autem eveniet eveniet animi.\nReprehenderit dignissimos maiores rerum.", - "informationUsed": "Ad id eos odio.\nAspernatur totam recusandae hic distinctio unde tempora at sequi placeat.\nHic placeat explicabo excepturi illum autem culpa possimus praesentium.", - "pastOrPresentOrders": "Vitae perspiciatis doloribus eius quis est odio earum.", - "commercialAndIndustrialPurposes": [ - { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false }, { "scheduleReference": "F2*", @@ -175,8 +246,13 @@ "siteRegistry": false }, { - "scheduleReference": "F2*", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true } ] @@ -186,76 +262,94 @@ { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "NOLAN NELLIE", - "timestamp": "2017-03-26" + "user": "TREMBLAY SABRYNA", + "timestamp": "2014-01-15" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "RIPPIN CARSON", - "timestamp": "2017-10-15" + "user": "BOYER ELWYN", + "timestamp": "2019-05-25" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "WELCH GREGORY", + "timestamp": "2014-09-15" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "WUNSCH-WILLMS MODESTO", - "timestamp": "2016-09-04" + "user": "FUNK RASHAWN", + "timestamp": "2013-11-29" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "REINGER ABDUL", + "timestamp": "2015-03-16" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "MURRAY ELODY", - "timestamp": "2017-02-03" + "user": "WALSH FELICITA", + "timestamp": "2014-01-12" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "BATZ CRAIG", + "timestamp": "2018-02-22" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "KOVACEK GENOVEVA", - "timestamp": "2013-10-26" + "user": "LEUSCHKE LORENZA", + "timestamp": "2018-07-24" } ], "associatedSites": [ { - "dateNoted": "2022-02-06", + "dateNoted": "2022-02-18", "notes": "", - "parcelID": "15381", - "siteID": "15517", + "parcelID": "19711", + "siteID": "16881", "siteRegistry": true }, { - "dateNoted": "2022-11-11", + "dateNoted": "2017-08-12", "notes": "", - "parcelID": "16243", - "siteID": "17809", - "siteRegistry": true + "parcelID": "18088", + "siteID": "17153", + "siteRegistry": false } ] }, { - "uuid": "b798b637-7047-4898-8fab-cb83149eb95f", - "siteID": 16504, - "address": "315 Martina Ranch", - "latitude": 48.0335, - "longitude": -137.5519, - "lastUpdated": "2017-03-18", - "city": "Hacienda Heights", - "region": "Mainland/Southwest", - "victoriaFile": "26250-20/8919", + "uuid": "f736a948-cb5b-45c0-818f-81ff7d417c1d", + "siteID": 18639, + "address": "443 Herman Terrace", + "latitude": 49.022, + "longitude": -128.7397, + "lastUpdated": "2017-12-14", + "city": "Port Aliza", + "region": " North Coast", + "victoriaFile": "26250-20/4054", "regionalFile": "N/A", "parcelIDs": [ - 7548927, - 8978359, - 9110836, - 4213703, - 2333990 + 6305753, + 4872477, + 2217731, + 5522531, + 6985957 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2013-12-03", - "completed": "2016-08-24", - "initiated": "2013-11-29", - "ministryContact": "ZIEME TRE", + "createdAt": "2015-09-30", + "completed": "2021-06-03", + "initiated": "2018-03-21", + "ministryContact": "JOHNSTON RICKY", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -264,38 +358,28 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2021-10-11", - "completed": "2017-08-31", - "initiated": "2015-02-22", - "ministryContact": "WALTER DENA", + "createdAt": "2017-07-01", + "completed": "2019-09-19", + "initiated": "2015-07-10", + "ministryContact": "KUHIC EFRAIN", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -304,12 +388,17 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true } @@ -317,10 +406,10 @@ "siteRegistry": true }, { - "createdAt": "2015-03-22", - "completed": "2018-09-13", - "initiated": "2023-09-14", - "ministryContact": "HIRTHE JOSEPH", + "createdAt": "2020-01-13", + "completed": "2014-11-23", + "initiated": "2017-12-18", + "ministryContact": "MONAHAN JAYDON", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -331,21 +420,26 @@ { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true } ], "siteRegistry": false }, { - "createdAt": "2019-05-26", - "completed": "2023-04-11", - "initiated": "2017-04-19", - "ministryContact": "REINGER LAURY", + "createdAt": "2014-10-05", + "completed": "2014-06-10", + "initiated": "2018-12-27", + "ministryContact": "HUEL HIRAM", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -353,34 +447,34 @@ "" ], "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, { "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true } ], "siteRegistry": false }, { - "createdAt": "2023-09-02", - "completed": "2022-02-05", - "initiated": "2021-12-29", - "ministryContact": "HIRTHE JOANNY", + "createdAt": "2014-01-05", + "completed": "2023-05-16", + "initiated": "2015-09-14", + "ministryContact": "GOYETTE ALEXZANDER", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -389,23 +483,18 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false } ], @@ -414,127 +503,117 @@ ], "participants": [ { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2017-12-19", - "startDate": "2014-08-28", + "name": "IPSUM", + "endDate": "2019-04-16", + "startDate": "2021-01-20", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], - "siteRegistry": true + "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2014-11-05", - "startDate": "2020-08-14", + "name": "IPSUM", + "endDate": "2020-10-09", + "startDate": "2020-10-06", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2022-09-18", - "startDate": "2017-07-17", + "name": "IPSUM", + "endDate": "2014-11-10", + "startDate": "2018-03-24", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], - "siteRegistry": false + "siteRegistry": true }, { "name": "IPSUM", - "endDate": "2018-07-27", - "startDate": "2020-02-04", + "endDate": "2013-10-28", + "startDate": "2021-08-04", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2018-03-14", - "startDate": "2020-02-22", + "name": "IPSUM", + "endDate": "2014-12-29", + "startDate": "2021-11-06", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true } ], "suspectLandUses": [ { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2023-03-08 (described on Site Profile dated 2023-03-08)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "notes": "INSERTED FOR SITE PROFILE DATED 2020-02-16 (described on Site Profile dated 2020-02-16)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-07-28 (described on Site Profile dated 2014-07-28)", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2020-06-12 (described on Site Profile dated 2020-06-12)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2021-02-08 (described on Site Profile dated 2021-02-08)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], - "siteDisclosures": [ + "parcelDescriptions": [ { - "siteRegistry": false, - "dateReceived": "2015-04-14", - "dateCompleted": "2015-11-30", - "dateEntered": "2015-05-10", - "dateRegistrar": "2021-04-15", - "dateLocalAuthorityReceived": "2023-09-15", - "summary": "Culpa ut perferendis fugit odit dolore eligendi consequuntur quidem.\nIncidunt laborum sit deserunt hic voluptatibus.", - "informationUsed": "Vel ad expedita pariatur quasi nesciunt libero veniam autem aliquam.\nConsequuntur velit sapiente neque.\nEarum dignissimos tempora itaque in eligendi consectetur hic maiores.", - "pastOrPresentOrders": "Itaque labore voluptates reprehenderit veritatis pariatur.\nSunt autem odio praesentium adipisci recusandae.", - "commercialAndIndustrialPurposes": [ - { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true - }, - { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false - }, - { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false - } - ] + "siteRegistry": true, + "dateNoted": "2019-10-05", + "parcelID": "17802", + "crownLandUsePIN": "20528", + "crownLandFileNumber": "17986", + "landDescription": "LOT 4 OF LOT 5 BLOCK 2 DISTRICT LOT 2 PLAN 8236" }, { "siteRegistry": false, - "dateReceived": "2020-01-16", - "dateCompleted": "2023-04-23", - "dateEntered": "2015-05-18", - "dateRegistrar": "2016-03-14", - "dateLocalAuthorityReceived": "2017-04-02", - "summary": "Ducimus totam quaerat cupiditate nihil sit libero corrupti quae.\nPerspiciatis tempore temporibus numquam fuga perferendis.", - "informationUsed": "Magni quo placeat.\nAb rem minus ipsum est adipisci quasi.\nEos quis facere.\nAut fuga fuga officiis consequatur.\nEx in repellat ex iste ducimus.", - "pastOrPresentOrders": "Dicta soluta dicta aliquid similique.\nReprehenderit eligendi labore enim minus incidunt exercitationem cupiditate itaque.", + "dateNoted": "2019-04-30", + "parcelID": "18286", + "crownLandUsePIN": "16179", + "crownLandFileNumber": "20907", + "landDescription": "LOT 4 OF LOT 2 BLOCK 1 DISTRICT LOT 1 PLAN 8513" + } + ], + "siteDisclosures": [ + { + "siteRegistry": true, + "dateReceived": "2014-03-20", + "dateCompleted": "2023-09-29", + "dateEntered": "2016-10-24", + "dateRegistrar": "2018-06-25", + "dateLocalAuthorityReceived": "2023-04-18", + "summary": "Blanditiis cum culpa saepe delectus dignissimos quisquam asperiores debitis.\nDebitis repellendus architecto.", + "informationUsed": "Id doloribus perferendis blanditiis exercitationem hic.\nAssumenda deserunt ut hic.\nIure debitis quaerat praesentium iste qui laudantium necessitatibus deleniti.\nOdit natus minima rerum at id exercitationem repudiandae quae.\nSequi ipsa rerum culpa ipsam deserunt.", + "pastOrPresentOrders": "Aliquid nisi quam magni.", "commercialAndIndustrialPurposes": [ { "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, { "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true - }, - { - "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false } ] } @@ -543,93 +622,87 @@ { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "MOORE PORTER", - "timestamp": "2021-01-27" - }, - { - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "LABADIE GILES", - "timestamp": "2018-01-23" + "user": "KOVACEK ZACKERY", + "timestamp": "2018-05-19" }, { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "REMPEL MARIANO", - "timestamp": "2015-08-11" + "user": "GREEN BERNARD", + "timestamp": "2022-01-05" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "COLE PIERCE", - "timestamp": "2014-10-27" + "user": "BASHIRIAN LORENZA", + "timestamp": "2018-06-16" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "VON KATTIE", + "user": "RUTHERFORD JEROMY", "timestamp": "2021-08-09" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "BOSCO COBY", - "timestamp": "2015-01-14" + "user": "HEATHCOTE TAMIA", + "timestamp": "2022-10-08" }, { - "siteRegistry": true, + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "EMARD-WEBER VELDA", - "timestamp": "2017-04-12" + "user": "COLLIER KATHARINA", + "timestamp": "2017-10-10" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "SCHAMBERGER SAMANTA", - "timestamp": "2016-10-31" + "user": "DAVIS JOEY", + "timestamp": "2018-11-18" }, { - "siteRegistry": true, + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "BOGISICH MARITZA", - "timestamp": "2015-10-20" + "user": "BLOCK AYDEN", + "timestamp": "2018-03-30" } ], "associatedSites": [ { - "dateNoted": "2023-02-20", + "dateNoted": "2015-03-17", "notes": "", - "parcelID": "18722", - "siteID": "16916", + "parcelID": "15466", + "siteID": "19847", "siteRegistry": true } ] }, { - "uuid": "552e0f14-1131-4083-b61b-dc771ffec344", - "siteID": 16418, - "address": "258 Selina Heights", - "latitude": 54.2219, - "longitude": -134.8991, - "lastUpdated": "2014-09-10", - "city": "Miramar", - "region": "Cariboo", - "victoriaFile": "26250-20/5564", + "uuid": "9249a2dd-5e17-4b97-af25-08fd17f09df3", + "siteID": 18109, + "address": "343 Hershel Courts", + "latitude": 54.284, + "longitude": -126.7735, + "lastUpdated": "2023-05-03", + "city": "South Clemens", + "region": "Mainland/Southwest", + "victoriaFile": "26250-20/6640", "regionalFile": "N/A", "parcelIDs": [ - 8976886, - 8777885, - 1872608, - 2426660, - 3427762 + 1071213, + 815829, + 1298734, + 997882, + 6706912 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2021-10-01", - "completed": "2018-05-20", - "initiated": "2021-12-27", - "ministryContact": "KUHIC THERESA", + "createdAt": "2019-03-08", + "completed": "2014-12-17", + "initiated": "2019-03-22", + "ministryContact": "KUHLMAN ABBEY", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -639,7 +712,7 @@ "notationParticipants": [ { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true }, { @@ -649,17 +722,27 @@ }, { "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true } ], "siteRegistry": true }, { - "createdAt": "2021-06-24", - "completed": "2018-06-25", - "initiated": "2014-01-15", - "ministryContact": "FRANECKI WHITNEY", + "createdAt": "2014-01-29", + "completed": "2018-02-08", + "initiated": "2015-07-22", + "ministryContact": "STROSIN ALAYNA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -670,82 +753,154 @@ { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "createdAt": "2020-04-16", + "completed": "2018-08-09", + "initiated": "2017-10-17", + "ministryContact": "MULLER BRENDEN", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true } ], "participants": [ { - "name": "IPSUM", - "endDate": "2022-11-09", - "startDate": "2016-12-04", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2017-10-03", + "startDate": "2017-05-10", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], - "siteRegistry": true + "siteRegistry": false }, { "name": "AMET, DOLOR SIT", - "endDate": "2015-06-12", - "startDate": "2016-12-24", + "endDate": "2016-10-06", + "startDate": "2016-02-26", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], - "siteRegistry": true + "siteRegistry": false + } + ], + "suspectLandUses": [ + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2017-11-07 (described on Site Profile dated 2017-11-07)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2020-12-19", - "startDate": "2022-08-02", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": true + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2023-03-21 (described on Site Profile dated 2023-03-21)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], - "suspectLandUses": [ + "parcelDescriptions": [ { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-12-10 (described on Site Profile dated 2022-12-10)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "dateNoted": "2015-01-05", + "parcelID": "20163", + "crownLandUsePIN": "19040", + "crownLandFileNumber": "15755", + "landDescription": "LOT 3 OF LOT 2 BLOCK 5 DISTRICT LOT 5 PLAN 5820" }, { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-08-05 (described on Site Profile dated 2015-08-05)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "dateNoted": "2019-12-29", + "parcelID": "20955", + "crownLandUsePIN": "20176", + "crownLandFileNumber": "15608", + "landDescription": "LOT 3 OF LOT 4 BLOCK 5 DISTRICT LOT 1 PLAN 6927" + }, + { + "siteRegistry": false, + "dateNoted": "2020-03-28", + "parcelID": "19134", + "crownLandUsePIN": "18073", + "crownLandFileNumber": "20686", + "landDescription": "LOT 4 OF LOT 3 BLOCK 1 DISTRICT LOT 1 PLAN 5710" + }, + { + "siteRegistry": true, + "dateNoted": "2023-07-20", + "parcelID": "18404", + "crownLandUsePIN": "19311", + "crownLandFileNumber": "16428", + "landDescription": "LOT 2 OF LOT 5 BLOCK 3 DISTRICT LOT 1 PLAN 8856" + }, + { + "siteRegistry": true, + "dateNoted": "2018-10-15", + "parcelID": "20485", + "crownLandUsePIN": "19963", + "crownLandFileNumber": "20920", + "landDescription": "LOT 1 OF LOT 5 BLOCK 1 DISTRICT LOT 4 PLAN 7447" } ], "siteDisclosures": [ { - "siteRegistry": false, - "dateReceived": "2016-01-17", - "dateCompleted": "2019-08-17", - "dateEntered": "2014-09-04", - "dateRegistrar": "2020-02-09", - "dateLocalAuthorityReceived": "2021-07-18", - "summary": "Ducimus sunt vitae accusamus.\nIste laborum corporis.\nSuscipit repellat natus in aut aperiam vero ut.", - "informationUsed": "Pariatur doloremque molestias veritatis quos blanditiis iure excepturi.\nIure ullam culpa pariatur occaecati.\nAccusantium dolor expedita maxime veniam officia.\nVoluptate commodi explicabo est quisquam accusamus.", - "pastOrPresentOrders": "Ipsa deserunt qui iste error neque quo veniam modi.\nNemo quae magnam aliquid distinctio suscipit voluptas.", + "siteRegistry": true, + "dateReceived": "2014-05-11", + "dateCompleted": "2019-02-27", + "dateEntered": "2022-02-10", + "dateRegistrar": "2022-06-26", + "dateLocalAuthorityReceived": "2019-05-01", + "summary": "Possimus doloribus sunt quasi reprehenderit officia.\nMagni recusandae error amet vitae asperiores voluptates vel reiciendis iste.\nExpedita natus nesciunt.", + "informationUsed": "Natus ipsum ipsa reiciendis ratione asperiores possimus dolor.\nIste asperiores odit quo voluptatum iste ipsam deleniti.\nQuia ex ea.", + "pastOrPresentOrders": "Repellendus at porro velit vitae reprehenderit ea numquam delectus.\nQuas provident officiis vitae.", "commercialAndIndustrialPurposes": [ { "scheduleReference": "F1*", @@ -753,120 +908,116 @@ "siteRegistry": false }, { - "scheduleReference": "F2*", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, - { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false - } - ] - }, - { - "siteRegistry": true, - "dateReceived": "2022-05-15", - "dateCompleted": "2016-11-13", - "dateEntered": "2023-08-07", - "dateRegistrar": "2019-08-21", - "dateLocalAuthorityReceived": "2021-11-13", - "summary": "Ullam quas iure reiciendis ducimus numquam asperiores optio.\nCommodi explicabo sunt voluptate consequatur ullam saepe molestias incidunt.", - "informationUsed": "Minima cumque laboriosam occaecati quod.\nDicta sint accusamus iure reprehenderit ea exercitationem illum labore.\nMagni qui quo iusto.\nExpedita id assumenda ipsa molestiae rerum pariatur amet ratione.\nAt ipsa quas sit dolores corporis occaecati voluptatibus ea totam.", - "pastOrPresentOrders": "Officia id ut quaerat numquam quibusdam pariatur tenetur veniam iste.\nSed accusantium quos velit omnis recusandae facilis eius.", - "commercialAndIndustrialPurposes": [ { "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false }, { "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true } ] } ], "activityLog": [ { - "siteRegistry": true, + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "LUBOWITZ GEORGE", - "timestamp": "2021-08-04" + "user": "BRAKUS CARTER", + "timestamp": "2016-12-10" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "WEISSNAT KRAIG", - "timestamp": "2021-02-20" + "user": "BRAKUS VINCE", + "timestamp": "2018-10-18" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "CONN OTHO", - "timestamp": "2014-05-11" + "user": "BUCKRIDGE JARRED", + "timestamp": "2015-02-11" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "BERGSTROM FREDDY", - "timestamp": "2017-12-27" + "user": "BECKER PANSY", + "timestamp": "2017-04-22" }, { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "HAAG REGGIE", - "timestamp": "2023-05-26" + "user": "WINDLER EMORY", + "timestamp": "2020-02-20" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "WHITE KACI", - "timestamp": "2016-09-29" + "user": "BARTOLETTI OPHELIA", + "timestamp": "2014-08-12" }, { - "siteRegistry": true, + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "DUBUQUE JANIE", - "timestamp": "2020-10-22" + "user": "WEBER SOLEDAD", + "timestamp": "2021-12-29" } ], "associatedSites": [ { - "dateNoted": "2023-04-19", + "dateNoted": "2017-07-01", "notes": "", - "parcelID": "19250", - "siteID": "18155", + "parcelID": "17955", + "siteID": "17386", + "siteRegistry": true + }, + { + "dateNoted": "2020-05-24", + "notes": "", + "parcelID": "17903", + "siteID": "16329", + "siteRegistry": false + }, + { + "dateNoted": "2023-08-15", + "notes": "", + "parcelID": "17342", + "siteID": "19902", "siteRegistry": true } ] }, { - "uuid": "eb5bfec1-a80f-4205-944a-bdc1542e99bc", - "siteID": 19463, - "address": "433 Ratke Lodge", - "latitude": 54.7118, - "longitude": -124.4411, - "lastUpdated": "2016-08-31", - "city": "Wylie", - "region": " North Coast", - "victoriaFile": "26250-20/17739", + "uuid": "3bde5729-3bf7-4ec0-a3e7-13c9d2e95e8c", + "siteID": 19132, + "address": "881 Bert Knolls", + "latitude": 48.2973, + "longitude": -138.6791, + "lastUpdated": "2022-03-18", + "city": "Donfort", + "region": "Vancouver Island/Coast", + "victoriaFile": "26250-20/10381", "regionalFile": "N/A", "parcelIDs": [ - 8031701, - 2512553, - 694177, - 7089637, - 6355134 + 8383576, + 4801134, + 3794304, + 4648777, + 2315264 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2023-04-20", - "completed": "2020-03-04", - "initiated": "2019-03-20", - "ministryContact": "KONOPELSKI RICHMOND", + "createdAt": "2018-04-22", + "completed": "2022-05-22", + "initiated": "2013-11-12", + "ministryContact": "LEGROS BRIA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -877,10 +1028,25 @@ { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true } @@ -888,10 +1054,10 @@ "siteRegistry": false }, { - "createdAt": "2021-12-18", - "completed": "2021-02-18", - "initiated": "2020-12-21", - "ministryContact": "FRANECKI TYRESE", + "createdAt": "2022-01-18", + "completed": "2017-03-27", + "initiated": "2019-10-19", + "ministryContact": "DONNELLY AURORE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -901,37 +1067,22 @@ "notationParticipants": [ { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2020-07-30", - "completed": "2015-02-26", - "initiated": "2018-05-18", - "ministryContact": "BEIER QUINTON", + "createdAt": "2017-11-10", + "completed": "2017-02-09", + "initiated": "2017-02-06", + "ministryContact": "FEIL FREEDA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -940,17 +1091,12 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false }, @@ -958,51 +1104,6 @@ "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - } - ], - "siteRegistry": true - }, - { - "createdAt": "2018-04-08", - "completed": "2015-08-29", - "initiated": "2017-09-17", - "ministryContact": "LEMKE-SCHAEFER DANTE", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true } ], "siteRegistry": false @@ -1010,98 +1111,99 @@ ], "participants": [ { - "name": "IPSUM", - "endDate": "2017-08-13", - "startDate": "2018-07-07", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2014-03-27", + "startDate": "2017-07-18", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true }, { "name": "AMET, DOLOR SIT", - "endDate": "2017-08-09", - "startDate": "2015-11-02", + "endDate": "2014-04-09", + "startDate": "2023-03-17", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": false - }, + } + ], + "suspectLandUses": [ { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2023-06-08", - "startDate": "2022-05-06", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": true + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2015-04-25 (described on Site Profile dated 2015-04-25)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "name": "IPSUM", - "endDate": "2015-08-30", - "startDate": "2022-12-05", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": true + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2015-04-14 (described on Site Profile dated 2015-04-14)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2016-06-14", - "startDate": "2019-12-16", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": true + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2018-11-08 (described on Site Profile dated 2018-11-08)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], - "suspectLandUses": [ + "parcelDescriptions": [ { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-05-22 (described on Site Profile dated 2022-05-22)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "dateNoted": "2014-04-25", + "parcelID": "20247", + "crownLandUsePIN": "18975", + "crownLandFileNumber": "16783", + "landDescription": "LOT 5 OF LOT 3 BLOCK 1 DISTRICT LOT 1 PLAN 2903" }, { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-04-06 (described on Site Profile dated 2018-04-06)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "siteRegistry": false, + "dateNoted": "2022-05-06", + "parcelID": "19312", + "crownLandUsePIN": "18668", + "crownLandFileNumber": "19893", + "landDescription": "LOT 1 OF LOT 3 BLOCK 2 DISTRICT LOT 5 PLAN 8645" }, { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-03-16 (described on Site Profile dated 2022-03-16)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "dateNoted": "2016-03-11", + "parcelID": "19850", + "crownLandUsePIN": "19744", + "crownLandFileNumber": "17809", + "landDescription": "LOT 2 OF LOT 2 BLOCK 2 DISTRICT LOT 5 PLAN 9386" } ], "siteDisclosures": [ { - "siteRegistry": true, - "dateReceived": "2021-05-24", - "dateCompleted": "2022-12-24", - "dateEntered": "2017-02-21", - "dateRegistrar": "2015-01-11", - "dateLocalAuthorityReceived": "2019-10-15", - "summary": "Magnam voluptatibus ducimus assumenda libero sapiente soluta dolorum.", - "informationUsed": "Et ipsam tenetur molestias nemo consequatur culpa.\nVoluptas cumque consectetur quaerat adipisci dolorum.\nSoluta mollitia dolorum.\nReiciendis quaerat ipsam aliquam necessitatibus.\nDignissimos debitis nostrum accusamus fuga ea tempore esse.", - "pastOrPresentOrders": "Quaerat quas ex quae repellendus amet.", + "siteRegistry": false, + "dateReceived": "2021-01-12", + "dateCompleted": "2019-04-16", + "dateEntered": "2021-07-17", + "dateRegistrar": "2016-07-17", + "dateLocalAuthorityReceived": "2019-02-04", + "summary": "Magnam beatae nulla consequuntur.", + "informationUsed": "Eaque quidem velit laborum.\nUt doloribus reprehenderit ut enim qui expedita minima voluptatibus.\nNumquam provident reiciendis dolorem dignissimos facilis delectus.\nVeniam sapiente vero molestiae excepturi pariatur quasi dolore debitis.\nFugiat fugiat cum sed.", + "pastOrPresentOrders": "Sapiente iure maiores animi dicta.", "commercialAndIndustrialPurposes": [ { "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, { "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true } ] @@ -1109,103 +1211,97 @@ ], "activityLog": [ { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "DENESIK GLENNIE", - "timestamp": "2016-05-01" + "user": "DIETRICH DEVYN", + "timestamp": "2018-08-22" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "CARTER KYLE", - "timestamp": "2015-09-26" + "user": "GOTTLIEB JEWEL", + "timestamp": "2019-06-09" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "GUSIKOWSKI-FRAMI LOTTIE", - "timestamp": "2021-07-13" + "user": "RUNOLFSSON DILLAN", + "timestamp": "2019-02-01" }, { - "siteRegistry": true, + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "MUELLER MAY", - "timestamp": "2021-12-14" + "user": "BATZ XZAVIER", + "timestamp": "2022-10-27" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "TOWNE MARIE", - "timestamp": "2014-09-28" - }, - { - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "NITZSCHE LOLITA", - "timestamp": "2016-02-13" + "user": "HARTMANN HAYLIE", + "timestamp": "2014-07-07" }, { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "KOSS ANTONIETTA", - "timestamp": "2022-02-14" + "user": "KEEBLER GREGORY", + "timestamp": "2017-10-18" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "HEGMANN ERICA", - "timestamp": "2016-08-20" + "user": "WHITE ADALINE", + "timestamp": "2018-11-27" } ], "associatedSites": [ { - "dateNoted": "2018-01-26", + "dateNoted": "2015-03-19", "notes": "", - "parcelID": "17856", - "siteID": "17809", + "parcelID": "18326", + "siteID": "18136", "siteRegistry": false }, { - "dateNoted": "2020-04-12", + "dateNoted": "2023-01-07", "notes": "", - "parcelID": "19789", - "siteID": "16586", + "parcelID": "20916", + "siteID": "19399", "siteRegistry": true }, { - "dateNoted": "2016-01-01", + "dateNoted": "2017-12-22", "notes": "", - "parcelID": "17054", - "siteID": "16876", - "siteRegistry": true + "parcelID": "19997", + "siteID": "17707", + "siteRegistry": false } ] }, { - "uuid": "945fb08e-9dfa-4479-8ab6-6a7e048f78e5", - "siteID": 17498, - "address": "3091 Katelynn Creek", - "latitude": 48.6827, - "longitude": -123.8712, - "lastUpdated": "2018-09-10", - "city": "West Alenaboro", - "region": " North Coast", - "victoriaFile": "26250-20/2308", + "uuid": "409fba12-b07a-4edc-959d-b98e846ad172", + "siteID": 17607, + "address": "458 Gleichner Wells", + "latitude": 52.5963, + "longitude": -126.0658, + "lastUpdated": "2014-05-27", + "city": "New Addiefield", + "region": "Cariboo", + "victoriaFile": "26250-20/3573", "regionalFile": "N/A", "parcelIDs": [ - 9022820, - 6634794, - 5491815, - 9263178, - 2428880 + 475433, + 7439782, + 3738741, + 9185806, + 7553609 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2021-02-25", - "completed": "2019-12-17", - "initiated": "2023-04-24", - "ministryContact": "PREDOVIC SHYANN", + "createdAt": "2020-04-28", + "completed": "2016-12-22", + "initiated": "2021-05-22", + "ministryContact": "RATH LEW", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -1214,23 +1310,28 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2017-04-14", - "completed": "2015-07-14", - "initiated": "2019-05-29", - "ministryContact": "RATH AURELIO", + "createdAt": "2022-09-20", + "completed": "2021-06-28", + "initiated": "2015-10-25", + "ministryContact": "LARKIN NATHAN", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -1239,33 +1340,28 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2014-08-27", - "completed": "2020-05-23", - "initiated": "2023-05-02", - "ministryContact": "ORTIZ MODESTA", + "createdAt": "2019-11-10", + "completed": "2023-06-24", + "initiated": "2017-06-25", + "ministryContact": "KEEBLER WILLOW", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -1276,42 +1372,42 @@ { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false } ], "participants": [ { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2020-09-04", - "startDate": "2018-12-16", + "name": "IPSUM", + "endDate": "2016-09-03", + "startDate": "2018-06-11", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2019-12-04", - "startDate": "2020-10-21", + "name": "IPSUM", + "endDate": "2022-07-18", + "startDate": "2015-08-11", "notes": "", "roles": [ "EMPLOYEE" @@ -1319,49 +1415,80 @@ "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2020-03-06", - "startDate": "2020-12-28", + "name": "AMET, DOLOR SIT", + "endDate": "2016-04-08", + "startDate": "2022-11-01", "notes": "", "roles": [ "ORGANIZATION" ], "siteRegistry": true + }, + { + "name": "IPSUM", + "endDate": "2016-03-11", + "startDate": "2015-09-17", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false } ], "suspectLandUses": [ + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2017-10-22 (described on Site Profile dated 2017-10-22)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-03-10 (described on Site Profile dated 2022-03-10)", + "notes": "INSERTED FOR SITE PROFILE DATED 2017-04-19 (described on Site Profile dated 2017-04-19)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-10-30 (described on Site Profile dated 2016-10-30)", + "notes": "INSERTED FOR SITE PROFILE DATED 2023-08-03 (described on Site Profile dated 2023-08-03)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + } + ], + "parcelDescriptions": [ + { + "siteRegistry": true, + "dateNoted": "2023-04-11", + "parcelID": "20131", + "crownLandUsePIN": "20237", + "crownLandFileNumber": "15887", + "landDescription": "LOT 1 OF LOT 3 BLOCK 1 DISTRICT LOT 1 PLAN 8771" }, { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-02-23 (described on Site Profile dated 2015-02-23)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "dateNoted": "2017-12-27", + "parcelID": "15597", + "crownLandUsePIN": "17258", + "crownLandFileNumber": "17319", + "landDescription": "LOT 2 OF LOT 3 BLOCK 5 DISTRICT LOT 4 PLAN 8583" }, { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-02-24 (described on Site Profile dated 2014-02-24)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "dateNoted": "2023-01-31", + "parcelID": "17929", + "crownLandUsePIN": "17447", + "crownLandFileNumber": "16279", + "landDescription": "LOT 2 OF LOT 4 BLOCK 1 DISTRICT LOT 3 PLAN 4006" } ], "siteDisclosures": [ { - "siteRegistry": true, - "dateReceived": "2021-01-27", - "dateCompleted": "2016-05-11", - "dateEntered": "2018-09-04", - "dateRegistrar": "2014-05-04", - "dateLocalAuthorityReceived": "2018-01-30", - "summary": "Ipsam id quia quaerat.\nImpedit ducimus pariatur repudiandae facere.\nFugit culpa recusandae ad quod exercitationem.", - "informationUsed": "Necessitatibus porro fuga reiciendis facilis amet.\nEos qui unde quis et esse provident mollitia omnis nisi.\nRepudiandae reprehenderit cum dolor provident a modi adipisci suscipit.\nVoluptatum sint quo officiis distinctio.", - "pastOrPresentOrders": "Impedit minus minus.\nSed modi quisquam voluptatem nostrum.\nNostrum ullam et dicta.", + "siteRegistry": false, + "dateReceived": "2022-03-16", + "dateCompleted": "2021-03-20", + "dateEntered": "2015-10-08", + "dateRegistrar": "2015-09-24", + "dateLocalAuthorityReceived": "2017-05-03", + "summary": "Natus vero quaerat optio consectetur.", + "informationUsed": "Nihil id deleniti voluptatum sapiente maxime ut dolorem ea.\nIpsam modi pariatur fuga pariatur modi dolorum porro assumenda laudantium.\nError ipsam alias ut repellendus unde.\nQuibusdam enim unde explicabo assumenda pariatur expedita accusantium temporibus illum.", + "pastOrPresentOrders": "Nisi quaerat delectus ex veniam ab perferendis.", "commercialAndIndustrialPurposes": [ { "scheduleReference": "F1*", @@ -1370,32 +1497,27 @@ }, { "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false }, { - "scheduleReference": "F1*", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true + "siteRegistry": false } ] }, { - "siteRegistry": false, - "dateReceived": "2020-08-26", - "dateCompleted": "2016-09-06", - "dateEntered": "2020-06-06", - "dateRegistrar": "2021-11-28", - "dateLocalAuthorityReceived": "2017-05-23", - "summary": "Nihil rerum similique praesentium.\nLaboriosam asperiores possimus vitae quos expedita doloremque.\nAt molestiae quod nam doloremque nulla.", - "informationUsed": "Fugiat esse corrupti consequatur officiis minima temporibus.\nAdipisci dignissimos doloribus.\nNon possimus provident consequatur ipsam recusandae saepe ullam magnam.", - "pastOrPresentOrders": "Labore ut officiis consequatur expedita aut labore exercitationem.", + "siteRegistry": true, + "dateReceived": "2023-07-14", + "dateCompleted": "2021-05-08", + "dateEntered": "2016-10-29", + "dateRegistrar": "2020-12-15", + "dateLocalAuthorityReceived": "2021-03-19", + "summary": "Saepe eum cupiditate.\nNostrum pariatur voluptatem ipsam error provident explicabo tempora et esse.", + "informationUsed": "Tenetur cum quod numquam enim nulla.\nModi suscipit error tempore ea officiis iusto non modi veniam.\nEsse facere ratione doloremque corrupti aspernatur nihil sequi.\nAt cupiditate facere quo dolorum.", + "pastOrPresentOrders": "At nemo quas dignissimos aliquid error maxime blanditiis.", "commercialAndIndustrialPurposes": [ - { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false - }, { "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", @@ -1403,11 +1525,6 @@ }, { "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false - }, - { - "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false } @@ -1418,94 +1535,94 @@ { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "CROOKS STEPHANIA", - "timestamp": "2014-03-15" + "user": "DONNELLY LEANNE", + "timestamp": "2015-12-11" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "CHRISTIANSEN ISABELLA", - "timestamp": "2018-11-10" + "user": "BEER WILLIAM", + "timestamp": "2018-04-17" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "TOY MERRITT", + "timestamp": "2018-11-16" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "MRAZ WILBER", + "timestamp": "2019-09-11" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "HARVEY GEOVANNY", - "timestamp": "2019-02-27" + "user": "LEANNON KILEY", + "timestamp": "2023-06-23" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "YOST KATELYNN", + "timestamp": "2014-04-06" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "ROBEL HOBART", - "timestamp": "2015-10-01" + "user": "BAHRINGER MALACHI", + "timestamp": "2020-06-04" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "FISHER LEA", - "timestamp": "2014-01-19" + "user": "MURAZIK ENOCH", + "timestamp": "2014-04-08" } ], "associatedSites": [ { - "dateNoted": "2022-02-06", + "dateNoted": "2016-08-12", "notes": "", - "parcelID": "15923", - "siteID": "20178", - "siteRegistry": true + "parcelID": "18076", + "siteID": "15761", + "siteRegistry": false + }, + { + "dateNoted": "2023-02-20", + "notes": "", + "parcelID": "18513", + "siteID": "15477", + "siteRegistry": false } ] }, { - "uuid": "b2d77b76-1485-4add-b82f-8b6c3a60c511", - "siteID": 19117, - "address": "322 Dean Avenue", - "latitude": 55.1378, - "longitude": -129.2486, - "lastUpdated": "2015-05-28", - "city": "South Shyannfurt", - "region": "Kootenay", - "victoriaFile": "26250-20/4401", + "uuid": "ca91864d-214e-401c-b63f-b4475ffe597d", + "siteID": 17572, + "address": "139 Pagac Forest", + "latitude": 57.5203, + "longitude": -120.4885, + "lastUpdated": "2015-06-10", + "city": "Rolfsonbury", + "region": "Vancouver Island/Coast", + "victoriaFile": "26250-20/19568", "regionalFile": "N/A", "parcelIDs": [ - 4762515, - 2391823, - 9715575, - 1063795, - 813438 + 3995790, + 4450198, + 3086429, + 636780, + 9512501 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2017-11-25", - "completed": "2020-07-02", - "initiated": "2014-05-05", - "ministryContact": "HAMILL TURNER", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - } - ], - "siteRegistry": true - }, - { - "createdAt": "2016-10-11", - "completed": "2019-12-04", - "initiated": "2022-12-20", - "ministryContact": "BREKKE-CRONA COLEMAN", + "createdAt": "2016-04-20", + "completed": "2015-05-12", + "initiated": "2014-08-25", + "ministryContact": "MANTE MARISOL", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -1514,23 +1631,28 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2015-10-13", - "completed": "2017-01-26", - "initiated": "2018-07-22", - "ministryContact": "CRONIN JOSH", + "createdAt": "2017-01-28", + "completed": "2015-09-03", + "initiated": "2014-04-18", + "ministryContact": "WILLIAMSON RAPHAELLE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -1538,16 +1660,6 @@ "" ], "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", @@ -1556,11 +1668,6 @@ { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", "siteRegistry": false } ], @@ -1569,29 +1676,29 @@ ], "participants": [ { - "name": "AMET, DOLOR SIT", - "endDate": "2014-08-31", - "startDate": "2020-05-26", + "name": "IPSUM", + "endDate": "2021-01-10", + "startDate": "2022-08-16", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": false + "siteRegistry": true }, { - "name": "AMET, DOLOR SIT", - "endDate": "2023-03-08", - "startDate": "2018-03-05", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2022-10-22", + "startDate": "2020-12-29", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": false + "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2015-11-05", - "startDate": "2021-09-01", + "name": "AMET, DOLOR SIT", + "endDate": "2018-09-23", + "startDate": "2022-11-06", "notes": "", "roles": [ "ORGANIZATION" @@ -1599,9 +1706,9 @@ "siteRegistry": true }, { - "name": "IPSUM", - "endDate": "2017-06-13", - "startDate": "2015-10-23", + "name": "AMET, DOLOR SIT", + "endDate": "2022-06-06", + "startDate": "2015-05-18", "notes": "", "roles": [ "ORGANIZATION" @@ -1609,57 +1716,89 @@ "siteRegistry": false }, { - "name": "IPSUM", - "endDate": "2023-01-06", - "startDate": "2019-09-13", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2018-02-28", + "startDate": "2021-08-13", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": false + "siteRegistry": true } ], "suspectLandUses": [ { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-12-21 (described on Site Profile dated 2017-12-21)", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2016-01-08 (described on Site Profile dated 2016-01-08)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2021-05-03 (described on Site Profile dated 2021-05-03)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + } + ], + "parcelDescriptions": [ { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2020-02-25 (described on Site Profile dated 2020-02-25)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "dateNoted": "2022-07-23", + "parcelID": "17187", + "crownLandUsePIN": "18147", + "crownLandFileNumber": "17159", + "landDescription": "LOT 3 OF LOT 5 BLOCK 3 DISTRICT LOT 4 PLAN 6376" }, { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2023-09-14 (described on Site Profile dated 2023-09-14)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "siteRegistry": true, + "dateNoted": "2017-02-12", + "parcelID": "17567", + "crownLandUsePIN": "17702", + "crownLandFileNumber": "16533", + "landDescription": "LOT 1 OF LOT 1 BLOCK 2 DISTRICT LOT 2 PLAN 5155" + }, + { + "siteRegistry": true, + "dateNoted": "2021-05-05", + "parcelID": "17871", + "crownLandUsePIN": "17588", + "crownLandFileNumber": "20060", + "landDescription": "LOT 1 OF LOT 5 BLOCK 5 DISTRICT LOT 5 PLAN 6342" + }, + { + "siteRegistry": true, + "dateNoted": "2014-04-16", + "parcelID": "16877", + "crownLandUsePIN": "17346", + "crownLandFileNumber": "18914", + "landDescription": "LOT 5 OF LOT 3 BLOCK 2 DISTRICT LOT 4 PLAN 6338" + }, + { + "siteRegistry": true, + "dateNoted": "2019-11-07", + "parcelID": "20111", + "crownLandUsePIN": "19269", + "crownLandFileNumber": "17436", + "landDescription": "LOT 1 OF LOT 1 BLOCK 2 DISTRICT LOT 2 PLAN 6154" } ], "siteDisclosures": [ { - "siteRegistry": false, - "dateReceived": "2017-06-21", - "dateCompleted": "2021-10-15", - "dateEntered": "2018-08-18", - "dateRegistrar": "2022-06-25", - "dateLocalAuthorityReceived": "2018-12-26", - "summary": "Incidunt temporibus et rerum.\nIllo consequatur corporis officia perferendis ducimus voluptates autem.", - "informationUsed": "Excepturi accusamus delectus.\nPerspiciatis exercitationem id.\nNon iste quae mollitia distinctio odio repellat pariatur laboriosam.\nEa est sapiente.", - "pastOrPresentOrders": "Placeat illo molestias maxime ea.\nMolestias magni totam ex aliquid.\nMolestiae ipsam eum totam nesciunt est porro.", + "siteRegistry": true, + "dateReceived": "2022-05-28", + "dateCompleted": "2016-06-10", + "dateEntered": "2014-10-28", + "dateRegistrar": "2019-05-17", + "dateLocalAuthorityReceived": "2021-03-10", + "summary": "Sunt laborum natus deleniti dolorem nam nihil sed.\nCulpa asperiores fuga.\nDoloribus rem repellat atque cupiditate architecto.", + "informationUsed": "Optio quaerat exercitationem iure ullam.\nLaboriosam sunt repudiandae repudiandae autem eum excepturi.\nQuam sapiente maxime.\nVelit blanditiis maxime dolores debitis eligendi dolores iste sint.\nDeleniti saepe doloribus.", + "pastOrPresentOrders": "Architecto autem a eligendi animi illo.\nDolorum illum optio ex aut voluptates.", "commercialAndIndustrialPurposes": [ - { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false - }, { "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true }, { - "scheduleReference": "F2*", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false } @@ -1667,27 +1806,22 @@ }, { "siteRegistry": true, - "dateReceived": "2016-09-21", - "dateCompleted": "2019-06-10", - "dateEntered": "2023-09-29", - "dateRegistrar": "2014-10-13", - "dateLocalAuthorityReceived": "2016-07-04", - "summary": "Earum quae voluptate aliquam maxime aliquid libero necessitatibus perspiciatis.\nEum rem itaque quod tempore beatae reprehenderit modi voluptatum repellat.\nSapiente repellendus vel earum sed fugit fugit.", - "informationUsed": "Nulla iste suscipit quaerat.\nQuos eum accusantium ipsa aspernatur corporis minus.\nAssumenda quisquam veniam molestiae id dolor.", - "pastOrPresentOrders": "Ab laborum ad dignissimos nihil voluptatibus molestias molestias saepe perferendis.", + "dateReceived": "2016-08-27", + "dateCompleted": "2021-06-01", + "dateEntered": "2016-06-18", + "dateRegistrar": "2017-04-21", + "dateLocalAuthorityReceived": "2014-08-12", + "summary": "Dolore et omnis.\nEnim ipsum voluptatem id totam dolorum enim porro.", + "informationUsed": "Aut expedita expedita.\nSed reiciendis praesentium facilis nostrum.\nDebitis nobis voluptate.\nAspernatur quibusdam dolorem quos porro vitae.\nCorrupti aliquam perferendis ut explicabo.", + "pastOrPresentOrders": "Quos officia expedita dolor veniam quos.\nOptio maxime possimus fugit.\nPossimus eligendi sequi ipsum deserunt velit reiciendis expedita magnam.", "commercialAndIndustrialPurposes": [ { - "scheduleReference": "F2*", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false - }, - { - "scheduleReference": "F1*", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false } @@ -1698,88 +1832,82 @@ { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "ROGAHN WALKER", - "timestamp": "2014-12-06" - }, - { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "RUNOLFSDOTTIR MAUREEN", - "timestamp": "2016-11-21" + "user": "DICKINSON ROCKY", + "timestamp": "2020-01-19" }, { - "siteRegistry": true, + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "WALTER TERRY", - "timestamp": "2017-11-22" + "user": "LYNCH DORCAS", + "timestamp": "2019-01-04" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "LEHNER DEON", - "timestamp": "2018-08-02" + "user": "NADER LEONIE", + "timestamp": "2018-12-03" }, { - "siteRegistry": true, + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "KING-MERTZ MISAEL", - "timestamp": "2023-02-01" + "user": "BAHRINGER FLORENCIO", + "timestamp": "2014-02-07" }, { - "siteRegistry": true, + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "KOVACEK BROOKE", - "timestamp": "2021-02-23" + "user": "WILLMS VITA", + "timestamp": "2018-03-26" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "GREENFELDER GARNETT", - "timestamp": "2017-05-17" + "user": "ROMAGUERA JAYNE", + "timestamp": "2014-06-08" } ], "associatedSites": [ { - "dateNoted": "2017-03-06", + "dateNoted": "2017-06-04", "notes": "", - "parcelID": "20692", - "siteID": "20921", + "parcelID": "20701", + "siteID": "16605", "siteRegistry": false }, { - "dateNoted": "2021-01-19", + "dateNoted": "2018-11-05", "notes": "", - "parcelID": "18162", - "siteID": "16758", + "parcelID": "17523", + "siteID": "16952", "siteRegistry": true } ] }, { - "uuid": "ed352618-5ff5-4275-82e8-5acea66e8a53", - "siteID": 20586, - "address": "80706 Elian Street", - "latitude": 52.9563, - "longitude": -133.2998, - "lastUpdated": "2015-02-14", - "city": "Corkeryhaven", - "region": "Mainland/Southwest", - "victoriaFile": "26250-20/4428", + "uuid": "0be05bd9-0f0b-4af3-b4c2-9c5baba0e434", + "siteID": 16447, + "address": "2868 Athena Rapids", + "latitude": 53.0109, + "longitude": -129.4181, + "lastUpdated": "2023-09-04", + "city": "Bloomington", + "region": "Kootenay", + "victoriaFile": "26250-20/9183", "regionalFile": "N/A", "parcelIDs": [ - 6571803, - 9407281, - 1193554, - 4535129, - 9503173 + 8534155, + 6424837, + 6666013, + 4750834, + 8258964 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2017-09-25", - "completed": "2023-07-22", - "initiated": "2018-02-19", - "ministryContact": "MAYERT KATARINA", + "createdAt": "2022-05-02", + "completed": "2014-10-21", + "initiated": "2016-10-09", + "ministryContact": "MURAZIK NETTIE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -1788,7 +1916,12 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true }, @@ -1796,30 +1929,80 @@ "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "createdAt": "2019-03-03", + "completed": "2016-07-27", + "initiated": "2022-03-24", + "ministryContact": "MCGLYNN PATTIE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "createdAt": "2014-09-23", + "completed": "2019-06-18", + "initiated": "2018-05-08", + "ministryContact": "ALTENWERTH KATHERYN", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2022-12-04", - "completed": "2016-03-06", - "initiated": "2019-03-25", - "ministryContact": "LINDGREN FREDDIE", + "createdAt": "2023-09-17", + "completed": "2023-03-11", + "initiated": "2023-07-29", + "ministryContact": "SCHMITT HORTENSE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -1828,7 +2011,22 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false }, @@ -1841,10 +2039,10 @@ "siteRegistry": true }, { - "createdAt": "2019-04-07", - "completed": "2023-08-08", - "initiated": "2020-09-14", - "ministryContact": "FEEST THERESE", + "createdAt": "2020-12-01", + "completed": "2019-06-25", + "initiated": "2021-03-18", + "ministryContact": "ALTENWERTH ALBIN", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -1855,15 +2053,15 @@ { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true } @@ -1872,70 +2070,98 @@ } ], "participants": [ + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2019-07-13", + "startDate": "2017-03-23", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, { "name": "AMET, DOLOR SIT", - "endDate": "2018-06-09", - "startDate": "2017-12-12", + "endDate": "2019-06-21", + "startDate": "2019-12-15", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": false + "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2017-08-01", - "startDate": "2013-11-21", + "name": "IPSUM", + "endDate": "2017-07-29", + "startDate": "2018-06-22", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2018-03-07", + "startDate": "2020-03-01", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true } ], "suspectLandUses": [ { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-12-03 (described on Site Profile dated 2018-12-03)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "notes": "INSERTED FOR SITE PROFILE DATED 2017-10-18 (described on Site Profile dated 2017-10-18)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-01-10 (described on Site Profile dated 2017-01-10)", + "notes": "INSERTED FOR SITE PROFILE DATED 2022-08-15 (described on Site Profile dated 2022-08-15)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-03-22 (described on Site Profile dated 2022-03-22)", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2014-08-25 (described on Site Profile dated 2014-08-25)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" - }, + } + ], + "parcelDescriptions": [ { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-06-06 (described on Site Profile dated 2014-06-06)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "siteRegistry": false, + "dateNoted": "2023-01-30", + "parcelID": "15943", + "crownLandUsePIN": "15769", + "crownLandFileNumber": "16987", + "landDescription": "LOT 3 OF LOT 1 BLOCK 2 DISTRICT LOT 5 PLAN 5089" }, { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-07-21 (described on Site Profile dated 2017-07-21)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "dateNoted": "2017-10-06", + "parcelID": "19547", + "crownLandUsePIN": "15832", + "crownLandFileNumber": "16255", + "landDescription": "LOT 2 OF LOT 3 BLOCK 2 DISTRICT LOT 2 PLAN 3489" } ], "siteDisclosures": [ { - "siteRegistry": true, - "dateReceived": "2021-04-14", - "dateCompleted": "2016-01-10", - "dateEntered": "2016-03-25", - "dateRegistrar": "2016-03-30", - "dateLocalAuthorityReceived": "2022-02-19", - "summary": "Impedit ut odio in harum provident nihil autem repudiandae labore.\nReiciendis eum nisi debitis.\nAccusamus quidem blanditiis iste omnis.", - "informationUsed": "Dolor totam deleniti tempore.\nCorrupti odit error.\nQuia repellendus inventore.\nPlaceat deserunt tempore beatae perferendis nam nulla praesentium.\nPlaceat sequi rerum inventore explicabo itaque nihil ea quas.", - "pastOrPresentOrders": "Tenetur corporis temporibus velit debitis nihil minus nobis.\nSimilique in iste voluptatibus qui ipsum blanditiis repellat.\nNumquam autem molestiae necessitatibus explicabo repellendus similique veritatis similique.", + "siteRegistry": false, + "dateReceived": "2022-11-27", + "dateCompleted": "2019-09-07", + "dateEntered": "2023-02-13", + "dateRegistrar": "2020-06-24", + "dateLocalAuthorityReceived": "2020-07-12", + "summary": "Tempora impedit fugiat praesentium molestias vel esse aliquam minima.\nVel sit earum autem sequi.\nAd laboriosam molestiae vero quisquam eveniet aspernatur saepe unde possimus.", + "informationUsed": "Laboriosam nostrum eum possimus non ipsum a voluptates laborum.\nEst inventore et nam quidem rerum similique quidem minima.\nUnde quasi exercitationem inventore in.\nCulpa maiores modi hic expedita doloribus.", + "pastOrPresentOrders": "Omnis fugit exercitationem dignissimos iusto incidunt labore tenetur.", "commercialAndIndustrialPurposes": [ { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false }, { "scheduleReference": "F1*", @@ -1946,34 +2172,24 @@ "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true - }, - { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true } ] }, { "siteRegistry": false, - "dateReceived": "2013-11-02", - "dateCompleted": "2017-01-17", - "dateEntered": "2019-10-28", - "dateRegistrar": "2015-11-14", - "dateLocalAuthorityReceived": "2018-01-28", - "summary": "Aliquam id fugit omnis laboriosam placeat.\nIure iste voluptate.", - "informationUsed": "Aperiam repudiandae voluptas dignissimos inventore quaerat quisquam blanditiis repudiandae.\nNatus nobis repellat ad sequi nesciunt id.\nIusto provident tempora.\nDoloremque nam quam vel aliquid.", - "pastOrPresentOrders": "Aut ex id suscipit.", + "dateReceived": "2023-05-12", + "dateCompleted": "2021-08-08", + "dateEntered": "2016-09-12", + "dateRegistrar": "2019-10-16", + "dateLocalAuthorityReceived": "2018-12-28", + "summary": "Tempora officiis soluta quisquam molestias asperiores qui excepturi alias iure.\nQuidem animi debitis labore hic earum.\nOdit amet enim beatae facere explicabo voluptatibus corporis assumenda.", + "informationUsed": "Illo aspernatur enim nostrum explicabo facilis at unde earum quaerat.\nDolor sed voluptatum alias rem distinctio sint doloremque illo.\nInventore adipisci facere aut maiores excepturi quisquam velit.\nPerspiciatis amet sequi.\nMolestiae repellat harum exercitationem sapiente quae deserunt inventore nostrum.", + "pastOrPresentOrders": "Illum sapiente illo.", "commercialAndIndustrialPurposes": [ { "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true - }, - { - "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false + "siteRegistry": true }, { "scheduleReference": "F1*", @@ -1981,7 +2197,7 @@ "siteRegistry": true }, { - "scheduleReference": "F1*", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true } @@ -1992,94 +2208,75 @@ { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "ADAMS IMANI", - "timestamp": "2018-04-04" - }, - { - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "ROGAHN DOLORES", - "timestamp": "2017-04-05" + "user": "BOGAN-ORN MERTIE", + "timestamp": "2018-07-09" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "FRAMI EVE", - "timestamp": "2017-06-08" + "user": "HEANEY OLIN", + "timestamp": "2015-03-18" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "QUITZON CIELO", - "timestamp": "2019-05-13" - }, - { - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "POWLOWSKI ASHTYN", - "timestamp": "2015-02-24" + "user": "HEATHCOTE CALE", + "timestamp": "2019-01-30" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "GUTMANN ROGERS", - "timestamp": "2014-01-12" + "user": "PFEFFER VINCENZO", + "timestamp": "2014-07-16" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "BOYLE TREMAINE", - "timestamp": "2018-08-22" + "user": "SHIELDS CEDRICK", + "timestamp": "2022-07-07" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "REICHERT ANIKA", - "timestamp": "2022-07-07" + "user": "LOCKMAN VINCENZA", + "timestamp": "2013-12-22" } ], "associatedSites": [ { - "dateNoted": "2014-06-20", + "dateNoted": "2017-04-15", "notes": "", - "parcelID": "18657", - "siteID": "18231", + "parcelID": "19783", + "siteID": "15826", "siteRegistry": false - }, - { - "dateNoted": "2022-02-22", - "notes": "", - "parcelID": "16914", - "siteID": "20194", - "siteRegistry": true } ] }, { - "uuid": "008300bb-1a18-49a8-a908-db40565d897c", - "siteID": 18030, - "address": "599 Huel Row", - "latitude": 48.1842, - "longitude": -125.2429, - "lastUpdated": "2023-09-05", - "city": "West Helene", - "region": "Mainland/Southwest", - "victoriaFile": "26250-20/2380", + "uuid": "75edd8d8-f901-4242-9126-713006a3ebf3", + "siteID": 15563, + "address": "2035 Larkin Light", + "latitude": 53.1731, + "longitude": -122.3876, + "lastUpdated": "2019-03-25", + "city": "East Marisolside", + "region": "Vancouver Island/Coast", + "victoriaFile": "26250-20/19452", "regionalFile": "N/A", "parcelIDs": [ - 7405030, - 6916312, - 8231166, - 2298568, - 6731343 + 2275061, + 3593337, + 9863572, + 5703946, + 3201286 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2020-09-25", - "completed": "2020-07-26", - "initiated": "2015-11-14", - "ministryContact": "LANG DONNA", + "createdAt": "2020-08-26", + "completed": "2016-06-03", + "initiated": "2013-12-13", + "ministryContact": "ROSENBAUM VADA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -2088,23 +2285,48 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "createdAt": "2020-09-23", + "completed": "2018-04-05", + "initiated": "2016-08-06", + "ministryContact": "KIEHN JEWELL", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2021-12-13", - "completed": "2014-02-13", - "initiated": "2015-04-16", - "ministryContact": "LAKIN KALEY", + "createdAt": "2015-10-07", + "completed": "2014-01-08", + "initiated": "2019-03-14", + "ministryContact": "HARBER CODY", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -2119,23 +2341,23 @@ }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false } ], "participants": [ { - "name": "AMET, DOLOR SIT", - "endDate": "2022-04-03", - "startDate": "2020-05-17", + "name": "IPSUM", + "endDate": "2017-09-18", + "startDate": "2022-11-20", "notes": "", "roles": [ "ORGANIZATION" @@ -2143,9 +2365,9 @@ "siteRegistry": false }, { - "name": "IPSUM", - "endDate": "2017-04-04", - "startDate": "2015-11-27", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2021-01-15", + "startDate": "2020-09-22", "notes": "", "roles": [ "ORGANIZATION" @@ -2153,9 +2375,9 @@ "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2014-08-10", - "startDate": "2015-05-24", + "name": "AMET, DOLOR SIT", + "endDate": "2014-02-04", + "startDate": "2020-01-09", "notes": "", "roles": [ "EMPLOYEE" @@ -2164,58 +2386,91 @@ }, { "name": "IPSUM", - "endDate": "2016-06-08", - "startDate": "2016-11-02", + "endDate": "2019-04-19", + "startDate": "2017-08-16", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false } ], "suspectLandUses": [ + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2021-05-02 (described on Site Profile dated 2021-05-02)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-05-19 (described on Site Profile dated 2022-05-19)", + "notes": "INSERTED FOR SITE PROFILE DATED 2017-11-14 (described on Site Profile dated 2017-11-14)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-09-10 (described on Site Profile dated 2018-09-10)", + "notes": "INSERTED FOR SITE PROFILE DATED 2020-02-13 (described on Site Profile dated 2020-02-13)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-03-21 (described on Site Profile dated 2021-03-21)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "notes": "INSERTED FOR SITE PROFILE DATED 2018-06-01 (described on Site Profile dated 2018-06-01)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2023-02-26 (described on Site Profile dated 2023-02-26)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "notes": "INSERTED FOR SITE PROFILE DATED 2018-05-11 (described on Site Profile dated 2018-05-11)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + } + ], + "parcelDescriptions": [ + { + "siteRegistry": true, + "dateNoted": "2019-06-27", + "parcelID": "19151", + "crownLandUsePIN": "16907", + "crownLandFileNumber": "15567", + "landDescription": "LOT 4 OF LOT 2 BLOCK 4 DISTRICT LOT 1 PLAN 6870" + }, + { + "siteRegistry": true, + "dateNoted": "2014-08-26", + "parcelID": "17216", + "crownLandUsePIN": "16270", + "crownLandFileNumber": "19086", + "landDescription": "LOT 3 OF LOT 5 BLOCK 3 DISTRICT LOT 5 PLAN 5783" } ], "siteDisclosures": [ { "siteRegistry": true, - "dateReceived": "2020-12-25", - "dateCompleted": "2020-04-21", - "dateEntered": "2020-07-25", - "dateRegistrar": "2015-08-21", - "dateLocalAuthorityReceived": "2017-11-08", - "summary": "Corporis corporis illo odio et provident odio iusto atque.", - "informationUsed": "Voluptas incidunt ea sed ab atque totam saepe.\nSed explicabo accusamus iure consequuntur maiores natus.\nNostrum cupiditate beatae reiciendis autem illo.", - "pastOrPresentOrders": "Asperiores qui enim iusto aperiam omnis soluta recusandae ea.\nRecusandae explicabo quia cum atque quam.", + "dateReceived": "2021-12-25", + "dateCompleted": "2014-07-20", + "dateEntered": "2018-04-27", + "dateRegistrar": "2020-03-04", + "dateLocalAuthorityReceived": "2019-08-26", + "summary": "Quo tenetur magnam quis dolorem.\nMinus asperiores fuga quisquam facilis ad praesentium.\nOdit necessitatibus eaque dolorum maiores vitae officia.", + "informationUsed": "Quasi totam odio facere.\nDoloribus dolorum voluptatem sit saepe veritatis fugit debitis.\nFacilis esse accusamus consectetur.\nAspernatur facere eius corrupti dolorum consequuntur placeat in libero at.", + "pastOrPresentOrders": "Possimus delectus distinctio esse cupiditate iste sed suscipit.", "commercialAndIndustrialPurposes": [ { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, { "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false } ] } @@ -2224,95 +2479,89 @@ { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "BOYLE-WIEGAND NATHANAEL", - "timestamp": "2018-01-13" + "user": "LITTLE CLAUD", + "timestamp": "2016-10-07" }, { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "RODRIGUEZ BO", - "timestamp": "2014-05-12" + "user": "POWLOWSKI BART", + "timestamp": "2016-06-07" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "HACKETT ROSALINDA", - "timestamp": "2017-06-28" + "user": "STEUBER THERESA", + "timestamp": "2023-05-04" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "DICKINSON PATIENCE", - "timestamp": "2020-10-16" + "user": "O'KEEFE ALANIS", + "timestamp": "2016-09-14" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "BOGISICH LURA", - "timestamp": "2014-07-11" - }, - { - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "BRAKUS ODESSA", - "timestamp": "2021-03-15" + "user": "MONAHAN LINDSAY", + "timestamp": "2019-01-30" }, { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "ABBOTT REBECA", - "timestamp": "2020-01-10" + "user": "AUER FILIBERTO", + "timestamp": "2016-08-24" } ], "associatedSites": [ { - "dateNoted": "2017-09-20", + "dateNoted": "2022-02-04", "notes": "", - "parcelID": "17392", - "siteID": "18625", - "siteRegistry": true + "parcelID": "17131", + "siteID": "19847", + "siteRegistry": false }, { - "dateNoted": "2017-09-10", + "dateNoted": "2016-07-11", "notes": "", - "parcelID": "20067", - "siteID": "17118", - "siteRegistry": false + "parcelID": "15478", + "siteID": "16602", + "siteRegistry": true }, { - "dateNoted": "2019-12-13", + "dateNoted": "2022-06-21", "notes": "", - "parcelID": "15727", - "siteID": "16617", + "parcelID": "19380", + "siteID": "20722", "siteRegistry": false } ] }, { - "uuid": "d4dcbbcb-ac00-4bf0-a574-771c9e87da79", - "siteID": 20137, - "address": "9252 Macejkovic Keys", - "latitude": 58.3638, - "longitude": -132.3258, - "lastUpdated": "2022-05-11", - "city": "Percivalland", + "uuid": "4d9e7e89-264f-43ea-9eff-cda6ac7f20c4", + "siteID": 16602, + "address": "858 West Court", + "latitude": 52.4457, + "longitude": -135.9739, + "lastUpdated": "2020-03-12", + "city": "Waelchiboro", "region": "Kootenay", - "victoriaFile": "26250-20/8491", + "victoriaFile": "26250-20/1563", "regionalFile": "N/A", "parcelIDs": [ - 7569109, - 8849010, - 8235364, - 5970263, - 847909 + 1212349, + 2214121, + 3379600, + 7366048, + 7933816 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2020-03-13", - "completed": "2019-10-25", - "initiated": "2019-06-30", - "ministryContact": "BOTSFORD GUS", + "createdAt": "2017-03-03", + "completed": "2020-11-04", + "initiated": "2016-08-05", + "ministryContact": "EFFERTZ ROSETTA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -2322,16 +2571,36 @@ "notationParticipants": [ { "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false + "role": "REQUESTED BY", + "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "createdAt": "2023-01-05", + "completed": "2016-07-18", + "initiated": "2013-12-09", + "ministryContact": "TURCOTTE BLAISE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true } @@ -2339,10 +2608,10 @@ "siteRegistry": false }, { - "createdAt": "2016-09-25", - "completed": "2020-11-06", - "initiated": "2022-01-28", - "ministryContact": "O'HARA JOEL", + "createdAt": "2019-08-15", + "completed": "2023-02-26", + "initiated": "2018-05-22", + "ministryContact": "MRAZ LAVERNA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -2350,20 +2619,25 @@ "" ], "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false + "role": "REQUESTED BY", + "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", @@ -2376,39 +2650,29 @@ ], "participants": [ { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2015-05-27", - "startDate": "2020-09-09", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2015-07-01", + "startDate": "2022-01-10", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": true + "siteRegistry": false }, { - "name": "AMET, DOLOR SIT", - "endDate": "2019-03-04", - "startDate": "2016-05-27", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2022-08-04", + "startDate": "2015-08-01", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2019-12-15", - "startDate": "2016-01-18", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2017-06-10", - "startDate": "2021-05-03", + "name": "IPSUM", + "endDate": "2018-05-16", + "startDate": "2017-10-02", "notes": "", "roles": [ "EMPLOYEE" @@ -2418,42 +2682,63 @@ ], "suspectLandUses": [ { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-08-12 (described on Site Profile dated 2016-08-12)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2022-01-26 (described on Site Profile dated 2022-01-26)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-07-01 (described on Site Profile dated 2014-07-01)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2014-07-15 (described on Site Profile dated 2014-07-15)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + } + ], + "parcelDescriptions": [ + { + "siteRegistry": false, + "dateNoted": "2016-11-14", + "parcelID": "16011", + "crownLandUsePIN": "17173", + "crownLandFileNumber": "20766", + "landDescription": "LOT 4 OF LOT 2 BLOCK 1 DISTRICT LOT 3 PLAN 9603" }, { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-08-09 (described on Site Profile dated 2022-08-09)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "dateNoted": "2023-01-29", + "parcelID": "15287", + "crownLandUsePIN": "15750", + "crownLandFileNumber": "17527", + "landDescription": "LOT 5 OF LOT 4 BLOCK 5 DISTRICT LOT 5 PLAN 4150" }, { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-03-25 (described on Site Profile dated 2014-03-25)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "dateNoted": "2015-02-18", + "parcelID": "18300", + "crownLandUsePIN": "18497", + "crownLandFileNumber": "15864", + "landDescription": "LOT 3 OF LOT 5 BLOCK 4 DISTRICT LOT 5 PLAN 6125" } ], "siteDisclosures": [ { - "siteRegistry": true, - "dateReceived": "2018-12-07", - "dateCompleted": "2014-07-04", - "dateEntered": "2017-08-19", - "dateRegistrar": "2021-02-18", - "dateLocalAuthorityReceived": "2014-10-28", - "summary": "Asperiores nesciunt aspernatur.\nExpedita illo voluptate quae laborum ut laudantium et atque laudantium.\nRepellat fugit veniam magnam.", - "informationUsed": "Voluptas eius saepe soluta impedit quaerat accusamus.\nError explicabo sapiente quas sint tenetur non ab repellat culpa.\nAspernatur dolore quibusdam animi corporis totam autem inventore nihil velit.\nDeleniti fugiat et libero earum debitis error accusantium.\nId deserunt ducimus dolorem quisquam.", - "pastOrPresentOrders": "Laborum eum et reprehenderit vel qui quaerat ex reprehenderit.", + "siteRegistry": false, + "dateReceived": "2019-09-08", + "dateCompleted": "2013-12-18", + "dateEntered": "2017-01-09", + "dateRegistrar": "2020-01-11", + "dateLocalAuthorityReceived": "2020-11-30", + "summary": "Nihil totam neque.\nQuidem sapiente a id nisi nisi.", + "informationUsed": "Libero in nemo.\nLabore culpa praesentium nesciunt.\nOmnis aut qui ipsam quasi quam autem fugit recusandae accusantium.\nAt accusantium ad minus dolorum neque dicta veritatis.\nIusto facilis repudiandae dolorum assumenda dolorem ut veritatis suscipit ullam.", + "pastOrPresentOrders": "Nostrum quo qui placeat aliquid impedit.\nVoluptatum nisi ullam ratione.\nAutem quod unde.", "commercialAndIndustrialPurposes": [ { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false }, { "scheduleReference": "F2*", @@ -2467,95 +2752,81 @@ { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "SANFORD EWELL", - "timestamp": "2014-03-21" + "user": "HAUCK OMER", + "timestamp": "2019-07-19" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "BARTOLETTI ARNO", - "timestamp": "2023-03-19" + "user": "PFEFFER VICTORIA", + "timestamp": "2022-01-07" }, { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "FAHEY MODESTO", - "timestamp": "2017-01-26" + "user": "ROHAN GREGORIO", + "timestamp": "2023-06-20" }, { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "STARK TESS", - "timestamp": "2022-01-23" + "user": "CONN JACKLYN", + "timestamp": "2022-06-26" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "WEHNER KHALID", - "timestamp": "2017-02-08" + "user": "GREENHOLT BROOKS", + "timestamp": "2016-06-26" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "HALEY KIP", - "timestamp": "2015-06-09" + "user": "MULLER DERECK", + "timestamp": "2015-10-30" }, { - "siteRegistry": true, + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "HICKLE ADRIEN", - "timestamp": "2016-05-26" + "user": "KOCH STEPHANIA", + "timestamp": "2020-04-01" } ], "associatedSites": [ { - "dateNoted": "2016-11-21", - "notes": "", - "parcelID": "18225", - "siteID": "17309", - "siteRegistry": false - }, - { - "dateNoted": "2016-11-05", + "dateNoted": "2016-01-21", "notes": "", - "parcelID": "19007", - "siteID": "16922", + "parcelID": "18465", + "siteID": "19608", "siteRegistry": true - }, - { - "dateNoted": "2020-06-29", - "notes": "", - "parcelID": "17098", - "siteID": "19077", - "siteRegistry": false } ] }, { - "uuid": "36e735d7-ffb5-4e79-946c-38b244544916", - "siteID": 20966, - "address": "44306 Kyleigh Lights", - "latitude": 55.6286, - "longitude": -138.7257, - "lastUpdated": "2023-03-19", - "city": "North Arch", - "region": "Cariboo", - "victoriaFile": "26250-20/10722", + "uuid": "e585bd9f-655e-43d7-8936-f96e4ebd6a35", + "siteID": 15477, + "address": "910 Mills Prairie", + "latitude": 58.1319, + "longitude": -130.4263, + "lastUpdated": "2019-11-07", + "city": "Camarillo", + "region": " North Coast", + "victoriaFile": "26250-20/10778", "regionalFile": "N/A", "parcelIDs": [ - 7394751, - 7005625, - 8699872, - 181921, - 4496057 + 1841448, + 1145025, + 9816155, + 2861727, + 1800790 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2015-08-20", - "completed": "2023-04-03", - "initiated": "2019-03-31", - "ministryContact": "MULLER MORTON", + "createdAt": "2023-03-13", + "completed": "2016-07-31", + "initiated": "2020-04-21", + "ministryContact": "SMITH BROWN", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -2565,39 +2836,14 @@ "notationParticipants": [ { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false - } - ], - "siteRegistry": true - }, - { - "createdAt": "2018-01-24", - "completed": "2014-09-17", - "initiated": "2022-01-24", - "ministryContact": "SCHULIST BRYCE", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ + "siteRegistry": true + }, { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", @@ -2611,21 +2857,16 @@ { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false } ], "siteRegistry": false }, { - "createdAt": "2016-05-12", - "completed": "2013-12-19", - "initiated": "2013-10-20", - "ministryContact": "SCHOEN ELEAZAR", + "createdAt": "2019-01-25", + "completed": "2016-11-20", + "initiated": "2020-05-27", + "ministryContact": "O'CONNELL SOPHIE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -2639,43 +2880,18 @@ "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - } - ], - "siteRegistry": true - }, - { - "createdAt": "2019-08-06", - "completed": "2017-04-24", - "initiated": "2014-06-03", - "ministryContact": "LEGROS QUINN", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", "siteRegistry": false } ], @@ -2683,70 +2899,129 @@ } ], "participants": [ + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2015-10-25", + "startDate": "2023-07-11", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2013-12-05", + "startDate": "2019-12-31", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, { "name": "IPSUM", - "endDate": "2022-03-16", - "startDate": "2020-04-30", + "endDate": "2020-02-25", + "startDate": "2014-02-26", "notes": "", "roles": [ "EMPLOYEE" ], "siteRegistry": false }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2022-03-28", + "startDate": "2015-11-10", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, { "name": "IPSUM", - "endDate": "2016-04-11", - "startDate": "2021-05-31", + "endDate": "2020-12-24", + "startDate": "2021-11-26", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": false + "siteRegistry": true } ], "suspectLandUses": [ { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-07-10 (described on Site Profile dated 2021-07-10)", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2018-07-19 (described on Site Profile dated 2018-07-19)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-12-02 (described on Site Profile dated 2021-12-02)", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2022-12-05 (described on Site Profile dated 2022-12-05)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-04-20 (described on Site Profile dated 2018-04-20)", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2013-12-28 (described on Site Profile dated 2013-12-28)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2023-04-27 (described on Site Profile dated 2023-04-27)", + "notes": "INSERTED FOR SITE PROFILE DATED 2022-11-26 (described on Site Profile dated 2022-11-26)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], - "siteDisclosures": [ + "parcelDescriptions": [ + { + "siteRegistry": false, + "dateNoted": "2021-03-02", + "parcelID": "15238", + "crownLandUsePIN": "18975", + "crownLandFileNumber": "20488", + "landDescription": "LOT 4 OF LOT 2 BLOCK 4 DISTRICT LOT 2 PLAN 6480" + }, + { + "siteRegistry": true, + "dateNoted": "2018-10-16", + "parcelID": "16374", + "crownLandUsePIN": "15873", + "crownLandFileNumber": "15325", + "landDescription": "LOT 1 OF LOT 2 BLOCK 2 DISTRICT LOT 1 PLAN 7854" + }, + { + "siteRegistry": false, + "dateNoted": "2015-07-02", + "parcelID": "15910", + "crownLandUsePIN": "17610", + "crownLandFileNumber": "16535", + "landDescription": "LOT 1 OF LOT 2 BLOCK 3 DISTRICT LOT 4 PLAN 3671" + }, { "siteRegistry": false, - "dateReceived": "2023-06-13", - "dateCompleted": "2014-10-14", - "dateEntered": "2020-02-27", - "dateRegistrar": "2014-08-16", - "dateLocalAuthorityReceived": "2017-11-20", - "summary": "Aperiam distinctio nihil aperiam.\nDucimus quo illo delectus autem suscipit repellat sapiente dolores.\nVoluptate qui ex reiciendis.", - "informationUsed": "Aliquam cupiditate dicta tenetur vitae perferendis similique ducimus necessitatibus esse.\nMinima molestiae necessitatibus aliquam sed inventore fuga molestiae ipsum nam.\nFugit doloribus inventore quia sunt suscipit.", - "pastOrPresentOrders": "Repellat laudantium ipsa dolore dolorem.", + "dateNoted": "2021-04-03", + "parcelID": "15255", + "crownLandUsePIN": "17952", + "crownLandFileNumber": "15203", + "landDescription": "LOT 5 OF LOT 1 BLOCK 2 DISTRICT LOT 2 PLAN 6475" + } + ], + "siteDisclosures": [ + { + "siteRegistry": true, + "dateReceived": "2022-01-05", + "dateCompleted": "2020-04-16", + "dateEntered": "2019-02-28", + "dateRegistrar": "2021-05-06", + "dateLocalAuthorityReceived": "2016-02-16", + "summary": "Commodi a facere alias quod facilis consequatur.\nNobis perferendis est placeat amet earum excepturi animi quod.", + "informationUsed": "Debitis nihil doloremque.\nAccusamus molestiae iusto odit architecto.\nTempora suscipit possimus.\nQuaerat dicta provident nisi molestias perferendis nostrum exercitationem rem impedit.\nDolore nulla consequuntur expedita voluptas quasi minus doloremque earum.", + "pastOrPresentOrders": "Eligendi perferendis voluptas magnam.\nPerferendis blanditiis perferendis inventore dolores magni.", "commercialAndIndustrialPurposes": [ - { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false - }, { "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true + "siteRegistry": false }, { "scheduleReference": "F1*", @@ -2754,41 +3029,41 @@ "siteRegistry": true }, { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false } ] }, { "siteRegistry": false, - "dateReceived": "2019-11-29", - "dateCompleted": "2016-05-21", - "dateEntered": "2017-10-25", - "dateRegistrar": "2020-04-08", - "dateLocalAuthorityReceived": "2015-01-31", - "summary": "Quidem labore exercitationem placeat.\nMollitia maiores quidem veniam ea.\nEum officiis repellendus nesciunt suscipit asperiores labore tenetur.", - "informationUsed": "Fugit ex omnis minima ipsum aspernatur doloremque.\nIpsam dicta illo impedit pariatur a fuga.\nSoluta alias blanditiis nulla ex.\nMagni natus adipisci.", - "pastOrPresentOrders": "Necessitatibus harum ullam harum tempore.", + "dateReceived": "2020-04-11", + "dateCompleted": "2017-05-19", + "dateEntered": "2020-06-07", + "dateRegistrar": "2015-12-11", + "dateLocalAuthorityReceived": "2015-05-07", + "summary": "Blanditiis maxime sit alias porro.\nIusto fugiat perspiciatis consequatur quos dicta similique excepturi fuga architecto.", + "informationUsed": "Debitis id consequuntur.\nDolores hic esse vero omnis repellat impedit ratione perferendis recusandae.\nOptio nesciunt velit modi dolorem aliquid.", + "pastOrPresentOrders": "Culpa mollitia quod aliquid.", "commercialAndIndustrialPurposes": [ { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false }, { - "scheduleReference": "F1*", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false }, { "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false } ] @@ -2798,82 +3073,95 @@ { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "MARVIN MERLE", - "timestamp": "2017-07-11" + "user": "D'AMORE JONATHAN", + "timestamp": "2018-04-10" }, { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "JOHNSON JOELLE", - "timestamp": "2014-05-22" + "user": "ALTENWERTH JEREMY", + "timestamp": "2020-03-02" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "LEMKE MAYRA", + "timestamp": "2018-08-20" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "KUTCH PAYTON", - "timestamp": "2017-03-14" + "user": "LEUSCHKE BRENDAN", + "timestamp": "2015-08-18" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "KLOCKO DEVEN", - "timestamp": "2015-10-28" + "user": "RUSSEL IRMA", + "timestamp": "2022-11-01" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "HERMANN CORTEZ", - "timestamp": "2018-06-10" + "user": "GERHOLD AYLA", + "timestamp": "2021-05-03" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "MONAHAN KENNETH", - "timestamp": "2017-04-25" + "user": "NADER BRANSON", + "timestamp": "2017-05-13" } ], "associatedSites": [ { - "dateNoted": "2016-06-21", + "dateNoted": "2020-04-16", "notes": "", - "parcelID": "20914", - "siteID": "16563", - "siteRegistry": true + "parcelID": "20059", + "siteID": "19093", + "siteRegistry": false + }, + { + "dateNoted": "2021-12-11", + "notes": "", + "parcelID": "15225", + "siteID": "19914", + "siteRegistry": false }, { - "dateNoted": "2021-05-26", + "dateNoted": "2017-03-05", "notes": "", - "parcelID": "19028", - "siteID": "17854", + "parcelID": "15422", + "siteID": "19114", "siteRegistry": true } ] }, { - "uuid": "9b671d4a-5e24-4cef-bb57-a533aefbce3e", - "siteID": 15332, - "address": "688 Steve Gateway", - "latitude": 58.5261, - "longitude": -119.6432, - "lastUpdated": "2023-08-01", - "city": "North Cyriltown", + "uuid": "8a3b8d68-163c-4915-83d0-c248f5661db5", + "siteID": 19305, + "address": "240 Franz Squares", + "latitude": 55.3808, + "longitude": -127.4838, + "lastUpdated": "2019-10-30", + "city": "Fort Cathryn", "region": "Vancouver Island/Coast", - "victoriaFile": "26250-20/18450", + "victoriaFile": "26250-20/13979", "regionalFile": "N/A", "parcelIDs": [ - 1606558, - 2170649, - 8803831, - 522279, - 5506920 + 1552942, + 9039330, + 4786213, + 4476279, + 3036002 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2016-04-28", - "completed": "2023-01-30", - "initiated": "2017-11-04", - "ministryContact": "SANFORD SONIA", + "createdAt": "2023-06-12", + "completed": "2016-12-02", + "initiated": "2017-06-30", + "ministryContact": "KOCH DARRICK", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -2882,19 +3170,24 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", @@ -2905,10 +3198,10 @@ "siteRegistry": true }, { - "createdAt": "2017-07-30", - "completed": "2016-04-23", - "initiated": "2021-08-10", - "ministryContact": "JOHNS DARLENE", + "createdAt": "2021-11-05", + "completed": "2014-11-05", + "initiated": "2023-05-21", + "ministryContact": "DENESIK BERNEICE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -2924,27 +3217,22 @@ { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true } ], "participants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2016-01-25", - "startDate": "2020-09-05", + "name": "AMET, DOLOR SIT", + "endDate": "2021-06-01", + "startDate": "2016-03-24", "notes": "", "roles": [ "ORGANIZATION" @@ -2952,19 +3240,9 @@ "siteRegistry": true }, { - "name": "IPSUM", - "endDate": "2017-10-12", - "startDate": "2016-03-13", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": false - }, - { - "name": "IPSUM", - "endDate": "2022-12-04", - "startDate": "2018-07-10", + "name": "AMET, DOLOR SIT", + "endDate": "2021-07-02", + "startDate": "2020-12-21", "notes": "", "roles": [ "EMPLOYEE" @@ -2972,74 +3250,92 @@ "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2018-02-08", - "startDate": "2014-08-20", + "name": "IPSUM", + "endDate": "2019-07-07", + "startDate": "2014-02-12", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], - "siteRegistry": true + "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2015-03-25", - "startDate": "2021-06-28", + "endDate": "2017-12-06", + "startDate": "2018-06-26", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": true } ], "suspectLandUses": [ + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2018-05-12 (described on Site Profile dated 2018-05-12)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2018-06-02 (described on Site Profile dated 2018-06-02)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-08-01 (described on Site Profile dated 2022-08-01)", + "notes": "INSERTED FOR SITE PROFILE DATED 2021-12-22 (described on Site Profile dated 2021-12-22)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-10-03 (described on Site Profile dated 2017-10-03)", + "notes": "INSERTED FOR SITE PROFILE DATED 2017-09-26 (described on Site Profile dated 2017-09-26)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-04-15 (described on Site Profile dated 2017-04-15)", + "notes": "INSERTED FOR SITE PROFILE DATED 2022-12-29 (described on Site Profile dated 2022-12-29)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + } + ], + "parcelDescriptions": [ + { + "siteRegistry": false, + "dateNoted": "2021-03-04", + "parcelID": "20651", + "crownLandUsePIN": "16327", + "crownLandFileNumber": "20267", + "landDescription": "LOT 3 OF LOT 4 BLOCK 4 DISTRICT LOT 4 PLAN 3888" }, { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2020-12-16 (described on Site Profile dated 2020-12-16)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "dateNoted": "2014-06-28", + "parcelID": "16850", + "crownLandUsePIN": "17922", + "crownLandFileNumber": "19979", + "landDescription": "LOT 1 OF LOT 1 BLOCK 3 DISTRICT LOT 1 PLAN 4540" } ], "siteDisclosures": [ { - "siteRegistry": true, - "dateReceived": "2017-07-01", - "dateCompleted": "2019-02-25", - "dateEntered": "2014-08-24", - "dateRegistrar": "2021-10-29", - "dateLocalAuthorityReceived": "2017-10-07", - "summary": "Nemo ab ducimus porro quibusdam perspiciatis.\nIpsa tenetur dolor iure vitae at enim.", - "informationUsed": "Alias perferendis aperiam culpa.\nIpsum placeat aliquam accusantium dolorum.\nEveniet assumenda quis aliquid dignissimos repellat in ipsa.\nFugit mollitia tempora quidem odit consequatur.\nMaxime fuga omnis quibusdam mollitia.", - "pastOrPresentOrders": "Repellat quod id explicabo error a voluptatum.\nDebitis asperiores non.\nAmet earum quaerat dolore similique dicta ratione cum labore quia.", + "siteRegistry": false, + "dateReceived": "2021-09-22", + "dateCompleted": "2020-08-19", + "dateEntered": "2021-12-30", + "dateRegistrar": "2015-07-17", + "dateLocalAuthorityReceived": "2018-02-07", + "summary": "Dolor exercitationem molestias itaque.\nQui corporis beatae dolores labore enim ab natus cum.\nMinus possimus ea.", + "informationUsed": "Dignissimos consectetur eaque cum.\nIn voluptatem laborum quae beatae quia minima.\nSit veniam autem beatae placeat cum fuga sapiente provident ea.\nQuidem rem sint et harum.\nOccaecati officia rerum velit ipsa.", + "pastOrPresentOrders": "Laboriosam autem iusto.\nVoluptatibus placeat dolorem mollitia.\nEsse pariatur officia dolorem itaque alias harum.", "commercialAndIndustrialPurposes": [ { "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, - { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true - }, { "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true + "siteRegistry": false } ] } @@ -3048,81 +3344,100 @@ { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "TREUTEL CONSTANCE", - "timestamp": "2015-02-15" + "user": "HICKLE BERNARD", + "timestamp": "2018-11-28" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "GUTMANN JEWELL", - "timestamp": "2017-05-03" + "user": "UPTON CULLEN", + "timestamp": "2018-08-27" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "LEDNER MARTIN", - "timestamp": "2018-04-08" + "user": "TILLMAN REGAN", + "timestamp": "2022-03-17" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "HARTMANN RUBIE", + "timestamp": "2023-06-13" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "DENESIK KOREY", - "timestamp": "2015-04-28" + "user": "LIND PROVIDENCI", + "timestamp": "2014-01-10" }, { - "siteRegistry": true, + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "RIPPIN-OSINSKI BERNIECE", - "timestamp": "2019-04-25" + "user": "MOEN MODESTA", + "timestamp": "2016-05-10" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "BOTSFORD ISABELLE", - "timestamp": "2018-12-01" + "user": "HARBER MARLEE", + "timestamp": "2013-10-16" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "CREMIN DINA", + "timestamp": "2020-07-23" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "SCHMIDT MARGIE", - "timestamp": "2014-01-01" + "user": "SAWAYN CORTEZ", + "timestamp": "2014-01-26" } ], "associatedSites": [ { - "dateNoted": "2017-10-22", + "dateNoted": "2019-06-21", "notes": "", - "parcelID": "15576", - "siteID": "18243", + "parcelID": "15756", + "siteID": "17116", "siteRegistry": true + }, + { + "dateNoted": "2017-04-02", + "notes": "", + "parcelID": "18418", + "siteID": "16677", + "siteRegistry": false } ] }, { - "uuid": "efa91a88-fb19-4364-85b4-2422cbe615ba", - "siteID": 15785, - "address": "749 Cassin Circle", - "latitude": 51.6024, - "longitude": -124.0052, - "lastUpdated": "2016-11-10", - "city": "Guillermochester", - "region": " North Coast", - "victoriaFile": "26250-20/12496", + "uuid": "47ebf018-f7ea-4b93-b7f9-54d97ed4a4f7", + "siteID": 20492, + "address": "86556 Flatley Streets", + "latitude": 49.5598, + "longitude": -120.6401, + "lastUpdated": "2018-10-31", + "city": "Justonfurt", + "region": "Mainland/Southwest", + "victoriaFile": "26250-20/5353", "regionalFile": "N/A", "parcelIDs": [ - 728795, - 5711933, - 9233991, - 496196, - 1310909 + 9809985, + 1191671, + 9468300, + 8347608, + 100240 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2021-03-04", - "completed": "2016-02-26", - "initiated": "2019-02-28", - "ministryContact": "WOLF VERNA", + "createdAt": "2022-06-09", + "completed": "2023-09-05", + "initiated": "2022-04-29", + "ministryContact": "BEAHAN EDYTHE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -3132,12 +3447,37 @@ "notationParticipants": [ { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "createdAt": "2016-08-27", + "completed": "2017-09-01", + "initiated": "2022-10-15", + "ministryContact": "VOLKMAN AUGUSTA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": true }, { @@ -3148,21 +3488,21 @@ { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false } ], "siteRegistry": true }, { - "createdAt": "2018-06-27", - "completed": "2020-08-01", - "initiated": "2018-11-04", - "ministryContact": "SCHOWALTER KARINE", + "createdAt": "2021-09-04", + "completed": "2014-02-19", + "initiated": "2022-09-18", + "ministryContact": "BARTELL MALCOLM", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -3171,8 +3511,8 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": false }, { @@ -3182,18 +3522,63 @@ }, { "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "createdAt": "2019-01-20", + "completed": "2017-11-05", + "initiated": "2015-12-29", + "ministryContact": "BRUEN ELWIN", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false } ], "participants": [ + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2016-05-07", + "startDate": "2019-10-28", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, { "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2021-03-01", - "startDate": "2023-08-02", + "endDate": "2023-04-24", + "startDate": "2018-08-31", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "name": "AMET, DOLOR SIT", + "endDate": "2014-12-11", + "startDate": "2016-12-07", "notes": "", "roles": [ "EMPLOYEE" @@ -3202,8 +3587,8 @@ }, { "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2019-07-06", - "startDate": "2020-06-30", + "endDate": "2022-07-06", + "startDate": "2018-08-30", "notes": "", "roles": [ "EMPLOYEE" @@ -3211,9 +3596,9 @@ "siteRegistry": true }, { - "name": "IPSUM", - "endDate": "2019-01-30", - "startDate": "2023-01-11", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2023-08-06", + "startDate": "2023-05-15", "notes": "", "roles": [ "EMPLOYEE" @@ -3224,36 +3609,49 @@ "suspectLandUses": [ { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-05-09 (described on Site Profile dated 2016-05-09)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "notes": "INSERTED FOR SITE PROFILE DATED 2014-09-29 (described on Site Profile dated 2014-09-29)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-09-30 (described on Site Profile dated 2019-09-30)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2018-12-24 (described on Site Profile dated 2018-12-24)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2020-09-27 (described on Site Profile dated 2020-09-27)", + "notes": "INSERTED FOR SITE PROFILE DATED 2019-09-11 (described on Site Profile dated 2019-09-11)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + } + ], + "parcelDescriptions": [ + { + "siteRegistry": false, + "dateNoted": "2023-03-20", + "parcelID": "18811", + "crownLandUsePIN": "15717", + "crownLandFileNumber": "18582", + "landDescription": "LOT 1 OF LOT 2 BLOCK 5 DISTRICT LOT 4 PLAN 5168" }, { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-05-12 (described on Site Profile dated 2022-05-12)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "siteRegistry": false, + "dateNoted": "2015-01-10", + "parcelID": "19107", + "crownLandUsePIN": "20351", + "crownLandFileNumber": "20567", + "landDescription": "LOT 1 OF LOT 2 BLOCK 2 DISTRICT LOT 1 PLAN 4176" } ], "siteDisclosures": [ { "siteRegistry": false, - "dateReceived": "2022-09-29", - "dateCompleted": "2022-03-08", - "dateEntered": "2021-03-19", - "dateRegistrar": "2014-03-19", - "dateLocalAuthorityReceived": "2019-08-24", - "summary": "Laudantium odit vero aspernatur ut rerum minima necessitatibus ipsum optio.\nCumque eligendi quam excepturi porro ipsa mollitia.\nSaepe nam expedita consequuntur voluptatum quibusdam.", - "informationUsed": "Porro quam nulla mollitia expedita consectetur.\nNemo deserunt expedita nisi beatae autem blanditiis.\nAutem quidem ducimus nulla cumque.\nDicta totam voluptates culpa totam dolorem.", - "pastOrPresentOrders": "Alias eos maxime optio rem.\nQuaerat vitae facilis nostrum qui sapiente.\nPossimus dignissimos officia beatae illum vero explicabo totam.", + "dateReceived": "2014-08-20", + "dateCompleted": "2017-05-13", + "dateEntered": "2014-12-29", + "dateRegistrar": "2016-05-12", + "dateLocalAuthorityReceived": "2021-12-13", + "summary": "Alias mollitia consectetur soluta debitis qui fugit.\nVeniam tempore quidem.", + "informationUsed": "Explicabo hic doloribus adipisci.\nCorrupti dicta natus aliquid.\nInventore atque eveniet omnis dicta fuga veniam quibusdam quidem.\nOmnis maiores aliquid quibusdam.", + "pastOrPresentOrders": "Facilis consequuntur error veritatis deleniti ipsam illo possimus natus.\nSint sit voluptas porro quam ullam ratione.\nAperiam sapiente voluptas hic at commodi perspiciatis quasi molestiae.", "commercialAndIndustrialPurposes": [ { "scheduleReference": "F1*", @@ -3262,31 +3660,31 @@ }, { "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true }, { - "scheduleReference": "F1*", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false + "siteRegistry": true }, { "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false + "siteRegistry": true } ] }, { - "siteRegistry": false, - "dateReceived": "2023-07-31", - "dateCompleted": "2022-01-14", - "dateEntered": "2018-05-08", - "dateRegistrar": "2016-07-24", - "dateLocalAuthorityReceived": "2015-03-17", - "summary": "Ipsam blanditiis amet totam molestiae harum.", - "informationUsed": "Aliquid deleniti quia temporibus nobis saepe labore.\nQuisquam assumenda enim placeat repellendus deleniti quos necessitatibus consectetur.\nCum eveniet quidem quam ad animi asperiores expedita.", - "pastOrPresentOrders": "Assumenda atque cupiditate id.\nVelit rerum magni laboriosam.", + "siteRegistry": true, + "dateReceived": "2022-06-12", + "dateCompleted": "2021-05-11", + "dateEntered": "2023-04-03", + "dateRegistrar": "2017-03-11", + "dateLocalAuthorityReceived": "2022-02-17", + "summary": "Ullam impedit alias cum numquam autem in eveniet deserunt.\nQuidem perferendis aspernatur ab.", + "informationUsed": "Explicabo laudantium inventore quisquam ab.\nIllo ducimus eligendi mollitia.\nVoluptates occaecati suscipit laborum.\nDebitis omnis amet libero architecto.\nAccusantium quidem consequatur eos repellendus.", + "pastOrPresentOrders": "Distinctio non iusto earum animi neque.\nRepellendus numquam doloribus magnam aliquam iure minima saepe.\nRepellendus ea dolor maxime architecto quod reiciendis maxime ab eius.", "commercialAndIndustrialPurposes": [ { "scheduleReference": "F2*", @@ -3294,7 +3692,7 @@ "siteRegistry": false }, { - "scheduleReference": "F1*", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false } @@ -3305,93 +3703,83 @@ { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "KUNDE KOLE", - "timestamp": "2016-12-22" + "user": "SHANAHAN LEON", + "timestamp": "2019-11-22" }, { - "siteRegistry": true, + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "WILLMS SYLVAN", - "timestamp": "2015-09-28" + "user": "WATSICA HARMON", + "timestamp": "2015-11-10" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "HACKETT FLORENCIO", - "timestamp": "2019-08-27" + "user": "VANDERVORT KURT", + "timestamp": "2018-03-05" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "GIBSON CHADD", - "timestamp": "2014-09-18" + "user": "BALISTRERI SOLON", + "timestamp": "2016-03-12" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "HILPERT EDNA", - "timestamp": "2015-10-01" - }, - { - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "BERGSTROM DESIREE", - "timestamp": "2014-12-15" - }, + "user": "DECKOW ADELLE", + "timestamp": "2021-12-07" + } + ], + "associatedSites": [ { - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "BEATTY JERMAIN", - "timestamp": "2022-02-28" + "dateNoted": "2017-05-06", + "notes": "", + "parcelID": "20540", + "siteID": "17329", + "siteRegistry": true }, { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "O'HARA BERTHA", - "timestamp": "2022-10-05" + "dateNoted": "2021-12-16", + "notes": "", + "parcelID": "17326", + "siteID": "18040", + "siteRegistry": false }, { - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "EBERT OREN", - "timestamp": "2014-06-07" - } - ], - "associatedSites": [ - { - "dateNoted": "2014-09-03", + "dateNoted": "2019-03-06", "notes": "", - "parcelID": "20927", - "siteID": "15327", + "parcelID": "17402", + "siteID": "15827", "siteRegistry": false } ] }, { - "uuid": "67127747-e39e-44d6-be26-c2773f815f45", - "siteID": 17309, - "address": "3326 Hodkiewicz Passage", - "latitude": 48.9131, - "longitude": -135.1086, - "lastUpdated": "2020-01-16", - "city": "Nicholasburgh", - "region": "Thompson-Okanagan", - "victoriaFile": "26250-20/9651", + "uuid": "2916b8cf-549d-466e-a287-e161294ea9ee", + "siteID": 18587, + "address": "8318 Little Skyway", + "latitude": 48.0296, + "longitude": -123.8794, + "lastUpdated": "2021-10-11", + "city": "Kissimmee", + "region": "Vancouver Island/Coast", + "victoriaFile": "26250-20/7795", "regionalFile": "N/A", "parcelIDs": [ - 7604183, - 377692, - 1079044, - 730627, - 3840984 + 7384066, + 4913093, + 1304772, + 8812826, + 2248518 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2015-11-04", - "completed": "2015-08-09", - "initiated": "2022-12-07", - "ministryContact": "KEEBLER NORA", + "createdAt": "2017-12-29", + "completed": "2018-08-12", + "initiated": "2019-11-15", + "ministryContact": "WARD GONZALO", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -3401,62 +3789,17 @@ "notationParticipants": [ { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - } - ], - "siteRegistry": true - }, - { - "createdAt": "2023-01-03", - "completed": "2019-02-08", - "initiated": "2016-12-21", - "ministryContact": "AUER ALEC", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - } - ], - "siteRegistry": false - }, - { - "createdAt": "2020-09-30", - "completed": "2017-01-06", - "initiated": "2022-07-19", - "ministryContact": "MANTE JAIRO", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", "siteRegistry": true }, { @@ -3464,59 +3807,19 @@ "role": "REQUESTED BY", "siteRegistry": false }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - } - ], - "siteRegistry": false - }, - { - "createdAt": "2016-08-18", - "completed": "2021-12-22", - "initiated": "2019-06-01", - "ministryContact": "BECKER WARREN", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2017-02-23", - "completed": "2016-08-15", - "initiated": "2014-09-17", - "ministryContact": "PAGAC ANGELINE", + "createdAt": "2014-05-01", + "completed": "2021-11-30", + "initiated": "2016-06-11", + "ministryContact": "VONRUEDEN CAROL", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -3525,44 +3828,29 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false } ], "participants": [ { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2020-01-09", - "startDate": "2022-06-25", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2014-09-18", - "startDate": "2016-02-18", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2015-03-03", + "startDate": "2023-07-06", "notes": "", "roles": [ "ORGANIZATION" @@ -3570,29 +3858,9 @@ "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2015-05-28", - "startDate": "2023-06-02", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2023-06-07", - "startDate": "2014-09-21", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", + "name": "AMET, DOLOR SIT", "endDate": "2018-01-29", - "startDate": "2022-10-30", + "startDate": "2017-11-05", "notes": "", "roles": [ "ORGANIZATION" @@ -3603,79 +3871,77 @@ "suspectLandUses": [ { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-04-28 (described on Site Profile dated 2021-04-28)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" - }, - { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-03-08 (described on Site Profile dated 2019-03-08)", + "notes": "INSERTED FOR SITE PROFILE DATED 2014-10-15 (described on Site Profile dated 2014-10-15)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-05-24 (described on Site Profile dated 2022-05-24)", + "notes": "INSERTED FOR SITE PROFILE DATED 2023-09-04 (described on Site Profile dated 2023-09-04)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-12-05 (described on Site Profile dated 2018-12-05)", + "notes": "INSERTED FOR SITE PROFILE DATED 2017-12-29 (described on Site Profile dated 2017-12-29)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-12-10 (described on Site Profile dated 2014-12-10)", + "notes": "INSERTED FOR SITE PROFILE DATED 2018-05-14 (described on Site Profile dated 2018-05-14)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2022-07-30 (described on Site Profile dated 2022-07-30)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], - "siteDisclosures": [ + "parcelDescriptions": [ { "siteRegistry": true, - "dateReceived": "2023-04-23", - "dateCompleted": "2018-06-26", - "dateEntered": "2015-01-07", - "dateRegistrar": "2014-10-27", - "dateLocalAuthorityReceived": "2019-12-27", - "summary": "Perferendis vero hic aliquam voluptas aperiam autem aspernatur.\nAutem accusamus iusto quis excepturi fuga placeat dignissimos.\nAlias dicta at.", - "informationUsed": "Quis doloribus quidem recusandae quaerat dicta ab beatae ullam ut.\nMolestias repellendus repellat ducimus necessitatibus sed ad.\nTempore id voluptatum officiis aspernatur excepturi dolor amet nostrum libero.\nRepellendus modi a delectus.", - "pastOrPresentOrders": "Aperiam nemo tempore facilis non voluptas fugit nesciunt maxime.\nCumque deserunt adipisci non tempore.\nEos eligendi iusto quia.", - "commercialAndIndustrialPurposes": [ - { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false - }, - { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false - }, - { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false - } - ] + "dateNoted": "2022-09-30", + "parcelID": "16882", + "crownLandUsePIN": "20501", + "crownLandFileNumber": "20706", + "landDescription": "LOT 3 OF LOT 4 BLOCK 4 DISTRICT LOT 1 PLAN 2948" + }, + { + "siteRegistry": false, + "dateNoted": "2019-06-27", + "parcelID": "18410", + "crownLandUsePIN": "16498", + "crownLandFileNumber": "16868", + "landDescription": "LOT 2 OF LOT 2 BLOCK 4 DISTRICT LOT 4 PLAN 3865" }, + { + "siteRegistry": true, + "dateNoted": "2021-04-04", + "parcelID": "15360", + "crownLandUsePIN": "20368", + "crownLandFileNumber": "18797", + "landDescription": "LOT 2 OF LOT 3 BLOCK 1 DISTRICT LOT 5 PLAN 3575" + } + ], + "siteDisclosures": [ { "siteRegistry": false, - "dateReceived": "2018-05-27", - "dateCompleted": "2013-12-12", - "dateEntered": "2020-05-17", - "dateRegistrar": "2023-05-08", - "dateLocalAuthorityReceived": "2016-02-21", - "summary": "Consequuntur vitae dolorum accusamus est.", - "informationUsed": "Nihil libero adipisci ad quasi quidem molestiae quis reprehenderit.\nUnde corrupti similique laboriosam dolorem quas sequi.\nQuidem ex nisi sequi fugiat delectus dolores ipsa.\nNemo provident maxime perferendis recusandae.", - "pastOrPresentOrders": "Consectetur eligendi vel dolorum doloremque rem repellendus nemo.\nQui suscipit alias fuga.\nQuo perferendis inventore sed id atque quas.", + "dateReceived": "2018-06-12", + "dateCompleted": "2019-10-30", + "dateEntered": "2018-12-16", + "dateRegistrar": "2015-11-16", + "dateLocalAuthorityReceived": "2021-05-25", + "summary": "Porro minus laborum corporis ducimus cum eveniet harum sed est.", + "informationUsed": "Dolore sint fuga eum at.\nAsperiores ipsa ex accusantium dolores quis quia quod rerum architecto.\nNemo id earum.\nAliquid quos optio laboriosam quisquam quibusdam aliquam.", + "pastOrPresentOrders": "Explicabo reprehenderit incidunt dignissimos illum tempora deserunt.", "commercialAndIndustrialPurposes": [ { "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false + "siteRegistry": true }, { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false } ] } @@ -3684,87 +3950,99 @@ { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "GUSIKOWSKI KAMRYN", - "timestamp": "2016-06-06" + "user": "PROHASKA ARIELLE", + "timestamp": "2015-05-08" }, { - "siteRegistry": true, + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "STRACKE CONNER", - "timestamp": "2015-11-16" + "user": "COLLINS GARDNER", + "timestamp": "2016-10-04" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "QUIGLEY CASANDRA", - "timestamp": "2014-09-29" + "user": "SATTERFIELD TIA", + "timestamp": "2021-11-23" }, { - "siteRegistry": true, + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "GERHOLD NEOMA", - "timestamp": "2023-02-27" + "user": "HAHN MAUDIE", + "timestamp": "2014-04-09" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "O'HARA COLUMBUS", + "timestamp": "2016-02-05" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "HELLER-HANSEN LARRY", - "timestamp": "2021-03-15" + "user": "MULLER SHELDON", + "timestamp": "2022-09-15" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "TRANTOW MOZELLE", - "timestamp": "2015-06-06" + "user": "HAND REECE", + "timestamp": "2021-05-05" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "LUBOWITZ SETH", - "timestamp": "2018-11-05" + "user": "HAAG VALENTINA", + "timestamp": "2020-06-11" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "SCHMIDT CULLEN", - "timestamp": "2019-09-17" + "user": "ANKUNDING JAZMIN", + "timestamp": "2018-12-24" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "MAYER LULA", + "timestamp": "2015-09-01" } ], "associatedSites": [ { - "dateNoted": "2014-05-09", + "dateNoted": "2017-02-08", "notes": "", - "parcelID": "20158", - "siteID": "17805", - "siteRegistry": true + "parcelID": "17163", + "siteID": "15477", + "siteRegistry": false } ] }, { - "uuid": "91b65d53-7afe-45e3-8c46-92d0996fd1c2", - "siteID": 19603, - "address": "13935 Joelle Motorway", - "latitude": 54.7186, - "longitude": -129.481, - "lastUpdated": "2014-12-13", - "city": "Howeborough", - "region": "Kootenay", - "victoriaFile": "26250-20/1886", + "uuid": "06e98bd1-1ff9-4e47-90bf-0e412a8270fc", + "siteID": 18309, + "address": "56873 Leopoldo Streets", + "latitude": 54.1129, + "longitude": -134.4448, + "lastUpdated": "2022-12-10", + "city": "St. Charles", + "region": "Cariboo", + "victoriaFile": "26250-20/16331", "regionalFile": "N/A", "parcelIDs": [ - 9864275, - 8822593, - 3991916, - 6692629, - 554128 + 3617716, + 4325850, + 7644963, + 6535123, + 5407131 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2014-06-06", - "completed": "2022-07-27", - "initiated": "2022-01-16", - "ministryContact": "BOGAN BELLE", + "createdAt": "2016-01-24", + "completed": "2021-01-29", + "initiated": "2014-04-21", + "ministryContact": "SCHOEN KEON", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -3774,27 +4052,52 @@ "notationParticipants": [ { "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "createdAt": "2022-02-09", + "completed": "2016-05-29", + "initiated": "2016-07-25", + "ministryContact": "RENNER-MUELLER ABBY", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false + "role": "REQUESTED BY", + "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false } ], "siteRegistry": false }, { - "createdAt": "2020-10-23", - "completed": "2022-11-22", - "initiated": "2015-02-15", - "ministryContact": "BOTSFORD NELLA", + "createdAt": "2018-06-03", + "completed": "2018-03-20", + "initiated": "2018-11-14", + "ministryContact": "WATERS ERICA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -3807,113 +4110,149 @@ "role": "REQUESTED BY", "siteRegistry": true }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "createdAt": "2019-04-26", + "completed": "2017-08-13", + "initiated": "2016-06-10", + "ministryContact": "MANTE ELVERA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true } ], "participants": [ { "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2017-12-12", - "startDate": "2014-02-27", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2020-03-12", - "startDate": "2016-05-14", + "endDate": "2015-09-08", + "startDate": "2023-05-26", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": true }, { - "name": "AMET, DOLOR SIT", - "endDate": "2021-08-10", - "startDate": "2022-04-24", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2017-03-30", + "startDate": "2018-01-19", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], - "siteRegistry": true + "siteRegistry": false } ], "suspectLandUses": [ { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-10-21 (described on Site Profile dated 2019-10-21)", + "notes": "INSERTED FOR SITE PROFILE DATED 2016-04-14 (described on Site Profile dated 2016-04-14)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, - { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-02-08 (described on Site Profile dated 2016-02-08)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" - }, { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-05-08 (described on Site Profile dated 2021-05-08)", + "notes": "INSERTED FOR SITE PROFILE DATED 2021-07-31 (described on Site Profile dated 2021-07-31)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-06-24 (described on Site Profile dated 2019-06-24)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "notes": "INSERTED FOR SITE PROFILE DATED 2021-02-15 (described on Site Profile dated 2021-02-15)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2015-01-12 (described on Site Profile dated 2015-01-12)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], - "siteDisclosures": [ + "parcelDescriptions": [ + { + "siteRegistry": true, + "dateNoted": "2015-05-23", + "parcelID": "19269", + "crownLandUsePIN": "18060", + "crownLandFileNumber": "16012", + "landDescription": "LOT 2 OF LOT 4 BLOCK 2 DISTRICT LOT 1 PLAN 9192" + }, { "siteRegistry": false, - "dateReceived": "2016-10-03", - "dateCompleted": "2022-03-18", - "dateEntered": "2018-07-29", - "dateRegistrar": "2017-09-13", - "dateLocalAuthorityReceived": "2019-09-13", - "summary": "Occaecati vitae perferendis ea.", - "informationUsed": "Sint voluptates voluptatem tempore ut ab et beatae quae eligendi.\nEx officia dolorem quisquam occaecati illum.\nPerferendis facilis earum iste error ut doloribus laboriosam non nemo.\nIpsam ex dolore maxime molestiae libero recusandae aperiam.", - "pastOrPresentOrders": "Pariatur fugit voluptates odio laudantium necessitatibus nam tempore.", - "commercialAndIndustrialPurposes": [ - { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false - }, - { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false - } - ] + "dateNoted": "2016-09-27", + "parcelID": "18110", + "crownLandUsePIN": "16930", + "crownLandFileNumber": "18932", + "landDescription": "LOT 5 OF LOT 5 BLOCK 3 DISTRICT LOT 2 PLAN 5103" }, { "siteRegistry": false, - "dateReceived": "2019-04-25", - "dateCompleted": "2023-04-12", - "dateEntered": "2015-03-31", - "dateRegistrar": "2015-03-17", - "dateLocalAuthorityReceived": "2022-08-30", - "summary": "Voluptatem saepe nulla possimus facere temporibus.\nOdio voluptate facere esse nostrum atque.\nDoloremque cupiditate quia mollitia incidunt maxime excepturi modi at perspiciatis.", - "informationUsed": "Distinctio eos fugiat itaque natus fuga quos maxime.\nFuga nulla modi ipsa incidunt voluptatem id molestiae rem.\nDolorem maxime nostrum optio a dignissimos earum voluptate quae repudiandae.\nAccusamus occaecati tempore distinctio ut laborum facilis quas iusto sint.", - "pastOrPresentOrders": "Libero ex facilis.", + "dateNoted": "2017-10-18", + "parcelID": "16076", + "crownLandUsePIN": "18422", + "crownLandFileNumber": "15295", + "landDescription": "LOT 5 OF LOT 1 BLOCK 2 DISTRICT LOT 1 PLAN 7370" + }, + { + "siteRegistry": false, + "dateNoted": "2015-01-03", + "parcelID": "20098", + "crownLandUsePIN": "18815", + "crownLandFileNumber": "15743", + "landDescription": "LOT 2 OF LOT 2 BLOCK 3 DISTRICT LOT 5 PLAN 5575" + } + ], + "siteDisclosures": [ + { + "siteRegistry": true, + "dateReceived": "2015-09-01", + "dateCompleted": "2016-03-10", + "dateEntered": "2016-05-22", + "dateRegistrar": "2018-07-12", + "dateLocalAuthorityReceived": "2015-02-27", + "summary": "Nobis minima esse fugiat ducimus voluptas placeat.", + "informationUsed": "Et molestiae voluptatibus aliquam ex vel ipsam.\nRepellat rerum delectus maiores cum eius omnis.\nRepellat quasi repudiandae ducimus corporis tenetur.\nSapiente quod veniam totam non maxime.", + "pastOrPresentOrders": "Aliquam eveniet quae incidunt.", "commercialAndIndustrialPurposes": [ { "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true + "siteRegistry": false } ] } @@ -3922,75 +4261,93 @@ { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "GUSIKOWSKI VAN", - "timestamp": "2016-05-30" + "user": "ZBONCAK ERNESTINA", + "timestamp": "2023-04-15" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "DURGAN BERYL", - "timestamp": "2022-11-16" + "user": "GLEASON SYDNI", + "timestamp": "2021-02-17" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "DOOLEY URSULA", - "timestamp": "2013-10-22" + "user": "DONNELLY-BAYER RAYMUNDO", + "timestamp": "2019-03-03" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "SCHULIST FERNANDO", - "timestamp": "2022-10-27" + "user": "RUSSEL CHLOE", + "timestamp": "2023-07-12" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "LANGOSH ALLIE", - "timestamp": "2022-01-31" + "user": "GORCZANY JULIANA", + "timestamp": "2013-10-29" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "BINS CRAIG", - "timestamp": "2018-02-24" + "user": "MAGGIO TERRILL", + "timestamp": "2018-05-26" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "LEUSCHKE RAVEN", + "timestamp": "2023-05-29" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "BERGNAUM AYLIN", + "timestamp": "2018-01-06" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "SCHAMBERGER GRIFFIN", + "timestamp": "2020-04-02" } ], "associatedSites": [ { - "dateNoted": "2017-04-28", + "dateNoted": "2021-05-07", "notes": "", - "parcelID": "15497", - "siteID": "20766", + "parcelID": "18003", + "siteID": "15710", "siteRegistry": true } ] }, { - "uuid": "3d710481-8e69-49ae-87db-c17c70e55267", - "siteID": 16489, - "address": "4011 Bauch Corner", - "latitude": 54.6299, - "longitude": -120.4188, - "lastUpdated": "2016-02-16", - "city": "Abbottfield", - "region": " North Coast", - "victoriaFile": "26250-20/1598", + "uuid": "58739895-4619-4387-9605-22c61a9a4e3d", + "siteID": 16093, + "address": "485 Orlando Ramp", + "latitude": 49.08, + "longitude": -132.5835, + "lastUpdated": "2014-05-04", + "city": "Mohrtown", + "region": "Mainland/Southwest", + "victoriaFile": "26250-20/19726", "regionalFile": "N/A", "parcelIDs": [ - 8095186, - 3670924, - 7245591, - 4103219, - 3132215 + 9735119, + 6256128, + 3445159, + 5319608, + 3292729 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2014-12-27", - "completed": "2023-08-01", - "initiated": "2018-12-28", - "ministryContact": "HELLER JERROD", + "createdAt": "2013-12-21", + "completed": "2021-12-16", + "initiated": "2018-09-26", + "ministryContact": "FAY MARVIN", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -4001,6 +4358,11 @@ { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": false }, { @@ -4009,18 +4371,23 @@ "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": true } ], "siteRegistry": false }, { - "createdAt": "2020-04-23", - "completed": "2017-08-05", - "initiated": "2022-12-08", - "ministryContact": "POWLOWSKI GEORGE", + "createdAt": "2022-04-24", + "completed": "2023-09-03", + "initiated": "2023-07-24", + "ministryContact": "BREITENBERG JUDAH", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -4030,270 +4397,279 @@ "notationParticipants": [ { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true + "role": "REQUESTED BY", + "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false + "role": "REQUESTED BY", + "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false } ], "siteRegistry": false - } - ], + }, + { + "createdAt": "2020-08-09", + "completed": "2020-09-15", + "initiated": "2021-11-22", + "ministryContact": "KESSLER RICHMOND", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + } + ], "participants": [ { "name": "IPSUM", - "endDate": "2015-01-20", - "startDate": "2023-06-19", + "endDate": "2021-02-18", + "startDate": "2018-08-29", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2014-03-04", - "startDate": "2021-12-04", + "name": "IPSUM", + "endDate": "2015-06-06", + "startDate": "2013-10-29", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2019-10-04", - "startDate": "2023-02-22", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2015-11-17", + "startDate": "2023-07-29", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", - "endDate": "2013-10-31", - "startDate": "2022-07-02", + "endDate": "2022-03-08", + "startDate": "2014-07-24", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false + }, + { + "name": "AMET, DOLOR SIT", + "endDate": "2020-09-11", + "startDate": "2017-03-08", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false } ], "suspectLandUses": [ { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-03-19 (described on Site Profile dated 2017-03-19)", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2016-03-22 (described on Site Profile dated 2016-03-22)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-12-09 (described on Site Profile dated 2017-12-09)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" - }, + "notes": "INSERTED FOR SITE PROFILE DATED 2018-11-18 (described on Site Profile dated 2018-11-18)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + } + ], + "parcelDescriptions": [ { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-01-30 (described on Site Profile dated 2022-01-30)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "dateNoted": "2021-06-06", + "parcelID": "15321", + "crownLandUsePIN": "17381", + "crownLandFileNumber": "20377", + "landDescription": "LOT 4 OF LOT 2 BLOCK 1 DISTRICT LOT 2 PLAN 5245" }, { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2020-08-08 (described on Site Profile dated 2020-08-08)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "siteRegistry": false, + "dateNoted": "2019-11-02", + "parcelID": "20854", + "crownLandUsePIN": "15576", + "crownLandFileNumber": "19043", + "landDescription": "LOT 4 OF LOT 3 BLOCK 2 DISTRICT LOT 3 PLAN 5193" }, { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2020-06-20 (described on Site Profile dated 2020-06-20)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "dateNoted": "2019-03-21", + "parcelID": "16353", + "crownLandUsePIN": "17434", + "crownLandFileNumber": "15888", + "landDescription": "LOT 4 OF LOT 3 BLOCK 2 DISTRICT LOT 1 PLAN 3863" + }, + { + "siteRegistry": false, + "dateNoted": "2022-12-25", + "parcelID": "20195", + "crownLandUsePIN": "15960", + "crownLandFileNumber": "17277", + "landDescription": "LOT 4 OF LOT 3 BLOCK 4 DISTRICT LOT 4 PLAN 6025" } ], "siteDisclosures": [ { "siteRegistry": false, - "dateReceived": "2022-07-01", - "dateCompleted": "2022-01-14", - "dateEntered": "2013-12-27", - "dateRegistrar": "2020-07-12", - "dateLocalAuthorityReceived": "2016-02-11", - "summary": "Eius doloribus soluta temporibus eum totam inventore exercitationem veniam.", - "informationUsed": "Eligendi ipsam dolore.\nPariatur optio recusandae id quo reiciendis aperiam asperiores provident quam.\nInventore aliquid minima numquam amet.\nVoluptatibus hic accusantium laboriosam.", - "pastOrPresentOrders": "Est doloribus itaque.", + "dateReceived": "2023-05-13", + "dateCompleted": "2014-12-05", + "dateEntered": "2023-03-01", + "dateRegistrar": "2022-06-04", + "dateLocalAuthorityReceived": "2014-07-22", + "summary": "Minima est earum ipsa iure mollitia tempora officia.", + "informationUsed": "Quos nulla dolor facere animi labore commodi soluta dicta.\nEx dignissimos molestiae rem facere tempora quia rem.\nAut blanditiis quo possimus quis labore id minima dolorem repellat.\nEnim culpa impedit odit voluptatem ad.\nAb quos quaerat corporis iure molestias.", + "pastOrPresentOrders": "Atque assumenda sed itaque.\nCommodi pariatur voluptatum explicabo reprehenderit quam qui repellendus.\nProvident sint vitae exercitationem natus qui odit cumque.", "commercialAndIndustrialPurposes": [ - { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true - }, { "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false - }, - { - "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false - }, - { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true - } - ] - }, - { - "siteRegistry": true, - "dateReceived": "2022-12-08", - "dateCompleted": "2017-06-29", - "dateEntered": "2019-10-02", - "dateRegistrar": "2018-11-02", - "dateLocalAuthorityReceived": "2021-08-20", - "summary": "Eius porro unde impedit at saepe atque velit magni quas.\nCorrupti voluptas fugiat vitae tempore unde quo quas deleniti.\nDolores explicabo enim distinctio.", - "informationUsed": "Maiores corporis labore et repellat voluptates dolorem iste tenetur praesentium.\nImpedit temporibus nihil.\nExplicabo tempora dolores deleniti velit cumque aperiam at.\nSoluta hic totam placeat at.\nNobis repellat distinctio omnis dolore eos eos vitae illum.", - "pastOrPresentOrders": "Quae laborum itaque ratione delectus sint cumque dicta eius provident.\nFacilis optio eaque consequatur dicta.\nFuga facilis voluptate distinctio quae molestias.", - "commercialAndIndustrialPurposes": [ - { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { - "scheduleReference": "F2*", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true - }, - { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false - }, - { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false } ] } ], "activityLog": [ { - "siteRegistry": true, + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "LEUSCHKE GARFIELD", - "timestamp": "2014-08-22" + "user": "ANDERSON SHAUN", + "timestamp": "2022-12-13" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "DOYLE ADELA", - "timestamp": "2016-03-28" + "user": "ABBOTT NORMA", + "timestamp": "2017-06-29" }, { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "JACOBS LYDA", - "timestamp": "2014-02-18" + "user": "HARBER CADE", + "timestamp": "2014-03-31" }, { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "DURGAN MOZELLE", - "timestamp": "2020-08-27" + "user": "SHANAHAN YAZMIN", + "timestamp": "2023-08-28" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "RUECKER COLLIN", - "timestamp": "2017-05-21" + "user": "BRAKUS ROCIO", + "timestamp": "2017-12-28" }, { - "siteRegistry": true, + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "MARVIN KYLIE", + "timestamp": "2015-08-06" + }, + { + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "STAMM CARMELLA", - "timestamp": "2022-12-20" + "user": "BOSCO VALENTINA", + "timestamp": "2022-06-05" } ], "associatedSites": [ { - "dateNoted": "2014-09-26", + "dateNoted": "2017-05-01", "notes": "", - "parcelID": "20021", - "siteID": "19221", + "parcelID": "15452", + "siteID": "20722", "siteRegistry": true }, { - "dateNoted": "2013-10-25", + "dateNoted": "2016-03-06", "notes": "", - "parcelID": "18945", - "siteID": "18598", - "siteRegistry": false + "parcelID": "18355", + "siteID": "16640", + "siteRegistry": true + }, + { + "dateNoted": "2015-04-22", + "notes": "", + "parcelID": "19434", + "siteID": "19650", + "siteRegistry": true } ] }, { - "uuid": "175bcd89-254e-45d4-8b22-1e354e17cdc6", - "siteID": 17601, - "address": "162 Reichel Glens", - "latitude": 55.5881, - "longitude": -131.4084, - "lastUpdated": "2014-11-16", - "city": "West Ulices", - "region": " North Coast", - "victoriaFile": "26250-20/16811", + "uuid": "64195ecc-be0e-4b75-b006-d5109e576fa1", + "siteID": 20992, + "address": "9777 Madison Pike", + "latitude": 56.9621, + "longitude": -122.74, + "lastUpdated": "2016-12-24", + "city": "Magdalenfurt", + "region": "Mainland/Southwest", + "victoriaFile": "26250-20/5904", "regionalFile": "N/A", "parcelIDs": [ - 3196706, - 613815, - 858050, - 8124893, - 7084043 + 7671051, + 5195997, + 1074047, + 782659, + 3646441 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2022-03-07", - "completed": "2015-10-30", - "initiated": "2021-09-25", - "ministryContact": "DUBUQUE CLEMENTINA", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - } - ], - "siteRegistry": true - }, - { - "createdAt": "2014-07-22", - "completed": "2018-08-22", - "initiated": "2019-07-25", - "ministryContact": "PADBERG MARILOU", + "createdAt": "2017-06-23", + "completed": "2014-08-27", + "initiated": "2018-10-13", + "ministryContact": "COLLIER MARISOL", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -4301,21 +4677,6 @@ "" ], "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", @@ -4330,10 +4691,10 @@ "siteRegistry": false }, { - "createdAt": "2013-11-09", - "completed": "2021-07-14", - "initiated": "2022-12-16", - "ministryContact": "STANTON VITA", + "createdAt": "2021-09-10", + "completed": "2018-08-19", + "initiated": "2016-10-22", + "ministryContact": "CRIST ANDRE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -4341,228 +4702,219 @@ "" ], "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true + "role": "SUBMITTED BY", + "siteRegistry": false } ], + "siteRegistry": true + } + ], + "participants": [ + { + "name": "IPSUM", + "endDate": "2015-06-23", + "startDate": "2020-01-27", + "notes": "", + "roles": [ + "EMPLOYEE" + ], "siteRegistry": false }, { - "createdAt": "2021-07-16", - "completed": "2014-09-09", - "initiated": "2023-06-15", - "ministryContact": "RATKE-KUNZE AMYA", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - } + "name": "SHELL CANADA PRODUCTS", + "endDate": "2021-06-04", + "startDate": "2015-01-27", + "notes": "", + "roles": [ + "ORGANIZATION" ], "siteRegistry": true }, { - "createdAt": "2017-07-17", - "completed": "2022-11-29", - "initiated": "2016-05-08", - "ministryContact": "HAAG-FUNK AUGUSTINE", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - } + "name": "SHELL CANADA PRODUCTS", + "endDate": "2019-03-15", + "startDate": "2022-05-22", + "notes": "", + "roles": [ + "ORGANIZATION" ], "siteRegistry": true - } - ], - "participants": [ + }, { "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2020-08-27", - "startDate": "2020-10-01", + "endDate": "2018-07-01", + "startDate": "2015-09-22", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": true }, { "name": "AMET, DOLOR SIT", - "endDate": "2019-09-22", - "startDate": "2022-06-03", + "endDate": "2018-05-21", + "startDate": "2014-06-15", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true } ], "suspectLandUses": [ { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-10-07 (described on Site Profile dated 2022-10-07)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2021-08-28 (described on Site Profile dated 2021-08-28)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-02-19 (described on Site Profile dated 2021-02-19)", + "notes": "INSERTED FOR SITE PROFILE DATED 2015-10-14 (described on Site Profile dated 2015-10-14)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2015-01-21 (described on Site Profile dated 2015-01-21)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], - "siteDisclosures": [ + "parcelDescriptions": [ + { + "siteRegistry": false, + "dateNoted": "2017-03-25", + "parcelID": "15295", + "crownLandUsePIN": "17914", + "crownLandFileNumber": "17255", + "landDescription": "LOT 2 OF LOT 1 BLOCK 3 DISTRICT LOT 1 PLAN 5352" + }, { "siteRegistry": true, - "dateReceived": "2017-07-09", - "dateCompleted": "2023-02-20", - "dateEntered": "2018-08-13", - "dateRegistrar": "2018-02-18", - "dateLocalAuthorityReceived": "2016-10-02", - "summary": "Eius consequatur cum non suscipit beatae.\nIn temporibus et tempora.\nNisi iste quo dolores ipsum explicabo ipsum minima.", - "informationUsed": "Nulla occaecati quam dicta incidunt animi quia cumque placeat.\nLaboriosam unde eveniet.\nDolorem ab nihil debitis harum repellendus tempora asperiores modi in.", - "pastOrPresentOrders": "Quaerat atque aliquid dolor unde inventore pariatur.\nItaque dolores illo porro asperiores mollitia ex ullam modi accusamus.\nBeatae totam tempore officiis quos.", + "dateNoted": "2016-11-23", + "parcelID": "17678", + "crownLandUsePIN": "16681", + "crownLandFileNumber": "19988", + "landDescription": "LOT 1 OF LOT 5 BLOCK 5 DISTRICT LOT 2 PLAN 5401" + }, + { + "siteRegistry": true, + "dateNoted": "2018-11-04", + "parcelID": "15680", + "crownLandUsePIN": "19345", + "crownLandFileNumber": "17896", + "landDescription": "LOT 2 OF LOT 1 BLOCK 3 DISTRICT LOT 2 PLAN 9566" + } + ], + "siteDisclosures": [ + { + "siteRegistry": false, + "dateReceived": "2019-12-15", + "dateCompleted": "2022-01-25", + "dateEntered": "2022-11-28", + "dateRegistrar": "2015-08-04", + "dateLocalAuthorityReceived": "2016-09-04", + "summary": "Exercitationem molestias ad autem.\nNatus tenetur commodi eaque qui.\nRerum itaque nulla recusandae voluptas tempora quod quisquam.", + "informationUsed": "Facilis ad totam architecto expedita aliquid.\nDebitis nam suscipit odit.\nAlias natus inventore.", + "pastOrPresentOrders": "Modi consequuntur harum.", "commercialAndIndustrialPurposes": [ { "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false }, { "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false - }, - { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false } ] } ], "activityLog": [ { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "LANGWORTH CRISTOBAL", - "timestamp": "2021-07-28" + "user": "ZEMLAK GREG", + "timestamp": "2017-07-21" }, { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "O'KEEFE LERA", - "timestamp": "2022-04-13" + "user": "CHRISTIANSEN LUDWIG", + "timestamp": "2018-08-25" }, { - "siteRegistry": true, + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "MOEN JOSE", - "timestamp": "2021-08-26" + "user": "SIPES KENNEDY", + "timestamp": "2018-05-21" }, { - "siteRegistry": true, + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "THIEL CAMREN", - "timestamp": "2014-11-02" + "user": "BASHIRIAN CLARE", + "timestamp": "2013-12-25" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "LOWE RETHA", - "timestamp": "2021-11-19" + "user": "BECHTELAR DAPHNEY", + "timestamp": "2020-02-06" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "MORISSETTE CHARLOTTE", - "timestamp": "2020-10-12" + "user": "LUEILWITZ COOPER", + "timestamp": "2016-12-08" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "LINDGREN LEATHA", - "timestamp": "2021-03-27" + "user": "RODRIGUEZ LAURY", + "timestamp": "2019-11-23" } ], "associatedSites": [ { - "dateNoted": "2014-11-17", + "dateNoted": "2018-03-29", "notes": "", - "parcelID": "15321", - "siteID": "17854", + "parcelID": "16170", + "siteID": "18405", "siteRegistry": false } ] }, { - "uuid": "393d8081-9122-47bf-8835-d5a0f6d611d0", - "siteID": 15216, - "address": "94271 Geoffrey Ferry", - "latitude": 53.2479, - "longitude": -132.5539, - "lastUpdated": "2020-12-11", - "city": "East Geovannyfort", - "region": "Thompson-Okanagan", - "victoriaFile": "26250-20/8263", + "uuid": "010a776b-bbd2-4358-82c8-47c6ec8e7e73", + "siteID": 16432, + "address": "9796 D'Amore Plaza", + "latitude": 53.9806, + "longitude": -136.3472, + "lastUpdated": "2019-04-11", + "city": "Aylaburgh", + "region": " North Coast", + "victoriaFile": "26250-20/18787", "regionalFile": "N/A", "parcelIDs": [ - 7901487, - 3740600, - 9798305, - 9719903, - 670427 + 6970648, + 5247770, + 658200, + 5840438, + 4135318 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2022-01-03", - "completed": "2015-09-18", - "initiated": "2016-08-31", - "ministryContact": "HICKLE HOLLIE", + "createdAt": "2017-06-04", + "completed": "2015-09-19", + "initiated": "2015-09-17", + "ministryContact": "WATERS GEORGETTE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -4573,26 +4925,31 @@ { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", "siteRegistry": false } ], "siteRegistry": false }, { - "createdAt": "2018-04-23", - "completed": "2020-01-31", - "initiated": "2017-11-09", - "ministryContact": "BARTON MYRTIE", + "createdAt": "2021-06-23", + "completed": "2014-08-09", + "initiated": "2019-01-24", + "ministryContact": "STROSIN EMMITT", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -4600,24 +4957,29 @@ "" ], "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2016-01-19", - "completed": "2020-02-18", - "initiated": "2016-03-01", - "ministryContact": "RODRIGUEZ-RUNOLFSDOTTIR LEMUEL", + "createdAt": "2017-06-05", + "completed": "2023-08-31", + "initiated": "2016-02-15", + "ministryContact": "MORISSETTE DOCK", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -4628,21 +4990,31 @@ { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false } ], "siteRegistry": false }, { - "createdAt": "2020-06-08", - "completed": "2014-11-13", - "initiated": "2014-10-09", - "ministryContact": "REICHERT DOCK", + "createdAt": "2017-09-15", + "completed": "2013-12-03", + "initiated": "2023-04-13", + "ministryContact": "DURGAN ANSLEY", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -4652,37 +5024,27 @@ "notationParticipants": [ { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false + "role": "REQUESTED BY", + "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", "siteRegistry": false } ], "siteRegistry": true }, { - "createdAt": "2017-05-20", - "completed": "2018-02-22", - "initiated": "2022-04-21", - "ministryContact": "GIBSON META", + "createdAt": "2017-03-12", + "completed": "2016-08-23", + "initiated": "2015-02-09", + "ministryContact": "GERHOLD JEFFEREY", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -4693,11 +5055,26 @@ { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": true } ], @@ -4706,193 +5083,262 @@ ], "participants": [ { - "name": "AMET, DOLOR SIT", - "endDate": "2022-12-26", - "startDate": "2015-10-08", + "name": "IPSUM", + "endDate": "2015-08-18", + "startDate": "2021-12-22", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], - "siteRegistry": false + "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", - "endDate": "2015-08-17", - "startDate": "2014-10-20", + "endDate": "2019-12-10", + "startDate": "2017-10-17", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": false + "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2017-07-25", - "startDate": "2020-06-08", + "name": "AMET, DOLOR SIT", + "endDate": "2018-05-26", + "startDate": "2023-05-13", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": true + "siteRegistry": false }, { - "name": "IPSUM", - "endDate": "2023-01-03", - "startDate": "2018-02-25", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2014-10-14", + "startDate": "2021-10-25", "notes": "", "roles": [ "EMPLOYEE" ], "siteRegistry": true + }, + { + "name": "AMET, DOLOR SIT", + "endDate": "2021-03-25", + "startDate": "2017-05-20", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false } ], "suspectLandUses": [ { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-03-18 (described on Site Profile dated 2016-03-18)", + "notes": "INSERTED FOR SITE PROFILE DATED 2018-04-12 (described on Site Profile dated 2018-04-12)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2023-01-18 (described on Site Profile dated 2023-01-18)", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2016-08-07 (described on Site Profile dated 2016-08-07)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2021-10-31 (described on Site Profile dated 2021-10-31)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + } + ], + "parcelDescriptions": [ + { + "siteRegistry": true, + "dateNoted": "2016-09-01", + "parcelID": "16750", + "crownLandUsePIN": "19884", + "crownLandFileNumber": "19620", + "landDescription": "LOT 3 OF LOT 1 BLOCK 4 DISTRICT LOT 5 PLAN 8553" + }, + { + "siteRegistry": true, + "dateNoted": "2020-02-07", + "parcelID": "19604", + "crownLandUsePIN": "20281", + "crownLandFileNumber": "16495", + "landDescription": "LOT 5 OF LOT 3 BLOCK 4 DISTRICT LOT 5 PLAN 3897" + }, + { + "siteRegistry": true, + "dateNoted": "2017-11-04", + "parcelID": "20929", + "crownLandUsePIN": "16370", + "crownLandFileNumber": "16310", + "landDescription": "LOT 3 OF LOT 3 BLOCK 4 DISTRICT LOT 2 PLAN 7109" }, { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-01-22 (described on Site Profile dated 2017-01-22)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "dateNoted": "2015-01-27", + "parcelID": "16337", + "crownLandUsePIN": "16488", + "crownLandFileNumber": "16943", + "landDescription": "LOT 1 OF LOT 3 BLOCK 3 DISTRICT LOT 3 PLAN 8642" } ], "siteDisclosures": [ { "siteRegistry": true, - "dateReceived": "2022-02-17", - "dateCompleted": "2014-02-12", - "dateEntered": "2017-03-21", - "dateRegistrar": "2016-09-04", - "dateLocalAuthorityReceived": "2014-12-09", - "summary": "Praesentium facere eos id reiciendis.\nTemporibus voluptate distinctio placeat maiores atque.", - "informationUsed": "Corporis natus aspernatur numquam suscipit quos corrupti.\nVelit sint placeat cupiditate amet ducimus dolor nisi.\nVero molestiae sequi quaerat natus cupiditate.\nMaiores amet adipisci recusandae recusandae earum iste.\nIste illo modi quasi culpa.", - "pastOrPresentOrders": "Sed optio vel necessitatibus neque illo occaecati modi repellendus cupiditate.\nNumquam quos unde vel hic tenetur eveniet odit quidem.\nNumquam tenetur magnam mollitia nam perspiciatis iure illo.", + "dateReceived": "2015-11-06", + "dateCompleted": "2022-10-04", + "dateEntered": "2022-07-11", + "dateRegistrar": "2015-08-26", + "dateLocalAuthorityReceived": "2019-03-14", + "summary": "Velit illum non quaerat.", + "informationUsed": "Assumenda accusamus deleniti facere aliquid reprehenderit laudantium.\nAd sequi illum quo ipsa.\nVeritatis recusandae itaque dolorum sequi quaerat.", + "pastOrPresentOrders": "Sed in veniam voluptatum delectus nemo consequatur provident.\nDucimus voluptas dignissimos tempora.\nVoluptate porro odit.", "commercialAndIndustrialPurposes": [ { - "scheduleReference": "F1*", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + } + ] + }, + { + "siteRegistry": true, + "dateReceived": "2019-12-11", + "dateCompleted": "2022-05-19", + "dateEntered": "2016-04-24", + "dateRegistrar": "2023-08-24", + "dateLocalAuthorityReceived": "2018-09-27", + "summary": "Laboriosam debitis omnis neque reiciendis enim quod.\nMollitia eaque inventore ipsam.\nPossimus ut facilis similique nam corporis accusamus.", + "informationUsed": "Dolorum distinctio tenetur adipisci.\nAperiam vitae rerum corporis hic aut consequuntur nobis exercitationem itaque.\nHarum rerum distinctio aperiam.\nUt sed natus odio voluptate.\nNemo id nam.", + "pastOrPresentOrders": "Dolores voluptatem a atque qui aut.", + "commercialAndIndustrialPurposes": [ { "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false } ] } ], "activityLog": [ { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "PRICE ARTURO", - "timestamp": "2022-11-06" + "user": "ULLRICH MAURINE", + "timestamp": "2021-08-16" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "STEUBER DESIREE", - "timestamp": "2019-01-02" + "user": "GREENFELDER WILLIS", + "timestamp": "2022-08-21" }, { - "siteRegistry": true, + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "HARRIS THEA", - "timestamp": "2016-04-13" + "user": "KOZEY SHAKIRA", + "timestamp": "2015-09-23" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "WINTHEISER BAYLEE", - "timestamp": "2023-01-12" + "user": "TILLMAN MARC", + "timestamp": "2015-02-27" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "FUNK ELISE", - "timestamp": "2021-02-18" + "user": "BAUCH IGNACIO", + "timestamp": "2015-05-20" }, { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "GUTMANN LILY", - "timestamp": "2018-01-28" + "user": "SCHMITT JENNIE", + "timestamp": "2017-01-07" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "MUELLER SHAYNA", - "timestamp": "2014-08-01" + "user": "MAYERT ANIYAH", + "timestamp": "2016-11-27" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "GUSIKOWSKI CECILE", + "timestamp": "2021-11-04" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "WUNSCH CARMELA", - "timestamp": "2019-08-23" + "user": "JOHNS BLAZE", + "timestamp": "2017-02-06" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "WELCH CALEIGH", - "timestamp": "2023-02-25" + "user": "NITZSCHE RASHAD", + "timestamp": "2014-09-13" } ], "associatedSites": [ { - "dateNoted": "2021-03-29", - "notes": "", - "parcelID": "18467", - "siteID": "16386", - "siteRegistry": true - }, - { - "dateNoted": "2014-08-28", - "notes": "", - "parcelID": "16523", - "siteID": "20137", - "siteRegistry": false - }, - { - "dateNoted": "2022-01-26", + "dateNoted": "2018-07-24", "notes": "", - "parcelID": "18385", - "siteID": "18030", + "parcelID": "19239", + "siteID": "17225", "siteRegistry": false } ] }, { - "uuid": "40e24884-9b91-43d7-ab85-de7da8999fa3", - "siteID": 15423, - "address": "9595 Bradtke Mount", - "latitude": 57.2807, - "longitude": -124.131, - "lastUpdated": "2022-07-17", - "city": "Karenfort", - "region": "Kootenay", - "victoriaFile": "26250-20/17347", + "uuid": "54f2b59d-e434-47fa-9f2b-ef73a2d61cef", + "siteID": 19390, + "address": "6648 Frances Wall", + "latitude": 56.3227, + "longitude": -137.4597, + "lastUpdated": "2016-07-09", + "city": "Port Esteban", + "region": "Mainland/Southwest", + "victoriaFile": "26250-20/18831", "regionalFile": "N/A", "parcelIDs": [ - 152735, - 8822449, - 650173, - 2173485, - 3898436 + 8638945, + 7961227, + 6299266, + 9685428, + 1112981 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2018-03-04", - "completed": "2021-10-17", - "initiated": "2023-09-01", - "ministryContact": "ROSENBAUM KYLA", + "createdAt": "2020-06-26", + "completed": "2015-06-12", + "initiated": "2018-07-17", + "ministryContact": "FUNK LUCAS", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -4901,23 +5347,23 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true + "role": "SUBMITTED BY", + "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2022-05-26", - "completed": "2021-09-11", - "initiated": "2016-11-08", - "ministryContact": "CRONIN CARLEY", + "createdAt": "2018-05-14", + "completed": "2022-02-16", + "initiated": "2015-09-24", + "ministryContact": "BRADTKE ASTRID", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -4931,48 +5377,28 @@ "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - } - ], - "siteRegistry": true - }, - { - "createdAt": "2020-10-23", - "completed": "2014-09-16", - "initiated": "2022-04-03", - "ministryContact": "BECKER LUCIOUS", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false + "role": "SUBMITTED BY", + "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false } ], "siteRegistry": false }, { - "createdAt": "2020-09-05", - "completed": "2019-06-21", - "initiated": "2015-08-24", - "ministryContact": "SWANIAWSKI HANS", + "createdAt": "2020-07-18", + "completed": "2020-12-24", + "initiated": "2013-12-25", + "ministryContact": "VEUM DAHLIA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -4981,33 +5407,38 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false + "role": "REQUESTED BY", + "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", "siteRegistry": true } ], "siteRegistry": true }, { - "createdAt": "2016-06-10", - "completed": "2023-07-22", - "initiated": "2019-07-26", - "ministryContact": "JACOBI LEMPI", + "createdAt": "2022-07-14", + "completed": "2018-12-08", + "initiated": "2020-07-04", + "ministryContact": "WEIMANN-O'KEEFE MELBA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -5017,102 +5448,120 @@ "notationParticipants": [ { "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false } ], "participants": [ { "name": "AMET, DOLOR SIT", - "endDate": "2016-02-12", - "startDate": "2020-03-01", + "endDate": "2015-04-10", + "startDate": "2018-02-08", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": true }, { - "name": "AMET, DOLOR SIT", - "endDate": "2023-03-02", - "startDate": "2022-01-06", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2020-06-27", + "startDate": "2020-02-04", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": false }, { - "name": "IPSUM", - "endDate": "2019-02-24", - "startDate": "2015-09-29", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2019-07-11", + "startDate": "2019-03-16", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true } ], "suspectLandUses": [ { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-02-21 (described on Site Profile dated 2021-02-21)", + "notes": "INSERTED FOR SITE PROFILE DATED 2017-04-06 (described on Site Profile dated 2017-04-06)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2023-04-15 (described on Site Profile dated 2023-04-15)", + "notes": "INSERTED FOR SITE PROFILE DATED 2023-08-12 (described on Site Profile dated 2023-08-12)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2020-05-26 (described on Site Profile dated 2020-05-26)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2019-05-29 (described on Site Profile dated 2019-05-29)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-10-30 (described on Site Profile dated 2015-10-30)", + "notes": "INSERTED FOR SITE PROFILE DATED 2020-07-18 (described on Site Profile dated 2020-07-18)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + } + ], + "parcelDescriptions": [ + { + "siteRegistry": false, + "dateNoted": "2013-11-28", + "parcelID": "18782", + "crownLandUsePIN": "20254", + "crownLandFileNumber": "15812", + "landDescription": "LOT 3 OF LOT 3 BLOCK 3 DISTRICT LOT 3 PLAN 7535" }, { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-11-06 (described on Site Profile dated 2018-11-06)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "siteRegistry": false, + "dateNoted": "2014-03-17", + "parcelID": "15825", + "crownLandUsePIN": "20490", + "crownLandFileNumber": "15748", + "landDescription": "LOT 3 OF LOT 2 BLOCK 1 DISTRICT LOT 4 PLAN 4931" } ], "siteDisclosures": [ { - "siteRegistry": false, - "dateReceived": "2021-09-04", - "dateCompleted": "2017-06-12", - "dateEntered": "2023-05-12", - "dateRegistrar": "2022-06-22", - "dateLocalAuthorityReceived": "2014-07-02", - "summary": "Quam minima rerum dolor reiciendis.\nDignissimos doloribus blanditiis ab laborum sed qui.\nImpedit aliquam repellat alias doloribus exercitationem temporibus.", - "informationUsed": "Voluptate ratione aperiam exercitationem iste accusamus aliquid harum consequuntur quis.\nAccusantium iure quibusdam qui delectus cumque.\nMaiores sunt unde tenetur architecto incidunt.", - "pastOrPresentOrders": "Omnis quidem rerum voluptas.", + "siteRegistry": true, + "dateReceived": "2019-02-09", + "dateCompleted": "2016-05-09", + "dateEntered": "2016-06-08", + "dateRegistrar": "2018-12-26", + "dateLocalAuthorityReceived": "2019-01-26", + "summary": "Praesentium rem voluptates a possimus dolor.\nPariatur ullam molestiae dicta magnam architecto.", + "informationUsed": "Voluptatibus vel assumenda consequuntur explicabo minus accusantium a porro quo.\nEarum iure sit facilis.\nDelectus sequi omnis.\nRepudiandae amet nesciunt numquam.", + "pastOrPresentOrders": "Quia occaecati perspiciatis quas.", "commercialAndIndustrialPurposes": [ - { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false - }, { "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false }, { "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true } ] @@ -5120,108 +5569,108 @@ ], "activityLog": [ { - "siteRegistry": true, + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "WILDERMAN DANIELA", - "timestamp": "2016-08-22" + "user": "SCHAEFER ZACHARIAH", + "timestamp": "2022-06-12" }, { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "SCHNEIDER MERLE", - "timestamp": "2023-01-17" + "user": "CONROY REBEKA", + "timestamp": "2015-11-02" }, { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "ROBEL HILBERT", - "timestamp": "2023-04-17" + "user": "TOWNE TERESA", + "timestamp": "2020-10-18" }, { - "siteRegistry": true, + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "RUNOLFSDOTTIR ROSALEE", - "timestamp": "2014-01-30" + "user": "GRIMES LILLIAN", + "timestamp": "2023-04-25" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "BECHTELAR LINNEA", - "timestamp": "2014-05-31" + "user": "FRANECKI VITO", + "timestamp": "2014-06-27" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "JACOBI PIERRE", - "timestamp": "2023-01-29" + "user": "WEISSNAT MATEO", + "timestamp": "2021-12-28" }, { - "siteRegistry": true, + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "DICKENS-HANE WYATT", - "timestamp": "2019-07-16" + "user": "STANTON BRAULIO", + "timestamp": "2016-04-27" }, { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "CORMIER MABEL", - "timestamp": "2018-08-21" + "user": "MUELLER DUNCAN", + "timestamp": "2022-07-01" }, { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "PAUCEK MARISA", - "timestamp": "2016-01-28" + "user": "WINDLER LISA", + "timestamp": "2021-07-28" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "WILLMS RUSTY", - "timestamp": "2015-12-04" + "user": "BARROWS DORA", + "timestamp": "2019-10-01" } ], "associatedSites": [ { - "dateNoted": "2019-09-11", + "dateNoted": "2021-03-05", "notes": "", - "parcelID": "17965", - "siteID": "17648", + "parcelID": "16045", + "siteID": "17306", "siteRegistry": false }, { - "dateNoted": "2021-02-08", + "dateNoted": "2019-08-03", "notes": "", - "parcelID": "17591", - "siteID": "20921", - "siteRegistry": true + "parcelID": "20944", + "siteID": "20221", + "siteRegistry": false } ] }, { - "uuid": "df462fa9-c569-4643-80b5-a6cd5c24ff3e", - "siteID": 18513, - "address": "79207 Ritchie Crossroad", - "latitude": 54.5108, - "longitude": -124.4419, - "lastUpdated": "2022-04-26", - "city": "Merlland", - "region": "Thompson-Okanagan", - "victoriaFile": "26250-20/4654", + "uuid": "55d6dddd-6261-4a5e-a984-a8c3638f39f4", + "siteID": 19093, + "address": "74894 Vandervort Square", + "latitude": 55.9168, + "longitude": -133.5076, + "lastUpdated": "2022-05-14", + "city": "Gislasonton", + "region": "Vancouver Island/Coast", + "victoriaFile": "26250-20/6505", "regionalFile": "N/A", "parcelIDs": [ - 1813087, - 2654674, - 3276271, - 8534312, - 6462061 + 8958022, + 3244038, + 7457366, + 6789350, + 4237090 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2020-01-10", - "completed": "2022-01-28", - "initiated": "2018-04-13", - "ministryContact": "KREIGER AMINA", + "createdAt": "2014-10-29", + "completed": "2014-07-27", + "initiated": "2019-02-20", + "ministryContact": "KLEIN JANICK", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -5232,13 +5681,18 @@ { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", @@ -5248,10 +5702,10 @@ "siteRegistry": false }, { - "createdAt": "2018-08-27", - "completed": "2016-03-08", - "initiated": "2020-12-03", - "ministryContact": "BOGAN BRETT", + "createdAt": "2018-09-02", + "completed": "2020-06-30", + "initiated": "2016-02-16", + "ministryContact": "HELLER MERLIN", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -5260,22 +5714,22 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true } @@ -5283,10 +5737,10 @@ "siteRegistry": false }, { - "createdAt": "2019-10-27", - "completed": "2018-05-16", - "initiated": "2019-12-16", - "ministryContact": "MAYERT IRMA", + "createdAt": "2021-11-15", + "completed": "2020-09-04", + "initiated": "2018-07-28", + "ministryContact": "HEIDENREICH KIAN", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -5294,15 +5748,50 @@ "" ], "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "createdAt": "2022-07-21", + "completed": "2021-02-27", + "initiated": "2020-08-14", + "ministryContact": "WARD MONROE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ { "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false } ], "siteRegistry": true @@ -5310,9 +5799,9 @@ ], "participants": [ { - "name": "IPSUM", - "endDate": "2021-02-13", - "startDate": "2022-10-14", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2022-12-30", + "startDate": "2016-02-09", "notes": "", "roles": [ "ORGANIZATION" @@ -5320,19 +5809,9 @@ "siteRegistry": true }, { - "name": "IPSUM", - "endDate": "2016-06-09", - "startDate": "2018-04-24", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": false - }, - { - "name": "AMET, DOLOR SIT", - "endDate": "2016-01-30", - "startDate": "2018-08-10", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2018-03-01", + "startDate": "2022-09-04", "notes": "", "roles": [ "ORGANIZATION" @@ -5340,19 +5819,9 @@ "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2014-11-17", - "startDate": "2020-07-18", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2021-04-29", - "startDate": "2019-05-30", + "name": "IPSUM", + "endDate": "2016-06-19", + "startDate": "2019-10-24", "notes": "", "roles": [ "ORGANIZATION" @@ -5363,145 +5832,166 @@ "suspectLandUses": [ { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-06-12 (described on Site Profile dated 2021-06-12)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "notes": "INSERTED FOR SITE PROFILE DATED 2020-02-20 (described on Site Profile dated 2020-02-20)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-07-20 (described on Site Profile dated 2016-07-20)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2014-05-30 (described on Site Profile dated 2014-05-30)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], - "siteDisclosures": [ + "parcelDescriptions": [ + { + "siteRegistry": true, + "dateNoted": "2015-03-15", + "parcelID": "19707", + "crownLandUsePIN": "15427", + "crownLandFileNumber": "16401", + "landDescription": "LOT 5 OF LOT 1 BLOCK 2 DISTRICT LOT 5 PLAN 8847" + }, { "siteRegistry": false, - "dateReceived": "2015-01-13", - "dateCompleted": "2018-01-14", - "dateEntered": "2015-12-11", - "dateRegistrar": "2020-07-14", - "dateLocalAuthorityReceived": "2022-05-12", - "summary": "Dolorum ullam architecto nostrum nam rem vero illum molestias excepturi.\nOdio culpa laborum tempore veniam cum cum praesentium.", - "informationUsed": "Magnam odio necessitatibus qui assumenda rem cumque officiis nemo.\nSoluta occaecati excepturi dolore.\nPraesentium asperiores delectus.\nEarum dolores asperiores unde repudiandae.\nSunt consectetur sunt.", - "pastOrPresentOrders": "Nisi voluptatibus suscipit ipsum nobis iure hic ducimus quisquam pariatur.", - "commercialAndIndustrialPurposes": [ - { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true - }, - { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false - }, - { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false - }, - { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false - } - ] + "dateNoted": "2018-04-08", + "parcelID": "19669", + "crownLandUsePIN": "19925", + "crownLandFileNumber": "15917", + "landDescription": "LOT 3 OF LOT 5 BLOCK 4 DISTRICT LOT 5 PLAN 9277" }, { "siteRegistry": false, - "dateReceived": "2020-05-13", - "dateCompleted": "2015-08-06", - "dateEntered": "2017-01-09", - "dateRegistrar": "2023-05-08", - "dateLocalAuthorityReceived": "2015-01-06", - "summary": "Dicta suscipit quod ad aspernatur.\nMolestiae cum ratione provident pariatur.", - "informationUsed": "Quisquam aperiam odit ipsa.\nSimilique culpa voluptatem dignissimos minus voluptate doloremque qui beatae.\nDucimus praesentium molestias tempore.", - "pastOrPresentOrders": "Modi odio harum quibusdam magni culpa.\nModi atque minus at et culpa.\nSunt exercitationem tempora architecto.", + "dateNoted": "2021-03-22", + "parcelID": "20703", + "crownLandUsePIN": "18991", + "crownLandFileNumber": "20284", + "landDescription": "LOT 4 OF LOT 5 BLOCK 4 DISTRICT LOT 2 PLAN 4175" + }, + { + "siteRegistry": true, + "dateNoted": "2015-01-20", + "parcelID": "18214", + "crownLandUsePIN": "19936", + "crownLandFileNumber": "18966", + "landDescription": "LOT 4 OF LOT 4 BLOCK 2 DISTRICT LOT 4 PLAN 7391" + } + ], + "siteDisclosures": [ + { + "siteRegistry": true, + "dateReceived": "2014-09-17", + "dateCompleted": "2016-01-24", + "dateEntered": "2016-05-15", + "dateRegistrar": "2021-05-26", + "dateLocalAuthorityReceived": "2018-04-23", + "summary": "Quia quae vitae cum officiis quidem suscipit sequi odit.\nRatione dolore hic cumque nemo suscipit blanditiis impedit consequuntur nam.\nReiciendis eveniet quaerat numquam occaecati tempore voluptatum voluptatem quisquam quaerat.", + "informationUsed": "Tempore nisi aliquam dolorem a fugiat.\nDolor facere autem nam provident repudiandae modi quia corporis.\nQuasi nesciunt eos nulla labore nobis.\nEveniet amet nemo culpa.", + "pastOrPresentOrders": "Aliquam doloremque doloribus veritatis est architecto ullam quod.\nFugiat a maiores ipsum maiores necessitatibus.\nVelit expedita temporibus itaque corrupti a nulla error suscipit praesentium.", "commercialAndIndustrialPurposes": [ { "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, { "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true - }, - { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false } ] } ], "activityLog": [ { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "YUNDT CELINE", - "timestamp": "2016-07-18" + "user": "BERGNAUM DASHAWN", + "timestamp": "2018-08-16" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "LANGOSH DAYNA", - "timestamp": "2022-06-29" + "user": "LANGWORTH ROWAN", + "timestamp": "2021-08-03" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "CASPER ANSLEY", + "timestamp": "2018-11-04" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "HODKIEWICZ NARCISO", - "timestamp": "2017-03-02" + "user": "WISOKY CAROLYNE", + "timestamp": "2020-12-06" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "LABADIE TALIA", - "timestamp": "2018-03-27" + "user": "DAUGHERTY BETTYE", + "timestamp": "2022-11-15" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "ZIEME KIRSTIN", + "timestamp": "2015-04-08" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "SCHNEIDER ALANIS", + "timestamp": "2020-11-27" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "SPENCER ASIA", - "timestamp": "2022-10-05" + "user": "ULLRICH PRICE", + "timestamp": "2016-03-26" } ], "associatedSites": [ { - "dateNoted": "2014-07-27", + "dateNoted": "2021-06-09", "notes": "", - "parcelID": "19132", - "siteID": "19103", + "parcelID": "18653", + "siteID": "16278", "siteRegistry": true + }, + { + "dateNoted": "2023-09-26", + "notes": "", + "parcelID": "19954", + "siteID": "18787", + "siteRegistry": false } ] }, { - "uuid": "94ba8dda-edae-45a4-b9de-1d4b2abbff8c", - "siteID": 18494, - "address": "9224 Lottie Radial", - "latitude": 52.7127, - "longitude": -124.1853, - "lastUpdated": "2020-01-28", - "city": "New Jordistad", - "region": "Cariboo", - "victoriaFile": "26250-20/16252", + "uuid": "15e13fac-6cd6-43b5-ba85-2f221dbd01fc", + "siteID": 19391, + "address": "818 McDermott Extensions", + "latitude": 56.4158, + "longitude": -137.529, + "lastUpdated": "2019-08-31", + "city": "Jacobsontown", + "region": "Kootenay", + "victoriaFile": "26250-20/2124", "regionalFile": "N/A", "parcelIDs": [ - 3158936, - 8359958, - 5313792, - 4582632, - 7119680 + 7266599, + 2633510, + 5174334, + 4640175, + 4139616 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2022-02-08", - "completed": "2023-04-10", - "initiated": "2022-08-28", - "ministryContact": "CONN KEYON", + "createdAt": "2015-09-11", + "completed": "2018-03-17", + "initiated": "2015-02-07", + "ministryContact": "RUNOLFSSON TYREEK", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -5509,34 +5999,29 @@ "" ], "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2017-12-24", - "completed": "2020-09-28", - "initiated": "2022-10-26", - "ministryContact": "MUELLER BUCK", + "createdAt": "2017-11-25", + "completed": "2015-10-26", + "initiated": "2019-11-26", + "ministryContact": "LANGWORTH LOWELL", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -5545,7 +6030,7 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true }, @@ -5553,20 +6038,15 @@ "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2021-04-15", - "completed": "2023-09-28", - "initiated": "2019-06-11", - "ministryContact": "JOHNSON MCKENNA", + "createdAt": "2019-11-25", + "completed": "2023-02-05", + "initiated": "2017-05-13", + "ministryContact": "PURDY KENYON", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -5574,130 +6054,152 @@ "" ], "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, { "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - } - ], - "siteRegistry": true - }, - { - "createdAt": "2023-07-17", - "completed": "2015-05-05", - "initiated": "2018-06-23", - "ministryContact": "HINTZ CHLOE", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false } ], "participants": [ { "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2018-08-17", - "startDate": "2022-06-07", + "endDate": "2019-04-26", + "startDate": "2016-04-30", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": true + "siteRegistry": false }, { - "name": "IPSUM", - "endDate": "2019-10-28", - "startDate": "2017-06-25", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2023-06-30", + "startDate": "2015-09-08", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": true }, { "name": "AMET, DOLOR SIT", - "endDate": "2023-02-08", - "startDate": "2021-11-25", + "endDate": "2023-05-04", + "startDate": "2019-07-01", "notes": "", "roles": [ "ORGANIZATION" ], + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2021-04-06", + "startDate": "2021-06-17", + "notes": "", + "roles": [ + "EMPLOYEE" + ], "siteRegistry": true }, { - "name": "IPSUM", - "endDate": "2023-03-01", - "startDate": "2018-12-29", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2019-05-12", + "startDate": "2022-06-29", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true } ], "suspectLandUses": [ { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-08-25 (described on Site Profile dated 2014-08-25)", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2023-09-01 (described on Site Profile dated 2023-09-01)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2022-10-30 (described on Site Profile dated 2022-10-30)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + } + ], + "parcelDescriptions": [ + { + "siteRegistry": true, + "dateNoted": "2014-09-23", + "parcelID": "19905", + "crownLandUsePIN": "19836", + "crownLandFileNumber": "16936", + "landDescription": "LOT 4 OF LOT 3 BLOCK 2 DISTRICT LOT 2 PLAN 5145" + }, { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-12-09 (described on Site Profile dated 2015-12-09)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "dateNoted": "2022-12-01", + "parcelID": "16039", + "crownLandUsePIN": "16299", + "crownLandFileNumber": "19104", + "landDescription": "LOT 2 OF LOT 4 BLOCK 1 DISTRICT LOT 5 PLAN 3211" + }, + { + "siteRegistry": false, + "dateNoted": "2019-08-03", + "parcelID": "16192", + "crownLandUsePIN": "15769", + "crownLandFileNumber": "18149", + "landDescription": "LOT 1 OF LOT 3 BLOCK 4 DISTRICT LOT 2 PLAN 3933" + }, + { + "siteRegistry": false, + "dateNoted": "2019-03-30", + "parcelID": "17602", + "crownLandUsePIN": "19376", + "crownLandFileNumber": "17955", + "landDescription": "LOT 5 OF LOT 2 BLOCK 3 DISTRICT LOT 4 PLAN 6536" + }, + { + "siteRegistry": true, + "dateNoted": "2018-05-16", + "parcelID": "17825", + "crownLandUsePIN": "16057", + "crownLandFileNumber": "15895", + "landDescription": "LOT 3 OF LOT 1 BLOCK 4 DISTRICT LOT 4 PLAN 3241" } ], "siteDisclosures": [ { - "siteRegistry": false, - "dateReceived": "2021-09-30", - "dateCompleted": "2022-05-10", - "dateEntered": "2017-01-07", - "dateRegistrar": "2019-12-01", - "dateLocalAuthorityReceived": "2020-03-17", - "summary": "Optio iste unde placeat aspernatur error.", - "informationUsed": "Dolor veniam aut cumque temporibus velit.\nPraesentium facere pariatur quis ex nostrum natus.\nDistinctio ullam nulla illo voluptatibus natus.\nReiciendis quod laborum amet expedita pariatur perspiciatis accusantium rem deserunt.", - "pastOrPresentOrders": "Doloremque odit nostrum nisi magnam corporis totam dolore mollitia tenetur.\nIn voluptas unde aut maxime magnam facere suscipit sapiente fuga.", + "siteRegistry": true, + "dateReceived": "2019-05-26", + "dateCompleted": "2020-09-14", + "dateEntered": "2013-11-17", + "dateRegistrar": "2017-06-27", + "dateLocalAuthorityReceived": "2021-02-22", + "summary": "Placeat at vero suscipit adipisci hic ipsam ut.", + "informationUsed": "Sapiente sed veritatis ratione doloremque.\nVel sed unde quod.\nEaque aut assumenda inventore sed.", + "pastOrPresentOrders": "Aperiam quia molestias animi culpa ipsum.\nSit molestiae atque animi nulla.", "commercialAndIndustrialPurposes": [ { "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false + "siteRegistry": true }, { "scheduleReference": "F2*", @@ -5709,77 +6211,71 @@ ], "activityLog": [ { - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "NOLAN KAELA", - "timestamp": "2014-04-24" - }, - { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "MERTZ MAYA", - "timestamp": "2021-08-06" + "user": "PAUCEK TAD", + "timestamp": "2020-10-15" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "HANE DAKOTA", - "timestamp": "2014-09-10" + "user": "WEHNER BRIANNE", + "timestamp": "2013-11-09" }, { - "siteRegistry": true, + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "WUCKERT MOISES", - "timestamp": "2023-05-21" + "user": "LANGWORTH DERECK", + "timestamp": "2014-02-05" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "DICKENS MATTIE", - "timestamp": "2021-02-28" + "user": "REILLY ARYANNA", + "timestamp": "2019-03-28" }, { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "BORER KEENAN", - "timestamp": "2015-05-13" + "user": "BARTOLETTI LUTHER", + "timestamp": "2014-03-29" } ], "associatedSites": [ { - "dateNoted": "2014-05-01", + "dateNoted": "2020-04-01", "notes": "", - "parcelID": "16562", - "siteID": "17741", - "siteRegistry": true + "parcelID": "18946", + "siteID": "15837", + "siteRegistry": false } ] }, { - "uuid": "c2976dd3-87de-431f-8a27-170e170e1906", - "siteID": 18625, - "address": "5291 Trantow Via", - "latitude": 53.1512, - "longitude": -120.0952, - "lastUpdated": "2016-11-22", - "city": "Sedrickburgh", - "region": " North Coast", - "victoriaFile": "26250-20/4477", + "uuid": "5a94cebd-1613-40bf-89f5-f3ba345b4c4e", + "siteID": 19745, + "address": "2209 Wisozk Bridge", + "latitude": 52.1839, + "longitude": -123.4209, + "lastUpdated": "2016-04-02", + "city": "Port Wilma", + "region": "Mainland/Southwest", + "victoriaFile": "26250-20/13330", "regionalFile": "N/A", "parcelIDs": [ - 7146344, - 4866628, - 1917937, - 4479047, - 3905149 + 6431180, + 9436505, + 5334938, + 7497484, + 3085806 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2019-04-12", - "completed": "2018-10-27", - "initiated": "2019-12-26", - "ministryContact": "LABADIE NOLA", + "createdAt": "2014-04-24", + "completed": "2014-03-11", + "initiated": "2022-07-23", + "ministryContact": "OSINSKI MELBA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -5788,24 +6284,19 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", @@ -5816,10 +6307,10 @@ "siteRegistry": false }, { - "createdAt": "2023-09-26", - "completed": "2014-02-14", - "initiated": "2014-04-06", - "ministryContact": "HACKETT EUNICE", + "createdAt": "2023-04-19", + "completed": "2019-01-22", + "initiated": "2019-05-24", + "ministryContact": "VOLKMAN HELOISE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -5828,23 +6319,33 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2022-08-03", - "completed": "2020-11-25", - "initiated": "2015-12-11", - "ministryContact": "ZIEMANN CAMILA", + "createdAt": "2016-12-30", + "completed": "2014-11-29", + "initiated": "2020-10-19", + "ministryContact": "PROSACCO DEVONTE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -5853,33 +6354,38 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2015-07-12", - "completed": "2021-04-26", - "initiated": "2016-12-21", - "ministryContact": "BAUCH HIRAM", + "createdAt": "2022-12-10", + "completed": "2021-06-18", + "initiated": "2014-09-23", + "ministryContact": "MACEJKOVIC SANTINO", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -5888,74 +6394,102 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false } ], "participants": [ { - "name": "IPSUM", - "endDate": "2015-03-27", - "startDate": "2017-02-07", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2018-10-29", + "startDate": "2014-04-20", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], - "siteRegistry": false + "siteRegistry": true }, { - "name": "AMET, DOLOR SIT", - "endDate": "2014-12-14", - "startDate": "2019-12-23", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2018-05-30", + "startDate": "2020-01-28", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true } ], "suspectLandUses": [ { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-07-01 (described on Site Profile dated 2019-07-01)", + "notes": "INSERTED FOR SITE PROFILE DATED 2014-09-16 (described on Site Profile dated 2014-09-16)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-03-04 (described on Site Profile dated 2022-03-04)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2016-09-21 (described on Site Profile dated 2016-09-21)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2020-11-04 (described on Site Profile dated 2020-11-04)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + } + ], + "parcelDescriptions": [ + { + "siteRegistry": false, + "dateNoted": "2023-08-25", + "parcelID": "16747", + "crownLandUsePIN": "19552", + "crownLandFileNumber": "17132", + "landDescription": "LOT 4 OF LOT 2 BLOCK 4 DISTRICT LOT 3 PLAN 9659" + }, + { + "siteRegistry": false, + "dateNoted": "2016-08-11", + "parcelID": "20358", + "crownLandUsePIN": "18490", + "crownLandFileNumber": "20132", + "landDescription": "LOT 2 OF LOT 4 BLOCK 3 DISTRICT LOT 3 PLAN 6552" } ], "siteDisclosures": [ { - "siteRegistry": true, - "dateReceived": "2022-07-21", - "dateCompleted": "2019-01-20", - "dateEntered": "2015-12-29", - "dateRegistrar": "2017-10-08", - "dateLocalAuthorityReceived": "2021-09-20", - "summary": "Voluptatibus porro sequi deleniti doloribus.\nAtque facere tenetur quidem quasi in earum accusamus ipsum.\nLabore eligendi eligendi enim.", - "informationUsed": "Natus modi esse vero ducimus alias.\nFugit assumenda sit quia alias alias maxime nesciunt.\nSaepe fuga sit sequi.", - "pastOrPresentOrders": "Velit aperiam est ipsum corrupti esse sapiente alias voluptate unde.\nFacere itaque fugit facere nesciunt dicta voluptates quasi.", + "siteRegistry": false, + "dateReceived": "2020-01-19", + "dateCompleted": "2016-05-10", + "dateEntered": "2020-04-15", + "dateRegistrar": "2023-04-03", + "dateLocalAuthorityReceived": "2015-09-11", + "summary": "Eos veritatis expedita.\nAccusamus a cumque veritatis cum provident odio ipsam vero beatae.\nOccaecati neque perferendis hic nobis sit iure pariatur accusamus.", + "informationUsed": "Eos quidem inventore sed optio.\nEius ipsum laborum totam beatae beatae numquam labore aliquid corporis.\nExercitationem ea iusto mollitia necessitatibus.\nLaboriosam laborum commodi reiciendis.", + "pastOrPresentOrders": "Aliquam sed fuga suscipit odio doloremque labore deleniti expedita cum.\nRepellat eveniet sapiente corrupti voluptatum modi quod pariatur eius.\nPorro error recusandae.", "commercialAndIndustrialPurposes": [ - { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true - }, { "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false + "siteRegistry": true }, { "scheduleReference": "F2*", @@ -5964,102 +6498,117 @@ }, { "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false - } - ] - }, - { - "siteRegistry": true, - "dateReceived": "2017-03-29", - "dateCompleted": "2014-06-15", - "dateEntered": "2019-02-04", - "dateRegistrar": "2018-07-05", - "dateLocalAuthorityReceived": "2015-06-25", - "summary": "Distinctio aut doloremque harum cupiditate.\nQuos nobis possimus quod qui aperiam quae veniam.", - "informationUsed": "Voluptatibus odio iste architecto qui adipisci voluptatem mollitia quae.\nIn minima hic libero id magni blanditiis.\nVelit quod consequatur reprehenderit nobis iure.", - "pastOrPresentOrders": "Quisquam facere sequi facilis eveniet vero omnis ratione voluptatem tenetur.\nBeatae quis facilis eligendi distinctio accusamus.", - "commercialAndIndustrialPurposes": [ - { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true - }, - { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true } ] } ], "activityLog": [ + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "SHANAHAN SONNY", + "timestamp": "2018-07-16" + }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "BINS JALON", - "timestamp": "2018-01-11" + "user": "SMITHAM OVA", + "timestamp": "2018-01-25" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "BARROWS JAVONTE", - "timestamp": "2014-09-15" + "user": "WEIMANN GLADYS", + "timestamp": "2018-03-24" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "SCHMITT MITTIE", + "timestamp": "2015-03-31" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "GOLDNER STONE", + "timestamp": "2015-05-15" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "ALTENWERTH NETTIE", - "timestamp": "2021-09-18" + "user": "NICOLAS IVORY", + "timestamp": "2018-04-24" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "D'AMORE LAVINA", - "timestamp": "2014-09-27" + "user": "KULAS-EFFERTZ CLOTILDE", + "timestamp": "2015-06-03" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "CONNELLY JAZMYNE", + "timestamp": "2023-09-03" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "BERGNAUM ZARIA", - "timestamp": "2014-04-17" + "user": "BOSCO CRISTOPHER", + "timestamp": "2018-10-29" } ], "associatedSites": [ { - "dateNoted": "2020-01-23", + "dateNoted": "2021-07-27", + "notes": "", + "parcelID": "20545", + "siteID": "20549", + "siteRegistry": false + }, + { + "dateNoted": "2020-06-07", + "notes": "", + "parcelID": "18123", + "siteID": "16285", + "siteRegistry": true + }, + { + "dateNoted": "2019-02-12", "notes": "", - "parcelID": "19069", - "siteID": "18598", + "parcelID": "18482", + "siteID": "18191", "siteRegistry": false } ] }, { - "uuid": "5f00ab98-3ac9-4bcf-844a-76ccf3046753", - "siteID": 17954, - "address": "4502 Smitham Meadows", - "latitude": 51.5124, - "longitude": -132.2858, - "lastUpdated": "2019-12-08", - "city": "Lake Lyric", - "region": "Cariboo", - "victoriaFile": "26250-20/3416", + "uuid": "18db3b0e-9ab7-46c8-bdea-782aa250fd10", + "siteID": 15681, + "address": "2918 Harley Rest", + "latitude": 57.5714, + "longitude": -126.8681, + "lastUpdated": "2022-08-04", + "city": "Thompsonberg", + "region": "Kootenay", + "victoriaFile": "26250-20/19576", "regionalFile": "N/A", "parcelIDs": [ - 3623727, - 6435345, - 5708920, - 4903229, - 5197281 + 2043988, + 198775, + 9040433, + 4930746, + 4895254 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2018-06-19", - "completed": "2019-01-22", - "initiated": "2021-08-09", - "ministryContact": "FRITSCH JERMAIN", + "createdAt": "2018-01-19", + "completed": "2021-08-29", + "initiated": "2020-05-14", + "ministryContact": "WOLFF ROWAN", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -6068,58 +6617,38 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - } - ], - "siteRegistry": true - }, - { - "createdAt": "2020-07-16", - "completed": "2019-02-12", - "initiated": "2016-09-13", - "ministryContact": "JACOBSON LOGAN", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true } ], "siteRegistry": true }, { - "createdAt": "2021-06-04", - "completed": "2014-03-08", - "initiated": "2020-09-18", - "ministryContact": "ORN JARRELL", + "createdAt": "2023-06-22", + "completed": "2017-06-01", + "initiated": "2016-11-21", + "ministryContact": "WALKER ZOLA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -6129,58 +6658,38 @@ "notationParticipants": [ { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true + "role": "SUBMITTED BY", + "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - } - ], - "siteRegistry": false - }, - { - "createdAt": "2015-11-20", - "completed": "2018-07-21", - "initiated": "2013-12-24", - "ministryContact": "VON BRETT", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true } ], "participants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2017-02-03", - "startDate": "2016-09-09", + "name": "IPSUM", + "endDate": "2014-06-02", + "startDate": "2021-03-07", "notes": "", "roles": [ "ORGANIZATION" @@ -6188,208 +6697,221 @@ "siteRegistry": true }, { - "name": "AMET, DOLOR SIT", - "endDate": "2018-07-18", - "startDate": "2016-04-07", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2020-12-14", + "startDate": "2019-02-22", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2019-03-05", - "startDate": "2023-05-12", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2021-05-05", + "startDate": "2015-03-08", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], - "siteRegistry": false + "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2019-06-13", - "startDate": "2015-03-07", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2021-01-02", + "startDate": "2021-05-29", "notes": "", "roles": [ "EMPLOYEE" ], "siteRegistry": true + }, + { + "name": "AMET, DOLOR SIT", + "endDate": "2022-07-18", + "startDate": "2016-03-27", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false } ], "suspectLandUses": [ + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2020-01-28 (described on Site Profile dated 2020-01-28)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-07-10 (described on Site Profile dated 2019-07-10)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "notes": "INSERTED FOR SITE PROFILE DATED 2016-04-18 (described on Site Profile dated 2016-04-18)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-12-30 (described on Site Profile dated 2022-12-30)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "notes": "INSERTED FOR SITE PROFILE DATED 2021-12-18 (described on Site Profile dated 2021-12-18)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-03-25 (described on Site Profile dated 2015-03-25)", + "notes": "INSERTED FOR SITE PROFILE DATED 2014-10-04 (described on Site Profile dated 2014-10-04)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-12-18 (described on Site Profile dated 2018-12-18)", + "notes": "INSERTED FOR SITE PROFILE DATED 2020-07-12 (described on Site Profile dated 2020-07-12)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], - "siteDisclosures": [ + "parcelDescriptions": [ + { + "siteRegistry": true, + "dateNoted": "2018-09-05", + "parcelID": "18522", + "crownLandUsePIN": "20195", + "crownLandFileNumber": "18500", + "landDescription": "LOT 5 OF LOT 1 BLOCK 5 DISTRICT LOT 5 PLAN 5321" + }, { "siteRegistry": false, - "dateReceived": "2022-12-05", - "dateCompleted": "2021-03-21", - "dateEntered": "2019-06-05", - "dateRegistrar": "2016-12-08", - "dateLocalAuthorityReceived": "2016-02-02", - "summary": "Reiciendis quisquam sit.\nIusto neque ipsum excepturi enim beatae quibusdam repellat at.", - "informationUsed": "Velit quod et nihil.\nMollitia exercitationem quo mollitia officia beatae.\nIpsam veritatis sit nesciunt voluptatum dolores velit.\nDebitis ipsam nisi.\nVeniam nihil nobis.", - "pastOrPresentOrders": "Molestiae necessitatibus facilis velit voluptas tempore fugit voluptatibus facere eveniet.\nNam itaque fuga error repudiandae.\nMagnam voluptatibus tempora voluptates minima.", + "dateNoted": "2018-01-06", + "parcelID": "18696", + "crownLandUsePIN": "17316", + "crownLandFileNumber": "20740", + "landDescription": "LOT 1 OF LOT 2 BLOCK 2 DISTRICT LOT 4 PLAN 7963" + } + ], + "siteDisclosures": [ + { + "siteRegistry": true, + "dateReceived": "2022-09-08", + "dateCompleted": "2015-01-28", + "dateEntered": "2017-08-19", + "dateRegistrar": "2022-03-14", + "dateLocalAuthorityReceived": "2021-09-04", + "summary": "Sed autem ratione.\nEst eaque iure fuga necessitatibus quia.", + "informationUsed": "Reiciendis exercitationem sed porro quasi quod adipisci facere debitis.\nAb modi quidem facere aut quidem.\nLaborum libero facere cumque.", + "pastOrPresentOrders": "Alias nesciunt hic alias quos necessitatibus.", "commercialAndIndustrialPurposes": [ - { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true - }, { "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true + "siteRegistry": false }, { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false }, { - "scheduleReference": "F1*", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true + "siteRegistry": false } ] }, { - "siteRegistry": false, - "dateReceived": "2021-07-05", - "dateCompleted": "2017-12-04", - "dateEntered": "2017-11-02", - "dateRegistrar": "2016-04-22", - "dateLocalAuthorityReceived": "2019-03-14", - "summary": "Amet eum quia quam tempore consectetur labore.\nRatione iure ipsam sit ipsa.", - "informationUsed": "Totam corporis corporis sit alias ullam cupiditate eius.\nSapiente cupiditate numquam magnam.\nArchitecto fuga corporis saepe voluptate earum assumenda exercitationem nesciunt fugit.\nVoluptates expedita libero possimus minus ex.\nIpsa veritatis fugit occaecati nisi iusto totam.", - "pastOrPresentOrders": "Dignissimos molestiae commodi maiores commodi qui ipsum deserunt.", + "siteRegistry": true, + "dateReceived": "2014-02-19", + "dateCompleted": "2018-02-21", + "dateEntered": "2013-12-30", + "dateRegistrar": "2023-02-07", + "dateLocalAuthorityReceived": "2018-07-03", + "summary": "Eius fugit minima recusandae sed ea.\nVoluptates id sunt.\nHarum dignissimos repellendus earum.", + "informationUsed": "Itaque totam recusandae alias quaerat odit.\nDignissimos magnam ratione ea labore aut sed.\nRem numquam id eveniet dolorem.", + "pastOrPresentOrders": "Quas officia autem aspernatur possimus non labore possimus.\nDignissimos inventore harum non odio cumque.\nTempora excepturi dolores veritatis a minus corrupti.", "commercialAndIndustrialPurposes": [ { "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false }, { - "scheduleReference": "F2*", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false } ] } ], "activityLog": [ { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "FEEST GLEN", - "timestamp": "2019-07-10" - }, - { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "RIPPIN ITZEL", - "timestamp": "2020-03-05" - }, - { - "siteRegistry": true, + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "WALTER-DENESIK PARKER", - "timestamp": "2018-06-17" + "user": "KUPHAL PEARL", + "timestamp": "2017-02-09" }, { - "siteRegistry": true, + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "SCHAEFER ADAM", - "timestamp": "2014-10-13" + "user": "KIRLIN-ARMSTRONG MERL", + "timestamp": "2013-11-23" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "WATERS GUS", - "timestamp": "2013-11-05" + "user": "KLING CARY", + "timestamp": "2021-06-04" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "ALTENWERTH-BASHIRIAN VERNON", - "timestamp": "2022-08-27" + "user": "BREITENBERG GARETT", + "timestamp": "2023-06-14" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "NITZSCHE HERMINIO", - "timestamp": "2017-11-20" - }, - { - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "PACOCHA SOLEDAD", - "timestamp": "2015-02-28" + "user": "BORER TRYSTAN", + "timestamp": "2014-02-05" } ], "associatedSites": [ { - "dateNoted": "2015-12-11", - "notes": "", - "parcelID": "20449", - "siteID": "20320", - "siteRegistry": false - }, - { - "dateNoted": "2015-02-15", + "dateNoted": "2016-08-04", "notes": "", - "parcelID": "15333", - "siteID": "18625", + "parcelID": "20873", + "siteID": "18797", "siteRegistry": true } ] }, { - "uuid": "ad074e7a-c562-432f-baa0-da908b368d8e", - "siteID": 19506, - "address": "497 Mavis Path", - "latitude": 54.8447, - "longitude": -134.1094, - "lastUpdated": "2022-08-17", - "city": "West Elberthaven", - "region": "Kootenay", - "victoriaFile": "26250-20/2197", + "uuid": "1e17131a-1fe4-43b5-8eb4-0e287f988807", + "siteID": 16305, + "address": "905 Irma Loaf", + "latitude": 52.3883, + "longitude": -128.1855, + "lastUpdated": "2018-07-12", + "city": "Lilyanfurt", + "region": "Mainland/Southwest", + "victoriaFile": "26250-20/4082", "regionalFile": "N/A", "parcelIDs": [ - 5047752, - 4523275, - 7107586, - 5151425, - 7699791 + 4039084, + 7389918, + 3706863, + 1891038, + 2483352 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2017-05-08", - "completed": "2015-10-01", - "initiated": "2014-10-13", - "ministryContact": "LAKIN ALLAN", + "createdAt": "2017-06-26", + "completed": "2023-05-30", + "initiated": "2022-04-12", + "ministryContact": "HARTMANN TYRESE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -6399,27 +6921,32 @@ "notationParticipants": [ { "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2018-05-31", - "completed": "2022-10-20", - "initiated": "2022-11-07", - "ministryContact": "CONSIDINE DEMETRIS", + "createdAt": "2019-10-22", + "completed": "2014-06-20", + "initiated": "2017-12-23", + "ministryContact": "MORAR DARRION", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -6429,37 +6956,32 @@ "notationParticipants": [ { "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2016-10-07", - "completed": "2017-03-27", - "initiated": "2017-04-28", - "ministryContact": "PROSACCO BETTY", + "createdAt": "2016-02-10", + "completed": "2018-08-24", + "initiated": "2016-02-21", + "ministryContact": "BINS FLETA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -6468,48 +6990,28 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true - } - ], - "siteRegistry": false - }, - { - "createdAt": "2018-03-07", - "completed": "2023-09-09", - "initiated": "2015-09-23", - "ministryContact": "CREMIN ARDITH", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ + }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", "siteRegistry": true } ], @@ -6518,74 +7020,83 @@ ], "participants": [ { - "name": "AMET, DOLOR SIT", - "endDate": "2018-09-23", - "startDate": "2019-09-27", + "name": "IPSUM", + "endDate": "2020-07-28", + "startDate": "2022-01-09", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", - "endDate": "2015-06-04", - "startDate": "2019-04-05", + "endDate": "2018-05-26", + "startDate": "2015-02-16", "notes": "", "roles": [ "EMPLOYEE" ], "siteRegistry": false - }, + } + ], + "suspectLandUses": [ { - "name": "AMET, DOLOR SIT", - "endDate": "2020-10-19", - "startDate": "2014-10-20", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": false + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2015-05-02 (described on Site Profile dated 2015-05-02)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2019-10-13", - "startDate": "2016-10-05", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": false + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2022-06-24 (described on Site Profile dated 2022-06-24)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], - "suspectLandUses": [ + "parcelDescriptions": [ { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2020-02-08 (described on Site Profile dated 2020-02-08)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "dateNoted": "2019-01-31", + "parcelID": "15837", + "crownLandUsePIN": "20592", + "crownLandFileNumber": "15975", + "landDescription": "LOT 5 OF LOT 3 BLOCK 4 DISTRICT LOT 1 PLAN 3026" }, { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-07-16 (described on Site Profile dated 2017-07-16)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "dateNoted": "2020-08-31", + "parcelID": "15362", + "crownLandUsePIN": "19849", + "crownLandFileNumber": "17121", + "landDescription": "LOT 3 OF LOT 2 BLOCK 5 DISTRICT LOT 1 PLAN 5468" + }, + { + "siteRegistry": true, + "dateNoted": "2013-11-29", + "parcelID": "17361", + "crownLandUsePIN": "18503", + "crownLandFileNumber": "19972", + "landDescription": "LOT 4 OF LOT 3 BLOCK 4 DISTRICT LOT 4 PLAN 7732" }, { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-04-13 (described on Site Profile dated 2016-04-13)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "dateNoted": "2018-11-19", + "parcelID": "18338", + "crownLandUsePIN": "18321", + "crownLandFileNumber": "19485", + "landDescription": "LOT 5 OF LOT 4 BLOCK 5 DISTRICT LOT 4 PLAN 9500" } ], "siteDisclosures": [ { - "siteRegistry": false, - "dateReceived": "2015-08-09", - "dateCompleted": "2020-01-01", - "dateEntered": "2017-05-06", - "dateRegistrar": "2017-10-27", - "dateLocalAuthorityReceived": "2016-03-19", - "summary": "Corporis facere voluptates fugit.\nCum quisquam odit rerum hic qui qui.\nAut adipisci non labore incidunt officia aliquam.", - "informationUsed": "Nobis laudantium deleniti nulla quam praesentium.\nExplicabo reiciendis aliquid.\nDelectus culpa possimus tenetur praesentium aliquid illum rem sunt magni.\nMolestiae incidunt odio numquam.", - "pastOrPresentOrders": "Occaecati neque occaecati molestiae temporibus asperiores pariatur sunt delectus ratione.\nFugiat id iste accusantium exercitationem eveniet.\nTemporibus animi porro.", + "siteRegistry": true, + "dateReceived": "2021-08-28", + "dateCompleted": "2016-08-16", + "dateEntered": "2017-08-09", + "dateRegistrar": "2019-10-16", + "dateLocalAuthorityReceived": "2015-03-16", + "summary": "Reprehenderit ex dolores quaerat distinctio itaque aut corrupti aliquid.", + "informationUsed": "Excepturi voluptate provident aliquid a magnam inventore.\nQuam iusto libero sit officiis corrupti.\nIpsa a delectus unde illum temporibus rerum commodi quae quae.", + "pastOrPresentOrders": "Commodi reiciendis reiciendis excepturi ab quia nobis corporis accusamus.\nQuasi consequuntur quo quibusdam doloribus.\nHarum tempore voluptatum magnam asperiores veritatis.", "commercialAndIndustrialPurposes": [ { "scheduleReference": "F2*", @@ -6596,15 +7107,28 @@ "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false - }, + } + ] + }, + { + "siteRegistry": true, + "dateReceived": "2021-12-17", + "dateCompleted": "2019-05-20", + "dateEntered": "2022-05-27", + "dateRegistrar": "2016-11-17", + "dateLocalAuthorityReceived": "2023-08-04", + "summary": "Placeat mollitia illum quis quasi vel aperiam natus.\nNatus architecto perferendis odio quos animi ut cumque accusamus.\nIn animi ullam ratione quae fugit distinctio.", + "informationUsed": "Odio sed provident maxime harum quod esse distinctio qui illo.\nExpedita eos excepturi.\nSapiente sunt asperiores delectus provident.", + "pastOrPresentOrders": "Eaque vero vel praesentium inventore.", + "commercialAndIndustrialPurposes": [ { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false }, { "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true } ] @@ -6612,90 +7136,97 @@ ], "activityLog": [ { - "siteRegistry": true, + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "STROMAN LUCIANO", - "timestamp": "2021-05-16" + "user": "DOUGLAS VANESSA", + "timestamp": "2020-11-02" }, { - "siteRegistry": true, + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "REYNOLDS LENORE", - "timestamp": "2023-06-08" + "user": "RICE LUCINDA", + "timestamp": "2016-12-08" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "HOPPE GEO", - "timestamp": "2015-01-24" + "user": "HERMISTON-HEATHCOTE ELYSSA", + "timestamp": "2023-02-20" }, { - "siteRegistry": true, + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "CORMIER DERICK", - "timestamp": "2014-01-20" + "user": "BROWN NATASHA", + "timestamp": "2022-12-09" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "SCHUPPE EDISON", - "timestamp": "2019-03-13" + "user": "ZIEME TREMAINE", + "timestamp": "2019-09-04" }, { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "HERMANN HORTENSE", - "timestamp": "2020-09-09" + "user": "RAU MANDY", + "timestamp": "2021-10-03" }, { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "WILL SANFORD", - "timestamp": "2017-06-07" + "user": "CUMMERATA ROSLYN", + "timestamp": "2013-11-18" } ], "associatedSites": [ { - "dateNoted": "2018-08-15", + "dateNoted": "2018-07-22", "notes": "", - "parcelID": "20043", - "siteID": "20188", - "siteRegistry": false + "parcelID": "16979", + "siteID": "20741", + "siteRegistry": true }, { - "dateNoted": "2016-04-04", + "dateNoted": "2014-05-05", "notes": "", - "parcelID": "17209", - "siteID": "20178", + "parcelID": "15384", + "siteID": "16335", "siteRegistry": true + }, + { + "dateNoted": "2015-08-13", + "notes": "", + "parcelID": "17805", + "siteID": "18281", + "siteRegistry": false } ] }, { - "uuid": "8fee1a65-273f-4a27-9a9f-af960cd08998", - "siteID": 20782, - "address": "58436 Celine Lights", - "latitude": 48.9787, - "longitude": -128.7369, - "lastUpdated": "2020-12-25", - "city": "Ciaraberg", - "region": "Cariboo", - "victoriaFile": "26250-20/13041", + "uuid": "906c7891-4a89-4e21-9cd1-43489d768ed3", + "siteID": 19749, + "address": "4074 Gleason Forges", + "latitude": 54.4244, + "longitude": -130.7973, + "lastUpdated": "2017-08-06", + "city": "Shanahanberg", + "region": "Mainland/Southwest", + "victoriaFile": "26250-20/10355", "regionalFile": "N/A", "parcelIDs": [ - 3324900, - 9389091, - 3929151, - 3947082, - 6259739 + 6847463, + 9602641, + 9212145, + 413254, + 4526693 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2021-08-07", - "completed": "2020-08-11", - "initiated": "2022-07-18", - "ministryContact": "WALKER CICERO", + "createdAt": "2013-10-28", + "completed": "2018-03-05", + "initiated": "2021-09-05", + "ministryContact": "HAHN ANAIS", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -6717,10 +7248,10 @@ "siteRegistry": true }, { - "createdAt": "2017-11-14", - "completed": "2022-01-09", - "initiated": "2017-08-11", - "ministryContact": "DICKI CONSUELO", + "createdAt": "2014-04-30", + "completed": "2016-10-27", + "initiated": "2023-02-07", + "ministryContact": "ERNSER ABRAHAM", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -6730,7 +7261,7 @@ "notationParticipants": [ { "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false }, { @@ -6740,108 +7271,48 @@ }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false } ], "siteRegistry": true - }, + } + ], + "participants": [ { - "createdAt": "2022-07-11", - "completed": "2020-08-14", - "initiated": "2016-01-23", - "ministryContact": "LEGROS EUGENIA", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - } + "name": "AMET, DOLOR SIT", + "endDate": "2022-08-31", + "startDate": "2017-02-23", + "notes": "", + "roles": [ + "ORGANIZATION" ], "siteRegistry": true }, { - "createdAt": "2018-10-04", - "completed": "2015-05-03", - "initiated": "2017-10-04", - "ministryContact": "SCHULTZ JONATHON", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - } + "name": "IPSUM", + "endDate": "2021-02-13", + "startDate": "2016-02-06", + "notes": "", + "roles": [ + "EMPLOYEE" ], "siteRegistry": true - } - ], - "participants": [ + }, { "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2019-04-17", - "startDate": "2018-06-11", + "endDate": "2021-07-30", + "startDate": "2022-01-02", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": false + "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2018-01-11", - "startDate": "2015-02-10", + "name": "IPSUM", + "endDate": "2018-05-27", + "startDate": "2020-10-19", "notes": "", "roles": [ "EMPLOYEE" @@ -6852,32 +7323,55 @@ "suspectLandUses": [ { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-02-20 (described on Site Profile dated 2021-02-20)", + "notes": "INSERTED FOR SITE PROFILE DATED 2023-04-29 (described on Site Profile dated 2023-04-29)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-04-29 (described on Site Profile dated 2016-04-29)", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2022-11-06 (described on Site Profile dated 2022-11-06)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2019-12-11 (described on Site Profile dated 2019-12-11)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2023-04-15 (described on Site Profile dated 2023-04-15)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], + "parcelDescriptions": [ + { + "siteRegistry": false, + "dateNoted": "2022-04-23", + "parcelID": "18254", + "crownLandUsePIN": "15361", + "crownLandFileNumber": "16504", + "landDescription": "LOT 2 OF LOT 1 BLOCK 2 DISTRICT LOT 2 PLAN 6741" + }, + { + "siteRegistry": false, + "dateNoted": "2016-07-18", + "parcelID": "19166", + "crownLandUsePIN": "18269", + "crownLandFileNumber": "18497", + "landDescription": "LOT 3 OF LOT 2 BLOCK 1 DISTRICT LOT 3 PLAN 4946" + } + ], "siteDisclosures": [ { "siteRegistry": true, - "dateReceived": "2020-10-27", - "dateCompleted": "2020-10-31", - "dateEntered": "2022-05-28", - "dateRegistrar": "2020-05-16", - "dateLocalAuthorityReceived": "2013-12-06", - "summary": "Aliquam et corporis repellendus sit expedita ad corporis quae.\nIpsam illum sint in maiores incidunt soluta totam cum.\nConsectetur quod hic fuga fugit fugit natus minima accusamus.", - "informationUsed": "Veritatis nesciunt fugiat quis suscipit soluta sed nobis.\nQuidem deserunt provident animi repellendus non quis eius.\nExplicabo illo sint iste reiciendis earum maxime.\nSed nam deserunt pariatur repudiandae non corporis itaque reiciendis architecto.", - "pastOrPresentOrders": "Amet consequatur placeat ipsa.", + "dateReceived": "2019-10-19", + "dateCompleted": "2015-08-19", + "dateEntered": "2016-06-10", + "dateRegistrar": "2014-12-21", + "dateLocalAuthorityReceived": "2023-01-20", + "summary": "Quos perspiciatis sed sunt perferendis totam.", + "informationUsed": "Aliquam quidem officiis quis cupiditate.\nAliquid et quaerat.\nRepellat voluptatum corporis tenetur eos quos iusto dolorem commodi.\nPlaceat accusamus a commodi nemo.", + "pastOrPresentOrders": "Molestias occaecati incidunt.\nEligendi ipsam commodi temporibus nam molestiae animi.", "commercialAndIndustrialPurposes": [ - { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true - }, { "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", @@ -6886,39 +7380,39 @@ { "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true + "siteRegistry": false } ] }, { - "siteRegistry": false, - "dateReceived": "2013-11-18", - "dateCompleted": "2020-02-24", - "dateEntered": "2016-01-24", - "dateRegistrar": "2017-10-17", - "dateLocalAuthorityReceived": "2018-04-24", - "summary": "Ipsa veniam asperiores dolore necessitatibus quibusdam.", - "informationUsed": "Mollitia tempora illo incidunt error odit autem nisi ducimus velit.\nSaepe laborum cumque quibusdam ut minima fugiat.\nUnde eius voluptates asperiores voluptatum asperiores dicta.\nNeque excepturi magnam enim similique temporibus sed neque.\nConsequatur in laborum reiciendis.", - "pastOrPresentOrders": "Vero nisi veritatis perspiciatis nisi adipisci cumque.", + "siteRegistry": true, + "dateReceived": "2019-01-02", + "dateCompleted": "2017-06-17", + "dateEntered": "2023-06-26", + "dateRegistrar": "2022-11-13", + "dateLocalAuthorityReceived": "2017-07-24", + "summary": "Beatae optio ad quae cum quibusdam commodi.", + "informationUsed": "Similique consequatur libero harum nisi libero officiis error sapiente.\nAut dolor expedita dolor error laborum.\nBlanditiis cupiditate pariatur voluptate eos totam exercitationem aliquid repellat porro.\nCum blanditiis recusandae iusto maxime illo perferendis autem.\nOfficia alias totam amet nesciunt fugiat vitae a.", + "pastOrPresentOrders": "Fuga distinctio repellat eaque asperiores.\nBeatae eveniet neque iure iste similique dolor minima.\nA ullam at.", "commercialAndIndustrialPurposes": [ { - "scheduleReference": "F2*", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false - }, - { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false } ] @@ -6928,94 +7422,89 @@ { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "CROOKS TERRELL", - "timestamp": "2022-02-17" + "user": "EFFERTZ GRADY", + "timestamp": "2014-09-18" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "GUSIKOWSKI DAYNE", - "timestamp": "2023-08-30" - }, - { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "HAND PABLO", - "timestamp": "2021-12-14" - }, - { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "SCHULIST JOAN", - "timestamp": "2017-09-24" + "user": "CORKERY CHET", + "timestamp": "2023-07-14" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "CORKERY LAVONNE", - "timestamp": "2014-05-24" + "user": "MACGYVER ALEXYS", + "timestamp": "2019-04-28" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "GUSIKOWSKI TRE", - "timestamp": "2014-07-24" + "user": "EBERT ARON", + "timestamp": "2022-08-10" }, { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "GREENHOLT DIANA", - "timestamp": "2018-03-04" + "user": "SIPES ALFORD", + "timestamp": "2015-09-21" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "ULLRICH JAMARCUS", - "timestamp": "2022-03-30" + "user": "MORAR WILHELM", + "timestamp": "2014-10-20" } ], "associatedSites": [ { - "dateNoted": "2017-07-26", + "dateNoted": "2019-01-17", "notes": "", - "parcelID": "17522", - "siteID": "20367", + "parcelID": "18322", + "siteID": "18510", "siteRegistry": false }, { - "dateNoted": "2023-09-05", + "dateNoted": "2015-02-03", "notes": "", - "parcelID": "16912", - "siteID": "17477", + "parcelID": "18109", + "siteID": "18873", + "siteRegistry": false + }, + { + "dateNoted": "2023-04-04", + "notes": "", + "parcelID": "20447", + "siteID": "18372", "siteRegistry": true } ] }, { - "uuid": "c5a5d833-cb8e-47e1-a476-cf27f56d5aeb", - "siteID": 15754, - "address": "799 Marvin Bypass", - "latitude": 58.8671, - "longitude": -120.1413, - "lastUpdated": "2020-12-10", - "city": "Camarillo", + "uuid": "fea07924-c532-4f84-91d3-90003dc46107", + "siteID": 15924, + "address": "45147 Kulas Inlet", + "latitude": 50.1217, + "longitude": -129.5921, + "lastUpdated": "2023-06-16", + "city": "North Irma", "region": "Cariboo", - "victoriaFile": "26250-20/5746", + "victoriaFile": "26250-20/1354", "regionalFile": "N/A", "parcelIDs": [ - 244923, - 3678274, - 3728336, - 5833731, - 3627698 + 6498567, + 1434917, + 7988600, + 3938913, + 5719117 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2017-06-17", - "completed": "2015-01-31", - "initiated": "2014-12-01", - "ministryContact": "RUTHERFORD PATRICK", + "createdAt": "2021-06-13", + "completed": "2019-05-01", + "initiated": "2014-02-11", + "ministryContact": "KLOCKO MARIA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -7030,6 +7519,31 @@ }, { "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "createdAt": "2015-01-14", + "completed": "2019-03-10", + "initiated": "2016-03-18", + "ministryContact": "HEGMANN ELSE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true }, @@ -7037,15 +7551,20 @@ "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2015-05-28", - "completed": "2022-05-13", - "initiated": "2019-02-04", - "ministryContact": "SCHULIST CAREY", + "createdAt": "2014-04-21", + "completed": "2019-10-09", + "initiated": "2021-10-08", + "ministryContact": "WATERS BETHEL", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -7064,34 +7583,24 @@ "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false } ], "participants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2017-07-24", - "startDate": "2018-11-17", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": true - }, - { - "name": "IPSUM", - "endDate": "2016-11-16", - "startDate": "2014-01-20", + "name": "AMET, DOLOR SIT", + "endDate": "2016-06-06", + "startDate": "2020-01-09", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false }, { - "name": "IPSUM", - "endDate": "2020-07-01", - "startDate": "2018-06-08", + "name": "AMET, DOLOR SIT", + "endDate": "2017-12-14", + "startDate": "2014-12-26", "notes": "", "roles": [ "EMPLOYEE" @@ -7102,49 +7611,83 @@ "suspectLandUses": [ { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-11-11 (described on Site Profile dated 2015-11-11)", + "notes": "INSERTED FOR SITE PROFILE DATED 2023-06-24 (described on Site Profile dated 2023-06-24)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2020-10-09 (described on Site Profile dated 2020-10-09)", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2022-10-23 (described on Site Profile dated 2022-10-23)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-12-30 (described on Site Profile dated 2015-12-30)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "notes": "INSERTED FOR SITE PROFILE DATED 2014-08-02 (described on Site Profile dated 2014-08-02)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + } + ], + "parcelDescriptions": [ + { + "siteRegistry": true, + "dateNoted": "2014-07-13", + "parcelID": "18387", + "crownLandUsePIN": "20698", + "crownLandFileNumber": "17176", + "landDescription": "LOT 2 OF LOT 3 BLOCK 3 DISTRICT LOT 2 PLAN 4878" + }, + { + "siteRegistry": true, + "dateNoted": "2022-04-28", + "parcelID": "20637", + "crownLandUsePIN": "18947", + "crownLandFileNumber": "19560", + "landDescription": "LOT 2 OF LOT 4 BLOCK 2 DISTRICT LOT 4 PLAN 6720" }, { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-04-21 (described on Site Profile dated 2017-04-21)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "dateNoted": "2019-05-14", + "parcelID": "19059", + "crownLandUsePIN": "19821", + "crownLandFileNumber": "17662", + "landDescription": "LOT 5 OF LOT 4 BLOCK 3 DISTRICT LOT 3 PLAN 9483" }, { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-12-25 (described on Site Profile dated 2022-12-25)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "siteRegistry": false, + "dateNoted": "2020-05-22", + "parcelID": "15797", + "crownLandUsePIN": "17866", + "crownLandFileNumber": "16812", + "landDescription": "LOT 5 OF LOT 4 BLOCK 4 DISTRICT LOT 2 PLAN 4365" } ], "siteDisclosures": [ { "siteRegistry": false, - "dateReceived": "2021-11-25", - "dateCompleted": "2017-11-02", - "dateEntered": "2017-06-05", - "dateRegistrar": "2022-06-30", - "dateLocalAuthorityReceived": "2021-07-08", - "summary": "Pariatur nisi laborum.", - "informationUsed": "Explicabo delectus voluptas voluptates architecto nam sed voluptatum repellat fugit.\nPraesentium tenetur nulla.\nA provident impedit exercitationem fugit laudantium architecto deleniti nobis.\nIusto dicta laudantium ex aspernatur.\nFacere facilis illum repellat quos possimus explicabo assumenda.", - "pastOrPresentOrders": "Facilis rerum a soluta perferendis laudantium.\nLibero quod temporibus ex maxime incidunt voluptas.", + "dateReceived": "2015-04-19", + "dateCompleted": "2018-11-16", + "dateEntered": "2017-05-13", + "dateRegistrar": "2020-08-09", + "dateLocalAuthorityReceived": "2021-09-07", + "summary": "Possimus facere tenetur ex eveniet unde et quod illum perferendis.", + "informationUsed": "Enim id ad laudantium accusantium corrupti illum corporis ducimus.\nEligendi enim non blanditiis natus at ducimus quia.\nTempora occaecati numquam voluptates eveniet nam quaerat accusantium beatae.\nQuos adipisci voluptates quaerat.\nAd nostrum tenetur dolore esse porro ipsum itaque ab nobis.", + "pastOrPresentOrders": "Rerum quia suscipit recusandae labore et quis dolorem expedita aliquid.\nOfficia corrupti error quisquam quae.", "commercialAndIndustrialPurposes": [ { "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false + "siteRegistry": true }, { "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false } @@ -7155,89 +7698,76 @@ { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "BALISTRERI AMERICA", - "timestamp": "2014-08-14" + "user": "CARTER AGUSTINA", + "timestamp": "2015-08-11" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "HUDSON GRAYSON", - "timestamp": "2018-05-12" + "user": "HANSEN MALCOLM", + "timestamp": "2023-03-16" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "SHIELDS JOVAN", - "timestamp": "2021-10-22" + "user": "HERZOG HIRAM", + "timestamp": "2023-02-11" }, { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "MURRAY JOSEPH", - "timestamp": "2019-03-09" + "user": "FISHER ELIJAH", + "timestamp": "2020-11-19" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "WIZA AMARI", - "timestamp": "2021-12-27" - }, - { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "HEATHCOTE ISAAC", - "timestamp": "2018-04-14" + "user": "TREUTEL BRYCEN", + "timestamp": "2021-10-14" } ], "associatedSites": [ { - "dateNoted": "2016-01-01", + "dateNoted": "2016-09-16", "notes": "", - "parcelID": "18687", - "siteID": "18243", + "parcelID": "18109", + "siteID": "18587", "siteRegistry": true }, { - "dateNoted": "2014-12-24", + "dateNoted": "2022-10-05", "notes": "", - "parcelID": "16257", - "siteID": "17810", + "parcelID": "16219", + "siteID": "17616", "siteRegistry": false - }, - { - "dateNoted": "2020-10-21", - "notes": "", - "parcelID": "16888", - "siteID": "16552", - "siteRegistry": true } ] }, { - "uuid": "f1509121-e4db-4ece-8bed-577b199d5b0c", - "siteID": 17477, - "address": "80484 Landen Squares", - "latitude": 57.7876, - "longitude": -122.8314, - "lastUpdated": "2016-01-22", - "city": "South Gina", + "uuid": "7eea99ed-9e9a-4e51-8365-24d5078991da", + "siteID": 20680, + "address": "2601 Geoffrey Divide", + "latitude": 57.0309, + "longitude": -127.0646, + "lastUpdated": "2022-04-19", + "city": "Richland", "region": " North Coast", - "victoriaFile": "26250-20/5433", + "victoriaFile": "26250-20/3504", "regionalFile": "N/A", "parcelIDs": [ - 1710884, - 4681367, - 2146779, - 9893851, - 8627776 + 5257184, + 4341179, + 5710825, + 4043046, + 6719902 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2020-07-14", - "completed": "2023-01-15", - "initiated": "2019-05-30", - "ministryContact": "TURNER JULES", + "createdAt": "2015-10-30", + "completed": "2015-11-22", + "initiated": "2015-04-28", + "ministryContact": "NADER ELEONORE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -7245,64 +7775,24 @@ "" ], "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - } - ], - "siteRegistry": true - }, - { - "createdAt": "2022-10-19", - "completed": "2017-07-07", - "initiated": "2019-11-14", - "ministryContact": "SHIELDS GABRIELLE", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2020-09-18", - "completed": "2016-08-26", - "initiated": "2017-07-10", - "ministryContact": "BODE JOSIANNE", + "createdAt": "2014-08-09", + "completed": "2021-08-01", + "initiated": "2022-06-11", + "ministryContact": "YOST SERENITY", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -7310,21 +7800,11 @@ "" ], "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", @@ -7336,19 +7816,19 @@ ], "participants": [ { - "name": "IPSUM", - "endDate": "2018-09-29", - "startDate": "2021-01-10", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2017-07-15", + "startDate": "2017-12-22", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false }, { - "name": "IPSUM", - "endDate": "2022-12-19", - "startDate": "2014-09-07", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2016-08-25", + "startDate": "2016-04-05", "notes": "", "roles": [ "ORGANIZATION" @@ -7356,9 +7836,9 @@ "siteRegistry": false }, { - "name": "IPSUM", - "endDate": "2022-05-08", - "startDate": "2015-04-10", + "name": "AMET, DOLOR SIT", + "endDate": "2023-07-15", + "startDate": "2015-11-19", "notes": "", "roles": [ "EMPLOYEE" @@ -7369,51 +7849,100 @@ "suspectLandUses": [ { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2020-02-17 (described on Site Profile dated 2020-02-17)", + "notes": "INSERTED FOR SITE PROFILE DATED 2014-12-25 (described on Site Profile dated 2014-12-25)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2019-04-29 (described on Site Profile dated 2019-04-29)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2023-04-20 (described on Site Profile dated 2023-04-20)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "notes": "INSERTED FOR SITE PROFILE DATED 2014-01-11 (described on Site Profile dated 2014-01-11)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + } + ], + "parcelDescriptions": [ + { + "siteRegistry": false, + "dateNoted": "2022-05-02", + "parcelID": "16320", + "crownLandUsePIN": "15317", + "crownLandFileNumber": "18484", + "landDescription": "LOT 4 OF LOT 2 BLOCK 5 DISTRICT LOT 4 PLAN 8633" + }, + { + "siteRegistry": false, + "dateNoted": "2019-07-28", + "parcelID": "16292", + "crownLandUsePIN": "18989", + "crownLandFileNumber": "17321", + "landDescription": "LOT 1 OF LOT 5 BLOCK 1 DISTRICT LOT 1 PLAN 8493" }, { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-12-17 (described on Site Profile dated 2019-12-17)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "dateNoted": "2017-07-30", + "parcelID": "17902", + "crownLandUsePIN": "17688", + "crownLandFileNumber": "18290", + "landDescription": "LOT 4 OF LOT 1 BLOCK 4 DISTRICT LOT 3 PLAN 7944" } ], "siteDisclosures": [ { - "siteRegistry": false, - "dateReceived": "2016-03-20", - "dateCompleted": "2023-05-12", - "dateEntered": "2023-05-29", - "dateRegistrar": "2015-08-09", - "dateLocalAuthorityReceived": "2020-01-16", - "summary": "Architecto odit recusandae temporibus.\nNam assumenda rerum deleniti facilis.", - "informationUsed": "Hic cumque impedit quis quaerat minus temporibus minus.\nCupiditate aut vitae blanditiis quod.\nQuasi exercitationem iste quae illum vitae voluptatem quasi.", - "pastOrPresentOrders": "Accusamus eligendi eum aliquam unde vel eos adipisci amet asperiores.\nEius laborum voluptate.\nAlias nobis aut alias facere eligendi accusantium esse explicabo quam.", + "siteRegistry": true, + "dateReceived": "2022-01-26", + "dateCompleted": "2015-10-20", + "dateEntered": "2014-11-09", + "dateRegistrar": "2021-11-06", + "dateLocalAuthorityReceived": "2022-08-01", + "summary": "Ratione ut cupiditate hic possimus corporis explicabo delectus fuga excepturi.\nCorrupti provident commodi sint ut officiis assumenda libero at ea.\nVoluptas dolorem aliquid nisi sapiente fugit saepe in.", + "informationUsed": "Alias recusandae porro occaecati voluptatum dignissimos debitis eligendi error corporis.\nRepudiandae error veritatis perferendis placeat.\nDelectus libero exercitationem doloremque culpa est laboriosam libero qui.\nConsequuntur vero officiis.", + "pastOrPresentOrders": "Nemo dolor nemo nam.", "commercialAndIndustrialPurposes": [ { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { - "scheduleReference": "F2*", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + } + ] + }, + { + "siteRegistry": true, + "dateReceived": "2017-07-23", + "dateCompleted": "2014-06-28", + "dateEntered": "2018-08-20", + "dateRegistrar": "2023-08-27", + "dateLocalAuthorityReceived": "2014-04-25", + "summary": "Qui ut quo.\nDelectus voluptates sunt voluptatibus laborum perferendis inventore odit aliquid.", + "informationUsed": "Sit corporis iure dolores veritatis sed aspernatur voluptas.\nUt neque porro atque ab harum praesentium iure.\nVoluptates est minus.\nSint cum omnis incidunt nihil dignissimos labore.\nDistinctio repellat laborum vero eligendi id quis iure a pariatur.", + "pastOrPresentOrders": "Quisquam quidem hic.\nAd impedit quaerat.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false }, { - "scheduleReference": "F1*", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false }, { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false } ] } @@ -7422,106 +7951,69 @@ { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "WYMAN NORENE", - "timestamp": "2020-09-23" - }, - { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "ARMSTRONG JEFFEREY", - "timestamp": "2016-04-27" + "user": "BERGNAUM HOYT", + "timestamp": "2015-04-10" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "ROSENBAUM JABARI", - "timestamp": "2015-04-17" - }, - { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "JOHNSON FLORIAN", - "timestamp": "2016-12-04" - }, - { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "HERZOG SEAN", - "timestamp": "2016-09-03" + "user": "GRIMES FRIEDA", + "timestamp": "2016-03-30" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "CUMMERATA FRANCES", - "timestamp": "2018-10-13" + "user": "KIRLIN ALEXANDER", + "timestamp": "2020-10-10" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "MITCHELL JUANA", - "timestamp": "2017-06-06" + "user": "WALKER PROVIDENCI", + "timestamp": "2020-06-06" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "DOOLEY LOYAL", - "timestamp": "2014-04-15" - }, - { - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "GERLACH MAE", - "timestamp": "2014-05-11" - }, - { - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "WILLMS GIOVANNI", - "timestamp": "2019-08-29" + "user": "SCHULTZ ELOISE", + "timestamp": "2016-07-17" } ], "associatedSites": [ { - "dateNoted": "2022-06-08", - "notes": "", - "parcelID": "15507", - "siteID": "17548", - "siteRegistry": false - }, - { - "dateNoted": "2014-04-26", + "dateNoted": "2016-10-10", "notes": "", - "parcelID": "20635", - "siteID": "19899", + "parcelID": "16999", + "siteID": "17607", "siteRegistry": false } ] }, { - "uuid": "b487f479-57d1-400e-ade3-18bf699eeb10", - "siteID": 19011, - "address": "425 Kohler Well", - "latitude": 54.3039, - "longitude": -124.4061, - "lastUpdated": "2020-04-25", - "city": "Gerholdcester", - "region": "Mainland/Southwest", - "victoriaFile": "26250-20/19274", + "uuid": "6061161d-cbb0-4ed5-986b-447f6e502141", + "siteID": 18478, + "address": "3936 Luettgen Canyon", + "latitude": 57.1368, + "longitude": -132.2199, + "lastUpdated": "2020-06-01", + "city": "Friesenburgh", + "region": "Vancouver Island/Coast", + "victoriaFile": "26250-20/9915", "regionalFile": "N/A", "parcelIDs": [ - 7313836, - 290048, - 3877266, - 8915981, - 4409346 + 6525928, + 8469259, + 5535047, + 9500696, + 8820704 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2017-03-23", - "completed": "2021-02-08", - "initiated": "2016-08-28", - "ministryContact": "WELCH GERARD", + "createdAt": "2022-04-01", + "completed": "2017-07-18", + "initiated": "2013-11-17", + "ministryContact": "LEHNER SABRINA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -7531,7 +8023,7 @@ "notationParticipants": [ { "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true }, { @@ -7539,15 +8031,50 @@ "role": "REQUESTED BY", "siteRegistry": false }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "createdAt": "2013-12-02", + "completed": "2023-09-17", + "initiated": "2019-04-28", + "ministryContact": "ARMSTRONG DIEGO", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", @@ -7555,13 +8082,13 @@ "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2014-10-06", - "completed": "2016-01-22", - "initiated": "2015-11-13", - "ministryContact": "LUETTGEN JAYLON", + "createdAt": "2015-11-15", + "completed": "2015-12-28", + "initiated": "2019-09-30", + "ministryContact": "MILLS MILO", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -7571,38 +8098,108 @@ "notationParticipants": [ { "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true + "role": "SUBMITTED BY", + "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "createdAt": "2019-02-05", + "completed": "2023-04-03", + "initiated": "2023-08-05", + "ministryContact": "ADAMS JETT", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "createdAt": "2020-08-30", + "completed": "2016-07-30", + "initiated": "2014-08-20", + "ministryContact": "GREENFELDER AIMEE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ { "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true } ], "participants": [ { "name": "AMET, DOLOR SIT", - "endDate": "2023-01-18", - "startDate": "2014-05-16", + "endDate": "2017-06-28", + "startDate": "2014-02-08", "notes": "", "roles": [ "EMPLOYEE" ], "siteRegistry": true }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2020-04-13", + "startDate": "2018-08-19", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, { "name": "IPSUM", - "endDate": "2021-12-31", - "startDate": "2017-03-29", + "endDate": "2021-01-04", + "startDate": "2017-09-03", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2018-03-15", + "startDate": "2022-12-02", "notes": "", "roles": [ "EMPLOYEE" @@ -7611,39 +8208,114 @@ } ], "suspectLandUses": [ + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2023-02-14 (described on Site Profile dated 2023-02-14)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2021-01-07 (described on Site Profile dated 2021-01-07)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2016-10-29 (described on Site Profile dated 2016-10-29)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-11-18 (described on Site Profile dated 2021-11-18)", + "notes": "INSERTED FOR SITE PROFILE DATED 2021-05-10 (described on Site Profile dated 2021-05-10)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + } + ], + "parcelDescriptions": [ + { + "siteRegistry": true, + "dateNoted": "2014-11-14", + "parcelID": "19182", + "crownLandUsePIN": "18464", + "crownLandFileNumber": "16456", + "landDescription": "LOT 5 OF LOT 1 BLOCK 2 DISTRICT LOT 5 PLAN 2915" + }, + { + "siteRegistry": false, + "dateNoted": "2018-04-07", + "parcelID": "20537", + "crownLandUsePIN": "20196", + "crownLandFileNumber": "20521", + "landDescription": "LOT 1 OF LOT 2 BLOCK 3 DISTRICT LOT 4 PLAN 4108" }, { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-08-23 (described on Site Profile dated 2021-08-23)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "dateNoted": "2020-12-17", + "parcelID": "19096", + "crownLandUsePIN": "15856", + "crownLandFileNumber": "20719", + "landDescription": "LOT 3 OF LOT 1 BLOCK 4 DISTRICT LOT 5 PLAN 4096" }, { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-01-24 (described on Site Profile dated 2016-01-24)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "dateNoted": "2021-03-12", + "parcelID": "16181", + "crownLandUsePIN": "15229", + "crownLandFileNumber": "15853", + "landDescription": "LOT 5 OF LOT 5 BLOCK 4 DISTRICT LOT 4 PLAN 4616" + }, + { + "siteRegistry": true, + "dateNoted": "2020-04-19", + "parcelID": "18752", + "crownLandUsePIN": "18966", + "crownLandFileNumber": "15264", + "landDescription": "LOT 4 OF LOT 4 BLOCK 1 DISTRICT LOT 5 PLAN 5942" } ], "siteDisclosures": [ { "siteRegistry": true, - "dateReceived": "2018-06-28", - "dateCompleted": "2018-12-19", - "dateEntered": "2017-04-09", - "dateRegistrar": "2023-06-03", - "dateLocalAuthorityReceived": "2022-11-21", - "summary": "Laudantium quae dolorem beatae soluta itaque ipsa quaerat.", - "informationUsed": "Tempore totam ad perspiciatis quo commodi optio assumenda.\nIure molestias iste velit tempore illum impedit veritatis.\nTempore inventore dignissimos porro.\nLaudantium nesciunt exercitationem debitis.\nDolores unde eum nulla explicabo.", - "pastOrPresentOrders": "Esse illum nemo officiis perspiciatis quibusdam vitae repudiandae.\nVoluptates velit veniam distinctio ratione.", + "dateReceived": "2018-06-05", + "dateCompleted": "2015-07-22", + "dateEntered": "2017-11-11", + "dateRegistrar": "2015-09-01", + "dateLocalAuthorityReceived": "2021-06-08", + "summary": "Facere odio distinctio laborum animi.\nCum voluptatum ut.\nFacere provident fugiat minima cupiditate quos dolorum laboriosam voluptatibus libero.", + "informationUsed": "Saepe deleniti laboriosam dolorum ipsam animi.\nTemporibus temporibus numquam.\nAmet voluptas ducimus quos repellendus et nobis ducimus.\nMolestiae autem sapiente.\nExercitationem delectus ipsam dolorum non.", + "pastOrPresentOrders": "Rerum dolore repellat rem nostrum consectetur dicta cum totam.", "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, { "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + } + ] + }, + { + "siteRegistry": true, + "dateReceived": "2023-06-30", + "dateCompleted": "2020-02-18", + "dateEntered": "2023-05-16", + "dateRegistrar": "2014-01-04", + "dateLocalAuthorityReceived": "2019-03-28", + "summary": "Iure ipsa praesentium optio.\nAd cum numquam dicta commodi minima assumenda praesentium saepe.", + "informationUsed": "Ipsam commodi aliquid est rerum incidunt eum maiores.\nNon magni totam aut iste doloribus incidunt.\nImpedit voluptate ut nesciunt nobis ad doloribus maiores sed non.\nVero officiis sit similique eius.", + "pastOrPresentOrders": "Rem ea quasi nemo eaque suscipit hic quo.", + "commercialAndIndustrialPurposes": [ { "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", @@ -7653,6 +8325,11 @@ "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false } ] } @@ -7661,101 +8338,82 @@ { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "KESSLER DAPHNE", - "timestamp": "2014-09-07" - }, - { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "DOUGLAS DOCK", - "timestamp": "2016-08-19" + "user": "DENESIK ELDA", + "timestamp": "2017-03-03" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "SKILES FRANZ", - "timestamp": "2023-07-01" + "user": "PADBERG HOLLIE", + "timestamp": "2020-11-14" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "BERNIER LYDA", - "timestamp": "2014-03-20" - }, - { - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "MOORE KRYSTINA", - "timestamp": "2018-09-04" + "user": "MARQUARDT CLAUDINE", + "timestamp": "2015-06-02" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "CARTWRIGHT ZENA", - "timestamp": "2021-12-26" + "user": "BAUCH KIRK", + "timestamp": "2014-04-15" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "GIBSON EMERSON", - "timestamp": "2017-06-11" + "user": "LUEILWITZ SHANY", + "timestamp": "2020-06-11" }, { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "WISOZK BERTRAM", - "timestamp": "2020-02-11" + "user": "JENKINS MALINDA", + "timestamp": "2016-12-01" } ], "associatedSites": [ { - "dateNoted": "2016-10-22", - "notes": "", - "parcelID": "19038", - "siteID": "20727", - "siteRegistry": true - }, - { - "dateNoted": "2016-03-01", + "dateNoted": "2017-06-21", "notes": "", - "parcelID": "16468", - "siteID": "19246", + "parcelID": "19475", + "siteID": "16983", "siteRegistry": false }, { - "dateNoted": "2022-08-23", + "dateNoted": "2015-02-14", "notes": "", - "parcelID": "20519", - "siteID": "20948", + "parcelID": "19819", + "siteID": "16253", "siteRegistry": false } ] }, { - "uuid": "103f7975-5929-40cf-b3af-e5653fe0d8be", - "siteID": 17648, - "address": "6821 Donna Radial", - "latitude": 57.9162, - "longitude": -120.3331, - "lastUpdated": "2023-03-16", - "city": "Kirlinton", + "uuid": "5fd6ed83-1477-45af-8586-21b6936888be", + "siteID": 19266, + "address": "9399 Maryse Curve", + "latitude": 57.0351, + "longitude": -119.1915, + "lastUpdated": "2019-03-26", + "city": "Darrionside", "region": "Thompson-Okanagan", - "victoriaFile": "26250-20/6426", + "victoriaFile": "26250-20/5320", "regionalFile": "N/A", "parcelIDs": [ - 4902672, - 3234095, - 3573481, - 3778640, - 8966064 + 2340355, + 9951537, + 2355444, + 6708517, + 263166 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2015-09-20", - "completed": "2016-10-28", - "initiated": "2016-07-30", - "ministryContact": "DOUGLAS NIKKI", + "createdAt": "2022-05-02", + "completed": "2018-01-06", + "initiated": "2019-05-16", + "ministryContact": "KEMMER MICHEL", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -7764,23 +8422,33 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2022-05-06", - "completed": "2015-06-23", - "initiated": "2014-04-22", - "ministryContact": "FRANECKI BRITTANY", + "createdAt": "2020-01-16", + "completed": "2021-10-31", + "initiated": "2016-12-05", + "ministryContact": "JOHNSTON QUINN", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -7789,33 +8457,38 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2014-10-31", - "completed": "2020-07-11", - "initiated": "2019-07-25", - "ministryContact": "MITCHELL HELMER", + "createdAt": "2019-05-27", + "completed": "2015-02-07", + "initiated": "2021-03-03", + "ministryContact": "ZULAUF MIREILLE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -7824,18 +8497,18 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": true }, { @@ -7845,73 +8518,28 @@ }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true + "role": "REQUESTED BY", + "siteRegistry": false } ], "siteRegistry": true + } + ], + "participants": [ + { + "name": "AMET, DOLOR SIT", + "endDate": "2015-03-12", + "startDate": "2014-12-07", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true }, - { - "createdAt": "2016-10-26", - "completed": "2019-08-20", - "initiated": "2014-09-30", - "ministryContact": "METZ JUDSON", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - } - ], - "siteRegistry": true - } - ], - "participants": [ { "name": "IPSUM", - "endDate": "2022-12-15", - "startDate": "2016-04-20", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": true - }, - { - "name": "AMET, DOLOR SIT", - "endDate": "2016-07-21", - "startDate": "2018-12-08", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": false - }, - { - "name": "AMET, DOLOR SIT", - "endDate": "2015-08-05", - "startDate": "2019-10-11", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2021-07-09", - "startDate": "2023-08-05", + "endDate": "2018-05-27", + "startDate": "2020-06-08", "notes": "", "roles": [ "ORGANIZATION" @@ -7922,79 +8550,72 @@ "suspectLandUses": [ { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-06-01 (described on Site Profile dated 2022-06-01)", + "notes": "INSERTED FOR SITE PROFILE DATED 2015-12-17 (described on Site Profile dated 2015-12-17)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-11-03 (described on Site Profile dated 2016-11-03)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2019-11-22 (described on Site Profile dated 2019-11-22)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-05-13 (described on Site Profile dated 2021-05-13)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "notes": "INSERTED FOR SITE PROFILE DATED 2016-02-09 (described on Site Profile dated 2016-02-09)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-01-29 (described on Site Profile dated 2016-01-29)", + "notes": "INSERTED FOR SITE PROFILE DATED 2021-02-19 (described on Site Profile dated 2021-02-19)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + } + ], + "parcelDescriptions": [ + { + "siteRegistry": true, + "dateNoted": "2020-03-01", + "parcelID": "15465", + "crownLandUsePIN": "16375", + "crownLandFileNumber": "19159", + "landDescription": "LOT 3 OF LOT 1 BLOCK 2 DISTRICT LOT 4 PLAN 6611" }, { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-05-21 (described on Site Profile dated 2016-05-21)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "dateNoted": "2019-09-06", + "parcelID": "17610", + "crownLandUsePIN": "15990", + "crownLandFileNumber": "15287", + "landDescription": "LOT 4 OF LOT 2 BLOCK 1 DISTRICT LOT 3 PLAN 7593" + }, + { + "siteRegistry": false, + "dateNoted": "2023-07-13", + "parcelID": "18408", + "crownLandUsePIN": "20465", + "crownLandFileNumber": "20940", + "landDescription": "LOT 2 OF LOT 2 BLOCK 4 DISTRICT LOT 1 PLAN 4292" } ], "siteDisclosures": [ { "siteRegistry": false, - "dateReceived": "2016-11-20", - "dateCompleted": "2014-12-29", - "dateEntered": "2015-01-16", - "dateRegistrar": "2021-11-01", - "dateLocalAuthorityReceived": "2018-12-09", - "summary": "Recusandae ratione magni odio voluptates.", - "informationUsed": "Cum nam explicabo nostrum autem corporis dicta.\nMinima impedit at non laudantium perferendis sapiente officia vero at.\nQuod impedit tempora quisquam ut magnam aliquam repellat tempore.\nExpedita quae tenetur a nihil sint consequuntur fugit unde.", - "pastOrPresentOrders": "Perspiciatis quae culpa laboriosam quam.\nPorro eius in beatae vel quis.", + "dateReceived": "2015-09-26", + "dateCompleted": "2018-08-29", + "dateEntered": "2017-02-16", + "dateRegistrar": "2020-01-02", + "dateLocalAuthorityReceived": "2017-01-14", + "summary": "Nesciunt sapiente vitae.\nAb dolorum natus totam reprehenderit.\nRepellat beatae optio odio aliquid asperiores nostrum itaque aliquid.", + "informationUsed": "Quasi assumenda hic repellendus perspiciatis ex reprehenderit incidunt explicabo occaecati.\nLabore error excepturi repellendus voluptatibus temporibus corporis quos.\nVoluptate velit blanditiis quod enim explicabo.\nAspernatur odio in excepturi quas dicta illo voluptatibus tempore ipsum.", + "pastOrPresentOrders": "Quibusdam eligendi fuga veniam molestiae ratione dolore inventore veniam.", "commercialAndIndustrialPurposes": [ { "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true - }, - { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true - }, - { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true - } - ] - }, - { - "siteRegistry": false, - "dateReceived": "2023-06-24", - "dateCompleted": "2021-08-18", - "dateEntered": "2014-03-25", - "dateRegistrar": "2022-12-20", - "dateLocalAuthorityReceived": "2014-02-22", - "summary": "Necessitatibus ducimus reiciendis eligendi nihil animi itaque similique doloribus quidem.\nTemporibus ut non accusamus rerum aspernatur.", - "informationUsed": "Magni doloribus occaecati corporis neque quas nisi.\nModi distinctio assumenda recusandae quasi odio vero delectus commodi distinctio.\nExpedita excepturi dolore delectus.\nLaudantium accusamus ea delectus.", - "pastOrPresentOrders": "Nisi ipsa rerum consectetur esse eaque laborum deleniti aliquid voluptas.\nInventore rem cupiditate repudiandae eligendi dolore consequatur fuga veniam.\nMollitia quibusdam velit.", - "commercialAndIndustrialPurposes": [ - { - "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true + "siteRegistry": false }, { "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true + "siteRegistry": false } ] } @@ -8003,99 +8624,81 @@ { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "KASSULKE ROWLAND", - "timestamp": "2017-08-08" - }, - { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "BEAHAN BEAU", - "timestamp": "2016-10-02" - }, - { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "MORISSETTE NICHOLE", - "timestamp": "2016-05-01" + "user": "STARK BLAISE", + "timestamp": "2021-11-19" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "FADEL-TORPHY DEION", - "timestamp": "2019-11-05" + "user": "KOELPIN HELENA", + "timestamp": "2022-11-11" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "MONAHAN XZAVIER", - "timestamp": "2014-11-13" + "user": "YUNDT OSVALDO", + "timestamp": "2018-08-30" }, { - "siteRegistry": true, + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "CREMIN HOBART", - "timestamp": "2015-10-04" + "user": "MARKS MINERVA", + "timestamp": "2018-04-27" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "CARTWRIGHT CHEYANNE", - "timestamp": "2019-02-16" + "user": "JOHNSTON ALBIN", + "timestamp": "2022-09-28" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "MILLS LUCIANO", - "timestamp": "2016-08-07" + "user": "LESCH GLEN", + "timestamp": "2014-12-26" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "KUHN GERTRUDE", - "timestamp": "2019-11-07" - }, - { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "HAUCK RUPERT", - "timestamp": "2020-12-02" + "user": "SCHMIDT KIERA", + "timestamp": "2021-07-13" } ], "associatedSites": [ { - "dateNoted": "2020-01-24", + "dateNoted": "2020-02-02", "notes": "", - "parcelID": "19609", - "siteID": "15574", + "parcelID": "20534", + "siteID": "15761", "siteRegistry": true } ] }, { - "uuid": "12a2934f-e2de-4a33-9823-c96932f1d3d0", - "siteID": 17181, - "address": "72767 Sally Brooks", - "latitude": 50.8595, - "longitude": -121.5817, - "lastUpdated": "2022-08-20", - "city": "Minervaboro", - "region": "Kootenay", - "victoriaFile": "26250-20/13539", + "uuid": "7c2b6c31-7429-41f7-9d8f-cc3be5334517", + "siteID": 16881, + "address": "4332 Lexus Loop", + "latitude": 57.8713, + "longitude": -123.5991, + "lastUpdated": "2017-10-16", + "city": "Moore", + "region": "Mainland/Southwest", + "victoriaFile": "26250-20/9299", "regionalFile": "N/A", "parcelIDs": [ - 7195020, - 8531703, - 218348, - 5056664, - 7088777 + 3118283, + 9057922, + 2201568, + 1545533, + 2218431 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2019-10-15", - "completed": "2021-03-28", - "initiated": "2023-03-06", - "ministryContact": "HEATHCOTE DARRYL", + "createdAt": "2023-08-30", + "completed": "2016-01-16", + "initiated": "2020-02-02", + "ministryContact": "PADBERG-KEMMER BEVERLY", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -8110,17 +8713,22 @@ }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2022-08-10", - "completed": "2018-11-27", - "initiated": "2022-01-12", - "ministryContact": "GOLDNER KACI", + "createdAt": "2019-11-25", + "completed": "2015-11-22", + "initiated": "2021-01-27", + "ministryContact": "VONRUEDEN MINA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -8135,32 +8743,22 @@ }, { "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", "siteRegistry": true } ], "siteRegistry": true }, { - "createdAt": "2021-09-27", - "completed": "2015-10-28", - "initiated": "2021-03-26", - "ministryContact": "WIEGAND-KLING OVA", + "createdAt": "2016-06-23", + "completed": "2018-03-29", + "initiated": "2019-02-20", + "ministryContact": "WILL VERDIE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -8169,12 +8767,7 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true }, @@ -8184,24 +8777,24 @@ "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true } ], "participants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2016-09-27", - "startDate": "2017-02-12", + "name": "AMET, DOLOR SIT", + "endDate": "2023-04-22", + "startDate": "2022-07-27", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2015-02-01", - "startDate": "2019-12-09", + "name": "AMET, DOLOR SIT", + "endDate": "2018-11-07", + "startDate": "2015-06-11", "notes": "", "roles": [ "EMPLOYEE" @@ -8209,92 +8802,90 @@ "siteRegistry": true }, { - "name": "IPSUM", - "endDate": "2023-07-20", - "startDate": "2022-05-26", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2022-12-25", + "startDate": "2016-09-15", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2017-07-18", - "startDate": "2015-05-20", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2018-11-05", + "startDate": "2013-10-28", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false } ], "suspectLandUses": [ { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-01-24 (described on Site Profile dated 2016-01-24)", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2018-01-04 (described on Site Profile dated 2018-01-04)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2020-09-16 (described on Site Profile dated 2020-09-16)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-09-19 (described on Site Profile dated 2018-09-19)", + "notes": "INSERTED FOR SITE PROFILE DATED 2023-03-19 (described on Site Profile dated 2023-03-19)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], - "siteDisclosures": [ + "parcelDescriptions": [ + { + "siteRegistry": false, + "dateNoted": "2018-07-05", + "parcelID": "18232", + "crownLandUsePIN": "17669", + "crownLandFileNumber": "18772", + "landDescription": "LOT 4 OF LOT 3 BLOCK 3 DISTRICT LOT 4 PLAN 4499" + }, { "siteRegistry": true, - "dateReceived": "2014-04-02", - "dateCompleted": "2014-02-22", - "dateEntered": "2023-08-08", - "dateRegistrar": "2019-12-24", - "dateLocalAuthorityReceived": "2015-01-27", - "summary": "At nihil voluptatem impedit quis nam veritatis molestiae illo.\nIn minus dicta veniam.\nAccusantium ipsum enim.", - "informationUsed": "Saepe asperiores ipsa quidem rerum eveniet tempora laudantium.\nPerspiciatis unde culpa harum nobis omnis.\nNumquam odit autem tempore vitae.", - "pastOrPresentOrders": "Saepe necessitatibus excepturi.\nAccusantium facilis exercitationem ipsum expedita.\nItaque sint soluta.", - "commercialAndIndustrialPurposes": [ - { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false - }, - { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false - } - ] + "dateNoted": "2019-06-25", + "parcelID": "18778", + "crownLandUsePIN": "17659", + "crownLandFileNumber": "19895", + "landDescription": "LOT 1 OF LOT 2 BLOCK 3 DISTRICT LOT 3 PLAN 6545" }, { "siteRegistry": true, - "dateReceived": "2014-10-11", - "dateCompleted": "2022-01-14", - "dateEntered": "2015-02-28", - "dateRegistrar": "2015-06-18", - "dateLocalAuthorityReceived": "2018-07-27", - "summary": "Illo labore modi.", - "informationUsed": "Sed quis sequi alias quidem velit id omnis cupiditate.\nQuos nihil maxime quam molestias.\nTenetur vitae voluptate rem deserunt dolorem voluptatibus asperiores.", - "pastOrPresentOrders": "Incidunt praesentium ad repudiandae quidem.", + "dateNoted": "2017-10-09", + "parcelID": "20290", + "crownLandUsePIN": "20294", + "crownLandFileNumber": "18861", + "landDescription": "LOT 4 OF LOT 5 BLOCK 5 DISTRICT LOT 3 PLAN 3324" + } + ], + "siteDisclosures": [ + { + "siteRegistry": false, + "dateReceived": "2013-10-19", + "dateCompleted": "2020-10-02", + "dateEntered": "2019-10-17", + "dateRegistrar": "2017-09-14", + "dateLocalAuthorityReceived": "2015-04-25", + "summary": "Occaecati architecto voluptatibus aliquid ratione illum.\nMaiores laboriosam exercitationem aliquam tempora dicta vitae quos hic.", + "informationUsed": "Quasi nemo quae aspernatur odio enim quidem cumque ipsam dicta.\nQuos nobis aspernatur voluptas necessitatibus ut assumenda.\nAutem quisquam quisquam facilis qui nostrum maxime debitis beatae.", + "pastOrPresentOrders": "Nisi doloribus odit tempora laudantium ratione modi.\nSunt praesentium alias ducimus porro.\nMinus quis tempore.", "commercialAndIndustrialPurposes": [ - { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false - }, { "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false + "siteRegistry": true }, { "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false - }, - { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false } ] } @@ -8303,100 +8894,106 @@ { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "HUELS DEMARCUS", - "timestamp": "2017-06-15" + "user": "BEDNAR MALACHI", + "timestamp": "2017-07-13" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "AUER RODRICK", + "timestamp": "2023-08-30" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "HALEY JENA", - "timestamp": "2021-03-13" + "user": "HARRIS DESHAUN", + "timestamp": "2022-11-30" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "WEST JAVIER", - "timestamp": "2021-10-20" + "user": "JONES DEONDRE", + "timestamp": "2015-08-20" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "MOHR LOGAN", - "timestamp": "2017-04-20" + "user": "HUEL VERNER", + "timestamp": "2020-07-21" }, { - "siteRegistry": true, + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "MOORE CRUZ", - "timestamp": "2013-12-09" + "user": "ADAMS EBBA", + "timestamp": "2017-02-06" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "BEER PAUL", - "timestamp": "2019-06-18" + "user": "LEDNER TREVA", + "timestamp": "2014-07-19" }, { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "ALTENWERTH MARIETTA", - "timestamp": "2018-06-21" + "user": "WATERS CARISSA", + "timestamp": "2016-08-20" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "WILLIAMSON EZEQUIEL", - "timestamp": "2015-01-04" + "user": "HERZOG LAURYN", + "timestamp": "2022-12-01" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "GUTKOWSKI DARION", - "timestamp": "2017-05-29" + "user": "HEANEY LYSANNE", + "timestamp": "2018-09-08" } ], "associatedSites": [ { - "dateNoted": "2017-07-04", + "dateNoted": "2016-07-05", "notes": "", - "parcelID": "15481", - "siteID": "20361", + "parcelID": "15927", + "siteID": "17707", "siteRegistry": true }, { - "dateNoted": "2014-11-21", + "dateNoted": "2013-11-07", "notes": "", - "parcelID": "17328", - "siteID": "17534", + "parcelID": "19275", + "siteID": "20293", "siteRegistry": false } ] }, { - "uuid": "f39f67f0-4e9e-4699-abdb-0780e35c1cda", - "siteID": 15342, - "address": "75017 Murphy Shore", - "latitude": 50.745, - "longitude": -118.9917, - "lastUpdated": "2022-02-16", - "city": "Somerville", - "region": "Kootenay", - "victoriaFile": "26250-20/3339", + "uuid": "4de1ddcb-65ea-4edb-8899-bd78c890c666", + "siteID": 16027, + "address": "340 O'Conner Hill", + "latitude": 50.5317, + "longitude": -129.7837, + "lastUpdated": "2018-10-18", + "city": "West Virginieville", + "region": "Thompson-Okanagan", + "victoriaFile": "26250-20/9422", "regionalFile": "N/A", "parcelIDs": [ - 8334602, - 4165961, - 3066943, - 3500689, - 4837272 + 4194307, + 1679569, + 3647298, + 9519470, + 6523046 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2023-10-06", - "completed": "2018-02-20", - "initiated": "2018-03-18", - "ministryContact": "STAMM MONSERRAT", + "createdAt": "2013-10-24", + "completed": "2014-07-12", + "initiated": "2014-04-29", + "ministryContact": "KEELING MATILDA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -8405,17 +9002,22 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false } @@ -8423,10 +9025,10 @@ "siteRegistry": true }, { - "createdAt": "2014-03-04", - "completed": "2017-04-21", - "initiated": "2015-02-27", - "ministryContact": "HEGMANN RENE", + "createdAt": "2019-12-03", + "completed": "2017-06-07", + "initiated": "2018-08-31", + "ministryContact": "BAYER JACKELINE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -8435,13 +9037,43 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "createdAt": "2017-03-08", + "completed": "2014-08-12", + "initiated": "2014-04-29", + "ministryContact": "GIBSON JAROD", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", "siteRegistry": false }, { @@ -8449,6 +9081,11 @@ "role": "SUBMITTED BY", "siteRegistry": true }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", @@ -8461,8 +9098,28 @@ "participants": [ { "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2021-10-13", - "startDate": "2020-02-24", + "endDate": "2020-04-26", + "startDate": "2015-02-24", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2020-09-18", + "startDate": "2017-05-16", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2019-12-23", + "startDate": "2022-03-20", "notes": "", "roles": [ "EMPLOYEE" @@ -8470,9 +9127,9 @@ "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2016-02-19", - "startDate": "2015-08-08", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2022-11-26", + "startDate": "2021-08-07", "notes": "", "roles": [ "ORGANIZATION" @@ -8481,11 +9138,11 @@ }, { "name": "IPSUM", - "endDate": "2017-11-16", - "startDate": "2022-05-14", + "endDate": "2016-10-04", + "startDate": "2018-05-24", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": true } @@ -8493,113 +9150,202 @@ "suspectLandUses": [ { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2020-09-22 (described on Site Profile dated 2020-09-22)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "notes": "INSERTED FOR SITE PROFILE DATED 2019-10-24 (described on Site Profile dated 2019-10-24)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-02-27 (described on Site Profile dated 2017-02-27)", + "notes": "INSERTED FOR SITE PROFILE DATED 2016-05-24 (described on Site Profile dated 2016-05-24)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2023-06-16 (described on Site Profile dated 2023-06-16)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], - "siteDisclosures": [ + "parcelDescriptions": [ + { + "siteRegistry": true, + "dateNoted": "2016-10-24", + "parcelID": "17420", + "crownLandUsePIN": "17639", + "crownLandFileNumber": "16205", + "landDescription": "LOT 5 OF LOT 2 BLOCK 2 DISTRICT LOT 1 PLAN 9447" + }, + { + "siteRegistry": true, + "dateNoted": "2019-07-20", + "parcelID": "15808", + "crownLandUsePIN": "17842", + "crownLandFileNumber": "17072", + "landDescription": "LOT 4 OF LOT 1 BLOCK 5 DISTRICT LOT 2 PLAN 7404" + }, + { + "siteRegistry": true, + "dateNoted": "2020-09-13", + "parcelID": "15883", + "crownLandUsePIN": "18176", + "crownLandFileNumber": "18616", + "landDescription": "LOT 2 OF LOT 3 BLOCK 3 DISTRICT LOT 5 PLAN 7379" + }, { "siteRegistry": false, - "dateReceived": "2015-01-22", - "dateCompleted": "2017-04-07", - "dateEntered": "2021-04-08", - "dateRegistrar": "2022-07-28", - "dateLocalAuthorityReceived": "2016-09-25", - "summary": "Officia placeat maxime ut vero.\nReprehenderit eum earum.", - "informationUsed": "Facere voluptatibus velit assumenda sequi maxime eos unde natus rem.\nDolor porro ipsam iste neque occaecati aut illum dolor.\nEnim expedita iure quas dolorum architecto eveniet itaque.", - "pastOrPresentOrders": "Aliquam ex repellat alias asperiores numquam error.\nOfficia rem velit numquam culpa id et cumque rerum.", + "dateNoted": "2016-01-05", + "parcelID": "18909", + "crownLandUsePIN": "17016", + "crownLandFileNumber": "16425", + "landDescription": "LOT 5 OF LOT 2 BLOCK 4 DISTRICT LOT 3 PLAN 4997" + } + ], + "siteDisclosures": [ + { + "siteRegistry": true, + "dateReceived": "2020-01-31", + "dateCompleted": "2015-08-29", + "dateEntered": "2015-01-25", + "dateRegistrar": "2020-04-25", + "dateLocalAuthorityReceived": "2022-10-04", + "summary": "Eum nobis sit nemo ratione sit nemo similique expedita.", + "informationUsed": "Eum ducimus assumenda repellat natus amet voluptatum.\nAmet fuga excepturi error enim officiis.\nNeque corporis amet temporibus pariatur sed laudantium quod eveniet iure.", + "pastOrPresentOrders": "Vero molestiae ipsam.\nAdipisci fugiat unde distinctio atque vel iste exercitationem dignissimos dolor.", "commercialAndIndustrialPurposes": [ { - "scheduleReference": "F1*", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { - "scheduleReference": "F2*", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true } ] + }, + { + "siteRegistry": false, + "dateReceived": "2018-06-06", + "dateCompleted": "2019-03-14", + "dateEntered": "2022-11-02", + "dateRegistrar": "2015-12-21", + "dateLocalAuthorityReceived": "2021-06-21", + "summary": "Eum hic corporis quibusdam enim minus voluptate quas quod.\nModi aliquid qui dicta.", + "informationUsed": "Animi corrupti deserunt officiis eius quod.\nReiciendis quam odit tenetur.\nNisi libero et iste at nemo excepturi delectus.", + "pastOrPresentOrders": "Nemo corporis nemo aliquam.\nItaque reprehenderit fuga officiis ab voluptatibus.\nHic delectus quibusdam sapiente facilis dolorum architecto.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + } + ] } ], "activityLog": [ + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "WEISSNAT ISABEL", + "timestamp": "2018-04-05" + }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "KUB SAGE", - "timestamp": "2020-02-09" + "user": "MURAZIK ALEXZANDER", + "timestamp": "2019-09-25" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "DANIEL KORY", - "timestamp": "2019-03-06" + "user": "SAUER-GLOVER SIGURD", + "timestamp": "2014-10-31" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "HANSEN KALLIE", - "timestamp": "2023-07-28" + "user": "KUPHAL LILIANA", + "timestamp": "2022-08-23" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "MCDERMOTT JAKE", - "timestamp": "2017-07-14" + "user": "DICKI PERRY", + "timestamp": "2020-02-04" }, { - "siteRegistry": true, + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "LEFFLER SUMMER", - "timestamp": "2021-02-21" + "user": "WALTER TATE", + "timestamp": "2016-01-01" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "QUIGLEY ANNABELLE", - "timestamp": "2021-09-09" + "user": "SCHUSTER FATIMA", + "timestamp": "2021-01-09" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "BAILEY BERNIECE", + "timestamp": "2018-04-14" } ], "associatedSites": [ { - "dateNoted": "2014-05-22", + "dateNoted": "2014-01-03", "notes": "", - "parcelID": "20645", - "siteID": "15864", + "parcelID": "17924", + "siteID": "18732", "siteRegistry": false } ] }, { - "uuid": "f48fb772-11e2-47c7-9cd7-80701830a1f3", - "siteID": 20671, - "address": "42452 Lambert Garden", - "latitude": 55.4436, - "longitude": -119.0878, - "lastUpdated": "2021-06-09", - "city": "Olgastad", - "region": "Kootenay", - "victoriaFile": "26250-20/2276", + "uuid": "f5c44834-faff-45e9-9f45-73c4c66ea18e", + "siteID": 20243, + "address": "99420 Mayert Courts", + "latitude": 58.7224, + "longitude": -137.8475, + "lastUpdated": "2018-09-16", + "city": "New Eloy", + "region": "Cariboo", + "victoriaFile": "26250-20/17905", "regionalFile": "N/A", "parcelIDs": [ - 936414, - 7568674, - 2414262, - 6116575, - 5214492 + 154347, + 6997817, + 7650263, + 7536407, + 2084761 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2019-03-07", - "completed": "2019-09-03", - "initiated": "2022-10-05", - "ministryContact": "HALVORSON MARLEN", + "createdAt": "2020-11-19", + "completed": "2017-01-31", + "initiated": "2014-02-03", + "ministryContact": "HESSEL ROMAINE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -8607,23 +9353,93 @@ "" ], "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "createdAt": "2013-11-27", + "completed": "2019-09-19", + "initiated": "2021-09-15", + "ministryContact": "POWLOWSKI RODRIGO", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "createdAt": "2016-11-19", + "completed": "2016-11-13", + "initiated": "2022-09-24", + "ministryContact": "HAMMES VIOLA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true }, @@ -8633,13 +9449,13 @@ "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2017-11-11", - "completed": "2019-10-28", - "initiated": "2014-12-07", - "ministryContact": "LOWE MATT", + "createdAt": "2021-03-07", + "completed": "2019-01-17", + "initiated": "2021-04-08", + "ministryContact": "WILDERMAN LELAH", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -8648,29 +9464,29 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false } ], "participants": [ { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2023-02-18", - "startDate": "2021-05-20", + "name": "AMET, DOLOR SIT", + "endDate": "2017-07-01", + "startDate": "2014-04-19", "notes": "", "roles": [ "ORGANIZATION" @@ -8678,19 +9494,29 @@ "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2018-06-07", - "startDate": "2019-06-06", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2018-10-03", + "startDate": "2020-10-01", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": false }, { - "name": "IPSUM", - "endDate": "2015-04-03", - "startDate": "2023-01-01", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2022-08-23", + "startDate": "2015-12-12", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2017-01-23", + "startDate": "2016-06-10", "notes": "", "roles": [ "EMPLOYEE" @@ -8699,149 +9525,180 @@ } ], "suspectLandUses": [ + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2017-12-10 (described on Site Profile dated 2017-12-10)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-11-24 (described on Site Profile dated 2021-11-24)", + "notes": "INSERTED FOR SITE PROFILE DATED 2013-12-24 (described on Site Profile dated 2013-12-24)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2015-06-19 (described on Site Profile dated 2015-06-19)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2020-10-12 (described on Site Profile dated 2020-10-12)", + "notes": "INSERTED FOR SITE PROFILE DATED 2023-10-01 (described on Site Profile dated 2023-10-01)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + } + ], + "parcelDescriptions": [ + { + "siteRegistry": false, + "dateNoted": "2014-09-28", + "parcelID": "16385", + "crownLandUsePIN": "19629", + "crownLandFileNumber": "20960", + "landDescription": "LOT 2 OF LOT 2 BLOCK 4 DISTRICT LOT 4 PLAN 8259" }, { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-11-11 (described on Site Profile dated 2014-11-11)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "dateNoted": "2016-09-07", + "parcelID": "18731", + "crownLandUsePIN": "15382", + "crownLandFileNumber": "15377", + "landDescription": "LOT 5 OF LOT 3 BLOCK 5 DISTRICT LOT 1 PLAN 5023" + }, + { + "siteRegistry": false, + "dateNoted": "2020-02-24", + "parcelID": "15474", + "crownLandUsePIN": "16283", + "crownLandFileNumber": "18609", + "landDescription": "LOT 2 OF LOT 2 BLOCK 5 DISTRICT LOT 2 PLAN 6888" } ], "siteDisclosures": [ { - "siteRegistry": true, - "dateReceived": "2022-10-08", - "dateCompleted": "2017-06-15", - "dateEntered": "2023-09-05", - "dateRegistrar": "2021-08-14", - "dateLocalAuthorityReceived": "2015-05-19", - "summary": "Dolore itaque perferendis nobis temporibus ex hic aspernatur.", - "informationUsed": "Quidem placeat provident cum corrupti quisquam nisi mollitia quisquam.\nLaboriosam ducimus nesciunt quasi architecto porro inventore maiores alias.\nUllam quisquam consequuntur velit enim expedita porro odio aut.\nRepudiandae magni quod vel impedit.\nAlias mollitia inventore recusandae ullam non.", - "pastOrPresentOrders": "Beatae adipisci animi.\nSit dicta quod quasi eum eaque a eos quibusdam perferendis.", + "siteRegistry": false, + "dateReceived": "2017-07-02", + "dateCompleted": "2020-06-06", + "dateEntered": "2014-03-05", + "dateRegistrar": "2013-11-25", + "dateLocalAuthorityReceived": "2022-06-05", + "summary": "Mollitia labore necessitatibus asperiores amet tenetur necessitatibus itaque.\nOmnis quisquam quod.", + "informationUsed": "Repellat harum quos maxime aliquam modi aut hic nisi.\nRecusandae eos maiores.\nIpsam animi atque molestias asperiores ipsum.", + "pastOrPresentOrders": "Cum quasi ullam numquam earum est laboriosam omnis.\nSed excepturi illum recusandae labore quibusdam natus.\nLabore harum nobis reiciendis facere labore consequatur esse.", "commercialAndIndustrialPurposes": [ { "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true + "siteRegistry": false }, { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false }, { - "scheduleReference": "F2*", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false } ] - } - ], - "activityLog": [ - { - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "WILLMS CONOR", - "timestamp": "2018-06-06" }, { "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "BOGAN DOMENICO", - "timestamp": "2016-02-14" - }, - { - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "JAST MUHAMMAD", - "timestamp": "2022-01-07" - }, + "dateReceived": "2019-09-15", + "dateCompleted": "2015-08-24", + "dateEntered": "2020-02-22", + "dateRegistrar": "2022-09-26", + "dateLocalAuthorityReceived": "2019-06-20", + "summary": "Earum ex animi deleniti iusto consequatur dolorum.", + "informationUsed": "Unde totam natus reprehenderit commodi ratione.\nMagni quasi eum architecto.\nEaque vero blanditiis voluptatum.\nLaborum sapiente quisquam porro modi blanditiis porro soluta natus.", + "pastOrPresentOrders": "Suscipit quis beatae officiis doloribus.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + } + ] + } + ], + "activityLog": [ { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "ORTIZ SYLVAN", - "timestamp": "2015-02-03" - }, - { - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "TORP NARCISO", - "timestamp": "2016-02-08" + "user": "PROSACCO ABBIGAIL", + "timestamp": "2016-05-06" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "MAGGIO OSCAR", - "timestamp": "2018-11-23" - }, - { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "BEATTY DAMARIS", - "timestamp": "2018-03-01" + "user": "HACKETT AMANI", + "timestamp": "2015-10-10" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "BEDNAR ELIZA", - "timestamp": "2019-09-11" + "user": "MURPHY NORWOOD", + "timestamp": "2014-03-13" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "ANDERSON MAFALDA", - "timestamp": "2018-06-23" + "user": "DOYLE MELYSSA", + "timestamp": "2020-02-29" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "RICE ARNE", - "timestamp": "2021-10-06" + "user": "SMITHAM MARIBEL", + "timestamp": "2018-07-09" } ], "associatedSites": [ { - "dateNoted": "2021-02-17", + "dateNoted": "2023-10-08", "notes": "", - "parcelID": "20989", - "siteID": "15998", + "parcelID": "18415", + "siteID": "20741", + "siteRegistry": false + }, + { + "dateNoted": "2022-05-21", + "notes": "", + "parcelID": "18822", + "siteID": "19390", "siteRegistry": false } ] }, { - "uuid": "3de30943-eb60-4f37-949f-6c7d658c1b80", - "siteID": 20194, - "address": "50912 Lavonne Vista", - "latitude": 55.2255, - "longitude": -129.6989, - "lastUpdated": "2014-03-22", - "city": "Larsoncester", - "region": "Thompson-Okanagan", - "victoriaFile": "26250-20/9877", + "uuid": "c06a03ea-7bfd-4bf9-85b1-20e1dd5fbeb6", + "siteID": 17653, + "address": "41771 Jadon Expressway", + "latitude": 54.8303, + "longitude": -138.0613, + "lastUpdated": "2021-11-08", + "city": "Port Monte", + "region": "Cariboo", + "victoriaFile": "26250-20/16420", "regionalFile": "N/A", "parcelIDs": [ - 3019509, - 8638210, - 5018906, - 8325115, - 5321085 + 6881667, + 9268003, + 9451684, + 9334492, + 7450429 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2016-08-07", - "completed": "2015-01-08", - "initiated": "2022-03-02", - "ministryContact": "KIHN MARLEY", + "createdAt": "2023-01-17", + "completed": "2020-04-12", + "initiated": "2020-08-30", + "ministryContact": "STOLTENBERG CORTNEY", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -8850,35 +9707,15 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - } - ], - "siteRegistry": true - }, - { - "createdAt": "2016-07-15", - "completed": "2021-10-13", - "initiated": "2018-03-31", - "ministryContact": "MCCULLOUGH GOLDA", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", @@ -8890,13 +9727,13 @@ "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2020-11-17", - "completed": "2017-04-12", - "initiated": "2017-07-25", - "ministryContact": "KOEPP-BOSCO NEWTON", + "createdAt": "2018-12-24", + "completed": "2018-12-19", + "initiated": "2020-12-03", + "ministryContact": "BAHRINGER ALEXZANDER", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -8906,7 +9743,7 @@ "notationParticipants": [ { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false }, { @@ -8915,13 +9752,13 @@ "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": true }, { @@ -8933,10 +9770,10 @@ "siteRegistry": true }, { - "createdAt": "2018-07-16", - "completed": "2018-01-03", - "initiated": "2022-07-05", - "ministryContact": "KERLUKE ZULA", + "createdAt": "2016-02-16", + "completed": "2022-07-16", + "initiated": "2017-01-03", + "ministryContact": "SHANAHAN EARNESTINE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -8944,85 +9781,106 @@ "" ], "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true } ], "participants": [ { - "name": "AMET, DOLOR SIT", - "endDate": "2015-04-21", - "startDate": "2020-02-14", + "name": "IPSUM", + "endDate": "2021-06-16", + "startDate": "2017-09-19", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false }, { - "name": "AMET, DOLOR SIT", - "endDate": "2018-01-09", - "startDate": "2021-02-11", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2017-03-21", + "startDate": "2021-02-05", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true } ], "suspectLandUses": [ { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2023-06-20 (described on Site Profile dated 2023-06-20)", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2020-08-24 (described on Site Profile dated 2020-08-24)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2020-11-29 (described on Site Profile dated 2020-11-29)", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2018-01-19 (described on Site Profile dated 2018-01-19)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-04-18 (described on Site Profile dated 2018-04-18)", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2017-12-17 (described on Site Profile dated 2017-12-17)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + } + ], + "parcelDescriptions": [ + { + "siteRegistry": false, + "dateNoted": "2014-01-20", + "parcelID": "16350", + "crownLandUsePIN": "17489", + "crownLandFileNumber": "16699", + "landDescription": "LOT 1 OF LOT 3 BLOCK 3 DISTRICT LOT 2 PLAN 3389" }, { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2020-10-17 (described on Site Profile dated 2020-10-17)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "dateNoted": "2016-08-26", + "parcelID": "15930", + "crownLandUsePIN": "20263", + "crownLandFileNumber": "15534", + "landDescription": "LOT 3 OF LOT 3 BLOCK 4 DISTRICT LOT 2 PLAN 3463" + }, + { + "siteRegistry": true, + "dateNoted": "2015-08-26", + "parcelID": "17850", + "crownLandUsePIN": "15852", + "crownLandFileNumber": "19536", + "landDescription": "LOT 3 OF LOT 1 BLOCK 5 DISTRICT LOT 3 PLAN 9328" } ], "siteDisclosures": [ { - "siteRegistry": true, - "dateReceived": "2020-05-14", - "dateCompleted": "2020-08-04", - "dateEntered": "2023-04-25", - "dateRegistrar": "2014-05-21", - "dateLocalAuthorityReceived": "2020-09-19", - "summary": "Saepe voluptates nobis tenetur ipsa fugiat.\nNemo rerum porro.\nFugiat deleniti mollitia at.", - "informationUsed": "Nihil nam aspernatur quia voluptates nobis nihil consequuntur ex minima.\nFuga assumenda occaecati.\nSaepe aperiam aperiam impedit inventore ex nihil beatae alias vel.\nVitae maxime ab enim possimus beatae asperiores delectus.\nIncidunt dolor porro velit pariatur facilis voluptas odio.", - "pastOrPresentOrders": "Rerum nesciunt iusto dicta voluptate quis.\nIllo necessitatibus voluptas porro corrupti amet veniam.", + "siteRegistry": false, + "dateReceived": "2015-11-23", + "dateCompleted": "2022-11-21", + "dateEntered": "2018-01-08", + "dateRegistrar": "2021-08-08", + "dateLocalAuthorityReceived": "2014-03-12", + "summary": "Tempore nulla unde magnam earum inventore maiores incidunt consectetur.\nQuasi maiores quae vel vel aliquam sapiente.", + "informationUsed": "Corrupti laborum nam dolorem delectus.\nIllum repellat nulla.\nVoluptatem non quae fuga.", + "pastOrPresentOrders": "Veniam officiis doloribus.\nIllum ullam ipsum sed magnam itaque.\nMaiores et voluptas harum aperiam libero odit labore.", "commercialAndIndustrialPurposes": [ { "scheduleReference": "F1*", @@ -9032,6 +9890,44 @@ { "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + } + ] + }, + { + "siteRegistry": false, + "dateReceived": "2018-12-13", + "dateCompleted": "2020-12-17", + "dateEntered": "2014-02-13", + "dateRegistrar": "2014-09-25", + "dateLocalAuthorityReceived": "2021-07-26", + "summary": "Asperiores temporibus distinctio facere dolorem voluptates praesentium distinctio.\nDeserunt odit ipsam.", + "informationUsed": "Ad culpa animi nesciunt maiores veniam soluta maxime voluptatibus vel.\nSequi atque nihil dolorem.\nVel reprehenderit qui autem excepturi praesentium.\nCumque eligendi eaque in ipsam natus illo.\nAlias eos ipsa eos cum itaque totam.", + "pastOrPresentOrders": "Quos optio excepturi qui similique.\nQuisquam adipisci doloremque laborum unde quidem quas inventore dolor.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true } ] @@ -9039,84 +9935,103 @@ ], "activityLog": [ { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "MARQUARDT BRENNAN", - "timestamp": "2015-10-07" + "user": "RENNER EUDORA", + "timestamp": "2016-09-10" }, { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "MCGLYNN HANNA", - "timestamp": "2022-06-06" + "user": "CRONIN PRINCE", + "timestamp": "2019-10-13" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "GORCZANY CASIMIR", - "timestamp": "2016-09-29" + "user": "EBERT DEDRICK", + "timestamp": "2016-09-01" }, { - "siteRegistry": true, + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "KIRLIN MAGGIE", + "timestamp": "2021-04-29" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "WUNSCH DAVIN", + "timestamp": "2019-01-15" + }, + { + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "HAMMES THERESA", - "timestamp": "2022-09-21" + "user": "POWLOWSKI SHANIYA", + "timestamp": "2021-02-24" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "ROHAN DAN", - "timestamp": "2021-10-01" + "user": "STREICH KIP", + "timestamp": "2022-03-29" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "GLOVER SHELDON", - "timestamp": "2022-11-14" + "user": "WARD-CORKERY CLEMENS", + "timestamp": "2015-05-04" } ], "associatedSites": [ { - "dateNoted": "2014-03-18", + "dateNoted": "2016-07-30", "notes": "", - "parcelID": "19592", - "siteID": "18736", - "siteRegistry": true + "parcelID": "15564", + "siteID": "20243", + "siteRegistry": false }, { - "dateNoted": "2018-12-12", + "dateNoted": "2017-11-30", "notes": "", - "parcelID": "20805", - "siteID": "20571", + "parcelID": "17552", + "siteID": "19450", + "siteRegistry": false + }, + { + "dateNoted": "2022-06-26", + "notes": "", + "parcelID": "19055", + "siteID": "17847", "siteRegistry": false } ] }, { - "uuid": "ec9a80b2-4bbe-48ae-904d-504816344d81", - "siteID": 15206, - "address": "781 Aurelio Run", - "latitude": 53.1747, - "longitude": -133.8966, - "lastUpdated": "2016-08-04", - "city": "Port Noelport", - "region": "Kootenay", - "victoriaFile": "26250-20/14466", + "uuid": "97490fd5-3cc6-469f-8bbb-25b55e775998", + "siteID": 17779, + "address": "3428 Bailey Trafficway", + "latitude": 55.5813, + "longitude": -133.8496, + "lastUpdated": "2022-03-04", + "city": "Jaredworth", + "region": "Cariboo", + "victoriaFile": "26250-20/8132", "regionalFile": "N/A", "parcelIDs": [ - 7101362, - 998634, - 2588354, - 9730189, - 1356155 + 8126730, + 2514800, + 6768430, + 4295240, + 1369984 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2022-12-10", - "completed": "2022-08-04", - "initiated": "2023-04-25", - "ministryContact": "SCHULTZ FLORINE", + "createdAt": "2023-03-16", + "completed": "2015-07-08", + "initiated": "2018-09-15", + "ministryContact": "BERNIER VIVIANNE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -9124,79 +10039,29 @@ "" ], "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, { "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - } - ], - "siteRegistry": true - }, - { - "createdAt": "2018-04-25", - "completed": "2019-11-18", - "initiated": "2014-11-22", - "ministryContact": "ABSHIRE MILFORD", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, { "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2017-02-12", - "completed": "2013-11-24", - "initiated": "2014-05-03", - "ministryContact": "SCHIMMEL LESLY", + "createdAt": "2018-12-16", + "completed": "2018-01-08", + "initiated": "2021-10-22", + "ministryContact": "WILL WILBER", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -9206,8 +10071,8 @@ "notationParticipants": [ { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false + "role": "SUBMITTED BY", + "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", @@ -9218,11 +10083,6 @@ "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true } ], "siteRegistry": false @@ -9230,19 +10090,9 @@ ], "participants": [ { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2015-07-09", - "startDate": "2021-06-18", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2022-01-06", - "startDate": "2020-05-29", + "name": "IPSUM", + "endDate": "2021-04-27", + "startDate": "2015-03-14", "notes": "", "roles": [ "ORGANIZATION" @@ -9250,197 +10100,223 @@ "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2015-04-13", - "startDate": "2015-02-16", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2019-03-22", - "startDate": "2019-10-06", + "name": "IPSUM", + "endDate": "2015-02-02", + "startDate": "2018-08-04", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2014-07-26", - "startDate": "2022-08-28", + "name": "IPSUM", + "endDate": "2014-04-08", + "startDate": "2017-07-01", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], - "siteRegistry": true + "siteRegistry": false } ], "suspectLandUses": [ { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-05-12 (described on Site Profile dated 2016-05-12)", + "notes": "INSERTED FOR SITE PROFILE DATED 2017-04-19 (described on Site Profile dated 2017-04-19)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2015-01-19 (described on Site Profile dated 2015-01-19)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-07-30 (described on Site Profile dated 2016-07-30)", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2019-04-24 (described on Site Profile dated 2019-04-24)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2023-05-26 (described on Site Profile dated 2023-05-26)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2018-08-14 (described on Site Profile dated 2018-08-14)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2020-06-24 (described on Site Profile dated 2020-06-24)", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2016-06-13 (described on Site Profile dated 2016-06-13)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + } + ], + "parcelDescriptions": [ + { + "siteRegistry": false, + "dateNoted": "2020-11-04", + "parcelID": "17819", + "crownLandUsePIN": "16738", + "crownLandFileNumber": "19610", + "landDescription": "LOT 2 OF LOT 4 BLOCK 5 DISTRICT LOT 5 PLAN 4730" }, { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-03-09 (described on Site Profile dated 2021-03-09)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "dateNoted": "2023-03-19", + "parcelID": "16745", + "crownLandUsePIN": "17190", + "crownLandFileNumber": "16101", + "landDescription": "LOT 5 OF LOT 5 BLOCK 2 DISTRICT LOT 2 PLAN 8773" + }, + { + "siteRegistry": true, + "dateNoted": "2022-02-05", + "parcelID": "19007", + "crownLandUsePIN": "15380", + "crownLandFileNumber": "16744", + "landDescription": "LOT 3 OF LOT 2 BLOCK 3 DISTRICT LOT 2 PLAN 9467" + }, + { + "siteRegistry": true, + "dateNoted": "2022-05-02", + "parcelID": "17854", + "crownLandUsePIN": "20980", + "crownLandFileNumber": "20471", + "landDescription": "LOT 5 OF LOT 1 BLOCK 2 DISTRICT LOT 1 PLAN 8866" + }, + { + "siteRegistry": true, + "dateNoted": "2017-10-24", + "parcelID": "18733", + "crownLandUsePIN": "16237", + "crownLandFileNumber": "17340", + "landDescription": "LOT 4 OF LOT 2 BLOCK 4 DISTRICT LOT 3 PLAN 6623" } ], "siteDisclosures": [ { - "siteRegistry": true, - "dateReceived": "2015-12-18", - "dateCompleted": "2023-05-04", - "dateEntered": "2023-06-01", - "dateRegistrar": "2017-03-27", - "dateLocalAuthorityReceived": "2014-04-27", - "summary": "Odio fugit tempora autem velit sunt impedit.\nVelit excepturi pariatur reprehenderit asperiores mollitia in fugiat blanditiis.\nVeritatis reiciendis consectetur dolorem illo quas velit incidunt quam.", - "informationUsed": "Laudantium porro earum nesciunt delectus recusandae tempore vitae.\nVoluptatibus porro aut eligendi omnis consectetur.\nIusto deleniti omnis voluptatibus expedita porro voluptates.", - "pastOrPresentOrders": "Labore voluptate quam maiores hic iure laudantium.\nEst magni a sunt sapiente veritatis repellat voluptatibus.", + "siteRegistry": false, + "dateReceived": "2014-07-15", + "dateCompleted": "2016-09-25", + "dateEntered": "2019-12-27", + "dateRegistrar": "2014-02-05", + "dateLocalAuthorityReceived": "2022-07-30", + "summary": "Consequatur labore eius incidunt.\nLaboriosam minus ab voluptates aliquam non facere eveniet pariatur.", + "informationUsed": "Maiores rerum necessitatibus.\nOptio soluta deserunt ipsa totam.\nQuas voluptas dolorem distinctio at molestiae numquam.\nOfficia maiores error natus.", + "pastOrPresentOrders": "Nemo ipsam porro quae nihil.", "commercialAndIndustrialPurposes": [ { - "scheduleReference": "F1*", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, - { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true - } - ] - }, - { - "siteRegistry": false, - "dateReceived": "2018-05-04", - "dateCompleted": "2015-03-06", - "dateEntered": "2019-08-19", - "dateRegistrar": "2014-04-21", - "dateLocalAuthorityReceived": "2017-01-31", - "summary": "Eaque blanditiis corporis a nisi voluptas.\nPerspiciatis debitis laborum quod autem voluptatibus necessitatibus suscipit magni repellat.\nAperiam voluptatibus temporibus eos perferendis dolor quibusdam sequi reiciendis.", - "informationUsed": "Sapiente adipisci sed magnam molestiae aliquid iste provident rerum.\nOdio placeat nemo maxime porro distinctio quibusdam modi natus.\nPerferendis est sequi quas veritatis alias facilis cumque.", - "pastOrPresentOrders": "Temporibus molestias earum laudantium temporibus iusto corporis consequuntur.\nQuidem porro ducimus eius sapiente a.", - "commercialAndIndustrialPurposes": [ { "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, { "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false }, { "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true } ] } ], "activityLog": [ + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "BODE DANA", + "timestamp": "2014-11-06" + }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "BRUEN CYRIL", - "timestamp": "2017-07-06" + "user": "STRACKE BAILEE", + "timestamp": "2017-07-12" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "CHRISTIANSEN ANTONETTE", - "timestamp": "2014-11-29" + "user": "JAST TILLMAN", + "timestamp": "2016-02-20" }, { - "siteRegistry": true, + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "OBERBRUNNER EMERY", - "timestamp": "2020-08-21" + "user": "ABBOTT FREDDY", + "timestamp": "2021-02-08" }, { - "siteRegistry": true, + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "NIENOW CAYLA", - "timestamp": "2022-01-01" + "user": "FRAMI OTHA", + "timestamp": "2016-03-20" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "KOCH PATSY", - "timestamp": "2015-09-27" + "user": "BREKKE JACQUES", + "timestamp": "2023-04-03" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "KERTZMANN NESTOR", + "timestamp": "2015-08-05" } ], "associatedSites": [ { - "dateNoted": "2017-02-26", + "dateNoted": "2020-05-20", "notes": "", - "parcelID": "18822", - "siteID": "20194", + "parcelID": "16618", + "siteID": "16392", "siteRegistry": false }, { - "dateNoted": "2020-06-11", + "dateNoted": "2022-06-21", "notes": "", - "parcelID": "18404", - "siteID": "16303", + "parcelID": "17151", + "siteID": "18608", "siteRegistry": false }, { - "dateNoted": "2020-03-01", + "dateNoted": "2020-07-19", "notes": "", - "parcelID": "18659", - "siteID": "19960", + "parcelID": "16002", + "siteID": "18191", "siteRegistry": false } ] }, { - "uuid": "23400bd1-6b99-4469-a2b4-d258c36a5ff6", - "siteID": 19367, - "address": "335 Laila Flats", - "latitude": 48.8827, - "longitude": -126.6325, - "lastUpdated": "2016-04-20", - "city": "Strosinshire", - "region": "Mainland/Southwest", - "victoriaFile": "26250-20/14557", + "uuid": "11d04478-da49-476e-85ab-3cc1586de0ac", + "siteID": 18136, + "address": "64534 Ima Crossroad", + "latitude": 51.5634, + "longitude": -137.752, + "lastUpdated": "2015-06-10", + "city": "Cydneyview", + "region": "Kootenay", + "victoriaFile": "26250-20/3451", "regionalFile": "N/A", "parcelIDs": [ - 2117070, - 2294403, - 3016810, - 3952947, - 5570860 + 2989501, + 9323057, + 341491, + 417284, + 9421811 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2018-11-25", - "completed": "2018-09-12", - "initiated": "2016-03-13", - "ministryContact": "CASPER TALON", + "createdAt": "2019-09-05", + "completed": "2016-09-16", + "initiated": "2021-12-31", + "ministryContact": "HOPPE BRIDGET", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -9448,20 +10324,10 @@ "" ], "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", @@ -9474,13 +10340,13 @@ "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2018-01-26", - "completed": "2017-03-31", - "initiated": "2016-01-13", - "ministryContact": "SMITHAM ROLLIN", + "createdAt": "2015-06-29", + "completed": "2022-06-09", + "initiated": "2017-05-02", + "ministryContact": "WUCKERT OSVALDO", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -9489,19 +10355,19 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false } ], "siteRegistry": true @@ -9509,101 +10375,120 @@ ], "participants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2015-02-28", - "startDate": "2022-05-21", + "name": "AMET, DOLOR SIT", + "endDate": "2022-07-11", + "startDate": "2017-10-27", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": true + "siteRegistry": false }, { - "name": "AMET, DOLOR SIT", - "endDate": "2018-10-30", - "startDate": "2020-11-06", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2018-06-17", + "startDate": "2023-07-10", "notes": "", "roles": [ "EMPLOYEE" ], "siteRegistry": true + } + ], + "suspectLandUses": [ + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2022-08-13 (described on Site Profile dated 2022-08-13)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "name": "AMET, DOLOR SIT", - "endDate": "2020-07-29", - "startDate": "2020-01-18", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": true + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2021-06-25 (described on Site Profile dated 2021-06-25)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2014-03-13", - "startDate": "2016-01-24", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": true + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2017-08-20 (described on Site Profile dated 2017-08-20)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2014-07-14 (described on Site Profile dated 2014-07-14)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], - "suspectLandUses": [ + "parcelDescriptions": [ { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-05-31 (described on Site Profile dated 2021-05-31)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "dateNoted": "2022-11-10", + "parcelID": "20208", + "crownLandUsePIN": "17762", + "crownLandFileNumber": "15582", + "landDescription": "LOT 4 OF LOT 2 BLOCK 1 DISTRICT LOT 5 PLAN 9235" }, { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-09-30 (described on Site Profile dated 2021-09-30)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "dateNoted": "2020-01-16", + "parcelID": "18879", + "crownLandUsePIN": "17525", + "crownLandFileNumber": "16092", + "landDescription": "LOT 5 OF LOT 1 BLOCK 5 DISTRICT LOT 3 PLAN 3597" + }, + { + "siteRegistry": false, + "dateNoted": "2023-04-07", + "parcelID": "17172", + "crownLandUsePIN": "20484", + "crownLandFileNumber": "17916", + "landDescription": "LOT 1 OF LOT 3 BLOCK 2 DISTRICT LOT 4 PLAN 3373" + }, + { + "siteRegistry": false, + "dateNoted": "2023-05-23", + "parcelID": "19987", + "crownLandUsePIN": "18841", + "crownLandFileNumber": "17992", + "landDescription": "LOT 5 OF LOT 1 BLOCK 4 DISTRICT LOT 2 PLAN 4388" } ], "siteDisclosures": [ { - "siteRegistry": true, - "dateReceived": "2019-11-13", - "dateCompleted": "2016-09-07", - "dateEntered": "2021-08-29", - "dateRegistrar": "2017-10-15", - "dateLocalAuthorityReceived": "2020-10-19", - "summary": "Quas tempora tempore necessitatibus enim doloremque voluptas blanditiis.", - "informationUsed": "Dicta molestiae reprehenderit dicta.\nIllum quisquam dicta culpa iste aliquam et ullam itaque dolorum.\nBeatae ducimus nisi nobis alias blanditiis voluptatum.\nEaque soluta voluptatem facere enim commodi excepturi asperiores.\nVoluptate tenetur placeat molestiae vel cum nam quia.", - "pastOrPresentOrders": "Perspiciatis ex inventore numquam ipsam.", + "siteRegistry": false, + "dateReceived": "2016-02-29", + "dateCompleted": "2020-06-25", + "dateEntered": "2019-03-04", + "dateRegistrar": "2017-05-02", + "dateLocalAuthorityReceived": "2020-05-31", + "summary": "Voluptates tenetur iure.", + "informationUsed": "Dolores itaque fugit id dignissimos facilis laboriosam.\nId at numquam molestiae vitae iste.\nPossimus tempora beatae iusto.", + "pastOrPresentOrders": "Voluptas dignissimos nobis sequi.\nSed nesciunt corrupti corporis.", "commercialAndIndustrialPurposes": [ { "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false - }, - { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { - "scheduleReference": "F1*", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true + "siteRegistry": false } ] }, { - "siteRegistry": true, - "dateReceived": "2016-12-11", - "dateCompleted": "2016-09-11", - "dateEntered": "2021-03-13", - "dateRegistrar": "2014-12-03", - "dateLocalAuthorityReceived": "2019-10-26", - "summary": "Animi quo libero dignissimos culpa sit velit sapiente.", - "informationUsed": "Exercitationem minus temporibus ipsa commodi quis.\nRepudiandae unde aliquam eos magnam fugit odit.\nDicta hic nostrum temporibus.\nEarum saepe repellat repellendus nobis quisquam.\nMaxime qui deserunt aperiam fuga consequuntur sequi itaque voluptatum neque.", - "pastOrPresentOrders": "Laudantium beatae quaerat quisquam possimus est officia.\nMollitia velit expedita excepturi laboriosam.\nEaque distinctio placeat in repellendus quaerat sed vero accusantium officia.", + "siteRegistry": false, + "dateReceived": "2018-08-22", + "dateCompleted": "2020-12-15", + "dateEntered": "2015-04-11", + "dateRegistrar": "2021-07-15", + "dateLocalAuthorityReceived": "2020-03-22", + "summary": "Occaecati delectus id repellendus adipisci rerum provident.\nNeque repellendus error unde ab est quis ex fuga tempore.\nFuga sapiente sapiente et quam nisi non necessitatibus placeat.", + "informationUsed": "Eum dolore nam ab ratione doloribus optio exercitationem repudiandae cupiditate.\nNobis earum rerum explicabo ea at.\nModi occaecati molestiae quibusdam culpa reprehenderit suscipit dicta sed.\nIn repudiandae eos error velit quos numquam nostrum.", + "pastOrPresentOrders": "Quibusdam ea aut necessitatibus iure molestias voluptatibus commodi laborum.", "commercialAndIndustrialPurposes": [ { "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { @@ -9612,105 +10497,106 @@ "siteRegistry": false }, { - "scheduleReference": "F2*", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false + "siteRegistry": true } ] } ], "activityLog": [ - { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "CORKERY NESTOR", - "timestamp": "2022-08-11" - }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "MARVIN MARK", - "timestamp": "2014-07-31" + "user": "BOYLE JUNIUS", + "timestamp": "2022-06-08" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "NOLAN QUINCY", - "timestamp": "2021-01-17" + "user": "KLEIN STELLA", + "timestamp": "2017-04-05" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "KSHLERIN EVANS", - "timestamp": "2014-07-26" + "user": "BOGAN OTHA", + "timestamp": "2020-01-13" }, { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "MOHR VINCE", - "timestamp": "2014-04-05" + "user": "HERZOG BIRDIE", + "timestamp": "2015-11-22" }, { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "BROWN RYLEY", - "timestamp": "2019-01-02" + "user": "KUHN HELENE", + "timestamp": "2022-07-19" }, { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "FARRELL YASMEEN", - "timestamp": "2016-04-15" + "user": "QUIGLEY ELIZA", + "timestamp": "2020-11-04" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "BECKER ELNORA", - "timestamp": "2015-08-28" + "user": "BODE ELDRED", + "timestamp": "2015-11-02" } ], "associatedSites": [ { - "dateNoted": "2014-04-22", + "dateNoted": "2020-05-01", "notes": "", - "parcelID": "20507", - "siteID": "16418", + "parcelID": "16986", + "siteID": "17779", "siteRegistry": true }, { - "dateNoted": "2016-01-22", + "dateNoted": "2023-04-14", "notes": "", - "parcelID": "18391", - "siteID": "20554", + "parcelID": "16015", + "siteID": "20325", "siteRegistry": true + }, + { + "dateNoted": "2015-07-24", + "notes": "", + "parcelID": "20670", + "siteID": "15826", + "siteRegistry": false } ] }, { - "uuid": "da231958-7dd3-4c59-900e-73145268a582", - "siteID": 18598, - "address": "41299 Alessandra Cove", - "latitude": 53.7467, - "longitude": -138.2391, - "lastUpdated": "2019-08-31", - "city": "Meriden", - "region": "Thompson-Okanagan", - "victoriaFile": "26250-20/6700", + "uuid": "35852de7-cf0e-4750-8243-ba8ca4978418", + "siteID": 16701, + "address": "55123 Kshlerin Circles", + "latitude": 55.7268, + "longitude": -136.3407, + "lastUpdated": "2019-11-14", + "city": "Port Rollinstead", + "region": "Cariboo", + "victoriaFile": "26250-20/3779", "regionalFile": "N/A", "parcelIDs": [ - 4024156, - 2218799, - 1279162, - 7131086, - 3302164 + 8447858, + 3404476, + 6311927, + 7923943, + 8373378 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2021-05-12", - "completed": "2018-03-25", - "initiated": "2018-08-04", - "ministryContact": "RUNOLFSSON KEIRA", + "createdAt": "2018-10-07", + "completed": "2019-09-04", + "initiated": "2019-03-29", + "ministryContact": "HUEL ART", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -9720,32 +10606,22 @@ "notationParticipants": [ { "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false } ], "siteRegistry": true }, { - "createdAt": "2023-08-02", - "completed": "2020-01-26", - "initiated": "2023-05-24", - "ministryContact": "WALKER JAYDE", + "createdAt": "2021-08-15", + "completed": "2022-04-23", + "initiated": "2018-10-03", + "ministryContact": "EMARD JOSEPHINE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -9754,9 +10630,9 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", @@ -9765,17 +10641,17 @@ }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true + "role": "REQUESTED BY", + "siteRegistry": false } ], "siteRegistry": true }, { - "createdAt": "2019-03-23", - "completed": "2018-03-03", - "initiated": "2017-03-11", - "ministryContact": "JASKOLSKI REMINGTON", + "createdAt": "2013-10-19", + "completed": "2014-07-30", + "initiated": "2016-05-26", + "ministryContact": "JONES EILEEN", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -9785,13 +10661,13 @@ "notationParticipants": [ { "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true + "role": "REQUESTED BY", + "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true + "role": "REQUESTED BY", + "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", @@ -9800,17 +10676,22 @@ }, { "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2020-07-28", - "completed": "2019-09-09", - "initiated": "2015-03-31", - "ministryContact": "DIETRICH ASSUNTA", + "createdAt": "2018-12-28", + "completed": "2018-11-02", + "initiated": "2023-06-07", + "ministryContact": "KUNZE KESHAUN", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -9821,32 +10702,32 @@ { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false } ], "participants": [ { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2018-07-03", - "startDate": "2014-06-30", + "name": "AMET, DOLOR SIT", + "endDate": "2020-09-12", + "startDate": "2022-01-06", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2018-10-13", + "startDate": "2022-12-04", "notes": "", "roles": [ "ORGANIZATION" @@ -9854,12 +10735,12 @@ "siteRegistry": false }, { - "name": "IPSUM", - "endDate": "2016-06-08", - "startDate": "2018-07-11", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2018-07-15", + "startDate": "2021-07-08", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": false } @@ -9867,44 +10748,86 @@ "suspectLandUses": [ { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-02-13 (described on Site Profile dated 2015-02-13)", + "notes": "INSERTED FOR SITE PROFILE DATED 2014-04-09 (described on Site Profile dated 2014-04-09)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2019-10-29 (described on Site Profile dated 2019-10-29)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-07-26 (described on Site Profile dated 2019-07-26)", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2017-05-11 (described on Site Profile dated 2017-05-11)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + } + ], + "parcelDescriptions": [ + { + "siteRegistry": false, + "dateNoted": "2014-09-14", + "parcelID": "19512", + "crownLandUsePIN": "16208", + "crownLandFileNumber": "18882", + "landDescription": "LOT 1 OF LOT 2 BLOCK 2 DISTRICT LOT 1 PLAN 3299" }, { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-09-30 (described on Site Profile dated 2016-09-30)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "dateNoted": "2015-12-19", + "parcelID": "17166", + "crownLandUsePIN": "17357", + "crownLandFileNumber": "16697", + "landDescription": "LOT 3 OF LOT 5 BLOCK 5 DISTRICT LOT 5 PLAN 5752" }, { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-04-23 (described on Site Profile dated 2017-04-23)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "dateNoted": "2015-05-14", + "parcelID": "15377", + "crownLandUsePIN": "16569", + "crownLandFileNumber": "20680", + "landDescription": "LOT 4 OF LOT 1 BLOCK 1 DISTRICT LOT 4 PLAN 6887" }, { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2023-06-17 (described on Site Profile dated 2023-06-17)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "dateNoted": "2020-05-24", + "parcelID": "19330", + "crownLandUsePIN": "19896", + "crownLandFileNumber": "17143", + "landDescription": "LOT 1 OF LOT 4 BLOCK 2 DISTRICT LOT 3 PLAN 8446" + }, + { + "siteRegistry": true, + "dateNoted": "2016-11-29", + "parcelID": "15485", + "crownLandUsePIN": "17852", + "crownLandFileNumber": "16214", + "landDescription": "LOT 2 OF LOT 4 BLOCK 5 DISTRICT LOT 2 PLAN 8054" } ], "siteDisclosures": [ { "siteRegistry": false, - "dateReceived": "2018-11-17", - "dateCompleted": "2020-01-11", - "dateEntered": "2022-09-26", - "dateRegistrar": "2018-06-20", - "dateLocalAuthorityReceived": "2013-11-08", - "summary": "Consectetur atque vel laborum tenetur earum tenetur corporis praesentium quae.\nVel excepturi molestias placeat consectetur ratione deserunt pariatur corrupti.", - "informationUsed": "Cumque accusantium quidem repudiandae quisquam quis.\nMolestiae vitae illo.\nEaque harum illo excepturi.\nEa id sunt voluptate eligendi consectetur.", - "pastOrPresentOrders": "Harum provident quaerat sit reiciendis.\nNisi rem temporibus similique.\nAccusamus corrupti numquam placeat ut ducimus ipsam fuga.", + "dateReceived": "2023-01-02", + "dateCompleted": "2020-10-02", + "dateEntered": "2017-07-01", + "dateRegistrar": "2020-05-15", + "dateLocalAuthorityReceived": "2018-08-15", + "summary": "Expedita asperiores aut optio perspiciatis minus.\nProvident officiis sequi assumenda in voluptatibus dolore quas.", + "informationUsed": "Illo deleniti harum numquam.\nNatus nobis ratione delectus aliquid temporibus nesciunt aliquid.\nIpsa qui ex deleniti iste facilis quod aliquid non.\nDolores culpa laborum ad libero minus amet nulla.", + "pastOrPresentOrders": "Dolores eius incidunt amet dicta itaque quasi.\nEos saepe inventore sapiente odit.", "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, { "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, @@ -9917,97 +10840,78 @@ } ], "activityLog": [ - { - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "MORISSETTE MEAGAN", - "timestamp": "2021-03-30" - }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "GREEN CHANELLE", - "timestamp": "2020-02-23" + "user": "HARVEY-ZIEMANN KAMREN", + "timestamp": "2015-09-27" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "STANTON ROSALYN", - "timestamp": "2018-12-25" + "user": "COLLINS MANLEY", + "timestamp": "2020-01-11" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "MURRAY NEDRA", - "timestamp": "2014-03-29" + "user": "BARTOLETTI EMIE", + "timestamp": "2015-08-08" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "BERGNAUM REYES", - "timestamp": "2021-11-20" + "user": "JACOBI MISTY", + "timestamp": "2022-08-09" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "LIND ZOILA", - "timestamp": "2016-06-30" + "user": "UPTON WILFRED", + "timestamp": "2017-09-11" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "ZEMLAK NAKIA", - "timestamp": "2016-02-29" - }, - { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "BASHIRIAN IGNATIUS", - "timestamp": "2016-10-10" + "user": "KAUTZER LULU", + "timestamp": "2020-04-29" } ], "associatedSites": [ { - "dateNoted": "2015-07-24", + "dateNoted": "2016-08-01", "notes": "", - "parcelID": "20854", - "siteID": "16563", + "parcelID": "15671", + "siteID": "15327", "siteRegistry": false - }, - { - "dateNoted": "2018-02-25", - "notes": "", - "parcelID": "16392", - "siteID": "20194", - "siteRegistry": true } ] }, { - "uuid": "eb4d5fba-8092-42c5-abde-8d8f7ed65303", - "siteID": 17043, - "address": "922 Stanton Keys", - "latitude": 51.1976, - "longitude": -134.0523, - "lastUpdated": "2022-04-02", - "city": "Bradenton", - "region": "Kootenay", - "victoriaFile": "26250-20/19058", + "uuid": "fd7a6e43-c3fe-46ec-8230-ebfbe6b6ec21", + "siteID": 19608, + "address": "862 Emmerich Valleys", + "latitude": 53.6151, + "longitude": -130.9345, + "lastUpdated": "2017-10-01", + "city": "Cutler Bay", + "region": " North Coast", + "victoriaFile": "26250-20/15908", "regionalFile": "N/A", "parcelIDs": [ - 4410881, - 6843005, - 9008701, - 9466017, - 1717383 + 8277119, + 7202707, + 7757345, + 1510343, + 4080998 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2020-03-03", - "completed": "2021-06-27", - "initiated": "2020-05-13", - "ministryContact": "MORISSETTE NOLA", + "createdAt": "2016-03-03", + "completed": "2015-07-13", + "initiated": "2020-04-13", + "ministryContact": "HUDSON MOHAMED", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -10017,7 +10921,7 @@ "notationParticipants": [ { "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true }, { @@ -10026,28 +10930,23 @@ "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false } ], "siteRegistry": false }, { - "createdAt": "2018-06-26", - "completed": "2021-11-27", - "initiated": "2016-12-18", - "ministryContact": "ZBONCAK AMPARO", + "createdAt": "2023-03-20", + "completed": "2020-01-30", + "initiated": "2021-10-19", + "ministryContact": "FRANEY SILAS", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -10055,76 +10954,16 @@ "" ], "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, { "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true - } - ], - "siteRegistry": false - }, - { - "createdAt": "2015-02-08", - "completed": "2021-08-07", - "initiated": "2018-07-20", - "ministryContact": "BOGAN VIRGIL", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - } - ], - "siteRegistry": false - }, - { - "createdAt": "2019-01-06", - "completed": "2021-06-17", - "initiated": "2019-01-06", - "ministryContact": "HALVORSON GAETANO", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", @@ -10133,102 +10972,124 @@ { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false } ], "participants": [ - { - "name": "AMET, DOLOR SIT", - "endDate": "2020-12-30", - "startDate": "2021-05-21", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": false - }, { "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2022-01-15", - "startDate": "2018-12-22", + "endDate": "2021-04-14", + "startDate": "2018-03-21", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false }, { "name": "AMET, DOLOR SIT", - "endDate": "2021-07-20", - "startDate": "2019-01-31", + "endDate": "2014-09-26", + "startDate": "2023-08-05", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2013-12-19", - "startDate": "2015-12-11", - "notes": "", - "roles": [ - "EMPLOYEE" - ], "siteRegistry": true }, { - "name": "IPSUM", - "endDate": "2015-03-11", - "startDate": "2022-01-03", + "name": "AMET, DOLOR SIT", + "endDate": "2019-06-06", + "startDate": "2015-07-14", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false } ], "suspectLandUses": [ { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2023-01-18 (described on Site Profile dated 2023-01-18)", + "notes": "INSERTED FOR SITE PROFILE DATED 2018-08-23 (described on Site Profile dated 2018-08-23)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2020-06-21 (described on Site Profile dated 2020-06-21)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-12-11 (described on Site Profile dated 2019-12-11)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "notes": "INSERTED FOR SITE PROFILE DATED 2018-08-05 (described on Site Profile dated 2018-08-05)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-11-19 (described on Site Profile dated 2015-11-19)", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2017-06-05 (described on Site Profile dated 2017-06-05)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2020-08-15 (described on Site Profile dated 2020-08-15)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + } + ], + "parcelDescriptions": [ { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-11-19 (described on Site Profile dated 2015-11-19)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "dateNoted": "2014-08-22", + "parcelID": "19292", + "crownLandUsePIN": "16182", + "crownLandFileNumber": "17645", + "landDescription": "LOT 4 OF LOT 3 BLOCK 5 DISTRICT LOT 4 PLAN 6798" }, { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-01-16 (described on Site Profile dated 2015-01-16)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "dateNoted": "2017-04-13", + "parcelID": "17387", + "crownLandUsePIN": "18473", + "crownLandFileNumber": "15373", + "landDescription": "LOT 3 OF LOT 5 BLOCK 2 DISTRICT LOT 1 PLAN 9001" + }, + { + "siteRegistry": true, + "dateNoted": "2023-04-29", + "parcelID": "15286", + "crownLandUsePIN": "15851", + "crownLandFileNumber": "16565", + "landDescription": "LOT 4 OF LOT 5 BLOCK 4 DISTRICT LOT 1 PLAN 5970" + }, + { + "siteRegistry": false, + "dateNoted": "2014-10-03", + "parcelID": "17737", + "crownLandUsePIN": "18155", + "crownLandFileNumber": "16462", + "landDescription": "LOT 4 OF LOT 3 BLOCK 4 DISTRICT LOT 1 PLAN 8292" + }, + { + "siteRegistry": true, + "dateNoted": "2021-10-30", + "parcelID": "15744", + "crownLandUsePIN": "18884", + "crownLandFileNumber": "17581", + "landDescription": "LOT 3 OF LOT 1 BLOCK 5 DISTRICT LOT 3 PLAN 5632" } ], "siteDisclosures": [ { - "siteRegistry": true, - "dateReceived": "2014-09-17", - "dateCompleted": "2023-09-16", - "dateEntered": "2018-05-05", - "dateRegistrar": "2020-03-20", - "dateLocalAuthorityReceived": "2018-12-09", - "summary": "Nihil qui culpa quasi labore.", - "informationUsed": "Inventore ab officia laboriosam placeat sunt error saepe ab.\nQuisquam expedita sint eligendi.\nAsperiores voluptatem adipisci fugit nostrum quas ea cupiditate deleniti.\nLaborum delectus pariatur.\nNeque neque hic cupiditate ducimus exercitationem vero nam provident.", - "pastOrPresentOrders": "Distinctio nemo explicabo expedita.", + "siteRegistry": false, + "dateReceived": "2019-06-18", + "dateCompleted": "2021-12-09", + "dateEntered": "2020-06-10", + "dateRegistrar": "2019-12-16", + "dateLocalAuthorityReceived": "2016-06-25", + "summary": "Officiis quo minus veritatis repudiandae.", + "informationUsed": "Minus perferendis possimus ut sit odit quia quasi exercitationem neque.\nRepellat optio ratione vel.\nError libero corporis pariatur esse deleniti ad earum sapiente porro.", + "pastOrPresentOrders": "Aspernatur placeat harum esse cupiditate facilis ducimus doloribus.\nVoluptate odit totam animi autem.", "commercialAndIndustrialPurposes": [ { "scheduleReference": "F1*", @@ -10236,9 +11097,9 @@ "siteRegistry": true }, { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false } ] } @@ -10247,113 +11108,106 @@ { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "ZBONCAK RYLEIGH", - "timestamp": "2015-07-31" + "user": "MAYER RUDY", + "timestamp": "2015-09-24" }, { - "siteRegistry": true, + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "DICKINSON JUSTICE", - "timestamp": "2018-12-15" + "user": "BARTON CONSTANTIN", + "timestamp": "2015-12-24" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "NICOLAS MYRA", - "timestamp": "2014-03-24" + "user": "AUER MARCELO", + "timestamp": "2019-01-21" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "GREENHOLT-GUTMANN MAUD", - "timestamp": "2017-09-24" + "user": "CRONA GILLIAN", + "timestamp": "2014-02-08" }, { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "HALVORSON-HOMENICK STELLA", - "timestamp": "2021-09-13" + "user": "BUCKRIDGE BETTYE", + "timestamp": "2017-10-07" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "SHIELDS CRYSTAL", - "timestamp": "2023-05-10" + "user": "WALTER ZACHERY", + "timestamp": "2022-05-18" }, { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "WUNSCH MARIO", - "timestamp": "2014-04-01" + "user": "SAUER ANTONIO", + "timestamp": "2017-11-04" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "HOWELL EVELINE", - "timestamp": "2021-02-25" + "user": "LUEILWITZ EDWIN", + "timestamp": "2017-02-27" }, { - "siteRegistry": true, + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "JONES IBRAHIM", - "timestamp": "2017-04-27" + "user": "MCCLURE LUZ", + "timestamp": "2013-11-15" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "MONAHAN MARCELINA", - "timestamp": "2015-08-10" + "user": "O'CONNER KAMREN", + "timestamp": "2020-02-09" } ], "associatedSites": [ { - "dateNoted": "2018-11-22", + "dateNoted": "2020-06-20", "notes": "", - "parcelID": "19032", - "siteID": "16504", - "siteRegistry": false + "parcelID": "19548", + "siteID": "16513", + "siteRegistry": true }, { - "dateNoted": "2016-09-24", + "dateNoted": "2020-03-16", "notes": "", - "parcelID": "19481", - "siteID": "15498", + "parcelID": "16308", + "siteID": "15987", "siteRegistry": false - }, - { - "dateNoted": "2017-10-23", - "notes": "", - "parcelID": "18243", - "siteID": "16386", - "siteRegistry": true } ] }, { - "uuid": "3cf730b1-0fc9-40af-b672-29b88eece3fa", - "siteID": 18179, - "address": "9175 Mayert Isle", - "latitude": 54.8203, - "longitude": -124.2472, - "lastUpdated": "2022-09-03", - "city": "Newtonshire", - "region": "Mainland/Southwest", - "victoriaFile": "26250-20/13478", + "uuid": "db04c26f-dfb0-4a9c-b3cb-482d9471dbdc", + "siteID": 19693, + "address": "8617 Karlee Course", + "latitude": 56.2139, + "longitude": -120.8812, + "lastUpdated": "2014-07-26", + "city": "East Abigale", + "region": "Cariboo", + "victoriaFile": "26250-20/3458", "regionalFile": "N/A", "parcelIDs": [ - 1677276, - 5174751, - 3920703, - 8692001, - 8446310 + 235494, + 9104789, + 8456747, + 2440829, + 5534414 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2023-03-12", - "completed": "2018-11-03", - "initiated": "2020-07-06", - "ministryContact": "HETTINGER SHANON", + "createdAt": "2022-08-23", + "completed": "2018-04-19", + "initiated": "2015-11-24", + "ministryContact": "FADEL JORDI", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -10362,14 +11216,14 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", @@ -10377,13 +11231,13 @@ "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2020-09-10", - "completed": "2020-01-02", - "initiated": "2017-06-01", - "ministryContact": "WEISSNAT CALISTA", + "createdAt": "2019-10-15", + "completed": "2014-08-21", + "initiated": "2018-08-07", + "ministryContact": "BLANDA JACKIE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -10396,19 +11250,29 @@ "role": "SUBMITTED BY", "siteRegistry": true }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2014-04-02", - "completed": "2018-05-29", - "initiated": "2020-12-28", - "ministryContact": "OBERBRUNNER OLE", + "createdAt": "2019-07-08", + "completed": "2016-01-11", + "initiated": "2018-03-04", + "ministryContact": "OSINSKI OSBORNE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -10418,23 +11282,23 @@ "notationParticipants": [ { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false + "role": "REQUESTED BY", + "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false } ], "siteRegistry": false @@ -10442,9 +11306,9 @@ ], "participants": [ { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2020-03-26", - "startDate": "2023-02-20", + "name": "AMET, DOLOR SIT", + "endDate": "2016-05-28", + "startDate": "2021-06-21", "notes": "", "roles": [ "EMPLOYEE" @@ -10453,76 +11317,115 @@ }, { "name": "IPSUM", - "endDate": "2021-09-04", - "startDate": "2019-11-02", + "endDate": "2019-08-05", + "startDate": "2019-11-22", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2022-03-16", - "startDate": "2014-02-25", - "notes": "", - "roles": [ - "EMPLOYEE" - ], "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2023-03-11", - "startDate": "2016-01-02", + "name": "AMET, DOLOR SIT", + "endDate": "2020-11-05", + "startDate": "2017-08-15", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], - "siteRegistry": true + "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2014-11-06", - "startDate": "2017-08-08", + "endDate": "2019-11-16", + "startDate": "2018-06-12", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": false + "siteRegistry": true } ], "suspectLandUses": [ + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2019-05-19 (described on Site Profile dated 2019-05-19)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2015-10-04 (described on Site Profile dated 2015-10-04)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2020-04-15 (described on Site Profile dated 2020-04-15)", + "notes": "INSERTED FOR SITE PROFILE DATED 2021-08-20 (described on Site Profile dated 2021-08-20)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-12-11 (described on Site Profile dated 2018-12-11)", + "notes": "INSERTED FOR SITE PROFILE DATED 2016-01-25 (described on Site Profile dated 2016-01-25)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2023-02-20 (described on Site Profile dated 2023-02-20)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], - "siteDisclosures": [ + "parcelDescriptions": [ + { + "siteRegistry": false, + "dateNoted": "2022-02-12", + "parcelID": "19798", + "crownLandUsePIN": "15878", + "crownLandFileNumber": "20756", + "landDescription": "LOT 5 OF LOT 2 BLOCK 1 DISTRICT LOT 2 PLAN 4063" + }, + { + "siteRegistry": true, + "dateNoted": "2017-07-29", + "parcelID": "15273", + "crownLandUsePIN": "20927", + "crownLandFileNumber": "18120", + "landDescription": "LOT 3 OF LOT 2 BLOCK 5 DISTRICT LOT 1 PLAN 7730" + }, { "siteRegistry": true, - "dateReceived": "2019-04-05", - "dateCompleted": "2023-06-08", - "dateEntered": "2019-01-30", - "dateRegistrar": "2014-05-25", - "dateLocalAuthorityReceived": "2021-02-09", - "summary": "Modi numquam perspiciatis aperiam quod.", - "informationUsed": "Temporibus fugiat quis nulla cumque sapiente in totam perferendis.\nIusto incidunt eveniet totam inventore architecto cum recusandae velit.\nVel aliquam quia repudiandae exercitationem.", - "pastOrPresentOrders": "Nulla quam qui dignissimos.", + "dateNoted": "2023-04-09", + "parcelID": "17942", + "crownLandUsePIN": "15657", + "crownLandFileNumber": "17684", + "landDescription": "LOT 4 OF LOT 4 BLOCK 3 DISTRICT LOT 1 PLAN 5732" + }, + { + "siteRegistry": false, + "dateNoted": "2016-07-28", + "parcelID": "20467", + "crownLandUsePIN": "16051", + "crownLandFileNumber": "18885", + "landDescription": "LOT 3 OF LOT 2 BLOCK 2 DISTRICT LOT 1 PLAN 9136" + } + ], + "siteDisclosures": [ + { + "siteRegistry": false, + "dateReceived": "2019-05-17", + "dateCompleted": "2015-11-02", + "dateEntered": "2023-06-18", + "dateRegistrar": "2019-05-16", + "dateLocalAuthorityReceived": "2022-08-23", + "summary": "Ea et laudantium alias ea sint totam temporibus quidem.", + "informationUsed": "Eaque reprehenderit fugit ducimus doloremque delectus voluptate ad.\nRepudiandae officiis labore sed nobis quibusdam aperiam delectus sint ipsa.\nReiciendis nulla alias inventore exercitationem magnam.\nVelit illo dolores odio laborum sed ratione repudiandae ipsam aut.\nPerspiciatis repellat nam culpa dignissimos.", + "pastOrPresentOrders": "Laudantium numquam in modi.\nInventore consectetur magnam neque beatae est ea voluptas.", "commercialAndIndustrialPurposes": [ { "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false }, { - "scheduleReference": "F1*", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, @@ -10532,148 +11435,93 @@ "siteRegistry": false }, { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false - } - ] - }, - { - "siteRegistry": true, - "dateReceived": "2018-09-11", - "dateCompleted": "2016-03-24", - "dateEntered": "2013-12-22", - "dateRegistrar": "2015-03-28", - "dateLocalAuthorityReceived": "2015-09-10", - "summary": "Dolor praesentium accusantium dolore.\nAut esse modi.\nQuam asperiores temporibus.", - "informationUsed": "Illum facere repellendus maiores occaecati corrupti modi.\nEveniet dolore id esse maiores tempora illum porro eum ipsa.\nIllo quasi nesciunt recusandae adipisci quam quae vitae consequuntur.", - "pastOrPresentOrders": "Provident temporibus at ipsam quibusdam optio saepe.\nQuo accusantium ipsa accusantium facere laborum non laboriosam velit.\nPossimus porro perferendis assumenda sapiente.", - "commercialAndIndustrialPurposes": [ - { - "scheduleReference": "F2*", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true - }, - { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true } ] } ], "activityLog": [ { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "KERTZMANN HORTENSE", - "timestamp": "2021-06-05" - }, - { - "siteRegistry": true, + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "KILBACK ANDERSON", - "timestamp": "2018-10-16" + "user": "SENGER SILAS", + "timestamp": "2016-04-26" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "ADAMS KOREY", - "timestamp": "2022-08-15" + "user": "FADEL MOSHE", + "timestamp": "2021-06-14" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "LYNCH ELVIS", - "timestamp": "2016-10-21" + "user": "JACOBSON TERENCE", + "timestamp": "2016-07-24" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "BOYLE HULDA", - "timestamp": "2022-10-18" + "user": "TORPHY MEKHI", + "timestamp": "2017-01-16" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "CONROY CATHRYN", + "timestamp": "2018-06-13" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "ORTIZ DARREL", - "timestamp": "2014-04-21" + "user": "GOODWIN CAROLINA", + "timestamp": "2015-10-24" } ], "associatedSites": [ { - "dateNoted": "2017-11-04", - "notes": "", - "parcelID": "20412", - "siteID": "18936", - "siteRegistry": false - }, - { - "dateNoted": "2017-09-03", + "dateNoted": "2021-07-04", "notes": "", - "parcelID": "16852", - "siteID": "19438", - "siteRegistry": false + "parcelID": "17867", + "siteID": "19051", + "siteRegistry": true }, { - "dateNoted": "2018-02-10", + "dateNoted": "2018-11-23", "notes": "", - "parcelID": "19965", - "siteID": "18840", + "parcelID": "16585", + "siteID": "20758", "siteRegistry": false } ] }, { - "uuid": "40714a60-fce7-4452-94b3-76349c05a3f5", - "siteID": 16303, - "address": "42139 Aliyah Spurs", - "latitude": 54.7099, - "longitude": -126.0149, - "lastUpdated": "2016-02-23", - "city": "North Kraigworth", - "region": "Cariboo", - "victoriaFile": "26250-20/13668", + "uuid": "0c2392ff-8f4f-4647-af78-20e5d061e5b9", + "siteID": 19267, + "address": "8742 Thompson Walks", + "latitude": 51.4686, + "longitude": -131.797, + "lastUpdated": "2015-06-11", + "city": "Jonesboro", + "region": "Mainland/Southwest", + "victoriaFile": "26250-20/12507", "regionalFile": "N/A", "parcelIDs": [ - 9900353, - 6040120, - 7393720, - 3890867, - 9249542 + 8129894, + 9506359, + 256410, + 6959084, + 8038275 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2017-09-13", - "completed": "2019-01-04", - "initiated": "2022-10-21", - "ministryContact": "ROMAGUERA KALI", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - } - ], - "siteRegistry": false - }, - { - "createdAt": "2016-02-04", - "completed": "2022-07-22", - "initiated": "2013-12-15", - "ministryContact": "STROMAN LYDIA", + "createdAt": "2023-05-12", + "completed": "2022-02-07", + "initiated": "2021-11-13", + "ministryContact": "WHITE VELVA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -10683,77 +11531,32 @@ "notationParticipants": [ { "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - } - ], - "siteRegistry": true - }, - { - "createdAt": "2014-06-10", - "completed": "2017-04-02", - "initiated": "2021-08-29", - "ministryContact": "O'KON BERNADINE", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true } ], "siteRegistry": false }, { - "createdAt": "2016-04-19", - "completed": "2015-09-29", - "initiated": "2014-12-05", - "ministryContact": "TREMBLAY ALEXANDREA", + "createdAt": "2022-03-10", + "completed": "2021-11-26", + "initiated": "2022-07-22", + "ministryContact": "VEUM EDMOND", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -10762,23 +11565,23 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true } ], "siteRegistry": true }, { - "createdAt": "2020-09-19", - "completed": "2020-01-04", - "initiated": "2023-01-28", - "ministryContact": "MILLER URIAH", + "createdAt": "2018-10-20", + "completed": "2018-02-15", + "initiated": "2015-12-17", + "ministryContact": "BECKER JAMAAL", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -10787,22 +11590,17 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true } @@ -10813,18 +11611,8 @@ "participants": [ { "name": "IPSUM", - "endDate": "2022-07-15", - "startDate": "2014-04-07", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2014-12-20", - "startDate": "2017-04-11", + "endDate": "2023-01-06", + "startDate": "2014-09-18", "notes": "", "roles": [ "EMPLOYEE" @@ -10833,18 +11621,18 @@ }, { "name": "AMET, DOLOR SIT", - "endDate": "2015-09-14", - "startDate": "2022-07-18", + "endDate": "2019-09-02", + "startDate": "2015-07-11", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2017-05-27", - "startDate": "2014-04-19", + "name": "IPSUM", + "endDate": "2018-01-28", + "startDate": "2022-08-01", "notes": "", "roles": [ "EMPLOYEE" @@ -10853,59 +11641,98 @@ }, { "name": "SHELL CANADA PRODUCTS", - "endDate": "2014-12-12", - "startDate": "2014-11-06", + "endDate": "2022-02-09", + "startDate": "2022-09-25", "notes": "", "roles": [ "ORGANIZATION" ], "siteRegistry": false - } - ], - "suspectLandUses": [ + }, { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-06-10 (described on Site Profile dated 2022-06-10)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2022-11-08", + "startDate": "2017-05-07", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + } + ], + "suspectLandUses": [ + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2022-12-27 (described on Site Profile dated 2022-12-27)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2015-10-26 (described on Site Profile dated 2015-10-26)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2019-08-09 (described on Site Profile dated 2019-08-09)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + } + ], + "parcelDescriptions": [ { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-08-09 (described on Site Profile dated 2018-08-09)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "dateNoted": "2022-02-22", + "parcelID": "17157", + "crownLandUsePIN": "19074", + "crownLandFileNumber": "19274", + "landDescription": "LOT 1 OF LOT 5 BLOCK 5 DISTRICT LOT 2 PLAN 5586" + }, + { + "siteRegistry": true, + "dateNoted": "2017-07-01", + "parcelID": "18002", + "crownLandUsePIN": "17140", + "crownLandFileNumber": "19786", + "landDescription": "LOT 5 OF LOT 5 BLOCK 3 DISTRICT LOT 3 PLAN 5936" }, { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2020-04-02 (described on Site Profile dated 2020-04-02)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "dateNoted": "2020-05-08", + "parcelID": "15895", + "crownLandUsePIN": "19470", + "crownLandFileNumber": "15995", + "landDescription": "LOT 4 OF LOT 4 BLOCK 2 DISTRICT LOT 2 PLAN 7907" + }, + { + "siteRegistry": false, + "dateNoted": "2019-09-29", + "parcelID": "19104", + "crownLandUsePIN": "16962", + "crownLandFileNumber": "17074", + "landDescription": "LOT 5 OF LOT 2 BLOCK 1 DISTRICT LOT 5 PLAN 6070" } ], "siteDisclosures": [ { - "siteRegistry": true, - "dateReceived": "2015-03-03", - "dateCompleted": "2018-08-29", - "dateEntered": "2014-02-12", - "dateRegistrar": "2017-11-27", - "dateLocalAuthorityReceived": "2021-05-02", - "summary": "Voluptatem adipisci ipsum deserunt quasi cumque adipisci eveniet sed.", - "informationUsed": "Tempora ut nesciunt cumque.\nVeritatis dolorum reprehenderit similique facere laboriosam.\nCumque suscipit optio repudiandae.\nReprehenderit atque cumque qui cupiditate nam neque.", - "pastOrPresentOrders": "Veritatis placeat iste.\nEos enim corporis.\nMaxime expedita omnis dolorem voluptatum amet.", + "siteRegistry": false, + "dateReceived": "2021-02-13", + "dateCompleted": "2019-04-30", + "dateEntered": "2020-08-16", + "dateRegistrar": "2019-06-18", + "dateLocalAuthorityReceived": "2020-06-12", + "summary": "Rem laboriosam dicta expedita dolorum natus libero ad necessitatibus ipsam.\nMinus id fugit excepturi velit saepe nostrum voluptatibus.\nMagni laboriosam id natus neque.", + "informationUsed": "Magnam cupiditate cupiditate necessitatibus accusantium corrupti.\nLibero nemo voluptate deserunt perferendis iusto molestiae qui itaque.\nDeleniti facilis natus.\nConsequatur atque iste explicabo perspiciatis libero.\nMinus aperiam animi neque deserunt beatae possimus aspernatur veritatis impedit.", + "pastOrPresentOrders": "Quas sequi ad culpa rem quisquam veniam necessitatibus.", "commercialAndIndustrialPurposes": [ { "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true + "siteRegistry": false }, { "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, - { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false - }, { "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", @@ -10914,145 +11741,121 @@ ] }, { - "siteRegistry": true, - "dateReceived": "2018-03-03", - "dateCompleted": "2018-02-05", - "dateEntered": "2021-08-27", - "dateRegistrar": "2019-07-12", - "dateLocalAuthorityReceived": "2021-05-24", - "summary": "Harum alias id.\nVel eos commodi odit.", - "informationUsed": "Accusamus maxime ratione praesentium quos corporis.\nQuae id quis.\nConsequuntur quidem explicabo molestias ad odio fugit perferendis.\nDicta dignissimos eaque voluptatibus.", - "pastOrPresentOrders": "Asperiores excepturi odio amet reprehenderit tenetur possimus neque.\nRem animi fugiat rem quam eligendi repudiandae ipsum laudantium voluptas.", + "siteRegistry": false, + "dateReceived": "2020-05-06", + "dateCompleted": "2015-10-20", + "dateEntered": "2022-05-24", + "dateRegistrar": "2015-10-31", + "dateLocalAuthorityReceived": "2020-08-05", + "summary": "Nemo illum veniam quos.\nEius occaecati nam corporis error quam.\nBeatae consequuntur magni ab fuga tempora a laudantium ullam.", + "informationUsed": "Architecto ullam nulla occaecati.\nSequi adipisci tenetur corrupti ad quia.\nExpedita praesentium commodi iure.\nAlias enim molestias.", + "pastOrPresentOrders": "Earum incidunt distinctio.", "commercialAndIndustrialPurposes": [ - { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true - }, { "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true + "siteRegistry": false }, { "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true + "siteRegistry": false } ] } ], "activityLog": [ - { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "BINS SEBASTIAN", - "timestamp": "2022-05-13" - }, - { - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "HALEY LOURDES", - "timestamp": "2018-08-07" - }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "KEMMER DAPHNE", - "timestamp": "2016-06-06" + "user": "NIKOLAUS TANNER", + "timestamp": "2020-01-27" }, { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "ROHAN FELIPA", - "timestamp": "2022-11-03" + "user": "BODE EDNA", + "timestamp": "2022-05-05" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "WISOZK LOURDES", - "timestamp": "2019-11-04" + "user": "FAHEY GLADYCE", + "timestamp": "2015-07-31" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "SIPES-STARK KODY", - "timestamp": "2023-06-21" + "user": "HARVEY SID", + "timestamp": "2016-03-27" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "LUEILWITZ-JERDE ALEXZANDER", - "timestamp": "2014-10-06" + "user": "ALTENWERTH CONRAD", + "timestamp": "2016-04-24" }, { - "siteRegistry": true, + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "MILLER WAINO", - "timestamp": "2020-02-19" + "user": "HIRTHE THERON", + "timestamp": "2021-11-24" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "PURDY ALAINA", - "timestamp": "2015-05-25" + "user": "FAY ANABEL", + "timestamp": "2020-01-14" }, { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "BUCKRIDGE LORA", - "timestamp": "2022-03-03" + "user": "JACOBS EMILE", + "timestamp": "2020-08-08" } ], "associatedSites": [ { - "dateNoted": "2020-05-09", - "notes": "", - "parcelID": "16534", - "siteID": "19726", - "siteRegistry": true - }, - { - "dateNoted": "2017-05-10", + "dateNoted": "2014-12-21", "notes": "", - "parcelID": "19610", - "siteID": "15592", + "parcelID": "19196", + "siteID": "19114", "siteRegistry": false }, { - "dateNoted": "2015-06-17", + "dateNoted": "2018-08-14", "notes": "", - "parcelID": "17154", - "siteID": "19478", + "parcelID": "18206", + "siteID": "18214", "siteRegistry": true } ] }, { - "uuid": "e0ff6835-6dff-4843-8afe-9247786943f2", - "siteID": 16850, - "address": "6736 Lindgren Field", - "latitude": 55.4585, - "longitude": -128.2976, - "lastUpdated": "2019-02-26", - "city": "North Niko", - "region": "Kootenay", - "victoriaFile": "26250-20/18379", + "uuid": "06262093-4ea9-49c8-bae3-4ca637916445", + "siteID": 18140, + "address": "603 Mohr Greens", + "latitude": 54.3827, + "longitude": -127.7066, + "lastUpdated": "2019-06-28", + "city": "Lake Uriahfort", + "region": "Cariboo", + "victoriaFile": "26250-20/6910", "regionalFile": "N/A", "parcelIDs": [ - 5895319, - 3661451, - 4758600, - 3288399, - 6052117 + 912233, + 8025674, + 972242, + 9523775, + 9154665 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2018-11-24", - "completed": "2018-06-22", - "initiated": "2021-06-24", - "ministryContact": "BOSCO SHANON", + "createdAt": "2018-03-19", + "completed": "2021-09-12", + "initiated": "2022-10-29", + "ministryContact": "O'KEEFE AHMED", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -11067,57 +11870,27 @@ }, { "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - } - ], - "siteRegistry": false - }, - { - "createdAt": "2016-04-08", - "completed": "2016-07-07", - "initiated": "2020-11-30", - "ministryContact": "GOLDNER REBECCA", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false } ], "siteRegistry": false }, { - "createdAt": "2018-10-08", - "completed": "2019-03-15", - "initiated": "2015-06-03", - "ministryContact": "HOWE ETHA", + "createdAt": "2015-10-19", + "completed": "2014-01-15", + "initiated": "2020-08-11", + "ministryContact": "MAGGIO DEJA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -11127,37 +11900,37 @@ "notationParticipants": [ { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2023-06-19", - "completed": "2022-12-06", - "initiated": "2020-04-14", - "ministryContact": "FEIL CESAR", + "createdAt": "2022-09-05", + "completed": "2020-02-22", + "initiated": "2015-05-24", + "ministryContact": "STANTON CICERO", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -11168,12 +11941,12 @@ { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", @@ -11181,18 +11954,18 @@ "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false } ], "siteRegistry": false }, { - "createdAt": "2013-10-31", - "completed": "2017-03-11", - "initiated": "2019-10-08", - "ministryContact": "POWLOWSKI FREDERICK", + "createdAt": "2016-06-21", + "completed": "2022-09-08", + "initiated": "2014-07-02", + "ministryContact": "O'CONNER THERESIA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -11203,37 +11976,32 @@ { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false } ], "participants": [ { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2015-04-22", - "startDate": "2014-04-10", + "name": "IPSUM", + "endDate": "2021-06-05", + "startDate": "2017-05-21", "notes": "", "roles": [ "EMPLOYEE" @@ -11242,89 +12010,80 @@ }, { "name": "AMET, DOLOR SIT", - "endDate": "2023-08-14", - "startDate": "2016-05-19", + "endDate": "2015-03-29", + "startDate": "2021-03-14", "notes": "", "roles": [ "EMPLOYEE" ], "siteRegistry": false }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2023-04-18", - "startDate": "2018-02-17", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": true - }, { "name": "SHELL CANADA PRODUCTS", - "endDate": "2022-07-03", - "startDate": "2016-08-26", + "endDate": "2022-09-06", + "startDate": "2014-06-26", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": false - }, - { - "name": "IPSUM", - "endDate": "2018-05-14", - "startDate": "2022-06-21", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": false + "siteRegistry": true } ], "suspectLandUses": [ { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-06-30 (described on Site Profile dated 2022-06-30)", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2016-11-11 (described on Site Profile dated 2016-11-11)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-11-12 (described on Site Profile dated 2015-11-12)", + "notes": "INSERTED FOR SITE PROFILE DATED 2022-03-10 (described on Site Profile dated 2022-03-10)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2020-03-19 (described on Site Profile dated 2020-03-19)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "notes": "INSERTED FOR SITE PROFILE DATED 2019-01-04 (described on Site Profile dated 2019-01-04)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + } + ], + "parcelDescriptions": [ + { + "siteRegistry": false, + "dateNoted": "2020-01-12", + "parcelID": "17927", + "crownLandUsePIN": "17054", + "crownLandFileNumber": "16694", + "landDescription": "LOT 2 OF LOT 1 BLOCK 2 DISTRICT LOT 5 PLAN 8547" }, { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-03-07 (described on Site Profile dated 2019-03-07)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "siteRegistry": false, + "dateNoted": "2014-08-20", + "parcelID": "15645", + "crownLandUsePIN": "16427", + "crownLandFileNumber": "16721", + "landDescription": "LOT 1 OF LOT 2 BLOCK 1 DISTRICT LOT 5 PLAN 9329" }, { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-05-03 (described on Site Profile dated 2015-05-03)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "dateNoted": "2015-10-11", + "parcelID": "15336", + "crownLandUsePIN": "18327", + "crownLandFileNumber": "20140", + "landDescription": "LOT 1 OF LOT 3 BLOCK 2 DISTRICT LOT 1 PLAN 4377" } ], "siteDisclosures": [ { "siteRegistry": false, - "dateReceived": "2016-07-24", - "dateCompleted": "2016-06-19", - "dateEntered": "2018-11-19", - "dateRegistrar": "2020-04-03", - "dateLocalAuthorityReceived": "2023-09-24", - "summary": "Reprehenderit illum sed tempore ducimus vitae.\nReprehenderit perferendis quam vel animi numquam est quas.", - "informationUsed": "Et laborum ullam explicabo odio quibusdam soluta facere pariatur laborum.\nExpedita nemo adipisci pariatur.\nQuas odio animi est placeat optio suscipit.", - "pastOrPresentOrders": "Reiciendis adipisci corrupti ea ad.", + "dateReceived": "2018-04-22", + "dateCompleted": "2022-07-11", + "dateEntered": "2021-08-09", + "dateRegistrar": "2016-03-31", + "dateLocalAuthorityReceived": "2017-03-30", + "summary": "A maiores ipsum.\nQuaerat perferendis eaque earum.\nNulla vero enim deserunt soluta eaque asperiores.", + "informationUsed": "Assumenda adipisci quis commodi odio est libero beatae unde.\nNumquam enim porro numquam.\nPlaceat culpa numquam quibusdam at sequi consequuntur a sit.", + "pastOrPresentOrders": "Maiores vero voluptas esse accusantium saepe.\nIn facere earum ea qui.\nA itaque libero cum rem blanditiis reiciendis aspernatur.", "commercialAndIndustrialPurposes": [ - { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false - }, { "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", @@ -11333,7 +12092,7 @@ { "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true + "siteRegistry": false }, { "scheduleReference": "F1*", @@ -11344,179 +12103,118 @@ }, { "siteRegistry": true, - "dateReceived": "2017-05-25", - "dateCompleted": "2016-03-18", - "dateEntered": "2017-05-15", - "dateRegistrar": "2021-01-02", - "dateLocalAuthorityReceived": "2023-08-13", - "summary": "Quasi amet repudiandae ad quod doloremque.\nDolorem cupiditate architecto rem cumque accusantium.\nTotam cupiditate explicabo vitae corrupti nulla molestiae nobis exercitationem exercitationem.", - "informationUsed": "Tempore maiores quia illo aspernatur dolores ducimus consectetur.\nNulla dolorem ipsum dolor quaerat culpa iure aliquam.\nA eum sapiente.\nDignissimos voluptates dolorum architecto voluptatem maiores officiis sunt.\nLibero rem corporis ipsa odit accusamus magni officiis pariatur cum.", - "pastOrPresentOrders": "Laborum expedita quo esse.", + "dateReceived": "2022-06-09", + "dateCompleted": "2014-02-02", + "dateEntered": "2014-10-11", + "dateRegistrar": "2021-03-27", + "dateLocalAuthorityReceived": "2014-02-02", + "summary": "Deserunt porro perferendis nobis ipsa labore sunt.", + "informationUsed": "Ratione nihil vel placeat officia voluptatem sequi quae.\nIllo ex sit ipsam vel temporibus aperiam magnam vitae magnam.\nEligendi consequatur magnam quae ducimus officia.\nVoluptates dolorem fugit veritatis sunt aut quis facere debitis.\nConsequuntur fuga ratione quibusdam cumque minus numquam alias eum blanditiis.", + "pastOrPresentOrders": "Quidem provident tempore nam odio a.\nOptio totam corporis atque cum aliquam quaerat adipisci.\nMinima itaque repellat accusamus eaque numquam sint nisi.", "commercialAndIndustrialPurposes": [ { "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false }, { "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false } ] } ], "activityLog": [ - { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "PAGAC FLETA", - "timestamp": "2020-12-06" - }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "LANGOSH MAEGAN", - "timestamp": "2021-04-29" + "user": "MOORE ABAGAIL", + "timestamp": "2017-05-11" }, { - "siteRegistry": true, + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "BEER DUSTIN", - "timestamp": "2023-04-12" + "user": "RYAN WILMER", + "timestamp": "2022-12-31" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "JOHNS-LITTLE BURLEY", - "timestamp": "2020-04-12" + "user": "BLANDA MEGGIE", + "timestamp": "2015-10-12" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "WUNSCH CAROLINE", - "timestamp": "2019-06-14" + "user": "DIETRICH LYLA", + "timestamp": "2014-05-16" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "CONSIDINE SYDNIE", - "timestamp": "2022-12-17" + "user": "BERGNAUM WERNER", + "timestamp": "2023-05-01" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "FRANECKI ALAYNA", - "timestamp": "2017-10-15" + "user": "RIPPIN FELICIA", + "timestamp": "2023-08-16" } ], "associatedSites": [ { - "dateNoted": "2020-09-28", + "dateNoted": "2016-09-20", "notes": "", - "parcelID": "20805", - "siteID": "15216", + "parcelID": "20303", + "siteID": "20722", "siteRegistry": false }, { - "dateNoted": "2014-02-12", + "dateNoted": "2021-12-12", "notes": "", - "parcelID": "20515", - "siteID": "20942", - "siteRegistry": true + "parcelID": "17968", + "siteID": "16778", + "siteRegistry": false } ] }, { - "uuid": "577089ff-dffc-4a81-a7ae-40da0dfb3f30", - "siteID": 19221, - "address": "23640 Schulist Parks", - "latitude": 55.1799, - "longitude": -135.682, - "lastUpdated": "2022-03-13", - "city": "Pocatello", - "region": "Mainland/Southwest", - "victoriaFile": "26250-20/18694", + "uuid": "b270e2b7-6cc5-4b70-8f32-62c1dbf9c1c4", + "siteID": 16335, + "address": "58573 Diana Place", + "latitude": 56.0779, + "longitude": -133.6162, + "lastUpdated": "2023-03-29", + "city": "Paterson", + "region": "Thompson-Okanagan", + "victoriaFile": "26250-20/2755", "regionalFile": "N/A", "parcelIDs": [ - 9311878, - 4457502, - 5335768, - 5440514, - 5888858 + 7850707, + 5429481, + 4841570, + 941431, + 7054685 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2020-07-29", - "completed": "2019-10-29", - "initiated": "2014-03-25", - "ministryContact": "MUELLER VIRGIL", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - } - ], - "siteRegistry": false - }, - { - "createdAt": "2015-01-01", - "completed": "2021-05-17", - "initiated": "2021-01-16", - "ministryContact": "STIEDEMANN ABBIGAIL", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - } - ], - "siteRegistry": false - }, - { - "createdAt": "2021-11-16", - "completed": "2022-04-19", - "initiated": "2014-01-21", - "ministryContact": "BOEHM HERSHEL", + "createdAt": "2018-09-16", + "completed": "2018-01-16", + "initiated": "2023-01-22", + "ministryContact": "WAELCHI CHYNA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -11526,16 +12224,6 @@ "notationParticipants": [ { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true }, @@ -11543,20 +12231,15 @@ "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false } ], "siteRegistry": true }, { - "createdAt": "2018-04-22", - "completed": "2021-04-04", - "initiated": "2022-10-28", - "ministryContact": "CUMMERATA ROLLIN", + "createdAt": "2019-11-29", + "completed": "2021-10-26", + "initiated": "2017-10-02", + "ministryContact": "KUHN DELLA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -11571,17 +12254,17 @@ }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true + "role": "REQUESTED BY", + "siteRegistry": false } ], "siteRegistry": false }, { - "createdAt": "2017-03-25", - "completed": "2015-01-05", - "initiated": "2014-05-31", - "ministryContact": "WILDERMAN LACY", + "createdAt": "2018-09-11", + "completed": "2015-01-03", + "initiated": "2016-05-15", + "ministryContact": "LANGWORTH STEPHANIA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -11591,17 +12274,12 @@ "notationParticipants": [ { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false + "role": "REQUESTED BY", + "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": true } ], @@ -11609,30 +12287,20 @@ } ], "participants": [ - { - "name": "IPSUM", - "endDate": "2020-06-28", - "startDate": "2019-12-30", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": true - }, { "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2021-11-22", - "startDate": "2017-02-11", + "endDate": "2021-02-09", + "startDate": "2015-05-05", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": true + "siteRegistry": false }, { - "name": "AMET, DOLOR SIT", - "endDate": "2014-06-17", - "startDate": "2016-02-29", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2015-09-25", + "startDate": "2020-02-05", "notes": "", "roles": [ "EMPLOYEE" @@ -11640,9 +12308,9 @@ "siteRegistry": false }, { - "name": "AMET, DOLOR SIT", - "endDate": "2021-02-28", - "startDate": "2016-01-15", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2019-08-14", + "startDate": "2014-11-25", "notes": "", "roles": [ "ORGANIZATION" @@ -11650,54 +12318,62 @@ "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2018-11-23", - "startDate": "2021-04-14", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2018-06-17", + "startDate": "2019-04-09", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": false + "siteRegistry": true } ], "suspectLandUses": [ - { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-02-04 (described on Site Profile dated 2015-02-04)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" - }, { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-11-16 (described on Site Profile dated 2018-11-16)", + "notes": "INSERTED FOR SITE PROFILE DATED 2016-11-21 (described on Site Profile dated 2016-11-21)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2023-09-19 (described on Site Profile dated 2023-09-19)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "notes": "INSERTED FOR SITE PROFILE DATED 2023-02-10 (described on Site Profile dated 2023-02-10)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-01-27 (described on Site Profile dated 2016-01-27)", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2015-06-07 (described on Site Profile dated 2015-06-07)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + } + ], + "parcelDescriptions": [ + { + "siteRegistry": true, + "dateNoted": "2018-03-08", + "parcelID": "15967", + "crownLandUsePIN": "16650", + "crownLandFileNumber": "18407", + "landDescription": "LOT 2 OF LOT 5 BLOCK 3 DISTRICT LOT 2 PLAN 7183" }, { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-08-04 (described on Site Profile dated 2021-08-04)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "dateNoted": "2020-03-01", + "parcelID": "18705", + "crownLandUsePIN": "17418", + "crownLandFileNumber": "18002", + "landDescription": "LOT 5 OF LOT 3 BLOCK 4 DISTRICT LOT 2 PLAN 7370" } ], "siteDisclosures": [ { "siteRegistry": false, - "dateReceived": "2015-01-01", - "dateCompleted": "2018-10-16", - "dateEntered": "2016-06-25", - "dateRegistrar": "2020-11-16", - "dateLocalAuthorityReceived": "2016-11-17", - "summary": "Enim voluptatum voluptatum temporibus magni minima.", - "informationUsed": "Aliquam laudantium quod tempora laudantium.\nConsequuntur ut voluptas soluta repudiandae eum autem vitae.\nEst tempore quia error quasi vel numquam.\nMolestias totam odit sunt quidem excepturi sunt.", - "pastOrPresentOrders": "Amet error rerum quos maiores quod inventore.", + "dateReceived": "2016-09-20", + "dateCompleted": "2019-02-18", + "dateEntered": "2014-02-04", + "dateRegistrar": "2016-03-19", + "dateLocalAuthorityReceived": "2014-07-28", + "summary": "Iste maiores exercitationem repellat fuga sequi.\nQuam nemo ad odio debitis earum dicta.\nMolestiae reprehenderit deserunt fugiat praesentium temporibus earum.", + "informationUsed": "Cumque dicta architecto ab tenetur eius placeat.\nIpsa aliquid quasi a earum ipsa consequuntur commodi at.\nVero quis reiciendis nesciunt cupiditate maxime eveniet fugiat quae doloribus.", + "pastOrPresentOrders": "Voluptatibus nemo optio maxime velit expedita aliquam recusandae.", "commercialAndIndustrialPurposes": [ { "scheduleReference": "F2*", @@ -11705,114 +12381,139 @@ "siteRegistry": false }, { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true + "siteRegistry": false } ] }, { "siteRegistry": true, - "dateReceived": "2019-07-01", - "dateCompleted": "2016-02-06", - "dateEntered": "2014-01-21", - "dateRegistrar": "2015-07-05", - "dateLocalAuthorityReceived": "2017-03-19", - "summary": "Iusto sunt placeat possimus quaerat numquam consequuntur officiis enim facilis.\nSed nobis nisi culpa.", - "informationUsed": "Cumque culpa esse voluptatibus fuga alias ducimus iusto.\nIn aliquam laudantium at expedita laudantium magnam quam doloribus.\nQuidem quam quos ipsum dolore animi voluptatum saepe.\nVoluptate praesentium beatae voluptatum voluptatem earum.", - "pastOrPresentOrders": "Repudiandae dolor nostrum possimus nostrum non esse.\nOptio natus dignissimos consequatur eligendi aperiam quam voluptatem inventore.\nMaiores tempore tempora repellat minima placeat quaerat ullam quod corporis.", + "dateReceived": "2018-10-06", + "dateCompleted": "2017-02-11", + "dateEntered": "2022-05-07", + "dateRegistrar": "2014-09-19", + "dateLocalAuthorityReceived": "2018-06-24", + "summary": "Voluptatem deserunt ducimus voluptatum atque eius.\nEnim sunt voluptatibus molestiae quis ducimus blanditiis illum dolorum laboriosam.", + "informationUsed": "Reiciendis ad at tenetur assumenda aliquid modi quasi.\nBeatae aliquam beatae.\nTempora fugiat rerum nostrum.\nPorro alias adipisci laudantium neque mollitia.\nAperiam harum amet.", + "pastOrPresentOrders": "Necessitatibus illum beatae ipsum odit minima explicabo quisquam omnis vitae.\nNobis quaerat veritatis saepe deserunt.", "commercialAndIndustrialPurposes": [ { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true }, { - "scheduleReference": "F2*", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false + "siteRegistry": true } ] } ], "activityLog": [ { - "siteRegistry": true, + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "ORN DANNIE", - "timestamp": "2023-06-29" + "user": "BOGAN NOVELLA", + "timestamp": "2014-12-13" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "CRIST MARCIA", - "timestamp": "2022-08-25" + "user": "DACH RYLEE", + "timestamp": "2014-08-03" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "LUBOWITZ ANNAMAE", - "timestamp": "2021-11-25" + "user": "YUNDT LIA", + "timestamp": "2018-09-09" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "TREUTEL ELADIO", - "timestamp": "2015-12-08" + "user": "KUB MAYE", + "timestamp": "2016-03-19" }, { - "siteRegistry": true, + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "CHRISTIANSEN PAIGE", - "timestamp": "2018-10-16" + "user": "HAAG-HOMENICK LOWELL", + "timestamp": "2016-08-21" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "BAHRINGER JAYLAN", - "timestamp": "2022-12-21" + "user": "HELLER EFREN", + "timestamp": "2020-04-24" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "BEAHAN CHRISTINA", + "timestamp": "2021-05-04" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "BAHRINGER MAFALDA", + "timestamp": "2019-03-29" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "KUVALIS SHANA", + "timestamp": "2023-03-13" } ], "associatedSites": [ { - "dateNoted": "2019-09-27", + "dateNoted": "2016-02-09", "notes": "", - "parcelID": "15700", - "siteID": "20782", - "siteRegistry": false + "parcelID": "15680", + "siteID": "20492", + "siteRegistry": true + }, + { + "dateNoted": "2016-10-12", + "notes": "", + "parcelID": "17698", + "siteID": "17329", + "siteRegistry": true } ] }, { - "uuid": "363399f3-9091-447b-ad84-0f767ea0791b", - "siteID": 17846, - "address": "782 Stehr Path", - "latitude": 56.14, - "longitude": -131.5652, - "lastUpdated": "2016-11-07", - "city": "Priceville", - "region": "Vancouver Island/Coast", - "victoriaFile": "26250-20/10433", + "uuid": "61f64713-7f63-439a-9416-43cf8abde9f2", + "siteID": 20591, + "address": "64611 Harris Estate", + "latitude": 50.4324, + "longitude": -124.5583, + "lastUpdated": "2015-10-02", + "city": "West Eleonore", + "region": "Mainland/Southwest", + "victoriaFile": "26250-20/12042", "regionalFile": "N/A", "parcelIDs": [ - 2320566, - 4937275, - 1762629, - 3667010, - 3356215 + 1292850, + 6729834, + 2050411, + 1393984, + 5056169 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2015-12-16", - "completed": "2023-04-04", - "initiated": "2014-08-22", - "ministryContact": "O'REILLY SHANIE", + "createdAt": "2020-08-15", + "completed": "2021-12-05", + "initiated": "2023-09-30", + "ministryContact": "DAUGHERTY URSULA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -11821,39 +12522,19 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false - } - ], - "siteRegistry": true - }, - { - "createdAt": "2023-06-02", - "completed": "2017-12-29", - "initiated": "2020-12-28", - "ministryContact": "LANG ALEXA", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", @@ -11864,10 +12545,10 @@ "siteRegistry": true }, { - "createdAt": "2019-02-28", - "completed": "2017-11-28", - "initiated": "2021-04-26", - "ministryContact": "CONNELLY OTTILIE", + "createdAt": "2021-04-25", + "completed": "2020-08-21", + "initiated": "2021-07-16", + "ministryContact": "AUER CHARLEY", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -11878,36 +12559,31 @@ { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2018-01-12", - "completed": "2021-03-14", - "initiated": "2016-10-27", - "ministryContact": "HUDSON CHAIM", + "createdAt": "2022-04-06", + "completed": "2016-06-18", + "initiated": "2015-08-28", + "ministryContact": "KUNDE ALBERTA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -11918,26 +12594,31 @@ { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2022-05-22", - "completed": "2022-02-12", - "initiated": "2020-09-01", - "ministryContact": "BAHRINGER FAVIAN", + "createdAt": "2023-01-04", + "completed": "2019-04-04", + "initiated": "2022-12-17", + "ministryContact": "BECKER JEANNE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -11948,55 +12629,45 @@ { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true } ], "participants": [ { "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2014-08-17", - "startDate": "2019-09-15", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": true - }, - { - "name": "AMET, DOLOR SIT", - "endDate": "2013-12-07", - "startDate": "2021-07-07", + "endDate": "2022-08-20", + "startDate": "2023-08-25", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2019-08-02", - "startDate": "2022-08-04", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2023-09-07", + "startDate": "2019-08-18", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], - "siteRegistry": true + "siteRegistry": false }, { - "name": "AMET, DOLOR SIT", - "endDate": "2022-11-29", - "startDate": "2020-08-26", + "name": "IPSUM", + "endDate": "2019-11-01", + "startDate": "2020-09-13", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": true } @@ -12004,161 +12675,141 @@ "suspectLandUses": [ { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-04-13 (described on Site Profile dated 2014-04-13)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "notes": "INSERTED FOR SITE PROFILE DATED 2023-02-27 (described on Site Profile dated 2023-02-27)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-10-16 (described on Site Profile dated 2019-10-16)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2014-04-22 (described on Site Profile dated 2014-04-22)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-09-12 (described on Site Profile dated 2014-09-12)", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2018-11-03 (described on Site Profile dated 2018-11-03)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + } + ], + "parcelDescriptions": [ + { + "siteRegistry": true, + "dateNoted": "2015-03-24", + "parcelID": "17643", + "crownLandUsePIN": "17162", + "crownLandFileNumber": "18056", + "landDescription": "LOT 4 OF LOT 5 BLOCK 5 DISTRICT LOT 5 PLAN 9428" }, { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-09-01 (described on Site Profile dated 2021-09-01)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "dateNoted": "2016-08-01", + "parcelID": "19406", + "crownLandUsePIN": "16068", + "crownLandFileNumber": "15240", + "landDescription": "LOT 1 OF LOT 3 BLOCK 5 DISTRICT LOT 2 PLAN 8217" } ], "siteDisclosures": [ { "siteRegistry": false, - "dateReceived": "2019-05-29", - "dateCompleted": "2014-10-27", - "dateEntered": "2018-01-18", - "dateRegistrar": "2016-03-02", - "dateLocalAuthorityReceived": "2013-10-23", - "summary": "Itaque quaerat alias.\nVelit rem perferendis.", - "informationUsed": "Adipisci voluptas voluptas ipsa delectus.\nFacere unde sint eveniet eum error rerum.\nRepudiandae laborum soluta quibusdam modi expedita.", - "pastOrPresentOrders": "Totam facilis voluptate ipsum exercitationem iste error labore.\nOptio officiis enim dolorum excepturi consectetur.", + "dateReceived": "2014-02-11", + "dateCompleted": "2019-12-22", + "dateEntered": "2020-01-24", + "dateRegistrar": "2015-01-14", + "dateLocalAuthorityReceived": "2019-09-11", + "summary": "Omnis quis reiciendis praesentium magnam at.", + "informationUsed": "Ducimus labore nemo enim perspiciatis quam est esse ea.\nDolores accusantium quis corrupti numquam minus.\nFacere possimus corporis veritatis totam neque.\nPossimus unde adipisci dolor fugiat molestias numquam rerum quas impedit.\nReprehenderit ullam exercitationem voluptatem.", + "pastOrPresentOrders": "Corrupti doloremque dicta.\nNumquam eligendi saepe dolores ipsam.\nPariatur est error consectetur omnis.", "commercialAndIndustrialPurposes": [ { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true } ] } ], "activityLog": [ - { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "DICKI LEXI", - "timestamp": "2015-10-04" - }, - { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "MILLER SANTINO", - "timestamp": "2023-06-01" - }, - { - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "LABADIE CHADRICK", - "timestamp": "2016-09-26" - }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "LITTEL ISOM", - "timestamp": "2020-03-25" + "user": "CONN SID", + "timestamp": "2016-09-01" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "FAY NASIR", - "timestamp": "2020-02-18" + "user": "MRAZ CASIMIR", + "timestamp": "2022-03-08" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "KUNZE KAREN", - "timestamp": "2020-02-17" + "user": "O'HARA DARBY", + "timestamp": "2020-04-03" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "SHANAHAN-VON MYRTIS", - "timestamp": "2023-04-30" + "user": "HEATHCOTE TREVA", + "timestamp": "2021-11-25" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "BATZ RHETT", - "timestamp": "2022-07-13" - }, - { - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "BERNIER DAVION", - "timestamp": "2014-03-30" + "user": "BOSCO HERTA", + "timestamp": "2014-12-09" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "NITZSCHE AMELIA", - "timestamp": "2018-05-26" + "user": "KRIS KANE", + "timestamp": "2020-05-16" } ], "associatedSites": [ { - "dateNoted": "2014-06-15", - "notes": "", - "parcelID": "19190", - "siteID": "20230", - "siteRegistry": false - }, - { - "dateNoted": "2016-03-01", - "notes": "", - "parcelID": "18656", - "siteID": "20329", - "siteRegistry": false - }, - { - "dateNoted": "2021-03-08", + "dateNoted": "2015-01-13", "notes": "", - "parcelID": "15715", - "siteID": "18201", + "parcelID": "16583", + "siteID": "19608", "siteRegistry": true } ] }, { - "uuid": "89341b8a-c430-47ac-8648-7870e7cbe8a1", - "siteID": 18188, - "address": "16971 Nicolas Gardens", - "latitude": 56.794, - "longitude": -121.1345, - "lastUpdated": "2020-09-28", - "city": "Lake Clevehaven", - "region": "Vancouver Island/Coast", - "victoriaFile": "26250-20/4235", + "uuid": "84100582-1f1a-47e2-b17e-f40a279ea37f", + "siteID": 16513, + "address": "81393 Winfield Views", + "latitude": 48.6398, + "longitude": -137.2137, + "lastUpdated": "2022-04-30", + "city": "South Quinten", + "region": " North Coast", + "victoriaFile": "26250-20/3080", "regionalFile": "N/A", "parcelIDs": [ - 7876272, - 4727229, - 6825023, - 4646713, - 4639961 + 7886020, + 8958791, + 1349024, + 4620953, + 7201295 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2016-03-06", - "completed": "2020-03-12", - "initiated": "2019-07-01", - "ministryContact": "ULLRICH EMMANUEL", + "createdAt": "2014-04-19", + "completed": "2020-02-24", + "initiated": "2017-12-13", + "ministryContact": "ZIEME JEFF", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -12167,33 +12818,88 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "createdAt": "2019-09-06", + "completed": "2021-12-17", + "initiated": "2022-02-10", + "ministryContact": "ZIEME BENEDICT", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": false }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "createdAt": "2015-11-22", + "completed": "2020-08-17", + "initiated": "2022-11-08", + "ministryContact": "LEMKE ELTA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true } ], "siteRegistry": true }, { - "createdAt": "2016-07-31", - "completed": "2013-12-01", - "initiated": "2015-03-20", - "ministryContact": "PADBERG CESAR", + "createdAt": "2019-09-04", + "completed": "2020-01-27", + "initiated": "2019-04-28", + "ministryContact": "FERRY CLINT", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -12202,39 +12908,49 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false } ], "participants": [ { - "name": "AMET, DOLOR SIT", - "endDate": "2014-06-13", - "startDate": "2015-01-12", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2022-04-23", + "startDate": "2018-06-04", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], - "siteRegistry": true + "siteRegistry": false }, { - "name": "AMET, DOLOR SIT", - "endDate": "2020-10-03", - "startDate": "2021-10-26", + "name": "IPSUM", + "endDate": "2014-11-14", + "startDate": "2019-07-11", "notes": "", "roles": [ "ORGANIZATION" @@ -12243,18 +12959,18 @@ }, { "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2015-02-10", - "startDate": "2018-10-11", + "endDate": "2022-03-05", + "startDate": "2019-11-21", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2014-08-17", - "startDate": "2017-04-24", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2021-04-01", + "startDate": "2016-02-15", "notes": "", "roles": [ "ORGANIZATION" @@ -12262,62 +12978,108 @@ "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2016-11-28", - "startDate": "2021-02-26", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2022-09-26", + "startDate": "2019-04-21", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true } ], "suspectLandUses": [ - { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2013-12-01 (described on Site Profile dated 2013-12-01)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" - }, { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-11-08 (described on Site Profile dated 2017-11-08)", + "notes": "INSERTED FOR SITE PROFILE DATED 2020-11-27 (described on Site Profile dated 2020-11-27)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-04-20 (described on Site Profile dated 2019-04-20)", + "notes": "INSERTED FOR SITE PROFILE DATED 2017-11-04 (described on Site Profile dated 2017-11-04)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2018-11-05 (described on Site Profile dated 2018-11-05)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-09-24 (described on Site Profile dated 2022-09-24)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "notes": "INSERTED FOR SITE PROFILE DATED 2021-11-19 (described on Site Profile dated 2021-11-19)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + } + ], + "parcelDescriptions": [ + { + "siteRegistry": false, + "dateNoted": "2015-02-21", + "parcelID": "15245", + "crownLandUsePIN": "16886", + "crownLandFileNumber": "18740", + "landDescription": "LOT 4 OF LOT 2 BLOCK 1 DISTRICT LOT 5 PLAN 5039" }, { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-09-25 (described on Site Profile dated 2018-09-25)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "dateNoted": "2016-11-15", + "parcelID": "18417", + "crownLandUsePIN": "16428", + "crownLandFileNumber": "17374", + "landDescription": "LOT 3 OF LOT 1 BLOCK 4 DISTRICT LOT 1 PLAN 4541" } ], "siteDisclosures": [ { "siteRegistry": true, - "dateReceived": "2023-01-05", - "dateCompleted": "2017-04-21", - "dateEntered": "2014-07-10", - "dateRegistrar": "2023-01-24", - "dateLocalAuthorityReceived": "2023-06-15", - "summary": "Exercitationem optio nobis deleniti explicabo quam sapiente at nobis magni.\nPariatur ab cupiditate libero.", - "informationUsed": "Veniam quasi ut ratione enim maiores optio.\nAsperiores rerum ipsam quis.\nEsse beatae accusamus incidunt natus nulla adipisci.", - "pastOrPresentOrders": "Eum mollitia dolorem.\nTotam occaecati maiores sed possimus aspernatur maxime.\nQuam cum quaerat quam sunt.", + "dateReceived": "2015-01-18", + "dateCompleted": "2022-06-19", + "dateEntered": "2016-08-19", + "dateRegistrar": "2019-09-11", + "dateLocalAuthorityReceived": "2022-01-25", + "summary": "Explicabo neque sunt.", + "informationUsed": "Nostrum corrupti labore sunt soluta assumenda facere dolorem quod recusandae.\nPerspiciatis dolor officiis commodi fugiat illo modi voluptatibus sapiente.\nDolorum numquam omnis reiciendis pariatur.", + "pastOrPresentOrders": "Pariatur voluptatem amet fugiat.\nQuae veniam rem esse dolores quos rerum velit iusto.", "commercialAndIndustrialPurposes": [ { "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + } + ] + }, + { + "siteRegistry": true, + "dateReceived": "2022-01-22", + "dateCompleted": "2021-04-04", + "dateEntered": "2014-10-31", + "dateRegistrar": "2015-05-26", + "dateLocalAuthorityReceived": "2021-05-20", + "summary": "Quidem vitae eveniet mollitia distinctio dolorem consequuntur accusamus sed explicabo.\nVitae sed non quis iusto impedit omnis earum ab quibusdam.", + "informationUsed": "Nulla et id praesentium magni repellendus in repellat est.\nOptio alias quam et numquam.\nMagnam perspiciatis fugit corrupti a consequuntur magnam doloremque itaque pariatur.", + "pastOrPresentOrders": "Perspiciatis ad ipsa.\nReiciendis adipisci placeat molestiae reprehenderit rerum laborum iure molestiae ratione.\nNostrum error voluptatibus nulla tenetur laborum.", + "commercialAndIndustrialPurposes": [ { "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false } @@ -12325,79 +13087,104 @@ } ], "activityLog": [ + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "PACOCHA KELLY", + "timestamp": "2020-01-13" + }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "MCLAUGHLIN SIBYL", - "timestamp": "2023-07-23" + "user": "WEHNER-PFANNERSTILL FRANCESCA", + "timestamp": "2015-07-03" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "JAKUBOWSKI CASEY", - "timestamp": "2019-09-04" + "user": "DICKENS KESHAWN", + "timestamp": "2016-04-22" }, { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "STEUBER CORNELL", - "timestamp": "2018-07-10" + "user": "HERMANN KEIRA", + "timestamp": "2020-12-22" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "HAMILL CAMDEN", - "timestamp": "2020-02-05" + "user": "DUBUQUE LOWELL", + "timestamp": "2019-03-25" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "HARTMANN YASMINE", + "timestamp": "2016-08-10" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "BREKKE JALEN", + "timestamp": "2020-03-07" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "JACOBS DARBY", - "timestamp": "2020-06-23" + "user": "ZULAUF JAYLAN", + "timestamp": "2021-11-27" } ], "associatedSites": [ { - "dateNoted": "2013-12-05", + "dateNoted": "2019-02-21", "notes": "", - "parcelID": "15988", - "siteID": "15592", + "parcelID": "20780", + "siteID": "20787", "siteRegistry": false }, { - "dateNoted": "2020-04-19", + "dateNoted": "2020-11-29", "notes": "", - "parcelID": "16175", - "siteID": "17036", + "parcelID": "18073", + "siteID": "15789", + "siteRegistry": false + }, + { + "dateNoted": "2017-06-25", + "notes": "", + "parcelID": "20748", + "siteID": "19391", "siteRegistry": false } ] }, { - "uuid": "865bb62c-1cde-4d98-90e8-05e31d164089", - "siteID": 15889, - "address": "57267 Priscilla Rapid", - "latitude": 53.3338, - "longitude": -138.2796, - "lastUpdated": "2016-07-19", - "city": "West Saigeview", - "region": "Kootenay", - "victoriaFile": "26250-20/4118", + "uuid": "1604052f-98ec-41d1-b85c-d3814dd34a7d", + "siteID": 18405, + "address": "50585 Cleta Harbor", + "latitude": 54.8612, + "longitude": -128.4793, + "lastUpdated": "2013-12-02", + "city": "Hayleyport", + "region": "Mainland/Southwest", + "victoriaFile": "26250-20/10633", "regionalFile": "N/A", "parcelIDs": [ - 182595, - 4709001, - 844201, - 3117672, - 5289727 + 6016161, + 5172104, + 9197841, + 2925991, + 5645194 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2020-05-29", - "completed": "2023-05-18", - "initiated": "2018-07-11", - "ministryContact": "ERDMAN ERA", + "createdAt": "2023-07-31", + "completed": "2015-05-10", + "initiated": "2019-12-25", + "ministryContact": "BOSCO-KERLUKE MARIBEL", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -12406,38 +13193,23 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2016-02-05", - "completed": "2021-03-21", - "initiated": "2014-08-31", - "ministryContact": "KONOPELSKI DEON", + "createdAt": "2015-04-07", + "completed": "2020-01-21", + "initiated": "2019-06-12", + "ministryContact": "LEHNER CONRAD", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -12452,68 +13224,18 @@ }, { "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - } - ], - "siteRegistry": true - }, - { - "createdAt": "2020-09-14", - "completed": "2019-09-14", - "initiated": "2016-11-15", - "ministryContact": "RUNTE DESHAWN", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false } ], "participants": [ { "name": "AMET, DOLOR SIT", - "endDate": "2016-02-03", - "startDate": "2022-02-24", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": true - }, - { - "name": "IPSUM", - "endDate": "2022-01-03", - "startDate": "2016-09-12", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": true - }, - { - "name": "IPSUM", - "endDate": "2015-12-14", - "startDate": "2016-06-18", + "endDate": "2021-11-22", + "startDate": "2016-05-11", "notes": "", "roles": [ "EMPLOYEE" @@ -12521,98 +13243,97 @@ "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2022-03-30", - "startDate": "2016-02-08", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2022-12-02", + "startDate": "2014-09-01", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": false } ], "suspectLandUses": [ { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-12-11 (described on Site Profile dated 2015-12-11)", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2016-07-16 (described on Site Profile dated 2016-07-16)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2016-03-28 (described on Site Profile dated 2016-03-28)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2020-06-18 (described on Site Profile dated 2020-06-18)", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2018-07-28 (described on Site Profile dated 2018-07-28)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-12-15 (described on Site Profile dated 2021-12-15)", + "notes": "INSERTED FOR SITE PROFILE DATED 2018-08-09 (described on Site Profile dated 2018-08-09)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + } + ], + "parcelDescriptions": [ + { + "siteRegistry": false, + "dateNoted": "2018-06-18", + "parcelID": "15580", + "crownLandUsePIN": "16948", + "crownLandFileNumber": "15194", + "landDescription": "LOT 1 OF LOT 1 BLOCK 2 DISTRICT LOT 1 PLAN 8456" }, { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2023-01-01 (described on Site Profile dated 2023-01-01)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "dateNoted": "2015-10-24", + "parcelID": "16333", + "crownLandUsePIN": "17233", + "crownLandFileNumber": "20670", + "landDescription": "LOT 3 OF LOT 1 BLOCK 5 DISTRICT LOT 1 PLAN 6224" + }, + { + "siteRegistry": true, + "dateNoted": "2020-07-31", + "parcelID": "16918", + "crownLandUsePIN": "17738", + "crownLandFileNumber": "17099", + "landDescription": "LOT 2 OF LOT 2 BLOCK 1 DISTRICT LOT 4 PLAN 7401" + }, + { + "siteRegistry": true, + "dateNoted": "2015-01-22", + "parcelID": "16158", + "crownLandUsePIN": "20658", + "crownLandFileNumber": "18551", + "landDescription": "LOT 1 OF LOT 1 BLOCK 5 DISTRICT LOT 5 PLAN 5734" }, { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-10-05 (described on Site Profile dated 2018-10-05)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "dateNoted": "2017-04-09", + "parcelID": "20668", + "crownLandUsePIN": "15757", + "crownLandFileNumber": "17567", + "landDescription": "LOT 5 OF LOT 3 BLOCK 1 DISTRICT LOT 1 PLAN 8705" } ], "siteDisclosures": [ { "siteRegistry": true, - "dateReceived": "2022-08-13", - "dateCompleted": "2017-08-28", - "dateEntered": "2016-07-12", - "dateRegistrar": "2018-08-10", - "dateLocalAuthorityReceived": "2017-08-09", - "summary": "Harum reprehenderit aperiam atque voluptas eaque repellat similique.", - "informationUsed": "Nisi voluptates rem asperiores.\nOmnis fugiat hic ratione reprehenderit aperiam minima quam facilis.\nDignissimos explicabo ut quibusdam veniam sit.", - "pastOrPresentOrders": "Officia in illo voluptate.\nNihil nostrum voluptas.\nMolestiae consectetur enim laudantium accusamus eos totam sapiente aspernatur et.", + "dateReceived": "2023-03-16", + "dateCompleted": "2018-05-19", + "dateEntered": "2014-09-21", + "dateRegistrar": "2021-02-04", + "dateLocalAuthorityReceived": "2020-10-31", + "summary": "Minima temporibus neque delectus occaecati deleniti debitis minus omnis consequatur.", + "informationUsed": "Quia minima nulla quam fugit beatae vel.\nAnimi explicabo nisi numquam.\nAspernatur labore earum eos quod vel repellendus accusamus fuga.\nSoluta cum dolor iusto modi nesciunt distinctio porro illo.", + "pastOrPresentOrders": "Blanditiis incidunt eaque cum reprehenderit qui.\nQuae sed corporis saepe nihil ratione numquam pariatur nam.\nSit incidunt est veniam ratione.", "commercialAndIndustrialPurposes": [ { "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, - { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true - }, - { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true - }, - { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true - } - ] - }, - { - "siteRegistry": true, - "dateReceived": "2023-04-29", - "dateCompleted": "2019-04-26", - "dateEntered": "2014-01-19", - "dateRegistrar": "2017-08-11", - "dateLocalAuthorityReceived": "2021-08-01", - "summary": "Officiis dicta earum veniam dolores in inventore vitae ea alias.\nIncidunt ratione commodi minus est aperiam exercitationem.\nMollitia culpa aliquam.", - "informationUsed": "Repellat earum at veniam quasi.\nDebitis molestiae possimus dolore.\nExcepturi laudantium recusandae harum.", - "pastOrPresentOrders": "Sunt sunt nostrum dolore quo error.\nProvident excepturi labore sunt ducimus pariatur doloribus natus.", - "commercialAndIndustrialPurposes": [ - { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true - }, - { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false - }, { "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", @@ -12620,7 +13341,7 @@ }, { "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true } ] @@ -12630,100 +13351,94 @@ { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "GLEASON CELESTINE", - "timestamp": "2020-11-16" + "user": "RUNOLFSDOTTIR ROSIE", + "timestamp": "2013-10-29" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "GERHOLD DEMARCUS", - "timestamp": "2019-03-28" - }, - { - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "HAND CIERRA", - "timestamp": "2022-11-27" + "user": "EMMERICH KAREEM", + "timestamp": "2020-04-05" }, { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "EMARD GINO", - "timestamp": "2017-05-19" + "user": "YOST ALYCE", + "timestamp": "2016-09-05" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "HAMMES IVAH", - "timestamp": "2020-11-25" + "user": "WISOZK ANTONINA", + "timestamp": "2021-12-01" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "LYNCH CLETA", - "timestamp": "2021-06-20" + "user": "RICE NOEMIE", + "timestamp": "2019-12-25" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "SIPES SHEA", - "timestamp": "2016-02-20" + "user": "HUEL CORBIN", + "timestamp": "2019-05-24" }, { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "SWANIAWSKI JEANETTE", - "timestamp": "2022-05-04" + "user": "HALVORSON TOY", + "timestamp": "2020-09-06" }, { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "HAMMES SUSAN", - "timestamp": "2018-05-28" + "user": "BLANDA JAYDON", + "timestamp": "2014-03-22" } ], "associatedSites": [ { - "dateNoted": "2019-04-14", + "dateNoted": "2019-05-21", "notes": "", - "parcelID": "16001", - "siteID": "20762", + "parcelID": "20791", + "siteID": "15681", "siteRegistry": false }, { - "dateNoted": "2017-06-21", + "dateNoted": "2021-03-07", "notes": "", - "parcelID": "18855", - "siteID": "17809", + "parcelID": "19191", + "siteID": "15837", "siteRegistry": true } ] }, { - "uuid": "e4748d2f-f15a-47f5-bd4d-fcbe65dfbfcd", - "siteID": 18995, - "address": "43265 Lehner Avenue", - "latitude": 50.2033, - "longitude": -124.974, - "lastUpdated": "2021-12-31", - "city": "South Johnathan", - "region": "Kootenay", - "victoriaFile": "26250-20/4078", + "uuid": "b602b457-e431-49b8-84e7-ad2a44233882", + "siteID": 16677, + "address": "22334 Micheal Oval", + "latitude": 57.9209, + "longitude": -134.4915, + "lastUpdated": "2021-10-11", + "city": "Lilybury", + "region": "Thompson-Okanagan", + "victoriaFile": "26250-20/1433", "regionalFile": "N/A", "parcelIDs": [ - 4057286, - 5654777, - 1448657, - 863402, - 8996501 + 2965724, + 5140652, + 6907292, + 5601938, + 4740447 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2023-10-02", - "completed": "2013-10-19", - "initiated": "2022-10-15", - "ministryContact": "HETTINGER VALERIE", + "createdAt": "2017-01-12", + "completed": "2014-10-01", + "initiated": "2017-11-24", + "ministryContact": "BOTSFORD CORDELL", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -12732,53 +13447,28 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true - } - ], - "siteRegistry": false - }, - { - "createdAt": "2018-09-27", - "completed": "2019-03-08", - "initiated": "2023-05-01", - "ministryContact": "OLSON AIYANA", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ + }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false } ], "siteRegistry": true }, { - "createdAt": "2015-06-25", - "completed": "2021-04-07", - "initiated": "2015-06-21", - "ministryContact": "FRAMI BROOK", + "createdAt": "2016-06-03", + "completed": "2021-08-26", + "initiated": "2019-06-04", + "ministryContact": "VEUM STEPHEN", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -12788,11 +13478,11 @@ "notationParticipants": [ { "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true }, @@ -12804,21 +13494,16 @@ { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2020-02-07", - "completed": "2023-03-20", - "initiated": "2018-10-04", - "ministryContact": "NITZSCHE BEATRICE", + "createdAt": "2023-01-18", + "completed": "2022-02-11", + "initiated": "2021-06-12", + "ministryContact": "SCHULIST TATYANA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -12828,13 +13513,8 @@ "notationParticipants": [ { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", @@ -12843,44 +13523,9 @@ }, { "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - } - ], - "siteRegistry": false - }, - { - "createdAt": "2019-04-20", - "completed": "2015-04-12", - "initiated": "2015-04-01", - "ministryContact": "RICE VERNICE", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", @@ -12891,50 +13536,20 @@ } ], "participants": [ - { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2015-09-05", - "startDate": "2015-06-01", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": true - }, { "name": "AMET, DOLOR SIT", - "endDate": "2023-10-07", - "startDate": "2022-08-10", + "endDate": "2021-06-28", + "startDate": "2014-10-07", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": false }, { "name": "AMET, DOLOR SIT", - "endDate": "2018-11-20", - "startDate": "2020-11-29", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2013-11-02", - "startDate": "2018-04-14", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": true - }, - { - "name": "AMET, DOLOR SIT", - "endDate": "2023-05-20", - "startDate": "2014-01-22", + "endDate": "2014-04-26", + "startDate": "2016-06-04", "notes": "", "roles": [ "EMPLOYEE" @@ -12945,168 +13560,194 @@ "suspectLandUses": [ { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-04-11 (described on Site Profile dated 2021-04-11)", + "notes": "INSERTED FOR SITE PROFILE DATED 2017-04-15 (described on Site Profile dated 2017-04-15)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-04-09 (described on Site Profile dated 2016-04-09)", + "notes": "INSERTED FOR SITE PROFILE DATED 2018-01-12 (described on Site Profile dated 2018-01-12)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2018-08-21 (described on Site Profile dated 2018-08-21)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + } + ], + "parcelDescriptions": [ + { + "siteRegistry": false, + "dateNoted": "2016-02-28", + "parcelID": "19608", + "crownLandUsePIN": "19152", + "crownLandFileNumber": "20124", + "landDescription": "LOT 2 OF LOT 1 BLOCK 5 DISTRICT LOT 2 PLAN 6101" + }, { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-05-25 (described on Site Profile dated 2014-05-25)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "dateNoted": "2020-07-05", + "parcelID": "17212", + "crownLandUsePIN": "18628", + "crownLandFileNumber": "15978", + "landDescription": "LOT 3 OF LOT 2 BLOCK 3 DISTRICT LOT 4 PLAN 6618" }, { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2023-08-11 (described on Site Profile dated 2023-08-11)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "dateNoted": "2022-07-24", + "parcelID": "20321", + "crownLandUsePIN": "18682", + "crownLandFileNumber": "16110", + "landDescription": "LOT 5 OF LOT 4 BLOCK 5 DISTRICT LOT 2 PLAN 7939" + }, + { + "siteRegistry": false, + "dateNoted": "2019-03-24", + "parcelID": "19049", + "crownLandUsePIN": "16845", + "crownLandFileNumber": "17955", + "landDescription": "LOT 1 OF LOT 1 BLOCK 5 DISTRICT LOT 4 PLAN 7287" + }, + { + "siteRegistry": true, + "dateNoted": "2014-07-06", + "parcelID": "16588", + "crownLandUsePIN": "19448", + "crownLandFileNumber": "18803", + "landDescription": "LOT 2 OF LOT 4 BLOCK 1 DISTRICT LOT 5 PLAN 5158" } ], "siteDisclosures": [ { - "siteRegistry": false, - "dateReceived": "2016-05-09", - "dateCompleted": "2023-02-11", - "dateEntered": "2014-06-01", - "dateRegistrar": "2016-02-10", - "dateLocalAuthorityReceived": "2020-04-09", - "summary": "Alias quis atque cum voluptatibus harum deleniti.", - "informationUsed": "Dicta culpa tempore.\nQuibusdam repellat maxime exercitationem repudiandae mollitia corrupti numquam voluptatibus.\nNon nemo error quod inventore.\nQuis odit animi deleniti nemo ab nostrum quasi.", - "pastOrPresentOrders": "Debitis laudantium et.\nDicta libero perspiciatis consectetur.", + "siteRegistry": true, + "dateReceived": "2021-11-15", + "dateCompleted": "2018-03-13", + "dateEntered": "2016-07-13", + "dateRegistrar": "2014-12-07", + "dateLocalAuthorityReceived": "2015-02-06", + "summary": "Rerum illum corrupti.\nFuga velit magni delectus quaerat natus fuga.", + "informationUsed": "Amet illo recusandae in.\nCorrupti at dicta sint voluptate minus quos quasi atque.\nOptio consequuntur officia.\nQuae est placeat labore officia dolore.\nLaudantium facilis dolorem.", + "pastOrPresentOrders": "Ullam vel quia possimus dicta.", "commercialAndIndustrialPurposes": [ { - "scheduleReference": "F2*", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, { "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false + "siteRegistry": true + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true } ] + } + ], + "activityLog": [ + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "GREENHOLT SOFIA", + "timestamp": "2017-09-19" }, { "siteRegistry": true, - "dateReceived": "2014-07-22", - "dateCompleted": "2021-05-16", - "dateEntered": "2023-06-02", - "dateRegistrar": "2014-02-09", - "dateLocalAuthorityReceived": "2023-08-14", - "summary": "Voluptate quis aspernatur nam.\nMagni culpa pariatur odit aspernatur enim dicta.\nDeleniti animi voluptatum iste ipsa id dolorum eos voluptas.", - "informationUsed": "Placeat perferendis accusantium.\nRepudiandae nemo nostrum et voluptates.\nVoluptatem accusamus unde iste nemo laboriosam.\nVeritatis nulla ad.\nId dignissimos veniam nostrum tempora totam.", - "pastOrPresentOrders": "Temporibus ad commodi mollitia expedita vero doloribus.\nExercitationem ipsam deserunt reiciendis quod mollitia provident.\nRepudiandae iste distinctio saepe similique dolor minima dolor molestias.", - "commercialAndIndustrialPurposes": [ - { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true - }, - { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false - }, - { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false - }, - { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false - } - ] - } - ], - "activityLog": [ + "activity": "Lorem ipsum dolor sit amet", + "user": "JACOBSON-HANE MARLEY", + "timestamp": "2020-09-22" + }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "KOSS ANTONINA", - "timestamp": "2015-09-27" + "user": "ADAMS LURLINE", + "timestamp": "2016-02-16" }, { - "siteRegistry": true, + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "WILDERMAN SAVANNAH", - "timestamp": "2020-10-03" + "user": "STARK JAKAYLA", + "timestamp": "2020-06-25" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "REICHEL HILLARY", - "timestamp": "2014-11-22" + "user": "ORTIZ GERTRUDE", + "timestamp": "2017-04-20" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "SAUER CAROLINA", + "timestamp": "2014-03-14" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "BEAHAN RUBYE", - "timestamp": "2023-09-26" + "user": "SHIELDS MAYMIE", + "timestamp": "2023-06-17" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "KUPHAL KAIA", - "timestamp": "2016-03-21" + "user": "DICKENS CICERO", + "timestamp": "2015-09-17" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "SCHOWALTER KENTON", + "timestamp": "2015-10-02" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "SPENCER SANDY", - "timestamp": "2021-06-11" + "user": "MERTZ ELECTA", + "timestamp": "2023-08-11" } ], "associatedSites": [ { - "dateNoted": "2017-11-05", + "dateNoted": "2018-04-21", "notes": "", - "parcelID": "18413", - "siteID": "20734", + "parcelID": "16680", + "siteID": "18309", "siteRegistry": true - }, - { - "dateNoted": "2019-07-31", - "notes": "", - "parcelID": "19556", - "siteID": "15251", - "siteRegistry": false } ] }, { - "uuid": "d4b05c79-4861-4863-a44a-c4bda7a4e678", - "siteID": 20188, - "address": "3617 Einar Curve", - "latitude": 57.422, - "longitude": -137.0863, - "lastUpdated": "2015-05-01", - "city": "Port Virginie", - "region": "Kootenay", - "victoriaFile": "26250-20/14053", + "uuid": "1768cea1-1481-4dd4-b388-5113b7cfb430", + "siteID": 19235, + "address": "4902 Reynolds Flats", + "latitude": 56.3748, + "longitude": -132.4965, + "lastUpdated": "2021-01-15", + "city": "New Heloiseshire", + "region": "Vancouver Island/Coast", + "victoriaFile": "26250-20/17274", "regionalFile": "N/A", "parcelIDs": [ - 8863371, - 9466740, - 9682054, - 6750544, - 5041519 + 7372892, + 9353158, + 3148401, + 3085388, + 8206327 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2020-03-02", - "completed": "2014-06-18", - "initiated": "2022-08-07", - "ministryContact": "HARRIS AFTON", + "createdAt": "2019-06-12", + "completed": "2015-11-27", + "initiated": "2022-01-03", + "ministryContact": "ZIEME NOEMIE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -13120,9 +13761,9 @@ "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", @@ -13130,18 +13771,18 @@ "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2014-01-29", - "completed": "2019-11-07", - "initiated": "2014-05-29", - "ministryContact": "WEST ELROY", + "createdAt": "2019-02-02", + "completed": "2016-07-22", + "initiated": "2018-05-09", + "ministryContact": "BOGAN FLOYD", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -13155,180 +13796,58 @@ "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": true } ], - "siteRegistry": false - } - ], - "participants": [ - { - "name": "IPSUM", - "endDate": "2022-07-14", - "startDate": "2018-12-17", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": false - }, - { - "name": "IPSUM", - "endDate": "2016-07-29", - "startDate": "2022-10-06", - "notes": "", - "roles": [ - "EMPLOYEE" - ], "siteRegistry": true - } - ], - "suspectLandUses": [ - { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-10-05 (described on Site Profile dated 2022-10-05)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" - }, - { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-07-22 (described on Site Profile dated 2015-07-22)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2020-07-30 (described on Site Profile dated 2020-07-30)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" - } - ], - "siteDisclosures": [ - { - "siteRegistry": true, - "dateReceived": "2018-11-23", - "dateCompleted": "2014-07-06", - "dateEntered": "2022-05-14", - "dateRegistrar": "2014-01-24", - "dateLocalAuthorityReceived": "2019-12-16", - "summary": "Esse dignissimos et sequi occaecati.", - "informationUsed": "Nemo harum odio illum voluptas.\nSint expedita veniam.\nItaque quia dolore voluptate quam nulla.\nMagnam voluptatum ad.", - "pastOrPresentOrders": "Blanditiis sunt aliquid dolores impedit.", - "commercialAndIndustrialPurposes": [ + "createdAt": "2023-08-15", + "completed": "2014-07-03", + "initiated": "2019-03-20", + "ministryContact": "GOYETTE WILLY", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": false }, { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true - }, - { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": false }, { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": false } - ] - } - ], - "activityLog": [ - { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "LIND DOMENIC", - "timestamp": "2021-10-28" - }, - { - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "FUNK MURRAY", - "timestamp": "2014-06-03" - }, - { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "EBERT ISOM", - "timestamp": "2018-01-25" - }, - { - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "EBERT FRITZ", - "timestamp": "2023-05-25" - }, - { - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "ROSENBAUM HAROLD", - "timestamp": "2014-04-10" - }, - { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "HANSEN ANNETTE", - "timestamp": "2023-08-14" - }, - { - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "KUHIC STEPHANY", - "timestamp": "2017-10-27" - }, - { - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "RUNOLFSDOTTIR AYDEN", - "timestamp": "2016-03-23" - } - ], - "associatedSites": [ - { - "dateNoted": "2018-08-12", - "notes": "", - "parcelID": "18793", - "siteID": "18404", - "siteRegistry": true - }, - { - "dateNoted": "2017-04-25", - "notes": "", - "parcelID": "18630", - "siteID": "18004", + ], "siteRegistry": false - } - ] - }, - { - "uuid": "172cc7be-5e23-4397-8fe0-d916fdab6a63", - "siteID": 15381, - "address": "971 Leta Mount", - "latitude": 58.2783, - "longitude": -138.7633, - "lastUpdated": "2016-03-10", - "city": "Greenholtbury", - "region": " North Coast", - "victoriaFile": "26250-20/11518", - "regionalFile": "N/A", - "parcelIDs": [ - 5933556, - 1334007, - 4887411, - 9520649, - 9743485 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ + }, { - "createdAt": "2018-07-23", - "completed": "2016-01-29", - "initiated": "2015-03-13", - "ministryContact": "WUNSCH EMMETT", + "createdAt": "2021-01-02", + "completed": "2017-05-09", + "initiated": "2016-11-24", + "ministryContact": "HINTZ KENNY", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -13345,15 +13864,25 @@ "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2016-03-31", - "completed": "2020-07-02", - "initiated": "2020-08-01", - "ministryContact": "CHAMPLIN ALTA", + "createdAt": "2017-07-21", + "completed": "2015-01-16", + "initiated": "2014-10-06", + "ministryContact": "KASSULKE WYATT", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -13363,108 +13892,147 @@ "notationParticipants": [ { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true + "role": "SUBMITTED BY", + "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false } ], "participants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2021-05-11", - "startDate": "2023-06-09", + "name": "IPSUM", + "endDate": "2014-09-05", + "startDate": "2020-03-05", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2020-04-25", - "startDate": "2014-07-31", + "name": "AMET, DOLOR SIT", + "endDate": "2016-07-16", + "startDate": "2017-01-18", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], - "siteRegistry": true + "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2020-04-27", - "startDate": "2016-06-06", + "name": "AMET, DOLOR SIT", + "endDate": "2021-12-03", + "startDate": "2018-10-21", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2023-05-25", - "startDate": "2018-03-18", + "endDate": "2019-02-17", + "startDate": "2021-05-12", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true } ], "suspectLandUses": [ { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-07-12 (described on Site Profile dated 2017-07-12)", + "notes": "INSERTED FOR SITE PROFILE DATED 2017-11-25 (described on Site Profile dated 2017-11-25)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2017-09-22 (described on Site Profile dated 2017-09-22)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2020-01-06 (described on Site Profile dated 2020-01-06)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2021-03-21 (described on Site Profile dated 2021-03-21)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-05-10 (described on Site Profile dated 2019-05-10)", + "notes": "INSERTED FOR SITE PROFILE DATED 2023-03-15 (described on Site Profile dated 2023-03-15)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + } + ], + "parcelDescriptions": [ + { + "siteRegistry": true, + "dateNoted": "2018-06-02", + "parcelID": "17453", + "crownLandUsePIN": "20111", + "crownLandFileNumber": "18143", + "landDescription": "LOT 5 OF LOT 2 BLOCK 2 DISTRICT LOT 2 PLAN 5213" + }, + { + "siteRegistry": true, + "dateNoted": "2014-11-19", + "parcelID": "18878", + "crownLandUsePIN": "15476", + "crownLandFileNumber": "15413", + "landDescription": "LOT 1 OF LOT 2 BLOCK 4 DISTRICT LOT 5 PLAN 3323" }, { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-04-28 (described on Site Profile dated 2014-04-28)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "dateNoted": "2021-03-25", + "parcelID": "16587", + "crownLandUsePIN": "19243", + "crownLandFileNumber": "17713", + "landDescription": "LOT 5 OF LOT 2 BLOCK 2 DISTRICT LOT 3 PLAN 8571" }, { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-05-15 (described on Site Profile dated 2021-05-15)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "dateNoted": "2020-09-18", + "parcelID": "15635", + "crownLandUsePIN": "17410", + "crownLandFileNumber": "15786", + "landDescription": "LOT 4 OF LOT 5 BLOCK 5 DISTRICT LOT 4 PLAN 3896" } ], "siteDisclosures": [ { - "siteRegistry": true, - "dateReceived": "2016-03-19", - "dateCompleted": "2020-09-28", - "dateEntered": "2016-03-12", - "dateRegistrar": "2015-02-03", - "dateLocalAuthorityReceived": "2014-07-20", - "summary": "Illum ea cupiditate.", - "informationUsed": "Veritatis eius consequuntur natus esse quasi doloremque inventore ratione.\nMagni recusandae magni quaerat qui ipsa expedita sapiente cum voluptates.\nUt at impedit voluptas nihil harum vero dolorum.", - "pastOrPresentOrders": "Expedita sapiente repellendus reprehenderit ducimus illum nostrum itaque facere necessitatibus.\nEaque beatae neque excepturi et fugiat amet.", + "siteRegistry": false, + "dateReceived": "2021-04-13", + "dateCompleted": "2022-10-07", + "dateEntered": "2018-09-11", + "dateRegistrar": "2023-07-26", + "dateLocalAuthorityReceived": "2016-09-17", + "summary": "Molestiae quam itaque asperiores sit optio animi non.\nNemo similique vitae voluptatem est culpa quidem ea.\nConsequuntur accusantium animi quia consequatur ducimus voluptatum quibusdam illo accusamus.", + "informationUsed": "Aspernatur laborum eaque suscipit.\nDucimus quia veniam quae aut.\nIste deserunt saepe facere fugit facere aliquid explicabo iure fugit.\nConsequatur facere at voluptatem eligendi cumque deserunt.\nIure dignissimos quidem cum inventore illo deserunt.", + "pastOrPresentOrders": "Nihil voluptas omnis explicabo est occaecati.\nLaudantium ut possimus ratione.", "commercialAndIndustrialPurposes": [ { "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false - }, - { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false + "siteRegistry": true }, { "scheduleReference": "F2*", @@ -13473,108 +14041,84 @@ }, { "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false - } - ] - }, - { - "siteRegistry": true, - "dateReceived": "2020-10-17", - "dateCompleted": "2016-12-02", - "dateEntered": "2021-05-02", - "dateRegistrar": "2018-10-21", - "dateLocalAuthorityReceived": "2023-01-26", - "summary": "Perspiciatis quam dolor alias veritatis quaerat ex repellendus ab.", - "informationUsed": "Sint ipsum sequi sapiente ipsum corporis natus tempora sed magnam.\nVoluptates perferendis numquam.\nConsequatur rerum alias ratione inventore.", - "pastOrPresentOrders": "Unde eos numquam.\nMinima ipsam voluptatem expedita asperiores non quos occaecati.", - "commercialAndIndustrialPurposes": [ - { - "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false + "siteRegistry": true }, { "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false + "siteRegistry": true } ] } ], "activityLog": [ - { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "QUITZON CADE", - "timestamp": "2016-06-12" - }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "MEDHURST JASON", - "timestamp": "2022-08-19" + "user": "KOZEY AUGUSTUS", + "timestamp": "2016-11-01" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "HUDSON LEXI", - "timestamp": "2017-08-12" + "user": "VON ANGELITA", + "timestamp": "2017-01-28" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "MOEN TYRELL", - "timestamp": "2020-12-05" + "user": "FUNK GAVIN", + "timestamp": "2017-08-08" }, { - "siteRegistry": true, + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "RENNER KYLA", - "timestamp": "2019-05-24" + "user": "STOLTENBERG SABRYNA", + "timestamp": "2017-10-23" }, { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "BODE OCTAVIA", - "timestamp": "2022-12-31" + "user": "BOGISICH GRADY", + "timestamp": "2020-04-02" } ], "associatedSites": [ { - "dateNoted": "2014-08-13", + "dateNoted": "2017-08-12", "notes": "", - "parcelID": "16840", - "siteID": "17862", + "parcelID": "17036", + "siteID": "18109", "siteRegistry": false } ] }, { - "uuid": "bb1fa49b-8b51-46af-a07f-9eb0c8c325f4", - "siteID": 18905, - "address": "2051 Ledner Dam", - "latitude": 56.1149, - "longitude": -138.3408, - "lastUpdated": "2019-07-09", - "city": "South Cleta", - "region": "Cariboo", - "victoriaFile": "26250-20/1417", + "uuid": "59c43bc2-4de4-4c11-b973-8dae3bba353e", + "siteID": 17034, + "address": "628 Jakubowski Turnpike", + "latitude": 49.6872, + "longitude": -130.6417, + "lastUpdated": "2016-07-30", + "city": "Port Alfredshire", + "region": " North Coast", + "victoriaFile": "26250-20/12535", "regionalFile": "N/A", "parcelIDs": [ - 5970243, - 5369870, - 5350465, - 7316712, - 657893 + 1533493, + 2867648, + 4019994, + 3801986, + 3711904 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2023-10-01", - "completed": "2019-09-19", - "initiated": "2021-10-26", - "ministryContact": "KOVACEK BRAIN", + "createdAt": "2021-11-29", + "completed": "2015-06-08", + "initiated": "2018-05-07", + "ministryContact": "TERRY SELENA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -13583,9 +14127,9 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", @@ -13601,20 +14145,15 @@ "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true } ], "siteRegistry": false }, { - "createdAt": "2020-12-21", - "completed": "2022-06-05", - "initiated": "2014-04-10", - "ministryContact": "LUBOWITZ DONNIE", + "createdAt": "2015-07-14", + "completed": "2018-01-10", + "initiated": "2020-11-26", + "ministryContact": "O'CONNER KORY", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -13622,6 +14161,11 @@ "" ], "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", @@ -13631,15 +14175,25 @@ "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2020-05-20", - "completed": "2021-08-08", - "initiated": "2019-01-13", - "ministryContact": "KUVALIS EMILE", + "createdAt": "2013-12-27", + "completed": "2017-12-09", + "initiated": "2018-09-27", + "ministryContact": "BORER COURTNEY", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -13649,13 +14203,23 @@ "notationParticipants": [ { "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true + "role": "REQUESTED BY", + "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", @@ -13666,10 +14230,10 @@ "siteRegistry": false }, { - "createdAt": "2016-05-19", - "completed": "2017-02-06", - "initiated": "2020-10-20", - "ministryContact": "CARTER HILLARY", + "createdAt": "2017-09-09", + "completed": "2020-07-17", + "initiated": "2022-06-06", + "ministryContact": "WALSH ARLO", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -13678,17 +14242,27 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false } @@ -13696,10 +14270,10 @@ "siteRegistry": true }, { - "createdAt": "2018-08-26", - "completed": "2015-05-05", - "initiated": "2014-04-05", - "ministryContact": "HARBER VINCE", + "createdAt": "2013-12-04", + "completed": "2017-04-12", + "initiated": "2018-01-01", + "ministryContact": "RATKE PARKER", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -13708,39 +14282,44 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false } ], "participants": [ { - "name": "IPSUM", - "endDate": "2022-11-26", - "startDate": "2021-11-01", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2020-06-26", + "startDate": "2022-10-31", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2021-04-15", - "startDate": "2021-05-07", + "endDate": "2022-11-11", + "startDate": "2013-11-17", "notes": "", "roles": [ "EMPLOYEE" @@ -13748,141 +14327,205 @@ "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2013-12-10", - "startDate": "2020-12-19", + "name": "AMET, DOLOR SIT", + "endDate": "2022-10-20", + "startDate": "2021-11-08", "notes": "", "roles": [ "EMPLOYEE" ], "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2017-11-13", - "startDate": "2022-11-08", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": false } ], "suspectLandUses": [ { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-07-29 (described on Site Profile dated 2018-07-29)", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2023-06-16 (described on Site Profile dated 2023-06-16)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2020-01-23 (described on Site Profile dated 2020-01-23)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2014-11-09 (described on Site Profile dated 2014-11-09)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + } + ], + "parcelDescriptions": [ { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2020-01-18 (described on Site Profile dated 2020-01-18)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "dateNoted": "2022-11-21", + "parcelID": "18233", + "crownLandUsePIN": "17198", + "crownLandFileNumber": "18181", + "landDescription": "LOT 2 OF LOT 1 BLOCK 4 DISTRICT LOT 2 PLAN 8390" }, { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-07-10 (described on Site Profile dated 2017-07-10)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "dateNoted": "2015-02-06", + "parcelID": "19415", + "crownLandUsePIN": "18137", + "crownLandFileNumber": "20731", + "landDescription": "LOT 2 OF LOT 2 BLOCK 3 DISTRICT LOT 4 PLAN 6937" } ], "siteDisclosures": [ { - "siteRegistry": true, - "dateReceived": "2022-05-17", - "dateCompleted": "2017-03-21", - "dateEntered": "2017-06-08", - "dateRegistrar": "2016-08-17", - "dateLocalAuthorityReceived": "2013-11-13", - "summary": "Ducimus fugiat sunt ab hic quas minima.\nProvident asperiores voluptas.\nDelectus velit earum saepe officia quidem accusantium vero error consectetur.", - "informationUsed": "Perferendis consectetur delectus harum architecto dolores reiciendis molestiae quibusdam.\nTemporibus qui officiis cum ipsa placeat fugiat.\nTemporibus amet quibusdam possimus illo id dicta enim ab aliquam.", - "pastOrPresentOrders": "Quasi fuga eveniet rem repellat quam nisi deserunt repellendus eos.\nFugit tempore nulla aperiam similique facilis.\nVoluptatem optio accusamus.", + "siteRegistry": false, + "dateReceived": "2022-11-16", + "dateCompleted": "2017-08-09", + "dateEntered": "2021-06-15", + "dateRegistrar": "2021-06-30", + "dateLocalAuthorityReceived": "2021-02-15", + "summary": "Exercitationem rerum soluta.\nQuibusdam quis molestias ullam voluptatibus deserunt officia.\nLibero earum necessitatibus excepturi.", + "informationUsed": "Beatae consequuntur sint vitae accusantium.\nVeniam alias ut fuga.\nReprehenderit similique eveniet.", + "pastOrPresentOrders": "Id praesentium architecto eum minima numquam aliquam mollitia.", "commercialAndIndustrialPurposes": [ { "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + } + ] + }, + { + "siteRegistry": false, + "dateReceived": "2016-11-12", + "dateCompleted": "2020-09-29", + "dateEntered": "2017-03-01", + "dateRegistrar": "2022-08-15", + "dateLocalAuthorityReceived": "2015-09-18", + "summary": "Tempora quos quod.\nCumque quae quia corporis amet laudantium corrupti laborum itaque.", + "informationUsed": "Cupiditate dolorem repudiandae non atque accusamus iure omnis.\nVoluptate tempore natus asperiores fuga maiores itaque amet.\nVoluptatum modi alias.", + "pastOrPresentOrders": "Culpa ratione aperiam.\nQuo nostrum quod.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, { "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false } ] } ], "activityLog": [ { - "siteRegistry": true, + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "LEHNER GLENNA", - "timestamp": "2019-07-30" + "user": "FLATLEY SELMER", + "timestamp": "2016-06-13" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "FLATLEY ARNALDO", - "timestamp": "2018-12-12" + "user": "BERNIER MADGE", + "timestamp": "2021-10-05" }, { - "siteRegistry": true, + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "SATTERFIELD AUTUMN", - "timestamp": "2015-11-09" + "user": "KUTCH KORBIN", + "timestamp": "2022-12-02" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "MARKS ANIYA", - "timestamp": "2015-02-17" + "user": "QUIGLEY SUZANNE", + "timestamp": "2016-04-22" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "KRIS-GISLASON JEDEDIAH", - "timestamp": "2019-01-16" + "user": "HAND IVAH", + "timestamp": "2017-09-03" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "FAY REESE", - "timestamp": "2023-06-08" + "user": "HEIDENREICH RILEY", + "timestamp": "2016-12-20" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "MORAR BELL", + "timestamp": "2022-03-26" } ], "associatedSites": [ { - "dateNoted": "2022-07-19", + "dateNoted": "2016-12-08", "notes": "", - "parcelID": "19038", - "siteID": "16489", - "siteRegistry": false + "parcelID": "18796", + "siteID": "16335", + "siteRegistry": true + }, + { + "dateNoted": "2015-12-30", + "notes": "", + "parcelID": "17350", + "siteID": "20424", + "siteRegistry": true } ] }, { - "uuid": "0dac963b-1ffb-497a-a645-dc289c3e1e23", - "siteID": 19726, - "address": "64790 Tito Shoals", - "latitude": 55.9431, - "longitude": -136.6571, - "lastUpdated": "2014-03-26", - "city": "Blairside", - "region": "Kootenay", - "victoriaFile": "26250-20/2313", + "uuid": "00c08f72-3be7-48dd-966d-f6b47204d6a3", + "siteID": 20424, + "address": "288 Kohler Spring", + "latitude": 48.1341, + "longitude": -126.812, + "lastUpdated": "2013-11-25", + "city": "Wilbertboro", + "region": "Mainland/Southwest", + "victoriaFile": "26250-20/13485", "regionalFile": "N/A", "parcelIDs": [ - 6176589, - 5594622, - 3017452, - 4112444, - 6991768 + 7063852, + 2542438, + 7126605, + 4291413, + 5200682 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2019-11-04", - "completed": "2022-09-14", - "initiated": "2018-12-13", - "ministryContact": "SWIFT FELICITA", + "createdAt": "2019-02-02", + "completed": "2022-06-02", + "initiated": "2014-08-21", + "ministryContact": "ORTIZ FRIDA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -13891,8 +14534,13 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": false }, { @@ -13902,52 +14550,22 @@ }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - } - ], - "siteRegistry": false - }, - { - "createdAt": "2023-03-09", - "completed": "2019-12-28", - "initiated": "2018-03-28", - "ministryContact": "WEBER JORDY", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false } ], "siteRegistry": false }, { - "createdAt": "2014-10-21", - "completed": "2022-04-11", - "initiated": "2017-01-19", - "ministryContact": "SAWAYN LILIAN", + "createdAt": "2016-11-27", + "completed": "2016-06-22", + "initiated": "2020-10-09", + "ministryContact": "EBERT LETHA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -13957,67 +14575,37 @@ "notationParticipants": [ { "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true + "role": "REQUESTED BY", + "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - } - ], - "siteRegistry": false - }, - { - "createdAt": "2021-01-25", - "completed": "2020-08-01", - "initiated": "2019-10-11", - "ministryContact": "PROSACCO LAURENCE", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2014-02-24", - "completed": "2015-09-17", - "initiated": "2021-09-22", - "ministryContact": "KRAJCIK TAMARA", + "createdAt": "2017-01-07", + "completed": "2019-09-03", + "initiated": "2018-07-18", + "ministryContact": "CUMMINGS ALISON", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -14027,13 +14615,8 @@ "notationParticipants": [ { "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false + "role": "REQUESTED BY", + "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", @@ -14047,38 +14630,8 @@ "participants": [ { "name": "IPSUM", - "endDate": "2023-01-24", - "startDate": "2016-05-25", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2020-07-20", - "startDate": "2020-05-06", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": false - }, - { - "name": "IPSUM", - "endDate": "2023-04-18", - "startDate": "2023-06-25", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2021-12-24", - "startDate": "2021-09-09", + "endDate": "2016-04-28", + "startDate": "2022-05-10", "notes": "", "roles": [ "ORGANIZATION" @@ -14087,96 +14640,90 @@ }, { "name": "IPSUM", - "endDate": "2018-01-19", - "startDate": "2017-01-21", + "endDate": "2017-09-26", + "startDate": "2021-05-16", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false } ], "suspectLandUses": [ { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-01-21 (described on Site Profile dated 2018-01-21)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2019-09-21 (described on Site Profile dated 2019-09-21)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-10-26 (described on Site Profile dated 2016-10-26)", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2018-06-11 (described on Site Profile dated 2018-06-11)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + } + ], + "parcelDescriptions": [ + { + "siteRegistry": true, + "dateNoted": "2021-07-19", + "parcelID": "18000", + "crownLandUsePIN": "17442", + "crownLandFileNumber": "16478", + "landDescription": "LOT 3 OF LOT 2 BLOCK 2 DISTRICT LOT 2 PLAN 7641" }, { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-11-22 (described on Site Profile dated 2014-11-22)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "dateNoted": "2019-09-08", + "parcelID": "20060", + "crownLandUsePIN": "18966", + "crownLandFileNumber": "19998", + "landDescription": "LOT 3 OF LOT 2 BLOCK 5 DISTRICT LOT 3 PLAN 4694" }, { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-08-07 (described on Site Profile dated 2015-08-07)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "dateNoted": "2022-02-24", + "parcelID": "20782", + "crownLandUsePIN": "20601", + "crownLandFileNumber": "19739", + "landDescription": "LOT 1 OF LOT 1 BLOCK 1 DISTRICT LOT 1 PLAN 4169" }, { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-04-19 (described on Site Profile dated 2017-04-19)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "dateNoted": "2020-02-25", + "parcelID": "19493", + "crownLandUsePIN": "17645", + "crownLandFileNumber": "15990", + "landDescription": "LOT 2 OF LOT 4 BLOCK 1 DISTRICT LOT 1 PLAN 3656" + }, + { + "siteRegistry": true, + "dateNoted": "2023-03-01", + "parcelID": "19224", + "crownLandUsePIN": "19497", + "crownLandFileNumber": "19797", + "landDescription": "LOT 3 OF LOT 4 BLOCK 5 DISTRICT LOT 2 PLAN 9329" } ], "siteDisclosures": [ { - "siteRegistry": false, - "dateReceived": "2023-06-03", - "dateCompleted": "2020-06-26", - "dateEntered": "2020-07-10", - "dateRegistrar": "2020-02-21", - "dateLocalAuthorityReceived": "2017-06-13", - "summary": "Ratione ipsum sint quas consequatur et perferendis sapiente.\nOccaecati repellat perspiciatis minus quasi illum ipsam mollitia quaerat.", - "informationUsed": "Earum doloremque commodi quisquam modi unde.\nAperiam praesentium molestias.\nSit quaerat itaque magni unde soluta quaerat.\nAccusamus laudantium dolorum sed quasi vero voluptatum iste.", - "pastOrPresentOrders": "Excepturi tempora nemo laudantium rem quasi id repudiandae porro.\nIpsum autem ipsam.", + "siteRegistry": true, + "dateReceived": "2020-05-14", + "dateCompleted": "2019-12-21", + "dateEntered": "2015-09-09", + "dateRegistrar": "2020-06-11", + "dateLocalAuthorityReceived": "2020-07-05", + "summary": "Expedita eligendi provident aliquam cum.\nQuidem facilis quis sequi accusamus ipsam nesciunt assumenda.\nEa quis fuga temporibus eius.", + "informationUsed": "Vitae sint at nihil soluta.\nMaiores mollitia fugit possimus nihil hic fuga ab harum.\nPorro facere quibusdam natus rem sequi tempore deleniti.\nConsectetur hic aspernatur reiciendis saepe ad.", + "pastOrPresentOrders": "Fugiat odio impedit rem numquam laborum placeat voluptates ullam amet.\nNecessitatibus assumenda labore voluptatem fugiat eveniet illum.\nIste tenetur quo ipsum.", "commercialAndIndustrialPurposes": [ { "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, - { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false - }, - { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false - }, - { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true - } - ] - }, - { - "siteRegistry": false, - "dateReceived": "2023-05-29", - "dateCompleted": "2017-02-01", - "dateEntered": "2015-02-15", - "dateRegistrar": "2019-10-05", - "dateLocalAuthorityReceived": "2017-12-01", - "summary": "Iusto enim officia perferendis ducimus necessitatibus.\nAssumenda eveniet quod minus illo consequuntur inventore.", - "informationUsed": "Sequi cupiditate assumenda.\nError ea maxime similique.\nFuga dignissimos ex labore vero labore vel voluptatum quod.", - "pastOrPresentOrders": "Ratione distinctio doloremque et ducimus autem esse ut magni.\nQuis reprehenderit perspiciatis laboriosam odio necessitatibus maxime iusto iusto.\nQuaerat qui culpa accusantium corrupti.", - "commercialAndIndustrialPurposes": [ { "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true - }, - { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false } ] } @@ -14185,93 +14732,113 @@ { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "WALSH JACKELINE", - "timestamp": "2016-05-07" + "user": "TRANTOW JANET", + "timestamp": "2019-10-17" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "WOLF JOELLE", - "timestamp": "2014-05-10" + "user": "JAKUBOWSKI ISAC", + "timestamp": "2021-01-18" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "STAMM KYRA", - "timestamp": "2014-01-29" + "user": "MILLS JACKY", + "timestamp": "2019-06-27" }, { - "siteRegistry": true, + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "ZULAUF NICK", - "timestamp": "2014-07-12" + "user": "SHANAHAN RANDALL", + "timestamp": "2020-03-14" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "BLICK CASEY", - "timestamp": "2019-11-24" + "user": "DOOLEY LOYCE", + "timestamp": "2013-12-19" }, { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "HAHN DON", - "timestamp": "2016-02-20" + "user": "GOYETTE LENNY", + "timestamp": "2018-09-30" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "O'REILLY TRYSTAN", - "timestamp": "2017-07-04" + "user": "WEIMANN AMELIE", + "timestamp": "2022-09-25" }, { - "siteRegistry": true, + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "MAYERT COLTON", - "timestamp": "2022-03-07" + "user": "YUNDT ALICE", + "timestamp": "2023-07-24" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "MARVIN ADDIE", - "timestamp": "2021-06-24" + "user": "PROSACCO SELMER", + "timestamp": "2017-11-10" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "SAWAYN KIP", + "timestamp": "2023-06-21" } ], "associatedSites": [ { - "dateNoted": "2017-05-02", + "dateNoted": "2019-07-29", + "notes": "", + "parcelID": "18117", + "siteID": "17940", + "siteRegistry": false + }, + { + "dateNoted": "2017-08-19", + "notes": "", + "parcelID": "20834", + "siteID": "17940", + "siteRegistry": false + }, + { + "dateNoted": "2018-08-15", "notes": "", - "parcelID": "16183", - "siteID": "16916", + "parcelID": "16038", + "siteID": "20018", "siteRegistry": true } ] }, { - "uuid": "90a1dc31-2a9e-4312-b79c-3e92b2dda2f5", - "siteID": 15517, - "address": "6116 Katelynn Falls", - "latitude": 49.9002, - "longitude": -119.0459, - "lastUpdated": "2014-08-26", - "city": "Kaitlinborough", - "region": "Vancouver Island/Coast", - "victoriaFile": "26250-20/8382", + "uuid": "e9ffc8bc-decd-4c4e-bcf8-0f3f93d6548c", + "siteID": 18817, + "address": "47430 Schultz Path", + "latitude": 55.5937, + "longitude": -126.5417, + "lastUpdated": "2022-07-02", + "city": "Katarinafield", + "region": "Kootenay", + "victoriaFile": "26250-20/3947", "regionalFile": "N/A", "parcelIDs": [ - 1880676, - 1709865, - 9638575, - 8067601, - 9375558 + 188747, + 9803638, + 2332095, + 4405276, + 7479791 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2018-04-27", - "completed": "2018-09-13", - "initiated": "2015-12-20", - "ministryContact": "WIEGAND SIGRID", + "createdAt": "2014-03-17", + "completed": "2016-04-03", + "initiated": "2021-01-26", + "ministryContact": "GRADY CALI", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -14279,64 +14846,39 @@ "" ], "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false - } - ], - "siteRegistry": true - }, - { - "createdAt": "2020-11-19", - "completed": "2018-03-17", - "initiated": "2020-12-08", - "ministryContact": "RUECKER EVANS", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ + }, { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2016-03-26", - "completed": "2014-01-23", - "initiated": "2016-11-13", - "ministryContact": "HUELS GRADY", + "createdAt": "2019-04-03", + "completed": "2021-09-16", + "initiated": "2016-05-21", + "ministryContact": "LEBSACK LEOPOLD", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -14344,29 +14886,39 @@ "" ], "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, { "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2018-03-06", - "completed": "2020-11-30", - "initiated": "2023-02-11", - "ministryContact": "SMITH JAMMIE", + "createdAt": "2019-11-28", + "completed": "2020-12-08", + "initiated": "2015-05-20", + "ministryContact": "SCHUSTER KATTIE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -14374,34 +14926,39 @@ "" ], "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": true } ], "siteRegistry": false }, { - "createdAt": "2017-06-04", - "completed": "2022-05-21", - "initiated": "2018-08-13", - "ministryContact": "JOHNS SELINA", + "createdAt": "2013-10-29", + "completed": "2016-06-08", + "initiated": "2017-01-15", + "ministryContact": "WINTHEISER LIAM", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -14410,29 +14967,19 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false } ], "siteRegistry": false @@ -14440,39 +14987,29 @@ ], "participants": [ { - "name": "AMET, DOLOR SIT", - "endDate": "2014-03-30", - "startDate": "2021-07-18", + "name": "IPSUM", + "endDate": "2015-07-04", + "startDate": "2022-10-24", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], - "siteRegistry": false + "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2015-05-17", - "startDate": "2021-10-15", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": false - }, - { - "name": "AMET, DOLOR SIT", - "endDate": "2020-02-19", - "startDate": "2020-01-15", + "endDate": "2022-03-25", + "startDate": "2013-12-30", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2023-01-27", - "startDate": "2017-08-22", + "endDate": "2019-12-15", + "startDate": "2020-03-19", "notes": "", "roles": [ "ORGANIZATION" @@ -14480,9 +15017,9 @@ "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2014-04-20", - "startDate": "2014-05-19", + "name": "AMET, DOLOR SIT", + "endDate": "2019-02-18", + "startDate": "2019-05-31", "notes": "", "roles": [ "ORGANIZATION" @@ -14493,133 +15030,230 @@ "suspectLandUses": [ { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-12-20 (described on Site Profile dated 2022-12-20)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "notes": "INSERTED FOR SITE PROFILE DATED 2015-06-15 (described on Site Profile dated 2015-06-15)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2015-03-27 (described on Site Profile dated 2015-03-27)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2016-10-10 (described on Site Profile dated 2016-10-10)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2018-01-11 (described on Site Profile dated 2018-01-11)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + } + ], + "parcelDescriptions": [ { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-04-05 (described on Site Profile dated 2014-04-05)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "dateNoted": "2021-03-21", + "parcelID": "17424", + "crownLandUsePIN": "19781", + "crownLandFileNumber": "19671", + "landDescription": "LOT 4 OF LOT 3 BLOCK 2 DISTRICT LOT 2 PLAN 6988" + }, + { + "siteRegistry": false, + "dateNoted": "2022-05-22", + "parcelID": "20277", + "crownLandUsePIN": "15910", + "crownLandFileNumber": "17727", + "landDescription": "LOT 3 OF LOT 5 BLOCK 2 DISTRICT LOT 4 PLAN 9547" }, { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-03-22 (described on Site Profile dated 2019-03-22)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "dateNoted": "2022-03-15", + "parcelID": "15960", + "crownLandUsePIN": "19488", + "crownLandFileNumber": "20072", + "landDescription": "LOT 3 OF LOT 1 BLOCK 4 DISTRICT LOT 1 PLAN 3724" }, { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-05-02 (described on Site Profile dated 2022-05-02)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "dateNoted": "2022-02-12", + "parcelID": "16830", + "crownLandUsePIN": "18669", + "crownLandFileNumber": "20247", + "landDescription": "LOT 4 OF LOT 1 BLOCK 2 DISTRICT LOT 2 PLAN 6306" + }, + { + "siteRegistry": false, + "dateNoted": "2020-10-19", + "parcelID": "16418", + "crownLandUsePIN": "19910", + "crownLandFileNumber": "17853", + "landDescription": "LOT 5 OF LOT 5 BLOCK 3 DISTRICT LOT 1 PLAN 5335" } ], "siteDisclosures": [ { "siteRegistry": true, - "dateReceived": "2016-12-28", - "dateCompleted": "2020-08-10", - "dateEntered": "2018-04-07", - "dateRegistrar": "2019-03-17", - "dateLocalAuthorityReceived": "2021-04-02", - "summary": "Voluptatibus nemo tempora alias dolores corrupti consequuntur excepturi.\nAccusamus recusandae officia perferendis nostrum atque tenetur amet asperiores iste.", - "informationUsed": "Id quibusdam velit cum dolores inventore dolorem sit veritatis.\nArchitecto voluptas omnis atque corrupti reiciendis ab tempora voluptatibus iure.\nQuam a recusandae repellendus quasi aspernatur officiis dolorum mollitia quasi.\nMagni minus explicabo suscipit.", - "pastOrPresentOrders": "Fugit itaque itaque.", + "dateReceived": "2022-12-01", + "dateCompleted": "2022-07-11", + "dateEntered": "2022-07-08", + "dateRegistrar": "2019-04-10", + "dateLocalAuthorityReceived": "2021-07-10", + "summary": "Nulla quia asperiores nostrum praesentium.\nEa explicabo consequuntur quos quos velit et mollitia earum.", + "informationUsed": "Magnam quos eos.\nRerum debitis eos fugiat eos tenetur quia hic hic blanditiis.\nBlanditiis eos consequatur.\nUt unde officiis.", + "pastOrPresentOrders": "Deserunt facilis neque impedit sed rerum nemo autem.", "commercialAndIndustrialPurposes": [ { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + } + ] + }, + { + "siteRegistry": true, + "dateReceived": "2023-06-03", + "dateCompleted": "2018-01-19", + "dateEntered": "2023-07-01", + "dateRegistrar": "2019-09-27", + "dateLocalAuthorityReceived": "2020-06-11", + "summary": "Ducimus est odit ullam dicta laborum non.\nIste enim laboriosam accusantium.", + "informationUsed": "Minus reprehenderit corrupti quos placeat deserunt magnam libero sunt.\nOfficia molestiae dignissimos.\nSuscipit voluptatibus tempore accusantium aspernatur doloremque officia rem.", + "pastOrPresentOrders": "Labore consequuntur qui incidunt repellat.\nFugiat amet deserunt repellat in harum magnam harum mollitia.\nConsequatur neque suscipit qui tempore voluptas adipisci veritatis animi.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false }, { "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true + "siteRegistry": false + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false }, { "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true + "siteRegistry": false } ] } ], "activityLog": [ { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "GUTKOWSKI NYAH", - "timestamp": "2017-07-14" + "user": "ORTIZ JIMMIE", + "timestamp": "2016-10-26" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "GRANT LELA", - "timestamp": "2021-01-05" + "user": "HICKLE BRIDGETTE", + "timestamp": "2023-08-07" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "TURNER LEONORA", - "timestamp": "2020-05-09" + "user": "HACKETT-OBERBRUNNER VERNA", + "timestamp": "2017-08-28" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "HUDSON BRAEDEN", - "timestamp": "2022-11-17" + "user": "ROGAHN LEANN", + "timestamp": "2019-09-18" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "CARROLL QUINTON", + "timestamp": "2021-01-30" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "ZIEMANN MADILYN", - "timestamp": "2017-06-22" + "user": "CUMMERATA NEVA", + "timestamp": "2014-07-18" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "SAWAYN ROGER", + "timestamp": "2021-07-19" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "HODKIEWICZ ELLIS", + "timestamp": "2014-07-28" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "O'KEEFE POLLY", - "timestamp": "2019-03-04" + "user": "STOLTENBERG CAROL", + "timestamp": "2014-10-26" } ], "associatedSites": [ { - "dateNoted": "2015-02-19", + "dateNoted": "2015-08-03", "notes": "", - "parcelID": "17347", - "siteID": "18509", + "parcelID": "15703", + "siteID": "17287", "siteRegistry": false + }, + { + "dateNoted": "2014-02-13", + "notes": "", + "parcelID": "19386", + "siteID": "18013", + "siteRegistry": true + }, + { + "dateNoted": "2013-10-29", + "notes": "", + "parcelID": "18890", + "siteID": "17329", + "siteRegistry": true } ] }, { - "uuid": "a5802aa9-252f-4f57-840d-51fa28a5d4cf", - "siteID": 16500, - "address": "395 Maggio Forges", - "latitude": 54.5126, - "longitude": -132.4622, - "lastUpdated": "2019-09-01", - "city": "Ullrichland", - "region": " North Coast", - "victoriaFile": "26250-20/7760", + "uuid": "77f93435-75c1-4180-a1aa-3058f5cf4b7a", + "siteID": 15994, + "address": "7749 Estel Parkways", + "latitude": 52.6637, + "longitude": -127.2884, + "lastUpdated": "2017-11-17", + "city": "Vonboro", + "region": "Cariboo", + "victoriaFile": "26250-20/6363", "regionalFile": "N/A", "parcelIDs": [ - 1812356, - 3566495, - 2447866, - 6058456, - 3386995 + 1015100, + 8478277, + 108846, + 4409188, + 6644790 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2015-10-20", - "completed": "2022-05-02", - "initiated": "2020-09-30", - "ministryContact": "HOWELL REBECCA", + "createdAt": "2019-09-14", + "completed": "2020-10-16", + "initiated": "2022-01-05", + "ministryContact": "DIBBERT DALLAS", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -14629,27 +15263,22 @@ "notationParticipants": [ { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2013-12-18", - "completed": "2013-10-23", - "initiated": "2023-09-28", - "ministryContact": "ZIEMANN PRECIOUS", + "createdAt": "2017-03-08", + "completed": "2020-05-16", + "initiated": "2019-03-12", + "ministryContact": "RUSSEL MARCIA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -14657,54 +15286,29 @@ "" ], "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false - } - ], - "siteRegistry": false - }, - { - "createdAt": "2016-07-02", - "completed": "2021-08-01", - "initiated": "2015-10-23", - "ministryContact": "KOELPIN KENDRA", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ + "siteRegistry": true + }, { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2022-07-22", - "completed": "2017-03-05", - "initiated": "2022-12-22", - "ministryContact": "MILLS KATHRYN", + "createdAt": "2021-01-07", + "completed": "2023-04-22", + "initiated": "2021-09-27", + "ministryContact": "RATKE SISTER", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -14712,150 +15316,154 @@ "" ], "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - } - ], - "siteRegistry": true - }, - { - "createdAt": "2021-10-15", - "completed": "2016-07-26", - "initiated": "2018-03-10", - "ministryContact": "DICKINSON MARA", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false } ], "participants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2022-09-23", - "startDate": "2022-02-17", + "name": "AMET, DOLOR SIT", + "endDate": "2016-05-06", + "startDate": "2015-04-09", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], - "siteRegistry": true + "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", - "endDate": "2023-03-04", - "startDate": "2020-04-09", + "endDate": "2015-08-03", + "startDate": "2019-02-10", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true }, { - "name": "AMET, DOLOR SIT", - "endDate": "2014-01-30", - "startDate": "2023-10-03", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2016-01-08", + "startDate": "2017-09-02", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": true }, { - "name": "AMET, DOLOR SIT", - "endDate": "2017-02-20", - "startDate": "2017-06-28", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2020-04-25", + "startDate": "2022-05-20", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false } ], "suspectLandUses": [ { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-02-27 (described on Site Profile dated 2015-02-27)", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2014-05-14 (described on Site Profile dated 2014-05-14)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2023-08-06 (described on Site Profile dated 2023-08-06)", + "notes": "INSERTED FOR SITE PROFILE DATED 2023-01-28 (described on Site Profile dated 2023-01-28)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-09-12 (described on Site Profile dated 2021-09-12)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2016-07-15 (described on Site Profile dated 2016-07-15)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2013-10-14 (described on Site Profile dated 2013-10-14)", + "notes": "INSERTED FOR SITE PROFILE DATED 2013-11-06 (described on Site Profile dated 2013-11-06)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], - "siteDisclosures": [ + "parcelDescriptions": [ + { + "siteRegistry": true, + "dateNoted": "2020-02-29", + "parcelID": "20642", + "crownLandUsePIN": "17366", + "crownLandFileNumber": "19400", + "landDescription": "LOT 5 OF LOT 3 BLOCK 3 DISTRICT LOT 3 PLAN 4521" + }, + { + "siteRegistry": true, + "dateNoted": "2021-12-19", + "parcelID": "16698", + "crownLandUsePIN": "16612", + "crownLandFileNumber": "20367", + "landDescription": "LOT 2 OF LOT 3 BLOCK 3 DISTRICT LOT 2 PLAN 7099" + }, { "siteRegistry": false, - "dateReceived": "2019-12-05", - "dateCompleted": "2014-07-30", - "dateEntered": "2022-10-19", - "dateRegistrar": "2021-08-26", - "dateLocalAuthorityReceived": "2014-09-02", - "summary": "Repellendus nisi asperiores ab optio tenetur nemo at saepe quae.\nSed enim rerum distinctio accusamus.", - "informationUsed": "Magnam iure ad incidunt.\nNobis dolorem repudiandae impedit qui mollitia rerum quae.\nImpedit sequi minima unde tenetur dignissimos ut facilis dolorum.", - "pastOrPresentOrders": "Sit dolor quaerat.\nNam culpa sapiente.", + "dateNoted": "2016-04-02", + "parcelID": "16816", + "crownLandUsePIN": "15773", + "crownLandFileNumber": "17594", + "landDescription": "LOT 2 OF LOT 5 BLOCK 5 DISTRICT LOT 3 PLAN 6634" + }, + { + "siteRegistry": false, + "dateNoted": "2016-03-16", + "parcelID": "16496", + "crownLandUsePIN": "17442", + "crownLandFileNumber": "16268", + "landDescription": "LOT 4 OF LOT 3 BLOCK 1 DISTRICT LOT 2 PLAN 5772" + } + ], + "siteDisclosures": [ + { + "siteRegistry": true, + "dateReceived": "2021-05-18", + "dateCompleted": "2014-09-06", + "dateEntered": "2023-09-06", + "dateRegistrar": "2019-01-19", + "dateLocalAuthorityReceived": "2014-11-14", + "summary": "Quidem officiis odio repellendus ratione corporis eum sunt.", + "informationUsed": "Nobis perspiciatis occaecati saepe.\nCorrupti veritatis ipsum alias hic.\nNesciunt facere facilis sed fugiat eius fugiat.\nDolorem amet odio explicabo et enim consequuntur.", + "pastOrPresentOrders": "Voluptate ipsam minima placeat soluta ratione optio.\nMinus explicabo saepe autem accusamus numquam sint quae veritatis.", "commercialAndIndustrialPurposes": [ { - "scheduleReference": "F1*", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false }, { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false }, { "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false - }, - { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true } ] } @@ -14864,81 +15472,100 @@ { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "VANDERVORT RUSSEL", - "timestamp": "2023-04-29" + "user": "WATSICA MARIBEL", + "timestamp": "2020-10-02" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "WILDERMAN DIMITRI", - "timestamp": "2022-12-15" + "user": "SCHAEFER OLAF", + "timestamp": "2022-12-26" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "KLING GEOFFREY", - "timestamp": "2023-08-08" + "user": "CUMMERATA ANDY", + "timestamp": "2014-06-25" }, { - "siteRegistry": true, + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "NIENOW ALVERTA", - "timestamp": "2023-06-28" + "user": "LITTEL CHANEL", + "timestamp": "2023-04-21" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "ANDERSON JANICE", - "timestamp": "2018-10-20" + "user": "SWIFT EDWINA", + "timestamp": "2022-11-05" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "WILKINSON CHRISTIAN", + "timestamp": "2023-04-21" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "SIPES SKYLA", - "timestamp": "2018-03-29" + "user": "LARSON CORINE", + "timestamp": "2019-01-21" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "WILLMS ARACELY", - "timestamp": "2019-08-03" + "user": "DIBBERT LOUIE", + "timestamp": "2022-06-18" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "PADBERG IGNACIO", + "timestamp": "2015-04-08" } ], "associatedSites": [ { - "dateNoted": "2016-11-13", + "dateNoted": "2017-12-25", "notes": "", - "parcelID": "19426", - "siteID": "18179", + "parcelID": "19979", + "siteID": "19051", "siteRegistry": true + }, + { + "dateNoted": "2014-07-02", + "notes": "", + "parcelID": "15489", + "siteID": "17982", + "siteRegistry": false } ] }, { - "uuid": "14759b1f-e6b3-42cf-89cd-283cf40e2b55", - "siteID": 16876, - "address": "778 Sammy Union", - "latitude": 56.2544, - "longitude": -123.6943, - "lastUpdated": "2013-12-10", - "city": "Lake Yoshiko", - "region": "Cariboo", - "victoriaFile": "26250-20/7117", + "uuid": "d15a8f99-edc1-4c65-8108-5eba95e40905", + "siteID": 15482, + "address": "243 Liam Valley", + "latitude": 56.5062, + "longitude": -137.7754, + "lastUpdated": "2015-04-16", + "city": "Aubreefield", + "region": "Thompson-Okanagan", + "victoriaFile": "26250-20/4788", "regionalFile": "N/A", "parcelIDs": [ - 1416243, - 318519, - 2115164, - 8411406, - 7854645 + 5327652, + 7337957, + 8686010, + 1864449, + 7392861 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2018-12-08", - "completed": "2016-04-24", - "initiated": "2021-12-11", - "ministryContact": "PAUCEK FRANCISCA", + "createdAt": "2018-03-09", + "completed": "2020-04-11", + "initiated": "2021-06-25", + "ministryContact": "FRAMI LILY", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -14952,23 +15579,28 @@ "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false } ], "siteRegistry": true }, { - "createdAt": "2018-06-02", - "completed": "2019-12-12", - "initiated": "2014-07-04", - "ministryContact": "LEGROS LADARIUS", + "createdAt": "2015-12-02", + "completed": "2017-01-31", + "initiated": "2022-12-08", + "ministryContact": "ORN DANE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -14981,84 +15613,155 @@ "role": "REQUESTED BY", "siteRegistry": false }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false } ], "participants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2014-08-02", - "startDate": "2019-03-09", + "name": "IPSUM", + "endDate": "2014-05-26", + "startDate": "2022-12-12", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", - "endDate": "2022-06-29", - "startDate": "2023-03-02", + "endDate": "2019-10-14", + "startDate": "2023-07-18", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "name": "IPSUM", + "endDate": "2017-12-07", + "startDate": "2022-09-12", + "notes": "", + "roles": [ + "ORGANIZATION" ], "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2019-11-25", - "startDate": "2015-12-08", + "name": "AMET, DOLOR SIT", + "endDate": "2022-06-04", + "startDate": "2017-05-28", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": true + "siteRegistry": false } ], "suspectLandUses": [ { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-05-09 (described on Site Profile dated 2019-05-09)", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2017-09-21 (described on Site Profile dated 2017-09-21)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-02-11 (described on Site Profile dated 2015-02-11)", + "notes": "INSERTED FOR SITE PROFILE DATED 2019-11-23 (described on Site Profile dated 2019-11-23)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2014-06-25 (described on Site Profile dated 2014-06-25)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2016-10-04 (described on Site Profile dated 2016-10-04)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2020-07-15 (described on Site Profile dated 2020-07-15)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + } + ], + "parcelDescriptions": [ + { + "siteRegistry": false, + "dateNoted": "2017-04-06", + "parcelID": "20159", + "crownLandUsePIN": "18117", + "crownLandFileNumber": "15871", + "landDescription": "LOT 1 OF LOT 5 BLOCK 1 DISTRICT LOT 3 PLAN 8115" + }, + { + "siteRegistry": true, + "dateNoted": "2017-05-16", + "parcelID": "20185", + "crownLandUsePIN": "18862", + "crownLandFileNumber": "20676", + "landDescription": "LOT 2 OF LOT 5 BLOCK 4 DISTRICT LOT 1 PLAN 8374" + }, { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-08-15 (described on Site Profile dated 2017-08-15)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "dateNoted": "2015-10-17", + "parcelID": "19501", + "crownLandUsePIN": "19867", + "crownLandFileNumber": "16797", + "landDescription": "LOT 5 OF LOT 2 BLOCK 4 DISTRICT LOT 3 PLAN 7176" } ], "siteDisclosures": [ { - "siteRegistry": false, - "dateReceived": "2022-12-07", - "dateCompleted": "2018-10-16", - "dateEntered": "2023-02-24", - "dateRegistrar": "2018-09-21", - "dateLocalAuthorityReceived": "2017-04-15", - "summary": "Consectetur cupiditate maxime commodi quam deserunt minima voluptatum.", - "informationUsed": "Temporibus libero fuga adipisci itaque adipisci.\nError adipisci iste eaque.\nSequi nulla voluptates qui delectus consequuntur hic atque fugit ullam.\nAdipisci placeat mollitia illo ad.", - "pastOrPresentOrders": "Accusamus numquam voluptatem quo aperiam molestias consequuntur consectetur.\nLaborum reprehenderit deserunt odio ex harum.", + "siteRegistry": true, + "dateReceived": "2015-11-07", + "dateCompleted": "2022-01-10", + "dateEntered": "2017-02-06", + "dateRegistrar": "2018-04-04", + "dateLocalAuthorityReceived": "2019-12-02", + "summary": "Libero aut soluta iusto vitae voluptatem error nihil sint.", + "informationUsed": "Commodi corporis atque.\nAsperiores fuga ducimus nisi ab in dolorem.\nQuam nemo mollitia ab consequuntur magni rerum.\nQuam cum sunt aut tempora eveniet.\nEnim iure tempora tempore ab excepturi cumque adipisci.", + "pastOrPresentOrders": "Minus omnis praesentium temporibus enim amet quam.", "commercialAndIndustrialPurposes": [ { "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, { "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true } ] @@ -15068,89 +15771,95 @@ { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "MULLER FIONA", - "timestamp": "2017-06-06" + "user": "WINTHEISER BERNIECE", + "timestamp": "2016-01-22" }, { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "MANN DASHAWN", - "timestamp": "2019-11-07" + "user": "REINGER BRANDI", + "timestamp": "2018-03-30" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "DIBBERT HELLEN", - "timestamp": "2019-12-11" + "user": "YUNDT DELPHIA", + "timestamp": "2018-09-28" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "MERTZ ERNA", - "timestamp": "2017-05-20" + "user": "DICKI BERNIE", + "timestamp": "2023-05-29" }, { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "WARD URSULA", - "timestamp": "2014-01-02" + "user": "KERLUKE TANIA", + "timestamp": "2015-08-20" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "STAMM OMA", - "timestamp": "2023-08-20" + "user": "KOZEY KHALIL", + "timestamp": "2021-07-14" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "WARD CLARK", + "timestamp": "2015-10-07" } ], "associatedSites": [ { - "dateNoted": "2018-06-06", + "dateNoted": "2023-10-04", "notes": "", - "parcelID": "15518", - "siteID": "15752", + "parcelID": "16855", + "siteID": "16701", "siteRegistry": false }, { - "dateNoted": "2023-08-05", + "dateNoted": "2023-07-06", "notes": "", - "parcelID": "20013", - "siteID": "19962", - "siteRegistry": true + "parcelID": "19430", + "siteID": "18801", + "siteRegistry": false }, { - "dateNoted": "2020-05-23", + "dateNoted": "2019-02-13", "notes": "", - "parcelID": "17094", - "siteID": "17548", + "parcelID": "18106", + "siteID": "19608", "siteRegistry": false } ] }, { - "uuid": "e4e6ab22-2bb8-4758-8da1-d541c7809064", - "siteID": 17224, - "address": "4433 Jones Rest", - "latitude": 53.9797, - "longitude": -118.271, - "lastUpdated": "2014-03-27", - "city": "New Bailee", + "uuid": "edc1e47d-fc36-432c-a55f-c540d1016b0c", + "siteID": 20407, + "address": "4593 Reinger Parks", + "latitude": 49.948, + "longitude": -122.5913, + "lastUpdated": "2017-02-17", + "city": "Fort Travonstead", "region": "Thompson-Okanagan", - "victoriaFile": "26250-20/7680", + "victoriaFile": "26250-20/6017", "regionalFile": "N/A", "parcelIDs": [ - 1065208, - 4015944, - 8780275, - 8544942, - 7269359 + 3154808, + 2946298, + 6963999, + 7834429, + 5251995 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2023-07-23", - "completed": "2021-04-29", - "initiated": "2021-05-30", - "ministryContact": "ZIEME LELIA", + "createdAt": "2018-04-13", + "completed": "2019-11-18", + "initiated": "2017-04-23", + "ministryContact": "DICKENS OTIS", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -15165,32 +15874,32 @@ }, { "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2018-08-18", - "completed": "2019-07-03", - "initiated": "2019-01-10", - "ministryContact": "FARRELL HAYLEY", + "createdAt": "2018-01-30", + "completed": "2017-02-15", + "initiated": "2016-01-14", + "ministryContact": "MILLS CASANDRA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -15200,28 +15909,58 @@ "notationParticipants": [ { "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "createdAt": "2020-03-29", + "completed": "2021-07-05", + "initiated": "2020-12-13", + "ministryContact": "WEHNER LARON", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true } ], "participants": [ { - "name": "IPSUM", - "endDate": "2017-01-03", - "startDate": "2022-02-03", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2014-05-17", + "startDate": "2019-11-24", "notes": "", "roles": [ "ORGANIZATION" @@ -15229,9 +15968,9 @@ "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2014-11-04", - "startDate": "2017-09-08", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2019-08-30", + "startDate": "2022-06-06", "notes": "", "roles": [ "EMPLOYEE" @@ -15239,91 +15978,91 @@ "siteRegistry": false }, { - "name": "AMET, DOLOR SIT", - "endDate": "2016-04-01", - "startDate": "2016-07-23", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2020-07-23", + "startDate": "2023-05-23", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true }, { - "name": "AMET, DOLOR SIT", - "endDate": "2021-03-19", - "startDate": "2015-05-08", + "name": "IPSUM", + "endDate": "2015-03-31", + "startDate": "2022-11-10", "notes": "", "roles": [ "ORGANIZATION" ], "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2023-06-14", + "startDate": "2018-03-17", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true } ], "suspectLandUses": [ { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2023-09-19 (described on Site Profile dated 2023-09-19)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "notes": "INSERTED FOR SITE PROFILE DATED 2020-02-17 (described on Site Profile dated 2020-02-17)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2020-06-27 (described on Site Profile dated 2020-06-27)", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2022-06-21 (described on Site Profile dated 2022-06-21)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" - }, + } + ], + "parcelDescriptions": [ { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-04-08 (described on Site Profile dated 2016-04-08)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "dateNoted": "2020-11-19", + "parcelID": "20860", + "crownLandUsePIN": "19491", + "crownLandFileNumber": "16545", + "landDescription": "LOT 5 OF LOT 1 BLOCK 5 DISTRICT LOT 4 PLAN 4782" }, { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-06-19 (described on Site Profile dated 2019-06-19)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "dateNoted": "2018-05-30", + "parcelID": "16178", + "crownLandUsePIN": "20724", + "crownLandFileNumber": "17747", + "landDescription": "LOT 5 OF LOT 4 BLOCK 5 DISTRICT LOT 5 PLAN 3391" } ], "siteDisclosures": [ { - "siteRegistry": true, - "dateReceived": "2023-02-09", - "dateCompleted": "2015-11-17", - "dateEntered": "2020-07-21", - "dateRegistrar": "2023-08-18", - "dateLocalAuthorityReceived": "2020-12-27", - "summary": "Id cumque fugiat ad libero voluptatem.", - "informationUsed": "Excepturi omnis eveniet repudiandae illum possimus quo.\nCorporis nihil dolor alias facilis.\nNam error id qui officia.\nRecusandae distinctio ad.\nSapiente itaque blanditiis voluptatum reprehenderit sunt ad earum temporibus nostrum.", - "pastOrPresentOrders": "Fugit mollitia voluptate.\nSint dolores quas at.\nNulla tempora velit debitis vel iure veniam incidunt.", + "siteRegistry": false, + "dateReceived": "2019-12-05", + "dateCompleted": "2020-11-16", + "dateEntered": "2015-09-01", + "dateRegistrar": "2015-08-16", + "dateLocalAuthorityReceived": "2017-05-25", + "summary": "Dicta excepturi laborum cumque perferendis animi minus asperiores temporibus.\nOptio sapiente esse tempore nobis cupiditate dicta.", + "informationUsed": "Quae ducimus laudantium consequatur architecto.\nQuos amet culpa delectus laudantium incidunt.\nMagnam consequuntur unde quis facilis.\nRatione dolor eius.", + "pastOrPresentOrders": "Natus veritatis magnam corrupti vero laboriosam nemo at sapiente omnis.\nAccusantium illum dicta reiciendis earum harum.\nVoluptatem doloribus esse nemo maiores culpa totam similique harum nulla.", "commercialAndIndustrialPurposes": [ { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false }, - { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true - } - ] - }, - { - "siteRegistry": true, - "dateReceived": "2019-09-28", - "dateCompleted": "2014-03-30", - "dateEntered": "2015-12-03", - "dateRegistrar": "2021-07-11", - "dateLocalAuthorityReceived": "2017-08-30", - "summary": "Assumenda tenetur cupiditate reiciendis.\nInventore expedita eius voluptatem veritatis ex eaque voluptatem repellendus dolorem.\nTempore ab iste nobis reiciendis veritatis.", - "informationUsed": "Voluptatibus rem dolores necessitatibus magni molestiae.\nUt qui iure nam nulla numquam consectetur consectetur.\nDolorum possimus exercitationem hic sequi rerum necessitatibus rem velit.\nFugit molestiae quod unde voluptas voluptates ullam.\nQuasi minus sunt sint nihil quibusdam inventore aut fugiat.", - "pastOrPresentOrders": "Non dolorum sit incidunt mollitia eaque.\nConsectetur at blanditiis totam vero blanditiis ipsa quos.\nUllam culpa sint ex a fugiat rerum natus.", - "commercialAndIndustrialPurposes": [ { "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false } ] @@ -15333,75 +16072,69 @@ { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "BODE KAILYN", - "timestamp": "2016-06-22" + "user": "REICHERT DELFINA", + "timestamp": "2015-09-12" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "MURRAY ZOIE", - "timestamp": "2019-10-24" + "user": "KREIGER SHAUN", + "timestamp": "2021-11-16" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "ZULAUF JEFF", - "timestamp": "2023-01-25" - }, - { - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "RUNTE DAISY", - "timestamp": "2022-02-03" + "user": "SCHAEFER DARIANA", + "timestamp": "2013-12-06" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "GOLDNER-HARBER ZULA", - "timestamp": "2019-01-10" + "user": "KING ERVIN", + "timestamp": "2022-11-02" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "WISOZK KARIANNE", - "timestamp": "2019-08-13" + "user": "KERTZMANN ROWAN", + "timestamp": "2017-03-30" } ], "associatedSites": [ { - "dateNoted": "2015-11-13", + "dateNoted": "2023-06-01", "notes": "", - "parcelID": "18684", - "siteID": "18884", + "parcelID": "18440", + "siteID": "18404", "siteRegistry": true } ] }, { - "uuid": "ec0fb120-1fa3-46bb-8e1e-e438bea7648b", - "siteID": 17809, - "address": "6864 Swift Corners", - "latitude": 57.4799, - "longitude": -133.1537, - "lastUpdated": "2016-09-26", - "city": "West Loyal", + "uuid": "bb250d17-cd43-407d-8845-3979ea4d8f85", + "siteID": 20468, + "address": "17050 Ophelia Creek", + "latitude": 56.5159, + "longitude": -136.3001, + "lastUpdated": "2022-05-22", + "city": "Port Derick", "region": "Mainland/Southwest", - "victoriaFile": "26250-20/12527", + "victoriaFile": "26250-20/2690", "regionalFile": "N/A", "parcelIDs": [ - 7797424, - 5285151, - 6361440, - 2277570, - 793223 + 4418482, + 5827357, + 5770514, + 5084508, + 2121788 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2023-08-21", - "completed": "2018-10-05", - "initiated": "2021-09-08", - "ministryContact": "O'KON ANGELITA", + "createdAt": "2022-02-13", + "completed": "2016-12-14", + "initiated": "2020-12-26", + "ministryContact": "MUELLER DIEGO", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -15410,38 +16143,63 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "createdAt": "2018-04-05", + "completed": "2014-08-30", + "initiated": "2020-12-20", + "ministryContact": "ROWE JUSTINE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2017-02-19", - "completed": "2016-09-02", - "initiated": "2014-12-05", - "ministryContact": "KOEPP NICOLE", + "createdAt": "2013-12-10", + "completed": "2018-05-27", + "initiated": "2017-03-21", + "ministryContact": "WALKER JUSTINA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -15450,33 +16208,58 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "createdAt": "2021-10-14", + "completed": "2017-03-17", + "initiated": "2013-11-19", + "ministryContact": "KONOPELSKI PASQUALE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2021-08-05", - "completed": "2021-09-04", - "initiated": "2018-11-14", - "ministryContact": "TURNER EMILY", + "createdAt": "2017-09-25", + "completed": "2020-06-13", + "initiated": "2019-04-11", + "ministryContact": "CONSIDINE PANSY", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -15491,21 +16274,11 @@ }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true } @@ -15515,22 +16288,22 @@ ], "participants": [ { - "name": "IPSUM", - "endDate": "2022-02-26", - "startDate": "2016-11-09", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2017-03-11", + "startDate": "2022-05-03", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": true }, { - "name": "IPSUM", - "endDate": "2020-04-13", - "startDate": "2016-06-28", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2017-06-11", + "startDate": "2019-09-03", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": true } @@ -15538,41 +16311,73 @@ "suspectLandUses": [ { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-08-29 (described on Site Profile dated 2021-08-29)", + "notes": "INSERTED FOR SITE PROFILE DATED 2020-09-02 (described on Site Profile dated 2020-09-02)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-12-01 (described on Site Profile dated 2021-12-01)", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2018-05-15 (described on Site Profile dated 2018-05-15)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2017-05-05 (described on Site Profile dated 2017-05-05)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + } + ], + "parcelDescriptions": [ { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2023-08-13 (described on Site Profile dated 2023-08-13)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "dateNoted": "2014-02-09", + "parcelID": "15204", + "crownLandUsePIN": "18818", + "crownLandFileNumber": "20331", + "landDescription": "LOT 3 OF LOT 4 BLOCK 5 DISTRICT LOT 1 PLAN 8031" + }, + { + "siteRegistry": true, + "dateNoted": "2015-06-16", + "parcelID": "19740", + "crownLandUsePIN": "16970", + "crownLandFileNumber": "18930", + "landDescription": "LOT 1 OF LOT 3 BLOCK 4 DISTRICT LOT 4 PLAN 5330" }, { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-05-12 (described on Site Profile dated 2019-05-12)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "dateNoted": "2022-02-10", + "parcelID": "17715", + "crownLandUsePIN": "17295", + "crownLandFileNumber": "19971", + "landDescription": "LOT 2 OF LOT 2 BLOCK 5 DISTRICT LOT 2 PLAN 7091" }, { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-08-23 (described on Site Profile dated 2022-08-23)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "dateNoted": "2023-07-15", + "parcelID": "17776", + "crownLandUsePIN": "18966", + "crownLandFileNumber": "17801", + "landDescription": "LOT 3 OF LOT 4 BLOCK 2 DISTRICT LOT 4 PLAN 9157" + }, + { + "siteRegistry": false, + "dateNoted": "2019-03-02", + "parcelID": "18764", + "crownLandUsePIN": "15841", + "crownLandFileNumber": "16187", + "landDescription": "LOT 3 OF LOT 4 BLOCK 1 DISTRICT LOT 5 PLAN 3168" } ], "siteDisclosures": [ { "siteRegistry": false, - "dateReceived": "2023-07-20", - "dateCompleted": "2021-12-15", - "dateEntered": "2014-08-28", - "dateRegistrar": "2018-02-24", - "dateLocalAuthorityReceived": "2020-05-11", - "summary": "Rem mollitia corrupti incidunt facere amet doloremque vel.", - "informationUsed": "Error eaque a assumenda explicabo autem ad quae.\nSuscipit ducimus excepturi esse laboriosam corporis nulla aspernatur maxime.\nPariatur impedit impedit.", - "pastOrPresentOrders": "Minus perferendis ab.\nAut dignissimos nulla rem deserunt.", + "dateReceived": "2015-06-01", + "dateCompleted": "2014-07-05", + "dateEntered": "2022-09-16", + "dateRegistrar": "2019-03-17", + "dateLocalAuthorityReceived": "2018-08-11", + "summary": "Aspernatur tempore quidem beatae modi possimus.", + "informationUsed": "Cumque minus dolores nam accusantium.\nOdio cum soluta soluta ratione consequatur tempora quisquam expedita.\nDoloremque sequi nesciunt distinctio quia repudiandae.\nIn numquam sequi nihil nisi unde reiciendis quasi ullam praesentium.\nLaudantium autem quos perferendis quas consequuntur.", + "pastOrPresentOrders": "Beatae beatae maxime expedita repellat.", "commercialAndIndustrialPurposes": [ { "scheduleReference": "F2*", @@ -15581,31 +16386,31 @@ }, { "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true }, { - "scheduleReference": "F2*", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, { "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false } ] }, { - "siteRegistry": true, - "dateReceived": "2019-09-07", - "dateCompleted": "2014-10-14", - "dateEntered": "2015-12-29", - "dateRegistrar": "2021-01-30", - "dateLocalAuthorityReceived": "2019-06-20", - "summary": "Magnam aperiam deserunt accusantium autem excepturi.\nCum quae tenetur culpa illo sequi.\nDicta repudiandae quis iusto eligendi porro quos ab ipsa.", - "informationUsed": "Enim quo molestias necessitatibus excepturi alias nisi consectetur sequi.\nLaborum soluta unde quisquam cum inventore excepturi magnam.\nNihil debitis odit optio asperiores nulla corporis porro.\nMolestias vel nulla consequatur modi cupiditate hic porro adipisci non.", - "pastOrPresentOrders": "Accusantium similique occaecati inventore.\nQuibusdam quos quos voluptas fuga velit.\nEx consequatur dolor ut ducimus aliquam ratione eaque excepturi.", + "siteRegistry": false, + "dateReceived": "2015-09-08", + "dateCompleted": "2022-04-23", + "dateEntered": "2018-09-18", + "dateRegistrar": "2017-07-16", + "dateLocalAuthorityReceived": "2020-07-06", + "summary": "Consectetur eius ad vero reprehenderit commodi saepe assumenda magnam totam.", + "informationUsed": "Atque libero reiciendis sunt voluptas quo quod voluptatibus.\nFugiat soluta iusto labore dolores deleniti iure.\nQuo reprehenderit dolorem iste.\nVoluptas maxime facilis enim cum accusamus ipsum magni commodi.", + "pastOrPresentOrders": "Itaque nemo tempora minima facere ratione numquam sit a exercitationem.", "commercialAndIndustrialPurposes": [ { "scheduleReference": "F1*", @@ -15614,8 +16419,8 @@ }, { "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false } ] } @@ -15624,81 +16429,99 @@ { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "WHITE MARILOU", - "timestamp": "2021-05-24" + "user": "STAMM LONZO", + "timestamp": "2023-06-04" }, { - "siteRegistry": true, + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "BEAHAN NELS", - "timestamp": "2018-12-04" + "user": "HANE LACY", + "timestamp": "2022-02-08" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "GIBSON ERWIN", - "timestamp": "2018-05-11" + "user": "THIEL ALDA", + "timestamp": "2018-08-28" }, { - "siteRegistry": true, + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "OKUNEVA ISSAC", - "timestamp": "2023-05-02" + "user": "LARKIN ALIZE", + "timestamp": "2021-01-15" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "ARMSTRONG ASHTYN", - "timestamp": "2019-11-21" + "user": "BERGE FRIEDRICH", + "timestamp": "2017-08-01" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "MCKENZIE RAINA", - "timestamp": "2017-12-27" + "user": "CONROY HESTER", + "timestamp": "2014-03-07" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "TOWNE RALEIGH", - "timestamp": "2021-11-17" + "user": "POLLICH LYSANNE", + "timestamp": "2015-02-14" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "LUETTGEN ORAN", + "timestamp": "2022-11-30" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "GOODWIN BERNICE", + "timestamp": "2020-01-12" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "ROHAN NATALIE", + "timestamp": "2021-07-02" } ], "associatedSites": [ { - "dateNoted": "2017-04-16", + "dateNoted": "2014-02-10", "notes": "", - "parcelID": "17832", - "siteID": "18995", - "siteRegistry": true + "parcelID": "18041", + "siteID": "19907", + "siteRegistry": false } ] }, { - "uuid": "b7391e5d-e9f9-45c8-8c09-e3cdc4497216", - "siteID": 15944, - "address": "723 Abdul Mill", - "latitude": 53.4829, - "longitude": -119.9065, - "lastUpdated": "2017-08-01", - "city": "Fort Blakefort", - "region": "Kootenay", - "victoriaFile": "26250-20/12646", + "uuid": "932d1edb-a26c-4d15-87fb-533627bec3e9", + "siteID": 15675, + "address": "25014 Rohan Well", + "latitude": 52.1587, + "longitude": -131.794, + "lastUpdated": "2019-11-06", + "city": "Marilieport", + "region": "Thompson-Okanagan", + "victoriaFile": "26250-20/10376", "regionalFile": "N/A", "parcelIDs": [ - 7223263, - 168064, - 803983, - 7803377, - 5896857 + 6263758, + 7786795, + 6416805, + 8782660, + 5993471 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2020-04-26", - "completed": "2019-10-29", - "initiated": "2016-06-26", - "ministryContact": "HANSEN EBONY", + "createdAt": "2019-02-03", + "completed": "2019-11-26", + "initiated": "2023-04-10", + "ministryContact": "KEELING EMILIO", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -15707,38 +16530,33 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2023-10-06", - "completed": "2022-03-14", - "initiated": "2023-06-25", - "ministryContact": "RUTHERFORD LADARIUS", + "createdAt": "2019-11-09", + "completed": "2017-06-26", + "initiated": "2014-01-11", + "ministryContact": "DENESIK MARIELLE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -15748,8 +16566,13 @@ "notationParticipants": [ { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", @@ -15760,10 +16583,10 @@ "siteRegistry": false }, { - "createdAt": "2017-09-26", - "completed": "2022-10-31", - "initiated": "2018-06-21", - "ministryContact": "BOEHM CLIFTON", + "createdAt": "2018-07-11", + "completed": "2021-05-22", + "initiated": "2023-09-13", + "ministryContact": "GISLASON ABIGAIL", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -15777,17 +16600,47 @@ "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", "siteRegistry": false }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "createdAt": "2018-04-09", + "completed": "2016-06-19", + "initiated": "2017-03-09", + "ministryContact": "MCCLURE SIMEON", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ { "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true } @@ -15797,9 +16650,9 @@ ], "participants": [ { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2022-06-17", - "startDate": "2020-05-22", + "name": "IPSUM", + "endDate": "2014-03-20", + "startDate": "2021-03-06", "notes": "", "roles": [ "EMPLOYEE" @@ -15807,222 +16660,205 @@ "siteRegistry": false }, { - "name": "IPSUM", - "endDate": "2018-12-30", - "startDate": "2023-03-09", + "name": "AMET, DOLOR SIT", + "endDate": "2018-02-01", + "startDate": "2022-08-16", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2017-03-09", - "startDate": "2014-09-07", + "name": "IPSUM", + "endDate": "2018-03-02", + "startDate": "2019-05-16", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": false + "siteRegistry": true } ], "suspectLandUses": [ { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-02-10 (described on Site Profile dated 2017-02-10)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "notes": "INSERTED FOR SITE PROFILE DATED 2013-12-08 (described on Site Profile dated 2013-12-08)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-12-31 (described on Site Profile dated 2021-12-31)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2014-09-19 (described on Site Profile dated 2014-09-19)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-06-11 (described on Site Profile dated 2017-06-11)", + "notes": "INSERTED FOR SITE PROFILE DATED 2018-02-17 (described on Site Profile dated 2018-02-17)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-02-12 (described on Site Profile dated 2016-02-12)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "notes": "INSERTED FOR SITE PROFILE DATED 2021-07-24 (described on Site Profile dated 2021-07-24)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-11-27 (described on Site Profile dated 2016-11-27)", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2014-02-25 (described on Site Profile dated 2014-02-25)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], + "parcelDescriptions": [ + { + "siteRegistry": true, + "dateNoted": "2022-11-17", + "parcelID": "20619", + "crownLandUsePIN": "19599", + "crownLandFileNumber": "15462", + "landDescription": "LOT 5 OF LOT 1 BLOCK 4 DISTRICT LOT 2 PLAN 6435" + }, + { + "siteRegistry": true, + "dateNoted": "2013-11-19", + "parcelID": "19708", + "crownLandUsePIN": "16332", + "crownLandFileNumber": "15681", + "landDescription": "LOT 4 OF LOT 3 BLOCK 2 DISTRICT LOT 5 PLAN 6454" + }, + { + "siteRegistry": false, + "dateNoted": "2016-12-11", + "parcelID": "16383", + "crownLandUsePIN": "18946", + "crownLandFileNumber": "16853", + "landDescription": "LOT 4 OF LOT 5 BLOCK 3 DISTRICT LOT 4 PLAN 4167" + } + ], "siteDisclosures": [ { "siteRegistry": true, - "dateReceived": "2015-05-06", - "dateCompleted": "2020-10-28", - "dateEntered": "2023-09-10", - "dateRegistrar": "2021-11-30", - "dateLocalAuthorityReceived": "2020-11-29", - "summary": "Repellendus quae pariatur.", - "informationUsed": "Officia culpa repudiandae.\nMollitia aliquam vel autem quidem asperiores odio nihil molestias.\nOmnis debitis assumenda facere atque quasi totam amet.", - "pastOrPresentOrders": "Delectus assumenda laborum incidunt consequatur libero rem.\nFacere natus exercitationem.\nSuscipit quasi repellendus quisquam architecto ipsam repudiandae temporibus deserunt esse.", + "dateReceived": "2021-03-25", + "dateCompleted": "2019-07-21", + "dateEntered": "2013-12-13", + "dateRegistrar": "2018-08-24", + "dateLocalAuthorityReceived": "2018-09-07", + "summary": "Architecto eaque laboriosam.\nNisi asperiores officia dicta beatae deserunt.\nVitae molestias tempora modi vitae culpa sapiente.", + "informationUsed": "Quos error debitis incidunt qui nostrum rem optio delectus.\nEst fugit molestias vitae aliquam eveniet.\nRecusandae consequatur quia nesciunt possimus voluptatum.", + "pastOrPresentOrders": "Delectus assumenda alias consectetur praesentium error non.", "commercialAndIndustrialPurposes": [ { - "scheduleReference": "F2*", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, { "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true } ] + } + ], + "activityLog": [ + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "DONNELLY-RICE IRWIN", + "timestamp": "2019-08-24" }, { "siteRegistry": false, - "dateReceived": "2022-06-27", - "dateCompleted": "2017-03-16", - "dateEntered": "2022-11-01", - "dateRegistrar": "2016-06-03", - "dateLocalAuthorityReceived": "2021-03-28", - "summary": "Ipsum doloribus sit quis optio culpa fugit.\nPariatur perspiciatis minus.", - "informationUsed": "Eius delectus soluta aspernatur corporis.\nAlias itaque consectetur rem.\nDignissimos aperiam iure.\nQuis non maiores est temporibus vel mollitia consequuntur.", - "pastOrPresentOrders": "Explicabo eaque in excepturi dolores ex.\nLaudantium enim minus ipsum totam dicta esse quasi.\nAd quae molestiae aliquam a porro.", - "commercialAndIndustrialPurposes": [ - { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false - }, - { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true - }, - { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true - }, - { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false - } - ] - } - ], - "activityLog": [ - { - "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "SCHUSTER HORTENSE", - "timestamp": "2020-10-17" + "user": "KOEPP REINA", + "timestamp": "2023-07-03" }, { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "LANG KHALIL", - "timestamp": "2020-03-27" + "user": "HODKIEWICZ GLORIA", + "timestamp": "2023-07-18" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "SIMONIS RYLEE", - "timestamp": "2021-05-27" + "user": "TURNER ARDITH", + "timestamp": "2019-08-31" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "LUEILWITZ MAVIS", - "timestamp": "2023-06-06" - }, - { - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "TOWNE SUZANNE", - "timestamp": "2020-05-13" + "user": "WHITE ISABELL", + "timestamp": "2020-05-07" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "POLLICH DARRICK", - "timestamp": "2014-08-01" + "user": "SCHAEFER NATHAN", + "timestamp": "2020-04-02" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "NIENOW CATHRINE", - "timestamp": "2016-02-19" + "user": "RATKE ABBIGAIL", + "timestamp": "2023-01-29" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "PROSACCO CAMILLA", - "timestamp": "2022-08-03" + "user": "WILLIAMSON RUBEN", + "timestamp": "2018-02-15" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "VOLKMAN ESTEBAN", - "timestamp": "2023-07-06" - }, - { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "CREMIN CAMYLLE", - "timestamp": "2021-08-20" + "user": "HERZOG-ROBERTS JOHNATHON", + "timestamp": "2016-08-04" } ], "associatedSites": [ { - "dateNoted": "2016-08-27", - "notes": "", - "parcelID": "15807", - "siteID": "17527", - "siteRegistry": true - }, - { - "dateNoted": "2018-05-18", - "notes": "", - "parcelID": "19487", - "siteID": "19159", - "siteRegistry": true - }, - { - "dateNoted": "2023-06-14", + "dateNoted": "2017-04-11", "notes": "", - "parcelID": "20591", - "siteID": "18884", + "parcelID": "20851", + "siteID": "16162", "siteRegistry": false } ] }, { - "uuid": "0f53fa23-860d-4615-9686-0719cbc5c88a", - "siteID": 19475, - "address": "5700 Florencio Highway", - "latitude": 48.7868, - "longitude": -132.0265, - "lastUpdated": "2023-03-25", - "city": "Anissaborough", - "region": "Vancouver Island/Coast", - "victoriaFile": "26250-20/5083", + "uuid": "66f2f21f-ad35-45ed-b421-b5e9c0bdec33", + "siteID": 20758, + "address": "848 Augusta Camp", + "latitude": 56.0962, + "longitude": -132.2269, + "lastUpdated": "2016-10-03", + "city": "Brandyburgh", + "region": "Thompson-Okanagan", + "victoriaFile": "26250-20/5440", "regionalFile": "N/A", "parcelIDs": [ - 372682, - 238569, - 6521923, - 2531305, - 2119550 + 9122075, + 4162427, + 8163402, + 2630216, + 8542968 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2022-02-24", - "completed": "2021-11-29", - "initiated": "2017-04-23", - "ministryContact": "KEMMER JACLYN", + "createdAt": "2014-10-05", + "completed": "2021-10-04", + "initiated": "2022-06-03", + "ministryContact": "HUDSON LENNA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -16032,19 +16868,49 @@ "notationParticipants": [ { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false + "role": "SUBMITTED BY", + "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "createdAt": "2017-06-17", + "completed": "2019-09-25", + "initiated": "2016-05-30", + "ministryContact": "BERGE JADA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": false }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", @@ -16054,10 +16920,10 @@ "siteRegistry": false }, { - "createdAt": "2022-07-31", - "completed": "2017-04-15", - "initiated": "2019-10-04", - "ministryContact": "MURAZIK STEPHON", + "createdAt": "2023-02-06", + "completed": "2021-09-15", + "initiated": "2016-07-18", + "ministryContact": "HETTINGER DELFINA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -16065,6 +16931,21 @@ "" ], "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", @@ -16079,10 +16960,10 @@ "siteRegistry": false }, { - "createdAt": "2019-06-26", - "completed": "2015-10-01", - "initiated": "2015-02-08", - "ministryContact": "VANDERVORT ITZEL", + "createdAt": "2017-10-30", + "completed": "2017-01-07", + "initiated": "2020-01-31", + "ministryContact": "SPENCER ALEXIE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -16095,6 +16976,26 @@ "role": "SUBMITTED BY", "siteRegistry": false }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "createdAt": "2020-12-25", + "completed": "2023-06-30", + "initiated": "2017-07-31", + "ministryContact": "HACKETT MACY", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", @@ -16104,16 +17005,31 @@ "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true } ], "participants": [ { - "name": "IPSUM", - "endDate": "2015-03-02", - "startDate": "2016-09-08", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2023-04-02", + "startDate": "2021-05-15", "notes": "", "roles": [ "EMPLOYEE" @@ -16121,67 +17037,123 @@ "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2021-03-16", - "startDate": "2015-08-12", + "name": "AMET, DOLOR SIT", + "endDate": "2016-02-16", + "startDate": "2017-01-27", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true }, { - "name": "AMET, DOLOR SIT", - "endDate": "2021-01-12", - "startDate": "2021-09-13", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2018-11-15", + "startDate": "2022-08-14", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2014-06-06", + "startDate": "2016-04-18", + "notes": "", + "roles": [ + "EMPLOYEE" ], "siteRegistry": false }, { "name": "IPSUM", - "endDate": "2020-04-08", - "startDate": "2017-01-04", + "endDate": "2015-07-27", + "startDate": "2023-04-09", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": false } ], "suspectLandUses": [ + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2022-01-23 (described on Site Profile dated 2022-01-23)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-11-09 (described on Site Profile dated 2017-11-09)", + "notes": "INSERTED FOR SITE PROFILE DATED 2021-08-03 (described on Site Profile dated 2021-08-03)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2016-07-23 (described on Site Profile dated 2016-07-23)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2022-01-21 (described on Site Profile dated 2022-01-21)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-01-14 (described on Site Profile dated 2022-01-14)", + "notes": "INSERTED FOR SITE PROFILE DATED 2019-05-30 (described on Site Profile dated 2019-05-30)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], + "parcelDescriptions": [ + { + "siteRegistry": true, + "dateNoted": "2018-08-10", + "parcelID": "20401", + "crownLandUsePIN": "19666", + "crownLandFileNumber": "19107", + "landDescription": "LOT 1 OF LOT 3 BLOCK 4 DISTRICT LOT 1 PLAN 8621" + }, + { + "siteRegistry": true, + "dateNoted": "2016-10-15", + "parcelID": "18771", + "crownLandUsePIN": "17040", + "crownLandFileNumber": "20212", + "landDescription": "LOT 3 OF LOT 1 BLOCK 3 DISTRICT LOT 2 PLAN 9549" + }, + { + "siteRegistry": true, + "dateNoted": "2020-01-11", + "parcelID": "20378", + "crownLandUsePIN": "18274", + "crownLandFileNumber": "18786", + "landDescription": "LOT 1 OF LOT 2 BLOCK 5 DISTRICT LOT 5 PLAN 7168" + } + ], "siteDisclosures": [ { - "siteRegistry": false, - "dateReceived": "2019-06-30", - "dateCompleted": "2014-07-21", - "dateEntered": "2022-07-02", - "dateRegistrar": "2020-08-12", - "dateLocalAuthorityReceived": "2020-10-09", - "summary": "Exercitationem ullam perspiciatis nemo harum ad quasi dolore.", - "informationUsed": "Mollitia praesentium quisquam facilis quo corrupti officiis quas.\nModi excepturi aperiam exercitationem quia.\nPerferendis iure dolore dolores blanditiis debitis quo placeat sit.\nLaudantium provident qui veritatis eaque.\nVero magnam animi accusantium architecto.", - "pastOrPresentOrders": "Totam beatae amet eius tempora quo officiis.\nIusto fugit dolor molestiae atque corporis id similique.", + "siteRegistry": true, + "dateReceived": "2014-03-18", + "dateCompleted": "2021-10-24", + "dateEntered": "2019-09-03", + "dateRegistrar": "2019-12-29", + "dateLocalAuthorityReceived": "2015-02-13", + "summary": "Totam possimus id repellat inventore.", + "informationUsed": "Veniam recusandae nulla dolores eos ab nesciunt suscipit fuga.\nQuas at harum similique iste.\nRecusandae quis quisquam sint enim aspernatur vero distinctio veniam voluptate.\nSed inventore blanditiis ad atque suscipit delectus veniam aperiam saepe.\nEst ut quas.", + "pastOrPresentOrders": "Officia accusamus aliquid.\nAperiam quas nam consectetur quam occaecati fugit.\nAccusantium aliquid esse dolorum illo aliquam inventore facere molestias quos.", "commercialAndIndustrialPurposes": [ { - "scheduleReference": "F1*", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true + "siteRegistry": false }, { - "scheduleReference": "F1*", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true } @@ -16189,103 +17161,90 @@ } ], "activityLog": [ - { - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "MOHR LOY", - "timestamp": "2023-05-03" - }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "ORN WILEY", - "timestamp": "2013-12-23" + "user": "SMITH LOU", + "timestamp": "2022-08-06" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "ZIEMANN AMARA", - "timestamp": "2014-02-18" + "user": "SCHMITT SONNY", + "timestamp": "2015-04-21" }, { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "SHANAHAN MAXWELL", - "timestamp": "2017-08-29" + "user": "ABSHIRE BERNIE", + "timestamp": "2023-09-14" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "SWANIAWSKI-MACGYVER ALEX", - "timestamp": "2022-10-04" + "user": "FRANEY ARACELI", + "timestamp": "2014-03-01" }, { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "GLEASON-LEFFLER JEANIE", - "timestamp": "2018-03-19" + "user": "PURDY MAXIE", + "timestamp": "2016-11-01" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "CONSIDINE FLORINE", - "timestamp": "2016-03-03" + "user": "BRAUN ADRIANNA", + "timestamp": "2015-09-29" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "WILKINSON CAROLINE", - "timestamp": "2018-05-16" + "user": "EMMERICH TYREE", + "timestamp": "2016-02-09" }, { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "HAGENES JAMESON", - "timestamp": "2020-02-29" + "user": "BARTOLETTI-HARRIS BRENNA", + "timestamp": "2016-05-18" } ], "associatedSites": [ { - "dateNoted": "2013-11-10", - "notes": "", - "parcelID": "17592", - "siteID": "18999", - "siteRegistry": true - }, - { - "dateNoted": "2013-12-03", + "dateNoted": "2019-01-28", "notes": "", - "parcelID": "17767", - "siteID": "19962", + "parcelID": "20957", + "siteID": "17387", "siteRegistry": false } ] }, { - "uuid": "bcd22a32-dc31-4f92-86e0-5720cbc9acae", - "siteID": 20877, - "address": "80100 Deon Mills", - "latitude": 48.6114, - "longitude": -118.1815, - "lastUpdated": "2018-09-27", - "city": "Port Kobyfield", + "uuid": "871b0580-86b9-446a-92c4-6c3f4ab8dcb2", + "siteID": 16392, + "address": "4286 Doyle Oval", + "latitude": 54.5788, + "longitude": -137.155, + "lastUpdated": "2018-12-18", + "city": "Redwood City", "region": "Mainland/Southwest", - "victoriaFile": "26250-20/17724", + "victoriaFile": "26250-20/19332", "regionalFile": "N/A", "parcelIDs": [ - 721757, - 2994540, - 800856, - 8008535, - 2829689 + 2312182, + 5977596, + 7438541, + 7083146, + 4665320 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2016-02-08", - "completed": "2014-03-24", - "initiated": "2020-12-14", - "ministryContact": "WALSH MADDISON", + "createdAt": "2019-01-24", + "completed": "2015-09-13", + "initiated": "2017-09-27", + "ministryContact": "GLEASON GAETANO", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -16295,8 +17254,8 @@ "notationParticipants": [ { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true + "role": "REQUESTED BY", + "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", @@ -16304,12 +17263,27 @@ "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": true - }, + } + ], + "siteRegistry": true + }, + { + "createdAt": "2019-02-10", + "completed": "2018-02-28", + "initiated": "2020-03-11", + "ministryContact": "REICHERT DAYNA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false }, @@ -16322,10 +17296,10 @@ "siteRegistry": true }, { - "createdAt": "2020-05-26", - "completed": "2016-08-28", - "initiated": "2022-05-14", - "ministryContact": "CONROY CHAYA", + "createdAt": "2020-08-14", + "completed": "2016-12-22", + "initiated": "2019-01-02", + "ministryContact": "SAUER KIRA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -16334,23 +17308,33 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2023-07-10", - "completed": "2023-08-07", - "initiated": "2017-06-12", - "ministryContact": "CREMIN LEOPOLD", + "createdAt": "2019-04-23", + "completed": "2023-09-12", + "initiated": "2023-03-09", + "ministryContact": "TREMBLAY ARNALDO", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -16364,23 +17348,33 @@ "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2023-08-18", - "completed": "2020-05-19", - "initiated": "2018-03-14", - "ministryContact": "GREENHOLT SHANE", + "createdAt": "2020-10-30", + "completed": "2014-11-16", + "initiated": "2022-12-23", + "ministryContact": "MARKS-FRITSCH ADITYA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -16390,92 +17384,136 @@ "notationParticipants": [ { "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false } ], "participants": [ { "name": "AMET, DOLOR SIT", - "endDate": "2017-01-19", - "startDate": "2016-04-18", + "endDate": "2016-04-21", + "startDate": "2015-10-29", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2019-08-12", - "startDate": "2020-08-25", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2020-03-19", + "startDate": "2015-07-04", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", - "endDate": "2018-09-01", - "startDate": "2023-06-12", + "endDate": "2022-06-07", + "startDate": "2013-12-06", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": true + "siteRegistry": false + }, + { + "name": "IPSUM", + "endDate": "2013-11-06", + "startDate": "2018-10-13", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false } ], "suspectLandUses": [ { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-02-02 (described on Site Profile dated 2021-02-02)", + "notes": "INSERTED FOR SITE PROFILE DATED 2023-03-05 (described on Site Profile dated 2023-03-05)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-03-26 (described on Site Profile dated 2022-03-26)", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2016-03-04 (described on Site Profile dated 2016-03-04)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2023-08-26 (described on Site Profile dated 2023-08-26)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2016-03-07 (described on Site Profile dated 2016-03-07)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + } + ], + "parcelDescriptions": [ + { + "siteRegistry": false, + "dateNoted": "2022-04-13", + "parcelID": "19137", + "crownLandUsePIN": "18304", + "crownLandFileNumber": "17321", + "landDescription": "LOT 5 OF LOT 3 BLOCK 1 DISTRICT LOT 1 PLAN 8068" + }, + { + "siteRegistry": false, + "dateNoted": "2023-02-06", + "parcelID": "17596", + "crownLandUsePIN": "19789", + "crownLandFileNumber": "17999", + "landDescription": "LOT 1 OF LOT 4 BLOCK 4 DISTRICT LOT 2 PLAN 8781" + }, + { + "siteRegistry": false, + "dateNoted": "2017-07-21", + "parcelID": "19411", + "crownLandUsePIN": "19977", + "crownLandFileNumber": "15507", + "landDescription": "LOT 4 OF LOT 4 BLOCK 5 DISTRICT LOT 3 PLAN 4000" + }, + { + "siteRegistry": false, + "dateNoted": "2021-05-23", + "parcelID": "20950", + "crownLandUsePIN": "18156", + "crownLandFileNumber": "17511", + "landDescription": "LOT 2 OF LOT 1 BLOCK 2 DISTRICT LOT 3 PLAN 4710" } ], "siteDisclosures": [ { "siteRegistry": true, - "dateReceived": "2016-01-13", - "dateCompleted": "2020-08-16", - "dateEntered": "2016-02-22", - "dateRegistrar": "2018-06-19", - "dateLocalAuthorityReceived": "2023-02-25", - "summary": "Iste debitis distinctio blanditiis.\nOccaecati doloribus officia cumque voluptatem occaecati aliquam consequatur a.", - "informationUsed": "Possimus aut assumenda sequi temporibus labore quis nulla suscipit.\nRepudiandae sapiente enim officiis nam rerum assumenda nulla dolorum ut.\nSit quas exercitationem cum temporibus doloribus laborum placeat.\nMaxime eligendi in tenetur accusamus nobis earum suscipit sequi.", - "pastOrPresentOrders": "Voluptatum quos laboriosam mollitia sed omnis ex numquam cumque.", + "dateReceived": "2023-07-06", + "dateCompleted": "2017-12-11", + "dateEntered": "2016-07-04", + "dateRegistrar": "2014-05-10", + "dateLocalAuthorityReceived": "2022-07-22", + "summary": "Eligendi distinctio officia quod consequuntur impedit.\nProvident natus illum deserunt magni.\nQuam nostrum quidem numquam enim est.", + "informationUsed": "Nesciunt deserunt iste.\nAdipisci impedit sed.\nNumquam explicabo officia exercitationem.\nCulpa voluptate nisi libero iusto facere molestiae sunt.\nAperiam dolor ducimus eveniet ex qui unde vitae repellendus quam.", + "pastOrPresentOrders": "Accusantium nostrum totam veniam tempora vero unde illum.", "commercialAndIndustrialPurposes": [ - { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false - }, - { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true - }, { "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false + "siteRegistry": true }, { "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false } ] @@ -16485,69 +17523,89 @@ { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "DOYLE DARYL", - "timestamp": "2014-03-01" + "user": "BASHIRIAN YASMINE", + "timestamp": "2020-12-06" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "HERMANN-GRANT MELYNA", - "timestamp": "2019-09-23" + "user": "NIKOLAUS JAMMIE", + "timestamp": "2023-08-06" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "WINDLER HILMA", + "timestamp": "2023-08-13" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "ROLFSON ZACHARY", - "timestamp": "2017-04-11" + "user": "ROBERTS FRED", + "timestamp": "2021-04-08" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "CHAMPLIN VELMA", - "timestamp": "2016-04-18" + "user": "KOELPIN GARETT", + "timestamp": "2022-08-29" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "THIEL HALIE", - "timestamp": "2021-01-02" + "user": "KLEIN EASTER", + "timestamp": "2018-09-27" } ], "associatedSites": [ { - "dateNoted": "2023-09-29", + "dateNoted": "2017-12-21", "notes": "", - "parcelID": "17660", - "siteID": "19899", - "siteRegistry": true + "parcelID": "17404", + "siteID": "19984", + "siteRegistry": false + }, + { + "dateNoted": "2018-06-04", + "notes": "", + "parcelID": "18279", + "siteID": "16640", + "siteRegistry": false + }, + { + "dateNoted": "2016-12-17", + "notes": "", + "parcelID": "20161", + "siteID": "19593", + "siteRegistry": false } ] }, { - "uuid": "e72636a0-454f-407e-8869-84a6f76811be", - "siteID": 20775, - "address": "716 Kovacek Canyon", - "latitude": 52.7722, - "longitude": -121.8371, - "lastUpdated": "2022-04-01", - "city": "North Howard", + "uuid": "c6eac531-7662-440d-81e0-ecf702c2c3ac", + "siteID": 15789, + "address": "414 Rodriguez Summit", + "latitude": 49.6235, + "longitude": -135.8931, + "lastUpdated": "2022-09-18", + "city": "Starkhaven", "region": "Vancouver Island/Coast", - "victoriaFile": "26250-20/2787", + "victoriaFile": "26250-20/7959", "regionalFile": "N/A", "parcelIDs": [ - 5258105, - 8772932, - 1225035, - 8137624, - 681077 + 3520015, + 3754955, + 8837778, + 3558570, + 4613470 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2017-01-13", - "completed": "2019-09-20", - "initiated": "2020-06-29", - "ministryContact": "RENNER KENNEDY", + "createdAt": "2018-06-23", + "completed": "2018-09-23", + "initiated": "2018-01-22", + "ministryContact": "POWLOWSKI MARION", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -16556,23 +17614,33 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false } ], "siteRegistry": false }, { - "createdAt": "2023-09-16", - "completed": "2023-08-07", - "initiated": "2016-05-11", - "ministryContact": "LEMKE JUSTINE", + "createdAt": "2018-01-24", + "completed": "2013-10-22", + "initiated": "2021-06-02", + "ministryContact": "CUMMERATA RYLAN", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -16581,22 +17649,132 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "createdAt": "2015-11-09", + "completed": "2023-04-05", + "initiated": "2023-05-23", + "ministryContact": "BERNHARD XAVIER", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "createdAt": "2020-09-28", + "completed": "2015-02-03", + "initiated": "2022-02-14", + "ministryContact": "ABERNATHY EZEKIEL", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "createdAt": "2020-04-09", + "completed": "2019-07-29", + "initiated": "2020-04-27", + "ministryContact": "SCHADEN NYASIA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false } @@ -16606,19 +17784,19 @@ ], "participants": [ { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2022-05-26", - "startDate": "2016-10-02", + "name": "IPSUM", + "endDate": "2019-05-28", + "startDate": "2016-05-11", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", - "endDate": "2014-03-04", - "startDate": "2017-05-03", + "endDate": "2017-06-16", + "startDate": "2023-02-06", "notes": "", "roles": [ "EMPLOYEE" @@ -16626,67 +17804,109 @@ "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2016-05-05", - "startDate": "2021-01-26", + "name": "IPSUM", + "endDate": "2020-12-07", + "startDate": "2022-05-29", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": true } ], "suspectLandUses": [ - { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-02-08 (described on Site Profile dated 2022-02-08)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" - }, { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-07-24 (described on Site Profile dated 2022-07-24)", + "notes": "INSERTED FOR SITE PROFILE DATED 2022-09-26 (described on Site Profile dated 2022-09-26)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-02-06 (described on Site Profile dated 2022-02-06)", + "notes": "INSERTED FOR SITE PROFILE DATED 2016-08-20 (described on Site Profile dated 2016-08-20)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2016-08-06 (described on Site Profile dated 2016-08-06)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], + "parcelDescriptions": [ + { + "siteRegistry": true, + "dateNoted": "2022-05-21", + "parcelID": "18504", + "crownLandUsePIN": "20083", + "crownLandFileNumber": "17582", + "landDescription": "LOT 5 OF LOT 3 BLOCK 1 DISTRICT LOT 2 PLAN 8323" + }, + { + "siteRegistry": false, + "dateNoted": "2019-12-05", + "parcelID": "19464", + "crownLandUsePIN": "17366", + "crownLandFileNumber": "18772", + "landDescription": "LOT 5 OF LOT 3 BLOCK 3 DISTRICT LOT 3 PLAN 6310" + }, + { + "siteRegistry": true, + "dateNoted": "2016-06-25", + "parcelID": "20084", + "crownLandUsePIN": "15298", + "crownLandFileNumber": "20822", + "landDescription": "LOT 4 OF LOT 5 BLOCK 1 DISTRICT LOT 3 PLAN 8753" + }, + { + "siteRegistry": true, + "dateNoted": "2013-10-21", + "parcelID": "19361", + "crownLandUsePIN": "19355", + "crownLandFileNumber": "17950", + "landDescription": "LOT 1 OF LOT 4 BLOCK 1 DISTRICT LOT 3 PLAN 4833" + }, + { + "siteRegistry": true, + "dateNoted": "2019-09-29", + "parcelID": "19029", + "crownLandUsePIN": "16195", + "crownLandFileNumber": "19703", + "landDescription": "LOT 2 OF LOT 3 BLOCK 3 DISTRICT LOT 4 PLAN 5799" + } + ], "siteDisclosures": [ { "siteRegistry": false, - "dateReceived": "2019-09-01", - "dateCompleted": "2023-05-11", - "dateEntered": "2017-06-27", - "dateRegistrar": "2014-08-30", - "dateLocalAuthorityReceived": "2019-08-08", - "summary": "Ad iure ut minima.\nConsequuntur officiis deleniti reprehenderit distinctio ipsa quos similique.\nConsequatur distinctio molestias.", - "informationUsed": "Eius quidem velit id ea.\nRem quisquam ea in deserunt.\nAssumenda dolor fuga officia amet et.\nUt ipsa distinctio.", - "pastOrPresentOrders": "Nesciunt atque dolore.\nMolestias ex eos a est neque impedit sunt.", + "dateReceived": "2014-08-25", + "dateCompleted": "2014-04-08", + "dateEntered": "2018-11-19", + "dateRegistrar": "2019-08-14", + "dateLocalAuthorityReceived": "2019-04-23", + "summary": "Praesentium asperiores aliquam ullam dolore exercitationem.\nVero blanditiis ea magni nisi sit nisi beatae.\nDolore modi magni nam expedita iste impedit ab adipisci dolores.", + "informationUsed": "Facere id labore debitis nostrum officiis tenetur dignissimos veniam porro.\nDolore repellendus nostrum pariatur odit id nisi laboriosam voluptates iusto.\nTempora voluptates laboriosam.\nVero at alias non possimus a consequatur distinctio sapiente.\nQuae voluptatibus deleniti dolores porro.", + "pastOrPresentOrders": "Illo sint quo.\nOmnis expedita blanditiis corporis.\nVoluptatem veniam reiciendis odio ipsum ad officia voluptatibus suscipit.", "commercialAndIndustrialPurposes": [ { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, { "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false + "siteRegistry": true } ] }, { "siteRegistry": true, - "dateReceived": "2017-09-04", - "dateCompleted": "2021-07-06", - "dateEntered": "2017-08-28", - "dateRegistrar": "2021-08-19", - "dateLocalAuthorityReceived": "2020-03-07", - "summary": "Ratione earum hic officia rem illo laudantium.\nCorrupti commodi minus id tempore molestiae voluptates aliquid praesentium soluta.\nDolores quasi iusto facilis.", - "informationUsed": "Soluta amet illum cupiditate delectus accusamus voluptate autem.\nSed saepe libero.\nQuaerat aliquam nostrum magnam possimus.\nQuae rem iusto odio ab dignissimos.\nPariatur laboriosam pariatur dolore quae dolorem iure.", - "pastOrPresentOrders": "Tempore qui quibusdam totam dolore omnis magnam.\nVoluptate officia explicabo reprehenderit accusamus quo iusto molestiae iste doloremque.\nIpsum unde maxime ad.", + "dateReceived": "2019-02-20", + "dateCompleted": "2019-12-20", + "dateEntered": "2016-02-04", + "dateRegistrar": "2014-02-16", + "dateLocalAuthorityReceived": "2022-09-13", + "summary": "Praesentium iure exercitationem.\nEx blanditiis in.", + "informationUsed": "Officiis eum deserunt alias repellat sint quaerat occaecati.\nPariatur alias aperiam doloribus qui quasi.\nPorro perspiciatis veritatis.\nOfficia praesentium veritatis minus assumenda dolorem quibusdam.", + "pastOrPresentOrders": "Occaecati nobis labore labore assumenda aut perspiciatis molestiae.\nA minus nihil ducimus consequuntur ex voluptatem assumenda.\nNulla sed qui recusandae atque necessitatibus quaerat.", "commercialAndIndustrialPurposes": [ { "scheduleReference": "F1*", @@ -16695,8 +17915,8 @@ }, { "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true } ] } @@ -16705,93 +17925,113 @@ { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "KUVALIS MOSSIE", - "timestamp": "2016-02-13" + "user": "METZ ESTELL", + "timestamp": "2021-04-08" }, { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "LANGOSH JACINTO", - "timestamp": "2017-05-06" + "user": "VON AURELIE", + "timestamp": "2015-06-05" }, { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "ABSHIRE ESTRELLA", - "timestamp": "2023-10-05" + "user": "MCDERMOTT ABBIE", + "timestamp": "2017-05-08" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "SPINKA CASIMIR", - "timestamp": "2023-05-19" + "user": "KUHIC THELMA", + "timestamp": "2021-05-16" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "MCDERMOTT CHELSEA", - "timestamp": "2019-08-23" + "user": "AUER KATRINE", + "timestamp": "2020-11-18" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "KUB BRAULIO", - "timestamp": "2023-02-19" + "user": "VONRUEDEN MISSOURI", + "timestamp": "2020-11-27" }, { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "JACOBS-STEUBER AUBREE", - "timestamp": "2015-12-20" + "user": "REYNOLDS GARRY", + "timestamp": "2015-09-30" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "GUSIKOWSKI JEREMIE", - "timestamp": "2018-09-01" + "user": "CORKERY TYREL", + "timestamp": "2021-05-20" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "WATSICA MICHEAL", - "timestamp": "2016-08-09" + "user": "MURAZIK MELODY", + "timestamp": "2020-09-25" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "HEATHCOTE JEREL", + "timestamp": "2022-12-18" } ], "associatedSites": [ { - "dateNoted": "2021-07-02", + "dateNoted": "2013-12-12", + "notes": "", + "parcelID": "17160", + "siteID": "16890", + "siteRegistry": true + }, + { + "dateNoted": "2017-08-23", + "notes": "", + "parcelID": "19552", + "siteID": "15675", + "siteRegistry": false + }, + { + "dateNoted": "2020-05-12", "notes": "", - "parcelID": "18437", - "siteID": "20948", + "parcelID": "18119", + "siteID": "19138", "siteRegistry": false } ] }, { - "uuid": "cf0cab1a-55a5-4fcf-8143-dac4d1326609", - "siteID": 18999, - "address": "67044 Bradley Ford", - "latitude": 55.2441, - "longitude": -136.5097, - "lastUpdated": "2022-11-01", - "city": "East Kelleyton", - "region": "Cariboo", - "victoriaFile": "26250-20/4448", + "uuid": "b66dc0a0-98cc-4381-9c8a-482d69f839e6", + "siteID": 18608, + "address": "4802 Rodriguez Field", + "latitude": 51.9548, + "longitude": -133.3476, + "lastUpdated": "2019-02-10", + "city": "Petaluma", + "region": "Mainland/Southwest", + "victoriaFile": "26250-20/13936", "regionalFile": "N/A", "parcelIDs": [ - 7163375, - 4336962, - 9445257, - 1772374, - 3659770 + 9829521, + 9697891, + 7299095, + 179193, + 8036533 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2021-02-04", - "completed": "2016-07-22", - "initiated": "2021-08-23", - "ministryContact": "ABSHIRE CIERRA", + "createdAt": "2021-03-23", + "completed": "2022-04-18", + "initiated": "2021-05-04", + "ministryContact": "TERRY CATALINA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -16807,46 +18047,21 @@ { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true - } - ], - "siteRegistry": true - }, - { - "createdAt": "2015-01-04", - "completed": "2015-08-20", - "initiated": "2019-09-16", - "ministryContact": "PFEFFER SID", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2023-04-23", - "completed": "2019-05-18", - "initiated": "2020-01-09", - "ministryContact": "COLE EMANUEL", + "createdAt": "2017-07-12", + "completed": "2019-04-04", + "initiated": "2019-11-30", + "ministryContact": "TORP CLAUDIA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -16855,9 +18070,9 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", @@ -16866,18 +18081,13 @@ }, { "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false } ], "siteRegistry": true @@ -16886,204 +18096,240 @@ "participants": [ { "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2017-04-23", - "startDate": "2015-01-21", + "endDate": "2016-10-31", + "startDate": "2023-05-05", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": false + "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2014-03-08", - "startDate": "2019-04-11", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2020-01-31", + "startDate": "2020-08-13", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": false + "siteRegistry": true } ], "suspectLandUses": [ { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-05-23 (described on Site Profile dated 2022-05-23)", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2023-04-17 (described on Site Profile dated 2023-04-17)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-04-19 (described on Site Profile dated 2022-04-19)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "notes": "INSERTED FOR SITE PROFILE DATED 2018-10-12 (described on Site Profile dated 2018-10-12)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-08-14 (described on Site Profile dated 2018-08-14)", + "notes": "INSERTED FOR SITE PROFILE DATED 2019-08-25 (described on Site Profile dated 2019-08-25)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2014-07-19 (described on Site Profile dated 2014-07-19)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-11-15 (described on Site Profile dated 2022-11-15)", + "notes": "INSERTED FOR SITE PROFILE DATED 2016-04-22 (described on Site Profile dated 2016-04-22)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], - "siteDisclosures": [ + "parcelDescriptions": [ + { + "siteRegistry": false, + "dateNoted": "2019-07-23", + "parcelID": "16001", + "crownLandUsePIN": "17170", + "crownLandFileNumber": "17339", + "landDescription": "LOT 1 OF LOT 3 BLOCK 3 DISTRICT LOT 4 PLAN 3839" + }, { "siteRegistry": true, - "dateReceived": "2020-11-24", - "dateCompleted": "2017-04-13", - "dateEntered": "2022-09-11", - "dateRegistrar": "2023-06-28", - "dateLocalAuthorityReceived": "2014-01-18", - "summary": "Doloremque ducimus error accusamus.", - "informationUsed": "Ipsa modi aliquid corrupti ducimus.\nNeque nostrum temporibus quaerat occaecati.\nQuod tempore consequatur.\nPorro dolorem maiores voluptatum perferendis officiis dolores soluta vitae corrupti.", - "pastOrPresentOrders": "Debitis eaque quaerat.\nDolore inventore eos aperiam pariatur expedita rerum.", + "dateNoted": "2020-02-17", + "parcelID": "18909", + "crownLandUsePIN": "18082", + "crownLandFileNumber": "18707", + "landDescription": "LOT 4 OF LOT 3 BLOCK 2 DISTRICT LOT 4 PLAN 8502" + }, + { + "siteRegistry": false, + "dateNoted": "2014-11-16", + "parcelID": "16536", + "crownLandUsePIN": "15727", + "crownLandFileNumber": "18737", + "landDescription": "LOT 5 OF LOT 4 BLOCK 1 DISTRICT LOT 4 PLAN 4456" + }, + { + "siteRegistry": true, + "dateNoted": "2022-10-15", + "parcelID": "20751", + "crownLandUsePIN": "17626", + "crownLandFileNumber": "19445", + "landDescription": "LOT 3 OF LOT 1 BLOCK 3 DISTRICT LOT 2 PLAN 6171" + }, + { + "siteRegistry": true, + "dateNoted": "2021-07-25", + "parcelID": "17574", + "crownLandUsePIN": "18211", + "crownLandFileNumber": "19109", + "landDescription": "LOT 1 OF LOT 3 BLOCK 5 DISTRICT LOT 2 PLAN 7914" + } + ], + "siteDisclosures": [ + { + "siteRegistry": false, + "dateReceived": "2018-01-09", + "dateCompleted": "2020-07-04", + "dateEntered": "2017-01-30", + "dateRegistrar": "2019-02-04", + "dateLocalAuthorityReceived": "2018-12-19", + "summary": "Expedita odio vitae vitae dolore autem.", + "informationUsed": "Perspiciatis fugiat magni harum commodi tenetur quibusdam.\nDolorem exercitationem aliquid repellat minima corporis.\nSed nisi repudiandae repellat repellendus facilis modi corporis expedita aut.\nDoloremque perspiciatis expedita architecto animi.", + "pastOrPresentOrders": "Dolor dolor harum dolorum.", "commercialAndIndustrialPurposes": [ { "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, - { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true - }, { "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false - } - ] - }, - { - "siteRegistry": true, - "dateReceived": "2016-10-02", - "dateCompleted": "2014-02-12", - "dateEntered": "2016-08-31", - "dateRegistrar": "2021-03-28", - "dateLocalAuthorityReceived": "2020-08-06", - "summary": "Similique distinctio reiciendis sequi quae maxime ducimus suscipit velit adipisci.\nAsperiores fuga non molestias.\nUnde officiis perferendis consectetur quisquam voluptatum.", - "informationUsed": "Quos consectetur natus sunt.\nNumquam non minus.\nError culpa exercitationem doloremque voluptatibus placeat expedita labore.\nPerferendis pariatur vero nulla.\nVoluptatibus dolorum labore assumenda excepturi quod.", - "pastOrPresentOrders": "Quibusdam nesciunt cum impedit eius fugit.", - "commercialAndIndustrialPurposes": [ + }, { "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false }, { - "scheduleReference": "F2*", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false + "siteRegistry": true } ] } ], "activityLog": [ { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "HUDSON JACINTO", - "timestamp": "2016-06-30" + "user": "SAWAYN VIDAL", + "timestamp": "2017-02-04" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "HILLS ERVIN", - "timestamp": "2018-12-16" + "user": "RYAN JAEDEN", + "timestamp": "2017-08-09" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "GOTTLIEB LIBBIE", - "timestamp": "2021-03-07" + "user": "ORTIZ DESTANY", + "timestamp": "2020-05-20" }, { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "JACOBSON KEYON", - "timestamp": "2017-04-29" + "user": "LABADIE CHET", + "timestamp": "2021-02-08" }, { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "HANSEN ERWIN", - "timestamp": "2019-08-08" + "user": "BRUEN LAVINIA", + "timestamp": "2018-03-29" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "REICHERT LEDA", - "timestamp": "2023-10-08" + "user": "RATH-BARTOLETTI LIBBY", + "timestamp": "2020-08-12" }, { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "KRAJCIK DAYTON", - "timestamp": "2017-05-16" + "user": "LEDNER JETT", + "timestamp": "2014-06-14" }, { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "BALISTRERI HAILEE", - "timestamp": "2018-03-10" + "user": "HANSEN AMELY", + "timestamp": "2017-05-07" }, { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "POWLOWSKI CARLOS", - "timestamp": "2020-03-24" + "user": "HAYES PRINCE", + "timestamp": "2017-08-01" }, { - "siteRegistry": true, + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "MANTE IMMANUEL", - "timestamp": "2017-01-03" + "user": "VEUM VINNIE", + "timestamp": "2016-11-05" } ], "associatedSites": [ { - "dateNoted": "2021-01-26", + "dateNoted": "2020-05-06", "notes": "", - "parcelID": "20551", - "siteID": "15566", - "siteRegistry": true + "parcelID": "18741", + "siteID": "15327", + "siteRegistry": false }, { - "dateNoted": "2019-05-01", + "dateNoted": "2020-02-12", "notes": "", - "parcelID": "19926", - "siteID": "20418", + "parcelID": "18618", + "siteID": "19051", "siteRegistry": false + }, + { + "dateNoted": "2020-04-19", + "notes": "", + "parcelID": "17593", + "siteID": "16392", + "siteRegistry": true } ] }, { - "uuid": "db563e39-ac74-446c-a020-fec6ff4f76ca", - "siteID": 20294, - "address": "21398 Braxton Alley", - "latitude": 51.6304, - "longitude": -131.4158, - "lastUpdated": "2014-07-21", - "city": "Longview", - "region": " North Coast", - "victoriaFile": "26250-20/15235", + "uuid": "7b3c181a-1b18-4998-b9f4-5b0a3b1f4f78", + "siteID": 20135, + "address": "274 Jules Extensions", + "latitude": 57.1303, + "longitude": -129.9713, + "lastUpdated": "2020-01-27", + "city": "New Golden", + "region": "Mainland/Southwest", + "victoriaFile": "26250-20/16494", "regionalFile": "N/A", "parcelIDs": [ - 2915302, - 4975614, - 7907322, - 3492436, - 593725 + 4875446, + 8075202, + 9627371, + 2852569, + 7083353 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2014-01-12", - "completed": "2018-09-02", - "initiated": "2015-01-29", - "ministryContact": "ROWE GILBERT", + "createdAt": "2013-11-21", + "completed": "2016-05-06", + "initiated": "2018-10-21", + "ministryContact": "ROHAN DIEGO", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -17093,6 +18339,21 @@ "notationParticipants": [ { "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true }, @@ -17105,10 +18366,50 @@ "siteRegistry": true }, { - "createdAt": "2020-07-06", - "completed": "2017-05-18", - "initiated": "2022-02-03", - "ministryContact": "LYNCH ADOLPH", + "createdAt": "2018-01-13", + "completed": "2015-09-19", + "initiated": "2023-04-12", + "ministryContact": "BEATTY MATILDE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "createdAt": "2015-03-12", + "completed": "2020-01-21", + "initiated": "2016-09-03", + "ministryContact": "METZ ANTONETTE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -17116,11 +18417,36 @@ "" ], "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "createdAt": "2018-02-01", + "completed": "2014-04-01", + "initiated": "2021-11-24", + "ministryContact": "COLLIER SANFORD", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", @@ -17132,24 +18458,14 @@ "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true } ], "participants": [ { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2023-02-15", - "startDate": "2021-08-30", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": true - }, - { - "name": "AMET, DOLOR SIT", - "endDate": "2017-08-08", - "startDate": "2014-07-12", + "name": "IPSUM", + "endDate": "2019-08-17", + "startDate": "2022-09-14", "notes": "", "roles": [ "ORGANIZATION" @@ -17157,110 +18473,136 @@ "siteRegistry": false }, { - "name": "AMET, DOLOR SIT", - "endDate": "2019-01-19", - "startDate": "2020-12-23", + "name": "IPSUM", + "endDate": "2015-05-17", + "startDate": "2022-11-09", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": false }, { "name": "AMET, DOLOR SIT", - "endDate": "2017-05-15", - "startDate": "2021-12-26", + "endDate": "2017-12-10", + "startDate": "2022-03-11", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": true + "siteRegistry": false } ], "suspectLandUses": [ { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-09-05 (described on Site Profile dated 2022-09-05)", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2017-03-05 (described on Site Profile dated 2017-03-05)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-09-06 (described on Site Profile dated 2014-09-06)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2016-11-30 (described on Site Profile dated 2016-11-30)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2019-06-09 (described on Site Profile dated 2019-06-09)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-06-25 (described on Site Profile dated 2019-06-25)", + "notes": "INSERTED FOR SITE PROFILE DATED 2014-05-27 (described on Site Profile dated 2014-05-27)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-08-06 (described on Site Profile dated 2015-08-06)", + "notes": "INSERTED FOR SITE PROFILE DATED 2014-08-26 (described on Site Profile dated 2014-08-26)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + } + ], + "parcelDescriptions": [ + { + "siteRegistry": false, + "dateNoted": "2017-06-25", + "parcelID": "16640", + "crownLandUsePIN": "20584", + "crownLandFileNumber": "20198", + "landDescription": "LOT 1 OF LOT 5 BLOCK 3 DISTRICT LOT 4 PLAN 6740" + }, + { + "siteRegistry": true, + "dateNoted": "2015-02-11", + "parcelID": "15902", + "crownLandUsePIN": "18653", + "crownLandFileNumber": "15947", + "landDescription": "LOT 5 OF LOT 3 BLOCK 1 DISTRICT LOT 5 PLAN 9165" }, { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-05-30 (described on Site Profile dated 2018-05-30)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "dateNoted": "2014-09-20", + "parcelID": "20655", + "crownLandUsePIN": "20106", + "crownLandFileNumber": "15651", + "landDescription": "LOT 1 OF LOT 5 BLOCK 2 DISTRICT LOT 2 PLAN 3906" } ], "siteDisclosures": [ { "siteRegistry": false, - "dateReceived": "2015-07-29", - "dateCompleted": "2023-02-24", - "dateEntered": "2021-10-12", - "dateRegistrar": "2015-10-30", - "dateLocalAuthorityReceived": "2021-09-02", - "summary": "Deserunt possimus doloremque autem enim fugiat unde doloribus.\nBlanditiis incidunt aperiam aliquid odio nobis.", - "informationUsed": "Maxime ratione ex sint mollitia sapiente culpa debitis minima.\nDolorem necessitatibus asperiores omnis odio natus voluptatem illo dolore minus.\nCulpa ipsa tempora asperiores eum aliquid.\nLaborum qui natus vitae maiores reprehenderit.", - "pastOrPresentOrders": "Dolor fugit assumenda.\nMaiores nulla odit et.\nNon recusandae deleniti.", + "dateReceived": "2014-04-12", + "dateCompleted": "2017-03-25", + "dateEntered": "2021-05-01", + "dateRegistrar": "2021-07-12", + "dateLocalAuthorityReceived": "2022-03-29", + "summary": "Deserunt neque sapiente quasi atque tempore voluptas error.\nEum asperiores odio optio enim fuga.", + "informationUsed": "Nobis possimus beatae temporibus facere voluptatem deserunt eos.\nAb dolores animi atque corrupti sit quaerat natus voluptas quia.\nEnim occaecati quibusdam.\nQuis ab laborum molestias exercitationem ab voluptatem.", + "pastOrPresentOrders": "Ipsum tenetur ratione quasi dolor nisi.\nProvident fugit voluptatibus corporis doloribus.\nIncidunt sed architecto itaque et voluptas tempora quidem eos.", "commercialAndIndustrialPurposes": [ { "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false }, { "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true } ] }, { "siteRegistry": true, - "dateReceived": "2014-12-12", - "dateCompleted": "2023-09-07", - "dateEntered": "2017-02-07", - "dateRegistrar": "2017-05-06", - "dateLocalAuthorityReceived": "2015-01-07", - "summary": "Aut debitis fugit eum delectus.", - "informationUsed": "Ab eaque numquam.\nQuod dolores voluptatum illum consectetur provident unde at aut.\nAutem quas deserunt odit hic dicta soluta eveniet earum.\nQuaerat praesentium eaque.", - "pastOrPresentOrders": "Recusandae quas laboriosam.\nEarum placeat laudantium excepturi odit.\nAdipisci sunt autem modi repudiandae.", + "dateReceived": "2016-08-07", + "dateCompleted": "2020-04-03", + "dateEntered": "2015-03-28", + "dateRegistrar": "2018-11-28", + "dateLocalAuthorityReceived": "2023-07-14", + "summary": "Praesentium asperiores aliquam rerum expedita.", + "informationUsed": "Harum excepturi nam deserunt minus soluta.\nSoluta ab reiciendis sit eum repudiandae necessitatibus eius vitae suscipit.\nNon quia provident explicabo numquam distinctio.\nCorrupti sint fuga tenetur quam voluptatum.", + "pastOrPresentOrders": "Soluta dolor dolor enim dolorum.", "commercialAndIndustrialPurposes": [ { "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true + "siteRegistry": false }, { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true }, { - "scheduleReference": "F2*", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false } @@ -17269,77 +18611,77 @@ ], "activityLog": [ { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "MAYERT DAHLIA", - "timestamp": "2020-03-31" + "user": "OSINSKI HILTON", + "timestamp": "2021-12-10" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "STREICH JAYLAN", - "timestamp": "2019-09-20" + "user": "SCHUPPE FELIPA", + "timestamp": "2017-09-18" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "ADAMS TAVARES", - "timestamp": "2019-01-05" + "user": "CRONA MARIBEL", + "timestamp": "2016-03-01" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "CORWIN ALANIS", - "timestamp": "2015-02-21" + "user": "KOEPP JALEEL", + "timestamp": "2020-05-26" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "SCHUPPE-PACOCHA ILIANA", - "timestamp": "2017-10-26" + "user": "BAUCH JUDAH", + "timestamp": "2019-12-04" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "GUTMANN MADGE", - "timestamp": "2016-03-05" + "user": "WILLIAMSON CEASAR", + "timestamp": "2021-10-07" } ], "associatedSites": [ { - "dateNoted": "2019-05-10", + "dateNoted": "2021-04-25", "notes": "", - "parcelID": "18854", - "siteID": "18509", + "parcelID": "15735", + "siteID": "19399", "siteRegistry": true } ] }, { - "uuid": "2d6eb984-3fb1-4dea-bfbd-65f91d4608a2", - "siteID": 19438, - "address": "2252 Graham Inlet", - "latitude": 50.4218, - "longitude": -130.6958, - "lastUpdated": "2020-11-29", - "city": "Kubhaven", - "region": "Kootenay", - "victoriaFile": "26250-20/8493", + "uuid": "5b24031d-27f9-47a2-accd-8ef954bf8c63", + "siteID": 16952, + "address": "61532 Hettinger Forges", + "latitude": 50.8948, + "longitude": -122.7394, + "lastUpdated": "2015-07-15", + "city": "Lake Bertha", + "region": "Vancouver Island/Coast", + "victoriaFile": "26250-20/766", "regionalFile": "N/A", "parcelIDs": [ - 4402947, - 2591980, - 7046427, - 9291234, - 9569496 + 9260712, + 7036493, + 1213058, + 8179713, + 9848732 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2016-04-27", - "completed": "2016-06-25", - "initiated": "2022-05-01", - "ministryContact": "GREEN ZULA", + "createdAt": "2016-07-09", + "completed": "2022-12-31", + "initiated": "2020-04-20", + "ministryContact": "LANG CHAYA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -17353,23 +18695,23 @@ "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2017-05-12", - "completed": "2021-09-18", - "initiated": "2017-01-26", - "ministryContact": "SPORER BAILEE", + "createdAt": "2016-04-26", + "completed": "2017-09-30", + "initiated": "2018-11-02", + "ministryContact": "D'AMORE ELMER", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -17387,29 +18729,49 @@ "role": "REQUESTED BY", "siteRegistry": true }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "createdAt": "2017-12-27", + "completed": "2014-09-09", + "initiated": "2023-08-16", + "ministryContact": "HESSEL JEREL", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2014-04-15", - "completed": "2020-05-12", - "initiated": "2021-10-01", - "ministryContact": "HETTINGER SABRYNA", + "createdAt": "2016-08-25", + "completed": "2018-05-14", + "initiated": "2020-08-07", + "ministryContact": "GREEN EVELINE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -17419,37 +18781,37 @@ "notationParticipants": [ { "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true + "role": "SUBMITTED BY", + "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2017-01-29", - "completed": "2014-07-12", - "initiated": "2015-12-29", - "ministryContact": "DAVIS AL", + "createdAt": "2018-08-07", + "completed": "2019-02-24", + "initiated": "2022-10-23", + "ministryContact": "POLLICH JOSHUA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -17465,82 +18827,174 @@ { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true } ], "participants": [ { - "name": "AMET, DOLOR SIT", - "endDate": "2014-05-20", - "startDate": "2016-11-24", + "name": "IPSUM", + "endDate": "2023-09-10", + "startDate": "2023-07-08", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2015-04-08", - "startDate": "2014-12-30", + "name": "AMET, DOLOR SIT", + "endDate": "2021-05-03", + "startDate": "2020-11-16", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": false }, { "name": "AMET, DOLOR SIT", - "endDate": "2015-12-16", - "startDate": "2020-10-10", + "endDate": "2021-05-07", + "startDate": "2014-03-11", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2017-01-14", + "startDate": "2015-04-01", "notes": "", "roles": [ "ORGANIZATION" ], + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2019-11-17", + "startDate": "2018-01-17", + "notes": "", + "roles": [ + "EMPLOYEE" + ], "siteRegistry": false } ], "suspectLandUses": [ { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-12-09 (described on Site Profile dated 2019-12-09)", + "notes": "INSERTED FOR SITE PROFILE DATED 2017-02-25 (described on Site Profile dated 2017-02-25)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2015-12-05 (described on Site Profile dated 2015-12-05)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2016-09-06 (described on Site Profile dated 2016-09-06)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-02-02 (described on Site Profile dated 2019-02-02)", + "notes": "INSERTED FOR SITE PROFILE DATED 2015-02-12 (described on Site Profile dated 2015-02-12)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], + "parcelDescriptions": [ + { + "siteRegistry": true, + "dateNoted": "2020-12-03", + "parcelID": "17640", + "crownLandUsePIN": "18783", + "crownLandFileNumber": "19170", + "landDescription": "LOT 3 OF LOT 1 BLOCK 5 DISTRICT LOT 1 PLAN 9155" + }, + { + "siteRegistry": true, + "dateNoted": "2017-06-08", + "parcelID": "20713", + "crownLandUsePIN": "17304", + "crownLandFileNumber": "15492", + "landDescription": "LOT 2 OF LOT 5 BLOCK 5 DISTRICT LOT 5 PLAN 6062" + }, + { + "siteRegistry": true, + "dateNoted": "2021-06-01", + "parcelID": "16860", + "crownLandUsePIN": "17690", + "crownLandFileNumber": "19018", + "landDescription": "LOT 5 OF LOT 3 BLOCK 4 DISTRICT LOT 4 PLAN 8931" + }, + { + "siteRegistry": false, + "dateNoted": "2021-11-16", + "parcelID": "16463", + "crownLandUsePIN": "18252", + "crownLandFileNumber": "19687", + "landDescription": "LOT 1 OF LOT 5 BLOCK 5 DISTRICT LOT 3 PLAN 9607" + } + ], "siteDisclosures": [ { "siteRegistry": true, - "dateReceived": "2020-12-05", - "dateCompleted": "2016-10-22", - "dateEntered": "2019-03-13", - "dateRegistrar": "2016-10-23", - "dateLocalAuthorityReceived": "2015-12-02", - "summary": "Vitae veritatis voluptate fugiat quas.\nIncidunt sequi perferendis iusto amet voluptatibus unde consequatur aut.", - "informationUsed": "Neque esse quam exercitationem doloremque repellendus adipisci quae.\nEum labore quam nobis.\nRepellendus laborum distinctio non ipsum magnam.", - "pastOrPresentOrders": "Impedit tenetur iure explicabo soluta officiis corrupti voluptas quasi.\nQuia aut corrupti vel inventore ab sit adipisci ut sint.\nSequi aperiam in ullam qui modi eligendi.", + "dateReceived": "2022-08-15", + "dateCompleted": "2017-11-08", + "dateEntered": "2018-12-02", + "dateRegistrar": "2021-12-16", + "dateLocalAuthorityReceived": "2021-09-10", + "summary": "Vero non labore iusto dolores recusandae voluptate debitis.\nCommodi dolor ipsum.\nFuga id optio sint impedit quas sequi voluptatem mollitia sapiente.", + "informationUsed": "Libero ipsam corporis odio delectus id dolor nemo saepe.\nEst quidem reprehenderit asperiores molestias mollitia minus ea sint porro.\nIure unde molestiae.\nNulla ullam iusto voluptate fuga fugit quas quas officia.\nVitae nisi eligendi magni necessitatibus facilis nihil.", + "pastOrPresentOrders": "Omnis esse eos commodi nemo.\nNecessitatibus doloribus sint quos totam quod officiis.", "commercialAndIndustrialPurposes": [ { "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + } + ] + }, + { + "siteRegistry": false, + "dateReceived": "2017-07-07", + "dateCompleted": "2022-12-20", + "dateEntered": "2017-05-17", + "dateRegistrar": "2020-04-28", + "dateLocalAuthorityReceived": "2019-06-01", + "summary": "Laborum nesciunt cumque provident iste laudantium.\nDolores placeat sequi odit porro nihil.", + "informationUsed": "Dolor placeat repellat dolor tenetur.\nFacilis mollitia adipisci ducimus.\nEt molestias qui quis dicta fuga dolor eum.\nQuidem perspiciatis quasi tempore neque voluptatibus nobis nesciunt sequi nostrum.\nOptio blanditiis officia.", + "pastOrPresentOrders": "Sequi repudiandae fuga inventore laborum maxime.\nAdipisci eligendi iste dolor ut.", + "commercialAndIndustrialPurposes": [ { "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false } ] } @@ -17549,88 +19003,75 @@ { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "BOYER CIERRA", - "timestamp": "2021-09-24" + "user": "GOTTLIEB NARCISO", + "timestamp": "2014-08-03" }, { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "ROSENBAUM MARGOT", - "timestamp": "2019-05-27" - }, - { - "siteRegistry": true, + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "BEDNAR DOMINIC", - "timestamp": "2016-07-03" + "user": "CARTWRIGHT JUSTYN", + "timestamp": "2020-05-06" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "REMPEL KARA", - "timestamp": "2017-12-08" + "user": "RITCHIE ERNESTINA", + "timestamp": "2022-03-01" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "HELLER CALEIGH", - "timestamp": "2020-09-04" + "user": "MAGGIO SOFIA", + "timestamp": "2015-06-21" }, { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "BOGAN SID", - "timestamp": "2015-07-18" + "user": "WOLFF CAMILLA", + "timestamp": "2015-08-29" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "WILKINSON ADRIENNE", - "timestamp": "2020-04-17" + "user": "WELCH DARIEN", + "timestamp": "2020-07-30" } ], "associatedSites": [ { - "dateNoted": "2014-07-23", - "notes": "", - "parcelID": "18907", - "siteID": "17810", - "siteRegistry": false - }, - { - "dateNoted": "2016-12-17", + "dateNoted": "2020-08-20", "notes": "", - "parcelID": "18105", - "siteID": "16920", + "parcelID": "19874", + "siteID": "20555", "siteRegistry": false } ] }, { - "uuid": "c28c6919-a88e-4c46-8551-cf1157005d01", - "siteID": 20879, - "address": "89745 Padberg Ford", - "latitude": 55.1621, - "longitude": -128.9772, - "lastUpdated": "2013-11-30", - "city": "The Woodlands", - "region": "Kootenay", - "victoriaFile": "26250-20/7773", + "uuid": "c9f71a4a-d9f1-4b65-85b6-1ef029045235", + "siteID": 20713, + "address": "5117 Loma Tunnel", + "latitude": 56.7572, + "longitude": -130.9294, + "lastUpdated": "2018-06-23", + "city": "Hagenesboro", + "region": "Cariboo", + "victoriaFile": "26250-20/19749", "regionalFile": "N/A", "parcelIDs": [ - 708939, - 3738903, - 988668, - 2573200, - 2455989 + 6163154, + 427697, + 3297237, + 1669476, + 8365293 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2023-05-13", - "completed": "2021-01-24", - "initiated": "2017-09-15", - "ministryContact": "WILKINSON RUTH", + "createdAt": "2019-10-30", + "completed": "2022-04-20", + "initiated": "2016-10-19", + "ministryContact": "MITCHELL BENNIE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -17640,8 +19081,8 @@ "notationParticipants": [ { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false + "role": "REQUESTED BY", + "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", @@ -17649,23 +19090,23 @@ "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - } + "role": "REQUESTED BY", + "siteRegistry": false + } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2015-06-10", - "completed": "2017-07-30", - "initiated": "2018-11-30", - "ministryContact": "KIEHN REINA", + "createdAt": "2014-12-05", + "completed": "2023-08-21", + "initiated": "2015-06-24", + "ministryContact": "KSHLERIN JERALD", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -17675,23 +19116,33 @@ "notationParticipants": [ { "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false + "role": "SUBMITTED BY", + "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false } ], "participants": [ + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2015-12-31", + "startDate": "2016-09-28", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, { "name": "IPSUM", - "endDate": "2019-09-11", - "startDate": "2014-05-05", + "endDate": "2015-11-02", + "startDate": "2018-10-02", "notes": "", "roles": [ "EMPLOYEE" @@ -17699,19 +19150,29 @@ "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2014-04-13", - "startDate": "2023-07-08", + "name": "AMET, DOLOR SIT", + "endDate": "2014-03-11", + "startDate": "2021-06-02", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "name": "IPSUM", + "endDate": "2021-09-03", + "startDate": "2015-10-17", + "notes": "", + "roles": [ + "ORGANIZATION" ], "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2018-07-17", - "startDate": "2022-12-17", + "name": "IPSUM", + "endDate": "2023-01-09", + "startDate": "2015-06-28", "notes": "", "roles": [ "EMPLOYEE" @@ -17720,76 +19181,110 @@ } ], "suspectLandUses": [ + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2020-08-04 (described on Site Profile dated 2020-08-04)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2023-03-29 (described on Site Profile dated 2023-03-29)", + "notes": "INSERTED FOR SITE PROFILE DATED 2016-12-23 (described on Site Profile dated 2016-12-23)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + } + ], + "parcelDescriptions": [ + { + "siteRegistry": true, + "dateNoted": "2014-10-05", + "parcelID": "15761", + "crownLandUsePIN": "15962", + "crownLandFileNumber": "18705", + "landDescription": "LOT 1 OF LOT 4 BLOCK 2 DISTRICT LOT 3 PLAN 8499" + }, + { + "siteRegistry": false, + "dateNoted": "2018-11-20", + "parcelID": "16333", + "crownLandUsePIN": "17516", + "crownLandFileNumber": "18848", + "landDescription": "LOT 5 OF LOT 4 BLOCK 2 DISTRICT LOT 5 PLAN 9241" }, { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2023-06-28 (described on Site Profile dated 2023-06-28)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "dateNoted": "2022-01-25", + "parcelID": "19250", + "crownLandUsePIN": "15942", + "crownLandFileNumber": "15851", + "landDescription": "LOT 1 OF LOT 1 BLOCK 5 DISTRICT LOT 3 PLAN 9515" }, { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-08-27 (described on Site Profile dated 2021-08-27)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "dateNoted": "2014-02-14", + "parcelID": "20381", + "crownLandUsePIN": "16742", + "crownLandFileNumber": "19857", + "landDescription": "LOT 1 OF LOT 3 BLOCK 4 DISTRICT LOT 4 PLAN 7880" } ], "siteDisclosures": [ { "siteRegistry": false, - "dateReceived": "2019-03-11", - "dateCompleted": "2018-11-19", - "dateEntered": "2017-07-03", - "dateRegistrar": "2019-12-10", - "dateLocalAuthorityReceived": "2018-01-10", - "summary": "Sed esse est illum perspiciatis voluptate.\nImpedit non facere.\nTotam voluptas aliquid suscipit similique aut.", - "informationUsed": "Soluta minima repellat earum accusantium debitis non et repudiandae.\nDicta alias quis.\nAspernatur animi magni vitae magni labore eveniet molestiae natus.", - "pastOrPresentOrders": "Adipisci eaque provident reiciendis.\nSit quaerat veritatis voluptatem beatae iste ratione optio atque.\nNeque numquam quis provident recusandae aut perspiciatis inventore.", + "dateReceived": "2016-03-27", + "dateCompleted": "2022-02-13", + "dateEntered": "2016-12-20", + "dateRegistrar": "2017-11-18", + "dateLocalAuthorityReceived": "2022-03-27", + "summary": "Facere architecto temporibus animi incidunt autem quaerat explicabo ratione molestias.\nRepudiandae assumenda laborum facere expedita veritatis voluptates.", + "informationUsed": "Occaecati magni rerum laudantium a assumenda id pariatur doloremque ipsam.\nDeserunt numquam mollitia consequuntur tenetur officia illum nemo aperiam sapiente.\nVeniam aliquid numquam ullam in libero aperiam quis.\nIn minus ipsum culpa quidem itaque id.", + "pastOrPresentOrders": "Excepturi accusantium accusantium.\nCorrupti sit quasi praesentium ipsam sunt distinctio voluptas iure.", "commercialAndIndustrialPurposes": [ { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false }, { "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true + "siteRegistry": false }, { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true } ] }, { - "siteRegistry": false, - "dateReceived": "2021-10-10", - "dateCompleted": "2018-07-18", - "dateEntered": "2015-09-21", - "dateRegistrar": "2017-08-10", - "dateLocalAuthorityReceived": "2022-03-01", - "summary": "Perferendis distinctio quas magni dolorem.\nEst impedit deleniti quam possimus voluptatibus.\nMinima voluptatum rem odio.", - "informationUsed": "Rerum maxime perferendis ducimus corrupti delectus tempora quasi odit ipsam.\nConsequatur quam earum consectetur vero blanditiis et reiciendis porro.\nVoluptatum libero eveniet similique beatae quis.\nLabore cumque ipsam quisquam voluptatibus suscipit.", - "pastOrPresentOrders": "Eveniet voluptatibus inventore perspiciatis tempore.\nConsequatur quia voluptate occaecati odit vitae fugit asperiores aut modi.", + "siteRegistry": true, + "dateReceived": "2023-06-04", + "dateCompleted": "2022-12-27", + "dateEntered": "2015-05-28", + "dateRegistrar": "2016-11-02", + "dateLocalAuthorityReceived": "2021-05-20", + "summary": "Temporibus error quia repellat.\nBlanditiis consectetur quasi nobis omnis at nihil eius ratione consequatur.\nDolorem vero quis corporis quidem aspernatur quod.", + "informationUsed": "Distinctio doloremque perferendis exercitationem atque ab odit ea.\nLaudantium numquam optio dolor illum quis rem.\nMagnam odit assumenda velit incidunt ex.\nFugiat voluptatum perferendis facilis ipsum tenetur reiciendis debitis id.", + "pastOrPresentOrders": "Repudiandae voluptate perferendis incidunt eligendi natus repellendus.\nIpsum iure necessitatibus.\nNemo aut vel delectus fugit voluptatibus adipisci molestias quia.", "commercialAndIndustrialPurposes": [ { "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false }, { "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true }, { "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true } ] } @@ -17798,76 +19293,107 @@ { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "REYNOLDS MONSERRAT", - "timestamp": "2014-05-16" + "user": "QUITZON MAKAYLA", + "timestamp": "2019-06-15" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "ROSENBAUM ZITA", - "timestamp": "2022-08-25" + "user": "HOWELL MEGHAN", + "timestamp": "2015-04-09" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "VEUM IRWIN", - "timestamp": "2021-03-30" + "user": "DOYLE GRIFFIN", + "timestamp": "2019-08-25" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "KUNDE JOYCE", - "timestamp": "2020-07-09" + "user": "KIEHN MARTINA", + "timestamp": "2021-10-06" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "BECHTELAR MOZELL", + "timestamp": "2017-09-12" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "HEANEY WILMER", - "timestamp": "2021-03-22" + "user": "REINGER-MORAR ENOCH", + "timestamp": "2020-08-22" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "BOTSFORD EMMETT", + "timestamp": "2016-03-26" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "DENESIK DEION", + "timestamp": "2014-11-06" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "HERZOG CESAR", + "timestamp": "2014-11-19" } ], "associatedSites": [ { - "dateNoted": "2020-02-18", + "dateNoted": "2019-03-18", + "notes": "", + "parcelID": "19184", + "siteID": "19984", + "siteRegistry": false + }, + { + "dateNoted": "2023-04-30", "notes": "", - "parcelID": "15412", - "siteID": "18884", + "parcelID": "18488", + "siteID": "17034", "siteRegistry": true }, { - "dateNoted": "2018-03-11", + "dateNoted": "2016-10-27", "notes": "", - "parcelID": "18874", - "siteID": "20671", + "parcelID": "15403", + "siteID": "20424", "siteRegistry": false } ] }, { - "uuid": "c7167ed1-f842-48b7-ae71-354ecd93c63a", - "siteID": 19019, - "address": "425 Rice Avenue", - "latitude": 58.256, - "longitude": -127.5654, - "lastUpdated": "2014-11-01", - "city": "New Lenoraville", - "region": "Mainland/Southwest", - "victoriaFile": "26250-20/12568", + "uuid": "f72d8543-1390-46a0-b8ea-b5d0cb4329d6", + "siteID": 18042, + "address": "7456 Marge Cape", + "latitude": 56.513, + "longitude": -128.3272, + "lastUpdated": "2017-07-04", + "city": "Fort Celestinoland", + "region": "Cariboo", + "victoriaFile": "26250-20/1019", "regionalFile": "N/A", "parcelIDs": [ - 9053724, - 2651877, - 2688391, - 4553304, - 7127905 + 2751347, + 2914527, + 8356168, + 6533404, + 7876854 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2015-08-05", - "completed": "2014-07-31", - "initiated": "2014-03-05", - "ministryContact": "MITCHELL JACINTO", + "createdAt": "2015-04-19", + "completed": "2017-07-17", + "initiated": "2021-06-13", + "ministryContact": "GOLDNER LAURY", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -17880,34 +19406,334 @@ "role": "REQUESTED BY", "siteRegistry": true }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "createdAt": "2019-04-05", + "completed": "2022-03-28", + "initiated": "2021-03-19", + "ministryContact": "BERGE SANDY", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ { "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + } + ], + "participants": [ + { + "name": "AMET, DOLOR SIT", + "endDate": "2015-01-02", + "startDate": "2017-01-18", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2018-12-05", + "startDate": "2022-01-19", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2019-11-12", + "startDate": "2015-04-19", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + } + ], + "suspectLandUses": [ + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2019-01-03 (described on Site Profile dated 2019-01-03)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2015-01-22 (described on Site Profile dated 2015-01-22)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2023-10-03 (described on Site Profile dated 2023-10-03)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2016-12-15 (described on Site Profile dated 2016-12-15)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2021-04-20 (described on Site Profile dated 2021-04-20)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + } + ], + "parcelDescriptions": [ + { + "siteRegistry": true, + "dateNoted": "2015-02-21", + "parcelID": "15296", + "crownLandUsePIN": "18566", + "crownLandFileNumber": "20714", + "landDescription": "LOT 5 OF LOT 1 BLOCK 4 DISTRICT LOT 4 PLAN 3787" + }, + { + "siteRegistry": false, + "dateNoted": "2014-05-20", + "parcelID": "16283", + "crownLandUsePIN": "17269", + "crownLandFileNumber": "16840", + "landDescription": "LOT 1 OF LOT 2 BLOCK 3 DISTRICT LOT 5 PLAN 7880" + }, + { + "siteRegistry": true, + "dateNoted": "2015-05-13", + "parcelID": "19550", + "crownLandUsePIN": "19173", + "crownLandFileNumber": "18212", + "landDescription": "LOT 4 OF LOT 4 BLOCK 3 DISTRICT LOT 1 PLAN 6737" + }, + { + "siteRegistry": false, + "dateNoted": "2017-06-29", + "parcelID": "19847", + "crownLandUsePIN": "17355", + "crownLandFileNumber": "17260", + "landDescription": "LOT 2 OF LOT 2 BLOCK 5 DISTRICT LOT 3 PLAN 4616" + }, + { + "siteRegistry": false, + "dateNoted": "2014-12-08", + "parcelID": "16748", + "crownLandUsePIN": "19634", + "crownLandFileNumber": "17753", + "landDescription": "LOT 1 OF LOT 5 BLOCK 2 DISTRICT LOT 5 PLAN 4730" + } + ], + "siteDisclosures": [ + { + "siteRegistry": false, + "dateReceived": "2021-01-30", + "dateCompleted": "2023-09-26", + "dateEntered": "2023-08-22", + "dateRegistrar": "2021-10-10", + "dateLocalAuthorityReceived": "2017-07-14", + "summary": "Laudantium voluptates animi sint officiis aut rerum placeat vero autem.", + "informationUsed": "Tenetur aperiam illo.\nRem minima quisquam.\nArchitecto autem voluptatibus voluptate accusantium magni qui facilis ratione deleniti.", + "pastOrPresentOrders": "Libero error aperiam error veniam fugit.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + } + ] + }, + { + "siteRegistry": false, + "dateReceived": "2015-12-31", + "dateCompleted": "2018-12-19", + "dateEntered": "2016-04-07", + "dateRegistrar": "2014-03-14", + "dateLocalAuthorityReceived": "2018-02-14", + "summary": "Eum eius dolore non nesciunt ipsa.", + "informationUsed": "Laborum qui at voluptate sit dolores.\nQuaerat placeat et nostrum.\nAccusamus voluptatem sequi.\nQuod magni ipsum iusto maxime assumenda corrupti fugiat saepe architecto.\nMagnam ullam pariatur omnis.", + "pastOrPresentOrders": "Asperiores blanditiis alias recusandae.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + } + ] + } + ], + "activityLog": [ + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "NOLAN DAMION", + "timestamp": "2017-07-03" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "HELLER LILA", + "timestamp": "2018-11-27" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "LEANNON BETHEL", + "timestamp": "2023-01-11" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "OBERBRUNNER KOBE", + "timestamp": "2022-02-11" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "CRIST JALON", + "timestamp": "2018-04-03" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "KUB JERMAINE", + "timestamp": "2021-10-30" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "MURPHY THEODORA", + "timestamp": "2022-06-20" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "BEATTY ZION", + "timestamp": "2014-03-04" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "DICKENS MARIELA", + "timestamp": "2015-05-29" + } + ], + "associatedSites": [ + { + "dateNoted": "2020-01-24", + "notes": "", + "parcelID": "15458", + "siteID": "16605", + "siteRegistry": true + }, + { + "dateNoted": "2016-06-29", + "notes": "", + "parcelID": "20960", + "siteID": "18292", + "siteRegistry": true + }, + { + "dateNoted": "2019-01-02", + "notes": "", + "parcelID": "18876", + "siteID": "17616", + "siteRegistry": true + } + ] + }, + { + "uuid": "3bb7badc-162c-4234-8df2-805f1b3b4b8d", + "siteID": 17153, + "address": "4044 Audie Terrace", + "latitude": 55.4013, + "longitude": -123.2925, + "lastUpdated": "2014-03-24", + "city": "North Kareem", + "region": "Kootenay", + "victoriaFile": "26250-20/12582", + "regionalFile": "N/A", + "parcelIDs": [ + 832536, + 160925, + 8180292, + 4043895, + 4727458 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2019-07-03", + "completed": "2019-09-12", + "initiated": "2020-12-25", + "ministryContact": "LEBSACK FINN", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2021-11-23", - "completed": "2017-04-28", - "initiated": "2014-12-21", - "ministryContact": "HALVORSON VITA", + "createdAt": "2013-12-30", + "completed": "2022-03-17", + "initiated": "2021-04-19", + "ministryContact": "ZIEME CARTER", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -17918,15 +19744,20 @@ { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false } @@ -17934,10 +19765,10 @@ "siteRegistry": false }, { - "createdAt": "2022-05-22", - "completed": "2016-04-13", - "initiated": "2016-08-13", - "ministryContact": "EMMERICH LESLIE", + "createdAt": "2016-12-31", + "completed": "2017-06-28", + "initiated": "2017-01-15", + "ministryContact": "JACOBSON RICHMOND", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -17951,23 +19782,23 @@ "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false } ], "siteRegistry": false }, { - "createdAt": "2017-11-03", - "completed": "2017-01-09", - "initiated": "2019-04-06", - "ministryContact": "WUCKERT ANTONINA", + "createdAt": "2019-04-27", + "completed": "2017-02-12", + "initiated": "2019-08-02", + "ministryContact": "BINS TERRENCE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -17983,16 +19814,21 @@ { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2019-02-25", - "completed": "2016-11-08", - "initiated": "2018-09-15", - "ministryContact": "RENNER DEVANTE", + "createdAt": "2019-11-04", + "completed": "2017-03-25", + "initiated": "2019-01-06", + "ministryContact": "SIPES-MAGGIO FABIOLA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -18001,99 +19837,133 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true } ], "participants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2016-01-16", - "startDate": "2016-09-22", + "name": "AMET, DOLOR SIT", + "endDate": "2015-06-08", + "startDate": "2022-05-27", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": true + "siteRegistry": false }, { "name": "AMET, DOLOR SIT", - "endDate": "2020-12-14", - "startDate": "2022-12-20", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2014-09-13", - "startDate": "2017-04-27", + "endDate": "2014-05-19", + "startDate": "2019-10-17", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": false }, { "name": "AMET, DOLOR SIT", - "endDate": "2015-05-23", - "startDate": "2023-02-17", + "endDate": "2015-03-07", + "startDate": "2023-07-29", "notes": "", "roles": [ "ORGANIZATION" ], "siteRegistry": true + } + ], + "suspectLandUses": [ + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2020-07-17 (described on Site Profile dated 2020-07-17)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2023-06-22", - "startDate": "2023-04-12", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": false + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2021-11-05 (described on Site Profile dated 2021-11-05)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2020-07-02 (described on Site Profile dated 2020-07-02)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2016-07-08 (described on Site Profile dated 2016-07-08)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2019-04-30 (described on Site Profile dated 2019-04-30)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], - "suspectLandUses": [ + "parcelDescriptions": [ + { + "siteRegistry": false, + "dateNoted": "2018-02-01", + "parcelID": "20759", + "crownLandUsePIN": "20105", + "crownLandFileNumber": "19050", + "landDescription": "LOT 3 OF LOT 1 BLOCK 3 DISTRICT LOT 1 PLAN 6518" + }, + { + "siteRegistry": false, + "dateNoted": "2022-05-26", + "parcelID": "15920", + "crownLandUsePIN": "19450", + "crownLandFileNumber": "15825", + "landDescription": "LOT 2 OF LOT 2 BLOCK 3 DISTRICT LOT 1 PLAN 3887" + }, { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-11-30 (described on Site Profile dated 2016-11-30)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "dateNoted": "2013-10-27", + "parcelID": "18150", + "crownLandUsePIN": "17821", + "crownLandFileNumber": "20800", + "landDescription": "LOT 2 OF LOT 3 BLOCK 1 DISTRICT LOT 4 PLAN 9588" }, { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-08-06 (described on Site Profile dated 2015-08-06)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "dateNoted": "2021-03-12", + "parcelID": "16535", + "crownLandUsePIN": "17077", + "crownLandFileNumber": "18159", + "landDescription": "LOT 1 OF LOT 4 BLOCK 2 DISTRICT LOT 3 PLAN 9492" } ], "siteDisclosures": [ { - "siteRegistry": false, - "dateReceived": "2021-03-12", - "dateCompleted": "2017-12-02", - "dateEntered": "2020-01-27", - "dateRegistrar": "2014-03-10", - "dateLocalAuthorityReceived": "2018-02-25", - "summary": "Atque corporis dolorem aspernatur molestiae quod.\nEnim molestiae quis libero illum molestias rerum officia velit aperiam.\nFuga ut animi accusamus nulla placeat magni adipisci dolorum qui.", - "informationUsed": "Asperiores laborum quo.\nConsequuntur porro accusantium optio quae magnam molestiae.\nRepudiandae iure odio.\nEaque facere ullam voluptatum placeat quia facere.\nSit reprehenderit totam tenetur.", - "pastOrPresentOrders": "Repudiandae nemo eum.\nOfficiis debitis harum.\nRem asperiores suscipit quod delectus libero neque ipsam.", + "siteRegistry": true, + "dateReceived": "2021-02-26", + "dateCompleted": "2015-08-19", + "dateEntered": "2020-08-03", + "dateRegistrar": "2020-08-17", + "dateLocalAuthorityReceived": "2018-02-02", + "summary": "Distinctio eum consequuntur ab eum inventore fugiat sed beatae vero.\nEveniet laudantium laborum necessitatibus molestias porro ab suscipit.\nHarum consequuntur quo recusandae vitae.", + "informationUsed": "Perspiciatis debitis magnam eveniet quo velit repellat illum occaecati.\nOccaecati eaque at aut voluptas maiores quia illum occaecati sint.\nFuga vel eius maxime esse minus vel.\nAdipisci dolorum dolorum.", + "pastOrPresentOrders": "Ab non corporis error eum sint.\nEx voluptas vitae saepe rem est tempora aut expedita.\nDolores quo possimus fugit quidem dicta deserunt a.", "commercialAndIndustrialPurposes": [ { "scheduleReference": "F2*", @@ -18101,27 +19971,22 @@ "siteRegistry": true }, { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false - }, - { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true } ] }, { "siteRegistry": false, - "dateReceived": "2019-04-11", - "dateCompleted": "2020-02-16", - "dateEntered": "2018-03-05", - "dateRegistrar": "2016-08-14", - "dateLocalAuthorityReceived": "2019-12-24", - "summary": "Vitae minus nulla nisi.\nQuae distinctio explicabo deleniti omnis commodi doloribus.\nEt dignissimos autem harum exercitationem minus.", - "informationUsed": "Unde sit eaque quis similique incidunt reiciendis accusantium beatae quaerat.\nRem minus cum quia velit laboriosam magnam architecto totam veritatis.\nNesciunt doloribus assumenda.\nOptio eaque facilis pariatur aliquid necessitatibus labore soluta aspernatur architecto.", - "pastOrPresentOrders": "Voluptatem necessitatibus aliquid debitis.\nNisi quibusdam natus id velit repellendus optio.\nTemporibus ea veniam est ex commodi officiis.", + "dateReceived": "2022-04-28", + "dateCompleted": "2020-10-10", + "dateEntered": "2016-02-02", + "dateRegistrar": "2020-09-07", + "dateLocalAuthorityReceived": "2014-02-05", + "summary": "Corporis voluptatibus vitae dolor repellendus facilis dolorum deleniti assumenda.", + "informationUsed": "Nesciunt quae porro culpa fugit eum.\nDicta saepe non accusantium consectetur deleniti perferendis.\nError odit quia exercitationem assumenda.\nNemo commodi soluta voluptates culpa.", + "pastOrPresentOrders": "Odio eaque eius dicta deserunt quidem deleniti.", "commercialAndIndustrialPurposes": [ { "scheduleReference": "F1*", @@ -18129,13 +19994,18 @@ "siteRegistry": false }, { - "scheduleReference": "F1*", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false } ] @@ -18145,95 +20015,69 @@ { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "SCHUMM EMMANUELLE", - "timestamp": "2015-09-01" - }, - { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "PACOCHA RAMON", - "timestamp": "2023-04-09" + "user": "BAHRINGER-HUEL RODOLFO", + "timestamp": "2016-06-05" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "SCHULTZ ETTIE", - "timestamp": "2016-06-15" + "user": "STANTON LENNY", + "timestamp": "2015-01-31" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "WIZA KIANNA", - "timestamp": "2023-06-01" - }, - { - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "LUBOWITZ JEAN", - "timestamp": "2014-12-03" + "user": "MULLER-KSHLERIN JAYCEE", + "timestamp": "2014-10-14" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "KOSS DAN", - "timestamp": "2016-09-14" + "user": "FRITSCH ISIDRO", + "timestamp": "2016-04-22" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "WELCH DALTON", - "timestamp": "2022-08-27" + "user": "LYNCH HARRY", + "timestamp": "2017-12-21" } ], "associatedSites": [ { - "dateNoted": "2022-03-26", - "notes": "", - "parcelID": "17496", - "siteID": "20789", - "siteRegistry": false - }, - { - "dateNoted": "2015-10-03", + "dateNoted": "2015-03-10", "notes": "", - "parcelID": "15634", - "siteID": "18066", + "parcelID": "20533", + "siteID": "17940", "siteRegistry": true - }, - { - "dateNoted": "2014-06-01", - "notes": "", - "parcelID": "18763", - "siteID": "20877", - "siteRegistry": false } ] }, { - "uuid": "5181a22f-6c5c-498b-9555-cc5bad60cae0", - "siteID": 16814, - "address": "49852 Jayson Port", - "latitude": 56.6961, - "longitude": -132.3376, - "lastUpdated": "2020-06-22", - "city": "West Bethburgh", - "region": "Cariboo", - "victoriaFile": "26250-20/1804", + "uuid": "0670a5e6-9a1f-4bae-b2dc-e155f9d60fbe", + "siteID": 20583, + "address": "73202 Cole Cove", + "latitude": 56.0067, + "longitude": -138.3278, + "lastUpdated": "2019-06-16", + "city": "Yvetteworth", + "region": " North Coast", + "victoriaFile": "26250-20/1790", "regionalFile": "N/A", "parcelIDs": [ - 3080045, - 5226042, - 8463871, - 6225394, - 4323742 + 7055141, + 1315298, + 3387024, + 1542552, + 8390250 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2023-04-15", - "completed": "2019-07-12", - "initiated": "2020-01-11", - "ministryContact": "CONROY-GLEASON MARCEL", + "createdAt": "2023-03-01", + "completed": "2014-08-04", + "initiated": "2020-12-30", + "ministryContact": "JACOBSON JACE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -18244,26 +20088,26 @@ { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", "siteRegistry": false } ], "siteRegistry": true }, { - "createdAt": "2015-07-15", - "completed": "2016-12-12", - "initiated": "2021-02-06", - "ministryContact": "KLOCKO TERRANCE", + "createdAt": "2020-06-01", + "completed": "2016-11-08", + "initiated": "2019-12-01", + "ministryContact": "BOEHM GARRETT", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -18272,44 +20116,494 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false } ], "siteRegistry": false - } + }, + { + "createdAt": "2017-09-12", + "completed": "2023-06-07", + "initiated": "2018-07-03", + "ministryContact": "MORAR-VEUM FRANCISCO", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "createdAt": "2022-10-23", + "completed": "2021-04-14", + "initiated": "2021-10-03", + "ministryContact": "BALISTRERI FRANCIS", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "createdAt": "2016-06-30", + "completed": "2016-07-08", + "initiated": "2018-08-19", + "ministryContact": "NITZSCHE VELDA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + } ], "participants": [ { - "name": "IPSUM", - "endDate": "2022-07-22", - "startDate": "2023-03-25", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2019-10-02", + "startDate": "2014-05-06", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "AMET, DOLOR SIT", + "endDate": "2019-12-20", + "startDate": "2014-01-16", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "name": "AMET, DOLOR SIT", + "endDate": "2019-05-19", + "startDate": "2020-09-19", "notes": "", "roles": [ "ORGANIZATION" ], + "siteRegistry": true + } + ], + "suspectLandUses": [ + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2014-10-25 (described on Site Profile dated 2014-10-25)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2017-12-06 (described on Site Profile dated 2017-12-06)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + } + ], + "parcelDescriptions": [ + { + "siteRegistry": false, + "dateNoted": "2016-09-11", + "parcelID": "15603", + "crownLandUsePIN": "19285", + "crownLandFileNumber": "20145", + "landDescription": "LOT 1 OF LOT 2 BLOCK 3 DISTRICT LOT 3 PLAN 7174" + }, + { + "siteRegistry": false, + "dateNoted": "2020-04-18", + "parcelID": "16019", + "crownLandUsePIN": "18225", + "crownLandFileNumber": "15876", + "landDescription": "LOT 2 OF LOT 2 BLOCK 1 DISTRICT LOT 2 PLAN 2980" + } + ], + "siteDisclosures": [ + { + "siteRegistry": true, + "dateReceived": "2021-06-01", + "dateCompleted": "2014-07-12", + "dateEntered": "2018-06-11", + "dateRegistrar": "2016-01-12", + "dateLocalAuthorityReceived": "2018-12-05", + "summary": "Laudantium quo iure nostrum voluptatem corrupti voluptatem.\nAccusantium sunt optio debitis necessitatibus.\nPlaceat provident iste earum optio possimus amet animi voluptatem necessitatibus.", + "informationUsed": "Dolorem minima quis quidem voluptas laudantium quae.\nOccaecati laborum soluta sed adipisci quo sint tempore.\nTemporibus omnis dignissimos.", + "pastOrPresentOrders": "Id officiis voluptatum distinctio veritatis nostrum esse atque dolore.\nIpsa aperiam excepturi iste debitis.\nAssumenda veritatis tempore enim occaecati a.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + } + ] + }, + { + "siteRegistry": true, + "dateReceived": "2016-03-06", + "dateCompleted": "2021-05-26", + "dateEntered": "2023-09-28", + "dateRegistrar": "2020-01-15", + "dateLocalAuthorityReceived": "2016-03-28", + "summary": "Nobis quo distinctio.\nEsse iure perferendis fugiat ratione ullam neque.", + "informationUsed": "Perspiciatis optio corrupti corrupti excepturi velit cupiditate optio officia.\nEnim aliquid minima expedita maxime odio quia debitis.\nQuos in cum unde doloremque inventore maxime.", + "pastOrPresentOrders": "Similique asperiores deleniti facilis illum nesciunt quaerat illo nam odit.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + } + ] + } + ], + "activityLog": [ + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "DUBUQUE ANTONETTA", + "timestamp": "2017-01-12" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "KEEBLER MARYAM", + "timestamp": "2017-12-04" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "WEBER ABRAHAM", + "timestamp": "2022-05-29" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "HILLL DELMER", + "timestamp": "2016-04-25" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "CRONA DEJUAN", + "timestamp": "2022-11-11" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "DICKENS PATIENCE", + "timestamp": "2017-04-26" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "FADEL KEVON", + "timestamp": "2015-10-22" + } + ], + "associatedSites": [ + { + "dateNoted": "2014-12-27", + "notes": "", + "parcelID": "17506", + "siteID": "15924", + "siteRegistry": true + } + ] + }, + { + "uuid": "26134559-8f17-4546-a6d8-0abb34aaa74f", + "siteID": 18797, + "address": "4217 Margie Mall", + "latitude": 52.7425, + "longitude": -135.8619, + "lastUpdated": "2017-06-04", + "city": "Ellsworthview", + "region": "Mainland/Southwest", + "victoriaFile": "26250-20/8310", + "regionalFile": "N/A", + "parcelIDs": [ + 5799557, + 4763293, + 6412678, + 9916245, + 9264816 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2023-02-10", + "completed": "2015-03-24", + "initiated": "2023-04-03", + "ministryContact": "CRUICKSHANK LEONE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "createdAt": "2023-04-06", + "completed": "2022-10-29", + "initiated": "2016-04-19", + "ministryContact": "ROLFSON KARLEY", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], "siteRegistry": false }, + { + "createdAt": "2014-03-18", + "completed": "2020-07-13", + "initiated": "2017-02-15", + "ministryContact": "BOSCO LORI", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "createdAt": "2014-12-05", + "completed": "2014-01-08", + "initiated": "2016-06-18", + "ministryContact": "BARTELL ELENORA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + } + ], + "participants": [ { "name": "IPSUM", - "endDate": "2016-11-11", - "startDate": "2013-11-19", + "endDate": "2014-03-02", + "startDate": "2022-04-15", "notes": "", "roles": [ "ORGANIZATION" @@ -18317,59 +20611,348 @@ "siteRegistry": false }, { - "name": "AMET, DOLOR SIT", - "endDate": "2021-11-29", - "startDate": "2018-10-08", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2016-06-07", + "startDate": "2020-10-25", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": false + "siteRegistry": true + } + ], + "suspectLandUses": [ + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2014-09-29 (described on Site Profile dated 2014-09-29)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "name": "AMET, DOLOR SIT", - "endDate": "2018-06-30", - "startDate": "2015-05-29", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2018-10-03 (described on Site Profile dated 2018-10-03)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + } + ], + "parcelDescriptions": [ + { + "siteRegistry": false, + "dateNoted": "2013-11-28", + "parcelID": "18588", + "crownLandUsePIN": "16809", + "crownLandFileNumber": "16841", + "landDescription": "LOT 3 OF LOT 3 BLOCK 2 DISTRICT LOT 5 PLAN 6848" + }, + { + "siteRegistry": true, + "dateNoted": "2020-06-08", + "parcelID": "16486", + "crownLandUsePIN": "17693", + "crownLandFileNumber": "20285", + "landDescription": "LOT 3 OF LOT 3 BLOCK 4 DISTRICT LOT 5 PLAN 9532" + }, + { + "siteRegistry": false, + "dateNoted": "2021-06-25", + "parcelID": "20978", + "crownLandUsePIN": "18414", + "crownLandFileNumber": "20564", + "landDescription": "LOT 4 OF LOT 2 BLOCK 4 DISTRICT LOT 1 PLAN 8938" + } + ], + "siteDisclosures": [ + { + "siteRegistry": true, + "dateReceived": "2018-04-13", + "dateCompleted": "2014-10-09", + "dateEntered": "2015-01-01", + "dateRegistrar": "2014-05-29", + "dateLocalAuthorityReceived": "2017-04-27", + "summary": "Fugit nisi omnis magni repudiandae.", + "informationUsed": "Cupiditate architecto rerum earum alias magnam soluta.\nHarum molestias ipsam exercitationem.\nHarum fugiat aut hic ullam repudiandae doloribus minus.\nUllam reiciendis maxime id possimus error.", + "pastOrPresentOrders": "Quis perspiciatis ducimus fuga rerum harum quos fugit assumenda beatae.\nAperiam dicta qui quibusdam facere omnis perspiciatis quaerat officia quaerat.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + } + ] + } + ], + "activityLog": [ + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "SANFORD KURT", + "timestamp": "2023-01-20" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "KING-PACOCHA AMBER", + "timestamp": "2015-04-04" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "DICKENS MARJORY", + "timestamp": "2018-03-18" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "GUTKOWSKI CAITLYN", + "timestamp": "2016-02-11" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "NICOLAS MANLEY", + "timestamp": "2019-05-31" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "LUBOWITZ VIVIAN", + "timestamp": "2017-04-21" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "O'CONNELL ANTONETTA", + "timestamp": "2016-02-09" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "MARVIN FREEDA", + "timestamp": "2021-10-09" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "FUNK CLOYD", + "timestamp": "2019-01-13" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "KULAS DAISHA", + "timestamp": "2021-12-21" + } + ], + "associatedSites": [ + { + "dateNoted": "2017-04-23", + "notes": "", + "parcelID": "18734", + "siteID": "17329", + "siteRegistry": true + }, + { + "dateNoted": "2014-06-26", + "notes": "", + "parcelID": "20910", + "siteID": "20492", + "siteRegistry": true + } + ] + }, + { + "uuid": "0440d9bb-b109-4c96-bf58-187df53c36cc", + "siteID": 20424, + "address": "35812 Howell Lights", + "latitude": 56.961, + "longitude": -125.3912, + "lastUpdated": "2019-07-07", + "city": "Krajcikcester", + "region": "Vancouver Island/Coast", + "victoriaFile": "26250-20/1549", + "regionalFile": "N/A", + "parcelIDs": [ + 3575788, + 2640592, + 1126789, + 2757992, + 7109448 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2022-06-01", + "completed": "2016-05-26", + "initiated": "2022-07-06", + "ministryContact": "KEMMER GEORGE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "createdAt": "2023-04-06", + "completed": "2020-11-07", + "initiated": "2016-10-12", + "ministryContact": "ORN BABY", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + } + ], + "participants": [ + { + "name": "IPSUM", + "endDate": "2017-07-25", + "startDate": "2014-11-28", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": true + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2020-10-04", + "startDate": "2016-12-25", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2020-05-17", - "startDate": "2022-09-24", + "endDate": "2020-09-12", + "startDate": "2022-11-05", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2023-05-26", + "startDate": "2015-03-16", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + } + ], + "suspectLandUses": [ + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2014-06-05 (described on Site Profile dated 2014-06-05)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2016-03-19 (described on Site Profile dated 2016-03-19)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2022-03-12 (described on Site Profile dated 2022-03-12)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2016-07-03 (described on Site Profile dated 2016-07-03)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], - "suspectLandUses": [ + "parcelDescriptions": [ + { + "siteRegistry": true, + "dateNoted": "2013-12-17", + "parcelID": "19564", + "crownLandUsePIN": "15377", + "crownLandFileNumber": "15585", + "landDescription": "LOT 2 OF LOT 1 BLOCK 2 DISTRICT LOT 5 PLAN 7668" + }, { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-04-27 (described on Site Profile dated 2015-04-27)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "dateNoted": "2022-09-09", + "parcelID": "18267", + "crownLandUsePIN": "19025", + "crownLandFileNumber": "18099", + "landDescription": "LOT 1 OF LOT 1 BLOCK 1 DISTRICT LOT 3 PLAN 6232" + }, + { + "siteRegistry": true, + "dateNoted": "2016-11-13", + "parcelID": "18145", + "crownLandUsePIN": "16061", + "crownLandFileNumber": "20690", + "landDescription": "LOT 2 OF LOT 2 BLOCK 4 DISTRICT LOT 5 PLAN 4130" }, { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-11-30 (described on Site Profile dated 2017-11-30)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "dateNoted": "2018-07-03", + "parcelID": "17557", + "crownLandUsePIN": "17621", + "crownLandFileNumber": "19879", + "landDescription": "LOT 5 OF LOT 1 BLOCK 1 DISTRICT LOT 2 PLAN 5188" } ], "siteDisclosures": [ { - "siteRegistry": true, - "dateReceived": "2015-08-24", - "dateCompleted": "2017-02-22", - "dateEntered": "2020-01-25", - "dateRegistrar": "2016-10-30", - "dateLocalAuthorityReceived": "2013-11-14", - "summary": "Sint consequatur incidunt impedit nesciunt voluptatem error itaque atque quibusdam.", - "informationUsed": "Delectus qui quidem consectetur magni consequuntur sint porro eum.\nHic libero tempora officia totam similique.\nRepudiandae distinctio voluptatibus.\nVel ex ratione mollitia excepturi consectetur tenetur.", - "pastOrPresentOrders": "Distinctio omnis inventore iste.\nMagnam pariatur accusamus totam.\nReiciendis dicta animi corrupti neque sunt delectus illo sequi provident.", + "siteRegistry": false, + "dateReceived": "2015-08-01", + "dateCompleted": "2015-02-09", + "dateEntered": "2014-05-04", + "dateRegistrar": "2023-04-06", + "dateLocalAuthorityReceived": "2015-01-01", + "summary": "Distinctio quia sequi maxime occaecati nisi.", + "informationUsed": "Reiciendis commodi veritatis.\nSaepe debitis libero ipsa.\nAperiam impedit consequatur recusandae similique eligendi velit laboriosam velit.\nOdit commodi exercitationem rem quod beatae in.\nQuaerat minima molestiae autem nulla laudantium veritatis eligendi.", + "pastOrPresentOrders": "Asperiores accusantium velit totam.\nIusto illo deserunt similique reprehenderit quam cupiditate ea velit.", "commercialAndIndustrialPurposes": [ { "scheduleReference": "F2*", @@ -18377,8 +20960,8 @@ "siteRegistry": false }, { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false }, { @@ -18387,25 +20970,30 @@ "siteRegistry": true }, { - "scheduleReference": "F2*", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false } ] }, { - "siteRegistry": false, - "dateReceived": "2019-01-10", - "dateCompleted": "2018-07-28", - "dateEntered": "2016-10-10", - "dateRegistrar": "2022-10-23", - "dateLocalAuthorityReceived": "2018-06-11", - "summary": "Velit enim est pariatur nihil vel iste.\nQuis dolore id adipisci eaque.", - "informationUsed": "Dignissimos ea consequatur ipsa a.\nEst blanditiis praesentium.\nFugit rerum eum at saepe.", - "pastOrPresentOrders": "Occaecati voluptatibus deserunt.", + "siteRegistry": true, + "dateReceived": "2020-06-12", + "dateCompleted": "2021-04-04", + "dateEntered": "2016-07-09", + "dateRegistrar": "2014-05-06", + "dateLocalAuthorityReceived": "2019-06-23", + "summary": "Expedita magnam amet modi sit quidem debitis libero tenetur rem.", + "informationUsed": "Facilis sunt dignissimos necessitatibus ad quod odit.\nMinus eius qui minima nostrum rerum delectus aliquid ducimus.\nSit ratione tempore officia dignissimos.\nMaiores in vel ad facilis explicabo porro excepturi vero cupiditate.\nTenetur itaque aspernatur iste voluptatibus distinctio possimus corporis impedit alias.", + "pastOrPresentOrders": "Ea facere delectus repellendus id soluta beatae.", "commercialAndIndustrialPurposes": [ { - "scheduleReference": "F2*", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false }, @@ -18415,106 +21003,86 @@ "siteRegistry": false }, { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false } ] } ], "activityLog": [ { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "BOYLE YESENIA", - "timestamp": "2017-09-28" + "user": "PFANNERSTILL DOLLY", + "timestamp": "2017-11-23" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "REINGER AUDRA", - "timestamp": "2014-07-26" + "user": "HILLL CLEMENT", + "timestamp": "2013-10-20" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "BOEHM DECLAN", - "timestamp": "2019-03-13" - }, - { - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "SAWAYN ABRAHAM", - "timestamp": "2014-09-03" + "user": "ZIEME FREDERIK", + "timestamp": "2015-06-09" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "RITCHIE EDISON", - "timestamp": "2022-11-03" + "user": "WIZA SHANEL", + "timestamp": "2020-11-07" }, { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "WOLFF SARAI", - "timestamp": "2013-11-25" + "user": "KRIS TESS", + "timestamp": "2021-09-22" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "SPINKA LLEWELLYN", - "timestamp": "2023-05-23" + "user": "BLOCK GEOVANNI", + "timestamp": "2014-07-07" } ], "associatedSites": [ { - "dateNoted": "2016-06-12", - "notes": "", - "parcelID": "19588", - "siteID": "17419", - "siteRegistry": true - }, - { - "dateNoted": "2021-04-01", - "notes": "", - "parcelID": "16396", - "siteID": "16740", - "siteRegistry": true - }, - { - "dateNoted": "2020-10-08", + "dateNoted": "2018-11-05", "notes": "", - "parcelID": "20829", - "siteID": "15958", + "parcelID": "20890", + "siteID": "20833", "siteRegistry": true } ] }, { - "uuid": "09c657a1-0d15-4113-9622-18cdd10acc08", - "siteID": 15954, - "address": "419 Rau Falls", - "latitude": 54.5402, - "longitude": -130.9945, - "lastUpdated": "2020-09-11", - "city": "Carrollton", - "region": " North Coast", - "victoriaFile": "26250-20/8392", + "uuid": "2b2a6cb9-be77-4aa3-86fb-aef29ccc4814", + "siteID": 17225, + "address": "5744 Bogisich Fall", + "latitude": 54.6818, + "longitude": -133.1289, + "lastUpdated": "2022-08-24", + "city": "West Groverland", + "region": "Mainland/Southwest", + "victoriaFile": "26250-20/14424", "regionalFile": "N/A", "parcelIDs": [ - 7122985, - 9089326, - 3185603, - 2530529, - 6591825 + 384941, + 1131610, + 9521775, + 9606693, + 8026143 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2023-03-31", - "completed": "2021-05-21", - "initiated": "2016-05-24", - "ministryContact": "LOWE JERMAINE", + "createdAt": "2021-12-21", + "completed": "2017-01-09", + "initiated": "2019-06-26", + "ministryContact": "GUSIKOWSKI DEBORAH", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -18524,27 +21092,22 @@ "notationParticipants": [ { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": true }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false } ], "siteRegistry": false }, { - "createdAt": "2014-09-17", - "completed": "2013-11-06", - "initiated": "2014-05-29", - "ministryContact": "LESCH WHITNEY", + "createdAt": "2019-09-15", + "completed": "2015-11-27", + "initiated": "2016-03-17", + "ministryContact": "FAHEY WELLINGTON", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -18554,32 +21117,27 @@ "notationParticipants": [ { "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true } ], "siteRegistry": true }, { - "createdAt": "2022-02-14", - "completed": "2021-12-29", - "initiated": "2017-04-24", - "ministryContact": "WEHNER ROSLYN", + "createdAt": "2016-01-08", + "completed": "2018-07-30", + "initiated": "2014-05-21", + "ministryContact": "GOTTLIEB DAMON", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -18590,21 +21148,21 @@ { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2023-04-18", - "completed": "2014-12-10", - "initiated": "2022-06-21", - "ministryContact": "LEHNER THAD", + "createdAt": "2019-04-27", + "completed": "2020-10-24", + "initiated": "2019-02-11", + "ministryContact": "BALISTRERI WHITNEY", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -18613,28 +21171,28 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2022-07-12", - "completed": "2019-04-29", - "initiated": "2016-04-28", - "ministryContact": "SCHOEN DALLIN", + "createdAt": "2017-01-27", + "completed": "2015-09-17", + "initiated": "2015-12-08", + "ministryContact": "STROSIN JEROME", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -18643,13 +21201,13 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": false }, { @@ -18664,95 +21222,119 @@ "participants": [ { "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2017-09-05", - "startDate": "2015-12-26", + "endDate": "2018-06-01", + "startDate": "2015-03-12", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], - "siteRegistry": true + "siteRegistry": false }, { - "name": "AMET, DOLOR SIT", - "endDate": "2017-12-10", - "startDate": "2017-09-20", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2020-10-16", + "startDate": "2016-05-17", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": true }, { - "name": "AMET, DOLOR SIT", - "endDate": "2015-09-23", - "startDate": "2015-02-18", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2018-10-09", + "startDate": "2019-03-19", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2019-09-04", + "startDate": "2023-06-10", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false } ], "suspectLandUses": [ { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-05-10 (described on Site Profile dated 2021-05-10)", + "notes": "INSERTED FOR SITE PROFILE DATED 2021-03-05 (described on Site Profile dated 2021-03-05)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-07-23 (described on Site Profile dated 2022-07-23)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2020-10-11 (described on Site Profile dated 2020-10-11)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-01-09 (described on Site Profile dated 2019-01-09)", + "notes": "INSERTED FOR SITE PROFILE DATED 2022-07-24 (described on Site Profile dated 2022-07-24)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], - "siteDisclosures": [ + "parcelDescriptions": [ + { + "siteRegistry": true, + "dateNoted": "2015-10-31", + "parcelID": "15298", + "crownLandUsePIN": "15436", + "crownLandFileNumber": "20734", + "landDescription": "LOT 4 OF LOT 2 BLOCK 2 DISTRICT LOT 4 PLAN 8368" + }, { "siteRegistry": false, - "dateReceived": "2019-07-28", - "dateCompleted": "2015-09-19", - "dateEntered": "2014-06-03", - "dateRegistrar": "2020-04-12", - "dateLocalAuthorityReceived": "2017-08-05", - "summary": "Adipisci eum sit.\nAccusamus velit dignissimos sed error quibusdam nemo.\nArchitecto laborum alias sapiente quisquam quibusdam est vitae dolor nam.", - "informationUsed": "Consectetur repellendus necessitatibus soluta ad cumque est cupiditate.\nAliquid qui quisquam vero vero ad dolor nesciunt fuga.\nProvident mollitia nam corporis necessitatibus necessitatibus ullam.\nRepellendus quia dicta earum.\nIste repudiandae enim odio.", - "pastOrPresentOrders": "Adipisci fugiat et totam.\nFuga id facilis quae consequatur minima rerum.", - "commercialAndIndustrialPurposes": [ - { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true - }, - { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true - }, - { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true - } - ] + "dateNoted": "2015-11-23", + "parcelID": "17293", + "crownLandUsePIN": "18506", + "crownLandFileNumber": "19311", + "landDescription": "LOT 4 OF LOT 5 BLOCK 1 DISTRICT LOT 3 PLAN 5949" + }, + { + "siteRegistry": false, + "dateNoted": "2016-08-15", + "parcelID": "20398", + "crownLandUsePIN": "15982", + "crownLandFileNumber": "19884", + "landDescription": "LOT 2 OF LOT 5 BLOCK 2 DISTRICT LOT 1 PLAN 9476" }, { "siteRegistry": true, - "dateReceived": "2016-09-07", - "dateCompleted": "2016-02-11", - "dateEntered": "2020-08-21", - "dateRegistrar": "2014-04-20", - "dateLocalAuthorityReceived": "2022-01-13", - "summary": "Dolorem alias odit quia repellendus error minima.", - "informationUsed": "Molestiae tenetur cupiditate distinctio ipsum aliquam.\nError facilis consequatur cum laborum exercitationem consequatur dolor.\nUllam eum dolorem a dolores pariatur repellat neque impedit eius.\nRerum nisi nesciunt reprehenderit eaque accusantium occaecati.", - "pastOrPresentOrders": "Aspernatur voluptatum impedit atque quisquam tempora odio.\nRecusandae natus dolorum sit nulla sunt quia.", + "dateNoted": "2016-04-04", + "parcelID": "18735", + "crownLandUsePIN": "19775", + "crownLandFileNumber": "17697", + "landDescription": "LOT 1 OF LOT 5 BLOCK 3 DISTRICT LOT 1 PLAN 4243" + }, + { + "siteRegistry": false, + "dateNoted": "2018-08-24", + "parcelID": "17572", + "crownLandUsePIN": "18989", + "crownLandFileNumber": "18961", + "landDescription": "LOT 3 OF LOT 4 BLOCK 1 DISTRICT LOT 3 PLAN 5708" + } + ], + "siteDisclosures": [ + { + "siteRegistry": false, + "dateReceived": "2015-02-15", + "dateCompleted": "2022-07-31", + "dateEntered": "2021-05-04", + "dateRegistrar": "2019-04-09", + "dateLocalAuthorityReceived": "2017-05-24", + "summary": "Consequatur aliquam quas voluptatibus reiciendis nobis suscipit quaerat est.", + "informationUsed": "Quos voluptatum minima explicabo laboriosam possimus earum aliquid.\nNemo iusto quo non temporibus molestiae nobis facere possimus enim.\nItaque ad maxime porro totam dolorem eveniet nam alias doloremque.", + "pastOrPresentOrders": "Laudantium excepturi ex provident eveniet eius nulla quidem ducimus eos.\nQuo praesentium ex similique dolore.\nHic facere sint dicta.", "commercialAndIndustrialPurposes": [ { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false }, { @@ -18760,117 +21342,112 @@ "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false }, - { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false - }, { "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false } ] } ], "activityLog": [ + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "WEISSNAT FLORENCIO", + "timestamp": "2014-01-24" + }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "JACOBS GARETT", - "timestamp": "2023-04-15" + "user": "BREITENBERG JONATHON", + "timestamp": "2013-12-17" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "HAND DANNIE", - "timestamp": "2016-09-10" + "user": "BOYER ALYSSON", + "timestamp": "2017-09-18" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "MERTZ MAYBELL", - "timestamp": "2022-03-14" + "user": "BOEHM KATHARINA", + "timestamp": "2021-08-01" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "LEGROS VAUGHN", - "timestamp": "2016-03-07" + "user": "BARTON ABBIGAIL", + "timestamp": "2023-08-27" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "ALTENWERTH TALON", - "timestamp": "2020-01-24" + "user": "CRUICKSHANK MARCIA", + "timestamp": "2021-04-10" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "MAYERT ARIEL", - "timestamp": "2016-01-12" + "user": "CONN AUDREANNE", + "timestamp": "2021-01-16" }, { - "siteRegistry": true, + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "BOTSFORD HILBERT", - "timestamp": "2014-07-31" + "user": "SCHIMMEL ISOBEL", + "timestamp": "2018-02-24" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "OSINSKI GENNARO", - "timestamp": "2019-03-25" - }, - { - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "HYATT CHADD", - "timestamp": "2018-01-11" + "user": "FERRY REID", + "timestamp": "2021-08-29" } ], "associatedSites": [ { - "dateNoted": "2021-04-14", + "dateNoted": "2022-10-13", "notes": "", - "parcelID": "17784", - "siteID": "18790", - "siteRegistry": false + "parcelID": "15875", + "siteID": "16843", + "siteRegistry": true }, { - "dateNoted": "2015-01-14", + "dateNoted": "2021-12-28", "notes": "", - "parcelID": "17113", - "siteID": "20571", - "siteRegistry": true + "parcelID": "17949", + "siteID": "18405", + "siteRegistry": false } ] }, { - "uuid": "e62f98fb-134a-4327-821e-c458e2e379f5", - "siteID": 17036, - "address": "78045 Hudson Squares", - "latitude": 57.7805, - "longitude": -138.9534, - "lastUpdated": "2018-11-13", - "city": "Hoegerland", - "region": "Thompson-Okanagan", - "victoriaFile": "26250-20/15720", + "uuid": "5e71c7e8-bf7e-4701-b2d3-d83ed52778c5", + "siteID": 18372, + "address": "256 Heaney Row", + "latitude": 58.3438, + "longitude": -135.407, + "lastUpdated": "2016-10-13", + "city": "Mountain View", + "region": "Kootenay", + "victoriaFile": "26250-20/9938", "regionalFile": "N/A", "parcelIDs": [ - 2408898, - 1224106, - 4981140, - 3175355, - 4722957 + 2386537, + 9781462, + 7012673, + 8295990, + 8860631 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2015-09-26", - "completed": "2022-10-18", - "initiated": "2019-06-23", - "ministryContact": "DARE HOLLY", + "createdAt": "2014-10-23", + "completed": "2019-01-12", + "initiated": "2021-10-19", + "ministryContact": "PACOCHA ROSLYN", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -18879,33 +21456,38 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2017-12-01", - "completed": "2022-03-28", - "initiated": "2019-01-26", - "ministryContact": "GERHOLD JERMEY", + "createdAt": "2018-07-19", + "completed": "2020-05-29", + "initiated": "2019-09-30", + "ministryContact": "DICKINSON LEOLA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -18921,7 +21503,7 @@ { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", @@ -18929,7 +21511,12 @@ "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false } @@ -18937,10 +21524,10 @@ "siteRegistry": true }, { - "createdAt": "2021-03-15", - "completed": "2017-12-07", - "initiated": "2017-05-12", - "ministryContact": "GLEASON LEIF", + "createdAt": "2015-04-06", + "completed": "2020-05-18", + "initiated": "2016-08-27", + "ministryContact": "JAKUBOWSKI NESTOR", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -18954,17 +21541,17 @@ "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false } @@ -18972,10 +21559,10 @@ "siteRegistry": true }, { - "createdAt": "2019-05-15", - "completed": "2015-03-09", - "initiated": "2016-01-01", - "ministryContact": "SIMONIS GAYLE", + "createdAt": "2022-03-14", + "completed": "2013-11-13", + "initiated": "2021-03-10", + "ministryContact": "BREKKE MEGGIE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -18984,23 +21571,28 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2021-11-26", - "completed": "2017-08-17", - "initiated": "2020-12-19", - "ministryContact": "WITTING HILDEGARD", + "createdAt": "2016-03-22", + "completed": "2020-10-30", + "initiated": "2023-08-25", + "ministryContact": "BAUCH DEMARCUS", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -19010,23 +21602,23 @@ "notationParticipants": [ { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false } ], "siteRegistry": true @@ -19034,29 +21626,9 @@ ], "participants": [ { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2016-10-20", - "startDate": "2014-02-21", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": false - }, - { - "name": "IPSUM", - "endDate": "2014-04-10", - "startDate": "2020-10-04", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": false - }, - { - "name": "IPSUM", - "endDate": "2017-06-04", - "startDate": "2014-04-29", + "name": "AMET, DOLOR SIT", + "endDate": "2018-12-07", + "startDate": "2021-10-02", "notes": "", "roles": [ "ORGANIZATION" @@ -19064,97 +21636,129 @@ "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2023-08-11", - "startDate": "2016-01-11", + "name": "AMET, DOLOR SIT", + "endDate": "2018-11-03", + "startDate": "2017-04-27", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false } ], "suspectLandUses": [ { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-10-06 (described on Site Profile dated 2014-10-06)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2017-01-06 (described on Site Profile dated 2017-01-06)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-10-19 (described on Site Profile dated 2022-10-19)", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2013-10-25 (described on Site Profile dated 2013-10-25)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-11-29 (described on Site Profile dated 2015-11-29)", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2018-06-16 (described on Site Profile dated 2018-06-16)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + } + ], + "parcelDescriptions": [ + { + "siteRegistry": true, + "dateNoted": "2017-11-18", + "parcelID": "16768", + "crownLandUsePIN": "15414", + "crownLandFileNumber": "20925", + "landDescription": "LOT 5 OF LOT 4 BLOCK 5 DISTRICT LOT 5 PLAN 9224" + }, + { + "siteRegistry": false, + "dateNoted": "2020-05-09", + "parcelID": "17312", + "crownLandUsePIN": "17087", + "crownLandFileNumber": "20850", + "landDescription": "LOT 4 OF LOT 3 BLOCK 2 DISTRICT LOT 1 PLAN 6833" + }, + { + "siteRegistry": false, + "dateNoted": "2014-11-07", + "parcelID": "20378", + "crownLandUsePIN": "15897", + "crownLandFileNumber": "19566", + "landDescription": "LOT 3 OF LOT 3 BLOCK 5 DISTRICT LOT 1 PLAN 3949" }, { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-05-22 (described on Site Profile dated 2015-05-22)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "dateNoted": "2019-07-28", + "parcelID": "19952", + "crownLandUsePIN": "19457", + "crownLandFileNumber": "15976", + "landDescription": "LOT 4 OF LOT 5 BLOCK 4 DISTRICT LOT 3 PLAN 6500" }, { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-01-13 (described on Site Profile dated 2022-01-13)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "dateNoted": "2016-01-02", + "parcelID": "16898", + "crownLandUsePIN": "15914", + "crownLandFileNumber": "16987", + "landDescription": "LOT 4 OF LOT 4 BLOCK 4 DISTRICT LOT 4 PLAN 4439" } ], "siteDisclosures": [ { - "siteRegistry": true, - "dateReceived": "2013-10-26", - "dateCompleted": "2013-12-31", - "dateEntered": "2023-04-18", - "dateRegistrar": "2016-07-21", - "dateLocalAuthorityReceived": "2017-04-22", - "summary": "Rerum provident explicabo libero similique id tempora voluptas minima iusto.\nDolorum dicta numquam ab error tenetur eum ad a aliquam.\nEveniet distinctio quisquam impedit iste.", - "informationUsed": "Asperiores accusantium velit.\nNobis nam eius commodi a voluptates vel necessitatibus nisi fugiat.\nEveniet voluptate molestiae vel earum explicabo alias ratione.", - "pastOrPresentOrders": "Nisi consectetur adipisci.\nSequi cum vero.", + "siteRegistry": false, + "dateReceived": "2023-02-13", + "dateCompleted": "2014-01-20", + "dateEntered": "2017-04-21", + "dateRegistrar": "2014-06-24", + "dateLocalAuthorityReceived": "2023-03-29", + "summary": "Soluta quo reprehenderit.\nSuscipit magnam est.\nCulpa quia quasi.", + "informationUsed": "Dolore reprehenderit inventore.\nEius modi consequuntur.\nSequi at consequatur impedit similique fuga culpa error officiis.\nAut eveniet sapiente ab at iure debitis eum sunt.\nRatione laudantium ipsam ut id repellendus.", + "pastOrPresentOrders": "Placeat dignissimos quasi.\nAtque deleniti ea inventore.\nExercitationem repellat illum dicta molestiae recusandae ab voluptatem illo.", "commercialAndIndustrialPurposes": [ { "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false + "siteRegistry": true }, { - "scheduleReference": "F2*", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, { "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true + "siteRegistry": false + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false } ] }, { - "siteRegistry": false, - "dateReceived": "2020-06-10", - "dateCompleted": "2023-01-12", - "dateEntered": "2018-11-19", - "dateRegistrar": "2020-06-22", - "dateLocalAuthorityReceived": "2015-04-05", - "summary": "Similique beatae voluptatibus cumque nesciunt voluptas impedit.\nDolores error magni aspernatur dolore pariatur quia minus temporibus dolor.\nDolorum ipsam minus voluptate occaecati dolor.", - "informationUsed": "Inventore dolor expedita porro.\nNulla porro illo tempora tempora commodi accusamus molestias magni iure.\nA neque earum veniam.", - "pastOrPresentOrders": "Aut ad deleniti.", + "siteRegistry": true, + "dateReceived": "2023-10-03", + "dateCompleted": "2018-02-07", + "dateEntered": "2020-08-14", + "dateRegistrar": "2016-09-16", + "dateLocalAuthorityReceived": "2017-10-10", + "summary": "Nobis iste eaque at.", + "informationUsed": "Maiores unde corporis facere.\nFugit fugit ad veritatis facilis animi blanditiis.\nNobis error optio.", + "pastOrPresentOrders": "Nemo aliquam enim odit harum tempore nostrum necessitatibus occaecati reprehenderit.\nIpsum eveniet eius porro sequi iste sint quas.\nLibero mollitia alias id repellat laudantium.", "commercialAndIndustrialPurposes": [ { "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, - { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false - }, { "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true + "siteRegistry": false } ] } @@ -19163,107 +21767,107 @@ { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "SCHOWALTER CHANCE", - "timestamp": "2019-04-02" + "user": "KRIS KENNEDY", + "timestamp": "2018-08-06" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "GRAHAM MELISA", - "timestamp": "2015-06-10" + "user": "LINDGREN HENRIETTE", + "timestamp": "2016-01-09" }, { - "siteRegistry": true, + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "BOSCO RILEY", - "timestamp": "2020-05-20" + "user": "NIKOLAUS MILFORD", + "timestamp": "2019-11-29" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "SCHINNER ZELDA", - "timestamp": "2017-09-13" + "user": "BRAUN ALBERT", + "timestamp": "2017-08-17" }, { - "siteRegistry": true, + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "KAUTZER MARJORY", - "timestamp": "2022-05-05" + "user": "BAHRINGER PRINCESS", + "timestamp": "2014-05-29" }, { - "siteRegistry": true, + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "JOHNSTON MELANY", - "timestamp": "2017-12-27" + "user": "HAGENES MISAEL", + "timestamp": "2021-09-23" }, { - "siteRegistry": true, + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "ARMSTRONG EBBA", - "timestamp": "2020-08-23" + "user": "SPENCER-MERTZ CHAD", + "timestamp": "2018-04-26" }, { - "siteRegistry": true, + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "JACOBSON LUCIE", - "timestamp": "2015-06-18" + "user": "BATZ EARL", + "timestamp": "2017-06-12" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "RUNOLFSDOTTIR FLAVIO", - "timestamp": "2018-12-13" + "user": "PFANNERSTILL JULIANNE", + "timestamp": "2022-06-25" } ], "associatedSites": [ { - "dateNoted": "2020-11-05", + "dateNoted": "2017-02-14", "notes": "", - "parcelID": "19430", - "siteID": "17710", + "parcelID": "15497", + "siteID": "17287", "siteRegistry": false }, { - "dateNoted": "2016-07-25", + "dateNoted": "2015-08-27", "notes": "", - "parcelID": "20412", - "siteID": "19367", - "siteRegistry": true + "parcelID": "16623", + "siteID": "16733", + "siteRegistry": false }, { - "dateNoted": "2016-11-05", + "dateNoted": "2016-05-10", "notes": "", - "parcelID": "17985", - "siteID": "16209", - "siteRegistry": true + "parcelID": "19887", + "siteID": "16392", + "siteRegistry": false } ] }, { - "uuid": "7f0d3881-ec0a-4142-b0be-1bfbbc7e4c8a", - "siteID": 17480, - "address": "22773 Eleanore Ford", - "latitude": 52.496, - "longitude": -126.9632, - "lastUpdated": "2022-11-16", - "city": "Lake Garland", + "uuid": "0973e8a4-c8a6-44fe-8e4e-66f8ddaf9c00", + "siteID": 17940, + "address": "7141 Arvilla Port", + "latitude": 53.6005, + "longitude": -122.7352, + "lastUpdated": "2020-07-15", + "city": "New Britain", "region": "Vancouver Island/Coast", - "victoriaFile": "26250-20/10490", + "victoriaFile": "26250-20/16518", "regionalFile": "N/A", "parcelIDs": [ - 2382970, - 8692204, - 3047111, - 4233887, - 1275413 + 6297633, + 6504120, + 2441873, + 5645777, + 909689 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2016-12-04", - "completed": "2021-07-07", - "initiated": "2021-11-08", - "ministryContact": "HEIDENREICH HIRAM", + "createdAt": "2015-03-17", + "completed": "2019-05-25", + "initiated": "2019-06-14", + "ministryContact": "SWIFT FREDDY", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -19271,64 +21875,34 @@ "" ], "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false - } - ], - "siteRegistry": true - }, - { - "createdAt": "2023-05-04", - "completed": "2022-08-13", - "initiated": "2017-07-27", - "ministryContact": "LITTEL HARRY", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ + }, { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true + "role": "SUBMITTED BY", + "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2017-08-24", - "completed": "2015-12-03", - "initiated": "2014-09-05", - "ministryContact": "BROWN LEILANI", + "createdAt": "2020-01-13", + "completed": "2022-03-21", + "initiated": "2017-12-04", + "ministryContact": "FRANECKI FELICIA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -19337,28 +21911,28 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2019-09-09", - "completed": "2016-11-23", - "initiated": "2014-01-28", - "ministryContact": "VONRUEDEN-ULLRICH LAILA", + "createdAt": "2016-12-11", + "completed": "2013-11-03", + "initiated": "2018-04-02", + "ministryContact": "SKILES EDWARDO", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -19367,24 +21941,14 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", @@ -19392,67 +21956,118 @@ "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false } ], "participants": [ { "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2023-01-16", - "startDate": "2023-01-06", + "endDate": "2020-10-25", + "startDate": "2015-09-08", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": false + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2022-11-10", + "startDate": "2017-11-02", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true }, { "name": "AMET, DOLOR SIT", - "endDate": "2022-09-07", - "startDate": "2022-06-22", + "endDate": "2017-01-31", + "startDate": "2015-04-15", "notes": "", "roles": [ "ORGANIZATION" ], "siteRegistry": true + }, + { + "name": "IPSUM", + "endDate": "2014-07-28", + "startDate": "2018-01-11", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false } ], "suspectLandUses": [ + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2021-02-17 (described on Site Profile dated 2021-02-17)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2020-02-26 (described on Site Profile dated 2020-02-26)", + "notes": "INSERTED FOR SITE PROFILE DATED 2014-12-15 (described on Site Profile dated 2014-12-15)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2022-04-22 (described on Site Profile dated 2022-04-22)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-11-15 (described on Site Profile dated 2021-11-15)", + "notes": "INSERTED FOR SITE PROFILE DATED 2021-09-08 (described on Site Profile dated 2021-09-08)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + } + ], + "parcelDescriptions": [ + { + "siteRegistry": false, + "dateNoted": "2021-12-20", + "parcelID": "20923", + "crownLandUsePIN": "20581", + "crownLandFileNumber": "15478", + "landDescription": "LOT 5 OF LOT 2 BLOCK 1 DISTRICT LOT 1 PLAN 4763" }, { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-03-17 (described on Site Profile dated 2018-03-17)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "dateNoted": "2014-11-10", + "parcelID": "20416", + "crownLandUsePIN": "20632", + "crownLandFileNumber": "16102", + "landDescription": "LOT 3 OF LOT 4 BLOCK 4 DISTRICT LOT 4 PLAN 8886" }, { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2013-12-24 (described on Site Profile dated 2013-12-24)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "dateNoted": "2017-04-02", + "parcelID": "16769", + "crownLandUsePIN": "19149", + "crownLandFileNumber": "20083", + "landDescription": "LOT 4 OF LOT 4 BLOCK 5 DISTRICT LOT 3 PLAN 6363" } ], "siteDisclosures": [ { "siteRegistry": true, - "dateReceived": "2020-06-04", - "dateCompleted": "2017-11-26", - "dateEntered": "2021-01-30", - "dateRegistrar": "2019-04-15", - "dateLocalAuthorityReceived": "2014-03-14", - "summary": "Numquam consequuntur vel ullam ex dolore molestiae.\nError dolore deleniti neque quia nobis.", - "informationUsed": "Sint dolor architecto.\nHarum cupiditate perspiciatis a reiciendis cum dicta sequi.\nSequi harum cumque deleniti sunt repellat tempore cupiditate deleniti.\nPorro vero unde minima velit quae distinctio dolores aspernatur.", - "pastOrPresentOrders": "Praesentium praesentium suscipit magnam natus.\nExcepturi deleniti tempore ut nostrum quaerat nemo itaque iure.", + "dateReceived": "2019-08-13", + "dateCompleted": "2018-07-23", + "dateEntered": "2023-02-21", + "dateRegistrar": "2015-03-23", + "dateLocalAuthorityReceived": "2018-11-01", + "summary": "Officiis aliquid repudiandae libero molestiae.\nCommodi esse in alias.\nQui repellendus recusandae.", + "informationUsed": "Cumque ut quasi dolor ratione sunt.\nPlaceat dolorem deleniti.\nIllum nam ipsam excepturi omnis.\nIllum blanditiis occaecati enim veritatis maiores laboriosam numquam necessitatibus maiores.", + "pastOrPresentOrders": "Maiores reprehenderit molestias voluptas eligendi.\nDeleniti molestias fugit consectetur dolor praesentium.", "commercialAndIndustrialPurposes": [ { "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, @@ -19460,6 +22075,11 @@ "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true } ] } @@ -19468,100 +22088,106 @@ { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "LYNCH KEAGAN", - "timestamp": "2018-11-06" + "user": "CONN MADISON", + "timestamp": "2020-01-21" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "MCCLURE LESSIE", - "timestamp": "2023-05-24" + "user": "WUNSCH VIOLETTE", + "timestamp": "2023-06-13" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "HYATT JANET", - "timestamp": "2015-09-21" + "user": "SPORER WILSON", + "timestamp": "2021-04-19" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "HICKLE ARNULFO", - "timestamp": "2020-07-09" + "user": "KIRLIN DERRICK", + "timestamp": "2020-09-27" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "HOWE CHRIST", - "timestamp": "2017-06-11" + "user": "CORMIER CORDELIA", + "timestamp": "2017-07-03" }, { - "siteRegistry": true, + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "SKILES PAT", - "timestamp": "2015-04-06" + "user": "KOEPP MEAGHAN", + "timestamp": "2021-06-20" }, { - "siteRegistry": true, + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "LANGOSH EMILIANO", - "timestamp": "2022-12-23" + "user": "LUEILWITZ MABELLE", + "timestamp": "2018-12-26" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "HERZOG ELMO", - "timestamp": "2016-10-02" + "user": "MOORE ADA", + "timestamp": "2015-09-01" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "COLLIER GEORGETTE", - "timestamp": "2016-12-25" + "user": "TORPHY KOREY", + "timestamp": "2018-06-26" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "WEBER TIERRA", + "timestamp": "2018-08-08" } ], "associatedSites": [ { - "dateNoted": "2018-01-01", + "dateNoted": "2019-02-14", "notes": "", - "parcelID": "19343", - "siteID": "19013", + "parcelID": "16211", + "siteID": "19240", "siteRegistry": true }, { - "dateNoted": "2022-07-07", + "dateNoted": "2014-04-28", "notes": "", - "parcelID": "15655", - "siteID": "20188", - "siteRegistry": true + "parcelID": "18687", + "siteID": "18292", + "siteRegistry": false } ] }, { - "uuid": "b9aac421-1fdf-46dd-9aff-171fa5072c47", - "siteID": 17774, - "address": "65918 Brandi Lodge", - "latitude": 48.2599, - "longitude": -135.2832, - "lastUpdated": "2021-08-01", - "city": "Gleasonburgh", + "uuid": "9c2f3bae-e32b-40b0-a21e-579aad6cfc1f", + "siteID": 15868, + "address": "6189 Drake Meadow", + "latitude": 49.7679, + "longitude": -129.2771, + "lastUpdated": "2023-04-03", + "city": "Greencester", "region": "Thompson-Okanagan", - "victoriaFile": "26250-20/9037", + "victoriaFile": "26250-20/7206", "regionalFile": "N/A", "parcelIDs": [ - 3753866, - 5901055, - 8518886, - 5899759, - 8647948 + 8834956, + 1921838, + 1329199, + 8144819, + 5354704 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2020-08-13", - "completed": "2019-04-18", - "initiated": "2016-02-17", - "ministryContact": "KIHN NESTOR", + "createdAt": "2019-05-13", + "completed": "2023-09-12", + "initiated": "2021-05-24", + "ministryContact": "OLSON-O'REILLY MEKHI", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -19571,27 +22197,27 @@ "notationParticipants": [ { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false + "role": "SUBMITTED BY", + "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2018-07-22", - "completed": "2016-08-17", - "initiated": "2021-08-19", - "ministryContact": "GUTKOWSKI CINDY", + "createdAt": "2022-04-24", + "completed": "2015-10-20", + "initiated": "2018-02-20", + "ministryContact": "UPTON YASMINE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -19600,39 +22226,29 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false } ], "participants": [ { - "name": "IPSUM", - "endDate": "2020-09-14", - "startDate": "2015-02-17", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": false - }, - { - "name": "AMET, DOLOR SIT", - "endDate": "2020-10-26", - "startDate": "2018-01-08", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2020-07-21", + "startDate": "2015-07-25", "notes": "", "roles": [ "ORGANIZATION" @@ -19640,9 +22256,9 @@ "siteRegistry": true }, { - "name": "AMET, DOLOR SIT", - "endDate": "2015-01-10", - "startDate": "2015-07-27", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2016-03-01", + "startDate": "2018-05-11", "notes": "", "roles": [ "ORGANIZATION" @@ -19651,8 +22267,8 @@ }, { "name": "SHELL CANADA PRODUCTS", - "endDate": "2016-10-01", - "startDate": "2018-11-19", + "endDate": "2014-10-07", + "startDate": "2017-07-17", "notes": "", "roles": [ "ORGANIZATION" @@ -19663,161 +22279,199 @@ "suspectLandUses": [ { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-09-21 (described on Site Profile dated 2017-09-21)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "notes": "INSERTED FOR SITE PROFILE DATED 2015-12-31 (described on Site Profile dated 2015-12-31)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-03-10 (described on Site Profile dated 2018-03-10)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "notes": "INSERTED FOR SITE PROFILE DATED 2015-04-16 (described on Site Profile dated 2015-04-16)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + } + ], + "parcelDescriptions": [ + { + "siteRegistry": true, + "dateNoted": "2020-09-03", + "parcelID": "19170", + "crownLandUsePIN": "16672", + "crownLandFileNumber": "19000", + "landDescription": "LOT 1 OF LOT 2 BLOCK 4 DISTRICT LOT 5 PLAN 6979" }, { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-11-05 (described on Site Profile dated 2017-11-05)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "dateNoted": "2019-09-19", + "parcelID": "19637", + "crownLandUsePIN": "15823", + "crownLandFileNumber": "18037", + "landDescription": "LOT 3 OF LOT 3 BLOCK 5 DISTRICT LOT 5 PLAN 7466" }, { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-12-03 (described on Site Profile dated 2016-12-03)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "dateNoted": "2022-04-11", + "parcelID": "19911", + "crownLandUsePIN": "17772", + "crownLandFileNumber": "17580", + "landDescription": "LOT 5 OF LOT 1 BLOCK 2 DISTRICT LOT 2 PLAN 6052" }, { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-09-30 (described on Site Profile dated 2021-09-30)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "dateNoted": "2020-05-05", + "parcelID": "19365", + "crownLandUsePIN": "15621", + "crownLandFileNumber": "18555", + "landDescription": "LOT 2 OF LOT 5 BLOCK 2 DISTRICT LOT 2 PLAN 2967" } ], "siteDisclosures": [ { "siteRegistry": false, - "dateReceived": "2018-02-17", - "dateCompleted": "2017-08-28", - "dateEntered": "2018-02-10", - "dateRegistrar": "2014-08-16", - "dateLocalAuthorityReceived": "2014-09-04", - "summary": "Aut neque reprehenderit illum officia eius ducimus.\nNesciunt facilis animi.\nNam praesentium corporis cum eveniet occaecati.", - "informationUsed": "Accusantium cum vero rerum odit officiis quisquam repudiandae.\nVoluptates autem sint deleniti illo repellat.\nQuam dolor dolorum non magni ullam perspiciatis eaque unde.", - "pastOrPresentOrders": "Maxime unde veniam sint quia.\nCulpa numquam maiores porro explicabo.\nDoloribus sit soluta.", + "dateReceived": "2018-12-03", + "dateCompleted": "2018-04-16", + "dateEntered": "2023-09-05", + "dateRegistrar": "2019-09-22", + "dateLocalAuthorityReceived": "2019-12-27", + "summary": "Voluptatum earum illo earum modi doloremque eaque fugit numquam.\nIpsam corporis illum nulla recusandae iste.", + "informationUsed": "Maxime ullam nemo nostrum blanditiis ab sint.\nCum sit amet voluptas.\nCorrupti rerum eveniet commodi perferendis a cupiditate vero dolores.\nArchitecto alias voluptates accusamus suscipit.", + "pastOrPresentOrders": "Unde eveniet laborum.\nVeritatis eius temporibus.", "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, { "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false }, { "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true + "siteRegistry": false } ] }, { "siteRegistry": true, - "dateReceived": "2023-08-04", - "dateCompleted": "2017-10-12", - "dateEntered": "2020-10-23", - "dateRegistrar": "2016-03-05", - "dateLocalAuthorityReceived": "2023-05-04", - "summary": "Voluptas eveniet explicabo nulla iure accusantium.\nMolestiae ea quia nihil voluptates porro culpa sequi facilis.", - "informationUsed": "Quasi aspernatur ad.\nAliquid ea rem at architecto pariatur labore culpa.\nRem molestias doloribus provident et aliquid minima.\nTenetur expedita magnam saepe deserunt.", - "pastOrPresentOrders": "Vel odit itaque.\nNecessitatibus neque atque exercitationem quasi excepturi neque ullam nesciunt temporibus.\nNam iure deserunt cum animi.", + "dateReceived": "2015-11-23", + "dateCompleted": "2019-03-02", + "dateEntered": "2023-01-16", + "dateRegistrar": "2015-11-09", + "dateLocalAuthorityReceived": "2016-02-16", + "summary": "Laboriosam perspiciatis illum quis autem.\nDicta maiores minus molestias.", + "informationUsed": "Perferendis exercitationem illum blanditiis laborum quasi natus unde doloremque.\nAccusantium quis illo amet dignissimos ab odio a cupiditate.\nTotam aspernatur error ratione pariatur illo animi.\nNon rem nam quod ullam possimus.", + "pastOrPresentOrders": "Tempore ullam ipsa veritatis id saepe quis in.\nCum quia consequuntur.", "commercialAndIndustrialPurposes": [ - { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true - }, - { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true - }, { "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true + "siteRegistry": false }, { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true } ] } ], "activityLog": [ + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "DACH ALBA", + "timestamp": "2017-07-30" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "HANE VINCENT", + "timestamp": "2014-09-27" + }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "MCDERMOTT MORIAH", - "timestamp": "2017-08-09" + "user": "O'HARA ELIAS", + "timestamp": "2021-08-10" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "FRITSCH BRICE", - "timestamp": "2016-12-10" + "user": "MURPHY BRANT", + "timestamp": "2022-11-19" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "HAAG ADELBERT", + "timestamp": "2017-09-22" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "SPENCER KODY", - "timestamp": "2023-03-31" + "user": "HODKIEWICZ NAKIA", + "timestamp": "2016-03-23" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "ZULAUF FREIDA", - "timestamp": "2020-07-01" + "user": "MCGLYNN DENA", + "timestamp": "2013-11-03" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "SMITHAM FELICITY", - "timestamp": "2016-07-03" + "user": "FAHEY SAMANTHA", + "timestamp": "2014-10-24" }, { - "siteRegistry": false, + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "QUITZON ORAN", + "timestamp": "2023-09-25" + }, + { + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "SHIELDS BERT", - "timestamp": "2018-09-21" + "user": "SCHROEDER NATHANAEL", + "timestamp": "2018-05-15" } ], "associatedSites": [ { - "dateNoted": "2022-02-02", + "dateNoted": "2021-12-15", "notes": "", - "parcelID": "16374", - "siteID": "15251", + "parcelID": "20671", + "siteID": "19914", "siteRegistry": true } ] }, { - "uuid": "887a2c91-dac9-4012-abef-084fe25ebeae", - "siteID": 15800, - "address": "589 Retta Plaza", - "latitude": 48.5321, - "longitude": -132.3046, - "lastUpdated": "2018-10-27", - "city": "North Elfriedaworth", - "region": "Kootenay", - "victoriaFile": "26250-20/3565", + "uuid": "6b223d12-ab61-45d1-842a-ac0b5d87745b", + "siteID": 17606, + "address": "795 Kirlin Loop", + "latitude": 50.0395, + "longitude": -135.4042, + "lastUpdated": "2014-03-11", + "city": "Fort Immanuel", + "region": "Vancouver Island/Coast", + "victoriaFile": "26250-20/13799", "regionalFile": "N/A", "parcelIDs": [ - 7880128, - 3955238, - 8602133, - 906748, - 2976088 + 6203015, + 1174065, + 4505234, + 4817230, + 5727000 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2022-08-08", - "completed": "2016-11-23", - "initiated": "2017-09-12", - "ministryContact": "HILPERT BRANDI", + "createdAt": "2018-05-05", + "completed": "2014-11-09", + "initiated": "2018-10-16", + "ministryContact": "REINGER DELFINA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -19826,33 +22480,23 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false } ], "siteRegistry": false }, { - "createdAt": "2017-08-05", - "completed": "2018-09-05", - "initiated": "2021-10-07", - "ministryContact": "DIBBERT HERSHEL", + "createdAt": "2018-04-03", + "completed": "2022-07-21", + "initiated": "2015-07-25", + "ministryContact": "ROSENBAUM CLIFTON", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -19861,69 +22505,89 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false - }, + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "createdAt": "2017-02-17", + "completed": "2022-03-09", + "initiated": "2020-10-17", + "ministryContact": "FRIESEN LEVI", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false } ], "participants": [ { "name": "AMET, DOLOR SIT", - "endDate": "2016-07-04", - "startDate": "2018-03-27", + "endDate": "2014-07-26", + "startDate": "2018-10-08", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": false }, { "name": "AMET, DOLOR SIT", - "endDate": "2015-07-05", - "startDate": "2017-09-14", + "endDate": "2018-03-01", + "startDate": "2019-09-11", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2022-11-01", - "startDate": "2020-02-27", + "name": "AMET, DOLOR SIT", + "endDate": "2019-06-11", + "startDate": "2019-04-30", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": true }, { - "name": "IPSUM", - "endDate": "2014-01-02", - "startDate": "2017-04-06", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2016-06-25", + "startDate": "2015-02-07", "notes": "", "roles": [ "ORGANIZATION" @@ -19932,8 +22596,8 @@ }, { "name": "SHELL CANADA PRODUCTS", - "endDate": "2016-03-25", - "startDate": "2017-01-30", + "endDate": "2021-06-07", + "startDate": "2022-03-20", "notes": "", "roles": [ "EMPLOYEE" @@ -19944,42 +22608,76 @@ "suspectLandUses": [ { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-03-30 (described on Site Profile dated 2019-03-30)", + "notes": "INSERTED FOR SITE PROFILE DATED 2023-08-06 (described on Site Profile dated 2023-08-06)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2015-02-23 (described on Site Profile dated 2015-02-23)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2020-05-25 (described on Site Profile dated 2020-05-25)", + "notes": "INSERTED FOR SITE PROFILE DATED 2018-02-26 (described on Site Profile dated 2018-02-26)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2020-09-27 (described on Site Profile dated 2020-09-27)", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2023-08-20 (described on Site Profile dated 2023-08-20)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + } + ], + "parcelDescriptions": [ + { + "siteRegistry": true, + "dateNoted": "2022-07-04", + "parcelID": "19336", + "crownLandUsePIN": "18317", + "crownLandFileNumber": "16752", + "landDescription": "LOT 4 OF LOT 4 BLOCK 1 DISTRICT LOT 2 PLAN 5378" }, { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-02-01 (described on Site Profile dated 2015-02-01)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "siteRegistry": true, + "dateNoted": "2021-09-04", + "parcelID": "17813", + "crownLandUsePIN": "15680", + "crownLandFileNumber": "15510", + "landDescription": "LOT 1 OF LOT 5 BLOCK 5 DISTRICT LOT 5 PLAN 6959" }, { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2020-07-11 (described on Site Profile dated 2020-07-11)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "dateNoted": "2021-10-26", + "parcelID": "17239", + "crownLandUsePIN": "18089", + "crownLandFileNumber": "19725", + "landDescription": "LOT 3 OF LOT 2 BLOCK 3 DISTRICT LOT 2 PLAN 6105" + }, + { + "siteRegistry": true, + "dateNoted": "2022-10-21", + "parcelID": "17824", + "crownLandUsePIN": "16173", + "crownLandFileNumber": "15755", + "landDescription": "LOT 5 OF LOT 5 BLOCK 5 DISTRICT LOT 3 PLAN 6878" } ], "siteDisclosures": [ { "siteRegistry": true, - "dateReceived": "2015-04-13", - "dateCompleted": "2016-09-17", - "dateEntered": "2014-05-18", - "dateRegistrar": "2016-04-02", - "dateLocalAuthorityReceived": "2020-04-18", - "summary": "Sit expedita occaecati error voluptas perferendis aperiam magnam.\nTotam ipsa placeat voluptas velit eum eum provident aliquid.\nPerspiciatis iste iusto fugiat vero earum fugit facere possimus.", - "informationUsed": "Iusto eum porro tenetur in placeat aut nulla.\nExpedita repellendus perferendis sapiente doloremque.\nAut eveniet maxime eaque culpa occaecati.", - "pastOrPresentOrders": "Aliquam tempore a occaecati dolores qui autem reprehenderit necessitatibus dolor.\nPossimus totam nemo tenetur atque voluptas quis aliquid recusandae nihil.", + "dateReceived": "2016-10-11", + "dateCompleted": "2018-02-08", + "dateEntered": "2018-10-11", + "dateRegistrar": "2015-07-29", + "dateLocalAuthorityReceived": "2022-06-10", + "summary": "Repudiandae magni iusto odio quisquam.\nCumque delectus quae quidem harum voluptate nesciunt.\nLabore excepturi dicta consequatur rerum aliquam quidem temporibus ullam beatae.", + "informationUsed": "Praesentium velit quo.\nIste assumenda ducimus ut dolor facilis magnam voluptas.\nEnim non tenetur natus deserunt inventore animi tempora.\nNesciunt sint numquam voluptatibus error iste vero dolorem.\nVero officiis reiciendis repellat hic consectetur natus.", + "pastOrPresentOrders": "Nisi repellendus sed vel consequuntur itaque corrupti non nam.\nPerferendis similique blanditiis pariatur neque esse.\nAlias consequuntur sunt cumque officia.", "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, { "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", @@ -19987,12 +22685,40 @@ }, { "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false + } + ] + }, + { + "siteRegistry": true, + "dateReceived": "2018-07-08", + "dateCompleted": "2022-07-13", + "dateEntered": "2020-02-02", + "dateRegistrar": "2016-02-17", + "dateLocalAuthorityReceived": "2020-01-25", + "summary": "Iste sapiente excepturi recusandae rem.\nVoluptates suscipit ratione error et quae ad quas.\nConsectetur odit officiis assumenda.", + "informationUsed": "Tempora hic incidunt laboriosam officia qui.\nOdit blanditiis excepturi tempora facere.\nSoluta mollitia fugiat occaecati.", + "pastOrPresentOrders": "Nobis enim quos modi similique eveniet sint.\nArchitecto assumenda odit consequatur quibusdam eius.\nAdipisci quidem inventore dicta expedita.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false }, { "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true } ] @@ -20002,107 +22728,81 @@ { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "MRAZ MARCEL", - "timestamp": "2014-12-31" - }, - { - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "LESCH KAMILLE", - "timestamp": "2020-05-12" - }, - { - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "WISOKY LISANDRO", - "timestamp": "2018-01-07" + "user": "WEISSNAT IMMANUEL", + "timestamp": "2018-06-14" }, { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "D'AMORE BARRY", - "timestamp": "2023-08-07" + "user": "CORWIN JULIO", + "timestamp": "2019-08-11" }, { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "O'CONNELL TRACY", - "timestamp": "2017-10-31" + "user": "POUROS JACK", + "timestamp": "2019-04-17" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "WELCH-CASPER KELLEN", - "timestamp": "2018-07-02" + "user": "SCHOWALTER JALYN", + "timestamp": "2018-09-12" }, { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "GISLASON EVIE", - "timestamp": "2016-05-18" + "user": "GRADY LEWIS", + "timestamp": "2023-01-16" }, { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "RATH MAUDE", - "timestamp": "2017-09-04" + "user": "REYNOLDS BRODERICK", + "timestamp": "2020-02-05" }, { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "ROMAGUERA KELSI", - "timestamp": "2016-04-09" + "user": "BARTOLETTI NARCISO", + "timestamp": "2016-10-01" } ], "associatedSites": [ { - "dateNoted": "2014-01-25", - "notes": "", - "parcelID": "16159", - "siteID": "17534", - "siteRegistry": false - }, - { - "dateNoted": "2017-09-03", + "dateNoted": "2020-04-23", "notes": "", - "parcelID": "15258", - "siteID": "15327", + "parcelID": "17128", + "siteID": "18614", "siteRegistry": false - }, - { - "dateNoted": "2022-02-21", - "notes": "", - "parcelID": "18188", - "siteID": "20382", - "siteRegistry": true } ] }, { - "uuid": "09190125-2383-4877-9bdc-f337b678320c", - "siteID": 16701, - "address": "6402 Ebert Viaduct", - "latitude": 54.4535, - "longitude": -119.4667, - "lastUpdated": "2020-01-30", - "city": "San Ramon", - "region": "Mainland/Southwest", - "victoriaFile": "26250-20/10591", + "uuid": "1754c93d-9e0d-4776-8ded-f8c3c3adc50f", + "siteID": 19114, + "address": "1003 Schaefer Heights", + "latitude": 57.1911, + "longitude": -126.7418, + "lastUpdated": "2014-08-08", + "city": "O'Keefeview", + "region": "Vancouver Island/Coast", + "victoriaFile": "26250-20/3674", "regionalFile": "N/A", "parcelIDs": [ - 9131202, - 4705419, - 4436747, - 466563, - 9862379 + 6613087, + 7272546, + 6235073, + 8153643, + 5118430 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2021-06-13", - "completed": "2021-04-16", - "initiated": "2017-09-18", - "ministryContact": "PFANNERSTILL VLADIMIR", + "createdAt": "2021-05-07", + "completed": "2021-01-31", + "initiated": "2016-03-18", + "ministryContact": "SCHINNER RODERICK", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -20110,18 +22810,13 @@ "" ], "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true } @@ -20129,10 +22824,10 @@ "siteRegistry": true }, { - "createdAt": "2023-02-04", - "completed": "2016-10-08", - "initiated": "2019-02-28", - "ministryContact": "SCHUPPE WARREN", + "createdAt": "2023-01-20", + "completed": "2018-06-08", + "initiated": "2019-08-08", + "ministryContact": "KIHN MONA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -20141,39 +22836,34 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, { "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true } ], "participants": [ { - "name": "IPSUM", - "endDate": "2020-01-05", - "startDate": "2019-07-06", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2022-02-26", + "startDate": "2014-05-29", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "AMET, DOLOR SIT", + "endDate": "2020-09-30", + "startDate": "2022-01-30", "notes": "", "roles": [ "ORGANIZATION" @@ -20182,8 +22872,18 @@ }, { "name": "IPSUM", - "endDate": "2015-06-27", - "startDate": "2016-07-04", + "endDate": "2020-08-27", + "startDate": "2023-07-31", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2018-12-13", + "startDate": "2018-05-28", "notes": "", "roles": [ "EMPLOYEE" @@ -20191,9 +22891,9 @@ "siteRegistry": false }, { - "name": "IPSUM", - "endDate": "2019-11-08", - "startDate": "2015-09-08", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2015-07-25", + "startDate": "2018-10-27", "notes": "", "roles": [ "ORGANIZATION" @@ -20203,42 +22903,74 @@ ], "suspectLandUses": [ { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-03-20 (described on Site Profile dated 2017-03-20)", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2014-01-30 (described on Site Profile dated 2014-01-30)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2020-01-27 (described on Site Profile dated 2020-01-27)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-03-29 (described on Site Profile dated 2021-03-29)", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2020-11-23 (described on Site Profile dated 2020-11-23)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + } + ], + "parcelDescriptions": [ + { + "siteRegistry": false, + "dateNoted": "2016-05-05", + "parcelID": "19317", + "crownLandUsePIN": "17270", + "crownLandFileNumber": "15709", + "landDescription": "LOT 2 OF LOT 4 BLOCK 5 DISTRICT LOT 5 PLAN 7102" }, { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-07-25 (described on Site Profile dated 2021-07-25)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "dateNoted": "2023-05-24", + "parcelID": "17626", + "crownLandUsePIN": "19934", + "crownLandFileNumber": "15994", + "landDescription": "LOT 1 OF LOT 3 BLOCK 5 DISTRICT LOT 4 PLAN 6216" }, { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2023-05-20 (described on Site Profile dated 2023-05-20)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "dateNoted": "2022-09-16", + "parcelID": "16854", + "crownLandUsePIN": "20753", + "crownLandFileNumber": "19578", + "landDescription": "LOT 5 OF LOT 4 BLOCK 5 DISTRICT LOT 5 PLAN 6369" + }, + { + "siteRegistry": true, + "dateNoted": "2016-03-18", + "parcelID": "17829", + "crownLandUsePIN": "17503", + "crownLandFileNumber": "17471", + "landDescription": "LOT 3 OF LOT 5 BLOCK 4 DISTRICT LOT 5 PLAN 3933" }, { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-06-08 (described on Site Profile dated 2021-06-08)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "dateNoted": "2014-02-07", + "parcelID": "19636", + "crownLandUsePIN": "20561", + "crownLandFileNumber": "15460", + "landDescription": "LOT 4 OF LOT 3 BLOCK 4 DISTRICT LOT 5 PLAN 3065" } ], "siteDisclosures": [ { "siteRegistry": false, - "dateReceived": "2022-01-12", - "dateCompleted": "2017-07-23", - "dateEntered": "2018-02-11", - "dateRegistrar": "2021-01-25", - "dateLocalAuthorityReceived": "2019-03-25", - "summary": "Eius incidunt iure iusto.", - "informationUsed": "Magnam in temporibus porro placeat sunt esse quod molestias.\nExercitationem ipsa beatae pariatur blanditiis tempore non deleniti non.\nNihil itaque doloremque reiciendis doloribus.", - "pastOrPresentOrders": "Occaecati a reiciendis.\nSequi enim commodi expedita occaecati qui a reprehenderit.\nDeserunt culpa autem iste corporis exercitationem.", + "dateReceived": "2017-02-12", + "dateCompleted": "2022-07-17", + "dateEntered": "2021-11-03", + "dateRegistrar": "2016-04-29", + "dateLocalAuthorityReceived": "2020-12-09", + "summary": "Neque excepturi sapiente dolore blanditiis tenetur et.\nProvident ex dignissimos dicta voluptatem aliquam aliquid hic.\nVoluptas enim et illo mollitia qui.", + "informationUsed": "Dolorem quisquam dolores eos rem quisquam culpa.\nSoluta provident quidem tenetur consectetur perferendis veniam.\nQui esse commodi possimus deserunt et neque perspiciatis quo.\nNatus incidunt consectetur occaecati.\nPariatur eos repellendus adipisci dolor soluta rerum.", + "pastOrPresentOrders": "Quod aliquam exercitationem.", "commercialAndIndustrialPurposes": [ { "scheduleReference": "F2*", @@ -20246,109 +22978,121 @@ "siteRegistry": false }, { - "scheduleReference": "F1*", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true - }, + } + ] + }, + { + "siteRegistry": true, + "dateReceived": "2015-05-18", + "dateCompleted": "2020-02-17", + "dateEntered": "2019-10-20", + "dateRegistrar": "2022-09-30", + "dateLocalAuthorityReceived": "2017-05-21", + "summary": "A nemo nobis eius sint nulla omnis ut odio.\nConsequuntur asperiores excepturi nobis beatae aperiam perferendis minus.\nSed est quasi eum.", + "informationUsed": "Similique modi voluptatem blanditiis porro suscipit porro consectetur mollitia.\nQuo vero praesentium sequi.\nHic alias itaque animi.\nUllam tempora sequi.", + "pastOrPresentOrders": "Aliquam ipsam sapiente labore natus nisi labore non eos.\nConsequatur laboriosam error explicabo mollitia.", + "commercialAndIndustrialPurposes": [ { - "scheduleReference": "F1*", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, { "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true } ] } ], "activityLog": [ { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "MOSCISKI DANTE", - "timestamp": "2022-10-27" + "user": "FRANECKI-ZULAUF JAMMIE", + "timestamp": "2019-09-13" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "VON GAGE", - "timestamp": "2023-02-09" + "user": "ULLRICH KRIS", + "timestamp": "2019-04-24" }, { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "DECKOW AILEEN", - "timestamp": "2020-09-28" + "user": "WILLIAMSON KEIRA", + "timestamp": "2023-05-21" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "HYATT TABITHA", - "timestamp": "2022-12-05" + "user": "OLSON AGLAE", + "timestamp": "2021-12-20" }, { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "GUSIKOWSKI SANDRA", - "timestamp": "2021-11-15" + "user": "WUNSCH OSBORNE", + "timestamp": "2018-04-20" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "BARTOLETTI WILLA", - "timestamp": "2020-01-11" + "user": "ORTIZ-TILLMAN JONATHON", + "timestamp": "2018-11-06" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "BOGAN WILBERT", + "timestamp": "2018-10-12" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "HINTZ BOBBY", - "timestamp": "2022-09-10" + "user": "BECHTELAR ISOBEL", + "timestamp": "2018-12-17" } ], "associatedSites": [ { - "dateNoted": "2019-03-07", + "dateNoted": "2019-09-15", "notes": "", - "parcelID": "15732", - "siteID": "15381", - "siteRegistry": false - }, - { - "dateNoted": "2019-07-07", - "notes": "", - "parcelID": "15984", - "siteID": "17036", - "siteRegistry": false + "parcelID": "20748", + "siteID": "17950", + "siteRegistry": true } ] }, { - "uuid": "f9b1551c-745e-4bf3-985b-2dfc0d30b755", - "siteID": 19985, - "address": "387 Abernathy Place", - "latitude": 58.5692, - "longitude": -123.0327, - "lastUpdated": "2014-04-08", - "city": "South Donald", - "region": "Mainland/Southwest", - "victoriaFile": "26250-20/12841", + "uuid": "21f8f812-a8ef-49f3-8932-5f795f601f07", + "siteID": 16392, + "address": "18107 Caterina Glen", + "latitude": 54.6239, + "longitude": -126.9101, + "lastUpdated": "2019-08-15", + "city": "Normal", + "region": " North Coast", + "victoriaFile": "26250-20/3635", "regionalFile": "N/A", "parcelIDs": [ - 3412240, - 4340993, - 9480607, - 7066665, - 5338525 + 5403378, + 8187124, + 9805725, + 7008504, + 3829912 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2018-04-29", - "completed": "2018-07-10", - "initiated": "2021-10-08", - "ministryContact": "KRAJCIK JACKY", + "createdAt": "2019-06-18", + "completed": "2021-08-24", + "initiated": "2017-04-07", + "ministryContact": "JACOBI ELEANORA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -20359,13 +23103,33 @@ { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false - }, + } + ], + "siteRegistry": true + }, + { + "createdAt": "2020-02-04", + "completed": "2016-10-11", + "initiated": "2016-01-25", + "ministryContact": "CORKERY DRAKE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", @@ -20373,17 +23137,47 @@ }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "createdAt": "2022-10-13", + "completed": "2019-08-01", + "initiated": "2018-09-15", + "ministryContact": "PFANNERSTILL CONNOR", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2019-10-06", - "completed": "2019-12-19", - "initiated": "2021-10-26", - "ministryContact": "KRIS AARON", + "createdAt": "2014-01-19", + "completed": "2015-01-28", + "initiated": "2019-08-25", + "ministryContact": "TOWNE ELIZABETH", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -20391,11 +23185,41 @@ "" ], "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "createdAt": "2021-10-06", + "completed": "2022-02-17", + "initiated": "2022-05-19", + "ministryContact": "TURCOTTE TAMARA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", @@ -20412,9 +23236,19 @@ ], "participants": [ { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2018-01-01", - "startDate": "2018-04-02", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2021-12-12", + "startDate": "2017-08-28", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2020-04-27", + "startDate": "2022-08-27", "notes": "", "roles": [ "EMPLOYEE" @@ -20423,96 +23257,124 @@ }, { "name": "IPSUM", - "endDate": "2018-10-01", - "startDate": "2020-04-23", + "endDate": "2019-12-04", + "startDate": "2015-01-21", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2018-07-19", - "startDate": "2014-10-11", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2016-08-16", + "startDate": "2021-11-07", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": false }, { - "name": "AMET, DOLOR SIT", - "endDate": "2018-03-13", - "startDate": "2020-10-26", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2019-10-06", + "startDate": "2016-02-24", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": true + "siteRegistry": false } ], "suspectLandUses": [ { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-07-28 (described on Site Profile dated 2021-07-28)", + "notes": "INSERTED FOR SITE PROFILE DATED 2016-03-09 (described on Site Profile dated 2016-03-09)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2019-03-01 (described on Site Profile dated 2019-03-01)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2014-09-24 (described on Site Profile dated 2014-09-24)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + } + ], + "parcelDescriptions": [ { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2020-12-30 (described on Site Profile dated 2020-12-30)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "dateNoted": "2015-10-20", + "parcelID": "20582", + "crownLandUsePIN": "17946", + "crownLandFileNumber": "18817", + "landDescription": "LOT 3 OF LOT 4 BLOCK 3 DISTRICT LOT 4 PLAN 7668" + }, + { + "siteRegistry": false, + "dateNoted": "2021-03-25", + "parcelID": "16251", + "crownLandUsePIN": "17245", + "crownLandFileNumber": "19791", + "landDescription": "LOT 2 OF LOT 4 BLOCK 3 DISTRICT LOT 4 PLAN 8769" } ], "siteDisclosures": [ { "siteRegistry": true, - "dateReceived": "2020-07-31", - "dateCompleted": "2016-06-27", - "dateEntered": "2020-05-26", - "dateRegistrar": "2017-07-14", - "dateLocalAuthorityReceived": "2016-05-05", - "summary": "Modi consequuntur placeat ducimus veritatis maiores culpa.", - "informationUsed": "Molestias exercitationem illum delectus non fugiat similique.\nFugit possimus hic qui ducimus repellendus.\nIn non cum qui.", - "pastOrPresentOrders": "Quidem quae quae incidunt impedit eius ut ad.\nReprehenderit possimus non illum officia magni consequatur.\nInventore illum nostrum praesentium.", + "dateReceived": "2022-11-27", + "dateCompleted": "2023-06-06", + "dateEntered": "2013-12-30", + "dateRegistrar": "2015-10-02", + "dateLocalAuthorityReceived": "2022-09-24", + "summary": "Officiis iusto quam dolor officia laborum unde.", + "informationUsed": "Excepturi at numquam ullam ut doloremque dolores ipsum cum.\nExpedita amet quod.\nDoloribus voluptatibus voluptas rerum esse quidem provident corporis a.\nDicta natus ratione quidem expedita esse veniam sed.", + "pastOrPresentOrders": "In velit commodi assumenda ipsum nesciunt dolorem cumque.\nAut magni cum necessitatibus quo eaque at.", "commercialAndIndustrialPurposes": [ { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true }, { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true } ] }, { "siteRegistry": true, - "dateReceived": "2021-05-02", - "dateCompleted": "2020-08-12", - "dateEntered": "2021-10-13", - "dateRegistrar": "2016-01-30", - "dateLocalAuthorityReceived": "2017-08-17", - "summary": "Nulla exercitationem dolorum ab aperiam ea.", - "informationUsed": "Laudantium magnam asperiores eum eum odio temporibus blanditiis labore atque.\nPraesentium error voluptate dignissimos quidem.\nMagnam fugiat sapiente corrupti accusantium voluptatem voluptas.\nDelectus cupiditate optio aperiam culpa doloribus maxime harum.", - "pastOrPresentOrders": "Itaque illum expedita explicabo.\nVel unde perspiciatis amet nemo.", + "dateReceived": "2021-04-18", + "dateCompleted": "2018-06-01", + "dateEntered": "2019-09-20", + "dateRegistrar": "2018-09-30", + "dateLocalAuthorityReceived": "2014-08-15", + "summary": "Accusamus cum repellendus dolorum voluptatibus dignissimos.\nFugit iusto reprehenderit.\nLabore deserunt quibusdam dolor corrupti.", + "informationUsed": "Voluptate provident quod.\nA optio soluta quasi cumque dolore ea magnam doloremque itaque.\nOfficiis eum fuga tempora qui a eaque vel assumenda ullam.\nIn odit ducimus rem ullam nesciunt.", + "pastOrPresentOrders": "Nisi laudantium impedit quod tenetur dignissimos quas.\nDucimus quae dignissimos.", "commercialAndIndustrialPurposes": [ { "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false }, { "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false + "siteRegistry": true } ] } @@ -20521,81 +23383,81 @@ { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "BRUEN EDGARDO", - "timestamp": "2023-07-02" + "user": "LUETTGEN LESTER", + "timestamp": "2015-12-31" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "KLOCKO BO", - "timestamp": "2022-01-21" + "user": "MURAZIK RUSS", + "timestamp": "2020-05-30" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "HANSEN AALIYAH", - "timestamp": "2022-03-15" + "user": "POLLICH SVEN", + "timestamp": "2021-02-10" }, { - "siteRegistry": true, + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "HARRIS WILTON", - "timestamp": "2021-02-20" + "user": "DANIEL JAMAL", + "timestamp": "2023-03-07" }, { - "siteRegistry": true, + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "LEGROS IRMA", - "timestamp": "2018-06-04" + "user": "JOHNS ELIAN", + "timestamp": "2018-11-24" }, { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "RENNER BESSIE", - "timestamp": "2022-10-24" + "user": "CRONA-BEER RALEIGH", + "timestamp": "2018-02-01" }, { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "POUROS DESTANY", - "timestamp": "2018-04-17" + "user": "TROMP JACQUES", + "timestamp": "2020-11-23" } ], "associatedSites": [ { - "dateNoted": "2023-02-18", + "dateNoted": "2017-02-27", "notes": "", - "parcelID": "17158", - "siteID": "16902", - "siteRegistry": true + "parcelID": "17088", + "siteID": "20407", + "siteRegistry": false } ] }, { - "uuid": "7eb7f99a-5192-4785-a605-e79fdb39ad91", - "siteID": 18243, - "address": "348 Leannon Drives", - "latitude": 49.9058, - "longitude": -135.0202, - "lastUpdated": "2022-11-13", - "city": "Metzfield", + "uuid": "a56f0524-f03a-4ba4-86ad-746a69c6ebe2", + "siteID": 18732, + "address": "252 Powlowski Trafficway", + "latitude": 51.9954, + "longitude": -118.496, + "lastUpdated": "2022-01-29", + "city": "Newport News", "region": "Thompson-Okanagan", - "victoriaFile": "26250-20/2422", + "victoriaFile": "26250-20/11419", "regionalFile": "N/A", "parcelIDs": [ - 650880, - 6074296, - 4182989, - 3323372, - 1521953 + 7503308, + 2576689, + 990486, + 7748595, + 8436764 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2020-09-23", - "completed": "2020-03-06", - "initiated": "2014-01-23", - "ministryContact": "ZIEME SAMMY", + "createdAt": "2023-04-08", + "completed": "2015-02-27", + "initiated": "2021-05-10", + "ministryContact": "LESCH LEE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -20604,23 +23466,23 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2022-03-03", - "completed": "2021-08-17", - "initiated": "2021-03-31", - "ministryContact": "GUTKOWSKI BRENNON", + "createdAt": "2017-05-18", + "completed": "2016-08-08", + "initiated": "2017-07-28", + "ministryContact": "STROMAN EARL", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -20631,11 +23493,6 @@ { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", "siteRegistry": true }, { @@ -20648,6 +23505,11 @@ "role": "SUBMITTED BY", "siteRegistry": false }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", @@ -20657,10 +23519,10 @@ "siteRegistry": true }, { - "createdAt": "2019-05-25", - "completed": "2018-09-26", - "initiated": "2022-08-03", - "ministryContact": "BOGAN DANGELO", + "createdAt": "2014-11-22", + "completed": "2023-04-30", + "initiated": "2014-09-22", + "ministryContact": "VEUM MABLE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -20670,6 +23532,11 @@ "notationParticipants": [ { "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true }, @@ -20677,20 +23544,15 @@ "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2022-06-13", - "completed": "2020-10-14", - "initiated": "2021-01-24", - "ministryContact": "ZBONCAK POLLY", + "createdAt": "2017-04-08", + "completed": "2018-03-21", + "initiated": "2020-11-14", + "ministryContact": "POLLICH EUGENE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -20704,43 +23566,13 @@ "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - } - ], - "siteRegistry": false - }, - { - "createdAt": "2019-05-15", - "completed": "2023-06-18", - "initiated": "2020-04-28", - "ministryContact": "HOWELL-CASSIN WYMAN", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", "siteRegistry": false }, { @@ -20750,8 +23582,8 @@ }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false + "role": "REQUESTED BY", + "siteRegistry": true } ], "siteRegistry": false @@ -20760,38 +23592,18 @@ "participants": [ { "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2018-04-11", - "startDate": "2020-02-26", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2019-04-17", - "startDate": "2022-12-19", + "endDate": "2021-04-21", + "startDate": "2019-08-06", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2019-05-18", - "startDate": "2015-11-28", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": false + "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2016-07-11", - "startDate": "2019-03-19", + "name": "AMET, DOLOR SIT", + "endDate": "2016-09-15", + "startDate": "2016-10-19", "notes": "", "roles": [ "ORGANIZATION" @@ -20800,57 +23612,78 @@ } ], "suspectLandUses": [ + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2017-01-04 (described on Site Profile dated 2017-01-04)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2014-04-14 (described on Site Profile dated 2014-04-14)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2017-11-06 (described on Site Profile dated 2017-11-06)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-08-01 (described on Site Profile dated 2018-08-01)", + "notes": "INSERTED FOR SITE PROFILE DATED 2014-01-03 (described on Site Profile dated 2014-01-03)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-04-20 (described on Site Profile dated 2021-04-20)", + "notes": "INSERTED FOR SITE PROFILE DATED 2014-12-11 (described on Site Profile dated 2014-12-11)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + } + ], + "parcelDescriptions": [ + { + "siteRegistry": true, + "dateNoted": "2017-09-15", + "parcelID": "16497", + "crownLandUsePIN": "17962", + "crownLandFileNumber": "20192", + "landDescription": "LOT 1 OF LOT 4 BLOCK 4 DISTRICT LOT 3 PLAN 8572" }, { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-06-25 (described on Site Profile dated 2016-06-25)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "siteRegistry": true, + "dateNoted": "2015-10-09", + "parcelID": "20257", + "crownLandUsePIN": "16228", + "crownLandFileNumber": "19912", + "landDescription": "LOT 3 OF LOT 5 BLOCK 3 DISTRICT LOT 2 PLAN 6654" }, { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-07-13 (described on Site Profile dated 2016-07-13)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "dateNoted": "2018-11-17", + "parcelID": "17244", + "crownLandUsePIN": "20336", + "crownLandFileNumber": "17444", + "landDescription": "LOT 2 OF LOT 2 BLOCK 2 DISTRICT LOT 3 PLAN 5467" } ], "siteDisclosures": [ { - "siteRegistry": true, - "dateReceived": "2019-01-12", - "dateCompleted": "2014-06-27", - "dateEntered": "2018-06-02", - "dateRegistrar": "2020-02-17", - "dateLocalAuthorityReceived": "2014-06-23", - "summary": "Voluptate accusamus vitae enim nam placeat itaque accusamus.\nIste nobis error officiis aliquam laboriosam facere blanditiis molestias similique.\nBlanditiis eum rem beatae consectetur dolor deleniti odit numquam ullam.", - "informationUsed": "Enim ducimus eaque odit fugit quaerat sit autem veniam.\nQuis ipsam sequi provident sequi fugit vel explicabo necessitatibus.\nPossimus sed nisi quasi amet dicta.\nSint voluptas nihil cumque.\nAt nulla error dolores dicta repellat neque.", - "pastOrPresentOrders": "Facilis molestiae aut impedit consequuntur nisi harum iusto modi.\nVelit quas ullam accusamus consequatur provident dolorum.", + "siteRegistry": false, + "dateReceived": "2017-10-26", + "dateCompleted": "2018-08-23", + "dateEntered": "2014-04-23", + "dateRegistrar": "2017-08-30", + "dateLocalAuthorityReceived": "2016-05-12", + "summary": "Labore facilis labore voluptates impedit sunt perspiciatis aliquid mollitia.\nImpedit aspernatur rerum provident repudiandae excepturi cum aspernatur.", + "informationUsed": "Officia quaerat quo.\nOmnis ratione nemo magni.\nTemporibus fugit autem soluta dolores.\nEveniet eius aperiam amet corrupti sequi similique.", + "pastOrPresentOrders": "Voluptas et voluptates numquam beatae architecto accusamus debitis voluptate.", "commercialAndIndustrialPurposes": [ { "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, { "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true - }, - { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true - }, - { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false } ] @@ -20860,81 +23693,107 @@ { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "WATSICA JAYNE", - "timestamp": "2016-01-27" + "user": "MITCHELL JENNIE", + "timestamp": "2014-08-20" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "MCCULLOUGH CANDIDO", - "timestamp": "2016-03-24" + "user": "BAUMBACH ESTEL", + "timestamp": "2021-08-29" }, { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "REINGER MIREILLE", - "timestamp": "2013-12-16" + "user": "REINGER CLAIR", + "timestamp": "2017-01-20" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "GUTKOWSKI DAPHNEY", - "timestamp": "2019-01-10" + "user": "JENKINS MARJORY", + "timestamp": "2023-08-09" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "KAUTZER HULDA", + "timestamp": "2023-01-14" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "HERZOG WARD", - "timestamp": "2017-08-27" + "user": "BATZ VALENTINE", + "timestamp": "2022-07-07" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "WILKINSON ZULA", + "timestamp": "2019-05-23" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "CROOKS ASHA", - "timestamp": "2020-05-21" + "user": "WEHNER MADDISON", + "timestamp": "2018-03-07" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "BINS MARIO", - "timestamp": "2022-09-08" + "user": "OBERBRUNNER JERRY", + "timestamp": "2018-08-31" } ], "associatedSites": [ { - "dateNoted": "2015-04-07", + "dateNoted": "2022-05-31", "notes": "", - "parcelID": "17809", - "siteID": "16509", + "parcelID": "20553", + "siteID": "15789", "siteRegistry": true + }, + { + "dateNoted": "2023-01-10", + "notes": "", + "parcelID": "16445", + "siteID": "16890", + "siteRegistry": false + }, + { + "dateNoted": "2017-08-18", + "notes": "", + "parcelID": "16122", + "siteID": "20221", + "siteRegistry": false } ] }, { - "uuid": "68cc0bfb-e754-45dd-aa77-ea1706ac6cac", - "siteID": 18067, - "address": "3897 Isabella Village", - "latitude": 58.0074, - "longitude": -138.9864, - "lastUpdated": "2015-04-10", - "city": "East Lysannebury", + "uuid": "70f98311-5108-43e5-88b5-6e8e2231566e", + "siteID": 17027, + "address": "189 Diego Run", + "latitude": 52.9714, + "longitude": -137.4123, + "lastUpdated": "2017-08-27", + "city": "Hacienda Heights", "region": "Thompson-Okanagan", - "victoriaFile": "26250-20/16935", + "victoriaFile": "26250-20/1854", "regionalFile": "N/A", "parcelIDs": [ - 2510591, - 9929757, - 4207087, - 5010730, - 3623181 + 3886330, + 5372946, + 2191335, + 2728712, + 8566055 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2014-06-22", - "completed": "2013-11-15", - "initiated": "2015-12-06", - "ministryContact": "CORWIN PHILIP", + "createdAt": "2019-01-25", + "completed": "2017-01-09", + "initiated": "2017-06-23", + "ministryContact": "REYNOLDS VERLA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -20944,8 +23803,13 @@ "notationParticipants": [ { "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", @@ -20953,13 +23817,13 @@ "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2018-12-03", - "completed": "2020-12-21", - "initiated": "2020-09-01", - "ministryContact": "ROOB MYRTIE", + "createdAt": "2016-01-25", + "completed": "2019-02-21", + "initiated": "2016-09-12", + "ministryContact": "SCHAEFER DUANE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -20969,37 +23833,37 @@ "notationParticipants": [ { "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true } ], "siteRegistry": false }, { - "createdAt": "2014-01-18", - "completed": "2019-11-10", - "initiated": "2019-09-27", - "ministryContact": "KREIGER VICTOR", + "createdAt": "2022-04-04", + "completed": "2022-06-07", + "initiated": "2022-02-05", + "ministryContact": "STROSIN NELLA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -21016,36 +23880,16 @@ "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true - } - ], - "siteRegistry": true - }, - { - "createdAt": "2015-05-19", - "completed": "2020-06-16", - "initiated": "2022-03-08", - "ministryContact": "DOOLEY MAEVE", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true + "role": "SUBMITTED BY", + "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true } ], "siteRegistry": true @@ -21053,9 +23897,19 @@ ], "participants": [ { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2018-04-23", - "startDate": "2020-03-10", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2021-10-06", + "startDate": "2022-11-20", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "name": "IPSUM", + "endDate": "2020-10-30", + "startDate": "2014-11-16", "notes": "", "roles": [ "EMPLOYEE" @@ -21064,54 +23918,87 @@ }, { "name": "AMET, DOLOR SIT", - "endDate": "2020-05-29", - "startDate": "2021-08-11", + "endDate": "2015-09-15", + "startDate": "2019-08-11", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], - "siteRegistry": true + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2016-08-14", + "startDate": "2021-09-04", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false } ], "suspectLandUses": [ { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-09-11 (described on Site Profile dated 2019-09-11)", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2021-01-22 (described on Site Profile dated 2021-01-22)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-12-14 (described on Site Profile dated 2015-12-14)", + "notes": "INSERTED FOR SITE PROFILE DATED 2018-09-10 (described on Site Profile dated 2018-09-10)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2023-05-31 (described on Site Profile dated 2023-05-31)", + "notes": "INSERTED FOR SITE PROFILE DATED 2022-09-01 (described on Site Profile dated 2022-09-01)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2022-05-12 (described on Site Profile dated 2022-05-12)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2019-06-29 (described on Site Profile dated 2019-06-29)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + } + ], + "parcelDescriptions": [ + { + "siteRegistry": true, + "dateNoted": "2023-01-25", + "parcelID": "17629", + "crownLandUsePIN": "19131", + "crownLandFileNumber": "19729", + "landDescription": "LOT 5 OF LOT 2 BLOCK 5 DISTRICT LOT 2 PLAN 9026" + }, + { + "siteRegistry": true, + "dateNoted": "2023-09-10", + "parcelID": "16954", + "crownLandUsePIN": "18542", + "crownLandFileNumber": "20957", + "landDescription": "LOT 2 OF LOT 1 BLOCK 2 DISTRICT LOT 3 PLAN 7824" } ], "siteDisclosures": [ { "siteRegistry": true, - "dateReceived": "2023-07-09", - "dateCompleted": "2020-08-25", - "dateEntered": "2016-11-07", - "dateRegistrar": "2023-08-03", - "dateLocalAuthorityReceived": "2020-11-30", - "summary": "Totam fugiat minima id illo.\nQuos a unde sunt modi reiciendis atque eaque sapiente illum.", - "informationUsed": "Inventore dolorum quasi.\nMinima ex iste illo perferendis consequatur aut.\nTempora voluptatum quae nemo consectetur quidem harum.\nMagnam quam architecto cupiditate praesentium porro consectetur veritatis earum.", - "pastOrPresentOrders": "Libero iure autem nobis in temporibus nesciunt iste ducimus.\nIpsum quisquam at nesciunt blanditiis impedit modi magni repudiandae.\nAspernatur provident laboriosam fugit.", + "dateReceived": "2015-07-05", + "dateCompleted": "2014-12-08", + "dateEntered": "2023-08-31", + "dateRegistrar": "2015-04-27", + "dateLocalAuthorityReceived": "2021-10-15", + "summary": "Mollitia quos deserunt aliquid omnis veritatis.", + "informationUsed": "Saepe non aperiam ea qui occaecati officiis libero ipsum explicabo.\nRepudiandae amet voluptates expedita.\nSuscipit maiores doloribus deserunt esse quam tenetur a.", + "pastOrPresentOrders": "Mollitia molestiae repudiandae ex porro impedit.", "commercialAndIndustrialPurposes": [ { "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, - { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true - }, { "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", @@ -21119,7 +24006,7 @@ }, { "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false } ] @@ -21127,136 +24014,102 @@ ], "activityLog": [ { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "AUFDERHAR JOANY", - "timestamp": "2023-01-10" - }, - { - "siteRegistry": true, + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "FARRELL EFRAIN", - "timestamp": "2016-12-26" + "user": "WEISSNAT VICTOR", + "timestamp": "2016-10-21" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "HERMAN QUINN", - "timestamp": "2019-07-02" + "user": "DANIEL FRANCIS", + "timestamp": "2015-03-27" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "WALKER SKYLA", - "timestamp": "2019-12-22" + "user": "EFFERTZ-TILLMAN BLANCA", + "timestamp": "2023-09-04" }, { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "MOORE AMELIE", - "timestamp": "2017-11-24" + "user": "GLEASON SADIE", + "timestamp": "2022-06-22" }, { - "siteRegistry": true, + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "GOTTLIEB FREEMAN", - "timestamp": "2023-02-14" + "user": "ROSENBAUM SIBYL", + "timestamp": "2015-01-15" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "BRUEN-MCDERMOTT SCOT", - "timestamp": "2021-02-02" + "user": "HAMILL CECILIA", + "timestamp": "2023-01-10" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "LARSON MICHEAL", - "timestamp": "2022-11-11" + "user": "BARTON THEODORE", + "timestamp": "2021-02-05" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "WYMAN LOLA", - "timestamp": "2022-04-21" + "user": "SIMONIS LILYAN", + "timestamp": "2017-07-15" }, { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "O'CONNER MICAELA", - "timestamp": "2022-06-21" + "user": "KUB CLEVE", + "timestamp": "2018-06-14" } ], "associatedSites": [ { - "dateNoted": "2022-12-16", + "dateNoted": "2015-12-30", "notes": "", - "parcelID": "16495", - "siteID": "15785", + "parcelID": "16445", + "siteID": "15477", + "siteRegistry": false + }, + { + "dateNoted": "2022-07-21", + "notes": "", + "parcelID": "16052", + "siteID": "20854", "siteRegistry": true } ] }, { - "uuid": "35cd2067-8c9f-44a3-9b8d-02c9f388d233", - "siteID": 20571, - "address": "51424 Shad Green", - "latitude": 56.2205, - "longitude": -131.4751, - "lastUpdated": "2013-11-04", - "city": "Hesselboro", - "region": "Vancouver Island/Coast", - "victoriaFile": "26250-20/10142", + "uuid": "6c8be690-8638-4474-8c3e-e2b37f1b2580", + "siteID": 20984, + "address": "384 Klein Curve", + "latitude": 56, + "longitude": -134.3978, + "lastUpdated": "2016-10-20", + "city": "Jonesmouth", + "region": " North Coast", + "victoriaFile": "26250-20/2197", "regionalFile": "N/A", "parcelIDs": [ - 8036288, - 8517931, - 6065671, - 7236857, - 9894120 + 1330886, + 9438022, + 3259798, + 472501, + 4802083 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2020-01-12", - "completed": "2020-12-24", - "initiated": "2019-05-16", - "ministryContact": "CARTER ELDRIDGE", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - } - ], - "siteRegistry": false - }, - { - "createdAt": "2021-04-08", - "completed": "2015-02-02", - "initiated": "2017-10-01", - "ministryContact": "FARRELL MOZELLE", + "createdAt": "2014-07-21", + "completed": "2017-07-09", + "initiated": "2014-09-09", + "ministryContact": "EBERT BRIDGETTE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -21267,76 +24120,36 @@ { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true - } - ], - "siteRegistry": true - }, - { - "createdAt": "2015-08-16", - "completed": "2022-12-23", - "initiated": "2021-11-26", - "ministryContact": "ROHAN ELISSA", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false + "role": "SUBMITTED BY", + "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2017-01-14", - "completed": "2014-06-22", - "initiated": "2022-05-22", - "ministryContact": "LINDGREN JUSTYN", + "createdAt": "2017-11-27", + "completed": "2018-03-02", + "initiated": "2018-10-16", + "ministryContact": "BAUMBACH-MURRAY ALTA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -21344,15 +24157,10 @@ "" ], "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, { "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true + "role": "REQUESTED BY", + "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", @@ -21361,7 +24169,7 @@ }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false } ], @@ -21370,9 +24178,9 @@ ], "participants": [ { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2014-09-18", - "startDate": "2022-06-10", + "name": "IPSUM", + "endDate": "2021-06-15", + "startDate": "2022-12-23", "notes": "", "roles": [ "ORGANIZATION" @@ -21381,68 +24189,84 @@ }, { "name": "AMET, DOLOR SIT", - "endDate": "2022-01-09", - "startDate": "2019-11-16", + "endDate": "2020-05-10", + "startDate": "2017-10-07", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2017-10-01", - "startDate": "2015-04-07", + "name": "IPSUM", + "endDate": "2022-01-10", + "startDate": "2019-05-11", "notes": "", "roles": [ "ORGANIZATION" ], "siteRegistry": true + } + ], + "suspectLandUses": [ + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2015-02-25 (described on Site Profile dated 2015-02-25)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2020-01-10", - "startDate": "2017-10-16", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": true + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2015-01-15 (described on Site Profile dated 2015-01-15)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2018-09-12", - "startDate": "2023-04-08", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": true + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2021-06-18 (described on Site Profile dated 2021-06-18)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2018-04-05 (described on Site Profile dated 2018-04-05)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], - "suspectLandUses": [ + "parcelDescriptions": [ { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-06-09 (described on Site Profile dated 2016-06-09)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "siteRegistry": true, + "dateNoted": "2018-06-27", + "parcelID": "18258", + "crownLandUsePIN": "16572", + "crownLandFileNumber": "16935", + "landDescription": "LOT 3 OF LOT 2 BLOCK 5 DISTRICT LOT 5 PLAN 4932" }, { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2023-07-15 (described on Site Profile dated 2023-07-15)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "dateNoted": "2017-06-21", + "parcelID": "17833", + "crownLandUsePIN": "20210", + "crownLandFileNumber": "16730", + "landDescription": "LOT 4 OF LOT 4 BLOCK 1 DISTRICT LOT 2 PLAN 5549" + }, + { + "siteRegistry": true, + "dateNoted": "2020-01-25", + "parcelID": "16700", + "crownLandUsePIN": "20334", + "crownLandFileNumber": "15403", + "landDescription": "LOT 2 OF LOT 2 BLOCK 3 DISTRICT LOT 1 PLAN 3155" } ], "siteDisclosures": [ { "siteRegistry": false, - "dateReceived": "2019-09-15", - "dateCompleted": "2014-12-07", - "dateEntered": "2020-08-21", - "dateRegistrar": "2014-05-21", - "dateLocalAuthorityReceived": "2020-08-04", - "summary": "Voluptatem porro nemo.", - "informationUsed": "Provident qui illo sit ipsum autem exercitationem possimus necessitatibus nobis.\nQuod consectetur porro maxime.\nSequi perspiciatis omnis nisi optio aperiam distinctio explicabo velit numquam.\nMollitia molestias ipsam.", - "pastOrPresentOrders": "Iste voluptate cum excepturi veniam doloribus laudantium vitae suscipit.", + "dateReceived": "2015-01-07", + "dateCompleted": "2019-07-14", + "dateEntered": "2021-07-25", + "dateRegistrar": "2015-08-18", + "dateLocalAuthorityReceived": "2019-01-28", + "summary": "Numquam illo placeat minima iusto.", + "informationUsed": "Officiis eligendi id saepe id facilis ipsam perspiciatis repellendus velit.\nAd quam a voluptatem sapiente dolor incidunt.\nMolestiae culpa vel commodi quaerat delectus alias.", + "pastOrPresentOrders": "Perspiciatis earum laboriosam saepe saepe cum repudiandae omnis iure eum.", "commercialAndIndustrialPurposes": [ { "scheduleReference": "F1*", @@ -21450,7 +24274,12 @@ "siteRegistry": true }, { - "scheduleReference": "F2*", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false } @@ -21458,86 +24287,96 @@ } ], "activityLog": [ + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "GLEICHNER GRAYSON", + "timestamp": "2017-10-25" + }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "CARROLL IMELDA", - "timestamp": "2023-04-18" + "user": "HAGENES LYNN", + "timestamp": "2020-01-25" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "BOEHM ABBY", - "timestamp": "2020-03-09" + "user": "WISOKY KEVIN", + "timestamp": "2013-10-31" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "RATH ALENE", - "timestamp": "2019-08-07" + "user": "CASPER NOLAN", + "timestamp": "2021-12-06" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "WOLF IAN", - "timestamp": "2016-06-07" + "user": "HALEY CLARK", + "timestamp": "2019-11-03" }, { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "STROMAN KATARINA", - "timestamp": "2022-01-10" - } - ], - "associatedSites": [ + "user": "RUSSEL KAMRON", + "timestamp": "2015-02-07" + }, { - "dateNoted": "2023-10-01", - "notes": "", - "parcelID": "17204", - "siteID": "20230", - "siteRegistry": false + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "YOST THALIA", + "timestamp": "2015-06-12" }, { - "dateNoted": "2022-01-20", - "notes": "", - "parcelID": "15948", - "siteID": "18598", - "siteRegistry": false + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "BAILEY MAYE", + "timestamp": "2015-11-29" }, { - "dateNoted": "2020-09-19", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "ZEMLAK GEORGE", + "timestamp": "2019-06-11" + } + ], + "associatedSites": [ + { + "dateNoted": "2020-09-29", "notes": "", - "parcelID": "16055", - "siteID": "16303", - "siteRegistry": false + "parcelID": "20663", + "siteID": "15420", + "siteRegistry": true } ] }, { - "uuid": "7efa36f5-a3ef-4df4-8b76-5d89a69a72e1", - "siteID": 18884, - "address": "8613 Rice Cape", - "latitude": 52.5128, - "longitude": -122.5308, - "lastUpdated": "2016-01-13", - "city": "Kautzerbury", - "region": "Mainland/Southwest", - "victoriaFile": "26250-20/5185", + "uuid": "357941b4-f228-45ab-afa0-048ccb7b36c8", + "siteID": 18027, + "address": "5900 Cremin Course", + "latitude": 54.8864, + "longitude": -122.358, + "lastUpdated": "2023-05-19", + "city": "West Margret", + "region": "Cariboo", + "victoriaFile": "26250-20/15795", "regionalFile": "N/A", "parcelIDs": [ - 6781151, - 6131783, - 8154875, - 2822724, - 9297130 + 244731, + 6123077, + 1782286, + 6837282, + 4902093 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2021-08-29", - "completed": "2019-01-28", - "initiated": "2016-04-10", - "ministryContact": "ROWE EMELIE", + "createdAt": "2016-10-23", + "completed": "2020-08-18", + "initiated": "2023-07-25", + "ministryContact": "CONROY GERALDINE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -21546,33 +24385,33 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true + "role": "REQUESTED BY", + "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false + "role": "REQUESTED BY", + "siteRegistry": true } ], "siteRegistry": true }, { - "createdAt": "2015-06-23", - "completed": "2023-08-19", - "initiated": "2016-06-04", - "ministryContact": "SCHADEN CLAUDINE", + "createdAt": "2016-02-18", + "completed": "2019-06-11", + "initiated": "2022-01-05", + "ministryContact": "VON HARMONY", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -21581,24 +24420,39 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false } ], "siteRegistry": true } ], "participants": [ + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2016-05-26", + "startDate": "2019-01-14", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, { "name": "IPSUM", - "endDate": "2021-10-31", - "startDate": "2014-03-29", + "endDate": "2021-02-01", + "startDate": "2017-09-10", "notes": "", "roles": [ "ORGANIZATION" @@ -21606,44 +24460,98 @@ "siteRegistry": true }, { - "name": "AMET, DOLOR SIT", - "endDate": "2013-12-26", - "startDate": "2017-04-16", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2015-03-28", + "startDate": "2015-04-19", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2016-04-26", + "startDate": "2017-10-27", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2021-04-12", + "startDate": "2014-12-08", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true } ], "suspectLandUses": [ { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2020-10-26 (described on Site Profile dated 2020-10-26)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2020-09-04 (described on Site Profile dated 2020-09-04)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-08-23 (described on Site Profile dated 2018-08-23)", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2019-10-24 (described on Site Profile dated 2019-10-24)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-07-27 (described on Site Profile dated 2021-07-27)", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2017-11-29 (described on Site Profile dated 2017-11-29)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], + "parcelDescriptions": [ + { + "siteRegistry": false, + "dateNoted": "2019-09-19", + "parcelID": "19525", + "crownLandUsePIN": "16930", + "crownLandFileNumber": "18036", + "landDescription": "LOT 2 OF LOT 3 BLOCK 1 DISTRICT LOT 2 PLAN 6440" + }, + { + "siteRegistry": false, + "dateNoted": "2016-08-31", + "parcelID": "18568", + "crownLandUsePIN": "15662", + "crownLandFileNumber": "17759", + "landDescription": "LOT 3 OF LOT 1 BLOCK 5 DISTRICT LOT 1 PLAN 7954" + }, + { + "siteRegistry": false, + "dateNoted": "2018-06-03", + "parcelID": "15326", + "crownLandUsePIN": "18344", + "crownLandFileNumber": "20594", + "landDescription": "LOT 3 OF LOT 2 BLOCK 1 DISTRICT LOT 2 PLAN 6845" + }, + { + "siteRegistry": false, + "dateNoted": "2023-06-19", + "parcelID": "16454", + "crownLandUsePIN": "16178", + "crownLandFileNumber": "18024", + "landDescription": "LOT 2 OF LOT 3 BLOCK 2 DISTRICT LOT 3 PLAN 8102" + } + ], "siteDisclosures": [ { "siteRegistry": false, - "dateReceived": "2021-12-11", - "dateCompleted": "2019-06-11", - "dateEntered": "2014-01-03", - "dateRegistrar": "2021-01-23", - "dateLocalAuthorityReceived": "2015-08-06", - "summary": "Voluptatem dolorum vero animi totam exercitationem nobis id distinctio a.\nDolore unde minima repudiandae voluptatibus expedita temporibus.\nEos quas nobis.", - "informationUsed": "Ad necessitatibus consequatur corporis ex beatae quisquam vero architecto omnis.\nDeleniti eos quaerat.\nQuod rerum veritatis.", - "pastOrPresentOrders": "Labore libero asperiores consectetur aspernatur soluta officiis.", + "dateReceived": "2017-08-28", + "dateCompleted": "2018-10-12", + "dateEntered": "2014-03-07", + "dateRegistrar": "2020-06-14", + "dateLocalAuthorityReceived": "2023-09-09", + "summary": "Sint voluptate itaque maiores vel beatae doloribus.\nIpsum sequi eligendi at atque omnis eligendi expedita.\nPorro doloribus accusamus laboriosam doloremque recusandae labore odit fugiat.", + "informationUsed": "Quasi eum fugiat libero dolor ullam.\nFacere voluptatem perspiciatis hic.\nQui optio suscipit temporibus commodi quam reiciendis atque.\nEaque ullam assumenda voluptate ducimus suscipit dolorum quaerat quod labore.", + "pastOrPresentOrders": "Rerum numquam quibusdam dolorem.\nCulpa labore nesciunt.", "commercialAndIndustrialPurposes": [ { "scheduleReference": "F1*", @@ -21651,28 +24559,23 @@ "siteRegistry": true }, { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true } ] }, { - "siteRegistry": true, - "dateReceived": "2017-11-28", - "dateCompleted": "2016-01-24", - "dateEntered": "2021-04-28", - "dateRegistrar": "2015-12-29", - "dateLocalAuthorityReceived": "2015-03-25", - "summary": "Impedit corrupti esse soluta accusamus voluptatum libero.\nIllum similique nesciunt doloribus quidem quasi suscipit ullam rem velit.", - "informationUsed": "Omnis quam officia nemo maiores officiis inventore soluta.\nCorporis id neque dolores eligendi laudantium labore.\nSit laboriosam culpa ipsum quisquam occaecati dicta.", - "pastOrPresentOrders": "Dicta ipsum sed tempore distinctio iste necessitatibus consequuntur est.\nEos repellat aliquid ab maiores.", + "siteRegistry": false, + "dateReceived": "2023-01-27", + "dateCompleted": "2020-08-01", + "dateEntered": "2019-09-12", + "dateRegistrar": "2021-05-22", + "dateLocalAuthorityReceived": "2020-08-20", + "summary": "Veritatis consequuntur facilis et illo unde ex dicta occaecati tempora.\nCorporis id sed ipsam natus quas ipsum hic.\nVeniam est fuga sit tempore corrupti.", + "informationUsed": "Dolorem et error consequatur dicta.\nAut corporis error rerum facere quos corporis dignissimos sed.\nDicta explicabo quisquam sapiente commodi.\nQuas est incidunt doloremque quis hic nesciunt.\nExpedita perspiciatis numquam modi quas nostrum assumenda.", + "pastOrPresentOrders": "A dolorem doloribus deleniti iste iusto asperiores dicta quidem molestias.", "commercialAndIndustrialPurposes": [ - { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false - }, { "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", @@ -21681,12 +24584,12 @@ { "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true + "siteRegistry": false }, { - "scheduleReference": "F1*", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false + "siteRegistry": true } ] } @@ -21695,118 +24598,82 @@ { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "POWLOWSKI DAMION", - "timestamp": "2015-10-26" - }, - { - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "SCHMIDT LAILA", - "timestamp": "2014-12-14" - }, - { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "ERDMAN IDELL", - "timestamp": "2017-08-24" + "user": "TURCOTTE ANASTACIO", + "timestamp": "2016-04-19" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "GIBSON ADITYA", - "timestamp": "2022-06-12" + "user": "KUPHAL ROSE", + "timestamp": "2018-05-31" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "HOEGER ABDIEL", - "timestamp": "2014-10-23" - }, - { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "FADEL BILLIE", - "timestamp": "2013-11-20" + "user": "WIZA DEWITT", + "timestamp": "2022-12-08" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "WIZA VERDIE", - "timestamp": "2014-12-07" + "user": "BARTON KEELY", + "timestamp": "2022-06-17" }, { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "HERMANN ALAINA", - "timestamp": "2014-04-01" + "user": "O'HARA MARISA", + "timestamp": "2017-05-05" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "GISLASON-JOHNSTON GRADY", - "timestamp": "2020-10-11" + "user": "WISOZK NELLIE", + "timestamp": "2020-03-30" } ], "associatedSites": [ { - "dateNoted": "2019-03-14", + "dateNoted": "2014-07-28", "notes": "", - "parcelID": "18216", - "siteID": "16715", - "siteRegistry": false + "parcelID": "18428", + "siteID": "16677", + "siteRegistry": true + }, + { + "dateNoted": "2023-06-28", + "notes": "", + "parcelID": "18765", + "siteID": "16305", + "siteRegistry": true } ] }, { - "uuid": "8115d82a-40e2-41f8-b9ae-77d1aa07200a", - "siteID": 19987, - "address": "7806 Rice Ridge", - "latitude": 52.1212, - "longitude": -123.1303, - "lastUpdated": "2019-08-11", - "city": "Jakubowskiworth", - "region": "Vancouver Island/Coast", - "victoriaFile": "26250-20/7316", + "uuid": "4ffe4946-a259-4a08-8f06-7fe00210e27d", + "siteID": 18687, + "address": "8373 Heaney Ridges", + "latitude": 58.7246, + "longitude": -124.4109, + "lastUpdated": "2023-03-30", + "city": "South Letha", + "region": "Cariboo", + "victoriaFile": "26250-20/4791", "regionalFile": "N/A", "parcelIDs": [ - 8850189, - 6032855, - 6562613, - 6775147, - 6417686 + 9246962, + 7043039, + 1322665, + 410747, + 6481171 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2022-11-29", - "completed": "2015-08-12", - "initiated": "2014-09-14", - "ministryContact": "KILBACK BUSTER", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - } - ], - "siteRegistry": true - }, - { - "createdAt": "2023-01-24", - "completed": "2015-05-23", - "initiated": "2014-06-19", - "ministryContact": "DACH WOODROW", + "createdAt": "2016-06-27", + "completed": "2014-06-06", + "initiated": "2023-01-05", + "ministryContact": "SCHMIDT LEIF", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -21819,21 +24686,6 @@ "role": "SUBMITTED BY", "siteRegistry": false }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", @@ -21843,10 +24695,10 @@ "siteRegistry": false }, { - "createdAt": "2020-12-02", - "completed": "2017-02-22", - "initiated": "2020-07-19", - "ministryContact": "KIHN RAQUEL", + "createdAt": "2017-03-05", + "completed": "2023-07-10", + "initiated": "2020-03-19", + "ministryContact": "GREEN JEAN", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -21862,32 +24714,17 @@ { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true } ], "participants": [ { "name": "IPSUM", - "endDate": "2022-08-22", - "startDate": "2019-06-08", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2020-12-21", - "startDate": "2018-04-12", + "endDate": "2014-03-07", + "startDate": "2019-10-21", "notes": "", "roles": [ "ORGANIZATION" @@ -21895,162 +24732,174 @@ "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2014-08-10", - "startDate": "2019-12-27", + "name": "IPSUM", + "endDate": "2022-06-13", + "startDate": "2018-10-18", "notes": "", "roles": [ "ORGANIZATION" ], "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2023-01-05", - "startDate": "2021-11-19", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": false } ], "suspectLandUses": [ { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-03-29 (described on Site Profile dated 2015-03-29)", + "notes": "INSERTED FOR SITE PROFILE DATED 2020-10-18 (described on Site Profile dated 2020-10-18)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-05-29 (described on Site Profile dated 2021-05-29)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2016-06-11 (described on Site Profile dated 2016-06-11)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-05-13 (described on Site Profile dated 2015-05-13)", + "notes": "INSERTED FOR SITE PROFILE DATED 2022-03-19 (described on Site Profile dated 2022-03-19)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + } + ], + "parcelDescriptions": [ + { + "siteRegistry": false, + "dateNoted": "2023-01-18", + "parcelID": "16278", + "crownLandUsePIN": "20274", + "crownLandFileNumber": "18119", + "landDescription": "LOT 2 OF LOT 2 BLOCK 5 DISTRICT LOT 1 PLAN 5622" }, { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-10-29 (described on Site Profile dated 2014-10-29)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "dateNoted": "2017-02-05", + "parcelID": "16134", + "crownLandUsePIN": "16486", + "crownLandFileNumber": "15302", + "landDescription": "LOT 3 OF LOT 3 BLOCK 5 DISTRICT LOT 2 PLAN 8931" + }, + { + "siteRegistry": false, + "dateNoted": "2016-03-14", + "parcelID": "15844", + "crownLandUsePIN": "20699", + "crownLandFileNumber": "18669", + "landDescription": "LOT 2 OF LOT 5 BLOCK 4 DISTRICT LOT 5 PLAN 3422" } ], "siteDisclosures": [ { "siteRegistry": false, - "dateReceived": "2022-06-15", - "dateCompleted": "2018-10-13", - "dateEntered": "2015-08-13", - "dateRegistrar": "2015-10-29", - "dateLocalAuthorityReceived": "2014-01-21", - "summary": "Quis ipsum ipsa ducimus unde.\nEius cupiditate tempora.\nCulpa mollitia distinctio qui necessitatibus possimus esse voluptatibus laborum.", - "informationUsed": "Blanditiis vel exercitationem.\nQuidem animi voluptas odio voluptas occaecati minima molestiae.\nQuae quas repellendus animi temporibus rem iusto libero.\nDolorem minus laboriosam dolorum est facere sint ducimus blanditiis maiores.", - "pastOrPresentOrders": "Molestiae mollitia laborum blanditiis.\nQuae voluptate fugiat aperiam sequi sequi incidunt cum voluptatibus minima.\nQuis vero optio.", + "dateReceived": "2023-02-05", + "dateCompleted": "2016-12-14", + "dateEntered": "2021-02-07", + "dateRegistrar": "2016-12-18", + "dateLocalAuthorityReceived": "2019-11-28", + "summary": "Laborum assumenda est quam exercitationem aperiam quos ipsam cupiditate reiciendis.", + "informationUsed": "Perferendis quidem eos.\nRem dolores ut provident deleniti aut voluptate eum illum adipisci.\nSint repellendus tempore eligendi.\nUnde beatae non modi.", + "pastOrPresentOrders": "Illo vitae ullam error aliquam.", "commercialAndIndustrialPurposes": [ { "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false }, { "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { - "scheduleReference": "F2*", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { - "scheduleReference": "F2*", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false + "siteRegistry": true } ] } ], "activityLog": [ { - "siteRegistry": true, + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "LINDGREN HILMA", - "timestamp": "2017-05-10" + "user": "CARTWRIGHT RAMON", + "timestamp": "2019-11-25" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "HAUCK VILMA", - "timestamp": "2019-07-16" - }, - { - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "MAYERT JAMAR", - "timestamp": "2022-04-30" + "user": "STOLTENBERG RUSTY", + "timestamp": "2021-06-01" }, { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "KUPHAL GERTRUDE", - "timestamp": "2020-05-14" + "user": "RATKE CLYDE", + "timestamp": "2019-03-31" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "KOELPIN MARIAM", - "timestamp": "2021-10-20" + "user": "STEUBER ZOE", + "timestamp": "2023-09-24" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "SCHNEIDER JAQUELIN", - "timestamp": "2020-02-21" + "user": "FERRY FELIX", + "timestamp": "2015-02-08" }, { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "FRIESEN PAYTON", - "timestamp": "2017-02-10" + "user": "LEUSCHKE EVELYN", + "timestamp": "2014-07-27" } ], "associatedSites": [ { - "dateNoted": "2014-07-03", + "dateNoted": "2023-09-03", "notes": "", - "parcelID": "20947", - "siteID": "17962", - "siteRegistry": true + "parcelID": "19767", + "siteID": "15284", + "siteRegistry": false + }, + { + "dateNoted": "2022-10-11", + "notes": "", + "parcelID": "15428", + "siteID": "19346", + "siteRegistry": false } ] }, { - "uuid": "347d0210-2de4-4df8-8bbb-49fcda124cac", - "siteID": 20804, - "address": "54736 Mertz Ramp", - "latitude": 51.5908, - "longitude": -136.0571, - "lastUpdated": "2020-08-16", - "city": "Kuphalstead", + "uuid": "e3cd74b8-be45-4fdb-94cd-b1f2d0bdabc7", + "siteID": 15211, + "address": "75738 Francis Ford", + "latitude": 56.0871, + "longitude": -138.3613, + "lastUpdated": "2017-04-28", + "city": "Lake Arnoldo", "region": " North Coast", - "victoriaFile": "26250-20/11758", + "victoriaFile": "26250-20/17733", "regionalFile": "N/A", "parcelIDs": [ - 641066, - 9517561, - 8872938, - 1895841, - 3532149 + 9187257, + 8780161, + 7183945, + 1938227, + 671584 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2016-04-05", - "completed": "2015-08-14", - "initiated": "2023-07-17", - "ministryContact": "ROSENBAUM ELVIS", + "createdAt": "2016-09-07", + "completed": "2014-04-04", + "initiated": "2021-05-15", + "ministryContact": "NICOLAS FLETA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -22070,17 +24919,22 @@ }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": true } ], "siteRegistry": false }, { - "createdAt": "2017-11-30", - "completed": "2017-06-28", - "initiated": "2020-11-22", - "ministryContact": "JAST ELLIE", + "createdAt": "2019-03-10", + "completed": "2021-03-12", + "initiated": "2016-01-25", + "ministryContact": "DICKENS KIANNA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -22091,26 +24945,21 @@ { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false } ], "siteRegistry": false }, { - "createdAt": "2018-01-03", - "completed": "2021-02-13", - "initiated": "2019-09-27", - "ministryContact": "EFFERTZ NYASIA", + "createdAt": "2016-06-04", + "completed": "2017-05-01", + "initiated": "2015-02-08", + "ministryContact": "MONAHAN DOMENICO", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -22119,14 +24968,44 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "createdAt": "2014-12-04", + "completed": "2017-02-16", + "initiated": "2014-04-17", + "ministryContact": "MCLAUGHLIN GENEVIEVE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", @@ -22140,18 +25019,28 @@ "participants": [ { "name": "SHELL CANADA PRODUCTS", - "endDate": "2015-03-09", - "startDate": "2016-10-24", + "endDate": "2016-03-03", + "startDate": "2023-04-26", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2023-04-13", + "startDate": "2015-11-28", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false }, { - "name": "AMET, DOLOR SIT", - "endDate": "2015-09-24", - "startDate": "2021-08-16", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2021-03-14", + "startDate": "2020-07-02", "notes": "", "roles": [ "ORGANIZATION" @@ -22159,52 +25048,86 @@ "siteRegistry": false }, { - "name": "IPSUM", - "endDate": "2017-09-01", - "startDate": "2019-06-21", + "name": "AMET, DOLOR SIT", + "endDate": "2022-07-17", + "startDate": "2023-04-09", "notes": "", "roles": [ "EMPLOYEE" ], "siteRegistry": false + }, + { + "name": "IPSUM", + "endDate": "2018-03-16", + "startDate": "2015-12-12", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true } ], "suspectLandUses": [ { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2023-08-01 (described on Site Profile dated 2023-08-01)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "notes": "INSERTED FOR SITE PROFILE DATED 2016-03-23 (described on Site Profile dated 2016-03-23)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2020-05-11 (described on Site Profile dated 2020-05-11)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "notes": "INSERTED FOR SITE PROFILE DATED 2014-07-24 (described on Site Profile dated 2014-07-24)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + } + ], + "parcelDescriptions": [ + { + "siteRegistry": false, + "dateNoted": "2022-08-03", + "parcelID": "16995", + "crownLandUsePIN": "18617", + "crownLandFileNumber": "18694", + "landDescription": "LOT 4 OF LOT 1 BLOCK 2 DISTRICT LOT 4 PLAN 6142" }, { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-07-02 (described on Site Profile dated 2022-07-02)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "dateNoted": "2022-10-09", + "parcelID": "19796", + "crownLandUsePIN": "18524", + "crownLandFileNumber": "15545", + "landDescription": "LOT 1 OF LOT 5 BLOCK 3 DISTRICT LOT 5 PLAN 4431" + }, + { + "siteRegistry": true, + "dateNoted": "2019-11-28", + "parcelID": "19272", + "crownLandUsePIN": "17216", + "crownLandFileNumber": "19019", + "landDescription": "LOT 4 OF LOT 5 BLOCK 3 DISTRICT LOT 1 PLAN 5461" }, { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2020-11-29 (described on Site Profile dated 2020-11-29)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "dateNoted": "2014-10-17", + "parcelID": "16201", + "crownLandUsePIN": "19628", + "crownLandFileNumber": "17892", + "landDescription": "LOT 4 OF LOT 5 BLOCK 3 DISTRICT LOT 1 PLAN 6009" } ], "siteDisclosures": [ { "siteRegistry": true, - "dateReceived": "2014-06-10", - "dateCompleted": "2015-01-17", - "dateEntered": "2022-05-04", - "dateRegistrar": "2019-08-20", - "dateLocalAuthorityReceived": "2017-07-24", - "summary": "Dicta neque repellendus.", - "informationUsed": "Error excepturi neque odio consequuntur blanditiis dignissimos laboriosam.\nSuscipit assumenda praesentium cum nulla sed in recusandae.\nRepellendus consequuntur repellat molestiae minus.\nImpedit laudantium officia soluta dolorem.", - "pastOrPresentOrders": "Modi asperiores quod minima esse fugit quaerat ad.\nOptio aut similique porro debitis omnis perferendis.\nEx facere esse laudantium aperiam libero odio sunt.", + "dateReceived": "2022-05-22", + "dateCompleted": "2019-04-17", + "dateEntered": "2018-04-20", + "dateRegistrar": "2023-05-24", + "dateLocalAuthorityReceived": "2014-03-02", + "summary": "Aut ipsa iure dolores dolores deleniti.\nSimilique veniam libero recusandae dolor.\nUllam illum in deserunt officia eum ratione quam asperiores fugiat.", + "informationUsed": "Modi culpa explicabo nemo.\nEt ea quia rem culpa soluta dicta molestias.\nVoluptates aut quasi ipsam temporibus fugit fugiat.", + "pastOrPresentOrders": "Sequi aperiam autem perferendis aspernatur.\nRecusandae animi cupiditate beatae enim consequuntur iusto repellat.\nPraesentium eum quibusdam iste odit officia incidunt laudantium.", "commercialAndIndustrialPurposes": [ { - "scheduleReference": "F2*", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, @@ -22215,8 +25138,13 @@ }, { "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true } ] } @@ -22225,99 +25153,113 @@ { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "KIEHN NORRIS", - "timestamp": "2014-12-18" + "user": "GRIMES-CASSIN AYLA", + "timestamp": "2019-05-12" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "FEENEY KARI", - "timestamp": "2016-04-10" + "user": "WAELCHI YAZMIN", + "timestamp": "2021-10-31" }, { - "siteRegistry": true, + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "HALEY NILS", - "timestamp": "2021-11-28" + "user": "HESSEL PEARLINE", + "timestamp": "2021-10-21" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "HANSEN MAURINE", - "timestamp": "2013-12-15" + "user": "GERLACH LISA", + "timestamp": "2020-05-18" }, { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "TURNER OSVALDO", - "timestamp": "2016-06-09" + "user": "CREMIN ANABEL", + "timestamp": "2019-08-04" }, { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "PREDOVIC WILFRED", - "timestamp": "2021-12-23" + "user": "QUITZON UNIQUE", + "timestamp": "2022-03-12" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "CONN ODELL", - "timestamp": "2023-09-04" + "user": "GLEICHNER RAMIRO", + "timestamp": "2014-02-07" }, { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "WISOKY JOSIE", - "timestamp": "2016-04-10" + "user": "FRIESEN WILFORD", + "timestamp": "2016-03-28" }, { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "CORKERY GROVER", - "timestamp": "2014-05-16" + "user": "SCHIMMEL ELINOR", + "timestamp": "2020-09-26" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "SCHOWALTER CATHARINE", - "timestamp": "2017-05-26" + "user": "SCHUPPE RUSSEL", + "timestamp": "2023-06-03" } ], "associatedSites": [ { - "dateNoted": "2020-03-13", + "dateNoted": "2020-10-30", "notes": "", - "parcelID": "18397", - "siteID": "16902", + "parcelID": "16785", + "siteID": "15660", + "siteRegistry": true + }, + { + "dateNoted": "2018-09-28", + "notes": "", + "parcelID": "18291", + "siteID": "15462", "siteRegistry": true + }, + { + "dateNoted": "2014-09-04", + "notes": "", + "parcelID": "20249", + "siteID": "15563", + "siteRegistry": false } ] }, { - "uuid": "b735a907-a24a-4482-b58c-4e822ccf0b57", - "siteID": 16563, - "address": "2924 Jeanie Walk", - "latitude": 56.5015, - "longitude": -131.3383, - "lastUpdated": "2020-11-25", - "city": "Port Anne", - "region": "Vancouver Island/Coast", - "victoriaFile": "26250-20/11881", + "uuid": "3d4020d6-d90e-40ca-b1a1-6cafdd5a3e07", + "siteID": 17950, + "address": "87954 Renner Row", + "latitude": 58.4746, + "longitude": -137.8449, + "lastUpdated": "2014-05-20", + "city": "Alyciatown", + "region": "Mainland/Southwest", + "victoriaFile": "26250-20/2398", "regionalFile": "N/A", "parcelIDs": [ - 256421, - 7701662, - 4443315, - 478682, - 5297732 + 254953, + 1001600, + 2767092, + 3377724, + 3191102 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2020-03-06", - "completed": "2020-02-03", - "initiated": "2016-06-11", - "ministryContact": "AUFDERHAR NICO", + "createdAt": "2016-07-15", + "completed": "2017-11-01", + "initiated": "2015-03-03", + "ministryContact": "HILLS JACLYN", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -22325,29 +25267,99 @@ "" ], "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "createdAt": "2016-12-08", + "completed": "2021-12-29", + "initiated": "2022-06-16", + "ministryContact": "RUNTE BERYL", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", "siteRegistry": false }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "createdAt": "2020-01-05", + "completed": "2017-12-10", + "initiated": "2018-09-17", + "ministryContact": "RUTHERFORD SHANY", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2017-01-19", - "completed": "2018-08-04", - "initiated": "2014-06-26", - "ministryContact": "DECKOW ARLENE", + "createdAt": "2014-09-13", + "completed": "2015-06-27", + "initiated": "2023-05-19", + "ministryContact": "KOELPIN BERNADINE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -22358,11 +25370,11 @@ { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": true }, { @@ -22376,29 +25388,29 @@ ], "participants": [ { - "name": "AMET, DOLOR SIT", - "endDate": "2022-04-18", - "startDate": "2019-05-03", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2014-03-28", + "startDate": "2020-06-23", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], - "siteRegistry": false + "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2022-01-19", - "startDate": "2016-04-25", + "name": "AMET, DOLOR SIT", + "endDate": "2021-02-11", + "startDate": "2018-11-18", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": false }, { - "name": "IPSUM", - "endDate": "2020-09-20", - "startDate": "2018-02-15", + "name": "AMET, DOLOR SIT", + "endDate": "2017-10-11", + "startDate": "2014-03-19", "notes": "", "roles": [ "ORGANIZATION" @@ -22409,44 +25421,103 @@ "suspectLandUses": [ { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-10-25 (described on Site Profile dated 2018-10-25)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "notes": "INSERTED FOR SITE PROFILE DATED 2017-06-28 (described on Site Profile dated 2017-06-28)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2022-09-15 (described on Site Profile dated 2022-09-15)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-07-26 (described on Site Profile dated 2015-07-26)", + "notes": "INSERTED FOR SITE PROFILE DATED 2016-12-04 (described on Site Profile dated 2016-12-04)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2022-02-05 (described on Site Profile dated 2022-02-05)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + } + ], + "parcelDescriptions": [ + { + "siteRegistry": true, + "dateNoted": "2018-03-05", + "parcelID": "15910", + "crownLandUsePIN": "19458", + "crownLandFileNumber": "15799", + "landDescription": "LOT 3 OF LOT 4 BLOCK 4 DISTRICT LOT 5 PLAN 4560" }, { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2023-05-20 (described on Site Profile dated 2023-05-20)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "dateNoted": "2016-04-19", + "parcelID": "17308", + "crownLandUsePIN": "17131", + "crownLandFileNumber": "15663", + "landDescription": "LOT 3 OF LOT 5 BLOCK 4 DISTRICT LOT 5 PLAN 7773" + }, + { + "siteRegistry": true, + "dateNoted": "2015-01-09", + "parcelID": "18448", + "crownLandUsePIN": "17553", + "crownLandFileNumber": "18797", + "landDescription": "LOT 2 OF LOT 4 BLOCK 1 DISTRICT LOT 2 PLAN 6916" } ], "siteDisclosures": [ { "siteRegistry": true, - "dateReceived": "2019-01-22", - "dateCompleted": "2018-05-11", - "dateEntered": "2016-03-27", - "dateRegistrar": "2021-09-21", - "dateLocalAuthorityReceived": "2022-09-08", - "summary": "Minus quisquam impedit facilis harum fugiat rerum repellendus.", - "informationUsed": "Perspiciatis unde odit non.\nPorro modi accusamus voluptate recusandae ea reiciendis in.\nIpsam modi tempora recusandae tenetur voluptatibus.\nAutem cum recusandae atque nostrum quisquam libero asperiores consequatur alias.\nEnim quos nulla earum in harum.", - "pastOrPresentOrders": "Natus tempora ipsa sequi quia.", + "dateReceived": "2022-10-30", + "dateCompleted": "2014-09-30", + "dateEntered": "2019-05-08", + "dateRegistrar": "2016-04-01", + "dateLocalAuthorityReceived": "2013-11-02", + "summary": "Nulla maiores accusantium voluptate magnam quidem delectus non vitae.", + "informationUsed": "Error vitae sequi quasi quos iure dolorum ex exercitationem repellat.\nReprehenderit quaerat eligendi iste sint quasi quas non.\nTemporibus odio atque odit tempore ratione.", + "pastOrPresentOrders": "Nihil officia deleniti.\nRepellendus voluptate veritatis quo.", "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, { "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + } + ] + }, + { + "siteRegistry": false, + "dateReceived": "2020-07-01", + "dateCompleted": "2022-11-18", + "dateEntered": "2016-10-29", + "dateRegistrar": "2018-06-28", + "dateLocalAuthorityReceived": "2015-10-12", + "summary": "Sequi voluptas debitis iure consectetur.", + "informationUsed": "Nihil dolorem error voluptate.\nSimilique facilis laboriosam perferendis impedit sit amet.\nReprehenderit nisi pariatur dignissimos facilis illum.\nVoluptatum fugit ipsa.\nMagni adipisci hic blanditiis ducimus.", + "pastOrPresentOrders": "Reiciendis totam optio provident maiores officiis.\nRatione et numquam recusandae deleniti quos provident.\nInventore ducimus recusandae eligendi doloremque veniam tempore consequuntur corrupti ex.", + "commercialAndIndustrialPurposes": [ { "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { - "scheduleReference": "F1*", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true } @@ -22455,101 +25526,96 @@ ], "activityLog": [ { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "WALSH PATSY", - "timestamp": "2017-12-21" - }, - { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "MCDERMOTT KIRK", - "timestamp": "2013-10-17" + "user": "ZULAUF-HARBER ROSEMARIE", + "timestamp": "2018-09-26" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "HILLS BERNADINE", - "timestamp": "2022-10-18" + "user": "BEDNAR CLEMENS", + "timestamp": "2021-08-03" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "BERNHARD ALENE", - "timestamp": "2022-11-14" + "user": "YOST KAILYN", + "timestamp": "2018-01-17" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "RAYNOR JOHATHAN", - "timestamp": "2019-02-27" + "user": "MRAZ FAE", + "timestamp": "2013-10-30" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "BERNIER BETTE", - "timestamp": "2022-11-03" - }, - { - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "BAYER JOANIE", - "timestamp": "2023-02-19" + "user": "STOLTENBERG GAYLE", + "timestamp": "2018-07-29" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "SCHIMMEL GRAHAM", - "timestamp": "2013-11-01" + "user": "WALKER RAY", + "timestamp": "2019-06-16" }, { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "HARTMANN ALIZA", - "timestamp": "2020-01-14" + "user": "POWLOWSKI JUVENAL", + "timestamp": "2021-07-20" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "NITZSCHE FABIOLA", - "timestamp": "2021-10-02" + "user": "ROHAN RACHAEL", + "timestamp": "2018-05-18" } ], "associatedSites": [ { - "dateNoted": "2016-12-26", + "dateNoted": "2019-11-12", + "notes": "", + "parcelID": "18643", + "siteID": "15761", + "siteRegistry": false + }, + { + "dateNoted": "2017-06-25", "notes": "", - "parcelID": "16560", - "siteID": "17224", + "parcelID": "18821", + "siteID": "17607", "siteRegistry": false } ] }, { - "uuid": "1f4c9615-3b59-44c2-8d54-283532439504", - "siteID": 15574, - "address": "90038 Travis Overpass", - "latitude": 57.5799, - "longitude": -119.4211, - "lastUpdated": "2014-06-19", - "city": "Dellaland", - "region": "Vancouver Island/Coast", - "victoriaFile": "26250-20/1062", + "uuid": "3121b6c3-f2bb-4796-b5d0-1c297d80e936", + "siteID": 15826, + "address": "695 McDermott Turnpike", + "latitude": 55.8181, + "longitude": -135.774, + "lastUpdated": "2014-06-11", + "city": "Romainemouth", + "region": "Thompson-Okanagan", + "victoriaFile": "26250-20/8812", "regionalFile": "N/A", "parcelIDs": [ - 4049842, - 9764519, - 2570010, - 7832203, - 8371794 + 7359671, + 810920, + 4738673, + 1888992, + 2993564 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2018-03-17", - "completed": "2015-09-02", - "initiated": "2017-11-04", - "ministryContact": "JERDE WYMAN", + "createdAt": "2020-12-24", + "completed": "2022-03-05", + "initiated": "2014-12-23", + "ministryContact": "KOSS EDD", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -22558,33 +25624,23 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true } ], "siteRegistry": false }, { - "createdAt": "2023-01-19", - "completed": "2020-01-04", - "initiated": "2016-06-13", - "ministryContact": "CHAMPLIN VERNA", + "createdAt": "2014-09-16", + "completed": "2019-10-15", + "initiated": "2022-01-02", + "ministryContact": "WISOKY CASSIE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -22593,7 +25649,7 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false }, @@ -22606,10 +25662,10 @@ "siteRegistry": true }, { - "createdAt": "2017-10-30", - "completed": "2020-03-17", - "initiated": "2017-08-31", - "ministryContact": "HINTZ MUSTAFA", + "createdAt": "2014-11-18", + "completed": "2018-07-28", + "initiated": "2018-09-09", + "ministryContact": "BERGNAUM DARION", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -22622,55 +25678,20 @@ "role": "REQUESTED BY", "siteRegistry": true }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - } - ], - "siteRegistry": true - }, - { - "createdAt": "2016-02-28", - "completed": "2022-04-22", - "initiated": "2017-04-24", - "ministryContact": "FUNK JAZLYN", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true } ], "siteRegistry": true @@ -22679,68 +25700,71 @@ "participants": [ { "name": "IPSUM", - "endDate": "2021-06-11", - "startDate": "2016-08-07", + "endDate": "2021-01-12", + "startDate": "2023-08-30", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false }, { "name": "IPSUM", - "endDate": "2016-03-14", - "startDate": "2020-09-14", + "endDate": "2021-04-16", + "startDate": "2017-01-28", "notes": "", "roles": [ "ORGANIZATION" ], "siteRegistry": false + } + ], + "suspectLandUses": [ + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2018-02-14 (described on Site Profile dated 2018-02-14)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2018-06-06", - "startDate": "2021-05-03", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": false + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2020-02-03 (described on Site Profile dated 2020-02-03)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2018-05-13", - "startDate": "2019-10-31", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": false + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2014-01-28 (described on Site Profile dated 2014-01-28)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], - "suspectLandUses": [ + "parcelDescriptions": [ { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-04-12 (described on Site Profile dated 2014-04-12)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "siteRegistry": true, + "dateNoted": "2022-06-22", + "parcelID": "20723", + "crownLandUsePIN": "20733", + "crownLandFileNumber": "16088", + "landDescription": "LOT 5 OF LOT 1 BLOCK 2 DISTRICT LOT 3 PLAN 8185" }, { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2020-04-27 (described on Site Profile dated 2020-04-27)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "dateNoted": "2014-03-09", + "parcelID": "18945", + "crownLandUsePIN": "19765", + "crownLandFileNumber": "19262", + "landDescription": "LOT 2 OF LOT 1 BLOCK 5 DISTRICT LOT 2 PLAN 5594" } ], "siteDisclosures": [ { "siteRegistry": false, - "dateReceived": "2016-06-19", - "dateCompleted": "2016-11-04", - "dateEntered": "2018-09-19", - "dateRegistrar": "2018-02-25", - "dateLocalAuthorityReceived": "2015-08-14", - "summary": "Magni animi placeat iusto corrupti accusantium.", - "informationUsed": "Excepturi laudantium optio sequi.\nAnimi voluptatum unde dolor quas quam.\nVoluptas praesentium at expedita quod.\nAperiam distinctio laudantium at nobis natus repellat quis quod ipsa.", - "pastOrPresentOrders": "Nostrum dolorum cumque expedita aliquid eligendi voluptatem quasi culpa.\nHarum facilis quia commodi quas iste dolores dolorum aut voluptatum.\nEius assumenda animi debitis cumque odit.", + "dateReceived": "2014-06-27", + "dateCompleted": "2015-07-09", + "dateEntered": "2020-08-31", + "dateRegistrar": "2019-02-25", + "dateLocalAuthorityReceived": "2022-01-21", + "summary": "Vel laudantium hic quis ducimus deleniti.\nVoluptatum ex odio temporibus perferendis animi sed nobis.\nDoloremque odio harum ex quos dolorum ipsum repellat consectetur.", + "informationUsed": "Animi occaecati architecto harum modi ullam officiis.\nSaepe libero quidem dolorum.\nMaxime magni blanditiis nemo.", + "pastOrPresentOrders": "Facere nihil in possimus neque commodi sunt quod totam.\nTempora quibusdam dignissimos iusto perferendis esse.\nFacere id sapiente tempore quasi.", "commercialAndIndustrialPurposes": [ { "scheduleReference": "F1*", @@ -22748,19 +25772,37 @@ "siteRegistry": false }, { - "scheduleReference": "F1*", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false + "siteRegistry": true }, { "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false + } + ] + }, + { + "siteRegistry": false, + "dateReceived": "2017-08-12", + "dateCompleted": "2016-04-14", + "dateEntered": "2019-07-04", + "dateRegistrar": "2022-05-10", + "dateLocalAuthorityReceived": "2015-05-10", + "summary": "A enim ut delectus incidunt nam necessitatibus.\nOfficia doloremque quidem cumque optio consectetur adipisci.", + "informationUsed": "Placeat aliquam suscipit voluptate eligendi a unde autem fuga.\nSapiente vero aperiam adipisci temporibus a libero quidem.\nImpedit eligendi sit ipsum.\nMagni illo fuga.", + "pastOrPresentOrders": "Nostrum error quidem at repudiandae quod ullam quaerat maiores.\nDelectus quo minus.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true }, { "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true + "siteRegistry": false } ] } @@ -22769,87 +25811,93 @@ { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "SCHUSTER BEULAH", - "timestamp": "2022-02-24" + "user": "KUB MOLLY", + "timestamp": "2018-02-21" }, { - "siteRegistry": true, + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "CORKERY YAZMIN", - "timestamp": "2014-07-03" + "user": "STROMAN EDGAR", + "timestamp": "2013-12-03" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "JERDE FRIDA", - "timestamp": "2021-08-28" + "user": "KUB KYLE", + "timestamp": "2015-07-13" }, { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "DICKENS TOD", - "timestamp": "2017-09-20" + "user": "EFFERTZ JANE", + "timestamp": "2022-08-07" }, { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "ERNSER NIKOLAS", - "timestamp": "2017-11-21" + "user": "STOKES KAVON", + "timestamp": "2020-04-25" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "HAUCK ROEL", - "timestamp": "2023-03-16" + "user": "CRONA CHRISTOPHER", + "timestamp": "2022-09-08" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "BERGE DARRIN", - "timestamp": "2023-09-27" + "user": "HEATHCOTE SHANY", + "timestamp": "2020-07-09" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "WOLFF SHANON", + "timestamp": "2017-01-27" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "CONSIDINE MARCELINA", - "timestamp": "2014-01-16" + "user": "ANDERSON LUISA", + "timestamp": "2019-02-05" } ], "associatedSites": [ { - "dateNoted": "2023-09-16", + "dateNoted": "2018-12-22", "notes": "", - "parcelID": "16924", - "siteID": "16209", + "parcelID": "16943", + "siteID": "15761", "siteRegistry": true } ] }, { - "uuid": "085896fc-e611-4743-88be-c07d82ac4ee3", - "siteID": 18155, - "address": "997 Jayde Views", - "latitude": 50.2446, - "longitude": -127.2383, - "lastUpdated": "2016-12-25", - "city": "Kunzefort", - "region": " North Coast", - "victoriaFile": "26250-20/6389", + "uuid": "c5c2ac97-3dd5-43ce-8d4b-2686c6650cf2", + "siteID": 18371, + "address": "1868 King Points", + "latitude": 58.5324, + "longitude": -137.9461, + "lastUpdated": "2022-05-12", + "city": "Cummeratashire", + "region": "Thompson-Okanagan", + "victoriaFile": "26250-20/16477", "regionalFile": "N/A", "parcelIDs": [ - 3922733, - 9351838, - 7640900, - 8933088, - 7849967 + 6507678, + 6018942, + 7478614, + 6338617, + 5475909 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2016-12-17", - "completed": "2022-03-07", - "initiated": "2014-10-24", - "ministryContact": "TORPHY TRE", + "createdAt": "2020-10-26", + "completed": "2017-07-05", + "initiated": "2016-01-02", + "ministryContact": "O'HARA CONSUELO", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -22859,36 +25907,11 @@ "notationParticipants": [ { "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - } - ], - "siteRegistry": false - }, - { - "createdAt": "2022-04-19", - "completed": "2014-09-08", - "initiated": "2021-07-26", - "ministryContact": "BRAUN SHAYNA", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true }, @@ -22897,24 +25920,19 @@ "role": "REQUESTED BY", "siteRegistry": false }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2020-05-09", - "completed": "2020-01-07", - "initiated": "2019-09-05", - "ministryContact": "ZIEME DAYTON", + "createdAt": "2016-08-06", + "completed": "2019-03-31", + "initiated": "2015-04-30", + "ministryContact": "WOLFF JOVAN", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -22922,25 +25940,10 @@ "" ], "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", @@ -22948,14 +25951,14 @@ "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false } ], "participants": [ { - "name": "AMET, DOLOR SIT", - "endDate": "2017-09-05", - "startDate": "2018-11-23", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2022-03-24", + "startDate": "2018-02-19", "notes": "", "roles": [ "EMPLOYEE" @@ -22963,9 +25966,9 @@ "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2013-10-25", - "startDate": "2019-01-12", + "name": "IPSUM", + "endDate": "2014-09-01", + "startDate": "2016-03-03", "notes": "", "roles": [ "EMPLOYEE" @@ -22973,9 +25976,19 @@ "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2016-06-19", - "startDate": "2016-09-12", + "name": "AMET, DOLOR SIT", + "endDate": "2022-07-27", + "startDate": "2023-08-14", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "name": "IPSUM", + "endDate": "2020-02-17", + "startDate": "2023-06-01", "notes": "", "roles": [ "ORGANIZATION" @@ -22983,54 +25996,116 @@ "siteRegistry": false }, { - "name": "AMET, DOLOR SIT", - "endDate": "2019-01-06", - "startDate": "2021-08-24", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2023-07-08", + "startDate": "2021-01-22", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false } ], "suspectLandUses": [ { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-05-21 (described on Site Profile dated 2021-05-21)", + "notes": "INSERTED FOR SITE PROFILE DATED 2015-05-26 (described on Site Profile dated 2015-05-26)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-10-04 (described on Site Profile dated 2018-10-04)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2020-06-07 (described on Site Profile dated 2020-06-07)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-08-16 (described on Site Profile dated 2017-08-16)", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2014-01-31 (described on Site Profile dated 2014-01-31)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-03-11 (described on Site Profile dated 2018-03-11)", + "notes": "INSERTED FOR SITE PROFILE DATED 2015-05-23 (described on Site Profile dated 2015-05-23)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2023-07-08 (described on Site Profile dated 2023-07-08)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + } + ], + "parcelDescriptions": [ + { + "siteRegistry": true, + "dateNoted": "2020-02-08", + "parcelID": "16245", + "crownLandUsePIN": "16078", + "crownLandFileNumber": "17786", + "landDescription": "LOT 4 OF LOT 5 BLOCK 2 DISTRICT LOT 3 PLAN 5039" + }, + { + "siteRegistry": true, + "dateNoted": "2019-07-15", + "parcelID": "17977", + "crownLandUsePIN": "15805", + "crownLandFileNumber": "18671", + "landDescription": "LOT 5 OF LOT 3 BLOCK 4 DISTRICT LOT 3 PLAN 6812" + }, + { + "siteRegistry": true, + "dateNoted": "2019-03-25", + "parcelID": "17928", + "crownLandUsePIN": "18284", + "crownLandFileNumber": "20450", + "landDescription": "LOT 3 OF LOT 4 BLOCK 4 DISTRICT LOT 3 PLAN 5002" }, { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-01-25 (described on Site Profile dated 2017-01-25)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "dateNoted": "2014-10-05", + "parcelID": "17172", + "crownLandUsePIN": "16439", + "crownLandFileNumber": "18730", + "landDescription": "LOT 5 OF LOT 3 BLOCK 5 DISTRICT LOT 2 PLAN 4900" } ], "siteDisclosures": [ + { + "siteRegistry": false, + "dateReceived": "2015-02-08", + "dateCompleted": "2020-10-04", + "dateEntered": "2015-04-02", + "dateRegistrar": "2017-06-07", + "dateLocalAuthorityReceived": "2017-06-11", + "summary": "Voluptates eaque debitis accusamus.", + "informationUsed": "Reprehenderit odio nemo.\nVitae culpa excepturi architecto facilis beatae dicta fugiat.\nTemporibus eligendi totam optio.", + "pastOrPresentOrders": "Voluptatum quis quos.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + } + ] + }, { "siteRegistry": true, - "dateReceived": "2023-02-25", - "dateCompleted": "2016-06-09", - "dateEntered": "2022-08-19", - "dateRegistrar": "2019-05-14", - "dateLocalAuthorityReceived": "2014-06-23", - "summary": "Corporis labore eligendi ullam necessitatibus sed vitae quis assumenda dolore.\nVoluptatibus impedit numquam expedita excepturi dolorem illum.", - "informationUsed": "Possimus fugiat eius.\nImpedit in ipsum labore possimus iste dicta.\nEa aspernatur aliquid expedita dolorum.\nHarum totam modi earum rerum incidunt.\nNulla esse ipsum consequatur quas animi maiores.", - "pastOrPresentOrders": "Nulla provident saepe iure odit natus assumenda.\nUnde soluta neque labore excepturi dolorem iste id.", + "dateReceived": "2017-02-13", + "dateCompleted": "2020-12-30", + "dateEntered": "2018-09-28", + "dateRegistrar": "2023-01-27", + "dateLocalAuthorityReceived": "2018-06-13", + "summary": "Nobis nam incidunt beatae molestiae porro natus.", + "informationUsed": "Laudantium aut ipsam nulla atque error doloribus.\nPossimus sapiente blanditiis optio neque aliquid voluptatibus at aliquam sunt.\nMaxime sed accusamus harum ducimus quasi nemo ex eveniet nostrum.\nAt necessitatibus at quae incidunt aut ut.\nConsequatur iure dolorem error dolorum recusandae perferendis architecto.", + "pastOrPresentOrders": "Quae sit mollitia consequatur temporibus quisquam placeat exercitationem veritatis necessitatibus.", "commercialAndIndustrialPurposes": [ { "scheduleReference": "F1*", @@ -23038,12 +26113,17 @@ "siteRegistry": true }, { - "scheduleReference": "F2*", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false + "siteRegistry": true }, { - "scheduleReference": "F2*", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true } @@ -23054,88 +26134,95 @@ { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "O'KEEFE LINNIE", - "timestamp": "2020-12-31" + "user": "REICHERT LAURIE", + "timestamp": "2021-12-07" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "SCHMELER DESTINEY", - "timestamp": "2019-02-01" + "user": "WATERS DARRIN", + "timestamp": "2016-05-10" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "SMITH SHAWN", - "timestamp": "2018-11-01" + "user": "GUSIKOWSKI MARIANNE", + "timestamp": "2019-05-04" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "KSHLERIN MAXIMUS", - "timestamp": "2019-08-05" + "user": "CRONA ROSS", + "timestamp": "2017-03-02" }, { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "JONES CRYSTAL", - "timestamp": "2022-09-05" + "user": "NOLAN LAURYN", + "timestamp": "2021-10-02" }, { - "siteRegistry": true, + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "TOY BORIS", - "timestamp": "2017-04-08" + "user": "TOY LEON", + "timestamp": "2014-08-07" }, { - "siteRegistry": true, + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "KLOCKO NAOMIE", - "timestamp": "2020-09-14" + "user": "VEUM EASTON", + "timestamp": "2016-02-13" } ], "associatedSites": [ { - "dateNoted": "2022-11-09", + "dateNoted": "2019-02-09", "notes": "", - "parcelID": "20131", - "siteID": "16893", + "parcelID": "19491", + "siteID": "18687", + "siteRegistry": false + }, + { + "dateNoted": "2017-04-01", + "notes": "", + "parcelID": "17282", + "siteID": "20407", "siteRegistry": true }, { - "dateNoted": "2020-06-21", + "dateNoted": "2014-07-08", "notes": "", - "parcelID": "20230", - "siteID": "16563", + "parcelID": "19189", + "siteID": "16602", "siteRegistry": true } ] }, { - "uuid": "6bffcb8f-0e74-4396-a692-f9cb6f46a125", - "siteID": 20418, - "address": "1506 Glennie Knoll", - "latitude": 53.9264, - "longitude": -131.5601, - "lastUpdated": "2019-05-16", - "city": "North Celiaberg", - "region": "Cariboo", - "victoriaFile": "26250-20/19606", + "uuid": "28a50545-8434-4ed7-8f47-c24a583e9816", + "siteID": 18510, + "address": "95411 Cummerata Coves", + "latitude": 54.7576, + "longitude": -133.1702, + "lastUpdated": "2018-05-02", + "city": "Justinaland", + "region": "Vancouver Island/Coast", + "victoriaFile": "26250-20/10858", "regionalFile": "N/A", "parcelIDs": [ - 7886918, - 6361553, - 8493829, - 4718142, - 9010554 + 805199, + 8471639, + 4485809, + 4452499, + 9981495 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2019-02-12", - "completed": "2018-03-06", - "initiated": "2023-02-24", - "ministryContact": "SIMONIS SALVADOR", + "createdAt": "2017-08-22", + "completed": "2020-01-18", + "initiated": "2020-01-10", + "ministryContact": "GERHOLD HORTENSE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -23143,50 +26230,15 @@ "" ], "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - } - ], - "siteRegistry": false - }, - { - "createdAt": "2018-08-06", - "completed": "2016-11-20", - "initiated": "2022-05-09", - "ministryContact": "AUFDERHAR WILLA", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", @@ -23196,7 +26248,7 @@ { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", @@ -23207,35 +26259,10 @@ "siteRegistry": false }, { - "createdAt": "2014-07-24", - "completed": "2023-06-03", - "initiated": "2016-05-20", - "ministryContact": "QUIGLEY KATRINE", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - } - ], - "siteRegistry": true - }, - { - "createdAt": "2019-10-20", - "completed": "2014-01-17", - "initiated": "2022-07-22", - "ministryContact": "HOWE CHADRICK", + "createdAt": "2021-08-03", + "completed": "2017-08-19", + "initiated": "2019-09-17", + "ministryContact": "FADEL HANK", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -23253,30 +26280,30 @@ "role": "SUBMITTED BY", "siteRegistry": false }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true } ], "participants": [ { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2022-09-29", - "startDate": "2015-05-11", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2014-11-20", + "startDate": "2022-03-26", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "IPSUM", + "endDate": "2022-05-16", + "startDate": "2016-12-02", "notes": "", "roles": [ "ORGANIZATION" @@ -23284,9 +26311,19 @@ "siteRegistry": false }, { - "name": "AMET, DOLOR SIT", - "endDate": "2023-05-09", - "startDate": "2017-10-14", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2018-12-14", + "startDate": "2015-07-13", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "IPSUM", + "endDate": "2022-02-15", + "startDate": "2017-06-14", "notes": "", "roles": [ "EMPLOYEE" @@ -23294,54 +26331,95 @@ "siteRegistry": true }, { - "name": "AMET, DOLOR SIT", - "endDate": "2019-04-10", - "startDate": "2015-10-08", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2014-02-04", + "startDate": "2016-03-10", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true } ], "suspectLandUses": [ { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-03-02 (described on Site Profile dated 2022-03-02)", + "notes": "INSERTED FOR SITE PROFILE DATED 2022-10-08 (described on Site Profile dated 2022-10-08)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2022-06-07 (described on Site Profile dated 2022-06-07)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-10-04 (described on Site Profile dated 2021-10-04)", + "notes": "INSERTED FOR SITE PROFILE DATED 2019-07-17 (described on Site Profile dated 2019-07-17)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2020-05-18 (described on Site Profile dated 2020-05-18)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + } + ], + "parcelDescriptions": [ + { + "siteRegistry": true, + "dateNoted": "2015-04-30", + "parcelID": "17851", + "crownLandUsePIN": "19922", + "crownLandFileNumber": "19162", + "landDescription": "LOT 1 OF LOT 1 BLOCK 1 DISTRICT LOT 1 PLAN 8950" + }, + { + "siteRegistry": true, + "dateNoted": "2023-06-27", + "parcelID": "16268", + "crownLandUsePIN": "16737", + "crownLandFileNumber": "17095", + "landDescription": "LOT 1 OF LOT 5 BLOCK 5 DISTRICT LOT 3 PLAN 6737" + }, { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-09-13 (described on Site Profile dated 2014-09-13)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "dateNoted": "2022-09-18", + "parcelID": "15292", + "crownLandUsePIN": "19638", + "crownLandFileNumber": "20453", + "landDescription": "LOT 2 OF LOT 4 BLOCK 1 DISTRICT LOT 2 PLAN 4702" } ], "siteDisclosures": [ { "siteRegistry": false, - "dateReceived": "2014-05-17", - "dateCompleted": "2017-03-30", - "dateEntered": "2014-07-28", - "dateRegistrar": "2016-11-12", - "dateLocalAuthorityReceived": "2017-11-07", - "summary": "Error dolorum minus aperiam.\nVeritatis corporis adipisci aut nihil.", - "informationUsed": "Non consequuntur doloribus repudiandae.\nSit deserunt reiciendis vitae.\nDelectus deleniti doloribus sapiente consequatur recusandae excepturi animi deleniti.\nEarum culpa voluptatum reprehenderit animi.\nQuaerat modi voluptates quibusdam sint doloremque.", - "pastOrPresentOrders": "Veritatis quod quae ab accusamus dolorem deleniti suscipit repellat.", + "dateReceived": "2022-03-15", + "dateCompleted": "2023-07-14", + "dateEntered": "2018-09-18", + "dateRegistrar": "2016-10-31", + "dateLocalAuthorityReceived": "2013-11-21", + "summary": "Debitis dolore iure porro cumque ad eos.\nAut laborum quidem provident quos distinctio cumque soluta.\nDebitis ea doloribus aspernatur occaecati assumenda.", + "informationUsed": "Recusandae exercitationem molestiae hic ad aperiam perspiciatis laudantium.\nNisi libero at labore sunt minus.\nLaborum consequuntur nihil.", + "pastOrPresentOrders": "Eum sed facere facilis delectus sed delectus nostrum.", "commercialAndIndustrialPurposes": [ { - "scheduleReference": "F1*", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false }, { "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true } ] } @@ -23350,82 +26428,76 @@ { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "WEHNER JUDGE", - "timestamp": "2021-01-02" + "user": "GUSIKOWSKI ESPERANZA", + "timestamp": "2014-05-17" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "SPINKA ALISHA", - "timestamp": "2023-07-23" + "user": "TOY HENRY", + "timestamp": "2017-01-22" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "KESSLER ISMAEL", - "timestamp": "2018-02-08" - }, - { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "RUECKER HAZLE", - "timestamp": "2014-03-04" + "user": "PADBERG ALDEN", + "timestamp": "2014-11-06" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "HANSEN ELDRIDGE", - "timestamp": "2021-07-18" + "user": "WYMAN ALISA", + "timestamp": "2019-02-18" }, { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "GOTTLIEB MARIELA", - "timestamp": "2019-11-25" + "user": "DOOLEY ARIELLE", + "timestamp": "2022-05-27" } ], "associatedSites": [ { - "dateNoted": "2017-05-24", + "dateNoted": "2020-10-27", "notes": "", - "parcelID": "17029", - "siteID": "17480", + "parcelID": "19706", + "siteID": "20963", "siteRegistry": true }, { - "dateNoted": "2017-11-26", + "dateNoted": "2022-05-26", "notes": "", - "parcelID": "20934", - "siteID": "20554", + "parcelID": "15306", + "siteID": "17027", "siteRegistry": false } ] }, { - "uuid": "6fb6b79a-bdbc-4809-925e-787cd0973681", - "siteID": 15276, - "address": "994 Bret Divide", - "latitude": 48.1241, - "longitude": -126.8554, - "lastUpdated": "2019-09-11", - "city": "South Lura", - "region": "Kootenay", - "victoriaFile": "26250-20/4141", + "uuid": "c7fde3a8-039b-4382-995c-8c360d7f0923", + "siteID": 20707, + "address": "682 Elinore Unions", + "latitude": 56.7802, + "longitude": -133.8118, + "lastUpdated": "2022-05-25", + "city": "Sioux City", + "region": "Thompson-Okanagan", + "victoriaFile": "26250-20/2935", "regionalFile": "N/A", "parcelIDs": [ - 3407337, - 5599486, - 9531464, - 5726658, - 6103307 + 4733011, + 4058808, + 7105054, + 2276811, + 5815939 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2015-01-24", - "completed": "2021-02-07", - "initiated": "2017-09-09", - "ministryContact": "CARTER HILDA", + "createdAt": "2015-12-20", + "completed": "2021-08-06", + "initiated": "2019-05-20", + "ministryContact": "WEIMANN VINCENT", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -23436,21 +26508,26 @@ { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2015-05-28", - "completed": "2020-01-30", - "initiated": "2014-02-01", - "ministryContact": "STREICH-ROBEL PHYLLIS", + "createdAt": "2018-04-30", + "completed": "2022-03-12", + "initiated": "2016-12-27", + "ministryContact": "BINS ARMAND", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -23459,24 +26536,39 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false - }, + } + ], + "siteRegistry": false + }, + { + "createdAt": "2018-09-20", + "completed": "2020-02-04", + "initiated": "2017-01-04", + "ministryContact": "ZEMLAK ROSA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", @@ -23489,192 +26581,261 @@ ], "participants": [ { - "name": "IPSUM", - "endDate": "2019-12-18", - "startDate": "2019-05-12", + "name": "AMET, DOLOR SIT", + "endDate": "2013-11-28", + "startDate": "2022-10-09", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": true + "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", - "endDate": "2019-09-21", - "startDate": "2015-06-12", + "endDate": "2016-09-10", + "startDate": "2018-12-26", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false }, { - "name": "IPSUM", - "endDate": "2015-01-29", - "startDate": "2021-05-15", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2014-11-09", + "startDate": "2022-05-28", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": true + "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2014-10-10", - "startDate": "2016-05-20", + "name": "IPSUM", + "endDate": "2022-05-17", + "startDate": "2017-08-10", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2020-05-16", - "startDate": "2017-06-30", + "endDate": "2019-06-15", + "startDate": "2019-01-23", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false + } + ], + "suspectLandUses": [ + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2023-10-09 (described on Site Profile dated 2023-10-09)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2014-11-08 (described on Site Profile dated 2014-11-08)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], - "suspectLandUses": [ + "parcelDescriptions": [ + { + "siteRegistry": true, + "dateNoted": "2018-11-19", + "parcelID": "15273", + "crownLandUsePIN": "20275", + "crownLandFileNumber": "19954", + "landDescription": "LOT 3 OF LOT 4 BLOCK 2 DISTRICT LOT 1 PLAN 8335" + }, { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2020-02-17 (described on Site Profile dated 2020-02-17)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "dateNoted": "2023-09-07", + "parcelID": "17466", + "crownLandUsePIN": "17697", + "crownLandFileNumber": "20566", + "landDescription": "LOT 4 OF LOT 1 BLOCK 3 DISTRICT LOT 2 PLAN 4671" }, { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-07-30 (described on Site Profile dated 2022-07-30)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "dateNoted": "2019-05-23", + "parcelID": "16119", + "crownLandUsePIN": "18537", + "crownLandFileNumber": "20376", + "landDescription": "LOT 3 OF LOT 2 BLOCK 5 DISTRICT LOT 2 PLAN 4131" + }, + { + "siteRegistry": false, + "dateNoted": "2020-10-12", + "parcelID": "19786", + "crownLandUsePIN": "16534", + "crownLandFileNumber": "19379", + "landDescription": "LOT 3 OF LOT 5 BLOCK 5 DISTRICT LOT 1 PLAN 8735" + }, + { + "siteRegistry": false, + "dateNoted": "2014-07-26", + "parcelID": "15279", + "crownLandUsePIN": "19418", + "crownLandFileNumber": "16374", + "landDescription": "LOT 2 OF LOT 4 BLOCK 2 DISTRICT LOT 2 PLAN 6198" } ], "siteDisclosures": [ { "siteRegistry": true, - "dateReceived": "2018-10-08", - "dateCompleted": "2023-01-20", - "dateEntered": "2021-11-22", - "dateRegistrar": "2014-07-04", - "dateLocalAuthorityReceived": "2019-09-03", - "summary": "Aut fugiat doloremque natus.\nAt quo porro.\nAsperiores nemo cum.", - "informationUsed": "Blanditiis fuga autem quasi.\nA voluptas labore vel.\nDistinctio fuga ullam consectetur numquam.", - "pastOrPresentOrders": "Inventore cumque praesentium repudiandae molestiae quia illo.\nAliquid nesciunt veritatis numquam inventore quod distinctio.\nIure itaque incidunt.", + "dateReceived": "2022-08-26", + "dateCompleted": "2023-05-18", + "dateEntered": "2017-09-13", + "dateRegistrar": "2018-02-05", + "dateLocalAuthorityReceived": "2015-07-18", + "summary": "Perspiciatis rerum commodi natus vitae id quos.", + "informationUsed": "Unde nisi dicta explicabo voluptatibus magnam maiores.\nId tenetur vitae illo quis.\nCorporis ratione id aliquam recusandae rerum eveniet perspiciatis occaecati.\nVoluptate excepturi dolore labore incidunt illo.\nAliquid illo cum pariatur.", + "pastOrPresentOrders": "Quae molestiae id sed quibusdam repellat architecto accusamus.\nInventore amet ipsam beatae consequuntur corporis totam officia.", "commercialAndIndustrialPurposes": [ { - "scheduleReference": "F1*", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + } + ] + }, + { + "siteRegistry": true, + "dateReceived": "2014-12-31", + "dateCompleted": "2019-11-03", + "dateEntered": "2014-02-20", + "dateRegistrar": "2021-10-27", + "dateLocalAuthorityReceived": "2014-12-10", + "summary": "Corporis nesciunt in.\nOmnis occaecati facilis aspernatur sunt quaerat repudiandae nemo praesentium.\nPerferendis quos voluptatem vel omnis vitae eum earum ipsa.", + "informationUsed": "Temporibus suscipit eligendi molestias nemo.\nLabore eos tempora totam reprehenderit impedit.\nRepellendus porro porro architecto.\nDolorum accusantium deserunt esse cum autem blanditiis.\nEsse nobis libero qui.", + "pastOrPresentOrders": "Amet modi odio alias possimus.\nVeritatis minus labore corrupti vitae eius necessitatibus sint.\nSapiente sed culpa eos asperiores quas impedit illo facere.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false } ] } ], "activityLog": [ { - "siteRegistry": true, + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "CREMIN ELEONORE", - "timestamp": "2018-08-18" + "user": "HEIDENREICH GUS", + "timestamp": "2015-06-24" }, { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "KUVALIS SAMANTHA", - "timestamp": "2015-10-30" + "user": "SPENCER ARIC", + "timestamp": "2014-10-24" }, { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "WYMAN RACHELLE", - "timestamp": "2019-02-18" + "user": "RUNOLFSDOTTIR JESS", + "timestamp": "2021-08-19" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "SCHULIST ROCIO", - "timestamp": "2019-12-31" + "user": "STEUBER EDWARD", + "timestamp": "2022-03-15" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "DOYLE IDELL", - "timestamp": "2016-02-29" + "user": "FEIL MAXWELL", + "timestamp": "2018-10-10" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "ROHAN AHMED", - "timestamp": "2016-12-09" + "user": "FLATLEY CARLOS", + "timestamp": "2018-10-01" }, { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "LINDGREN CHARITY", - "timestamp": "2015-05-24" + "user": "BARTON ANTWON", + "timestamp": "2022-12-23" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "VEUM AHMAD", - "timestamp": "2016-08-15" + "user": "WITTING NAME", + "timestamp": "2016-04-17" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "CARTER AALIYAH", + "timestamp": "2013-12-14" } ], "associatedSites": [ { - "dateNoted": "2020-05-19", + "dateNoted": "2019-01-27", "notes": "", - "parcelID": "20162", - "siteID": "15864", + "parcelID": "16610", + "siteID": "20963", "siteRegistry": true }, { - "dateNoted": "2023-07-01", - "notes": "", - "parcelID": "18350", - "siteID": "15998", - "siteRegistry": false - }, - { - "dateNoted": "2017-11-01", + "dateNoted": "2018-01-13", "notes": "", - "parcelID": "20290", - "siteID": "17036", + "parcelID": "17790", + "siteID": "19051", "siteRegistry": true } ] }, { - "uuid": "7e812ea5-aebb-4715-840c-7ad3292b7736", - "siteID": 15706, - "address": "849 Kris Union", - "latitude": 58.0542, - "longitude": -124.2305, - "lastUpdated": "2016-02-24", - "city": "Germantown", + "uuid": "23067803-a7c4-4036-b977-6461dfc32816", + "siteID": 20018, + "address": "276 Langworth Overpass", + "latitude": 58.6501, + "longitude": -120.3265, + "lastUpdated": "2018-08-03", + "city": "Gutkowskiland", "region": "Vancouver Island/Coast", - "victoriaFile": "26250-20/18969", + "victoriaFile": "26250-20/10744", "regionalFile": "N/A", "parcelIDs": [ - 7240831, - 8630937, - 4891005, - 3039684, - 1640162 + 5884229, + 4759800, + 1134535, + 593784, + 8703083 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2017-08-05", - "completed": "2019-04-20", - "initiated": "2016-12-18", - "ministryContact": "RITCHIE FOSTER", + "createdAt": "2018-10-18", + "completed": "2019-06-26", + "initiated": "2023-01-30", + "ministryContact": "HARRIS RAQUEL", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -23682,20 +26843,10 @@ "" ], "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", @@ -23706,10 +26857,10 @@ "siteRegistry": false }, { - "createdAt": "2018-01-23", - "completed": "2017-03-19", - "initiated": "2018-10-21", - "ministryContact": "VON MORGAN", + "createdAt": "2020-10-12", + "completed": "2014-10-08", + "initiated": "2016-01-02", + "ministryContact": "JERDE SHAYNA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -23718,30 +26869,10 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - } - ], - "siteRegistry": true - }, - { - "createdAt": "2022-02-04", - "completed": "2020-10-05", - "initiated": "2023-05-27", - "ministryContact": "BARTON NED", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", @@ -23750,22 +26881,7 @@ { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false } ], "siteRegistry": true @@ -23773,205 +26889,224 @@ ], "participants": [ { - "name": "IPSUM", - "endDate": "2021-10-05", - "startDate": "2018-09-03", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2018-03-31", + "startDate": "2018-01-04", "notes": "", "roles": [ "ORGANIZATION" ], "siteRegistry": true }, - { - "name": "IPSUM", - "endDate": "2021-02-07", - "startDate": "2020-10-17", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": false - }, { "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2014-11-09", - "startDate": "2020-05-12", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": true - }, - { - "name": "AMET, DOLOR SIT", - "endDate": "2016-03-04", - "startDate": "2015-04-10", + "endDate": "2015-07-23", + "startDate": "2021-05-18", "notes": "", "roles": [ "EMPLOYEE" ], "siteRegistry": false - }, - { - "name": "AMET, DOLOR SIT", - "endDate": "2020-03-26", - "startDate": "2019-03-17", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": true } ], "suspectLandUses": [ { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-12-08 (described on Site Profile dated 2021-12-08)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2023-07-29 (described on Site Profile dated 2023-07-29)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-01-18 (described on Site Profile dated 2021-01-18)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" - }, + "notes": "INSERTED FOR SITE PROFILE DATED 2019-04-14 (described on Site Profile dated 2019-04-14)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + } + ], + "parcelDescriptions": [ { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-01-30 (described on Site Profile dated 2016-01-30)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "dateNoted": "2023-04-07", + "parcelID": "17005", + "crownLandUsePIN": "20450", + "crownLandFileNumber": "16674", + "landDescription": "LOT 5 OF LOT 2 BLOCK 2 DISTRICT LOT 5 PLAN 3403" }, { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-01-18 (described on Site Profile dated 2018-01-18)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" - }, - { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-12-23 (described on Site Profile dated 2018-12-23)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "dateNoted": "2016-02-17", + "parcelID": "20499", + "crownLandUsePIN": "19291", + "crownLandFileNumber": "18667", + "landDescription": "LOT 2 OF LOT 3 BLOCK 4 DISTRICT LOT 1 PLAN 9043" } ], "siteDisclosures": [ { - "siteRegistry": false, - "dateReceived": "2014-03-16", - "dateCompleted": "2019-01-05", - "dateEntered": "2023-04-30", - "dateRegistrar": "2022-09-28", - "dateLocalAuthorityReceived": "2015-11-02", - "summary": "Nemo esse voluptatibus ut minus facilis iure iusto doloremque.\nAlias quia corporis eum animi debitis qui velit soluta maiores.", - "informationUsed": "Debitis nemo dolorem.\nId cupiditate fugit repellendus a eligendi cumque nemo commodi.\nIpsam ullam molestiae exercitationem laboriosam.\nLibero odio nesciunt molestiae amet repellendus quaerat magni repellendus earum.", - "pastOrPresentOrders": "Dicta quae consequatur labore.\nSint laudantium repudiandae placeat labore dolorem dolores.\nNemo animi sunt dicta consequatur omnis dolores.", + "siteRegistry": true, + "dateReceived": "2015-07-21", + "dateCompleted": "2021-04-25", + "dateEntered": "2019-10-03", + "dateRegistrar": "2014-09-26", + "dateLocalAuthorityReceived": "2020-04-08", + "summary": "Ducimus autem unde error maxime molestiae libero occaecati.", + "informationUsed": "Libero sequi deleniti.\nTempore sit consequuntur.\nQuo illo cumque cumque cupiditate quam repellat.\nNecessitatibus voluptatum accusantium.", + "pastOrPresentOrders": "Nisi tenetur nulla ex quos.\nAccusamus odio maxime officia ipsum non mollitia.", "commercialAndIndustrialPurposes": [ { - "scheduleReference": "F2*", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + } + ] + }, + { + "siteRegistry": false, + "dateReceived": "2017-10-20", + "dateCompleted": "2020-05-11", + "dateEntered": "2015-09-02", + "dateRegistrar": "2022-11-24", + "dateLocalAuthorityReceived": "2022-02-11", + "summary": "Assumenda incidunt commodi maxime ratione.\nOccaecati mollitia alias aperiam.", + "informationUsed": "Quam tenetur praesentium assumenda.\nLabore iste similique accusantium ea voluptates.\nEst suscipit corrupti amet consequatur voluptatem.\nUllam pariatur ex.", + "pastOrPresentOrders": "Asperiores nesciunt doloribus praesentium dicta voluptas dolorem optio praesentium error.\nVoluptatem dignissimos debitis corporis maiores mollitia odio.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false } ] } ], "activityLog": [ - { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "HODKIEWICZ DOMENIC", - "timestamp": "2021-11-21" - }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "MORAR LIBBY", - "timestamp": "2016-03-13" + "user": "REICHERT ELTON", + "timestamp": "2017-08-18" }, { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "HALVORSON LUTHER", - "timestamp": "2017-04-15" + "user": "SENGER MARGARETT", + "timestamp": "2014-01-21" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "FISHER DECLAN", - "timestamp": "2019-12-16" + "user": "KLEIN HARDY", + "timestamp": "2023-08-23" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "BERGSTROM CARRIE", - "timestamp": "2014-03-31" + "user": "SMITHAM KIERAN", + "timestamp": "2017-07-04" }, { - "siteRegistry": true, + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "SCHAMBERGER MERLE", - "timestamp": "2022-03-07" + "user": "GLEICHNER LETHA", + "timestamp": "2019-06-18" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "JOHNSON ROSEMARIE", - "timestamp": "2020-03-23" + "user": "TROMP KELLEN", + "timestamp": "2018-11-20" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "DANIEL BRICE", - "timestamp": "2022-04-19" + "user": "MOORE REAGAN", + "timestamp": "2017-07-09" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "ZBONCAK LINCOLN", - "timestamp": "2016-07-26" + "user": "GIBSON IVORY", + "timestamp": "2016-03-15" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "WISOKY JASEN", - "timestamp": "2016-07-07" + "user": "JACOBI CARLOTTA", + "timestamp": "2020-08-08" } ], "associatedSites": [ { - "dateNoted": "2021-11-19", + "dateNoted": "2023-04-03", + "notes": "", + "parcelID": "15568", + "siteID": "15630", + "siteRegistry": false + }, + { + "dateNoted": "2016-11-12", + "notes": "", + "parcelID": "20713", + "siteID": "15493", + "siteRegistry": true + }, + { + "dateNoted": "2017-05-05", "notes": "", - "parcelID": "18897", - "siteID": "17155", + "parcelID": "16257", + "siteID": "19587", "siteRegistry": false } ] }, { - "uuid": "a315add7-e277-435e-a2d8-fc9b5759ac52", - "siteID": 17810, - "address": "400 Crystel Mountains", - "latitude": 53.8025, - "longitude": -128.5708, - "lastUpdated": "2015-08-12", - "city": "Bergnaumchester", - "region": "Vancouver Island/Coast", - "victoriaFile": "26250-20/4796", + "uuid": "9ff3a8a3-a40a-4900-9693-ca3e224c04dc", + "siteID": 17387, + "address": "1698 Braun Rapid", + "latitude": 53.1788, + "longitude": -120.6176, + "lastUpdated": "2014-09-07", + "city": "Labadieport", + "region": "Cariboo", + "victoriaFile": "26250-20/11155", "regionalFile": "N/A", "parcelIDs": [ - 3558860, - 2437075, - 4163224, - 5024135, - 5463814 + 1865404, + 8132971, + 6702652, + 2282638, + 1965408 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2016-04-19", - "completed": "2020-01-04", - "initiated": "2021-08-25", - "ministryContact": "JOHNSON ANDRE", + "createdAt": "2021-03-29", + "completed": "2021-07-17", + "initiated": "2016-05-07", + "ministryContact": "LANGOSH-KRAJCIK LIONEL", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -23985,62 +27120,12 @@ "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - } - ], - "siteRegistry": true - }, - { - "createdAt": "2017-09-15", - "completed": "2022-03-08", - "initiated": "2014-02-16", - "ministryContact": "MILLER KELLIE", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true - } - ], - "siteRegistry": false - }, - { - "createdAt": "2021-05-01", - "completed": "2021-04-30", - "initiated": "2023-06-06", - "ministryContact": "RAYNOR YASMEEN", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true } @@ -24048,10 +27133,10 @@ "siteRegistry": true }, { - "createdAt": "2021-12-11", - "completed": "2016-02-10", - "initiated": "2019-11-27", - "ministryContact": "CRIST DEVIN", + "createdAt": "2014-03-12", + "completed": "2022-09-16", + "initiated": "2020-07-27", + "ministryContact": "BERGE DANGELO", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -24060,9 +27145,9 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", @@ -24072,70 +27157,35 @@ { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false } ], "participants": [ - { - "name": "AMET, DOLOR SIT", - "endDate": "2019-01-08", - "startDate": "2022-12-19", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": false - }, { "name": "SHELL CANADA PRODUCTS", - "endDate": "2017-05-14", - "startDate": "2021-10-12", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": true - }, - { - "name": "AMET, DOLOR SIT", - "endDate": "2014-08-27", - "startDate": "2022-11-15", + "endDate": "2023-07-29", + "startDate": "2016-09-16", "notes": "", "roles": [ "ORGANIZATION" ], "siteRegistry": false }, - { - "name": "AMET, DOLOR SIT", - "endDate": "2014-07-17", - "startDate": "2019-10-10", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": true - }, { "name": "IPSUM", - "endDate": "2023-08-12", - "startDate": "2022-07-28", + "endDate": "2015-08-21", + "startDate": "2016-11-29", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": true } @@ -24143,46 +27193,72 @@ "suspectLandUses": [ { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2020-09-02 (described on Site Profile dated 2020-09-02)", + "notes": "INSERTED FOR SITE PROFILE DATED 2015-06-19 (described on Site Profile dated 2015-06-19)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-03-18 (described on Site Profile dated 2017-03-18)", + "notes": "INSERTED FOR SITE PROFILE DATED 2016-11-17 (described on Site Profile dated 2016-11-17)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-01-20 (described on Site Profile dated 2015-01-20)", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2016-02-04 (described on Site Profile dated 2016-02-04)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-07-22 (described on Site Profile dated 2021-07-22)", + "notes": "INSERTED FOR SITE PROFILE DATED 2023-08-10 (described on Site Profile dated 2023-08-10)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + } + ], + "parcelDescriptions": [ + { + "siteRegistry": true, + "dateNoted": "2020-06-22", + "parcelID": "19670", + "crownLandUsePIN": "19234", + "crownLandFileNumber": "16746", + "landDescription": "LOT 1 OF LOT 3 BLOCK 4 DISTRICT LOT 3 PLAN 8628" }, { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-08-22 (described on Site Profile dated 2018-08-22)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "siteRegistry": true, + "dateNoted": "2016-11-13", + "parcelID": "17651", + "crownLandUsePIN": "20392", + "crownLandFileNumber": "18971", + "landDescription": "LOT 3 OF LOT 3 BLOCK 3 DISTRICT LOT 3 PLAN 7066" + }, + { + "siteRegistry": true, + "dateNoted": "2019-02-18", + "parcelID": "18529", + "crownLandUsePIN": "16436", + "crownLandFileNumber": "19413", + "landDescription": "LOT 5 OF LOT 3 BLOCK 3 DISTRICT LOT 2 PLAN 3882" } ], "siteDisclosures": [ { - "siteRegistry": true, - "dateReceived": "2018-07-18", - "dateCompleted": "2017-01-10", - "dateEntered": "2019-12-30", - "dateRegistrar": "2023-07-29", - "dateLocalAuthorityReceived": "2022-12-27", - "summary": "Mollitia perferendis eius esse neque dolorum aliquam ab voluptates.\nNemo nostrum perferendis ab molestiae quo.", - "informationUsed": "Iusto quod neque iure sint pariatur dolore eum consequuntur.\nVoluptates aperiam in asperiores.\nHarum corporis ducimus laudantium assumenda neque.", - "pastOrPresentOrders": "Alias molestiae nulla in sint nulla doloribus eaque autem perferendis.\nHarum eum natus aspernatur esse aliquam recusandae quas.", + "siteRegistry": false, + "dateReceived": "2018-08-09", + "dateCompleted": "2023-01-01", + "dateEntered": "2021-05-30", + "dateRegistrar": "2017-04-17", + "dateLocalAuthorityReceived": "2014-05-29", + "summary": "Occaecati quidem debitis repudiandae quis qui modi ad incidunt.", + "informationUsed": "Velit explicabo libero modi repellendus quas modi perspiciatis repellendus.\nSed similique rerum suscipit rem magni.\nMolestiae facere nostrum velit soluta.\nTemporibus at voluptatum iure quos.\nNihil quis fuga recusandae corporis eaque eius placeat quidem.", + "pastOrPresentOrders": "Excepturi harum dolores aperiam rerum odio magnam.", "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, { "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true + "siteRegistry": false }, { "scheduleReference": "F1*", @@ -24190,146 +27266,129 @@ "siteRegistry": false }, { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false } ] }, { "siteRegistry": false, - "dateReceived": "2019-06-18", - "dateCompleted": "2016-10-11", - "dateEntered": "2021-03-06", - "dateRegistrar": "2021-09-16", - "dateLocalAuthorityReceived": "2016-10-19", - "summary": "Aperiam numquam ex mollitia consectetur.", - "informationUsed": "Iure nostrum voluptate culpa reprehenderit corrupti natus.\nLaboriosam adipisci rem a architecto assumenda molestias est quo.\nVitae cupiditate iusto occaecati repellat consectetur porro facilis ad.", - "pastOrPresentOrders": "Debitis quia quae minus itaque laborum facere perferendis.\nQuos mollitia commodi dolor necessitatibus dolorum neque non ad.\nRem repellendus neque architecto aspernatur accusamus nam.", + "dateReceived": "2015-03-22", + "dateCompleted": "2019-10-23", + "dateEntered": "2019-08-27", + "dateRegistrar": "2014-02-11", + "dateLocalAuthorityReceived": "2023-06-23", + "summary": "Consequuntur animi non laudantium numquam labore.\nAsperiores dignissimos rerum commodi voluptatibus.\nQuas ducimus reiciendis beatae.", + "informationUsed": "Dignissimos at molestias.\nProvident exercitationem officia omnis ipsa recusandae optio.\nCulpa beatae nemo maxime commodi iure.\nMaiores mollitia numquam corporis tenetur.", + "pastOrPresentOrders": "Explicabo sit et aliquid illum molestiae eaque illo labore culpa.\nPerspiciatis aliquid deleniti.\nEius nemo repellat repellendus error.", "commercialAndIndustrialPurposes": [ { - "scheduleReference": "F2*", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true - }, - { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true + "siteRegistry": false } ] } ], "activityLog": [ - { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "ROWE MINA", - "timestamp": "2021-04-19" - }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "WISOKY KAYCEE", - "timestamp": "2022-03-10" + "user": "JAST BRETT", + "timestamp": "2020-07-02" }, { - "siteRegistry": true, + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "PARKER RICHIE", - "timestamp": "2016-06-29" + "user": "KLOCKO VERNON", + "timestamp": "2021-04-05" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "HAMMES CAROLANNE", - "timestamp": "2019-02-01" + "user": "GLOVER ALEXANDREA", + "timestamp": "2015-11-21" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "BATZ ALEXANDER", - "timestamp": "2018-07-27" + "user": "GLOVER AIDA", + "timestamp": "2019-08-15" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "ROLFSON ALBIN", - "timestamp": "2015-05-23" - }, - { - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "GULGOWSKI ERICKA", - "timestamp": "2022-10-28" + "user": "MEDHURST TYLER", + "timestamp": "2023-07-24" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "FRIESEN ADRIAN", - "timestamp": "2014-01-21" + "user": "BAUMBACH-REICHEL CAMILLE", + "timestamp": "2023-09-24" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "METZ LULA", - "timestamp": "2023-06-13" + "user": "POWLOWSKI CHEYANNE", + "timestamp": "2014-12-06" } ], "associatedSites": [ { - "dateNoted": "2015-11-17", + "dateNoted": "2021-09-08", "notes": "", - "parcelID": "19930", - "siteID": "16504", + "parcelID": "18658", + "siteID": "19290", "siteRegistry": false }, { - "dateNoted": "2021-12-07", + "dateNoted": "2015-09-22", "notes": "", - "parcelID": "18364", - "siteID": "19078", + "parcelID": "17209", + "siteID": "19914", "siteRegistry": true }, { - "dateNoted": "2022-06-10", + "dateNoted": "2014-05-23", "notes": "", - "parcelID": "15761", - "siteID": "15889", + "parcelID": "17477", + "siteID": "16890", "siteRegistry": false } ] }, { - "uuid": "b5ce849e-a35c-4062-b085-f3632513fafa", - "siteID": 17450, - "address": "3444 Ratke Passage", - "latitude": 56.2297, - "longitude": -131.3254, - "lastUpdated": "2019-08-23", - "city": "Jaredcester", - "region": "Kootenay", - "victoriaFile": "26250-20/11863", + "uuid": "eb547c49-3bf7-4984-85ec-de933d7d70ae", + "siteID": 18001, + "address": "904 Kemmer Rue", + "latitude": 55.8528, + "longitude": -129.9276, + "lastUpdated": "2020-07-29", + "city": "Midwest City", + "region": "Thompson-Okanagan", + "victoriaFile": "26250-20/7768", "regionalFile": "N/A", "parcelIDs": [ - 1527837, - 9572028, - 2022666, - 431203, - 7789220 + 9419456, + 8180384, + 9735077, + 2529829, + 9196384 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2020-04-08", - "completed": "2023-06-30", - "initiated": "2021-01-25", - "ministryContact": "KOCH CAMDEN", + "createdAt": "2015-02-16", + "completed": "2018-12-06", + "initiated": "2016-04-28", + "ministryContact": "HILLL LAMONT", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -24343,34 +27402,14 @@ "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - } - ], - "siteRegistry": false - }, - { - "createdAt": "2023-06-15", - "completed": "2018-12-16", - "initiated": "2018-08-17", - "ministryContact": "HAGENES DWIGHT", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false + "role": "SUBMITTED BY", + "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", @@ -24381,10 +27420,10 @@ "siteRegistry": true }, { - "createdAt": "2023-02-07", - "completed": "2019-02-03", - "initiated": "2017-10-02", - "ministryContact": "YOST GUISEPPE", + "createdAt": "2013-12-21", + "completed": "2016-07-25", + "initiated": "2020-08-01", + "ministryContact": "SIPES GRACE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -24394,7 +27433,12 @@ "notationParticipants": [ { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": false }, { @@ -24403,7 +27447,7 @@ "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false } @@ -24411,10 +27455,10 @@ "siteRegistry": true }, { - "createdAt": "2018-08-03", - "completed": "2022-07-11", - "initiated": "2013-11-19", - "ministryContact": "GREENFELDER MARYAM", + "createdAt": "2014-07-10", + "completed": "2019-05-05", + "initiated": "2018-01-18", + "ministryContact": "NICOLAS BRENDAN", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -24422,25 +27466,35 @@ "" ], "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false } ], "participants": [ { "name": "AMET, DOLOR SIT", - "endDate": "2020-08-26", - "startDate": "2018-12-14", + "endDate": "2019-05-08", + "startDate": "2015-04-09", "notes": "", "roles": [ "ORGANIZATION" @@ -24448,19 +27502,19 @@ "siteRegistry": false }, { - "name": "IPSUM", - "endDate": "2020-12-23", - "startDate": "2019-06-07", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2014-03-10", + "startDate": "2023-02-05", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false }, { - "name": "AMET, DOLOR SIT", - "endDate": "2014-03-03", - "startDate": "2016-05-08", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2022-01-28", + "startDate": "2017-02-17", "notes": "", "roles": [ "ORGANIZATION" @@ -24468,102 +27522,90 @@ "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2017-01-01", - "startDate": "2021-06-11", + "name": "IPSUM", + "endDate": "2022-09-07", + "startDate": "2020-11-02", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2022-08-07", - "startDate": "2013-10-14", - "notes": "", - "roles": [ - "ORGANIZATION" - ], "siteRegistry": false } ], "suspectLandUses": [ { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2020-05-20 (described on Site Profile dated 2020-05-20)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "notes": "INSERTED FOR SITE PROFILE DATED 2017-06-05 (described on Site Profile dated 2017-06-05)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-09-19 (described on Site Profile dated 2022-09-19)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2017-09-13 (described on Site Profile dated 2017-09-13)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2015-06-08 (described on Site Profile dated 2015-06-08)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + } + ], + "parcelDescriptions": [ { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-12-27 (described on Site Profile dated 2016-12-27)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "dateNoted": "2020-07-18", + "parcelID": "19301", + "crownLandUsePIN": "16166", + "crownLandFileNumber": "20472", + "landDescription": "LOT 5 OF LOT 4 BLOCK 4 DISTRICT LOT 1 PLAN 7967" }, { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2013-12-08 (described on Site Profile dated 2013-12-08)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "dateNoted": "2021-02-21", + "parcelID": "19103", + "crownLandUsePIN": "20773", + "crownLandFileNumber": "15242", + "landDescription": "LOT 1 OF LOT 4 BLOCK 3 DISTRICT LOT 4 PLAN 4793" }, { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-09-04 (described on Site Profile dated 2014-09-04)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "dateNoted": "2018-05-31", + "parcelID": "18084", + "crownLandUsePIN": "19273", + "crownLandFileNumber": "15402", + "landDescription": "LOT 2 OF LOT 5 BLOCK 4 DISTRICT LOT 5 PLAN 5706" } ], "siteDisclosures": [ { "siteRegistry": false, - "dateReceived": "2023-09-27", - "dateCompleted": "2020-01-17", - "dateEntered": "2021-05-09", - "dateRegistrar": "2021-07-20", - "dateLocalAuthorityReceived": "2017-08-15", - "summary": "Ipsa vero eaque quos odit.", - "informationUsed": "Debitis natus cupiditate.\nLaudantium quos nam aperiam eius hic.\nQuam occaecati molestiae repudiandae nulla.\nQuo unde tempora.\nCommodi quaerat voluptatum eligendi quidem.", - "pastOrPresentOrders": "Blanditiis rem occaecati nostrum rem.\nVoluptate impedit architecto dolorem ex beatae facilis.", + "dateReceived": "2014-11-01", + "dateCompleted": "2018-07-03", + "dateEntered": "2023-07-11", + "dateRegistrar": "2016-12-08", + "dateLocalAuthorityReceived": "2015-03-10", + "summary": "Itaque neque consectetur quia alias iste hic cumque odit laborum.", + "informationUsed": "Quos minus asperiores dolor neque pariatur harum.\nExplicabo facere ex deleniti.\nIpsa quisquam ad in modi deserunt consequuntur.\nOptio tenetur corporis natus esse odit.\nNisi fugiat earum libero modi in error sequi numquam magnam.", + "pastOrPresentOrders": "Consequatur porro quos provident at.", "commercialAndIndustrialPurposes": [ - { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true - }, { "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true - } - ] - }, - { - "siteRegistry": true, - "dateReceived": "2016-04-17", - "dateCompleted": "2023-04-26", - "dateEntered": "2020-11-20", - "dateRegistrar": "2014-10-28", - "dateLocalAuthorityReceived": "2022-09-21", - "summary": "Aspernatur nihil odit nemo consequuntur quibusdam est.\nNesciunt aliquid exercitationem.\nDolore deleniti minima.", - "informationUsed": "Voluptas culpa saepe dicta quidem officiis animi sapiente.\nVel aperiam minima occaecati hic.\nSaepe maxime autem quasi dolorum temporibus quis.\nMaiores aspernatur id alias.", - "pastOrPresentOrders": "Cum et cum quae itaque cum.\nEst commodi non porro nulla excepturi.", - "commercialAndIndustrialPurposes": [ + }, { "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true }, { - "scheduleReference": "F2*", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false } ] } @@ -24572,76 +27614,89 @@ { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "MITCHELL WILLARD", - "timestamp": "2018-12-06" + "user": "SCHOEN WESTLEY", + "timestamp": "2015-04-18" }, { - "siteRegistry": true, + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "FRIESEN TAYLOR", - "timestamp": "2023-03-10" + "user": "BERNHARD ROMAN", + "timestamp": "2019-05-15" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "QUIGLEY ROSELLA", + "timestamp": "2020-02-10" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "ROHAN HERMINA", - "timestamp": "2023-09-12" + "user": "FERRY FEDERICO", + "timestamp": "2023-10-03" }, { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "SMITHAM ALDA", - "timestamp": "2014-01-31" + "user": "GULGOWSKI KAELYN", + "timestamp": "2021-09-20" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "BARROWS GRETA", - "timestamp": "2023-10-01" + "user": "WATSICA KOBE", + "timestamp": "2017-04-15" } ], "associatedSites": [ { - "dateNoted": "2022-02-14", + "dateNoted": "2013-11-10", "notes": "", - "parcelID": "18818", - "siteID": "19985", + "parcelID": "18771", + "siteID": "19235", "siteRegistry": true }, { - "dateNoted": "2019-07-03", + "dateNoted": "2018-10-30", "notes": "", - "parcelID": "18811", - "siteID": "19013", + "parcelID": "20351", + "siteID": "18770", "siteRegistry": true + }, + { + "dateNoted": "2016-07-11", + "notes": "", + "parcelID": "18319", + "siteID": "17951", + "siteRegistry": false } ] }, { - "uuid": "719f14bf-59a8-4256-9ac8-a1a1b7154084", - "siteID": 15262, - "address": "5556 Clotilde Fall", - "latitude": 55.5701, - "longitude": -124.0945, - "lastUpdated": "2014-10-05", - "city": "Kosschester", + "uuid": "8488aed5-0c88-47fb-8ca3-7d467ca2c004", + "siteID": 17483, + "address": "770 Dana Rest", + "latitude": 49.4753, + "longitude": -127.3122, + "lastUpdated": "2014-11-23", + "city": "North Tremayne", "region": "Vancouver Island/Coast", - "victoriaFile": "26250-20/16255", + "victoriaFile": "26250-20/13594", "regionalFile": "N/A", "parcelIDs": [ - 4560440, - 9269341, - 8539958, - 7856658, - 5322716 + 9590807, + 9154774, + 8337456, + 3706474, + 3695771 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2022-12-31", - "completed": "2020-05-15", - "initiated": "2022-04-27", - "ministryContact": "MRAZ JANICK", + "createdAt": "2014-10-01", + "completed": "2018-08-17", + "initiated": "2017-01-21", + "ministryContact": "RUSSEL JANAE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -24649,6 +27704,11 @@ "" ], "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", @@ -24657,26 +27717,51 @@ { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "createdAt": "2017-12-06", + "completed": "2021-05-10", + "initiated": "2015-11-22", + "ministryContact": "RUNOLFSSON ANTOINETTE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false } ], "siteRegistry": true }, { - "createdAt": "2020-11-22", - "completed": "2022-02-15", - "initiated": "2015-03-11", - "ministryContact": "CUMMERATA HAL", + "createdAt": "2013-11-12", + "completed": "2015-06-01", + "initiated": "2018-06-04", + "ministryContact": "ERNSER ELSE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -24685,13 +27770,38 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "createdAt": "2017-12-12", + "completed": "2019-02-06", + "initiated": "2017-09-28", + "ministryContact": "DONNELLY CANDIDA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", "siteRegistry": false }, { @@ -24700,18 +27810,18 @@ "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true } ], "siteRegistry": false }, { - "createdAt": "2015-12-01", - "completed": "2022-03-22", - "initiated": "2020-07-03", - "ministryContact": "BAUCH CHELSIE", + "createdAt": "2014-03-22", + "completed": "2015-09-12", + "initiated": "2015-02-28", + "ministryContact": "MORISSETTE DELPHA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -24720,12 +27830,12 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true } @@ -24736,93 +27846,132 @@ "participants": [ { "name": "IPSUM", - "endDate": "2023-05-17", - "startDate": "2020-12-29", + "endDate": "2016-10-31", + "startDate": "2021-07-14", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": false + "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2022-11-19", - "startDate": "2023-09-01", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2023-05-15", + "startDate": "2018-09-22", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": true + "siteRegistry": false + } + ], + "suspectLandUses": [ + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2021-07-07 (described on Site Profile dated 2021-07-07)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "name": "AMET, DOLOR SIT", - "endDate": "2021-11-22", - "startDate": "2018-04-26", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": false + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2014-12-04 (described on Site Profile dated 2014-12-04)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2018-01-21", - "startDate": "2020-12-04", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": false + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2015-11-18 (described on Site Profile dated 2015-11-18)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "name": "AMET, DOLOR SIT", - "endDate": "2022-08-24", - "startDate": "2023-05-24", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": false + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2017-04-29 (described on Site Profile dated 2017-04-29)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], - "suspectLandUses": [ + "parcelDescriptions": [ { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-04-16 (described on Site Profile dated 2015-04-16)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "dateNoted": "2022-03-09", + "parcelID": "19431", + "crownLandUsePIN": "19916", + "crownLandFileNumber": "15241", + "landDescription": "LOT 1 OF LOT 4 BLOCK 1 DISTRICT LOT 4 PLAN 9453" }, { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-07-04 (described on Site Profile dated 2016-07-04)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "dateNoted": "2016-01-09", + "parcelID": "19459", + "crownLandUsePIN": "15570", + "crownLandFileNumber": "20577", + "landDescription": "LOT 3 OF LOT 1 BLOCK 1 DISTRICT LOT 2 PLAN 6572" }, { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-10-26 (described on Site Profile dated 2014-10-26)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "dateNoted": "2016-04-10", + "parcelID": "18615", + "crownLandUsePIN": "16199", + "crownLandFileNumber": "18959", + "landDescription": "LOT 2 OF LOT 4 BLOCK 2 DISTRICT LOT 4 PLAN 4346" } ], "siteDisclosures": [ { - "siteRegistry": false, - "dateReceived": "2017-06-25", - "dateCompleted": "2022-11-26", - "dateEntered": "2019-06-15", - "dateRegistrar": "2023-01-07", - "dateLocalAuthorityReceived": "2016-10-11", - "summary": "Qui nobis provident nobis quam impedit.", - "informationUsed": "Nostrum dolor consectetur sunt minima cupiditate quia reprehenderit sapiente.\nCulpa doloribus veniam quae officiis.\nFacere nobis dolore minus deleniti blanditiis soluta perferendis tenetur a.\nQuidem magni officia nemo.", - "pastOrPresentOrders": "Maiores earum velit dignissimos.\nVoluptates nesciunt aperiam hic deserunt impedit aspernatur explicabo voluptatem.\nNobis autem quia.", + "siteRegistry": true, + "dateReceived": "2015-08-27", + "dateCompleted": "2021-12-18", + "dateEntered": "2014-11-03", + "dateRegistrar": "2013-11-20", + "dateLocalAuthorityReceived": "2022-04-25", + "summary": "Ipsum laborum eligendi qui et quis deserunt officiis exercitationem eligendi.", + "informationUsed": "Occaecati necessitatibus eveniet animi amet.\nOdio veritatis nihil suscipit ipsam error iste.\nQuasi reprehenderit ducimus.", + "pastOrPresentOrders": "Maiores hic atque consequatur laborum sequi sit in.", "commercialAndIndustrialPurposes": [ { "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + } + ] + }, + { + "siteRegistry": true, + "dateReceived": "2014-09-18", + "dateCompleted": "2022-11-04", + "dateEntered": "2020-11-12", + "dateRegistrar": "2016-11-30", + "dateLocalAuthorityReceived": "2021-12-12", + "summary": "Rem laborum temporibus praesentium voluptas aut animi autem praesentium.\nIure nisi excepturi officiis iste vitae eos quia.", + "informationUsed": "Accusantium voluptatum voluptas quaerat nisi deleniti ipsa nobis molestias quod.\nOmnis voluptates ipsa modi.\nQuasi accusamus hic officiis ratione beatae.\nIllum eum culpa nihil nam.\nTotam cumque magni tenetur quia cumque rem pariatur minus.", + "pastOrPresentOrders": "Vel animi itaque repellendus saepe dolore voluptas.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false } ] } @@ -24831,81 +27980,101 @@ { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "CARROLL MAKAYLA", - "timestamp": "2014-10-26" + "user": "STEUBER JOSIANE", + "timestamp": "2016-11-04" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "LEDNER MOLLY", + "timestamp": "2016-04-06" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "CORKERY LILIANA", - "timestamp": "2019-10-26" + "user": "ROMAGUERA EARLINE", + "timestamp": "2016-12-21" }, { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "MCCLURE GLORIA", - "timestamp": "2021-11-16" + "user": "DAVIS LAVONNE", + "timestamp": "2021-07-23" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "JOHNSTON REMINGTON", - "timestamp": "2022-06-26" + "user": "ROGAHN BETHANY", + "timestamp": "2014-08-29" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "KOEPP AXEL", - "timestamp": "2017-12-13" + "user": "WISOKY VIRGINIA", + "timestamp": "2014-01-10" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "JOHNSON ISAC", - "timestamp": "2019-10-10" + "user": "TORPHY KARINE", + "timestamp": "2023-04-13" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "MANN ABIGALE", - "timestamp": "2014-01-26" + "user": "HINTZ ARDEN", + "timestamp": "2016-04-02" } ], "associatedSites": [ { - "dateNoted": "2014-08-21", + "dateNoted": "2015-05-24", "notes": "", - "parcelID": "17114", - "siteID": "17309", + "parcelID": "19952", + "siteID": "20424", "siteRegistry": true + }, + { + "dateNoted": "2020-11-22", + "notes": "", + "parcelID": "19842", + "siteID": "15211", + "siteRegistry": false + }, + { + "dateNoted": "2022-04-13", + "notes": "", + "parcelID": "18233", + "siteID": "16253", + "siteRegistry": false } ] }, { - "uuid": "cc1bcd26-5cb8-4959-8505-6976188ce50b", - "siteID": 16157, - "address": "3618 Runolfsdottir Plains", - "latitude": 50.3661, - "longitude": -132.7114, - "lastUpdated": "2017-02-01", - "city": "West Jacky", - "region": "Mainland/Southwest", - "victoriaFile": "26250-20/18136", + "uuid": "030710aa-0558-46c5-8104-b38a2bf00036", + "siteID": 20886, + "address": "72029 Hahn Brook", + "latitude": 49.3788, + "longitude": -138.4547, + "lastUpdated": "2023-04-02", + "city": "Pourosborough", + "region": " North Coast", + "victoriaFile": "26250-20/7857", "regionalFile": "N/A", "parcelIDs": [ - 7821555, - 7520964, - 9236900, - 6454355, - 5759307 + 5043105, + 8356588, + 4487158, + 8004690, + 5189366 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2017-03-11", - "completed": "2019-09-10", - "initiated": "2018-02-02", - "ministryContact": "LESCH MELYSSA", + "createdAt": "2018-06-14", + "completed": "2014-04-11", + "initiated": "2019-06-23", + "ministryContact": "GOLDNER CONNIE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -24914,23 +28083,38 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": false } ], "siteRegistry": true }, { - "createdAt": "2020-11-20", - "completed": "2015-05-12", - "initiated": "2015-08-30", - "ministryContact": "HAMMES HERMANN", + "createdAt": "2016-06-11", + "completed": "2015-08-22", + "initiated": "2014-10-13", + "ministryContact": "D'AMORE FILOMENA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -24938,19 +28122,9 @@ "" ], "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, { "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true }, { @@ -24960,17 +28134,17 @@ }, { "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2014-12-11", - "completed": "2021-05-24", - "initiated": "2014-11-26", - "ministryContact": "GREEN ROD", + "createdAt": "2020-03-13", + "completed": "2014-03-03", + "initiated": "2017-05-25", + "ministryContact": "BAUCH ANNABELLE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -24979,33 +28153,23 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true } ], "siteRegistry": false }, { - "createdAt": "2019-01-18", - "completed": "2018-07-04", - "initiated": "2022-11-11", - "ministryContact": "WILL THAD", + "createdAt": "2014-10-09", + "completed": "2014-09-30", + "initiated": "2019-11-06", + "ministryContact": "DICKINSON ASIA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -25014,28 +28178,38 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2022-12-11", - "completed": "2017-05-08", - "initiated": "2017-11-21", - "ministryContact": "LITTEL LESSIE", + "createdAt": "2013-12-29", + "completed": "2020-04-03", + "initiated": "2017-01-17", + "ministryContact": "HEGMANN BLAZE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -25044,54 +28218,54 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false } ], "participants": [ { "name": "AMET, DOLOR SIT", - "endDate": "2014-12-20", - "startDate": "2015-10-20", + "endDate": "2023-01-08", + "startDate": "2022-01-09", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2013-12-17", - "startDate": "2015-10-02", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": true + "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", - "endDate": "2021-01-31", - "startDate": "2017-12-15", + "endDate": "2023-06-11", + "startDate": "2021-07-19", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": false }, { "name": "IPSUM", - "endDate": "2022-04-09", - "startDate": "2015-05-02", + "endDate": "2022-01-08", + "startDate": "2014-03-22", "notes": "", "roles": [ "ORGANIZATION" @@ -25099,53 +28273,130 @@ "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2019-02-23", - "startDate": "2019-01-09", + "name": "AMET, DOLOR SIT", + "endDate": "2020-08-18", + "startDate": "2015-08-31", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": false + "siteRegistry": true } ], "suspectLandUses": [ { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-08-22 (described on Site Profile dated 2018-08-22)", + "notes": "INSERTED FOR SITE PROFILE DATED 2023-09-18 (described on Site Profile dated 2023-09-18)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-06-07 (described on Site Profile dated 2019-06-07)", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2016-07-25 (described on Site Profile dated 2016-07-25)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2022-07-14 (described on Site Profile dated 2022-07-14)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2015-07-20 (described on Site Profile dated 2015-07-20)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2018-01-25 (described on Site Profile dated 2018-01-25)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + } + ], + "parcelDescriptions": [ + { + "siteRegistry": false, + "dateNoted": "2019-01-03", + "parcelID": "16985", + "crownLandUsePIN": "18012", + "crownLandFileNumber": "19732", + "landDescription": "LOT 3 OF LOT 2 BLOCK 5 DISTRICT LOT 4 PLAN 8612" + }, + { + "siteRegistry": true, + "dateNoted": "2022-04-27", + "parcelID": "17461", + "crownLandUsePIN": "20641", + "crownLandFileNumber": "20714", + "landDescription": "LOT 5 OF LOT 4 BLOCK 3 DISTRICT LOT 1 PLAN 5505" + }, + { + "siteRegistry": false, + "dateNoted": "2017-10-24", + "parcelID": "16115", + "crownLandUsePIN": "16420", + "crownLandFileNumber": "16327", + "landDescription": "LOT 2 OF LOT 5 BLOCK 1 DISTRICT LOT 3 PLAN 4536" + }, + { + "siteRegistry": true, + "dateNoted": "2015-01-13", + "parcelID": "20891", + "crownLandUsePIN": "15340", + "crownLandFileNumber": "19982", + "landDescription": "LOT 5 OF LOT 2 BLOCK 4 DISTRICT LOT 3 PLAN 3808" } ], "siteDisclosures": [ { "siteRegistry": true, - "dateReceived": "2020-06-29", - "dateCompleted": "2015-10-19", - "dateEntered": "2021-08-18", - "dateRegistrar": "2016-01-04", - "dateLocalAuthorityReceived": "2020-06-27", - "summary": "Amet quidem neque id officiis.", - "informationUsed": "Vel culpa iure animi facilis dolorem sunt sint.\nAperiam nihil iure necessitatibus quo iste debitis harum.\nDeleniti nemo dolorem perspiciatis.", - "pastOrPresentOrders": "Et laboriosam nihil est voluptatibus dolore.\nPerspiciatis ad unde facere quis quibusdam.", + "dateReceived": "2022-02-19", + "dateCompleted": "2023-04-29", + "dateEntered": "2013-12-07", + "dateRegistrar": "2018-04-19", + "dateLocalAuthorityReceived": "2017-05-02", + "summary": "Necessitatibus mollitia eum impedit suscipit.\nCorrupti ad rerum totam quis.", + "informationUsed": "Facilis nostrum quos.\nNon est tenetur.\nMaxime quibusdam soluta ipsam quam sapiente commodi ab porro.", + "pastOrPresentOrders": "Nemo itaque accusantium corporis temporibus odit.\nReprehenderit nobis non dolores deserunt quaerat.\nFugiat quae deleniti facere alias.", "commercialAndIndustrialPurposes": [ { - "scheduleReference": "F2*", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false + } + ] + }, + { + "siteRegistry": false, + "dateReceived": "2016-11-26", + "dateCompleted": "2017-02-10", + "dateEntered": "2018-08-29", + "dateRegistrar": "2016-04-23", + "dateLocalAuthorityReceived": "2017-01-14", + "summary": "Delectus natus adipisci nobis eius esse.\nExpedita deleniti accusantium dicta quis saepe repellat doloribus.\nRecusandae veniam laborum necessitatibus dolorum explicabo neque magni commodi nisi.", + "informationUsed": "Qui harum maxime ipsam quas.\nOfficia tempore nisi eveniet necessitatibus.\nDucimus a accusantium vero.\nSapiente laborum numquam officiis iusto reiciendis velit quibusdam.\nIncidunt animi dolorem necessitatibus nam quidem ad.", + "pastOrPresentOrders": "Corrupti sint laudantium delectus commodi incidunt vel iure necessitatibus.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true }, { - "scheduleReference": "F2*", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, { "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true } ] @@ -25155,100 +28406,88 @@ { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "TILLMAN MARION", - "timestamp": "2022-07-19" + "user": "SKILES TOBIN", + "timestamp": "2020-12-08" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "KOELPIN REGAN", - "timestamp": "2019-10-20" + "user": "ANKUNDING ANYA", + "timestamp": "2016-01-24" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "BEDNAR LILLIAN", - "timestamp": "2020-03-26" - }, - { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "KERLUKE JACINTHE", - "timestamp": "2014-04-25" - }, - { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "GUSIKOWSKI JEANIE", - "timestamp": "2015-04-23" + "user": "SCHMITT CASSANDRE", + "timestamp": "2016-09-18" }, { - "siteRegistry": true, + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "GUTMANN PINKIE", - "timestamp": "2017-03-11" + "user": "ALTENWERTH FAUSTINO", + "timestamp": "2017-08-15" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "KUTCH JOSIANNE", - "timestamp": "2020-06-04" + "user": "PROSACCO LAURIANNE", + "timestamp": "2021-02-22" }, { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "OKUNEVA MAYNARD", - "timestamp": "2016-12-10" + "user": "PARISIAN-O'CONNELL KIERA", + "timestamp": "2020-04-16" }, { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "SKILES ERNESTINA", - "timestamp": "2021-04-15" + "user": "MILLER-JERDE AMARI", + "timestamp": "2018-04-24" } ], "associatedSites": [ { - "dateNoted": "2022-07-07", + "dateNoted": "2016-01-04", "notes": "", - "parcelID": "20775", - "siteID": "18004", + "parcelID": "15710", + "siteID": "18134", "siteRegistry": false }, { - "dateNoted": "2023-03-29", + "dateNoted": "2014-08-04", "notes": "", - "parcelID": "16993", - "siteID": "18123", - "siteRegistry": true + "parcelID": "15729", + "siteID": "19390", + "siteRegistry": false } ] }, { - "uuid": "9bc07fc7-2fdc-4707-bffe-c9c049218639", - "siteID": 16320, - "address": "821 McCullough Green", - "latitude": 55.1921, - "longitude": -124.5777, - "lastUpdated": "2018-02-26", - "city": "Fremont", - "region": "Cariboo", - "victoriaFile": "26250-20/2305", + "uuid": "1bdaab46-73d2-4833-b1ad-a33e59e6fd85", + "siteID": 20080, + "address": "73003 Zoila Via", + "latitude": 54.8841, + "longitude": -125.4276, + "lastUpdated": "2023-05-22", + "city": "O'Connerworth", + "region": "Mainland/Southwest", + "victoriaFile": "26250-20/10021", "regionalFile": "N/A", "parcelIDs": [ - 234875, - 2171974, - 2236823, - 344523, - 8389328 + 7631958, + 3217252, + 8823636, + 8260701, + 734250 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2021-10-01", - "completed": "2019-10-24", - "initiated": "2015-06-28", - "ministryContact": "TREUTEL TATYANA", + "createdAt": "2022-06-26", + "completed": "2017-08-06", + "initiated": "2014-01-14", + "ministryContact": "ZULAUF LAVONNE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -25257,13 +28496,13 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false }, { @@ -25274,21 +28513,21 @@ { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true + "role": "SUBMITTED BY", + "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2014-08-22", - "completed": "2017-08-02", - "initiated": "2022-12-14", - "ministryContact": "HALVORSON BERNADETTE", + "createdAt": "2022-04-07", + "completed": "2013-10-21", + "initiated": "2019-05-25", + "ministryContact": "KUPHAL REVA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -25296,6 +28535,11 @@ "" ], "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", @@ -25305,114 +28549,254 @@ "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false } ], "siteRegistry": true - } - ], - "participants": [ + }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2022-11-04", - "startDate": "2020-08-10", - "notes": "", - "roles": [ - "EMPLOYEE" + "createdAt": "2017-12-20", + "completed": "2015-12-07", + "initiated": "2016-09-28", + "ministryContact": "GIBSON JOHNPAUL", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + } ], "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2020-05-16", - "startDate": "2018-03-10", - "notes": "", - "roles": [ - "EMPLOYEE" + "createdAt": "2020-05-30", + "completed": "2019-03-24", + "initiated": "2016-06-14", + "ministryContact": "GRADY NONA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" ], - "siteRegistry": true + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false }, { - "name": "IPSUM", - "endDate": "2017-06-22", - "startDate": "2023-04-15", - "notes": "", - "roles": [ - "EMPLOYEE" + "createdAt": "2020-12-08", + "completed": "2018-04-15", + "initiated": "2018-12-12", + "ministryContact": "CUMMINGS ASHTYN", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" ], - "siteRegistry": true - }, + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + } + ], + "participants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2014-03-05", - "startDate": "2017-10-28", + "name": "AMET, DOLOR SIT", + "endDate": "2016-06-09", + "startDate": "2016-03-24", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": true + "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2019-08-30", - "startDate": "2023-03-05", + "name": "AMET, DOLOR SIT", + "endDate": "2021-03-16", + "startDate": "2017-02-05", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false } ], "suspectLandUses": [ { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-02-14 (described on Site Profile dated 2021-02-14)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "notes": "INSERTED FOR SITE PROFILE DATED 2022-08-07 (described on Site Profile dated 2022-08-07)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-06-16 (described on Site Profile dated 2014-06-16)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "notes": "INSERTED FOR SITE PROFILE DATED 2016-03-09 (described on Site Profile dated 2016-03-09)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-08-14 (described on Site Profile dated 2018-08-14)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2015-03-28 (described on Site Profile dated 2015-03-28)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-01-17 (described on Site Profile dated 2014-01-17)", + "notes": "INSERTED FOR SITE PROFILE DATED 2017-08-11 (described on Site Profile dated 2017-08-11)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + } + ], + "parcelDescriptions": [ + { + "siteRegistry": false, + "dateNoted": "2022-08-13", + "parcelID": "18641", + "crownLandUsePIN": "20123", + "crownLandFileNumber": "20252", + "landDescription": "LOT 5 OF LOT 2 BLOCK 5 DISTRICT LOT 4 PLAN 3203" + }, + { + "siteRegistry": true, + "dateNoted": "2020-04-19", + "parcelID": "20804", + "crownLandUsePIN": "15507", + "crownLandFileNumber": "17963", + "landDescription": "LOT 5 OF LOT 5 BLOCK 4 DISTRICT LOT 2 PLAN 3655" }, { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-11-23 (described on Site Profile dated 2016-11-23)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "dateNoted": "2020-11-02", + "parcelID": "19198", + "crownLandUsePIN": "19117", + "crownLandFileNumber": "18381", + "landDescription": "LOT 1 OF LOT 1 BLOCK 4 DISTRICT LOT 3 PLAN 9065" + }, + { + "siteRegistry": false, + "dateNoted": "2023-03-01", + "parcelID": "15426", + "crownLandUsePIN": "16077", + "crownLandFileNumber": "19692", + "landDescription": "LOT 4 OF LOT 5 BLOCK 3 DISTRICT LOT 2 PLAN 9342" + }, + { + "siteRegistry": false, + "dateNoted": "2017-11-26", + "parcelID": "17364", + "crownLandUsePIN": "18880", + "crownLandFileNumber": "18675", + "landDescription": "LOT 4 OF LOT 2 BLOCK 5 DISTRICT LOT 2 PLAN 3940" } ], "siteDisclosures": [ { - "siteRegistry": true, - "dateReceived": "2020-04-23", - "dateCompleted": "2022-02-05", - "dateEntered": "2014-08-30", - "dateRegistrar": "2022-10-05", - "dateLocalAuthorityReceived": "2017-11-18", - "summary": "Tempore perspiciatis ducimus quis ea.", - "informationUsed": "Dolorem libero blanditiis neque rem repellat labore aliquid commodi.\nNihil quidem ipsum iure officiis accusamus quos quaerat illo animi.\nDoloribus provident sunt quasi vitae.", - "pastOrPresentOrders": "Officiis accusamus reprehenderit quos optio accusantium.\nRerum consequuntur hic quas assumenda sapiente adipisci sequi.\nLibero quaerat molestias ex deleniti quas.", + "siteRegistry": false, + "dateReceived": "2017-12-06", + "dateCompleted": "2017-04-18", + "dateEntered": "2020-08-24", + "dateRegistrar": "2015-06-10", + "dateLocalAuthorityReceived": "2014-07-19", + "summary": "Delectus temporibus at.", + "informationUsed": "Ipsum voluptatibus laudantium voluptate iusto possimus ipsum et eos.\nDolorem velit beatae possimus ut neque.\nEius labore eos inventore exercitationem praesentium.", + "pastOrPresentOrders": "Repellat eveniet sed reiciendis optio assumenda sit quos.\nPorro maiores alias a expedita animi officia.", "commercialAndIndustrialPurposes": [ { "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + } + ] + }, + { + "siteRegistry": true, + "dateReceived": "2014-10-05", + "dateCompleted": "2017-10-31", + "dateEntered": "2014-03-23", + "dateRegistrar": "2016-06-28", + "dateLocalAuthorityReceived": "2020-03-16", + "summary": "Rem quasi fugit voluptates magni quasi provident modi porro.\nQuam laboriosam provident expedita.", + "informationUsed": "Eaque labore dolorum tempore consequatur magnam.\nMaxime dicta cum aut.\nMagni inventore placeat aperiam reiciendis vero.", + "pastOrPresentOrders": "Porro expedita minus nulla.\nLibero dicta quae nesciunt atque.\nImpedit provident voluptate praesentium accusantium suscipit dignissimos tenetur in.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false }, { - "scheduleReference": "F2*", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false } @@ -25421,85 +28805,109 @@ ], "activityLog": [ { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "PARISIAN GWEN", - "timestamp": "2018-03-22" + "user": "BORER KATRINE", + "timestamp": "2017-02-24" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "NITZSCHE SHANELLE", + "timestamp": "2016-09-02" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "SCHULTZ TREY", - "timestamp": "2016-05-23" + "user": "VANDERVORT KAMILLE", + "timestamp": "2022-02-28" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "CHRISTIANSEN FANNIE", - "timestamp": "2021-09-10" + "user": "MCLAUGHLIN PRESTON", + "timestamp": "2023-03-31" }, { - "siteRegistry": false, + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "KOVACEK ESTEL", + "timestamp": "2020-06-26" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "BEATTY DARRON", + "timestamp": "2018-10-13" + }, + { + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "KIEHN FERNANDO", - "timestamp": "2019-02-10" + "user": "EMMERICH XZAVIER", + "timestamp": "2016-02-26" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "POWLOWSKI BERNARDO", - "timestamp": "2016-10-18" + "user": "MAGGIO KAYLI", + "timestamp": "2015-04-26" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "LEDNER OTILIA", + "timestamp": "2017-01-16" } ], "associatedSites": [ { - "dateNoted": "2021-06-13", + "dateNoted": "2022-06-17", "notes": "", - "parcelID": "16300", - "siteID": "16701", + "parcelID": "18398", + "siteID": "16960", "siteRegistry": true }, { - "dateNoted": "2022-03-31", + "dateNoted": "2017-11-26", "notes": "", - "parcelID": "20544", - "siteID": "17309", - "siteRegistry": false + "parcelID": "15411", + "siteID": "18687", + "siteRegistry": true }, { - "dateNoted": "2018-11-20", + "dateNoted": "2013-10-28", "notes": "", - "parcelID": "18070", - "siteID": "15958", + "parcelID": "20360", + "siteID": "20787", "siteRegistry": true } ] }, { - "uuid": "f10587a1-cb26-4062-bf94-8fa9e67bb167", - "siteID": 17710, - "address": "7432 Dickens Cliffs", - "latitude": 50.2101, - "longitude": -131.7424, - "lastUpdated": "2020-04-25", - "city": "Erdmanport", - "region": "Kootenay", - "victoriaFile": "26250-20/7465", + "uuid": "878a66ec-f0f9-4278-b6a7-bb61e703b5a7", + "siteID": 20242, + "address": "7340 Sarah Causeway", + "latitude": 50.2034, + "longitude": -135.2743, + "lastUpdated": "2022-04-22", + "city": "Port Bettye", + "region": " North Coast", + "victoriaFile": "26250-20/9922", "regionalFile": "N/A", "parcelIDs": [ - 8684318, - 1021300, - 3862960, - 3797310, - 6699405 + 8061544, + 2467192, + 5928730, + 6130348, + 2462504 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2018-08-06", - "completed": "2017-05-01", - "initiated": "2017-01-04", - "ministryContact": "LESCH DEWAYNE", + "createdAt": "2015-06-12", + "completed": "2018-01-31", + "initiated": "2018-02-20", + "ministryContact": "DANIEL CARLETON", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -25507,24 +28915,34 @@ "" ], "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false } ], "siteRegistry": true }, { - "createdAt": "2016-02-22", - "completed": "2017-09-24", - "initiated": "2019-03-31", - "ministryContact": "STROSIN WILBERT", + "createdAt": "2019-09-02", + "completed": "2014-10-13", + "initiated": "2014-01-04", + "ministryContact": "NOLAN KATELYN", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -25534,17 +28952,22 @@ "notationParticipants": [ { "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": true }, { @@ -25558,92 +28981,156 @@ ], "participants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2023-02-07", - "startDate": "2019-01-29", + "name": "IPSUM", + "endDate": "2014-03-31", + "startDate": "2016-10-13", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2017-02-14", - "startDate": "2022-05-29", + "endDate": "2018-08-03", + "startDate": "2019-10-28", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2015-09-15", + "startDate": "2015-08-31", "notes": "", "roles": [ "ORGANIZATION" ], "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2021-12-13", + "startDate": "2022-11-08", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false } ], "suspectLandUses": [ { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-03-01 (described on Site Profile dated 2019-03-01)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "notes": "INSERTED FOR SITE PROFILE DATED 2014-04-08 (described on Site Profile dated 2014-04-08)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2020-12-26 (described on Site Profile dated 2020-12-26)", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2019-04-30 (described on Site Profile dated 2019-04-30)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-08-04 (described on Site Profile dated 2018-08-04)", + "notes": "INSERTED FOR SITE PROFILE DATED 2019-09-12 (described on Site Profile dated 2019-09-12)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + } + ], + "parcelDescriptions": [ + { + "siteRegistry": true, + "dateNoted": "2017-06-21", + "parcelID": "16450", + "crownLandUsePIN": "17653", + "crownLandFileNumber": "15795", + "landDescription": "LOT 2 OF LOT 4 BLOCK 2 DISTRICT LOT 2 PLAN 3823" + }, + { + "siteRegistry": false, + "dateNoted": "2017-03-16", + "parcelID": "20103", + "crownLandUsePIN": "16318", + "crownLandFileNumber": "17767", + "landDescription": "LOT 5 OF LOT 3 BLOCK 4 DISTRICT LOT 5 PLAN 7343" }, { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-04-11 (described on Site Profile dated 2021-04-11)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "dateNoted": "2020-10-17", + "parcelID": "18425", + "crownLandUsePIN": "16415", + "crownLandFileNumber": "17820", + "landDescription": "LOT 4 OF LOT 4 BLOCK 2 DISTRICT LOT 2 PLAN 4145" + }, + { + "siteRegistry": true, + "dateNoted": "2022-01-11", + "parcelID": "18065", + "crownLandUsePIN": "20029", + "crownLandFileNumber": "20880", + "landDescription": "LOT 4 OF LOT 1 BLOCK 5 DISTRICT LOT 1 PLAN 8008" } ], "siteDisclosures": [ { "siteRegistry": false, - "dateReceived": "2017-07-06", - "dateCompleted": "2014-11-03", - "dateEntered": "2019-06-17", - "dateRegistrar": "2015-04-19", - "dateLocalAuthorityReceived": "2016-11-18", - "summary": "Recusandae voluptatibus odio.\nAccusantium beatae labore exercitationem.", - "informationUsed": "Laborum voluptates assumenda.\nLabore accusamus possimus eveniet nihil quasi.\nTotam et mollitia officiis officia sit laudantium voluptatem modi illum.", - "pastOrPresentOrders": "Doloribus quam fuga.\nAliquid optio ipsam modi.\nDucimus quasi pariatur.", + "dateReceived": "2015-03-13", + "dateCompleted": "2020-09-16", + "dateEntered": "2017-05-18", + "dateRegistrar": "2021-06-07", + "dateLocalAuthorityReceived": "2021-06-02", + "summary": "Tempora asperiores debitis doloremque ullam saepe atque dicta.\nAssumenda libero ea earum minima ipsam.\nMaxime tempora beatae aperiam eos quibusdam blanditiis odio.", + "informationUsed": "Labore alias eos tenetur vitae hic rem.\nVoluptates sed non praesentium hic.\nTempore non vero harum quod incidunt esse doloribus provident quia.\nEnim mollitia facilis modi ex molestias aut ex id.\nNihil amet amet iusto voluptas recusandae dolorum voluptatem amet.", + "pastOrPresentOrders": "Veritatis quia eius veniam quis.\nFacere repellendus neque quod.\nLaborum voluptate numquam quisquam.", "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, { "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true + "siteRegistry": false } ] }, { - "siteRegistry": true, - "dateReceived": "2022-11-19", - "dateCompleted": "2015-07-03", - "dateEntered": "2021-07-11", - "dateRegistrar": "2014-11-28", - "dateLocalAuthorityReceived": "2016-05-10", - "summary": "Nemo fuga et facere.", - "informationUsed": "Aliquam in doloremque ullam delectus accusantium quaerat optio sed.\nSunt minus perspiciatis minima.\nConsequuntur fuga facere veniam minus quia mollitia fugiat.", - "pastOrPresentOrders": "Repellendus quo aperiam voluptates ex ex recusandae.\nNulla necessitatibus ullam accusamus.", + "siteRegistry": false, + "dateReceived": "2015-09-14", + "dateCompleted": "2021-03-25", + "dateEntered": "2016-05-14", + "dateRegistrar": "2013-12-22", + "dateLocalAuthorityReceived": "2020-12-07", + "summary": "Voluptas neque incidunt quibusdam corporis.\nDoloremque blanditiis est ut quibusdam necessitatibus.", + "informationUsed": "Dolorum maiores esse.\nMaxime exercitationem quibusdam fugiat.\nAspernatur quis quo modi temporibus voluptates tempore alias.\nIllum dolorum sit voluptatum a.\nMolestias expedita incidunt dolor.", + "pastOrPresentOrders": "Expedita amet excepturi eum quisquam rerum.", "commercialAndIndustrialPurposes": [ { "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, { "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true } ] } @@ -25652,123 +29139,81 @@ { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "DENESIK VERNER", - "timestamp": "2016-02-10" + "user": "LUEILWITZ JOSIANE", + "timestamp": "2020-04-05" }, { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "TURNER REGAN", - "timestamp": "2017-10-24" + "user": "ROMAGUERA JESSYCA", + "timestamp": "2016-04-01" }, { - "siteRegistry": true, + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "BEIER CAESAR", - "timestamp": "2015-10-23" + "user": "SATTERFIELD VINNIE", + "timestamp": "2017-05-07" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "RATH RETHA", - "timestamp": "2023-04-24" + "user": "ABBOTT JOVANNY", + "timestamp": "2014-09-06" }, { - "siteRegistry": true, + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "SMITHAM-RENNER CONSTANTIN", - "timestamp": "2023-06-29" + "user": "KUHIC GLADYCE", + "timestamp": "2019-07-29" }, { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "HILLS WESTLEY", - "timestamp": "2014-07-24" + "user": "RYAN TEAGAN", + "timestamp": "2015-03-07" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "KRIS KEENAN", - "timestamp": "2016-09-30" + "user": "LANG LOU", + "timestamp": "2014-05-18" } ], "associatedSites": [ { - "dateNoted": "2018-05-22", + "dateNoted": "2020-02-06", "notes": "", - "parcelID": "20166", - "siteID": "20609", + "parcelID": "16950", + "siteID": "16096", "siteRegistry": true - }, - { - "dateNoted": "2018-12-16", - "notes": "", - "parcelID": "16427", - "siteID": "19203", - "siteRegistry": false } ] }, { - "uuid": "df075eff-21bb-4d50-ab6e-43bd821b3f1a", - "siteID": 15858, - "address": "2644 Name Grove", - "latitude": 57.0395, - "longitude": -120.3143, - "lastUpdated": "2022-12-18", - "city": "East Heberville", - "region": " North Coast", - "victoriaFile": "26250-20/6117", + "uuid": "a3df8950-86cd-4af9-9863-e3898c7211d5", + "siteID": 16329, + "address": "62971 Anthony Well", + "latitude": 54.6344, + "longitude": -121.5173, + "lastUpdated": "2023-02-26", + "city": "Port Reyes", + "region": "Thompson-Okanagan", + "victoriaFile": "26250-20/9231", "regionalFile": "N/A", "parcelIDs": [ - 5735980, - 4362040, - 3294419, - 3223910, - 7649566 + 8015544, + 4651690, + 1646834, + 132301, + 1650993 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2014-04-26", - "completed": "2023-03-07", - "initiated": "2023-04-28", - "ministryContact": "THIEL RUPERT", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - } - ], - "siteRegistry": true - }, - { - "createdAt": "2023-04-07", - "completed": "2022-04-05", - "initiated": "2021-07-13", - "ministryContact": "HAHN DANIELA", + "createdAt": "2017-08-21", + "completed": "2021-05-12", + "initiated": "2023-02-02", + "ministryContact": "KLEIN-FUNK LELIA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -25776,11 +29221,6 @@ "" ], "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", @@ -25789,11 +29229,6 @@ { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", "siteRegistry": true }, { @@ -25802,43 +29237,13 @@ "siteRegistry": false } ], - "siteRegistry": true - }, - { - "createdAt": "2022-01-14", - "completed": "2018-02-11", - "initiated": "2020-11-02", - "ministryContact": "EBERT VERNICE", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - } - ], "siteRegistry": false }, { - "createdAt": "2014-10-12", - "completed": "2020-08-29", - "initiated": "2018-11-04", - "ministryContact": "FRAMI CRISTOBAL", + "createdAt": "2018-11-07", + "completed": "2017-04-30", + "initiated": "2021-11-24", + "ministryContact": "WUCKERT RANDALL", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -25846,65 +29251,20 @@ "" ], "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false - } - ], - "siteRegistry": true - }, - { - "createdAt": "2019-12-21", - "completed": "2019-04-25", - "initiated": "2014-01-12", - "ministryContact": "HOWELL CHANEL", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false } ], "siteRegistry": false @@ -25913,8 +29273,8 @@ "participants": [ { "name": "IPSUM", - "endDate": "2018-06-11", - "startDate": "2016-10-28", + "endDate": "2018-09-18", + "startDate": "2017-02-20", "notes": "", "roles": [ "EMPLOYEE" @@ -25922,165 +29282,224 @@ "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2016-04-14", - "startDate": "2014-02-26", + "name": "IPSUM", + "endDate": "2014-12-19", + "startDate": "2015-10-24", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2016-08-19", - "startDate": "2022-12-07", - "notes": "", - "roles": [ - "ORGANIZATION" - ], "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2022-12-22", - "startDate": "2021-10-29", + "name": "IPSUM", + "endDate": "2022-09-17", + "startDate": "2016-02-13", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true } ], "suspectLandUses": [ + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2016-07-30 (described on Site Profile dated 2016-07-30)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2023-07-17 (described on Site Profile dated 2023-07-17)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-03-15 (described on Site Profile dated 2018-03-15)", + "notes": "INSERTED FOR SITE PROFILE DATED 2020-08-08 (described on Site Profile dated 2020-08-08)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2020-03-26 (described on Site Profile dated 2020-03-26)", + "notes": "INSERTED FOR SITE PROFILE DATED 2022-12-11 (described on Site Profile dated 2022-12-11)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], - "siteDisclosures": [ + "parcelDescriptions": [ { "siteRegistry": false, - "dateReceived": "2018-05-23", - "dateCompleted": "2022-03-16", - "dateEntered": "2019-08-24", - "dateRegistrar": "2019-06-08", - "dateLocalAuthorityReceived": "2021-05-12", - "summary": "Fugiat magni atque.\nArchitecto tempore quam dolorem quo.\nVeniam consequatur labore voluptate.", - "informationUsed": "Alias maxime accusamus in nisi voluptatibus distinctio.\nCupiditate rerum dolorem.\nNostrum nesciunt aperiam id tempora ullam totam quia.\nVoluptate quisquam earum tempora tempora tempore.\nNatus sequi ipsum veritatis error nam nesciunt architecto quia temporibus.", - "pastOrPresentOrders": "Eum totam quod ab asperiores laudantium unde excepturi.", + "dateNoted": "2016-07-16", + "parcelID": "15226", + "crownLandUsePIN": "15702", + "crownLandFileNumber": "16772", + "landDescription": "LOT 4 OF LOT 1 BLOCK 1 DISTRICT LOT 1 PLAN 3348" + }, + { + "siteRegistry": false, + "dateNoted": "2020-10-29", + "parcelID": "15256", + "crownLandUsePIN": "18627", + "crownLandFileNumber": "16131", + "landDescription": "LOT 1 OF LOT 3 BLOCK 1 DISTRICT LOT 5 PLAN 8338" + }, + { + "siteRegistry": true, + "dateNoted": "2022-09-20", + "parcelID": "19828", + "crownLandUsePIN": "18140", + "crownLandFileNumber": "20700", + "landDescription": "LOT 2 OF LOT 2 BLOCK 5 DISTRICT LOT 1 PLAN 5882" + }, + { + "siteRegistry": true, + "dateNoted": "2021-07-07", + "parcelID": "17138", + "crownLandUsePIN": "18591", + "crownLandFileNumber": "15587", + "landDescription": "LOT 2 OF LOT 4 BLOCK 2 DISTRICT LOT 4 PLAN 8538" + }, + { + "siteRegistry": true, + "dateNoted": "2017-11-18", + "parcelID": "20111", + "crownLandUsePIN": "16041", + "crownLandFileNumber": "19846", + "landDescription": "LOT 5 OF LOT 1 BLOCK 5 DISTRICT LOT 5 PLAN 4860" + } + ], + "siteDisclosures": [ + { + "siteRegistry": true, + "dateReceived": "2020-11-24", + "dateCompleted": "2014-10-12", + "dateEntered": "2022-02-06", + "dateRegistrar": "2018-07-09", + "dateLocalAuthorityReceived": "2014-11-13", + "summary": "Enim expedita iste sunt tempora blanditiis quisquam est optio.\nOfficia quaerat quia expedita explicabo.\nVeniam nobis incidunt suscipit eaque placeat suscipit.", + "informationUsed": "Ipsum odio atque veritatis repellendus voluptates.\nAtque mollitia ab earum.\nDignissimos cupiditate unde a quos eaque.\nExercitationem vel labore consectetur.", + "pastOrPresentOrders": "Aliquid aspernatur ab numquam ipsa expedita.", "commercialAndIndustrialPurposes": [ { "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false + "siteRegistry": true }, { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false }, { "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false + "siteRegistry": true } ] } ], "activityLog": [ { - "siteRegistry": true, + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "SWANIAWSKI ROSS", + "timestamp": "2022-05-15" + }, + { + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "HAGENES HERMINIO", - "timestamp": "2023-02-21" + "user": "KLEIN KENDRICK", + "timestamp": "2019-05-31" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "WISOKY MARCELINA", - "timestamp": "2014-03-05" + "user": "JASKOLSKI MCKAYLA", + "timestamp": "2014-06-17" }, { - "siteRegistry": true, + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "MCCLURE-BECKER CHLOE", + "timestamp": "2014-06-24" + }, + { + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "UPTON VIOLET", - "timestamp": "2015-12-03" + "user": "KULAS CAMYLLE", + "timestamp": "2014-09-18" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "SPINKA DARREL", - "timestamp": "2017-04-02" + "user": "HILLL STEFANIE", + "timestamp": "2017-02-02" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "JOHNSON HARDY", + "timestamp": "2020-07-16" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "TOWNE VALLIE", - "timestamp": "2018-01-15" + "user": "BAYER MOHAMMED", + "timestamp": "2015-01-31" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "STRACKE MARION", - "timestamp": "2016-01-29" + "user": "JOHNS-JERDE CADEN", + "timestamp": "2021-08-02" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "WOLF YESENIA", + "timestamp": "2022-12-21" } ], "associatedSites": [ { - "dateNoted": "2019-10-04", - "notes": "", - "parcelID": "20736", - "siteID": "15864", - "siteRegistry": false - }, - { - "dateNoted": "2014-05-13", + "dateNoted": "2022-12-19", "notes": "", - "parcelID": "18275", - "siteID": "18201", - "siteRegistry": false + "parcelID": "17858", + "siteID": "17724", + "siteRegistry": true }, { - "dateNoted": "2022-03-25", + "dateNoted": "2018-08-12", "notes": "", - "parcelID": "19990", - "siteID": "18995", - "siteRegistry": false + "parcelID": "16016", + "siteID": "17959", + "siteRegistry": true } ] }, { - "uuid": "17dca8fc-9a14-43ca-a7e2-2721d9065fb3", - "siteID": 16870, - "address": "19599 Kirlin Pass", - "latitude": 56.1452, - "longitude": -138.6666, - "lastUpdated": "2019-08-09", - "city": "Port Axel", - "region": "Vancouver Island/Coast", - "victoriaFile": "26250-20/13719", + "uuid": "8b9faf69-1335-4280-b643-5d02a832fb86", + "siteID": 19237, + "address": "553 Bertha Place", + "latitude": 54.0272, + "longitude": -122.7244, + "lastUpdated": "2018-03-30", + "city": "New Maya", + "region": "Cariboo", + "victoriaFile": "26250-20/7058", "regionalFile": "N/A", "parcelIDs": [ - 7603238, - 7086742, - 3223111, - 2947736, - 8125197 + 8347963, + 5513850, + 5322969, + 7186475, + 6870580 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2023-09-14", - "completed": "2020-01-11", - "initiated": "2021-06-18", - "ministryContact": "KUTCH WILLA", + "createdAt": "2023-10-02", + "completed": "2020-07-29", + "initiated": "2022-12-29", + "ministryContact": "GIBSON CLOVIS", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -26090,62 +29509,22 @@ "notationParticipants": [ { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true - } - ], - "siteRegistry": false - }, - { - "createdAt": "2022-06-21", - "completed": "2014-07-17", - "initiated": "2019-05-10", - "ministryContact": "CORMIER CATHY", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true } ], "siteRegistry": false }, { - "createdAt": "2017-10-20", - "completed": "2017-01-26", - "initiated": "2016-12-08", - "ministryContact": "TORPHY ELMIRA", + "createdAt": "2015-09-24", + "completed": "2015-05-29", + "initiated": "2022-02-28", + "ministryContact": "WHITE WALTON", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -26153,11 +29532,6 @@ "" ], "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", @@ -26172,60 +29546,15 @@ "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - } - ], - "siteRegistry": true - }, - { - "createdAt": "2015-05-11", - "completed": "2016-09-23", - "initiated": "2020-06-02", - "ministryContact": "KULAS KENDALL", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false } ], "siteRegistry": true }, { - "createdAt": "2016-10-07", - "completed": "2018-07-28", - "initiated": "2015-06-17", - "ministryContact": "KUHN KEVEN", + "createdAt": "2022-11-28", + "completed": "2021-12-06", + "initiated": "2021-01-28", + "ministryContact": "FRITSCH ROBERTO", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -26234,8 +29563,8 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": false }, { @@ -26245,83 +29574,124 @@ }, { "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true } ], "participants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2022-12-06", - "startDate": "2015-12-09", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2017-02-28", + "startDate": "2017-03-10", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true }, { - "name": "IPSUM", - "endDate": "2023-06-27", - "startDate": "2023-09-20", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2018-01-01", + "startDate": "2014-11-05", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": true }, { - "name": "AMET, DOLOR SIT", - "endDate": "2016-03-28", - "startDate": "2022-02-01", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2022-10-03", + "startDate": "2017-02-21", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": true + "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2016-12-03", - "startDate": "2021-09-21", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2017-01-01", + "startDate": "2019-03-05", "notes": "", "roles": [ "EMPLOYEE" ], "siteRegistry": true + }, + { + "name": "AMET, DOLOR SIT", + "endDate": "2018-02-16", + "startDate": "2016-12-05", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false } ], "suspectLandUses": [ { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-09-22 (described on Site Profile dated 2015-09-22)", + "notes": "INSERTED FOR SITE PROFILE DATED 2018-10-15 (described on Site Profile dated 2018-10-15)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-10-11 (described on Site Profile dated 2021-10-11)", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2014-05-08 (described on Site Profile dated 2014-05-08)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2020-05-28 (described on Site Profile dated 2020-05-28)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], - "siteDisclosures": [ + "parcelDescriptions": [ + { + "siteRegistry": false, + "dateNoted": "2015-01-16", + "parcelID": "15713", + "crownLandUsePIN": "18504", + "crownLandFileNumber": "15699", + "landDescription": "LOT 1 OF LOT 4 BLOCK 3 DISTRICT LOT 2 PLAN 8170" + }, + { + "siteRegistry": true, + "dateNoted": "2023-01-24", + "parcelID": "19545", + "crownLandUsePIN": "18846", + "crownLandFileNumber": "19406", + "landDescription": "LOT 1 OF LOT 3 BLOCK 4 DISTRICT LOT 4 PLAN 3340" + }, { "siteRegistry": false, - "dateReceived": "2014-01-25", - "dateCompleted": "2021-04-21", - "dateEntered": "2023-06-30", - "dateRegistrar": "2018-01-14", - "dateLocalAuthorityReceived": "2016-07-17", - "summary": "Suscipit nisi quis ut provident corrupti.\nPerferendis accusamus blanditiis distinctio.\nDeserunt laudantium sunt quo aspernatur repellat sapiente soluta.", - "informationUsed": "Atque optio commodi a reprehenderit molestiae libero natus reprehenderit laboriosam.\nQuis eveniet quos excepturi blanditiis quas earum quibusdam.\nEveniet itaque nemo maiores quos beatae commodi.\nTotam laboriosam repellendus ullam ea placeat numquam corrupti ut.", - "pastOrPresentOrders": "Eaque fuga enim non iste eaque ad.", + "dateNoted": "2014-02-21", + "parcelID": "20514", + "crownLandUsePIN": "17432", + "crownLandFileNumber": "17111", + "landDescription": "LOT 5 OF LOT 3 BLOCK 5 DISTRICT LOT 1 PLAN 7909" + } + ], + "siteDisclosures": [ + { + "siteRegistry": true, + "dateReceived": "2015-12-04", + "dateCompleted": "2022-04-09", + "dateEntered": "2019-09-26", + "dateRegistrar": "2019-02-21", + "dateLocalAuthorityReceived": "2022-07-28", + "summary": "Nisi praesentium enim commodi amet provident.", + "informationUsed": "Cupiditate eveniet dignissimos quos temporibus modi.\nRepellendus ipsam repellat ullam provident perferendis.\nPerferendis itaque illo cupiditate in molestiae magnam cum.\nNesciunt quo dolores facere nostrum reiciendis.\nCumque hic repellendus earum aspernatur mollitia.", + "pastOrPresentOrders": "Quis laudantium incidunt accusantium ut cum maxime veritatis minima eveniet.\nEa provident tempore quae tenetur nisi.\nIllum doloremque assumenda harum omnis neque aliquid aspernatur iure.", "commercialAndIndustrialPurposes": [ { "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false }, { "scheduleReference": "F1*", @@ -26330,98 +29700,116 @@ }, { "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true } ] } ], "activityLog": [ + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "ROMAGUERA YOSHIKO", + "timestamp": "2018-08-09" + }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "LANGOSH ELENORA", - "timestamp": "2019-07-04" + "user": "HAYES SYDNI", + "timestamp": "2023-02-27" }, { - "siteRegistry": true, + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "TOY ALPHONSO", - "timestamp": "2016-10-14" + "user": "MCKENZIE VENA", + "timestamp": "2015-09-10" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "ANKUNDING ALEXANDRA", - "timestamp": "2023-06-25" + "user": "FRANEY BAILEY", + "timestamp": "2017-05-24" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "WINTHEISER MACK", - "timestamp": "2014-11-23" + "user": "HOWELL JUANA", + "timestamp": "2016-01-29" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "KSHLERIN LEW", - "timestamp": "2019-11-13" + "user": "NADER NATHANIAL", + "timestamp": "2013-10-31" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "ROHAN DREW", + "timestamp": "2020-04-26" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "KUVALIS GREEN", + "timestamp": "2019-07-19" } ], "associatedSites": [ { - "dateNoted": "2020-11-09", + "dateNoted": "2016-09-06", "notes": "", - "parcelID": "19741", - "siteID": "15594", + "parcelID": "20638", + "siteID": "18160", "siteRegistry": false }, { - "dateNoted": "2017-05-09", + "dateNoted": "2020-09-19", "notes": "", - "parcelID": "19223", - "siteID": "17936", + "parcelID": "19646", + "siteID": "15761", "siteRegistry": false }, { - "dateNoted": "2018-11-11", + "dateNoted": "2022-01-07", "notes": "", - "parcelID": "20499", - "siteID": "17155", + "parcelID": "16524", + "siteID": "16138", "siteRegistry": true } ] }, { - "uuid": "ce2b7f7a-b8cb-42f7-824c-3e2536199cf5", - "siteID": 16758, - "address": "98074 Larry Mills", - "latitude": 50.7224, - "longitude": -122.9476, - "lastUpdated": "2016-01-11", - "city": "Prosaccoborough", - "region": "Mainland/Southwest", - "victoriaFile": "26250-20/15334", + "uuid": "3546bcc2-490a-42ce-ac1d-593d5c3febd4", + "siteID": 16064, + "address": "238 Funk Inlet", + "latitude": 57.1815, + "longitude": -120.7815, + "lastUpdated": "2017-02-06", + "city": "West Christa", + "region": "Cariboo", + "victoriaFile": "26250-20/4485", "regionalFile": "N/A", "parcelIDs": [ - 6907315, - 4310479, - 6168555, - 1863941, - 3852588 + 8660306, + 6644064, + 6648468, + 9296802, + 186384 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2020-03-17", - "completed": "2017-05-15", - "initiated": "2022-12-15", - "ministryContact": "ABSHIRE CORNELIUS", + "createdAt": "2023-01-27", + "completed": "2016-09-04", + "initiated": "2018-07-28", + "ministryContact": "SCHUPPE EDWINA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -26429,31 +29817,11 @@ "" ], "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false - } - ], - "siteRegistry": true - }, - { - "createdAt": "2022-03-01", - "completed": "2015-08-06", - "initiated": "2014-02-09", - "ministryContact": "LEUSCHKE-MURPHY JOSEFINA", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ + "siteRegistry": true + }, { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", @@ -26463,20 +29831,15 @@ "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true } ], "siteRegistry": false }, { - "createdAt": "2014-06-13", - "completed": "2019-01-05", - "initiated": "2013-12-06", - "ministryContact": "BRADTKE DARIUS", + "createdAt": "2023-09-08", + "completed": "2015-10-08", + "initiated": "2022-11-21", + "ministryContact": "LEBSACK CHADD", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -26485,99 +29848,74 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true - } - ], - "siteRegistry": false - }, - { - "createdAt": "2023-09-17", - "completed": "2021-12-05", - "initiated": "2019-12-20", - "ministryContact": "WISOKY HYMAN", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false } ], "participants": [ { "name": "IPSUM", - "endDate": "2017-10-21", - "startDate": "2016-02-08", + "endDate": "2014-07-20", + "startDate": "2021-04-15", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": false + "siteRegistry": true }, { - "name": "IPSUM", - "endDate": "2021-01-11", - "startDate": "2023-05-06", + "name": "AMET, DOLOR SIT", + "endDate": "2021-05-21", + "startDate": "2019-05-22", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": true }, { - "name": "IPSUM", - "endDate": "2017-10-26", - "startDate": "2023-04-27", + "name": "AMET, DOLOR SIT", + "endDate": "2015-07-07", + "startDate": "2022-06-09", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2013-10-29", - "startDate": "2015-10-03", + "name": "AMET, DOLOR SIT", + "endDate": "2015-02-25", + "startDate": "2020-08-11", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": true + "siteRegistry": false }, { - "name": "IPSUM", - "endDate": "2023-03-03", - "startDate": "2015-07-24", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2023-06-04", + "startDate": "2016-06-24", "notes": "", "roles": [ "EMPLOYEE" @@ -26587,211 +29925,192 @@ ], "suspectLandUses": [ { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2020-04-30 (described on Site Profile dated 2020-04-30)", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2015-11-07 (described on Site Profile dated 2015-11-07)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-03-30 (described on Site Profile dated 2017-03-30)", + "notes": "INSERTED FOR SITE PROFILE DATED 2021-05-01 (described on Site Profile dated 2021-05-01)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2014-11-17 (described on Site Profile dated 2014-11-17)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + } + ], + "parcelDescriptions": [ { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-12-26 (described on Site Profile dated 2017-12-26)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "dateNoted": "2016-08-26", + "parcelID": "16388", + "crownLandUsePIN": "19761", + "crownLandFileNumber": "19075", + "landDescription": "LOT 1 OF LOT 3 BLOCK 4 DISTRICT LOT 2 PLAN 4549" + }, + { + "siteRegistry": false, + "dateNoted": "2017-05-12", + "parcelID": "20353", + "crownLandUsePIN": "18921", + "crownLandFileNumber": "18870", + "landDescription": "LOT 4 OF LOT 5 BLOCK 1 DISTRICT LOT 2 PLAN 8486" }, { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-08-13 (described on Site Profile dated 2018-08-13)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "dateNoted": "2018-08-12", + "parcelID": "19508", + "crownLandUsePIN": "20091", + "crownLandFileNumber": "20820", + "landDescription": "LOT 1 OF LOT 5 BLOCK 1 DISTRICT LOT 2 PLAN 9092" } ], "siteDisclosures": [ { "siteRegistry": true, - "dateReceived": "2020-07-12", - "dateCompleted": "2019-10-18", - "dateEntered": "2015-03-27", - "dateRegistrar": "2021-03-19", - "dateLocalAuthorityReceived": "2020-10-15", - "summary": "Dolor sint quas dolor vitae amet rem delectus.", - "informationUsed": "Dolor amet maiores beatae ipsa error ut expedita perferendis.\nIpsum nihil totam odio reiciendis laudantium illo facere fuga quam.\nAssumenda totam ut saepe quo ut cumque quod occaecati.\nIpsum aliquam repellat ratione odit voluptatum quidem.", - "pastOrPresentOrders": "Quos temporibus itaque qui nulla.", + "dateReceived": "2016-12-26", + "dateCompleted": "2023-04-11", + "dateEntered": "2022-08-21", + "dateRegistrar": "2022-04-05", + "dateLocalAuthorityReceived": "2021-01-31", + "summary": "Esse corrupti iste minus.\nDolorum aliquid minima fugiat explicabo possimus quod velit saepe.", + "informationUsed": "Occaecati eius praesentium blanditiis amet assumenda ab esse tempore.\nIste reprehenderit quam sed non dolor quod explicabo.\nMinus impedit assumenda a.\nFacere atque neque.", + "pastOrPresentOrders": "Tempore quidem aliquam iure.", "commercialAndIndustrialPurposes": [ { "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false + "siteRegistry": true }, { "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true - }, - { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true } ] }, { - "siteRegistry": false, - "dateReceived": "2014-06-01", - "dateCompleted": "2022-09-16", - "dateEntered": "2018-12-01", - "dateRegistrar": "2020-11-04", - "dateLocalAuthorityReceived": "2021-10-13", - "summary": "Sit accusantium necessitatibus error tempore optio sint iste non.", - "informationUsed": "Voluptas quos alias vero nulla quas occaecati.\nItaque quasi eius quod nulla at.\nUnde vel adipisci perspiciatis eum facilis voluptatem eaque totam veritatis.\nMolestias nulla magni magnam quisquam porro.\nSed distinctio vel repellendus.", - "pastOrPresentOrders": "Explicabo nesciunt asperiores asperiores.\nVoluptas provident exercitationem dolore voluptatibus esse iusto quasi quidem quo.\nDolorum necessitatibus natus quod.", + "siteRegistry": true, + "dateReceived": "2022-06-05", + "dateCompleted": "2016-01-30", + "dateEntered": "2019-07-17", + "dateRegistrar": "2016-01-17", + "dateLocalAuthorityReceived": "2016-09-12", + "summary": "Ratione architecto provident excepturi.\nQuibusdam dolore quae consequatur.", + "informationUsed": "Debitis quidem illum amet quibusdam.\nEst nihil odit veniam sit doloremque.\nSoluta reiciendis maiores cum.\nA suscipit laborum.", + "pastOrPresentOrders": "Quaerat soluta laudantium dolore dicta beatae numquam repudiandae impedit.\nAut atque distinctio non voluptates cum quasi quasi iste tempora.\nEnim voluptatum harum.", "commercialAndIndustrialPurposes": [ { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { - "scheduleReference": "F1*", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true } ] } ], "activityLog": [ { - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "ROBERTS MONTY", - "timestamp": "2019-03-16" - }, - { - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "BOTSFORD KATHLEEN", - "timestamp": "2019-04-30" - }, - { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "MAYERT NEOMA", - "timestamp": "2016-05-26" + "user": "DURGAN KARIANNE", + "timestamp": "2023-03-02" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "OBERBRUNNER CARLETON", - "timestamp": "2015-01-31" + "user": "KLING KOBY", + "timestamp": "2020-10-12" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "HICKLE-GOLDNER GREYSON", - "timestamp": "2016-05-06" + "user": "NICOLAS OLIN", + "timestamp": "2023-09-01" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "HERMAN-RUNOLFSSON MAGNOLIA", - "timestamp": "2015-12-30" + "user": "HERMANN CATHRYN", + "timestamp": "2015-05-22" }, { - "siteRegistry": true, + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "MACGYVER EDWARDO", - "timestamp": "2019-05-31" + "user": "TREUTEL MELANY", + "timestamp": "2017-05-13" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "CUMMINGS-KEEBLER NORENE", - "timestamp": "2020-07-17" + "user": "RUTHERFORD ARLENE", + "timestamp": "2016-06-25" } ], "associatedSites": [ { - "dateNoted": "2015-05-22", + "dateNoted": "2023-07-15", "notes": "", - "parcelID": "15590", - "siteID": "17294", + "parcelID": "19275", + "siteID": "16881", + "siteRegistry": false + }, + { + "dateNoted": "2017-09-25", + "notes": "", + "parcelID": "18922", + "siteID": "16335", "siteRegistry": true }, { - "dateNoted": "2021-04-20", + "dateNoted": "2020-03-21", "notes": "", - "parcelID": "17723", - "siteID": "18067", + "parcelID": "18997", + "siteID": "16278", "siteRegistry": true } ] }, { - "uuid": "ce09dd26-a3e6-4fe4-af2e-69aed81c7ecb", - "siteID": 15461, - "address": "56350 Rempel Spur", - "latitude": 50.6836, - "longitude": -129.1594, - "lastUpdated": "2016-04-27", - "city": "Lake Marvin", - "region": "Cariboo", - "victoriaFile": "26250-20/11848", + "uuid": "2bb244bd-8f21-4b1e-a254-4d778279b278", + "siteID": 19683, + "address": "864 Nader Knolls", + "latitude": 50.6298, + "longitude": -136.7854, + "lastUpdated": "2014-12-23", + "city": "Jamaalchester", + "region": "Mainland/Southwest", + "victoriaFile": "26250-20/3922", "regionalFile": "N/A", "parcelIDs": [ - 715074, - 8430408, - 7960919, - 5567842, - 4232592 + 1637000, + 7675656, + 1787069, + 9846065, + 7637074 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2020-12-17", - "completed": "2017-03-24", - "initiated": "2021-09-22", - "ministryContact": "KOHLER MAYMIE", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - } - ], - "siteRegistry": true - }, - { - "createdAt": "2016-10-14", - "completed": "2020-10-07", - "initiated": "2020-07-05", - "ministryContact": "PURDY ALISA", + "createdAt": "2017-06-18", + "completed": "2018-04-16", + "initiated": "2023-08-22", + "ministryContact": "BOGISICH RENEE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -26801,74 +30120,24 @@ "notationParticipants": [ { "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - } - ], - "siteRegistry": false - }, - { - "createdAt": "2019-01-08", - "completed": "2019-12-08", - "initiated": "2017-12-30", - "ministryContact": "BAUMBACH ADITYA", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - } - ], - "siteRegistry": false - }, - { - "createdAt": "2015-02-05", - "completed": "2020-06-22", - "initiated": "2022-04-18", - "ministryContact": "FRITSCH DARLENE", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", @@ -26878,10 +30147,10 @@ "siteRegistry": false }, { - "createdAt": "2019-04-17", - "completed": "2020-01-07", - "initiated": "2021-04-18", - "ministryContact": "JENKINS ENRIQUE", + "createdAt": "2019-04-10", + "completed": "2016-06-14", + "initiated": "2020-12-23", + "ministryContact": "PADBERG KELTON", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -26890,142 +30159,105 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false } ], "participants": [ { - "name": "IPSUM", - "endDate": "2019-11-02", - "startDate": "2022-04-24", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2020-01-21", + "startDate": "2019-07-17", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": false }, - { - "name": "IPSUM", - "endDate": "2020-11-14", - "startDate": "2014-05-16", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": true - }, { "name": "SHELL CANADA PRODUCTS", - "endDate": "2016-06-08", - "startDate": "2015-10-20", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": true - }, - { - "name": "IPSUM", - "endDate": "2019-06-24", - "startDate": "2014-04-26", + "endDate": "2018-01-30", + "startDate": "2021-05-26", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2021-05-28", - "startDate": "2015-10-05", - "notes": "", - "roles": [ - "EMPLOYEE" - ], "siteRegistry": false } ], "suspectLandUses": [ { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-08-25 (described on Site Profile dated 2022-08-25)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "notes": "INSERTED FOR SITE PROFILE DATED 2016-03-27 (described on Site Profile dated 2016-03-27)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-03-15 (described on Site Profile dated 2016-03-15)", + "notes": "INSERTED FOR SITE PROFILE DATED 2022-01-29 (described on Site Profile dated 2022-01-29)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" - }, + } + ], + "parcelDescriptions": [ { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-09-16 (described on Site Profile dated 2022-09-16)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "dateNoted": "2022-06-08", + "parcelID": "16855", + "crownLandUsePIN": "19383", + "crownLandFileNumber": "19791", + "landDescription": "LOT 2 OF LOT 5 BLOCK 4 DISTRICT LOT 5 PLAN 3857" }, { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-06-29 (described on Site Profile dated 2017-06-29)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "dateNoted": "2014-12-09", + "parcelID": "20491", + "crownLandUsePIN": "16362", + "crownLandFileNumber": "19959", + "landDescription": "LOT 1 OF LOT 2 BLOCK 5 DISTRICT LOT 3 PLAN 8835" + }, + { + "siteRegistry": true, + "dateNoted": "2019-01-28", + "parcelID": "16426", + "crownLandUsePIN": "18575", + "crownLandFileNumber": "15652", + "landDescription": "LOT 2 OF LOT 5 BLOCK 3 DISTRICT LOT 1 PLAN 5180" } ], "siteDisclosures": [ { "siteRegistry": false, - "dateReceived": "2017-11-17", - "dateCompleted": "2022-07-25", - "dateEntered": "2019-08-23", - "dateRegistrar": "2018-04-19", - "dateLocalAuthorityReceived": "2018-03-15", - "summary": "Quibusdam beatae sit quaerat nam.\nLaborum delectus culpa.\nNobis minus reiciendis provident iusto ex commodi maxime.", - "informationUsed": "Dolores nostrum consectetur esse similique assumenda.\nMagnam a commodi deleniti debitis.\nInventore cupiditate molestias nobis sint in.\nSuscipit reprehenderit laudantium laudantium.\nAd nostrum itaque quidem facere reprehenderit vel.", - "pastOrPresentOrders": "Dicta ipsum id reprehenderit laudantium soluta sequi quaerat minus libero.\nQuo quos molestiae reiciendis in quaerat asperiores.", + "dateReceived": "2021-09-23", + "dateCompleted": "2015-04-07", + "dateEntered": "2017-12-27", + "dateRegistrar": "2016-08-28", + "dateLocalAuthorityReceived": "2018-12-24", + "summary": "Illo rerum dolore dolorem voluptas.\nQuibusdam ea atque odit.", + "informationUsed": "Doloribus tenetur veniam dolorem possimus odio eos sit.\nDoloremque quos eum aliquid quasi recusandae.\nCorporis nulla cumque aperiam maiores nisi dicta deleniti reiciendis nisi.\nError temporibus in cum eum ad nihil temporibus asperiores.", + "pastOrPresentOrders": "Possimus provident esse dolorum vel quis officia ratione excepturi commodi.\nSuscipit eligendi magnam impedit voluptatibus commodi corrupti dolorum illo.\nDolorem placeat expedita tempore officia quae.", "commercialAndIndustrialPurposes": [ - { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false - }, { "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true + "siteRegistry": false }, { "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true - } - ] - }, - { - "siteRegistry": true, - "dateReceived": "2023-10-05", - "dateCompleted": "2020-04-09", - "dateEntered": "2016-08-25", - "dateRegistrar": "2018-11-24", - "dateLocalAuthorityReceived": "2016-07-23", - "summary": "Voluptas pariatur molestiae enim voluptatum ut.", - "informationUsed": "Eum excepturi unde quod ab.\nEx corrupti deserunt quod aliquam voluptatum vitae.\nQuam pariatur aut explicabo exercitationem commodi possimus.", - "pastOrPresentOrders": "Consequatur quam non.\nDistinctio aliquam possimus eius iusto voluptatem.", - "commercialAndIndustrialPurposes": [ + "siteRegistry": false + }, { "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true - }, - { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false } ] } @@ -27034,88 +30266,89 @@ { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "GRAHAM JOLIE", - "timestamp": "2022-01-07" + "user": "RODRIGUEZ JOHANNA", + "timestamp": "2022-06-09" }, { - "siteRegistry": true, + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "SCHINNER OLAF", - "timestamp": "2022-04-12" + "user": "SCHROEDER KEN", + "timestamp": "2017-07-28" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "STIEDEMANN LACEY", - "timestamp": "2018-05-11" + "user": "AUFDERHAR BRADFORD", + "timestamp": "2023-04-02" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "KUB MATHIAS", - "timestamp": "2019-08-14" - }, - { - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "KUHLMAN IRMA", - "timestamp": "2018-02-10" + "user": "STEUBER IMELDA", + "timestamp": "2014-04-13" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "KEEBLER ZITA", - "timestamp": "2018-09-25" + "user": "ROMAGUERA KEIRA", + "timestamp": "2014-04-07" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "KIEHN-FARRELL ADALINE", - "timestamp": "2020-06-07" + "user": "BOYLE REVA", + "timestamp": "2023-08-07" } ], "associatedSites": [ { - "dateNoted": "2017-07-29", + "dateNoted": "2018-12-03", "notes": "", - "parcelID": "19713", - "siteID": "19726", - "siteRegistry": true + "parcelID": "19559", + "siteID": "17194", + "siteRegistry": false }, { - "dateNoted": "2020-07-07", + "dateNoted": "2020-06-18", "notes": "", - "parcelID": "16307", - "siteID": "16863", + "parcelID": "15840", + "siteID": "19399", "siteRegistry": true + }, + { + "dateNoted": "2014-09-01", + "notes": "", + "parcelID": "17503", + "siteID": "17225", + "siteRegistry": false } ] }, { - "uuid": "28680e8c-fe6e-4831-b26e-555594b180f0", - "siteID": 16617, - "address": "474 Bernhard Radial", - "latitude": 52.0004, - "longitude": -125.0877, - "lastUpdated": "2015-01-07", - "city": "Margarettfort", - "region": "Kootenay", - "victoriaFile": "26250-20/19760", + "uuid": "28ab81ae-dcbe-4573-938f-ff89214a966e", + "siteID": 19583, + "address": "20416 Douglas Cliffs", + "latitude": 56.439, + "longitude": -135.0798, + "lastUpdated": "2023-05-01", + "city": "West Traceyport", + "region": "Mainland/Southwest", + "victoriaFile": "26250-20/1480", "regionalFile": "N/A", "parcelIDs": [ - 8210505, - 8295722, - 7193555, - 9864857, - 7095727 + 6741421, + 1319390, + 1676786, + 7708665, + 6583602 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2016-01-12", - "completed": "2021-06-12", - "initiated": "2016-12-02", - "ministryContact": "MACGYVER KHALID", + "createdAt": "2022-08-13", + "completed": "2022-05-26", + "initiated": "2023-06-28", + "ministryContact": "MCKENZIE TYSON", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -27124,38 +30357,58 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false - }, + } + ], + "siteRegistry": false + }, + { + "createdAt": "2017-02-14", + "completed": "2019-07-26", + "initiated": "2021-11-19", + "ministryContact": "MACEJKOVIC KAREEM", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2021-01-19", - "completed": "2015-06-27", - "initiated": "2020-10-29", - "ministryContact": "O'KEEFE KAILEE", + "createdAt": "2022-07-17", + "completed": "2019-01-31", + "initiated": "2015-01-24", + "ministryContact": "MCLAUGHLIN RETTA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -27165,19 +30418,39 @@ "notationParticipants": [ { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true + "role": "REQUESTED BY", + "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "createdAt": "2019-10-01", + "completed": "2022-03-25", + "initiated": "2014-10-17", + "ministryContact": "QUITZON CLEORA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", @@ -27186,7 +30459,47 @@ { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "createdAt": "2016-02-23", + "completed": "2017-08-26", + "initiated": "2016-07-13", + "ministryContact": "HARVEY MAVIS", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false } ], "siteRegistry": false @@ -27195,18 +30508,8 @@ "participants": [ { "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2021-12-24", - "startDate": "2019-06-03", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2019-10-14", - "startDate": "2019-12-02", + "endDate": "2023-04-17", + "startDate": "2020-11-13", "notes": "", "roles": [ "ORGANIZATION" @@ -27214,95 +30517,96 @@ "siteRegistry": false }, { - "name": "AMET, DOLOR SIT", - "endDate": "2019-09-17", - "startDate": "2014-08-30", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2019-11-23", + "startDate": "2014-01-05", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": true }, { - "name": "IPSUM", - "endDate": "2019-02-22", - "startDate": "2018-08-06", + "name": "AMET, DOLOR SIT", + "endDate": "2020-05-04", + "startDate": "2022-10-20", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], - "siteRegistry": false + "siteRegistry": true } ], "suspectLandUses": [ { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-04-03 (described on Site Profile dated 2016-04-03)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "notes": "INSERTED FOR SITE PROFILE DATED 2014-07-27 (described on Site Profile dated 2014-07-27)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-01-04 (described on Site Profile dated 2017-01-04)", + "notes": "INSERTED FOR SITE PROFILE DATED 2023-08-09 (described on Site Profile dated 2023-08-09)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2023-04-16 (described on Site Profile dated 2023-04-16)", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2019-04-09 (described on Site Profile dated 2019-04-09)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-02-10 (described on Site Profile dated 2017-02-10)", + "notes": "INSERTED FOR SITE PROFILE DATED 2023-08-08 (described on Site Profile dated 2023-08-08)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], - "siteDisclosures": [ + "parcelDescriptions": [ { "siteRegistry": false, - "dateReceived": "2019-02-16", - "dateCompleted": "2020-03-26", - "dateEntered": "2018-03-03", - "dateRegistrar": "2021-11-10", - "dateLocalAuthorityReceived": "2018-04-03", - "summary": "Nemo corrupti vero ab deserunt animi ut laudantium laudantium velit.\nIpsa error assumenda consequatur natus labore labore aliquam repellendus aliquid.\nOfficia sed asperiores.", - "informationUsed": "Sapiente repellat vitae necessitatibus iusto occaecati nobis dolore.\nTempora hic vero.\nCumque ea labore at corporis doloribus iste.\nCulpa laborum quidem ipsam temporibus hic omnis sed libero esse.\nAliquam dolor debitis cupiditate.", - "pastOrPresentOrders": "Nostrum unde corrupti ea numquam voluptatibus odit esse libero sit.\nMinima ipsa accusamus.\nFuga omnis aperiam hic nulla accusamus doloremque quas.", - "commercialAndIndustrialPurposes": [ - { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true - }, - { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true - }, - { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true - }, - { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true - } - ] + "dateNoted": "2020-07-01", + "parcelID": "20574", + "crownLandUsePIN": "17930", + "crownLandFileNumber": "19403", + "landDescription": "LOT 4 OF LOT 2 BLOCK 3 DISTRICT LOT 1 PLAN 5169" + }, + { + "siteRegistry": false, + "dateNoted": "2014-07-17", + "parcelID": "18575", + "crownLandUsePIN": "15797", + "crownLandFileNumber": "17564", + "landDescription": "LOT 1 OF LOT 4 BLOCK 2 DISTRICT LOT 1 PLAN 6755" }, { "siteRegistry": true, - "dateReceived": "2021-05-17", - "dateCompleted": "2016-12-03", - "dateEntered": "2017-08-13", - "dateRegistrar": "2017-02-04", - "dateLocalAuthorityReceived": "2016-01-13", - "summary": "Reiciendis aut dignissimos et veritatis amet aut vel temporibus.\nTempore quod commodi consectetur est odio laudantium.", - "informationUsed": "Sed quod repellendus vero vitae cumque.\nEarum doloremque saepe odio porro enim expedita quisquam architecto nihil.\nLabore perspiciatis odio veritatis asperiores dolorem ab impedit.\nQuos beatae quis aut ad.", - "pastOrPresentOrders": "Provident perspiciatis magnam ut occaecati.\nNihil possimus ut modi architecto.", + "dateNoted": "2014-10-08", + "parcelID": "17344", + "crownLandUsePIN": "16321", + "crownLandFileNumber": "20971", + "landDescription": "LOT 1 OF LOT 5 BLOCK 2 DISTRICT LOT 1 PLAN 6100" + }, + { + "siteRegistry": true, + "dateNoted": "2019-05-25", + "parcelID": "19061", + "crownLandUsePIN": "15393", + "crownLandFileNumber": "15970", + "landDescription": "LOT 5 OF LOT 3 BLOCK 5 DISTRICT LOT 3 PLAN 3986" + } + ], + "siteDisclosures": [ + { + "siteRegistry": false, + "dateReceived": "2019-12-06", + "dateCompleted": "2018-09-06", + "dateEntered": "2018-01-29", + "dateRegistrar": "2021-10-03", + "dateLocalAuthorityReceived": "2017-07-04", + "summary": "Atque laborum veritatis optio amet fugiat architecto dicta.", + "informationUsed": "Autem harum repudiandae.\nDoloribus impedit quae.\nAmet veritatis perferendis cum et.\nSint soluta quibusdam.\nVelit nisi repellendus deleniti blanditiis omnis nihil.", + "pastOrPresentOrders": "Tempore ab distinctio explicabo eos consequatur error perspiciatis minima vero.\nNemo dignissimos reiciendis non et expedita molestiae dicta labore.\nCorporis tempore asperiores quae autem laborum commodi culpa vero.", "commercialAndIndustrialPurposes": [ { - "scheduleReference": "F1*", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, @@ -27312,14 +30616,9 @@ "siteRegistry": true }, { - "scheduleReference": "F1*", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false - }, - { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true } ] } @@ -27328,107 +30627,113 @@ { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "BODE EDYTH", - "timestamp": "2020-06-18" + "user": "ROHAN TRENT", + "timestamp": "2013-11-02" }, { - "siteRegistry": true, + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "HACKETT KARINA", - "timestamp": "2016-10-16" + "user": "MARQUARDT AYLA", + "timestamp": "2015-08-05" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "DIBBERT MARCELINA", - "timestamp": "2022-07-15" + "user": "MOORE JOY", + "timestamp": "2016-03-07" }, { - "siteRegistry": true, + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "TOWNE SILAS", - "timestamp": "2020-01-31" + "user": "MOHR AMANDA", + "timestamp": "2018-01-08" }, { - "siteRegistry": true, + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "RAU BRENNA", - "timestamp": "2014-01-30" + "user": "STIEDEMANN PRISCILLA", + "timestamp": "2014-04-04" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "HANSEN TRINITY", - "timestamp": "2015-10-22" + "user": "SCHOEN JAMEY", + "timestamp": "2018-01-19" }, { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "SANFORD DANIELLA", - "timestamp": "2016-12-28" + "user": "ROBERTS SALLIE", + "timestamp": "2017-09-16" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "PADBERG ASHLY", - "timestamp": "2014-02-11" + "user": "SIPES DEION", + "timestamp": "2016-08-30" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "LOWE JAYDEN", + "timestamp": "2021-09-08" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "SPENCER ADA", - "timestamp": "2023-08-28" + "user": "SAWAYN ROSS", + "timestamp": "2015-04-04" } ], "associatedSites": [ { - "dateNoted": "2022-06-17", + "dateNoted": "2019-08-26", "notes": "", - "parcelID": "18993", - "siteID": "16920", - "siteRegistry": true + "parcelID": "15221", + "siteID": "19747", + "siteRegistry": false }, { - "dateNoted": "2017-02-02", + "dateNoted": "2015-12-29", "notes": "", - "parcelID": "19358", - "siteID": "16209", - "siteRegistry": true + "parcelID": "19416", + "siteID": "17110", + "siteRegistry": false }, { - "dateNoted": "2023-08-31", + "dateNoted": "2015-05-02", "notes": "", - "parcelID": "16457", - "siteID": "18123", + "parcelID": "19325", + "siteID": "20293", "siteRegistry": false } ] }, { - "uuid": "33a4d128-870e-44d7-9a26-a6e9a6b9b45d", - "siteID": 20521, - "address": "34777 Waldo Fields", - "latitude": 52.1075, - "longitude": -136.7756, - "lastUpdated": "2016-07-07", - "city": "Fort Joanyworth", - "region": "Cariboo", - "victoriaFile": "26250-20/12099", + "uuid": "e223d670-ee9a-4781-bbfb-0c0d92e31c3b", + "siteID": 16201, + "address": "654 Jaclyn Freeway", + "latitude": 54.7918, + "longitude": -137.1496, + "lastUpdated": "2017-10-13", + "city": "Darrenfield", + "region": " North Coast", + "victoriaFile": "26250-20/4589", "regionalFile": "N/A", "parcelIDs": [ - 969690, - 6820894, - 6454869, - 1049186, - 713349 + 6066888, + 5192120, + 3838135, + 2110992, + 8415157 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2015-08-11", - "completed": "2023-10-04", - "initiated": "2018-09-17", - "ministryContact": "ROLFSON ALEJANDRIN", + "createdAt": "2020-01-03", + "completed": "2018-03-02", + "initiated": "2018-07-25", + "ministryContact": "MARKS BRITNEY", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -27437,33 +30742,28 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false + "role": "SUBMITTED BY", + "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true } ], "siteRegistry": true }, { - "createdAt": "2015-11-30", - "completed": "2017-03-15", - "initiated": "2021-08-21", - "ministryContact": "ROBEL MARCO", + "createdAt": "2016-08-15", + "completed": "2018-09-29", + "initiated": "2021-12-11", + "ministryContact": "GLEASON ALF", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -27473,8 +30773,8 @@ "notationParticipants": [ { "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false + "role": "REQUESTED BY", + "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", @@ -27483,22 +30783,27 @@ }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2015-08-09", - "completed": "2019-10-16", - "initiated": "2022-08-23", - "ministryContact": "BOTSFORD DORIAN", + "createdAt": "2020-03-31", + "completed": "2014-03-21", + "initiated": "2019-10-31", + "ministryContact": "OBERBRUNNER VINCENZO", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -27511,34 +30816,19 @@ "role": "REQUESTED BY", "siteRegistry": true }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true } ], "siteRegistry": false }, { - "createdAt": "2019-11-01", - "completed": "2022-05-16", - "initiated": "2015-12-18", - "ministryContact": "RUECKER NORA", + "createdAt": "2015-01-31", + "completed": "2018-07-29", + "initiated": "2021-09-19", + "ministryContact": "LOCKMAN JOYCE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -27548,32 +30838,32 @@ "notationParticipants": [ { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2015-09-15", - "completed": "2022-10-01", - "initiated": "2017-03-02", - "ministryContact": "HEGMANN JUDAH", + "createdAt": "2014-10-06", + "completed": "2020-04-18", + "initiated": "2017-09-14", + "ministryContact": "FRIESEN MARILOU", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -27590,21 +30880,26 @@ "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false } ], "participants": [ { - "name": "IPSUM", - "endDate": "2014-01-12", - "startDate": "2015-03-07", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2023-02-11", + "startDate": "2018-01-27", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2014-01-26", + "startDate": "2016-06-19", "notes": "", "roles": [ "ORGANIZATION" @@ -27613,82 +30908,118 @@ }, { "name": "IPSUM", - "endDate": "2022-03-09", - "startDate": "2015-05-25", + "endDate": "2020-06-18", + "startDate": "2016-01-20", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": true + }, + { + "name": "AMET, DOLOR SIT", + "endDate": "2021-07-10", + "startDate": "2019-10-14", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false } ], "suspectLandUses": [ { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-09-18 (described on Site Profile dated 2019-09-18)", + "notes": "INSERTED FOR SITE PROFILE DATED 2018-10-27 (described on Site Profile dated 2018-10-27)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-12-16 (described on Site Profile dated 2017-12-16)", + "notes": "INSERTED FOR SITE PROFILE DATED 2022-12-26 (described on Site Profile dated 2022-12-26)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2020-06-09 (described on Site Profile dated 2020-06-09)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "notes": "INSERTED FOR SITE PROFILE DATED 2015-05-30 (described on Site Profile dated 2015-05-30)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2018-12-17 (described on Site Profile dated 2018-12-17)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-11-14 (described on Site Profile dated 2022-11-14)", + "notes": "INSERTED FOR SITE PROFILE DATED 2023-04-03 (described on Site Profile dated 2023-04-03)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], + "parcelDescriptions": [ + { + "siteRegistry": false, + "dateNoted": "2022-03-26", + "parcelID": "20932", + "crownLandUsePIN": "18631", + "crownLandFileNumber": "17370", + "landDescription": "LOT 5 OF LOT 5 BLOCK 2 DISTRICT LOT 5 PLAN 4788" + }, + { + "siteRegistry": false, + "dateNoted": "2020-08-11", + "parcelID": "19199", + "crownLandUsePIN": "18986", + "crownLandFileNumber": "15367", + "landDescription": "LOT 4 OF LOT 1 BLOCK 3 DISTRICT LOT 2 PLAN 3166" + }, + { + "siteRegistry": false, + "dateNoted": "2014-04-20", + "parcelID": "20752", + "crownLandUsePIN": "17951", + "crownLandFileNumber": "16134", + "landDescription": "LOT 3 OF LOT 5 BLOCK 1 DISTRICT LOT 4 PLAN 8323" + } + ], "siteDisclosures": [ { "siteRegistry": true, - "dateReceived": "2020-10-08", - "dateCompleted": "2018-05-31", - "dateEntered": "2015-06-25", - "dateRegistrar": "2019-08-07", - "dateLocalAuthorityReceived": "2018-03-16", - "summary": "Velit doloremque dolores.\nMagnam amet ab.\nVoluptate et excepturi ab aliquam facilis non animi.", - "informationUsed": "Maiores voluptatibus distinctio laboriosam rerum labore quam dignissimos quam.\nEnim fuga optio unde.\nNatus rem nam ullam atque vero quasi repellat.", - "pastOrPresentOrders": "Quibusdam suscipit non aspernatur cum eveniet ut cumque natus.\nIn veritatis inventore aut accusamus praesentium.", + "dateReceived": "2022-03-11", + "dateCompleted": "2020-07-29", + "dateEntered": "2020-11-15", + "dateRegistrar": "2018-03-06", + "dateLocalAuthorityReceived": "2019-11-09", + "summary": "Eligendi ea quas animi.\nInventore numquam blanditiis molestiae incidunt animi debitis soluta suscipit.\nRepellat voluptate at esse.", + "informationUsed": "Molestias voluptate et corporis modi accusamus aliquam accusamus ullam sequi.\nSaepe sequi quae alias quos doloribus.\nDeleniti earum illo eum commodi odit natus quae tempore.\nDelectus voluptates amet neque quisquam ratione cumque.", + "pastOrPresentOrders": "Ex possimus soluta facere.", "commercialAndIndustrialPurposes": [ { "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false }, { - "scheduleReference": "F2*", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true + "siteRegistry": false } ] }, { "siteRegistry": false, - "dateReceived": "2019-07-27", - "dateCompleted": "2021-01-08", - "dateEntered": "2022-05-02", - "dateRegistrar": "2023-05-28", - "dateLocalAuthorityReceived": "2016-09-19", - "summary": "Corrupti voluptatem enim repellendus assumenda tenetur.", - "informationUsed": "Hic iure magnam voluptatum officia ipsam expedita quis ipsam perspiciatis.\nMaxime consectetur maiores dicta eligendi.\nEarum saepe tempore perferendis eveniet.", - "pastOrPresentOrders": "Eius doloremque dolorem quaerat porro.", + "dateReceived": "2020-06-15", + "dateCompleted": "2021-05-31", + "dateEntered": "2020-04-26", + "dateRegistrar": "2015-06-06", + "dateLocalAuthorityReceived": "2019-11-02", + "summary": "Ratione laudantium ipsum.", + "informationUsed": "Asperiores fugiat aliquam ratione nisi adipisci.\nEius maiores et et eaque nobis nesciunt ratione voluptatum placeat.\nNumquam alias iure sapiente necessitatibus commodi voluptatem quo repudiandae nisi.", + "pastOrPresentOrders": "Perferendis sit dignissimos.", "commercialAndIndustrialPurposes": [ - { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false - }, { "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", @@ -27697,84 +31028,92 @@ { "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false + "siteRegistry": true } ] } ], "activityLog": [ { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "NADER DOUG", - "timestamp": "2013-11-09" - }, - { - "siteRegistry": true, + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "EFFERTZ MICAH", - "timestamp": "2019-04-12" + "user": "GRAHAM ASHTYN", + "timestamp": "2015-02-05" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "POUROS UBALDO", - "timestamp": "2017-06-25" + "user": "BOYER CARLETON", + "timestamp": "2018-08-18" }, { - "siteRegistry": true, + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "BLICK JAYDE", - "timestamp": "2022-05-05" + "user": "MCKENZIE TORREY", + "timestamp": "2022-07-21" }, { - "siteRegistry": true, + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "SMITHAM BERNICE", - "timestamp": "2022-03-14" + "user": "PROHASKA-JERDE JACQUES", + "timestamp": "2018-03-09" }, { - "siteRegistry": true, + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "JOHNSON ALIA", - "timestamp": "2020-02-04" + "user": "KUVALIS WILFREDO", + "timestamp": "2022-06-22" } ], "associatedSites": [ { - "dateNoted": "2020-11-06", + "dateNoted": "2017-03-05", "notes": "", - "parcelID": "16854", - "siteID": "19075", + "parcelID": "20652", + "siteID": "18770", + "siteRegistry": false + }, + { + "dateNoted": "2023-09-21", + "notes": "", + "parcelID": "20149", + "siteID": "18547", + "siteRegistry": true + }, + { + "dateNoted": "2015-10-28", + "notes": "", + "parcelID": "19875", + "siteID": "16253", "siteRegistry": false } ] }, { - "uuid": "281abc88-01dc-45ea-bd84-52ce3a1b5ceb", - "siteID": 19157, - "address": "35974 Breitenberg Mountain", - "latitude": 52.8155, - "longitude": -126.8254, - "lastUpdated": "2020-08-02", - "city": "Fort Myabury", + "uuid": "6434884c-0bc0-4070-ab30-830dc2e86c9c", + "siteID": 20810, + "address": "282 Richie Alley", + "latitude": 52.9456, + "longitude": -134.747, + "lastUpdated": "2014-07-02", + "city": "Gerlachview", "region": "Cariboo", - "victoriaFile": "26250-20/10662", + "victoriaFile": "26250-20/15070", "regionalFile": "N/A", "parcelIDs": [ - 8281998, - 5312929, - 881947, - 1125670, - 2382749 + 192042, + 8754902, + 6498135, + 7703019, + 2359847 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2014-08-22", - "completed": "2017-09-26", - "initiated": "2015-12-29", - "ministryContact": "CONROY COLTON", + "createdAt": "2021-04-30", + "completed": "2020-11-09", + "initiated": "2023-05-26", + "ministryContact": "ROSENBAUM ARIC", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -27784,6 +31123,11 @@ "notationParticipants": [ { "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true }, @@ -27791,15 +31135,20 @@ "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true } ], "siteRegistry": true }, { - "createdAt": "2015-09-26", - "completed": "2021-04-06", - "initiated": "2018-09-12", - "ministryContact": "LANGOSH JODIE", + "createdAt": "2018-12-18", + "completed": "2021-09-19", + "initiated": "2022-12-18", + "ministryContact": "HARRIS-REYNOLDS HOWELL", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -27809,37 +31158,22 @@ "notationParticipants": [ { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2018-06-07", - "completed": "2018-08-23", - "initiated": "2016-07-05", - "ministryContact": "BORER JULIUS", + "createdAt": "2017-11-20", + "completed": "2020-03-08", + "initiated": "2014-01-02", + "ministryContact": "CHRISTIANSEN RANDY", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -27848,25 +31182,15 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", @@ -27876,10 +31200,10 @@ "siteRegistry": true }, { - "createdAt": "2017-09-05", - "completed": "2015-12-05", - "initiated": "2022-06-17", - "ministryContact": "KUNZE MAKENNA", + "createdAt": "2019-05-05", + "completed": "2016-04-24", + "initiated": "2022-08-25", + "ministryContact": "O'CONNER VIVIANE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -27889,6 +31213,11 @@ "notationParticipants": [ { "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true }, @@ -27900,16 +31229,16 @@ { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false } ], "siteRegistry": true }, { - "createdAt": "2023-07-22", - "completed": "2020-03-05", - "initiated": "2015-07-05", - "ministryContact": "HEIDENREICH GREG", + "createdAt": "2023-02-25", + "completed": "2021-10-09", + "initiated": "2016-10-11", + "ministryContact": "WIZA PINKIE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -27917,14 +31246,19 @@ "" ], "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true + "role": "SUBMITTED BY", + "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false } ], @@ -27933,19 +31267,49 @@ ], "participants": [ { - "name": "AMET, DOLOR SIT", - "endDate": "2021-01-04", - "startDate": "2019-02-14", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2013-12-31", + "startDate": "2021-07-30", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false }, { "name": "IPSUM", - "endDate": "2015-11-21", - "startDate": "2015-08-24", + "endDate": "2014-05-21", + "startDate": "2014-01-14", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2017-05-10", + "startDate": "2017-04-27", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2021-07-18", + "startDate": "2023-06-25", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2019-08-10", + "startDate": "2022-07-03", "notes": "", "roles": [ "ORGANIZATION" @@ -27956,65 +31320,63 @@ "suspectLandUses": [ { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2020-11-08 (described on Site Profile dated 2020-11-08)", + "notes": "INSERTED FOR SITE PROFILE DATED 2023-08-28 (described on Site Profile dated 2023-08-28)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-10-15 (described on Site Profile dated 2016-10-15)", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2021-07-06 (described on Site Profile dated 2021-07-06)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2023-02-07 (described on Site Profile dated 2023-02-07)", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2014-06-04 (described on Site Profile dated 2014-06-04)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], - "siteDisclosures": [ + "parcelDescriptions": [ + { + "siteRegistry": false, + "dateNoted": "2018-07-24", + "parcelID": "18397", + "crownLandUsePIN": "15486", + "crownLandFileNumber": "19504", + "landDescription": "LOT 4 OF LOT 4 BLOCK 1 DISTRICT LOT 1 PLAN 6645" + }, + { + "siteRegistry": false, + "dateNoted": "2015-09-04", + "parcelID": "16455", + "crownLandUsePIN": "16785", + "crownLandFileNumber": "18778", + "landDescription": "LOT 2 OF LOT 2 BLOCK 2 DISTRICT LOT 4 PLAN 3885" + }, { "siteRegistry": true, - "dateReceived": "2022-01-24", - "dateCompleted": "2018-11-02", - "dateEntered": "2020-04-04", - "dateRegistrar": "2016-04-29", - "dateLocalAuthorityReceived": "2019-04-10", - "summary": "Eum neque harum unde quod.\nQuibusdam omnis quisquam.", - "informationUsed": "Veritatis voluptates perspiciatis autem qui.\nCulpa veniam molestiae dicta provident.\nQuos id nesciunt magnam ad in.", - "pastOrPresentOrders": "Blanditiis eveniet animi ad soluta magni illo ullam.\nPraesentium minima delectus aspernatur beatae perspiciatis nesciunt vel.\nDolorem dolorem provident fugiat quia assumenda voluptatem ad magnam.", + "dateNoted": "2016-06-26", + "parcelID": "15713", + "crownLandUsePIN": "19030", + "crownLandFileNumber": "17046", + "landDescription": "LOT 1 OF LOT 4 BLOCK 3 DISTRICT LOT 2 PLAN 7567" + } + ], + "siteDisclosures": [ + { + "siteRegistry": false, + "dateReceived": "2017-08-14", + "dateCompleted": "2019-06-18", + "dateEntered": "2014-06-22", + "dateRegistrar": "2015-02-19", + "dateLocalAuthorityReceived": "2019-09-24", + "summary": "Distinctio mollitia enim beatae consequuntur corporis.\nLibero repellendus tempora numquam ullam velit minus.\nVoluptatum nobis impedit ea aliquid vel debitis consequatur doloribus.", + "informationUsed": "Sapiente possimus dignissimos nemo vero.\nTenetur ipsa illo iste aut nobis officia.\nSequi repellendus similique.\nReiciendis repellat adipisci nostrum enim aut quasi.", + "pastOrPresentOrders": "Animi autem est enim labore vitae autem ab dolorum.\nSaepe exercitationem dicta nihil dignissimos quod explicabo.\nDeleniti libero eligendi.", "commercialAndIndustrialPurposes": [ - { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true - }, - { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false - }, { "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true + "siteRegistry": false }, - { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true - } - ] - }, - { - "siteRegistry": true, - "dateReceived": "2017-08-22", - "dateCompleted": "2020-09-30", - "dateEntered": "2014-07-05", - "dateRegistrar": "2023-09-17", - "dateLocalAuthorityReceived": "2015-07-03", - "summary": "Distinctio sit sit vitae doloribus eligendi perspiciatis tempora culpa quidem.\nEius ab sunt alias quos nam minima et.", - "informationUsed": "Voluptatibus impedit asperiores expedita sapiente enim esse quis.\nNatus temporibus quisquam quia dolorem velit voluptates ullam.\nMinus ipsam ab voluptatem aperiam nihil.\nEt hic possimus qui atque quas.\nItaque rem at quaerat exercitationem nemo.", - "pastOrPresentOrders": "Deleniti aliquam nisi vitae ad itaque dolorem dignissimos porro sit.\nProvident consequatur nesciunt.\nEveniet accusantium consectetur porro dicta.", - "commercialAndIndustrialPurposes": [ { "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", @@ -28023,97 +31385,120 @@ { "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false + "siteRegistry": true }, { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true } ] } ], "activityLog": [ + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "D'AMORE ELINOR", + "timestamp": "2019-09-25" + }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "ZIEME MARQUISE", - "timestamp": "2020-10-15" + "user": "SCHROEDER BENNIE", + "timestamp": "2022-06-09" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "WUNSCH MARLEY", + "timestamp": "2018-10-20" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "FAY KIRSTEN", - "timestamp": "2021-09-07" + "user": "BRAUN BREANNE", + "timestamp": "2022-03-19" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "BARTELL LORA", + "timestamp": "2017-10-16" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "HAAG DENA", - "timestamp": "2017-10-09" + "user": "FISHER JOHNNIE", + "timestamp": "2016-08-19" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "ABBOTT DAMION", - "timestamp": "2017-12-12" + "user": "BERNHARD MYRNA", + "timestamp": "2016-11-13" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "MARKS MOSE", + "timestamp": "2022-03-20" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "BECHTELAR ODESSA", - "timestamp": "2018-06-01" + "user": "DICKI ANISSA", + "timestamp": "2017-12-01" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "STARK MARLON", + "timestamp": "2014-08-04" } ], "associatedSites": [ { - "dateNoted": "2020-07-01", - "notes": "", - "parcelID": "20573", - "siteID": "20789", - "siteRegistry": false - }, - { - "dateNoted": "2022-09-13", + "dateNoted": "2015-08-18", "notes": "", - "parcelID": "16503", - "siteID": "17846", - "siteRegistry": false + "parcelID": "16886", + "siteID": "16934", + "siteRegistry": true }, { - "dateNoted": "2013-11-07", + "dateNoted": "2023-05-11", "notes": "", - "parcelID": "16300", - "siteID": "16740", + "parcelID": "17093", + "siteID": "19235", "siteRegistry": false } ] }, { - "uuid": "2e206365-af4b-4a5b-b794-4c16bc1f94fa", - "siteID": 16209, - "address": "102 Gilda Highway", - "latitude": 58.2959, - "longitude": -127.9798, - "lastUpdated": "2014-12-24", - "city": "Gudrunport", - "region": "Vancouver Island/Coast", - "victoriaFile": "26250-20/1507", + "uuid": "e7f611d4-b61d-4eb5-b934-02f4c985d5ce", + "siteID": 16934, + "address": "682 Mueller Greens", + "latitude": 54.1376, + "longitude": -128.6904, + "lastUpdated": "2018-12-24", + "city": "Lake Ali", + "region": "Thompson-Okanagan", + "victoriaFile": "26250-20/10017", "regionalFile": "N/A", "parcelIDs": [ - 1334218, - 2804903, - 9363916, - 1577929, - 7554358 + 1394712, + 2510872, + 3288768, + 8205967, + 9393469 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2018-07-21", - "completed": "2019-01-23", - "initiated": "2014-09-24", - "ministryContact": "HERMAN PATIENCE", + "createdAt": "2014-06-20", + "completed": "2018-10-08", + "initiated": "2014-07-01", + "ministryContact": "ANKUNDING LYSANNE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -28121,18 +31506,13 @@ "" ], "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, { "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false }, @@ -28142,13 +31522,13 @@ "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2018-01-24", - "completed": "2018-06-30", - "initiated": "2016-03-01", - "ministryContact": "JOHNSTON STUART", + "createdAt": "2020-07-12", + "completed": "2023-04-14", + "initiated": "2020-01-12", + "ministryContact": "MORISSETTE REID", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -28158,7 +31538,7 @@ "notationParticipants": [ { "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": true }, { @@ -28166,29 +31546,19 @@ "role": "SUBMITTED BY", "siteRegistry": false }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, { "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2018-03-09", - "completed": "2018-01-08", - "initiated": "2023-06-29", - "ministryContact": "HILLL ELOISA", + "createdAt": "2020-07-28", + "completed": "2017-08-09", + "initiated": "2023-02-02", + "ministryContact": "ZEMLAK DANNIE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -28196,31 +31566,11 @@ "" ], "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false - } - ], - "siteRegistry": true - }, - { - "createdAt": "2014-03-19", - "completed": "2022-04-18", - "initiated": "2016-05-11", - "ministryContact": "GUSIKOWSKI SHAYNE", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ + }, { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", @@ -28229,7 +31579,7 @@ { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false } ], "siteRegistry": false @@ -28237,19 +31587,19 @@ ], "participants": [ { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2017-07-04", - "startDate": "2020-07-23", + "name": "IPSUM", + "endDate": "2019-02-06", + "startDate": "2019-06-29", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2017-11-25", - "startDate": "2016-12-09", + "name": "AMET, DOLOR SIT", + "endDate": "2015-09-18", + "startDate": "2023-05-09", "notes": "", "roles": [ "EMPLOYEE" @@ -28257,9 +31607,19 @@ "siteRegistry": false }, { - "name": "IPSUM", - "endDate": "2017-09-13", - "startDate": "2022-03-24", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2021-08-03", + "startDate": "2020-05-08", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2021-07-13", + "startDate": "2017-06-05", "notes": "", "roles": [ "ORGANIZATION" @@ -28268,164 +31628,188 @@ }, { "name": "SHELL CANADA PRODUCTS", - "endDate": "2018-11-24", - "startDate": "2015-03-03", + "endDate": "2017-10-20", + "startDate": "2015-03-20", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": false + } + ], + "suspectLandUses": [ + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2017-06-21 (described on Site Profile dated 2017-06-21)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2015-07-31 (described on Site Profile dated 2015-07-31)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2017-05-09 (described on Site Profile dated 2017-05-09)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2018-02-14", - "startDate": "2020-04-10", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": false + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2017-12-21 (described on Site Profile dated 2017-12-21)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], - "suspectLandUses": [ + "parcelDescriptions": [ { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-05-06 (described on Site Profile dated 2018-05-06)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "dateNoted": "2020-08-11", + "parcelID": "16751", + "crownLandUsePIN": "19360", + "crownLandFileNumber": "16533", + "landDescription": "LOT 3 OF LOT 5 BLOCK 2 DISTRICT LOT 1 PLAN 5589" + }, + { + "siteRegistry": true, + "dateNoted": "2021-11-18", + "parcelID": "19834", + "crownLandUsePIN": "18414", + "crownLandFileNumber": "16582", + "landDescription": "LOT 3 OF LOT 3 BLOCK 2 DISTRICT LOT 1 PLAN 6394" }, { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2023-05-25 (described on Site Profile dated 2023-05-25)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "dateNoted": "2019-09-14", + "parcelID": "19373", + "crownLandUsePIN": "19037", + "crownLandFileNumber": "16499", + "landDescription": "LOT 2 OF LOT 1 BLOCK 4 DISTRICT LOT 3 PLAN 6826" }, { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-06-06 (described on Site Profile dated 2022-06-06)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "dateNoted": "2017-10-25", + "parcelID": "18980", + "crownLandUsePIN": "17558", + "crownLandFileNumber": "18180", + "landDescription": "LOT 5 OF LOT 2 BLOCK 3 DISTRICT LOT 1 PLAN 8098" + }, + { + "siteRegistry": false, + "dateNoted": "2023-08-02", + "parcelID": "17491", + "crownLandUsePIN": "16997", + "crownLandFileNumber": "16912", + "landDescription": "LOT 1 OF LOT 3 BLOCK 2 DISTRICT LOT 4 PLAN 3108" } ], "siteDisclosures": [ { "siteRegistry": false, - "dateReceived": "2016-07-26", - "dateCompleted": "2021-07-21", - "dateEntered": "2022-02-14", - "dateRegistrar": "2023-06-23", - "dateLocalAuthorityReceived": "2015-08-14", - "summary": "Aliquam voluptatibus ipsam recusandae dolorem rerum cumque ab.\nSaepe inventore laboriosam beatae similique iure quo laudantium ad.\nDolorum optio saepe voluptas perferendis.", - "informationUsed": "Tempora natus est omnis mollitia.\nIpsum ad fugit.\nSoluta enim quibusdam laborum molestias praesentium ex.\nQuod soluta cupiditate ea consequatur magni.", - "pastOrPresentOrders": "Excepturi dignissimos perspiciatis perspiciatis iure nisi alias excepturi.\nSed totam maxime deserunt at totam eos vero laborum.", + "dateReceived": "2016-05-23", + "dateCompleted": "2016-06-01", + "dateEntered": "2015-07-13", + "dateRegistrar": "2015-08-12", + "dateLocalAuthorityReceived": "2020-10-06", + "summary": "Iste reiciendis velit nisi reprehenderit commodi in.", + "informationUsed": "Voluptates id exercitationem quas voluptatum incidunt laboriosam.\nTemporibus accusamus quo.\nDebitis quasi possimus incidunt deleniti minus doloremque.\nAliquam voluptatem saepe necessitatibus corporis tempora.\nExplicabo suscipit quaerat quam.", + "pastOrPresentOrders": "Exercitationem ab perferendis doloribus sequi quam.\nEarum nam illo totam fugit accusantium iste dolores.", "commercialAndIndustrialPurposes": [ { "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true } ] } ], "activityLog": [ - { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "DENESIK HAILEY", - "timestamp": "2013-11-25" - }, - { - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "ZBONCAK ALFONSO", - "timestamp": "2013-10-18" - }, - { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "PROHASKA BART", - "timestamp": "2019-12-09" - }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "SCHMIDT CONCEPCION", - "timestamp": "2016-09-04" + "user": "WINDLER BUD", + "timestamp": "2018-06-09" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "BAHRINGER REUBEN", - "timestamp": "2019-07-03" + "user": "ORTIZ DAYNE", + "timestamp": "2015-12-11" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "TREMBLAY GERALDINE", - "timestamp": "2015-02-22" + "user": "SCHUSTER-MARVIN KAMRYN", + "timestamp": "2020-05-13" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "FISHER JENNIFER", - "timestamp": "2020-02-24" + "user": "LEDNER HILDEGARD", + "timestamp": "2016-09-13" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "ONDRICKA MELYNA", - "timestamp": "2018-11-09" + "user": "RATH DELORES", + "timestamp": "2022-01-23" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "DANIEL-MERTZ EDUARDO", - "timestamp": "2014-10-09" + "user": "REYNOLDS TRACY", + "timestamp": "2018-05-06" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "CARTWRIGHT ANGELO", - "timestamp": "2021-04-19" + "user": "METZ BURNICE", + "timestamp": "2013-11-14" } ], "associatedSites": [ { - "dateNoted": "2022-07-15", + "dateNoted": "2016-10-13", "notes": "", - "parcelID": "18584", - "siteID": "20418", + "parcelID": "19807", + "siteID": "18404", "siteRegistry": false } ] }, { - "uuid": "d39683b1-a4af-4d2b-9070-08c9010930db", - "siteID": 15594, - "address": "753 Johns Circles", - "latitude": 49.1944, - "longitude": -136.8007, - "lastUpdated": "2014-12-17", - "city": "Kayamouth", - "region": "Kootenay", - "victoriaFile": "26250-20/12981", + "uuid": "c54a9340-40e9-4691-9ff7-b7737730c256", + "siteID": 16938, + "address": "62997 Noah Skyway", + "latitude": 49.2872, + "longitude": -134.1861, + "lastUpdated": "2018-01-21", + "city": "San Luis Obispo", + "region": "Cariboo", + "victoriaFile": "26250-20/19314", "regionalFile": "N/A", "parcelIDs": [ - 5562021, - 6151212, - 2196271, - 3715649, - 2558042 + 7673194, + 7954474, + 1961430, + 8927580, + 9507997 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2021-06-29", - "completed": "2014-04-01", - "initiated": "2020-02-21", - "ministryContact": "DICKENS BREANNA", + "createdAt": "2015-12-28", + "completed": "2017-12-28", + "initiated": "2016-06-28", + "ministryContact": "KOELPIN DAISY", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -28435,32 +31819,27 @@ "notationParticipants": [ { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2016-07-11", - "completed": "2018-03-19", - "initiated": "2017-12-12", - "ministryContact": "FEEST DOUGLAS", + "createdAt": "2018-12-13", + "completed": "2016-02-15", + "initiated": "2016-08-25", + "ministryContact": "ROMAGUERA ABBEY", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -28469,13 +31848,8 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": true }, { @@ -28486,21 +31860,16 @@ { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2021-06-03", - "completed": "2021-05-12", - "initiated": "2020-07-26", - "ministryContact": "KOSS IMA", + "createdAt": "2015-04-04", + "completed": "2020-11-14", + "initiated": "2014-12-13", + "ministryContact": "NIKOLAUS ANISSA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -28508,6 +31877,11 @@ "" ], "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", @@ -28515,18 +31889,48 @@ }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false } ], "participants": [ { "name": "IPSUM", - "endDate": "2015-01-04", - "startDate": "2023-02-10", + "endDate": "2020-04-06", + "startDate": "2014-06-09", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2014-10-02", + "startDate": "2015-12-03", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2022-12-26", + "startDate": "2022-08-08", "notes": "", "roles": [ "ORGANIZATION" @@ -28534,22 +31938,22 @@ "siteRegistry": true }, { - "name": "IPSUM", - "endDate": "2015-02-02", - "startDate": "2017-05-16", + "name": "AMET, DOLOR SIT", + "endDate": "2016-12-29", + "startDate": "2021-07-27", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true }, { - "name": "IPSUM", - "endDate": "2023-05-15", - "startDate": "2015-03-30", + "name": "AMET, DOLOR SIT", + "endDate": "2019-05-18", + "startDate": "2020-05-25", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": true } @@ -28557,59 +31961,106 @@ "suspectLandUses": [ { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-02-11 (described on Site Profile dated 2022-02-11)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "notes": "INSERTED FOR SITE PROFILE DATED 2021-07-01 (described on Site Profile dated 2021-07-01)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-11-25 (described on Site Profile dated 2014-11-25)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" - }, + "notes": "INSERTED FOR SITE PROFILE DATED 2018-12-11 (described on Site Profile dated 2018-12-11)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + } + ], + "parcelDescriptions": [ { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-10-17 (described on Site Profile dated 2019-10-17)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "siteRegistry": true, + "dateNoted": "2017-10-23", + "parcelID": "17625", + "crownLandUsePIN": "17524", + "crownLandFileNumber": "16433", + "landDescription": "LOT 1 OF LOT 2 BLOCK 3 DISTRICT LOT 3 PLAN 6886" }, { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-08-07 (described on Site Profile dated 2022-08-07)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "dateNoted": "2017-01-30", + "parcelID": "16906", + "crownLandUsePIN": "17339", + "crownLandFileNumber": "17796", + "landDescription": "LOT 4 OF LOT 3 BLOCK 2 DISTRICT LOT 5 PLAN 7263" }, { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2020-04-15 (described on Site Profile dated 2020-04-15)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "siteRegistry": false, + "dateNoted": "2022-05-15", + "parcelID": "15582", + "crownLandUsePIN": "16343", + "crownLandFileNumber": "17084", + "landDescription": "LOT 1 OF LOT 4 BLOCK 1 DISTRICT LOT 2 PLAN 3662" + }, + { + "siteRegistry": false, + "dateNoted": "2018-03-12", + "parcelID": "17003", + "crownLandUsePIN": "17198", + "crownLandFileNumber": "15627", + "landDescription": "LOT 2 OF LOT 1 BLOCK 4 DISTRICT LOT 1 PLAN 3877" } ], "siteDisclosures": [ { - "siteRegistry": true, - "dateReceived": "2023-10-03", - "dateCompleted": "2019-11-11", - "dateEntered": "2015-01-07", - "dateRegistrar": "2017-03-05", - "dateLocalAuthorityReceived": "2013-12-28", - "summary": "Eius sed temporibus vitae.\nConsectetur neque vel sapiente in tenetur incidunt.\nBeatae repellat magnam eaque.", - "informationUsed": "Enim officia sapiente natus omnis voluptatem ratione.\nAt explicabo earum tenetur vitae.\nPerspiciatis esse minus nulla.\nTotam possimus expedita ad ullam assumenda eligendi iste doloremque cum.", - "pastOrPresentOrders": "Distinctio placeat eos quam deserunt doloremque dolorum pariatur.", + "siteRegistry": false, + "dateReceived": "2021-10-16", + "dateCompleted": "2023-07-25", + "dateEntered": "2014-07-22", + "dateRegistrar": "2018-06-16", + "dateLocalAuthorityReceived": "2015-01-10", + "summary": "Voluptatibus aut aperiam nam quia minima voluptatum error sint delectus.", + "informationUsed": "Exercitationem dolorum quod pariatur perferendis placeat suscipit reprehenderit.\nUnde placeat voluptatibus suscipit esse quaerat aliquam voluptates quae temporibus.\nDignissimos rem recusandae accusantium nostrum animi quae corporis molestiae.\nMagni adipisci nisi amet dolores delectus iure ab necessitatibus saepe.\nQuibusdam eaque architecto rem accusantium accusamus numquam fugit.", + "pastOrPresentOrders": "Earum facilis laborum culpa repellat.\nPorro architecto unde vel optio magni totam dolore assumenda.", "commercialAndIndustrialPurposes": [ { - "scheduleReference": "F1*", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { - "scheduleReference": "F1*", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true + "siteRegistry": false }, { "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + } + ] + }, + { + "siteRegistry": true, + "dateReceived": "2023-01-07", + "dateCompleted": "2014-03-05", + "dateEntered": "2023-02-03", + "dateRegistrar": "2022-06-08", + "dateLocalAuthorityReceived": "2015-10-19", + "summary": "Mollitia sequi natus.\nPariatur neque placeat molestias laudantium.\nDoloremque accusamus tempora impedit asperiores enim modi adipisci corrupti.", + "informationUsed": "Dicta debitis ducimus ullam quia placeat magni voluptatum nulla.\nVeniam ipsum explicabo vitae delectus necessitatibus nemo debitis est veniam.\nExercitationem illum aut nobis aut doloribus dolorum dolore.", + "pastOrPresentOrders": "Libero nemo temporibus esse nemo totam.\nTemporibus laudantium omnis facilis libero voluptas magni corporis itaque.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { - "scheduleReference": "F2*", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true } @@ -28618,108 +32069,96 @@ ], "activityLog": [ { - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "FAY FELIX", - "timestamp": "2022-04-19" - }, - { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "LYNCH KOLBY", - "timestamp": "2019-10-27" + "user": "KOSS MARILYNE", + "timestamp": "2013-12-21" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "OBERBRUNNER HILLARY", - "timestamp": "2020-02-11" + "user": "LEUSCHKE CLYDE", + "timestamp": "2017-09-10" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "ULLRICH IKE", - "timestamp": "2014-04-21" + "user": "MOHR-MAYER MARTINE", + "timestamp": "2017-12-19" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "SCHOEN CHRISTIANA", - "timestamp": "2017-03-18" + "user": "FEENEY STAN", + "timestamp": "2020-05-19" }, { - "siteRegistry": true, + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "BERGE SOPHIE", - "timestamp": "2018-07-20" + "user": "PFANNERSTILL ALBINA", + "timestamp": "2016-06-04" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "KOELPIN-NITZSCHE TIARA", - "timestamp": "2016-03-14" - }, - { - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "LINDGREN RIGOBERTO", - "timestamp": "2016-03-01" + "user": "D'AMORE JALON", + "timestamp": "2020-02-08" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "DONNELLY AMOS", - "timestamp": "2022-01-30" + "user": "HUEL-BEAHAN JUSTON", + "timestamp": "2015-07-03" }, { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "RUNOLFSDOTTIR JOANIE", - "timestamp": "2019-08-01" + "user": "O'HARA EILEEN", + "timestamp": "2021-08-21" } ], "associatedSites": [ { - "dateNoted": "2016-04-03", + "dateNoted": "2015-11-11", "notes": "", - "parcelID": "17422", - "siteID": "17224", + "parcelID": "19279", + "siteID": "16605", "siteRegistry": true }, { - "dateNoted": "2016-10-26", + "dateNoted": "2023-01-26", "notes": "", - "parcelID": "15450", - "siteID": "19475", + "parcelID": "18716", + "siteID": "20243", "siteRegistry": true } ] }, { - "uuid": "48584b7f-20c1-425d-b879-5f7f27ab0d90", - "siteID": 16386, - "address": "49292 Parisian Green", - "latitude": 56.1009, - "longitude": -129.8877, - "lastUpdated": "2023-01-28", - "city": "Anaheim", - "region": "Thompson-Okanagan", - "victoriaFile": "26250-20/4451", + "uuid": "c67af499-1764-44de-b109-ee760f1391bc", + "siteID": 16162, + "address": "9137 Monahan Orchard", + "latitude": 49.4604, + "longitude": -135.7626, + "lastUpdated": "2015-03-19", + "city": "West Romanberg", + "region": "Cariboo", + "victoriaFile": "26250-20/12134", "regionalFile": "N/A", "parcelIDs": [ - 1180891, - 4530042, - 4657048, - 8550135, - 748547 + 5938066, + 3441460, + 174799, + 7330946, + 7978654 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2017-08-22", - "completed": "2019-07-24", - "initiated": "2017-11-07", - "ministryContact": "MEDHURST LESLY", + "createdAt": "2023-06-24", + "completed": "2016-09-07", + "initiated": "2019-12-03", + "ministryContact": "BAYER ROSELLA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -28730,71 +32169,31 @@ { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", "siteRegistry": true - } - ], - "siteRegistry": true - }, - { - "createdAt": "2015-05-09", - "completed": "2016-01-01", - "initiated": "2016-10-28", - "ministryContact": "WILLIAMSON ANGEL", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, { "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true + "role": "SUBMITTED BY", + "siteRegistry": false } ], "siteRegistry": false }, { - "createdAt": "2014-09-10", - "completed": "2014-05-15", - "initiated": "2021-12-31", - "ministryContact": "BREKKE ADAH", + "createdAt": "2019-06-10", + "completed": "2015-05-03", + "initiated": "2014-10-24", + "ministryContact": "PAGAC CLARISSA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -28802,49 +32201,19 @@ "" ], "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, { "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true - } - ], - "siteRegistry": false - }, - { - "createdAt": "2014-06-05", - "completed": "2018-10-20", - "initiated": "2018-09-05", - "ministryContact": "JONES ELLIS", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false }, { @@ -28853,13 +32222,13 @@ "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2023-03-09", - "completed": "2022-07-25", - "initiated": "2019-11-30", - "ministryContact": "OKUNEVA POLLY", + "createdAt": "2017-04-20", + "completed": "2020-03-08", + "initiated": "2018-06-24", + "ministryContact": "KIRLIN-PURDY TIMOTHY", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -28874,18 +32243,8 @@ }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true } ], "siteRegistry": false @@ -28893,70 +32252,150 @@ ], "participants": [ { - "name": "AMET, DOLOR SIT", - "endDate": "2022-10-09", - "startDate": "2020-12-03", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2015-10-11", + "startDate": "2016-02-01", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": true }, { - "name": "AMET, DOLOR SIT", - "endDate": "2018-12-15", - "startDate": "2018-06-15", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2023-06-01", + "startDate": "2016-01-07", "notes": "", "roles": [ "EMPLOYEE" ], + "siteRegistry": true + }, + { + "name": "IPSUM", + "endDate": "2022-07-25", + "startDate": "2018-03-21", + "notes": "", + "roles": [ + "ORGANIZATION" + ], "siteRegistry": false + }, + { + "name": "IPSUM", + "endDate": "2016-09-03", + "startDate": "2022-08-25", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true } ], "suspectLandUses": [ { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-12-23 (described on Site Profile dated 2015-12-23)", + "notes": "INSERTED FOR SITE PROFILE DATED 2014-01-24 (described on Site Profile dated 2014-01-24)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-07-03 (described on Site Profile dated 2015-07-03)", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2015-06-06 (described on Site Profile dated 2015-06-06)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-03-06 (described on Site Profile dated 2018-03-06)", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2023-10-05 (described on Site Profile dated 2023-10-05)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + } + ], + "parcelDescriptions": [ + { + "siteRegistry": false, + "dateNoted": "2014-07-05", + "parcelID": "16184", + "crownLandUsePIN": "17361", + "crownLandFileNumber": "16487", + "landDescription": "LOT 1 OF LOT 2 BLOCK 5 DISTRICT LOT 2 PLAN 3813" }, { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-08-16 (described on Site Profile dated 2021-08-16)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "dateNoted": "2016-04-02", + "parcelID": "18235", + "crownLandUsePIN": "17069", + "crownLandFileNumber": "19160", + "landDescription": "LOT 1 OF LOT 1 BLOCK 1 DISTRICT LOT 3 PLAN 5927" }, { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-06-13 (described on Site Profile dated 2016-06-13)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "dateNoted": "2021-03-13", + "parcelID": "15482", + "crownLandUsePIN": "15629", + "crownLandFileNumber": "20121", + "landDescription": "LOT 5 OF LOT 1 BLOCK 4 DISTRICT LOT 5 PLAN 3928" + }, + { + "siteRegistry": false, + "dateNoted": "2022-02-15", + "parcelID": "16787", + "crownLandUsePIN": "19970", + "crownLandFileNumber": "19622", + "landDescription": "LOT 5 OF LOT 4 BLOCK 1 DISTRICT LOT 1 PLAN 3108" + }, + { + "siteRegistry": true, + "dateNoted": "2013-11-23", + "parcelID": "19463", + "crownLandUsePIN": "17794", + "crownLandFileNumber": "15374", + "landDescription": "LOT 4 OF LOT 1 BLOCK 1 DISTRICT LOT 4 PLAN 5598" } ], "siteDisclosures": [ { - "siteRegistry": false, - "dateReceived": "2014-12-01", - "dateCompleted": "2017-08-18", - "dateEntered": "2020-10-15", - "dateRegistrar": "2014-08-23", - "dateLocalAuthorityReceived": "2014-12-01", - "summary": "Laborum eaque odit atque distinctio adipisci autem cum.\nDoloribus consequuntur dolore tempora sunt accusamus aperiam minus.\nHic itaque consequuntur autem iure porro fugiat.", - "informationUsed": "Similique nesciunt accusamus asperiores mollitia quae ratione occaecati expedita.\nDolorem nulla optio neque voluptates.\nPerspiciatis adipisci rerum fugit adipisci corporis quas vero.\nEx quaerat quae ipsa.", - "pastOrPresentOrders": "Soluta quo ad assumenda cum praesentium cupiditate quam.", + "siteRegistry": true, + "dateReceived": "2017-12-20", + "dateCompleted": "2018-03-11", + "dateEntered": "2022-07-14", + "dateRegistrar": "2015-04-03", + "dateLocalAuthorityReceived": "2023-01-15", + "summary": "Molestias eum voluptates.\nNisi odio vero quos ratione totam repudiandae quas.", + "informationUsed": "Eligendi iure rem recusandae dolor veniam.\nEius reiciendis maiores dolor qui perferendis omnis repudiandae.\nDolor cupiditate ipsum commodi delectus aliquam provident.\nExercitationem at asperiores.", + "pastOrPresentOrders": "Autem sint commodi iste vitae non quas.", "commercialAndIndustrialPurposes": [ { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + } + ] + }, + { + "siteRegistry": false, + "dateReceived": "2022-09-28", + "dateCompleted": "2015-12-02", + "dateEntered": "2022-05-12", + "dateRegistrar": "2015-07-07", + "dateLocalAuthorityReceived": "2017-07-29", + "summary": "Iste dicta amet illo blanditiis provident temporibus.\nNisi qui itaque cum.", + "informationUsed": "Accusantium fugiat veniam blanditiis.\nDoloremque sapiente labore ab earum veritatis molestias corrupti placeat dolores.\nCulpa quisquam voluptates fugiat.\nEa et commodi dolor suscipit magnam blanditiis mollitia sit.\nVeritatis odit sit officiis corrupti.", + "pastOrPresentOrders": "Architecto quis quod enim.", + "commercialAndIndustrialPurposes": [ { "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", @@ -28964,8 +32403,18 @@ }, { "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false } ] } @@ -28974,99 +32423,83 @@ { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "WELCH ANIKA", - "timestamp": "2022-01-13" - }, - { - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "BODE MONSERRAT", - "timestamp": "2022-11-05" - }, - { - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "NADER MURIEL", - "timestamp": "2019-05-31" - }, - { - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "ZBONCAK JANNIE", - "timestamp": "2017-08-21" - }, - { - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "WILDERMAN ALLY", - "timestamp": "2018-07-10" + "user": "DOYLE CORNELL", + "timestamp": "2020-07-29" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "MANN ADRIAN", - "timestamp": "2016-11-03" + "user": "BERGE VAUGHN", + "timestamp": "2021-07-10" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "GUTMANN ALISHA", - "timestamp": "2014-11-11" - }, - { - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "RITCHIE WESTON", - "timestamp": "2021-12-07" + "user": "ROSENBAUM NATHANAEL", + "timestamp": "2016-07-10" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "SATTERFIELD RYLEIGH", - "timestamp": "2014-12-13" + "user": "SHIELDS GARRET", + "timestamp": "2018-12-30" }, { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "LEDNER-LITTEL ELWIN", - "timestamp": "2020-03-31" + "user": "SIPES LUKAS", + "timestamp": "2023-09-29" } ], "associatedSites": [ { - "dateNoted": "2020-08-13", + "dateNoted": "2015-05-10", "notes": "", - "parcelID": "15419", - "siteID": "18316", + "parcelID": "16638", + "siteID": "16960", "siteRegistry": true + }, + { + "dateNoted": "2023-10-08", + "notes": "", + "parcelID": "16963", + "siteID": "17194", + "siteRegistry": false + }, + { + "dateNoted": "2022-02-16", + "notes": "", + "parcelID": "20564", + "siteID": "16701", + "siteRegistry": false } ] }, { - "uuid": "460b6e2e-deba-4948-91b1-714ed394826e", - "siteID": 16824, - "address": "90818 Morissette Manors", - "latitude": 56.216, - "longitude": -121.9011, - "lastUpdated": "2021-12-13", - "city": "Port Betsyboro", - "region": "Vancouver Island/Coast", - "victoriaFile": "26250-20/17023", + "uuid": "2382d7eb-12fc-461c-8102-f286e60c2f25", + "siteID": 17287, + "address": "8729 Jamey Shoal", + "latitude": 57.4404, + "longitude": -128.5741, + "lastUpdated": "2019-02-08", + "city": "Lubbock", + "region": "Thompson-Okanagan", + "victoriaFile": "26250-20/18271", "regionalFile": "N/A", "parcelIDs": [ - 9236328, - 7973471, - 8691782, - 4330954, - 8149645 + 7265796, + 2083237, + 7687216, + 4625629, + 133294 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2018-02-26", - "completed": "2021-04-20", - "initiated": "2013-10-24", - "ministryContact": "SMITH PRICE", + "createdAt": "2013-12-11", + "completed": "2018-05-22", + "initiated": "2019-01-17", + "ministryContact": "JACOBSON LEILANI", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -29075,23 +32508,98 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "createdAt": "2020-02-02", + "completed": "2013-11-20", + "initiated": "2014-10-05", + "ministryContact": "MUELLER SHANIE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "createdAt": "2020-02-28", + "completed": "2015-02-12", + "initiated": "2021-03-23", + "ministryContact": "HOMENICK ZACKERY", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "createdAt": "2018-04-18", + "completed": "2023-07-03", + "initiated": "2018-02-02", + "ministryContact": "DAUGHERTY-PFANNERSTILL CAREY", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": false }, { @@ -29100,13 +32608,13 @@ "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2014-04-02", - "completed": "2022-04-12", - "initiated": "2016-10-09", - "ministryContact": "HYATT DEJON", + "createdAt": "2023-08-31", + "completed": "2021-03-02", + "initiated": "2019-02-04", + "ministryContact": "ANDERSON RUPERT", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -29115,10 +32623,15 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", @@ -29126,12 +32639,7 @@ }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true } ], @@ -29140,19 +32648,29 @@ ], "participants": [ { - "name": "AMET, DOLOR SIT", - "endDate": "2017-06-07", - "startDate": "2014-09-06", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2018-04-21", + "startDate": "2017-03-22", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], - "siteRegistry": true + "siteRegistry": false + }, + { + "name": "IPSUM", + "endDate": "2014-12-24", + "startDate": "2016-02-09", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false }, { "name": "IPSUM", - "endDate": "2021-08-16", - "startDate": "2016-04-08", + "endDate": "2018-10-20", + "startDate": "2015-05-30", "notes": "", "roles": [ "EMPLOYEE" @@ -29160,54 +32678,83 @@ "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2016-10-14", - "startDate": "2021-07-31", + "name": "AMET, DOLOR SIT", + "endDate": "2014-12-24", + "startDate": "2013-11-30", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": false }, { - "name": "AMET, DOLOR SIT", - "endDate": "2013-11-16", - "startDate": "2015-01-15", + "name": "IPSUM", + "endDate": "2023-04-05", + "startDate": "2014-06-06", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": false + "siteRegistry": true } ], "suspectLandUses": [ { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-06-07 (described on Site Profile dated 2017-06-07)", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2021-01-13 (described on Site Profile dated 2021-01-13)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-05-28 (described on Site Profile dated 2017-05-28)", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2018-03-20 (described on Site Profile dated 2018-03-20)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + } + ], + "parcelDescriptions": [ + { + "siteRegistry": true, + "dateNoted": "2016-02-04", + "parcelID": "16406", + "crownLandUsePIN": "19317", + "crownLandFileNumber": "19026", + "landDescription": "LOT 4 OF LOT 4 BLOCK 1 DISTRICT LOT 2 PLAN 9399" }, { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-08-14 (described on Site Profile dated 2016-08-14)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "dateNoted": "2016-02-26", + "parcelID": "20863", + "crownLandUsePIN": "20343", + "crownLandFileNumber": "16632", + "landDescription": "LOT 1 OF LOT 1 BLOCK 3 DISTRICT LOT 3 PLAN 5942" + }, + { + "siteRegistry": true, + "dateNoted": "2016-01-25", + "parcelID": "17339", + "crownLandUsePIN": "16100", + "crownLandFileNumber": "15575", + "landDescription": "LOT 2 OF LOT 3 BLOCK 2 DISTRICT LOT 4 PLAN 7265" + }, + { + "siteRegistry": true, + "dateNoted": "2021-08-13", + "parcelID": "15876", + "crownLandUsePIN": "15248", + "crownLandFileNumber": "19426", + "landDescription": "LOT 2 OF LOT 3 BLOCK 3 DISTRICT LOT 2 PLAN 5919" } ], "siteDisclosures": [ { "siteRegistry": false, - "dateReceived": "2015-04-29", - "dateCompleted": "2018-10-08", - "dateEntered": "2023-08-21", - "dateRegistrar": "2013-10-19", - "dateLocalAuthorityReceived": "2018-11-27", - "summary": "Nihil qui quasi dicta corrupti molestiae praesentium eaque voluptates.", - "informationUsed": "Odio rerum voluptatum aliquid.\nQuam odio eaque aliquam maiores natus.\nEa sed earum.", - "pastOrPresentOrders": "Tempora sequi dolores ipsa ab deleniti provident.", + "dateReceived": "2016-02-22", + "dateCompleted": "2015-04-12", + "dateEntered": "2014-08-13", + "dateRegistrar": "2021-11-06", + "dateLocalAuthorityReceived": "2022-09-05", + "summary": "Aliquid labore architecto eaque maxime hic blanditiis quibusdam.\nNostrum earum pariatur neque est natus qui repudiandae.\nDebitis omnis veniam eveniet voluptatibus.", + "informationUsed": "Non ut odit nisi quidem.\nMagnam culpa ex iure ut mollitia ex aliquid.\nIusto quisquam a iste quasi facere cumque unde odit.\nRepellat nihil error quasi voluptates iusto nihil optio quod.\nDicta nam expedita labore.", + "pastOrPresentOrders": "Maxime eveniet in molestias doloremque architecto quod.\nAd consectetur quo impedit sit quaerat.", "commercialAndIndustrialPurposes": [ { "scheduleReference": "F2*", @@ -29215,36 +32762,13 @@ "siteRegistry": true }, { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false - }, - { - "scheduleReference": "F2*", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false + "siteRegistry": true }, { "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false - } - ] - }, - { - "siteRegistry": true, - "dateReceived": "2016-09-02", - "dateCompleted": "2014-06-08", - "dateEntered": "2019-10-19", - "dateRegistrar": "2016-06-12", - "dateLocalAuthorityReceived": "2016-01-23", - "summary": "Nemo harum tempora voluptatum reiciendis.\nConsequuntur laboriosam maxime sunt eius inventore totam.\nQuod maxime rem cupiditate eligendi.", - "informationUsed": "Est odio eius reiciendis nisi unde aperiam.\nQuia necessitatibus quibusdam rem ex iusto eligendi.\nDucimus cum perferendis unde consequuntur iure.\nBlanditiis nisi eveniet quisquam aspernatur repellendus praesentium quod quas.", - "pastOrPresentOrders": "Maiores necessitatibus adipisci recusandae ipsam nisi aliquam enim debitis.", - "commercialAndIndustrialPurposes": [ - { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { @@ -29259,75 +32783,89 @@ { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "SCHUSTER RASHEED", - "timestamp": "2018-08-02" + "user": "MACGYVER KATLYN", + "timestamp": "2019-11-12" }, { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "METZ IVY", - "timestamp": "2015-06-04" + "user": "SCHMELER JARROD", + "timestamp": "2018-06-27" }, { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "KAUTZER IMMANUEL", - "timestamp": "2021-03-01" + "user": "BLOCK-KLING CHARLES", + "timestamp": "2021-07-14" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "SCHAEFER BRANDT", - "timestamp": "2014-03-21" + "user": "HACKETT ELISHA", + "timestamp": "2022-02-15" }, { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "RUTHERFORD ADAN", - "timestamp": "2015-09-22" + "user": "HILLS ABNER", + "timestamp": "2016-06-18" }, { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "JOHNSON JESS", - "timestamp": "2015-02-05" + "user": "DICKINSON ARIANE", + "timestamp": "2021-03-23" } ], "associatedSites": [ { - "dateNoted": "2018-12-24", + "dateNoted": "2022-06-14", "notes": "", - "parcelID": "18235", - "siteID": "19960", + "parcelID": "16048", + "siteID": "16447", "siteRegistry": true + }, + { + "dateNoted": "2023-04-07", + "notes": "", + "parcelID": "18108", + "siteID": "16093", + "siteRegistry": false + }, + { + "dateNoted": "2018-02-11", + "notes": "", + "parcelID": "16474", + "siteID": "18404", + "siteRegistry": false } ] }, { - "uuid": "74b8d4d8-01cc-46b5-8ec8-8e19c5420903", - "siteID": 17972, - "address": "2274 Kozey Lights", - "latitude": 57.2122, - "longitude": -134.0558, - "lastUpdated": "2015-04-04", - "city": "Bend", - "region": "Vancouver Island/Coast", - "victoriaFile": "26250-20/17363", + "uuid": "cdc5ddb5-f1cf-4628-b682-a9e72b05c4ea", + "siteID": 15660, + "address": "39246 Romaine Parkways", + "latitude": 57.9388, + "longitude": -128.1251, + "lastUpdated": "2018-12-15", + "city": "Constancefort", + "region": "Cariboo", + "victoriaFile": "26250-20/4419", "regionalFile": "N/A", "parcelIDs": [ - 1781684, - 3593788, - 4236978, - 4533609, - 5139305 + 6137970, + 6800983, + 1775514, + 2106625, + 9294657 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2023-06-19", - "completed": "2019-11-09", - "initiated": "2021-09-22", - "ministryContact": "KING ANIYA", + "createdAt": "2015-02-11", + "completed": "2019-02-07", + "initiated": "2023-06-23", + "ministryContact": "WATSICA HERMINIO", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -29335,6 +32873,11 @@ "" ], "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", @@ -29344,15 +32887,20 @@ "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true } ], "siteRegistry": false }, { - "createdAt": "2019-12-04", - "completed": "2022-04-04", - "initiated": "2021-03-11", - "ministryContact": "HOEGER DESIREE", + "createdAt": "2014-12-25", + "completed": "2015-06-05", + "initiated": "2021-06-17", + "ministryContact": "BOYLE KYLER", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -29360,25 +32908,20 @@ "" ], "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", @@ -29386,13 +32929,13 @@ "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2020-09-21", - "completed": "2020-08-13", - "initiated": "2019-08-04", - "ministryContact": "TORP TRINITY", + "createdAt": "2017-07-01", + "completed": "2021-06-10", + "initiated": "2016-10-09", + "ministryContact": "HEATHCOTE FELICIA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -29401,54 +32944,34 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false } ], "participants": [ { - "name": "AMET, DOLOR SIT", - "endDate": "2020-10-02", - "startDate": "2014-03-20", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": false - }, - { - "name": "IPSUM", - "endDate": "2020-10-27", - "startDate": "2021-07-13", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2020-02-21", + "startDate": "2020-05-19", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2017-11-04", - "startDate": "2015-01-15", + "endDate": "2022-04-02", + "startDate": "2016-10-13", "notes": "", "roles": [ "EMPLOYEE" @@ -29457,8 +32980,8 @@ }, { "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2023-07-14", - "startDate": "2016-12-12", + "endDate": "2023-02-26", + "startDate": "2019-06-01", "notes": "", "roles": [ "ORGANIZATION" @@ -29466,12 +32989,12 @@ "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2014-09-12", - "startDate": "2022-04-09", + "name": "AMET, DOLOR SIT", + "endDate": "2021-03-13", + "startDate": "2013-11-26", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": false } @@ -29479,41 +33002,59 @@ "suspectLandUses": [ { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-06-05 (described on Site Profile dated 2017-06-05)", + "notes": "INSERTED FOR SITE PROFILE DATED 2015-06-26 (described on Site Profile dated 2015-06-26)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-09-24 (described on Site Profile dated 2016-09-24)", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2022-10-26 (described on Site Profile dated 2022-10-26)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2023-09-11 (described on Site Profile dated 2023-09-11)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2014-06-05 (described on Site Profile dated 2014-06-05)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-05-21 (described on Site Profile dated 2015-05-21)", + "notes": "INSERTED FOR SITE PROFILE DATED 2022-04-18 (described on Site Profile dated 2022-04-18)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-10-01 (described on Site Profile dated 2022-10-01)", + "notes": "INSERTED FOR SITE PROFILE DATED 2014-09-19 (described on Site Profile dated 2014-09-19)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], + "parcelDescriptions": [ + { + "siteRegistry": true, + "dateNoted": "2019-07-22", + "parcelID": "18332", + "crownLandUsePIN": "16925", + "crownLandFileNumber": "18308", + "landDescription": "LOT 4 OF LOT 1 BLOCK 3 DISTRICT LOT 1 PLAN 7914" + }, + { + "siteRegistry": true, + "dateNoted": "2019-06-29", + "parcelID": "18725", + "crownLandUsePIN": "16781", + "crownLandFileNumber": "20208", + "landDescription": "LOT 2 OF LOT 5 BLOCK 5 DISTRICT LOT 1 PLAN 3194" + } + ], "siteDisclosures": [ { - "siteRegistry": false, - "dateReceived": "2019-11-20", - "dateCompleted": "2020-06-04", - "dateEntered": "2021-03-06", - "dateRegistrar": "2021-07-30", - "dateLocalAuthorityReceived": "2014-02-01", - "summary": "Dolorum ducimus inventore cumque voluptate sed quos in eius quae.\nConsequatur veniam tempore quia earum in autem.\nModi blanditiis tempore asperiores ea rerum tempore illum magnam nulla.", - "informationUsed": "Magni nam nobis omnis dolor quae iure at minus quod.\nDistinctio dicta explicabo.\nAspernatur odio accusamus occaecati in tenetur cupiditate repudiandae hic illum.\nCumque hic saepe nisi fuga veniam reprehenderit saepe recusandae vel.", - "pastOrPresentOrders": "Quod qui quam odio a ab voluptatibus alias.\nAsperiores suscipit nulla inventore.\nDolorem magnam eligendi provident sapiente eaque vero deleniti.", + "siteRegistry": true, + "dateReceived": "2016-08-23", + "dateCompleted": "2023-08-16", + "dateEntered": "2019-05-22", + "dateRegistrar": "2020-11-02", + "dateLocalAuthorityReceived": "2014-10-17", + "summary": "Animi labore nulla commodi temporibus deleniti.", + "informationUsed": "Aliquam dolore harum.\nPraesentium consequatur perferendis animi culpa debitis.\nIpsum non perspiciatis error in praesentium voluptatibus.\nInventore sequi vitae facilis aliquid deserunt architecto.\nOptio fugiat laboriosam.", + "pastOrPresentOrders": "Eum at earum doloremque earum.", "commercialAndIndustrialPurposes": [ { "scheduleReference": "F1*", @@ -29521,8 +33062,13 @@ "siteRegistry": true }, { - "scheduleReference": "F1*", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { @@ -29535,77 +33081,102 @@ ], "activityLog": [ { - "siteRegistry": true, + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "VONRUEDEN JOSIANE", - "timestamp": "2017-08-12" + "user": "POWLOWSKI CRISTINA", + "timestamp": "2017-03-01" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "BECHTELAR AKEEM", - "timestamp": "2019-10-12" + "user": "RIPPIN JEANETTE", + "timestamp": "2020-12-14" }, { - "siteRegistry": true, + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "HARRIS CLIFFORD", - "timestamp": "2021-01-02" + "user": "KAUTZER HILBERT", + "timestamp": "2023-07-11" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "REINGER SAIGE", - "timestamp": "2014-10-27" + "user": "KREIGER REVA", + "timestamp": "2023-09-05" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "TORP DARIEN", - "timestamp": "2023-06-25" + "user": "HESSEL CARLEE", + "timestamp": "2020-08-06" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "COLLINS ASHLEIGH", - "timestamp": "2018-08-18" + "user": "NIENOW TITUS", + "timestamp": "2023-01-23" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "CHRISTIANSEN JAYNE", + "timestamp": "2021-02-18" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "SCHINNER TINA", + "timestamp": "2016-01-25" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "YUNDT CIERRA", + "timestamp": "2022-11-02" } ], "associatedSites": [ { - "dateNoted": "2016-11-30", + "dateNoted": "2019-01-28", "notes": "", - "parcelID": "19132", - "siteID": "17036", + "parcelID": "19595", + "siteID": "16201", "siteRegistry": true + }, + { + "dateNoted": "2014-11-05", + "notes": "", + "parcelID": "18010", + "siteID": "19240", + "siteRegistry": false } ] }, { - "uuid": "b6e17606-3268-4ba9-a6db-cd8a723b00c1", - "siteID": 15474, - "address": "304 Price Court", - "latitude": 56.9216, - "longitude": -129.3287, - "lastUpdated": "2019-06-09", - "city": "Gutmannboro", - "region": "Mainland/Southwest", - "victoriaFile": "26250-20/18569", + "uuid": "68772c33-4d2f-4cdb-b44d-9b43bd103767", + "siteID": 18634, + "address": "617 Laurie Light", + "latitude": 49.797, + "longitude": -129.6498, + "lastUpdated": "2021-04-14", + "city": "North Lauryburgh", + "region": " North Coast", + "victoriaFile": "26250-20/6202", "regionalFile": "N/A", "parcelIDs": [ - 1591477, - 8931466, - 3844086, - 2972476, - 468067 + 9601353, + 9429038, + 4912249, + 5408473, + 3924110 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2023-03-25", - "completed": "2020-06-11", - "initiated": "2017-07-12", - "ministryContact": "ROMAGUERA WADE", + "createdAt": "2013-12-23", + "completed": "2022-11-13", + "initiated": "2020-08-01", + "ministryContact": "MURPHY IMA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -29614,33 +33185,63 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "createdAt": "2016-11-22", + "completed": "2021-04-19", + "initiated": "2019-09-29", + "ministryContact": "RITCHIE JEFFREY", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2015-07-26", - "completed": "2017-04-15", - "initiated": "2022-10-11", - "ministryContact": "LEMKE DORTHY", + "createdAt": "2016-04-25", + "completed": "2018-09-18", + "initiated": "2019-05-15", + "ministryContact": "WEBER JOSIAH", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -29649,19 +33250,24 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", @@ -29669,13 +33275,13 @@ "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false }, { "createdAt": "2019-03-27", - "completed": "2015-12-06", - "initiated": "2023-03-15", - "ministryContact": "BREKKE LELAND", + "completed": "2018-02-19", + "initiated": "2023-01-08", + "ministryContact": "RAU LAURIE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -29685,111 +33291,185 @@ "notationParticipants": [ { "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "createdAt": "2022-04-02", + "completed": "2014-06-06", + "initiated": "2017-12-18", + "ministryContact": "HAMMES ANGELICA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false } ], "participants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2015-08-06", - "startDate": "2014-10-16", + "name": "AMET, DOLOR SIT", + "endDate": "2014-07-21", + "startDate": "2015-01-02", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], - "siteRegistry": true + "siteRegistry": false }, { - "name": "AMET, DOLOR SIT", - "endDate": "2015-07-05", - "startDate": "2014-02-25", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2014-03-04", + "startDate": "2016-06-04", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false }, { - "name": "IPSUM", - "endDate": "2018-02-17", - "startDate": "2016-12-15", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2023-07-21", + "startDate": "2021-01-17", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": true + "siteRegistry": false } ], "suspectLandUses": [ { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2023-10-02 (described on Site Profile dated 2023-10-02)", + "notes": "INSERTED FOR SITE PROFILE DATED 2018-08-21 (described on Site Profile dated 2018-08-21)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-06-11 (described on Site Profile dated 2018-06-11)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "notes": "INSERTED FOR SITE PROFILE DATED 2023-05-02 (described on Site Profile dated 2023-05-02)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-03-27 (described on Site Profile dated 2015-03-27)", + "notes": "INSERTED FOR SITE PROFILE DATED 2013-11-04 (described on Site Profile dated 2013-11-04)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2023-05-30 (described on Site Profile dated 2023-05-30)", + "notes": "INSERTED FOR SITE PROFILE DATED 2017-02-02 (described on Site Profile dated 2017-02-02)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + } + ], + "parcelDescriptions": [ + { + "siteRegistry": false, + "dateNoted": "2016-11-13", + "parcelID": "19684", + "crownLandUsePIN": "15825", + "crownLandFileNumber": "16578", + "landDescription": "LOT 4 OF LOT 4 BLOCK 1 DISTRICT LOT 5 PLAN 4189" }, { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-04-04 (described on Site Profile dated 2021-04-04)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "dateNoted": "2023-09-30", + "parcelID": "16977", + "crownLandUsePIN": "15571", + "crownLandFileNumber": "17226", + "landDescription": "LOT 3 OF LOT 1 BLOCK 1 DISTRICT LOT 4 PLAN 3330" + }, + { + "siteRegistry": false, + "dateNoted": "2022-09-07", + "parcelID": "17972", + "crownLandUsePIN": "17211", + "crownLandFileNumber": "20735", + "landDescription": "LOT 5 OF LOT 2 BLOCK 4 DISTRICT LOT 3 PLAN 2930" } ], "siteDisclosures": [ { - "siteRegistry": true, - "dateReceived": "2019-04-30", - "dateCompleted": "2019-04-04", - "dateEntered": "2015-02-08", - "dateRegistrar": "2014-04-25", - "dateLocalAuthorityReceived": "2018-04-03", - "summary": "Quidem maiores saepe iure vero dolores.", - "informationUsed": "Animi aperiam maxime doloribus minima molestias laborum quibusdam blanditiis praesentium.\nPerferendis eligendi dolores.\nRepellat suscipit dolorum odio fugiat magnam natus.", - "pastOrPresentOrders": "Eum beatae repellendus quae neque deleniti rerum.\nQuisquam necessitatibus inventore tenetur accusamus cupiditate doloremque magnam aut.\nVitae similique ducimus saepe error.", + "siteRegistry": false, + "dateReceived": "2015-04-17", + "dateCompleted": "2022-01-11", + "dateEntered": "2022-10-27", + "dateRegistrar": "2020-05-08", + "dateLocalAuthorityReceived": "2013-12-20", + "summary": "Aspernatur a unde iste eum veniam fuga facere tenetur.\nOptio excepturi aspernatur nostrum.", + "informationUsed": "Sunt molestias fugiat ipsam cum labore harum.\nDebitis molestiae sapiente facilis.\nEx ut accusantium ullam aperiam.\nQuod enim praesentium adipisci praesentium tempore neque.\nInventore quia officia assumenda architecto officiis repellendus sequi eveniet autem.", + "pastOrPresentOrders": "Vel qui est unde.\nLibero cum occaecati asperiores perspiciatis qui consequuntur nisi.\nAnimi suscipit aliquam animi.", "commercialAndIndustrialPurposes": [ { - "scheduleReference": "F2*", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + } + ] + }, + { + "siteRegistry": true, + "dateReceived": "2014-06-08", + "dateCompleted": "2022-03-31", + "dateEntered": "2022-08-06", + "dateRegistrar": "2020-05-20", + "dateLocalAuthorityReceived": "2019-04-14", + "summary": "Voluptate veniam suscipit veniam ut earum enim saepe provident magni.", + "informationUsed": "Vel quam corporis fuga voluptate veritatis necessitatibus.\nMollitia voluptas dolore corrupti explicabo voluptates.\nCommodi incidunt mollitia velit recusandae mollitia.\nLibero occaecati suscipit.\nSed quasi in expedita officia delectus molestiae corporis.", + "pastOrPresentOrders": "Veritatis neque voluptatibus tempore.\nMagnam accusamus veritatis quis ut.\nSuscipit facere labore.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false } @@ -29798,78 +33478,96 @@ ], "activityLog": [ { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "HAUCK JAYDA", - "timestamp": "2017-05-19" + "user": "KEMMER JOHANN", + "timestamp": "2016-11-02" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "HARBER MEAGAN", - "timestamp": "2015-04-19" + "user": "O'KEEFE CARRIE", + "timestamp": "2022-01-24" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "RYAN ALISON", - "timestamp": "2016-08-31" + "user": "PFEFFER ULICES", + "timestamp": "2018-09-13" }, { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "GOODWIN WILLA", - "timestamp": "2020-08-08" + "user": "BLOCK ROGER", + "timestamp": "2023-02-15" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "LEFFLER JUVENAL", - "timestamp": "2019-05-16" + "user": "MACGYVER JALEN", + "timestamp": "2023-01-20" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "DICKINSON FAE", + "timestamp": "2017-01-20" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "CREMIN BENNETT", + "timestamp": "2014-05-02" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "BARROWS TRAVON", + "timestamp": "2020-07-17" } ], "associatedSites": [ { - "dateNoted": "2014-01-24", + "dateNoted": "2023-09-20", "notes": "", - "parcelID": "18516", - "siteID": "20727", + "parcelID": "18969", + "siteID": "20555", "siteRegistry": true }, { - "dateNoted": "2018-05-07", + "dateNoted": "2023-04-10", "notes": "", - "parcelID": "20776", - "siteID": "16863", + "parcelID": "19237", + "siteID": "19902", "siteRegistry": false } ] }, { - "uuid": "07512122-58a1-456d-a705-8a48df006acb", - "siteID": 19043, - "address": "343 Stark Harbors", - "latitude": 55.2899, - "longitude": -123.2542, - "lastUpdated": "2015-06-23", - "city": "Farmington", + "uuid": "cca356dd-fe26-4d16-883a-ee45d4bce637", + "siteID": 17505, + "address": "881 Bayer Wall", + "latitude": 48.878, + "longitude": -130.465, + "lastUpdated": "2021-11-30", + "city": "Fort Tabitha", "region": " North Coast", - "victoriaFile": "26250-20/11263", + "victoriaFile": "26250-20/13415", "regionalFile": "N/A", "parcelIDs": [ - 6590259, - 3322664, - 4686400, - 6736408, - 8021940 + 9622059, + 1969285, + 1024570, + 2530015, + 5040502 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2019-04-26", - "completed": "2013-11-17", - "initiated": "2023-03-29", - "ministryContact": "WOLF WHITNEY", + "createdAt": "2022-05-13", + "completed": "2021-03-15", + "initiated": "2018-12-12", + "ministryContact": "BECKER GARRY", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -29879,37 +33577,27 @@ "notationParticipants": [ { "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false + "role": "SUBMITTED BY", + "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true } ], "siteRegistry": false }, { - "createdAt": "2018-02-08", - "completed": "2019-02-12", - "initiated": "2013-12-22", - "ministryContact": "ALTENWERTH ED", + "createdAt": "2019-12-07", + "completed": "2018-03-15", + "initiated": "2015-03-25", + "ministryContact": "REINGER MADISEN", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -29924,23 +33612,18 @@ }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false } ], "participants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2017-07-03", - "startDate": "2020-09-23", + "name": "AMET, DOLOR SIT", + "endDate": "2015-12-20", + "startDate": "2017-02-04", "notes": "", "roles": [ "EMPLOYEE" @@ -29948,173 +33631,217 @@ "siteRegistry": false }, { - "name": "IPSUM", - "endDate": "2020-01-18", - "startDate": "2021-06-23", + "name": "AMET, DOLOR SIT", + "endDate": "2017-05-06", + "startDate": "2018-10-08", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": true }, { - "name": "IPSUM", - "endDate": "2015-03-09", - "startDate": "2017-05-08", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2019-01-07", + "startDate": "2018-09-12", "notes": "", "roles": [ "ORGANIZATION" ], "siteRegistry": false }, - { - "name": "IPSUM", - "endDate": "2015-10-26", - "startDate": "2013-12-17", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": true - }, { "name": "AMET, DOLOR SIT", - "endDate": "2022-03-08", - "startDate": "2017-09-13", + "endDate": "2018-11-28", + "startDate": "2020-01-23", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": true } ], "suspectLandUses": [ { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2020-08-02 (described on Site Profile dated 2020-08-02)", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2020-07-03 (described on Site Profile dated 2020-07-03)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-01-05 (described on Site Profile dated 2017-01-05)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2023-01-23 (described on Site Profile dated 2023-01-23)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2019-12-03 (described on Site Profile dated 2019-12-03)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + } + ], + "parcelDescriptions": [ { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-02-24 (described on Site Profile dated 2022-02-24)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "dateNoted": "2022-10-03", + "parcelID": "18652", + "crownLandUsePIN": "18638", + "crownLandFileNumber": "16810", + "landDescription": "LOT 2 OF LOT 5 BLOCK 4 DISTRICT LOT 2 PLAN 5914" }, { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-09-20 (described on Site Profile dated 2014-09-20)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "dateNoted": "2014-10-08", + "parcelID": "15915", + "crownLandUsePIN": "15592", + "crownLandFileNumber": "16731", + "landDescription": "LOT 1 OF LOT 5 BLOCK 5 DISTRICT LOT 1 PLAN 3097" + }, + { + "siteRegistry": false, + "dateNoted": "2023-01-22", + "parcelID": "19541", + "crownLandUsePIN": "16540", + "crownLandFileNumber": "20676", + "landDescription": "LOT 2 OF LOT 3 BLOCK 2 DISTRICT LOT 5 PLAN 9581" + }, + { + "siteRegistry": true, + "dateNoted": "2020-05-05", + "parcelID": "17648", + "crownLandUsePIN": "19690", + "crownLandFileNumber": "16382", + "landDescription": "LOT 1 OF LOT 4 BLOCK 2 DISTRICT LOT 5 PLAN 6998" + }, + { + "siteRegistry": true, + "dateNoted": "2019-03-16", + "parcelID": "19865", + "crownLandUsePIN": "15288", + "crownLandFileNumber": "19357", + "landDescription": "LOT 4 OF LOT 1 BLOCK 4 DISTRICT LOT 3 PLAN 7333" } ], "siteDisclosures": [ { "siteRegistry": false, - "dateReceived": "2016-08-30", - "dateCompleted": "2017-04-22", - "dateEntered": "2017-01-30", - "dateRegistrar": "2022-09-02", - "dateLocalAuthorityReceived": "2015-04-06", - "summary": "Laudantium maxime similique porro voluptate corporis unde consequatur possimus facilis.", - "informationUsed": "Neque ratione delectus nulla totam inventore est.\nSapiente illum ea temporibus non dolorem debitis voluptate repellat.\nQuaerat autem doloremque assumenda omnis veniam quidem fugit consequatur.\nPraesentium tempora mollitia.", - "pastOrPresentOrders": "Nobis fuga ipsa.\nNostrum vero facilis fuga.\nDicta vero fugiat hic eum voluptatibus tempore officia.", + "dateReceived": "2014-09-22", + "dateCompleted": "2020-05-02", + "dateEntered": "2016-05-06", + "dateRegistrar": "2019-12-24", + "dateLocalAuthorityReceived": "2021-11-18", + "summary": "Quod nemo recusandae.", + "informationUsed": "Culpa vitae unde id.\nQuisquam autem sunt quod quia ab est dignissimos unde.\nNihil occaecati accusantium reiciendis.", + "pastOrPresentOrders": "Esse eveniet error vel vitae repudiandae unde doloremque at perspiciatis.\nRatione itaque optio temporibus dolore.", "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, { "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false + "siteRegistry": true }, { "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true } ] } ], "activityLog": [ { - "siteRegistry": true, + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "STROMAN MURL", - "timestamp": "2020-06-10" + "user": "DOUGLAS BRIDGETTE", + "timestamp": "2023-08-06" }, { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "LEHNER HUMBERTO", - "timestamp": "2017-06-25" + "user": "TREMBLAY BEAULAH", + "timestamp": "2018-03-07" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "MANN LEOPOLDO", - "timestamp": "2023-02-06" + "user": "RENNER AILEEN", + "timestamp": "2022-12-07" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "LEMKE AMPARO", - "timestamp": "2020-06-18" + "user": "KOCH KARIANE", + "timestamp": "2021-11-22" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "COLLINS KARLIE", - "timestamp": "2022-07-21" + "user": "UPTON DOMENICO", + "timestamp": "2016-01-15" }, { - "siteRegistry": true, + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "GREEN-MANTE ELIAN", - "timestamp": "2017-06-06" + "user": "BUCKRIDGE KATTIE", + "timestamp": "2018-11-29" } ], "associatedSites": [ { - "dateNoted": "2023-01-10", + "dateNoted": "2017-10-16", "notes": "", - "parcelID": "16486", - "siteID": "19078", - "siteRegistry": false + "parcelID": "18350", + "siteID": "18687", + "siteRegistry": true }, { - "dateNoted": "2021-06-18", + "dateNoted": "2017-08-05", "notes": "", - "parcelID": "18338", - "siteID": "20294", + "parcelID": "18458", + "siteID": "18160", + "siteRegistry": true + }, + { + "dateNoted": "2014-01-28", + "notes": "", + "parcelID": "17478", + "siteID": "19266", "siteRegistry": false } ] }, { - "uuid": "3ba6a7c3-6209-438f-9e5a-7339039d9aef", - "siteID": 16922, - "address": "56975 Marcelo Port", - "latitude": 53.5759, - "longitude": -119.2303, - "lastUpdated": "2016-11-06", - "city": "Jaydencester", - "region": "Cariboo", - "victoriaFile": "26250-20/14907", + "uuid": "1aefcf08-6c4d-49bb-953f-9e3cdaccef69", + "siteID": 16890, + "address": "39666 Buford Avenue", + "latitude": 58.9728, + "longitude": -136.8787, + "lastUpdated": "2023-01-15", + "city": "New Magdalenberg", + "region": " North Coast", + "victoriaFile": "26250-20/3850", "regionalFile": "N/A", "parcelIDs": [ - 3634070, - 8283396, - 258003, - 1199233, - 6950015 + 8079449, + 4267069, + 2218150, + 3259371, + 1414291 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2019-05-26", - "completed": "2019-04-24", - "initiated": "2017-09-29", - "ministryContact": "DARE LESLIE", + "createdAt": "2022-05-08", + "completed": "2014-05-11", + "initiated": "2016-05-03", + "ministryContact": "TOWNE ELENOR", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -30123,7 +33850,7 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true }, @@ -30132,29 +33859,19 @@ "role": "SUBMITTED BY", "siteRegistry": true }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2017-02-27", - "completed": "2017-02-25", - "initiated": "2023-09-29", - "ministryContact": "SIPES ABIGAIL", + "createdAt": "2022-04-04", + "completed": "2022-12-30", + "initiated": "2023-08-07", + "ministryContact": "CRONIN JANIE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -30165,21 +33882,31 @@ { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2020-06-12", - "completed": "2016-08-31", - "initiated": "2013-10-18", - "ministryContact": "LANG KASANDRA", + "createdAt": "2016-09-14", + "completed": "2015-02-10", + "initiated": "2019-02-03", + "ministryContact": "DECKOW ZORA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -30188,9 +33915,9 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", @@ -30198,7 +33925,7 @@ "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true }, @@ -30206,15 +33933,20 @@ "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false } ], "siteRegistry": true }, { - "createdAt": "2019-05-19", - "completed": "2023-09-16", - "initiated": "2016-03-01", - "ministryContact": "FEIL SAVION", + "createdAt": "2017-11-20", + "completed": "2017-06-09", + "initiated": "2015-03-15", + "ministryContact": "MARQUARDT EULALIA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -30224,28 +33956,28 @@ "notationParticipants": [ { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false + "role": "SUBMITTED BY", + "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false } ], "siteRegistry": true @@ -30254,18 +33986,8 @@ "participants": [ { "name": "AMET, DOLOR SIT", - "endDate": "2022-06-09", - "startDate": "2021-09-27", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": true - }, - { - "name": "AMET, DOLOR SIT", - "endDate": "2021-09-14", - "startDate": "2022-10-31", + "endDate": "2021-04-17", + "startDate": "2014-10-20", "notes": "", "roles": [ "ORGANIZATION" @@ -30274,116 +33996,102 @@ }, { "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2016-03-30", - "startDate": "2020-12-25", + "endDate": "2014-08-08", + "startDate": "2015-12-05", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": true }, { "name": "AMET, DOLOR SIT", - "endDate": "2014-01-08", - "startDate": "2022-01-15", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2016-09-02", - "startDate": "2019-08-02", + "endDate": "2014-07-27", + "startDate": "2022-01-13", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false } ], "suspectLandUses": [ { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-10-03 (described on Site Profile dated 2019-10-03)", + "notes": "INSERTED FOR SITE PROFILE DATED 2018-01-15 (described on Site Profile dated 2018-01-15)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2022-09-23 (described on Site Profile dated 2022-09-23)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-02-26 (described on Site Profile dated 2018-02-26)", + "notes": "INSERTED FOR SITE PROFILE DATED 2017-10-11 (described on Site Profile dated 2017-10-11)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-04-23 (described on Site Profile dated 2022-04-23)", + "notes": "INSERTED FOR SITE PROFILE DATED 2021-05-18 (described on Site Profile dated 2021-05-18)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + } + ], + "parcelDescriptions": [ + { + "siteRegistry": false, + "dateNoted": "2020-07-03", + "parcelID": "15686", + "crownLandUsePIN": "16743", + "crownLandFileNumber": "20416", + "landDescription": "LOT 2 OF LOT 2 BLOCK 5 DISTRICT LOT 3 PLAN 8732" }, { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2023-02-27 (described on Site Profile dated 2023-02-27)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "dateNoted": "2013-11-11", + "parcelID": "16497", + "crownLandUsePIN": "18504", + "crownLandFileNumber": "19396", + "landDescription": "LOT 1 OF LOT 2 BLOCK 1 DISTRICT LOT 2 PLAN 4737" + }, + { + "siteRegistry": false, + "dateNoted": "2019-06-12", + "parcelID": "18752", + "crownLandUsePIN": "17298", + "crownLandFileNumber": "16656", + "landDescription": "LOT 1 OF LOT 4 BLOCK 3 DISTRICT LOT 1 PLAN 9727" }, { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-08-26 (described on Site Profile dated 2021-08-26)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "dateNoted": "2018-12-10", + "parcelID": "17634", + "crownLandUsePIN": "15655", + "crownLandFileNumber": "17853", + "landDescription": "LOT 2 OF LOT 1 BLOCK 3 DISTRICT LOT 4 PLAN 8604" } ], "siteDisclosures": [ { - "siteRegistry": false, - "dateReceived": "2021-12-31", - "dateCompleted": "2018-03-16", - "dateEntered": "2017-04-19", - "dateRegistrar": "2017-11-03", - "dateLocalAuthorityReceived": "2015-06-23", - "summary": "Enim temporibus quaerat voluptates occaecati cupiditate facilis.\nTemporibus eius vero ipsam laboriosam quam dicta.\nNon at dolores officiis et beatae.", - "informationUsed": "Reiciendis nostrum tempora culpa natus repellendus repudiandae quia.\nPariatur in modi tempora.\nEum debitis iure aliquam exercitationem quasi libero.\nUllam sunt laudantium nesciunt ab modi dolores iure quidem.", - "pastOrPresentOrders": "Tempore eos et voluptate.", + "siteRegistry": true, + "dateReceived": "2022-03-13", + "dateCompleted": "2020-04-30", + "dateEntered": "2022-06-25", + "dateRegistrar": "2021-02-08", + "dateLocalAuthorityReceived": "2019-05-14", + "summary": "Fugiat culpa neque itaque voluptas rem.", + "informationUsed": "Culpa minus deleniti.\nQuisquam animi magnam culpa.\nConsequuntur culpa pariatur quae.", + "pastOrPresentOrders": "Aperiam voluptatum maxime neque earum.\nVitae minima repudiandae.\nSunt odio aliquid eos.", "commercialAndIndustrialPurposes": [ { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false - }, - { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true - }, - { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false - } - ] - }, - { - "siteRegistry": true, - "dateReceived": "2014-06-16", - "dateCompleted": "2015-11-08", - "dateEntered": "2015-04-05", - "dateRegistrar": "2015-02-12", - "dateLocalAuthorityReceived": "2023-10-09", - "summary": "Quaerat deserunt ea.", - "informationUsed": "Eum eligendi sed quo eos dolorem odio ullam in ullam.\nAt exercitationem ipsum eaque sed quia adipisci illo doloribus eligendi.\nFacilis reprehenderit earum expedita nesciunt et illo saepe asperiores.\nVoluptate magnam dolorum ipsum repudiandae dolorum molestias illo nobis dolores.\nTenetur voluptatum saepe vel.", - "pastOrPresentOrders": "Officiis accusantium aut quod deleniti illum nostrum recusandae ab eveniet.\nDolor quisquam omnis.", - "commercialAndIndustrialPurposes": [ - { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false - }, - { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true } ] } @@ -30392,88 +34100,94 @@ { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "MCLAUGHLIN ALVA", - "timestamp": "2014-07-05" + "user": "PARKER ELDRIDGE", + "timestamp": "2019-10-25" }, { - "siteRegistry": true, + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "FEENEY KYRA", - "timestamp": "2020-02-14" + "user": "PROSACCO LEONORA", + "timestamp": "2015-10-15" }, { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "KUTCH ERNESTO", - "timestamp": "2016-12-02" + "user": "DICKENS KEENAN", + "timestamp": "2021-09-22" }, { - "siteRegistry": true, + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "WILKINSON LEANN", - "timestamp": "2022-03-26" + "user": "D'AMORE EPHRAIM", + "timestamp": "2020-12-20" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "SMITH DWIGHT", - "timestamp": "2021-06-30" + "user": "ROOB NELLIE", + "timestamp": "2021-10-04" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "BARTON MAXIMILLIA", - "timestamp": "2016-10-28" + "user": "VANDERVORT ARDELLA", + "timestamp": "2017-04-10" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "WAELCHI KATTIE", - "timestamp": "2020-10-29" + "user": "CONN SHYANNE", + "timestamp": "2017-03-26" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "STOKES TREY", + "timestamp": "2017-11-20" } ], "associatedSites": [ { - "dateNoted": "2021-08-16", + "dateNoted": "2016-05-27", "notes": "", - "parcelID": "19262", - "siteID": "18404", + "parcelID": "20789", + "siteID": "19914", "siteRegistry": false }, { - "dateNoted": "2022-06-02", + "dateNoted": "2019-01-27", "notes": "", - "parcelID": "20901", - "siteID": "18110", + "parcelID": "19638", + "siteID": "20383", "siteRegistry": false } ] }, { - "uuid": "4f6665a8-320c-4b38-a190-800009a5f582", - "siteID": 15998, - "address": "6317 Evans Cove", - "latitude": 54.2993, - "longitude": -122.3362, - "lastUpdated": "2020-01-09", - "city": "Wellington", - "region": "Kootenay", - "victoriaFile": "26250-20/2880", + "uuid": "77b559a4-45ee-4511-a311-068336bc5019", + "siteID": 18873, + "address": "97274 Era Brooks", + "latitude": 53.2493, + "longitude": -118.6769, + "lastUpdated": "2014-03-11", + "city": "Santa Cruz", + "region": "Cariboo", + "victoriaFile": "26250-20/4766", "regionalFile": "N/A", "parcelIDs": [ - 7792344, - 2614705, - 7084258, - 5661678, - 5507213 + 9851592, + 5304144, + 3781349, + 9102361, + 4749517 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2015-09-20", - "completed": "2014-03-15", - "initiated": "2019-03-08", - "ministryContact": "BLOCK ZENA", + "createdAt": "2017-06-24", + "completed": "2021-01-02", + "initiated": "2020-10-21", + "ministryContact": "MACEJKOVIC REBEKA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -30483,22 +34197,37 @@ "notationParticipants": [ { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2018-08-28", - "completed": "2019-05-19", - "initiated": "2018-09-14", - "ministryContact": "CARTER EMILIA", + "createdAt": "2020-03-20", + "completed": "2020-12-24", + "initiated": "2013-10-20", + "ministryContact": "KING EARLENE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -30508,22 +34237,22 @@ "notationParticipants": [ { "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true + "role": "REQUESTED BY", + "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false + "role": "REQUESTED BY", + "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2021-06-06", - "completed": "2022-03-13", - "initiated": "2015-11-14", - "ministryContact": "MOSCISKI NATHANAEL", + "createdAt": "2019-03-14", + "completed": "2014-01-08", + "initiated": "2013-11-05", + "ministryContact": "DOUGLAS BRADLEY", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -30540,25 +34269,15 @@ "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true } ], "siteRegistry": false }, { - "createdAt": "2014-11-04", - "completed": "2021-11-18", - "initiated": "2019-03-19", - "ministryContact": "O'CONNER DESMOND", + "createdAt": "2022-11-08", + "completed": "2020-01-19", + "initiated": "2021-10-19", + "ministryContact": "HUDSON WAINO", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -30569,27 +34288,32 @@ { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true } ], "participants": [ { "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2015-10-11", - "startDate": "2016-05-24", + "endDate": "2022-12-08", + "startDate": "2013-12-14", "notes": "", "roles": [ "EMPLOYEE" @@ -30597,82 +34321,132 @@ "siteRegistry": false }, { - "name": "AMET, DOLOR SIT", - "endDate": "2021-01-05", - "startDate": "2015-05-07", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2023-01-20", + "startDate": "2023-05-31", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", - "endDate": "2014-05-14", - "startDate": "2014-02-23", + "endDate": "2014-05-20", + "startDate": "2023-01-15", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false } ], "suspectLandUses": [ { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-01-11 (described on Site Profile dated 2017-01-11)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2021-02-25 (described on Site Profile dated 2021-02-25)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-07-23 (described on Site Profile dated 2022-07-23)", + "notes": "INSERTED FOR SITE PROFILE DATED 2018-12-24 (described on Site Profile dated 2018-12-24)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + } + ], + "parcelDescriptions": [ + { + "siteRegistry": false, + "dateNoted": "2015-05-24", + "parcelID": "20575", + "crownLandUsePIN": "16192", + "crownLandFileNumber": "19457", + "landDescription": "LOT 5 OF LOT 4 BLOCK 3 DISTRICT LOT 1 PLAN 6727" + }, + { + "siteRegistry": true, + "dateNoted": "2020-08-01", + "parcelID": "17618", + "crownLandUsePIN": "19235", + "crownLandFileNumber": "15220", + "landDescription": "LOT 4 OF LOT 3 BLOCK 2 DISTRICT LOT 1 PLAN 4802" }, { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-11-06 (described on Site Profile dated 2019-11-06)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "dateNoted": "2017-06-28", + "parcelID": "18219", + "crownLandUsePIN": "20063", + "crownLandFileNumber": "19954", + "landDescription": "LOT 5 OF LOT 4 BLOCK 5 DISTRICT LOT 3 PLAN 6685" }, { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-08-16 (described on Site Profile dated 2018-08-16)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "dateNoted": "2021-08-18", + "parcelID": "18486", + "crownLandUsePIN": "16205", + "crownLandFileNumber": "17503", + "landDescription": "LOT 2 OF LOT 1 BLOCK 2 DISTRICT LOT 1 PLAN 8476" }, { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-11-17 (described on Site Profile dated 2022-11-17)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "dateNoted": "2022-04-07", + "parcelID": "15287", + "crownLandUsePIN": "17093", + "crownLandFileNumber": "19715", + "landDescription": "LOT 5 OF LOT 1 BLOCK 5 DISTRICT LOT 2 PLAN 7082" } ], "siteDisclosures": [ { - "siteRegistry": false, - "dateReceived": "2013-11-24", - "dateCompleted": "2018-04-21", - "dateEntered": "2020-01-17", - "dateRegistrar": "2021-03-23", - "dateLocalAuthorityReceived": "2021-07-22", - "summary": "Soluta dicta saepe enim molestias sed modi recusandae commodi.", - "informationUsed": "Et esse voluptate laborum fugiat harum.\nCulpa quasi occaecati facere aspernatur voluptatem.\nInventore corrupti aliquid labore labore.\nAccusamus blanditiis cupiditate.", - "pastOrPresentOrders": "Cumque maiores animi saepe porro.\nNecessitatibus iusto ullam sed quo amet corrupti accusantium sapiente.", + "siteRegistry": true, + "dateReceived": "2017-07-06", + "dateCompleted": "2017-09-20", + "dateEntered": "2015-07-31", + "dateRegistrar": "2020-12-16", + "dateLocalAuthorityReceived": "2022-11-26", + "summary": "Reprehenderit rem laboriosam incidunt velit.\nTemporibus expedita sint sunt nam laboriosam error fugiat reiciendis nam.", + "informationUsed": "Nesciunt placeat exercitationem facilis et doloribus.\nVeritatis sequi unde rerum nobis tempora quibusdam.\nMinus dolorem fugit iste quod quisquam odit saepe.\nQuisquam voluptatibus facilis eaque pariatur voluptatem aliquid ad.", + "pastOrPresentOrders": "Fuga eum unde est praesentium magni tempora.", "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, { "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false }, { "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true + "siteRegistry": false }, { "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + } + ] + }, + { + "siteRegistry": false, + "dateReceived": "2016-05-02", + "dateCompleted": "2014-06-14", + "dateEntered": "2021-02-19", + "dateRegistrar": "2018-09-27", + "dateLocalAuthorityReceived": "2014-05-21", + "summary": "Quasi ipsam amet optio voluptates adipisci.\nDolor explicabo eos fugiat.\nOfficiis voluptatem quos dolorum et dolores.", + "informationUsed": "Voluptates sequi deleniti.\nOfficiis rem et.\nTotam maiores eius ab odio dolores praesentium vitae cumque.\nQuis perferendis voluptatem necessitatibus cum iusto occaecati facilis.\nEum dolor porro similique autem occaecati incidunt.", + "pastOrPresentOrders": "Recusandae excepturi vitae deserunt assumenda illum dolores dolores sint.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { - "scheduleReference": "F1*", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true } @@ -30681,83 +34455,102 @@ ], "activityLog": [ { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "LOWE ZELLA", - "timestamp": "2022-12-19" + "user": "LEMKE LAVONNE", + "timestamp": "2019-06-24" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "BAILEY GABRIELLE", - "timestamp": "2021-03-11" + "user": "GREENFELDER ELZA", + "timestamp": "2017-08-22" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "SKILES JUDY", - "timestamp": "2019-03-28" + "user": "BRAKUS VINCENT", + "timestamp": "2018-12-27" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "AUFDERHAR LUCIOUS", - "timestamp": "2017-05-28" + "user": "KING TELLY", + "timestamp": "2022-04-24" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "HAND EMMETT", - "timestamp": "2018-12-16" + "user": "LITTLE JERRELL", + "timestamp": "2016-02-11" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "MURRAY STANFORD", - "timestamp": "2015-12-08" + "user": "ORTIZ JAYNE", + "timestamp": "2023-03-08" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "STIEDEMANN CELESTINO", - "timestamp": "2019-01-05" + "user": "SCHROEDER-ROOB JAYSON", + "timestamp": "2023-08-04" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "KSHLERIN HANK", + "timestamp": "2014-05-19" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "DICKI HUBERT", + "timestamp": "2022-12-24" } ], "associatedSites": [ { - "dateNoted": "2020-09-28", + "dateNoted": "2022-11-19", "notes": "", - "parcelID": "20450", - "siteID": "19019", + "parcelID": "17962", + "siteID": "15987", "siteRegistry": true + }, + { + "dateNoted": "2022-05-05", + "notes": "", + "parcelID": "20400", + "siteID": "20492", + "siteRegistry": false } ] }, { - "uuid": "224600d9-c109-411a-9513-68d49b59a86b", - "siteID": 19991, - "address": "199 O'Hara Throughway", - "latitude": 56.0608, - "longitude": -137.8194, - "lastUpdated": "2022-01-03", - "city": "New Barry", - "region": "Vancouver Island/Coast", - "victoriaFile": "26250-20/7683", + "uuid": "0a16cde8-283b-460c-8adb-72b65197122c", + "siteID": 20139, + "address": "6075 Mueller Drives", + "latitude": 57.2174, + "longitude": -131.6464, + "lastUpdated": "2019-12-23", + "city": "Southaven", + "region": "Kootenay", + "victoriaFile": "26250-20/14512", "regionalFile": "N/A", "parcelIDs": [ - 2016231, - 8036569, - 354300, - 6860065, - 5710587 + 9243453, + 2798256, + 7648329, + 365349, + 9306502 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2018-01-25", - "completed": "2018-02-27", - "initiated": "2016-06-05", - "ministryContact": "KLEIN-KUHIC HALLIE", + "createdAt": "2016-09-29", + "completed": "2019-11-17", + "initiated": "2014-04-07", + "ministryContact": "KOSS MARTINA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -30767,57 +34560,37 @@ "notationParticipants": [ { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - } - ], - "siteRegistry": false - }, - { - "createdAt": "2019-03-07", - "completed": "2016-08-07", - "initiated": "2014-07-17", - "ministryContact": "LANGWORTH AMYA", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ + "role": "REQUESTED BY", + "siteRegistry": false + }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2021-12-08", - "completed": "2023-06-24", - "initiated": "2015-02-02", - "ministryContact": "MANN OSVALDO", + "createdAt": "2018-08-15", + "completed": "2018-07-08", + "initiated": "2019-03-30", + "ministryContact": "HERZOG HAZLE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -30827,6 +34600,11 @@ "notationParticipants": [ { "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false }, @@ -30836,29 +34614,19 @@ "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false } ], "participants": [ { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2017-07-02", - "startDate": "2016-01-15", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2014-12-01", - "startDate": "2023-03-08", + "name": "IPSUM", + "endDate": "2020-10-01", + "startDate": "2019-12-26", "notes": "", "roles": [ "EMPLOYEE" @@ -30867,8 +34635,8 @@ }, { "name": "SHELL CANADA PRODUCTS", - "endDate": "2023-07-09", - "startDate": "2016-06-14", + "endDate": "2022-12-07", + "startDate": "2016-06-26", "notes": "", "roles": [ "ORGANIZATION" @@ -30876,9 +34644,9 @@ "siteRegistry": false }, { - "name": "IPSUM", - "endDate": "2015-08-16", - "startDate": "2017-01-26", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2017-01-22", + "startDate": "2018-10-24", "notes": "", "roles": [ "ORGANIZATION" @@ -30887,149 +34655,209 @@ } ], "suspectLandUses": [ + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2022-07-19 (described on Site Profile dated 2022-07-19)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-11-29 (described on Site Profile dated 2017-11-29)", + "notes": "INSERTED FOR SITE PROFILE DATED 2017-05-24 (described on Site Profile dated 2017-05-24)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2017-12-12 (described on Site Profile dated 2017-12-12)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2023-01-24 (described on Site Profile dated 2023-01-24)", + "notes": "INSERTED FOR SITE PROFILE DATED 2017-09-29 (described on Site Profile dated 2017-09-29)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + } + ], + "parcelDescriptions": [ + { + "siteRegistry": true, + "dateNoted": "2015-05-30", + "parcelID": "17347", + "crownLandUsePIN": "15676", + "crownLandFileNumber": "15838", + "landDescription": "LOT 3 OF LOT 2 BLOCK 5 DISTRICT LOT 3 PLAN 6398" }, { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2020-02-03 (described on Site Profile dated 2020-02-03)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "dateNoted": "2014-11-20", + "parcelID": "20944", + "crownLandUsePIN": "18597", + "crownLandFileNumber": "17273", + "landDescription": "LOT 2 OF LOT 5 BLOCK 4 DISTRICT LOT 2 PLAN 3684" }, { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-04-07 (described on Site Profile dated 2014-04-07)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "siteRegistry": true, + "dateNoted": "2022-12-06", + "parcelID": "17264", + "crownLandUsePIN": "19058", + "crownLandFileNumber": "17100", + "landDescription": "LOT 5 OF LOT 3 BLOCK 2 DISTRICT LOT 3 PLAN 6367" + }, + { + "siteRegistry": true, + "dateNoted": "2016-03-25", + "parcelID": "16321", + "crownLandUsePIN": "20956", + "crownLandFileNumber": "20236", + "landDescription": "LOT 5 OF LOT 2 BLOCK 5 DISTRICT LOT 1 PLAN 6499" } ], "siteDisclosures": [ { "siteRegistry": true, - "dateReceived": "2014-07-26", - "dateCompleted": "2017-04-05", - "dateEntered": "2014-04-20", - "dateRegistrar": "2015-07-29", - "dateLocalAuthorityReceived": "2023-03-23", - "summary": "Quis inventore molestias ipsam amet cum.\nCorrupti maxime temporibus.", - "informationUsed": "Voluptatem facilis est quo aspernatur magnam.\nExercitationem laudantium culpa accusamus neque odio illo.\nSapiente voluptates minima facilis ex ad laudantium facilis deserunt.", - "pastOrPresentOrders": "Quos ab eius.\nExercitationem cupiditate aut eaque provident rem aspernatur in reprehenderit nobis.", + "dateReceived": "2022-04-17", + "dateCompleted": "2019-03-16", + "dateEntered": "2017-10-26", + "dateRegistrar": "2019-11-28", + "dateLocalAuthorityReceived": "2022-07-07", + "summary": "Eaque error similique odio saepe minima.", + "informationUsed": "At neque deserunt minima facilis voluptas.\nDolores architecto sint cum.\nRem voluptas deserunt deserunt tempora assumenda iste.\nMaxime ipsum molestiae cumque necessitatibus.\nDelectus distinctio consequuntur.", + "pastOrPresentOrders": "Autem veniam culpa harum.", "commercialAndIndustrialPurposes": [ { "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, { "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false + } + ] + }, + { + "siteRegistry": true, + "dateReceived": "2020-05-11", + "dateCompleted": "2017-08-31", + "dateEntered": "2015-11-20", + "dateRegistrar": "2018-04-04", + "dateLocalAuthorityReceived": "2023-07-27", + "summary": "Repellat saepe nostrum labore fuga sed vel excepturi aliquid.\nDebitis a maiores commodi assumenda architecto sunt.", + "informationUsed": "Quos cupiditate atque vel in consequuntur eius.\nExcepturi in deserunt vero ullam aliquam provident dolore laborum.\nEveniet mollitia atque error.\nExplicabo suscipit at doloribus porro nulla saepe beatae necessitatibus explicabo.\nAliquam aperiam iusto culpa earum optio deserunt neque.", + "pastOrPresentOrders": "Aspernatur alias alias aut veniam accusamus repellat quaerat illo fugit.\nOmnis fugit enim possimus iste ipsam aliquam error error.\nNon quaerat necessitatibus voluptates.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true }, { "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false } ] } ], "activityLog": [ - { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "GUSIKOWSKI-SMITH MARY", - "timestamp": "2023-02-17" - }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "KUVALIS MERVIN", - "timestamp": "2022-12-02" + "user": "BORER JAYDE", + "timestamp": "2023-05-25" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "LAKIN JIMMIE", - "timestamp": "2021-11-06" + "user": "PARISIAN MARCEL", + "timestamp": "2019-08-10" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "GERHOLD EFRAIN", - "timestamp": "2014-05-07" + "user": "PURDY CLOVIS", + "timestamp": "2020-10-25" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "FEENEY LINDA", - "timestamp": "2019-03-27" + "user": "BORER TALIA", + "timestamp": "2014-08-16" }, { - "siteRegistry": true, + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "O'KON DAISHA", - "timestamp": "2014-10-02" + "user": "JOHNSON BRAYAN", + "timestamp": "2018-11-25" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "RODRIGUEZ CARMINE", - "timestamp": "2020-03-08" - }, - { - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "VEUM HILMA", - "timestamp": "2018-09-09" + "user": "ROWE DAMON", + "timestamp": "2023-03-03" } ], "associatedSites": [ { - "dateNoted": "2017-07-04", + "dateNoted": "2019-01-18", "notes": "", - "parcelID": "19835", - "siteID": "16504", + "parcelID": "19473", + "siteID": "19266", "siteRegistry": true }, { - "dateNoted": "2016-05-16", + "dateNoted": "2017-09-07", "notes": "", - "parcelID": "15302", - "siteID": "16752", - "siteRegistry": true + "parcelID": "18201", + "siteID": "16335", + "siteRegistry": false } ] }, { - "uuid": "4f3d6a75-c554-48f9-87ae-eda9ae25d7d3", - "siteID": 15864, - "address": "21063 Hodkiewicz Center", - "latitude": 48.3484, - "longitude": -120.3432, - "lastUpdated": "2022-02-15", - "city": "Davis", - "region": "Mainland/Southwest", - "victoriaFile": "26250-20/7630", + "uuid": "7aab9908-cede-40ca-8f95-7f145242d2a0", + "siteID": 15987, + "address": "9726 Predovic Forest", + "latitude": 50.3951, + "longitude": -123.6328, + "lastUpdated": "2022-08-09", + "city": "Robertsshire", + "region": " North Coast", + "victoriaFile": "26250-20/9227", "regionalFile": "N/A", "parcelIDs": [ - 6504732, - 4454337, - 6999549, - 3943145, - 9774976 + 1863987, + 232042, + 5480481, + 9568777, + 9530531 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2017-07-01", - "completed": "2019-09-05", - "initiated": "2019-06-03", - "ministryContact": "SCHROEDER SAM", + "createdAt": "2017-04-12", + "completed": "2016-04-05", + "initiated": "2015-07-17", + "ministryContact": "SCHUSTER NELSON", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -31038,38 +34866,28 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", "siteRegistry": false }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2019-04-09", - "completed": "2021-11-01", - "initiated": "2022-05-13", - "ministryContact": "LABADIE MOISES", + "createdAt": "2021-01-25", + "completed": "2015-06-18", + "initiated": "2016-07-20", + "ministryContact": "RIPPIN DORA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -31080,21 +34898,21 @@ { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false + "role": "REQUESTED BY", + "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2014-08-13", - "completed": "2022-10-06", - "initiated": "2021-10-11", - "ministryContact": "SCHAMBERGER DARIANA", + "createdAt": "2018-02-04", + "completed": "2020-12-18", + "initiated": "2019-12-18", + "ministryContact": "CRIST KRISTOFFER", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -31103,49 +34921,19 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, { "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - } - ], - "siteRegistry": false - }, - { - "createdAt": "2016-07-06", - "completed": "2014-03-21", - "initiated": "2014-04-12", - "ministryContact": "LEMKE JENNYFER", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true + "role": "SUBMITTED BY", + "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", @@ -31158,13 +34946,13 @@ "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2020-01-30", - "completed": "2013-11-05", - "initiated": "2015-08-27", - "ministryContact": "GIBSON LEATHA", + "createdAt": "2021-10-10", + "completed": "2019-01-15", + "initiated": "2018-03-07", + "ministryContact": "RIPPIN ANNETTA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -31172,75 +34960,35 @@ "" ], "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false + "role": "SUBMITTED BY", + "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true - } - ], - "siteRegistry": false - } - ], - "participants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2017-03-21", - "startDate": "2022-05-17", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2015-12-10", - "startDate": "2015-02-02", - "notes": "", - "roles": [ - "ORGANIZATION" + } ], "siteRegistry": true - }, - { - "name": "AMET, DOLOR SIT", - "endDate": "2017-11-28", - "startDate": "2014-04-19", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": false - }, + } + ], + "participants": [ { "name": "SHELL CANADA PRODUCTS", - "endDate": "2023-03-08", - "startDate": "2022-02-22", + "endDate": "2021-07-30", + "startDate": "2020-04-14", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2018-05-18", - "startDate": "2015-11-22", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2014-04-04", + "startDate": "2019-10-06", "notes": "", "roles": [ "ORGANIZATION" @@ -31251,166 +34999,142 @@ "suspectLandUses": [ { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-10-15 (described on Site Profile dated 2017-10-15)", + "notes": "INSERTED FOR SITE PROFILE DATED 2021-11-02 (described on Site Profile dated 2021-11-02)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2021-09-29 (described on Site Profile dated 2021-09-29)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-09-12 (described on Site Profile dated 2017-09-12)", + "notes": "INSERTED FOR SITE PROFILE DATED 2018-05-28 (described on Site Profile dated 2018-05-28)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], - "siteDisclosures": [ + "parcelDescriptions": [ { "siteRegistry": false, - "dateReceived": "2023-03-11", - "dateCompleted": "2014-09-08", - "dateEntered": "2013-12-06", - "dateRegistrar": "2017-08-15", - "dateLocalAuthorityReceived": "2016-08-01", - "summary": "Asperiores alias dolorum id quibusdam explicabo fugit magnam praesentium iste.\nDelectus repellat voluptates placeat minus debitis tempore.\nIusto at saepe eos tenetur.", - "informationUsed": "Cupiditate accusantium in similique corrupti excepturi placeat soluta provident voluptas.\nAutem reprehenderit in nesciunt veniam error.\nIste dolorem provident iure excepturi odit.", - "pastOrPresentOrders": "Blanditiis dicta voluptas corrupti sit consequatur cumque consequuntur.", - "commercialAndIndustrialPurposes": [ - { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true - }, - { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false - }, - { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false - } - ] + "dateNoted": "2015-01-24", + "parcelID": "19535", + "crownLandUsePIN": "19490", + "crownLandFileNumber": "15806", + "landDescription": "LOT 4 OF LOT 1 BLOCK 1 DISTRICT LOT 2 PLAN 4872" }, { "siteRegistry": false, - "dateReceived": "2016-11-24", - "dateCompleted": "2023-09-05", - "dateEntered": "2017-04-21", - "dateRegistrar": "2022-12-18", - "dateLocalAuthorityReceived": "2021-04-30", - "summary": "Optio corporis laborum.\nCum aliquid provident commodi cum totam est quaerat perferendis.\nRepellendus sint numquam eius eaque dignissimos unde.", - "informationUsed": "Dolorum quae possimus ipsam consequatur expedita reiciendis ullam.\nAliquam itaque necessitatibus vel quisquam.\nDolor laudantium nostrum similique voluptate modi officia id.\nRepudiandae enim minus esse distinctio dolor.\nAccusantium hic maxime repudiandae totam placeat enim laudantium.", - "pastOrPresentOrders": "Modi quam voluptates quos soluta blanditiis dolor cumque.\nDeserunt harum voluptatibus debitis.\nAlias maxime inventore enim nostrum recusandae.", + "dateNoted": "2017-04-07", + "parcelID": "18755", + "crownLandUsePIN": "16427", + "crownLandFileNumber": "16651", + "landDescription": "LOT 1 OF LOT 3 BLOCK 5 DISTRICT LOT 2 PLAN 8245" + } + ], + "siteDisclosures": [ + { + "siteRegistry": false, + "dateReceived": "2015-08-23", + "dateCompleted": "2019-08-18", + "dateEntered": "2020-02-25", + "dateRegistrar": "2014-05-13", + "dateLocalAuthorityReceived": "2014-03-16", + "summary": "Incidunt commodi facilis occaecati quam laudantium.\nDucimus neque doloribus similique veritatis earum eveniet nisi explicabo.", + "informationUsed": "Pariatur sed doloremque possimus.\nReprehenderit eos exercitationem sapiente quos.\nEligendi libero tempora odit.\nSoluta voluptatem possimus est voluptates alias ipsum itaque similique velit.", + "pastOrPresentOrders": "Itaque praesentium labore est quod animi officiis non.\nRatione facilis inventore temporibus doloribus dolores.\nEaque ullam eum qui.", "commercialAndIndustrialPurposes": [ { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false }, { "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true - }, - { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false } ] } ], "activityLog": [ { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "MRAZ SALLY", - "timestamp": "2022-07-06" + "user": "SKILES ALENE", + "timestamp": "2015-03-09" }, { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "WALSH KIRK", - "timestamp": "2018-05-30" + "user": "DENESIK RASHAD", + "timestamp": "2014-12-25" }, { - "siteRegistry": true, + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "LEUSCHKE TAMARA", - "timestamp": "2022-02-06" + "user": "BOGAN ALENA", + "timestamp": "2016-06-29" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "CORWIN KRISTOFER", - "timestamp": "2015-02-05" + "user": "BARTELL RETHA", + "timestamp": "2022-03-12" }, { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "ANDERSON REECE", - "timestamp": "2023-05-19" + "user": "DACH VIVIAN", + "timestamp": "2022-05-28" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "SWANIAWSKI RYLEE", - "timestamp": "2014-12-28" + "user": "PFEFFER BILLY", + "timestamp": "2020-02-05" }, { - "siteRegistry": true, + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "KOHLER TURNER", - "timestamp": "2017-02-01" + "user": "LUBOWITZ THERESA", + "timestamp": "2017-01-12" } ], "associatedSites": [ { - "dateNoted": "2020-03-10", - "notes": "", - "parcelID": "19604", - "siteID": "16418", - "siteRegistry": false - }, - { - "dateNoted": "2019-06-04", + "dateNoted": "2022-03-18", "notes": "", - "parcelID": "16083", - "siteID": "19991", + "parcelID": "17275", + "siteID": "18240", "siteRegistry": true - }, - { - "dateNoted": "2016-05-31", - "notes": "", - "parcelID": "19634", - "siteID": "17710", - "siteRegistry": false } ] }, { - "uuid": "516d8754-14e7-4254-8543-b6806557f6a0", - "siteID": 19041, - "address": "246 Astrid Wells", - "latitude": 48.7114, - "longitude": -136.9558, - "lastUpdated": "2022-04-02", - "city": "South Katrinefort", - "region": "Kootenay", - "victoriaFile": "26250-20/4199", + "uuid": "b1315fb3-c10c-4039-80c2-3707e9aee3c1", + "siteID": 20741, + "address": "545 Adolf Loaf", + "latitude": 52.8016, + "longitude": -131.2535, + "lastUpdated": "2015-05-21", + "city": "Herzogcester", + "region": "Thompson-Okanagan", + "victoriaFile": "26250-20/3165", "regionalFile": "N/A", "parcelIDs": [ - 1186313, - 710517, - 8812680, - 5629579, - 3517633 + 9587655, + 7529518, + 5413837, + 9162318, + 8586291 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2018-03-11", - "completed": "2019-03-20", - "initiated": "2015-08-06", - "ministryContact": "D'AMORE TREVOR", + "createdAt": "2015-03-01", + "completed": "2020-07-27", + "initiated": "2022-09-18", + "ministryContact": "RUNTE BELLA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -31421,12 +35145,7 @@ { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", @@ -31438,19 +35157,24 @@ "role": "REQUESTED BY", "siteRegistry": false }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2019-11-01", - "completed": "2018-09-21", - "initiated": "2015-02-28", - "ministryContact": "HERMANN GIOVANNY", + "createdAt": "2022-10-19", + "completed": "2014-07-04", + "initiated": "2016-01-16", + "ministryContact": "WALTER LEONEL", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -31460,27 +35184,22 @@ "notationParticipants": [ { "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true + "role": "REQUESTED BY", + "siteRegistry": false } ], "siteRegistry": false }, { - "createdAt": "2021-07-07", - "completed": "2022-03-07", - "initiated": "2020-04-04", - "ministryContact": "HAMMES FRIEDA", + "createdAt": "2019-01-24", + "completed": "2022-06-26", + "initiated": "2013-11-03", + "ministryContact": "BERNIER BAYLEE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -31489,19 +35208,29 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false } ], "siteRegistry": false @@ -31509,19 +35238,19 @@ ], "participants": [ { - "name": "AMET, DOLOR SIT", - "endDate": "2017-03-13", - "startDate": "2018-04-02", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2022-04-02", + "startDate": "2014-06-20", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2017-09-25", - "startDate": "2016-05-07", + "name": "IPSUM", + "endDate": "2022-04-28", + "startDate": "2015-09-07", "notes": "", "roles": [ "ORGANIZATION" @@ -31529,73 +35258,119 @@ "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2014-09-15", - "startDate": "2021-10-13", + "name": "IPSUM", + "endDate": "2014-01-02", + "startDate": "2017-02-24", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": false + "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", - "endDate": "2015-11-06", - "startDate": "2019-03-26", + "endDate": "2017-02-19", + "startDate": "2018-11-24", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "AMET, DOLOR SIT", + "endDate": "2016-01-08", + "startDate": "2018-10-03", + "notes": "", + "roles": [ + "EMPLOYEE" ], "siteRegistry": false } ], "suspectLandUses": [ { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-04-02 (described on Site Profile dated 2014-04-02)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2019-09-16 (described on Site Profile dated 2019-09-16)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-05-15 (described on Site Profile dated 2018-05-15)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "notes": "INSERTED FOR SITE PROFILE DATED 2014-10-23 (described on Site Profile dated 2014-10-23)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-10-03 (described on Site Profile dated 2016-10-03)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2018-06-25 (described on Site Profile dated 2018-06-25)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2020-01-03 (described on Site Profile dated 2020-01-03)", + "notes": "INSERTED FOR SITE PROFILE DATED 2016-10-29 (described on Site Profile dated 2016-10-29)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" - }, + } + ], + "parcelDescriptions": [ { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-07-08 (described on Site Profile dated 2014-07-08)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "dateNoted": "2014-02-15", + "parcelID": "16086", + "crownLandUsePIN": "19588", + "crownLandFileNumber": "17755", + "landDescription": "LOT 3 OF LOT 3 BLOCK 4 DISTRICT LOT 3 PLAN 5187" + }, + { + "siteRegistry": false, + "dateNoted": "2021-04-09", + "parcelID": "16214", + "crownLandUsePIN": "20307", + "crownLandFileNumber": "18632", + "landDescription": "LOT 4 OF LOT 4 BLOCK 4 DISTRICT LOT 1 PLAN 3161" } ], "siteDisclosures": [ { - "siteRegistry": false, - "dateReceived": "2013-10-24", - "dateCompleted": "2023-03-17", - "dateEntered": "2015-08-12", - "dateRegistrar": "2018-05-15", - "dateLocalAuthorityReceived": "2019-12-14", - "summary": "Non soluta numquam ea.\nAliquid distinctio itaque ducimus.", - "informationUsed": "Natus dolore sunt animi quibusdam possimus exercitationem ut.\nInventore est esse cupiditate fugit.\nDolor sapiente aliquid cum fuga.", - "pastOrPresentOrders": "Adipisci earum ab expedita temporibus veritatis.\nNatus tenetur expedita sequi quia adipisci.\nCorporis exercitationem repudiandae quos esse laboriosam quos beatae.", + "siteRegistry": true, + "dateReceived": "2019-01-10", + "dateCompleted": "2015-03-20", + "dateEntered": "2021-07-07", + "dateRegistrar": "2022-05-24", + "dateLocalAuthorityReceived": "2017-04-12", + "summary": "Ullam blanditiis cupiditate minima occaecati eaque hic a explicabo fugit.\nVoluptatibus nisi ex omnis officiis fugiat impedit architecto dolore.", + "informationUsed": "Cum placeat ducimus ab ad.\nAutem distinctio quaerat explicabo reiciendis deserunt aspernatur.\nEx aliquam numquam molestias tempora voluptas.\nAb optio possimus sit.", + "pastOrPresentOrders": "Exercitationem dolorum nobis.\nQuas illo recusandae quaerat.\nTenetur cumque possimus laudantium tempore velit reprehenderit corrupti alias.", "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, { "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + } + ] + }, + { + "siteRegistry": true, + "dateReceived": "2022-06-29", + "dateCompleted": "2021-07-17", + "dateEntered": "2020-07-05", + "dateRegistrar": "2023-05-28", + "dateLocalAuthorityReceived": "2018-03-02", + "summary": "Perspiciatis possimus incidunt iusto rerum aliquid facilis.", + "informationUsed": "Esse ullam quos.\nSequi amet numquam repellendus commodi quaerat maxime.\nFugit sed culpa perspiciatis animi praesentium ipsa minus.\nDicta dolor eos enim maiores.", + "pastOrPresentOrders": "Laborum tempora reiciendis et eius.\nCum perferendis voluptate.\nInventore veniam quae at in.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { @@ -31608,85 +35383,84 @@ ], "activityLog": [ { - "siteRegistry": true, + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "SCHNEIDER TRACE", - "timestamp": "2020-07-20" + "user": "BARROWS HALEIGH", + "timestamp": "2015-05-25" }, { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "ZEMLAK ALEXYS", - "timestamp": "2020-08-24" + "user": "CARROLL DELLA", + "timestamp": "2022-11-16" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "BLOCK AHMED", - "timestamp": "2015-03-13" + "user": "HAMILL DEXTER", + "timestamp": "2016-03-06" }, { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "KLEIN JACINTO", - "timestamp": "2021-02-10" + "user": "MANTE WYATT", + "timestamp": "2015-04-10" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "ALTENWERTH CALI", - "timestamp": "2018-06-18" + "user": "GISLASON LILIANA", + "timestamp": "2018-11-06" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "WITTING CHRISTINA", + "timestamp": "2016-06-20" } ], "associatedSites": [ { - "dateNoted": "2016-12-31", - "notes": "", - "parcelID": "20606", - "siteID": "17078", - "siteRegistry": true - }, - { - "dateNoted": "2014-08-12", + "dateNoted": "2020-10-23", "notes": "", - "parcelID": "16362", - "siteID": "20571", + "parcelID": "18640", + "siteID": "17386", "siteRegistry": false }, { - "dateNoted": "2023-06-21", + "dateNoted": "2016-10-05", "notes": "", - "parcelID": "18626", - "siteID": "15327", - "siteRegistry": true + "parcelID": "17800", + "siteID": "15829", + "siteRegistry": false } ] }, { - "uuid": "1b2dfbfa-9c98-4033-a2e5-9d20e00cbc9a", - "siteID": 16715, - "address": "44227 Betty Square", - "latitude": 52.982, - "longitude": -132.2525, - "lastUpdated": "2022-09-14", - "city": "Ashleeborough", - "region": "Cariboo", - "victoriaFile": "26250-20/19600", + "uuid": "5e88e93e-64e1-4e1c-bff6-ef9735e2de25", + "siteID": 20958, + "address": "946 Stiedemann Lights", + "latitude": 49.7743, + "longitude": -132.5905, + "lastUpdated": "2022-02-08", + "city": "Tulsa", + "region": "Thompson-Okanagan", + "victoriaFile": "26250-20/15557", "regionalFile": "N/A", "parcelIDs": [ - 7932952, - 8266127, - 397820, - 4508235, - 4672033 + 387325, + 5038920, + 2709145, + 5265700, + 7242356 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2015-08-10", - "completed": "2019-08-25", - "initiated": "2022-01-28", - "ministryContact": "WATSICA HOYT", + "createdAt": "2017-12-04", + "completed": "2014-08-02", + "initiated": "2019-10-19", + "ministryContact": "SCHMELER HILBERT", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -31697,7 +35471,7 @@ { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", @@ -31705,9 +35479,9 @@ "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", @@ -31715,18 +35489,18 @@ "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": true } ], "siteRegistry": false }, { - "createdAt": "2015-06-01", - "completed": "2022-12-29", - "initiated": "2021-12-02", - "ministryContact": "GERHOLD RAHSAAN", + "createdAt": "2022-09-14", + "completed": "2021-07-14", + "initiated": "2021-06-17", + "ministryContact": "VON ALEC", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -31735,23 +35509,23 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true } ], "siteRegistry": true }, { - "createdAt": "2021-10-18", - "completed": "2019-01-13", - "initiated": "2017-01-05", - "ministryContact": "ONDRICKA SAVANNA", + "createdAt": "2019-07-26", + "completed": "2021-04-21", + "initiated": "2015-11-13", + "ministryContact": "FEIL ARYANNA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -31760,38 +35534,68 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "createdAt": "2020-06-20", + "completed": "2015-12-22", + "initiated": "2015-06-27", + "ministryContact": "POUROS DEVON", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false + "role": "SUBMITTED BY", + "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2015-02-22", - "completed": "2014-04-25", - "initiated": "2018-05-23", - "ministryContact": "ZEMLAK BURDETTE", + "createdAt": "2015-03-17", + "completed": "2023-08-19", + "initiated": "2016-12-02", + "ministryContact": "HAGENES SHEMAR", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -31801,16 +35605,26 @@ "notationParticipants": [ { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": true }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, { "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false } @@ -31819,30 +35633,20 @@ } ], "participants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2019-02-05", - "startDate": "2018-04-20", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": true - }, { "name": "SHELL CANADA PRODUCTS", - "endDate": "2022-04-21", - "startDate": "2016-07-07", + "endDate": "2018-05-24", + "startDate": "2014-04-08", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": false }, { - "name": "AMET, DOLOR SIT", - "endDate": "2020-07-09", - "startDate": "2017-06-26", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2018-03-28", + "startDate": "2021-02-17", "notes": "", "roles": [ "EMPLOYEE" @@ -31850,9 +35654,9 @@ "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2020-04-07", - "startDate": "2019-12-01", + "name": "AMET, DOLOR SIT", + "endDate": "2014-06-16", + "startDate": "2017-01-17", "notes": "", "roles": [ "ORGANIZATION" @@ -31860,52 +35664,83 @@ "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2017-09-10", - "startDate": "2021-02-12", + "name": "IPSUM", + "endDate": "2020-12-20", + "startDate": "2018-05-26", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": true } ], "suspectLandUses": [ { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-09-05 (described on Site Profile dated 2017-09-05)", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2017-03-05 (described on Site Profile dated 2017-03-05)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2020-04-21 (described on Site Profile dated 2020-04-21)", + "notes": "INSERTED FOR SITE PROFILE DATED 2020-04-03 (described on Site Profile dated 2020-04-03)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2023-02-15 (described on Site Profile dated 2023-02-15)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], + "parcelDescriptions": [ + { + "siteRegistry": false, + "dateNoted": "2021-06-11", + "parcelID": "19750", + "crownLandUsePIN": "16346", + "crownLandFileNumber": "17365", + "landDescription": "LOT 2 OF LOT 3 BLOCK 1 DISTRICT LOT 4 PLAN 8764" + }, + { + "siteRegistry": true, + "dateNoted": "2023-09-27", + "parcelID": "15930", + "crownLandUsePIN": "17306", + "crownLandFileNumber": "20865", + "landDescription": "LOT 4 OF LOT 5 BLOCK 2 DISTRICT LOT 3 PLAN 9195" + }, + { + "siteRegistry": true, + "dateNoted": "2014-04-10", + "parcelID": "18305", + "crownLandUsePIN": "15522", + "crownLandFileNumber": "20675", + "landDescription": "LOT 3 OF LOT 2 BLOCK 3 DISTRICT LOT 5 PLAN 2970" + } + ], "siteDisclosures": [ { "siteRegistry": false, - "dateReceived": "2013-12-21", - "dateCompleted": "2022-12-08", - "dateEntered": "2023-02-01", - "dateRegistrar": "2017-12-29", - "dateLocalAuthorityReceived": "2014-01-01", - "summary": "Dolorem sint totam distinctio quisquam ea consequatur quaerat.", - "informationUsed": "Temporibus facere repellendus fugiat incidunt.\nVelit vero cupiditate quibusdam.\nVoluptatem eaque ad placeat quos sunt earum dolore.", - "pastOrPresentOrders": "Optio sed explicabo.", + "dateReceived": "2021-02-05", + "dateCompleted": "2023-10-08", + "dateEntered": "2014-08-20", + "dateRegistrar": "2014-03-30", + "dateLocalAuthorityReceived": "2023-03-08", + "summary": "Inventore debitis dolorem.\nCumque doloremque natus nostrum.", + "informationUsed": "Unde porro ea nam corporis facilis harum laboriosam earum.\nImpedit omnis nam.\nAtque vitae ab delectus.\nIllum consequatur sequi occaecati laborum ducimus aperiam harum.", + "pastOrPresentOrders": "Tempore provident architecto.", "commercialAndIndustrialPurposes": [ { "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false }, { "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true + "siteRegistry": false }, { - "scheduleReference": "F1*", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false } @@ -31916,95 +35751,75 @@ { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "WEHNER EMERALD", - "timestamp": "2014-01-03" - }, - { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "ROGAHN DAHLIA", - "timestamp": "2017-10-16" + "user": "MCDERMOTT JASON", + "timestamp": "2021-01-13" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "SPORER-STREICH BOBBIE", - "timestamp": "2020-11-20" + "user": "KOELPIN DORTHY", + "timestamp": "2017-03-05" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "WALKER JERROLD", - "timestamp": "2022-08-16" + "user": "BERNHARD NOAH", + "timestamp": "2021-08-04" }, { - "siteRegistry": true, + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "WALTER TRISTON", - "timestamp": "2015-12-31" + "user": "RATKE AMARI", + "timestamp": "2016-09-05" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "BREITENBERG JAYLAN", - "timestamp": "2014-09-13" + "user": "WINTHEISER CYRUS", + "timestamp": "2016-03-04" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "WATERS HALIE", - "timestamp": "2014-06-28" + "user": "GOYETTE NICHOLE", + "timestamp": "2017-07-14" } ], "associatedSites": [ { - "dateNoted": "2019-12-20", + "dateNoted": "2017-03-15", "notes": "", - "parcelID": "20569", - "siteID": "16701", - "siteRegistry": false - }, - { - "dateNoted": "2019-06-02", - "notes": "", - "parcelID": "16281", - "siteID": "20188", - "siteRegistry": true - }, - { - "dateNoted": "2022-06-22", - "notes": "", - "parcelID": "15736", - "siteID": "19077", + "parcelID": "20562", + "siteID": "18001", "siteRegistry": false } ] }, { - "uuid": "040ef3be-6a44-4812-b255-406372491c00", - "siteID": 18839, - "address": "1692 Audie Mews", - "latitude": 52.989, - "longitude": -130.4234, - "lastUpdated": "2013-11-29", - "city": "West Brando", - "region": "Mainland/Southwest", - "victoriaFile": "26250-20/17066", + "uuid": "d2a7c556-a038-4a95-af0a-b7409a0d53b0", + "siteID": 17648, + "address": "851 Annalise Turnpike", + "latitude": 56.868, + "longitude": -131.8354, + "lastUpdated": "2018-04-11", + "city": "McGlynncester", + "region": "Vancouver Island/Coast", + "victoriaFile": "26250-20/10075", "regionalFile": "N/A", "parcelIDs": [ - 3750179, - 4403237, - 3674941, - 2671936, - 3548685 + 7332867, + 8952612, + 4522218, + 6131271, + 2837759 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2018-01-22", - "completed": "2017-01-24", - "initiated": "2019-06-16", - "ministryContact": "LOWE EMMETT", + "createdAt": "2023-05-21", + "completed": "2020-10-22", + "initiated": "2018-01-02", + "ministryContact": "WEIMANN JERAD", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -32023,12 +35838,37 @@ "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "createdAt": "2019-08-13", + "completed": "2014-08-31", + "initiated": "2014-01-17", + "ministryContact": "ZULAUF HAILIE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ { "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true } @@ -32036,10 +35876,10 @@ "siteRegistry": false }, { - "createdAt": "2019-10-10", - "completed": "2015-10-10", - "initiated": "2018-01-25", - "ministryContact": "STEUBER KOLBY", + "createdAt": "2020-07-07", + "completed": "2016-04-30", + "initiated": "2014-11-01", + "ministryContact": "KLEIN SELENA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -32048,19 +35888,49 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "createdAt": "2018-10-07", + "completed": "2017-10-23", + "initiated": "2016-03-16", + "ministryContact": "O'KEEFE KIERAN", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true } ], "siteRegistry": true @@ -32068,9 +35938,9 @@ ], "participants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2021-09-27", - "startDate": "2014-10-31", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2013-12-15", + "startDate": "2017-10-02", "notes": "", "roles": [ "EMPLOYEE" @@ -32078,65 +35948,140 @@ "siteRegistry": true }, { - "name": "AMET, DOLOR SIT", - "endDate": "2020-05-09", - "startDate": "2018-10-21", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2014-04-27", + "startDate": "2023-04-27", "notes": "", "roles": [ "EMPLOYEE" ], "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2019-12-21", - "startDate": "2018-02-17", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": true - }, - { - "name": "IPSUM", - "endDate": "2021-09-13", - "startDate": "2015-08-07", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": true } ], "suspectLandUses": [ { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-07-19 (described on Site Profile dated 2014-07-19)", + "notes": "INSERTED FOR SITE PROFILE DATED 2017-04-15 (described on Site Profile dated 2017-04-15)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2016-03-03 (described on Site Profile dated 2016-03-03)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-10-30 (described on Site Profile dated 2021-10-30)", + "notes": "INSERTED FOR SITE PROFILE DATED 2016-03-10 (described on Site Profile dated 2016-03-10)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-04-01 (described on Site Profile dated 2021-04-01)", + "notes": "INSERTED FOR SITE PROFILE DATED 2019-01-16 (described on Site Profile dated 2019-01-16)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2018-01-26 (described on Site Profile dated 2018-01-26)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + } + ], + "parcelDescriptions": [ + { + "siteRegistry": false, + "dateNoted": "2020-05-18", + "parcelID": "18780", + "crownLandUsePIN": "20064", + "crownLandFileNumber": "16107", + "landDescription": "LOT 4 OF LOT 4 BLOCK 1 DISTRICT LOT 5 PLAN 5884" + }, + { + "siteRegistry": true, + "dateNoted": "2020-10-18", + "parcelID": "17073", + "crownLandUsePIN": "16351", + "crownLandFileNumber": "19564", + "landDescription": "LOT 4 OF LOT 2 BLOCK 2 DISTRICT LOT 4 PLAN 5927" + }, + { + "siteRegistry": false, + "dateNoted": "2020-10-15", + "parcelID": "16745", + "crownLandUsePIN": "17665", + "crownLandFileNumber": "18696", + "landDescription": "LOT 4 OF LOT 2 BLOCK 3 DISTRICT LOT 3 PLAN 7934" + }, + { + "siteRegistry": false, + "dateNoted": "2014-01-01", + "parcelID": "16422", + "crownLandUsePIN": "16279", + "crownLandFileNumber": "16572", + "landDescription": "LOT 3 OF LOT 2 BLOCK 4 DISTRICT LOT 2 PLAN 3615" + }, + { + "siteRegistry": true, + "dateNoted": "2016-06-09", + "parcelID": "17113", + "crownLandUsePIN": "15278", + "crownLandFileNumber": "17786", + "landDescription": "LOT 4 OF LOT 3 BLOCK 1 DISTRICT LOT 2 PLAN 5797" } ], "siteDisclosures": [ { - "siteRegistry": true, - "dateReceived": "2016-02-09", - "dateCompleted": "2014-10-11", - "dateEntered": "2023-05-16", - "dateRegistrar": "2021-08-25", - "dateLocalAuthorityReceived": "2022-02-26", - "summary": "Sint quasi iste beatae.", - "informationUsed": "Debitis ut tempora deserunt deserunt.\nAlias aut assumenda autem eum inventore qui porro consequatur.\nSunt quo qui voluptas dignissimos.\nOdit fuga asperiores voluptas sapiente sint similique corrupti sit.\nId recusandae tempore a dolorum voluptate sunt corporis ipsa adipisci.", - "pastOrPresentOrders": "Doloremque necessitatibus reprehenderit tempore expedita molestiae at fugiat veniam.\nNemo expedita debitis distinctio accusamus repudiandae.\nEligendi rem dolorem perspiciatis molestiae.", + "siteRegistry": false, + "dateReceived": "2021-02-27", + "dateCompleted": "2023-07-11", + "dateEntered": "2015-05-30", + "dateRegistrar": "2014-01-08", + "dateLocalAuthorityReceived": "2021-12-30", + "summary": "Eaque ab ratione nulla illo sapiente reprehenderit tenetur doloremque doloribus.\nItaque voluptas nobis aspernatur vel architecto minus culpa.\nPariatur a in corporis enim numquam praesentium blanditiis voluptas alias.", + "informationUsed": "Consequatur commodi natus deserunt deserunt.\nRepudiandae laudantium placeat quas eveniet maiores.\nProvident ad voluptatibus modi beatae veritatis adipisci voluptatibus.", + "pastOrPresentOrders": "Asperiores beatae iure inventore.\nImpedit doloribus architecto fugiat quas ab.\nEos maxime modi commodi ad.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + } + ] + }, + { + "siteRegistry": false, + "dateReceived": "2019-07-07", + "dateCompleted": "2020-08-14", + "dateEntered": "2022-06-20", + "dateRegistrar": "2015-09-21", + "dateLocalAuthorityReceived": "2014-08-30", + "summary": "Nostrum porro modi corrupti occaecati eligendi quis iure.\nEsse minus quasi voluptatibus fuga similique quisquam illum esse harum.\nEarum aut dolorum rem a porro quod quae deserunt voluptates.", + "informationUsed": "Corrupti repudiandae eum error accusantium cumque sint velit id at.\nInventore placeat illum explicabo nesciunt voluptates fugiat unde sunt natus.\nMagnam eius consequatur.", + "pastOrPresentOrders": "Expedita consequatur aliquam adipisci at libero.", "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, { "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", @@ -32154,113 +36099,99 @@ { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "AUFDERHAR NICOLA", - "timestamp": "2021-03-29" + "user": "LOWE MYRTLE", + "timestamp": "2017-05-04" }, { - "siteRegistry": true, + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "CHRISTIANSEN HELENE", - "timestamp": "2018-03-10" + "user": "WINDLER ELLEN", + "timestamp": "2019-04-24" }, { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "WIEGAND ELZA", - "timestamp": "2021-05-25" + "user": "BOTSFORD SOFIA", + "timestamp": "2015-04-16" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "VEUM TRUDIE", - "timestamp": "2023-06-19" + "user": "ANKUNDING AMIR", + "timestamp": "2023-01-26" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "BECHTELAR LENNA", - "timestamp": "2018-08-18" + "user": "SMITHAM VERNA", + "timestamp": "2015-07-14" }, { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "SAUER KARI", - "timestamp": "2020-05-19" + "user": "HAAG LUCY", + "timestamp": "2023-01-07" }, { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "OKUNEVA AILEEN", - "timestamp": "2017-11-19" + "user": "FRITSCH JADEN", + "timestamp": "2013-12-27" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "SCHULIST GENOVEVA", - "timestamp": "2022-06-05" + "user": "KULAS BARRETT", + "timestamp": "2015-05-17" }, { - "siteRegistry": true, + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "CORWIN THEODORE", - "timestamp": "2015-11-23" + "user": "ROWE ETHA", + "timestamp": "2019-04-11" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "HEATHCOTE HILTON", - "timestamp": "2020-05-24" + "user": "MILLER DAYNA", + "timestamp": "2016-03-21" } ], "associatedSites": [ { - "dateNoted": "2023-04-10", + "dateNoted": "2018-11-06", "notes": "", - "parcelID": "16651", - "siteID": "17309", + "parcelID": "20092", + "siteID": "18281", "siteRegistry": false - }, - { - "dateNoted": "2014-11-12", - "notes": "", - "parcelID": "20927", - "siteID": "18403", - "siteRegistry": true - }, - { - "dateNoted": "2015-12-31", - "notes": "", - "parcelID": "18256", - "siteID": "17419", - "siteRegistry": true } ] }, { - "uuid": "4303bcb4-5378-4e7c-9a27-f55f8067b799", - "siteID": 16813, - "address": "94220 Noemy Stravenue", - "latitude": 58.7078, - "longitude": -134.2468, - "lastUpdated": "2014-05-01", - "city": "East Ryleighborough", - "region": "Cariboo", - "victoriaFile": "26250-20/4596", + "uuid": "ed565485-d1d1-4966-ae4a-1b341d8590e1", + "siteID": 17951, + "address": "511 Hermann Burgs", + "latitude": 48.0937, + "longitude": -123.8592, + "lastUpdated": "2015-07-03", + "city": "Schaeferfield", + "region": "Vancouver Island/Coast", + "victoriaFile": "26250-20/14483", "regionalFile": "N/A", "parcelIDs": [ - 8872278, - 5569404, - 842381, - 1426995, - 8079966 + 332558, + 7949161, + 1184073, + 4862482, + 7499652 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2016-03-27", - "completed": "2020-08-29", - "initiated": "2018-10-18", - "ministryContact": "CASSIN VITO", + "createdAt": "2014-08-23", + "completed": "2020-06-25", + "initiated": "2014-07-18", + "ministryContact": "BEATTY ROWLAND", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -32269,7 +36200,7 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true }, @@ -32277,45 +36208,25 @@ "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false - } - ], - "siteRegistry": true - }, - { - "createdAt": "2022-06-30", - "completed": "2020-10-12", - "initiated": "2016-04-23", - "ministryContact": "BOYER LEATHA", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false } ], "siteRegistry": true }, { - "createdAt": "2017-07-15", - "completed": "2023-01-26", - "initiated": "2023-03-04", - "ministryContact": "BRADTKE CANDIDO", + "createdAt": "2015-07-31", + "completed": "2016-07-29", + "initiated": "2021-08-24", + "ministryContact": "FEEST JEANNE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -32325,37 +36236,22 @@ "notationParticipants": [ { "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true } ], "siteRegistry": true }, { - "createdAt": "2016-12-11", - "completed": "2014-04-10", - "initiated": "2017-11-02", - "ministryContact": "JOHNSON CASSIE", + "createdAt": "2019-01-01", + "completed": "2019-03-14", + "initiated": "2020-07-13", + "ministryContact": "HILPERT JAQUAN", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -32364,23 +36260,23 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true } ], "siteRegistry": true }, { - "createdAt": "2021-05-19", - "completed": "2018-07-26", - "initiated": "2021-06-27", - "ministryContact": "POUROS JEROD", + "createdAt": "2014-08-25", + "completed": "2021-10-01", + "initiated": "2014-07-14", + "ministryContact": "LEUSCHKE ANYA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -32389,14 +36285,14 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true } ], "siteRegistry": false @@ -32405,8 +36301,8 @@ "participants": [ { "name": "IPSUM", - "endDate": "2020-12-09", - "startDate": "2022-10-10", + "endDate": "2019-01-05", + "startDate": "2023-08-23", "notes": "", "roles": [ "EMPLOYEE" @@ -32414,158 +36310,218 @@ "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2021-10-29", - "startDate": "2022-02-05", + "name": "AMET, DOLOR SIT", + "endDate": "2020-03-12", + "startDate": "2014-04-28", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "name": "IPSUM", + "endDate": "2019-08-30", + "startDate": "2015-09-17", "notes": "", "roles": [ "ORGANIZATION" ], "siteRegistry": false + }, + { + "name": "IPSUM", + "endDate": "2019-01-27", + "startDate": "2021-01-16", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true } ], "suspectLandUses": [ + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2016-01-29 (described on Site Profile dated 2016-01-29)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-05-09 (described on Site Profile dated 2019-05-09)", + "notes": "INSERTED FOR SITE PROFILE DATED 2017-12-11 (described on Site Profile dated 2017-12-11)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + } + ], + "parcelDescriptions": [ + { + "siteRegistry": false, + "dateNoted": "2021-04-16", + "parcelID": "20349", + "crownLandUsePIN": "16392", + "crownLandFileNumber": "16920", + "landDescription": "LOT 4 OF LOT 4 BLOCK 5 DISTRICT LOT 2 PLAN 2939" }, { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2020-08-24 (described on Site Profile dated 2020-08-24)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "dateNoted": "2015-10-20", + "parcelID": "18238", + "crownLandUsePIN": "16026", + "crownLandFileNumber": "19887", + "landDescription": "LOT 3 OF LOT 1 BLOCK 3 DISTRICT LOT 5 PLAN 3130" }, { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-08-28 (described on Site Profile dated 2018-08-28)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "dateNoted": "2022-05-06", + "parcelID": "20877", + "crownLandUsePIN": "17725", + "crownLandFileNumber": "18956", + "landDescription": "LOT 5 OF LOT 5 BLOCK 5 DISTRICT LOT 4 PLAN 7436" }, { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-02-22 (described on Site Profile dated 2018-02-22)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "dateNoted": "2022-04-15", + "parcelID": "19925", + "crownLandUsePIN": "18185", + "crownLandFileNumber": "20571", + "landDescription": "LOT 1 OF LOT 2 BLOCK 1 DISTRICT LOT 2 PLAN 7734" + }, + { + "siteRegistry": false, + "dateNoted": "2019-11-08", + "parcelID": "18131", + "crownLandUsePIN": "15782", + "crownLandFileNumber": "15413", + "landDescription": "LOT 3 OF LOT 1 BLOCK 1 DISTRICT LOT 1 PLAN 3379" } ], "siteDisclosures": [ { - "siteRegistry": false, - "dateReceived": "2016-03-08", - "dateCompleted": "2015-10-30", - "dateEntered": "2015-01-07", - "dateRegistrar": "2021-03-06", - "dateLocalAuthorityReceived": "2016-02-23", - "summary": "Ducimus id ipsam ipsa rem.", - "informationUsed": "Voluptatum beatae rerum voluptatibus voluptatibus non doloremque.\nSint veritatis voluptates aliquid facilis tempora molestias.\nDucimus dolorum nemo ut eum hic in.", - "pastOrPresentOrders": "Voluptate at facilis velit fugit asperiores facere.\nLaboriosam harum temporibus consequatur.\nRepellendus asperiores distinctio incidunt.", + "siteRegistry": true, + "dateReceived": "2020-09-21", + "dateCompleted": "2021-07-19", + "dateEntered": "2023-05-05", + "dateRegistrar": "2017-06-01", + "dateLocalAuthorityReceived": "2014-10-24", + "summary": "Repellat est voluptatem labore itaque.\nAccusantium quam aliquam corrupti eligendi beatae unde quod.", + "informationUsed": "Laboriosam sed voluptatum repudiandae eveniet ab eius explicabo.\nConsectetur numquam nulla cumque culpa voluptates saepe impedit corrupti.\nTempore molestias et temporibus similique officia voluptates quis natus.\nOdio facilis maiores quis quos.", + "pastOrPresentOrders": "Nostrum dicta mollitia praesentium amet harum natus sint minima.\nSunt porro vitae.", "commercialAndIndustrialPurposes": [ { "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false - }, - { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false - } - ] - }, - { - "siteRegistry": false, - "dateReceived": "2023-04-30", - "dateCompleted": "2017-12-18", - "dateEntered": "2017-02-24", - "dateRegistrar": "2015-04-04", - "dateLocalAuthorityReceived": "2021-02-25", - "summary": "Incidunt suscipit occaecati dicta est ullam.\nVelit minima eligendi unde natus laborum reprehenderit alias ab eos.\nAd quaerat voluptatum dolore numquam asperiores.", - "informationUsed": "Perspiciatis minima quam hic nisi suscipit.\nPraesentium nesciunt mollitia eius maiores odit.\nCupiditate accusantium sapiente in dolorum nam laboriosam rerum a exercitationem.", - "pastOrPresentOrders": "Hic aut maiores culpa quidem corporis.\nAutem tenetur consequatur esse hic magni.\nTempore blanditiis iste ab molestias commodi provident a odit vero.", - "commercialAndIndustrialPurposes": [ - { - "scheduleReference": "F1*", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true + "siteRegistry": false } ] } ], "activityLog": [ { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "KLOCKO-HACKETT MARGRET", - "timestamp": "2019-05-03" + "user": "BRAUN CRISTOPHER", + "timestamp": "2017-07-05" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "QUITZON VLADIMIR", - "timestamp": "2021-01-20" + "user": "BALISTRERI BERNIE", + "timestamp": "2020-04-04" }, { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "CONSIDINE NELDA", - "timestamp": "2017-01-04" + "user": "FAY TILLMAN", + "timestamp": "2022-04-03" }, { - "siteRegistry": false, + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "ROBERTS FANNIE", + "timestamp": "2019-02-04" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "WILDERMAN NADIA", + "timestamp": "2015-12-26" + }, + { + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "RIPPIN KRISTOFER", - "timestamp": "2014-08-30" + "user": "WYMAN PALMA", + "timestamp": "2021-09-09" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "MITCHELL OTHA", - "timestamp": "2014-02-06" + "user": "BOYLE VINCENZA", + "timestamp": "2023-09-04" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "SAUER ALFREDA", + "timestamp": "2016-03-20" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "TOWNE SAVION", + "timestamp": "2017-07-17" } ], "associatedSites": [ { - "dateNoted": "2020-09-23", + "dateNoted": "2014-04-05", + "notes": "", + "parcelID": "18182", + "siteID": "17707", + "siteRegistry": false + }, + { + "dateNoted": "2022-01-15", "notes": "", - "parcelID": "20831", - "siteID": "19019", + "parcelID": "19066", + "siteID": "18608", "siteRegistry": true } ] }, { - "uuid": "00c69cd3-5e06-487a-b7d6-98f06cc4b8b5", - "siteID": 19962, - "address": "1372 Jayde Hollow", - "latitude": 52.8384, - "longitude": -130.0149, - "lastUpdated": "2020-09-08", - "city": "Abelfurt", - "region": "Cariboo", - "victoriaFile": "26250-20/8833", + "uuid": "883aa852-78ea-4847-917e-f9548b65e9e6", + "siteID": 15493, + "address": "569 Keegan Falls", + "latitude": 57.0982, + "longitude": -118.429, + "lastUpdated": "2014-10-22", + "city": "Peteberg", + "region": "Mainland/Southwest", + "victoriaFile": "26250-20/2010", "regionalFile": "N/A", "parcelIDs": [ - 7105355, - 4197046, - 4273063, - 1305937, - 8140763 + 8812566, + 3230782, + 6070901, + 9824042, + 3838814 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2015-12-15", - "completed": "2020-02-06", - "initiated": "2014-11-10", - "ministryContact": "GRADY ALEXANDRIA", + "createdAt": "2016-04-19", + "completed": "2019-06-06", + "initiated": "2023-10-03", + "ministryContact": "NADER JEFFREY", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -32576,10 +36532,25 @@ { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true } @@ -32587,10 +36558,10 @@ "siteRegistry": true }, { - "createdAt": "2016-08-16", - "completed": "2017-11-06", - "initiated": "2019-11-01", - "ministryContact": "BOTSFORD CODY", + "createdAt": "2023-05-22", + "completed": "2021-10-26", + "initiated": "2017-06-06", + "ministryContact": "RUTHERFORD MAEVE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -32599,7 +36570,17 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true }, @@ -32610,140 +36591,232 @@ }, { "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "createdAt": "2020-11-10", + "completed": "2022-03-12", + "initiated": "2021-01-31", + "ministryContact": "TURCOTTE DAMEON", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": false } ], "siteRegistry": false + }, + { + "createdAt": "2014-08-12", + "completed": "2020-02-04", + "initiated": "2017-06-29", + "ministryContact": "BODE WILMER", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false } ], "participants": [ { - "name": "IPSUM", - "endDate": "2016-01-13", - "startDate": "2019-04-22", + "name": "AMET, DOLOR SIT", + "endDate": "2016-10-28", + "startDate": "2014-04-05", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2019-05-17", - "startDate": "2016-10-14", + "name": "AMET, DOLOR SIT", + "endDate": "2015-10-08", + "startDate": "2015-04-30", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": false + "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2021-07-08", - "startDate": "2015-07-06", + "name": "AMET, DOLOR SIT", + "endDate": "2017-04-10", + "startDate": "2021-02-24", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true }, { "name": "AMET, DOLOR SIT", - "endDate": "2016-04-27", - "startDate": "2022-05-14", + "endDate": "2021-05-07", + "startDate": "2022-10-22", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": false + "siteRegistry": true } ], "suspectLandUses": [ { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2023-08-02 (described on Site Profile dated 2023-08-02)", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2021-03-30 (described on Site Profile dated 2021-03-30)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-03-30 (described on Site Profile dated 2014-03-30)", + "notes": "INSERTED FOR SITE PROFILE DATED 2017-08-22 (described on Site Profile dated 2017-08-22)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2021-02-10 (described on Site Profile dated 2021-02-10)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + } + ], + "parcelDescriptions": [ + { + "siteRegistry": true, + "dateNoted": "2019-04-11", + "parcelID": "18683", + "crownLandUsePIN": "17448", + "crownLandFileNumber": "15481", + "landDescription": "LOT 2 OF LOT 1 BLOCK 1 DISTRICT LOT 3 PLAN 3571" }, { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-12-31 (described on Site Profile dated 2018-12-31)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "dateNoted": "2016-07-12", + "parcelID": "18733", + "crownLandUsePIN": "18216", + "crownLandFileNumber": "18773", + "landDescription": "LOT 2 OF LOT 1 BLOCK 3 DISTRICT LOT 4 PLAN 7540" }, { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-12-03 (described on Site Profile dated 2019-12-03)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "dateNoted": "2014-09-11", + "parcelID": "16264", + "crownLandUsePIN": "19032", + "crownLandFileNumber": "18839", + "landDescription": "LOT 4 OF LOT 5 BLOCK 5 DISTRICT LOT 2 PLAN 5420" }, { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-01-27 (described on Site Profile dated 2014-01-27)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "dateNoted": "2015-02-01", + "parcelID": "19578", + "crownLandUsePIN": "17687", + "crownLandFileNumber": "17470", + "landDescription": "LOT 2 OF LOT 5 BLOCK 5 DISTRICT LOT 4 PLAN 3333" + }, + { + "siteRegistry": false, + "dateNoted": "2018-05-15", + "parcelID": "17566", + "crownLandUsePIN": "18007", + "crownLandFileNumber": "17602", + "landDescription": "LOT 4 OF LOT 5 BLOCK 5 DISTRICT LOT 4 PLAN 4051" } ], "siteDisclosures": [ { "siteRegistry": true, - "dateReceived": "2022-07-07", - "dateCompleted": "2015-08-17", - "dateEntered": "2021-10-28", - "dateRegistrar": "2017-05-22", - "dateLocalAuthorityReceived": "2017-11-08", - "summary": "Deserunt voluptatibus dolore quae incidunt ullam.\nAccusantium eveniet quibusdam laboriosam accusantium sapiente eius libero voluptatibus.", - "informationUsed": "Soluta aspernatur sequi repellat fugiat possimus soluta.\nMagni perferendis impedit incidunt magnam dolorum id blanditiis.\nMagni magni minus nam quo inventore quasi.\nIncidunt eum repellat.\nVoluptatum quidem aperiam velit perferendis totam maiores.", - "pastOrPresentOrders": "Ut consequuntur minima mollitia quisquam odio fugiat dolore suscipit.", + "dateReceived": "2022-11-09", + "dateCompleted": "2021-10-20", + "dateEntered": "2014-10-11", + "dateRegistrar": "2015-08-20", + "dateLocalAuthorityReceived": "2018-04-30", + "summary": "Commodi nemo possimus eaque earum accusantium voluptate.", + "informationUsed": "Adipisci enim fugit.\nNostrum soluta dolorem id fuga a quas itaque nihil consectetur.\nSapiente minus quia perferendis laudantium optio incidunt minus.\nMolestias alias similique a laboriosam tempora odit quod.\nAutem nam cumque nesciunt.", + "pastOrPresentOrders": "Eos amet nemo asperiores sed ad.\nLibero eveniet aperiam.\nDolor nemo numquam reprehenderit nostrum nam magnam.", "commercialAndIndustrialPurposes": [ { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false } ] }, { "siteRegistry": false, - "dateReceived": "2017-03-13", - "dateCompleted": "2020-03-26", - "dateEntered": "2014-12-06", - "dateRegistrar": "2021-08-19", - "dateLocalAuthorityReceived": "2023-09-26", - "summary": "Saepe deleniti non eius.\nDolorum adipisci dolorum deserunt quos accusantium doloremque cupiditate.\nLibero accusamus vitae facilis beatae.", - "informationUsed": "Occaecati aut quae assumenda nesciunt soluta dolorem nesciunt id.\nNumquam pariatur dolores.\nBlanditiis animi quos quibusdam perferendis placeat voluptatibus culpa officiis eius.\nAccusantium illo ab debitis optio.", - "pastOrPresentOrders": "Vero modi odit dolor.\nQuod impedit voluptates id minus.\nEa ut tempore dolorem.", + "dateReceived": "2017-10-25", + "dateCompleted": "2013-12-10", + "dateEntered": "2019-04-28", + "dateRegistrar": "2014-12-22", + "dateLocalAuthorityReceived": "2019-02-16", + "summary": "Ad atque quidem.", + "informationUsed": "Eaque error nihil suscipit nisi.\nRerum modi error tempore molestias tempora provident.\nDoloremque quis nisi harum.\nRecusandae doloremque assumenda.", + "pastOrPresentOrders": "Id nemo at modi.", "commercialAndIndustrialPurposes": [ { "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true + "siteRegistry": false }, { - "scheduleReference": "F1*", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true } ] @@ -32751,78 +36824,71 @@ ], "activityLog": [ { - "siteRegistry": true, + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "KOSS MARLEE", - "timestamp": "2020-02-22" + "user": "WILLIAMSON LAURYN", + "timestamp": "2017-06-02" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "STROMAN STANTON", - "timestamp": "2019-06-02" + "user": "FAHEY BELLA", + "timestamp": "2013-11-16" }, { - "siteRegistry": true, + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "CONN CHELSIE", - "timestamp": "2023-07-22" + "user": "BASHIRIAN SELINA", + "timestamp": "2020-08-23" }, { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "FRANEY GRANT", - "timestamp": "2020-01-10" + "user": "DARE ALF", + "timestamp": "2021-04-25" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "WEBER BURLEY", - "timestamp": "2013-12-10" + "user": "O'KEEFE BERNEICE", + "timestamp": "2018-04-20" } ], "associatedSites": [ { - "dateNoted": "2019-03-29", - "notes": "", - "parcelID": "19800", - "siteID": "15594", - "siteRegistry": false - }, - { - "dateNoted": "2021-08-10", + "dateNoted": "2018-04-15", "notes": "", - "parcelID": "17186", - "siteID": "19899", + "parcelID": "17867", + "siteID": "16093", "siteRegistry": false } ] }, { - "uuid": "324709da-9e3c-41da-baea-4cb50c974c90", - "siteID": 19397, - "address": "8017 Shanny Island", - "latitude": 53.1126, - "longitude": -130.5647, - "lastUpdated": "2019-01-16", - "city": "West Eltontown", - "region": " North Coast", - "victoriaFile": "26250-20/1794", + "uuid": "337deb98-c361-40b8-a78d-0fb7d262dde0", + "siteID": 17982, + "address": "17206 Quigley Valleys", + "latitude": 53.2372, + "longitude": -134.2304, + "lastUpdated": "2019-02-10", + "city": "Hillsboro", + "region": "Thompson-Okanagan", + "victoriaFile": "26250-20/4346", "regionalFile": "N/A", "parcelIDs": [ - 907414, - 889772, - 8686743, - 7011239, - 1727480 + 3378539, + 206337, + 9823199, + 1868878, + 1918656 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2022-10-19", - "completed": "2020-11-13", - "initiated": "2023-02-24", - "ministryContact": "LEHNER AMARI", + "createdAt": "2014-11-03", + "completed": "2018-05-14", + "initiated": "2022-03-13", + "ministryContact": "HELLER ALENA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -32831,23 +36897,23 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true } ], "siteRegistry": false }, { - "createdAt": "2016-10-21", - "completed": "2022-04-29", - "initiated": "2020-08-09", - "ministryContact": "VONRUEDEN LUZ", + "createdAt": "2021-05-25", + "completed": "2022-12-08", + "initiated": "2022-04-21", + "ministryContact": "CUMMERATA CHRISTOP", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -32863,12 +36929,37 @@ { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "createdAt": "2019-02-22", + "completed": "2019-06-27", + "initiated": "2020-10-05", + "ministryContact": "ROLFSON KARI", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", @@ -32878,16 +36969,21 @@ { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2020-02-11", - "completed": "2016-07-03", - "initiated": "2015-03-16", - "ministryContact": "GUTKOWSKI EZEQUIEL", + "createdAt": "2014-02-20", + "completed": "2017-01-03", + "initiated": "2018-11-01", + "ministryContact": "LUBOWITZ FREEDA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -32896,34 +36992,24 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true } ], "participants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2016-03-02", - "startDate": "2014-07-09", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2023-06-11", - "startDate": "2019-07-25", + "name": "AMET, DOLOR SIT", + "endDate": "2021-12-06", + "startDate": "2015-12-21", "notes": "", "roles": [ "EMPLOYEE" @@ -32932,8 +37018,8 @@ }, { "name": "IPSUM", - "endDate": "2020-05-19", - "startDate": "2015-05-11", + "endDate": "2014-03-03", + "startDate": "2014-07-10", "notes": "", "roles": [ "ORGANIZATION" @@ -32942,163 +37028,231 @@ }, { "name": "IPSUM", - "endDate": "2019-03-01", - "startDate": "2014-06-12", + "endDate": "2014-09-10", + "startDate": "2021-02-11", "notes": "", "roles": [ "EMPLOYEE" ], "siteRegistry": true - }, - { - "name": "IPSUM", - "endDate": "2017-09-15", - "startDate": "2023-02-21", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": false } ], "suspectLandUses": [ { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-09-02 (described on Site Profile dated 2016-09-02)", + "notes": "INSERTED FOR SITE PROFILE DATED 2014-05-04 (described on Site Profile dated 2014-05-04)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2017-06-21 (described on Site Profile dated 2017-06-21)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2018-04-28 (described on Site Profile dated 2018-04-28)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2023-01-22 (described on Site Profile dated 2023-01-22)", + "notes": "INSERTED FOR SITE PROFILE DATED 2016-04-20 (described on Site Profile dated 2016-04-20)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], + "parcelDescriptions": [ + { + "siteRegistry": true, + "dateNoted": "2018-11-20", + "parcelID": "20187", + "crownLandUsePIN": "20821", + "crownLandFileNumber": "16754", + "landDescription": "LOT 5 OF LOT 5 BLOCK 4 DISTRICT LOT 4 PLAN 3931" + }, + { + "siteRegistry": false, + "dateNoted": "2021-05-19", + "parcelID": "16907", + "crownLandUsePIN": "17906", + "crownLandFileNumber": "20942", + "landDescription": "LOT 1 OF LOT 3 BLOCK 3 DISTRICT LOT 1 PLAN 5557" + }, + { + "siteRegistry": false, + "dateNoted": "2018-05-15", + "parcelID": "17549", + "crownLandUsePIN": "17510", + "crownLandFileNumber": "17161", + "landDescription": "LOT 2 OF LOT 4 BLOCK 4 DISTRICT LOT 4 PLAN 3879" + } + ], "siteDisclosures": [ { "siteRegistry": true, - "dateReceived": "2018-07-03", - "dateCompleted": "2014-11-02", - "dateEntered": "2019-05-19", - "dateRegistrar": "2022-10-09", - "dateLocalAuthorityReceived": "2014-10-14", - "summary": "Quia commodi ea tempora saepe.\nSaepe harum labore debitis non eaque.", - "informationUsed": "Nostrum enim quaerat.\nFacilis ratione similique possimus minus quaerat consequatur suscipit magnam voluptatibus.\nAssumenda amet distinctio doloremque.\nFuga voluptatum iusto asperiores nemo illo porro aperiam.\nEx nam iure repudiandae quibusdam facere at animi modi itaque.", - "pastOrPresentOrders": "Voluptates facere quasi totam laboriosam ex voluptatum.\nNobis magni numquam.", + "dateReceived": "2017-04-24", + "dateCompleted": "2019-07-16", + "dateEntered": "2022-02-19", + "dateRegistrar": "2015-08-06", + "dateLocalAuthorityReceived": "2016-07-18", + "summary": "Fuga veniam ea voluptates aspernatur nemo et modi.\nRecusandae architecto recusandae amet consequatur nesciunt dolore blanditiis.", + "informationUsed": "Mollitia reprehenderit quam voluptatibus ad magnam fugit.\nProvident doloremque ipsa.\nAperiam pariatur officiis voluptatum.\nPlaceat dolor consequatur cumque a ab eum temporibus libero.", + "pastOrPresentOrders": "Commodi veritatis repellendus adipisci repudiandae dignissimos earum.\nSaepe velit alias eos.", "commercialAndIndustrialPurposes": [ { "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false - }, + "siteRegistry": true + } + ] + }, + { + "siteRegistry": true, + "dateReceived": "2014-06-13", + "dateCompleted": "2014-04-20", + "dateEntered": "2021-05-04", + "dateRegistrar": "2020-02-28", + "dateLocalAuthorityReceived": "2014-08-03", + "summary": "Sit incidunt laborum nihil voluptate deleniti tenetur.\nUnde earum suscipit tempore aliquid reprehenderit eos perspiciatis.\nSint quidem debitis ipsum libero earum.", + "informationUsed": "Sapiente voluptate maiores sapiente ex quo tempore.\nSint eveniet possimus consequatur.\nCumque blanditiis maiores quod.\nQuo cumque unde illo excepturi eligendi perspiciatis.", + "pastOrPresentOrders": "Natus unde at iste expedita totam.", + "commercialAndIndustrialPurposes": [ { "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false }, { "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true + "siteRegistry": false } ] } ], "activityLog": [ { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "CREMIN MARCELLE", - "timestamp": "2021-05-01" + "user": "MCGLYNN OTTIS", + "timestamp": "2022-10-03" }, { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "WITTING D'ANGELO", - "timestamp": "2017-12-01" + "user": "HILLS ADOLPHUS", + "timestamp": "2015-07-07" }, { - "siteRegistry": true, + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "MORISSETTE RANDALL", - "timestamp": "2014-09-26" + "user": "BOTSFORD RYANN", + "timestamp": "2019-06-16" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "LARKIN MORGAN", - "timestamp": "2022-02-13" + "user": "BRUEN LAMBERT", + "timestamp": "2014-05-21" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "LEUSCHKE ISAC", - "timestamp": "2022-10-22" - }, - { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "TOWNE VERDA", - "timestamp": "2021-11-12" + "user": "WIEGAND META", + "timestamp": "2014-04-25" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "BLICK JULIAN", - "timestamp": "2017-01-26" + "user": "SCHMELER ELDON", + "timestamp": "2021-01-24" }, { - "siteRegistry": true, + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "MANN ALIYAH", - "timestamp": "2020-10-28" + "user": "DIETRICH GABRIEL", + "timestamp": "2016-10-31" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "MONAHAN RODRIGO", - "timestamp": "2014-12-27" + "user": "KOEPP LOUIE", + "timestamp": "2015-07-15" } ], "associatedSites": [ { - "dateNoted": "2021-06-18", + "dateNoted": "2022-11-20", "notes": "", - "parcelID": "18813", - "siteID": "16920", - "siteRegistry": true + "parcelID": "18649", + "siteID": "20970", + "siteRegistry": false } ] }, { - "uuid": "ec598427-32cf-456a-a73a-e16768248aad", - "siteID": 16330, - "address": "2539 Cassidy Club", - "latitude": 49.6501, - "longitude": -129.0877, - "lastUpdated": "2016-10-08", - "city": "DeSoto", - "region": "Thompson-Okanagan", - "victoriaFile": "26250-20/16616", + "uuid": "8ed1ca9d-c853-4214-b66a-6eeeeb478077", + "siteID": 16253, + "address": "50015 Bertram Field", + "latitude": 56.0129, + "longitude": -124.9411, + "lastUpdated": "2014-04-21", + "city": "North Remington", + "region": "Vancouver Island/Coast", + "victoriaFile": "26250-20/10628", "regionalFile": "N/A", "parcelIDs": [ - 706480, - 4356277, - 7058659, - 7124027, - 7943109 + 3053886, + 7865579, + 8256781, + 1553374, + 4348403 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2023-04-03", - "completed": "2016-07-30", - "initiated": "2021-04-23", - "ministryContact": "STREICH TIA", + "createdAt": "2020-12-23", + "completed": "2023-01-29", + "initiated": "2018-04-06", + "ministryContact": "CONROY ZELLA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "createdAt": "2013-10-20", + "completed": "2014-11-07", + "initiated": "2014-06-09", + "ministryContact": "STANTON MARVIN", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -33109,16 +37263,11 @@ { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false }, { @@ -33127,18 +37276,18 @@ "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": true } ], "siteRegistry": true }, { - "createdAt": "2020-11-29", - "completed": "2016-12-08", - "initiated": "2017-10-31", - "ministryContact": "KESSLER ALBERTA", + "createdAt": "2022-11-22", + "completed": "2018-02-19", + "initiated": "2020-11-02", + "ministryContact": "BEAHAN ANNIE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -33148,22 +37297,37 @@ "notationParticipants": [ { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2019-01-28", - "completed": "2015-01-25", - "initiated": "2014-07-29", - "ministryContact": "GREENHOLT AMYA", + "createdAt": "2015-02-12", + "completed": "2015-08-27", + "initiated": "2016-09-24", + "ministryContact": "BUCKRIDGE BELL", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -33172,39 +37336,39 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true } ], "participants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2017-06-25", - "startDate": "2019-01-31", + "name": "AMET, DOLOR SIT", + "endDate": "2017-07-15", + "startDate": "2017-12-25", "notes": "", "roles": [ "ORGANIZATION" @@ -33212,19 +37376,19 @@ "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2015-07-07", - "startDate": "2017-08-20", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2022-05-28", + "startDate": "2014-12-12", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false }, { "name": "AMET, DOLOR SIT", - "endDate": "2022-01-22", - "startDate": "2014-02-15", + "endDate": "2015-12-25", + "startDate": "2018-11-05", "notes": "", "roles": [ "EMPLOYEE" @@ -33235,35 +37399,100 @@ "suspectLandUses": [ { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-05-16 (described on Site Profile dated 2016-05-16)", + "notes": "INSERTED FOR SITE PROFILE DATED 2013-12-07 (described on Site Profile dated 2013-12-07)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-05-27 (described on Site Profile dated 2021-05-27)", + "notes": "INSERTED FOR SITE PROFILE DATED 2020-06-18 (described on Site Profile dated 2020-06-18)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], + "parcelDescriptions": [ + { + "siteRegistry": false, + "dateNoted": "2016-03-19", + "parcelID": "20258", + "crownLandUsePIN": "19026", + "crownLandFileNumber": "16318", + "landDescription": "LOT 1 OF LOT 3 BLOCK 2 DISTRICT LOT 4 PLAN 6776" + }, + { + "siteRegistry": true, + "dateNoted": "2015-05-13", + "parcelID": "19536", + "crownLandUsePIN": "16174", + "crownLandFileNumber": "17353", + "landDescription": "LOT 1 OF LOT 1 BLOCK 4 DISTRICT LOT 2 PLAN 5359" + }, + { + "siteRegistry": true, + "dateNoted": "2019-09-23", + "parcelID": "16604", + "crownLandUsePIN": "15277", + "crownLandFileNumber": "20593", + "landDescription": "LOT 5 OF LOT 1 BLOCK 3 DISTRICT LOT 2 PLAN 7275" + }, + { + "siteRegistry": false, + "dateNoted": "2015-09-21", + "parcelID": "18055", + "crownLandUsePIN": "16447", + "crownLandFileNumber": "15521", + "landDescription": "LOT 1 OF LOT 3 BLOCK 5 DISTRICT LOT 1 PLAN 6150" + }, + { + "siteRegistry": false, + "dateNoted": "2019-08-14", + "parcelID": "20937", + "crownLandUsePIN": "18669", + "crownLandFileNumber": "15621", + "landDescription": "LOT 2 OF LOT 3 BLOCK 5 DISTRICT LOT 4 PLAN 4335" + } + ], "siteDisclosures": [ { "siteRegistry": false, - "dateReceived": "2021-10-22", - "dateCompleted": "2019-03-02", - "dateEntered": "2023-08-31", - "dateRegistrar": "2021-04-26", - "dateLocalAuthorityReceived": "2017-09-05", - "summary": "Sint illum cum.", - "informationUsed": "Suscipit illo quidem illum quisquam.\nExplicabo iusto distinctio iusto maxime dolorum dicta explicabo.\nPerspiciatis dolores tempore ea praesentium eligendi sunt.", - "pastOrPresentOrders": "Vitae soluta excepturi sint tempora saepe deleniti.\nQuibusdam culpa recusandae quis quos.", + "dateReceived": "2021-07-17", + "dateCompleted": "2020-09-29", + "dateEntered": "2014-04-25", + "dateRegistrar": "2017-07-24", + "dateLocalAuthorityReceived": "2022-06-11", + "summary": "Veniam suscipit ad nobis blanditiis.\nAnimi fugit reprehenderit.", + "informationUsed": "Eveniet saepe maxime.\nVeritatis saepe laboriosam fugiat assumenda doloribus.\nModi cumque aliquid tempore ut illo.\nOccaecati id laborum in ad magni saepe.", + "pastOrPresentOrders": "Officiis numquam unde rem.\nNeque neque rerum fugiat fugit.", "commercialAndIndustrialPurposes": [ { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + } + ] + }, + { + "siteRegistry": true, + "dateReceived": "2016-02-21", + "dateCompleted": "2019-07-02", + "dateEntered": "2018-04-17", + "dateRegistrar": "2014-11-22", + "dateLocalAuthorityReceived": "2016-10-06", + "summary": "Consequuntur unde harum.", + "informationUsed": "Debitis libero dolorem excepturi eius rem natus officiis.\nIpsa voluptatibus numquam pariatur asperiores.\nDeserunt ea alias facere deserunt.", + "pastOrPresentOrders": "Dolorem voluptatem corporis delectus voluptas.\nNam officiis corporis labore numquam provident veritatis debitis repudiandae.\nVoluptatem optio dolores doloribus.", + "commercialAndIndustrialPurposes": [ { "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true } ] @@ -33271,95 +37500,97 @@ ], "activityLog": [ { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "KESSLER FABIOLA", - "timestamp": "2022-02-11" - }, - { - "siteRegistry": true, + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "SPINKA GILES", - "timestamp": "2017-07-19" + "user": "GLOVER DEMARCUS", + "timestamp": "2017-01-31" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "GORCZANY ALYSA", - "timestamp": "2014-11-25" + "user": "MACEJKOVIC ALEXANDREA", + "timestamp": "2020-10-17" }, { - "siteRegistry": true, + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "MCCLURE-MCKENZIE ZION", - "timestamp": "2021-10-27" + "user": "BREKKE ISAAC", + "timestamp": "2021-10-03" }, { - "siteRegistry": true, + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "GUTKOWSKI GUADALUPE", - "timestamp": "2021-07-03" + "user": "SIPES JADON", + "timestamp": "2020-03-29" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "PFEFFER SCOTTIE", - "timestamp": "2015-05-29" + "user": "PREDOVIC EBBA", + "timestamp": "2018-04-26" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "NIKOLAUS BESSIE", - "timestamp": "2013-10-20" + "user": "BATZ MARSHALL", + "timestamp": "2023-01-03" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "GOLDNER JUDAH", - "timestamp": "2014-06-17" - }, - { - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "GUSIKOWSKI BETTYE", - "timestamp": "2015-06-27" + "user": "HUEL CLINT", + "timestamp": "2020-11-18" } ], "associatedSites": [ { - "dateNoted": "2016-06-01", + "dateNoted": "2021-01-03", + "notes": "", + "parcelID": "15999", + "siteID": "20886", + "siteRegistry": false + }, + { + "dateNoted": "2021-06-01", + "notes": "", + "parcelID": "20874", + "siteID": "17306", + "siteRegistry": true + }, + { + "dateNoted": "2019-09-08", "notes": "", - "parcelID": "18234", - "siteID": "19306", + "parcelID": "16528", + "siteID": "17362", "siteRegistry": true } ] }, { - "uuid": "5ea028df-bbeb-4b8a-aad7-0402ac4a6bbc", - "siteID": 18243, - "address": "5294 Hamill Trace", - "latitude": 50.6202, - "longitude": -124.4275, - "lastUpdated": "2021-01-18", - "city": "Fort Viola", - "region": "Vancouver Island/Coast", - "victoriaFile": "26250-20/11077", + "uuid": "a5b559ac-c04a-459d-b99e-154b1254f8ad", + "siteID": 18665, + "address": "86638 Ross Burgs", + "latitude": 48.1735, + "longitude": -134.4633, + "lastUpdated": "2016-05-01", + "city": "Lake Heavenberg", + "region": " North Coast", + "victoriaFile": "26250-20/9273", "regionalFile": "N/A", "parcelIDs": [ - 5011828, - 8613576, - 8679934, - 7926120, - 4276846 + 1926191, + 2160177, + 2624448, + 7507592, + 4685535 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2020-02-13", - "completed": "2023-09-07", - "initiated": "2015-11-20", - "ministryContact": "BOGAN JERROLD", + "createdAt": "2020-09-30", + "completed": "2017-04-29", + "initiated": "2020-11-24", + "ministryContact": "JOHNSON LAURETTA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -33368,44 +37599,19 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - } - ], - "siteRegistry": false - }, - { - "createdAt": "2019-11-12", - "completed": "2017-08-17", - "initiated": "2016-11-16", - "ministryContact": "KOCH FRIDA", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", @@ -33415,16 +37621,16 @@ { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true } ], "siteRegistry": false }, { - "createdAt": "2019-05-18", - "completed": "2014-05-02", - "initiated": "2022-01-22", - "ministryContact": "NIKOLAUS SHANON", + "createdAt": "2017-12-08", + "completed": "2022-05-28", + "initiated": "2016-02-08", + "ministryContact": "WILKINSON PIETRO", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -33432,16 +37638,6 @@ "" ], "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", @@ -33450,26 +37646,6 @@ { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false - } - ], - "siteRegistry": true - }, - { - "createdAt": "2017-07-19", - "completed": "2020-11-22", - "initiated": "2023-05-31", - "ministryContact": "MARVIN BRIDGETTE", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", "siteRegistry": true }, { @@ -33480,83 +37656,124 @@ { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false } ], "participants": [ { "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2023-07-28", - "startDate": "2017-07-27", + "endDate": "2014-06-08", + "startDate": "2020-12-02", "notes": "", "roles": [ "ORGANIZATION" ], + "siteRegistry": false + }, + { + "name": "AMET, DOLOR SIT", + "endDate": "2017-04-11", + "startDate": "2022-01-25", + "notes": "", + "roles": [ + "EMPLOYEE" + ], "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2017-12-04", - "startDate": "2017-10-25", + "name": "IPSUM", + "endDate": "2015-06-20", + "startDate": "2023-09-13", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": false + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2017-01-13", + "startDate": "2020-05-14", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true } ], "suspectLandUses": [ { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-10-29 (described on Site Profile dated 2019-10-29)", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2017-10-09 (described on Site Profile dated 2017-10-09)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-05-28 (described on Site Profile dated 2017-05-28)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "notes": "INSERTED FOR SITE PROFILE DATED 2016-02-23 (described on Site Profile dated 2016-02-23)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-09-28 (described on Site Profile dated 2018-09-28)", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2018-10-16 (described on Site Profile dated 2018-10-16)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], + "parcelDescriptions": [ + { + "siteRegistry": false, + "dateNoted": "2022-08-09", + "parcelID": "17210", + "crownLandUsePIN": "16793", + "crownLandFileNumber": "17672", + "landDescription": "LOT 2 OF LOT 1 BLOCK 3 DISTRICT LOT 1 PLAN 8169" + }, + { + "siteRegistry": false, + "dateNoted": "2023-08-25", + "parcelID": "18190", + "crownLandUsePIN": "20591", + "crownLandFileNumber": "19195", + "landDescription": "LOT 5 OF LOT 5 BLOCK 4 DISTRICT LOT 4 PLAN 6036" + } + ], "siteDisclosures": [ { "siteRegistry": true, - "dateReceived": "2017-04-29", - "dateCompleted": "2016-09-23", - "dateEntered": "2014-06-16", - "dateRegistrar": "2017-04-16", - "dateLocalAuthorityReceived": "2018-12-01", - "summary": "Illo maiores repellendus sit voluptatem.", - "informationUsed": "Assumenda dolor laudantium doloremque vero.\nDoloremque atque ducimus delectus.\nTempora quos unde.\nSunt placeat excepturi.\nAssumenda dicta vel.", - "pastOrPresentOrders": "Omnis dolore cupiditate.\nVoluptas officia ipsum quam earum ut.", + "dateReceived": "2022-11-09", + "dateCompleted": "2016-12-03", + "dateEntered": "2019-01-26", + "dateRegistrar": "2022-02-14", + "dateLocalAuthorityReceived": "2022-12-01", + "summary": "A voluptatem eos quas.\nAccusamus atque a.", + "informationUsed": "Fuga rerum et.\nItaque possimus repellendus voluptate quae.\nRatione voluptatum dignissimos ut quasi rerum.\nEveniet veritatis earum.\nRecusandae accusamus tempore consequuntur.", + "pastOrPresentOrders": "Ea necessitatibus totam temporibus eos consequatur blanditiis.\nMolestiae quod ipsa laudantium veniam.\nNon dolores sunt alias iusto id assumenda placeat expedita qui.", "commercialAndIndustrialPurposes": [ { - "scheduleReference": "F1*", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true - }, + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + } + ] + }, + { + "siteRegistry": false, + "dateReceived": "2020-04-21", + "dateCompleted": "2018-05-26", + "dateEntered": "2019-06-17", + "dateRegistrar": "2015-01-06", + "dateLocalAuthorityReceived": "2019-07-28", + "summary": "Iure eos nobis molestias officia impedit voluptas.\nNatus labore accusamus ex laboriosam doloribus perspiciatis atque tempora eius.\nAb ut architecto voluptatum itaque amet.", + "informationUsed": "Cumque nulla provident sunt ducimus veritatis.\nSuscipit ab voluptatem vero iusto unde quibusdam enim enim.\nDeserunt repudiandae magnam minus dolor eius.", + "pastOrPresentOrders": "Excepturi quas voluptatibus nihil omnis reiciendis excepturi.\nQuam eum pariatur quae dignissimos nam eum sequi iste nemo.\nNisi repellendus eius ullam dolor voluptates maiores.", + "commercialAndIndustrialPurposes": [ { "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", @@ -33564,116 +37781,92 @@ }, { "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true } ] } ], "activityLog": [ - { - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "MCKENZIE CATALINA", - "timestamp": "2016-06-03" - }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "BAHRINGER GABRIEL", - "timestamp": "2019-01-01" - }, - { - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "LARSON KALEIGH", - "timestamp": "2021-07-24" - }, - { - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "MURPHY GIOVANNY", - "timestamp": "2015-11-22" + "user": "ORTIZ GLEN", + "timestamp": "2015-01-22" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "DICKI REID", - "timestamp": "2021-10-25" + "user": "KESSLER ELOY", + "timestamp": "2017-03-06" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "TOY-MORAR JAZMYN", - "timestamp": "2021-09-21" - }, - { - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "JAKUBOWSKI MITCHELL", - "timestamp": "2020-11-04" + "user": "KOZEY CHRISTOP", + "timestamp": "2016-02-12" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "SAWAYN LORA", - "timestamp": "2014-10-15" + "user": "PAGAC LEANNA", + "timestamp": "2020-11-05" }, { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "LOWE KEELEY", - "timestamp": "2022-07-05" + "user": "HAMILL SYDNI", + "timestamp": "2021-07-30" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "MAYERT MARCELLA", - "timestamp": "2019-03-24" + "user": "VOLKMAN GARRET", + "timestamp": "2023-05-17" } ], "associatedSites": [ { - "dateNoted": "2016-01-12", + "dateNoted": "2023-03-25", "notes": "", - "parcelID": "16698", - "siteID": "17962", + "parcelID": "16314", + "siteID": "17034", "siteRegistry": true }, { - "dateNoted": "2021-05-12", + "dateNoted": "2015-01-25", "notes": "", - "parcelID": "19071", - "siteID": "18004", - "siteRegistry": true + "parcelID": "15616", + "siteID": "15786", + "siteRegistry": false } ] }, { - "uuid": "61268eac-e94c-4f10-940e-5c5025aef7cc", - "siteID": 20727, - "address": "9276 Moore Mews", - "latitude": 54.5384, - "longitude": -124.2229, - "lastUpdated": "2019-10-27", - "city": "Klockobury", - "region": " North Coast", - "victoriaFile": "26250-20/6474", + "uuid": "79e1c20d-dc23-4bd3-aa86-a01f634a9554", + "siteID": 16032, + "address": "658 Macejkovic Parkway", + "latitude": 51.591, + "longitude": -137.2346, + "lastUpdated": "2020-06-05", + "city": "North Zola", + "region": "Vancouver Island/Coast", + "victoriaFile": "26250-20/3071", "regionalFile": "N/A", "parcelIDs": [ - 9468879, - 1685868, - 5610259, - 4798680, - 7788084 + 8107222, + 5808500, + 6865174, + 4092989, + 400419 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2016-04-20", - "completed": "2014-06-11", - "initiated": "2017-12-14", - "ministryContact": "FEEST DESTINEE", + "createdAt": "2021-08-14", + "completed": "2018-10-28", + "initiated": "2020-01-08", + "ministryContact": "CRUICKSHANK HOLLIS", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -33683,53 +37876,23 @@ "notationParticipants": [ { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true + "role": "REQUESTED BY", + "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false - } - ], - "siteRegistry": true - }, - { - "createdAt": "2017-04-06", - "completed": "2017-12-30", - "initiated": "2016-09-04", - "ministryContact": "MRAZ ROWLAND", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", @@ -33740,10 +37903,10 @@ "siteRegistry": false }, { - "createdAt": "2015-05-30", - "completed": "2022-02-21", - "initiated": "2021-08-30", - "ministryContact": "SCHAEFER MABEL", + "createdAt": "2021-10-13", + "completed": "2022-06-11", + "initiated": "2023-03-18", + "ministryContact": "RUTHERFORD CAITLYN", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -33753,11 +37916,6 @@ "notationParticipants": [ { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false }, @@ -33768,48 +37926,13 @@ }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - } - ], - "siteRegistry": true - }, - { - "createdAt": "2021-03-16", - "completed": "2019-01-21", - "initiated": "2020-10-15", - "ministryContact": "SHANAHAN GRAYCE", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true } ], "siteRegistry": false @@ -33818,28 +37941,28 @@ "participants": [ { "name": "AMET, DOLOR SIT", - "endDate": "2015-05-28", - "startDate": "2017-01-19", + "endDate": "2020-04-29", + "startDate": "2014-01-02", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], - "siteRegistry": false + "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2017-12-25", - "startDate": "2016-07-02", + "name": "IPSUM", + "endDate": "2021-03-27", + "startDate": "2019-10-01", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2023-09-22", - "startDate": "2019-03-10", + "name": "AMET, DOLOR SIT", + "endDate": "2016-10-21", + "startDate": "2021-05-09", "notes": "", "roles": [ "ORGANIZATION" @@ -33847,49 +37970,67 @@ "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2022-06-19", - "startDate": "2019-10-20", + "name": "AMET, DOLOR SIT", + "endDate": "2018-03-20", + "startDate": "2015-12-28", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], - "siteRegistry": true + "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2023-06-21", - "startDate": "2016-09-07", + "name": "AMET, DOLOR SIT", + "endDate": "2020-02-04", + "startDate": "2022-04-11", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": false + "siteRegistry": true } ], "suspectLandUses": [ { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-05-23 (described on Site Profile dated 2017-05-23)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2021-08-27 (described on Site Profile dated 2021-08-27)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-06-05 (described on Site Profile dated 2014-06-05)", + "notes": "INSERTED FOR SITE PROFILE DATED 2018-04-04 (described on Site Profile dated 2018-04-04)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], + "parcelDescriptions": [ + { + "siteRegistry": false, + "dateNoted": "2016-05-12", + "parcelID": "18285", + "crownLandUsePIN": "17176", + "crownLandFileNumber": "20002", + "landDescription": "LOT 3 OF LOT 3 BLOCK 4 DISTRICT LOT 2 PLAN 4825" + }, + { + "siteRegistry": false, + "dateNoted": "2018-02-14", + "parcelID": "15638", + "crownLandUsePIN": "20611", + "crownLandFileNumber": "17746", + "landDescription": "LOT 1 OF LOT 1 BLOCK 3 DISTRICT LOT 2 PLAN 6509" + } + ], "siteDisclosures": [ { "siteRegistry": false, - "dateReceived": "2023-07-30", - "dateCompleted": "2016-01-04", - "dateEntered": "2017-12-01", - "dateRegistrar": "2017-05-17", - "dateLocalAuthorityReceived": "2016-07-31", - "summary": "Velit fuga non error quia recusandae expedita sed.", - "informationUsed": "Ratione neque laborum sunt et autem excepturi qui magnam quasi.\nNam repellat laborum repudiandae nihil autem doloremque laudantium similique.\nOfficia nisi adipisci labore.", - "pastOrPresentOrders": "Tempora odio pariatur veniam libero atque excepturi.\nRepudiandae tenetur debitis reiciendis possimus eaque.\nLabore quidem veritatis cupiditate.", + "dateReceived": "2022-10-09", + "dateCompleted": "2016-08-10", + "dateEntered": "2022-04-12", + "dateRegistrar": "2021-11-07", + "dateLocalAuthorityReceived": "2023-06-18", + "summary": "Fuga vel nulla quo.\nQuas ex excepturi.", + "informationUsed": "Iure suscipit qui temporibus aliquid vitae laboriosam animi a aperiam.\nMolestiae reprehenderit hic provident provident.\nQuo dolore est ipsum occaecati quam iusto occaecati adipisci nesciunt.\nAliquid quidem consequatur ipsam distinctio.", + "pastOrPresentOrders": "Illum quibusdam fuga ratione sunt sunt possimus delectus sequi.\nEt maxime nulla.\nDolorum expedita nihil recusandae neque provident sit aspernatur.", "commercialAndIndustrialPurposes": [ { "scheduleReference": "F2*", @@ -33899,43 +38040,15 @@ { "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true + "siteRegistry": false }, { "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true - } - ] - }, - { - "siteRegistry": true, - "dateReceived": "2015-08-19", - "dateCompleted": "2022-05-29", - "dateEntered": "2015-06-02", - "dateRegistrar": "2015-12-04", - "dateLocalAuthorityReceived": "2018-03-22", - "summary": "Eaque omnis quis esse delectus natus saepe eum cum.\nMagni incidunt nisi necessitatibus optio ea repellat sunt.\nId doloremque tempore rerum dolore pariatur.", - "informationUsed": "Distinctio repellat nobis beatae blanditiis accusamus incidunt ratione perspiciatis.\nHarum itaque illo temporibus accusantium.\nEum debitis in molestias aliquam.\nFugiat quaerat accusamus blanditiis.", - "pastOrPresentOrders": "Fugiat modi expedita sequi animi tenetur reprehenderit optio.", - "commercialAndIndustrialPurposes": [ - { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false - }, - { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false }, { "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true - }, - { - "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false } @@ -33946,106 +38059,153 @@ { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "HAAG ALVA", - "timestamp": "2020-07-04" + "user": "BLANDA-VANDERVORT DERECK", + "timestamp": "2015-10-04" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "SPORER JASON", - "timestamp": "2019-10-14" - }, - { - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "FEIL TERESA", - "timestamp": "2015-09-22" + "user": "WARD FREDERIQUE", + "timestamp": "2022-11-19" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "MAGGIO TITUS", - "timestamp": "2013-10-14" + "user": "BERNIER AUGUSTA", + "timestamp": "2016-02-04" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "SANFORD BEULAH", - "timestamp": "2018-01-27" + "user": "AUFDERHAR CAYLA", + "timestamp": "2022-11-28" }, { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "FADEL MARIE", - "timestamp": "2022-07-12" + "user": "KEEBLER NATALIA", + "timestamp": "2016-12-14" }, { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "KLEIN SHAWNA", - "timestamp": "2015-03-08" + "user": "GLEICHNER-ROGAHN JAZMYNE", + "timestamp": "2020-01-14" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "PARISIAN MARCELLE", - "timestamp": "2016-08-31" + "user": "THIEL GEORGE", + "timestamp": "2015-10-09" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "WIEGAND HAILIE", - "timestamp": "2020-03-09" + "user": "PARKER CRISTOBAL", + "timestamp": "2023-01-19" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "BERGNAUM LAURINE", - "timestamp": "2022-06-15" + "user": "TROMP CRISTAL", + "timestamp": "2017-10-23" } ], "associatedSites": [ { - "dateNoted": "2019-10-09", - "notes": "", - "parcelID": "15230", - "siteID": "18188", - "siteRegistry": true - }, - { - "dateNoted": "2023-04-17", + "dateNoted": "2019-07-30", "notes": "", - "parcelID": "18623", - "siteID": "17527", + "parcelID": "16934", + "siteID": "20992", "siteRegistry": true } ] }, { - "uuid": "f1b89766-9d40-4707-aa5e-d1a8e69d2f06", - "siteID": 17945, - "address": "93747 Drew Pass", - "latitude": 56.9884, - "longitude": -135.5916, - "lastUpdated": "2013-12-13", - "city": "West Margarettashire", + "uuid": "2a3db700-d8b1-49ee-b7bf-dc3975edc801", + "siteID": 19549, + "address": "393 Marge Club", + "latitude": 54.4607, + "longitude": -136.2912, + "lastUpdated": "2013-11-08", + "city": "New Sydniefort", "region": "Thompson-Okanagan", - "victoriaFile": "26250-20/17253", + "victoriaFile": "26250-20/19015", "regionalFile": "N/A", "parcelIDs": [ - 9522138, - 4730961, - 6878812, - 8999912, - 9646959 + 9988573, + 5889307, + 9260630, + 7986023, + 6446088 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2017-07-17", - "completed": "2020-02-25", - "initiated": "2013-11-04", - "ministryContact": "BOGISICH GUS", + "createdAt": "2022-02-12", + "completed": "2022-12-21", + "initiated": "2019-10-28", + "ministryContact": "BOYLE ARMANDO", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "createdAt": "2022-02-08", + "completed": "2022-04-23", + "initiated": "2023-01-15", + "ministryContact": "REMPEL ADOLF", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "createdAt": "2021-05-29", + "completed": "2015-07-23", + "initiated": "2014-04-22", + "ministryContact": "RUNOLFSSON AMIYA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -34065,17 +38225,22 @@ }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", "siteRegistry": true } ], "siteRegistry": true }, { - "createdAt": "2019-07-13", - "completed": "2014-03-25", - "initiated": "2015-05-31", - "ministryContact": "REICHERT LONNY", + "createdAt": "2021-10-07", + "completed": "2019-11-28", + "initiated": "2018-01-11", + "ministryContact": "YOST KALEB", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -34091,12 +38256,7 @@ { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true } ], "siteRegistry": false @@ -34104,19 +38264,19 @@ ], "participants": [ { - "name": "AMET, DOLOR SIT", - "endDate": "2019-04-17", - "startDate": "2017-09-23", + "name": "IPSUM", + "endDate": "2022-08-10", + "startDate": "2021-09-20", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", - "endDate": "2015-05-27", - "startDate": "2016-11-25", + "endDate": "2017-01-02", + "startDate": "2015-10-12", "notes": "", "roles": [ "ORGANIZATION" @@ -34125,68 +38285,84 @@ }, { "name": "IPSUM", - "endDate": "2014-11-01", - "startDate": "2015-04-21", + "endDate": "2022-02-09", + "startDate": "2017-11-15", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": true }, { "name": "AMET, DOLOR SIT", - "endDate": "2019-11-18", - "startDate": "2018-01-11", + "endDate": "2016-02-23", + "startDate": "2022-06-21", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2014-04-21", - "startDate": "2023-07-18", - "notes": "", - "roles": [ - "ORGANIZATION" - ], "siteRegistry": false } ], "suspectLandUses": [ { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-01-05 (described on Site Profile dated 2018-01-05)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2019-03-21 (described on Site Profile dated 2019-03-21)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-05-18 (described on Site Profile dated 2022-05-18)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "notes": "INSERTED FOR SITE PROFILE DATED 2022-10-26 (described on Site Profile dated 2022-10-26)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-08-02 (described on Site Profile dated 2014-08-02)", + "notes": "INSERTED FOR SITE PROFILE DATED 2019-09-02 (described on Site Profile dated 2019-09-02)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2013-12-23 (described on Site Profile dated 2013-12-23)", + "notes": "INSERTED FOR SITE PROFILE DATED 2020-03-28 (described on Site Profile dated 2020-03-28)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], - "siteDisclosures": [ + "parcelDescriptions": [ { "siteRegistry": false, - "dateReceived": "2021-03-14", - "dateCompleted": "2014-12-15", - "dateEntered": "2019-03-12", - "dateRegistrar": "2022-01-12", - "dateLocalAuthorityReceived": "2013-10-28", - "summary": "Placeat numquam illo reprehenderit dolor possimus voluptas.\nVeritatis voluptatum iusto laudantium iste.\nLibero repellendus velit.", - "informationUsed": "Eius rem itaque illo excepturi nesciunt id inventore.\nAtque delectus accusantium nulla nostrum.\nLibero corporis ea voluptas fugiat distinctio esse beatae nulla tempore.\nMolestiae officiis recusandae minima esse necessitatibus ad totam corporis ipsa.", - "pastOrPresentOrders": "Vitae expedita cum distinctio facilis quidem dolor voluptatibus et.", + "dateNoted": "2023-03-19", + "parcelID": "18758", + "crownLandUsePIN": "15531", + "crownLandFileNumber": "18885", + "landDescription": "LOT 1 OF LOT 3 BLOCK 5 DISTRICT LOT 1 PLAN 3082" + }, + { + "siteRegistry": true, + "dateNoted": "2017-02-01", + "parcelID": "17091", + "crownLandUsePIN": "16203", + "crownLandFileNumber": "18789", + "landDescription": "LOT 3 OF LOT 4 BLOCK 4 DISTRICT LOT 2 PLAN 6471" + }, + { + "siteRegistry": false, + "dateNoted": "2016-06-08", + "parcelID": "18610", + "crownLandUsePIN": "19941", + "crownLandFileNumber": "16932", + "landDescription": "LOT 2 OF LOT 1 BLOCK 3 DISTRICT LOT 5 PLAN 4709" + } + ], + "siteDisclosures": [ + { + "siteRegistry": true, + "dateReceived": "2019-04-24", + "dateCompleted": "2020-03-17", + "dateEntered": "2018-04-26", + "dateRegistrar": "2021-03-23", + "dateLocalAuthorityReceived": "2021-05-18", + "summary": "Iusto non ratione repudiandae voluptatem amet quibusdam.\nFugit voluptatem odio.\nIllum rem tenetur ad quasi.", + "informationUsed": "Quisquam harum corporis explicabo distinctio dolores vero.\nAssumenda et quidem sint fugit.\nUnde eveniet accusamus nam culpa.\nNam quis odit non dignissimos quasi.", + "pastOrPresentOrders": "Neque eveniet cupiditate consectetur minima voluptatum architecto at doloribus.\nDeserunt velit corrupti ea corporis nostrum fugiat.\nPerspiciatis harum maxime ea necessitatibus totam.", "commercialAndIndustrialPurposes": [ { "scheduleReference": "F1*", @@ -34194,8 +38370,8 @@ "siteRegistry": false }, { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { @@ -34206,126 +38382,126 @@ ] }, { - "siteRegistry": true, - "dateReceived": "2019-04-12", - "dateCompleted": "2017-09-07", - "dateEntered": "2023-06-16", - "dateRegistrar": "2018-04-10", - "dateLocalAuthorityReceived": "2019-05-23", - "summary": "Velit sequi a ex officiis fugiat aperiam a exercitationem delectus.\nCum dolor officiis et repellendus provident.\nCorrupti totam saepe vero quae quae id.", - "informationUsed": "Dolorem distinctio molestias iste recusandae atque doloribus tenetur.\nAlias itaque at ut sunt facere delectus numquam aliquid rerum.\nOfficia ipsum nam illo odit nihil iusto voluptatum ab.\nMolestiae fugit tempora rerum.\nNatus amet voluptatibus nam non odio.", - "pastOrPresentOrders": "Dolores voluptas cum voluptatibus voluptas cumque adipisci sequi unde aut.\nRepellendus velit sunt consequuntur incidunt.", + "siteRegistry": false, + "dateReceived": "2019-03-02", + "dateCompleted": "2023-04-26", + "dateEntered": "2017-03-30", + "dateRegistrar": "2015-04-21", + "dateLocalAuthorityReceived": "2014-06-23", + "summary": "Rerum modi dicta velit sunt.\nEsse eaque libero dolorum fuga.", + "informationUsed": "Officiis et sit corporis.\nEligendi mollitia magnam nisi suscipit id ullam magnam.\nQuam sequi natus eveniet est harum placeat inventore.\nExercitationem labore placeat dolores a mollitia.\nTempora beatae debitis suscipit.", + "pastOrPresentOrders": "Veritatis omnis ab.\nEnim qui libero.", "commercialAndIndustrialPurposes": [ { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false - }, - { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true }, { - "scheduleReference": "F2*", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, { - "scheduleReference": "F2*", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false } ] } ], "activityLog": [ { - "siteRegistry": true, + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "SCHAMBERGER EMMETT", - "timestamp": "2014-01-12" + "user": "JAKUBOWSKI WILLIAM", + "timestamp": "2020-05-18" }, { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "TREUTEL GEORGETTE", - "timestamp": "2022-10-05" + "user": "CREMIN RICHIE", + "timestamp": "2017-10-07" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "BOTSFORD HADLEY", - "timestamp": "2020-12-14" + "user": "HAGENES EZEKIEL", + "timestamp": "2015-10-07" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "SCHINNER NELLE", - "timestamp": "2017-11-05" + "user": "HOWE ORLANDO", + "timestamp": "2014-12-07" }, { - "siteRegistry": true, + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "BECHTELAR ENOCH", - "timestamp": "2021-06-02" + "user": "KLOCKO JAVONTE", + "timestamp": "2017-06-03" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "YUNDT DAYNE", - "timestamp": "2022-02-13" + "user": "DURGAN JULIANA", + "timestamp": "2014-01-20" } ], "associatedSites": [ { - "dateNoted": "2022-06-28", + "dateNoted": "2017-09-26", "notes": "", - "parcelID": "20312", - "siteID": "19075", - "siteRegistry": false + "parcelID": "18793", + "siteID": "17812", + "siteRegistry": true }, { - "dateNoted": "2022-09-14", + "dateNoted": "2023-08-15", "notes": "", - "parcelID": "16632", - "siteID": "15498", + "parcelID": "17319", + "siteID": "20583", "siteRegistry": true }, { - "dateNoted": "2022-05-23", + "dateNoted": "2016-10-07", "notes": "", - "parcelID": "20908", - "siteID": "20762", + "parcelID": "15504", + "siteID": "16960", "siteRegistry": false } ] }, { - "uuid": "8cbbb3e5-1ac7-4a6e-b66b-2a718d911d79", - "siteID": 17962, - "address": "1536 Cole Mission", - "latitude": 54.619, - "longitude": -127.0047, - "lastUpdated": "2021-01-16", - "city": "Kossberg", - "region": " North Coast", - "victoriaFile": "26250-20/4052", + "uuid": "e602cb1a-8f62-4005-84f0-80b315cd6ca9", + "siteID": 16960, + "address": "74996 King Cove", + "latitude": 52.8077, + "longitude": -121.8172, + "lastUpdated": "2019-06-11", + "city": "Gulgowskichester", + "region": "Kootenay", + "victoriaFile": "26250-20/16961", "regionalFile": "N/A", "parcelIDs": [ - 7167744, - 7986753, - 6378019, - 8797028, - 1633968 + 5237006, + 7533719, + 5594778, + 3338663, + 523583 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2023-09-25", - "completed": "2014-09-23", - "initiated": "2020-05-30", - "ministryContact": "JONES-JOHNSTON CORDELL", + "createdAt": "2023-02-25", + "completed": "2020-04-10", + "initiated": "2017-09-21", + "ministryContact": "SPORER SHERMAN", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -34336,18 +38512,8 @@ { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", "siteRegistry": true }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", @@ -34355,42 +38521,17 @@ }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true } ], - "siteRegistry": true - }, - { - "createdAt": "2014-09-24", - "completed": "2021-01-11", - "initiated": "2021-01-07", - "ministryContact": "LIND HEAVEN", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - } - ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2023-01-22", - "completed": "2021-11-11", - "initiated": "2021-12-30", - "ministryContact": "CONN FREDERIK", + "createdAt": "2017-01-20", + "completed": "2021-02-05", + "initiated": "2021-06-28", + "ministryContact": "MULLER TERESA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -34401,232 +38542,236 @@ { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true - } - ], - "siteRegistry": true - }, - { - "createdAt": "2014-11-26", - "completed": "2022-08-28", - "initiated": "2018-03-18", - "ministryContact": "BRAKUS ASA", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false - } - ], - "siteRegistry": false - }, - { - "createdAt": "2020-05-11", - "completed": "2016-04-18", - "initiated": "2014-01-14", - "ministryContact": "RUSSEL REID", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ + }, { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true } ], "participants": [ { - "name": "AMET, DOLOR SIT", - "endDate": "2017-06-10", - "startDate": "2015-08-21", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2018-05-21", + "startDate": "2020-06-02", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": false }, { - "name": "IPSUM", - "endDate": "2020-06-12", - "startDate": "2021-02-22", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": true - }, - { - "name": "IPSUM", - "endDate": "2015-02-13", - "startDate": "2015-03-16", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2016-12-05", + "startDate": "2017-08-05", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false } ], "suspectLandUses": [ { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-09-24 (described on Site Profile dated 2014-09-24)", + "notes": "INSERTED FOR SITE PROFILE DATED 2016-10-30 (described on Site Profile dated 2016-10-30)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2022-05-23 (described on Site Profile dated 2022-05-23)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2015-02-23 (described on Site Profile dated 2015-02-23)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-07-17 (described on Site Profile dated 2014-07-17)", + "notes": "INSERTED FOR SITE PROFILE DATED 2018-02-05 (described on Site Profile dated 2018-02-05)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], + "parcelDescriptions": [ + { + "siteRegistry": false, + "dateNoted": "2017-07-14", + "parcelID": "17217", + "crownLandUsePIN": "17566", + "crownLandFileNumber": "17882", + "landDescription": "LOT 1 OF LOT 2 BLOCK 2 DISTRICT LOT 4 PLAN 6920" + }, + { + "siteRegistry": false, + "dateNoted": "2017-04-25", + "parcelID": "16436", + "crownLandUsePIN": "17545", + "crownLandFileNumber": "17943", + "landDescription": "LOT 4 OF LOT 1 BLOCK 5 DISTRICT LOT 5 PLAN 8036" + }, + { + "siteRegistry": true, + "dateNoted": "2022-08-06", + "parcelID": "15288", + "crownLandUsePIN": "17051", + "crownLandFileNumber": "18032", + "landDescription": "LOT 4 OF LOT 3 BLOCK 5 DISTRICT LOT 5 PLAN 8533" + }, + { + "siteRegistry": false, + "dateNoted": "2016-03-14", + "parcelID": "18394", + "crownLandUsePIN": "16168", + "crownLandFileNumber": "19565", + "landDescription": "LOT 4 OF LOT 1 BLOCK 4 DISTRICT LOT 2 PLAN 5095" + } + ], "siteDisclosures": [ { "siteRegistry": true, - "dateReceived": "2023-04-16", - "dateCompleted": "2021-06-22", - "dateEntered": "2014-08-12", - "dateRegistrar": "2018-01-31", - "dateLocalAuthorityReceived": "2021-01-29", - "summary": "Corrupti eos autem mollitia exercitationem quaerat iste.\nFugiat omnis quaerat quidem modi placeat minima aperiam aspernatur.\nAtque dolor illo vero temporibus error illo ratione amet.", - "informationUsed": "Molestiae voluptate at magni magnam hic omnis animi.\nEa distinctio atque modi iusto possimus.\nTempore at veniam tenetur dicta occaecati magni minus iusto numquam.\nNatus fuga corporis.\nQuia praesentium delectus voluptatibus aspernatur eius natus tempora.", - "pastOrPresentOrders": "Esse tempore ea ab.\nUllam praesentium laboriosam.", + "dateReceived": "2021-12-30", + "dateCompleted": "2022-09-26", + "dateEntered": "2015-06-17", + "dateRegistrar": "2017-07-15", + "dateLocalAuthorityReceived": "2015-04-19", + "summary": "Natus eligendi iusto blanditiis quisquam reprehenderit unde.", + "informationUsed": "Magnam eos voluptas aut harum magni quia sit nihil aliquid.\nEos dolor harum.\nRepellendus dignissimos recusandae veritatis magnam.\nQuibusdam debitis repudiandae vero cupiditate nam iusto aliquam eveniet sit.\nIpsum accusantium eius asperiores.", + "pastOrPresentOrders": "Reiciendis dolorum aspernatur beatae quam possimus iure sunt.", "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, { "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false }, { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false }, { "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false } ] } ], "activityLog": [ { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "MCKENZIE SONIA", - "timestamp": "2020-06-11" + "user": "HANE REESE", + "timestamp": "2021-07-29" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "SWANIAWSKI LAISHA", - "timestamp": "2019-01-23" + "user": "CHAMPLIN DAWN", + "timestamp": "2023-07-06" }, { - "siteRegistry": true, + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "KREIGER MARLEY", - "timestamp": "2020-05-02" + "user": "MAYER JEREMY", + "timestamp": "2020-09-08" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "GUTKOWSKI JANESSA", - "timestamp": "2021-12-08" + "user": "ABBOTT GENEVIEVE", + "timestamp": "2017-01-07" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "PROSACCO ETHAN", + "timestamp": "2021-04-23" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "MACGYVER-NIKOLAUS LETITIA", + "timestamp": "2020-05-02" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "STARK URIEL", - "timestamp": "2022-04-09" + "user": "HUELS DELPHIA", + "timestamp": "2020-10-13" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "BAUCH ISADORE", - "timestamp": "2021-03-28" + "user": "STARK NATASHA", + "timestamp": "2021-11-30" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "HARBER MEGHAN", - "timestamp": "2017-04-26" + "user": "PAUCEK REY", + "timestamp": "2017-05-21" } ], "associatedSites": [ { - "dateNoted": "2020-03-29", + "dateNoted": "2015-07-20", "notes": "", - "parcelID": "17695", - "siteID": "19043", + "parcelID": "17645", + "siteID": "20970", "siteRegistry": false - }, - { - "dateNoted": "2015-11-08", - "notes": "", - "parcelID": "17991", - "siteID": "15498", - "siteRegistry": true } ] }, { - "uuid": "586001fb-e8de-4e10-8c5f-8b44173ed184", - "siteID": 20253, - "address": "97701 Vella Mountain", - "latitude": 49.5128, - "longitude": -136.6097, - "lastUpdated": "2019-09-16", - "city": "East Ralphcester", + "uuid": "3b4478ca-b4ad-4200-8a46-9abfe5d8cd17", + "siteID": 18160, + "address": "1761 Mante Glen", + "latitude": 58.1188, + "longitude": -121.0251, + "lastUpdated": "2018-08-05", + "city": "Waterbury", "region": "Kootenay", - "victoriaFile": "26250-20/12054", + "victoriaFile": "26250-20/17767", "regionalFile": "N/A", "parcelIDs": [ - 499123, - 1467028, - 5874702, - 4709481, - 7622816 + 3518383, + 3656695, + 1482027, + 1210870, + 859679 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2014-01-07", - "completed": "2016-05-06", - "initiated": "2020-04-23", - "ministryContact": "KEMMER DON", + "createdAt": "2020-05-31", + "completed": "2017-03-30", + "initiated": "2021-10-20", + "ministryContact": "CONNELLY TOMAS", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -34634,34 +38779,24 @@ "" ], "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, { "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true + "role": "SUBMITTED BY", + "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true + "role": "SUBMITTED BY", + "siteRegistry": false } ], "siteRegistry": false }, { - "createdAt": "2021-08-12", - "completed": "2018-02-02", - "initiated": "2022-01-27", - "ministryContact": "THIEL ZELLA", + "createdAt": "2014-09-13", + "completed": "2020-11-25", + "initiated": "2020-08-27", + "ministryContact": "WITTING HAYLEY", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -34670,28 +38805,28 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false } ], "siteRegistry": true }, { - "createdAt": "2015-10-05", - "completed": "2022-08-24", - "initiated": "2015-01-09", - "ministryContact": "HAND REBECA", + "createdAt": "2014-06-02", + "completed": "2014-12-11", + "initiated": "2019-03-21", + "ministryContact": "HAAG PATTIE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -34699,55 +38834,20 @@ "" ], "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true - } - ], - "siteRegistry": true - }, - { - "createdAt": "2020-10-18", - "completed": "2017-12-28", - "initiated": "2021-04-19", - "ministryContact": "BAUMBACH ALEXANDREA", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false + "role": "SUBMITTED BY", + "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", @@ -34758,10 +38858,10 @@ "siteRegistry": true }, { - "createdAt": "2016-02-27", - "completed": "2019-06-13", - "initiated": "2020-07-04", - "ministryContact": "EFFERTZ ELINORE", + "createdAt": "2016-03-25", + "completed": "2019-11-18", + "initiated": "2020-10-12", + "ministryContact": "LEMKE CIERRA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -34769,29 +38869,14 @@ "" ], "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", "siteRegistry": true }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true } ], @@ -34801,18 +38886,28 @@ "participants": [ { "name": "AMET, DOLOR SIT", - "endDate": "2014-12-20", - "startDate": "2015-04-29", + "endDate": "2017-10-30", + "startDate": "2023-09-04", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": false + "siteRegistry": true }, { - "name": "AMET, DOLOR SIT", - "endDate": "2017-12-31", - "startDate": "2021-08-02", + "name": "IPSUM", + "endDate": "2017-02-16", + "startDate": "2014-07-26", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "name": "IPSUM", + "endDate": "2020-04-20", + "startDate": "2016-07-21", "notes": "", "roles": [ "ORGANIZATION" @@ -34822,70 +38917,96 @@ ], "suspectLandUses": [ { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-06-23 (described on Site Profile dated 2022-06-23)", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2015-03-16 (described on Site Profile dated 2015-03-16)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-09-16 (described on Site Profile dated 2016-09-16)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "notes": "INSERTED FOR SITE PROFILE DATED 2015-10-11 (described on Site Profile dated 2015-10-11)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2020-07-26 (described on Site Profile dated 2020-07-26)", + "notes": "INSERTED FOR SITE PROFILE DATED 2023-07-15 (described on Site Profile dated 2023-07-15)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2021-08-15 (described on Site Profile dated 2021-08-15)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], - "siteDisclosures": [ + "parcelDescriptions": [ { "siteRegistry": false, - "dateReceived": "2023-08-10", - "dateCompleted": "2017-11-26", - "dateEntered": "2022-06-04", - "dateRegistrar": "2015-03-26", - "dateLocalAuthorityReceived": "2019-01-29", - "summary": "Reprehenderit dolorem id quasi autem modi delectus sit possimus.\nDolore aut suscipit ipsa accusantium voluptatem deleniti magni nulla hic.", - "informationUsed": "Occaecati temporibus doloremque nam alias dolore nostrum.\nVeritatis recusandae sint voluptatum corporis rem voluptatum.\nMagnam dolorem cum mollitia.\nCum commodi qui esse.\nRepudiandae sed voluptas eveniet dicta repudiandae tempora.", - "pastOrPresentOrders": "Repellendus fugit dolores ut minima quasi distinctio quidem.\nEveniet saepe similique iure.", + "dateNoted": "2022-03-19", + "parcelID": "15467", + "crownLandUsePIN": "16976", + "crownLandFileNumber": "16238", + "landDescription": "LOT 3 OF LOT 5 BLOCK 2 DISTRICT LOT 4 PLAN 6505" + }, + { + "siteRegistry": true, + "dateNoted": "2021-07-11", + "parcelID": "17748", + "crownLandUsePIN": "15920", + "crownLandFileNumber": "19710", + "landDescription": "LOT 5 OF LOT 3 BLOCK 4 DISTRICT LOT 2 PLAN 4157" + }, + { + "siteRegistry": true, + "dateNoted": "2017-02-07", + "parcelID": "19589", + "crownLandUsePIN": "15544", + "crownLandFileNumber": "16092", + "landDescription": "LOT 3 OF LOT 1 BLOCK 3 DISTRICT LOT 1 PLAN 8601" + } + ], + "siteDisclosures": [ + { + "siteRegistry": true, + "dateReceived": "2014-02-11", + "dateCompleted": "2016-03-04", + "dateEntered": "2015-02-07", + "dateRegistrar": "2013-11-11", + "dateLocalAuthorityReceived": "2023-05-20", + "summary": "Unde ipsa suscipit perspiciatis.\nFuga quam asperiores in quae quod.", + "informationUsed": "Non dolor rerum distinctio voluptas est rem magni.\nAperiam atque recusandae consectetur.\nAliquam rem consequuntur laboriosam omnis.", + "pastOrPresentOrders": "Aspernatur id cum exercitationem in cum explicabo.\nAut nisi quae.", "commercialAndIndustrialPurposes": [ { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true - }, - { - "scheduleReference": "F1*", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true + "siteRegistry": false }, { - "scheduleReference": "F1*", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true - }, - { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false } ] }, { "siteRegistry": true, - "dateReceived": "2019-09-23", - "dateCompleted": "2020-04-26", - "dateEntered": "2020-10-31", - "dateRegistrar": "2014-03-14", - "dateLocalAuthorityReceived": "2015-01-25", - "summary": "Aliquid reiciendis quidem consequatur natus a nulla natus est.\nQuaerat ea beatae rem natus unde molestiae.", - "informationUsed": "Doloremque ad ex eveniet nam minima minima harum.\nError ullam dolorem dolorem soluta.\nPlaceat eum dolorum.", - "pastOrPresentOrders": "Hic magnam rerum eaque.\nMinima sequi eum.", + "dateReceived": "2016-01-27", + "dateCompleted": "2019-06-06", + "dateEntered": "2016-03-25", + "dateRegistrar": "2019-04-21", + "dateLocalAuthorityReceived": "2022-11-27", + "summary": "Amet perferendis dignissimos repudiandae reiciendis.\nSoluta doloremque numquam unde nesciunt.", + "informationUsed": "Eveniet tempore alias magni non explicabo quae deserunt.\nVoluptates itaque quia cupiditate autem repellendus architecto amet.\nQuaerat ullam quaerat ex quidem voluptas nostrum exercitationem.\nAccusamus distinctio minus rerum quas est iste eum aspernatur iusto.", + "pastOrPresentOrders": "Impedit voluptates ipsam at cumque.\nEveniet pariatur aliquid voluptas quam excepturi inventore illo nostrum.\nIpsam dolorum iste praesentium hic corporis.", "commercialAndIndustrialPurposes": [ { "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false }, { "scheduleReference": "F2*", @@ -34894,79 +39015,110 @@ }, { "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true } ] } ], "activityLog": [ + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "KUPHAL MARGARETT", + "timestamp": "2023-04-16" + }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "HACKETT RYLAN", - "timestamp": "2018-03-07" + "user": "CORWIN ROEL", + "timestamp": "2022-06-13" }, { - "siteRegistry": true, + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "KLOCKO LENORE", + "timestamp": "2014-01-04" + }, + { + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "COLLIER MATHEW", - "timestamp": "2017-04-07" + "user": "SPINKA MARISA", + "timestamp": "2015-08-22" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "SCHAEFER JORDON", - "timestamp": "2014-03-18" + "user": "TURNER MAURINE", + "timestamp": "2020-03-02" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "NITZSCHE KENNITH", - "timestamp": "2015-05-17" + "user": "MANN JOANA", + "timestamp": "2021-08-28" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "O'HARA URBAN", + "timestamp": "2016-01-06" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "SAUER TREVION", - "timestamp": "2019-07-19" + "user": "BODE MARTA", + "timestamp": "2017-06-02" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "SKILES DELLA", + "timestamp": "2023-09-25" } ], "associatedSites": [ { - "dateNoted": "2013-11-04", + "dateNoted": "2021-11-16", "notes": "", - "parcelID": "18532", - "siteID": "16740", - "siteRegistry": false + "parcelID": "16672", + "siteID": "18478", + "siteRegistry": true + }, + { + "dateNoted": "2019-01-11", + "notes": "", + "parcelID": "20134", + "siteID": "16778", + "siteRegistry": true } ] }, { - "uuid": "de431c9e-e2b6-4a89-b04a-2c9c55a1f2e6", - "siteID": 19478, - "address": "11201 Parisian Turnpike", - "latitude": 50.2666, - "longitude": -137.6419, - "lastUpdated": "2022-06-22", - "city": "West Mossieview", - "region": "Cariboo", - "victoriaFile": "26250-20/3503", + "uuid": "467b6c92-7e7e-4ca3-b4d4-7b9f91b52384", + "siteID": 15875, + "address": "6679 Hills Trace", + "latitude": 53.0813, + "longitude": -136.5193, + "lastUpdated": "2023-05-08", + "city": "Brendanfort", + "region": "Mainland/Southwest", + "victoriaFile": "26250-20/15854", "regionalFile": "N/A", "parcelIDs": [ - 1572437, - 7751369, - 2186621, - 4196194, - 7178362 + 5543300, + 100778, + 3163055, + 550848, + 9809135 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2020-10-07", - "completed": "2019-07-21", - "initiated": "2014-02-07", - "ministryContact": "HERZOG FREDERIK", + "createdAt": "2014-09-28", + "completed": "2020-06-03", + "initiated": "2015-11-06", + "ministryContact": "MACGYVER TYREL", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -34975,9 +39127,9 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", @@ -34985,7 +39137,7 @@ "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true }, @@ -34993,15 +39145,20 @@ "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false } ], "siteRegistry": true }, { - "createdAt": "2017-07-09", - "completed": "2017-08-18", - "initiated": "2021-02-27", - "ministryContact": "KLING CLEMMIE", + "createdAt": "2013-12-03", + "completed": "2022-02-20", + "initiated": "2021-07-23", + "ministryContact": "CONNELLY LORENA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -35009,16 +39166,6 @@ "" ], "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", @@ -35030,13 +39177,13 @@ "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2015-02-28", - "completed": "2023-04-14", - "initiated": "2013-12-23", - "ministryContact": "BARTON STEWART", + "createdAt": "2017-02-05", + "completed": "2017-02-23", + "initiated": "2018-12-08", + "ministryContact": "VOLKMAN TINA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -35047,12 +39194,12 @@ { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", @@ -35060,14 +39207,14 @@ "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true } ], "participants": [ { "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2020-10-17", - "startDate": "2016-09-17", + "endDate": "2017-01-30", + "startDate": "2019-05-01", "notes": "", "roles": [ "EMPLOYEE" @@ -35076,8 +39223,8 @@ }, { "name": "SHELL CANADA PRODUCTS", - "endDate": "2014-08-06", - "startDate": "2020-05-01", + "endDate": "2020-05-04", + "startDate": "2016-09-26", "notes": "", "roles": [ "EMPLOYEE" @@ -35086,18 +39233,18 @@ }, { "name": "AMET, DOLOR SIT", - "endDate": "2023-06-19", - "startDate": "2015-11-26", + "endDate": "2016-12-21", + "startDate": "2023-06-22", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2020-12-13", - "startDate": "2023-02-18", + "endDate": "2015-06-18", + "startDate": "2018-04-26", "notes": "", "roles": [ "ORGANIZATION" @@ -35105,146 +39252,225 @@ "siteRegistry": false }, { - "name": "IPSUM", - "endDate": "2022-11-23", - "startDate": "2016-06-13", + "name": "AMET, DOLOR SIT", + "endDate": "2020-12-06", + "startDate": "2018-09-05", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": true + "siteRegistry": false } ], "suspectLandUses": [ { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-08-28 (described on Site Profile dated 2017-08-28)", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2021-02-26 (described on Site Profile dated 2021-02-26)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-07-20 (described on Site Profile dated 2021-07-20)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "notes": "INSERTED FOR SITE PROFILE DATED 2019-11-06 (described on Site Profile dated 2019-11-06)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2020-04-25 (described on Site Profile dated 2020-04-25)", + "notes": "INSERTED FOR SITE PROFILE DATED 2014-06-02 (described on Site Profile dated 2014-06-02)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + } + ], + "parcelDescriptions": [ + { + "siteRegistry": true, + "dateNoted": "2018-03-21", + "parcelID": "17126", + "crownLandUsePIN": "17484", + "crownLandFileNumber": "19745", + "landDescription": "LOT 4 OF LOT 4 BLOCK 2 DISTRICT LOT 3 PLAN 5544" + }, + { + "siteRegistry": true, + "dateNoted": "2023-06-27", + "parcelID": "20200", + "crownLandUsePIN": "19745", + "crownLandFileNumber": "19259", + "landDescription": "LOT 4 OF LOT 1 BLOCK 3 DISTRICT LOT 1 PLAN 6869" }, { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-02-04 (described on Site Profile dated 2017-02-04)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "dateNoted": "2020-09-02", + "parcelID": "17550", + "crownLandUsePIN": "18491", + "crownLandFileNumber": "17331", + "landDescription": "LOT 5 OF LOT 2 BLOCK 5 DISTRICT LOT 2 PLAN 5068" + }, + { + "siteRegistry": false, + "dateNoted": "2017-03-27", + "parcelID": "16887", + "crownLandUsePIN": "20878", + "crownLandFileNumber": "17292", + "landDescription": "LOT 1 OF LOT 1 BLOCK 1 DISTRICT LOT 1 PLAN 9452" } ], "siteDisclosures": [ { - "siteRegistry": false, - "dateReceived": "2014-06-23", - "dateCompleted": "2021-10-26", - "dateEntered": "2015-01-07", - "dateRegistrar": "2016-12-13", - "dateLocalAuthorityReceived": "2018-05-07", - "summary": "Eum labore praesentium id.\nDeleniti ratione itaque repellendus aliquam.", - "informationUsed": "Rerum unde magni maiores ipsum est.\nEaque excepturi cum.\nOfficiis ipsam blanditiis sed quaerat totam odio officia expedita.\nNihil quibusdam qui culpa natus.\nPorro ipsum omnis velit.", - "pastOrPresentOrders": "Explicabo impedit sunt unde.", + "siteRegistry": true, + "dateReceived": "2014-09-17", + "dateCompleted": "2021-05-09", + "dateEntered": "2019-02-17", + "dateRegistrar": "2018-05-08", + "dateLocalAuthorityReceived": "2019-10-24", + "summary": "Aut totam mollitia nam.\nNesciunt quis hic sed cum.", + "informationUsed": "Repudiandae ad eaque.\nIpsum consequatur nobis ipsa laudantium repellat ex temporibus sunt fuga.\nDolores repellat quasi pariatur quo veniam cum exercitationem reiciendis ut.\nNon quasi vero in atque.", + "pastOrPresentOrders": "Excepturi laboriosam voluptatem aut incidunt perspiciatis est.", "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, { "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false }, { - "scheduleReference": "F2*", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true - }, + } + ] + }, + { + "siteRegistry": false, + "dateReceived": "2016-03-23", + "dateCompleted": "2014-09-10", + "dateEntered": "2018-04-25", + "dateRegistrar": "2022-11-14", + "dateLocalAuthorityReceived": "2017-03-31", + "summary": "Pariatur mollitia quis fugit impedit consequuntur eveniet eum reiciendis debitis.\nDolor quam illum laudantium necessitatibus dolorum nesciunt.", + "informationUsed": "Explicabo sunt perspiciatis quibusdam qui aspernatur.\nEst fugiat veniam ipsam quis.\nQuae ipsam molestias nesciunt sit.\nAlias voluptates vel quam fugiat cupiditate.", + "pastOrPresentOrders": "Ipsum impedit soluta laboriosam possimus optio commodi voluptatem.\nQuo ipsum saepe magnam.", + "commercialAndIndustrialPurposes": [ { - "scheduleReference": "F2*", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true + "siteRegistry": false }, { "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true + "siteRegistry": false } ] } ], "activityLog": [ { - "siteRegistry": true, + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "SCHOWALTER-BAUCH JOCELYN", - "timestamp": "2022-02-28" + "user": "RUECKER CHESTER", + "timestamp": "2016-06-21" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "GRADY JOVANY", + "timestamp": "2016-11-18" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "SAUER LOUVENIA", - "timestamp": "2016-04-23" + "user": "ARMSTRONG AIDA", + "timestamp": "2019-10-30" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "SCHOWALTER HIPOLITO", - "timestamp": "2015-06-11" + "user": "HACKETT OMA", + "timestamp": "2021-08-04" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "ARMSTRONG ERWIN", + "timestamp": "2022-01-05" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "BAHRINGER-ABBOTT TRUDIE", - "timestamp": "2017-06-02" + "user": "CHAMPLIN RANDAL", + "timestamp": "2020-08-26" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "PAGAC MORTIMER", - "timestamp": "2014-05-11" + "user": "RIPPIN GREGG", + "timestamp": "2014-01-24" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "ORN VALENTIN", + "timestamp": "2016-06-24" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "HIRTHE KAMREN", - "timestamp": "2014-08-08" + "user": "RYAN CARLOS", + "timestamp": "2016-01-29" } ], "associatedSites": [ { - "dateNoted": "2018-01-22", + "dateNoted": "2019-01-23", "notes": "", - "parcelID": "16475", - "siteID": "17480", + "parcelID": "20347", + "siteID": "15868", + "siteRegistry": false + }, + { + "dateNoted": "2018-04-30", + "notes": "", + "parcelID": "20101", + "siteID": "19608", + "siteRegistry": false + }, + { + "dateNoted": "2023-03-28", + "notes": "", + "parcelID": "20988", + "siteID": "17607", "siteRegistry": true } ] }, { - "uuid": "ed6b5be6-6b2f-4bac-863d-00557d33e37d", - "siteID": 16693, - "address": "41423 Batz View", - "latitude": 55.2043, - "longitude": -124.378, - "lastUpdated": "2020-01-23", - "city": "Hesselboro", - "region": "Thompson-Okanagan", - "victoriaFile": "26250-20/8419", + "uuid": "8d177bbe-f909-4d0f-8813-6f12ff0f2618", + "siteID": 18281, + "address": "889 Valentina Shores", + "latitude": 53.1927, + "longitude": -125.4253, + "lastUpdated": "2017-11-16", + "city": "Koelpinport", + "region": "Mainland/Southwest", + "victoriaFile": "26250-20/12542", "regionalFile": "N/A", "parcelIDs": [ - 1132183, - 5546395, - 7648288, - 5378442, - 9492906 + 8321801, + 6745464, + 1343006, + 2300754, + 5958957 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2013-12-27", - "completed": "2019-03-16", - "initiated": "2015-06-28", - "ministryContact": "STIEDEMANN ALBERT", + "createdAt": "2022-09-23", + "completed": "2017-03-23", + "initiated": "2014-09-24", + "ministryContact": "MOHR ANNABEL", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -35257,34 +39483,24 @@ "role": "SUBMITTED BY", "siteRegistry": false }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2016-03-04", - "completed": "2013-10-23", - "initiated": "2014-03-05", - "ministryContact": "HICKLE SHAWNA", + "createdAt": "2017-01-12", + "completed": "2019-06-25", + "initiated": "2023-06-13", + "ministryContact": "HODKIEWICZ ADRIANNA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -35294,13 +39510,13 @@ "notationParticipants": [ { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true + "role": "REQUESTED BY", + "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", @@ -35309,22 +39525,17 @@ }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2018-12-26", - "completed": "2020-03-29", - "initiated": "2023-07-01", - "ministryContact": "GLEASON EVERETTE", + "createdAt": "2014-07-06", + "completed": "2019-12-26", + "initiated": "2019-09-18", + "ministryContact": "BLANDA EDYTHE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -35333,28 +39544,28 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2021-07-28", - "completed": "2017-02-18", - "initiated": "2021-09-03", - "ministryContact": "JOHNS REID", + "createdAt": "2015-07-12", + "completed": "2020-10-26", + "initiated": "2019-12-23", + "ministryContact": "FEEST ELISA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -35362,6 +39573,11 @@ "" ], "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", @@ -35369,22 +39585,22 @@ }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false + "role": "SUBMITTED BY", + "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2018-12-22", - "completed": "2017-10-14", - "initiated": "2015-02-07", - "ministryContact": "DACH AMANDA", + "createdAt": "2013-10-18", + "completed": "2015-09-09", + "initiated": "2016-04-11", + "ministryContact": "MEDHURST BERNARD", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -35398,29 +39614,49 @@ "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true } ], "participants": [ + { + "name": "IPSUM", + "endDate": "2017-12-30", + "startDate": "2014-09-07", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, { "name": "SHELL CANADA PRODUCTS", - "endDate": "2022-12-14", - "startDate": "2023-08-07", + "endDate": "2018-08-07", + "startDate": "2016-04-22", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "name": "IPSUM", + "endDate": "2013-12-13", + "startDate": "2015-03-02", + "notes": "", + "roles": [ + "EMPLOYEE" ], "siteRegistry": false }, { "name": "AMET, DOLOR SIT", - "endDate": "2019-05-05", - "startDate": "2016-11-13", + "endDate": "2013-12-14", + "startDate": "2017-10-07", "notes": "", "roles": [ "ORGANIZATION" @@ -35429,11 +39665,11 @@ }, { "name": "IPSUM", - "endDate": "2015-06-19", - "startDate": "2015-07-30", + "endDate": "2014-06-06", + "startDate": "2022-08-21", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": false } @@ -35441,74 +39677,85 @@ "suspectLandUses": [ { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-07-10 (described on Site Profile dated 2019-07-10)", + "notes": "INSERTED FOR SITE PROFILE DATED 2019-03-05 (described on Site Profile dated 2019-03-05)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2013-11-19 (described on Site Profile dated 2013-11-19)", + "notes": "INSERTED FOR SITE PROFILE DATED 2014-10-09 (described on Site Profile dated 2014-10-09)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-03-24 (described on Site Profile dated 2015-03-24)", + "notes": "INSERTED FOR SITE PROFILE DATED 2014-05-20 (described on Site Profile dated 2014-05-20)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-12-08 (described on Site Profile dated 2014-12-08)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "notes": "INSERTED FOR SITE PROFILE DATED 2017-11-21 (described on Site Profile dated 2017-11-21)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-02-15 (described on Site Profile dated 2015-02-15)", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2019-06-24 (described on Site Profile dated 2019-06-24)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], - "siteDisclosures": [ + "parcelDescriptions": [ { "siteRegistry": false, - "dateReceived": "2014-03-13", - "dateCompleted": "2014-03-02", - "dateEntered": "2023-01-01", - "dateRegistrar": "2018-04-25", - "dateLocalAuthorityReceived": "2020-10-10", - "summary": "Doloribus sed eos aut veritatis.\nProvident debitis tenetur debitis quis laborum excepturi ipsum sunt.\nNatus possimus soluta voluptatum possimus quae fugit rem at reprehenderit.", - "informationUsed": "Molestiae amet qui quisquam tenetur quos deserunt numquam.\nSoluta qui sunt vitae atque vero sed deleniti perspiciatis.\nAspernatur voluptas enim fugit nihil.\nIpsum illo iusto maiores tempora aut earum assumenda.\nEligendi deserunt autem eaque quasi totam.", - "pastOrPresentOrders": "Architecto numquam aut eaque itaque modi dolor et.\nReprehenderit perferendis rem beatae repellat minima mollitia deserunt.", - "commercialAndIndustrialPurposes": [ - { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true - }, - { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true - } - ] + "dateNoted": "2018-07-23", + "parcelID": "18648", + "crownLandUsePIN": "19127", + "crownLandFileNumber": "19412", + "landDescription": "LOT 3 OF LOT 4 BLOCK 2 DISTRICT LOT 4 PLAN 7719" + }, + { + "siteRegistry": false, + "dateNoted": "2023-01-18", + "parcelID": "20976", + "crownLandUsePIN": "18539", + "crownLandFileNumber": "20380", + "landDescription": "LOT 2 OF LOT 2 BLOCK 2 DISTRICT LOT 3 PLAN 7092" + }, + { + "siteRegistry": true, + "dateNoted": "2014-06-27", + "parcelID": "17053", + "crownLandUsePIN": "15348", + "crownLandFileNumber": "17701", + "landDescription": "LOT 4 OF LOT 5 BLOCK 4 DISTRICT LOT 2 PLAN 7185" }, { "siteRegistry": false, - "dateReceived": "2018-06-27", - "dateCompleted": "2013-12-06", - "dateEntered": "2019-10-07", - "dateRegistrar": "2014-11-17", - "dateLocalAuthorityReceived": "2016-08-17", - "summary": "Beatae nisi nesciunt sunt distinctio at laudantium autem illo.\nNumquam debitis voluptas pariatur tenetur sint dolore id facere.\nIusto suscipit expedita.", - "informationUsed": "Quod sapiente explicabo blanditiis quidem nihil fugiat beatae velit.\nAccusantium totam sequi temporibus non vitae eligendi nemo ea.\nAperiam totam quos voluptatem commodi dignissimos maxime maiores dolores.", - "pastOrPresentOrders": "Modi suscipit fuga.", + "dateNoted": "2020-12-09", + "parcelID": "16219", + "crownLandUsePIN": "18149", + "crownLandFileNumber": "15941", + "landDescription": "LOT 2 OF LOT 4 BLOCK 2 DISTRICT LOT 3 PLAN 3731" + } + ], + "siteDisclosures": [ + { + "siteRegistry": true, + "dateReceived": "2021-03-03", + "dateCompleted": "2019-01-28", + "dateEntered": "2022-06-05", + "dateRegistrar": "2022-06-29", + "dateLocalAuthorityReceived": "2015-03-12", + "summary": "Pariatur voluptates voluptatem sunt sapiente alias fugit.", + "informationUsed": "Vitae minima corporis illo aliquid voluptatem laudantium.\nMolestiae aut molestiae vero saepe ullam consequuntur.\nDeleniti impedit iure veritatis amet nisi similique animi.\nCum velit eum beatae a officiis magnam numquam.", + "pastOrPresentOrders": "Pariatur repudiandae fuga optio quisquam.\nQui inventore officiis aut provident illum.\nMinus exercitationem blanditiis dolorum quaerat rem.", "commercialAndIndustrialPurposes": [ { "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, { "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true + "siteRegistry": false } ] } @@ -35517,93 +39764,81 @@ { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "ROOB BUSTER", - "timestamp": "2020-06-30" - }, - { - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "ULLRICH WINSTON", - "timestamp": "2021-10-19" - }, - { - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "SCHUPPE-MILLS TERRILL", - "timestamp": "2022-04-24" + "user": "CREMIN MARGE", + "timestamp": "2022-04-01" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "LEGROS FRANKIE", - "timestamp": "2022-06-02" + "user": "LEFFLER-CHAMPLIN REID", + "timestamp": "2022-11-26" }, { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "ALTENWERTH JACKSON", - "timestamp": "2017-03-03" + "user": "PAUCEK KILEY", + "timestamp": "2015-11-05" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "TROMP KARIANNE", - "timestamp": "2016-07-09" + "user": "TURCOTTE FRANCISCO", + "timestamp": "2015-07-07" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "KUTCH FANNIE", - "timestamp": "2014-04-02" + "user": "RODRIGUEZ RICO", + "timestamp": "2017-08-23" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "HAHN PETE", - "timestamp": "2021-12-22" + "user": "SAUER NIA", + "timestamp": "2015-01-17" }, { - "siteRegistry": true, + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "MARQUARDT FLETA", - "timestamp": "2015-05-01" + "user": "PRICE DONNELL", + "timestamp": "2019-01-05" } ], "associatedSites": [ { - "dateNoted": "2023-09-06", + "dateNoted": "2017-06-01", "notes": "", - "parcelID": "17651", - "siteID": "18179", - "siteRegistry": true + "parcelID": "20082", + "siteID": "18801", + "siteRegistry": false } ] }, { - "uuid": "3490f8fa-33ec-40c0-bbb0-2b03f272f0d7", - "siteID": 20554, - "address": "882 Turner Gateway", - "latitude": 49.1912, - "longitude": -130.5195, - "lastUpdated": "2017-10-27", - "city": "Cierrahaven", - "region": "Kootenay", - "victoriaFile": "26250-20/8336", + "uuid": "adbaf508-8779-4e76-bbc4-84bafa9341ff", + "siteID": 17956, + "address": "99216 Bednar Parkway", + "latitude": 54.8749, + "longitude": -122.7023, + "lastUpdated": "2015-02-08", + "city": "O'Reillystead", + "region": " North Coast", + "victoriaFile": "26250-20/13674", "regionalFile": "N/A", "parcelIDs": [ - 7825254, - 6358380, - 3496111, - 5942588, - 6853710 + 2218961, + 2635586, + 6075224, + 3223039, + 7570152 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2023-06-29", - "completed": "2018-08-01", - "initiated": "2023-08-08", - "ministryContact": "POLLICH MACKENZIE", + "createdAt": "2015-11-06", + "completed": "2013-11-27", + "initiated": "2014-01-01", + "ministryContact": "KOCH PATTIE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -35611,58 +39846,18 @@ "" ], "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false - } - ], - "siteRegistry": false - }, - { - "createdAt": "2013-11-06", - "completed": "2019-07-15", - "initiated": "2020-07-07", - "ministryContact": "BAUMBACH IVAH", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true }, @@ -35672,13 +39867,13 @@ "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2023-02-24", - "completed": "2014-03-13", - "initiated": "2018-04-09", - "ministryContact": "STRACKE MIKEL", + "createdAt": "2014-11-04", + "completed": "2023-03-12", + "initiated": "2023-02-21", + "ministryContact": "LUETTGEN MAGGIE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -35686,144 +39881,193 @@ "" ], "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - } - ], - "siteRegistry": true - }, - { - "createdAt": "2023-07-07", - "completed": "2017-03-28", - "initiated": "2013-10-22", - "ministryContact": "MULLER BROOK", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false } ], "participants": [ { "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2023-06-23", - "startDate": "2017-06-20", + "endDate": "2016-02-09", + "startDate": "2023-09-01", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2018-01-08", + "startDate": "2017-02-08", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false }, { - "name": "IPSUM", - "endDate": "2020-05-31", - "startDate": "2013-12-31", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2019-04-09", + "startDate": "2016-09-30", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": false }, { "name": "AMET, DOLOR SIT", - "endDate": "2015-12-27", - "startDate": "2015-03-11", + "endDate": "2020-05-21", + "startDate": "2022-02-16", "notes": "", "roles": [ "ORGANIZATION" ], "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2019-08-16", + "startDate": "2023-10-08", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true } ], "suspectLandUses": [ { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-04-21 (described on Site Profile dated 2015-04-21)", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2020-11-05 (described on Site Profile dated 2020-11-05)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2023-09-20 (described on Site Profile dated 2023-09-20)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2017-12-14 (described on Site Profile dated 2017-12-14)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-11-23 (described on Site Profile dated 2016-11-23)", + "notes": "INSERTED FOR SITE PROFILE DATED 2018-05-30 (described on Site Profile dated 2018-05-30)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2017-10-18 (described on Site Profile dated 2017-10-18)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], + "parcelDescriptions": [ + { + "siteRegistry": false, + "dateNoted": "2015-05-21", + "parcelID": "19433", + "crownLandUsePIN": "15555", + "crownLandFileNumber": "18593", + "landDescription": "LOT 5 OF LOT 3 BLOCK 2 DISTRICT LOT 2 PLAN 7046" + }, + { + "siteRegistry": false, + "dateNoted": "2017-01-15", + "parcelID": "19439", + "crownLandUsePIN": "20272", + "crownLandFileNumber": "16024", + "landDescription": "LOT 3 OF LOT 3 BLOCK 3 DISTRICT LOT 2 PLAN 5199" + }, + { + "siteRegistry": false, + "dateNoted": "2023-09-26", + "parcelID": "16634", + "crownLandUsePIN": "17999", + "crownLandFileNumber": "20686", + "landDescription": "LOT 1 OF LOT 4 BLOCK 5 DISTRICT LOT 5 PLAN 6225" + } + ], "siteDisclosures": [ { "siteRegistry": true, - "dateReceived": "2018-11-18", - "dateCompleted": "2014-02-02", - "dateEntered": "2019-07-18", - "dateRegistrar": "2013-11-01", - "dateLocalAuthorityReceived": "2018-08-15", - "summary": "Harum deleniti repellat a fuga eos expedita.\nExercitationem nihil sunt pariatur impedit eos incidunt accusantium.\nExcepturi assumenda laboriosam velit eos error dolor recusandae debitis.", - "informationUsed": "Corporis iste similique.\nQuidem non tenetur corrupti ea excepturi.\nVoluptas inventore doloremque ratione soluta dicta est soluta cumque.\nHarum blanditiis optio maiores delectus corporis placeat at fugiat.\nPraesentium officiis ut nam ipsa mollitia sequi.", - "pastOrPresentOrders": "Accusantium hic tempora.", + "dateReceived": "2017-03-12", + "dateCompleted": "2017-04-04", + "dateEntered": "2019-05-02", + "dateRegistrar": "2020-10-21", + "dateLocalAuthorityReceived": "2021-05-12", + "summary": "Ipsum dolor dicta mollitia quis.\nAnimi qui vitae nesciunt quae odit sunt.", + "informationUsed": "Sapiente provident a aliquid.\nAsperiores eveniet vero voluptates.\nBeatae rerum nobis amet omnis recusandae quae error natus.\nQuisquam velit deleniti placeat eius.", + "pastOrPresentOrders": "Fugit in nisi quam.\nError dolorem accusantium in sapiente distinctio iusto.", "commercialAndIndustrialPurposes": [ { "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + } + ] + }, + { + "siteRegistry": false, + "dateReceived": "2014-03-09", + "dateCompleted": "2020-03-25", + "dateEntered": "2015-12-31", + "dateRegistrar": "2014-01-15", + "dateLocalAuthorityReceived": "2020-12-27", + "summary": "Consequatur cum incidunt necessitatibus necessitatibus ducimus eligendi itaque odio quidem.", + "informationUsed": "Aspernatur aperiam error reprehenderit autem modi iste dolores excepturi.\nId temporibus cum magnam error sit saepe facere.\nAtque nobis id.\nNatus natus tenetur incidunt.\nProvident doloremque in rerum eius voluptatem velit quibusdam earum.", + "pastOrPresentOrders": "Tempore accusantium ut nobis iusto iusto.\nMinima qui iure asperiores est repudiandae quaerat distinctio.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, { "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true } ] @@ -35833,75 +40077,76 @@ { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "VEUM ARNE", - "timestamp": "2018-07-02" - }, - { - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "SCHULTZ-BERNIER JAQUAN", - "timestamp": "2019-12-07" + "user": "SCHADEN NATHEN", + "timestamp": "2020-05-03" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "LIND RODOLFO", - "timestamp": "2021-10-05" + "user": "STOLTENBERG JEFFERY", + "timestamp": "2019-08-17" }, { - "siteRegistry": true, + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "RAYNOR ELODY", - "timestamp": "2018-10-02" + "user": "WINDLER ENA", + "timestamp": "2020-07-23" }, { - "siteRegistry": true, + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "SCHMIDT EMMALEE", - "timestamp": "2017-12-12" + "user": "BERGE ALYCE", + "timestamp": "2017-10-03" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "MULLER KURT", - "timestamp": "2020-07-15" + "user": "SCHINNER WILEY", + "timestamp": "2014-12-24" } ], "associatedSites": [ { - "dateNoted": "2014-08-18", + "dateNoted": "2017-10-04", "notes": "", - "parcelID": "20099", - "siteID": "17078", - "siteRegistry": true + "parcelID": "18345", + "siteID": "18801", + "siteRegistry": false + }, + { + "dateNoted": "2020-08-12", + "notes": "", + "parcelID": "15899", + "siteID": "17847", + "siteRegistry": false } ] }, { - "uuid": "86bd0713-725a-4b60-ab95-50132e38f66b", - "siteID": 20967, - "address": "12967 Ted Mews", - "latitude": 52.1119, - "longitude": -120.2285, - "lastUpdated": "2019-02-14", - "city": "Costa Mesa", + "uuid": "92572afd-24cf-42db-a1bf-e351848fce09", + "siteID": 18240, + "address": "760 Kiana Vista", + "latitude": 58.2975, + "longitude": -119.1714, + "lastUpdated": "2020-11-28", + "city": "Lake Shanny", "region": "Mainland/Southwest", - "victoriaFile": "26250-20/8861", + "victoriaFile": "26250-20/16514", "regionalFile": "N/A", "parcelIDs": [ - 2088816, - 1669929, - 8877654, - 8314121, - 4775881 + 2203779, + 5785127, + 4550175, + 3675137, + 4733130 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2019-05-24", - "completed": "2016-10-16", - "initiated": "2021-08-22", - "ministryContact": "FLATLEY-DENESIK SPENCER", + "createdAt": "2018-04-06", + "completed": "2018-03-04", + "initiated": "2016-02-03", + "ministryContact": "RUNOLFSSON SCOT", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -35912,20 +40157,20 @@ { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true }, @@ -35938,10 +40183,10 @@ "siteRegistry": true }, { - "createdAt": "2023-05-21", - "completed": "2014-01-03", - "initiated": "2017-09-11", - "ministryContact": "PARKER VALENTINE", + "createdAt": "2016-12-22", + "completed": "2019-01-06", + "initiated": "2020-12-23", + "ministryContact": "MOORE RAINA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -35950,28 +40195,23 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false + "role": "SUBMITTED BY", + "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2021-02-11", - "completed": "2021-11-09", - "initiated": "2021-07-03", - "ministryContact": "FLATLEY ROSARIO", + "createdAt": "2015-01-24", + "completed": "2023-05-26", + "initiated": "2017-05-13", + "ministryContact": "PADBERG WANDA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -35980,23 +40220,38 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false } ], "siteRegistry": true }, { - "createdAt": "2017-07-06", - "completed": "2014-04-27", - "initiated": "2017-04-18", - "ministryContact": "SCHAMBERGER WHITNEY", + "createdAt": "2022-01-11", + "completed": "2014-08-16", + "initiated": "2014-11-23", + "ministryContact": "LEHNER GARRISON", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -36010,17 +40265,12 @@ "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false }, @@ -36030,13 +40280,13 @@ "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2021-03-18", - "completed": "2017-05-12", - "initiated": "2017-02-15", - "ministryContact": "KSHLERIN ALPHONSO", + "createdAt": "2017-10-10", + "completed": "2014-09-12", + "initiated": "2018-09-24", + "ministryContact": "BARTOLETTI MOSHE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -36045,19 +40295,19 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true } ], "siteRegistry": false @@ -36066,97 +40316,128 @@ "participants": [ { "name": "AMET, DOLOR SIT", - "endDate": "2022-12-27", - "startDate": "2019-09-27", + "endDate": "2014-04-24", + "startDate": "2018-08-15", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2019-09-15", - "startDate": "2021-08-05", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2020-08-07", + "startDate": "2016-01-29", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": true + "siteRegistry": false }, { - "name": "AMET, DOLOR SIT", - "endDate": "2015-08-20", - "startDate": "2023-08-27", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2022-10-11", + "startDate": "2020-05-28", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": false }, { - "name": "IPSUM", - "endDate": "2016-12-05", - "startDate": "2023-09-13", + "name": "AMET, DOLOR SIT", + "endDate": "2023-01-13", + "startDate": "2022-01-15", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false }, { "name": "AMET, DOLOR SIT", - "endDate": "2023-09-15", - "startDate": "2021-08-09", + "endDate": "2023-02-14", + "startDate": "2018-08-11", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": true + "siteRegistry": false } ], "suspectLandUses": [ { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2020-03-05 (described on Site Profile dated 2020-03-05)", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2014-12-28 (described on Site Profile dated 2014-12-28)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2021-02-07 (described on Site Profile dated 2021-02-07)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2014-12-15 (described on Site Profile dated 2014-12-15)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-08-20 (described on Site Profile dated 2022-08-20)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2014-06-04 (described on Site Profile dated 2014-06-04)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2023-09-11 (described on Site Profile dated 2023-09-11)", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2017-06-13 (described on Site Profile dated 2017-06-13)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + } + ], + "parcelDescriptions": [ + { + "siteRegistry": true, + "dateNoted": "2017-04-22", + "parcelID": "20944", + "crownLandUsePIN": "17327", + "crownLandFileNumber": "17342", + "landDescription": "LOT 2 OF LOT 4 BLOCK 2 DISTRICT LOT 2 PLAN 5826" + }, + { + "siteRegistry": true, + "dateNoted": "2019-08-28", + "parcelID": "16731", + "crownLandUsePIN": "18953", + "crownLandFileNumber": "20321", + "landDescription": "LOT 4 OF LOT 3 BLOCK 4 DISTRICT LOT 3 PLAN 5947" }, { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-09-30 (described on Site Profile dated 2019-09-30)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "dateNoted": "2019-07-28", + "parcelID": "19513", + "crownLandUsePIN": "15461", + "crownLandFileNumber": "20742", + "landDescription": "LOT 4 OF LOT 3 BLOCK 1 DISTRICT LOT 3 PLAN 9448" } ], "siteDisclosures": [ { "siteRegistry": true, - "dateReceived": "2017-10-29", - "dateCompleted": "2022-08-03", - "dateEntered": "2019-05-21", - "dateRegistrar": "2022-10-10", - "dateLocalAuthorityReceived": "2022-08-06", - "summary": "Sequi esse voluptate labore ea dicta culpa.\nLaborum esse quisquam saepe ipsum architecto labore nulla libero consequuntur.\nNemo dolorum placeat nesciunt praesentium unde sapiente rerum.", - "informationUsed": "Minus temporibus eaque beatae nostrum.\nBlanditiis occaecati repellat officia culpa.\nAnimi nihil praesentium tempore dolor repudiandae.", - "pastOrPresentOrders": "Quaerat voluptate qui delectus minima perferendis vitae vero iste.\nAdipisci nulla enim nihil iste in exercitationem provident.\nAnimi eveniet error ex eligendi aliquam.", + "dateReceived": "2017-07-11", + "dateCompleted": "2014-03-22", + "dateEntered": "2021-05-17", + "dateRegistrar": "2020-11-13", + "dateLocalAuthorityReceived": "2018-09-11", + "summary": "Aut unde nulla excepturi minima recusandae nam.\nExcepturi eum corporis eum explicabo libero harum.\nFugit tempora dolorum ratione.", + "informationUsed": "Magni incidunt quos accusantium quas libero perferendis earum eos.\nRem nihil maiores sequi quam nemo saepe.\nVitae ipsa iste.\nConsequatur necessitatibus quo optio consequatur a sapiente.", + "pastOrPresentOrders": "Labore cum repudiandae cum numquam sit autem quisquam velit.\nPossimus numquam similique.", "commercialAndIndustrialPurposes": [ { "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true } ] @@ -36166,88 +40447,94 @@ { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "SCHOEN AIDAN", - "timestamp": "2021-03-28" + "user": "CUMMERATA DEMARIO", + "timestamp": "2016-03-21" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "REILLY WAYLON", - "timestamp": "2019-02-21" + "user": "HEIDENREICH DAWSON", + "timestamp": "2015-01-24" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "WUNSCH JAMEL", - "timestamp": "2015-01-05" + "user": "PAUCEK HENRIETTE", + "timestamp": "2015-03-30" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "ROBEL DANIELLE", - "timestamp": "2014-03-20" + "user": "MULLER FLETA", + "timestamp": "2013-11-14" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "MILLER SOPHIE", - "timestamp": "2016-07-02" + "user": "JOHNSON CLAUDIE", + "timestamp": "2019-11-07" }, { - "siteRegistry": true, + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "ROSENBAUM LANDEN", - "timestamp": "2017-07-05" + "user": "GRIMES KORBIN", + "timestamp": "2018-01-01" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "KIRLIN EVAN", - "timestamp": "2015-05-29" + "user": "JOHNS CLEORA", + "timestamp": "2019-06-28" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "HIRTHE FREIDA", + "timestamp": "2017-09-18" } ], "associatedSites": [ { - "dateNoted": "2019-06-23", + "dateNoted": "2015-11-01", "notes": "", - "parcelID": "15946", - "siteID": "16632", + "parcelID": "20518", + "siteID": "20713", "siteRegistry": false }, { - "dateNoted": "2021-03-28", + "dateNoted": "2015-06-11", "notes": "", - "parcelID": "17602", - "siteID": "16296", + "parcelID": "17136", + "siteID": "18309", "siteRegistry": true } ] }, { - "uuid": "7d1aaed5-cc32-4f62-a7bc-8639f5618989", - "siteID": 17073, - "address": "5543 Cole Walk", - "latitude": 55.1371, - "longitude": -129.9419, - "lastUpdated": "2020-03-15", - "city": "Berkeley", - "region": " North Coast", - "victoriaFile": "26250-20/16191", + "uuid": "79f14244-862d-434f-ab0c-f7b749ca079f", + "siteID": 19044, + "address": "5092 Gusikowski Plain", + "latitude": 51.1583, + "longitude": -120.4281, + "lastUpdated": "2014-04-18", + "city": "El Dorado Hills", + "region": "Kootenay", + "victoriaFile": "26250-20/7549", "regionalFile": "N/A", "parcelIDs": [ - 4819328, - 778596, - 9814698, - 6780070, - 3630410 + 4295206, + 8525446, + 4808958, + 8856783, + 8199321 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2019-03-16", - "completed": "2017-01-26", - "initiated": "2019-07-31", - "ministryContact": "WILL YASMEEN", + "createdAt": "2017-06-29", + "completed": "2014-10-07", + "initiated": "2017-06-17", + "ministryContact": "WEIMANN GARTH", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -36258,76 +40545,36 @@ { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false - } - ], - "siteRegistry": false - }, - { - "createdAt": "2017-08-27", - "completed": "2017-11-04", - "initiated": "2018-03-11", - "ministryContact": "ALTENWERTH JEROMY", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true - } - ], - "siteRegistry": false - }, - { - "createdAt": "2018-09-08", - "completed": "2019-03-28", - "initiated": "2016-12-27", - "ministryContact": "SPINKA EASTON", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ + }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false + "role": "REQUESTED BY", + "siteRegistry": true } ], "siteRegistry": true }, { - "createdAt": "2014-07-09", - "completed": "2019-12-05", - "initiated": "2015-07-08", - "ministryContact": "SPINKA JORDAN", + "createdAt": "2015-10-03", + "completed": "2014-04-02", + "initiated": "2017-10-06", + "ministryContact": "STEHR CURT", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -36335,148 +40582,109 @@ "" ], "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true } ], "participants": [ { - "name": "IPSUM", - "endDate": "2022-09-20", - "startDate": "2019-03-20", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2020-02-18", + "startDate": "2022-01-14", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": true + "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", - "endDate": "2017-09-07", - "startDate": "2018-12-25", + "endDate": "2017-01-06", + "startDate": "2019-08-22", "notes": "", "roles": [ "ORGANIZATION" ], "siteRegistry": true - }, - { - "name": "AMET, DOLOR SIT", - "endDate": "2014-11-27", - "startDate": "2014-02-23", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": false } ], "suspectLandUses": [ { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-04-12 (described on Site Profile dated 2015-04-12)", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2021-02-19 (described on Site Profile dated 2021-02-19)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2020-01-23 (described on Site Profile dated 2020-01-23)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "notes": "INSERTED FOR SITE PROFILE DATED 2018-08-03 (described on Site Profile dated 2018-08-03)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + } + ], + "parcelDescriptions": [ + { + "siteRegistry": false, + "dateNoted": "2016-11-30", + "parcelID": "17860", + "crownLandUsePIN": "18051", + "crownLandFileNumber": "15806", + "landDescription": "LOT 3 OF LOT 2 BLOCK 2 DISTRICT LOT 4 PLAN 7683" }, { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-07-13 (described on Site Profile dated 2021-07-13)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "siteRegistry": false, + "dateNoted": "2021-07-10", + "parcelID": "18471", + "crownLandUsePIN": "20440", + "crownLandFileNumber": "19914", + "landDescription": "LOT 1 OF LOT 1 BLOCK 1 DISTRICT LOT 3 PLAN 8118" }, { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-11-19 (described on Site Profile dated 2019-11-19)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "siteRegistry": false, + "dateNoted": "2019-07-07", + "parcelID": "18424", + "crownLandUsePIN": "15689", + "crownLandFileNumber": "15800", + "landDescription": "LOT 2 OF LOT 3 BLOCK 3 DISTRICT LOT 2 PLAN 8482" + }, + { + "siteRegistry": false, + "dateNoted": "2017-08-03", + "parcelID": "17842", + "crownLandUsePIN": "17760", + "crownLandFileNumber": "20946", + "landDescription": "LOT 1 OF LOT 2 BLOCK 2 DISTRICT LOT 1 PLAN 4080" } ], "siteDisclosures": [ { - "siteRegistry": false, - "dateReceived": "2016-07-04", - "dateCompleted": "2015-10-15", - "dateEntered": "2019-08-28", - "dateRegistrar": "2022-11-14", - "dateLocalAuthorityReceived": "2013-10-20", - "summary": "Quo asperiores quia quas perspiciatis consequatur repudiandae id ratione iste.", - "informationUsed": "Architecto quod molestiae exercitationem delectus assumenda.\nAmet occaecati voluptatum laborum porro possimus eum temporibus rem.\nPraesentium fuga dicta quos porro eligendi quibusdam sequi et magnam.\nTempora rerum voluptate voluptatem.", - "pastOrPresentOrders": "Officiis velit mollitia ad ut quam.\nFugit facilis quam inventore pariatur.\nSapiente qui blanditiis doloremque maxime accusantium quam dolorum sapiente.", + "siteRegistry": true, + "dateReceived": "2019-10-16", + "dateCompleted": "2015-10-16", + "dateEntered": "2022-06-18", + "dateRegistrar": "2020-02-26", + "dateLocalAuthorityReceived": "2021-08-23", + "summary": "At eligendi fuga a officia ipsum dolore molestiae ducimus est.\nSaepe quisquam voluptatum molestias nobis consequuntur in voluptatem fuga.\nEum ut veniam.", + "informationUsed": "Consectetur mollitia debitis animi corporis.\nNostrum natus saepe quas impedit debitis quidem.\nSunt architecto ipsam minima similique.\nMollitia cumque facilis.", + "pastOrPresentOrders": "Harum voluptatum culpa.", "commercialAndIndustrialPurposes": [ { "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false - }, - { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false - }, - { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false + "siteRegistry": true }, { "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false - } - ] - }, - { - "siteRegistry": true, - "dateReceived": "2015-09-19", - "dateCompleted": "2017-04-20", - "dateEntered": "2019-08-08", - "dateRegistrar": "2016-03-25", - "dateLocalAuthorityReceived": "2020-03-19", - "summary": "Provident vel perferendis vero voluptates repellat eum.\nAliquam cum dignissimos qui quam odio.\nNeque quaerat commodi.", - "informationUsed": "Eligendi laboriosam ducimus.\nMollitia aut dolores odio deserunt amet possimus.\nDucimus voluptas quibusdam a soluta eveniet quam odio harum.\nPariatur corrupti repellat ut odio animi sed aliquam dolores expedita.\nNisi minus ab pariatur corrupti cumque fuga excepturi.", - "pastOrPresentOrders": "Ea ab nisi laboriosam.", - "commercialAndIndustrialPurposes": [ - { - "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false - }, - { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true - }, - { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true - }, - { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true } ] } @@ -36485,101 +40693,82 @@ { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "BOTSFORD JAROD", - "timestamp": "2020-01-31" - }, - { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "LANGWORTH DANYKA", - "timestamp": "2019-04-09" - }, - { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "WALSH KEYSHAWN", - "timestamp": "2013-12-24" + "user": "KUVALIS KALLIE", + "timestamp": "2015-09-13" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "TURCOTTE BERTA", - "timestamp": "2015-02-17" + "user": "LABADIE ALAYNA", + "timestamp": "2023-04-19" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "SMITHAM LOYCE", - "timestamp": "2016-01-08" + "user": "DANIEL NORBERTO", + "timestamp": "2017-05-02" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "HUELS TOMMIE", - "timestamp": "2017-07-10" + "user": "HAUCK RANDALL", + "timestamp": "2023-01-15" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "HALVORSON EMILIO", - "timestamp": "2016-05-17" + "user": "HERMAN GENOVEVA", + "timestamp": "2016-10-26" }, { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "VOLKMAN JERMEY", - "timestamp": "2020-11-24" + "user": "MOEN EZEQUIEL", + "timestamp": "2021-03-02" } ], "associatedSites": [ { - "dateNoted": "2015-11-03", + "dateNoted": "2016-08-03", "notes": "", - "parcelID": "16715", - "siteID": "18999", + "parcelID": "19788", + "siteID": "20833", "siteRegistry": true }, { - "dateNoted": "2020-04-25", - "notes": "", - "parcelID": "17832", - "siteID": "17078", - "siteRegistry": false - }, - { - "dateNoted": "2016-07-04", + "dateNoted": "2014-05-19", "notes": "", - "parcelID": "19930", - "siteID": "18160", - "siteRegistry": false + "parcelID": "20272", + "siteID": "18134", + "siteRegistry": true } ] }, { - "uuid": "9141cf14-d604-4ad2-8142-0902ab730861", - "siteID": 16586, - "address": "30405 Streich Crossing", - "latitude": 56.3679, - "longitude": -135.5891, - "lastUpdated": "2014-11-04", - "city": "Kubfurt", - "region": "Vancouver Island/Coast", - "victoriaFile": "26250-20/1377", + "uuid": "f1e69548-c901-41f5-aa5d-f4d2fba3979a", + "siteID": 17707, + "address": "9340 Xzavier Path", + "latitude": 58.4957, + "longitude": -129.829, + "lastUpdated": "2015-01-31", + "city": "Tillmanboro", + "region": " North Coast", + "victoriaFile": "26250-20/2852", "regionalFile": "N/A", "parcelIDs": [ - 1711272, - 2542075, - 9895040, - 9729451, - 9952560 + 5461663, + 5104111, + 4777997, + 7716148, + 7473807 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2018-01-15", - "completed": "2016-09-23", - "initiated": "2019-05-26", - "ministryContact": "ROBEL-KERTZMANN LUCIE", + "createdAt": "2022-04-18", + "completed": "2019-01-27", + "initiated": "2021-02-13", + "ministryContact": "PAUCEK WILLIE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -36590,61 +40779,26 @@ { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - } - ], - "siteRegistry": true - }, - { - "createdAt": "2018-10-30", - "completed": "2015-06-08", - "initiated": "2023-04-20", - "ministryContact": "MANN BERNARDO", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", "siteRegistry": false }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, { "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2016-01-24", - "completed": "2020-10-18", - "initiated": "2019-12-21", - "ministryContact": "HEATHCOTE MARLENE", + "createdAt": "2015-01-30", + "completed": "2017-10-17", + "initiated": "2021-06-30", + "ministryContact": "WISOZK JIMMY", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -36653,28 +40807,33 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false } ], "siteRegistry": false }, { - "createdAt": "2016-12-01", - "completed": "2021-09-13", - "initiated": "2015-03-06", - "ministryContact": "JOHNS MONA", + "createdAt": "2014-09-08", + "completed": "2015-03-15", + "initiated": "2017-10-13", + "ministryContact": "HEANEY WILBERT", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -36683,20 +40842,10 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", @@ -36706,10 +40855,10 @@ "siteRegistry": false }, { - "createdAt": "2020-05-07", - "completed": "2020-03-31", - "initiated": "2018-01-17", - "ministryContact": "FARRELL-CASPER HILBERT", + "createdAt": "2016-03-15", + "completed": "2013-11-03", + "initiated": "2019-07-14", + "ministryContact": "PADBERG KAYDEN", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -36724,23 +40873,13 @@ }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true } ], "siteRegistry": false @@ -36748,19 +40887,19 @@ ], "participants": [ { - "name": "AMET, DOLOR SIT", - "endDate": "2018-03-18", - "startDate": "2020-06-16", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2015-12-04", + "startDate": "2022-06-28", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2014-10-21", - "startDate": "2023-03-21", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2016-03-11", + "startDate": "2017-10-24", "notes": "", "roles": [ "EMPLOYEE" @@ -36771,50 +40910,78 @@ "suspectLandUses": [ { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-01-14 (described on Site Profile dated 2014-01-14)", + "notes": "INSERTED FOR SITE PROFILE DATED 2018-05-20 (described on Site Profile dated 2018-05-20)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-05-11 (described on Site Profile dated 2015-05-11)", + "notes": "INSERTED FOR SITE PROFILE DATED 2023-05-13 (described on Site Profile dated 2023-05-13)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2023-05-28 (described on Site Profile dated 2023-05-28)", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2021-10-09 (described on Site Profile dated 2021-10-09)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-09-11 (described on Site Profile dated 2017-09-11)", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2016-10-15 (described on Site Profile dated 2016-10-15)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2016-12-21 (described on Site Profile dated 2016-12-21)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + } + ], + "parcelDescriptions": [ { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-07-28 (described on Site Profile dated 2015-07-28)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "dateNoted": "2015-06-01", + "parcelID": "19476", + "crownLandUsePIN": "20731", + "crownLandFileNumber": "16389", + "landDescription": "LOT 3 OF LOT 3 BLOCK 1 DISTRICT LOT 2 PLAN 9132" + }, + { + "siteRegistry": false, + "dateNoted": "2023-09-16", + "parcelID": "18282", + "crownLandUsePIN": "19910", + "crownLandFileNumber": "20975", + "landDescription": "LOT 2 OF LOT 3 BLOCK 3 DISTRICT LOT 5 PLAN 3413" } ], "siteDisclosures": [ { - "siteRegistry": true, - "dateReceived": "2022-03-23", - "dateCompleted": "2020-11-16", - "dateEntered": "2015-03-16", - "dateRegistrar": "2018-03-24", - "dateLocalAuthorityReceived": "2023-03-16", - "summary": "Molestias distinctio voluptates modi modi repudiandae eligendi.\nVelit quos distinctio beatae ipsam explicabo.", - "informationUsed": "Consequatur quam debitis vel corporis officia nam tempore.\nVoluptates tenetur quo corporis explicabo nulla.\nQuidem pariatur illum autem numquam iste molestiae rem autem vero.\nVoluptatem eaque facilis commodi rem aut sequi facilis.", - "pastOrPresentOrders": "Maiores repellat laboriosam voluptate itaque magni consequatur.\nAspernatur voluptatum assumenda quibusdam ipsum.", + "siteRegistry": false, + "dateReceived": "2022-11-07", + "dateCompleted": "2023-01-02", + "dateEntered": "2017-08-25", + "dateRegistrar": "2022-12-11", + "dateLocalAuthorityReceived": "2023-01-03", + "summary": "Voluptatem asperiores voluptatem ut eos sed modi eveniet ipsum suscipit.\nCorrupti voluptatibus vitae explicabo quibusdam animi magni maiores.", + "informationUsed": "Velit cumque sed illo nihil et aliquam voluptatum alias illum.\nBlanditiis nesciunt asperiores ullam aut.\nSoluta hic repudiandae necessitatibus repudiandae quam reiciendis quod repudiandae.\nSunt corrupti saepe pariatur.", + "pastOrPresentOrders": "Accusamus eos aut accusantium distinctio quam autem quidem.\nFacere ad accusamus veritatis maiores consequuntur impedit necessitatibus.", "commercialAndIndustrialPurposes": [ { - "scheduleReference": "F1*", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false }, { "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true } ] @@ -36822,108 +40989,109 @@ ], "activityLog": [ { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "COLE ZACKARY", - "timestamp": "2014-11-16" + "user": "BROWN SAIGE", + "timestamp": "2015-02-07" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "BERGE AHMAD", - "timestamp": "2021-05-30" - }, - { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "DONNELLY GENERAL", - "timestamp": "2018-12-20" + "user": "WALTER CHELSIE", + "timestamp": "2016-04-07" }, { - "siteRegistry": true, + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "WINDLER RANSOM", - "timestamp": "2017-04-30" + "user": "KIHN VINCENZO", + "timestamp": "2019-05-20" }, { - "siteRegistry": true, + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "DICKINSON CONCEPCION", - "timestamp": "2021-02-13" + "user": "ZBONCAK JO", + "timestamp": "2014-12-14" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "PFEFFER VIRGINIE", - "timestamp": "2016-03-12" + "user": "WIZA THOMAS", + "timestamp": "2018-10-25" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "HAGENES AMERICO", - "timestamp": "2014-05-18" + "user": "HAMILL DANYKA", + "timestamp": "2014-11-13" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "FEENEY MODESTO", - "timestamp": "2023-08-26" + "user": "RUECKER CLAY", + "timestamp": "2019-04-03" }, { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "JERDE-WINTHEISER MARK", - "timestamp": "2017-05-02" + "user": "FARRELL OFELIA", + "timestamp": "2019-06-15" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "KEEBLER CORNELL", - "timestamp": "2017-10-15" + "user": "MCCULLOUGH MICHEL", + "timestamp": "2021-05-30" } ], "associatedSites": [ { - "dateNoted": "2019-11-19", + "dateNoted": "2016-04-21", "notes": "", - "parcelID": "15635", - "siteID": "19899", + "parcelID": "19355", + "siteID": "18727", "siteRegistry": false }, { - "dateNoted": "2017-09-27", + "dateNoted": "2014-01-25", + "notes": "", + "parcelID": "19389", + "siteID": "16933", + "siteRegistry": true + }, + { + "dateNoted": "2014-04-08", "notes": "", - "parcelID": "20777", - "siteID": "17862", + "parcelID": "20458", + "siteID": "18587", "siteRegistry": false } ] }, { - "uuid": "3b2a879c-8594-48a9-bac8-47b3a11de1d9", - "siteID": 18736, - "address": "79890 Gene Ridge", - "latitude": 51.9406, - "longitude": -138.0059, - "lastUpdated": "2023-06-22", - "city": "Steuberside", - "region": "Kootenay", - "victoriaFile": "26250-20/17312", + "uuid": "b656aa88-d890-4a18-be82-9ac35961f689", + "siteID": 18225, + "address": "4910 Wehner Rest", + "latitude": 52.4639, + "longitude": -118.4923, + "lastUpdated": "2019-02-18", + "city": "East Laurenmouth", + "region": "Mainland/Southwest", + "victoriaFile": "26250-20/6671", "regionalFile": "N/A", "parcelIDs": [ - 9560098, - 9031154, - 5459776, - 5363865, - 292974 + 3040999, + 1798385, + 6534508, + 1646194, + 7152392 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2021-09-02", - "completed": "2014-12-15", - "initiated": "2018-05-03", - "ministryContact": "WAELCHI FILOMENA", + "createdAt": "2022-09-07", + "completed": "2014-04-02", + "initiated": "2021-06-15", + "ministryContact": "FAY MOSE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -36932,33 +41100,88 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true - }, + } + ], + "siteRegistry": true + }, + { + "createdAt": "2015-12-19", + "completed": "2019-07-14", + "initiated": "2014-06-11", + "ministryContact": "HETTINGER-KUTCH BURLEY", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "createdAt": "2023-01-28", + "completed": "2016-03-10", + "initiated": "2021-05-01", + "ministryContact": "MCKENZIE ABBEY", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false } ], "siteRegistry": false }, { - "createdAt": "2013-11-14", - "completed": "2014-02-14", - "initiated": "2016-10-24", - "ministryContact": "METZ ZOLA", + "createdAt": "2023-08-09", + "completed": "2020-02-02", + "initiated": "2018-08-10", + "ministryContact": "VOLKMAN MAX", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -36967,14 +41190,19 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false } ], "siteRegistry": false @@ -36983,8 +41211,8 @@ "participants": [ { "name": "AMET, DOLOR SIT", - "endDate": "2015-10-16", - "startDate": "2014-01-03", + "endDate": "2014-06-02", + "startDate": "2022-09-10", "notes": "", "roles": [ "EMPLOYEE" @@ -36993,28 +41221,28 @@ }, { "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2018-12-11", - "startDate": "2016-07-12", + "endDate": "2021-10-27", + "startDate": "2018-07-03", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false }, { - "name": "IPSUM", - "endDate": "2016-04-02", - "startDate": "2022-04-26", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2018-05-14", + "startDate": "2015-03-18", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": true + "siteRegistry": false }, { - "name": "AMET, DOLOR SIT", - "endDate": "2022-12-21", - "startDate": "2023-02-01", + "name": "IPSUM", + "endDate": "2020-05-27", + "startDate": "2022-03-15", "notes": "", "roles": [ "EMPLOYEE" @@ -37025,46 +41253,88 @@ "suspectLandUses": [ { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-03-10 (described on Site Profile dated 2021-03-10)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "notes": "INSERTED FOR SITE PROFILE DATED 2014-04-18 (described on Site Profile dated 2014-04-18)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2021-07-16 (described on Site Profile dated 2021-07-16)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-03-20 (described on Site Profile dated 2021-03-20)", + "notes": "INSERTED FOR SITE PROFILE DATED 2018-03-29 (described on Site Profile dated 2018-03-29)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2014-09-16 (described on Site Profile dated 2014-09-16)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], - "siteDisclosures": [ + "parcelDescriptions": [ { "siteRegistry": true, - "dateReceived": "2019-03-19", - "dateCompleted": "2017-09-06", - "dateEntered": "2022-12-02", - "dateRegistrar": "2014-12-03", - "dateLocalAuthorityReceived": "2014-01-05", - "summary": "Quas modi voluptatum consectetur perspiciatis consequuntur quo.\nFuga praesentium alias libero eaque quasi totam tempore deleniti repudiandae.\nEx rerum impedit tempora commodi.", - "informationUsed": "Quod nihil officiis sed tempore.\nMollitia repellendus accusantium officia consectetur dolorum.\nQuasi tempore sapiente voluptas ut error nulla maxime nam repellat.\nQuaerat officiis molestiae expedita asperiores blanditiis consectetur asperiores laudantium.\nCumque maxime at odio sint perferendis corrupti.", - "pastOrPresentOrders": "Cupiditate maiores nemo labore aliquam.\nRepellendus ducimus impedit occaecati vel nulla.\nMollitia debitis suscipit voluptatibus eum mollitia in nulla voluptas impedit.", + "dateNoted": "2016-01-10", + "parcelID": "16004", + "crownLandUsePIN": "17666", + "crownLandFileNumber": "17583", + "landDescription": "LOT 3 OF LOT 3 BLOCK 2 DISTRICT LOT 5 PLAN 3449" + }, + { + "siteRegistry": true, + "dateNoted": "2021-09-21", + "parcelID": "16801", + "crownLandUsePIN": "18620", + "crownLandFileNumber": "15873", + "landDescription": "LOT 5 OF LOT 5 BLOCK 1 DISTRICT LOT 3 PLAN 7248" + }, + { + "siteRegistry": false, + "dateNoted": "2019-11-09", + "parcelID": "15598", + "crownLandUsePIN": "15419", + "crownLandFileNumber": "17213", + "landDescription": "LOT 3 OF LOT 1 BLOCK 4 DISTRICT LOT 1 PLAN 6756" + }, + { + "siteRegistry": false, + "dateNoted": "2014-06-28", + "parcelID": "20475", + "crownLandUsePIN": "19563", + "crownLandFileNumber": "15375", + "landDescription": "LOT 5 OF LOT 5 BLOCK 1 DISTRICT LOT 5 PLAN 8314" + }, + { + "siteRegistry": true, + "dateNoted": "2013-11-01", + "parcelID": "15480", + "crownLandUsePIN": "19975", + "crownLandFileNumber": "20177", + "landDescription": "LOT 5 OF LOT 1 BLOCK 1 DISTRICT LOT 3 PLAN 6167" + } + ], + "siteDisclosures": [ + { + "siteRegistry": false, + "dateReceived": "2014-01-02", + "dateCompleted": "2017-12-29", + "dateEntered": "2019-10-05", + "dateRegistrar": "2023-02-19", + "dateLocalAuthorityReceived": "2017-09-25", + "summary": "Quisquam voluptates natus voluptatibus voluptate.\nVoluptate beatae odio sit saepe illo unde sapiente.\nImpedit reiciendis facere cum dolorem.", + "informationUsed": "Ipsam ratione debitis.\nAdipisci sit laboriosam omnis sunt temporibus quasi quisquam.\nTemporibus cumque error quos exercitationem alias ex optio.\nQui veniam iusto sint.", + "pastOrPresentOrders": "Inventore occaecati quidem pariatur.", "commercialAndIndustrialPurposes": [ - { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false - }, - { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true - }, { "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true }, { "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false + "siteRegistry": true } ] } @@ -37073,94 +41343,83 @@ { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "CARROLL ADELL", - "timestamp": "2014-08-28" - }, - { - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "HOMENICK BRAXTON", - "timestamp": "2016-03-21" - }, - { - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "HAYES-SKILES MARIAH", - "timestamp": "2017-01-12" + "user": "KLEIN KAELYN", + "timestamp": "2020-06-16" }, { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "DIETRICH NEOMA", - "timestamp": "2021-01-24" + "user": "SCHNEIDER LYNN", + "timestamp": "2015-11-17" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "DICKI JAQUELINE", - "timestamp": "2014-02-18" + "user": "JOHNS LORENZA", + "timestamp": "2021-06-03" }, { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "MCKENZIE OSVALDO", - "timestamp": "2021-07-03" + "user": "HODKIEWICZ FREEMAN", + "timestamp": "2016-03-17" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "RENNER ZETTA", - "timestamp": "2016-04-12" - }, - { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "BROWN-HELLER KRISTOPHER", - "timestamp": "2019-10-31" + "user": "KLING FERNANDO", + "timestamp": "2022-06-08" } ], "associatedSites": [ { - "dateNoted": "2018-06-18", + "dateNoted": "2016-06-08", "notes": "", - "parcelID": "18295", - "siteID": "17249", + "parcelID": "17456", + "siteID": "19583", "siteRegistry": true }, { - "dateNoted": "2017-12-23", + "dateNoted": "2020-07-30", + "notes": "", + "parcelID": "17522", + "siteID": "17386", + "siteRegistry": false + }, + { + "dateNoted": "2021-07-29", "notes": "", - "parcelID": "20372", - "siteID": "18849", + "parcelID": "16280", + "siteID": "16938", "siteRegistry": false } ] }, { - "uuid": "40879964-4062-4745-8ef5-fdbb79a703f3", - "siteID": 20872, - "address": "86306 Levi Meadows", - "latitude": 58.9347, - "longitude": -136.6179, - "lastUpdated": "2016-04-05", - "city": "Marjoryton", + "uuid": "e33d0502-290d-4db7-8d5f-d3197578cce4", + "siteID": 15630, + "address": "66764 Myles Mews", + "latitude": 57.1531, + "longitude": -118.8848, + "lastUpdated": "2015-09-06", + "city": "Fort Orin", "region": "Kootenay", - "victoriaFile": "26250-20/832", + "victoriaFile": "26250-20/7912", "regionalFile": "N/A", "parcelIDs": [ - 2539463, - 4538943, - 6310393, - 1119517, - 2351271 + 7525329, + 4445740, + 8998721, + 392401, + 8853485 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2021-10-19", - "completed": "2023-10-10", - "initiated": "2021-10-15", - "ministryContact": "ROLFSON GILBERTO", + "createdAt": "2018-10-02", + "completed": "2017-05-08", + "initiated": "2021-08-10", + "ministryContact": "CORMIER ELIAN", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -37174,34 +41433,14 @@ "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": false - } - ], - "siteRegistry": false - }, - { - "createdAt": "2016-09-05", - "completed": "2018-10-14", - "initiated": "2014-02-05", - "ministryContact": "BOEHM BONITA", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", @@ -37212,10 +41451,10 @@ "siteRegistry": true }, { - "createdAt": "2016-09-24", - "completed": "2017-06-03", - "initiated": "2019-03-21", - "ministryContact": "MCDERMOTT-NITZSCHE NELLE", + "createdAt": "2022-05-02", + "completed": "2013-11-27", + "initiated": "2014-08-25", + "ministryContact": "KUTCH WENDY", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -37224,87 +41463,167 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true } ], "participants": [ { - "name": "AMET, DOLOR SIT", - "endDate": "2015-03-03", - "startDate": "2022-05-02", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2016-10-05", + "startDate": "2016-06-17", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": true }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2016-05-21", + "startDate": "2015-05-22", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, { "name": "SHELL CANADA PRODUCTS", - "endDate": "2021-10-17", - "startDate": "2017-10-24", + "endDate": "2023-05-25", + "startDate": "2019-04-16", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2015-01-02", + "startDate": "2023-04-11", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false }, { "name": "IPSUM", - "endDate": "2015-05-05", - "startDate": "2020-08-14", + "endDate": "2018-08-01", + "startDate": "2021-12-03", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false } ], "suspectLandUses": [ { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-02-24 (described on Site Profile dated 2015-02-24)", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2018-03-31 (described on Site Profile dated 2018-03-31)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-05-12 (described on Site Profile dated 2021-05-12)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "notes": "INSERTED FOR SITE PROFILE DATED 2016-06-03 (described on Site Profile dated 2016-06-03)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2019-01-13 (described on Site Profile dated 2019-01-13)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], - "siteDisclosures": [ + "parcelDescriptions": [ + { + "siteRegistry": false, + "dateNoted": "2022-10-09", + "parcelID": "17832", + "crownLandUsePIN": "18115", + "crownLandFileNumber": "20864", + "landDescription": "LOT 1 OF LOT 1 BLOCK 5 DISTRICT LOT 2 PLAN 3741" + }, + { + "siteRegistry": true, + "dateNoted": "2021-07-08", + "parcelID": "17256", + "crownLandUsePIN": "16412", + "crownLandFileNumber": "18210", + "landDescription": "LOT 5 OF LOT 2 BLOCK 1 DISTRICT LOT 1 PLAN 9430" + }, + { + "siteRegistry": false, + "dateNoted": "2020-07-01", + "parcelID": "19078", + "crownLandUsePIN": "20636", + "crownLandFileNumber": "18359", + "landDescription": "LOT 2 OF LOT 3 BLOCK 2 DISTRICT LOT 1 PLAN 3300" + }, { "siteRegistry": true, - "dateReceived": "2015-10-11", - "dateCompleted": "2014-05-22", - "dateEntered": "2013-11-24", - "dateRegistrar": "2018-09-10", - "dateLocalAuthorityReceived": "2019-12-28", - "summary": "Rem doloremque labore soluta.", - "informationUsed": "Id facere officiis.\nSequi beatae cupiditate dicta ipsam suscipit inventore.\nOfficiis error ipsum expedita nesciunt delectus.\nNulla libero hic veritatis nihil beatae ab soluta.\nNobis nemo magni tempora repellat assumenda.", - "pastOrPresentOrders": "Praesentium sapiente inventore aliquid.\nIpsum consequatur iste repudiandae repellendus adipisci tempore deserunt quibusdam veritatis.", + "dateNoted": "2020-12-04", + "parcelID": "19357", + "crownLandUsePIN": "18220", + "crownLandFileNumber": "18344", + "landDescription": "LOT 3 OF LOT 4 BLOCK 4 DISTRICT LOT 1 PLAN 4138" + }, + { + "siteRegistry": false, + "dateNoted": "2017-12-01", + "parcelID": "20580", + "crownLandUsePIN": "16977", + "crownLandFileNumber": "20670", + "landDescription": "LOT 3 OF LOT 5 BLOCK 2 DISTRICT LOT 4 PLAN 4629" + } + ], + "siteDisclosures": [ + { + "siteRegistry": false, + "dateReceived": "2020-12-16", + "dateCompleted": "2023-03-05", + "dateEntered": "2023-03-13", + "dateRegistrar": "2016-02-13", + "dateLocalAuthorityReceived": "2019-04-16", + "summary": "Sunt temporibus quia.\nDolorum magni voluptas.", + "informationUsed": "Quaerat animi tenetur necessitatibus quisquam reprehenderit.\nFacilis alias repellendus quas deserunt.\nSit delectus sapiente quam animi minima.\nNon voluptatibus beatae vel sint assumenda.", + "pastOrPresentOrders": "Voluptatum accusantium laboriosam saepe doloremque molestiae.\nLaborum hic ad ut saepe illum dolores.\nAutem quasi ut sequi magni pariatur quas necessitatibus quidem minus.", "commercialAndIndustrialPurposes": [ { - "scheduleReference": "F2*", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false + "siteRegistry": true }, { - "scheduleReference": "F1*", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + } + ] + }, + { + "siteRegistry": false, + "dateReceived": "2014-03-07", + "dateCompleted": "2014-08-11", + "dateEntered": "2017-01-19", + "dateRegistrar": "2018-04-08", + "dateLocalAuthorityReceived": "2022-11-06", + "summary": "Aliquam repellat temporibus corrupti architecto harum.\nLaboriosam quasi quae quos.", + "informationUsed": "Minus vero accusamus accusantium perferendis.\nRepudiandae vel eaque ad blanditiis itaque blanditiis placeat ducimus.\nFugiat saepe deleniti quam natus sint reiciendis iure asperiores nisi.", + "pastOrPresentOrders": "Velit pariatur animi officia possimus doloribus.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, @@ -37312,96 +41631,101 @@ "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false } ] } ], "activityLog": [ { - "siteRegistry": true, + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "LUETTGEN ALIA", - "timestamp": "2016-01-30" + "user": "SWIFT MIKE", + "timestamp": "2022-01-03" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "MACEJKOVIC MCKENZIE", - "timestamp": "2014-04-24" + "user": "ABBOTT MAUREEN", + "timestamp": "2018-12-01" }, { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "REICHERT EVANS", - "timestamp": "2020-03-03" + "user": "AUFDERHAR SYBLE", + "timestamp": "2017-09-08" }, { - "siteRegistry": true, + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "WEBER MYAH", - "timestamp": "2023-07-08" + "user": "BRADTKE ANTONIA", + "timestamp": "2017-11-12" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "AUER SERENITY", - "timestamp": "2016-12-19" + "user": "JENKINS ASHLYNN", + "timestamp": "2017-09-06" }, { - "siteRegistry": true, + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "HEGMANN LORENA", - "timestamp": "2021-12-01" + "user": "BOEHM ANGELITA", + "timestamp": "2020-06-16" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "MCCULLOUGH RASHAD", - "timestamp": "2019-06-15" + "user": "CARTWRIGHT SAM", + "timestamp": "2023-05-21" } ], "associatedSites": [ { - "dateNoted": "2017-05-29", + "dateNoted": "2020-02-27", "notes": "", - "parcelID": "17792", - "siteID": "18201", - "siteRegistry": true + "parcelID": "15977", + "siteID": "18687", + "siteRegistry": false }, { - "dateNoted": "2014-02-20", + "dateNoted": "2014-07-05", "notes": "", - "parcelID": "16240", - "siteID": "19157", - "siteRegistry": false + "parcelID": "16988", + "siteID": "20992", + "siteRegistry": true } ] }, { - "uuid": "b95a8e36-0f6b-4587-89f2-74c930521f6c", - "siteID": 20382, - "address": "9654 Waters Vista", - "latitude": 48.5145, - "longitude": -125.5945, - "lastUpdated": "2020-10-03", - "city": "Rathview", - "region": "Cariboo", - "victoriaFile": "26250-20/8927", + "uuid": "8f8f2138-3ed1-49fb-b6e4-91d16052a3c5", + "siteID": 17116, + "address": "627 Purdy Curve", + "latitude": 54.0088, + "longitude": -126.3354, + "lastUpdated": "2014-08-20", + "city": "New Wyatt", + "region": "Vancouver Island/Coast", + "victoriaFile": "26250-20/17401", "regionalFile": "N/A", "parcelIDs": [ - 3324796, - 5920642, - 8018812, - 7402877, - 139944 + 8869052, + 5425519, + 1525069, + 7669404, + 6075700 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2019-07-19", - "completed": "2021-06-07", - "initiated": "2018-05-24", - "ministryContact": "O'REILLY EMIE", + "createdAt": "2022-10-11", + "completed": "2020-04-12", + "initiated": "2018-08-09", + "ministryContact": "YUNDT DEANGELO", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -37410,33 +41734,33 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2022-12-09", - "completed": "2022-05-01", - "initiated": "2023-02-13", - "ministryContact": "KUTCH FREDERIQUE", + "createdAt": "2017-05-02", + "completed": "2021-07-04", + "initiated": "2014-02-26", + "ministryContact": "HEIDENREICH LESSIE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -37449,128 +41773,185 @@ "role": "SUBMITTED BY", "siteRegistry": true }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true } ], "participants": [ { - "name": "IPSUM", - "endDate": "2015-10-01", - "startDate": "2022-07-07", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": true - }, - { - "name": "IPSUM", - "endDate": "2021-04-16", - "startDate": "2017-01-06", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2016-12-27", + "startDate": "2013-10-26", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false }, { - "name": "AMET, DOLOR SIT", - "endDate": "2014-02-19", - "startDate": "2020-02-06", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2018-12-19", + "startDate": "2017-01-13", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": false + "siteRegistry": true }, { "name": "IPSUM", - "endDate": "2018-10-18", - "startDate": "2020-01-13", + "endDate": "2021-08-07", + "startDate": "2019-11-11", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": true } ], "suspectLandUses": [ + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2015-01-04 (described on Site Profile dated 2015-01-04)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2015-02-03 (described on Site Profile dated 2015-02-03)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2023-09-10 (described on Site Profile dated 2023-09-10)", + "notes": "INSERTED FOR SITE PROFILE DATED 2020-01-14 (described on Site Profile dated 2020-01-14)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2015-09-06 (described on Site Profile dated 2015-09-06)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-12-09 (described on Site Profile dated 2019-12-09)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "notes": "INSERTED FOR SITE PROFILE DATED 2014-12-21 (described on Site Profile dated 2014-12-21)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], - "siteDisclosures": [ + "parcelDescriptions": [ + { + "siteRegistry": true, + "dateNoted": "2020-09-18", + "parcelID": "20020", + "crownLandUsePIN": "19675", + "crownLandFileNumber": "15525", + "landDescription": "LOT 2 OF LOT 5 BLOCK 4 DISTRICT LOT 5 PLAN 9020" + }, + { + "siteRegistry": true, + "dateNoted": "2018-08-02", + "parcelID": "15873", + "crownLandUsePIN": "19065", + "crownLandFileNumber": "18439", + "landDescription": "LOT 4 OF LOT 3 BLOCK 2 DISTRICT LOT 4 PLAN 5600" + }, + { + "siteRegistry": true, + "dateNoted": "2022-03-06", + "parcelID": "17055", + "crownLandUsePIN": "20750", + "crownLandFileNumber": "20005", + "landDescription": "LOT 2 OF LOT 1 BLOCK 5 DISTRICT LOT 1 PLAN 9589" + }, { "siteRegistry": true, - "dateReceived": "2016-12-02", - "dateCompleted": "2018-10-02", - "dateEntered": "2016-05-26", - "dateRegistrar": "2018-06-07", - "dateLocalAuthorityReceived": "2016-05-16", - "summary": "Eveniet alias praesentium alias totam quibusdam corporis corrupti quia illum.\nUllam eius labore nemo omnis earum.\nEos consequatur molestias.", - "informationUsed": "Beatae beatae dolorum velit eum voluptas ea possimus atque ab.\nNulla quis itaque a voluptas.\nError saepe fugiat corporis voluptas aliquid amet id.", - "pastOrPresentOrders": "Alias maxime aliquid.", + "dateNoted": "2020-05-25", + "parcelID": "16068", + "crownLandUsePIN": "18496", + "crownLandFileNumber": "17099", + "landDescription": "LOT 2 OF LOT 1 BLOCK 2 DISTRICT LOT 5 PLAN 9429" + }, + { + "siteRegistry": false, + "dateNoted": "2013-11-23", + "parcelID": "19325", + "crownLandUsePIN": "15295", + "crownLandFileNumber": "17558", + "landDescription": "LOT 3 OF LOT 5 BLOCK 5 DISTRICT LOT 1 PLAN 6895" + } + ], + "siteDisclosures": [ + { + "siteRegistry": false, + "dateReceived": "2023-01-25", + "dateCompleted": "2014-12-22", + "dateEntered": "2020-10-26", + "dateRegistrar": "2021-09-19", + "dateLocalAuthorityReceived": "2017-10-08", + "summary": "Magnam officia doloribus nulla sed esse quo commodi.", + "informationUsed": "Tempora cum iure eveniet a quos.\nVero unde saepe fuga tempore magnam provident at.\nUnde veniam neque illum magni eos vel excepturi.\nEius blanditiis dolore sit nulla minus dolor libero.\nCupiditate quae nulla tenetur.", + "pastOrPresentOrders": "Sequi eum qui repudiandae corrupti optio.\nConsequatur quia saepe cumque eos nulla quidem minima.\nVoluptate quis impedit laboriosam assumenda.", "commercialAndIndustrialPurposes": [ { "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true - }, - { - "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true + "siteRegistry": false }, { "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false } ] }, { - "siteRegistry": false, - "dateReceived": "2019-02-20", - "dateCompleted": "2019-01-06", - "dateEntered": "2022-10-09", - "dateRegistrar": "2014-10-24", - "dateLocalAuthorityReceived": "2017-10-25", - "summary": "Odio assumenda quis deserunt harum quam officiis.\nQuos quo quo.", - "informationUsed": "Harum odit quod tempore accusantium similique pariatur repellendus.\nHic quisquam veniam eum reprehenderit architecto libero.\nOptio repellat est eaque qui excepturi.", - "pastOrPresentOrders": "Doloribus ab suscipit ducimus officiis nesciunt.\nFacilis atque debitis eligendi ad laboriosam eligendi architecto animi odit.\nFacere rem voluptatibus voluptatem blanditiis iste fugit.", + "siteRegistry": true, + "dateReceived": "2015-02-16", + "dateCompleted": "2020-02-01", + "dateEntered": "2023-01-09", + "dateRegistrar": "2015-06-09", + "dateLocalAuthorityReceived": "2014-11-11", + "summary": "Quisquam dolore recusandae inventore saepe voluptates.", + "informationUsed": "Dignissimos illum maxime enim iure perspiciatis provident.\nSapiente reprehenderit assumenda quidem eum recusandae dicta quia nobis.\nDeserunt voluptates sunt ipsam accusantium molestias facere sapiente.", + "pastOrPresentOrders": "Debitis adipisci porro deleniti veritatis.\nCupiditate quasi dolorem veritatis nobis culpa et natus placeat aliquid.\nConsequuntur vero magnam illo voluptates.", "commercialAndIndustrialPurposes": [ { - "scheduleReference": "F2*", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true + "siteRegistry": false }, { - "scheduleReference": "F2*", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true + "siteRegistry": false }, { "scheduleReference": "F2*", @@ -37584,83 +41965,81 @@ { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "HERZOG CLEMENS", - "timestamp": "2016-04-26" + "user": "ERDMAN JAMIR", + "timestamp": "2015-01-12" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "CONSIDINE SHEA", - "timestamp": "2021-02-19" + "user": "HAMMES STANTON", + "timestamp": "2015-09-15" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "AUFDERHAR CARRIE", - "timestamp": "2019-07-06" + "user": "SMITH SEAN", + "timestamp": "2019-03-23" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "WILL MERTIE", + "timestamp": "2023-05-21" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "SCHULTZ KATELYN", + "timestamp": "2019-04-28" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "LYNCH WARREN", - "timestamp": "2018-01-15" + "user": "WILLIAMSON SKYLA", + "timestamp": "2019-08-27" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "BLICK ELDA", - "timestamp": "2016-04-23" + "user": "HAGENES HOLDEN", + "timestamp": "2016-02-08" } ], "associatedSites": [ { - "dateNoted": "2013-12-14", - "notes": "", - "parcelID": "20071", - "siteID": "15206", - "siteRegistry": false - }, - { - "dateNoted": "2021-02-23", - "notes": "", - "parcelID": "19009", - "siteID": "18919", - "siteRegistry": false - }, - { - "dateNoted": "2018-01-09", + "dateNoted": "2017-05-16", "notes": "", - "parcelID": "18400", - "siteID": "15752", + "parcelID": "19144", + "siteID": "15994", "siteRegistry": false } ] }, { - "uuid": "a8daa2e0-da67-4743-b2dd-124232dd671b", - "siteID": 19052, - "address": "129 Oberbrunner Burg", - "latitude": 54.7646, - "longitude": -133.7358, - "lastUpdated": "2014-07-17", - "city": "Mesquite", - "region": "Kootenay", - "victoriaFile": "26250-20/17516", + "uuid": "3d3ea79d-4894-419f-b3c9-c5989c6a7ec4", + "siteID": 20555, + "address": "17393 Lois Estate", + "latitude": 51.8321, + "longitude": -128.6502, + "lastUpdated": "2020-04-09", + "city": "Murrieta", + "region": "Cariboo", + "victoriaFile": "26250-20/5282", "regionalFile": "N/A", "parcelIDs": [ - 9806091, - 7566019, - 6028692, - 6095371, - 4918878 + 4738812, + 8694721, + 8596122, + 1238267, + 7450862 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2020-09-12", - "completed": "2017-02-24", - "initiated": "2018-09-09", - "ministryContact": "QUITZON ERICK", + "createdAt": "2023-01-04", + "completed": "2020-06-19", + "initiated": "2015-09-02", + "ministryContact": "KOHLER FRANKIE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -37670,12 +42049,12 @@ "notationParticipants": [ { "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true + "role": "REQUESTED BY", + "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false }, { @@ -37684,13 +42063,13 @@ "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2017-11-27", - "completed": "2018-08-22", - "initiated": "2019-03-11", - "ministryContact": "BOGAN SIGURD", + "createdAt": "2020-12-09", + "completed": "2020-08-29", + "initiated": "2021-02-17", + "ministryContact": "SKILES DON", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -37701,21 +42080,31 @@ { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true } ], "siteRegistry": false }, { - "createdAt": "2021-05-03", - "completed": "2019-08-16", - "initiated": "2014-12-03", - "ministryContact": "KEELING JEANNE", + "createdAt": "2014-03-07", + "completed": "2021-04-23", + "initiated": "2018-06-11", + "ministryContact": "NOLAN AISHA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -37729,39 +42118,54 @@ "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "createdAt": "2015-05-30", + "completed": "2016-06-15", + "initiated": "2020-02-05", + "ministryContact": "WINDLER LINWOOD", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true } ], "participants": [ - { - "name": "AMET, DOLOR SIT", - "endDate": "2019-06-14", - "startDate": "2014-11-26", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": false - }, - { - "name": "IPSUM", - "endDate": "2015-06-15", - "startDate": "2022-03-05", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": false - }, { "name": "SHELL CANADA PRODUCTS", - "endDate": "2017-12-20", - "startDate": "2021-06-22", + "endDate": "2017-02-18", + "startDate": "2018-09-18", "notes": "", "roles": [ "EMPLOYEE" @@ -37769,82 +42173,101 @@ "siteRegistry": true }, { - "name": "AMET, DOLOR SIT", - "endDate": "2023-05-07", - "startDate": "2020-01-29", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": false - }, - { - "name": "IPSUM", - "endDate": "2020-07-07", - "startDate": "2021-12-08", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2023-05-23", + "startDate": "2013-11-26", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true } ], "suspectLandUses": [ { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-04-15 (described on Site Profile dated 2015-04-15)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2021-03-12 (described on Site Profile dated 2021-03-12)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-10-30 (described on Site Profile dated 2021-10-30)", + "notes": "INSERTED FOR SITE PROFILE DATED 2018-01-15 (described on Site Profile dated 2018-01-15)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-01-30 (described on Site Profile dated 2018-01-30)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "notes": "INSERTED FOR SITE PROFILE DATED 2016-03-27 (described on Site Profile dated 2016-03-27)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2017-08-23 (described on Site Profile dated 2017-08-23)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2017-11-27 (described on Site Profile dated 2017-11-27)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], - "siteDisclosures": [ + "parcelDescriptions": [ { "siteRegistry": true, - "dateReceived": "2015-12-13", - "dateCompleted": "2014-10-21", - "dateEntered": "2020-12-19", - "dateRegistrar": "2015-06-16", - "dateLocalAuthorityReceived": "2016-05-18", - "summary": "Sunt provident ab accusantium iure saepe nesciunt.\nRecusandae voluptates nulla quae in.\nEos optio nobis.", - "informationUsed": "Enim sapiente ratione iusto impedit.\nFuga consectetur impedit necessitatibus itaque numquam quod.\nCorporis quis ut dolores amet.\nAccusantium beatae fugit.\nAsperiores enim libero facilis excepturi ratione deserunt.", - "pastOrPresentOrders": "Numquam temporibus consequatur illo nam at.\nFugiat distinctio nesciunt.\nAmet asperiores sapiente earum facere ratione reprehenderit.", - "commercialAndIndustrialPurposes": [ - { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false - }, - { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true - } - ] + "dateNoted": "2017-10-23", + "parcelID": "20785", + "crownLandUsePIN": "15764", + "crownLandFileNumber": "19042", + "landDescription": "LOT 5 OF LOT 1 BLOCK 2 DISTRICT LOT 1 PLAN 3343" + }, + { + "siteRegistry": false, + "dateNoted": "2016-05-25", + "parcelID": "19328", + "crownLandUsePIN": "20310", + "crownLandFileNumber": "19636", + "landDescription": "LOT 1 OF LOT 4 BLOCK 2 DISTRICT LOT 3 PLAN 6085" + }, + { + "siteRegistry": false, + "dateNoted": "2017-09-19", + "parcelID": "18634", + "crownLandUsePIN": "16119", + "crownLandFileNumber": "18339", + "landDescription": "LOT 3 OF LOT 4 BLOCK 1 DISTRICT LOT 2 PLAN 3355" }, { "siteRegistry": false, - "dateReceived": "2023-04-16", + "dateNoted": "2022-11-06", + "parcelID": "20737", + "crownLandUsePIN": "17757", + "crownLandFileNumber": "18524", + "landDescription": "LOT 4 OF LOT 4 BLOCK 1 DISTRICT LOT 2 PLAN 3023" + }, + { + "siteRegistry": true, + "dateNoted": "2023-04-13", + "parcelID": "20710", + "crownLandUsePIN": "16207", + "crownLandFileNumber": "15333", + "landDescription": "LOT 3 OF LOT 1 BLOCK 5 DISTRICT LOT 2 PLAN 4628" + } + ], + "siteDisclosures": [ + { + "siteRegistry": true, + "dateReceived": "2023-01-10", "dateCompleted": "2014-12-29", - "dateEntered": "2017-10-07", - "dateRegistrar": "2016-11-06", - "dateLocalAuthorityReceived": "2023-09-30", - "summary": "Incidunt quae deserunt magni.\nVoluptatum quibusdam commodi pariatur reiciendis dolore amet praesentium velit.\nSint perferendis consequatur eaque voluptas aliquam quidem magni.", - "informationUsed": "Nesciunt quasi vero.\nVitae debitis a.\nIllum illo non.\nEius tempore voluptatum sapiente assumenda harum officiis.\nVero ratione commodi dicta molestiae tenetur.", - "pastOrPresentOrders": "Quia voluptate officia ad laborum voluptatum laboriosam.\nDeleniti vitae corporis amet.", + "dateEntered": "2020-10-10", + "dateRegistrar": "2018-09-21", + "dateLocalAuthorityReceived": "2017-05-09", + "summary": "Ipsum mollitia odio aliquam tenetur libero ullam.", + "informationUsed": "Maxime odit asperiores laboriosam alias consequatur.\nAt velit alias ipsum sequi veritatis suscipit accusamus reprehenderit pariatur.\nLaudantium eaque reprehenderit hic in id ut vel consequuntur voluptatibus.\nPerspiciatis dicta nostrum similique itaque officiis aliquid voluptate earum.", + "pastOrPresentOrders": "Possimus consectetur molestiae tenetur est.", "commercialAndIndustrialPurposes": [ { "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false }, { "scheduleReference": "F2*", @@ -37852,7 +42275,7 @@ "siteRegistry": true }, { - "scheduleReference": "F1*", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false } @@ -37861,109 +42284,109 @@ ], "activityLog": [ { - "siteRegistry": true, + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "SHIELDS ZACHARIAH", - "timestamp": "2019-06-30" + "user": "TROMP MAGDALEN", + "timestamp": "2016-10-15" }, { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "HODKIEWICZ OTIS", - "timestamp": "2022-09-15" + "user": "BAUMBACH PAOLO", + "timestamp": "2017-08-07" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "KOVACEK CICERO", - "timestamp": "2019-02-12" + "user": "WISOKY EVALYN", + "timestamp": "2018-04-25" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "HETTINGER LAVERNE", - "timestamp": "2019-03-31" + "user": "OBERBRUNNER JEREMY", + "timestamp": "2020-05-25" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "BASHIRIAN SISTER", - "timestamp": "2022-07-07" + "user": "GREEN GOLDA", + "timestamp": "2017-10-22" }, { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "CREMIN CHRIS", - "timestamp": "2014-09-21" + "user": "BEDNAR EINO", + "timestamp": "2017-01-09" }, { - "siteRegistry": true, + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "O'REILLY JANAE", - "timestamp": "2014-02-21" + "user": "DUBUQUE ELMIRA", + "timestamp": "2021-07-28" }, { - "siteRegistry": true, + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "CONN ROLANDO", - "timestamp": "2013-10-25" + "user": "O'KEEFE WILSON", + "timestamp": "2014-01-03" }, { - "siteRegistry": true, + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "GLEASON TYSHAWN", - "timestamp": "2021-05-14" + "user": "LEDNER CAROLE", + "timestamp": "2022-01-07" } ], "associatedSites": [ { - "dateNoted": "2021-09-21", + "dateNoted": "2023-09-09", "notes": "", - "parcelID": "19776", - "siteID": "15574", + "parcelID": "18917", + "siteID": "18281", "siteRegistry": false }, { - "dateNoted": "2019-10-22", + "dateNoted": "2020-04-13", "notes": "", - "parcelID": "19975", - "siteID": "18067", + "parcelID": "19945", + "siteID": "19390", "siteRegistry": true }, { - "dateNoted": "2016-07-12", + "dateNoted": "2014-10-03", "notes": "", - "parcelID": "18238", - "siteID": "15276", + "parcelID": "15983", + "siteID": "16201", "siteRegistry": false } ] }, { - "uuid": "731b972c-69a2-4e91-889a-3bb837f3fda5", - "siteID": 16438, - "address": "2930 Rath Mountains", - "latitude": 58.7185, - "longitude": -138.3097, - "lastUpdated": "2022-06-29", - "city": "Logan", - "region": "Kootenay", - "victoriaFile": "26250-20/10423", + "uuid": "c1cf5db0-9aef-4edb-b7bf-437c599444ec", + "siteID": 16605, + "address": "866 Blanda Via", + "latitude": 52.1081, + "longitude": -132.6256, + "lastUpdated": "2020-08-21", + "city": "Salinas", + "region": "Cariboo", + "victoriaFile": "26250-20/13301", "regionalFile": "N/A", "parcelIDs": [ - 8799426, - 3926680, - 5583111, - 5102898, - 1104336 + 9284222, + 7284799, + 5492578, + 835916, + 5327430 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2014-09-17", - "completed": "2023-01-18", - "initiated": "2017-08-30", - "ministryContact": "BOYLE-RUTHERFORD KAELYN", + "createdAt": "2023-08-06", + "completed": "2023-05-23", + "initiated": "2019-10-05", + "ministryContact": "DIBBERT SETH", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -37973,27 +42396,22 @@ "notationParticipants": [ { "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2017-09-27", - "completed": "2018-06-20", - "initiated": "2022-06-18", - "ministryContact": "SHANAHAN JOSIANNE", + "createdAt": "2020-08-04", + "completed": "2023-01-05", + "initiated": "2022-11-21", + "ministryContact": "POUROS JUSTEN", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -38010,11 +42428,26 @@ "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false - }, + } + ], + "siteRegistry": true + }, + { + "createdAt": "2014-07-20", + "completed": "2021-12-24", + "initiated": "2017-08-03", + "ministryContact": "ROWE ANTOINETTE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true + "role": "SUBMITTED BY", + "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", @@ -38030,10 +42463,10 @@ "siteRegistry": false }, { - "createdAt": "2017-02-23", - "completed": "2016-10-02", - "initiated": "2019-02-15", - "ministryContact": "CHRISTIANSEN FRED", + "createdAt": "2018-09-16", + "completed": "2016-09-21", + "initiated": "2017-10-04", + "ministryContact": "KUNZE LOTTIE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -38042,23 +42475,28 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2019-12-28", - "completed": "2013-11-12", - "initiated": "2017-03-20", - "ministryContact": "RODRIGUEZ ANGELA", + "createdAt": "2014-03-03", + "completed": "2017-10-31", + "initiated": "2020-01-23", + "ministryContact": "KUNZE RODRICK", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -38068,18 +42506,23 @@ "notationParticipants": [ { "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true } ], "siteRegistry": false @@ -38087,29 +42530,19 @@ ], "participants": [ { - "name": "AMET, DOLOR SIT", - "endDate": "2015-02-09", - "startDate": "2016-08-07", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2020-04-24", + "startDate": "2016-06-16", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2013-10-15", - "startDate": "2013-11-21", - "notes": "", - "roles": [ - "ORGANIZATION" - ], "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2022-11-14", - "startDate": "2021-11-13", + "endDate": "2020-04-02", + "startDate": "2016-05-02", "notes": "", "roles": [ "ORGANIZATION" @@ -38117,64 +42550,85 @@ "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2014-06-21", - "startDate": "2015-03-10", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2018-10-05", + "startDate": "2016-09-05", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": true + "siteRegistry": false } ], "suspectLandUses": [ { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-11-08 (described on Site Profile dated 2021-11-08)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" - }, - { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-04-06 (described on Site Profile dated 2017-04-06)", + "notes": "INSERTED FOR SITE PROFILE DATED 2016-03-19 (described on Site Profile dated 2016-03-19)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-06-12 (described on Site Profile dated 2015-06-12)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "notes": "INSERTED FOR SITE PROFILE DATED 2021-11-19 (described on Site Profile dated 2021-11-19)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-12-05 (described on Site Profile dated 2018-12-05)", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2019-12-12 (described on Site Profile dated 2019-12-12)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + } + ], + "parcelDescriptions": [ + { + "siteRegistry": true, + "dateNoted": "2015-01-27", + "parcelID": "20001", + "crownLandUsePIN": "19222", + "crownLandFileNumber": "15311", + "landDescription": "LOT 5 OF LOT 2 BLOCK 3 DISTRICT LOT 5 PLAN 4067" }, { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-08-24 (described on Site Profile dated 2017-08-24)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "dateNoted": "2023-05-21", + "parcelID": "16965", + "crownLandUsePIN": "17967", + "crownLandFileNumber": "18088", + "landDescription": "LOT 3 OF LOT 2 BLOCK 1 DISTRICT LOT 2 PLAN 6081" + }, + { + "siteRegistry": true, + "dateNoted": "2015-05-24", + "parcelID": "18010", + "crownLandUsePIN": "16549", + "crownLandFileNumber": "19091", + "landDescription": "LOT 5 OF LOT 1 BLOCK 4 DISTRICT LOT 4 PLAN 7390" } ], "siteDisclosures": [ { "siteRegistry": false, - "dateReceived": "2021-02-22", - "dateCompleted": "2019-08-10", - "dateEntered": "2019-08-28", - "dateRegistrar": "2023-06-17", - "dateLocalAuthorityReceived": "2013-11-20", - "summary": "Mollitia sapiente esse laudantium minima nulla blanditiis voluptates.", - "informationUsed": "Qui velit nobis ea quis.\nTotam dolorem fuga labore incidunt recusandae.\nInventore facilis illo commodi unde ab magnam impedit.", - "pastOrPresentOrders": "Molestias sunt culpa minus similique error quasi voluptate.\nAccusantium error nesciunt adipisci.\nAut repudiandae ratione ratione omnis.", + "dateReceived": "2015-01-14", + "dateCompleted": "2021-12-23", + "dateEntered": "2021-09-21", + "dateRegistrar": "2013-12-22", + "dateLocalAuthorityReceived": "2021-09-04", + "summary": "At quidem laboriosam iusto eum porro voluptates adipisci veritatis.\nIure error atque beatae facilis perspiciatis quis voluptates fugiat.", + "informationUsed": "Occaecati iusto esse amet alias optio porro numquam.\nNemo neque fuga nemo consequatur.\nVoluptate sunt inventore nam.\nRem reiciendis eaque quos debitis ipsum quam quo aspernatur.", + "pastOrPresentOrders": "Autem ea enim dicta quae commodi molestias.\nRepellendus odit aliquam consequatur suscipit.\nSit adipisci eius atque totam ab a modi harum.", "commercialAndIndustrialPurposes": [ { - "scheduleReference": "F1*", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, { - "scheduleReference": "F2*", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true + "siteRegistry": false + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false } ] } @@ -38183,69 +42637,101 @@ { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "TERRY TELLY", - "timestamp": "2018-09-05" + "user": "BOYER AISHA", + "timestamp": "2019-04-24" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "WITTING MANLEY", - "timestamp": "2022-04-27" + "user": "KSHLERIN CRISTOBAL", + "timestamp": "2021-08-25" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "WEIMANN ARNO", - "timestamp": "2016-07-09" + "user": "DICKI TORREY", + "timestamp": "2013-10-23" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "OLSON SAMSON", - "timestamp": "2023-06-03" + "user": "LUBOWITZ JACK", + "timestamp": "2018-04-08" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "MULLER RUDY", - "timestamp": "2022-08-29" + "user": "LOCKMAN TORREY", + "timestamp": "2019-10-06" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "RUNOLFSSON HUBERT", + "timestamp": "2018-02-19" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "SANFORD-FRIESEN TRISHA", + "timestamp": "2018-10-27" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "FLATLEY-RODRIGUEZ EULA", + "timestamp": "2023-03-28" } ], "associatedSites": [ { - "dateNoted": "2019-04-28", + "dateNoted": "2021-09-21", "notes": "", - "parcelID": "19210", - "siteID": "15954", + "parcelID": "16161", + "siteID": "18040", "siteRegistry": false + }, + { + "dateNoted": "2022-07-02", + "notes": "", + "parcelID": "20884", + "siteID": "16285", + "siteRegistry": true + }, + { + "dateNoted": "2019-10-20", + "notes": "", + "parcelID": "16208", + "siteID": "15827", + "siteRegistry": true } ] }, { - "uuid": "7eff5706-284f-4d89-8ac5-d6e6a5523599", - "siteID": 17527, - "address": "552 Manley Tunnel", - "latitude": 51.2637, - "longitude": -123.4948, - "lastUpdated": "2016-04-20", - "city": "Larsoncester", - "region": "Mainland/Southwest", - "victoriaFile": "26250-20/17689", + "uuid": "af3a2520-dad6-4dcf-bb59-504dc894cba9", + "siteID": 19847, + "address": "49190 Baumbach Pine", + "latitude": 49.1699, + "longitude": -130.7942, + "lastUpdated": "2021-09-18", + "city": "Larkinshire", + "region": " North Coast", + "victoriaFile": "26250-20/18625", "regionalFile": "N/A", "parcelIDs": [ - 2253672, - 4519309, - 1993558, - 4821060, - 8091314 + 8481045, + 3066642, + 5138660, + 1054338, + 4628503 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2018-06-03", - "completed": "2014-06-01", - "initiated": "2014-03-12", - "ministryContact": "BLOCK WILLY", + "createdAt": "2017-12-04", + "completed": "2018-01-13", + "initiated": "2020-09-08", + "ministryContact": "LIND KAELA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -38253,16 +42739,6 @@ "" ], "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", @@ -38270,22 +42746,22 @@ }, { "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": false } ], "siteRegistry": true }, { - "createdAt": "2022-10-16", - "completed": "2020-11-14", - "initiated": "2017-05-09", - "ministryContact": "MONAHAN JERRELL", + "createdAt": "2014-04-10", + "completed": "2023-10-02", + "initiated": "2021-04-24", + "ministryContact": "NADER BEULAH", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -38293,29 +42769,24 @@ "" ], "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2014-04-08", - "completed": "2017-03-04", - "initiated": "2016-05-09", - "ministryContact": "WIEGAND COLLIN", + "createdAt": "2022-06-05", + "completed": "2019-11-03", + "initiated": "2021-11-03", + "ministryContact": "WINTHEISER MURRAY", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -38329,23 +42800,28 @@ "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2022-12-26", - "completed": "2022-11-03", - "initiated": "2017-07-30", - "ministryContact": "GOLDNER ANTONETTA", + "createdAt": "2020-06-16", + "completed": "2017-11-06", + "initiated": "2015-06-05", + "ministryContact": "BECHTELAR DEMETRIUS", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -38355,16 +42831,11 @@ "notationParticipants": [ { "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true + "role": "SUBMITTED BY", + "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true }, @@ -38375,18 +42846,23 @@ }, { "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false } ], "participants": [ { - "name": "AMET, DOLOR SIT", - "endDate": "2014-09-13", - "startDate": "2020-11-07", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2023-05-01", + "startDate": "2021-01-11", "notes": "", "roles": [ "EMPLOYEE" @@ -38394,9 +42870,9 @@ "siteRegistry": false }, { - "name": "AMET, DOLOR SIT", - "endDate": "2014-08-06", - "startDate": "2022-11-14", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2018-04-30", + "startDate": "2014-03-29", "notes": "", "roles": [ "EMPLOYEE" @@ -38405,28 +42881,18 @@ }, { "name": "AMET, DOLOR SIT", - "endDate": "2014-02-22", - "startDate": "2017-11-20", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2022-08-29", - "startDate": "2018-11-09", + "endDate": "2021-05-31", + "startDate": "2021-09-24", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2022-01-21", - "startDate": "2017-09-18", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2017-05-23", + "startDate": "2015-06-24", "notes": "", "roles": [ "ORGANIZATION" @@ -38437,51 +42903,75 @@ "suspectLandUses": [ { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-11-03 (described on Site Profile dated 2018-11-03)", + "notes": "INSERTED FOR SITE PROFILE DATED 2020-06-14 (described on Site Profile dated 2020-06-14)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2016-08-01 (described on Site Profile dated 2016-08-01)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + } + ], + "parcelDescriptions": [ { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-09-21 (described on Site Profile dated 2018-09-21)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "dateNoted": "2019-12-07", + "parcelID": "16320", + "crownLandUsePIN": "18334", + "crownLandFileNumber": "17926", + "landDescription": "LOT 3 OF LOT 4 BLOCK 5 DISTRICT LOT 1 PLAN 7002" }, { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2013-11-11 (described on Site Profile dated 2013-11-11)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "dateNoted": "2022-01-27", + "parcelID": "17363", + "crownLandUsePIN": "20115", + "crownLandFileNumber": "17714", + "landDescription": "LOT 5 OF LOT 2 BLOCK 5 DISTRICT LOT 1 PLAN 5304" }, { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2013-12-16 (described on Site Profile dated 2013-12-16)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "dateNoted": "2020-11-10", + "parcelID": "15279", + "crownLandUsePIN": "19772", + "crownLandFileNumber": "18025", + "landDescription": "LOT 2 OF LOT 3 BLOCK 5 DISTRICT LOT 4 PLAN 6295" + }, + { + "siteRegistry": false, + "dateNoted": "2017-07-22", + "parcelID": "20154", + "crownLandUsePIN": "20540", + "crownLandFileNumber": "18413", + "landDescription": "LOT 4 OF LOT 5 BLOCK 4 DISTRICT LOT 4 PLAN 4667" } ], "siteDisclosures": [ { - "siteRegistry": true, - "dateReceived": "2017-06-10", - "dateCompleted": "2021-09-03", - "dateEntered": "2014-08-21", - "dateRegistrar": "2016-11-13", - "dateLocalAuthorityReceived": "2015-11-27", - "summary": "Minima dolorem quo temporibus eligendi.\nDolore ad magnam aperiam nobis.", - "informationUsed": "Commodi corrupti necessitatibus fuga hic dolor atque sit hic ducimus.\nUnde quisquam ipsam excepturi.\nVoluptate reiciendis quisquam.\nMaiores minus laudantium asperiores expedita nesciunt saepe occaecati blanditiis enim.", - "pastOrPresentOrders": "Illo laborum odio asperiores cumque tenetur unde.", + "siteRegistry": false, + "dateReceived": "2016-11-29", + "dateCompleted": "2023-01-16", + "dateEntered": "2013-12-22", + "dateRegistrar": "2020-12-22", + "dateLocalAuthorityReceived": "2022-05-30", + "summary": "Earum voluptate explicabo quibusdam iusto dignissimos illo commodi eum.\nAperiam qui quasi in nostrum a reiciendis.\nConsequatur corporis vitae eos rerum excepturi necessitatibus placeat excepturi.", + "informationUsed": "Commodi beatae iusto similique veritatis in voluptatibus.\nCorrupti eligendi recusandae ut tempore animi enim odit.\nAb totam pariatur nulla.\nQuibusdam id nam culpa debitis dolore nisi voluptate quas.", + "pastOrPresentOrders": "At tenetur magnam iusto officiis occaecati corrupti beatae.", "commercialAndIndustrialPurposes": [ { - "scheduleReference": "F1*", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, { "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true }, { "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true + "siteRegistry": false } ] } @@ -38490,76 +42980,76 @@ { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "ZIEME BUD", - "timestamp": "2018-05-29" + "user": "ZBONCAK VERLIE", + "timestamp": "2022-10-30" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "JACOBI BELLE", - "timestamp": "2020-11-13" + "user": "FEIL BRANDO", + "timestamp": "2016-08-16" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "CROOKS LINDSEY", - "timestamp": "2016-02-15" + "user": "PARKER VINCE", + "timestamp": "2022-10-31" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "GULGOWSKI EASTER", - "timestamp": "2013-12-16" + "user": "MCGLYNN AUTUMN", + "timestamp": "2021-04-14" }, { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "O'REILLY FABIOLA", - "timestamp": "2018-04-03" + "user": "MCKENZIE ELENORA", + "timestamp": "2021-03-22" } ], "associatedSites": [ { - "dateNoted": "2018-05-12", + "dateNoted": "2023-03-27", "notes": "", - "parcelID": "16927", - "siteID": "17181", - "siteRegistry": true + "parcelID": "16245", + "siteID": "19051", + "siteRegistry": false }, { - "dateNoted": "2020-11-28", + "dateNoted": "2018-06-11", "notes": "", - "parcelID": "20793", - "siteID": "18494", - "siteRegistry": false + "parcelID": "16068", + "siteID": "18225", + "siteRegistry": true } ] }, { - "uuid": "4ac851cd-9886-4f6f-83f5-7efe9521aef0", - "siteID": 17294, - "address": "8761 Hessel Canyon", - "latitude": 53.5329, - "longitude": -127.6297, - "lastUpdated": "2014-09-07", - "city": "Monserrathaven", - "region": " North Coast", - "victoriaFile": "26250-20/10895", + "uuid": "17941bab-86a3-46fe-a151-e1bf578a5401", + "siteID": 18404, + "address": "44126 Dayton Rapids", + "latitude": 58.6677, + "longitude": -126.1635, + "lastUpdated": "2023-06-02", + "city": "Lake Sabrynafield", + "region": "Vancouver Island/Coast", + "victoriaFile": "26250-20/19352", "regionalFile": "N/A", "parcelIDs": [ - 8950200, - 9322363, - 341502, - 3992048, - 487122 + 6643694, + 7181032, + 1497344, + 7246267, + 545007 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2018-11-20", - "completed": "2019-10-02", - "initiated": "2016-11-21", - "ministryContact": "RAU ERIN", + "createdAt": "2013-11-10", + "completed": "2014-11-21", + "initiated": "2017-06-14", + "ministryContact": "BERGSTROM ADOLFO", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -38568,38 +43058,63 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "createdAt": "2015-01-22", + "completed": "2014-03-24", + "initiated": "2014-07-26", + "ministryContact": "BRAKUS KARELLE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2014-04-05", - "completed": "2022-01-12", - "initiated": "2016-07-03", - "ministryContact": "RUNOLFSSON LARISSA", + "createdAt": "2021-03-16", + "completed": "2016-05-23", + "initiated": "2020-05-28", + "ministryContact": "RUSSEL DOLLY", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -38609,11 +43124,6 @@ "notationParticipants": [ { "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true }, @@ -38623,23 +43133,23 @@ "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true + "role": "SUBMITTED BY", + "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2020-09-01", - "completed": "2015-03-19", - "initiated": "2021-01-08", - "ministryContact": "KUVALIS ANGELA", + "createdAt": "2014-01-21", + "completed": "2016-06-24", + "initiated": "2016-04-21", + "ministryContact": "SWIFT BART", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -38652,19 +43162,29 @@ "role": "SUBMITTED BY", "siteRegistry": true }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false } ], "siteRegistry": false }, { - "createdAt": "2015-06-12", - "completed": "2014-01-11", - "initiated": "2022-06-13", - "ministryContact": "O'REILLY BRENDEN", + "createdAt": "2016-05-24", + "completed": "2014-07-13", + "initiated": "2023-03-07", + "ministryContact": "DUBUQUE ALANA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -38678,17 +43198,17 @@ "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false } @@ -38697,10 +43217,40 @@ } ], "participants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2015-05-30", + "startDate": "2019-06-22", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2014-07-11", + "startDate": "2021-01-09", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2021-06-25", + "startDate": "2022-04-05", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, { "name": "AMET, DOLOR SIT", - "endDate": "2019-04-13", - "startDate": "2016-08-27", + "endDate": "2019-01-04", + "startDate": "2017-02-11", "notes": "", "roles": [ "EMPLOYEE" @@ -38708,9 +43258,9 @@ "siteRegistry": false }, { - "name": "IPSUM", - "endDate": "2021-04-16", - "startDate": "2017-03-17", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2015-07-13", + "startDate": "2018-11-24", "notes": "", "roles": [ "ORGANIZATION" @@ -38721,42 +43271,63 @@ "suspectLandUses": [ { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-11-28 (described on Site Profile dated 2019-11-28)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" - }, - { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2013-12-16 (described on Site Profile dated 2013-12-16)", + "notes": "INSERTED FOR SITE PROFILE DATED 2015-09-27 (described on Site Profile dated 2015-09-27)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-09-17 (described on Site Profile dated 2014-09-17)", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2014-04-10 (described on Site Profile dated 2014-04-10)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-05-08 (described on Site Profile dated 2018-05-08)", + "notes": "INSERTED FOR SITE PROFILE DATED 2022-10-01 (described on Site Profile dated 2022-10-01)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + } + ], + "parcelDescriptions": [ + { + "siteRegistry": true, + "dateNoted": "2017-08-04", + "parcelID": "18632", + "crownLandUsePIN": "18113", + "crownLandFileNumber": "18189", + "landDescription": "LOT 3 OF LOT 2 BLOCK 1 DISTRICT LOT 2 PLAN 6519" }, { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-11-10 (described on Site Profile dated 2016-11-10)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "dateNoted": "2020-03-01", + "parcelID": "18010", + "crownLandUsePIN": "17421", + "crownLandFileNumber": "20388", + "landDescription": "LOT 5 OF LOT 2 BLOCK 2 DISTRICT LOT 1 PLAN 9129" + }, + { + "siteRegistry": false, + "dateNoted": "2014-11-09", + "parcelID": "15260", + "crownLandUsePIN": "20981", + "crownLandFileNumber": "15473", + "landDescription": "LOT 3 OF LOT 4 BLOCK 2 DISTRICT LOT 3 PLAN 5134" } ], "siteDisclosures": [ { - "siteRegistry": false, - "dateReceived": "2014-01-06", - "dateCompleted": "2022-05-31", - "dateEntered": "2023-08-08", - "dateRegistrar": "2020-05-21", - "dateLocalAuthorityReceived": "2020-04-22", - "summary": "Facere enim laborum exercitationem.\nNostrum itaque soluta.\nVoluptatem unde voluptatum aperiam nihil.", - "informationUsed": "Voluptates eligendi magnam impedit debitis iste.\nPorro quisquam ipsa adipisci repudiandae corporis necessitatibus corrupti vitae recusandae.\nIure perspiciatis culpa quasi quo cum voluptatem occaecati.\nIusto tempora tenetur officia laborum magnam.\nNeque magni consectetur.", - "pastOrPresentOrders": "Iure blanditiis ipsum fuga.\nSimilique accusantium dolorum cumque nam mollitia incidunt accusamus.\nEos delectus aspernatur.", + "siteRegistry": true, + "dateReceived": "2018-03-05", + "dateCompleted": "2022-07-30", + "dateEntered": "2021-11-12", + "dateRegistrar": "2020-04-01", + "dateLocalAuthorityReceived": "2018-11-29", + "summary": "Mollitia illo hic magni ratione nostrum officia assumenda necessitatibus corporis.\nVeritatis maiores et similique.\nQui eveniet quia voluptas.", + "informationUsed": "Provident maiores minus explicabo vero libero deleniti nostrum occaecati maiores.\nEos iusto vitae est quod et voluptates debitis sequi.\nAliquam odio voluptas ab tempora.\nExcepturi harum voluptas neque.", + "pastOrPresentOrders": "Unde magni iste aliquam consectetur provident labore quod molestias.", "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, { "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", @@ -38764,17 +43335,35 @@ }, { "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, { "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + } + ] + }, + { + "siteRegistry": true, + "dateReceived": "2020-08-13", + "dateCompleted": "2016-04-03", + "dateEntered": "2014-05-09", + "dateRegistrar": "2022-11-18", + "dateLocalAuthorityReceived": "2017-01-17", + "summary": "Maiores distinctio quo.\nNostrum iste dicta iure maiores.", + "informationUsed": "Nobis ipsa minus.\nDignissimos voluptate aut.\nVoluptate unde accusamus fugiat recusandae ex veritatis sequi.\nSuscipit molestiae eveniet.\nNeque magnam nisi quae itaque.", + "pastOrPresentOrders": "Velit quidem quo quod repellendus id quos saepe.\nImpedit natus deserunt libero totam.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false } ] @@ -38784,89 +43373,82 @@ { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "SCHINNER ROSELLA", - "timestamp": "2017-06-19" + "user": "SANFORD AILEEN", + "timestamp": "2015-06-12" }, { - "siteRegistry": true, + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "WUNSCH DELPHIA", - "timestamp": "2021-11-05" + "user": "BERGSTROM EVERARDO", + "timestamp": "2019-12-21" }, { - "siteRegistry": true, + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "BECHTELAR PANSY", - "timestamp": "2016-09-20" + "user": "MUELLER KIEL", + "timestamp": "2022-11-25" }, { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "MEDHURST DEXTER", - "timestamp": "2023-01-10" + "user": "RITCHIE ANIKA", + "timestamp": "2015-08-14" }, { - "siteRegistry": true, + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "SIPES ULISES", - "timestamp": "2016-04-11" + "user": "HALEY LEXI", + "timestamp": "2021-09-16" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "HOPPE CLETUS", - "timestamp": "2017-03-05" + "user": "BORER LERA", + "timestamp": "2015-12-08" } ], "associatedSites": [ { - "dateNoted": "2019-03-19", - "notes": "", - "parcelID": "18026", - "siteID": "17155", - "siteRegistry": true - }, - { - "dateNoted": "2020-01-28", + "dateNoted": "2017-12-16", "notes": "", - "parcelID": "15290", - "siteID": "17118", - "siteRegistry": true + "parcelID": "17311", + "siteID": "20810", + "siteRegistry": false }, { - "dateNoted": "2018-09-03", + "dateNoted": "2023-02-15", "notes": "", - "parcelID": "19690", - "siteID": "16916", - "siteRegistry": true + "parcelID": "18805", + "siteID": "19253", + "siteRegistry": false } ] }, { - "uuid": "f44add4d-281e-419e-bab1-d91ea8d65e89", - "siteID": 18110, - "address": "7104 Runolfsdottir Wall", - "latitude": 51.6247, - "longitude": -133.4989, - "lastUpdated": "2022-01-12", - "city": "East Furman", - "region": "Mainland/Southwest", - "victoriaFile": "26250-20/10736", + "uuid": "dd202eab-de38-449e-9175-e5ce6ce07a0d", + "siteID": 18787, + "address": "47274 Prohaska Station", + "latitude": 58.6767, + "longitude": -123.6176, + "lastUpdated": "2019-08-12", + "city": "McLean", + "region": "Kootenay", + "victoriaFile": "26250-20/13946", "regionalFile": "N/A", "parcelIDs": [ - 9318280, - 3840559, - 7756680, - 4570893, - 8151765 + 2196235, + 5920056, + 1880252, + 272467, + 8155859 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2016-01-15", - "completed": "2016-05-06", - "initiated": "2015-07-12", - "ministryContact": "ORN DARYL", + "createdAt": "2021-06-10", + "completed": "2020-11-17", + "initiated": "2019-09-07", + "ministryContact": "GIBSON VERONICA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -38874,29 +43456,24 @@ "" ], "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2013-12-31", - "completed": "2018-08-24", - "initiated": "2014-12-10", - "ministryContact": "FRANEY DEXTER", + "createdAt": "2020-02-23", + "completed": "2016-03-21", + "initiated": "2017-05-11", + "ministryContact": "FEENEY JAYCEE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -38905,79 +43482,44 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false - } - ], - "siteRegistry": false - }, - { - "createdAt": "2019-11-14", - "completed": "2015-05-12", - "initiated": "2023-06-04", - "ministryContact": "RUNOLFSSON DESTINEE", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ + }, { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true } ], "siteRegistry": false } ], "participants": [ - { - "name": "AMET, DOLOR SIT", - "endDate": "2016-06-29", - "startDate": "2022-12-26", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": false - }, { "name": "SHELL CANADA PRODUCTS", - "endDate": "2018-06-16", - "startDate": "2019-12-29", + "endDate": "2022-07-27", + "startDate": "2021-10-24", "notes": "", "roles": [ "ORGANIZATION" ], "siteRegistry": false }, - { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2016-11-22", - "startDate": "2022-03-30", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": true - }, { "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2016-12-09", - "startDate": "2015-06-23", + "endDate": "2020-02-06", + "startDate": "2022-09-15", "notes": "", "roles": [ "ORGANIZATION" @@ -38987,84 +43529,93 @@ ], "suspectLandUses": [ { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-11-25 (described on Site Profile dated 2019-11-25)", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2017-02-23 (described on Site Profile dated 2017-02-23)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-02-16 (described on Site Profile dated 2021-02-16)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "notes": "INSERTED FOR SITE PROFILE DATED 2014-11-02 (described on Site Profile dated 2014-11-02)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-12-21 (described on Site Profile dated 2017-12-21)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "notes": "INSERTED FOR SITE PROFILE DATED 2021-02-02 (described on Site Profile dated 2021-02-02)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-01-03 (described on Site Profile dated 2017-01-03)", + "notes": "INSERTED FOR SITE PROFILE DATED 2019-05-25 (described on Site Profile dated 2019-05-25)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + } + ], + "parcelDescriptions": [ + { + "siteRegistry": true, + "dateNoted": "2014-10-29", + "parcelID": "18091", + "crownLandUsePIN": "20451", + "crownLandFileNumber": "20808", + "landDescription": "LOT 3 OF LOT 5 BLOCK 5 DISTRICT LOT 5 PLAN 9143" }, { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-04-05 (described on Site Profile dated 2015-04-05)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "dateNoted": "2017-12-14", + "parcelID": "18565", + "crownLandUsePIN": "19714", + "crownLandFileNumber": "16071", + "landDescription": "LOT 1 OF LOT 4 BLOCK 2 DISTRICT LOT 1 PLAN 8037" + }, + { + "siteRegistry": true, + "dateNoted": "2023-07-31", + "parcelID": "18357", + "crownLandUsePIN": "20036", + "crownLandFileNumber": "18190", + "landDescription": "LOT 2 OF LOT 1 BLOCK 1 DISTRICT LOT 4 PLAN 4908" + }, + { + "siteRegistry": true, + "dateNoted": "2019-05-29", + "parcelID": "15731", + "crownLandUsePIN": "16117", + "crownLandFileNumber": "18238", + "landDescription": "LOT 5 OF LOT 3 BLOCK 3 DISTRICT LOT 1 PLAN 9162" + }, + { + "siteRegistry": false, + "dateNoted": "2018-08-04", + "parcelID": "15505", + "crownLandUsePIN": "17969", + "crownLandFileNumber": "20934", + "landDescription": "LOT 4 OF LOT 5 BLOCK 1 DISTRICT LOT 3 PLAN 4715" } ], "siteDisclosures": [ { "siteRegistry": false, - "dateReceived": "2020-06-16", - "dateCompleted": "2017-05-13", - "dateEntered": "2017-07-08", - "dateRegistrar": "2019-05-21", - "dateLocalAuthorityReceived": "2016-07-01", - "summary": "Esse aspernatur maxime maiores pariatur magnam voluptates nisi.", - "informationUsed": "Modi facilis commodi iusto.\nSequi ex atque eius a ducimus pariatur.\nTempore quo minus eius aut tempora debitis sed suscipit repellendus.\nAdipisci veniam quae impedit consequuntur eos doloribus maxime deleniti.", - "pastOrPresentOrders": "Laudantium fugit veritatis.", + "dateReceived": "2013-10-24", + "dateCompleted": "2016-10-16", + "dateEntered": "2017-11-27", + "dateRegistrar": "2018-03-07", + "dateLocalAuthorityReceived": "2017-09-15", + "summary": "Ipsam a aliquid quia assumenda inventore rerum.\nReiciendis necessitatibus quisquam in sint.\nVitae dolore fugiat ad.", + "informationUsed": "Quasi ullam alias accusamus modi beatae voluptatum delectus.\nMaiores sequi a.\nTotam ipsum recusandae veritatis nemo ut alias.\nAspernatur numquam nobis omnis molestiae nisi iure accusantium quidem distinctio.", + "pastOrPresentOrders": "Fuga fugit dolor laudantium eos magnam.\nConsectetur hic iusto placeat maiores fuga animi voluptates ex magnam.\nOptio qui exercitationem nostrum cupiditate.", "commercialAndIndustrialPurposes": [ { "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true - }, - { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, { "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false - } - ] - }, - { - "siteRegistry": true, - "dateReceived": "2021-10-27", - "dateCompleted": "2021-05-05", - "dateEntered": "2021-05-23", - "dateRegistrar": "2015-09-23", - "dateLocalAuthorityReceived": "2022-06-07", - "summary": "Tempora nesciunt rerum distinctio repudiandae excepturi id nemo maiores totam.\nMaiores vel quidem.\nSuscipit explicabo rem natus.", - "informationUsed": "Aut placeat animi eligendi reiciendis error dicta fugiat.\nVeniam voluptate dignissimos.\nOdio unde necessitatibus cum corporis.", - "pastOrPresentOrders": "Porro eveniet saepe recusandae sapiente hic dolores.\nMaiores facilis earum tempora rerum eius beatae illum pariatur.", - "commercialAndIndustrialPurposes": [ - { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false }, { "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false - }, - { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false } ] @@ -39074,75 +43625,83 @@ { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "CUMMERATA BRIANA", - "timestamp": "2020-07-02" - }, - { - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "PARISIAN ELSE", - "timestamp": "2019-09-20" + "user": "NITZSCHE MONIQUE", + "timestamp": "2018-05-03" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "MUELLER BART", - "timestamp": "2019-11-18" + "user": "LAKIN JOSE", + "timestamp": "2020-04-02" }, { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "KSHLERIN MANLEY", - "timestamp": "2020-05-17" + "user": "SCHULTZ JOLIE", + "timestamp": "2016-05-14" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "GOODWIN FRIEDRICH", - "timestamp": "2017-02-18" + "user": "PARKER HARMONY", + "timestamp": "2022-07-27" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "BEDNAR-PURDY GREGORY", - "timestamp": "2019-05-11" + "user": "HILPERT ARVILLA", + "timestamp": "2021-06-29" } ], "associatedSites": [ { - "dateNoted": "2023-03-01", + "dateNoted": "2019-06-16", "notes": "", - "parcelID": "20950", - "siteID": "18884", + "parcelID": "16845", + "siteID": "15493", + "siteRegistry": true + }, + { + "dateNoted": "2014-04-06", + "notes": "", + "parcelID": "18408", + "siteID": "16605", + "siteRegistry": true + }, + { + "dateNoted": "2023-09-20", + "notes": "", + "parcelID": "17324", + "siteID": "17483", "siteRegistry": false } ] }, { - "uuid": "d6ca1abb-017f-4778-aa6f-6a3ad0d0d77c", - "siteID": 16220, - "address": "878 Kutch Burg", - "latitude": 51.2968, - "longitude": -138.4448, - "lastUpdated": "2023-01-09", - "city": "Shoreline", - "region": "Cariboo", - "victoriaFile": "26250-20/14951", + "uuid": "b37e3e27-a01f-4a1d-ba80-188d34978f24", + "siteID": 19365, + "address": "529 Rogelio Mountain", + "latitude": 50.7788, + "longitude": -133.1751, + "lastUpdated": "2016-02-21", + "city": "South Simonechester", + "region": " North Coast", + "victoriaFile": "26250-20/5361", "regionalFile": "N/A", "parcelIDs": [ - 7236292, - 8237226, - 1869458, - 9217611, - 7031380 + 6132631, + 5238159, + 7816904, + 6919870, + 5615759 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2014-02-13", - "completed": "2023-03-31", - "initiated": "2023-02-15", - "ministryContact": "BODE-STROSIN KIEL", + "createdAt": "2021-12-24", + "completed": "2021-06-29", + "initiated": "2014-04-04", + "ministryContact": "HAMMES JERRY", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -39151,53 +43710,38 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false - } - ], - "siteRegistry": false - }, - { - "createdAt": "2016-04-13", - "completed": "2015-06-08", - "initiated": "2019-08-01", - "ministryContact": "KUPHAL ELIJAH", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ + "siteRegistry": true + }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2014-10-25", - "completed": "2017-11-05", - "initiated": "2019-01-02", - "ministryContact": "SANFORD LEXIE", + "createdAt": "2020-07-16", + "completed": "2021-03-25", + "initiated": "2015-08-13", + "ministryContact": "PFANNERSTILL GENESIS", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -39206,10 +43750,15 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", @@ -39222,17 +43771,17 @@ }, { "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true } ], "siteRegistry": false }, { - "createdAt": "2015-09-07", - "completed": "2022-01-16", - "initiated": "2023-03-16", - "ministryContact": "GUSIKOWSKI SYDNIE", + "createdAt": "2021-02-21", + "completed": "2023-01-07", + "initiated": "2019-06-16", + "ministryContact": "BEAHAN STEPHON", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -39242,12 +43791,27 @@ "notationParticipants": [ { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": true } ], @@ -39257,99 +43821,102 @@ "participants": [ { "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2015-05-03", - "startDate": "2015-09-29", + "endDate": "2019-04-15", + "startDate": "2016-05-02", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": true + "siteRegistry": false }, { "name": "IPSUM", - "endDate": "2022-03-08", - "startDate": "2021-11-17", + "endDate": "2015-05-20", + "startDate": "2018-07-01", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": false + "siteRegistry": true }, { - "name": "AMET, DOLOR SIT", - "endDate": "2014-11-20", - "startDate": "2021-07-02", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2016-06-17", + "startDate": "2019-08-09", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true } ], "suspectLandUses": [ { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-05-01 (described on Site Profile dated 2014-05-01)", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2019-11-29 (described on Site Profile dated 2019-11-29)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-08-23 (described on Site Profile dated 2021-08-23)", + "notes": "INSERTED FOR SITE PROFILE DATED 2018-08-07 (described on Site Profile dated 2018-08-07)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + } + ], + "parcelDescriptions": [ + { + "siteRegistry": true, + "dateNoted": "2019-06-22", + "parcelID": "15278", + "crownLandUsePIN": "17709", + "crownLandFileNumber": "15262", + "landDescription": "LOT 2 OF LOT 4 BLOCK 5 DISTRICT LOT 1 PLAN 7927" }, { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2013-11-17 (described on Site Profile dated 2013-11-17)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "dateNoted": "2019-01-17", + "parcelID": "16071", + "crownLandUsePIN": "17832", + "crownLandFileNumber": "18843", + "landDescription": "LOT 5 OF LOT 3 BLOCK 3 DISTRICT LOT 5 PLAN 6249" }, { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-05-03 (described on Site Profile dated 2018-05-03)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "siteRegistry": false, + "dateNoted": "2014-03-06", + "parcelID": "20953", + "crownLandUsePIN": "20070", + "crownLandFileNumber": "17026", + "landDescription": "LOT 4 OF LOT 1 BLOCK 4 DISTRICT LOT 2 PLAN 8779" } ], "siteDisclosures": [ { - "siteRegistry": false, - "dateReceived": "2022-02-08", - "dateCompleted": "2019-06-04", - "dateEntered": "2022-11-26", - "dateRegistrar": "2017-10-27", - "dateLocalAuthorityReceived": "2021-05-04", - "summary": "Quos quibusdam ipsa beatae quae sed recusandae modi.\nAliquid nostrum accusantium minus accusamus alias.", - "informationUsed": "Nobis nisi dolorum mollitia quod eius veniam.\nFugiat labore natus.\nDeserunt ullam eveniet.", - "pastOrPresentOrders": "Ducimus voluptatibus incidunt minima laudantium.\nLaborum accusamus officia excepturi nemo.\nOfficia quod facilis aliquam earum aut magnam.", + "siteRegistry": true, + "dateReceived": "2020-07-11", + "dateCompleted": "2015-05-05", + "dateEntered": "2015-09-08", + "dateRegistrar": "2021-06-17", + "dateLocalAuthorityReceived": "2015-01-26", + "summary": "Animi ad reiciendis consequuntur voluptas alias delectus.\nIste dolorem ullam culpa ut dicta fugit.", + "informationUsed": "Necessitatibus sint dolor ex magnam et.\nIllo sequi magni asperiores dolore fugiat.\nQuidem voluptas dolores.", + "pastOrPresentOrders": "Neque ipsam cumque.", "commercialAndIndustrialPurposes": [ { - "scheduleReference": "F1*", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { - "scheduleReference": "F2*", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false - } - ] - }, - { - "siteRegistry": false, - "dateReceived": "2014-11-27", - "dateCompleted": "2020-06-19", - "dateEntered": "2023-09-16", - "dateRegistrar": "2016-08-11", - "dateLocalAuthorityReceived": "2017-11-08", - "summary": "Laudantium mollitia ut libero illo nulla.\nExpedita distinctio sapiente aliquid exercitationem quos.\nBlanditiis architecto ex.", - "informationUsed": "Similique enim architecto aliquam.\nMagnam cupiditate explicabo quis.\nQuisquam perspiciatis laudantium sint distinctio exercitationem temporibus magnam molestias dolore.", - "pastOrPresentOrders": "Quaerat perspiciatis sapiente.", - "commercialAndIndustrialPurposes": [ + }, { - "scheduleReference": "F2*", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { - "scheduleReference": "F2*", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true } @@ -39360,95 +43927,83 @@ { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "CORMIER JESSIE", - "timestamp": "2020-05-30" - }, - { - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "MULLER ADA", - "timestamp": "2018-08-14" + "user": "SCHMITT HELLEN", + "timestamp": "2014-02-05" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "TOWNE KAVON", - "timestamp": "2018-08-08" - }, - { - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "ROMAGUERA VADA", - "timestamp": "2020-01-16" + "user": "O'CONNELL RAPHAELLE", + "timestamp": "2022-10-08" }, { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "PROHASKA RAEGAN", - "timestamp": "2018-10-21" + "user": "ALTENWERTH MAGDALENA", + "timestamp": "2021-09-09" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "JERDE ALISON", - "timestamp": "2020-08-14" + "user": "STARK MINA", + "timestamp": "2017-07-11" }, { - "siteRegistry": true, + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "STANTON NASH", - "timestamp": "2022-05-17" + "user": "COLLINS-STIEDEMANN MAXIMUS", + "timestamp": "2014-03-14" } ], "associatedSites": [ { - "dateNoted": "2020-12-16", + "dateNoted": "2015-08-13", "notes": "", - "parcelID": "17095", - "siteID": "20571", - "siteRegistry": false + "parcelID": "19294", + "siteID": "20045", + "siteRegistry": true }, { - "dateNoted": "2018-11-16", + "dateNoted": "2017-02-06", "notes": "", - "parcelID": "17904", - "siteID": "19587", + "parcelID": "20649", + "siteID": "17116", "siteRegistry": true }, { - "dateNoted": "2020-08-06", + "dateNoted": "2022-03-19", "notes": "", - "parcelID": "18119", - "siteID": "18840", + "parcelID": "17713", + "siteID": "19267", "siteRegistry": false } ] }, { - "uuid": "38d823c4-41a1-43f0-ae88-4006128ade0c", - "siteID": 16296, - "address": "514 Berge Overpass", - "latitude": 52.8652, - "longitude": -123.4114, - "lastUpdated": "2014-05-10", - "city": "Gastonchester", - "region": "Cariboo", - "victoriaFile": "26250-20/6306", + "uuid": "38481872-a467-441f-8dd8-4ab6a1feaa89", + "siteID": 18770, + "address": "56649 Mertz Common", + "latitude": 54.3569, + "longitude": -122.3275, + "lastUpdated": "2021-02-14", + "city": "Greenholtland", + "region": "Vancouver Island/Coast", + "victoriaFile": "26250-20/9603", "regionalFile": "N/A", "parcelIDs": [ - 1086071, - 9120497, - 8438378, - 832396, - 1867518 + 4959200, + 1405614, + 5842134, + 2825755, + 966970 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2023-01-16", - "completed": "2014-05-19", - "initiated": "2023-09-16", - "ministryContact": "HARBER-PURDY ALEXANDRA", + "createdAt": "2017-08-03", + "completed": "2017-04-13", + "initiated": "2016-08-28", + "ministryContact": "WILKINSON ROGER", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -39459,7 +44014,7 @@ { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", @@ -39469,10 +44024,15 @@ { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true } @@ -39480,10 +44040,10 @@ "siteRegistry": true }, { - "createdAt": "2021-08-25", - "completed": "2020-10-15", - "initiated": "2020-11-12", - "ministryContact": "MARVIN SAVANNAH", + "createdAt": "2020-08-02", + "completed": "2018-06-14", + "initiated": "2014-04-20", + "ministryContact": "ALTENWERTH JULIE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -39492,19 +44052,24 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", @@ -39512,13 +44077,13 @@ "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2021-01-06", - "completed": "2021-12-31", - "initiated": "2023-06-01", - "ministryContact": "VOLKMAN TOMMIE", + "createdAt": "2020-11-19", + "completed": "2014-12-05", + "initiated": "2017-12-29", + "ministryContact": "MORISSETTE MURRAY", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -39528,6 +44093,31 @@ "notationParticipants": [ { "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "createdAt": "2020-01-17", + "completed": "2019-09-06", + "initiated": "2022-07-16", + "ministryContact": "KOELPIN RHEA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true }, @@ -39537,14 +44127,39 @@ "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true + }, + { + "createdAt": "2023-03-03", + "completed": "2020-10-24", + "initiated": "2014-08-14", + "ministryContact": "SAWAYN ABDUL", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true } ], "participants": [ { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2014-06-12", - "startDate": "2019-06-15", + "name": "IPSUM", + "endDate": "2022-12-02", + "startDate": "2015-07-30", "notes": "", "roles": [ "EMPLOYEE" @@ -39552,78 +44167,81 @@ "siteRegistry": false }, { - "name": "AMET, DOLOR SIT", - "endDate": "2014-11-11", - "startDate": "2023-08-01", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2019-12-17", + "startDate": "2023-04-14", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], - "siteRegistry": true + "siteRegistry": false } ], "suspectLandUses": [ { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-04-05 (described on Site Profile dated 2014-04-05)", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2017-04-21 (described on Site Profile dated 2017-04-21)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2021-01-31 (described on Site Profile dated 2021-01-31)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-02-02 (described on Site Profile dated 2016-02-02)", + "notes": "INSERTED FOR SITE PROFILE DATED 2015-11-30 (described on Site Profile dated 2015-11-30)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2020-01-15 (described on Site Profile dated 2020-01-15)", + "notes": "INSERTED FOR SITE PROFILE DATED 2019-05-06 (described on Site Profile dated 2019-05-06)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + } + ], + "parcelDescriptions": [ + { + "siteRegistry": false, + "dateNoted": "2023-04-22", + "parcelID": "18210", + "crownLandUsePIN": "16245", + "crownLandFileNumber": "19421", + "landDescription": "LOT 4 OF LOT 5 BLOCK 2 DISTRICT LOT 1 PLAN 3332" }, { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-11-02 (described on Site Profile dated 2019-11-02)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "dateNoted": "2015-10-25", + "parcelID": "19762", + "crownLandUsePIN": "15300", + "crownLandFileNumber": "15491", + "landDescription": "LOT 1 OF LOT 2 BLOCK 2 DISTRICT LOT 3 PLAN 9680" }, { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-10-25 (described on Site Profile dated 2022-10-25)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "dateNoted": "2023-03-12", + "parcelID": "16214", + "crownLandUsePIN": "15422", + "crownLandFileNumber": "16622", + "landDescription": "LOT 2 OF LOT 5 BLOCK 1 DISTRICT LOT 4 PLAN 7773" } ], "siteDisclosures": [ { "siteRegistry": true, - "dateReceived": "2015-01-16", - "dateCompleted": "2021-02-19", - "dateEntered": "2020-03-02", - "dateRegistrar": "2015-09-03", - "dateLocalAuthorityReceived": "2022-04-25", - "summary": "Magni mollitia alias cum similique consequuntur illo eveniet ullam.", - "informationUsed": "Soluta illo quod.\nDelectus debitis expedita doloribus autem autem perferendis.\nVoluptatum maiores nesciunt neque magni ipsam fugiat in.\nRepudiandae quas voluptatem iste libero animi.\nIllo tenetur aspernatur quas.", - "pastOrPresentOrders": "Iusto odit voluptates.\nEx dolorem tenetur atque tempore.\nId ab suscipit eveniet ut in sapiente.", + "dateReceived": "2015-06-18", + "dateCompleted": "2020-10-07", + "dateEntered": "2017-10-16", + "dateRegistrar": "2019-11-14", + "dateLocalAuthorityReceived": "2016-11-09", + "summary": "Sunt voluptatem atque nulla sunt repellat debitis voluptatem sed.\nMolestias dolorem in maxime recusandae ea quos.", + "informationUsed": "Ex officia libero magnam velit culpa consequuntur.\nIpsum dolorem enim repellat.\nUt debitis officia atque quidem.\nAperiam doloremque atque nostrum impedit.\nVero quos officiis voluptas magnam.", + "pastOrPresentOrders": "Reprehenderit possimus maxime repudiandae quos quam eius similique quam.", "commercialAndIndustrialPurposes": [ { "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false }, - { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true - } - ] - }, - { - "siteRegistry": true, - "dateReceived": "2016-10-15", - "dateCompleted": "2020-09-27", - "dateEntered": "2018-03-08", - "dateRegistrar": "2013-12-03", - "dateLocalAuthorityReceived": "2021-03-08", - "summary": "Ea vitae impedit error sequi similique praesentium totam aliquid.", - "informationUsed": "Ipsum id deserunt rerum velit iste itaque laboriosam.\nAutem quam quia nulla iste.\nAssumenda ea facere harum quae tempore suscipit facilis.\nUnde consectetur qui inventore provident dolorum.\nDoloremque ut illo pariatur.", - "pastOrPresentOrders": "Voluptates aspernatur quos rem.\nFuga voluptas veniam qui voluptate accusantium mollitia numquam cum eaque.\nArchitecto sint officiis sed ipsa dolore ipsam voluptatibus totam quae.", - "commercialAndIndustrialPurposes": [ { "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", @@ -39631,16 +44249,6 @@ }, { "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false - }, - { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false - }, - { - "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false } @@ -39648,92 +44256,79 @@ } ], "activityLog": [ - { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "HELLER WENDY", - "timestamp": "2020-07-14" - }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "GREENHOLT MAURICE", - "timestamp": "2021-04-12" + "user": "NIENOW LAVADA", + "timestamp": "2021-03-20" }, { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "HOEGER TIMOTHY", - "timestamp": "2022-02-19" + "user": "BINS OKEY", + "timestamp": "2015-12-08" }, { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "MOEN KOBE", - "timestamp": "2017-03-11" + "user": "KRIS ELZA", + "timestamp": "2016-05-25" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "GRAHAM ARTHUR", - "timestamp": "2016-05-11" + "user": "LESCH MAXIMO", + "timestamp": "2022-11-19" }, { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "HAUCK DELL", - "timestamp": "2023-01-10" + "user": "DARE LAYNE", + "timestamp": "2019-05-26" } ], "associatedSites": [ { - "dateNoted": "2016-09-29", + "dateNoted": "2019-02-24", "notes": "", - "parcelID": "20311", - "siteID": "15381", - "siteRegistry": false + "parcelID": "19305", + "siteID": "20583", + "siteRegistry": true }, { - "dateNoted": "2016-10-05", + "dateNoted": "2020-03-18", "notes": "", - "parcelID": "16134", - "siteID": "15944", + "parcelID": "17627", + "siteID": "19450", "siteRegistry": false - }, - { - "dateNoted": "2018-05-06", - "notes": "", - "parcelID": "16636", - "siteID": "20178", - "siteRegistry": true } ] }, { - "uuid": "312a4887-346a-4d13-98b8-6a57cedcd9df", - "siteID": 20329, - "address": "3274 Stehr Drive", - "latitude": 51.369, - "longitude": -136.3499, - "lastUpdated": "2023-06-25", - "city": "Howetown", + "uuid": "92ef5af3-5dac-4d10-b98d-e88ce29e35a4", + "siteID": 19914, + "address": "24281 Sawayn Crescent", + "latitude": 53.2934, + "longitude": -137.5558, + "lastUpdated": "2016-05-21", + "city": "Friesenstead", "region": " North Coast", - "victoriaFile": "26250-20/7891", + "victoriaFile": "26250-20/7346", "regionalFile": "N/A", "parcelIDs": [ - 4437680, - 8599936, - 6712235, - 9272456, - 787222 + 9115869, + 9124411, + 2999257, + 1841405, + 4488640 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2020-02-28", - "completed": "2014-08-02", - "initiated": "2020-05-11", - "ministryContact": "FRIESEN ROGERS", + "createdAt": "2016-10-13", + "completed": "2014-06-02", + "initiated": "2014-10-01", + "ministryContact": "BROWN CAMERON", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -39741,34 +44336,24 @@ "" ], "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false + "role": "SUBMITTED BY", + "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true } ], "siteRegistry": true }, { - "createdAt": "2022-05-20", - "completed": "2023-08-12", - "initiated": "2021-10-02", - "ministryContact": "HILPERT DANDRE", + "createdAt": "2017-02-12", + "completed": "2013-11-02", + "initiated": "2019-03-26", + "ministryContact": "LIND NOLAN", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -39779,26 +44364,31 @@ { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", "siteRegistry": false } ], "siteRegistry": true }, { - "createdAt": "2016-01-23", - "completed": "2019-02-28", - "initiated": "2013-12-18", - "ministryContact": "VON KAYDEN", + "createdAt": "2017-02-26", + "completed": "2016-07-05", + "initiated": "2019-05-22", + "ministryContact": "KUHLMAN RICARDO", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -39806,34 +44396,24 @@ "" ], "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true } ], "siteRegistry": false }, { - "createdAt": "2022-09-25", - "completed": "2021-01-14", - "initiated": "2022-07-23", - "ministryContact": "QUITZON HALIE", + "createdAt": "2018-12-24", + "completed": "2017-09-09", + "initiated": "2020-05-17", + "ministryContact": "LEHNER DESIREE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -39846,20 +44426,35 @@ "role": "REQUESTED BY", "siteRegistry": true }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true } ], "participants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2022-11-14", - "startDate": "2015-12-08", + "name": "IPSUM", + "endDate": "2015-01-22", + "startDate": "2023-03-20", "notes": "", "roles": [ "ORGANIZATION" @@ -39868,28 +44463,18 @@ }, { "name": "AMET, DOLOR SIT", - "endDate": "2022-09-19", - "startDate": "2015-09-02", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": true - }, - { - "name": "IPSUM", - "endDate": "2013-11-07", - "startDate": "2019-09-09", + "endDate": "2019-04-26", + "startDate": "2017-03-20", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2019-03-11", - "startDate": "2021-05-20", + "name": "AMET, DOLOR SIT", + "endDate": "2018-05-19", + "startDate": "2023-05-15", "notes": "", "roles": [ "EMPLOYEE" @@ -39900,46 +44485,100 @@ "suspectLandUses": [ { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-06-23 (described on Site Profile dated 2015-06-23)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "notes": "INSERTED FOR SITE PROFILE DATED 2018-09-18 (described on Site Profile dated 2018-09-18)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2018-07-24 (described on Site Profile dated 2018-07-24)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-12-16 (described on Site Profile dated 2019-12-16)", + "notes": "INSERTED FOR SITE PROFILE DATED 2014-03-16 (described on Site Profile dated 2014-03-16)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], + "parcelDescriptions": [ + { + "siteRegistry": false, + "dateNoted": "2019-07-14", + "parcelID": "19775", + "crownLandUsePIN": "20177", + "crownLandFileNumber": "19797", + "landDescription": "LOT 3 OF LOT 3 BLOCK 2 DISTRICT LOT 5 PLAN 4691" + }, + { + "siteRegistry": true, + "dateNoted": "2014-11-29", + "parcelID": "20155", + "crownLandUsePIN": "19838", + "crownLandFileNumber": "17985", + "landDescription": "LOT 3 OF LOT 3 BLOCK 2 DISTRICT LOT 2 PLAN 8827" + }, + { + "siteRegistry": true, + "dateNoted": "2021-06-20", + "parcelID": "18479", + "crownLandUsePIN": "15454", + "crownLandFileNumber": "20316", + "landDescription": "LOT 5 OF LOT 5 BLOCK 2 DISTRICT LOT 3 PLAN 4074" + } + ], "siteDisclosures": [ { "siteRegistry": false, - "dateReceived": "2017-01-11", - "dateCompleted": "2014-10-14", - "dateEntered": "2013-11-22", - "dateRegistrar": "2019-01-08", - "dateLocalAuthorityReceived": "2019-08-20", - "summary": "Incidunt recusandae harum explicabo iure est necessitatibus.\nExplicabo adipisci vitae harum culpa delectus consequatur iusto.\nNihil distinctio earum.", - "informationUsed": "Voluptatum quae dolorem nisi non voluptates ut earum sapiente magnam.\nMollitia adipisci quae ex necessitatibus qui molestias laudantium aliquid.\nDignissimos quisquam saepe molestiae quis.", - "pastOrPresentOrders": "Quia praesentium consectetur blanditiis aspernatur facilis eveniet et nulla ipsa.\nPraesentium maiores ipsa consequuntur error odit labore esse.", + "dateReceived": "2020-06-28", + "dateCompleted": "2023-02-10", + "dateEntered": "2022-07-10", + "dateRegistrar": "2016-03-17", + "dateLocalAuthorityReceived": "2021-11-08", + "summary": "Dolore aperiam accusantium at tenetur sunt numquam eveniet blanditiis.\nOfficia labore earum ratione itaque architecto.", + "informationUsed": "Culpa et labore quidem fugiat possimus.\nNobis temporibus inventore repellendus doloribus.\nEa porro dicta.\nIncidunt vel adipisci dolorem minus soluta error saepe.\nAliquid eum saepe doloremque accusantium ea voluptatum.", + "pastOrPresentOrders": "Amet libero quibusdam ut illo asperiores velit.\nIpsum quia ratione accusamus architecto sed consectetur sed similique.\nQuaerat corporis illo.", "commercialAndIndustrialPurposes": [ { - "scheduleReference": "F1*", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + } + ] + }, + { + "siteRegistry": false, + "dateReceived": "2016-04-09", + "dateCompleted": "2013-12-03", + "dateEntered": "2022-05-18", + "dateRegistrar": "2021-09-03", + "dateLocalAuthorityReceived": "2015-06-30", + "summary": "Optio iste sed quos.\nReprehenderit quae perspiciatis laborum tenetur dignissimos velit nesciunt.\nId ex ut reprehenderit eligendi deserunt nobis.", + "informationUsed": "Voluptates aliquid vitae libero aspernatur earum.\nAsperiores modi cumque odio aperiam expedita repellendus ipsum.\nQuasi debitis voluptas dicta ipsum.", + "pastOrPresentOrders": "Odit recusandae tenetur quam consequuntur sint ipsa quia dolore voluptas.\nNobis ducimus tempore doloribus.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false }, { "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false + "siteRegistry": true }, { "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true + "siteRegistry": false }, { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true } ] } @@ -39948,95 +44587,88 @@ { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "HERMANN RICHMOND", - "timestamp": "2015-11-12" + "user": "LOCKMAN WYMAN", + "timestamp": "2021-11-16" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "SMITH MARIANNE", - "timestamp": "2023-08-10" + "user": "LABADIE-DECKOW LUDWIG", + "timestamp": "2016-10-17" }, { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "HETTINGER CORDIA", - "timestamp": "2016-10-27" + "user": "LOWE VICENTA", + "timestamp": "2019-01-28" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "KEELING IAN", - "timestamp": "2021-07-15" + "user": "CARTWRIGHT SILAS", + "timestamp": "2015-02-07" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "ADAMS NORBERTO", - "timestamp": "2023-08-22" + "user": "KERLUKE AKEEM", + "timestamp": "2016-12-11" }, { - "siteRegistry": true, + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "BRAUN AYLIN", - "timestamp": "2022-04-14" + "user": "UPTON MATT", + "timestamp": "2022-11-25" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "SENGER RICHMOND", - "timestamp": "2022-07-13" + "user": "WELCH-KEMMER ALEXANDREA", + "timestamp": "2019-10-26" } ], "associatedSites": [ { - "dateNoted": "2020-12-12", - "notes": "", - "parcelID": "20063", - "siteID": "18243", - "siteRegistry": false - }, - { - "dateNoted": "2019-07-05", + "dateNoted": "2017-10-14", "notes": "", - "parcelID": "20315", - "siteID": "16330", - "siteRegistry": false + "parcelID": "20150", + "siteID": "20713", + "siteRegistry": true }, { - "dateNoted": "2016-06-08", + "dateNoted": "2015-06-06", "notes": "", - "parcelID": "19849", - "siteID": "18066", + "parcelID": "20170", + "siteID": "20707", "siteRegistry": true } ] }, { - "uuid": "26c40ece-90a4-4fc3-b3f1-1381ee71776b", - "siteID": 20836, - "address": "3141 Letha Ferry", - "latitude": 52.7535, - "longitude": -131.8367, - "lastUpdated": "2020-12-27", - "city": "Toledo", - "region": "Thompson-Okanagan", - "victoriaFile": "26250-20/4367", + "uuid": "7cbd88cd-0eb0-43a0-9b8a-f9f9d5e4a9ac", + "siteID": 18214, + "address": "1068 Johanna Ford", + "latitude": 55.3804, + "longitude": -135.2881, + "lastUpdated": "2016-02-14", + "city": "North Destany", + "region": " North Coast", + "victoriaFile": "26250-20/12682", "regionalFile": "N/A", "parcelIDs": [ - 1849669, - 6419101, - 2189670, - 5293730, - 1310408 + 4838853, + 9518742, + 337083, + 3850017, + 3029801 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2017-03-22", - "completed": "2016-11-13", - "initiated": "2021-02-08", - "ministryContact": "HINTZ JEANIE", + "createdAt": "2023-09-04", + "completed": "2020-06-16", + "initiated": "2017-08-20", + "ministryContact": "HINTZ LAURIANE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -40045,17 +44677,17 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false }, @@ -40063,31 +44695,6 @@ "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false - } - ], - "siteRegistry": true - }, - { - "createdAt": "2015-03-13", - "completed": "2019-05-02", - "initiated": "2019-02-06", - "ministryContact": "SCHUMM CLEMENTINE", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", @@ -40098,10 +44705,10 @@ "siteRegistry": true }, { - "createdAt": "2016-04-04", - "completed": "2022-05-20", - "initiated": "2022-04-15", - "ministryContact": "LEHNER SANTINO", + "createdAt": "2022-11-29", + "completed": "2019-07-30", + "initiated": "2016-03-20", + "ministryContact": "BAILEY LAVON", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -40109,60 +44716,35 @@ "" ], "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false - } - ], - "siteRegistry": false - }, - { - "createdAt": "2014-01-06", - "completed": "2020-10-30", - "initiated": "2022-07-24", - "ministryContact": "KUHLMAN AMPARO", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ + }, { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true } ], "participants": [ - { - "name": "AMET, DOLOR SIT", - "endDate": "2023-02-01", - "startDate": "2017-07-08", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": true - }, { "name": "SHELL CANADA PRODUCTS", - "endDate": "2019-03-18", - "startDate": "2015-04-30", + "endDate": "2021-05-16", + "startDate": "2022-06-08", "notes": "", "roles": [ "EMPLOYEE" @@ -40171,18 +44753,18 @@ }, { "name": "IPSUM", - "endDate": "2017-10-26", - "startDate": "2017-05-12", + "endDate": "2022-11-12", + "startDate": "2015-07-06", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": false }, { - "name": "IPSUM", - "endDate": "2015-09-17", - "startDate": "2015-09-02", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2023-01-18", + "startDate": "2015-12-22", "notes": "", "roles": [ "EMPLOYEE" @@ -40190,65 +44772,130 @@ "siteRegistry": false }, { - "name": "IPSUM", - "endDate": "2020-12-03", - "startDate": "2016-03-15", + "name": "AMET, DOLOR SIT", + "endDate": "2019-12-12", + "startDate": "2019-02-08", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": true + "siteRegistry": false } ], "suspectLandUses": [ { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-03-19 (described on Site Profile dated 2016-03-19)", + "notes": "INSERTED FOR SITE PROFILE DATED 2018-02-28 (described on Site Profile dated 2018-02-28)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2020-12-07 (described on Site Profile dated 2020-12-07)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-10-28 (described on Site Profile dated 2014-10-28)", + "notes": "INSERTED FOR SITE PROFILE DATED 2014-02-08 (described on Site Profile dated 2014-02-08)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2020-09-03 (described on Site Profile dated 2020-09-03)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-09-22 (described on Site Profile dated 2016-09-22)", + "notes": "INSERTED FOR SITE PROFILE DATED 2022-09-27 (described on Site Profile dated 2022-09-27)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + } + ], + "parcelDescriptions": [ + { + "siteRegistry": false, + "dateNoted": "2023-02-05", + "parcelID": "15979", + "crownLandUsePIN": "15957", + "crownLandFileNumber": "16929", + "landDescription": "LOT 2 OF LOT 4 BLOCK 3 DISTRICT LOT 5 PLAN 7860" + }, + { + "siteRegistry": true, + "dateNoted": "2015-12-13", + "parcelID": "16716", + "crownLandUsePIN": "16073", + "crownLandFileNumber": "16566", + "landDescription": "LOT 3 OF LOT 2 BLOCK 4 DISTRICT LOT 1 PLAN 6240" }, { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-06-19 (described on Site Profile dated 2022-06-19)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "dateNoted": "2018-06-03", + "parcelID": "18509", + "crownLandUsePIN": "16870", + "crownLandFileNumber": "18257", + "landDescription": "LOT 4 OF LOT 5 BLOCK 2 DISTRICT LOT 2 PLAN 8531" + }, + { + "siteRegistry": true, + "dateNoted": "2018-09-13", + "parcelID": "19966", + "crownLandUsePIN": "18123", + "crownLandFileNumber": "17049", + "landDescription": "LOT 5 OF LOT 4 BLOCK 3 DISTRICT LOT 5 PLAN 5221" }, { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-03-06 (described on Site Profile dated 2018-03-06)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "dateNoted": "2014-10-18", + "parcelID": "17913", + "crownLandUsePIN": "17152", + "crownLandFileNumber": "17587", + "landDescription": "LOT 1 OF LOT 4 BLOCK 2 DISTRICT LOT 1 PLAN 7127" } ], "siteDisclosures": [ { - "siteRegistry": false, - "dateReceived": "2023-09-16", - "dateCompleted": "2014-07-20", - "dateEntered": "2018-10-29", - "dateRegistrar": "2014-07-21", - "dateLocalAuthorityReceived": "2016-03-20", - "summary": "Magni dolorum at dignissimos accusantium nam.", - "informationUsed": "In quas sequi sunt enim harum.\nModi temporibus perferendis asperiores quia in nemo rerum delectus cum.\nAutem dolore nostrum reprehenderit magni aliquid.\nAd enim modi nemo consequatur facere.", - "pastOrPresentOrders": "Minus aut rerum odit voluptatibus temporibus ea fuga vero.", + "siteRegistry": true, + "dateReceived": "2014-05-19", + "dateCompleted": "2018-10-14", + "dateEntered": "2015-01-02", + "dateRegistrar": "2016-11-27", + "dateLocalAuthorityReceived": "2016-03-16", + "summary": "Unde voluptatem deleniti excepturi iste harum explicabo officiis in natus.", + "informationUsed": "Molestias eum corporis eum sapiente dolor.\nQuia adipisci impedit officiis impedit sed quasi.\nExercitationem tempora deserunt ea cumque molestias blanditiis vel facilis.\nVoluptatum mollitia nulla ut quasi magni veniam.", + "pastOrPresentOrders": "Molestias et neque et vitae commodi eius omnis.", "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, { "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false - }, + } + ] + }, + { + "siteRegistry": true, + "dateReceived": "2020-07-01", + "dateCompleted": "2021-02-26", + "dateEntered": "2023-06-01", + "dateRegistrar": "2022-01-22", + "dateLocalAuthorityReceived": "2020-05-22", + "summary": "Iure saepe eos.\nIn quidem sit ex velit.\nNon quam mollitia repellat nostrum ut consequuntur blanditiis quo.", + "informationUsed": "Dignissimos modi nam excepturi rem consequatur laborum mollitia perferendis.\nFacere delectus modi voluptatum.\nNesciunt ratione eos laboriosam.", + "pastOrPresentOrders": "Magni sequi eos.", + "commercialAndIndustrialPurposes": [ { "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, { "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", @@ -40259,115 +44906,109 @@ ], "activityLog": [ { - "siteRegistry": true, + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "BALISTRERI BURNICE", - "timestamp": "2022-01-31" + "user": "WALKER JESSYCA", + "timestamp": "2020-12-29" }, { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "HETTINGER NIKKI", - "timestamp": "2023-01-14" + "user": "UPTON MARTY", + "timestamp": "2023-05-07" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "MCKENZIE OZELLA", - "timestamp": "2021-07-11" + "user": "KESSLER AURELIO", + "timestamp": "2023-05-01" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "ALTENWERTH CRAWFORD", - "timestamp": "2016-05-17" + "user": "STROMAN NOAH", + "timestamp": "2016-06-30" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "BERNHARD OCTAVIA", - "timestamp": "2017-01-24" + "user": "MOHR LUCAS", + "timestamp": "2016-08-19" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "KONOPELSKI MYRTLE", - "timestamp": "2022-05-14" - }, - { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "HARBER EMMETT", - "timestamp": "2020-01-28" + "user": "ROLFSON ALVAH", + "timestamp": "2018-05-22" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "COLLIER IDA", - "timestamp": "2021-02-13" + "user": "HOEGER KING", + "timestamp": "2018-03-24" }, { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "ZEMLAK ADELLE", - "timestamp": "2020-05-09" + "user": "HARTMANN EDGARDO", + "timestamp": "2020-05-25" }, { - "siteRegistry": true, + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "SIPES CATHERINE", - "timestamp": "2018-12-01" + "user": "HOMENICK CLOVIS", + "timestamp": "2022-12-03" } ], "associatedSites": [ { - "dateNoted": "2015-06-08", + "dateNoted": "2014-10-18", "notes": "", - "parcelID": "16101", - "siteID": "20671", + "parcelID": "17570", + "siteID": "15638", "siteRegistry": true }, { - "dateNoted": "2019-01-20", + "dateNoted": "2014-06-28", "notes": "", - "parcelID": "18131", - "siteID": "16824", - "siteRegistry": false + "parcelID": "19454", + "siteID": "19290", + "siteRegistry": true }, { - "dateNoted": "2023-04-23", + "dateNoted": "2015-02-22", "notes": "", - "parcelID": "17219", - "siteID": "18905", + "parcelID": "20397", + "siteID": "16162", "siteRegistry": false } ] }, { - "uuid": "85280046-6448-4c54-950a-8263173805ea", - "siteID": 19203, - "address": "149 Halle Points", - "latitude": 54.7547, - "longitude": -121.7815, - "lastUpdated": "2018-10-15", - "city": "West Ewaldstead", - "region": "Mainland/Southwest", - "victoriaFile": "26250-20/1127", + "uuid": "c5bd8e07-671f-4a52-9a30-8efe6c2b2091", + "siteID": 15761, + "address": "861 Hudson Field", + "latitude": 49.1152, + "longitude": -130.0614, + "lastUpdated": "2015-08-14", + "city": "Alexandria", + "region": "Kootenay", + "victoriaFile": "26250-20/1499", "regionalFile": "N/A", "parcelIDs": [ - 2456798, - 4636188, - 504774, - 5083210, - 1265239 + 9420741, + 8883738, + 6922302, + 1096113, + 7893253 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2019-06-23", - "completed": "2017-12-14", - "initiated": "2022-12-08", - "ministryContact": "KLOCKO MYRNA", + "createdAt": "2017-05-18", + "completed": "2014-01-14", + "initiated": "2021-11-18", + "ministryContact": "REMPEL SALLY", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -40375,11 +45016,6 @@ "" ], "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", @@ -40394,10 +45030,10 @@ "siteRegistry": false }, { - "createdAt": "2014-08-27", - "completed": "2020-06-15", - "initiated": "2019-02-19", - "ministryContact": "HILLS MARISOL", + "createdAt": "2018-12-05", + "completed": "2015-12-23", + "initiated": "2023-05-23", + "ministryContact": "BAUMBACH JERALD", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -40406,28 +45042,28 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false } ], "siteRegistry": false }, { - "createdAt": "2016-09-24", - "completed": "2014-06-08", - "initiated": "2018-12-08", - "ministryContact": "WELCH DILLAN", + "createdAt": "2014-05-05", + "completed": "2023-05-28", + "initiated": "2020-04-27", + "ministryContact": "FRANECKI GODFREY", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -40435,6 +45071,21 @@ "" ], "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", @@ -40446,13 +45097,13 @@ "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2021-12-31", - "completed": "2022-01-30", - "initiated": "2021-12-16", - "ministryContact": "GRIMES ADONIS", + "createdAt": "2023-04-01", + "completed": "2020-04-08", + "initiated": "2023-01-21", + "ministryContact": "WEISSNAT ALAINA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -40461,117 +45112,115 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "createdAt": "2021-01-06", + "completed": "2017-01-09", + "initiated": "2020-09-14", + "ministryContact": "LUEILWITZ ARNO", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false + "role": "SUBMITTED BY", + "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true } ], "participants": [ { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2018-10-21", - "startDate": "2018-02-09", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2015-06-12", + "startDate": "2022-10-14", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": false - }, - { - "name": "IPSUM", - "endDate": "2019-08-23", - "startDate": "2016-06-27", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2016-04-16", - "startDate": "2021-04-16", - "notes": "", - "roles": [ - "EMPLOYEE" - ], "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2015-04-30", - "startDate": "2023-08-02", + "endDate": "2016-04-06", + "startDate": "2013-12-14", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true } ], "suspectLandUses": [ { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2023-07-18 (described on Site Profile dated 2023-07-18)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" - }, - { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2020-03-19 (described on Site Profile dated 2020-03-19)", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2020-09-14 (described on Site Profile dated 2020-09-14)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-05-09 (described on Site Profile dated 2014-05-09)", + "notes": "INSERTED FOR SITE PROFILE DATED 2023-06-28 (described on Site Profile dated 2023-06-28)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" - }, + } + ], + "parcelDescriptions": [ { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-11-15 (described on Site Profile dated 2021-11-15)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "dateNoted": "2017-02-27", + "parcelID": "18676", + "crownLandUsePIN": "17832", + "crownLandFileNumber": "17946", + "landDescription": "LOT 2 OF LOT 3 BLOCK 4 DISTRICT LOT 5 PLAN 9687" }, { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-03-13 (described on Site Profile dated 2019-03-13)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "dateNoted": "2020-11-07", + "parcelID": "17174", + "crownLandUsePIN": "17883", + "crownLandFileNumber": "16941", + "landDescription": "LOT 5 OF LOT 1 BLOCK 1 DISTRICT LOT 3 PLAN 8925" } ], "siteDisclosures": [ { - "siteRegistry": true, - "dateReceived": "2020-09-02", - "dateCompleted": "2015-12-21", - "dateEntered": "2019-08-15", - "dateRegistrar": "2016-09-09", - "dateLocalAuthorityReceived": "2019-03-21", - "summary": "Blanditiis in ipsa ut corporis occaecati soluta.\nMaiores delectus nemo architecto saepe mollitia voluptas nihil quibusdam.\nTempore eum doloremque velit fuga sunt.", - "informationUsed": "Quas consequatur culpa sapiente doloribus.\nVeritatis commodi corrupti voluptas facilis pariatur.\nVeritatis nostrum amet doloribus sit sit corrupti fugit.\nSoluta nesciunt adipisci ad quisquam nostrum totam sequi at.\nDoloribus et cum nulla.", - "pastOrPresentOrders": "Ut libero dolore voluptates totam cum quam.", + "siteRegistry": false, + "dateReceived": "2020-07-30", + "dateCompleted": "2016-06-08", + "dateEntered": "2019-07-04", + "dateRegistrar": "2020-03-07", + "dateLocalAuthorityReceived": "2017-03-12", + "summary": "Ducimus libero quibusdam repudiandae officia impedit.\nDignissimos reiciendis quisquam tempore doloribus alias.\nVoluptates dolor eveniet sunt similique.", + "informationUsed": "Recusandae maiores consectetur error autem dicta consectetur.\nRem dignissimos accusamus vero.\nPossimus beatae tenetur unde nobis fugit veritatis optio officia.\nVoluptates eum incidunt illo voluptatem porro a.\nQuaerat sunt deserunt a nostrum repellendus doloremque dolorum.", + "pastOrPresentOrders": "Odit illo fugiat.\nDolorum et reprehenderit maiores ratione ullam at minus iure.\nDolores id pariatur labore quo quod perferendis amet odio vero.", "commercialAndIndustrialPurposes": [ { - "scheduleReference": "F2*", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false + "siteRegistry": true }, { "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false - }, - { - "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false }, @@ -40579,123 +45228,106 @@ "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true - } - ] - }, - { - "siteRegistry": true, - "dateReceived": "2022-08-26", - "dateCompleted": "2017-02-20", - "dateEntered": "2019-09-10", - "dateRegistrar": "2021-08-15", - "dateLocalAuthorityReceived": "2013-10-30", - "summary": "Fuga eligendi repellendus quas iusto deserunt accusantium distinctio quasi.\nDebitis et adipisci cumque ratione doloribus accusantium ipsa sapiente.\nDebitis saepe minima magnam quod dolor vitae.", - "informationUsed": "Itaque libero temporibus commodi laudantium.\nAperiam error harum eligendi dolores doloribus doloribus distinctio ipsum.\nCum nobis rem incidunt.\nExercitationem odio expedita aliquid.\nQuibusdam qui ad cumque officia esse voluptate.", - "pastOrPresentOrders": "Eos eaque dolorem eligendi omnis vel accusantium.\nIncidunt harum numquam dolor perferendis impedit dignissimos.\nEveniet cumque est nobis.", - "commercialAndIndustrialPurposes": [ - { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false }, { "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false - }, - { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false - }, - { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true } ] } ], "activityLog": [ { - "siteRegistry": true, + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "CASSIN COLEMAN", - "timestamp": "2021-11-04" + "user": "MRAZ WHITNEY", + "timestamp": "2016-11-10" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "FEEST BIRDIE", - "timestamp": "2015-07-05" + "user": "WILLIAMSON PEARL", + "timestamp": "2015-10-08" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "SANFORD MAYBELL", + "timestamp": "2020-01-23" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "CARTWRIGHT HOLLIE", + "timestamp": "2015-01-26" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "HAMMES PEARLINE", + "timestamp": "2022-11-29" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "CUMMINGS DAYNE", - "timestamp": "2015-07-08" + "user": "KOSS PETE", + "timestamp": "2022-08-18" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "SWIFT MARSHALL", - "timestamp": "2019-03-10" + "user": "RYAN REANNA", + "timestamp": "2018-06-19" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "WISOZK REINHOLD", - "timestamp": "2021-04-07" + "user": "CREMIN STEPHON", + "timestamp": "2022-02-02" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "BAUCH GABE", - "timestamp": "2016-05-25" + "user": "SCHROEDER NYAH", + "timestamp": "2016-09-18" } ], "associatedSites": [ { - "dateNoted": "2015-08-18", - "notes": "", - "parcelID": "18929", - "siteID": "17810", - "siteRegistry": false - }, - { - "dateNoted": "2018-04-04", + "dateNoted": "2017-01-31", "notes": "", - "parcelID": "20527", - "siteID": "16814", - "siteRegistry": false + "parcelID": "20589", + "siteID": "19235", + "siteRegistry": true } ] }, { - "uuid": "dd78cd1a-574d-4d23-a0da-724a54553b17", - "siteID": 18849, - "address": "5382 Michelle Lock", - "latitude": 56.5319, - "longitude": -133.3707, - "lastUpdated": "2020-08-06", - "city": "South Kimberlychester", - "region": "Kootenay", - "victoriaFile": "26250-20/6428", + "uuid": "3fe91dcb-a30d-4d4f-9254-72d536107c2d", + "siteID": 17959, + "address": "42391 Darien Meadow", + "latitude": 58.1356, + "longitude": -127.6117, + "lastUpdated": "2023-02-17", + "city": "Elinoreburgh", + "region": "Thompson-Okanagan", + "victoriaFile": "26250-20/18197", "regionalFile": "N/A", "parcelIDs": [ - 7093894, - 3484443, - 3735735, - 4097386, - 5140041 + 9692771, + 7073730, + 1598716, + 1694656, + 8698112 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2018-11-27", - "completed": "2014-10-29", - "initiated": "2017-05-21", - "ministryContact": "ROBEL ABBIGAIL", + "createdAt": "2016-06-08", + "completed": "2016-07-07", + "initiated": "2017-11-11", + "ministryContact": "LEHNER IVORY", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -40706,17 +45338,17 @@ { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true + "role": "SUBMITTED BY", + "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", @@ -40727,35 +45359,10 @@ "siteRegistry": true }, { - "createdAt": "2020-09-04", - "completed": "2019-02-28", - "initiated": "2019-05-17", - "ministryContact": "ROLFSON GUADALUPE", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - } - ], - "siteRegistry": false - }, - { - "createdAt": "2020-05-01", - "completed": "2020-11-24", - "initiated": "2022-04-17", - "ministryContact": "POLLICH MEGANE", + "createdAt": "2023-05-29", + "completed": "2020-12-02", + "initiated": "2014-01-27", + "ministryContact": "BODE ELLIE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -40763,46 +45370,11 @@ "" ], "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", "siteRegistry": false - } - ], - "siteRegistry": false - }, - { - "createdAt": "2021-12-12", - "completed": "2016-10-31", - "initiated": "2017-11-11", - "ministryContact": "SCHIMMEL CRYSTAL", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ + }, { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", @@ -40819,52 +45391,32 @@ "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false } ], "participants": [ - { - "name": "AMET, DOLOR SIT", - "endDate": "2014-10-07", - "startDate": "2021-07-15", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": true - }, { "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2017-03-16", - "startDate": "2014-09-19", + "endDate": "2016-02-09", + "startDate": "2015-03-14", "notes": "", "roles": [ "EMPLOYEE" ], "siteRegistry": true }, - { - "name": "IPSUM", - "endDate": "2021-07-21", - "startDate": "2022-07-21", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": false - }, { "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2015-12-26", - "startDate": "2015-11-05", + "endDate": "2018-11-01", + "startDate": "2014-08-21", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": true } @@ -40872,51 +45424,72 @@ "suspectLandUses": [ { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-11-29 (described on Site Profile dated 2019-11-29)", + "notes": "INSERTED FOR SITE PROFILE DATED 2015-06-20 (described on Site Profile dated 2015-06-20)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-04-14 (described on Site Profile dated 2018-04-14)", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2018-01-20 (described on Site Profile dated 2018-01-20)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-03-31 (described on Site Profile dated 2016-03-31)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "notes": "INSERTED FOR SITE PROFILE DATED 2019-11-24 (described on Site Profile dated 2019-11-24)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-11-06 (described on Site Profile dated 2019-11-06)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2014-01-09 (described on Site Profile dated 2014-01-09)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + } + ], + "parcelDescriptions": [ + { + "siteRegistry": true, + "dateNoted": "2014-03-04", + "parcelID": "19747", + "crownLandUsePIN": "16706", + "crownLandFileNumber": "15417", + "landDescription": "LOT 2 OF LOT 3 BLOCK 5 DISTRICT LOT 5 PLAN 9531" }, { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-03-07 (described on Site Profile dated 2015-03-07)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "dateNoted": "2019-03-21", + "parcelID": "18231", + "crownLandUsePIN": "15690", + "crownLandFileNumber": "17539", + "landDescription": "LOT 4 OF LOT 3 BLOCK 3 DISTRICT LOT 2 PLAN 3988" + }, + { + "siteRegistry": false, + "dateNoted": "2023-07-22", + "parcelID": "20904", + "crownLandUsePIN": "19100", + "crownLandFileNumber": "17760", + "landDescription": "LOT 2 OF LOT 3 BLOCK 3 DISTRICT LOT 4 PLAN 8178" } ], "siteDisclosures": [ { "siteRegistry": false, - "dateReceived": "2018-08-11", - "dateCompleted": "2021-12-24", - "dateEntered": "2019-07-31", - "dateRegistrar": "2019-06-29", - "dateLocalAuthorityReceived": "2016-10-27", - "summary": "Numquam voluptas architecto et culpa.\nIusto asperiores sed reprehenderit saepe modi.\nIn quia quo libero inventore a hic.", - "informationUsed": "Molestiae debitis rerum porro consectetur quidem sint ut quas.\nEaque voluptas possimus asperiores dolorem consectetur officia suscipit.\nDolor laboriosam voluptatem vero.\nHarum iste aspernatur aut quasi accusamus eaque similique.", - "pastOrPresentOrders": "Enim ipsam commodi provident.", + "dateReceived": "2017-10-09", + "dateCompleted": "2018-06-20", + "dateEntered": "2019-07-24", + "dateRegistrar": "2016-04-23", + "dateLocalAuthorityReceived": "2016-11-10", + "summary": "Velit occaecati alias nesciunt dicta aspernatur iste fuga corrupti nam.\nBlanditiis quisquam repellat totam at id consequuntur alias officiis.\nDelectus atque delectus quam eius maxime voluptatum ad ad commodi.", + "informationUsed": "Reiciendis ea sed impedit rerum dolor vel quae eum.\nHarum nemo autem voluptate dolores numquam modi totam.\nCorrupti aut distinctio voluptates deleniti explicabo blanditiis dolorum.\nLaborum doloremque iste quo nesciunt voluptatem corporis officia illo.", + "pastOrPresentOrders": "Maxime illo soluta.", "commercialAndIndustrialPurposes": [ { "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false }, { "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true + "siteRegistry": false }, { "scheduleReference": "F2*", @@ -40924,9 +45497,9 @@ "siteRegistry": true }, { - "scheduleReference": "F1*", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true + "siteRegistry": false } ] } @@ -40935,101 +45508,81 @@ { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "MURAZIK ZACKERY", - "timestamp": "2014-05-26" + "user": "SCHUMM DARWIN", + "timestamp": "2019-12-03" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "BORER KIEL", - "timestamp": "2015-09-25" + "user": "PFANNERSTILL RUPERT", + "timestamp": "2017-03-09" }, { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "BAUMBACH SANDRINE", - "timestamp": "2020-09-30" + "user": "MORAR TURNER", + "timestamp": "2016-10-24" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "BAUMBACH HERMAN", - "timestamp": "2014-07-03" - }, - { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "TURNER SHERMAN", - "timestamp": "2023-02-27" + "user": "ROLFSON SEDRICK", + "timestamp": "2018-12-29" }, { - "siteRegistry": true, + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "BOEHM ALIVIA", - "timestamp": "2014-09-21" + "user": "PFANNERSTILL ELFRIEDA", + "timestamp": "2015-03-07" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "WARD CYNTHIA", - "timestamp": "2015-07-19" + "user": "EMARD ZULA", + "timestamp": "2016-03-29" }, { - "siteRegistry": true, + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "RICE JULIA", - "timestamp": "2016-09-30" + "user": "EFFERTZ ARIC", + "timestamp": "2017-12-22" } ], "associatedSites": [ { - "dateNoted": "2018-06-28", - "notes": "", - "parcelID": "20311", - "siteID": "15592", - "siteRegistry": true - }, - { - "dateNoted": "2022-08-30", - "notes": "", - "parcelID": "15865", - "siteID": "16824", - "siteRegistry": true - }, - { - "dateNoted": "2021-12-08", + "dateNoted": "2021-06-11", "notes": "", - "parcelID": "19795", - "siteID": "18231", + "parcelID": "15503", + "siteID": "19450", "siteRegistry": false } ] }, { - "uuid": "0ed690dc-7f5b-4933-a5d6-43e614aab340", - "siteID": 19159, - "address": "895 Jones Bridge", - "latitude": 50.6619, - "longitude": -120.6487, - "lastUpdated": "2022-12-13", - "city": "Jasenshire", + "uuid": "b8b98f9b-822c-485b-a159-260e273aedd5", + "siteID": 19909, + "address": "2983 Kassandra Gardens", + "latitude": 50.1227, + "longitude": -135.0673, + "lastUpdated": "2016-12-06", + "city": "Richland", "region": " North Coast", - "victoriaFile": "26250-20/1613", + "victoriaFile": "26250-20/10109", "regionalFile": "N/A", "parcelIDs": [ - 4488648, - 9891237, - 5483480, - 7798535, - 225450 + 3616742, + 5479260, + 8088403, + 7089466, + 3184053 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2017-07-02", - "completed": "2020-11-30", - "initiated": "2017-09-23", - "ministryContact": "NIKOLAUS DONALD", + "createdAt": "2016-01-18", + "completed": "2015-06-24", + "initiated": "2014-11-15", + "ministryContact": "REYNOLDS MISAEL", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -41038,28 +45591,23 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true } ], "siteRegistry": true }, { - "createdAt": "2019-09-10", - "completed": "2022-08-31", - "initiated": "2020-03-02", - "ministryContact": "LYNCH MALCOLM", + "createdAt": "2015-05-15", + "completed": "2015-08-18", + "initiated": "2018-01-21", + "ministryContact": "HILLS ZANDER", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -41068,23 +45616,188 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false } ], "siteRegistry": true + } + ], + "participants": [ + { + "name": "IPSUM", + "endDate": "2018-10-22", + "startDate": "2013-11-08", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "IPSUM", + "endDate": "2015-08-21", + "startDate": "2018-03-22", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + } + ], + "suspectLandUses": [ + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2021-04-18 (described on Site Profile dated 2021-04-18)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "createdAt": "2013-12-12", - "completed": "2016-03-12", - "initiated": "2023-01-15", - "ministryContact": "COLLINS BERTRAND", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2022-02-07 (described on Site Profile dated 2022-02-07)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + } + ], + "parcelDescriptions": [ + { + "siteRegistry": true, + "dateNoted": "2016-03-09", + "parcelID": "18910", + "crownLandUsePIN": "17724", + "crownLandFileNumber": "16171", + "landDescription": "LOT 1 OF LOT 4 BLOCK 4 DISTRICT LOT 2 PLAN 8423" + }, + { + "siteRegistry": false, + "dateNoted": "2015-07-19", + "parcelID": "15338", + "crownLandUsePIN": "17388", + "crownLandFileNumber": "15405", + "landDescription": "LOT 3 OF LOT 5 BLOCK 4 DISTRICT LOT 5 PLAN 4018" + }, + { + "siteRegistry": false, + "dateNoted": "2019-02-15", + "parcelID": "15863", + "crownLandUsePIN": "16447", + "crownLandFileNumber": "17774", + "landDescription": "LOT 1 OF LOT 4 BLOCK 3 DISTRICT LOT 2 PLAN 3989" + } + ], + "siteDisclosures": [ + { + "siteRegistry": false, + "dateReceived": "2015-10-26", + "dateCompleted": "2020-02-17", + "dateEntered": "2021-10-03", + "dateRegistrar": "2023-03-26", + "dateLocalAuthorityReceived": "2022-01-25", + "summary": "Unde velit odit.\nTemporibus ab minus consectetur modi voluptatem nostrum.\nSaepe modi deleniti atque perspiciatis.", + "informationUsed": "Minima sed vitae voluptatibus praesentium.\nUllam culpa doloribus culpa.\nQuam debitis itaque nam ipsum eum.\nOdio quae eius odio fuga.", + "pastOrPresentOrders": "Occaecati eveniet occaecati qui recusandae itaque quo iure veniam.\nDebitis laudantium doloremque eum nobis atque.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + } + ] + } + ], + "activityLog": [ + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "ZIEME MARJORY", + "timestamp": "2021-11-17" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "FERRY KEVON", + "timestamp": "2015-06-19" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "DICKINSON ROXANE", + "timestamp": "2015-10-25" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "RIPPIN TONEY", + "timestamp": "2020-06-08" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "KESSLER BENEDICT", + "timestamp": "2014-06-11" + } + ], + "associatedSites": [ + { + "dateNoted": "2016-04-17", + "notes": "", + "parcelID": "16360", + "siteID": "16952", + "siteRegistry": false + }, + { + "dateNoted": "2014-01-16", + "notes": "", + "parcelID": "17026", + "siteID": "18727", + "siteRegistry": false + } + ] + }, + { + "uuid": "b45e5ff9-e115-4c02-acfd-022b29a2cf71", + "siteID": 16979, + "address": "324 Nicolas Row", + "latitude": 58.7543, + "longitude": -130.9712, + "lastUpdated": "2022-01-24", + "city": "Pacochaville", + "region": "Mainland/Southwest", + "victoriaFile": "26250-20/15285", + "regionalFile": "N/A", + "parcelIDs": [ + 1577164, + 9288502, + 4803636, + 8496611, + 9891643 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2022-06-12", + "completed": "2023-04-06", + "initiated": "2020-06-17", + "ministryContact": "RAYNOR MIKEL", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -41095,31 +45808,31 @@ { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true + "role": "REQUESTED BY", + "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false } ], "siteRegistry": false }, { - "createdAt": "2016-03-06", - "completed": "2023-01-18", - "initiated": "2016-07-29", - "ministryContact": "KLOCKO THURMAN", + "createdAt": "2013-11-11", + "completed": "2014-09-21", + "initiated": "2022-01-26", + "ministryContact": "O'KEEFE BLANCHE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -41129,48 +45842,28 @@ "notationParticipants": [ { "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false + "role": "SUBMITTED BY", + "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false - } - ], - "siteRegistry": false - }, - { - "createdAt": "2023-07-11", - "completed": "2018-05-08", - "initiated": "2017-07-01", - "ministryContact": "ULLRICH ELISABETH", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false } ], "siteRegistry": true @@ -41178,19 +45871,29 @@ ], "participants": [ { - "name": "IPSUM", - "endDate": "2015-07-15", - "startDate": "2022-04-30", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2014-07-14", + "startDate": "2019-10-04", "notes": "", "roles": [ "EMPLOYEE" ], + "siteRegistry": true + }, + { + "name": "AMET, DOLOR SIT", + "endDate": "2015-04-27", + "startDate": "2017-02-12", + "notes": "", + "roles": [ + "ORGANIZATION" + ], "siteRegistry": false }, { "name": "AMET, DOLOR SIT", - "endDate": "2019-07-05", - "startDate": "2019-06-27", + "endDate": "2021-11-13", + "startDate": "2021-04-01", "notes": "", "roles": [ "ORGANIZATION" @@ -41201,64 +45904,54 @@ "suspectLandUses": [ { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-09-04 (described on Site Profile dated 2021-09-04)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "notes": "INSERTED FOR SITE PROFILE DATED 2016-03-27 (described on Site Profile dated 2016-03-27)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-03-19 (described on Site Profile dated 2018-03-19)", + "notes": "INSERTED FOR SITE PROFILE DATED 2020-07-15 (described on Site Profile dated 2020-07-15)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-10-05 (described on Site Profile dated 2016-10-05)", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2015-05-06 (described on Site Profile dated 2015-05-06)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + } + ], + "parcelDescriptions": [ + { + "siteRegistry": false, + "dateNoted": "2020-05-12", + "parcelID": "16780", + "crownLandUsePIN": "20292", + "crownLandFileNumber": "16426", + "landDescription": "LOT 1 OF LOT 2 BLOCK 5 DISTRICT LOT 2 PLAN 7247" }, { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-04-01 (described on Site Profile dated 2021-04-01)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "siteRegistry": false, + "dateNoted": "2023-05-24", + "parcelID": "19849", + "crownLandUsePIN": "20403", + "crownLandFileNumber": "15870", + "landDescription": "LOT 3 OF LOT 5 BLOCK 1 DISTRICT LOT 5 PLAN 7487" } ], "siteDisclosures": [ - { - "siteRegistry": true, - "dateReceived": "2016-03-23", - "dateCompleted": "2017-03-30", - "dateEntered": "2023-07-02", - "dateRegistrar": "2014-06-26", - "dateLocalAuthorityReceived": "2014-11-22", - "summary": "Modi voluptate suscipit rem accusamus magnam voluptate et doloribus.\nSimilique a perferendis saepe adipisci consequuntur aliquid est dolores.", - "informationUsed": "Enim possimus consectetur numquam autem beatae nam sunt recusandae dolorum.\nExcepturi culpa dolores asperiores molestiae.\nAtque nemo doloribus occaecati cupiditate quam.", - "pastOrPresentOrders": "Exercitationem beatae similique autem inventore impedit explicabo.\nFacere aspernatur vel consectetur molestias.", - "commercialAndIndustrialPurposes": [ - { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true - }, - { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false - } - ] - }, { "siteRegistry": false, - "dateReceived": "2014-12-18", - "dateCompleted": "2021-06-27", - "dateEntered": "2015-09-21", - "dateRegistrar": "2023-02-14", - "dateLocalAuthorityReceived": "2014-06-02", - "summary": "Accusantium hic aspernatur mollitia rerum ea atque.\nDolorum dicta similique inventore perferendis nihil.\nRem error neque reprehenderit quam voluptatem laborum facilis amet unde.", - "informationUsed": "Praesentium soluta repudiandae repudiandae ex.\nDicta non laborum quod eligendi.\nRepellat libero vel debitis modi beatae sapiente pariatur dolores.\nCumque delectus nostrum minima neque incidunt fugit a dicta vitae.", - "pastOrPresentOrders": "Quaerat rem cupiditate ut alias.\nEst laboriosam esse.", + "dateReceived": "2020-05-03", + "dateCompleted": "2017-03-09", + "dateEntered": "2021-12-18", + "dateRegistrar": "2023-06-30", + "dateLocalAuthorityReceived": "2015-04-06", + "summary": "Possimus necessitatibus ab.\nEnim vero atque laborum.\nError odit commodi aliquam deleniti.", + "informationUsed": "Quis deserunt deserunt modi quasi.\nEnim doloremque corrupti ad quas sed praesentium.\nLabore tempora voluptate perspiciatis nemo reiciendis consequuntur ut saepe maxime.\nIpsa soluta beatae enim perferendis sint.", + "pastOrPresentOrders": "Expedita sapiente accusantium similique.", "commercialAndIndustrialPurposes": [ { "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true + "siteRegistry": false }, { "scheduleReference": "F2*", @@ -41272,106 +45965,113 @@ { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "CONSIDINE SUSANNA", - "timestamp": "2020-02-06" + "user": "RUECKER EDDIE", + "timestamp": "2021-05-05" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "KEMMER ALTHEA", - "timestamp": "2017-02-18" + "user": "BAYER-BARTOLETTI GAVIN", + "timestamp": "2019-02-20" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "WINDLER LELA", - "timestamp": "2014-04-04" + "user": "LITTEL LYLA", + "timestamp": "2015-08-05" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "WHITE KELLY", - "timestamp": "2018-02-17" + "user": "SMITH VALENTINA", + "timestamp": "2023-01-18" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "BINS ALIYA", - "timestamp": "2016-10-12" + "user": "REINGER JOSH", + "timestamp": "2021-10-09" }, { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "VON BARTHOLOME", - "timestamp": "2022-04-17" + "user": "SPORER TRACE", + "timestamp": "2022-02-18" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "HODKIEWICZ KESHAWN", - "timestamp": "2014-06-25" + "user": "BEDNAR MADDISON", + "timestamp": "2018-04-29" }, { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "SPORER IZABELLA", - "timestamp": "2019-10-17" + "user": "CONROY-VON KAELA", + "timestamp": "2015-09-11" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "ZIEMANN DELL", - "timestamp": "2019-08-18" + "user": "LEHNER MABELLE", + "timestamp": "2023-09-19" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "CONSIDINE BERNHARD", - "timestamp": "2017-01-01" + "user": "WEHNER EINAR", + "timestamp": "2022-03-15" } ], "associatedSites": [ { - "dateNoted": "2018-06-01", + "dateNoted": "2018-09-14", + "notes": "", + "parcelID": "16924", + "siteID": "20283", + "siteRegistry": false + }, + { + "dateNoted": "2021-12-27", "notes": "", - "parcelID": "16105", - "siteID": "19478", + "parcelID": "17834", + "siteID": "16489", "siteRegistry": true }, { - "dateNoted": "2022-10-21", + "dateNoted": "2023-08-14", "notes": "", - "parcelID": "16980", - "siteID": "17962", + "parcelID": "19098", + "siteID": "18350", "siteRegistry": false } ] }, { - "uuid": "ed57251c-5d07-4a0a-b6ae-d7cf223abdac", - "siteID": 19248, - "address": "916 Daija Forge", - "latitude": 58.4738, - "longitude": -130.043, - "lastUpdated": "2020-04-10", - "city": "Port Gretchenhaven", - "region": "Thompson-Okanagan", - "victoriaFile": "26250-20/11456", + "uuid": "cd432f7a-0292-49ed-bcac-8b2b83ec35db", + "siteID": 19587, + "address": "57862 O'Connell Well", + "latitude": 48.1005, + "longitude": -122.0923, + "lastUpdated": "2018-04-04", + "city": "Morissetteshire", + "region": "Kootenay", + "victoriaFile": "26250-20/16029", "regionalFile": "N/A", "parcelIDs": [ - 5363895, - 7510461, - 2899975, - 1519606, - 2267544 + 2130087, + 8343183, + 5762041, + 4151797, + 5098644 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2017-01-06", - "completed": "2021-05-05", - "initiated": "2019-01-06", - "ministryContact": "HAHN WALTER", + "createdAt": "2023-04-16", + "completed": "2016-05-26", + "initiated": "2020-09-07", + "ministryContact": "MOSCISKI NASIR", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -41380,38 +46080,28 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2014-01-17", - "completed": "2023-06-19", - "initiated": "2014-12-21", - "ministryContact": "CRONA FRANCES", + "createdAt": "2022-01-12", + "completed": "2022-08-07", + "initiated": "2018-08-02", + "ministryContact": "HELLER ALEXANDRE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -41427,28 +46117,8 @@ { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - } - ], - "siteRegistry": false - }, - { - "createdAt": "2015-10-25", - "completed": "2015-12-30", - "initiated": "2015-03-16", - "ministryContact": "KIRLIN JANIYA", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", @@ -41456,33 +46126,33 @@ }, { "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false + "role": "REQUESTED BY", + "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true } ], "participants": [ { "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2019-02-10", - "startDate": "2023-09-29", + "endDate": "2019-10-14", + "startDate": "2017-01-24", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], - "siteRegistry": true + "siteRegistry": false }, { - "name": "AMET, DOLOR SIT", - "endDate": "2017-05-30", - "startDate": "2022-04-30", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2019-05-28", + "startDate": "2021-02-11", "notes": "", "roles": [ "EMPLOYEE" @@ -41492,47 +46162,71 @@ ], "suspectLandUses": [ { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2020-06-01 (described on Site Profile dated 2020-06-01)", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2017-04-26 (described on Site Profile dated 2017-04-26)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-05-10 (described on Site Profile dated 2022-05-10)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "notes": "INSERTED FOR SITE PROFILE DATED 2023-03-20 (described on Site Profile dated 2023-03-20)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-01-16 (described on Site Profile dated 2018-01-16)", + "notes": "INSERTED FOR SITE PROFILE DATED 2019-05-20 (described on Site Profile dated 2019-05-20)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + } + ], + "parcelDescriptions": [ + { + "siteRegistry": true, + "dateNoted": "2014-07-21", + "parcelID": "18975", + "crownLandUsePIN": "17979", + "crownLandFileNumber": "17010", + "landDescription": "LOT 4 OF LOT 5 BLOCK 4 DISTRICT LOT 3 PLAN 7874" }, { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2020-09-06 (described on Site Profile dated 2020-09-06)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "dateNoted": "2021-07-24", + "parcelID": "18872", + "crownLandUsePIN": "15764", + "crownLandFileNumber": "18519", + "landDescription": "LOT 2 OF LOT 5 BLOCK 3 DISTRICT LOT 1 PLAN 3996" + }, + { + "siteRegistry": false, + "dateNoted": "2021-11-30", + "parcelID": "16569", + "crownLandUsePIN": "20662", + "crownLandFileNumber": "15390", + "landDescription": "LOT 2 OF LOT 4 BLOCK 2 DISTRICT LOT 4 PLAN 7174" + }, + { + "siteRegistry": true, + "dateNoted": "2016-05-12", + "parcelID": "20719", + "crownLandUsePIN": "19969", + "crownLandFileNumber": "15349", + "landDescription": "LOT 4 OF LOT 5 BLOCK 1 DISTRICT LOT 2 PLAN 3785" } ], "siteDisclosures": [ { - "siteRegistry": false, - "dateReceived": "2020-01-18", - "dateCompleted": "2021-07-19", - "dateEntered": "2015-07-15", - "dateRegistrar": "2016-03-23", - "dateLocalAuthorityReceived": "2017-10-15", - "summary": "Molestiae consequatur doloremque sed iure sequi.\nOptio unde quidem magnam voluptate temporibus sit.\nSoluta minima cupiditate totam omnis porro voluptatum.", - "informationUsed": "Commodi maiores ex dolorem illo laudantium nesciunt eius eaque.\nEnim laboriosam tempora quibusdam voluptate ipsam distinctio blanditiis esse.\nSaepe dolorum ratione dicta occaecati.\nSimilique assumenda vitae porro odio accusantium id occaecati ullam.", - "pastOrPresentOrders": "Labore at vel necessitatibus temporibus.", + "siteRegistry": true, + "dateReceived": "2019-03-03", + "dateCompleted": "2021-01-11", + "dateEntered": "2019-06-20", + "dateRegistrar": "2021-11-24", + "dateLocalAuthorityReceived": "2018-11-13", + "summary": "Unde vero culpa eos laudantium tempore delectus inventore.\nQuos ex voluptates eligendi cupiditate corrupti quos velit.", + "informationUsed": "Nemo odit soluta.\nSoluta possimus labore maiores placeat magnam deserunt temporibus.\nMagnam accusamus libero similique natus.\nEt natus similique.", + "pastOrPresentOrders": "Nihil ea eius nam nam tempora.\nPariatur modi maiores aliquam.\nMaxime tenetur velit ducimus praesentium autem vel laborum accusantium veritatis.", "commercialAndIndustrialPurposes": [ - { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false - }, { "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true + "siteRegistry": false }, { "scheduleReference": "F2*", @@ -41543,14 +46237,14 @@ }, { "siteRegistry": false, - "dateReceived": "2021-06-04", - "dateCompleted": "2015-02-21", - "dateEntered": "2016-08-08", - "dateRegistrar": "2021-10-13", - "dateLocalAuthorityReceived": "2021-11-18", - "summary": "Ipsa temporibus fuga nemo pariatur illo impedit doloribus corrupti.\nItaque repellendus quis iste quod soluta adipisci quod.", - "informationUsed": "Ea explicabo quaerat quisquam.\nNobis vero enim at veritatis explicabo veritatis dolorum consequuntur omnis.\nNesciunt temporibus eum nostrum veritatis nisi itaque.", - "pastOrPresentOrders": "Dolor eaque laborum.\nPerferendis magnam exercitationem delectus.", + "dateReceived": "2022-01-12", + "dateCompleted": "2013-11-09", + "dateEntered": "2016-09-26", + "dateRegistrar": "2022-07-09", + "dateLocalAuthorityReceived": "2021-04-10", + "summary": "Fugiat ratione saepe blanditiis accusantium alias.", + "informationUsed": "Ullam molestias rerum eaque optio magnam omnis ipsa enim.\nDeserunt quasi possimus perferendis at laborum quasi nemo adipisci non.\nArchitecto commodi similique voluptates officia nulla accusantium voluptatum.\nOfficiis illum voluptatibus quo est officiis minima.", + "pastOrPresentOrders": "Rem veniam doloremque.\nNisi quasi est officia repellendus in incidunt magni tenetur.", "commercialAndIndustrialPurposes": [ { "scheduleReference": "F1*", @@ -41558,99 +46252,129 @@ "siteRegistry": true }, { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false }, { - "scheduleReference": "F2*", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true + "siteRegistry": false } ] } ], "activityLog": [ + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "ROBEL ERIK", + "timestamp": "2022-12-10" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "MAGGIO MAKENZIE", + "timestamp": "2023-06-10" + }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "SMITHAM GODFREY", - "timestamp": "2018-02-04" + "user": "BEER SADYE", + "timestamp": "2018-11-27" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "DOYLE NYA", - "timestamp": "2023-09-02" + "user": "FISHER DAWSON", + "timestamp": "2023-09-24" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "BREITENBERG POLLY", - "timestamp": "2021-09-10" + "user": "PARKER CREOLA", + "timestamp": "2015-05-06" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "JACOBS PIERRE", - "timestamp": "2016-05-23" + "user": "FAY JUNIOR", + "timestamp": "2023-01-27" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "JAST FLAVIO", - "timestamp": "2022-01-04" + "user": "VANDERVORT-GLOVER DAVE", + "timestamp": "2019-09-24" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "BREITENBERG JAIRO", + "timestamp": "2015-05-31" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "WEBER LILLIAN", + "timestamp": "2014-07-16" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "BECHTELAR RUSTY", + "timestamp": "2018-05-29" } ], "associatedSites": [ { - "dateNoted": "2022-08-30", + "dateNoted": "2014-04-03", "notes": "", - "parcelID": "17650", - "siteID": "17078", - "siteRegistry": true + "parcelID": "19621", + "siteID": "20325", + "siteRegistry": false }, { - "dateNoted": "2016-04-16", + "dateNoted": "2015-01-06", "notes": "", - "parcelID": "18050", - "siteID": "16813", + "parcelID": "20599", + "siteID": "20242", "siteRegistry": true }, { - "dateNoted": "2015-11-28", + "dateNoted": "2014-09-28", "notes": "", - "parcelID": "19870", - "siteID": "19216", + "parcelID": "20109", + "siteID": "17847", "siteRegistry": true } ] }, { - "uuid": "2bd1d6d5-50fd-473e-a603-c2d159714306", - "siteID": 16509, - "address": "207 Roob Highway", - "latitude": 49.783, - "longitude": -131.1263, - "lastUpdated": "2019-01-31", - "city": "Lucianoview", - "region": "Mainland/Southwest", - "victoriaFile": "26250-20/2876", + "uuid": "6838cc71-aaca-4ef8-b7d5-f6beec4ae2f8", + "siteID": 17812, + "address": "7839 Jakubowski Village", + "latitude": 49.7347, + "longitude": -122.0383, + "lastUpdated": "2019-10-12", + "city": "Waelchimouth", + "region": "Vancouver Island/Coast", + "victoriaFile": "26250-20/17367", "regionalFile": "N/A", "parcelIDs": [ - 7574732, - 1744468, - 9423203, - 952495, - 5026563 + 3802109, + 3732898, + 1007487, + 1592767, + 6455120 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2017-01-08", - "completed": "2022-09-24", - "initiated": "2018-02-17", - "ministryContact": "LAKIN ANSEL", + "createdAt": "2022-11-09", + "completed": "2015-07-12", + "initiated": "2015-05-26", + "ministryContact": "RATKE CHAZ", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -41658,34 +46382,29 @@ "" ], "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true } ], "siteRegistry": true }, { - "createdAt": "2022-09-03", - "completed": "2021-02-26", - "initiated": "2016-02-07", - "ministryContact": "BLOCK ROLLIN", + "createdAt": "2016-05-09", + "completed": "2022-06-14", + "initiated": "2017-07-28", + "ministryContact": "STREICH MACK", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -41695,32 +46414,22 @@ "notationParticipants": [ { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true } ], "siteRegistry": false }, { - "createdAt": "2014-03-02", - "completed": "2017-09-02", - "initiated": "2019-10-01", - "ministryContact": "HODKIEWICZ ROMA", + "createdAt": "2016-09-28", + "completed": "2016-02-17", + "initiated": "2020-09-01", + "ministryContact": "KESSLER MATTIE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -41729,27 +46438,17 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false } @@ -41757,10 +46456,10 @@ "siteRegistry": true }, { - "createdAt": "2023-09-29", - "completed": "2018-08-18", - "initiated": "2017-11-06", - "ministryContact": "REICHERT COLUMBUS", + "createdAt": "2023-05-04", + "completed": "2023-07-14", + "initiated": "2017-07-21", + "ministryContact": "LEMKE OSCAR", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -41769,207 +46468,23 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false } ], - "siteRegistry": true - } - ], - "participants": [ - { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2022-03-22", - "startDate": "2016-07-12", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": false - }, - { - "name": "AMET, DOLOR SIT", - "endDate": "2017-07-26", - "startDate": "2014-12-03", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2023-03-16", - "startDate": "2023-08-21", - "notes": "", - "roles": [ - "ORGANIZATION" - ], "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2015-06-24", - "startDate": "2014-03-08", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": true - } - ], - "suspectLandUses": [ - { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-03-23 (described on Site Profile dated 2022-03-23)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" - }, - { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-08-21 (described on Site Profile dated 2017-08-21)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" - }, - { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-09-07 (described on Site Profile dated 2022-09-07)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" - }, - { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-09-25 (described on Site Profile dated 2021-09-25)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" - }, - { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2020-12-20 (described on Site Profile dated 2020-12-20)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" - } - ], - "siteDisclosures": [ - { - "siteRegistry": false, - "dateReceived": "2021-12-29", - "dateCompleted": "2020-12-05", - "dateEntered": "2014-08-29", - "dateRegistrar": "2021-12-15", - "dateLocalAuthorityReceived": "2017-10-08", - "summary": "Explicabo nemo aliquid.\nItaque nostrum velit.\nVoluptatibus libero quibusdam.", - "informationUsed": "Hic sunt corporis vel harum reprehenderit eos dolor et.\nQuod mollitia nesciunt fugiat dolorem vitae id.\nAnimi quibusdam veniam veniam totam quod at molestias labore.\nSuscipit fugiat tenetur dicta rerum natus quasi blanditiis fuga.", - "pastOrPresentOrders": "Sapiente accusamus quo mollitia quaerat ullam iure ipsa.\nAb sunt in.\nCulpa aspernatur asperiores corporis.", - "commercialAndIndustrialPurposes": [ - { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true - }, - { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false - } - ] - } - ], - "activityLog": [ - { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "SMITH GERARD", - "timestamp": "2022-07-13" - }, - { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "LEFFLER PEDRO", - "timestamp": "2016-01-06" - }, - { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "TRANTOW ELADIO", - "timestamp": "2020-02-11" - }, - { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "HALVORSON DEION", - "timestamp": "2021-02-24" - }, - { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "LITTLE MILAN", - "timestamp": "2019-02-25" - }, - { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "YUNDT MAGGIE", - "timestamp": "2021-12-13" - }, - { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "CROOKS MICHAELA", - "timestamp": "2014-03-06" - } - ], - "associatedSites": [ - { - "dateNoted": "2020-03-13", - "notes": "", - "parcelID": "17590", - "siteID": "20734", - "siteRegistry": false - } - ] - }, - { - "uuid": "0bc6b544-5807-45ce-8e97-f54cbfad1d16", - "siteID": 19590, - "address": "94490 Caesar Loaf", - "latitude": 58.254, - "longitude": -118.2712, - "lastUpdated": "2016-06-03", - "city": "Schaeferville", - "region": "Vancouver Island/Coast", - "victoriaFile": "26250-20/10853", - "regionalFile": "N/A", - "parcelIDs": [ - 9892073, - 4910244, - 625836, - 8220411, - 5665644 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2022-03-26", - "completed": "2021-06-27", - "initiated": "2021-10-07", - "ministryContact": "BECHTELAR RHETT", + "createdAt": "2017-10-23", + "completed": "2016-08-19", + "initiated": "2018-09-13", + "ministryContact": "ROHAN DELPHIA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -41978,53 +46493,23 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - } - ], - "siteRegistry": true - }, - { - "createdAt": "2021-04-27", - "completed": "2019-05-28", - "initiated": "2014-07-19", - "ministryContact": "MURRAY JUSTINA", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", "siteRegistry": false } ], @@ -42033,19 +46518,19 @@ ], "participants": [ { - "name": "AMET, DOLOR SIT", - "endDate": "2020-04-15", - "startDate": "2016-06-23", + "name": "IPSUM", + "endDate": "2016-12-09", + "startDate": "2014-08-21", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false }, { - "name": "AMET, DOLOR SIT", - "endDate": "2021-06-11", - "startDate": "2014-12-27", + "name": "IPSUM", + "endDate": "2013-11-10", + "startDate": "2017-05-13", "notes": "", "roles": [ "ORGANIZATION" @@ -42053,174 +46538,196 @@ "siteRegistry": true }, { - "name": "AMET, DOLOR SIT", - "endDate": "2016-04-10", - "startDate": "2013-11-05", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": false - }, - { - "name": "IPSUM", - "endDate": "2019-11-01", - "startDate": "2013-12-04", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2019-03-06", + "startDate": "2016-05-10", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": false + "siteRegistry": true }, { - "name": "IPSUM", - "endDate": "2018-01-10", - "startDate": "2022-06-08", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2019-05-22", + "startDate": "2014-07-28", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], - "siteRegistry": true + "siteRegistry": false } ], "suspectLandUses": [ + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2019-08-28 (described on Site Profile dated 2019-08-28)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2015-04-26 (described on Site Profile dated 2015-04-26)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-11-08 (described on Site Profile dated 2017-11-08)", + "notes": "INSERTED FOR SITE PROFILE DATED 2018-05-04 (described on Site Profile dated 2018-05-04)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-11-01 (described on Site Profile dated 2015-11-01)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "notes": "INSERTED FOR SITE PROFILE DATED 2019-11-27 (described on Site Profile dated 2019-11-27)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + } + ], + "parcelDescriptions": [ + { + "siteRegistry": true, + "dateNoted": "2023-02-23", + "parcelID": "15422", + "crownLandUsePIN": "20785", + "crownLandFileNumber": "17927", + "landDescription": "LOT 5 OF LOT 4 BLOCK 3 DISTRICT LOT 1 PLAN 8353" }, { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-05-29 (described on Site Profile dated 2017-05-29)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "dateNoted": "2021-08-09", + "parcelID": "18634", + "crownLandUsePIN": "20549", + "crownLandFileNumber": "19427", + "landDescription": "LOT 2 OF LOT 1 BLOCK 3 DISTRICT LOT 3 PLAN 3505" }, { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2020-05-31 (described on Site Profile dated 2020-05-31)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "dateNoted": "2023-09-12", + "parcelID": "20292", + "crownLandUsePIN": "18820", + "crownLandFileNumber": "19569", + "landDescription": "LOT 5 OF LOT 3 BLOCK 3 DISTRICT LOT 5 PLAN 3283" } ], "siteDisclosures": [ { "siteRegistry": false, - "dateReceived": "2017-09-03", - "dateCompleted": "2023-03-04", - "dateEntered": "2017-03-04", - "dateRegistrar": "2017-12-02", - "dateLocalAuthorityReceived": "2021-03-26", - "summary": "Consequatur possimus est omnis esse.\nAdipisci fuga laboriosam facilis molestiae.", - "informationUsed": "Nobis culpa quasi deserunt.\nBlanditiis a nobis odio velit quisquam quibusdam tempora.\nExcepturi ut velit doloribus.\nVoluptas dolor quam quaerat qui illo quod temporibus.", - "pastOrPresentOrders": "Nesciunt earum ad debitis ut aliquam laborum.", + "dateReceived": "2020-10-02", + "dateCompleted": "2021-03-24", + "dateEntered": "2016-03-19", + "dateRegistrar": "2020-08-08", + "dateLocalAuthorityReceived": "2022-12-16", + "summary": "Itaque voluptatum provident eius explicabo autem consequuntur dolore adipisci earum.", + "informationUsed": "Placeat impedit voluptate deleniti nisi ratione commodi.\nNobis iure vitae doloribus.\nConsectetur odio at eligendi.\nPlaceat aspernatur tenetur doloremque earum temporibus laborum illo enim modi.", + "pastOrPresentOrders": "Deleniti dolorum accusamus dolore.\nNeque dicta autem ex.\nCupiditate dignissimos dolores praesentium vel tenetur maiores quasi voluptas.", "commercialAndIndustrialPurposes": [ { "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true + "siteRegistry": false }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + } + ] + }, + { + "siteRegistry": true, + "dateReceived": "2017-10-15", + "dateCompleted": "2021-12-27", + "dateEntered": "2018-04-07", + "dateRegistrar": "2015-01-27", + "dateLocalAuthorityReceived": "2021-04-11", + "summary": "Nihil aliquam aspernatur.\nAperiam asperiores optio commodi iusto quaerat ab quaerat blanditiis soluta.", + "informationUsed": "Nesciunt quia eum sed similique earum quos.\nVitae assumenda beatae voluptatibus sint corporis.\nQuibusdam voluptate omnis minus quis deleniti doloribus rem atque earum.\nUt ab maiores quas quas.", + "pastOrPresentOrders": "Exercitationem facilis explicabo adipisci nulla officia repudiandae.\nAmet deserunt a iusto incidunt eum harum.\nEsse omnis tempora deserunt alias natus rerum voluptatem.", + "commercialAndIndustrialPurposes": [ { "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true + "siteRegistry": false } ] } ], "activityLog": [ - { - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "DACH TYRA", - "timestamp": "2019-11-20" - }, - { - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "TRANTOW PIERCE", - "timestamp": "2019-03-07" - }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "KOEPP EVALYN", - "timestamp": "2017-04-23" - }, - { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "NADER EMILY", - "timestamp": "2023-09-28" + "user": "STAMM LORENZA", + "timestamp": "2015-11-04" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "HEGMANN SYLVIA", - "timestamp": "2021-03-12" - }, - { - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "WINTHEISER MILO", - "timestamp": "2019-06-18" + "user": "WEHNER JUANA", + "timestamp": "2020-01-12" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "GUTMANN GEOFFREY", - "timestamp": "2023-04-12" + "user": "GULGOWSKI AMY", + "timestamp": "2022-03-10" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "GULGOWSKI CLEO", - "timestamp": "2022-12-19" + "user": "BRADTKE KYLE", + "timestamp": "2017-12-15" }, { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "STROMAN ESTELL", - "timestamp": "2014-11-15" + "user": "HICKLE CHESLEY", + "timestamp": "2020-10-09" } ], "associatedSites": [ { - "dateNoted": "2017-08-18", + "dateNoted": "2015-07-30", + "notes": "", + "parcelID": "16324", + "siteID": "18140", + "siteRegistry": true + }, + { + "dateNoted": "2022-01-19", "notes": "", - "parcelID": "16546", - "siteID": "19078", + "parcelID": "20605", + "siteID": "16602", "siteRegistry": true } ] }, { - "uuid": "1617b42d-87f9-4ab0-bfc4-e043cf52f7ca", - "siteID": 15958, - "address": "687 Bode Glens", - "latitude": 49.5143, - "longitude": -123.2331, - "lastUpdated": "2015-10-20", - "city": "Columbia", - "region": " North Coast", - "victoriaFile": "26250-20/12834", + "uuid": "5bacea94-b5f3-4d21-9b15-22d2f27d6e72", + "siteID": 16138, + "address": "100 Sanford Viaduct", + "latitude": 52.5047, + "longitude": -136.6424, + "lastUpdated": "2017-08-28", + "city": "Adrientown", + "region": "Cariboo", + "victoriaFile": "26250-20/6765", "regionalFile": "N/A", "parcelIDs": [ - 5068263, - 1464777, - 4475021, - 3283188, - 2141860 + 9845466, + 4638005, + 909105, + 3719133, + 4979251 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2015-09-16", - "completed": "2019-09-07", - "initiated": "2013-11-18", - "ministryContact": "NOLAN BILLIE", + "createdAt": "2019-10-11", + "completed": "2018-08-02", + "initiated": "2020-03-01", + "ministryContact": "MARQUARDT EUGENE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -42230,39 +46737,29 @@ "notationParticipants": [ { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false + "role": "REQUESTED BY", + "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2020-06-21", - "completed": "2017-04-17", - "initiated": "2023-09-10", - "ministryContact": "KEMMER MINNIE", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, + "createdAt": "2021-02-22", + "completed": "2022-09-05", + "initiated": "2020-04-08", + "ministryContact": "FRANEY JOSIANNE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", @@ -42272,20 +46769,15 @@ "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2014-06-29", - "completed": "2014-02-19", - "initiated": "2015-06-13", - "ministryContact": "BLOCK URIAH", + "createdAt": "2020-07-10", + "completed": "2017-06-06", + "initiated": "2021-10-23", + "ministryContact": "TURCOTTE-SKILES DOLORES", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -42295,78 +46787,157 @@ "notationParticipants": [ { "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false } ], "participants": [ { - "name": "AMET, DOLOR SIT", - "endDate": "2021-07-19", - "startDate": "2014-10-30", + "name": "IPSUM", + "endDate": "2020-06-26", + "startDate": "2023-02-23", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": true }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2019-08-13", + "startDate": "2017-01-24", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, { "name": "AMET, DOLOR SIT", - "endDate": "2019-08-09", - "startDate": "2018-04-25", + "endDate": "2021-06-12", + "startDate": "2019-11-06", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2022-12-20", + "startDate": "2020-09-29", "notes": "", "roles": [ "ORGANIZATION" ], + "siteRegistry": false + }, + { + "name": "AMET, DOLOR SIT", + "endDate": "2020-03-14", + "startDate": "2018-02-21", + "notes": "", + "roles": [ + "EMPLOYEE" + ], "siteRegistry": true } ], "suspectLandUses": [ { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-04-12 (described on Site Profile dated 2016-04-12)", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2016-05-23 (described on Site Profile dated 2016-05-23)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2016-04-16 (described on Site Profile dated 2016-04-16)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2020-11-03 (described on Site Profile dated 2020-11-03)", + "notes": "INSERTED FOR SITE PROFILE DATED 2018-09-19 (described on Site Profile dated 2018-09-19)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2023-03-03 (described on Site Profile dated 2023-03-03)", + "notes": "INSERTED FOR SITE PROFILE DATED 2014-06-11 (described on Site Profile dated 2014-06-11)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2018-01-21 (described on Site Profile dated 2018-01-21)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + } + ], + "parcelDescriptions": [ + { + "siteRegistry": true, + "dateNoted": "2015-04-18", + "parcelID": "17306", + "crownLandUsePIN": "17928", + "crownLandFileNumber": "18666", + "landDescription": "LOT 2 OF LOT 3 BLOCK 4 DISTRICT LOT 4 PLAN 7468" + }, + { + "siteRegistry": true, + "dateNoted": "2017-11-07", + "parcelID": "16553", + "crownLandUsePIN": "17919", + "crownLandFileNumber": "16732", + "landDescription": "LOT 3 OF LOT 5 BLOCK 5 DISTRICT LOT 5 PLAN 8896" }, { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-01-27 (described on Site Profile dated 2016-01-27)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "dateNoted": "2016-11-06", + "parcelID": "18443", + "crownLandUsePIN": "20705", + "crownLandFileNumber": "18793", + "landDescription": "LOT 1 OF LOT 3 BLOCK 4 DISTRICT LOT 4 PLAN 5168" + }, + { + "siteRegistry": true, + "dateNoted": "2016-05-22", + "parcelID": "16031", + "crownLandUsePIN": "18685", + "crownLandFileNumber": "17579", + "landDescription": "LOT 2 OF LOT 3 BLOCK 5 DISTRICT LOT 3 PLAN 6015" } ], "siteDisclosures": [ { "siteRegistry": true, - "dateReceived": "2016-07-11", - "dateCompleted": "2019-06-30", - "dateEntered": "2022-01-12", - "dateRegistrar": "2019-11-03", - "dateLocalAuthorityReceived": "2021-11-01", - "summary": "Temporibus dolorem maiores beatae corporis explicabo excepturi tempore aspernatur.", - "informationUsed": "Recusandae ad quisquam enim sit id odit repellendus.\nVeritatis eos saepe veniam.\nIure quasi sapiente soluta eveniet.\nFuga ipsam illo nobis laboriosam excepturi pariatur deserunt doloremque quo.", - "pastOrPresentOrders": "Tempora quos architecto repellat a.\nConsectetur nihil at.\nReprehenderit perferendis assumenda molestias molestiae aperiam repudiandae quibusdam consequatur.", + "dateReceived": "2015-09-19", + "dateCompleted": "2014-03-24", + "dateEntered": "2023-05-12", + "dateRegistrar": "2015-04-10", + "dateLocalAuthorityReceived": "2022-09-02", + "summary": "Modi explicabo quod veritatis non a laboriosam nemo cum id.\nExplicabo dolorem veritatis quod ea explicabo iusto.", + "informationUsed": "Cum magni rem.\nOptio nisi enim ad tempore debitis.\nConsectetur enim ut repudiandae temporibus et reprehenderit aspernatur a.", + "pastOrPresentOrders": "Sed accusamus molestiae explicabo eligendi maiores at.", "commercialAndIndustrialPurposes": [ { "scheduleReference": "F2*", @@ -42375,45 +46946,12 @@ }, { "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true - }, - { - "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true - }, - { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true - } - ] - }, - { - "siteRegistry": true, - "dateReceived": "2017-02-01", - "dateCompleted": "2019-06-20", - "dateEntered": "2022-05-13", - "dateRegistrar": "2022-12-27", - "dateLocalAuthorityReceived": "2020-06-12", - "summary": "Nostrum voluptatibus blanditiis earum ullam facere.", - "informationUsed": "Voluptatem neque suscipit in nesciunt.\nCulpa quo molestias sed error corrupti ut.\nReprehenderit ut fuga repellat cumque eos dolorem minus.\nAliquid earum ab incidunt deserunt vero.\nIllum animi fugiat voluptatibus voluptatibus corrupti ratione ipsa libero dolor.", - "pastOrPresentOrders": "Atque in nisi sunt adipisci minus tempore ipsam quibusdam.", - "commercialAndIndustrialPurposes": [ - { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false }, - { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true - }, { "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true } ] @@ -42421,85 +46959,77 @@ ], "activityLog": [ { - "siteRegistry": true, + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "BOYER RYLEE", - "timestamp": "2022-06-24" + "user": "SCHOWALTER CHRISTOPHER", + "timestamp": "2019-02-12" }, { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "SMITHAM JAYME", - "timestamp": "2019-12-11" + "user": "DIBBERT FRANZ", + "timestamp": "2023-09-02" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "MORAR LILLA", - "timestamp": "2017-08-06" + "user": "ARMSTRONG KELLEY", + "timestamp": "2017-05-05" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "MCKENZIE JEAN", - "timestamp": "2022-09-07" + "user": "CONNELLY NYAH", + "timestamp": "2023-07-07" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "REICHERT-BEDNAR JAZLYN", + "timestamp": "2015-10-17" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "WILKINSON CAMREN", - "timestamp": "2022-04-02" + "user": "ZEMLAK KENDALL", + "timestamp": "2020-01-24" } ], "associatedSites": [ { - "dateNoted": "2014-02-16", - "notes": "", - "parcelID": "18722", - "siteID": "15706", - "siteRegistry": true - }, - { - "dateNoted": "2018-01-02", - "notes": "", - "parcelID": "15230", - "siteID": "15754", - "siteRegistry": true - }, - { - "dateNoted": "2020-02-09", + "dateNoted": "2016-03-24", "notes": "", - "parcelID": "17248", - "siteID": "16386", + "parcelID": "20895", + "siteID": "19235", "siteRegistry": true } ] }, { - "uuid": "cd899d8f-9c7d-48fb-be00-e07ad42a5903", - "siteID": 20178, - "address": "3886 Lottie Terrace", - "latitude": 56.0518, - "longitude": -135.6366, - "lastUpdated": "2016-06-25", - "city": "Bechtelarport", - "region": "Kootenay", - "victoriaFile": "26250-20/11932", + "uuid": "33dc804c-a195-4420-a9f0-18ced48a47c7", + "siteID": 15758, + "address": "9856 Sanford Mount", + "latitude": 51.1592, + "longitude": -121.3721, + "lastUpdated": "2021-12-18", + "city": "South Tatumburgh", + "region": "Cariboo", + "victoriaFile": "26250-20/5161", "regionalFile": "N/A", "parcelIDs": [ - 9607641, - 9100583, - 8706515, - 4187683, - 2597553 + 2905109, + 4839786, + 2719106, + 6221631, + 6293669 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2013-11-04", - "completed": "2020-01-10", - "initiated": "2013-10-25", - "ministryContact": "KOZEY GUISEPPE", + "createdAt": "2014-02-15", + "completed": "2014-03-01", + "initiated": "2020-12-18", + "ministryContact": "JACOBI LORNA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -42510,12 +47040,12 @@ { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", @@ -42526,20 +47056,40 @@ "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "createdAt": "2020-06-22", + "completed": "2016-03-25", + "initiated": "2014-08-10", + "ministryContact": "GOYETTE CLYDE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2017-06-08", - "completed": "2015-12-27", - "initiated": "2020-04-29", - "ministryContact": "SCHNEIDER JORDY", + "createdAt": "2021-02-13", + "completed": "2014-06-14", + "initiated": "2018-07-08", + "ministryContact": "GLEICHNER REBEKAH", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -42550,20 +47100,20 @@ { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true } @@ -42571,10 +47121,10 @@ "siteRegistry": false }, { - "createdAt": "2018-10-30", - "completed": "2015-06-28", - "initiated": "2022-05-19", - "ministryContact": "BECHTELAR YESSENIA", + "createdAt": "2021-06-24", + "completed": "2020-09-12", + "initiated": "2021-11-04", + "ministryContact": "STOKES TAMIA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -42583,9 +47133,9 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", @@ -42594,79 +47144,144 @@ }, { "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false } ], "participants": [ { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2015-07-27", - "startDate": "2017-01-09", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2021-08-18", - "startDate": "2021-11-01", + "name": "IPSUM", + "endDate": "2021-02-04", + "startDate": "2023-09-07", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": false + "siteRegistry": true }, { - "name": "IPSUM", - "endDate": "2016-04-16", - "startDate": "2016-03-29", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2020-01-01", + "startDate": "2016-03-05", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": true + "siteRegistry": false } ], "suspectLandUses": [ { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-12-24 (described on Site Profile dated 2015-12-24)", + "notes": "INSERTED FOR SITE PROFILE DATED 2023-06-29 (described on Site Profile dated 2023-06-29)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2022-11-21 (described on Site Profile dated 2022-11-21)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + } + ], + "parcelDescriptions": [ + { + "siteRegistry": true, + "dateNoted": "2022-06-15", + "parcelID": "19888", + "crownLandUsePIN": "17855", + "crownLandFileNumber": "20305", + "landDescription": "LOT 2 OF LOT 4 BLOCK 4 DISTRICT LOT 2 PLAN 4914" + }, + { + "siteRegistry": false, + "dateNoted": "2018-08-29", + "parcelID": "15522", + "crownLandUsePIN": "19244", + "crownLandFileNumber": "16072", + "landDescription": "LOT 2 OF LOT 1 BLOCK 4 DISTRICT LOT 2 PLAN 8724" }, { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2020-12-25 (described on Site Profile dated 2020-12-25)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "dateNoted": "2014-11-15", + "parcelID": "20904", + "crownLandUsePIN": "20414", + "crownLandFileNumber": "15955", + "landDescription": "LOT 3 OF LOT 3 BLOCK 2 DISTRICT LOT 3 PLAN 9760" + }, + { + "siteRegistry": true, + "dateNoted": "2016-06-04", + "parcelID": "19679", + "crownLandUsePIN": "19506", + "crownLandFileNumber": "17207", + "landDescription": "LOT 1 OF LOT 5 BLOCK 1 DISTRICT LOT 1 PLAN 9030" + }, + { + "siteRegistry": false, + "dateNoted": "2016-01-03", + "parcelID": "17031", + "crownLandUsePIN": "18082", + "crownLandFileNumber": "19839", + "landDescription": "LOT 1 OF LOT 5 BLOCK 4 DISTRICT LOT 1 PLAN 8838" } ], "siteDisclosures": [ { "siteRegistry": false, - "dateReceived": "2017-02-24", - "dateCompleted": "2016-08-10", - "dateEntered": "2019-03-20", - "dateRegistrar": "2014-05-18", - "dateLocalAuthorityReceived": "2022-02-09", - "summary": "Accusamus quis impedit iusto quasi quos voluptas esse eius aut.", - "informationUsed": "Eius modi at blanditiis optio ipsum magnam.\nExpedita inventore pariatur eos excepturi soluta.\nCupiditate provident non ullam doloribus reprehenderit harum quae.", - "pastOrPresentOrders": "Architecto similique iure facilis sint incidunt.\nExcepturi molestiae earum.\nDolore dolore nam.", + "dateReceived": "2023-01-24", + "dateCompleted": "2018-01-05", + "dateEntered": "2019-06-23", + "dateRegistrar": "2022-10-17", + "dateLocalAuthorityReceived": "2023-09-20", + "summary": "Commodi deserunt exercitationem incidunt consequuntur quod odit.", + "informationUsed": "Similique minima harum maxime quod fugit perspiciatis odio sunt.\nCommodi ullam ab ab ea laudantium magnam ducimus cumque.\nExpedita doloribus eius tempore.\nItaque id quis cumque est deleniti.\nNesciunt tempore eius minus minima numquam inventore numquam deleniti rem.", + "pastOrPresentOrders": "Maiores excepturi similique natus iusto dolore similique aliquid quaerat dicta.\nAut culpa illum rerum sint dolores quasi blanditiis.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + } + ] + }, + { + "siteRegistry": false, + "dateReceived": "2016-06-01", + "dateCompleted": "2018-04-29", + "dateEntered": "2019-04-20", + "dateRegistrar": "2019-08-02", + "dateLocalAuthorityReceived": "2020-06-26", + "summary": "Dolor illo assumenda ab fuga aut cumque.\nLaboriosam quam eveniet quibusdam sit eaque voluptatem aspernatur facere provident.\nEnim sequi impedit.", + "informationUsed": "Voluptatibus ex error dolore.\nAdipisci molestiae laudantium suscipit dolores amet hic ea laboriosam hic.\nLaudantium rem impedit totam.\nTotam vitae ex iusto vero maxime aperiam.", + "pastOrPresentOrders": "Aliquam optio unde cum unde.\nCupiditate magni atque molestias est quibusdam aperiam placeat facilis.\nAdipisci nostrum unde nihil quo.", "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, { "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, { "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", @@ -42676,98 +47291,102 @@ } ], "activityLog": [ + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "BAYER-MOSCISKI CELESTINE", + "timestamp": "2021-04-03" + }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "MARKS VIRGINIA", - "timestamp": "2015-01-03" + "user": "MURAZIK WARD", + "timestamp": "2016-12-14" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "GRIMES GIA", - "timestamp": "2013-11-17" + "user": "KEELING TRISTON", + "timestamp": "2021-07-03" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "RITCHIE ELEANORA", - "timestamp": "2014-12-22" + "user": "KUHN CARLI", + "timestamp": "2014-09-15" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "VON BARRETT", - "timestamp": "2023-06-24" + "user": "BINS HERMANN", + "timestamp": "2019-05-19" }, { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "FERRY BRYCE", - "timestamp": "2013-11-03" + "user": "LEBSACK GODFREY", + "timestamp": "2016-07-15" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "FAY CHARLIE", + "timestamp": "2020-09-18" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "GRIMES ALIZA", - "timestamp": "2021-02-24" + "user": "SCHIMMEL ARYANNA", + "timestamp": "2018-10-10" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "FRANEY CHRISTA", + "timestamp": "2023-07-28" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "SCHUPPE CARMINE", - "timestamp": "2016-02-19" + "user": "SPINKA ALANNA", + "timestamp": "2018-01-10" } ], "associatedSites": [ { - "dateNoted": "2023-09-21", - "notes": "", - "parcelID": "20373", - "siteID": "19475", - "siteRegistry": true - }, - { - "dateNoted": "2021-01-21", - "notes": "", - "parcelID": "18855", - "siteID": "18849", - "siteRegistry": false - }, - { - "dateNoted": "2015-11-23", + "dateNoted": "2018-09-08", "notes": "", - "parcelID": "16922", - "siteID": "20921", + "parcelID": "15257", + "siteID": "19608", "siteRegistry": true } ] }, { - "uuid": "6612baff-cfbe-437f-ad42-f25739bf2e80", - "siteID": 15592, - "address": "534 Dulce Valley", - "latitude": 57.257, - "longitude": -124.553, - "lastUpdated": "2019-06-20", - "city": "North Herminiaworth", - "region": "Kootenay", - "victoriaFile": "26250-20/11429", + "uuid": "9c3c9185-236a-46c3-a4c8-e371fbccef74", + "siteID": 20388, + "address": "335 Rau Terrace", + "latitude": 49.6902, + "longitude": -130.8813, + "lastUpdated": "2023-08-14", + "city": "New Maceyton", + "region": " North Coast", + "victoriaFile": "26250-20/5221", "regionalFile": "N/A", "parcelIDs": [ - 5358872, - 299457, - 8887609, - 5196087, - 5594266 + 5095094, + 4505167, + 1384300, + 6774792, + 5297460 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2021-09-02", - "completed": "2023-03-16", - "initiated": "2016-11-29", - "ministryContact": "MONAHAN DANNIE", + "createdAt": "2014-05-11", + "completed": "2019-08-14", + "initiated": "2020-08-01", + "ministryContact": "CRONA ELDON", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -42776,28 +47395,28 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2017-11-30", - "completed": "2017-01-05", - "initiated": "2017-01-02", - "ministryContact": "ABBOTT ORIE", + "createdAt": "2022-07-11", + "completed": "2017-02-14", + "initiated": "2018-09-09", + "ministryContact": "PACOCHA TERENCE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -42808,15 +47427,20 @@ { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false } @@ -42824,10 +47448,10 @@ "siteRegistry": false }, { - "createdAt": "2020-04-28", - "completed": "2021-10-19", - "initiated": "2016-12-17", - "ministryContact": "KRIS TERESA", + "createdAt": "2023-04-10", + "completed": "2018-07-04", + "initiated": "2020-04-02", + "ministryContact": "JOHNS JUNIOR", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -42835,20 +47459,65 @@ "" ], "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "createdAt": "2018-11-10", + "completed": "2018-12-16", + "initiated": "2018-10-28", + "ministryContact": "SCHAEFER MATT", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false } ], "siteRegistry": true @@ -42857,8 +47526,18 @@ "participants": [ { "name": "AMET, DOLOR SIT", - "endDate": "2020-08-12", - "startDate": "2017-05-19", + "endDate": "2014-01-28", + "startDate": "2019-09-08", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2013-12-25", + "startDate": "2016-06-14", "notes": "", "roles": [ "ORGANIZATION" @@ -42866,184 +47545,224 @@ "siteRegistry": true }, { - "name": "AMET, DOLOR SIT", - "endDate": "2022-11-30", - "startDate": "2022-02-03", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2016-05-27", + "startDate": "2020-05-16", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2018-11-22", + "startDate": "2014-01-08", "notes": "", "roles": [ "EMPLOYEE" ], "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2014-10-11", + "startDate": "2023-07-22", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true } ], "suspectLandUses": [ { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2023-01-24 (described on Site Profile dated 2023-01-24)", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2017-06-05 (described on Site Profile dated 2017-06-05)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2020-12-29 (described on Site Profile dated 2020-12-29)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2018-11-25 (described on Site Profile dated 2018-11-25)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + } + ], + "parcelDescriptions": [ + { + "siteRegistry": false, + "dateNoted": "2015-07-30", + "parcelID": "16934", + "crownLandUsePIN": "19613", + "crownLandFileNumber": "19638", + "landDescription": "LOT 2 OF LOT 5 BLOCK 4 DISTRICT LOT 5 PLAN 4616" }, { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-11-07 (described on Site Profile dated 2019-11-07)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "dateNoted": "2016-01-01", + "parcelID": "15927", + "crownLandUsePIN": "20735", + "crownLandFileNumber": "18065", + "landDescription": "LOT 3 OF LOT 4 BLOCK 2 DISTRICT LOT 4 PLAN 6831" + }, + { + "siteRegistry": false, + "dateNoted": "2014-08-24", + "parcelID": "17374", + "crownLandUsePIN": "18447", + "crownLandFileNumber": "17728", + "landDescription": "LOT 2 OF LOT 2 BLOCK 3 DISTRICT LOT 1 PLAN 5780" }, { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-08-28 (described on Site Profile dated 2022-08-28)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "dateNoted": "2020-03-15", + "parcelID": "19059", + "crownLandUsePIN": "17755", + "crownLandFileNumber": "19299", + "landDescription": "LOT 1 OF LOT 5 BLOCK 2 DISTRICT LOT 2 PLAN 5293" + }, + { + "siteRegistry": false, + "dateNoted": "2019-08-28", + "parcelID": "17170", + "crownLandUsePIN": "16404", + "crownLandFileNumber": "18024", + "landDescription": "LOT 4 OF LOT 3 BLOCK 1 DISTRICT LOT 1 PLAN 6309" } ], "siteDisclosures": [ { "siteRegistry": false, - "dateReceived": "2020-09-01", - "dateCompleted": "2018-10-12", - "dateEntered": "2021-03-16", - "dateRegistrar": "2018-10-10", - "dateLocalAuthorityReceived": "2017-03-24", - "summary": "Eos atque quisquam iusto temporibus alias culpa non eaque.\nItaque quia perspiciatis alias porro voluptate illo.", - "informationUsed": "Aspernatur aspernatur odit suscipit nostrum unde consectetur magnam natus fuga.\nOfficia maxime neque.\nReiciendis voluptas porro ut vel quibusdam animi non.\nDucimus distinctio quam necessitatibus omnis maiores rem repellendus perspiciatis quaerat.\nAsperiores vel culpa quae.", - "pastOrPresentOrders": "A eligendi doloribus.", + "dateReceived": "2023-05-14", + "dateCompleted": "2019-05-31", + "dateEntered": "2019-10-25", + "dateRegistrar": "2021-03-24", + "dateLocalAuthorityReceived": "2022-05-30", + "summary": "Cumque sunt odit fugiat.\nEligendi harum distinctio delectus architecto molestiae et.", + "informationUsed": "Porro iusto quisquam laborum non assumenda.\nSimilique debitis ab dolores animi harum laborum.\nExplicabo itaque non quis impedit laboriosam sunt fuga ab.\nImpedit magni velit quod eveniet in nihil.\nDeleniti esse minus libero quae temporibus vitae delectus quod.", + "pastOrPresentOrders": "Reiciendis rem possimus eaque doloribus reiciendis praesentium pariatur.\nDoloribus illum quidem fuga sed reiciendis quos consequuntur.", "commercialAndIndustrialPurposes": [ { "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, - { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false - }, { "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { - "scheduleReference": "F2*", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false + "siteRegistry": true } ] } ], "activityLog": [ { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "GREENFELDER SHAYLEE", - "timestamp": "2016-03-26" - }, - { - "siteRegistry": true, + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "LEDNER STACY", - "timestamp": "2019-12-03" + "user": "CHAMPLIN NOEMIE", + "timestamp": "2019-09-27" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "GULGOWSKI JACQUES", - "timestamp": "2014-11-18" + "user": "BEAHAN MAYBELL", + "timestamp": "2020-10-29" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "ROMAGUERA LUNA", - "timestamp": "2017-04-19" + "user": "WIEGAND LONDON", + "timestamp": "2023-05-21" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "SHIELDS BRIGITTE", - "timestamp": "2017-06-17" + "user": "KEEBLER DION", + "timestamp": "2023-05-22" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "MOHR FLOYD", - "timestamp": "2014-05-01" + "user": "WILLIAMSON ROSALIA", + "timestamp": "2020-06-14" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "STAMM TORRANCE", + "timestamp": "2020-12-10" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "ROOB MONTY", - "timestamp": "2022-10-06" + "user": "BEDNAR KELLEN", + "timestamp": "2023-01-01" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "DICKINSON LUZ", - "timestamp": "2017-01-19" + "user": "WELCH GIOVANNY", + "timestamp": "2021-11-15" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "RUSSEL EUNA", - "timestamp": "2020-08-14" + "user": "LANG JARRETT", + "timestamp": "2022-12-30" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "CRIST FRANK", - "timestamp": "2018-01-17" + "user": "RODRIGUEZ EMMITT", + "timestamp": "2020-04-09" } ], "associatedSites": [ { - "dateNoted": "2020-01-22", - "notes": "", - "parcelID": "16375", - "siteID": "15206", - "siteRegistry": true - }, - { - "dateNoted": "2020-11-13", + "dateNoted": "2023-08-06", "notes": "", - "parcelID": "18564", - "siteID": "20942", + "parcelID": "17158", + "siteID": "20283", "siteRegistry": false }, { - "dateNoted": "2013-10-14", + "dateNoted": "2017-01-08", "notes": "", - "parcelID": "17476", - "siteID": "19397", - "siteRegistry": false + "parcelID": "20989", + "siteID": "19593", + "siteRegistry": true } ] }, { - "uuid": "c1212263-9d44-4607-85b0-fdec2aa4c268", - "siteID": 17898, - "address": "18260 Mante Hills", - "latitude": 49.8131, - "longitude": -126.1368, - "lastUpdated": "2022-07-28", - "city": "Tobinside", - "region": "Mainland/Southwest", - "victoriaFile": "26250-20/13209", + "uuid": "449bfb8c-9373-4e07-9949-a311d5eaca34", + "siteID": 20293, + "address": "28030 Zena Wall", + "latitude": 54.2997, + "longitude": -118.8041, + "lastUpdated": "2016-09-01", + "city": "Port Kellieton", + "region": "Vancouver Island/Coast", + "victoriaFile": "26250-20/7123", "regionalFile": "N/A", "parcelIDs": [ - 4983584, - 6117147, - 366877, - 4842412, - 1500627 + 7647119, + 5781911, + 4431268, + 1347989, + 6608570 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2015-12-27", - "completed": "2018-08-01", - "initiated": "2017-08-12", - "ministryContact": "WIEGAND NAME", + "createdAt": "2019-11-09", + "completed": "2020-03-23", + "initiated": "2023-08-11", + "ministryContact": "GRIMES WILHELMINE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -43053,8 +47772,13 @@ "notationParticipants": [ { "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", @@ -43062,13 +47786,13 @@ "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2019-05-20", - "completed": "2020-10-15", - "initiated": "2021-03-06", - "ministryContact": "GREENFELDER VILMA", + "createdAt": "2019-12-08", + "completed": "2023-01-01", + "initiated": "2019-08-08", + "ministryContact": "D'AMORE EUNICE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -43084,26 +47808,31 @@ { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2015-11-01", - "completed": "2018-03-14", - "initiated": "2021-01-08", - "ministryContact": "GREEN CATHERINE", + "createdAt": "2018-02-06", + "completed": "2015-12-08", + "initiated": "2013-10-22", + "ministryContact": "LEUSCHKE HAVEN", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -43112,27 +47841,42 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false - }, + } + ], + "siteRegistry": false + }, + { + "createdAt": "2019-06-08", + "completed": "2018-02-17", + "initiated": "2018-06-07", + "ministryContact": "SCHOWALTER JANIE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false + "role": "REQUESTED BY", + "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true } @@ -43140,10 +47884,10 @@ "siteRegistry": true }, { - "createdAt": "2014-12-19", - "completed": "2017-09-04", - "initiated": "2017-06-07", - "ministryContact": "NICOLAS JOSIAH", + "createdAt": "2016-02-27", + "completed": "2021-08-01", + "initiated": "2020-10-25", + "ministryContact": "GERLACH LAVONNE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -43153,73 +47897,58 @@ "notationParticipants": [ { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false - } - ], - "siteRegistry": false - }, - { - "createdAt": "2021-05-20", - "completed": "2021-01-28", - "initiated": "2023-02-11", - "ministryContact": "JONES AISHA", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ + }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true } ], "participants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2021-11-16", - "startDate": "2019-10-14", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2017-11-26", + "startDate": "2022-02-13", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": true }, { - "name": "AMET, DOLOR SIT", - "endDate": "2018-02-17", - "startDate": "2018-10-27", + "name": "IPSUM", + "endDate": "2021-12-19", + "startDate": "2014-11-29", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2022-03-17", - "startDate": "2014-11-06", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2015-06-29", + "startDate": "2020-07-11", "notes": "", "roles": [ "ORGANIZATION" @@ -43230,166 +47959,167 @@ "suspectLandUses": [ { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-08-12 (described on Site Profile dated 2022-08-12)", + "notes": "INSERTED FOR SITE PROFILE DATED 2022-07-11 (described on Site Profile dated 2022-07-11)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2020-02-28 (described on Site Profile dated 2020-02-28)", + "notes": "INSERTED FOR SITE PROFILE DATED 2019-11-22 (described on Site Profile dated 2019-11-22)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2017-08-14 (described on Site Profile dated 2017-08-14)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + } + ], + "parcelDescriptions": [ + { + "siteRegistry": false, + "dateNoted": "2023-06-05", + "parcelID": "18625", + "crownLandUsePIN": "16461", + "crownLandFileNumber": "18582", + "landDescription": "LOT 4 OF LOT 4 BLOCK 4 DISTRICT LOT 2 PLAN 8059" + }, + { + "siteRegistry": false, + "dateNoted": "2015-05-05", + "parcelID": "17202", + "crownLandUsePIN": "17608", + "crownLandFileNumber": "20375", + "landDescription": "LOT 3 OF LOT 1 BLOCK 1 DISTRICT LOT 4 PLAN 4760" + }, { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-01-10 (described on Site Profile dated 2019-01-10)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "dateNoted": "2014-11-01", + "parcelID": "20842", + "crownLandUsePIN": "17158", + "crownLandFileNumber": "16558", + "landDescription": "LOT 4 OF LOT 4 BLOCK 4 DISTRICT LOT 1 PLAN 3175" }, { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2020-07-20 (described on Site Profile dated 2020-07-20)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "dateNoted": "2022-10-26", + "parcelID": "19950", + "crownLandUsePIN": "17617", + "crownLandFileNumber": "18715", + "landDescription": "LOT 3 OF LOT 3 BLOCK 1 DISTRICT LOT 5 PLAN 5935" }, { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-12-11 (described on Site Profile dated 2016-12-11)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "dateNoted": "2018-05-15", + "parcelID": "18056", + "crownLandUsePIN": "20555", + "crownLandFileNumber": "15339", + "landDescription": "LOT 4 OF LOT 3 BLOCK 4 DISTRICT LOT 5 PLAN 8543" } ], "siteDisclosures": [ { - "siteRegistry": true, - "dateReceived": "2014-03-24", - "dateCompleted": "2019-12-10", - "dateEntered": "2013-11-30", - "dateRegistrar": "2019-07-01", - "dateLocalAuthorityReceived": "2023-05-11", - "summary": "Alias nam repellat rem minus.\nAsperiores dignissimos labore magni amet ullam neque.", - "informationUsed": "Eos maiores alias molestiae dolores molestias distinctio distinctio.\nPerspiciatis praesentium labore expedita.\nFuga non deserunt nesciunt molestiae sequi aut neque veritatis qui.", - "pastOrPresentOrders": "Et beatae voluptatem labore ipsa.\nIpsa recusandae optio id maxime autem.\nOfficiis rem nemo assumenda odio vitae hic.", + "siteRegistry": false, + "dateReceived": "2019-10-24", + "dateCompleted": "2018-07-08", + "dateEntered": "2020-07-11", + "dateRegistrar": "2021-03-26", + "dateLocalAuthorityReceived": "2019-10-29", + "summary": "Molestias ad sint tempore laboriosam maiores.\nMagni natus officiis quia sit ex sapiente sit officia.\nQuidem exercitationem id.", + "informationUsed": "Animi quo excepturi ratione facilis fuga.\nNecessitatibus sunt earum incidunt illum exercitationem.\nDolor voluptatum modi consequatur illum facilis eligendi.\nQui earum beatae ipsum quasi occaecati fugiat.", + "pastOrPresentOrders": "Voluptatibus deserunt nesciunt ab.", "commercialAndIndustrialPurposes": [ { - "scheduleReference": "F2*", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true + "siteRegistry": false }, { "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true } ] } ], "activityLog": [ - { - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "HAHN LORENA", - "timestamp": "2018-09-21" - }, - { - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "SCHULTZ BOBBY", - "timestamp": "2015-05-21" - }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "WILLIAMSON HASSIE", - "timestamp": "2019-03-03" + "user": "KLEIN HAILEY", + "timestamp": "2017-07-24" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "MURPHY CORALIE", - "timestamp": "2019-09-01" - }, - { - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "SPINKA BOYD", - "timestamp": "2018-06-02" - }, - { - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "BATZ BAYLEE", - "timestamp": "2021-05-14" + "user": "WAELCHI MELISA", + "timestamp": "2020-03-24" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "THIEL SYDNI", - "timestamp": "2019-03-07" + "user": "RUECKER-QUIGLEY ELDRED", + "timestamp": "2015-04-25" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "HILLS MARLEY", - "timestamp": "2020-01-13" + "user": "EFFERTZ AMY", + "timestamp": "2019-01-22" }, { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "BERGE GARTH", - "timestamp": "2019-07-17" + "user": "HESSEL RACHELLE", + "timestamp": "2016-12-24" }, { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "GULGOWSKI KYLER", - "timestamp": "2020-07-24" + "user": "TREUTEL SILAS", + "timestamp": "2019-01-03" } ], "associatedSites": [ { - "dateNoted": "2015-01-21", - "notes": "", - "parcelID": "18052", - "siteID": "19041", - "siteRegistry": false - }, - { - "dateNoted": "2019-07-25", + "dateNoted": "2016-10-16", "notes": "", - "parcelID": "18039", - "siteID": "19103", + "parcelID": "17130", + "siteID": "20549", "siteRegistry": true }, { - "dateNoted": "2020-04-03", + "dateNoted": "2014-04-14", "notes": "", - "parcelID": "20532", - "siteID": "17411", - "siteRegistry": false + "parcelID": "17050", + "siteID": "20268", + "siteRegistry": true } ] }, { - "uuid": "3cb26cca-23b2-429b-a76f-87d31045902e", - "siteID": 17155, - "address": "58972 McCullough Place", - "latitude": 48.6828, - "longitude": -118.314, - "lastUpdated": "2013-12-28", - "city": "Orem", - "region": "Thompson-Okanagan", - "victoriaFile": "26250-20/15334", + "uuid": "52b65a89-6779-4d12-b30d-697c567a733c", + "siteID": 18292, + "address": "8323 Collier Unions", + "latitude": 57.6942, + "longitude": -127.762, + "lastUpdated": "2014-11-06", + "city": "West Niko", + "region": " North Coast", + "victoriaFile": "26250-20/17642", "regionalFile": "N/A", "parcelIDs": [ - 4609462, - 7990295, - 9319461, - 7165135, - 4126510 + 6255720, + 6282942, + 6265642, + 6079274, + 3590828 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2021-03-24", - "completed": "2019-12-30", - "initiated": "2021-10-31", - "ministryContact": "SCHOWALTER JOHNSON", + "createdAt": "2014-03-24", + "completed": "2014-02-18", + "initiated": "2017-05-24", + "ministryContact": "ROWE ISAIAH", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -43400,31 +48130,26 @@ { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2023-06-11", - "completed": "2020-03-20", - "initiated": "2019-02-05", - "ministryContact": "ROWE HATTIE", + "createdAt": "2018-01-08", + "completed": "2014-10-31", + "initiated": "2014-09-10", + "ministryContact": "KREIGER DIEGO", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -43434,12 +48159,12 @@ "notationParticipants": [ { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": false }, { @@ -43451,10 +48176,10 @@ "siteRegistry": false }, { - "createdAt": "2019-12-01", - "completed": "2015-05-12", - "initiated": "2019-01-22", - "ministryContact": "NIKOLAUS ARCH", + "createdAt": "2021-10-30", + "completed": "2016-10-10", + "initiated": "2018-01-28", + "ministryContact": "STOKES FRANCO", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -43465,13 +48190,48 @@ { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "createdAt": "2018-04-01", + "completed": "2023-08-06", + "initiated": "2022-06-17", + "ministryContact": "WAELCHI JODY", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", @@ -43483,115 +48243,90 @@ ], "participants": [ { - "name": "AMET, DOLOR SIT", - "endDate": "2020-01-05", - "startDate": "2013-11-28", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2022-09-05", + "startDate": "2017-11-05", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": true }, { "name": "IPSUM", - "endDate": "2018-07-28", - "startDate": "2016-05-01", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": false - }, - { - "name": "AMET, DOLOR SIT", - "endDate": "2020-03-24", - "startDate": "2013-11-11", + "endDate": "2023-05-17", + "startDate": "2018-12-12", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2015-12-22", - "startDate": "2017-05-29", - "notes": "", - "roles": [ - "EMPLOYEE" - ], "siteRegistry": true } ], "suspectLandUses": [ - { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-01-09 (described on Site Profile dated 2014-01-09)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" - }, { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-04-03 (described on Site Profile dated 2019-04-03)", + "notes": "INSERTED FOR SITE PROFILE DATED 2018-05-08 (described on Site Profile dated 2018-05-08)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-01-01 (described on Site Profile dated 2021-01-01)", + "notes": "INSERTED FOR SITE PROFILE DATED 2019-10-29 (described on Site Profile dated 2019-10-29)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2020-02-27 (described on Site Profile dated 2020-02-27)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + } + ], + "parcelDescriptions": [ { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2020-11-03 (described on Site Profile dated 2020-11-03)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "dateNoted": "2021-07-30", + "parcelID": "16040", + "crownLandUsePIN": "20303", + "crownLandFileNumber": "17002", + "landDescription": "LOT 2 OF LOT 2 BLOCK 3 DISTRICT LOT 1 PLAN 8122" + }, + { + "siteRegistry": true, + "dateNoted": "2016-07-10", + "parcelID": "16764", + "crownLandUsePIN": "15612", + "crownLandFileNumber": "19290", + "landDescription": "LOT 4 OF LOT 1 BLOCK 4 DISTRICT LOT 2 PLAN 3468" } ], "siteDisclosures": [ { "siteRegistry": true, - "dateReceived": "2020-09-01", - "dateCompleted": "2023-04-10", - "dateEntered": "2013-12-08", - "dateRegistrar": "2020-07-15", - "dateLocalAuthorityReceived": "2016-08-13", - "summary": "Excepturi magnam sint officiis dolor molestias deserunt tenetur sed.\nIncidunt corporis cumque.\nDolorum nulla animi in nostrum.", - "informationUsed": "Cumque doloremque quidem quidem illo nulla.\nOmnis ipsa fugiat hic.\nDicta at quia totam.\nConsectetur saepe autem iste officia assumenda ipsum odio amet modi.", - "pastOrPresentOrders": "Placeat quia nulla voluptates perspiciatis possimus tempore aliquam.", + "dateReceived": "2022-10-12", + "dateCompleted": "2023-01-05", + "dateEntered": "2019-01-10", + "dateRegistrar": "2019-02-19", + "dateLocalAuthorityReceived": "2016-02-04", + "summary": "Culpa vitae accusantium fugit labore consequuntur illum dolorem amet nemo.", + "informationUsed": "Non fugit enim qui exercitationem beatae amet.\nConsequuntur veniam non necessitatibus aliquam eum.\nSed quia velit quia.\nCorrupti inventore sint dicta impedit molestiae culpa rem ab ipsam.", + "pastOrPresentOrders": "Libero iusto porro eius doloribus nulla incidunt error.", "commercialAndIndustrialPurposes": [ { - "scheduleReference": "F1*", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false + "siteRegistry": true }, { - "scheduleReference": "F2*", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, { "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true - } - ] - }, - { - "siteRegistry": true, - "dateReceived": "2018-10-26", - "dateCompleted": "2016-05-25", - "dateEntered": "2016-07-17", - "dateRegistrar": "2014-10-21", - "dateLocalAuthorityReceived": "2019-07-23", - "summary": "Numquam iure quia nobis deserunt iste nam saepe occaecati.", - "informationUsed": "Explicabo odio numquam.\nMagnam libero corporis modi non sunt dolore voluptate.\nEnim illum natus esse.", - "pastOrPresentOrders": "Sequi ea tempore maiores delectus sint ut deleniti facere ratione.\nSaepe reiciendis molestiae cumque similique animi ipsum possimus.", - "commercialAndIndustrialPurposes": [ - { - "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, { - "scheduleReference": "F2*", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true } @@ -43602,93 +48337,113 @@ { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "ZIEME AUGUST", - "timestamp": "2020-04-26" + "user": "CORWIN DAVIN", + "timestamp": "2015-04-04" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "BEIER MARIANA", - "timestamp": "2015-10-10" + "user": "PARISIAN TERRANCE", + "timestamp": "2023-03-06" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "FRIESEN NICOLETTE", - "timestamp": "2017-07-17" + "user": "SKILES ATHENA", + "timestamp": "2016-03-30" }, { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "MAGGIO BIRDIE", - "timestamp": "2021-06-14" + "user": "BEAHAN ERICH", + "timestamp": "2018-07-22" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "BARTON GERHARD", - "timestamp": "2020-05-07" + "user": "BATZ LEONIE", + "timestamp": "2021-08-11" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "GRIMES LAZARO", - "timestamp": "2019-04-11" + "user": "PFANNERSTILL MAKENZIE", + "timestamp": "2020-02-28" }, { - "siteRegistry": true, + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "LEHNER KAMREN", - "timestamp": "2015-01-12" + "user": "WALSH CHADD", + "timestamp": "2018-10-09" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "SCHIMMEL NOEMIE", - "timestamp": "2016-06-29" + "user": "LINDGREN GENERAL", + "timestamp": "2018-03-26" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "HARBER ARLENE", - "timestamp": "2015-09-16" + "user": "NOLAN PAULINE", + "timestamp": "2020-12-17" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "GOYETTE MINERVA", + "timestamp": "2017-04-22" } ], "associatedSites": [ { - "dateNoted": "2018-02-24", + "dateNoted": "2014-05-12", + "notes": "", + "parcelID": "20901", + "siteID": "18529", + "siteRegistry": false + }, + { + "dateNoted": "2019-10-04", + "notes": "", + "parcelID": "18968", + "siteID": "17116", + "siteRegistry": false + }, + { + "dateNoted": "2018-10-07", "notes": "", - "parcelID": "19649", - "siteID": "16870", + "parcelID": "20158", + "siteID": "20574", "siteRegistry": true } ] }, { - "uuid": "ddfc46e5-a05e-4283-975b-16f437e41977", - "siteID": 18840, - "address": "161 Winston Ways", - "latitude": 53.5103, - "longitude": -125.4358, - "lastUpdated": "2019-11-12", - "city": "Anaheim", - "region": "Kootenay", - "victoriaFile": "26250-20/18634", + "uuid": "7a6703aa-c2ad-4e04-bb62-7f359545fa78", + "siteID": 20221, + "address": "41575 Itzel Mountains", + "latitude": 50.6899, + "longitude": -124.5518, + "lastUpdated": "2016-06-29", + "city": "Schinnerchester", + "region": " North Coast", + "victoriaFile": "26250-20/10688", "regionalFile": "N/A", "parcelIDs": [ - 1792785, - 868911, - 4617060, - 9595062, - 3994119 + 2424016, + 6910714, + 2108279, + 8348936, + 9708150 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2017-03-22", - "completed": "2018-03-02", - "initiated": "2014-03-09", - "ministryContact": "D'AMORE PEARL", + "createdAt": "2017-09-09", + "completed": "2017-09-15", + "initiated": "2016-09-30", + "ministryContact": "SAUER DENIS", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -43697,27 +48452,12 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false } @@ -43725,10 +48465,10 @@ "siteRegistry": true }, { - "createdAt": "2017-09-12", - "completed": "2019-03-11", - "initiated": "2022-11-26", - "ministryContact": "RUSSEL ZITA", + "createdAt": "2021-09-04", + "completed": "2022-01-06", + "initiated": "2017-07-27", + "ministryContact": "O'KON PINKIE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -43738,189 +48478,235 @@ "notationParticipants": [ { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true } ], "participants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2014-03-19", - "startDate": "2022-02-17", + "name": "IPSUM", + "endDate": "2018-08-25", + "startDate": "2017-11-07", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2016-07-27", - "startDate": "2017-06-20", + "name": "IPSUM", + "endDate": "2021-04-18", + "startDate": "2020-02-10", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], - "siteRegistry": false + "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2015-06-08", - "startDate": "2018-01-14", + "name": "IPSUM", + "endDate": "2021-07-15", + "startDate": "2019-10-11", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], - "siteRegistry": true + "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2023-02-25", - "startDate": "2018-01-12", + "name": "AMET, DOLOR SIT", + "endDate": "2015-08-14", + "startDate": "2021-11-16", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false } ], "suspectLandUses": [ + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2020-05-09 (described on Site Profile dated 2020-05-09)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2015-12-16 (described on Site Profile dated 2015-12-16)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-09-25 (described on Site Profile dated 2016-09-25)", + "notes": "INSERTED FOR SITE PROFILE DATED 2021-01-09 (described on Site Profile dated 2021-01-09)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2017-08-21 (described on Site Profile dated 2017-08-21)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + } + ], + "parcelDescriptions": [ + { + "siteRegistry": false, + "dateNoted": "2019-01-24", + "parcelID": "18495", + "crownLandUsePIN": "20026", + "crownLandFileNumber": "16558", + "landDescription": "LOT 3 OF LOT 4 BLOCK 1 DISTRICT LOT 4 PLAN 8199" }, { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-11-17 (described on Site Profile dated 2017-11-17)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "dateNoted": "2022-10-30", + "parcelID": "18807", + "crownLandUsePIN": "16405", + "crownLandFileNumber": "15725", + "landDescription": "LOT 1 OF LOT 2 BLOCK 5 DISTRICT LOT 2 PLAN 5557" + }, + { + "siteRegistry": false, + "dateNoted": "2020-01-03", + "parcelID": "16618", + "crownLandUsePIN": "16138", + "crownLandFileNumber": "15376", + "landDescription": "LOT 5 OF LOT 5 BLOCK 5 DISTRICT LOT 2 PLAN 4465" + }, + { + "siteRegistry": false, + "dateNoted": "2019-11-08", + "parcelID": "16012", + "crownLandUsePIN": "18726", + "crownLandFileNumber": "18169", + "landDescription": "LOT 5 OF LOT 1 BLOCK 5 DISTRICT LOT 3 PLAN 9442" + }, + { + "siteRegistry": false, + "dateNoted": "2018-05-09", + "parcelID": "18925", + "crownLandUsePIN": "18908", + "crownLandFileNumber": "20567", + "landDescription": "LOT 2 OF LOT 1 BLOCK 3 DISTRICT LOT 5 PLAN 8388" } ], "siteDisclosures": [ { - "siteRegistry": true, - "dateReceived": "2020-04-20", - "dateCompleted": "2023-03-16", - "dateEntered": "2021-01-09", - "dateRegistrar": "2017-04-15", - "dateLocalAuthorityReceived": "2014-06-24", - "summary": "Nostrum voluptatum enim sint dicta hic magni qui ea.", - "informationUsed": "Similique minus numquam illo atque aut.\nIllum eum sequi mollitia laudantium enim doloremque accusantium commodi.\nEx at assumenda voluptates qui doloremque commodi quas occaecati dolor.\nAspernatur voluptatum error natus velit.\nAspernatur id eius pariatur tempore tempora commodi.", - "pastOrPresentOrders": "Ut deserunt itaque ipsa aperiam enim repellendus animi.", + "siteRegistry": false, + "dateReceived": "2022-07-09", + "dateCompleted": "2018-04-16", + "dateEntered": "2020-09-17", + "dateRegistrar": "2018-04-09", + "dateLocalAuthorityReceived": "2020-11-10", + "summary": "Eligendi ipsam vero cupiditate quaerat totam.\nVoluptatum accusantium sapiente expedita modi nobis dicta omnis cupiditate.", + "informationUsed": "Blanditiis nihil odit officiis adipisci iure.\nPariatur tempora amet odio quod et facilis sunt.\nFuga quibusdam vero quas.\nEveniet numquam quidem ab molestias.\nCumque sit rerum.", + "pastOrPresentOrders": "Reprehenderit deserunt quos sunt.\nQuaerat reiciendis in rerum deserunt veniam.", "commercialAndIndustrialPurposes": [ { - "scheduleReference": "F1*", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, { "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true - }, - { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true + "siteRegistry": false } ] } ], "activityLog": [ - { - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "PRICE EDGAR", - "timestamp": "2016-07-16" - }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "KRAJCIK KURT", - "timestamp": "2015-04-16" + "user": "HETTINGER ROSEMARY", + "timestamp": "2023-09-19" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "MARKS EMMALEE", - "timestamp": "2018-06-11" + "user": "OSINSKI COOPER", + "timestamp": "2014-11-01" }, { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "CROOKS AMARA", - "timestamp": "2020-05-29" + "user": "LANGWORTH KIEL", + "timestamp": "2020-07-07" }, { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "REMPEL MEGANE", - "timestamp": "2014-10-02" + "user": "HOPPE ALFREDO", + "timestamp": "2018-09-01" }, { - "siteRegistry": true, + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "COLE FLETA", - "timestamp": "2022-04-26" + "user": "YUNDT LESLEY", + "timestamp": "2014-01-07" } ], "associatedSites": [ { - "dateNoted": "2015-06-08", + "dateNoted": "2022-07-29", "notes": "", - "parcelID": "20187", - "siteID": "19041", - "siteRegistry": false + "parcelID": "17220", + "siteID": "18281", + "siteRegistry": true }, { - "dateNoted": "2014-04-22", + "dateNoted": "2016-11-05", "notes": "", - "parcelID": "19353", - "siteID": "15706", + "parcelID": "17306", + "siteID": "17982", "siteRegistry": false }, { - "dateNoted": "2018-12-21", + "dateNoted": "2014-09-08", "notes": "", - "parcelID": "15827", - "siteID": "15327", - "siteRegistry": true + "parcelID": "20237", + "siteID": "20963", + "siteRegistry": false } ] }, { - "uuid": "bc834d97-5bb7-41b3-a4e5-2899992d38bc", - "siteID": 19118, - "address": "22632 Gregorio Forge", - "latitude": 51.1211, - "longitude": -129.8848, - "lastUpdated": "2019-06-10", - "city": "Clementinehaven", - "region": "Thompson-Okanagan", - "victoriaFile": "26250-20/4887", + "uuid": "958bb8d1-95d9-44d2-a7e2-834a3c1c9da4", + "siteID": 15420, + "address": "70129 Sylvester Walk", + "latitude": 51.3278, + "longitude": -130.8616, + "lastUpdated": "2015-07-23", + "city": "Gleasonberg", + "region": "Kootenay", + "victoriaFile": "26250-20/13448", "regionalFile": "N/A", "parcelIDs": [ - 3759121, - 3100509, - 8218532, - 8020819, - 2723680 + 1904127, + 2522044, + 415790, + 7737916, + 8540933 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2015-08-29", - "completed": "2013-11-17", - "initiated": "2019-09-03", - "ministryContact": "MONAHAN VIRGIE", + "createdAt": "2021-08-01", + "completed": "2017-01-26", + "initiated": "2018-07-31", + "ministryContact": "SCHMITT MEGGIE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -43930,6 +48716,16 @@ "notationParticipants": [ { "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true }, @@ -43941,16 +48737,41 @@ { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "createdAt": "2018-04-28", + "completed": "2023-08-06", + "initiated": "2023-09-16", + "ministryContact": "ERDMAN BIRDIE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": true } ], "siteRegistry": false }, { - "createdAt": "2020-10-21", - "completed": "2015-12-07", - "initiated": "2020-06-21", - "ministryContact": "CARTWRIGHT HARMON", + "createdAt": "2017-06-17", + "completed": "2021-06-22", + "initiated": "2022-01-15", + "ministryContact": "OLSON ENOCH", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -43959,33 +48780,33 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2022-06-26", - "completed": "2018-07-13", - "initiated": "2015-06-20", - "ministryContact": "HAND LUCIO", + "createdAt": "2023-01-14", + "completed": "2020-10-09", + "initiated": "2017-12-02", + "ministryContact": "SCHADEN BERNITA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -43994,124 +48815,117 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false + "role": "SUBMITTED BY", + "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true } ], "participants": [ { "name": "AMET, DOLOR SIT", - "endDate": "2020-07-18", - "startDate": "2015-10-27", + "endDate": "2017-06-19", + "startDate": "2023-08-17", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": false - }, - { - "name": "IPSUM", - "endDate": "2018-06-06", - "startDate": "2017-02-17", - "notes": "", - "roles": [ - "EMPLOYEE" - ], "siteRegistry": true }, { - "name": "IPSUM", - "endDate": "2019-07-21", - "startDate": "2020-09-28", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2014-02-28", + "startDate": "2021-10-06", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": false - }, - { - "name": "IPSUM", - "endDate": "2021-12-25", - "startDate": "2019-07-17", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": false + "siteRegistry": true } ], "suspectLandUses": [ { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-11-12 (described on Site Profile dated 2018-11-12)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2018-08-09 (described on Site Profile dated 2018-08-09)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-06-02 (described on Site Profile dated 2017-06-02)", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2022-10-04 (described on Site Profile dated 2022-10-04)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2023-05-30 (described on Site Profile dated 2023-05-30)", + "notes": "INSERTED FOR SITE PROFILE DATED 2016-01-27 (described on Site Profile dated 2016-01-27)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-04-30 (described on Site Profile dated 2016-04-30)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" - }, + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2019-06-01 (described on Site Profile dated 2019-06-01)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + } + ], + "parcelDescriptions": [ { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-07-12 (described on Site Profile dated 2015-07-12)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "dateNoted": "2019-10-05", + "parcelID": "18132", + "crownLandUsePIN": "17593", + "crownLandFileNumber": "20349", + "landDescription": "LOT 3 OF LOT 4 BLOCK 5 DISTRICT LOT 5 PLAN 5378" + }, + { + "siteRegistry": true, + "dateNoted": "2014-01-15", + "parcelID": "18247", + "crownLandUsePIN": "20942", + "crownLandFileNumber": "15795", + "landDescription": "LOT 5 OF LOT 2 BLOCK 1 DISTRICT LOT 4 PLAN 9103" } ], "siteDisclosures": [ { "siteRegistry": true, - "dateReceived": "2021-10-17", - "dateCompleted": "2023-03-30", - "dateEntered": "2021-03-30", - "dateRegistrar": "2016-04-27", - "dateLocalAuthorityReceived": "2017-02-26", - "summary": "Molestiae ullam expedita veniam placeat unde et quo eius.\nQuae deleniti eum.", - "informationUsed": "Exercitationem quisquam at quisquam in perspiciatis dicta modi excepturi esse.\nQuos qui laboriosam doloremque.\nIllo velit commodi impedit aut.\nRem aspernatur quam hic facilis quaerat ab beatae quibusdam.\nDolore reiciendis consectetur repudiandae autem corrupti ea.", - "pastOrPresentOrders": "Dicta numquam rem.\nSaepe rem iste eius saepe dolores.\nDucimus impedit odit ut.", + "dateReceived": "2022-12-25", + "dateCompleted": "2014-06-22", + "dateEntered": "2018-05-23", + "dateRegistrar": "2016-11-10", + "dateLocalAuthorityReceived": "2017-10-22", + "summary": "Culpa similique tenetur blanditiis eaque laudantium.", + "informationUsed": "Dolor sunt quidem perspiciatis labore repellendus ipsam numquam sequi.\nId voluptatum laboriosam maxime tenetur aperiam voluptas.\nQuasi repellat voluptatum libero assumenda aut.\nEius modi delectus beatae occaecati odio.", + "pastOrPresentOrders": "Asperiores maxime id reprehenderit laborum quae ipsum nesciunt.", "commercialAndIndustrialPurposes": [ { "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true }, { "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false - }, - { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false } ] } @@ -44120,81 +48934,81 @@ { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "HILPERT BRENNA", - "timestamp": "2020-09-04" + "user": "KIRLIN SHANY", + "timestamp": "2022-06-22" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "ARMSTRONG ONIE", - "timestamp": "2014-12-06" + "user": "FEENEY MAKAYLA", + "timestamp": "2019-01-28" }, { - "siteRegistry": true, + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "VANDERVORT BEAU", - "timestamp": "2019-05-05" + "user": "FEENEY SHANNY", + "timestamp": "2023-08-31" }, { - "siteRegistry": true, + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "RIPPIN DARIEN", - "timestamp": "2022-12-08" + "user": "MOHR LOU", + "timestamp": "2014-04-19" }, { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "BINS DAGMAR", - "timestamp": "2022-11-29" + "user": "SMITHAM ANNABELL", + "timestamp": "2015-09-04" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "GOODWIN ALEXANDRO", - "timestamp": "2014-06-01" + "user": "PFANNERSTILL MABLE", + "timestamp": "2020-01-03" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "MULLER KEVEN", - "timestamp": "2015-08-20" + "user": "HERMANN BRYCEN", + "timestamp": "2016-06-27" } ], "associatedSites": [ { - "dateNoted": "2023-02-08", + "dateNoted": "2022-08-18", "notes": "", - "parcelID": "16447", - "siteID": "20967", + "parcelID": "19800", + "siteID": "19593", "siteRegistry": true } ] }, { - "uuid": "a169df8f-2e7d-4fb4-9963-5fae43683d87", - "siteID": 16617, - "address": "35418 DuBuque Park", - "latitude": 49.062, - "longitude": -128.6743, - "lastUpdated": "2017-07-15", - "city": "West Lila", + "uuid": "fe1fef30-0e7b-4c3a-addb-f0c08cc85fb8", + "siteID": 15952, + "address": "185 Dagmar Spring", + "latitude": 52.9524, + "longitude": -128.2345, + "lastUpdated": "2015-01-30", + "city": "Virginiemouth", "region": "Kootenay", - "victoriaFile": "26250-20/3090", + "victoriaFile": "26250-20/18354", "regionalFile": "N/A", "parcelIDs": [ - 3734211, - 4654516, - 9858810, - 6702782, - 2595831 + 8044199, + 3856566, + 4245686, + 1149236, + 4171728 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2014-09-04", - "completed": "2021-03-20", - "initiated": "2018-01-26", - "ministryContact": "SCHUMM KELLEN", + "createdAt": "2018-07-17", + "completed": "2023-01-06", + "initiated": "2022-11-27", + "ministryContact": "HALEY BRUCE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -44203,10 +49017,20 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", @@ -44218,13 +49042,13 @@ "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2022-07-29", - "completed": "2014-08-15", - "initiated": "2016-11-17", - "ministryContact": "OBERBRUNNER ASSUNTA", + "createdAt": "2016-03-20", + "completed": "2022-02-27", + "initiated": "2016-12-24", + "ministryContact": "JENKINS JARRETT", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -44232,6 +49056,11 @@ "" ], "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", @@ -44240,16 +49069,21 @@ { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true } ], "siteRegistry": true }, { - "createdAt": "2015-09-13", - "completed": "2013-12-07", - "initiated": "2023-01-25", - "ministryContact": "LINDGREN JERAMIE", + "createdAt": "2019-01-12", + "completed": "2015-01-14", + "initiated": "2020-12-30", + "ministryContact": "CONNELLY ROSALIND", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -44269,17 +49103,17 @@ }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true + "role": "REQUESTED BY", + "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2020-05-09", - "completed": "2016-04-01", - "initiated": "2015-05-22", - "ministryContact": "SPENCER DESSIE", + "createdAt": "2015-09-26", + "completed": "2021-08-08", + "initiated": "2018-08-01", + "ministryContact": "SCHADEN-WILDERMAN FAUSTO", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -44287,15 +49121,10 @@ "" ], "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", @@ -44303,34 +49132,24 @@ "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false } ], "participants": [ { - "name": "IPSUM", - "endDate": "2021-03-16", - "startDate": "2017-02-17", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2019-01-15", - "startDate": "2016-07-24", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2015-05-06", + "startDate": "2016-03-26", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true }, { - "name": "IPSUM", - "endDate": "2015-10-22", - "startDate": "2017-05-24", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2022-01-13", + "startDate": "2023-07-15", "notes": "", "roles": [ "ORGANIZATION" @@ -44340,43 +49159,85 @@ ], "suspectLandUses": [ { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-05-23 (described on Site Profile dated 2021-05-23)", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2015-05-05 (described on Site Profile dated 2015-05-05)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2023-09-14 (described on Site Profile dated 2023-09-14)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-08-28 (described on Site Profile dated 2022-08-28)", + "notes": "INSERTED FOR SITE PROFILE DATED 2018-04-13 (described on Site Profile dated 2018-04-13)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2014-05-14 (described on Site Profile dated 2014-05-14)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-05-20 (described on Site Profile dated 2021-05-20)", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2022-01-05 (described on Site Profile dated 2022-01-05)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + } + ], + "parcelDescriptions": [ + { + "siteRegistry": true, + "dateNoted": "2017-06-25", + "parcelID": "17872", + "crownLandUsePIN": "15267", + "crownLandFileNumber": "19431", + "landDescription": "LOT 4 OF LOT 1 BLOCK 4 DISTRICT LOT 5 PLAN 5605" }, { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-09-13 (described on Site Profile dated 2019-09-13)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "dateNoted": "2017-06-27", + "parcelID": "17941", + "crownLandUsePIN": "16653", + "crownLandFileNumber": "20110", + "landDescription": "LOT 2 OF LOT 2 BLOCK 3 DISTRICT LOT 1 PLAN 4890" + }, + { + "siteRegistry": true, + "dateNoted": "2021-11-11", + "parcelID": "15942", + "crownLandUsePIN": "15329", + "crownLandFileNumber": "19091", + "landDescription": "LOT 4 OF LOT 4 BLOCK 3 DISTRICT LOT 1 PLAN 4937" + }, + { + "siteRegistry": false, + "dateNoted": "2018-08-29", + "parcelID": "15429", + "crownLandUsePIN": "16226", + "crownLandFileNumber": "15941", + "landDescription": "LOT 5 OF LOT 5 BLOCK 4 DISTRICT LOT 5 PLAN 5699" + }, + { + "siteRegistry": true, + "dateNoted": "2023-09-15", + "parcelID": "16480", + "crownLandUsePIN": "17182", + "crownLandFileNumber": "19509", + "landDescription": "LOT 4 OF LOT 1 BLOCK 1 DISTRICT LOT 1 PLAN 8924" } ], "siteDisclosures": [ { "siteRegistry": true, - "dateReceived": "2022-09-20", - "dateCompleted": "2022-08-05", - "dateEntered": "2019-11-07", - "dateRegistrar": "2019-03-24", - "dateLocalAuthorityReceived": "2014-09-20", - "summary": "Ullam quaerat iusto minima.\nConsectetur provident et aperiam fugit aliquam dolorum mollitia.", - "informationUsed": "Esse iure libero deleniti dicta.\nVoluptatibus quo quam quos dicta ipsa molestias.\nQuaerat nostrum perspiciatis.", - "pastOrPresentOrders": "Inventore laborum dolor neque nam harum officia.\nEnim hic quisquam ullam dolore ad.\nImpedit ipsam distinctio et repudiandae accusantium odio molestias sit quo.", + "dateReceived": "2021-01-22", + "dateCompleted": "2015-12-06", + "dateEntered": "2018-01-04", + "dateRegistrar": "2019-10-14", + "dateLocalAuthorityReceived": "2016-11-19", + "summary": "Eveniet cupiditate eius sed.\nDeleniti quae fugit ducimus ducimus adipisci velit.\nCorrupti iure ab.", + "informationUsed": "Labore dignissimos reiciendis numquam velit nihil tempore quibusdam libero.\nNatus libero cumque blanditiis rerum delectus quod ipsam optio maxime.\nRepudiandae dolore facilis odio nisi expedita.\nDeleniti labore aspernatur omnis quo adipisci sit est.\nUt nihil illum sint culpa voluptatibus iure dicta.", + "pastOrPresentOrders": "Fugit provident voluptatum.\nNisi debitis aliquam assumenda repellat at.\nAmet sed voluptate harum incidunt impedit ex sequi officia sint.", "commercialAndIndustrialPurposes": [ - { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false - }, { "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", @@ -44384,31 +49245,31 @@ }, { "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false } ] }, { "siteRegistry": true, - "dateReceived": "2019-06-06", - "dateCompleted": "2014-06-19", - "dateEntered": "2016-01-02", - "dateRegistrar": "2016-07-19", - "dateLocalAuthorityReceived": "2014-05-26", - "summary": "Accusantium ut nisi.\nExplicabo vel blanditiis natus architecto.", - "informationUsed": "Earum veniam fugiat eum dignissimos minus voluptas culpa.\nDeleniti ullam laboriosam quaerat ab nulla minus libero voluptate maxime.\nAutem assumenda illum nihil quas deserunt.", - "pastOrPresentOrders": "Maiores quod sit et ea.", + "dateReceived": "2017-05-30", + "dateCompleted": "2015-07-11", + "dateEntered": "2018-12-11", + "dateRegistrar": "2018-07-18", + "dateLocalAuthorityReceived": "2021-11-22", + "summary": "Fugiat fugit tenetur laboriosam.\nMolestiae saepe incidunt sint voluptatum beatae doloribus omnis enim.", + "informationUsed": "Qui quos dolorem impedit.\nVel dolorum distinctio.\nSoluta vel fuga ab tempora vitae.\nCum occaecati eius id voluptatem ducimus.", + "pastOrPresentOrders": "Saepe magni labore sint hic eveniet assumenda.\nAliquid ipsum facilis nesciunt ab hic quos.", "commercialAndIndustrialPurposes": [ { "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false }, { - "scheduleReference": "F2*", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false + "siteRegistry": true } ] } @@ -44417,82 +49278,100 @@ { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "KRIS GERARD", - "timestamp": "2015-02-13" + "user": "DAUGHERTY JACKELINE", + "timestamp": "2021-02-22" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "HEIDENREICH ROWLAND", - "timestamp": "2019-09-16" + "user": "WISOZK TRISTIN", + "timestamp": "2015-12-10" }, { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "LOWE SYDNIE", - "timestamp": "2022-01-24" + "user": "BERGNAUM LUIS", + "timestamp": "2019-09-13" }, { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "ORTIZ-KAUTZER ABBY", - "timestamp": "2023-07-31" + "user": "KUVALIS JAYSON", + "timestamp": "2023-06-14" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "DOUGLAS JO", - "timestamp": "2014-05-22" + "user": "KONOPELSKI NATHANAEL", + "timestamp": "2018-05-04" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "HARTMANN MIGUEL", + "timestamp": "2021-08-14" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "MURPHY KACIE", + "timestamp": "2021-03-11" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "DAUGHERTY IVA", + "timestamp": "2022-10-16" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "NICOLAS CHARLENE", - "timestamp": "2018-04-26" + "user": "CORKERY CAMILLA", + "timestamp": "2021-12-06" } ], "associatedSites": [ { - "dateNoted": "2018-06-10", + "dateNoted": "2019-01-29", "notes": "", - "parcelID": "18937", - "siteID": "17854", + "parcelID": "16945", + "siteID": "16392", "siteRegistry": false }, { - "dateNoted": "2014-10-05", + "dateNoted": "2015-04-28", "notes": "", - "parcelID": "18971", - "siteID": "18123", + "parcelID": "17653", + "siteID": "19984", "siteRegistry": true } ] }, { - "uuid": "92775d4e-569c-439f-b35f-f19804013431", - "siteID": 15327, - "address": "441 Andrew Union", - "latitude": 52.8336, - "longitude": -128.6186, - "lastUpdated": "2013-11-20", - "city": "Lake Gunner", - "region": "Cariboo", - "victoriaFile": "26250-20/11482", + "uuid": "21fc39ce-464a-445d-9add-b8f41be97cd9", + "siteID": 16278, + "address": "477 Therese Point", + "latitude": 57.1968, + "longitude": -123.4345, + "lastUpdated": "2021-12-24", + "city": "Suffolk", + "region": "Mainland/Southwest", + "victoriaFile": "26250-20/11317", "regionalFile": "N/A", "parcelIDs": [ - 7904144, - 6999086, - 4705771, - 2665412, - 2581360 + 3727971, + 6847423, + 8770521, + 9293385, + 2631664 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2016-10-22", - "completed": "2022-02-05", - "initiated": "2017-11-12", - "ministryContact": "GREEN ELENOR", + "createdAt": "2023-03-06", + "completed": "2023-05-26", + "initiated": "2017-11-06", + "ministryContact": "CRONA DELBERT", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -44502,22 +49381,57 @@ "notationParticipants": [ { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": false }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "createdAt": "2016-09-17", + "completed": "2018-02-23", + "initiated": "2014-12-04", + "ministryContact": "WOLF CHARLEY", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2019-06-15", - "completed": "2021-04-08", - "initiated": "2021-12-12", - "ministryContact": "FISHER NEAL", + "createdAt": "2023-06-08", + "completed": "2017-01-22", + "initiated": "2016-02-24", + "ministryContact": "WISOZK VELVA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -44527,7 +49441,7 @@ "notationParticipants": [ { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false }, { @@ -44536,13 +49450,18 @@ "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": false } ], @@ -44551,55 +49470,104 @@ ], "participants": [ { - "name": "IPSUM", - "endDate": "2019-02-13", - "startDate": "2018-02-11", + "name": "AMET, DOLOR SIT", + "endDate": "2020-11-10", + "startDate": "2017-02-26", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2022-12-11", - "startDate": "2020-05-21", + "name": "AMET, DOLOR SIT", + "endDate": "2014-07-21", + "startDate": "2017-08-31", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true } ], "suspectLandUses": [ + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2021-10-31 (described on Site Profile dated 2021-10-31)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-09-16 (described on Site Profile dated 2018-09-16)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "notes": "INSERTED FOR SITE PROFILE DATED 2015-01-14 (described on Site Profile dated 2015-01-14)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-02-27 (described on Site Profile dated 2019-02-27)", + "notes": "INSERTED FOR SITE PROFILE DATED 2013-10-28 (described on Site Profile dated 2013-10-28)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], - "siteDisclosures": [ + "parcelDescriptions": [ { "siteRegistry": true, - "dateReceived": "2016-11-12", - "dateCompleted": "2019-12-15", - "dateEntered": "2022-07-07", - "dateRegistrar": "2018-04-24", - "dateLocalAuthorityReceived": "2018-08-23", - "summary": "Minus accusamus quis optio.", - "informationUsed": "Dolorum dignissimos autem provident qui doloribus unde impedit omnis ipsum.\nNecessitatibus sit ad ab.\nMolestiae soluta facere.\nAccusantium aliquam deleniti repellat corporis tempora maiores assumenda distinctio.", - "pastOrPresentOrders": "Illo alias consectetur at omnis eaque.", + "dateNoted": "2016-05-17", + "parcelID": "15528", + "crownLandUsePIN": "20930", + "crownLandFileNumber": "20027", + "landDescription": "LOT 5 OF LOT 3 BLOCK 2 DISTRICT LOT 4 PLAN 6132" + }, + { + "siteRegistry": false, + "dateNoted": "2014-01-23", + "parcelID": "20947", + "crownLandUsePIN": "20800", + "crownLandFileNumber": "18503", + "landDescription": "LOT 2 OF LOT 2 BLOCK 1 DISTRICT LOT 2 PLAN 5025" + }, + { + "siteRegistry": false, + "dateNoted": "2022-11-01", + "parcelID": "15798", + "crownLandUsePIN": "15757", + "crownLandFileNumber": "16845", + "landDescription": "LOT 1 OF LOT 5 BLOCK 5 DISTRICT LOT 5 PLAN 9607" + } + ], + "siteDisclosures": [ + { + "siteRegistry": false, + "dateReceived": "2021-09-08", + "dateCompleted": "2022-12-11", + "dateEntered": "2020-06-23", + "dateRegistrar": "2014-09-10", + "dateLocalAuthorityReceived": "2022-04-21", + "summary": "Exercitationem porro reprehenderit incidunt in iste delectus.\nQuidem commodi aliquam ea nisi perferendis facere ratione.", + "informationUsed": "Blanditiis facere repudiandae et ullam neque commodi delectus delectus.\nLaborum error aut odio.\nQui sequi suscipit possimus ab corporis.", + "pastOrPresentOrders": "Dolore id officia cum eius enim excepturi.\nCorporis sed officia reiciendis incidunt ut illo tenetur.", "commercialAndIndustrialPurposes": [ { - "scheduleReference": "F1*", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true + "siteRegistry": false }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + } + ] + }, + { + "siteRegistry": true, + "dateReceived": "2017-01-28", + "dateCompleted": "2014-09-02", + "dateEntered": "2017-05-25", + "dateRegistrar": "2021-11-10", + "dateLocalAuthorityReceived": "2017-01-26", + "summary": "Odio sunt soluta accusantium odio aliquid perferendis ipsa aperiam dolores.\nNostrum sequi repellendus eligendi facere laborum suscipit doloribus.", + "informationUsed": "Sunt delectus itaque unde saepe reiciendis aliquid repellat rerum.\nVel assumenda totam laborum vel provident aliquam.\nLibero consequuntur natus id saepe.\nDeserunt et maxime ipsa blanditiis sed quisquam quam sint nemo.", + "pastOrPresentOrders": "Beatae quibusdam explicabo doloremque.\nDolorem porro exercitationem rem optio voluptatibus.", + "commercialAndIndustrialPurposes": [ { "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", @@ -44608,12 +49576,12 @@ { "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false + "siteRegistry": true }, { "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false + "siteRegistry": true } ] } @@ -44622,107 +49590,69 @@ { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "KIRLIN KRISTIN", - "timestamp": "2021-10-26" - }, - { - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "O'KEEFE YASMIN", - "timestamp": "2022-08-01" - }, - { - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "NOLAN KIRSTEN", - "timestamp": "2017-08-17" - }, - { - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "LANGOSH ORPHA", - "timestamp": "2020-05-20" + "user": "MOEN ILIANA", + "timestamp": "2018-10-15" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "BOEHM KEYSHAWN", - "timestamp": "2019-10-27" + "user": "MILLER OFELIA", + "timestamp": "2019-10-23" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "GERHOLD TAMARA", - "timestamp": "2021-05-15" + "user": "CUMMERATA LORI", + "timestamp": "2018-05-20" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "LEMKE PETE", - "timestamp": "2022-02-01" + "user": "DIETRICH MARQUES", + "timestamp": "2022-12-01" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "BALISTRERI RENEE", - "timestamp": "2014-02-02" - }, - { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "KOHLER LOUISA", - "timestamp": "2020-03-24" + "user": "WITTING FREDERICK", + "timestamp": "2016-09-19" } ], "associatedSites": [ { - "dateNoted": "2016-02-10", - "notes": "", - "parcelID": "18928", - "siteID": "19019", - "siteRegistry": false - }, - { - "dateNoted": "2015-08-03", - "notes": "", - "parcelID": "15547", - "siteID": "19790", - "siteRegistry": true - }, - { - "dateNoted": "2018-12-26", + "dateNoted": "2018-04-28", "notes": "", - "parcelID": "20838", - "siteID": "20879", + "parcelID": "20532", + "siteID": "17653", "siteRegistry": true } ] }, { - "uuid": "574369db-fa64-4648-95f7-4c3b47c3e793", - "siteID": 16740, - "address": "7749 Dariana Lakes", - "latitude": 58.3728, - "longitude": -135.7552, - "lastUpdated": "2023-04-23", - "city": "West Rubye", - "region": "Thompson-Okanagan", - "victoriaFile": "26250-20/10369", + "uuid": "7fc01c02-e6b7-48c3-850d-0371dfb55d5a", + "siteID": 16489, + "address": "8522 Wintheiser Shore", + "latitude": 53.1696, + "longitude": -124.4426, + "lastUpdated": "2022-10-12", + "city": "West Cali", + "region": "Mainland/Southwest", + "victoriaFile": "26250-20/3887", "regionalFile": "N/A", "parcelIDs": [ - 2374283, - 2204666, - 4345251, - 6632242, - 7950429 + 2857054, + 8432819, + 9458486, + 2273153, + 7754009 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2019-06-11", - "completed": "2018-12-06", - "initiated": "2014-03-11", - "ministryContact": "LEUSCHKE ELECTA", + "createdAt": "2020-01-01", + "completed": "2020-12-27", + "initiated": "2021-04-30", + "ministryContact": "PROSACCO BUFORD", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -44731,10 +49661,15 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", @@ -44744,10 +49679,10 @@ "siteRegistry": true }, { - "createdAt": "2018-08-15", - "completed": "2017-06-18", - "initiated": "2023-09-02", - "ministryContact": "SPORER ISIDRO", + "createdAt": "2014-02-06", + "completed": "2018-05-09", + "initiated": "2015-09-16", + "ministryContact": "REINGER HILLARD", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -44757,53 +49692,118 @@ "notationParticipants": [ { "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "createdAt": "2019-01-04", + "completed": "2020-12-08", + "initiated": "2022-10-03", + "ministryContact": "ZIEMANN CRAWFORD", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false + }, + { + "createdAt": "2018-03-19", + "completed": "2015-03-22", + "initiated": "2020-11-15", + "ministryContact": "TREMBLAY ALVAH", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false } ], "participants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2020-05-06", - "startDate": "2019-03-22", + "name": "IPSUM", + "endDate": "2020-09-25", + "startDate": "2015-11-21", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2019-04-18", - "startDate": "2019-04-06", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": true + "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2019-10-31", - "startDate": "2021-08-28", + "name": "AMET, DOLOR SIT", + "endDate": "2016-11-10", + "startDate": "2019-02-18", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": false + "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2023-05-25", - "startDate": "2018-08-01", + "name": "IPSUM", + "endDate": "2020-12-15", + "startDate": "2021-10-20", "notes": "", "roles": [ "ORGANIZATION" @@ -44811,126 +49811,254 @@ "siteRegistry": true }, { - "name": "IPSUM", - "endDate": "2014-12-20", - "startDate": "2016-12-04", + "name": "AMET, DOLOR SIT", + "endDate": "2021-12-08", + "startDate": "2021-01-24", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": false } ], "suspectLandUses": [ + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2022-07-16 (described on Site Profile dated 2022-07-16)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-10-31 (described on Site Profile dated 2017-10-31)", + "notes": "INSERTED FOR SITE PROFILE DATED 2023-07-12 (described on Site Profile dated 2023-07-12)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-11-22 (described on Site Profile dated 2021-11-22)", + "notes": "INSERTED FOR SITE PROFILE DATED 2014-11-05 (described on Site Profile dated 2014-11-05)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2018-01-07 (described on Site Profile dated 2018-01-07)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2020-04-20 (described on Site Profile dated 2020-04-20)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], - "siteDisclosures": [ + "parcelDescriptions": [ + { + "siteRegistry": false, + "dateNoted": "2021-07-15", + "parcelID": "19343", + "crownLandUsePIN": "16143", + "crownLandFileNumber": "20845", + "landDescription": "LOT 2 OF LOT 3 BLOCK 5 DISTRICT LOT 2 PLAN 9017" + }, + { + "siteRegistry": false, + "dateNoted": "2020-06-08", + "parcelID": "15226", + "crownLandUsePIN": "17943", + "crownLandFileNumber": "16337", + "landDescription": "LOT 5 OF LOT 3 BLOCK 4 DISTRICT LOT 2 PLAN 6776" + }, + { + "siteRegistry": false, + "dateNoted": "2018-10-22", + "parcelID": "20193", + "crownLandUsePIN": "16772", + "crownLandFileNumber": "19165", + "landDescription": "LOT 4 OF LOT 1 BLOCK 2 DISTRICT LOT 5 PLAN 7059" + }, { "siteRegistry": true, - "dateReceived": "2022-06-24", - "dateCompleted": "2016-09-03", - "dateEntered": "2016-06-27", - "dateRegistrar": "2016-06-22", - "dateLocalAuthorityReceived": "2014-04-24", - "summary": "Molestias sed cumque.\nAccusamus dolorem suscipit ad blanditiis reprehenderit repellat velit.", - "informationUsed": "Accusamus id eveniet suscipit doloribus fugit modi ipsam reiciendis.\nNihil ab reprehenderit.\nFacilis ullam ex sapiente voluptates hic totam.\nPlaceat nobis quam maiores asperiores distinctio non accusantium excepturi.", - "pastOrPresentOrders": "Quod doloribus culpa vel nulla blanditiis libero.\nAmet necessitatibus facere labore dolore ullam voluptates fugiat.\nPraesentium reiciendis nulla odio culpa consequatur.", + "dateNoted": "2022-10-14", + "parcelID": "19388", + "crownLandUsePIN": "15537", + "crownLandFileNumber": "16510", + "landDescription": "LOT 2 OF LOT 4 BLOCK 4 DISTRICT LOT 4 PLAN 3353" + }, + { + "siteRegistry": false, + "dateNoted": "2014-11-14", + "parcelID": "19917", + "crownLandUsePIN": "18609", + "crownLandFileNumber": "16029", + "landDescription": "LOT 1 OF LOT 5 BLOCK 1 DISTRICT LOT 5 PLAN 3957" + } + ], + "siteDisclosures": [ + { + "siteRegistry": false, + "dateReceived": "2022-11-23", + "dateCompleted": "2014-03-25", + "dateEntered": "2014-05-19", + "dateRegistrar": "2017-08-22", + "dateLocalAuthorityReceived": "2021-02-18", + "summary": "Minus quaerat sed.\nQuidem neque consectetur perferendis rerum qui velit ipsam exercitationem tenetur.\nDoloribus mollitia molestiae tempore sapiente soluta inventore.", + "informationUsed": "Porro maiores error cumque laudantium nihil possimus.\nOccaecati id ipsum.\nAspernatur debitis nisi nobis possimus pariatur rem.", + "pastOrPresentOrders": "Accusamus aliquam beatae architecto dignissimos.\nVeritatis sed voluptates illo iusto autem quos voluptate.\nPerferendis sunt atque.", "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, { "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false + "siteRegistry": true }, { "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + } + ] + }, + { + "siteRegistry": true, + "dateReceived": "2018-07-20", + "dateCompleted": "2018-12-30", + "dateEntered": "2023-09-18", + "dateRegistrar": "2015-04-01", + "dateLocalAuthorityReceived": "2021-07-31", + "summary": "Architecto eaque totam quisquam pariatur cupiditate ullam maxime enim.\nIste praesentium exercitationem ullam.", + "informationUsed": "Nobis accusantium facere distinctio cumque assumenda sunt.\nVoluptatibus corrupti accusamus sit.\nNulla maiores totam suscipit vel.\nVeniam harum eum fuga libero dignissimos tempore eligendi tempora delectus.", + "pastOrPresentOrders": "Laborum eum iusto architecto numquam.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true } ] } ], "activityLog": [ + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "ROSENBAUM LARRY", + "timestamp": "2018-05-04" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "MAGGIO LLOYD", + "timestamp": "2016-06-21" + }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "KOZEY ANASTASIA", - "timestamp": "2020-05-09" + "user": "HERMANN CHARLES", + "timestamp": "2021-12-20" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "GRAHAM MALLORY", - "timestamp": "2022-01-15" + "user": "THOMPSON AYLA", + "timestamp": "2018-05-01" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "FEIL STEFAN", + "timestamp": "2019-05-26" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "JACOBS PENELOPE", + "timestamp": "2015-10-16" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "COLE KATHRYN", - "timestamp": "2015-06-06" + "user": "LEHNER MAJOR", + "timestamp": "2019-05-21" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "STOLTENBERG MALINDA", - "timestamp": "2019-04-07" + "user": "FRIESEN CURTIS", + "timestamp": "2015-03-23" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "HERMAN OSCAR", - "timestamp": "2017-09-12" + "user": "SCHROEDER LEANNA", + "timestamp": "2017-08-26" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "DONNELLY JOYCE", - "timestamp": "2022-04-19" + "user": "HODKIEWICZ ROBIN", + "timestamp": "2018-10-22" } ], "associatedSites": [ { - "dateNoted": "2014-05-18", + "dateNoted": "2020-06-04", + "notes": "", + "parcelID": "15849", + "siteID": "18372", + "siteRegistry": true + }, + { + "dateNoted": "2014-08-07", + "notes": "", + "parcelID": "19582", + "siteID": "18160", + "siteRegistry": true + }, + { + "dateNoted": "2016-02-20", "notes": "", - "parcelID": "16903", - "siteID": "17945", + "parcelID": "19066", + "siteID": "17362", "siteRegistry": false } ] }, { - "uuid": "7d9dd6b0-7cff-41e3-8fa2-26d615659996", - "siteID": 15238, - "address": "8971 Konopelski Heights", - "latitude": 54.1307, - "longitude": -128.5246, - "lastUpdated": "2022-03-23", - "city": "Port Orange", + "uuid": "e7aa2502-7c7e-474d-8b76-b2c667e47d95", + "siteID": 18727, + "address": "6164 Amelia Skyway", + "latitude": 51.8544, + "longitude": -129.1797, + "lastUpdated": "2014-04-01", + "city": "Gillianchester", "region": "Kootenay", - "victoriaFile": "26250-20/8174", + "victoriaFile": "26250-20/11475", "regionalFile": "N/A", "parcelIDs": [ - 5069075, - 1944297, - 3037284, - 8816109, - 9485151 + 8296749, + 2261686, + 1503271, + 8131852, + 8148333 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2015-09-04", - "completed": "2022-12-10", - "initiated": "2020-03-29", - "ministryContact": "COLE AMAYA", + "createdAt": "2021-02-14", + "completed": "2014-01-03", + "initiated": "2017-06-13", + "ministryContact": "GRADY CEDRICK", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -44938,79 +50066,39 @@ "" ], "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false - } - ], - "siteRegistry": true - }, - { - "createdAt": "2016-10-05", - "completed": "2023-01-03", - "initiated": "2022-03-16", - "ministryContact": "RICE JOSEPHINE", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false } ], "siteRegistry": true }, { - "createdAt": "2019-06-10", - "completed": "2019-11-26", - "initiated": "2015-09-25", - "ministryContact": "BRAUN CLETUS", + "createdAt": "2021-09-29", + "completed": "2018-09-27", + "initiated": "2022-09-14", + "ministryContact": "COLLINS HAYLIE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -45024,116 +50112,165 @@ "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false } ], "participants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2022-07-30", - "startDate": "2019-12-26", + "name": "IPSUM", + "endDate": "2018-11-14", + "startDate": "2013-12-27", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "name": "AMET, DOLOR SIT", + "endDate": "2019-10-31", + "startDate": "2014-12-03", + "notes": "", + "roles": [ + "ORGANIZATION" ], "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2018-04-26", - "startDate": "2022-12-19", + "name": "IPSUM", + "endDate": "2014-04-29", + "startDate": "2014-06-13", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": false + "siteRegistry": true }, { - "name": "AMET, DOLOR SIT", - "endDate": "2019-11-18", - "startDate": "2013-10-19", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2022-03-26", + "startDate": "2017-05-31", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], - "siteRegistry": false + "siteRegistry": true } ], "suspectLandUses": [ { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-11-11 (described on Site Profile dated 2019-11-11)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "notes": "INSERTED FOR SITE PROFILE DATED 2022-02-07 (described on Site Profile dated 2022-02-07)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2014-05-04 (described on Site Profile dated 2014-05-04)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-09-28 (described on Site Profile dated 2017-09-28)", + "notes": "INSERTED FOR SITE PROFILE DATED 2018-04-17 (described on Site Profile dated 2018-04-17)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2015-07-02 (described on Site Profile dated 2015-07-02)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2016-03-14 (described on Site Profile dated 2016-03-14)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], - "siteDisclosures": [ + "parcelDescriptions": [ + { + "siteRegistry": true, + "dateNoted": "2022-03-03", + "parcelID": "19495", + "crownLandUsePIN": "19186", + "crownLandFileNumber": "17968", + "landDescription": "LOT 4 OF LOT 5 BLOCK 2 DISTRICT LOT 4 PLAN 8810" + }, { "siteRegistry": false, - "dateReceived": "2017-04-14", - "dateCompleted": "2014-04-20", - "dateEntered": "2016-12-01", - "dateRegistrar": "2020-09-01", - "dateLocalAuthorityReceived": "2016-03-09", - "summary": "Iusto culpa voluptatem soluta magnam officiis.\nAccusamus explicabo eos dolorem corrupti ad nam.", - "informationUsed": "Dolor exercitationem dolorem earum vero aliquam dolores.\nNecessitatibus eaque incidunt id vitae numquam.\nEum consequuntur voluptatibus animi molestiae aperiam.", - "pastOrPresentOrders": "Aliquid eos rem tempore veniam.\nQuisquam aut magnam.", - "commercialAndIndustrialPurposes": [ - { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false - }, - { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true - }, - { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true - } - ] + "dateNoted": "2023-09-04", + "parcelID": "16595", + "crownLandUsePIN": "17530", + "crownLandFileNumber": "16719", + "landDescription": "LOT 5 OF LOT 1 BLOCK 2 DISTRICT LOT 1 PLAN 7067" + }, + { + "siteRegistry": true, + "dateNoted": "2016-04-23", + "parcelID": "17276", + "crownLandUsePIN": "16921", + "crownLandFileNumber": "20809", + "landDescription": "LOT 5 OF LOT 1 BLOCK 1 DISTRICT LOT 1 PLAN 4567" + }, + { + "siteRegistry": true, + "dateNoted": "2014-05-17", + "parcelID": "19656", + "crownLandUsePIN": "16024", + "crownLandFileNumber": "20691", + "landDescription": "LOT 5 OF LOT 2 BLOCK 1 DISTRICT LOT 3 PLAN 3002" }, { "siteRegistry": false, - "dateReceived": "2017-06-02", - "dateCompleted": "2017-12-05", - "dateEntered": "2015-01-15", - "dateRegistrar": "2023-04-30", - "dateLocalAuthorityReceived": "2022-11-15", - "summary": "Non aperiam eligendi adipisci corporis beatae.\nProvident accusantium ab eaque illo.", - "informationUsed": "Itaque debitis hic quo reiciendis.\nDistinctio blanditiis voluptatum eius.\nAutem voluptas veniam excepturi ab harum nobis modi.\nVoluptate recusandae hic eius natus laborum vel est.\nQuia tenetur cupiditate soluta totam nesciunt eius.", - "pastOrPresentOrders": "Error incidunt assumenda officia laudantium quos quibusdam quia cupiditate reprehenderit.", + "dateNoted": "2021-10-04", + "parcelID": "19996", + "crownLandUsePIN": "18688", + "crownLandFileNumber": "19552", + "landDescription": "LOT 4 OF LOT 1 BLOCK 5 DISTRICT LOT 1 PLAN 5773" + } + ], + "siteDisclosures": [ + { + "siteRegistry": true, + "dateReceived": "2018-09-13", + "dateCompleted": "2018-10-20", + "dateEntered": "2016-04-10", + "dateRegistrar": "2022-03-26", + "dateLocalAuthorityReceived": "2019-11-22", + "summary": "Sunt non dolore.", + "informationUsed": "Libero sint atque numquam non dignissimos beatae.\nAtque doloribus omnis veniam sint ad quos architecto.\nIpsum eaque tempore quam ullam expedita reiciendis optio modi.\nSequi velit eum incidunt amet optio cupiditate qui.\nHarum eos corrupti earum iure illum.", + "pastOrPresentOrders": "Ipsa fuga accusamus ratione.\nAtque necessitatibus officiis magni consequuntur debitis dolore officiis rerum dicta.\nEos optio commodi veritatis recusandae veritatis dolorem fuga fugit magnam.", "commercialAndIndustrialPurposes": [ { - "scheduleReference": "F1*", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false } ] @@ -45141,84 +50278,85 @@ ], "activityLog": [ { - "siteRegistry": true, + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "RITCHIE REED", - "timestamp": "2019-01-15" + "user": "HALVORSON VIRGIL", + "timestamp": "2014-01-11" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "CRONIN DANDRE", - "timestamp": "2020-04-01" + "user": "FUNK ARCH", + "timestamp": "2018-02-14" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "METZ ANNABEL", - "timestamp": "2018-08-05" - }, - { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "LINDGREN ALISON", - "timestamp": "2019-06-01" + "user": "KONOPELSKI DESTINY", + "timestamp": "2015-07-15" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "HAMILL JESSIKA", - "timestamp": "2022-07-08" + "user": "HOWELL VANCE", + "timestamp": "2021-04-18" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "MORISSETTE BILL", - "timestamp": "2014-07-14" + "user": "MURAZIK DELPHIA", + "timestamp": "2020-09-07" } ], "associatedSites": [ { - "dateNoted": "2016-01-28", + "dateNoted": "2021-11-06", "notes": "", - "parcelID": "20811", - "siteID": "17954", - "siteRegistry": false + "parcelID": "18793", + "siteID": "18027", + "siteRegistry": true }, { - "dateNoted": "2018-02-13", + "dateNoted": "2014-10-18", "notes": "", - "parcelID": "19406", - "siteID": "15342", + "parcelID": "19029", + "siteID": "18787", + "siteRegistry": true + }, + { + "dateNoted": "2016-01-29", + "notes": "", + "parcelID": "19297", + "siteID": "18123", "siteRegistry": false } ] }, { - "uuid": "b3f55b7a-feb2-498b-a324-29a2d4d4eeba", - "siteID": 15829, - "address": "49850 Fritsch Meadows", - "latitude": 56.3137, - "longitude": -126.5308, - "lastUpdated": "2016-11-19", - "city": "Santa Rosa", + "uuid": "ae132c2f-1c03-4bbe-ac5d-1d756c6d0150", + "siteID": 17509, + "address": "664 Tatum Isle", + "latitude": 58.8101, + "longitude": -131.5151, + "lastUpdated": "2014-01-24", + "city": "Lazaroside", "region": "Thompson-Okanagan", - "victoriaFile": "26250-20/917", + "victoriaFile": "26250-20/15890", "regionalFile": "N/A", "parcelIDs": [ - 623352, - 2609096, - 2678722, - 1998852, - 600867 + 4283376, + 5825224, + 2167814, + 1577799, + 9500507 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2017-01-22", - "completed": "2022-10-31", - "initiated": "2016-10-26", - "ministryContact": "GRANT BERT", + "createdAt": "2017-08-21", + "completed": "2020-06-06", + "initiated": "2016-04-18", + "ministryContact": "LEANNON MONIQUE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -45227,9 +50365,9 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", @@ -45238,11 +50376,6 @@ }, { "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false } @@ -45250,10 +50383,10 @@ "siteRegistry": true }, { - "createdAt": "2022-06-17", - "completed": "2016-07-16", - "initiated": "2016-04-29", - "ministryContact": "SCHILLER SCOT", + "createdAt": "2022-10-02", + "completed": "2017-06-05", + "initiated": "2019-05-04", + "ministryContact": "STEHR DAGMAR", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -45262,33 +50395,23 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2015-01-21", - "completed": "2014-02-10", - "initiated": "2016-04-12", - "ministryContact": "GULGOWSKI ALTHEA", + "createdAt": "2023-07-27", + "completed": "2016-08-11", + "initiated": "2022-08-05", + "ministryContact": "BREKKE CHRISTA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -45296,123 +50419,53 @@ "" ], "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - } - ], - "siteRegistry": false - }, - { - "createdAt": "2021-09-26", - "completed": "2014-07-25", - "initiated": "2019-07-30", - "ministryContact": "LINDGREN-LEFFLER GENE", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", "siteRegistry": true } ], - "siteRegistry": false - }, - { - "createdAt": "2017-08-31", - "completed": "2021-06-05", - "initiated": "2019-12-21", - "ministryContact": "MCDERMOTT RAPHAEL", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - } - ], - "siteRegistry": false + "siteRegistry": true } ], "participants": [ { "name": "SHELL CANADA PRODUCTS", - "endDate": "2014-12-25", - "startDate": "2014-02-03", + "endDate": "2014-08-13", + "startDate": "2020-11-20", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2022-03-09", - "startDate": "2015-12-19", - "notes": "", - "roles": [ - "ORGANIZATION" - ], "siteRegistry": true }, { - "name": "IPSUM", - "endDate": "2015-05-08", - "startDate": "2016-09-06", + "name": "AMET, DOLOR SIT", + "endDate": "2017-12-28", + "startDate": "2023-05-19", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": false }, { - "name": "AMET, DOLOR SIT", - "endDate": "2023-01-27", - "startDate": "2019-05-25", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2015-09-07", + "startDate": "2014-04-14", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": false } @@ -45420,31 +50473,52 @@ "suspectLandUses": [ { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-08-09 (described on Site Profile dated 2022-08-09)", + "notes": "INSERTED FOR SITE PROFILE DATED 2015-11-09 (described on Site Profile dated 2015-11-09)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-11-02 (described on Site Profile dated 2018-11-02)", + "notes": "INSERTED FOR SITE PROFILE DATED 2014-07-13 (described on Site Profile dated 2014-07-13)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + } + ], + "parcelDescriptions": [ + { + "siteRegistry": true, + "dateNoted": "2023-03-08", + "parcelID": "16168", + "crownLandUsePIN": "16260", + "crownLandFileNumber": "15315", + "landDescription": "LOT 5 OF LOT 2 BLOCK 1 DISTRICT LOT 4 PLAN 8164" }, { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-05-24 (described on Site Profile dated 2017-05-24)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "dateNoted": "2018-12-07", + "parcelID": "17359", + "crownLandUsePIN": "17929", + "crownLandFileNumber": "16288", + "landDescription": "LOT 1 OF LOT 1 BLOCK 2 DISTRICT LOT 2 PLAN 3276" + }, + { + "siteRegistry": true, + "dateNoted": "2017-10-19", + "parcelID": "20471", + "crownLandUsePIN": "15578", + "crownLandFileNumber": "19588", + "landDescription": "LOT 5 OF LOT 2 BLOCK 5 DISTRICT LOT 4 PLAN 5652" } ], "siteDisclosures": [ { - "siteRegistry": false, - "dateReceived": "2015-04-05", - "dateCompleted": "2021-11-06", - "dateEntered": "2016-09-07", - "dateRegistrar": "2020-01-01", - "dateLocalAuthorityReceived": "2020-05-09", - "summary": "Vero debitis aliquam sit itaque nesciunt tempora similique nemo maxime.\nQuasi a quia tempore nesciunt rerum veniam dolor.", - "informationUsed": "Nisi nihil error dolore ducimus culpa adipisci voluptate iusto rerum.\nDeleniti et unde impedit.\nQuibusdam nisi voluptatem incidunt voluptatum aliquam porro earum.\nRerum quos porro tempore dicta ea doloremque voluptatibus.\nDignissimos error perferendis facilis similique pariatur recusandae earum blanditiis exercitationem.", - "pastOrPresentOrders": "Veritatis nesciunt odit nisi consequatur quisquam facere beatae voluptatem.\nTempore sint sit porro consectetur.", + "siteRegistry": true, + "dateReceived": "2023-09-02", + "dateCompleted": "2015-08-14", + "dateEntered": "2018-01-16", + "dateRegistrar": "2019-06-17", + "dateLocalAuthorityReceived": "2020-11-04", + "summary": "Unde nostrum a debitis neque sint explicabo molestias vitae praesentium.\nNobis cupiditate officiis quia cum.", + "informationUsed": "Dicta voluptatibus ipsam ullam.\nNatus magnam qui.\nRepellendus assumenda at suscipit.", + "pastOrPresentOrders": "Cumque quam quos.\nVoluptatum architecto ducimus exercitationem culpa et.\nVoluptate mollitia maxime sunt exercitationem perferendis voluptas quidem.", "commercialAndIndustrialPurposes": [ { "scheduleReference": "F2*", @@ -45453,115 +50527,152 @@ }, { "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { - "scheduleReference": "F1*", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true + "siteRegistry": false }, { "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true } ] } ], "activityLog": [ { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "RATH ESTEL", - "timestamp": "2022-09-02" + "user": "BECHTELAR KANE", + "timestamp": "2018-09-04" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "KESSLER ROCKY", - "timestamp": "2013-11-24" + "user": "MULLER-MOEN BRADLY", + "timestamp": "2023-01-13" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "ZBONCAK-LEDNER EVELYN", + "timestamp": "2022-05-23" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "HERMANN DEMARIO", - "timestamp": "2017-07-15" + "user": "RUSSEL HELENE", + "timestamp": "2019-12-20" }, { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "JONES RUTH", - "timestamp": "2021-10-16" + "user": "SCHMELER ORLO", + "timestamp": "2015-09-29" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "LARKIN GODFREY", - "timestamp": "2014-01-02" + "user": "HOPPE MOZELLE", + "timestamp": "2021-02-28" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "TOY DELANEY", - "timestamp": "2015-06-21" + "user": "MAYERT LEONOR", + "timestamp": "2014-10-07" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "DAUGHERTY TIMOTHY", - "timestamp": "2017-09-07" + "user": "EMARD JANE", + "timestamp": "2022-02-08" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "JAKUBOWSKI JOSUE", + "timestamp": "2016-12-29" } ], "associatedSites": [ { - "dateNoted": "2018-03-05", + "dateNoted": "2019-10-13", "notes": "", - "parcelID": "18469", - "siteID": "18160", - "siteRegistry": false + "parcelID": "20056", + "siteID": "16253", + "siteRegistry": true }, { - "dateNoted": "2020-08-03", + "dateNoted": "2015-11-26", "notes": "", - "parcelID": "15213", - "siteID": "16740", - "siteRegistry": false + "parcelID": "19619", + "siteID": "16934", + "siteRegistry": true }, { - "dateNoted": "2019-08-31", + "dateNoted": "2019-04-21", "notes": "", - "parcelID": "18760", - "siteID": "15998", - "siteRegistry": true + "parcelID": "18171", + "siteID": "18608", + "siteRegistry": false } ] }, { - "uuid": "54b65ff6-ef6e-4353-afa2-04644e4463b2", - "siteID": 17534, - "address": "2487 Janis Port", - "latitude": 52.5563, - "longitude": -121.9227, - "lastUpdated": "2013-11-09", - "city": "Little Rock", + "uuid": "11028487-8ced-4383-b980-323d6f8f6991", + "siteID": 20833, + "address": "99236 Joyce Junction", + "latitude": 58.5333, + "longitude": -137.2649, + "lastUpdated": "2017-04-05", + "city": "Lake Tessie", "region": " North Coast", - "victoriaFile": "26250-20/7960", + "victoriaFile": "26250-20/7067", "regionalFile": "N/A", "parcelIDs": [ - 4514395, - 5038189, - 7956325, - 2609865, - 7374121 + 8975777, + 1216366, + 2561907, + 2651659, + 3844835 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2018-08-18", - "completed": "2023-08-03", - "initiated": "2023-07-06", - "ministryContact": "PARISIAN HERTHA", + "createdAt": "2015-12-08", + "completed": "2015-07-17", + "initiated": "2018-10-23", + "ministryContact": "EBERT LELAH", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "createdAt": "2019-08-09", + "completed": "2021-11-22", + "initiated": "2016-07-15", + "ministryContact": "KULAS ERICK", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -45572,12 +50683,47 @@ { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "createdAt": "2020-02-01", + "completed": "2016-05-19", + "initiated": "2015-07-03", + "ministryContact": "VONRUEDEN ERNEST", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", @@ -45593,10 +50739,10 @@ "siteRegistry": false }, { - "createdAt": "2013-12-10", - "completed": "2020-06-26", - "initiated": "2014-11-12", - "ministryContact": "BOYER MELYSSA", + "createdAt": "2014-11-10", + "completed": "2016-06-11", + "initiated": "2017-07-21", + "ministryContact": "BASHIRIAN RAPHAELLE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -45606,23 +50752,58 @@ "notationParticipants": [ { "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "createdAt": "2017-12-11", + "completed": "2021-10-25", + "initiated": "2018-06-23", + "ministryContact": "HOWE BETTE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true } ], "participants": [ { - "name": "IPSUM", - "endDate": "2020-01-26", - "startDate": "2017-01-21", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2018-03-05", + "startDate": "2016-10-02", "notes": "", "roles": [ "ORGANIZATION" @@ -45630,201 +50811,213 @@ "siteRegistry": true }, { - "name": "IPSUM", - "endDate": "2018-10-06", - "startDate": "2014-05-11", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2017-07-18", - "startDate": "2018-03-13", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2018-10-23", + "startDate": "2015-03-19", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true } ], "suspectLandUses": [ { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-06-15 (described on Site Profile dated 2022-06-15)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "notes": "INSERTED FOR SITE PROFILE DATED 2021-04-24 (described on Site Profile dated 2021-04-24)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-02-18 (described on Site Profile dated 2018-02-18)", + "notes": "INSERTED FOR SITE PROFILE DATED 2014-11-24 (described on Site Profile dated 2014-11-24)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-09-06 (described on Site Profile dated 2014-09-06)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" - }, + "notes": "INSERTED FOR SITE PROFILE DATED 2022-01-14 (described on Site Profile dated 2022-01-14)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + } + ], + "parcelDescriptions": [ { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-11-16 (described on Site Profile dated 2018-11-16)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "dateNoted": "2022-07-02", + "parcelID": "15915", + "crownLandUsePIN": "17588", + "crownLandFileNumber": "16436", + "landDescription": "LOT 2 OF LOT 2 BLOCK 5 DISTRICT LOT 2 PLAN 4669" + }, + { + "siteRegistry": true, + "dateNoted": "2016-09-30", + "parcelID": "18869", + "crownLandUsePIN": "17035", + "crownLandFileNumber": "15485", + "landDescription": "LOT 5 OF LOT 1 BLOCK 3 DISTRICT LOT 1 PLAN 6678" } ], "siteDisclosures": [ { - "siteRegistry": false, - "dateReceived": "2019-07-18", - "dateCompleted": "2016-05-11", - "dateEntered": "2021-06-30", - "dateRegistrar": "2014-01-10", - "dateLocalAuthorityReceived": "2015-01-27", - "summary": "Nam necessitatibus neque laborum incidunt.\nSit mollitia minima consectetur corrupti natus animi minima earum consectetur.", - "informationUsed": "Veritatis hic commodi reiciendis sequi soluta nobis natus.\nPraesentium repudiandae omnis eos voluptas qui.\nNatus nihil aliquam quos saepe architecto nam dolores sequi.", - "pastOrPresentOrders": "Fuga doloribus placeat quis explicabo quidem.\nEsse aperiam autem officiis quas amet vel quidem ratione vero.\nSint eius perferendis at consequatur.", + "siteRegistry": true, + "dateReceived": "2016-08-27", + "dateCompleted": "2017-03-05", + "dateEntered": "2017-09-23", + "dateRegistrar": "2020-11-11", + "dateLocalAuthorityReceived": "2020-07-18", + "summary": "Eum deserunt et necessitatibus quo optio eos consectetur.\nExplicabo excepturi soluta velit cupiditate.\nEnim velit doloribus iusto numquam earum veritatis laborum sunt architecto.", + "informationUsed": "Omnis corporis dicta ab hic repudiandae consequuntur atque quod.\nIllo sint nulla.\nQuam adipisci ipsa quas accusamus dolorum tempore deserunt fuga.", + "pastOrPresentOrders": "Porro vitae ullam inventore voluptate quidem ad accusamus.", "commercialAndIndustrialPurposes": [ { "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false + "siteRegistry": true }, { - "scheduleReference": "F1*", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + } + ] + }, + { + "siteRegistry": false, + "dateReceived": "2018-04-08", + "dateCompleted": "2015-11-19", + "dateEntered": "2017-02-14", + "dateRegistrar": "2022-12-23", + "dateLocalAuthorityReceived": "2014-08-06", + "summary": "Omnis nam soluta.", + "informationUsed": "Fugiat excepturi tempore corporis facere non.\nQuod dolor adipisci voluptatibus voluptate voluptas eos quo.\nDelectus dolor culpa molestiae nam similique veritatis voluptas aut.", + "pastOrPresentOrders": "Soluta quisquam labore excepturi quidem dignissimos aliquid.\nArchitecto atque molestias distinctio.\nNisi explicabo quisquam explicabo mollitia veritatis quae autem ipsam.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false } ] } ], "activityLog": [ + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "SCHUMM DILLON", + "timestamp": "2019-10-13" + }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "MANN BERNEICE", - "timestamp": "2022-05-18" + "user": "DIBBERT CELESTINO", + "timestamp": "2017-07-22" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "BALISTRERI LIANA", - "timestamp": "2023-03-03" + "user": "WILLMS DEANGELO", + "timestamp": "2019-06-27" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "TILLMAN MICAH", - "timestamp": "2020-12-29" + "user": "SCHUPPE MILTON", + "timestamp": "2021-08-26" }, { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "LANGOSH FAYE", - "timestamp": "2018-05-31" + "user": "MURAZIK IVA", + "timestamp": "2014-06-18" }, { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "JAST LEILA", - "timestamp": "2023-05-30" + "user": "BROWN RANDALL", + "timestamp": "2015-08-13" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "MURRAY GRAYCE", - "timestamp": "2015-01-24" + "user": "JOHNS ALLEN", + "timestamp": "2022-09-16" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "FRANEY TIERRA", - "timestamp": "2022-08-01" + "user": "KEEBLER ALEXANDRE", + "timestamp": "2021-06-02" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "GREENFELDER MAYMIE", + "timestamp": "2019-01-31" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "SWANIAWSKI SISTER", + "timestamp": "2020-03-03" } ], "associatedSites": [ { - "dateNoted": "2014-09-15", - "notes": "", - "parcelID": "15715", - "siteID": "20586", - "siteRegistry": true - }, - { - "dateNoted": "2017-10-07", + "dateNoted": "2017-03-04", "notes": "", - "parcelID": "17350", - "siteID": "18155", - "siteRegistry": true + "parcelID": "18990", + "siteID": "16392", + "siteRegistry": false }, { - "dateNoted": "2015-02-25", + "dateNoted": "2021-08-19", "notes": "", - "parcelID": "18606", - "siteID": "17411", - "siteRegistry": true + "parcelID": "16929", + "siteID": "16489", + "siteRegistry": false } ] }, - { - "uuid": "c4ef3a0f-6283-4559-bcbe-14769ad403ef", - "siteID": 18790, - "address": "42677 Murazik Crest", - "latitude": 54.1741, - "longitude": -120.4678, - "lastUpdated": "2022-12-27", - "city": "Kolemouth", - "region": "Mainland/Southwest", - "victoriaFile": "26250-20/1211", - "regionalFile": "N/A", - "parcelIDs": [ - 8584390, - 4954145, - 9195663, - 6730375, - 4172402 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2017-08-21", - "completed": "2022-07-29", - "initiated": "2020-08-22", - "ministryContact": "DOYLE HARRY", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - } - ], - "siteRegistry": true - }, + { + "uuid": "e341daec-b072-4ec4-8da6-eda944ff92e7", + "siteID": 15829, + "address": "7457 Kuvalis Views", + "latitude": 56.0667, + "longitude": -123.6904, + "lastUpdated": "2014-02-20", + "city": "West Babylon", + "region": "Thompson-Okanagan", + "victoriaFile": "26250-20/9365", + "regionalFile": "N/A", + "parcelIDs": [ + 2034009, + 9841635, + 8004469, + 8169705, + 5690652 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ { - "createdAt": "2018-04-03", - "completed": "2016-02-12", - "initiated": "2022-04-16", - "ministryContact": "ERNSER CLOYD", + "createdAt": "2019-12-23", + "completed": "2020-08-25", + "initiated": "2023-01-18", + "ministryContact": "AUFDERHAR WILHELM", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -45835,11 +51028,6 @@ { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", "siteRegistry": false }, { @@ -45851,20 +51039,15 @@ "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2016-12-05", - "completed": "2020-08-25", - "initiated": "2022-06-21", - "ministryContact": "PROSACCO TRE", + "createdAt": "2020-02-05", + "completed": "2021-01-28", + "initiated": "2017-12-26", + "ministryContact": "JONES JAN", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -45873,38 +51056,23 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false } ], "siteRegistry": false }, { - "createdAt": "2021-06-26", - "completed": "2018-05-24", - "initiated": "2014-03-13", - "ministryContact": "KIRLIN MATHIAS", + "createdAt": "2022-02-10", + "completed": "2017-09-08", + "initiated": "2017-07-19", + "ministryContact": "SCHNEIDER NELSON", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -45913,28 +51081,28 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2023-02-27", - "completed": "2017-08-15", - "initiated": "2021-03-16", - "ministryContact": "FADEL FELTON", + "createdAt": "2021-12-29", + "completed": "2015-11-25", + "initiated": "2019-02-20", + "ministryContact": "SCHADEN ADELE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -45945,10 +51113,10 @@ { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true }, @@ -45960,22 +51128,17 @@ { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true } ], "participants": [ { - "name": "IPSUM", - "endDate": "2023-02-11", - "startDate": "2017-09-24", + "name": "AMET, DOLOR SIT", + "endDate": "2015-02-14", + "startDate": "2016-05-23", "notes": "", "roles": [ "ORGANIZATION" @@ -45984,28 +51147,8 @@ }, { "name": "SHELL CANADA PRODUCTS", - "endDate": "2014-06-25", - "startDate": "2020-11-24", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2022-10-16", - "startDate": "2020-08-26", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": true - }, - { - "name": "AMET, DOLOR SIT", - "endDate": "2019-12-26", - "startDate": "2016-12-25", + "endDate": "2018-08-12", + "startDate": "2018-04-28", "notes": "", "roles": [ "EMPLOYEE" @@ -46013,9 +51156,9 @@ "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2017-01-27", - "startDate": "2015-09-05", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2017-03-23", + "startDate": "2018-06-25", "notes": "", "roles": [ "ORGANIZATION" @@ -46025,150 +51168,156 @@ ], "suspectLandUses": [ { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2020-02-11 (described on Site Profile dated 2020-02-11)", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2015-11-15 (described on Site Profile dated 2015-11-15)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-09-24 (described on Site Profile dated 2017-09-24)", + "notes": "INSERTED FOR SITE PROFILE DATED 2021-06-09 (described on Site Profile dated 2021-06-09)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2022-02-25 (described on Site Profile dated 2022-02-25)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], - "siteDisclosures": [ + "parcelDescriptions": [ { "siteRegistry": true, - "dateReceived": "2019-02-14", - "dateCompleted": "2013-12-09", - "dateEntered": "2018-03-15", - "dateRegistrar": "2023-03-23", - "dateLocalAuthorityReceived": "2016-01-05", - "summary": "Mollitia placeat ea quod consequuntur aperiam ducimus velit necessitatibus.\nNam cumque similique minima earum est harum necessitatibus molestias.\nOccaecati quibusdam laborum.", - "informationUsed": "Impedit dignissimos delectus dolorum fugit earum veritatis.\nSaepe similique facilis sint accusantium.\nOdit harum eos necessitatibus ut esse.\nMolestiae esse ipsam vel deleniti.\nDebitis eos expedita vitae sapiente molestiae modi sit.", - "pastOrPresentOrders": "Necessitatibus laudantium error.", - "commercialAndIndustrialPurposes": [ - { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true - }, - { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false - } - ] + "dateNoted": "2019-11-06", + "parcelID": "19492", + "crownLandUsePIN": "19343", + "crownLandFileNumber": "19212", + "landDescription": "LOT 1 OF LOT 2 BLOCK 1 DISTRICT LOT 1 PLAN 4506" }, { "siteRegistry": true, - "dateReceived": "2022-03-21", - "dateCompleted": "2019-06-20", - "dateEntered": "2019-11-28", - "dateRegistrar": "2017-08-30", - "dateLocalAuthorityReceived": "2013-12-23", - "summary": "Necessitatibus fugit vel esse tenetur et cupiditate magnam aliquam.\nDolorem rerum praesentium.", - "informationUsed": "Culpa error a officia consectetur incidunt possimus consectetur ducimus.\nHic consequuntur quas nam voluptas inventore.\nAccusamus eaque corporis omnis vero.\nEius temporibus iste sint incidunt voluptatibus.", - "pastOrPresentOrders": "Quibusdam excepturi corrupti.\nDolor dolorum ut sit.\nDolorem libero iusto repellendus quisquam corrupti minima.", + "dateNoted": "2021-11-30", + "parcelID": "15547", + "crownLandUsePIN": "19042", + "crownLandFileNumber": "18925", + "landDescription": "LOT 1 OF LOT 5 BLOCK 2 DISTRICT LOT 4 PLAN 5492" + } + ], + "siteDisclosures": [ + { + "siteRegistry": false, + "dateReceived": "2014-08-10", + "dateCompleted": "2023-04-20", + "dateEntered": "2015-09-08", + "dateRegistrar": "2016-11-26", + "dateLocalAuthorityReceived": "2014-09-24", + "summary": "Blanditiis maiores natus nisi doloribus officia iste ipsa.\nTempore nam non qui saepe neque molestiae iure occaecati voluptas.", + "informationUsed": "Delectus facere porro nihil recusandae.\nEst maxime enim veniam quasi in.\nVoluptatum illum ea cumque harum odit.\nPossimus alias itaque eius tenetur laudantium optio temporibus deleniti illum.", + "pastOrPresentOrders": "Qui dolorum nisi consequatur ea.\nPariatur et esse et explicabo qui illum.\nDolores explicabo itaque nemo nesciunt in.", "commercialAndIndustrialPurposes": [ { "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false } ] } ], "activityLog": [ { - "siteRegistry": true, + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "WALSH JOVAN", - "timestamp": "2017-01-27" + "user": "KERLUKE JULIEN", + "timestamp": "2023-03-08" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "FLATLEY DELPHA", - "timestamp": "2014-12-16" + "user": "QUIGLEY DAVID", + "timestamp": "2023-06-18" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "GOLDNER SHANEL", - "timestamp": "2021-09-08" + "user": "FRIESEN FERN", + "timestamp": "2018-01-06" }, { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "HAND EZEKIEL", - "timestamp": "2017-01-13" + "user": "RUSSEL DARIAN", + "timestamp": "2021-07-29" }, { - "siteRegistry": false, + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "DECKOW EDGAR", + "timestamp": "2020-12-24" + }, + { + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "SCHUSTER PINK", - "timestamp": "2023-03-18" + "user": "RICE ERICKA", + "timestamp": "2017-11-04" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "CRUICKSHANK SIERRA", - "timestamp": "2014-11-24" + "user": "OSINSKI ADALINE", + "timestamp": "2016-02-19" }, { - "siteRegistry": true, + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "BAYER JAQUELIN", - "timestamp": "2019-01-01" + "user": "KOELPIN-KEMMER SALLIE", + "timestamp": "2021-07-18" } ], "associatedSites": [ { - "dateNoted": "2014-06-02", + "dateNoted": "2023-08-31", "notes": "", - "parcelID": "19908", - "siteID": "17477", + "parcelID": "19124", + "siteID": "20984", "siteRegistry": true }, { - "dateNoted": "2019-08-04", + "dateNoted": "2018-04-16", "notes": "", - "parcelID": "17306", - "siteID": "19400", - "siteRegistry": true + "parcelID": "15721", + "siteID": "16604", + "siteRegistry": false } ] }, { - "uuid": "fb1edee8-e37b-44c9-ba25-1e835e13773f", - "siteID": 19077, - "address": "62710 Kautzer Shore", - "latitude": 57.7369, - "longitude": -128.5048, - "lastUpdated": "2021-09-26", - "city": "Fort Kattie", - "region": "Kootenay", - "victoriaFile": "26250-20/18536", + "uuid": "bb51cc51-6c88-43cd-9158-d9482bb17324", + "siteID": 19562, + "address": "451 Kris Lake", + "latitude": 54.9093, + "longitude": -135.1826, + "lastUpdated": "2020-09-13", + "city": "Jaidashire", + "region": " North Coast", + "victoriaFile": "26250-20/18810", "regionalFile": "N/A", "parcelIDs": [ - 2114614, - 923260, - 7163232, - 1675571, - 6683638 + 7283039, + 9084548, + 1593424, + 6886949, + 7620654 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2015-07-04", - "completed": "2014-08-25", - "initiated": "2021-07-02", - "ministryContact": "ROSENBAUM MONSERRAT", + "createdAt": "2021-03-10", + "completed": "2015-12-09", + "initiated": "2017-12-26", + "ministryContact": "CARROLL STELLA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -46178,27 +51327,37 @@ "notationParticipants": [ { "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false } ], "siteRegistry": false }, { - "createdAt": "2020-06-09", - "completed": "2021-04-04", - "initiated": "2023-03-09", - "ministryContact": "DOUGLAS HEBER", + "createdAt": "2013-12-30", + "completed": "2021-08-12", + "initiated": "2017-12-16", + "ministryContact": "MONAHAN MADIE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -46209,21 +51368,56 @@ { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "createdAt": "2014-02-17", + "completed": "2015-12-08", + "initiated": "2022-11-22", + "ministryContact": "LESCH MAGDALENA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true } ], "siteRegistry": false }, { - "createdAt": "2017-07-10", - "completed": "2018-04-10", - "initiated": "2020-07-13", - "ministryContact": "DACH CLEVELAND", + "createdAt": "2018-03-18", + "completed": "2022-02-21", + "initiated": "2019-04-30", + "ministryContact": "KOZEY WYATT", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -46234,12 +51428,52 @@ { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "createdAt": "2023-06-25", + "completed": "2020-05-14", + "initiated": "2022-07-21", + "ministryContact": "LITTLE ALICE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true } ], "siteRegistry": false @@ -46247,100 +51481,119 @@ ], "participants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2021-12-02", - "startDate": "2017-11-10", + "name": "AMET, DOLOR SIT", + "endDate": "2018-03-08", + "startDate": "2015-04-18", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2015-05-17", - "startDate": "2015-11-07", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2018-05-11", + "startDate": "2020-08-26", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": true } ], "suspectLandUses": [ { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-11-13 (described on Site Profile dated 2022-11-13)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2014-03-22 (described on Site Profile dated 2014-03-22)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-10-29 (described on Site Profile dated 2017-10-29)", + "notes": "INSERTED FOR SITE PROFILE DATED 2019-11-23 (described on Site Profile dated 2019-11-23)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-10-09 (described on Site Profile dated 2017-10-09)", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2021-07-14 (described on Site Profile dated 2021-07-14)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-09-23 (described on Site Profile dated 2018-09-23)", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2014-04-02 (described on Site Profile dated 2014-04-02)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2017-02-05 (described on Site Profile dated 2017-02-05)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], - "siteDisclosures": [ + "parcelDescriptions": [ { "siteRegistry": true, - "dateReceived": "2019-12-15", - "dateCompleted": "2021-06-10", - "dateEntered": "2017-05-15", - "dateRegistrar": "2014-02-15", - "dateLocalAuthorityReceived": "2017-01-08", - "summary": "Totam ex sequi minima eius minima.", - "informationUsed": "Quas corrupti fuga aperiam eveniet officiis.\nSuscipit itaque eum quod officia dolorem nam.\nAutem aliquam suscipit porro iure.", - "pastOrPresentOrders": "A totam iusto modi facilis.\nSimilique ratione perspiciatis iure.", - "commercialAndIndustrialPurposes": [ - { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true - }, - { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false - } - ] + "dateNoted": "2021-10-15", + "parcelID": "18485", + "crownLandUsePIN": "16823", + "crownLandFileNumber": "17307", + "landDescription": "LOT 4 OF LOT 5 BLOCK 1 DISTRICT LOT 3 PLAN 8668" + }, + { + "siteRegistry": true, + "dateNoted": "2014-05-17", + "parcelID": "19004", + "crownLandUsePIN": "17888", + "crownLandFileNumber": "20890", + "landDescription": "LOT 5 OF LOT 3 BLOCK 2 DISTRICT LOT 2 PLAN 7826" }, { "siteRegistry": false, - "dateReceived": "2015-03-12", - "dateCompleted": "2015-08-17", - "dateEntered": "2019-12-11", - "dateRegistrar": "2022-06-04", - "dateLocalAuthorityReceived": "2017-07-26", - "summary": "Autem sequi similique ipsam repudiandae corporis non.\nQuis dolor eius ratione adipisci atque ipsum optio minus harum.", - "informationUsed": "Nihil id libero inventore repellat.\nNatus error officia quos.\nVero natus laboriosam.", - "pastOrPresentOrders": "Neque perferendis excepturi eveniet earum dolore.\nConsectetur veritatis autem.\nDolorum hic ut error expedita architecto.", + "dateNoted": "2015-12-01", + "parcelID": "17644", + "crownLandUsePIN": "19443", + "crownLandFileNumber": "16609", + "landDescription": "LOT 2 OF LOT 3 BLOCK 5 DISTRICT LOT 5 PLAN 6024" + }, + { + "siteRegistry": false, + "dateNoted": "2018-04-01", + "parcelID": "20693", + "crownLandUsePIN": "20364", + "crownLandFileNumber": "19582", + "landDescription": "LOT 1 OF LOT 1 BLOCK 3 DISTRICT LOT 5 PLAN 5305" + }, + { + "siteRegistry": true, + "dateNoted": "2018-12-15", + "parcelID": "20632", + "crownLandUsePIN": "20229", + "crownLandFileNumber": "20849", + "landDescription": "LOT 2 OF LOT 4 BLOCK 3 DISTRICT LOT 1 PLAN 4245" + } + ], + "siteDisclosures": [ + { + "siteRegistry": true, + "dateReceived": "2017-06-24", + "dateCompleted": "2021-09-27", + "dateEntered": "2023-06-02", + "dateRegistrar": "2015-07-23", + "dateLocalAuthorityReceived": "2017-10-19", + "summary": "Voluptatum dolore eius provident ea dicta in pariatur.", + "informationUsed": "Itaque earum aspernatur tempore.\nIste laborum temporibus qui ducimus blanditiis.\nHic cumque deserunt iste vero voluptas nobis laboriosam.\nMinus asperiores aliquam ea maiores molestiae.\nIusto numquam corrupti.", + "pastOrPresentOrders": "Perspiciatis rem omnis facere aliquid odio.", "commercialAndIndustrialPurposes": [ - { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false - }, { "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { - "scheduleReference": "F1*", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true } @@ -46348,116 +51601,97 @@ } ], "activityLog": [ - { - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "KIEHN CICERO", - "timestamp": "2018-01-17" - }, - { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "BARTELL AIDEN", - "timestamp": "2023-09-04" - }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "MCCULLOUGH MADISYN", - "timestamp": "2016-12-06" + "user": "KOELPIN LINA", + "timestamp": "2021-08-16" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "BOYLE KAYLAH", - "timestamp": "2023-09-08" + "user": "OLSON DRAKE", + "timestamp": "2015-10-03" }, { - "siteRegistry": true, + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "O'KON-PADBERG FREIDA", - "timestamp": "2016-07-27" + "user": "BOGISICH ELZA", + "timestamp": "2022-10-22" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "LESCH KATHLEEN", - "timestamp": "2017-04-22" + "user": "WILDERMAN LARON", + "timestamp": "2018-05-03" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "KUTCH KEVEN", - "timestamp": "2019-02-08" + "user": "MILLS MICAH", + "timestamp": "2016-02-29" }, { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "PURDY-SIMONIS JONATHAN", - "timestamp": "2016-01-20" + "user": "STOLTENBERG KEITH", + "timestamp": "2021-05-13" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "KASSULKE HALEIGH", - "timestamp": "2021-10-08" + "user": "GRIMES MATHIAS", + "timestamp": "2017-05-27" }, { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "MANN TERRY", - "timestamp": "2020-10-06" + "user": "WEISSNAT VALLIE", + "timestamp": "2020-02-02" } ], "associatedSites": [ { - "dateNoted": "2023-09-08", - "notes": "", - "parcelID": "18040", - "siteID": "18685", - "siteRegistry": true - }, - { - "dateNoted": "2014-11-24", + "dateNoted": "2023-03-30", "notes": "", - "parcelID": "20166", - "siteID": "18849", + "parcelID": "17249", + "siteID": "19213", "siteRegistry": true }, { - "dateNoted": "2014-07-01", + "dateNoted": "2019-07-13", "notes": "", - "parcelID": "15871", - "siteID": "18231", + "parcelID": "20781", + "siteID": "19138", "siteRegistry": false } ] }, { - "uuid": "85649e48-87b4-4b30-be68-dea1d4467248", - "siteID": 19246, - "address": "701 Greenfelder Manor", - "latitude": 57.0449, - "longitude": -133.5822, - "lastUpdated": "2014-03-22", - "city": "South Courtney", - "region": "Kootenay", - "victoriaFile": "26250-20/16567", + "uuid": "4b425bd4-acd0-4e34-b080-ecc1ab332972", + "siteID": 17306, + "address": "666 Norval Cliffs", + "latitude": 53.5343, + "longitude": -123.4852, + "lastUpdated": "2020-08-04", + "city": "Ferrymouth", + "region": "Cariboo", + "victoriaFile": "26250-20/9402", "regionalFile": "N/A", "parcelIDs": [ - 730593, - 9903412, - 8724404, - 3301848, - 4719789 + 3485263, + 657094, + 9368037, + 4480474, + 2027872 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2023-04-14", - "completed": "2016-10-12", - "initiated": "2021-04-28", - "ministryContact": "SPINKA DEXTER", + "createdAt": "2018-08-25", + "completed": "2022-06-20", + "initiated": "2023-03-15", + "ministryContact": "MCGLYNN ERNESTINA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -46467,27 +51701,32 @@ "notationParticipants": [ { "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true + "role": "REQUESTED BY", + "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false + "role": "SUBMITTED BY", + "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2023-04-09", - "completed": "2018-01-06", - "initiated": "2019-01-10", - "ministryContact": "CONNELLY KELLEY", + "createdAt": "2014-02-21", + "completed": "2020-05-26", + "initiated": "2020-12-18", + "ministryContact": "HILPERT DAPHNEY", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -46500,24 +51739,19 @@ "role": "SUBMITTED BY", "siteRegistry": true }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2016-03-24", - "completed": "2016-01-04", - "initiated": "2013-10-29", - "ministryContact": "HAMMES FREDERIK", + "createdAt": "2017-03-27", + "completed": "2021-08-12", + "initiated": "2022-10-06", + "ministryContact": "GREENHOLT JACK", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -46528,47 +51762,52 @@ { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true } ], "participants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2020-11-27", - "startDate": "2016-01-13", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2019-08-27", + "startDate": "2020-06-28", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": true }, { "name": "AMET, DOLOR SIT", - "endDate": "2018-02-24", - "startDate": "2017-05-05", + "endDate": "2014-10-18", + "startDate": "2023-10-03", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2021-09-08", + "startDate": "2016-09-22", "notes": "", "roles": [ "EMPLOYEE" @@ -46579,88 +51818,102 @@ "suspectLandUses": [ { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-02-24 (described on Site Profile dated 2022-02-24)", + "notes": "INSERTED FOR SITE PROFILE DATED 2015-01-26 (described on Site Profile dated 2015-01-26)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-09-07 (described on Site Profile dated 2022-09-07)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "notes": "INSERTED FOR SITE PROFILE DATED 2020-08-05 (described on Site Profile dated 2020-08-05)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2018-10-30 (described on Site Profile dated 2018-10-30)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-08-06 (described on Site Profile dated 2015-08-06)", + "notes": "INSERTED FOR SITE PROFILE DATED 2017-08-11 (described on Site Profile dated 2017-08-11)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + } + ], + "parcelDescriptions": [ + { + "siteRegistry": true, + "dateNoted": "2017-06-07", + "parcelID": "18516", + "crownLandUsePIN": "18992", + "crownLandFileNumber": "20344", + "landDescription": "LOT 1 OF LOT 1 BLOCK 5 DISTRICT LOT 2 PLAN 3189" }, { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2020-07-06 (described on Site Profile dated 2020-07-06)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "dateNoted": "2019-03-24", + "parcelID": "20935", + "crownLandUsePIN": "18336", + "crownLandFileNumber": "18683", + "landDescription": "LOT 3 OF LOT 5 BLOCK 5 DISTRICT LOT 5 PLAN 6738" + }, + { + "siteRegistry": true, + "dateNoted": "2019-10-26", + "parcelID": "15232", + "crownLandUsePIN": "19404", + "crownLandFileNumber": "20545", + "landDescription": "LOT 3 OF LOT 5 BLOCK 4 DISTRICT LOT 3 PLAN 4954" + }, + { + "siteRegistry": false, + "dateNoted": "2016-04-04", + "parcelID": "16912", + "crownLandUsePIN": "20165", + "crownLandFileNumber": "19576", + "landDescription": "LOT 2 OF LOT 3 BLOCK 4 DISTRICT LOT 5 PLAN 3856" } ], "siteDisclosures": [ { - "siteRegistry": false, - "dateReceived": "2016-04-16", - "dateCompleted": "2022-08-09", - "dateEntered": "2021-07-31", - "dateRegistrar": "2016-03-06", - "dateLocalAuthorityReceived": "2017-09-04", - "summary": "Ad dolorum incidunt doloribus quam soluta sequi.\nMinus quos fugit accusamus in quia non fugit distinctio quis.", - "informationUsed": "Aspernatur quo voluptate ea.\nConsectetur et autem quo aliquid eveniet aperiam.\nVoluptatem perspiciatis repellat ea nihil magni perspiciatis dolorum eum.\nDolor suscipit inventore.\nSaepe ipsa illo tempore odio numquam.", - "pastOrPresentOrders": "Magnam consectetur rerum autem culpa.\nTotam illum dolorem vel.", + "siteRegistry": true, + "dateReceived": "2020-07-08", + "dateCompleted": "2019-06-04", + "dateEntered": "2015-11-29", + "dateRegistrar": "2021-04-01", + "dateLocalAuthorityReceived": "2023-09-21", + "summary": "Praesentium inventore eum aliquid quae quibusdam in est quod.\nEt omnis perspiciatis.\nCorporis impedit excepturi ipsam voluptatum officia.", + "informationUsed": "Neque pariatur sunt recusandae incidunt minima veritatis iste quidem.\nAliquam eos esse neque sit cupiditate nam omnis.\nSint asperiores repudiandae nemo.\nPariatur tempore cum aperiam impedit ex.", + "pastOrPresentOrders": "Fugit culpa totam.", "commercialAndIndustrialPurposes": [ { "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true - }, - { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true - }, - { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false } ] }, { - "siteRegistry": false, - "dateReceived": "2023-07-04", - "dateCompleted": "2021-04-10", - "dateEntered": "2020-02-19", - "dateRegistrar": "2023-09-27", - "dateLocalAuthorityReceived": "2020-01-30", - "summary": "Voluptate voluptate mollitia assumenda vel ut mollitia.\nDoloribus temporibus dolorem aliquam ducimus ad dolore.", - "informationUsed": "Nam pariatur consectetur vero distinctio.\nIste ut voluptas consectetur.\nMollitia odio molestiae accusamus veniam ipsam incidunt quod excepturi.\nInventore aliquam nisi possimus soluta quaerat inventore veniam ipsam.\nProvident sit non atque labore enim consequuntur.", - "pastOrPresentOrders": "Eveniet vel esse possimus.\nVoluptate ducimus amet quod voluptates nihil.", + "siteRegistry": true, + "dateReceived": "2020-11-06", + "dateCompleted": "2023-05-27", + "dateEntered": "2020-05-09", + "dateRegistrar": "2014-10-09", + "dateLocalAuthorityReceived": "2015-03-21", + "summary": "Repellendus aspernatur ratione itaque eveniet maxime expedita.\nSoluta dolor nesciunt assumenda ipsum soluta voluptatum odit.\nOmnis adipisci rem totam voluptates sapiente id laudantium.", + "informationUsed": "Dignissimos incidunt atque eum minima.\nDelectus iusto voluptatem.\nFugiat debitis sed.\nIpsam nemo voluptatum sapiente est.\nQuam ea commodi maiores assumenda dolorem ratione.", + "pastOrPresentOrders": "Quae eos necessitatibus dolorum in tenetur tempora fugit blanditiis.\nDolorum natus consectetur quaerat tenetur quod nesciunt neque.\nDolor tempora ipsa fugiat.", "commercialAndIndustrialPurposes": [ { "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false - }, - { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false + "siteRegistry": true }, { "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false - }, - { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true } ] @@ -46668,133 +51921,85 @@ ], "activityLog": [ { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "GERLACH LAVERN", - "timestamp": "2018-10-20" + "user": "RITCHIE KRISTINA", + "timestamp": "2016-03-01" }, { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "DONNELLY ADRAIN", - "timestamp": "2014-12-21" + "user": "DARE SAMMY", + "timestamp": "2023-06-20" }, { - "siteRegistry": true, + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "EFFERTZ DALE", - "timestamp": "2014-08-12" + "user": "FRIESEN MCKENNA", + "timestamp": "2015-07-29" }, { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "QUITZON BETTE", - "timestamp": "2018-02-12" + "user": "WAELCHI COTY", + "timestamp": "2020-09-09" }, { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "JOHNSTON MATEO", - "timestamp": "2020-11-17" + "user": "GRADY NEWTON", + "timestamp": "2018-10-15" } ], "associatedSites": [ { - "dateNoted": "2017-08-20", - "notes": "", - "parcelID": "19909", - "siteID": "15858", - "siteRegistry": false - }, - { - "dateNoted": "2016-06-14", + "dateNoted": "2021-10-17", "notes": "", - "parcelID": "17714", - "siteID": "15574", - "siteRegistry": true - } - ] - }, - { - "uuid": "473cd036-67ae-4448-b769-5a7214c07d2d", - "siteID": 17411, - "address": "189 Jacklyn Glen", - "latitude": 48.6952, - "longitude": -119.825, - "lastUpdated": "2021-05-02", - "city": "Lowell", - "region": "Thompson-Okanagan", - "victoriaFile": "26250-20/17961", - "regionalFile": "N/A", - "parcelIDs": [ - 8443793, - 9712548, - 234959, - 8671457, - 2143784 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2016-04-27", - "completed": "2014-06-04", - "initiated": "2018-03-14", - "ministryContact": "WELCH AVA", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - } - ], + "parcelID": "18786", + "siteID": "17847", "siteRegistry": false }, { - "createdAt": "2019-06-17", - "completed": "2020-03-29", - "initiated": "2022-04-12", - "ministryContact": "EMMERICH KRAIG", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - } - ], - "siteRegistry": true - }, - { - "createdAt": "2021-06-16", - "completed": "2013-12-24", - "initiated": "2016-11-14", - "ministryContact": "KEELING EZEQUIEL", + "dateNoted": "2021-01-18", + "notes": "", + "parcelID": "15323", + "siteID": "20268", + "siteRegistry": false + }, + { + "dateNoted": "2023-08-30", + "notes": "", + "parcelID": "16798", + "siteID": "19583", + "siteRegistry": false + } + ] + }, + { + "uuid": "badad7a6-df37-4d57-9507-9f12b84af380", + "siteID": 18611, + "address": "8363 Pfannerstill Ramp", + "latitude": 49.6091, + "longitude": -120.6176, + "lastUpdated": "2017-09-19", + "city": "Bradenburgh", + "region": "Cariboo", + "victoriaFile": "26250-20/10444", + "regionalFile": "N/A", + "parcelIDs": [ + 1595555, + 2774682, + 8166131, + 7196270, + 4863755 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2020-04-25", + "completed": "2015-06-24", + "initiated": "2017-09-28", + "ministryContact": "WILLIAMSON GERMAN", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -46803,33 +52008,23 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": true } ], "siteRegistry": true }, { - "createdAt": "2023-03-15", - "completed": "2021-02-11", - "initiated": "2023-09-15", - "ministryContact": "BERGSTROM EMILIA", + "createdAt": "2022-05-22", + "completed": "2023-02-06", + "initiated": "2015-05-23", + "ministryContact": "GREEN WARD", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -46837,167 +52032,140 @@ "" ], "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, { "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false - } - ], - "siteRegistry": false - }, - { - "createdAt": "2014-01-12", - "completed": "2019-07-09", - "initiated": "2014-02-24", - "ministryContact": "KERLUKE ELEANORA", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true } ], "participants": [ { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2019-03-14", - "startDate": "2019-12-20", + "name": "AMET, DOLOR SIT", + "endDate": "2023-02-10", + "startDate": "2021-07-25", "notes": "", "roles": [ "EMPLOYEE" ], "siteRegistry": true }, - { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2017-10-27", - "startDate": "2017-10-17", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": false - }, { "name": "IPSUM", - "endDate": "2022-12-19", - "startDate": "2016-05-16", + "endDate": "2015-09-22", + "startDate": "2014-02-11", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2021-08-24", - "startDate": "2020-12-23", - "notes": "", - "roles": [ - "ORGANIZATION" - ], "siteRegistry": true } ], "suspectLandUses": [ { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-12-28 (described on Site Profile dated 2014-12-28)", + "notes": "INSERTED FOR SITE PROFILE DATED 2013-11-06 (described on Site Profile dated 2013-11-06)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-03-11 (described on Site Profile dated 2017-03-11)", + "notes": "INSERTED FOR SITE PROFILE DATED 2019-12-23 (described on Site Profile dated 2019-12-23)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], + "parcelDescriptions": [ + { + "siteRegistry": true, + "dateNoted": "2022-07-18", + "parcelID": "17428", + "crownLandUsePIN": "16028", + "crownLandFileNumber": "15557", + "landDescription": "LOT 4 OF LOT 4 BLOCK 2 DISTRICT LOT 3 PLAN 4272" + }, + { + "siteRegistry": true, + "dateNoted": "2016-07-15", + "parcelID": "18941", + "crownLandUsePIN": "20662", + "crownLandFileNumber": "18162", + "landDescription": "LOT 3 OF LOT 5 BLOCK 5 DISTRICT LOT 5 PLAN 3674" + } + ], "siteDisclosures": [ { - "siteRegistry": false, - "dateReceived": "2016-05-11", - "dateCompleted": "2015-02-20", - "dateEntered": "2014-06-15", - "dateRegistrar": "2017-09-04", - "dateLocalAuthorityReceived": "2022-12-17", - "summary": "Repellat voluptatum occaecati.", - "informationUsed": "Soluta fugit explicabo id delectus fugit soluta.\nEt quos fugiat quisquam quia.\nVeritatis neque suscipit accusantium.\nDignissimos eius accusamus vel quia numquam numquam culpa sequi.\nIpsum mollitia fuga totam tempora possimus odio velit dolorum.", - "pastOrPresentOrders": "Iusto nobis minus quibusdam modi saepe similique voluptates delectus enim.\nMolestiae quia vel.\nOdio deleniti at.", + "siteRegistry": true, + "dateReceived": "2015-10-25", + "dateCompleted": "2020-08-03", + "dateEntered": "2020-10-09", + "dateRegistrar": "2017-08-02", + "dateLocalAuthorityReceived": "2018-06-10", + "summary": "Maiores cum necessitatibus nesciunt optio asperiores saepe fugiat odio aperiam.", + "informationUsed": "Illo quos hic impedit.\nVitae minus natus nobis sapiente sapiente at.\nAut atque accusamus.\nOptio consequuntur nemo.", + "pastOrPresentOrders": "Quas sed eligendi fugit enim a ullam reiciendis fuga.", "commercialAndIndustrialPurposes": [ { "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false }, { "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true + "siteRegistry": false }, { "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true } ] }, { - "siteRegistry": true, - "dateReceived": "2015-11-09", - "dateCompleted": "2018-04-27", - "dateEntered": "2019-03-25", - "dateRegistrar": "2018-06-12", - "dateLocalAuthorityReceived": "2013-11-17", - "summary": "Harum in ipsum laborum assumenda repellat architecto provident laboriosam dolor.\nError fuga unde quae iusto harum.\nLaborum assumenda earum.", - "informationUsed": "Quis ipsum ipsum rerum et asperiores dignissimos tempora.\nId reiciendis eaque expedita odio illum atque esse.\nAd eaque aperiam ea ipsa.\nVoluptates fugiat nobis voluptatem.\nQuas recusandae expedita dicta doloribus sed.", - "pastOrPresentOrders": "Similique vero inventore unde dolores fugit inventore explicabo ut cum.", + "siteRegistry": false, + "dateReceived": "2021-12-15", + "dateCompleted": "2022-11-03", + "dateEntered": "2014-12-09", + "dateRegistrar": "2016-09-12", + "dateLocalAuthorityReceived": "2016-02-19", + "summary": "Voluptatum quia enim.\nPraesentium excepturi esse excepturi delectus deleniti doloremque vitae velit deserunt.\nLaboriosam quia repellendus magnam provident itaque.", + "informationUsed": "Id doloribus voluptatem autem id voluptatibus nobis cum placeat ut.\nDeserunt aliquam eveniet.\nAd rerum soluta iste cum hic eligendi quis at.", + "pastOrPresentOrders": "Perferendis consequuntur in.", "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, { "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, { "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false } ] @@ -47007,95 +52175,88 @@ { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "NIENOW GAYLE", - "timestamp": "2022-10-09" + "user": "NICOLAS BETH", + "timestamp": "2021-06-15" }, { - "siteRegistry": true, + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "CORKERY ENOS", - "timestamp": "2015-06-03" + "user": "ZBONCAK CECELIA", + "timestamp": "2019-10-15" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "O'KON ALYCE", - "timestamp": "2021-08-31" + "user": "GOODWIN ERNESTINA", + "timestamp": "2017-10-17" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "DOOLEY PINKIE", - "timestamp": "2017-06-29" + "user": "KUNZE NIA", + "timestamp": "2019-05-25" }, { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "PARKER MELANY", - "timestamp": "2016-09-22" + "user": "BEDNAR EUDORA", + "timestamp": "2020-09-10" }, { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "BAUCH MARTA", - "timestamp": "2014-09-19" + "user": "BERGNAUM MOLLIE", + "timestamp": "2018-03-27" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "BROWN HORACE", - "timestamp": "2022-02-15" + "user": "LINDGREN TRE", + "timestamp": "2023-08-10" } ], "associatedSites": [ { - "dateNoted": "2018-12-27", + "dateNoted": "2018-03-16", "notes": "", - "parcelID": "16489", - "siteID": "16893", - "siteRegistry": false + "parcelID": "20189", + "siteID": "19608", + "siteRegistry": true }, { - "dateNoted": "2018-04-20", + "dateNoted": "2021-04-13", "notes": "", - "parcelID": "17401", - "siteID": "17568", + "parcelID": "15411", + "siteID": "17779", "siteRegistry": false - }, - { - "dateNoted": "2015-03-03", - "notes": "", - "parcelID": "18513", - "siteID": "19960", - "siteRegistry": true } ] }, { - "uuid": "b80d8513-6ce4-412b-8a14-b9f1833e851f", - "siteID": 19306, - "address": "3899 Norberto Rapid", - "latitude": 55.3893, - "longitude": -134.7675, - "lastUpdated": "2014-04-24", - "city": "North Benjamin", - "region": "Cariboo", - "victoriaFile": "26250-20/12589", + "uuid": "ac6ddafd-2e73-4265-9d42-b106d9bffadf", + "siteID": 20383, + "address": "57602 Coralie Skyway", + "latitude": 58.4244, + "longitude": -120.6009, + "lastUpdated": "2020-02-18", + "city": "Townecester", + "region": " North Coast", + "victoriaFile": "26250-20/14341", "regionalFile": "N/A", "parcelIDs": [ - 7777163, - 9578009, - 7234819, - 1304533, - 927944 + 2180557, + 2813153, + 8495058, + 5905673, + 9329057 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2023-08-22", - "completed": "2016-08-01", - "initiated": "2019-09-14", - "ministryContact": "LEGROS ZACKARY", + "createdAt": "2016-12-17", + "completed": "2015-05-31", + "initiated": "2023-02-15", + "ministryContact": "SWANIAWSKI LEA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -47106,8 +52267,28 @@ { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "createdAt": "2021-10-18", + "completed": "2019-10-10", + "initiated": "2016-03-30", + "ministryContact": "HEATHCOTE THEODORE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", @@ -47115,22 +52296,32 @@ }, { "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false + "role": "SUBMITTED BY", + "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": false } ], "siteRegistry": false }, { - "createdAt": "2023-05-28", - "completed": "2019-09-27", - "initiated": "2014-05-27", - "ministryContact": "CRIST JAVONTE", + "createdAt": "2019-12-05", + "completed": "2022-07-08", + "initiated": "2019-01-04", + "ministryContact": "BERGSTROM PROVIDENCI", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -47141,11 +52332,16 @@ { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": true }, { @@ -47154,7 +52350,7 @@ "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true } @@ -47162,10 +52358,10 @@ "siteRegistry": true }, { - "createdAt": "2022-06-23", - "completed": "2022-05-27", - "initiated": "2015-07-26", - "ministryContact": "GERLACH IVA", + "createdAt": "2019-08-11", + "completed": "2016-06-27", + "initiated": "2023-02-20", + "ministryContact": "SIMONIS-RUNTE ANIBAL", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -47175,6 +52371,21 @@ "notationParticipants": [ { "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false }, @@ -47187,10 +52398,10 @@ "siteRegistry": false }, { - "createdAt": "2021-02-08", - "completed": "2018-09-10", - "initiated": "2017-08-25", - "ministryContact": "HOWELL ELEANORA", + "createdAt": "2021-04-01", + "completed": "2018-11-30", + "initiated": "2016-03-08", + "ministryContact": "JAKUBOWSKI AMELIA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -47199,18 +52410,18 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false } ], @@ -47219,180 +52430,242 @@ ], "participants": [ { - "name": "AMET, DOLOR SIT", - "endDate": "2023-01-23", - "startDate": "2017-02-15", + "name": "IPSUM", + "endDate": "2014-12-24", + "startDate": "2017-10-10", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": false + "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2014-01-04", - "startDate": "2014-10-07", + "name": "IPSUM", + "endDate": "2018-04-27", + "startDate": "2015-12-23", "notes": "", "roles": [ "ORGANIZATION" ], "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2018-02-18", + "startDate": "2015-04-27", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false } ], "suspectLandUses": [ { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2020-11-17 (described on Site Profile dated 2020-11-17)", + "notes": "INSERTED FOR SITE PROFILE DATED 2013-10-27 (described on Site Profile dated 2013-10-27)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-01-29 (described on Site Profile dated 2018-01-29)", + "notes": "INSERTED FOR SITE PROFILE DATED 2023-03-19 (described on Site Profile dated 2023-03-19)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-10-22 (described on Site Profile dated 2021-10-22)", + "notes": "INSERTED FOR SITE PROFILE DATED 2022-03-01 (described on Site Profile dated 2022-03-01)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2020-10-05 (described on Site Profile dated 2020-10-05)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2022-06-28 (described on Site Profile dated 2022-06-28)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], - "siteDisclosures": [ + "parcelDescriptions": [ { "siteRegistry": false, - "dateReceived": "2015-07-07", - "dateCompleted": "2014-03-19", - "dateEntered": "2014-10-26", - "dateRegistrar": "2016-04-29", - "dateLocalAuthorityReceived": "2014-03-27", - "summary": "Perferendis asperiores qui minima impedit ullam dolor.\nQuibusdam laborum deserunt molestiae.\nMinima debitis nostrum autem neque ipsum.", - "informationUsed": "Et nostrum minima possimus.\nVeritatis reprehenderit mollitia deleniti modi commodi cumque eveniet et veritatis.\nDolorem a odit quidem.\nQuos voluptatem illo rerum perspiciatis nisi cumque minus.\nOmnis officiis mollitia possimus.", - "pastOrPresentOrders": "Quaerat expedita dolore debitis dicta quibusdam.\nAccusamus suscipit officiis sit totam vero.", + "dateNoted": "2022-05-08", + "parcelID": "20859", + "crownLandUsePIN": "16330", + "crownLandFileNumber": "19453", + "landDescription": "LOT 1 OF LOT 2 BLOCK 2 DISTRICT LOT 4 PLAN 8789" + }, + { + "siteRegistry": true, + "dateNoted": "2018-06-20", + "parcelID": "18079", + "crownLandUsePIN": "18124", + "crownLandFileNumber": "18874", + "landDescription": "LOT 2 OF LOT 2 BLOCK 1 DISTRICT LOT 2 PLAN 8918" + }, + { + "siteRegistry": true, + "dateNoted": "2015-08-26", + "parcelID": "20141", + "crownLandUsePIN": "19220", + "crownLandFileNumber": "20666", + "landDescription": "LOT 5 OF LOT 3 BLOCK 4 DISTRICT LOT 1 PLAN 8688" + }, + { + "siteRegistry": false, + "dateNoted": "2018-11-15", + "parcelID": "19143", + "crownLandUsePIN": "15995", + "crownLandFileNumber": "18641", + "landDescription": "LOT 5 OF LOT 4 BLOCK 2 DISTRICT LOT 1 PLAN 4997" + } + ], + "siteDisclosures": [ + { + "siteRegistry": true, + "dateReceived": "2021-06-05", + "dateCompleted": "2018-12-16", + "dateEntered": "2019-05-10", + "dateRegistrar": "2016-09-15", + "dateLocalAuthorityReceived": "2014-06-03", + "summary": "Sunt quaerat cupiditate ut in suscipit dolorem ipsam iusto consequuntur.\nOmnis fugiat voluptatum veniam expedita incidunt dolorum.\nVero nesciunt quam aliquam blanditiis.", + "informationUsed": "Laudantium architecto expedita expedita occaecati blanditiis deleniti unde.\nMagnam debitis itaque.\nQuod error debitis voluptate repellat alias deserunt quidem.", + "pastOrPresentOrders": "Quaerat dolorum voluptate nihil incidunt quam libero eaque.\nVoluptatum reprehenderit soluta libero laborum iste numquam quidem doloremque veniam.", "commercialAndIndustrialPurposes": [ { - "scheduleReference": "F2*", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false + "siteRegistry": true }, { "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false - }, - { - "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false + "siteRegistry": true } ] }, { "siteRegistry": true, - "dateReceived": "2021-05-03", - "dateCompleted": "2016-05-20", - "dateEntered": "2017-09-12", - "dateRegistrar": "2014-02-05", - "dateLocalAuthorityReceived": "2021-06-02", - "summary": "Libero veniam numquam cupiditate error blanditiis.", - "informationUsed": "Aliquam officiis sunt natus et reprehenderit animi fuga.\nFacilis incidunt maxime.\nAnimi architecto praesentium odit amet unde saepe eum unde.\nEum hic nulla excepturi neque itaque labore eos iste quidem.\nQuas repellat amet ipsam velit quidem eaque.", - "pastOrPresentOrders": "Tempore deserunt beatae saepe numquam facilis consequuntur.", + "dateReceived": "2016-07-06", + "dateCompleted": "2022-11-05", + "dateEntered": "2022-06-05", + "dateRegistrar": "2015-08-09", + "dateLocalAuthorityReceived": "2022-01-02", + "summary": "Reprehenderit rem placeat voluptates minima eligendi ex blanditiis eligendi.", + "informationUsed": "Ducimus beatae inventore perspiciatis.\nEum doloremque repellendus eum quis quia mollitia magnam enim magnam.\nAnimi et modi ad optio dignissimos veniam consequatur sint.\nExercitationem commodi praesentium excepturi velit eveniet consequatur.\nVoluptates ipsum sit deleniti reprehenderit at.", + "pastOrPresentOrders": "At vel deleniti dolor.", "commercialAndIndustrialPurposes": [ { "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true - }, - { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false }, { "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true } ] } ], "activityLog": [ + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "KERLUKE LONIE", + "timestamp": "2014-07-13" + }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "MULLER-CARTWRIGHT MATTEO", - "timestamp": "2023-01-08" + "user": "STROSIN GLADYS", + "timestamp": "2016-11-06" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "KSHLERIN LUCIO", - "timestamp": "2023-06-27" + "user": "BAHRINGER KELSI", + "timestamp": "2023-06-22" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "KESSLER ISOBEL", - "timestamp": "2015-02-18" + "user": "RUTHERFORD TIMMY", + "timestamp": "2020-03-25" }, { - "siteRegistry": true, + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "SPINKA DOCK", - "timestamp": "2017-12-10" + "user": "SPENCER NOLA", + "timestamp": "2023-04-22" }, { - "siteRegistry": true, + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "CREMIN RUPERT", - "timestamp": "2017-07-03" + "user": "VANDERVORT MARSHALL", + "timestamp": "2014-08-15" } ], "associatedSites": [ { - "dateNoted": "2022-10-06", + "dateNoted": "2018-08-23", "notes": "", - "parcelID": "19941", - "siteID": "16632", + "parcelID": "19515", + "siteID": "18665", "siteRegistry": false }, { - "dateNoted": "2016-06-16", + "dateNoted": "2014-07-09", "notes": "", - "parcelID": "18056", - "siteID": "20891", + "parcelID": "15514", + "siteID": "20468", "siteRegistry": false + }, + { + "dateNoted": "2022-04-11", + "notes": "", + "parcelID": "16738", + "siteID": "18529", + "siteRegistry": true } ] }, { - "uuid": "a63852db-8982-46f2-86b3-438dcff96ab5", - "siteID": 17741, - "address": "581 Lubowitz Well", - "latitude": 56.2504, - "longitude": -135.7647, - "lastUpdated": "2018-12-16", - "city": "Lindview", - "region": "Thompson-Okanagan", - "victoriaFile": "26250-20/19555", + "uuid": "9bdc94d3-3533-41ee-9cc4-e779afba92b6", + "siteID": 18350, + "address": "14059 Reichel Avenue", + "latitude": 52.9621, + "longitude": -128.4714, + "lastUpdated": "2021-07-16", + "city": "White Plains", + "region": " North Coast", + "victoriaFile": "26250-20/19232", "regionalFile": "N/A", "parcelIDs": [ - 4831648, - 4793808, - 8102227, - 7550784, - 8880156 + 5184006, + 3840190, + 7919199, + 7831339, + 2627514 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2016-10-10", - "completed": "2015-05-02", - "initiated": "2018-12-13", - "ministryContact": "REINGER MAUD", + "createdAt": "2017-10-21", + "completed": "2016-07-21", + "initiated": "2019-05-03", + "ministryContact": "WEISSNAT DEANNA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -47402,57 +52675,37 @@ "notationParticipants": [ { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false - } - ], - "siteRegistry": false - }, - { - "createdAt": "2021-02-04", - "completed": "2017-02-09", - "initiated": "2014-07-02", - "ministryContact": "GORCZANY NORBERTO", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true } ], "siteRegistry": true }, { - "createdAt": "2015-07-29", - "completed": "2017-11-10", - "initiated": "2015-04-27", - "ministryContact": "ROBEL CAROLINE", + "createdAt": "2020-11-20", + "completed": "2015-08-31", + "initiated": "2016-07-03", + "ministryContact": "COLE-MAYERT DANIELA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -47463,36 +52716,36 @@ { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": false } ], "siteRegistry": true }, { - "createdAt": "2018-10-19", - "completed": "2019-12-04", - "initiated": "2022-09-30", - "ministryContact": "MACEJKOVIC GUADALUPE", + "createdAt": "2016-05-31", + "completed": "2019-05-23", + "initiated": "2014-03-01", + "ministryContact": "LOCKMAN MALLORY", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -47500,34 +52753,24 @@ "" ], "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2016-07-26", - "completed": "2021-02-15", - "initiated": "2015-10-07", - "ministryContact": "GISLASON MYRNA", + "createdAt": "2017-07-05", + "completed": "2014-07-31", + "initiated": "2016-01-09", + "ministryContact": "KUHLMAN JOANNE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -47537,16 +52780,6 @@ "notationParticipants": [ { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false }, @@ -47554,11 +52787,6 @@ "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true } ], "siteRegistry": true @@ -47567,8 +52795,8 @@ "participants": [ { "name": "AMET, DOLOR SIT", - "endDate": "2018-04-11", - "startDate": "2021-07-19", + "endDate": "2015-01-30", + "startDate": "2015-01-17", "notes": "", "roles": [ "EMPLOYEE" @@ -47576,79 +52804,111 @@ "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2014-04-01", - "startDate": "2017-08-02", + "name": "IPSUM", + "endDate": "2022-10-04", + "startDate": "2015-09-28", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2022-01-10", - "startDate": "2015-07-14", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2020-06-23", + "startDate": "2020-02-08", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false + } + ], + "suspectLandUses": [ + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2013-10-19 (described on Site Profile dated 2013-10-19)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2014-10-20", - "startDate": "2016-04-27", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": true + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2017-06-18 (described on Site Profile dated 2017-06-18)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2015-03-20", - "startDate": "2016-04-22", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": true + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2015-10-01 (described on Site Profile dated 2015-10-01)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2023-04-19 (described on Site Profile dated 2023-04-19)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2023-04-07 (described on Site Profile dated 2023-04-07)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], - "suspectLandUses": [ + "parcelDescriptions": [ { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-04-21 (described on Site Profile dated 2018-04-21)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "siteRegistry": true, + "dateNoted": "2013-10-28", + "parcelID": "20480", + "crownLandUsePIN": "19832", + "crownLandFileNumber": "17664", + "landDescription": "LOT 3 OF LOT 4 BLOCK 3 DISTRICT LOT 3 PLAN 6520" + }, + { + "siteRegistry": true, + "dateNoted": "2019-03-29", + "parcelID": "19629", + "crownLandUsePIN": "17192", + "crownLandFileNumber": "16823", + "landDescription": "LOT 1 OF LOT 2 BLOCK 5 DISTRICT LOT 5 PLAN 6377" }, { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-12-31 (described on Site Profile dated 2015-12-31)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "dateNoted": "2020-06-08", + "parcelID": "17820", + "crownLandUsePIN": "16852", + "crownLandFileNumber": "18258", + "landDescription": "LOT 4 OF LOT 1 BLOCK 1 DISTRICT LOT 3 PLAN 4478" + }, + { + "siteRegistry": true, + "dateNoted": "2018-10-13", + "parcelID": "16785", + "crownLandUsePIN": "19330", + "crownLandFileNumber": "19982", + "landDescription": "LOT 5 OF LOT 1 BLOCK 1 DISTRICT LOT 2 PLAN 5958" + }, + { + "siteRegistry": true, + "dateNoted": "2021-03-02", + "parcelID": "16243", + "crownLandUsePIN": "17277", + "crownLandFileNumber": "15380", + "landDescription": "LOT 3 OF LOT 4 BLOCK 1 DISTRICT LOT 3 PLAN 9489" } ], "siteDisclosures": [ { - "siteRegistry": false, - "dateReceived": "2014-04-08", - "dateCompleted": "2015-02-08", - "dateEntered": "2019-12-21", - "dateRegistrar": "2022-06-19", - "dateLocalAuthorityReceived": "2017-10-31", - "summary": "Placeat magni ab.", - "informationUsed": "Cupiditate illo libero perferendis ducimus ad nihil.\nPerspiciatis accusantium eaque facere dolores.\nQuod quia laudantium iste laborum provident repellat laudantium vitae molestias.\nTempore perferendis commodi.\nMollitia esse inventore.", - "pastOrPresentOrders": "Voluptas commodi suscipit laudantium quia voluptate.", + "siteRegistry": true, + "dateReceived": "2018-11-10", + "dateCompleted": "2015-11-27", + "dateEntered": "2016-05-06", + "dateRegistrar": "2016-12-20", + "dateLocalAuthorityReceived": "2022-02-07", + "summary": "Libero exercitationem inventore illum a architecto laudantium sunt atque minus.\nAb officia rem expedita.", + "informationUsed": "Magni veritatis saepe voluptatum modi commodi necessitatibus accusantium odio.\nQuis vel eius.\nAd quo magni nostrum quod.", + "pastOrPresentOrders": "Perferendis temporibus tempore suscipit cum doloremque ullam et quas pariatur.\nFugiat temporibus nesciunt earum accusantium iusto delectus ratione earum.\nTemporibus necessitatibus quis eaque ut sed perferendis.", "commercialAndIndustrialPurposes": [ { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true - }, - { - "scheduleReference": "F1*", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false + "siteRegistry": true }, { "scheduleReference": "F2*", @@ -47659,92 +52919,119 @@ } ], "activityLog": [ - { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "BINS CORRINE", - "timestamp": "2020-07-19" - }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "THIEL JAYLIN", - "timestamp": "2022-07-30" + "user": "BORER FRITZ", + "timestamp": "2018-11-06" }, { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "HICKLE DEJA", - "timestamp": "2023-02-04" + "user": "KING EILEEN", + "timestamp": "2015-11-18" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "HYATT ARNULFO", - "timestamp": "2016-02-27" + "user": "HOMENICK SIBYL", + "timestamp": "2016-11-28" }, { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "WUNSCH GENNARO", - "timestamp": "2022-02-08" + "user": "ULLRICH BENNY", + "timestamp": "2017-12-02" }, { - "siteRegistry": true, + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "SCHMIDT RAHSAAN", - "timestamp": "2017-05-17" + "user": "HIRTHE ROSCOE", + "timestamp": "2022-11-06" } ], "associatedSites": [ { - "dateNoted": "2023-03-11", + "dateNoted": "2015-10-06", "notes": "", - "parcelID": "15375", - "siteID": "15381", + "parcelID": "20106", + "siteID": "18634", "siteRegistry": true }, { - "dateNoted": "2017-12-01", + "dateNoted": "2015-05-22", "notes": "", - "parcelID": "17461", - "siteID": "15206", + "parcelID": "17207", + "siteID": "20492", + "siteRegistry": false + } + ] + }, + { + "uuid": "9fb96f53-9f93-4eed-a98c-0c667557e298", + "siteID": 18123, + "address": "5638 Jaleel Rapids", + "latitude": 50.7615, + "longitude": -122.6735, + "lastUpdated": "2018-06-08", + "city": "Lake Violashire", + "region": "Vancouver Island/Coast", + "victoriaFile": "26250-20/13927", + "regionalFile": "N/A", + "parcelIDs": [ + 2995520, + 2535493, + 9745429, + 9232240, + 3372130 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "createdAt": "2016-04-07", + "completed": "2016-10-10", + "initiated": "2019-05-09", + "ministryContact": "BARTON JESUS", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], "siteRegistry": false }, { - "dateNoted": "2015-08-19", - "notes": "", - "parcelID": "19495", - "siteID": "15889", - "siteRegistry": false - } - ] - }, - { - "uuid": "3aef68e6-74d8-4a53-8a76-a6ea5680d9c6", - "siteID": 19899, - "address": "263 Ron Orchard", - "latitude": 48.3948, - "longitude": -121.6977, - "lastUpdated": "2016-05-04", - "city": "Frisco", - "region": "Vancouver Island/Coast", - "victoriaFile": "26250-20/15978", - "regionalFile": "N/A", - "parcelIDs": [ - 8863883, - 8380195, - 287971, - 3909514, - 5299417 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2016-06-23", - "completed": "2021-10-17", - "initiated": "2022-12-15", - "ministryContact": "WALTER ESTELLE", + "createdAt": "2020-03-23", + "completed": "2018-11-08", + "initiated": "2020-09-22", + "ministryContact": "O'CONNER CHANDLER", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -47753,9 +53040,14 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", @@ -47768,18 +53060,18 @@ "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2023-08-05", - "completed": "2021-10-22", - "initiated": "2015-09-23", - "ministryContact": "QUITZON FABIAN", + "createdAt": "2021-06-07", + "completed": "2020-03-22", + "initiated": "2021-06-23", + "ministryContact": "WATERS-KOSS RONNY", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -47790,31 +53082,36 @@ { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", "siteRegistry": false } ], "siteRegistry": false }, { - "createdAt": "2015-07-05", - "completed": "2020-07-17", - "initiated": "2019-06-05", - "ministryContact": "OLSON CLEORA", + "createdAt": "2021-11-09", + "completed": "2014-11-01", + "initiated": "2016-03-15", + "ministryContact": "PARISIAN EDMOND", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -47823,23 +53120,38 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2020-03-04", - "completed": "2022-03-02", - "initiated": "2015-06-01", - "ministryContact": "POWLOWSKI LESSIE", + "createdAt": "2020-12-11", + "completed": "2017-11-14", + "initiated": "2017-09-03", + "ministryContact": "GIBSON JULIANNE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -47850,134 +53162,135 @@ { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true } ], "participants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2021-01-25", - "startDate": "2020-04-24", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2020-01-28", + "startDate": "2015-07-21", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": true + "siteRegistry": false }, { "name": "AMET, DOLOR SIT", - "endDate": "2019-03-01", - "startDate": "2021-06-09", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": true - }, - { - "name": "IPSUM", - "endDate": "2017-12-27", - "startDate": "2013-10-21", + "endDate": "2022-09-15", + "startDate": "2016-04-25", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2016-09-09", - "startDate": "2022-10-13", - "notes": "", - "roles": [ - "ORGANIZATION" - ], "siteRegistry": false } ], "suspectLandUses": [ { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-03-03 (described on Site Profile dated 2021-03-03)", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2018-07-10 (described on Site Profile dated 2018-07-10)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-11-28 (described on Site Profile dated 2022-11-28)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2019-05-05 (described on Site Profile dated 2019-05-05)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-03-23 (described on Site Profile dated 2017-03-23)", + "notes": "INSERTED FOR SITE PROFILE DATED 2015-09-19 (described on Site Profile dated 2015-09-19)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], - "siteDisclosures": [ + "parcelDescriptions": [ { "siteRegistry": true, - "dateReceived": "2021-02-12", - "dateCompleted": "2021-10-20", - "dateEntered": "2023-02-02", - "dateRegistrar": "2021-06-01", - "dateLocalAuthorityReceived": "2013-11-12", - "summary": "Saepe aliquam animi.\nVoluptas laudantium molestias repellendus neque consequuntur blanditiis.", - "informationUsed": "Delectus perferendis commodi cupiditate inventore quidem.\nVeritatis quidem aspernatur ipsum nam.\nAlias fugiat architecto doloremque repellendus vitae soluta dolor.\nLaudantium cupiditate dolor.\nQuisquam voluptas dignissimos occaecati.", - "pastOrPresentOrders": "Ut sed eligendi adipisci.", + "dateNoted": "2022-11-11", + "parcelID": "16555", + "crownLandUsePIN": "16234", + "crownLandFileNumber": "20770", + "landDescription": "LOT 1 OF LOT 4 BLOCK 1 DISTRICT LOT 4 PLAN 2951" + }, + { + "siteRegistry": true, + "dateNoted": "2022-09-19", + "parcelID": "19841", + "crownLandUsePIN": "19406", + "crownLandFileNumber": "16378", + "landDescription": "LOT 5 OF LOT 3 BLOCK 1 DISTRICT LOT 5 PLAN 4317" + }, + { + "siteRegistry": true, + "dateNoted": "2014-07-26", + "parcelID": "19385", + "crownLandUsePIN": "18689", + "crownLandFileNumber": "17277", + "landDescription": "LOT 1 OF LOT 4 BLOCK 1 DISTRICT LOT 1 PLAN 6897" + } + ], + "siteDisclosures": [ + { + "siteRegistry": false, + "dateReceived": "2020-08-30", + "dateCompleted": "2017-05-26", + "dateEntered": "2022-01-16", + "dateRegistrar": "2019-05-18", + "dateLocalAuthorityReceived": "2016-04-29", + "summary": "Nostrum deserunt nihil hic necessitatibus qui.\nNemo dignissimos hic.\nAliquid reiciendis doloribus unde asperiores ullam minus.", + "informationUsed": "Minima odit ratione non.\nRepellendus corrupti alias repellendus velit.\nNostrum in neque quam aperiam odit libero nemo officiis ducimus.\nItaque aperiam facere at.", + "pastOrPresentOrders": "Necessitatibus laudantium tempora veniam corporis error deserunt nostrum officia recusandae.", "commercialAndIndustrialPurposes": [ - { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true - }, { "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false - }, - { - "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true } ] }, { - "siteRegistry": false, - "dateReceived": "2014-12-19", - "dateCompleted": "2016-09-10", - "dateEntered": "2017-01-20", - "dateRegistrar": "2014-10-28", - "dateLocalAuthorityReceived": "2013-11-23", - "summary": "Beatae ex culpa maiores a ipsam quod nesciunt delectus.", - "informationUsed": "Sunt perferendis in quam porro.\nVoluptates ducimus ratione voluptas sunt eveniet mollitia est soluta.\nCommodi possimus recusandae laboriosam delectus dignissimos est tempore id nostrum.\nVoluptatem veniam amet dicta molestias.", - "pastOrPresentOrders": "Quisquam suscipit error asperiores beatae ex.\nOmnis enim sapiente laborum nesciunt molestiae ex pariatur.", + "siteRegistry": true, + "dateReceived": "2019-12-21", + "dateCompleted": "2022-11-16", + "dateEntered": "2022-02-04", + "dateRegistrar": "2023-05-02", + "dateLocalAuthorityReceived": "2017-02-05", + "summary": "Libero mollitia aut at.\nIn sunt praesentium dolorem temporibus placeat.", + "informationUsed": "Voluptates possimus saepe consectetur quas cupiditate culpa ut explicabo magni.\nAperiam corporis aspernatur illo fugiat laboriosam.\nSit facere iste voluptas perspiciatis.\nNatus recusandae necessitatibus fugiat sit enim ab quasi.", + "pastOrPresentOrders": "Dolores itaque tempora id ad architecto ab qui tempora delectus.", "commercialAndIndustrialPurposes": [ { "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false + "siteRegistry": true }, { - "scheduleReference": "F2*", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false } ] @@ -47987,134 +53300,83 @@ { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "HARTMANN ZOEY", - "timestamp": "2020-11-28" + "user": "O'REILLY NATALIA", + "timestamp": "2015-03-26" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "FEIL SHANA", - "timestamp": "2020-11-23" - }, - { - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "ROGAHN TOMMIE", - "timestamp": "2023-02-08" + "user": "BEAHAN PRINCE", + "timestamp": "2019-04-07" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "SIMONIS FLETCHER", - "timestamp": "2020-05-17" - }, - { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "MACGYVER SANTINA", - "timestamp": "2019-01-20" + "user": "HARVEY WILEY", + "timestamp": "2023-05-26" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "LEDNER MARLEN", - "timestamp": "2023-10-08" + "user": "DOOLEY AUDIE", + "timestamp": "2016-06-24" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "O'REILLY AMBER", - "timestamp": "2023-06-04" - }, + "user": "ROBERTS DESHAWN", + "timestamp": "2022-09-08" + } + ], + "associatedSites": [ { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "JONES EDEN", - "timestamp": "2018-05-20" + "dateNoted": "2022-11-12", + "notes": "", + "parcelID": "18978", + "siteID": "15827", + "siteRegistry": false }, { - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "PAGAC-TURNER WAINO", - "timestamp": "2020-04-23" + "dateNoted": "2021-06-06", + "notes": "", + "parcelID": "17677", + "siteID": "20492", + "siteRegistry": true }, { - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "AUER-ROBERTS CASSANDRA", - "timestamp": "2022-06-14" - } - ], - "associatedSites": [ - { - "dateNoted": "2023-09-24", + "dateNoted": "2023-06-08", "notes": "", - "parcelID": "19080", - "siteID": "17271", + "parcelID": "16956", + "siteID": "16150", "siteRegistry": false } ] }, { - "uuid": "1f35e90e-def7-488d-9e05-5d0ea156a09a", - "siteID": 17419, - "address": "6241 Emily Lock", - "latitude": 49.2887, - "longitude": -118.9766, - "lastUpdated": "2016-08-21", - "city": "North Nya", - "region": "Mainland/Southwest", - "victoriaFile": "26250-20/10157", + "uuid": "aa114fd7-38fd-4ee0-917e-11eb75239a18", + "siteID": 17724, + "address": "553 Micaela Extension", + "latitude": 50.4648, + "longitude": -126.2832, + "lastUpdated": "2014-03-18", + "city": "Tillmanmouth", + "region": "Cariboo", + "victoriaFile": "26250-20/15267", "regionalFile": "N/A", "parcelIDs": [ - 5280565, - 8562373, - 9101945, - 8115001, - 1427888 + 5407281, + 7845000, + 5420039, + 1286929, + 5525925 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2016-12-30", - "completed": "2022-03-12", - "initiated": "2015-02-24", - "ministryContact": "FRANECKI ERWIN", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - } - ], - "siteRegistry": true - }, - { - "createdAt": "2015-11-19", - "completed": "2018-08-05", - "initiated": "2016-11-18", - "ministryContact": "PFEFFER GAGE", + "createdAt": "2015-11-16", + "completed": "2013-10-13", + "initiated": "2018-06-02", + "ministryContact": "DENESIK DANNIE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -48122,11 +53384,6 @@ "" ], "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", @@ -48134,22 +53391,17 @@ }, { "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": true } ], "siteRegistry": false }, { - "createdAt": "2019-02-02", - "completed": "2020-05-17", - "initiated": "2022-01-20", - "ministryContact": "DIETRICH ALBIN", + "createdAt": "2014-03-22", + "completed": "2019-11-07", + "initiated": "2020-06-29", + "ministryContact": "RUECKER MILO", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -48158,14 +53410,9 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", @@ -48173,14 +53420,24 @@ "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false } ], "participants": [ + { + "name": "IPSUM", + "endDate": "2017-10-20", + "startDate": "2018-07-29", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, { "name": "AMET, DOLOR SIT", - "endDate": "2015-04-01", - "startDate": "2017-09-21", + "endDate": "2016-11-25", + "startDate": "2021-06-04", "notes": "", "roles": [ "EMPLOYEE" @@ -48188,19 +53445,29 @@ "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2022-10-15", - "startDate": "2017-06-11", + "name": "IPSUM", + "endDate": "2021-10-02", + "startDate": "2022-04-28", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": true + "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2023-01-19", - "startDate": "2023-01-12", + "name": "IPSUM", + "endDate": "2019-01-19", + "startDate": "2015-07-18", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "name": "AMET, DOLOR SIT", + "endDate": "2017-09-25", + "startDate": "2022-03-05", "notes": "", "roles": [ "ORGANIZATION" @@ -48211,145 +53478,193 @@ "suspectLandUses": [ { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-07-18 (described on Site Profile dated 2015-07-18)", + "notes": "INSERTED FOR SITE PROFILE DATED 2022-08-14 (described on Site Profile dated 2022-08-14)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-05-28 (described on Site Profile dated 2016-05-28)", + "notes": "INSERTED FOR SITE PROFILE DATED 2017-04-22 (described on Site Profile dated 2017-04-22)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2015-07-18 (described on Site Profile dated 2015-07-18)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], - "siteDisclosures": [ + "parcelDescriptions": [ { "siteRegistry": false, - "dateReceived": "2023-03-11", - "dateCompleted": "2018-05-15", - "dateEntered": "2023-02-11", - "dateRegistrar": "2021-02-12", - "dateLocalAuthorityReceived": "2020-09-24", - "summary": "Adipisci ipsum asperiores excepturi earum aliquam ipsam consequuntur perspiciatis accusantium.\nNam nemo voluptates.", - "informationUsed": "Sed cum ex eos maxime consequatur impedit natus sit possimus.\nUnde ut odio culpa nulla eveniet dolorem.\nConsectetur libero maxime.\nVoluptates eligendi minima praesentium ab ipsum cum.\nVero dolore ipsa molestiae eum.", - "pastOrPresentOrders": "Dicta quidem quam esse quasi temporibus.", + "dateNoted": "2022-03-23", + "parcelID": "20152", + "crownLandUsePIN": "15257", + "crownLandFileNumber": "19022", + "landDescription": "LOT 5 OF LOT 5 BLOCK 3 DISTRICT LOT 1 PLAN 3682" + }, + { + "siteRegistry": false, + "dateNoted": "2016-05-17", + "parcelID": "15429", + "crownLandUsePIN": "18915", + "crownLandFileNumber": "19481", + "landDescription": "LOT 2 OF LOT 1 BLOCK 2 DISTRICT LOT 3 PLAN 9378" + }, + { + "siteRegistry": true, + "dateNoted": "2021-10-19", + "parcelID": "18381", + "crownLandUsePIN": "17350", + "crownLandFileNumber": "16724", + "landDescription": "LOT 1 OF LOT 5 BLOCK 5 DISTRICT LOT 5 PLAN 8349" + }, + { + "siteRegistry": false, + "dateNoted": "2015-03-22", + "parcelID": "16418", + "crownLandUsePIN": "16222", + "crownLandFileNumber": "20789", + "landDescription": "LOT 1 OF LOT 4 BLOCK 1 DISTRICT LOT 1 PLAN 7740" + } + ], + "siteDisclosures": [ + { + "siteRegistry": true, + "dateReceived": "2021-02-10", + "dateCompleted": "2019-06-19", + "dateEntered": "2017-03-15", + "dateRegistrar": "2015-07-15", + "dateLocalAuthorityReceived": "2014-06-06", + "summary": "Commodi quam voluptatibus architecto perferendis culpa tempore porro inventore soluta.", + "informationUsed": "Minus quo alias quod.\nDolorum incidunt tempora sunt ipsum nam animi quaerat accusantium.\nDolore eaque recusandae deserunt doloribus molestiae in architecto quos maxime.", + "pastOrPresentOrders": "Accusamus tempore odit aspernatur dolore soluta ullam.", "commercialAndIndustrialPurposes": [ { "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false }, { - "scheduleReference": "F1*", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true + "siteRegistry": false }, { "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false - }, - { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true } ] }, { - "siteRegistry": false, - "dateReceived": "2020-03-11", - "dateCompleted": "2021-06-24", - "dateEntered": "2019-06-14", - "dateRegistrar": "2018-04-27", - "dateLocalAuthorityReceived": "2022-09-06", - "summary": "A molestiae ipsa adipisci vitae.", - "informationUsed": "Aperiam fugiat asperiores deserunt et ex.\nDolorum quod dicta corrupti architecto.\nAssumenda fugit ex quam maxime minima possimus tenetur iure.\nDolorem occaecati nisi tenetur ducimus dolores deleniti voluptas debitis perspiciatis.", - "pastOrPresentOrders": "Nisi voluptate corrupti quaerat nostrum.\nTotam tempore a.", + "siteRegistry": true, + "dateReceived": "2022-04-12", + "dateCompleted": "2023-04-20", + "dateEntered": "2023-05-08", + "dateRegistrar": "2015-04-16", + "dateLocalAuthorityReceived": "2022-03-09", + "summary": "Ipsa voluptatem reiciendis optio sit maxime distinctio asperiores.\nEaque assumenda consequuntur placeat ratione architecto minus.", + "informationUsed": "Suscipit neque harum beatae adipisci quidem.\nQuidem perspiciatis laudantium incidunt debitis itaque ea animi quae.\nEarum fuga non doloribus.\nIpsa unde officiis voluptas.", + "pastOrPresentOrders": "In autem repellendus.", "commercialAndIndustrialPurposes": [ - { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false - }, { "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true + "siteRegistry": false }, { "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true } ] } ], "activityLog": [ { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "TRANTOW IZABELLA", - "timestamp": "2015-07-21" + "user": "LESCH AMIRA", + "timestamp": "2018-11-26" }, { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "KRIS RAOUL", - "timestamp": "2019-07-02" + "user": "REILLY DEMOND", + "timestamp": "2018-06-14" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "STOKES JED", - "timestamp": "2017-02-04" + "user": "POWLOWSKI MICHELLE", + "timestamp": "2020-01-11" }, { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "SCHAMBERGER DRAKE", - "timestamp": "2016-09-20" + "user": "BALISTRERI BARNEY", + "timestamp": "2014-12-04" }, { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "GRIMES EMMITT", - "timestamp": "2022-04-03" + "user": "SKILES TANNER", + "timestamp": "2020-05-26" } ], "associatedSites": [ { - "dateNoted": "2022-01-25", + "dateNoted": "2021-11-17", "notes": "", - "parcelID": "15887", - "siteID": "19203", + "parcelID": "18496", + "siteID": "17110", + "siteRegistry": false + }, + { + "dateNoted": "2013-11-06", + "notes": "", + "parcelID": "18722", + "siteID": "18732", "siteRegistry": true + }, + { + "dateNoted": "2017-12-29", + "notes": "", + "parcelID": "15623", + "siteID": "20833", + "siteRegistry": false } ] }, { - "uuid": "497dc1ea-bc89-4a74-975d-2b530ea08174", - "siteID": 20766, - "address": "723 Janelle Village", - "latitude": 48.1814, - "longitude": -128.9978, - "lastUpdated": "2016-12-07", - "city": "Edwardworth", - "region": "Kootenay", - "victoriaFile": "26250-20/8304", + "uuid": "da26b6c6-ffd0-4539-9741-6ca1cc6421d8", + "siteID": 19256, + "address": "775 Edgardo Manor", + "latitude": 50.3445, + "longitude": -122.3961, + "lastUpdated": "2016-07-19", + "city": "Port Wilton", + "region": " North Coast", + "victoriaFile": "26250-20/8799", "regionalFile": "N/A", "parcelIDs": [ - 4854756, - 841499, - 3982867, - 5475482, - 6227899 + 1393931, + 8584126, + 1570060, + 2816424, + 4485219 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2021-12-06", - "completed": "2022-03-04", - "initiated": "2016-01-17", - "ministryContact": "BEAHAN CALI", + "createdAt": "2021-06-17", + "completed": "2018-08-16", + "initiated": "2020-11-28", + "ministryContact": "CASPER-DANIEL REGGIE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -48357,11 +53672,36 @@ "" ], "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "createdAt": "2021-12-14", + "completed": "2014-04-26", + "initiated": "2017-02-17", + "ministryContact": "BEAHAN EDD", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", @@ -48369,22 +53709,22 @@ }, { "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2019-12-26", - "completed": "2017-07-28", - "initiated": "2021-07-20", - "ministryContact": "BERNHARD VIRGIL", + "createdAt": "2016-10-13", + "completed": "2023-01-07", + "initiated": "2019-03-31", + "ministryContact": "PRICE DORTHY", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -48395,7 +53735,7 @@ { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", @@ -48404,17 +53744,17 @@ }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2021-08-13", - "completed": "2020-04-18", - "initiated": "2021-12-13", - "ministryContact": "SMITH JESSE", + "createdAt": "2022-11-29", + "completed": "2017-11-18", + "initiated": "2020-01-06", + "ministryContact": "PRICE LOUIE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -48422,11 +53762,6 @@ "" ], "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", @@ -48435,21 +53770,26 @@ { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true } ], "siteRegistry": false }, { - "createdAt": "2019-03-27", - "completed": "2019-11-04", - "initiated": "2022-07-08", - "ministryContact": "AUFDERHAR ELVA", + "createdAt": "2017-09-27", + "completed": "2016-10-14", + "initiated": "2022-01-22", + "ministryContact": "TORP BEVERLY", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -48457,192 +53797,260 @@ "" ], "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, { "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true } ], "participants": [ { - "name": "AMET, DOLOR SIT", - "endDate": "2017-07-29", - "startDate": "2016-11-07", + "name": "IPSUM", + "endDate": "2014-06-25", + "startDate": "2016-08-12", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2014-05-07", - "startDate": "2014-09-19", + "name": "IPSUM", + "endDate": "2017-07-27", + "startDate": "2015-01-08", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": false + "siteRegistry": true } ], "suspectLandUses": [ { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-10-11 (described on Site Profile dated 2017-10-11)", + "notes": "INSERTED FOR SITE PROFILE DATED 2023-02-25 (described on Site Profile dated 2023-02-25)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2021-04-21 (described on Site Profile dated 2021-04-21)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + } + ], + "parcelDescriptions": [ + { + "siteRegistry": false, + "dateNoted": "2020-01-24", + "parcelID": "16071", + "crownLandUsePIN": "18314", + "crownLandFileNumber": "20351", + "landDescription": "LOT 2 OF LOT 3 BLOCK 3 DISTRICT LOT 2 PLAN 9581" }, { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-01-02 (described on Site Profile dated 2014-01-02)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "dateNoted": "2018-11-02", + "parcelID": "17384", + "crownLandUsePIN": "20031", + "crownLandFileNumber": "20948", + "landDescription": "LOT 2 OF LOT 4 BLOCK 3 DISTRICT LOT 4 PLAN 4285" + }, + { + "siteRegistry": false, + "dateNoted": "2023-01-28", + "parcelID": "17231", + "crownLandUsePIN": "20848", + "crownLandFileNumber": "15420", + "landDescription": "LOT 4 OF LOT 3 BLOCK 1 DISTRICT LOT 1 PLAN 6877" + }, + { + "siteRegistry": false, + "dateNoted": "2018-05-26", + "parcelID": "20541", + "crownLandUsePIN": "17440", + "crownLandFileNumber": "15218", + "landDescription": "LOT 3 OF LOT 4 BLOCK 1 DISTRICT LOT 1 PLAN 4018" + }, + { + "siteRegistry": false, + "dateNoted": "2018-07-24", + "parcelID": "19939", + "crownLandUsePIN": "19349", + "crownLandFileNumber": "18430", + "landDescription": "LOT 2 OF LOT 4 BLOCK 3 DISTRICT LOT 3 PLAN 9126" } ], "siteDisclosures": [ { "siteRegistry": false, - "dateReceived": "2019-10-24", - "dateCompleted": "2017-11-24", - "dateEntered": "2018-03-22", - "dateRegistrar": "2015-05-15", - "dateLocalAuthorityReceived": "2013-10-13", - "summary": "Totam nulla perferendis quisquam fugiat.\nEx repudiandae assumenda amet.\nAdipisci blanditiis rem et voluptatem ad esse ad dignissimos.", - "informationUsed": "Cupiditate tempore rem nam.\nHic non velit quis consequatur quam velit.\nAdipisci atque illo eum repudiandae autem tempora officiis fuga sapiente.\nNumquam neque amet voluptate ut repudiandae vel reiciendis voluptatibus.\nOmnis assumenda aut ex voluptas corrupti odit.", - "pastOrPresentOrders": "Possimus impedit facere officiis qui facilis iste labore repudiandae pariatur.", + "dateReceived": "2022-11-27", + "dateCompleted": "2018-02-27", + "dateEntered": "2016-03-06", + "dateRegistrar": "2019-02-20", + "dateLocalAuthorityReceived": "2021-06-25", + "summary": "Unde impedit ratione laborum reprehenderit accusantium reiciendis minima.\nMollitia iusto tenetur sint eveniet enim pariatur in soluta fuga.", + "informationUsed": "Repudiandae consequatur quisquam ullam laboriosam earum ipsam itaque.\nNatus ad eaque mollitia animi suscipit consequuntur voluptatibus.\nEst est error optio labore dignissimos.\nSint quo eveniet facere.", + "pastOrPresentOrders": "Veniam nemo ullam expedita veritatis corporis expedita enim modi at.", "commercialAndIndustrialPurposes": [ { "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true + "siteRegistry": false }, { "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true } ] }, { - "siteRegistry": true, - "dateReceived": "2016-05-24", - "dateCompleted": "2014-10-03", - "dateEntered": "2017-09-14", - "dateRegistrar": "2021-06-20", - "dateLocalAuthorityReceived": "2020-09-26", - "summary": "Porro iusto nihil incidunt facere sapiente sapiente exercitationem id corrupti.\nMolestias ab exercitationem in perspiciatis.", - "informationUsed": "Quia eaque quidem illum neque deleniti quae temporibus hic temporibus.\nAliquid consequatur tempore aut.\nMolestias cum voluptatibus veritatis libero suscipit.\nEx ratione deserunt commodi optio autem.", - "pastOrPresentOrders": "Ab velit perferendis nesciunt.\nAt quam provident numquam tempora dignissimos molestias.", + "siteRegistry": false, + "dateReceived": "2023-03-11", + "dateCompleted": "2019-06-14", + "dateEntered": "2020-04-15", + "dateRegistrar": "2015-07-18", + "dateLocalAuthorityReceived": "2015-09-12", + "summary": "Occaecati officiis in temporibus accusantium dignissimos fuga molestias.\nConsequuntur veniam ea placeat expedita voluptatum quibusdam aliquid.\nAssumenda tempore iste commodi blanditiis dolorum dolor et cum.", + "informationUsed": "Minus ipsa commodi totam ipsam.\nAsperiores fugiat rerum voluptatum.\nQuisquam minus dolor nulla earum sed ducimus.", + "pastOrPresentOrders": "Nam aliquid ea adipisci voluptates nesciunt magni inventore.\nIusto a possimus dolor.\nDolorum in modi nulla optio.", "commercialAndIndustrialPurposes": [ { - "scheduleReference": "F1*", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false }, { "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false + "siteRegistry": true } ] } ], "activityLog": [ - { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "FUNK ALFRED", - "timestamp": "2016-04-30" - }, - { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "FERRY MURPHY", - "timestamp": "2015-02-15" - }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "JACOBI-REINGER DWIGHT", - "timestamp": "2016-04-20" + "user": "ROMAGUERA MISSOURI", + "timestamp": "2016-04-14" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "STOKES JAYLON", - "timestamp": "2016-10-05" - }, - { - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "RODRIGUEZ ROSE", - "timestamp": "2021-06-02" + "user": "HILPERT GERARD", + "timestamp": "2016-01-05" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "GERHOLD KARI", - "timestamp": "2018-05-24" + "user": "BODE KEELEY", + "timestamp": "2019-03-30" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "BODE-SAUER PHILIP", - "timestamp": "2014-03-09" + "user": "JENKINS CALISTA", + "timestamp": "2014-05-17" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "BAILEY DESIREE", - "timestamp": "2016-09-07" + "user": "FEENEY FELIPE", + "timestamp": "2014-08-08" } ], "associatedSites": [ { - "dateNoted": "2022-02-07", + "dateNoted": "2020-02-28", "notes": "", - "parcelID": "17315", - "siteID": "20804", - "siteRegistry": false + "parcelID": "17702", + "siteID": "18529", + "siteRegistry": true + }, + { + "dateNoted": "2018-10-09", + "notes": "", + "parcelID": "15328", + "siteID": "17509", + "siteRegistry": true + }, + { + "dateNoted": "2017-03-19", + "notes": "", + "parcelID": "15464", + "siteID": "19902", + "siteRegistry": true } ] }, { - "uuid": "e4048601-efa3-4eb2-83ff-6beff0e2af8a", - "siteID": 18231, - "address": "3232 West Knolls", - "latitude": 51.3361, - "longitude": -133.8699, - "lastUpdated": "2020-08-24", - "city": "Casa Grande", - "region": "Vancouver Island/Coast", - "victoriaFile": "26250-20/1283", + "uuid": "a205fbd8-8095-4128-9bde-de3fa4ecfb27", + "siteID": 17194, + "address": "9640 Adams Keys", + "latitude": 56.3167, + "longitude": -121.5802, + "lastUpdated": "2021-05-26", + "city": "San Ramon", + "region": " North Coast", + "victoriaFile": "26250-20/13168", "regionalFile": "N/A", "parcelIDs": [ - 3968496, - 8228063, - 363465, - 3877196, - 8908161 + 3166117, + 1999004, + 155913, + 6772778, + 9848121 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2014-06-12", - "completed": "2018-11-21", - "initiated": "2023-01-31", - "ministryContact": "LEBSACK GUISEPPE", + "createdAt": "2015-03-30", + "completed": "2018-06-18", + "initiated": "2022-07-26", + "ministryContact": "THIEL SHANEL", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "createdAt": "2017-05-29", + "completed": "2021-05-22", + "initiated": "2022-10-11", + "ministryContact": "CRONA RHEA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -48653,21 +54061,31 @@ { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false } ], "siteRegistry": false }, { - "createdAt": "2016-01-28", - "completed": "2015-10-30", - "initiated": "2023-04-08", - "ministryContact": "DICKI ETHYL", + "createdAt": "2014-06-23", + "completed": "2021-08-20", + "initiated": "2023-06-18", + "ministryContact": "DIBBERT RODERICK", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -48676,38 +54094,28 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2016-08-27", - "completed": "2015-09-14", - "initiated": "2020-01-25", - "ministryContact": "ZULAUF FLOYD", + "createdAt": "2018-10-30", + "completed": "2016-08-17", + "initiated": "2016-03-03", + "ministryContact": "SCHAMBERGER ASHLYNN", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -48715,34 +54123,34 @@ "" ], "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": false } ], "siteRegistry": false }, { - "createdAt": "2022-03-13", - "completed": "2020-08-30", - "initiated": "2015-06-25", - "ministryContact": "RYAN SAMANTHA", + "createdAt": "2023-02-06", + "completed": "2017-01-13", + "initiated": "2015-09-25", + "ministryContact": "LEBSACK DAISHA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -48750,14 +54158,9 @@ "" ], "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, { "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false }, { @@ -48769,84 +54172,108 @@ "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true } ], "participants": [ { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2020-11-25", - "startDate": "2021-06-19", + "name": "AMET, DOLOR SIT", + "endDate": "2014-05-10", + "startDate": "2020-07-16", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": true }, { "name": "IPSUM", - "endDate": "2016-04-27", - "startDate": "2019-09-27", + "endDate": "2017-01-21", + "startDate": "2023-08-12", "notes": "", "roles": [ "EMPLOYEE" ], "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2019-07-24", - "startDate": "2019-03-01", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2022-05-25", - "startDate": "2018-04-04", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": false } ], "suspectLandUses": [ + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2020-06-13 (described on Site Profile dated 2020-06-13)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2020-05-29 (described on Site Profile dated 2020-05-29)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-02-28 (described on Site Profile dated 2022-02-28)", + "notes": "INSERTED FOR SITE PROFILE DATED 2020-09-04 (described on Site Profile dated 2020-09-04)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-10-31 (described on Site Profile dated 2015-10-31)", + "notes": "INSERTED FOR SITE PROFILE DATED 2023-02-06 (described on Site Profile dated 2023-02-06)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2015-10-10 (described on Site Profile dated 2015-10-10)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + } + ], + "parcelDescriptions": [ + { + "siteRegistry": false, + "dateNoted": "2016-04-16", + "parcelID": "15430", + "crownLandUsePIN": "16677", + "crownLandFileNumber": "18940", + "landDescription": "LOT 3 OF LOT 1 BLOCK 2 DISTRICT LOT 3 PLAN 3550" + }, + { + "siteRegistry": false, + "dateNoted": "2022-05-27", + "parcelID": "17000", + "crownLandUsePIN": "20220", + "crownLandFileNumber": "17629", + "landDescription": "LOT 5 OF LOT 5 BLOCK 3 DISTRICT LOT 3 PLAN 4174" + }, + { + "siteRegistry": false, + "dateNoted": "2019-11-13", + "parcelID": "19886", + "crownLandUsePIN": "20650", + "crownLandFileNumber": "18593", + "landDescription": "LOT 5 OF LOT 5 BLOCK 5 DISTRICT LOT 5 PLAN 4424" + }, + { + "siteRegistry": true, + "dateNoted": "2015-04-02", + "parcelID": "16492", + "crownLandUsePIN": "17492", + "crownLandFileNumber": "16380", + "landDescription": "LOT 2 OF LOT 2 BLOCK 1 DISTRICT LOT 3 PLAN 4709" } ], "siteDisclosures": [ { "siteRegistry": true, - "dateReceived": "2023-07-09", - "dateCompleted": "2020-02-24", - "dateEntered": "2020-08-21", - "dateRegistrar": "2016-11-12", - "dateLocalAuthorityReceived": "2014-07-21", - "summary": "Culpa minus nam numquam dignissimos delectus minima.\nSuscipit non quas neque nihil repellat voluptatibus praesentium.", - "informationUsed": "Officia nobis ratione aliquam nam.\nAspernatur aperiam corrupti voluptas explicabo quos.\nPariatur sint quisquam eos aut molestias harum quisquam error vitae.\nDolore doloremque a provident facere asperiores aspernatur deserunt beatae nihil.\nHarum architecto accusantium.", - "pastOrPresentOrders": "Esse modi provident.\nDicta sint molestias.\nCum illo adipisci sequi quas excepturi libero.", + "dateReceived": "2020-09-05", + "dateCompleted": "2017-09-03", + "dateEntered": "2022-09-01", + "dateRegistrar": "2015-08-29", + "dateLocalAuthorityReceived": "2015-06-18", + "summary": "Ipsum architecto quos maxime numquam saepe delectus.\nEx commodi iste quaerat illo.\nReprehenderit minus excepturi vitae.", + "informationUsed": "Necessitatibus deleniti recusandae.\nFacere doloremque eius alias vel.\nTenetur cumque mollitia quas voluptatibus aliquid qui perspiciatis.\nTenetur consequuntur corporis error et sit debitis laboriosam.", + "pastOrPresentOrders": "Natus eligendi officiis quam ipsam soluta rem sit odio voluptas.\nTotam dolore iure error aliquam dolore consequatur dolore natus.", "commercialAndIndustrialPurposes": [ { - "scheduleReference": "F1*", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false }, @@ -48857,12 +54284,40 @@ }, { "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + } + ] + }, + { + "siteRegistry": true, + "dateReceived": "2013-11-27", + "dateCompleted": "2016-04-12", + "dateEntered": "2016-03-16", + "dateRegistrar": "2014-01-30", + "dateLocalAuthorityReceived": "2016-07-12", + "summary": "Aperiam inventore ex impedit iste ad voluptatum minus repellendus assumenda.\nCumque eos adipisci odio perferendis vitae velit molestias qui fugit.", + "informationUsed": "Maxime tenetur consequatur quam laudantium.\nIllum in atque.\nIpsa soluta ullam porro doloribus fuga ad nobis.\nVoluptatem voluptatum nemo ex.", + "pastOrPresentOrders": "Ullam qui amet.\nNostrum repellat consectetur iusto quam unde.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false } ] @@ -48872,106 +54327,113 @@ { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "TERRY ANDRES", - "timestamp": "2023-05-24" + "user": "KLEIN PRESTON", + "timestamp": "2015-04-26" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "DECKOW ALLAN", - "timestamp": "2021-03-22" + "user": "HERZOG ANGUS", + "timestamp": "2017-03-27" }, { - "siteRegistry": true, + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "JACOBS VIVA", - "timestamp": "2019-05-11" + "user": "SCHADEN THEA", + "timestamp": "2019-05-16" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "MORAR-ZIEMANN JANICE", - "timestamp": "2018-08-02" + "user": "KOVACEK ALFRED", + "timestamp": "2022-02-10" }, { - "siteRegistry": true, + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "RAU REBA", - "timestamp": "2014-03-31" + "user": "KRAJCIK EDA", + "timestamp": "2020-11-22" }, { - "siteRegistry": true, + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "FRANECKI GROVER", - "timestamp": "2014-04-27" + "user": "KIEHN DAPHNE", + "timestamp": "2017-10-23" }, { - "siteRegistry": true, + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "GUSIKOWSKI VALERIE", - "timestamp": "2021-06-17" + "user": "WUCKERT MADDISON", + "timestamp": "2014-02-28" }, { - "siteRegistry": true, + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "MITCHELL MADALINE", - "timestamp": "2019-04-25" + "user": "HESSEL ANGUS", + "timestamp": "2016-10-13" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "CARTER KEITH", - "timestamp": "2014-09-14" + "user": "MOEN ILA", + "timestamp": "2016-08-29" }, { - "siteRegistry": true, + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "MCLAUGHLIN NICKLAUS", - "timestamp": "2019-04-21" + "user": "ARMSTRONG JETTIE", + "timestamp": "2020-04-23" } ], "associatedSites": [ { - "dateNoted": "2021-01-08", + "dateNoted": "2020-06-18", + "notes": "", + "parcelID": "19476", + "siteID": "16934", + "siteRegistry": true + }, + { + "dateNoted": "2015-05-04", "notes": "", - "parcelID": "15356", - "siteID": "17224", + "parcelID": "15199", + "siteID": "20963", "siteRegistry": false }, { - "dateNoted": "2023-03-24", + "dateNoted": "2020-01-10", "notes": "", - "parcelID": "20833", - "siteID": "19991", + "parcelID": "19510", + "siteID": "16489", "siteRegistry": false } ] }, { - "uuid": "1f755b4f-1927-47a3-9c0f-e7d843599248", - "siteID": 20361, - "address": "2285 Zemlak Crossing", - "latitude": 52.9556, - "longitude": -134.1931, - "lastUpdated": "2020-07-25", - "city": "New Emmyview", + "uuid": "071fca60-9a7b-4444-a3c9-f67fe4d8a147", + "siteID": 20733, + "address": "84344 Altenwerth Roads", + "latitude": 55.1465, + "longitude": -130.8749, + "lastUpdated": "2015-02-03", + "city": "East Tarachester", "region": "Mainland/Southwest", - "victoriaFile": "26250-20/12837", + "victoriaFile": "26250-20/6125", "regionalFile": "N/A", "parcelIDs": [ - 131764, - 5605537, - 7428519, - 6625870, - 4315244 + 2645668, + 232261, + 3987465, + 5065827, + 1487457 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2015-09-03", - "completed": "2023-03-07", - "initiated": "2022-11-04", - "ministryContact": "YUNDT ANDY", + "createdAt": "2014-07-25", + "completed": "2020-09-06", + "initiated": "2016-11-04", + "ministryContact": "WALKER OCTAVIA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -48980,23 +54442,23 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2019-11-06", - "completed": "2014-10-16", - "initiated": "2014-09-29", - "ministryContact": "KERTZMANN CARLOTTA", + "createdAt": "2015-07-06", + "completed": "2019-07-27", + "initiated": "2023-06-13", + "ministryContact": "BARTOLETTI CARA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -49007,21 +54469,36 @@ { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2014-01-27", - "completed": "2014-10-24", - "initiated": "2020-02-21", - "ministryContact": "STIEDEMANN DOROTHEA", + "createdAt": "2020-10-01", + "completed": "2023-08-17", + "initiated": "2021-12-25", + "ministryContact": "STIEDEMANN STEWART", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -49030,24 +54507,29 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true + "role": "REQUESTED BY", + "siteRegistry": false } ], "siteRegistry": true @@ -49055,98 +54537,124 @@ ], "participants": [ { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2016-10-13", - "startDate": "2021-06-29", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2016-09-27", + "startDate": "2016-06-22", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], - "siteRegistry": true + "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2021-05-25", - "startDate": "2023-09-22", + "name": "IPSUM", + "endDate": "2018-01-13", + "startDate": "2018-02-28", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], - "siteRegistry": true + "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", - "endDate": "2015-05-19", - "startDate": "2021-06-17", + "endDate": "2023-10-06", + "startDate": "2014-07-17", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2016-08-23", - "startDate": "2019-04-11", + "name": "AMET, DOLOR SIT", + "endDate": "2015-05-20", + "startDate": "2018-09-07", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true } ], "suspectLandUses": [ { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-09-22 (described on Site Profile dated 2017-09-22)", + "notes": "INSERTED FOR SITE PROFILE DATED 2020-03-26 (described on Site Profile dated 2020-03-26)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-07-23 (described on Site Profile dated 2019-07-23)", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2017-10-22 (described on Site Profile dated 2017-10-22)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2015-05-11 (described on Site Profile dated 2015-05-11)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-01-13 (described on Site Profile dated 2022-01-13)", + "notes": "INSERTED FOR SITE PROFILE DATED 2017-05-09 (described on Site Profile dated 2017-05-09)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + } + ], + "parcelDescriptions": [ + { + "siteRegistry": false, + "dateNoted": "2022-11-10", + "parcelID": "20087", + "crownLandUsePIN": "20023", + "crownLandFileNumber": "19223", + "landDescription": "LOT 5 OF LOT 2 BLOCK 1 DISTRICT LOT 3 PLAN 5584" }, { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-10-01 (described on Site Profile dated 2016-10-01)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "dateNoted": "2016-08-19", + "parcelID": "18846", + "crownLandUsePIN": "20316", + "crownLandFileNumber": "20162", + "landDescription": "LOT 4 OF LOT 5 BLOCK 5 DISTRICT LOT 4 PLAN 8175" }, { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-05-16 (described on Site Profile dated 2016-05-16)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "dateNoted": "2014-12-16", + "parcelID": "18773", + "crownLandUsePIN": "18961", + "crownLandFileNumber": "16396", + "landDescription": "LOT 1 OF LOT 1 BLOCK 2 DISTRICT LOT 2 PLAN 3245" } ], "siteDisclosures": [ { "siteRegistry": false, - "dateReceived": "2017-09-04", - "dateCompleted": "2022-01-23", - "dateEntered": "2023-03-08", - "dateRegistrar": "2014-06-16", - "dateLocalAuthorityReceived": "2018-03-11", - "summary": "Assumenda illo iste laborum blanditiis debitis.", - "informationUsed": "Nobis reprehenderit possimus debitis.\nDolore sapiente ut quas qui a in vitae quam quia.\nEius modi architecto tempore fuga delectus corrupti modi.\nMolestias temporibus magnam facere cum cumque odit nemo accusamus dolore.\nCulpa sint perspiciatis veritatis in sed velit nisi.", - "pastOrPresentOrders": "Aut nam rem suscipit fuga voluptas nisi.", + "dateReceived": "2016-03-25", + "dateCompleted": "2019-08-26", + "dateEntered": "2017-11-01", + "dateRegistrar": "2020-07-09", + "dateLocalAuthorityReceived": "2015-02-15", + "summary": "Eos atque suscipit.\nQuisquam provident sed laudantium possimus rerum doloremque voluptatem.\nAt illo voluptatibus culpa.", + "informationUsed": "Repellat inventore corrupti ullam.\nPraesentium praesentium quisquam aut porro.\nSequi molestiae necessitatibus quia.\nCorrupti velit possimus labore deleniti laudantium quaerat.", + "pastOrPresentOrders": "Voluptatem dolorem fuga hic aliquam animi quibusdam.\nNobis aperiam ad tempora voluptates nostrum quasi quam ratione magni.\nMinus deleniti fugiat.", "commercialAndIndustrialPurposes": [ { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { - "scheduleReference": "F2*", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true } ] @@ -49156,82 +54664,100 @@ { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "HACKETT CEASAR", - "timestamp": "2017-04-25" + "user": "RIPPIN SCHUYLER", + "timestamp": "2019-02-15" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "HEIDENREICH ALISHA", - "timestamp": "2017-09-04" + "user": "SHANAHAN KAYLEY", + "timestamp": "2014-11-02" }, { - "siteRegistry": true, + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "JENKINS CALEB", - "timestamp": "2023-03-12" + "user": "YUNDT-ROMAGUERA JON", + "timestamp": "2023-06-07" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "DAUGHERTY MICAH", - "timestamp": "2019-11-25" + "user": "DUBUQUE AMAYA", + "timestamp": "2021-06-25" }, { - "siteRegistry": true, + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "HEGMANN BRADLY", - "timestamp": "2015-12-01" + "user": "FEIL LUCAS", + "timestamp": "2021-08-01" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "REICHEL CHRISTELLE", - "timestamp": "2022-12-07" + "user": "WINDLER NIKITA", + "timestamp": "2018-07-23" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "REINGER RYAN", + "timestamp": "2020-04-18" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "KRAJCIK SHEMAR", + "timestamp": "2015-05-21" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "HELLER NAKIA", + "timestamp": "2021-08-05" } ], "associatedSites": [ { - "dateNoted": "2019-07-16", + "dateNoted": "2021-08-01", "notes": "", - "parcelID": "19132", - "siteID": "19118", - "siteRegistry": true + "parcelID": "15708", + "siteID": "20680", + "siteRegistry": false }, { - "dateNoted": "2016-05-03", + "dateNoted": "2013-12-11", "notes": "", - "parcelID": "19026", - "siteID": "17309", - "siteRegistry": true + "parcelID": "16826", + "siteID": "18816", + "siteRegistry": false } ] }, { - "uuid": "b858c0a3-8be9-463d-bc50-cf8ba5e261a8", - "siteID": 16632, - "address": "138 Stanton Gateway", - "latitude": 48.2806, - "longitude": -130.667, - "lastUpdated": "2022-07-31", - "city": "Port Rethaburgh", - "region": "Thompson-Okanagan", - "victoriaFile": "26250-20/16153", + "uuid": "a686cfaa-2aee-40cf-ac49-a2a6b39885ee", + "siteID": 18801, + "address": "5877 Vena Hollow", + "latitude": 58.5346, + "longitude": -120.7598, + "lastUpdated": "2020-09-16", + "city": "Janesville", + "region": " North Coast", + "victoriaFile": "26250-20/4572", "regionalFile": "N/A", "parcelIDs": [ - 6689789, - 7730540, - 2284176, - 6333976, - 1335587 + 6741446, + 8890663, + 1076350, + 5058945, + 3592676 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2020-04-08", - "completed": "2020-03-11", - "initiated": "2022-11-26", - "ministryContact": "GRIMES ANIYA", + "createdAt": "2020-09-07", + "completed": "2019-11-28", + "initiated": "2019-06-24", + "ministryContact": "CARTER JARED", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -49239,69 +54765,29 @@ "" ], "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true - } - ], - "siteRegistry": false - }, - { - "createdAt": "2023-07-12", - "completed": "2014-03-25", - "initiated": "2019-04-06", - "ministryContact": "CASSIN-HEATHCOTE AMERICO", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2023-04-17", - "completed": "2014-04-09", - "initiated": "2018-12-05", - "ministryContact": "DIETRICH MOSHE", + "createdAt": "2023-08-13", + "completed": "2015-04-14", + "initiated": "2019-04-24", + "ministryContact": "MURAZIK TOD", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -49314,11 +54800,6 @@ "role": "SUBMITTED BY", "siteRegistry": false }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", @@ -49326,154 +54807,37 @@ } ], "siteRegistry": true - } - ], - "participants": [ - { - "name": "AMET, DOLOR SIT", - "endDate": "2015-09-14", - "startDate": "2016-09-02", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": true }, { - "name": "AMET, DOLOR SIT", - "endDate": "2021-11-06", - "startDate": "2020-07-25", - "notes": "", - "roles": [ - "ORGANIZATION" + "createdAt": "2020-01-15", + "completed": "2014-08-05", + "initiated": "2020-02-24", + "ministryContact": "SCHMITT FRED", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" ], - "siteRegistry": true - } - ], - "suspectLandUses": [ - { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-07-07 (described on Site Profile dated 2015-07-07)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" - }, - { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2023-08-04 (described on Site Profile dated 2023-08-04)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" - }, - { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2023-05-21 (described on Site Profile dated 2023-05-21)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" - }, - { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-04-20 (described on Site Profile dated 2016-04-20)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" - }, - { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-05-06 (described on Site Profile dated 2017-05-06)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" - } - ], - "siteDisclosures": [ - { - "siteRegistry": false, - "dateReceived": "2015-10-19", - "dateCompleted": "2018-06-12", - "dateEntered": "2023-06-05", - "dateRegistrar": "2016-12-04", - "dateLocalAuthorityReceived": "2016-12-12", - "summary": "Sequi aperiam dolore quis mollitia libero optio nam maxime excepturi.", - "informationUsed": "Dolore quo modi cumque consequatur odit.\nNecessitatibus ipsum nemo.\nAspernatur architecto libero amet.\nAliquam in iure et veniam nulla rerum.", - "pastOrPresentOrders": "Dicta odit velit natus iste dicta soluta praesentium.\nSapiente repellendus nostrum quo pariatur natus necessitatibus quia sapiente consectetur.\nIste modi possimus ex.", - "commercialAndIndustrialPurposes": [ - { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false - }, + "notationParticipants": [ { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": true }, { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false } - ] - } - ], - "activityLog": [ - { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "WILLMS MITCHELL", - "timestamp": "2021-10-13" - }, - { - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "GLEICHNER BERNICE", - "timestamp": "2021-04-19" - }, - { - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "KUHLMAN-BEATTY QUINTEN", - "timestamp": "2019-04-27" - }, - { - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "MCGLYNN JAYDE", - "timestamp": "2016-02-04" - }, - { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "BOGISICH ELISA", - "timestamp": "2022-04-10" - } - ], - "associatedSites": [ - { - "dateNoted": "2022-04-29", - "notes": "", - "parcelID": "19977", - "siteID": "20967", + ], "siteRegistry": false - } - ] - }, - { - "uuid": "a183b33f-b469-4227-938f-9adff064f2eb", - "siteID": 20007, - "address": "650 Leuschke Mill", - "latitude": 54.5186, - "longitude": -125.2941, - "lastUpdated": "2016-06-08", - "city": "Edmond", - "region": "Cariboo", - "victoriaFile": "26250-20/2093", - "regionalFile": "N/A", - "parcelIDs": [ - 3807486, - 4252050, - 4081000, - 4155506, - 1941792 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ + }, { - "createdAt": "2015-03-10", - "completed": "2022-12-21", - "initiated": "2023-07-09", - "ministryContact": "WISOKY AKEEM", + "createdAt": "2019-03-09", + "completed": "2015-02-08", + "initiated": "2013-12-20", + "ministryContact": "ORTIZ STEPHAN", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -49483,32 +54847,22 @@ "notationParticipants": [ { "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", "siteRegistry": true } ], "siteRegistry": false }, { - "createdAt": "2017-12-21", - "completed": "2017-02-16", - "initiated": "2016-09-21", - "ministryContact": "GOTTLIEB SUMMER", + "createdAt": "2021-06-02", + "completed": "2020-08-27", + "initiated": "2014-06-03", + "ministryContact": "KUB MADISYN", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -49517,34 +54871,39 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false + "role": "SUBMITTED BY", + "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false } ], "participants": [ { - "name": "IPSUM", - "endDate": "2022-05-18", - "startDate": "2019-05-15", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2021-01-01", + "startDate": "2015-01-29", "notes": "", "roles": [ "EMPLOYEE" @@ -49552,84 +54911,102 @@ "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2023-06-02", - "startDate": "2014-09-28", + "name": "IPSUM", + "endDate": "2021-04-05", + "startDate": "2020-11-28", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": true + "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2020-04-25", - "startDate": "2020-08-20", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2019-03-23", + "startDate": "2021-10-03", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2018-06-08", - "startDate": "2015-08-18", + "name": "IPSUM", + "endDate": "2019-06-09", + "startDate": "2020-05-24", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], - "siteRegistry": false + "siteRegistry": true } ], "suspectLandUses": [ { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2020-04-15 (described on Site Profile dated 2020-04-15)", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2021-07-12 (described on Site Profile dated 2021-07-12)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-06-21 (described on Site Profile dated 2014-06-21)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2021-01-11 (described on Site Profile dated 2021-01-11)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2014-10-28 (described on Site Profile dated 2014-10-28)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-01-05 (described on Site Profile dated 2016-01-05)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "notes": "INSERTED FOR SITE PROFILE DATED 2023-08-13 (described on Site Profile dated 2023-08-13)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-11-30 (described on Site Profile dated 2014-11-30)", + "notes": "INSERTED FOR SITE PROFILE DATED 2015-11-16 (described on Site Profile dated 2015-11-16)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + } + ], + "parcelDescriptions": [ + { + "siteRegistry": false, + "dateNoted": "2019-03-04", + "parcelID": "19442", + "crownLandUsePIN": "20655", + "crownLandFileNumber": "17545", + "landDescription": "LOT 2 OF LOT 1 BLOCK 5 DISTRICT LOT 1 PLAN 4226" }, { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-02-12 (described on Site Profile dated 2019-02-12)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "dateNoted": "2019-12-26", + "parcelID": "17346", + "crownLandUsePIN": "17495", + "crownLandFileNumber": "19553", + "landDescription": "LOT 3 OF LOT 1 BLOCK 2 DISTRICT LOT 3 PLAN 8950" } ], "siteDisclosures": [ { - "siteRegistry": false, - "dateReceived": "2021-01-07", - "dateCompleted": "2020-05-04", - "dateEntered": "2017-10-06", - "dateRegistrar": "2022-03-31", - "dateLocalAuthorityReceived": "2019-02-09", - "summary": "Accusantium iure dolorum a laudantium facere aliquam.\nQuam commodi voluptatibus ratione distinctio incidunt nesciunt repudiandae.", - "informationUsed": "Numquam enim minus necessitatibus cum consectetur quis voluptatem impedit.\nDolor suscipit temporibus magni voluptatem.\nEos facilis nesciunt ea sit reiciendis animi ad placeat in.\nAliquam esse recusandae.", - "pastOrPresentOrders": "Non nulla atque omnis sapiente quia.\nCulpa sed dignissimos fugiat alias.\nHarum ea cupiditate.", + "siteRegistry": true, + "dateReceived": "2020-01-09", + "dateCompleted": "2016-09-03", + "dateEntered": "2016-11-10", + "dateRegistrar": "2015-05-02", + "dateLocalAuthorityReceived": "2016-08-21", + "summary": "Maiores voluptatum quisquam cumque adipisci itaque.\nAmet quidem cum voluptate.", + "informationUsed": "Ducimus exercitationem praesentium temporibus doloribus exercitationem officiis animi corporis error.\nEaque perferendis unde hic maxime nulla itaque vel reiciendis nihil.\nQuam ducimus quas.\nDoloribus maiores cupiditate.\nAtque repellendus doloribus error odio reprehenderit hic veniam.", + "pastOrPresentOrders": "Sunt quos non iste.\nVero officiis repellendus inventore distinctio ipsum ullam fugit.", "commercialAndIndustrialPurposes": [ { "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false + "siteRegistry": true }, { "scheduleReference": "F1*", @@ -49637,27 +55014,27 @@ "siteRegistry": false }, { - "scheduleReference": "F2*", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true } ] }, { - "siteRegistry": false, - "dateReceived": "2017-08-16", - "dateCompleted": "2013-10-22", - "dateEntered": "2015-11-05", - "dateRegistrar": "2019-01-01", - "dateLocalAuthorityReceived": "2016-04-29", - "summary": "Libero dolor officia.\nNostrum dignissimos eligendi provident eligendi repellendus consequatur ex ratione repellendus.\nPlaceat accusantium deleniti culpa.", - "informationUsed": "Voluptatum iusto ipsa tempore.\nIure sint nam at quos voluptatem veniam.\nCupiditate fugit eius eius accusantium similique autem repellat omnis animi.", - "pastOrPresentOrders": "Dicta eligendi quaerat aspernatur magnam veritatis temporibus porro facere.\nTempora porro architecto perferendis ipsum aperiam aut est inventore.\nDelectus ullam vel.", + "siteRegistry": true, + "dateReceived": "2023-05-19", + "dateCompleted": "2021-11-03", + "dateEntered": "2019-04-21", + "dateRegistrar": "2019-03-21", + "dateLocalAuthorityReceived": "2018-05-05", + "summary": "Nostrum fugiat consequatur fuga repudiandae nisi fuga praesentium recusandae.\nAb facere doloribus consectetur earum explicabo.", + "informationUsed": "Debitis incidunt ipsum cumque animi.\nQuibusdam officiis maiores nulla eaque veritatis facere voluptatibus nihil.\nSed ea odio quam provident illum soluta.\nQuibusdam ratione laboriosam doloremque deleniti quam veritatis quam architecto porro.\nQuis voluptatibus asperiores quaerat tempore laudantium.", + "pastOrPresentOrders": "Itaque fugiat quis omnis saepe ipsum quae rem quis.\nLibero iusto voluptatum consequuntur reprehenderit.", "commercialAndIndustrialPurposes": [ { "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true + "siteRegistry": false }, { "scheduleReference": "F2*", @@ -49669,115 +55046,109 @@ ], "activityLog": [ { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "CASPER NEDRA", - "timestamp": "2023-09-13" + "user": "KIHN MADELYN", + "timestamp": "2014-10-06" }, { - "siteRegistry": true, + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "HUEL DEMARIO", - "timestamp": "2015-11-04" + "user": "SENGER LARISSA", + "timestamp": "2018-12-09" }, { - "siteRegistry": true, + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "O'REILLY ORLAND", - "timestamp": "2017-09-27" + "user": "STIEDEMANN OTHO", + "timestamp": "2018-10-28" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "WALKER MAGDALEN", - "timestamp": "2019-12-07" + "user": "BARROWS WAYNE", + "timestamp": "2022-03-04" }, { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "CONNELLY SYBLE", - "timestamp": "2017-11-03" + "user": "HICKLE ISOBEL", + "timestamp": "2019-04-08" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "RICE JANAE", - "timestamp": "2017-02-05" + "user": "JACOBS JAZMYNE", + "timestamp": "2014-09-07" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "FEIL CARMEL", - "timestamp": "2023-09-22" - }, - { - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "ROMAGUERA TAUREAN", - "timestamp": "2022-02-03" + "user": "ANDERSON ANGUS", + "timestamp": "2016-09-02" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "SCHMIDT ELIAS", - "timestamp": "2020-08-19" + "user": "WEHNER MCKENNA", + "timestamp": "2022-04-25" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "O'CONNER WILLIS", - "timestamp": "2019-01-31" + "user": "GRANT MERLIN", + "timestamp": "2014-11-06" } ], "associatedSites": [ { - "dateNoted": "2017-12-27", + "dateNoted": "2014-05-21", "notes": "", - "parcelID": "17310", - "siteID": "20966", + "parcelID": "16659", + "siteID": "19235", "siteRegistry": false }, { - "dateNoted": "2016-08-17", + "dateNoted": "2020-01-13", "notes": "", - "parcelID": "20822", - "siteID": "15423", - "siteRegistry": true + "parcelID": "15605", + "siteID": "19549", + "siteRegistry": false }, { - "dateNoted": "2013-11-06", + "dateNoted": "2015-04-11", "notes": "", - "parcelID": "19904", - "siteID": "20879", - "siteRegistry": true + "parcelID": "20102", + "siteID": "15827", + "siteRegistry": false } ] }, { - "uuid": "ae043ca4-b123-41ef-9243-27f84ac40a58", - "siteID": 18930, - "address": "460 Weimann Garden", - "latitude": 50.9062, - "longitude": -138.8795, - "lastUpdated": "2022-06-25", - "city": "Reneeport", + "uuid": "7d238a5d-1b5b-4219-927c-53f385d34fb8", + "siteID": 19240, + "address": "12856 Nitzsche Flat", + "latitude": 54.0597, + "longitude": -120.9272, + "lastUpdated": "2016-03-02", + "city": "Angelineshire", "region": "Vancouver Island/Coast", - "victoriaFile": "26250-20/8734", + "victoriaFile": "26250-20/11378", "regionalFile": "N/A", "parcelIDs": [ - 1622487, - 2340950, - 2802523, - 8000531, - 6786250 + 4400832, + 453306, + 878905, + 2475915, + 7473507 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2014-06-05", - "completed": "2021-02-24", - "initiated": "2015-07-10", - "ministryContact": "KLING FRANCIS", + "createdAt": "2017-01-09", + "completed": "2022-11-26", + "initiated": "2022-08-20", + "ministryContact": "HUDSON BART", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -49788,86 +55159,31 @@ { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", "siteRegistry": true - } - ], - "siteRegistry": false - }, - { - "createdAt": "2014-03-10", - "completed": "2019-01-26", - "initiated": "2016-11-13", - "ministryContact": "CASSIN GRAYSON", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ + }, { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false - } - ], - "siteRegistry": true - }, - { - "createdAt": "2014-12-10", - "completed": "2020-11-14", - "initiated": "2018-12-25", - "ministryContact": "PFEFFER WAINO", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false } ], "siteRegistry": true }, { - "createdAt": "2014-07-22", - "completed": "2017-11-01", - "initiated": "2014-05-29", - "ministryContact": "O'REILLY JOE", + "createdAt": "2022-11-23", + "completed": "2018-02-26", + "initiated": "2017-05-13", + "ministryContact": "BASHIRIAN ROLANDO", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -49877,44 +55193,14 @@ "notationParticipants": [ { "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true - } - ], - "siteRegistry": false - }, - { - "createdAt": "2022-08-15", - "completed": "2019-07-17", - "initiated": "2020-01-23", - "ministryContact": "CARTWRIGHT SHAYNA", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ + }, { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", @@ -49926,39 +55212,49 @@ "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true } ], "participants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2014-10-01", - "startDate": "2021-03-08", + "name": "IPSUM", + "endDate": "2016-04-13", + "startDate": "2017-08-02", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2022-11-04", + "startDate": "2022-03-23", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": true + "siteRegistry": false }, { "name": "IPSUM", - "endDate": "2017-01-08", - "startDate": "2023-04-01", + "endDate": "2019-01-19", + "startDate": "2021-10-07", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2019-04-24", - "startDate": "2022-10-17", + "name": "AMET, DOLOR SIT", + "endDate": "2014-12-19", + "startDate": "2016-06-12", "notes": "", "roles": [ "ORGANIZATION" @@ -49966,49 +55262,75 @@ "siteRegistry": true }, { - "name": "AMET, DOLOR SIT", - "endDate": "2014-02-28", - "startDate": "2017-03-29", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2017-05-04", + "startDate": "2017-01-09", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true } ], "suspectLandUses": [ { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-02-11 (described on Site Profile dated 2015-02-11)", + "notes": "INSERTED FOR SITE PROFILE DATED 2018-06-19 (described on Site Profile dated 2018-06-19)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "siteRegistry": false, + "siteRegistry": true, "notes": "INSERTED FOR SITE PROFILE DATED 2019-02-27 (described on Site Profile dated 2019-02-27)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2013-11-29 (described on Site Profile dated 2013-11-29)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + } + ], + "parcelDescriptions": [ + { + "siteRegistry": false, + "dateNoted": "2022-02-17", + "parcelID": "18288", + "crownLandUsePIN": "18965", + "crownLandFileNumber": "19974", + "landDescription": "LOT 3 OF LOT 3 BLOCK 1 DISTRICT LOT 3 PLAN 7719" + }, + { + "siteRegistry": true, + "dateNoted": "2021-04-24", + "parcelID": "18622", + "crownLandUsePIN": "17771", + "crownLandFileNumber": "19460", + "landDescription": "LOT 3 OF LOT 2 BLOCK 1 DISTRICT LOT 1 PLAN 8104" + }, + { + "siteRegistry": false, + "dateNoted": "2017-02-01", + "parcelID": "15864", + "crownLandUsePIN": "18780", + "crownLandFileNumber": "18168", + "landDescription": "LOT 2 OF LOT 1 BLOCK 4 DISTRICT LOT 5 PLAN 6209" } ], "siteDisclosures": [ { "siteRegistry": true, - "dateReceived": "2015-01-06", - "dateCompleted": "2017-08-25", - "dateEntered": "2023-02-17", - "dateRegistrar": "2018-06-17", - "dateLocalAuthorityReceived": "2022-10-23", - "summary": "Velit perferendis tenetur deleniti enim voluptatem quibusdam suscipit itaque.", - "informationUsed": "Quis doloribus fugit ratione.\nItaque quisquam dolores magni ut maxime repellendus.\nReprehenderit officiis id consequuntur ipsa perspiciatis.\nRatione repudiandae asperiores earum explicabo ut ipsam vitae quaerat expedita.\nMolestias quam ipsam pariatur doloribus eius tenetur itaque.", - "pastOrPresentOrders": "Mollitia blanditiis voluptate quisquam sunt culpa.", + "dateReceived": "2019-10-07", + "dateCompleted": "2020-05-29", + "dateEntered": "2014-01-17", + "dateRegistrar": "2021-12-27", + "dateLocalAuthorityReceived": "2022-11-28", + "summary": "Et consequuntur veritatis ducimus vero officia amet consequatur.", + "informationUsed": "Deleniti culpa nesciunt.\nSimilique facilis praesentium neque.\nA magnam eius id dignissimos temporibus sed unde.", + "pastOrPresentOrders": "Earum sint doloremque dolorum perspiciatis sequi fuga iure.\nAccusamus rerum nostrum laborum sequi adipisci possimus laborum saepe.", "commercialAndIndustrialPurposes": [ { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true - }, - { - "scheduleReference": "F1*", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false + "siteRegistry": true }, { "scheduleReference": "F2*", @@ -50019,116 +55341,72 @@ } ], "activityLog": [ - { - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "FRITSCH ALEXANDRA", - "timestamp": "2017-10-02" - }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "KEMMER CAROLINE", - "timestamp": "2015-04-13" + "user": "DENESIK JOHN", + "timestamp": "2021-08-18" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "HERZOG KARINA", - "timestamp": "2017-02-08" - }, - { - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "SPINKA BLAIR", - "timestamp": "2015-05-09" - }, - { - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "SCHAEFER MARIBEL", - "timestamp": "2020-05-21" - }, - { - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "JACOBSON ADOLFO", - "timestamp": "2013-10-27" - }, - { - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "TREMBLAY ESTEVAN", - "timestamp": "2017-05-14" + "user": "WARD JORDANE", + "timestamp": "2021-10-21" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "JENKINS PRICE", - "timestamp": "2017-06-12" + "user": "WINTHEISER BILL", + "timestamp": "2019-03-21" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "SWIFT LIZETH", - "timestamp": "2021-03-23" + "user": "FAHEY-SCHADEN NOEMIE", + "timestamp": "2020-09-13" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "KLOCKO RAE", - "timestamp": "2016-12-24" + "user": "SATTERFIELD SAVION", + "timestamp": "2014-11-17" } ], "associatedSites": [ { - "dateNoted": "2016-04-08", + "dateNoted": "2022-08-30", "notes": "", - "parcelID": "18408", - "siteID": "20775", + "parcelID": "17228", + "siteID": "18136", "siteRegistry": false - }, - { - "dateNoted": "2021-11-06", - "notes": "", - "parcelID": "15680", - "siteID": "18179", - "siteRegistry": true - }, - { - "dateNoted": "2022-12-18", - "notes": "", - "parcelID": "16977", - "siteID": "18188", - "siteRegistry": true } ] }, { - "uuid": "95f9e609-f354-4ee1-892f-b5e3b8f38281", - "siteID": 18283, - "address": "5046 Boyle Lights", - "latitude": 56.7545, - "longitude": -132.3339, - "lastUpdated": "2022-12-30", - "city": "Kovacekfield", - "region": "Thompson-Okanagan", - "victoriaFile": "26250-20/13304", + "uuid": "81a94ac6-a422-42be-a3c5-34243dab1d06", + "siteID": 15837, + "address": "5345 Jamar Spurs", + "latitude": 55.7551, + "longitude": -128.0872, + "lastUpdated": "2014-12-09", + "city": "Hacienda Heights", + "region": " North Coast", + "victoriaFile": "26250-20/1267", "regionalFile": "N/A", "parcelIDs": [ - 6596945, - 5171644, - 4833020, - 1050984, - 6119213 + 5910202, + 9261838, + 3149415, + 1872539, + 586314 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2017-10-13", - "completed": "2015-01-05", - "initiated": "2019-10-08", - "ministryContact": "NIENOW BRANSON", + "createdAt": "2014-03-18", + "completed": "2018-01-24", + "initiated": "2020-12-23", + "ministryContact": "SENGER MELLIE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -50137,38 +55415,28 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true } ], "siteRegistry": true }, { - "createdAt": "2021-04-26", - "completed": "2020-03-05", - "initiated": "2020-03-21", - "ministryContact": "CONNELLY-TURCOTTE LONDON", + "createdAt": "2018-12-11", + "completed": "2017-06-11", + "initiated": "2019-10-15", + "ministryContact": "LINDGREN BROCK", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -50177,15 +55445,10 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": false }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", @@ -50196,33 +55459,13 @@ "role": "REQUESTED BY", "siteRegistry": false }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - } - ], - "siteRegistry": true - }, - { - "createdAt": "2022-09-01", - "completed": "2020-08-30", - "initiated": "2018-03-09", - "ministryContact": "MOHR HARRISON", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true } @@ -50232,196 +55475,254 @@ ], "participants": [ { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2016-04-08", - "startDate": "2017-06-01", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2023-10-09", + "startDate": "2019-09-25", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2020-09-19", - "startDate": "2014-04-07", + "name": "AMET, DOLOR SIT", + "endDate": "2015-06-23", + "startDate": "2018-05-11", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2015-04-23", - "startDate": "2022-05-25", + "name": "IPSUM", + "endDate": "2019-08-21", + "startDate": "2021-12-31", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": false + "siteRegistry": true }, { "name": "AMET, DOLOR SIT", - "endDate": "2013-12-04", - "startDate": "2022-01-27", + "endDate": "2014-04-20", + "startDate": "2014-12-22", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2022-12-25", - "startDate": "2021-09-23", + "endDate": "2017-01-22", + "startDate": "2015-07-15", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": false + "siteRegistry": true } ], "suspectLandUses": [ { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2020-04-23 (described on Site Profile dated 2020-04-23)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2020-04-02 (described on Site Profile dated 2020-04-02)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-01-22 (described on Site Profile dated 2019-01-22)", + "notes": "INSERTED FOR SITE PROFILE DATED 2021-08-19 (described on Site Profile dated 2021-08-19)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-04-29 (described on Site Profile dated 2015-04-29)", + "notes": "INSERTED FOR SITE PROFILE DATED 2015-09-11 (described on Site Profile dated 2015-09-11)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-03-13 (described on Site Profile dated 2019-03-13)", + "notes": "INSERTED FOR SITE PROFILE DATED 2015-12-25 (described on Site Profile dated 2015-12-25)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2017-05-12 (described on Site Profile dated 2017-05-12)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + } + ], + "parcelDescriptions": [ + { + "siteRegistry": true, + "dateNoted": "2023-05-06", + "parcelID": "17435", + "crownLandUsePIN": "17358", + "crownLandFileNumber": "20051", + "landDescription": "LOT 1 OF LOT 2 BLOCK 1 DISTRICT LOT 3 PLAN 7297" + }, + { + "siteRegistry": false, + "dateNoted": "2021-11-04", + "parcelID": "15325", + "crownLandUsePIN": "19976", + "crownLandFileNumber": "19042", + "landDescription": "LOT 3 OF LOT 4 BLOCK 4 DISTRICT LOT 4 PLAN 5218" + }, + { + "siteRegistry": false, + "dateNoted": "2016-07-10", + "parcelID": "18014", + "crownLandUsePIN": "16909", + "crownLandFileNumber": "18620", + "landDescription": "LOT 4 OF LOT 3 BLOCK 3 DISTRICT LOT 5 PLAN 6370" } ], "siteDisclosures": [ { "siteRegistry": false, - "dateReceived": "2021-08-04", - "dateCompleted": "2020-07-25", - "dateEntered": "2021-06-16", - "dateRegistrar": "2016-12-13", - "dateLocalAuthorityReceived": "2017-08-11", - "summary": "Quae hic nisi necessitatibus esse aliquam.\nNesciunt voluptatibus saepe velit.\nBlanditiis dolorum aut eligendi provident inventore.", - "informationUsed": "Nobis laborum recusandae quam eveniet.\nIllo voluptates deleniti numquam accusantium pariatur consectetur vitae reiciendis.\nNemo necessitatibus pariatur animi facere asperiores unde.\nError sapiente maiores cumque cumque delectus.", - "pastOrPresentOrders": "Fugit sint et laboriosam.\nNihil magni quos quasi illo error.\nPariatur eaque aspernatur cupiditate dolor rem commodi suscipit dolorem minima.", + "dateReceived": "2022-09-23", + "dateCompleted": "2023-08-19", + "dateEntered": "2020-04-27", + "dateRegistrar": "2014-06-10", + "dateLocalAuthorityReceived": "2014-10-05", + "summary": "Dolorum quasi qui a dicta nobis ab nihil.\nConsectetur ea facilis beatae quas.\nNihil possimus eligendi.", + "informationUsed": "Sunt alias deserunt ipsam nesciunt laudantium sint architecto corporis.\nNecessitatibus similique qui consequuntur enim illum excepturi fugit quo.\nCupiditate veniam incidunt fuga sequi.", + "pastOrPresentOrders": "Excepturi amet eos sunt tempore deserunt autem expedita mollitia.\nModi quae commodi aliquam voluptatibus corrupti fuga.", "commercialAndIndustrialPurposes": [ { "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + } + ] + }, + { + "siteRegistry": false, + "dateReceived": "2015-03-20", + "dateCompleted": "2015-11-17", + "dateEntered": "2022-09-20", + "dateRegistrar": "2014-11-23", + "dateLocalAuthorityReceived": "2018-07-15", + "summary": "Est magni non recusandae similique debitis cumque.", + "informationUsed": "Eos possimus aliquam laborum quae optio quibusdam voluptate sint ut.\nFuga maxime enim aperiam beatae animi doloribus eos.\nPossimus itaque cupiditate fugit delectus recusandae.\nNobis iste fuga.\nPerferendis ratione fuga magni inventore aliquid.", + "pastOrPresentOrders": "Iste quisquam fugit perspiciatis consequatur temporibus at enim ducimus.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, { - "scheduleReference": "F2*", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true } ] } ], "activityLog": [ { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "KIEHN RANDALL", - "timestamp": "2022-08-11" + "user": "GLOVER ALYSA", + "timestamp": "2022-10-31" }, { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "HODKIEWICZ CALI", - "timestamp": "2018-06-12" + "user": "MORISSETTE HORACIO", + "timestamp": "2016-02-26" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "MCDERMOTT LUISA", - "timestamp": "2019-06-11" + "user": "PFANNERSTILL ANTHONY", + "timestamp": "2023-03-06" }, { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "REILLY ALAYNA", - "timestamp": "2022-03-27" + "user": "PAGAC ABBY", + "timestamp": "2022-03-15" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "HOEGER JANICK", - "timestamp": "2023-06-15" + "user": "SHIELDS LUCIOUS", + "timestamp": "2015-03-04" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "LOCKMAN DANE", - "timestamp": "2019-08-25" + "user": "D'AMORE GUIDO", + "timestamp": "2023-01-26" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "SCHULIST MARGARETT", + "timestamp": "2013-10-22" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "DOUGLAS CHANELLE", - "timestamp": "2017-07-10" + "user": "GREEN JESSY", + "timestamp": "2019-03-23" } ], "associatedSites": [ { - "dateNoted": "2021-01-30", + "dateNoted": "2020-10-05", "notes": "", - "parcelID": "18464", - "siteID": "16509", + "parcelID": "15664", + "siteID": "20080", "siteRegistry": false }, { - "dateNoted": "2019-11-04", + "dateNoted": "2015-05-26", "notes": "", - "parcelID": "16234", - "siteID": "17249", + "parcelID": "16155", + "siteID": "20492", "siteRegistry": true - }, - { - "dateNoted": "2020-01-20", - "notes": "", - "parcelID": "18831", - "siteID": "16803", - "siteRegistry": false } ] }, { - "uuid": "e4c77b73-5693-4b14-bd77-623856a55138", - "siteID": 15752, - "address": "5480 Tad Stravenue", - "latitude": 49.0415, - "longitude": -123.2946, - "lastUpdated": "2023-06-17", - "city": "Markscester", - "region": " North Coast", - "victoriaFile": "26250-20/17370", + "uuid": "b3dcbc29-7470-47e6-be93-015a27fbe061", + "siteID": 19253, + "address": "662 Bartell Green", + "latitude": 52.8973, + "longitude": -124.9908, + "lastUpdated": "2021-12-06", + "city": "Lake Dolly", + "region": "Mainland/Southwest", + "victoriaFile": "26250-20/3871", "regionalFile": "N/A", "parcelIDs": [ - 5095858, - 7398528, - 9674634, - 5237098, - 1306982 + 5991615, + 5511473, + 5584346, + 2943078, + 1675059 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2014-08-24", - "completed": "2017-06-10", - "initiated": "2020-05-25", - "ministryContact": "HOMENICK JEROD", + "createdAt": "2017-05-10", + "completed": "2021-02-03", + "initiated": "2015-09-10", + "ministryContact": "MANTE MCKENZIE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -50429,24 +55730,64 @@ "" ], "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", "siteRegistry": false }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "createdAt": "2015-05-15", + "completed": "2019-05-23", + "initiated": "2021-09-11", + "ministryContact": "ROSENBAUM SANTINO", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", "siteRegistry": false } ], "siteRegistry": false }, { - "createdAt": "2020-04-20", - "completed": "2020-11-01", - "initiated": "2014-01-31", - "ministryContact": "BEATTY ANAIS", + "createdAt": "2020-12-28", + "completed": "2018-10-03", + "initiated": "2014-07-27", + "ministryContact": "WELCH CATHERINE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -50454,15 +55795,20 @@ "" ], "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", @@ -50475,130 +55821,105 @@ ], "participants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2019-11-19", - "startDate": "2020-09-09", + "name": "IPSUM", + "endDate": "2014-10-25", + "startDate": "2014-01-31", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": true }, - { - "name": "AMET, DOLOR SIT", - "endDate": "2022-11-19", - "startDate": "2019-01-30", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": false - }, { "name": "SHELL CANADA PRODUCTS", - "endDate": "2018-10-15", - "startDate": "2020-05-02", + "endDate": "2023-03-29", + "startDate": "2018-02-15", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": false + "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2020-05-05", - "startDate": "2023-08-19", + "name": "IPSUM", + "endDate": "2022-08-18", + "startDate": "2021-08-30", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2022-03-27", - "startDate": "2022-05-11", + "name": "AMET, DOLOR SIT", + "endDate": "2016-12-10", + "startDate": "2015-08-11", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": false + "siteRegistry": true } ], "suspectLandUses": [ { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2020-10-07 (described on Site Profile dated 2020-10-07)", + "notes": "INSERTED FOR SITE PROFILE DATED 2018-07-02 (described on Site Profile dated 2018-07-02)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2017-08-07 (described on Site Profile dated 2017-08-07)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-10-26 (described on Site Profile dated 2022-10-26)", + "notes": "INSERTED FOR SITE PROFILE DATED 2015-06-16 (described on Site Profile dated 2015-06-16)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" - }, + } + ], + "parcelDescriptions": [ { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2020-09-09 (described on Site Profile dated 2020-09-09)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "dateNoted": "2014-09-25", + "parcelID": "17378", + "crownLandUsePIN": "20027", + "crownLandFileNumber": "20865", + "landDescription": "LOT 1 OF LOT 2 BLOCK 3 DISTRICT LOT 1 PLAN 7152" }, { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-04-04 (described on Site Profile dated 2022-04-04)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "dateNoted": "2020-06-23", + "parcelID": "20977", + "crownLandUsePIN": "15695", + "crownLandFileNumber": "15562", + "landDescription": "LOT 4 OF LOT 1 BLOCK 4 DISTRICT LOT 4 PLAN 3076" } ], "siteDisclosures": [ { - "siteRegistry": false, - "dateReceived": "2014-01-02", - "dateCompleted": "2013-12-03", - "dateEntered": "2017-08-02", - "dateRegistrar": "2021-08-05", - "dateLocalAuthorityReceived": "2018-06-19", - "summary": "Similique sequi sit explicabo amet voluptas minima ab debitis incidunt.\nPerspiciatis amet explicabo recusandae dignissimos numquam.\nMinima est quibusdam quaerat.", - "informationUsed": "Deserunt fuga beatae consequuntur cum quo ipsa molestiae.\nSed pariatur est itaque facere aspernatur necessitatibus non eius.\nCupiditate explicabo provident veritatis.", - "pastOrPresentOrders": "Aliquam repellat asperiores.\nBlanditiis occaecati corporis perspiciatis aperiam.", + "siteRegistry": true, + "dateReceived": "2014-10-12", + "dateCompleted": "2018-04-23", + "dateEntered": "2017-09-22", + "dateRegistrar": "2021-04-03", + "dateLocalAuthorityReceived": "2017-05-12", + "summary": "Similique consectetur dolorum laudantium occaecati beatae corrupti.", + "informationUsed": "Nostrum temporibus officiis nobis nisi tenetur.\nVoluptatum odit dolor nam.\nInventore adipisci est sapiente.\nNon ea odit consequatur soluta ipsum ullam.", + "pastOrPresentOrders": "Harum hic officia tempora accusamus dolor est libero.", "commercialAndIndustrialPurposes": [ - { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false - }, - { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true - }, { "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, - { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true - } - ] - }, - { - "siteRegistry": true, - "dateReceived": "2014-11-27", - "dateCompleted": "2016-01-22", - "dateEntered": "2022-12-18", - "dateRegistrar": "2021-12-10", - "dateLocalAuthorityReceived": "2019-08-21", - "summary": "Explicabo soluta quam.", - "informationUsed": "Soluta eum cumque consectetur.\nUnde repellendus quam corrupti esse accusantium veritatis sint.\nExercitationem eaque nulla debitis.\nSequi natus ipsam suscipit necessitatibus deserunt eligendi.\nPlaceat voluptate modi vitae blanditiis accusamus dicta qui ut esse.", - "pastOrPresentOrders": "Cumque culpa sunt commodi nostrum.\nInventore maiores possimus soluta ducimus illum vitae sunt dignissimos.", - "commercialAndIndustrialPurposes": [ { "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false + "siteRegistry": true }, { - "scheduleReference": "F1*", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true } @@ -50609,94 +55930,83 @@ { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "LITTEL SALLY", - "timestamp": "2019-12-10" - }, - { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "MOEN JOVANNY", - "timestamp": "2022-10-07" + "user": "KOZEY KAREN", + "timestamp": "2014-03-05" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "WUNSCH KORBIN", - "timestamp": "2019-02-12" - }, - { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "MARVIN FOREST", - "timestamp": "2021-02-03" + "user": "HOPPE BO", + "timestamp": "2021-12-23" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "HERZOG SARAI", - "timestamp": "2018-11-02" + "user": "STARK MIGUEL", + "timestamp": "2022-10-21" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "HANSEN JOCELYN", - "timestamp": "2015-08-06" - }, - { - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "O'KON CHANDLER", - "timestamp": "2014-01-23" + "user": "PROSACCO LYLA", + "timestamp": "2016-01-19" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "LARSON NELLA", - "timestamp": "2019-10-01" + "user": "KONOPELSKI TREVION", + "timestamp": "2015-07-14" } ], "associatedSites": [ { - "dateNoted": "2015-08-11", + "dateNoted": "2019-03-23", + "notes": "", + "parcelID": "20252", + "siteID": "16278", + "siteRegistry": true + }, + { + "dateNoted": "2023-01-28", "notes": "", - "parcelID": "18211", - "siteID": "15276", + "parcelID": "19181", + "siteID": "19399", "siteRegistry": true }, { - "dateNoted": "2018-06-06", + "dateNoted": "2020-08-09", "notes": "", - "parcelID": "19217", - "siteID": "16157", + "parcelID": "17967", + "siteID": "19365", "siteRegistry": false } ] }, { - "uuid": "65458c95-8599-46e0-b978-f26b4b4b8909", - "siteID": 17548, - "address": "2240 Gregorio Ridge", - "latitude": 48.6754, - "longitude": -128.8191, - "lastUpdated": "2021-10-01", - "city": "Lake Ila", - "region": "Vancouver Island/Coast", - "victoriaFile": "26250-20/957", + "uuid": "82d4086e-f040-4b6c-a11e-d2a671094877", + "siteID": 19608, + "address": "638 Satterfield Falls", + "latitude": 57.8519, + "longitude": -133.3304, + "lastUpdated": "2020-10-24", + "city": "Waldoport", + "region": "Kootenay", + "victoriaFile": "26250-20/9218", "regionalFile": "N/A", "parcelIDs": [ - 1141251, - 1123217, - 9987258, - 5326740, - 5035743 + 2162873, + 3584163, + 4070141, + 6091424, + 8560169 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2023-01-23", - "completed": "2014-09-04", - "initiated": "2015-12-08", - "ministryContact": "SAUER KATRINE", + "createdAt": "2017-10-08", + "completed": "2020-06-20", + "initiated": "2017-06-20", + "ministryContact": "TILLMAN LIZZIE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -50707,7 +56017,12 @@ { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", @@ -50717,21 +56032,21 @@ { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false } ], "siteRegistry": true }, { - "createdAt": "2021-12-29", - "completed": "2023-07-28", - "initiated": "2015-01-10", - "ministryContact": "ROGAHN HARVEY", + "createdAt": "2020-02-18", + "completed": "2021-10-16", + "initiated": "2022-10-29", + "ministryContact": "SCHULTZ BEULAH", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -50740,38 +56055,28 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2017-02-27", - "completed": "2018-06-21", - "initiated": "2019-10-09", - "ministryContact": "ZIEMANN MARCELINA", + "createdAt": "2022-11-08", + "completed": "2016-03-03", + "initiated": "2020-01-07", + "ministryContact": "ZEMLAK BENTON", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -50780,23 +56085,23 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true } ], "siteRegistry": true }, { - "createdAt": "2020-10-31", - "completed": "2020-10-02", - "initiated": "2021-09-29", - "ministryContact": "PROSACCO PEARL", + "createdAt": "2014-08-19", + "completed": "2021-10-15", + "initiated": "2016-10-19", + "ministryContact": "BAUMBACH JACQUELYN", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -50806,18 +56111,13 @@ "notationParticipants": [ { "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": true }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true } ], "siteRegistry": false @@ -50825,112 +56125,98 @@ ], "participants": [ { - "name": "IPSUM", - "endDate": "2018-10-30", - "startDate": "2020-08-07", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2014-01-11", + "startDate": "2022-07-28", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", - "endDate": "2020-12-24", - "startDate": "2022-03-12", + "endDate": "2022-06-15", + "startDate": "2018-12-31", "notes": "", "roles": [ "ORGANIZATION" ], "siteRegistry": true + } + ], + "suspectLandUses": [ + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2023-03-24 (described on Site Profile dated 2023-03-24)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "name": "IPSUM", - "endDate": "2015-01-15", - "startDate": "2018-09-19", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": true + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2023-08-02 (described on Site Profile dated 2023-08-02)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2016-12-01", - "startDate": "2015-10-13", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": true + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2019-12-24 (described on Site Profile dated 2019-12-24)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2022-04-28", - "startDate": "2022-01-07", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": false + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2015-12-02 (described on Site Profile dated 2015-12-02)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], - "suspectLandUses": [ + "parcelDescriptions": [ + { + "siteRegistry": false, + "dateNoted": "2015-06-09", + "parcelID": "15902", + "crownLandUsePIN": "20552", + "crownLandFileNumber": "15443", + "landDescription": "LOT 1 OF LOT 4 BLOCK 2 DISTRICT LOT 4 PLAN 7173" + }, { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-01-19 (described on Site Profile dated 2022-01-19)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "dateNoted": "2019-12-17", + "parcelID": "18844", + "crownLandUsePIN": "17857", + "crownLandFileNumber": "19492", + "landDescription": "LOT 5 OF LOT 3 BLOCK 2 DISTRICT LOT 4 PLAN 7800" }, { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2023-05-23 (described on Site Profile dated 2023-05-23)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "dateNoted": "2019-11-24", + "parcelID": "20304", + "crownLandUsePIN": "19297", + "crownLandFileNumber": "17515", + "landDescription": "LOT 4 OF LOT 3 BLOCK 2 DISTRICT LOT 2 PLAN 3438" + }, + { + "siteRegistry": true, + "dateNoted": "2017-04-14", + "parcelID": "18046", + "crownLandUsePIN": "17726", + "crownLandFileNumber": "18520", + "landDescription": "LOT 5 OF LOT 2 BLOCK 1 DISTRICT LOT 3 PLAN 3634" } ], "siteDisclosures": [ { - "siteRegistry": true, - "dateReceived": "2021-02-17", - "dateCompleted": "2020-02-08", - "dateEntered": "2022-09-21", - "dateRegistrar": "2015-08-13", - "dateLocalAuthorityReceived": "2014-03-11", - "summary": "Dolorum atque earum.\nA quis quibusdam quia eaque quibusdam similique non quisquam.\nIncidunt aliquam nulla cupiditate error provident ea distinctio dolore.", - "informationUsed": "Quos quisquam placeat esse vel ratione.\nNon ipsa ea dolor soluta nostrum qui.\nSit aspernatur magni amet laudantium aliquid ex voluptatibus laborum incidunt.\nDeleniti nostrum alias suscipit.\nFacere eaque ratione eveniet nobis doloribus commodi aut aspernatur.", - "pastOrPresentOrders": "Officia pariatur adipisci.\nAsperiores dolor fugiat.\nCupiditate excepturi adipisci eius sapiente vel officiis.", + "siteRegistry": false, + "dateReceived": "2016-01-21", + "dateCompleted": "2016-12-03", + "dateEntered": "2018-07-12", + "dateRegistrar": "2022-01-27", + "dateLocalAuthorityReceived": "2022-12-13", + "summary": "Quo a ducimus voluptatum.\nMolestias iure dolore perspiciatis voluptatem.\nRerum est illum aliquid minus provident quod laudantium alias.", + "informationUsed": "Illo libero eaque debitis sit.\nOmnis rerum dolorem illo provident consectetur.\nFuga quos odio debitis.\nDeserunt praesentium accusamus reprehenderit earum laudantium.", + "pastOrPresentOrders": "Accusamus rem modi consequatur unde itaque officia dicta odio.\nIllum nesciunt consequuntur ut occaecati quis neque labore.\nNam expedita architecto laudantium recusandae voluptatum.", "commercialAndIndustrialPurposes": [ { "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true - }, - { - "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false - }, - { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false - } - ] - }, - { - "siteRegistry": false, - "dateReceived": "2014-07-13", - "dateCompleted": "2017-12-28", - "dateEntered": "2017-11-11", - "dateRegistrar": "2014-09-25", - "dateLocalAuthorityReceived": "2019-10-13", - "summary": "Quia labore repudiandae ipsa.\nRatione animi sit iusto cumque sapiente suscipit.\nFacilis earum maxime numquam corrupti.", - "informationUsed": "Minus hic facere mollitia.\nQuibusdam commodi quidem.\nDoloribus occaecati nihil rerum.\nA pariatur dolorum enim fugit assumenda ab.", - "pastOrPresentOrders": "Error repudiandae alias adipisci similique quos ut dolores sit fuga.\nOccaecati eum tempore occaecati suscipit repellat nostrum laudantium quae atque.\nSint exercitationem fuga.", - "commercialAndIndustrialPurposes": [ - { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false + "siteRegistry": true }, { "scheduleReference": "F2*", @@ -50938,13 +56224,13 @@ "siteRegistry": true }, { - "scheduleReference": "F1*", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false + "siteRegistry": true }, { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true } ] @@ -50952,83 +56238,97 @@ ], "activityLog": [ { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "KUTCH DARIANA", - "timestamp": "2016-09-02" + "user": "DONNELLY ROSALYN", + "timestamp": "2022-02-08" }, { - "siteRegistry": true, + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "BAILEY TRISTIAN", - "timestamp": "2022-01-11" + "user": "SATTERFIELD KRISTY", + "timestamp": "2023-07-15" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "SENGER BRICE", - "timestamp": "2016-11-19" + "user": "ARMSTRONG CONSTANTIN", + "timestamp": "2018-06-07" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "BRAUN SADIE", - "timestamp": "2021-01-15" + "user": "KERLUKE RONALDO", + "timestamp": "2014-03-30" }, { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "ROMAGUERA BRANDON", - "timestamp": "2020-01-30" + "user": "WINTHEISER ASHLEY", + "timestamp": "2021-03-18" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "WEHNER-BOTSFORD LINWOOD", - "timestamp": "2015-06-20" + "user": "SCHUMM ROGELIO", + "timestamp": "2023-03-20" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "BERNIER JADYN", - "timestamp": "2020-07-13" + "user": "METZ RORY", + "timestamp": "2017-12-20" } ], "associatedSites": [ { - "dateNoted": "2013-11-04", + "dateNoted": "2021-01-30", + "notes": "", + "parcelID": "17906", + "siteID": "16489", + "siteRegistry": true + }, + { + "dateNoted": "2017-06-22", "notes": "", - "parcelID": "15356", - "siteID": "18685", + "parcelID": "19452", + "siteID": "18658", "siteRegistry": true + }, + { + "dateNoted": "2019-12-26", + "notes": "", + "parcelID": "18851", + "siteID": "16262", + "siteRegistry": false } ] }, { - "uuid": "282b26fe-8cbe-49f8-96cb-a23d137832d6", - "siteID": 20762, - "address": "49405 Larson Drives", - "latitude": 52.4656, - "longitude": -120.2158, - "lastUpdated": "2018-01-23", - "city": "East Armando", - "region": "Mainland/Southwest", - "victoriaFile": "26250-20/12380", + "uuid": "b78be1dd-724a-41c7-b6ba-74a6d0446c4f", + "siteID": 19051, + "address": "107 Kariane Springs", + "latitude": 57.8536, + "longitude": -138.5105, + "lastUpdated": "2018-07-27", + "city": "Peoria", + "region": " North Coast", + "victoriaFile": "26250-20/5433", "regionalFile": "N/A", "parcelIDs": [ - 8748427, - 3791118, - 7263965, - 6806789, - 8848162 + 1035994, + 4843095, + 7576945, + 5319545, + 8938211 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2014-01-23", - "completed": "2014-08-07", - "initiated": "2015-04-26", - "ministryContact": "LANGOSH VINCENT", + "createdAt": "2021-01-26", + "completed": "2017-08-03", + "initiated": "2023-08-04", + "ministryContact": "VEUM MAE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -51038,57 +56338,27 @@ "notationParticipants": [ { "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - } - ], - "siteRegistry": true - }, - { - "createdAt": "2023-04-10", - "completed": "2014-09-28", - "initiated": "2018-10-20", - "ministryContact": "HOMENICK-SCHUMM ALYSSON", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2018-08-02", - "completed": "2019-08-26", - "initiated": "2017-08-28", - "ministryContact": "KUNZE TERRILL", + "createdAt": "2014-11-11", + "completed": "2016-09-14", + "initiated": "2016-02-02", + "ministryContact": "TOY ONIE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -51097,28 +56367,23 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false } ], "siteRegistry": true }, { - "createdAt": "2016-08-01", - "completed": "2021-01-31", - "initiated": "2014-06-13", - "ministryContact": "BREITENBERG WARD", + "createdAt": "2020-05-15", + "completed": "2020-04-08", + "initiated": "2017-10-21", + "ministryContact": "SCHUPPE HILTON", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -51132,29 +56397,44 @@ "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true } ], "participants": [ { "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2016-05-01", - "startDate": "2021-11-15", + "endDate": "2016-10-13", + "startDate": "2017-02-07", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": true }, { - "name": "IPSUM", - "endDate": "2015-10-09", - "startDate": "2014-06-18", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2014-11-01", + "startDate": "2015-10-18", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "AMET, DOLOR SIT", + "endDate": "2018-10-22", + "startDate": "2015-03-13", "notes": "", "roles": [ "ORGANIZATION" @@ -51162,9 +56442,19 @@ "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2018-03-04", - "startDate": "2013-11-26", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2018-10-14", + "startDate": "2020-02-23", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "IPSUM", + "endDate": "2017-05-26", + "startDate": "2016-09-03", "notes": "", "roles": [ "EMPLOYEE" @@ -51173,61 +56463,87 @@ } ], "suspectLandUses": [ + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2014-08-13 (described on Site Profile dated 2014-08-13)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-12-18 (described on Site Profile dated 2016-12-18)", + "notes": "INSERTED FOR SITE PROFILE DATED 2020-06-15 (described on Site Profile dated 2020-06-15)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-05-07 (described on Site Profile dated 2017-05-07)", + "notes": "INSERTED FOR SITE PROFILE DATED 2021-08-04 (described on Site Profile dated 2021-08-04)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2021-03-08 (described on Site Profile dated 2021-03-08)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + } + ], + "parcelDescriptions": [ + { + "siteRegistry": true, + "dateNoted": "2018-09-05", + "parcelID": "16869", + "crownLandUsePIN": "16295", + "crownLandFileNumber": "15904", + "landDescription": "LOT 4 OF LOT 2 BLOCK 4 DISTRICT LOT 3 PLAN 8818" + }, + { + "siteRegistry": true, + "dateNoted": "2021-12-27", + "parcelID": "15809", + "crownLandUsePIN": "20254", + "crownLandFileNumber": "17573", + "landDescription": "LOT 3 OF LOT 2 BLOCK 3 DISTRICT LOT 4 PLAN 5734" + }, + { + "siteRegistry": false, + "dateNoted": "2017-06-11", + "parcelID": "17047", + "crownLandUsePIN": "17734", + "crownLandFileNumber": "20991", + "landDescription": "LOT 3 OF LOT 5 BLOCK 5 DISTRICT LOT 3 PLAN 5244" + }, + { + "siteRegistry": true, + "dateNoted": "2016-10-15", + "parcelID": "15367", + "crownLandUsePIN": "20753", + "crownLandFileNumber": "15459", + "landDescription": "LOT 1 OF LOT 5 BLOCK 5 DISTRICT LOT 4 PLAN 3288" } ], "siteDisclosures": [ { "siteRegistry": false, - "dateReceived": "2017-03-14", - "dateCompleted": "2016-05-16", - "dateEntered": "2018-06-06", - "dateRegistrar": "2023-03-19", - "dateLocalAuthorityReceived": "2016-05-15", - "summary": "Adipisci cum deserunt sequi sunt facilis dicta perspiciatis vero.\nVoluptates rerum eaque.", - "informationUsed": "Temporibus labore quo magnam neque quisquam itaque.\nQui cum quis velit sed dolores.\nNesciunt tempore aspernatur est enim quasi quaerat fugiat recusandae et.", - "pastOrPresentOrders": "Sapiente quaerat itaque.\nEveniet fugiat error provident vitae.\nEt illum quo officiis sed similique.", + "dateReceived": "2022-01-10", + "dateCompleted": "2016-05-01", + "dateEntered": "2016-02-22", + "dateRegistrar": "2013-12-10", + "dateLocalAuthorityReceived": "2014-06-20", + "summary": "Cupiditate numquam voluptas quam quisquam omnis sint voluptatem.", + "informationUsed": "Animi sit esse quisquam enim.\nTotam architecto cumque inventore voluptatum similique.\nExpedita soluta doloribus.", + "pastOrPresentOrders": "Eaque dolores eos delectus.\nVoluptatibus nemo voluptatibus ipsam autem consectetur.", "commercialAndIndustrialPurposes": [ { "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, - { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false - }, { "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true - } - ] - }, - { - "siteRegistry": true, - "dateReceived": "2022-08-19", - "dateCompleted": "2021-03-10", - "dateEntered": "2019-06-05", - "dateRegistrar": "2023-04-30", - "dateLocalAuthorityReceived": "2023-02-17", - "summary": "Totam eaque deleniti enim.\nAnimi dicta reprehenderit perspiciatis earum.", - "informationUsed": "Quod praesentium officia asperiores cupiditate dignissimos.\nMagni consequuntur id excepturi quas a asperiores aut dolores consequuntur.\nDolor eligendi reiciendis quas voluptates quidem.", - "pastOrPresentOrders": "Quibusdam repellat aperiam non tenetur odio.\nItaque consectetur suscipit omnis nostrum.\nCulpa occaecati quia commodi inventore culpa perferendis eum quisquam.", - "commercialAndIndustrialPurposes": [ + }, { - "scheduleReference": "F1*", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true + "siteRegistry": false }, { "scheduleReference": "F2*", @@ -51241,99 +56557,88 @@ { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "MILLER MILFORD", - "timestamp": "2020-01-03" - }, - { - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "RAYNOR-HARRIS ILA", - "timestamp": "2014-03-21" + "user": "GOYETTE KIARRA", + "timestamp": "2013-11-02" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "LUBOWITZ EMANUEL", - "timestamp": "2019-11-29" + "user": "KIEHN MOISES", + "timestamp": "2022-12-25" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "MARQUARDT LAURIANE", - "timestamp": "2016-06-13" - }, - { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "RICE JUSTYN", - "timestamp": "2016-07-01" + "user": "QUITZON JONATHON", + "timestamp": "2016-09-08" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "MAGGIO GAVIN", - "timestamp": "2017-10-26" - }, - { - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "HOWELL DENNIS", - "timestamp": "2019-03-22" + "user": "ZBONCAK EILEEN", + "timestamp": "2022-06-14" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "SCHMIDT LESSIE", - "timestamp": "2018-05-30" + "user": "BREKKE LILLIAN", + "timestamp": "2015-07-24" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "BALISTRERI HESTER", - "timestamp": "2014-04-23" + "user": "MCCULLOUGH CHANELLE", + "timestamp": "2023-06-20" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "LUEILWITZ ESTELLA", - "timestamp": "2014-08-27" + "user": "WOLF ISOM", + "timestamp": "2015-12-12" } ], "associatedSites": [ { - "dateNoted": "2019-03-04", + "dateNoted": "2014-08-17", "notes": "", - "parcelID": "16250", - "siteID": "18201", - "siteRegistry": false + "parcelID": "20236", + "siteID": "17653", + "siteRegistry": true + }, + { + "dateNoted": "2022-07-23", + "notes": "", + "parcelID": "16289", + "siteID": "18816", + "siteRegistry": true } ] }, { - "uuid": "84fe9d77-5725-425c-8a2f-a7335ebdce2d", - "siteID": 18936, - "address": "954 Dean Avenue", - "latitude": 56.0672, - "longitude": -123.474, - "lastUpdated": "2015-10-11", - "city": "Port Johanfield", + "uuid": "b41b6e32-468b-4cc3-abe6-70cdc6820a57", + "siteID": 19399, + "address": "601 Mueller Row", + "latitude": 55.5421, + "longitude": -129.6232, + "lastUpdated": "2017-11-05", + "city": "Gorczanyport", "region": "Thompson-Okanagan", - "victoriaFile": "26250-20/7146", + "victoriaFile": "26250-20/7099", "regionalFile": "N/A", "parcelIDs": [ - 1597442, - 3737247, - 3328470, - 6936377, - 5171706 + 4118828, + 4666661, + 5707167, + 1620279, + 4980352 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2022-12-27", - "completed": "2017-12-31", - "initiated": "2018-10-22", - "ministryContact": "HACKETT MEGANE", + "createdAt": "2021-12-08", + "completed": "2021-09-23", + "initiated": "2021-02-22", + "ministryContact": "LOWE MARJOLAINE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -51342,7 +56647,7 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true }, @@ -51352,23 +56657,28 @@ "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true } ], "siteRegistry": true }, { - "createdAt": "2016-10-28", - "completed": "2013-12-30", - "initiated": "2014-12-20", - "ministryContact": "WEHNER MISTY", + "createdAt": "2018-09-25", + "completed": "2020-09-18", + "initiated": "2014-06-05", + "ministryContact": "KOSS LEONE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -51378,37 +56688,32 @@ "notationParticipants": [ { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true } ], "siteRegistry": true }, { - "createdAt": "2022-05-10", - "completed": "2020-03-30", - "initiated": "2015-02-14", - "ministryContact": "FRITSCH VANCE", + "createdAt": "2023-06-23", + "completed": "2021-01-20", + "initiated": "2021-03-31", + "ministryContact": "NIENOW MARGRET", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -51417,19 +56722,14 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true + "role": "REQUESTED BY", + "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", @@ -51437,14 +56737,14 @@ "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false } ], "participants": [ { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2015-06-07", - "startDate": "2014-03-20", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2018-02-26", + "startDate": "2020-08-03", "notes": "", "roles": [ "EMPLOYEE" @@ -51452,77 +56752,85 @@ "siteRegistry": true }, { - "name": "IPSUM", - "endDate": "2021-04-24", - "startDate": "2016-11-11", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2017-12-04", + "startDate": "2014-07-20", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": false }, { "name": "AMET, DOLOR SIT", - "endDate": "2017-09-15", - "startDate": "2021-02-23", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2014-01-16", - "startDate": "2017-09-09", + "endDate": "2014-11-17", + "startDate": "2015-01-30", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", - "endDate": "2017-04-08", - "startDate": "2015-11-26", + "endDate": "2021-04-14", + "startDate": "2018-06-24", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": true } ], "suspectLandUses": [ { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-01-02 (described on Site Profile dated 2015-01-02)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2015-12-16 (described on Site Profile dated 2015-12-16)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2023-06-13 (described on Site Profile dated 2023-06-13)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "notes": "INSERTED FOR SITE PROFILE DATED 2023-06-30 (described on Site Profile dated 2023-06-30)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + } + ], + "parcelDescriptions": [ + { + "siteRegistry": false, + "dateNoted": "2022-08-30", + "parcelID": "17030", + "crownLandUsePIN": "19382", + "crownLandFileNumber": "18936", + "landDescription": "LOT 4 OF LOT 3 BLOCK 2 DISTRICT LOT 5 PLAN 4606" + }, + { + "siteRegistry": false, + "dateNoted": "2018-09-07", + "parcelID": "17925", + "crownLandUsePIN": "20337", + "crownLandFileNumber": "18975", + "landDescription": "LOT 3 OF LOT 3 BLOCK 1 DISTRICT LOT 1 PLAN 9724" } ], "siteDisclosures": [ { - "siteRegistry": true, - "dateReceived": "2017-10-08", - "dateCompleted": "2018-06-19", - "dateEntered": "2018-01-16", - "dateRegistrar": "2014-10-27", - "dateLocalAuthorityReceived": "2015-06-22", - "summary": "Omnis expedita accusamus minima quas aliquid rem deleniti ducimus reiciendis.", - "informationUsed": "Amet quas nihil fugit sint fuga voluptatem totam.\nOdit necessitatibus ut laudantium expedita pariatur cupiditate quos.\nOfficiis recusandae aliquam deleniti quo quos.", - "pastOrPresentOrders": "Quod totam earum odit error placeat perferendis nemo perspiciatis ad.\nQuasi distinctio quibusdam officiis mollitia ipsa.", + "siteRegistry": false, + "dateReceived": "2017-02-10", + "dateCompleted": "2017-10-14", + "dateEntered": "2017-09-12", + "dateRegistrar": "2020-12-02", + "dateLocalAuthorityReceived": "2014-08-06", + "summary": "Adipisci voluptatum id ratione recusandae fugiat officia.\nVel fugit temporibus possimus iste quidem quas modi repellendus.\nReiciendis ipsum quaerat laborum modi doloremque eaque quae.", + "informationUsed": "Non occaecati excepturi.\nPlaceat molestiae architecto.\nSaepe iste tenetur sunt aspernatur odio praesentium.\nTemporibus voluptas libero repellendus iure.", + "pastOrPresentOrders": "Voluptates saepe ut rem ullam.", "commercialAndIndustrialPurposes": [ { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false }, { - "scheduleReference": "F1*", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true } @@ -51530,15 +56838,20 @@ }, { "siteRegistry": true, - "dateReceived": "2015-05-18", - "dateCompleted": "2015-05-09", - "dateEntered": "2023-03-24", - "dateRegistrar": "2015-09-02", - "dateLocalAuthorityReceived": "2018-09-27", - "summary": "Omnis doloribus voluptatibus nostrum alias accusantium expedita quae porro.\nFugit a quidem nostrum ad consectetur tempore dolorem.\nCupiditate corrupti perferendis.", - "informationUsed": "Libero voluptates at.\nDebitis nihil ipsa illo nulla ipsam eveniet facere eligendi.\nMinima commodi libero aut aperiam adipisci facilis et minima.\nImpedit veritatis ex quas asperiores sint.", - "pastOrPresentOrders": "Laborum quibusdam animi dignissimos eos distinctio blanditiis dolorum delectus.\nLabore eligendi occaecati dolore facere.\nPerspiciatis autem facere optio possimus eligendi voluptatem recusandae odio.", + "dateReceived": "2015-02-28", + "dateCompleted": "2016-08-31", + "dateEntered": "2015-07-28", + "dateRegistrar": "2022-07-19", + "dateLocalAuthorityReceived": "2022-04-17", + "summary": "Voluptatum rerum aliquam.", + "informationUsed": "Iure dolorem odio.\nIllum illum consequuntur ipsam quibusdam voluptas architecto unde explicabo reiciendis.\nDolorem ab quaerat.\nBeatae doloribus id sed cumque necessitatibus.", + "pastOrPresentOrders": "Recusandae ab iste deserunt adipisci.\nDoloribus animi delectus ab officiis quas nam eveniet.\nAliquam ipsa repellendus aliquid placeat iusto ea natus error.", "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, { "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", @@ -51547,7 +56860,12 @@ { "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false + "siteRegistry": true + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true } ] } @@ -51556,100 +56874,95 @@ { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "MURRAY ARIEL", - "timestamp": "2016-09-27" + "user": "FEEST MARINA", + "timestamp": "2022-04-08" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "FRAMI HARRISON", - "timestamp": "2018-01-30" + "user": "FISHER ALESSANDRA", + "timestamp": "2016-08-15" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "MAYERT BREANNE", - "timestamp": "2023-02-07" - }, - { - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "TOY MAYBELL", - "timestamp": "2014-05-30" + "user": "KUHN RASHAWN", + "timestamp": "2018-04-27" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "HALVORSON RAHUL", - "timestamp": "2013-11-05" + "user": "HILPERT ARCHIBALD", + "timestamp": "2022-06-14" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "HOEGER SKYLA", - "timestamp": "2018-03-23" - }, - { - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "TURCOTTE DAMION", - "timestamp": "2018-03-21" + "user": "ROWE-BRAKUS BRAEDEN", + "timestamp": "2023-10-03" }, { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "UPTON-BEIER JABARI", - "timestamp": "2019-03-25" + "user": "MAGGIO ALEXANNE", + "timestamp": "2016-02-07" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "JAKUBOWSKI ZACHERY", - "timestamp": "2017-07-28" + "user": "HAYES MAY", + "timestamp": "2019-10-05" } ], "associatedSites": [ { - "dateNoted": "2021-05-05", + "dateNoted": "2019-05-17", "notes": "", - "parcelID": "19203", - "siteID": "19962", + "parcelID": "17659", + "siteID": "16979", "siteRegistry": true }, { - "dateNoted": "2021-02-10", + "dateNoted": "2022-05-18", "notes": "", - "parcelID": "18276", - "siteID": "17419", - "siteRegistry": true + "parcelID": "16438", + "siteID": "18292", + "siteRegistry": false + }, + { + "dateNoted": "2017-08-31", + "notes": "", + "parcelID": "20304", + "siteID": "18013", + "siteRegistry": false } ] }, { - "uuid": "1ee06b29-bda0-45b5-9dd3-efd5c132003e", - "siteID": 19349, - "address": "68823 Gorczany Crossing", - "latitude": 48.0189, - "longitude": -135.7699, - "lastUpdated": "2016-03-28", - "city": "Mittieboro", - "region": "Cariboo", - "victoriaFile": "26250-20/3930", + "uuid": "b6a512d4-4b16-4fa6-9b13-1d2a7bdb8183", + "siteID": 16983, + "address": "76126 Leonardo Landing", + "latitude": 55.2819, + "longitude": -122.5735, + "lastUpdated": "2019-08-22", + "city": "Carmelocester", + "region": "Mainland/Southwest", + "victoriaFile": "26250-20/18136", "regionalFile": "N/A", "parcelIDs": [ - 9298437, - 6122730, - 1710950, - 270284, - 1865246 + 9659889, + 3703749, + 4723657, + 745880, + 6714374 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2015-05-14", - "completed": "2023-01-25", - "initiated": "2014-03-27", - "ministryContact": "ROSENBAUM JADA", + "createdAt": "2017-12-08", + "completed": "2020-12-26", + "initiated": "2017-02-09", + "ministryContact": "KUNZE AMELIA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -51662,11 +56975,6 @@ "role": "REQUESTED BY", "siteRegistry": false }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", @@ -51676,10 +56984,10 @@ "siteRegistry": false }, { - "createdAt": "2016-12-02", - "completed": "2023-01-19", - "initiated": "2020-03-24", - "ministryContact": "MUELLER CARMINE", + "createdAt": "2017-03-18", + "completed": "2017-08-13", + "initiated": "2019-06-25", + "ministryContact": "LANG ELLSWORTH", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -51693,49 +57001,29 @@ "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false - } - ], - "siteRegistry": true - }, - { - "createdAt": "2019-04-12", - "completed": "2014-05-01", - "initiated": "2016-02-29", - "ministryContact": "PACOCHA MAEGAN", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ + }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false + "role": "SUBMITTED BY", + "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true } ], "participants": [ { "name": "IPSUM", - "endDate": "2014-05-29", - "startDate": "2015-04-27", + "endDate": "2017-10-14", + "startDate": "2015-12-30", "notes": "", "roles": [ "ORGANIZATION" @@ -51744,71 +57032,109 @@ }, { "name": "IPSUM", - "endDate": "2020-10-24", - "startDate": "2013-12-05", + "endDate": "2021-12-28", + "startDate": "2017-10-11", "notes": "", "roles": [ "EMPLOYEE" ], + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2015-01-05", + "startDate": "2017-04-29", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2016-09-13", + "startDate": "2021-02-08", + "notes": "", + "roles": [ + "ORGANIZATION" + ], "siteRegistry": false } ], - "suspectLandUses": [ + "suspectLandUses": [ + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2019-08-29 (described on Site Profile dated 2019-08-29)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2017-12-30 (described on Site Profile dated 2017-12-30)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2015-12-08 (described on Site Profile dated 2015-12-08)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2014-04-05 (described on Site Profile dated 2014-04-05)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2016-09-03 (described on Site Profile dated 2016-09-03)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + } + ], + "parcelDescriptions": [ { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-01-22 (described on Site Profile dated 2019-01-22)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "dateNoted": "2017-10-30", + "parcelID": "17049", + "crownLandUsePIN": "15352", + "crownLandFileNumber": "17666", + "landDescription": "LOT 2 OF LOT 3 BLOCK 2 DISTRICT LOT 3 PLAN 8571" }, { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-11-02 (described on Site Profile dated 2017-11-02)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "dateNoted": "2016-11-04", + "parcelID": "19246", + "crownLandUsePIN": "19265", + "crownLandFileNumber": "16659", + "landDescription": "LOT 1 OF LOT 2 BLOCK 3 DISTRICT LOT 3 PLAN 3753" + }, + { + "siteRegistry": false, + "dateNoted": "2015-05-20", + "parcelID": "20903", + "crownLandUsePIN": "15216", + "crownLandFileNumber": "18148", + "landDescription": "LOT 1 OF LOT 5 BLOCK 4 DISTRICT LOT 5 PLAN 6864" } ], "siteDisclosures": [ { - "siteRegistry": true, - "dateReceived": "2022-01-21", - "dateCompleted": "2015-10-15", - "dateEntered": "2017-11-23", - "dateRegistrar": "2019-09-02", - "dateLocalAuthorityReceived": "2018-08-04", - "summary": "Dolor eius facere.\nCorporis voluptatem fuga eos at mollitia aperiam.", - "informationUsed": "Perferendis nobis fugit illum repudiandae earum quae exercitationem.\nAut labore accusantium amet fugiat.\nNecessitatibus quaerat quos nesciunt ea eius nemo.\nId reprehenderit nam molestiae laborum recusandae dolores ad.\nAut consectetur quas quidem voluptatum culpa eveniet.", - "pastOrPresentOrders": "Sed magnam eaque fugiat hic unde.\nQuasi accusantium doloremque est magnam magnam accusantium cumque.", + "siteRegistry": false, + "dateReceived": "2017-10-09", + "dateCompleted": "2014-11-17", + "dateEntered": "2023-07-28", + "dateRegistrar": "2023-01-14", + "dateLocalAuthorityReceived": "2021-01-04", + "summary": "Facilis animi in.\nError laborum adipisci illum.", + "informationUsed": "Iste voluptas cum quibusdam temporibus quibusdam.\nIn maxime esse amet aliquam quod.\nItaque modi quia qui eaque inventore eaque recusandae.\nImpedit quaerat facere debitis nihil illo.", + "pastOrPresentOrders": "Recusandae commodi sed totam repudiandae.\nMolestias est aliquam commodi hic excepturi eos error.\nInventore sint cupiditate delectus nesciunt quibusdam numquam numquam delectus.", "commercialAndIndustrialPurposes": [ { "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false - }, - { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, - { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false - } - ] - }, - { - "siteRegistry": false, - "dateReceived": "2016-05-02", - "dateCompleted": "2022-07-01", - "dateEntered": "2015-09-21", - "dateRegistrar": "2014-07-29", - "dateLocalAuthorityReceived": "2018-01-26", - "summary": "Pariatur dicta aut minima facere.\nDolorum eum quos neque facilis molestias non.", - "informationUsed": "Minima soluta autem voluptas optio dolorem illum voluptate cum suscipit.\nNecessitatibus ea ipsam voluptatibus cum tenetur optio.\nIllo tempore iusto aliquam.\nSequi magnam explicabo voluptatibus accusamus consequuntur libero itaque accusamus.", - "pastOrPresentOrders": "Enim modi saepe fugit porro iusto culpa.\nNulla voluptatibus nam nemo veniam nobis consequatur ut iusto.", - "commercialAndIndustrialPurposes": [ { "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false + "siteRegistry": true }, { "scheduleReference": "F2*", @@ -51822,113 +57148,75 @@ { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "BERGSTROM AMARI", - "timestamp": "2022-05-01" + "user": "CARTWRIGHT EMMIE", + "timestamp": "2018-05-16" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "NIENOW BETH", - "timestamp": "2018-01-20" - }, - { - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "JACOBI IGNACIO", - "timestamp": "2014-03-02" + "user": "KUB MAIDA", + "timestamp": "2019-10-06" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "BOEHM MIREYA", - "timestamp": "2017-01-27" - }, - { - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "KIEHN ALBERTHA", - "timestamp": "2014-08-29" + "user": "WISOKY AUGUSTA", + "timestamp": "2021-07-07" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "BEIER ROCKY", - "timestamp": "2014-05-04" - }, - { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "BOYER MACEY", - "timestamp": "2019-06-04" - }, - { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "WISOZK RONALDO", - "timestamp": "2019-05-02" + "user": "LOWE MABELLE", + "timestamp": "2020-03-14" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "JONES JUSTINA", - "timestamp": "2023-04-15" + "user": "SMITH OTTILIE", + "timestamp": "2015-05-03" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "EMMERICH BERTA", - "timestamp": "2017-04-04" + "user": "GOYETTE NIKOLAS", + "timestamp": "2023-05-22" } ], "associatedSites": [ { - "dateNoted": "2023-01-01", - "notes": "", - "parcelID": "15930", - "siteID": "19397", - "siteRegistry": false - }, - { - "dateNoted": "2015-08-21", + "dateNoted": "2020-06-26", "notes": "", - "parcelID": "18754", - "siteID": "20230", + "parcelID": "18373", + "siteID": "18993", "siteRegistry": false - }, - { - "dateNoted": "2022-10-19", - "notes": "", - "parcelID": "15991", - "siteID": "19246", - "siteRegistry": true } ] }, { - "uuid": "cb301469-57c3-4bc8-bf06-20494702cf10", - "siteID": 17805, - "address": "793 Rogahn Forges", - "latitude": 54.0998, - "longitude": -128.5528, - "lastUpdated": "2021-05-11", - "city": "East Rowanchester", - "region": "Mainland/Southwest", - "victoriaFile": "26250-20/15005", + "uuid": "220dd957-6546-480c-a95b-33e9a75dd6c2", + "siteID": 19984, + "address": "822 Antone Hills", + "latitude": 49.2052, + "longitude": -132.7085, + "lastUpdated": "2016-10-18", + "city": "Schambergerchester", + "region": "Kootenay", + "victoriaFile": "26250-20/10961", "regionalFile": "N/A", "parcelIDs": [ - 5930726, - 3730484, - 9243174, - 2428263, - 7106857 + 3863385, + 7357776, + 3859551, + 2527117, + 9261550 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2020-12-15", - "completed": "2019-08-21", - "initiated": "2015-06-27", - "ministryContact": "PROHASKA LILLA", + "createdAt": "2014-02-13", + "completed": "2017-05-21", + "initiated": "2018-01-13", + "ministryContact": "RUECKER ELOISA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -51936,25 +57224,15 @@ "" ], "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false + "role": "REQUESTED BY", + "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", @@ -51962,13 +57240,13 @@ "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2023-01-10", - "completed": "2017-07-16", - "initiated": "2014-06-27", - "ministryContact": "FRITSCH LULU", + "createdAt": "2022-08-19", + "completed": "2019-05-21", + "initiated": "2015-05-01", + "ministryContact": "STRACKE MADISYN", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -51977,23 +57255,28 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false } ], "siteRegistry": false }, { - "createdAt": "2016-04-07", - "completed": "2018-07-20", - "initiated": "2015-04-25", - "ministryContact": "WILLMS ELIJAH", + "createdAt": "2017-07-10", + "completed": "2017-07-28", + "initiated": "2016-12-11", + "ministryContact": "O'KEEFE ALEEN", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -52002,57 +57285,17 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - } - ], - "siteRegistry": false - }, - { - "createdAt": "2018-09-19", - "completed": "2014-04-29", - "initiated": "2023-01-27", - "ministryContact": "HANSEN MARCOS", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - } - ], - "siteRegistry": true - }, - { - "createdAt": "2019-05-17", - "completed": "2019-11-20", - "initiated": "2015-07-11", - "ministryContact": "CHAMPLIN KAREN", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false }, @@ -52062,29 +57305,29 @@ "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false } ], "participants": [ { - "name": "IPSUM", - "endDate": "2016-07-13", - "startDate": "2020-12-20", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2020-08-21", + "startDate": "2022-08-18", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false }, { - "name": "IPSUM", - "endDate": "2019-08-08", - "startDate": "2016-03-13", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2021-08-13", + "startDate": "2020-05-06", "notes": "", "roles": [ "ORGANIZATION" @@ -52093,95 +57336,88 @@ }, { "name": "IPSUM", - "endDate": "2019-02-21", - "startDate": "2015-01-21", + "endDate": "2019-10-04", + "startDate": "2018-09-03", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": false }, { - "name": "AMET, DOLOR SIT", - "endDate": "2021-07-13", - "startDate": "2017-04-22", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2019-04-22", + "startDate": "2016-12-23", "notes": "", "roles": [ "EMPLOYEE" ], "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2018-07-09", - "startDate": "2014-01-23", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": false } ], "suspectLandUses": [ { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-03-02 (described on Site Profile dated 2016-03-02)", + "notes": "INSERTED FOR SITE PROFILE DATED 2017-10-16 (described on Site Profile dated 2017-10-16)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-02-22 (described on Site Profile dated 2018-02-22)", + "notes": "INSERTED FOR SITE PROFILE DATED 2014-10-05 (described on Site Profile dated 2014-10-05)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + } + ], + "parcelDescriptions": [ + { + "siteRegistry": false, + "dateNoted": "2017-01-09", + "parcelID": "17833", + "crownLandUsePIN": "17626", + "crownLandFileNumber": "17793", + "landDescription": "LOT 3 OF LOT 3 BLOCK 3 DISTRICT LOT 4 PLAN 5347" }, { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-09-27 (described on Site Profile dated 2017-09-27)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "dateNoted": "2017-07-01", + "parcelID": "18429", + "crownLandUsePIN": "18864", + "crownLandFileNumber": "19935", + "landDescription": "LOT 4 OF LOT 1 BLOCK 2 DISTRICT LOT 1 PLAN 9595" + }, + { + "siteRegistry": false, + "dateNoted": "2015-01-23", + "parcelID": "20365", + "crownLandUsePIN": "20905", + "crownLandFileNumber": "17158", + "landDescription": "LOT 4 OF LOT 3 BLOCK 2 DISTRICT LOT 4 PLAN 6155" } ], "siteDisclosures": [ { "siteRegistry": true, - "dateReceived": "2020-10-30", - "dateCompleted": "2022-01-05", - "dateEntered": "2023-07-17", - "dateRegistrar": "2019-05-29", - "dateLocalAuthorityReceived": "2016-01-14", - "summary": "Culpa eligendi deleniti a mollitia porro ut minus velit.", - "informationUsed": "Voluptatem harum accusantium dolorem quam quaerat debitis sed sunt.\nNulla illum consequuntur occaecati minus.\nEx aut iusto at esse fugiat perferendis officiis distinctio.\nOccaecati a tenetur exercitationem dignissimos amet temporibus earum reprehenderit saepe.", - "pastOrPresentOrders": "Rerum officia voluptate quasi assumenda error minus unde sunt nobis.", + "dateReceived": "2014-06-28", + "dateCompleted": "2018-06-09", + "dateEntered": "2023-01-28", + "dateRegistrar": "2023-03-25", + "dateLocalAuthorityReceived": "2020-11-14", + "summary": "Perferendis illo consequuntur fugit animi sed dolor occaecati quo voluptatibus.\nDelectus occaecati dolorum dolore quasi nulla.", + "informationUsed": "Facere eius perspiciatis vitae voluptas natus id quae maxime.\nOccaecati excepturi laboriosam.\nOdit sint quis.\nConsectetur ea aliquid laudantium et.\nPorro perspiciatis sint modi distinctio ut.", + "pastOrPresentOrders": "Nam ratione ratione doloribus aliquid fuga ad eveniet illo.\nVoluptatibus deleniti corrupti earum.\nMinus cumque illo est et similique doloremque totam at.", "commercialAndIndustrialPurposes": [ { "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true - } - ] - }, - { - "siteRegistry": true, - "dateReceived": "2020-10-18", - "dateCompleted": "2013-11-01", - "dateEntered": "2017-02-20", - "dateRegistrar": "2014-08-22", - "dateLocalAuthorityReceived": "2021-12-29", - "summary": "Assumenda dolor maiores voluptatem ipsam velit quis.\nDignissimos mollitia itaque omnis accusantium temporibus.\nSoluta voluptatum mollitia illum ab adipisci quisquam ex.", - "informationUsed": "Odio possimus non nulla officiis.\nDoloremque nisi tempore repellendus illum eaque.\nVoluptates hic similique atque eaque.\nQuisquam in asperiores.", - "pastOrPresentOrders": "Qui officiis officia consequuntur.", - "commercialAndIndustrialPurposes": [ - { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false }, { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true } ] @@ -52191,89 +57427,100 @@ { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "JOHNSON TERRY", - "timestamp": "2014-04-06" + "user": "SMITHAM LUCIO", + "timestamp": "2017-10-10" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "KOZEY MARQUISE", - "timestamp": "2018-01-27" + "user": "ZIEMANN REX", + "timestamp": "2014-02-25" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "ADAMS-DURGAN JERMAINE", - "timestamp": "2022-09-18" + "user": "KIRLIN BENTON", + "timestamp": "2016-05-24" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "YOST AMARA", - "timestamp": "2014-02-28" + "user": "REICHEL JANNIE", + "timestamp": "2014-06-25" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "MARVIN DELBERT", - "timestamp": "2014-08-23" + "user": "SATTERFIELD MELVINA", + "timestamp": "2019-09-22" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "CONNELLY RICO", - "timestamp": "2015-08-29" + "user": "FEEST ZAKARY", + "timestamp": "2018-08-19" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "VOLKMAN ADRIENNE", + "timestamp": "2013-11-09" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "LOWE YASMIN", + "timestamp": "2018-08-09" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "QUITZON ELROY", + "timestamp": "2019-02-07" } ], "associatedSites": [ { - "dateNoted": "2019-05-28", + "dateNoted": "2018-04-25", "notes": "", - "parcelID": "19955", - "siteID": "20007", - "siteRegistry": true + "parcelID": "20466", + "siteID": "20388", + "siteRegistry": false }, { - "dateNoted": "2016-09-10", + "dateNoted": "2021-06-25", "notes": "", - "parcelID": "16062", - "siteID": "15461", + "parcelID": "18255", + "siteID": "15420", "siteRegistry": true - }, - { - "dateNoted": "2018-12-30", - "notes": "", - "parcelID": "18208", - "siteID": "18995", - "siteRegistry": false } ] }, { - "uuid": "73bf73a5-7182-4428-b539-0a3140cba784", - "siteID": 16920, - "address": "5476 Janelle Brook", - "latitude": 49.2514, - "longitude": -122.614, - "lastUpdated": "2017-10-04", - "city": "Harrisonburg", + "uuid": "bf048b92-c8a2-4fd6-8ce2-f192a00914d8", + "siteID": 18326, + "address": "233 Rocky Radial", + "latitude": 58.7386, + "longitude": -127.0021, + "lastUpdated": "2019-01-23", + "city": "West George", "region": "Cariboo", - "victoriaFile": "26250-20/2591", + "victoriaFile": "26250-20/2039", "regionalFile": "N/A", "parcelIDs": [ - 1251596, - 160738, - 1286473, - 8427357, - 5816180 + 7195210, + 3728560, + 6202804, + 6490815, + 6959658 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2016-07-08", - "completed": "2014-02-17", - "initiated": "2021-01-09", - "ministryContact": "ERNSER QUENTIN", + "createdAt": "2015-03-22", + "completed": "2019-08-07", + "initiated": "2021-02-11", + "ministryContact": "LIND MARILIE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -52284,36 +57531,36 @@ { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2014-12-29", - "completed": "2013-12-04", - "initiated": "2023-09-02", - "ministryContact": "HARVEY ALBERT", + "createdAt": "2017-06-19", + "completed": "2013-10-15", + "initiated": "2014-05-08", + "ministryContact": "ERDMAN KIANNA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -52321,28 +57568,23 @@ "" ], "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true } @@ -52350,10 +57592,10 @@ "siteRegistry": true }, { - "createdAt": "2021-09-01", - "completed": "2016-10-22", - "initiated": "2018-05-25", - "ministryContact": "TILLMAN SEAN", + "createdAt": "2017-03-27", + "completed": "2021-06-10", + "initiated": "2015-10-25", + "ministryContact": "GIBSON TYREEK", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -52362,23 +57604,23 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2016-10-06", - "completed": "2022-11-13", - "initiated": "2014-08-17", - "ministryContact": "FRANEY CRYSTEL", + "createdAt": "2022-06-22", + "completed": "2019-08-07", + "initiated": "2020-08-31", + "ministryContact": "GUSIKOWSKI SOLON", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -52391,20 +57633,10 @@ "role": "SUBMITTED BY", "siteRegistry": true }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true } ], "siteRegistry": false @@ -52412,102 +57644,148 @@ ], "participants": [ { - "name": "AMET, DOLOR SIT", - "endDate": "2014-03-04", - "startDate": "2020-12-02", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2019-01-06", + "startDate": "2019-06-04", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "name": "IPSUM", + "endDate": "2023-06-15", + "startDate": "2017-03-12", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": false + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2023-03-20", + "startDate": "2020-06-29", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true }, { "name": "IPSUM", - "endDate": "2022-03-06", - "startDate": "2022-11-04", + "endDate": "2018-02-13", + "startDate": "2021-11-23", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2021-05-26", + "startDate": "2021-08-23", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true } ], "suspectLandUses": [ { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-04-02 (described on Site Profile dated 2014-04-02)", + "notes": "INSERTED FOR SITE PROFILE DATED 2014-09-29 (described on Site Profile dated 2014-09-29)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-07-14 (described on Site Profile dated 2014-07-14)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2016-05-29 (described on Site Profile dated 2016-05-29)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2023-09-07 (described on Site Profile dated 2023-09-07)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2020-09-22 (described on Site Profile dated 2020-09-22)", + "notes": "INSERTED FOR SITE PROFILE DATED 2020-05-02 (described on Site Profile dated 2020-05-02)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + } + ], + "parcelDescriptions": [ + { + "siteRegistry": false, + "dateNoted": "2018-05-18", + "parcelID": "17756", + "crownLandUsePIN": "16031", + "crownLandFileNumber": "16905", + "landDescription": "LOT 4 OF LOT 2 BLOCK 5 DISTRICT LOT 3 PLAN 3181" + }, + { + "siteRegistry": true, + "dateNoted": "2021-07-09", + "parcelID": "16406", + "crownLandUsePIN": "16668", + "crownLandFileNumber": "19098", + "landDescription": "LOT 3 OF LOT 5 BLOCK 5 DISTRICT LOT 1 PLAN 6784" }, { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-01-26 (described on Site Profile dated 2015-01-26)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "dateNoted": "2018-11-17", + "parcelID": "17118", + "crownLandUsePIN": "19272", + "crownLandFileNumber": "18240", + "landDescription": "LOT 4 OF LOT 4 BLOCK 1 DISTRICT LOT 4 PLAN 4046" } ], "siteDisclosures": [ { - "siteRegistry": true, - "dateReceived": "2015-05-17", - "dateCompleted": "2014-06-14", - "dateEntered": "2020-10-05", - "dateRegistrar": "2021-02-21", - "dateLocalAuthorityReceived": "2015-03-02", - "summary": "Rerum nihil atque eligendi praesentium eveniet.", - "informationUsed": "Quis assumenda atque minima a maiores incidunt minus perspiciatis.\nBlanditiis esse soluta quos quasi esse.\nPariatur distinctio sunt nulla sapiente unde incidunt cum iusto corporis.\nEnim omnis quaerat eum temporibus alias iusto sequi fugit ut.\nUllam ducimus earum illum minus est repellendus quas eos.", - "pastOrPresentOrders": "Sequi libero dolor.\nDoloribus similique ut dolore adipisci sapiente iusto autem reprehenderit deserunt.", + "siteRegistry": false, + "dateReceived": "2014-04-02", + "dateCompleted": "2019-11-20", + "dateEntered": "2015-01-25", + "dateRegistrar": "2020-11-03", + "dateLocalAuthorityReceived": "2018-10-07", + "summary": "Natus iusto voluptate adipisci ipsam.\nMinus voluptates qui ratione doloremque facere dolores excepturi.", + "informationUsed": "Est inventore blanditiis nostrum aliquam ab quibusdam officiis.\nQuaerat ipsam sint reiciendis.\nDeserunt totam consequatur praesentium harum aspernatur minus illo reprehenderit qui.\nRepellendus delectus magnam voluptate pariatur temporibus assumenda tempora dolorem.", + "pastOrPresentOrders": "Iste assumenda dolore fuga commodi culpa.\nLibero quos animi eum voluptate impedit consequuntur.\nTempore minima quam cumque.", "commercialAndIndustrialPurposes": [ { "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false + "siteRegistry": true }, { "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false - }, - { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true } ] }, { - "siteRegistry": true, - "dateReceived": "2021-07-15", - "dateCompleted": "2023-10-02", - "dateEntered": "2022-11-28", - "dateRegistrar": "2014-05-12", - "dateLocalAuthorityReceived": "2022-01-19", - "summary": "Ipsam inventore ducimus qui reiciendis.\nEa dolore neque distinctio aperiam repudiandae et facilis voluptatum provident.", - "informationUsed": "Temporibus soluta architecto vitae rerum est sequi.\nError cupiditate maiores veritatis nulla consequuntur praesentium aperiam deserunt.\nAliquid quidem rerum nam porro tenetur.\nSit tempore dicta aspernatur cumque asperiores.", - "pastOrPresentOrders": "Magni doloremque eligendi quod ad fugit tempore accusamus.", + "siteRegistry": false, + "dateReceived": "2019-02-16", + "dateCompleted": "2018-05-22", + "dateEntered": "2016-07-17", + "dateRegistrar": "2020-01-17", + "dateLocalAuthorityReceived": "2020-10-05", + "summary": "In quam eos iusto inventore natus.\nDoloremque dolorem corporis consequuntur dolor cum quisquam.\nLibero quo excepturi repellat ipsum maxime.", + "informationUsed": "Amet rerum vitae quia placeat exercitationem reiciendis quia.\nId impedit nostrum ipsam sequi.\nEa ab repellendus explicabo impedit maiores nesciunt eius aliquid.", + "pastOrPresentOrders": "Quisquam enim hic iusto incidunt facere tenetur.", "commercialAndIndustrialPurposes": [ { "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, - { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true - }, { "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false } ] } @@ -52516,76 +57794,113 @@ { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "VANDERVORT MADELYN", - "timestamp": "2023-10-03" + "user": "BAHRINGER HOPE", + "timestamp": "2018-04-16" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "AUFDERHAR GORDON", - "timestamp": "2016-06-20" + "user": "HEGMANN ALBA", + "timestamp": "2022-01-26" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "ROLFSON JOAN", - "timestamp": "2023-06-23" + "user": "BREKKE BRADFORD", + "timestamp": "2019-07-28" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "THIEL CONSUELO", + "timestamp": "2014-05-20" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "DIBBERT ERIBERTO", + "timestamp": "2020-11-09" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "HELLER NORA", + "timestamp": "2018-09-29" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "OLSON BRADLY", + "timestamp": "2020-04-16" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "ZULAUF ELECTA", + "timestamp": "2021-07-15" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "DICKINSON ANTWON", - "timestamp": "2020-12-16" + "user": "KUTCH MARTINA", + "timestamp": "2019-01-05" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "SCHAEFER KACI", - "timestamp": "2023-08-15" + "user": "BASHIRIAN ISSAC", + "timestamp": "2016-08-25" } ], "associatedSites": [ { - "dateNoted": "2019-05-29", + "dateNoted": "2016-04-17", + "notes": "", + "parcelID": "19766", + "siteID": "20984", + "siteRegistry": true + }, + { + "dateNoted": "2021-03-10", "notes": "", - "parcelID": "20527", - "siteID": "20586", + "parcelID": "19940", + "siteID": "15630", "siteRegistry": false }, { - "dateNoted": "2015-02-20", + "dateNoted": "2019-04-07", "notes": "", - "parcelID": "15534", - "siteID": "15958", - "siteRegistry": true + "parcelID": "20694", + "siteID": "18372", + "siteRegistry": false } ] }, { - "uuid": "21e6131d-7d4f-4211-834c-f78bb0c2f51d", - "siteID": 16746, - "address": "11522 Tanner Radial", - "latitude": 52.83, - "longitude": -135.4981, - "lastUpdated": "2022-06-03", - "city": "North Suzannestad", - "region": "Thompson-Okanagan", - "victoriaFile": "26250-20/10571", + "uuid": "a1a100bf-cd71-462d-9bf4-a3fb647c79bf", + "siteID": 20962, + "address": "135 Hollie Estate", + "latitude": 50.7816, + "longitude": -129.0344, + "lastUpdated": "2019-10-02", + "city": "Livermore", + "region": "Cariboo", + "victoriaFile": "26250-20/8543", "regionalFile": "N/A", "parcelIDs": [ - 163096, - 3294688, - 7504458, - 3758936, - 5486059 + 1955576, + 6534110, + 7871656, + 5996269, + 9508035 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2015-06-09", - "completed": "2021-06-11", - "initiated": "2023-05-17", - "ministryContact": "HESSEL GLADYS", + "createdAt": "2014-05-05", + "completed": "2020-09-29", + "initiated": "2020-04-21", + "ministryContact": "ANDERSON BREANNE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -52595,18 +57910,18 @@ "notationParticipants": [ { "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true + "role": "REQUESTED BY", + "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false + "role": "REQUESTED BY", + "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", @@ -52614,18 +57929,18 @@ "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", "siteRegistry": true } ], "siteRegistry": true }, { - "createdAt": "2020-05-11", - "completed": "2013-12-18", - "initiated": "2022-04-15", - "ministryContact": "REMPEL LILLY", + "createdAt": "2015-02-15", + "completed": "2016-05-25", + "initiated": "2014-03-07", + "ministryContact": "WALSH CARLOTTA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -52635,19 +57950,9 @@ "notationParticipants": [ { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", @@ -52657,10 +57962,10 @@ "siteRegistry": true }, { - "createdAt": "2015-03-25", - "completed": "2022-09-26", - "initiated": "2022-12-29", - "ministryContact": "HERZOG GERALDINE", + "createdAt": "2019-09-17", + "completed": "2021-12-09", + "initiated": "2016-01-05", + "ministryContact": "HAGENES SHAD", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -52670,6 +57975,21 @@ "notationParticipants": [ { "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false }, @@ -52682,10 +58002,10 @@ "siteRegistry": false }, { - "createdAt": "2017-11-16", - "completed": "2020-04-23", - "initiated": "2020-09-13", - "ministryContact": "MCCLURE OTIS", + "createdAt": "2017-08-16", + "completed": "2022-06-06", + "initiated": "2022-10-23", + "ministryContact": "DENESIK RASHEED", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -52695,23 +58015,33 @@ "notationParticipants": [ { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true + "role": "SUBMITTED BY", + "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true } ], "participants": [ { - "name": "AMET, DOLOR SIT", - "endDate": "2020-01-20", - "startDate": "2023-01-23", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2020-01-29", + "startDate": "2015-10-10", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "name": "IPSUM", + "endDate": "2020-07-25", + "startDate": "2023-09-03", "notes": "", "roles": [ "ORGANIZATION" @@ -52720,205 +58050,194 @@ }, { "name": "SHELL CANADA PRODUCTS", - "endDate": "2020-06-29", - "startDate": "2020-01-05", + "endDate": "2022-07-06", + "startDate": "2015-07-04", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2014-11-07", + "startDate": "2022-08-01", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false } ], "suspectLandUses": [ { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2020-12-24 (described on Site Profile dated 2020-12-24)", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2016-05-22 (described on Site Profile dated 2016-05-22)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-01-17 (described on Site Profile dated 2022-01-17)", + "notes": "INSERTED FOR SITE PROFILE DATED 2015-05-26 (described on Site Profile dated 2015-05-26)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-09-20 (described on Site Profile dated 2017-09-20)", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2017-07-31 (described on Site Profile dated 2017-07-31)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2022-03-01 (described on Site Profile dated 2022-03-01)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], + "parcelDescriptions": [ + { + "siteRegistry": true, + "dateNoted": "2018-09-11", + "parcelID": "20226", + "crownLandUsePIN": "15650", + "crownLandFileNumber": "18179", + "landDescription": "LOT 3 OF LOT 1 BLOCK 2 DISTRICT LOT 5 PLAN 5590" + }, + { + "siteRegistry": true, + "dateNoted": "2018-03-17", + "parcelID": "17750", + "crownLandUsePIN": "16380", + "crownLandFileNumber": "18365", + "landDescription": "LOT 4 OF LOT 5 BLOCK 4 DISTRICT LOT 3 PLAN 6356" + }, + { + "siteRegistry": true, + "dateNoted": "2015-06-27", + "parcelID": "16137", + "crownLandUsePIN": "16448", + "crownLandFileNumber": "15292", + "landDescription": "LOT 2 OF LOT 5 BLOCK 5 DISTRICT LOT 2 PLAN 4036" + } + ], "siteDisclosures": [ { "siteRegistry": false, - "dateReceived": "2018-03-11", - "dateCompleted": "2015-08-24", - "dateEntered": "2013-11-06", - "dateRegistrar": "2023-02-18", - "dateLocalAuthorityReceived": "2015-07-17", - "summary": "Consequuntur possimus vitae molestiae dignissimos assumenda eius.\nTenetur tempora exercitationem deleniti voluptatibus laboriosam natus.\nVoluptatem reprehenderit illo sint magnam repudiandae occaecati repudiandae pariatur.", - "informationUsed": "Minima odio repudiandae velit molestiae quae maiores.\nDebitis facilis aspernatur dolorem placeat maiores dolor vel repudiandae.\nSint doloribus explicabo magni.\nEa quisquam sapiente reprehenderit blanditiis.\nDistinctio neque tenetur fugit at praesentium.", - "pastOrPresentOrders": "Accusamus fugiat reprehenderit laborum iusto unde autem.", + "dateReceived": "2019-04-20", + "dateCompleted": "2014-12-15", + "dateEntered": "2017-03-18", + "dateRegistrar": "2018-02-02", + "dateLocalAuthorityReceived": "2020-10-30", + "summary": "Harum assumenda nihil nesciunt ullam tenetur ducimus cum aut at.", + "informationUsed": "Dolorum cupiditate magnam reprehenderit veritatis temporibus esse deleniti nihil recusandae.\nEius ut quia odio ipsa culpa ea neque.\nEos dolores sequi hic eos expedita.\nOfficia inventore porro iste.\nHic quam officiis repellat aperiam corrupti reprehenderit.", + "pastOrPresentOrders": "Asperiores minima corrupti illo.\nAccusamus tempora voluptates tenetur deserunt fugit dolore dolores quo.\nInventore iure mollitia.", "commercialAndIndustrialPurposes": [ { "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false - }, - { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false - }, - { - "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, - { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false - } - ] - }, - { - "siteRegistry": true, - "dateReceived": "2015-06-24", - "dateCompleted": "2017-10-30", - "dateEntered": "2014-07-10", - "dateRegistrar": "2017-07-26", - "dateLocalAuthorityReceived": "2014-08-08", - "summary": "Aut occaecati non inventore numquam nostrum nihil quod adipisci repellat.\nIn consequuntur atque enim architecto nemo eos quasi earum.", - "informationUsed": "Eum error odit ratione odio quam voluptate praesentium maiores ea.\nQuidem voluptatibus minima libero ex.\nInventore porro dolorem asperiores voluptate maxime dolores officiis odit tenetur.\nQuae itaque dolore aliquam consequuntur vero repudiandae id.\nReiciendis a doloremque doloribus.", - "pastOrPresentOrders": "Possimus quisquam minima.\nProvident reprehenderit odit consequatur omnis incidunt quam vitae quasi.", - "commercialAndIndustrialPurposes": [ { "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, - { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false - }, - { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false - }, { "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false } ] } ], "activityLog": [ { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "BAUCH VELMA", - "timestamp": "2015-03-06" - }, - { - "siteRegistry": true, + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "MOHR DEVYN", - "timestamp": "2018-08-05" + "user": "ROBERTS JOSEFA", + "timestamp": "2023-02-16" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "SMITHAM ELISABETH", - "timestamp": "2021-05-23" + "user": "GOYETTE TOY", + "timestamp": "2016-08-06" }, { - "siteRegistry": true, + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "MORISSETTE JOHNPAUL", - "timestamp": "2020-05-27" + "user": "DAUGHERTY ADELIA", + "timestamp": "2020-03-27" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "WEST WADE", - "timestamp": "2014-03-03" - }, - { - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "POWLOWSKI LUCILE", - "timestamp": "2018-05-20" + "user": "CARTWRIGHT BETH", + "timestamp": "2014-07-20" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "BAILEY RODERICK", - "timestamp": "2016-10-27" + "user": "O'KON KELSI", + "timestamp": "2018-09-05" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "GRAHAM MARGE", - "timestamp": "2014-01-26" + "user": "SWIFT PANSY", + "timestamp": "2017-12-19" }, { - "siteRegistry": true, + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "DECKOW MINERVA", - "timestamp": "2023-04-10" + "user": "KOHLER ERWIN", + "timestamp": "2018-04-09" } ], "associatedSites": [ { - "dateNoted": "2017-06-29", + "dateNoted": "2018-01-18", "notes": "", - "parcelID": "16714", - "siteID": "16220", - "siteRegistry": false + "parcelID": "19778", + "siteID": "16064", + "siteRegistry": true }, { - "dateNoted": "2017-03-31", + "dateNoted": "2020-04-30", "notes": "", - "parcelID": "17033", - "siteID": "17294", + "parcelID": "18078", + "siteID": "17959", "siteRegistry": false - }, - { - "dateNoted": "2014-04-11", - "notes": "", - "parcelID": "15244", - "siteID": "20734", - "siteRegistry": true } ] }, { - "uuid": "4e5f1609-cd37-4e75-ad79-9502eac9487e", - "siteID": 16916, - "address": "61824 Amber Creek", - "latitude": 56.805, - "longitude": -132.4429, - "lastUpdated": "2019-02-17", - "city": "Breitenbergworth", - "region": "Cariboo", - "victoriaFile": "26250-20/11467", + "uuid": "4290a1a4-3b99-4870-9973-2fba4e29d1a8", + "siteID": 19427, + "address": "1801 Watsica Drives", + "latitude": 54.7778, + "longitude": -127.7466, + "lastUpdated": "2014-04-21", + "city": "Bayerfurt", + "region": "Vancouver Island/Coast", + "victoriaFile": "26250-20/16108", "regionalFile": "N/A", "parcelIDs": [ - 5882481, - 728890, - 4665137, - 3298561, - 1898820 + 7674633, + 928500, + 2502722, + 5221292, + 7239077 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2016-01-26", - "completed": "2014-06-30", - "initiated": "2022-04-25", - "ministryContact": "FRANEY BRANDY", + "createdAt": "2017-10-02", + "completed": "2021-12-16", + "initiated": "2016-12-25", + "ministryContact": "DOUGLAS SIDNEY", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -52928,16 +58247,6 @@ "notationParticipants": [ { "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true }, @@ -52945,20 +58254,15 @@ "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true } ], "siteRegistry": true }, { - "createdAt": "2020-07-30", - "completed": "2022-05-11", - "initiated": "2015-09-20", - "ministryContact": "CORMIER SHANIA", + "createdAt": "2018-05-20", + "completed": "2019-10-27", + "initiated": "2017-10-03", + "ministryContact": "PAGAC ZACKERY", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -52969,61 +58273,36 @@ { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - } - ], - "siteRegistry": false - }, - { - "createdAt": "2018-12-25", - "completed": "2014-01-01", - "initiated": "2023-03-05", - "ministryContact": "GUSIKOWSKI CARMEL", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false + "role": "SUBMITTED BY", + "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2016-09-22", - "completed": "2019-12-06", - "initiated": "2016-09-08", - "ministryContact": "CHRISTIANSEN GUS", + "createdAt": "2021-04-20", + "completed": "2017-01-07", + "initiated": "2020-02-20", + "ministryContact": "MCDERMOTT PASQUALE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -53034,33 +58313,13 @@ { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - } - ], - "siteRegistry": false - }, - { - "createdAt": "2014-01-11", - "completed": "2016-05-01", - "initiated": "2021-07-31", - "ministryContact": "ERDMAN JUDAH", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", @@ -53070,11 +58329,6 @@ "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false } ], "siteRegistry": false @@ -53082,19 +58336,19 @@ ], "participants": [ { - "name": "AMET, DOLOR SIT", - "endDate": "2019-06-15", - "startDate": "2020-02-27", + "name": "IPSUM", + "endDate": "2022-11-24", + "startDate": "2015-03-09", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": true + "siteRegistry": false }, { - "name": "AMET, DOLOR SIT", - "endDate": "2014-10-23", - "startDate": "2021-08-05", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2019-07-31", + "startDate": "2020-03-16", "notes": "", "roles": [ "EMPLOYEE" @@ -53102,9 +58356,9 @@ "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2018-01-21", - "startDate": "2019-05-04", + "name": "IPSUM", + "endDate": "2023-01-25", + "startDate": "2017-11-17", "notes": "", "roles": [ "ORGANIZATION" @@ -53113,18 +58367,8 @@ }, { "name": "SHELL CANADA PRODUCTS", - "endDate": "2018-01-20", - "startDate": "2015-10-29", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2022-01-21", - "startDate": "2017-12-25", + "endDate": "2017-12-08", + "startDate": "2020-10-18", "notes": "", "roles": [ "ORGANIZATION" @@ -53134,70 +58378,79 @@ ], "suspectLandUses": [ { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-02-20 (described on Site Profile dated 2014-02-20)", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2015-09-25 (described on Site Profile dated 2015-09-25)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-09-13 (described on Site Profile dated 2022-09-13)", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2017-07-21 (described on Site Profile dated 2017-07-21)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], - "siteDisclosures": [ + "parcelDescriptions": [ { "siteRegistry": false, - "dateReceived": "2017-01-08", - "dateCompleted": "2016-03-14", - "dateEntered": "2022-06-02", - "dateRegistrar": "2019-04-04", - "dateLocalAuthorityReceived": "2016-02-05", - "summary": "Nostrum ipsam eum ad non quisquam.\nVeritatis soluta quo sapiente.", - "informationUsed": "Voluptatem ea beatae veniam rem omnis.\nDelectus vitae ipsam ad libero excepturi soluta mollitia.\nAsperiores reiciendis praesentium optio quaerat.\nMolestias dolores quod corrupti recusandae iusto.", - "pastOrPresentOrders": "Dolores cupiditate quod ad sed animi dolore similique doloribus.\nCupiditate voluptatum id nobis ab.", - "commercialAndIndustrialPurposes": [ - { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true - }, - { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true - } - ] + "dateNoted": "2013-11-16", + "parcelID": "20248", + "crownLandUsePIN": "18713", + "crownLandFileNumber": "17423", + "landDescription": "LOT 2 OF LOT 4 BLOCK 3 DISTRICT LOT 4 PLAN 6609" + }, + { + "siteRegistry": false, + "dateNoted": "2015-07-04", + "parcelID": "19331", + "crownLandUsePIN": "19725", + "crownLandFileNumber": "17137", + "landDescription": "LOT 4 OF LOT 4 BLOCK 5 DISTRICT LOT 3 PLAN 4622" + }, + { + "siteRegistry": false, + "dateNoted": "2019-03-20", + "parcelID": "20585", + "crownLandUsePIN": "20843", + "crownLandFileNumber": "17639", + "landDescription": "LOT 1 OF LOT 3 BLOCK 5 DISTRICT LOT 2 PLAN 3440" + }, + { + "siteRegistry": false, + "dateNoted": "2022-06-25", + "parcelID": "20814", + "crownLandUsePIN": "18572", + "crownLandFileNumber": "16573", + "landDescription": "LOT 1 OF LOT 3 BLOCK 5 DISTRICT LOT 3 PLAN 8808" }, { "siteRegistry": true, - "dateReceived": "2015-05-29", - "dateCompleted": "2022-07-20", - "dateEntered": "2019-02-02", - "dateRegistrar": "2020-07-26", - "dateLocalAuthorityReceived": "2014-11-30", - "summary": "Quidem ex consectetur dolores provident perspiciatis similique.\nHic accusamus a molestiae eveniet ipsum cupiditate dolores iusto.", - "informationUsed": "Aspernatur a ipsum voluptatibus ea magnam.\nQuibusdam enim laudantium voluptas nam.\nNisi culpa natus modi iste corporis tempore molestiae alias.", - "pastOrPresentOrders": "Dolor voluptas repudiandae blanditiis.\nQuaerat error ex ex maxime possimus nulla corrupti officia.\nIusto officiis fugiat ex qui quaerat velit voluptate natus.", + "dateNoted": "2021-08-24", + "parcelID": "20391", + "crownLandUsePIN": "20903", + "crownLandFileNumber": "18847", + "landDescription": "LOT 5 OF LOT 4 BLOCK 4 DISTRICT LOT 5 PLAN 7841" + } + ], + "siteDisclosures": [ + { + "siteRegistry": true, + "dateReceived": "2019-05-15", + "dateCompleted": "2018-08-08", + "dateEntered": "2020-03-21", + "dateRegistrar": "2016-12-31", + "dateLocalAuthorityReceived": "2021-04-05", + "summary": "Molestias deleniti consequuntur consequuntur cupiditate maiores dolorem occaecati sequi.", + "informationUsed": "Dolorum omnis temporibus beatae modi magnam quam et eligendi.\nUnde vel voluptatem velit.\nCum rem quo.\nItaque autem exercitationem ducimus ut enim fuga iure sit itaque.\nRepellat excepturi nemo vero suscipit omnis quo nulla.", + "pastOrPresentOrders": "Totam ullam atque.\nSunt nisi ut doloribus cumque.\nVero est cumque sapiente.", "commercialAndIndustrialPurposes": [ - { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false - }, { "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true + "siteRegistry": false }, { "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true - }, - { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true } ] } @@ -53206,81 +58459,106 @@ { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "SHIELDS ROGERS", - "timestamp": "2018-09-08" + "user": "NIENOW BETTY", + "timestamp": "2019-11-08" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "FRITSCH HADLEY", - "timestamp": "2014-09-12" + "user": "CRONA GREEN", + "timestamp": "2014-03-27" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "KOZEY RASHAWN", - "timestamp": "2016-06-21" + "user": "WIZA ILIANA", + "timestamp": "2016-05-02" }, { - "siteRegistry": true, + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "ZEMLAK JAYSON", + "timestamp": "2014-07-11" + }, + { + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "HIRTHE BLAISE", - "timestamp": "2016-08-12" + "user": "HAUCK TERESA", + "timestamp": "2017-08-11" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "GREENFELDER DANIELLA", - "timestamp": "2020-06-26" + "user": "HOEGER CHANCE", + "timestamp": "2017-12-29" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "RUTHERFORD MARIAN", + "timestamp": "2022-01-12" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "CHAMPLIN PASCALE", + "timestamp": "2013-10-14" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "PFANNERSTILL AUGUSTA", - "timestamp": "2017-08-10" + "user": "PRICE KAYDEN", + "timestamp": "2015-06-25" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "NOLAN OSWALDO", - "timestamp": "2022-11-09" + "user": "JASKOLSKI THERESE", + "timestamp": "2020-05-07" } ], "associatedSites": [ { - "dateNoted": "2018-09-13", + "dateNoted": "2015-01-25", "notes": "", - "parcelID": "20402", - "siteID": "16320", + "parcelID": "16784", + "siteID": "16933", + "siteRegistry": false + }, + { + "dateNoted": "2021-11-20", + "notes": "", + "parcelID": "17200", + "siteID": "18478", "siteRegistry": true } ] }, { - "uuid": "99a257e1-b59b-4a7a-a689-2599ad6c837f", - "siteID": 20609, - "address": "1124 Rice Rest", - "latitude": 48.6297, - "longitude": -126.3636, - "lastUpdated": "2019-11-01", - "city": "Port Oceane", - "region": "Mainland/Southwest", - "victoriaFile": "26250-20/8688", + "uuid": "badd3c7d-ec07-4b68-8b39-bfb14f1041ba", + "siteID": 20787, + "address": "78142 Kuvalis Greens", + "latitude": 49.6525, + "longitude": -126.7615, + "lastUpdated": "2019-09-10", + "city": "Greenholtmouth", + "region": "Cariboo", + "victoriaFile": "26250-20/16005", "regionalFile": "N/A", "parcelIDs": [ - 8215963, - 9683853, - 4943530, - 4780698, - 4666139 + 5096182, + 8289555, + 6349312, + 1036068, + 7223518 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2017-08-15", - "completed": "2016-11-30", - "initiated": "2019-05-30", - "ministryContact": "STOLTENBERG JAEDEN", + "createdAt": "2017-02-08", + "completed": "2019-07-13", + "initiated": "2017-10-04", + "ministryContact": "GRAHAM GUIDO", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -53290,27 +58568,37 @@ "notationParticipants": [ { "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2022-05-13", - "completed": "2021-09-16", - "initiated": "2016-08-10", - "ministryContact": "STOLTENBERG-GLEASON ALIZA", + "createdAt": "2017-08-25", + "completed": "2019-02-10", + "initiated": "2015-07-02", + "ministryContact": "HEGMANN STEPHANY", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -53320,18 +58608,38 @@ "notationParticipants": [ { "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "createdAt": "2015-12-30", + "completed": "2013-12-12", + "initiated": "2021-12-01", + "ministryContact": "QUIGLEY ALFORD", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", @@ -53341,7 +58649,7 @@ { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false } ], "siteRegistry": false @@ -53349,19 +58657,29 @@ ], "participants": [ { - "name": "AMET, DOLOR SIT", - "endDate": "2018-03-04", - "startDate": "2021-11-18", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2020-11-14", + "startDate": "2014-02-05", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2018-10-13", - "startDate": "2023-04-28", + "name": "IPSUM", + "endDate": "2022-03-27", + "startDate": "2021-01-16", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "name": "IPSUM", + "endDate": "2021-10-16", + "startDate": "2018-08-27", "notes": "", "roles": [ "ORGANIZATION" @@ -53369,70 +58687,106 @@ "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2023-06-22", - "startDate": "2023-01-13", + "name": "IPSUM", + "endDate": "2021-11-05", + "startDate": "2019-11-18", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", - "endDate": "2019-11-08", - "startDate": "2022-10-31", + "endDate": "2016-04-01", + "startDate": "2022-11-09", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": true + "siteRegistry": false } ], "suspectLandUses": [ { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2023-10-05 (described on Site Profile dated 2023-10-05)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "notes": "INSERTED FOR SITE PROFILE DATED 2019-06-11 (described on Site Profile dated 2019-06-11)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-12-27 (described on Site Profile dated 2014-12-27)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "notes": "INSERTED FOR SITE PROFILE DATED 2016-07-22 (described on Site Profile dated 2016-07-22)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-03-16 (described on Site Profile dated 2022-03-16)", + "notes": "INSERTED FOR SITE PROFILE DATED 2020-07-23 (described on Site Profile dated 2020-07-23)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" - }, + } + ], + "parcelDescriptions": [ { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-10-05 (described on Site Profile dated 2019-10-05)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "siteRegistry": true, + "dateNoted": "2014-03-06", + "parcelID": "16288", + "crownLandUsePIN": "18498", + "crownLandFileNumber": "17565", + "landDescription": "LOT 5 OF LOT 3 BLOCK 5 DISTRICT LOT 4 PLAN 4903" }, { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2023-05-10 (described on Site Profile dated 2023-05-10)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "dateNoted": "2021-02-09", + "parcelID": "15971", + "crownLandUsePIN": "19649", + "crownLandFileNumber": "19473", + "landDescription": "LOT 2 OF LOT 5 BLOCK 1 DISTRICT LOT 3 PLAN 5875" } ], "siteDisclosures": [ { - "siteRegistry": true, - "dateReceived": "2022-05-04", - "dateCompleted": "2016-12-10", - "dateEntered": "2018-04-24", - "dateRegistrar": "2016-01-30", - "dateLocalAuthorityReceived": "2016-12-27", - "summary": "Temporibus nesciunt quae quos ducimus ducimus consequatur unde.\nId soluta reiciendis vitae culpa neque sint consequatur asperiores maxime.\nSapiente voluptatibus sapiente rerum culpa provident sed.", - "informationUsed": "Fuga debitis quaerat expedita impedit aperiam odit.\nIure totam quisquam.\nAut voluptatem nesciunt exercitationem porro totam explicabo eum tenetur.", - "pastOrPresentOrders": "Sit a provident.\nRem non optio odio ullam optio nisi laboriosam cum.\nLaboriosam quod consequatur a ex omnis veritatis nihil praesentium.", + "siteRegistry": false, + "dateReceived": "2014-09-17", + "dateCompleted": "2014-09-27", + "dateEntered": "2023-01-04", + "dateRegistrar": "2019-09-26", + "dateLocalAuthorityReceived": "2017-09-11", + "summary": "Eius amet dolore adipisci facere placeat.\nPorro ea quis nulla expedita est.", + "informationUsed": "Accusantium dignissimos doloribus similique possimus vitae rem blanditiis nostrum.\nMinus ex dolorum dolorem placeat.\nExpedita quo sequi ab mollitia earum adipisci temporibus cumque fuga.", + "pastOrPresentOrders": "Architecto odio nihil necessitatibus.\nBeatae iure nostrum.", "commercialAndIndustrialPurposes": [ { "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + } + ] + }, + { + "siteRegistry": true, + "dateReceived": "2018-04-06", + "dateCompleted": "2017-02-20", + "dateEntered": "2022-10-27", + "dateRegistrar": "2016-11-19", + "dateLocalAuthorityReceived": "2022-06-22", + "summary": "Iusto distinctio cum rem fugit deleniti praesentium.\nConsectetur occaecati tempore dolore.\nIpsam ipsam beatae veniam soluta voluptatem ab.", + "informationUsed": "Praesentium quia tenetur dignissimos ad autem.\nQuam deleniti suscipit.\nDoloribus repellat veritatis reiciendis libero id voluptatum dolor sit repudiandae.", + "pastOrPresentOrders": "Magni repellendus fugiat doloribus et id.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, { "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", @@ -53442,109 +58796,86 @@ } ], "activityLog": [ - { - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "HOEGER MAYBELLE", - "timestamp": "2022-02-14" - }, - { - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "YOST CALI", - "timestamp": "2020-01-13" - }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "GREENFELDER LILIAN", - "timestamp": "2016-11-20" + "user": "GULGOWSKI LUTHER", + "timestamp": "2015-11-20" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "FRANEY OLIVER", - "timestamp": "2018-02-20" + "user": "ANKUNDING MOSE", + "timestamp": "2016-08-22" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "NIENOW SELINA", - "timestamp": "2020-01-27" - }, - { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "MANN CESAR", - "timestamp": "2015-02-24" - }, - { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "HARVEY-BERGE KEITH", - "timestamp": "2020-11-15" + "user": "ROBEL KESHAWN", + "timestamp": "2014-10-06" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "RAU JENSEN", - "timestamp": "2015-06-14" + "user": "DURGAN JANAE", + "timestamp": "2014-05-15" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "BLANDA ADRIENNE", - "timestamp": "2020-06-15" - }, - { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "ONDRICKA WILBURN", - "timestamp": "2016-11-09" + "user": "WEHNER LOIS", + "timestamp": "2018-06-19" } ], "associatedSites": [ { - "dateNoted": "2016-11-27", + "dateNoted": "2022-09-20", "notes": "", - "parcelID": "20073", - "siteID": "18598", + "parcelID": "17939", + "siteID": "17606", "siteRegistry": true }, { - "dateNoted": "2023-09-13", + "dateNoted": "2016-05-22", "notes": "", - "parcelID": "20096", - "siteID": "20571", - "siteRegistry": false + "parcelID": "18621", + "siteID": "17362", + "siteRegistry": true + }, + { + "dateNoted": "2023-03-12", + "notes": "", + "parcelID": "15628", + "siteID": "20992", + "siteRegistry": true } ] }, { - "uuid": "26f713fb-07bc-4f68-aeb4-1081f9da0f78", - "siteID": 19039, - "address": "79391 Hipolito Villages", - "latitude": 52.9087, - "longitude": -120.8511, - "lastUpdated": "2016-08-23", - "city": "Wichita", - "region": "Kootenay", - "victoriaFile": "26250-20/2367", + "uuid": "8edde948-92f2-4982-94f6-f93d35e93c6a", + "siteID": 18040, + "address": "623 Haag Highway", + "latitude": 51.8755, + "longitude": -124.9462, + "lastUpdated": "2020-08-14", + "city": "Normaland", + "region": "Mainland/Southwest", + "victoriaFile": "26250-20/8921", "regionalFile": "N/A", "parcelIDs": [ - 7976520, - 3581320, - 992740, - 7154274, - 9964308 + 3306504, + 2519988, + 8376366, + 7667881, + 9386080 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2018-09-24", - "completed": "2016-07-16", - "initiated": "2022-02-03", - "ministryContact": "MERTZ TRYSTAN", + "createdAt": "2022-06-21", + "completed": "2022-05-26", + "initiated": "2021-07-18", + "ministryContact": "KIEHN ALBERTHA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -53553,10 +58884,40 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "createdAt": "2022-07-21", + "completed": "2022-08-06", + "initiated": "2017-11-29", + "ministryContact": "STIEDEMANN SYLVIA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", @@ -53568,9 +58929,49 @@ "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "createdAt": "2020-09-19", + "completed": "2014-08-10", + "initiated": "2019-06-18", + "ministryContact": "SCHMIDT ASTRID", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", @@ -53581,10 +58982,10 @@ "siteRegistry": false }, { - "createdAt": "2014-08-27", - "completed": "2021-06-06", - "initiated": "2022-03-24", - "ministryContact": "O'CONNER ELIEZER", + "createdAt": "2019-05-16", + "completed": "2023-03-17", + "initiated": "2020-08-29", + "ministryContact": "SCHILLER KRAIG", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -53595,17 +58996,47 @@ { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "createdAt": "2022-06-26", + "completed": "2022-04-28", + "initiated": "2015-08-12", + "ministryContact": "WISOKY LAVERNE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false } ], "siteRegistry": false @@ -53614,28 +59045,8 @@ "participants": [ { "name": "IPSUM", - "endDate": "2015-07-10", - "startDate": "2019-05-12", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2021-07-26", - "startDate": "2022-04-16", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": true - }, - { - "name": "AMET, DOLOR SIT", - "endDate": "2023-06-24", - "startDate": "2023-05-13", + "endDate": "2015-03-10", + "startDate": "2014-01-17", "notes": "", "roles": [ "EMPLOYEE" @@ -53643,207 +59054,180 @@ "siteRegistry": false }, { - "name": "AMET, DOLOR SIT", - "endDate": "2018-05-02", - "startDate": "2014-10-12", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2023-03-04", + "startDate": "2016-03-16", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true } ], "suspectLandUses": [ { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2013-12-14 (described on Site Profile dated 2013-12-14)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "notes": "INSERTED FOR SITE PROFILE DATED 2015-02-17 (described on Site Profile dated 2015-02-17)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-07-06 (described on Site Profile dated 2021-07-06)", + "notes": "INSERTED FOR SITE PROFILE DATED 2021-09-12 (described on Site Profile dated 2021-09-12)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" - } - ], - "siteDisclosures": [ + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2017-02-20 (described on Site Profile dated 2017-02-20)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, { "siteRegistry": true, - "dateReceived": "2018-07-17", - "dateCompleted": "2016-07-16", - "dateEntered": "2014-12-20", - "dateRegistrar": "2017-03-08", - "dateLocalAuthorityReceived": "2013-11-07", - "summary": "Soluta quisquam totam qui maiores iste ut.", - "informationUsed": "Cum corrupti cum.\nQuod error ex fugit repellendus.\nError praesentium commodi qui velit sint dolore aliquam laboriosam esse.\nQuidem quis in quam.\nAliquam placeat eveniet maiores exercitationem voluptate.", - "pastOrPresentOrders": "Necessitatibus beatae est eum.", - "commercialAndIndustrialPurposes": [ - { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true - }, - { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true - }, - { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true - }, - { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false - } - ] + "notes": "INSERTED FOR SITE PROFILE DATED 2019-09-06 (described on Site Profile dated 2019-09-06)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2014-08-20 (described on Site Profile dated 2014-08-20)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + } + ], + "parcelDescriptions": [ + { + "siteRegistry": false, + "dateNoted": "2018-06-27", + "parcelID": "19983", + "crownLandUsePIN": "18507", + "crownLandFileNumber": "16885", + "landDescription": "LOT 3 OF LOT 5 BLOCK 5 DISTRICT LOT 2 PLAN 6629" + }, + { + "siteRegistry": true, + "dateNoted": "2014-10-13", + "parcelID": "17191", + "crownLandUsePIN": "19449", + "crownLandFileNumber": "15820", + "landDescription": "LOT 5 OF LOT 3 BLOCK 2 DISTRICT LOT 3 PLAN 8654" + }, + { + "siteRegistry": true, + "dateNoted": "2015-03-06", + "parcelID": "18884", + "crownLandUsePIN": "20161", + "crownLandFileNumber": "16201", + "landDescription": "LOT 1 OF LOT 4 BLOCK 4 DISTRICT LOT 1 PLAN 5462" }, + { + "siteRegistry": false, + "dateNoted": "2021-04-22", + "parcelID": "20703", + "crownLandUsePIN": "19817", + "crownLandFileNumber": "16181", + "landDescription": "LOT 3 OF LOT 3 BLOCK 3 DISTRICT LOT 5 PLAN 6547" + } + ], + "siteDisclosures": [ { "siteRegistry": true, - "dateReceived": "2021-05-17", - "dateCompleted": "2023-06-10", - "dateEntered": "2016-05-28", - "dateRegistrar": "2018-02-07", - "dateLocalAuthorityReceived": "2023-09-05", - "summary": "Voluptatum tempore aspernatur quo.\nDebitis rem eaque pariatur nam vitae deleniti.", - "informationUsed": "Neque nemo cupiditate nostrum voluptate veniam necessitatibus.\nAt dicta quas itaque voluptatem mollitia perferendis.\nIncidunt architecto inventore.", - "pastOrPresentOrders": "Accusantium totam error.", + "dateReceived": "2023-01-17", + "dateCompleted": "2019-03-10", + "dateEntered": "2014-11-19", + "dateRegistrar": "2020-07-19", + "dateLocalAuthorityReceived": "2016-04-21", + "summary": "Quasi ratione perferendis nisi ipsum nam.\nQuidem sed laudantium quia repellat repudiandae nemo vel tempora magni.\nBlanditiis exercitationem hic laboriosam eum vitae beatae perspiciatis temporibus itaque.", + "informationUsed": "Odio magnam in molestias possimus aut quae iste minima.\nCumque amet in cupiditate atque velit corrupti magnam debitis.\nOdio pariatur dignissimos.", + "pastOrPresentOrders": "Illo quam dolorem.", "commercialAndIndustrialPurposes": [ { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false - }, - { - "scheduleReference": "F2*", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false }, { "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false + "siteRegistry": true }, { "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true + "siteRegistry": false } ] } ], "activityLog": [ - { - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "FRAMI JARRED", - "timestamp": "2021-12-10" - }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "KOEPP DAVONTE", - "timestamp": "2022-10-06" - }, - { - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "EMMERICH ROWLAND", - "timestamp": "2015-04-07" - }, - { - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "RIPPIN LUNA", - "timestamp": "2021-06-07" + "user": "HERZOG PROVIDENCI", + "timestamp": "2021-03-21" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "BORER CHET", - "timestamp": "2021-04-28" + "user": "YOST CORA", + "timestamp": "2018-11-02" }, { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "SMITH MARLON", - "timestamp": "2019-11-27" + "user": "TREMBLAY AURELIA", + "timestamp": "2017-07-21" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "CHAMPLIN ALISHA", - "timestamp": "2017-08-12" - }, - { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "HEIDENREICH JAZMYN", - "timestamp": "2019-08-14" + "user": "BARROWS SCOT", + "timestamp": "2013-11-28" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "SCHOEN HAYLEY", - "timestamp": "2018-07-22" + "user": "BOGISICH TARYN", + "timestamp": "2017-07-30" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "KUHLMAN HORACE", - "timestamp": "2015-09-25" + "user": "EFFERTZ NED", + "timestamp": "2021-07-03" } ], "associatedSites": [ { - "dateNoted": "2016-01-04", - "notes": "", - "parcelID": "16223", - "siteID": "17181", - "siteRegistry": false - }, - { - "dateNoted": "2018-03-07", - "notes": "", - "parcelID": "18212", - "siteID": "18053", - "siteRegistry": false - }, - { - "dateNoted": "2021-03-22", + "dateNoted": "2016-11-28", "notes": "", - "parcelID": "16674", - "siteID": "18840", + "parcelID": "17105", + "siteID": "16602", "siteRegistry": true } ] }, { - "uuid": "2339f321-ec90-47d8-a076-c782fdb570ab", - "siteID": 16893, - "address": "8359 Jaiden Walks", - "latitude": 48.7866, - "longitude": -137.0555, - "lastUpdated": "2016-02-01", - "city": "Randalland", - "region": "Kootenay", - "victoriaFile": "26250-20/753", + "uuid": "d11fb8d5-937d-4557-a4d8-af66547274b8", + "siteID": 17847, + "address": "3265 Hermann Streets", + "latitude": 48.7077, + "longitude": -133.1017, + "lastUpdated": "2014-06-02", + "city": "Caspercester", + "region": "Vancouver Island/Coast", + "victoriaFile": "26250-20/11484", "regionalFile": "N/A", "parcelIDs": [ - 4869177, - 580846, - 1999309, - 9840278, - 1807675 + 8038928, + 1006136, + 2550426, + 6370880, + 1784447 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2014-11-24", - "completed": "2015-11-27", - "initiated": "2017-05-16", - "ministryContact": "CONN-HILPERT CINDY", + "createdAt": "2016-10-02", + "completed": "2018-07-02", + "initiated": "2016-08-16", + "ministryContact": "NITZSCHE JERROD", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -53854,26 +59238,26 @@ { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false } ], "siteRegistry": true }, { - "createdAt": "2018-08-06", - "completed": "2016-12-16", - "initiated": "2020-03-11", - "ministryContact": "BASHIRIAN KELSIE", + "createdAt": "2015-11-01", + "completed": "2020-03-26", + "initiated": "2018-07-06", + "ministryContact": "FRIESEN SYDNEY", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -53883,37 +59267,52 @@ "notationParticipants": [ { "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true - }, + } + ], + "siteRegistry": false + }, + { + "createdAt": "2022-03-03", + "completed": "2020-11-11", + "initiated": "2017-12-09", + "ministryContact": "MCGLYNN EDWIN", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", "siteRegistry": false } ], "siteRegistry": true }, { - "createdAt": "2019-10-06", - "completed": "2019-04-15", - "initiated": "2017-06-16", - "ministryContact": "CORMIER-LEFFLER KIANA", + "createdAt": "2021-11-18", + "completed": "2021-06-29", + "initiated": "2015-10-14", + "ministryContact": "TURNER ARON", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -53922,17 +59321,32 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false - }, + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "createdAt": "2014-11-09", + "completed": "2021-05-04", + "initiated": "2015-05-01", + "ministryContact": "WIEGAND JANIE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false }, @@ -53940,11 +59354,6 @@ "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false } ], "siteRegistry": false @@ -53952,39 +59361,19 @@ ], "participants": [ { - "name": "IPSUM", - "endDate": "2018-07-20", - "startDate": "2020-02-11", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": false - }, - { - "name": "IPSUM", - "endDate": "2018-06-04", - "startDate": "2014-03-01", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": true - }, - { - "name": "IPSUM", - "endDate": "2022-02-09", - "startDate": "2014-04-22", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2022-04-25", + "startDate": "2014-03-10", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2015-10-12", - "startDate": "2020-05-16", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2018-06-23", + "startDate": "2018-11-18", "notes": "", "roles": [ "ORGANIZATION" @@ -53993,176 +59382,171 @@ }, { "name": "SHELL CANADA PRODUCTS", - "endDate": "2015-08-19", - "startDate": "2017-12-04", + "endDate": "2021-10-23", + "startDate": "2018-02-18", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false } ], "suspectLandUses": [ { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-08-09 (described on Site Profile dated 2021-08-09)", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2014-10-23 (described on Site Profile dated 2014-10-23)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-11-01 (described on Site Profile dated 2014-11-01)", + "notes": "INSERTED FOR SITE PROFILE DATED 2021-11-15 (described on Site Profile dated 2021-11-15)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-07-30 (described on Site Profile dated 2017-07-30)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "notes": "INSERTED FOR SITE PROFILE DATED 2022-04-01 (described on Site Profile dated 2022-04-01)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], - "siteDisclosures": [ + "parcelDescriptions": [ { "siteRegistry": true, - "dateReceived": "2014-12-07", - "dateCompleted": "2021-06-15", - "dateEntered": "2018-01-23", - "dateRegistrar": "2019-07-02", - "dateLocalAuthorityReceived": "2016-11-18", - "summary": "Nihil consequuntur dolorem odio hic recusandae quos ipsam sequi.\nBeatae molestias saepe itaque corrupti.\nId temporibus vel aperiam amet cum vel fugiat a.", - "informationUsed": "Est enim deserunt distinctio vitae placeat quaerat velit.\nVoluptatum nam officia ut placeat animi rem.\nEum voluptatibus animi.", - "pastOrPresentOrders": "Dolorem ipsum magni.\nVoluptate facilis occaecati beatae exercitationem aspernatur minima laborum odit.\nVoluptas temporibus dicta.", + "dateNoted": "2015-09-07", + "parcelID": "19637", + "crownLandUsePIN": "17211", + "crownLandFileNumber": "20453", + "landDescription": "LOT 2 OF LOT 2 BLOCK 3 DISTRICT LOT 2 PLAN 7438" + }, + { + "siteRegistry": false, + "dateNoted": "2020-06-30", + "parcelID": "16759", + "crownLandUsePIN": "20164", + "crownLandFileNumber": "19592", + "landDescription": "LOT 2 OF LOT 2 BLOCK 4 DISTRICT LOT 3 PLAN 8359" + } + ], + "siteDisclosures": [ + { + "siteRegistry": false, + "dateReceived": "2021-04-02", + "dateCompleted": "2022-08-02", + "dateEntered": "2021-07-28", + "dateRegistrar": "2016-10-29", + "dateLocalAuthorityReceived": "2022-02-01", + "summary": "Blanditiis aliquid blanditiis natus.", + "informationUsed": "Sed quos dolor.\nNobis molestiae laborum rerum ipsam.\nNon nulla nemo debitis recusandae laboriosam nostrum.\nReiciendis porro deleniti ipsa in at deleniti molestias illum tempora.\nEnim vitae maxime possimus corporis totam.", + "pastOrPresentOrders": "In quos odio cum distinctio architecto aliquid consequatur.\nCum eos iusto dolorum minima.", "commercialAndIndustrialPurposes": [ { "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false + "siteRegistry": true }, { "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, - { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true - } - ] - }, - { - "siteRegistry": true, - "dateReceived": "2015-11-02", - "dateCompleted": "2016-01-19", - "dateEntered": "2016-01-14", - "dateRegistrar": "2020-10-27", - "dateLocalAuthorityReceived": "2015-09-27", - "summary": "Reprehenderit est repellat quam.", - "informationUsed": "Odit doloremque quidem assumenda est sint illo perspiciatis voluptates porro.\nExplicabo aliquid officia facere fugiat eveniet ut.\nAd corporis odio asperiores.", - "pastOrPresentOrders": "Officiis blanditiis neque iure autem minima.", - "commercialAndIndustrialPurposes": [ { "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true - }, - { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false } ] } ], "activityLog": [ - { - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "WILLMS LINNIE", - "timestamp": "2017-04-02" - }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "LEGROS DIMITRI", - "timestamp": "2017-07-31" + "user": "HOPPE ADOLPHUS", + "timestamp": "2022-07-25" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "ROHAN DIANA", - "timestamp": "2017-08-22" + "user": "QUITZON TROY", + "timestamp": "2022-12-24" }, { - "siteRegistry": true, + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "DAUGHERTY-DAVIS BARRY", - "timestamp": "2022-07-13" + "user": "SCHILLER ROBYN", + "timestamp": "2017-12-19" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "WILL VALENTINA", - "timestamp": "2018-09-15" + "user": "DARE MYRIAM", + "timestamp": "2017-10-22" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "HICKLE ARLENE", - "timestamp": "2014-04-03" + "user": "HERMANN ANDRE", + "timestamp": "2018-03-04" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "AUER WAINO", - "timestamp": "2018-07-16" + "user": "BAYER PRESTON", + "timestamp": "2015-07-16" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "GRANT ELLIOTT", - "timestamp": "2020-02-02" + "user": "FLATLEY GEORGIANNA", + "timestamp": "2020-10-08" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "FARRELL NIKO", - "timestamp": "2020-02-07" + "user": "MILLS ALBINA", + "timestamp": "2018-11-22" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "LEANNON KARL", + "timestamp": "2020-08-17" } ], "associatedSites": [ { - "dateNoted": "2022-08-14", + "dateNoted": "2014-04-11", "notes": "", - "parcelID": "18950", - "siteID": "19159", + "parcelID": "16556", + "siteID": "17607", "siteRegistry": true } ] }, { - "uuid": "6398c78d-6c36-49d4-a904-42c1f5037b65", - "siteID": 18919, - "address": "761 Carissa Extensions", - "latitude": 48.552, - "longitude": -124.7041, - "lastUpdated": "2015-01-21", - "city": "North Oral", - "region": "Thompson-Okanagan", - "victoriaFile": "26250-20/14842", + "uuid": "89419c83-1d1b-43d0-86e2-735917573dc8", + "siteID": 20283, + "address": "65351 Herman Land", + "latitude": 51.9264, + "longitude": -130.6317, + "lastUpdated": "2017-05-10", + "city": "Murlburgh", + "region": "Vancouver Island/Coast", + "victoriaFile": "26250-20/9602", "regionalFile": "N/A", "parcelIDs": [ - 8378545, - 9182964, - 8453198, - 1677381, - 6132665 + 9722851, + 6425942, + 5624111, + 4411317, + 8678048 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2021-05-29", - "completed": "2022-08-12", - "initiated": "2017-08-28", - "ministryContact": "CONN KENYON", + "createdAt": "2019-02-06", + "completed": "2016-12-19", + "initiated": "2017-04-23", + "ministryContact": "HOWELL JAYCEE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -54171,17 +59555,42 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "createdAt": "2014-08-13", + "completed": "2022-08-18", + "initiated": "2018-06-19", + "ministryContact": "CUMMERATA SASHA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true }, @@ -54189,15 +59598,25 @@ "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2022-07-21", - "completed": "2018-10-26", - "initiated": "2021-01-15", - "ministryContact": "SCHMITT GENOVEVA", + "createdAt": "2015-10-21", + "completed": "2022-07-28", + "initiated": "2015-05-29", + "ministryContact": "KSHLERIN RAHUL", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -54206,10 +59625,15 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", @@ -54218,6 +59642,31 @@ { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "createdAt": "2016-05-05", + "completed": "2018-09-12", + "initiated": "2017-06-23", + "ministryContact": "O'CONNER KAMILLE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", "siteRegistry": false }, { @@ -54225,10 +59674,45 @@ "role": "REQUESTED BY", "siteRegistry": false }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "createdAt": "2017-12-04", + "completed": "2014-01-13", + "initiated": "2018-05-23", + "ministryContact": "JAST LUISA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true } ], "siteRegistry": true @@ -54236,19 +59720,9 @@ ], "participants": [ { - "name": "AMET, DOLOR SIT", - "endDate": "2020-05-01", - "startDate": "2016-10-21", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": true - }, - { - "name": "AMET, DOLOR SIT", - "endDate": "2015-11-08", - "startDate": "2016-01-12", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2016-11-02", + "startDate": "2018-05-07", "notes": "", "roles": [ "EMPLOYEE" @@ -54256,70 +59730,83 @@ "siteRegistry": false }, { - "name": "IPSUM", - "endDate": "2017-08-31", - "startDate": "2019-05-30", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2015-10-23", + "startDate": "2016-08-13", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2023-02-25", - "startDate": "2018-02-26", + "name": "AMET, DOLOR SIT", + "endDate": "2020-03-20", + "startDate": "2023-09-17", "notes": "", "roles": [ "EMPLOYEE" ], "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2015-09-19", - "startDate": "2019-08-31", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": true } ], "suspectLandUses": [ + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2019-07-27 (described on Site Profile dated 2019-07-27)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-04-07 (described on Site Profile dated 2018-04-07)", + "notes": "INSERTED FOR SITE PROFILE DATED 2022-08-22 (described on Site Profile dated 2022-08-22)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2020-01-24 (described on Site Profile dated 2020-01-24)", + "notes": "INSERTED FOR SITE PROFILE DATED 2016-05-04 (described on Site Profile dated 2016-05-04)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2017-10-30 (described on Site Profile dated 2017-10-30)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + } + ], + "parcelDescriptions": [ + { + "siteRegistry": false, + "dateNoted": "2016-08-27", + "parcelID": "18339", + "crownLandUsePIN": "19075", + "crownLandFileNumber": "17336", + "landDescription": "LOT 2 OF LOT 3 BLOCK 2 DISTRICT LOT 2 PLAN 9189" + }, + { + "siteRegistry": false, + "dateNoted": "2016-03-28", + "parcelID": "15935", + "crownLandUsePIN": "19969", + "crownLandFileNumber": "16197", + "landDescription": "LOT 3 OF LOT 2 BLOCK 4 DISTRICT LOT 2 PLAN 3167" } ], "siteDisclosures": [ { "siteRegistry": false, - "dateReceived": "2020-02-29", - "dateCompleted": "2017-07-08", - "dateEntered": "2023-10-01", - "dateRegistrar": "2018-04-22", - "dateLocalAuthorityReceived": "2017-10-03", - "summary": "Perspiciatis dolor praesentium.", - "informationUsed": "Tenetur cupiditate aperiam quis dolorem.\nPlaceat a maiores facilis incidunt sequi nostrum porro.\nDicta ad officia totam doloribus.\nNisi fuga illo accusamus accusantium vel alias nulla.", - "pastOrPresentOrders": "Quis corrupti blanditiis distinctio tempora vero facilis.", + "dateReceived": "2018-12-02", + "dateCompleted": "2016-12-30", + "dateEntered": "2020-12-21", + "dateRegistrar": "2020-02-12", + "dateLocalAuthorityReceived": "2020-02-07", + "summary": "Temporibus at officiis impedit accusantium repellat quia.\nVeniam doloribus aliquam placeat.\nCorrupti error recusandae pariatur quos neque nisi blanditiis amet aliquid.", + "informationUsed": "Perferendis facere magnam facilis impedit.\nEa mollitia quo ab vitae hic facere.\nEsse laboriosam velit.", + "pastOrPresentOrders": "Non et nisi consectetur eum aperiam deleniti porro amet.\nSoluta molestiae consequuntur quisquam quasi odit explicabo natus quidem animi.", "commercialAndIndustrialPurposes": [ { "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, - { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true - }, { "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", @@ -54332,88 +59819,107 @@ { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "HEIDENREICH ALYCE", - "timestamp": "2020-07-07" + "user": "MERTZ RHEA", + "timestamp": "2022-06-17" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "BERNIER PETE", - "timestamp": "2019-01-19" + "user": "BLICK JERAMIE", + "timestamp": "2023-07-25" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "ARMSTRONG BRIDGETTE", - "timestamp": "2018-04-07" + "user": "BREITENBERG MITCHEL", + "timestamp": "2023-03-25" }, { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "HAMMES SEAMUS", - "timestamp": "2014-01-05" + "user": "BREITENBERG KIANA", + "timestamp": "2020-06-29" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "GUTMANN ALDEN", - "timestamp": "2022-07-24" + "user": "GUTMANN JOSEFA", + "timestamp": "2016-06-01" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "ROBEL-HETTINGER JODIE", + "timestamp": "2021-11-09" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "SHANAHAN MELISA", + "timestamp": "2015-10-24" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "NITZSCHE DONALD", - "timestamp": "2019-12-15" + "user": "ARMSTRONG ZELDA", + "timestamp": "2016-04-26" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "TILLMAN RODGER", - "timestamp": "2022-10-02" + "user": "KLOCKO KEN", + "timestamp": "2020-04-06" } ], "associatedSites": [ { - "dateNoted": "2015-11-10", + "dateNoted": "2013-12-15", "notes": "", - "parcelID": "18198", - "siteID": "16489", + "parcelID": "16059", + "siteID": "15482", + "siteRegistry": true + }, + { + "dateNoted": "2016-04-13", + "notes": "", + "parcelID": "16631", + "siteID": "17362", "siteRegistry": false }, { - "dateNoted": "2020-06-19", + "dateNoted": "2022-02-20", "notes": "", - "parcelID": "18166", - "siteID": "16418", - "siteRegistry": true + "parcelID": "20202", + "siteID": "19044", + "siteRegistry": false } ] }, { - "uuid": "1f0be679-ebc7-4814-bced-513409481131", - "siteID": 17083, - "address": "97961 Merl Land", - "latitude": 51.8361, - "longitude": -126.0698, - "lastUpdated": "2019-05-02", - "city": "Katherinetown", - "region": "Kootenay", - "victoriaFile": "26250-20/12756", + "uuid": "04ec34e1-5969-4f5a-9c06-1064de57cd05", + "siteID": 18928, + "address": "7898 Maverick Vista", + "latitude": 54.983, + "longitude": -123.3139, + "lastUpdated": "2021-07-13", + "city": "South Felipa", + "region": "Mainland/Southwest", + "victoriaFile": "26250-20/17691", "regionalFile": "N/A", "parcelIDs": [ - 9907898, - 241172, - 9978651, - 7854422, - 2389240 + 8188120, + 8761080, + 8440236, + 2391597, + 7647192 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2019-05-06", - "completed": "2020-02-04", - "initiated": "2014-04-16", - "ministryContact": "BOYLE LEORA", + "createdAt": "2018-06-21", + "completed": "2021-04-02", + "initiated": "2015-01-29", + "ministryContact": "GUSIKOWSKI WILFRED", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -54423,47 +59929,22 @@ "notationParticipants": [ { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - } - ], - "siteRegistry": false - }, - { - "createdAt": "2018-10-18", - "completed": "2022-03-02", - "initiated": "2014-08-05", - "ministryContact": "MITCHELL ASIA", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false } ], "siteRegistry": false }, { - "createdAt": "2023-07-12", - "completed": "2020-11-16", - "initiated": "2020-12-29", - "ministryContact": "WISOZK RICKEY", + "createdAt": "2022-03-15", + "completed": "2022-05-25", + "initiated": "2017-01-24", + "ministryContact": "BECKER DANYKA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -54479,77 +59960,42 @@ { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true - } - ], - "siteRegistry": false - }, - { - "createdAt": "2021-01-26", - "completed": "2014-07-27", - "initiated": "2016-01-26", - "ministryContact": "GERLACH MISTY", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false } ], "participants": [ { "name": "AMET, DOLOR SIT", - "endDate": "2021-10-14", - "startDate": "2018-01-03", + "endDate": "2022-10-14", + "startDate": "2020-02-25", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", - "endDate": "2015-04-27", - "startDate": "2021-11-06", + "endDate": "2018-03-31", + "startDate": "2017-10-30", "notes": "", "roles": [ "EMPLOYEE" @@ -54557,69 +60003,80 @@ "siteRegistry": false }, { - "name": "AMET, DOLOR SIT", - "endDate": "2019-05-31", - "startDate": "2015-07-15", + "name": "IPSUM", + "endDate": "2015-07-17", + "startDate": "2023-06-16", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": true } ], "suspectLandUses": [ { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-09-29 (described on Site Profile dated 2014-09-29)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2021-11-17 (described on Site Profile dated 2021-11-17)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2023-02-05 (described on Site Profile dated 2023-02-05)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "notes": "INSERTED FOR SITE PROFILE DATED 2018-09-22 (described on Site Profile dated 2018-09-22)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + } + ], + "parcelDescriptions": [ + { + "siteRegistry": false, + "dateNoted": "2021-06-20", + "parcelID": "20829", + "crownLandUsePIN": "20138", + "crownLandFileNumber": "16792", + "landDescription": "LOT 4 OF LOT 4 BLOCK 3 DISTRICT LOT 5 PLAN 3885" }, { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-05-16 (described on Site Profile dated 2019-05-16)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "dateNoted": "2020-02-01", + "parcelID": "15813", + "crownLandUsePIN": "18343", + "crownLandFileNumber": "19638", + "landDescription": "LOT 3 OF LOT 3 BLOCK 2 DISTRICT LOT 3 PLAN 7594" }, { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-11-24 (described on Site Profile dated 2015-11-24)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "siteRegistry": false, + "dateNoted": "2022-08-12", + "parcelID": "20013", + "crownLandUsePIN": "19211", + "crownLandFileNumber": "19358", + "landDescription": "LOT 1 OF LOT 3 BLOCK 4 DISTRICT LOT 2 PLAN 8161" } ], "siteDisclosures": [ { "siteRegistry": false, - "dateReceived": "2016-10-17", - "dateCompleted": "2023-05-17", - "dateEntered": "2022-07-29", - "dateRegistrar": "2021-09-29", - "dateLocalAuthorityReceived": "2015-05-17", - "summary": "Explicabo tempora fugit reiciendis voluptatum facilis rerum.", - "informationUsed": "Error voluptatibus iusto deserunt dolor.\nNon occaecati corporis.\nQuod sint modi cum est at.", - "pastOrPresentOrders": "Est cumque placeat vitae a odio dignissimos dolorum officia eaque.\nFacere cum hic veniam veritatis veniam perspiciatis.", + "dateReceived": "2018-12-09", + "dateCompleted": "2018-01-08", + "dateEntered": "2017-05-20", + "dateRegistrar": "2016-03-03", + "dateLocalAuthorityReceived": "2018-01-18", + "summary": "Explicabo necessitatibus sunt nam quae molestias laudantium vel facere.\nBeatae voluptatem corrupti dolorum.\nVero repudiandae dolores beatae fugiat fugiat.", + "informationUsed": "Labore ut omnis et quos consequatur porro suscipit.\nEt ea qui ducimus voluptatem.\nCorrupti nam excepturi delectus aut voluptates eum fugiat ipsa.\nNobis eos facilis sint libero quod qui nobis sit.\nQuas omnis provident quos vero ad cumque quia consequuntur fugit.", + "pastOrPresentOrders": "Quae quos quis fugiat culpa quaerat ex.", "commercialAndIndustrialPurposes": [ { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true - }, - { - "scheduleReference": "F1*", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false }, { - "scheduleReference": "F1*", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false }, { "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false + "siteRegistry": true } ] } @@ -54628,89 +60085,81 @@ { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "RENNER KYRA", - "timestamp": "2021-07-23" + "user": "SANFORD ELLEN", + "timestamp": "2016-05-10" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "O'REILLY KALEB", - "timestamp": "2016-10-19" + "user": "D'AMORE JULIANNE", + "timestamp": "2023-02-05" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "COLLIER ANNAMARIE", - "timestamp": "2015-01-21" + "user": "HIRTHE VADA", + "timestamp": "2023-02-09" }, { - "siteRegistry": true, + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "STOKES ANDY", - "timestamp": "2017-08-26" + "user": "ROGAHN ZACKERY", + "timestamp": "2015-01-26" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "HACKETT EMMA", - "timestamp": "2016-10-06" + "user": "HELLER KRISTY", + "timestamp": "2018-03-30" }, { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "WARD SHAUN", - "timestamp": "2020-09-21" - } - ], - "associatedSites": [ - { - "dateNoted": "2020-12-06", - "notes": "", - "parcelID": "17104", - "siteID": "18066", - "siteRegistry": true - }, - { - "dateNoted": "2023-05-20", - "notes": "", - "parcelID": "16610", - "siteID": "20188", - "siteRegistry": false + "user": "STROSIN THERESIA", + "timestamp": "2019-09-01" }, { - "dateNoted": "2017-07-25", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "LOCKMAN-DARE KAIA", + "timestamp": "2022-03-29" + } + ], + "associatedSites": [ + { + "dateNoted": "2023-08-20", "notes": "", - "parcelID": "15864", - "siteID": "17710", - "siteRegistry": true + "parcelID": "20066", + "siteID": "20080", + "siteRegistry": false } ] }, { - "uuid": "65d847d1-7945-413e-b9b7-220e390e02db", - "siteID": 16067, - "address": "76237 Marisol Lane", - "latitude": 57.8335, - "longitude": -118.7289, - "lastUpdated": "2019-08-01", - "city": "Macon-Bibb County", - "region": "Thompson-Okanagan", - "victoriaFile": "26250-20/2207", + "uuid": "254c6052-2b40-45a5-bda7-b038dd80fe4e", + "siteID": 19450, + "address": "884 Grady Fork", + "latitude": 53.6684, + "longitude": -120.9876, + "lastUpdated": "2015-03-03", + "city": "Monterey Park", + "region": "Cariboo", + "victoriaFile": "26250-20/14891", "regionalFile": "N/A", "parcelIDs": [ - 3226332, - 4270676, - 6325188, - 6740583, - 7640412 + 5029043, + 3582183, + 5160833, + 6639354, + 8208200 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2013-12-04", - "completed": "2021-03-25", - "initiated": "2016-11-04", - "ministryContact": "STROMAN MARILYNE", + "createdAt": "2018-06-23", + "completed": "2020-03-05", + "initiated": "2017-03-13", + "ministryContact": "TERRY BETTE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -54719,7 +60168,7 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true }, @@ -54729,18 +60178,18 @@ "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2019-03-24", - "completed": "2015-10-17", - "initiated": "2019-07-14", - "ministryContact": "MILLS GRETA", + "createdAt": "2014-06-06", + "completed": "2018-12-16", + "initiated": "2014-06-01", + "ministryContact": "NICOLAS MORTON", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -54749,23 +60198,23 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2023-03-29", - "completed": "2021-10-02", - "initiated": "2015-11-22", - "ministryContact": "HARTMANN DESHAUN", + "createdAt": "2015-05-12", + "completed": "2017-10-01", + "initiated": "2016-08-31", + "ministryContact": "DUBUQUE GREGG", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -54775,16 +60224,16 @@ "notationParticipants": [ { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false + "role": "SUBMITTED BY", + "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true }, @@ -54792,6 +60241,11 @@ "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false } ], "siteRegistry": true @@ -54799,9 +60253,9 @@ ], "participants": [ { - "name": "IPSUM", - "endDate": "2015-06-29", - "startDate": "2015-01-20", + "name": "AMET, DOLOR SIT", + "endDate": "2018-07-24", + "startDate": "2017-03-07", "notes": "", "roles": [ "EMPLOYEE" @@ -54809,9 +60263,9 @@ "siteRegistry": false }, { - "name": "IPSUM", - "endDate": "2016-06-07", - "startDate": "2021-11-03", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2015-09-11", + "startDate": "2022-08-06", "notes": "", "roles": [ "ORGANIZATION" @@ -54820,48 +60274,87 @@ } ], "suspectLandUses": [ + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2021-06-12 (described on Site Profile dated 2021-06-12)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-08-12 (described on Site Profile dated 2016-08-12)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "notes": "INSERTED FOR SITE PROFILE DATED 2021-04-25 (described on Site Profile dated 2021-04-25)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-09-21 (described on Site Profile dated 2015-09-21)", + "notes": "INSERTED FOR SITE PROFILE DATED 2023-05-23 (described on Site Profile dated 2023-05-23)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2019-07-15 (described on Site Profile dated 2019-07-15)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2023-03-08 (described on Site Profile dated 2023-03-08)", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2017-04-20 (described on Site Profile dated 2017-04-20)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + } + ], + "parcelDescriptions": [ + { + "siteRegistry": true, + "dateNoted": "2020-01-06", + "parcelID": "17366", + "crownLandUsePIN": "15348", + "crownLandFileNumber": "16828", + "landDescription": "LOT 1 OF LOT 2 BLOCK 5 DISTRICT LOT 3 PLAN 5904" }, { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-09-21 (described on Site Profile dated 2017-09-21)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "dateNoted": "2020-05-06", + "parcelID": "20270", + "crownLandUsePIN": "16035", + "crownLandFileNumber": "19540", + "landDescription": "LOT 3 OF LOT 5 BLOCK 3 DISTRICT LOT 3 PLAN 9167" + }, + { + "siteRegistry": true, + "dateNoted": "2015-11-15", + "parcelID": "18210", + "crownLandUsePIN": "17906", + "crownLandFileNumber": "19959", + "landDescription": "LOT 5 OF LOT 3 BLOCK 3 DISTRICT LOT 1 PLAN 7570" + }, + { + "siteRegistry": false, + "dateNoted": "2019-03-22", + "parcelID": "16752", + "crownLandUsePIN": "17776", + "crownLandFileNumber": "16532", + "landDescription": "LOT 4 OF LOT 2 BLOCK 1 DISTRICT LOT 5 PLAN 4637" } ], "siteDisclosures": [ { - "siteRegistry": false, - "dateReceived": "2023-01-23", - "dateCompleted": "2023-03-20", - "dateEntered": "2022-12-04", - "dateRegistrar": "2015-06-20", - "dateLocalAuthorityReceived": "2016-11-19", - "summary": "Neque cupiditate libero incidunt corrupti similique voluptatem animi pariatur.\nIllo quia in nobis sit explicabo reprehenderit deserunt iure.\nAccusantium harum ipsam eius rerum molestiae quia corrupti.", - "informationUsed": "Iure ad alias corporis iure quis rem ex.\nNulla quod aperiam magni ipsam possimus dolorum recusandae incidunt culpa.\nQuo itaque dolorum temporibus.\nSapiente debitis voluptatibus sapiente tenetur blanditiis cupiditate.\nQuod cupiditate numquam veritatis dicta optio atque error fugiat.", - "pastOrPresentOrders": "Id maxime vitae.", + "siteRegistry": true, + "dateReceived": "2016-10-01", + "dateCompleted": "2022-03-14", + "dateEntered": "2022-05-20", + "dateRegistrar": "2014-04-17", + "dateLocalAuthorityReceived": "2015-12-17", + "summary": "Nesciunt dolores ea blanditiis.", + "informationUsed": "Quibusdam est qui distinctio.\nAut incidunt reprehenderit eligendi voluptas molestiae voluptas id optio.\nMaxime cupiditate reprehenderit voluptates illum quam beatae omnis.", + "pastOrPresentOrders": "Cum animi magnam repellendus saepe sit corrupti.", "commercialAndIndustrialPurposes": [ { - "scheduleReference": "F2*", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true }, { "scheduleReference": "F2*", @@ -54872,33 +60365,23 @@ }, { "siteRegistry": false, - "dateReceived": "2023-02-19", - "dateCompleted": "2013-11-19", - "dateEntered": "2015-06-22", - "dateRegistrar": "2019-05-05", - "dateLocalAuthorityReceived": "2014-08-19", - "summary": "Recusandae sapiente ipsum aliquid accusamus odio nam.\nRerum eius explicabo dolorem.\nConsequuntur similique voluptatum.", - "informationUsed": "Praesentium repudiandae magnam exercitationem.\nCumque quae iste nostrum asperiores placeat maxime at.\nCumque facere quo iure sapiente aut consequuntur cumque.\nNeque autem culpa sunt reiciendis maiores.\nAspernatur sequi assumenda quidem corporis.", - "pastOrPresentOrders": "Assumenda eaque molestiae ea enim explicabo eligendi quo repudiandae.\nVoluptatem eveniet itaque iure temporibus praesentium.", + "dateReceived": "2014-01-12", + "dateCompleted": "2021-06-12", + "dateEntered": "2023-08-08", + "dateRegistrar": "2015-06-01", + "dateLocalAuthorityReceived": "2019-07-15", + "summary": "Molestias esse vel accusantium quas repudiandae rerum.", + "informationUsed": "Commodi magni minima.\nRepudiandae rerum suscipit voluptatem esse.\nNemo voluptas quis nam doloribus cumque corrupti.", + "pastOrPresentOrders": "Rerum placeat a laudantium recusandae voluptates laborum et magni ad.\nBeatae atque doloremque facere cupiditate culpa illum debitis rerum debitis.\nInventore voluptates esse porro ratione facere unde nostrum sunt culpa.", "commercialAndIndustrialPurposes": [ - { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true - }, { "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false - }, - { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true } ] @@ -54908,101 +60391,75 @@ { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "GRIMES MELISA", - "timestamp": "2021-12-18" - }, - { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "SCHMELER JEANNE", - "timestamp": "2013-11-08" + "user": "VONRUEDEN JUWAN", + "timestamp": "2023-01-13" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "GERLACH ORAL", - "timestamp": "2019-09-02" + "user": "TROMP ELLSWORTH", + "timestamp": "2019-05-19" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "NIENOW-MOHR ADRIAN", - "timestamp": "2017-04-13" + "user": "HEANEY ARJUN", + "timestamp": "2016-01-31" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "D'AMORE GRANT", - "timestamp": "2017-09-18" + "user": "SCHMELER ANGELITA", + "timestamp": "2018-09-11" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "HARVEY ASTRID", - "timestamp": "2023-01-14" + "user": "RENNER MARLENE", + "timestamp": "2014-06-14" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "SPINKA FLAVIE", - "timestamp": "2020-11-02" - }, - { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "LEDNER MORRIS", - "timestamp": "2018-09-14" + "user": "FEEST-WAELCHI ALENE", + "timestamp": "2021-01-29" } ], "associatedSites": [ { - "dateNoted": "2016-05-16", - "notes": "", - "parcelID": "19131", - "siteID": "18840", - "siteRegistry": true - }, - { - "dateNoted": "2022-02-26", - "notes": "", - "parcelID": "20054", - "siteID": "16758", - "siteRegistry": false - }, - { - "dateNoted": "2013-12-10", + "dateNoted": "2020-05-29", "notes": "", - "parcelID": "17993", - "siteID": "17498", + "parcelID": "19122", + "siteID": "16335", "siteRegistry": false } ] }, { - "uuid": "4e551ddd-ae11-4693-b6e7-23914c09bed3", - "siteID": 19790, - "address": "1312 Willie Spur", - "latitude": 52.8514, - "longitude": -119.3484, - "lastUpdated": "2013-11-26", - "city": "Alycialand", - "region": " North Coast", - "victoriaFile": "26250-20/7452", + "uuid": "ba6cfbb2-1dce-4d64-aa87-6725d03e803c", + "siteID": 19747, + "address": "20708 Ward Courts", + "latitude": 52.4009, + "longitude": -128.5207, + "lastUpdated": "2016-11-14", + "city": "Fort Jefferystad", + "region": "Kootenay", + "victoriaFile": "26250-20/4292", "regionalFile": "N/A", "parcelIDs": [ - 6108211, - 3235438, - 2635615, - 9031060, - 8685316 + 2157692, + 9407484, + 9904927, + 6812785, + 8366788 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2021-08-20", - "completed": "2021-03-12", - "initiated": "2022-09-04", - "ministryContact": "LOWE ANTONETTE", + "createdAt": "2017-04-11", + "completed": "2017-02-23", + "initiated": "2016-02-14", + "ministryContact": "WEISSNAT KOREY", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -55013,45 +60470,25 @@ { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": false - } - ], - "siteRegistry": true - }, - { - "createdAt": "2014-06-08", - "completed": "2014-11-04", - "initiated": "2018-03-09", - "ministryContact": "KIEHN COLTON", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false } @@ -55059,10 +60496,10 @@ "siteRegistry": false }, { - "createdAt": "2014-05-22", - "completed": "2022-03-21", - "initiated": "2021-03-20", - "ministryContact": "KUHLMAN REILLY", + "createdAt": "2015-09-09", + "completed": "2018-02-18", + "initiated": "2018-01-09", + "ministryContact": "NADER-GUTMANN NEOMA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -55071,94 +60508,176 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true + "role": "REQUESTED BY", + "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false } ], "participants": [ { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2022-08-24", - "startDate": "2021-11-03", + "name": "IPSUM", + "endDate": "2013-11-29", + "startDate": "2018-03-01", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2021-09-23", - "startDate": "2014-11-15", + "endDate": "2017-02-09", + "startDate": "2014-08-08", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true + }, + { + "name": "IPSUM", + "endDate": "2016-07-08", + "startDate": "2020-04-13", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2020-06-28", + "startDate": "2018-06-15", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true } ], "suspectLandUses": [ { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-12-29 (described on Site Profile dated 2021-12-29)", + "notes": "INSERTED FOR SITE PROFILE DATED 2014-06-11 (described on Site Profile dated 2014-06-11)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-02-01 (described on Site Profile dated 2018-02-01)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "notes": "INSERTED FOR SITE PROFILE DATED 2021-10-27 (described on Site Profile dated 2021-10-27)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-08-25 (described on Site Profile dated 2019-08-25)", + "notes": "INSERTED FOR SITE PROFILE DATED 2023-09-15 (described on Site Profile dated 2023-09-15)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2020-09-19 (described on Site Profile dated 2020-09-19)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + } + ], + "parcelDescriptions": [ { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2023-06-18 (described on Site Profile dated 2023-06-18)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "dateNoted": "2023-03-13", + "parcelID": "16645", + "crownLandUsePIN": "18977", + "crownLandFileNumber": "18839", + "landDescription": "LOT 3 OF LOT 4 BLOCK 1 DISTRICT LOT 2 PLAN 2955" + }, + { + "siteRegistry": false, + "dateNoted": "2021-08-26", + "parcelID": "18557", + "crownLandUsePIN": "19067", + "crownLandFileNumber": "18089", + "landDescription": "LOT 3 OF LOT 1 BLOCK 4 DISTRICT LOT 5 PLAN 3896" + }, + { + "siteRegistry": false, + "dateNoted": "2019-03-24", + "parcelID": "20133", + "crownLandUsePIN": "20250", + "crownLandFileNumber": "19229", + "landDescription": "LOT 2 OF LOT 2 BLOCK 2 DISTRICT LOT 2 PLAN 6584" + }, + { + "siteRegistry": false, + "dateNoted": "2023-09-25", + "parcelID": "15960", + "crownLandUsePIN": "20772", + "crownLandFileNumber": "20250", + "landDescription": "LOT 2 OF LOT 3 BLOCK 5 DISTRICT LOT 3 PLAN 4347" } ], "siteDisclosures": [ { "siteRegistry": false, - "dateReceived": "2018-07-18", - "dateCompleted": "2016-05-14", - "dateEntered": "2016-03-30", - "dateRegistrar": "2019-05-18", - "dateLocalAuthorityReceived": "2020-02-29", - "summary": "Culpa animi ipsam minima molestias laborum ab.\nNostrum asperiores inventore quas provident eveniet officiis.", - "informationUsed": "Perspiciatis perferendis alias ex consequuntur architecto minima cum.\nConsectetur ad voluptatum incidunt tenetur tempore adipisci aliquam.\nVero temporibus possimus alias quas nemo modi sed occaecati impedit.", - "pastOrPresentOrders": "Laboriosam optio nesciunt eos.\nBlanditiis nam nobis esse consequatur aspernatur cum incidunt.\nDoloremque sint laudantium facere recusandae consequuntur quisquam.", + "dateReceived": "2018-06-09", + "dateCompleted": "2019-12-21", + "dateEntered": "2014-07-10", + "dateRegistrar": "2018-10-24", + "dateLocalAuthorityReceived": "2020-09-23", + "summary": "Quisquam enim asperiores hic nostrum assumenda sequi hic quae fugit.\nPlaceat adipisci sunt et voluptates quas illo.\nNumquam tenetur ad quidem natus.", + "informationUsed": "Quaerat aliquid qui animi blanditiis nobis sapiente eum quaerat explicabo.\nEst ab mollitia et.\nConsequuntur aut quas culpa id.", + "pastOrPresentOrders": "Nobis unde illo.", "commercialAndIndustrialPurposes": [ { "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false + "siteRegistry": true + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true }, { "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false + "siteRegistry": true }, { - "scheduleReference": "F1*", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false + "siteRegistry": true + } + ] + }, + { + "siteRegistry": true, + "dateReceived": "2023-01-13", + "dateCompleted": "2015-03-29", + "dateEntered": "2014-11-19", + "dateRegistrar": "2015-09-16", + "dateLocalAuthorityReceived": "2023-01-01", + "summary": "Mollitia earum magni rerum eveniet commodi provident vel molestiae.\nQuos in sunt non libero nobis consequatur provident facere rerum.\nQuisquam delectus consequatur quae expedita facilis facilis.", + "informationUsed": "Eum iure voluptate hic adipisci rem.\nExcepturi aperiam accusantium rem inventore quod voluptatem fugiat illum.\nQuas accusamus deleniti.", + "pastOrPresentOrders": "Enim repellendus porro voluptatem adipisci iure voluptates incidunt.\nFugit incidunt eveniet doloribus possimus.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true } ] } @@ -55167,148 +60686,99 @@ { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "O'REILLY HILTON", - "timestamp": "2023-09-03" + "user": "O'KEEFE ZELLA", + "timestamp": "2018-12-22" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "WOLF JIMMY", - "timestamp": "2021-10-25" + "user": "CUMMERATA NOEL", + "timestamp": "2016-06-17" }, { - "siteRegistry": true, + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "ERNSER LEILANI", - "timestamp": "2019-12-08" + "user": "LITTEL SIMONE", + "timestamp": "2021-09-23" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "HARVEY GRANVILLE", - "timestamp": "2014-06-10" + "user": "KILBACK SAUL", + "timestamp": "2016-05-05" }, { - "siteRegistry": true, + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "MORAR ROSCOE", - "timestamp": "2013-11-22" + "user": "SCHAMBERGER EDNA", + "timestamp": "2019-11-19" }, { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "CORMIER FELIPE", - "timestamp": "2015-09-09" + "user": "ANKUNDING ARACELI", + "timestamp": "2021-05-10" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "BRUEN LOURDES", - "timestamp": "2017-09-30" + "user": "ZBONCAK MARQUES", + "timestamp": "2014-05-01" }, { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "BRAKUS MONSERRATE", - "timestamp": "2017-08-17" + "user": "DOUGLAS HAYLEY", + "timestamp": "2020-10-25" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "VONRUEDEN NELLIE", - "timestamp": "2019-02-25" + "user": "GOLDNER DORRIS", + "timestamp": "2023-03-05" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "SCHMELER MITTIE", - "timestamp": "2020-04-02" + "user": "MACEJKOVIC MAUDIE", + "timestamp": "2015-07-05" } ], "associatedSites": [ { - "dateNoted": "2013-11-17", - "notes": "", - "parcelID": "15776", - "siteID": "18509", - "siteRegistry": true - }, - { - "dateNoted": "2014-06-09", + "dateNoted": "2023-08-28", "notes": "", - "parcelID": "17612", - "siteID": "16813", + "parcelID": "16416", + "siteID": "18639", "siteRegistry": true - }, - { - "dateNoted": "2017-12-05", - "notes": "", - "parcelID": "17263", - "siteID": "16296", - "siteRegistry": false } ] }, { - "uuid": "859856ad-243b-4216-a5c3-c8ebe7fcbe96", - "siteID": 19013, - "address": "515 Amya Circle", - "latitude": 48.1734, - "longitude": -134.5103, - "lastUpdated": "2017-08-15", - "city": "Genovevaborough", - "region": "Cariboo", - "victoriaFile": "26250-20/6784", + "uuid": "90112ebd-c8eb-40cd-94cd-304e610bd540", + "siteID": 17017, + "address": "878 Moen Ferry", + "latitude": 51.8809, + "longitude": -118.896, + "lastUpdated": "2021-03-19", + "city": "Parkercester", + "region": "Thompson-Okanagan", + "victoriaFile": "26250-20/16064", "regionalFile": "N/A", "parcelIDs": [ - 8450549, - 9709315, - 5779737, - 4025283, - 2184827 + 1541002, + 6692856, + 1064707, + 2013143, + 2356542 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2023-01-07", - "completed": "2016-08-19", - "initiated": "2023-04-19", - "ministryContact": "SKILES BRIGITTE", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - } - ], - "siteRegistry": true - }, - { - "createdAt": "2022-12-25", - "completed": "2013-10-26", - "initiated": "2018-03-02", - "ministryContact": "KOCH KAREEM", + "createdAt": "2020-02-23", + "completed": "2017-10-10", + "initiated": "2022-10-29", + "ministryContact": "KUPHAL BARTHOLOME", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -55316,21 +60786,11 @@ "" ], "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", @@ -55340,10 +60800,10 @@ "siteRegistry": true }, { - "createdAt": "2018-01-14", - "completed": "2017-07-07", - "initiated": "2015-08-11", - "ministryContact": "KRAJCIK KARIANE", + "createdAt": "2020-07-19", + "completed": "2018-11-08", + "initiated": "2018-01-17", + "ministryContact": "HAMILL VELLA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -55352,13 +60812,8 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", "siteRegistry": false }, { @@ -55369,11 +60824,11 @@ { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": true } ], @@ -55382,49 +60837,49 @@ ], "participants": [ { - "name": "AMET, DOLOR SIT", - "endDate": "2019-04-15", - "startDate": "2014-09-06", + "name": "IPSUM", + "endDate": "2023-02-24", + "startDate": "2021-11-04", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2021-06-23", - "startDate": "2014-06-11", + "name": "AMET, DOLOR SIT", + "endDate": "2022-08-12", + "startDate": "2014-11-28", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], - "siteRegistry": true + "siteRegistry": false }, { - "name": "AMET, DOLOR SIT", - "endDate": "2021-02-09", - "startDate": "2015-06-15", + "name": "IPSUM", + "endDate": "2022-04-22", + "startDate": "2016-04-04", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2013-10-22", - "startDate": "2014-05-02", + "name": "AMET, DOLOR SIT", + "endDate": "2013-10-13", + "startDate": "2023-02-21", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": true + "siteRegistry": false }, { "name": "AMET, DOLOR SIT", - "endDate": "2019-11-01", - "startDate": "2021-12-23", + "endDate": "2017-10-08", + "startDate": "2022-05-10", "notes": "", "roles": [ "ORGANIZATION" @@ -55433,42 +60888,88 @@ } ], "suspectLandUses": [ + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2020-02-13 (described on Site Profile dated 2020-02-13)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2019-06-19 (described on Site Profile dated 2019-06-19)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-09-01 (described on Site Profile dated 2022-09-01)", + "notes": "INSERTED FOR SITE PROFILE DATED 2013-11-29 (described on Site Profile dated 2013-11-29)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-10-17 (described on Site Profile dated 2016-10-17)", + "notes": "INSERTED FOR SITE PROFILE DATED 2022-02-28 (described on Site Profile dated 2022-02-28)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2021-12-27 (described on Site Profile dated 2021-12-27)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + } + ], + "parcelDescriptions": [ + { + "siteRegistry": true, + "dateNoted": "2022-03-11", + "parcelID": "16603", + "crownLandUsePIN": "16792", + "crownLandFileNumber": "17036", + "landDescription": "LOT 4 OF LOT 4 BLOCK 4 DISTRICT LOT 4 PLAN 8704" + }, + { + "siteRegistry": true, + "dateNoted": "2019-01-21", + "parcelID": "19249", + "crownLandUsePIN": "15702", + "crownLandFileNumber": "20138", + "landDescription": "LOT 4 OF LOT 4 BLOCK 4 DISTRICT LOT 2 PLAN 4091" + }, + { + "siteRegistry": false, + "dateNoted": "2018-06-29", + "parcelID": "17137", + "crownLandUsePIN": "15360", + "crownLandFileNumber": "15283", + "landDescription": "LOT 3 OF LOT 5 BLOCK 1 DISTRICT LOT 3 PLAN 6647" } ], "siteDisclosures": [ { "siteRegistry": true, - "dateReceived": "2014-07-20", - "dateCompleted": "2020-11-23", - "dateEntered": "2020-08-07", - "dateRegistrar": "2015-11-03", - "dateLocalAuthorityReceived": "2018-11-09", - "summary": "Enim minus veniam.\nMaiores modi deleniti ullam quos assumenda unde saepe minus.", - "informationUsed": "Quos aliquid nam provident tempore voluptate neque omnis ea.\nEx itaque quos excepturi qui voluptatem.\nDolor voluptatum adipisci.", - "pastOrPresentOrders": "Fuga autem debitis dolorem corrupti laboriosam.\nLaudantium hic dolorum voluptas earum.", + "dateReceived": "2023-07-24", + "dateCompleted": "2015-04-25", + "dateEntered": "2023-08-28", + "dateRegistrar": "2017-04-17", + "dateLocalAuthorityReceived": "2016-02-05", + "summary": "Aliquam ut fugit commodi autem nostrum.", + "informationUsed": "Explicabo laudantium ducimus eaque hic.\nVeniam quam molestiae aspernatur harum esse nostrum perferendis.\nFugit quasi distinctio placeat.\nDolorum reprehenderit minus eaque unde dolor nisi.", + "pastOrPresentOrders": "Vero accusamus ullam optio minima.\nIpsum aliquid necessitatibus voluptates reprehenderit tenetur.\nLaudantium omnis aliquid molestiae quis non blanditiis laboriosam.", "commercialAndIndustrialPurposes": [ { "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true + "siteRegistry": false }, { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, { "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false } ] @@ -55476,96 +60977,108 @@ ], "activityLog": [ { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "WIEGAND MINA", - "timestamp": "2016-07-04" + "user": "WEHNER LOWELL", + "timestamp": "2016-06-10" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "HARBER YASMINE", - "timestamp": "2016-02-17" + "user": "FRANECKI VALENTINA", + "timestamp": "2022-09-01" }, { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "ABSHIRE GUIDO", - "timestamp": "2022-12-19" + "user": "CONNELLY LYDIA", + "timestamp": "2022-10-12" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "POLLICH EWELL", - "timestamp": "2017-10-13" + "user": "KOSS KALEY", + "timestamp": "2018-05-29" }, { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "LUETTGEN HOLLIS", - "timestamp": "2022-11-14" + "user": "SCHUSTER XZAVIER", + "timestamp": "2020-03-08" }, { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "HOPPE UNA", - "timestamp": "2022-07-31" + "user": "SAWAYN JANESSA", + "timestamp": "2014-04-16" }, { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "EMMERICH NATHANAEL", - "timestamp": "2015-03-01" + "user": "UPTON DAISY", + "timestamp": "2022-11-26" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "RAU GAGE", - "timestamp": "2021-05-03" + "user": "BEAHAN EWALD", + "timestamp": "2022-04-27" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "OKUNEVA JESS", + "timestamp": "2022-03-14" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "ZULAUF DOYLE", + "timestamp": "2015-03-24" } ], "associatedSites": [ { - "dateNoted": "2022-04-07", + "dateNoted": "2016-06-11", "notes": "", - "parcelID": "16848", - "siteID": "20782", + "parcelID": "19204", + "siteID": "16335", "siteRegistry": true }, { - "dateNoted": "2017-04-03", + "dateNoted": "2017-05-25", "notes": "", - "parcelID": "19817", - "siteID": "18839", - "siteRegistry": false + "parcelID": "18787", + "siteID": "16604", + "siteRegistry": true } ] }, { - "uuid": "e7eeead2-f8ec-4bfe-b0f6-f91a3b7e8e03", - "siteID": 19075, - "address": "7034 Hilll Hollow", - "latitude": 48.3946, - "longitude": -131.3523, - "lastUpdated": "2014-11-09", - "city": "New Ginafort", - "region": "Cariboo", - "victoriaFile": "26250-20/7822", + "uuid": "8f5ee416-287d-4e4b-8e38-48ce40079023", + "siteID": 17081, + "address": "2086 Wilkinson Road", + "latitude": 50.0768, + "longitude": -121.2458, + "lastUpdated": "2023-09-18", + "city": "Angeloberg", + "region": "Thompson-Okanagan", + "victoriaFile": "26250-20/4031", "regionalFile": "N/A", "parcelIDs": [ - 8394632, - 8082260, - 4366558, - 3426447, - 6738856 + 5219144, + 8146653, + 3356611, + 4023680, + 8480917 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2020-07-30", - "completed": "2022-10-22", - "initiated": "2014-08-25", - "ministryContact": "BREKKE RYLEY", + "createdAt": "2020-11-04", + "completed": "2019-10-22", + "initiated": "2020-03-31", + "ministryContact": "CARTER MANDY", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -55581,26 +61094,46 @@ { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "createdAt": "2023-04-12", + "completed": "2021-03-02", + "initiated": "2023-08-23", + "ministryContact": "KEMMER ALBINA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false } ], "siteRegistry": false }, { - "createdAt": "2023-07-18", - "completed": "2014-10-24", - "initiated": "2018-09-13", - "ministryContact": "HARVEY ALVERA", + "createdAt": "2019-07-01", + "completed": "2017-11-21", + "initiated": "2022-03-25", + "ministryContact": "KUB-SPINKA DIEGO", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -55611,26 +61144,36 @@ { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false } ], "siteRegistry": false }, { - "createdAt": "2023-07-11", - "completed": "2022-03-22", - "initiated": "2022-06-19", - "ministryContact": "KOCH ELMER", + "createdAt": "2022-06-19", + "completed": "2020-01-27", + "initiated": "2019-07-05", + "ministryContact": "HOWELL STERLING", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -55644,49 +61187,59 @@ "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false } ], "siteRegistry": true - } - ], - "participants": [ - { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2015-03-21", - "startDate": "2019-05-03", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": true }, { - "name": "AMET, DOLOR SIT", - "endDate": "2020-10-20", - "startDate": "2016-02-23", - "notes": "", - "roles": [ - "EMPLOYEE" + "createdAt": "2016-03-02", + "completed": "2016-11-16", + "initiated": "2023-06-06", + "ministryContact": "MOSCISKI UBALDO", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + } ], "siteRegistry": true - }, + } + ], + "participants": [ { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2017-01-21", - "startDate": "2015-08-15", + "name": "IPSUM", + "endDate": "2018-11-18", + "startDate": "2023-04-02", "notes": "", "roles": [ "EMPLOYEE" @@ -55694,73 +61247,104 @@ "siteRegistry": false }, { - "name": "IPSUM", - "endDate": "2015-01-18", - "startDate": "2014-12-03", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2014-04-18", - "startDate": "2019-06-22", + "name": "AMET, DOLOR SIT", + "endDate": "2019-12-24", + "startDate": "2020-11-04", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": false } ], "suspectLandUses": [ { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-05-19 (described on Site Profile dated 2014-05-19)", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2020-04-13 (described on Site Profile dated 2020-04-13)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-10-16 (described on Site Profile dated 2016-10-16)", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2016-08-30 (described on Site Profile dated 2016-08-30)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, - { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-06-29 (described on Site Profile dated 2016-06-29)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" - }, { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2020-09-22 (described on Site Profile dated 2020-09-22)", + "notes": "INSERTED FOR SITE PROFILE DATED 2023-05-01 (described on Site Profile dated 2023-05-01)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + } + ], + "parcelDescriptions": [ + { + "siteRegistry": false, + "dateNoted": "2021-04-26", + "parcelID": "15502", + "crownLandUsePIN": "16295", + "crownLandFileNumber": "18529", + "landDescription": "LOT 1 OF LOT 4 BLOCK 4 DISTRICT LOT 4 PLAN 6878" }, { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-02-24 (described on Site Profile dated 2015-02-24)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "dateNoted": "2021-03-28", + "parcelID": "17209", + "crownLandUsePIN": "20991", + "crownLandFileNumber": "17692", + "landDescription": "LOT 5 OF LOT 5 BLOCK 5 DISTRICT LOT 4 PLAN 6282" } ], "siteDisclosures": [ { "siteRegistry": true, - "dateReceived": "2022-09-05", - "dateCompleted": "2014-09-08", - "dateEntered": "2015-01-03", - "dateRegistrar": "2020-04-08", - "dateLocalAuthorityReceived": "2017-08-03", - "summary": "Numquam ut asperiores necessitatibus ea nulla ipsa recusandae recusandae ad.\nAb eligendi similique.", - "informationUsed": "Sint eligendi nulla.\nRatione impedit vitae quasi.\nSunt dolore provident ipsum error nemo doloribus est vel a.\nRatione doloremque quisquam facere exercitationem odio qui dolorem repellat dicta.\nExercitationem porro officia.", - "pastOrPresentOrders": "Amet esse repudiandae dolor perspiciatis.\nInventore expedita dicta officia dolor illo sequi quis corporis.", + "dateReceived": "2018-06-20", + "dateCompleted": "2021-02-22", + "dateEntered": "2018-01-16", + "dateRegistrar": "2016-08-13", + "dateLocalAuthorityReceived": "2015-10-27", + "summary": "Exercitationem voluptas iste harum deleniti.\nEum eum optio quibusdam.", + "informationUsed": "Dicta veniam voluptatum.\nConsequuntur velit nam odio maxime aspernatur.\nEt eius animi maxime odit voluptate voluptatibus dicta maiores.\nCulpa itaque iure cumque dignissimos quisquam nemo ea ab.", + "pastOrPresentOrders": "Magnam autem vel enim.", "commercialAndIndustrialPurposes": [ { - "scheduleReference": "F2*", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true + "siteRegistry": false }, { "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + } + ] + }, + { + "siteRegistry": true, + "dateReceived": "2018-01-24", + "dateCompleted": "2017-08-13", + "dateEntered": "2021-06-17", + "dateRegistrar": "2019-01-28", + "dateLocalAuthorityReceived": "2022-12-29", + "summary": "Aut dolor non accusamus fugiat ducimus harum aliquam.\nVitae nulla dicta cumque.\nFugit quasi corporis necessitatibus eaque quas aliquam corporis.", + "informationUsed": "Maxime voluptates doloremque saepe nihil.\nQuasi accusamus quasi labore.\nDeserunt debitis ipsum alias repellat inventore.", + "pastOrPresentOrders": "Exercitationem praesentium animi assumenda.\nQuis veniam incidunt magni quisquam.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false } ] @@ -55768,71 +61352,71 @@ ], "activityLog": [ { - "siteRegistry": true, + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "EBERT-OSINSKI MARJOLAINE", - "timestamp": "2013-10-26" + "user": "MERTZ ATHENA", + "timestamp": "2014-08-26" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "CHAMPLIN CAREY", - "timestamp": "2015-03-02" + "user": "SCHAEFER NOEMI", + "timestamp": "2014-10-15" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "VOLKMAN ROGERS", - "timestamp": "2017-01-03" + "user": "TRANTOW KALE", + "timestamp": "2016-08-10" }, { - "siteRegistry": true, + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "LARSON ELDRED", - "timestamp": "2015-10-08" + "user": "TILLMAN JULIE", + "timestamp": "2022-10-27" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "BAILEY MARGUERITE", - "timestamp": "2017-10-01" + "user": "BAUCH ANTONE", + "timestamp": "2019-11-17" } ], "associatedSites": [ { - "dateNoted": "2020-08-27", + "dateNoted": "2021-01-31", "notes": "", - "parcelID": "18123", - "siteID": "19590", - "siteRegistry": false + "parcelID": "16572", + "siteID": "19562", + "siteRegistry": true } ] }, { - "uuid": "ab255fd9-239c-4557-a2ce-80c61c39efcb", - "siteID": 16752, - "address": "274 Kertzmann Fork", - "latitude": 48.9094, - "longitude": -121.2263, - "lastUpdated": "2023-02-13", - "city": "San Bernardino", - "region": "Mainland/Southwest", - "victoriaFile": "26250-20/18917", + "uuid": "55215439-6865-4aaa-b821-e4b7daa24729", + "siteID": 18318, + "address": "610 Sawayn Crest", + "latitude": 55.9733, + "longitude": -136.4085, + "lastUpdated": "2014-09-08", + "city": "Greeley", + "region": " North Coast", + "victoriaFile": "26250-20/8711", "regionalFile": "N/A", "parcelIDs": [ - 3761052, - 5396063, - 8519103, - 6724538, - 3202089 + 171322, + 2309176, + 4567632, + 5777920, + 1651152 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2023-05-08", - "completed": "2019-03-09", - "initiated": "2018-04-11", - "ministryContact": "O'CONNELL DIMITRI", + "createdAt": "2014-03-23", + "completed": "2016-01-16", + "initiated": "2020-05-26", + "ministryContact": "ROWE ADRAIN", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -55843,28 +61427,8 @@ { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - } - ], - "siteRegistry": true - }, - { - "createdAt": "2014-01-05", - "completed": "2016-11-08", - "initiated": "2014-01-21", - "ministryContact": "SCHULIST JULIO", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", @@ -55875,6 +61439,11 @@ "role": "SUBMITTED BY", "siteRegistry": true }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", @@ -55884,10 +61453,10 @@ "siteRegistry": false }, { - "createdAt": "2013-12-19", - "completed": "2015-01-28", - "initiated": "2023-09-10", - "ministryContact": "FRIESEN BENNETT", + "createdAt": "2013-10-25", + "completed": "2017-12-08", + "initiated": "2014-07-12", + "ministryContact": "HARVEY AIMEE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -55896,8 +61465,8 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": true }, { @@ -55905,15 +61474,10 @@ "role": "REQUESTED BY", "siteRegistry": false }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false } ], "siteRegistry": false @@ -55922,8 +61486,8 @@ "participants": [ { "name": "AMET, DOLOR SIT", - "endDate": "2020-04-29", - "startDate": "2023-07-09", + "endDate": "2019-07-22", + "startDate": "2020-12-27", "notes": "", "roles": [ "EMPLOYEE" @@ -55932,18 +61496,18 @@ }, { "name": "SHELL CANADA PRODUCTS", - "endDate": "2017-04-25", - "startDate": "2020-08-08", + "endDate": "2021-10-08", + "startDate": "2014-09-24", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2020-09-08", - "startDate": "2017-09-24", + "endDate": "2017-04-19", + "startDate": "2021-08-18", "notes": "", "roles": [ "EMPLOYEE" @@ -55951,22 +61515,12 @@ "siteRegistry": false }, { - "name": "IPSUM", - "endDate": "2022-03-02", - "startDate": "2015-05-18", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2018-03-02", - "startDate": "2022-03-19", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2022-04-09", + "startDate": "2018-10-22", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": true } @@ -55974,64 +61528,70 @@ "suspectLandUses": [ { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-05-23 (described on Site Profile dated 2015-05-23)", + "notes": "INSERTED FOR SITE PROFILE DATED 2019-10-23 (described on Site Profile dated 2019-10-23)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-03-26 (described on Site Profile dated 2022-03-26)", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2016-08-04 (described on Site Profile dated 2016-08-04)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2023-03-10 (described on Site Profile dated 2023-03-10)", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2023-03-22 (described on Site Profile dated 2023-03-22)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2015-09-15 (described on Site Profile dated 2015-09-15)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], - "siteDisclosures": [ + "parcelDescriptions": [ { "siteRegistry": true, - "dateReceived": "2023-07-27", - "dateCompleted": "2015-07-29", - "dateEntered": "2017-12-06", - "dateRegistrar": "2023-03-17", - "dateLocalAuthorityReceived": "2023-07-08", - "summary": "Iste ea repellat voluptas ratione ad adipisci.\nCorporis excepturi iusto nam officia explicabo.\nAccusantium quod sed corporis neque consectetur voluptates quo officia voluptate.", - "informationUsed": "Delectus consequuntur molestias consectetur dolor laborum laudantium alias explicabo.\nProvident esse eius error sit accusantium totam similique nostrum debitis.\nCorporis et aut enim quasi.\nVoluptatibus veritatis ipsa laboriosam laudantium optio.\nArchitecto laboriosam modi.", - "pastOrPresentOrders": "Harum necessitatibus minus similique vel ipsa debitis architecto sed ipsam.\nEum dolorum debitis esse nisi amet debitis molestiae sequi inventore.", - "commercialAndIndustrialPurposes": [ - { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true - }, - { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true - }, - { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true - }, - { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false - } - ] + "dateNoted": "2017-12-16", + "parcelID": "17062", + "crownLandUsePIN": "20175", + "crownLandFileNumber": "18447", + "landDescription": "LOT 5 OF LOT 3 BLOCK 5 DISTRICT LOT 2 PLAN 3955" + }, + { + "siteRegistry": false, + "dateNoted": "2022-04-19", + "parcelID": "17092", + "crownLandUsePIN": "19434", + "crownLandFileNumber": "17053", + "landDescription": "LOT 4 OF LOT 1 BLOCK 2 DISTRICT LOT 4 PLAN 8005" }, { "siteRegistry": true, - "dateReceived": "2023-04-21", - "dateCompleted": "2016-04-12", - "dateEntered": "2022-07-10", - "dateRegistrar": "2017-07-05", - "dateLocalAuthorityReceived": "2016-06-27", - "summary": "Quam totam modi est nisi.\nIure explicabo doloribus voluptates enim ducimus.\nAnimi unde ipsa provident.", - "informationUsed": "Laborum repellat porro aliquid nesciunt cum sed.\nVelit mollitia ipsa pariatur assumenda cumque vero quo minus.\nDicta pariatur natus molestiae.\nFuga reprehenderit voluptate libero veniam.", - "pastOrPresentOrders": "Vitae eos mollitia.\nCorrupti at provident occaecati soluta distinctio dolorem maiores minima.", + "dateNoted": "2020-02-10", + "parcelID": "19486", + "crownLandUsePIN": "19831", + "crownLandFileNumber": "20784", + "landDescription": "LOT 1 OF LOT 4 BLOCK 4 DISTRICT LOT 3 PLAN 5415" + }, + { + "siteRegistry": true, + "dateNoted": "2020-09-15", + "parcelID": "19626", + "crownLandUsePIN": "18377", + "crownLandFileNumber": "20204", + "landDescription": "LOT 4 OF LOT 3 BLOCK 5 DISTRICT LOT 5 PLAN 6441" + } + ], + "siteDisclosures": [ + { + "siteRegistry": true, + "dateReceived": "2015-07-19", + "dateCompleted": "2022-04-13", + "dateEntered": "2021-02-26", + "dateRegistrar": "2017-11-04", + "dateLocalAuthorityReceived": "2014-12-30", + "summary": "Quo quo rerum distinctio voluptatum quod perspiciatis.\nOdit ex sit odit maxime est deserunt nihil asperiores.", + "informationUsed": "Fuga necessitatibus consectetur dolorum itaque deserunt architecto dolorem consequuntur labore.\nIllum laborum a.\nNisi accusamus similique quam nisi.\nEaque harum quae.\nFugiat soluta quam aperiam placeat harum tempora debitis aliquid alias.", + "pastOrPresentOrders": "Reprehenderit placeat exercitationem esse soluta magnam sapiente exercitationem quos saepe.", "commercialAndIndustrialPurposes": [ { "scheduleReference": "F1*", @@ -56039,99 +61599,92 @@ "siteRegistry": false }, { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false } ] } ], "activityLog": [ { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "MANN LAWSON", - "timestamp": "2022-07-27" + "user": "MANTE AMIRA", + "timestamp": "2023-05-22" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "EMMERICH JAMESON", - "timestamp": "2022-04-13" + "user": "POUROS DANA", + "timestamp": "2023-07-16" }, { - "siteRegistry": true, + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "GLEICHNER KAREN", - "timestamp": "2022-04-19" + "user": "POWLOWSKI CAMRON", + "timestamp": "2020-10-20" }, { - "siteRegistry": true, + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "HAAG FRIEDA", - "timestamp": "2014-02-25" + "user": "HIRTHE GEORGIANNA", + "timestamp": "2014-01-20" }, { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "KULAS KAILYN", - "timestamp": "2013-11-17" + "user": "GUTKOWSKI VITA", + "timestamp": "2023-02-20" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "HEANEY KANE", - "timestamp": "2017-09-04" + "user": "DENESIK JACLYN", + "timestamp": "2021-07-23" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "HIRTHE TIMMY", - "timestamp": "2021-08-14" + "user": "GLEICHNER CALEIGH", + "timestamp": "2014-01-10" } ], "associatedSites": [ { - "dateNoted": "2019-04-14", - "notes": "", - "parcelID": "20662", - "siteID": "19011", - "siteRegistry": true - }, - { - "dateNoted": "2023-08-30", + "dateNoted": "2018-11-22", "notes": "", - "parcelID": "17292", - "siteID": "18179", + "parcelID": "16221", + "siteID": "18801", "siteRegistry": true } ] }, { - "uuid": "6abf170b-0908-42c0-ae7d-a2329216527f", - "siteID": 17974, - "address": "963 Klein Fork", - "latitude": 52.9428, - "longitude": -125.6187, - "lastUpdated": "2018-10-03", - "city": "Hudsonton", - "region": "Kootenay", - "victoriaFile": "26250-20/15088", + "uuid": "427863a2-6062-45ae-8c86-116e505b0f98", + "siteID": 18134, + "address": "8826 Kuhn Inlet", + "latitude": 49.1483, + "longitude": -133.7441, + "lastUpdated": "2019-06-18", + "city": "Lake Alizatown", + "region": "Thompson-Okanagan", + "victoriaFile": "26250-20/14812", "regionalFile": "N/A", "parcelIDs": [ - 5455596, - 9718815, - 108437, - 9951102, - 2043986 + 8231535, + 1120091, + 842613, + 2194184, + 516829 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2016-05-26", - "completed": "2019-01-22", - "initiated": "2016-03-01", - "ministryContact": "NIENOW SHANNA", + "createdAt": "2014-01-21", + "completed": "2017-01-07", + "initiated": "2018-01-20", + "ministryContact": "ZIEME ELISEO", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -56141,7 +61694,7 @@ "notationParticipants": [ { "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true }, { @@ -56153,56 +61706,6 @@ "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true - } - ], - "siteRegistry": false - }, - { - "createdAt": "2016-05-03", - "completed": "2018-08-24", - "initiated": "2021-10-09", - "ministryContact": "HEANEY SHANNY", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - } - ], - "siteRegistry": true - }, - { - "createdAt": "2019-11-16", - "completed": "2020-08-28", - "initiated": "2017-03-28", - "ministryContact": "GLOVER DELILAH", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", @@ -56212,56 +61715,16 @@ { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false - } - ], - "siteRegistry": true - }, - { - "createdAt": "2015-04-08", - "completed": "2014-11-08", - "initiated": "2015-03-13", - "ministryContact": "KUTCH TRENT", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false } ], "siteRegistry": true }, { - "createdAt": "2018-10-24", - "completed": "2019-12-28", - "initiated": "2015-03-16", - "ministryContact": "BODE LYDA", + "createdAt": "2018-10-11", + "completed": "2017-11-18", + "initiated": "2019-01-22", + "ministryContact": "RITCHIE ISAI", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -56271,38 +61734,23 @@ "notationParticipants": [ { "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true } ], "participants": [ { "name": "SHELL CANADA PRODUCTS", - "endDate": "2015-11-06", - "startDate": "2022-03-02", + "endDate": "2018-05-22", + "startDate": "2019-12-09", "notes": "", "roles": [ "ORGANIZATION" @@ -56311,41 +61759,21 @@ }, { "name": "AMET, DOLOR SIT", - "endDate": "2014-02-18", - "startDate": "2020-05-17", + "endDate": "2015-04-09", + "startDate": "2020-08-19", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": false - }, - { - "name": "IPSUM", - "endDate": "2017-10-02", - "startDate": "2023-07-09", - "notes": "", - "roles": [ - "EMPLOYEE" - ], "siteRegistry": true }, - { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2018-10-09", - "startDate": "2020-04-29", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": false - }, { "name": "AMET, DOLOR SIT", - "endDate": "2019-12-22", - "startDate": "2019-10-07", + "endDate": "2016-02-01", + "startDate": "2021-08-18", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": false } @@ -56353,147 +61781,203 @@ "suspectLandUses": [ { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-04-05 (described on Site Profile dated 2014-04-05)", + "notes": "INSERTED FOR SITE PROFILE DATED 2023-03-23 (described on Site Profile dated 2023-03-23)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2014-06-10 (described on Site Profile dated 2014-06-10)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2016-07-29 (described on Site Profile dated 2016-07-29)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-12-07 (described on Site Profile dated 2014-12-07)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "notes": "INSERTED FOR SITE PROFILE DATED 2014-09-10 (described on Site Profile dated 2014-09-10)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2020-11-20 (described on Site Profile dated 2020-11-20)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "notes": "INSERTED FOR SITE PROFILE DATED 2014-09-01 (described on Site Profile dated 2014-09-01)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + } + ], + "parcelDescriptions": [ + { + "siteRegistry": true, + "dateNoted": "2021-11-06", + "parcelID": "19029", + "crownLandUsePIN": "19702", + "crownLandFileNumber": "16554", + "landDescription": "LOT 5 OF LOT 1 BLOCK 5 DISTRICT LOT 3 PLAN 7072" + }, + { + "siteRegistry": false, + "dateNoted": "2021-08-31", + "parcelID": "16550", + "crownLandUsePIN": "15424", + "crownLandFileNumber": "15259", + "landDescription": "LOT 4 OF LOT 5 BLOCK 5 DISTRICT LOT 2 PLAN 4393" + }, + { + "siteRegistry": true, + "dateNoted": "2019-08-30", + "parcelID": "17783", + "crownLandUsePIN": "20192", + "crownLandFileNumber": "16921", + "landDescription": "LOT 4 OF LOT 5 BLOCK 5 DISTRICT LOT 3 PLAN 5379" + }, + { + "siteRegistry": false, + "dateNoted": "2022-05-05", + "parcelID": "17924", + "crownLandUsePIN": "15781", + "crownLandFileNumber": "18602", + "landDescription": "LOT 1 OF LOT 1 BLOCK 5 DISTRICT LOT 1 PLAN 5943" } ], "siteDisclosures": [ { "siteRegistry": true, - "dateReceived": "2018-07-21", - "dateCompleted": "2014-03-26", - "dateEntered": "2020-05-18", - "dateRegistrar": "2015-10-19", - "dateLocalAuthorityReceived": "2013-12-04", - "summary": "Assumenda reprehenderit dolore repellat culpa molestias fuga enim nam dicta.", - "informationUsed": "Cum delectus autem vero dolores expedita sint nostrum.\nMagni tempora molestiae.\nIllum fugit est at.\nTenetur qui ab voluptas iusto repellendus at ullam.", - "pastOrPresentOrders": "In esse tempora molestias maiores.", + "dateReceived": "2021-04-28", + "dateCompleted": "2023-06-15", + "dateEntered": "2017-05-18", + "dateRegistrar": "2016-11-09", + "dateLocalAuthorityReceived": "2017-12-15", + "summary": "Tempora illum suscipit possimus maxime distinctio earum.", + "informationUsed": "Eligendi expedita eum architecto ullam.\nIllum perspiciatis assumenda consectetur neque nisi veniam excepturi laudantium.\nAliquam dolorum suscipit ad corporis beatae magnam quasi facilis consectetur.", + "pastOrPresentOrders": "Molestias consectetur libero id ducimus recusandae.\nPerspiciatis explicabo quaerat natus.\nPariatur atque praesentium quae necessitatibus.", "commercialAndIndustrialPurposes": [ { - "scheduleReference": "F2*", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false - }, - { - "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true + "siteRegistry": false } ] }, { - "siteRegistry": false, - "dateReceived": "2023-04-11", - "dateCompleted": "2021-05-17", - "dateEntered": "2016-12-27", - "dateRegistrar": "2017-08-22", - "dateLocalAuthorityReceived": "2020-04-02", - "summary": "Nemo dignissimos laudantium libero expedita sed aliquid quaerat repudiandae.\nNihil consequuntur dolor amet nemo vel magnam occaecati.\nNostrum nihil amet consectetur eius.", - "informationUsed": "Nam beatae accusamus eius sit.\nProvident quae vitae tempore asperiores in accusamus eum dicta.\nAspernatur accusamus magni beatae repellendus.", - "pastOrPresentOrders": "Soluta unde doloribus.\nTenetur expedita illum dicta itaque.\nFuga ratione occaecati ea est itaque ducimus maxime dolorum eaque.", + "siteRegistry": true, + "dateReceived": "2019-12-14", + "dateCompleted": "2017-04-11", + "dateEntered": "2016-02-11", + "dateRegistrar": "2016-06-14", + "dateLocalAuthorityReceived": "2014-08-09", + "summary": "Impedit corrupti architecto ex earum necessitatibus modi quam qui sed.\nIllum sed laudantium odit sit velit amet porro.\nCulpa officiis natus.", + "informationUsed": "Dolorem ex omnis sapiente quisquam placeat quia quisquam autem perspiciatis.\nExcepturi dolorem odio sed at.\nUnde fuga aliquid voluptas quasi exercitationem.\nTotam delectus maiores praesentium iusto id.\nDolores placeat natus doloremque voluptatibus nobis earum excepturi hic autem.", + "pastOrPresentOrders": "Rem hic maxime facilis impedit a vitae praesentium.\nCum totam architecto ipsam perspiciatis modi dolor aperiam.\nVoluptatibus dolore aut possimus.", "commercialAndIndustrialPurposes": [ { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false }, { "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false } ] } ], "activityLog": [ { - "siteRegistry": false, + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "SCHUMM LIANA", + "timestamp": "2017-04-28" + }, + { + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "KLOCKO ELNORA", - "timestamp": "2016-08-23" + "user": "LITTEL KAMRON", + "timestamp": "2019-02-09" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "PURDY ZACHARIAH", - "timestamp": "2018-08-18" + "user": "BARTELL HEIDI", + "timestamp": "2015-10-29" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "MOEN GRACIELA", - "timestamp": "2021-12-17" + "user": "GRIMES MYA", + "timestamp": "2015-10-04" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "LEDNER-CRONA MATTEO", - "timestamp": "2023-06-04" + "user": "NADER DRAKE", + "timestamp": "2016-08-29" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "ROBEL ANASTACIO", + "timestamp": "2014-03-11" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "SCHUSTER FRIEDA", - "timestamp": "2015-01-09" + "user": "HUDSON SANDRINE", + "timestamp": "2023-05-13" } ], "associatedSites": [ { - "dateNoted": "2023-08-11", + "dateNoted": "2022-06-24", "notes": "", - "parcelID": "16332", - "siteID": "17249", + "parcelID": "16585", + "siteID": "20555", "siteRegistry": false }, { - "dateNoted": "2023-04-26", + "dateNoted": "2018-03-27", "notes": "", - "parcelID": "20858", - "siteID": "17450", - "siteRegistry": true + "parcelID": "15664", + "siteID": "17950", + "siteRegistry": false } ] }, { - "uuid": "cb6551c8-271f-4385-82a8-fc21425f1353", - "siteID": 20942, - "address": "1818 Lucy Keys", - "latitude": 48.0791, - "longitude": -135.8696, - "lastUpdated": "2023-07-05", - "city": "Lake Caitlyn", - "region": "Kootenay", - "victoriaFile": "26250-20/11695", + "uuid": "5af00e8f-fbd1-4562-995e-168a2ac505a5", + "siteID": 18547, + "address": "352 Alvina Greens", + "latitude": 54.1838, + "longitude": -118.4317, + "lastUpdated": "2020-06-26", + "city": "Bernhardstad", + "region": "Vancouver Island/Coast", + "victoriaFile": "26250-20/1513", "regionalFile": "N/A", "parcelIDs": [ - 2374230, - 3828913, - 9359093, - 3438106, - 1039067 + 917928, + 4589049, + 5007959, + 8577122, + 1956489 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2014-01-22", - "completed": "2022-01-29", - "initiated": "2017-07-02", - "ministryContact": "MCGLYNN BRANNON", + "createdAt": "2023-05-07", + "completed": "2016-10-09", + "initiated": "2020-06-26", + "ministryContact": "O'HARA NYAH", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -56502,38 +61986,23 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true } ], "siteRegistry": false }, { - "createdAt": "2016-05-23", - "completed": "2022-12-03", - "initiated": "2017-03-05", - "ministryContact": "WILDERMAN CARLI", + "createdAt": "2016-02-28", + "completed": "2017-10-13", + "initiated": "2020-01-03", + "ministryContact": "KIEHN GARTH", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -56546,11 +62015,6 @@ "role": "REQUESTED BY", "siteRegistry": true }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", @@ -56560,16 +62024,31 @@ "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true } ], "participants": [ { - "name": "AMET, DOLOR SIT", - "endDate": "2023-06-01", - "startDate": "2016-09-26", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2015-02-11", + "startDate": "2017-11-16", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "IPSUM", + "endDate": "2023-04-01", + "startDate": "2018-07-30", "notes": "", "roles": [ "EMPLOYEE" @@ -56578,18 +62057,18 @@ }, { "name": "AMET, DOLOR SIT", - "endDate": "2015-04-27", - "startDate": "2015-11-21", + "endDate": "2020-10-24", + "startDate": "2014-06-07", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": true }, { "name": "IPSUM", - "endDate": "2019-01-07", - "startDate": "2022-06-30", + "endDate": "2018-11-21", + "startDate": "2016-09-09", "notes": "", "roles": [ "EMPLOYEE" @@ -56597,45 +62076,115 @@ "siteRegistry": true }, { - "name": "AMET, DOLOR SIT", - "endDate": "2019-08-16", - "startDate": "2023-06-17", + "name": "IPSUM", + "endDate": "2023-02-18", + "startDate": "2015-11-29", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false } ], "suspectLandUses": [ { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-09-15 (described on Site Profile dated 2021-09-15)", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2015-07-22 (described on Site Profile dated 2015-07-22)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2019-12-25 (described on Site Profile dated 2019-12-25)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-10-20 (described on Site Profile dated 2014-10-20)", + "notes": "INSERTED FOR SITE PROFILE DATED 2023-02-13 (described on Site Profile dated 2023-02-13)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2018-05-23 (described on Site Profile dated 2018-05-23)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], - "siteDisclosures": [ + "parcelDescriptions": [ { "siteRegistry": false, - "dateReceived": "2013-11-17", - "dateCompleted": "2021-11-29", - "dateEntered": "2017-11-25", - "dateRegistrar": "2019-11-28", - "dateLocalAuthorityReceived": "2021-07-10", - "summary": "Quisquam quis non earum minus molestias enim natus doloremque voluptatem.\nMolestias ut autem non ullam eaque.", - "informationUsed": "Temporibus numquam provident eligendi vero laborum.\nEx in eos iusto ex quis voluptate harum odio voluptas.\nRem necessitatibus laboriosam.\nNemo ad quidem ratione tenetur id ea.\nReiciendis impedit dolorum quos doloribus quasi modi sunt.", - "pastOrPresentOrders": "Excepturi in libero excepturi odit magni consequatur eos aliquam.", + "dateNoted": "2022-02-24", + "parcelID": "20364", + "crownLandUsePIN": "17610", + "crownLandFileNumber": "17443", + "landDescription": "LOT 4 OF LOT 4 BLOCK 1 DISTRICT LOT 2 PLAN 6292" + }, + { + "siteRegistry": false, + "dateNoted": "2019-08-20", + "parcelID": "19930", + "crownLandUsePIN": "17689", + "crownLandFileNumber": "18584", + "landDescription": "LOT 5 OF LOT 3 BLOCK 2 DISTRICT LOT 5 PLAN 9434" + }, + { + "siteRegistry": false, + "dateNoted": "2020-08-07", + "parcelID": "20051", + "crownLandUsePIN": "20650", + "crownLandFileNumber": "18781", + "landDescription": "LOT 3 OF LOT 2 BLOCK 5 DISTRICT LOT 4 PLAN 4813" + }, + { + "siteRegistry": true, + "dateNoted": "2017-01-17", + "parcelID": "16076", + "crownLandUsePIN": "20990", + "crownLandFileNumber": "16367", + "landDescription": "LOT 2 OF LOT 5 BLOCK 3 DISTRICT LOT 5 PLAN 3752" + }, + { + "siteRegistry": true, + "dateNoted": "2021-04-30", + "parcelID": "16670", + "crownLandUsePIN": "18135", + "crownLandFileNumber": "19564", + "landDescription": "LOT 3 OF LOT 1 BLOCK 5 DISTRICT LOT 5 PLAN 9778" + } + ], + "siteDisclosures": [ + { + "siteRegistry": true, + "dateReceived": "2015-02-09", + "dateCompleted": "2021-05-23", + "dateEntered": "2022-01-26", + "dateRegistrar": "2016-05-28", + "dateLocalAuthorityReceived": "2014-08-26", + "summary": "Dicta exercitationem voluptatum quam nostrum voluptas amet sint amet.\nNam ut inventore quibusdam omnis necessitatibus.", + "informationUsed": "At earum repudiandae illum nihil temporibus vero distinctio impedit.\nAb est voluptate commodi fugit nulla.\nNostrum esse optio facere aspernatur voluptatum repudiandae.\nTempore quaerat dolor quod repellendus.\nLaudantium veritatis impedit sunt cum tempora assumenda iure laudantium.", + "pastOrPresentOrders": "Animi iure odio nulla.\nArchitecto nam molestias quibusdam culpa dignissimos ullam consectetur sit blanditiis.\nOfficia ex amet maiores sed corrupti aliquid quasi aliquam.", "commercialAndIndustrialPurposes": [ { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + } + ] + }, + { + "siteRegistry": false, + "dateReceived": "2016-05-05", + "dateCompleted": "2020-04-19", + "dateEntered": "2018-03-28", + "dateRegistrar": "2023-08-17", + "dateLocalAuthorityReceived": "2021-08-02", + "summary": "Quam odio quibusdam repudiandae sapiente doloribus odio eos architecto velit.\nNeque sed tenetur molestiae veritatis libero enim corrupti eos.\nCumque voluptas deserunt quod quasi ab.", + "informationUsed": "Nemo atque dolore nulla corporis.\nTemporibus eum similique.\nQuisquam perferendis aliquid.", + "pastOrPresentOrders": "Hic dolore delectus.", + "commercialAndIndustrialPurposes": [ { "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", @@ -56647,7 +62196,7 @@ "siteRegistry": true }, { - "scheduleReference": "F2*", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true } @@ -56656,84 +62205,96 @@ ], "activityLog": [ { - "siteRegistry": true, + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "GUTKOWSKI CARMINE", - "timestamp": "2015-04-11" + "user": "REICHEL SUMMER", + "timestamp": "2017-03-01" }, { - "siteRegistry": true, + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "SIPES JARRETT", - "timestamp": "2019-03-25" + "user": "HARVEY ALTHEA", + "timestamp": "2015-02-23" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "KUNDE DAMON", + "timestamp": "2014-05-22" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "AUER DELBERT", + "timestamp": "2015-02-09" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "BARTOLETTI FRANCESCA", - "timestamp": "2016-02-27" + "user": "THIEL NEDRA", + "timestamp": "2023-04-15" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "SATTERFIELD ELDON", - "timestamp": "2018-08-14" + "user": "REICHERT VANESSA", + "timestamp": "2019-06-20" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "PACOCHA MARJOLAINE", - "timestamp": "2017-03-02" + "user": "WEISSNAT AMANDA", + "timestamp": "2014-03-24" }, { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "HALEY DAMARIS", - "timestamp": "2022-05-13" + "user": "SCHINNER SELINA", + "timestamp": "2015-04-21" } ], "associatedSites": [ { - "dateNoted": "2023-06-25", + "dateNoted": "2023-03-05", "notes": "", - "parcelID": "16030", - "siteID": "15594", - "siteRegistry": true + "parcelID": "15840", + "siteID": "16392", + "siteRegistry": false }, { - "dateNoted": "2016-07-05", + "dateNoted": "2018-12-11", "notes": "", - "parcelID": "19461", - "siteID": "17826", + "parcelID": "17552", + "siteID": "20424", "siteRegistry": false } ] }, { - "uuid": "f37bcc20-98fe-49bd-8d76-b0d4cf7b035a", - "siteID": 19103, - "address": "64372 Ronny Mission", - "latitude": 54.6691, - "longitude": -125.9339, - "lastUpdated": "2016-09-11", - "city": "South Roycester", - "region": "Vancouver Island/Coast", - "victoriaFile": "26250-20/18592", + "uuid": "b2e819ff-d697-47d4-ade6-dd8e6294f777", + "siteID": 17828, + "address": "25458 Cathy Spur", + "latitude": 51.2333, + "longitude": -120.3147, + "lastUpdated": "2014-04-14", + "city": "North Dandre", + "region": " North Coast", + "victoriaFile": "26250-20/14017", "regionalFile": "N/A", "parcelIDs": [ - 679372, - 932527, - 4775720, - 7513111, - 2039558 + 4895017, + 879492, + 3045630, + 1770492, + 7768733 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2019-04-13", - "completed": "2023-04-09", - "initiated": "2014-04-13", - "ministryContact": "VANDERVORT JOANNY", + "createdAt": "2017-06-03", + "completed": "2021-09-21", + "initiated": "2022-09-23", + "ministryContact": "LEANNON BRANDO", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -56743,47 +62304,32 @@ "notationParticipants": [ { "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true - } - ], - "siteRegistry": false - }, - { - "createdAt": "2019-05-28", - "completed": "2017-07-07", - "initiated": "2019-06-27", - "ministryContact": "ERNSER JEFF", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ + }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2021-01-04", - "completed": "2021-08-23", - "initiated": "2016-04-16", - "ministryContact": "STARK ZENA", + "createdAt": "2020-02-07", + "completed": "2019-04-05", + "initiated": "2015-06-24", + "ministryContact": "THIEL ALVERTA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -56794,21 +62340,21 @@ { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2014-12-17", - "completed": "2018-10-16", - "initiated": "2020-08-30", - "ministryContact": "SANFORD CHANDLER", + "createdAt": "2022-06-08", + "completed": "2023-03-27", + "initiated": "2016-10-27", + "ministryContact": "REINGER FORD", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -56817,8 +62363,8 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": false }, { @@ -56827,19 +62373,9 @@ "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true } ], "siteRegistry": false @@ -56847,94 +62383,117 @@ ], "participants": [ { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2014-11-09", - "startDate": "2018-06-20", + "name": "IPSUM", + "endDate": "2017-09-28", + "startDate": "2018-03-18", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": true }, { - "name": "AMET, DOLOR SIT", - "endDate": "2021-03-28", - "startDate": "2015-03-03", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2020-09-18", + "startDate": "2020-01-02", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": true }, { "name": "IPSUM", - "endDate": "2018-11-27", - "startDate": "2015-04-27", + "endDate": "2014-08-11", + "startDate": "2023-05-10", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2023-01-24", - "startDate": "2015-02-06", + "name": "AMET, DOLOR SIT", + "endDate": "2023-07-13", + "startDate": "2018-12-30", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false } ], "suspectLandUses": [ + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2018-08-29 (described on Site Profile dated 2018-08-29)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-10-03 (described on Site Profile dated 2014-10-03)", + "notes": "INSERTED FOR SITE PROFILE DATED 2016-08-15 (described on Site Profile dated 2016-08-15)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-01-05 (described on Site Profile dated 2016-01-05)", + "notes": "INSERTED FOR SITE PROFILE DATED 2022-12-31 (described on Site Profile dated 2022-12-31)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2023-08-01 (described on Site Profile dated 2023-08-01)", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2019-01-01 (described on Site Profile dated 2019-01-01)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-10-26 (described on Site Profile dated 2019-10-26)", + "notes": "INSERTED FOR SITE PROFILE DATED 2021-10-28 (described on Site Profile dated 2021-10-28)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], - "siteDisclosures": [ + "parcelDescriptions": [ + { + "siteRegistry": false, + "dateNoted": "2018-04-15", + "parcelID": "18214", + "crownLandUsePIN": "15421", + "crownLandFileNumber": "17397", + "landDescription": "LOT 4 OF LOT 2 BLOCK 5 DISTRICT LOT 4 PLAN 4596" + }, { "siteRegistry": true, - "dateReceived": "2016-06-24", - "dateCompleted": "2014-09-30", - "dateEntered": "2021-10-26", - "dateRegistrar": "2016-11-24", - "dateLocalAuthorityReceived": "2016-06-29", - "summary": "Ad eligendi ipsa.", - "informationUsed": "Fuga deleniti at corrupti.\nSequi molestiae dolorem laboriosam eius labore.\nInventore minima repellendus ab quo placeat laudantium ipsam sapiente perspiciatis.", - "pastOrPresentOrders": "Reiciendis labore inventore aliquid delectus ex eos.\nAut recusandae occaecati ullam nam libero nulla veniam quam.\nItaque alias nulla.", + "dateNoted": "2016-03-24", + "parcelID": "18937", + "crownLandUsePIN": "17579", + "crownLandFileNumber": "17163", + "landDescription": "LOT 4 OF LOT 1 BLOCK 4 DISTRICT LOT 2 PLAN 7914" + } + ], + "siteDisclosures": [ + { + "siteRegistry": false, + "dateReceived": "2019-04-14", + "dateCompleted": "2023-05-03", + "dateEntered": "2022-07-17", + "dateRegistrar": "2017-05-09", + "dateLocalAuthorityReceived": "2017-08-04", + "summary": "Labore ducimus facilis earum similique.", + "informationUsed": "Cum tenetur aliquid quas voluptate enim quis.\nPariatur qui reiciendis et expedita incidunt cumque quaerat esse.\nUnde vitae similique incidunt magnam consectetur laborum.\nDelectus et pariatur.", + "pastOrPresentOrders": "Libero quis officiis voluptatum veniam.", "commercialAndIndustrialPurposes": [ { "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true }, { "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, { - "scheduleReference": "F2*", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false + "siteRegistry": true } ] } @@ -56943,75 +62502,113 @@ { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "ROGAHN QUINTEN", - "timestamp": "2015-04-25" + "user": "LARSON META", + "timestamp": "2017-09-18" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "ERNSER EMMANUELLE", - "timestamp": "2014-10-19" + "user": "HAGENES ANNABELLE", + "timestamp": "2023-10-03" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "DECKOW GUSSIE", - "timestamp": "2014-05-04" + "user": "MANTE ANGUS", + "timestamp": "2017-11-26" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "NITZSCHE VIDAL", - "timestamp": "2019-07-24" + "user": "KIEHN SOPHIA", + "timestamp": "2020-11-18" }, { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "MUELLER EVELINE", - "timestamp": "2017-02-13" + "user": "LEANNON CONNIE", + "timestamp": "2016-01-04" }, { - "siteRegistry": false, + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "FRAMI MARIBEL", + "timestamp": "2015-12-04" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "GOYETTE FREDDY", + "timestamp": "2020-02-04" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "AUFDERHAR LACEY", + "timestamp": "2016-05-16" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "TURNER VERDA", + "timestamp": "2015-10-10" + }, + { + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "KUVALIS-SCHIMMEL BLANCA", - "timestamp": "2016-08-02" + "user": "VANDERVORT-TORP XANDER", + "timestamp": "2014-03-07" } ], "associatedSites": [ { - "dateNoted": "2023-01-13", + "dateNoted": "2016-05-19", + "notes": "", + "parcelID": "16559", + "siteID": "18292", + "siteRegistry": true + }, + { + "dateNoted": "2017-04-21", + "notes": "", + "parcelID": "17121", + "siteID": "19650", + "siteRegistry": false + }, + { + "dateNoted": "2019-10-11", "notes": "", - "parcelID": "18517", - "siteID": "16220", + "parcelID": "15339", + "siteID": "16096", "siteRegistry": true } ] }, { - "uuid": "5bdd4f24-212f-42fc-9fd2-a7cbb2b0a7a7", - "siteID": 17281, - "address": "2294 Rippin Hills", - "latitude": 52.3264, - "longitude": -127.1665, - "lastUpdated": "2020-06-20", - "city": "Marionborough", - "region": " North Coast", - "victoriaFile": "26250-20/1466", + "uuid": "e81752eb-5383-40db-9a56-16ce7439e898", + "siteID": 20325, + "address": "1613 Scottie Wall", + "latitude": 49.6417, + "longitude": -125.0862, + "lastUpdated": "2021-01-12", + "city": "West New York", + "region": "Kootenay", + "victoriaFile": "26250-20/19502", "regionalFile": "N/A", "parcelIDs": [ - 299912, - 8347732, - 9479261, - 9874824, - 2113548 + 8141455, + 2129224, + 7665263, + 8453909, + 8130110 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2015-02-04", - "completed": "2016-01-11", - "initiated": "2017-03-13", - "ministryContact": "KOCH DREW", + "createdAt": "2014-07-21", + "completed": "2017-02-22", + "initiated": "2018-11-03", + "ministryContact": "HAUCK VERNA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -57020,28 +62617,38 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2023-08-14", - "completed": "2015-12-02", - "initiated": "2021-03-13", - "ministryContact": "SPORER DARBY", + "createdAt": "2021-07-18", + "completed": "2020-10-02", + "initiated": "2021-10-04", + "ministryContact": "OKUNEVA LEANN", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -57050,28 +62657,28 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2018-08-03", - "completed": "2015-06-05", - "initiated": "2016-09-12", - "ministryContact": "PARISIAN HOLDEN", + "createdAt": "2022-01-09", + "completed": "2019-06-08", + "initiated": "2021-06-02", + "ministryContact": "SATTERFIELD CAROLYNE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -57081,13 +62688,8 @@ "notationParticipants": [ { "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", @@ -57096,11 +62698,6 @@ }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false } @@ -57109,20 +62706,10 @@ } ], "participants": [ - { - "name": "AMET, DOLOR SIT", - "endDate": "2014-08-23", - "startDate": "2018-04-16", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": false - }, { "name": "SHELL CANADA PRODUCTS", - "endDate": "2016-05-09", - "startDate": "2016-07-04", + "endDate": "2019-05-17", + "startDate": "2018-03-04", "notes": "", "roles": [ "ORGANIZATION" @@ -57130,9 +62717,9 @@ "siteRegistry": true }, { - "name": "IPSUM", - "endDate": "2017-02-19", - "startDate": "2019-04-24", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2019-03-13", + "startDate": "2018-10-26", "notes": "", "roles": [ "ORGANIZATION" @@ -57140,79 +62727,128 @@ "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2023-08-07", - "startDate": "2020-07-01", + "name": "IPSUM", + "endDate": "2021-03-12", + "startDate": "2021-03-22", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": false - }, - { - "name": "AMET, DOLOR SIT", - "endDate": "2021-09-18", - "startDate": "2020-10-21", - "notes": "", - "roles": [ - "ORGANIZATION" - ], "siteRegistry": true } ], "suspectLandUses": [ + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2019-09-19 (described on Site Profile dated 2019-09-19)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-08-21 (described on Site Profile dated 2014-08-21)", + "notes": "INSERTED FOR SITE PROFILE DATED 2016-07-07 (described on Site Profile dated 2016-07-07)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-10-18 (described on Site Profile dated 2021-10-18)", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2023-09-20 (described on Site Profile dated 2023-09-20)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-11-28 (described on Site Profile dated 2022-11-28)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "notes": "INSERTED FOR SITE PROFILE DATED 2017-08-27 (described on Site Profile dated 2017-08-27)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-12-01 (described on Site Profile dated 2016-12-01)", + "notes": "INSERTED FOR SITE PROFILE DATED 2022-08-29 (described on Site Profile dated 2022-08-29)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], - "siteDisclosures": [ + "parcelDescriptions": [ + { + "siteRegistry": true, + "dateNoted": "2015-12-01", + "parcelID": "17299", + "crownLandUsePIN": "20876", + "crownLandFileNumber": "19477", + "landDescription": "LOT 2 OF LOT 1 BLOCK 3 DISTRICT LOT 5 PLAN 4460" + }, { "siteRegistry": false, - "dateReceived": "2023-03-01", - "dateCompleted": "2023-02-17", - "dateEntered": "2013-11-29", - "dateRegistrar": "2017-11-02", - "dateLocalAuthorityReceived": "2020-03-11", - "summary": "Nobis minus saepe.", - "informationUsed": "Rerum libero illum neque quos.\nMolestias quisquam ratione facilis placeat atque dignissimos.\nIllo error culpa ipsa.\nLaborum nobis aliquid dolorum enim.", - "pastOrPresentOrders": "Eligendi quod cupiditate officia.", + "dateNoted": "2017-08-20", + "parcelID": "16630", + "crownLandUsePIN": "16394", + "crownLandFileNumber": "18547", + "landDescription": "LOT 5 OF LOT 4 BLOCK 1 DISTRICT LOT 4 PLAN 3733" + }, + { + "siteRegistry": true, + "dateNoted": "2016-07-02", + "parcelID": "17688", + "crownLandUsePIN": "19004", + "crownLandFileNumber": "17349", + "landDescription": "LOT 4 OF LOT 2 BLOCK 5 DISTRICT LOT 4 PLAN 6437" + } + ], + "siteDisclosures": [ + { + "siteRegistry": true, + "dateReceived": "2018-12-21", + "dateCompleted": "2014-06-22", + "dateEntered": "2017-01-18", + "dateRegistrar": "2018-07-19", + "dateLocalAuthorityReceived": "2018-11-14", + "summary": "Similique voluptatem doloribus dolore recusandae doloribus modi.\nOccaecati in sit praesentium pariatur ratione unde.\nId consequatur dolore magni dolores vel.", + "informationUsed": "Quam neque deleniti officiis nulla repellendus ratione blanditiis tempore nostrum.\nArchitecto eveniet magnam molestias.\nQuis doloribus nulla ex autem voluptatem molestias ipsum dolores.\nQuasi nam magni hic rem ab voluptatem dolorem officiis.", + "pastOrPresentOrders": "Earum quaerat sint.\nExcepturi reprehenderit dolores repudiandae aliquam repellat.", "commercialAndIndustrialPurposes": [ { - "scheduleReference": "F1*", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false }, { - "scheduleReference": "F1*", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { - "scheduleReference": "F1*", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true - }, + } + ] + }, + { + "siteRegistry": false, + "dateReceived": "2020-06-05", + "dateCompleted": "2015-06-16", + "dateEntered": "2021-10-21", + "dateRegistrar": "2018-10-04", + "dateLocalAuthorityReceived": "2020-09-12", + "summary": "A consequuntur tenetur inventore repellendus adipisci temporibus.\nIure veritatis voluptatem.", + "informationUsed": "Autem accusantium saepe voluptas eveniet.\nRepellendus deserunt corrupti.\nVitae aliquam consequuntur esse esse non enim corrupti excepturi.", + "pastOrPresentOrders": "Quis quae inventore rem nobis ea laudantium inventore odio.", + "commercialAndIndustrialPurposes": [ { "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false } ] } @@ -57221,101 +62857,95 @@ { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "LUBOWITZ BARTHOLOME", - "timestamp": "2021-07-22" + "user": "TILLMAN BROOKS", + "timestamp": "2017-04-22" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "WOLF LINDSEY", - "timestamp": "2021-02-28" + "user": "KRIS ORAN", + "timestamp": "2017-08-19" }, { - "siteRegistry": true, + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "GRAHAM MERL", - "timestamp": "2018-07-01" + "user": "KSHLERIN ALIA", + "timestamp": "2023-09-07" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "HARBER HORACE", - "timestamp": "2015-01-09" + "user": "CORMIER LURA", + "timestamp": "2015-05-21" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "BRAKUS KEN", - "timestamp": "2015-07-04" + "user": "FAHEY DEONDRE", + "timestamp": "2018-03-30" }, { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "MCCLURE MARGUERITE", - "timestamp": "2021-10-10" + "user": "FERRY DECLAN", + "timestamp": "2020-11-16" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "WEIMANN BRAIN", - "timestamp": "2022-10-24" - }, - { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "STROMAN ELVERA", - "timestamp": "2018-02-22" + "user": "O'HARA KENNETH", + "timestamp": "2015-09-10" } ], "associatedSites": [ { - "dateNoted": "2022-08-15", + "dateNoted": "2017-09-11", "notes": "", - "parcelID": "15226", - "siteID": "15592", + "parcelID": "19146", + "siteID": "16934", "siteRegistry": false }, { - "dateNoted": "2021-07-24", + "dateNoted": "2015-06-01", "notes": "", - "parcelID": "18005", - "siteID": "18066", + "parcelID": "15697", + "siteID": "19427", "siteRegistry": true }, { - "dateNoted": "2014-09-10", + "dateNoted": "2021-03-01", "notes": "", - "parcelID": "17267", - "siteID": "16303", - "siteRegistry": true + "parcelID": "19019", + "siteID": "16138", + "siteRegistry": false } ] }, { - "uuid": "204bef86-6885-4c73-9699-60d2f02f42b1", - "siteID": 17854, - "address": "8977 Quigley Manor", - "latitude": 52.022, - "longitude": -126.0358, - "lastUpdated": "2015-10-07", - "city": "Raphaelfield", - "region": "Vancouver Island/Coast", - "victoriaFile": "26250-20/11535", + "uuid": "a23f8c40-6df3-466f-8a39-5f5e251df917", + "siteID": 16392, + "address": "543 Trantow Lights", + "latitude": 54.0749, + "longitude": -132.3958, + "lastUpdated": "2020-11-27", + "city": "East Jamieshire", + "region": "Cariboo", + "victoriaFile": "26250-20/9737", "regionalFile": "N/A", "parcelIDs": [ - 1628482, - 5368136, - 9258663, - 2937698, - 9973151 + 4339510, + 5289245, + 2402064, + 7102275, + 190255 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2019-05-13", - "completed": "2022-12-20", - "initiated": "2022-05-05", - "ministryContact": "PREDOVIC SETH", + "createdAt": "2017-04-12", + "completed": "2015-03-04", + "initiated": "2014-07-06", + "ministryContact": "DANIEL GARRISON", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -57323,6 +62953,11 @@ "" ], "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", @@ -57330,32 +62965,52 @@ }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "createdAt": "2015-01-21", + "completed": "2018-08-01", + "initiated": "2017-07-03", + "ministryContact": "TURCOTTE-BODE LORA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", "siteRegistry": false } ], "siteRegistry": false }, { - "createdAt": "2020-11-09", - "completed": "2019-05-04", - "initiated": "2017-09-01", - "ministryContact": "HOWE CHRISTINE", + "createdAt": "2019-05-22", + "completed": "2019-04-21", + "initiated": "2014-01-18", + "ministryContact": "STAMM ZITA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -57366,13 +63021,23 @@ { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": false }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", @@ -57382,10 +63047,10 @@ "siteRegistry": false }, { - "createdAt": "2018-04-25", - "completed": "2017-11-09", - "initiated": "2020-01-17", - "ministryContact": "THOMPSON VIVIANE", + "createdAt": "2020-06-07", + "completed": "2023-06-26", + "initiated": "2016-02-13", + "ministryContact": "DIBBERT POLLY", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -57395,12 +63060,12 @@ "notationParticipants": [ { "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false }, { @@ -57410,17 +63075,17 @@ }, { "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true + "role": "SUBMITTED BY", + "siteRegistry": false } ], "siteRegistry": false }, { - "createdAt": "2023-09-14", - "completed": "2021-07-09", - "initiated": "2020-11-16", - "ministryContact": "TORPHY THEA", + "createdAt": "2020-06-04", + "completed": "2015-05-07", + "initiated": "2022-04-21", + "ministryContact": "KRIS DEREK", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -57430,11 +63095,11 @@ "notationParticipants": [ { "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false }, @@ -57444,14 +63109,14 @@ "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false } ], "participants": [ { "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2014-10-26", - "startDate": "2022-09-20", + "endDate": "2023-08-26", + "startDate": "2019-07-06", "notes": "", "roles": [ "ORGANIZATION" @@ -57459,165 +63124,243 @@ "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2015-05-24", - "startDate": "2019-10-31", + "name": "IPSUM", + "endDate": "2017-11-23", + "startDate": "2018-03-03", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "AMET, DOLOR SIT", + "endDate": "2020-12-05", + "startDate": "2015-12-09", "notes": "", "roles": [ "ORGANIZATION" ], + "siteRegistry": false + }, + { + "name": "AMET, DOLOR SIT", + "endDate": "2014-06-04", + "startDate": "2016-11-11", + "notes": "", + "roles": [ + "EMPLOYEE" + ], "siteRegistry": true } ], "suspectLandUses": [ { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-03-25 (described on Site Profile dated 2022-03-25)", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2020-10-12 (described on Site Profile dated 2020-10-12)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-01-13 (described on Site Profile dated 2019-01-13)", + "notes": "INSERTED FOR SITE PROFILE DATED 2016-04-15 (described on Site Profile dated 2016-04-15)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-09-29 (described on Site Profile dated 2018-09-29)", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2021-08-09 (described on Site Profile dated 2021-08-09)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2022-03-19 (described on Site Profile dated 2022-03-19)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + } + ], + "parcelDescriptions": [ + { + "siteRegistry": false, + "dateNoted": "2015-05-06", + "parcelID": "17742", + "crownLandUsePIN": "20653", + "crownLandFileNumber": "15395", + "landDescription": "LOT 3 OF LOT 3 BLOCK 3 DISTRICT LOT 5 PLAN 3817" + }, { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-07-24 (described on Site Profile dated 2014-07-24)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "dateNoted": "2015-05-10", + "parcelID": "18808", + "crownLandUsePIN": "19378", + "crownLandFileNumber": "17356", + "landDescription": "LOT 4 OF LOT 1 BLOCK 3 DISTRICT LOT 2 PLAN 6080" + }, + { + "siteRegistry": false, + "dateNoted": "2017-09-27", + "parcelID": "16266", + "crownLandUsePIN": "16093", + "crownLandFileNumber": "16817", + "landDescription": "LOT 4 OF LOT 3 BLOCK 4 DISTRICT LOT 4 PLAN 4791" + }, + { + "siteRegistry": false, + "dateNoted": "2015-10-11", + "parcelID": "17799", + "crownLandUsePIN": "15829", + "crownLandFileNumber": "18970", + "landDescription": "LOT 2 OF LOT 1 BLOCK 4 DISTRICT LOT 1 PLAN 8948" }, { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-09-23 (described on Site Profile dated 2019-09-23)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "dateNoted": "2014-05-03", + "parcelID": "15698", + "crownLandUsePIN": "17001", + "crownLandFileNumber": "18966", + "landDescription": "LOT 2 OF LOT 3 BLOCK 1 DISTRICT LOT 5 PLAN 9327" } ], "siteDisclosures": [ { - "siteRegistry": false, - "dateReceived": "2019-07-27", - "dateCompleted": "2015-01-28", - "dateEntered": "2014-09-15", - "dateRegistrar": "2021-05-31", - "dateLocalAuthorityReceived": "2020-04-04", - "summary": "Tempora voluptates tempora magni est.\nItaque minus minima nihil cumque harum dolore qui sit autem.\nReprehenderit atque asperiores labore cum aliquam cum laboriosam itaque.", - "informationUsed": "Aliquid cum consequatur quo quibusdam blanditiis eius amet officia nobis.\nOdio culpa soluta consectetur officiis praesentium quod necessitatibus deleniti.\nSuscipit quasi vel occaecati tenetur.\nMollitia vel voluptatibus cumque inventore eligendi.\nVeniam pariatur quia rem.", - "pastOrPresentOrders": "Officiis qui ea earum error et dolore aliquam.\nInventore ullam facilis odio iure veritatis provident ullam.\nAdipisci aperiam repellat quas.", + "siteRegistry": true, + "dateReceived": "2023-09-14", + "dateCompleted": "2023-06-24", + "dateEntered": "2016-09-21", + "dateRegistrar": "2022-10-14", + "dateLocalAuthorityReceived": "2022-03-22", + "summary": "Consectetur quasi nobis.", + "informationUsed": "Eligendi tenetur ipsum ratione asperiores illum ratione est cupiditate.\nMolestias facere optio.\nSoluta blanditiis necessitatibus suscipit dolores ipsa nobis dignissimos.", + "pastOrPresentOrders": "Unde perferendis molestiae sint dolorum.\nQuia ex sed eveniet sapiente eos quae quisquam illo.", "commercialAndIndustrialPurposes": [ { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, { - "scheduleReference": "F2*", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, { "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true + } + ] + }, + { + "siteRegistry": true, + "dateReceived": "2021-08-23", + "dateCompleted": "2015-04-10", + "dateEntered": "2019-12-25", + "dateRegistrar": "2013-12-14", + "dateLocalAuthorityReceived": "2021-10-12", + "summary": "Est voluptatibus expedita.", + "informationUsed": "Quaerat optio facilis quas odit optio nemo eligendi.\nVero fuga ullam sunt mollitia nostrum voluptatibus ex aut cum.\nBlanditiis culpa eaque error.\nQuidem quae quam ipsa.", + "pastOrPresentOrders": "Nostrum cupiditate soluta nobis minima officiis illo asperiores.\nAliquam perferendis facere tempora blanditiis quidem quasi repellendus.\nBeatae natus autem aspernatur ad ipsum.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true }, { "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true } ] } ], "activityLog": [ { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "RICE PERRY", - "timestamp": "2014-10-16" + "user": "MAGGIO LYNN", + "timestamp": "2014-12-31" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "RODRIGUEZ DELPHA", - "timestamp": "2015-10-07" + "user": "SPENCER ELIAS", + "timestamp": "2019-07-02" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "ROBEL ARMANDO", - "timestamp": "2014-08-04" + "user": "POLLICH ALFONSO", + "timestamp": "2019-10-10" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "MANTE ARTURO", - "timestamp": "2022-11-06" + "user": "BOSCO MARIETTA", + "timestamp": "2018-04-01" }, { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "WISOKY MILFORD", - "timestamp": "2017-11-24" + "user": "STROMAN ALLAN", + "timestamp": "2016-07-03" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "SCHUPPE TANYA", - "timestamp": "2021-12-30" + "user": "GOLDNER AMALIA", + "timestamp": "2018-12-04" } ], "associatedSites": [ { - "dateNoted": "2019-08-28", - "notes": "", - "parcelID": "15904", - "siteID": "20609", - "siteRegistry": true - }, - { - "dateNoted": "2018-12-14", + "dateNoted": "2014-12-21", "notes": "", - "parcelID": "19352", - "siteID": "19078", + "parcelID": "15274", + "siteID": "19266", "siteRegistry": true }, { - "dateNoted": "2015-12-12", + "dateNoted": "2014-10-29", "notes": "", - "parcelID": "16739", - "siteID": "15474", + "parcelID": "18809", + "siteID": "19305", "siteRegistry": false } ] }, { - "uuid": "53bf878d-65dc-4ba1-ae0d-cbb58ed7faa2", - "siteID": 18160, - "address": "4736 Loma Ridges", - "latitude": 52.0827, - "longitude": -138.6613, - "lastUpdated": "2023-08-07", - "city": "Avondale", - "region": "Vancouver Island/Coast", - "victoriaFile": "26250-20/16007", + "uuid": "02c87007-8d57-460d-9197-d776279195e1", + "siteID": 16853, + "address": "629 Kovacek Forest", + "latitude": 49.3125, + "longitude": -134.6041, + "lastUpdated": "2016-08-07", + "city": "Raheemtown", + "region": "Kootenay", + "victoriaFile": "26250-20/4489", "regionalFile": "N/A", "parcelIDs": [ - 7541930, - 8339049, - 4032648, - 1064645, - 9342495 + 6709894, + 622284, + 1507405, + 5036291, + 6717504 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2016-10-13", - "completed": "2021-10-19", - "initiated": "2016-04-06", - "ministryContact": "STOKES NICOLETTE", + "createdAt": "2020-06-04", + "completed": "2023-10-05", + "initiated": "2016-07-13", + "ministryContact": "JONES VALENTINE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -57626,38 +63369,28 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true + "role": "SUBMITTED BY", + "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2020-03-01", - "completed": "2023-02-14", - "initiated": "2020-12-09", - "ministryContact": "REYNOLDS AMALIA", + "createdAt": "2015-01-16", + "completed": "2022-04-21", + "initiated": "2015-02-13", + "ministryContact": "QUITZON SHANON", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -57665,49 +63398,24 @@ "" ], "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false - } - ], - "siteRegistry": false - }, - { - "createdAt": "2022-10-31", - "completed": "2016-05-20", - "initiated": "2023-09-30", - "ministryContact": "BOGISICH EVELINE", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ + }, { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2020-08-12", - "completed": "2023-02-17", - "initiated": "2015-11-25", - "ministryContact": "BAUMBACH VIRGINIE", + "createdAt": "2017-04-07", + "completed": "2020-12-08", + "initiated": "2019-07-27", + "ministryContact": "MCDERMOTT MARGARETTE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -57716,17 +63424,17 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true }, @@ -57734,15 +63442,20 @@ "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2019-02-25", - "completed": "2018-10-12", - "initiated": "2017-04-13", - "ministryContact": "HEGMANN ELWIN", + "createdAt": "2017-04-18", + "completed": "2023-10-02", + "initiated": "2014-09-02", + "ministryContact": "FRANECKI JAMARCUS", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -57753,22 +63466,37 @@ { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false } ], "participants": [ + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2014-05-11", + "startDate": "2018-01-21", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, { "name": "AMET, DOLOR SIT", - "endDate": "2014-09-27", - "startDate": "2014-11-28", + "endDate": "2014-07-10", + "startDate": "2022-10-26", "notes": "", "roles": [ "ORGANIZATION" @@ -57776,49 +63504,113 @@ "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2019-05-10", - "startDate": "2015-12-03", + "name": "IPSUM", + "endDate": "2023-03-31", + "startDate": "2019-03-21", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "name": "IPSUM", + "endDate": "2019-01-12", + "startDate": "2018-11-25", "notes": "", "roles": [ "ORGANIZATION" ], "siteRegistry": true + }, + { + "name": "AMET, DOLOR SIT", + "endDate": "2022-04-10", + "startDate": "2022-11-13", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false } ], "suspectLandUses": [ { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2020-06-27 (described on Site Profile dated 2020-06-27)", + "notes": "INSERTED FOR SITE PROFILE DATED 2016-03-22 (described on Site Profile dated 2016-03-22)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2015-08-21 (described on Site Profile dated 2015-08-21)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2020-03-12 (described on Site Profile dated 2020-03-12)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-07-10 (described on Site Profile dated 2022-07-10)", + "notes": "INSERTED FOR SITE PROFILE DATED 2021-11-21 (described on Site Profile dated 2021-11-21)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-01-21 (described on Site Profile dated 2016-01-21)", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2020-10-07 (described on Site Profile dated 2020-10-07)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], - "siteDisclosures": [ + "parcelDescriptions": [ + { + "siteRegistry": false, + "dateNoted": "2013-11-04", + "parcelID": "20622", + "crownLandUsePIN": "20332", + "crownLandFileNumber": "19547", + "landDescription": "LOT 5 OF LOT 5 BLOCK 1 DISTRICT LOT 2 PLAN 4168" + }, { "siteRegistry": false, - "dateReceived": "2017-04-04", - "dateCompleted": "2016-01-09", - "dateEntered": "2022-11-01", - "dateRegistrar": "2015-08-19", - "dateLocalAuthorityReceived": "2018-12-07", - "summary": "Non non tempore rem eius atque autem dolorem tempore.\nLabore iste debitis reprehenderit repudiandae quasi repellat voluptatibus iusto.", - "informationUsed": "Odio ullam explicabo laudantium similique porro.\nLaborum temporibus atque dolore illo nemo est beatae laborum.\nDeleniti nulla consectetur culpa porro illo vel.\nSit laboriosam esse maxime fugit et sint perspiciatis consequuntur sit.\nSimilique dicta autem sequi corrupti adipisci odit fugiat voluptatibus nisi.", - "pastOrPresentOrders": "Aspernatur cumque labore nisi.", + "dateNoted": "2014-05-14", + "parcelID": "20276", + "crownLandUsePIN": "15405", + "crownLandFileNumber": "15226", + "landDescription": "LOT 2 OF LOT 4 BLOCK 4 DISTRICT LOT 2 PLAN 9797" + }, + { + "siteRegistry": true, + "dateNoted": "2014-03-19", + "parcelID": "17078", + "crownLandUsePIN": "15344", + "crownLandFileNumber": "17003", + "landDescription": "LOT 3 OF LOT 3 BLOCK 5 DISTRICT LOT 5 PLAN 8498" + }, + { + "siteRegistry": true, + "dateNoted": "2019-06-14", + "parcelID": "18475", + "crownLandUsePIN": "16199", + "crownLandFileNumber": "20127", + "landDescription": "LOT 5 OF LOT 5 BLOCK 1 DISTRICT LOT 2 PLAN 6417" + } + ], + "siteDisclosures": [ + { + "siteRegistry": true, + "dateReceived": "2014-12-22", + "dateCompleted": "2019-08-27", + "dateEntered": "2017-04-05", + "dateRegistrar": "2019-03-03", + "dateLocalAuthorityReceived": "2013-11-23", + "summary": "Quidem laudantium consequuntur voluptatem nesciunt dicta rem.", + "informationUsed": "Corporis nobis nisi maiores cum iure.\nExcepturi sunt tempore voluptate repellat nemo earum.\nNatus laborum reiciendis totam tempore iusto neque ducimus.", + "pastOrPresentOrders": "Sunt molestiae ad aut necessitatibus.\nNeque ex veritatis tempore aliquam voluptates minima commodi pariatur.", "commercialAndIndustrialPurposes": [ { - "scheduleReference": "F2*", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false + "siteRegistry": true }, { "scheduleReference": "F2*", @@ -57832,113 +63624,83 @@ { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "FRANECKI EZEQUIEL", - "timestamp": "2023-08-13" - }, - { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "SANFORD LOUIE", - "timestamp": "2022-05-18" - }, - { - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "CREMIN MONTANA", - "timestamp": "2022-12-13" - }, - { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "SWIFT LAILA", - "timestamp": "2014-12-21" - }, - { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "FEIL CORENE", - "timestamp": "2020-01-24" + "user": "LANGOSH-FRANECKI RAYMOND", + "timestamp": "2016-04-26" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "LITTLE SYLVIA", - "timestamp": "2014-06-10" - }, - { - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "LEANNON LACY", - "timestamp": "2017-09-01" + "user": "ANKUNDING CHARITY", + "timestamp": "2015-06-29" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "HACKETT VIOLET", - "timestamp": "2014-01-20" + "user": "LANGOSH MAVERICK", + "timestamp": "2019-03-21" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "HELLER THURMAN", - "timestamp": "2015-05-05" + "user": "WARD PRICE", + "timestamp": "2014-08-18" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "ALTENWERTH MARILYNE", - "timestamp": "2022-02-25" + "user": "BINS EASTON", + "timestamp": "2015-05-11" } ], "associatedSites": [ { - "dateNoted": "2022-04-12", + "dateNoted": "2018-04-01", "notes": "", - "parcelID": "18464", - "siteID": "17249", - "siteRegistry": false + "parcelID": "17905", + "siteID": "18732", + "siteRegistry": true }, { - "dateNoted": "2013-11-20", + "dateNoted": "2015-07-03", "notes": "", - "parcelID": "19495", - "siteID": "17862", + "parcelID": "16025", + "siteID": "19266", "siteRegistry": true }, { - "dateNoted": "2016-10-21", + "dateNoted": "2015-05-06", "notes": "", - "parcelID": "15852", - "siteID": "16813", - "siteRegistry": false + "parcelID": "15779", + "siteID": "19984", + "siteRegistry": true } ] }, { - "uuid": "0e4f5dde-a529-4937-b544-e8727dc5f51d", - "siteID": 19960, - "address": "103 Shakira Pike", - "latitude": 48.8292, - "longitude": -134.0898, - "lastUpdated": "2015-06-12", - "city": "Oak Park", - "region": "Vancouver Island/Coast", - "victoriaFile": "26250-20/4545", + "uuid": "2d6b07cc-3615-4430-ac8f-d1b47e476709", + "siteID": 18993, + "address": "2795 Mitchell Ranch", + "latitude": 58.141, + "longitude": -131.0614, + "lastUpdated": "2014-09-02", + "city": "Port Burdetteside", + "region": "Mainland/Southwest", + "victoriaFile": "26250-20/2988", "regionalFile": "N/A", "parcelIDs": [ - 161023, - 3110377, - 7389711, - 7855319, - 929702 + 9914561, + 8105490, + 7230260, + 900375, + 2325583 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2021-02-07", - "completed": "2022-06-11", - "initiated": "2017-10-06", - "ministryContact": "KREIGER DOLORES", + "createdAt": "2019-02-12", + "completed": "2016-07-05", + "initiated": "2018-11-10", + "ministryContact": "VEUM CLETA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -57952,9 +63714,9 @@ "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", @@ -57962,18 +63724,18 @@ "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2016-11-22", - "completed": "2022-08-31", - "initiated": "2022-01-11", - "ministryContact": "BROWN CESAR", + "createdAt": "2014-12-03", + "completed": "2015-03-03", + "initiated": "2016-10-02", + "ministryContact": "EMARD RAHUL", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -57982,23 +63744,38 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2016-08-24", - "completed": "2014-07-18", - "initiated": "2020-03-06", - "ministryContact": "HYATT PEGGIE", + "createdAt": "2019-09-28", + "completed": "2015-11-17", + "initiated": "2016-12-20", + "ministryContact": "AUER KAYLIE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -58009,22 +63786,32 @@ { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true } ], "participants": [ { - "name": "AMET, DOLOR SIT", - "endDate": "2023-06-24", - "startDate": "2019-01-19", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2013-11-25", + "startDate": "2016-11-24", "notes": "", "roles": [ "ORGANIZATION" @@ -58032,9 +63819,19 @@ "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2017-03-27", - "startDate": "2022-05-04", + "name": "IPSUM", + "endDate": "2021-04-03", + "startDate": "2019-01-13", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "AMET, DOLOR SIT", + "endDate": "2019-04-03", + "startDate": "2013-10-16", "notes": "", "roles": [ "EMPLOYEE" @@ -58042,40 +63839,102 @@ "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2015-07-16", - "startDate": "2018-03-15", + "name": "AMET, DOLOR SIT", + "endDate": "2017-10-02", + "startDate": "2015-01-10", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "name": "IPSUM", + "endDate": "2015-06-29", + "startDate": "2018-04-06", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": false + "siteRegistry": true } ], "suspectLandUses": [ { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-12-24 (described on Site Profile dated 2022-12-24)", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2018-08-10 (described on Site Profile dated 2018-08-10)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2019-07-13 (described on Site Profile dated 2019-07-13)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-07-21 (described on Site Profile dated 2017-07-21)", + "notes": "INSERTED FOR SITE PROFILE DATED 2013-11-27 (described on Site Profile dated 2013-11-27)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], - "siteDisclosures": [ + "parcelDescriptions": [ { "siteRegistry": false, - "dateReceived": "2021-03-04", - "dateCompleted": "2023-02-09", - "dateEntered": "2016-08-23", - "dateRegistrar": "2015-10-31", - "dateLocalAuthorityReceived": "2017-06-19", - "summary": "Voluptatum laudantium perferendis sit saepe cupiditate.", - "informationUsed": "Deleniti corrupti modi sint architecto ullam accusamus illo fugiat fugit.\nUnde ratione dolor dolorum harum.\nNesciunt eveniet rerum totam repudiandae cupiditate quam saepe tempora.\nMagni praesentium sapiente tempore officia voluptas vero nemo accusamus repellendus.\nConsequatur at veritatis vero.", - "pastOrPresentOrders": "Enim tempore laboriosam sint.\nAliquid deserunt quidem aperiam incidunt.\nSoluta earum occaecati rem praesentium similique repudiandae illo.", + "dateNoted": "2022-03-20", + "parcelID": "18391", + "crownLandUsePIN": "19331", + "crownLandFileNumber": "17786", + "landDescription": "LOT 5 OF LOT 2 BLOCK 1 DISTRICT LOT 5 PLAN 5924" + }, + { + "siteRegistry": true, + "dateNoted": "2016-12-11", + "parcelID": "16852", + "crownLandUsePIN": "15298", + "crownLandFileNumber": "15718", + "landDescription": "LOT 3 OF LOT 5 BLOCK 2 DISTRICT LOT 3 PLAN 4171" + }, + { + "siteRegistry": false, + "dateNoted": "2019-07-11", + "parcelID": "18085", + "crownLandUsePIN": "19980", + "crownLandFileNumber": "17582", + "landDescription": "LOT 3 OF LOT 5 BLOCK 3 DISTRICT LOT 2 PLAN 7291" + }, + { + "siteRegistry": true, + "dateNoted": "2020-12-31", + "parcelID": "16110", + "crownLandUsePIN": "15202", + "crownLandFileNumber": "17571", + "landDescription": "LOT 1 OF LOT 5 BLOCK 4 DISTRICT LOT 2 PLAN 4149" + }, + { + "siteRegistry": true, + "dateNoted": "2015-07-22", + "parcelID": "19812", + "crownLandUsePIN": "15516", + "crownLandFileNumber": "20687", + "landDescription": "LOT 3 OF LOT 5 BLOCK 5 DISTRICT LOT 4 PLAN 4013" + } + ], + "siteDisclosures": [ + { + "siteRegistry": true, + "dateReceived": "2020-02-13", + "dateCompleted": "2017-04-09", + "dateEntered": "2015-03-30", + "dateRegistrar": "2015-08-28", + "dateLocalAuthorityReceived": "2016-02-25", + "summary": "Eius sed porro nobis id dolorum expedita eligendi officiis.\nAspernatur eius placeat harum saepe nemo ut incidunt repudiandae cum.\nQuae ex assumenda.", + "informationUsed": "Tempora unde iste nesciunt quas excepturi incidunt.\nNisi provident optio sed culpa fuga.\nConsequatur illo quidem perferendis officiis.", + "pastOrPresentOrders": "Explicabo voluptates excepturi.\nLaboriosam molestias eligendi distinctio.\nQuae totam ea consectetur ullam esse.", "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, { "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", @@ -58084,40 +63943,40 @@ { "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true + "siteRegistry": false } ] }, { "siteRegistry": true, - "dateReceived": "2021-07-01", - "dateCompleted": "2023-07-24", - "dateEntered": "2015-07-26", - "dateRegistrar": "2019-04-22", - "dateLocalAuthorityReceived": "2023-02-22", - "summary": "Excepturi dignissimos quod doloribus molestiae ipsum pariatur aliquid voluptatem molestiae.", - "informationUsed": "Provident asperiores nostrum nobis velit atque velit perferendis.\nReprehenderit similique dolore explicabo esse quas.\nProvident dolores harum et molestias id corporis excepturi eos.\nIste eveniet ipsa impedit quis nostrum nostrum.\nFugit dolorum blanditiis repudiandae odio magnam porro facere quod commodi.", - "pastOrPresentOrders": "Facere odit distinctio.", + "dateReceived": "2017-08-11", + "dateCompleted": "2022-05-20", + "dateEntered": "2018-02-21", + "dateRegistrar": "2023-03-24", + "dateLocalAuthorityReceived": "2021-01-06", + "summary": "Sapiente numquam repudiandae eaque quasi occaecati ab qui.\nPerferendis dolorem explicabo deleniti facere doloribus quisquam.\nVoluptates sed molestiae.", + "informationUsed": "Dolores illo facere qui.\nAt omnis accusantium repellat impedit.\nDeleniti officia fugit earum reiciendis officia cum voluptate fuga expedita.", + "pastOrPresentOrders": "Nobis dicta dicta inventore quod excepturi.\nNatus odit nemo animi repudiandae.", "commercialAndIndustrialPurposes": [ { "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { - "scheduleReference": "F1*", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true + "siteRegistry": false }, { "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true + "siteRegistry": false } ] } @@ -58126,93 +63985,82 @@ { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "COLLINS RONNY", - "timestamp": "2021-01-12" + "user": "ROMAGUERA LUNA", + "timestamp": "2019-01-21" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "SWANIAWSKI DEMARCO", - "timestamp": "2014-06-14" + "user": "REYNOLDS ZULA", + "timestamp": "2021-06-24" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "CRONA OLIVER", - "timestamp": "2017-10-23" - }, - { - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "HAHN GENNARO", - "timestamp": "2018-11-26" - }, - { - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "RUNOLFSDOTTIR DAVON", - "timestamp": "2016-04-08" + "user": "TOY JARRELL", + "timestamp": "2022-10-19" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "REICHEL MITTIE", - "timestamp": "2014-08-25" + "user": "FEEST KATHARINA", + "timestamp": "2018-02-07" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "MILLS ANDRE", - "timestamp": "2022-12-14" - }, - { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "ZBONCAK ANGELINA", - "timestamp": "2020-12-30" + "user": "FRIESEN BROWN", + "timestamp": "2018-06-03" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "CONROY-KESSLER DOCK", - "timestamp": "2018-08-31" + "user": "WILLMS AUBREY", + "timestamp": "2021-10-06" } ], "associatedSites": [ { - "dateNoted": "2015-02-18", + "dateNoted": "2022-03-11", "notes": "", - "parcelID": "20530", - "siteID": "19041", - "siteRegistry": false + "parcelID": "19637", + "siteID": "18136", + "siteRegistry": true + }, + { + "dateNoted": "2020-10-30", + "notes": "", + "parcelID": "18367", + "siteID": "17387", + "siteRegistry": true } ] }, { - "uuid": "7d43e1e8-da28-4e61-acd7-d9adc5e7168b", - "siteID": 15631, - "address": "7793 Schulist Well", - "latitude": 49.8679, - "longitude": -130.7556, - "lastUpdated": "2017-11-03", - "city": "Fort Bessiestad", - "region": "Kootenay", - "victoriaFile": "26250-20/8612", + "uuid": "45aaa12c-d772-49e1-a6e0-49434ebc97f0", + "siteID": 19802, + "address": "649 Gleason Coves", + "latitude": 49.7066, + "longitude": -128.3762, + "lastUpdated": "2023-02-24", + "city": "South Ruthe", + "region": " North Coast", + "victoriaFile": "26250-20/9513", "regionalFile": "N/A", "parcelIDs": [ - 8630234, - 8742454, - 2754541, - 8316297, - 3480220 + 7737846, + 5343577, + 293309, + 8892053, + 4858955 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2021-02-21", - "completed": "2016-07-02", - "initiated": "2018-03-28", - "ministryContact": "HUEL VICTOR", + "createdAt": "2016-09-14", + "completed": "2017-08-01", + "initiated": "2016-11-14", + "ministryContact": "VANDERVORT LORENA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -58223,21 +64071,21 @@ { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false } ], "siteRegistry": false }, { - "createdAt": "2014-04-10", - "completed": "2020-02-12", - "initiated": "2018-01-03", - "ministryContact": "KUTCH GIANNI", + "createdAt": "2016-03-02", + "completed": "2022-05-04", + "initiated": "2017-02-05", + "ministryContact": "CRONIN MATT", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -58247,12 +64095,7 @@ "notationParticipants": [ { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true }, { @@ -58264,10 +64107,10 @@ "siteRegistry": true }, { - "createdAt": "2023-01-02", - "completed": "2017-07-03", - "initiated": "2020-11-26", - "ministryContact": "MCCULLOUGH LILLIAN", + "createdAt": "2023-05-29", + "completed": "2018-03-22", + "initiated": "2015-11-13", + "ministryContact": "SCHMIDT-FRANECKI KIRSTIN", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -58275,34 +64118,9 @@ "" ], "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true - } - ], - "siteRegistry": true - }, - { - "createdAt": "2018-09-22", - "completed": "2014-02-10", - "initiated": "2016-08-12", - "ministryContact": "WALTER DESHAUN", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", "siteRegistry": false }, { @@ -58310,11 +64128,6 @@ "role": "REQUESTED BY", "siteRegistry": false }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", @@ -58329,10 +64142,10 @@ "siteRegistry": false }, { - "createdAt": "2022-04-04", - "completed": "2014-10-19", - "initiated": "2017-02-09", - "ministryContact": "FEEST KAYLIE", + "createdAt": "2023-07-31", + "completed": "2015-06-03", + "initiated": "2015-10-24", + "ministryContact": "LITTEL ANISSA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -58341,23 +64154,13 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", "siteRegistry": false } ], @@ -58366,39 +64169,39 @@ ], "participants": [ { - "name": "AMET, DOLOR SIT", - "endDate": "2016-10-20", - "startDate": "2021-05-27", + "name": "IPSUM", + "endDate": "2015-12-02", + "startDate": "2022-05-12", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false }, { "name": "IPSUM", - "endDate": "2020-01-30", - "startDate": "2014-03-25", + "endDate": "2013-12-13", + "startDate": "2017-10-22", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2020-05-30", - "startDate": "2019-06-08", + "name": "IPSUM", + "endDate": "2018-03-06", + "startDate": "2018-01-25", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": false }, { - "name": "AMET, DOLOR SIT", - "endDate": "2020-04-21", - "startDate": "2017-03-17", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2020-11-02", + "startDate": "2019-07-06", "notes": "", "roles": [ "ORGANIZATION" @@ -58406,82 +64209,119 @@ "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2022-11-21", - "startDate": "2016-02-11", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2014-12-29", + "startDate": "2016-10-05", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false } ], "suspectLandUses": [ { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2023-04-20 (described on Site Profile dated 2023-04-20)", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2016-07-19 (described on Site Profile dated 2016-07-19)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-12-20 (described on Site Profile dated 2021-12-20)", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2021-06-18 (described on Site Profile dated 2021-06-18)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-07-26 (described on Site Profile dated 2017-07-26)", + "notes": "INSERTED FOR SITE PROFILE DATED 2017-09-27 (described on Site Profile dated 2017-09-27)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-12-18 (described on Site Profile dated 2022-12-18)", + "notes": "INSERTED FOR SITE PROFILE DATED 2016-07-25 (described on Site Profile dated 2016-07-25)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2022-04-04 (described on Site Profile dated 2022-04-04)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], - "siteDisclosures": [ + "parcelDescriptions": [ + { + "siteRegistry": true, + "dateNoted": "2018-10-14", + "parcelID": "20809", + "crownLandUsePIN": "19378", + "crownLandFileNumber": "20749", + "landDescription": "LOT 1 OF LOT 3 BLOCK 3 DISTRICT LOT 3 PLAN 6207" + }, + { + "siteRegistry": true, + "dateNoted": "2021-02-05", + "parcelID": "15761", + "crownLandUsePIN": "17410", + "crownLandFileNumber": "15244", + "landDescription": "LOT 5 OF LOT 5 BLOCK 1 DISTRICT LOT 4 PLAN 9323" + }, + { + "siteRegistry": false, + "dateNoted": "2017-11-13", + "parcelID": "19535", + "crownLandUsePIN": "18822", + "crownLandFileNumber": "18039", + "landDescription": "LOT 3 OF LOT 2 BLOCK 1 DISTRICT LOT 5 PLAN 9501" + }, + { + "siteRegistry": false, + "dateNoted": "2015-11-11", + "parcelID": "15440", + "crownLandUsePIN": "20647", + "crownLandFileNumber": "15628", + "landDescription": "LOT 1 OF LOT 3 BLOCK 2 DISTRICT LOT 2 PLAN 4757" + }, { "siteRegistry": true, - "dateReceived": "2017-04-09", - "dateCompleted": "2020-04-05", - "dateEntered": "2017-02-17", - "dateRegistrar": "2018-02-17", - "dateLocalAuthorityReceived": "2018-11-09", - "summary": "Ea velit error corporis impedit.\nQuisquam aliquam amet culpa labore.", - "informationUsed": "Est voluptatibus earum perferendis officia neque necessitatibus.\nError officia illo.\nPraesentium eos eveniet perferendis nesciunt perspiciatis.", - "pastOrPresentOrders": "Necessitatibus velit unde ad quos provident optio natus error.\nHarum ipsam nemo corrupti architecto corrupti unde ex tenetur.", + "dateNoted": "2015-04-19", + "parcelID": "17211", + "crownLandUsePIN": "17932", + "crownLandFileNumber": "17250", + "landDescription": "LOT 5 OF LOT 2 BLOCK 2 DISTRICT LOT 4 PLAN 9702" + } + ], + "siteDisclosures": [ + { + "siteRegistry": false, + "dateReceived": "2023-08-28", + "dateCompleted": "2013-10-28", + "dateEntered": "2017-11-05", + "dateRegistrar": "2014-01-10", + "dateLocalAuthorityReceived": "2015-05-02", + "summary": "Nostrum accusamus nemo deleniti maxime quo deserunt inventore commodi.\nTotam itaque necessitatibus unde repudiandae qui.", + "informationUsed": "Eveniet modi beatae veniam assumenda fugit aut expedita tempora ea.\nNobis suscipit nobis excepturi.\nEarum amet voluptates laudantium similique illum.\nCumque magnam omnis laboriosam maxime ullam ea suscipit id praesentium.", + "pastOrPresentOrders": "Numquam eos architecto in eius dolore reprehenderit ut.", "commercialAndIndustrialPurposes": [ { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true - }, - { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true - }, - { - "scheduleReference": "F2*", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false } ] }, { - "siteRegistry": false, - "dateReceived": "2020-02-03", - "dateCompleted": "2021-06-27", - "dateEntered": "2022-04-21", - "dateRegistrar": "2022-10-28", - "dateLocalAuthorityReceived": "2020-04-04", - "summary": "Esse soluta nisi.\nFuga sequi ut aliquam adipisci totam.\nFuga at dignissimos doloribus voluptatum unde iste.", - "informationUsed": "Odio corrupti ipsum deleniti quibusdam.\nEnim alias aliquam quo reprehenderit.\nPariatur iusto vel sit.", - "pastOrPresentOrders": "Molestiae ab porro quisquam.\nNeque ducimus natus.\nDolores rerum eligendi ut.", + "siteRegistry": true, + "dateReceived": "2018-04-30", + "dateCompleted": "2015-02-06", + "dateEntered": "2018-06-24", + "dateRegistrar": "2023-03-08", + "dateLocalAuthorityReceived": "2015-04-07", + "summary": "Quidem facere amet.", + "informationUsed": "Cumque quibusdam facere minus vitae eveniet maxime.\nTotam numquam libero repudiandae.\nQuos nesciunt alias exercitationem ipsam voluptate laborum consectetur perferendis accusantium.", + "pastOrPresentOrders": "Ad nisi et suscipit nam ex modi.\nVeniam ratione nostrum hic.", "commercialAndIndustrialPurposes": [ { "scheduleReference": "F1*", @@ -58489,13 +64329,13 @@ "siteRegistry": true }, { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false }, { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true } ] @@ -58503,91 +64343,90 @@ ], "activityLog": [ { - "siteRegistry": true, + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "RENNER BETTE", - "timestamp": "2021-07-12" + "user": "JERDE CAMILA", + "timestamp": "2017-06-19" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "HALVORSON CAREY", - "timestamp": "2021-09-11" + "user": "EBERT HOBART", + "timestamp": "2021-05-21" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "LESCH GILES", - "timestamp": "2014-09-29" + "user": "MANTE BRISA", + "timestamp": "2018-01-14" }, { - "siteRegistry": true, + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "TROMP EINAR", - "timestamp": "2018-05-04" + "user": "POUROS ELMIRA", + "timestamp": "2019-01-17" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "WALTER VAUGHN", + "timestamp": "2022-09-07" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "ANDERSON KALEY", - "timestamp": "2018-10-26" + "user": "ZIEME MOHAMED", + "timestamp": "2021-08-18" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "KUVALIS JACQUES", - "timestamp": "2014-09-09" + "user": "HUEL TREVION", + "timestamp": "2020-05-15" } ], "associatedSites": [ { - "dateNoted": "2018-12-19", - "notes": "", - "parcelID": "17840", - "siteID": "17648", - "siteRegistry": false - }, - { - "dateNoted": "2023-04-24", + "dateNoted": "2020-10-12", "notes": "", - "parcelID": "15367", - "siteID": "19117", + "parcelID": "15226", + "siteID": "20555", "siteRegistry": false }, { - "dateNoted": "2023-06-04", + "dateNoted": "2016-07-01", "notes": "", - "parcelID": "16420", - "siteID": "20967", + "parcelID": "16688", + "siteID": "17653", "siteRegistry": false } ] }, { - "uuid": "2f1083ed-e18e-46a3-9338-4f16686ddfc3", - "siteID": 19587, - "address": "969 Rex Passage", - "latitude": 48.3906, - "longitude": -118.338, - "lastUpdated": "2023-02-14", - "city": "Oakland Park", - "region": "Cariboo", - "victoriaFile": "26250-20/5501", + "uuid": "8dc10898-4181-4008-b12b-02901bdb1023", + "siteID": 18863, + "address": "83328 Orin View", + "latitude": 58.5702, + "longitude": -125.0072, + "lastUpdated": "2019-05-18", + "city": "Fort Jonastown", + "region": "Thompson-Okanagan", + "victoriaFile": "26250-20/19063", "regionalFile": "N/A", "parcelIDs": [ - 7249774, - 9793903, - 4413736, - 5732586, - 5474584 + 667567, + 6600001, + 4855872, + 9217154, + 9546058 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2017-07-06", - "completed": "2017-02-15", - "initiated": "2014-07-05", - "ministryContact": "JERDE GINO", + "createdAt": "2014-05-29", + "completed": "2018-12-15", + "initiated": "2020-07-06", + "ministryContact": "VONRUEDEN ALYCIA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -58596,23 +64435,38 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2014-02-23", - "completed": "2020-10-17", - "initiated": "2014-06-01", - "ministryContact": "SCHUPPE JANA", + "createdAt": "2016-05-22", + "completed": "2019-06-05", + "initiated": "2022-03-14", + "ministryContact": "RAU-SIPES DOMENICK", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -58621,19 +64475,44 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "createdAt": "2017-02-11", + "completed": "2023-07-26", + "initiated": "2021-01-09", + "ministryContact": "SPORER ALFRED", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true + "role": "REQUESTED BY", + "siteRegistry": false } ], "siteRegistry": false @@ -58641,69 +64520,164 @@ ], "participants": [ { - "name": "AMET, DOLOR SIT", - "endDate": "2016-04-22", - "startDate": "2019-02-28", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2016-04-04", + "startDate": "2021-06-02", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "name": "IPSUM", + "endDate": "2016-04-16", + "startDate": "2023-06-16", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "name": "IPSUM", + "endDate": "2016-10-22", + "startDate": "2017-04-11", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], - "siteRegistry": true + "siteRegistry": false }, { - "name": "IPSUM", - "endDate": "2017-03-24", - "startDate": "2019-06-21", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2016-03-28", + "startDate": "2017-07-15", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": true }, { "name": "IPSUM", - "endDate": "2016-12-31", - "startDate": "2023-09-12", + "endDate": "2021-07-11", + "startDate": "2019-03-26", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": true + "siteRegistry": false } ], "suspectLandUses": [ + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2017-05-13 (described on Site Profile dated 2017-05-13)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2018-01-28 (described on Site Profile dated 2018-01-28)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + } + ], + "parcelDescriptions": [ + { + "siteRegistry": true, + "dateNoted": "2019-01-02", + "parcelID": "20925", + "crownLandUsePIN": "18869", + "crownLandFileNumber": "17110", + "landDescription": "LOT 3 OF LOT 1 BLOCK 2 DISTRICT LOT 4 PLAN 4805" + }, + { + "siteRegistry": true, + "dateNoted": "2018-10-14", + "parcelID": "17325", + "crownLandUsePIN": "19023", + "crownLandFileNumber": "20651", + "landDescription": "LOT 2 OF LOT 2 BLOCK 4 DISTRICT LOT 2 PLAN 8503" + }, { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-03-06 (described on Site Profile dated 2017-03-06)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "dateNoted": "2017-04-02", + "parcelID": "18854", + "crownLandUsePIN": "20973", + "crownLandFileNumber": "19955", + "landDescription": "LOT 1 OF LOT 4 BLOCK 4 DISTRICT LOT 4 PLAN 8166" }, { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-11-20 (described on Site Profile dated 2017-11-20)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "dateNoted": "2018-03-18", + "parcelID": "19852", + "crownLandUsePIN": "15503", + "crownLandFileNumber": "20164", + "landDescription": "LOT 4 OF LOT 2 BLOCK 4 DISTRICT LOT 5 PLAN 5838" + }, + { + "siteRegistry": false, + "dateNoted": "2019-08-18", + "parcelID": "16978", + "crownLandUsePIN": "18485", + "crownLandFileNumber": "20963", + "landDescription": "LOT 2 OF LOT 5 BLOCK 5 DISTRICT LOT 2 PLAN 6840" } ], "siteDisclosures": [ + { + "siteRegistry": true, + "dateReceived": "2019-07-11", + "dateCompleted": "2021-05-08", + "dateEntered": "2015-12-06", + "dateRegistrar": "2016-09-01", + "dateLocalAuthorityReceived": "2019-01-13", + "summary": "Maiores saepe quas nulla perferendis quibusdam provident harum eius.\nQuidem expedita ratione hic ea pariatur sint eaque exercitationem unde.\nIusto aliquam quos similique veniam fuga omnis.", + "informationUsed": "Sunt asperiores voluptatum nulla totam repudiandae unde rerum voluptatibus.\nQuis porro asperiores.\nLibero doloremque nulla saepe ipsam iure saepe.\nEarum voluptate nobis quae dolorem sit aut at voluptate quisquam.", + "pastOrPresentOrders": "Libero quibusdam eveniet cum odit possimus enim.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + } + ] + }, { "siteRegistry": false, - "dateReceived": "2021-04-20", - "dateCompleted": "2017-07-18", - "dateEntered": "2019-01-28", - "dateRegistrar": "2015-04-23", - "dateLocalAuthorityReceived": "2015-03-04", - "summary": "Fugit provident quo ut vitae voluptatum.\nAccusamus unde illum aut corporis cum dolores similique sunt doloribus.\nSunt amet nihil quis dolorum tenetur.", - "informationUsed": "Occaecati iure delectus itaque natus cupiditate reiciendis ex.\nAdipisci perspiciatis et.\nLaboriosam laborum laboriosam iure cum id.\nExplicabo temporibus facilis.\nCum voluptates repellendus quisquam magnam repellat quasi reprehenderit voluptate.", - "pastOrPresentOrders": "Dicta reiciendis quo similique facere eligendi.\nDicta sed error aliquam voluptatem porro ipsa.\nNon cumque quaerat eius voluptates eveniet.", + "dateReceived": "2015-10-15", + "dateCompleted": "2016-09-23", + "dateEntered": "2014-08-06", + "dateRegistrar": "2015-05-08", + "dateLocalAuthorityReceived": "2014-11-18", + "summary": "Dolores sapiente assumenda numquam modi.\nCorporis dolor mollitia debitis maxime omnis.\nAutem error rerum autem a.", + "informationUsed": "Soluta quam magnam.\nVoluptatem earum molestiae sapiente aspernatur error rerum impedit.\nEx debitis tenetur nostrum recusandae.\nPossimus fugiat minus.", + "pastOrPresentOrders": "Maxime nulla velit neque ut eveniet iusto.\nError repellat eaque.", "commercialAndIndustrialPurposes": [ { "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true + "siteRegistry": false + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false }, { "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true } ] } @@ -58712,106 +64686,81 @@ { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "MURPHY BENEDICT", - "timestamp": "2016-10-22" - }, - { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "STEHR FLOYD", - "timestamp": "2021-12-16" - }, - { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "KASSULKE JENNIFER", - "timestamp": "2014-10-27" + "user": "POUROS MILAN", + "timestamp": "2019-09-26" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "KUNDE JAQUAN", - "timestamp": "2020-06-12" + "user": "DIBBERT ARCHIBALD", + "timestamp": "2014-01-14" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "PACOCHA COURTNEY", - "timestamp": "2022-04-07" + "user": "KESSLER YOSHIKO", + "timestamp": "2022-12-02" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "PFANNERSTILL CARMEN", - "timestamp": "2022-06-11" + "user": "BRAKUS TYRA", + "timestamp": "2017-02-11" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "GUSIKOWSKI ALVERTA", - "timestamp": "2022-04-21" - }, - { - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "BOTSFORD DELPHIA", - "timestamp": "2017-04-05" + "user": "TILLMAN ALEK", + "timestamp": "2014-11-28" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "TURNER FREDRICK", - "timestamp": "2016-07-24" + "user": "GUTMANN SHYANNE", + "timestamp": "2015-11-10" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "VON HANNA", - "timestamp": "2013-11-25" + "user": "KUVALIS LUDWIG", + "timestamp": "2018-01-29" } ], "associatedSites": [ { - "dateNoted": "2019-04-20", + "dateNoted": "2019-09-22", "notes": "", - "parcelID": "18616", - "siteID": "20382", + "parcelID": "16511", + "siteID": "20139", "siteRegistry": true - }, - { - "dateNoted": "2014-10-08", - "notes": "", - "parcelID": "16858", - "siteID": "19991", - "siteRegistry": false } ] }, { - "uuid": "98e1ebeb-adef-4fe5-bbc2-23d9730ff9dd", - "siteID": 15566, - "address": "3866 Bonnie Haven", - "latitude": 48.7571, - "longitude": -124.6655, - "lastUpdated": "2023-01-26", - "city": "Joshview", - "region": "Cariboo", - "victoriaFile": "26250-20/9968", + "uuid": "5a05c2c7-dfe1-4871-8710-7eac8432d881", + "siteID": 20963, + "address": "21439 Nathan Alley", + "latitude": 53.7578, + "longitude": -127.8701, + "lastUpdated": "2019-09-23", + "city": "Braunworth", + "region": " North Coast", + "victoriaFile": "26250-20/15095", "regionalFile": "N/A", "parcelIDs": [ - 9981509, - 7731557, - 9163380, - 5080841, - 9130037 + 2481355, + 6036654, + 1359999, + 959321, + 227274 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2015-07-29", - "completed": "2020-09-01", - "initiated": "2014-10-04", - "ministryContact": "DONNELLY PEDRO", + "createdAt": "2022-01-29", + "completed": "2022-04-01", + "initiated": "2023-01-07", + "ministryContact": "BECHTELAR FORD", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -58821,32 +64770,27 @@ "notationParticipants": [ { "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2023-02-14", - "completed": "2016-07-09", - "initiated": "2014-02-18", - "ministryContact": "KOHLER SHANEL", + "createdAt": "2018-05-24", + "completed": "2015-04-19", + "initiated": "2016-02-02", + "ministryContact": "WAELCHI-GIBSON KARSON", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -58856,7 +64800,7 @@ "notationParticipants": [ { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false }, { @@ -58868,25 +64812,15 @@ "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2017-02-03", - "completed": "2016-04-22", - "initiated": "2014-10-10", - "ministryContact": "VON KASSANDRA", + "createdAt": "2019-10-05", + "completed": "2020-12-07", + "initiated": "2016-06-04", + "ministryContact": "EBERT BROWN", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -58896,18 +64830,23 @@ "notationParticipants": [ { "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", @@ -58916,33 +64855,58 @@ } ], "siteRegistry": true + }, + { + "createdAt": "2016-03-06", + "completed": "2017-10-28", + "initiated": "2020-11-28", + "ministryContact": "THIEL RUDY", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false } ], "participants": [ { - "name": "IPSUM", - "endDate": "2015-02-22", - "startDate": "2021-05-09", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2016-04-21", + "startDate": "2014-07-06", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": false + "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", - "endDate": "2020-02-12", - "startDate": "2019-01-26", + "endDate": "2014-10-08", + "startDate": "2021-08-25", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": true }, { - "name": "IPSUM", - "endDate": "2016-03-15", - "startDate": "2014-09-02", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2016-05-09", + "startDate": "2014-04-27", "notes": "", "roles": [ "ORGANIZATION" @@ -58950,9 +64914,9 @@ "siteRegistry": false }, { - "name": "AMET, DOLOR SIT", - "endDate": "2022-11-20", - "startDate": "2020-12-13", + "name": "IPSUM", + "endDate": "2014-07-18", + "startDate": "2021-05-15", "notes": "", "roles": [ "ORGANIZATION" @@ -58963,30 +64927,72 @@ "suspectLandUses": [ { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-12-24 (described on Site Profile dated 2017-12-24)", + "notes": "INSERTED FOR SITE PROFILE DATED 2020-01-27 (described on Site Profile dated 2020-01-27)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2015-06-04 (described on Site Profile dated 2015-06-04)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + } + ], + "parcelDescriptions": [ + { + "siteRegistry": false, + "dateNoted": "2023-04-14", + "parcelID": "18660", + "crownLandUsePIN": "19800", + "crownLandFileNumber": "18584", + "landDescription": "LOT 4 OF LOT 2 BLOCK 4 DISTRICT LOT 4 PLAN 6346" + }, + { + "siteRegistry": false, + "dateNoted": "2021-08-30", + "parcelID": "17340", + "crownLandUsePIN": "16356", + "crownLandFileNumber": "19503", + "landDescription": "LOT 1 OF LOT 2 BLOCK 2 DISTRICT LOT 2 PLAN 6026" + }, + { + "siteRegistry": false, + "dateNoted": "2023-04-29", + "parcelID": "20824", + "crownLandUsePIN": "16531", + "crownLandFileNumber": "15843", + "landDescription": "LOT 2 OF LOT 5 BLOCK 4 DISTRICT LOT 3 PLAN 7762" }, { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2020-08-25 (described on Site Profile dated 2020-08-25)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "dateNoted": "2022-01-06", + "parcelID": "16823", + "crownLandUsePIN": "19905", + "crownLandFileNumber": "15956", + "landDescription": "LOT 1 OF LOT 5 BLOCK 5 DISTRICT LOT 4 PLAN 9524" + }, + { + "siteRegistry": false, + "dateNoted": "2014-10-11", + "parcelID": "20370", + "crownLandUsePIN": "20264", + "crownLandFileNumber": "19484", + "landDescription": "LOT 4 OF LOT 1 BLOCK 3 DISTRICT LOT 1 PLAN 6059" } ], "siteDisclosures": [ { - "siteRegistry": true, - "dateReceived": "2019-08-26", - "dateCompleted": "2020-05-28", - "dateEntered": "2016-12-10", - "dateRegistrar": "2016-03-10", - "dateLocalAuthorityReceived": "2014-08-10", - "summary": "Facere in odio.", - "informationUsed": "Cupiditate totam iure fuga sapiente.\nCupiditate voluptatem expedita voluptate itaque nihil asperiores quibusdam ipsum.\nOptio adipisci placeat iste repellendus distinctio.", - "pastOrPresentOrders": "Nihil repudiandae magni eos aperiam deleniti ullam natus.\nTenetur quod dolorem.", + "siteRegistry": false, + "dateReceived": "2015-12-02", + "dateCompleted": "2015-12-10", + "dateEntered": "2014-09-11", + "dateRegistrar": "2014-08-28", + "dateLocalAuthorityReceived": "2023-09-10", + "summary": "Illo doloribus ducimus natus ipsam.", + "informationUsed": "Eligendi enim placeat dignissimos voluptas cum velit quibusdam excepturi.\nDignissimos harum quod iste ratione laboriosam.\nPraesentium modi dolore dolore sunt.\nSoluta numquam voluptates accusamus ea at saepe.", + "pastOrPresentOrders": "Quisquam accusantium voluptates officiis neque fugiat aliquid hic itaque cumque.", "commercialAndIndustrialPurposes": [ { "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false }, { @@ -58994,81 +65000,151 @@ "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + } + ] + }, + { + "siteRegistry": true, + "dateReceived": "2021-10-14", + "dateCompleted": "2015-04-08", + "dateEntered": "2019-01-26", + "dateRegistrar": "2016-01-29", + "dateLocalAuthorityReceived": "2017-05-23", + "summary": "Numquam culpa dolorum animi unde autem fugiat.\nRerum et placeat asperiores eos nisi illum maxime quasi.\nOccaecati autem magnam illum in.", + "informationUsed": "Itaque minus eveniet tenetur consectetur quidem adipisci facere.\nLaudantium debitis pariatur ullam eaque aperiam sint sapiente natus dicta.\nPlaceat quibusdam dicta totam nihil.\nRepellat iure incidunt.", + "pastOrPresentOrders": "Cumque magnam occaecati nostrum blanditiis hic voluptas veniam recusandae.\nOmnis vitae commodi distinctio totam nisi facere hic voluptates reprehenderit.\nQuos sint recusandae.", + "commercialAndIndustrialPurposes": [ { "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true } ] } ], "activityLog": [ + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "GISLASON SAVANNA", + "timestamp": "2022-05-26" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "SCHIMMEL KIANA", + "timestamp": "2022-01-18" + }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "GULGOWSKI TYREL", - "timestamp": "2020-12-21" + "user": "HUELS MARCUS", + "timestamp": "2023-08-14" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "NIKOLAUS IDELL", - "timestamp": "2016-04-17" + "user": "LEFFLER ABEL", + "timestamp": "2022-02-08" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "METZ DUDLEY", - "timestamp": "2022-04-28" + "user": "SCHOWALTER KEIRA", + "timestamp": "2017-06-20" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "SCHUSTER DEMARCO", - "timestamp": "2016-03-29" + "user": "TURNER LENNIE", + "timestamp": "2022-05-16" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "SIMONIS CONNER", + "timestamp": "2018-10-20" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "GUSIKOWSKI DIANA", + "timestamp": "2019-10-14" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "HERZOG WAVA", + "timestamp": "2014-05-16" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "PAUCEK FRIDA", - "timestamp": "2016-12-24" + "user": "RUECKER ROSEMARIE", + "timestamp": "2018-11-09" } ], "associatedSites": [ { - "dateNoted": "2022-10-14", + "dateNoted": "2022-08-21", + "notes": "", + "parcelID": "15345", + "siteID": "20984", + "siteRegistry": true + }, + { + "dateNoted": "2018-08-19", "notes": "", - "parcelID": "18308", - "siteID": "16586", + "parcelID": "18002", + "siteID": "17027", "siteRegistry": false } ] }, { - "uuid": "c0d86bca-b651-4700-804d-7a2dc72ca3e1", - "siteID": 18123, - "address": "4004 Elouise Wall", - "latitude": 54.7943, - "longitude": -134.3623, - "lastUpdated": "2022-08-26", - "city": "Nathanialtown", - "region": "Vancouver Island/Coast", - "victoriaFile": "26250-20/5060", + "uuid": "dc3a05b0-d6f5-45f9-8d23-ce77804f571f", + "siteID": 16262, + "address": "76204 Bailee Village", + "latitude": 55.9246, + "longitude": -120.2469, + "lastUpdated": "2023-10-05", + "city": "Jessfurt", + "region": "Cariboo", + "victoriaFile": "26250-20/19496", "regionalFile": "N/A", "parcelIDs": [ - 7702502, - 8821456, - 980341, - 438535, - 7050429 + 3835024, + 1664762, + 8251974, + 6621884, + 6361313 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2022-02-18", - "completed": "2018-09-27", - "initiated": "2022-11-15", - "ministryContact": "KILBACK DOUG", + "createdAt": "2023-04-08", + "completed": "2018-07-28", + "initiated": "2016-06-19", + "ministryContact": "KONOPELSKI ROSINA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -59076,11 +65152,6 @@ "" ], "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", @@ -59088,57 +65159,22 @@ }, { "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - } - ], - "siteRegistry": true - }, - { - "createdAt": "2014-08-10", - "completed": "2019-06-23", - "initiated": "2023-03-03", - "ministryContact": "GREEN MATTIE", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2018-06-07", - "completed": "2020-05-14", - "initiated": "2014-07-20", - "ministryContact": "HERZOG SPENCER", + "createdAt": "2018-04-10", + "completed": "2014-12-13", + "initiated": "2021-08-09", + "ministryContact": "WISOKY CLIFTON", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -59146,218 +65182,230 @@ "" ], "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, { "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - } - ], - "siteRegistry": false - }, - { - "createdAt": "2017-10-04", - "completed": "2020-08-19", - "initiated": "2014-04-23", - "ministryContact": "KUVALIS GUST", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false } ], "participants": [ { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2018-02-23", - "startDate": "2021-08-25", + "name": "AMET, DOLOR SIT", + "endDate": "2020-04-15", + "startDate": "2018-06-19", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true }, { - "name": "IPSUM", - "endDate": "2022-12-18", - "startDate": "2020-03-18", + "name": "AMET, DOLOR SIT", + "endDate": "2020-12-02", + "startDate": "2014-04-23", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": true + "siteRegistry": false } ], "suspectLandUses": [ { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-03-24 (described on Site Profile dated 2019-03-24)", + "notes": "INSERTED FOR SITE PROFILE DATED 2019-07-30 (described on Site Profile dated 2019-07-30)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2016-11-02 (described on Site Profile dated 2016-11-02)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2021-09-11 (described on Site Profile dated 2021-09-11)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-04-07 (described on Site Profile dated 2018-04-07)", + "notes": "INSERTED FOR SITE PROFILE DATED 2017-06-27 (described on Site Profile dated 2017-06-27)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2021-05-04 (described on Site Profile dated 2021-05-04)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], - "siteDisclosures": [ + "parcelDescriptions": [ + { + "siteRegistry": false, + "dateNoted": "2018-06-27", + "parcelID": "16260", + "crownLandUsePIN": "18824", + "crownLandFileNumber": "17824", + "landDescription": "LOT 3 OF LOT 2 BLOCK 5 DISTRICT LOT 4 PLAN 7582" + }, { "siteRegistry": true, - "dateReceived": "2019-01-08", - "dateCompleted": "2014-08-13", - "dateEntered": "2017-12-22", - "dateRegistrar": "2023-05-25", - "dateLocalAuthorityReceived": "2015-01-04", - "summary": "Modi vel deserunt.\nCumque tempora perspiciatis soluta error vel distinctio doloremque vero numquam.\nNisi eveniet eius sit tempora voluptatibus assumenda cum.", - "informationUsed": "Vero suscipit delectus velit.\nPorro cum tempore enim placeat.\nVoluptates aperiam asperiores est vero quibusdam nesciunt consectetur eligendi.\nPorro aliquam natus placeat temporibus.", - "pastOrPresentOrders": "Non in voluptatum.\nSunt nisi quibusdam illum doloremque.\nReprehenderit facilis voluptas minima autem quam doloribus doloremque.", + "dateNoted": "2022-03-19", + "parcelID": "16216", + "crownLandUsePIN": "16015", + "crownLandFileNumber": "19765", + "landDescription": "LOT 3 OF LOT 3 BLOCK 4 DISTRICT LOT 5 PLAN 7335" + } + ], + "siteDisclosures": [ + { + "siteRegistry": false, + "dateReceived": "2014-02-25", + "dateCompleted": "2020-06-10", + "dateEntered": "2016-11-10", + "dateRegistrar": "2021-09-14", + "dateLocalAuthorityReceived": "2015-11-09", + "summary": "Quos saepe magni eum eius porro ducimus quaerat.\nDucimus quibusdam veniam nam.", + "informationUsed": "Atque voluptates sit ut accusantium.\nHarum dolores aperiam sequi voluptas adipisci similique nihil.\nNostrum voluptatum exercitationem id sapiente voluptate minus ratione minus hic.", + "pastOrPresentOrders": "Rem magnam fuga ex iste.", "commercialAndIndustrialPurposes": [ { "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true + "siteRegistry": false }, { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true }, { "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true }, { "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true + "siteRegistry": false } ] } ], "activityLog": [ { - "siteRegistry": true, + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "REICHERT KELLEY", - "timestamp": "2015-04-19" + "user": "BUCKRIDGE GABRIELLA", + "timestamp": "2016-12-29" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "KUTCH IMANI", - "timestamp": "2020-07-09" + "user": "JACOBSON ZECHARIAH", + "timestamp": "2013-11-05" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "LUEILWITZ REY", - "timestamp": "2020-06-04" + "user": "TORPHY EDWIN", + "timestamp": "2020-11-29" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "GOLDNER BRENT", + "timestamp": "2014-01-11" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "TILLMAN QUINTON", - "timestamp": "2013-10-21" + "user": "ROBERTS MOLLIE", + "timestamp": "2020-02-26" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "MUELLER CYNTHIA", - "timestamp": "2022-04-05" + "user": "JONES KARIANNE", + "timestamp": "2020-11-19" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "NIENOW TRACY", + "timestamp": "2023-09-20" } ], "associatedSites": [ { - "dateNoted": "2022-03-03", + "dateNoted": "2017-03-13", + "notes": "", + "parcelID": "18630", + "siteID": "18191", + "siteRegistry": true + }, + { + "dateNoted": "2016-11-25", "notes": "", - "parcelID": "15348", - "siteID": "18197", + "parcelID": "20482", + "siteID": "15493", "siteRegistry": false }, { - "dateNoted": "2017-05-04", + "dateNoted": "2020-07-17", "notes": "", - "parcelID": "20913", - "siteID": "16586", + "parcelID": "20948", + "siteID": "19267", "siteRegistry": false } ] }, { - "uuid": "35dba527-922a-4fc1-a22c-e14a2baabb8b", - "siteID": 20230, - "address": "54173 Carol Mission", - "latitude": 54.7444, - "longitude": -122.2406, - "lastUpdated": "2022-11-24", - "city": "West Lafayette", - "region": " North Coast", - "victoriaFile": "26250-20/16449", + "uuid": "bd449db8-6f83-4776-9c4c-6211f02bdb1f", + "siteID": 19290, + "address": "455 Bailey Unions", + "latitude": 56.5072, + "longitude": -125.9625, + "lastUpdated": "2022-02-19", + "city": "South Maye", + "region": "Mainland/Southwest", + "victoriaFile": "26250-20/4067", "regionalFile": "N/A", "parcelIDs": [ - 8514506, - 8105598, - 416426, - 227951, - 2386408 + 7557067, + 1660680, + 7206770, + 2929082, + 696953 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2018-09-16", - "completed": "2023-01-03", - "initiated": "2018-08-27", - "ministryContact": "CARROLL MARJORIE", + "createdAt": "2021-06-10", + "completed": "2019-07-02", + "initiated": "2023-06-07", + "ministryContact": "BREITENBERG KALEIGH", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -59365,10 +65413,20 @@ "" ], "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", @@ -59377,27 +65435,87 @@ }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "createdAt": "2021-04-26", + "completed": "2020-04-24", + "initiated": "2017-11-10", + "ministryContact": "VOLKMAN-HILLS MARIANNE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": false }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "createdAt": "2022-09-10", + "completed": "2013-12-09", + "initiated": "2014-09-03", + "ministryContact": "TREUTEL KIRA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": false } ], "siteRegistry": true }, { - "createdAt": "2016-02-01", - "completed": "2023-08-11", - "initiated": "2017-06-21", - "ministryContact": "MCCLURE CELESTINE", + "createdAt": "2017-12-11", + "completed": "2016-10-30", + "initiated": "2016-12-06", + "ministryContact": "JOHNSON KARLI", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -59406,34 +65524,54 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "createdAt": "2021-01-22", + "completed": "2020-12-28", + "initiated": "2018-10-26", + "ministryContact": "PREDOVIC LINDSEY", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false } ], "participants": [ - { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2023-06-25", - "startDate": "2022-07-01", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": false - }, { "name": "IPSUM", - "endDate": "2014-03-10", - "startDate": "2018-06-03", + "endDate": "2019-01-28", + "startDate": "2015-02-11", "notes": "", "roles": [ "ORGANIZATION" @@ -59441,107 +65579,118 @@ "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2021-11-02", - "startDate": "2016-02-26", + "name": "AMET, DOLOR SIT", + "endDate": "2014-05-08", + "startDate": "2020-08-11", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true }, { "name": "IPSUM", - "endDate": "2022-03-24", - "startDate": "2018-01-16", + "endDate": "2015-08-26", + "startDate": "2017-12-21", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2016-05-24", - "startDate": "2021-02-15", + "name": "AMET, DOLOR SIT", + "endDate": "2018-04-30", + "startDate": "2018-10-11", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": false } ], "suspectLandUses": [ + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2014-03-09 (described on Site Profile dated 2014-03-09)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2016-08-12 (described on Site Profile dated 2016-08-12)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-01-22 (described on Site Profile dated 2019-01-22)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "notes": "INSERTED FOR SITE PROFILE DATED 2015-07-26 (described on Site Profile dated 2015-07-26)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-06-04 (described on Site Profile dated 2016-06-04)", + "notes": "INSERTED FOR SITE PROFILE DATED 2023-09-05 (described on Site Profile dated 2023-09-05)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-11-22 (described on Site Profile dated 2018-11-22)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2019-05-15 (described on Site Profile dated 2019-05-15)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], - "siteDisclosures": [ + "parcelDescriptions": [ { "siteRegistry": true, - "dateReceived": "2021-09-11", - "dateCompleted": "2020-08-15", - "dateEntered": "2022-08-01", - "dateRegistrar": "2014-04-16", - "dateLocalAuthorityReceived": "2023-07-02", - "summary": "Suscipit aperiam explicabo in incidunt modi odit maxime est.\nError quam nam consectetur corporis inventore laboriosam possimus eos.\nDolore deleniti sed quibusdam corporis.", - "informationUsed": "Harum illo pariatur debitis cumque possimus quaerat saepe.\nVelit animi unde corrupti facere.\nFacilis eligendi unde aperiam amet unde excepturi similique temporibus.\nTempora minus sint perspiciatis maxime distinctio sed optio velit.\nOmnis eum dicta unde animi aliquam veniam placeat quaerat vel.", - "pastOrPresentOrders": "Laborum dicta laboriosam nesciunt provident.\nArchitecto esse vero.", - "commercialAndIndustrialPurposes": [ - { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true - }, - { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true - } - ] + "dateNoted": "2022-10-10", + "parcelID": "17918", + "crownLandUsePIN": "20558", + "crownLandFileNumber": "19825", + "landDescription": "LOT 5 OF LOT 3 BLOCK 3 DISTRICT LOT 5 PLAN 5787" + }, + { + "siteRegistry": false, + "dateNoted": "2021-10-06", + "parcelID": "20783", + "crownLandUsePIN": "20945", + "crownLandFileNumber": "15948", + "landDescription": "LOT 4 OF LOT 4 BLOCK 2 DISTRICT LOT 2 PLAN 8552" }, { "siteRegistry": true, - "dateReceived": "2019-11-11", - "dateCompleted": "2015-06-06", - "dateEntered": "2022-04-12", - "dateRegistrar": "2014-06-06", - "dateLocalAuthorityReceived": "2021-09-23", - "summary": "Assumenda ipsa neque.\nQuidem dolores dicta ipsam recusandae impedit.", - "informationUsed": "Aliquid veritatis possimus nesciunt.\nIllo veritatis quisquam corrupti sapiente officiis.\nSuscipit numquam nihil molestiae laboriosam.", - "pastOrPresentOrders": "Rem voluptatibus perspiciatis dolorem perspiciatis fugit.\nAliquid itaque hic magni asperiores nesciunt atque.\nVoluptatem incidunt fugiat harum laboriosam repellat.", + "dateNoted": "2023-01-15", + "parcelID": "15364", + "crownLandUsePIN": "15294", + "crownLandFileNumber": "18357", + "landDescription": "LOT 4 OF LOT 2 BLOCK 5 DISTRICT LOT 5 PLAN 7683" + }, + { + "siteRegistry": false, + "dateNoted": "2022-03-23", + "parcelID": "15885", + "crownLandUsePIN": "17383", + "crownLandFileNumber": "16539", + "landDescription": "LOT 2 OF LOT 5 BLOCK 1 DISTRICT LOT 3 PLAN 4709" + } + ], + "siteDisclosures": [ + { + "siteRegistry": false, + "dateReceived": "2017-10-02", + "dateCompleted": "2019-09-18", + "dateEntered": "2022-09-19", + "dateRegistrar": "2017-05-01", + "dateLocalAuthorityReceived": "2019-11-11", + "summary": "Porro accusamus iusto quas maxime officia commodi.\nMaxime architecto dolor voluptas.\nTenetur impedit mollitia tempore aspernatur quas facilis est illum sint.", + "informationUsed": "Quod atque aliquid sunt corrupti illum ab atque saepe distinctio.\nSit deleniti distinctio recusandae tempore sapiente quae eum.\nQuisquam officiis asperiores unde placeat quibusdam explicabo.", + "pastOrPresentOrders": "Molestiae pariatur asperiores assumenda facilis debitis eius.\nFugit nihil itaque.", "commercialAndIndustrialPurposes": [ { "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false - }, - { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false - }, - { - "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false + "siteRegistry": true } ] } @@ -59550,99 +65699,88 @@ { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "TURNER SANDRA", - "timestamp": "2015-07-19" - }, - { - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "PACOCHA MARQUISE", - "timestamp": "2022-02-18" + "user": "O'CONNER LIBBIE", + "timestamp": "2016-11-24" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "BAUMBACH DINA", - "timestamp": "2022-03-16" - }, - { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "SCHILLER ARA", - "timestamp": "2015-01-18" + "user": "GULGOWSKI MICAH", + "timestamp": "2016-02-10" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "O'REILLY CARMELA", - "timestamp": "2015-10-24" + "user": "CHRISTIANSEN HARRISON", + "timestamp": "2017-11-21" }, { - "siteRegistry": true, + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "BORER JEANIE", - "timestamp": "2016-08-27" + "user": "LARKIN DESTANY", + "timestamp": "2021-07-13" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "GERHOLD DORIS", - "timestamp": "2014-01-16" - }, - { - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "FUNK EVERETTE", - "timestamp": "2023-01-10" + "user": "MAYERT ATHENA", + "timestamp": "2016-02-21" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "CARTER TOREY", - "timestamp": "2018-04-21" + "user": "CASSIN KENNITH", + "timestamp": "2020-11-02" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "HILPERT DORCAS", - "timestamp": "2017-04-15" + "user": "TOWNE FAUSTO", + "timestamp": "2017-08-07" } ], "associatedSites": [ { - "dateNoted": "2017-09-30", + "dateNoted": "2017-04-14", "notes": "", - "parcelID": "20590", - "siteID": "17480", + "parcelID": "17624", + "siteID": "19399", "siteRegistry": false + }, + { + "dateNoted": "2018-07-22", + "notes": "", + "parcelID": "18583", + "siteID": "20424", + "siteRegistry": true } ] }, { - "uuid": "b7291273-205c-4861-b8ec-6f44904aa801", - "siteID": 17078, - "address": "428 Macey Glens", - "latitude": 58.3414, - "longitude": -129.3804, - "lastUpdated": "2022-05-02", - "city": "Williamsonborough", + "uuid": "597b897f-448a-4f23-a759-5e93af31f4cc", + "siteID": 18816, + "address": "471 Lulu Parkway", + "latitude": 50.0987, + "longitude": -121.8258, + "lastUpdated": "2018-12-30", + "city": "Gabeborough", "region": "Vancouver Island/Coast", - "victoriaFile": "26250-20/11236", + "victoriaFile": "26250-20/12159", "regionalFile": "N/A", "parcelIDs": [ - 419857, - 6195809, - 5237076, - 2641417, - 6746740 + 3069579, + 7571058, + 1518616, + 3047364, + 1803447 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2019-04-12", - "completed": "2016-06-16", - "initiated": "2016-12-15", - "ministryContact": "BERNIER MARILYNE", + "createdAt": "2021-07-19", + "completed": "2020-04-21", + "initiated": "2014-12-20", + "ministryContact": "HALEY JAILYN", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -59652,32 +65790,82 @@ "notationParticipants": [ { "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "createdAt": "2021-02-23", + "completed": "2016-08-17", + "initiated": "2020-10-21", + "ministryContact": "FEIL WILLARD", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "createdAt": "2017-03-10", + "completed": "2013-12-13", + "initiated": "2023-02-07", + "ministryContact": "BERGE ZAKARY", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false } ], "siteRegistry": false }, { - "createdAt": "2015-06-14", - "completed": "2015-12-28", - "initiated": "2014-02-14", - "ministryContact": "OKUNEVA SERENITY", + "createdAt": "2014-05-07", + "completed": "2020-08-18", + "initiated": "2019-11-11", + "ministryContact": "BERGE DARBY", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -59687,13 +65875,53 @@ "notationParticipants": [ { "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "createdAt": "2016-03-06", + "completed": "2017-07-12", + "initiated": "2016-04-16", + "ministryContact": "WILLIAMSON ELNA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true } ], "siteRegistry": true @@ -59701,19 +65929,29 @@ ], "participants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2019-05-21", - "startDate": "2023-01-18", + "name": "IPSUM", + "endDate": "2022-07-04", + "startDate": "2018-03-10", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "name": "IPSUM", + "endDate": "2022-09-12", + "startDate": "2021-06-10", + "notes": "", + "roles": [ + "ORGANIZATION" ], "siteRegistry": true }, { - "name": "AMET, DOLOR SIT", - "endDate": "2018-03-03", - "startDate": "2017-06-22", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2020-07-19", + "startDate": "2017-02-03", "notes": "", "roles": [ "EMPLOYEE" @@ -59721,19 +65959,19 @@ "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2023-02-14", - "startDate": "2022-02-26", + "name": "IPSUM", + "endDate": "2020-08-06", + "startDate": "2022-08-03", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], - "siteRegistry": false + "siteRegistry": true }, { "name": "AMET, DOLOR SIT", - "endDate": "2015-07-03", - "startDate": "2022-10-18", + "endDate": "2022-08-02", + "startDate": "2020-03-12", "notes": "", "roles": [ "ORGANIZATION" @@ -59743,70 +65981,79 @@ ], "suspectLandUses": [ { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-04-13 (described on Site Profile dated 2022-04-13)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2019-04-01 (described on Site Profile dated 2019-04-01)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-06-08 (described on Site Profile dated 2016-06-08)", + "notes": "INSERTED FOR SITE PROFILE DATED 2023-01-12 (described on Site Profile dated 2023-01-12)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], + "parcelDescriptions": [ + { + "siteRegistry": false, + "dateNoted": "2015-11-07", + "parcelID": "18009", + "crownLandUsePIN": "19717", + "crownLandFileNumber": "15778", + "landDescription": "LOT 1 OF LOT 2 BLOCK 4 DISTRICT LOT 3 PLAN 6567" + }, + { + "siteRegistry": false, + "dateNoted": "2014-03-05", + "parcelID": "18936", + "crownLandUsePIN": "18239", + "crownLandFileNumber": "15418", + "landDescription": "LOT 1 OF LOT 3 BLOCK 1 DISTRICT LOT 5 PLAN 7985" + }, + { + "siteRegistry": false, + "dateNoted": "2019-12-05", + "parcelID": "20151", + "crownLandUsePIN": "20402", + "crownLandFileNumber": "16295", + "landDescription": "LOT 2 OF LOT 4 BLOCK 3 DISTRICT LOT 4 PLAN 4933" + }, + { + "siteRegistry": false, + "dateNoted": "2022-11-20", + "parcelID": "20315", + "crownLandUsePIN": "16207", + "crownLandFileNumber": "16618", + "landDescription": "LOT 4 OF LOT 3 BLOCK 4 DISTRICT LOT 2 PLAN 5303" + }, + { + "siteRegistry": false, + "dateNoted": "2014-10-18", + "parcelID": "15823", + "crownLandUsePIN": "20921", + "crownLandFileNumber": "15610", + "landDescription": "LOT 2 OF LOT 4 BLOCK 2 DISTRICT LOT 2 PLAN 7221" + } + ], "siteDisclosures": [ { - "siteRegistry": true, - "dateReceived": "2015-10-03", - "dateCompleted": "2018-09-26", - "dateEntered": "2022-04-26", - "dateRegistrar": "2017-01-13", - "dateLocalAuthorityReceived": "2022-02-12", - "summary": "Aspernatur amet quisquam minus sint.", - "informationUsed": "Omnis ducimus corporis fugiat cumque aliquam eligendi quibusdam non accusantium.\nVoluptatibus magni voluptatem optio nemo harum odit reprehenderit consequuntur corrupti.\nAliquam facilis modi porro illo laboriosam.\nTenetur quibusdam incidunt.", - "pastOrPresentOrders": "Nobis quibusdam soluta.\nVeritatis deleniti quasi sunt fuga dolorum.", + "siteRegistry": false, + "dateReceived": "2017-03-24", + "dateCompleted": "2019-11-21", + "dateEntered": "2015-11-23", + "dateRegistrar": "2018-01-05", + "dateLocalAuthorityReceived": "2020-10-18", + "summary": "Culpa commodi accusantium dolorum ipsum quo fugit.\nBeatae iste reiciendis itaque nam at est.", + "informationUsed": "Praesentium sequi labore ducimus quasi ad deserunt quidem aspernatur tenetur.\nDolorum possimus rem vitae exercitationem quos consequuntur quidem.\nCumque tenetur est veritatis placeat illum non architecto temporibus id.\nHarum eius voluptates.", + "pastOrPresentOrders": "Dolorem nam a ea a facere fugiat velit natus voluptate.", "commercialAndIndustrialPurposes": [ { "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, - { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false - }, - { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true - }, { "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false - } - ] - }, - { - "siteRegistry": true, - "dateReceived": "2018-11-08", - "dateCompleted": "2023-05-13", - "dateEntered": "2020-03-27", - "dateRegistrar": "2020-07-08", - "dateLocalAuthorityReceived": "2022-06-10", - "summary": "Non dignissimos sed.\nQuia voluptas aliquid.", - "informationUsed": "Dolor laudantium reprehenderit quo doloribus minus.\nAt esse quasi eveniet perferendis in nulla accusamus consectetur.\nSit eum at quam tenetur architecto similique.", - "pastOrPresentOrders": "Optio odit voluptas.", - "commercialAndIndustrialPurposes": [ - { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true - }, - { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false }, { "scheduleReference": "F1*", @@ -59820,106 +66067,69 @@ { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "WINDLER KENNITH", - "timestamp": "2016-07-28" - }, - { - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "HAYES-MILLER ESTEL", - "timestamp": "2016-01-19" + "user": "GREENFELDER EDYTHE", + "timestamp": "2023-07-30" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "HIRTHE ASHLEE", - "timestamp": "2014-01-12" - }, - { - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "LEMKE AL", - "timestamp": "2014-07-22" - }, - { - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "O'CONNELL JEANETTE", - "timestamp": "2016-06-15" + "user": "RENNER TAMIA", + "timestamp": "2013-12-21" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "TORP ELMER", - "timestamp": "2021-06-21" + "user": "GORCZANY BLANCHE", + "timestamp": "2019-06-15" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "FERRY ZORA", - "timestamp": "2017-09-18" - }, - { - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "ERNSER KILEY", - "timestamp": "2015-05-17" - }, - { - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "WALTER ADITYA", - "timestamp": "2016-09-15" + "user": "MUELLER SANTOS", + "timestamp": "2014-04-27" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "FAHEY JESSYCA", - "timestamp": "2022-03-15" + "user": "HEIDENREICH ROXANE", + "timestamp": "2019-09-15" } ], "associatedSites": [ { - "dateNoted": "2021-04-13", - "notes": "", - "parcelID": "16451", - "siteID": "20586", - "siteRegistry": true - }, - { - "dateNoted": "2021-02-12", + "dateNoted": "2021-09-23", "notes": "", - "parcelID": "17439", - "siteID": "17450", - "siteRegistry": true + "parcelID": "16908", + "siteID": "17483", + "siteRegistry": false } ] }, { - "uuid": "6594d797-e039-4bfc-9e60-c0eeda41890b", - "siteID": 18404, - "address": "7011 Billy Parks", - "latitude": 52.981, - "longitude": -131.5634, - "lastUpdated": "2014-05-09", - "city": "North Eliezerland", - "region": "Vancouver Island/Coast", - "victoriaFile": "26250-20/4395", + "uuid": "97028e94-86c3-4948-9f73-b6426f42c85f", + "siteID": 15827, + "address": "319 Malcolm Rue", + "latitude": 50.3443, + "longitude": -131.7112, + "lastUpdated": "2020-06-16", + "city": "Shannonhaven", + "region": "Mainland/Southwest", + "victoriaFile": "26250-20/18350", "regionalFile": "N/A", "parcelIDs": [ - 456772, - 8371406, - 5102214, - 7070126, - 662619 + 5000784, + 9798541, + 2544517, + 5109704, + 4207787 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2023-09-16", - "completed": "2017-10-17", - "initiated": "2022-06-01", - "ministryContact": "EMARD SADYE", + "createdAt": "2014-06-20", + "completed": "2021-01-17", + "initiated": "2015-02-13", + "ministryContact": "GIBSON GEORGE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -59929,9 +66139,19 @@ "notationParticipants": [ { "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", @@ -59939,17 +66159,17 @@ }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true + "role": "SUBMITTED BY", + "siteRegistry": false } ], "siteRegistry": true }, { - "createdAt": "2014-05-24", - "completed": "2021-10-31", - "initiated": "2020-09-04", - "ministryContact": "STEHR MARIANO", + "createdAt": "2015-02-04", + "completed": "2014-01-29", + "initiated": "2023-02-15", + "ministryContact": "KLING DORIAN", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -59966,45 +66186,30 @@ "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false - } - ], - "siteRegistry": true - }, - { - "createdAt": "2021-06-07", - "completed": "2021-08-13", - "initiated": "2021-04-25", - "ministryContact": "CRONA OTTILIE", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ + }, { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false + "role": "REQUESTED BY", + "siteRegistry": true } ], "siteRegistry": true }, { - "createdAt": "2014-11-28", - "completed": "2020-07-01", - "initiated": "2022-07-16", - "ministryContact": "SHIELDS DELANEY", + "createdAt": "2014-07-23", + "completed": "2022-09-27", + "initiated": "2016-03-13", + "ministryContact": "LITTEL KRISTA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -60013,95 +66218,133 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false } ], "participants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2020-09-09", - "startDate": "2014-09-17", + "name": "AMET, DOLOR SIT", + "endDate": "2023-06-10", + "startDate": "2019-02-04", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": false + "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2020-08-29", - "startDate": "2013-10-26", + "name": "IPSUM", + "endDate": "2019-02-02", + "startDate": "2017-01-09", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": true + "siteRegistry": false }, { - "name": "IPSUM", - "endDate": "2018-01-20", - "startDate": "2020-10-23", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2017-07-19", + "startDate": "2015-05-06", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2021-09-05", + "startDate": "2015-01-27", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2018-08-07", + "startDate": "2017-06-01", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": true + "siteRegistry": false } ], "suspectLandUses": [ { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-05-17 (described on Site Profile dated 2018-05-17)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "notes": "INSERTED FOR SITE PROFILE DATED 2014-03-02 (described on Site Profile dated 2014-03-02)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-08-20 (described on Site Profile dated 2014-08-20)", + "notes": "INSERTED FOR SITE PROFILE DATED 2014-05-23 (described on Site Profile dated 2014-05-23)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2020-06-19 (described on Site Profile dated 2020-06-19)", + "notes": "INSERTED FOR SITE PROFILE DATED 2017-08-10 (described on Site Profile dated 2017-08-10)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], + "parcelDescriptions": [ + { + "siteRegistry": false, + "dateNoted": "2019-10-16", + "parcelID": "16143", + "crownLandUsePIN": "20372", + "crownLandFileNumber": "17987", + "landDescription": "LOT 1 OF LOT 1 BLOCK 4 DISTRICT LOT 2 PLAN 5567" + }, + { + "siteRegistry": false, + "dateNoted": "2020-04-13", + "parcelID": "16321", + "crownLandUsePIN": "15465", + "crownLandFileNumber": "19984", + "landDescription": "LOT 4 OF LOT 5 BLOCK 2 DISTRICT LOT 3 PLAN 4614" + } + ], "siteDisclosures": [ { - "siteRegistry": true, - "dateReceived": "2021-09-15", - "dateCompleted": "2015-10-29", - "dateEntered": "2014-10-24", - "dateRegistrar": "2016-12-26", - "dateLocalAuthorityReceived": "2017-08-31", - "summary": "Vitae molestias neque laboriosam omnis quo iste dignissimos aliquam deserunt.\nCulpa nulla autem fuga consequuntur.", - "informationUsed": "Aspernatur sint ea nam quos.\nSoluta sunt dolores repellat adipisci natus culpa recusandae esse.\nLabore id voluptatibus tempora sunt fugit aperiam.\nHarum laboriosam molestiae dignissimos.", - "pastOrPresentOrders": "Dignissimos explicabo illo quod.\nEius nobis dignissimos adipisci culpa at sequi tempora soluta.\nTemporibus error deserunt reprehenderit necessitatibus deserunt modi quidem.", + "siteRegistry": false, + "dateReceived": "2017-07-04", + "dateCompleted": "2015-12-01", + "dateEntered": "2022-06-30", + "dateRegistrar": "2015-12-12", + "dateLocalAuthorityReceived": "2016-09-02", + "summary": "Consequuntur voluptates molestias repellat velit explicabo ducimus assumenda.\nAnimi tenetur voluptas vitae dolorum nesciunt maxime nemo.", + "informationUsed": "Vel placeat vero consequatur temporibus sint atque veritatis.\nDistinctio quidem amet a itaque deserunt temporibus.\nNisi accusantium quo laboriosam ipsam vel.\nFugit eos aliquam aliquam iusto nesciunt.", + "pastOrPresentOrders": "Nemo error hic.\nTempore ad ipsum.", "commercialAndIndustrialPurposes": [ - { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false - }, { "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", @@ -60111,108 +66354,132 @@ "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false - }, + } + ] + }, + { + "siteRegistry": false, + "dateReceived": "2021-05-31", + "dateCompleted": "2022-02-10", + "dateEntered": "2020-11-23", + "dateRegistrar": "2014-01-13", + "dateLocalAuthorityReceived": "2021-09-27", + "summary": "Incidunt vitae et ducimus numquam.", + "informationUsed": "Odit accusantium sequi harum quia voluptatibus.\nOdio consequatur asperiores deserunt corrupti numquam sit rerum assumenda.\nRepellat aut laudantium voluptatum.\nDistinctio consequuntur illo nostrum deserunt quisquam.", + "pastOrPresentOrders": "Iusto dignissimos quibusdam odio soluta deleniti impedit.\nPossimus neque veritatis sunt nobis excepturi vero aliquid numquam ipsa.\nSed eius distinctio magnam nihil molestiae voluptatem hic provident rem.", + "commercialAndIndustrialPurposes": [ { "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false } ] } ], "activityLog": [ { - "siteRegistry": true, + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "RIPPIN SHAYNA", - "timestamp": "2023-03-14" + "user": "OSINSKI MYRNA", + "timestamp": "2022-03-29" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "KUNZE-BEAHAN MAEGAN", - "timestamp": "2021-07-12" + "user": "REILLY AURELIA", + "timestamp": "2020-10-10" }, { - "siteRegistry": true, + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "MACEJKOVIC KENNITH", - "timestamp": "2019-03-02" + "user": "UPTON REYES", + "timestamp": "2023-07-29" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "CRONIN JEANIE", - "timestamp": "2017-10-14" + "user": "O'CONNER DON", + "timestamp": "2019-07-19" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "KOZEY ABIGALE", - "timestamp": "2017-12-23" + "user": "LEFFLER LOMA", + "timestamp": "2016-12-24" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "CONNELLY MARQUISE", + "timestamp": "2017-01-05" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "DICKINSON HORACIO", - "timestamp": "2015-03-31" + "user": "HODKIEWICZ CAREY", + "timestamp": "2019-10-31" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "PAUCEK MAXIMUS", - "timestamp": "2018-12-11" + "user": "GUTMANN ELLA", + "timestamp": "2018-11-10" } ], "associatedSites": [ { - "dateNoted": "2015-03-13", + "dateNoted": "2023-02-20", "notes": "", - "parcelID": "16451", - "siteID": "17155", + "parcelID": "16701", + "siteID": "16843", "siteRegistry": true }, { - "dateNoted": "2015-10-30", + "dateNoted": "2015-08-26", "notes": "", - "parcelID": "19931", - "siteID": "16920", + "parcelID": "17414", + "siteID": "17940", "siteRegistry": false }, { - "dateNoted": "2019-10-30", + "dateNoted": "2021-03-07", "notes": "", - "parcelID": "17023", - "siteID": "16902", - "siteRegistry": false + "parcelID": "16496", + "siteID": "16938", + "siteRegistry": true } ] }, { - "uuid": "dae630d5-2672-43ed-8a03-ebd0ea11a363", - "siteID": 18600, - "address": "400 Clement Key", - "latitude": 52.4262, - "longitude": -132.9243, - "lastUpdated": "2023-06-21", - "city": "Parkerborough", - "region": " North Coast", - "victoriaFile": "26250-20/13700", + "uuid": "06f879c3-e70d-47b2-ace2-5fa07f6a48f7", + "siteID": 15786, + "address": "7683 Darrick Burg", + "latitude": 53.9815, + "longitude": -128.7349, + "lastUpdated": "2021-09-14", + "city": "Legrosview", + "region": "Kootenay", + "victoriaFile": "26250-20/11572", "regionalFile": "N/A", "parcelIDs": [ - 9909609, - 621241, - 8460567, - 1071223, - 4095969 + 5355676, + 2536590, + 2484395, + 2209182, + 9394654 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2015-02-21", - "completed": "2015-09-27", - "initiated": "2020-06-04", - "ministryContact": "SCHROEDER HANS", + "createdAt": "2016-11-09", + "completed": "2013-10-21", + "initiated": "2021-09-19", + "ministryContact": "OBERBRUNNER DIXIE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -60220,6 +66487,11 @@ "" ], "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", @@ -60227,21 +66499,71 @@ }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "createdAt": "2022-10-27", + "completed": "2014-11-25", + "initiated": "2023-04-08", + "ministryContact": "HACKETT ELOISE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "createdAt": "2018-11-04", + "completed": "2016-10-09", + "initiated": "2019-02-03", + "ministryContact": "LEDNER VIRGINIA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true } @@ -60249,10 +66571,10 @@ "siteRegistry": true }, { - "createdAt": "2020-08-22", - "completed": "2019-01-13", - "initiated": "2017-01-04", - "ministryContact": "ROBERTS AMELY", + "createdAt": "2018-06-18", + "completed": "2014-06-23", + "initiated": "2016-04-26", + "ministryContact": "CHRISTIANSEN LEMUEL", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -60261,7 +66583,7 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true }, @@ -60271,23 +66593,28 @@ "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false + "role": "REQUESTED BY", + "siteRegistry": true } ], "siteRegistry": true }, { - "createdAt": "2018-04-07", - "completed": "2016-04-15", - "initiated": "2019-02-06", - "ministryContact": "STEHR IDELLA", + "createdAt": "2016-02-02", + "completed": "2015-09-25", + "initiated": "2014-07-12", + "ministryContact": "CARTWRIGHT LOYCE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -60298,22 +66625,27 @@ { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true } ], "participants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2022-01-10", - "startDate": "2020-10-28", + "name": "AMET, DOLOR SIT", + "endDate": "2020-09-09", + "startDate": "2019-05-13", "notes": "", "roles": [ "ORGANIZATION" @@ -60321,22 +66653,22 @@ "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2018-01-12", - "startDate": "2016-03-20", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2020-01-18", + "startDate": "2016-05-06", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": true + "siteRegistry": false }, { - "name": "AMET, DOLOR SIT", - "endDate": "2023-09-19", - "startDate": "2020-06-21", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2019-08-06", + "startDate": "2018-12-26", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": true } @@ -60344,51 +66676,82 @@ "suspectLandUses": [ { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-11-19 (described on Site Profile dated 2022-11-19)", + "notes": "INSERTED FOR SITE PROFILE DATED 2019-07-05 (described on Site Profile dated 2019-07-05)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-08-08 (described on Site Profile dated 2021-08-08)", + "notes": "INSERTED FOR SITE PROFILE DATED 2017-11-16 (described on Site Profile dated 2017-11-16)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2020-01-17 (described on Site Profile dated 2020-01-17)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-06-25 (described on Site Profile dated 2022-06-25)", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2016-07-21 (described on Site Profile dated 2016-07-21)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2019-07-28 (described on Site Profile dated 2019-07-28)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + } + ], + "parcelDescriptions": [ + { + "siteRegistry": true, + "dateNoted": "2017-05-07", + "parcelID": "17292", + "crownLandUsePIN": "19364", + "crownLandFileNumber": "18741", + "landDescription": "LOT 3 OF LOT 1 BLOCK 2 DISTRICT LOT 2 PLAN 7804" + }, + { + "siteRegistry": false, + "dateNoted": "2014-02-01", + "parcelID": "18013", + "crownLandUsePIN": "16668", + "crownLandFileNumber": "19933", + "landDescription": "LOT 5 OF LOT 3 BLOCK 5 DISTRICT LOT 5 PLAN 9643" }, { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-06-16 (described on Site Profile dated 2017-06-16)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "dateNoted": "2020-05-05", + "parcelID": "18177", + "crownLandUsePIN": "15770", + "crownLandFileNumber": "19891", + "landDescription": "LOT 2 OF LOT 3 BLOCK 4 DISTRICT LOT 3 PLAN 6683" } ], "siteDisclosures": [ { "siteRegistry": false, - "dateReceived": "2021-07-05", - "dateCompleted": "2015-03-29", - "dateEntered": "2013-10-13", - "dateRegistrar": "2014-05-17", - "dateLocalAuthorityReceived": "2014-04-25", - "summary": "Quis occaecati possimus magnam ipsam quas libero.\nTotam molestiae iure placeat aperiam voluptate ad.\nVoluptate iusto quia dignissimos.", - "informationUsed": "Vero autem corrupti.\nReprehenderit molestias exercitationem perspiciatis delectus.\nTemporibus doloremque hic cupiditate vitae in praesentium.\nFuga repellat occaecati quaerat inventore sequi voluptatum hic.\nFugit labore quo quasi nam distinctio distinctio perspiciatis illo.", - "pastOrPresentOrders": "Nemo aspernatur pariatur.\nFugiat aut quidem maiores ullam delectus neque amet velit.", + "dateReceived": "2023-09-28", + "dateCompleted": "2021-06-22", + "dateEntered": "2017-09-29", + "dateRegistrar": "2017-01-11", + "dateLocalAuthorityReceived": "2021-06-14", + "summary": "Consequatur aliquid repudiandae aspernatur illum.", + "informationUsed": "Earum neque quam iste ullam aliquam mollitia amet.\nMaiores repellat praesentium enim quam unde.\nDolor quae impedit assumenda nobis quos quaerat voluptatem.\nQuo numquam iste modi.\nOccaecati numquam a.", + "pastOrPresentOrders": "Ex neque laudantium facilis doloremque laudantium sed molestias.\nEos id fugiat adipisci ducimus saepe assumenda itaque atque amet.", "commercialAndIndustrialPurposes": [ { "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true + "siteRegistry": false }, { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true }, { "scheduleReference": "F2*", @@ -60398,113 +66761,139 @@ ] }, { - "siteRegistry": true, - "dateReceived": "2021-09-16", - "dateCompleted": "2020-07-26", - "dateEntered": "2021-02-05", - "dateRegistrar": "2022-07-07", - "dateLocalAuthorityReceived": "2019-12-12", - "summary": "Nobis reiciendis velit.", - "informationUsed": "Ullam ex distinctio qui debitis rerum alias accusantium impedit neque.\nDistinctio dicta facere nam commodi dolor architecto.\nNeque nobis vero veniam voluptates optio aspernatur vel.\nAnimi excepturi id.", - "pastOrPresentOrders": "Voluptatum exercitationem minima numquam ducimus ipsa ab hic consectetur consectetur.", + "siteRegistry": false, + "dateReceived": "2021-10-28", + "dateCompleted": "2016-02-06", + "dateEntered": "2019-06-06", + "dateRegistrar": "2019-04-25", + "dateLocalAuthorityReceived": "2014-04-18", + "summary": "Laudantium facilis consectetur.\nAut molestiae illo.", + "informationUsed": "Repudiandae eaque doloribus deserunt est illo esse excepturi enim.\nPerferendis similique repellat tempora porro beatae aspernatur aliquid.\nCum saepe earum ratione delectus.\nNobis repellat ea dignissimos accusamus nisi quas cupiditate.", + "pastOrPresentOrders": "Nobis quasi accusamus sunt recusandae hic repellat laudantium facilis.\nDucimus non nesciunt.\nIpsa facilis necessitatibus neque libero maiores.", "commercialAndIndustrialPurposes": [ { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false - }, - { - "scheduleReference": "F1*", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false + "siteRegistry": true }, { "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true } ] } ], "activityLog": [ + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "KLEIN THEO", + "timestamp": "2014-04-30" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "KRIS LINWOOD", + "timestamp": "2013-11-22" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "WINDLER BUD", + "timestamp": "2021-04-21" + }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "LYNCH SABRYNA", - "timestamp": "2018-11-30" + "user": "CUMMERATA KENYATTA", + "timestamp": "2022-10-21" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "MCGLYNN REYMUNDO", - "timestamp": "2016-02-20" + "user": "VON DREW", + "timestamp": "2020-12-07" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "LOWE CLOYD", - "timestamp": "2016-12-18" + "user": "EMMERICH EDWARDO", + "timestamp": "2015-08-14" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "LEGROS SABRYNA", - "timestamp": "2023-01-18" + "user": "BRADTKE ART", + "timestamp": "2020-04-04" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "SCHMELER AMIR", - "timestamp": "2021-12-15" + "user": "WUCKERT KRYSTAL", + "timestamp": "2022-05-21" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "HAMILL-WITTING KATHLEEN", + "timestamp": "2014-04-25" } ], "associatedSites": [ { - "dateNoted": "2016-03-09", + "dateNoted": "2017-02-10", + "notes": "", + "parcelID": "20409", + "siteID": "17225", + "siteRegistry": true + }, + { + "dateNoted": "2014-07-26", "notes": "", - "parcelID": "15651", - "siteID": "17450", + "parcelID": "19490", + "siteID": "17951", "siteRegistry": false }, { - "dateNoted": "2021-05-23", + "dateNoted": "2016-07-02", "notes": "", - "parcelID": "18073", - "siteID": "17601", - "siteRegistry": true + "parcelID": "16321", + "siteID": "19390", + "siteRegistry": false } ] }, { - "uuid": "e247c7bd-4657-4c70-a991-141a21b26b7a", - "siteID": 17936, - "address": "86199 Lela Road", - "latitude": 54.9147, - "longitude": -127.6541, - "lastUpdated": "2021-12-30", - "city": "West Clareboro", - "region": "Mainland/Southwest", - "victoriaFile": "26250-20/5232", + "uuid": "924be8e1-a95c-4d15-a3d4-ca6f762ee9c5", + "siteID": 17846, + "address": "2050 Hauck Ways", + "latitude": 55.3289, + "longitude": -125.0426, + "lastUpdated": "2021-08-07", + "city": "Lake Ronaldochester", + "region": "Kootenay", + "victoriaFile": "26250-20/6971", "regionalFile": "N/A", "parcelIDs": [ - 7059073, - 8165970, - 4216874, - 9984867, - 2828956 + 7739567, + 7732039, + 9547712, + 3182231, + 7426168 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2014-07-29", - "completed": "2020-04-21", - "initiated": "2015-09-20", - "ministryContact": "GOLDNER RAY", + "createdAt": "2013-10-20", + "completed": "2014-03-23", + "initiated": "2014-07-25", + "ministryContact": "BROWN JENNIE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -60518,18 +66907,18 @@ "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2019-01-09", - "completed": "2022-06-17", - "initiated": "2021-07-10", - "ministryContact": "MURRAY OMER", + "createdAt": "2015-11-27", + "completed": "2023-09-11", + "initiated": "2017-06-06", + "ministryContact": "TILLMAN ELMER", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -60538,28 +66927,23 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false } ], "siteRegistry": true }, { - "createdAt": "2017-10-28", - "completed": "2019-02-01", - "initiated": "2021-10-03", - "ministryContact": "GLOVER PAYTON", + "createdAt": "2014-12-22", + "completed": "2014-10-25", + "initiated": "2015-05-11", + "ministryContact": "RENNER DARIEN", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -60567,39 +66951,9 @@ "" ], "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, { "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - } - ], - "siteRegistry": false - }, - { - "createdAt": "2014-01-01", - "completed": "2015-07-27", - "initiated": "2014-03-05", - "ministryContact": "MURAZIK KRIS", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": true }, { @@ -60607,20 +66961,10 @@ "role": "SUBMITTED BY", "siteRegistry": false }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false } ], "siteRegistry": true @@ -60629,18 +66973,8 @@ "participants": [ { "name": "SHELL CANADA PRODUCTS", - "endDate": "2022-06-12", - "startDate": "2019-01-31", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": false - }, - { - "name": "AMET, DOLOR SIT", - "endDate": "2016-05-19", - "startDate": "2014-05-03", + "endDate": "2017-04-24", + "startDate": "2021-12-21", "notes": "", "roles": [ "ORGANIZATION" @@ -60648,22 +66982,22 @@ "siteRegistry": true }, { - "name": "AMET, DOLOR SIT", - "endDate": "2014-06-22", - "startDate": "2017-07-18", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2023-02-25", + "startDate": "2013-11-16", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2014-04-19", - "startDate": "2016-05-09", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2017-02-22", + "startDate": "2018-07-13", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": false } @@ -60671,64 +67005,93 @@ "suspectLandUses": [ { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-09-29 (described on Site Profile dated 2016-09-29)", + "notes": "INSERTED FOR SITE PROFILE DATED 2014-07-06 (described on Site Profile dated 2014-07-06)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-03-05 (described on Site Profile dated 2016-03-05)", + "notes": "INSERTED FOR SITE PROFILE DATED 2015-07-13 (described on Site Profile dated 2015-07-13)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2016-03-23 (described on Site Profile dated 2016-03-23)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], + "parcelDescriptions": [ + { + "siteRegistry": false, + "dateNoted": "2020-01-16", + "parcelID": "19985", + "crownLandUsePIN": "19307", + "crownLandFileNumber": "16830", + "landDescription": "LOT 5 OF LOT 3 BLOCK 3 DISTRICT LOT 3 PLAN 5699" + }, + { + "siteRegistry": false, + "dateNoted": "2015-11-15", + "parcelID": "20552", + "crownLandUsePIN": "19065", + "crownLandFileNumber": "16827", + "landDescription": "LOT 3 OF LOT 2 BLOCK 1 DISTRICT LOT 4 PLAN 3750" + }, + { + "siteRegistry": false, + "dateNoted": "2017-06-08", + "parcelID": "16310", + "crownLandUsePIN": "16793", + "crownLandFileNumber": "17016", + "landDescription": "LOT 4 OF LOT 3 BLOCK 3 DISTRICT LOT 5 PLAN 8386" + }, + { + "siteRegistry": false, + "dateNoted": "2017-02-20", + "parcelID": "15396", + "crownLandUsePIN": "19228", + "crownLandFileNumber": "19072", + "landDescription": "LOT 1 OF LOT 5 BLOCK 2 DISTRICT LOT 1 PLAN 6653" + } + ], "siteDisclosures": [ { "siteRegistry": true, - "dateReceived": "2021-09-26", - "dateCompleted": "2019-11-12", - "dateEntered": "2018-05-27", - "dateRegistrar": "2018-11-02", - "dateLocalAuthorityReceived": "2022-06-20", - "summary": "Nemo eos illo sapiente ex odio error voluptatum illum.\nEarum est exercitationem.", - "informationUsed": "Earum corporis provident reiciendis suscipit.\nAt cum doloribus laudantium.\nAperiam adipisci eaque esse dolor voluptatum voluptatibus autem dolores accusamus.", - "pastOrPresentOrders": "Amet beatae saepe aut.\nAb culpa facilis harum.", + "dateReceived": "2016-07-19", + "dateCompleted": "2019-02-04", + "dateEntered": "2020-07-17", + "dateRegistrar": "2020-08-20", + "dateLocalAuthorityReceived": "2015-04-07", + "summary": "Modi esse occaecati.\nDelectus numquam odio a officia expedita repudiandae velit esse.\nVeniam sit vitae deserunt velit facilis facere ducimus iste.", + "informationUsed": "Adipisci repellendus aspernatur harum vitae iste a.\nSit ea aperiam quibusdam non minima.\nEarum voluptate eveniet eos totam.", + "pastOrPresentOrders": "Accusamus dolore architecto quisquam animi.\nMinus perferendis ut hic totam repellendus cumque expedita minus numquam.\nRerum incidunt sint architecto omnis magni ut.", "commercialAndIndustrialPurposes": [ { "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true - }, - { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false }, { - "scheduleReference": "F1*", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false } ] }, { - "siteRegistry": false, - "dateReceived": "2018-05-20", - "dateCompleted": "2015-08-28", - "dateEntered": "2017-02-04", - "dateRegistrar": "2022-07-05", - "dateLocalAuthorityReceived": "2017-03-07", - "summary": "Dolor commodi sapiente alias nam rerum quam adipisci.\nAd atque illo dicta quae laudantium non.", - "informationUsed": "Aliquid aliquid laudantium.\nVoluptatem nobis odit dignissimos officia at ad veritatis culpa similique.\nIn modi cum eaque eligendi minus.", - "pastOrPresentOrders": "Ea saepe accusamus minima eum voluptas.\nEum iure neque.\nSunt officiis reiciendis quibusdam.", + "siteRegistry": true, + "dateReceived": "2021-01-25", + "dateCompleted": "2016-03-19", + "dateEntered": "2022-11-13", + "dateRegistrar": "2017-02-06", + "dateLocalAuthorityReceived": "2017-08-10", + "summary": "Tenetur quidem quisquam.\nEsse similique fugiat.", + "informationUsed": "Asperiores quia soluta ipsa occaecati hic eos.\nQuae deleniti quia veniam labore debitis aspernatur earum.\nAnimi omnis eligendi ducimus similique atque perspiciatis maiores saepe.\nDistinctio enim necessitatibus deleniti doloremque quae itaque vero soluta.", + "pastOrPresentOrders": "Nulla possimus sed natus.\nVitae aperiam corporis debitis blanditiis est nihil corporis adipisci.\nId blanditiis suscipit laboriosam.", "commercialAndIndustrialPurposes": [ { "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false - }, - { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true }, { "scheduleReference": "F2*", @@ -60747,89 +67110,89 @@ { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "KILBACK DASHAWN", - "timestamp": "2018-12-17" + "user": "DOUGLAS ADDIE", + "timestamp": "2021-08-01" }, { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "ROGAHN-LAKIN ALIZA", - "timestamp": "2017-11-17" + "user": "MOHR CLARISSA", + "timestamp": "2013-12-14" }, { - "siteRegistry": true, + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "DUBUQUE CECILE", - "timestamp": "2013-10-17" + "user": "KOHLER MATTIE", + "timestamp": "2015-11-23" }, { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "RATH SHEILA", - "timestamp": "2022-12-14" + "user": "LOCKMAN-WALSH ELDORA", + "timestamp": "2015-03-26" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "ORN CAMREN", - "timestamp": "2022-11-08" + "user": "REINGER ZANDER", + "timestamp": "2018-07-18" }, { - "siteRegistry": true, + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "TILLMAN MAY", - "timestamp": "2018-08-23" + "user": "BECKER KAITLYN", + "timestamp": "2021-09-30" } ], "associatedSites": [ { - "dateNoted": "2022-08-29", + "dateNoted": "2021-05-22", "notes": "", - "parcelID": "19068", - "siteID": "15216", - "siteRegistry": false + "parcelID": "16485", + "siteID": "17116", + "siteRegistry": true }, { - "dateNoted": "2020-02-07", + "dateNoted": "2023-04-15", "notes": "", - "parcelID": "15226", - "siteID": "19221", - "siteRegistry": true + "parcelID": "18837", + "siteID": "18770", + "siteRegistry": false }, { - "dateNoted": "2014-09-25", + "dateNoted": "2020-11-13", "notes": "", - "parcelID": "18944", - "siteID": "20188", + "parcelID": "18156", + "siteID": "17509", "siteRegistry": true } ] }, { - "uuid": "307f4ee8-116c-433c-bca1-ca634e679898", - "siteID": 18108, - "address": "297 Zboncak Freeway", - "latitude": 51.6757, - "longitude": -136.8531, - "lastUpdated": "2020-12-15", - "city": "Ponce", - "region": " North Coast", - "victoriaFile": "26250-20/16202", + "uuid": "a6bb8d70-98f1-49a1-98a1-3f10a9ec9b17", + "siteID": 16285, + "address": "3324 Lee Underpass", + "latitude": 53.7457, + "longitude": -135.3476, + "lastUpdated": "2014-01-13", + "city": "Elenashire", + "region": "Thompson-Okanagan", + "victoriaFile": "26250-20/7826", "regionalFile": "N/A", "parcelIDs": [ - 346825, - 722667, - 831821, - 3709276, - 2976295 + 4504154, + 5910489, + 1137239, + 284753, + 4550700 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2022-01-18", - "completed": "2022-04-10", - "initiated": "2016-11-19", - "ministryContact": "BASHIRIAN ARTHUR", + "createdAt": "2021-08-05", + "completed": "2016-08-21", + "initiated": "2021-01-23", + "ministryContact": "BOYER JULIANNE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -60839,22 +67202,22 @@ "notationParticipants": [ { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false + "role": "REQUESTED BY", + "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2015-01-16", - "completed": "2021-06-19", - "initiated": "2022-10-17", - "ministryContact": "JACOBSON EINO", + "createdAt": "2017-05-08", + "completed": "2019-08-14", + "initiated": "2023-05-14", + "ministryContact": "KULAS TYSON", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -60863,7 +67226,7 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false }, @@ -60871,35 +67234,10 @@ "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false - } - ], - "siteRegistry": false - }, - { - "createdAt": "2018-03-29", - "completed": "2014-08-02", - "initiated": "2021-02-01", - "ministryContact": "WILLMS WILL", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": true } ], @@ -60909,8 +67247,8 @@ "participants": [ { "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2015-10-06", - "startDate": "2021-08-22", + "endDate": "2018-12-28", + "startDate": "2021-01-05", "notes": "", "roles": [ "ORGANIZATION" @@ -60919,38 +67257,38 @@ }, { "name": "SHELL CANADA PRODUCTS", - "endDate": "2023-07-24", - "startDate": "2019-11-16", + "endDate": "2022-02-05", + "startDate": "2020-03-22", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], - "siteRegistry": false + "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", - "endDate": "2014-12-10", - "startDate": "2015-11-11", + "endDate": "2015-12-24", + "startDate": "2020-03-22", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], - "siteRegistry": false + "siteRegistry": true }, { - "name": "IPSUM", - "endDate": "2015-03-07", - "startDate": "2020-11-07", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2017-08-21", + "startDate": "2017-05-27", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2019-12-14", - "startDate": "2019-11-14", + "endDate": "2019-09-22", + "startDate": "2020-09-15", "notes": "", "roles": [ "ORGANIZATION" @@ -60961,146 +67299,218 @@ "suspectLandUses": [ { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-05-16 (described on Site Profile dated 2018-05-16)", + "notes": "INSERTED FOR SITE PROFILE DATED 2021-10-06 (described on Site Profile dated 2021-10-06)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-04-14 (described on Site Profile dated 2022-04-14)", + "notes": "INSERTED FOR SITE PROFILE DATED 2019-09-16 (described on Site Profile dated 2019-09-16)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2014-03-10 (described on Site Profile dated 2014-03-10)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2019-12-21 (described on Site Profile dated 2019-12-21)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2020-02-17 (described on Site Profile dated 2020-02-17)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "notes": "INSERTED FOR SITE PROFILE DATED 2020-04-01 (described on Site Profile dated 2020-04-01)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + } + ], + "parcelDescriptions": [ + { + "siteRegistry": false, + "dateNoted": "2015-03-07", + "parcelID": "19329", + "crownLandUsePIN": "17450", + "crownLandFileNumber": "16204", + "landDescription": "LOT 1 OF LOT 4 BLOCK 2 DISTRICT LOT 2 PLAN 9223" + }, + { + "siteRegistry": false, + "dateNoted": "2015-07-13", + "parcelID": "20296", + "crownLandUsePIN": "18211", + "crownLandFileNumber": "20781", + "landDescription": "LOT 2 OF LOT 4 BLOCK 5 DISTRICT LOT 1 PLAN 5347" }, { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-09-09 (described on Site Profile dated 2018-09-09)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "dateNoted": "2016-02-03", + "parcelID": "15419", + "crownLandUsePIN": "19185", + "crownLandFileNumber": "16722", + "landDescription": "LOT 1 OF LOT 3 BLOCK 1 DISTRICT LOT 1 PLAN 8983" + }, + { + "siteRegistry": false, + "dateNoted": "2021-11-10", + "parcelID": "15504", + "crownLandUsePIN": "20398", + "crownLandFileNumber": "19183", + "landDescription": "LOT 2 OF LOT 5 BLOCK 4 DISTRICT LOT 5 PLAN 9205" }, { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-02-20 (described on Site Profile dated 2015-02-20)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "dateNoted": "2013-10-30", + "parcelID": "16799", + "crownLandUsePIN": "18112", + "crownLandFileNumber": "19597", + "landDescription": "LOT 1 OF LOT 3 BLOCK 3 DISTRICT LOT 2 PLAN 9631" } ], "siteDisclosures": [ { - "siteRegistry": false, - "dateReceived": "2020-08-02", - "dateCompleted": "2014-08-05", - "dateEntered": "2020-09-24", - "dateRegistrar": "2014-04-13", - "dateLocalAuthorityReceived": "2019-02-21", - "summary": "Ullam dolores id reprehenderit sint sit autem.\nCorporis architecto perspiciatis tempora.", - "informationUsed": "Temporibus et quis consectetur deserunt placeat deleniti.\nRem alias voluptatem accusantium eveniet soluta blanditiis sunt maiores.\nIllo maiores quam perferendis voluptatem fugit.\nMinus provident officiis deleniti autem quia.\nDolor non nulla est hic molestias.", - "pastOrPresentOrders": "Consectetur eveniet aliquam modi eius.\nReprehenderit sapiente alias facere doloribus non excepturi dolorum illum.\nIllo molestias error laboriosam ad optio tenetur.", + "siteRegistry": true, + "dateReceived": "2018-10-05", + "dateCompleted": "2021-03-17", + "dateEntered": "2016-08-11", + "dateRegistrar": "2015-01-30", + "dateLocalAuthorityReceived": "2013-11-22", + "summary": "Amet atque placeat adipisci expedita.\nFugit esse dolorum enim optio.\nEst voluptas maxime aspernatur iusto aliquid voluptatem non.", + "informationUsed": "Vitae praesentium quas nemo maxime.\nExpedita vel consequatur error sunt et.\nNam sit deserunt labore voluptas odit nemo ratione.", + "pastOrPresentOrders": "Dolor id delectus.\nEnim perferendis possimus quos.", "commercialAndIndustrialPurposes": [ { "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, - { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true - }, { "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { - "scheduleReference": "F2*", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false } ] + }, + { + "siteRegistry": true, + "dateReceived": "2023-09-26", + "dateCompleted": "2020-04-26", + "dateEntered": "2017-01-08", + "dateRegistrar": "2022-11-13", + "dateLocalAuthorityReceived": "2015-08-02", + "summary": "Illo nobis aspernatur incidunt quisquam.\nNesciunt inventore exercitationem accusantium illum cum et rem iste.\nDolores dolore fugit quo accusantium at.", + "informationUsed": "Similique mollitia explicabo.\nEst iure porro necessitatibus voluptatem reprehenderit.\nTemporibus possimus doloribus quod quis culpa molestiae earum esse omnis.\nEx neque quaerat quod facilis corporis animi.\nUnde excepturi nisi.", + "pastOrPresentOrders": "Error ducimus ipsam consequuntur reiciendis.\nSapiente tenetur voluptatibus deleniti deserunt laborum velit minus provident.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + } + ] } ], "activityLog": [ { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "POLLICH ARIELLE", - "timestamp": "2020-02-13" + "user": "VONRUEDEN PANSY", + "timestamp": "2016-09-27" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "CORWIN ROSIE", - "timestamp": "2014-10-17" + "user": "MAYERT SEBASTIAN", + "timestamp": "2015-05-08" }, { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "MANN JOHANN", - "timestamp": "2014-03-07" + "user": "ROGAHN KRISTINA", + "timestamp": "2018-01-01" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "KUHIC HOSEA", + "timestamp": "2020-07-10" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "HERMANN CARLI", - "timestamp": "2023-09-19" + "user": "CUMMINGS RHIANNON", + "timestamp": "2019-03-25" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "MONAHAN FORREST", - "timestamp": "2018-05-15" + "user": "CRUICKSHANK BRENDAN", + "timestamp": "2018-03-15" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "CORMIER-TOY GEORGE", + "timestamp": "2019-08-23" } ], "associatedSites": [ { - "dateNoted": "2018-06-04", + "dateNoted": "2020-10-09", "notes": "", - "parcelID": "18381", - "siteID": "16220", - "siteRegistry": false + "parcelID": "19628", + "siteID": "16432", + "siteRegistry": true }, { - "dateNoted": "2020-05-20", + "dateNoted": "2015-05-02", "notes": "", - "parcelID": "20298", - "siteID": "18231", + "parcelID": "20247", + "siteID": "15327", "siteRegistry": false }, { - "dateNoted": "2023-03-29", + "dateNoted": "2018-08-03", "notes": "", - "parcelID": "16124", - "siteID": "17450", - "siteRegistry": false + "parcelID": "16212", + "siteID": "16677", + "siteRegistry": true } ] }, { - "uuid": "63932f55-f9ac-40cf-850d-12fc764ba733", - "siteID": 18509, - "address": "2504 McDermott Landing", - "latitude": 56.9611, - "longitude": -136.6601, - "lastUpdated": "2016-03-11", - "city": "South Madison", - "region": "Kootenay", - "victoriaFile": "26250-20/11734", + "uuid": "a51c9025-9f04-4e6c-9e8f-c451ae8a90bb", + "siteID": 19138, + "address": "212 Wilderman Parkway", + "latitude": 49.3559, + "longitude": -119.7521, + "lastUpdated": "2019-01-18", + "city": "Thompsoncester", + "region": "Mainland/Southwest", + "victoriaFile": "26250-20/3678", "regionalFile": "N/A", "parcelIDs": [ - 4606863, - 4657320, - 4275317, - 2305767, - 4106952 + 645562, + 2015495, + 6940972, + 8282349, + 7275609 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2015-11-24", - "completed": "2021-06-20", - "initiated": "2017-04-21", - "ministryContact": "JOHNSON ESMERALDA", + "createdAt": "2014-01-18", + "completed": "2021-08-13", + "initiated": "2014-01-05", + "ministryContact": "LOWE HASSAN", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -61108,24 +67518,74 @@ "" ], "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "createdAt": "2023-04-23", + "completed": "2021-03-20", + "initiated": "2014-05-17", + "ministryContact": "JOHNSTON KIRSTIN", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": true } ], "siteRegistry": true }, { - "createdAt": "2017-11-24", - "completed": "2023-03-11", - "initiated": "2015-11-04", - "ministryContact": "BEATTY JAZMIN", + "createdAt": "2013-10-19", + "completed": "2016-03-25", + "initiated": "2014-06-19", + "ministryContact": "DURGAN BRICE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -61134,205 +67594,293 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "createdAt": "2023-04-19", + "completed": "2018-12-10", + "initiated": "2023-07-12", + "ministryContact": "RYAN BEVERLY", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true } ], "participants": [ { "name": "IPSUM", - "endDate": "2016-07-04", - "startDate": "2023-03-27", + "endDate": "2021-03-25", + "startDate": "2022-04-22", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": true + "siteRegistry": false }, { "name": "AMET, DOLOR SIT", - "endDate": "2022-05-13", - "startDate": "2020-08-29", + "endDate": "2019-12-17", + "startDate": "2015-12-06", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "name": "IPSUM", + "endDate": "2015-06-10", + "startDate": "2014-03-03", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true } ], "suspectLandUses": [ { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-02-23 (described on Site Profile dated 2019-02-23)", + "notes": "INSERTED FOR SITE PROFILE DATED 2015-12-23 (described on Site Profile dated 2015-12-23)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-01-16 (described on Site Profile dated 2021-01-16)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "notes": "INSERTED FOR SITE PROFILE DATED 2015-02-08 (described on Site Profile dated 2015-02-08)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-06-28 (described on Site Profile dated 2019-06-28)", + "notes": "INSERTED FOR SITE PROFILE DATED 2021-09-24 (described on Site Profile dated 2021-09-24)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + } + ], + "parcelDescriptions": [ + { + "siteRegistry": false, + "dateNoted": "2015-03-09", + "parcelID": "18759", + "crownLandUsePIN": "20004", + "crownLandFileNumber": "15728", + "landDescription": "LOT 5 OF LOT 4 BLOCK 4 DISTRICT LOT 5 PLAN 6405" }, { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-05-14 (described on Site Profile dated 2021-05-14)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "dateNoted": "2019-02-22", + "parcelID": "16138", + "crownLandUsePIN": "19465", + "crownLandFileNumber": "19475", + "landDescription": "LOT 4 OF LOT 2 BLOCK 3 DISTRICT LOT 3 PLAN 5927" } ], "siteDisclosures": [ { - "siteRegistry": false, - "dateReceived": "2019-02-28", - "dateCompleted": "2023-01-05", - "dateEntered": "2016-11-23", - "dateRegistrar": "2023-06-14", - "dateLocalAuthorityReceived": "2023-09-18", - "summary": "Laboriosam molestiae accusamus porro.\nEaque nobis autem doloremque asperiores mollitia fugit eveniet.", - "informationUsed": "Reiciendis earum pariatur dolorum sapiente minima quos nemo magnam.\nNihil vel accusantium temporibus optio adipisci eveniet cupiditate nesciunt labore.\nNon delectus quia nostrum amet commodi.\nId quis ad culpa similique fuga.", - "pastOrPresentOrders": "Placeat aliquid ipsam.\nRepellat reprehenderit iusto officiis porro dolor ullam.", + "siteRegistry": true, + "dateReceived": "2019-12-03", + "dateCompleted": "2014-02-23", + "dateEntered": "2017-04-28", + "dateRegistrar": "2015-03-28", + "dateLocalAuthorityReceived": "2020-02-27", + "summary": "Accusantium quis molestiae labore aliquid repellat.\nLabore nemo modi aspernatur ipsum autem adipisci dolores.\nAliquam eius error aliquid excepturi.", + "informationUsed": "Libero repellat assumenda repellendus et deserunt facere.\nNobis nemo debitis velit aperiam quidem voluptate sed vitae.\nIllum sint dolores adipisci voluptatibus fuga rerum minus voluptas.", + "pastOrPresentOrders": "Cum eveniet labore ab ipsa.\nUllam doloribus ex dolorum.\nAut reiciendis soluta nihil alias corporis vero labore distinctio.", "commercialAndIndustrialPurposes": [ { - "scheduleReference": "F2*", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, { "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false } ] }, { - "siteRegistry": false, - "dateReceived": "2023-06-18", - "dateCompleted": "2023-08-13", - "dateEntered": "2021-01-23", - "dateRegistrar": "2021-04-01", - "dateLocalAuthorityReceived": "2019-03-27", - "summary": "Modi impedit consequuntur cum excepturi tempora deserunt.\nModi sunt nesciunt suscipit voluptates tempora nisi ex saepe maiores.\nA necessitatibus veritatis voluptate possimus aspernatur aspernatur.", - "informationUsed": "Alias debitis corporis libero sint sequi.\nDicta totam nulla autem veritatis saepe.\nProvident quia atque temporibus odit.\nExpedita ut nulla mollitia voluptatum rerum.\nArchitecto perspiciatis aliquam quod esse quos consequatur animi.", - "pastOrPresentOrders": "Dolor iusto eum.\nNobis expedita alias incidunt tenetur laboriosam amet.\nDolor omnis culpa sapiente officiis.", + "siteRegistry": true, + "dateReceived": "2020-02-25", + "dateCompleted": "2020-05-19", + "dateEntered": "2014-01-13", + "dateRegistrar": "2014-03-03", + "dateLocalAuthorityReceived": "2022-01-14", + "summary": "Excepturi eius atque.\nAsperiores voluptatibus excepturi tempore enim iste quisquam autem nesciunt ducimus.", + "informationUsed": "Vero natus iure porro est dolore aut qui asperiores.\nAmet illo eaque omnis exercitationem fugit.\nAut ratione eligendi laboriosam autem laudantium necessitatibus quo.\nVeniam fugit quas.", + "pastOrPresentOrders": "Pariatur animi ipsum.\nIllo minima id distinctio unde ab repellendus neque totam.\nQuod ipsa pariatur.", "commercialAndIndustrialPurposes": [ - { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true - }, { "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false - }, - { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true } ] } ], "activityLog": [ + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "OKUNEVA ERA", + "timestamp": "2020-06-20" + }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "BRAKUS AHMAD", - "timestamp": "2017-04-01" + "user": "DICKINSON RAMONA", + "timestamp": "2019-03-12" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "KOCH BENEDICT", - "timestamp": "2018-08-23" + "user": "GRAHAM GERSON", + "timestamp": "2019-05-23" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "MORISSETTE ZORA", - "timestamp": "2019-12-16" + "user": "WINTHEISER-RENNER JACKELINE", + "timestamp": "2018-01-28" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "PROHASKA KRYSTINA", - "timestamp": "2017-05-23" + "user": "JACOBI-GRANT LEW", + "timestamp": "2021-11-23" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "OSINSKI RICKEY", + "timestamp": "2020-08-30" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "ROBERTS NAKIA", - "timestamp": "2022-09-01" + "user": "KRAJCIK MONTANA", + "timestamp": "2019-12-30" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "BORER KYLIE", + "timestamp": "2015-07-20" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "ANKUNDING KEYSHAWN", + "timestamp": "2017-07-03" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "FRIESEN PIETRO", + "timestamp": "2021-06-05" } ], "associatedSites": [ { - "dateNoted": "2020-09-01", + "dateNoted": "2017-07-21", "notes": "", - "parcelID": "17569", - "siteID": "19726", - "siteRegistry": false + "parcelID": "19599", + "siteID": "20221", + "siteRegistry": true }, { - "dateNoted": "2020-09-09", + "dateNoted": "2021-09-02", "notes": "", - "parcelID": "16996", - "siteID": "15785", - "siteRegistry": false + "parcelID": "15352", + "siteID": "15327", + "siteRegistry": true } ] }, { - "uuid": "d2e1fcf2-15d7-4f61-bef8-5c0cec9f08a4", - "siteID": 18685, - "address": "29147 Lubowitz Crest", - "latitude": 50.039, - "longitude": -138.5181, - "lastUpdated": "2015-12-20", - "city": "East Tara", - "region": "Vancouver Island/Coast", - "victoriaFile": "26250-20/4416", + "uuid": "64a82e15-1146-4085-9b3a-62a7b7c51569", + "siteID": 16150, + "address": "237 Hagenes Skyway", + "latitude": 57.4868, + "longitude": -122.2043, + "lastUpdated": "2022-07-21", + "city": "East Arturo", + "region": "Kootenay", + "victoriaFile": "26250-20/4424", "regionalFile": "N/A", "parcelIDs": [ - 9708365, - 9925863, - 8992199, - 5664734, - 1098689 + 5965753, + 7611714, + 9282687, + 2043018, + 9221820 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2022-06-13", - "completed": "2023-02-07", - "initiated": "2021-08-19", - "ministryContact": "TOY ARELY", + "createdAt": "2021-06-02", + "completed": "2016-09-30", + "initiated": "2014-01-26", + "ministryContact": "LUBOWITZ ALEXIS", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -61341,33 +67889,23 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false } ], "siteRegistry": true }, { - "createdAt": "2021-03-16", - "completed": "2020-09-03", - "initiated": "2015-01-10", - "ministryContact": "DICKINSON AMERICA", + "createdAt": "2016-06-03", + "completed": "2017-11-26", + "initiated": "2013-11-15", + "ministryContact": "BRUEN ANTONIO", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -61380,70 +67918,15 @@ "role": "SUBMITTED BY", "siteRegistry": true }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - } - ], - "siteRegistry": true - }, - { - "createdAt": "2022-10-27", - "completed": "2022-10-18", - "initiated": "2014-08-18", - "ministryContact": "HICKLE THERON", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - } - ], - "siteRegistry": false - }, - { - "createdAt": "2016-02-07", - "completed": "2014-03-07", - "initiated": "2020-04-03", - "ministryContact": "VEUM ALEXANDRA", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false } ], "siteRegistry": true @@ -61451,19 +67934,19 @@ ], "participants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2017-06-26", - "startDate": "2020-07-15", + "name": "AMET, DOLOR SIT", + "endDate": "2016-01-09", + "startDate": "2016-08-29", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true }, { - "name": "IPSUM", - "endDate": "2021-07-12", - "startDate": "2016-07-31", + "name": "AMET, DOLOR SIT", + "endDate": "2021-03-27", + "startDate": "2021-04-09", "notes": "", "roles": [ "EMPLOYEE" @@ -61471,185 +67954,171 @@ "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2019-07-11", - "startDate": "2018-08-22", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2023-08-06", + "startDate": "2021-10-21", "notes": "", "roles": [ "EMPLOYEE" ], "siteRegistry": true - }, + } + ], + "suspectLandUses": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2018-11-12", - "startDate": "2021-01-04", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": true + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2018-08-13 (described on Site Profile dated 2018-08-13)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2021-03-27", - "startDate": "2016-10-22", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": false + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2014-02-16 (described on Site Profile dated 2014-02-16)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], - "suspectLandUses": [ + "parcelDescriptions": [ { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-04-19 (described on Site Profile dated 2022-04-19)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "dateNoted": "2014-06-14", + "parcelID": "19107", + "crownLandUsePIN": "19433", + "crownLandFileNumber": "17387", + "landDescription": "LOT 1 OF LOT 4 BLOCK 2 DISTRICT LOT 5 PLAN 7510" }, { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-12-25 (described on Site Profile dated 2017-12-25)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "siteRegistry": false, + "dateNoted": "2015-09-29", + "parcelID": "20869", + "crownLandUsePIN": "15951", + "crownLandFileNumber": "20738", + "landDescription": "LOT 3 OF LOT 3 BLOCK 3 DISTRICT LOT 2 PLAN 7717" }, { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-12-28 (described on Site Profile dated 2022-12-28)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "dateNoted": "2017-01-28", + "parcelID": "15777", + "crownLandUsePIN": "16236", + "crownLandFileNumber": "15658", + "landDescription": "LOT 3 OF LOT 1 BLOCK 3 DISTRICT LOT 1 PLAN 6176" + }, + { + "siteRegistry": true, + "dateNoted": "2018-12-27", + "parcelID": "16908", + "crownLandUsePIN": "16334", + "crownLandFileNumber": "17072", + "landDescription": "LOT 1 OF LOT 5 BLOCK 1 DISTRICT LOT 5 PLAN 8943" } ], "siteDisclosures": [ { "siteRegistry": true, - "dateReceived": "2022-03-10", - "dateCompleted": "2015-03-21", - "dateEntered": "2022-07-01", - "dateRegistrar": "2014-07-05", - "dateLocalAuthorityReceived": "2018-07-17", - "summary": "Quam voluptatum in illo ratione quod odio asperiores.", - "informationUsed": "Similique sint hic molestias sint ipsa laudantium fugiat itaque.\nVoluptates repudiandae deleniti quia.\nVero amet harum ipsa non.\nQuidem excepturi impedit eligendi aliquid est.\nIste recusandae accusantium quam molestiae expedita voluptate.", - "pastOrPresentOrders": "Pariatur iusto natus recusandae sapiente numquam illo.", + "dateReceived": "2020-08-30", + "dateCompleted": "2016-11-08", + "dateEntered": "2019-03-20", + "dateRegistrar": "2019-12-16", + "dateLocalAuthorityReceived": "2013-11-05", + "summary": "Fugit error provident recusandae.\nAperiam ad quisquam a quibusdam incidunt odio.", + "informationUsed": "Animi delectus provident tenetur voluptas iure doloribus ullam officiis dolor.\nConsectetur nihil ipsum cum odio ad delectus ab.\nIllum quia mollitia voluptas libero necessitatibus deserunt consequatur.\nExcepturi officiis quisquam pariatur nisi voluptatem sit.\nVoluptatibus earum eaque accusantium et ad autem ipsam veritatis quasi.", + "pastOrPresentOrders": "Expedita aspernatur maiores dignissimos.\nExpedita voluptatum deleniti iusto dolor saepe atque assumenda similique natus.\nExpedita deserunt laudantium ab provident maxime.", "commercialAndIndustrialPurposes": [ { "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false + "siteRegistry": true }, { "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false - } - ] - }, - { - "siteRegistry": true, - "dateReceived": "2015-07-09", - "dateCompleted": "2015-09-06", - "dateEntered": "2016-04-28", - "dateRegistrar": "2018-02-01", - "dateLocalAuthorityReceived": "2014-08-16", - "summary": "Esse quasi error at quasi at optio nam.", - "informationUsed": "Sed perferendis quibusdam.\nCupiditate est impedit reiciendis.\nConsequuntur hic dolor facilis.\nOfficia dolore assumenda.\nVel dolorum inventore alias.", - "pastOrPresentOrders": "Eius aperiam aspernatur autem accusamus repudiandae molestiae omnis molestias.", - "commercialAndIndustrialPurposes": [ + }, { "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true - }, - { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false - }, - { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false } ] } ], "activityLog": [ { - "siteRegistry": true, + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "JAKUBOWSKI FLAVIO", - "timestamp": "2023-03-23" + "user": "MURRAY WINONA", + "timestamp": "2017-05-23" }, { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "MCGLYNN ELIJAH", - "timestamp": "2016-07-09" + "user": "ANKUNDING JOHN", + "timestamp": "2023-02-03" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "BOSCO ANAIS", - "timestamp": "2023-04-19" + "user": "ROSENBAUM JORDI", + "timestamp": "2023-01-27" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "MONAHAN VAUGHN", - "timestamp": "2019-11-03" + "user": "BERGSTROM ELMIRA", + "timestamp": "2020-09-19" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "O'KON BRIDIE", - "timestamp": "2022-01-03" + "user": "HETTINGER HAL", + "timestamp": "2017-05-21" } ], "associatedSites": [ { - "dateNoted": "2021-08-27", + "dateNoted": "2014-07-07", "notes": "", - "parcelID": "17908", - "siteID": "15327", - "siteRegistry": true + "parcelID": "19230", + "siteID": "15987", + "siteRegistry": false }, { - "dateNoted": "2023-07-17", + "dateNoted": "2020-07-07", "notes": "", - "parcelID": "18056", - "siteID": "19019", - "siteRegistry": true + "parcelID": "15320", + "siteID": "19984", + "siteRegistry": false } ] }, { - "uuid": "7b8d19d9-c8b4-47f7-8194-120fc90d451a", - "siteID": 19019, - "address": "1600 Lourdes Brook", - "latitude": 52.918, - "longitude": -133.2033, - "lastUpdated": "2017-02-05", - "city": "Watsonville", + "uuid": "ed4988ca-9dd9-45d7-bd01-b6ec9c8a4468", + "siteID": 17110, + "address": "906 Kutch Flats", + "latitude": 51.9937, + "longitude": -127.8756, + "lastUpdated": "2023-07-13", + "city": "Elijahside", "region": " North Coast", - "victoriaFile": "26250-20/11470", + "victoriaFile": "26250-20/13589", "regionalFile": "N/A", "parcelIDs": [ - 1217589, - 7932154, - 2789006, - 5126846, - 6049632 + 5842989, + 4888616, + 5352608, + 2281436, + 1026081 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2018-05-18", - "completed": "2021-05-08", - "initiated": "2015-07-26", - "ministryContact": "RATH MARCELLUS", + "createdAt": "2015-04-07", + "completed": "2016-09-18", + "initiated": "2014-11-07", + "ministryContact": "ROSENBAUM ALIZE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -61659,32 +68128,32 @@ "notationParticipants": [ { "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true + "role": "SUBMITTED BY", + "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2020-10-04", - "completed": "2020-09-23", - "initiated": "2023-05-02", - "ministryContact": "KULAS VICENTE", + "createdAt": "2022-01-08", + "completed": "2021-01-22", + "initiated": "2018-03-11", + "ministryContact": "MACGYVER VELVA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -61698,28 +68167,33 @@ "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false } ], "siteRegistry": false }, { - "createdAt": "2017-07-18", - "completed": "2018-07-07", - "initiated": "2017-08-30", - "ministryContact": "THIEL GARRY", + "createdAt": "2020-07-05", + "completed": "2021-05-01", + "initiated": "2019-11-11", + "ministryContact": "WAELCHI-CONNELLY TANIA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -61730,11 +68204,21 @@ { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": true }, { @@ -61743,13 +68227,13 @@ "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2013-11-19", - "completed": "2016-01-31", - "initiated": "2020-12-14", - "ministryContact": "MOEN BRAULIO", + "createdAt": "2014-08-12", + "completed": "2015-04-10", + "initiated": "2021-07-08", + "ministryContact": "PADBERG SANDRINE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -61759,43 +68243,48 @@ "notationParticipants": [ { "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true } ], "participants": [ - { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2018-03-27", - "startDate": "2018-12-13", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": false - }, { "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2022-05-01", - "startDate": "2020-12-17", + "endDate": "2021-12-30", + "startDate": "2020-03-31", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2020-05-30", - "startDate": "2022-04-13", + "name": "AMET, DOLOR SIT", + "endDate": "2019-05-03", + "startDate": "2014-10-19", "notes": "", "roles": [ "EMPLOYEE" @@ -61803,82 +68292,116 @@ "siteRegistry": true }, { - "name": "AMET, DOLOR SIT", - "endDate": "2022-02-18", - "startDate": "2023-03-18", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2023-02-01", + "startDate": "2016-05-08", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": true + "siteRegistry": false } ], "suspectLandUses": [ + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2021-11-26 (described on Site Profile dated 2021-11-26)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-04-13 (described on Site Profile dated 2022-04-13)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "notes": "INSERTED FOR SITE PROFILE DATED 2016-12-04 (described on Site Profile dated 2016-12-04)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + } + ], + "parcelDescriptions": [ + { + "siteRegistry": false, + "dateNoted": "2015-06-12", + "parcelID": "20081", + "crownLandUsePIN": "18910", + "crownLandFileNumber": "18227", + "landDescription": "LOT 5 OF LOT 5 BLOCK 4 DISTRICT LOT 1 PLAN 5976" }, { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2020-06-29 (described on Site Profile dated 2020-06-29)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "dateNoted": "2020-12-02", + "parcelID": "17008", + "crownLandUsePIN": "19868", + "crownLandFileNumber": "19350", + "landDescription": "LOT 2 OF LOT 1 BLOCK 2 DISTRICT LOT 5 PLAN 5973" + }, + { + "siteRegistry": false, + "dateNoted": "2020-05-08", + "parcelID": "19767", + "crownLandUsePIN": "19342", + "crownLandFileNumber": "20223", + "landDescription": "LOT 1 OF LOT 5 BLOCK 5 DISTRICT LOT 1 PLAN 4112" + }, + { + "siteRegistry": false, + "dateNoted": "2017-05-03", + "parcelID": "15636", + "crownLandUsePIN": "17358", + "crownLandFileNumber": "18907", + "landDescription": "LOT 4 OF LOT 3 BLOCK 3 DISTRICT LOT 2 PLAN 9502" } ], "siteDisclosures": [ { - "siteRegistry": false, - "dateReceived": "2018-08-21", - "dateCompleted": "2021-08-04", - "dateEntered": "2016-05-28", - "dateRegistrar": "2013-12-31", - "dateLocalAuthorityReceived": "2016-07-07", - "summary": "Aliquid expedita dolorum ex sit odio alias quasi deserunt.\nTenetur totam dolores.", - "informationUsed": "Quod dolores enim repellat quasi est magni.\nBlanditiis nihil libero.\nTempore dicta in deleniti sequi repellendus.", - "pastOrPresentOrders": "A doloremque suscipit.\nQuod nobis veritatis nisi facere sequi eos neque.\nPorro doloribus ea.", + "siteRegistry": true, + "dateReceived": "2017-05-04", + "dateCompleted": "2022-06-02", + "dateEntered": "2014-10-19", + "dateRegistrar": "2015-12-23", + "dateLocalAuthorityReceived": "2022-03-07", + "summary": "Vero deleniti quasi repudiandae reprehenderit laboriosam sit.\nHic maiores fugit enim debitis voluptatibus suscipit voluptates nostrum omnis.", + "informationUsed": "Eius officia quaerat commodi.\nNam at ipsa.\nQuo officiis fugiat doloremque.\nSequi consequatur vel officiis praesentium culpa qui quisquam atque voluptatibus.\nRerum beatae ullam officia.", + "pastOrPresentOrders": "Suscipit magni vitae libero.\nExpedita modi architecto veniam aliquam tenetur sint consequatur.\nEum esse velit fuga.", "commercialAndIndustrialPurposes": [ { - "scheduleReference": "F1*", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true + "siteRegistry": false }, { - "scheduleReference": "F1*", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false } ] }, { "siteRegistry": false, - "dateReceived": "2023-06-17", - "dateCompleted": "2021-11-02", - "dateEntered": "2017-09-07", - "dateRegistrar": "2016-03-18", - "dateLocalAuthorityReceived": "2019-04-02", - "summary": "Consequatur ea modi voluptatem reiciendis voluptatem.\nVoluptatem qui perspiciatis dolores iusto.\nNecessitatibus quod amet consectetur voluptatibus ut dolorem quam nostrum.", - "informationUsed": "Rem quo eius aperiam repellendus fuga vel.\nPraesentium aliquam iusto eius perspiciatis ipsum optio ipsa excepturi voluptatibus.\nSuscipit est alias sed eum quaerat assumenda voluptatibus est.\nEarum quidem quos commodi.\nTemporibus aliquam ipsam autem molestiae vel maxime eveniet fugiat veniam.", - "pastOrPresentOrders": "Veritatis eligendi dolores soluta enim optio voluptas.\nAtque eligendi sed reprehenderit molestiae repellat inventore.\nQuibusdam temporibus minima provident quos recusandae sequi odit minima.", + "dateReceived": "2021-03-20", + "dateCompleted": "2022-03-31", + "dateEntered": "2019-06-03", + "dateRegistrar": "2021-10-26", + "dateLocalAuthorityReceived": "2017-03-17", + "summary": "Occaecati laborum atque consequatur occaecati.\nOmnis unde blanditiis nemo non vel.\nInventore mollitia fugiat voluptatum beatae.", + "informationUsed": "Debitis quisquam sapiente iure aspernatur illum delectus assumenda veniam fuga.\nDicta consequatur quo in fugit.\nNobis alias quas.\nPerspiciatis accusamus excepturi.", + "pastOrPresentOrders": "Modi nemo sunt magni labore quidem porro neque odit.", "commercialAndIndustrialPurposes": [ { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true } ] } @@ -61887,93 +68410,93 @@ { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "COLLIER MARIELA", - "timestamp": "2019-08-30" + "user": "TOWNE LEVI", + "timestamp": "2020-06-23" }, { - "siteRegistry": true, + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "TROMP MADISEN", - "timestamp": "2017-01-23" + "user": "DONNELLY FRED", + "timestamp": "2013-10-18" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "JASKOLSKI MAYE", - "timestamp": "2019-03-01" + "user": "MAYER ALEXA", + "timestamp": "2019-06-22" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "WISOKY DEONDRE", - "timestamp": "2021-11-24" + "user": "HOEGER MAGDALEN", + "timestamp": "2013-11-24" }, { - "siteRegistry": true, + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "HAMILL-ULLRICH ASHTYN", - "timestamp": "2021-02-23" + "user": "BOYER ELECTA", + "timestamp": "2021-08-05" }, { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "HEATHCOTE XAVIER", - "timestamp": "2021-07-16" + "user": "RUNOLFSSON WILLIAM", + "timestamp": "2014-03-06" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "D'AMORE MERTIE", - "timestamp": "2017-06-26" + "user": "HAYES LOIS", + "timestamp": "2017-01-27" }, { - "siteRegistry": true, + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "KSHLERIN RAYMUNDO", - "timestamp": "2021-12-07" + "user": "WEHNER SALMA", + "timestamp": "2017-08-19" }, { - "siteRegistry": true, + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "O'KEEFE PROVIDENCI", - "timestamp": "2015-09-27" + "user": "KUVALIS NEVA", + "timestamp": "2017-05-14" } ], "associatedSites": [ { - "dateNoted": "2019-03-26", + "dateNoted": "2023-05-05", "notes": "", - "parcelID": "20456", - "siteID": "15754", - "siteRegistry": true + "parcelID": "18348", + "siteID": "20741", + "siteRegistry": false } ] }, { - "uuid": "3f8dc20b-9a3d-4575-a384-6642956d9e7e", - "siteID": 19739, - "address": "527 Collier Flats", - "latitude": 49.9322, - "longitude": -130.6346, - "lastUpdated": "2020-06-03", - "city": "Pittsburg", - "region": "Vancouver Island/Coast", - "victoriaFile": "26250-20/17005", + "uuid": "68c8c3ba-17ce-414d-bf1b-ce9fa066c62f", + "siteID": 16843, + "address": "2765 Powlowski Lock", + "latitude": 56.4004, + "longitude": -135.4178, + "lastUpdated": "2015-03-17", + "city": "Reichelworth", + "region": "Mainland/Southwest", + "victoriaFile": "26250-20/8546", "regionalFile": "N/A", "parcelIDs": [ - 3366279, - 7372894, - 9156259, - 4475466, - 867705 + 3647231, + 1595517, + 5324516, + 7962526, + 6405704 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2018-08-02", - "completed": "2022-01-05", - "initiated": "2020-09-09", - "ministryContact": "KASSULKE JACE", + "createdAt": "2015-07-21", + "completed": "2014-08-26", + "initiated": "2020-06-25", + "ministryContact": "DONNELLY LENNA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -61983,7 +68506,37 @@ "notationParticipants": [ { "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "createdAt": "2016-09-15", + "completed": "2017-11-08", + "initiated": "2019-10-15", + "ministryContact": "RENNER-BINS PENELOPE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": false }, { @@ -61992,23 +68545,28 @@ "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true } ], "siteRegistry": false }, { - "createdAt": "2018-10-12", - "completed": "2018-03-08", - "initiated": "2021-01-12", - "ministryContact": "WALKER MARILYNE", + "createdAt": "2018-04-17", + "completed": "2016-07-18", + "initiated": "2019-01-24", + "ministryContact": "MAYER FREDERIC", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -62019,77 +68577,135 @@ { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false + "role": "REQUESTED BY", + "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true } ], "participants": [ { "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2013-11-04", - "startDate": "2015-08-13", + "endDate": "2021-08-30", + "startDate": "2022-06-27", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": false }, + { + "name": "AMET, DOLOR SIT", + "endDate": "2020-05-24", + "startDate": "2022-03-13", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, { "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2014-09-04", - "startDate": "2023-10-08", + "endDate": "2023-02-27", + "startDate": "2020-04-17", "notes": "", "roles": [ "EMPLOYEE" ], + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2016-05-13", + "startDate": "2015-05-24", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2016-12-14", + "startDate": "2021-01-27", + "notes": "", + "roles": [ + "ORGANIZATION" + ], "siteRegistry": true } ], "suspectLandUses": [ { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2020-05-13 (described on Site Profile dated 2020-05-13)", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2016-02-24 (described on Site Profile dated 2016-02-24)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2023-05-07 (described on Site Profile dated 2023-05-07)", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2014-10-17 (described on Site Profile dated 2014-10-17)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2023-09-06 (described on Site Profile dated 2023-09-06)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2017-08-16 (described on Site Profile dated 2017-08-16)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], - "siteDisclosures": [ + "parcelDescriptions": [ { "siteRegistry": true, - "dateReceived": "2016-01-07", - "dateCompleted": "2019-09-20", - "dateEntered": "2018-05-05", - "dateRegistrar": "2020-11-03", - "dateLocalAuthorityReceived": "2020-04-16", - "summary": "Deserunt hic voluptate laboriosam iure fuga molestias illum ratione consequuntur.\nRecusandae aliquid doloribus odit.\nFugiat id magni dolorem veritatis.", - "informationUsed": "Maxime saepe dolorum earum error.\nMagnam saepe id esse dolor quidem eius alias enim.\nAliquid consequatur quas deserunt deleniti numquam quos nam.", - "pastOrPresentOrders": "Molestias dolor sed commodi.\nAdipisci est tenetur sunt optio ut accusantium ut commodi dolores.\nMaiores aliquid praesentium hic quia explicabo nemo.", + "dateNoted": "2015-11-19", + "parcelID": "18063", + "crownLandUsePIN": "20234", + "crownLandFileNumber": "20726", + "landDescription": "LOT 1 OF LOT 5 BLOCK 1 DISTRICT LOT 5 PLAN 3044" + }, + { + "siteRegistry": true, + "dateNoted": "2021-03-16", + "parcelID": "15361", + "crownLandUsePIN": "19495", + "crownLandFileNumber": "20120", + "landDescription": "LOT 1 OF LOT 5 BLOCK 5 DISTRICT LOT 4 PLAN 5397" + } + ], + "siteDisclosures": [ + { + "siteRegistry": false, + "dateReceived": "2016-10-19", + "dateCompleted": "2014-09-04", + "dateEntered": "2020-12-20", + "dateRegistrar": "2015-06-24", + "dateLocalAuthorityReceived": "2021-01-11", + "summary": "Dolorum placeat culpa sit provident.\nExplicabo expedita voluptate.\nSuscipit repellat culpa.", + "informationUsed": "Autem expedita minima nostrum.\nLaboriosam voluptates natus est mollitia molestiae.\nOccaecati fugiat labore aliquam possimus officia nulla id ullam.", + "pastOrPresentOrders": "Laboriosam distinctio quam autem iure ratione magni reprehenderit porro.\nEt voluptate cumque.\nEveniet quisquam consequatur debitis reiciendis.", "commercialAndIndustrialPurposes": [ { "scheduleReference": "F2*", @@ -62101,41 +68717,13 @@ "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, - { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true - } - ] - }, - { - "siteRegistry": true, - "dateReceived": "2015-03-12", - "dateCompleted": "2015-03-12", - "dateEntered": "2014-04-30", - "dateRegistrar": "2021-02-24", - "dateLocalAuthorityReceived": "2019-08-03", - "summary": "Sint iste ratione amet.\nTempora nulla voluptates tempore magnam consequatur nemo.\nQuia aspernatur soluta quia.", - "informationUsed": "Ab veritatis est ipsam ratione molestiae praesentium eum.\nQuas aliquid ad.\nQui autem dolore.\nRecusandae occaecati voluptatem optio fugiat quidem tenetur earum.\nSed deserunt corporis eveniet asperiores facilis accusantium ratione dolor sunt.", - "pastOrPresentOrders": "Molestias perferendis consequatur nisi molestiae similique voluptatum sequi officiis.\nOfficiis sunt quas nihil repudiandae quae quibusdam hic nobis.", - "commercialAndIndustrialPurposes": [ - { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true - }, { "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false - }, - { - "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { - "scheduleReference": "F2*", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true } @@ -62144,78 +68732,90 @@ ], "activityLog": [ { - "siteRegistry": false, + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "ADAMS MAJOR", + "timestamp": "2020-01-07" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "STANTON BETHANY", + "timestamp": "2020-03-04" + }, + { + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "LAKIN CESAR", - "timestamp": "2020-08-24" + "user": "VEUM CATALINA", + "timestamp": "2021-11-28" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "STROMAN KATELIN", - "timestamp": "2019-02-27" + "user": "HILLS QUINCY", + "timestamp": "2022-06-12" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "PFANNERSTILL HAILEE", - "timestamp": "2015-12-31" + "user": "CONN ELECTA", + "timestamp": "2016-02-28" }, { - "siteRegistry": true, + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "POUROS-GERHOLD GERALDINE", - "timestamp": "2020-06-13" + "user": "STREICH ALEXYS", + "timestamp": "2016-04-03" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "HAYES KAYLEIGH", - "timestamp": "2015-01-01" + "user": "RATKE-LYNCH TEAGAN", + "timestamp": "2015-06-23" } ], "associatedSites": [ { - "dateNoted": "2017-08-05", + "dateNoted": "2017-04-10", "notes": "", - "parcelID": "17173", - "siteID": "15706", + "parcelID": "16643", + "siteID": "19745", "siteRegistry": false }, { - "dateNoted": "2017-10-27", + "dateNoted": "2017-01-11", "notes": "", - "parcelID": "20635", - "siteID": "19349", - "siteRegistry": false + "parcelID": "15383", + "siteID": "15327", + "siteRegistry": true } ] }, { - "uuid": "22dc4908-d90e-4222-b878-87081de7716a", - "siteID": 17791, - "address": "7967 Evalyn Streets", - "latitude": 58.5574, - "longitude": -132.7327, - "lastUpdated": "2019-01-24", - "city": "East Imogene", - "region": "Cariboo", - "victoriaFile": "26250-20/1095", + "uuid": "8042395c-290e-4974-b016-104a7f7f4bd6", + "siteID": 18658, + "address": "3812 Schaefer Spur", + "latitude": 57.5521, + "longitude": -123.7888, + "lastUpdated": "2018-10-10", + "city": "Noblesville", + "region": "Vancouver Island/Coast", + "victoriaFile": "26250-20/13410", "regionalFile": "N/A", "parcelIDs": [ - 2689285, - 8135050, - 816741, - 3936213, - 9685832 + 3469053, + 4895698, + 5418789, + 5936299, + 8662346 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2021-01-18", - "completed": "2023-04-01", - "initiated": "2013-10-15", - "ministryContact": "CRONIN CATHARINE", + "createdAt": "2013-12-10", + "completed": "2022-10-04", + "initiated": "2015-04-12", + "ministryContact": "BRUEN JACKELINE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -62225,7 +68825,7 @@ "notationParticipants": [ { "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": true }, { @@ -62234,28 +68834,28 @@ "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true + "role": "SUBMITTED BY", + "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2023-03-15", - "completed": "2019-12-27", - "initiated": "2017-08-17", - "ministryContact": "ROWE-CARTER BLAZE", + "createdAt": "2019-02-24", + "completed": "2019-12-03", + "initiated": "2019-08-21", + "ministryContact": "FISHER FIDEL", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -62265,32 +68865,27 @@ "notationParticipants": [ { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false + "role": "REQUESTED BY", + "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2014-06-24", - "completed": "2017-10-05", - "initiated": "2019-07-22", - "ministryContact": "LOCKMAN CAROLYNE", + "createdAt": "2015-05-27", + "completed": "2023-05-02", + "initiated": "2023-07-16", + "ministryContact": "DENESIK SCOTTY", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -62298,16 +68893,6 @@ "" ], "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", @@ -62319,24 +68904,54 @@ "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false } ], "participants": [ { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2014-07-13", - "startDate": "2014-05-17", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2022-12-17", + "startDate": "2022-08-01", "notes": "", "roles": [ "ORGANIZATION" ], + "siteRegistry": false + }, + { + "name": "IPSUM", + "endDate": "2014-09-17", + "startDate": "2017-04-14", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "IPSUM", + "endDate": "2017-08-01", + "startDate": "2022-08-26", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "name": "IPSUM", + "endDate": "2016-09-30", + "startDate": "2015-03-23", + "notes": "", + "roles": [ + "EMPLOYEE" + ], "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2017-12-19", - "startDate": "2017-02-23", + "name": "IPSUM", + "endDate": "2017-06-17", + "startDate": "2016-10-26", "notes": "", "roles": [ "EMPLOYEE" @@ -62345,51 +68960,113 @@ } ], "suspectLandUses": [ + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2015-01-23 (described on Site Profile dated 2015-01-23)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-04-30 (described on Site Profile dated 2018-04-30)", + "notes": "INSERTED FOR SITE PROFILE DATED 2015-10-27 (described on Site Profile dated 2015-10-27)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + } + ], + "parcelDescriptions": [ + { + "siteRegistry": false, + "dateNoted": "2013-11-04", + "parcelID": "20521", + "crownLandUsePIN": "15692", + "crownLandFileNumber": "19471", + "landDescription": "LOT 1 OF LOT 3 BLOCK 2 DISTRICT LOT 1 PLAN 9429" }, { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-11-22 (described on Site Profile dated 2016-11-22)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "dateNoted": "2019-05-01", + "parcelID": "17712", + "crownLandUsePIN": "15466", + "crownLandFileNumber": "17691", + "landDescription": "LOT 5 OF LOT 5 BLOCK 4 DISTRICT LOT 3 PLAN 3878" }, { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2020-12-19 (described on Site Profile dated 2020-12-19)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "dateNoted": "2015-11-26", + "parcelID": "18488", + "crownLandUsePIN": "18016", + "crownLandFileNumber": "20527", + "landDescription": "LOT 2 OF LOT 4 BLOCK 5 DISTRICT LOT 4 PLAN 4372" }, { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2020-07-17 (described on Site Profile dated 2020-07-17)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "siteRegistry": true, + "dateNoted": "2016-11-26", + "parcelID": "15585", + "crownLandUsePIN": "17589", + "crownLandFileNumber": "17294", + "landDescription": "LOT 1 OF LOT 1 BLOCK 3 DISTRICT LOT 5 PLAN 5112" } ], "siteDisclosures": [ { - "siteRegistry": false, - "dateReceived": "2020-05-09", - "dateCompleted": "2018-08-05", - "dateEntered": "2014-05-31", - "dateRegistrar": "2023-03-24", - "dateLocalAuthorityReceived": "2017-08-28", - "summary": "Corrupti illo debitis praesentium molestias laudantium officia qui veniam illum.\nDolorem illo amet illo consequatur perspiciatis unde exercitationem.\nVoluptates voluptate excepturi voluptas magni rem illo voluptatibus sit praesentium.", - "informationUsed": "Perspiciatis facilis voluptate tempore.\nMolestiae illum ut est expedita excepturi.\nFacilis nam ipsa aspernatur doloremque vero dolore.\nNobis vero odio.\nArchitecto rerum nostrum perferendis quas facere corporis qui.", - "pastOrPresentOrders": "Labore quo sit nam tenetur odit.", + "siteRegistry": true, + "dateReceived": "2014-02-08", + "dateCompleted": "2019-03-20", + "dateEntered": "2019-10-04", + "dateRegistrar": "2018-10-05", + "dateLocalAuthorityReceived": "2014-10-11", + "summary": "Quam aliquid accusamus libero commodi voluptate illum eos.", + "informationUsed": "Eius laborum aut sunt ipsa.\nDoloremque ipsa molestiae ad consequuntur ullam corrupti a sequi ipsam.\nModi neque aperiam inventore odio sequi dicta odit excepturi.\nAlias laudantium quos suscipit.\nBeatae optio minus assumenda.", + "pastOrPresentOrders": "Voluptas quisquam similique.\nVel explicabo aliquid itaque dolorem ipsam accusantium repellat.\nVeniam dolorem animi sunt corrupti.", "commercialAndIndustrialPurposes": [ { - "scheduleReference": "F2*", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true + "siteRegistry": false }, { "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, { "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + } + ] + }, + { + "siteRegistry": true, + "dateReceived": "2020-12-31", + "dateCompleted": "2016-05-03", + "dateEntered": "2019-03-02", + "dateRegistrar": "2020-07-14", + "dateLocalAuthorityReceived": "2019-06-18", + "summary": "Aut voluptate quod cumque possimus quia itaque nesciunt.\nOccaecati velit voluptates dolorem totam doloremque possimus.", + "informationUsed": "Eum fugiat corporis modi quasi.\nIllo ipsa harum eos dolorem eum.\nError recusandae quidem animi voluptas incidunt consectetur.\nDucimus corrupti voluptatum hic rerum doloribus numquam.\nVero numquam tempore officia error.", + "pastOrPresentOrders": "Reiciendis repellat excepturi nemo odio dicta mollitia.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false } @@ -62397,96 +69074,72 @@ } ], "activityLog": [ - { - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "HAGENES ALAYNA", - "timestamp": "2016-03-16" - }, - { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "WALTER KARINE", - "timestamp": "2022-12-17" - }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "LUEILWITZ KENNA", - "timestamp": "2017-09-12" + "user": "KUNDE BLAKE", + "timestamp": "2023-05-14" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "HEANEY GUILLERMO", - "timestamp": "2016-10-12" + "user": "GREEN SISTER", + "timestamp": "2017-11-09" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "O'CONNER JANESSA", - "timestamp": "2016-05-22" - }, - { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "PARISIAN JOHNSON", - "timestamp": "2017-10-06" + "user": "BARTOLETTI MICHAEL", + "timestamp": "2021-09-03" }, { - "siteRegistry": true, + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "TERRY LERA", - "timestamp": "2018-12-28" + "user": "BOYLE ORAL", + "timestamp": "2018-12-26" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "JAST ELISE", - "timestamp": "2019-04-04" - }, - { - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "TOWNE CURT", - "timestamp": "2018-08-22" + "user": "NOLAN REANNA", + "timestamp": "2019-04-09" } ], "associatedSites": [ { - "dateNoted": "2016-03-03", + "dateNoted": "2023-06-10", "notes": "", - "parcelID": "19422", - "siteID": "17972", + "parcelID": "20362", + "siteID": "15826", "siteRegistry": false } ] }, { - "uuid": "45f797e6-23ca-4dd1-b691-ade80fc5f244", - "siteID": 18087, - "address": "341 Bobbie Brooks", - "latitude": 58.3505, - "longitude": -134.1761, - "lastUpdated": "2015-05-17", - "city": "Adelineview", - "region": "Vancouver Island/Coast", - "victoriaFile": "26250-20/15118", + "uuid": "1c2e90ae-d2b0-4d7d-9cc4-1bf533f255a7", + "siteID": 20574, + "address": "998 Darwin Springs", + "latitude": 58.3393, + "longitude": -138.3392, + "lastUpdated": "2016-08-23", + "city": "Lake Maci", + "region": "Kootenay", + "victoriaFile": "26250-20/12179", "regionalFile": "N/A", "parcelIDs": [ - 6485305, - 7574246, - 3139449, - 5782024, - 3509311 + 979498, + 7282452, + 4395451, + 319500, + 4242567 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2019-05-03", - "completed": "2021-05-08", - "initiated": "2016-12-03", - "ministryContact": "SPENCER ROSALEE", + "createdAt": "2017-05-08", + "completed": "2014-08-06", + "initiated": "2022-11-11", + "ministryContact": "CRIST JAYLON", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -62499,11 +69152,6 @@ "role": "REQUESTED BY", "siteRegistry": true }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", @@ -62513,10 +69161,10 @@ "siteRegistry": true }, { - "createdAt": "2018-09-03", - "completed": "2019-05-07", - "initiated": "2018-04-27", - "ministryContact": "KAUTZER FRANKIE", + "createdAt": "2014-12-14", + "completed": "2020-12-10", + "initiated": "2013-12-26", + "ministryContact": "STROSIN LIZZIE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -62525,28 +69173,28 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false } ], "siteRegistry": false }, { - "createdAt": "2017-10-14", - "completed": "2023-10-01", - "initiated": "2017-04-03", - "ministryContact": "SPENCER BUDDY", + "createdAt": "2014-04-21", + "completed": "2022-07-29", + "initiated": "2017-12-07", + "ministryContact": "BERNHARD REINHOLD", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -62556,11 +69204,21 @@ "notationParticipants": [ { "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true } @@ -62568,10 +69226,10 @@ "siteRegistry": true }, { - "createdAt": "2021-10-19", - "completed": "2021-05-07", - "initiated": "2022-10-25", - "ministryContact": "MARKS CLETUS", + "createdAt": "2018-01-28", + "completed": "2014-04-21", + "initiated": "2018-05-10", + "ministryContact": "BARTELL PHYLLIS", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -62582,7 +69240,7 @@ { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", @@ -62594,19 +69252,24 @@ "role": "REQUESTED BY", "siteRegistry": true }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2015-02-14", - "completed": "2014-10-10", - "initiated": "2018-06-24", - "ministryContact": "WARD JUDGE", + "createdAt": "2016-03-14", + "completed": "2015-03-23", + "initiated": "2019-04-18", + "ministryContact": "ROMAGUERA EARLINE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -62615,24 +69278,14 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false } ], "siteRegistry": true @@ -62640,60 +69293,119 @@ ], "participants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2023-05-06", - "startDate": "2021-05-08", + "name": "AMET, DOLOR SIT", + "endDate": "2018-03-02", + "startDate": "2016-03-28", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], - "siteRegistry": false + "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2016-08-18", - "startDate": "2020-06-01", + "name": "AMET, DOLOR SIT", + "endDate": "2014-09-18", + "startDate": "2020-03-08", "notes": "", "roles": [ "EMPLOYEE" ], "siteRegistry": true + }, + { + "name": "IPSUM", + "endDate": "2022-04-27", + "startDate": "2016-05-24", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false } ], "suspectLandUses": [ { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-06-23 (described on Site Profile dated 2022-06-23)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "notes": "INSERTED FOR SITE PROFILE DATED 2017-04-07 (described on Site Profile dated 2017-04-07)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-01-09 (described on Site Profile dated 2017-01-09)", + "notes": "INSERTED FOR SITE PROFILE DATED 2016-05-18 (described on Site Profile dated 2016-05-18)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-11-10 (described on Site Profile dated 2016-11-10)", + "notes": "INSERTED FOR SITE PROFILE DATED 2015-04-14 (described on Site Profile dated 2015-04-14)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2018-02-19 (described on Site Profile dated 2018-02-19)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2020-12-23 (described on Site Profile dated 2020-12-23)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "notes": "INSERTED FOR SITE PROFILE DATED 2013-12-10 (described on Site Profile dated 2013-12-10)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], - "siteDisclosures": [ + "parcelDescriptions": [ { "siteRegistry": true, - "dateReceived": "2017-09-03", - "dateCompleted": "2022-06-14", - "dateEntered": "2021-09-17", - "dateRegistrar": "2018-11-18", - "dateLocalAuthorityReceived": "2022-09-20", - "summary": "Eum dicta quasi iusto dolores.\nMinima incidunt aliquam non laudantium voluptatibus.", - "informationUsed": "Nostrum quasi delectus non.\nAsperiores quidem blanditiis culpa voluptate minima hic autem dignissimos.\nEos velit ullam.\nPorro sapiente officia ex animi perferendis atque architecto laboriosam voluptas.", - "pastOrPresentOrders": "Rerum nihil corporis quaerat ut ad iure error rem eos.\nSed repellat corporis nemo iste quia.", + "dateNoted": "2018-12-13", + "parcelID": "19749", + "crownLandUsePIN": "19378", + "crownLandFileNumber": "17391", + "landDescription": "LOT 3 OF LOT 3 BLOCK 4 DISTRICT LOT 5 PLAN 6803" + }, + { + "siteRegistry": false, + "dateNoted": "2019-08-27", + "parcelID": "19097", + "crownLandUsePIN": "20136", + "crownLandFileNumber": "20851", + "landDescription": "LOT 2 OF LOT 2 BLOCK 3 DISTRICT LOT 5 PLAN 3209" + }, + { + "siteRegistry": false, + "dateNoted": "2019-07-06", + "parcelID": "20435", + "crownLandUsePIN": "19569", + "crownLandFileNumber": "15871", + "landDescription": "LOT 3 OF LOT 3 BLOCK 5 DISTRICT LOT 1 PLAN 3346" + }, + { + "siteRegistry": false, + "dateNoted": "2015-02-21", + "parcelID": "17093", + "crownLandUsePIN": "16883", + "crownLandFileNumber": "16289", + "landDescription": "LOT 5 OF LOT 4 BLOCK 1 DISTRICT LOT 3 PLAN 6768" + } + ], + "siteDisclosures": [ + { + "siteRegistry": false, + "dateReceived": "2020-12-16", + "dateCompleted": "2019-06-19", + "dateEntered": "2014-06-07", + "dateRegistrar": "2017-08-19", + "dateLocalAuthorityReceived": "2015-05-18", + "summary": "Neque numquam at incidunt ex.\nTenetur quod reiciendis consectetur ab itaque nemo modi nobis laborum.\nReprehenderit reiciendis culpa quibusdam maiores iste deserunt.", + "informationUsed": "Corporis sequi debitis eos illo incidunt consequatur officiis quaerat sint.\nHic fugit ab quis voluptatum quam eos architecto.\nNemo quod ipsam dolores adipisci.\nAperiam laboriosam facilis autem quod saepe minus nulla.\nVelit voluptas aliquid ipsam harum quod corporis dicta.", + "pastOrPresentOrders": "Sit ipsum pariatur.", "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, { "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", @@ -62701,35 +69413,35 @@ }, { "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true } ] }, { - "siteRegistry": true, - "dateReceived": "2021-03-05", - "dateCompleted": "2019-05-05", - "dateEntered": "2018-05-07", - "dateRegistrar": "2019-12-18", - "dateLocalAuthorityReceived": "2016-02-07", - "summary": "Animi non porro quod rerum.\nDicta provident et nesciunt expedita praesentium earum eaque.\nVoluptate optio adipisci ducimus quisquam fugit accusantium.", - "informationUsed": "Aspernatur fugiat quidem cumque vel porro necessitatibus illum.\nPariatur nesciunt odio eius.\nMaxime est facilis odit nam voluptas quo cupiditate corporis molestiae.", - "pastOrPresentOrders": "Animi alias ducimus at ipsa dignissimos iure reprehenderit beatae.\nEst architecto numquam debitis.", + "siteRegistry": false, + "dateReceived": "2016-03-11", + "dateCompleted": "2023-07-27", + "dateEntered": "2015-01-16", + "dateRegistrar": "2019-04-28", + "dateLocalAuthorityReceived": "2016-02-24", + "summary": "Tempora veritatis iusto odio.\nDoloremque corrupti nam minima iusto.", + "informationUsed": "Magnam magni distinctio hic ullam mollitia.\nVoluptatem repudiandae mollitia nulla.\nUllam ipsam laboriosam vero deserunt aut unde harum.\nAb omnis voluptatem iusto aperiam corporis illum laboriosam corporis.\nMinus unde maxime molestiae nihil autem.", + "pastOrPresentOrders": "Mollitia iste quam officiis doloremque earum quaerat.", "commercialAndIndustrialPurposes": [ { "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false }, { "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false + "siteRegistry": true }, { "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false } ] @@ -62739,106 +69451,99 @@ { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "PFEFFER ISSAC", - "timestamp": "2015-06-29" + "user": "HANE AURELIO", + "timestamp": "2016-10-22" }, { - "siteRegistry": true, + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "WELCH BONNIE", - "timestamp": "2018-06-28" + "user": "POUROS RENEE", + "timestamp": "2020-09-19" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "BREITENBERG DAMION", - "timestamp": "2016-07-26" + "user": "MONAHAN LESLY", + "timestamp": "2014-05-02" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "LITTLE NATALIA", - "timestamp": "2014-09-25" + "user": "REILLY-KULAS FAUSTO", + "timestamp": "2015-08-16" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "ERNSER SHANIYA", - "timestamp": "2019-12-15" + "user": "DAUGHERTY JAMMIE", + "timestamp": "2019-05-13" }, { - "siteRegistry": true, + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "STOLTENBERG VICTORIA", - "timestamp": "2021-05-04" + "user": "LEBSACK HORACIO", + "timestamp": "2019-05-28" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "KIRLIN OTIS", - "timestamp": "2019-12-03" + "user": "CONSIDINE JACKIE", + "timestamp": "2019-09-28" }, { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "ROBERTS STEFANIE", - "timestamp": "2020-11-09" + "user": "KOCH KRISTIAN", + "timestamp": "2023-08-29" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "COLLIER KAREEM", - "timestamp": "2014-04-11" + "user": "RATH SOPHIE", + "timestamp": "2018-04-22" }, { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "MONAHAN KENNEDI", - "timestamp": "2016-10-02" + "user": "BRADTKE KORY", + "timestamp": "2023-05-20" } ], "associatedSites": [ { - "dateNoted": "2014-10-25", + "dateNoted": "2019-01-07", "notes": "", - "parcelID": "20354", - "siteID": "16902", + "parcelID": "19480", + "siteID": "18817", "siteRegistry": false - }, - { - "dateNoted": "2019-10-15", - "notes": "", - "parcelID": "19809", - "siteID": "17309", - "siteRegistry": true } ] }, { - "uuid": "dacabceb-df66-4da5-af7e-782fe4482762", - "siteID": 16863, - "address": "135 Kyleigh Center", - "latitude": 56.347, - "longitude": -124.4083, - "lastUpdated": "2023-04-17", - "city": "South Maritza", - "region": "Vancouver Island/Coast", - "victoriaFile": "26250-20/7693", + "uuid": "85e34efd-00bd-4063-a7b6-1a54a884e61d", + "siteID": 19213, + "address": "87420 Waelchi Burgs", + "latitude": 54.9681, + "longitude": -131.1854, + "lastUpdated": "2017-04-10", + "city": "Abernathyhaven", + "region": "Cariboo", + "victoriaFile": "26250-20/6868", "regionalFile": "N/A", "parcelIDs": [ - 698033, - 2943746, - 628953, - 2670351, - 3616983 + 6652509, + 1012713, + 8949017, + 4760909, + 3750064 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2019-12-12", - "completed": "2019-02-14", - "initiated": "2014-06-04", - "ministryContact": "WIZA ROSALYN", + "createdAt": "2021-06-30", + "completed": "2017-05-24", + "initiated": "2021-04-24", + "ministryContact": "CARROLL MEGHAN", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -62847,7 +69552,12 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true }, @@ -62860,10 +69570,10 @@ "siteRegistry": true }, { - "createdAt": "2016-11-04", - "completed": "2014-11-23", - "initiated": "2017-06-28", - "ministryContact": "BLOCK ARVID", + "createdAt": "2022-08-13", + "completed": "2015-03-24", + "initiated": "2019-08-17", + "ministryContact": "SMITH TIA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -62876,9 +69586,74 @@ "role": "SUBMITTED BY", "siteRegistry": false }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "createdAt": "2023-06-28", + "completed": "2019-09-22", + "initiated": "2018-06-23", + "ministryContact": "GERHOLD CHRISTINA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "createdAt": "2021-01-23", + "completed": "2021-03-26", + "initiated": "2015-11-27", + "ministryContact": "FARRELL ADELIA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": false } ], @@ -62887,9 +69662,9 @@ ], "participants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2017-04-06", - "startDate": "2015-01-02", + "name": "AMET, DOLOR SIT", + "endDate": "2020-04-17", + "startDate": "2016-12-16", "notes": "", "roles": [ "ORGANIZATION" @@ -62897,54 +69672,107 @@ "siteRegistry": true }, { - "name": "IPSUM", - "endDate": "2020-12-12", - "startDate": "2017-03-28", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2015-11-21", + "startDate": "2021-05-02", "notes": "", "roles": [ "ORGANIZATION" ], "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2021-05-09", + "startDate": "2016-08-10", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "name": "IPSUM", + "endDate": "2020-10-26", + "startDate": "2013-10-16", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "name": "IPSUM", + "endDate": "2018-11-03", + "startDate": "2022-10-11", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true } ], "suspectLandUses": [ { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-05-12 (described on Site Profile dated 2015-05-12)", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2023-07-18 (described on Site Profile dated 2023-07-18)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-01-11 (described on Site Profile dated 2014-01-11)", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2016-08-14 (described on Site Profile dated 2016-08-14)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2023-08-01 (described on Site Profile dated 2023-08-01)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-05-02 (described on Site Profile dated 2022-05-02)", + "notes": "INSERTED FOR SITE PROFILE DATED 2014-01-01 (described on Site Profile dated 2014-01-01)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-04-30 (described on Site Profile dated 2022-04-30)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "notes": "INSERTED FOR SITE PROFILE DATED 2023-07-24 (described on Site Profile dated 2023-07-24)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + } + ], + "parcelDescriptions": [ + { + "siteRegistry": false, + "dateNoted": "2022-11-25", + "parcelID": "16433", + "crownLandUsePIN": "19416", + "crownLandFileNumber": "18266", + "landDescription": "LOT 5 OF LOT 1 BLOCK 1 DISTRICT LOT 1 PLAN 5084" + }, + { + "siteRegistry": true, + "dateNoted": "2018-03-16", + "parcelID": "17705", + "crownLandUsePIN": "17559", + "crownLandFileNumber": "18972", + "landDescription": "LOT 5 OF LOT 1 BLOCK 5 DISTRICT LOT 2 PLAN 5587" } ], "siteDisclosures": [ { "siteRegistry": true, - "dateReceived": "2017-07-07", - "dateCompleted": "2015-05-24", - "dateEntered": "2018-07-18", - "dateRegistrar": "2021-04-24", - "dateLocalAuthorityReceived": "2022-01-20", - "summary": "Accusantium nesciunt amet veritatis neque placeat eveniet sunt.", - "informationUsed": "Sunt aliquid voluptatibus minima a maxime veniam vero officia nobis.\nOptio ipsa accusamus inventore voluptatem asperiores a.\nMaiores consequuntur odio.\nEsse quia dolor veritatis animi minima non id quasi.\nExcepturi ratione eveniet itaque enim.", - "pastOrPresentOrders": "Ab vel magnam nesciunt molestiae beatae maiores.", + "dateReceived": "2016-08-25", + "dateCompleted": "2017-12-13", + "dateEntered": "2022-06-12", + "dateRegistrar": "2016-01-24", + "dateLocalAuthorityReceived": "2018-12-04", + "summary": "Ratione pariatur minus voluptatem recusandae quibusdam iusto voluptatibus.\nLabore omnis ad enim adipisci neque.", + "informationUsed": "Repellat sint deserunt ea nulla reprehenderit.\nAsperiores facilis excepturi harum veritatis doloremque sapiente.\nMaiores et qui placeat nam aut enim harum libero.\nRepudiandae repellat animi molestiae.", + "pastOrPresentOrders": "Repudiandae vel quae id totam.", "commercialAndIndustrialPurposes": [ { "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true + "siteRegistry": false }, { "scheduleReference": "F1*", @@ -62958,107 +69786,93 @@ { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "QUIGLEY-MEDHURST DAWN", - "timestamp": "2023-06-19" + "user": "LYNCH MAXINE", + "timestamp": "2015-07-25" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "CRUICKSHANK HERMINIO", - "timestamp": "2013-12-13" + "user": "CROOKS-BALISTRERI MOSHE", + "timestamp": "2022-02-21" }, { - "siteRegistry": true, + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "JACOBS MALACHI", - "timestamp": "2014-05-02" + "user": "WEIMANN ZOLA", + "timestamp": "2018-10-13" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "BERNHARD TRACE", - "timestamp": "2021-11-29" + "user": "MRAZ GEO", + "timestamp": "2014-03-16" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "GUSIKOWSKI KRYSTAL", - "timestamp": "2014-05-28" + "user": "AUFDERHAR SONIA", + "timestamp": "2023-06-19" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "BORER MINNIE", - "timestamp": "2015-05-21" + "user": "REILLY DERON", + "timestamp": "2021-06-04" }, { - "siteRegistry": true, + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "MAGGIO DINA", - "timestamp": "2023-05-28" + "user": "O'KEEFE-MILLER VELVA", + "timestamp": "2023-08-03" }, { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "O'KEEFE MARIETTA", - "timestamp": "2014-08-17" + "user": "VON ROEL", + "timestamp": "2016-03-13" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "ZIEMANN CHAUNCEY", - "timestamp": "2022-12-03" + "user": "NIKOLAUS KENYATTA", + "timestamp": "2020-01-21" } ], "associatedSites": [ { - "dateNoted": "2017-04-20", - "notes": "", - "parcelID": "20712", - "siteID": "19248", - "siteRegistry": true - }, - { - "dateNoted": "2022-01-30", + "dateNoted": "2021-03-15", "notes": "", - "parcelID": "20940", - "siteID": "17601", - "siteRegistry": false - }, - { - "dateNoted": "2017-09-19", - "notes": "", - "parcelID": "19046", - "siteID": "15574", + "parcelID": "17304", + "siteID": "17017", "siteRegistry": true } ] }, { - "uuid": "06e3a0e0-97e0-4e88-a3c3-324284dbdaf9", - "siteID": 19078, - "address": "864 Mann Turnpike", - "latitude": 54.528, - "longitude": -122.4358, - "lastUpdated": "2022-05-20", - "city": "Goldaboro", - "region": " North Coast", - "victoriaFile": "26250-20/7950", + "uuid": "f8f2e86b-3bb2-4061-8213-15317b378103", + "siteID": 19593, + "address": "504 Marilie Pike", + "latitude": 54.8145, + "longitude": -126.2731, + "lastUpdated": "2019-03-08", + "city": "Gulfport", + "region": "Mainland/Southwest", + "victoriaFile": "26250-20/18829", "regionalFile": "N/A", "parcelIDs": [ - 6146848, - 2028625, - 2413678, - 1603966, - 866184 + 4224730, + 9875037, + 8058808, + 9699668, + 5100856 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2022-12-14", - "completed": "2022-10-21", - "initiated": "2017-03-14", - "ministryContact": "FEENEY NOELIA", + "createdAt": "2020-04-15", + "completed": "2017-02-10", + "initiated": "2014-02-06", + "ministryContact": "SIMONIS DONNELL", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -63071,34 +69885,24 @@ "role": "REQUESTED BY", "siteRegistry": false }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false + "role": "SUBMITTED BY", + "siteRegistry": true } ], "siteRegistry": false }, { - "createdAt": "2019-09-18", - "completed": "2015-12-26", - "initiated": "2017-09-03", - "ministryContact": "SCHMELER ANAIS", + "createdAt": "2014-05-24", + "completed": "2017-06-01", + "initiated": "2018-07-05", + "ministryContact": "LANGWORTH REINHOLD", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -63107,9 +69911,9 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", @@ -63117,13 +69921,13 @@ "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2021-06-19", - "completed": "2018-11-30", - "initiated": "2021-03-12", - "ministryContact": "THIEL FATIMA", + "createdAt": "2014-04-02", + "completed": "2018-07-14", + "initiated": "2015-08-07", + "ministryContact": "NADER KENYATTA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -63133,27 +69937,32 @@ "notationParticipants": [ { "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false } ], "siteRegistry": true }, { - "createdAt": "2018-01-30", - "completed": "2021-12-03", - "initiated": "2019-01-17", - "ministryContact": "HALEY MISAEL", + "createdAt": "2017-10-26", + "completed": "2022-08-29", + "initiated": "2022-05-10", + "ministryContact": "RUTHERFORD DAMIEN", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -63164,52 +69973,22 @@ { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - } - ], - "siteRegistry": false - } - ], - "participants": [ - { - "name": "IPSUM", - "endDate": "2018-05-05", - "startDate": "2022-01-24", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2014-07-04", - "startDate": "2018-11-06", - "notes": "", - "roles": [ - "ORGANIZATION" + "role": "SUBMITTED BY", + "siteRegistry": true + } ], - "siteRegistry": false - }, + "siteRegistry": true + } + ], + "participants": [ { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2016-11-30", - "startDate": "2023-04-06", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2020-02-04", + "startDate": "2020-06-26", "notes": "", "roles": [ "EMPLOYEE" @@ -63217,64 +69996,105 @@ "siteRegistry": true }, { - "name": "AMET, DOLOR SIT", - "endDate": "2014-02-05", - "startDate": "2020-06-15", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2021-03-16", + "startDate": "2016-02-17", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": false }, { - "name": "AMET, DOLOR SIT", - "endDate": "2013-10-16", - "startDate": "2015-08-28", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2017-12-16", + "startDate": "2019-10-21", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false } ], "suspectLandUses": [ { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-06-25 (described on Site Profile dated 2018-06-25)", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2014-10-09 (described on Site Profile dated 2014-10-09)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2023-09-30 (described on Site Profile dated 2023-09-30)", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2022-07-04 (described on Site Profile dated 2022-07-04)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-04-30 (described on Site Profile dated 2016-04-30)", + "notes": "INSERTED FOR SITE PROFILE DATED 2014-03-16 (described on Site Profile dated 2014-03-16)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2021-05-16 (described on Site Profile dated 2021-05-16)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], + "parcelDescriptions": [ + { + "siteRegistry": false, + "dateNoted": "2014-12-24", + "parcelID": "16572", + "crownLandUsePIN": "20688", + "crownLandFileNumber": "15306", + "landDescription": "LOT 1 OF LOT 1 BLOCK 1 DISTRICT LOT 1 PLAN 3630" + }, + { + "siteRegistry": false, + "dateNoted": "2015-02-06", + "parcelID": "18985", + "crownLandUsePIN": "16226", + "crownLandFileNumber": "18936", + "landDescription": "LOT 5 OF LOT 2 BLOCK 4 DISTRICT LOT 5 PLAN 7012" + }, + { + "siteRegistry": true, + "dateNoted": "2021-04-08", + "parcelID": "19195", + "crownLandUsePIN": "15925", + "crownLandFileNumber": "19695", + "landDescription": "LOT 4 OF LOT 2 BLOCK 5 DISTRICT LOT 3 PLAN 6018" + } + ], "siteDisclosures": [ { "siteRegistry": false, - "dateReceived": "2022-08-30", - "dateCompleted": "2021-07-17", - "dateEntered": "2014-11-14", - "dateRegistrar": "2017-01-10", - "dateLocalAuthorityReceived": "2022-11-07", - "summary": "Quia quaerat voluptatum.\nAccusamus accusamus illum eaque ex.", - "informationUsed": "Iusto nobis dignissimos eligendi architecto accusantium natus.\nDolor quod exercitationem vitae iusto doloremque possimus ex natus.\nSed odit veniam tempora tenetur dolor quod corrupti et similique.\nOdio ut ad architecto adipisci.\nQui natus beatae fugiat ipsa reprehenderit repellendus natus quod.", - "pastOrPresentOrders": "Ullam repudiandae nisi magnam.\nMaiores voluptas atque tempora eos sed magni.", + "dateReceived": "2016-07-21", + "dateCompleted": "2019-02-10", + "dateEntered": "2022-08-07", + "dateRegistrar": "2020-06-24", + "dateLocalAuthorityReceived": "2017-01-19", + "summary": "Corrupti eius natus expedita.\nEos odit aliquid officia.\nPlaceat perferendis adipisci voluptates.", + "informationUsed": "Molestiae inventore numquam facere incidunt quas architecto architecto aspernatur reprehenderit.\nCum error temporibus omnis delectus architecto eos rerum quod ad.\nExplicabo natus animi perspiciatis tempore atque.\nTemporibus voluptates illo tempora consequuntur voluptatum veniam.\nDistinctio delectus architecto quidem aut maiores excepturi accusantium iusto voluptate.", + "pastOrPresentOrders": "Aperiam distinctio aliquid commodi porro illo asperiores et pariatur magnam.\nReprehenderit quis fugiat non.", "commercialAndIndustrialPurposes": [ { "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true }, { "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false } ] } @@ -63283,89 +70103,69 @@ { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "METZ JAUNITA", - "timestamp": "2019-10-22" - }, - { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "BARTELL ALYSSON", - "timestamp": "2022-02-20" + "user": "STANTON LINDSAY", + "timestamp": "2022-11-22" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "WYMAN MAXIME", - "timestamp": "2018-05-24" + "user": "HAND ELODY", + "timestamp": "2019-01-02" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "GULGOWSKI ELSE", - "timestamp": "2020-08-13" + "user": "SPORER REYES", + "timestamp": "2020-09-01" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "LEUSCHKE GREGG", - "timestamp": "2018-09-03" + "user": "GLOVER MILFORD", + "timestamp": "2016-02-09" }, { - "siteRegistry": true, + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "KOVACEK SHANNA", - "timestamp": "2014-12-28" + "user": "ERNSER THURMAN", + "timestamp": "2017-08-04" } ], "associatedSites": [ { - "dateNoted": "2018-06-09", - "notes": "", - "parcelID": "19623", - "siteID": "20836", - "siteRegistry": true - }, - { - "dateNoted": "2021-07-13", - "notes": "", - "parcelID": "15375", - "siteID": "17854", - "siteRegistry": false - }, - { - "dateNoted": "2019-01-10", + "dateNoted": "2016-10-21", "notes": "", - "parcelID": "18536", - "siteID": "19987", + "parcelID": "19219", + "siteID": "15994", "siteRegistry": false } ] }, { - "uuid": "eb050a05-206a-40a2-baf1-86705c9b2767", - "siteID": 17862, - "address": "3719 Cartwright Crest", - "latitude": 57.4008, - "longitude": -125.7174, - "lastUpdated": "2013-12-23", - "city": "East Kacie", - "region": "Cariboo", - "victoriaFile": "26250-20/14118", + "uuid": "6f6c20a2-d589-4fbe-b3f5-ae2b91648af8", + "siteID": 20549, + "address": "252 Kreiger Hollow", + "latitude": 51.7475, + "longitude": -128.0368, + "lastUpdated": "2022-11-05", + "city": "Hoppechester", + "region": "Kootenay", + "victoriaFile": "26250-20/19520", "regionalFile": "N/A", "parcelIDs": [ - 3903429, - 5856433, - 786932, - 7759952, - 2253567 + 8355526, + 6855730, + 5620512, + 6639228, + 1305678 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2023-02-15", - "completed": "2017-10-28", - "initiated": "2014-09-19", - "ministryContact": "LANG WAVA", + "createdAt": "2018-10-09", + "completed": "2021-03-22", + "initiated": "2014-08-21", + "ministryContact": "WHITE ALFREDA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -63375,26 +70175,21 @@ "notationParticipants": [ { "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true + "role": "SUBMITTED BY", + "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true } @@ -63402,10 +70197,10 @@ "siteRegistry": true }, { - "createdAt": "2020-05-15", - "completed": "2019-01-26", - "initiated": "2019-03-15", - "ministryContact": "BECHTELAR MILTON", + "createdAt": "2022-07-22", + "completed": "2020-12-19", + "initiated": "2017-12-28", + "ministryContact": "VANDERVORT KAMRON", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -63413,59 +70208,39 @@ "" ], "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": false - } - ], - "siteRegistry": false - }, - { - "createdAt": "2021-11-03", - "completed": "2016-01-07", - "initiated": "2014-11-10", - "ministryContact": "HICKLE AILEEN", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ + }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2023-08-11", - "completed": "2018-05-03", - "initiated": "2023-07-13", - "ministryContact": "STROSIN KATHRYNE", + "createdAt": "2017-04-09", + "completed": "2018-03-10", + "initiated": "2019-10-16", + "ministryContact": "HARRIS OSWALD", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -63476,12 +70251,27 @@ { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false } ], "siteRegistry": true @@ -63489,128 +70279,81 @@ ], "participants": [ { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2016-12-26", - "startDate": "2019-08-12", + "name": "IPSUM", + "endDate": "2015-03-26", + "startDate": "2018-12-16", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": false }, - { - "name": "AMET, DOLOR SIT", - "endDate": "2022-04-25", - "startDate": "2015-10-23", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": true - }, { "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2016-06-27", - "startDate": "2015-02-19", + "endDate": "2018-01-28", + "startDate": "2018-07-27", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2016-12-06", - "startDate": "2015-12-30", - "notes": "", - "roles": [ - "ORGANIZATION" - ], "siteRegistry": false - }, - { - "name": "IPSUM", - "endDate": "2016-07-19", - "startDate": "2023-07-12", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": true } ], "suspectLandUses": [ { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-11-01 (described on Site Profile dated 2018-11-01)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" - }, - { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2020-11-27 (described on Site Profile dated 2020-11-27)", + "notes": "INSERTED FOR SITE PROFILE DATED 2016-03-06 (described on Site Profile dated 2016-03-06)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2014-02-15 (described on Site Profile dated 2014-02-15)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + } + ], + "parcelDescriptions": [ { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-01-02 (described on Site Profile dated 2017-01-02)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "dateNoted": "2014-10-23", + "parcelID": "15735", + "crownLandUsePIN": "17197", + "crownLandFileNumber": "17760", + "landDescription": "LOT 3 OF LOT 2 BLOCK 2 DISTRICT LOT 1 PLAN 4064" }, { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-03-10 (described on Site Profile dated 2014-03-10)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "dateNoted": "2016-08-17", + "parcelID": "18736", + "crownLandUsePIN": "20983", + "crownLandFileNumber": "16358", + "landDescription": "LOT 4 OF LOT 4 BLOCK 5 DISTRICT LOT 2 PLAN 9038" }, { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-11-25 (described on Site Profile dated 2019-11-25)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "siteRegistry": false, + "dateNoted": "2015-12-06", + "parcelID": "16495", + "crownLandUsePIN": "16931", + "crownLandFileNumber": "16735", + "landDescription": "LOT 5 OF LOT 4 BLOCK 5 DISTRICT LOT 4 PLAN 5338" } ], "siteDisclosures": [ { "siteRegistry": false, - "dateReceived": "2015-07-11", - "dateCompleted": "2019-05-12", - "dateEntered": "2020-03-16", - "dateRegistrar": "2021-12-20", - "dateLocalAuthorityReceived": "2022-03-13", - "summary": "Optio voluptates dicta esse sunt officia nulla vero aliquid laudantium.", - "informationUsed": "Dolor quae praesentium incidunt.\nProvident iure totam sit ullam dolorem neque.\nModi quibusdam quia dolores nam libero harum quo illum saepe.\nSed eum fugit unde dolorem laboriosam laboriosam.", - "pastOrPresentOrders": "Minima neque quo rerum.\nProvident commodi ipsa tenetur quisquam facere illum illo maxime.", + "dateReceived": "2016-12-26", + "dateCompleted": "2016-02-04", + "dateEntered": "2023-09-03", + "dateRegistrar": "2014-04-25", + "dateLocalAuthorityReceived": "2020-04-18", + "summary": "Temporibus deserunt porro est.", + "informationUsed": "Fuga quos id dolores ducimus molestias assumenda.\nSaepe temporibus magnam dolor.\nAspernatur eum iusto deleniti illum fuga facere nihil veritatis ea.", + "pastOrPresentOrders": "Dicta quis provident sunt nulla vel magnam voluptatem necessitatibus.", "commercialAndIndustrialPurposes": [ { "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true - }, - { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false }, - { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true - }, - { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true - } - ] - }, - { - "siteRegistry": true, - "dateReceived": "2014-10-30", - "dateCompleted": "2019-05-22", - "dateEntered": "2020-09-11", - "dateRegistrar": "2019-04-05", - "dateLocalAuthorityReceived": "2021-05-30", - "summary": "Ullam eos sequi accusantium quae.\nQuam ut labore dolorum nam libero mollitia fugiat dignissimos et.\nNon dolores quam dolorem odit veritatis sed corrupti sapiente.", - "informationUsed": "Praesentium ipsam quaerat.\nTempore officiis totam modi voluptas aliquid sed.\nAssumenda ex quia perspiciatis quam.\nMagni inventore quisquam laboriosam voluptatem mollitia inventore.\nEx optio quos iste fugiat quaerat dolore provident quod rem.", - "pastOrPresentOrders": "Maxime quo tempore voluptas.\nMolestias necessitatibus odio dicta libero omnis consectetur odio voluptas.", - "commercialAndIndustrialPurposes": [ { "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", @@ -63618,16 +70361,6 @@ }, { "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false - }, - { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false - }, - { - "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true } @@ -63638,101 +70371,83 @@ { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "ALTENWERTH GREGORIA", - "timestamp": "2020-11-25" - }, - { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "STEUBER HILDA", - "timestamp": "2018-01-11" - }, - { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "LANG MARTA", - "timestamp": "2021-04-20" + "user": "BEDNAR CHET", + "timestamp": "2015-12-15" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "FRANECKI MAZIE", - "timestamp": "2022-12-02" + "user": "GUSIKOWSKI CLEMENTINA", + "timestamp": "2014-02-23" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "FADEL KEIRA", - "timestamp": "2017-12-21" - }, - { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "DAVIS HALEY", - "timestamp": "2017-01-26" + "user": "KUNZE JEREMIE", + "timestamp": "2015-03-30" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "RUNTE EARLENE", - "timestamp": "2015-05-27" + "user": "CASPER RICKY", + "timestamp": "2017-12-07" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "ORN DEAN", - "timestamp": "2017-09-10" + "user": "STROSIN GARETT", + "timestamp": "2014-02-23" } ], "associatedSites": [ { - "dateNoted": "2022-04-21", + "dateNoted": "2017-08-14", "notes": "", - "parcelID": "20107", - "siteID": "20727", - "siteRegistry": true + "parcelID": "18934", + "siteID": "17950", + "siteRegistry": false }, { - "dateNoted": "2021-05-29", + "dateNoted": "2015-10-10", "notes": "", - "parcelID": "16685", - "siteID": "18108", + "parcelID": "15826", + "siteID": "15482", "siteRegistry": false }, { - "dateNoted": "2014-10-29", + "dateNoted": "2017-11-17", "notes": "", - "parcelID": "15663", - "siteID": "18999", - "siteRegistry": false + "parcelID": "15288", + "siteID": "15660", + "siteRegistry": true } ] }, { - "uuid": "b14d936c-55dc-4aa3-8842-3313a27890f7", - "siteID": 17271, - "address": "8508 Giovanni Square", - "latitude": 54.5056, - "longitude": -123.1276, - "lastUpdated": "2015-07-07", - "city": "Binghamton", - "region": "Kootenay", - "victoriaFile": "26250-20/14760", + "uuid": "5f688b6b-b10c-483c-9d3b-d348f8339c61", + "siteID": 17362, + "address": "771 Keebler Track", + "latitude": 58.1794, + "longitude": -132.4778, + "lastUpdated": "2021-06-13", + "city": "Plantation", + "region": " North Coast", + "victoriaFile": "26250-20/13442", "regionalFile": "N/A", "parcelIDs": [ - 9757436, - 3525704, - 1253678, - 2442694, - 7939706 + 4452623, + 8357309, + 6342341, + 7752423, + 2273716 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2019-10-30", - "completed": "2015-01-08", - "initiated": "2020-06-01", - "ministryContact": "BERGE AIDAN", + "createdAt": "2014-04-14", + "completed": "2023-01-16", + "initiated": "2023-04-16", + "ministryContact": "SWANIAWSKI GLORIA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -63741,58 +70456,28 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - } - ], - "siteRegistry": false - }, - { - "createdAt": "2014-03-30", - "completed": "2020-07-25", - "initiated": "2016-10-08", - "ministryContact": "DARE JEVON", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true } ], "siteRegistry": true }, { - "createdAt": "2018-01-01", - "completed": "2014-12-08", - "initiated": "2023-07-05", - "ministryContact": "RAU LAYNE", + "createdAt": "2019-12-19", + "completed": "2023-04-16", + "initiated": "2016-08-30", + "ministryContact": "GIBSON CYRUS", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -63800,11 +70485,6 @@ "" ], "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", @@ -63812,12 +70492,7 @@ }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false }, { @@ -63826,13 +70501,13 @@ "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2022-11-20", - "completed": "2016-07-02", - "initiated": "2020-07-02", - "ministryContact": "FISHER MAIDA", + "createdAt": "2013-12-03", + "completed": "2019-07-26", + "initiated": "2019-09-28", + "ministryContact": "DECKOW PEARLINE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -63843,26 +70518,31 @@ { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true } ], "siteRegistry": true }, { - "createdAt": "2021-09-24", - "completed": "2017-07-07", - "initiated": "2017-03-11", - "ministryContact": "OSINSKI HELOISE", + "createdAt": "2020-07-18", + "completed": "2016-02-25", + "initiated": "2018-01-06", + "ministryContact": "CARROLL HAYLEE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -63870,29 +70550,29 @@ "" ], "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, { "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": true } ], @@ -63902,82 +70582,133 @@ "participants": [ { "name": "SHELL CANADA PRODUCTS", - "endDate": "2018-06-16", - "startDate": "2019-01-20", + "endDate": "2021-06-08", + "startDate": "2022-11-26", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2019-06-16", - "startDate": "2022-01-13", + "name": "AMET, DOLOR SIT", + "endDate": "2018-03-02", + "startDate": "2018-04-23", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": false }, { "name": "AMET, DOLOR SIT", - "endDate": "2017-01-19", - "startDate": "2015-11-07", + "endDate": "2022-05-23", + "startDate": "2014-12-14", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false + }, + { + "name": "AMET, DOLOR SIT", + "endDate": "2014-04-16", + "startDate": "2018-11-21", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false } ], "suspectLandUses": [ { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-06-07 (described on Site Profile dated 2016-06-07)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "notes": "INSERTED FOR SITE PROFILE DATED 2018-01-06 (described on Site Profile dated 2018-01-06)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-12-03 (described on Site Profile dated 2018-12-03)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "notes": "INSERTED FOR SITE PROFILE DATED 2020-05-28 (described on Site Profile dated 2020-05-28)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-10-29 (described on Site Profile dated 2016-10-29)", + "notes": "INSERTED FOR SITE PROFILE DATED 2014-08-04 (described on Site Profile dated 2014-08-04)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" - }, + } + ], + "parcelDescriptions": [ { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-09-13 (described on Site Profile dated 2017-09-13)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "siteRegistry": false, + "dateNoted": "2022-10-15", + "parcelID": "17483", + "crownLandUsePIN": "15403", + "crownLandFileNumber": "16906", + "landDescription": "LOT 4 OF LOT 3 BLOCK 4 DISTRICT LOT 1 PLAN 5753" }, { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-06-13 (described on Site Profile dated 2015-06-13)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "dateNoted": "2022-10-26", + "parcelID": "20770", + "crownLandUsePIN": "20939", + "crownLandFileNumber": "15955", + "landDescription": "LOT 1 OF LOT 2 BLOCK 3 DISTRICT LOT 4 PLAN 5207" } ], "siteDisclosures": [ { "siteRegistry": false, - "dateReceived": "2022-11-10", - "dateCompleted": "2023-03-09", - "dateEntered": "2017-07-06", - "dateRegistrar": "2014-06-23", - "dateLocalAuthorityReceived": "2017-12-06", - "summary": "Aliquid nulla dolorem magnam iste blanditiis delectus.", - "informationUsed": "Magni a quam quo tenetur eum repellat vero ipsam natus.\nAt quo possimus voluptate quo modi.\nCommodi officiis asperiores dolore adipisci suscipit occaecati voluptate aspernatur reprehenderit.\nSit voluptatum quibusdam minima.\nQuod non nobis a blanditiis architecto perferendis unde aliquid.", - "pastOrPresentOrders": "Consectetur delectus odio totam vel voluptate mollitia asperiores optio quasi.\nQuibusdam vero quisquam consequuntur ipsam beatae quae provident.", + "dateReceived": "2017-11-26", + "dateCompleted": "2017-11-02", + "dateEntered": "2023-05-13", + "dateRegistrar": "2016-04-25", + "dateLocalAuthorityReceived": "2022-07-08", + "summary": "Veniam sint reprehenderit quo at ullam quam.\nDebitis suscipit quo occaecati quasi.", + "informationUsed": "Ipsum dolorem animi enim libero illo.\nNatus sapiente autem quibusdam rem.\nSed reprehenderit amet ullam corrupti inventore placeat.", + "pastOrPresentOrders": "Tempora harum hic deleniti rerum blanditiis.", "commercialAndIndustrialPurposes": [ { - "scheduleReference": "F2*", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + } + ] + }, + { + "siteRegistry": false, + "dateReceived": "2019-12-12", + "dateCompleted": "2020-03-20", + "dateEntered": "2018-01-13", + "dateRegistrar": "2016-04-16", + "dateLocalAuthorityReceived": "2014-12-12", + "summary": "Doloribus nisi magnam.\nPraesentium ratione ex quia quasi.\nAtque libero ratione.", + "informationUsed": "Fuga eveniet sint.\nAdipisci repellendus error sit voluptate consequuntur quisquam ipsum.\nDolore soluta dolores.", + "pastOrPresentOrders": "Doloribus possimus magnam nisi maxime animi incidunt.\nQuod atque eius sint consequatur vitae enim dignissimos.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true } ] @@ -63985,95 +70716,96 @@ ], "activityLog": [ { - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "REMPEL FANNY", - "timestamp": "2015-03-08" - }, - { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "ALTENWERTH ARON", - "timestamp": "2021-04-08" + "user": "BALISTRERI-ULLRICH KAYA", + "timestamp": "2020-09-13" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "D'AMORE COBY", - "timestamp": "2019-10-23" + "user": "JACOBS EMILE", + "timestamp": "2013-11-01" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "ROMAGUERA DANIELLA", - "timestamp": "2016-07-09" + "user": "TROMP KATLYNN", + "timestamp": "2017-03-27" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "LEFFLER VIRGINIE", - "timestamp": "2023-05-07" + "user": "HARRIS KEENAN", + "timestamp": "2014-12-19" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "KILBACK FREDRICK", - "timestamp": "2015-01-22" + "user": "RAU ABIGAYLE", + "timestamp": "2022-02-11" }, { - "siteRegistry": true, + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "LEMKE LAMAR", - "timestamp": "2022-10-30" + "user": "STREICH ELLA", + "timestamp": "2021-10-30" }, { - "siteRegistry": true, + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "KESSLER TRAVIS", - "timestamp": "2016-01-03" + "user": "JAKUBOWSKI BUSTER", + "timestamp": "2015-09-04" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "KEMMER HAROLD", - "timestamp": "2014-10-30" + "user": "DAUGHERTY DALE", + "timestamp": "2016-04-18" } ], "associatedSites": [ { - "dateNoted": "2020-02-24", + "dateNoted": "2019-02-16", "notes": "", - "parcelID": "20873", - "siteID": "16157", + "parcelID": "16979", + "siteID": "19240", + "siteRegistry": true + }, + { + "dateNoted": "2014-09-17", + "notes": "", + "parcelID": "19593", + "siteID": "16150", "siteRegistry": true } ] }, { - "uuid": "20c294d4-7d5f-4247-b886-5a677ccf8d7f", - "siteID": 18004, - "address": "590 Flavie Falls", - "latitude": 48.1932, - "longitude": -126.7327, - "lastUpdated": "2022-12-09", - "city": "Euless", - "region": "Thompson-Okanagan", - "victoriaFile": "26250-20/7083", + "uuid": "d10117b5-ad52-4fa7-b6d0-a02deafd94e7", + "siteID": 19650, + "address": "244 Rosalia Throughway", + "latitude": 57.0733, + "longitude": -127.4053, + "lastUpdated": "2021-07-10", + "city": "South Deonte", + "region": " North Coast", + "victoriaFile": "26250-20/19656", "regionalFile": "N/A", "parcelIDs": [ - 3645358, - 9017358, - 8805972, - 6208163, - 2256889 + 9511555, + 9557224, + 6242874, + 3669204, + 7796509 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2021-10-11", - "completed": "2018-06-25", - "initiated": "2018-03-23", - "ministryContact": "HUELS ADRIANA", + "createdAt": "2020-11-04", + "completed": "2019-06-06", + "initiated": "2023-09-04", + "ministryContact": "ZEMLAK ISSAC", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -64081,23 +70813,43 @@ "" ], "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "createdAt": "2014-03-21", + "completed": "2014-03-03", + "initiated": "2015-03-09", + "ministryContact": "MARVIN KEIRA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true }, @@ -64110,10 +70862,10 @@ "siteRegistry": false }, { - "createdAt": "2020-10-18", - "completed": "2023-04-13", - "initiated": "2018-03-08", - "ministryContact": "VANDERVORT SIDNEY", + "createdAt": "2019-04-29", + "completed": "2018-02-28", + "initiated": "2018-06-13", + "ministryContact": "CARTER JUANITA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -64122,69 +70874,89 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false - }, + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "createdAt": "2019-11-10", + "completed": "2014-03-04", + "initiated": "2021-12-29", + "ministryContact": "KESSLER ARVID", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false + "role": "SUBMITTED BY", + "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": true } ], "siteRegistry": true - } - ], - "participants": [ - { - "name": "AMET, DOLOR SIT", - "endDate": "2013-12-02", - "startDate": "2015-03-27", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2022-02-08", - "startDate": "2016-10-15", - "notes": "", - "roles": [ - "ORGANIZATION" + "createdAt": "2020-10-20", + "completed": "2022-01-11", + "initiated": "2021-12-15", + "ministryContact": "MOEN ADRIENNE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" ], - "siteRegistry": false - }, - { - "name": "IPSUM", - "endDate": "2018-01-18", - "startDate": "2018-01-15", - "notes": "", - "roles": [ - "EMPLOYEE" + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + } ], - "siteRegistry": false - }, + "siteRegistry": true + } + ], + "participants": [ { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2019-09-08", - "startDate": "2016-03-02", + "name": "IPSUM", + "endDate": "2023-03-11", + "startDate": "2014-12-11", "notes": "", "roles": [ "ORGANIZATION" @@ -64192,9 +70964,9 @@ "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2018-04-20", - "startDate": "2020-11-01", + "name": "AMET, DOLOR SIT", + "endDate": "2021-11-22", + "startDate": "2019-08-30", "notes": "", "roles": [ "EMPLOYEE" @@ -64205,57 +70977,58 @@ "suspectLandUses": [ { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2023-02-04 (described on Site Profile dated 2023-02-04)", + "notes": "INSERTED FOR SITE PROFILE DATED 2016-09-02 (described on Site Profile dated 2016-09-02)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2020-03-09 (described on Site Profile dated 2020-03-09)", + "notes": "INSERTED FOR SITE PROFILE DATED 2016-07-22 (described on Site Profile dated 2016-07-22)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" - }, + } + ], + "parcelDescriptions": [ { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-03-20 (described on Site Profile dated 2016-03-20)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "dateNoted": "2018-04-22", + "parcelID": "19392", + "crownLandUsePIN": "15541", + "crownLandFileNumber": "20824", + "landDescription": "LOT 5 OF LOT 2 BLOCK 1 DISTRICT LOT 1 PLAN 3462" }, { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-10-07 (described on Site Profile dated 2018-10-07)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "dateNoted": "2023-02-27", + "parcelID": "17115", + "crownLandUsePIN": "15418", + "crownLandFileNumber": "17119", + "landDescription": "LOT 3 OF LOT 5 BLOCK 1 DISTRICT LOT 5 PLAN 6659" }, { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-05-08 (described on Site Profile dated 2015-05-08)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "siteRegistry": true, + "dateNoted": "2023-04-18", + "parcelID": "18562", + "crownLandUsePIN": "16936", + "crownLandFileNumber": "19377", + "landDescription": "LOT 3 OF LOT 3 BLOCK 1 DISTRICT LOT 4 PLAN 8296" } ], "siteDisclosures": [ { "siteRegistry": true, - "dateReceived": "2016-12-09", - "dateCompleted": "2014-05-13", - "dateEntered": "2018-12-22", - "dateRegistrar": "2014-03-22", - "dateLocalAuthorityReceived": "2013-11-03", - "summary": "Excepturi sequi magnam molestias vitae fugit corporis.\nDolore quia delectus nostrum suscipit repellendus cumque repudiandae odio.", - "informationUsed": "Laudantium repellat autem.\nQuibusdam commodi maxime.\nQuaerat unde officiis.\nAt animi quibusdam.\nVero labore recusandae quas recusandae praesentium dolorem quas deserunt molestias.", - "pastOrPresentOrders": "In eum perspiciatis ullam neque.\nVero vitae consequatur natus consequatur.\nCorrupti blanditiis esse nesciunt sunt magnam aliquid excepturi sequi.", + "dateReceived": "2021-10-19", + "dateCompleted": "2016-06-11", + "dateEntered": "2014-07-21", + "dateRegistrar": "2016-12-14", + "dateLocalAuthorityReceived": "2015-11-19", + "summary": "At facilis ab voluptatibus.\nBlanditiis a nesciunt at pariatur laudantium.", + "informationUsed": "Qui repellendus eum.\nAlias ab magnam perferendis blanditiis at iusto omnis quae aliquam.\nId id provident.", + "pastOrPresentOrders": "Minus natus occaecati velit maxime sed veniam.", "commercialAndIndustrialPurposes": [ { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true - }, - { - "scheduleReference": "F1*", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, - { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false - }, { "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", @@ -64264,119 +71037,106 @@ ] }, { - "siteRegistry": false, - "dateReceived": "2017-01-04", - "dateCompleted": "2015-07-04", - "dateEntered": "2018-04-27", - "dateRegistrar": "2017-04-19", - "dateLocalAuthorityReceived": "2015-10-24", - "summary": "Natus tempora dolor esse quisquam pariatur.", - "informationUsed": "Labore odit quasi sint molestiae error ipsa.\nNobis magni est libero in tenetur aliquid.\nAccusantium pariatur nam illum beatae animi veniam autem laborum.\nAssumenda porro velit.\nPerferendis dolore quod.", - "pastOrPresentOrders": "Molestiae et doloribus amet repellat at quo temporibus quaerat facilis.", + "siteRegistry": true, + "dateReceived": "2014-08-04", + "dateCompleted": "2020-07-06", + "dateEntered": "2014-06-07", + "dateRegistrar": "2020-09-12", + "dateLocalAuthorityReceived": "2020-10-08", + "summary": "Minima odit sapiente et.\nIure eum quos commodi mollitia tempore dolores quam totam.\nProvident velit quidem quaerat.", + "informationUsed": "Reprehenderit esse ab voluptatibus autem repudiandae voluptate nostrum similique eveniet.\nEnim provident laborum.\nCumque debitis expedita accusamus modi ullam iusto excepturi.", + "pastOrPresentOrders": "Doloremque accusantium fugit.", "commercialAndIndustrialPurposes": [ { - "scheduleReference": "F2*", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false + "siteRegistry": true }, { "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, { - "scheduleReference": "F2*", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true + "siteRegistry": false } ] } ], "activityLog": [ { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "BREITENBERG OLGA", - "timestamp": "2019-08-13" + "user": "STIEDEMANN TIFFANY", + "timestamp": "2014-12-30" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "GLEASON JORDYN", - "timestamp": "2016-10-01" + "user": "WILDERMAN JONATHAN", + "timestamp": "2015-03-18" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "GUSIKOWSKI NELDA", - "timestamp": "2015-03-03" + "user": "GUTMANN BRADLY", + "timestamp": "2017-04-22" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "JENKINS-MCKENZIE RETTA", - "timestamp": "2014-03-23" - }, - { - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "GISLASON RAPHAELLE", - "timestamp": "2016-02-11" + "user": "ZULAUF JUANITA", + "timestamp": "2022-01-04" }, { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "KERLUKE KALEIGH", - "timestamp": "2015-11-27" + "user": "CUMMINGS CHEYANNE", + "timestamp": "2015-05-20" } ], "associatedSites": [ { - "dateNoted": "2014-10-12", - "notes": "", - "parcelID": "17424", - "siteID": "20188", - "siteRegistry": true - }, - { - "dateNoted": "2017-05-08", + "dateNoted": "2018-12-30", "notes": "", - "parcelID": "17574", - "siteID": "19559", + "parcelID": "15417", + "siteID": "16640", "siteRegistry": true } ] }, { - "uuid": "fdb04312-34d0-46b9-800a-62aade39bb5f", - "siteID": 20891, - "address": "239 Waelchi Gateway", - "latitude": 48.8805, - "longitude": -135.6973, - "lastUpdated": "2019-06-22", - "city": "Schmidtcester", - "region": " North Coast", - "victoriaFile": "26250-20/11334", + "uuid": "9a3ba138-ca5d-4e30-ad1f-774d4f37084e", + "siteID": 15781, + "address": "27479 Homenick Street", + "latitude": 52.8857, + "longitude": -125.8552, + "lastUpdated": "2015-11-02", + "city": "Rathview", + "region": "Kootenay", + "victoriaFile": "26250-20/15391", "regionalFile": "N/A", "parcelIDs": [ - 3682231, - 6484151, - 8254848, - 1582701, - 1796495 + 8445802, + 4479330, + 503192, + 7908176, + 2971724 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2020-08-14", - "completed": "2018-01-07", - "initiated": "2020-11-24", - "ministryContact": "BEATTY HUGH", + "createdAt": "2020-03-11", + "completed": "2021-02-19", + "initiated": "2016-03-30", + "ministryContact": "WEISSNAT JOHAN", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -64385,38 +71145,28 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false } ], "siteRegistry": false }, { - "createdAt": "2015-09-24", - "completed": "2018-07-25", - "initiated": "2021-04-16", - "ministryContact": "MEDHURST WANDA", + "createdAt": "2014-01-08", + "completed": "2018-02-27", + "initiated": "2022-08-25", + "ministryContact": "O'CONNER JASON", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -64424,28 +71174,13 @@ "" ], "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false } @@ -64453,10 +71188,10 @@ "siteRegistry": false }, { - "createdAt": "2018-07-09", - "completed": "2015-04-11", - "initiated": "2018-04-02", - "ministryContact": "BERNIER ALFONSO", + "createdAt": "2015-06-12", + "completed": "2014-08-27", + "initiated": "2018-02-25", + "ministryContact": "HEIDENREICH CLAUDIA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -64467,37 +71202,22 @@ { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", "siteRegistry": true }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false } ], "participants": [ { - "name": "AMET, DOLOR SIT", - "endDate": "2018-12-16", - "startDate": "2023-01-25", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2019-09-28", + "startDate": "2019-04-10", "notes": "", "roles": [ "EMPLOYEE" @@ -64505,107 +71225,131 @@ "siteRegistry": false }, { - "name": "AMET, DOLOR SIT", - "endDate": "2013-12-04", - "startDate": "2014-01-04", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2017-03-22", + "startDate": "2021-03-24", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true }, { "name": "IPSUM", - "endDate": "2017-04-17", - "startDate": "2020-03-22", + "endDate": "2014-06-07", + "startDate": "2020-02-01", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true }, { - "name": "IPSUM", - "endDate": "2022-03-05", - "startDate": "2022-08-18", + "name": "AMET, DOLOR SIT", + "endDate": "2022-06-28", + "startDate": "2022-11-27", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false } ], "suspectLandUses": [ { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-03-26 (described on Site Profile dated 2016-03-26)", + "notes": "INSERTED FOR SITE PROFILE DATED 2021-08-11 (described on Site Profile dated 2021-08-11)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2020-03-31 (described on Site Profile dated 2020-03-31)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-06-24 (described on Site Profile dated 2016-06-24)", + "notes": "INSERTED FOR SITE PROFILE DATED 2017-04-12 (described on Site Profile dated 2017-04-12)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2023-02-17 (described on Site Profile dated 2023-02-17)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2016-08-15 (described on Site Profile dated 2016-08-15)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], - "siteDisclosures": [ + "parcelDescriptions": [ { "siteRegistry": true, - "dateReceived": "2017-05-06", - "dateCompleted": "2020-01-10", - "dateEntered": "2018-10-05", - "dateRegistrar": "2015-09-30", - "dateLocalAuthorityReceived": "2016-04-26", - "summary": "Atque doloremque labore eaque facere corrupti maiores illo aliquid quae.\nVero odio odit ex voluptate asperiores ex velit debitis.\nAut suscipit ea tempore.", - "informationUsed": "Adipisci deleniti minus est atque distinctio.\nOccaecati voluptatibus alias odio autem ea vel.\nDolorem reprehenderit facilis et alias atque quisquam.\nExpedita quas sequi harum mollitia.\nNostrum corporis ducimus.", - "pastOrPresentOrders": "Animi sapiente labore placeat omnis reprehenderit quidem nesciunt dicta repudiandae.", - "commercialAndIndustrialPurposes": [ - { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false - }, - { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false - }, - { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true - } - ] + "dateNoted": "2022-05-10", + "parcelID": "16615", + "crownLandUsePIN": "17576", + "crownLandFileNumber": "18755", + "landDescription": "LOT 1 OF LOT 2 BLOCK 1 DISTRICT LOT 3 PLAN 8989" + }, + { + "siteRegistry": true, + "dateNoted": "2017-01-20", + "parcelID": "20982", + "crownLandUsePIN": "20675", + "crownLandFileNumber": "17303", + "landDescription": "LOT 4 OF LOT 5 BLOCK 2 DISTRICT LOT 1 PLAN 5653" }, { "siteRegistry": false, - "dateReceived": "2019-09-29", - "dateCompleted": "2021-03-25", - "dateEntered": "2020-11-09", - "dateRegistrar": "2023-06-24", - "dateLocalAuthorityReceived": "2020-01-17", - "summary": "Consequatur veritatis ex nam et eum quibusdam illum.\nPariatur laborum sint.\nNihil ab harum.", - "informationUsed": "Tenetur aliquam sequi fuga eius quos alias hic consequatur harum.\nCulpa impedit eligendi doloremque labore ullam nam ipsam molestias pariatur.\nEos id inventore maxime neque doloribus temporibus adipisci sit.\nVoluptate vitae voluptatum at cum velit a ducimus.\nArchitecto consequatur dolorum.", - "pastOrPresentOrders": "Voluptate nemo veniam neque et dolore saepe modi in accusamus.\nMinima excepturi non autem.\nMolestias consectetur iure soluta iure consectetur.", + "dateNoted": "2021-10-16", + "parcelID": "17083", + "crownLandUsePIN": "20185", + "crownLandFileNumber": "16116", + "landDescription": "LOT 2 OF LOT 3 BLOCK 5 DISTRICT LOT 1 PLAN 4903" + }, + { + "siteRegistry": false, + "dateNoted": "2021-12-10", + "parcelID": "16331", + "crownLandUsePIN": "19350", + "crownLandFileNumber": "15388", + "landDescription": "LOT 3 OF LOT 2 BLOCK 1 DISTRICT LOT 3 PLAN 9615" + }, + { + "siteRegistry": false, + "dateNoted": "2017-01-01", + "parcelID": "17585", + "crownLandUsePIN": "17291", + "crownLandFileNumber": "20906", + "landDescription": "LOT 5 OF LOT 2 BLOCK 5 DISTRICT LOT 2 PLAN 7307" + } + ], + "siteDisclosures": [ + { + "siteRegistry": false, + "dateReceived": "2020-10-27", + "dateCompleted": "2015-05-09", + "dateEntered": "2021-05-19", + "dateRegistrar": "2014-04-12", + "dateLocalAuthorityReceived": "2014-12-02", + "summary": "Fugiat laboriosam amet dolore laboriosam occaecati error quae ipsam.", + "informationUsed": "Necessitatibus esse natus animi nostrum.\nCumque maiores facilis.\nNostrum tempore qui dolor beatae voluptate.\nIn reiciendis mollitia ipsa consequuntur vero exercitationem error non.", + "pastOrPresentOrders": "Est hic iure veniam optio numquam nesciunt molestiae quia ipsa.\nIllo atque in laborum voluptatem impedit.", "commercialAndIndustrialPurposes": [ - { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false - }, { "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { - "scheduleReference": "F1*", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true + "siteRegistry": false }, { "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true + "siteRegistry": false } ] } @@ -64614,75 +71358,88 @@ { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "KOVACEK ANNA", - "timestamp": "2019-04-16" + "user": "BEATTY FELIX", + "timestamp": "2013-10-25" }, { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "DAVIS ESTRELLA", - "timestamp": "2014-07-15" + "user": "HAYES FAY", + "timestamp": "2021-02-18" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "WINDLER WOODROW", - "timestamp": "2016-09-06" + "user": "BERGNAUM LESLIE", + "timestamp": "2019-11-25" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "RATH DANA", - "timestamp": "2017-11-05" + "user": "BRAKUS MAY", + "timestamp": "2014-02-04" }, { - "siteRegistry": true, + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "MCCLURE KAELYN", - "timestamp": "2023-02-07" + "user": "KSHLERIN MACEY", + "timestamp": "2019-01-27" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "CONN VERLA", - "timestamp": "2018-01-27" + "user": "RITCHIE PETER", + "timestamp": "2013-12-11" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "KULAS PETER", + "timestamp": "2017-05-11" } ], "associatedSites": [ { - "dateNoted": "2014-07-05", + "dateNoted": "2015-08-07", "notes": "", - "parcelID": "19931", - "siteID": "19590", - "siteRegistry": true + "parcelID": "16143", + "siteID": "18510", + "siteRegistry": false + }, + { + "dateNoted": "2013-11-29", + "notes": "", + "parcelID": "20274", + "siteID": "16941", + "siteRegistry": false } ] }, { - "uuid": "50518880-0aba-461f-868e-54895a044c9a", - "siteID": 20921, - "address": "609 Ledner Hollow", - "latitude": 58.0928, - "longitude": -132.9882, - "lastUpdated": "2021-11-13", - "city": "Linneaview", - "region": " North Coast", - "victoriaFile": "26250-20/10477", + "uuid": "c03aec54-93f3-406c-a8dd-ab4740a0dc94", + "siteID": 16778, + "address": "38854 Kshlerin Station", + "latitude": 53.4046, + "longitude": -126.4357, + "lastUpdated": "2020-03-13", + "city": "Great Falls", + "region": "Vancouver Island/Coast", + "victoriaFile": "26250-20/17313", "regionalFile": "N/A", "parcelIDs": [ - 6947018, - 6021975, - 6475822, - 2354342, - 4768356 + 9989450, + 8934088, + 2673490, + 5112064, + 5172468 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2020-11-14", - "completed": "2021-04-24", - "initiated": "2017-05-09", - "ministryContact": "ZULAUF REMINGTON", + "createdAt": "2017-09-03", + "completed": "2015-10-04", + "initiated": "2023-08-16", + "ministryContact": "MOEN MARCO", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -64692,22 +71449,37 @@ "notationParticipants": [ { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false } ], "siteRegistry": true }, { - "createdAt": "2021-09-21", - "completed": "2016-09-21", - "initiated": "2018-01-30", - "ministryContact": "STOLTENBERG JERAD", + "createdAt": "2023-09-17", + "completed": "2022-11-07", + "initiated": "2017-01-07", + "ministryContact": "BAILEY ADRIENNE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -64715,6 +71487,11 @@ "" ], "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", @@ -64722,22 +71499,27 @@ }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false } ], "siteRegistry": false }, { - "createdAt": "2023-09-29", - "completed": "2021-08-29", - "initiated": "2013-12-16", - "ministryContact": "DIBBERT ANGELITA", + "createdAt": "2021-02-10", + "completed": "2014-07-23", + "initiated": "2014-08-16", + "ministryContact": "FISHER TRYCIA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -64752,22 +71534,22 @@ }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false + "role": "SUBMITTED BY", + "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", "siteRegistry": false } ], "siteRegistry": false }, { - "createdAt": "2020-11-06", - "completed": "2020-09-19", - "initiated": "2018-06-22", - "ministryContact": "SMITHAM LAYNE", + "createdAt": "2017-05-07", + "completed": "2018-05-31", + "initiated": "2015-06-28", + "ministryContact": "WILDERMAN SADIE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -64775,39 +71557,29 @@ "" ], "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false } ], "siteRegistry": true }, { - "createdAt": "2016-06-03", - "completed": "2015-01-12", - "initiated": "2017-11-28", - "ministryContact": "GISLASON JERRELL", + "createdAt": "2021-12-11", + "completed": "2019-05-09", + "initiated": "2020-03-15", + "ministryContact": "KOCH BUDDY", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -64817,28 +71589,18 @@ "notationParticipants": [ { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true + "role": "REQUESTED BY", + "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false } ], "siteRegistry": false @@ -64847,102 +71609,142 @@ "participants": [ { "name": "SHELL CANADA PRODUCTS", - "endDate": "2019-01-23", - "startDate": "2023-05-05", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": false - }, - { - "name": "IPSUM", - "endDate": "2018-08-19", - "startDate": "2017-09-06", + "endDate": "2017-04-24", + "startDate": "2020-09-22", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true }, { - "name": "AMET, DOLOR SIT", - "endDate": "2020-02-26", - "startDate": "2015-01-22", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2015-01-16", + "startDate": "2019-11-04", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": false }, { "name": "IPSUM", - "endDate": "2016-12-27", - "startDate": "2017-08-07", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2013-10-17", - "startDate": "2016-06-25", + "endDate": "2022-08-27", + "startDate": "2015-05-26", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": false + "siteRegistry": true } ], "suspectLandUses": [ { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-06-17 (described on Site Profile dated 2019-06-17)", + "notes": "INSERTED FOR SITE PROFILE DATED 2020-03-13 (described on Site Profile dated 2020-03-13)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-03-15 (described on Site Profile dated 2014-03-15)", + "notes": "INSERTED FOR SITE PROFILE DATED 2023-09-02 (described on Site Profile dated 2023-09-02)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2021-04-22 (described on Site Profile dated 2021-04-22)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-05-03 (described on Site Profile dated 2021-05-03)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "notes": "INSERTED FOR SITE PROFILE DATED 2014-02-08 (described on Site Profile dated 2014-02-08)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + } + ], + "parcelDescriptions": [ + { + "siteRegistry": false, + "dateNoted": "2018-07-15", + "parcelID": "20191", + "crownLandUsePIN": "16181", + "crownLandFileNumber": "19180", + "landDescription": "LOT 2 OF LOT 1 BLOCK 1 DISTRICT LOT 5 PLAN 3002" }, { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-12-25 (described on Site Profile dated 2018-12-25)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "dateNoted": "2018-01-20", + "parcelID": "17629", + "crownLandUsePIN": "15602", + "crownLandFileNumber": "20419", + "landDescription": "LOT 5 OF LOT 2 BLOCK 2 DISTRICT LOT 4 PLAN 6966" + }, + { + "siteRegistry": false, + "dateNoted": "2019-10-03", + "parcelID": "16557", + "crownLandUsePIN": "18934", + "crownLandFileNumber": "19893", + "landDescription": "LOT 3 OF LOT 3 BLOCK 1 DISTRICT LOT 2 PLAN 9307" + }, + { + "siteRegistry": true, + "dateNoted": "2021-11-18", + "parcelID": "18013", + "crownLandUsePIN": "18748", + "crownLandFileNumber": "18057", + "landDescription": "LOT 3 OF LOT 4 BLOCK 5 DISTRICT LOT 4 PLAN 3626" + }, + { + "siteRegistry": true, + "dateNoted": "2013-12-31", + "parcelID": "20377", + "crownLandUsePIN": "19015", + "crownLandFileNumber": "17131", + "landDescription": "LOT 4 OF LOT 1 BLOCK 1 DISTRICT LOT 2 PLAN 8756" } ], "siteDisclosures": [ { - "siteRegistry": false, - "dateReceived": "2015-11-13", - "dateCompleted": "2014-02-13", - "dateEntered": "2017-10-09", - "dateRegistrar": "2023-09-28", - "dateLocalAuthorityReceived": "2019-10-20", - "summary": "Officiis ad sint vel non soluta pariatur dignissimos.\nDolorem iste accusantium laboriosam aut nam eos quasi eveniet.\nRatione facere error perferendis totam praesentium magnam quo.", - "informationUsed": "Earum deserunt quos.\nDoloremque animi odit officiis laudantium saepe.\nTotam nemo repellendus illo quia dolor laboriosam mollitia nemo minus.", - "pastOrPresentOrders": "Cumque cumque omnis.", + "siteRegistry": true, + "dateReceived": "2021-10-28", + "dateCompleted": "2021-12-05", + "dateEntered": "2017-12-27", + "dateRegistrar": "2020-12-25", + "dateLocalAuthorityReceived": "2022-11-11", + "summary": "Assumenda magnam explicabo cumque maxime praesentium beatae.\nLabore eos distinctio maiores eveniet consequatur doloribus.\nPorro explicabo explicabo eum.", + "informationUsed": "Culpa aliquam architecto sit recusandae suscipit error inventore.\nQuam voluptatibus provident sed ab error quia quaerat quas.\nVel reiciendis quaerat odio sit dolor nihil.", + "pastOrPresentOrders": "Dolore dolorem corporis perspiciatis deserunt iure ducimus.", "commercialAndIndustrialPurposes": [ { "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true + "siteRegistry": false }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + } + ] + }, + { + "siteRegistry": true, + "dateReceived": "2015-01-11", + "dateCompleted": "2022-03-18", + "dateEntered": "2014-02-16", + "dateRegistrar": "2023-07-06", + "dateLocalAuthorityReceived": "2018-03-06", + "summary": "Velit fugiat rerum voluptatem molestiae ipsam debitis.\nSunt ducimus modi quia iure ratione.\nPerspiciatis atque architecto architecto cum natus non modi vitae.", + "informationUsed": "Eveniet voluptates ullam excepturi aut quas cumque nisi officiis.\nLibero veniam vel quos deserunt modi debitis fuga.\nMollitia nulla nesciunt.\nRecusandae esse est ea.", + "pastOrPresentOrders": "Debitis repudiandae rerum provident sunt debitis.\nFugit perspiciatis iusto laborum molestiae impedit sed repellendus.", + "commercialAndIndustrialPurposes": [ { "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false } ] @@ -64950,91 +71752,77 @@ ], "activityLog": [ { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "HILLS RICKEY", - "timestamp": "2020-05-25" + "user": "GERHOLD CURTIS", + "timestamp": "2023-07-06" }, { - "siteRegistry": true, + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "FERRY ALTHEA", - "timestamp": "2019-12-30" + "user": "ANKUNDING OSBALDO", + "timestamp": "2015-09-15" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "MAGGIO IZAIAH", - "timestamp": "2014-12-27" + "user": "JOHNSON MARIANNA", + "timestamp": "2013-10-31" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "REINGER CORINE", - "timestamp": "2015-02-26" + "user": "WYMAN DEJUAN", + "timestamp": "2021-11-01" }, { - "siteRegistry": true, + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "STANTON JORGE", - "timestamp": "2019-07-16" + "user": "JACOBSON ELFRIEDA", + "timestamp": "2016-05-24" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "PROHASKA JAIME", - "timestamp": "2013-11-19" + "user": "BREKKE HATTIE", + "timestamp": "2018-12-30" } ], "associatedSites": [ { - "dateNoted": "2014-02-17", - "notes": "", - "parcelID": "15335", - "siteID": "17419", - "siteRegistry": false - }, - { - "dateNoted": "2014-11-07", - "notes": "", - "parcelID": "17208", - "siteID": "18160", - "siteRegistry": false - }, - { - "dateNoted": "2022-03-15", + "dateNoted": "2022-04-07", "notes": "", - "parcelID": "16692", - "siteID": "17477", - "siteRegistry": false + "parcelID": "20537", + "siteID": "17387", + "siteRegistry": true } ] }, { - "uuid": "30c70c37-fdaf-4948-8f85-b7500f687236", - "siteID": 20734, - "address": "48979 Abshire Falls", - "latitude": 51.1232, - "longitude": -119.5505, - "lastUpdated": "2023-09-03", - "city": "East Dane", - "region": "Thompson-Okanagan", - "victoriaFile": "26250-20/3354", + "uuid": "9e2930ec-0cd2-4ba6-992a-990fc86afe77", + "siteID": 16933, + "address": "9629 Rice Brooks", + "latitude": 51.4858, + "longitude": -123.9395, + "lastUpdated": "2023-02-26", + "city": "Fort Constance", + "region": "Kootenay", + "victoriaFile": "26250-20/6962", "regionalFile": "N/A", "parcelIDs": [ - 3751032, - 5764082, - 6415500, - 8656888, - 8046203 + 1944265, + 8583899, + 4025195, + 8633882, + 8183360 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2022-11-21", - "completed": "2017-07-02", - "initiated": "2022-12-24", - "ministryContact": "KOVACEK BETTIE", + "createdAt": "2018-02-21", + "completed": "2021-06-15", + "initiated": "2014-11-25", + "ministryContact": "BORER KEN", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -65042,11 +71830,6 @@ "" ], "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", @@ -65061,35 +71844,10 @@ "siteRegistry": false }, { - "createdAt": "2013-12-06", - "completed": "2016-11-25", - "initiated": "2021-06-25", - "ministryContact": "LEFFLER ESTELLE", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - } - ], - "siteRegistry": true - }, - { - "createdAt": "2019-02-28", - "completed": "2023-05-31", - "initiated": "2021-04-01", - "ministryContact": "REMPEL MARIANO", + "createdAt": "2022-08-20", + "completed": "2019-06-30", + "initiated": "2018-04-17", + "ministryContact": "TORP HILDA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -65097,43 +71855,8 @@ "" ], "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - } - ], - "siteRegistry": false - }, - { - "createdAt": "2017-09-02", - "completed": "2018-11-15", - "initiated": "2017-01-05", - "ministryContact": "PARISIAN ADAH", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false }, @@ -65141,46 +71864,26 @@ "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false } ], "participants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2016-10-12", - "startDate": "2019-07-06", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": false - }, { "name": "SHELL CANADA PRODUCTS", - "endDate": "2019-06-12", - "startDate": "2018-06-26", + "endDate": "2019-09-19", + "startDate": "2020-07-29", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true }, { "name": "IPSUM", - "endDate": "2023-04-12", - "startDate": "2023-08-05", + "endDate": "2018-06-11", + "startDate": "2015-11-08", "notes": "", "roles": [ "EMPLOYEE" @@ -65188,82 +71891,101 @@ "siteRegistry": true }, { - "name": "AMET, DOLOR SIT", - "endDate": "2016-03-04", - "startDate": "2020-10-16", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2014-08-29", + "startDate": "2015-09-04", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": false } ], "suspectLandUses": [ + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2020-07-11 (described on Site Profile dated 2020-07-11)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2021-10-07 (described on Site Profile dated 2021-10-07)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + } + ], + "parcelDescriptions": [ + { + "siteRegistry": true, + "dateNoted": "2016-10-20", + "parcelID": "15731", + "crownLandUsePIN": "16290", + "crownLandFileNumber": "16905", + "landDescription": "LOT 1 OF LOT 2 BLOCK 2 DISTRICT LOT 5 PLAN 5082" + }, + { + "siteRegistry": false, + "dateNoted": "2017-09-13", + "parcelID": "18524", + "crownLandUsePIN": "18868", + "crownLandFileNumber": "19708", + "landDescription": "LOT 5 OF LOT 4 BLOCK 1 DISTRICT LOT 3 PLAN 5428" + }, + { + "siteRegistry": true, + "dateNoted": "2020-03-27", + "parcelID": "17584", + "crownLandUsePIN": "18655", + "crownLandFileNumber": "19211", + "landDescription": "LOT 5 OF LOT 1 BLOCK 5 DISTRICT LOT 5 PLAN 6613" + }, { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2013-12-29 (described on Site Profile dated 2013-12-29)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "dateNoted": "2015-08-10", + "parcelID": "18513", + "crownLandUsePIN": "20437", + "crownLandFileNumber": "15570", + "landDescription": "LOT 4 OF LOT 1 BLOCK 4 DISTRICT LOT 3 PLAN 7946" }, { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-04-21 (described on Site Profile dated 2015-04-21)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "dateNoted": "2018-02-14", + "parcelID": "16464", + "crownLandUsePIN": "18026", + "crownLandFileNumber": "15788", + "landDescription": "LOT 1 OF LOT 5 BLOCK 5 DISTRICT LOT 2 PLAN 3529" } ], "siteDisclosures": [ { "siteRegistry": true, - "dateReceived": "2015-06-18", - "dateCompleted": "2015-10-02", - "dateEntered": "2015-07-14", - "dateRegistrar": "2023-07-28", - "dateLocalAuthorityReceived": "2018-10-28", - "summary": "Debitis fugit aliquam quos reiciendis beatae enim optio.\nQuis aperiam exercitationem eveniet ducimus incidunt laborum pariatur veniam deleniti.\nSapiente nobis eius nobis repellendus.", - "informationUsed": "Asperiores facilis dolores.\nRepudiandae earum ipsam ea dolore minus atque fugiat nisi.\nIn vel consequuntur sapiente vel molestiae commodi cum labore ab.\nEarum nihil error culpa neque commodi architecto quam commodi.\nEx quaerat omnis et amet minima iusto nam.", - "pastOrPresentOrders": "Rem porro veniam velit vel molestiae animi.", + "dateReceived": "2015-01-23", + "dateCompleted": "2014-01-14", + "dateEntered": "2019-11-29", + "dateRegistrar": "2019-02-01", + "dateLocalAuthorityReceived": "2015-10-10", + "summary": "Cumque atque hic quae.\nIusto alias velit tempora quia quae.\nAt sed magnam accusamus ipsa ut officiis modi incidunt voluptates.", + "informationUsed": "Delectus natus optio cumque.\nIusto ea et animi non occaecati placeat.\nNon architecto aliquid modi voluptates.", + "pastOrPresentOrders": "Amet mollitia similique voluptas nostrum.\nVoluptas temporibus mollitia excepturi reprehenderit.", "commercialAndIndustrialPurposes": [ { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false }, { "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true - }, - { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true + "siteRegistry": false }, { "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false - } - ] - }, - { - "siteRegistry": false, - "dateReceived": "2022-12-15", - "dateCompleted": "2021-03-08", - "dateEntered": "2019-02-28", - "dateRegistrar": "2017-07-28", - "dateLocalAuthorityReceived": "2016-12-07", - "summary": "Repellendus fuga nesciunt molestiae.\nExcepturi quas accusamus consequatur sapiente.", - "informationUsed": "Eum expedita eligendi veritatis quos aperiam asperiores unde provident.\nNeque culpa illo accusantium blanditiis explicabo aliquid quis.\nQuaerat veniam minima doloremque quis molestias officiis officia.\nPlaceat quia laborum corrupti debitis.", - "pastOrPresentOrders": "Voluptatem asperiores nesciunt harum molestias quasi.\nTempora rem ut aperiam in enim architecto commodi fugiat maxime.", - "commercialAndIndustrialPurposes": [ - { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true + "siteRegistry": false } ] } @@ -65272,87 +71994,99 @@ { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "SWIFT CONSTANCE", - "timestamp": "2020-02-26" + "user": "PAGAC DELANEY", + "timestamp": "2019-08-15" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "KEMMER BERRY", + "timestamp": "2018-05-24" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "LINDGREN AUDIE", + "timestamp": "2016-01-27" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "STROMAN KEITH", - "timestamp": "2016-11-28" + "user": "HOPPE GENEVIEVE", + "timestamp": "2022-09-12" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "RUNOLFSDOTTIR JACINTO", - "timestamp": "2014-04-25" + "user": "STEHR PEYTON", + "timestamp": "2018-12-23" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "MANTE OBIE", - "timestamp": "2014-11-11" + "user": "RUNTE YASMINE", + "timestamp": "2020-05-17" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "STOLTENBERG JAYDE", - "timestamp": "2013-12-14" + "user": "BLICK JEANETTE", + "timestamp": "2016-03-29" }, { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "MURPHY JULIE", - "timestamp": "2022-02-08" + "user": "FAY ELEANORA", + "timestamp": "2018-08-19" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "DOUGLAS ANGELINE", - "timestamp": "2017-09-17" + "user": "KOELPIN SEAMUS", + "timestamp": "2020-06-24" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "GREENHOLT NICOLAS", - "timestamp": "2023-05-08" + "user": "ORN ADITYA", + "timestamp": "2018-06-16" } ], "associatedSites": [ { - "dateNoted": "2018-02-24", + "dateNoted": "2020-08-09", "notes": "", - "parcelID": "18009", - "siteID": "19043", + "parcelID": "19512", + "siteID": "18873", "siteRegistry": true } ] }, { - "uuid": "17daffdc-a1ac-44a5-9842-c5318b9e4366", - "siteID": 20314, - "address": "948 Becker Oval", - "latitude": 53.7228, - "longitude": -119.9601, - "lastUpdated": "2022-03-01", - "city": "Wehnerburgh", - "region": "Cariboo", - "victoriaFile": "26250-20/6632", + "uuid": "c68a15f8-3da9-45aa-9d53-02daa6c255c7", + "siteID": 20722, + "address": "5786 Monserrate Gardens", + "latitude": 51.9633, + "longitude": -129.6443, + "lastUpdated": "2022-04-21", + "city": "Alvenabury", + "region": " North Coast", + "victoriaFile": "26250-20/11821", "regionalFile": "N/A", "parcelIDs": [ - 2099852, - 613582, - 6975656, - 7947527, - 6350957 + 129322, + 8612144, + 9828261, + 3181930, + 2276263 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2023-07-12", - "completed": "2022-08-14", - "initiated": "2013-11-14", - "ministryContact": "GOODWIN-BASHIRIAN JESSE", + "createdAt": "2018-06-14", + "completed": "2020-05-17", + "initiated": "2016-12-05", + "ministryContact": "BAILEY EDWINA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -65360,74 +72094,24 @@ "" ], "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - } - ], - "siteRegistry": true - }, - { - "createdAt": "2022-06-08", - "completed": "2022-12-23", - "initiated": "2016-04-11", - "ministryContact": "BERNIER FAUSTINO", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false } ], "siteRegistry": true }, { - "createdAt": "2020-06-18", - "completed": "2020-10-22", - "initiated": "2017-12-29", - "ministryContact": "HACKETT EVIE", + "createdAt": "2016-05-20", + "completed": "2021-02-26", + "initiated": "2019-07-31", + "ministryContact": "HEIDENREICH GARRET", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -65445,11 +72129,6 @@ "role": "REQUESTED BY", "siteRegistry": true }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", @@ -65459,10 +72138,10 @@ "siteRegistry": true }, { - "createdAt": "2020-07-01", - "completed": "2020-11-09", - "initiated": "2021-04-24", - "ministryContact": "CASPER MARYAM", + "createdAt": "2015-02-05", + "completed": "2016-08-05", + "initiated": "2016-02-02", + "ministryContact": "BARROWS DOROTHY", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -65471,59 +72150,24 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true } ], "siteRegistry": true - }, - { - "createdAt": "2019-10-15", - "completed": "2018-04-19", - "initiated": "2020-07-10", - "ministryContact": "WUNSCH GENESIS", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - } - ], - "siteRegistry": false } ], "participants": [ { "name": "SHELL CANADA PRODUCTS", - "endDate": "2022-11-30", - "startDate": "2021-12-04", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": true - }, - { - "name": "IPSUM", - "endDate": "2018-09-11", - "startDate": "2015-05-27", + "endDate": "2019-07-30", + "startDate": "2013-10-21", "notes": "", "roles": [ "EMPLOYEE" @@ -65531,29 +72175,9 @@ "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2020-06-15", - "startDate": "2015-03-11", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2021-02-08", - "startDate": "2018-03-13", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": true - }, - { - "name": "IPSUM", - "endDate": "2015-01-27", - "startDate": "2023-05-09", + "name": "AMET, DOLOR SIT", + "endDate": "2014-10-04", + "startDate": "2020-12-31", "notes": "", "roles": [ "EMPLOYEE" @@ -65564,42 +72188,122 @@ "suspectLandUses": [ { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-08-30 (described on Site Profile dated 2017-08-30)", + "notes": "INSERTED FOR SITE PROFILE DATED 2017-07-04 (described on Site Profile dated 2017-07-04)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2021-04-23 (described on Site Profile dated 2021-04-23)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2014-07-27 (described on Site Profile dated 2014-07-27)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-10-08 (described on Site Profile dated 2018-10-08)", + "notes": "INSERTED FOR SITE PROFILE DATED 2020-02-07 (described on Site Profile dated 2020-02-07)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2016-05-08 (described on Site Profile dated 2016-05-08)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + } + ], + "parcelDescriptions": [ + { + "siteRegistry": false, + "dateNoted": "2015-01-30", + "parcelID": "20006", + "crownLandUsePIN": "15963", + "crownLandFileNumber": "16318", + "landDescription": "LOT 3 OF LOT 3 BLOCK 1 DISTRICT LOT 5 PLAN 2968" }, { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-05-12 (described on Site Profile dated 2021-05-12)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "dateNoted": "2014-06-14", + "parcelID": "19313", + "crownLandUsePIN": "17667", + "crownLandFileNumber": "20099", + "landDescription": "LOT 3 OF LOT 1 BLOCK 5 DISTRICT LOT 3 PLAN 5470" }, { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-09-17 (described on Site Profile dated 2018-09-17)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "dateNoted": "2017-02-15", + "parcelID": "15806", + "crownLandUsePIN": "17011", + "crownLandFileNumber": "19318", + "landDescription": "LOT 3 OF LOT 1 BLOCK 1 DISTRICT LOT 3 PLAN 9762" + }, + { + "siteRegistry": true, + "dateNoted": "2015-01-15", + "parcelID": "17094", + "crownLandUsePIN": "20159", + "crownLandFileNumber": "20263", + "landDescription": "LOT 1 OF LOT 4 BLOCK 3 DISTRICT LOT 5 PLAN 6312" + }, + { + "siteRegistry": false, + "dateNoted": "2015-05-05", + "parcelID": "18296", + "crownLandUsePIN": "20317", + "crownLandFileNumber": "17904", + "landDescription": "LOT 5 OF LOT 5 BLOCK 1 DISTRICT LOT 1 PLAN 8921" } ], "siteDisclosures": [ { - "siteRegistry": false, - "dateReceived": "2014-12-20", - "dateCompleted": "2019-11-29", - "dateEntered": "2017-04-01", - "dateRegistrar": "2018-08-30", - "dateLocalAuthorityReceived": "2022-01-08", - "summary": "Dolorum fuga esse.", - "informationUsed": "Quibusdam numquam nesciunt.\nAd quae laborum porro cumque esse cumque hic dolore incidunt.\nDistinctio ex quasi aut veritatis corrupti quisquam consequuntur.\nImpedit minima enim maxime tempora laborum fugiat provident ducimus excepturi.", - "pastOrPresentOrders": "Dignissimos provident fugit cum quod.\nDeserunt suscipit praesentium eligendi reprehenderit deleniti.\nAspernatur voluptatum at.", + "siteRegistry": true, + "dateReceived": "2019-12-21", + "dateCompleted": "2016-12-17", + "dateEntered": "2023-05-15", + "dateRegistrar": "2019-04-05", + "dateLocalAuthorityReceived": "2020-08-03", + "summary": "Accusantium perspiciatis occaecati voluptas quo adipisci deleniti nesciunt tempora rerum.\nAnimi placeat sunt eum magnam ut in dolor nesciunt officia.", + "informationUsed": "Perferendis quidem ipsam quidem modi aliquam ducimus repellendus veniam nisi.\nCumque quo impedit quo.\nMinus dignissimos fugiat ut.\nBlanditiis corrupti pariatur ex atque fugit maxime aperiam ipsa.\nLibero sequi eius nobis.", + "pastOrPresentOrders": "Recusandae facilis perferendis in mollitia laudantium perferendis culpa minima beatae.", "commercialAndIndustrialPurposes": [ { "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + } + ] + }, + { + "siteRegistry": false, + "dateReceived": "2021-12-12", + "dateCompleted": "2019-11-01", + "dateEntered": "2022-06-25", + "dateRegistrar": "2018-08-29", + "dateLocalAuthorityReceived": "2013-12-23", + "summary": "Nostrum unde earum cum vero fuga quas assumenda mollitia iure.\nAd reiciendis expedita nam odio.\nCorporis impedit sint commodi eum eum minima reprehenderit.", + "informationUsed": "Quod occaecati quos corporis.\nRepellat cumque ipsam quaerat vero minima saepe officia.\nAmet quo officiis facere nostrum et voluptate explicabo.\nVitae molestias quisquam odit nihil voluptatibus dolores esse dolorem alias.", + "pastOrPresentOrders": "Amet asperiores iste distinctio cum consequatur atque quam.\nPariatur iusto alias iste eos voluptate quasi quaerat laboriosam iste.\nIste quo occaecati molestiae occaecati corporis eos vero.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, { "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", @@ -65607,6 +72311,11 @@ }, { "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true } @@ -65615,115 +72324,102 @@ ], "activityLog": [ { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "WEHNER ERA", - "timestamp": "2014-01-11" - }, - { - "siteRegistry": true, + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "HILPERT MOLLIE", - "timestamp": "2022-04-21" + "user": "POUROS LULU", + "timestamp": "2019-06-06" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "JERDE LILIAN", - "timestamp": "2013-12-10" + "user": "BARTOLETTI CELESTINE", + "timestamp": "2019-04-05" }, { - "siteRegistry": true, + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "MONAHAN JERROLD", - "timestamp": "2022-04-10" + "user": "TREUTEL MORRIS", + "timestamp": "2019-02-12" }, { - "siteRegistry": true, + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "BODE JAQUAN", - "timestamp": "2019-11-12" + "user": "SKILES BRAXTON", + "timestamp": "2021-08-25" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "KEEBLER KYLER", - "timestamp": "2022-11-24" + "user": "MEDHURST KENYON", + "timestamp": "2015-03-21" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "SAUER JAIDA", - "timestamp": "2020-01-22" + "user": "WEST NILS", + "timestamp": "2018-04-05" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "KIHN RESSIE", - "timestamp": "2022-08-26" + "user": "PFANNERSTILL LIONEL", + "timestamp": "2014-09-08" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "O'HARA MALCOLM", - "timestamp": "2021-08-05" + "user": "WAELCHI RUTHIE", + "timestamp": "2013-10-18" }, { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "MAYERT AIDEN", - "timestamp": "2014-05-22" + "user": "WALSH DANIELLE", + "timestamp": "2022-04-26" } ], "associatedSites": [ { - "dateNoted": "2018-10-02", + "dateNoted": "2021-01-21", "notes": "", - "parcelID": "19946", - "siteID": "20891", + "parcelID": "19366", + "siteID": "16285", "siteRegistry": false }, { - "dateNoted": "2020-04-04", - "notes": "", - "parcelID": "18256", - "siteID": "16758", - "siteRegistry": true - }, - { - "dateNoted": "2022-03-06", + "dateNoted": "2016-05-16", "notes": "", - "parcelID": "19338", - "siteID": "16386", - "siteRegistry": true + "parcelID": "17562", + "siteID": "16890", + "siteRegistry": false } ] }, { - "uuid": "4a68027e-00e1-4a4d-80cc-854a191ee84f", - "siteID": 19200, - "address": "7475 Jeromy Landing", - "latitude": 52.4187, - "longitude": -136.4707, - "lastUpdated": "2016-09-19", - "city": "South Clara", - "region": "Thompson-Okanagan", - "victoriaFile": "26250-20/12817", + "uuid": "b3f74f04-4570-49bc-be10-28be17f77995", + "siteID": 17386, + "address": "58810 Granville Greens", + "latitude": 49.0504, + "longitude": -133.5564, + "lastUpdated": "2019-11-02", + "city": "Hollywood", + "region": "Kootenay", + "victoriaFile": "26250-20/8565", "regionalFile": "N/A", "parcelIDs": [ - 1032907, - 2437755, - 5733850, - 8145808, - 9366214 + 9955223, + 9107776, + 1136614, + 2635240, + 3483869 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2014-11-26", - "completed": "2015-02-21", - "initiated": "2020-09-14", - "ministryContact": "CARTER DERECK", + "createdAt": "2021-02-10", + "completed": "2018-08-26", + "initiated": "2016-10-08", + "ministryContact": "D'AMORE BRANDYN", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -65739,11 +72435,11 @@ { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true }, { @@ -65757,13 +72453,13 @@ "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2014-01-15", - "completed": "2023-01-06", - "initiated": "2022-06-23", - "ministryContact": "ZIEMANN ADAN", + "createdAt": "2019-11-06", + "completed": "2019-06-20", + "initiated": "2015-04-10", + "ministryContact": "CRUICKSHANK KAITLYN", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -65771,195 +72467,16 @@ "" ], "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, { "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - } - ], - "siteRegistry": false - } - ], - "participants": [ - { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2022-11-14", - "startDate": "2021-05-09", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2017-11-10", - "startDate": "2023-06-29", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": true - }, - { - "name": "AMET, DOLOR SIT", - "endDate": "2015-05-19", - "startDate": "2014-06-30", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2015-12-07", - "startDate": "2021-10-20", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2018-12-22", - "startDate": "2016-04-23", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": false - } - ], - "suspectLandUses": [ - { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2013-12-16 (described on Site Profile dated 2013-12-16)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" - }, - { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-10-25 (described on Site Profile dated 2017-10-25)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" - }, - { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-09-19 (described on Site Profile dated 2022-09-19)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" - } - ], - "siteDisclosures": [ - { - "siteRegistry": false, - "dateReceived": "2022-05-25", - "dateCompleted": "2018-07-27", - "dateEntered": "2023-04-25", - "dateRegistrar": "2022-12-05", - "dateLocalAuthorityReceived": "2020-01-20", - "summary": "Accusamus facere quam.\nEarum voluptatem molestias exercitationem dolorum aliquam alias.\nRecusandae expedita modi a eos consequatur suscipit sequi labore.", - "informationUsed": "Nam hic dolorum.\nMaiores animi rem magni deserunt.\nAccusamus cumque modi eius odit.", - "pastOrPresentOrders": "Id provident vitae vero vero aperiam laudantium.\nSit tempore nemo unde est.", - "commercialAndIndustrialPurposes": [ - { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "role": "REQUESTED BY", "siteRegistry": false }, { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": true - } - ] - } - ], - "activityLog": [ - { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "STANTON URSULA", - "timestamp": "2018-10-18" - }, - { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "MANTE LELIA", - "timestamp": "2017-03-19" - }, - { - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "KUHN CLARA", - "timestamp": "2020-01-17" - }, - { - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "BREKKE KAMERON", - "timestamp": "2015-09-19" - }, - { - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "REILLY DESMOND", - "timestamp": "2020-11-26" - } - ], - "associatedSites": [ - { - "dateNoted": "2016-06-29", - "notes": "", - "parcelID": "20999", - "siteID": "15785", - "siteRegistry": false - }, - { - "dateNoted": "2020-10-26", - "notes": "", - "parcelID": "16276", - "siteID": "16563", - "siteRegistry": true - } - ] - }, - { - "uuid": "2f0a4dc5-ee7f-42c2-9563-b1d99bbc6ec3", - "siteID": 18066, - "address": "2643 Watsica Rapids", - "latitude": 49.3016, - "longitude": -123.3807, - "lastUpdated": "2014-09-09", - "city": "East Dalton", - "region": "Mainland/Southwest", - "victoriaFile": "26250-20/16277", - "regionalFile": "N/A", - "parcelIDs": [ - 2631641, - 370881, - 4243301, - 2520843, - 7041913 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2020-12-23", - "completed": "2017-06-01", - "initiated": "2017-11-14", - "ministryContact": "ZULAUF MARCOS", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ + }, { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", @@ -65974,10 +72491,10 @@ "siteRegistry": true }, { - "createdAt": "2016-12-21", - "completed": "2019-07-24", - "initiated": "2017-03-08", - "ministryContact": "TRANTOW-LOWE CODY", + "createdAt": "2020-11-17", + "completed": "2018-11-25", + "initiated": "2015-12-29", + "ministryContact": "WILLIAMSON EMERALD", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -65987,22 +72504,22 @@ "notationParticipants": [ { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": false }, { @@ -66016,9 +72533,9 @@ ], "participants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2017-10-17", - "startDate": "2019-08-24", + "name": "IPSUM", + "endDate": "2020-10-16", + "startDate": "2017-07-24", "notes": "", "roles": [ "ORGANIZATION" @@ -66027,87 +72544,111 @@ }, { "name": "AMET, DOLOR SIT", - "endDate": "2015-09-20", - "startDate": "2017-03-07", + "endDate": "2016-04-30", + "startDate": "2018-07-05", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "name": "AMET, DOLOR SIT", + "endDate": "2022-07-14", + "startDate": "2018-03-28", "notes": "", "roles": [ "EMPLOYEE" ], "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2023-08-04", + "startDate": "2017-06-30", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true } ], "suspectLandUses": [ { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-02-13 (described on Site Profile dated 2018-02-13)", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2016-07-30 (described on Site Profile dated 2016-07-30)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-02-05 (described on Site Profile dated 2017-02-05)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "notes": "INSERTED FOR SITE PROFILE DATED 2015-11-05 (described on Site Profile dated 2015-11-05)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-01-13 (described on Site Profile dated 2014-01-13)", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2018-12-20 (described on Site Profile dated 2018-12-20)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + } + ], + "parcelDescriptions": [ + { + "siteRegistry": true, + "dateNoted": "2020-03-14", + "parcelID": "17066", + "crownLandUsePIN": "19007", + "crownLandFileNumber": "17881", + "landDescription": "LOT 1 OF LOT 1 BLOCK 3 DISTRICT LOT 3 PLAN 3852" }, { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-10-01 (described on Site Profile dated 2017-10-01)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "siteRegistry": true, + "dateNoted": "2021-05-19", + "parcelID": "15969", + "crownLandUsePIN": "18137", + "crownLandFileNumber": "18542", + "landDescription": "LOT 4 OF LOT 3 BLOCK 4 DISTRICT LOT 5 PLAN 8636" }, { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-11-28 (described on Site Profile dated 2015-11-28)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "dateNoted": "2016-10-18", + "parcelID": "17098", + "crownLandUsePIN": "15388", + "crownLandFileNumber": "18366", + "landDescription": "LOT 4 OF LOT 2 BLOCK 5 DISTRICT LOT 4 PLAN 5969" + }, + { + "siteRegistry": false, + "dateNoted": "2019-12-08", + "parcelID": "19287", + "crownLandUsePIN": "17569", + "crownLandFileNumber": "20163", + "landDescription": "LOT 5 OF LOT 3 BLOCK 1 DISTRICT LOT 2 PLAN 7377" + }, + { + "siteRegistry": false, + "dateNoted": "2016-06-17", + "parcelID": "16070", + "crownLandUsePIN": "16358", + "crownLandFileNumber": "16923", + "landDescription": "LOT 2 OF LOT 5 BLOCK 2 DISTRICT LOT 5 PLAN 6978" } ], "siteDisclosures": [ { "siteRegistry": false, - "dateReceived": "2019-03-11", - "dateCompleted": "2022-02-17", - "dateEntered": "2023-02-26", - "dateRegistrar": "2016-06-13", - "dateLocalAuthorityReceived": "2016-05-08", - "summary": "Beatae saepe accusantium ducimus officiis ex optio aut fugit.", - "informationUsed": "Corrupti distinctio consequatur officia laudantium.\nExpedita quibusdam libero tenetur eum perspiciatis.\nPraesentium officiis consectetur a nemo.\nVoluptatibus facere animi optio debitis officia omnis ipsum.\nTenetur fuga ut amet cupiditate incidunt.", - "pastOrPresentOrders": "Quia quaerat minima quibusdam porro distinctio quos dicta.\nOfficia dicta ex expedita perferendis nostrum.\nFacilis inventore tempora eum.", + "dateReceived": "2015-12-20", + "dateCompleted": "2021-03-22", + "dateEntered": "2021-12-21", + "dateRegistrar": "2015-01-06", + "dateLocalAuthorityReceived": "2019-05-28", + "summary": "Molestiae repellat optio doloribus.\nVoluptates cum suscipit at perferendis molestias iusto.", + "informationUsed": "Praesentium culpa molestiae molestias similique non magni autem accusantium est.\nAliquid facere cumque eligendi nesciunt deleniti ratione blanditiis maiores ad.\nNon consectetur aut.\nOfficiis nobis tenetur pariatur deserunt sapiente ipsum assumenda.", + "pastOrPresentOrders": "Totam repellendus quas deleniti.\nMagni pariatur quo.\nOdit tempore quasi aut quibusdam tempora iste.", "commercialAndIndustrialPurposes": [ { - "scheduleReference": "F2*", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false }, - { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false - }, - { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true - } - ] - }, - { - "siteRegistry": false, - "dateReceived": "2018-10-01", - "dateCompleted": "2023-08-14", - "dateEntered": "2017-05-26", - "dateRegistrar": "2023-06-18", - "dateLocalAuthorityReceived": "2021-05-29", - "summary": "Dolores cupiditate voluptatem id commodi voluptatem illo mollitia.", - "informationUsed": "Voluptatum esse velit similique possimus dolorum.\nPerferendis quasi suscipit eligendi minus nesciunt sunt aliquid fugiat.\nCorrupti tenetur quo vel nulla.\nCorporis laboriosam asperiores nisi enim error officia esse dolorem.\nOdit voluptatum optio quas rerum minus.", - "pastOrPresentOrders": "Enim qui quisquam cupiditate eos nobis.\nExcepturi dolorem eos dolores suscipit ipsam.", - "commercialAndIndustrialPurposes": [ - { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false - }, { "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", @@ -66120,88 +72661,88 @@ { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "PFANNERSTILL FREDDY", - "timestamp": "2018-02-23" + "user": "LUETTGEN REINA", + "timestamp": "2019-04-20" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "BERGSTROM DARRYL", - "timestamp": "2015-09-08" + "user": "UPTON CLEMENTINA", + "timestamp": "2022-07-23" }, { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "MANTE JAQUAN", - "timestamp": "2017-12-05" + "user": "MULLER CASANDRA", + "timestamp": "2020-01-01" }, { - "siteRegistry": true, + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "DUBUQUE DALLIN", - "timestamp": "2014-02-05" + "user": "PFANNERSTILL NOVELLA", + "timestamp": "2022-04-11" }, { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "O'KEEFE KIP", - "timestamp": "2014-01-13" + "user": "TROMP HOLLIE", + "timestamp": "2020-07-04" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "DARE WILLOW", - "timestamp": "2018-06-14" + "user": "CONNELLY CHASITY", + "timestamp": "2016-08-18" }, { - "siteRegistry": true, + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "WEISSNAT BARBARA", - "timestamp": "2021-01-19" + "user": "HESSEL LAVINA", + "timestamp": "2014-10-08" } ], "associatedSites": [ { - "dateNoted": "2016-07-31", + "dateNoted": "2014-03-24", "notes": "", - "parcelID": "15834", - "siteID": "18087", - "siteRegistry": false + "parcelID": "20293", + "siteID": "20992", + "siteRegistry": true }, { - "dateNoted": "2023-06-14", + "dateNoted": "2015-04-17", "notes": "", - "parcelID": "19879", - "siteID": "16504", + "parcelID": "18259", + "siteID": "19390", "siteRegistry": true } ] }, { - "uuid": "f5300801-51e8-43cd-b5a0-f045d3e68b44", - "siteID": 20320, - "address": "548 Jakubowski Crest", - "latitude": 48.0457, - "longitude": -134.7904, - "lastUpdated": "2022-06-12", - "city": "Pine Hills", - "region": " North Coast", - "victoriaFile": "26250-20/7610", + "uuid": "098d8631-f8d7-44a6-b0e9-03ac826b0534", + "siteID": 19041, + "address": "647 Labadie Street", + "latitude": 58.0622, + "longitude": -133.5732, + "lastUpdated": "2019-08-12", + "city": "Veumview", + "region": "Mainland/Southwest", + "victoriaFile": "26250-20/16439", "regionalFile": "N/A", "parcelIDs": [ - 2932333, - 7326430, - 4945586, - 9517176, - 1441093 + 3708874, + 9421065, + 8934974, + 9384203, + 1826132 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2020-10-06", - "completed": "2014-10-19", - "initiated": "2021-08-26", - "ministryContact": "OLSON ASHLEY", + "createdAt": "2022-11-14", + "completed": "2020-02-09", + "initiated": "2015-06-20", + "ministryContact": "WALTER CARLEY", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -66211,11 +72752,6 @@ "notationParticipants": [ { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false }, @@ -66223,55 +72759,15 @@ "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true } ], "siteRegistry": false }, { - "createdAt": "2018-02-04", - "completed": "2022-07-18", - "initiated": "2019-04-13", - "ministryContact": "O'KEEFE DEDRICK", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - } - ], - "siteRegistry": true - }, - { - "createdAt": "2021-07-05", - "completed": "2013-10-20", - "initiated": "2018-07-15", - "ministryContact": "WILLMS DOMINIC", + "createdAt": "2021-02-06", + "completed": "2017-12-15", + "initiated": "2017-06-01", + "ministryContact": "HARTMANN CIERRA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -66279,74 +72775,19 @@ "" ], "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - } - ], - "siteRegistry": false - }, - { - "createdAt": "2015-01-06", - "completed": "2021-11-25", - "initiated": "2018-11-13", - "ministryContact": "PRICE ORLAND", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ { "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - } - ], - "siteRegistry": false - }, - { - "createdAt": "2014-10-20", - "completed": "2022-10-01", - "initiated": "2017-03-18", - "ministryContact": "COLE-JASKOLSKI SHANY", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": true } ], @@ -66356,110 +72797,116 @@ "participants": [ { "name": "SHELL CANADA PRODUCTS", - "endDate": "2021-06-21", - "startDate": "2014-02-22", + "endDate": "2013-11-17", + "startDate": "2018-08-17", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true }, { - "name": "IPSUM", - "endDate": "2023-04-14", - "startDate": "2016-11-17", + "name": "AMET, DOLOR SIT", + "endDate": "2022-08-23", + "startDate": "2019-07-01", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2018-01-13", - "startDate": "2020-10-18", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2015-07-20", + "startDate": "2021-09-29", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false } ], "suspectLandUses": [ { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-10-18 (described on Site Profile dated 2019-10-18)", + "notes": "INSERTED FOR SITE PROFILE DATED 2022-11-09 (described on Site Profile dated 2022-11-09)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2023-06-07 (described on Site Profile dated 2023-06-07)", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2015-07-16 (described on Site Profile dated 2015-07-16)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" - }, + } + ], + "parcelDescriptions": [ { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2023-07-27 (described on Site Profile dated 2023-07-27)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "siteRegistry": true, + "dateNoted": "2020-12-22", + "parcelID": "16675", + "crownLandUsePIN": "20778", + "crownLandFileNumber": "16209", + "landDescription": "LOT 5 OF LOT 1 BLOCK 3 DISTRICT LOT 3 PLAN 4637" }, { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-12-27 (described on Site Profile dated 2017-12-27)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "dateNoted": "2019-07-09", + "parcelID": "17398", + "crownLandUsePIN": "19531", + "crownLandFileNumber": "20064", + "landDescription": "LOT 4 OF LOT 4 BLOCK 3 DISTRICT LOT 3 PLAN 8723" + }, + { + "siteRegistry": false, + "dateNoted": "2014-08-08", + "parcelID": "15402", + "crownLandUsePIN": "17969", + "crownLandFileNumber": "17353", + "landDescription": "LOT 4 OF LOT 3 BLOCK 1 DISTRICT LOT 2 PLAN 2960" } ], "siteDisclosures": [ { "siteRegistry": true, - "dateReceived": "2016-12-17", - "dateCompleted": "2017-06-11", - "dateEntered": "2015-03-11", - "dateRegistrar": "2018-12-09", - "dateLocalAuthorityReceived": "2019-11-29", - "summary": "Perspiciatis provident veritatis enim.\nMagnam aliquam inventore.\nConsequatur similique officiis earum sint deleniti molestiae.", - "informationUsed": "Laboriosam deleniti eaque.\nQuam quam reprehenderit eaque mollitia.\nPlaceat quod sequi sint quia nulla.", - "pastOrPresentOrders": "Optio ipsum minima atque.\nQuam cumque voluptas quibusdam tempora illo beatae nobis fugit perspiciatis.", + "dateReceived": "2018-03-02", + "dateCompleted": "2020-07-26", + "dateEntered": "2017-12-16", + "dateRegistrar": "2022-03-08", + "dateLocalAuthorityReceived": "2014-08-09", + "summary": "Sunt neque perferendis sed qui placeat necessitatibus cupiditate tempora dicta.", + "informationUsed": "Beatae dolores inventore.\nNisi nulla unde iste nesciunt ea dicta commodi.\nSequi ut maiores magni beatae quasi repellendus aspernatur nulla tempore.\nEarum rem quis consequatur provident.\nOdio in doloribus tenetur totam illum vero quas quae.", + "pastOrPresentOrders": "Veniam deserunt similique provident aspernatur.", "commercialAndIndustrialPurposes": [ - { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true - }, { "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true } ] }, { - "siteRegistry": true, - "dateReceived": "2016-01-27", - "dateCompleted": "2013-12-18", - "dateEntered": "2018-10-25", - "dateRegistrar": "2014-08-16", - "dateLocalAuthorityReceived": "2018-11-03", - "summary": "Exercitationem reiciendis fuga blanditiis tenetur fugiat eos corporis beatae.", - "informationUsed": "Pariatur soluta quasi earum error.\nNemo eum perspiciatis ea amet porro dicta nemo quisquam.\nDelectus ab consequatur voluptatem provident ducimus sed quidem accusantium sunt.", - "pastOrPresentOrders": "Beatae sunt numquam expedita placeat modi harum adipisci consequatur.", + "siteRegistry": false, + "dateReceived": "2016-04-07", + "dateCompleted": "2015-02-25", + "dateEntered": "2016-06-27", + "dateRegistrar": "2022-07-23", + "dateLocalAuthorityReceived": "2020-11-15", + "summary": "Magni totam doloremque nulla voluptatibus corporis.\nLaborum iste eveniet ullam optio.", + "informationUsed": "Architecto autem impedit.\nTotam ut omnis ut officiis ad in perspiciatis inventore delectus.\nEt ipsa nam autem minima excepturi quam provident consectetur.\nTotam id explicabo cumque.", + "pastOrPresentOrders": "Sed consectetur voluptatum odit eaque velit nostrum aliquam blanditiis.", "commercialAndIndustrialPurposes": [ { "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false }, - { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true - }, { "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true } ] @@ -66469,100 +72916,83 @@ { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "NADER BRAD", - "timestamp": "2021-02-26" - }, - { - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "ORN ANTWON", - "timestamp": "2015-07-06" + "user": "D'AMORE ROCIO", + "timestamp": "2018-12-14" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "WISOZK RACHAEL", - "timestamp": "2019-12-02" + "user": "TERRY CASSANDRA", + "timestamp": "2015-07-18" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "BINS DEJUAN", - "timestamp": "2015-08-22" - }, - { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "GLEICHNER MAGGIE", - "timestamp": "2015-10-13" - }, - { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "KUTCH BERNARD", - "timestamp": "2019-01-08" + "user": "FLATLEY GIOVANI", + "timestamp": "2021-05-14" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "FRANEY-SATTERFIELD ROCIO", - "timestamp": "2023-02-01" - }, - { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "LIND JACQUES", - "timestamp": "2019-03-26" + "user": "LYNCH KEON", + "timestamp": "2022-03-09" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "SCHUPPE STEVE", - "timestamp": "2022-10-26" + "user": "WALSH JARED", + "timestamp": "2015-02-27" } ], "associatedSites": [ { - "dateNoted": "2014-12-26", + "dateNoted": "2021-11-16", "notes": "", - "parcelID": "16084", - "siteID": "18849", + "parcelID": "18863", + "siteID": "19390", "siteRegistry": true }, { - "dateNoted": "2018-04-03", + "dateNoted": "2014-07-13", "notes": "", - "parcelID": "19207", - "siteID": "17218", + "parcelID": "20797", + "siteID": "19266", "siteRegistry": true + }, + { + "dateNoted": "2019-04-23", + "notes": "", + "parcelID": "19370", + "siteID": "18292", + "siteRegistry": false } ] }, { - "uuid": "b489746e-9581-438c-b5a7-70e4d12aba51", - "siteID": 16803, - "address": "70374 Rempel Ville", - "latitude": 51.0305, - "longitude": -138.058, - "lastUpdated": "2021-07-13", - "city": "Menifee", - "region": "Cariboo", - "victoriaFile": "26250-20/1275", + "uuid": "b2cdf4da-e081-4102-a5a2-a852b8f61768", + "siteID": 20970, + "address": "5823 Roob Creek", + "latitude": 51.445, + "longitude": -136.0119, + "lastUpdated": "2021-08-12", + "city": "Dublin", + "region": " North Coast", + "victoriaFile": "26250-20/11927", "regionalFile": "N/A", "parcelIDs": [ - 2955139, - 6557910, - 6164374, - 3054652, - 6144700 + 8022156, + 6167781, + 8931787, + 496016, + 2489539 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2019-04-10", - "completed": "2023-03-11", - "initiated": "2019-12-02", - "ministryContact": "HARTMANN-FRANEY IVAH", + "createdAt": "2015-01-10", + "completed": "2020-09-17", + "initiated": "2021-01-18", + "ministryContact": "RUSSEL CLAUDIE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -66570,54 +73000,19 @@ "" ], "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, { "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - } - ], - "siteRegistry": true - }, - { - "createdAt": "2022-10-23", - "completed": "2015-11-29", - "initiated": "2016-03-07", - "ministryContact": "HERMISTON GEOFFREY", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ { "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false + "role": "SUBMITTED BY", + "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false }, { @@ -66629,10 +73024,10 @@ "siteRegistry": false }, { - "createdAt": "2015-09-26", - "completed": "2019-11-11", - "initiated": "2021-01-30", - "ministryContact": "OLSON-PARKER ADRIENNE", + "createdAt": "2016-07-15", + "completed": "2016-11-19", + "initiated": "2023-09-30", + "ministryContact": "RAYNOR RUBIE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -66640,34 +73035,24 @@ "" ], "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, { "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2020-11-11", - "completed": "2018-11-12", - "initiated": "2019-04-27", - "ministryContact": "BOGAN HOLLIS", + "createdAt": "2015-04-10", + "completed": "2019-10-09", + "initiated": "2020-01-16", + "ministryContact": "AUFDERHAR JUSTON", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -66677,18 +73062,18 @@ "notationParticipants": [ { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", @@ -66696,13 +73081,13 @@ "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2018-04-03", - "completed": "2022-12-27", - "initiated": "2020-04-14", - "ministryContact": "HAYES JORDON", + "createdAt": "2023-09-09", + "completed": "2023-06-26", + "initiated": "2017-12-22", + "ministryContact": "SCHULIST ADAM", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -66711,9 +73096,9 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", @@ -66722,7 +73107,7 @@ }, { "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true } ], @@ -66732,8 +73117,8 @@ "participants": [ { "name": "IPSUM", - "endDate": "2021-06-20", - "startDate": "2023-06-07", + "endDate": "2020-09-07", + "startDate": "2016-01-30", "notes": "", "roles": [ "EMPLOYEE" @@ -66741,66 +73126,115 @@ "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2018-04-26", - "startDate": "2020-05-21", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2022-09-12", + "startDate": "2017-10-28", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": false + "siteRegistry": true } ], "suspectLandUses": [ { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-12-07 (described on Site Profile dated 2021-12-07)", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2018-09-27 (described on Site Profile dated 2018-09-27)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2018-11-07 (described on Site Profile dated 2018-11-07)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-02-09 (described on Site Profile dated 2021-02-09)", + "notes": "INSERTED FOR SITE PROFILE DATED 2018-03-11 (described on Site Profile dated 2018-03-11)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2019-03-16 (described on Site Profile dated 2019-03-16)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], - "siteDisclosures": [ + "parcelDescriptions": [ + { + "siteRegistry": true, + "dateNoted": "2017-01-27", + "parcelID": "17493", + "crownLandUsePIN": "16073", + "crownLandFileNumber": "20624", + "landDescription": "LOT 2 OF LOT 4 BLOCK 2 DISTRICT LOT 1 PLAN 4828" + }, + { + "siteRegistry": false, + "dateNoted": "2017-08-28", + "parcelID": "20903", + "crownLandUsePIN": "17826", + "crownLandFileNumber": "18935", + "landDescription": "LOT 1 OF LOT 1 BLOCK 3 DISTRICT LOT 1 PLAN 8205" + }, + { + "siteRegistry": true, + "dateNoted": "2020-11-22", + "parcelID": "19931", + "crownLandUsePIN": "19115", + "crownLandFileNumber": "15328", + "landDescription": "LOT 5 OF LOT 3 BLOCK 5 DISTRICT LOT 4 PLAN 4304" + }, { "siteRegistry": true, - "dateReceived": "2016-08-15", - "dateCompleted": "2016-10-03", - "dateEntered": "2015-10-29", - "dateRegistrar": "2014-05-03", - "dateLocalAuthorityReceived": "2022-06-25", - "summary": "Quidem deserunt dolore tempora rerum enim vel.\nConsequuntur neque minima voluptate perspiciatis soluta in doloribus.", - "informationUsed": "Architecto velit facere.\nQuae facere impedit magni.\nEa hic voluptatibus repellat nemo dicta mollitia.", - "pastOrPresentOrders": "Atque at impedit inventore.\nVel laboriosam assumenda commodi tenetur facilis voluptatum ipsa.\nUllam repellendus voluptatem.", + "dateNoted": "2016-07-10", + "parcelID": "20023", + "crownLandUsePIN": "18958", + "crownLandFileNumber": "19072", + "landDescription": "LOT 5 OF LOT 1 BLOCK 5 DISTRICT LOT 1 PLAN 8517" + } + ], + "siteDisclosures": [ + { + "siteRegistry": false, + "dateReceived": "2021-05-16", + "dateCompleted": "2020-05-21", + "dateEntered": "2015-08-14", + "dateRegistrar": "2016-05-05", + "dateLocalAuthorityReceived": "2017-12-05", + "summary": "Reiciendis iusto sint ex architecto aliquid voluptatem dolor doloribus ea.", + "informationUsed": "Sapiente reiciendis nisi sequi odit.\nHic hic nostrum consequuntur.\nNatus ex rerum earum perferendis.", + "pastOrPresentOrders": "Quod nemo eligendi non maxime.\nEligendi nemo ipsam vero.", "commercialAndIndustrialPurposes": [ { "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true + "siteRegistry": false }, { "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true } ] }, { - "siteRegistry": false, - "dateReceived": "2023-08-02", - "dateCompleted": "2021-06-11", - "dateEntered": "2022-07-02", - "dateRegistrar": "2014-03-17", - "dateLocalAuthorityReceived": "2017-06-26", - "summary": "Inventore qui blanditiis adipisci repellendus quas saepe.\nSimilique adipisci assumenda eos.\nIure iure recusandae suscipit dolore maxime repellat quisquam veritatis non.", - "informationUsed": "Cumque minus ullam voluptatum esse.\nIste quod fugit autem.\nMagnam commodi omnis magnam nostrum dolores iste.\nEa accusantium iste facilis aliquam eveniet excepturi quibusdam.\nCulpa accusantium atque doloribus.", - "pastOrPresentOrders": "Impedit magnam quasi fugit.\nTempore et quo.", + "siteRegistry": true, + "dateReceived": "2018-08-18", + "dateCompleted": "2019-10-26", + "dateEntered": "2017-01-25", + "dateRegistrar": "2017-07-30", + "dateLocalAuthorityReceived": "2022-03-09", + "summary": "Ab fugit eveniet delectus deserunt consectetur porro iste.\nExpedita accusamus libero voluptates dolores optio.", + "informationUsed": "Perspiciatis sequi pariatur soluta voluptas cum asperiores at harum exercitationem.\nQuia fuga doloremque quaerat quae ex.\nDolores repellendus itaque numquam debitis minima asperiores doloremque nam harum.", + "pastOrPresentOrders": "Quo ducimus dolorum atque labore.", "commercialAndIndustrialPurposes": [ { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, { @@ -66817,78 +73251,109 @@ } ], "activityLog": [ + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "MOEN CLAUDIA", + "timestamp": "2017-07-26" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "NICOLAS IMELDA", + "timestamp": "2018-09-19" + }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "DAUGHERTY PERRY", - "timestamp": "2014-10-07" + "user": "SPORER MATEO", + "timestamp": "2019-09-24" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "BREKKE AMPARO", + "timestamp": "2018-11-19" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "STROMAN ANDRE", - "timestamp": "2019-07-11" + "user": "JACOBI AFTON", + "timestamp": "2017-09-25" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "DAVIS ORVAL", - "timestamp": "2014-09-13" + "user": "PAGAC JORDAN", + "timestamp": "2015-05-17" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "PAGAC JAYCE", + "timestamp": "2019-04-29" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "CARTWRIGHT CANDICE", - "timestamp": "2013-11-25" + "user": "QUIGLEY-SCHROEDER MARCIA", + "timestamp": "2022-06-02" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "WARD ERYN", - "timestamp": "2020-12-10" + "user": "DIBBERT DEMOND", + "timestamp": "2020-08-14" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "RATKE ORAN", - "timestamp": "2020-04-04" + "user": "ROSENBAUM-DONNELLY SEAMUS", + "timestamp": "2017-10-15" } ], "associatedSites": [ { - "dateNoted": "2020-03-24", + "dateNoted": "2023-05-11", "notes": "", - "parcelID": "15577", - "siteID": "16715", + "parcelID": "17083", + "siteID": "15462", "siteRegistry": true + }, + { + "dateNoted": "2021-05-17", + "notes": "", + "parcelID": "15750", + "siteID": "17982", + "siteRegistry": false } ] }, { - "uuid": "ad02da2e-61ce-4008-b84a-d0b06472e759", - "siteID": 18733, - "address": "128 Lueilwitz Hill", - "latitude": 55.6907, - "longitude": -134.5072, - "lastUpdated": "2015-06-06", - "city": "San Mateo", - "region": "Cariboo", - "victoriaFile": "26250-20/9148", + "uuid": "3c98a92b-208a-4f89-8f2f-52c9ee0a3611", + "siteID": 17785, + "address": "197 Watsica Valley", + "latitude": 53.4978, + "longitude": -138.343, + "lastUpdated": "2019-08-15", + "city": "Port Dixie", + "region": "Mainland/Southwest", + "victoriaFile": "26250-20/4928", "regionalFile": "N/A", "parcelIDs": [ - 9346963, - 6321891, - 1488921, - 2046448, - 3615122 + 855951, + 8201093, + 3921618, + 8554526, + 3390029 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2014-08-07", - "completed": "2019-02-28", - "initiated": "2021-10-04", - "ministryContact": "CASSIN-HICKLE HENRIETTE", + "createdAt": "2017-11-27", + "completed": "2018-07-05", + "initiated": "2014-11-14", + "ministryContact": "HUDSON JAYLAN", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -66897,33 +73362,33 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, { "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2019-09-29", - "completed": "2022-06-24", - "initiated": "2019-09-03", - "ministryContact": "ROHAN ELSE", + "createdAt": "2013-11-10", + "completed": "2021-02-10", + "initiated": "2018-03-17", + "ministryContact": "SPENCER ISRAEL", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -66931,11 +73396,6 @@ "" ], "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", @@ -66943,41 +73403,71 @@ }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true + "role": "SUBMITTED BY", + "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true } ], "participants": [ + { + "name": "IPSUM", + "endDate": "2017-08-10", + "startDate": "2015-05-31", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2017-09-18", + "startDate": "2019-05-12", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, { "name": "SHELL CANADA PRODUCTS", - "endDate": "2023-06-09", - "startDate": "2016-05-27", + "endDate": "2022-08-12", + "startDate": "2022-07-22", "notes": "", "roles": [ "EMPLOYEE" ], "siteRegistry": false }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2014-03-23", + "startDate": "2016-10-27", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, { "name": "AMET, DOLOR SIT", - "endDate": "2020-03-13", - "startDate": "2014-10-27", + "endDate": "2014-01-14", + "startDate": "2021-07-25", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": false } @@ -66985,188 +73475,182 @@ "suspectLandUses": [ { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-12-30 (described on Site Profile dated 2021-12-30)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "notes": "INSERTED FOR SITE PROFILE DATED 2019-07-06 (described on Site Profile dated 2019-07-06)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-10-30 (described on Site Profile dated 2022-10-30)", + "notes": "INSERTED FOR SITE PROFILE DATED 2022-04-27 (described on Site Profile dated 2022-04-27)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + } + ], + "parcelDescriptions": [ + { + "siteRegistry": false, + "dateNoted": "2021-09-04", + "parcelID": "15384", + "crownLandUsePIN": "20188", + "crownLandFileNumber": "20696", + "landDescription": "LOT 3 OF LOT 2 BLOCK 5 DISTRICT LOT 5 PLAN 8593" }, { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-08-13 (described on Site Profile dated 2022-08-13)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "dateNoted": "2014-03-31", + "parcelID": "18687", + "crownLandUsePIN": "16890", + "crownLandFileNumber": "17150", + "landDescription": "LOT 1 OF LOT 5 BLOCK 3 DISTRICT LOT 3 PLAN 7474" }, { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-12-23 (described on Site Profile dated 2021-12-23)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "dateNoted": "2017-03-16", + "parcelID": "16859", + "crownLandUsePIN": "20446", + "crownLandFileNumber": "16570", + "landDescription": "LOT 3 OF LOT 3 BLOCK 3 DISTRICT LOT 2 PLAN 4641" }, { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-04-10 (described on Site Profile dated 2015-04-10)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "dateNoted": "2021-03-01", + "parcelID": "16309", + "crownLandUsePIN": "19430", + "crownLandFileNumber": "19095", + "landDescription": "LOT 2 OF LOT 4 BLOCK 2 DISTRICT LOT 5 PLAN 7133" } ], "siteDisclosures": [ { "siteRegistry": true, - "dateReceived": "2014-12-22", - "dateCompleted": "2022-04-16", - "dateEntered": "2016-07-21", - "dateRegistrar": "2019-05-21", - "dateLocalAuthorityReceived": "2017-12-27", - "summary": "Asperiores sint occaecati quia.\nOptio velit repellendus iste officiis soluta tempora porro nisi.\nProvident qui consequuntur corrupti fugiat cum.", - "informationUsed": "Quae odio soluta temporibus placeat et quia laboriosam.\nEligendi accusantium odio maxime.\nQuae repellendus temporibus.\nEaque doloremque tempore commodi tempore odit.", - "pastOrPresentOrders": "Itaque sed corrupti.\nAccusamus praesentium at atque odio.\nDignissimos voluptatem dignissimos repellat perferendis temporibus quam rerum ipsam sunt.", + "dateReceived": "2020-01-28", + "dateCompleted": "2015-06-26", + "dateEntered": "2023-04-26", + "dateRegistrar": "2022-06-21", + "dateLocalAuthorityReceived": "2021-06-07", + "summary": "Molestiae inventore error eligendi qui nulla.\nEt dicta esse nostrum.", + "informationUsed": "Totam odit expedita iure doloribus.\nError dolorem iusto corrupti.\nQuia vel quia.\nQuod adipisci occaecati harum.", + "pastOrPresentOrders": "Veniam nisi nemo.", "commercialAndIndustrialPurposes": [ { "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false + "siteRegistry": true }, { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false }, { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false - } - ] - }, - { - "siteRegistry": true, - "dateReceived": "2015-10-13", - "dateCompleted": "2020-07-30", - "dateEntered": "2021-06-04", - "dateRegistrar": "2021-07-28", - "dateLocalAuthorityReceived": "2019-08-18", - "summary": "Optio nulla ipsum.\nMolestias amet soluta maiores reprehenderit ipsam eius asperiores quia animi.\nNeque vero laborum voluptatum.", - "informationUsed": "Velit ullam ipsa nisi.\nRerum quo rerum ab.\nMinima minima facere.\nAliquam earum aperiam accusamus exercitationem et accusantium.", - "pastOrPresentOrders": "Quibusdam alias corporis.", - "commercialAndIndustrialPurposes": [ - { - "scheduleReference": "F2*", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { - "scheduleReference": "F2*", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true + "siteRegistry": false } ] } ], "activityLog": [ { - "siteRegistry": true, + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "BARTON JADA", - "timestamp": "2022-08-31" + "user": "SIMONIS DANNY", + "timestamp": "2023-01-03" }, { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "MAYERT SOFIA", - "timestamp": "2014-01-13" + "user": "BOGAN KAYLEIGH", + "timestamp": "2021-07-13" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "MACGYVER LEDA", - "timestamp": "2020-04-20" + "user": "PACOCHA DOLLY", + "timestamp": "2019-09-12" }, { - "siteRegistry": true, + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "KSHLERIN EARLENE", - "timestamp": "2019-07-28" + "user": "HEATHCOTE MORTIMER", + "timestamp": "2014-06-28" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "LEHNER ASHTYN", - "timestamp": "2018-11-15" + "user": "SCHULTZ MINA", + "timestamp": "2016-11-04" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "WALSH BROOKE", - "timestamp": "2021-11-17" + "user": "KESSLER BRAXTON", + "timestamp": "2021-04-03" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "SCHINNER CORRINE", - "timestamp": "2017-06-14" + "user": "KING MAIA", + "timestamp": "2019-12-21" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "JOHNSON CALLIE", - "timestamp": "2019-12-07" + "user": "ARMSTRONG LISETTE", + "timestamp": "2020-12-25" }, { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "STANTON LYDA", - "timestamp": "2023-09-05" + "user": "ARMSTRONG-SCHNEIDER ANASTASIA", + "timestamp": "2014-11-06" } ], "associatedSites": [ { - "dateNoted": "2022-08-02", - "notes": "", - "parcelID": "20004", - "siteID": "19506", - "siteRegistry": false - }, - { - "dateNoted": "2021-07-01", + "dateNoted": "2021-08-11", "notes": "", - "parcelID": "16754", - "siteID": "16504", + "parcelID": "18136", + "siteID": "18281", "siteRegistry": true }, { - "dateNoted": "2015-07-04", + "dateNoted": "2019-03-27", "notes": "", - "parcelID": "17534", - "siteID": "18790", - "siteRegistry": false + "parcelID": "16515", + "siteID": "18687", + "siteRegistry": true } ] }, { - "uuid": "909565dc-938b-4e49-88d0-d64074a40747", - "siteID": 15251, - "address": "697 Muhammad Forges", - "latitude": 51.9137, - "longitude": -135.6124, - "lastUpdated": "2022-03-21", - "city": "Feeneystead", - "region": "Vancouver Island/Coast", - "victoriaFile": "26250-20/11978", + "uuid": "339bd50c-9f00-4128-be2c-ba42e8982b8d", + "siteID": 16096, + "address": "68684 Mossie Key", + "latitude": 54.0796, + "longitude": -119.7949, + "lastUpdated": "2021-12-10", + "city": "West Stephonfield", + "region": "Thompson-Okanagan", + "victoriaFile": "26250-20/5393", "regionalFile": "N/A", "parcelIDs": [ - 4766835, - 3052584, - 8660407, - 6491423, - 2001244 + 3508387, + 7498084, + 1572013, + 7516528, + 2397850 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2015-06-26", - "completed": "2016-01-02", - "initiated": "2021-06-10", - "ministryContact": "WITTING TALIA", + "createdAt": "2017-01-08", + "completed": "2020-10-08", + "initiated": "2022-10-24", + "ministryContact": "RUNOLFSDOTTIR MAYRA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -67174,6 +73658,16 @@ "" ], "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", @@ -67186,17 +73680,17 @@ }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true + "role": "SUBMITTED BY", + "siteRegistry": false } ], "siteRegistry": false }, { - "createdAt": "2021-08-17", - "completed": "2020-09-13", - "initiated": "2014-05-04", - "ministryContact": "GREEN BRADLEY", + "createdAt": "2019-03-23", + "completed": "2017-05-11", + "initiated": "2021-11-06", + "ministryContact": "HOWELL STEFAN", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -67205,12 +73699,12 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false }, @@ -67219,6 +73713,11 @@ "role": "REQUESTED BY", "siteRegistry": true }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", @@ -67226,33 +73725,58 @@ } ], "siteRegistry": true + }, + { + "createdAt": "2018-10-06", + "completed": "2018-09-08", + "initiated": "2020-03-29", + "ministryContact": "WILKINSON DEAN", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false } ], "participants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2019-02-07", - "startDate": "2023-03-18", + "name": "AMET, DOLOR SIT", + "endDate": "2014-08-01", + "startDate": "2022-02-08", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": false + "siteRegistry": true }, { - "name": "AMET, DOLOR SIT", - "endDate": "2019-11-12", - "startDate": "2015-09-13", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2019-12-22", + "startDate": "2021-07-25", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": false + "siteRegistry": true }, { "name": "AMET, DOLOR SIT", - "endDate": "2019-06-20", - "startDate": "2018-05-09", + "endDate": "2022-10-31", + "startDate": "2020-04-26", "notes": "", "roles": [ "ORGANIZATION" @@ -67262,167 +73786,138 @@ ], "suspectLandUses": [ { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-11-16 (described on Site Profile dated 2019-11-16)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" - }, - { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-07-17 (described on Site Profile dated 2017-07-17)", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2023-06-28 (described on Site Profile dated 2023-06-28)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-11-08 (described on Site Profile dated 2018-11-08)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2023-02-20 (described on Site Profile dated 2023-02-20)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-11-30 (described on Site Profile dated 2019-11-30)", + "notes": "INSERTED FOR SITE PROFILE DATED 2014-04-16 (described on Site Profile dated 2014-04-16)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + } + ], + "parcelDescriptions": [ + { + "siteRegistry": false, + "dateNoted": "2014-01-13", + "parcelID": "16965", + "crownLandUsePIN": "18016", + "crownLandFileNumber": "16753", + "landDescription": "LOT 4 OF LOT 1 BLOCK 2 DISTRICT LOT 5 PLAN 7872" }, { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-10-01 (described on Site Profile dated 2014-10-01)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "siteRegistry": false, + "dateNoted": "2020-01-01", + "parcelID": "16237", + "crownLandUsePIN": "17749", + "crownLandFileNumber": "20802", + "landDescription": "LOT 3 OF LOT 2 BLOCK 1 DISTRICT LOT 5 PLAN 5107" } ], "siteDisclosures": [ { "siteRegistry": true, - "dateReceived": "2020-04-28", - "dateCompleted": "2021-10-03", - "dateEntered": "2015-11-29", - "dateRegistrar": "2019-10-06", - "dateLocalAuthorityReceived": "2022-09-11", - "summary": "Quod occaecati enim velit non odit magnam vitae animi cumque.\nEa deserunt optio at ipsam nesciunt pariatur quisquam.", - "informationUsed": "Eaque adipisci dicta quam porro natus ullam aut.\nVeritatis sapiente in nostrum ut possimus.\nAccusantium eaque iste hic laudantium sapiente hic facere.\nIure voluptatibus nesciunt velit non ea iste quidem sit quis.\nArchitecto soluta laborum dicta aliquid.", - "pastOrPresentOrders": "Ex repellendus aut.", + "dateReceived": "2022-10-27", + "dateCompleted": "2022-12-30", + "dateEntered": "2020-12-25", + "dateRegistrar": "2014-12-17", + "dateLocalAuthorityReceived": "2018-11-12", + "summary": "Placeat ex excepturi officiis alias qui molestiae iure.\nAut modi vero incidunt sequi cupiditate.", + "informationUsed": "Dignissimos ex quo quo cum quos illum sunt sunt.\nAut voluptatibus est odit magni officiis.\nConsequatur corrupti impedit dignissimos laborum ullam aliquid.", + "pastOrPresentOrders": "Ipsam officia eum sed dolor.\nHarum eius reiciendis aspernatur hic repellat accusamus.", "commercialAndIndustrialPurposes": [ { "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false - }, - { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true - }, - { - "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true - } - ] - }, - { - "siteRegistry": true, - "dateReceived": "2016-08-10", - "dateCompleted": "2019-03-02", - "dateEntered": "2014-08-23", - "dateRegistrar": "2022-04-23", - "dateLocalAuthorityReceived": "2020-02-05", - "summary": "Quae asperiores eligendi necessitatibus.\nOdio earum aliquam neque optio reiciendis.", - "informationUsed": "Autem expedita porro aperiam vel nulla.\nTempore atque natus rem dicta quaerat.\nIpsum recusandae facere officia eum sit libero numquam.\nCulpa neque id nisi consectetur error eaque vitae soluta.", - "pastOrPresentOrders": "Distinctio praesentium voluptatibus exercitationem nostrum odio.", - "commercialAndIndustrialPurposes": [ - { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false }, { "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false - }, - { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true - }, - { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true } ] } ], "activityLog": [ { - "siteRegistry": true, + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "JAKUBOWSKI ALFREDA", - "timestamp": "2020-07-28" + "user": "RATH IVAH", + "timestamp": "2017-11-07" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "TREMBLAY BETH", - "timestamp": "2014-11-12" + "user": "LITTLE STERLING", + "timestamp": "2022-01-30" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "WINTHEISER MARJORIE", - "timestamp": "2021-09-22" + "user": "LITTEL MARCELLUS", + "timestamp": "2018-01-13" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "CORKERY MATHIAS", - "timestamp": "2017-06-27" + "user": "MOORE JEROMY", + "timestamp": "2022-03-17" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "LEBSACK ROWLAND", - "timestamp": "2017-08-23" - }, - { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "QUITZON LULU", - "timestamp": "2016-07-17" + "user": "PFEFFER FILIBERTO", + "timestamp": "2023-05-13" } ], "associatedSites": [ { - "dateNoted": "2018-02-18", + "dateNoted": "2016-01-22", "notes": "", - "parcelID": "20032", - "siteID": "19103", - "siteRegistry": true + "parcelID": "15569", + "siteID": "17828", + "siteRegistry": false + }, + { + "dateNoted": "2014-04-02", + "notes": "", + "parcelID": "17563", + "siteID": "17110", + "siteRegistry": false } ] }, { - "uuid": "78dd8522-cfa9-4472-a0b9-2cc212763b02", - "siteID": 18201, - "address": "906 Adolphus Common", - "latitude": 52.4233, - "longitude": -133.2931, - "lastUpdated": "2021-03-26", - "city": "Schmelerchester", - "region": "Thompson-Okanagan", - "victoriaFile": "26250-20/19394", + "uuid": "76464aa9-6e5d-425d-9d4a-69e88c0f8930", + "siteID": 20268, + "address": "593 Denis Tunnel", + "latitude": 51.7803, + "longitude": -132.2195, + "lastUpdated": "2015-05-28", + "city": "North Oral", + "region": " North Coast", + "victoriaFile": "26250-20/3741", "regionalFile": "N/A", "parcelIDs": [ - 370855, - 1688814, - 6474102, - 9474135, - 8776889 + 5796244, + 3101503, + 8899572, + 4417647, + 2506471 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2015-06-03", - "completed": "2020-06-14", - "initiated": "2021-08-25", - "ministryContact": "OBERBRUNNER MARLEE", + "createdAt": "2017-12-15", + "completed": "2018-08-22", + "initiated": "2019-12-01", + "ministryContact": "KLEIN JAVONTE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -67440,29 +73935,19 @@ "role": "REQUESTED BY", "siteRegistry": false }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2015-05-13", - "completed": "2019-11-30", - "initiated": "2021-03-01", - "ministryContact": "JOHNS KAYDEN", + "createdAt": "2015-07-25", + "completed": "2017-02-11", + "initiated": "2021-10-31", + "ministryContact": "BAYER LACY", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -67470,50 +73955,15 @@ "" ], "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - } - ], - "siteRegistry": true - }, - { - "createdAt": "2015-06-03", - "completed": "2019-11-06", - "initiated": "2019-03-31", - "ministryContact": "WINDLER OTHA", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false } ], "siteRegistry": false @@ -67522,18 +73972,8 @@ "participants": [ { "name": "IPSUM", - "endDate": "2014-07-09", - "startDate": "2019-06-29", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2020-04-22", - "startDate": "2021-04-12", + "endDate": "2022-12-14", + "startDate": "2020-09-05", "notes": "", "roles": [ "ORGANIZATION" @@ -67542,18 +73982,8 @@ }, { "name": "SHELL CANADA PRODUCTS", - "endDate": "2016-05-05", - "startDate": "2023-04-05", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2018-04-07", - "startDate": "2021-07-07", + "endDate": "2015-04-23", + "startDate": "2017-03-01", "notes": "", "roles": [ "ORGANIZATION" @@ -67562,138 +73992,198 @@ } ], "suspectLandUses": [ + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2020-06-29 (described on Site Profile dated 2020-06-29)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-09-19 (described on Site Profile dated 2015-09-19)", + "notes": "INSERTED FOR SITE PROFILE DATED 2016-01-31 (described on Site Profile dated 2016-01-31)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + } + ], + "parcelDescriptions": [ + { + "siteRegistry": true, + "dateNoted": "2017-06-05", + "parcelID": "19096", + "crownLandUsePIN": "18000", + "crownLandFileNumber": "17839", + "landDescription": "LOT 1 OF LOT 4 BLOCK 4 DISTRICT LOT 1 PLAN 5202" }, { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2020-05-29 (described on Site Profile dated 2020-05-29)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "dateNoted": "2017-02-16", + "parcelID": "16215", + "crownLandUsePIN": "16284", + "crownLandFileNumber": "17554", + "landDescription": "LOT 4 OF LOT 3 BLOCK 4 DISTRICT LOT 2 PLAN 7484" + }, + { + "siteRegistry": false, + "dateNoted": "2023-01-20", + "parcelID": "18166", + "crownLandUsePIN": "18811", + "crownLandFileNumber": "20276", + "landDescription": "LOT 1 OF LOT 3 BLOCK 3 DISTRICT LOT 5 PLAN 5921" }, { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-03-28 (described on Site Profile dated 2018-03-28)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "dateNoted": "2023-01-20", + "parcelID": "15959", + "crownLandUsePIN": "15805", + "crownLandFileNumber": "16353", + "landDescription": "LOT 3 OF LOT 1 BLOCK 2 DISTRICT LOT 4 PLAN 8424" + }, + { + "siteRegistry": true, + "dateNoted": "2021-04-18", + "parcelID": "15331", + "crownLandUsePIN": "15671", + "crownLandFileNumber": "16128", + "landDescription": "LOT 4 OF LOT 3 BLOCK 1 DISTRICT LOT 3 PLAN 6333" } ], "siteDisclosures": [ { "siteRegistry": false, - "dateReceived": "2013-10-13", - "dateCompleted": "2021-12-23", - "dateEntered": "2020-08-21", - "dateRegistrar": "2019-09-09", - "dateLocalAuthorityReceived": "2021-05-11", - "summary": "Impedit magnam doloribus possimus aspernatur odio tempora molestiae illum.\nOdio soluta voluptatem aliquid illum repellat eligendi aut earum.", - "informationUsed": "Inventore voluptas illo adipisci sapiente optio cum at molestiae provident.\nVeniam incidunt assumenda.\nNisi ad facilis pariatur.", - "pastOrPresentOrders": "Dolorum fugit dolor dolore officiis.", + "dateReceived": "2022-01-03", + "dateCompleted": "2022-01-02", + "dateEntered": "2023-09-28", + "dateRegistrar": "2016-07-08", + "dateLocalAuthorityReceived": "2013-12-07", + "summary": "Optio minima odit asperiores similique.", + "informationUsed": "Laboriosam quos commodi voluptas.\nVero voluptas culpa quo quo perferendis nostrum quod.\nNulla impedit delectus eaque.", + "pastOrPresentOrders": "Magnam debitis animi porro facere velit exercitationem.", "commercialAndIndustrialPurposes": [ { "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true }, { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false }, { - "scheduleReference": "F2*", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false + "siteRegistry": true + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true } ] } ], "activityLog": [ + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "BLICK JAMAR", + "timestamp": "2014-09-19" + }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "SAWAYN ADRIEL", - "timestamp": "2019-06-10" + "user": "THIEL RYLAN", + "timestamp": "2014-12-21" }, { - "siteRegistry": true, + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "CONNELLY MELYNA", - "timestamp": "2020-01-21" + "user": "WINTHEISER-QUIGLEY ARDELLA", + "timestamp": "2018-06-27" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "KOVACEK ADELINE", - "timestamp": "2021-06-25" + "user": "DICKINSON-LARKIN BETTE", + "timestamp": "2017-09-30" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "HANSEN THORA", + "timestamp": "2016-11-29" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "MANTE ALEXANDER", - "timestamp": "2021-08-27" + "user": "TROMP BRIAN", + "timestamp": "2018-03-10" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "DIETRICH NIKKO", + "timestamp": "2021-07-04" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "STROSIN KIAN", - "timestamp": "2014-08-13" + "user": "EFFERTZ HAL", + "timestamp": "2017-01-29" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "WARD TRENTON", - "timestamp": "2018-12-26" + "user": "STRACKE GARFIELD", + "timestamp": "2018-04-20" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "KOEPP SYDNIE", - "timestamp": "2020-04-20" + "user": "ONDRICKA DULCE", + "timestamp": "2023-06-24" } ], "associatedSites": [ { - "dateNoted": "2018-03-08", + "dateNoted": "2014-04-16", "notes": "", - "parcelID": "20043", - "siteID": "17078", - "siteRegistry": false + "parcelID": "19389", + "siteID": "19044", + "siteRegistry": true }, { - "dateNoted": "2021-05-12", + "dateNoted": "2016-01-16", "notes": "", - "parcelID": "17617", - "siteID": "20521", - "siteRegistry": false + "parcelID": "19071", + "siteID": "17483", + "siteRegistry": true } ] }, { - "uuid": "9fe4d185-1b96-4325-903e-b7cfcd7ced3d", - "siteID": 17568, - "address": "279 Deron Spurs", - "latitude": 55.9004, - "longitude": -128.2951, - "lastUpdated": "2014-08-24", - "city": "Virginia Beach", - "region": "Kootenay", - "victoriaFile": "26250-20/7482", + "uuid": "e022a453-5532-49bc-9cf0-4e4aeac8334f", + "siteID": 15493, + "address": "5238 Avis Crossing", + "latitude": 58.4773, + "longitude": -118.811, + "lastUpdated": "2022-01-24", + "city": "Stoltenbergville", + "region": " North Coast", + "victoriaFile": "26250-20/7837", "regionalFile": "N/A", "parcelIDs": [ - 127563, - 8621019, - 1294960, - 3032950, - 8386156 + 1882109, + 7665285, + 7581378, + 9385942, + 4899767 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2020-12-19", - "completed": "2017-09-19", - "initiated": "2017-06-22", - "ministryContact": "BEAHAN DESMOND", + "createdAt": "2020-06-08", + "completed": "2017-02-23", + "initiated": "2020-07-31", + "ministryContact": "TOY AUSTIN", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -67703,13 +74193,43 @@ "notationParticipants": [ { "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true + "role": "REQUESTED BY", + "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "createdAt": "2015-06-28", + "completed": "2023-09-08", + "initiated": "2016-06-12", + "ministryContact": "LITTEL RALPH", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", @@ -67717,23 +74237,28 @@ "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false } ], "siteRegistry": true }, { - "createdAt": "2014-04-15", - "completed": "2023-05-19", - "initiated": "2017-09-17", - "ministryContact": "TOY JOEY", + "createdAt": "2017-09-20", + "completed": "2023-02-23", + "initiated": "2021-09-08", + "ministryContact": "DIBBERT SILAS", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -67743,8 +74268,8 @@ "notationParticipants": [ { "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true + "role": "SUBMITTED BY", + "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", @@ -67755,15 +74280,25 @@ "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false } ], "siteRegistry": true }, { - "createdAt": "2014-10-19", - "completed": "2023-07-28", - "initiated": "2021-08-10", - "ministryContact": "PAGAC DEDRIC", + "createdAt": "2020-06-09", + "completed": "2021-01-20", + "initiated": "2021-06-14", + "ministryContact": "KILBACK LUCIUS", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -67771,55 +74306,55 @@ "" ], "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, { "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true } ], "participants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2021-08-29", - "startDate": "2021-06-23", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2020-01-30", - "startDate": "2016-02-01", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2019-09-26", + "startDate": "2014-02-28", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2017-06-22", - "startDate": "2015-02-23", + "name": "IPSUM", + "endDate": "2021-01-08", + "startDate": "2014-07-08", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true }, { - "name": "IPSUM", - "endDate": "2014-10-08", - "startDate": "2018-02-13", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2014-02-05", + "startDate": "2014-07-23", "notes": "", "roles": [ "EMPLOYEE" @@ -67827,45 +74362,115 @@ "siteRegistry": false }, { - "name": "IPSUM", - "endDate": "2022-11-29", - "startDate": "2021-10-14", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2021-04-15", + "startDate": "2015-05-09", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": true + "siteRegistry": false } ], "suspectLandUses": [ { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-01-27 (described on Site Profile dated 2018-01-27)", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2021-09-29 (described on Site Profile dated 2021-09-29)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2023-09-21 (described on Site Profile dated 2023-09-21)", + "notes": "INSERTED FOR SITE PROFILE DATED 2019-01-26 (described on Site Profile dated 2019-01-26)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], + "parcelDescriptions": [ + { + "siteRegistry": false, + "dateNoted": "2014-10-04", + "parcelID": "18571", + "crownLandUsePIN": "18073", + "crownLandFileNumber": "17555", + "landDescription": "LOT 5 OF LOT 2 BLOCK 1 DISTRICT LOT 5 PLAN 3801" + }, + { + "siteRegistry": false, + "dateNoted": "2016-10-28", + "parcelID": "17433", + "crownLandUsePIN": "19435", + "crownLandFileNumber": "20809", + "landDescription": "LOT 1 OF LOT 5 BLOCK 1 DISTRICT LOT 5 PLAN 6959" + }, + { + "siteRegistry": true, + "dateNoted": "2019-11-06", + "parcelID": "19511", + "crownLandUsePIN": "17505", + "crownLandFileNumber": "17051", + "landDescription": "LOT 5 OF LOT 5 BLOCK 4 DISTRICT LOT 1 PLAN 4055" + }, + { + "siteRegistry": false, + "dateNoted": "2015-02-25", + "parcelID": "15941", + "crownLandUsePIN": "20736", + "crownLandFileNumber": "16545", + "landDescription": "LOT 2 OF LOT 5 BLOCK 5 DISTRICT LOT 4 PLAN 7051" + }, + { + "siteRegistry": false, + "dateNoted": "2015-06-18", + "parcelID": "17207", + "crownLandUsePIN": "20992", + "crownLandFileNumber": "17324", + "landDescription": "LOT 2 OF LOT 1 BLOCK 2 DISTRICT LOT 1 PLAN 8742" + } + ], "siteDisclosures": [ { "siteRegistry": true, - "dateReceived": "2020-12-31", - "dateCompleted": "2020-08-01", - "dateEntered": "2020-02-11", - "dateRegistrar": "2019-06-12", - "dateLocalAuthorityReceived": "2018-04-12", - "summary": "Repellat sed cumque dolores at.\nEius odit vel reiciendis sequi adipisci error asperiores ut.\nIllo facere quia deleniti dolorum laudantium eum.", - "informationUsed": "Provident dolor expedita et repudiandae optio.\nSit nulla consequuntur aperiam perferendis.\nNam aliquam deleniti aliquid cum accusamus beatae.\nExplicabo quasi tempore sit inventore tenetur inventore assumenda.\nCum vel minima repellat.", - "pastOrPresentOrders": "Consequuntur aspernatur laboriosam incidunt nihil.\nTenetur placeat totam ab.", + "dateReceived": "2023-02-18", + "dateCompleted": "2022-11-05", + "dateEntered": "2016-05-15", + "dateRegistrar": "2016-09-09", + "dateLocalAuthorityReceived": "2017-06-09", + "summary": "Quasi dolor molestiae natus tempore ipsa.\nIllum quidem ad voluptatem numquam qui reprehenderit iste consequatur dolorem.", + "informationUsed": "Doloribus repellendus iste vitae.\nEum vero alias eum incidunt.\nIste officiis consequuntur neque maxime est incidunt eius ex.\nAliquam non ea nisi perspiciatis.", + "pastOrPresentOrders": "Impedit facilis quas quidem odit.", "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, { "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + } + ] + }, + { + "siteRegistry": false, + "dateReceived": "2018-05-21", + "dateCompleted": "2015-01-04", + "dateEntered": "2020-10-01", + "dateRegistrar": "2019-10-31", + "dateLocalAuthorityReceived": "2015-11-23", + "summary": "In aspernatur dignissimos incidunt recusandae maiores.\nEveniet nesciunt distinctio consectetur similique deleniti esse omnis tempore.", + "informationUsed": "Eius provident tempore possimus blanditiis explicabo ea eveniet.\nEum dignissimos iste.\nMinus tempore nam.\nAd dignissimos occaecati vero facere modi accusantium perspiciatis quas perspiciatis.\nDeserunt nam itaque natus facere cumque fuga.", + "pastOrPresentOrders": "Tenetur excepturi voluptatibus omnis impedit tempora unde.\nHarum officia nesciunt consectetur nostrum libero quibusdam repudiandae.", + "commercialAndIndustrialPurposes": [ { "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", @@ -67874,96 +74479,121 @@ { "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true + "siteRegistry": false }, { - "scheduleReference": "F1*", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true + "siteRegistry": false } ] } ], "activityLog": [ { - "siteRegistry": true, + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "ALTENWERTH AILEEN", - "timestamp": "2017-09-29" + "user": "SCHMIDT DUANE", + "timestamp": "2018-04-01" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "BRADTKE NATHANIEL", - "timestamp": "2017-01-13" + "user": "JOHNS ZANE", + "timestamp": "2014-09-25" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "BASHIRIAN CARLIE", + "timestamp": "2022-08-01" }, { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "KUHN ANDREW", - "timestamp": "2021-11-15" + "user": "KLEIN PEYTON", + "timestamp": "2018-05-07" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "HANSEN ABEL", + "timestamp": "2017-01-23" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "PAGAC WILBERT", - "timestamp": "2022-12-06" + "user": "MACEJKOVIC VERN", + "timestamp": "2014-06-06" + }, + { + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "ZIEME MALLIE", + "timestamp": "2019-03-21" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "SCHADEN CORNELL", - "timestamp": "2022-03-06" + "user": "HOPPE JEREMIE", + "timestamp": "2017-09-07" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "ZULAUF ROSELYN", - "timestamp": "2019-06-04" + "user": "CRIST ALEEN", + "timestamp": "2018-12-15" } ], "associatedSites": [ { - "dateNoted": "2018-10-21", + "dateNoted": "2015-06-08", "notes": "", - "parcelID": "17140", - "siteID": "16509", - "siteRegistry": false + "parcelID": "18522", + "siteID": "20722", + "siteRegistry": true }, { - "dateNoted": "2020-02-02", + "dateNoted": "2015-01-05", "notes": "", - "parcelID": "15273", - "siteID": "17249", + "parcelID": "19214", + "siteID": "17017", + "siteRegistry": true + }, + { + "dateNoted": "2017-04-14", + "notes": "", + "parcelID": "17357", + "siteID": "16392", "siteRegistry": false } ] }, { - "uuid": "54410957-58d9-441d-b6d7-752d55e56d53", - "siteID": 16552, - "address": "494 Marks Spurs", - "latitude": 55.4236, - "longitude": -138.4225, - "lastUpdated": "2020-08-05", - "city": "New Aliside", - "region": "Vancouver Island/Coast", - "victoriaFile": "26250-20/9842", + "uuid": "f82668c7-210a-440a-8ade-2ecb4aaed5bd", + "siteID": 19346, + "address": "899 Dare Forges", + "latitude": 48.9122, + "longitude": -120.9673, + "lastUpdated": "2015-03-11", + "city": "Gleasonview", + "region": "Cariboo", + "victoriaFile": "26250-20/8292", "regionalFile": "N/A", "parcelIDs": [ - 3523117, - 7705649, - 416977, - 3036566, - 9861219 + 7510192, + 8807058, + 8502392, + 6969073, + 8663270 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2014-01-14", - "completed": "2016-02-11", - "initiated": "2019-10-31", - "ministryContact": "HAMMES STANFORD", + "createdAt": "2014-09-28", + "completed": "2019-02-15", + "initiated": "2014-11-13", + "ministryContact": "ZIEME MELYNA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -67972,38 +74602,23 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2019-08-25", - "completed": "2021-11-10", - "initiated": "2020-02-17", - "ministryContact": "WAELCHI KARINE", + "createdAt": "2013-10-21", + "completed": "2015-12-21", + "initiated": "2016-08-03", + "ministryContact": "BOGAN SHANY", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -68012,24 +74627,44 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "createdAt": "2018-03-02", + "completed": "2017-08-11", + "initiated": "2019-03-26", + "ministryContact": "O'HARA EULA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", @@ -68042,64 +74677,129 @@ ], "participants": [ { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2021-10-30", - "startDate": "2021-02-20", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2018-06-22", + "startDate": "2021-10-13", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2018-11-08", - "startDate": "2015-07-03", + "name": "AMET, DOLOR SIT", + "endDate": "2017-01-21", + "startDate": "2021-07-28", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2019-09-28", - "startDate": "2015-10-11", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": false } ], "suspectLandUses": [ { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-08-28 (described on Site Profile dated 2017-08-28)", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2014-03-27 (described on Site Profile dated 2014-03-27)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-05-17 (described on Site Profile dated 2015-05-17)", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2018-05-05 (described on Site Profile dated 2018-05-05)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-06-07 (described on Site Profile dated 2014-06-07)", + "notes": "INSERTED FOR SITE PROFILE DATED 2019-11-29 (described on Site Profile dated 2019-11-29)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2022-04-07 (described on Site Profile dated 2022-04-07)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2016-08-22 (described on Site Profile dated 2016-08-22)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + } + ], + "parcelDescriptions": [ + { + "siteRegistry": true, + "dateNoted": "2022-06-23", + "parcelID": "17676", + "crownLandUsePIN": "17414", + "crownLandFileNumber": "19684", + "landDescription": "LOT 3 OF LOT 4 BLOCK 1 DISTRICT LOT 3 PLAN 5468" + }, + { + "siteRegistry": false, + "dateNoted": "2019-08-06", + "parcelID": "16643", + "crownLandUsePIN": "15694", + "crownLandFileNumber": "19618", + "landDescription": "LOT 5 OF LOT 1 BLOCK 1 DISTRICT LOT 2 PLAN 8932" + }, + { + "siteRegistry": true, + "dateNoted": "2022-02-16", + "parcelID": "17575", + "crownLandUsePIN": "20270", + "crownLandFileNumber": "16712", + "landDescription": "LOT 5 OF LOT 4 BLOCK 4 DISTRICT LOT 4 PLAN 8135" + }, + { + "siteRegistry": false, + "dateNoted": "2022-11-22", + "parcelID": "16761", + "crownLandUsePIN": "16508", + "crownLandFileNumber": "18454", + "landDescription": "LOT 4 OF LOT 5 BLOCK 1 DISTRICT LOT 4 PLAN 3055" + }, + { + "siteRegistry": false, + "dateNoted": "2019-04-17", + "parcelID": "19106", + "crownLandUsePIN": "17853", + "crownLandFileNumber": "18647", + "landDescription": "LOT 5 OF LOT 3 BLOCK 1 DISTRICT LOT 2 PLAN 8205" } ], "siteDisclosures": [ + { + "siteRegistry": false, + "dateReceived": "2020-02-03", + "dateCompleted": "2014-09-22", + "dateEntered": "2016-05-29", + "dateRegistrar": "2019-02-01", + "dateLocalAuthorityReceived": "2021-10-21", + "summary": "Doloribus reprehenderit eligendi.", + "informationUsed": "Dignissimos incidunt culpa.\nDolores ab nisi itaque non.\nDicta dolorum inventore perferendis repudiandae iusto accusantium provident libero amet.\nAb quam est.\nVoluptas iste sint.", + "pastOrPresentOrders": "Quaerat porro aliquam.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + } + ] + }, { "siteRegistry": true, - "dateReceived": "2023-03-13", - "dateCompleted": "2020-05-27", - "dateEntered": "2018-04-22", - "dateRegistrar": "2016-10-06", - "dateLocalAuthorityReceived": "2022-11-19", - "summary": "Explicabo vero quis inventore doloremque.", - "informationUsed": "Similique necessitatibus quibusdam vero deserunt.\nMinima cum eaque aliquam laudantium placeat vitae.\nVeniam totam corporis consectetur consequuntur labore.\nRepudiandae dolorem necessitatibus molestias.", - "pastOrPresentOrders": "Animi modi perferendis expedita.", + "dateReceived": "2022-12-11", + "dateCompleted": "2014-05-07", + "dateEntered": "2017-04-22", + "dateRegistrar": "2016-04-16", + "dateLocalAuthorityReceived": "2022-04-30", + "summary": "Eligendi accusantium aperiam fuga culpa rem odit inventore.", + "informationUsed": "Earum voluptate ipsa dolore distinctio.\nTotam voluptate occaecati.\nIste veritatis harum laborum eaque a non ipsam.\nA placeat ducimus odio vel id non beatae facere doloribus.", + "pastOrPresentOrders": "Ratione dolor id quo ea.", "commercialAndIndustrialPurposes": [ { "scheduleReference": "F2*", @@ -68109,106 +74809,114 @@ { "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true - }, - { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, { "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true } ] } ], "activityLog": [ + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "ABERNATHY ESTHER", + "timestamp": "2018-12-11" + }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "HUELS TATE", - "timestamp": "2014-09-21" + "user": "WALKER LEO", + "timestamp": "2015-11-20" }, { - "siteRegistry": true, + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "LANGOSH KIMBERLY", - "timestamp": "2014-01-16" + "user": "KIRLIN AUGUSTA", + "timestamp": "2020-01-26" }, { - "siteRegistry": true, + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "CONSIDINE PEGGIE", - "timestamp": "2022-04-14" + "user": "ROMAGUERA-BREKKE ANGIE", + "timestamp": "2017-02-08" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "REICHERT MOHAMMAD", - "timestamp": "2017-08-23" + "user": "HERMISTON LOTTIE", + "timestamp": "2015-10-10" }, { - "siteRegistry": true, + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "SKILES KAELYN", - "timestamp": "2018-08-25" + "user": "STEUBER AHMED", + "timestamp": "2022-05-28" }, { - "siteRegistry": true, + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "HALVORSON LYLA", - "timestamp": "2022-06-11" + "user": "LEFFLER BERENICE", + "timestamp": "2020-06-15" }, { - "siteRegistry": true, + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "LEMKE TRACY", - "timestamp": "2015-10-02" + "user": "ROMAGUERA MICHELLE", + "timestamp": "2023-05-29" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "GOTTLIEB CORTEZ", - "timestamp": "2022-07-18" + "user": "BEATTY DEMETRIUS", + "timestamp": "2020-10-15" } ], "associatedSites": [ { - "dateNoted": "2020-03-22", + "dateNoted": "2019-03-30", "notes": "", - "parcelID": "16776", - "siteID": "17774", - "siteRegistry": true + "parcelID": "20946", + "siteID": "16853", + "siteRegistry": false + }, + { + "dateNoted": "2019-10-22", + "notes": "", + "parcelID": "16138", + "siteID": "16960", + "siteRegistry": false } ] }, { - "uuid": "4e37b3f5-fc1c-4b35-8fed-61e8a8e0f57c", - "siteID": 20948, - "address": "4634 Bosco Manor", - "latitude": 51.9308, - "longitude": -124.3863, - "lastUpdated": "2017-11-18", - "city": "Prosaccotown", - "region": "Mainland/Southwest", - "victoriaFile": "26250-20/17572", + "uuid": "b0f8aac9-9a2b-4ddc-974b-35fd123c325d", + "siteID": 18614, + "address": "2435 Koch Inlet", + "latitude": 50.0763, + "longitude": -121.009, + "lastUpdated": "2020-03-30", + "city": "Mount Pleasant", + "region": "Cariboo", + "victoriaFile": "26250-20/16800", "regionalFile": "N/A", "parcelIDs": [ - 3451805, - 3133472, - 9248461, - 8507299, - 9335169 + 9350834, + 8004831, + 9163136, + 7748006, + 2751107 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2017-03-27", - "completed": "2019-03-02", - "initiated": "2018-06-26", - "ministryContact": "NIENOW JASMIN", + "createdAt": "2018-06-19", + "completed": "2018-04-25", + "initiated": "2017-03-19", + "ministryContact": "JACOBS KACI", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -68217,18 +74925,23 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": true }, { @@ -68237,13 +74950,13 @@ "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2021-03-16", - "completed": "2015-04-14", - "initiated": "2023-08-09", - "ministryContact": "WILL GARTH", + "createdAt": "2022-08-01", + "completed": "2022-10-14", + "initiated": "2014-09-10", + "ministryContact": "SCHOEN MORTIMER", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -68254,31 +74967,31 @@ { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true + "role": "SUBMITTED BY", + "siteRegistry": false } ], "siteRegistry": true }, { - "createdAt": "2019-06-05", - "completed": "2013-12-29", - "initiated": "2023-06-02", - "ministryContact": "COLLIER GUS", + "createdAt": "2015-08-19", + "completed": "2016-09-16", + "initiated": "2017-05-03", + "ministryContact": "ABERNATHY KING", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -68286,6 +74999,11 @@ "" ], "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", @@ -68294,7 +75012,12 @@ { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true } ], "siteRegistry": true @@ -68302,215 +75025,209 @@ ], "participants": [ { - "name": "AMET, DOLOR SIT", - "endDate": "2018-01-02", - "startDate": "2021-03-15", + "name": "IPSUM", + "endDate": "2022-03-02", + "startDate": "2017-05-23", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], - "siteRegistry": true + "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2020-12-08", - "startDate": "2022-02-26", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2018-08-01", + "startDate": "2021-02-05", "notes": "", "roles": [ "EMPLOYEE" ], "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2015-02-02", + "startDate": "2016-05-01", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true } ], "suspectLandUses": [ { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-09-13 (described on Site Profile dated 2014-09-13)", + "notes": "INSERTED FOR SITE PROFILE DATED 2023-02-25 (described on Site Profile dated 2023-02-25)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2017-10-30 (described on Site Profile dated 2017-10-30)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-09-06 (described on Site Profile dated 2017-09-06)", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2015-01-29 (described on Site Profile dated 2015-01-29)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-01-08 (described on Site Profile dated 2016-01-08)", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2018-06-26 (described on Site Profile dated 2018-06-26)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], - "siteDisclosures": [ + "parcelDescriptions": [ + { + "siteRegistry": true, + "dateNoted": "2018-08-22", + "parcelID": "17283", + "crownLandUsePIN": "15977", + "crownLandFileNumber": "18900", + "landDescription": "LOT 3 OF LOT 1 BLOCK 5 DISTRICT LOT 2 PLAN 4808" + }, { "siteRegistry": false, - "dateReceived": "2014-07-09", - "dateCompleted": "2020-10-23", - "dateEntered": "2022-06-05", - "dateRegistrar": "2020-08-28", - "dateLocalAuthorityReceived": "2021-09-01", - "summary": "Repudiandae quisquam culpa beatae.\nVel nostrum veniam explicabo commodi aliquam nisi repudiandae.\nNostrum perferendis nesciunt incidunt minima distinctio enim.", - "informationUsed": "Similique quisquam deserunt hic corporis.\nAperiam optio exercitationem officiis aut deleniti.\nPossimus quasi impedit nemo consectetur.\nReprehenderit enim similique.\nCorporis nostrum quaerat nobis.", - "pastOrPresentOrders": "Praesentium corrupti voluptatum sunt dignissimos.\nMollitia totam deserunt quo ipsam dicta.\nAutem placeat quasi nulla.", - "commercialAndIndustrialPurposes": [ - { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false - }, - { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true - }, - { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false - }, - { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true - } - ] + "dateNoted": "2023-04-04", + "parcelID": "17877", + "crownLandUsePIN": "18464", + "crownLandFileNumber": "16383", + "landDescription": "LOT 2 OF LOT 5 BLOCK 1 DISTRICT LOT 4 PLAN 9689" }, { "siteRegistry": false, - "dateReceived": "2014-04-06", - "dateCompleted": "2020-03-09", - "dateEntered": "2018-08-23", - "dateRegistrar": "2023-08-24", - "dateLocalAuthorityReceived": "2022-08-06", - "summary": "Adipisci corrupti nisi esse provident at nostrum architecto natus.\nNisi saepe molestiae at alias eum.", - "informationUsed": "Consequuntur a debitis vitae.\nAmet molestias blanditiis laudantium.\nNulla nostrum minima.", - "pastOrPresentOrders": "Fuga quae dolorem doloribus optio odit quos eaque laborum.\nEaque exercitationem occaecati delectus fuga nam libero incidunt ad incidunt.\nCum velit culpa ullam dignissimos quisquam impedit earum laborum placeat.", + "dateNoted": "2020-07-16", + "parcelID": "18372", + "crownLandUsePIN": "19935", + "crownLandFileNumber": "20232", + "landDescription": "LOT 1 OF LOT 3 BLOCK 1 DISTRICT LOT 2 PLAN 7302" + }, + { + "siteRegistry": true, + "dateNoted": "2021-04-02", + "parcelID": "20051", + "crownLandUsePIN": "19459", + "crownLandFileNumber": "15526", + "landDescription": "LOT 4 OF LOT 4 BLOCK 1 DISTRICT LOT 5 PLAN 8610" + }, + { + "siteRegistry": false, + "dateNoted": "2021-04-10", + "parcelID": "16188", + "crownLandUsePIN": "17595", + "crownLandFileNumber": "19615", + "landDescription": "LOT 2 OF LOT 5 BLOCK 2 DISTRICT LOT 4 PLAN 3933" + } + ], + "siteDisclosures": [ + { + "siteRegistry": false, + "dateReceived": "2021-06-15", + "dateCompleted": "2018-01-20", + "dateEntered": "2015-07-25", + "dateRegistrar": "2018-05-06", + "dateLocalAuthorityReceived": "2021-03-07", + "summary": "Occaecati saepe expedita enim hic molestiae totam beatae dolore.\nNemo voluptates nihil quas at inventore quaerat amet.\nCumque cupiditate consectetur voluptatibus veniam earum.", + "informationUsed": "Delectus repellat praesentium minus recusandae architecto ipsa.\nPerferendis saepe accusamus.\nEaque beatae officiis odio debitis.\nEveniet excepturi eum quaerat vitae quia neque tenetur id.", + "pastOrPresentOrders": "Corporis recusandae ab delectus sequi.\nAnimi ullam ad porro.", "commercialAndIndustrialPurposes": [ { - "scheduleReference": "F1*", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false }, { "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true + "siteRegistry": false }, { "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true - }, - { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true + "siteRegistry": false } ] } ], "activityLog": [ - { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "KOCH EDMOND", - "timestamp": "2023-03-06" - }, - { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "LITTEL HERTHA", - "timestamp": "2017-06-20" - }, - { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "DONNELLY KAREEM", - "timestamp": "2023-03-10" - }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "FEENEY JACEY", - "timestamp": "2020-05-31" + "user": "KOZEY KAMREN", + "timestamp": "2014-11-29" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "THIEL FREDERIC", - "timestamp": "2021-10-17" + "user": "STRACKE CRISTINA", + "timestamp": "2018-04-19" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "MAYER RAYMUNDO", - "timestamp": "2019-04-13" + "user": "VANDERVORT CALI", + "timestamp": "2017-05-03" }, { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "BOGISICH ROXANNE", - "timestamp": "2014-01-11" + "user": "WYMAN KACI", + "timestamp": "2023-05-21" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "OKUNEVA HECTOR", - "timestamp": "2017-07-17" + "user": "VEUM CLOVIS", + "timestamp": "2021-07-03" }, { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "BOSCO CARA", - "timestamp": "2015-02-11" + "user": "BOEHM ARCH", + "timestamp": "2022-01-09" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "WILL ARTHUR", - "timestamp": "2018-06-26" + "user": "KUB CALE", + "timestamp": "2018-06-18" } ], "associatedSites": [ { - "dateNoted": "2017-04-18", + "dateNoted": "2019-09-04", "notes": "", - "parcelID": "18384", - "siteID": "18513", + "parcelID": "17262", + "siteID": "18240", "siteRegistry": false - }, - { - "dateNoted": "2022-11-27", - "notes": "", - "parcelID": "17099", - "siteID": "16489", - "siteRegistry": true } ] }, { - "uuid": "05d9eafd-4f19-47eb-99e8-0e0e9d0bd722", - "siteID": 19362, - "address": "44971 Joanie Bridge", - "latitude": 53.7312, - "longitude": -119.9526, - "lastUpdated": "2021-05-25", - "city": "West Assuntaside", - "region": "Mainland/Southwest", - "victoriaFile": "26250-20/2125", + "uuid": "87e9824b-116d-44e9-a685-d09d5b1dc175", + "siteID": 18191, + "address": "7160 Otis Prairie", + "latitude": 52.3914, + "longitude": -122.6916, + "lastUpdated": "2018-04-20", + "city": "West Kittyfort", + "region": "Kootenay", + "victoriaFile": "26250-20/5703", "regionalFile": "N/A", "parcelIDs": [ - 6031950, - 7445718, - 3388908, - 4449625, - 6311776 + 9575039, + 9711071, + 2391706, + 9604276, + 6549991 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2023-03-10", - "completed": "2022-02-17", - "initiated": "2018-05-29", - "ministryContact": "HANSEN ABDUL", + "createdAt": "2022-07-14", + "completed": "2014-05-10", + "initiated": "2022-06-01", + "ministryContact": "TERRY JULIE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -68523,26 +75240,6 @@ "role": "REQUESTED BY", "siteRegistry": true }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - } - ], - "siteRegistry": false - }, - { - "createdAt": "2018-10-14", - "completed": "2016-10-11", - "initiated": "2021-09-02", - "ministryContact": "KONOPELSKI KEELY", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", @@ -68550,27 +75247,27 @@ }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true + "role": "SUBMITTED BY", + "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true + "role": "SUBMITTED BY", + "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false + "role": "REQUESTED BY", + "siteRegistry": true } ], "siteRegistry": true }, { - "createdAt": "2015-06-10", - "completed": "2022-11-15", - "initiated": "2015-06-24", - "ministryContact": "MAYER TYRA", + "createdAt": "2017-10-01", + "completed": "2020-04-23", + "initiated": "2020-03-12", + "ministryContact": "BINS KELSIE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -68585,138 +75282,116 @@ }, { "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - } - ], - "siteRegistry": true - }, - { - "createdAt": "2022-03-03", - "completed": "2018-10-15", - "initiated": "2022-11-05", - "ministryContact": "HERMISTON BRIDIE", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true - } - ], - "siteRegistry": false - }, - { - "createdAt": "2021-02-02", - "completed": "2023-06-20", - "initiated": "2014-07-21", - "ministryContact": "REMPEL EDEN", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false } ], "participants": [ { - "name": "AMET, DOLOR SIT", - "endDate": "2021-02-18", - "startDate": "2021-11-05", + "name": "IPSUM", + "endDate": "2021-06-06", + "startDate": "2019-07-26", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2021-06-23", - "startDate": "2023-04-05", + "name": "IPSUM", + "endDate": "2021-11-17", + "startDate": "2023-07-27", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false } ], "suspectLandUses": [ { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-03-10 (described on Site Profile dated 2014-03-10)", + "notes": "INSERTED FOR SITE PROFILE DATED 2023-06-26 (described on Site Profile dated 2023-06-26)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2014-03-08 (described on Site Profile dated 2014-03-08)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-11-17 (described on Site Profile dated 2018-11-17)", + "notes": "INSERTED FOR SITE PROFILE DATED 2015-11-12 (described on Site Profile dated 2015-11-12)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + } + ], + "parcelDescriptions": [ + { + "siteRegistry": true, + "dateNoted": "2021-07-22", + "parcelID": "15922", + "crownLandUsePIN": "19199", + "crownLandFileNumber": "16237", + "landDescription": "LOT 3 OF LOT 5 BLOCK 1 DISTRICT LOT 5 PLAN 6227" }, { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-05-13 (described on Site Profile dated 2019-05-13)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "dateNoted": "2016-12-31", + "parcelID": "15270", + "crownLandUsePIN": "17543", + "crownLandFileNumber": "19464", + "landDescription": "LOT 4 OF LOT 1 BLOCK 2 DISTRICT LOT 4 PLAN 9706" } ], "siteDisclosures": [ { "siteRegistry": true, - "dateReceived": "2019-06-24", - "dateCompleted": "2018-06-10", - "dateEntered": "2018-10-06", - "dateRegistrar": "2020-07-08", - "dateLocalAuthorityReceived": "2023-01-19", - "summary": "Libero nostrum quidem optio tempora.", - "informationUsed": "Vero illo quaerat sequi iste repellendus.\nSapiente dolor rerum corporis explicabo numquam repellendus quibusdam ratione.\nRecusandae est deleniti ut molestias omnis aut blanditiis accusantium.\nQuasi eaque iure fugiat suscipit deleniti exercitationem.\nAutem perspiciatis voluptatum aperiam pariatur at vel sequi.", - "pastOrPresentOrders": "Doloremque soluta perferendis debitis exercitationem quod.", + "dateReceived": "2016-12-16", + "dateCompleted": "2016-04-23", + "dateEntered": "2022-06-22", + "dateRegistrar": "2014-10-12", + "dateLocalAuthorityReceived": "2022-06-21", + "summary": "Dolorem repudiandae quia vel.", + "informationUsed": "Nostrum nemo sed.\nNihil eveniet sint fugit est occaecati laborum fuga molestiae.\nDignissimos soluta est adipisci illum blanditiis sunt sit placeat.", + "pastOrPresentOrders": "Est nihil reiciendis est.\nOmnis totam porro voluptatibus consectetur maiores exercitationem autem.", "commercialAndIndustrialPurposes": [ { "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false }, { "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false } ] } @@ -68725,87 +75400,69 @@ { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "EMMERICH MORGAN", - "timestamp": "2023-04-27" - }, - { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "BLOCK COOPER", - "timestamp": "2014-04-13" - }, - { - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "ZEMLAK MALVINA", - "timestamp": "2018-09-09" + "user": "BERGSTROM ALDEN", + "timestamp": "2022-03-22" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "O'KON JOLIE", - "timestamp": "2021-05-11" - }, - { - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "BERNHARD RANDAL", - "timestamp": "2016-12-31" + "user": "CRONA ERA", + "timestamp": "2017-04-08" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "LANG KIANNA", - "timestamp": "2022-04-17" + "user": "CUMMERATA CHAIM", + "timestamp": "2015-02-26" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "WOLFF ORAN", - "timestamp": "2019-02-06" + "user": "BERGNAUM BEN", + "timestamp": "2018-01-23" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "RICE BERTRAND", - "timestamp": "2014-06-07" + "user": "SCHUSTER ROXANE", + "timestamp": "2015-09-13" } ], "associatedSites": [ { - "dateNoted": "2019-08-14", + "dateNoted": "2016-11-07", "notes": "", - "parcelID": "20116", - "siteID": "17854", + "parcelID": "15331", + "siteID": "15758", "siteRegistry": true } ] }, { - "uuid": "309e32e0-9088-4600-b470-0104bd5fb6c9", - "siteID": 17589, - "address": "44600 Trantow Ferry", - "latitude": 55.5237, - "longitude": -131.1475, - "lastUpdated": "2018-11-06", - "city": "Lake Nyasia", - "region": "Thompson-Okanagan", - "victoriaFile": "26250-20/10986", + "uuid": "9df8aabd-f192-4906-b1d4-c5e78894aab0", + "siteID": 16604, + "address": "24084 Wehner Station", + "latitude": 56.9275, + "longitude": -128.7475, + "lastUpdated": "2014-03-31", + "city": "New Rachelleside", + "region": "Vancouver Island/Coast", + "victoriaFile": "26250-20/19786", "regionalFile": "N/A", "parcelIDs": [ - 1499216, - 1566194, - 2679430, - 7726300, - 5748858 + 5368307, + 1802526, + 8096965, + 3720508, + 3536533 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2013-12-26", - "completed": "2020-07-06", - "initiated": "2019-02-23", - "ministryContact": "CORKERY ZANE", + "createdAt": "2021-12-06", + "completed": "2016-06-12", + "initiated": "2022-04-20", + "ministryContact": "WEBER LINNIE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -68813,64 +75470,39 @@ "" ], "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true - } - ], - "siteRegistry": false - }, - { - "createdAt": "2023-05-23", - "completed": "2015-07-27", - "initiated": "2018-08-17", - "ministryContact": "MANTE ANASTACIO", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true } ], "siteRegistry": true }, { - "createdAt": "2022-12-05", - "completed": "2017-10-16", - "initiated": "2018-12-26", - "ministryContact": "CONNELLY SEDRICK", + "createdAt": "2017-07-08", + "completed": "2022-09-03", + "initiated": "2021-11-15", + "ministryContact": "MILLER ELLIOT", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -68880,18 +75512,18 @@ "notationParticipants": [ { "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", @@ -68902,10 +75534,10 @@ "siteRegistry": false }, { - "createdAt": "2022-04-09", - "completed": "2018-07-05", - "initiated": "2023-06-23", - "ministryContact": "JOHNSON KAROLANN", + "createdAt": "2019-12-02", + "completed": "2020-08-27", + "initiated": "2018-01-13", + "ministryContact": "PFANNERSTILL ODA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -68915,18 +75547,23 @@ "notationParticipants": [ { "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false } ], "siteRegistry": true @@ -68935,18 +75572,18 @@ "participants": [ { "name": "AMET, DOLOR SIT", - "endDate": "2017-09-03", - "startDate": "2013-12-31", + "endDate": "2019-06-19", + "startDate": "2016-12-05", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], - "siteRegistry": true + "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2016-02-17", - "startDate": "2020-01-16", + "name": "IPSUM", + "endDate": "2016-12-19", + "startDate": "2014-08-17", "notes": "", "roles": [ "ORGANIZATION" @@ -68957,64 +75594,106 @@ "suspectLandUses": [ { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-11-27 (described on Site Profile dated 2017-11-27)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "notes": "INSERTED FOR SITE PROFILE DATED 2014-09-14 (described on Site Profile dated 2014-09-14)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2023-03-29 (described on Site Profile dated 2023-03-29)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "notes": "INSERTED FOR SITE PROFILE DATED 2016-03-31 (described on Site Profile dated 2016-03-31)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2023-05-13 (described on Site Profile dated 2023-05-13)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-01-05 (described on Site Profile dated 2015-01-05)", + "notes": "INSERTED FOR SITE PROFILE DATED 2019-06-14 (described on Site Profile dated 2019-06-14)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + } + ], + "parcelDescriptions": [ + { + "siteRegistry": true, + "dateNoted": "2013-12-31", + "parcelID": "19149", + "crownLandUsePIN": "15278", + "crownLandFileNumber": "19580", + "landDescription": "LOT 5 OF LOT 3 BLOCK 1 DISTRICT LOT 4 PLAN 6188" }, { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-07-11 (described on Site Profile dated 2019-07-11)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "siteRegistry": true, + "dateNoted": "2017-03-01", + "parcelID": "15972", + "crownLandUsePIN": "19839", + "crownLandFileNumber": "16650", + "landDescription": "LOT 5 OF LOT 3 BLOCK 4 DISTRICT LOT 2 PLAN 7136" }, { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-10-13 (described on Site Profile dated 2015-10-13)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "dateNoted": "2019-06-18", + "parcelID": "15215", + "crownLandUsePIN": "15519", + "crownLandFileNumber": "19454", + "landDescription": "LOT 5 OF LOT 1 BLOCK 3 DISTRICT LOT 4 PLAN 9193" + }, + { + "siteRegistry": false, + "dateNoted": "2020-04-28", + "parcelID": "18808", + "crownLandUsePIN": "15561", + "crownLandFileNumber": "17345", + "landDescription": "LOT 2 OF LOT 1 BLOCK 3 DISTRICT LOT 5 PLAN 9641" + }, + { + "siteRegistry": false, + "dateNoted": "2014-11-20", + "parcelID": "20059", + "crownLandUsePIN": "17467", + "crownLandFileNumber": "17059", + "landDescription": "LOT 5 OF LOT 3 BLOCK 2 DISTRICT LOT 4 PLAN 9738" } ], "siteDisclosures": [ { - "siteRegistry": true, - "dateReceived": "2015-10-13", - "dateCompleted": "2017-01-30", - "dateEntered": "2016-09-10", - "dateRegistrar": "2019-02-08", - "dateLocalAuthorityReceived": "2018-10-11", - "summary": "Officiis veritatis similique corrupti illo vero illum.\nEst quidem dolorum temporibus neque repellat.\nQuos laboriosam suscipit aspernatur fugit minus distinctio.", - "informationUsed": "Ipsum nisi possimus nulla.\nId aut perferendis quam nostrum sit repudiandae iste ab pariatur.\nLibero asperiores alias.\nAliquid dolor culpa esse ipsum perspiciatis ipsa.", - "pastOrPresentOrders": "Perspiciatis porro praesentium molestias.", + "siteRegistry": false, + "dateReceived": "2015-03-24", + "dateCompleted": "2021-11-29", + "dateEntered": "2015-07-29", + "dateRegistrar": "2021-02-10", + "dateLocalAuthorityReceived": "2017-07-22", + "summary": "Natus esse aspernatur tenetur officia non deleniti.", + "informationUsed": "Molestiae dolore aperiam a odio.\nMolestias ut ipsum.\nOptio fugit error.\nNam praesentium non inventore mollitia rem eligendi autem.", + "pastOrPresentOrders": "Dolores est eaque ratione sapiente provident ea rerum.\nMagni accusantium reiciendis ab beatae.", "commercialAndIndustrialPurposes": [ { - "scheduleReference": "F2*", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true + "siteRegistry": false }, { "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true + "siteRegistry": false } ] }, { - "siteRegistry": false, - "dateReceived": "2022-06-30", - "dateCompleted": "2014-12-12", - "dateEntered": "2020-12-09", - "dateRegistrar": "2022-10-12", - "dateLocalAuthorityReceived": "2021-03-17", - "summary": "Unde cum occaecati saepe suscipit illum iusto magni libero.\nArchitecto mollitia maiores occaecati enim est corrupti aperiam.", - "informationUsed": "Impedit assumenda possimus mollitia sed corporis magni.\nNisi corrupti mollitia commodi deleniti ad dolore delectus unde.\nIusto aliquid labore doloribus.", - "pastOrPresentOrders": "Assumenda dolorum accusamus modi.\nTotam at id mollitia impedit quod a unde.\nAut veritatis voluptatibus laborum.", + "siteRegistry": true, + "dateReceived": "2014-05-25", + "dateCompleted": "2023-04-09", + "dateEntered": "2021-10-31", + "dateRegistrar": "2014-10-30", + "dateLocalAuthorityReceived": "2021-11-12", + "summary": "Id aperiam eius doloribus minus dignissimos officia.", + "informationUsed": "Quaerat facilis voluptatibus ab praesentium pariatur.\nQuo odio similique nulla.\nConsectetur sint corporis veritatis quod quam consequuntur illo itaque.\nLaudantium veniam dignissimos rerum modi.", + "pastOrPresentOrders": "Quo debitis accusantium.\nConsectetur ea mollitia earum temporibus quasi mollitia.", "commercialAndIndustrialPurposes": [ { "scheduleReference": "F2*", @@ -69022,110 +75701,120 @@ "siteRegistry": true }, { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { - "scheduleReference": "F1*", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false + "siteRegistry": true }, { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true } ] } ], "activityLog": [ + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "POLLICH-BRAKUS HILLARD", + "timestamp": "2022-09-22" + }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "LESCH KESHAUN", - "timestamp": "2017-06-03" + "user": "LARKIN TAUREAN", + "timestamp": "2019-07-10" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "WILLIAMSON ROSSIE", - "timestamp": "2014-06-17" + "user": "ORN EINO", + "timestamp": "2016-04-09" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "RAU ELBERT", - "timestamp": "2019-06-27" + "user": "BARTOLETTI ANIBAL", + "timestamp": "2023-05-11" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "MOHR COTY", - "timestamp": "2014-03-14" + "user": "SHIELDS KYLEIGH", + "timestamp": "2018-03-21" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "STANTON AMERICO", + "timestamp": "2022-08-26" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "MULLER CAMERON", - "timestamp": "2015-04-17" + "user": "OBERBRUNNER CARA", + "timestamp": "2014-07-25" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "LESCH DAYNA", - "timestamp": "2014-11-10" - } - ], - "associatedSites": [ - { - "dateNoted": "2017-01-29", - "notes": "", - "parcelID": "17242", - "siteID": "19590", - "siteRegistry": true + "user": "WIEGAND FANNIE", + "timestamp": "2017-07-26" }, { - "dateNoted": "2013-10-30", - "notes": "", - "parcelID": "20414", - "siteID": "15461", - "siteRegistry": true + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "BERGE BLAISE", + "timestamp": "2018-01-06" }, { - "dateNoted": "2017-05-15", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "LAKIN BRITNEY", + "timestamp": "2019-06-03" + } + ], + "associatedSites": [ + { + "dateNoted": "2014-01-18", "notes": "", - "parcelID": "18809", - "siteID": "15800", + "parcelID": "18037", + "siteID": "16934", "siteRegistry": false } ] }, { - "uuid": "773a7ce5-9245-4257-bcd5-a70515681d0d", - "siteID": 18403, - "address": "28036 Will Views", - "latitude": 48.77, - "longitude": -136.8517, - "lastUpdated": "2014-01-30", - "city": "Joannyport", - "region": "Thompson-Okanagan", - "victoriaFile": "26250-20/16836", + "uuid": "041f013a-dde1-445e-a403-80e50cada4fd", + "siteID": 20045, + "address": "1959 Kiley Brook", + "latitude": 56.7969, + "longitude": -120.24, + "lastUpdated": "2017-06-26", + "city": "Ondrickashire", + "region": "Kootenay", + "victoriaFile": "26250-20/15858", "regionalFile": "N/A", "parcelIDs": [ - 9739776, - 7342236, - 8424309, - 3043381, - 1280634 + 6075129, + 6922329, + 7970176, + 8805100, + 2494533 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2015-09-27", - "completed": "2017-09-25", - "initiated": "2021-04-24", - "ministryContact": "BLANDA EULA", + "createdAt": "2016-04-13", + "completed": "2017-04-07", + "initiated": "2022-04-21", + "ministryContact": "TOWNE HETTIE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -69140,32 +75829,32 @@ }, { "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false + "role": "SUBMITTED BY", + "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false + "role": "SUBMITTED BY", + "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2023-04-01", - "completed": "2022-11-08", - "initiated": "2022-06-09", - "ministryContact": "CORWIN GARRY", + "createdAt": "2015-04-27", + "completed": "2017-02-06", + "initiated": "2014-06-08", + "ministryContact": "LARSON MAZIE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -69175,18 +75864,38 @@ "notationParticipants": [ { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false + "role": "REQUESTED BY", + "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "createdAt": "2019-05-21", + "completed": "2015-03-21", + "initiated": "2014-09-05", + "ministryContact": "HEIDENREICH GAVIN", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", @@ -69195,7 +75904,7 @@ }, { "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false } ], @@ -69204,19 +75913,29 @@ ], "participants": [ { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2021-01-24", - "startDate": "2019-11-30", + "name": "AMET, DOLOR SIT", + "endDate": "2018-07-23", + "startDate": "2020-07-07", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2014-06-09", - "startDate": "2021-05-02", + "endDate": "2022-12-10", + "startDate": "2022-03-04", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "name": "AMET, DOLOR SIT", + "endDate": "2017-10-17", + "startDate": "2022-05-30", "notes": "", "roles": [ "ORGANIZATION" @@ -69224,9 +75943,9 @@ "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2020-06-12", - "startDate": "2016-05-14", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2022-10-24", + "startDate": "2019-07-01", "notes": "", "roles": [ "EMPLOYEE" @@ -69234,81 +75953,100 @@ "siteRegistry": false }, { - "name": "AMET, DOLOR SIT", - "endDate": "2020-01-04", - "startDate": "2019-06-04", + "name": "IPSUM", + "endDate": "2014-04-27", + "startDate": "2022-08-18", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": false } ], "suspectLandUses": [ { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2020-07-31 (described on Site Profile dated 2020-07-31)", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2015-05-09 (described on Site Profile dated 2015-05-09)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-10-09 (described on Site Profile dated 2016-10-09)", + "notes": "INSERTED FOR SITE PROFILE DATED 2019-10-07 (described on Site Profile dated 2019-10-07)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2020-11-23 (described on Site Profile dated 2020-11-23)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], - "siteDisclosures": [ + "parcelDescriptions": [ + { + "siteRegistry": false, + "dateNoted": "2016-11-03", + "parcelID": "17237", + "crownLandUsePIN": "18655", + "crownLandFileNumber": "16708", + "landDescription": "LOT 2 OF LOT 5 BLOCK 1 DISTRICT LOT 5 PLAN 6541" + }, + { + "siteRegistry": false, + "dateNoted": "2023-02-18", + "parcelID": "18767", + "crownLandUsePIN": "17748", + "crownLandFileNumber": "17587", + "landDescription": "LOT 1 OF LOT 3 BLOCK 2 DISTRICT LOT 5 PLAN 9141" + }, { "siteRegistry": true, - "dateReceived": "2023-09-30", - "dateCompleted": "2018-07-31", - "dateEntered": "2013-12-23", - "dateRegistrar": "2015-10-20", - "dateLocalAuthorityReceived": "2021-12-30", - "summary": "Maiores quisquam minima.\nPerferendis dolorem quis rerum beatae.\nPlaceat ipsa modi.", - "informationUsed": "Sequi culpa earum animi reiciendis dolore nesciunt exercitationem iste modi.\nDebitis qui ipsa ut maxime dolore dicta.\nConsequatur corrupti omnis sapiente eos.\nDolorum molestiae fuga nesciunt atque ut odio.\nVitae modi aliquam ad eos consequuntur omnis neque fugiat.", - "pastOrPresentOrders": "Perferendis natus vero architecto non provident fuga quos vel amet.\nEligendi labore doloremque.\nCorrupti similique necessitatibus omnis quisquam laudantium.", + "dateNoted": "2021-06-10", + "parcelID": "16816", + "crownLandUsePIN": "15509", + "crownLandFileNumber": "20525", + "landDescription": "LOT 1 OF LOT 5 BLOCK 4 DISTRICT LOT 3 PLAN 7529" + }, + { + "siteRegistry": false, + "dateNoted": "2023-03-23", + "parcelID": "19904", + "crownLandUsePIN": "15741", + "crownLandFileNumber": "17718", + "landDescription": "LOT 1 OF LOT 4 BLOCK 5 DISTRICT LOT 3 PLAN 7943" + }, + { + "siteRegistry": false, + "dateNoted": "2018-10-01", + "parcelID": "18869", + "crownLandUsePIN": "16832", + "crownLandFileNumber": "19153", + "landDescription": "LOT 4 OF LOT 5 BLOCK 4 DISTRICT LOT 3 PLAN 6412" + } + ], + "siteDisclosures": [ + { + "siteRegistry": false, + "dateReceived": "2014-03-12", + "dateCompleted": "2014-05-29", + "dateEntered": "2019-05-16", + "dateRegistrar": "2015-01-12", + "dateLocalAuthorityReceived": "2020-10-21", + "summary": "Sunt distinctio voluptas delectus.\nAd quasi officia expedita omnis earum voluptate.", + "informationUsed": "Velit in corporis delectus magnam animi minus.\nFacilis impedit quia molestias necessitatibus.\nSunt qui voluptatibus.", + "pastOrPresentOrders": "Ullam nulla deserunt nihil quidem sapiente.", "commercialAndIndustrialPurposes": [ { "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false + "siteRegistry": true }, { "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, { "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true - }, - { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false - } - ] - }, - { - "siteRegistry": false, - "dateReceived": "2017-04-17", - "dateCompleted": "2020-12-14", - "dateEntered": "2015-10-28", - "dateRegistrar": "2023-09-21", - "dateLocalAuthorityReceived": "2021-04-07", - "summary": "Reiciendis fugit quod at.\nOptio sint tempore quod eos aut ullam magni blanditiis.\nConsequuntur explicabo ratione sapiente modi quibusdam nobis.", - "informationUsed": "Ducimus libero ut minima quod aliquid animi.\nVero pariatur eius inventore reprehenderit optio quidem veniam.\nModi deleniti corporis.", - "pastOrPresentOrders": "Beatae praesentium magnam voluptatum magnam.\nRatione dolorum occaecati voluptate.\nAlias laboriosam quos dolorum at fugiat in nisi veritatis repellendus.", - "commercialAndIndustrialPurposes": [ - { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true - }, - { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false } ] @@ -69318,94 +76056,94 @@ { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "DAUGHERTY MADELYNN", - "timestamp": "2022-05-15" + "user": "O'HARA LETA", + "timestamp": "2017-06-07" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "MCLAUGHLIN RHEA", - "timestamp": "2017-03-04" + "user": "WINTHEISER ELVERA", + "timestamp": "2020-08-25" }, { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "PREDOVIC HECTOR", - "timestamp": "2019-01-17" + "user": "CRONIN DUANE", + "timestamp": "2014-05-02" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "DONNELLY MEGHAN", - "timestamp": "2019-01-26" + "user": "BEDNAR KARLEY", + "timestamp": "2017-03-03" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "GORCZANY ABBIE", - "timestamp": "2015-08-23" + "user": "HAUCK LYDA", + "timestamp": "2016-09-30" }, { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "SCHILLER KENNEDY", - "timestamp": "2018-01-22" + "user": "PFEFFER LETHA", + "timestamp": "2020-09-20" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "EBERT ZULA", - "timestamp": "2023-09-10" + "user": "MCLAUGHLIN LLOYD", + "timestamp": "2022-11-26" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "PURDY BROOKS", - "timestamp": "2022-12-05" + "user": "KLOCKO KENDRICK", + "timestamp": "2018-08-09" } ], "associatedSites": [ { - "dateNoted": "2021-05-20", + "dateNoted": "2019-01-12", "notes": "", - "parcelID": "19566", - "siteID": "15800", - "siteRegistry": false + "parcelID": "16703", + "siteID": "20139", + "siteRegistry": true }, { - "dateNoted": "2014-09-23", + "dateNoted": "2021-05-01", "notes": "", - "parcelID": "19628", - "siteID": "18201", - "siteRegistry": false + "parcelID": "18461", + "siteID": "17607", + "siteRegistry": true } ] }, { - "uuid": "48f1a357-9974-45c4-b116-ea5699ffb62a", - "siteID": 18053, - "address": "5461 Marlee Harbors", - "latitude": 53.0592, - "longitude": -124.3292, - "lastUpdated": "2020-07-22", - "city": "West Cory", - "region": "Thompson-Okanagan", - "victoriaFile": "26250-20/10903", + "uuid": "85c8dc7d-6c6a-4bd7-903b-97a714917703", + "siteID": 20854, + "address": "610 Lorine Point", + "latitude": 58.3142, + "longitude": -123.7934, + "lastUpdated": "2014-09-28", + "city": "South Hadleyberg", + "region": " North Coast", + "victoriaFile": "26250-20/7212", "regionalFile": "N/A", "parcelIDs": [ - 789234, - 9374053, - 7832035, - 1813936, - 5942438 + 1323945, + 674427, + 8205626, + 4904749, + 1094726 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2021-09-17", - "completed": "2014-06-27", - "initiated": "2022-01-16", - "ministryContact": "AUER STANLEY", + "createdAt": "2015-12-08", + "completed": "2022-08-09", + "initiated": "2023-07-04", + "ministryContact": "BOGISICH BELL", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -69415,7 +76153,7 @@ "notationParticipants": [ { "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": true }, { @@ -69428,24 +76166,59 @@ "role": "SUBMITTED BY", "siteRegistry": false }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "createdAt": "2023-06-06", + "completed": "2014-12-17", + "initiated": "2016-04-04", + "ministryContact": "KERTZMANN ELLEN", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2018-04-27", - "completed": "2017-08-07", - "initiated": "2016-01-28", - "ministryContact": "WUNSCH VERN", + "createdAt": "2017-03-12", + "completed": "2014-03-27", + "initiated": "2014-05-25", + "ministryContact": "WATSICA LUZ", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -69455,22 +76228,42 @@ "notationParticipants": [ { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true + "role": "SUBMITTED BY", + "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true - }, + } + ], + "siteRegistry": true + }, + { + "createdAt": "2017-09-09", + "completed": "2021-07-15", + "initiated": "2016-01-17", + "ministryContact": "RIPPIN REX", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ { "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": true } ], @@ -69479,170 +76272,182 @@ ], "participants": [ { - "name": "AMET, DOLOR SIT", - "endDate": "2016-04-13", - "startDate": "2021-02-27", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2015-05-13", + "startDate": "2015-07-06", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true }, { "name": "IPSUM", - "endDate": "2014-01-05", - "startDate": "2023-05-04", + "endDate": "2022-03-03", + "startDate": "2022-05-06", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2022-02-08", + "startDate": "2019-06-06", "notes": "", "roles": [ "EMPLOYEE" ], "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2013-12-16", + "startDate": "2022-09-03", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false } ], "suspectLandUses": [ { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-02-12 (described on Site Profile dated 2022-02-12)", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2014-03-22 (described on Site Profile dated 2014-03-22)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-12-22 (described on Site Profile dated 2022-12-22)", + "notes": "INSERTED FOR SITE PROFILE DATED 2018-03-13 (described on Site Profile dated 2018-03-13)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" - }, + } + ], + "parcelDescriptions": [ { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-05-02 (described on Site Profile dated 2015-05-02)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "dateNoted": "2021-12-01", + "parcelID": "20775", + "crownLandUsePIN": "16817", + "crownLandFileNumber": "19128", + "landDescription": "LOT 4 OF LOT 2 BLOCK 4 DISTRICT LOT 1 PLAN 9775" }, { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-12-27 (described on Site Profile dated 2015-12-27)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "dateNoted": "2018-09-03", + "parcelID": "15328", + "crownLandUsePIN": "16590", + "crownLandFileNumber": "17700", + "landDescription": "LOT 4 OF LOT 1 BLOCK 2 DISTRICT LOT 5 PLAN 8259" } ], "siteDisclosures": [ { - "siteRegistry": true, - "dateReceived": "2023-06-19", - "dateCompleted": "2018-06-30", - "dateEntered": "2018-12-26", - "dateRegistrar": "2014-08-06", - "dateLocalAuthorityReceived": "2021-12-01", - "summary": "Itaque sunt dolores.\nVelit ea id quisquam labore tenetur adipisci corrupti molestias.", - "informationUsed": "Ex quo praesentium omnis nihil.\nOptio hic vero deleniti consectetur.\nUt deleniti consequuntur aperiam facilis eum error nobis.", - "pastOrPresentOrders": "Porro minima optio aliquid dolore omnis quas eos iure.", + "siteRegistry": false, + "dateReceived": "2015-01-13", + "dateCompleted": "2020-04-23", + "dateEntered": "2019-04-19", + "dateRegistrar": "2013-10-18", + "dateLocalAuthorityReceived": "2016-05-12", + "summary": "Laborum ad ipsam adipisci corrupti ut occaecati quia fugit.\nEnim culpa placeat voluptates voluptatum inventore eum alias asperiores.\nAperiam veritatis quam facere eaque eligendi.", + "informationUsed": "Nemo consequatur ratione quibusdam dignissimos dolore numquam.\nAnimi modi fuga delectus aut adipisci veniam.\nDolorem occaecati laudantium.", + "pastOrPresentOrders": "Error saepe sapiente maiores eum ut praesentium.\nDoloribus distinctio magnam illo autem nisi quibusdam iste consequatur.", "commercialAndIndustrialPurposes": [ { - "scheduleReference": "F1*", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false + "siteRegistry": true }, { - "scheduleReference": "F1*", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false - }, - { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true } ] } ], "activityLog": [ - { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "LANGOSH NICOLAS", - "timestamp": "2017-09-12" - }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "TOY DRAKE", - "timestamp": "2017-05-07" + "user": "NOLAN VERNICE", + "timestamp": "2020-08-18" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "JAST DEWAYNE", - "timestamp": "2018-04-28" + "user": "TURNER CHET", + "timestamp": "2018-12-09" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "CARROLL DAREN", - "timestamp": "2015-12-31" - }, - { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "PRICE HASKELL", - "timestamp": "2019-03-08" - }, - { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "BERNHARD STANLEY", - "timestamp": "2021-01-22" + "user": "O'REILLY MARGARETTA", + "timestamp": "2022-08-02" }, { - "siteRegistry": true, + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "KSHLERIN ROGER", - "timestamp": "2018-09-11" + "user": "STARK ROSLYN", + "timestamp": "2019-02-09" }, { - "siteRegistry": true, + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "KREIGER RENE", - "timestamp": "2023-07-08" + "user": "GOYETTE RAMONA", + "timestamp": "2015-11-20" } ], "associatedSites": [ { - "dateNoted": "2020-04-10", + "dateNoted": "2017-10-25", "notes": "", - "parcelID": "18072", - "siteID": "19118", + "parcelID": "16968", + "siteID": "20018", "siteRegistry": true }, { - "dateNoted": "2023-05-14", + "dateNoted": "2020-09-13", "notes": "", - "parcelID": "17463", - "siteID": "16320", + "parcelID": "19353", + "siteID": "18001", "siteRegistry": false + }, + { + "dateNoted": "2014-01-08", + "notes": "", + "parcelID": "17559", + "siteID": "20733", + "siteRegistry": true } ] }, { - "uuid": "a09d987b-ac1e-4115-8514-42ac5999a5f5", - "siteID": 17826, - "address": "7154 Brown Pine", - "latitude": 55.4531, - "longitude": -122.8096, - "lastUpdated": "2020-08-26", - "city": "Kentwood", - "region": "Vancouver Island/Coast", - "victoriaFile": "26250-20/16235", + "uuid": "85276bd2-3f18-4162-9b47-a0596b552ceb", + "siteID": 18529, + "address": "820 Jovany Landing", + "latitude": 56.4626, + "longitude": -135.3069, + "lastUpdated": "2016-10-01", + "city": "New Lillystead", + "region": "Mainland/Southwest", + "victoriaFile": "26250-20/4387", "regionalFile": "N/A", "parcelIDs": [ - 2137699, - 4833063, - 3376677, - 3896326, - 5659865 + 9334780, + 2381459, + 4384960, + 6271272, + 5547607 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2019-06-13", - "completed": "2018-06-26", - "initiated": "2020-01-14", - "ministryContact": "GOTTLIEB DOMINIQUE", + "createdAt": "2022-04-23", + "completed": "2015-09-04", + "initiated": "2016-03-04", + "ministryContact": "ARMSTRONG JEFFEREY", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -69652,7 +76457,7 @@ "notationParticipants": [ { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true }, { @@ -69660,16 +76465,46 @@ "role": "REQUESTED BY", "siteRegistry": true }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "createdAt": "2019-12-10", + "completed": "2022-04-06", + "initiated": "2023-08-10", + "ministryContact": "SCHAEFER CHESTER", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", @@ -69679,10 +76514,10 @@ "siteRegistry": false }, { - "createdAt": "2020-09-25", - "completed": "2018-03-12", - "initiated": "2017-03-29", - "ministryContact": "WALKER PERRY", + "createdAt": "2014-02-02", + "completed": "2023-09-10", + "initiated": "2019-02-15", + "ministryContact": "HETTINGER GERRY", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -69693,6 +76528,41 @@ { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "createdAt": "2021-01-05", + "completed": "2015-04-08", + "initiated": "2015-04-22", + "ministryContact": "BEAHAN CONNER", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": true }, { @@ -69702,61 +76572,41 @@ }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true } ], "participants": [ - { - "name": "IPSUM", - "endDate": "2018-11-06", - "startDate": "2015-01-29", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2016-05-18", - "startDate": "2016-02-18", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": true - }, { "name": "SHELL CANADA PRODUCTS", - "endDate": "2020-09-10", - "startDate": "2019-07-04", + "endDate": "2023-06-29", + "startDate": "2020-07-04", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2015-05-03", - "startDate": "2017-11-06", + "name": "IPSUM", + "endDate": "2017-08-05", + "startDate": "2016-12-19", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": false } @@ -69764,40 +76614,58 @@ "suspectLandUses": [ { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-01-11 (described on Site Profile dated 2017-01-11)", + "notes": "INSERTED FOR SITE PROFILE DATED 2015-04-25 (described on Site Profile dated 2015-04-25)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2014-11-28 (described on Site Profile dated 2014-11-28)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-06-05 (described on Site Profile dated 2014-06-05)", + "notes": "INSERTED FOR SITE PROFILE DATED 2014-02-02 (described on Site Profile dated 2014-02-02)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-12-09 (described on Site Profile dated 2022-12-09)", + "notes": "INSERTED FOR SITE PROFILE DATED 2018-06-26 (described on Site Profile dated 2018-06-26)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + } + ], + "parcelDescriptions": [ + { + "siteRegistry": true, + "dateNoted": "2022-07-30", + "parcelID": "16208", + "crownLandUsePIN": "20548", + "crownLandFileNumber": "16595", + "landDescription": "LOT 2 OF LOT 4 BLOCK 3 DISTRICT LOT 4 PLAN 5678" }, { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-11-22 (described on Site Profile dated 2014-11-22)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "dateNoted": "2019-11-07", + "parcelID": "16042", + "crownLandUsePIN": "18623", + "crownLandFileNumber": "20665", + "landDescription": "LOT 5 OF LOT 5 BLOCK 3 DISTRICT LOT 5 PLAN 9441" } ], "siteDisclosures": [ { "siteRegistry": false, - "dateReceived": "2023-07-09", - "dateCompleted": "2019-11-08", - "dateEntered": "2016-09-11", - "dateRegistrar": "2013-12-01", - "dateLocalAuthorityReceived": "2013-11-19", - "summary": "Veniam numquam illum.", - "informationUsed": "Reprehenderit praesentium vel possimus nam eaque.\nExpedita nihil ullam.\nOfficia ullam illum explicabo voluptate odit accusantium molestias dignissimos.\nTempore esse adipisci neque nisi.", - "pastOrPresentOrders": "Ad tenetur optio aperiam impedit.\nQuas fugit cupiditate eveniet soluta praesentium natus.", + "dateReceived": "2019-07-10", + "dateCompleted": "2018-05-23", + "dateEntered": "2014-06-25", + "dateRegistrar": "2020-08-31", + "dateLocalAuthorityReceived": "2018-02-09", + "summary": "Fugiat praesentium sit provident expedita quidem veniam voluptatem cum.\nMinus quas autem voluptates velit labore optio assumenda illum ea.", + "informationUsed": "Eaque et deserunt cupiditate dolore repudiandae deserunt nesciunt numquam consequuntur.\nNon eligendi dolores adipisci fugiat praesentium commodi aspernatur.\nHarum maxime ducimus natus ipsum iusto dicta ab.", + "pastOrPresentOrders": "Corporis veniam vero labore nisi.\nDeleniti libero libero dignissimos tempore inventore sunt rem adipisci dolorem.\nIn ratione cumque dignissimos repellendus.", "commercialAndIndustrialPurposes": [ { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false }, { @@ -69806,105 +76674,146 @@ "siteRegistry": true } ] + }, + { + "siteRegistry": true, + "dateReceived": "2015-10-18", + "dateCompleted": "2016-07-04", + "dateEntered": "2022-01-24", + "dateRegistrar": "2016-06-21", + "dateLocalAuthorityReceived": "2019-04-08", + "summary": "Quaerat natus harum eius.\nVoluptas aliquam quam.", + "informationUsed": "Non suscipit blanditiis libero dolores libero excepturi.\nAut ipsam asperiores architecto alias incidunt corrupti amet voluptas.\nMollitia enim molestiae explicabo nesciunt voluptas minima adipisci.\nEa facere quis quasi ducimus.", + "pastOrPresentOrders": "Quod laudantium voluptatibus expedita voluptatem molestiae consequatur dignissimos.\nAd quaerat nesciunt numquam tempore.\nA doloribus quas similique ducimus.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + } + ] } ], "activityLog": [ { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "DAVIS FAE", - "timestamp": "2017-03-04" + "user": "BARROWS MILTON", + "timestamp": "2018-07-04" }, { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "PARKER-HEIDENREICH JESS", - "timestamp": "2014-06-23" + "user": "TORPHY GILBERT", + "timestamp": "2021-06-13" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "CONSIDINE CATHARINE", - "timestamp": "2020-08-31" - }, - { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "NIENOW LANEY", - "timestamp": "2014-10-31" + "user": "TROMP SABRINA", + "timestamp": "2017-05-19" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "HOEGER JEROME", - "timestamp": "2017-07-03" + "user": "RITCHIE RAVEN", + "timestamp": "2016-10-19" }, { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "BATZ GRANVILLE", - "timestamp": "2016-07-03" + "user": "FRAMI-VEUM ERICKA", + "timestamp": "2021-01-10" }, { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "GOODWIN JACYNTHE", - "timestamp": "2021-11-15" + "user": "SCHOWALTER-ARMSTRONG ESTEL", + "timestamp": "2015-08-06" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "OLSON LEILA", - "timestamp": "2016-06-27" + "user": "WUCKERT LUCY", + "timestamp": "2022-11-24" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "HESSEL REMINGTON", - "timestamp": "2023-10-03" + "user": "LYNCH CIARA", + "timestamp": "2013-11-07" }, { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "WISOZK DALTON", - "timestamp": "2013-10-15" + "user": "O'CONNELL-HELLER ORLAND", + "timestamp": "2016-05-11" } ], "associatedSites": [ { - "dateNoted": "2017-12-01", + "dateNoted": "2022-08-20", + "notes": "", + "parcelID": "17061", + "siteID": "19044", + "siteRegistry": true + }, + { + "dateNoted": "2017-03-15", + "notes": "", + "parcelID": "17004", + "siteID": "15477", + "siteRegistry": true + }, + { + "dateNoted": "2016-11-03", "notes": "", - "parcelID": "19200", - "siteID": "17271", + "parcelID": "18204", + "siteID": "18318", "siteRegistry": true } ] }, { - "uuid": "d38a3338-5c00-4c46-a412-b0cff5ff072c", - "siteID": 16902, - "address": "8370 Wilderman Circles", - "latitude": 49.8169, - "longitude": -126.3014, - "lastUpdated": "2023-06-20", - "city": "Emmanuelstad", - "region": "Mainland/Southwest", - "victoriaFile": "26250-20/4169", + "uuid": "6a6fc9a0-abae-4963-9a1a-09f5f7fb4480", + "siteID": 15462, + "address": "8806 Parker Highway", + "latitude": 54.3811, + "longitude": -134.6903, + "lastUpdated": "2020-08-30", + "city": "Jacksonville", + "region": "Thompson-Okanagan", + "victoriaFile": "26250-20/8768", "regionalFile": "N/A", "parcelIDs": [ - 7077597, - 2490324, - 8759033, - 2567818, - 6103794 + 8824080, + 7776209, + 7116252, + 7601617, + 9368392 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2018-11-06", - "completed": "2016-12-13", - "initiated": "2014-02-17", - "ministryContact": "CRONIN BRYANA", + "createdAt": "2021-02-13", + "completed": "2018-12-04", + "initiated": "2022-03-18", + "ministryContact": "JOHNSTON ELIZA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -69915,12 +76824,12 @@ { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true + "role": "SUBMITTED BY", + "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", @@ -69931,15 +76840,20 @@ "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2016-08-14", - "completed": "2019-08-14", - "initiated": "2018-05-19", - "ministryContact": "JOHNSTON BRUCE", + "createdAt": "2019-11-17", + "completed": "2014-11-09", + "initiated": "2016-12-07", + "ministryContact": "WILLIAMSON PEARLINE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -69949,9 +76863,39 @@ "notationParticipants": [ { "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "createdAt": "2016-05-15", + "completed": "2018-08-24", + "initiated": "2020-03-15", + "ministryContact": "WEST ADAH", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", @@ -69962,30 +76906,65 @@ "role": "SUBMITTED BY", "siteRegistry": true }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "createdAt": "2016-07-21", + "completed": "2018-03-19", + "initiated": "2015-05-19", + "ministryContact": "KOZEY DARON", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true } ], "participants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2021-04-23", - "startDate": "2023-05-11", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2017-05-14", - "startDate": "2014-11-26", + "name": "IPSUM", + "endDate": "2023-04-08", + "startDate": "2016-08-24", "notes": "", "roles": [ "EMPLOYEE" @@ -69993,12 +76972,12 @@ "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2016-09-07", - "startDate": "2017-02-05", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2015-01-15", + "startDate": "2020-05-23", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": true } @@ -70006,79 +76985,92 @@ "suspectLandUses": [ { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-12-11 (described on Site Profile dated 2014-12-11)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" - }, - { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-05-28 (described on Site Profile dated 2017-05-28)", + "notes": "INSERTED FOR SITE PROFILE DATED 2020-11-03 (described on Site Profile dated 2020-11-03)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-05-11 (described on Site Profile dated 2017-05-11)", + "notes": "INSERTED FOR SITE PROFILE DATED 2015-04-16 (described on Site Profile dated 2015-04-16)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" - }, + } + ], + "parcelDescriptions": [ { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-05-26 (described on Site Profile dated 2018-05-26)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "siteRegistry": true, + "dateNoted": "2021-05-10", + "parcelID": "17530", + "crownLandUsePIN": "19783", + "crownLandFileNumber": "20666", + "landDescription": "LOT 5 OF LOT 2 BLOCK 1 DISTRICT LOT 1 PLAN 6689" }, { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-02-14 (described on Site Profile dated 2018-02-14)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "dateNoted": "2022-01-22", + "parcelID": "18475", + "crownLandUsePIN": "16513", + "crownLandFileNumber": "20758", + "landDescription": "LOT 5 OF LOT 5 BLOCK 3 DISTRICT LOT 1 PLAN 5592" } ], "siteDisclosures": [ { "siteRegistry": false, - "dateReceived": "2017-11-12", - "dateCompleted": "2017-05-03", - "dateEntered": "2023-09-15", - "dateRegistrar": "2018-05-04", - "dateLocalAuthorityReceived": "2018-06-01", - "summary": "Vel aliquid facilis temporibus incidunt quibusdam animi illo.", - "informationUsed": "Quam reprehenderit a optio itaque eius.\nDicta amet fugiat perferendis est deserunt consequuntur nobis maxime.\nEst corporis qui aspernatur itaque aut harum voluptates.\nIpsa molestiae sit deserunt facere amet quam quis minus.", - "pastOrPresentOrders": "Officiis porro facilis corporis blanditiis sint similique voluptatibus.\nOmnis iste molestiae.\nExcepturi neque nobis harum molestiae similique occaecati.", + "dateReceived": "2015-08-17", + "dateCompleted": "2020-02-25", + "dateEntered": "2021-12-24", + "dateRegistrar": "2015-10-16", + "dateLocalAuthorityReceived": "2018-08-31", + "summary": "Facilis velit doloremque veniam dolores.\nQuis ullam sint at.", + "informationUsed": "Veniam perferendis nihil tempore beatae.\nBlanditiis hic natus officia a non accusantium maiores corporis.\nNesciunt ducimus molestiae quasi debitis repellendus neque omnis atque.\nIure voluptas provident.", + "pastOrPresentOrders": "Porro voluptates explicabo itaque cupiditate.\nSoluta itaque rerum.", "commercialAndIndustrialPurposes": [ { - "scheduleReference": "F1*", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, { - "scheduleReference": "F1*", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true + "siteRegistry": false }, { "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true + "siteRegistry": false } ] }, { - "siteRegistry": true, - "dateReceived": "2018-09-27", - "dateCompleted": "2022-11-29", - "dateEntered": "2016-11-19", - "dateRegistrar": "2018-11-12", - "dateLocalAuthorityReceived": "2020-02-25", - "summary": "Suscipit nemo ea.\nReiciendis blanditiis corporis nulla molestiae vel.", - "informationUsed": "Deserunt maiores eveniet itaque unde amet dolorum.\nMollitia amet dignissimos amet debitis blanditiis qui culpa aut.\nFacilis consequatur ad nostrum ullam vel.\nEx enim neque occaecati dolore ratione libero accusantium.\nMolestiae at ad quis commodi iure enim consectetur.", - "pastOrPresentOrders": "Vitae eaque ab non.\nVeniam optio praesentium doloremque rerum blanditiis debitis aliquam maiores alias.\nDelectus saepe illum.", + "siteRegistry": false, + "dateReceived": "2023-05-12", + "dateCompleted": "2022-03-16", + "dateEntered": "2022-02-06", + "dateRegistrar": "2017-03-07", + "dateLocalAuthorityReceived": "2013-12-27", + "summary": "Inventore veritatis ea dicta tempore amet molestias necessitatibus hic.\nAliquid natus inventore voluptates dignissimos distinctio nemo consectetur impedit.", + "informationUsed": "Neque reprehenderit autem dolorem nobis aut autem a doloremque.\nNesciunt tempore animi consectetur cumque voluptas.\nInventore doloribus libero in.", + "pastOrPresentOrders": "Atque aut earum.\nSequi perspiciatis quis porro voluptatum cum.\nAut tempora aut natus rem tempore porro autem.", "commercialAndIndustrialPurposes": [ { "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true }, { "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false + "siteRegistry": true } ] } @@ -70087,100 +77079,99 @@ { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "STARK WILSON", - "timestamp": "2017-04-16" + "user": "LEUSCHKE EMERALD", + "timestamp": "2022-11-14" }, { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "HINTZ KAVON", - "timestamp": "2021-04-04" + "user": "ABSHIRE DAPHNEE", + "timestamp": "2023-04-19" }, { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "HAND DAWN", - "timestamp": "2019-10-02" + "user": "RYAN MILFORD", + "timestamp": "2021-06-12" }, { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "HETTINGER TRENTON", - "timestamp": "2021-05-23" + "user": "HOWELL DAVE", + "timestamp": "2014-06-27" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "MILLER WARD", - "timestamp": "2016-12-23" + "user": "HINTZ STEWART", + "timestamp": "2021-07-04" }, { - "siteRegistry": false, + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "LUBOWITZ ABIGALE", + "timestamp": "2023-05-23" + }, + { + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "FEEST-STIEDEMANN JUDE", - "timestamp": "2015-03-02" + "user": "RITCHIE VERDA", + "timestamp": "2022-05-31" }, { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "SCHIMMEL JIMMIE", - "timestamp": "2014-04-15" + "user": "PAGAC TONY", + "timestamp": "2021-02-11" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "WUCKERT VERNICE", - "timestamp": "2014-11-10" + "user": "GIBSON ELISABETH", + "timestamp": "2021-10-29" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "HERZOG KAILEE", - "timestamp": "2013-10-29" + "user": "KESSLER MARC", + "timestamp": "2019-07-26" } ], "associatedSites": [ { - "dateNoted": "2016-12-12", + "dateNoted": "2016-04-22", "notes": "", - "parcelID": "18677", - "siteID": "18736", + "parcelID": "19940", + "siteID": "17081", "siteRegistry": true - }, - { - "dateNoted": "2023-02-17", - "notes": "", - "parcelID": "17860", - "siteID": "20329", - "siteRegistry": false } ] }, { - "uuid": "b79b7e32-1ea5-4358-a0fa-61a8ff1ee7ba", - "siteID": 17118, - "address": "700 Orlando Manors", - "latitude": 55.2388, - "longitude": -118.7605, - "lastUpdated": "2013-12-12", - "city": "Stantonport", + "uuid": "128d16df-f115-4116-ad50-24cb0fa90ecb", + "siteID": 19726, + "address": "2226 Josie Stream", + "latitude": 50.5989, + "longitude": -121.9129, + "lastUpdated": "2013-11-01", + "city": "Angelineland", "region": "Cariboo", - "victoriaFile": "26250-20/4712", + "victoriaFile": "26250-20/18292", "regionalFile": "N/A", "parcelIDs": [ - 1980967, - 7609662, - 9073957, - 9657600, - 4824578 + 7998604, + 6687748, + 1043610, + 2468520, + 285544 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2021-03-21", - "completed": "2017-04-23", - "initiated": "2017-07-13", - "ministryContact": "BLANDA EDUARDO", + "createdAt": "2021-01-13", + "completed": "2018-04-17", + "initiated": "2014-07-01", + "ministryContact": "LABADIE OLE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -70191,21 +77182,36 @@ { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": false } ], "siteRegistry": false }, { - "createdAt": "2016-10-20", - "completed": "2014-02-22", - "initiated": "2015-09-02", - "ministryContact": "BEAHAN CAMILA", + "createdAt": "2020-06-26", + "completed": "2018-12-05", + "initiated": "2021-10-05", + "ministryContact": "LYNCH TEAGAN", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -70219,12 +77225,57 @@ "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "createdAt": "2018-10-19", + "completed": "2018-01-23", + "initiated": "2021-10-28", + "ministryContact": "TURNER BERNIE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "createdAt": "2015-11-16", + "completed": "2022-02-14", + "initiated": "2020-09-16", + "ministryContact": "SCHMELER DILLAN", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true }, @@ -70234,29 +77285,64 @@ "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false } ], "siteRegistry": true + }, + { + "createdAt": "2019-04-03", + "completed": "2021-07-24", + "initiated": "2022-12-08", + "ministryContact": "O'CONNER DARIEN", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false } ], "participants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2015-07-19", - "startDate": "2014-05-13", + "name": "AMET, DOLOR SIT", + "endDate": "2016-08-26", + "startDate": "2017-05-28", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true }, { - "name": "AMET, DOLOR SIT", - "endDate": "2020-06-23", - "startDate": "2021-11-07", + "name": "IPSUM", + "endDate": "2023-01-21", + "startDate": "2017-05-28", "notes": "", "roles": [ "ORGANIZATION" @@ -70264,22 +77350,22 @@ "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2017-12-21", - "startDate": "2017-02-13", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2020-05-05", + "startDate": "2015-06-05", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": true + "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2023-05-08", - "startDate": "2016-02-21", + "name": "IPSUM", + "endDate": "2018-03-20", + "startDate": "2022-03-03", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": false } @@ -70287,42 +77373,84 @@ "suspectLandUses": [ { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-12-07 (described on Site Profile dated 2019-12-07)", + "notes": "INSERTED FOR SITE PROFILE DATED 2020-02-14 (described on Site Profile dated 2020-02-14)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-08-13 (described on Site Profile dated 2014-08-13)", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2014-11-02 (described on Site Profile dated 2014-11-02)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2023-01-19 (described on Site Profile dated 2023-01-19)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2018-01-27 (described on Site Profile dated 2018-01-27)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-02-24 (described on Site Profile dated 2022-02-24)", + "notes": "INSERTED FOR SITE PROFILE DATED 2021-07-02 (described on Site Profile dated 2021-07-02)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + } + ], + "parcelDescriptions": [ + { + "siteRegistry": false, + "dateNoted": "2022-02-03", + "parcelID": "20703", + "crownLandUsePIN": "19165", + "crownLandFileNumber": "20625", + "landDescription": "LOT 4 OF LOT 5 BLOCK 4 DISTRICT LOT 1 PLAN 3606" + }, + { + "siteRegistry": true, + "dateNoted": "2019-10-17", + "parcelID": "17852", + "crownLandUsePIN": "19777", + "crownLandFileNumber": "15862", + "landDescription": "LOT 5 OF LOT 4 BLOCK 5 DISTRICT LOT 5 PLAN 3596" + }, + { + "siteRegistry": true, + "dateNoted": "2018-08-26", + "parcelID": "18215", + "crownLandUsePIN": "17336", + "crownLandFileNumber": "18724", + "landDescription": "LOT 1 OF LOT 1 BLOCK 5 DISTRICT LOT 5 PLAN 5892" }, { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2020-01-27 (described on Site Profile dated 2020-01-27)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "dateNoted": "2022-05-02", + "parcelID": "16690", + "crownLandUsePIN": "15785", + "crownLandFileNumber": "15647", + "landDescription": "LOT 5 OF LOT 4 BLOCK 4 DISTRICT LOT 1 PLAN 7132" + }, + { + "siteRegistry": false, + "dateNoted": "2021-09-24", + "parcelID": "19454", + "crownLandUsePIN": "17406", + "crownLandFileNumber": "16942", + "landDescription": "LOT 3 OF LOT 2 BLOCK 5 DISTRICT LOT 5 PLAN 5439" } ], "siteDisclosures": [ { "siteRegistry": false, - "dateReceived": "2016-08-08", - "dateCompleted": "2018-03-17", - "dateEntered": "2018-08-18", - "dateRegistrar": "2019-05-15", - "dateLocalAuthorityReceived": "2014-11-18", - "summary": "Neque provident eaque voluptas dolor nulla corporis similique dolores nisi.\nSoluta id expedita aperiam.", - "informationUsed": "Dolore aliquid saepe molestias id.\nPorro consectetur numquam tempore facere repellat ad perferendis.\nRerum numquam molestiae vitae.", - "pastOrPresentOrders": "Explicabo sequi explicabo autem harum aliquam soluta.\nDolorum totam rerum itaque accusantium fugiat similique id.", + "dateReceived": "2018-12-20", + "dateCompleted": "2014-07-31", + "dateEntered": "2020-10-28", + "dateRegistrar": "2013-12-26", + "dateLocalAuthorityReceived": "2018-03-17", + "summary": "Aliquid voluptates praesentium excepturi vitae.\nCumque quam laudantium exercitationem animi animi.\nNostrum earum ad porro quibusdam praesentium rerum deleniti.", + "informationUsed": "Itaque nesciunt fuga ea.\nUllam iure a nemo iste commodi.\nQuaerat corrupti magnam ducimus odio.", + "pastOrPresentOrders": "Nemo excepturi sed voluptates esse debitis magnam voluptatem excepturi ipsum.", "commercialAndIndustrialPurposes": [ - { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false - }, { "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", @@ -70332,39 +77460,34 @@ "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true } ] }, { "siteRegistry": true, - "dateReceived": "2017-10-03", - "dateCompleted": "2021-05-14", - "dateEntered": "2022-12-10", - "dateRegistrar": "2015-09-26", - "dateLocalAuthorityReceived": "2014-12-06", - "summary": "Id possimus laboriosam tempore.\nEx quam perferendis ipsa nihil culpa laborum deserunt dolorum.", - "informationUsed": "In nihil maxime maxime assumenda expedita quo adipisci.\nInventore voluptas fugiat accusantium.\nCorrupti aliquid quod natus assumenda quos odit.\nNisi consectetur perferendis.\nRem quae rem dolorum corporis quas autem voluptatibus.", - "pastOrPresentOrders": "Sapiente quasi saepe recusandae explicabo quasi odio animi ratione consectetur.\nQuaerat molestiae adipisci perspiciatis quibusdam deserunt ducimus molestias culpa.", + "dateReceived": "2015-08-03", + "dateCompleted": "2022-07-25", + "dateEntered": "2022-02-22", + "dateRegistrar": "2015-03-13", + "dateLocalAuthorityReceived": "2015-06-15", + "summary": "Dolorem repudiandae quod voluptatibus neque culpa molestias sunt amet.", + "informationUsed": "Dolorem beatae esse velit culpa aperiam ipsam at assumenda.\nTempore modi similique.\nDolor vero iste consectetur ut ea sed.\nQui nostrum eum corporis ducimus perspiciatis est.\nNam iusto alias deleniti neque aliquam.", + "pastOrPresentOrders": "Eos impedit illum.\nNisi illum doloribus labore amet nihil occaecati totam eum.\nQuisquam cumque itaque id voluptatem porro ex atque.", "commercialAndIndustrialPurposes": [ - { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false - }, { "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { - "scheduleReference": "F2*", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false - }, - { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false } ] } @@ -70373,100 +77496,93 @@ { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "WOLFF TIFFANY", - "timestamp": "2022-02-08" + "user": "POLLICH-LANGOSH WADE", + "timestamp": "2019-04-10" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "ONDRICKA ELMORE", - "timestamp": "2015-01-04" + "user": "STEHR ALFONSO", + "timestamp": "2014-09-29" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "KOVACEK BROWN", - "timestamp": "2014-07-26" + "user": "HOMENICK EUNICE", + "timestamp": "2016-07-06" }, { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "LANG QUENTIN", - "timestamp": "2018-08-10" + "user": "STRACKE SVEN", + "timestamp": "2021-11-18" }, { - "siteRegistry": true, + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "HUELS NILS", - "timestamp": "2021-01-15" + "user": "SIMONIS MYRNA", + "timestamp": "2018-02-13" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "LUBOWITZ DOVIE", - "timestamp": "2020-07-04" + "user": "FEENEY TREMAINE", + "timestamp": "2018-02-27" }, { - "siteRegistry": true, + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "KUVALIS ALPHONSO", - "timestamp": "2019-04-03" + "user": "ARMSTRONG GENEVIEVE", + "timestamp": "2014-08-29" }, { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "BOYER GISSELLE", - "timestamp": "2017-09-24" + "user": "KOZEY HUNTER", + "timestamp": "2017-03-01" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "HARBER WALLACE", - "timestamp": "2019-01-17" + "user": "MCCULLOUGH ALEJANDRA", + "timestamp": "2019-10-12" } ], "associatedSites": [ { - "dateNoted": "2015-01-27", - "notes": "", - "parcelID": "20397", - "siteID": "19790", - "siteRegistry": true - }, - { - "dateNoted": "2016-04-11", + "dateNoted": "2014-03-27", "notes": "", - "parcelID": "18946", - "siteID": "18685", + "parcelID": "17150", + "siteID": "19399", "siteRegistry": true } ] }, { - "uuid": "f8b80a27-949d-4081-bead-f8a2b2b6f6c7", - "siteID": 20789, - "address": "8056 Hellen Crossroad", - "latitude": 56.734, - "longitude": -120.8617, - "lastUpdated": "2015-03-06", - "city": "Prudenceview", - "region": " North Coast", - "victoriaFile": "26250-20/7746", + "uuid": "505b39d1-122f-4af3-ac42-3926fedcb866", + "siteID": 18013, + "address": "6754 Alexane Drives", + "latitude": 51.1119, + "longitude": -136.081, + "lastUpdated": "2018-03-07", + "city": "Port Jordane", + "region": "Thompson-Okanagan", + "victoriaFile": "26250-20/6471", "regionalFile": "N/A", "parcelIDs": [ - 7400098, - 9688453, - 9569016, - 4938699, - 9245597 + 8026522, + 5739900, + 5475331, + 3699334, + 4087534 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2020-04-12", - "completed": "2015-02-26", - "initiated": "2021-09-26", - "ministryContact": "CONSIDINE-QUITZON BERNITA", + "createdAt": "2023-05-05", + "completed": "2021-05-21", + "initiated": "2022-08-21", + "ministryContact": "HUELS ROSEMARY", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -70476,32 +77592,37 @@ "notationParticipants": [ { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false } ], "siteRegistry": true }, { - "createdAt": "2021-02-02", - "completed": "2022-06-24", - "initiated": "2014-07-05", - "ministryContact": "WALKER EVA", + "createdAt": "2014-06-17", + "completed": "2018-03-28", + "initiated": "2021-11-14", + "ministryContact": "BECHTELAR JORDANE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -70511,21 +77632,6 @@ "notationParticipants": [ { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false }, @@ -70535,13 +77641,13 @@ "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2017-12-17", - "completed": "2014-12-21", - "initiated": "2015-09-03", - "ministryContact": "WYMAN PATRICK", + "createdAt": "2021-02-11", + "completed": "2021-05-07", + "initiated": "2017-11-30", + "ministryContact": "KOELPIN KENNEDY", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -70550,9 +77656,9 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", @@ -70560,14 +77666,34 @@ "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "createdAt": "2022-09-01", + "completed": "2019-01-31", + "initiated": "2014-12-20", + "ministryContact": "BUCKRIDGE LYLA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", @@ -70578,10 +77704,10 @@ "siteRegistry": true }, { - "createdAt": "2016-10-26", - "completed": "2017-05-12", - "initiated": "2020-05-02", - "ministryContact": "RUSSEL KAREEM", + "createdAt": "2023-04-24", + "completed": "2016-07-30", + "initiated": "2020-07-19", + "ministryContact": "ROMAGUERA RUPERT", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -70601,13 +77727,18 @@ }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false } ], "siteRegistry": true @@ -70615,9 +77746,9 @@ ], "participants": [ { - "name": "AMET, DOLOR SIT", - "endDate": "2016-02-14", - "startDate": "2015-01-19", + "name": "IPSUM", + "endDate": "2014-10-26", + "startDate": "2019-02-15", "notes": "", "roles": [ "ORGANIZATION" @@ -70625,237 +77756,227 @@ "siteRegistry": true }, { - "name": "AMET, DOLOR SIT", - "endDate": "2023-08-09", - "startDate": "2022-09-20", + "name": "IPSUM", + "endDate": "2020-12-09", + "startDate": "2014-03-25", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": false }, { "name": "AMET, DOLOR SIT", - "endDate": "2020-03-16", - "startDate": "2017-07-03", + "endDate": "2015-04-21", + "startDate": "2015-06-04", "notes": "", "roles": [ "ORGANIZATION" ], "siteRegistry": false + } + ], + "suspectLandUses": [ + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2022-05-25 (described on Site Profile dated 2022-05-25)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "name": "AMET, DOLOR SIT", - "endDate": "2016-05-06", - "startDate": "2020-10-21", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": false + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2021-08-23 (described on Site Profile dated 2021-08-23)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2016-03-03", - "startDate": "2016-01-05", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": true + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2014-08-27 (described on Site Profile dated 2014-08-27)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], - "suspectLandUses": [ + "parcelDescriptions": [ + { + "siteRegistry": false, + "dateNoted": "2019-06-07", + "parcelID": "18258", + "crownLandUsePIN": "19940", + "crownLandFileNumber": "18175", + "landDescription": "LOT 2 OF LOT 5 BLOCK 2 DISTRICT LOT 2 PLAN 4623" + }, + { + "siteRegistry": false, + "dateNoted": "2015-02-28", + "parcelID": "20731", + "crownLandUsePIN": "15951", + "crownLandFileNumber": "15479", + "landDescription": "LOT 1 OF LOT 1 BLOCK 2 DISTRICT LOT 1 PLAN 8483" + }, { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-11-05 (described on Site Profile dated 2014-11-05)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "dateNoted": "2013-12-15", + "parcelID": "17708", + "crownLandUsePIN": "18602", + "crownLandFileNumber": "17585", + "landDescription": "LOT 3 OF LOT 4 BLOCK 3 DISTRICT LOT 1 PLAN 3456" }, { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-11-02 (described on Site Profile dated 2021-11-02)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "dateNoted": "2020-01-17", + "parcelID": "20763", + "crownLandUsePIN": "19379", + "crownLandFileNumber": "20286", + "landDescription": "LOT 1 OF LOT 2 BLOCK 2 DISTRICT LOT 4 PLAN 7763" }, { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-11-26 (described on Site Profile dated 2022-11-26)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "siteRegistry": true, + "dateNoted": "2021-03-26", + "parcelID": "16229", + "crownLandUsePIN": "17452", + "crownLandFileNumber": "17433", + "landDescription": "LOT 5 OF LOT 1 BLOCK 5 DISTRICT LOT 5 PLAN 5320" } ], "siteDisclosures": [ { "siteRegistry": false, - "dateReceived": "2023-03-06", - "dateCompleted": "2015-07-31", - "dateEntered": "2019-10-03", - "dateRegistrar": "2020-09-26", - "dateLocalAuthorityReceived": "2018-02-16", - "summary": "Esse labore aperiam magni nesciunt pariatur.\nLaborum aperiam sunt ipsum magni quaerat nulla nobis velit nemo.\nSaepe in dignissimos voluptate veniam at.", - "informationUsed": "Laudantium fugit numquam corrupti commodi accusantium aliquid laborum debitis.\nNam ab dolore reprehenderit et dolor fugiat neque reiciendis.\nEligendi non sint nesciunt impedit non beatae ullam reiciendis unde.\nEsse sit iure libero.", - "pastOrPresentOrders": "Tenetur vero qui minus qui placeat recusandae repellat totam.", + "dateReceived": "2021-12-16", + "dateCompleted": "2017-09-01", + "dateEntered": "2015-07-18", + "dateRegistrar": "2020-08-15", + "dateLocalAuthorityReceived": "2014-01-22", + "summary": "Voluptates qui delectus reprehenderit iste dolores hic facilis.", + "informationUsed": "Veritatis vero eligendi assumenda adipisci.\nEum pariatur quidem non porro ratione.\nRepellat veritatis necessitatibus eligendi necessitatibus.", + "pastOrPresentOrders": "Aliquam deserunt possimus eligendi alias.\nConsectetur dicta officiis voluptatem earum fugiat ipsum aspernatur.", "commercialAndIndustrialPurposes": [ { "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, { "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false + "siteRegistry": true }, { - "scheduleReference": "F2*", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true + "siteRegistry": false }, { "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false } ] }, { "siteRegistry": false, - "dateReceived": "2015-06-22", - "dateCompleted": "2022-09-26", - "dateEntered": "2019-07-29", - "dateRegistrar": "2021-08-14", - "dateLocalAuthorityReceived": "2021-07-25", - "summary": "Velit beatae facere tenetur itaque magni.\nVero neque illum officia reprehenderit nam expedita beatae perferendis quisquam.\nPerferendis excepturi officiis quod magni quibusdam ipsam.", - "informationUsed": "Totam deserunt repellat officiis id natus architecto quasi non doloribus.\nIpsam qui alias voluptatem unde consectetur quod consequuntur earum.\nUllam eligendi adipisci tempore aliquid aspernatur incidunt.\nQuas expedita quisquam reprehenderit veritatis praesentium tenetur.\nId sint veritatis occaecati commodi consectetur tenetur.", - "pastOrPresentOrders": "Alias ipsam ab necessitatibus dolorem.\nAperiam nesciunt quas.\nAb ad ad voluptas.", + "dateReceived": "2016-02-19", + "dateCompleted": "2020-07-19", + "dateEntered": "2015-08-24", + "dateRegistrar": "2017-12-01", + "dateLocalAuthorityReceived": "2018-06-17", + "summary": "Esse quo quae aut quidem sint quisquam architecto blanditiis tempora.\nFuga voluptas sequi in architecto tempore quibusdam dolores.\nPerferendis numquam quos ea enim odit maiores aperiam temporibus.", + "informationUsed": "Nobis quae et harum aliquam consequatur dolorem quae.\nIste odio fugiat nisi impedit asperiores iusto temporibus.\nUt accusamus vitae molestias eos.\nAtque amet veniam praesentium iusto.", + "pastOrPresentOrders": "Suscipit qui error nisi sunt.", "commercialAndIndustrialPurposes": [ { - "scheduleReference": "F1*", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, { "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false }, { "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true } ] } ], "activityLog": [ - { - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "YOST LILLY", - "timestamp": "2022-12-26" - }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "GUTKOWSKI MYRTLE", - "timestamp": "2016-02-18" - }, - { - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "GUTMANN FREDA", - "timestamp": "2023-07-12" - }, - { - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "DENESIK ELLIS", - "timestamp": "2016-04-24" - }, - { - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "DACH MAIYA", - "timestamp": "2023-04-17" + "user": "HAGENES MARIANO", + "timestamp": "2018-08-21" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "ZULAUF-LEBSACK MAXIMILLIA", - "timestamp": "2022-06-07" + "user": "RATH ZACHERY", + "timestamp": "2021-04-24" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "O'KON CHRISTOPHE", - "timestamp": "2022-04-26" - }, - { - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "LANGOSH-TORP KARIANE", - "timestamp": "2023-07-22" + "user": "TREMBLAY JESUS", + "timestamp": "2022-01-15" }, { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "MCDERMOTT HALEIGH", - "timestamp": "2018-12-29" + "user": "JOHNSTON DARYL", + "timestamp": "2014-12-09" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "SPENCER SERENA", - "timestamp": "2020-03-29" + "user": "TREMBLAY LEO", + "timestamp": "2016-03-08" } ], "associatedSites": [ { - "dateNoted": "2023-02-18", - "notes": "", - "parcelID": "16410", - "siteID": "20137", - "siteRegistry": true - }, - { - "dateNoted": "2023-05-23", + "dateNoted": "2015-12-18", "notes": "", - "parcelID": "19317", - "siteID": "15574", - "siteRegistry": true + "parcelID": "15443", + "siteID": "20492", + "siteRegistry": false }, { - "dateNoted": "2018-10-18", + "dateNoted": "2022-10-07", "notes": "", - "parcelID": "19281", - "siteID": "18625", - "siteRegistry": true + "parcelID": "17822", + "siteID": "17110", + "siteRegistry": false } ] }, { - "uuid": "f3a0d5b6-bcb9-4188-9069-133f8f5c2ff8", - "siteID": 17966, - "address": "647 Muller Grove", - "latitude": 56.0831, - "longitude": -138.487, - "lastUpdated": "2019-06-06", - "city": "New Marcelofurt", - "region": "Mainland/Southwest", - "victoriaFile": "26250-20/5517", + "uuid": "c43c8887-48c1-4722-8ac5-75a5ae470bfe", + "siteID": 16733, + "address": "1018 Rico Green", + "latitude": 53.4854, + "longitude": -122.0856, + "lastUpdated": "2018-03-20", + "city": "Jacobiport", + "region": "Thompson-Okanagan", + "victoriaFile": "26250-20/1298", "regionalFile": "N/A", "parcelIDs": [ - 4449795, - 8508451, - 4310945, - 2253770, - 329519 + 897388, + 9901433, + 4278319, + 7015674, + 6547222 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2016-12-24", - "completed": "2016-04-12", - "initiated": "2023-03-25", - "ministryContact": "WEBER BRADFORD", + "createdAt": "2016-10-12", + "completed": "2018-02-18", + "initiated": "2018-10-17", + "ministryContact": "BARTELL JUDSON", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -70865,27 +77986,37 @@ "notationParticipants": [ { "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false } ], "siteRegistry": false }, { - "createdAt": "2021-06-05", - "completed": "2021-11-23", - "initiated": "2023-08-04", - "ministryContact": "PAUCEK JAEDEN", + "createdAt": "2014-06-04", + "completed": "2023-01-19", + "initiated": "2022-09-13", + "ministryContact": "MARQUARDT CARY", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -70894,48 +78025,33 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": true - } - ], - "siteRegistry": true - }, - { - "createdAt": "2023-03-15", - "completed": "2021-08-07", - "initiated": "2021-04-28", - "ministryContact": "ZIEME SHERWOOD", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ + }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true + "role": "SUBMITTED BY", + "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2020-07-14", - "completed": "2023-06-04", - "initiated": "2019-07-17", - "ministryContact": "KOVACEK CARROLL", + "createdAt": "2019-01-31", + "completed": "2023-01-27", + "initiated": "2013-12-23", + "ministryContact": "LARKIN ELFRIEDA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -70944,18 +78060,13 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true }, { @@ -70966,7 +78077,7 @@ { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false } ], "siteRegistry": false @@ -70974,9 +78085,9 @@ ], "participants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2018-01-20", - "startDate": "2015-10-27", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2019-12-09", + "startDate": "2014-06-22", "notes": "", "roles": [ "ORGANIZATION" @@ -70984,72 +78095,137 @@ "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2018-12-13", - "startDate": "2021-10-21", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2014-02-18", - "startDate": "2018-08-11", + "name": "AMET, DOLOR SIT", + "endDate": "2020-06-25", + "startDate": "2015-05-24", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true }, { "name": "IPSUM", - "endDate": "2017-10-12", - "startDate": "2016-10-20", + "endDate": "2022-05-01", + "startDate": "2019-03-21", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false } ], "suspectLandUses": [ { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-01-15 (described on Site Profile dated 2018-01-15)", + "notes": "INSERTED FOR SITE PROFILE DATED 2016-04-03 (described on Site Profile dated 2016-04-03)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-08-27 (described on Site Profile dated 2019-08-27)", + "notes": "INSERTED FOR SITE PROFILE DATED 2020-05-18 (described on Site Profile dated 2020-05-18)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2020-12-18 (described on Site Profile dated 2020-12-18)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + } + ], + "parcelDescriptions": [ + { + "siteRegistry": true, + "dateNoted": "2021-07-22", + "parcelID": "16713", + "crownLandUsePIN": "16145", + "crownLandFileNumber": "17943", + "landDescription": "LOT 2 OF LOT 4 BLOCK 3 DISTRICT LOT 3 PLAN 5925" + }, { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-10-02 (described on Site Profile dated 2021-10-02)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "dateNoted": "2018-07-27", + "parcelID": "17546", + "crownLandUsePIN": "17028", + "crownLandFileNumber": "20050", + "landDescription": "LOT 5 OF LOT 4 BLOCK 2 DISTRICT LOT 3 PLAN 8292" + }, + { + "siteRegistry": false, + "dateNoted": "2019-09-13", + "parcelID": "16206", + "crownLandUsePIN": "15650", + "crownLandFileNumber": "16978", + "landDescription": "LOT 5 OF LOT 1 BLOCK 2 DISTRICT LOT 3 PLAN 5591" + }, + { + "siteRegistry": true, + "dateNoted": "2018-09-03", + "parcelID": "20549", + "crownLandUsePIN": "15225", + "crownLandFileNumber": "16748", + "landDescription": "LOT 5 OF LOT 3 BLOCK 1 DISTRICT LOT 1 PLAN 9131" + }, + { + "siteRegistry": true, + "dateNoted": "2023-09-30", + "parcelID": "19641", + "crownLandUsePIN": "19936", + "crownLandFileNumber": "15204", + "landDescription": "LOT 4 OF LOT 5 BLOCK 4 DISTRICT LOT 2 PLAN 5517" } ], "siteDisclosures": [ { "siteRegistry": false, - "dateReceived": "2019-05-15", - "dateCompleted": "2015-05-31", - "dateEntered": "2021-11-26", - "dateRegistrar": "2017-04-20", - "dateLocalAuthorityReceived": "2019-09-26", - "summary": "Repellat maxime explicabo est assumenda repellendus sint impedit.", - "informationUsed": "Aliquam quod repudiandae reprehenderit quidem velit exercitationem numquam totam assumenda.\nDicta eos nobis ullam tenetur neque sit aperiam maxime similique.\nNihil quasi cum distinctio.", - "pastOrPresentOrders": "Numquam iste voluptates culpa et fugit quod cupiditate animi.\nExplicabo soluta explicabo.\nIn cumque atque exercitationem blanditiis quod at harum reiciendis.", + "dateReceived": "2019-07-24", + "dateCompleted": "2017-12-17", + "dateEntered": "2020-03-18", + "dateRegistrar": "2020-01-29", + "dateLocalAuthorityReceived": "2018-06-06", + "summary": "Debitis debitis provident placeat odio rerum quos sint.", + "informationUsed": "Ad omnis dignissimos praesentium veniam.\nPariatur placeat facere saepe cumque saepe repudiandae.\nVoluptatibus cum temporibus.", + "pastOrPresentOrders": "Ipsa alias voluptatibus quaerat corporis optio cum voluptatem quos quod.\nDoloremque ratione sunt dignissimos assumenda.\nDucimus voluptatibus deleniti enim.", "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, { "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false }, { "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + } + ] + }, + { + "siteRegistry": false, + "dateReceived": "2017-11-06", + "dateCompleted": "2021-11-20", + "dateEntered": "2016-10-05", + "dateRegistrar": "2019-08-06", + "dateLocalAuthorityReceived": "2015-10-13", + "summary": "Sit totam sapiente aut.\nTotam sapiente eos ab sapiente reprehenderit rerum.", + "informationUsed": "Molestias minus perspiciatis.\nDignissimos nulla id repellat neque cum libero.\nIste tempore quis aspernatur perferendis ad molestiae.", + "pastOrPresentOrders": "Numquam facilis magnam impedit quaerat blanditiis aliquid porro dignissimos adipisci.\nSit nisi accusamus delectus.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false }, @@ -71062,116 +78238,92 @@ } ], "activityLog": [ - { - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "SHANAHAN DAN", - "timestamp": "2019-11-22" - }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "JOHNSTON MADALYN", - "timestamp": "2022-06-14" - }, - { - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "GUTMANN DOMENICO", - "timestamp": "2019-01-10" - }, - { - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "BERNHARD KENNEDY", - "timestamp": "2017-02-10" - }, - { - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "OSINSKI ANAHI", - "timestamp": "2021-07-22" + "user": "LEGROS ISRAEL", + "timestamp": "2018-01-16" }, { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "CUMMERATA ELEONORE", - "timestamp": "2023-07-30" + "user": "REMPEL CAYLA", + "timestamp": "2021-04-23" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "KLOCKO SPENCER", - "timestamp": "2021-08-21" + "user": "GISLASON MARSHALL", + "timestamp": "2017-07-23" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "CONN DEVYN", - "timestamp": "2018-06-26" + "user": "NIENOW NEHA", + "timestamp": "2014-04-11" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "CHRISTIANSEN ADELBERT", - "timestamp": "2018-08-15" + "user": "ZIEME MYRON", + "timestamp": "2020-06-27" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "FADEL FREDERIK", - "timestamp": "2019-05-30" + "user": "YOST CHRISTOP", + "timestamp": "2022-09-14" } ], "associatedSites": [ { - "dateNoted": "2015-09-11", + "dateNoted": "2019-03-20", "notes": "", - "parcelID": "16857", - "siteID": "20891", + "parcelID": "19524", + "siteID": "19749", "siteRegistry": true }, { - "dateNoted": "2022-08-07", + "dateNoted": "2021-03-01", "notes": "", - "parcelID": "18206", - "siteID": "19985", - "siteRegistry": true + "parcelID": "17891", + "siteID": "15675", + "siteRegistry": false }, { - "dateNoted": "2022-11-03", + "dateNoted": "2019-03-14", "notes": "", - "parcelID": "19904", - "siteID": "16850", + "parcelID": "19055", + "siteID": "19390", "siteRegistry": false } ] }, { - "uuid": "a5a2397d-9924-45f6-bb81-e238f5130386", - "siteID": 19559, - "address": "251 Marvin Knoll", - "latitude": 50.1096, - "longitude": -130.1715, - "lastUpdated": "2023-08-19", - "city": "Westfield", - "region": "Vancouver Island/Coast", - "victoriaFile": "26250-20/18538", + "uuid": "993c7b9e-a80d-46a9-ab85-b5450f521250", + "siteID": 17329, + "address": "285 Era Common", + "latitude": 48.7533, + "longitude": -121.6843, + "lastUpdated": "2021-09-06", + "city": "New Jonatan", + "region": " North Coast", + "victoriaFile": "26250-20/19589", "regionalFile": "N/A", "parcelIDs": [ - 3357801, - 5979228, - 3451422, - 490526, - 6848972 + 6853394, + 4432549, + 2149179, + 9719028, + 1078247 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2020-05-30", - "completed": "2019-09-02", - "initiated": "2017-04-18", - "ministryContact": "AUFDERHAR WENDY", + "createdAt": "2019-07-25", + "completed": "2018-07-19", + "initiated": "2019-11-26", + "ministryContact": "CHRISTIANSEN ZULA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -71180,38 +78332,28 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2016-03-29", - "completed": "2020-05-23", - "initiated": "2023-08-16", - "ministryContact": "BOEHM NEWTON", + "createdAt": "2019-11-23", + "completed": "2021-11-12", + "initiated": "2022-10-03", + "ministryContact": "CRIST ANTONINA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -71222,26 +78364,31 @@ { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2017-05-16", - "completed": "2017-07-05", - "initiated": "2023-08-31", - "ministryContact": "SPORER FLAVIE", + "createdAt": "2016-05-13", + "completed": "2021-04-07", + "initiated": "2016-04-24", + "ministryContact": "RIPPIN ARCHIBALD", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -71250,104 +78397,169 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true } ], "participants": [ { - "name": "IPSUM", - "endDate": "2019-07-19", - "startDate": "2023-03-12", + "name": "AMET, DOLOR SIT", + "endDate": "2017-03-10", + "startDate": "2016-12-18", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2018-03-14", - "startDate": "2014-01-26", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2014-04-03", + "startDate": "2020-03-03", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": false + "siteRegistry": true + } + ], + "suspectLandUses": [ + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2015-04-17 (described on Site Profile dated 2015-04-17)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "name": "IPSUM", - "endDate": "2021-12-04", - "startDate": "2023-08-03", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": false + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2022-07-03 (described on Site Profile dated 2022-07-03)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "name": "AMET, DOLOR SIT", - "endDate": "2021-09-21", - "startDate": "2017-11-27", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": false + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2016-09-01 (described on Site Profile dated 2016-09-01)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "name": "AMET, DOLOR SIT", - "endDate": "2021-10-12", - "startDate": "2016-10-11", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": false + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2019-08-10 (described on Site Profile dated 2019-08-10)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2016-09-21 (described on Site Profile dated 2016-09-21)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], - "suspectLandUses": [ + "parcelDescriptions": [ { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-03-01 (described on Site Profile dated 2016-03-01)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "siteRegistry": true, + "dateNoted": "2014-10-05", + "parcelID": "16730", + "crownLandUsePIN": "17686", + "crownLandFileNumber": "16047", + "landDescription": "LOT 4 OF LOT 1 BLOCK 3 DISTRICT LOT 5 PLAN 6792" }, { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-03-09 (described on Site Profile dated 2015-03-09)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "dateNoted": "2014-01-07", + "parcelID": "16161", + "crownLandUsePIN": "17658", + "crownLandFileNumber": "16168", + "landDescription": "LOT 1 OF LOT 4 BLOCK 1 DISTRICT LOT 2 PLAN 3847" }, { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-03-24 (described on Site Profile dated 2015-03-24)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "dateNoted": "2022-04-07", + "parcelID": "18777", + "crownLandUsePIN": "16418", + "crownLandFileNumber": "17483", + "landDescription": "LOT 5 OF LOT 4 BLOCK 2 DISTRICT LOT 4 PLAN 7322" }, { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-05-10 (described on Site Profile dated 2019-05-10)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "dateNoted": "2017-12-08", + "parcelID": "16951", + "crownLandUsePIN": "20184", + "crownLandFileNumber": "15887", + "landDescription": "LOT 1 OF LOT 2 BLOCK 4 DISTRICT LOT 5 PLAN 3917" + }, + { + "siteRegistry": true, + "dateNoted": "2013-12-05", + "parcelID": "16998", + "crownLandUsePIN": "20626", + "crownLandFileNumber": "16812", + "landDescription": "LOT 2 OF LOT 3 BLOCK 1 DISTRICT LOT 4 PLAN 5070" } ], "siteDisclosures": [ + { + "siteRegistry": true, + "dateReceived": "2015-12-14", + "dateCompleted": "2023-05-30", + "dateEntered": "2016-11-05", + "dateRegistrar": "2021-12-31", + "dateLocalAuthorityReceived": "2013-11-23", + "summary": "Corporis laudantium quos laudantium laborum aspernatur.\nQuisquam recusandae quibusdam.", + "informationUsed": "Mollitia facilis eius dolorum nostrum laboriosam atque quaerat.\nAnimi quod deleniti a quos distinctio atque inventore error.\nNihil esse aliquid excepturi totam laborum ipsam voluptas est in.\nAccusamus harum animi magni et quod voluptates culpa autem.\nQuidem aperiam dolorem culpa.", + "pastOrPresentOrders": "Ratione facere qui facere vel facere nemo magnam.\nRepellendus debitis modi laudantium sunt repellendus.", + "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + } + ] + }, { "siteRegistry": false, - "dateReceived": "2014-09-22", - "dateCompleted": "2013-11-12", - "dateEntered": "2014-10-24", - "dateRegistrar": "2016-11-20", - "dateLocalAuthorityReceived": "2014-01-17", - "summary": "Commodi aspernatur expedita.\nHarum molestiae excepturi mollitia autem ratione ducimus.", - "informationUsed": "Nulla maiores optio repudiandae nostrum.\nRerum tempore error iste suscipit fugiat incidunt in ducimus id.\nFugiat mollitia unde perspiciatis delectus impedit.\nSapiente quasi expedita fuga aliquam earum.\nOdio asperiores eos molestiae molestias vitae sunt maxime maiores animi.", - "pastOrPresentOrders": "Veritatis dolorem optio assumenda nam quae nisi corrupti rem repellat.\nEa repellendus incidunt harum molestiae minus quae cumque autem asperiores.\nIste possimus consequuntur in consectetur maxime laudantium mollitia.", + "dateReceived": "2015-04-17", + "dateCompleted": "2014-09-23", + "dateEntered": "2015-10-20", + "dateRegistrar": "2017-03-29", + "dateLocalAuthorityReceived": "2014-12-21", + "summary": "Tempora odio nemo amet dolorum voluptates temporibus.", + "informationUsed": "Accusamus iusto adipisci ipsa ex.\nCorrupti et amet excepturi laboriosam.\nNulla consequatur quas rerum.\nQuidem cumque suscipit maxime accusantium officiis hic perspiciatis.\nVeniam et minus sunt incidunt sunt praesentium.", + "pastOrPresentOrders": "Ipsam nulla officia repellendus architecto aut vero deleniti quae debitis.\nIste voluptatum ullam vitae quisquam reprehenderit vel.", "commercialAndIndustrialPurposes": [ { "scheduleReference": "F1*", @@ -71356,7 +78568,7 @@ }, { "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true } ] @@ -71366,89 +78578,81 @@ { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "ABSHIRE OTTIS", - "timestamp": "2015-05-29" + "user": "O'KON ARVEL", + "timestamp": "2018-08-25" }, { - "siteRegistry": true, + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "LOWE GREEN", - "timestamp": "2019-02-24" + "user": "WILLIAMSON LURLINE", + "timestamp": "2016-02-18" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "REINGER ABRAHAM", - "timestamp": "2017-02-14" + "user": "LEUSCHKE LINCOLN", + "timestamp": "2022-01-02" }, { - "siteRegistry": true, + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "DAUGHERTY NOLAN", - "timestamp": "2016-04-05" + "user": "HELLER NATHANAEL", + "timestamp": "2015-04-09" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "ROGAHN CECILE", - "timestamp": "2015-08-25" + "user": "TERRY PEDRO", + "timestamp": "2019-07-27" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "HIRTHE MARIANA", - "timestamp": "2014-08-14" + "user": "JAKUBOWSKI BRAYAN", + "timestamp": "2023-02-15" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "BARTON ISABELL", + "timestamp": "2022-05-28" } ], "associatedSites": [ { - "dateNoted": "2023-02-20", - "notes": "", - "parcelID": "15938", - "siteID": "16386", - "siteRegistry": true - }, - { - "dateNoted": "2022-03-18", - "notes": "", - "parcelID": "20851", - "siteID": "15498", - "siteRegistry": false - }, - { - "dateNoted": "2021-09-09", + "dateNoted": "2023-01-20", "notes": "", - "parcelID": "17514", - "siteID": "17083", + "parcelID": "17221", + "siteID": "18405", "siteRegistry": false } ] }, { - "uuid": "db5981c4-068e-4e6d-85d5-78a75acecc73", - "siteID": 15498, - "address": "548 Brando Meadows", - "latitude": 50.9383, - "longitude": -132.9057, - "lastUpdated": "2014-11-18", - "city": "Port Landenmouth", - "region": "Vancouver Island/Coast", - "victoriaFile": "26250-20/7097", + "uuid": "00967bb1-7be0-45e9-9e60-5157a85746cf", + "siteID": 17616, + "address": "664 Bennie Knoll", + "latitude": 54.2005, + "longitude": -138.5432, + "lastUpdated": "2019-01-16", + "city": "Lake Shane", + "region": " North Coast", + "victoriaFile": "26250-20/1938", "regionalFile": "N/A", "parcelIDs": [ - 2232676, - 6452185, - 3859856, - 9800736, - 882725 + 498636, + 9294084, + 6785269, + 7396117, + 3590958 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2016-09-21", - "completed": "2023-02-15", - "initiated": "2023-09-02", - "ministryContact": "SIPES DEWAYNE", + "createdAt": "2016-06-21", + "completed": "2020-04-12", + "initiated": "2018-03-06", + "ministryContact": "DAUGHERTY ANNAMARIE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -71458,37 +78662,27 @@ "notationParticipants": [ { "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true + "role": "REQUESTED BY", + "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true } ], "siteRegistry": true }, { - "createdAt": "2018-06-13", - "completed": "2022-02-24", - "initiated": "2019-12-03", - "ministryContact": "UPTON MOHAMMED", + "createdAt": "2021-07-07", + "completed": "2014-07-17", + "initiated": "2017-11-29", + "ministryContact": "ORN-HEGMANN CORDELL", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -71498,33 +78692,18 @@ "notationParticipants": [ { "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false + "role": "SUBMITTED BY", + "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false - } - ], - "siteRegistry": false - }, - { - "createdAt": "2017-05-22", - "completed": "2014-09-20", - "initiated": "2018-10-18", - "ministryContact": "FAHEY DORIS", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ + }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", @@ -71532,19 +78711,19 @@ "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false } ], "participants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2015-07-25", - "startDate": "2016-09-17", + "name": "AMET, DOLOR SIT", + "endDate": "2018-12-29", + "startDate": "2015-07-04", "notes": "", "roles": [ "EMPLOYEE" @@ -71552,29 +78731,39 @@ "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2021-11-29", - "startDate": "2016-07-27", + "name": "AMET, DOLOR SIT", + "endDate": "2018-08-01", + "startDate": "2021-05-04", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "name": "AMET, DOLOR SIT", + "endDate": "2015-03-14", + "startDate": "2020-12-08", + "notes": "", + "roles": [ + "EMPLOYEE" ], "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2021-03-15", - "startDate": "2018-07-26", + "endDate": "2015-02-17", + "startDate": "2018-06-17", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2016-08-22", - "startDate": "2023-06-15", + "name": "AMET, DOLOR SIT", + "endDate": "2020-04-22", + "startDate": "2016-06-29", "notes": "", "roles": [ "EMPLOYEE" @@ -71585,74 +78774,83 @@ "suspectLandUses": [ { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-11-30 (described on Site Profile dated 2019-11-30)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "notes": "INSERTED FOR SITE PROFILE DATED 2019-11-11 (described on Site Profile dated 2019-11-11)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-07-09 (described on Site Profile dated 2016-07-09)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2019-01-08 (described on Site Profile dated 2019-01-08)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2020-09-27 (described on Site Profile dated 2020-09-27)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2021-03-29 (described on Site Profile dated 2021-03-29)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], - "siteDisclosures": [ + "parcelDescriptions": [ + { + "siteRegistry": true, + "dateNoted": "2019-08-23", + "parcelID": "20574", + "crownLandUsePIN": "16906", + "crownLandFileNumber": "16173", + "landDescription": "LOT 1 OF LOT 4 BLOCK 1 DISTRICT LOT 4 PLAN 6083" + }, { "siteRegistry": false, - "dateReceived": "2020-04-14", - "dateCompleted": "2019-03-11", - "dateEntered": "2014-10-05", - "dateRegistrar": "2022-09-20", - "dateLocalAuthorityReceived": "2022-03-19", - "summary": "Perferendis nostrum doloremque veniam exercitationem.\nFuga recusandae labore vero maxime quaerat sapiente.", - "informationUsed": "Debitis veniam error excepturi quam dolor.\nReiciendis autem odio nam tenetur soluta illo ipsam.\nConsectetur voluptatum maiores quae rerum neque.", - "pastOrPresentOrders": "Occaecati aliquam quidem sequi ratione quaerat officia minima.\nTemporibus provident reprehenderit occaecati.\nSunt nesciunt inventore maxime ipsa.", - "commercialAndIndustrialPurposes": [ - { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false - }, - { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true - }, - { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false - } - ] + "dateNoted": "2019-06-28", + "parcelID": "17380", + "crownLandUsePIN": "15832", + "crownLandFileNumber": "18576", + "landDescription": "LOT 5 OF LOT 2 BLOCK 4 DISTRICT LOT 5 PLAN 9475" + }, + { + "siteRegistry": false, + "dateNoted": "2015-09-22", + "parcelID": "18685", + "crownLandUsePIN": "15893", + "crownLandFileNumber": "15576", + "landDescription": "LOT 2 OF LOT 2 BLOCK 2 DISTRICT LOT 5 PLAN 3509" }, { "siteRegistry": true, - "dateReceived": "2022-03-22", - "dateCompleted": "2020-10-16", - "dateEntered": "2023-09-25", - "dateRegistrar": "2023-07-13", - "dateLocalAuthorityReceived": "2022-07-11", - "summary": "Provident doloribus velit repudiandae.\nTemporibus iste aperiam consectetur laborum.", - "informationUsed": "Fugit deleniti sapiente quis explicabo ullam atque exercitationem facere modi.\nModi nisi quasi tenetur ipsa quaerat voluptatem laborum consequuntur velit.\nExercitationem quia veniam veniam possimus id vitae voluptas.\nQuae eos dolores expedita suscipit.\nPariatur eaque et sunt non explicabo.", - "pastOrPresentOrders": "Cupiditate quisquam atque fugiat voluptates.\nDistinctio quaerat nihil dignissimos blanditiis minima delectus voluptatibus debitis.", + "dateNoted": "2016-02-09", + "parcelID": "16584", + "crownLandUsePIN": "20765", + "crownLandFileNumber": "15914", + "landDescription": "LOT 3 OF LOT 2 BLOCK 5 DISTRICT LOT 2 PLAN 8594" + }, + { + "siteRegistry": true, + "dateNoted": "2018-10-28", + "parcelID": "19042", + "crownLandUsePIN": "18743", + "crownLandFileNumber": "16012", + "landDescription": "LOT 2 OF LOT 3 BLOCK 2 DISTRICT LOT 3 PLAN 7163" + } + ], + "siteDisclosures": [ + { + "siteRegistry": true, + "dateReceived": "2016-11-04", + "dateCompleted": "2023-01-30", + "dateEntered": "2019-10-12", + "dateRegistrar": "2013-11-23", + "dateLocalAuthorityReceived": "2015-06-27", + "summary": "Nostrum totam delectus animi ipsum voluptatum ipsam delectus earum.", + "informationUsed": "Aliquid officia consequuntur voluptates vitae eius amet magni.\nRecusandae nihil iusto officia recusandae quos iste dolorum.\nAd id rerum iste ipsam.", + "pastOrPresentOrders": "Suscipit impedit ullam libero.", "commercialAndIndustrialPurposes": [ - { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true - }, { "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false + "siteRegistry": true }, { - "scheduleReference": "F2*", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false + "siteRegistry": true } ] } @@ -71661,99 +78859,99 @@ { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "HALVORSON SUZANNE", - "timestamp": "2015-07-07" + "user": "WOLF CARLEY", + "timestamp": "2017-08-06" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "KREIGER CAROL", - "timestamp": "2019-12-01" + "user": "BLANDA-SCHADEN CHARITY", + "timestamp": "2014-05-08" }, { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "LINDGREN RANDALL", - "timestamp": "2015-05-12" + "user": "HALEY KADIN", + "timestamp": "2013-11-10" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "ROWE REECE", - "timestamp": "2019-05-24" + "user": "TILLMAN HOLDEN", + "timestamp": "2022-01-02" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "WILLMS JOHANN", - "timestamp": "2015-06-24" + "user": "BARTON KRISTOPHER", + "timestamp": "2017-01-18" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "BEER LITZY", - "timestamp": "2015-12-31" + "user": "JOHNS RUTHE", + "timestamp": "2014-10-15" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "WELCH JENNIE", - "timestamp": "2022-05-08" + "user": "CORWIN EDGARDO", + "timestamp": "2022-04-07" }, { - "siteRegistry": true, + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "SCHULIST ANAIS", - "timestamp": "2017-01-30" + "user": "KULAS HERMANN", + "timestamp": "2022-05-29" }, { - "siteRegistry": true, + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "KUPHAL CONRAD", - "timestamp": "2016-01-14" + "user": "RUTHERFORD WESTLEY", + "timestamp": "2017-12-19" }, { - "siteRegistry": true, + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "MOSCISKI JAMIL", - "timestamp": "2016-06-01" + "user": "FISHER DUDLEY", + "timestamp": "2016-05-20" } ], "associatedSites": [ { - "dateNoted": "2018-12-11", + "dateNoted": "2018-01-26", "notes": "", - "parcelID": "20972", - "siteID": "20361", - "siteRegistry": false + "parcelID": "17425", + "siteID": "17956", + "siteRegistry": true } ] }, { - "uuid": "05accb93-87c3-41df-bcc9-a055c83b579f", - "siteID": 17249, - "address": "750 Anais Throughway", - "latitude": 48.2185, - "longitude": -135.3625, - "lastUpdated": "2014-05-10", - "city": "Dannytown", - "region": " North Coast", - "victoriaFile": "26250-20/18730", + "uuid": "ab764273-de74-4113-8e00-6805b936643a", + "siteID": 17116, + "address": "553 Sammy Squares", + "latitude": 50.1036, + "longitude": -120.0431, + "lastUpdated": "2015-09-03", + "city": "Lake Russell", + "region": "Kootenay", + "victoriaFile": "26250-20/6749", "regionalFile": "N/A", "parcelIDs": [ - 1603815, - 8280441, - 1409805, - 579300, - 4713160 + 3581438, + 7638487, + 5467430, + 3798621, + 5458098 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2023-02-22", - "completed": "2019-11-06", - "initiated": "2018-08-03", - "ministryContact": "QUIGLEY RYLAN", + "createdAt": "2021-01-11", + "completed": "2014-10-26", + "initiated": "2015-02-24", + "ministryContact": "RAU ODESSA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -71762,28 +78960,38 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true } ], "siteRegistry": false }, { - "createdAt": "2014-11-25", - "completed": "2013-12-21", - "initiated": "2018-12-15", - "ministryContact": "YOST CAROLINE", + "createdAt": "2021-07-03", + "completed": "2023-05-13", + "initiated": "2014-11-29", + "ministryContact": "GOYETTE NAPOLEON", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -71796,23 +79004,13 @@ "role": "REQUESTED BY", "siteRegistry": false }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true } @@ -71820,10 +79018,10 @@ "siteRegistry": true }, { - "createdAt": "2013-10-27", - "completed": "2019-03-15", - "initiated": "2023-07-28", - "ministryContact": "KOELPIN VELMA", + "createdAt": "2015-10-20", + "completed": "2017-02-15", + "initiated": "2022-01-07", + "ministryContact": "SIPES GREGORY", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -71837,23 +79035,33 @@ "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false - }, + } + ], + "siteRegistry": true + }, + { + "createdAt": "2023-02-07", + "completed": "2019-08-04", + "initiated": "2017-03-22", + "ministryContact": "REYNOLDS WINNIFRED", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false } ], @@ -71862,98 +79070,81 @@ ], "participants": [ { - "name": "AMET, DOLOR SIT", - "endDate": "2015-03-03", - "startDate": "2019-12-26", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2020-08-27", + "startDate": "2019-05-20", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": true + "siteRegistry": false }, { - "name": "AMET, DOLOR SIT", - "endDate": "2021-02-07", - "startDate": "2019-09-10", + "name": "IPSUM", + "endDate": "2023-06-11", + "startDate": "2016-01-24", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2022-03-14", - "startDate": "2018-04-25", - "notes": "", - "roles": [ - "ORGANIZATION" - ], "siteRegistry": false }, { - "name": "AMET, DOLOR SIT", - "endDate": "2023-03-22", - "startDate": "2021-08-23", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2014-12-30", + "startDate": "2018-08-04", "notes": "", "roles": [ "ORGANIZATION" ], "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2015-05-07", - "startDate": "2017-11-16", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": true } ], "suspectLandUses": [ { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-06-10 (described on Site Profile dated 2018-06-10)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" - }, - { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-06-22 (described on Site Profile dated 2021-06-22)", + "notes": "INSERTED FOR SITE PROFILE DATED 2022-04-23 (described on Site Profile dated 2022-04-23)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2023-03-12 (described on Site Profile dated 2023-03-12)", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2021-10-19 (described on Site Profile dated 2021-10-19)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" - }, + } + ], + "parcelDescriptions": [ { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-12-17 (described on Site Profile dated 2017-12-17)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "dateNoted": "2018-11-24", + "parcelID": "18979", + "crownLandUsePIN": "16412", + "crownLandFileNumber": "18779", + "landDescription": "LOT 4 OF LOT 4 BLOCK 4 DISTRICT LOT 4 PLAN 6951" + }, + { + "siteRegistry": false, + "dateNoted": "2020-07-16", + "parcelID": "19124", + "crownLandUsePIN": "15899", + "crownLandFileNumber": "20304", + "landDescription": "LOT 2 OF LOT 4 BLOCK 1 DISTRICT LOT 2 PLAN 7683" } ], "siteDisclosures": [ { "siteRegistry": false, - "dateReceived": "2021-08-05", - "dateCompleted": "2022-05-03", - "dateEntered": "2021-07-12", - "dateRegistrar": "2019-08-28", - "dateLocalAuthorityReceived": "2016-12-19", - "summary": "Illo distinctio earum.", - "informationUsed": "Laborum id corrupti repellendus beatae neque assumenda non natus.\nQuidem explicabo asperiores perferendis magni tempore.\nEa accusantium est quasi ab nostrum.\nEarum quis quod quisquam accusamus neque.", - "pastOrPresentOrders": "Cum quis ratione facere corrupti sit.", + "dateReceived": "2023-09-21", + "dateCompleted": "2016-11-24", + "dateEntered": "2021-04-22", + "dateRegistrar": "2019-07-25", + "dateLocalAuthorityReceived": "2016-07-04", + "summary": "Sint natus officia excepturi quae.", + "informationUsed": "Sed facere at necessitatibus tempora quasi dignissimos aut pariatur.\nAsperiores aliquid amet minus officiis nihil atque cumque quaerat.\nEaque laboriosam praesentium sit nostrum molestiae tenetur.\nMagni atque voluptatibus.", + "pastOrPresentOrders": "Repellat animi pariatur quia doloremque quo.\nEaque error tenetur exercitationem ad quisquam deserunt.", "commercialAndIndustrialPurposes": [ - { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true - }, { "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { @@ -71961,32 +79152,14 @@ "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, - { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false - } - ] - }, - { - "siteRegistry": false, - "dateReceived": "2015-07-18", - "dateCompleted": "2022-12-08", - "dateEntered": "2015-10-20", - "dateRegistrar": "2022-06-02", - "dateLocalAuthorityReceived": "2019-09-18", - "summary": "Incidunt cupiditate inventore dolorem aliquam quo.\nUllam voluptatum architecto minus quis facilis reiciendis.\nEaque necessitatibus autem maiores explicabo officia.", - "informationUsed": "Eos sequi atque dolor minus molestiae eum accusamus autem blanditiis.\nVeritatis occaecati expedita molestiae cumque praesentium nostrum.\nEarum facere quod blanditiis amet quas reiciendis maxime rerum.\nUt quos temporibus ratione voluptatum laborum nemo unde.", - "pastOrPresentOrders": "Reprehenderit sit quaerat quam non autem.", - "commercialAndIndustrialPurposes": [ { "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false + "siteRegistry": true }, { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false } ] @@ -71994,102 +79167,90 @@ ], "activityLog": [ { - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "VANDERVORT PAXTON", - "timestamp": "2018-08-09" - }, - { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "SHIELDS CARMELO", - "timestamp": "2023-03-19" + "user": "HUEL JANY", + "timestamp": "2021-02-17" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "GREEN-JAST ALENA", - "timestamp": "2019-12-12" - }, - { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "MILLER ZORA", - "timestamp": "2014-10-10" + "user": "VONRUEDEN NELS", + "timestamp": "2022-04-15" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "BOGAN GABE", - "timestamp": "2018-10-16" + "user": "GRAHAM ONA", + "timestamp": "2014-07-12" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "FRITSCH SINCERE", - "timestamp": "2017-07-25" + "user": "FRIESEN TYREE", + "timestamp": "2016-07-19" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "GREENHOLT KODY", - "timestamp": "2018-07-07" + "user": "GRADY CITLALLI", + "timestamp": "2014-07-30" }, { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "WITTING FELICITY", - "timestamp": "2020-12-29" + "user": "BEIER BENJAMIN", + "timestamp": "2023-04-03" }, { - "siteRegistry": true, + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "STRACKE MARCIA", - "timestamp": "2017-03-24" + "user": "WAELCHI DARREN", + "timestamp": "2016-10-21" } ], "associatedSites": [ { - "dateNoted": "2015-11-10", + "dateNoted": "2019-08-04", "notes": "", - "parcelID": "18105", - "siteID": "17155", + "parcelID": "16334", + "siteID": "19802", "siteRegistry": false }, { - "dateNoted": "2020-07-04", + "dateNoted": "2023-03-21", "notes": "", - "parcelID": "16182", - "siteID": "18736", - "siteRegistry": true + "parcelID": "17964", + "siteID": "18928", + "siteRegistry": false } ] }, { - "uuid": "6572c61e-53fa-4ea0-bbbf-586c73400942", - "siteID": 20367, - "address": "7807 Okuneva Wells", - "latitude": 50.5723, - "longitude": -124.9287, - "lastUpdated": "2017-06-11", - "city": "Robinfurt", - "region": "Cariboo", - "victoriaFile": "26250-20/1065", + "uuid": "ac766a5a-b9e5-4607-b738-c9677460101c", + "siteID": 15327, + "address": "2539 Audra Bypass", + "latitude": 58.4276, + "longitude": -133.3178, + "lastUpdated": "2020-02-24", + "city": "Jensenhaven", + "region": "Mainland/Southwest", + "victoriaFile": "26250-20/12370", "regionalFile": "N/A", "parcelIDs": [ - 2709522, - 2156668, - 9456705, - 9833686, - 2440020 + 9544798, + 3408217, + 9148352, + 6373225, + 9285982 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2017-11-19", - "completed": "2021-05-23", - "initiated": "2022-03-15", - "ministryContact": "FADEL MARTIN", + "createdAt": "2014-11-23", + "completed": "2018-02-04", + "initiated": "2017-10-26", + "ministryContact": "TORPHY-YUNDT FELIPA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -72100,26 +79261,26 @@ { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true } ], "siteRegistry": true }, { - "createdAt": "2018-01-14", - "completed": "2018-02-27", - "initiated": "2015-04-27", - "ministryContact": "NITZSCHE NOLAN", + "createdAt": "2013-12-10", + "completed": "2022-05-31", + "initiated": "2021-09-27", + "ministryContact": "KEMMER DOMINGO", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -72128,23 +79289,23 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true } ], "siteRegistry": false }, { - "createdAt": "2020-09-23", - "completed": "2020-09-12", - "initiated": "2021-07-06", - "ministryContact": "ZBONCAK FORD", + "createdAt": "2014-01-28", + "completed": "2020-07-20", + "initiated": "2022-02-21", + "ministryContact": "BROWN REMINGTON", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -72155,16 +79316,6 @@ { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", "siteRegistry": false }, { @@ -72173,13 +79324,13 @@ "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2022-10-31", - "completed": "2016-12-03", - "initiated": "2017-05-07", - "ministryContact": "YUNDT TREVER", + "createdAt": "2017-01-07", + "completed": "2017-07-15", + "initiated": "2022-12-11", + "ministryContact": "WEISSNAT NETTIE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -72188,8 +79339,13 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", "siteRegistry": false }, { @@ -72200,7 +79356,7 @@ { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", @@ -72209,83 +79365,160 @@ } ], "siteRegistry": false - } - ], - "participants": [ + }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2023-06-21", - "startDate": "2020-09-13", - "notes": "", - "roles": [ - "EMPLOYEE" + "createdAt": "2020-01-29", + "completed": "2014-01-02", + "initiated": "2022-05-14", + "ministryContact": "REYNOLDS-BRAKUS ARVILLA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + } ], "siteRegistry": true - }, + } + ], + "participants": [ { "name": "IPSUM", - "endDate": "2019-09-23", - "startDate": "2022-03-23", + "endDate": "2017-12-29", + "startDate": "2022-08-04", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2016-04-11", - "startDate": "2020-02-03", + "endDate": "2017-06-08", + "startDate": "2020-05-28", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], - "siteRegistry": false + "siteRegistry": true } ], "suspectLandUses": [ { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-06-03 (described on Site Profile dated 2022-06-03)", + "notes": "INSERTED FOR SITE PROFILE DATED 2020-08-06 (described on Site Profile dated 2020-08-06)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2020-05-01 (described on Site Profile dated 2020-05-01)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2018-09-05 (described on Site Profile dated 2018-09-05)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-10-27 (described on Site Profile dated 2019-10-27)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "notes": "INSERTED FOR SITE PROFILE DATED 2018-08-23 (described on Site Profile dated 2018-08-23)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + } + ], + "parcelDescriptions": [ + { + "siteRegistry": false, + "dateNoted": "2013-12-12", + "parcelID": "20309", + "crownLandUsePIN": "16320", + "crownLandFileNumber": "17752", + "landDescription": "LOT 5 OF LOT 2 BLOCK 3 DISTRICT LOT 3 PLAN 9492" }, { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-08-25 (described on Site Profile dated 2019-08-25)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "dateNoted": "2022-09-19", + "parcelID": "20704", + "crownLandUsePIN": "15968", + "crownLandFileNumber": "15216", + "landDescription": "LOT 5 OF LOT 4 BLOCK 5 DISTRICT LOT 5 PLAN 8871" }, { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-10-05 (described on Site Profile dated 2015-10-05)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "dateNoted": "2022-02-26", + "parcelID": "15453", + "crownLandUsePIN": "18968", + "crownLandFileNumber": "19786", + "landDescription": "LOT 1 OF LOT 2 BLOCK 4 DISTRICT LOT 5 PLAN 8703" + }, + { + "siteRegistry": false, + "dateNoted": "2022-03-24", + "parcelID": "17148", + "crownLandUsePIN": "18309", + "crownLandFileNumber": "19570", + "landDescription": "LOT 1 OF LOT 1 BLOCK 1 DISTRICT LOT 2 PLAN 5378" } ], "siteDisclosures": [ { "siteRegistry": false, - "dateReceived": "2022-10-11", - "dateCompleted": "2016-07-14", - "dateEntered": "2022-06-08", - "dateRegistrar": "2020-06-25", - "dateLocalAuthorityReceived": "2014-08-16", - "summary": "Impedit et expedita exercitationem corrupti ratione.\nMinus dolores neque sit adipisci id.", - "informationUsed": "Enim error in sunt odio.\nDicta ipsa asperiores vitae impedit dolorem totam tempora.\nDolor fugiat minus.", - "pastOrPresentOrders": "Similique aliquid modi quaerat itaque.\nSuscipit facere magni.", + "dateReceived": "2021-10-03", + "dateCompleted": "2017-03-21", + "dateEntered": "2016-02-05", + "dateRegistrar": "2018-08-31", + "dateLocalAuthorityReceived": "2015-10-21", + "summary": "Cum adipisci corporis assumenda nemo amet nisi.\nQuasi doloribus nemo minima quaerat repellendus sint fuga nisi ab.", + "informationUsed": "Voluptas ullam error illum in sit nesciunt nihil ullam.\nEsse veniam sequi vel corrupti tempore ipsa labore.\nEst nam sequi corrupti architecto debitis magnam.\nCumque quibusdam soluta voluptate perspiciatis id tempora.", + "pastOrPresentOrders": "Ullam dignissimos autem unde esse laboriosam.", "commercialAndIndustrialPurposes": [ { "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + } + ] + }, + { + "siteRegistry": true, + "dateReceived": "2015-06-02", + "dateCompleted": "2015-10-05", + "dateEntered": "2019-09-15", + "dateRegistrar": "2018-06-12", + "dateLocalAuthorityReceived": "2020-03-17", + "summary": "Optio ipsa molestias culpa quae laboriosam pariatur laudantium.", + "informationUsed": "Esse id omnis expedita sunt harum consequatur.\nAmet id consequuntur exercitationem asperiores aperiam tempora odit.\nPossimus quasi expedita recusandae sunt.", + "pastOrPresentOrders": "Maiores rerum assumenda similique mollitia qui error architecto eum qui.\nFacilis minima reprehenderit quam.\nOdio rem molestiae id.", + "commercialAndIndustrialPurposes": [ { "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true } ] } @@ -72294,95 +79527,93 @@ { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "D'AMORE ANNETTA", - "timestamp": "2015-03-23" + "user": "LOCKMAN THELMA", + "timestamp": "2016-05-21" }, { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "DICKENS ANISSA", - "timestamp": "2016-01-22" + "user": "BRADTKE NOBLE", + "timestamp": "2015-04-08" }, { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "BARROWS JOSE", - "timestamp": "2022-01-17" + "user": "FRAMI JAMAR", + "timestamp": "2016-11-18" }, { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "ERDMAN LUELLA", - "timestamp": "2017-09-08" + "user": "ARMSTRONG ADELA", + "timestamp": "2017-05-11" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "WINTHEISER ABBIGAIL", - "timestamp": "2022-12-31" + "user": "FRANECKI GERMAINE", + "timestamp": "2013-12-04" }, { - "siteRegistry": true, + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "BAHRINGER CHASITY", - "timestamp": "2019-03-25" + "user": "GOTTLIEB NICHOLAS", + "timestamp": "2020-10-12" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "CROOKS LAMBERT", - "timestamp": "2015-11-27" - } - ], - "associatedSites": [ - { - "dateNoted": "2021-07-02", - "notes": "", - "parcelID": "16666", - "siteID": "18839", - "siteRegistry": true + "user": "NOLAN DAREN", + "timestamp": "2019-06-27" }, { - "dateNoted": "2020-07-15", - "notes": "", - "parcelID": "19313", - "siteID": "16632", - "siteRegistry": true + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "O'KON ALLENE", + "timestamp": "2015-02-03" }, { - "dateNoted": "2022-07-01", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "KIHN KATRINA", + "timestamp": "2016-01-21" + } + ], + "associatedSites": [ + { + "dateNoted": "2015-10-26", "notes": "", - "parcelID": "20494", - "siteID": "15332", - "siteRegistry": true + "parcelID": "20134", + "siteID": "17950", + "siteRegistry": false } ] }, { - "uuid": "e0e540f4-3c4b-46cb-bd00-0374b4c28286", - "siteID": 18316, - "address": "60408 DuBuque Bridge", - "latitude": 56.53, - "longitude": -138.3596, - "lastUpdated": "2015-09-16", - "city": "Elviebury", - "region": "Mainland/Southwest", - "victoriaFile": "26250-20/7338", + "uuid": "20ffcd41-704c-4c95-bd45-3e2deff48d2c", + "siteID": 16941, + "address": "5302 Farrell Estate", + "latitude": 57.9859, + "longitude": -128.3683, + "lastUpdated": "2022-01-31", + "city": "Greenland", + "region": " North Coast", + "victoriaFile": "26250-20/16631", "regionalFile": "N/A", "parcelIDs": [ - 2822748, - 424127, - 8776950, - 2315707, - 3396593 + 8226616, + 6434716, + 6191856, + 5927957, + 9685325 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2020-03-02", - "completed": "2017-03-14", - "initiated": "2014-01-29", - "ministryContact": "FAHEY CARLIE", + "createdAt": "2023-08-18", + "completed": "2017-02-19", + "initiated": "2022-03-11", + "ministryContact": "BOYLE RACHELLE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -72391,28 +79622,23 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2020-07-14", - "completed": "2023-08-28", - "initiated": "2021-06-17", - "ministryContact": "MCLAUGHLIN DARREL", + "createdAt": "2015-02-06", + "completed": "2018-11-23", + "initiated": "2018-10-16", + "ministryContact": "STRACKE GLORIA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -72423,31 +79649,21 @@ { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2014-11-17", - "completed": "2014-03-23", - "initiated": "2018-12-17", - "ministryContact": "RATKE ABDIEL", + "createdAt": "2021-10-22", + "completed": "2022-05-18", + "initiated": "2017-11-25", + "ministryContact": "JACOBS ZELDA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -72463,32 +79679,27 @@ { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false } ], "participants": [ { "name": "AMET, DOLOR SIT", - "endDate": "2022-03-12", - "startDate": "2013-12-20", + "endDate": "2020-04-07", + "startDate": "2019-05-07", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2021-10-14", + "startDate": "2020-10-20", "notes": "", "roles": [ "EMPLOYEE" @@ -72496,12 +79707,22 @@ "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2015-03-17", - "startDate": "2016-04-29", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2014-05-22", + "startDate": "2014-08-10", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "name": "IPSUM", + "endDate": "2019-09-30", + "startDate": "2015-02-09", + "notes": "", + "roles": [ + "EMPLOYEE" ], "siteRegistry": false } @@ -72509,32 +79730,89 @@ "suspectLandUses": [ { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-04-01 (described on Site Profile dated 2022-04-01)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "notes": "INSERTED FOR SITE PROFILE DATED 2021-07-14 (described on Site Profile dated 2021-07-14)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-04-17 (described on Site Profile dated 2015-04-17)", + "notes": "INSERTED FOR SITE PROFILE DATED 2021-08-15 (described on Site Profile dated 2021-08-15)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2015-06-06 (described on Site Profile dated 2015-06-06)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-09-08 (described on Site Profile dated 2017-09-08)", + "notes": "INSERTED FOR SITE PROFILE DATED 2022-12-22 (described on Site Profile dated 2022-12-22)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2015-05-04 (described on Site Profile dated 2015-05-04)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], - "siteDisclosures": [ + "parcelDescriptions": [ + { + "siteRegistry": false, + "dateNoted": "2019-07-07", + "parcelID": "15260", + "crownLandUsePIN": "15766", + "crownLandFileNumber": "18674", + "landDescription": "LOT 1 OF LOT 4 BLOCK 3 DISTRICT LOT 1 PLAN 5640" + }, + { + "siteRegistry": false, + "dateNoted": "2018-08-02", + "parcelID": "19330", + "crownLandUsePIN": "19126", + "crownLandFileNumber": "16371", + "landDescription": "LOT 4 OF LOT 5 BLOCK 2 DISTRICT LOT 3 PLAN 4647" + }, + { + "siteRegistry": false, + "dateNoted": "2022-10-10", + "parcelID": "18254", + "crownLandUsePIN": "19177", + "crownLandFileNumber": "16103", + "landDescription": "LOT 3 OF LOT 1 BLOCK 4 DISTRICT LOT 1 PLAN 8977" + }, { "siteRegistry": false, - "dateReceived": "2022-05-14", - "dateCompleted": "2015-11-11", - "dateEntered": "2021-11-09", - "dateRegistrar": "2018-08-09", - "dateLocalAuthorityReceived": "2021-02-26", - "summary": "Laborum voluptatibus voluptates nisi cumque consectetur reiciendis eos.", - "informationUsed": "Soluta iste ipsam.\nCommodi debitis expedita perspiciatis dignissimos.\nIllum facere aspernatur repellendus reprehenderit reiciendis.\nEsse numquam aperiam.\nDebitis sequi dolorum accusamus culpa ea.", - "pastOrPresentOrders": "Vel cupiditate quod deleniti nesciunt quas nostrum iusto.\nIpsam eligendi distinctio eaque nostrum.\nAutem quisquam pariatur quam animi nihil ea.", + "dateNoted": "2023-03-01", + "parcelID": "15592", + "crownLandUsePIN": "17587", + "crownLandFileNumber": "17697", + "landDescription": "LOT 5 OF LOT 5 BLOCK 3 DISTRICT LOT 1 PLAN 9634" + }, + { + "siteRegistry": true, + "dateNoted": "2014-12-14", + "parcelID": "15322", + "crownLandUsePIN": "16068", + "crownLandFileNumber": "17644", + "landDescription": "LOT 1 OF LOT 4 BLOCK 5 DISTRICT LOT 1 PLAN 7245" + } + ], + "siteDisclosures": [ + { + "siteRegistry": true, + "dateReceived": "2023-01-06", + "dateCompleted": "2019-03-06", + "dateEntered": "2023-07-07", + "dateRegistrar": "2021-11-19", + "dateLocalAuthorityReceived": "2018-05-29", + "summary": "Maiores soluta non optio.", + "informationUsed": "Quos illum aspernatur qui.\nIn repellat hic asperiores ipsam libero dolorem consequuntur unde.\nEarum quae quo.", + "pastOrPresentOrders": "Harum unde expedita eveniet quaerat harum et.\nQuaerat vitae omnis ad.\nQuis repudiandae ducimus error inventore suscipit voluptatum consequuntur quae.", "commercialAndIndustrialPurposes": [ + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, { "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", @@ -72543,11 +79821,29 @@ { "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false - }, + "siteRegistry": true + } + ] + }, + { + "siteRegistry": true, + "dateReceived": "2019-06-02", + "dateCompleted": "2016-09-02", + "dateEntered": "2015-09-27", + "dateRegistrar": "2023-06-16", + "dateLocalAuthorityReceived": "2020-09-13", + "summary": "Sunt labore omnis.", + "informationUsed": "Eum vitae nulla voluptate.\nNesciunt sapiente veritatis eaque labore cupiditate doloribus molestiae.\nNatus consectetur neque soluta incidunt.\nSed magni in ipsa itaque dolorem.\nVoluptate reiciendis tempora eveniet.", + "pastOrPresentOrders": "Ea soluta repellendus.", + "commercialAndIndustrialPurposes": [ { "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { @@ -72562,106 +79858,95 @@ { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "HILPERT RAMON", - "timestamp": "2021-09-23" + "user": "EMARD STEWART", + "timestamp": "2016-06-29" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "DIETRICH ONA", - "timestamp": "2017-11-08" - }, - { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "SAWAYN KALEIGH", - "timestamp": "2017-08-25" - }, - { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "WEBER JADON", - "timestamp": "2014-07-14" - }, - { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "SCHMELER MARION", - "timestamp": "2015-02-14" + "user": "DACH CHRISTOPHE", + "timestamp": "2023-02-15" }, { - "siteRegistry": true, + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "ZIEMANN LAFAYETTE", - "timestamp": "2018-04-07" + "user": "KUNZE PABLO", + "timestamp": "2023-06-19" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "TREUTEL-LEMKE SUSIE", - "timestamp": "2016-05-21" + "user": "MCKENZIE GABRIEL", + "timestamp": "2018-06-26" }, { - "siteRegistry": true, + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "CORMIER SOPHIA", - "timestamp": "2014-12-15" + "user": "DURGAN BELLE", + "timestamp": "2015-02-19" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "BERGSTROM DAVONTE", - "timestamp": "2015-07-11" + "user": "DONNELLY CASEY", + "timestamp": "2022-07-14" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "KILBACK AMELIE", - "timestamp": "2017-06-25" + "user": "WIEGAND DONATO", + "timestamp": "2021-12-31" } ], "associatedSites": [ { - "dateNoted": "2017-03-01", + "dateNoted": "2015-01-31", "notes": "", - "parcelID": "17324", - "siteID": "20804", + "parcelID": "16750", + "siteID": "17607", + "siteRegistry": true + }, + { + "dateNoted": "2022-03-22", + "notes": "", + "parcelID": "20942", + "siteID": "18326", "siteRegistry": true }, { - "dateNoted": "2014-12-11", + "dateNoted": "2022-04-27", "notes": "", - "parcelID": "17443", - "siteID": "16418", + "parcelID": "19581", + "siteID": "16150", "siteRegistry": false } ] }, { - "uuid": "17b61022-d1c1-410c-ae32-825dde597b7a", - "siteID": 18352, - "address": "2529 Lucinda Bypass", - "latitude": 51.4711, - "longitude": -133.7314, - "lastUpdated": "2019-06-29", - "city": "West Codybury", - "region": "Vancouver Island/Coast", - "victoriaFile": "26250-20/13564", + "uuid": "9bd74e0b-cd1e-43e3-b2d0-599d2e040d11", + "siteID": 19907, + "address": "16590 Norma Falls", + "latitude": 54.6794, + "longitude": -121.5145, + "lastUpdated": "2017-08-23", + "city": "Kuhnmouth", + "region": "Mainland/Southwest", + "victoriaFile": "26250-20/1059", "regionalFile": "N/A", "parcelIDs": [ - 4063114, - 5621136, - 4003754, - 5281928, - 3801597 + 9839221, + 1239402, + 9677607, + 8262266, + 6151385 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2023-04-04", - "completed": "2018-11-10", - "initiated": "2018-11-02", - "ministryContact": "WELCH AUBREY", + "createdAt": "2017-07-09", + "completed": "2018-01-20", + "initiated": "2019-07-26", + "ministryContact": "DOOLEY JEREMY", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -72670,28 +79955,38 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false } ], "siteRegistry": false }, { - "createdAt": "2016-05-16", - "completed": "2019-07-27", - "initiated": "2021-11-27", - "ministryContact": "CUMMINGS-VON SAIGE", + "createdAt": "2019-11-29", + "completed": "2018-06-01", + "initiated": "2022-08-18", + "ministryContact": "MANTE CORDELL", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -72710,39 +80005,19 @@ "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - } - ], - "siteRegistry": false - }, - { - "createdAt": "2017-08-12", - "completed": "2018-12-07", - "initiated": "2016-09-18", - "ministryContact": "LARSON JETTIE", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false } ], "siteRegistry": true @@ -72750,32 +80025,22 @@ ], "participants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2019-06-11", - "startDate": "2015-02-14", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": true - }, - { - "name": "IPSUM", - "endDate": "2014-01-21", - "startDate": "2022-02-02", + "name": "AMET, DOLOR SIT", + "endDate": "2018-02-17", + "startDate": "2023-05-24", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2014-10-06", - "startDate": "2020-10-19", + "name": "AMET, DOLOR SIT", + "endDate": "2021-12-18", + "startDate": "2016-06-15", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": true } @@ -72783,30 +80048,64 @@ "suspectLandUses": [ { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-11-16 (described on Site Profile dated 2019-11-16)", + "notes": "INSERTED FOR SITE PROFILE DATED 2023-08-11 (described on Site Profile dated 2023-08-11)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-01-25 (described on Site Profile dated 2022-01-25)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "notes": "INSERTED FOR SITE PROFILE DATED 2022-10-27 (described on Site Profile dated 2022-10-27)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + } + ], + "parcelDescriptions": [ + { + "siteRegistry": false, + "dateNoted": "2017-03-11", + "parcelID": "16511", + "crownLandUsePIN": "18119", + "crownLandFileNumber": "16255", + "landDescription": "LOT 4 OF LOT 4 BLOCK 1 DISTRICT LOT 4 PLAN 6634" + }, + { + "siteRegistry": true, + "dateNoted": "2017-12-10", + "parcelID": "18673", + "crownLandUsePIN": "20336", + "crownLandFileNumber": "20071", + "landDescription": "LOT 3 OF LOT 2 BLOCK 1 DISTRICT LOT 2 PLAN 7520" + }, + { + "siteRegistry": true, + "dateNoted": "2021-03-08", + "parcelID": "16597", + "crownLandUsePIN": "19033", + "crownLandFileNumber": "20879", + "landDescription": "LOT 2 OF LOT 1 BLOCK 1 DISTRICT LOT 5 PLAN 4994" + }, + { + "siteRegistry": true, + "dateNoted": "2021-07-16", + "parcelID": "17504", + "crownLandUsePIN": "18564", + "crownLandFileNumber": "19953", + "landDescription": "LOT 3 OF LOT 1 BLOCK 3 DISTRICT LOT 5 PLAN 6397" } ], "siteDisclosures": [ { "siteRegistry": true, - "dateReceived": "2017-02-16", - "dateCompleted": "2021-01-30", - "dateEntered": "2015-08-10", - "dateRegistrar": "2015-02-17", - "dateLocalAuthorityReceived": "2021-09-21", - "summary": "Maiores at sequi delectus.", - "informationUsed": "Vero minus excepturi quidem porro.\nAliquid et exercitationem optio at accusantium beatae dolores.\nVelit aut a ipsum nobis consectetur ad ratione.", - "pastOrPresentOrders": "Provident exercitationem quia enim.\nDistinctio inventore repudiandae amet accusamus mollitia quis.\nEius impedit dolores suscipit vel.", + "dateReceived": "2020-02-21", + "dateCompleted": "2022-05-19", + "dateEntered": "2019-06-13", + "dateRegistrar": "2013-10-21", + "dateLocalAuthorityReceived": "2020-06-15", + "summary": "Tenetur id cumque ab tenetur voluptatum nemo sequi ipsa.\nPariatur atque vero vero.\nArchitecto praesentium debitis atque ipsa cupiditate aliquam saepe.", + "informationUsed": "Culpa veniam consectetur officiis similique.\nQui ipsa animi asperiores temporibus soluta rem esse quas.\nIste voluptatum qui aspernatur.", + "pastOrPresentOrders": "Itaque quidem veritatis veniam.", "commercialAndIndustrialPurposes": [ { "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, { @@ -72815,25 +80114,30 @@ "siteRegistry": true }, { - "scheduleReference": "F2*", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true } ] }, { "siteRegistry": false, - "dateReceived": "2018-06-11", - "dateCompleted": "2015-04-17", - "dateEntered": "2020-04-13", - "dateRegistrar": "2020-05-11", - "dateLocalAuthorityReceived": "2023-06-23", - "summary": "Ea id quas ut.\nSuscipit nemo non accusamus nulla magnam ipsa quo ea architecto.\nIpsam quisquam magnam excepturi.", - "informationUsed": "Soluta iste harum alias beatae aspernatur.\nNisi nostrum eveniet earum hic neque expedita optio nesciunt exercitationem.\nSapiente in hic quo rerum similique.", - "pastOrPresentOrders": "Fugit id fugit incidunt necessitatibus sint neque.\nEligendi labore modi beatae sunt.\nLibero possimus quisquam repellendus sed debitis non sed modi.", + "dateReceived": "2018-11-24", + "dateCompleted": "2015-09-21", + "dateEntered": "2016-01-30", + "dateRegistrar": "2014-01-16", + "dateLocalAuthorityReceived": "2014-04-30", + "summary": "Sint atque earum ipsum.\nImpedit nihil nam.", + "informationUsed": "Ad quas enim.\nArchitecto reprehenderit facilis accusantium sequi.\nMinus architecto eligendi unde earum consequuntur error quibusdam eos minima.\nDicta laboriosam fugiat eum odio maiores illo ipsam ea autem.\nSequi dolores laborum.", + "pastOrPresentOrders": "Praesentium ex saepe veniam occaecati expedita consequuntur.", "commercialAndIndustrialPurposes": [ { - "scheduleReference": "F2*", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, @@ -72843,7 +80147,7 @@ "siteRegistry": false }, { - "scheduleReference": "F2*", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false } @@ -72851,103 +80155,116 @@ } ], "activityLog": [ + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "VANDERVORT LUDIE", + "timestamp": "2020-08-19" + }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "KIEHN SHANON", - "timestamp": "2022-11-06" + "user": "WILLIAMSON REGINALD", + "timestamp": "2015-10-20" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "HOEGER JAMISON", - "timestamp": "2017-04-02" + "user": "OSINSKI ROSALIND", + "timestamp": "2018-01-06" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "HERMISTON DESHAUN", - "timestamp": "2018-04-05" + "user": "FRANECKI SELENA", + "timestamp": "2016-03-28" }, { - "siteRegistry": true, + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "ARMSTRONG ERIK", - "timestamp": "2020-11-22" + "user": "STARK JEROME", + "timestamp": "2015-10-19" }, { - "siteRegistry": true, + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "LITTEL-HILLL HENRI", - "timestamp": "2019-07-28" + "user": "BODE-SCHUSTER PEDRO", + "timestamp": "2018-03-14" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "PAUCEK ANNABEL", - "timestamp": "2014-04-22" + "user": "LEMKE YASMEEN", + "timestamp": "2018-01-22" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "O'CONNELL VENA", - "timestamp": "2018-12-23" + "user": "TROMP ODIE", + "timestamp": "2023-06-19" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "STEUBER HAILIE", - "timestamp": "2020-03-17" + "user": "STANTON STUART", + "timestamp": "2014-11-16" }, { - "siteRegistry": true, + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "KULAS MEKHI", - "timestamp": "2020-03-15" + "user": "MEDHURST HETTIE", + "timestamp": "2023-04-11" } ], "associatedSites": [ { - "dateNoted": "2021-04-06", + "dateNoted": "2015-09-09", + "notes": "", + "parcelID": "20805", + "siteID": "20958", + "siteRegistry": false + }, + { + "dateNoted": "2014-06-06", "notes": "", - "parcelID": "19516", - "siteID": "17036", + "parcelID": "18726", + "siteID": "20583", "siteRegistry": true }, { - "dateNoted": "2016-10-31", + "dateNoted": "2022-07-28", "notes": "", - "parcelID": "19786", - "siteID": "20671", + "parcelID": "19051", + "siteID": "16677", "siteRegistry": false } ] }, { - "uuid": "e13d1f8b-34ce-4d74-8c00-11d99a3128c3", - "siteID": 17218, - "address": "506 Cassin Parkways", - "latitude": 53.4722, - "longitude": -132.1537, - "lastUpdated": "2022-01-27", - "city": "Deannabury", - "region": "Kootenay", - "victoriaFile": "26250-20/8508", + "uuid": "3754547a-f0e6-4a21-8595-5574e2a7eef3", + "siteID": 15710, + "address": "6265 Esperanza View", + "latitude": 57.7078, + "longitude": -136.4208, + "lastUpdated": "2017-02-17", + "city": "Chula Vista", + "region": "Cariboo", + "victoriaFile": "26250-20/8517", "regionalFile": "N/A", "parcelIDs": [ - 6407218, - 2672147, - 3645084, - 2398854, - 9948122 + 6791322, + 3794164, + 4428205, + 9446082, + 3393716 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2019-05-04", - "completed": "2014-04-22", - "initiated": "2015-10-05", - "ministryContact": "HUELS DENIS", + "createdAt": "2022-03-28", + "completed": "2022-02-27", + "initiated": "2021-11-22", + "ministryContact": "MILLER JONATHAN", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -72957,22 +80274,27 @@ "notationParticipants": [ { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true + "role": "SUBMITTED BY", + "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2021-01-16", - "completed": "2018-09-11", - "initiated": "2017-10-14", - "ministryContact": "ROLFSON OSVALDO", + "createdAt": "2017-07-22", + "completed": "2015-12-25", + "initiated": "2021-01-31", + "ministryContact": "STARK LOYAL", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -72982,28 +80304,13 @@ "notationParticipants": [ { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true } ], "siteRegistry": false @@ -73011,19 +80318,39 @@ ], "participants": [ { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2014-04-02", - "startDate": "2015-05-27", + "name": "IPSUM", + "endDate": "2022-05-28", + "startDate": "2021-06-24", "notes": "", "roles": [ "EMPLOYEE" ], "siteRegistry": true }, + { + "name": "IPSUM", + "endDate": "2017-11-02", + "startDate": "2023-01-22", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "name": "IPSUM", + "endDate": "2018-03-26", + "startDate": "2015-12-31", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, { "name": "SHELL CANADA PRODUCTS", - "endDate": "2018-03-24", - "startDate": "2021-09-15", + "endDate": "2018-12-03", + "startDate": "2015-08-10", "notes": "", "roles": [ "ORGANIZATION" @@ -73031,9 +80358,9 @@ "siteRegistry": false }, { - "name": "AMET, DOLOR SIT", - "endDate": "2016-02-23", - "startDate": "2018-10-23", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2016-05-10", + "startDate": "2013-10-12", "notes": "", "roles": [ "ORGANIZATION" @@ -73044,26 +80371,54 @@ "suspectLandUses": [ { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-07-17 (described on Site Profile dated 2021-07-17)", + "notes": "INSERTED FOR SITE PROFILE DATED 2021-03-26 (described on Site Profile dated 2021-03-26)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2023-09-17 (described on Site Profile dated 2023-09-17)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2017-05-31 (described on Site Profile dated 2017-05-31)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-09-02 (described on Site Profile dated 2021-09-02)", + "notes": "INSERTED FOR SITE PROFILE DATED 2020-10-19 (described on Site Profile dated 2020-10-19)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], - "siteDisclosures": [ + "parcelDescriptions": [ + { + "siteRegistry": true, + "dateNoted": "2014-07-09", + "parcelID": "15837", + "crownLandUsePIN": "15778", + "crownLandFileNumber": "20971", + "landDescription": "LOT 5 OF LOT 5 BLOCK 2 DISTRICT LOT 4 PLAN 7989" + }, { "siteRegistry": false, - "dateReceived": "2019-02-13", - "dateCompleted": "2019-04-24", - "dateEntered": "2016-08-23", - "dateRegistrar": "2018-04-30", - "dateLocalAuthorityReceived": "2017-02-27", - "summary": "Culpa debitis sint nihil pariatur laudantium.", - "informationUsed": "Non nulla laudantium provident veniam doloremque.\nQuia consequatur tenetur praesentium voluptatibus saepe inventore dolores.\nOfficia quo corporis error ratione repellendus.\nQuibusdam facere impedit similique inventore deserunt atque sequi.", - "pastOrPresentOrders": "Praesentium perferendis molestias aliquam cum occaecati rerum quisquam.\nConsequatur excepturi consequuntur fuga inventore optio occaecati aperiam quod maxime.\nDolore tempora commodi reprehenderit eum nihil.", + "dateNoted": "2018-11-23", + "parcelID": "15921", + "crownLandUsePIN": "15997", + "crownLandFileNumber": "16396", + "landDescription": "LOT 2 OF LOT 2 BLOCK 3 DISTRICT LOT 3 PLAN 8494" + } + ], + "siteDisclosures": [ + { + "siteRegistry": true, + "dateReceived": "2019-11-29", + "dateCompleted": "2016-12-29", + "dateEntered": "2016-04-10", + "dateRegistrar": "2014-02-08", + "dateLocalAuthorityReceived": "2021-04-26", + "summary": "Optio aliquam odit libero vel.\nNam odio illo maxime voluptate cumque sit.", + "informationUsed": "Libero eum dolorem dolore dolores ducimus voluptas provident.\nDoloribus perferendis veniam molestias enim dolor labore.\nNihil mollitia expedita eum adipisci expedita nostrum.", + "pastOrPresentOrders": "Id labore aspernatur sunt deleniti.", "commercialAndIndustrialPurposes": [ { "scheduleReference": "F1*", @@ -73071,17 +80426,7 @@ "siteRegistry": true }, { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true - }, - { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true - }, - { - "scheduleReference": "F1*", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true } @@ -73089,125 +80434,115 @@ }, { "siteRegistry": false, - "dateReceived": "2015-12-04", - "dateCompleted": "2018-07-24", - "dateEntered": "2016-08-22", - "dateRegistrar": "2020-05-29", - "dateLocalAuthorityReceived": "2023-08-30", - "summary": "Natus odio omnis recusandae repellendus beatae facilis error.", - "informationUsed": "Tempora distinctio voluptas quibusdam voluptatum praesentium atque quisquam beatae nostrum.\nRepudiandae pariatur eaque vero.\nRepellendus quia unde aspernatur tempora consectetur dolorum rerum impedit.", - "pastOrPresentOrders": "Veniam culpa excepturi cupiditate error ad et itaque ullam perferendis.\nVero sapiente omnis praesentium autem repellat.\nMolestiae magnam ipsum quidem.", + "dateReceived": "2018-11-23", + "dateCompleted": "2023-07-27", + "dateEntered": "2017-01-08", + "dateRegistrar": "2017-12-03", + "dateLocalAuthorityReceived": "2017-04-17", + "summary": "Consequuntur deserunt quae at explicabo accusantium porro.", + "informationUsed": "Inventore in quae quibusdam corrupti tempora perspiciatis deleniti quisquam aperiam.\nQuisquam placeat vero.\nAt pariatur ut accusamus in.", + "pastOrPresentOrders": "Libero sed repellat est dolorum dolore veritatis quis.\nError provident dolor officiis eius excepturi dignissimos explicabo.", "commercialAndIndustrialPurposes": [ { "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false - }, - { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { - "scheduleReference": "F1*", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true + "siteRegistry": false } ] } ], "activityLog": [ { - "siteRegistry": true, + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "CRIST-WATSICA NAOMIE", - "timestamp": "2014-08-02" + "user": "MCDERMOTT KURT", + "timestamp": "2014-10-04" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "WUNSCH KARIANNE", - "timestamp": "2023-01-24" + "user": "SCHUMM MARION", + "timestamp": "2021-01-06" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "KIRLIN VICENTE", - "timestamp": "2014-03-17" + "user": "RUSSEL BRAXTON", + "timestamp": "2019-12-19" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "SCHMITT NICOLETTE", - "timestamp": "2016-11-10" - }, - { - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "MARVIN SUSANA", - "timestamp": "2019-03-01" + "user": "DIETRICH NICK", + "timestamp": "2013-11-06" }, { - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "OBERBRUNNER NYASIA", - "timestamp": "2018-05-21" - }, - { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "MAYERT FREEDA", - "timestamp": "2018-01-18" + "user": "LARSON COLLIN", + "timestamp": "2014-01-08" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "RAU NELSON", - "timestamp": "2021-12-04" + "user": "HAMMES DARYL", + "timestamp": "2015-09-18" } ], "associatedSites": [ { - "dateNoted": "2018-12-15", + "dateNoted": "2016-12-30", "notes": "", - "parcelID": "16649", - "siteID": "19367", + "parcelID": "19083", + "siteID": "16933", "siteRegistry": false }, { - "dateNoted": "2016-12-07", + "dateNoted": "2014-10-20", "notes": "", - "parcelID": "15246", - "siteID": "18201", + "parcelID": "20792", + "siteID": "18727", "siteRegistry": true + }, + { + "dateNoted": "2015-02-20", + "notes": "", + "parcelID": "16998", + "siteID": "16392", + "siteRegistry": false } ] }, { - "uuid": "1e75a7f1-fef1-49ac-8efe-71705b9a02d3", - "siteID": 16638, - "address": "782 West Spurs", - "latitude": 56.0798, - "longitude": -133.3413, - "lastUpdated": "2017-02-15", - "city": "Emelyboro", - "region": " North Coast", - "victoriaFile": "26250-20/2048", + "uuid": "2c4e21ea-0f0d-4902-b10f-8d423b4cdf51", + "siteID": 15638, + "address": "585 Maggio Run", + "latitude": 53.6391, + "longitude": -120.1338, + "lastUpdated": "2022-05-29", + "city": "Garden Grove", + "region": "Thompson-Okanagan", + "victoriaFile": "26250-20/19736", "regionalFile": "N/A", "parcelIDs": [ - 4261877, - 8165085, - 6543374, - 2828739, - 7452087 + 9659785, + 2472672, + 2202158, + 7712310, + 4678096 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2019-01-13", - "completed": "2023-08-25", - "initiated": "2017-09-18", - "ministryContact": "HEATHCOTE MARLEY", + "createdAt": "2022-12-20", + "completed": "2014-01-05", + "initiated": "2015-08-22", + "ministryContact": "DANIEL MERLE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -73221,28 +80556,43 @@ "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false - }, + } + ], + "siteRegistry": false + }, + { + "createdAt": "2015-11-04", + "completed": "2017-04-19", + "initiated": "2018-08-21", + "ministryContact": "HOEGER MONTANA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false } ], "siteRegistry": true }, { - "createdAt": "2017-06-04", - "completed": "2015-06-15", - "initiated": "2017-01-06", - "ministryContact": "RUNOLFSDOTTIR EUGENIA", + "createdAt": "2015-04-01", + "completed": "2021-11-07", + "initiated": "2018-08-25", + "ministryContact": "MCCULLOUGH CHESTER", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -73252,27 +80602,27 @@ "notationParticipants": [ { "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true + "role": "SUBMITTED BY", + "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false } ], "siteRegistry": false }, { - "createdAt": "2016-11-05", - "completed": "2019-08-15", - "initiated": "2016-02-28", - "ministryContact": "GERLACH MYRTLE", + "createdAt": "2018-10-18", + "completed": "2018-02-04", + "initiated": "2017-06-10", + "ministryContact": "VANDERVORT MYRA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -73282,23 +80632,23 @@ "notationParticipants": [ { "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true + "role": "REQUESTED BY", + "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true + "role": "REQUESTED BY", + "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false } ], "siteRegistry": false @@ -73307,8 +80657,8 @@ "participants": [ { "name": "AMET, DOLOR SIT", - "endDate": "2022-03-30", - "startDate": "2022-08-02", + "endDate": "2020-01-22", + "startDate": "2017-09-22", "notes": "", "roles": [ "ORGANIZATION" @@ -73316,19 +80666,39 @@ "siteRegistry": false }, { - "name": "IPSUM", - "endDate": "2015-10-13", - "startDate": "2022-05-05", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2014-08-13", + "startDate": "2014-05-08", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": false + "siteRegistry": true }, { "name": "AMET, DOLOR SIT", - "endDate": "2022-08-09", - "startDate": "2016-09-26", + "endDate": "2016-03-01", + "startDate": "2019-04-07", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "name": "AMET, DOLOR SIT", + "endDate": "2022-03-07", + "startDate": "2021-12-22", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "name": "IPSUM", + "endDate": "2016-02-08", + "startDate": "2016-05-19", "notes": "", "roles": [ "ORGANIZATION" @@ -73339,44 +80709,65 @@ "suspectLandUses": [ { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-10-02 (described on Site Profile dated 2017-10-02)", + "notes": "INSERTED FOR SITE PROFILE DATED 2020-10-06 (described on Site Profile dated 2020-10-06)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2013-12-23 (described on Site Profile dated 2013-12-23)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "notes": "INSERTED FOR SITE PROFILE DATED 2020-01-09 (described on Site Profile dated 2020-01-09)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + } + ], + "parcelDescriptions": [ + { + "siteRegistry": false, + "dateNoted": "2019-06-10", + "parcelID": "17422", + "crownLandUsePIN": "20889", + "crownLandFileNumber": "17830", + "landDescription": "LOT 1 OF LOT 4 BLOCK 1 DISTRICT LOT 4 PLAN 3728" }, { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-06-27 (described on Site Profile dated 2018-06-27)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "dateNoted": "2014-12-14", + "parcelID": "17294", + "crownLandUsePIN": "16705", + "crownLandFileNumber": "20351", + "landDescription": "LOT 3 OF LOT 2 BLOCK 2 DISTRICT LOT 3 PLAN 3901" }, { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-12-03 (described on Site Profile dated 2014-12-03)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "dateNoted": "2017-12-09", + "parcelID": "18467", + "crownLandUsePIN": "17420", + "crownLandFileNumber": "17882", + "landDescription": "LOT 2 OF LOT 5 BLOCK 1 DISTRICT LOT 5 PLAN 7095" } ], "siteDisclosures": [ { - "siteRegistry": false, - "dateReceived": "2022-05-31", - "dateCompleted": "2022-12-01", - "dateEntered": "2018-09-02", - "dateRegistrar": "2018-12-26", - "dateLocalAuthorityReceived": "2022-01-07", - "summary": "Provident placeat corrupti qui adipisci.", - "informationUsed": "Tenetur fugit voluptatibus suscipit tempore totam.\nQui quas nostrum aliquam optio distinctio.\nUnde ipsam distinctio asperiores dignissimos incidunt deleniti sed labore laudantium.\nMagnam ducimus deleniti.", - "pastOrPresentOrders": "Voluptatem consequatur laboriosam cumque et.", + "siteRegistry": true, + "dateReceived": "2020-08-01", + "dateCompleted": "2022-07-10", + "dateEntered": "2020-05-06", + "dateRegistrar": "2018-03-17", + "dateLocalAuthorityReceived": "2021-12-15", + "summary": "Numquam dignissimos deleniti veniam labore ullam laboriosam.\nAccusantium nemo placeat.", + "informationUsed": "Soluta nesciunt unde beatae totam voluptatem doloribus reiciendis debitis quas.\nUllam rerum esse corrupti fugit officiis eius sapiente.\nOdit iusto possimus.", + "pastOrPresentOrders": "Fugit quam quo ex temporibus exercitationem repudiandae soluta cupiditate.\nEaque facere aperiam.\nVoluptatibus molestiae repudiandae repudiandae laudantium facere est architecto voluptatem.", "commercialAndIndustrialPurposes": [ { "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false }, { - "scheduleReference": "F2*", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true } @@ -73384,98 +80775,86 @@ } ], "activityLog": [ - { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "HARRIS TRAVON", - "timestamp": "2022-01-18" - }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "HILLS MAXIMILLIA", - "timestamp": "2016-04-07" + "user": "DIBBERT LON", + "timestamp": "2016-06-24" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "KUHLMAN LILLIAN", - "timestamp": "2019-11-05" + "user": "CREMIN KAMILLE", + "timestamp": "2021-12-16" }, { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "GRIMES-PREDOVIC ARNO", - "timestamp": "2015-12-11" + "user": "TROMP MADALYN", + "timestamp": "2023-08-18" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "WOLF-RODRIGUEZ KENNA", - "timestamp": "2018-06-01" + "user": "MRAZ NANNIE", + "timestamp": "2014-03-19" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "VONRUEDEN MICHELE", - "timestamp": "2023-07-19" - }, - { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "SCHULTZ DELL", - "timestamp": "2014-11-17" + "user": "EBERT PRICE", + "timestamp": "2019-11-01" } ], "associatedSites": [ { - "dateNoted": "2015-08-15", + "dateNoted": "2018-08-29", "notes": "", - "parcelID": "15523", - "siteID": "18995", + "parcelID": "16768", + "siteID": "18326", "siteRegistry": false }, { - "dateNoted": "2021-10-23", + "dateNoted": "2021-03-07", "notes": "", - "parcelID": "19053", - "siteID": "17898", - "siteRegistry": true + "parcelID": "16289", + "siteID": "20583", + "siteRegistry": false }, { - "dateNoted": "2019-10-03", + "dateNoted": "2018-11-15", "notes": "", - "parcelID": "17297", - "siteID": "15276", + "parcelID": "16907", + "siteID": "15660", "siteRegistry": true } ] }, { - "uuid": "56235a5f-5adb-49b1-842f-0afd1c892999", - "siteID": 19400, - "address": "973 Davis Oval", - "latitude": 51.8665, - "longitude": -131.0994, - "lastUpdated": "2021-09-05", - "city": "Stanshire", + "uuid": "604c9c28-848e-4ead-bf1a-a510864262a5", + "siteID": 16640, + "address": "377 Carissa Islands", + "latitude": 55.0881, + "longitude": -121.0525, + "lastUpdated": "2017-02-19", + "city": "East Humberto", "region": "Vancouver Island/Coast", - "victoriaFile": "26250-20/4661", + "victoriaFile": "26250-20/2901", "regionalFile": "N/A", "parcelIDs": [ - 4107747, - 6238319, - 213172, - 7752073, - 4853551 + 9543234, + 9879889, + 5548031, + 2060824, + 1584927 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2017-08-22", - "completed": "2023-04-29", - "initiated": "2018-06-04", - "ministryContact": "BUCKRIDGE CATHARINE", + "createdAt": "2019-05-02", + "completed": "2023-06-09", + "initiated": "2014-10-23", + "ministryContact": "LANG CATHRYN", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -73483,29 +80862,99 @@ "" ], "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "createdAt": "2022-11-20", + "completed": "2013-10-20", + "initiated": "2019-07-26", + "ministryContact": "FLATLEY MIGUEL", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "createdAt": "2015-07-22", + "completed": "2019-11-21", + "initiated": "2022-11-07", + "ministryContact": "LESCH RAMON", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false } ], "siteRegistry": true }, { - "createdAt": "2014-10-31", - "completed": "2019-08-04", - "initiated": "2021-05-17", - "ministryContact": "MARKS ENRIQUE", + "createdAt": "2019-02-02", + "completed": "2020-03-04", + "initiated": "2019-12-24", + "ministryContact": "PAUCEK ARLO", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -73516,21 +80965,56 @@ { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "createdAt": "2016-03-08", + "completed": "2014-10-24", + "initiated": "2017-04-04", + "ministryContact": "GORCZANY OTHA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": false } ], @@ -73540,8 +81024,8 @@ "participants": [ { "name": "SHELL CANADA PRODUCTS", - "endDate": "2014-12-20", - "startDate": "2020-11-10", + "endDate": "2018-10-28", + "startDate": "2015-12-06", "notes": "", "roles": [ "ORGANIZATION" @@ -73549,176 +81033,242 @@ "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2015-12-09", - "startDate": "2023-01-19", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2022-10-31", + "startDate": "2022-11-06", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": true + }, + { + "name": "SHELL CANADA PRODUCTS", + "endDate": "2018-05-17", + "startDate": "2017-04-23", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false } ], "suspectLandUses": [ { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-09-29 (described on Site Profile dated 2022-09-29)", + "notes": "INSERTED FOR SITE PROFILE DATED 2022-07-07 (described on Site Profile dated 2022-07-07)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2017-05-17 (described on Site Profile dated 2017-05-17)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-10-31 (described on Site Profile dated 2021-10-31)", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2020-06-07 (described on Site Profile dated 2020-06-07)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + } + ], + "parcelDescriptions": [ + { + "siteRegistry": false, + "dateNoted": "2016-07-12", + "parcelID": "20360", + "crownLandUsePIN": "16791", + "crownLandFileNumber": "18062", + "landDescription": "LOT 1 OF LOT 3 BLOCK 1 DISTRICT LOT 1 PLAN 6381" }, { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2020-03-23 (described on Site Profile dated 2020-03-23)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "dateNoted": "2018-04-26", + "parcelID": "17547", + "crownLandUsePIN": "18783", + "crownLandFileNumber": "20400", + "landDescription": "LOT 3 OF LOT 3 BLOCK 2 DISTRICT LOT 4 PLAN 8348" }, { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-09-22 (described on Site Profile dated 2017-09-22)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "dateNoted": "2014-06-19", + "parcelID": "20481", + "crownLandUsePIN": "19419", + "crownLandFileNumber": "19185", + "landDescription": "LOT 3 OF LOT 5 BLOCK 1 DISTRICT LOT 2 PLAN 7401" + }, + { + "siteRegistry": true, + "dateNoted": "2017-01-28", + "parcelID": "19843", + "crownLandUsePIN": "17912", + "crownLandFileNumber": "20704", + "landDescription": "LOT 2 OF LOT 4 BLOCK 3 DISTRICT LOT 1 PLAN 5408" + }, + { + "siteRegistry": false, + "dateNoted": "2016-09-06", + "parcelID": "20274", + "crownLandUsePIN": "15669", + "crownLandFileNumber": "20343", + "landDescription": "LOT 1 OF LOT 5 BLOCK 4 DISTRICT LOT 3 PLAN 5646" } ], "siteDisclosures": [ { "siteRegistry": true, - "dateReceived": "2023-06-13", - "dateCompleted": "2017-06-10", - "dateEntered": "2019-05-09", - "dateRegistrar": "2020-10-01", - "dateLocalAuthorityReceived": "2018-07-25", - "summary": "Suscipit debitis recusandae expedita aperiam.", - "informationUsed": "Nihil minima hic ullam aliquid.\nNatus commodi quas.\nMaiores harum ab perspiciatis itaque.\nDolorum explicabo iusto dolorum dolor ipsa error odit.", - "pastOrPresentOrders": "Quae ullam aperiam saepe harum ullam nisi.\nBlanditiis velit asperiores recusandae impedit libero corporis quae illum necessitatibus.", + "dateReceived": "2019-11-08", + "dateCompleted": "2016-09-15", + "dateEntered": "2017-04-22", + "dateRegistrar": "2015-12-02", + "dateLocalAuthorityReceived": "2015-07-22", + "summary": "Ducimus dolores tenetur corporis architecto nobis quas.", + "informationUsed": "Corporis culpa quo consequuntur aut unde repellendus.\nPorro adipisci itaque odio ut voluptatibus.\nEligendi quod minima quis dolor perferendis recusandae impedit ipsum necessitatibus.\nInventore eveniet facilis laudantium exercitationem cumque numquam nihil illo maxime.", + "pastOrPresentOrders": "Facere facere in explicabo deleniti illo eaque dolore velit.\nAutem ad nihil quam itaque.", "commercialAndIndustrialPurposes": [ - { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false - }, { "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false }, { - "scheduleReference": "F1*", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true + "siteRegistry": false } ] }, { - "siteRegistry": true, - "dateReceived": "2015-03-23", - "dateCompleted": "2016-11-30", - "dateEntered": "2014-09-23", - "dateRegistrar": "2020-05-14", - "dateLocalAuthorityReceived": "2023-07-08", - "summary": "Cum natus earum consequatur autem temporibus voluptatum voluptatum beatae.\nEius rem rerum placeat ratione error.\nQuos perspiciatis adipisci omnis magnam.", - "informationUsed": "Repellat dolor at saepe deleniti debitis provident.\nPerferendis facere quos recusandae voluptatibus repellat accusamus.\nMolestias voluptas perspiciatis numquam eligendi unde aliquid excepturi mollitia nisi.", - "pastOrPresentOrders": "Enim praesentium sed totam.", + "siteRegistry": false, + "dateReceived": "2015-11-27", + "dateCompleted": "2019-04-06", + "dateEntered": "2016-08-05", + "dateRegistrar": "2021-05-26", + "dateLocalAuthorityReceived": "2018-04-01", + "summary": "Laboriosam aperiam maiores voluptatum perspiciatis.\nRepudiandae asperiores impedit non autem debitis dignissimos nam qui saepe.", + "informationUsed": "Animi in explicabo illum.\nTemporibus perferendis voluptatum recusandae natus quod fugiat mollitia.\nNihil quas molestias deleniti veniam unde velit quos.", + "pastOrPresentOrders": "Vero consequatur ullam reiciendis voluptates.\nLaudantium nihil accusantium et quam.", "commercialAndIndustrialPurposes": [ { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false + }, + { + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false } ] } ], "activityLog": [ + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "PARKER ROSCOE", + "timestamp": "2014-01-22" + }, + { + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "KONOPELSKI LILLIANA", + "timestamp": "2014-04-14" + }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "ANDERSON BERNIECE", - "timestamp": "2014-12-20" + "user": "ROBEL HOLLIS", + "timestamp": "2016-02-16" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "GULGOWSKI LOTTIE", - "timestamp": "2015-12-28" + "user": "HERMANN DEVAN", + "timestamp": "2023-01-10" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "GOYETTE JAYDON", - "timestamp": "2017-02-01" + "user": "LEDNER ALVERA", + "timestamp": "2019-11-01" }, { - "siteRegistry": true, + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "KSHLERIN LOURDES", - "timestamp": "2021-02-12" + "user": "REICHERT MILLIE", + "timestamp": "2023-09-28" }, { "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "AUFDERHAR HENRY", - "timestamp": "2014-07-20" + "user": "GLEASON MARY", + "timestamp": "2020-12-13" }, { - "siteRegistry": false, + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "POUROS FRANCESCO", - "timestamp": "2019-08-04" + "user": "DIETRICH MAE", + "timestamp": "2016-01-08" }, { - "siteRegistry": true, + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "UPTON LARISSA", - "timestamp": "2019-06-11" + "user": "ABERNATHY MARGARETTA", + "timestamp": "2014-04-30" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "WEBER ZARIA", - "timestamp": "2016-10-23" + "user": "HARRIS ERIBERTO", + "timestamp": "2021-05-18" } ], "associatedSites": [ { - "dateNoted": "2017-11-14", + "dateNoted": "2021-07-28", + "notes": "", + "parcelID": "16953", + "siteID": "19583", + "siteRegistry": true + }, + { + "dateNoted": "2017-08-02", "notes": "", - "parcelID": "19133", - "siteID": "16296", + "parcelID": "17145", + "siteID": "18928", "siteRegistry": false } ] }, { - "uuid": "44b492ad-4ee3-498f-809f-35a403d18107", - "siteID": 19216, - "address": "46825 Parisian Land", - "latitude": 52.7209, - "longitude": -123.089, - "lastUpdated": "2017-03-12", - "city": "Santa Clara", + "uuid": "f12d9908-370e-4e4b-b674-93bb455f01cc", + "siteID": 19902, + "address": "205 Jerde Ridge", + "latitude": 58.2841, + "longitude": -122.364, + "lastUpdated": "2019-01-17", + "city": "East Arch", "region": "Kootenay", - "victoriaFile": "26250-20/15423", + "victoriaFile": "26250-20/8423", "regionalFile": "N/A", "parcelIDs": [ - 2055690, - 4655321, - 9257038, - 7931364, - 3199245 + 4821680, + 5138425, + 1906497, + 869422, + 7616199 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2016-10-18", - "completed": "2023-08-14", - "initiated": "2019-10-12", - "ministryContact": "CHAMPLIN ELMORE", + "createdAt": "2017-05-06", + "completed": "2021-01-01", + "initiated": "2023-02-13", + "ministryContact": "JACOBI AMY", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -73726,16 +81276,6 @@ "" ], "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", @@ -73743,22 +81283,17 @@ }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false } ], "siteRegistry": false }, { - "createdAt": "2017-09-25", - "completed": "2020-09-10", - "initiated": "2020-03-25", - "ministryContact": "HAAG NATALIE", + "createdAt": "2016-02-07", + "completed": "2015-01-31", + "initiated": "2022-04-22", + "ministryContact": "OLSON ELOISE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -73766,10 +81301,15 @@ "" ], "notationParticipants": [ + { + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, { "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { "name": "SNC-LAVALIN ENVIRONMENT INC.", @@ -73777,7 +81317,7 @@ "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false }, @@ -73793,18 +81333,28 @@ "participants": [ { "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2017-08-31", - "startDate": "2015-05-26", + "endDate": "2021-10-08", + "startDate": "2018-04-09", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": true }, { - "name": "AMET, DOLOR SIT", - "endDate": "2021-06-02", - "startDate": "2016-11-24", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2016-11-22", + "startDate": "2019-01-20", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2015-09-16", + "startDate": "2022-01-29", "notes": "", "roles": [ "EMPLOYEE" @@ -73813,18 +81363,18 @@ }, { "name": "AMET, DOLOR SIT", - "endDate": "2016-02-17", - "startDate": "2018-01-08", + "endDate": "2023-05-23", + "startDate": "2020-12-31", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false }, { - "name": "AMET, DOLOR SIT", - "endDate": "2015-07-27", - "startDate": "2016-01-29", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2022-07-16", + "startDate": "2018-09-06", "notes": "", "roles": [ "ORGANIZATION" @@ -73834,134 +81384,150 @@ ], "suspectLandUses": [ { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-05-23 (described on Site Profile dated 2015-05-23)", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2022-09-06 (described on Site Profile dated 2022-09-06)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-09-30 (described on Site Profile dated 2022-09-30)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "notes": "INSERTED FOR SITE PROFILE DATED 2019-02-03 (described on Site Profile dated 2019-02-03)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-12-15 (described on Site Profile dated 2016-12-15)", + "notes": "INSERTED FOR SITE PROFILE DATED 2022-10-24 (described on Site Profile dated 2022-10-24)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-05-28 (described on Site Profile dated 2018-05-28)", + "notes": "INSERTED FOR SITE PROFILE DATED 2017-03-24 (described on Site Profile dated 2017-03-24)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], - "siteDisclosures": [ + "parcelDescriptions": [ { "siteRegistry": true, - "dateReceived": "2016-07-26", - "dateCompleted": "2019-08-02", - "dateEntered": "2022-01-26", - "dateRegistrar": "2016-05-23", - "dateLocalAuthorityReceived": "2020-05-10", - "summary": "Dolores eveniet nobis sunt amet ad.\nIpsam dolore voluptatem eaque nam.\nPossimus vero quam repellat neque nostrum soluta quas.", - "informationUsed": "Ex nesciunt soluta numquam repellat molestiae non corporis.\nId eius aspernatur ex cupiditate tenetur officiis est.\nCommodi distinctio et sit doloremque nostrum laudantium consequuntur cupiditate cupiditate.\nEius amet fuga unde adipisci eius.", - "pastOrPresentOrders": "Ut saepe provident perferendis iusto amet facilis.", + "dateNoted": "2015-04-06", + "parcelID": "18879", + "crownLandUsePIN": "18587", + "crownLandFileNumber": "15570", + "landDescription": "LOT 2 OF LOT 5 BLOCK 3 DISTRICT LOT 3 PLAN 6137" + }, + { + "siteRegistry": false, + "dateNoted": "2023-09-14", + "parcelID": "19204", + "crownLandUsePIN": "16960", + "crownLandFileNumber": "19212", + "landDescription": "LOT 3 OF LOT 4 BLOCK 5 DISTRICT LOT 5 PLAN 5067" + } + ], + "siteDisclosures": [ + { + "siteRegistry": false, + "dateReceived": "2019-05-25", + "dateCompleted": "2017-01-31", + "dateEntered": "2014-10-19", + "dateRegistrar": "2016-11-25", + "dateLocalAuthorityReceived": "2019-03-22", + "summary": "Ipsa accusantium unde iste nulla dolores quidem quidem.\nIste tempore necessitatibus pariatur.\nId temporibus corporis veritatis ex assumenda esse eveniet veniam.", + "informationUsed": "Inventore aliquam expedita porro itaque vitae eum quidem.\nReiciendis ipsum nam assumenda sint.\nIllo maiores dolore saepe molestias libero ea exercitationem deserunt.", + "pastOrPresentOrders": "Eos pariatur est incidunt nostrum ullam velit distinctio.\nExercitationem consequatur quaerat totam.\nItaque fuga consequuntur odit ipsa.", "commercialAndIndustrialPurposes": [ { "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true + "siteRegistry": false }, { "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false + "siteRegistry": true }, { "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true - }, - { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false } ] }, { - "siteRegistry": false, - "dateReceived": "2022-03-03", - "dateCompleted": "2014-07-20", - "dateEntered": "2022-05-16", - "dateRegistrar": "2021-07-24", - "dateLocalAuthorityReceived": "2022-12-18", - "summary": "Quasi rerum delectus.\nCommodi ad aliquam consectetur id illo harum itaque.", - "informationUsed": "Quibusdam hic esse corrupti mollitia nulla.\nAssumenda consequatur tenetur.\nIure optio rem molestiae.", - "pastOrPresentOrders": "Accusantium eius voluptatem explicabo vitae recusandae illo.", + "siteRegistry": true, + "dateReceived": "2013-11-06", + "dateCompleted": "2014-11-18", + "dateEntered": "2022-09-26", + "dateRegistrar": "2019-08-08", + "dateLocalAuthorityReceived": "2023-09-02", + "summary": "Temporibus consequatur quos ea excepturi nisi dolorem.\nQuidem nisi sequi.\nEligendi ad corporis consequuntur nulla asperiores eius.", + "informationUsed": "Quos delectus voluptatum esse.\nSint quod dolor possimus temporibus corrupti omnis sapiente excepturi.\nNihil mollitia sit similique sequi dolorum optio.", + "pastOrPresentOrders": "Tempore dolore saepe incidunt quia natus cum.\nMolestias sunt nemo eligendi.", "commercialAndIndustrialPurposes": [ - { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false - }, { "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false }, { "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false } ] } ], "activityLog": [ - { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "GRANT AGLAE", - "timestamp": "2020-09-20" - }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "SCHINNER MARGARITA", - "timestamp": "2022-12-17" + "user": "BECHTELAR EDWARD", + "timestamp": "2015-03-10" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "TILLMAN LISETTE", - "timestamp": "2018-12-15" + "user": "POUROS HILLARY", + "timestamp": "2023-07-06" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "BECKER TOBIN", - "timestamp": "2015-01-08" + "user": "LEBSACK MYRTIS", + "timestamp": "2023-03-17" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "RODRIGUEZ KOBY", - "timestamp": "2019-06-01" + "user": "WALSH DAMON", + "timestamp": "2023-03-26" }, { "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "KLEIN OLIVER", - "timestamp": "2018-01-16" + "user": "LUETTGEN KESHAWN", + "timestamp": "2021-12-21" } ], "associatedSites": [ { - "dateNoted": "2014-04-12", + "dateNoted": "2015-12-16", "notes": "", - "parcelID": "19223", - "siteID": "19590", + "parcelID": "18907", + "siteID": "19847", "siteRegistry": true + }, + { + "dateNoted": "2016-08-25", + "notes": "", + "parcelID": "18886", + "siteID": "20268", + "siteRegistry": false + }, + { + "dateNoted": "2013-12-18", + "notes": "", + "parcelID": "17295", + "siteID": "15758", + "siteRegistry": false } ] } From 7e3eff64fa98a56463d72b3ad6768e525d7299ca Mon Sep 17 00:00:00 2001 From: Adam Coard Date: Tue, 10 Oct 2023 11:05:29 -0700 Subject: [PATCH 127/194] Have adding and deleting working on participant view --- .../features/site-details/participants.tsx | 38 +++++++++++++++++-- .../site-details/table/SiteDetailsTable.tsx | 16 +++++--- 2 files changed, 46 insertions(+), 8 deletions(-) diff --git a/frontend/site-search-frontend/src/features/site-details/participants.tsx b/frontend/site-search-frontend/src/features/site-details/participants.tsx index a3b397fa..7f674993 100644 --- a/frontend/site-search-frontend/src/features/site-details/participants.tsx +++ b/frontend/site-search-frontend/src/features/site-details/participants.tsx @@ -1,16 +1,46 @@ import { Button } from "react-bootstrap"; import SubSearch from "./sub-search/SubSearch"; import { RootState } from "@/store"; -import { useSelector } from "react-redux"; +import { useDispatch, useSelector } from "react-redux"; import SiteDetailsTable from "./table/SiteDetailsTable"; import { useParams } from "react-router-dom"; -import { Site } from "@/api/sites"; +import { Site, SiteParticipant } from "@/api/sites"; +// import { updateSite } from "../simple-search/simple-search"; +import { updateSite } from '../simple-search/simple-search'; export default function Participants() { const { siteID } = useParams(); const siteIDNum = parseInt(siteID); const site: Site = useSelector((state: RootState) => state.site.value.find(searchedSite => searchedSite.siteID === siteIDNum)); - // const dispatch = useDispatch(); + const dispatch = useDispatch(); + + function newParticipant(){ + const newParticipant: SiteParticipant = {name: '', endDate: '', roles: [''], notes: '', startDate: '', siteRegistry: false}; + const newSite: Site = { + ...site, + participants: [...site.participants, newParticipant] + }; + + dispatch(updateSite(newSite)) + } + + function removeParticipant(checkedObj){ + const checkedAsArray = [...Object.keys(checkedObj).map(key => checkedObj[key])]; + // console.log('remove', {checkedObj, checkedAsArray}) + + const newSite: Site = { + ...site, + participants: [...site.participants.filter((participant, index) => { + // if checked, we want to return false to remove it from the array + if (checkedObj[index] === true ) { + return false + } + return true; + })] + }; + + dispatch(updateSite(newSite)) + } return (
@@ -27,6 +57,8 @@ export default function Participants() { {label: 'Notes', accessor: 'notes'}, ]} data={site.participants} + onClickAdd={newParticipant} + onClickRemove={removeParticipant} /> diff --git a/frontend/site-search-frontend/src/features/site-details/table/SiteDetailsTable.tsx b/frontend/site-search-frontend/src/features/site-details/table/SiteDetailsTable.tsx index 2b4d5f3b..199cab0e 100644 --- a/frontend/site-search-frontend/src/features/site-details/table/SiteDetailsTable.tsx +++ b/frontend/site-search-frontend/src/features/site-details/table/SiteDetailsTable.tsx @@ -24,7 +24,7 @@ interface SiteDetailsTableProps { // Site Registry togglez // editMode -export default function SiteDetailsTable({ onClickAdd, headers, data, label }: SiteDetailsTableProps) { +export default function SiteDetailsTable({ onClickAdd, headers, data, label, onClickRemove }: SiteDetailsTableProps) { const editMode = useSelector((state: RootState) => state.edit.editMode); const [checked, setChecked] = useState<{ [key: string]: boolean }>(initializeCheckedObject(false)); const [SRCheck, setSRChecks] = useState(copySiteRegistryToState()); @@ -57,6 +57,13 @@ export default function SiteDetailsTable({ onClickAdd, headers, data, label }: S setChecked(newCheck) } + function handleRemove(val) { + // Manually unselect all checkboxes after user deletes, otherwise selection kinda ghosts to + // other entries which now share that indice + setChecked(initializeCheckedObject(false)) + onClickRemove(val) + } + function checkAll(value: boolean) { const newChecked = initializeCheckedObject(value); setChecked(newChecked) @@ -76,7 +83,7 @@ export default function SiteDetailsTable({ onClickAdd, headers, data, label }: S // alert('todo'); // const idsToSetTrue = getSelection(); // console.log({idsToSetTrue, checked, SRCheck }) - console.log({ checked, SRCheck }) + // console.log({ checked, SRCheck }) // what are we updating here, site? no, only the props passed in? but can't update props... // idea: clone the props, set that as state, show that state, and modify that stae. @@ -87,7 +94,6 @@ export default function SiteDetailsTable({ onClickAdd, headers, data, label }: S // goal - make checked write to SR check const checkedAsArray = [...Object.keys(checked).map(key => checked[key])]; setSRChecks(checkedAsArray) - } function getSelection(): string[] { @@ -95,14 +101,14 @@ export default function SiteDetailsTable({ onClickAdd, headers, data, label }: S } - return (
{editMode &&
- + {/* */} +
} From 3d3c0e8a3e7bf57a0a201df768655a736134ba51 Mon Sep 17 00:00:00 2001 From: Adam Coard Date: Tue, 10 Oct 2023 11:23:51 -0700 Subject: [PATCH 128/194] Deleting on notations table, although isn't deleting correct record --- .../src/features/site-details/notations.tsx | 36 +++++++++++++++++-- .../site-details/table/SiteDetailsTable.tsx | 2 +- 2 files changed, 35 insertions(+), 3 deletions(-) diff --git a/frontend/site-search-frontend/src/features/site-details/notations.tsx b/frontend/site-search-frontend/src/features/site-details/notations.tsx index 778061d4..9d281e0e 100644 --- a/frontend/site-search-frontend/src/features/site-details/notations.tsx +++ b/frontend/site-search-frontend/src/features/site-details/notations.tsx @@ -60,6 +60,37 @@ export default function Notations() { dispatch(updateSite(newSite)) } + function removeAtWithSplice(array, index) { + const copy = [...array]; + copy.splice(index, 1); + return copy; + } + + function removeParticipant({notationIndex, checked}) { + console.log('notation removeParticipant', {checked, notationIndex}) + const newSite: Site = { + ...site, + + notations: [...site.notations.map((notation, index) => { + if (index=== notationIndex) { + return { + ...notation, + notationParticipants: [...notation.notationParticipants.filter((_, participantIndex) => { + if (checked[participantIndex] === true) { + // console.log(`checked[participantIndex] === ${checked[participantIndex]} at ${participantIndex}` ) + return false + } + return true; + })] + } + } + return notation + })] + }; + + dispatch(updateSite(newSite)) + } + return (
@@ -69,7 +100,7 @@ export default function Notations() { {editMode && } {site.notations.map((siteNotationData, index) => { - return + return })} @@ -78,7 +109,7 @@ export default function Notations() { } -function NotationItem({ notation, index, onClickAddParticipant }: { notation: Notation, index: number, onClickAddParticipant: any }) { +function NotationItem({ notation, index, onClickAddParticipant, onClickRemoveParticipant }: { notation: Notation, index: number, onClickAddParticipant: any, onClickRemoveParticipant: any }) { const isMinistry = useSelector((state: RootState) => state.user.isMinistry); const editMode = useSelector((state: RootState) => state.edit.editMode); @@ -119,6 +150,7 @@ function NotationItem({ notation, index, onClickAddParticipant }: { notation: No ]} data={notation.notationParticipants} onClickAdd={() => { onClickAddParticipant({notationIndex: index})}} + onClickRemove={(checked) => { onClickRemoveParticipant({notationIndex: index, checked})}} /> diff --git a/frontend/site-search-frontend/src/features/site-details/table/SiteDetailsTable.tsx b/frontend/site-search-frontend/src/features/site-details/table/SiteDetailsTable.tsx index 199cab0e..0f1e68ee 100644 --- a/frontend/site-search-frontend/src/features/site-details/table/SiteDetailsTable.tsx +++ b/frontend/site-search-frontend/src/features/site-details/table/SiteDetailsTable.tsx @@ -51,7 +51,7 @@ export default function SiteDetailsTable({ onClickAdd, headers, data, label, onC // } function handleCheck({ index, event }) { - console.log('handleCheck', { index, event, checked }) + // console.log('handleCheck', { index, event, checked }) const newCheck = { ...checked } newCheck[index] = event.target.checked setChecked(newCheck) From 5acb865897db402112e134114fb7d533c00fa696 Mon Sep 17 00:00:00 2001 From: Twinkle Joseph Date: Tue, 10 Oct 2023 12:25:58 -0700 Subject: [PATCH 129/194] email integration in sds --- .../processes/Common/email-template.dmn | 28 +++++++- .../processes/SDS/SDSWorkflow.bpmn | 20 ++++-- .../templates/sds_application.ftl | 69 +++++++++++++++++++ 3 files changed, 112 insertions(+), 5 deletions(-) create mode 100644 forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/templates/sds_application.ftl diff --git a/forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/processes/Common/email-template.dmn b/forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/processes/Common/email-template.dmn index ca78e912..e4b55ef8 100644 --- a/forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/processes/Common/email-template.dmn +++ b/forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/processes/Common/email-template.dmn @@ -1,5 +1,5 @@ - + @@ -144,6 +144,32 @@ "epd-support@gov.bc.ca" + + + "sds_updated" + + + + + + "NOREPLYEPD@gov.bc.ca" + + + + + + + + + "Site Disclosure Statements" + + + "templates/sds_application.ftl" + + + "epd-support@gov.bc.ca" + + diff --git a/forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/processes/SDS/SDSWorkflow.bpmn b/forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/processes/SDS/SDSWorkflow.bpmn index 6125ab2d..378ac7bc 100644 --- a/forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/processes/SDS/SDSWorkflow.bpmn +++ b/forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/processes/SDS/SDSWorkflow.bpmn @@ -1,5 +1,5 @@ - + @@ -41,6 +41,10 @@ var system = java.lang.System; var clientEmail= execution.getVariable('contactPersonEmailAddress'); execution.setVariable('clientEmail',clientEmail); +var emailsToArray = []; +emailsToArray.push(clientEmail) +execution.setVariable("emailTo", Java.to(emailsToArray, "java.lang.Object[]")); + var siteOwnerEmail = execution.getVariable('ownerEmailAddress'); execution.setVariable('siteOwnerEmail',siteOwnerEmail); @@ -58,7 +62,11 @@ var decommissioning= execution.getVariable('section5DeclarationsCheckboxDecommis var ceasingOperations= execution.getVariable('section5DeclarationsCheckboxCeasingOperations'); execution.setVariable('isApprovingAuthorityReqd',!(decommissioning||ceasingOperations)); -system.out.println ("isApprovingAuthorityReqd"+execution.getVariable('isApprovingAuthorityReqd')); +system.out.println ("isApprovingAuthorityReqd"+execution.getVariable('isApprovingAuthorityReqd')); + +var contactPersonName= execution.getVariable('Section1C-FirstName'); +execution.setVariable('name',contactPersonName); +system.out.println ("contactPersonName"+execution.getVariable('Section1C-FirstName')); Flow_1la2yud @@ -167,9 +175,11 @@ system.out.println ("isApprovingAuthorityReqd"+execution.getVariable('isApprovin - + + sds_updated + Flow_05t61qf Flow_05135h6 @@ -211,9 +221,11 @@ system.out.println ("isApprovingAuthorityReqd"+execution.getVariable('isApprovin - + + sds_updated + Flow_1yl0zu1 Flow_1lfvq5z diff --git a/forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/templates/sds_application.ftl b/forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/templates/sds_application.ftl new file mode 100644 index 00000000..b30b10c0 --- /dev/null +++ b/forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/templates/sds_application.ftl @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + +
+ + + Site Remediation Services +
+ + + + + + + + + + + + + + + + + + + +
+
+
+

+ Site Disclosure Statements. +

+
+

+ Dear ${name}, +

+

+ Your Site Disclosure Statements application has been updated. Current status is ${action}. +

+
+

+ If you need any help, don’t hesitate to reach out to us at ${support} +

+
+
+
+ +

BC Public Services will never send an email that asks you to provide, confirm or verify personal, log on or account information. + DO NOT reply to this email as it was sent from an unmonitored account. +

+
+ + \ No newline at end of file From 79427fa30b9451e2f7b5ff541a0a31bac1f39930 Mon Sep 17 00:00:00 2001 From: nikhila-aot Date: Tue, 10 Oct 2023 14:02:50 -0700 Subject: [PATCH 130/194] corrected conflict errors --- .../processes/Common/email-template.dmn | 503 +++++++----------- 1 file changed, 205 insertions(+), 298 deletions(-) diff --git a/forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/processes/Common/email-template.dmn b/forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/processes/Common/email-template.dmn index f767ce1e..86a26bef 100644 --- a/forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/processes/Common/email-template.dmn +++ b/forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/processes/Common/email-template.dmn @@ -1,301 +1,208 @@ - - - - - - category - - - - - - - - - - - - - - "sir_status_rejected" - - - - - - - - - "NOREPLYEPD@gov.bc.ca" - - - - - - - - - - - - - "Site Information Request Rejected" - - - - - "templates/sir_application_rejected.ftl" - - - - - "epd-support@gov.bc.ca" - - - - - - - "sir_status_approved" - - - - - - - - - "NOREPLYEPD@gov.bc.ca" - - - - - - - - - - - - - "Site Information Request Approved" - - - - - "templates/sir_application_approved.ftl" - - - - - "epd-support@gov.bc.ca" - - - - - - - "nom_updated" - - - - - - - - - "NOREPLYEPD@gov.bc.ca" - - - - - - - - - - - - - "Notification of Likely or Actual Migration Application Status Update" - - - - - "templates/nom_application.ftl" - - - - - "epd-support@gov.bc.ca" - - - - - - - "dera_updated" - - - - - - - - - "NOREPLYEPD@gov.bc.ca" - - - - - - - - - - - - - "Detailed Ecological Risk Assessment Checklist" - - - - - "templates/nom_application.ftl" - - - - - "epd-support@gov.bc.ca" - - - - - - - "nir_updated" - - - - - - - - - "NOREPLYEPD@gov.bc.ca" - - - - - - - - - - - - - "Notification of Independent Remediation Application Status Update" - - - - - "templates/nir_application.ftl" - - - - - "epd-support@gov.bc.ca" - - - - - - - "sds_updated" - - - - - - - - - "NOREPLYEPD@gov.bc.ca" - - - - - - - - - - - - - "Site Disclosure Statements" - - - - - "templates/sds_application.ftl" - - - - - "epd-support@gov.bc.ca" - - - - - - - "srcr_updated" - - - - - - - - - "NOREPLYEPD@gov.bc.ca" - - - - - - - - - - - - - "Site Risk Classification Report Update" - - - - - "templates/srcr_application.ftl" - - - - - "epd-support@gov.bc.ca" - - - - - - - - - - - - + + + + + category + + + + + + + + + + + + "sir_status_rejected" + + + + + + "NOREPLYEPD@gov.bc.ca" + + + + + + + + + "Site Information Request Rejected" + + + "templates/sir_application_rejected.ftl" + + + "epd-support@gov.bc.ca" + + + + + "sir_status_approved" + + + + + + "NOREPLYEPD@gov.bc.ca" + + + + + + + + + "Site Information Request Approved" + + + "templates/sir_application_approved.ftl" + + + "epd-support@gov.bc.ca" + + + + + "nom_updated" + + + + + + "NOREPLYEPD@gov.bc.ca" + + + + + + + + + "Notification of Likely or Actual Migration Application Status Update" + + + "templates/nom_application.ftl" + + + "epd-support@gov.bc.ca" + + + + + "dera_updated" + + + + + + "NOREPLYEPD@gov.bc.ca" + + + + + + + + + "Detailed Ecological Risk Assessment Checklist" + + + "templates/nom_application.ftl" + + + "epd-support@gov.bc.ca" + + + + + "nir_updated" + + + + + + "NOREPLYEPD@gov.bc.ca" + + + + + + + + + "Notification of Independent Remediation Application Status Update" + + + "templates/nir_application.ftl" + + + "epd-support@gov.bc.ca" + + + + + "sds_updated" + + + + + + "NOREPLYEPD@gov.bc.ca" + + + + + + + + + "Site Disclosure Statements" + + + "templates/sds_application.ftl" + + + "epd-support@gov.bc.ca" + + + + + "srcr_updated" + + + + + + "NOREPLYEPD@gov.bc.ca" + + + + + + + + + "Site Risk Classification Report Update" + + + "templates/srcr_application.ftl" + + + "epd-support@gov.bc.ca" + + + + + + + + + + + From 970b3e9c1e2920da03c70338d6b1e8e458789623 Mon Sep 17 00:00:00 2001 From: Adam Coard Date: Tue, 10 Oct 2023 14:06:03 -0700 Subject: [PATCH 131/194] Fix summary highlighting on map link --- .../site-search-frontend/src/features/map/MapDetailsPane.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/site-search-frontend/src/features/map/MapDetailsPane.tsx b/frontend/site-search-frontend/src/features/map/MapDetailsPane.tsx index 4b8e5f4a..31dfe5d5 100644 --- a/frontend/site-search-frontend/src/features/map/MapDetailsPane.tsx +++ b/frontend/site-search-frontend/src/features/map/MapDetailsPane.tsx @@ -55,7 +55,7 @@ export default function MapDetailsPane({site, onClose}: {site: Site, onClose: Mo
N/A
- + From 53873d6bf9288d336b5485ca88faaf33ad98d4d5 Mon Sep 17 00:00:00 2001 From: Adam Coard Date: Tue, 10 Oct 2023 14:06:15 -0700 Subject: [PATCH 132/194] Start site profile --- .../features/site-details/site-profile.tsx | 71 ++++++++++++++++++- 1 file changed, 70 insertions(+), 1 deletion(-) diff --git a/frontend/site-search-frontend/src/features/site-details/site-profile.tsx b/frontend/site-search-frontend/src/features/site-details/site-profile.tsx index 9f4bee8e..dd57e659 100644 --- a/frontend/site-search-frontend/src/features/site-details/site-profile.tsx +++ b/frontend/site-search-frontend/src/features/site-details/site-profile.tsx @@ -1,9 +1,78 @@ +import { Site, SiteDisclosure } from "@/api/sites"; +import { RootState } from "@/store"; +import { useSelector, useDispatch } from "react-redux"; +import { useParams } from "react-router-dom"; +import SubSearch from "./sub-search/SubSearch"; +import SiteDetailsTable from "./table/SiteDetailsTable"; +import styles from './css/siteDetails.module.css' +import { Button } from "react-bootstrap"; +import SiteRegistryIcon from "@/components/SiteRegistryIcon"; +import siteDetailsStyles from '@/pages/site-details.module.css' +import SiteGridItem from "./SiteGridItem"; export default function SiteProfile() { + const { siteID } = useParams(); + const siteIDNum = parseInt(siteID); + const site: Site = useSelector((state: RootState) => state.site.value.find(searchedSite => searchedSite.siteID === siteIDNum)); + const editMode = useSelector((state: RootState) => state.edit.editMode) + const dispatch = useDispatch(); + + function newDisclosure() { + alert('todo'); + } return (
-

SiteProfile go here

+ {/*

SiteProfile go here

*/} + + {editMode && } + + {site.siteDisclosures.map((siteDisclosureData, index) => { + return + })}
) +} + +interface SiteDisclosureItemProps { + index: number; + disclosure: SiteDisclosure +} + +function SiteDisclosureItem({ index, disclosure }: SiteDisclosureItemProps) { + const editMode = useSelector((state: RootState) => state.edit.editMode) + const isMinistry = useSelector((state: RootState) => state.user.isMinistry); + return ( + <> +
+
+
+

Site Disclosure Statement (Sec. III and IV) {index + 1}

+ +
+ {editMode &&
+ + +
} +
+ +
+ + + + + +
+ + +
+ + ) } \ No newline at end of file From 9b950fc7127be4b312a6c2dd132b6e1574dee526 Mon Sep 17 00:00:00 2001 From: Adam Coard Date: Tue, 10 Oct 2023 14:06:28 -0700 Subject: [PATCH 133/194] Update label per Pavel's new revisions --- frontend/site-search-frontend/src/pages/site-details.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/site-search-frontend/src/pages/site-details.tsx b/frontend/site-search-frontend/src/pages/site-details.tsx index 8b120883..6778d03d 100644 --- a/frontend/site-search-frontend/src/pages/site-details.tsx +++ b/frontend/site-search-frontend/src/pages/site-details.tsx @@ -85,7 +85,7 @@ export default function SiteDetailsPage() { Parcel Description - Site Profile + Site Disclosure Activity Log From c13a2dc04e8459959752ca6fccf4cfc9497a62c8 Mon Sep 17 00:00:00 2001 From: midhun-aot Date: Tue, 10 Oct 2023 15:50:21 -0700 Subject: [PATCH 134/194] email integration changes for CSSA & DERA --- .../subProcess/CSSABundleWorklow.bpmn | 3270 +++++++++-------- .../subProcess/DERABundleWorkflow.bpmn | 19 +- .../processes/Common/email-template.dmn | 80 +- .../templates/cssa_application.ftl | 69 + .../templates/nom_application.ftl | 6 +- 5 files changed, 1958 insertions(+), 1486 deletions(-) create mode 100644 forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/templates/cssa_application.ftl diff --git a/forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/processes/Bundling/subProcess/CSSABundleWorklow.bpmn b/forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/processes/Bundling/subProcess/CSSABundleWorklow.bpmn index 17988600..d91bae2b 100644 --- a/forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/processes/Bundling/subProcess/CSSABundleWorklow.bpmn +++ b/forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/processes/Bundling/subProcess/CSSABundleWorklow.bpmn @@ -1,5 +1,5 @@ - + @@ -19,29 +19,38 @@ Activity_1uc1xs1 Gateway_04o747e + Gateway_1ic0n5h - Gateway_0oobb3z Activity_08ykdar + Gateway_0oobb3z + Gateway_1gzq005 Activity_1ao3zkj Gateway_15p5urd + Gateway_19at9ur + Event_0bwdoce + Activity_1os7sys - Activity_0p4hm8r Gateway_1lbpcug Event_0sdygwc Activity_1hs3dja Activity_1bsz2qm Gateway_1lgyz1h Activity_0tsm937 - Gateway_0o9l3lp Activity_15e3ho6 Gateway_1m36jwe Gateway_0uf75ow Activity_1bhbq4y Activity_07ttn7q + Activity_0q362ss + Event_1n5addo + Gateway_1l4bqor + Activity_0kxdigs + Gateway_0pty1fn + Gateway_0o9l3lp Activity_0vo5rls @@ -63,10 +72,10 @@ ${action == 'Accepted'} - + - + ${action == 'Rejected'} @@ -176,7 +185,7 @@ system.out.println ("isSentFromSociety "+ execution.getVariable('isSentFromSocie ${action == 'Returned'} - + ${action == 'Recheck'} @@ -192,7 +201,7 @@ system.out.println ("isSentFromSociety "+ execution.getVariable('isSentFromSocie ${action == 'Accepted'} - + ${applicationStatus== 'Resubmitted' and isCssaTeam== true} @@ -206,22 +215,177 @@ system.out.println ("isSentFromSociety "+ execution.getVariable('isSentFromSocie ${applicationStatus!= 'Resubmitted'} - - Flow_0bz8atu - Flow_19ktqsm - Flow_0qbjx6e - Flow_1tu4hj7 - Flow_1ev1kr6 + + ${applicationStatus== 'Resubmitted' and isCaseworker== true} + + + ${applicationStatus== 'Resubmitted' and isSdm== true} + + + ${action == 'Recheck' and isSentFromSociety == true} + + + ${action == 'Recheck'} + + + + + + + execution.setVariable('bundleStatus', "cssaMgrAccepted"); + + + + ["applicationId", "applicationStatus", "bundleStatus"] + + + + ${action == 'Accepted'} + + + + + + + ${action == 'Rejected' or action == 'Approved' } + + + + + execution.setVariable('formUrl', execution.getVariable('cssaFormUrl')); + + + + execution.setVariable('bundleUrl', execution.getVariable('formUrl')); +execution.setVariable('formUrl', execution.getVariable('srcrFormUrl')); + + + + if (execution.getVariable('cssaStatus') === "Approved" && execution.getVariable('srcrStatus') === "Approved" ) +{ +execution.setVariable("applicationStatus", "Approved"); +} +else{ +execution.setVariable("applicationStatus", "Rejected"); +} + + + + + + + ${action == 'Recheck' and isSentFromSociety == false} + + + + ${isSentFromSociety == false} + + + + + ${isSentFromSociety == true} + + + + + execution.setVariable('bundleStatus', "cssaCaseworkerAccepted"); + + + + ["applicationId", "applicationStatus", "bundleStatus"] + + + + ${action == 'Accepted'} + + + ${action == 'Recheck'} + + + + Flow_0gcqir8 + Flow_02ysv7t + Flow_0lgivc3 - + + + Flow_02ysv7t + Flow_026ykts + var system = java.lang.System; +var selectCssaSdm= execution.getVariable('selectCssaSdm'); +system.out.println ("selectCssaSdm"+selectCssaSdm); +execution.setVariable('cssaSdmAssignment',selectCssaSdm); +system.out.println ("cssaSdmAssignment"+execution.getVariable('cssaSdmAssignment')); + +var selectCssaCaseworker= execution.getVariable('selectCssaCaseworker'); +system.out.println ("selectCssaCaseworker"+selectCssaCaseworker); +execution.setVariable('cssaCaseworkerAssignment',selectCssaCaseworker); +system.out.println ("cssaCaseworkerAssignment"+execution.getVariable('cssaCaseworkerAssignment')); + +var selectSdm= execution.getVariable('selectSdm'); +system.out.println ("selectSdm"+selectSdm); +execution.setVariable('sdmAssignment',selectSdm); +system.out.println ("sdmAssignment"+execution.getVariable('sdmAssignment')); + +var selectCaseworker= execution.getVariable('selectCaseworker'); +system.out.println ("selectCaseworker"+selectCaseworker); +execution.setVariable('caseworkerAssignment',selectCaseworker); +system.out.println ("caseworkerAssignment"+execution.getVariable('caseworkerAssignment')); + +var selectSrco= execution.getVariable('selectSrco'); +system.out.println ("selectSrco"+selectSrco); +execution.setVariable('srcoAssignment',selectSrco); +system.out.println ("srcoAssignment"+execution.getVariable('srcoAssignment')); + + + + Flow_026ykts + Flow_0drs8s9 + Flow_0i3fcvy + + + Flow_0drs8s9 + Flow_1kyum71 + Flow_1u3s5mj + + + Flow_0fa3idu + Flow_1phkhb3 + Flow_1nowy63 + + + Flow_0kw2jbo + Flow_057qs1x + Flow_0ovj0pk + Flow_07vh0na + var system = java.lang.System; +system.out.println ("Sent to SDM"); + + + Flow_0i3fcvy + Flow_0d8ioqs + Flow_1jxxrt6 + Flow_0qiqnks + var system = java.lang.System; +system.out.println ("Begin CSSA Individual Flow - Sent To Caseworker"); +execution.setVariable('isCaseworker',false); +system.out.println ("isSentFromSociety "+execution.getVariable('isSentFromSociety')); + + + Flow_0qiqnks + Flow_057qs1x + Flow_01suxh6 + + - task.execution.setVariable('isCssaTeam',false); + task.execution.setVariable('isCaseworker',false); task.execution.setVariable('applicationStatus', task.execution.getVariable('action')); -task.execution.setVariable('deleteReason', "completed"); +task.execution.setVariable('deleteReason', "completed"); +task.execution.setVariable('userRole','Case Worker'); @@ -230,18 +394,19 @@ task.execution.setVariable('deleteReason', "completed"); - Flow_1quswsc - Flow_0gb2oz2 - Flow_0wr0mei - Flow_0lgivc3 - Flow_0bz8atu + Flow_01suxh6 + Flow_19ik9s7 - + + + task.execution.setVariable('isSdm',false); + task.execution.setVariable('applicationStatus', task.execution.getVariable('action')); -task.execution.setVariable('deleteReason', "completed"); +task.execution.setVariable('deleteReason', "completed"); +task.execution.setVariable('userRole','Statutory Decision Maker'); @@ -250,237 +415,31 @@ task.execution.setVariable('deleteReason', "completed"); - Flow_1xx7tz6 - Flow_16fwgn1 + Flow_07vh0na + Flow_08c8ij1 - - Flow_05pndkl - Flow_1asq9fa - Flow_1xx7tz6 + + Flow_0n61nyr + + + Flow_0c90maq + Flow_0b5e332 + Flow_1jxxrt6 + Flow_07eueok + Flow_0aabyhy - - - - execution.setVariable('applicationStatus', "Resubmit"); -execution.setVariable('returnedBy', "cssaTeam"); - - - - - ["applicationId", "applicationStatus"] - - - - - Flow_19ktqsm - Flow_12uv3km - Flow_0qw9o9a - Flow_0wxa7vb - Flow_0b5e332 - Flow_1stifo9 - - - Flow_0dbqph3 - Flow_1stifo9 - Flow_05pndkl - var system = java.lang.System; -var riskclassification = execution.getVariable('riskclassification'); -system.out.println ("riskclassification "+riskclassification); -var typeOfReview = execution.getVariable('typeOfReview'); -system.out.println ("typeOfReview "+typeOfReview); -execution.setVariable('typeOfReview',typeOfReview); -var clientEmail = execution.getVariable('simpleemail'); -system.out.println ("clientEmail "+clientEmail); -execution.setVariable('clientEmail',clientEmail); -var siteRiskClassification = execution.getVariable('siteRiskClassification'); -system.out.println ("siteRiskClassification "+siteRiskClassification ); -execution.setVariable('siteRiskClassification',siteRiskClassification); - - -var owneroperatorradioGroup = execution.getVariable('owneroperatorradioGroup'); -var hiddenUserIdForFormSharingApplicantAsOwner = execution.getVariable('hiddenUserIdForFormSharingApplicantAsOwner'); -var hiddenUserIdForFormSharingWithDiffOwner = execution.getVariable('hiddenUserIdForFormSharingWithDiffOwner'); -var userIdForSharing = ''; - - -system.out.println ("owneroperatorradioGroup "+owneroperatorradioGroup ); -system.out.println ("hiddenUserIdForFormSharingApplicantAsOwner"+hiddenUserIdForFormSharingApplicantAsOwner); -system.out.println ("hiddenUserIdForFormSharingWithDiffOwner "+hiddenUserIdForFormSharingWithDiffOwner); - - -if(owneroperatorradioGroup == "sameAsApplicant") - { - system.out.println("owneroperatorradioGroup"+hiddenUserIdForFormSharingApplicantAsOwner); - userIdForSharing = hiddenUserIdForFormSharingApplicantAsOwner; - - } - else - { - - system.out.println("WithDiffOwner"+hiddenUserIdForFormSharingWithDiffOwner); - userIdForSharing = hiddenUserIdForFormSharingWithDiffOwner; - - } - -system.out.println ("userIdForSharing"+userIdForSharing); -execution.setVariable('userIdForSharing',userIdForSharing); - - - Flow_1rc30l8 - Flow_0dbqph3 - var system = java.lang.System; -system.out.println ("Submit Bundle"); -execution.setVariable('isAp',false); -execution.setVariable('isSociety',false); -execution.setVariable('isCssaTeam',false); - - - Flow_1rc30l8 - - - Flow_1xj96i6 - Flow_1quswsc - Flow_142lsgk - - - - - task.execution.setVariable('isSociety',false); - - - - task.execution.setVariable('applicationStatus', task.execution.getVariable('action')); -task.execution.setVariable('deleteReason', "completed"); -var system = java.lang.System; -task.execution.setVariable('isSentFromSociety',true); -system.out.println ("isSentFromSociety "+ task.execution.getVariable('isSentFromSociety')); - - - - - ["applicationId", "applicationStatus"] - - - - Flow_0kfjdmp - Flow_0543g25 - Flow_1ev1kr6 - Flow_0d8ruax - - - - - task.execution.setVariable('isAp',false); - - - - task.execution.setVariable('applicationStatus', task.execution.getVariable('action')); -task.execution.setVariable('deleteReason', "completed"); - - - - - ["applicationId", "applicationStatus"] - - - - Flow_142lsgk - Flow_0pzpbn7 - Flow_0527h3y - Flow_0b418rv - - - Flow_0b418rv - Flow_12uv3km - Flow_0kfjdmp - - - Flow_0d8ruax - Flow_0gb2oz2 - Flow_0qw9o9a - Flow_0pzpbn7 - - - ${applicationStatus== 'Resubmitted' and isCaseworker== true} - - - ${applicationStatus== 'Resubmitted' and isSdm== true} - - - - - var system = java.lang.System; -system.out.println ("form signed"); - - - Flow_1asq9fa - Flow_16fwgn1 - Flow_0ohuh4k - - - Flow_0ohuh4k - Flow_1xj96i6 - Flow_0527h3y - Flow_0543g25 - Flow_0wr0mei - Flow_0d8ioqs - Flow_0ovj0pk - - - ${action == 'Recheck' and isSentFromSociety == true} - - - ${action == 'Recheck'} - - - - - - - execution.setVariable('bundleStatus', "cssaMgrAccepted"); - - - - ["applicationId", "applicationStatus", "bundleStatus"] - - - - ${action == 'Accepted'} - - - - - task.execution.setVariable('isCssaTeam',false); - - - - task.execution.setVariable('applicationStatus', task.execution.getVariable('action')); -task.execution.setVariable('deleteReason', "completed"); - - - - - ["applicationId", "applicationStatus"] - - - - Flow_1tu4hj7 - Flow_1esdw3m - Flow_0aabyhy - Flow_0gcqir8 - - - Flow_1u3s5mj - Flow_1phkhb3 - - Flow_05vthw4 - Flow_1ojyq91 - Flow_019edzt - Flow_0cdvwnp + + Flow_1kyum71 + Flow_0fa3idu + + Flow_0f731f5 + Flow_1vxydh0 + Flow_00qi8nk + Flow_130v3rp var system = java.lang.System; -system.out.println ("Sent to Caseworker"); +system.out.println ("Sent to SDM"); - + @@ -491,40 +450,51 @@ system.out.println ("Sent to Caseworker"); - task.execution.setVariable('task_id',task.getId()); -task.execution.setVariableLocal('variable1',"srcr"); + task.execution.setVariable('task_id',task.getId()); task.execution.setVariable('requestStatus', task.execution.getVariable('action')); -task.execution.setVariable('requestType', 'SRCR'); +task.execution.setVariable('requestType', 'CSSA'); +task.execution.setVariable('cssaStatus', task.execution.getVariable('action')); +task.execution.setVariable('applicationStatus', task.execution.getVariable('action')); task.execution.setVariable('deleteReason', "completed"); -task.execution.setVariable('srcrStatus', task.execution.getVariable('action')); -task.execution.setVariable('applicationStatus', task.execution.getVariable('action')); +task.execution.setVariable('userRole','Statutory Decision Maker'); +task.execution.setVariable('subFormName','DERA Form'); - + - Flow_0cdvwnp - Flow_1ccbyzk + Flow_130v3rp + Flow_04rzv3x - - Flow_1ccbyzk - Flow_0zzhoui - Flow_1ixkifd - Flow_0pqd76u - Flow_187pabg + + + + execution.setVariable('applicationStatus', "Resubmit"); + + + + + ["applicationId", "applicationStatus"] + + + + + Flow_0ui56bn + Flow_1vxydh0 + + + Flow_0xnspeg + Flow_0ui56bn + Flow_0pqk381 + Flow_07enxwq - - Flow_1ixkifd - Flow_0izugkb - Flow_0xqj2sm - Flow_1pdey0j - Flow_0qaeplv - var system = java.lang.System; -system.out.println ("Sent to SDM"); - - + + Flow_07enxwq + Flow_0yy721o + + @@ -535,50 +505,35 @@ system.out.println ("Sent to SDM"); - task.execution.setVariable('task_id',task.getId()); + task.execution.setVariable('task_id',task.getId()); +task.execution.setVariableLocal('variable1',"cssa"); task.execution.setVariable('requestStatus', task.execution.getVariable('action')); -task.execution.setVariable('requestType', 'SRCR'); +task.execution.setVariable('requestType', 'CSSA'); +task.execution.setVariable('cssaStatus', task.execution.getVariable('action')); +task.execution.setVariable('applicationStatus', task.execution.getVariable('action')); task.execution.setVariable('deleteReason', "completed"); -task.execution.setVariable('srcrStatus', task.execution.getVariable('action')); -task.execution.setVariable('applicationStatus', task.execution.getVariable('action')); +task.execution.setVariable('userRole','Case Worker'); +task.execution.setVariable('subFormName','DERA Form'); + + + - + - Flow_0qaeplv - Flow_0mtd57d + Flow_0go33vq + Flow_13zl1nd - - Flow_0mtd57d - Flow_0k5l8nk - Flow_0ryglee - Flow_1kizv19 + + Flow_16qbig6 + Flow_0f731f5 + Flow_0yy721o + Flow_1c0kfis - - Flow_0zzhoui - Flow_0k5l8nk - Flow_14snpj2 - - - - - execution.setVariable('applicationStatus', "Resubmit"); - - - - - ["applicationId", "applicationStatus", "srcrStatus"] - - - - - Flow_187pabg - Flow_1ojyq91 - - + execution.setVariable('applicationStatus', "Resubmit"); @@ -586,331 +541,252 @@ task.execution.setVariable('applicationStatus', task.execution.getVariable('acti - ["applicationId", "applicationStatus", "srcrStatus"] + ["applicationId", "applicationStatus"] - Flow_0ryglee - Flow_0izugkb + Flow_1c0kfis + Flow_06v4kdf - - Flow_0q159o1 - Flow_019edzt - Flow_0xqj2sm - - - Flow_0pqd76u - Flow_00vao62 - Flow_1axts3r - Flow_1g44pgu - Flow_1up3td8 - Flow_0c71o5w + + Flow_0pqk381 + Flow_06v4kdf + Flow_18exjmw + Flow_0orrcue var system = java.lang.System; -system.out.println ("Begin SRCR Flow - Sent To SRCO"); +system.out.println ("Begin CSSA Flow - Sent To Caseworker"); +execution.setVariable('isCaseworker',false); system.out.println ("isSentFromSociety "+execution.getVariable('isSentFromSociety')); - - Flow_1axts3r + + Flow_18exjmw - - - - - Y - - - ["pid","applicationId","process_pid","task_id"] - - - - task.execution.setVariable('task_id',task.getId()); -task.execution.setVariableLocal('variable1',"srcr"); - - - task.execution.setVariable('requestStatus', task.execution.getVariable('action')); -task.execution.setVariable('requestType', 'SRCR'); -task.execution.setVariable('deleteReason', "completed"); -task.execution.setVariable('srcrStatus', task.execution.getVariable('action')); -task.execution.setVariable('applicationStatus', task.execution.getVariable('action')); - - - - - - Flow_0c71o5w - Flow_0h34vew - - - Flow_0h34vew - Flow_14snpj2 - Flow_0qz0c7u - Flow_1ifs52w + + Flow_0orrcue + Flow_00qi8nk + Flow_0go33vq - + - - execution.setVariable('applicationStatus', "Resubmit"); + + execution.setVariable('bundleStatus', "cssaCaseworkerAccepted"); - - + - ["applicationId", "applicationStatus", "srcrStatus"] + ["applicationId", "applicationStatus", "bundleStatus"] - - - Flow_1ifs52w - Flow_00vao62 - - - Flow_0qz0c7u - Flow_1pdey0j - Flow_0q159o1 - - - - - - ${isSentFromSociety == false} + ${action == 'Accepted'} - + - execution.setVariable('applicationStatus', "Resubmitted"); execution.setVariable('requestStatus', "Resubmitted"); -execution.setVariable('srcrStatus', "Resubmitted"); +execution.setVariable('cssaStatus', "Resubmitted"); + - ["applicationId", "applicationStatus", "srcrStatus"] + ["applicationId", "applicationStatus", "cssaStatus"] - - ${isSentFromSociety == false} + + ${isSentFromSociety == true} - - + + - ["applicationId", "applicationStatus", "srcrStatus"] + ["applicationId", "applicationStatus", "cssaStatus"] - execution.setVariable('srcrFormUrl', execution.getVariable('formUrl')); + execution.setVariable('cssaFormUrl', execution.getVariable('formUrl')); + + + + + + ${action == 'Returned'} - + - - execution.setVariable('bundleUrl', execution.getVariable('formUrl')); - + + - ${action == 'Rejected'} + ${action == 'Recheck' and isSentFromSociety == false} - + + + - execution.setVariable('srcrBundleStatus', "srcrCaseworkerAccepted"); - - - - ["applicationId", "applicationStatus", "srcrBundleStatus"] - + execution.setVariable('bundleUrl', execution.getVariable('formUrl')); - ${action == 'Accepted'} - - - - ${action == 'Recheck'} - - - - - - ${action == 'Returned' } + ${action == 'Rejected' or action == 'Approved' } - + - execution.setVariable('applicationStatus', "Resubmitted"); -execution.setVariable('requestStatus', "Resubmitted"); -execution.setVariable('srcrStatus', "Resubmitted"); - - - - - ["applicationId", "applicationStatus", "srcrStatus"] - + execution.setVariable('bundleUrl', execution.getVariable('formUrl')); - - + ${action == 'Rejected'} - - ${isSentFromSociety == true} - - - ${siteRiskClassification != 'notHighRisk'} + + ${isSentFromSociety == false} - - + - ["applicationId", "applicationStatus", "srcrStatus"] + ["applicationId", "applicationStatus", "cssaStatus"] - execution.setVariable('srcrFormUrl', execution.getVariable('formUrl')); + execution.setVariable('cssaFormUrl', execution.getVariable('formUrl')); - - - - - - execution.setVariable('bundleUrl', execution.getVariable('formUrl')); - - ${action == 'Approved' or action == 'Rejected' } - + - - - ${action == 'Returned' } - - - - - execution.setVariable('bundleUrl', execution.getVariable('formUrl')); - - - ${action == 'Rejected' } - - - ${siteRiskClassification == 'notHighRisk'} + ${action == 'Returned'} - + execution.setVariable('applicationStatus', "Resubmitted"); execution.setVariable('requestStatus', "Resubmitted"); -execution.setVariable('srcrStatus', "Resubmitted"); +execution.setVariable('cssaStatus', "Resubmitted"); - ["applicationId", "applicationStatus", "srcrStatus"] + ["applicationId", "applicationStatus", "cssaStatus"] - + execution.setVariable('requestStatus', 'New'); -execution.setVariable('requestType', 'SRCR'); +execution.setVariable('requestType', 'CSSA'); - + - - - - - ["applicationId", "applicationStatus", "srcrStatus"] - - - - execution.setVariable('srcrFormUrl', execution.getVariable('formUrl')); - - - - - - + - - execution.setVariable('srcrBundleStatus', "srcrSrcoAccepted"); - - - - ["applicationId", "applicationStatus", "srcrBundleStatus"] - - + + + cssa_subforms_updated + - ${action == 'Accepted'} - - - - - - ${action == 'Returned' } - - + Flow_1sbxvgx + Flow_0rsx4qs + Flow_0jf2e1l + + + + Flow_13zl1nd + Flow_16qbig6 + Flow_1sbxvgx + + + + Flow_0jf2e1l + + + + + Flow_04rzv3x + Flow_0xnspeg + Flow_0rsx4qs + + + + + Flow_1u3s5mj + Flow_1phkhb3 + + Flow_05vthw4 + Flow_1ojyq91 + Flow_019edzt + Flow_0cdvwnp + var system = java.lang.System; +system.out.println ("Sent to Caseworker"); + + - - + + + Y + + + ["pid","applicationId","process_pid","task_id"] + + + + task.execution.setVariable('task_id',task.getId()); +task.execution.setVariableLocal('variable1',"srcr"); + + + task.execution.setVariable('requestStatus', task.execution.getVariable('action')); +task.execution.setVariable('requestType', 'SRCR'); +task.execution.setVariable('deleteReason', "completed"); +task.execution.setVariable('srcrStatus', task.execution.getVariable('action')); +task.execution.setVariable('applicationStatus', task.execution.getVariable('action')); +task.execution.setVariable('userRole','Case Worker'); +task.execution.setVariable('subFormName','SRCR Form'); + + + + + - ${siteRiskClassification != 'notHighRisk' } - - - Flow_1kizv19 - Flow_1g44pgu - Flow_1q2jho1 - - - ${action == 'Recheck' } - - - Flow_1q2jho1 - Flow_05vthw4 - Flow_1up3td8 + Flow_0cdvwnp + Flow_1ccbyzk + + + Flow_02gyla8 + Flow_0zzhoui + Flow_1ixkifd + Flow_0pqd76u + Flow_187pabg - - ${siteRiskClassification == 'notHighRisk' } - - - - - - - ${isSentFromSociety == true} - - - - Flow_1kyum71 - Flow_0fa3idu - - Flow_0f731f5 - Flow_1vxydh0 - Flow_00qi8nk - Flow_130v3rp + + Flow_1ixkifd + Flow_0izugkb + Flow_0xqj2sm + Flow_1pdey0j + Flow_0qaeplv var system = java.lang.System; system.out.println ("Sent to SDM"); - + @@ -925,19 +801,32 @@ system.out.println ("Sent to SDM"); task.execution.setVariable('requestStatus', task.execution.getVariable('action')); -task.execution.setVariable('requestType', 'CSSA'); -task.execution.setVariable('cssaStatus', task.execution.getVariable('action')); +task.execution.setVariable('requestType', 'SRCR'); +task.execution.setVariable('deleteReason', "completed"); +task.execution.setVariable('srcrStatus', task.execution.getVariable('action')); task.execution.setVariable('applicationStatus', task.execution.getVariable('action')); -task.execution.setVariable('deleteReason', "completed"); +task.execution.setVariable('userRole','Statutory Decision Maker'); +task.execution.setVariable('subFormName','SRCR Form'); - + - Flow_130v3rp - Flow_04rzv3x + Flow_0qaeplv + Flow_0mtd57d - + + Flow_1jm1bhe + Flow_0k5l8nk + Flow_0ryglee + Flow_1kizv19 + + + Flow_0zzhoui + Flow_0k5l8nk + Flow_14snpj2 + + execution.setVariable('applicationStatus', "Resubmit"); @@ -945,25 +834,50 @@ task.execution.setVariable('deleteReason', "completed"); - ["applicationId", "applicationStatus"] + ["applicationId", "applicationStatus", "srcrStatus"] - Flow_0ui56bn - Flow_1vxydh0 + Flow_187pabg + Flow_1ojyq91 - - Flow_04rzv3x - Flow_0ui56bn - Flow_0pqk381 - Flow_07enxwq + + + + execution.setVariable('applicationStatus', "Resubmit"); + + + + + ["applicationId", "applicationStatus", "srcrStatus"] + + + + + Flow_0ryglee + Flow_0izugkb + + + Flow_0q159o1 + Flow_019edzt + Flow_0xqj2sm - - Flow_07enxwq - Flow_0yy721o - - + + Flow_0pqd76u + Flow_00vao62 + Flow_1axts3r + Flow_1g44pgu + Flow_1up3td8 + Flow_0c71o5w + var system = java.lang.System; +system.out.println ("Begin SRCR Flow - Sent To SRCO"); +system.out.println ("isSentFromSociety "+execution.getVariable('isSentFromSociety')); + + + Flow_1axts3r + + @@ -975,29 +889,31 @@ task.execution.setVariable('deleteReason', "completed"); task.execution.setVariable('task_id',task.getId()); -task.execution.setVariableLocal('variable1',"cssa"); +task.execution.setVariableLocal('variable1',"srcr"); task.execution.setVariable('requestStatus', task.execution.getVariable('action')); -task.execution.setVariable('requestType', 'CSSA'); -task.execution.setVariable('cssaStatus', task.execution.getVariable('action')); +task.execution.setVariable('requestType', 'SRCR'); +task.execution.setVariable('deleteReason', "completed"); +task.execution.setVariable('srcrStatus', task.execution.getVariable('action')); task.execution.setVariable('applicationStatus', task.execution.getVariable('action')); -task.execution.setVariable('deleteReason', "completed"); +task.execution.setVariable('userRole','Site Risk Classification Officer'); +task.execution.setVariable('subFormName','SRCR Form'); - + - Flow_0go33vq - Flow_13zl1nd + Flow_0c71o5w + Flow_0h34vew - - Flow_13zl1nd - Flow_0f731f5 - Flow_0yy721o - Flow_1c0kfis + + Flow_168htzm + Flow_14snpj2 + Flow_0qz0c7u + Flow_1ifs52w - + execution.setVariable('applicationStatus', "Resubmit"); @@ -1005,195 +921,339 @@ task.execution.setVariable('deleteReason', "completed"); - ["applicationId", "applicationStatus"] + ["applicationId", "applicationStatus", "srcrStatus"] - Flow_1c0kfis - Flow_06v4kdf + Flow_1ifs52w + Flow_00vao62 - - Flow_0pqk381 - Flow_06v4kdf - Flow_18exjmw - Flow_0orrcue - var system = java.lang.System; -system.out.println ("Begin CSSA Flow - Sent To Caseworker"); -execution.setVariable('isCaseworker',false); -system.out.println ("isSentFromSociety "+execution.getVariable('isSentFromSociety')); - - - Flow_18exjmw - - - Flow_0orrcue - Flow_00qi8nk - Flow_0go33vq + + Flow_0qz0c7u + Flow_1pdey0j + Flow_0q159o1 - + - - execution.setVariable('bundleStatus', "cssaCaseworkerAccepted"); - - - - ["applicationId", "applicationStatus", "bundleStatus"] - - + + - ${action == 'Accepted'} + ${isSentFromSociety == false} - + + execution.setVariable('applicationStatus', "Resubmitted"); execution.setVariable('requestStatus', "Resubmitted"); -execution.setVariable('cssaStatus', "Resubmitted"); +execution.setVariable('srcrStatus', "Resubmitted"); - - ["applicationId", "applicationStatus", "cssaStatus"] + ["applicationId", "applicationStatus", "srcrStatus"] - - ${isSentFromSociety == true} + + ${isSentFromSociety == false} - - + + - ["applicationId", "applicationStatus", "cssaStatus"] + ["applicationId", "applicationStatus", "srcrStatus"] - execution.setVariable('cssaFormUrl', execution.getVariable('formUrl')); + execution.setVariable('srcrFormUrl', execution.getVariable('formUrl')); - - - - - - ${action == 'Returned'} - + - - + + execution.setVariable('bundleUrl', execution.getVariable('formUrl')); + - ${action == 'Recheck' and isSentFromSociety == false} + ${action == 'Rejected'} - + - - - execution.setVariable('bundleUrl', execution.getVariable('formUrl')); + execution.setVariable('srcrBundleStatus', "srcrCaseworkerAccepted"); + + + + ["applicationId", "applicationStatus", "srcrBundleStatus"] + - ${action == 'Rejected' or action == 'Approved' } + ${action == 'Accepted'} - + + + ${action == 'Recheck'} + + + + + + ${action == 'Returned' } + + - execution.setVariable('bundleUrl', execution.getVariable('formUrl')); + execution.setVariable('applicationStatus', "Resubmitted"); +execution.setVariable('requestStatus', "Resubmitted"); +execution.setVariable('srcrStatus', "Resubmitted"); + + + + + ["applicationId", "applicationStatus", "srcrStatus"] + + + - ${action == 'Rejected'} - - ${isSentFromSociety == false} + + ${isSentFromSociety == true} + + + ${siteRiskClassification != 'notHighRisk'} - + + - ["applicationId", "applicationStatus", "cssaStatus"] + ["applicationId", "applicationStatus", "srcrStatus"] - execution.setVariable('cssaFormUrl', execution.getVariable('formUrl')); + execution.setVariable('srcrFormUrl', execution.getVariable('formUrl')); + + + + + + execution.setVariable('bundleUrl', execution.getVariable('formUrl')); + + ${action == 'Approved' or action == 'Rejected' } - + + + - ${action == 'Returned'} + ${action == 'Returned' } - + + + + execution.setVariable('bundleUrl', execution.getVariable('formUrl')); + + + ${action == 'Rejected' } + + + ${siteRiskClassification == 'notHighRisk'} + + execution.setVariable('applicationStatus', "Resubmitted"); execution.setVariable('requestStatus', "Resubmitted"); -execution.setVariable('cssaStatus', "Resubmitted"); +execution.setVariable('srcrStatus', "Resubmitted"); - ["applicationId", "applicationStatus", "cssaStatus"] + ["applicationId", "applicationStatus", "srcrStatus"] - + execution.setVariable('requestStatus', 'New'); -execution.setVariable('requestType', 'CSSA'); +execution.setVariable('requestType', 'SRCR'); - + + + + + + ["applicationId", "applicationStatus", "srcrStatus"] + + + + execution.setVariable('srcrFormUrl', execution.getVariable('formUrl')); + + + + + + + + + execution.setVariable('srcrBundleStatus', "srcrSrcoAccepted"); + + + + ["applicationId", "applicationStatus", "srcrBundleStatus"] + + + + ${action == 'Accepted'} + + + + + + ${action == 'Returned' } + + + + + + + ${siteRiskClassification != 'notHighRisk' } + + + Flow_1kizv19 + Flow_1g44pgu + Flow_1q2jho1 + + + ${action == 'Recheck' } + + + Flow_1q2jho1 + Flow_05vthw4 + Flow_1up3td8 + + + ${siteRiskClassification == 'notHighRisk' } + + + + + + + ${isSentFromSociety == true} + + + + + + cssa_subforms_updated + + + Flow_0dn9scp + Flow_0v3xmtu + Flow_007p6h2 + Flow_1g9gkqq + + + + Flow_0h34vew + Flow_168htzm + Flow_0dn9scp + + + + + Flow_1ccbyzk + Flow_02gyla8 + Flow_0v3xmtu + + + + Flow_1g9gkqq + + + + + Flow_0mtd57d + Flow_1jm1bhe + Flow_007p6h2 + + - + - - - + + task.execution.setVariable('isCssaTeam',false); + + + + task.execution.setVariable('applicationStatus', task.execution.getVariable('action')); +task.execution.setVariable('deleteReason', "completed"); + + + + + ["applicationId", "applicationStatus"] + + - Flow_0qbjx6e - Flow_1nowy63 - Flow_07eueok - Flow_1xju4ax - Flow_0izwlc1 - - - Flow_08c8ij1 - Flow_0b5e332 - Flow_1jxxrt6 - Flow_07eueok - Flow_0aabyhy + Flow_1tu4hj7 + Flow_1esdw3m + Flow_0aabyhy + Flow_0gcqir8 + + + Flow_0ohuh4k + Flow_1xj96i6 + Flow_0527h3y + Flow_0543g25 + Flow_0wr0mei + Flow_0d8ioqs + Flow_0ovj0pk - - Flow_0izwlc1 - - + + + + var system = java.lang.System; +system.out.println ("form signed"); + + + Flow_1asq9fa + Flow_16fwgn1 + Flow_0ohuh4k + + - task.execution.setVariable('isSdm',false); + task.execution.setVariable('isAp',false); task.execution.setVariable('applicationStatus', task.execution.getVariable('action')); -task.execution.setVariable('deleteReason', "completed"); +task.execution.setVariable('deleteReason', "completed"); +task.execution.setVariable('userRole','Contaminated Sites Approved Professional'); @@ -1202,18 +1262,24 @@ task.execution.setVariable('deleteReason', "completed"); - Flow_07vh0na - Flow_08c8ij1 + Flow_142lsgk + Flow_0pzpbn7 + Flow_0527h3y + Flow_0b418rv - + - task.execution.setVariable('isCaseworker',false); + task.execution.setVariable('isSociety',false); task.execution.setVariable('applicationStatus', task.execution.getVariable('action')); -task.execution.setVariable('deleteReason', "completed"); +task.execution.setVariable('deleteReason', "completed"); +var system = java.lang.System; +task.execution.setVariable('isSentFromSociety',true); +system.out.println ("isSentFromSociety "+ task.execution.getVariable('isSentFromSociety')); +task.execution.setVariable('userRole','Contaminated Sites Approved Professionals Society'); @@ -1222,154 +1288,251 @@ task.execution.setVariable('deleteReason', "completed"); - Flow_01suxh6 - Flow_19ik9s7 + Flow_0kfjdmp + Flow_0543g25 + Flow_1ev1kr6 + Flow_0d8ruax - - Flow_0qiqnks - Flow_057qs1x - Flow_01suxh6 - - - Flow_0i3fcvy - Flow_0d8ioqs - Flow_1jxxrt6 - Flow_0qiqnks + + Flow_1xj96i6 + Flow_1quswsc + Flow_142lsgk + + + Flow_1rc30l8 + + + Flow_1rc30l8 + Flow_0dbqph3 var system = java.lang.System; -system.out.println ("Begin CSSA Individual Flow - Sent To Caseworker"); -execution.setVariable('isCaseworker',false); -system.out.println ("isSentFromSociety "+execution.getVariable('isSentFromSociety')); +system.out.println ("Submit Bundle"); +execution.setVariable('isAp',false); +execution.setVariable('isSociety',false); +execution.setVariable('isCssaTeam',false); - - Flow_19ik9s7 - Flow_0kw2jbo - Flow_0wxa7vb - Flow_1xju4ax - Flow_1esdw3m - - - Flow_0kw2jbo - Flow_057qs1x - Flow_0ovj0pk - Flow_07vh0na + + Flow_0dbqph3 + Flow_1stifo9 + Flow_05pndkl var system = java.lang.System; -system.out.println ("Sent to SDM"); +var riskclassification = execution.getVariable('riskclassification'); +system.out.println ("riskclassification "+riskclassification); +var typeOfReview = execution.getVariable('typeOfReview'); +system.out.println ("typeOfReview "+typeOfReview); +execution.setVariable('typeOfReview',typeOfReview); +var clientEmail = execution.getVariable('simpleemail'); +system.out.println ("clientEmail "+clientEmail); +execution.setVariable('clientEmail',clientEmail); +var siteRiskClassification = execution.getVariable('siteRiskClassification'); +system.out.println ("siteRiskClassification "+siteRiskClassification ); +execution.setVariable('siteRiskClassification',siteRiskClassification); + + +var owneroperatorradioGroup = execution.getVariable('owneroperatorradioGroup'); +var hiddenUserIdForFormSharingApplicantAsOwner = execution.getVariable('hiddenUserIdForFormSharingApplicantAsOwner'); +var hiddenUserIdForFormSharingWithDiffOwner = execution.getVariable('hiddenUserIdForFormSharingWithDiffOwner'); +var userIdForSharing = ''; + + +system.out.println ("owneroperatorradioGroup "+owneroperatorradioGroup ); +system.out.println ("hiddenUserIdForFormSharingApplicantAsOwner"+hiddenUserIdForFormSharingApplicantAsOwner); +system.out.println ("hiddenUserIdForFormSharingWithDiffOwner "+hiddenUserIdForFormSharingWithDiffOwner); + + +if(owneroperatorradioGroup == "sameAsApplicant") + { + system.out.println("owneroperatorradioGroup"+hiddenUserIdForFormSharingApplicantAsOwner); + userIdForSharing = hiddenUserIdForFormSharingApplicantAsOwner; + + } + else + { + + system.out.println("WithDiffOwner"+hiddenUserIdForFormSharingWithDiffOwner); + userIdForSharing = hiddenUserIdForFormSharingWithDiffOwner; + + } + +system.out.println ("userIdForSharing"+userIdForSharing); +execution.setVariable('userIdForSharing',userIdForSharing); + +var listOwnerEmailAddress = []; +listOwnerEmailAddress.push(clientEmail); +execution.setVariable('EmailType','CSSA'); +execution.setVariable('name',''); +execution.setVariable("emailTo", Java.to(listOwnerEmailAddress, "java.lang.Object[]")); +execution.setVariable('formName','Contaminated Sites Services Application Form'); - - Flow_0fa3idu - Flow_1phkhb3 - Flow_1nowy63 - - - Flow_0drs8s9 - Flow_1kyum71 - Flow_1u3s5mj - - - - - - - ${action == 'Rejected' or action == 'Approved' } - - - ${action == 'Rejected'} - - + - - execution.setVariable('formUrl', execution.getVariable('cssaFormUrl')); - - - - execution.setVariable('bundleUrl', execution.getVariable('formUrl')); -execution.setVariable('formUrl', execution.getVariable('srcrFormUrl')); + + execution.setVariable('applicationStatus', "Resubmit"); +execution.setVariable('returnedBy', "cssaTeam"); - - - if (execution.getVariable('cssaStatus') === "Approved" && execution.getVariable('srcrStatus') === "Approved" ) -{ -execution.setVariable("applicationStatus", "Approved"); -} -else{ -execution.setVariable("applicationStatus", "Rejected"); -} + + + + ["applicationId", "applicationStatus"] + - + - - - - - ${action == 'Recheck' and isSentFromSociety == false} - - - - ${isSentFromSociety == false} - - - - - ${isSentFromSociety == true} - - + Flow_19ktqsm + Flow_12uv3km + Flow_0qw9o9a + Flow_0wxa7vb + Flow_0b5e332 + Flow_1stifo9 + + + Flow_05pndkl + Flow_1asq9fa + Flow_1xx7tz6 + + - - execution.setVariable('bundleStatus', "cssaCaseworkerAccepted"); - - + + + task.execution.setVariable('applicationStatus', task.execution.getVariable('action')); +task.execution.setVariable('deleteReason', "completed"); + + + - ["applicationId", "applicationStatus", "bundleStatus"] + ["applicationId", "applicationStatus"] - + - ${action == 'Accepted'} - - - ${action == 'Recheck'} - - - Flow_026ykts - Flow_0drs8s9 - Flow_0i3fcvy + Flow_1xx7tz6 + Flow_16fwgn1 + + + + + task.execution.setVariable('isCssaTeam',false); + + + + task.execution.setVariable('applicationStatus', task.execution.getVariable('action')); +task.execution.setVariable('deleteReason', "completed"); +task.execution.setVariable('userRole','CSSA Team'); + + + + + ["applicationId", "applicationStatus"] + + + + Flow_1quswsc + Flow_0gb2oz2 + Flow_0wr0mei + Flow_0lgivc3 + Flow_0bz8atu + + + Flow_0lsoeu4 + Flow_12uv3km + Flow_0kfjdmp - - - Flow_02ysv7t - Flow_026ykts - var system = java.lang.System; -var selectCssaSdm= execution.getVariable('selectCssaSdm'); -system.out.println ("selectCssaSdm"+selectCssaSdm); -execution.setVariable('cssaSdmAssignment',selectCssaSdm); -system.out.println ("cssaSdmAssignment"+execution.getVariable('cssaSdmAssignment')); - -var selectCssaCaseworker= execution.getVariable('selectCssaCaseworker'); -system.out.println ("selectCssaCaseworker"+selectCssaCaseworker); -execution.setVariable('cssaCaseworkerAssignment',selectCssaCaseworker); -system.out.println ("cssaCaseworkerAssignment"+execution.getVariable('cssaCaseworkerAssignment')); - -var selectSdm= execution.getVariable('selectSdm'); -system.out.println ("selectSdm"+selectSdm); -execution.setVariable('sdmAssignment',selectSdm); -system.out.println ("sdmAssignment"+execution.getVariable('sdmAssignment')); - -var selectCaseworker= execution.getVariable('selectCaseworker'); -system.out.println ("selectCaseworker"+selectCaseworker); -execution.setVariable('caseworkerAssignment',selectCaseworker); -system.out.println ("caseworkerAssignment"+execution.getVariable('caseworkerAssignment')); - -var selectSrco= execution.getVariable('selectSrco'); -system.out.println ("selectSrco"+selectSrco); -execution.setVariable('srcoAssignment',selectSrco); -system.out.println ("srcoAssignment"+execution.getVariable('srcoAssignment')); - - - - Flow_0gcqir8 - Flow_02ysv7t - Flow_0lgivc3 + + + Flow_0b418rv + Flow_0lsoeu4 + Flow_058nkip + + + + + Flow_0bq2rqv + Flow_0gb2oz2 + Flow_0qw9o9a + Flow_0pzpbn7 + + + + Flow_0d8ruax + Flow_0bq2rqv + Flow_1rbr0l4 + + + + Flow_0iubwul + Flow_19ktqsm + Flow_0qbjx6e + Flow_1tu4hj7 + Flow_1ev1kr6 + + + + Flow_0bz8atu + Flow_0iubwul + Flow_16ek6dk + + + + Flow_14qx1q0 + + + + + + cssa_updated + + + Flow_058nkip + Flow_1rbr0l4 + Flow_16ek6dk + Flow_14qx1q0 + + + + + + + + cssa_updated + + + Flow_1i04zkp + Flow_17tf2x2 + Flow_0jxnrvm + + + Flow_0jxnrvm + + + + + + Flow_08c8ij1 + Flow_0c90maq + Flow_17tf2x2 + + + + + + + cssa_updated + + + Flow_0qbjx6e + Flow_07eueok + Flow_1nowy63 + Flow_0n61nyr + + + Flow_19ik9s7 + Flow_15f3evi + Flow_1i04zkp + + + Flow_15f3evi + Flow_0kw2jbo + Flow_0wxa7vb + Flow_1esdw3m - @@ -1402,939 +1565,1096 @@ system.out.println ("srcoAssignment"+execution.getVariable('srcoAssignment')); - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - - - - - - - + + + + - + - - - - - - - - - - - - - - - - - - + + + + + + - + - - - - - - - - - + + + + + + + + + + + + - + - - - + + + + + + + + + + - + - - - - - - - - - + + + + + + + + + + + - + - - - - - - + + + + - + - - - - - - - + + + + + - + - - - - - - - + + + + + + + + + + - + - - - + + + + + + + + + - + - - - + + + + + + + + + + - + - - - - - + + + + + + + + + + + + + + + + + + - + - - - - + + + + + + + - + - - - + + + + + - + - - - + + + + + - - - + + + + + - - - - - + + + + + + + - + - - - + + + + + - + - - - - - + + + + + - + - - - - + + + + + + + + + - + - - - - + + + - + - - - - - + + + + - + - - - - - + + + + - + - - - - - - - - - - - + + + - + - - - - + + + + + + + + + + + - + - - - - - + + + + + + + + + - + - - - + + + + + - + - - - - + + + + - + - - - - - - - - - - - - - - - + + + - + - - - + + + - + - - - - - + + + + + + + + + + - + - - - + + + + - + - - - + + + + + - + - - - - - + + + + + + + - + - - - - - - - - - + + + + + + - - + + + - - + + - + - - + + + + + - + - - + + - - + + + + + - + - - + + + - - + + + - - + + - + - - + + - + - - - + + + + + + + + + - + + + + + + + + + + - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - - - - - + + + - + - - - - - - - + + + - - - + + + - + - - - - - + + + + + - + - + - - - - - + + + + + - + - - - + + + - + - - - + + + - - - + + + + + + + + + - + - - - - + + + - + - - - - - - - - - - - - - - + + + - + + + + - - - - - + + - - - + + - - - + + + + + - - + + - + - - + + - - + + - + - - + + - - + + + + + - + - - - - - + + - + - - + + - - + + - - - - - - + + + + + + + + + + + + + + - - - + + + - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - - - - + + + - + - - - - - + + + - + - - - - + + + + + + + + - - - + + + - + - - - + + + - + - - - - + + + + + + + + + + + + + + + + - + - - - - - + + + - + - - - - - + + + + + - + - - - + + + + + + + - - - + + + - + - - - + + + - - - + + + - - - + + + + + - + - - - - + + + + + - + - - - - + + + + - + - - - + + + + - + - - - - - + + + + + - + - - - - - - - - - + + + - + - - - - - + + + + + - + - - - + + + + + + + + + + + - + - - - - - - - - - + + + + + + + - - - - - + + + + + + + - - - - - + + + + + + + + + - + - - - - + + + + + + + + + - + - - - - - - - - - - + + + - + - - - - - - - - - - - - - - - - - - + + + + + + + + + - + - - - - - - - - + + + + + + - + - - - - - - - - - - + + + + + + + - + - - - - - - - - - - + + + + + + + - + - - - - + + + - + - - - - - - + + + - + - - - - - + + + + + + + + + + + + + + + + + + + + + + + - + - - - - - - - - - - - - - - + + + + + + + + + + + + + + + - + - - - - - - - - + + + - + - - - - - - - - - - - - - - + + + + + + + + + + + + + - + - - - - + + + + + + + + + + + - + - - - - - - + + + + + + - + - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/processes/Bundling/subProcess/DERABundleWorkflow.bpmn b/forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/processes/Bundling/subProcess/DERABundleWorkflow.bpmn index b055785b..ddd4b488 100644 --- a/forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/processes/Bundling/subProcess/DERABundleWorkflow.bpmn +++ b/forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/processes/Bundling/subProcess/DERABundleWorkflow.bpmn @@ -407,7 +407,8 @@ task.execution.setVariable('requestType', 'DERA'); task.execution.setVariable('deraStatus', task.execution.getVariable('action')); task.execution.setVariable('applicationStatus', task.execution.getVariable('action')); task.execution.setVariable('deleteReason', "completed"); -task.execution.setVariable('userRole','Statutory Decision Maker'); +task.execution.setVariable('userRole','Statutory Decision Maker'); +task.execution.setVariable('subFormName','DERA Form'); @@ -463,7 +464,8 @@ task.execution.setVariable('requestType', 'DERA'); task.execution.setVariable('deraStatus', task.execution.getVariable('action')); task.execution.setVariable('applicationStatus', task.execution.getVariable('action')); task.execution.setVariable('deleteReason', "completed"); -task.execution.setVariable('userRole','Case worker'); +task.execution.setVariable('userRole','Case worker'); +task.execution.setVariable('subFormName','DERA Form'); @@ -637,7 +639,7 @@ execution.setVariable('requestType', 'DERA'); - dera_updated + dera_subforms_updated Flow_0zq3j61 @@ -900,7 +902,8 @@ task.execution.setVariable('requestType', 'SRCR'); task.execution.setVariable('deleteReason', "completed"); task.execution.setVariable('srcrStatus', task.execution.getVariable('action')); task.execution.setVariable('applicationStatus', task.execution.getVariable('action')); -task.execution.setVariable('userRole','Case worker 2'); +task.execution.setVariable('userRole','Case worker 2'); +task.execution.setVariable('subFormName','SRCR Form'); @@ -945,7 +948,8 @@ task.execution.setVariable('requestType', 'SRCR'); task.execution.setVariable('deleteReason', "completed"); task.execution.setVariable('srcrStatus', task.execution.getVariable('action')); task.execution.setVariable('applicationStatus', task.execution.getVariable('action')); -task.execution.setVariable('userRole','Statutory Decision Maker'); +task.execution.setVariable('userRole','Statutory Decision Maker'); +task.execution.setVariable('subFormName','SRCR Form'); @@ -1037,7 +1041,8 @@ task.execution.setVariable('requestType', 'SRCR'); task.execution.setVariable('deleteReason', "completed"); task.execution.setVariable('srcrStatus', task.execution.getVariable('action')); task.execution.setVariable('applicationStatus', task.execution.getVariable('action')); -task.execution.setVariable('userRole','Site Risk Classification Officer'); +task.execution.setVariable('userRole','Site Risk Classification Officer'); +task.execution.setVariable('subFormName','SRCR Form'); @@ -1293,7 +1298,7 @@ execution.setVariable('requestType', 'SRCR'); - dera_updated + dera_subforms_updated Flow_0lklj13 diff --git a/forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/processes/Common/email-template.dmn b/forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/processes/Common/email-template.dmn index ca78e912..3c0f2656 100644 --- a/forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/processes/Common/email-template.dmn +++ b/forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/processes/Common/email-template.dmn @@ -135,7 +135,7 @@ - "Notification of Independent Remediation Application Status Update" + "Notification of Independent Remediation Application Status Updated" "templates/nir_application.ftl" @@ -144,6 +144,84 @@ "epd-support@gov.bc.ca" + + + "cssa_updated" + + + + + + "NOREPLYEPD@gov.bc.ca" + + + + + + + + + "Contaminated Sites Services Application Updated" + + + "templates/nom_application.ftl" + + + "epd-support@gov.bc.ca" + + + + + "cssa_subforms_updated" + + + + + + "NOREPLYEPD@gov.bc.ca" + + + + + + + + + "Contaminated Sites Services Application Updated" + + + "templates/cssa_application.ftl" + + + "epd-support@gov.bc.ca" + + + + + "dera_subforms_updated" + + + + + + "NOREPLYEPD@gov.bc.ca" + + + + + + + + + "Detailed Ecological Risk Assessment Checklist" + + + "templates/cssa_application.ftl" + + + "epd-support@gov.bc.ca" + + diff --git a/forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/templates/cssa_application.ftl b/forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/templates/cssa_application.ftl new file mode 100644 index 00000000..e5618c1a --- /dev/null +++ b/forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/templates/cssa_application.ftl @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + +
+ + + Site Remediation System +
+ + + + + + + + + + + + + + + + + + + +
+
+
+

+ ${formName}. +

+
+

+ Hello, +

+

+ Your ${formName} application # ${applicationId} has been updated. Current status for ${subFormName} is ${action} by ${userRole}. +

+
+

+ If you need any help, don’t hesitate to reach out to us at ${support} +

+
+
+
+ +

EPD will never send an email that asks you to provide, confirm or verify personal, log on or account information. + DO NOT reply to this email as it was sent from an unmonitored account. +

+
+ + \ No newline at end of file diff --git a/forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/templates/nom_application.ftl b/forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/templates/nom_application.ftl index f2dc0edb..635c8364 100644 --- a/forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/templates/nom_application.ftl +++ b/forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/templates/nom_application.ftl @@ -28,17 +28,17 @@

- Notification of Likely or Actual Migration. + ${formName}.

- Hello ${name}, + Hello,

- Your Notification of Likely or Actual Migration application has been updated. Current status is ${action}. + Your ${formName} application # ${applicationId} has been updated. Current status is ${action} by ${userRole}.

From e2993e2ae5f997f0be760714d76664bc334c364e Mon Sep 17 00:00:00 2001 From: Adam Coard Date: Wed, 11 Oct 2023 09:12:38 -0700 Subject: [PATCH 135/194] Summary items work --- .../src/features/site-details/summary.tsx | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/frontend/site-search-frontend/src/features/site-details/summary.tsx b/frontend/site-search-frontend/src/features/site-details/summary.tsx index 684d9339..7639cbd6 100644 --- a/frontend/site-search-frontend/src/features/site-details/summary.tsx +++ b/frontend/site-search-frontend/src/features/site-details/summary.tsx @@ -37,12 +37,12 @@ export default function Summary() {
-

Notations: 2

-

Participants: 2

-

Associated Sites: 2

-

Documents: 2

-

Suspect Land Use: 2

-

Parcel Description: 2

+

Notations: {site.notations.length}

+

Participants: {site.participants.length}

+

Associated Sites: {site.associatedSites.length}

+

Documents: todo

+

Suspect Land Use: {site.suspectLandUses.length}

+

Parcel Description: {site.parcelDescriptions.length}

View on Map From bbe42531b609b179eab4ca711e832bc9cf05433f Mon Sep 17 00:00:00 2001 From: Adam Coard Date: Wed, 11 Oct 2023 09:13:03 -0700 Subject: [PATCH 136/194] Refactor grid CSS to be reused, improve notation section logic --- .../{notations.module.css => siteDetails.module.css} | 2 +- .../src/features/site-details/notations.tsx | 11 ++++++----- 2 files changed, 7 insertions(+), 6 deletions(-) rename frontend/site-search-frontend/src/features/site-details/css/{notations.module.css => siteDetails.module.css} (91%) diff --git a/frontend/site-search-frontend/src/features/site-details/css/notations.module.css b/frontend/site-search-frontend/src/features/site-details/css/siteDetails.module.css similarity index 91% rename from frontend/site-search-frontend/src/features/site-details/css/notations.module.css rename to frontend/site-search-frontend/src/features/site-details/css/siteDetails.module.css index ce182e3a..29f0adfa 100644 --- a/frontend/site-search-frontend/src/features/site-details/css/notations.module.css +++ b/frontend/site-search-frontend/src/features/site-details/css/siteDetails.module.css @@ -3,7 +3,7 @@ border: 1px solid black; } -.notationItem { +.detailsItem { border: 1px solid black; padding: 1.5rem; margin: 1.5rem 0; diff --git a/frontend/site-search-frontend/src/features/site-details/notations.tsx b/frontend/site-search-frontend/src/features/site-details/notations.tsx index 9d281e0e..a52c7b37 100644 --- a/frontend/site-search-frontend/src/features/site-details/notations.tsx +++ b/frontend/site-search-frontend/src/features/site-details/notations.tsx @@ -1,5 +1,5 @@ import { Button, Dropdown, DropdownButton, Form, Table } from 'react-bootstrap' -import styles from './css/notations.module.css' +import styles from './css/siteDetails.module.css' import siteDetailsStyles from '@/pages/site-details.module.css' import SiteGridItem from './SiteGridItem' import { TableEditItem } from "./TableEditItem"; @@ -30,14 +30,15 @@ export default function Notations() { createdAt: formatDateToString(new Date), initiated: formatDateToString(new Date), ministryContact: '', - notationClass: 'ENVIRONMENTAL MANAGEMENT ACT: GENERAL', + notationClass: '', notationParticipants: [], - notationType: 'CERTIFICATE OF COMPLIANCE ISSUED USING RISK BASED STANDARDS', + notationType: '', note: '', requestedActions: [], siteRegistry: false, } - const newSite: Site = {...site, notations: [newNotation, ...site.notations]} + const newSite: Site = {...site, notations: [...site.notations, newNotation]} + // const newSite: Site = {...site, notations: [newNotation, ...site.notations]} dispatch(updateSite(newSite)); } @@ -119,7 +120,7 @@ function NotationItem({ notation, index, onClickAddParticipant, onClickRemovePar // const [participationSelection, setParticipationSeleciton] = useState(defaultSelectionState) return ( -
+

Notation {index + 1}

From 76b89906d4cce2c36b3684e31883bbcb4b6b9b0a Mon Sep 17 00:00:00 2001 From: Adam Coard Date: Wed, 11 Oct 2023 09:13:18 -0700 Subject: [PATCH 137/194] Site Registry Icon is now clickable and works in table, both features work fine --- .../src/components/SiteRegistryIcon.tsx | 25 +++++++++++++------ 1 file changed, 17 insertions(+), 8 deletions(-) diff --git a/frontend/site-search-frontend/src/components/SiteRegistryIcon.tsx b/frontend/site-search-frontend/src/components/SiteRegistryIcon.tsx index df3222cf..cfd5e750 100644 --- a/frontend/site-search-frontend/src/components/SiteRegistryIcon.tsx +++ b/frontend/site-search-frontend/src/components/SiteRegistryIcon.tsx @@ -1,4 +1,4 @@ -import { useState } from 'react'; +import { useEffect, useState } from 'react'; import { Button } from 'react-bootstrap'; import { Eye, EyeSlash } from 'react-bootstrap-icons'; @@ -16,17 +16,26 @@ export default function SiteRegistryIcon({ siteRegistry }: { siteRegistry: boole } export function SiteRegistryIconButton({ siteRegistry }: { siteRegistry: boolean }) { + /** + * We create a "dummy" state object here. In final version, would want to replace this with proper state change. + */ const [dummySRState, setDummySRState] = useState(siteRegistry) + function onClick() { + setDummySRState(!dummySRState) + } + + /** + * This is to make the 'Make Selected Visible to Public' change work + * Otherwise, the change to the SiteRegistry prop will not change the value. + */ + useEffect(() => { + setDummySRState(siteRegistry); + }, [siteRegistry]) return ( <> - ) From 89b1bd9ccf67ea4f248e64ba6d13c5fe2a3aa153 Mon Sep 17 00:00:00 2001 From: Adam Coard Date: Wed, 11 Oct 2023 09:13:36 -0700 Subject: [PATCH 138/194] Read-only location description field --- .../src/features/site-details/SiteGridItem.tsx | 12 ++++++++++-- .../site-search-frontend/src/pages/site-details.tsx | 2 +- 2 files changed, 11 insertions(+), 3 deletions(-) diff --git a/frontend/site-search-frontend/src/features/site-details/SiteGridItem.tsx b/frontend/site-search-frontend/src/features/site-details/SiteGridItem.tsx index 86031db6..3d73c280 100644 --- a/frontend/site-search-frontend/src/features/site-details/SiteGridItem.tsx +++ b/frontend/site-search-frontend/src/features/site-details/SiteGridItem.tsx @@ -5,7 +5,15 @@ import { useSelector } from "react-redux"; import { RootState } from "@/store"; import { SiteRegistryIconButton } from "@/components/SiteRegistryIcon"; -export default function SiteGridItem( {label, value, extraClasses = '', showSR = false }) { +interface SiteGridItemProps { + label: string; + value: any; + extraClasses?: CSSModuleClasses | string; + showSR?: boolean; + readOnly?: boolean; +} + +export default function SiteGridItem( {label, value, extraClasses = '', showSR = false, readOnly}: SiteGridItemProps) { const editMode = useSelector((state: RootState) => state.edit.editMode) return ( @@ -16,7 +24,7 @@ export default function SiteGridItem( {label, value, extraClasses = '', showSR = SR }
- +
) } diff --git a/frontend/site-search-frontend/src/pages/site-details.tsx b/frontend/site-search-frontend/src/pages/site-details.tsx index 6778d03d..48e705a5 100644 --- a/frontend/site-search-frontend/src/pages/site-details.tsx +++ b/frontend/site-search-frontend/src/pages/site-details.tsx @@ -55,7 +55,7 @@ export default function SiteDetailsPage() { - +
From 168abcbc1d37d628abba571354e3f0269428ce67 Mon Sep 17 00:00:00 2001 From: Adam Coard Date: Wed, 11 Oct 2023 11:18:41 -0700 Subject: [PATCH 139/194] Convert LatLng to d/m/s --- frontend/site-search-frontend/src/helpers/formatLatLng.ts | 8 ++++++++ frontend/site-search-frontend/src/pages/site-details.tsx | 5 +++-- 2 files changed, 11 insertions(+), 2 deletions(-) create mode 100644 frontend/site-search-frontend/src/helpers/formatLatLng.ts diff --git a/frontend/site-search-frontend/src/helpers/formatLatLng.ts b/frontend/site-search-frontend/src/helpers/formatLatLng.ts new file mode 100644 index 00000000..fae0f7b1 --- /dev/null +++ b/frontend/site-search-frontend/src/helpers/formatLatLng.ts @@ -0,0 +1,8 @@ +export function formatLatLng(latlng: number): string { + const absolute = Math.abs(latlng); + const degrees = Math.floor(absolute); + const minutes = Math.floor((absolute - degrees) * 60); + const seconds = ((absolute - degrees - (minutes / 60)) * 3600).toFixed(2); + + return `${degrees}d ${minutes}m ${seconds}s`; + } \ No newline at end of file diff --git a/frontend/site-search-frontend/src/pages/site-details.tsx b/frontend/site-search-frontend/src/pages/site-details.tsx index 48e705a5..cabfa90c 100644 --- a/frontend/site-search-frontend/src/pages/site-details.tsx +++ b/frontend/site-search-frontend/src/pages/site-details.tsx @@ -8,6 +8,7 @@ import styles from './site-details.module.css' import SiteGridItem from "@/features/site-details/SiteGridItem"; import { useState } from "react"; import { toggleEdit } from '@/features/site-details/edit-mode/editModeSlice'; +import { formatLatLng } from "@/helpers/formatLatLng"; export default function SiteDetailsPage() { const { siteID } = useParams(); @@ -51,8 +52,8 @@ export default function SiteDetailsPage() { - - + + From e8ba2d13db58533868f8c5e80c53bb4a21233cdd Mon Sep 17 00:00:00 2001 From: Adam Coard Date: Wed, 11 Oct 2023 11:20:47 -0700 Subject: [PATCH 140/194] Add degree/minute/second lat/lng throught app --- .../site-search-frontend/src/features/map/MapDetailsPane.tsx | 5 +++-- .../src/features/simple-search/search-results.tsx | 5 +++-- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/frontend/site-search-frontend/src/features/map/MapDetailsPane.tsx b/frontend/site-search-frontend/src/features/map/MapDetailsPane.tsx index 31dfe5d5..4e6aa934 100644 --- a/frontend/site-search-frontend/src/features/map/MapDetailsPane.tsx +++ b/frontend/site-search-frontend/src/features/map/MapDetailsPane.tsx @@ -4,6 +4,7 @@ import Button from 'react-bootstrap/Button'; import { Site } from '@/api/sites'; import { MouseEventHandler } from 'react'; import { Link } from 'react-router-dom'; +import { formatLatLng } from '@/helpers/formatLatLng'; export default function MapDetailsPane({site, onClose}: {site: Site, onClose: MouseEventHandler}) { @@ -24,11 +25,11 @@ export default function MapDetailsPane({site, onClose}: {site: Site, onClose: Mo
Latitude
-
{site?.latitude}
+
{formatLatLng(site?.latitude)}
Longitude
-
{site?.longitude}
+
{formatLatLng(site?.longitude)}
Victoria File
diff --git a/frontend/site-search-frontend/src/features/simple-search/search-results.tsx b/frontend/site-search-frontend/src/features/simple-search/search-results.tsx index ac18a2c0..4844119d 100644 --- a/frontend/site-search-frontend/src/features/simple-search/search-results.tsx +++ b/frontend/site-search-frontend/src/features/simple-search/search-results.tsx @@ -2,6 +2,7 @@ import { Site } from '@/api/sites' import { Link } from "react-router-dom"; import Highlighter from '@/components/Highlighted'; +import { formatLatLng } from '@/helpers/formatLatLng'; interface Props { site: Site; @@ -40,8 +41,8 @@ export default function SimpleSearchResults({ site, highlight, searchOption }: P {String(site.siteID)} {site.city} {site.region} - {String(site.latitude)} - {String(site.longitude)} + {formatLatLng(site.latitude)} + {formatLatLng(site.longitude)} From 37f468457bd4672ab5ff4a519b65445fbd9cc0c3 Mon Sep 17 00:00:00 2001 From: midhun-aot Date: Wed, 11 Oct 2023 13:36:59 -0700 Subject: [PATCH 141/194] fixed review comments --- .../Bundling/subProcess/CSSABundleWorklow.bpmn | 10 +++++----- .../Bundling/subProcess/DERABundleWorkflow.bpmn | 4 ++-- .../forms-flow-bpm/templates/request_updated.ftl | 2 +- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/processes/Bundling/subProcess/CSSABundleWorklow.bpmn b/forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/processes/Bundling/subProcess/CSSABundleWorklow.bpmn index d91bae2b..0562d699 100644 --- a/forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/processes/Bundling/subProcess/CSSABundleWorklow.bpmn +++ b/forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/processes/Bundling/subProcess/CSSABundleWorklow.bpmn @@ -385,7 +385,7 @@ system.out.println ("isSentFromSociety "+execution.getVariable('isSentFromSociet task.execution.setVariable('applicationStatus', task.execution.getVariable('action')); task.execution.setVariable('deleteReason', "completed"); -task.execution.setVariable('userRole','Case Worker'); +task.execution.setVariable('userRole','Caseworker'); @@ -459,7 +459,7 @@ task.execution.setVariable('cssaStatus', task.execution.getVariable('action')); task.execution.setVariable('applicationStatus', task.execution.getVariable('action')); task.execution.setVariable('deleteReason', "completed"); task.execution.setVariable('userRole','Statutory Decision Maker'); -task.execution.setVariable('subFormName','DERA Form'); +task.execution.setVariable('subFormName','CSSA Form'); @@ -514,8 +514,8 @@ task.execution.setVariable('requestType', 'CSSA'); task.execution.setVariable('cssaStatus', task.execution.getVariable('action')); task.execution.setVariable('applicationStatus', task.execution.getVariable('action')); task.execution.setVariable('deleteReason', "completed"); -task.execution.setVariable('userRole','Case Worker'); -task.execution.setVariable('subFormName','DERA Form'); +task.execution.setVariable('userRole','Caseworker'); +task.execution.setVariable('subFormName','CSSA Form'); @@ -759,7 +759,7 @@ task.execution.setVariable('requestType', 'SRCR'); task.execution.setVariable('deleteReason', "completed"); task.execution.setVariable('srcrStatus', task.execution.getVariable('action')); task.execution.setVariable('applicationStatus', task.execution.getVariable('action')); -task.execution.setVariable('userRole','Case Worker'); +task.execution.setVariable('userRole','Caseworker'); task.execution.setVariable('subFormName','SRCR Form'); diff --git a/forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/processes/Bundling/subProcess/DERABundleWorkflow.bpmn b/forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/processes/Bundling/subProcess/DERABundleWorkflow.bpmn index ddd4b488..d15e2524 100644 --- a/forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/processes/Bundling/subProcess/DERABundleWorkflow.bpmn +++ b/forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/processes/Bundling/subProcess/DERABundleWorkflow.bpmn @@ -464,7 +464,7 @@ task.execution.setVariable('requestType', 'DERA'); task.execution.setVariable('deraStatus', task.execution.getVariable('action')); task.execution.setVariable('applicationStatus', task.execution.getVariable('action')); task.execution.setVariable('deleteReason', "completed"); -task.execution.setVariable('userRole','Case worker'); +task.execution.setVariable('userRole','Caseworker'); task.execution.setVariable('subFormName','DERA Form'); @@ -894,7 +894,7 @@ system.out.println ("Sent to Caseworker"); task.execution.setVariable('task_id',task.getId()); task.execution.setVariableLocal('variable1',"srcr"); -task.execution.setVariable('userRole','Case worker'); +task.execution.setVariable('userRole','Caseworker'); task.execution.setVariable('requestStatus', task.execution.getVariable('action')); diff --git a/forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/templates/request_updated.ftl b/forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/templates/request_updated.ftl index e5618c1a..1c80efeb 100644 --- a/forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/templates/request_updated.ftl +++ b/forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/templates/request_updated.ftl @@ -15,7 +15,7 @@ - Site Remediation System + Site Remediation Services From f0fd57017704b61c35edd7de60490bfb12b1bfe9 Mon Sep 17 00:00:00 2001 From: Adam Coard Date: Wed, 11 Oct 2023 15:19:30 -0700 Subject: [PATCH 142/194] Fix state deletions and key attr --- .../src/features/site-details/participants.tsx | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/frontend/site-search-frontend/src/features/site-details/participants.tsx b/frontend/site-search-frontend/src/features/site-details/participants.tsx index 7f674993..38f6106b 100644 --- a/frontend/site-search-frontend/src/features/site-details/participants.tsx +++ b/frontend/site-search-frontend/src/features/site-details/participants.tsx @@ -7,6 +7,7 @@ import { useParams } from "react-router-dom"; import { Site, SiteParticipant } from "@/api/sites"; // import { updateSite } from "../simple-search/simple-search"; import { updateSite } from '../simple-search/simple-search'; +import { faker } from "@faker-js/faker"; export default function Participants() { const { siteID } = useParams(); @@ -15,7 +16,7 @@ export default function Participants() { const dispatch = useDispatch(); function newParticipant(){ - const newParticipant: SiteParticipant = {name: '', endDate: '', roles: [''], notes: '', startDate: '', siteRegistry: false}; + const newParticipant: SiteParticipant = {name: '', endDate: '', roles: [''], notes: '', startDate: '', siteRegistry: false, uuid: faker.string.uuid()}; const newSite: Site = { ...site, participants: [...site.participants, newParticipant] @@ -25,14 +26,15 @@ export default function Participants() { } function removeParticipant(checkedObj){ - const checkedAsArray = [...Object.keys(checkedObj).map(key => checkedObj[key])]; + // const checkedAsArray = [...Object.keys(checkedObj).map(key => checkedObj[key])]; // console.log('remove', {checkedObj, checkedAsArray}) const newSite: Site = { ...site, - participants: [...site.participants.filter((participant, index) => { + participants: [...site.participants.filter((_, index) => { // if checked, we want to return false to remove it from the array if (checkedObj[index] === true ) { + // console.log('removing', participant) return false } return true; From 1f80388f8a264a28d98d5e23499a0b534c2dd18a Mon Sep 17 00:00:00 2001 From: Adam Coard Date: Wed, 11 Oct 2023 15:20:11 -0700 Subject: [PATCH 143/194] Notations deletions working, added UUID to every record --- .../src/api/dummy-data.tsx | 115 +- .../site-search-frontend/src/api/sites.ts | 56 +- .../features/simple-search/simple-search.ts | 62 +- .../src/features/site-details/notations.tsx | 18 +- .../src/scripts/dummy-data.sites.json | 88327 +++++++++------- 5 files changed, 49792 insertions(+), 38786 deletions(-) diff --git a/frontend/site-search-frontend/src/api/dummy-data.tsx b/frontend/site-search-frontend/src/api/dummy-data.tsx index 397b1a8f..e7ec0d74 100644 --- a/frontend/site-search-frontend/src/api/dummy-data.tsx +++ b/frontend/site-search-frontend/src/api/dummy-data.tsx @@ -4,7 +4,7 @@ import { SiteParticipant, type Notation, type Site, AssociatedSite, SuspectLandU import formatDateToString from '../helpers/formatDateToString.ts' export function generate({ siteCount }): Site[] { - const output = Array.from({length: siteCount}, _ => createRandomSite()); + const output = Array.from({ length: siteCount }, _ => createRandomSite()); // Update site.associatedSites const outputWithAssociations = createSiteAssociations(output); @@ -16,27 +16,27 @@ export function generate({ siteCount }): Site[] { export function createRandomSite(): Site { return { uuid: faker.string.uuid(), - siteID: faker.number.int({min: 15192, max: 20999}), + siteID: faker.number.int({ min: 15192, max: 20999 }), address: faker.location.streetAddress(), // Lat and Longitude restricted to approximately BC (some Alberta, oceans, etc) - latitude: faker.location.latitude({min: 48, max: 59}), - longitude: faker.location.longitude({min: -139, max: -118}), - lastUpdated: formatDateToString(faker.date.past({years: 10})), + latitude: faker.location.latitude({ min: 48, max: 59 }), + longitude: faker.location.longitude({ min: -139, max: -118 }), + lastUpdated: formatDateToString(faker.date.past({ years: 10 })), city: faker.location.city(), region: randomRegion(), victoriaFile: randomFileString(), regionalFile: 'N/A', - parcelIDs: Array.from({length: 5}, _ => faker.number.int({min: 100000, max: 10000000})), + parcelIDs: Array.from({ length: 5 }, _ => faker.number.int({ min: 100000, max: 10000000 })), locationDescription: 'LAT/LONGS CONFIRMED USING ICIS MAY 16,2013', - notations: createAndPopulateArray({min: 2, max: 5, generator: randomNotation}), - participants: createAndPopulateArray({min: 2, max: 5, generator: randomSiteParticipant}), - suspectLandUses: createAndPopulateArray({min: 2, max: 5, generator: randomSuspectLandUse}), - parcelDescriptions: createAndPopulateArray({min: 2, max: 5, generator: randomParcelDescription}), - siteDisclosures: createAndPopulateArray({min: 1, max: 2, generator: randomSiteDisclosure}), - activityLog: createAndPopulateArray({min: 5, max: 10, generator: randomActivityLogItem}), + notations: createAndPopulateArray({ min: 2, max: 5, generator: randomNotation }), + participants: createAndPopulateArray({ min: 2, max: 5, generator: randomSiteParticipant }), + suspectLandUses: createAndPopulateArray({ min: 2, max: 5, generator: randomSuspectLandUse }), + parcelDescriptions: createAndPopulateArray({ min: 2, max: 5, generator: randomParcelDescription }), + siteDisclosures: createAndPopulateArray({ min: 1, max: 2, generator: randomSiteDisclosure }), + activityLog: createAndPopulateArray({ min: 5, max: 10, generator: randomActivityLogItem }), // Associated Sites is generated after site generation with `createSiteAssociations()`, as we need siteIDs already gen'd. associatedSites: [] @@ -47,24 +47,25 @@ export function createRandomSite(): Site { /** * Helper function, creates an array of varying length (between min-max) and each item in array will be created by invoking generator(). */ -function createAndPopulateArray({min, max, generator}): T[] { - return Array.from({length: faker.number.int({min, max}) }, () => { return generator() }); +function createAndPopulateArray({ min, max, generator }): T[] { + return Array.from({ length: faker.number.int({ min, max }) }, () => { return generator() }); } -const REGIONS = ['Vancouver Island/Coast', 'Mainland/Southwest', 'Thompson-Okanagan', 'Kootenay', 'Cariboo',' North Coast']; +const REGIONS = ['Vancouver Island/Coast', 'Mainland/Southwest', 'Thompson-Okanagan', 'Kootenay', 'Cariboo', ' North Coast']; function randomRegion() { const random = Math.floor(Math.random() * REGIONS.length) return REGIONS[random]; } -function randomFileString(){ - return `26250-20/${ faker.number.int({min: 700, max: 20000})}` +function randomFileString() { + return `26250-20/${faker.number.int({ min: 700, max: 20000 })}` } function randomNotation(): Notation { function randomNotationParticipant() { return { + uuid: faker.string.uuid(), name: faker.helpers.arrayElement(['SNC-LAVALIN ENVIRONMENT INC.', 'SHELL CANADA PRODUCTS']), role: faker.helpers.arrayElement(['SUBMITTED BY', 'REQUESTED BY']), siteRegistry: faker.datatype.boolean() @@ -72,15 +73,16 @@ function randomNotation(): Notation { } return { - createdAt: formatDateToString(faker.date.past({years: 10})), - completed: formatDateToString(faker.date.past({years: 10})), - initiated: formatDateToString(faker.date.past({years: 10})), + uuid: faker.string.uuid(), + createdAt: formatDateToString(faker.date.past({ years: 10 })), + completed: formatDateToString(faker.date.past({ years: 10 })), + initiated: formatDateToString(faker.date.past({ years: 10 })), ministryContact: faker.person.lastName().toUpperCase() + " " + faker.person.firstName().toUpperCase(), notationClass: "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", note: '', notationType: 'CERTIFICATE OF COMPLIANCE REQUESTED', requestedActions: [''], - notationParticipants: Array.from({length: faker.number.int({min: 2, max: 5})}, () => {return randomNotationParticipant()}), + notationParticipants: Array.from({ length: faker.number.int({ min: 2, max: 5 }) }, () => { return randomNotationParticipant() }), siteRegistry: faker.datatype.boolean(), } } @@ -88,12 +90,13 @@ function randomNotation(): Notation { function randomSiteParticipant(): SiteParticipant { return { - name: faker.helpers.arrayElement(['SHELL CANADA PRODUCTS', 'SNC-LAVALIN ENVIRONMENT INC', 'IPSUM', 'AMET, DOLOR SIT']), - endDate: formatDateToString(faker.date.past({years: 10})), - startDate: formatDateToString(faker.date.past({years: 10})), - notes: '', - roles: [faker.helpers.arrayElement(['ORGANIZATION', 'EMPLOYEE'])], - siteRegistry: faker.datatype.boolean() + uuid: faker.string.uuid(), + name: faker.helpers.arrayElement(['SHELL CANADA PRODUCTS', 'SNC-LAVALIN ENVIRONMENT INC', 'IPSUM', 'AMET, DOLOR SIT']), + endDate: formatDateToString(faker.date.past({ years: 10 })), + startDate: formatDateToString(faker.date.past({ years: 10 })), + notes: '', + roles: [faker.helpers.arrayElement(['ORGANIZATION', 'EMPLOYEE'])], + siteRegistry: faker.datatype.boolean() } } @@ -105,7 +108,7 @@ function createSiteAssociations(sites: Site[]): Site[] { const sitesWithAssociations = sites.map(site => { - site.associatedSites = Array.from({length: faker.number.int({min: 1, max: 3})}, () => {return randomAssociation(siteIDs, site.siteID)}) + site.associatedSites = Array.from({ length: faker.number.int({ min: 1, max: 3 }) }, () => { return randomAssociation(siteIDs, site.siteID) }) return site; }) @@ -117,9 +120,10 @@ function randomAssociation(siteIDs: number[], parentSiteID: number): AssociatedS const validSiteIDs = siteIDs.filter(x => x !== parentSiteID); return { - dateNoted: formatDateToString(faker.date.past({years: 10})), + uuid: faker.string.uuid(), + dateNoted: formatDateToString(faker.date.past({ years: 10 })), notes: '', - parcelID: faker.number.int({min: 15192, max: 20999}).toString(), + parcelID: faker.number.int({ min: 15192, max: 20999 }).toString(), siteID: faker.helpers.arrayElement(validSiteIDs).toString(), siteRegistry: faker.datatype.boolean(), } @@ -127,9 +131,10 @@ function randomAssociation(siteIDs: number[], parentSiteID: number): AssociatedS } function randomSuspectLandUse(): SuspectLandUse { - const date = formatDateToString(faker.date.past({years: 10})); + const date = formatDateToString(faker.date.past({ years: 10 })); return { + uuid: faker.string.uuid(), siteRegistry: faker.datatype.boolean(), notes: `INSERTED FOR SITE PROFILE DATED ${date} (described on Site Profile dated ${date})`, landUse: faker.helpers.arrayElement(['PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES', 'PETROLEUM OR NATURAL GAS DRILLING']), @@ -138,16 +143,17 @@ function randomSuspectLandUse(): SuspectLandUse { function randomSiteDisclosure(): SiteDisclosure { return { + uuid: faker.string.uuid(), siteRegistry: faker.datatype.boolean(), - dateReceived: formatDateToString(faker.date.past({years: 10})), - dateCompleted: formatDateToString(faker.date.past({years: 10})), - dateEntered: formatDateToString(faker.date.past({years: 10})), - dateRegistrar: formatDateToString(faker.date.past({years: 10})), - dateLocalAuthorityReceived: formatDateToString(faker.date.past({years: 10})), - summary: faker.lorem.lines({min: 1, max: 3}), - informationUsed: faker.lorem.lines({min: 3, max: 5}), - pastOrPresentOrders: faker.lorem.lines({min: 1, max: 3}), - commercialAndIndustrialPurposes: createAndPopulateArray({min: 2, max: 4, generator: randomSiteCommercialIndustrialActivity}) + dateReceived: formatDateToString(faker.date.past({ years: 10 })), + dateCompleted: formatDateToString(faker.date.past({ years: 10 })), + dateEntered: formatDateToString(faker.date.past({ years: 10 })), + dateRegistrar: formatDateToString(faker.date.past({ years: 10 })), + dateLocalAuthorityReceived: formatDateToString(faker.date.past({ years: 10 })), + summary: faker.lorem.lines({ min: 1, max: 3 }), + informationUsed: faker.lorem.lines({ min: 3, max: 5 }), + pastOrPresentOrders: faker.lorem.lines({ min: 1, max: 3 }), + commercialAndIndustrialPurposes: createAndPopulateArray({ min: 2, max: 4, generator: randomSiteCommercialIndustrialActivity }) @@ -157,8 +163,9 @@ function randomSiteDisclosure(): SiteDisclosure { function randomSiteCommercialIndustrialActivity(): SiteDisclosurePurpose { return { - scheduleReference: faker.helpers.arrayElement(['F1*', 'F2*']), - description: faker.helpers.arrayElement(['PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES', 'PETROLEUM OR NATURAL GAS DRILLING']), + uuid: faker.string.uuid(), + scheduleReference: faker.helpers.arrayElement(['F1*', 'F2*']), + description: faker.helpers.arrayElement(['PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES', 'PETROLEUM OR NATURAL GAS DRILLING']), siteRegistry: faker.datatype.boolean() } } @@ -166,27 +173,29 @@ function randomSiteCommercialIndustrialActivity(): SiteDisclosurePurpose { function randomActivityLogItem(): ActivityLogItem { return { + uuid: faker.string.uuid(), siteRegistry: faker.datatype.boolean(), activity: 'Lorem ipsum dolor sit amet', user: faker.person.lastName().toUpperCase() + " " + faker.person.firstName().toUpperCase(), - timestamp: formatDateToString(faker.date.past({years: 10})) + timestamp: formatDateToString(faker.date.past({ years: 10 })) } } function randomParcelDescription(): ParcelDescription { - const lot = faker.number.int({min: 1, max: 5}) - const secondLot = faker.number.int({min: 1, max: 5}) - const block = faker.number.int({min: 1, max: 5}) - const district = faker.number.int({min: 1, max: 5}) - const plan = faker.number.int({min: 2901, max: 9802}) - + const lot = faker.number.int({ min: 1, max: 5 }) + const secondLot = faker.number.int({ min: 1, max: 5 }) + const block = faker.number.int({ min: 1, max: 5 }) + const district = faker.number.int({ min: 1, max: 5 }) + const plan = faker.number.int({ min: 2901, max: 9802 }) + return { + uuid: faker.string.uuid(), siteRegistry: faker.datatype.boolean(), - dateNoted: formatDateToString(faker.date.past({years: 10})), - parcelID: faker.number.int({min: 15192, max: 20999}).toString(), - crownLandUsePIN: faker.number.int({min: 15192, max: 20999}).toString(), - crownLandFileNumber: faker.number.int({min: 15192, max: 20999}).toString(), + dateNoted: formatDateToString(faker.date.past({ years: 10 })), + parcelID: faker.number.int({ min: 15192, max: 20999 }).toString(), + crownLandUsePIN: faker.number.int({ min: 15192, max: 20999 }).toString(), + crownLandFileNumber: faker.number.int({ min: 15192, max: 20999 }).toString(), landDescription: `LOT ${lot} OF LOT ${secondLot} BLOCK ${block} DISTRICT LOT ${district} PLAN ${plan}` } } \ No newline at end of file diff --git a/frontend/site-search-frontend/src/api/sites.ts b/frontend/site-search-frontend/src/api/sites.ts index c90a05c8..721472dc 100644 --- a/frontend/site-search-frontend/src/api/sites.ts +++ b/frontend/site-search-frontend/src/api/sites.ts @@ -2,6 +2,10 @@ interface canBeOnSiteRegistry { siteRegistry: boolean; } +interface hasUUID { + uuid: string; +} + export class Site { uuid: string; siteID: number; @@ -26,51 +30,27 @@ export class Site { siteDisclosures: SiteDisclosure[]; activityLog: ActivityLogItem[]; - - // constructor(data: Site) { - // // Using "Object.assign()" to bypass having to assign all properties - // // https://stackoverflow.com/questions/69291358/shortcut-syntax-to-class-constructor-from-typescript-interface - // Object.assign(this, data); - - // // This "new Date" is necessary when loading JSON dummy data which stores date as a string - // // This will likely have to change when integrating with API - // // this.lastUpdated = new Date(this.lastUpdated); - - // // Initialize all dates inside notations too - // this.notations = this.notations.map(note => new Notation(note)); - // } } -// interface OnSiteRegistry { -// visibleOnSiteRegistry: boolean -// } -export class Notation implements canBeOnSiteRegistry { +export class Notation implements canBeOnSiteRegistry, hasUUID { + uuid: string; createdAt: string; - // notationType: NOTATION_TYPES notationType: 'CERTIFICATE OF COMPLIANCE ISSUED USING RISK BASED STANDARDS' | 'CERTIFICATE OF COMPLIANCE REQUESTED' | string - // notationClass: "ENVIRONMENTAL MANAGEMENT ACT: GENERAL" notationClass: "ENVIRONMENTAL MANAGEMENT ACT: GENERAL" | string initiated: string; completed: string; ministryContact: string; note: string; requestedActions: string[] - notationParticipants: {name: string, role: string, siteRegistry: boolean}[] + notationParticipants: {name: string, role: string, siteRegistry: boolean, uuid: string}[] siteRegistry: boolean; - - // constructor(data: Notation) { - // // See Site object for notes on constructor behaviour - // Object.assign(this, data); - // // this.createdAt = new Date(this.createdAt); - // // this.initiated = new Date(this.initiated); - // // this.completed = new Date(this.completed); - // } } -export class SiteParticipant implements canBeOnSiteRegistry { +export class SiteParticipant implements canBeOnSiteRegistry, hasUUID { + uuid: string; name: string; roles: string[]; startDate: string; @@ -79,7 +59,8 @@ export class SiteParticipant implements canBeOnSiteRegistry { siteRegistry: boolean; } -export class AssociatedSite implements canBeOnSiteRegistry { +export class AssociatedSite implements canBeOnSiteRegistry, hasUUID { + uuid: string; siteID: string; parcelID: string; dateNoted: string; @@ -87,13 +68,15 @@ export class AssociatedSite implements canBeOnSiteRegistry { siteRegistry: boolean; } -export class SuspectLandUse implements canBeOnSiteRegistry { +export class SuspectLandUse implements canBeOnSiteRegistry, hasUUID { + uuid: string; siteRegistry: boolean; landUse: string; notes: string; } -export class ParcelDescription implements canBeOnSiteRegistry { +export class ParcelDescription implements canBeOnSiteRegistry, hasUUID { + uuid: string; siteRegistry: boolean; dateNoted: string; parcelID: string; @@ -102,7 +85,8 @@ export class ParcelDescription implements canBeOnSiteRegistry { landDescription: string; } -export class SiteDisclosure implements canBeOnSiteRegistry { +export class SiteDisclosure implements canBeOnSiteRegistry, hasUUID { + uuid: string; siteRegistry: boolean; dateReceived: string; dateCompleted: string; @@ -117,14 +101,16 @@ export class SiteDisclosure implements canBeOnSiteRegistry { pastOrPresentOrders: string; } -export class SiteDisclosurePurpose implements canBeOnSiteRegistry { +export class SiteDisclosurePurpose implements canBeOnSiteRegistry, hasUUID { + uuid: string; scheduleReference: string; description: string; siteRegistry: boolean } -export class ActivityLogItem implements canBeOnSiteRegistry { +export class ActivityLogItem implements canBeOnSiteRegistry, hasUUID { + uuid: string; siteRegistry: boolean; activity: string; user: string; diff --git a/frontend/site-search-frontend/src/features/simple-search/simple-search.ts b/frontend/site-search-frontend/src/features/simple-search/simple-search.ts index 3988bb30..0752606e 100644 --- a/frontend/site-search-frontend/src/features/simple-search/simple-search.ts +++ b/frontend/site-search-frontend/src/features/simple-search/simple-search.ts @@ -30,25 +30,25 @@ import formatDateToString from '@/helpers/formatDateToString'; // }] // } -const addNotationBySiteIDNewTemp = (state, action) => { - const site: Site = state.value.find((todo) => todo.siteID === action.payload) - // site.notations.push(); - // site.notations = []; - site.notations = [...site.notations, { - completed: formatDateToString(new Date()), - createdAt: formatDateToString(new Date()), - initiated: formatDateToString(new Date()), - ministryContact: '', - notationClass: 'ENVIRONMENTAL MANAGEMENT ACT: GENERAL', - notationParticipants: [], - notationType: 'CERTIFICATE OF COMPLIANCE ISSUED USING RISK BASED STANDARDS', - note: '', - requestedActions: [], - siteRegistry: false, - }] +// const addNotationBySiteIDNewTemp = (state, action) => { +// const site: Site = state.value.find((todo) => todo.siteID === action.payload) +// // site.notations.push(); +// // site.notations = []; +// site.notations = [...site.notations, { +// completed: formatDateToString(new Date()), +// createdAt: formatDateToString(new Date()), +// initiated: formatDateToString(new Date()), +// ministryContact: '', +// notationClass: 'ENVIRONMENTAL MANAGEMENT ACT: GENERAL', +// notationParticipants: [], +// notationType: 'CERTIFICATE OF COMPLIANCE ISSUED USING RISK BASED STANDARDS', +// note: '', +// requestedActions: [], +// siteRegistry: false, +// }] - // return state; // ???? can i do a ...spread patch in here? -} +// // return state; // ???? can i do a ...spread patch in here? +// } export const siteSlice = createSlice({ @@ -64,13 +64,35 @@ export const siteSlice = createSlice({ state.value = state.value.map((site) => site.siteID === action.payload.siteID ? action.payload : site ) - } + }, + + deleteNotation: (state, action: PayloadAction<{ siteUUID: string, notationUUID: string }>) => { + // Find the site by siteUUID + const site = state.value.find((site) => site.uuid === action.payload.siteUUID); + + if (site) { + // Filter out the Notation with the provided UUID + site.notations = site.notations.filter((notation) => notation.uuid !== action.payload.notationUUID); + } + }, + + // deleteNotation: (state, action: PayloadAction<{ siteUUID: string, notationUUID: string }>) => { + // const { siteUUID, notationUUID } = action.payload; + + // // Find the site by UUID + // const site = state.site.find(site => site.uuid === siteUUID); + + // if (site) { + // // Filter out the notation by UUID from the site's notations + // site.notations = site.notations.filter(notation => notation.uuid !== notationUUID); + // } + // }, } }) // Action creators are generated for each case reducer function -export const { add, updateSite } = siteSlice.actions +export const { add, updateSite, deleteNotation } = siteSlice.actions export default siteSlice.reducer diff --git a/frontend/site-search-frontend/src/features/site-details/notations.tsx b/frontend/site-search-frontend/src/features/site-details/notations.tsx index a52c7b37..0f733f63 100644 --- a/frontend/site-search-frontend/src/features/site-details/notations.tsx +++ b/frontend/site-search-frontend/src/features/site-details/notations.tsx @@ -7,12 +7,13 @@ import { useParams } from 'react-router-dom'; import { useDispatch, useSelector } from 'react-redux'; import { Notation, Site } from '@/api/sites'; import { RootState } from '@/store'; -import { updateSite } from '../simple-search/simple-search'; +import { deleteNotation, updateSite } from '../simple-search/simple-search'; import { useEffect, useState } from 'react'; import SiteRegistryIcon from '@/components/SiteRegistryIcon'; import SubSearch from './sub-search/SubSearch'; import SiteDetailsTable from './table/SiteDetailsTable'; import formatDateToString from '@/helpers/formatDateToString'; +import { faker } from '@faker-js/faker'; @@ -26,6 +27,7 @@ export default function Notations() { function newNotation() { const newNotation: Notation = { + uuid: faker.string.uuid(), completed: formatDateToString(new Date), createdAt: formatDateToString(new Date), initiated: formatDateToString(new Date), @@ -44,7 +46,7 @@ export default function Notations() { } function newParticipant({ notationIndex }){ - const newParticipant = {name: '', role: '', siteRegistry: false}; + const newParticipant = {name: '', role: '', siteRegistry: false, uuid: faker.string.uuid()}; const newSite: Site = { ...site, notations: site.notations.map((notation, index) => { @@ -61,6 +63,11 @@ export default function Notations() { dispatch(updateSite(newSite)) } + // Correctly updates state, but still have issue where deleting from the top has the top values overwrite it's replacement + function clickDeleteNotation(notation: Notation) { + dispatch(deleteNotation({ siteUUID: site.uuid, notationUUID: notation.uuid })) + } + function removeAtWithSplice(array, index) { const copy = [...array]; copy.splice(index, 1); @@ -101,7 +108,8 @@ export default function Notations() { {editMode && } {site.notations.map((siteNotationData, index) => { - return + // return + return })} @@ -110,7 +118,7 @@ export default function Notations() { } -function NotationItem({ notation, index, onClickAddParticipant, onClickRemoveParticipant }: { notation: Notation, index: number, onClickAddParticipant: any, onClickRemoveParticipant: any }) { +function NotationItem({ notation, index, onClickAddParticipant, onClickRemoveParticipant, onClickDeleteNotation }: { notation: Notation, index: number, onClickAddParticipant: any, onClickRemoveParticipant: any, onClickDeleteNotation: any}) { const isMinistry = useSelector((state: RootState) => state.user.isMinistry); const editMode = useSelector((state: RootState) => state.edit.editMode); @@ -128,7 +136,7 @@ function NotationItem({ notation, index, onClickAddParticipant, onClickRemovePar
{editMode &&
- +
}
diff --git a/frontend/site-search-frontend/src/scripts/dummy-data.sites.json b/frontend/site-search-frontend/src/scripts/dummy-data.sites.json index 98302f21..3bc68d88 100644 --- a/frontend/site-search-frontend/src/scripts/dummy-data.sites.json +++ b/frontend/site-search-frontend/src/scripts/dummy-data.sites.json @@ -1,29 +1,30 @@ [ { - "uuid": "fbd8cd02-fa1d-4861-85c3-03ef22cc0151", - "siteID": 15284, - "address": "2185 Daija Center", - "latitude": 58.3138, - "longitude": -136.9511, - "lastUpdated": "2016-09-11", - "city": "South Marjory", - "region": "Kootenay", - "victoriaFile": "26250-20/9066", + "uuid": "85f167c2-d06f-4fcc-bf33-08463add054b", + "siteID": 16202, + "address": "9250 Cristobal Courts", + "latitude": 57.3726, + "longitude": -122.7921, + "lastUpdated": "2019-11-02", + "city": "Fort Lyda", + "region": " North Coast", + "victoriaFile": "26250-20/12638", "regionalFile": "N/A", "parcelIDs": [ - 6196657, - 5762544, - 8516660, - 3383870, - 8575001 + 1347964, + 258927, + 8028220, + 1331511, + 7711839 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2014-03-31", - "completed": "2016-01-17", - "initiated": "2021-05-17", - "ministryContact": "UPTON JESSIKA", + "uuid": "c6c0d99c-1d32-412e-8141-499209622ca6", + "createdAt": "2016-10-18", + "completed": "2019-07-17", + "initiated": "2020-02-01", + "ministryContact": "SCHMIDT IDELLA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -32,33 +33,38 @@ ], "notationParticipants": [ { + "uuid": "ec418237-8435-4fa4-a88f-165d24a4efbb", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "uuid": "0b45f2d6-7ddb-4584-94ea-6081ac3b5abe", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false }, { + "uuid": "ebba8f3b-a282-46fd-8f4d-2abed2679f5e", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": true }, { + "uuid": "dd50d95a-c8d7-41c9-a8d9-1ef8a96d8cd0", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false } ], "siteRegistry": false }, { - "createdAt": "2015-05-23", - "completed": "2013-11-11", - "initiated": "2017-09-20", - "ministryContact": "WINTHEISER KACIE", + "uuid": "88ce108f-3c93-4feb-98a5-8d15e4eb1ba1", + "createdAt": "2016-09-17", + "completed": "2021-04-18", + "initiated": "2016-08-31", + "ministryContact": "BREKKE MERTIE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -67,58 +73,38 @@ ], "notationParticipants": [ { + "uuid": "7612bb12-f91c-4809-9deb-58683bc4441f", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false }, { + "uuid": "17d83ae1-330b-4fda-acb5-f7b8693bf91b", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - } - ], - "siteRegistry": false - }, - { - "createdAt": "2020-04-24", - "completed": "2017-07-18", - "initiated": "2022-02-09", - "ministryContact": "RATH LETHA", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { + "uuid": "2d97c4ca-d575-4819-822b-1e17b549a538", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", "siteRegistry": false }, { + "uuid": "959652d3-c959-46e2-9d76-69116f74fbd8", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2019-03-12", - "completed": "2019-02-01", - "initiated": "2022-11-29", - "ministryContact": "BARTELL DILLAN", + "uuid": "2463ce3a-7ae1-4215-a105-077393c4cd6a", + "createdAt": "2014-11-28", + "completed": "2023-02-02", + "initiated": "2022-03-18", + "ministryContact": "HETTINGER JOSUE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -127,23 +113,21 @@ ], "notationParticipants": [ { + "uuid": "b9c442bb-2dfb-4357-8e3b-673ce4ed94cf", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true }, { + "uuid": "6dab34b9-8e9d-4e07-97b1-80cc4563e464", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true }, { + "uuid": "987de94c-ea5b-4c62-a5f6-f92292ca3fee", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", "siteRegistry": false } ], @@ -152,9 +136,10 @@ ], "participants": [ { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2021-01-20", - "startDate": "2019-03-04", + "uuid": "1b02dd62-bc16-40a1-876c-472ac5401bf8", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2023-02-25", + "startDate": "2022-08-08", "notes": "", "roles": [ "EMPLOYEE" @@ -162,194 +147,291 @@ "siteRegistry": true }, { + "uuid": "d85ad8f8-6462-4115-aeb4-29cc917b07e9", "name": "SHELL CANADA PRODUCTS", - "endDate": "2023-04-16", - "startDate": "2020-11-11", + "endDate": "2019-04-12", + "startDate": "2020-05-24", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": false + }, + { + "uuid": "09cb202f-0953-40ed-9b23-68c2740b1844", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2017-03-13", + "startDate": "2016-10-08", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "uuid": "340d4551-7374-4498-afa5-5134e3ad0b4a", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2015-12-10", + "startDate": "2016-03-03", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "uuid": "69a435fa-c7fc-45ec-9c08-aae9f8a776b3", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2014-12-01", + "startDate": "2022-01-05", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true } ], "suspectLandUses": [ { + "uuid": "a5fac4da-2176-441a-af5d-2d04418f0455", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2021-04-14 (described on Site Profile dated 2021-04-14)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "uuid": "29aae894-3d98-4f7d-9c80-98dc2dcff483", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-12-17 (described on Site Profile dated 2021-12-17)", + "notes": "INSERTED FOR SITE PROFILE DATED 2018-11-25 (described on Site Profile dated 2018-11-25)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2023-08-31 (described on Site Profile dated 2023-08-31)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "uuid": "75698560-8f13-49ce-a816-66e84810210f", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2016-12-07 (described on Site Profile dated 2016-12-07)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2023-06-15 (described on Site Profile dated 2023-06-15)", + "uuid": "95b1cf24-8a9b-448d-bc50-d496e73c21e5", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2022-03-16 (described on Site Profile dated 2022-03-16)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], "parcelDescriptions": [ { + "uuid": "0a926354-4e47-4369-8a3d-5f2551623a50", "siteRegistry": false, - "dateNoted": "2017-07-05", - "parcelID": "20470", - "crownLandUsePIN": "18958", - "crownLandFileNumber": "17338", - "landDescription": "LOT 4 OF LOT 4 BLOCK 4 DISTRICT LOT 5 PLAN 6247" + "dateNoted": "2016-08-16", + "parcelID": "19292", + "crownLandUsePIN": "17539", + "crownLandFileNumber": "15638", + "landDescription": "LOT 1 OF LOT 5 BLOCK 5 DISTRICT LOT 1 PLAN 3245" }, { - "siteRegistry": true, - "dateNoted": "2018-01-31", - "parcelID": "19136", - "crownLandUsePIN": "15692", - "crownLandFileNumber": "16300", - "landDescription": "LOT 5 OF LOT 5 BLOCK 3 DISTRICT LOT 5 PLAN 8086" + "uuid": "676ec601-a004-446d-9208-8b6bc64cb9c0", + "siteRegistry": false, + "dateNoted": "2014-03-28", + "parcelID": "20600", + "crownLandUsePIN": "18697", + "crownLandFileNumber": "16588", + "landDescription": "LOT 1 OF LOT 2 BLOCK 3 DISTRICT LOT 3 PLAN 3693" }, { + "uuid": "fde3421d-764a-4c8b-9b06-0734d06afae5", "siteRegistry": false, - "dateNoted": "2019-06-11", - "parcelID": "16728", - "crownLandUsePIN": "18666", - "crownLandFileNumber": "17588", - "landDescription": "LOT 3 OF LOT 3 BLOCK 3 DISTRICT LOT 2 PLAN 6752" + "dateNoted": "2015-11-27", + "parcelID": "17229", + "crownLandUsePIN": "17321", + "crownLandFileNumber": "16637", + "landDescription": "LOT 4 OF LOT 5 BLOCK 3 DISTRICT LOT 2 PLAN 6125" }, { - "siteRegistry": false, - "dateNoted": "2016-03-21", - "parcelID": "20096", - "crownLandUsePIN": "16566", - "crownLandFileNumber": "20450", - "landDescription": "LOT 1 OF LOT 1 BLOCK 2 DISTRICT LOT 3 PLAN 7550" + "uuid": "301fd6b2-5b3c-4299-a9bb-f71faf776422", + "siteRegistry": true, + "dateNoted": "2020-07-14", + "parcelID": "15354", + "crownLandUsePIN": "16248", + "crownLandFileNumber": "15505", + "landDescription": "LOT 4 OF LOT 2 BLOCK 1 DISTRICT LOT 1 PLAN 8416" } ], "siteDisclosures": [ { - "siteRegistry": true, - "dateReceived": "2019-04-22", - "dateCompleted": "2014-12-22", - "dateEntered": "2019-08-21", - "dateRegistrar": "2015-03-17", - "dateLocalAuthorityReceived": "2020-01-29", - "summary": "Voluptate nostrum commodi atque sint.\nIllum numquam facere.\nQuisquam voluptas ad eius beatae.", - "informationUsed": "Eveniet itaque consequatur cum sint facere quos.\nExpedita laborum sit nisi architecto alias.\nVoluptates ipsam inventore fugit nam ratione harum quidem enim.\nMinima nihil consequatur hic tempora dolor aliquam aliquam quibusdam.\nVeniam odit necessitatibus expedita error perspiciatis.", - "pastOrPresentOrders": "Quaerat sed exercitationem accusantium illo reprehenderit accusamus dolores sint.", + "uuid": "b901a6cf-3b64-4d28-9067-8f0053ca5d3e", + "siteRegistry": false, + "dateReceived": "2021-07-08", + "dateCompleted": "2018-05-16", + "dateEntered": "2014-02-15", + "dateRegistrar": "2019-12-18", + "dateLocalAuthorityReceived": "2018-08-30", + "summary": "Cupiditate nisi deleniti amet dolores vitae delectus asperiores aspernatur.\nMinus excepturi ab commodi eveniet voluptatibus quaerat quos blanditiis.\nVitae et distinctio molestiae.", + "informationUsed": "Culpa totam vel quidem consectetur hic.\nOdio ducimus tempora dolorum ut voluptate neque.\nFuga autem quasi ab cum aut saepe ad quis.\nSequi sapiente excepturi beatae delectus sed sint.\nVoluptates nemo cupiditate repellat nam dolor quo pariatur reprehenderit eaque.", + "pastOrPresentOrders": "Iste repellat soluta eos vero fugiat at minima.", "commercialAndIndustrialPurposes": [ { + "uuid": "8a5aa77f-8022-418f-9376-98d99eab180a", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, { - "scheduleReference": "F2*", + "uuid": "f0b9edf5-6dca-40fa-be6e-4b518077e2fb", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false + "siteRegistry": true }, { + "uuid": "5c2d8500-1367-4e65-bf8d-07d4a6e8470a", "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + } + ] + }, + { + "uuid": "b2de66ea-ec45-4176-882c-fb16b41e7bfc", + "siteRegistry": false, + "dateReceived": "2022-12-26", + "dateCompleted": "2016-05-11", + "dateEntered": "2022-04-17", + "dateRegistrar": "2017-06-03", + "dateLocalAuthorityReceived": "2014-06-22", + "summary": "Voluptas totam repellat veritatis accusantium harum.\nQuia aliquid perspiciatis.", + "informationUsed": "Quia consequatur modi.\nNulla fuga molestiae minima autem at dolorem.\nNam quam impedit sapiente incidunt eveniet eligendi nisi.\nNostrum quaerat sapiente necessitatibus laudantium sunt occaecati vero.\nUnde perspiciatis ratione similique repellendus doloribus ut possimus.", + "pastOrPresentOrders": "Amet officiis nam at.\nCommodi temporibus soluta animi at possimus excepturi.\nReiciendis natus tempora ea placeat est assumenda.", + "commercialAndIndustrialPurposes": [ + { + "uuid": "2f432800-742e-4ce7-9ca9-3d52dc2909ae", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "uuid": "7bb87b04-637b-426f-9106-8d11a245cb65", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, { + "uuid": "00677392-153f-4700-b632-81ba9500f3a0", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true + "siteRegistry": false } ] } ], "activityLog": [ { + "uuid": "1de9b8b2-e843-4ad4-ab2e-f02b22c7fcc9", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "TREMBLAY SABRYNA", - "timestamp": "2014-01-15" + "user": "RAYNOR TRE", + "timestamp": "2015-04-06" }, { + "uuid": "ec9d1790-5614-4f8d-8af5-f7455c570353", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "BOYER ELWYN", - "timestamp": "2019-05-25" + "user": "FRIESEN JOVAN", + "timestamp": "2018-07-29" }, { - "siteRegistry": false, + "uuid": "1317194a-c278-461b-8995-fe79a1d15da7", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "WELCH GREGORY", - "timestamp": "2014-09-15" + "user": "STEHR DEJON", + "timestamp": "2014-02-23" }, { + "uuid": "858926ed-c14b-49f3-892d-987afec4f0fa", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "FUNK RASHAWN", - "timestamp": "2013-11-29" + "user": "BOGAN ALIYA", + "timestamp": "2018-03-17" }, { - "siteRegistry": false, + "uuid": "88cbd092-6268-4718-ba7f-66b1d9a984d9", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "REINGER ABDUL", - "timestamp": "2015-03-16" + "user": "WILDERMAN AMPARO", + "timestamp": "2021-02-28" }, { - "siteRegistry": false, + "uuid": "b765f636-7179-4005-8a8e-20017d6320e1", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "WALSH FELICITA", - "timestamp": "2014-01-12" + "user": "BAHRINGER ELI", + "timestamp": "2021-10-19" }, { - "siteRegistry": true, + "uuid": "3eeb8e9f-e73d-44d5-82ae-3187a839dd08", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "BATZ CRAIG", - "timestamp": "2018-02-22" + "user": "PFANNERSTILL FREDY", + "timestamp": "2017-02-12" }, { - "siteRegistry": false, + "uuid": "0700e613-2a21-4fab-b840-a859bd70fe29", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "LEUSCHKE LORENZA", - "timestamp": "2018-07-24" + "user": "TORPHY JARVIS", + "timestamp": "2019-08-24" } ], "associatedSites": [ { - "dateNoted": "2022-02-18", + "uuid": "2aba5ca3-5c21-4fa7-8b01-416791b0ddf8", + "dateNoted": "2018-06-10", "notes": "", - "parcelID": "19711", - "siteID": "16881", + "parcelID": "15833", + "siteID": "20193", + "siteRegistry": true + }, + { + "uuid": "e46e61a5-10a9-4009-822a-5afe14c73224", + "dateNoted": "2018-01-12", + "notes": "", + "parcelID": "16989", + "siteID": "16254", "siteRegistry": true }, { - "dateNoted": "2017-08-12", + "uuid": "e209dbfa-bc54-4ca1-b3d5-ff10be826559", + "dateNoted": "2022-11-08", "notes": "", - "parcelID": "18088", - "siteID": "17153", + "parcelID": "15306", + "siteID": "19196", "siteRegistry": false } ] }, { - "uuid": "f736a948-cb5b-45c0-818f-81ff7d417c1d", - "siteID": 18639, - "address": "443 Herman Terrace", - "latitude": 49.022, - "longitude": -128.7397, - "lastUpdated": "2017-12-14", - "city": "Port Aliza", - "region": " North Coast", - "victoriaFile": "26250-20/4054", + "uuid": "5cf1c791-a00d-42a6-bc65-d3887fe5dffb", + "siteID": 20378, + "address": "40522 Marcelino Valleys", + "latitude": 55.4533, + "longitude": -118.8382, + "lastUpdated": "2015-09-10", + "city": "West Tadfort", + "region": "Kootenay", + "victoriaFile": "26250-20/10180", "regionalFile": "N/A", "parcelIDs": [ - 6305753, - 4872477, - 2217731, - 5522531, - 6985957 + 9533731, + 1852199, + 4772569, + 7335371, + 6078686 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2015-09-30", - "completed": "2021-06-03", - "initiated": "2018-03-21", - "ministryContact": "JOHNSTON RICKY", + "uuid": "a3266e94-ce63-405f-811a-ced67bd0bdd1", + "createdAt": "2020-04-28", + "completed": "2015-01-11", + "initiated": "2020-05-30", + "ministryContact": "LEHNER MYRIAM", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -358,46 +440,25 @@ ], "notationParticipants": [ { + "uuid": "3765f7b7-1141-464d-89a4-96b3aa467333", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true }, { + "uuid": "b2d402b8-0792-43ed-86bb-fc858e2ff253", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - } - ], - "siteRegistry": true - }, - { - "createdAt": "2017-07-01", - "completed": "2019-09-19", - "initiated": "2015-07-10", - "ministryContact": "KUHIC EFRAIN", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { + "uuid": "e60012ac-2e64-4865-adea-24bb848081e0", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { + "uuid": "370ee5b9-e4be-4b8f-ad20-e27355e61e6a", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true @@ -406,10 +467,11 @@ "siteRegistry": true }, { - "createdAt": "2020-01-13", - "completed": "2014-11-23", - "initiated": "2017-12-18", - "ministryContact": "MONAHAN JAYDON", + "uuid": "60c5cda7-97c1-4c3e-9ee3-029c337a48cb", + "createdAt": "2023-01-25", + "completed": "2014-03-22", + "initiated": "2018-08-02", + "ministryContact": "GIBSON SABRYNA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -418,81 +480,31 @@ ], "notationParticipants": [ { + "uuid": "76efa083-17fd-4f1c-9c44-1c613f0d756d", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", "siteRegistry": true - } - ], - "siteRegistry": false - }, - { - "createdAt": "2014-10-05", - "completed": "2014-06-10", - "initiated": "2018-12-27", - "ministryContact": "HUEL HIRAM", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "cae0edc2-5819-4df7-b37b-64bf4868fbc2", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true }, { + "uuid": "b0427f0c-af4a-46a1-b7f5-535698b590e8", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - } - ], - "siteRegistry": false - }, - { - "createdAt": "2014-01-05", - "completed": "2023-05-16", - "initiated": "2015-09-14", - "ministryContact": "GOYETTE ALEXZANDER", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { + "uuid": "0cb7c763-81db-4099-9f72-bbfc6f0f5dcb", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { + "uuid": "a4a6390a-f3c3-4646-bc29-e21fdd6d6708", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false @@ -503,39 +515,32 @@ ], "participants": [ { + "uuid": "b900035d-46c9-460b-b14c-dc4c0be1955b", "name": "IPSUM", - "endDate": "2019-04-16", - "startDate": "2021-01-20", + "endDate": "2020-07-10", + "startDate": "2017-11-09", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": false }, { - "name": "IPSUM", - "endDate": "2020-10-09", - "startDate": "2020-10-06", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": true - }, - { - "name": "IPSUM", - "endDate": "2014-11-10", - "startDate": "2018-03-24", + "uuid": "0d31715e-e8a2-44d0-8ed3-ac727fa1b6cc", + "name": "AMET, DOLOR SIT", + "endDate": "2022-03-22", + "startDate": "2023-04-28", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false }, { - "name": "IPSUM", - "endDate": "2013-10-28", - "startDate": "2021-08-04", + "uuid": "42c45c37-1e50-4c62-8857-6a684bc9e45b", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2015-05-30", + "startDate": "2022-09-12", "notes": "", "roles": [ "ORGANIZATION" @@ -543,206 +548,246 @@ "siteRegistry": true }, { - "name": "IPSUM", - "endDate": "2014-12-29", - "startDate": "2021-11-06", + "uuid": "155317a1-fa3c-4fed-be6d-9d277876959e", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2023-03-31", + "startDate": "2016-06-26", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false } ], "suspectLandUses": [ { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2020-02-16 (described on Site Profile dated 2020-02-16)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" - }, - { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2020-06-12 (described on Site Profile dated 2020-06-12)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "uuid": "0d20ffa9-4e7c-42d7-adf2-c12818a787f2", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2016-07-08 (described on Site Profile dated 2016-07-08)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { + "uuid": "8d67a607-700b-4429-a694-bf4117b9484c", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-02-08 (described on Site Profile dated 2021-02-08)", + "notes": "INSERTED FOR SITE PROFILE DATED 2015-10-14 (described on Site Profile dated 2015-10-14)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], "parcelDescriptions": [ { + "uuid": "b8567994-22bd-48e5-8cd8-be80908daeea", "siteRegistry": true, - "dateNoted": "2019-10-05", - "parcelID": "17802", - "crownLandUsePIN": "20528", - "crownLandFileNumber": "17986", - "landDescription": "LOT 4 OF LOT 5 BLOCK 2 DISTRICT LOT 2 PLAN 8236" + "dateNoted": "2019-07-19", + "parcelID": "15806", + "crownLandUsePIN": "20534", + "crownLandFileNumber": "18105", + "landDescription": "LOT 3 OF LOT 1 BLOCK 4 DISTRICT LOT 3 PLAN 3877" }, { + "uuid": "fcb48cce-3828-4ef9-8f11-6b24917e9121", "siteRegistry": false, - "dateNoted": "2019-04-30", - "parcelID": "18286", - "crownLandUsePIN": "16179", - "crownLandFileNumber": "20907", - "landDescription": "LOT 4 OF LOT 2 BLOCK 1 DISTRICT LOT 1 PLAN 8513" + "dateNoted": "2013-11-22", + "parcelID": "19075", + "crownLandUsePIN": "19762", + "crownLandFileNumber": "19952", + "landDescription": "LOT 1 OF LOT 5 BLOCK 4 DISTRICT LOT 4 PLAN 8990" + }, + { + "uuid": "89a02798-6528-45b4-9508-f4535aae9714", + "siteRegistry": true, + "dateNoted": "2021-09-17", + "parcelID": "16036", + "crownLandUsePIN": "16414", + "crownLandFileNumber": "17300", + "landDescription": "LOT 1 OF LOT 4 BLOCK 2 DISTRICT LOT 5 PLAN 4046" + }, + { + "uuid": "36314705-3633-4747-a094-6c0e047f1c10", + "siteRegistry": false, + "dateNoted": "2018-10-28", + "parcelID": "17542", + "crownLandUsePIN": "20981", + "crownLandFileNumber": "17129", + "landDescription": "LOT 1 OF LOT 5 BLOCK 5 DISTRICT LOT 5 PLAN 8492" + }, + { + "uuid": "19dc3834-f6ac-46a3-92a1-b90084bd9aac", + "siteRegistry": true, + "dateNoted": "2018-11-03", + "parcelID": "20003", + "crownLandUsePIN": "17382", + "crownLandFileNumber": "16374", + "landDescription": "LOT 1 OF LOT 3 BLOCK 2 DISTRICT LOT 4 PLAN 8944" } ], "siteDisclosures": [ { + "uuid": "cbfe6fd0-bd98-4134-923a-2cfc7f9d2604", "siteRegistry": true, - "dateReceived": "2014-03-20", - "dateCompleted": "2023-09-29", - "dateEntered": "2016-10-24", - "dateRegistrar": "2018-06-25", - "dateLocalAuthorityReceived": "2023-04-18", - "summary": "Blanditiis cum culpa saepe delectus dignissimos quisquam asperiores debitis.\nDebitis repellendus architecto.", - "informationUsed": "Id doloribus perferendis blanditiis exercitationem hic.\nAssumenda deserunt ut hic.\nIure debitis quaerat praesentium iste qui laudantium necessitatibus deleniti.\nOdit natus minima rerum at id exercitationem repudiandae quae.\nSequi ipsa rerum culpa ipsam deserunt.", - "pastOrPresentOrders": "Aliquid nisi quam magni.", + "dateReceived": "2020-02-19", + "dateCompleted": "2018-09-16", + "dateEntered": "2014-09-29", + "dateRegistrar": "2017-05-12", + "dateLocalAuthorityReceived": "2015-03-17", + "summary": "Voluptas corrupti rerum.", + "informationUsed": "Perspiciatis nam iusto.\nQuaerat enim consequuntur quae dolorem dolorum distinctio aliquam id.\nIste possimus error eveniet ab.", + "pastOrPresentOrders": "At iusto ex accusantium iure eaque vel necessitatibus.\nSoluta magni ex asperiores cupiditate.", "commercialAndIndustrialPurposes": [ { + "uuid": "217950fe-cdee-4111-ba1c-ee853fe8ed63", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, { + "uuid": "3f4c9dcd-7c15-4421-beac-f7e54fdbe616", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + } + ] + }, + { + "uuid": "2b140afd-5826-4e18-8155-7996e9f5e00d", + "siteRegistry": true, + "dateReceived": "2019-04-22", + "dateCompleted": "2020-11-13", + "dateEntered": "2021-03-13", + "dateRegistrar": "2014-02-10", + "dateLocalAuthorityReceived": "2018-04-27", + "summary": "Ipsa ex adipisci.\nVoluptatem nam mollitia quae.", + "informationUsed": "Minima nisi dolores saepe sit.\nQui aspernatur minus blanditiis reiciendis vitae impedit dignissimos ipsa.\nDebitis asperiores pariatur voluptatem doloribus at dicta.\nSed nobis officia quam ullam repellat.\nAsperiores animi eligendi voluptatum nostrum harum eos esse aliquid.", + "pastOrPresentOrders": "Eveniet cupiditate nobis ratione adipisci.\nAperiam hic dolorem hic harum tenetur laborum quae.\nHarum aliquid sapiente enim numquam consectetur.", + "commercialAndIndustrialPurposes": [ + { + "uuid": "296067f2-c0c7-4048-8750-84ae3a564665", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { + "uuid": "e954e008-caa3-432f-8583-b6c6f3304a01", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false + "siteRegistry": true + }, + { + "uuid": "3fd1fcf4-e594-42bc-91d3-5a5639176660", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "uuid": "4f125829-d95b-45e9-8dbf-cc8153a315b4", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true } ] } ], "activityLog": [ { + "uuid": "f91361c7-b8ca-485c-ae5f-2221d9d2a8a7", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "KOVACEK ZACKERY", - "timestamp": "2018-05-19" + "user": "BECHTELAR JAVON", + "timestamp": "2014-05-08" }, { + "uuid": "3f851763-b297-46e3-ad8b-94b86ce96023", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "GREEN BERNARD", - "timestamp": "2022-01-05" + "user": "DICKENS CORDELIA", + "timestamp": "2021-09-20" }, { + "uuid": "8a290a1a-626c-403c-a9c3-5185b5d63893", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "BASHIRIAN LORENZA", - "timestamp": "2018-06-16" + "user": "SKILES KRYSTEL", + "timestamp": "2023-09-05" + }, + { + "uuid": "b28c997b-cef0-435f-89bd-db42a6d19591", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "SCHIMMEL GOLDEN", + "timestamp": "2014-11-12" }, { + "uuid": "7b83216f-6b30-46a2-98b4-4a71fec35374", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "RUTHERFORD JEROMY", - "timestamp": "2021-08-09" + "user": "RATKE DONAVON", + "timestamp": "2019-01-27" }, { + "uuid": "15ffcd13-2682-4b5e-b3d4-79080b5e1567", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "HEATHCOTE TAMIA", - "timestamp": "2022-10-08" + "user": "KIEHN CECELIA", + "timestamp": "2017-04-21" }, { + "uuid": "ce21418f-0882-4cbc-88f9-6753244fbab0", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "COLLIER KATHARINA", - "timestamp": "2017-10-10" + "user": "SIPES KARINA", + "timestamp": "2017-08-02" }, { + "uuid": "3e36fd51-bae8-4f6e-8940-9fc2c1266c5d", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "DAVIS JOEY", - "timestamp": "2018-11-18" + "user": "EMMERICH SCARLETT", + "timestamp": "2021-07-08" }, { + "uuid": "c88bfefc-9a54-44e8-b48d-a6a2a196ed14", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "BLOCK AYDEN", - "timestamp": "2018-03-30" + "user": "MEDHURST KENDRICK", + "timestamp": "2020-02-20" } ], "associatedSites": [ { - "dateNoted": "2015-03-17", + "uuid": "41df3eac-2609-4c4e-8f97-81897b4c39e3", + "dateNoted": "2022-01-06", "notes": "", - "parcelID": "15466", - "siteID": "19847", - "siteRegistry": true + "parcelID": "20835", + "siteID": "15979", + "siteRegistry": false } ] }, { - "uuid": "9249a2dd-5e17-4b97-af25-08fd17f09df3", - "siteID": 18109, - "address": "343 Hershel Courts", - "latitude": 54.284, - "longitude": -126.7735, - "lastUpdated": "2023-05-03", - "city": "South Clemens", - "region": "Mainland/Southwest", - "victoriaFile": "26250-20/6640", + "uuid": "e18fdbe8-7edb-4bc1-8cc9-0264077fb770", + "siteID": 18483, + "address": "37101 Ernestina Causeway", + "latitude": 55.9423, + "longitude": -118.8172, + "lastUpdated": "2020-06-29", + "city": "East Florine", + "region": "Vancouver Island/Coast", + "victoriaFile": "26250-20/13306", "regionalFile": "N/A", "parcelIDs": [ - 1071213, - 815829, - 1298734, - 997882, - 6706912 + 4626012, + 4069956, + 7702147, + 9755494, + 4228235 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2019-03-08", - "completed": "2014-12-17", - "initiated": "2019-03-22", - "ministryContact": "KUHLMAN ABBEY", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - } - ], - "siteRegistry": true - }, - { - "createdAt": "2014-01-29", - "completed": "2018-02-08", - "initiated": "2015-07-22", - "ministryContact": "STROSIN ALAYNA", + "uuid": "783b9f90-bfb1-4486-8d9b-f90e1083641a", + "createdAt": "2016-12-04", + "completed": "2015-10-26", + "initiated": "2021-04-07", + "ministryContact": "HOWE DASIA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -751,33 +796,26 @@ ], "notationParticipants": [ { + "uuid": "e896d5e0-6108-483c-ba9a-71897adc98da", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { + "uuid": "9b78c390-52cb-4d97-a33f-5403696382de", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2020-04-16", - "completed": "2018-08-09", - "initiated": "2017-10-17", - "ministryContact": "MULLER BRENDEN", + "uuid": "4b5cb13c-84d0-4399-89cf-01d09ecb0c27", + "createdAt": "2020-07-27", + "completed": "2023-02-17", + "initiated": "2022-05-18", + "ministryContact": "MCCULLOUGH MADDISON", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -786,28 +824,15 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { + "uuid": "9bd44095-3490-4815-afe6-d76af086f986", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { + "uuid": "f6671669-87f3-4f43-a20d-4cd911ea24a3", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false } ], @@ -816,9 +841,43 @@ ], "participants": [ { + "uuid": "a3351621-e66a-4560-8e4a-cab113438d21", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2017-10-31", + "startDate": "2018-09-18", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "uuid": "c26a8a94-7b46-482e-ab31-ef444fee3859", + "name": "IPSUM", + "endDate": "2014-11-26", + "startDate": "2020-05-23", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "uuid": "53621630-5d9b-4dd8-ba0e-d54168084ec6", "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2017-10-03", - "startDate": "2017-05-10", + "endDate": "2016-03-22", + "startDate": "2017-09-11", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "uuid": "3d435eed-fa72-471b-862c-fbc36b29e593", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2023-02-18", + "startDate": "2021-05-18", "notes": "", "roles": [ "ORGANIZATION" @@ -826,9 +885,10 @@ "siteRegistry": false }, { - "name": "AMET, DOLOR SIT", - "endDate": "2016-10-06", - "startDate": "2016-02-26", + "uuid": "1e5ad395-011d-4ec2-ac68-268078c6859a", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2016-12-28", + "startDate": "2016-12-01", "notes": "", "roles": [ "ORGANIZATION" @@ -838,186 +898,190 @@ ], "suspectLandUses": [ { + "uuid": "8e71a187-e66d-49c2-9ac2-aa1c42419c79", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-11-07 (described on Site Profile dated 2017-11-07)", + "notes": "INSERTED FOR SITE PROFILE DATED 2019-11-06 (described on Site Profile dated 2019-11-06)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { + "uuid": "75efbb04-8b8a-4928-9928-3bb20469ce35", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2023-03-21 (described on Site Profile dated 2023-03-21)", + "notes": "INSERTED FOR SITE PROFILE DATED 2013-11-01 (described on Site Profile dated 2013-11-01)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], "parcelDescriptions": [ { + "uuid": "dbc76436-12a3-4b02-b904-b9876413442f", "siteRegistry": true, - "dateNoted": "2015-01-05", - "parcelID": "20163", - "crownLandUsePIN": "19040", - "crownLandFileNumber": "15755", - "landDescription": "LOT 3 OF LOT 2 BLOCK 5 DISTRICT LOT 5 PLAN 5820" - }, - { - "siteRegistry": true, - "dateNoted": "2019-12-29", - "parcelID": "20955", - "crownLandUsePIN": "20176", - "crownLandFileNumber": "15608", - "landDescription": "LOT 3 OF LOT 4 BLOCK 5 DISTRICT LOT 1 PLAN 6927" + "dateNoted": "2018-04-07", + "parcelID": "20224", + "crownLandUsePIN": "20133", + "crownLandFileNumber": "15471", + "landDescription": "LOT 2 OF LOT 4 BLOCK 4 DISTRICT LOT 1 PLAN 8381" }, { + "uuid": "c19183a0-e656-4528-8797-c269e11a5be0", "siteRegistry": false, - "dateNoted": "2020-03-28", - "parcelID": "19134", - "crownLandUsePIN": "18073", - "crownLandFileNumber": "20686", - "landDescription": "LOT 4 OF LOT 3 BLOCK 1 DISTRICT LOT 1 PLAN 5710" - }, - { - "siteRegistry": true, - "dateNoted": "2023-07-20", - "parcelID": "18404", - "crownLandUsePIN": "19311", - "crownLandFileNumber": "16428", - "landDescription": "LOT 2 OF LOT 5 BLOCK 3 DISTRICT LOT 1 PLAN 8856" + "dateNoted": "2019-10-18", + "parcelID": "15466", + "crownLandUsePIN": "16783", + "crownLandFileNumber": "20828", + "landDescription": "LOT 3 OF LOT 1 BLOCK 4 DISTRICT LOT 4 PLAN 3713" }, { - "siteRegistry": true, - "dateNoted": "2018-10-15", - "parcelID": "20485", - "crownLandUsePIN": "19963", - "crownLandFileNumber": "20920", - "landDescription": "LOT 1 OF LOT 5 BLOCK 1 DISTRICT LOT 4 PLAN 7447" + "uuid": "cd92880e-59b6-46b1-9a3f-066d392ecbad", + "siteRegistry": false, + "dateNoted": "2017-11-11", + "parcelID": "18851", + "crownLandUsePIN": "16026", + "crownLandFileNumber": "19305", + "landDescription": "LOT 4 OF LOT 5 BLOCK 4 DISTRICT LOT 1 PLAN 3574" } ], "siteDisclosures": [ { - "siteRegistry": true, - "dateReceived": "2014-05-11", - "dateCompleted": "2019-02-27", - "dateEntered": "2022-02-10", - "dateRegistrar": "2022-06-26", - "dateLocalAuthorityReceived": "2019-05-01", - "summary": "Possimus doloribus sunt quasi reprehenderit officia.\nMagni recusandae error amet vitae asperiores voluptates vel reiciendis iste.\nExpedita natus nesciunt.", - "informationUsed": "Natus ipsum ipsa reiciendis ratione asperiores possimus dolor.\nIste asperiores odit quo voluptatum iste ipsam deleniti.\nQuia ex ea.", - "pastOrPresentOrders": "Repellendus at porro velit vitae reprehenderit ea numquam delectus.\nQuas provident officiis vitae.", + "uuid": "79601634-70cd-4278-ae27-e5b6f3083c02", + "siteRegistry": false, + "dateReceived": "2015-06-01", + "dateCompleted": "2013-10-21", + "dateEntered": "2015-07-26", + "dateRegistrar": "2016-12-19", + "dateLocalAuthorityReceived": "2016-11-14", + "summary": "Enim tenetur optio.\nPerspiciatis distinctio repudiandae velit illum occaecati iusto amet.", + "informationUsed": "Et voluptatum aliquid ex laborum.\nVoluptatum expedita iusto aperiam dolore omnis quas.\nPerferendis sit similique perferendis.", + "pastOrPresentOrders": "Veritatis quia consectetur officiis.\nId iste debitis similique aliquam et tempore maxime perferendis.\nTotam cupiditate veritatis voluptatibus deserunt odio perferendis laudantium minima.", "commercialAndIndustrialPurposes": [ { + "uuid": "7c008c4b-4904-4cf5-835f-615167832a72", "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true }, { - "scheduleReference": "F1*", + "uuid": "2b221f62-8cf5-44b1-afe4-8d5386981fb7", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { + "uuid": "93fed952-4e3a-40f7-894c-3eac2d0c4b82", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false + "siteRegistry": true }, { + "uuid": "85b20bca-dd4e-4e45-8b1f-b2d37fe01477", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true + "siteRegistry": false } ] } ], "activityLog": [ { - "siteRegistry": false, + "uuid": "0f6d7ea1-3781-489c-abd9-62f273396f39", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "BRAKUS CARTER", - "timestamp": "2016-12-10" + "user": "CORMIER HALLIE", + "timestamp": "2019-03-27" }, { + "uuid": "eb2a5203-0e16-4fc8-b72d-fdc5a2d790af", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "BRAKUS VINCE", - "timestamp": "2018-10-18" + "user": "JOHNSON QUINTON", + "timestamp": "2017-06-19" }, { - "siteRegistry": false, + "uuid": "ab7386a8-6130-4a6c-815e-77d6a875eabb", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "BERGSTROM KRYSTEL", + "timestamp": "2018-07-21" + }, + { + "uuid": "e3b6b2a1-6cf3-4ad0-9acd-1fda0c9616c9", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "BUCKRIDGE JARRED", - "timestamp": "2015-02-11" + "user": "CONNELLY RUBYE", + "timestamp": "2023-01-18" }, { + "uuid": "25c85e32-8367-4a26-a919-1bd7baaf0acb", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "BECKER PANSY", - "timestamp": "2017-04-22" + "user": "BAILEY LISA", + "timestamp": "2019-03-25" }, { - "siteRegistry": true, + "uuid": "fc6b7b44-0913-40d9-ad5d-a95147eec422", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "WINDLER EMORY", - "timestamp": "2020-02-20" + "user": "DOYLE ARNO", + "timestamp": "2022-04-20" }, { + "uuid": "dbe18dd2-f990-48e0-af8a-5dfa7abd0320", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "BARTOLETTI OPHELIA", - "timestamp": "2014-08-12" + "user": "SCHAEFER JOANA", + "timestamp": "2016-02-14" }, { + "uuid": "4153e4a5-11dc-42db-ac95-74a9712de632", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "WEBER SOLEDAD", - "timestamp": "2021-12-29" + "user": "WISOKY JUSTON", + "timestamp": "2016-06-22" } ], "associatedSites": [ { - "dateNoted": "2017-07-01", + "uuid": "ed79ee22-a2d8-4d0a-b7b1-fed11080a618", + "dateNoted": "2021-03-25", "notes": "", - "parcelID": "17955", - "siteID": "17386", + "parcelID": "16828", + "siteID": "17834", "siteRegistry": true }, { - "dateNoted": "2020-05-24", - "notes": "", - "parcelID": "17903", - "siteID": "16329", - "siteRegistry": false - }, - { - "dateNoted": "2023-08-15", + "uuid": "8e647ae2-2caf-4f4b-b7ef-9bf90ad44fec", + "dateNoted": "2014-12-09", "notes": "", - "parcelID": "17342", - "siteID": "19902", + "parcelID": "20113", + "siteID": "16807", "siteRegistry": true } ] }, { - "uuid": "3bde5729-3bf7-4ec0-a3e7-13c9d2e95e8c", - "siteID": 19132, - "address": "881 Bert Knolls", - "latitude": 48.2973, - "longitude": -138.6791, - "lastUpdated": "2022-03-18", - "city": "Donfort", - "region": "Vancouver Island/Coast", - "victoriaFile": "26250-20/10381", + "uuid": "153a02ae-c688-42e4-81b8-e8d3a3ab2ef4", + "siteID": 15585, + "address": "903 Marcelle Throughway", + "latitude": 50.6351, + "longitude": -130.1986, + "lastUpdated": "2017-07-06", + "city": "East Laurianneview", + "region": "Cariboo", + "victoriaFile": "26250-20/15283", "regionalFile": "N/A", "parcelIDs": [ - 8383576, - 4801134, - 3794304, - 4648777, - 2315264 + 4539575, + 6855999, + 3138340, + 9294657, + 1946093 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2018-04-22", - "completed": "2022-05-22", - "initiated": "2013-11-12", - "ministryContact": "LEGROS BRIA", + "uuid": "2b1d57b8-6bae-4108-bbe2-a283a38f0402", + "createdAt": "2018-08-19", + "completed": "2018-11-19", + "initiated": "2014-12-21", + "ministryContact": "LUBOWITZ ANTOINETTE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -1026,38 +1090,44 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false + "uuid": "a2b61718-5e84-44f8-892d-1e662c637053", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true + "uuid": "db4695e9-3c6a-43b3-88d4-68e17008f260", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false }, { + "uuid": "54ecfb9f-5220-4d7a-9621-75d293191a7d", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true }, { + "uuid": "b3241b84-f2f8-42b5-93ff-ba2f93bbf5d0", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "uuid": "8ac19219-e9b8-4b35-b841-58b1064a291d", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2022-01-18", - "completed": "2017-03-27", - "initiated": "2019-10-19", - "ministryContact": "DONNELLY AURORE", + "uuid": "bba8338d-2a27-474e-8687-b891c718ced0", + "createdAt": "2020-10-02", + "completed": "2023-09-11", + "initiated": "2018-08-29", + "ministryContact": "KRIS TEAGAN", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -1066,12 +1136,14 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "uuid": "2d0ee829-b335-40f3-ac3d-3939df131a39", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", + "uuid": "b14fafd0-b70b-4140-a415-5b7344b39a38", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false } @@ -1079,10 +1151,11 @@ "siteRegistry": true }, { - "createdAt": "2017-11-10", - "completed": "2017-02-09", - "initiated": "2017-02-06", - "ministryContact": "FEIL FREEDA", + "uuid": "04334c7c-c6ac-450f-ba21-0ec13f6c87c5", + "createdAt": "2019-09-27", + "completed": "2019-09-20", + "initiated": "2021-12-10", + "ministryContact": "SANFORD LEONEL", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -1091,29 +1164,85 @@ ], "notationParticipants": [ { + "uuid": "9c52dfd0-ed6b-4762-8387-631a864ddf28", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "7d6243a2-0381-4b2a-8a08-6495389594b2", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "2dad53da-7d15-4598-9a1d-3be13f85de16", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "73aad98e-e241-466a-bdfd-7b58bbd146ba", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "uuid": "6230977e-7c4f-4884-b155-6dff00a09f65", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "uuid": "511c81ff-8d70-4c83-bb51-fc698a67cc21", + "createdAt": "2016-09-04", + "completed": "2020-09-09", + "initiated": "2021-08-15", + "ministryContact": "GREENFELDER-SCHAMBERGER ROCKY", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "uuid": "ac5435de-4b77-4e16-8eb1-a39b40211fff", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "uuid": "5ba5eb31-0a46-49c0-bdbe-294789fb9280", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", "siteRegistry": false }, { + "uuid": "132e5366-ccec-4d74-9d88-3d4ee586d89c", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false + }, + { + "uuid": "f575d2cb-3d74-4e24-b497-7a88313b752d", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true } ], "participants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2014-03-27", - "startDate": "2017-07-18", + "uuid": "d70322fd-9cfe-471a-bf54-ceb533e8b473", + "name": "IPSUM", + "endDate": "2014-06-19", + "startDate": "2014-04-11", "notes": "", "roles": [ "ORGANIZATION" @@ -1121,187 +1250,246 @@ "siteRegistry": true }, { - "name": "AMET, DOLOR SIT", - "endDate": "2014-04-09", - "startDate": "2023-03-17", + "uuid": "4cf41375-dcc5-4ecd-83e9-f83830464d92", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2022-12-25", + "startDate": "2023-08-08", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": false } ], "suspectLandUses": [ { + "uuid": "a7633f41-7274-463d-8c8b-2e2f7bb10794", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-04-25 (described on Site Profile dated 2015-04-25)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" - }, - { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-04-14 (described on Site Profile dated 2015-04-14)", + "notes": "INSERTED FOR SITE PROFILE DATED 2021-08-26 (described on Site Profile dated 2021-08-26)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { + "uuid": "6844ff84-338b-4bf0-8dbc-ae1c142735d4", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-11-08 (described on Site Profile dated 2018-11-08)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "notes": "INSERTED FOR SITE PROFILE DATED 2016-08-06 (described on Site Profile dated 2016-08-06)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], "parcelDescriptions": [ { - "siteRegistry": false, - "dateNoted": "2014-04-25", - "parcelID": "20247", - "crownLandUsePIN": "18975", - "crownLandFileNumber": "16783", - "landDescription": "LOT 5 OF LOT 3 BLOCK 1 DISTRICT LOT 1 PLAN 2903" + "uuid": "d84f8b73-9c65-4210-ac78-d80dda21f587", + "siteRegistry": true, + "dateNoted": "2016-04-17", + "parcelID": "15697", + "crownLandUsePIN": "17645", + "crownLandFileNumber": "20917", + "landDescription": "LOT 1 OF LOT 5 BLOCK 4 DISTRICT LOT 2 PLAN 5532" }, { - "siteRegistry": false, - "dateNoted": "2022-05-06", - "parcelID": "19312", - "crownLandUsePIN": "18668", - "crownLandFileNumber": "19893", - "landDescription": "LOT 1 OF LOT 3 BLOCK 2 DISTRICT LOT 5 PLAN 8645" + "uuid": "9f1dbfb7-d381-49b0-a057-809a665ea3ad", + "siteRegistry": true, + "dateNoted": "2022-11-28", + "parcelID": "16893", + "crownLandUsePIN": "16987", + "crownLandFileNumber": "17815", + "landDescription": "LOT 1 OF LOT 1 BLOCK 1 DISTRICT LOT 2 PLAN 4064" }, { + "uuid": "bf3b340e-8484-4865-8806-52bdc04c5860", "siteRegistry": false, - "dateNoted": "2016-03-11", - "parcelID": "19850", - "crownLandUsePIN": "19744", - "crownLandFileNumber": "17809", - "landDescription": "LOT 2 OF LOT 2 BLOCK 2 DISTRICT LOT 5 PLAN 9386" + "dateNoted": "2015-04-16", + "parcelID": "16677", + "crownLandUsePIN": "19544", + "crownLandFileNumber": "18371", + "landDescription": "LOT 1 OF LOT 1 BLOCK 2 DISTRICT LOT 1 PLAN 9333" + }, + { + "uuid": "10938559-a03d-41db-b40e-28ee1320e520", + "siteRegistry": true, + "dateNoted": "2021-10-05", + "parcelID": "19711", + "crownLandUsePIN": "17170", + "crownLandFileNumber": "17180", + "landDescription": "LOT 3 OF LOT 3 BLOCK 3 DISTRICT LOT 5 PLAN 6117" } ], "siteDisclosures": [ { - "siteRegistry": false, - "dateReceived": "2021-01-12", - "dateCompleted": "2019-04-16", - "dateEntered": "2021-07-17", - "dateRegistrar": "2016-07-17", - "dateLocalAuthorityReceived": "2019-02-04", - "summary": "Magnam beatae nulla consequuntur.", - "informationUsed": "Eaque quidem velit laborum.\nUt doloribus reprehenderit ut enim qui expedita minima voluptatibus.\nNumquam provident reiciendis dolorem dignissimos facilis delectus.\nVeniam sapiente vero molestiae excepturi pariatur quasi dolore debitis.\nFugiat fugiat cum sed.", - "pastOrPresentOrders": "Sapiente iure maiores animi dicta.", + "uuid": "c2438845-7a08-488b-8da2-005dd0cc9528", + "siteRegistry": true, + "dateReceived": "2023-05-12", + "dateCompleted": "2022-12-03", + "dateEntered": "2015-01-02", + "dateRegistrar": "2018-05-17", + "dateLocalAuthorityReceived": "2019-08-31", + "summary": "Dignissimos explicabo et animi ea.", + "informationUsed": "Laudantium ab iure animi aliquam tenetur illum.\nOccaecati voluptate officia adipisci saepe maiores a.\nIpsam reiciendis numquam in praesentium debitis porro voluptate.\nEligendi reprehenderit pariatur libero occaecati impedit consequuntur autem cum.", + "pastOrPresentOrders": "Odio adipisci est maiores nemo.", "commercialAndIndustrialPurposes": [ { - "scheduleReference": "F1*", + "uuid": "8cbb0fcf-77b7-4360-93d1-1dcc6ebe119a", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "uuid": "39e93a73-a97a-4bc6-b1dd-65751a93efeb", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { - "scheduleReference": "F2*", + "uuid": "4c0031ed-db62-4642-93b1-feb7d30aba27", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, { + "uuid": "bb42ed1e-c9b4-4028-89e9-9e06fe545de4", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + } + ] + }, + { + "uuid": "061675bf-0e0d-4d50-84aa-e969f9db1e0b", + "siteRegistry": true, + "dateReceived": "2014-08-21", + "dateCompleted": "2019-09-17", + "dateEntered": "2014-04-10", + "dateRegistrar": "2020-11-15", + "dateLocalAuthorityReceived": "2020-11-10", + "summary": "Adipisci vitae in totam laborum maxime molestias nostrum animi provident.\nEx earum nam mollitia nemo eaque quidem minus temporibus temporibus.", + "informationUsed": "Harum laboriosam voluptatibus asperiores deleniti optio quae iste.\nVitae eius dolore earum corrupti.\nQuia laudantium perferendis provident facere amet amet.\nEum impedit cumque a soluta sequi asperiores quas.\nHic magni illo nobis animi dolorem ullam inventore nam.", + "pastOrPresentOrders": "Non sint architecto earum quibusdam.\nSaepe sit nemo ducimus.", + "commercialAndIndustrialPurposes": [ + { + "uuid": "702a8fa1-414c-43c4-9957-17aeee6cfdcd", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true + "uuid": "ff9acbca-041e-4575-8936-f4624b666894", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false } ] } ], "activityLog": [ { + "uuid": "27ec7bfb-964e-4196-8ef3-901a83dc5532", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "DIETRICH DEVYN", - "timestamp": "2018-08-22" + "user": "SMITHAM CAMILLE", + "timestamp": "2015-01-30" }, { - "siteRegistry": false, + "uuid": "891a4338-7fca-4618-b926-9d7828ed0010", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "GOTTLIEB JEWEL", - "timestamp": "2019-06-09" + "user": "FLATLEY CLAUDINE", + "timestamp": "2020-01-15" }, { + "uuid": "0a13fdb2-6bb1-4766-b0dc-82aa698576c7", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "RUNOLFSSON DILLAN", - "timestamp": "2019-02-01" + "user": "HAMILL LAURIANNE", + "timestamp": "2014-04-28" }, { - "siteRegistry": false, + "uuid": "37f886da-f65b-4dc3-9702-2ace69ccfaeb", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "BATZ XZAVIER", - "timestamp": "2022-10-27" + "user": "KOSS CORA", + "timestamp": "2019-11-17" }, { + "uuid": "c1b32cc5-e732-486a-99cd-4966f1c0c63b", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "HARTMANN HAYLIE", - "timestamp": "2014-07-07" + "user": "SKILES KEVEN", + "timestamp": "2020-08-24" }, { + "uuid": "597de9b6-5362-4d8c-aeff-d6d1eacbaed5", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "KEEBLER GREGORY", - "timestamp": "2017-10-18" + "user": "KRIS ALLY", + "timestamp": "2013-11-11" }, { + "uuid": "4aca974f-bdc2-477f-b4a4-08b4b1c2870d", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "WHITE ADALINE", - "timestamp": "2018-11-27" + "user": "WISOZK GEORGIANA", + "timestamp": "2023-01-24" + }, + { + "uuid": "bfec571b-8e9e-4ef7-90f9-2eb84ecbd391", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "PAUCEK EMILIO", + "timestamp": "2014-03-06" } ], "associatedSites": [ { - "dateNoted": "2015-03-19", + "uuid": "4b22bc2b-25d2-4841-b82c-2b3ef9aeb34b", + "dateNoted": "2017-03-22", "notes": "", - "parcelID": "18326", - "siteID": "18136", + "parcelID": "16833", + "siteID": "15264", "siteRegistry": false }, { - "dateNoted": "2023-01-07", + "uuid": "d24b2913-3153-4108-a2d9-9233fbcae2de", + "dateNoted": "2019-09-07", "notes": "", - "parcelID": "20916", - "siteID": "19399", + "parcelID": "18261", + "siteID": "17896", "siteRegistry": true }, { - "dateNoted": "2017-12-22", + "uuid": "be60d0e6-b748-47f5-922c-13b96ebb5d6a", + "dateNoted": "2021-08-26", "notes": "", - "parcelID": "19997", - "siteID": "17707", + "parcelID": "15354", + "siteID": "17261", "siteRegistry": false } ] }, { - "uuid": "409fba12-b07a-4edc-959d-b98e846ad172", - "siteID": 17607, - "address": "458 Gleichner Wells", - "latitude": 52.5963, - "longitude": -126.0658, - "lastUpdated": "2014-05-27", - "city": "New Addiefield", + "uuid": "863c87be-99c8-4f94-84f5-6bdb592a577d", + "siteID": 17858, + "address": "20990 Mohamed Pass", + "latitude": 56.3142, + "longitude": -125.1488, + "lastUpdated": "2019-11-15", + "city": "North Katrina", "region": "Cariboo", - "victoriaFile": "26250-20/3573", + "victoriaFile": "26250-20/15560", "regionalFile": "N/A", "parcelIDs": [ - 475433, - 7439782, - 3738741, - 9185806, - 7553609 + 833727, + 1793027, + 8713705, + 8797654, + 7593633 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2020-04-28", - "completed": "2016-12-22", - "initiated": "2021-05-22", - "ministryContact": "RATH LEW", + "uuid": "8a992651-ab17-4161-b945-2d12b6476771", + "createdAt": "2015-01-22", + "completed": "2023-08-17", + "initiated": "2014-07-08", + "ministryContact": "JASKOLSKI KENTON", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -1310,16 +1498,47 @@ ], "notationParticipants": [ { + "uuid": "8d481a37-09b0-4ee5-b61f-2aeef2bfb386", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "a0ba2c51-3352-4243-a024-a2d264f7592c", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "uuid": "f704adba-cbb0-45e5-a42b-4f0a77c8575f", + "createdAt": "2016-12-07", + "completed": "2019-04-13", + "initiated": "2015-06-23", + "ministryContact": "STRACKE ELLIOT", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "uuid": "9a1a01b0-500d-430e-95f9-ed2bf25392e1", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", + "uuid": "f60848bb-ba8e-4603-bc77-1dd454294bdb", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { + "uuid": "c54d2db5-6f36-4f32-ab9e-94205051237a", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true @@ -1328,10 +1547,11 @@ "siteRegistry": true }, { - "createdAt": "2022-09-20", - "completed": "2021-06-28", - "initiated": "2015-10-25", - "ministryContact": "LARKIN NATHAN", + "uuid": "8a6426d1-d049-4e9d-becb-41b5e4825119", + "createdAt": "2016-08-03", + "completed": "2017-10-29", + "initiated": "2020-08-06", + "ministryContact": "FARRELL JEFFEREY", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -1340,28 +1560,38 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "f9597811-6756-4f00-80e8-a79d2d925527", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false }, { + "uuid": "10b55761-8ccf-4b08-90f1-898c3be57ebd", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false }, { + "uuid": "f8fa4179-f04a-466b-bbe6-2301e755acd6", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false + }, + { + "uuid": "b643570a-328d-4abf-947e-2f3550ef3765", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true } ], "siteRegistry": true }, { - "createdAt": "2019-11-10", - "completed": "2023-06-24", - "initiated": "2017-06-25", - "ministryContact": "KEEBLER WILLOW", + "uuid": "903a4e1c-7b89-4fd8-903d-35b43c386448", + "createdAt": "2016-03-26", + "completed": "2016-05-06", + "initiated": "2022-01-15", + "ministryContact": "MILLER GAIL", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -1370,23 +1600,21 @@ ], "notationParticipants": [ { + "uuid": "eb64c518-f720-459c-94fa-3c42782facb4", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true }, { + "uuid": "f867b8d9-501d-43c7-b532-02035f70af57", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true + "role": "SUBMITTED BY", + "siteRegistry": false }, { + "uuid": "1c317b2b-504a-46ce-a755-3ca4aab8d29d", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", "siteRegistry": false } ], @@ -1395,234 +1623,246 @@ ], "participants": [ { - "name": "IPSUM", - "endDate": "2016-09-03", - "startDate": "2018-06-11", + "uuid": "9a9bf19b-c78d-4d66-8dec-f194a715d1da", + "name": "AMET, DOLOR SIT", + "endDate": "2022-11-26", + "startDate": "2023-06-17", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": true - }, - { - "name": "IPSUM", - "endDate": "2022-07-18", - "startDate": "2015-08-11", - "notes": "", - "roles": [ - "EMPLOYEE" - ], "siteRegistry": false }, { - "name": "AMET, DOLOR SIT", - "endDate": "2016-04-08", - "startDate": "2022-11-01", + "uuid": "8870d295-089e-4939-8d56-226317ffefae", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2018-12-16", + "startDate": "2022-09-29", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": true + "siteRegistry": false }, { + "uuid": "6524bdd8-9044-41d7-9c61-7a8a067346f8", "name": "IPSUM", - "endDate": "2016-03-11", - "startDate": "2015-09-17", + "endDate": "2016-01-23", + "startDate": "2019-01-31", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true } ], "suspectLandUses": [ { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-10-22 (described on Site Profile dated 2017-10-22)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" - }, - { + "uuid": "d12d6c42-90c4-41bf-9e1f-76b281856575", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-04-19 (described on Site Profile dated 2017-04-19)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "notes": "INSERTED FOR SITE PROFILE DATED 2014-08-26 (described on Site Profile dated 2014-08-26)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { + "uuid": "db5d4832-2dad-4b6b-93af-ef0946afb491", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2023-08-03 (described on Site Profile dated 2023-08-03)", + "notes": "INSERTED FOR SITE PROFILE DATED 2019-10-15 (described on Site Profile dated 2019-10-15)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], "parcelDescriptions": [ { - "siteRegistry": true, - "dateNoted": "2023-04-11", - "parcelID": "20131", - "crownLandUsePIN": "20237", - "crownLandFileNumber": "15887", - "landDescription": "LOT 1 OF LOT 3 BLOCK 1 DISTRICT LOT 1 PLAN 8771" + "uuid": "1cd71265-ce3a-48bc-8762-bc57d25020a2", + "siteRegistry": false, + "dateNoted": "2020-06-25", + "parcelID": "19582", + "crownLandUsePIN": "18784", + "crownLandFileNumber": "17695", + "landDescription": "LOT 3 OF LOT 2 BLOCK 1 DISTRICT LOT 4 PLAN 3286" }, { + "uuid": "10291d3c-c6f1-4fa2-9b7b-c77006eb6f8f", "siteRegistry": false, - "dateNoted": "2017-12-27", - "parcelID": "15597", - "crownLandUsePIN": "17258", - "crownLandFileNumber": "17319", - "landDescription": "LOT 2 OF LOT 3 BLOCK 5 DISTRICT LOT 4 PLAN 8583" + "dateNoted": "2016-07-06", + "parcelID": "19505", + "crownLandUsePIN": "20780", + "crownLandFileNumber": "20698", + "landDescription": "LOT 4 OF LOT 2 BLOCK 2 DISTRICT LOT 1 PLAN 7633" }, { + "uuid": "9a0fb5a6-979b-4398-99ce-a287ea32f30c", "siteRegistry": true, - "dateNoted": "2023-01-31", - "parcelID": "17929", - "crownLandUsePIN": "17447", - "crownLandFileNumber": "16279", - "landDescription": "LOT 2 OF LOT 4 BLOCK 1 DISTRICT LOT 3 PLAN 4006" + "dateNoted": "2018-05-07", + "parcelID": "20935", + "crownLandUsePIN": "17576", + "crownLandFileNumber": "19575", + "landDescription": "LOT 5 OF LOT 5 BLOCK 5 DISTRICT LOT 1 PLAN 7961" } ], "siteDisclosures": [ { + "uuid": "3c11bfbf-9456-4d1c-bef3-133debc34e8c", "siteRegistry": false, - "dateReceived": "2022-03-16", - "dateCompleted": "2021-03-20", - "dateEntered": "2015-10-08", - "dateRegistrar": "2015-09-24", - "dateLocalAuthorityReceived": "2017-05-03", - "summary": "Natus vero quaerat optio consectetur.", - "informationUsed": "Nihil id deleniti voluptatum sapiente maxime ut dolorem ea.\nIpsam modi pariatur fuga pariatur modi dolorum porro assumenda laudantium.\nError ipsam alias ut repellendus unde.\nQuibusdam enim unde explicabo assumenda pariatur expedita accusantium temporibus illum.", - "pastOrPresentOrders": "Nisi quaerat delectus ex veniam ab perferendis.", + "dateReceived": "2014-04-22", + "dateCompleted": "2022-04-03", + "dateEntered": "2019-06-11", + "dateRegistrar": "2023-09-14", + "dateLocalAuthorityReceived": "2023-10-01", + "summary": "Odio id possimus quam adipisci iste vitae aliquam corrupti.\nSimilique laudantium assumenda.\nNulla voluptatibus accusamus eius repellendus corrupti.", + "informationUsed": "Eos nihil harum hic sit in delectus consequuntur.\nNostrum rem ut dicta.\nAdipisci nemo debitis deserunt reprehenderit velit.", + "pastOrPresentOrders": "Vero aperiam magnam.\nSed quod vel est doloribus iste aspernatur.\nQuae quis suscipit sit.", "commercialAndIndustrialPurposes": [ { + "uuid": "da5f740f-0053-4568-8dc7-b132ce9ad3ab", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false - }, - { - "scheduleReference": "F2*", + "uuid": "cf15de75-09f0-4a3b-acea-ade81040b602", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false + "siteRegistry": true } ] }, { - "siteRegistry": true, - "dateReceived": "2023-07-14", - "dateCompleted": "2021-05-08", - "dateEntered": "2016-10-29", - "dateRegistrar": "2020-12-15", - "dateLocalAuthorityReceived": "2021-03-19", - "summary": "Saepe eum cupiditate.\nNostrum pariatur voluptatem ipsam error provident explicabo tempora et esse.", - "informationUsed": "Tenetur cum quod numquam enim nulla.\nModi suscipit error tempore ea officiis iusto non modi veniam.\nEsse facere ratione doloremque corrupti aspernatur nihil sequi.\nAt cupiditate facere quo dolorum.", - "pastOrPresentOrders": "At nemo quas dignissimos aliquid error maxime blanditiis.", + "uuid": "dc8d1587-b574-44c1-8b72-3f286b7f1107", + "siteRegistry": false, + "dateReceived": "2017-06-11", + "dateCompleted": "2023-02-07", + "dateEntered": "2015-05-28", + "dateRegistrar": "2017-05-01", + "dateLocalAuthorityReceived": "2014-01-22", + "summary": "Ea aliquid ullam.\nQuas labore culpa repellendus sunt harum consectetur quam quasi.\nItaque excepturi vitae nobis fugiat doloribus laboriosam sed.", + "informationUsed": "Aliquid soluta iure enim sapiente.\nConsectetur esse accusamus minus mollitia eaque quas autem nobis.\nEum consequatur suscipit nisi eveniet atque eligendi similique.\nNesciunt voluptatem at dolore deleniti.", + "pastOrPresentOrders": "Magni eius odit officia voluptatem voluptatibus.\nAlias fuga neque occaecati fugiat alias dolor pariatur officia sapiente.\nVero atque nam illo quasi quae rem ipsum nostrum nesciunt.", "commercialAndIndustrialPurposes": [ { + "uuid": "4b91869f-eab7-48fc-91ec-3747cb0c283c", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "uuid": "f5e2aac3-fd71-4833-91ca-c9604b03fb94", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { - "scheduleReference": "F1*", + "uuid": "b5de6750-973e-4691-9220-0cf26edb9e3b", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false + "siteRegistry": true } ] } ], "activityLog": [ { + "uuid": "3f338957-086b-4893-b92a-261d6421746b", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "DONNELLY LEANNE", - "timestamp": "2015-12-11" + "user": "STARK DAWN", + "timestamp": "2020-10-13" }, { + "uuid": "826b1193-4ff0-4d2f-b02d-f99a78b93950", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "BEER WILLIAM", - "timestamp": "2018-04-17" - }, - { - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "TOY MERRITT", - "timestamp": "2018-11-16" + "user": "STOKES CLIFTON", + "timestamp": "2016-04-26" }, { - "siteRegistry": false, + "uuid": "b006b1a3-233c-464b-b2c8-0997a221d433", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "MRAZ WILBER", - "timestamp": "2019-09-11" + "user": "HOWE AMAYA", + "timestamp": "2023-07-29" }, { - "siteRegistry": false, + "uuid": "edb6c561-0ac0-470c-b90b-89d4de633994", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "LEANNON KILEY", - "timestamp": "2023-06-23" + "user": "HEATHCOTE HILLARY", + "timestamp": "2014-10-15" }, { + "uuid": "bbbd0693-50ce-4740-ac41-afe428c0a5eb", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "YOST KATELYNN", - "timestamp": "2014-04-06" + "user": "BERNHARD-DAUGHERTY CARMEN", + "timestamp": "2015-11-03" }, { + "uuid": "81b6d2a4-5d04-413e-be8a-facda4de408b", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "BAHRINGER MALACHI", - "timestamp": "2020-06-04" + "user": "SCHIMMEL LOY", + "timestamp": "2020-01-06" }, { - "siteRegistry": true, + "uuid": "d292eaba-e75a-4e89-bc26-706267a76b55", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "MURAZIK ENOCH", - "timestamp": "2014-04-08" + "user": "LEBSACK VIVIAN", + "timestamp": "2021-04-02" } ], "associatedSites": [ { - "dateNoted": "2016-08-12", + "uuid": "32535dea-eda1-444c-87cc-01d79b36af76", + "dateNoted": "2019-08-16", "notes": "", - "parcelID": "18076", - "siteID": "15761", + "parcelID": "16687", + "siteID": "16986", "siteRegistry": false }, { - "dateNoted": "2023-02-20", + "uuid": "90be4f55-5889-44ee-a127-e5bf4386b8b2", + "dateNoted": "2015-09-02", "notes": "", - "parcelID": "18513", - "siteID": "15477", + "parcelID": "20997", + "siteID": "16878", + "siteRegistry": false + }, + { + "uuid": "f6a30adf-baed-46ce-b630-f1f95a567769", + "dateNoted": "2014-09-10", + "notes": "", + "parcelID": "18216", + "siteID": "17437", "siteRegistry": false } ] }, { - "uuid": "ca91864d-214e-401c-b63f-b4475ffe597d", - "siteID": 17572, - "address": "139 Pagac Forest", - "latitude": 57.5203, - "longitude": -120.4885, - "lastUpdated": "2015-06-10", - "city": "Rolfsonbury", - "region": "Vancouver Island/Coast", - "victoriaFile": "26250-20/19568", + "uuid": "80cf6df8-ab40-43fc-b88f-dd44d7936193", + "siteID": 18426, + "address": "74412 Leanne Ports", + "latitude": 51.3047, + "longitude": -135.8537, + "lastUpdated": "2019-08-14", + "city": "Callieworth", + "region": "Cariboo", + "victoriaFile": "26250-20/15103", "regionalFile": "N/A", "parcelIDs": [ - 3995790, - 4450198, - 3086429, - 636780, - 9512501 + 9930427, + 428058, + 8476714, + 446547, + 4320945 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2016-04-20", - "completed": "2015-05-12", - "initiated": "2014-08-25", - "ministryContact": "MANTE MARISOL", + "uuid": "6cfb3181-7b8f-4615-976d-f6d0f3c5a586", + "createdAt": "2017-09-27", + "completed": "2020-08-12", + "initiated": "2020-08-15", + "ministryContact": "O'CONNELL FRANCISCA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -1631,28 +1871,60 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "ee074299-56c6-4592-8527-d969c669fa54", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "uuid": "5626b132-b512-4cf4-8df7-d7bd948213c7", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "uuid": "29853833-ad94-4d41-90ae-eeedeaa8973f", + "createdAt": "2013-12-31", + "completed": "2020-02-21", + "initiated": "2018-04-02", + "ministryContact": "WINDLER EUGENIA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "uuid": "8e580307-67f7-4618-9abd-91cd85791712", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true }, { + "uuid": "6863a265-3f36-4c38-8fb0-671e21dda95d", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false + }, + { + "uuid": "3cf9fd63-796d-424d-8255-81966d4968ff", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2017-01-28", - "completed": "2015-09-03", - "initiated": "2014-04-18", - "ministryContact": "WILLIAMSON RAPHAELLE", + "uuid": "112f85d9-54d4-4259-982a-d1340393c0ba", + "createdAt": "2019-01-17", + "completed": "2021-04-22", + "initiated": "2017-12-08", + "ministryContact": "DICKI HARLEY", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -1661,14 +1933,34 @@ ], "notationParticipants": [ { + "uuid": "cf4aec4c-2f55-4f1b-a7e5-f4fca3e88218", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", + "uuid": "a0a7e423-78a7-4fbc-b8cb-73fe8a344c2e", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false + }, + { + "uuid": "f7fc3aa3-0b51-400a-9c44-b5ecabbc0b0f", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "uuid": "4e90038b-e82f-4fb4-a292-3b2eee542844", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "07a685fa-fc03-4ac1-9c4f-cff139182ae6", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true } ], "siteRegistry": true @@ -1676,49 +1968,21 @@ ], "participants": [ { - "name": "IPSUM", - "endDate": "2021-01-10", - "startDate": "2022-08-16", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2022-10-22", - "startDate": "2020-12-29", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": true - }, - { - "name": "AMET, DOLOR SIT", - "endDate": "2018-09-23", - "startDate": "2022-11-06", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": true - }, - { + "uuid": "16659ba5-07e4-46d9-9133-acf70d51d558", "name": "AMET, DOLOR SIT", - "endDate": "2022-06-06", - "startDate": "2015-05-18", + "endDate": "2022-02-22", + "startDate": "2021-10-25", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2018-02-28", - "startDate": "2021-08-13", + "uuid": "9c568f9c-0a85-4ee3-9dcb-bec7f8b4da31", + "name": "IPSUM", + "endDate": "2023-05-08", + "startDate": "2015-07-17", "notes": "", "roles": [ "EMPLOYEE" @@ -1728,101 +1992,120 @@ ], "suspectLandUses": [ { + "uuid": "6174e1ee-555c-473d-b777-3b169304f036", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-01-08 (described on Site Profile dated 2016-01-08)", + "notes": "INSERTED FOR SITE PROFILE DATED 2014-03-01 (described on Site Profile dated 2014-03-01)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "uuid": "702c3629-4fd5-45b5-baf9-856953939bdc", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2023-09-16 (described on Site Profile dated 2023-09-16)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-05-03 (described on Site Profile dated 2021-05-03)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "uuid": "d8fdc72c-cd13-49d7-bfa3-d117084ad5ba", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2019-05-11 (described on Site Profile dated 2019-05-11)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], "parcelDescriptions": [ { + "uuid": "ed5ab75e-663d-44ff-9242-0b882417e109", "siteRegistry": false, - "dateNoted": "2022-07-23", - "parcelID": "17187", - "crownLandUsePIN": "18147", - "crownLandFileNumber": "17159", - "landDescription": "LOT 3 OF LOT 5 BLOCK 3 DISTRICT LOT 4 PLAN 6376" - }, - { - "siteRegistry": true, - "dateNoted": "2017-02-12", - "parcelID": "17567", - "crownLandUsePIN": "17702", - "crownLandFileNumber": "16533", - "landDescription": "LOT 1 OF LOT 1 BLOCK 2 DISTRICT LOT 2 PLAN 5155" + "dateNoted": "2017-04-20", + "parcelID": "18551", + "crownLandUsePIN": "18660", + "crownLandFileNumber": "19307", + "landDescription": "LOT 1 OF LOT 4 BLOCK 4 DISTRICT LOT 1 PLAN 6184" }, { + "uuid": "0ac04302-570c-43d8-a835-6b5093727b4f", "siteRegistry": true, - "dateNoted": "2021-05-05", - "parcelID": "17871", - "crownLandUsePIN": "17588", - "crownLandFileNumber": "20060", - "landDescription": "LOT 1 OF LOT 5 BLOCK 5 DISTRICT LOT 5 PLAN 6342" - }, - { - "siteRegistry": true, - "dateNoted": "2014-04-16", - "parcelID": "16877", - "crownLandUsePIN": "17346", - "crownLandFileNumber": "18914", - "landDescription": "LOT 5 OF LOT 3 BLOCK 2 DISTRICT LOT 4 PLAN 6338" + "dateNoted": "2017-05-28", + "parcelID": "15922", + "crownLandUsePIN": "17725", + "crownLandFileNumber": "15202", + "landDescription": "LOT 4 OF LOT 4 BLOCK 4 DISTRICT LOT 2 PLAN 9374" }, { - "siteRegistry": true, - "dateNoted": "2019-11-07", - "parcelID": "20111", - "crownLandUsePIN": "19269", - "crownLandFileNumber": "17436", - "landDescription": "LOT 1 OF LOT 1 BLOCK 2 DISTRICT LOT 2 PLAN 6154" + "uuid": "7330df6f-0409-4108-8789-b54b6c3c3c94", + "siteRegistry": false, + "dateNoted": "2018-01-31", + "parcelID": "16248", + "crownLandUsePIN": "20255", + "crownLandFileNumber": "20531", + "landDescription": "LOT 3 OF LOT 5 BLOCK 4 DISTRICT LOT 1 PLAN 9092" } ], "siteDisclosures": [ { + "uuid": "3f204059-1fdd-4584-a5f5-c0b65e2c76fd", "siteRegistry": true, - "dateReceived": "2022-05-28", - "dateCompleted": "2016-06-10", - "dateEntered": "2014-10-28", - "dateRegistrar": "2019-05-17", - "dateLocalAuthorityReceived": "2021-03-10", - "summary": "Sunt laborum natus deleniti dolorem nam nihil sed.\nCulpa asperiores fuga.\nDoloribus rem repellat atque cupiditate architecto.", - "informationUsed": "Optio quaerat exercitationem iure ullam.\nLaboriosam sunt repudiandae repudiandae autem eum excepturi.\nQuam sapiente maxime.\nVelit blanditiis maxime dolores debitis eligendi dolores iste sint.\nDeleniti saepe doloribus.", - "pastOrPresentOrders": "Architecto autem a eligendi animi illo.\nDolorum illum optio ex aut voluptates.", + "dateReceived": "2014-06-28", + "dateCompleted": "2022-12-28", + "dateEntered": "2019-01-23", + "dateRegistrar": "2017-11-23", + "dateLocalAuthorityReceived": "2020-06-23", + "summary": "Libero assumenda aliquid porro.", + "informationUsed": "Itaque recusandae molestias dolor.\nOfficiis optio a accusamus labore.\nNulla quia aut facere harum voluptate explicabo.", + "pastOrPresentOrders": "Iure corporis modi enim non repellat reprehenderit.", "commercialAndIndustrialPurposes": [ { - "scheduleReference": "F1*", + "uuid": "a80be384-b8c9-462a-9c6c-7ae350767f2a", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true + "siteRegistry": false }, { - "scheduleReference": "F1*", + "uuid": "93516990-96c5-41bc-9969-93a08cbf4311", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "uuid": "42d3150e-4286-43f2-a75c-fce078a65a35", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false + }, + { + "uuid": "b40500f6-a46c-490b-9e4c-393cf3bcdc09", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true } ] }, { + "uuid": "3bd3404c-99ad-427e-b7e1-6c129fec7fb5", "siteRegistry": true, - "dateReceived": "2016-08-27", - "dateCompleted": "2021-06-01", - "dateEntered": "2016-06-18", - "dateRegistrar": "2017-04-21", - "dateLocalAuthorityReceived": "2014-08-12", - "summary": "Dolore et omnis.\nEnim ipsum voluptatem id totam dolorum enim porro.", - "informationUsed": "Aut expedita expedita.\nSed reiciendis praesentium facilis nostrum.\nDebitis nobis voluptate.\nAspernatur quibusdam dolorem quos porro vitae.\nCorrupti aliquam perferendis ut explicabo.", - "pastOrPresentOrders": "Quos officia expedita dolor veniam quos.\nOptio maxime possimus fugit.\nPossimus eligendi sequi ipsum deserunt velit reiciendis expedita magnam.", + "dateReceived": "2020-11-14", + "dateCompleted": "2022-08-13", + "dateEntered": "2018-12-25", + "dateRegistrar": "2020-08-30", + "dateLocalAuthorityReceived": "2018-08-04", + "summary": "Ab perspiciatis harum non at.", + "informationUsed": "Repellat sint veniam libero iure iusto voluptate.\nId non adipisci architecto at.\nIpsam culpa doloremque minima facere harum asperiores totam nostrum.", + "pastOrPresentOrders": "Itaque temporibus vero quae saepe illo enim.\nDistinctio velit maxime modi aut delectus perspiciatis totam quam sunt.", "commercialAndIndustrialPurposes": [ { + "uuid": "b14d4f99-57de-4024-8a7c-4e475f595752", "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false }, { + "uuid": "ca863c06-9ee2-4d0f-b046-966bb708719c", "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "uuid": "d697f829-ca62-411b-8c15-3d7e612ac295", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false } ] @@ -1830,84 +2113,122 @@ ], "activityLog": [ { + "uuid": "1f553132-7a83-47d9-b612-2543a28b037b", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "DICKINSON ROCKY", - "timestamp": "2020-01-19" + "user": "LEFFLER DEJUAN", + "timestamp": "2013-10-21" }, { + "uuid": "8e854d9e-be50-468c-a8ed-b9820ff97563", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "LYNCH DORCAS", - "timestamp": "2019-01-04" + "user": "HOWELL MADDISON", + "timestamp": "2018-09-16" }, { - "siteRegistry": false, + "uuid": "d141320b-641d-4184-b7d6-c901b0f8085b", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "NADER LEONIE", - "timestamp": "2018-12-03" + "user": "CONROY LEOLA", + "timestamp": "2017-06-19" }, { + "uuid": "9b8b4aea-4628-4a99-b4b3-57f49d87587c", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "BAHRINGER FLORENCIO", - "timestamp": "2014-02-07" + "user": "YUNDT ROSELYN", + "timestamp": "2018-02-08" + }, + { + "uuid": "ba46dbe5-5aa7-4c35-9640-69dfe3d77279", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "DACH CAROLYNE", + "timestamp": "2019-01-08" + }, + { + "uuid": "039a7140-c66c-4928-897d-50bd4c7c64de", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "MARQUARDT YESENIA", + "timestamp": "2013-12-31" + }, + { + "uuid": "34897805-e973-43bf-bb7c-51d5a431cba0", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "KLOCKO LIZETH", + "timestamp": "2019-10-19" }, { + "uuid": "a7f83510-584f-4efb-8496-f0cb11906c32", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "WILLMS VITA", - "timestamp": "2018-03-26" + "user": "MURRAY SKYE", + "timestamp": "2020-06-15" }, { + "uuid": "9d8e57c4-0bbe-4879-a4db-5c8cd26e6684", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "ROMAGUERA JAYNE", - "timestamp": "2014-06-08" + "user": "HAYES TYRA", + "timestamp": "2020-11-02" } ], "associatedSites": [ { - "dateNoted": "2017-06-04", + "uuid": "1e832822-1676-4b53-8405-9a9a931ca8a6", + "dateNoted": "2019-01-06", "notes": "", - "parcelID": "20701", - "siteID": "16605", - "siteRegistry": false + "parcelID": "16221", + "siteID": "16913", + "siteRegistry": true }, { - "dateNoted": "2018-11-05", + "uuid": "a826d10e-4446-4d15-8b2f-a2e09c655ba5", + "dateNoted": "2021-11-24", "notes": "", - "parcelID": "17523", - "siteID": "16952", + "parcelID": "19806", + "siteID": "16895", + "siteRegistry": true + }, + { + "uuid": "23352b3e-fcdb-41b7-bed9-3b07a062ba5c", + "dateNoted": "2013-11-13", + "notes": "", + "parcelID": "17520", + "siteID": "19196", "siteRegistry": true } ] }, { - "uuid": "0be05bd9-0f0b-4af3-b4c2-9c5baba0e434", - "siteID": 16447, - "address": "2868 Athena Rapids", - "latitude": 53.0109, - "longitude": -129.4181, - "lastUpdated": "2023-09-04", - "city": "Bloomington", - "region": "Kootenay", - "victoriaFile": "26250-20/9183", + "uuid": "f6ac9981-baba-41be-bb07-b39edb1c2712", + "siteID": 19481, + "address": "625 Ernser Cliffs", + "latitude": 48.7486, + "longitude": -130.5168, + "lastUpdated": "2017-03-16", + "city": "Fort Coltencester", + "region": "Mainland/Southwest", + "victoriaFile": "26250-20/3212", "regionalFile": "N/A", "parcelIDs": [ - 8534155, - 6424837, - 6666013, - 4750834, - 8258964 + 8067538, + 2115509, + 6538771, + 4025349, + 1529970 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2022-05-02", - "completed": "2014-10-21", - "initiated": "2016-10-09", - "ministryContact": "MURAZIK NETTIE", + "uuid": "434c3378-242b-457f-a5b1-b42f173ec870", + "createdAt": "2019-10-25", + "completed": "2013-11-18", + "initiated": "2017-10-27", + "ministryContact": "CHRISTIANSEN VERGIE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -1916,68 +2237,44 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true + "uuid": "627dde9c-9a7f-4849-91d3-1ccce01385a8", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false }, { + "uuid": "8fe9b30f-5525-44d0-b4f1-68783ae01821", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - } - ], - "siteRegistry": false - }, - { - "createdAt": "2019-03-03", - "completed": "2016-07-27", - "initiated": "2022-03-24", - "ministryContact": "MCGLYNN PATTIE", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { + "uuid": "5fefd3e6-3816-4e8c-8576-f2f587953853", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { + "uuid": "f63323e1-baff-47d2-802b-c306952fdaf9", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "25151398-00c9-4600-9a81-d63033d483f4", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false } ], "siteRegistry": true }, { - "createdAt": "2014-09-23", - "completed": "2019-06-18", - "initiated": "2018-05-08", - "ministryContact": "ALTENWERTH KATHERYN", + "uuid": "bd009eec-6c55-48b3-8754-feb6979f57ca", + "createdAt": "2015-05-02", + "completed": "2015-05-01", + "initiated": "2016-09-29", + "ministryContact": "FRANEY MCKENZIE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -1986,23 +2283,26 @@ ], "notationParticipants": [ { + "uuid": "de95e7ca-7708-4043-be93-2dfb1b43d6da", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "7bdd768f-4351-4576-8fcf-79f366fc4e92", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false } ], "siteRegistry": false }, { - "createdAt": "2023-09-17", - "completed": "2023-03-11", - "initiated": "2023-07-29", - "ministryContact": "SCHMITT HORTENSE", + "uuid": "79a7063c-7624-43a5-aaf2-ce456c96c597", + "createdAt": "2014-10-17", + "completed": "2021-09-13", + "initiated": "2015-02-21", + "ministryContact": "FRAMI OTILIA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -2011,26 +2311,31 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "f4eb74c1-7b0e-438e-9255-039259429bdc", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true }, { + "uuid": "d0d048e0-c38f-4e85-891a-a90dd0cd2f7a", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "29d3bc92-bd29-4237-9f3c-f128bfbf1843", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true }, { + "uuid": "4c7664b4-49dd-45a2-ae45-00f622127882", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false }, { + "uuid": "7a0f436d-62fd-42a0-9004-e7790d759f66", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true @@ -2039,10 +2344,11 @@ "siteRegistry": true }, { - "createdAt": "2020-12-01", - "completed": "2019-06-25", - "initiated": "2021-03-18", - "ministryContact": "ALTENWERTH ALBIN", + "uuid": "3265e31b-5ae7-4a4e-9117-ef700fd45980", + "createdAt": "2023-04-26", + "completed": "2014-05-13", + "initiated": "2015-05-11", + "ministryContact": "JACOBSON WAVA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -2051,39 +2357,55 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "uuid": "1d14bf15-45be-4782-8a48-d8dd368b4d33", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": true }, { + "uuid": "d550793a-c501-4082-8c3d-aedc38fc180b", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "uuid": "ecd6859f-c116-4de6-9970-64e6cf9120a0", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true } ], "participants": [ { + "uuid": "308c3464-df37-4c8b-8d76-300607e176e9", "name": "SHELL CANADA PRODUCTS", - "endDate": "2019-07-13", - "startDate": "2017-03-23", + "endDate": "2019-08-02", + "startDate": "2016-01-29", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "uuid": "33588095-6b37-4b07-9c6a-b2f3b3927fda", + "name": "IPSUM", + "endDate": "2019-02-07", + "startDate": "2014-05-29", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false }, { + "uuid": "abb79793-c70d-40b7-b94f-f70c03a02d02", "name": "AMET, DOLOR SIT", - "endDate": "2019-06-21", - "startDate": "2019-12-15", + "endDate": "2016-12-15", + "startDate": "2022-06-25", "notes": "", "roles": [ "EMPLOYEE" @@ -2091,9 +2413,10 @@ "siteRegistry": true }, { + "uuid": "a2867f47-6d85-4208-904b-2b712b489a91", "name": "IPSUM", - "endDate": "2017-07-29", - "startDate": "2018-06-22", + "endDate": "2020-01-18", + "startDate": "2019-12-11", "notes": "", "roles": [ "EMPLOYEE" @@ -2101,74 +2424,90 @@ "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2018-03-07", - "startDate": "2020-03-01", + "uuid": "a887ff8c-dd11-4d72-8c86-1924348aa1bf", + "name": "AMET, DOLOR SIT", + "endDate": "2015-04-12", + "startDate": "2018-01-02", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], - "siteRegistry": true + "siteRegistry": false } ], "suspectLandUses": [ { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-10-18 (described on Site Profile dated 2017-10-18)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" - }, - { + "uuid": "52231709-7bb2-479e-8146-7b03eefb4d02", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-08-15 (described on Site Profile dated 2022-08-15)", + "notes": "INSERTED FOR SITE PROFILE DATED 2014-02-21 (described on Site Profile dated 2014-02-21)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-08-25 (described on Site Profile dated 2014-08-25)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "uuid": "49a68767-5dec-4ecf-8a07-a0e03faddcae", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2021-05-01 (described on Site Profile dated 2021-05-01)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], "parcelDescriptions": [ { + "uuid": "9293e161-64e0-4a59-b502-a7958616e458", "siteRegistry": false, - "dateNoted": "2023-01-30", - "parcelID": "15943", - "crownLandUsePIN": "15769", - "crownLandFileNumber": "16987", - "landDescription": "LOT 3 OF LOT 1 BLOCK 2 DISTRICT LOT 5 PLAN 5089" + "dateNoted": "2023-06-10", + "parcelID": "19260", + "crownLandUsePIN": "15802", + "crownLandFileNumber": "19784", + "landDescription": "LOT 1 OF LOT 1 BLOCK 2 DISTRICT LOT 5 PLAN 6182" }, { + "uuid": "bcaf1632-fbe1-4abc-bccc-f03e6ed5e0f6", "siteRegistry": true, + "dateNoted": "2014-05-11", + "parcelID": "16349", + "crownLandUsePIN": "17079", + "crownLandFileNumber": "16320", + "landDescription": "LOT 2 OF LOT 2 BLOCK 5 DISTRICT LOT 3 PLAN 5961" + }, + { + "uuid": "363720f0-670e-4f8a-b619-28212c78582f", + "siteRegistry": true, + "dateNoted": "2016-09-05", + "parcelID": "17542", + "crownLandUsePIN": "15500", + "crownLandFileNumber": "19596", + "landDescription": "LOT 4 OF LOT 3 BLOCK 2 DISTRICT LOT 1 PLAN 3520" + }, + { + "uuid": "5fcf5449-c208-473a-a56b-082461cfe47b", + "siteRegistry": false, "dateNoted": "2017-10-06", - "parcelID": "19547", - "crownLandUsePIN": "15832", - "crownLandFileNumber": "16255", - "landDescription": "LOT 2 OF LOT 3 BLOCK 2 DISTRICT LOT 2 PLAN 3489" + "parcelID": "20536", + "crownLandUsePIN": "16189", + "crownLandFileNumber": "20042", + "landDescription": "LOT 5 OF LOT 1 BLOCK 4 DISTRICT LOT 2 PLAN 7773" } ], "siteDisclosures": [ { + "uuid": "6ea7f289-e868-4a04-936b-1aa72cfc4fe3", "siteRegistry": false, - "dateReceived": "2022-11-27", - "dateCompleted": "2019-09-07", - "dateEntered": "2023-02-13", - "dateRegistrar": "2020-06-24", - "dateLocalAuthorityReceived": "2020-07-12", - "summary": "Tempora impedit fugiat praesentium molestias vel esse aliquam minima.\nVel sit earum autem sequi.\nAd laboriosam molestiae vero quisquam eveniet aspernatur saepe unde possimus.", - "informationUsed": "Laboriosam nostrum eum possimus non ipsum a voluptates laborum.\nEst inventore et nam quidem rerum similique quidem minima.\nUnde quasi exercitationem inventore in.\nCulpa maiores modi hic expedita doloribus.", - "pastOrPresentOrders": "Omnis fugit exercitationem dignissimos iusto incidunt labore tenetur.", + "dateReceived": "2022-08-26", + "dateCompleted": "2014-03-05", + "dateEntered": "2015-11-26", + "dateRegistrar": "2018-04-21", + "dateLocalAuthorityReceived": "2015-03-23", + "summary": "Cum ea nulla repellat recusandae.", + "informationUsed": "Blanditiis nam magnam numquam.\nRepellat rerum doloremque eveniet sint voluptatum aliquid.\nEligendi placeat ab voluptates accusantium repellat odio.\nImpedit ut rem.\nRem distinctio ipsam velit necessitatibus atque nemo asperiores voluptate.", + "pastOrPresentOrders": "Nam totam cumque excepturi animi eius.\nOdit dolore repellat hic quasi vitae.\nEst facere excepturi eum consequuntur facilis officiis provident sed.", "commercialAndIndustrialPurposes": [ { + "uuid": "da27f5d9-c120-4ea3-8431-cb8c411c2b70", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false - }, - { + "uuid": "d58ff06a-c189-479c-a6f4-c25e118ff78a", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true @@ -2176,28 +2515,26 @@ ] }, { + "uuid": "46cd3d5f-8cc1-4a9f-9d7a-5ae26578300d", "siteRegistry": false, - "dateReceived": "2023-05-12", - "dateCompleted": "2021-08-08", - "dateEntered": "2016-09-12", - "dateRegistrar": "2019-10-16", - "dateLocalAuthorityReceived": "2018-12-28", - "summary": "Tempora officiis soluta quisquam molestias asperiores qui excepturi alias iure.\nQuidem animi debitis labore hic earum.\nOdit amet enim beatae facere explicabo voluptatibus corporis assumenda.", - "informationUsed": "Illo aspernatur enim nostrum explicabo facilis at unde earum quaerat.\nDolor sed voluptatum alias rem distinctio sint doloremque illo.\nInventore adipisci facere aut maiores excepturi quisquam velit.\nPerspiciatis amet sequi.\nMolestiae repellat harum exercitationem sapiente quae deserunt inventore nostrum.", - "pastOrPresentOrders": "Illum sapiente illo.", + "dateReceived": "2018-01-21", + "dateCompleted": "2020-10-09", + "dateEntered": "2018-06-14", + "dateRegistrar": "2014-12-28", + "dateLocalAuthorityReceived": "2018-10-07", + "summary": "Ipsam ut culpa et quo omnis.\nExplicabo ipsa deserunt placeat mollitia ab dolore sequi est consectetur.", + "informationUsed": "Maiores iusto asperiores perferendis labore unde excepturi aut sed.\nEveniet laboriosam sed doloribus placeat minus sit tempore.\nFacilis quos voluptatem iure quidem repudiandae.\nMaiores provident suscipit corrupti deleniti eligendi voluptate.", + "pastOrPresentOrders": "Quos nemo magni reprehenderit.\nDoloribus quasi non asperiores mollitia veritatis ipsa.", "commercialAndIndustrialPurposes": [ { + "uuid": "3f2fa4d0-67b0-405d-9051-615218569563", "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true - }, - { - "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { - "scheduleReference": "F2*", + "uuid": "20d3e75b-98eb-4034-92f5-9f222af334f8", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true } @@ -2206,77 +2543,113 @@ ], "activityLog": [ { + "uuid": "f43267b7-1680-4060-8103-f92b031b0563", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "BOGAN-ORN MERTIE", - "timestamp": "2018-07-09" + "user": "BERGNAUM MYRIAM", + "timestamp": "2015-03-21" }, { + "uuid": "99d427a8-7581-4c34-827b-c1b7ea832697", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "HEANEY OLIN", - "timestamp": "2015-03-18" + "user": "HUEL-THIEL SIGRID", + "timestamp": "2014-03-05" }, { + "uuid": "9a5db15a-38b9-4761-b00e-0094db6d0ea4", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "HEATHCOTE CALE", - "timestamp": "2019-01-30" + "user": "NIENOW VINCE", + "timestamp": "2021-03-15" }, { + "uuid": "7a4e709f-8940-4aa8-86ec-f0dc3899c484", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "PFEFFER VINCENZO", - "timestamp": "2014-07-16" + "user": "CONROY-WISOKY NELS", + "timestamp": "2021-03-24" }, { + "uuid": "2a966498-7732-4114-abc6-b27d305214e6", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "SHIELDS CEDRICK", - "timestamp": "2022-07-07" + "user": "KUNDE AYDEN", + "timestamp": "2015-08-11" }, { + "uuid": "5d53df98-a430-4b81-a6a7-6b6ca9840b4f", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "LOCKMAN VINCENZA", - "timestamp": "2013-12-22" + "user": "SCHNEIDER JEDIDIAH", + "timestamp": "2017-05-05" + }, + { + "uuid": "3762169b-e8e0-4e45-97dc-83136911c4e8", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "WALKER TREVA", + "timestamp": "2014-09-22" + }, + { + "uuid": "008d1c26-9763-47bd-b8b7-ffdb52b8f9f4", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "PROSACCO MAYBELL", + "timestamp": "2022-11-24" + }, + { + "uuid": "0a206684-bdd1-438f-8684-c03cd3064baf", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "SHIELDS ROZELLA", + "timestamp": "2016-08-19" + }, + { + "uuid": "86467c76-9722-4c87-bd88-ac8539be5e4d", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "ABBOTT JUWAN", + "timestamp": "2016-08-07" } ], "associatedSites": [ { - "dateNoted": "2017-04-15", + "uuid": "86b1b467-9cfd-43f9-bd85-dd7596e40035", + "dateNoted": "2016-10-09", "notes": "", - "parcelID": "19783", - "siteID": "15826", - "siteRegistry": false + "parcelID": "15228", + "siteID": "20433", + "siteRegistry": true } ] }, { - "uuid": "75edd8d8-f901-4242-9126-713006a3ebf3", - "siteID": 15563, - "address": "2035 Larkin Light", - "latitude": 53.1731, - "longitude": -122.3876, - "lastUpdated": "2019-03-25", - "city": "East Marisolside", - "region": "Vancouver Island/Coast", - "victoriaFile": "26250-20/19452", + "uuid": "c76393ad-81ae-49da-a46e-a796b69fec02", + "siteID": 15332, + "address": "4053 Rowe Land", + "latitude": 57.2038, + "longitude": -130.0311, + "lastUpdated": "2021-08-12", + "city": "North Magdalen", + "region": " North Coast", + "victoriaFile": "26250-20/3812", "regionalFile": "N/A", "parcelIDs": [ - 2275061, - 3593337, - 9863572, - 5703946, - 3201286 + 4503189, + 3593896, + 8855214, + 6579005, + 8666610 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2020-08-26", - "completed": "2016-06-03", - "initiated": "2013-12-13", - "ministryContact": "ROSENBAUM VADA", + "uuid": "5c08c9c7-713b-4dd4-bc53-78185aa812a2", + "createdAt": "2021-10-26", + "completed": "2015-02-27", + "initiated": "2016-02-19", + "ministryContact": "HIRTHE-KILBACK BRADLEY", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -2285,48 +2658,38 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "fc8726ba-0c24-4e45-887a-63cf84d3bb6d", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - } - ], - "siteRegistry": false - }, - { - "createdAt": "2020-09-23", - "completed": "2018-04-05", - "initiated": "2016-08-06", - "ministryContact": "KIEHN JEWELL", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { + "uuid": "76066e25-e6fa-4d22-a371-823c5a5643a6", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true }, { + "uuid": "33e96d06-70bb-4580-a5d2-6d7d7dc1b2ae", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "uuid": "98220dc9-c5b9-4749-a49a-9d668f11f0d0", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false } ], "siteRegistry": true }, { - "createdAt": "2015-10-07", - "completed": "2014-01-08", - "initiated": "2019-03-14", - "ministryContact": "HARBER CODY", + "uuid": "af0f6a7f-a7fe-400f-9b29-b457ee68764c", + "createdAt": "2015-08-06", + "completed": "2020-05-22", + "initiated": "2020-07-16", + "ministryContact": "HAND STEPHANY", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -2335,18 +2698,21 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "81c0dda5-73df-45bc-b8bd-49051cb2ee96", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false + "uuid": "17a27c3d-fee0-4751-8e6c-df125c4728f0", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "uuid": "c6c14c15-a867-456f-a2cf-0e67e474d151", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": false } ], @@ -2355,121 +2721,106 @@ ], "participants": [ { + "uuid": "23ab3e38-3293-4834-9c3a-606990557488", "name": "IPSUM", - "endDate": "2017-09-18", - "startDate": "2022-11-20", + "endDate": "2023-06-10", + "startDate": "2018-05-01", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true }, { + "uuid": "900c8988-7c3b-4939-a229-1c41c68b54fa", "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2021-01-15", - "startDate": "2020-09-22", + "endDate": "2021-02-06", + "startDate": "2014-09-02", "notes": "", "roles": [ "ORGANIZATION" ], "siteRegistry": true - }, - { - "name": "AMET, DOLOR SIT", - "endDate": "2014-02-04", - "startDate": "2020-01-09", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": false - }, - { - "name": "IPSUM", - "endDate": "2019-04-19", - "startDate": "2017-08-16", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": false } ], "suspectLandUses": [ { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-05-02 (described on Site Profile dated 2021-05-02)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" - }, - { + "uuid": "abcbc5f0-2522-4945-81f6-60398b853b24", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-11-14 (described on Site Profile dated 2017-11-14)", + "notes": "INSERTED FOR SITE PROFILE DATED 2019-12-08 (described on Site Profile dated 2019-12-08)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { + "uuid": "44558f45-3522-4aec-b365-d3169585cb0f", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2020-02-13 (described on Site Profile dated 2020-02-13)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" - }, - { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-06-01 (described on Site Profile dated 2018-06-01)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" - }, - { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-05-11 (described on Site Profile dated 2018-05-11)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "notes": "INSERTED FOR SITE PROFILE DATED 2016-01-19 (described on Site Profile dated 2016-01-19)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], "parcelDescriptions": [ { - "siteRegistry": true, - "dateNoted": "2019-06-27", - "parcelID": "19151", - "crownLandUsePIN": "16907", - "crownLandFileNumber": "15567", - "landDescription": "LOT 4 OF LOT 2 BLOCK 4 DISTRICT LOT 1 PLAN 6870" + "uuid": "b099c644-209f-4474-83ac-bd9343e173c4", + "siteRegistry": false, + "dateNoted": "2020-08-29", + "parcelID": "19643", + "crownLandUsePIN": "18567", + "crownLandFileNumber": "16529", + "landDescription": "LOT 3 OF LOT 1 BLOCK 5 DISTRICT LOT 1 PLAN 9453" }, { - "siteRegistry": true, - "dateNoted": "2014-08-26", - "parcelID": "17216", - "crownLandUsePIN": "16270", - "crownLandFileNumber": "19086", - "landDescription": "LOT 3 OF LOT 5 BLOCK 3 DISTRICT LOT 5 PLAN 5783" + "uuid": "19a6f28b-8e3b-4f50-bb80-2218348fcf2d", + "siteRegistry": false, + "dateNoted": "2021-02-02", + "parcelID": "16293", + "crownLandUsePIN": "20300", + "crownLandFileNumber": "16736", + "landDescription": "LOT 1 OF LOT 1 BLOCK 5 DISTRICT LOT 2 PLAN 6568" + }, + { + "uuid": "06d97d81-9576-434f-8011-90fa27487702", + "siteRegistry": false, + "dateNoted": "2018-03-19", + "parcelID": "19158", + "crownLandUsePIN": "17920", + "crownLandFileNumber": "20158", + "landDescription": "LOT 4 OF LOT 5 BLOCK 5 DISTRICT LOT 3 PLAN 7260" } ], "siteDisclosures": [ { - "siteRegistry": true, - "dateReceived": "2021-12-25", - "dateCompleted": "2014-07-20", - "dateEntered": "2018-04-27", - "dateRegistrar": "2020-03-04", - "dateLocalAuthorityReceived": "2019-08-26", - "summary": "Quo tenetur magnam quis dolorem.\nMinus asperiores fuga quisquam facilis ad praesentium.\nOdit necessitatibus eaque dolorum maiores vitae officia.", - "informationUsed": "Quasi totam odio facere.\nDoloribus dolorum voluptatem sit saepe veritatis fugit debitis.\nFacilis esse accusamus consectetur.\nAspernatur facere eius corrupti dolorum consequuntur placeat in libero at.", - "pastOrPresentOrders": "Possimus delectus distinctio esse cupiditate iste sed suscipit.", + "uuid": "6ead4b32-14b3-432e-84f1-2df8ad3dfe74", + "siteRegistry": false, + "dateReceived": "2021-08-01", + "dateCompleted": "2022-04-03", + "dateEntered": "2020-05-04", + "dateRegistrar": "2023-07-12", + "dateLocalAuthorityReceived": "2019-05-20", + "summary": "Iure deserunt velit consequuntur optio explicabo sed consequatur eum aliquam.\nAssumenda sunt sequi.\nSaepe repellat soluta.", + "informationUsed": "Assumenda neque at et praesentium repellendus.\nDicta quia voluptatem labore.\nDicta quam saepe rem modi recusandae distinctio accusantium sapiente.", + "pastOrPresentOrders": "Repellendus eum aliquid pariatur commodi distinctio unde porro.\nPossimus numquam dicta minima perspiciatis labore.", "commercialAndIndustrialPurposes": [ { + "uuid": "30b10735-b5d2-44f2-97a4-4e59bda77738", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, { + "uuid": "20df7a14-5614-4a03-8f36-3f6ba7d35d7a", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true + "siteRegistry": false }, { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true + "uuid": "f7ff1c55-b250-4084-8730-6cc18277d4a4", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false }, { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "uuid": "fafd653a-be65-4ee9-8089-fe40b494435f", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false } ] @@ -2477,91 +2828,107 @@ ], "activityLog": [ { - "siteRegistry": true, + "uuid": "816ed03d-0684-45e2-807b-4cda4e9c28f6", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "LITTLE CLAUD", - "timestamp": "2016-10-07" + "user": "SCHAMBERGER LUCILE", + "timestamp": "2016-04-06" }, { + "uuid": "e30c3c70-bf82-4293-aa5f-f4922653bdce", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "POWLOWSKI BART", - "timestamp": "2016-06-07" + "user": "HARTMANN KAREN", + "timestamp": "2017-01-12" + }, + { + "uuid": "77efb1e1-9c79-4d2d-a1ad-adf3406c20e5", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "REYNOLDS NEIL", + "timestamp": "2023-08-03" }, { + "uuid": "738ca770-1e21-429d-929f-ffd05b5022a2", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "STEUBER THERESA", - "timestamp": "2023-05-04" + "user": "KERLUKE DOMINIQUE", + "timestamp": "2019-01-16" }, { + "uuid": "54ccb924-a080-4786-9c5d-daa4a430955f", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "O'KEEFE ALANIS", - "timestamp": "2016-09-14" + "user": "ROHAN MCKENNA", + "timestamp": "2020-10-14" }, { - "siteRegistry": true, + "uuid": "0969a73c-4f3f-4451-8e5f-d27a96ff6017", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "MONAHAN LINDSAY", - "timestamp": "2019-01-30" + "user": "GREENFELDER UNIQUE", + "timestamp": "2017-09-30" }, { - "siteRegistry": true, + "uuid": "450f4d3c-20c0-4209-976e-9f2ba4f27989", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "HAYES ANTHONY", + "timestamp": "2020-04-13" + }, + { + "uuid": "1c0cf105-a401-43a0-ac4c-5183272d600a", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "AUER FILIBERTO", - "timestamp": "2016-08-24" + "user": "OBERBRUNNER RAFAEL", + "timestamp": "2016-01-27" } ], "associatedSites": [ { - "dateNoted": "2022-02-04", + "uuid": "955776d4-b7c5-4658-97a7-fcc2f27bac80", + "dateNoted": "2014-05-26", "notes": "", - "parcelID": "17131", - "siteID": "19847", + "parcelID": "18982", + "siteID": "16560", "siteRegistry": false }, { - "dateNoted": "2016-07-11", + "uuid": "1c1f1cb3-1af3-4c0f-a803-185fc065fedb", + "dateNoted": "2019-09-03", "notes": "", - "parcelID": "15478", - "siteID": "16602", + "parcelID": "16702", + "siteID": "18717", "siteRegistry": true - }, - { - "dateNoted": "2022-06-21", - "notes": "", - "parcelID": "19380", - "siteID": "20722", - "siteRegistry": false } ] }, { - "uuid": "4d9e7e89-264f-43ea-9eff-cda6ac7f20c4", - "siteID": 16602, - "address": "858 West Court", - "latitude": 52.4457, - "longitude": -135.9739, - "lastUpdated": "2020-03-12", - "city": "Waelchiboro", - "region": "Kootenay", - "victoriaFile": "26250-20/1563", + "uuid": "0c10f7a1-5312-4972-951c-f75f78943793", + "siteID": 19897, + "address": "5814 Schinner Fork", + "latitude": 57.7555, + "longitude": -130.7, + "lastUpdated": "2021-08-14", + "city": "New York", + "region": "Vancouver Island/Coast", + "victoriaFile": "26250-20/17631", "regionalFile": "N/A", "parcelIDs": [ - 1212349, - 2214121, - 3379600, - 7366048, - 7933816 + 2978451, + 6143238, + 633419, + 730420, + 5101589 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2017-03-03", - "completed": "2020-11-04", - "initiated": "2016-08-05", - "ministryContact": "EFFERTZ ROSETTA", + "uuid": "5de2932f-f9d2-4dd7-9d29-f270ede05304", + "createdAt": "2015-01-24", + "completed": "2020-09-23", + "initiated": "2019-07-13", + "ministryContact": "JERDE ROSELLA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -2570,23 +2937,38 @@ ], "notationParticipants": [ { + "uuid": "1bb90f77-d79c-4035-bc9f-fb91b2e6ecbf", "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "uuid": "8c376b4e-a62b-4b4a-a9a8-8579bf37b923", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true }, { + "uuid": "769c4d31-abea-46fb-ab5a-38ab6a2a1dee", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "uuid": "8a70ff1e-d8b4-475d-ac92-4c6cdfd30a20", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false + "role": "SUBMITTED BY", + "siteRegistry": true } ], "siteRegistry": true }, { - "createdAt": "2023-01-05", - "completed": "2016-07-18", - "initiated": "2013-12-09", - "ministryContact": "TURCOTTE BLAISE", + "uuid": "d6f573fc-4021-43e1-93b3-f183360437ee", + "createdAt": "2013-10-19", + "completed": "2020-10-03", + "initiated": "2022-03-04", + "ministryContact": "HETTINGER SAMANTA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -2595,12 +2977,32 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", + "uuid": "a76cf652-1b56-4e97-a464-053a13dc7af7", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true }, { + "uuid": "9088f901-c36e-4627-b1e1-2187ca7c3b8f", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "99523378-2956-46c1-9e06-b133a7863f16", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "uuid": "57aeb9d9-497b-46ef-8cf2-6f53802d8cc9", "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "991373de-5232-4e95-aec3-6056afd0009c", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true } @@ -2608,10 +3010,11 @@ "siteRegistry": false }, { - "createdAt": "2019-08-15", - "completed": "2023-02-26", - "initiated": "2018-05-22", - "ministryContact": "MRAZ LAVERNA", + "uuid": "948e49ec-063c-428a-a731-daebe19ec8b8", + "createdAt": "2022-12-22", + "completed": "2018-09-16", + "initiated": "2019-12-14", + "ministryContact": "KRIS CLARK", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -2620,26 +3023,31 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "83ebb88b-dcb3-4311-ac88-8a9745191c46", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { + "uuid": "17bc3335-3bd9-4f52-9e2f-3d37e60ea7b3", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { + "uuid": "dc4da7b4-4efe-40b8-bf82-440cb80d6471", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true + "role": "SUBMITTED BY", + "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "b1f57201-c3ff-475d-8943-eb441e066673", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { + "uuid": "de087ff5-4c61-4681-a2a3-b8fbe528eb16", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true @@ -2650,19 +3058,21 @@ ], "participants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2015-07-01", - "startDate": "2022-01-10", + "uuid": "880504a7-756b-43b8-9c58-1d8463cb93ad", + "name": "IPSUM", + "endDate": "2023-01-01", + "startDate": "2019-10-21", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2022-08-04", - "startDate": "2015-08-01", + "uuid": "8feb0e19-20e9-4711-aa9b-89228b1c5426", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2022-02-01", + "startDate": "2015-08-02", "notes": "", "roles": [ "EMPLOYEE" @@ -2670,79 +3080,124 @@ "siteRegistry": true }, { + "uuid": "cdbdd67e-e1dd-4f49-b890-9de1492716f3", "name": "IPSUM", - "endDate": "2018-05-16", - "startDate": "2017-10-02", + "endDate": "2018-09-20", + "startDate": "2022-07-21", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "uuid": "95532296-d4c4-4498-92a9-e47e6763dc2f", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2014-10-26", + "startDate": "2019-03-07", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false } ], "suspectLandUses": [ { + "uuid": "142425df-a0ff-40c5-81e1-e8511649584a", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-01-26 (described on Site Profile dated 2022-01-26)", + "notes": "INSERTED FOR SITE PROFILE DATED 2018-03-03 (described on Site Profile dated 2018-03-03)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-07-15 (described on Site Profile dated 2014-07-15)", + "uuid": "b5d48310-0f17-4a4a-8911-4269b6c0d80f", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2017-01-02 (described on Site Profile dated 2017-01-02)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "uuid": "099d9924-92e2-470f-96d9-786c41a6198d", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2022-08-02 (described on Site Profile dated 2022-08-02)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "uuid": "12304594-a497-42a9-9f02-07713913e7b1", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2023-06-07 (described on Site Profile dated 2023-06-07)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "uuid": "b279f07a-27e0-4c87-a1f9-a137920d8678", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2021-03-08 (described on Site Profile dated 2021-03-08)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], "parcelDescriptions": [ { - "siteRegistry": false, - "dateNoted": "2016-11-14", - "parcelID": "16011", - "crownLandUsePIN": "17173", - "crownLandFileNumber": "20766", - "landDescription": "LOT 4 OF LOT 2 BLOCK 1 DISTRICT LOT 3 PLAN 9603" + "uuid": "9032c64c-1b75-4437-9724-36db137a2be0", + "siteRegistry": true, + "dateNoted": "2022-11-26", + "parcelID": "19143", + "crownLandUsePIN": "19353", + "crownLandFileNumber": "15991", + "landDescription": "LOT 5 OF LOT 2 BLOCK 3 DISTRICT LOT 5 PLAN 5020" }, { - "siteRegistry": true, - "dateNoted": "2023-01-29", - "parcelID": "15287", - "crownLandUsePIN": "15750", - "crownLandFileNumber": "17527", - "landDescription": "LOT 5 OF LOT 4 BLOCK 5 DISTRICT LOT 5 PLAN 4150" + "uuid": "00b5ce19-0186-421b-b339-8f9c340425a9", + "siteRegistry": false, + "dateNoted": "2021-11-06", + "parcelID": "19589", + "crownLandUsePIN": "20161", + "crownLandFileNumber": "17298", + "landDescription": "LOT 5 OF LOT 3 BLOCK 2 DISTRICT LOT 5 PLAN 8989" }, { - "siteRegistry": true, - "dateNoted": "2015-02-18", - "parcelID": "18300", - "crownLandUsePIN": "18497", - "crownLandFileNumber": "15864", - "landDescription": "LOT 3 OF LOT 5 BLOCK 4 DISTRICT LOT 5 PLAN 6125" + "uuid": "f033b246-6df6-4e3c-8213-efac8404a506", + "siteRegistry": false, + "dateNoted": "2019-10-22", + "parcelID": "18633", + "crownLandUsePIN": "17088", + "crownLandFileNumber": "15528", + "landDescription": "LOT 5 OF LOT 4 BLOCK 1 DISTRICT LOT 2 PLAN 5977" } ], "siteDisclosures": [ { + "uuid": "0e5ec213-0a1f-443f-85e6-bfc03118ee78", "siteRegistry": false, - "dateReceived": "2019-09-08", - "dateCompleted": "2013-12-18", - "dateEntered": "2017-01-09", - "dateRegistrar": "2020-01-11", - "dateLocalAuthorityReceived": "2020-11-30", - "summary": "Nihil totam neque.\nQuidem sapiente a id nisi nisi.", - "informationUsed": "Libero in nemo.\nLabore culpa praesentium nesciunt.\nOmnis aut qui ipsam quasi quam autem fugit recusandae accusantium.\nAt accusantium ad minus dolorum neque dicta veritatis.\nIusto facilis repudiandae dolorum assumenda dolorem ut veritatis suscipit ullam.", - "pastOrPresentOrders": "Nostrum quo qui placeat aliquid impedit.\nVoluptatum nisi ullam ratione.\nAutem quod unde.", + "dateReceived": "2017-10-07", + "dateCompleted": "2016-02-12", + "dateEntered": "2019-08-30", + "dateRegistrar": "2019-07-22", + "dateLocalAuthorityReceived": "2014-09-12", + "summary": "Deleniti eos veritatis molestias illum illum veritatis.", + "informationUsed": "Cum expedita dolorum magnam esse quo quam.\nRatione eligendi quam.\nAt facere dolore id dolorem.\nMolestiae provident nobis maxime distinctio earum.\nEaque expedita veniam nam occaecati quibusdam.", + "pastOrPresentOrders": "Neque vel vero recusandae sapiente exercitationem iure laudantium.", "commercialAndIndustrialPurposes": [ { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "uuid": "d34836e0-f521-44ef-bb6d-ceed595c5956", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false + "uuid": "5589091b-55cd-474a-bb9d-f8332035da79", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true }, { - "scheduleReference": "F2*", + "uuid": "b37707e4-55df-4668-9db1-e90d41d5e526", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "uuid": "87c88b66-b24f-410d-86ca-d84fa65c7cf4", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false } ] @@ -2750,83 +3205,100 @@ ], "activityLog": [ { - "siteRegistry": false, + "uuid": "747e2ea2-34d9-4a6a-8f24-dd892517c18d", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "HAUCK OMER", - "timestamp": "2019-07-19" + "user": "MURRAY BERTA", + "timestamp": "2014-09-28" }, { - "siteRegistry": false, + "uuid": "b33c2d31-7866-4c7e-827b-c3f5a0772348", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "PFEFFER VICTORIA", - "timestamp": "2022-01-07" + "user": "KERTZMANN KYLEE", + "timestamp": "2021-10-29" }, { - "siteRegistry": true, + "uuid": "a1a42a51-0ad9-4425-ada5-2c633181aa9b", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "ROHAN GREGORIO", - "timestamp": "2023-06-20" + "user": "WYMAN GROVER", + "timestamp": "2015-03-19" }, { - "siteRegistry": true, + "uuid": "7fc44756-e3a4-442f-ae4f-7ba7e8522291", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "CONN JACKLYN", - "timestamp": "2022-06-26" + "user": "MCKENZIE LEONARDO", + "timestamp": "2017-04-07" }, { - "siteRegistry": false, + "uuid": "097295f6-50ae-4e2b-8038-567be36128d0", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "GREENHOLT BROOKS", - "timestamp": "2016-06-26" + "user": "ABBOTT MARLEY", + "timestamp": "2023-08-27" }, { - "siteRegistry": false, + "uuid": "1c2e4257-d234-433d-9dd0-f3a4e228bdff", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "MULLER DERECK", - "timestamp": "2015-10-30" + "user": "FRAMI ONIE", + "timestamp": "2020-07-12" }, { - "siteRegistry": false, + "uuid": "a1c06e5a-f874-4d2a-9626-39b51aa580e7", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "KOCH STEPHANIA", - "timestamp": "2020-04-01" + "user": "MACGYVER YADIRA", + "timestamp": "2015-05-29" } ], "associatedSites": [ { - "dateNoted": "2016-01-21", + "uuid": "50b3cbfa-51a5-4674-b2ec-3ce5c0377ddc", + "dateNoted": "2022-04-10", "notes": "", - "parcelID": "18465", - "siteID": "19608", - "siteRegistry": true + "parcelID": "18469", + "siteID": "19716", + "siteRegistry": false + }, + { + "uuid": "b0b3cb4b-4f52-42e4-8767-36f2f2ee2e80", + "dateNoted": "2018-04-27", + "notes": "", + "parcelID": "20002", + "siteID": "20682", + "siteRegistry": false } ] }, { - "uuid": "e585bd9f-655e-43d7-8936-f96e4ebd6a35", - "siteID": 15477, - "address": "910 Mills Prairie", - "latitude": 58.1319, - "longitude": -130.4263, - "lastUpdated": "2019-11-07", - "city": "Camarillo", - "region": " North Coast", - "victoriaFile": "26250-20/10778", + "uuid": "f9528bee-c511-4f57-8bd9-0518e9efd7e2", + "siteID": 20193, + "address": "326 Cecil Extensions", + "latitude": 58.9691, + "longitude": -136.5956, + "lastUpdated": "2018-06-21", + "city": "New Milestown", + "region": "Kootenay", + "victoriaFile": "26250-20/9715", "regionalFile": "N/A", "parcelIDs": [ - 1841448, - 1145025, - 9816155, - 2861727, - 1800790 + 8738648, + 9823260, + 857197, + 7323199, + 2477029 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2023-03-13", - "completed": "2016-07-31", - "initiated": "2020-04-21", - "ministryContact": "SMITH BROWN", + "uuid": "a284ead5-7209-4bad-841f-9936303f712c", + "createdAt": "2021-01-18", + "completed": "2022-12-03", + "initiated": "2020-03-23", + "ministryContact": "COLLINS NIKOLAS", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -2835,38 +3307,60 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "uuid": "b858d7c4-4d3f-411b-ad78-e61aea6d43ea", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": true }, { + "uuid": "3f6ae2ea-7af2-4fd9-8fd0-44dd042e680f", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true + "role": "SUBMITTED BY", + "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", + "uuid": "96e5d0a4-c55c-4454-a32d-ae9a1f24c9b5", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true - }, + } + ], + "siteRegistry": true + }, + { + "uuid": "999cae78-bb09-46f1-877b-8f7f5bc924ba", + "createdAt": "2020-03-22", + "completed": "2014-12-15", + "initiated": "2023-09-05", + "ministryContact": "CRUICKSHANK RUBIE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ { + "uuid": "07a5af51-1a11-44ee-b619-ea4d028a9c54", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true }, { + "uuid": "408f5115-fcc4-4248-95e6-8203ee86b5c6", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true } ], "siteRegistry": false }, { - "createdAt": "2019-01-25", - "completed": "2016-11-20", - "initiated": "2020-05-27", - "ministryContact": "O'CONNELL SOPHIE", + "uuid": "1224e281-5d60-4d8a-b9e4-74e0f4f27dd0", + "createdAt": "2017-07-25", + "completed": "2019-07-14", + "initiated": "2018-07-07", + "ministryContact": "KIRLIN GLADYS", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -2875,21 +3369,59 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "aba4ee3e-6f8f-45dd-ad3f-a510cd10c28d", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true }, { + "uuid": "b88c75c9-d4d8-4a33-8016-a9a15414d5e7", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "uuid": "3e39f1a9-34ad-4779-ada9-ba431bf4703f", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "uuid": "4b3fa7d1-19bf-4a8a-8c0e-e28a0f8a14db", + "createdAt": "2020-12-30", + "completed": "2014-06-09", + "initiated": "2022-02-14", + "ministryContact": "RITCHIE SUMMER", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "uuid": "882d14c3-4732-4e7e-913f-de25d99b767c", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", "siteRegistry": false }, { + "uuid": "fd2b4a72-d6ab-4aab-b6ee-be26bef0abfe", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false }, { + "uuid": "fe6afdcd-0e65-4291-9360-c4d737b532e6", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "uuid": "59ea8b00-33a6-42f6-b77e-c1198769b43b", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false @@ -2900,9 +3432,10 @@ ], "participants": [ { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2015-10-25", - "startDate": "2023-07-11", + "uuid": "bc2e4803-0619-4294-b29d-85f30555bc70", + "name": "IPSUM", + "endDate": "2014-07-11", + "startDate": "2016-06-26", "notes": "", "roles": [ "ORGANIZATION" @@ -2910,258 +3443,223 @@ "siteRegistry": true }, { + "uuid": "27fb25ac-d3f8-435a-a860-f0e55f645690", "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2013-12-05", - "startDate": "2019-12-31", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": false - }, - { - "name": "IPSUM", - "endDate": "2020-02-25", - "startDate": "2014-02-26", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2022-03-28", - "startDate": "2015-11-10", + "endDate": "2020-03-18", + "startDate": "2016-01-28", "notes": "", "roles": [ "ORGANIZATION" ], "siteRegistry": true - }, - { - "name": "IPSUM", - "endDate": "2020-12-24", - "startDate": "2021-11-26", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": true } ], "suspectLandUses": [ { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-07-19 (described on Site Profile dated 2018-07-19)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "uuid": "83867dd8-946f-4d29-b8b0-988dda2f24d7", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2014-07-15 (described on Site Profile dated 2014-07-15)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { + "uuid": "93b9a92d-095b-4d07-a139-0ebff7835ede", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-12-05 (described on Site Profile dated 2022-12-05)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "notes": "INSERTED FOR SITE PROFILE DATED 2017-09-22 (described on Site Profile dated 2017-09-22)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { + "uuid": "6d52c309-6d48-48ad-b686-49708f103abb", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2013-12-28 (described on Site Profile dated 2013-12-28)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "notes": "INSERTED FOR SITE PROFILE DATED 2021-03-23 (described on Site Profile dated 2021-03-23)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { + "uuid": "ba9d7a9f-a300-4fdf-bfbd-1cbca0c8877e", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-11-26 (described on Site Profile dated 2022-11-26)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "notes": "INSERTED FOR SITE PROFILE DATED 2021-03-11 (described on Site Profile dated 2021-03-11)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], "parcelDescriptions": [ { + "uuid": "ac84aadb-67c6-477e-ac88-f658aa9b7537", "siteRegistry": false, - "dateNoted": "2021-03-02", - "parcelID": "15238", - "crownLandUsePIN": "18975", - "crownLandFileNumber": "20488", - "landDescription": "LOT 4 OF LOT 2 BLOCK 4 DISTRICT LOT 2 PLAN 6480" - }, - { - "siteRegistry": true, - "dateNoted": "2018-10-16", - "parcelID": "16374", - "crownLandUsePIN": "15873", - "crownLandFileNumber": "15325", - "landDescription": "LOT 1 OF LOT 2 BLOCK 2 DISTRICT LOT 1 PLAN 7854" + "dateNoted": "2013-11-12", + "parcelID": "19222", + "crownLandUsePIN": "15267", + "crownLandFileNumber": "16340", + "landDescription": "LOT 3 OF LOT 3 BLOCK 1 DISTRICT LOT 1 PLAN 3102" }, { + "uuid": "1543e53c-23a2-4a7a-b457-8325902ca65c", "siteRegistry": false, - "dateNoted": "2015-07-02", - "parcelID": "15910", - "crownLandUsePIN": "17610", - "crownLandFileNumber": "16535", - "landDescription": "LOT 1 OF LOT 2 BLOCK 3 DISTRICT LOT 4 PLAN 3671" + "dateNoted": "2018-03-21", + "parcelID": "19742", + "crownLandUsePIN": "19966", + "crownLandFileNumber": "19846", + "landDescription": "LOT 1 OF LOT 5 BLOCK 3 DISTRICT LOT 3 PLAN 4724" }, { + "uuid": "00e6de04-57aa-4855-b7e7-e19a2ba5d8da", "siteRegistry": false, - "dateNoted": "2021-04-03", - "parcelID": "15255", - "crownLandUsePIN": "17952", - "crownLandFileNumber": "15203", - "landDescription": "LOT 5 OF LOT 1 BLOCK 2 DISTRICT LOT 2 PLAN 6475" + "dateNoted": "2022-12-13", + "parcelID": "19445", + "crownLandUsePIN": "20927", + "crownLandFileNumber": "18966", + "landDescription": "LOT 2 OF LOT 2 BLOCK 1 DISTRICT LOT 5 PLAN 5745" } ], "siteDisclosures": [ { - "siteRegistry": true, - "dateReceived": "2022-01-05", - "dateCompleted": "2020-04-16", - "dateEntered": "2019-02-28", - "dateRegistrar": "2021-05-06", - "dateLocalAuthorityReceived": "2016-02-16", - "summary": "Commodi a facere alias quod facilis consequatur.\nNobis perferendis est placeat amet earum excepturi animi quod.", - "informationUsed": "Debitis nihil doloremque.\nAccusamus molestiae iusto odit architecto.\nTempora suscipit possimus.\nQuaerat dicta provident nisi molestias perferendis nostrum exercitationem rem impedit.\nDolore nulla consequuntur expedita voluptas quasi minus doloremque earum.", - "pastOrPresentOrders": "Eligendi perferendis voluptas magnam.\nPerferendis blanditiis perferendis inventore dolores magni.", + "uuid": "4657b807-4b25-4e41-ba63-d8d19bc993c8", + "siteRegistry": false, + "dateReceived": "2016-01-10", + "dateCompleted": "2016-09-29", + "dateEntered": "2022-04-20", + "dateRegistrar": "2021-07-13", + "dateLocalAuthorityReceived": "2019-12-10", + "summary": "Reprehenderit sint adipisci ipsum ipsa asperiores.\nMaxime delectus maxime ducimus blanditiis explicabo sapiente ratione.", + "informationUsed": "Itaque at quidem nisi earum consequatur earum cum.\nTempora numquam facere dolorem perferendis nostrum beatae distinctio nulla soluta.\nLaborum nobis ad id nostrum.\nNostrum culpa nobis fuga adipisci dolore ad recusandae sit harum.", + "pastOrPresentOrders": "Asperiores repellat assumenda dolor odit quasi.\nAb placeat ipsa illum quasi corrupti porro maiores.\nEx nihil unde omnis voluptate.", "commercialAndIndustrialPurposes": [ { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false - }, - { + "uuid": "53f74cae-4f85-47d8-9590-aeaf9ce71c5f", "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false - } - ] - }, - { - "siteRegistry": false, - "dateReceived": "2020-04-11", - "dateCompleted": "2017-05-19", - "dateEntered": "2020-06-07", - "dateRegistrar": "2015-12-11", - "dateLocalAuthorityReceived": "2015-05-07", - "summary": "Blanditiis maxime sit alias porro.\nIusto fugiat perspiciatis consequatur quos dicta similique excepturi fuga architecto.", - "informationUsed": "Debitis id consequuntur.\nDolores hic esse vero omnis repellat impedit ratione perferendis recusandae.\nOptio nesciunt velit modi dolorem aliquid.", - "pastOrPresentOrders": "Culpa mollitia quod aliquid.", - "commercialAndIndustrialPurposes": [ - { + "uuid": "9254db36-72a6-4f9a-9546-9fc5b68a1ef7", "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false - }, - { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, { + "uuid": "73a9ec00-b83e-4d0f-b9dc-7cf2be16a516", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true - }, - { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false } ] } ], "activityLog": [ { + "uuid": "8f1d3e8e-57c0-4d05-b8f6-11dac5430e92", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "D'AMORE JONATHAN", - "timestamp": "2018-04-10" + "user": "SCHADEN ISADORE", + "timestamp": "2014-10-11" }, { + "uuid": "965c30bb-b7b9-49a2-b6c1-764efe2f958a", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "ALTENWERTH JEREMY", - "timestamp": "2020-03-02" + "user": "REYNOLDS ALBIN", + "timestamp": "2016-11-19" }, { - "siteRegistry": true, + "uuid": "f00fb94c-97f4-4c93-8b9a-4f7b6b161a11", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "LEMKE MAYRA", - "timestamp": "2018-08-20" + "user": "DURGAN CORBIN", + "timestamp": "2021-03-19" }, { + "uuid": "737b4bdc-e7d5-4ef8-a9ca-727a70613763", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "LEUSCHKE BRENDAN", - "timestamp": "2015-08-18" + "user": "DICKENS ELMIRA", + "timestamp": "2021-10-14" }, { - "siteRegistry": false, + "uuid": "d11bb557-7629-4942-8135-ea7eae740eae", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "RUSSEL IRMA", - "timestamp": "2022-11-01" + "user": "RENNER SIGRID", + "timestamp": "2019-06-23" }, { + "uuid": "8392062e-f709-46f6-ac94-252907e045be", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "GERHOLD AYLA", - "timestamp": "2021-05-03" + "user": "TRANTOW-DIETRICH LENORE", + "timestamp": "2017-03-31" + }, + { + "uuid": "ccd82d1a-2e10-4189-abeb-a483a51e9d6c", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "WYMAN JADYN", + "timestamp": "2021-05-19" + }, + { + "uuid": "182ae049-90da-4526-8add-538d2aaa02bd", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "KOZEY AUBREE", + "timestamp": "2018-10-25" + }, + { + "uuid": "b4908451-b66c-4ad8-9b76-eb0c700f9b59", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "JOHNS NAOMI", + "timestamp": "2018-07-01" }, { + "uuid": "971c5a60-56cb-4dbc-8f36-42196f0162f0", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "NADER BRANSON", - "timestamp": "2017-05-13" + "user": "LUETTGEN MARLEY", + "timestamp": "2019-01-04" } ], "associatedSites": [ { - "dateNoted": "2020-04-16", + "uuid": "df8ad193-946b-494d-8747-dc1eb1a51763", + "dateNoted": "2023-08-11", "notes": "", - "parcelID": "20059", - "siteID": "19093", + "parcelID": "16044", + "siteID": "20607", "siteRegistry": false }, { - "dateNoted": "2021-12-11", + "uuid": "53b8bd4f-9254-4b47-a1ca-ff4bbc9499c2", + "dateNoted": "2018-06-27", "notes": "", - "parcelID": "15225", - "siteID": "19914", + "parcelID": "17113", + "siteID": "15580", "siteRegistry": false - }, - { - "dateNoted": "2017-03-05", - "notes": "", - "parcelID": "15422", - "siteID": "19114", - "siteRegistry": true } ] }, { - "uuid": "8a3b8d68-163c-4915-83d0-c248f5661db5", - "siteID": 19305, - "address": "240 Franz Squares", - "latitude": 55.3808, - "longitude": -127.4838, - "lastUpdated": "2019-10-30", - "city": "Fort Cathryn", + "uuid": "9a950baf-3af5-400d-b315-e6d8ab869c97", + "siteID": 17082, + "address": "38054 Hegmann Estates", + "latitude": 53.7953, + "longitude": -126.2063, + "lastUpdated": "2015-09-30", + "city": "Merritttown", "region": "Vancouver Island/Coast", - "victoriaFile": "26250-20/13979", + "victoriaFile": "26250-20/17206", "regionalFile": "N/A", "parcelIDs": [ - 1552942, - 9039330, - 4786213, - 4476279, - 3036002 + 8679381, + 4882938, + 6814160, + 5335802, + 1387872 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2023-06-12", - "completed": "2016-12-02", - "initiated": "2017-06-30", - "ministryContact": "KOCH DARRICK", + "uuid": "a2edc59e-2357-4bb9-8051-5aae3a90b6ea", + "createdAt": "2015-08-25", + "completed": "2022-08-07", + "initiated": "2019-08-19", + "ministryContact": "LEANNON RANDI", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -3170,38 +3668,54 @@ ], "notationParticipants": [ { + "uuid": "a85fff15-8069-479c-8f8f-c2f0ee4ceb7d", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", "siteRegistry": false }, { + "uuid": "6a547811-6197-4094-aad8-467ef8299e29", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "uuid": "7edc99fe-706f-47cb-8e65-ee131be9b65e", + "createdAt": "2016-09-30", + "completed": "2017-01-23", + "initiated": "2023-08-25", + "ministryContact": "REILLY CAITLYN", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ { + "uuid": "72c226a6-941c-41d9-a9cf-ee08b06c512b", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false }, { + "uuid": "74663295-1fae-49eb-9710-b09630b8c3e5", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false } ], "siteRegistry": true }, { - "createdAt": "2021-11-05", - "completed": "2014-11-05", - "initiated": "2023-05-21", - "ministryContact": "DENESIK BERNEICE", + "uuid": "8ce2399d-708c-4046-b1ba-39b585f9b6fc", + "createdAt": "2015-10-24", + "completed": "2020-05-14", + "initiated": "2022-06-28", + "ministryContact": "BEDNAR ABIGAIL", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -3210,29 +3724,27 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "b9bfaef1-0854-4813-b725-fadbb5d08fc1", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", + "uuid": "3977d839-1c32-46b3-8bd1-ecaabb27d9da", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false } ], "participants": [ { - "name": "AMET, DOLOR SIT", - "endDate": "2021-06-01", - "startDate": "2016-03-24", + "uuid": "721e4489-c979-44c5-b78c-dbafffa05b12", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2019-01-28", + "startDate": "2021-12-29", "notes": "", "roles": [ "ORGANIZATION" @@ -3240,204 +3752,275 @@ "siteRegistry": true }, { + "uuid": "45f00fb8-a938-43b8-9616-1626885d7226", "name": "AMET, DOLOR SIT", - "endDate": "2021-07-02", - "startDate": "2020-12-21", + "endDate": "2018-05-21", + "startDate": "2016-03-22", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false }, { + "uuid": "b1e01b82-f91d-486f-85e4-5fef5c5a92ea", "name": "IPSUM", - "endDate": "2019-07-07", - "startDate": "2014-02-12", + "endDate": "2016-06-25", + "startDate": "2019-09-12", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2017-12-06", - "startDate": "2018-06-26", + "uuid": "70cecc9c-9821-444a-9884-7d09fe52ad19", + "name": "IPSUM", + "endDate": "2022-05-24", + "startDate": "2017-12-04", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false } ], "suspectLandUses": [ { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-05-12 (described on Site Profile dated 2018-05-12)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "uuid": "7e3dc59c-4b3f-43e7-bfdc-923bb992520d", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2022-05-07 (described on Site Profile dated 2022-05-07)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-06-02 (described on Site Profile dated 2018-06-02)", + "uuid": "c0215ff3-ff8d-4853-8c6b-22d5b00984a6", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2018-07-29 (described on Site Profile dated 2018-07-29)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { + "uuid": "e6a0cc4b-9e82-49ee-883b-fc48cc4084c9", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-12-22 (described on Site Profile dated 2021-12-22)", + "notes": "INSERTED FOR SITE PROFILE DATED 2018-02-11 (described on Site Profile dated 2018-02-11)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" - }, + } + ], + "parcelDescriptions": [ { + "uuid": "71f4d325-ac74-436b-9277-5a0535a32d1d", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-09-26 (described on Site Profile dated 2017-09-26)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "dateNoted": "2015-03-15", + "parcelID": "20801", + "crownLandUsePIN": "19212", + "crownLandFileNumber": "20826", + "landDescription": "LOT 3 OF LOT 3 BLOCK 2 DISTRICT LOT 1 PLAN 8325" }, { + "uuid": "d8787d79-8e10-4dd7-9d76-64786b09a5e8", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-12-29 (described on Site Profile dated 2022-12-29)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" - } - ], - "parcelDescriptions": [ + "dateNoted": "2018-02-25", + "parcelID": "18211", + "crownLandUsePIN": "15905", + "crownLandFileNumber": "17299", + "landDescription": "LOT 5 OF LOT 4 BLOCK 2 DISTRICT LOT 1 PLAN 4575" + }, { + "uuid": "918091fe-8d22-4caa-9ef1-33531ce4e5e2", + "siteRegistry": true, + "dateNoted": "2015-07-16", + "parcelID": "20832", + "crownLandUsePIN": "15935", + "crownLandFileNumber": "17245", + "landDescription": "LOT 2 OF LOT 4 BLOCK 3 DISTRICT LOT 2 PLAN 4029" + }, + { + "uuid": "9bb276eb-ec5b-402b-8ec6-9e1b64977d3f", "siteRegistry": false, - "dateNoted": "2021-03-04", - "parcelID": "20651", - "crownLandUsePIN": "16327", - "crownLandFileNumber": "20267", - "landDescription": "LOT 3 OF LOT 4 BLOCK 4 DISTRICT LOT 4 PLAN 3888" + "dateNoted": "2021-07-12", + "parcelID": "15251", + "crownLandUsePIN": "16751", + "crownLandFileNumber": "17607", + "landDescription": "LOT 2 OF LOT 1 BLOCK 3 DISTRICT LOT 2 PLAN 9352" }, { + "uuid": "f1d8aa08-968d-48d9-8a10-99dc944ebbe2", "siteRegistry": true, - "dateNoted": "2014-06-28", - "parcelID": "16850", - "crownLandUsePIN": "17922", - "crownLandFileNumber": "19979", - "landDescription": "LOT 1 OF LOT 1 BLOCK 3 DISTRICT LOT 1 PLAN 4540" + "dateNoted": "2016-05-24", + "parcelID": "16911", + "crownLandUsePIN": "18344", + "crownLandFileNumber": "15398", + "landDescription": "LOT 5 OF LOT 1 BLOCK 4 DISTRICT LOT 2 PLAN 3550" } ], "siteDisclosures": [ { - "siteRegistry": false, - "dateReceived": "2021-09-22", - "dateCompleted": "2020-08-19", - "dateEntered": "2021-12-30", - "dateRegistrar": "2015-07-17", - "dateLocalAuthorityReceived": "2018-02-07", - "summary": "Dolor exercitationem molestias itaque.\nQui corporis beatae dolores labore enim ab natus cum.\nMinus possimus ea.", - "informationUsed": "Dignissimos consectetur eaque cum.\nIn voluptatem laborum quae beatae quia minima.\nSit veniam autem beatae placeat cum fuga sapiente provident ea.\nQuidem rem sint et harum.\nOccaecati officia rerum velit ipsa.", - "pastOrPresentOrders": "Laboriosam autem iusto.\nVoluptatibus placeat dolorem mollitia.\nEsse pariatur officia dolorem itaque alias harum.", + "uuid": "fca5ecfb-88e7-422d-a37d-74c58d8002cf", + "siteRegistry": true, + "dateReceived": "2021-07-31", + "dateCompleted": "2019-06-11", + "dateEntered": "2020-03-08", + "dateRegistrar": "2021-02-10", + "dateLocalAuthorityReceived": "2019-07-27", + "summary": "Praesentium consequuntur amet debitis commodi non.", + "informationUsed": "Eius sit inventore libero quaerat.\nExpedita fugiat consequuntur harum unde cupiditate dicta quasi.\nMinus in non porro id aperiam aut itaque labore repudiandae.", + "pastOrPresentOrders": "At minima molestias officiis nemo vero pariatur.\nAssumenda ad excepturi cupiditate a corporis architecto.\nEx voluptas minima reiciendis quod minima rerum.", "commercialAndIndustrialPurposes": [ { - "scheduleReference": "F1*", + "uuid": "d756fa71-f4cc-47c4-bf95-5ec9d5105855", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false + "siteRegistry": true + }, + { + "uuid": "d893dc3d-e055-4956-a964-9ea56f06b824", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true }, { + "uuid": "337ca4c1-722b-4a11-a5e8-6b2ace6cce00", "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "uuid": "4856b032-0363-4b9d-a0ae-e66eb2ab86ee", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false } ] + }, + { + "uuid": "90c6290a-2b8c-4378-9f78-7d283e5b7a4e", + "siteRegistry": false, + "dateReceived": "2015-06-02", + "dateCompleted": "2022-09-17", + "dateEntered": "2014-12-20", + "dateRegistrar": "2021-05-26", + "dateLocalAuthorityReceived": "2019-03-25", + "summary": "Dolorem earum repellat.\nVoluptatibus asperiores architecto molestiae vel eos odio architecto fugit.", + "informationUsed": "Facere odit cum officia minima rerum.\nQuasi eaque illum asperiores fugit quasi aspernatur sapiente quae ipsum.\nAspernatur magni voluptatibus facere.\nAsperiores totam quos nisi sapiente ullam veritatis ab repudiandae numquam.", + "pastOrPresentOrders": "Libero maiores magnam blanditiis et aspernatur temporibus doloribus.\nDelectus quidem exercitationem numquam ex debitis ducimus.\nReprehenderit quaerat cum nulla provident dolorem iste molestiae harum.", + "commercialAndIndustrialPurposes": [ + { + "uuid": "eb0ea5e2-d1b9-4544-a5a8-20778239f805", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "uuid": "31e2dfab-81cc-4e73-a80d-2ee991fb7ec3", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + } + ] } ], "activityLog": [ { + "uuid": "992a338a-2d49-415a-9c67-dbd4a2c20434", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "HICKLE BERNARD", - "timestamp": "2018-11-28" - }, - { - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "UPTON CULLEN", - "timestamp": "2018-08-27" + "user": "ROBEL JUVENAL", + "timestamp": "2015-02-04" }, { + "uuid": "35a99af2-3922-4623-b74c-d5417a134026", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "TILLMAN REGAN", - "timestamp": "2022-03-17" + "user": "MARKS JAYDA", + "timestamp": "2021-01-06" }, { + "uuid": "5d0c2a17-934a-4af2-9288-8b9b87f2e282", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "HARTMANN RUBIE", - "timestamp": "2023-06-13" + "user": "LEFFLER STEPHON", + "timestamp": "2017-11-30" }, { + "uuid": "553afd3a-e83b-4c08-94b3-ede62e75f711", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "LIND PROVIDENCI", - "timestamp": "2014-01-10" + "user": "GULGOWSKI SYLVIA", + "timestamp": "2016-05-23" }, { - "siteRegistry": false, + "uuid": "2aea1833-349e-4c17-8192-e2766bc474fe", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "MOEN MODESTA", - "timestamp": "2016-05-10" + "user": "FRANEY ELIZABETH", + "timestamp": "2014-02-07" }, { - "siteRegistry": false, + "uuid": "5cc638e2-2cc4-4e3a-96b3-ef47621b38ff", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "HARBER MARLEE", - "timestamp": "2013-10-16" + "user": "BARTELL VERDIE", + "timestamp": "2019-05-27" }, { + "uuid": "b2a2a1ab-78b2-4824-87d3-cd1cd57b7a03", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "CREMIN DINA", - "timestamp": "2020-07-23" + "user": "BOYER ADONIS", + "timestamp": "2019-02-19" }, { + "uuid": "e4ed5049-4068-428b-9845-389b7554d5a7", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "SAWAYN CORTEZ", - "timestamp": "2014-01-26" + "user": "CHAMPLIN GREYSON", + "timestamp": "2014-08-06" } ], "associatedSites": [ { - "dateNoted": "2019-06-21", + "uuid": "47a7f416-d381-4986-9d35-2799f4cf6dee", + "dateNoted": "2023-10-08", "notes": "", - "parcelID": "15756", - "siteID": "17116", - "siteRegistry": true + "parcelID": "15604", + "siteID": "18505", + "siteRegistry": false }, { - "dateNoted": "2017-04-02", + "uuid": "75dc39da-3811-4607-a01a-d40f6b5c912f", + "dateNoted": "2020-10-09", "notes": "", - "parcelID": "18418", - "siteID": "16677", + "parcelID": "15633", + "siteID": "20778", "siteRegistry": false } ] }, { - "uuid": "47ebf018-f7ea-4b93-b7f9-54d97ed4a4f7", - "siteID": 20492, - "address": "86556 Flatley Streets", - "latitude": 49.5598, - "longitude": -120.6401, - "lastUpdated": "2018-10-31", - "city": "Justonfurt", - "region": "Mainland/Southwest", - "victoriaFile": "26250-20/5353", + "uuid": "20b1c5c0-de24-4355-82b6-0125f0fe10a4", + "siteID": 15893, + "address": "1930 Hertha Causeway", + "latitude": 49.6302, + "longitude": -134.863, + "lastUpdated": "2019-04-15", + "city": "Noeliaworth", + "region": "Vancouver Island/Coast", + "victoriaFile": "26250-20/897", "regionalFile": "N/A", "parcelIDs": [ - 9809985, - 1191671, - 9468300, - 8347608, - 100240 + 8404665, + 5922416, + 3574582, + 2408990, + 5856124 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2022-06-09", - "completed": "2023-09-05", - "initiated": "2022-04-29", - "ministryContact": "BEAHAN EDYTHE", + "uuid": "78f1e3c1-09fd-49ef-86b0-07020f7d93c4", + "createdAt": "2015-12-13", + "completed": "2020-07-09", + "initiated": "2017-02-14", + "ministryContact": "ROLFSON ILIANA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -3446,63 +4029,38 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { + "uuid": "6326064c-0c83-4070-8727-7f22c08643e2", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true + "role": "REQUESTED BY", + "siteRegistry": false }, { + "uuid": "22f014fc-a5ae-4758-be53-bc6ba5f5b710", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true - } - ], - "siteRegistry": true - }, - { - "createdAt": "2016-08-27", - "completed": "2017-09-01", - "initiated": "2022-10-15", - "ministryContact": "VOLKMAN AUGUSTA", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { + "uuid": "d7bcfad0-778f-4b09-b7d6-29287fa51483", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { + "uuid": "29f46c9a-b4ae-466d-8212-a9d19bf22140", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true } ], "siteRegistry": true }, { - "createdAt": "2021-09-04", - "completed": "2014-02-19", - "initiated": "2022-09-18", - "ministryContact": "BARTELL MALCOLM", + "uuid": "9f895aa7-87da-4c90-8e3f-59eb48fd1650", + "createdAt": "2014-02-07", + "completed": "2019-06-22", + "initiated": "2018-03-08", + "ministryContact": "GERHOLD FELICIA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -3511,42 +4069,32 @@ ], "notationParticipants": [ { + "uuid": "81b0225e-6b55-4d7a-afc8-26d849305728", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "uuid": "68c3cd21-ec82-4711-a44e-fbed158f2c4a", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false }, { + "uuid": "4864388c-20ec-4643-9d32-c8a8d1018545", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { + "uuid": "097f30f6-9c98-4182-8207-8f4e9d8f7fb4", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false - } - ], - "siteRegistry": false - }, - { - "createdAt": "2019-01-20", - "completed": "2017-11-05", - "initiated": "2015-12-29", - "ministryContact": "BRUEN ELWIN", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "17d4b6de-f23a-456d-bb1b-b36154bb6499", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true } @@ -3556,29 +4104,21 @@ ], "participants": [ { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2016-05-07", - "startDate": "2019-10-28", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2023-04-24", - "startDate": "2018-08-31", + "uuid": "39bfc8b5-cd15-4e7e-958a-651646f6e35c", + "name": "AMET, DOLOR SIT", + "endDate": "2015-09-21", + "startDate": "2017-03-07", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": false }, { - "name": "AMET, DOLOR SIT", - "endDate": "2014-12-11", - "startDate": "2016-12-07", + "uuid": "5635dffb-0ea8-45d7-ae61-a9ba56475c7b", + "name": "IPSUM", + "endDate": "2015-07-04", + "startDate": "2020-01-08", "notes": "", "roles": [ "EMPLOYEE" @@ -3586,200 +4126,248 @@ "siteRegistry": false }, { + "uuid": "4eb4cd5e-aa3c-4fec-b2c5-b5ac9ba5b7a0", "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2022-07-06", - "startDate": "2018-08-30", + "endDate": "2014-09-10", + "startDate": "2021-12-30", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], - "siteRegistry": true + "siteRegistry": false }, { + "uuid": "1edf9f19-9180-4498-8d8d-275e88c33263", "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2023-08-06", - "startDate": "2023-05-15", + "endDate": "2020-05-24", + "startDate": "2017-01-24", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true } ], "suspectLandUses": [ { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-09-29 (described on Site Profile dated 2014-09-29)", + "uuid": "14b1c54b-b15e-4deb-80a3-b18f7f238680", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2017-08-22 (described on Site Profile dated 2017-08-22)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { + "uuid": "6d0f2750-e1bd-4147-85d0-b4ecf50e32d6", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2015-04-05 (described on Site Profile dated 2015-04-05)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + } + ], + "parcelDescriptions": [ + { + "uuid": "bb290ef3-96bf-4782-97ed-375ba060e4b5", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-12-24 (described on Site Profile dated 2018-12-24)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "dateNoted": "2016-07-03", + "parcelID": "18097", + "crownLandUsePIN": "19490", + "crownLandFileNumber": "20206", + "landDescription": "LOT 2 OF LOT 3 BLOCK 3 DISTRICT LOT 1 PLAN 7479" }, { + "uuid": "e0577367-f756-46fe-8490-b89648cf1f4f", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-09-11 (described on Site Profile dated 2019-09-11)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" - } - ], - "parcelDescriptions": [ + "dateNoted": "2020-02-19", + "parcelID": "19416", + "crownLandUsePIN": "15214", + "crownLandFileNumber": "18551", + "landDescription": "LOT 4 OF LOT 1 BLOCK 5 DISTRICT LOT 2 PLAN 8739" + }, { + "uuid": "566d714b-16b9-45e8-bf05-14ad5dee09c1", "siteRegistry": false, - "dateNoted": "2023-03-20", - "parcelID": "18811", - "crownLandUsePIN": "15717", - "crownLandFileNumber": "18582", - "landDescription": "LOT 1 OF LOT 2 BLOCK 5 DISTRICT LOT 4 PLAN 5168" + "dateNoted": "2017-10-10", + "parcelID": "18013", + "crownLandUsePIN": "16885", + "crownLandFileNumber": "16186", + "landDescription": "LOT 1 OF LOT 1 BLOCK 4 DISTRICT LOT 1 PLAN 8092" }, { - "siteRegistry": false, - "dateNoted": "2015-01-10", - "parcelID": "19107", - "crownLandUsePIN": "20351", - "crownLandFileNumber": "20567", - "landDescription": "LOT 1 OF LOT 2 BLOCK 2 DISTRICT LOT 1 PLAN 4176" + "uuid": "6a78e780-aaa4-49cf-ba00-9541e27191aa", + "siteRegistry": true, + "dateNoted": "2023-09-06", + "parcelID": "20237", + "crownLandUsePIN": "16665", + "crownLandFileNumber": "19694", + "landDescription": "LOT 4 OF LOT 5 BLOCK 1 DISTRICT LOT 4 PLAN 5387" + }, + { + "uuid": "adc73da3-08f3-4c77-bdbd-d38db56ff99f", + "siteRegistry": true, + "dateNoted": "2021-07-13", + "parcelID": "20220", + "crownLandUsePIN": "20844", + "crownLandFileNumber": "18205", + "landDescription": "LOT 4 OF LOT 3 BLOCK 3 DISTRICT LOT 4 PLAN 5764" } ], "siteDisclosures": [ { + "uuid": "0d8f791d-2926-4d81-a637-8befd426a237", "siteRegistry": false, - "dateReceived": "2014-08-20", - "dateCompleted": "2017-05-13", - "dateEntered": "2014-12-29", - "dateRegistrar": "2016-05-12", - "dateLocalAuthorityReceived": "2021-12-13", - "summary": "Alias mollitia consectetur soluta debitis qui fugit.\nVeniam tempore quidem.", - "informationUsed": "Explicabo hic doloribus adipisci.\nCorrupti dicta natus aliquid.\nInventore atque eveniet omnis dicta fuga veniam quibusdam quidem.\nOmnis maiores aliquid quibusdam.", - "pastOrPresentOrders": "Facilis consequuntur error veritatis deleniti ipsam illo possimus natus.\nSint sit voluptas porro quam ullam ratione.\nAperiam sapiente voluptas hic at commodi perspiciatis quasi molestiae.", + "dateReceived": "2017-08-05", + "dateCompleted": "2023-08-26", + "dateEntered": "2018-10-28", + "dateRegistrar": "2018-12-02", + "dateLocalAuthorityReceived": "2013-11-30", + "summary": "Velit ipsa vitae perspiciatis aspernatur laboriosam earum.\nDebitis ratione odit repudiandae eaque earum eum.", + "informationUsed": "Recusandae explicabo assumenda nesciunt unde iusto culpa natus dicta beatae.\nAnimi ducimus beatae aut.\nVitae voluptatem adipisci quasi earum illo.\nAlias officiis dolores velit totam unde veniam qui magnam fugiat.\nOdit fugit suscipit architecto id nesciunt.", + "pastOrPresentOrders": "Non nisi debitis fugit omnis blanditiis repellat optio vel.\nRepudiandae dolor repellendus labore et velit suscipit aperiam.\nQuasi sapiente iure quo rerum fuga.", "commercialAndIndustrialPurposes": [ { + "uuid": "2385ec04-a95d-4f44-923a-abd83b4f75d4", "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false }, { - "scheduleReference": "F2*", + "uuid": "2a412ae6-1646-4a9f-880a-de61585b9f17", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { + "uuid": "5440a9f8-c2d9-4f72-9e52-2164d8274587", "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true - }, - { - "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true } ] - }, - { - "siteRegistry": true, - "dateReceived": "2022-06-12", - "dateCompleted": "2021-05-11", - "dateEntered": "2023-04-03", - "dateRegistrar": "2017-03-11", - "dateLocalAuthorityReceived": "2022-02-17", - "summary": "Ullam impedit alias cum numquam autem in eveniet deserunt.\nQuidem perferendis aspernatur ab.", - "informationUsed": "Explicabo laudantium inventore quisquam ab.\nIllo ducimus eligendi mollitia.\nVoluptates occaecati suscipit laborum.\nDebitis omnis amet libero architecto.\nAccusantium quidem consequatur eos repellendus.", - "pastOrPresentOrders": "Distinctio non iusto earum animi neque.\nRepellendus numquam doloribus magnam aliquam iure minima saepe.\nRepellendus ea dolor maxime architecto quod reiciendis maxime ab eius.", - "commercialAndIndustrialPurposes": [ - { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false - }, - { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false - } - ] } ], "activityLog": [ { + "uuid": "ccce94bd-9508-43d9-a00a-50268d0a484f", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "SHANAHAN LEON", - "timestamp": "2019-11-22" + "user": "TOWNE JOSEFINA", + "timestamp": "2021-07-30" + }, + { + "uuid": "11cae752-79c7-4f98-829b-9935cbb78ceb", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "ANKUNDING CARLI", + "timestamp": "2021-07-05" + }, + { + "uuid": "db0e3295-5103-40aa-8299-ad7ae0694f03", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "SCHADEN ROZELLA", + "timestamp": "2018-01-20" }, { + "uuid": "f9a88f52-9574-485a-aaca-f8c5f11af066", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "WATSICA HARMON", - "timestamp": "2015-11-10" + "user": "WALKER MARIAM", + "timestamp": "2020-12-13" }, { + "uuid": "c820fd13-d727-41e0-9a03-1a33b071cd68", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "VANDERVORT KURT", - "timestamp": "2018-03-05" + "user": "KLOCKO ELVIS", + "timestamp": "2017-02-07" + }, + { + "uuid": "413f56ed-55ea-450f-84f3-e7f0532c83c2", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "REICHEL AUTUMN", + "timestamp": "2018-05-23" }, { + "uuid": "bb701631-59aa-46e0-894f-794c709288a8", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "BALISTRERI SOLON", - "timestamp": "2016-03-12" + "user": "GOLDNER HUNTER", + "timestamp": "2017-09-18" + }, + { + "uuid": "030d45a2-446c-484c-8c5b-b31c5203a034", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "BRUEN KAILYN", + "timestamp": "2015-11-05" + }, + { + "uuid": "d221e6db-f5ee-40f7-86b1-acf051986aec", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "LAKIN BARBARA", + "timestamp": "2014-05-14" }, { + "uuid": "2e76d673-4f0d-4342-810b-17e116be56de", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "DECKOW ADELLE", - "timestamp": "2021-12-07" + "user": "SPENCER JANAE", + "timestamp": "2018-04-22" } ], "associatedSites": [ { - "dateNoted": "2017-05-06", + "uuid": "ffde2ee7-fd46-4f06-bfa2-a568b2c29146", + "dateNoted": "2016-04-22", "notes": "", - "parcelID": "20540", - "siteID": "17329", - "siteRegistry": true + "parcelID": "17268", + "siteID": "16267", + "siteRegistry": false }, { - "dateNoted": "2021-12-16", + "uuid": "abed7dd7-f1c3-456c-84aa-12ce23053ed1", + "dateNoted": "2022-09-20", "notes": "", - "parcelID": "17326", - "siteID": "18040", + "parcelID": "18575", + "siteID": "17604", "siteRegistry": false }, { - "dateNoted": "2019-03-06", + "uuid": "f73b47e0-6f42-44c1-a003-0495bff5bbe5", + "dateNoted": "2020-08-13", "notes": "", - "parcelID": "17402", - "siteID": "15827", - "siteRegistry": false + "parcelID": "20677", + "siteID": "18583", + "siteRegistry": true } ] }, { - "uuid": "2916b8cf-549d-466e-a287-e161294ea9ee", - "siteID": 18587, - "address": "8318 Little Skyway", - "latitude": 48.0296, - "longitude": -123.8794, - "lastUpdated": "2021-10-11", - "city": "Kissimmee", - "region": "Vancouver Island/Coast", - "victoriaFile": "26250-20/7795", + "uuid": "a4f5c0a4-fb65-4742-9672-b6ee2c64e613", + "siteID": 16254, + "address": "43578 Carol Haven", + "latitude": 54.5667, + "longitude": -134.9603, + "lastUpdated": "2016-09-24", + "city": "Rossiechester", + "region": "Cariboo", + "victoriaFile": "26250-20/19256", "regionalFile": "N/A", "parcelIDs": [ - 7384066, - 4913093, - 1304772, - 8812826, - 2248518 + 3085116, + 2392081, + 565645, + 4874849, + 9538670 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2017-12-29", - "completed": "2018-08-12", - "initiated": "2019-11-15", - "ministryContact": "WARD GONZALO", + "uuid": "f1e640f9-529f-400f-b9ff-b2af80b8d65b", + "createdAt": "2020-07-20", + "completed": "2019-12-17", + "initiated": "2015-10-22", + "ministryContact": "BERGSTROM SHERWOOD", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -3788,38 +4376,124 @@ ], "notationParticipants": [ { + "uuid": "e5ed60c3-373c-43f1-9e35-b80d1e9e39bd", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "be706723-9d87-45f6-8e0b-68eceef43979", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "72e6de88-5045-4ca2-87de-97843e159eeb", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { + "uuid": "57c00d8a-2e90-487e-b173-4d2246978aa7", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true }, { + "uuid": "4b5021ae-f030-47e9-9734-4523ee8ef239", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "uuid": "726abef8-f833-457b-b223-7c9cff34ad4f", + "createdAt": "2014-09-06", + "completed": "2017-12-08", + "initiated": "2013-11-06", + "ministryContact": "CARTWRIGHT KATHERYN", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "uuid": "d5300165-78b1-4cd9-b974-cf3a634d9c7a", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true }, { + "uuid": "41d35aa3-f8d7-4bb1-8df5-467ae40340d2", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "uuid": "7d645209-f561-424d-a68d-3f08aae9977d", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false }, { + "uuid": "5ebd8842-3bd4-4ea3-a1aa-3d5294104b8c", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "uuid": "ae4e93d1-a507-4de4-9d36-7ee027a7484f", + "createdAt": "2018-01-06", + "completed": "2020-05-21", + "initiated": "2021-06-19", + "ministryContact": "TURCOTTE ETHA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "uuid": "558534a1-3fb7-4300-9601-d5f801439fe5", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "ee65afda-b04e-4fdf-9c4a-7ea8f5480cf7", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "uuid": "5023e23d-c629-4493-bb2f-d7d356c7d385", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true + }, + { + "uuid": "71449a20-4a2e-4a23-8924-39552ffa7022", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2014-05-01", - "completed": "2021-11-30", - "initiated": "2016-06-11", - "ministryContact": "VONRUEDEN CAROL", + "uuid": "05af866b-5db3-4fab-9d57-4562602ddc84", + "createdAt": "2018-02-13", + "completed": "2016-03-03", + "initiated": "2022-03-18", + "ministryContact": "REICHERT ALLENE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -3828,29 +4502,91 @@ ], "notationParticipants": [ { + "uuid": "0c37e930-84ef-47a5-b319-1bae8523877f", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "64c43c70-c6c0-4361-b80b-a5746fcdeef9", "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "e82d037c-3b09-42bf-a45a-3ac44972b87a", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "uuid": "4899a9a2-58d6-4b7c-8709-114fcbdc723e", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": true }, { + "uuid": "5fd2bd48-8fff-4ce7-94e3-db2190f9864f", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "uuid": "dd1ddfcd-98cc-4506-87a2-d03724b33587", + "createdAt": "2019-02-18", + "completed": "2019-07-17", + "initiated": "2021-09-10", + "ministryContact": "MOORE NANNIE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "uuid": "1c6f9ede-fcc3-4fc7-b8b9-5d11d7755172", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true }, { + "uuid": "811bbfb9-9d66-467e-b5f4-d0cabadf3b0e", "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "bcb97fa7-5075-43b7-8b95-c5681d3e164e", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true + }, + { + "uuid": "42df2830-9541-4cc3-bcb5-08dd8d8f4ca5", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "1f89712d-c072-45db-8fd0-47b9d779b7d0", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true } ], "participants": [ { + "uuid": "88b886e3-0be4-4bb2-b9bc-a8a1cd62d7ff", "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2015-03-03", - "startDate": "2023-07-06", + "endDate": "2022-08-03", + "startDate": "2017-03-25", "notes": "", "roles": [ "ORGANIZATION" @@ -3858,89 +4594,140 @@ "siteRegistry": true }, { - "name": "AMET, DOLOR SIT", - "endDate": "2018-01-29", - "startDate": "2017-11-05", + "uuid": "0b823aab-d713-4bf3-9386-e2fc1b34feb9", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2016-02-14", + "startDate": "2014-06-26", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "uuid": "ac9b7190-4295-4607-816e-6e6bb2a99fc1", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2022-03-12", + "startDate": "2015-08-25", "notes": "", "roles": [ "ORGANIZATION" ], "siteRegistry": false + }, + { + "uuid": "ece0df5c-62c9-4102-90b4-a6510166fe45", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2017-01-02", + "startDate": "2022-08-09", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "uuid": "ccc5c3a2-337b-4131-a54d-8bfedd70874b", + "name": "IPSUM", + "endDate": "2019-08-19", + "startDate": "2013-11-12", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true } ], "suspectLandUses": [ { + "uuid": "c3b8930f-5aae-422a-b018-207485a6547e", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-10-15 (described on Site Profile dated 2014-10-15)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "notes": "INSERTED FOR SITE PROFILE DATED 2022-03-29 (described on Site Profile dated 2022-03-29)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { + "uuid": "8a60e037-101e-4af6-9b9e-2661cf0cfa48", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2023-09-04 (described on Site Profile dated 2023-09-04)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "notes": "INSERTED FOR SITE PROFILE DATED 2017-03-30 (described on Site Profile dated 2017-03-30)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-12-29 (described on Site Profile dated 2017-12-29)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "uuid": "d9053690-375f-4f04-ac13-afa4effd9b09", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2014-10-09 (described on Site Profile dated 2014-10-09)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { + "uuid": "bae9562c-f52a-463a-b338-3b323dd015eb", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-05-14 (described on Site Profile dated 2018-05-14)", + "notes": "INSERTED FOR SITE PROFILE DATED 2023-08-14 (described on Site Profile dated 2023-08-14)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" - }, - { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-07-30 (described on Site Profile dated 2022-07-30)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], "parcelDescriptions": [ { - "siteRegistry": true, - "dateNoted": "2022-09-30", - "parcelID": "16882", - "crownLandUsePIN": "20501", - "crownLandFileNumber": "20706", - "landDescription": "LOT 3 OF LOT 4 BLOCK 4 DISTRICT LOT 1 PLAN 2948" + "uuid": "8b379971-ac46-452f-ac85-9b7a4b78433b", + "siteRegistry": false, + "dateNoted": "2020-08-15", + "parcelID": "20626", + "crownLandUsePIN": "19769", + "crownLandFileNumber": "16202", + "landDescription": "LOT 2 OF LOT 3 BLOCK 2 DISTRICT LOT 2 PLAN 7091" }, { + "uuid": "5c542335-4b2e-44ab-ae24-a5c8f247d6de", "siteRegistry": false, - "dateNoted": "2019-06-27", - "parcelID": "18410", - "crownLandUsePIN": "16498", - "crownLandFileNumber": "16868", - "landDescription": "LOT 2 OF LOT 2 BLOCK 4 DISTRICT LOT 4 PLAN 3865" + "dateNoted": "2021-09-18", + "parcelID": "17832", + "crownLandUsePIN": "16046", + "crownLandFileNumber": "19756", + "landDescription": "LOT 2 OF LOT 5 BLOCK 1 DISTRICT LOT 2 PLAN 4032" }, { - "siteRegistry": true, - "dateNoted": "2021-04-04", - "parcelID": "15360", - "crownLandUsePIN": "20368", - "crownLandFileNumber": "18797", - "landDescription": "LOT 2 OF LOT 3 BLOCK 1 DISTRICT LOT 5 PLAN 3575" + "uuid": "44f37590-72fd-4ce9-9a1f-e36516f13045", + "siteRegistry": false, + "dateNoted": "2016-06-05", + "parcelID": "18182", + "crownLandUsePIN": "17518", + "crownLandFileNumber": "16907", + "landDescription": "LOT 2 OF LOT 2 BLOCK 5 DISTRICT LOT 2 PLAN 5382" } ], "siteDisclosures": [ { + "uuid": "1f949310-4623-4a68-9397-680fe8316bd3", "siteRegistry": false, - "dateReceived": "2018-06-12", - "dateCompleted": "2019-10-30", - "dateEntered": "2018-12-16", - "dateRegistrar": "2015-11-16", - "dateLocalAuthorityReceived": "2021-05-25", - "summary": "Porro minus laborum corporis ducimus cum eveniet harum sed est.", - "informationUsed": "Dolore sint fuga eum at.\nAsperiores ipsa ex accusantium dolores quis quia quod rerum architecto.\nNemo id earum.\nAliquid quos optio laboriosam quisquam quibusdam aliquam.", - "pastOrPresentOrders": "Explicabo reprehenderit incidunt dignissimos illum tempora deserunt.", + "dateReceived": "2016-09-16", + "dateCompleted": "2021-01-21", + "dateEntered": "2022-06-30", + "dateRegistrar": "2019-12-04", + "dateLocalAuthorityReceived": "2017-12-25", + "summary": "Laboriosam exercitationem necessitatibus deleniti amet.\nAspernatur voluptatum veniam voluptas dolorem et deserunt officiis nostrum error.\nAut veritatis ducimus atque architecto libero suscipit beatae voluptatibus dignissimos.", + "informationUsed": "Blanditiis ipsa tempore eos explicabo dolorum.\nMaxime deleniti enim libero quaerat odio.\nEius qui rerum.", + "pastOrPresentOrders": "Error accusamus impedit accusamus aliquid.\nIllum consequuntur sunt natus debitis eum alias rerum.", "commercialAndIndustrialPurposes": [ { + "uuid": "3318a971-4799-45e4-8fa7-774fdaa77efb", "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "uuid": "01a7eec9-eaf9-497c-b370-fb29d6d9eb83", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { - "scheduleReference": "F1*", + "uuid": "8447615e-d9d4-42e0-a160-b2bdb2b4fc8a", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "uuid": "61f340db-996a-4a0c-b78a-bbda7bb4f080", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false } ] @@ -3948,101 +4735,113 @@ ], "activityLog": [ { + "uuid": "4df8707f-2a41-40ec-a3de-cb245ad97867", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "PROHASKA ARIELLE", - "timestamp": "2015-05-08" + "user": "PURDY MAC", + "timestamp": "2018-11-28" }, { + "uuid": "a9cbad3d-3756-4df6-91f0-47424246053c", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "COLLINS GARDNER", - "timestamp": "2016-10-04" + "user": "CHAMPLIN TRYSTAN", + "timestamp": "2016-12-02" }, { - "siteRegistry": true, + "uuid": "41824a20-bd5c-4fd9-b2e5-35cfa40a482d", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "SATTERFIELD TIA", - "timestamp": "2021-11-23" + "user": "SMITHAM MYRA", + "timestamp": "2021-02-18" }, { - "siteRegistry": false, + "uuid": "abd5fdfe-49d6-4ab9-a96f-96526a73b468", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "HAHN MAUDIE", - "timestamp": "2014-04-09" + "user": "RUSSEL PAULA", + "timestamp": "2018-01-29" }, { - "siteRegistry": false, + "uuid": "dbdaa567-459c-4e55-b569-138ce56ea116", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "O'HARA COLUMBUS", - "timestamp": "2016-02-05" + "user": "DAVIS VINCE", + "timestamp": "2019-07-31" }, { - "siteRegistry": true, + "uuid": "49856bf9-5d66-4589-87db-f8038d5ac8c1", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "MULLER SHELDON", - "timestamp": "2022-09-15" + "user": "KULAS-MANN ROBERTO", + "timestamp": "2017-07-06" }, { + "uuid": "3c81002c-e601-41a1-8cf3-c9bfd8fe2a60", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "HAND REECE", - "timestamp": "2021-05-05" + "user": "SIMONIS JOHNNIE", + "timestamp": "2015-07-02" }, { - "siteRegistry": true, + "uuid": "850421d0-6fa4-4e70-9804-2bf731736882", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "HAAG VALENTINA", - "timestamp": "2020-06-11" + "user": "DAUGHERTY MARGOT", + "timestamp": "2022-03-23" }, { - "siteRegistry": false, + "uuid": "535cf9c3-26d5-4133-8af0-79501edbf75d", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "ANKUNDING JAZMIN", - "timestamp": "2018-12-24" + "user": "HOMENICK BONNIE", + "timestamp": "2021-04-13" }, { + "uuid": "b776f9d1-678a-4924-9f67-5000f22eba03", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "MAYER LULA", - "timestamp": "2015-09-01" + "user": "DIBBERT NICOLE", + "timestamp": "2019-08-14" } ], "associatedSites": [ { - "dateNoted": "2017-02-08", + "uuid": "8ebce77d-b48c-497e-a30c-3b96bc36470d", + "dateNoted": "2023-08-29", "notes": "", - "parcelID": "17163", - "siteID": "15477", - "siteRegistry": false + "parcelID": "19441", + "siteID": "15573", + "siteRegistry": true } ] }, { - "uuid": "06e98bd1-1ff9-4e47-90bf-0e412a8270fc", - "siteID": 18309, - "address": "56873 Leopoldo Streets", - "latitude": 54.1129, - "longitude": -134.4448, - "lastUpdated": "2022-12-10", - "city": "St. Charles", - "region": "Cariboo", - "victoriaFile": "26250-20/16331", + "uuid": "fa2e395c-5042-4f10-827e-c4f3a872b25b", + "siteID": 20013, + "address": "9323 Kunde Curve", + "latitude": 58.4599, + "longitude": -129.4425, + "lastUpdated": "2021-04-09", + "city": "Port Haley", + "region": "Thompson-Okanagan", + "victoriaFile": "26250-20/11224", "regionalFile": "N/A", "parcelIDs": [ - 3617716, - 4325850, - 7644963, - 6535123, - 5407131 + 7865143, + 3085164, + 4017234, + 3979700, + 3547831 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2016-01-24", - "completed": "2021-01-29", - "initiated": "2014-04-21", - "ministryContact": "SCHOEN KEON", + "uuid": "d76772a8-f8b9-46a7-8f3b-dca048a0f760", + "createdAt": "2022-10-13", + "completed": "2021-02-22", + "initiated": "2016-05-30", + "ministryContact": "GOYETTE ALBERTHA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -4051,53 +4850,44 @@ ], "notationParticipants": [ { + "uuid": "d003d23e-47dd-4b4b-a6a5-4dac12ad13fc", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true - } - ], - "siteRegistry": false - }, - { - "createdAt": "2022-02-09", - "completed": "2016-05-29", - "initiated": "2016-07-25", - "ministryContact": "RENNER-MUELLER ABBY", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ + }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "d74b0d24-b02d-4cb2-aa6a-7180595bb8b8", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false }, { + "uuid": "69092e9b-fd02-45b1-924b-763815d43997", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true + "role": "SUBMITTED BY", + "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "uuid": "7a2169f9-33ef-48fa-b720-aed434cb5249", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": false + }, + { + "uuid": "bf8e6481-2edc-41d2-b3fe-1b134bf69010", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true } ], "siteRegistry": false }, { - "createdAt": "2018-06-03", - "completed": "2018-03-20", - "initiated": "2018-11-14", - "ministryContact": "WATERS ERICA", + "uuid": "cf1f6f5c-93c9-42a4-869f-5ff38bf4e0b1", + "createdAt": "2021-06-07", + "completed": "2023-03-02", + "initiated": "2017-07-01", + "ministryContact": "WITTING CAYLA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -4106,48 +4896,33 @@ ], "notationParticipants": [ { + "uuid": "264b19e4-4ee9-401b-a212-a6e37b6c1b4f", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "uuid": "3007533d-1f12-4664-b7ab-4f96b83027ab", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", "siteRegistry": false }, { + "uuid": "b1c87f3b-29cf-4977-a3d0-265efad82100", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - } - ], - "siteRegistry": true - }, - { - "createdAt": "2019-04-26", - "completed": "2017-08-13", - "initiated": "2016-06-10", - "ministryContact": "MANTE ELVERA", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { + "uuid": "cc426a7e-4eb3-4ff1-ac18-51084221f86a", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true }, { + "uuid": "359e3a17-5fd2-4061-a549-b8ade7f8cad6", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false } ], @@ -4156,9 +4931,32 @@ ], "participants": [ { + "uuid": "d5a2c2eb-af52-443a-9e3e-684eaa2cd5e5", "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2015-09-08", - "startDate": "2023-05-26", + "endDate": "2017-06-03", + "startDate": "2020-08-15", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "uuid": "c2572ad7-dcab-4f73-a343-dd15210772ff", + "name": "IPSUM", + "endDate": "2022-10-07", + "startDate": "2014-10-19", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "uuid": "77289fe4-6a04-4cd7-ae99-306aab5e4236", + "name": "AMET, DOLOR SIT", + "endDate": "2020-04-23", + "startDate": "2016-04-16", "notes": "", "roles": [ "EMPLOYEE" @@ -4166,91 +4964,135 @@ "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2017-03-30", - "startDate": "2018-01-19", + "uuid": "0fb65bb5-6225-48a3-bce6-cab5bf391163", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2022-04-28", + "startDate": "2021-02-03", "notes": "", "roles": [ "ORGANIZATION" ], "siteRegistry": false + }, + { + "uuid": "59a28a4a-934a-436e-9baa-7343a2205875", + "name": "AMET, DOLOR SIT", + "endDate": "2017-03-15", + "startDate": "2014-01-09", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true } ], "suspectLandUses": [ { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-04-14 (described on Site Profile dated 2016-04-14)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "uuid": "339bae9e-d925-4841-acbd-c18cb56b7934", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2022-11-29 (described on Site Profile dated 2022-11-29)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-07-31 (described on Site Profile dated 2021-07-31)", + "uuid": "4d455184-874a-4ec8-b9a8-3fb8c83b1703", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2021-04-09 (described on Site Profile dated 2021-04-09)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-02-15 (described on Site Profile dated 2021-02-15)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "uuid": "5fd5f7e4-712b-4cd1-80c5-7033a3596c62", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2015-01-02 (described on Site Profile dated 2015-01-02)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-01-12 (described on Site Profile dated 2015-01-12)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "uuid": "b7c56147-159f-49a0-b1fd-c0b79b7cabca", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2023-05-25 (described on Site Profile dated 2023-05-25)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], "parcelDescriptions": [ { + "uuid": "893bfa31-1bd6-4f56-84fd-55832ce00d0f", "siteRegistry": true, - "dateNoted": "2015-05-23", - "parcelID": "19269", - "crownLandUsePIN": "18060", - "crownLandFileNumber": "16012", - "landDescription": "LOT 2 OF LOT 4 BLOCK 2 DISTRICT LOT 1 PLAN 9192" + "dateNoted": "2014-02-03", + "parcelID": "17833", + "crownLandUsePIN": "19121", + "crownLandFileNumber": "18539", + "landDescription": "LOT 2 OF LOT 1 BLOCK 3 DISTRICT LOT 2 PLAN 8959" }, { + "uuid": "2de7bf19-f1b4-4c17-b371-83c0e7dfb4cb", "siteRegistry": false, - "dateNoted": "2016-09-27", - "parcelID": "18110", - "crownLandUsePIN": "16930", - "crownLandFileNumber": "18932", - "landDescription": "LOT 5 OF LOT 5 BLOCK 3 DISTRICT LOT 2 PLAN 5103" + "dateNoted": "2018-02-27", + "parcelID": "20056", + "crownLandUsePIN": "18493", + "crownLandFileNumber": "19623", + "landDescription": "LOT 1 OF LOT 2 BLOCK 5 DISTRICT LOT 5 PLAN 4089" }, { + "uuid": "e32df7b1-4d21-40db-a107-1c5c7b2fb780", "siteRegistry": false, - "dateNoted": "2017-10-18", - "parcelID": "16076", - "crownLandUsePIN": "18422", - "crownLandFileNumber": "15295", - "landDescription": "LOT 5 OF LOT 1 BLOCK 2 DISTRICT LOT 1 PLAN 7370" + "dateNoted": "2014-01-02", + "parcelID": "20031", + "crownLandUsePIN": "18298", + "crownLandFileNumber": "15260", + "landDescription": "LOT 4 OF LOT 1 BLOCK 5 DISTRICT LOT 3 PLAN 7461" }, { + "uuid": "b19cd9a7-90a6-49d6-b161-707a78d1e1c0", + "siteRegistry": true, + "dateNoted": "2017-05-24", + "parcelID": "18927", + "crownLandUsePIN": "15219", + "crownLandFileNumber": "15610", + "landDescription": "LOT 1 OF LOT 1 BLOCK 4 DISTRICT LOT 5 PLAN 5804" + }, + { + "uuid": "d09afdd8-caaf-4e12-a77e-708049c1c019", "siteRegistry": false, - "dateNoted": "2015-01-03", - "parcelID": "20098", - "crownLandUsePIN": "18815", - "crownLandFileNumber": "15743", - "landDescription": "LOT 2 OF LOT 2 BLOCK 3 DISTRICT LOT 5 PLAN 5575" + "dateNoted": "2016-01-04", + "parcelID": "20048", + "crownLandUsePIN": "18467", + "crownLandFileNumber": "17802", + "landDescription": "LOT 1 OF LOT 2 BLOCK 2 DISTRICT LOT 4 PLAN 5488" } ], "siteDisclosures": [ { - "siteRegistry": true, - "dateReceived": "2015-09-01", - "dateCompleted": "2016-03-10", - "dateEntered": "2016-05-22", - "dateRegistrar": "2018-07-12", - "dateLocalAuthorityReceived": "2015-02-27", - "summary": "Nobis minima esse fugiat ducimus voluptas placeat.", - "informationUsed": "Et molestiae voluptatibus aliquam ex vel ipsam.\nRepellat rerum delectus maiores cum eius omnis.\nRepellat quasi repudiandae ducimus corporis tenetur.\nSapiente quod veniam totam non maxime.", - "pastOrPresentOrders": "Aliquam eveniet quae incidunt.", + "uuid": "5ddd14af-086d-42ae-8b32-72d1e0b320e6", + "siteRegistry": false, + "dateReceived": "2021-04-12", + "dateCompleted": "2014-05-12", + "dateEntered": "2016-09-29", + "dateRegistrar": "2019-05-30", + "dateLocalAuthorityReceived": "2017-10-11", + "summary": "Quisquam voluptatibus dolor tenetur dolor incidunt.", + "informationUsed": "Minima eaque occaecati quas.\nSuscipit debitis necessitatibus repellat fugiat.\nCumque dolore quibusdam voluptas eaque non commodi debitis voluptatibus molestias.", + "pastOrPresentOrders": "Accusamus suscipit quis quam.", "commercialAndIndustrialPurposes": [ { + "uuid": "c019380a-5095-4505-bc62-ec13c3d4e21c", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { - "scheduleReference": "F1*", + "uuid": "9665aeb4-1d1d-4a3d-abd9-20244da3df86", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "uuid": "84e2de8b-756d-4616-9ffe-c8324399a0d8", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "uuid": "772d54be-8200-4b16-91ba-9a74ce2a8adc", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false } @@ -4259,95 +5101,94 @@ ], "activityLog": [ { - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "ZBONCAK ERNESTINA", - "timestamp": "2023-04-15" - }, - { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "GLEASON SYDNI", - "timestamp": "2021-02-17" - }, - { + "uuid": "6b83c980-f78b-420d-8d15-8d09f9db3ec9", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "DONNELLY-BAYER RAYMUNDO", - "timestamp": "2019-03-03" - }, - { - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "RUSSEL CHLOE", - "timestamp": "2023-07-12" - }, - { - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "GORCZANY JULIANA", - "timestamp": "2013-10-29" + "user": "PFEFFER JOEY", + "timestamp": "2022-09-09" }, { + "uuid": "ad40b317-ca49-459f-9206-6da38ba8b88d", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "MAGGIO TERRILL", - "timestamp": "2018-05-26" + "user": "GREENHOLT HEBER", + "timestamp": "2020-12-13" }, { + "uuid": "7b4a0210-62a4-405c-a3d8-3ee70729d988", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "LEUSCHKE RAVEN", - "timestamp": "2023-05-29" + "user": "BOYER SHAINA", + "timestamp": "2019-12-11" }, { - "siteRegistry": false, + "uuid": "e263ae40-9eb0-434b-9b46-ca9b74868a9c", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "BERGNAUM AYLIN", - "timestamp": "2018-01-06" + "user": "FEEST-HICKLE SHANIA", + "timestamp": "2014-10-02" }, { + "uuid": "b052ee02-f773-42e1-8d70-9b4da8ccb215", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "SCHAMBERGER GRIFFIN", - "timestamp": "2020-04-02" + "user": "KULAS CAROLE", + "timestamp": "2021-04-22" } ], "associatedSites": [ { - "dateNoted": "2021-05-07", + "uuid": "f83aedd1-425a-4fde-949a-80755580538d", + "dateNoted": "2015-04-13", + "notes": "", + "parcelID": "17175", + "siteID": "16807", + "siteRegistry": true + }, + { + "uuid": "4beb2267-baf3-48be-bcc8-71366cfc84df", + "dateNoted": "2016-02-16", "notes": "", - "parcelID": "18003", - "siteID": "15710", + "parcelID": "20297", + "siteID": "16254", "siteRegistry": true + }, + { + "uuid": "96244327-3064-4974-acbb-29dee9e386d3", + "dateNoted": "2018-06-30", + "notes": "", + "parcelID": "20640", + "siteID": "15844", + "siteRegistry": false } ] }, { - "uuid": "58739895-4619-4387-9605-22c61a9a4e3d", - "siteID": 16093, - "address": "485 Orlando Ramp", - "latitude": 49.08, - "longitude": -132.5835, - "lastUpdated": "2014-05-04", - "city": "Mohrtown", - "region": "Mainland/Southwest", - "victoriaFile": "26250-20/19726", + "uuid": "fcd0299a-c8d7-4634-8357-cf8283b739cc", + "siteID": 17612, + "address": "277 Sanford Point", + "latitude": 57.1888, + "longitude": -127.7085, + "lastUpdated": "2014-03-28", + "city": "Keelington", + "region": " North Coast", + "victoriaFile": "26250-20/3711", "regionalFile": "N/A", "parcelIDs": [ - 9735119, - 6256128, - 3445159, - 5319608, - 3292729 + 2519814, + 5391308, + 2678615, + 5729819, + 6649143 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2013-12-21", - "completed": "2021-12-16", - "initiated": "2018-09-26", - "ministryContact": "FAY MARVIN", + "uuid": "6f1a325b-63a8-4d4f-aa9f-98dfdd40d72b", + "createdAt": "2017-11-26", + "completed": "2018-07-24", + "initiated": "2019-09-10", + "ministryContact": "REICHEL GABRIELLA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -4356,38 +5197,78 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "uuid": "06deb56e-8b48-40f2-b413-c46a0dd404e2", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "853b970c-a48b-4f2c-84e2-0ea22e04cc50", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false }, { + "uuid": "0585e9eb-3d2d-49b0-a773-2f5e565eada4", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "uuid": "07439d9a-dc32-4408-bae2-ecd6990fad21", + "createdAt": "2020-01-04", + "completed": "2018-05-14", + "initiated": "2022-12-23", + "ministryContact": "LUEILWITZ NONA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "uuid": "d21792fb-aa5c-4c8e-a094-40de22f15c09", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "uuid": "72d2ca35-ce7b-4e4f-8868-423949dc8b11", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "a19233eb-10c2-4759-9afa-24537b340135", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "d4b39bb0-eabf-4454-ac5e-39c31e4da4a3", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false }, { + "uuid": "e5ba543a-bb2b-4b41-8a6b-fd3b73496b2d", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true + "role": "REQUESTED BY", + "siteRegistry": false } ], "siteRegistry": false }, { - "createdAt": "2022-04-24", - "completed": "2023-09-03", - "initiated": "2023-07-24", - "ministryContact": "BREITENBERG JUDAH", + "uuid": "880b5800-6dae-44cc-b7bb-f2ec82a69fd7", + "createdAt": "2019-08-07", + "completed": "2022-07-17", + "initiated": "2022-12-18", + "ministryContact": "STROMAN CRISTOPHER", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -4396,33 +5277,44 @@ ], "notationParticipants": [ { + "uuid": "59dbddb8-765d-4acf-9f3a-4708f310fd8d", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", + "uuid": "918a7cb1-5d6c-465e-9e5b-b28ffe23b318", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false }, { + "uuid": "44d8d15a-75cc-4ca8-9fb0-d75671e730d2", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true }, { + "uuid": "3bdaea93-14e0-4c1f-bedc-73f04674d11e", "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "34bf4bd4-611e-4534-9b73-288b2aef9986", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2020-08-09", - "completed": "2020-09-15", - "initiated": "2021-11-22", - "ministryContact": "KESSLER RICHMOND", + "uuid": "ac9e8483-aa72-48a9-abcd-dcd8add84d13", + "createdAt": "2013-12-08", + "completed": "2021-11-07", + "initiated": "2021-11-17", + "ministryContact": "GLEICHNER JEREMIE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -4431,21 +5323,31 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "eafb991f-c4c6-450a-b78f-815ef2923919", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "uuid": "bcd75973-fd70-48f4-8c34-58843f369f30", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": true }, { + "uuid": "369feb7f-fedc-49ff-9d28-dd66a6529ce0", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true }, { + "uuid": "c0895c50-68e4-451a-8157-0fc3acbbcdbd", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "4b36ce70-17a4-4898-b953-2e01a6fd3620", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true @@ -4456,19 +5358,21 @@ ], "participants": [ { - "name": "IPSUM", - "endDate": "2021-02-18", - "startDate": "2018-08-29", + "uuid": "c55a4fb5-1ef8-47f6-8af5-cd6fd2bdf947", + "name": "AMET, DOLOR SIT", + "endDate": "2014-11-21", + "startDate": "2021-12-08", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false }, { - "name": "IPSUM", - "endDate": "2015-06-06", - "startDate": "2013-10-29", + "uuid": "12d531b7-c856-427a-aa22-52ba72ac74a8", + "name": "AMET, DOLOR SIT", + "endDate": "2022-05-26", + "startDate": "2019-07-12", "notes": "", "roles": [ "ORGANIZATION" @@ -4476,100 +5380,110 @@ "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2015-11-17", - "startDate": "2023-07-29", + "uuid": "a1c9d2f9-8c4e-4e54-8b8f-3f3c42b5cf1d", + "name": "AMET, DOLOR SIT", + "endDate": "2015-06-10", + "startDate": "2018-03-28", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": true }, { + "uuid": "5e5740d8-a8d9-47b7-a21f-1ed37dd4011a", "name": "SHELL CANADA PRODUCTS", - "endDate": "2022-03-08", - "startDate": "2014-07-24", + "endDate": "2019-06-06", + "startDate": "2021-02-22", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": false - }, - { - "name": "AMET, DOLOR SIT", - "endDate": "2020-09-11", - "startDate": "2017-03-08", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": false + "siteRegistry": true } ], "suspectLandUses": [ { + "uuid": "8c54ca8c-3f08-4dc8-9799-7acd34252c00", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2014-05-23 (described on Site Profile dated 2014-05-23)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "uuid": "6fa43bb8-b6b7-4237-9830-4ef5ab64fb87", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-03-22 (described on Site Profile dated 2016-03-22)", + "notes": "INSERTED FOR SITE PROFILE DATED 2015-02-11 (described on Site Profile dated 2015-02-11)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { + "uuid": "2ed7cb9a-f0fb-4a19-b7a5-45bc79a0ea35", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2018-07-22 (described on Site Profile dated 2018-07-22)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "uuid": "06fbf7ad-3934-423d-a3ea-28df3c62d7cf", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-11-18 (described on Site Profile dated 2018-11-18)", + "notes": "INSERTED FOR SITE PROFILE DATED 2022-07-24 (described on Site Profile dated 2022-07-24)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], "parcelDescriptions": [ { - "siteRegistry": true, - "dateNoted": "2021-06-06", - "parcelID": "15321", - "crownLandUsePIN": "17381", - "crownLandFileNumber": "20377", - "landDescription": "LOT 4 OF LOT 2 BLOCK 1 DISTRICT LOT 2 PLAN 5245" - }, - { + "uuid": "749cf443-6b56-4c82-8254-f00d4b2a437c", "siteRegistry": false, - "dateNoted": "2019-11-02", - "parcelID": "20854", - "crownLandUsePIN": "15576", - "crownLandFileNumber": "19043", - "landDescription": "LOT 4 OF LOT 3 BLOCK 2 DISTRICT LOT 3 PLAN 5193" + "dateNoted": "2015-06-12", + "parcelID": "18185", + "crownLandUsePIN": "15823", + "crownLandFileNumber": "19696", + "landDescription": "LOT 5 OF LOT 3 BLOCK 2 DISTRICT LOT 5 PLAN 4842" }, { - "siteRegistry": false, - "dateNoted": "2019-03-21", - "parcelID": "16353", - "crownLandUsePIN": "17434", - "crownLandFileNumber": "15888", - "landDescription": "LOT 4 OF LOT 3 BLOCK 2 DISTRICT LOT 1 PLAN 3863" + "uuid": "6e75dbe3-459a-4904-a5ea-9aa8142439da", + "siteRegistry": true, + "dateNoted": "2015-05-05", + "parcelID": "19691", + "crownLandUsePIN": "16734", + "crownLandFileNumber": "20462", + "landDescription": "LOT 1 OF LOT 4 BLOCK 1 DISTRICT LOT 3 PLAN 3191" }, { - "siteRegistry": false, - "dateNoted": "2022-12-25", - "parcelID": "20195", - "crownLandUsePIN": "15960", - "crownLandFileNumber": "17277", - "landDescription": "LOT 4 OF LOT 3 BLOCK 4 DISTRICT LOT 4 PLAN 6025" + "uuid": "7c99c637-ad51-4c83-92bd-dea5b57217d8", + "siteRegistry": true, + "dateNoted": "2023-05-16", + "parcelID": "16259", + "crownLandUsePIN": "16136", + "crownLandFileNumber": "17080", + "landDescription": "LOT 2 OF LOT 1 BLOCK 4 DISTRICT LOT 4 PLAN 9652" } ], "siteDisclosures": [ { + "uuid": "4480d509-61a2-4943-8eab-04db8b3e56f1", "siteRegistry": false, - "dateReceived": "2023-05-13", - "dateCompleted": "2014-12-05", - "dateEntered": "2023-03-01", - "dateRegistrar": "2022-06-04", - "dateLocalAuthorityReceived": "2014-07-22", - "summary": "Minima est earum ipsa iure mollitia tempora officia.", - "informationUsed": "Quos nulla dolor facere animi labore commodi soluta dicta.\nEx dignissimos molestiae rem facere tempora quia rem.\nAut blanditiis quo possimus quis labore id minima dolorem repellat.\nEnim culpa impedit odit voluptatem ad.\nAb quos quaerat corporis iure molestias.", - "pastOrPresentOrders": "Atque assumenda sed itaque.\nCommodi pariatur voluptatum explicabo reprehenderit quam qui repellendus.\nProvident sint vitae exercitationem natus qui odit cumque.", + "dateReceived": "2014-07-31", + "dateCompleted": "2023-08-14", + "dateEntered": "2018-03-23", + "dateRegistrar": "2020-10-12", + "dateLocalAuthorityReceived": "2020-06-30", + "summary": "Dolorem quos accusamus nostrum illum facilis inventore asperiores reprehenderit.\nRepellendus quibusdam quas exercitationem.\nOdit voluptatem quibusdam optio blanditiis.", + "informationUsed": "Earum architecto nemo et facere consequatur.\nExcepturi reprehenderit iure incidunt.\nReiciendis eius nisi incidunt maiores.", + "pastOrPresentOrders": "Recusandae excepturi fugit enim ipsam voluptatem mollitia.\nVoluptate sapiente praesentium facilis voluptas.", "commercialAndIndustrialPurposes": [ { + "uuid": "8875dbff-5b8f-4389-b571-3d19c92e0aa2", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "uuid": "521c30db-9743-4128-a14a-ec919743ac59", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { + "uuid": "96cb3396-d974-4efd-8041-04d2dcceee78", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true @@ -4579,97 +5493,114 @@ ], "activityLog": [ { + "uuid": "d74791f2-5af1-4ab9-8fb6-44a7e0dbab07", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "ANDERSON SHAUN", - "timestamp": "2022-12-13" + "user": "SCHULIST LEONORA", + "timestamp": "2019-01-25" }, { + "uuid": "85cda907-0dd4-4391-b23c-6031b8f2a830", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "SAWAYN VERONA", + "timestamp": "2020-06-09" + }, + { + "uuid": "1048a34b-52bf-4985-98a4-2efdb2ad1ff4", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "ABBOTT NORMA", - "timestamp": "2017-06-29" + "user": "FEIL FELICITY", + "timestamp": "2018-01-09" }, { + "uuid": "d57b5db8-4a21-4647-93ee-63b852d71a59", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "HARBER CADE", - "timestamp": "2014-03-31" + "user": "JERDE WILFRED", + "timestamp": "2020-05-11" }, { - "siteRegistry": true, + "uuid": "8faebdd4-9a90-4a3c-a329-36bfb90b130a", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "SHANAHAN YAZMIN", - "timestamp": "2023-08-28" + "user": "RUECKER PRICE", + "timestamp": "2019-02-23" }, { - "siteRegistry": true, + "uuid": "96cefa42-0e21-42f4-9fca-9b04b528b4f3", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "BRAKUS ROCIO", - "timestamp": "2017-12-28" + "user": "GUTKOWSKI GRANVILLE", + "timestamp": "2019-08-31" }, { + "uuid": "087100c9-694e-4f7b-88f1-0d3a3722a25f", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "MARVIN KYLIE", - "timestamp": "2015-08-06" + "user": "WALKER JULIET", + "timestamp": "2015-11-22" + }, + { + "uuid": "057ea846-299b-464e-800f-3169fbcd600a", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "LEHNER DIANNA", + "timestamp": "2017-11-24" }, { + "uuid": "c1dd3a14-e43f-47f3-bda0-431fc6d22969", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "BOSCO VALENTINA", - "timestamp": "2022-06-05" + "user": "GIBSON GILLIAN", + "timestamp": "2013-12-22" } ], "associatedSites": [ { - "dateNoted": "2017-05-01", - "notes": "", - "parcelID": "15452", - "siteID": "20722", - "siteRegistry": true - }, - { - "dateNoted": "2016-03-06", + "uuid": "3eae35d8-db0a-4c0a-9eaf-5e5072953c7e", + "dateNoted": "2023-06-03", "notes": "", - "parcelID": "18355", - "siteID": "16640", + "parcelID": "16482", + "siteID": "18336", "siteRegistry": true }, { - "dateNoted": "2015-04-22", + "uuid": "5171bb47-558f-44ab-8e86-c5bc2e493146", + "dateNoted": "2021-06-24", "notes": "", - "parcelID": "19434", - "siteID": "19650", + "parcelID": "16119", + "siteID": "16895", "siteRegistry": true } ] }, { - "uuid": "64195ecc-be0e-4b75-b006-d5109e576fa1", - "siteID": 20992, - "address": "9777 Madison Pike", - "latitude": 56.9621, - "longitude": -122.74, - "lastUpdated": "2016-12-24", - "city": "Magdalenfurt", - "region": "Mainland/Southwest", - "victoriaFile": "26250-20/5904", + "uuid": "d9cd85a0-cdbf-4847-8adf-aaf0ccdb49ff", + "siteID": 15485, + "address": "606 Maia Lights", + "latitude": 52.5817, + "longitude": -119.7322, + "lastUpdated": "2014-11-30", + "city": "Conniebury", + "region": " North Coast", + "victoriaFile": "26250-20/6173", "regionalFile": "N/A", "parcelIDs": [ - 7671051, - 5195997, - 1074047, - 782659, - 3646441 + 142981, + 1232740, + 2325821, + 8055218, + 8906638 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2017-06-23", - "completed": "2014-08-27", - "initiated": "2018-10-13", - "ministryContact": "COLLIER MARISOL", + "uuid": "863a3f37-9151-400a-9db7-9180c104ad7f", + "createdAt": "2015-06-26", + "completed": "2017-08-24", + "initiated": "2017-10-23", + "ministryContact": "CONN VELMA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -4678,23 +5609,44 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "37687544-9cb2-4b34-9fe6-6cdaa3c1d3c4", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true }, { + "uuid": "4bd38c92-199a-4151-8122-3ec5e815d5fd", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false + }, + { + "uuid": "351bb9b9-20ce-4fe3-8f33-bd424b33c835", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "uuid": "9b3829b0-a147-49b9-bcba-96e17338e0cf", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "955e04d5-09a9-4a6c-949a-e3d5df6a2385", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true } ], "siteRegistry": false }, { - "createdAt": "2021-09-10", - "completed": "2018-08-19", - "initiated": "2016-10-22", - "ministryContact": "CRIST ANDRE", + "uuid": "7fce8c97-482a-48d8-9fa4-c3afc248ffce", + "createdAt": "2021-07-18", + "completed": "2023-04-16", + "initiated": "2023-02-23", + "ministryContact": "BUCKRIDGE MAXIMO", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -4703,218 +5655,277 @@ ], "notationParticipants": [ { + "uuid": "8c03c26f-a153-43de-9911-c35243496e2c", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "uuid": "d051919b-9fd6-4a36-96fe-345f0fb9557c", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { + "uuid": "aa33b556-23b1-4512-a424-a1d03e371cf7", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false + }, + { + "uuid": "ff474e5e-fb71-43fd-9865-26ff08ec06f4", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false } ], "participants": [ { - "name": "IPSUM", - "endDate": "2015-06-23", - "startDate": "2020-01-27", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2021-06-04", - "startDate": "2015-01-27", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": true - }, - { + "uuid": "3ef7f256-521b-45ca-8d2c-021081514bcd", "name": "SHELL CANADA PRODUCTS", - "endDate": "2019-03-15", - "startDate": "2022-05-22", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2018-07-01", - "startDate": "2015-09-22", + "endDate": "2016-09-08", + "startDate": "2023-08-03", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": true + "siteRegistry": false }, { - "name": "AMET, DOLOR SIT", - "endDate": "2018-05-21", - "startDate": "2014-06-15", + "uuid": "a8cbe4f1-c3be-45c3-ad8e-ecbbf2ac68ba", + "name": "IPSUM", + "endDate": "2021-03-07", + "startDate": "2022-03-12", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": true } ], "suspectLandUses": [ { + "uuid": "76306d8f-e1fc-4f32-8aa9-c0d605f51865", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-08-28 (described on Site Profile dated 2021-08-28)", + "notes": "INSERTED FOR SITE PROFILE DATED 2021-08-15 (described on Site Profile dated 2021-08-15)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { + "uuid": "759eaad2-2fca-4e0a-ab15-0acf0413d5f2", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-10-14 (described on Site Profile dated 2015-10-14)", + "notes": "INSERTED FOR SITE PROFILE DATED 2015-11-02 (described on Site Profile dated 2015-11-02)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "uuid": "f8c7cbad-72c2-4e43-8253-9af28b86f94a", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2020-09-01 (described on Site Profile dated 2020-09-01)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "uuid": "91d580d4-cb90-4f8e-b510-34ec969b59b9", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2021-10-18 (described on Site Profile dated 2021-10-18)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { + "uuid": "ff097434-52a2-46d2-aead-913238d11778", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-01-21 (described on Site Profile dated 2015-01-21)", + "notes": "INSERTED FOR SITE PROFILE DATED 2017-11-15 (described on Site Profile dated 2017-11-15)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], "parcelDescriptions": [ { + "uuid": "c650b5c1-419e-40e3-afe3-d0760a9ccc72", "siteRegistry": false, - "dateNoted": "2017-03-25", - "parcelID": "15295", - "crownLandUsePIN": "17914", - "crownLandFileNumber": "17255", - "landDescription": "LOT 2 OF LOT 1 BLOCK 3 DISTRICT LOT 1 PLAN 5352" + "dateNoted": "2022-03-26", + "parcelID": "16649", + "crownLandUsePIN": "18853", + "crownLandFileNumber": "17380", + "landDescription": "LOT 3 OF LOT 5 BLOCK 5 DISTRICT LOT 5 PLAN 3903" }, { + "uuid": "f30b5300-03ba-43ea-acc5-53c2b30b2b50", "siteRegistry": true, - "dateNoted": "2016-11-23", - "parcelID": "17678", - "crownLandUsePIN": "16681", - "crownLandFileNumber": "19988", - "landDescription": "LOT 1 OF LOT 5 BLOCK 5 DISTRICT LOT 2 PLAN 5401" + "dateNoted": "2021-05-02", + "parcelID": "16539", + "crownLandUsePIN": "15300", + "crownLandFileNumber": "18446", + "landDescription": "LOT 4 OF LOT 1 BLOCK 3 DISTRICT LOT 3 PLAN 5414" }, { - "siteRegistry": true, - "dateNoted": "2018-11-04", - "parcelID": "15680", - "crownLandUsePIN": "19345", - "crownLandFileNumber": "17896", - "landDescription": "LOT 2 OF LOT 1 BLOCK 3 DISTRICT LOT 2 PLAN 9566" + "uuid": "d698f978-6aa8-473d-b24d-737f24d35515", + "siteRegistry": false, + "dateNoted": "2020-04-17", + "parcelID": "15723", + "crownLandUsePIN": "20667", + "crownLandFileNumber": "15646", + "landDescription": "LOT 5 OF LOT 5 BLOCK 4 DISTRICT LOT 5 PLAN 4114" + }, + { + "uuid": "a280a928-5046-4217-bab9-cdb80f9f9a1e", + "siteRegistry": false, + "dateNoted": "2018-07-28", + "parcelID": "20112", + "crownLandUsePIN": "18386", + "crownLandFileNumber": "19277", + "landDescription": "LOT 4 OF LOT 3 BLOCK 2 DISTRICT LOT 1 PLAN 3390" } ], "siteDisclosures": [ { - "siteRegistry": false, - "dateReceived": "2019-12-15", - "dateCompleted": "2022-01-25", - "dateEntered": "2022-11-28", - "dateRegistrar": "2015-08-04", - "dateLocalAuthorityReceived": "2016-09-04", - "summary": "Exercitationem molestias ad autem.\nNatus tenetur commodi eaque qui.\nRerum itaque nulla recusandae voluptas tempora quod quisquam.", - "informationUsed": "Facilis ad totam architecto expedita aliquid.\nDebitis nam suscipit odit.\nAlias natus inventore.", - "pastOrPresentOrders": "Modi consequuntur harum.", + "uuid": "56dfca97-a44c-426b-ba40-a473541e5dc8", + "siteRegistry": true, + "dateReceived": "2017-06-11", + "dateCompleted": "2014-04-20", + "dateEntered": "2023-05-13", + "dateRegistrar": "2021-11-02", + "dateLocalAuthorityReceived": "2017-07-28", + "summary": "Excepturi nostrum ut corrupti eum fugit.\nMolestias placeat sed accusantium.\nUnde cupiditate labore quidem.", + "informationUsed": "Harum odit vel est minima.\nDoloribus id aliquam libero quasi commodi voluptate inventore vel.\nSaepe laudantium nesciunt reprehenderit corrupti voluptate ducimus pariatur.", + "pastOrPresentOrders": "Voluptates repellendus ducimus et culpa.\nSoluta ipsam modi magnam hic velit modi necessitatibus iure.", + "commercialAndIndustrialPurposes": [ + { + "uuid": "a64dd77c-7bfd-4e4d-92a4-f5be8681d2b8", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "uuid": "15995f66-56e9-4e7f-a4a6-97fe47bf301d", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + } + ] + }, + { + "uuid": "5378763d-2377-4f24-864f-867049d516f8", + "siteRegistry": true, + "dateReceived": "2019-09-04", + "dateCompleted": "2014-01-17", + "dateEntered": "2022-03-16", + "dateRegistrar": "2022-12-06", + "dateLocalAuthorityReceived": "2019-05-19", + "summary": "Aspernatur numquam qui dicta nulla voluptatibus repellendus voluptatibus iusto nulla.\nTemporibus labore debitis illo et quas.\nEx ad at illum cumque fugiat.", + "informationUsed": "Accusantium ipsa quaerat ab eos ut voluptas.\nNecessitatibus odit corrupti.\nMollitia labore incidunt numquam hic ut recusandae magni error.\nRem corrupti aliquam eligendi autem veritatis dolore mollitia repudiandae recusandae.\nEos quas voluptatem laborum.", + "pastOrPresentOrders": "Eaque ut quasi odio laudantium eligendi eius.\nMaxime deleniti magnam voluptates accusamus dignissimos.\nIpsam non commodi.", "commercialAndIndustrialPurposes": [ { + "uuid": "7d42c8bc-d483-4081-a2f2-70cb985df9ff", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false }, { + "uuid": "8129eb82-be6f-4642-a3f0-a0b298ac876c", "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false + }, + { + "uuid": "31690567-8d60-4e7c-be66-3bd50fea88ee", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true } ] } ], "activityLog": [ { + "uuid": "ff270bf3-7d98-4e47-8224-c972de8158f8", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "ZEMLAK GREG", - "timestamp": "2017-07-21" - }, - { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "CHRISTIANSEN LUDWIG", - "timestamp": "2018-08-25" + "user": "O'KON JANA", + "timestamp": "2020-10-23" }, { + "uuid": "ab603374-f2d8-4e14-8647-e48e2a583485", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "SIPES KENNEDY", - "timestamp": "2018-05-21" + "user": "SCHMIDT FRANCESCA", + "timestamp": "2023-10-08" }, { - "siteRegistry": false, + "uuid": "17598243-8e98-40fd-8f9b-b6df242c8b1c", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "BASHIRIAN CLARE", - "timestamp": "2013-12-25" + "user": "WALSH OCTAVIA", + "timestamp": "2019-01-29" }, { + "uuid": "bed9fd5d-f072-4184-b67c-15f5d0104e94", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "BECHTELAR DAPHNEY", - "timestamp": "2020-02-06" + "user": "KOCH ANGUS", + "timestamp": "2020-09-01" }, { + "uuid": "f2f2a0da-5670-4f67-bf95-bfebfe73a89e", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "LUEILWITZ COOPER", - "timestamp": "2016-12-08" - }, - { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "RODRIGUEZ LAURY", - "timestamp": "2019-11-23" + "user": "TORPHY ELIJAH", + "timestamp": "2019-01-18" } ], "associatedSites": [ { - "dateNoted": "2018-03-29", + "uuid": "5aff0e40-8e60-4d62-9300-ba9601b2e7ec", + "dateNoted": "2022-11-20", + "notes": "", + "parcelID": "18504", + "siteID": "17604", + "siteRegistry": false + }, + { + "uuid": "0b338543-c0b8-42f4-a015-7380cc586cf3", + "dateNoted": "2023-09-14", + "notes": "", + "parcelID": "15833", + "siteID": "18927", + "siteRegistry": false + }, + { + "uuid": "6358c182-af12-440b-b5c3-2df26f893f79", + "dateNoted": "2015-07-28", "notes": "", - "parcelID": "16170", - "siteID": "18405", + "parcelID": "16761", + "siteID": "16560", "siteRegistry": false } ] }, { - "uuid": "010a776b-bbd2-4358-82c8-47c6ec8e7e73", - "siteID": 16432, - "address": "9796 D'Amore Plaza", - "latitude": 53.9806, - "longitude": -136.3472, - "lastUpdated": "2019-04-11", - "city": "Aylaburgh", - "region": " North Coast", - "victoriaFile": "26250-20/18787", + "uuid": "7e9ed47a-f16a-43fd-8a92-a207515b1b64", + "siteID": 18583, + "address": "742 Gutmann Parkway", + "latitude": 50.7391, + "longitude": -125.9775, + "lastUpdated": "2020-10-17", + "city": "Vernaborough", + "region": "Mainland/Southwest", + "victoriaFile": "26250-20/12136", "regionalFile": "N/A", "parcelIDs": [ - 6970648, - 5247770, - 658200, - 5840438, - 4135318 + 7627552, + 4956667, + 1740933, + 1165552, + 4109169 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2017-06-04", - "completed": "2015-09-19", - "initiated": "2015-09-17", - "ministryContact": "WATERS GEORGETTE", + "uuid": "c6055666-303b-4217-8bb2-ff414fe159f8", + "createdAt": "2022-05-31", + "completed": "2023-06-27", + "initiated": "2019-05-08", + "ministryContact": "RUNOLFSSON CASSANDRA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -4923,33 +5934,32 @@ ], "notationParticipants": [ { + "uuid": "a54c1a5b-1303-46de-9077-fbf8bae477dd", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false }, { + "uuid": "8fd05235-ddb1-4fbf-9327-4a81996d3229", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { + "uuid": "7f7b628f-990d-41a7-bd9c-85989409b2e0", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", "siteRegistry": false } ], "siteRegistry": false }, { - "createdAt": "2021-06-23", - "completed": "2014-08-09", - "initiated": "2019-01-24", - "ministryContact": "STROSIN EMMITT", + "uuid": "4492ff5f-eed9-4938-9cd5-e25fbdcb71a1", + "createdAt": "2017-08-25", + "completed": "2015-12-22", + "initiated": "2021-07-01", + "ministryContact": "FLATLEY MARJORY", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -4958,28 +5968,44 @@ ], "notationParticipants": [ { + "uuid": "46a007f6-7cf7-40a0-ba19-4f0eaf28c51c", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "uuid": "1c8ff0a2-0658-485c-8154-6bc82735cc00", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": false }, { + "uuid": "39b0f77a-a829-42d0-bba5-dfa9339ba10a", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { + "uuid": "7f0b5817-b757-4f48-bba1-e4e6e597a80f", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "uuid": "0cfb17cb-3ff6-4c80-aad4-4a8aadb83ad5", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": false } ], "siteRegistry": false }, { - "createdAt": "2017-06-05", - "completed": "2023-08-31", - "initiated": "2016-02-15", - "ministryContact": "MORISSETTE DOCK", + "uuid": "44214147-973d-40cb-9a0d-2cae1aae80d5", + "createdAt": "2013-12-03", + "completed": "2021-11-06", + "initiated": "2019-04-30", + "ministryContact": "LITTEL ADRIEL", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -4988,33 +6014,26 @@ ], "notationParticipants": [ { + "uuid": "5825170b-2b9f-46ec-80e5-96f0662cddd7", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true + "role": "SUBMITTED BY", + "siteRegistry": false }, { + "uuid": "e28a4312-9722-4428-bf92-0656b4f69bc6", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false } ], "siteRegistry": false }, { - "createdAt": "2017-09-15", - "completed": "2013-12-03", - "initiated": "2023-04-13", - "ministryContact": "DURGAN ANSLEY", + "uuid": "86f4d7e6-f6c5-451d-a720-da4285b85faa", + "createdAt": "2018-06-15", + "completed": "2021-12-08", + "initiated": "2022-04-04", + "ministryContact": "KIHN VALLIE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -5023,59 +6042,22 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "7f275d5b-29e7-4b5f-ba0b-8a19b0bef591", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - } - ], - "siteRegistry": true - }, - { - "createdAt": "2017-03-12", - "completed": "2016-08-23", - "initiated": "2015-02-09", - "ministryContact": "GERHOLD JEFFEREY", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", "siteRegistry": false }, { + "uuid": "8bc9191c-7260-4fb6-9829-f8587ce4aecc", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { + "uuid": "fae3467d-ae5e-4d04-9caa-c9246c832d12", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false } ], "siteRegistry": false @@ -5083,39 +6065,10 @@ ], "participants": [ { - "name": "IPSUM", - "endDate": "2015-08-18", - "startDate": "2021-12-22", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2019-12-10", - "startDate": "2017-10-17", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": true - }, - { + "uuid": "1b6e3d8f-ad5f-4bda-8813-ba819d59943f", "name": "AMET, DOLOR SIT", - "endDate": "2018-05-26", - "startDate": "2023-05-13", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2014-10-14", - "startDate": "2021-10-25", + "endDate": "2020-06-19", + "startDate": "2020-10-02", "notes": "", "roles": [ "EMPLOYEE" @@ -5123,247 +6076,226 @@ "siteRegistry": true }, { + "uuid": "dc899fb2-92cd-4520-8fe4-2c74391ff016", "name": "AMET, DOLOR SIT", - "endDate": "2021-03-25", - "startDate": "2017-05-20", + "endDate": "2015-07-08", + "startDate": "2020-06-28", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": false } ], "suspectLandUses": [ { + "uuid": "af9c89e6-b06f-42d6-b698-f843ff0b51e5", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-04-12 (described on Site Profile dated 2018-04-12)", + "notes": "INSERTED FOR SITE PROFILE DATED 2018-11-02 (described on Site Profile dated 2018-11-02)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { + "uuid": "1d36d01c-a164-4005-a526-5f532c2ebdf2", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-08-07 (described on Site Profile dated 2016-08-07)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "notes": "INSERTED FOR SITE PROFILE DATED 2017-09-08 (described on Site Profile dated 2017-09-08)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { + "uuid": "1e115be0-7191-4dbc-933f-4d9e1b97487b", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-10-31 (described on Site Profile dated 2021-10-31)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "notes": "INSERTED FOR SITE PROFILE DATED 2016-03-19 (described on Site Profile dated 2016-03-19)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], "parcelDescriptions": [ { - "siteRegistry": true, - "dateNoted": "2016-09-01", - "parcelID": "16750", - "crownLandUsePIN": "19884", - "crownLandFileNumber": "19620", - "landDescription": "LOT 3 OF LOT 1 BLOCK 4 DISTRICT LOT 5 PLAN 8553" + "uuid": "12cafd38-70c0-40ed-9b50-ba1932ecd275", + "siteRegistry": false, + "dateNoted": "2015-04-07", + "parcelID": "17095", + "crownLandUsePIN": "20587", + "crownLandFileNumber": "18943", + "landDescription": "LOT 4 OF LOT 4 BLOCK 3 DISTRICT LOT 3 PLAN 4445" }, { - "siteRegistry": true, - "dateNoted": "2020-02-07", - "parcelID": "19604", - "crownLandUsePIN": "20281", - "crownLandFileNumber": "16495", - "landDescription": "LOT 5 OF LOT 3 BLOCK 4 DISTRICT LOT 5 PLAN 3897" + "uuid": "3450ed38-19b9-40e5-a5bc-7e20c04212cf", + "siteRegistry": false, + "dateNoted": "2021-05-31", + "parcelID": "16245", + "crownLandUsePIN": "17514", + "crownLandFileNumber": "18752", + "landDescription": "LOT 1 OF LOT 4 BLOCK 1 DISTRICT LOT 5 PLAN 7012" }, { + "uuid": "6030b8a4-30ff-4f8a-92e2-01c065218f12", "siteRegistry": true, - "dateNoted": "2017-11-04", - "parcelID": "20929", - "crownLandUsePIN": "16370", - "crownLandFileNumber": "16310", - "landDescription": "LOT 3 OF LOT 3 BLOCK 4 DISTRICT LOT 2 PLAN 7109" - }, - { - "siteRegistry": false, - "dateNoted": "2015-01-27", - "parcelID": "16337", - "crownLandUsePIN": "16488", - "crownLandFileNumber": "16943", - "landDescription": "LOT 1 OF LOT 3 BLOCK 3 DISTRICT LOT 3 PLAN 8642" + "dateNoted": "2020-08-16", + "parcelID": "20259", + "crownLandUsePIN": "15719", + "crownLandFileNumber": "15302", + "landDescription": "LOT 1 OF LOT 5 BLOCK 3 DISTRICT LOT 2 PLAN 4870" } ], "siteDisclosures": [ { + "uuid": "d7db208f-e9ac-4eb7-a56c-d16df7a77adb", "siteRegistry": true, - "dateReceived": "2015-11-06", - "dateCompleted": "2022-10-04", - "dateEntered": "2022-07-11", - "dateRegistrar": "2015-08-26", - "dateLocalAuthorityReceived": "2019-03-14", - "summary": "Velit illum non quaerat.", - "informationUsed": "Assumenda accusamus deleniti facere aliquid reprehenderit laudantium.\nAd sequi illum quo ipsa.\nVeritatis recusandae itaque dolorum sequi quaerat.", - "pastOrPresentOrders": "Sed in veniam voluptatum delectus nemo consequatur provident.\nDucimus voluptas dignissimos tempora.\nVoluptate porro odit.", + "dateReceived": "2015-07-18", + "dateCompleted": "2017-06-19", + "dateEntered": "2015-05-21", + "dateRegistrar": "2015-04-29", + "dateLocalAuthorityReceived": "2019-02-10", + "summary": "Error dignissimos aliquid eveniet vitae quos libero occaecati.\nMagni totam animi nostrum fugit provident quaerat dolorem non laborum.\nAnimi consequuntur fuga perspiciatis.", + "informationUsed": "Similique aliquid commodi excepturi officiis ab tempora aut.\nEnim quam quam odio quo.\nEos aliquam debitis similique cum facere voluptas magni autem perferendis.\nNemo necessitatibus odit iure quia quisquam neque facere sapiente velit.\nEst reprehenderit reiciendis.", + "pastOrPresentOrders": "Architecto incidunt error.", "commercialAndIndustrialPurposes": [ { - "scheduleReference": "F2*", + "uuid": "dc9a998c-5710-43e0-a218-bce1c698ecee", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { - "scheduleReference": "F2*", + "uuid": "d0043ea2-3683-47b6-9f3a-4ac597eccea7", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { - "scheduleReference": "F1*", + "uuid": "df2df838-bb5f-40ce-9d28-a42229d113bc", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true } ] }, { - "siteRegistry": true, - "dateReceived": "2019-12-11", - "dateCompleted": "2022-05-19", - "dateEntered": "2016-04-24", - "dateRegistrar": "2023-08-24", - "dateLocalAuthorityReceived": "2018-09-27", - "summary": "Laboriosam debitis omnis neque reiciendis enim quod.\nMollitia eaque inventore ipsam.\nPossimus ut facilis similique nam corporis accusamus.", - "informationUsed": "Dolorum distinctio tenetur adipisci.\nAperiam vitae rerum corporis hic aut consequuntur nobis exercitationem itaque.\nHarum rerum distinctio aperiam.\nUt sed natus odio voluptate.\nNemo id nam.", - "pastOrPresentOrders": "Dolores voluptatem a atque qui aut.", + "uuid": "927b1f35-5c6b-4654-880d-855be0bf7f9e", + "siteRegistry": false, + "dateReceived": "2016-04-08", + "dateCompleted": "2023-07-24", + "dateEntered": "2018-04-08", + "dateRegistrar": "2015-08-03", + "dateLocalAuthorityReceived": "2022-11-07", + "summary": "Nulla illo maiores temporibus possimus dolorem beatae repudiandae accusamus itaque.", + "informationUsed": "Omnis exercitationem repellat nobis saepe earum voluptas esse.\nRepellendus eaque numquam quisquam iure.\nDoloribus ducimus provident vel quaerat natus similique rerum sit architecto.", + "pastOrPresentOrders": "Officiis repellat quam placeat.\nEaque corrupti veniam temporibus dignissimos qui numquam.", "commercialAndIndustrialPurposes": [ { + "uuid": "5391db5f-b4c7-4062-9cc7-b7da22f14a2d", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "uuid": "6bf6eac9-d7cc-4d89-9728-7f55a5633220", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false + "uuid": "8f564f31-9e7c-476a-b23c-6df70780e174", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true }, { - "scheduleReference": "F1*", + "uuid": "1342a18a-b241-4c66-b0dc-452821b18797", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false + "siteRegistry": true } ] } ], "activityLog": [ { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "ULLRICH MAURINE", - "timestamp": "2021-08-16" - }, - { + "uuid": "d87fe66b-9326-43c0-80b4-2e293eec3c5a", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "GREENFELDER WILLIS", - "timestamp": "2022-08-21" + "user": "TOWNE JOHANNA", + "timestamp": "2020-09-14" }, { - "siteRegistry": false, + "uuid": "6d683bef-3b22-480c-b477-93601dce71e2", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "KOZEY SHAKIRA", - "timestamp": "2015-09-23" + "user": "SCHROEDER-ERNSER MARGE", + "timestamp": "2022-07-13" }, { - "siteRegistry": false, + "uuid": "7d0ec5dd-38e7-4449-800a-e502c2da6726", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "TILLMAN MARC", - "timestamp": "2015-02-27" + "user": "VON-ROGAHN THEODORA", + "timestamp": "2020-05-05" }, { + "uuid": "ea554030-3989-46b2-9beb-b38c80b7edb4", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "BAUCH IGNACIO", - "timestamp": "2015-05-20" - }, - { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "SCHMITT JENNIE", - "timestamp": "2017-01-07" + "user": "VANDERVORT EMERY", + "timestamp": "2022-09-04" }, { + "uuid": "48187958-fe1a-4376-9f3c-af702064ad33", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "MAYERT ANIYAH", - "timestamp": "2016-11-27" + "user": "SCHMITT MATILDE", + "timestamp": "2016-12-13" }, { + "uuid": "6b9d3434-8e39-4881-8997-4bf267333023", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "GUSIKOWSKI CECILE", - "timestamp": "2021-11-04" + "user": "ULLRICH TYREL", + "timestamp": "2019-02-02" }, { + "uuid": "2fcd95eb-e647-4e59-b97c-0a4c3ea7fb14", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "JOHNS BLAZE", - "timestamp": "2017-02-06" - }, - { - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "NITZSCHE RASHAD", - "timestamp": "2014-09-13" + "user": "STEHR FREEDA", + "timestamp": "2016-02-19" } ], "associatedSites": [ { - "dateNoted": "2018-07-24", + "uuid": "c00eebef-8f81-41c6-9a1a-376fc878eab0", + "dateNoted": "2022-02-26", "notes": "", - "parcelID": "19239", - "siteID": "17225", - "siteRegistry": false + "parcelID": "17005", + "siteID": "20304", + "siteRegistry": true } ] }, { - "uuid": "54f2b59d-e434-47fa-9f2b-ef73a2d61cef", - "siteID": 19390, - "address": "6648 Frances Wall", - "latitude": 56.3227, - "longitude": -137.4597, - "lastUpdated": "2016-07-09", - "city": "Port Esteban", - "region": "Mainland/Southwest", - "victoriaFile": "26250-20/18831", + "uuid": "9e486f6e-4888-4ec7-a017-a91872205156", + "siteID": 17688, + "address": "52826 Hane Burg", + "latitude": 58.7075, + "longitude": -134.8737, + "lastUpdated": "2015-12-21", + "city": "Port Dale", + "region": "Thompson-Okanagan", + "victoriaFile": "26250-20/4109", "regionalFile": "N/A", "parcelIDs": [ - 8638945, - 7961227, - 6299266, - 9685428, - 1112981 + 3116870, + 4762043, + 3917506, + 8698739, + 3602742 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2020-06-26", - "completed": "2015-06-12", - "initiated": "2018-07-17", - "ministryContact": "FUNK LUCAS", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - } - ], - "siteRegistry": false - }, - { - "createdAt": "2018-05-14", - "completed": "2022-02-16", - "initiated": "2015-09-24", - "ministryContact": "BRADTKE ASTRID", + "uuid": "aaf15891-596e-4d03-861f-a148ec11c6ac", + "createdAt": "2019-02-05", + "completed": "2021-03-03", + "initiated": "2017-02-07", + "ministryContact": "BEATTY AUBREY", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -5372,73 +6304,38 @@ ], "notationParticipants": [ { + "uuid": "62242a1a-ff58-4e46-97c1-62cb38cb5b5e", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true }, { + "uuid": "cf4784ec-151c-4e1f-b4d3-6c0b07717ec3", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false - } - ], - "siteRegistry": false - }, - { - "createdAt": "2020-07-18", - "completed": "2020-12-24", - "initiated": "2013-12-25", - "ministryContact": "VEUM DAHLIA", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "uuid": "14a087b9-d676-401a-bf7d-7dc7fdc24e93", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": false }, { + "uuid": "03744ca0-b681-4521-937f-03cc592d6bf7", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", "siteRegistry": true } ], "siteRegistry": true }, { - "createdAt": "2022-07-14", - "completed": "2018-12-08", - "initiated": "2020-07-04", - "ministryContact": "WEIMANN-O'KEEFE MELBA", + "uuid": "8337fe94-47e2-4c50-83e7-38f131989710", + "createdAt": "2022-04-06", + "completed": "2017-11-11", + "initiated": "2023-06-26", + "ministryContact": "CRONIN FRIEDA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -5447,24 +6344,34 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "uuid": "81b8c902-66cb-4b14-8927-a9885189ff72", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": true }, { + "uuid": "fb55e0e8-096c-49a6-8d4c-40b4e779f36f", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "uuid": "b5d867eb-6a01-4df9-ab55-84b035d17ebc", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true }, { + "uuid": "f75c5933-2594-40ef-bc17-caedfc9b3f9b", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", + "uuid": "dfff5994-bef4-457c-b758-fb1f09a6319a", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false } ], "siteRegistry": false @@ -5472,9 +6379,10 @@ ], "participants": [ { - "name": "AMET, DOLOR SIT", - "endDate": "2015-04-10", - "startDate": "2018-02-08", + "uuid": "e3f68d97-6cbf-4783-9689-41f40f6cf948", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2018-02-12", + "startDate": "2016-11-11", "notes": "", "roles": [ "ORGANIZATION" @@ -5482,9 +6390,10 @@ "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2020-06-27", - "startDate": "2020-02-04", + "uuid": "dcd89d69-949e-46f2-8b51-0fefb88c5e23", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2020-04-08", + "startDate": "2019-12-21", "notes": "", "roles": [ "ORGANIZATION" @@ -5492,9 +6401,32 @@ "siteRegistry": false }, { + "uuid": "b0a5409f-01b4-49ac-ab17-307e04320684", "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2019-07-11", - "startDate": "2019-03-16", + "endDate": "2020-06-04", + "startDate": "2022-03-16", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "uuid": "e9de8ad5-54ab-4344-b034-2951ddaf153c", + "name": "IPSUM", + "endDate": "2022-10-31", + "startDate": "2021-07-30", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "uuid": "5a85e15f-470d-4855-9436-db54e1bd7c01", + "name": "IPSUM", + "endDate": "2022-04-16", + "startDate": "2019-11-27", "notes": "", "roles": [ "ORGANIZATION" @@ -5504,173 +6436,214 @@ ], "suspectLandUses": [ { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-04-06 (described on Site Profile dated 2017-04-06)", + "uuid": "b10c8287-58fd-4457-9f36-9d015521595f", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2020-03-15 (described on Site Profile dated 2020-03-15)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2023-08-12 (described on Site Profile dated 2023-08-12)", + "uuid": "1480acf7-b307-43ad-b667-17cba73599cb", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2020-03-10 (described on Site Profile dated 2020-03-10)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { + "uuid": "ec586c60-28d3-46ef-b23d-8af6859c6199", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-05-29 (described on Site Profile dated 2019-05-29)", + "notes": "INSERTED FOR SITE PROFILE DATED 2022-10-20 (described on Site Profile dated 2022-10-20)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { + "uuid": "4f0eb44f-f539-4c26-8c7b-7adda8efb0de", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2020-07-18 (described on Site Profile dated 2020-07-18)", + "notes": "INSERTED FOR SITE PROFILE DATED 2022-03-12 (described on Site Profile dated 2022-03-12)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "uuid": "785464f2-1053-4a75-b759-96a0cd2a0cf6", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2016-03-13 (described on Site Profile dated 2016-03-13)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], "parcelDescriptions": [ { + "uuid": "efbee82b-8bcf-4d44-893c-1ec58b924b06", "siteRegistry": false, - "dateNoted": "2013-11-28", - "parcelID": "18782", - "crownLandUsePIN": "20254", - "crownLandFileNumber": "15812", - "landDescription": "LOT 3 OF LOT 3 BLOCK 3 DISTRICT LOT 3 PLAN 7535" + "dateNoted": "2017-07-21", + "parcelID": "16495", + "crownLandUsePIN": "18380", + "crownLandFileNumber": "17755", + "landDescription": "LOT 4 OF LOT 3 BLOCK 5 DISTRICT LOT 2 PLAN 4748" }, { - "siteRegistry": false, - "dateNoted": "2014-03-17", - "parcelID": "15825", - "crownLandUsePIN": "20490", - "crownLandFileNumber": "15748", - "landDescription": "LOT 3 OF LOT 2 BLOCK 1 DISTRICT LOT 4 PLAN 4931" + "uuid": "3c393309-4b17-4600-9c22-86b4583d6ee1", + "siteRegistry": true, + "dateNoted": "2021-01-06", + "parcelID": "20026", + "crownLandUsePIN": "16659", + "crownLandFileNumber": "18970", + "landDescription": "LOT 3 OF LOT 5 BLOCK 5 DISTRICT LOT 3 PLAN 6334" + }, + { + "uuid": "f908c293-4e05-4eb3-b950-19cf2c0ee34c", + "siteRegistry": true, + "dateNoted": "2016-08-21", + "parcelID": "18263", + "crownLandUsePIN": "16786", + "crownLandFileNumber": "16314", + "landDescription": "LOT 1 OF LOT 2 BLOCK 4 DISTRICT LOT 2 PLAN 3244" } ], "siteDisclosures": [ { - "siteRegistry": true, - "dateReceived": "2019-02-09", - "dateCompleted": "2016-05-09", - "dateEntered": "2016-06-08", - "dateRegistrar": "2018-12-26", - "dateLocalAuthorityReceived": "2019-01-26", - "summary": "Praesentium rem voluptates a possimus dolor.\nPariatur ullam molestiae dicta magnam architecto.", - "informationUsed": "Voluptatibus vel assumenda consequuntur explicabo minus accusantium a porro quo.\nEarum iure sit facilis.\nDelectus sequi omnis.\nRepudiandae amet nesciunt numquam.", - "pastOrPresentOrders": "Quia occaecati perspiciatis quas.", + "uuid": "b472c212-57b0-4b13-8681-99b0520443dd", + "siteRegistry": false, + "dateReceived": "2015-01-15", + "dateCompleted": "2015-02-22", + "dateEntered": "2016-02-23", + "dateRegistrar": "2022-09-11", + "dateLocalAuthorityReceived": "2020-01-23", + "summary": "Omnis earum accusamus sequi.\nMolestias impedit vel iusto voluptatum.\nMagnam velit accusantium consequuntur.", + "informationUsed": "Repudiandae beatae quos pariatur non a dicta dicta alias.\nAt enim quasi placeat facilis accusamus iste voluptatem ex.\nRem sapiente aliquam nemo velit corporis.", + "pastOrPresentOrders": "Eum voluptatibus quidem nostrum corporis tempora.", "commercialAndIndustrialPurposes": [ { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false + "uuid": "e7121457-a43e-4328-bb8d-3cc982255786", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true }, { + "uuid": "64172bf1-71e2-4c21-b4a1-4b4f0a929f0a", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true + }, + { + "uuid": "bfcabba2-92ec-4001-8b77-4db72ef3012b", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "uuid": "9e0e6ecd-3d72-468b-8a4b-73ba7ecb6d1e", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true } ] } ], "activityLog": [ { + "uuid": "d41c710b-a108-482e-8b91-947de268fdfe", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "SCHAEFER ZACHARIAH", - "timestamp": "2022-06-12" + "user": "CONN REY", + "timestamp": "2019-11-06" }, { - "siteRegistry": true, + "uuid": "536f1b63-1ff4-49dc-9290-30117ac9425b", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "CONROY REBEKA", - "timestamp": "2015-11-02" + "user": "ORTIZ OMARI", + "timestamp": "2022-04-23" }, { + "uuid": "a71b734c-c592-4780-a2a9-8abd08eb0ce5", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "TOWNE TERESA", - "timestamp": "2020-10-18" + "user": "DIETRICH KEON", + "timestamp": "2019-09-10" }, { - "siteRegistry": false, + "uuid": "8ad040fa-0e74-4b57-a4f1-2d1c79f81f62", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "GRIMES LILLIAN", - "timestamp": "2023-04-25" + "user": "JAKUBOWSKI JARRELL", + "timestamp": "2020-09-03" }, { + "uuid": "857c303c-11d7-4aef-88d9-1dc5524bf808", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "FRANECKI VITO", - "timestamp": "2014-06-27" + "user": "RIPPIN JETTIE", + "timestamp": "2020-03-29" }, { - "siteRegistry": false, + "uuid": "d20b5832-2cb6-483f-aca8-a95843f441bc", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "WEISSNAT MATEO", - "timestamp": "2021-12-28" + "user": "FRIESEN GRANVILLE", + "timestamp": "2017-05-10" }, { + "uuid": "e13f212b-baed-4b78-86d1-33b3071067db", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "STANTON BRAULIO", - "timestamp": "2016-04-27" + "user": "LEGROS DEVONTE", + "timestamp": "2017-01-24" }, { - "siteRegistry": true, + "uuid": "3f6939ca-32ac-4606-bd5d-1b2416526c24", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "MUELLER DUNCAN", - "timestamp": "2022-07-01" + "user": "LOWE KIANA", + "timestamp": "2016-07-28" }, { + "uuid": "1fcca0e9-82e7-4421-b8a7-63ce8cecb5f0", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "WINDLER LISA", - "timestamp": "2021-07-28" + "user": "SCHULTZ ANDERSON", + "timestamp": "2016-03-15" }, { + "uuid": "b6cf5ee3-3243-43b1-9ab6-2c5f65b436ff", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "BARROWS DORA", - "timestamp": "2019-10-01" + "user": "WILLIAMSON JAYCEE", + "timestamp": "2019-03-31" } ], "associatedSites": [ { - "dateNoted": "2021-03-05", - "notes": "", - "parcelID": "16045", - "siteID": "17306", - "siteRegistry": false - }, - { - "dateNoted": "2019-08-03", + "uuid": "36fe43a0-658c-4d45-b4b2-5db654a03c74", + "dateNoted": "2015-10-14", "notes": "", - "parcelID": "20944", - "siteID": "20221", + "parcelID": "15899", + "siteID": "15575", "siteRegistry": false } ] }, { - "uuid": "55d6dddd-6261-4a5e-a984-a8c3638f39f4", - "siteID": 19093, - "address": "74894 Vandervort Square", - "latitude": 55.9168, - "longitude": -133.5076, - "lastUpdated": "2022-05-14", - "city": "Gislasonton", - "region": "Vancouver Island/Coast", - "victoriaFile": "26250-20/6505", + "uuid": "eace6939-d714-43fb-b213-e2b1779d83ec", + "siteID": 17701, + "address": "1886 Prosacco Trafficway", + "latitude": 58.9678, + "longitude": -130.026, + "lastUpdated": "2017-10-03", + "city": "McKinney", + "region": " North Coast", + "victoriaFile": "26250-20/2512", "regionalFile": "N/A", "parcelIDs": [ - 8958022, - 3244038, - 7457366, - 6789350, - 4237090 + 178749, + 4895027, + 1914989, + 4114328, + 3081065 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2014-10-29", - "completed": "2014-07-27", - "initiated": "2019-02-20", - "ministryContact": "KLEIN JANICK", + "uuid": "6da2cbaa-8520-4c1f-8197-0c79b9b576a1", + "createdAt": "2014-12-15", + "completed": "2018-01-21", + "initiated": "2020-04-25", + "ministryContact": "O'KEEFE TANIA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -5679,33 +6652,44 @@ ], "notationParticipants": [ { + "uuid": "e190f056-2bbf-4807-9978-0c0773540d71", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", + "uuid": "190a7318-aa4b-4b4f-9714-3a031005a832", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", + "uuid": "951f1278-df4e-478e-b2d4-358338058678", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false }, { + "uuid": "05695c46-2e3a-49b9-a9ec-0f708cd60909", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true + }, + { + "uuid": "e4839ba0-a82b-4c3f-a6dc-2786498d6c2d", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2018-09-02", - "completed": "2020-06-30", - "initiated": "2016-02-16", - "ministryContact": "HELLER MERLIN", + "uuid": "62b89d64-23ac-48c0-9795-1b763299646a", + "createdAt": "2014-11-27", + "completed": "2017-04-13", + "initiated": "2018-05-17", + "ministryContact": "KOCH WILL", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -5714,33 +6698,44 @@ ], "notationParticipants": [ { + "uuid": "74758e01-fddb-46e3-a1c9-18ebf440b0f4", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true }, { + "uuid": "44baca63-1f5d-4dd7-9fa1-b028537c3ac5", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true + "role": "SUBMITTED BY", + "siteRegistry": false }, { + "uuid": "ce3c3d83-51ab-4f4f-8452-32d018e2d002", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false }, { + "uuid": "46be32af-2e1d-4141-b227-5989a12c5eba", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "60178074-144d-40f5-b31c-508f8508cbd7", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2021-11-15", - "completed": "2020-09-04", - "initiated": "2018-07-28", - "ministryContact": "HEIDENREICH KIAN", + "uuid": "785222d1-1084-4816-9812-4d11eb6e182e", + "createdAt": "2020-11-25", + "completed": "2021-01-17", + "initiated": "2023-03-27", + "ministryContact": "WALKER RONALDO", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -5749,28 +6744,32 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true + "uuid": "b121ad0f-d6e7-44e7-b486-724629bb3b90", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false }, { + "uuid": "f65df6c7-2c52-412f-aabc-b80174732ff8", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false }, { + "uuid": "66cb80d7-aa01-40b8-8fb2-8cc679eb0cde", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false } ], "siteRegistry": true }, { - "createdAt": "2022-07-21", - "completed": "2021-02-27", - "initiated": "2020-08-14", - "ministryContact": "WARD MONROE", + "uuid": "42480af5-1f3a-42f8-a83e-85d98b3e5737", + "createdAt": "2015-08-31", + "completed": "2018-02-17", + "initiated": "2018-03-07", + "ministryContact": "ROGAHN KAYLEY", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -5779,19 +6778,28 @@ ], "notationParticipants": [ { + "uuid": "e2e41314-14c4-4bba-a4eb-4b7145ce6a2a", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false + "role": "SUBMITTED BY", + "siteRegistry": true }, { + "uuid": "d6df69c5-5463-4225-993e-43dcc4768e31", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": true }, { + "uuid": "c8b9015c-fe74-4e7f-9e75-cde2a4209667", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false + }, + { + "uuid": "b54c45d4-6dc1-4ab3-8db1-57cd697a5cd7", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false } ], "siteRegistry": true @@ -5799,102 +6807,138 @@ ], "participants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2022-12-30", - "startDate": "2016-02-09", + "uuid": "70012a42-0232-4df4-9eb5-69dd5dfcb288", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2016-07-02", + "startDate": "2015-03-15", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": true }, { + "uuid": "4e370c1c-0735-4278-9e9c-55e4341caf4f", "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2018-03-01", - "startDate": "2022-09-04", + "endDate": "2016-04-22", + "startDate": "2020-04-06", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true }, { - "name": "IPSUM", - "endDate": "2016-06-19", - "startDate": "2019-10-24", + "uuid": "7ddec204-4d64-40fc-934e-db302ffc0a69", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2014-11-12", + "startDate": "2019-06-04", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], - "siteRegistry": false + "siteRegistry": true } ], "suspectLandUses": [ { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2020-02-20 (described on Site Profile dated 2020-02-20)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "uuid": "7eb87921-dfec-430d-86fa-d042d113eee8", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2022-11-24 (described on Site Profile dated 2022-11-24)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { + "uuid": "55805788-0444-4808-aad1-5c4d44d03d70", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-05-30 (described on Site Profile dated 2014-05-30)", + "notes": "INSERTED FOR SITE PROFILE DATED 2018-07-05 (described on Site Profile dated 2018-07-05)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "uuid": "3a7c7216-33d0-4a59-9161-37fe611bb3fc", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2014-08-01 (described on Site Profile dated 2014-08-01)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "uuid": "86c2e03b-965d-4374-a126-291a665ab4c7", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2022-07-26 (described on Site Profile dated 2022-07-26)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], "parcelDescriptions": [ { - "siteRegistry": true, - "dateNoted": "2015-03-15", - "parcelID": "19707", - "crownLandUsePIN": "15427", - "crownLandFileNumber": "16401", - "landDescription": "LOT 5 OF LOT 1 BLOCK 2 DISTRICT LOT 5 PLAN 8847" - }, - { + "uuid": "5552b22d-a792-43a2-ab41-4c18a71e684b", "siteRegistry": false, - "dateNoted": "2018-04-08", - "parcelID": "19669", - "crownLandUsePIN": "19925", - "crownLandFileNumber": "15917", - "landDescription": "LOT 3 OF LOT 5 BLOCK 4 DISTRICT LOT 5 PLAN 9277" + "dateNoted": "2020-09-19", + "parcelID": "20298", + "crownLandUsePIN": "16234", + "crownLandFileNumber": "18485", + "landDescription": "LOT 5 OF LOT 3 BLOCK 5 DISTRICT LOT 4 PLAN 8094" }, { - "siteRegistry": false, - "dateNoted": "2021-03-22", - "parcelID": "20703", - "crownLandUsePIN": "18991", - "crownLandFileNumber": "20284", - "landDescription": "LOT 4 OF LOT 5 BLOCK 4 DISTRICT LOT 2 PLAN 4175" + "uuid": "8825d7d5-a136-419e-8132-ce9032992770", + "siteRegistry": true, + "dateNoted": "2022-04-09", + "parcelID": "17456", + "crownLandUsePIN": "19669", + "crownLandFileNumber": "16805", + "landDescription": "LOT 4 OF LOT 1 BLOCK 3 DISTRICT LOT 3 PLAN 8441" }, { + "uuid": "dc3d1f80-44c0-4901-ab37-3096d02921ab", "siteRegistry": true, - "dateNoted": "2015-01-20", - "parcelID": "18214", - "crownLandUsePIN": "19936", - "crownLandFileNumber": "18966", - "landDescription": "LOT 4 OF LOT 4 BLOCK 2 DISTRICT LOT 4 PLAN 7391" + "dateNoted": "2014-03-24", + "parcelID": "19234", + "crownLandUsePIN": "18061", + "crownLandFileNumber": "16403", + "landDescription": "LOT 2 OF LOT 2 BLOCK 1 DISTRICT LOT 1 PLAN 9405" + }, + { + "uuid": "2c4aaf5f-bbb1-456e-82d2-5e0aa1c618af", + "siteRegistry": false, + "dateNoted": "2022-02-20", + "parcelID": "16841", + "crownLandUsePIN": "16442", + "crownLandFileNumber": "15812", + "landDescription": "LOT 3 OF LOT 1 BLOCK 4 DISTRICT LOT 3 PLAN 5256" } ], "siteDisclosures": [ { + "uuid": "3a208369-97ad-4b2c-8559-ef4d2cf207e8", "siteRegistry": true, - "dateReceived": "2014-09-17", - "dateCompleted": "2016-01-24", - "dateEntered": "2016-05-15", - "dateRegistrar": "2021-05-26", - "dateLocalAuthorityReceived": "2018-04-23", - "summary": "Quia quae vitae cum officiis quidem suscipit sequi odit.\nRatione dolore hic cumque nemo suscipit blanditiis impedit consequuntur nam.\nReiciendis eveniet quaerat numquam occaecati tempore voluptatum voluptatem quisquam quaerat.", - "informationUsed": "Tempore nisi aliquam dolorem a fugiat.\nDolor facere autem nam provident repudiandae modi quia corporis.\nQuasi nesciunt eos nulla labore nobis.\nEveniet amet nemo culpa.", - "pastOrPresentOrders": "Aliquam doloremque doloribus veritatis est architecto ullam quod.\nFugiat a maiores ipsum maiores necessitatibus.\nVelit expedita temporibus itaque corrupti a nulla error suscipit praesentium.", + "dateReceived": "2022-10-22", + "dateCompleted": "2020-10-20", + "dateEntered": "2015-07-21", + "dateRegistrar": "2017-08-14", + "dateLocalAuthorityReceived": "2016-11-29", + "summary": "Atque error molestias.\nVeritatis maiores ullam quia ipsam sequi optio nemo.\nMinus asperiores repudiandae.", + "informationUsed": "Cumque possimus similique veritatis.\nSoluta consequatur nisi.\nDeleniti earum modi aspernatur odit nihil fugiat aut consequuntur rerum.\nOdio at voluptatem asperiores.\nConsequatur repellendus ad eius illo laboriosam nesciunt.", + "pastOrPresentOrders": "Quas corrupti nobis incidunt.\nOdio eum illo illum doloremque ipsam similique similique.", "commercialAndIndustrialPurposes": [ { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "uuid": "e4885dbc-8fa8-47bc-8264-188547b8518e", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false }, { + "uuid": "cbfa294a-eade-4325-99d5-c70e75edf97c", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "uuid": "6922c3b5-9091-4967-9a50-36b6727244ee", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "uuid": "dcc32d7f-d37b-4324-8de5-e3bc147739fc", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false } ] @@ -5902,96 +6946,94 @@ ], "activityLog": [ { + "uuid": "e9f248fc-aeb4-48bc-883b-db44268def33", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "BERGNAUM DASHAWN", - "timestamp": "2018-08-16" - }, - { - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "LANGWORTH ROWAN", - "timestamp": "2021-08-03" + "user": "BREITENBERG QUEENIE", + "timestamp": "2015-03-05" }, { + "uuid": "fb9e6ef9-0d1c-4c84-b466-b0c5204067db", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "CASPER ANSLEY", - "timestamp": "2018-11-04" + "user": "GUTKOWSKI MAXIMUS", + "timestamp": "2016-02-19" }, { + "uuid": "5df4ae11-64b5-4b5c-ae88-fe43c213fa3e", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "WISOKY CAROLYNE", - "timestamp": "2020-12-06" - }, - { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "DAUGHERTY BETTYE", - "timestamp": "2022-11-15" - }, - { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "ZIEME KIRSTIN", - "timestamp": "2015-04-08" + "user": "BAILEY LORENZA", + "timestamp": "2020-11-14" }, { + "uuid": "2fbf21cc-010b-4cad-b24f-f9577c321216", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "SCHNEIDER ALANIS", - "timestamp": "2020-11-27" + "user": "DECKOW HILLARY", + "timestamp": "2020-04-12" }, { - "siteRegistry": false, + "uuid": "ea73bdf9-4f5a-45dd-91be-e1ef7f5ac8df", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "ULLRICH PRICE", - "timestamp": "2016-03-26" + "user": "HINTZ ASHTON", + "timestamp": "2014-10-04" } ], "associatedSites": [ { - "dateNoted": "2021-06-09", + "uuid": "d98aa318-999a-4a70-b36e-286b343d891c", + "dateNoted": "2013-12-12", + "notes": "", + "parcelID": "17655", + "siteID": "19897", + "siteRegistry": false + }, + { + "uuid": "73f06d0f-4b87-4ab3-96a9-4caf380a4ef5", + "dateNoted": "2021-01-26", "notes": "", - "parcelID": "18653", - "siteID": "16278", + "parcelID": "18931", + "siteID": "20699", "siteRegistry": true }, { - "dateNoted": "2023-09-26", + "uuid": "76bb6874-647d-4cab-99d1-5d4b41ef1746", + "dateNoted": "2021-06-22", "notes": "", - "parcelID": "19954", - "siteID": "18787", - "siteRegistry": false + "parcelID": "15786", + "siteID": "17920", + "siteRegistry": true } ] }, { - "uuid": "15e13fac-6cd6-43b5-ba85-2f221dbd01fc", - "siteID": 19391, - "address": "818 McDermott Extensions", - "latitude": 56.4158, - "longitude": -137.529, - "lastUpdated": "2019-08-31", - "city": "Jacobsontown", + "uuid": "418726ac-017a-4cd2-bbb6-ab0bd749de83", + "siteID": 18504, + "address": "156 Wintheiser Turnpike", + "latitude": 56.8343, + "longitude": -129.159, + "lastUpdated": "2018-11-27", + "city": "Fort Aiden", "region": "Kootenay", - "victoriaFile": "26250-20/2124", + "victoriaFile": "26250-20/6259", "regionalFile": "N/A", "parcelIDs": [ - 7266599, - 2633510, - 5174334, - 4640175, - 4139616 + 2620905, + 3276629, + 2461501, + 1816631, + 3210000 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2015-09-11", - "completed": "2018-03-17", - "initiated": "2015-02-07", - "ministryContact": "RUNOLFSSON TYREEK", + "uuid": "4357edbc-1b7c-4e81-ac6f-42fe59ad356a", + "createdAt": "2021-05-16", + "completed": "2018-09-15", + "initiated": "2021-03-25", + "ministryContact": "TILLMAN DEWAYNE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -6000,28 +7042,32 @@ ], "notationParticipants": [ { + "uuid": "a29b9eed-3fb5-4e01-8a75-80fb014899fb", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { + "uuid": "7d07f3db-9a58-4f05-98a2-c2962c0889ca", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true + }, + { + "uuid": "7c69bd6a-aab5-48ab-82ce-9a99d3a5d230", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true } ], "siteRegistry": false }, { - "createdAt": "2017-11-25", - "completed": "2015-10-26", - "initiated": "2019-11-26", - "ministryContact": "LANGWORTH LOWELL", + "uuid": "88ac32c0-a8c8-474a-894e-4aa59ac40570", + "createdAt": "2018-05-01", + "completed": "2016-01-02", + "initiated": "2014-04-23", + "ministryContact": "WIEGAND KRYSTINA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -6030,23 +7076,44 @@ ], "notationParticipants": [ { + "uuid": "2a3133dd-99b0-407b-a234-2454e12e2d90", "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "f74fa66d-cce9-454a-b35e-7c408c91f37e", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "uuid": "dcefcafa-724f-4130-a8c6-17a876c0af07", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", "siteRegistry": true }, { + "uuid": "53804f61-1ded-4dec-969b-f13e3bd82521", "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "b4223b19-838a-4ae9-b251-c4d9544d5b26", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true } ], "siteRegistry": false }, { - "createdAt": "2019-11-25", - "completed": "2023-02-05", - "initiated": "2017-05-13", - "ministryContact": "PURDY KENYON", + "uuid": "e788db50-3762-44c2-be8f-a4475d6ea86d", + "createdAt": "2015-11-20", + "completed": "2017-08-30", + "initiated": "2014-02-25", + "ministryContact": "WILLMS MIA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -6055,54 +7122,84 @@ ], "notationParticipants": [ { + "uuid": "5f17f878-f8a3-4ab0-8b5f-fb6fefa1ea52", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false }, { + "uuid": "11c8fae2-6711-4760-a60c-c8250720ffc4", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", "siteRegistry": false } ], "siteRegistry": false - } - ], - "participants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2019-04-26", - "startDate": "2016-04-30", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2023-06-30", - "startDate": "2015-09-08", + "uuid": "0b79c28b-90a9-4646-b4d0-7f3329bfb7b9", + "createdAt": "2017-01-04", + "completed": "2017-10-24", + "initiated": "2022-08-28", + "ministryContact": "LEDNER TRENT", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "uuid": "758ae79d-e8b5-4823-9fa3-1f90eb4f2649", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "5925f371-be76-4d22-b45b-d2a50913577b", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "c2242941-7b8b-41ed-8def-d4e75a235f42", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "uuid": "161ea38f-3ed1-49d1-8537-41cf71a71289", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "d25f6a7f-f83f-4394-94ed-66beaeebf9b7", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + } + ], + "participants": [ + { + "uuid": "12fd7bed-951b-46cd-9f97-e6a98ea91293", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2022-07-23", + "startDate": "2017-04-10", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": true + "siteRegistry": false }, { + "uuid": "320bfcf9-50f0-49ea-8ee9-5c7abc6999d6", "name": "AMET, DOLOR SIT", - "endDate": "2023-05-04", - "startDate": "2019-07-01", + "endDate": "2014-01-30", + "startDate": "2015-05-31", "notes": "", "roles": [ "ORGANIZATION" @@ -6110,100 +7207,147 @@ "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2021-04-06", - "startDate": "2021-06-17", + "uuid": "18aea9a1-b78b-446c-98f4-a12dcc9bee46", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2015-09-12", + "startDate": "2020-11-29", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false }, { + "uuid": "1f8f291a-eeee-4991-903d-c9d62bb505ca", "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2019-05-12", - "startDate": "2022-06-29", + "endDate": "2016-06-25", + "startDate": "2020-10-27", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": true } ], "suspectLandUses": [ { + "uuid": "126d40b0-bc60-4055-9d81-c811df9777a2", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2023-09-01 (described on Site Profile dated 2023-09-01)", + "notes": "INSERTED FOR SITE PROFILE DATED 2015-06-05 (described on Site Profile dated 2015-06-05)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { + "uuid": "ba15aaea-8f3e-40ca-a84c-8625b2abebd1", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-10-30 (described on Site Profile dated 2022-10-30)", + "notes": "INSERTED FOR SITE PROFILE DATED 2019-02-23 (described on Site Profile dated 2019-02-23)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], "parcelDescriptions": [ { - "siteRegistry": true, - "dateNoted": "2014-09-23", - "parcelID": "19905", - "crownLandUsePIN": "19836", - "crownLandFileNumber": "16936", - "landDescription": "LOT 4 OF LOT 3 BLOCK 2 DISTRICT LOT 2 PLAN 5145" - }, - { + "uuid": "7aa5fb41-8aeb-4430-924a-e74dc3d870ff", "siteRegistry": false, - "dateNoted": "2022-12-01", - "parcelID": "16039", - "crownLandUsePIN": "16299", - "crownLandFileNumber": "19104", - "landDescription": "LOT 2 OF LOT 4 BLOCK 1 DISTRICT LOT 5 PLAN 3211" + "dateNoted": "2014-03-23", + "parcelID": "15263", + "crownLandUsePIN": "18163", + "crownLandFileNumber": "16104", + "landDescription": "LOT 1 OF LOT 4 BLOCK 3 DISTRICT LOT 4 PLAN 3519" }, { - "siteRegistry": false, - "dateNoted": "2019-08-03", - "parcelID": "16192", - "crownLandUsePIN": "15769", - "crownLandFileNumber": "18149", - "landDescription": "LOT 1 OF LOT 3 BLOCK 4 DISTRICT LOT 2 PLAN 3933" + "uuid": "9e9acb84-dfd1-47d9-9391-99ac0dcd6b04", + "siteRegistry": true, + "dateNoted": "2019-12-25", + "parcelID": "19908", + "crownLandUsePIN": "17107", + "crownLandFileNumber": "18250", + "landDescription": "LOT 2 OF LOT 5 BLOCK 4 DISTRICT LOT 5 PLAN 8925" }, { + "uuid": "64a2e918-9b6e-48b6-ada7-9820f712f840", "siteRegistry": false, - "dateNoted": "2019-03-30", - "parcelID": "17602", - "crownLandUsePIN": "19376", - "crownLandFileNumber": "17955", - "landDescription": "LOT 5 OF LOT 2 BLOCK 3 DISTRICT LOT 4 PLAN 6536" + "dateNoted": "2015-03-28", + "parcelID": "15343", + "crownLandUsePIN": "18080", + "crownLandFileNumber": "17869", + "landDescription": "LOT 5 OF LOT 3 BLOCK 5 DISTRICT LOT 3 PLAN 6844" }, { + "uuid": "b5c52082-d2f8-4337-905b-078aff90b9d3", "siteRegistry": true, - "dateNoted": "2018-05-16", - "parcelID": "17825", - "crownLandUsePIN": "16057", - "crownLandFileNumber": "15895", - "landDescription": "LOT 3 OF LOT 1 BLOCK 4 DISTRICT LOT 4 PLAN 3241" + "dateNoted": "2014-01-17", + "parcelID": "17905", + "crownLandUsePIN": "18231", + "crownLandFileNumber": "19501", + "landDescription": "LOT 3 OF LOT 5 BLOCK 4 DISTRICT LOT 3 PLAN 8058" } ], "siteDisclosures": [ { - "siteRegistry": true, - "dateReceived": "2019-05-26", - "dateCompleted": "2020-09-14", - "dateEntered": "2013-11-17", - "dateRegistrar": "2017-06-27", - "dateLocalAuthorityReceived": "2021-02-22", - "summary": "Placeat at vero suscipit adipisci hic ipsam ut.", - "informationUsed": "Sapiente sed veritatis ratione doloremque.\nVel sed unde quod.\nEaque aut assumenda inventore sed.", - "pastOrPresentOrders": "Aperiam quia molestias animi culpa ipsum.\nSit molestiae atque animi nulla.", + "uuid": "35473474-e71e-4d7c-b41f-590a65e3edf9", + "siteRegistry": false, + "dateReceived": "2021-02-22", + "dateCompleted": "2017-04-23", + "dateEntered": "2016-02-06", + "dateRegistrar": "2020-06-08", + "dateLocalAuthorityReceived": "2017-01-30", + "summary": "Ducimus aliquam commodi.\nHarum aut dolor.\nQuaerat ex voluptates delectus vel similique quas praesentium porro accusantium.", + "informationUsed": "Ad rem est natus.\nAut quidem labore velit.\nConsequatur sequi error libero officia animi.\nAdipisci id amet recusandae tempora rem nesciunt laboriosam repellendus corporis.\nEaque rerum officiis consequatur sunt commodi quisquam necessitatibus distinctio.", + "pastOrPresentOrders": "Totam magni animi iusto magnam vel deserunt in.\nQuidem iure reiciendis excepturi optio porro occaecati atque.", "commercialAndIndustrialPurposes": [ { + "uuid": "2f39aea9-4d75-40a2-babf-f30b56fc4f64", "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "uuid": "b78434a9-861c-46b9-ab0c-be6da833c52b", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "uuid": "4011d75c-6e6a-47d2-9bf0-e11745127a07", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true + } + ] + }, + { + "uuid": "01ca98cd-7476-46f8-8ead-a05abe257a3f", + "siteRegistry": true, + "dateReceived": "2014-05-22", + "dateCompleted": "2017-02-09", + "dateEntered": "2017-04-01", + "dateRegistrar": "2018-10-02", + "dateLocalAuthorityReceived": "2022-02-12", + "summary": "Eius culpa totam culpa laudantium dolor ut reprehenderit iure.\nQuo maxime iste.\nNecessitatibus et hic consectetur.", + "informationUsed": "Ducimus enim aut quo delectus nisi molestias voluptate earum.\nDolorem earum magnam totam aut nam cupiditate odio tempore molestiae.\nTotam dolore blanditiis.", + "pastOrPresentOrders": "Corrupti accusantium reiciendis non.\nVoluptatibus odit dolore.", + "commercialAndIndustrialPurposes": [ + { + "uuid": "e0c76db6-14b5-44ea-a238-9e55d33e1ac5", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "uuid": "18471869-69a6-47d2-ab9b-8ef4a0297ebf", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true }, { + "uuid": "3ae4efdd-6bb8-4eb0-a2d3-afa757b9f6f5", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "uuid": "5e84433f-9b56-4deb-884b-c2fe94f3ca21", "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true } ] @@ -6211,71 +7355,92 @@ ], "activityLog": [ { + "uuid": "82bd2e40-fe7b-442c-999e-eea1a167ea3d", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "ROHAN ELMER", + "timestamp": "2018-09-08" + }, + { + "uuid": "5729880a-269f-4f58-8ddb-2e72db61b939", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "KRIS EMILY", + "timestamp": "2023-09-08" + }, + { + "uuid": "23c19098-a36c-4077-b8b1-f17a63a74c08", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "PAUCEK TAD", - "timestamp": "2020-10-15" + "user": "JASKOLSKI MAURICE", + "timestamp": "2021-12-23" }, { + "uuid": "1d324705-5d8e-40f1-8b1d-5101b4d1db36", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "WEHNER BRIANNE", - "timestamp": "2013-11-09" + "user": "HUEL MCKENZIE", + "timestamp": "2017-02-03" }, { - "siteRegistry": false, + "uuid": "130af291-a8c4-4c31-ad6f-0bda5eb51e66", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "LANGWORTH DERECK", - "timestamp": "2014-02-05" + "user": "ABERNATHY DEE", + "timestamp": "2014-12-25" }, { + "uuid": "2648dd5a-380d-40ae-b323-3443015a1f78", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "REILLY ARYANNA", - "timestamp": "2019-03-28" + "user": "RATH ALI", + "timestamp": "2016-02-09" }, { - "siteRegistry": true, + "uuid": "88745ce2-3428-4379-a670-36f499cae51b", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "BARTOLETTI LUTHER", - "timestamp": "2014-03-29" + "user": "FADEL JOHNNY", + "timestamp": "2013-12-22" } ], "associatedSites": [ { - "dateNoted": "2020-04-01", + "uuid": "2be45b9e-9add-4c06-9c9f-daead184779a", + "dateNoted": "2019-10-19", "notes": "", - "parcelID": "18946", - "siteID": "15837", + "parcelID": "18057", + "siteID": "15396", "siteRegistry": false } ] }, { - "uuid": "5a94cebd-1613-40bf-89f5-f3ba345b4c4e", - "siteID": 19745, - "address": "2209 Wisozk Bridge", - "latitude": 52.1839, - "longitude": -123.4209, - "lastUpdated": "2016-04-02", - "city": "Port Wilma", + "uuid": "8255d046-b0f4-4e54-a8e8-5402864fd0b7", + "siteID": 18833, + "address": "6816 Barrows Underpass", + "latitude": 53.6733, + "longitude": -138.2908, + "lastUpdated": "2021-03-23", + "city": "Akron", "region": "Mainland/Southwest", - "victoriaFile": "26250-20/13330", + "victoriaFile": "26250-20/12376", "regionalFile": "N/A", "parcelIDs": [ - 6431180, - 9436505, - 5334938, - 7497484, - 3085806 + 1907899, + 7511308, + 3727636, + 4377263, + 9666098 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2014-04-24", - "completed": "2014-03-11", - "initiated": "2022-07-23", - "ministryContact": "OSINSKI MELBA", + "uuid": "42c48e4b-9190-4629-821c-81df428c2f2d", + "createdAt": "2014-11-03", + "completed": "2016-04-10", + "initiated": "2022-11-02", + "ministryContact": "DANIEL-KILBACK MYRTICE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -6284,68 +7449,26 @@ ], "notationParticipants": [ { + "uuid": "80d9168f-7bbd-4105-b75f-a8d016e399ec", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - } - ], - "siteRegistry": false - }, - { - "createdAt": "2023-04-19", - "completed": "2019-01-22", - "initiated": "2019-05-24", - "ministryContact": "VOLKMAN HELOISE", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", "siteRegistry": false }, { + "uuid": "175d0152-8aba-4956-bcde-08c5076bceae", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2016-12-30", - "completed": "2014-11-29", - "initiated": "2020-10-19", - "ministryContact": "PROSACCO DEVONTE", + "uuid": "ae3ee2bc-a6c5-414d-8463-7a59d50c1282", + "createdAt": "2023-07-12", + "completed": "2018-04-26", + "initiated": "2016-06-11", + "ministryContact": "RICE EUGENE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -6354,38 +7477,38 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { + "uuid": "46ddcec3-6ea2-4c97-9262-139d1e9af6d9", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true }, { + "uuid": "2f363d8b-ab2f-4838-8071-32fe0d9b6dbf", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false }, { + "uuid": "b6935479-826f-4648-9236-26543725256c", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "8555a799-01d9-44e7-9d97-d551421d7c11", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false } ], "siteRegistry": false }, { - "createdAt": "2022-12-10", - "completed": "2021-06-18", - "initiated": "2014-09-23", - "ministryContact": "MACEJKOVIC SANTINO", + "uuid": "1cd95bcf-4954-4479-8e45-8f236350ddc3", + "createdAt": "2023-01-04", + "completed": "2017-04-01", + "initiated": "2022-09-28", + "ministryContact": "MURPHY ANABEL", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -6394,34 +7517,38 @@ ], "notationParticipants": [ { + "uuid": "6f294285-eeeb-4607-8e6f-1ffc9de9a978", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false }, { + "uuid": "78009d68-a6ee-494c-bb5d-3c73d51d299d", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true } ], "participants": [ { + "uuid": "3d011b1d-8d42-4b3e-8abf-4766595b3e74", + "name": "AMET, DOLOR SIT", + "endDate": "2016-06-05", + "startDate": "2022-07-19", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "uuid": "3003ab44-00e7-4c1b-bc53-57fae15a0c48", "name": "SHELL CANADA PRODUCTS", - "endDate": "2018-10-29", - "startDate": "2014-04-20", + "endDate": "2019-12-20", + "startDate": "2013-12-07", "notes": "", "roles": [ "EMPLOYEE" @@ -6429,186 +7556,217 @@ "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2018-05-30", - "startDate": "2020-01-28", + "uuid": "d4b3b7bd-9446-430a-aa6e-596b0b304aff", + "name": "IPSUM", + "endDate": "2018-11-25", + "startDate": "2014-12-13", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": true + "siteRegistry": false } ], "suspectLandUses": [ { + "uuid": "d5a0708b-4706-415e-9f60-58752998e657", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2019-11-29 (described on Site Profile dated 2019-11-29)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "uuid": "b0f01e2c-8ce5-4ddc-b6d4-88c43b3a3a5e", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-09-16 (described on Site Profile dated 2014-09-16)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "notes": "INSERTED FOR SITE PROFILE DATED 2020-08-15 (described on Site Profile dated 2020-08-15)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { + "uuid": "3e09c590-e99c-4f19-96b1-0b0ed5364394", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-09-21 (described on Site Profile dated 2016-09-21)", + "notes": "INSERTED FOR SITE PROFILE DATED 2021-01-11 (described on Site Profile dated 2021-01-11)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2020-11-04 (described on Site Profile dated 2020-11-04)", + "uuid": "4e1f9c25-eebe-43fd-837f-127ee30e6a17", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2023-02-04 (described on Site Profile dated 2023-02-04)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "uuid": "dff4951f-1aca-4854-a142-b7c5bc7c46e2", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2017-03-14 (described on Site Profile dated 2017-03-14)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], "parcelDescriptions": [ { + "uuid": "da8dc81f-132c-4c17-8b8e-b0010d246822", "siteRegistry": false, - "dateNoted": "2023-08-25", - "parcelID": "16747", - "crownLandUsePIN": "19552", - "crownLandFileNumber": "17132", - "landDescription": "LOT 4 OF LOT 2 BLOCK 4 DISTRICT LOT 3 PLAN 9659" + "dateNoted": "2016-04-04", + "parcelID": "16186", + "crownLandUsePIN": "17218", + "crownLandFileNumber": "18308", + "landDescription": "LOT 1 OF LOT 2 BLOCK 1 DISTRICT LOT 5 PLAN 5468" + }, + { + "uuid": "795c1124-88a6-42af-84ed-043e50d387c8", + "siteRegistry": true, + "dateNoted": "2020-05-04", + "parcelID": "18803", + "crownLandUsePIN": "17654", + "crownLandFileNumber": "20616", + "landDescription": "LOT 5 OF LOT 2 BLOCK 2 DISTRICT LOT 5 PLAN 3326" + }, + { + "uuid": "fffff2e5-0a80-4e07-8cbc-c824486fdfc8", + "siteRegistry": true, + "dateNoted": "2014-02-09", + "parcelID": "17624", + "crownLandUsePIN": "18345", + "crownLandFileNumber": "16028", + "landDescription": "LOT 2 OF LOT 2 BLOCK 2 DISTRICT LOT 2 PLAN 3138" }, { + "uuid": "ffa394d0-f860-44c2-938b-f8e90b39368c", "siteRegistry": false, - "dateNoted": "2016-08-11", - "parcelID": "20358", - "crownLandUsePIN": "18490", - "crownLandFileNumber": "20132", - "landDescription": "LOT 2 OF LOT 4 BLOCK 3 DISTRICT LOT 3 PLAN 6552" + "dateNoted": "2016-01-31", + "parcelID": "16824", + "crownLandUsePIN": "19450", + "crownLandFileNumber": "16801", + "landDescription": "LOT 4 OF LOT 4 BLOCK 5 DISTRICT LOT 3 PLAN 5876" } ], "siteDisclosures": [ { - "siteRegistry": false, - "dateReceived": "2020-01-19", - "dateCompleted": "2016-05-10", - "dateEntered": "2020-04-15", - "dateRegistrar": "2023-04-03", - "dateLocalAuthorityReceived": "2015-09-11", - "summary": "Eos veritatis expedita.\nAccusamus a cumque veritatis cum provident odio ipsam vero beatae.\nOccaecati neque perferendis hic nobis sit iure pariatur accusamus.", - "informationUsed": "Eos quidem inventore sed optio.\nEius ipsum laborum totam beatae beatae numquam labore aliquid corporis.\nExercitationem ea iusto mollitia necessitatibus.\nLaboriosam laborum commodi reiciendis.", - "pastOrPresentOrders": "Aliquam sed fuga suscipit odio doloremque labore deleniti expedita cum.\nRepellat eveniet sapiente corrupti voluptatum modi quod pariatur eius.\nPorro error recusandae.", + "uuid": "626117d7-8a36-4a73-9289-206ec28267ff", + "siteRegistry": true, + "dateReceived": "2021-09-03", + "dateCompleted": "2022-07-07", + "dateEntered": "2018-05-19", + "dateRegistrar": "2020-03-31", + "dateLocalAuthorityReceived": "2021-07-05", + "summary": "Officia sint ullam repudiandae.\nSoluta deleniti eligendi aliquam.\nRepellat esse tempore facere consectetur soluta libero aliquid magni quo.", + "informationUsed": "Pariatur accusamus illum.\nQuas at praesentium nostrum iure.\nInventore nemo ut.", + "pastOrPresentOrders": "Accusamus quos vero.\nNumquam est iste ullam saepe illo.", "commercialAndIndustrialPurposes": [ { + "uuid": "2abbee61-1df1-40c7-b648-0a741c884016", "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true - }, - { - "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false }, { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true + "uuid": "f128faee-cc38-42ac-854f-a0246dbc786f", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false } ] } ], "activityLog": [ { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "SHANAHAN SONNY", - "timestamp": "2018-07-16" - }, - { + "uuid": "08de02e2-62e4-4aee-ae44-d5b15dbc3953", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "SMITHAM OVA", - "timestamp": "2018-01-25" + "user": "PFEFFER ADRIANNA", + "timestamp": "2017-11-09" }, { - "siteRegistry": true, + "uuid": "195bdbcb-704a-4852-a519-dd34bcebc6c8", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "WEIMANN GLADYS", - "timestamp": "2018-03-24" + "user": "JERDE OWEN", + "timestamp": "2014-12-08" }, { - "siteRegistry": true, + "uuid": "7c71678c-e740-42dc-9d79-3d5a64283513", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "SCHMITT MITTIE", - "timestamp": "2015-03-31" + "user": "SPORER HYMAN", + "timestamp": "2019-01-21" }, { - "siteRegistry": true, + "uuid": "df188e5b-ba0c-4f93-8451-99bd23c030fe", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "GOLDNER STONE", - "timestamp": "2015-05-15" + "user": "HOMENICK JOHNATHAN", + "timestamp": "2021-07-09" }, { + "uuid": "851f20df-428a-406c-b56e-d40ed60a0538", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "NICOLAS IVORY", - "timestamp": "2018-04-24" + "user": "ULLRICH OVA", + "timestamp": "2016-05-19" }, { + "uuid": "3e71fbd2-6603-4ac1-a0fa-61feec711c8b", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "KULAS-EFFERTZ CLOTILDE", - "timestamp": "2015-06-03" + "user": "SHANAHAN CHANEL", + "timestamp": "2017-12-05" }, { + "uuid": "c5285ecf-8998-46c1-b3ee-d0e7d428c667", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "CONNELLY JAZMYNE", - "timestamp": "2023-09-03" + "user": "WEISSNAT JUSTINA", + "timestamp": "2018-07-16" + }, + { + "uuid": "b895ee81-28aa-4d72-b547-314e1c629ccf", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "ABERNATHY DARIO", + "timestamp": "2017-04-19" }, { + "uuid": "b7a05c4c-8453-4eaf-ad43-08eeb2f66104", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "BOSCO CRISTOPHER", - "timestamp": "2018-10-29" + "user": "CHRISTIANSEN BRANSON", + "timestamp": "2015-04-22" } ], "associatedSites": [ { - "dateNoted": "2021-07-27", - "notes": "", - "parcelID": "20545", - "siteID": "20549", - "siteRegistry": false - }, - { - "dateNoted": "2020-06-07", - "notes": "", - "parcelID": "18123", - "siteID": "16285", - "siteRegistry": true - }, - { - "dateNoted": "2019-02-12", + "uuid": "02060ea4-d0e6-4561-9437-368bb587c184", + "dateNoted": "2017-01-22", "notes": "", - "parcelID": "18482", - "siteID": "18191", + "parcelID": "19796", + "siteID": "15852", "siteRegistry": false } ] }, { - "uuid": "18db3b0e-9ab7-46c8-bdea-782aa250fd10", - "siteID": 15681, - "address": "2918 Harley Rest", - "latitude": 57.5714, - "longitude": -126.8681, - "lastUpdated": "2022-08-04", - "city": "Thompsonberg", - "region": "Kootenay", - "victoriaFile": "26250-20/19576", + "uuid": "cba19489-2da9-4b33-a838-fa7f20358055", + "siteID": 16560, + "address": "40785 Murphy Bridge", + "latitude": 50.2757, + "longitude": -119.1716, + "lastUpdated": "2015-05-04", + "city": "Lake Icieland", + "region": "Thompson-Okanagan", + "victoriaFile": "26250-20/7747", "regionalFile": "N/A", "parcelIDs": [ - 2043988, - 198775, - 9040433, - 4930746, - 4895254 + 5262984, + 6584064, + 1545460, + 2745327, + 3952706 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2018-01-19", - "completed": "2021-08-29", - "initiated": "2020-05-14", - "ministryContact": "WOLFF ROWAN", + "uuid": "2e03d2b4-3356-42c3-baab-75fce03aa79a", + "createdAt": "2017-11-25", + "completed": "2017-02-02", + "initiated": "2023-03-03", + "ministryContact": "PARKER MAYBELL", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -6617,38 +7775,26 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { + "uuid": "e4d9d917-40ff-45fa-ba2c-cd804d5eac81", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { + "uuid": "a9a879b3-551e-40ae-8426-9914f504b98b", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2023-06-22", - "completed": "2017-06-01", - "initiated": "2016-11-21", - "ministryContact": "WALKER ZOLA", + "uuid": "397b40ce-eaca-431c-a68a-94c86d117a2e", + "createdAt": "2014-07-31", + "completed": "2015-05-05", + "initiated": "2022-05-10", + "ministryContact": "HICKLE BRADLY", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -6657,28 +7803,27 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { + "uuid": "e664e233-047a-400a-9969-780f43e9ebaa", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true }, { + "uuid": "6fb1f8b4-3266-4662-93bf-4fa69acee5a6", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false }, { + "uuid": "03730bb5-e9ac-47e7-8917-2dd305259033", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "fa524b0a-5c3b-4560-9bd0-a5f804e9ccf2", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": false } ], @@ -6687,29 +7832,10 @@ ], "participants": [ { + "uuid": "504a3c0a-f7be-4ed0-b9c7-61b032d67d85", "name": "IPSUM", - "endDate": "2014-06-02", - "startDate": "2021-03-07", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2020-12-14", - "startDate": "2019-02-22", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2021-05-05", - "startDate": "2015-03-08", + "endDate": "2022-03-18", + "startDate": "2015-02-10", "notes": "", "roles": [ "EMPLOYEE" @@ -6717,19 +7843,10 @@ "siteRegistry": true }, { + "uuid": "7886bd34-7777-4269-9b40-1b4a7e356e56", "name": "SHELL CANADA PRODUCTS", - "endDate": "2021-01-02", - "startDate": "2021-05-29", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": true - }, - { - "name": "AMET, DOLOR SIT", - "endDate": "2022-07-18", - "startDate": "2016-03-27", + "endDate": "2020-05-25", + "startDate": "2020-05-11", "notes": "", "roles": [ "ORGANIZATION" @@ -6739,179 +7856,190 @@ ], "suspectLandUses": [ { + "uuid": "f2b6fe14-813f-4a9a-bd92-5c0ae7239cb4", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2020-01-28 (described on Site Profile dated 2020-01-28)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" - }, - { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-04-18 (described on Site Profile dated 2016-04-18)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "notes": "INSERTED FOR SITE PROFILE DATED 2014-01-22 (described on Site Profile dated 2014-01-22)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { + "uuid": "460aedd4-386b-4188-94f4-f86520621815", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-12-18 (described on Site Profile dated 2021-12-18)", + "notes": "INSERTED FOR SITE PROFILE DATED 2016-02-26 (described on Site Profile dated 2016-02-26)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-10-04 (described on Site Profile dated 2014-10-04)", + "uuid": "59ca5b86-d306-43a6-abcf-8df241f563e0", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2014-05-24 (described on Site Profile dated 2014-05-24)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { + "uuid": "72206ca6-6bb4-4153-8cca-f2ce67e598c1", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2020-07-12 (described on Site Profile dated 2020-07-12)", + "notes": "INSERTED FOR SITE PROFILE DATED 2014-03-07 (described on Site Profile dated 2014-03-07)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "uuid": "f7fe13a3-084e-409e-bb95-64966cd42664", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2018-10-14 (described on Site Profile dated 2018-10-14)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], "parcelDescriptions": [ { + "uuid": "2acde174-72b2-4cfb-9733-a883c10f90dc", "siteRegistry": true, - "dateNoted": "2018-09-05", - "parcelID": "18522", - "crownLandUsePIN": "20195", - "crownLandFileNumber": "18500", - "landDescription": "LOT 5 OF LOT 1 BLOCK 5 DISTRICT LOT 5 PLAN 5321" + "dateNoted": "2023-05-24", + "parcelID": "20465", + "crownLandUsePIN": "18949", + "crownLandFileNumber": "19129", + "landDescription": "LOT 2 OF LOT 1 BLOCK 2 DISTRICT LOT 3 PLAN 6402" }, { + "uuid": "f0bad00a-89e6-4157-a7bb-99fd69729d8e", "siteRegistry": false, - "dateNoted": "2018-01-06", - "parcelID": "18696", - "crownLandUsePIN": "17316", - "crownLandFileNumber": "20740", - "landDescription": "LOT 1 OF LOT 2 BLOCK 2 DISTRICT LOT 4 PLAN 7963" + "dateNoted": "2022-11-14", + "parcelID": "15264", + "crownLandUsePIN": "17112", + "crownLandFileNumber": "16514", + "landDescription": "LOT 2 OF LOT 3 BLOCK 4 DISTRICT LOT 1 PLAN 5830" + }, + { + "uuid": "a1b33c82-b8a4-43d7-b170-00ea4b90f695", + "siteRegistry": true, + "dateNoted": "2016-11-13", + "parcelID": "15748", + "crownLandUsePIN": "18606", + "crownLandFileNumber": "16818", + "landDescription": "LOT 3 OF LOT 5 BLOCK 3 DISTRICT LOT 4 PLAN 4619" } ], "siteDisclosures": [ { + "uuid": "ea264da5-a681-4c8d-9e2f-7441d3ad97c3", "siteRegistry": true, - "dateReceived": "2022-09-08", - "dateCompleted": "2015-01-28", - "dateEntered": "2017-08-19", - "dateRegistrar": "2022-03-14", - "dateLocalAuthorityReceived": "2021-09-04", - "summary": "Sed autem ratione.\nEst eaque iure fuga necessitatibus quia.", - "informationUsed": "Reiciendis exercitationem sed porro quasi quod adipisci facere debitis.\nAb modi quidem facere aut quidem.\nLaborum libero facere cumque.", - "pastOrPresentOrders": "Alias nesciunt hic alias quos necessitatibus.", + "dateReceived": "2015-12-05", + "dateCompleted": "2015-03-12", + "dateEntered": "2017-06-23", + "dateRegistrar": "2020-12-30", + "dateLocalAuthorityReceived": "2022-03-14", + "summary": "Eos nam dolorem eligendi vel.", + "informationUsed": "Corrupti assumenda praesentium qui consectetur illum beatae ab quod.\nAb odio quos quaerat.\nFacilis incidunt numquam hic natus.\nIusto iure cum magni.\nQuam et modi sequi harum cumque facere modi.", + "pastOrPresentOrders": "Tempora maiores ab voluptate perferendis alias sequi ex laboriosam maiores.\nEnim laudantium accusamus totam omnis.", "commercialAndIndustrialPurposes": [ { + "uuid": "4c5dbdba-3335-4753-b238-b7809645877d", "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false - }, - { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, { + "uuid": "0d47b7c7-c56d-4324-96ab-2ce9d0d58554", "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false - } - ] - }, - { - "siteRegistry": true, - "dateReceived": "2014-02-19", - "dateCompleted": "2018-02-21", - "dateEntered": "2013-12-30", - "dateRegistrar": "2023-02-07", - "dateLocalAuthorityReceived": "2018-07-03", - "summary": "Eius fugit minima recusandae sed ea.\nVoluptates id sunt.\nHarum dignissimos repellendus earum.", - "informationUsed": "Itaque totam recusandae alias quaerat odit.\nDignissimos magnam ratione ea labore aut sed.\nRem numquam id eveniet dolorem.", - "pastOrPresentOrders": "Quas officia autem aspernatur possimus non labore possimus.\nDignissimos inventore harum non odio cumque.\nTempora excepturi dolores veritatis a minus corrupti.", - "commercialAndIndustrialPurposes": [ - { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false - }, - { - "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true - }, - { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true - }, - { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false } ] } ], "activityLog": [ { + "uuid": "b4d63466-08bc-41d8-8eb0-b45b2714a618", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "PAGAC LINNEA", + "timestamp": "2019-07-19" + }, + { + "uuid": "cd51b9eb-6a90-4489-b87a-3976fa443afe", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "KUPHAL PEARL", - "timestamp": "2017-02-09" + "user": "COLLINS MOSE", + "timestamp": "2023-09-24" }, { + "uuid": "2f316818-8019-4159-9916-02e9d221478b", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "KIRLIN-ARMSTRONG MERL", - "timestamp": "2013-11-23" + "user": "BASHIRIAN ZOIE", + "timestamp": "2016-08-02" }, { + "uuid": "47088b5e-b952-48ce-8e45-e67d22f43f59", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "KLING CARY", - "timestamp": "2021-06-04" + "user": "PACOCHA CHARITY", + "timestamp": "2022-08-09" }, { - "siteRegistry": true, + "uuid": "85ec6c30-eafb-44eb-bfdb-e1251b6e3be2", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "BREITENBERG GARETT", - "timestamp": "2023-06-14" + "user": "REYNOLDS ENOCH", + "timestamp": "2020-02-29" }, { + "uuid": "bcc3ece5-d23c-4767-99bf-9e73b67e2a51", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "BORER TRYSTAN", - "timestamp": "2014-02-05" + "user": "O'KEEFE LEORA", + "timestamp": "2019-06-09" } ], "associatedSites": [ { - "dateNoted": "2016-08-04", + "uuid": "a4349c7b-ee4a-40db-b2da-82255fc3c99c", + "dateNoted": "2020-01-22", + "notes": "", + "parcelID": "15914", + "siteID": "18986", + "siteRegistry": true + }, + { + "uuid": "3455e74b-567d-49d1-9bd3-5e5657f87ef9", + "dateNoted": "2015-03-14", "notes": "", - "parcelID": "20873", - "siteID": "18797", + "parcelID": "20317", + "siteID": "18069", "siteRegistry": true + }, + { + "uuid": "97a6279c-ff8f-4265-b22a-d1c461c80dd1", + "dateNoted": "2016-07-26", + "notes": "", + "parcelID": "20235", + "siteID": "16364", + "siteRegistry": false } ] }, { - "uuid": "1e17131a-1fe4-43b5-8eb4-0e287f988807", - "siteID": 16305, - "address": "905 Irma Loaf", - "latitude": 52.3883, - "longitude": -128.1855, - "lastUpdated": "2018-07-12", - "city": "Lilyanfurt", - "region": "Mainland/Southwest", - "victoriaFile": "26250-20/4082", + "uuid": "d063a641-6d40-479c-8a62-6ba462702b50", + "siteID": 15514, + "address": "15102 Ratke Stravenue", + "latitude": 52.5704, + "longitude": -127.6131, + "lastUpdated": "2020-02-03", + "city": "North Concepcionfort", + "region": "Vancouver Island/Coast", + "victoriaFile": "26250-20/2124", "regionalFile": "N/A", "parcelIDs": [ - 4039084, - 7389918, - 3706863, - 1891038, - 2483352 + 4252611, + 7983471, + 3749776, + 1136570, + 4325881 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2017-06-26", - "completed": "2023-05-30", - "initiated": "2022-04-12", - "ministryContact": "HARTMANN TYRESE", + "uuid": "b778a548-f8be-4f6f-ab03-e4cebe9b49f1", + "createdAt": "2019-03-11", + "completed": "2013-11-25", + "initiated": "2016-05-06", + "ministryContact": "LEUSCHKE VIVIANE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -6920,33 +8048,38 @@ ], "notationParticipants": [ { + "uuid": "2856bb8d-8131-4e86-84cf-a516326439d5", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true + "role": "REQUESTED BY", + "siteRegistry": false }, { + "uuid": "d2a1da7b-6f9f-42ef-b922-3a08808e216f", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { + "uuid": "5db3b912-9f4f-4554-a2f2-177a4c86fdca", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false + "uuid": "9680e848-6374-4b90-898a-e00e96b75b44", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2019-10-22", - "completed": "2014-06-20", - "initiated": "2017-12-23", - "ministryContact": "MORAR DARRION", + "uuid": "5c010bf8-7a41-461e-b00e-6da64f085a8f", + "createdAt": "2017-04-25", + "completed": "2014-08-10", + "initiated": "2020-03-02", + "ministryContact": "WALKER GAIL", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -6955,33 +8088,60 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "uuid": "50190c50-9471-4e49-b23b-cb65d3004a6a", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", "siteRegistry": false }, { + "uuid": "8b97c2d0-d5eb-4955-9611-6d555a603e3c", "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "uuid": "ec5d349d-07e6-46f9-a66d-21356432347e", + "createdAt": "2014-08-07", + "completed": "2022-11-13", + "initiated": "2020-06-26", + "ministryContact": "CARROLL GIOVANI", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "uuid": "bf5e5431-3df3-4486-9366-dd3923917e89", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false }, { + "uuid": "ec3349b4-39c2-4a90-9a59-ad642d44935d", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", + "uuid": "d637c923-cdd5-4418-ba4b-2a88858fc3d6", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2016-02-10", - "completed": "2018-08-24", - "initiated": "2016-02-21", - "ministryContact": "BINS FLETA", + "uuid": "44683915-11ef-47c0-a71b-f143da955bdc", + "createdAt": "2019-01-05", + "completed": "2021-06-06", + "initiated": "2014-03-22", + "ministryContact": "CORKERY LAVERNE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -6990,26 +8150,59 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "ed1907ba-c58e-46a6-be65-841a90b6efe9", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "c9496086-6aa8-4b19-93c7-9976e6537772", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false }, { + "uuid": "2cc85928-e4fd-42cc-aca0-8e343135888b", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true }, { + "uuid": "0cf31bef-e845-406a-b41a-8ddb1f664f2e", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "uuid": "c21c7d26-ec26-43eb-a51e-3ea9204f8d13", + "createdAt": "2019-02-16", + "completed": "2018-02-07", + "initiated": "2021-03-19", + "ministryContact": "DOOLEY SHAYNE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "uuid": "dfd155dc-0131-4d6b-a98f-d60ca48bbf3e", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "uuid": "801ba13b-144c-44f8-baa5-baaebeba83b9", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true }, { + "uuid": "6342b517-c0ac-461d-b83d-b4305f76c216", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true @@ -7020,213 +8213,245 @@ ], "participants": [ { + "uuid": "988ba885-fe8b-4904-b674-a27755069904", "name": "IPSUM", - "endDate": "2020-07-28", - "startDate": "2022-01-09", + "endDate": "2022-07-23", + "startDate": "2023-05-30", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2018-05-26", - "startDate": "2015-02-16", + "uuid": "866327b8-dcf7-4ad8-9cda-adf962d0ec37", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2021-12-04", + "startDate": "2021-03-06", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": false - } - ], - "suspectLandUses": [ - { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-05-02 (described on Site Profile dated 2015-05-02)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "siteRegistry": true }, { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-06-24 (described on Site Profile dated 2022-06-24)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "uuid": "faed5b59-fe67-4985-afc3-66ed09dbfed6", + "name": "AMET, DOLOR SIT", + "endDate": "2017-10-31", + "startDate": "2014-07-07", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "uuid": "9102ede4-3239-4897-8e85-9e7060490897", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2018-01-31", + "startDate": "2019-06-15", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "uuid": "12e9a6a6-1c4c-476a-a5af-75e44d3d2421", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2016-03-05", + "startDate": "2017-09-14", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true } ], - "parcelDescriptions": [ + "suspectLandUses": [ + { + "uuid": "cded62fe-718d-4a81-bc3e-fa08a7985fb5", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2018-12-11 (described on Site Profile dated 2018-12-11)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, { + "uuid": "2373778c-ee81-4507-b8c5-b1cac079252b", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2015-05-09 (described on Site Profile dated 2015-05-09)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "uuid": "0e0e16b4-da5e-415a-92f7-aaaeb16ee0b1", "siteRegistry": false, - "dateNoted": "2019-01-31", - "parcelID": "15837", - "crownLandUsePIN": "20592", - "crownLandFileNumber": "15975", - "landDescription": "LOT 5 OF LOT 3 BLOCK 4 DISTRICT LOT 1 PLAN 3026" + "notes": "INSERTED FOR SITE PROFILE DATED 2019-09-01 (described on Site Profile dated 2019-09-01)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { + "uuid": "5588acc1-3b5b-4b84-83a2-f8e58f394eef", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2019-09-15 (described on Site Profile dated 2019-09-15)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "uuid": "16c5ced6-33b8-4e59-afbc-f7dd3d270515", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2021-01-28 (described on Site Profile dated 2021-01-28)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + } + ], + "parcelDescriptions": [ + { + "uuid": "1105abe4-3e93-4a40-a4a1-7614e448146a", "siteRegistry": true, - "dateNoted": "2020-08-31", - "parcelID": "15362", - "crownLandUsePIN": "19849", - "crownLandFileNumber": "17121", - "landDescription": "LOT 3 OF LOT 2 BLOCK 5 DISTRICT LOT 1 PLAN 5468" + "dateNoted": "2021-06-09", + "parcelID": "20208", + "crownLandUsePIN": "17204", + "crownLandFileNumber": "18406", + "landDescription": "LOT 4 OF LOT 3 BLOCK 1 DISTRICT LOT 3 PLAN 5757" }, { + "uuid": "55d79d9b-cb1c-4744-8257-77c1d4f19fe9", "siteRegistry": true, - "dateNoted": "2013-11-29", - "parcelID": "17361", - "crownLandUsePIN": "18503", - "crownLandFileNumber": "19972", - "landDescription": "LOT 4 OF LOT 3 BLOCK 4 DISTRICT LOT 4 PLAN 7732" + "dateNoted": "2017-09-21", + "parcelID": "20626", + "crownLandUsePIN": "20778", + "crownLandFileNumber": "18134", + "landDescription": "LOT 3 OF LOT 3 BLOCK 2 DISTRICT LOT 4 PLAN 9503" }, { + "uuid": "d96faa4b-ff18-429b-9d8d-df1f21eee681", "siteRegistry": false, - "dateNoted": "2018-11-19", - "parcelID": "18338", - "crownLandUsePIN": "18321", - "crownLandFileNumber": "19485", - "landDescription": "LOT 5 OF LOT 4 BLOCK 5 DISTRICT LOT 4 PLAN 9500" + "dateNoted": "2023-02-01", + "parcelID": "17769", + "crownLandUsePIN": "16810", + "crownLandFileNumber": "17441", + "landDescription": "LOT 5 OF LOT 4 BLOCK 2 DISTRICT LOT 1 PLAN 4241" + }, + { + "uuid": "0bba5cec-7a41-4438-9476-984ce76b5969", + "siteRegistry": true, + "dateNoted": "2014-03-10", + "parcelID": "18054", + "crownLandUsePIN": "15976", + "crownLandFileNumber": "16377", + "landDescription": "LOT 3 OF LOT 4 BLOCK 1 DISTRICT LOT 1 PLAN 5241" } ], "siteDisclosures": [ { + "uuid": "f69cd60c-37dc-47e6-8a00-3dd1d38c9f19", "siteRegistry": true, - "dateReceived": "2021-08-28", - "dateCompleted": "2016-08-16", - "dateEntered": "2017-08-09", - "dateRegistrar": "2019-10-16", - "dateLocalAuthorityReceived": "2015-03-16", - "summary": "Reprehenderit ex dolores quaerat distinctio itaque aut corrupti aliquid.", - "informationUsed": "Excepturi voluptate provident aliquid a magnam inventore.\nQuam iusto libero sit officiis corrupti.\nIpsa a delectus unde illum temporibus rerum commodi quae quae.", - "pastOrPresentOrders": "Commodi reiciendis reiciendis excepturi ab quia nobis corporis accusamus.\nQuasi consequuntur quo quibusdam doloribus.\nHarum tempore voluptatum magnam asperiores veritatis.", + "dateReceived": "2020-08-22", + "dateCompleted": "2019-09-17", + "dateEntered": "2013-11-03", + "dateRegistrar": "2020-11-26", + "dateLocalAuthorityReceived": "2023-07-30", + "summary": "Consequuntur laboriosam nemo soluta minima rem consequatur omnis.\nDoloribus quidem perspiciatis.", + "informationUsed": "Neque nihil aliquam.\nTemporibus quo iure dolore eveniet repudiandae.\nMollitia possimus accusamus eius odit maxime aspernatur.", + "pastOrPresentOrders": "Laborum dolore occaecati.\nDolorum veritatis quo.", "commercialAndIndustrialPurposes": [ { + "uuid": "081de6b5-78b0-4277-b96a-e42d6c7a0a48", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true + "siteRegistry": false }, { + "uuid": "d8c6ba23-4c0d-496a-8420-643e1a39f937", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false - } - ] - }, - { - "siteRegistry": true, - "dateReceived": "2021-12-17", - "dateCompleted": "2019-05-20", - "dateEntered": "2022-05-27", - "dateRegistrar": "2016-11-17", - "dateLocalAuthorityReceived": "2023-08-04", - "summary": "Placeat mollitia illum quis quasi vel aperiam natus.\nNatus architecto perferendis odio quos animi ut cumque accusamus.\nIn animi ullam ratione quae fugit distinctio.", - "informationUsed": "Odio sed provident maxime harum quod esse distinctio qui illo.\nExpedita eos excepturi.\nSapiente sunt asperiores delectus provident.", - "pastOrPresentOrders": "Eaque vero vel praesentium inventore.", - "commercialAndIndustrialPurposes": [ + "siteRegistry": true + }, { + "uuid": "722f23fa-21ac-4c72-b254-b1e7c3633c6a", "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false }, { - "scheduleReference": "F1*", + "uuid": "90ef8306-01e9-4616-b958-9f54ca4c829d", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true + "siteRegistry": false } ] } ], "activityLog": [ { + "uuid": "ccf9ef29-96b1-487f-b856-ee31f0f94698", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "DOUGLAS VANESSA", - "timestamp": "2020-11-02" - }, - { - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "RICE LUCINDA", - "timestamp": "2016-12-08" + "user": "WITTING KOLE", + "timestamp": "2022-08-30" }, { + "uuid": "5592a65c-756a-4a98-be1c-948099124361", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "HERMISTON-HEATHCOTE ELYSSA", - "timestamp": "2023-02-20" - }, - { - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "BROWN NATASHA", - "timestamp": "2022-12-09" + "user": "VOLKMAN GABRIELLE", + "timestamp": "2019-12-29" }, { + "uuid": "8f8589f5-8ef7-4bdf-889e-0186a593144e", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "ZIEME TREMAINE", - "timestamp": "2019-09-04" + "user": "WILLIAMSON JORDANE", + "timestamp": "2016-05-14" }, { + "uuid": "82114c9e-c6f8-468a-8eca-a2d775591f86", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "RAU MANDY", - "timestamp": "2021-10-03" + "user": "MOEN ASA", + "timestamp": "2014-04-15" }, { + "uuid": "0140e15d-5e47-44c4-ab90-37d5b6ba4e36", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "CUMMERATA ROSLYN", - "timestamp": "2013-11-18" + "user": "LUETTGEN RUBEN", + "timestamp": "2021-11-16" } ], "associatedSites": [ { - "dateNoted": "2018-07-22", - "notes": "", - "parcelID": "16979", - "siteID": "20741", - "siteRegistry": true - }, - { - "dateNoted": "2014-05-05", + "uuid": "03a79a13-360c-4d30-a73d-b0e15925f339", + "dateNoted": "2020-07-25", "notes": "", - "parcelID": "15384", - "siteID": "16335", - "siteRegistry": true - }, - { - "dateNoted": "2015-08-13", - "notes": "", - "parcelID": "17805", - "siteID": "18281", + "parcelID": "18421", + "siteID": "15690", "siteRegistry": false } ] }, { - "uuid": "906c7891-4a89-4e21-9cd1-43489d768ed3", - "siteID": 19749, - "address": "4074 Gleason Forges", - "latitude": 54.4244, - "longitude": -130.7973, - "lastUpdated": "2017-08-06", - "city": "Shanahanberg", + "uuid": "634801fa-c6d8-49b3-bbf7-f6b04bcf0f51", + "siteID": 20921, + "address": "8383 Borer Mountains", + "latitude": 50.848, + "longitude": -132.8403, + "lastUpdated": "2023-06-24", + "city": "Arcadia", "region": "Mainland/Southwest", - "victoriaFile": "26250-20/10355", + "victoriaFile": "26250-20/11626", "regionalFile": "N/A", "parcelIDs": [ - 6847463, - 9602641, - 9212145, - 413254, - 4526693 + 3661417, + 5286588, + 5778043, + 5601773, + 6410238 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2013-10-28", - "completed": "2018-03-05", - "initiated": "2021-09-05", - "ministryContact": "HAHN ANAIS", + "uuid": "503722a1-7a73-403d-b915-a98dfda9675a", + "createdAt": "2022-01-16", + "completed": "2015-10-08", + "initiated": "2017-02-07", + "ministryContact": "FAHEY DENIS", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -7235,23 +8460,44 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", + "uuid": "a7563fe4-4b97-40b5-aab1-c966fb182a42", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true }, { + "uuid": "283b0e4d-dc05-4818-8c1d-0e7016e17094", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "uuid": "7a1f8209-d0ff-4afc-b5ed-6570dbc3fbcd", "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "40cf9f3e-0a93-4833-97c0-34f8efec63f8", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false + }, + { + "uuid": "c906babf-10a8-4201-bfc3-1bc5a2093416", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2014-04-30", - "completed": "2016-10-27", - "initiated": "2023-02-07", - "ministryContact": "ERNSER ABRAHAM", + "uuid": "767c465a-778d-40f8-bb50-a16972940e1f", + "createdAt": "2016-03-24", + "completed": "2017-01-07", + "initiated": "2017-12-18", + "ministryContact": "CRONIN EDNA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -7260,18 +8506,55 @@ ], "notationParticipants": [ { + "uuid": "59af0b33-a418-41b7-82b1-519c4f43ebe5", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "uuid": "436c60e2-d34f-4154-bd25-95b0d5cae329", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false + "role": "SUBMITTED BY", + "siteRegistry": true }, { + "uuid": "78ddcc74-c23e-4bae-8c82-b4b4bf821d03", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "uuid": "d3b957fd-3f7b-457c-8bd7-22d77e7d8a04", + "createdAt": "2019-12-18", + "completed": "2020-12-09", + "initiated": "2016-11-18", + "ministryContact": "STRACKE LARISSA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "uuid": "73a61cd8-91f5-4789-aba4-7319dfe0fd44", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false }, { + "uuid": "b49bf7b9-b3be-4fd3-a894-36dcc2709e24", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "uuid": "45e28c0b-a671-4a87-9ab8-cadb731ff04b", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": false } ], @@ -7280,19 +8563,32 @@ ], "participants": [ { - "name": "AMET, DOLOR SIT", - "endDate": "2022-08-31", - "startDate": "2017-02-23", + "uuid": "0f73fec9-dc94-453b-84d7-062f5f672e2b", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2015-06-27", + "startDate": "2022-01-10", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": true + "siteRegistry": false }, { + "uuid": "4193f9cc-c518-422b-907e-8f00a9149f34", "name": "IPSUM", - "endDate": "2021-02-13", - "startDate": "2016-02-06", + "endDate": "2018-04-18", + "startDate": "2019-06-21", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "uuid": "a8b61e4b-d6e6-4600-a39c-408f860b5e2f", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2018-01-19", + "startDate": "2021-09-18", "notes": "", "roles": [ "EMPLOYEE" @@ -7300,19 +8596,21 @@ "siteRegistry": true }, { + "uuid": "09b32f1f-656c-473b-978d-c88e4fcc4f72", "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2021-07-30", - "startDate": "2022-01-02", + "endDate": "2020-10-14", + "startDate": "2019-08-03", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": true }, { - "name": "IPSUM", - "endDate": "2018-05-27", - "startDate": "2020-10-19", + "uuid": "5fcee9ff-0634-46e2-9282-85f9cda9822a", + "name": "AMET, DOLOR SIT", + "endDate": "2019-09-30", + "startDate": "2019-02-02", "notes": "", "roles": [ "EMPLOYEE" @@ -7322,97 +8620,100 @@ ], "suspectLandUses": [ { + "uuid": "82843f18-ba9d-4179-9833-a9c4a10ddd42", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2023-04-29 (described on Site Profile dated 2023-04-29)", + "notes": "INSERTED FOR SITE PROFILE DATED 2015-12-22 (described on Site Profile dated 2015-12-22)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { + "uuid": "fbb1ef64-db51-4592-9a0f-6cffb1b919bb", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-11-06 (described on Site Profile dated 2022-11-06)", + "notes": "INSERTED FOR SITE PROFILE DATED 2015-06-29 (described on Site Profile dated 2015-06-29)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { + "uuid": "4a91115e-a3de-425f-bbe5-4328d3bf08ed", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-12-11 (described on Site Profile dated 2019-12-11)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "notes": "INSERTED FOR SITE PROFILE DATED 2019-11-03 (described on Site Profile dated 2019-11-03)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2023-04-15 (described on Site Profile dated 2023-04-15)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "uuid": "ca4dff0b-3cf9-48ca-8aa4-6ef061e030a5", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2013-10-16 (described on Site Profile dated 2013-10-16)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], "parcelDescriptions": [ { + "uuid": "7a0adb8a-f874-4e54-8e31-8b62a55feb43", "siteRegistry": false, - "dateNoted": "2022-04-23", - "parcelID": "18254", - "crownLandUsePIN": "15361", - "crownLandFileNumber": "16504", - "landDescription": "LOT 2 OF LOT 1 BLOCK 2 DISTRICT LOT 2 PLAN 6741" + "dateNoted": "2014-12-26", + "parcelID": "19878", + "crownLandUsePIN": "18006", + "crownLandFileNumber": "19677", + "landDescription": "LOT 5 OF LOT 1 BLOCK 4 DISTRICT LOT 4 PLAN 9507" }, { + "uuid": "a12fadd7-76e4-4315-a0c6-f99170e57038", "siteRegistry": false, - "dateNoted": "2016-07-18", - "parcelID": "19166", - "crownLandUsePIN": "18269", - "crownLandFileNumber": "18497", - "landDescription": "LOT 3 OF LOT 2 BLOCK 1 DISTRICT LOT 3 PLAN 4946" - } - ], - "siteDisclosures": [ + "dateNoted": "2022-11-11", + "parcelID": "17119", + "crownLandUsePIN": "15937", + "crownLandFileNumber": "17729", + "landDescription": "LOT 3 OF LOT 2 BLOCK 3 DISTRICT LOT 5 PLAN 3698" + }, { + "uuid": "847b62e1-b64c-4a04-80f8-56be2e1d4582", "siteRegistry": true, - "dateReceived": "2019-10-19", - "dateCompleted": "2015-08-19", - "dateEntered": "2016-06-10", - "dateRegistrar": "2014-12-21", - "dateLocalAuthorityReceived": "2023-01-20", - "summary": "Quos perspiciatis sed sunt perferendis totam.", - "informationUsed": "Aliquam quidem officiis quis cupiditate.\nAliquid et quaerat.\nRepellat voluptatum corporis tenetur eos quos iusto dolorem commodi.\nPlaceat accusamus a commodi nemo.", - "pastOrPresentOrders": "Molestias occaecati incidunt.\nEligendi ipsam commodi temporibus nam molestiae animi.", - "commercialAndIndustrialPurposes": [ - { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true - }, - { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false - } - ] + "dateNoted": "2015-10-09", + "parcelID": "19838", + "crownLandUsePIN": "17171", + "crownLandFileNumber": "20721", + "landDescription": "LOT 4 OF LOT 2 BLOCK 5 DISTRICT LOT 5 PLAN 4872" }, { + "uuid": "c019bdd3-75b4-4557-b693-b797b582346f", "siteRegistry": true, - "dateReceived": "2019-01-02", - "dateCompleted": "2017-06-17", - "dateEntered": "2023-06-26", - "dateRegistrar": "2022-11-13", - "dateLocalAuthorityReceived": "2017-07-24", - "summary": "Beatae optio ad quae cum quibusdam commodi.", - "informationUsed": "Similique consequatur libero harum nisi libero officiis error sapiente.\nAut dolor expedita dolor error laborum.\nBlanditiis cupiditate pariatur voluptate eos totam exercitationem aliquid repellat porro.\nCum blanditiis recusandae iusto maxime illo perferendis autem.\nOfficia alias totam amet nesciunt fugiat vitae a.", - "pastOrPresentOrders": "Fuga distinctio repellat eaque asperiores.\nBeatae eveniet neque iure iste similique dolor minima.\nA ullam at.", + "dateNoted": "2022-03-19", + "parcelID": "15483", + "crownLandUsePIN": "15479", + "crownLandFileNumber": "16323", + "landDescription": "LOT 4 OF LOT 1 BLOCK 5 DISTRICT LOT 4 PLAN 6760" + }, + { + "uuid": "84f7af69-5a1c-4e88-9b39-ecdc7ce5844e", + "siteRegistry": true, + "dateNoted": "2016-12-14", + "parcelID": "19257", + "crownLandUsePIN": "20510", + "crownLandFileNumber": "16010", + "landDescription": "LOT 5 OF LOT 1 BLOCK 3 DISTRICT LOT 3 PLAN 2938" + } + ], + "siteDisclosures": [ + { + "uuid": "da8fc02a-5d08-450f-911e-d18d91ebf1e7", + "siteRegistry": false, + "dateReceived": "2017-07-29", + "dateCompleted": "2023-08-27", + "dateEntered": "2022-03-14", + "dateRegistrar": "2019-06-14", + "dateLocalAuthorityReceived": "2020-10-24", + "summary": "Minus ipsa repellat veniam explicabo.\nSunt exercitationem iste iusto cupiditate accusamus.", + "informationUsed": "Quisquam voluptate quibusdam voluptate ducimus ducimus deleniti quo.\nMagnam temporibus vero molestias perspiciatis.\nA occaecati sunt quae.", + "pastOrPresentOrders": "Perspiciatis praesentium quos maiores architecto voluptas.\nEsse harum quod id sint.\nFugiat enim in corrupti incidunt tenetur.", "commercialAndIndustrialPurposes": [ { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false - }, - { + "uuid": "d77c21ab-09c0-4ad4-b67f-6d75553135bc", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true + "siteRegistry": false }, { + "uuid": "9c5abf7c-693f-4b2d-b146-e27a87e65dc8", "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true - }, - { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false } ] @@ -7420,91 +8721,108 @@ ], "activityLog": [ { + "uuid": "4c266d65-79f2-4aeb-9fb3-3725331fe496", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "EFFERTZ GRADY", - "timestamp": "2014-09-18" + "user": "AUER JAIDEN", + "timestamp": "2014-11-30" }, { - "siteRegistry": false, + "uuid": "ae949fd9-1caa-43e2-b6fc-34a964ee7865", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "CORKERY CHET", - "timestamp": "2023-07-14" + "user": "KOVACEK PRICE", + "timestamp": "2023-05-18" }, { + "uuid": "3cb8821c-7d97-4288-80fc-6436e9fff121", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "MACGYVER ALEXYS", - "timestamp": "2019-04-28" + "user": "SCHOEN KATELYN", + "timestamp": "2021-12-13" }, { + "uuid": "d700e095-064c-45ae-98ef-d0d89181a05f", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "EBERT ARON", - "timestamp": "2022-08-10" + "user": "SCHINNER-AUER ROSE", + "timestamp": "2017-07-26" }, { - "siteRegistry": true, + "uuid": "b1d021bd-4bed-407f-80a4-b6f1aca912b0", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "BERGSTROM CADE", + "timestamp": "2016-09-30" + }, + { + "uuid": "a79b3641-95e7-4bc7-bfab-c2a5e90a4b0f", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "SIPES ALFORD", - "timestamp": "2015-09-21" + "user": "BARTELL NATHANIEL", + "timestamp": "2016-12-28" }, { + "uuid": "e736ed6b-c758-4f7b-a717-ce6d2c9a0af9", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "MORAR WILHELM", - "timestamp": "2014-10-20" + "user": "LINDGREN-FEENEY JOCELYN", + "timestamp": "2022-08-18" } ], "associatedSites": [ { - "dateNoted": "2019-01-17", + "uuid": "c0dd9ed0-4bbb-48ce-8e67-e086721d53d1", + "dateNoted": "2019-11-12", "notes": "", - "parcelID": "18322", - "siteID": "18510", + "parcelID": "15767", + "siteID": "19730", "siteRegistry": false }, { - "dateNoted": "2015-02-03", + "uuid": "253d616f-2b04-418a-93ff-fceac356c987", + "dateNoted": "2016-12-16", "notes": "", - "parcelID": "18109", - "siteID": "18873", - "siteRegistry": false + "parcelID": "18517", + "siteID": "17261", + "siteRegistry": true }, { - "dateNoted": "2023-04-04", + "uuid": "ee0b55ca-d88e-42f3-9906-9e037ce05e1d", + "dateNoted": "2016-07-18", "notes": "", - "parcelID": "20447", - "siteID": "18372", + "parcelID": "20882", + "siteID": "20221", "siteRegistry": true } ] }, { - "uuid": "fea07924-c532-4f84-91d3-90003dc46107", - "siteID": 15924, - "address": "45147 Kulas Inlet", - "latitude": 50.1217, - "longitude": -129.5921, - "lastUpdated": "2023-06-16", - "city": "North Irma", - "region": "Cariboo", - "victoriaFile": "26250-20/1354", + "uuid": "403a3c5d-3d69-4d9d-bab5-d7b57afc5e07", + "siteID": 15852, + "address": "19569 Ratke Valleys", + "latitude": 51.3534, + "longitude": -138.0529, + "lastUpdated": "2022-08-31", + "city": "Hauckfort", + "region": "Mainland/Southwest", + "victoriaFile": "26250-20/16886", "regionalFile": "N/A", "parcelIDs": [ - 6498567, - 1434917, - 7988600, - 3938913, - 5719117 + 8201648, + 1590910, + 547192, + 8625407, + 2631117 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2021-06-13", - "completed": "2019-05-01", - "initiated": "2014-02-11", - "ministryContact": "KLOCKO MARIA", + "uuid": "92a0e5d1-3920-4cae-9229-8b66abe12172", + "createdAt": "2021-06-22", + "completed": "2023-04-19", + "initiated": "2023-05-31", + "ministryContact": "SCHOEN NOVA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -7513,28 +8831,26 @@ ], "notationParticipants": [ { + "uuid": "2677cd89-206b-4320-8c98-3cc86b52a163", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", "siteRegistry": true }, { + "uuid": "8e4254e9-c340-4abe-982a-0f85a65d885a", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2015-01-14", - "completed": "2019-03-10", - "initiated": "2016-03-18", - "ministryContact": "HEGMANN ELSE", + "uuid": "55dd850a-f421-498c-945e-d1fe0322b663", + "createdAt": "2015-08-01", + "completed": "2020-07-06", + "initiated": "2022-10-25", + "ministryContact": "TREMBLAY CRISTOPHER", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -7543,16 +8859,19 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "uuid": "2d063136-fdda-4e5d-8385-f224f4ca7826", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": true }, { + "uuid": "811c692e-4bf9-49c3-9d86-e08140dc66e3", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { + "uuid": "3d13e5de-3d14-4ca9-bbf3-bdf7916ee2bd", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false @@ -7561,10 +8880,11 @@ "siteRegistry": true }, { - "createdAt": "2014-04-21", - "completed": "2019-10-09", - "initiated": "2021-10-08", - "ministryContact": "WATERS BETHEL", + "uuid": "3d896d76-628c-4428-96af-94fa4f9da190", + "createdAt": "2016-12-14", + "completed": "2018-03-01", + "initiated": "2015-07-23", + "ministryContact": "MILLER ETHEL", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -7573,13 +8893,15 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", + "uuid": "c5cc46b9-483d-429a-9f12-55d28edc693d", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "uuid": "acdcf03b-d1bc-42ff-889f-b41d7d4f2700", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": false } ], @@ -7588,19 +8910,32 @@ ], "participants": [ { - "name": "AMET, DOLOR SIT", - "endDate": "2016-06-06", - "startDate": "2020-01-09", + "uuid": "590e1e38-6deb-459a-9227-b8e248fdba08", + "name": "IPSUM", + "endDate": "2018-11-13", + "startDate": "2021-04-15", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true }, { - "name": "AMET, DOLOR SIT", - "endDate": "2017-12-14", - "startDate": "2014-12-26", + "uuid": "9cb5ff82-87ca-496b-9a4e-a3b3ffb4034f", + "name": "IPSUM", + "endDate": "2014-09-17", + "startDate": "2018-03-16", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "uuid": "8a9f800e-2d46-42cd-805c-39aebcab174d", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2021-07-01", + "startDate": "2015-07-25", "notes": "", "roles": [ "EMPLOYEE" @@ -7610,85 +8945,99 @@ ], "suspectLandUses": [ { + "uuid": "396ac86d-46fb-4143-aa4f-60cba665a44f", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2023-06-24 (described on Site Profile dated 2023-06-24)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "notes": "INSERTED FOR SITE PROFILE DATED 2016-06-15 (described on Site Profile dated 2016-06-15)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { + "uuid": "a46853cf-3053-4a96-a6a8-975d8b9b682e", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-10-23 (described on Site Profile dated 2022-10-23)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "notes": "INSERTED FOR SITE PROFILE DATED 2018-07-15 (described on Site Profile dated 2018-07-15)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { + "uuid": "fa46ba1b-db11-4494-b4b5-24389d87f5e4", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-08-02 (described on Site Profile dated 2014-08-02)", + "notes": "INSERTED FOR SITE PROFILE DATED 2023-09-23 (described on Site Profile dated 2023-09-23)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], "parcelDescriptions": [ { - "siteRegistry": true, - "dateNoted": "2014-07-13", - "parcelID": "18387", - "crownLandUsePIN": "20698", - "crownLandFileNumber": "17176", - "landDescription": "LOT 2 OF LOT 3 BLOCK 3 DISTRICT LOT 2 PLAN 4878" - }, - { - "siteRegistry": true, - "dateNoted": "2022-04-28", - "parcelID": "20637", - "crownLandUsePIN": "18947", - "crownLandFileNumber": "19560", - "landDescription": "LOT 2 OF LOT 4 BLOCK 2 DISTRICT LOT 4 PLAN 6720" - }, - { + "uuid": "2420bd22-d707-4bb1-86f9-1c89cbf33550", "siteRegistry": false, - "dateNoted": "2019-05-14", - "parcelID": "19059", - "crownLandUsePIN": "19821", - "crownLandFileNumber": "17662", - "landDescription": "LOT 5 OF LOT 4 BLOCK 3 DISTRICT LOT 3 PLAN 9483" + "dateNoted": "2017-10-20", + "parcelID": "16537", + "crownLandUsePIN": "18029", + "crownLandFileNumber": "17198", + "landDescription": "LOT 5 OF LOT 5 BLOCK 3 DISTRICT LOT 2 PLAN 7465" }, { + "uuid": "a3fec97a-7c9f-44b2-a3c1-8568f60dd374", "siteRegistry": false, - "dateNoted": "2020-05-22", - "parcelID": "15797", - "crownLandUsePIN": "17866", - "crownLandFileNumber": "16812", - "landDescription": "LOT 5 OF LOT 4 BLOCK 4 DISTRICT LOT 2 PLAN 4365" + "dateNoted": "2014-10-19", + "parcelID": "17475", + "crownLandUsePIN": "18855", + "crownLandFileNumber": "15879", + "landDescription": "LOT 4 OF LOT 1 BLOCK 5 DISTRICT LOT 2 PLAN 6772" } ], "siteDisclosures": [ { - "siteRegistry": false, - "dateReceived": "2015-04-19", - "dateCompleted": "2018-11-16", - "dateEntered": "2017-05-13", - "dateRegistrar": "2020-08-09", - "dateLocalAuthorityReceived": "2021-09-07", - "summary": "Possimus facere tenetur ex eveniet unde et quod illum perferendis.", - "informationUsed": "Enim id ad laudantium accusantium corrupti illum corporis ducimus.\nEligendi enim non blanditiis natus at ducimus quia.\nTempora occaecati numquam voluptates eveniet nam quaerat accusantium beatae.\nQuos adipisci voluptates quaerat.\nAd nostrum tenetur dolore esse porro ipsum itaque ab nobis.", - "pastOrPresentOrders": "Rerum quia suscipit recusandae labore et quis dolorem expedita aliquid.\nOfficia corrupti error quisquam quae.", + "uuid": "89b1938d-1c50-414d-85c5-9ef42c71bc44", + "siteRegistry": true, + "dateReceived": "2020-06-02", + "dateCompleted": "2014-03-24", + "dateEntered": "2021-07-22", + "dateRegistrar": "2020-10-14", + "dateLocalAuthorityReceived": "2023-07-02", + "summary": "Nobis nesciunt harum adipisci laboriosam sequi quia.", + "informationUsed": "Ullam dolor ipsa eveniet dolores quas magni.\nUt explicabo ducimus.\nOptio accusantium repudiandae pariatur.\nConsequuntur animi quia doloremque excepturi rerum nostrum id vel occaecati.\nOdit tenetur quidem iste distinctio reprehenderit magni eveniet esse tempora.", + "pastOrPresentOrders": "Vel qui repellat.\nLaboriosam repellendus nostrum aspernatur deleniti.\nAssumenda adipisci esse iusto.", "commercialAndIndustrialPurposes": [ { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "uuid": "5281909b-9a77-4b83-a1bb-6f7ece514f1f", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { + "uuid": "9d54194b-0f95-4d6d-bf3a-abf3e999a64e", "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true - }, + } + ] + }, + { + "uuid": "6cd741a7-1661-4514-93f1-71be9cb372f9", + "siteRegistry": false, + "dateReceived": "2023-01-10", + "dateCompleted": "2015-08-03", + "dateEntered": "2023-07-17", + "dateRegistrar": "2018-10-29", + "dateLocalAuthorityReceived": "2019-04-21", + "summary": "Porro temporibus distinctio corrupti eveniet assumenda totam nesciunt.\nQui tempora vitae natus numquam reprehenderit.\nDolorum odit fugiat ipsa recusandae nostrum eaque nam saepe.", + "informationUsed": "Aspernatur quas unde et doloremque asperiores ratione maiores iure.\nDolor doloribus expedita est sapiente quasi deserunt.\nMinima laudantium nobis magnam.\nNesciunt accusantium hic.\nPorro soluta itaque inventore est doloribus voluptates nam.", + "pastOrPresentOrders": "Quod dolore minus facilis sit saepe minima aut.\nNobis adipisci minus omnis deleniti veniam aut.\nOptio non incidunt numquam nemo repellat veritatis blanditiis odit id.", + "commercialAndIndustrialPurposes": [ { + "uuid": "0240d0fa-be9b-4d0d-9d13-56f692c502b5", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { + "uuid": "9f0abf8b-1d64-447f-8fba-6bfa03621e1c", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "uuid": "5715491c-adbc-42f2-86a3-ee4229bd1a77", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false } ] @@ -7696,78 +9045,107 @@ ], "activityLog": [ { + "uuid": "accfc126-5976-4522-83b7-dd8843aa03af", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "O'CONNELL ASHLY", + "timestamp": "2020-02-15" + }, + { + "uuid": "b6c43388-07bd-477a-b6f9-524d27f7e5d8", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "CARTER AGUSTINA", - "timestamp": "2015-08-11" + "user": "KRAJCIK GISSELLE", + "timestamp": "2019-09-25" }, { + "uuid": "4089d02b-4c33-42be-900d-5ca0eaad3674", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "HANSEN MALCOLM", - "timestamp": "2023-03-16" + "user": "WILLIAMSON MAKENNA", + "timestamp": "2022-05-11" }, { + "uuid": "33204c5e-bd97-48c9-a443-5e987c96a3b2", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "HERZOG HIRAM", - "timestamp": "2023-02-11" + "user": "SCHUSTER VELMA", + "timestamp": "2018-12-28" + }, + { + "uuid": "151fe9e8-af1d-45b9-8de8-e93897bf2410", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "LESCH AMAYA", + "timestamp": "2022-08-29" }, { + "uuid": "2b3f1c5a-7a28-4383-b644-93361e968d90", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "FISHER ELIJAH", - "timestamp": "2020-11-19" + "user": "CHAMPLIN STELLA", + "timestamp": "2016-08-21" }, { + "uuid": "343927e4-b93b-4618-9873-c2198d187139", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "TREUTEL BRYCEN", - "timestamp": "2021-10-14" + "user": "EBERT CATERINA", + "timestamp": "2018-10-21" + }, + { + "uuid": "43d48f15-a467-48a3-9308-da54bbda5000", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "ROLFSON HAZLE", + "timestamp": "2017-08-20" } ], "associatedSites": [ { - "dateNoted": "2016-09-16", + "uuid": "84e022d2-56db-4637-ab52-78d76574fdb2", + "dateNoted": "2023-02-24", "notes": "", - "parcelID": "18109", - "siteID": "18587", + "parcelID": "15359", + "siteID": "17920", "siteRegistry": true }, { - "dateNoted": "2022-10-05", + "uuid": "38ce45ec-ab50-47f9-a915-774f91bd6e78", + "dateNoted": "2016-01-01", "notes": "", - "parcelID": "16219", - "siteID": "17616", + "parcelID": "17254", + "siteID": "20872", "siteRegistry": false } ] }, { - "uuid": "7eea99ed-9e9a-4e51-8365-24d5078991da", - "siteID": 20680, - "address": "2601 Geoffrey Divide", - "latitude": 57.0309, - "longitude": -127.0646, - "lastUpdated": "2022-04-19", - "city": "Richland", - "region": " North Coast", - "victoriaFile": "26250-20/3504", + "uuid": "946ccbd0-7745-49a9-9158-73d766af4d98", + "siteID": 16077, + "address": "5029 Roberts Forest", + "latitude": 56.9409, + "longitude": -135.1478, + "lastUpdated": "2020-05-11", + "city": "New Audieshire", + "region": "Mainland/Southwest", + "victoriaFile": "26250-20/2273", "regionalFile": "N/A", "parcelIDs": [ - 5257184, - 4341179, - 5710825, - 4043046, - 6719902 + 9727721, + 7116828, + 1969159, + 5357410, + 7840215 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2015-10-30", - "completed": "2015-11-22", - "initiated": "2015-04-28", - "ministryContact": "NADER ELEONORE", + "uuid": "5ed58c14-be62-41d9-a831-3cdcdad4d0d1", + "createdAt": "2019-08-24", + "completed": "2018-05-18", + "initiated": "2023-05-01", + "ministryContact": "SIMONIS FREDERIQUE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -7776,23 +9154,44 @@ ], "notationParticipants": [ { + "uuid": "597c0ce2-1528-47b2-a8f7-42da26ba2de7", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true + }, + { + "uuid": "468515e7-6a74-4fbf-aa46-05863619252b", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "394157b7-15e9-4321-a79e-42e85cd622f7", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true }, { + "uuid": "85f3bc82-8da2-4ddc-a5e1-ac3566c87144", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false + }, + { + "uuid": "5fd9e26a-9f20-480a-bcbf-ed07490920f1", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2014-08-09", - "completed": "2021-08-01", - "initiated": "2022-06-11", - "ministryContact": "YOST SERENITY", + "uuid": "34822400-5738-4b5b-a6e4-16d7289a67f5", + "createdAt": "2015-12-23", + "completed": "2014-12-25", + "initiated": "2019-09-01", + "ministryContact": "BLICK DENNIS", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -7801,14 +9200,74 @@ ], "notationParticipants": [ { + "uuid": "ff56e968-c7dc-4bd9-ae94-fe122938fc9a", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true }, { + "uuid": "9ce8e046-9a48-461c-8ad5-0f5643c26c85", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "uuid": "0a3f8ae2-9854-4f3d-856d-f0ced471e5ec", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "63071310-2b9e-451e-bf3c-2bb69b0aae7a", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "uuid": "9be4074f-6edb-4ef8-b8e0-28b418a2165a", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "uuid": "965828be-a591-439f-94db-73965fb27955", + "createdAt": "2021-12-15", + "completed": "2015-07-06", + "initiated": "2016-06-02", + "ministryContact": "RUECKER ORA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "uuid": "150f9203-8322-4238-bc81-89677d8fda58", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "be3390ef-7800-496a-87c7-010228c41796", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "uuid": "2ccc83bb-468f-4279-97c4-3266a9e9f22e", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": true + }, + { + "uuid": "5719e681-182b-4686-a428-9ad115a2dad5", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false } ], "siteRegistry": false @@ -7816,204 +9275,248 @@ ], "participants": [ { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2017-07-15", - "startDate": "2017-12-22", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": false - }, - { + "uuid": "9e1a9d4a-b5cf-4c5f-9143-f1a9fbb93173", "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2016-08-25", - "startDate": "2016-04-05", + "endDate": "2019-03-02", + "startDate": "2014-05-08", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], - "siteRegistry": false + "siteRegistry": true }, { + "uuid": "ed08e115-148a-4f80-bf38-43fe4814db5f", "name": "AMET, DOLOR SIT", - "endDate": "2023-07-15", - "startDate": "2015-11-19", + "endDate": "2019-01-16", + "startDate": "2020-05-19", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false } ], "suspectLandUses": [ { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-12-25 (described on Site Profile dated 2014-12-25)", + "uuid": "781bd726-ad38-4604-bc9a-e24f62bf0722", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2015-01-04 (described on Site Profile dated 2015-01-04)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "uuid": "ad63a6ac-2726-4ac0-b626-6c8a1e97850f", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2013-11-15 (described on Site Profile dated 2013-11-15)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { + "uuid": "fa433c7c-8efa-4eed-91f1-a56e5cde7188", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-04-29 (described on Site Profile dated 2019-04-29)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "notes": "INSERTED FOR SITE PROFILE DATED 2022-04-29 (described on Site Profile dated 2022-04-29)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { + "uuid": "a13530ec-5a61-412e-b4e2-9ebe08b63aa8", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-01-11 (described on Site Profile dated 2014-01-11)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "notes": "INSERTED FOR SITE PROFILE DATED 2019-04-07 (described on Site Profile dated 2019-04-07)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "uuid": "f1e2d4bc-8130-4290-8dc0-1c404dc96164", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2018-02-02 (described on Site Profile dated 2018-02-02)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], "parcelDescriptions": [ { - "siteRegistry": false, - "dateNoted": "2022-05-02", - "parcelID": "16320", - "crownLandUsePIN": "15317", - "crownLandFileNumber": "18484", - "landDescription": "LOT 4 OF LOT 2 BLOCK 5 DISTRICT LOT 4 PLAN 8633" + "uuid": "03bfc1f6-32e8-4794-8747-d95977dffd0a", + "siteRegistry": true, + "dateNoted": "2013-12-18", + "parcelID": "16526", + "crownLandUsePIN": "15888", + "crownLandFileNumber": "18569", + "landDescription": "LOT 2 OF LOT 2 BLOCK 2 DISTRICT LOT 1 PLAN 4142" }, { + "uuid": "6e1715af-4c2f-4ab1-94b3-546f5831e70f", "siteRegistry": false, - "dateNoted": "2019-07-28", - "parcelID": "16292", - "crownLandUsePIN": "18989", - "crownLandFileNumber": "17321", - "landDescription": "LOT 1 OF LOT 5 BLOCK 1 DISTRICT LOT 1 PLAN 8493" - }, - { - "siteRegistry": true, - "dateNoted": "2017-07-30", - "parcelID": "17902", - "crownLandUsePIN": "17688", - "crownLandFileNumber": "18290", - "landDescription": "LOT 4 OF LOT 1 BLOCK 4 DISTRICT LOT 3 PLAN 7944" + "dateNoted": "2014-10-15", + "parcelID": "19564", + "crownLandUsePIN": "20323", + "crownLandFileNumber": "19092", + "landDescription": "LOT 5 OF LOT 3 BLOCK 3 DISTRICT LOT 5 PLAN 4518" } ], "siteDisclosures": [ { - "siteRegistry": true, - "dateReceived": "2022-01-26", - "dateCompleted": "2015-10-20", - "dateEntered": "2014-11-09", - "dateRegistrar": "2021-11-06", - "dateLocalAuthorityReceived": "2022-08-01", - "summary": "Ratione ut cupiditate hic possimus corporis explicabo delectus fuga excepturi.\nCorrupti provident commodi sint ut officiis assumenda libero at ea.\nVoluptas dolorem aliquid nisi sapiente fugit saepe in.", - "informationUsed": "Alias recusandae porro occaecati voluptatum dignissimos debitis eligendi error corporis.\nRepudiandae error veritatis perferendis placeat.\nDelectus libero exercitationem doloremque culpa est laboriosam libero qui.\nConsequuntur vero officiis.", - "pastOrPresentOrders": "Nemo dolor nemo nam.", + "uuid": "f283792e-a283-47c4-8738-5f29c68276ce", + "siteRegistry": false, + "dateReceived": "2019-08-09", + "dateCompleted": "2021-05-15", + "dateEntered": "2016-09-21", + "dateRegistrar": "2017-10-06", + "dateLocalAuthorityReceived": "2014-07-31", + "summary": "Architecto at sint dolorum suscipit consectetur.\nFuga debitis omnis at dicta.", + "informationUsed": "Nostrum numquam ex nobis.\nIpsa fuga deleniti enim nesciunt.\nQuaerat fugiat porro vitae iure.\nExpedita nam enim dignissimos ad accusamus doloribus nesciunt.\nPossimus nesciunt atque corporis perspiciatis quaerat distinctio.", + "pastOrPresentOrders": "Quod veniam incidunt.\nQuo quaerat in porro cumque commodi reprehenderit.", "commercialAndIndustrialPurposes": [ { + "uuid": "39e8cc04-951c-4524-99b1-46106cf4a444", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "uuid": "f63b5be1-2a6e-4b43-bd4c-c1eef3957dc2", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { + "uuid": "d9eaa122-9140-4db5-8db9-6f031fba60da", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "uuid": "c92d2050-2dd2-493d-b796-719938aab5b5", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true } ] }, { + "uuid": "fc88235d-0025-419c-8122-eeca0a528986", "siteRegistry": true, - "dateReceived": "2017-07-23", - "dateCompleted": "2014-06-28", - "dateEntered": "2018-08-20", - "dateRegistrar": "2023-08-27", - "dateLocalAuthorityReceived": "2014-04-25", - "summary": "Qui ut quo.\nDelectus voluptates sunt voluptatibus laborum perferendis inventore odit aliquid.", - "informationUsed": "Sit corporis iure dolores veritatis sed aspernatur voluptas.\nUt neque porro atque ab harum praesentium iure.\nVoluptates est minus.\nSint cum omnis incidunt nihil dignissimos labore.\nDistinctio repellat laborum vero eligendi id quis iure a pariatur.", - "pastOrPresentOrders": "Quisquam quidem hic.\nAd impedit quaerat.", + "dateReceived": "2019-03-15", + "dateCompleted": "2023-08-26", + "dateEntered": "2016-01-12", + "dateRegistrar": "2020-08-01", + "dateLocalAuthorityReceived": "2017-05-16", + "summary": "Dignissimos ut impedit.\nSint ipsum nisi dolorem.", + "informationUsed": "Quas dignissimos incidunt libero animi perferendis vel.\nAmet tempora ipsa beatae omnis eius culpa sunt quo recusandae.\nAliquam harum sed repudiandae a dolores soluta necessitatibus.\nAperiam nihil delectus deserunt.\nVelit perspiciatis laboriosam quam harum.", + "pastOrPresentOrders": "Dolor asperiores distinctio quaerat voluptas.\nEx mollitia velit asperiores delectus saepe.", "commercialAndIndustrialPurposes": [ { + "uuid": "278eba6f-6779-46f8-b0f9-b11f2d355c64", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false - }, - { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false - }, - { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { + "uuid": "b4332540-0b28-4a1f-9c31-58004b85a851", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false + "siteRegistry": true } ] } ], "activityLog": [ { + "uuid": "e5fef7d9-d6b8-4e0d-9f3d-fc8fd70aa04e", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "LANGWORTH ARNO", + "timestamp": "2019-02-02" + }, + { + "uuid": "34f7a031-2ead-4bd3-8f70-77b3536c074a", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "BERGNAUM HOYT", - "timestamp": "2015-04-10" + "user": "HARRIS ARNOLDO", + "timestamp": "2022-03-19" }, { + "uuid": "754a9152-672f-4310-8775-d54dd53e209b", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "GRIMES FRIEDA", - "timestamp": "2016-03-30" + "user": "NADER MAUDIE", + "timestamp": "2020-10-19" }, { + "uuid": "d7a24b4b-913f-4331-8519-ff23aa2b430d", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "KIRLIN ALEXANDER", - "timestamp": "2020-10-10" + "user": "CONSIDINE JEANETTE", + "timestamp": "2019-09-02" }, { - "siteRegistry": true, + "uuid": "77b4c74f-86f0-4b60-a1d1-777a492cba01", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "WALKER PROVIDENCI", - "timestamp": "2020-06-06" + "user": "GERLACH LIONEL", + "timestamp": "2022-02-27" + }, + { + "uuid": "d0974aae-b144-4cbb-8e33-7d03d683c5c0", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "CASSIN SHANELLE", + "timestamp": "2022-10-12" + }, + { + "uuid": "df8a6a20-415f-418f-a03f-1bd03377e71b", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "HOWELL MARCOS", + "timestamp": "2020-12-05" + }, + { + "uuid": "648124fd-dc35-4a69-8db9-6e793d9df53b", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "STROMAN MANLEY", + "timestamp": "2020-06-28" }, { + "uuid": "a71056f8-bcc4-4578-86d1-6fb3183ec70a", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "SCHULTZ ELOISE", - "timestamp": "2016-07-17" + "user": "VONRUEDEN HUMBERTO", + "timestamp": "2021-09-14" } ], "associatedSites": [ { - "dateNoted": "2016-10-10", + "uuid": "101272c5-ec58-4ad2-86ae-7f5e0bbb71b1", + "dateNoted": "2023-08-10", "notes": "", - "parcelID": "16999", - "siteID": "17607", + "parcelID": "17000", + "siteID": "15493", "siteRegistry": false } ] }, { - "uuid": "6061161d-cbb0-4ed5-986b-447f6e502141", - "siteID": 18478, - "address": "3936 Luettgen Canyon", - "latitude": 57.1368, - "longitude": -132.2199, - "lastUpdated": "2020-06-01", - "city": "Friesenburgh", - "region": "Vancouver Island/Coast", - "victoriaFile": "26250-20/9915", + "uuid": "416b5365-cfb4-494d-b3d7-cb6896edf40c", + "siteID": 17427, + "address": "975 Chadd Fork", + "latitude": 51.5164, + "longitude": -138.2075, + "lastUpdated": "2019-10-06", + "city": "Smithamhaven", + "region": "Kootenay", + "victoriaFile": "26250-20/1039", "regionalFile": "N/A", "parcelIDs": [ - 6525928, - 8469259, - 5535047, - 9500696, - 8820704 + 7970145, + 9391621, + 984763, + 7233582, + 4576856 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2022-04-01", - "completed": "2017-07-18", - "initiated": "2013-11-17", - "ministryContact": "LEHNER SABRINA", + "uuid": "b2fbb30b-e989-46cd-9d46-801597926dfb", + "createdAt": "2020-04-07", + "completed": "2023-06-15", + "initiated": "2017-11-19", + "ministryContact": "TERRY NINA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -8022,38 +9525,38 @@ ], "notationParticipants": [ { + "uuid": "4e75907c-3eb2-4c8c-8441-316b24a85655", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", + "uuid": "3d3791d8-8f51-4a94-959d-ddcc2697923c", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { + "uuid": "0de9dc77-0aba-4f71-89b1-f19f300a1974", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { + "uuid": "be5f7df3-761f-4f12-ab34-cf294b3fb00b", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false + "role": "REQUESTED BY", + "siteRegistry": true } ], "siteRegistry": false }, { - "createdAt": "2013-12-02", - "completed": "2023-09-17", - "initiated": "2019-04-28", - "ministryContact": "ARMSTRONG DIEGO", + "uuid": "5bc61aa4-9c3c-44e5-9e6b-264f58d360f6", + "createdAt": "2016-09-12", + "completed": "2016-09-01", + "initiated": "2014-02-08", + "ministryContact": "SCHROEDER TREMAYNE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -8062,33 +9565,26 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "a609d6f0-138a-4a2a-9185-9ac9c4e8725f", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false }, { + "uuid": "7ab9ddb2-6e5b-4d79-bd90-db89eefb654d", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true } ], "siteRegistry": true }, { - "createdAt": "2015-11-15", - "completed": "2015-12-28", - "initiated": "2019-09-30", - "ministryContact": "MILLS MILO", + "uuid": "0d60318d-f924-4509-9b8b-896aef9dc8d4", + "createdAt": "2019-02-12", + "completed": "2016-04-16", + "initiated": "2023-06-26", + "ministryContact": "WUNSCH ENID", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -8097,23 +9593,38 @@ ], "notationParticipants": [ { + "uuid": "e2ade6e3-e59f-499a-914b-02b4205e06e3", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "97d91ff0-d6ff-4588-817c-6732c0050486", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "4fd303dd-9043-406a-b330-f81767270e02", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false + }, + { + "uuid": "98eebaca-1c2d-4f0a-828d-e13efb27f025", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2019-02-05", - "completed": "2023-04-03", - "initiated": "2023-08-05", - "ministryContact": "ADAMS JETT", + "uuid": "d11f05da-369c-4cc2-b5d5-fffc1999fd2b", + "createdAt": "2020-05-01", + "completed": "2019-03-06", + "initiated": "2019-02-25", + "ministryContact": "HARVEY PRESTON", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -8122,43 +9633,27 @@ ], "notationParticipants": [ { + "uuid": "5cd66362-4983-4056-81d2-fb16971ff83f", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false }, { + "uuid": "88763a99-862e-4f43-b69a-e41411a7c516", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false }, { + "uuid": "3677726e-f6b7-4103-8068-d0d888a45bf3", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - } - ], - "siteRegistry": true - }, - { - "createdAt": "2020-08-30", - "completed": "2016-07-30", - "initiated": "2014-08-20", - "ministryContact": "GREENFELDER AIMEE", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": true }, { + "uuid": "34cb3a68-aaad-46ad-8e91-5729b37f652c", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false } ], @@ -8167,39 +9662,43 @@ ], "participants": [ { - "name": "AMET, DOLOR SIT", - "endDate": "2017-06-28", - "startDate": "2014-02-08", + "uuid": "9fd5134e-8c09-496d-86e8-95acd23ff4b4", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2018-08-18", + "startDate": "2015-06-20", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2020-04-13", - "startDate": "2018-08-19", + "uuid": "6ce2612a-85da-42a0-9717-90445ab94f53", + "name": "IPSUM", + "endDate": "2016-01-17", + "startDate": "2014-05-10", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": false }, { - "name": "IPSUM", - "endDate": "2021-01-04", - "startDate": "2017-09-03", + "uuid": "c3a9530d-2285-4b29-b4af-da1903ec1a1d", + "name": "AMET, DOLOR SIT", + "endDate": "2015-09-20", + "startDate": "2019-04-21", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": false }, { + "uuid": "017f9d4b-0f37-42f4-8acb-77abe2fc909d", "name": "SHELL CANADA PRODUCTS", - "endDate": "2018-03-15", - "startDate": "2022-12-02", + "endDate": "2020-06-16", + "startDate": "2023-03-15", "notes": "", "roles": [ "EMPLOYEE" @@ -8209,211 +9708,266 @@ ], "suspectLandUses": [ { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2023-02-14 (described on Site Profile dated 2023-02-14)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "uuid": "0759f140-84ee-4073-bcdd-e823ebda1df7", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2017-07-20 (described on Site Profile dated 2017-07-20)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { + "uuid": "5e26f35a-58e3-4db6-91ad-2cc22abb03b3", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-01-07 (described on Site Profile dated 2021-01-07)", + "notes": "INSERTED FOR SITE PROFILE DATED 2017-07-15 (described on Site Profile dated 2017-07-15)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { + "uuid": "d211525a-6c24-4699-acc1-83af93843802", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-10-29 (described on Site Profile dated 2016-10-29)", + "notes": "INSERTED FOR SITE PROFILE DATED 2021-08-08 (described on Site Profile dated 2021-08-08)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-05-10 (described on Site Profile dated 2021-05-10)", + "uuid": "d33c6778-dc12-4b30-9fce-c95c2a0a092a", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2018-07-03 (described on Site Profile dated 2018-07-03)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], "parcelDescriptions": [ { + "uuid": "fb4b2927-2760-4a74-838b-5416fabb1409", "siteRegistry": true, - "dateNoted": "2014-11-14", - "parcelID": "19182", - "crownLandUsePIN": "18464", - "crownLandFileNumber": "16456", - "landDescription": "LOT 5 OF LOT 1 BLOCK 2 DISTRICT LOT 5 PLAN 2915" + "dateNoted": "2018-01-24", + "parcelID": "15712", + "crownLandUsePIN": "19488", + "crownLandFileNumber": "20275", + "landDescription": "LOT 2 OF LOT 2 BLOCK 4 DISTRICT LOT 1 PLAN 9680" }, { - "siteRegistry": false, - "dateNoted": "2018-04-07", - "parcelID": "20537", - "crownLandUsePIN": "20196", - "crownLandFileNumber": "20521", - "landDescription": "LOT 1 OF LOT 2 BLOCK 3 DISTRICT LOT 4 PLAN 4108" + "uuid": "0a80a4c8-b999-4f95-a70e-f62913676ecb", + "siteRegistry": true, + "dateNoted": "2023-03-10", + "parcelID": "18366", + "crownLandUsePIN": "17625", + "crownLandFileNumber": "16152", + "landDescription": "LOT 3 OF LOT 2 BLOCK 3 DISTRICT LOT 2 PLAN 9323" }, { - "siteRegistry": true, - "dateNoted": "2020-12-17", - "parcelID": "19096", - "crownLandUsePIN": "15856", - "crownLandFileNumber": "20719", - "landDescription": "LOT 3 OF LOT 1 BLOCK 4 DISTRICT LOT 5 PLAN 4096" + "uuid": "c2a03c3f-2f97-4972-bfa1-4d8949d4b529", + "siteRegistry": false, + "dateNoted": "2017-05-22", + "parcelID": "15303", + "crownLandUsePIN": "15704", + "crownLandFileNumber": "17432", + "landDescription": "LOT 5 OF LOT 4 BLOCK 5 DISTRICT LOT 5 PLAN 6975" }, { + "uuid": "8f288a57-7b7e-48e1-9626-1f9202c723ff", "siteRegistry": true, - "dateNoted": "2021-03-12", - "parcelID": "16181", - "crownLandUsePIN": "15229", - "crownLandFileNumber": "15853", - "landDescription": "LOT 5 OF LOT 5 BLOCK 4 DISTRICT LOT 4 PLAN 4616" + "dateNoted": "2018-06-28", + "parcelID": "20061", + "crownLandUsePIN": "18076", + "crownLandFileNumber": "20548", + "landDescription": "LOT 3 OF LOT 3 BLOCK 1 DISTRICT LOT 1 PLAN 3624" }, { + "uuid": "c302e843-59cc-4df4-a5d6-8b00b264c53f", "siteRegistry": true, - "dateNoted": "2020-04-19", - "parcelID": "18752", - "crownLandUsePIN": "18966", - "crownLandFileNumber": "15264", - "landDescription": "LOT 4 OF LOT 4 BLOCK 1 DISTRICT LOT 5 PLAN 5942" + "dateNoted": "2018-03-07", + "parcelID": "15405", + "crownLandUsePIN": "20596", + "crownLandFileNumber": "16717", + "landDescription": "LOT 4 OF LOT 2 BLOCK 4 DISTRICT LOT 1 PLAN 5365" } ], "siteDisclosures": [ { - "siteRegistry": true, - "dateReceived": "2018-06-05", - "dateCompleted": "2015-07-22", - "dateEntered": "2017-11-11", - "dateRegistrar": "2015-09-01", - "dateLocalAuthorityReceived": "2021-06-08", - "summary": "Facere odio distinctio laborum animi.\nCum voluptatum ut.\nFacere provident fugiat minima cupiditate quos dolorum laboriosam voluptatibus libero.", - "informationUsed": "Saepe deleniti laboriosam dolorum ipsam animi.\nTemporibus temporibus numquam.\nAmet voluptas ducimus quos repellendus et nobis ducimus.\nMolestiae autem sapiente.\nExercitationem delectus ipsam dolorum non.", - "pastOrPresentOrders": "Rerum dolore repellat rem nostrum consectetur dicta cum totam.", + "uuid": "62611b31-6cfb-4041-8871-176dc7cbb841", + "siteRegistry": false, + "dateReceived": "2015-04-12", + "dateCompleted": "2017-03-28", + "dateEntered": "2023-03-11", + "dateRegistrar": "2020-01-06", + "dateLocalAuthorityReceived": "2020-12-04", + "summary": "Error necessitatibus cum praesentium temporibus earum.", + "informationUsed": "Eligendi molestias ut explicabo delectus repellendus.\nAtque occaecati ut consectetur veritatis vel.\nPlaceat pariatur veniam blanditiis vitae reiciendis architecto nobis quaerat.", + "pastOrPresentOrders": "Fugit praesentium eos praesentium suscipit molestiae expedita.\nEx unde perferendis accusamus deserunt reprehenderit consectetur.\nQuis adipisci perferendis ex soluta aliquam omnis velit.", "commercialAndIndustrialPurposes": [ { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false - }, - { - "scheduleReference": "F2*", + "uuid": "d15c886b-268a-4d02-82fc-81212478e0fb", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true + "siteRegistry": false }, { + "uuid": "2e126028-8653-4e21-ab1c-0c33f1f68d66", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false + "siteRegistry": true }, { - "scheduleReference": "F2*", + "uuid": "1863b0d9-ddd1-433a-8973-67126ac04d7a", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true } ] }, { - "siteRegistry": true, - "dateReceived": "2023-06-30", - "dateCompleted": "2020-02-18", - "dateEntered": "2023-05-16", - "dateRegistrar": "2014-01-04", - "dateLocalAuthorityReceived": "2019-03-28", - "summary": "Iure ipsa praesentium optio.\nAd cum numquam dicta commodi minima assumenda praesentium saepe.", - "informationUsed": "Ipsam commodi aliquid est rerum incidunt eum maiores.\nNon magni totam aut iste doloribus incidunt.\nImpedit voluptate ut nesciunt nobis ad doloribus maiores sed non.\nVero officiis sit similique eius.", - "pastOrPresentOrders": "Rem ea quasi nemo eaque suscipit hic quo.", + "uuid": "2a909a6b-571f-4ef6-bc24-e3e287b68a52", + "siteRegistry": false, + "dateReceived": "2019-04-04", + "dateCompleted": "2015-01-27", + "dateEntered": "2018-08-24", + "dateRegistrar": "2018-03-29", + "dateLocalAuthorityReceived": "2014-12-16", + "summary": "Enim possimus nulla soluta labore sint recusandae voluptatem vel.\nIncidunt sint architecto iste id reprehenderit.", + "informationUsed": "Nulla sapiente ut a modi quis necessitatibus nobis animi.\nPraesentium iure vel illum aliquam veniam corrupti sint possimus.\nCorrupti blanditiis veritatis.\nDolorem tempora adipisci quidem ea.", + "pastOrPresentOrders": "Debitis expedita sunt omnis quae eius cum cum qui laudantium.\nRepellendus provident repellat corporis ipsa.", "commercialAndIndustrialPurposes": [ { - "scheduleReference": "F2*", + "uuid": "7d451827-9159-47ac-bf85-8c4a33bf976a", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { + "uuid": "cfa3e45a-36de-4630-9363-4d3518538491", "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, { + "uuid": "ff1e624d-84dc-45bd-af0d-0e719bd461c9", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "uuid": "41f89fd9-98d1-482b-9288-87ccd9a81acc", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false + "siteRegistry": true } ] } ], "activityLog": [ { - "siteRegistry": false, + "uuid": "30512167-536b-4c5c-b2ca-c583422a8111", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "DENESIK ELDA", - "timestamp": "2017-03-03" + "user": "BOSCO SUSANNA", + "timestamp": "2014-06-22" }, { + "uuid": "6084fddd-6a6d-4903-ba82-d1a4011f1d07", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "PADBERG HOLLIE", - "timestamp": "2020-11-14" + "user": "BOGISICH JODY", + "timestamp": "2017-08-18" }, { + "uuid": "dce8bfd7-59c7-40ce-af38-6423eaf8dbae", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "CARTER ALBIN", + "timestamp": "2022-10-28" + }, + { + "uuid": "16180da6-b2a4-4e04-bdd4-4e9b20aa904c", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "MARQUARDT CLAUDINE", - "timestamp": "2015-06-02" + "user": "DICKENS ABBY", + "timestamp": "2021-01-18" }, { + "uuid": "b8b5255f-7db2-4565-9f95-07f23e55e1ef", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "BAUCH KIRK", - "timestamp": "2014-04-15" + "user": "WELCH JANAE", + "timestamp": "2020-04-09" }, { + "uuid": "bfa2e538-e15e-4bab-95cf-37b9ec3d8b7d", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "LUEILWITZ SHANY", - "timestamp": "2020-06-11" + "user": "HERMAN LEXUS", + "timestamp": "2020-01-24" + }, + { + "uuid": "8516783a-29a3-49b6-a6fe-2be548cfa88d", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "FRAMI WILL", + "timestamp": "2017-11-10" }, { + "uuid": "a18b6d5c-3608-405f-9169-5811ef1e3ee3", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "JENKINS MALINDA", - "timestamp": "2016-12-01" + "user": "CASPER LANEY", + "timestamp": "2016-04-15" + }, + { + "uuid": "e7c3d60e-8f5c-4d25-919b-b23d2e64ed92", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "BARTELL THERESE", + "timestamp": "2020-05-29" + }, + { + "uuid": "c92b2cbc-3bd4-496e-94e2-f78f42c7666d", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "MULLER ERIC", + "timestamp": "2022-03-01" } ], "associatedSites": [ { - "dateNoted": "2017-06-21", + "uuid": "721c8625-6c06-44ac-991a-3cf6bf690e44", + "dateNoted": "2021-09-25", "notes": "", - "parcelID": "19475", - "siteID": "16983", + "parcelID": "17237", + "siteID": "18806", "siteRegistry": false }, { - "dateNoted": "2015-02-14", + "uuid": "35fc80ee-1d67-4315-a382-d738036fb621", + "dateNoted": "2022-09-04", "notes": "", - "parcelID": "19819", - "siteID": "16253", + "parcelID": "17668", + "siteID": "17769", "siteRegistry": false } ] }, { - "uuid": "5fd6ed83-1477-45af-8586-21b6936888be", - "siteID": 19266, - "address": "9399 Maryse Curve", - "latitude": 57.0351, - "longitude": -119.1915, - "lastUpdated": "2019-03-26", - "city": "Darrionside", - "region": "Thompson-Okanagan", - "victoriaFile": "26250-20/5320", + "uuid": "7ba7f0e0-6b36-4e04-a5dc-61e2d2abb924", + "siteID": 15264, + "address": "6307 Hickle Way", + "latitude": 53.3911, + "longitude": -130.146, + "lastUpdated": "2022-04-06", + "city": "Bahringerland", + "region": " North Coast", + "victoriaFile": "26250-20/8226", "regionalFile": "N/A", "parcelIDs": [ - 2340355, - 9951537, - 2355444, - 6708517, - 263166 + 2709501, + 6070575, + 4284554, + 1956643, + 9954895 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2022-05-02", - "completed": "2018-01-06", - "initiated": "2019-05-16", - "ministryContact": "KEMMER MICHEL", + "uuid": "286d7141-1aeb-49ed-a089-4d15169f94cb", + "createdAt": "2018-10-14", + "completed": "2015-11-06", + "initiated": "2015-08-02", + "ministryContact": "BOGAN MARIANNE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -8422,33 +9976,32 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "uuid": "7fd979b9-a7ac-44b8-a991-29051af1328e", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": false }, { + "uuid": "04ce4cf8-3ab1-4562-8afb-ed12c6356ecb", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "uuid": "20c22442-16c7-4ce8-a5b2-e89297fe4bff", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", "siteRegistry": false } ], "siteRegistry": false }, { - "createdAt": "2020-01-16", - "completed": "2021-10-31", - "initiated": "2016-12-05", - "ministryContact": "JOHNSTON QUINN", + "uuid": "403945d3-0608-4280-a464-af0c0ea76e04", + "createdAt": "2019-06-06", + "completed": "2015-03-11", + "initiated": "2013-12-04", + "ministryContact": "UPTON-FRIESEN SOLEDAD", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -8457,26 +10010,19 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", + "uuid": "88af780c-5d2e-4266-a195-2fc26fb9b387", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { + "uuid": "983792e4-543f-40b5-83c2-50112f90c30a", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { + "uuid": "8c9e8517-5321-41f7-ae18-6f6c5486dc96", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true @@ -8485,10 +10031,11 @@ "siteRegistry": true }, { - "createdAt": "2019-05-27", - "completed": "2015-02-07", - "initiated": "2021-03-03", - "ministryContact": "ZULAUF MIREILLE", + "uuid": "54442cdd-adf0-4634-ba00-527fa250694b", + "createdAt": "2020-06-30", + "completed": "2022-08-23", + "initiated": "2013-12-23", + "ministryContact": "ROOB MARIAH", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -8497,39 +10044,124 @@ ], "notationParticipants": [ { + "uuid": "0d5d7c62-ecca-4382-9770-d32ce5be070c", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "uuid": "6a342bca-3e4a-4a6d-bb61-0ba76bc22149", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false }, { + "uuid": "102caaa2-6390-4935-a7dc-b5bc88ac8a27", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "uuid": "c00edf36-a50a-4ed9-9d27-d18a6e04e2ef", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false }, { + "uuid": "0bf7a311-3769-4271-844b-35298b2f602d", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "uuid": "6d933143-4f2e-4fb1-9b4e-19d75de2c8fe", + "createdAt": "2016-05-09", + "completed": "2019-09-13", + "initiated": "2016-06-08", + "ministryContact": "KSHLERIN DEE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "uuid": "4477e1a5-72de-4be5-ba6a-9dd492058de7", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", + "uuid": "e3928b57-6cd6-4033-b70d-065dd93dee80", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "uuid": "671bd7ca-e099-42c3-aa44-46e503b6bd80", + "createdAt": "2017-04-17", + "completed": "2015-10-09", + "initiated": "2016-12-05", + "ministryContact": "WILLIAMSON PAUL", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "uuid": "616b0351-a92f-4d18-a525-80036990793f", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false }, { + "uuid": "1c5870d2-133f-4599-a7f7-c966eaac7146", "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "uuid": "b9db26f0-b497-40ff-9f20-b88498c24e1e", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false + }, + { + "uuid": "9e51f0a1-7a67-4d2e-a2a7-5f0c44625fcf", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false } ], "participants": [ { - "name": "AMET, DOLOR SIT", - "endDate": "2015-03-12", - "startDate": "2014-12-07", + "uuid": "515c8bcc-0cc9-4635-b6b0-8f17a9b2b822", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2023-05-01", + "startDate": "2014-09-07", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "uuid": "415174ed-cf5b-4846-bf54-c673d54c01bc", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2021-01-07", + "startDate": "2021-10-09", "notes": "", "roles": [ "ORGANIZATION" @@ -8537,84 +10169,119 @@ "siteRegistry": true }, { - "name": "IPSUM", - "endDate": "2018-05-27", - "startDate": "2020-06-08", + "uuid": "8491e47f-ddcf-4fcd-b3ab-e3f17c5a6046", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2018-11-03", + "startDate": "2018-07-21", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": false } ], "suspectLandUses": [ { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-12-17 (described on Site Profile dated 2015-12-17)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "uuid": "5bf82a0d-ebae-41bc-b460-d04a665dba90", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2023-02-19 (described on Site Profile dated 2023-02-19)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { + "uuid": "9fcc0f30-647a-4fcb-ad65-2364d41955cf", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-11-22 (described on Site Profile dated 2019-11-22)", + "notes": "INSERTED FOR SITE PROFILE DATED 2020-02-09 (described on Site Profile dated 2020-02-09)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { + "uuid": "2db1a18a-c15d-4def-a6d8-b6450db3beca", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-02-09 (described on Site Profile dated 2016-02-09)", + "notes": "INSERTED FOR SITE PROFILE DATED 2018-06-01 (described on Site Profile dated 2018-06-01)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { + "uuid": "965f4bee-7128-48c2-9db5-aca834bcab17", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-02-19 (described on Site Profile dated 2021-02-19)", + "notes": "INSERTED FOR SITE PROFILE DATED 2021-04-23 (described on Site Profile dated 2021-04-23)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], "parcelDescriptions": [ { + "uuid": "9b8d5dd4-d8c3-4dc1-bb4c-a1237501f7c9", + "siteRegistry": true, + "dateNoted": "2016-06-09", + "parcelID": "15838", + "crownLandUsePIN": "17172", + "crownLandFileNumber": "16162", + "landDescription": "LOT 5 OF LOT 4 BLOCK 5 DISTRICT LOT 4 PLAN 4709" + }, + { + "uuid": "1d367697-869f-45c7-b038-bfff4d23a8bf", "siteRegistry": true, - "dateNoted": "2020-03-01", - "parcelID": "15465", - "crownLandUsePIN": "16375", - "crownLandFileNumber": "19159", - "landDescription": "LOT 3 OF LOT 1 BLOCK 2 DISTRICT LOT 4 PLAN 6611" + "dateNoted": "2018-12-29", + "parcelID": "19354", + "crownLandUsePIN": "16338", + "crownLandFileNumber": "19240", + "landDescription": "LOT 2 OF LOT 3 BLOCK 5 DISTRICT LOT 4 PLAN 4558" }, { + "uuid": "0cbe5a29-6162-46ea-8ce1-1072df2ccf85", "siteRegistry": false, - "dateNoted": "2019-09-06", - "parcelID": "17610", - "crownLandUsePIN": "15990", - "crownLandFileNumber": "15287", - "landDescription": "LOT 4 OF LOT 2 BLOCK 1 DISTRICT LOT 3 PLAN 7593" + "dateNoted": "2021-04-09", + "parcelID": "20019", + "crownLandUsePIN": "19962", + "crownLandFileNumber": "18020", + "landDescription": "LOT 3 OF LOT 3 BLOCK 3 DISTRICT LOT 3 PLAN 6470" + }, + { + "uuid": "cb795c5c-601a-4c64-ab91-e1f152f56bb1", + "siteRegistry": true, + "dateNoted": "2018-07-06", + "parcelID": "15872", + "crownLandUsePIN": "19575", + "crownLandFileNumber": "20273", + "landDescription": "LOT 2 OF LOT 4 BLOCK 3 DISTRICT LOT 3 PLAN 3585" }, { + "uuid": "d185e50b-e6be-4a3c-8e44-4aace2c4a7c4", "siteRegistry": false, - "dateNoted": "2023-07-13", - "parcelID": "18408", - "crownLandUsePIN": "20465", - "crownLandFileNumber": "20940", - "landDescription": "LOT 2 OF LOT 2 BLOCK 4 DISTRICT LOT 1 PLAN 4292" + "dateNoted": "2023-04-02", + "parcelID": "16777", + "crownLandUsePIN": "18251", + "crownLandFileNumber": "18187", + "landDescription": "LOT 1 OF LOT 5 BLOCK 4 DISTRICT LOT 4 PLAN 6874" } ], "siteDisclosures": [ { + "uuid": "6c0bdb6f-3606-449d-a27a-b7edde6cda6b", "siteRegistry": false, - "dateReceived": "2015-09-26", - "dateCompleted": "2018-08-29", - "dateEntered": "2017-02-16", - "dateRegistrar": "2020-01-02", - "dateLocalAuthorityReceived": "2017-01-14", - "summary": "Nesciunt sapiente vitae.\nAb dolorum natus totam reprehenderit.\nRepellat beatae optio odio aliquid asperiores nostrum itaque aliquid.", - "informationUsed": "Quasi assumenda hic repellendus perspiciatis ex reprehenderit incidunt explicabo occaecati.\nLabore error excepturi repellendus voluptatibus temporibus corporis quos.\nVoluptate velit blanditiis quod enim explicabo.\nAspernatur odio in excepturi quas dicta illo voluptatibus tempore ipsum.", - "pastOrPresentOrders": "Quibusdam eligendi fuga veniam molestiae ratione dolore inventore veniam.", + "dateReceived": "2019-07-13", + "dateCompleted": "2021-11-24", + "dateEntered": "2022-01-03", + "dateRegistrar": "2018-04-28", + "dateLocalAuthorityReceived": "2014-07-20", + "summary": "Unde impedit neque modi porro molestiae doloribus suscipit ea.\nQuo eius dolores possimus corrupti error dolorem doloribus nihil.", + "informationUsed": "Reprehenderit cum iure fuga mollitia minus voluptatum asperiores.\nAutem suscipit nam cumque illo consequuntur.\nSit nisi ipsa.", + "pastOrPresentOrders": "Blanditiis eveniet natus officiis libero perspiciatis quo at.", "commercialAndIndustrialPurposes": [ { - "scheduleReference": "F2*", + "uuid": "6a0a6515-b2f3-470b-a535-29f16002054f", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false + "siteRegistry": true }, { + "uuid": "f7d39aec-9b63-4d67-9e01-3573c12b3b2d", "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "uuid": "2193d5dd-f449-4c52-9e38-c3da9788258e", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false } ] @@ -8622,83 +10289,107 @@ ], "activityLog": [ { + "uuid": "c4489099-c467-4a29-9d31-e7190a7043a2", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "STARK BLAISE", - "timestamp": "2021-11-19" + "user": "ABSHIRE FELIX", + "timestamp": "2020-10-15" }, { + "uuid": "58ee91f3-acf3-40e5-a40e-8fce92723da9", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "KOELPIN HELENA", - "timestamp": "2022-11-11" + "user": "HAAG OTHO", + "timestamp": "2017-12-22" }, { - "siteRegistry": false, + "uuid": "735b5443-3df8-4ebb-93ac-69b56f0a6869", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "YUNDT OSVALDO", - "timestamp": "2018-08-30" + "user": "MCCULLOUGH-CRUICKSHANK DAVION", + "timestamp": "2018-06-24" }, { + "uuid": "7841e32f-b4d6-41ac-8608-120208252328", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "MARKS MINERVA", - "timestamp": "2018-04-27" + "user": "POWLOWSKI BIANKA", + "timestamp": "2023-01-13" }, { + "uuid": "2db932dd-c180-4512-b08b-9d2b971720be", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "JOHNSTON ALBIN", - "timestamp": "2022-09-28" + "user": "BLOCK VERONA", + "timestamp": "2017-11-25" }, { + "uuid": "beb412f6-2ca0-481f-b181-eba80a4ed6c1", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "LESCH GLEN", - "timestamp": "2014-12-26" + "user": "FRIESEN HALEY", + "timestamp": "2021-03-07" }, { + "uuid": "30c7423c-7c4e-4f39-8ee2-3b36a5620dbd", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "KUTCH DAKOTA", + "timestamp": "2014-10-04" + }, + { + "uuid": "97ab6565-cc5f-408b-a940-c84f6a356e4b", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "SCHMIDT KIERA", - "timestamp": "2021-07-13" + "user": "HESSEL LUCIE", + "timestamp": "2019-01-12" } ], "associatedSites": [ { - "dateNoted": "2020-02-02", + "uuid": "6d30f23f-b92e-436e-a42e-3559bfb87664", + "dateNoted": "2019-02-14", + "notes": "", + "parcelID": "16005", + "siteID": "20573", + "siteRegistry": true + }, + { + "uuid": "2271ac6e-2f11-451c-84a6-440d9428d8d6", + "dateNoted": "2022-01-05", "notes": "", - "parcelID": "20534", - "siteID": "15761", + "parcelID": "19270", + "siteID": "20381", "siteRegistry": true } ] }, { - "uuid": "7c2b6c31-7429-41f7-9d8f-cc3be5334517", - "siteID": 16881, - "address": "4332 Lexus Loop", - "latitude": 57.8713, - "longitude": -123.5991, - "lastUpdated": "2017-10-16", - "city": "Moore", - "region": "Mainland/Southwest", - "victoriaFile": "26250-20/9299", + "uuid": "45b3b50e-fc67-43b7-bcab-99663415efb4", + "siteID": 18496, + "address": "85851 Garnett Mountain", + "latitude": 57.0668, + "longitude": -124.8432, + "lastUpdated": "2021-05-08", + "city": "Carterfort", + "region": "Cariboo", + "victoriaFile": "26250-20/1113", "regionalFile": "N/A", "parcelIDs": [ - 3118283, - 9057922, - 2201568, - 1545533, - 2218431 + 3785696, + 2979156, + 2852721, + 4170077, + 5722187 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2023-08-30", - "completed": "2016-01-16", - "initiated": "2020-02-02", - "ministryContact": "PADBERG-KEMMER BEVERLY", + "uuid": "2268142d-13eb-40d4-9352-411ea330bae7", + "createdAt": "2023-05-30", + "completed": "2019-03-23", + "initiated": "2016-11-15", + "ministryContact": "WISOKY ABIGALE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -8707,28 +10398,44 @@ ], "notationParticipants": [ { + "uuid": "1e10913c-ab2e-4653-a95d-c9cbca3dc21c", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false }, { + "uuid": "54711cd3-5325-440a-9e6c-6db8e17b21d4", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "uuid": "f34064f7-9967-40b2-9184-e4441285e1b0", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", + "uuid": "51b17e28-a35a-45a9-9c9d-9d31f76fc436", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "uuid": "09dc725c-33d4-409d-bf45-24bdb4cab08b", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": false } ], "siteRegistry": false }, { - "createdAt": "2019-11-25", - "completed": "2015-11-22", - "initiated": "2021-01-27", - "ministryContact": "VONRUEDEN MINA", + "uuid": "55983821-85c4-431d-a7cd-4c190e1d4675", + "createdAt": "2015-02-15", + "completed": "2014-08-04", + "initiated": "2018-06-24", + "ministryContact": "O'KEEFE SAMMIE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -8737,28 +10444,84 @@ ], "notationParticipants": [ { + "uuid": "c1474ce3-6829-4916-874e-fdd53069c36f", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "03062163-4d4d-449c-a29c-e801f35bc3d3", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "uuid": "153c2d60-fc26-4f5f-a165-3fff53165084", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false }, { + "uuid": "1ade8308-7b2a-4d3f-8025-a1d96bd4247b", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "9b09195b-4521-4b7d-a03c-b1c39709df75", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false - }, + } + ], + "siteRegistry": true + }, + { + "uuid": "e109762d-cc37-4348-8c16-7f739654c17c", + "createdAt": "2020-12-18", + "completed": "2015-01-21", + "initiated": "2018-01-19", + "ministryContact": "JACOBSON ASHLEY", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ { + "uuid": "e0109c96-8638-4591-bf72-c7c54ac02549", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true + }, + { + "uuid": "4a41f72a-bd9a-4a5a-b233-22332f5e9cd4", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "72b16053-fca2-4cb2-b880-e49c7d7975d9", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "9abd96a9-ccae-417d-8afb-d7d0f6ca75f1", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2016-06-23", - "completed": "2018-03-29", - "initiated": "2019-02-20", - "ministryContact": "WILL VERDIE", + "uuid": "faa05e9a-6a49-4872-9234-9c10347ded4e", + "createdAt": "2018-03-15", + "completed": "2014-05-04", + "initiated": "2021-07-19", + "ministryContact": "DICKENS LEXI", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -8767,54 +10530,89 @@ ], "notationParticipants": [ { + "uuid": "39707336-5931-4701-834f-3ab817cae06c", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "518c6142-5ff6-4e76-96b6-304b9a6536ed", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "uuid": "66437784-35e1-49c7-88de-c8924a56f5f3", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true }, { + "uuid": "54513ef7-8f51-44d2-8ad5-23f5387c7110", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true + }, + { + "uuid": "6f0bb195-e50a-43dc-aac0-f155c3f4fec0", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false } ], "participants": [ { - "name": "AMET, DOLOR SIT", - "endDate": "2023-04-22", - "startDate": "2022-07-27", + "uuid": "d1e17a02-da38-45be-8bac-a5510f019b9d", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2016-07-07", + "startDate": "2017-06-29", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": true }, { - "name": "AMET, DOLOR SIT", - "endDate": "2018-11-07", - "startDate": "2015-06-11", + "uuid": "ea9a1f4f-bb5f-488d-aadf-0fa111545a15", + "name": "IPSUM", + "endDate": "2014-07-26", + "startDate": "2023-07-21", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], - "siteRegistry": true + "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2022-12-25", - "startDate": "2016-09-15", + "uuid": "06ec389c-45ae-48e2-9a46-5ab6d1b70fc8", + "name": "IPSUM", + "endDate": "2014-02-18", + "startDate": "2021-11-06", "notes": "", "roles": [ "EMPLOYEE" ], + "siteRegistry": false + }, + { + "uuid": "7ee092ac-34fb-4a6a-bef1-6dd48b4c041c", + "name": "IPSUM", + "endDate": "2023-08-09", + "startDate": "2014-12-10", + "notes": "", + "roles": [ + "ORGANIZATION" + ], "siteRegistry": true }, { + "uuid": "f98989c8-d5db-4eea-a91c-d92d9249324d", "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2018-11-05", - "startDate": "2013-10-28", + "endDate": "2017-05-26", + "startDate": "2015-06-23", "notes": "", "roles": [ "EMPLOYEE" @@ -8824,176 +10622,231 @@ ], "suspectLandUses": [ { + "uuid": "99f12916-3013-404d-8248-e1faa9816b64", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-01-04 (described on Site Profile dated 2018-01-04)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" - }, - { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2020-09-16 (described on Site Profile dated 2020-09-16)", + "notes": "INSERTED FOR SITE PROFILE DATED 2022-04-22 (described on Site Profile dated 2022-04-22)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2023-03-19 (described on Site Profile dated 2023-03-19)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "uuid": "38d52207-cfcb-4d88-ab20-2a2e1dd30b58", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2018-10-15 (described on Site Profile dated 2018-10-15)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], "parcelDescriptions": [ { + "uuid": "73e09c3c-2784-4b32-9fb6-d33b41eba7a4", + "siteRegistry": true, + "dateNoted": "2022-12-25", + "parcelID": "17068", + "crownLandUsePIN": "20512", + "crownLandFileNumber": "15881", + "landDescription": "LOT 5 OF LOT 1 BLOCK 2 DISTRICT LOT 5 PLAN 8863" + }, + { + "uuid": "d63a2bf2-838a-4aa6-be6a-3c8e2ebe7b62", "siteRegistry": false, - "dateNoted": "2018-07-05", - "parcelID": "18232", - "crownLandUsePIN": "17669", - "crownLandFileNumber": "18772", - "landDescription": "LOT 4 OF LOT 3 BLOCK 3 DISTRICT LOT 4 PLAN 4499" + "dateNoted": "2022-04-17", + "parcelID": "17565", + "crownLandUsePIN": "20740", + "crownLandFileNumber": "18408", + "landDescription": "LOT 4 OF LOT 5 BLOCK 3 DISTRICT LOT 4 PLAN 5586" }, { - "siteRegistry": true, - "dateNoted": "2019-06-25", - "parcelID": "18778", - "crownLandUsePIN": "17659", - "crownLandFileNumber": "19895", - "landDescription": "LOT 1 OF LOT 2 BLOCK 3 DISTRICT LOT 3 PLAN 6545" + "uuid": "4d429d73-c5e4-4257-955d-06e38a34f85e", + "siteRegistry": false, + "dateNoted": "2023-01-12", + "parcelID": "18439", + "crownLandUsePIN": "17703", + "crownLandFileNumber": "17842", + "landDescription": "LOT 3 OF LOT 2 BLOCK 1 DISTRICT LOT 3 PLAN 5641" + }, + { + "uuid": "b00205bb-f240-4a6a-8ffe-ad7f2956c063", + "siteRegistry": false, + "dateNoted": "2021-08-07", + "parcelID": "20159", + "crownLandUsePIN": "18528", + "crownLandFileNumber": "17893", + "landDescription": "LOT 1 OF LOT 4 BLOCK 5 DISTRICT LOT 5 PLAN 3374" }, { + "uuid": "24edf4b8-cb28-499e-bda1-0102a02329eb", "siteRegistry": true, - "dateNoted": "2017-10-09", - "parcelID": "20290", - "crownLandUsePIN": "20294", - "crownLandFileNumber": "18861", - "landDescription": "LOT 4 OF LOT 5 BLOCK 5 DISTRICT LOT 3 PLAN 3324" + "dateNoted": "2015-12-05", + "parcelID": "15487", + "crownLandUsePIN": "17217", + "crownLandFileNumber": "20881", + "landDescription": "LOT 4 OF LOT 2 BLOCK 1 DISTRICT LOT 1 PLAN 4708" } ], "siteDisclosures": [ { - "siteRegistry": false, - "dateReceived": "2013-10-19", - "dateCompleted": "2020-10-02", - "dateEntered": "2019-10-17", - "dateRegistrar": "2017-09-14", - "dateLocalAuthorityReceived": "2015-04-25", - "summary": "Occaecati architecto voluptatibus aliquid ratione illum.\nMaiores laboriosam exercitationem aliquam tempora dicta vitae quos hic.", - "informationUsed": "Quasi nemo quae aspernatur odio enim quidem cumque ipsam dicta.\nQuos nobis aspernatur voluptas necessitatibus ut assumenda.\nAutem quisquam quisquam facilis qui nostrum maxime debitis beatae.", - "pastOrPresentOrders": "Nisi doloribus odit tempora laudantium ratione modi.\nSunt praesentium alias ducimus porro.\nMinus quis tempore.", + "uuid": "b3f661e4-7a02-45a9-8fc7-39025eddf8d8", + "siteRegistry": true, + "dateReceived": "2022-01-24", + "dateCompleted": "2016-03-11", + "dateEntered": "2014-03-18", + "dateRegistrar": "2021-11-24", + "dateLocalAuthorityReceived": "2021-08-16", + "summary": "Magni maiores amet.\nDolorem mollitia molestiae minus similique.\nIpsam possimus facere rem excepturi maiores distinctio porro ipsa minus.", + "informationUsed": "Asperiores debitis corrupti repellendus facilis totam facere.\nDolor aliquam numquam repellendus ipsa eius sequi suscipit.\nSed magnam omnis voluptatem fugiat alias vero impedit minus.", + "pastOrPresentOrders": "Id quam magnam perferendis architecto totam sunt nulla ex.\nA illum deleniti esse voluptatem quae.\nRem tenetur provident maxime error quaerat corporis quos voluptas eaque.", "commercialAndIndustrialPurposes": [ { + "uuid": "8585d9b9-51fb-40ef-a430-72d65a42266d", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "uuid": "4b3f317f-dacb-4305-bbf9-0d0fddea9799", "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "uuid": "3c19c758-effb-486d-8524-4e7075fe5e2d", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "uuid": "91dbf5ff-3581-4ad9-a11e-aff074d22eac", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + } + ] + }, + { + "uuid": "6f3b44f1-b654-412b-85ff-1bd73c908efb", + "siteRegistry": false, + "dateReceived": "2017-04-14", + "dateCompleted": "2021-10-05", + "dateEntered": "2019-10-27", + "dateRegistrar": "2018-03-01", + "dateLocalAuthorityReceived": "2023-03-12", + "summary": "Quibusdam cumque maiores.\nQuibusdam sint nesciunt repellat.\nIllum harum amet optio quis dolores possimus suscipit unde dolorum.", + "informationUsed": "Fuga minima deserunt culpa.\nEarum modi fugit qui non rem modi fugiat blanditiis.\nAlias blanditiis facilis ea impedit consectetur.\nDignissimos alias recusandae architecto nobis quis.\nIste cum illum omnis.", + "pastOrPresentOrders": "Odio ex sapiente nulla occaecati autem tempora neque nihil.\nDignissimos amet fugit enim quibusdam.", + "commercialAndIndustrialPurposes": [ + { + "uuid": "7c06b58e-2a1f-43c0-957b-8a82a3a793d2", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { + "uuid": "7f8fc969-6308-4612-a109-9700915a0e16", "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "uuid": "058dc088-feea-4975-8ac0-16a0b14854d5", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false + }, + { + "uuid": "1b51fe7b-b33a-401c-9917-51142d519b05", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true } ] } ], "activityLog": [ { + "uuid": "d83dd2cf-4d69-430b-8236-d25dda7e7795", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "BEDNAR MALACHI", - "timestamp": "2017-07-13" - }, - { - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "AUER RODRICK", - "timestamp": "2023-08-30" + "user": "PFEFFER ELISSA", + "timestamp": "2018-10-14" }, { + "uuid": "04f01bad-1d79-4dee-a971-9364d07a0b08", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "HARRIS DESHAUN", - "timestamp": "2022-11-30" - }, - { - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "JONES DEONDRE", - "timestamp": "2015-08-20" + "user": "LINDGREN RAEGAN", + "timestamp": "2016-01-25" }, { + "uuid": "76dd3e14-d9bd-429e-ad4f-b5484d3636d1", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "HUEL VERNER", - "timestamp": "2020-07-21" + "user": "KSHLERIN NOEL", + "timestamp": "2014-01-18" }, { + "uuid": "e29c5a12-520e-48e2-a8d4-9c42a8ac6b5e", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "ADAMS EBBA", - "timestamp": "2017-02-06" + "user": "O'REILLY HALEY", + "timestamp": "2020-04-02" }, { + "uuid": "ef97f2e6-bf1a-47b9-80b1-49a144a7c3b5", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "LEDNER TREVA", - "timestamp": "2014-07-19" - }, - { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "WATERS CARISSA", - "timestamp": "2016-08-20" + "user": "WINTHEISER GERSON", + "timestamp": "2017-12-16" }, { - "siteRegistry": true, + "uuid": "bd755fb0-75e3-4312-82bf-16f9ea8b22e6", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "HERZOG LAURYN", - "timestamp": "2022-12-01" + "user": "MERTZ EMELY", + "timestamp": "2023-09-08" }, { + "uuid": "1489944f-def2-414f-b173-76e1cfce2efa", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "HEANEY LYSANNE", - "timestamp": "2018-09-08" + "user": "GULGOWSKI COLTON", + "timestamp": "2014-03-20" } ], "associatedSites": [ { - "dateNoted": "2016-07-05", + "uuid": "91d1cced-0da0-43bc-935d-59cde5204187", + "dateNoted": "2021-08-16", "notes": "", - "parcelID": "15927", - "siteID": "17707", + "parcelID": "16411", + "siteID": "20526", "siteRegistry": true - }, - { - "dateNoted": "2013-11-07", - "notes": "", - "parcelID": "19275", - "siteID": "20293", - "siteRegistry": false } ] }, { - "uuid": "4de1ddcb-65ea-4edb-8899-bd78c890c666", - "siteID": 16027, - "address": "340 O'Conner Hill", - "latitude": 50.5317, - "longitude": -129.7837, - "lastUpdated": "2018-10-18", - "city": "West Virginieville", + "uuid": "90a6044c-4d92-4f67-b9f0-fc9e429841b6", + "siteID": 20687, + "address": "310 Rolfson Harbor", + "latitude": 49.565, + "longitude": -130.0795, + "lastUpdated": "2022-05-13", + "city": "Funkside", "region": "Thompson-Okanagan", - "victoriaFile": "26250-20/9422", + "victoriaFile": "26250-20/15198", "regionalFile": "N/A", "parcelIDs": [ - 4194307, - 1679569, - 3647298, - 9519470, - 6523046 + 6081931, + 4388416, + 5417078, + 9110306, + 7286348 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2013-10-24", - "completed": "2014-07-12", - "initiated": "2014-04-29", - "ministryContact": "KEELING MATILDA", + "uuid": "aadd6324-2e42-426e-b8c9-6d17f72bc450", + "createdAt": "2020-03-02", + "completed": "2019-09-18", + "initiated": "2020-11-22", + "ministryContact": "KASSULKE ARNE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -9002,22 +10855,26 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false + "uuid": "4e4679e4-68b9-4181-81d4-066e982c22e0", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true }, { + "uuid": "a6d6c809-3e0a-4d52-be81-e19340bd3095", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true }, { + "uuid": "d2d59d63-b326-42a8-9e95-e06d1e890699", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "184cf062-926f-422d-9cc4-66b01f7320db", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false } @@ -9025,10 +10882,11 @@ "siteRegistry": true }, { - "createdAt": "2019-12-03", - "completed": "2017-06-07", - "initiated": "2018-08-31", - "ministryContact": "BAYER JACKELINE", + "uuid": "a1f04cfe-886f-4d71-a4cc-35b0a65a0ac2", + "createdAt": "2019-02-14", + "completed": "2022-07-19", + "initiated": "2023-10-11", + "ministryContact": "FADEL EVERETTE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -9037,28 +10895,32 @@ ], "notationParticipants": [ { + "uuid": "1666c3f2-9c2d-4865-b7ea-6d87f078c196", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true + "role": "SUBMITTED BY", + "siteRegistry": false }, { + "uuid": "1479160b-7339-4006-ac0c-cc674ae59d9d", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false }, { + "uuid": "7f98695e-ffc4-4256-9a34-a089ebbcb6c2", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false } ], "siteRegistry": true }, { - "createdAt": "2017-03-08", - "completed": "2014-08-12", - "initiated": "2014-04-29", - "ministryContact": "GIBSON JAROD", + "uuid": "5d0447f4-9a14-4e9c-94ef-70f2bfb9702a", + "createdAt": "2016-03-12", + "completed": "2017-12-08", + "initiated": "2023-10-09", + "ministryContact": "WAELCHI JERRELL", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -9067,29 +10929,80 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "uuid": "52003c5e-1a52-41c2-aec3-f6a9e4075f82", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": true }, { + "uuid": "ba4e77b1-887e-498a-b230-b878795da2ad", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false }, { + "uuid": "09c23ded-9c99-42e3-993f-09bcb48815d4", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "uuid": "e80c7f61-78b9-4975-a39e-0ee2918a974b", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": true }, { + "uuid": "80d6b257-d672-4a4f-8481-2f20a6302857", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "uuid": "940e75c9-94f9-4105-bc0d-ea48f87bc2dd", + "createdAt": "2015-07-17", + "completed": "2023-04-21", + "initiated": "2019-01-31", + "ministryContact": "HUELS DAPHNEY", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "uuid": "566cb98d-ca49-4b17-9107-2a6faa8bf27b", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "e007c4f0-0537-4af5-870e-12ddb8e36138", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { + "uuid": "75f09331-6291-4095-b0db-f51005c36922", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false + }, + { + "uuid": "b76277da-0080-4346-9831-bc8b4de10d78", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "uuid": "ea201a17-beaa-43a6-b880-c85803092083", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false } ], "siteRegistry": true @@ -9097,29 +11010,10 @@ ], "participants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2020-04-26", - "startDate": "2015-02-24", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2020-09-18", - "startDate": "2017-05-16", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2019-12-23", - "startDate": "2022-03-20", + "uuid": "2c8a5614-c540-4c2e-a7b0-524af2d53a54", + "name": "IPSUM", + "endDate": "2023-08-20", + "startDate": "2020-10-20", "notes": "", "roles": [ "EMPLOYEE" @@ -9127,225 +11021,247 @@ "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2022-11-26", - "startDate": "2021-08-07", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": true - }, - { - "name": "IPSUM", - "endDate": "2016-10-04", - "startDate": "2018-05-24", + "uuid": "3bf3e258-6af3-4d1e-8bbb-99a555cd637c", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2015-08-04", + "startDate": "2022-03-25", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": true } ], "suspectLandUses": [ { + "uuid": "48dc558c-8219-4e05-a5e4-d533c7aaec00", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-10-24 (described on Site Profile dated 2019-10-24)", + "notes": "INSERTED FOR SITE PROFILE DATED 2019-04-11 (described on Site Profile dated 2019-04-11)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "uuid": "15341af6-25d5-498f-b31f-51caee927241", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2017-02-17 (described on Site Profile dated 2017-02-17)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { + "uuid": "8d569b59-8b9f-4be8-ade2-e15a9d54880f", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-05-24 (described on Site Profile dated 2016-05-24)", + "notes": "INSERTED FOR SITE PROFILE DATED 2014-03-22 (described on Site Profile dated 2014-03-22)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "uuid": "c6d2aa59-d1f9-4c76-9ba2-8c9f7f8fc40a", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2023-05-04 (described on Site Profile dated 2023-05-04)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { + "uuid": "0ad5a287-4a4f-41cf-998a-ee6043cdf5c5", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2023-06-16 (described on Site Profile dated 2023-06-16)", + "notes": "INSERTED FOR SITE PROFILE DATED 2015-07-05 (described on Site Profile dated 2015-07-05)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], "parcelDescriptions": [ { - "siteRegistry": true, - "dateNoted": "2016-10-24", - "parcelID": "17420", - "crownLandUsePIN": "17639", - "crownLandFileNumber": "16205", - "landDescription": "LOT 5 OF LOT 2 BLOCK 2 DISTRICT LOT 1 PLAN 9447" + "uuid": "db044cca-4463-4d8f-8ad9-ad0add44bdd3", + "siteRegistry": false, + "dateNoted": "2020-06-10", + "parcelID": "16005", + "crownLandUsePIN": "20114", + "crownLandFileNumber": "18241", + "landDescription": "LOT 5 OF LOT 2 BLOCK 4 DISTRICT LOT 5 PLAN 4506" }, { + "uuid": "9bf9f1ff-bd1f-409a-b7d4-55a3226e2e46", "siteRegistry": true, - "dateNoted": "2019-07-20", - "parcelID": "15808", - "crownLandUsePIN": "17842", - "crownLandFileNumber": "17072", - "landDescription": "LOT 4 OF LOT 1 BLOCK 5 DISTRICT LOT 2 PLAN 7404" + "dateNoted": "2014-05-10", + "parcelID": "18227", + "crownLandUsePIN": "15220", + "crownLandFileNumber": "18383", + "landDescription": "LOT 3 OF LOT 2 BLOCK 1 DISTRICT LOT 5 PLAN 5008" }, { - "siteRegistry": true, - "dateNoted": "2020-09-13", - "parcelID": "15883", - "crownLandUsePIN": "18176", - "crownLandFileNumber": "18616", - "landDescription": "LOT 2 OF LOT 3 BLOCK 3 DISTRICT LOT 5 PLAN 7379" + "uuid": "417325be-a9f9-438f-97df-c24e71a97105", + "siteRegistry": false, + "dateNoted": "2016-08-16", + "parcelID": "19868", + "crownLandUsePIN": "20232", + "crownLandFileNumber": "20181", + "landDescription": "LOT 3 OF LOT 5 BLOCK 4 DISTRICT LOT 3 PLAN 3042" }, { - "siteRegistry": false, - "dateNoted": "2016-01-05", - "parcelID": "18909", - "crownLandUsePIN": "17016", - "crownLandFileNumber": "16425", - "landDescription": "LOT 5 OF LOT 2 BLOCK 4 DISTRICT LOT 3 PLAN 4997" + "uuid": "56f9bdd1-bfcb-4624-ab49-6d21f92857c4", + "siteRegistry": true, + "dateNoted": "2015-01-18", + "parcelID": "15444", + "crownLandUsePIN": "16667", + "crownLandFileNumber": "15241", + "landDescription": "LOT 2 OF LOT 1 BLOCK 2 DISTRICT LOT 3 PLAN 4301" } ], "siteDisclosures": [ { + "uuid": "1bfbf596-3805-4e19-bfe4-6116f2ccdaa8", "siteRegistry": true, - "dateReceived": "2020-01-31", - "dateCompleted": "2015-08-29", - "dateEntered": "2015-01-25", - "dateRegistrar": "2020-04-25", - "dateLocalAuthorityReceived": "2022-10-04", - "summary": "Eum nobis sit nemo ratione sit nemo similique expedita.", - "informationUsed": "Eum ducimus assumenda repellat natus amet voluptatum.\nAmet fuga excepturi error enim officiis.\nNeque corporis amet temporibus pariatur sed laudantium quod eveniet iure.", - "pastOrPresentOrders": "Vero molestiae ipsam.\nAdipisci fugiat unde distinctio atque vel iste exercitationem dignissimos dolor.", + "dateReceived": "2015-02-19", + "dateCompleted": "2017-01-17", + "dateEntered": "2021-04-16", + "dateRegistrar": "2017-05-24", + "dateLocalAuthorityReceived": "2017-04-06", + "summary": "Laborum iusto animi magnam delectus quod rerum nisi.\nMolestias impedit aperiam nemo odit.\nIste illum itaque numquam ullam omnis.", + "informationUsed": "Dignissimos voluptas veritatis accusamus ab fugit sequi animi ex.\nVeritatis esse occaecati doloribus aut laborum impedit iste.\nInventore optio delectus dolorum vel neque dolorum sit assumenda excepturi.", + "pastOrPresentOrders": "Saepe omnis earum mollitia.", "commercialAndIndustrialPurposes": [ { - "scheduleReference": "F2*", + "uuid": "6091b5c0-5fb1-4766-bb3f-5ef4caaf08fd", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { - "scheduleReference": "F1*", + "uuid": "1b0de366-d7b4-4be4-9eb1-da83e432367e", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, { + "uuid": "1fbf3c76-9fab-4b46-ba1f-2fa5851ce42c", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false + "siteRegistry": true }, { + "uuid": "776f5f95-8511-481d-aafd-5f10d7b53490", "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false } ] }, { - "siteRegistry": false, - "dateReceived": "2018-06-06", - "dateCompleted": "2019-03-14", - "dateEntered": "2022-11-02", - "dateRegistrar": "2015-12-21", - "dateLocalAuthorityReceived": "2021-06-21", - "summary": "Eum hic corporis quibusdam enim minus voluptate quas quod.\nModi aliquid qui dicta.", - "informationUsed": "Animi corrupti deserunt officiis eius quod.\nReiciendis quam odit tenetur.\nNisi libero et iste at nemo excepturi delectus.", - "pastOrPresentOrders": "Nemo corporis nemo aliquam.\nItaque reprehenderit fuga officiis ab voluptatibus.\nHic delectus quibusdam sapiente facilis dolorum architecto.", + "uuid": "1b48ed18-5e2b-4505-a876-fce02285d64b", + "siteRegistry": true, + "dateReceived": "2014-10-03", + "dateCompleted": "2021-05-12", + "dateEntered": "2014-11-13", + "dateRegistrar": "2014-05-07", + "dateLocalAuthorityReceived": "2018-11-01", + "summary": "Officiis modi dolore cum reiciendis.\nMaiores necessitatibus neque reprehenderit praesentium quidem hic totam tenetur saepe.", + "informationUsed": "Reiciendis non laudantium odio similique.\nMagni eius dicta nesciunt quis excepturi.\nCommodi exercitationem adipisci.", + "pastOrPresentOrders": "Explicabo impedit omnis velit ut reprehenderit quibusdam aperiam itaque voluptatum.", "commercialAndIndustrialPurposes": [ { + "uuid": "5615c737-9c0d-4599-a3b8-76e52ee3c608", "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true }, { + "uuid": "fbeb15f8-3451-4d48-9c58-066ff16925e7", "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true }, { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false + "uuid": "5fe44262-f8fe-4ccd-a722-4048148f6742", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true } ] } ], "activityLog": [ { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "WEISSNAT ISABEL", - "timestamp": "2018-04-05" - }, - { + "uuid": "205be29a-7d37-4698-b159-2915dba936e2", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "MURAZIK ALEXZANDER", - "timestamp": "2019-09-25" + "user": "TORPHY LEOPOLD", + "timestamp": "2021-04-16" }, { + "uuid": "740c12a4-3796-468e-bb68-baaea7b5d701", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "SAUER-GLOVER SIGURD", - "timestamp": "2014-10-31" + "user": "HEIDENREICH ZENA", + "timestamp": "2021-05-10" }, { - "siteRegistry": false, + "uuid": "c79eb4cb-ec63-4d3d-b36b-0b16b4e9705a", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "KUPHAL LILIANA", - "timestamp": "2022-08-23" + "user": "HEIDENREICH LEONARD", + "timestamp": "2022-05-31" }, { - "siteRegistry": false, + "uuid": "86d3eee4-7a90-4756-9f89-fa8d4af88332", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "DICKI PERRY", - "timestamp": "2020-02-04" + "user": "GOODWIN RICHARD", + "timestamp": "2023-04-17" }, { - "siteRegistry": false, + "uuid": "5191d1bf-39b7-475e-ac34-cee5174e38f1", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "WALTER TATE", - "timestamp": "2016-01-01" + "user": "SMITH ASTRID", + "timestamp": "2017-06-01" }, { + "uuid": "a162034e-b11c-486c-a502-7835cf52102c", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "SCHUSTER FATIMA", - "timestamp": "2021-01-09" + "user": "ROBERTS-SATTERFIELD ARMANDO", + "timestamp": "2021-12-06" }, { - "siteRegistry": false, + "uuid": "ba268d7d-9291-427b-b41f-f82ba9d7b8c8", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "BAILEY BERNIECE", - "timestamp": "2018-04-14" + "user": "HILLS ANTONIO", + "timestamp": "2016-09-13" } ], "associatedSites": [ { - "dateNoted": "2014-01-03", + "uuid": "3556a496-65c8-4b9b-bcb1-6ee9d4bd7112", + "dateNoted": "2014-04-30", "notes": "", - "parcelID": "17924", - "siteID": "18732", + "parcelID": "18405", + "siteID": "18294", "siteRegistry": false } ] }, { - "uuid": "f5c44834-faff-45e9-9f45-73c4c66ea18e", - "siteID": 20243, - "address": "99420 Mayert Courts", - "latitude": 58.7224, - "longitude": -137.8475, - "lastUpdated": "2018-09-16", - "city": "New Eloy", - "region": "Cariboo", - "victoriaFile": "26250-20/17905", + "uuid": "3384e6f4-3010-4e68-84aa-5cf8128f0442", + "siteID": 19730, + "address": "681 Towne Court", + "latitude": 50.1902, + "longitude": -134.5733, + "lastUpdated": "2018-11-26", + "city": "New Laishacester", + "region": "Mainland/Southwest", + "victoriaFile": "26250-20/19349", "regionalFile": "N/A", "parcelIDs": [ - 154347, - 6997817, - 7650263, - 7536407, - 2084761 + 1331551, + 5351880, + 2790650, + 7312844, + 9557507 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2020-11-19", - "completed": "2017-01-31", - "initiated": "2014-02-03", - "ministryContact": "HESSEL ROMAINE", + "uuid": "bc4f552d-dde2-4ce8-ab9e-d2659a4c84a7", + "createdAt": "2018-04-21", + "completed": "2016-04-12", + "initiated": "2020-07-14", + "ministryContact": "LEHNER ALIYA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -9354,38 +11270,38 @@ ], "notationParticipants": [ { + "uuid": "fb1d2218-2f4e-476e-adae-c89f26ebe39d", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { + "uuid": "ccd87243-b90f-46bc-9bab-8bd2708253c2", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { + "uuid": "8681d705-e272-4813-a570-c3d44e12524d", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "b9a4ae0c-701a-4860-b038-8beb20a96fbf", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false } ], "siteRegistry": false }, { - "createdAt": "2013-11-27", - "completed": "2019-09-19", - "initiated": "2021-09-15", - "ministryContact": "POWLOWSKI RODRIGO", + "uuid": "67a49043-eb70-48c8-9e04-47ced7e5d9d5", + "createdAt": "2022-05-29", + "completed": "2021-03-03", + "initiated": "2017-12-23", + "ministryContact": "JOHNSON BERRY", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -9394,21 +11310,25 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", + "uuid": "afd2e802-9aae-42de-98db-7d65edb2b604", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { + "uuid": "4ee88633-e0c8-46bd-b387-ce53bb6584fe", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "uuid": "10f2db5d-21a8-4704-b17c-3c0b856aa5b5", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", "siteRegistry": false }, { + "uuid": "ec4e97de-d2c4-45a1-9d4b-c7f77ea722f4", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true @@ -9417,10 +11337,11 @@ "siteRegistry": true }, { - "createdAt": "2016-11-19", - "completed": "2016-11-13", - "initiated": "2022-09-24", - "ministryContact": "HAMMES VIOLA", + "uuid": "784b119e-7497-4144-a6e0-ff02dffe18a4", + "createdAt": "2019-01-12", + "completed": "2023-10-06", + "initiated": "2021-09-17", + "ministryContact": "ABSHIRE MADELYN", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -9429,54 +11350,34 @@ ], "notationParticipants": [ { + "uuid": "aa7d82f9-08db-43c2-8e69-4976b312cf84", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false + "role": "REQUESTED BY", + "siteRegistry": true }, { + "uuid": "f1cc580b-0313-43f5-afe2-d1e0348f5c3d", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false }, { + "uuid": "6cad8e0e-6524-4959-b8c3-4951ad0c2e7a", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { + "uuid": "73b6ff45-50a3-4bc7-a20d-c308e895d634", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true - } - ], - "siteRegistry": true - }, - { - "createdAt": "2021-03-07", - "completed": "2019-01-17", - "initiated": "2021-04-08", - "ministryContact": "WILDERMAN LELAH", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false }, { + "uuid": "f1f4ca71-2e0f-4dd6-9e89-aecae1d69be9", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true } ], "siteRegistry": false @@ -9484,9 +11385,10 @@ ], "participants": [ { - "name": "AMET, DOLOR SIT", - "endDate": "2017-07-01", - "startDate": "2014-04-19", + "uuid": "3b61e662-d12c-4702-a740-275421c04ca8", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2015-04-26", + "startDate": "2023-04-27", "notes": "", "roles": [ "ORGANIZATION" @@ -9494,9 +11396,10 @@ "siteRegistry": false }, { + "uuid": "669b9584-4e70-4472-824e-55c9b4862bba", "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2018-10-03", - "startDate": "2020-10-01", + "endDate": "2022-12-03", + "startDate": "2022-04-09", "notes": "", "roles": [ "EMPLOYEE" @@ -9504,9 +11407,10 @@ "siteRegistry": false }, { + "uuid": "5c934413-d097-4ec9-8675-40f3c8d79e66", "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2022-08-23", - "startDate": "2015-12-12", + "endDate": "2018-10-30", + "startDate": "2014-10-24", "notes": "", "roles": [ "EMPLOYEE" @@ -9514,9 +11418,21 @@ "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2017-01-23", - "startDate": "2016-06-10", + "uuid": "432026f6-0b5c-4cfe-845e-d4e54eb8eb88", + "name": "AMET, DOLOR SIT", + "endDate": "2022-02-15", + "startDate": "2019-02-28", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "uuid": "befb4872-6c10-4a11-93f5-0e800db7d9fb", + "name": "AMET, DOLOR SIT", + "endDate": "2022-12-04", + "startDate": "2018-08-04", "notes": "", "roles": [ "EMPLOYEE" @@ -9526,179 +11442,213 @@ ], "suspectLandUses": [ { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-12-10 (described on Site Profile dated 2017-12-10)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "uuid": "78f29bc9-e663-4bb9-b3f3-771ee2c88887", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2014-05-27 (described on Site Profile dated 2014-05-27)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { + "uuid": "7958e36c-d94f-42e1-94d2-27bc183ed9ec", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2013-12-24 (described on Site Profile dated 2013-12-24)", + "notes": "INSERTED FOR SITE PROFILE DATED 2021-12-28 (described on Site Profile dated 2021-12-28)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { + "uuid": "164dfbb0-2c85-491c-a723-0f3d7c139ba6", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2014-07-15 (described on Site Profile dated 2014-07-15)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "uuid": "79c640e4-2e9e-49e9-833f-b3eca1fcf4de", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-06-19 (described on Site Profile dated 2015-06-19)", + "notes": "INSERTED FOR SITE PROFILE DATED 2022-07-01 (described on Site Profile dated 2022-07-01)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { + "uuid": "1bcfb2f7-9fc4-472d-a58e-387b4aa166da", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2023-10-01 (described on Site Profile dated 2023-10-01)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "notes": "INSERTED FOR SITE PROFILE DATED 2019-11-22 (described on Site Profile dated 2019-11-22)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], "parcelDescriptions": [ { + "uuid": "9d9dc500-e66c-4c53-ba79-d679b94dde40", + "siteRegistry": true, + "dateNoted": "2015-08-18", + "parcelID": "19724", + "crownLandUsePIN": "16618", + "crownLandFileNumber": "16344", + "landDescription": "LOT 1 OF LOT 2 BLOCK 5 DISTRICT LOT 2 PLAN 9305" + }, + { + "uuid": "64727def-0892-4636-b1de-af0572d36cae", "siteRegistry": false, - "dateNoted": "2014-09-28", - "parcelID": "16385", - "crownLandUsePIN": "19629", - "crownLandFileNumber": "20960", - "landDescription": "LOT 2 OF LOT 2 BLOCK 4 DISTRICT LOT 4 PLAN 8259" + "dateNoted": "2013-11-14", + "parcelID": "19266", + "crownLandUsePIN": "18479", + "crownLandFileNumber": "19922", + "landDescription": "LOT 4 OF LOT 1 BLOCK 4 DISTRICT LOT 4 PLAN 4544" + }, + { + "uuid": "dfaf9c7b-6bd3-4c69-bcf2-43914888b8f2", + "siteRegistry": false, + "dateNoted": "2018-10-13", + "parcelID": "17960", + "crownLandUsePIN": "19579", + "crownLandFileNumber": "18225", + "landDescription": "LOT 3 OF LOT 1 BLOCK 1 DISTRICT LOT 5 PLAN 7852" }, { + "uuid": "989d76b3-de41-41cb-8c2e-6d07898727a7", "siteRegistry": true, - "dateNoted": "2016-09-07", - "parcelID": "18731", - "crownLandUsePIN": "15382", - "crownLandFileNumber": "15377", - "landDescription": "LOT 5 OF LOT 3 BLOCK 5 DISTRICT LOT 1 PLAN 5023" + "dateNoted": "2023-03-06", + "parcelID": "16365", + "crownLandUsePIN": "18123", + "crownLandFileNumber": "15791", + "landDescription": "LOT 1 OF LOT 3 BLOCK 4 DISTRICT LOT 4 PLAN 2981" }, { - "siteRegistry": false, - "dateNoted": "2020-02-24", - "parcelID": "15474", - "crownLandUsePIN": "16283", - "crownLandFileNumber": "18609", - "landDescription": "LOT 2 OF LOT 2 BLOCK 5 DISTRICT LOT 2 PLAN 6888" + "uuid": "f67a8d45-d9aa-45e5-b2a5-3db9c05ec55f", + "siteRegistry": true, + "dateNoted": "2017-03-31", + "parcelID": "15771", + "crownLandUsePIN": "17831", + "crownLandFileNumber": "16748", + "landDescription": "LOT 2 OF LOT 3 BLOCK 1 DISTRICT LOT 1 PLAN 4218" } ], "siteDisclosures": [ { - "siteRegistry": false, - "dateReceived": "2017-07-02", - "dateCompleted": "2020-06-06", - "dateEntered": "2014-03-05", - "dateRegistrar": "2013-11-25", - "dateLocalAuthorityReceived": "2022-06-05", - "summary": "Mollitia labore necessitatibus asperiores amet tenetur necessitatibus itaque.\nOmnis quisquam quod.", - "informationUsed": "Repellat harum quos maxime aliquam modi aut hic nisi.\nRecusandae eos maiores.\nIpsam animi atque molestias asperiores ipsum.", - "pastOrPresentOrders": "Cum quasi ullam numquam earum est laboriosam omnis.\nSed excepturi illum recusandae labore quibusdam natus.\nLabore harum nobis reiciendis facere labore consequatur esse.", + "uuid": "3474b4d7-8792-48c1-83c6-c7f80be5b93d", + "siteRegistry": true, + "dateReceived": "2021-11-29", + "dateCompleted": "2017-04-23", + "dateEntered": "2015-02-23", + "dateRegistrar": "2017-08-02", + "dateLocalAuthorityReceived": "2023-01-17", + "summary": "Saepe velit ipsa perferendis dicta officiis.\nHic cumque dolor minima dicta facere exercitationem laborum.", + "informationUsed": "Quia consectetur in libero laudantium aliquam voluptates.\nFugiat quasi impedit dolorum ut optio vel quia.\nTenetur eum facere sunt quaerat magni ipsa molestiae ratione.\nVeritatis enim cum nesciunt eius ex laboriosam.", + "pastOrPresentOrders": "Explicabo adipisci beatae occaecati officiis.\nBeatae quas quae eveniet ratione.", "commercialAndIndustrialPurposes": [ { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false - }, - { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false - }, - { + "uuid": "cf31e811-ca98-427f-8266-844ec0f168db", "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false - } - ] - }, - { - "siteRegistry": true, - "dateReceived": "2019-09-15", - "dateCompleted": "2015-08-24", - "dateEntered": "2020-02-22", - "dateRegistrar": "2022-09-26", - "dateLocalAuthorityReceived": "2019-06-20", - "summary": "Earum ex animi deleniti iusto consequatur dolorum.", - "informationUsed": "Unde totam natus reprehenderit commodi ratione.\nMagni quasi eum architecto.\nEaque vero blanditiis voluptatum.\nLaborum sapiente quisquam porro modi blanditiis porro soluta natus.", - "pastOrPresentOrders": "Suscipit quis beatae officiis doloribus.", - "commercialAndIndustrialPurposes": [ - { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true }, { + "uuid": "41a9d0c2-2eb4-43ee-9403-9a498e4d50a0", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true + "siteRegistry": false } ] } ], "activityLog": [ { - "siteRegistry": true, + "uuid": "9647e323-f14a-429f-bd4a-bdb641f874ca", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "PROSACCO ABBIGAIL", - "timestamp": "2016-05-06" + "user": "WATSICA RENEE", + "timestamp": "2016-10-26" }, { + "uuid": "d14ef598-5a0d-44ef-a155-cb72a4b1483d", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "HACKETT AMANI", - "timestamp": "2015-10-10" + "user": "CHRISTIANSEN KAITLIN", + "timestamp": "2023-06-26" }, { - "siteRegistry": true, + "uuid": "cd951382-bc49-4974-b275-ca6ebd592309", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "MURPHY NORWOOD", - "timestamp": "2014-03-13" + "user": "REINGER DORRIS", + "timestamp": "2022-06-09" }, { + "uuid": "4916ec6f-9281-473e-971d-ee156f31265e", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "DOYLE MELYSSA", - "timestamp": "2020-02-29" + "user": "MAYER MOSE", + "timestamp": "2016-05-10" + }, + { + "uuid": "22f140a6-5120-4c0c-ac34-a7bacd691faf", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "SAUER CONCEPCION", + "timestamp": "2019-04-18" + }, + { + "uuid": "c26de85e-cb29-4ce1-a698-0d46a2a1a128", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "FRIESEN ADOLPHUS", + "timestamp": "2014-08-28" + }, + { + "uuid": "2a15ef1c-fcd3-41b7-95a7-5d4342c6ee54", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "FUNK GRACIE", + "timestamp": "2022-07-15" }, { + "uuid": "1b30d59f-c278-4f31-b641-e33213242fc9", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "SMITHAM MARIBEL", - "timestamp": "2018-07-09" + "user": "LESCH LAVADA", + "timestamp": "2014-01-07" + }, + { + "uuid": "0bce86cb-583d-4fb7-b79d-ed88652d5d53", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "DICKI RASHAD", + "timestamp": "2019-06-17" } ], "associatedSites": [ { - "dateNoted": "2023-10-08", - "notes": "", - "parcelID": "18415", - "siteID": "20741", - "siteRegistry": false - }, - { - "dateNoted": "2022-05-21", + "uuid": "3578b425-4898-49fd-908e-e908396dda05", + "dateNoted": "2020-04-30", "notes": "", - "parcelID": "18822", - "siteID": "19390", + "parcelID": "17415", + "siteID": "18687", "siteRegistry": false } ] }, { - "uuid": "c06a03ea-7bfd-4bf9-85b1-20e1dd5fbeb6", - "siteID": 17653, - "address": "41771 Jadon Expressway", - "latitude": 54.8303, - "longitude": -138.0613, - "lastUpdated": "2021-11-08", - "city": "Port Monte", - "region": "Cariboo", - "victoriaFile": "26250-20/16420", + "uuid": "d3939df8-e6cb-4adc-b491-421027bb482e", + "siteID": 19122, + "address": "933 Kreiger Flats", + "latitude": 49.3065, + "longitude": -135.8924, + "lastUpdated": "2020-03-31", + "city": "Pueblo", + "region": "Thompson-Okanagan", + "victoriaFile": "26250-20/5614", "regionalFile": "N/A", "parcelIDs": [ - 6881667, - 9268003, - 9451684, - 9334492, - 7450429 + 4393055, + 787349, + 8310271, + 6722294, + 8306228 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2023-01-17", - "completed": "2020-04-12", - "initiated": "2020-08-30", - "ministryContact": "STOLTENBERG CORTNEY", + "uuid": "8f63f06b-77b7-4b6b-8c34-cd1c6edc3b38", + "createdAt": "2015-10-07", + "completed": "2021-11-16", + "initiated": "2017-05-03", + "ministryContact": "KUHLMAN YASMEEN", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -9707,33 +11657,44 @@ ], "notationParticipants": [ { + "uuid": "e141f73e-74b0-41f0-801d-6e333d3b1429", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false }, { + "uuid": "a19b6f95-9147-40f9-a120-3cfa6fd7260e", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false }, { + "uuid": "9f9373de-2284-4631-b35a-42e51888c70e", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false }, { + "uuid": "d5ba844a-8786-4f11-bb80-e62d5e70d485", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true + }, + { + "uuid": "e72587ae-45d6-43b1-9c0a-a1aec7c43607", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2018-12-24", - "completed": "2018-12-19", - "initiated": "2020-12-03", - "ministryContact": "BAHRINGER ALEXZANDER", + "uuid": "1d2a8141-6c0c-4188-8824-8a8eb725a1b1", + "createdAt": "2019-06-05", + "completed": "2019-08-17", + "initiated": "2019-03-31", + "ministryContact": "LANGWORTH INES", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -9742,38 +11703,78 @@ ], "notationParticipants": [ { + "uuid": "4c6918fd-d55f-4de4-b43e-b9c081483c28", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "9328d602-450b-455b-beb0-c2cd087f6851", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", "siteRegistry": false }, { + "uuid": "c7119967-c642-4e75-bf2f-e9aeae05241c", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "uuid": "78a44c5f-2d36-4bba-bb95-c9bfb431997f", + "createdAt": "2021-08-12", + "completed": "2021-12-18", + "initiated": "2018-06-04", + "ministryContact": "LUBOWITZ LINDA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "uuid": "bebd5e6f-12d4-4fd3-bd00-21bd19b8bc25", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true }, { + "uuid": "04bb6bf4-dd35-4378-85ce-f51cbfd1be74", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "b5da60db-1fe5-4b04-82e4-7f239f02fff3", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { + "uuid": "dc7dccd5-70f5-4ab9-9679-23045684c2f1", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false + }, + { + "uuid": "1b1607f6-c7b2-491b-b36a-de7f6c47765f", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2016-02-16", - "completed": "2022-07-16", - "initiated": "2017-01-03", - "ministryContact": "SHANAHAN EARNESTINE", + "uuid": "07c7a0de-848c-4533-b6c9-d5febdf8b48c", + "createdAt": "2018-12-12", + "completed": "2015-08-26", + "initiated": "2017-06-04", + "ministryContact": "VANDERVORT ANNALISE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -9782,34 +11783,33 @@ ], "notationParticipants": [ { + "uuid": "ac184ac7-6f4b-48e6-91fd-9c78b3c99141", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "591e27d3-b6bd-4cf2-b558-394412339994", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { + "uuid": "7b858e79-d34d-402a-bfcd-31367d84115e", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false } ], "participants": [ { - "name": "IPSUM", - "endDate": "2021-06-16", - "startDate": "2017-09-19", + "uuid": "34d2015a-65da-4175-aef9-090945a85d6e", + "name": "AMET, DOLOR SIT", + "endDate": "2020-05-15", + "startDate": "2023-06-21", "notes": "", "roles": [ "EMPLOYEE" @@ -9817,115 +11817,151 @@ "siteRegistry": false }, { + "uuid": "de38e0c5-458d-41e4-918d-98ba593f00bd", "name": "SHELL CANADA PRODUCTS", - "endDate": "2017-03-21", - "startDate": "2021-02-05", + "endDate": "2017-08-07", + "startDate": "2014-09-15", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "uuid": "ca78b2d6-4e1d-4b7c-8b4e-bfaa45c40101", + "name": "IPSUM", + "endDate": "2017-01-30", + "startDate": "2022-02-27", "notes": "", "roles": [ "ORGANIZATION" ], "siteRegistry": true + }, + { + "uuid": "1995fa95-f647-4f46-b4fc-3e49d63ce435", + "name": "IPSUM", + "endDate": "2013-11-24", + "startDate": "2015-06-18", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false } ], "suspectLandUses": [ { + "uuid": "c590e2ee-8a5f-40aa-81ae-0b8d1f1775bd", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2020-08-24 (described on Site Profile dated 2020-08-24)", + "notes": "INSERTED FOR SITE PROFILE DATED 2015-01-20 (described on Site Profile dated 2015-01-20)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { + "uuid": "9821e804-78f2-444e-8d61-c8246389a30c", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-01-19 (described on Site Profile dated 2018-01-19)", + "notes": "INSERTED FOR SITE PROFILE DATED 2015-03-01 (described on Site Profile dated 2015-03-01)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "uuid": "24517fa0-99d1-4a0b-9ff2-f2098179c273", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2016-04-14 (described on Site Profile dated 2016-04-14)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { + "uuid": "d36d3286-ce48-4fda-849b-416b639f5f7f", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2019-09-30 (described on Site Profile dated 2019-09-30)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "uuid": "f54b703e-0e80-4b22-94bf-25f6625edc0d", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-12-17 (described on Site Profile dated 2017-12-17)", + "notes": "INSERTED FOR SITE PROFILE DATED 2016-02-05 (described on Site Profile dated 2016-02-05)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], "parcelDescriptions": [ { + "uuid": "2521185b-7b94-415e-a10f-3bb358b1920d", "siteRegistry": false, - "dateNoted": "2014-01-20", - "parcelID": "16350", - "crownLandUsePIN": "17489", - "crownLandFileNumber": "16699", - "landDescription": "LOT 1 OF LOT 3 BLOCK 3 DISTRICT LOT 2 PLAN 3389" + "dateNoted": "2022-03-28", + "parcelID": "15611", + "crownLandUsePIN": "18181", + "crownLandFileNumber": "19954", + "landDescription": "LOT 4 OF LOT 4 BLOCK 4 DISTRICT LOT 2 PLAN 5747" }, { + "uuid": "d42f98be-071d-47ec-a3ee-f403ad07d338", "siteRegistry": false, - "dateNoted": "2016-08-26", - "parcelID": "15930", - "crownLandUsePIN": "20263", - "crownLandFileNumber": "15534", - "landDescription": "LOT 3 OF LOT 3 BLOCK 4 DISTRICT LOT 2 PLAN 3463" + "dateNoted": "2017-06-05", + "parcelID": "20237", + "crownLandUsePIN": "16076", + "crownLandFileNumber": "20887", + "landDescription": "LOT 2 OF LOT 5 BLOCK 2 DISTRICT LOT 4 PLAN 5517" }, { + "uuid": "2ddaf071-c8be-48aa-9afb-43e29e970a25", "siteRegistry": true, - "dateNoted": "2015-08-26", - "parcelID": "17850", - "crownLandUsePIN": "15852", - "crownLandFileNumber": "19536", - "landDescription": "LOT 3 OF LOT 1 BLOCK 5 DISTRICT LOT 3 PLAN 9328" + "dateNoted": "2020-03-14", + "parcelID": "16961", + "crownLandUsePIN": "20689", + "crownLandFileNumber": "16043", + "landDescription": "LOT 3 OF LOT 5 BLOCK 5 DISTRICT LOT 1 PLAN 5764" + }, + { + "uuid": "35fc4270-4d9b-4d37-a5f4-846c9032a098", + "siteRegistry": false, + "dateNoted": "2020-05-02", + "parcelID": "17411", + "crownLandUsePIN": "17706", + "crownLandFileNumber": "15726", + "landDescription": "LOT 4 OF LOT 3 BLOCK 5 DISTRICT LOT 2 PLAN 9635" + }, + { + "uuid": "b04149f1-7486-484a-bd22-68fb1703b33a", + "siteRegistry": true, + "dateNoted": "2016-02-17", + "parcelID": "16672", + "crownLandUsePIN": "17016", + "crownLandFileNumber": "19288", + "landDescription": "LOT 5 OF LOT 4 BLOCK 4 DISTRICT LOT 5 PLAN 5500" } ], "siteDisclosures": [ { - "siteRegistry": false, - "dateReceived": "2015-11-23", - "dateCompleted": "2022-11-21", - "dateEntered": "2018-01-08", - "dateRegistrar": "2021-08-08", - "dateLocalAuthorityReceived": "2014-03-12", - "summary": "Tempore nulla unde magnam earum inventore maiores incidunt consectetur.\nQuasi maiores quae vel vel aliquam sapiente.", - "informationUsed": "Corrupti laborum nam dolorem delectus.\nIllum repellat nulla.\nVoluptatem non quae fuga.", - "pastOrPresentOrders": "Veniam officiis doloribus.\nIllum ullam ipsum sed magnam itaque.\nMaiores et voluptas harum aperiam libero odit labore.", + "uuid": "9540f214-bd76-47c6-9e20-09ab00028423", + "siteRegistry": true, + "dateReceived": "2014-08-09", + "dateCompleted": "2015-05-12", + "dateEntered": "2021-05-26", + "dateRegistrar": "2023-05-29", + "dateLocalAuthorityReceived": "2017-08-25", + "summary": "Qui reprehenderit ducimus fugiat eveniet quas.\nDolores deserunt impedit est ex rerum.\nArchitecto vitae non.", + "informationUsed": "Rerum ratione mollitia provident deserunt rerum ipsum beatae explicabo.\nRepudiandae architecto nesciunt odit cum exercitationem voluptates.\nVel facere quam voluptatum maxime nesciunt blanditiis doloremque sit.\nExpedita dolorum eligendi magni commodi quas fugit debitis.", + "pastOrPresentOrders": "Tempore neque similique.", "commercialAndIndustrialPurposes": [ { + "uuid": "2bbfe222-6a32-4e5a-a76b-8e7018620e90", "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false - }, - { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false - }, - { - "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false + "siteRegistry": true }, { + "uuid": "dcaacf30-e59e-4015-a516-0b1f3b9ae103", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true - } - ] - }, - { - "siteRegistry": false, - "dateReceived": "2018-12-13", - "dateCompleted": "2020-12-17", - "dateEntered": "2014-02-13", - "dateRegistrar": "2014-09-25", - "dateLocalAuthorityReceived": "2021-07-26", - "summary": "Asperiores temporibus distinctio facere dolorem voluptates praesentium distinctio.\nDeserunt odit ipsam.", - "informationUsed": "Ad culpa animi nesciunt maiores veniam soluta maxime voluptatibus vel.\nSequi atque nihil dolorem.\nVel reprehenderit qui autem excepturi praesentium.\nCumque eligendi eaque in ipsam natus illo.\nAlias eos ipsa eos cum itaque totam.", - "pastOrPresentOrders": "Quos optio excepturi qui similique.\nQuisquam adipisci doloremque laborum unde quidem quas inventore dolor.", - "commercialAndIndustrialPurposes": [ - { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false }, { + "uuid": "506f14a0-1677-4831-90bb-77aa1a0bb412", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false + "siteRegistry": true }, { + "uuid": "bc1b8980-576d-45f3-9942-9df004ce1a00", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true @@ -9935,103 +11971,115 @@ ], "activityLog": [ { + "uuid": "c6d2ce8b-2927-4a5c-98bf-444c329ddd24", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "RENNER EUDORA", - "timestamp": "2016-09-10" + "user": "JOHNS ADRIENNE", + "timestamp": "2019-06-05" }, { + "uuid": "5e30ee8f-270a-48be-8d61-e532c11db252", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "CRONIN PRINCE", - "timestamp": "2019-10-13" + "user": "WALSH BRENT", + "timestamp": "2020-09-21" }, { + "uuid": "bda6fa5b-3ef0-4de2-ad07-6c301f985e23", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "EBERT DEDRICK", - "timestamp": "2016-09-01" + "user": "WYMAN OLETA", + "timestamp": "2015-03-12" }, { + "uuid": "7cb8cbf8-800e-4599-8c6c-d0269c9a7af3", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "KIRLIN MAGGIE", - "timestamp": "2021-04-29" + "user": "BREKKE JACE", + "timestamp": "2019-02-05" }, { + "uuid": "461c0ed6-317b-4866-ba32-181ff9a6420c", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "WUNSCH DAVIN", - "timestamp": "2019-01-15" + "user": "SCHNEIDER GIOVANNI", + "timestamp": "2016-07-03" }, { + "uuid": "385ec9b2-697b-4399-96c5-98dbc55f6a38", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "POWLOWSKI SHANIYA", - "timestamp": "2021-02-24" + "user": "RUNOLFSSON MARILOU", + "timestamp": "2018-10-14" }, { - "siteRegistry": false, + "uuid": "71c86599-9ce9-4c0a-966e-feef69eb24c1", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "STREICH KIP", - "timestamp": "2022-03-29" + "user": "O'HARA KAMRYN", + "timestamp": "2014-10-03" }, { + "uuid": "9b613295-d696-4912-be41-225a87e79534", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "WARD-CORKERY CLEMENS", - "timestamp": "2015-05-04" + "user": "REILLY ENA", + "timestamp": "2019-03-08" } ], "associatedSites": [ { - "dateNoted": "2016-07-30", + "uuid": "2ec8405d-b622-41ae-9c77-f644d7a532f3", + "dateNoted": "2022-06-14", "notes": "", - "parcelID": "15564", - "siteID": "20243", - "siteRegistry": false + "parcelID": "17943", + "siteID": "18294", + "siteRegistry": true }, { - "dateNoted": "2017-11-30", + "uuid": "ce2b2504-387b-415f-872c-61e8dcbf3ede", + "dateNoted": "2016-11-22", "notes": "", - "parcelID": "17552", - "siteID": "19450", + "parcelID": "17234", + "siteID": "19713", "siteRegistry": false }, { - "dateNoted": "2022-06-26", + "uuid": "3b298f95-c9d7-4cb5-a22e-23c0094e880d", + "dateNoted": "2016-11-21", "notes": "", - "parcelID": "19055", - "siteID": "17847", - "siteRegistry": false + "parcelID": "16133", + "siteID": "18717", + "siteRegistry": true } ] }, { - "uuid": "97490fd5-3cc6-469f-8bbb-25b55e775998", - "siteID": 17779, - "address": "3428 Bailey Trafficway", - "latitude": 55.5813, - "longitude": -133.8496, - "lastUpdated": "2022-03-04", - "city": "Jaredworth", - "region": "Cariboo", - "victoriaFile": "26250-20/8132", + "uuid": "b82b39f2-5c2e-45ef-b158-89d2b915cb24", + "siteID": 16569, + "address": "54878 Brekke Walk", + "latitude": 58.7904, + "longitude": -121.7263, + "lastUpdated": "2019-10-04", + "city": "South Mandy", + "region": " North Coast", + "victoriaFile": "26250-20/13665", "regionalFile": "N/A", "parcelIDs": [ - 8126730, - 2514800, - 6768430, - 4295240, - 1369984 + 5797495, + 7969594, + 748426, + 2824376, + 5126674 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2023-03-16", - "completed": "2015-07-08", - "initiated": "2018-09-15", - "ministryContact": "BERNIER VIVIANNE", + "uuid": "5b63c20c-a9df-42f4-ab62-7af7ea288f5e", + "createdAt": "2017-02-12", + "completed": "2019-08-14", + "initiated": "2019-07-15", + "ministryContact": "BECKER SEAMUS", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -10040,28 +12088,54 @@ ], "notationParticipants": [ { + "uuid": "028f3c09-3119-4074-917e-b8563f78afb3", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false }, { + "uuid": "78d38fdc-8522-485a-95f1-e46b4752451c", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false - }, + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "uuid": "a9c5e3db-c1d3-4c85-a75b-f34c0fa23a34", + "createdAt": "2021-01-24", + "completed": "2023-05-24", + "initiated": "2021-07-28", + "ministryContact": "LINDGREN JAQUAN", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ { + "uuid": "0bc17593-5971-46cc-bf0a-c132b9e04739", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "5ac65e91-5fed-4b35-8f21-fded5358b61b", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2018-12-16", - "completed": "2018-01-08", - "initiated": "2021-10-22", - "ministryContact": "WILL WILBER", + "uuid": "bb0851ce-d42f-42f3-9099-1a11c5a7a1cd", + "createdAt": "2018-04-06", + "completed": "2015-09-29", + "initiated": "2017-12-13", + "ministryContact": "BRAUN JON", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -10070,153 +12144,224 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "20f66da2-a714-4694-af58-bd6767b77293", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "uuid": "07ae5b92-154d-409d-b7ad-a4c6f7f1bd16", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": true }, { + "uuid": "f254e648-3417-4384-9854-fdcf25b104d5", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false - } + }, + { + "uuid": "4bdae530-4583-4986-9ecc-2cab03042898", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + } ], - "siteRegistry": false - } - ], - "participants": [ + "siteRegistry": true + }, { - "name": "IPSUM", - "endDate": "2021-04-27", - "startDate": "2015-03-14", - "notes": "", - "roles": [ - "ORGANIZATION" + "uuid": "7c702486-6e71-4451-aee6-9641f1390f84", + "createdAt": "2021-10-23", + "completed": "2022-05-02", + "initiated": "2022-11-06", + "ministryContact": "BERGE GLORIA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "uuid": "a46e5f85-fc7b-49d9-bb02-0cd2e330bbaf", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "uuid": "64dfa90f-5583-4bec-86b1-23e7a71538e2", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "uuid": "913f292c-4bac-456a-8bec-cf2da12759b6", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + } ], "siteRegistry": true }, { + "uuid": "2cbcb325-00aa-4638-92ce-185594c6390d", + "createdAt": "2016-11-01", + "completed": "2019-01-08", + "initiated": "2018-02-20", + "ministryContact": "JONES BLAISE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "uuid": "2053f968-3d59-4a3d-99d4-d180c90e5580", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "uuid": "e553d045-9c1c-403b-a8bf-0ac0de75ce4b", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "uuid": "7408c4cc-e133-4637-a61d-03a1343fc11e", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + } + ], + "participants": [ + { + "uuid": "997712f8-7678-4f07-b941-716b3dc34919", "name": "IPSUM", - "endDate": "2015-02-02", - "startDate": "2018-08-04", + "endDate": "2023-08-01", + "startDate": "2014-09-11", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": false + "siteRegistry": true }, { - "name": "IPSUM", - "endDate": "2014-04-08", - "startDate": "2017-07-01", + "uuid": "c1c23b76-ad33-4fae-b9f8-5fceaad988a3", + "name": "AMET, DOLOR SIT", + "endDate": "2023-07-14", + "startDate": "2016-06-25", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": false } ], "suspectLandUses": [ { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-04-19 (described on Site Profile dated 2017-04-19)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" - }, - { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-01-19 (described on Site Profile dated 2015-01-19)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" - }, - { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-04-24 (described on Site Profile dated 2019-04-24)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" - }, - { + "uuid": "34e6908e-8288-4925-b557-25db5264d9b3", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-08-14 (described on Site Profile dated 2018-08-14)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "notes": "INSERTED FOR SITE PROFILE DATED 2020-02-11 (described on Site Profile dated 2020-02-11)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { + "uuid": "4340d252-59c2-4e29-9303-15b20f45e061", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-06-13 (described on Site Profile dated 2016-06-13)", + "notes": "INSERTED FOR SITE PROFILE DATED 2020-09-28 (described on Site Profile dated 2020-09-28)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], "parcelDescriptions": [ { - "siteRegistry": false, - "dateNoted": "2020-11-04", - "parcelID": "17819", - "crownLandUsePIN": "16738", - "crownLandFileNumber": "19610", - "landDescription": "LOT 2 OF LOT 4 BLOCK 5 DISTRICT LOT 5 PLAN 4730" - }, - { - "siteRegistry": false, - "dateNoted": "2023-03-19", - "parcelID": "16745", - "crownLandUsePIN": "17190", - "crownLandFileNumber": "16101", - "landDescription": "LOT 5 OF LOT 5 BLOCK 2 DISTRICT LOT 2 PLAN 8773" + "uuid": "1f492fe9-43f3-466b-90cc-0c40fbcd3549", + "siteRegistry": true, + "dateNoted": "2022-09-04", + "parcelID": "17700", + "crownLandUsePIN": "16527", + "crownLandFileNumber": "17692", + "landDescription": "LOT 4 OF LOT 2 BLOCK 5 DISTRICT LOT 3 PLAN 8210" }, { + "uuid": "11e7887f-0304-42e5-897f-a1d91fad8645", "siteRegistry": true, - "dateNoted": "2022-02-05", - "parcelID": "19007", - "crownLandUsePIN": "15380", - "crownLandFileNumber": "16744", - "landDescription": "LOT 3 OF LOT 2 BLOCK 3 DISTRICT LOT 2 PLAN 9467" + "dateNoted": "2019-11-04", + "parcelID": "18869", + "crownLandUsePIN": "20927", + "crownLandFileNumber": "16954", + "landDescription": "LOT 5 OF LOT 1 BLOCK 4 DISTRICT LOT 2 PLAN 4088" }, { + "uuid": "5d835569-717a-43bc-9dfd-a79a8ba48257", "siteRegistry": true, - "dateNoted": "2022-05-02", - "parcelID": "17854", - "crownLandUsePIN": "20980", - "crownLandFileNumber": "20471", - "landDescription": "LOT 5 OF LOT 1 BLOCK 2 DISTRICT LOT 1 PLAN 8866" + "dateNoted": "2014-07-16", + "parcelID": "20975", + "crownLandUsePIN": "18523", + "crownLandFileNumber": "20735", + "landDescription": "LOT 2 OF LOT 5 BLOCK 2 DISTRICT LOT 5 PLAN 5711" }, { - "siteRegistry": true, - "dateNoted": "2017-10-24", - "parcelID": "18733", - "crownLandUsePIN": "16237", - "crownLandFileNumber": "17340", - "landDescription": "LOT 4 OF LOT 2 BLOCK 4 DISTRICT LOT 3 PLAN 6623" + "uuid": "dd39c543-f840-4ce1-a945-fea68a17f8e6", + "siteRegistry": false, + "dateNoted": "2020-03-02", + "parcelID": "19478", + "crownLandUsePIN": "20441", + "crownLandFileNumber": "16927", + "landDescription": "LOT 3 OF LOT 2 BLOCK 4 DISTRICT LOT 1 PLAN 8712" } ], "siteDisclosures": [ { - "siteRegistry": false, - "dateReceived": "2014-07-15", - "dateCompleted": "2016-09-25", - "dateEntered": "2019-12-27", - "dateRegistrar": "2014-02-05", - "dateLocalAuthorityReceived": "2022-07-30", - "summary": "Consequatur labore eius incidunt.\nLaboriosam minus ab voluptates aliquam non facere eveniet pariatur.", - "informationUsed": "Maiores rerum necessitatibus.\nOptio soluta deserunt ipsa totam.\nQuas voluptas dolorem distinctio at molestiae numquam.\nOfficia maiores error natus.", - "pastOrPresentOrders": "Nemo ipsam porro quae nihil.", + "uuid": "fbe25178-fc71-48ab-b2d8-4ceebe080272", + "siteRegistry": true, + "dateReceived": "2018-01-28", + "dateCompleted": "2014-08-03", + "dateEntered": "2014-02-09", + "dateRegistrar": "2018-06-24", + "dateLocalAuthorityReceived": "2022-12-23", + "summary": "Iste veniam quis eos provident.", + "informationUsed": "Veniam soluta sint.\nCum perferendis itaque voluptas.\nSapiente iusto nemo repellendus sint ducimus odio ut alias.", + "pastOrPresentOrders": "Accusantium quam asperiores necessitatibus.\nExcepturi reiciendis quo autem.\nVeritatis mollitia unde nihil dicta.", "commercialAndIndustrialPurposes": [ { + "uuid": "0c1dd4e5-7cac-4a5b-af9d-6d932484d533", "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true }, { + "uuid": "11676203-8b6f-4b8d-a640-8f541ba068f8", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false - }, + "siteRegistry": true + } + ] + }, + { + "uuid": "776f217f-356d-4273-8b5a-830164328aaa", + "siteRegistry": true, + "dateReceived": "2017-10-04", + "dateCompleted": "2023-03-02", + "dateEntered": "2022-10-25", + "dateRegistrar": "2014-11-03", + "dateLocalAuthorityReceived": "2018-10-02", + "summary": "Deserunt assumenda dolor asperiores.\nOmnis quasi incidunt quibusdam dolor assumenda ipsum dolore sint.\nIure tempora recusandae optio asperiores voluptatibus veniam.", + "informationUsed": "Nostrum ipsa quisquam.\nReiciendis inventore saepe harum maxime facere ipsa nesciunt ipsum aspernatur.\nOdit dolores accusantium culpa voluptate placeat aliquam.", + "pastOrPresentOrders": "Deleniti quam nemo molestias suscipit.", + "commercialAndIndustrialPurposes": [ { + "uuid": "6ee0870e-8820-4850-a037-1a966a38cc40", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false }, { + "uuid": "2e1e6adf-939b-4fb9-9615-37f29476f53f", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true @@ -10226,97 +12371,94 @@ ], "activityLog": [ { - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "BODE DANA", - "timestamp": "2014-11-06" - }, - { + "uuid": "89778a84-38ff-43d2-9c6f-6f5dad84f8c4", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "STRACKE BAILEE", - "timestamp": "2017-07-12" - }, - { - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "JAST TILLMAN", - "timestamp": "2016-02-20" + "user": "PADBERG MADILYN", + "timestamp": "2021-11-21" }, { - "siteRegistry": false, + "uuid": "d0f2e770-c775-4ef6-be2b-d0263d46a7d1", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "ABBOTT FREDDY", - "timestamp": "2021-02-08" + "user": "OLSON GLEN", + "timestamp": "2015-02-01" }, { - "siteRegistry": false, + "uuid": "01105901-0137-4074-a0bf-628148f54fa9", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "FRAMI OTHA", - "timestamp": "2016-03-20" + "user": "ZEMLAK CAMERON", + "timestamp": "2020-01-23" }, { - "siteRegistry": false, + "uuid": "fdfbb003-1bcb-4dd2-9c13-20ac54cb76a8", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "BREKKE JACQUES", - "timestamp": "2023-04-03" + "user": "VEUM MAYNARD", + "timestamp": "2023-08-30" }, { + "uuid": "aec6a2cb-c21c-442b-a4e0-9bc1689d037c", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "KERTZMANN NESTOR", - "timestamp": "2015-08-05" + "user": "BOGISICH JADYN", + "timestamp": "2020-02-12" } ], "associatedSites": [ { - "dateNoted": "2020-05-20", + "uuid": "f356d11e-c2e0-4ff5-ba4d-be95c9970232", + "dateNoted": "2014-08-16", "notes": "", - "parcelID": "16618", - "siteID": "16392", + "parcelID": "19427", + "siteID": "18294", "siteRegistry": false }, { - "dateNoted": "2022-06-21", + "uuid": "fec0ce7a-6356-4780-8e11-6569fd1255e2", + "dateNoted": "2015-05-21", "notes": "", - "parcelID": "17151", - "siteID": "18608", + "parcelID": "15393", + "siteID": "18504", "siteRegistry": false }, { - "dateNoted": "2020-07-19", + "uuid": "efe8b3b8-17cb-42d2-9399-50e035be33ac", + "dateNoted": "2018-10-22", "notes": "", - "parcelID": "16002", - "siteID": "18191", - "siteRegistry": false + "parcelID": "18414", + "siteID": "17082", + "siteRegistry": true } ] }, { - "uuid": "11d04478-da49-476e-85ab-3cc1586de0ac", - "siteID": 18136, - "address": "64534 Ima Crossroad", - "latitude": 51.5634, - "longitude": -137.752, - "lastUpdated": "2015-06-10", - "city": "Cydneyview", - "region": "Kootenay", - "victoriaFile": "26250-20/3451", + "uuid": "c6729ae1-e127-4009-9362-997c04991b8b", + "siteID": 16270, + "address": "793 Bartholome Drive", + "latitude": 58.0994, + "longitude": -131.9011, + "lastUpdated": "2018-12-06", + "city": "Lake Sheridanborough", + "region": "Cariboo", + "victoriaFile": "26250-20/9622", "regionalFile": "N/A", "parcelIDs": [ - 2989501, - 9323057, - 341491, - 417284, - 9421811 + 9262486, + 966798, + 8624258, + 2114360, + 7237804 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2019-09-05", - "completed": "2016-09-16", - "initiated": "2021-12-31", - "ministryContact": "HOPPE BRIDGET", + "uuid": "70391db2-e915-4e95-8be9-828929405162", + "createdAt": "2021-04-17", + "completed": "2015-12-01", + "initiated": "2020-07-17", + "ministryContact": "KOHLER CLEVE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -10325,28 +12467,26 @@ ], "notationParticipants": [ { + "uuid": "5949a986-ae00-498f-b172-4f8708b35e98", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false }, { + "uuid": "aa2ff515-5418-4419-8c7a-9f9b979a682f", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false } ], "siteRegistry": true }, { - "createdAt": "2015-06-29", - "completed": "2022-06-09", - "initiated": "2017-05-02", - "ministryContact": "WUCKERT OSVALDO", + "uuid": "9fe1128a-6a06-4227-9175-b6f19b5b0d53", + "createdAt": "2020-08-19", + "completed": "2020-04-22", + "initiated": "2023-03-01", + "ministryContact": "EFFERTZ ROSINA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -10355,18 +12495,33 @@ ], "notationParticipants": [ { + "uuid": "af8e7ce6-6258-4d87-9abc-ab10c8a65db7", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "bee0abc7-dd50-464f-bc6e-da380b8ba044", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "1e2ddaae-fa96-4f2a-8d11-d2f5ff56cd31", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "uuid": "732679e8-e3eb-4af9-970b-5279dd815f1c", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "uuid": "42d6c84d-812e-4068-a43f-9d171e28b70e", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": false } ], @@ -10375,9 +12530,10 @@ ], "participants": [ { + "uuid": "7e69645b-0adf-43cc-99d9-fddbb2b20dc9", "name": "AMET, DOLOR SIT", - "endDate": "2022-07-11", - "startDate": "2017-10-27", + "endDate": "2022-06-11", + "startDate": "2022-04-04", "notes": "", "roles": [ "ORGANIZATION" @@ -10385,120 +12541,166 @@ "siteRegistry": false }, { + "uuid": "12d93888-729d-4fce-a938-cc4641311ea7", "name": "SHELL CANADA PRODUCTS", - "endDate": "2018-06-17", - "startDate": "2023-07-10", + "endDate": "2015-02-13", + "startDate": "2018-07-16", "notes": "", "roles": [ "EMPLOYEE" ], "siteRegistry": true - } - ], - "suspectLandUses": [ + }, { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-08-13 (described on Site Profile dated 2022-08-13)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "uuid": "2c99c259-ebbc-4717-9184-a65231a26a08", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2018-10-03", + "startDate": "2023-04-12", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false }, { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-06-25 (described on Site Profile dated 2021-06-25)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "uuid": "faba3ea3-43af-4e61-b67c-f06a0aa4cb96", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2020-07-30", + "startDate": "2017-08-25", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false }, { + "uuid": "4851809b-ab8f-4119-a3b2-dc3e908c6320", + "name": "IPSUM", + "endDate": "2014-09-04", + "startDate": "2020-12-27", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + } + ], + "suspectLandUses": [ + { + "uuid": "93111492-dcf6-4e92-a5f5-8243aaa20c94", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-08-20 (described on Site Profile dated 2017-08-20)", + "notes": "INSERTED FOR SITE PROFILE DATED 2015-02-07 (described on Site Profile dated 2015-02-07)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { + "uuid": "8c4ea326-658b-4153-bdca-867539737952", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-07-14 (described on Site Profile dated 2014-07-14)", + "notes": "INSERTED FOR SITE PROFILE DATED 2021-03-25 (described on Site Profile dated 2021-03-25)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "uuid": "a17c9b6b-b14f-4d7e-9604-1bb424dbfe2c", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2014-08-07 (described on Site Profile dated 2014-08-07)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], "parcelDescriptions": [ { + "uuid": "f627cd6f-3202-4fa6-9844-00e1993f4e98", "siteRegistry": true, - "dateNoted": "2022-11-10", - "parcelID": "20208", - "crownLandUsePIN": "17762", - "crownLandFileNumber": "15582", - "landDescription": "LOT 4 OF LOT 2 BLOCK 1 DISTRICT LOT 5 PLAN 9235" + "dateNoted": "2018-01-19", + "parcelID": "16905", + "crownLandUsePIN": "20343", + "crownLandFileNumber": "20033", + "landDescription": "LOT 2 OF LOT 2 BLOCK 3 DISTRICT LOT 1 PLAN 8458" }, { - "siteRegistry": true, - "dateNoted": "2020-01-16", - "parcelID": "18879", - "crownLandUsePIN": "17525", - "crownLandFileNumber": "16092", - "landDescription": "LOT 5 OF LOT 1 BLOCK 5 DISTRICT LOT 3 PLAN 3597" + "uuid": "bd546f4a-f84a-4a9c-b121-1e9d5aa75395", + "siteRegistry": false, + "dateNoted": "2016-06-15", + "parcelID": "15908", + "crownLandUsePIN": "18205", + "crownLandFileNumber": "19394", + "landDescription": "LOT 4 OF LOT 5 BLOCK 2 DISTRICT LOT 1 PLAN 6430" }, { + "uuid": "957c7120-8049-42e4-9a13-e89b526d8a23", "siteRegistry": false, - "dateNoted": "2023-04-07", - "parcelID": "17172", - "crownLandUsePIN": "20484", - "crownLandFileNumber": "17916", - "landDescription": "LOT 1 OF LOT 3 BLOCK 2 DISTRICT LOT 4 PLAN 3373" + "dateNoted": "2016-12-21", + "parcelID": "15528", + "crownLandUsePIN": "17070", + "crownLandFileNumber": "19748", + "landDescription": "LOT 1 OF LOT 1 BLOCK 3 DISTRICT LOT 2 PLAN 7061" }, { + "uuid": "519e2c5b-5837-4e7d-b9e5-8df7cccc16f4", "siteRegistry": false, - "dateNoted": "2023-05-23", - "parcelID": "19987", - "crownLandUsePIN": "18841", - "crownLandFileNumber": "17992", - "landDescription": "LOT 5 OF LOT 1 BLOCK 4 DISTRICT LOT 2 PLAN 4388" + "dateNoted": "2014-06-02", + "parcelID": "20055", + "crownLandUsePIN": "16040", + "crownLandFileNumber": "19633", + "landDescription": "LOT 5 OF LOT 5 BLOCK 2 DISTRICT LOT 5 PLAN 6473" + }, + { + "uuid": "45a17c58-1db3-4400-83f1-c15f961711e7", + "siteRegistry": true, + "dateNoted": "2017-11-04", + "parcelID": "20533", + "crownLandUsePIN": "15291", + "crownLandFileNumber": "20740", + "landDescription": "LOT 5 OF LOT 1 BLOCK 4 DISTRICT LOT 2 PLAN 6693" } ], "siteDisclosures": [ { + "uuid": "f7195b10-3e60-4c21-9180-ea5398cf0a8e", "siteRegistry": false, - "dateReceived": "2016-02-29", - "dateCompleted": "2020-06-25", - "dateEntered": "2019-03-04", - "dateRegistrar": "2017-05-02", - "dateLocalAuthorityReceived": "2020-05-31", - "summary": "Voluptates tenetur iure.", - "informationUsed": "Dolores itaque fugit id dignissimos facilis laboriosam.\nId at numquam molestiae vitae iste.\nPossimus tempora beatae iusto.", - "pastOrPresentOrders": "Voluptas dignissimos nobis sequi.\nSed nesciunt corrupti corporis.", + "dateReceived": "2021-08-15", + "dateCompleted": "2017-08-15", + "dateEntered": "2021-10-19", + "dateRegistrar": "2017-04-13", + "dateLocalAuthorityReceived": "2014-06-27", + "summary": "Numquam tempore saepe consectetur nulla.", + "informationUsed": "Veniam quaerat aliquam necessitatibus tenetur id.\nIusto corrupti explicabo cupiditate.\nNulla dolorum temporibus voluptatem rem excepturi.", + "pastOrPresentOrders": "Commodi quam porro.\nVoluptatum excepturi minima quas reprehenderit consequuntur quam enim ipsa ducimus.\nMaiores expedita non odit labore hic aspernatur inventore alias.", "commercialAndIndustrialPurposes": [ { + "uuid": "77573b1e-e0ba-4d4d-99bb-af9b99dae0fe", "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { - "scheduleReference": "F2*", + "uuid": "d3703412-1ee0-4c1d-829c-ff8b9bc5947d", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false + "siteRegistry": true } ] }, { - "siteRegistry": false, - "dateReceived": "2018-08-22", - "dateCompleted": "2020-12-15", - "dateEntered": "2015-04-11", - "dateRegistrar": "2021-07-15", - "dateLocalAuthorityReceived": "2020-03-22", - "summary": "Occaecati delectus id repellendus adipisci rerum provident.\nNeque repellendus error unde ab est quis ex fuga tempore.\nFuga sapiente sapiente et quam nisi non necessitatibus placeat.", - "informationUsed": "Eum dolore nam ab ratione doloribus optio exercitationem repudiandae cupiditate.\nNobis earum rerum explicabo ea at.\nModi occaecati molestiae quibusdam culpa reprehenderit suscipit dicta sed.\nIn repudiandae eos error velit quos numquam nostrum.", - "pastOrPresentOrders": "Quibusdam ea aut necessitatibus iure molestias voluptatibus commodi laborum.", + "uuid": "1e3f259b-30d8-492d-8037-90c3e05a79f8", + "siteRegistry": true, + "dateReceived": "2016-12-26", + "dateCompleted": "2013-10-24", + "dateEntered": "2022-01-03", + "dateRegistrar": "2015-09-18", + "dateLocalAuthorityReceived": "2022-02-23", + "summary": "Voluptatum maxime minima voluptate distinctio possimus nemo itaque quam voluptas.\nIpsa iste reiciendis.", + "informationUsed": "Similique vitae doloribus rerum similique molestiae.\nIllo sed error quod distinctio corrupti quae voluptatum.\nTempore placeat eveniet eius porro sapiente vitae corporis maxime.\nAt optio a quis tempore dignissimos minus quae ullam.\nEsse vero blanditiis fugiat ex blanditiis animi molestiae rerum.", + "pastOrPresentOrders": "Est voluptas quibusdam laudantium repellendus odit eligendi voluptates.\nQuaerat quis rerum veniam atque qui fugit ipsam.\nPerferendis officia sapiente mollitia fuga facere.", "commercialAndIndustrialPurposes": [ { + "uuid": "8d65109f-34e6-4520-a68f-4a1603130d71", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { - "scheduleReference": "F1*", + "uuid": "89971eb8-7069-43af-913f-a11c4d170ad1", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false - }, - { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true } ] @@ -10506,97 +12708,92 @@ ], "activityLog": [ { + "uuid": "4f8ee41e-de77-429b-bca5-55e0c70f6444", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "BOYLE JUNIUS", - "timestamp": "2022-06-08" + "user": "ANDERSON PRINCESS", + "timestamp": "2022-10-11" }, { - "siteRegistry": true, + "uuid": "e7a37505-0d6c-41ed-b6d4-abd34037be55", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "KLEIN STELLA", - "timestamp": "2017-04-05" + "user": "LUETTGEN HUDSON", + "timestamp": "2018-01-16" }, { + "uuid": "f425416f-ecc3-42c1-b5c9-c0c7da255aa2", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "BOGAN OTHA", - "timestamp": "2020-01-13" + "user": "PFEFFER CECELIA", + "timestamp": "2022-02-08" }, { + "uuid": "5fc269cd-2143-47e6-a9e5-182f9216161c", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "HERZOG BIRDIE", - "timestamp": "2015-11-22" + "user": "STRACKE BRIELLE", + "timestamp": "2015-02-09" }, { - "siteRegistry": true, + "uuid": "d015b5cd-da51-42d4-84ca-5e2a54287504", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "KUHN HELENE", - "timestamp": "2022-07-19" + "user": "PARISIAN ARLO", + "timestamp": "2020-07-05" }, { + "uuid": "f026baa6-38e5-42c6-bff6-c1cce155f619", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "QUIGLEY ELIZA", - "timestamp": "2020-11-04" + "user": "GOODWIN AILEEN", + "timestamp": "2015-12-20" }, { - "siteRegistry": false, + "uuid": "c6535081-bc69-48ab-9edd-7d2f13955ee7", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "BODE ELDRED", - "timestamp": "2015-11-02" + "user": "CORWIN-HACKETT ANGELITA", + "timestamp": "2017-11-18" } ], "associatedSites": [ { - "dateNoted": "2020-05-01", - "notes": "", - "parcelID": "16986", - "siteID": "17779", - "siteRegistry": true - }, - { - "dateNoted": "2023-04-14", + "uuid": "e601a438-dbe5-4f4b-861e-f937d3585a92", + "dateNoted": "2022-06-12", "notes": "", - "parcelID": "16015", - "siteID": "20325", + "parcelID": "15532", + "siteID": "16986", "siteRegistry": true - }, - { - "dateNoted": "2015-07-24", - "notes": "", - "parcelID": "20670", - "siteID": "15826", - "siteRegistry": false } ] }, { - "uuid": "35852de7-cf0e-4750-8243-ba8ca4978418", - "siteID": 16701, - "address": "55123 Kshlerin Circles", - "latitude": 55.7268, - "longitude": -136.3407, - "lastUpdated": "2019-11-14", - "city": "Port Rollinstead", - "region": "Cariboo", - "victoriaFile": "26250-20/3779", + "uuid": "613e8a04-6b15-4b6a-9876-90296b144fb5", + "siteID": 20024, + "address": "5570 William Lodge", + "latitude": 52.0159, + "longitude": -120.2014, + "lastUpdated": "2022-11-16", + "city": "Boganfield", + "region": "Mainland/Southwest", + "victoriaFile": "26250-20/19541", "regionalFile": "N/A", "parcelIDs": [ - 8447858, - 3404476, - 6311927, - 7923943, - 8373378 + 5765179, + 9467231, + 5534152, + 1677395, + 131822 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2018-10-07", - "completed": "2019-09-04", - "initiated": "2019-03-29", - "ministryContact": "HUEL ART", + "uuid": "b6ab553a-3cd3-4c1e-8bf0-0610500068a6", + "createdAt": "2016-01-17", + "completed": "2019-02-06", + "initiated": "2019-09-23", + "ministryContact": "ORN LARUE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -10605,23 +12802,44 @@ ], "notationParticipants": [ { + "uuid": "4f0b81dc-f500-4772-be6e-7f2bc6570bab", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true + "role": "REQUESTED BY", + "siteRegistry": false }, { + "uuid": "1af65f49-7b6a-4135-89c5-9dd2c31cbb53", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "4fcf85a2-ba2f-4139-ad0d-f0d82898b98d", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": false + }, + { + "uuid": "cda930a9-6eb2-44d8-9bd5-b59a15926226", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "63ef48df-03a9-46bb-9bad-380e74bfef44", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2021-08-15", - "completed": "2022-04-23", - "initiated": "2018-10-03", - "ministryContact": "EMARD JOSEPHINE", + "uuid": "d9624022-6c73-4dee-887a-37298eb9c921", + "createdAt": "2019-10-25", + "completed": "2023-06-24", + "initiated": "2017-06-11", + "ministryContact": "ARMSTRONG SABRINA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -10630,28 +12848,32 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", + "uuid": "8d8bd714-7555-43d7-b94f-1069e99670d0", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false }, { + "uuid": "432fdf96-4592-4f5d-a4fe-d49c2f857aa1", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true + }, + { + "uuid": "8188c83f-3fdc-4ffc-89ab-1d5b6efc82c1", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true } ], "siteRegistry": true }, { - "createdAt": "2013-10-19", - "completed": "2014-07-30", - "initiated": "2016-05-26", - "ministryContact": "JONES EILEEN", + "uuid": "b4c54128-967a-4b78-a704-a3daaa09a7d0", + "createdAt": "2015-01-14", + "completed": "2017-11-29", + "initiated": "2023-10-11", + "ministryContact": "BOTSFORD LAYLA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -10660,38 +12882,44 @@ ], "notationParticipants": [ { + "uuid": "cc6c70e4-a780-4ac5-bfe7-50c49809d20c", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false }, { + "uuid": "c3871352-7876-41b4-a610-fd6830c31a42", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { + "uuid": "0ff4b205-b533-482d-b9ca-084267a41957", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { + "uuid": "f72e4c61-aa6a-4f05-b072-49bea6af48c4", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "7d10f5e9-3b1d-40a7-a382-26782e5ad0c5", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2018-12-28", - "completed": "2018-11-02", - "initiated": "2023-06-07", - "ministryContact": "KUNZE KESHAUN", + "uuid": "4725fde5-aa58-4419-b39f-adda5851e10e", + "createdAt": "2015-06-15", + "completed": "2022-01-10", + "initiated": "2020-12-04", + "ministryContact": "ERDMAN ABBIGAIL", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -10700,34 +12928,118 @@ ], "notationParticipants": [ { + "uuid": "65b627a7-16d7-4969-ac5e-5aab739b7598", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "uuid": "971323da-97b4-433d-afa8-4a624d547092", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true }, { + "uuid": "e4f6d9ec-62fa-4d01-931b-402a64507fff", "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "uuid": "22fe8a0e-8589-4e82-9a0f-07d88ebc13ba", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "5a3febbc-05d7-4b33-a10d-3c26428104bb", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": true } ], "siteRegistry": false + }, + { + "uuid": "79bb17ce-552d-4ba3-91d2-9c2318a24730", + "createdAt": "2016-07-27", + "completed": "2018-04-25", + "initiated": "2016-01-04", + "ministryContact": "EBERT FLORENCE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "uuid": "25dc9ef7-76e8-45b8-96a7-0f3393517de5", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "835c8c03-0583-41dd-8f15-158e0bde3b17", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "983f0188-c0d7-47dc-9718-453fd5d2dcbf", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "uuid": "e2a5aa38-3b3b-4936-b3a8-0086c2688a9c", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true } ], "participants": [ { + "uuid": "852d18d0-52c2-4502-82c6-2bb4c526c88d", "name": "AMET, DOLOR SIT", - "endDate": "2020-09-12", - "startDate": "2022-01-06", + "endDate": "2014-07-04", + "startDate": "2017-10-31", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": true }, { + "uuid": "1b14f16b-0eec-4993-8032-5fd59b4656a3", "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2018-10-13", - "startDate": "2022-12-04", + "endDate": "2021-04-11", + "startDate": "2019-04-30", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "uuid": "9d20dd47-99f1-44a4-aa4f-d33f2d636a1c", + "name": "IPSUM", + "endDate": "2021-03-16", + "startDate": "2020-03-04", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "uuid": "b93f0ee9-bcb5-454c-84eb-a46914a3dbdf", + "name": "IPSUM", + "endDate": "2020-07-28", + "startDate": "2020-09-01", "notes": "", "roles": [ "ORGANIZATION" @@ -10735,183 +13047,218 @@ "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2018-07-15", - "startDate": "2021-07-08", + "uuid": "24b9f88e-e86e-428b-a08f-937054176b62", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2022-08-24", + "startDate": "2019-07-23", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": false } ], "suspectLandUses": [ { + "uuid": "c7e09c75-5dfb-4cbb-b337-68d052f18a93", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-04-09 (described on Site Profile dated 2014-04-09)", + "notes": "INSERTED FOR SITE PROFILE DATED 2018-07-04 (described on Site Profile dated 2018-07-04)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { + "uuid": "e2df761f-0242-480b-88a1-966871524f15", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-10-29 (described on Site Profile dated 2019-10-29)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "notes": "INSERTED FOR SITE PROFILE DATED 2016-08-07 (described on Site Profile dated 2016-08-07)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-05-11 (described on Site Profile dated 2017-05-11)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "uuid": "dee24f97-c311-40e2-9c89-7598036cd35d", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2019-03-08 (described on Site Profile dated 2019-03-08)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], "parcelDescriptions": [ { + "uuid": "22b73a34-ef7f-4812-91e2-0a5325787552", "siteRegistry": false, - "dateNoted": "2014-09-14", - "parcelID": "19512", - "crownLandUsePIN": "16208", - "crownLandFileNumber": "18882", - "landDescription": "LOT 1 OF LOT 2 BLOCK 2 DISTRICT LOT 1 PLAN 3299" - }, - { - "siteRegistry": true, - "dateNoted": "2015-12-19", - "parcelID": "17166", - "crownLandUsePIN": "17357", - "crownLandFileNumber": "16697", - "landDescription": "LOT 3 OF LOT 5 BLOCK 5 DISTRICT LOT 5 PLAN 5752" - }, - { - "siteRegistry": false, - "dateNoted": "2015-05-14", - "parcelID": "15377", - "crownLandUsePIN": "16569", - "crownLandFileNumber": "20680", - "landDescription": "LOT 4 OF LOT 1 BLOCK 1 DISTRICT LOT 4 PLAN 6887" + "dateNoted": "2019-02-28", + "parcelID": "20792", + "crownLandUsePIN": "20592", + "crownLandFileNumber": "15481", + "landDescription": "LOT 4 OF LOT 2 BLOCK 3 DISTRICT LOT 5 PLAN 4522" }, { + "uuid": "7b35035c-d265-4154-b14d-0ed83e61df5f", "siteRegistry": false, - "dateNoted": "2020-05-24", - "parcelID": "19330", - "crownLandUsePIN": "19896", - "crownLandFileNumber": "17143", - "landDescription": "LOT 1 OF LOT 4 BLOCK 2 DISTRICT LOT 3 PLAN 8446" + "dateNoted": "2015-02-01", + "parcelID": "17862", + "crownLandUsePIN": "18943", + "crownLandFileNumber": "19187", + "landDescription": "LOT 5 OF LOT 5 BLOCK 1 DISTRICT LOT 2 PLAN 6899" }, { + "uuid": "0e8bfd9c-ddd6-4140-a999-5e98df84d90c", "siteRegistry": true, - "dateNoted": "2016-11-29", - "parcelID": "15485", - "crownLandUsePIN": "17852", - "crownLandFileNumber": "16214", - "landDescription": "LOT 2 OF LOT 4 BLOCK 5 DISTRICT LOT 2 PLAN 8054" + "dateNoted": "2015-07-10", + "parcelID": "18950", + "crownLandUsePIN": "17882", + "crownLandFileNumber": "16802", + "landDescription": "LOT 3 OF LOT 3 BLOCK 1 DISTRICT LOT 2 PLAN 3145" } ], "siteDisclosures": [ { - "siteRegistry": false, - "dateReceived": "2023-01-02", - "dateCompleted": "2020-10-02", - "dateEntered": "2017-07-01", - "dateRegistrar": "2020-05-15", - "dateLocalAuthorityReceived": "2018-08-15", - "summary": "Expedita asperiores aut optio perspiciatis minus.\nProvident officiis sequi assumenda in voluptatibus dolore quas.", - "informationUsed": "Illo deleniti harum numquam.\nNatus nobis ratione delectus aliquid temporibus nesciunt aliquid.\nIpsa qui ex deleniti iste facilis quod aliquid non.\nDolores culpa laborum ad libero minus amet nulla.", - "pastOrPresentOrders": "Dolores eius incidunt amet dicta itaque quasi.\nEos saepe inventore sapiente odit.", + "uuid": "aa659516-c042-4021-88ea-216a1ce43f20", + "siteRegistry": true, + "dateReceived": "2023-04-04", + "dateCompleted": "2023-05-02", + "dateEntered": "2022-04-29", + "dateRegistrar": "2016-11-21", + "dateLocalAuthorityReceived": "2018-07-26", + "summary": "Laudantium veritatis fuga totam placeat architecto et velit vitae.\nRecusandae beatae magni veritatis repudiandae.\nSit architecto est.", + "informationUsed": "Atque ipsum et aperiam.\nPlaceat esse iure.\nUt quaerat in.", + "pastOrPresentOrders": "Atque beatae amet animi.\nEius similique non.\nEarum illum ipsam nostrum voluptates.", "commercialAndIndustrialPurposes": [ { - "scheduleReference": "F2*", + "uuid": "d184547d-c683-4d3e-ab38-93d7d52bce72", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "uuid": "ac2306bb-04de-4f07-8e2f-635807646e67", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, { + "uuid": "617ce3d7-1d70-42f0-9c17-a16507fde5c5", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "uuid": "e30e597c-787c-497c-a812-28664ac97940", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true + } + ] + }, + { + "uuid": "94fcf570-9fab-43e1-9a27-782063cd1273", + "siteRegistry": false, + "dateReceived": "2015-09-29", + "dateCompleted": "2015-04-03", + "dateEntered": "2018-06-14", + "dateRegistrar": "2020-06-19", + "dateLocalAuthorityReceived": "2021-04-22", + "summary": "Iusto esse soluta possimus minima consectetur placeat corrupti aut.", + "informationUsed": "Quidem quis ullam magni ullam culpa deleniti molestias.\nTempora aperiam reiciendis officia maiores nobis ipsum soluta vel ratione.\nIure est debitis.\nCupiditate eos consequatur et veritatis commodi nihil velit.\nDicta atque explicabo voluptatum deserunt.", + "pastOrPresentOrders": "Eaque facere dicta aut incidunt itaque.\nError numquam minima magni enim dolores autem ad dolorem veritatis.\nReprehenderit dolores autem laboriosam.", + "commercialAndIndustrialPurposes": [ + { + "uuid": "fc506791-71f2-4f6a-9da7-9fae8dafc280", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false }, { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "uuid": "c61c0135-3b71-434e-814d-f9d82692c97c", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false }, { - "scheduleReference": "F2*", + "uuid": "5beb0abc-07d7-482b-bb5a-ff3d3e865bed", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false + }, + { + "uuid": "4d933fe2-be1d-4a0c-85fe-c3cd5b2ded97", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true } ] } ], "activityLog": [ { + "uuid": "c30c81c7-42a0-4528-befe-2356baf2da08", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "HARVEY-ZIEMANN KAMREN", - "timestamp": "2015-09-27" + "user": "LEDNER DARRICK", + "timestamp": "2017-09-23" }, { - "siteRegistry": true, + "uuid": "d77b62e1-2717-477b-ba3e-c63f81319344", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "COLLINS MANLEY", - "timestamp": "2020-01-11" + "user": "REINGER CEASAR", + "timestamp": "2018-02-19" }, { - "siteRegistry": true, + "uuid": "aa23c907-6375-4e06-beec-a0e08e1e1f64", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "BARTOLETTI EMIE", - "timestamp": "2015-08-08" + "user": "ZULAUF JETT", + "timestamp": "2018-02-18" }, { + "uuid": "87464c36-90a7-4742-aec6-0181b2fe8109", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "JACOBI MISTY", - "timestamp": "2022-08-09" - }, - { - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "UPTON WILFRED", - "timestamp": "2017-09-11" + "user": "MCCLURE CHANCE", + "timestamp": "2023-09-19" }, { - "siteRegistry": false, + "uuid": "622be3c1-7797-4302-b43f-4c90f58175cd", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "KAUTZER LULU", - "timestamp": "2020-04-29" + "user": "BREKKE LAVON", + "timestamp": "2018-04-13" } ], "associatedSites": [ { - "dateNoted": "2016-08-01", + "uuid": "950ba0c8-dd7d-4c6d-8c5e-a4ef2a0deb00", + "dateNoted": "2022-03-06", "notes": "", - "parcelID": "15671", - "siteID": "15327", - "siteRegistry": false + "parcelID": "16686", + "siteID": "15374", + "siteRegistry": true } ] }, { - "uuid": "fd7a6e43-c3fe-46ec-8230-ebfbe6b6ec21", - "siteID": 19608, - "address": "862 Emmerich Valleys", - "latitude": 53.6151, - "longitude": -130.9345, - "lastUpdated": "2017-10-01", - "city": "Cutler Bay", - "region": " North Coast", - "victoriaFile": "26250-20/15908", + "uuid": "5c44ff4a-da5f-4ad2-bef3-a41f52b1884c", + "siteID": 16353, + "address": "71555 Waters Isle", + "latitude": 48.2929, + "longitude": -126.4558, + "lastUpdated": "2019-03-02", + "city": "Arnulfocester", + "region": "Vancouver Island/Coast", + "victoriaFile": "26250-20/3255", "regionalFile": "N/A", "parcelIDs": [ - 8277119, - 7202707, - 7757345, - 1510343, - 4080998 + 5623871, + 981153, + 6357041, + 4890611, + 8455303 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2016-03-03", - "completed": "2015-07-13", - "initiated": "2020-04-13", - "ministryContact": "HUDSON MOHAMED", + "uuid": "fdd4cbdf-f9b1-4f26-a655-dc89e1bf55df", + "createdAt": "2019-12-09", + "completed": "2018-01-15", + "initiated": "2023-01-19", + "ministryContact": "BREKKE JUSTEN", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -10920,33 +13267,38 @@ ], "notationParticipants": [ { + "uuid": "0de34b4b-7df9-4f91-a7cd-4afc7df5703f", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": true }, { + "uuid": "65ed7f83-7226-457c-b275-fad3531a52bc", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false + "role": "REQUESTED BY", + "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false + "uuid": "344b16ae-6882-4dc9-acb4-779e15c3874c", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true }, { + "uuid": "450b6705-3fe3-446e-a637-473004ee50cc", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2023-03-20", - "completed": "2020-01-30", - "initiated": "2021-10-19", - "ministryContact": "FRANEY SILAS", + "uuid": "439d6577-1208-48fe-b3f9-f0bef097c3a0", + "createdAt": "2015-07-07", + "completed": "2017-08-22", + "initiated": "2019-08-08", + "ministryContact": "RUTHERFORD ARLENE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -10955,34 +13307,27 @@ ], "notationParticipants": [ { + "uuid": "f59c5901-c33f-4e63-bcd6-cadb262ce4fb", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true }, { + "uuid": "3e5b8d60-52d3-4169-b943-18d4cb4164f4", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true } ], "participants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2021-04-14", - "startDate": "2018-03-21", + "uuid": "532454f8-be07-489f-8bc2-963473d94fe2", + "name": "AMET, DOLOR SIT", + "endDate": "2015-04-25", + "startDate": "2021-04-10", "notes": "", "roles": [ "EMPLOYEE" @@ -10990,224 +13335,249 @@ "siteRegistry": false }, { - "name": "AMET, DOLOR SIT", - "endDate": "2014-09-26", - "startDate": "2023-08-05", + "uuid": "9bf72126-f225-49f1-a295-5709d6e438f1", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2017-06-15", + "startDate": "2014-03-23", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false }, { - "name": "AMET, DOLOR SIT", - "endDate": "2019-06-06", - "startDate": "2015-07-14", + "uuid": "5e61fbfb-d8a9-4992-a8f3-0b96d3670342", + "name": "IPSUM", + "endDate": "2018-07-22", + "startDate": "2016-02-29", "notes": "", "roles": [ "EMPLOYEE" ], "siteRegistry": false - } - ], - "suspectLandUses": [ + }, { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-08-23 (described on Site Profile dated 2018-08-23)", + "uuid": "7db1add4-f177-4331-b6c0-fbe72269655b", + "name": "IPSUM", + "endDate": "2020-04-20", + "startDate": "2020-02-26", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + } + ], + "suspectLandUses": [ + { + "uuid": "f96a34f4-79ec-4cab-a2c2-57b1372a8353", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2023-01-17 (described on Site Profile dated 2023-01-17)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2020-06-21 (described on Site Profile dated 2020-06-21)", + "uuid": "c885bb18-6b5f-45e0-8b25-3a65c08bdd91", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2014-10-03 (described on Site Profile dated 2014-10-03)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { + "uuid": "e2b2f4b8-cd34-4188-8cf5-62795760c90a", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-08-05 (described on Site Profile dated 2018-08-05)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "notes": "INSERTED FOR SITE PROFILE DATED 2014-08-10 (described on Site Profile dated 2014-08-10)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { + "uuid": "fc2df0c8-8916-4253-b217-de017aa5ef9f", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-06-05 (described on Site Profile dated 2017-06-05)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "notes": "INSERTED FOR SITE PROFILE DATED 2023-03-30 (described on Site Profile dated 2023-03-30)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { + "uuid": "c7f53d98-2918-41b1-befa-e9e7da979006", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2020-08-15 (described on Site Profile dated 2020-08-15)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "notes": "INSERTED FOR SITE PROFILE DATED 2023-05-11 (described on Site Profile dated 2023-05-11)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], "parcelDescriptions": [ { - "siteRegistry": false, - "dateNoted": "2014-08-22", - "parcelID": "19292", - "crownLandUsePIN": "16182", - "crownLandFileNumber": "17645", - "landDescription": "LOT 4 OF LOT 3 BLOCK 5 DISTRICT LOT 4 PLAN 6798" - }, - { - "siteRegistry": true, - "dateNoted": "2017-04-13", - "parcelID": "17387", - "crownLandUsePIN": "18473", - "crownLandFileNumber": "15373", - "landDescription": "LOT 3 OF LOT 5 BLOCK 2 DISTRICT LOT 1 PLAN 9001" - }, - { + "uuid": "953b1cd6-892d-40d0-bca5-8d8d5672a836", "siteRegistry": true, - "dateNoted": "2023-04-29", - "parcelID": "15286", - "crownLandUsePIN": "15851", - "crownLandFileNumber": "16565", - "landDescription": "LOT 4 OF LOT 5 BLOCK 4 DISTRICT LOT 1 PLAN 5970" + "dateNoted": "2022-07-20", + "parcelID": "19289", + "crownLandUsePIN": "19137", + "crownLandFileNumber": "19875", + "landDescription": "LOT 1 OF LOT 4 BLOCK 5 DISTRICT LOT 2 PLAN 3110" }, { + "uuid": "e0c7ecf8-b912-411d-ad1f-45b3b8e5c37b", "siteRegistry": false, - "dateNoted": "2014-10-03", - "parcelID": "17737", - "crownLandUsePIN": "18155", - "crownLandFileNumber": "16462", - "landDescription": "LOT 4 OF LOT 3 BLOCK 4 DISTRICT LOT 1 PLAN 8292" + "dateNoted": "2017-09-11", + "parcelID": "18430", + "crownLandUsePIN": "18396", + "crownLandFileNumber": "20515", + "landDescription": "LOT 5 OF LOT 2 BLOCK 5 DISTRICT LOT 5 PLAN 5175" }, { + "uuid": "567b0ec7-e7eb-464d-9836-e23faf83fcf7", "siteRegistry": true, - "dateNoted": "2021-10-30", - "parcelID": "15744", - "crownLandUsePIN": "18884", - "crownLandFileNumber": "17581", - "landDescription": "LOT 3 OF LOT 1 BLOCK 5 DISTRICT LOT 3 PLAN 5632" + "dateNoted": "2018-12-01", + "parcelID": "18976", + "crownLandUsePIN": "18537", + "crownLandFileNumber": "16879", + "landDescription": "LOT 1 OF LOT 2 BLOCK 5 DISTRICT LOT 2 PLAN 4044" } ], "siteDisclosures": [ { + "uuid": "45347d0b-0570-4570-89f0-acb439efa2be", "siteRegistry": false, - "dateReceived": "2019-06-18", - "dateCompleted": "2021-12-09", - "dateEntered": "2020-06-10", - "dateRegistrar": "2019-12-16", - "dateLocalAuthorityReceived": "2016-06-25", - "summary": "Officiis quo minus veritatis repudiandae.", - "informationUsed": "Minus perferendis possimus ut sit odit quia quasi exercitationem neque.\nRepellat optio ratione vel.\nError libero corporis pariatur esse deleniti ad earum sapiente porro.", - "pastOrPresentOrders": "Aspernatur placeat harum esse cupiditate facilis ducimus doloribus.\nVoluptate odit totam animi autem.", + "dateReceived": "2014-05-22", + "dateCompleted": "2015-07-21", + "dateEntered": "2022-02-11", + "dateRegistrar": "2016-10-28", + "dateLocalAuthorityReceived": "2013-12-01", + "summary": "Ut nesciunt quae veniam voluptatem.\nAd quae saepe architecto asperiores nesciunt ipsum nisi soluta.\nTenetur delectus impedit laborum repudiandae.", + "informationUsed": "Itaque quis tempore consequuntur unde inventore.\nEt temporibus maxime.\nEx debitis fugit sequi illum aperiam amet.", + "pastOrPresentOrders": "Maiores molestias voluptatem excepturi quam voluptatem.\nId blanditiis doloremque sapiente fugiat vero.\nQui id expedita ipsam beatae asperiores ratione.", "commercialAndIndustrialPurposes": [ { + "uuid": "f705afaa-da88-47db-b65a-471c8e61aacc", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true + "siteRegistry": false + }, + { + "uuid": "e9a2498d-2928-4e6e-8016-f23cadb0bdc9", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false }, { + "uuid": "60b9e18d-e94e-42c5-bb15-6c391a22abe5", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false } ] + }, + { + "uuid": "b23cb7f9-2d21-4adf-9549-f42a4a79f9e1", + "siteRegistry": true, + "dateReceived": "2016-10-12", + "dateCompleted": "2016-06-04", + "dateEntered": "2017-12-01", + "dateRegistrar": "2014-10-30", + "dateLocalAuthorityReceived": "2019-03-22", + "summary": "Necessitatibus maxime delectus quia ab explicabo fuga vel veniam.\nPorro ipsum blanditiis possimus cupiditate.\nNostrum rerum nobis repellat praesentium architecto rerum quae ex eum.", + "informationUsed": "Neque ipsa officiis dignissimos inventore quas.\nQuasi architecto minima sequi natus et odit.\nNam tenetur officia sapiente animi perspiciatis dignissimos.\nCorporis expedita pariatur.", + "pastOrPresentOrders": "Voluptatem debitis nisi sed voluptas.\nAssumenda rerum perspiciatis corrupti.", + "commercialAndIndustrialPurposes": [ + { + "uuid": "5057804a-bb58-43c8-b85b-66d2666948d8", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "uuid": "6b1087a3-d1e5-4634-9c77-7bca64d8e014", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + } + ] } ], "activityLog": [ { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "MAYER RUDY", - "timestamp": "2015-09-24" - }, - { + "uuid": "9fc2ace5-0668-48cd-b2f7-e3f4c0074aa0", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "BARTON CONSTANTIN", - "timestamp": "2015-12-24" + "user": "NOLAN TORRANCE", + "timestamp": "2022-11-15" }, { + "uuid": "918d7ea0-55e3-42b1-9d71-186a8c4dc243", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "AUER MARCELO", - "timestamp": "2019-01-21" + "user": "HUEL ANTOINETTE", + "timestamp": "2021-10-19" }, { + "uuid": "cd363b4b-f1e5-433c-8015-617d6c2b51e8", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "CRONA GILLIAN", - "timestamp": "2014-02-08" - }, - { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "BUCKRIDGE BETTYE", - "timestamp": "2017-10-07" + "user": "BALISTRERI KRYSTINA", + "timestamp": "2018-06-08" }, { + "uuid": "b4113d11-2e81-4e67-ae19-5e04273e64e1", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "WALTER ZACHERY", - "timestamp": "2022-05-18" + "user": "ANKUNDING ERNIE", + "timestamp": "2019-03-15" }, { + "uuid": "7049f22d-78a9-4ea3-8da3-49ea2ba50b59", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "SAUER ANTONIO", - "timestamp": "2017-11-04" - }, - { - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "LUEILWITZ EDWIN", - "timestamp": "2017-02-27" + "user": "HEIDENREICH JACKELINE", + "timestamp": "2014-05-31" }, { + "uuid": "3a494797-1b3e-42ca-a2ec-00c604269491", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "MCCLURE LUZ", - "timestamp": "2013-11-15" - }, - { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "O'CONNER KAMREN", - "timestamp": "2020-02-09" + "user": "GIBSON GARETT", + "timestamp": "2019-07-28" } ], "associatedSites": [ { - "dateNoted": "2020-06-20", + "uuid": "daea55ca-c1a4-4ccd-8157-0bb3f344b883", + "dateNoted": "2020-04-04", "notes": "", - "parcelID": "19548", - "siteID": "16513", - "siteRegistry": true + "parcelID": "19285", + "siteID": "19620", + "siteRegistry": false }, { - "dateNoted": "2020-03-16", + "uuid": "cbcb98e5-6f89-44db-bb17-d7b8f698f31a", + "dateNoted": "2021-09-29", "notes": "", - "parcelID": "16308", - "siteID": "15987", + "parcelID": "20269", + "siteID": "17427", "siteRegistry": false } ] }, { - "uuid": "db04c26f-dfb0-4a9c-b3cb-482d9471dbdc", - "siteID": 19693, - "address": "8617 Karlee Course", - "latitude": 56.2139, - "longitude": -120.8812, - "lastUpdated": "2014-07-26", - "city": "East Abigale", - "region": "Cariboo", - "victoriaFile": "26250-20/3458", + "uuid": "9e4338f5-5ca2-469a-81f9-7d7a916d2f8e", + "siteID": 19769, + "address": "7600 Hansen Meadows", + "latitude": 48.7047, + "longitude": -124.6609, + "lastUpdated": "2018-09-24", + "city": "Sisterstad", + "region": "Kootenay", + "victoriaFile": "26250-20/4729", "regionalFile": "N/A", "parcelIDs": [ - 235494, - 9104789, - 8456747, - 2440829, - 5534414 + 5242419, + 9269955, + 6778936, + 7315610, + 7591982 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2022-08-23", - "completed": "2018-04-19", - "initiated": "2015-11-24", - "ministryContact": "FADEL JORDI", + "uuid": "9fa58496-dc18-4fd8-a64b-b32ce7faac3f", + "createdAt": "2014-09-30", + "completed": "2016-09-26", + "initiated": "2014-04-27", + "ministryContact": "SPENCER EPHRAIM", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -11216,63 +13586,38 @@ ], "notationParticipants": [ { + "uuid": "3fffa76e-b304-419a-9afd-0252c1a0dbe1", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - } - ], - "siteRegistry": false - }, - { - "createdAt": "2019-10-15", - "completed": "2014-08-21", - "initiated": "2018-08-07", - "ministryContact": "BLANDA JACKIE", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { + "uuid": "f8b1a688-7c2b-4700-96be-fd117aaaddeb", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { + "uuid": "c2053eb5-795c-48fe-ba09-e275af0731ed", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false + "uuid": "31aaa368-6f26-4d79-85d4-b4339128c7de", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true } ], "siteRegistry": false }, { - "createdAt": "2019-07-08", - "completed": "2016-01-11", - "initiated": "2018-03-04", - "ministryContact": "OSINSKI OSBORNE", + "uuid": "3531c954-91ed-4844-be82-23aa3e85ace9", + "createdAt": "2019-09-11", + "completed": "2015-03-29", + "initiated": "2018-12-22", + "ministryContact": "WILLIAMSON ABDULLAH", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -11281,24 +13626,16 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { + "uuid": "c4b0b4e8-4431-4be8-b61c-65d03bf53584", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", + "uuid": "636c5b11-a2b9-4a6e-846d-c3c23b388a35", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true } ], "siteRegistry": false @@ -11306,19 +13643,10 @@ ], "participants": [ { - "name": "AMET, DOLOR SIT", - "endDate": "2016-05-28", - "startDate": "2021-06-21", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": true - }, - { + "uuid": "a117b6e9-7073-42d9-94f2-94f251955234", "name": "IPSUM", - "endDate": "2019-08-05", - "startDate": "2019-11-22", + "endDate": "2021-05-20", + "startDate": "2022-04-13", "notes": "", "roles": [ "ORGANIZATION" @@ -11326,202 +13654,236 @@ "siteRegistry": false }, { - "name": "AMET, DOLOR SIT", - "endDate": "2020-11-05", - "startDate": "2017-08-15", + "uuid": "65161451-cb4b-410e-8c2c-c4400891da40", + "name": "IPSUM", + "endDate": "2022-11-22", + "startDate": "2014-01-16", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true }, { + "uuid": "f4c0246c-f280-4fdd-b3f3-9a2b1fa8fefd", "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2019-11-16", - "startDate": "2018-06-12", + "endDate": "2016-09-05", + "startDate": "2022-12-16", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], - "siteRegistry": true + "siteRegistry": false } ], "suspectLandUses": [ { + "uuid": "10fa112d-0730-463e-88e1-2e1fd7c8fb21", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-05-19 (described on Site Profile dated 2019-05-19)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" - }, - { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-10-04 (described on Site Profile dated 2015-10-04)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "notes": "INSERTED FOR SITE PROFILE DATED 2023-04-29 (described on Site Profile dated 2023-04-29)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { + "uuid": "915dff4e-0c83-4d8c-aab0-1803cee87613", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-08-20 (described on Site Profile dated 2021-08-20)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" - }, - { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-01-25 (described on Site Profile dated 2016-01-25)", + "notes": "INSERTED FOR SITE PROFILE DATED 2020-08-26 (described on Site Profile dated 2020-08-26)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" - }, - { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2023-02-20 (described on Site Profile dated 2023-02-20)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], "parcelDescriptions": [ { + "uuid": "745caf60-42b0-40e1-837a-fda52ae2e902", "siteRegistry": false, - "dateNoted": "2022-02-12", - "parcelID": "19798", - "crownLandUsePIN": "15878", - "crownLandFileNumber": "20756", - "landDescription": "LOT 5 OF LOT 2 BLOCK 1 DISTRICT LOT 2 PLAN 4063" + "dateNoted": "2019-04-07", + "parcelID": "18521", + "crownLandUsePIN": "16929", + "crownLandFileNumber": "18207", + "landDescription": "LOT 3 OF LOT 5 BLOCK 5 DISTRICT LOT 2 PLAN 7124" }, { + "uuid": "c8d28d88-a821-4bda-ae9f-c338b8d43642", "siteRegistry": true, - "dateNoted": "2017-07-29", - "parcelID": "15273", - "crownLandUsePIN": "20927", - "crownLandFileNumber": "18120", - "landDescription": "LOT 3 OF LOT 2 BLOCK 5 DISTRICT LOT 1 PLAN 7730" + "dateNoted": "2018-03-06", + "parcelID": "17741", + "crownLandUsePIN": "18906", + "crownLandFileNumber": "20610", + "landDescription": "LOT 3 OF LOT 2 BLOCK 4 DISTRICT LOT 2 PLAN 8592" }, { + "uuid": "820f08fa-028a-42ae-a3ce-1421d8e6a356", "siteRegistry": true, - "dateNoted": "2023-04-09", - "parcelID": "17942", - "crownLandUsePIN": "15657", - "crownLandFileNumber": "17684", - "landDescription": "LOT 4 OF LOT 4 BLOCK 3 DISTRICT LOT 1 PLAN 5732" + "dateNoted": "2019-04-19", + "parcelID": "17709", + "crownLandUsePIN": "15797", + "crownLandFileNumber": "18615", + "landDescription": "LOT 2 OF LOT 3 BLOCK 1 DISTRICT LOT 3 PLAN 6080" }, { + "uuid": "b47ea091-456c-42ad-9a7b-0d306aa905c4", "siteRegistry": false, - "dateNoted": "2016-07-28", - "parcelID": "20467", - "crownLandUsePIN": "16051", - "crownLandFileNumber": "18885", - "landDescription": "LOT 3 OF LOT 2 BLOCK 2 DISTRICT LOT 1 PLAN 9136" + "dateNoted": "2022-10-08", + "parcelID": "19017", + "crownLandUsePIN": "18282", + "crownLandFileNumber": "16963", + "landDescription": "LOT 4 OF LOT 5 BLOCK 3 DISTRICT LOT 1 PLAN 6727" } ], "siteDisclosures": [ { - "siteRegistry": false, - "dateReceived": "2019-05-17", - "dateCompleted": "2015-11-02", - "dateEntered": "2023-06-18", - "dateRegistrar": "2019-05-16", - "dateLocalAuthorityReceived": "2022-08-23", - "summary": "Ea et laudantium alias ea sint totam temporibus quidem.", - "informationUsed": "Eaque reprehenderit fugit ducimus doloremque delectus voluptate ad.\nRepudiandae officiis labore sed nobis quibusdam aperiam delectus sint ipsa.\nReiciendis nulla alias inventore exercitationem magnam.\nVelit illo dolores odio laborum sed ratione repudiandae ipsam aut.\nPerspiciatis repellat nam culpa dignissimos.", - "pastOrPresentOrders": "Laudantium numquam in modi.\nInventore consectetur magnam neque beatae est ea voluptas.", + "uuid": "e28d7f6f-8a76-4d47-9c11-4051d954f35c", + "siteRegistry": true, + "dateReceived": "2020-09-12", + "dateCompleted": "2022-06-21", + "dateEntered": "2014-11-01", + "dateRegistrar": "2016-01-01", + "dateLocalAuthorityReceived": "2015-07-30", + "summary": "Repudiandae repellendus corrupti ad nam.\nAt quas quam maiores officiis.\nRepudiandae delectus at asperiores beatae.", + "informationUsed": "Totam vitae quod fugit aperiam cum consequuntur unde iste mollitia.\nQui quis reprehenderit harum.\nSed minima sapiente.\nFacilis odit iste repellat corporis deserunt hic doloribus voluptatibus.", + "pastOrPresentOrders": "Dolore hic occaecati sed accusantium odit unde deserunt culpa.", "commercialAndIndustrialPurposes": [ { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "uuid": "00089ae0-41b1-4442-89ee-73750df10216", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, { + "uuid": "07e857a4-bea8-47f8-9857-2ebb88c67b26", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + } + ] + }, + { + "uuid": "bb0300a1-1a9c-42c4-85b0-cf01078f3d7f", + "siteRegistry": true, + "dateReceived": "2023-01-23", + "dateCompleted": "2019-04-07", + "dateEntered": "2021-07-04", + "dateRegistrar": "2015-07-16", + "dateLocalAuthorityReceived": "2015-04-07", + "summary": "Vel minus vitae nostrum saepe pariatur alias sint facere esse.\nNecessitatibus ipsa doloremque omnis.", + "informationUsed": "Accusamus iste magni voluptatibus quibusdam.\nAutem non vero autem officiis officia animi exercitationem recusandae.\nTempore a illo voluptate illum eligendi qui quis architecto.", + "pastOrPresentOrders": "Ipsum amet nemo alias.\nQuaerat officia cum.\nEsse tempore facilis magni odio eum nihil.", + "commercialAndIndustrialPurposes": [ + { + "uuid": "966d9a5f-0754-4974-a38d-7f7fd17b9276", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { - "scheduleReference": "F2*", + "uuid": "3059200f-4f09-4217-b676-31c9c7976af0", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "uuid": "6e5453cf-77ba-4a48-9b66-298537f93b5c", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, { + "uuid": "50572384-d960-4c0e-87a3-64d9ac90d839", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true + "siteRegistry": false } ] } ], "activityLog": [ { - "siteRegistry": false, + "uuid": "14f58e4a-f2c8-4203-aca8-e527b6ae36cc", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "SENGER SILAS", - "timestamp": "2016-04-26" + "user": "CRUICKSHANK ABDUL", + "timestamp": "2013-12-28" }, { + "uuid": "65b83e26-dc66-4916-811d-8e0e5f2c80f9", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "FADEL MOSHE", - "timestamp": "2021-06-14" + "user": "BLICK AURELIE", + "timestamp": "2014-10-11" }, { + "uuid": "26a59994-41b3-483c-8cef-cff7971e4568", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "JACOBSON TERENCE", - "timestamp": "2016-07-24" + "user": "TRANTOW MANLEY", + "timestamp": "2020-01-10" }, { + "uuid": "c0c69384-81cd-478a-bf71-618d9cad4d27", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "TORPHY MEKHI", - "timestamp": "2017-01-16" - }, - { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "CONROY CATHRYN", - "timestamp": "2018-06-13" + "user": "VANDERVORT NESTOR", + "timestamp": "2021-03-25" }, { + "uuid": "984305fa-277e-4d11-8393-7af5d9fa0ba2", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "GOODWIN CAROLINA", - "timestamp": "2015-10-24" + "user": "WATERS JUDE", + "timestamp": "2016-08-27" } ], "associatedSites": [ { - "dateNoted": "2021-07-04", + "uuid": "d5fc6beb-dd25-4c0e-9df9-c71dbd3ca0f4", + "dateNoted": "2019-08-31", "notes": "", - "parcelID": "17867", - "siteID": "19051", - "siteRegistry": true + "parcelID": "20645", + "siteID": "18893", + "siteRegistry": false }, { - "dateNoted": "2018-11-23", + "uuid": "0a243a79-f274-4205-9198-ead7bba96a12", + "dateNoted": "2021-06-03", "notes": "", - "parcelID": "16585", - "siteID": "20758", + "parcelID": "20145", + "siteID": "16277", + "siteRegistry": false + }, + { + "uuid": "aec535ac-1c9f-4a88-8ed2-8d4d366a715b", + "dateNoted": "2020-08-24", + "notes": "", + "parcelID": "19240", + "siteID": "16044", "siteRegistry": false } ] }, { - "uuid": "0c2392ff-8f4f-4647-af78-20e5d061e5b9", - "siteID": 19267, - "address": "8742 Thompson Walks", - "latitude": 51.4686, - "longitude": -131.797, - "lastUpdated": "2015-06-11", - "city": "Jonesboro", - "region": "Mainland/Southwest", - "victoriaFile": "26250-20/12507", + "uuid": "52f96bed-6995-4026-ac58-281882b5049e", + "siteID": 17972, + "address": "56284 Estefania Grove", + "latitude": 55.0559, + "longitude": -118.7327, + "lastUpdated": "2023-04-10", + "city": "Gusikowskishire", + "region": "Kootenay", + "victoriaFile": "26250-20/13855", "regionalFile": "N/A", "parcelIDs": [ - 8129894, - 9506359, - 256410, - 6959084, - 8038275 + 7115094, + 5448789, + 2581103, + 5172228, + 1362246 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2023-05-12", - "completed": "2022-02-07", - "initiated": "2021-11-13", - "ministryContact": "WHITE VELVA", + "uuid": "a5726add-cfc6-4aaa-97a9-be8939e1b1fb", + "createdAt": "2020-07-25", + "completed": "2021-03-05", + "initiated": "2016-02-03", + "ministryContact": "BOTSFORD CLEMENT", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -11530,58 +13892,38 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { + "uuid": "097ba7d1-de19-4690-a5dc-c264133ebb44", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { + "uuid": "e2be0768-7ad8-4db2-b84b-0d82b86a0719", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": true }, { + "uuid": "ba98737e-c548-40dc-b0e3-b9b08daeb8f0", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - } - ], - "siteRegistry": false - }, - { - "createdAt": "2022-03-10", - "completed": "2021-11-26", - "initiated": "2022-07-22", - "ministryContact": "VEUM EDMOND", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false }, { + "uuid": "2f81b99b-a826-4fb7-8558-944817f501b6", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false } ], "siteRegistry": true }, { - "createdAt": "2018-10-20", - "completed": "2018-02-15", - "initiated": "2015-12-17", - "ministryContact": "BECKER JAMAAL", + "uuid": "ebb5121a-3b68-4b69-88f2-a38cc10b7cc0", + "createdAt": "2019-07-11", + "completed": "2023-04-05", + "initiated": "2017-03-12", + "ministryContact": "LEFFLER SADIE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -11590,29 +13932,39 @@ ], "notationParticipants": [ { + "uuid": "ad00ad78-f490-4d31-8e0d-a7b2834c90ea", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "uuid": "f88da71d-29ad-44c4-bf19-22d2c1fb0771", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "uuid": "ac18cb89-0f94-46e8-a6a9-302f159811c7", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "470b9968-a95c-42b5-93d6-b47ded3fee34", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true } ], "participants": [ { - "name": "IPSUM", - "endDate": "2023-01-06", - "startDate": "2014-09-18", + "uuid": "82828570-9841-438f-b722-fa6cc0ed451c", + "name": "AMET, DOLOR SIT", + "endDate": "2018-10-21", + "startDate": "2016-06-08", "notes": "", "roles": [ "EMPLOYEE" @@ -11620,9 +13972,10 @@ "siteRegistry": true }, { - "name": "AMET, DOLOR SIT", - "endDate": "2019-09-02", - "startDate": "2015-07-11", + "uuid": "232b545f-0535-4c8f-8b35-18f6df37297b", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2014-02-04", + "startDate": "2016-02-19", "notes": "", "roles": [ "ORGANIZATION" @@ -11630,232 +13983,221 @@ "siteRegistry": false }, { - "name": "IPSUM", - "endDate": "2018-01-28", - "startDate": "2022-08-01", + "uuid": "e88e52d4-7bb1-417d-be8f-ecac06a28c40", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2015-08-18", + "startDate": "2016-09-04", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2022-02-09", - "startDate": "2022-09-25", + "uuid": "ef7abb5d-38ae-46ce-8c1f-091c46469336", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2020-11-05", + "startDate": "2016-05-20", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2022-11-08", - "startDate": "2017-05-07", + "uuid": "279bcdab-2dcb-4f84-8581-cfe76300e79a", + "name": "AMET, DOLOR SIT", + "endDate": "2014-03-07", + "startDate": "2019-08-05", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": false + "siteRegistry": true } ], "suspectLandUses": [ { + "uuid": "d4c3776d-292f-439e-ba32-7c8065176d8e", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-12-27 (described on Site Profile dated 2022-12-27)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" - }, - { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-10-26 (described on Site Profile dated 2015-10-26)", + "notes": "INSERTED FOR SITE PROFILE DATED 2017-02-09 (described on Site Profile dated 2017-02-09)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { + "uuid": "ba32807c-8309-4dd2-af55-a53314b4491c", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-08-09 (described on Site Profile dated 2019-08-09)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "notes": "INSERTED FOR SITE PROFILE DATED 2023-08-07 (described on Site Profile dated 2023-08-07)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], "parcelDescriptions": [ { - "siteRegistry": true, - "dateNoted": "2022-02-22", - "parcelID": "17157", - "crownLandUsePIN": "19074", - "crownLandFileNumber": "19274", - "landDescription": "LOT 1 OF LOT 5 BLOCK 5 DISTRICT LOT 2 PLAN 5586" + "uuid": "f3ae9b23-cf24-43fa-a106-a5b0186818d5", + "siteRegistry": false, + "dateNoted": "2021-03-21", + "parcelID": "17019", + "crownLandUsePIN": "18371", + "crownLandFileNumber": "17911", + "landDescription": "LOT 1 OF LOT 2 BLOCK 1 DISTRICT LOT 5 PLAN 5278" }, { + "uuid": "3801dfc1-26c1-4760-8ddd-150f8afda818", "siteRegistry": true, - "dateNoted": "2017-07-01", - "parcelID": "18002", - "crownLandUsePIN": "17140", - "crownLandFileNumber": "19786", - "landDescription": "LOT 5 OF LOT 5 BLOCK 3 DISTRICT LOT 3 PLAN 5936" - }, - { - "siteRegistry": false, - "dateNoted": "2020-05-08", - "parcelID": "15895", - "crownLandUsePIN": "19470", - "crownLandFileNumber": "15995", - "landDescription": "LOT 4 OF LOT 4 BLOCK 2 DISTRICT LOT 2 PLAN 7907" + "dateNoted": "2023-06-10", + "parcelID": "16853", + "crownLandUsePIN": "16273", + "crownLandFileNumber": "20733", + "landDescription": "LOT 5 OF LOT 1 BLOCK 5 DISTRICT LOT 2 PLAN 7793" }, { + "uuid": "de7d8d76-cd9b-40ae-bd3a-93be9b203484", "siteRegistry": false, - "dateNoted": "2019-09-29", - "parcelID": "19104", - "crownLandUsePIN": "16962", - "crownLandFileNumber": "17074", - "landDescription": "LOT 5 OF LOT 2 BLOCK 1 DISTRICT LOT 5 PLAN 6070" + "dateNoted": "2014-05-13", + "parcelID": "16882", + "crownLandUsePIN": "17205", + "crownLandFileNumber": "18246", + "landDescription": "LOT 3 OF LOT 4 BLOCK 1 DISTRICT LOT 5 PLAN 6744" } ], "siteDisclosures": [ { - "siteRegistry": false, - "dateReceived": "2021-02-13", - "dateCompleted": "2019-04-30", - "dateEntered": "2020-08-16", - "dateRegistrar": "2019-06-18", - "dateLocalAuthorityReceived": "2020-06-12", - "summary": "Rem laboriosam dicta expedita dolorum natus libero ad necessitatibus ipsam.\nMinus id fugit excepturi velit saepe nostrum voluptatibus.\nMagni laboriosam id natus neque.", - "informationUsed": "Magnam cupiditate cupiditate necessitatibus accusantium corrupti.\nLibero nemo voluptate deserunt perferendis iusto molestiae qui itaque.\nDeleniti facilis natus.\nConsequatur atque iste explicabo perspiciatis libero.\nMinus aperiam animi neque deserunt beatae possimus aspernatur veritatis impedit.", - "pastOrPresentOrders": "Quas sequi ad culpa rem quisquam veniam necessitatibus.", + "uuid": "5d813665-e5e6-494f-9e79-5ad09be98d7f", + "siteRegistry": true, + "dateReceived": "2020-11-19", + "dateCompleted": "2020-02-23", + "dateEntered": "2015-10-22", + "dateRegistrar": "2016-03-27", + "dateLocalAuthorityReceived": "2022-09-08", + "summary": "Nostrum perferendis occaecati incidunt.", + "informationUsed": "Deserunt quasi vitae eos.\nLaborum itaque maxime facere.\nNam architecto similique explicabo quidem sunt eum.", + "pastOrPresentOrders": "Ducimus nulla atque libero soluta sit error totam natus.", "commercialAndIndustrialPurposes": [ { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false - }, - { + "uuid": "6d744b1c-a2ca-48e0-8839-9399a1a081ab", "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false - } - ] - }, - { - "siteRegistry": false, - "dateReceived": "2020-05-06", - "dateCompleted": "2015-10-20", - "dateEntered": "2022-05-24", - "dateRegistrar": "2015-10-31", - "dateLocalAuthorityReceived": "2020-08-05", - "summary": "Nemo illum veniam quos.\nEius occaecati nam corporis error quam.\nBeatae consequuntur magni ab fuga tempora a laudantium ullam.", - "informationUsed": "Architecto ullam nulla occaecati.\nSequi adipisci tenetur corrupti ad quia.\nExpedita praesentium commodi iure.\nAlias enim molestias.", - "pastOrPresentOrders": "Earum incidunt distinctio.", - "commercialAndIndustrialPurposes": [ - { + "uuid": "1abf2da4-abfe-4a78-a07c-753e0f5109e4", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false - }, - { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false + "siteRegistry": true } ] } ], "activityLog": [ { - "siteRegistry": false, + "uuid": "d5c6c151-33fc-4730-bf5a-572e566a1f31", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "NIKOLAUS TANNER", - "timestamp": "2020-01-27" + "user": "LEFFLER-ABBOTT EVIE", + "timestamp": "2022-09-12" }, { - "siteRegistry": true, + "uuid": "86978704-d222-4e21-889c-51ff863afde3", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "BODE EDNA", - "timestamp": "2022-05-05" + "user": "SCHNEIDER ABBIGAIL", + "timestamp": "2020-01-01" }, { + "uuid": "3f9d1404-ca80-4927-b8ca-f85caf07232f", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "FAHEY GLADYCE", - "timestamp": "2015-07-31" + "user": "MCKENZIE ROWENA", + "timestamp": "2023-03-01" }, { + "uuid": "98ee7d1c-430d-4758-956a-ee5321b98eda", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "HARVEY SID", - "timestamp": "2016-03-27" + "user": "CHAMPLIN-BEDNAR KAYLIE", + "timestamp": "2020-11-06" }, { - "siteRegistry": true, + "uuid": "2e9a5ce4-c44f-4338-8f47-ba2a90e6bf38", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "ALTENWERTH CONRAD", - "timestamp": "2016-04-24" + "user": "STROSIN JERROLD", + "timestamp": "2017-09-08" }, { - "siteRegistry": false, + "uuid": "d8efc5cf-97b2-4b7b-ae1c-66b6f24f23b7", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "HIRTHE THERON", - "timestamp": "2021-11-24" + "user": "ARMSTRONG STELLA", + "timestamp": "2021-07-18" }, { + "uuid": "56612dc9-8b63-45e2-97e2-2a5be39fe3ce", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "FAY ANABEL", - "timestamp": "2020-01-14" + "user": "RYAN DREW", + "timestamp": "2017-09-10" }, { + "uuid": "780304d8-2167-48be-a9d3-3b0e635599cb", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "JACOBS EMILE", - "timestamp": "2020-08-08" + "user": "LEHNER ADELBERT", + "timestamp": "2023-02-24" } ], "associatedSites": [ { - "dateNoted": "2014-12-21", + "uuid": "d79bc2df-5909-4d12-97fa-5dd715cdba8d", + "dateNoted": "2019-08-08", "notes": "", - "parcelID": "19196", - "siteID": "19114", + "parcelID": "17127", + "siteID": "18865", "siteRegistry": false }, { - "dateNoted": "2018-08-14", + "uuid": "ff53d94f-a571-4a5e-a74f-41de639bbb27", + "dateNoted": "2014-10-27", + "notes": "", + "parcelID": "19617", + "siteID": "19122", + "siteRegistry": false + }, + { + "uuid": "e29d7d3d-4599-4fad-ac36-ff49d1850c2c", + "dateNoted": "2019-07-29", "notes": "", - "parcelID": "18206", - "siteID": "18214", + "parcelID": "20581", + "siteID": "17170", "siteRegistry": true } ] }, { - "uuid": "06262093-4ea9-49c8-bae3-4ca637916445", - "siteID": 18140, - "address": "603 Mohr Greens", - "latitude": 54.3827, - "longitude": -127.7066, - "lastUpdated": "2019-06-28", - "city": "Lake Uriahfort", - "region": "Cariboo", - "victoriaFile": "26250-20/6910", + "uuid": "3c8073ec-fe9e-44bb-a0cb-f9065d232191", + "siteID": 16538, + "address": "56374 Blick Camp", + "latitude": 51.4899, + "longitude": -135.6935, + "lastUpdated": "2015-01-20", + "city": "DuBuqueview", + "region": " North Coast", + "victoriaFile": "26250-20/3922", "regionalFile": "N/A", "parcelIDs": [ - 912233, - 8025674, - 972242, - 9523775, - 9154665 + 4188119, + 1233797, + 5892727, + 6019832, + 2909223 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2018-03-19", - "completed": "2021-09-12", - "initiated": "2022-10-29", - "ministryContact": "O'KEEFE AHMED", + "uuid": "196cc660-8010-40bc-9d69-fb3d7d2b171f", + "createdAt": "2015-01-14", + "completed": "2015-01-11", + "initiated": "2016-05-28", + "ministryContact": "MONAHAN NAME", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -11864,73 +14206,26 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { + "uuid": "2cda2a5c-4137-4870-98c9-87ddc8290efb", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - } - ], - "siteRegistry": false - }, - { - "createdAt": "2015-10-19", - "completed": "2014-01-15", - "initiated": "2020-08-11", - "ministryContact": "MAGGIO DEJA", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "66e89797-4357-4577-a4b2-d6c312183224", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false } ], "siteRegistry": false }, { - "createdAt": "2022-09-05", - "completed": "2020-02-22", - "initiated": "2015-05-24", - "ministryContact": "STANTON CICERO", + "uuid": "78bfb1cb-8daa-4018-a17e-68b352a6a049", + "createdAt": "2014-09-10", + "completed": "2015-03-09", + "initiated": "2021-11-28", + "ministryContact": "LARKIN MATEO", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -11939,21 +14234,25 @@ ], "notationParticipants": [ { + "uuid": "a386c399-a884-4efb-ab49-035060087e84", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false + "role": "SUBMITTED BY", + "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", + "uuid": "d6d25fc1-c623-4da0-8c72-216efc28cbe3", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false }, { + "uuid": "9d3e2d39-a446-425c-86da-da378a68212c", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { + "uuid": "ab245dc4-e989-4c1d-9169-14ecdbe32148", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false @@ -11962,10 +14261,11 @@ "siteRegistry": false }, { - "createdAt": "2016-06-21", - "completed": "2022-09-08", - "initiated": "2014-07-02", - "ministryContact": "O'CONNER THERESIA", + "uuid": "ac252da9-5531-4d60-b876-34fd6fbac77f", + "createdAt": "2017-07-10", + "completed": "2023-02-11", + "initiated": "2014-04-16", + "ministryContact": "YUNDT MINA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -11974,24 +14274,22 @@ ], "notationParticipants": [ { + "uuid": "9a94a12e-cd03-4409-b649-78865ecdbeb6", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { + "uuid": "9c0cabd7-700e-4bbd-bf52-add12732d9a0", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true + "role": "SUBMITTED BY", + "siteRegistry": false }, { + "uuid": "09fa03ee-5f60-4f2e-a9db-cf8543f8bcdc", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true + "role": "REQUESTED BY", + "siteRegistry": false } ], "siteRegistry": false @@ -11999,19 +14297,21 @@ ], "participants": [ { + "uuid": "71325392-3140-4319-b837-28e4375576bb", "name": "IPSUM", - "endDate": "2021-06-05", - "startDate": "2017-05-21", + "endDate": "2016-06-01", + "startDate": "2021-04-22", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": false }, { - "name": "AMET, DOLOR SIT", - "endDate": "2015-03-29", - "startDate": "2021-03-14", + "uuid": "d7cfc73c-8ec9-4284-99cc-4e96cdba76af", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2019-09-02", + "startDate": "2019-07-05", "notes": "", "roles": [ "EMPLOYEE" @@ -12019,115 +14319,96 @@ "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2022-09-06", - "startDate": "2014-06-26", + "uuid": "e7038e44-cfa3-4377-b859-6b5860980142", + "name": "AMET, DOLOR SIT", + "endDate": "2015-08-29", + "startDate": "2016-01-03", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": true } ], "suspectLandUses": [ { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-11-11 (described on Site Profile dated 2016-11-11)", + "uuid": "8c5cefd6-8782-4530-8570-af42f0f815e1", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2015-08-09 (described on Site Profile dated 2015-08-09)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { + "uuid": "65c51a65-123f-4dfa-9468-e47a2ccebec0", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-03-10 (described on Site Profile dated 2022-03-10)", + "notes": "INSERTED FOR SITE PROFILE DATED 2016-08-10 (described on Site Profile dated 2016-08-10)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "uuid": "6e01046c-cf44-496f-ab6f-af073cadd10b", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2021-12-11 (described on Site Profile dated 2021-12-11)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { + "uuid": "0e8d51d3-b404-464b-85de-6f8a88f1c5b2", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-01-04 (described on Site Profile dated 2019-01-04)", + "notes": "INSERTED FOR SITE PROFILE DATED 2021-12-09 (described on Site Profile dated 2021-12-09)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], "parcelDescriptions": [ { + "uuid": "a2f775bd-0c64-46b6-a059-860aa17f455f", "siteRegistry": false, - "dateNoted": "2020-01-12", - "parcelID": "17927", - "crownLandUsePIN": "17054", - "crownLandFileNumber": "16694", - "landDescription": "LOT 2 OF LOT 1 BLOCK 2 DISTRICT LOT 5 PLAN 8547" + "dateNoted": "2021-03-22", + "parcelID": "18853", + "crownLandUsePIN": "17081", + "crownLandFileNumber": "20903", + "landDescription": "LOT 3 OF LOT 2 BLOCK 3 DISTRICT LOT 5 PLAN 6000" }, { + "uuid": "c5617372-17b9-41bd-8d9b-8c12d741651f", "siteRegistry": false, - "dateNoted": "2014-08-20", - "parcelID": "15645", - "crownLandUsePIN": "16427", - "crownLandFileNumber": "16721", - "landDescription": "LOT 1 OF LOT 2 BLOCK 1 DISTRICT LOT 5 PLAN 9329" - }, - { - "siteRegistry": true, - "dateNoted": "2015-10-11", - "parcelID": "15336", - "crownLandUsePIN": "18327", - "crownLandFileNumber": "20140", - "landDescription": "LOT 1 OF LOT 3 BLOCK 2 DISTRICT LOT 1 PLAN 4377" + "dateNoted": "2014-11-15", + "parcelID": "19036", + "crownLandUsePIN": "16383", + "crownLandFileNumber": "17971", + "landDescription": "LOT 4 OF LOT 4 BLOCK 2 DISTRICT LOT 5 PLAN 3190" } ], "siteDisclosures": [ { - "siteRegistry": false, - "dateReceived": "2018-04-22", - "dateCompleted": "2022-07-11", - "dateEntered": "2021-08-09", - "dateRegistrar": "2016-03-31", - "dateLocalAuthorityReceived": "2017-03-30", - "summary": "A maiores ipsum.\nQuaerat perferendis eaque earum.\nNulla vero enim deserunt soluta eaque asperiores.", - "informationUsed": "Assumenda adipisci quis commodi odio est libero beatae unde.\nNumquam enim porro numquam.\nPlaceat culpa numquam quibusdam at sequi consequuntur a sit.", - "pastOrPresentOrders": "Maiores vero voluptas esse accusantium saepe.\nIn facere earum ea qui.\nA itaque libero cum rem blanditiis reiciendis aspernatur.", + "uuid": "b70304a4-ba54-4300-8399-077e4c4216cb", + "siteRegistry": true, + "dateReceived": "2014-11-08", + "dateCompleted": "2021-12-08", + "dateEntered": "2018-11-14", + "dateRegistrar": "2017-03-20", + "dateLocalAuthorityReceived": "2018-02-10", + "summary": "Ducimus ea vero recusandae exercitationem architecto ullam explicabo nam.\nEnim illo recusandae qui veritatis quis voluptatum ipsam.\nNostrum dolor exercitationem voluptate.", + "informationUsed": "Delectus doloribus aut aliquam facilis rem quibusdam ipsam incidunt ullam.\nSequi totam provident.\nRatione illum fugiat ducimus facilis.\nQuia accusantium qui magnam labore quasi nobis.", + "pastOrPresentOrders": "Expedita harum vitae quae numquam.\nLaboriosam ipsum quaerat non quas.", "commercialAndIndustrialPurposes": [ { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false - }, - { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false - }, - { + "uuid": "7b72d276-ca55-4ba6-82fb-6677adfc5925", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false - } - ] - }, - { - "siteRegistry": true, - "dateReceived": "2022-06-09", - "dateCompleted": "2014-02-02", - "dateEntered": "2014-10-11", - "dateRegistrar": "2021-03-27", - "dateLocalAuthorityReceived": "2014-02-02", - "summary": "Deserunt porro perferendis nobis ipsa labore sunt.", - "informationUsed": "Ratione nihil vel placeat officia voluptatem sequi quae.\nIllo ex sit ipsam vel temporibus aperiam magnam vitae magnam.\nEligendi consequatur magnam quae ducimus officia.\nVoluptates dolorem fugit veritatis sunt aut quis facere debitis.\nConsequuntur fuga ratione quibusdam cumque minus numquam alias eum blanditiis.", - "pastOrPresentOrders": "Quidem provident tempore nam odio a.\nOptio totam corporis atque cum aliquam quaerat adipisci.\nMinima itaque repellat accusamus eaque numquam sint nisi.", - "commercialAndIndustrialPurposes": [ - { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false + "siteRegistry": true }, { + "uuid": "73085cc6-5a2f-4166-a3a4-7f610cdf06ee", "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "uuid": "eb489cbb-8a04-422a-8200-9340009d7d72", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { + "uuid": "cd0b6cde-d6bb-42d7-bfde-20280a739479", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false @@ -12137,84 +14418,122 @@ ], "activityLog": [ { + "uuid": "d8cfaf10-4921-4fe1-ba22-b0b1dbd5968e", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "MOORE ABAGAIL", - "timestamp": "2017-05-11" + "user": "CASSIN GUIDO", + "timestamp": "2019-11-16" }, { + "uuid": "be49a4f5-22ed-455f-8dee-703437b7eb3b", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "RYAN WILMER", - "timestamp": "2022-12-31" + "user": "KERLUKE JANESSA", + "timestamp": "2015-01-19" }, { + "uuid": "a4974da0-18be-4c3e-a2fd-4cb3842981dc", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "BLANDA MEGGIE", - "timestamp": "2015-10-12" + "user": "BOEHM COBY", + "timestamp": "2020-06-14" }, { - "siteRegistry": false, + "uuid": "eddf29a5-4c88-4713-9498-59f995bed57d", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "DIETRICH LYLA", - "timestamp": "2014-05-16" + "user": "VANDERVORT ESPERANZA", + "timestamp": "2015-01-12" }, { - "siteRegistry": true, + "uuid": "d94783a3-68ec-458a-855d-886a06a2d7fe", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "BERGNAUM WERNER", - "timestamp": "2023-05-01" + "user": "LESCH BERTRAM", + "timestamp": "2014-06-27" }, { + "uuid": "9737928e-c3ae-4ce3-97e3-d9a7266bf295", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "RIPPIN FELICIA", - "timestamp": "2023-08-16" - } - ], - "associatedSites": [ + "user": "ZIEME KELLEY", + "timestamp": "2014-06-12" + }, { - "dateNoted": "2016-09-20", + "uuid": "e9deea82-98be-4e74-aac5-895111acc562", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "STEHR ASIA", + "timestamp": "2021-05-22" + }, + { + "uuid": "d97c05dc-3e38-44e6-9803-a7cb52dd46b3", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "MAGGIO MARIAN", + "timestamp": "2014-08-28" + }, + { + "uuid": "ff6536c7-eb34-4a71-98ef-4b04e7b276c7", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "BARTELL ANGELICA", + "timestamp": "2020-06-27" + } + ], + "associatedSites": [ + { + "uuid": "eafde4f5-9422-4af2-8ff4-88f005c4ec0a", + "dateNoted": "2022-05-16", "notes": "", - "parcelID": "20303", - "siteID": "20722", - "siteRegistry": false + "parcelID": "20955", + "siteID": "16415", + "siteRegistry": true }, { - "dateNoted": "2021-12-12", + "uuid": "c7e5041e-7389-411c-8478-f9b7935b155b", + "dateNoted": "2018-04-01", "notes": "", - "parcelID": "17968", - "siteID": "16778", - "siteRegistry": false + "parcelID": "15724", + "siteID": "16851", + "siteRegistry": true + }, + { + "uuid": "062f1a6d-6b75-4eb0-911b-a5b57047c680", + "dateNoted": "2018-12-06", + "notes": "", + "parcelID": "15265", + "siteID": "15585", + "siteRegistry": true } ] }, { - "uuid": "b270e2b7-6cc5-4b70-8f32-62c1dbf9c1c4", - "siteID": 16335, - "address": "58573 Diana Place", - "latitude": 56.0779, - "longitude": -133.6162, - "lastUpdated": "2023-03-29", - "city": "Paterson", - "region": "Thompson-Okanagan", - "victoriaFile": "26250-20/2755", + "uuid": "e98afbda-bc70-4d37-93bf-159cfe731240", + "siteID": 15580, + "address": "143 Lindsay Avenue", + "latitude": 54.3074, + "longitude": -126.1384, + "lastUpdated": "2022-01-12", + "city": "North Little Rock", + "region": "Vancouver Island/Coast", + "victoriaFile": "26250-20/19824", "regionalFile": "N/A", "parcelIDs": [ - 7850707, - 5429481, - 4841570, - 941431, - 7054685 + 3517220, + 3053744, + 1176376, + 1988183, + 5219084 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2018-09-16", - "completed": "2018-01-16", - "initiated": "2023-01-22", - "ministryContact": "WAELCHI CHYNA", + "uuid": "21c92d2d-4d34-4803-993b-6b3c84f704aa", + "createdAt": "2016-07-12", + "completed": "2017-12-21", + "initiated": "2020-02-01", + "ministryContact": "LANGOSH JERMAIN", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -12223,48 +14542,44 @@ ], "notationParticipants": [ { + "uuid": "9d7b490a-8ff6-4ec3-862f-792895f21119", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { + "uuid": "cfbbb194-18bf-4723-a59a-8bfb2d895ea7", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false - } - ], - "siteRegistry": true - }, - { - "createdAt": "2019-11-29", - "completed": "2021-10-26", - "initiated": "2017-10-02", - "ministryContact": "KUHN DELLA", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ + }, { + "uuid": "22d1ca55-218d-44c1-bb50-a70de9a7fd58", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true }, { + "uuid": "a748a29d-133c-4324-9bc1-15a10e015478", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false + }, + { + "uuid": "11b66ab3-deb0-4a22-b871-6f3c2d2b6a14", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true } ], "siteRegistry": false }, { - "createdAt": "2018-09-11", - "completed": "2015-01-03", - "initiated": "2016-05-15", - "ministryContact": "LANGWORTH STEPHANIA", + "uuid": "5511f2a5-785a-46be-af18-117aadfd636b", + "createdAt": "2015-01-08", + "completed": "2014-12-13", + "initiated": "2014-07-13", + "ministryContact": "BERGNAUM CAROLINE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -12273,24 +14588,39 @@ ], "notationParticipants": [ { + "uuid": "9b3bf7b8-2d94-4bba-9db3-06be8f4a6047", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "uuid": "ace30237-592e-43c2-bee5-44d49f291535", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true }, { + "uuid": "8e44cde9-a6f8-4c84-88f9-720c3bcc761a", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "051775a4-1bbd-4d34-ab8f-4fdf4d106113", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true } ], "participants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2021-02-09", - "startDate": "2015-05-05", + "uuid": "f5c463bd-4641-4428-b4fa-1ced5cf6c79b", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2017-05-08", + "startDate": "2016-10-07", "notes": "", "roles": [ "ORGANIZATION" @@ -12298,94 +14628,133 @@ "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2015-09-25", - "startDate": "2020-02-05", + "uuid": "a8edbfd2-05b2-48d3-9639-b364bea399d8", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2015-01-23", + "startDate": "2021-09-06", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2019-08-14", - "startDate": "2014-11-25", + "uuid": "3d8162ff-9f88-440d-9880-dfcb2911531c", + "name": "IPSUM", + "endDate": "2014-07-05", + "startDate": "2021-06-28", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], - "siteRegistry": false + "siteRegistry": true }, { + "uuid": "9754929b-865f-42e3-8f24-f14c5cae7e4b", "name": "SHELL CANADA PRODUCTS", - "endDate": "2018-06-17", - "startDate": "2019-04-09", + "endDate": "2013-11-22", + "startDate": "2018-08-16", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": true } ], "suspectLandUses": [ { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-11-21 (described on Site Profile dated 2016-11-21)", + "uuid": "104e2611-b7c2-4edc-ae2c-5bdb951642e0", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2016-08-10 (described on Site Profile dated 2016-08-10)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { + "uuid": "cf0ec464-91a8-44e5-914d-8a7784fbaf94", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2023-02-10 (described on Site Profile dated 2023-02-10)", + "notes": "INSERTED FOR SITE PROFILE DATED 2023-02-19 (described on Site Profile dated 2023-02-19)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { + "uuid": "63269632-5097-498a-9895-3f45535e82a3", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-06-07 (described on Site Profile dated 2015-06-07)", + "notes": "INSERTED FOR SITE PROFILE DATED 2019-03-06 (described on Site Profile dated 2019-03-06)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "uuid": "2eb4e57c-e9d4-4296-954e-f49aa9f02022", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2014-11-12 (described on Site Profile dated 2014-11-12)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "uuid": "68a0a729-cb68-4c9a-993d-ae23c901cc1f", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2020-03-09 (described on Site Profile dated 2020-03-09)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], "parcelDescriptions": [ { + "uuid": "feef6c0a-1bd0-42e7-81e3-be2f96fbb468", "siteRegistry": true, - "dateNoted": "2018-03-08", - "parcelID": "15967", - "crownLandUsePIN": "16650", - "crownLandFileNumber": "18407", - "landDescription": "LOT 2 OF LOT 5 BLOCK 3 DISTRICT LOT 2 PLAN 7183" + "dateNoted": "2018-12-17", + "parcelID": "17121", + "crownLandUsePIN": "16159", + "crownLandFileNumber": "17292", + "landDescription": "LOT 5 OF LOT 5 BLOCK 5 DISTRICT LOT 1 PLAN 6027" }, { + "uuid": "aa8d1f8b-982a-4549-b5f9-76d4bd4128a5", "siteRegistry": false, - "dateNoted": "2020-03-01", - "parcelID": "18705", - "crownLandUsePIN": "17418", - "crownLandFileNumber": "18002", - "landDescription": "LOT 5 OF LOT 3 BLOCK 4 DISTRICT LOT 2 PLAN 7370" + "dateNoted": "2018-09-03", + "parcelID": "16890", + "crownLandUsePIN": "16510", + "crownLandFileNumber": "15363", + "landDescription": "LOT 5 OF LOT 1 BLOCK 2 DISTRICT LOT 1 PLAN 4091" + }, + { + "uuid": "6777d318-6348-4b0c-aac4-f90133bb227e", + "siteRegistry": true, + "dateNoted": "2016-12-18", + "parcelID": "17538", + "crownLandUsePIN": "17382", + "crownLandFileNumber": "17885", + "landDescription": "LOT 4 OF LOT 3 BLOCK 1 DISTRICT LOT 1 PLAN 5901" } ], "siteDisclosures": [ { + "uuid": "22a8ddf1-5822-4fee-b6d9-aa18afa137a1", "siteRegistry": false, - "dateReceived": "2016-09-20", - "dateCompleted": "2019-02-18", - "dateEntered": "2014-02-04", - "dateRegistrar": "2016-03-19", - "dateLocalAuthorityReceived": "2014-07-28", - "summary": "Iste maiores exercitationem repellat fuga sequi.\nQuam nemo ad odio debitis earum dicta.\nMolestiae reprehenderit deserunt fugiat praesentium temporibus earum.", - "informationUsed": "Cumque dicta architecto ab tenetur eius placeat.\nIpsa aliquid quasi a earum ipsa consequuntur commodi at.\nVero quis reiciendis nesciunt cupiditate maxime eveniet fugiat quae doloribus.", - "pastOrPresentOrders": "Voluptatibus nemo optio maxime velit expedita aliquam recusandae.", + "dateReceived": "2016-04-20", + "dateCompleted": "2021-10-14", + "dateEntered": "2018-01-21", + "dateRegistrar": "2015-01-24", + "dateLocalAuthorityReceived": "2019-12-16", + "summary": "In nulla recusandae consequuntur facilis aspernatur praesentium at.\nDolores accusamus quia accusantium voluptates nostrum voluptatem.", + "informationUsed": "Vel repellat error molestiae natus quasi explicabo perspiciatis quos repellendus.\nSoluta nobis ad illum voluptate animi nam iure ab.\nRepellendus repellat ullam accusantium expedita quas.", + "pastOrPresentOrders": "Beatae quidem ea ipsum.\nHarum quidem iure.", "commercialAndIndustrialPurposes": [ { + "uuid": "929987e2-e5fb-443d-820d-5b6acfb34e40", "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true }, { + "uuid": "bed99c66-1edb-4573-bb1b-bf92f040a731", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "uuid": "6048b47d-fd15-4c91-82a5-a2a756b254e2", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { + "uuid": "b3428d8b-62b6-4017-89f2-eddd6212d9af", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false @@ -12393,127 +14762,149 @@ ] }, { - "siteRegistry": true, - "dateReceived": "2018-10-06", - "dateCompleted": "2017-02-11", - "dateEntered": "2022-05-07", - "dateRegistrar": "2014-09-19", - "dateLocalAuthorityReceived": "2018-06-24", - "summary": "Voluptatem deserunt ducimus voluptatum atque eius.\nEnim sunt voluptatibus molestiae quis ducimus blanditiis illum dolorum laboriosam.", - "informationUsed": "Reiciendis ad at tenetur assumenda aliquid modi quasi.\nBeatae aliquam beatae.\nTempora fugiat rerum nostrum.\nPorro alias adipisci laudantium neque mollitia.\nAperiam harum amet.", - "pastOrPresentOrders": "Necessitatibus illum beatae ipsum odit minima explicabo quisquam omnis vitae.\nNobis quaerat veritatis saepe deserunt.", + "uuid": "75e0580f-ef80-4c9f-bbeb-bd121603954f", + "siteRegistry": false, + "dateReceived": "2018-02-08", + "dateCompleted": "2021-05-19", + "dateEntered": "2016-07-07", + "dateRegistrar": "2023-10-05", + "dateLocalAuthorityReceived": "2016-01-29", + "summary": "Repellat sit perferendis quod eaque quos consequatur quibusdam saepe amet.\nA dolorum accusantium expedita laudantium dolore delectus vero quaerat.", + "informationUsed": "Ullam atque quo.\nAccusamus nostrum rerum quo veritatis nulla dignissimos beatae fugiat maiores.\nInventore dolor nihil explicabo quasi.", + "pastOrPresentOrders": "Error nihil alias nostrum excepturi mollitia maxime quaerat.\nMolestias quas excepturi.", "commercialAndIndustrialPurposes": [ { + "uuid": "c71187e1-ff99-4b63-a937-671217fe24e9", "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false }, { + "uuid": "f69cd1c3-c76c-4e2e-b729-467b0a55db1e", "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false } ] } ], "activityLog": [ { - "siteRegistry": false, + "uuid": "d8135d09-3309-4401-9f73-ce24d72deea6", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "BOGAN NOVELLA", - "timestamp": "2014-12-13" + "user": "DAVIS EUGENE", + "timestamp": "2023-01-26" }, { + "uuid": "da7ac69e-6688-4d5b-b30d-f95f3cdfaa82", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "DACH RYLEE", - "timestamp": "2014-08-03" + "user": "THOMPSON KARIANNE", + "timestamp": "2016-12-06" }, { - "siteRegistry": true, + "uuid": "75670ac1-937d-41ff-ba2e-724a45a1a96c", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "YUNDT LIA", - "timestamp": "2018-09-09" + "user": "BEER TREMAINE", + "timestamp": "2019-05-10" }, { + "uuid": "1d840803-a074-41cc-8c3d-8f8f368f1897", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "KUB MAYE", - "timestamp": "2016-03-19" + "user": "ROWE ERNA", + "timestamp": "2015-04-27" }, { + "uuid": "a01e0c0d-9ae7-4762-bae4-a3ad1ed104f6", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "HAAG-HOMENICK LOWELL", - "timestamp": "2016-08-21" + "user": "GLEICHNER ELSE", + "timestamp": "2023-07-22" }, { + "uuid": "dc57ccfb-45f9-4936-a94a-b1f84b586bbf", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "HELLER EFREN", - "timestamp": "2020-04-24" + "user": "POUROS D'ANGELO", + "timestamp": "2021-10-01" }, { + "uuid": "a8d81bcc-8ce3-458e-933b-aa50bb8e0764", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "BEAHAN CHRISTINA", - "timestamp": "2021-05-04" + "user": "ZULAUF IVA", + "timestamp": "2014-03-16" }, { + "uuid": "ee1d972f-b10b-4669-a3a6-7bac9bd1c2fc", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "BAHRINGER MAFALDA", - "timestamp": "2019-03-29" + "user": "THOMPSON SANTINA", + "timestamp": "2016-03-12" }, { + "uuid": "6e5ca91d-8eb9-4c36-98cb-04f4adb62356", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "KUVALIS SHANA", - "timestamp": "2023-03-13" + "user": "WATSICA ANTONIA", + "timestamp": "2021-12-22" + }, + { + "uuid": "2e3978a2-6c7b-40ee-825a-5712a6e8cb2f", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "CREMIN AUBREY", + "timestamp": "2020-11-28" } ], "associatedSites": [ { - "dateNoted": "2016-02-09", + "uuid": "26847bfa-3011-4bab-abdb-760e4d7b777d", + "dateNoted": "2019-07-18", "notes": "", - "parcelID": "15680", - "siteID": "20492", + "parcelID": "19251", + "siteID": "17458", "siteRegistry": true }, { - "dateNoted": "2016-10-12", + "uuid": "a973601f-beda-41f4-81ca-957c33458323", + "dateNoted": "2020-09-11", "notes": "", - "parcelID": "17698", - "siteID": "17329", - "siteRegistry": true + "parcelID": "19988", + "siteID": "20314", + "siteRegistry": false } ] }, { - "uuid": "61f64713-7f63-439a-9416-43cf8abde9f2", - "siteID": 20591, - "address": "64611 Harris Estate", - "latitude": 50.4324, - "longitude": -124.5583, - "lastUpdated": "2015-10-02", - "city": "West Eleonore", - "region": "Mainland/Southwest", - "victoriaFile": "26250-20/12042", + "uuid": "d73cd116-c843-4d37-83ae-23d469855e19", + "siteID": 16364, + "address": "459 Toy Key", + "latitude": 57.8342, + "longitude": -129.0345, + "lastUpdated": "2023-10-05", + "city": "Lake Germaine", + "region": "Vancouver Island/Coast", + "victoriaFile": "26250-20/7288", "regionalFile": "N/A", "parcelIDs": [ - 1292850, - 6729834, - 2050411, - 1393984, - 5056169 + 9263470, + 8587864, + 1305087, + 1518471, + 3106710 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2020-08-15", - "completed": "2021-12-05", - "initiated": "2023-09-30", - "ministryContact": "DAUGHERTY URSULA", + "uuid": "336afaac-1adf-49ad-af64-9edf35213f0e", + "createdAt": "2023-09-11", + "completed": "2018-01-14", + "initiated": "2021-11-24", + "ministryContact": "KUHLMAN WILFREDO", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -12522,33 +14913,32 @@ ], "notationParticipants": [ { + "uuid": "ab7c269d-6b20-4764-b99c-0d92a0cf52d0", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true }, { + "uuid": "2b2fc47b-0066-4caa-9721-4811fc50f916", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false + "uuid": "51fefd2e-768b-4527-875e-2de4d29b659f", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2021-04-25", - "completed": "2020-08-21", - "initiated": "2021-07-16", - "ministryContact": "AUER CHARLEY", + "uuid": "fcf73da6-cd0f-4e4a-8926-69b87a2122be", + "createdAt": "2014-03-04", + "completed": "2018-07-12", + "initiated": "2013-11-23", + "ministryContact": "ARMSTRONG LAURINE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -12557,33 +14947,38 @@ ], "notationParticipants": [ { + "uuid": "a5b8a629-2e52-4187-9a48-ed66c41127d9", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { + "uuid": "12aa6b6a-ba0d-41c2-a0ed-d823b320cc25", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true + "role": "SUBMITTED BY", + "siteRegistry": false }, { + "uuid": "dd0f8701-1a25-48ab-b6ac-430fa9ba59ae", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false }, { + "uuid": "da4b2d0b-d2cb-4b62-b29e-baa4607ddb78", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2022-04-06", - "completed": "2016-06-18", - "initiated": "2015-08-28", - "ministryContact": "KUNDE ALBERTA", + "uuid": "5bbb254e-9cb7-427a-a257-d5ee195b70c0", + "createdAt": "2014-08-06", + "completed": "2016-04-27", + "initiated": "2018-10-28", + "ministryContact": "SCHIMMEL ALEXANNE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -12592,22 +14987,20 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { + "uuid": "51082e55-fb80-42cc-9f5b-30becd1a14a3", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "uuid": "29a47caf-7648-4e73-aa0a-ee83774e8778", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "673f096b-5629-425a-9522-651259e1ba83", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true } @@ -12615,10 +15008,11 @@ "siteRegistry": false }, { - "createdAt": "2023-01-04", - "completed": "2019-04-04", - "initiated": "2022-12-17", - "ministryContact": "BECKER JEANNE", + "uuid": "b8c0681b-e1ec-4de7-abf0-3ada19f92f21", + "createdAt": "2015-06-26", + "completed": "2015-01-25", + "initiated": "2023-10-04", + "ministryContact": "ALTENWERTH ROSLYN", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -12627,11 +15021,13 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false + "uuid": "46c0a91d-cda5-41c9-b449-b85e4bba3a90", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true }, { + "uuid": "e852be33-b3ee-421e-840c-a40838720fec", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true @@ -12642,9 +15038,21 @@ ], "participants": [ { + "uuid": "1cdd64cb-c5c7-473b-a4af-253c97a5d371", "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2022-08-20", - "startDate": "2023-08-25", + "endDate": "2017-12-22", + "startDate": "2018-02-25", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "uuid": "750cad42-8444-4c95-adcf-8a9c481234fd", + "name": "IPSUM", + "endDate": "2021-04-16", + "startDate": "2014-11-17", "notes": "", "roles": [ "EMPLOYEE" @@ -12652,84 +15060,121 @@ "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2023-09-07", - "startDate": "2019-08-18", + "uuid": "d1893a43-97f6-4f54-9e58-ca08ffa26851", + "name": "IPSUM", + "endDate": "2017-04-28", + "startDate": "2023-01-12", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": false }, { - "name": "IPSUM", - "endDate": "2019-11-01", - "startDate": "2020-09-13", + "uuid": "eed0c12c-5347-4e3d-b1d7-897467418127", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2020-07-17", + "startDate": "2021-07-29", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": true + "siteRegistry": false } ], "suspectLandUses": [ { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2023-02-27 (described on Site Profile dated 2023-02-27)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "uuid": "64727b2b-c153-4fe7-9da6-d02bacab19d9", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2013-10-15 (described on Site Profile dated 2013-10-15)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { + "uuid": "fce3ca31-596c-45a9-9bcc-93e016fd00b4", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-04-22 (described on Site Profile dated 2014-04-22)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "notes": "INSERTED FOR SITE PROFILE DATED 2020-12-08 (described on Site Profile dated 2020-12-08)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { + "uuid": "231a985a-8f5b-47fb-a138-16078b99c003", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-11-03 (described on Site Profile dated 2018-11-03)", + "notes": "INSERTED FOR SITE PROFILE DATED 2016-03-13 (described on Site Profile dated 2016-03-13)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "uuid": "77ce788f-60d5-46a0-959b-0b4b339f0b5c", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2019-06-27 (described on Site Profile dated 2019-06-27)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], "parcelDescriptions": [ { - "siteRegistry": true, - "dateNoted": "2015-03-24", - "parcelID": "17643", - "crownLandUsePIN": "17162", - "crownLandFileNumber": "18056", - "landDescription": "LOT 4 OF LOT 5 BLOCK 5 DISTRICT LOT 5 PLAN 9428" + "uuid": "ea0ae986-655c-4111-b922-15d85ed4fa0d", + "siteRegistry": false, + "dateNoted": "2018-12-30", + "parcelID": "17418", + "crownLandUsePIN": "20010", + "crownLandFileNumber": "17268", + "landDescription": "LOT 5 OF LOT 3 BLOCK 3 DISTRICT LOT 3 PLAN 7969" }, { - "siteRegistry": true, - "dateNoted": "2016-08-01", - "parcelID": "19406", - "crownLandUsePIN": "16068", - "crownLandFileNumber": "15240", - "landDescription": "LOT 1 OF LOT 3 BLOCK 5 DISTRICT LOT 2 PLAN 8217" + "uuid": "e115199f-b127-49a9-81c6-c330652a9dd6", + "siteRegistry": false, + "dateNoted": "2019-11-17", + "parcelID": "16893", + "crownLandUsePIN": "20973", + "crownLandFileNumber": "20880", + "landDescription": "LOT 3 OF LOT 3 BLOCK 2 DISTRICT LOT 3 PLAN 7162" } ], "siteDisclosures": [ { + "uuid": "8add4106-1abe-4ce5-9524-e2b76de63930", "siteRegistry": false, - "dateReceived": "2014-02-11", - "dateCompleted": "2019-12-22", - "dateEntered": "2020-01-24", - "dateRegistrar": "2015-01-14", - "dateLocalAuthorityReceived": "2019-09-11", - "summary": "Omnis quis reiciendis praesentium magnam at.", - "informationUsed": "Ducimus labore nemo enim perspiciatis quam est esse ea.\nDolores accusantium quis corrupti numquam minus.\nFacere possimus corporis veritatis totam neque.\nPossimus unde adipisci dolor fugiat molestias numquam rerum quas impedit.\nReprehenderit ullam exercitationem voluptatem.", - "pastOrPresentOrders": "Corrupti doloremque dicta.\nNumquam eligendi saepe dolores ipsam.\nPariatur est error consectetur omnis.", + "dateReceived": "2017-07-07", + "dateCompleted": "2018-11-01", + "dateEntered": "2017-10-22", + "dateRegistrar": "2015-11-07", + "dateLocalAuthorityReceived": "2022-04-20", + "summary": "Cupiditate quos iure excepturi nobis dolore odio deserunt tenetur nostrum.", + "informationUsed": "Delectus omnis suscipit soluta ex error odit.\nEst mollitia aliquid ipsam ex deleniti.\nSoluta totam magni labore ratione aut fugiat.\nVoluptatibus libero sunt numquam.\nOfficiis deleniti laborum nisi.", + "pastOrPresentOrders": "Nostrum quasi numquam.", "commercialAndIndustrialPurposes": [ { + "uuid": "4264753f-abbe-46e0-963f-d581204e3412", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true + "siteRegistry": false }, { + "uuid": "517e216a-f376-4985-97a2-08994091954a", "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true + } + ] + }, + { + "uuid": "8bb8b5af-77a4-468c-93d5-12fd1a1460da", + "siteRegistry": true, + "dateReceived": "2016-12-26", + "dateCompleted": "2020-01-11", + "dateEntered": "2020-11-22", + "dateRegistrar": "2014-02-15", + "dateLocalAuthorityReceived": "2019-12-19", + "summary": "Quidem recusandae eaque optio modi officiis nisi.", + "informationUsed": "Sunt enim ut aspernatur aspernatur inventore.\nArchitecto dignissimos architecto quod alias aperiam deleniti enim.\nLabore distinctio reprehenderit.\nEius dolores autem voluptatem inventore officia voluptate voluptate quod.", + "pastOrPresentOrders": "Doloribus numquam vel quaerat porro id vitae vel.\nDeleniti commodi distinctio eos voluptates.\nQuae perferendis omnis magni ad consectetur dignissimos molestiae sed officiis.", + "commercialAndIndustrialPurposes": [ + { + "uuid": "c75fbb26-9120-44d8-82db-4ddb65b1cf88", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false }, { + "uuid": "0971c0a2-8b98-4e01-a77a-a5715478e028", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true @@ -12739,77 +15184,114 @@ ], "activityLog": [ { + "uuid": "1421a2b1-ee25-4e2e-bbe8-fb091673cc03", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "CONN SID", - "timestamp": "2016-09-01" + "user": "WALKER KAREN", + "timestamp": "2014-12-20" }, { + "uuid": "2c99fa40-65f4-4b8f-98f1-c33b104bbeca", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "MRAZ CASIMIR", - "timestamp": "2022-03-08" + "user": "WITTING KYLEE", + "timestamp": "2020-11-26" }, { + "uuid": "457e77f6-9d09-4152-a93b-7f7a5f1cc630", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "O'HARA DARBY", - "timestamp": "2020-04-03" + "user": "WELCH ABE", + "timestamp": "2022-11-01" }, { - "siteRegistry": false, + "uuid": "d37cf53b-53e3-4c36-b937-39b5c682bd72", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "BALISTRERI WADE", + "timestamp": "2017-10-07" + }, + { + "uuid": "a7cdf63b-3177-4259-b83d-aa36b052ce33", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "HEATHCOTE TREVA", - "timestamp": "2021-11-25" + "user": "CASSIN GRIFFIN", + "timestamp": "2020-05-19" + }, + { + "uuid": "91a63365-277c-4237-b069-acc6f2be8cbd", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "LUEILWITZ COLTON", + "timestamp": "2019-01-04" }, { + "uuid": "aafa2ff8-17e0-48ae-b6c8-cef55249bae4", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "BOSCO HERTA", - "timestamp": "2014-12-09" + "user": "LEHNER KING", + "timestamp": "2023-10-01" }, { + "uuid": "d14eaf4b-50a6-423c-ab80-8cf6f906f307", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "KRIS KANE", - "timestamp": "2020-05-16" + "user": "WILKINSON ARNULFO", + "timestamp": "2018-05-16" + }, + { + "uuid": "e077c58f-e5ad-4f67-876c-8463ca8f19db", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "LYNCH ALEEN", + "timestamp": "2020-04-21" } ], "associatedSites": [ { - "dateNoted": "2015-01-13", + "uuid": "9ae06daf-9ac8-4ce7-b562-5d11ef920d87", + "dateNoted": "2023-07-16", + "notes": "", + "parcelID": "18696", + "siteID": "18416", + "siteRegistry": true + }, + { + "uuid": "59d588b7-98a4-4053-a0c6-81c0286fece9", + "dateNoted": "2019-03-15", "notes": "", - "parcelID": "16583", - "siteID": "19608", + "parcelID": "18994", + "siteID": "20313", "siteRegistry": true } ] }, { - "uuid": "84100582-1f1a-47e2-b17e-f40a279ea37f", - "siteID": 16513, - "address": "81393 Winfield Views", - "latitude": 48.6398, - "longitude": -137.2137, - "lastUpdated": "2022-04-30", - "city": "South Quinten", + "uuid": "6d000e6c-4075-4ac7-83d0-03ce6d7e603c", + "siteID": 15716, + "address": "73859 Ratke Neck", + "latitude": 50.0664, + "longitude": -135.8275, + "lastUpdated": "2014-09-02", + "city": "Audreanneview", "region": " North Coast", - "victoriaFile": "26250-20/3080", + "victoriaFile": "26250-20/3960", "regionalFile": "N/A", "parcelIDs": [ - 7886020, - 8958791, - 1349024, - 4620953, - 7201295 + 1798542, + 8887460, + 5561713, + 5017434, + 8947624 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2014-04-19", - "completed": "2020-02-24", - "initiated": "2017-12-13", - "ministryContact": "ZIEME JEFF", + "uuid": "15b3c15e-50b7-4169-b64b-b059c688cc4f", + "createdAt": "2021-10-08", + "completed": "2018-11-11", + "initiated": "2022-03-14", + "ministryContact": "JAKUBOWSKI BRYCEN", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -12818,88 +15300,32 @@ ], "notationParticipants": [ { + "uuid": "af4dc956-35e1-4e75-b48e-0438c44f6832", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true - } - ], - "siteRegistry": true - }, - { - "createdAt": "2019-09-06", - "completed": "2021-12-17", - "initiated": "2022-02-10", - "ministryContact": "ZIEME BENEDICT", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", "siteRegistry": false }, { + "uuid": "c517dc92-7d05-4257-a5b4-29fdf8910bf9", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true - } - ], - "siteRegistry": false - }, - { - "createdAt": "2015-11-22", - "completed": "2020-08-17", - "initiated": "2022-11-08", - "ministryContact": "LEMKE ELTA", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false }, { + "uuid": "0d73dbf0-21a4-44ab-84f7-25e849bc82a0", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true } ], "siteRegistry": true }, { - "createdAt": "2019-09-04", - "completed": "2020-01-27", - "initiated": "2019-04-28", - "ministryContact": "FERRY CLINT", + "uuid": "37b5880a-8203-4422-b20c-f54875c45504", + "createdAt": "2018-02-24", + "completed": "2016-02-16", + "initiated": "2018-09-24", + "ministryContact": "GERLACH ULICES", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -12908,29 +15334,28 @@ ], "notationParticipants": [ { + "uuid": "1f6a2382-bbbb-4a72-83f8-9ce2f55692e1", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true }, { + "uuid": "fcd35463-6069-41bf-a1bf-f7e5a118ed7c", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false }, { + "uuid": "b8639f94-e7cd-483f-81bd-0eeac14f0a73", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true }, { + "uuid": "3a3b5547-f350-40c3-a252-625536190789", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true + "role": "REQUESTED BY", + "siteRegistry": false } ], "siteRegistry": false @@ -12938,253 +15363,324 @@ ], "participants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2022-04-23", - "startDate": "2018-06-04", + "uuid": "af123c3c-663f-48de-b536-8ffa008400c8", + "name": "IPSUM", + "endDate": "2013-11-21", + "startDate": "2013-11-30", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true }, { - "name": "IPSUM", - "endDate": "2014-11-14", - "startDate": "2019-07-11", + "uuid": "ab64fdf6-8c58-4f18-9ece-84e1708917b8", + "name": "AMET, DOLOR SIT", + "endDate": "2015-06-10", + "startDate": "2017-03-11", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": true + "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2022-03-05", - "startDate": "2019-11-21", + "uuid": "bc444cb2-3cd8-4c4a-9e5d-7b72b62dba5b", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2017-02-02", + "startDate": "2022-10-22", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2021-04-01", - "startDate": "2016-02-15", + "uuid": "cd9952d1-8485-4af9-b7f1-6a0fb6d75afd", + "name": "IPSUM", + "endDate": "2020-07-08", + "startDate": "2015-02-18", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": true + "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2022-09-26", - "startDate": "2019-04-21", + "uuid": "af255570-1189-4399-9da9-5d0587389cc8", + "name": "AMET, DOLOR SIT", + "endDate": "2022-01-29", + "startDate": "2017-09-27", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": true + "siteRegistry": false } ], "suspectLandUses": [ { + "uuid": "28c8b8e3-a78d-4c5a-ab91-f8a41cfe1a06", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2017-10-23 (described on Site Profile dated 2017-10-23)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "uuid": "087e9e13-f803-4fea-a48b-bbac1a6846a2", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2020-11-27 (described on Site Profile dated 2020-11-27)", + "notes": "INSERTED FOR SITE PROFILE DATED 2015-03-26 (described on Site Profile dated 2015-03-26)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-11-04 (described on Site Profile dated 2017-11-04)", + "uuid": "423c0099-e629-4fd7-b1f5-f397306c0e94", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2018-04-27 (described on Site Profile dated 2018-04-27)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-11-05 (described on Site Profile dated 2018-11-05)", + "uuid": "d1781651-fb86-4c25-b34b-59901251a2a6", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2013-12-01 (described on Site Profile dated 2013-12-01)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-11-19 (described on Site Profile dated 2021-11-19)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "uuid": "173efd89-fc1c-493f-a6a1-7c536d0bde8d", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2016-09-23 (described on Site Profile dated 2016-09-23)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], "parcelDescriptions": [ { + "uuid": "53264bd8-683e-4aa9-9aba-38c4d62b4639", "siteRegistry": false, - "dateNoted": "2015-02-21", - "parcelID": "15245", - "crownLandUsePIN": "16886", - "crownLandFileNumber": "18740", - "landDescription": "LOT 4 OF LOT 2 BLOCK 1 DISTRICT LOT 5 PLAN 5039" + "dateNoted": "2017-10-16", + "parcelID": "17803", + "crownLandUsePIN": "19893", + "crownLandFileNumber": "15377", + "landDescription": "LOT 3 OF LOT 5 BLOCK 2 DISTRICT LOT 5 PLAN 6373" + }, + { + "uuid": "d6762bef-7e13-43ca-902a-96b5cf8330d8", + "siteRegistry": true, + "dateNoted": "2019-12-14", + "parcelID": "15982", + "crownLandUsePIN": "19251", + "crownLandFileNumber": "17615", + "landDescription": "LOT 4 OF LOT 4 BLOCK 2 DISTRICT LOT 4 PLAN 9248" }, { + "uuid": "0e9c5e14-dd1d-425c-8355-b18ea97850c7", + "siteRegistry": true, + "dateNoted": "2015-11-21", + "parcelID": "15576", + "crownLandUsePIN": "19016", + "crownLandFileNumber": "20411", + "landDescription": "LOT 1 OF LOT 5 BLOCK 1 DISTRICT LOT 5 PLAN 5032" + }, + { + "uuid": "b93756a8-215c-43fb-8e59-130da14291f3", + "siteRegistry": true, + "dateNoted": "2016-02-27", + "parcelID": "15312", + "crownLandUsePIN": "20618", + "crownLandFileNumber": "18572", + "landDescription": "LOT 2 OF LOT 2 BLOCK 2 DISTRICT LOT 2 PLAN 9062" + }, + { + "uuid": "10f2e35b-8942-4178-9339-dd912241a378", "siteRegistry": false, - "dateNoted": "2016-11-15", - "parcelID": "18417", - "crownLandUsePIN": "16428", - "crownLandFileNumber": "17374", - "landDescription": "LOT 3 OF LOT 1 BLOCK 4 DISTRICT LOT 1 PLAN 4541" + "dateNoted": "2019-03-23", + "parcelID": "17171", + "crownLandUsePIN": "19458", + "crownLandFileNumber": "17575", + "landDescription": "LOT 2 OF LOT 1 BLOCK 3 DISTRICT LOT 3 PLAN 9394" } ], "siteDisclosures": [ { + "uuid": "e45c7152-854d-49e0-b5f9-a4a5f6c8ea50", "siteRegistry": true, - "dateReceived": "2015-01-18", - "dateCompleted": "2022-06-19", - "dateEntered": "2016-08-19", - "dateRegistrar": "2019-09-11", - "dateLocalAuthorityReceived": "2022-01-25", - "summary": "Explicabo neque sunt.", - "informationUsed": "Nostrum corrupti labore sunt soluta assumenda facere dolorem quod recusandae.\nPerspiciatis dolor officiis commodi fugiat illo modi voluptatibus sapiente.\nDolorum numquam omnis reiciendis pariatur.", - "pastOrPresentOrders": "Pariatur voluptatem amet fugiat.\nQuae veniam rem esse dolores quos rerum velit iusto.", + "dateReceived": "2014-05-13", + "dateCompleted": "2015-03-31", + "dateEntered": "2016-06-20", + "dateRegistrar": "2020-02-04", + "dateLocalAuthorityReceived": "2023-04-09", + "summary": "Voluptate iure corporis eveniet.\nDignissimos nam consequatur officia itaque maxime.\nEsse veniam modi sed.", + "informationUsed": "Ex laborum atque deserunt.\nQuisquam laborum natus excepturi nihil atque laboriosam facere.\nProvident laborum nemo unde laboriosam.\nAliquid dolores eius voluptates dolore debitis nostrum molestiae nulla quibusdam.\nSit ex velit ipsam rerum.", + "pastOrPresentOrders": "Esse sint exercitationem.\nIure magnam minus at ab veniam.\nAccusamus sit praesentium fugit voluptatum voluptates rerum.", "commercialAndIndustrialPurposes": [ { + "uuid": "d234cf33-baf6-45ce-a11c-0ea17760381f", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, { - "scheduleReference": "F2*", + "uuid": "bc3220d9-6ecd-4ef2-aa1b-0eec68528508", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, { - "scheduleReference": "F1*", + "uuid": "84888de2-dd76-42ae-9779-ebc1a72fd5b8", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false - }, - { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true } ] }, { - "siteRegistry": true, - "dateReceived": "2022-01-22", - "dateCompleted": "2021-04-04", - "dateEntered": "2014-10-31", - "dateRegistrar": "2015-05-26", - "dateLocalAuthorityReceived": "2021-05-20", - "summary": "Quidem vitae eveniet mollitia distinctio dolorem consequuntur accusamus sed explicabo.\nVitae sed non quis iusto impedit omnis earum ab quibusdam.", - "informationUsed": "Nulla et id praesentium magni repellendus in repellat est.\nOptio alias quam et numquam.\nMagnam perspiciatis fugit corrupti a consequuntur magnam doloremque itaque pariatur.", - "pastOrPresentOrders": "Perspiciatis ad ipsa.\nReiciendis adipisci placeat molestiae reprehenderit rerum laborum iure molestiae ratione.\nNostrum error voluptatibus nulla tenetur laborum.", + "uuid": "b74942a5-1165-41ec-8c77-c24694baac15", + "siteRegistry": false, + "dateReceived": "2023-06-14", + "dateCompleted": "2018-11-15", + "dateEntered": "2019-11-07", + "dateRegistrar": "2017-03-11", + "dateLocalAuthorityReceived": "2016-01-15", + "summary": "Error eius quam est quaerat quisquam ipsum soluta soluta.", + "informationUsed": "Facilis odit quasi labore natus nostrum placeat.\nId nemo soluta corrupti itaque libero mollitia molestiae eaque harum.\nProvident et sapiente eaque minima reprehenderit assumenda.", + "pastOrPresentOrders": "Quidem autem laboriosam.\nQuo nesciunt culpa quasi dignissimos commodi maxime dolores tempore delectus.", "commercialAndIndustrialPurposes": [ { - "scheduleReference": "F2*", + "uuid": "88ea4935-5a79-47ba-90ab-e892a93f51cd", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false }, { + "uuid": "d3b81de0-b9e8-4a8f-8c38-83e3f2bc1cc0", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false + }, + { + "uuid": "5a723bab-1393-4a7e-b0bd-57e55bc94e23", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true } ] } ], "activityLog": [ { - "siteRegistry": true, + "uuid": "b23919b3-9a79-4d94-8ae2-a62f8148c5a2", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "PACOCHA KELLY", - "timestamp": "2020-01-13" + "user": "DOYLE TWILA", + "timestamp": "2022-01-03" }, { + "uuid": "28fe16e3-d720-4b6a-9642-911b1a160a4d", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "WEHNER-PFANNERSTILL FRANCESCA", - "timestamp": "2015-07-03" + "user": "COLE SIERRA", + "timestamp": "2019-07-23" }, { - "siteRegistry": true, + "uuid": "8b5511ae-860a-4ca6-8ca6-6890e594322b", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "DICKENS KESHAWN", - "timestamp": "2016-04-22" + "user": "SCHMITT KAYLAH", + "timestamp": "2020-07-11" }, { - "siteRegistry": true, + "uuid": "d5f6fdee-11f9-467b-b325-86ac6729645a", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "HERMANN KEIRA", - "timestamp": "2020-12-22" + "user": "MANTE FURMAN", + "timestamp": "2020-06-03" }, { + "uuid": "5e0df7c4-967a-4716-ad54-c635bf7f235a", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "DUBUQUE LOWELL", - "timestamp": "2019-03-25" + "user": "LEMKE AYLIN", + "timestamp": "2014-05-14" + }, + { + "uuid": "ac5e189c-772b-4ac6-8e49-566dec5f4658", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "ERNSER HILDEGARD", + "timestamp": "2019-03-07" }, { + "uuid": "dc5e6e94-d0a9-4c36-81c9-2a92c2c15cf6", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "HARTMANN YASMINE", - "timestamp": "2016-08-10" + "user": "JOHNSON WILHELM", + "timestamp": "2019-04-14" }, { + "uuid": "53ba6a18-2d13-4f7e-8da2-ad555019310e", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "BREKKE JALEN", - "timestamp": "2020-03-07" + "user": "LEFFLER MARCELLA", + "timestamp": "2015-09-15" }, { + "uuid": "06cc847c-fb12-438d-8a5e-82d7169f6ba1", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "ZULAUF JAYLAN", - "timestamp": "2021-11-27" + "user": "HALEY JOYCE", + "timestamp": "2014-08-13" } ], "associatedSites": [ { - "dateNoted": "2019-02-21", + "uuid": "6acceea8-22ca-4297-99f8-7168b3c10c75", + "dateNoted": "2017-05-10", "notes": "", - "parcelID": "20780", - "siteID": "20787", + "parcelID": "20216", + "siteID": "18934", "siteRegistry": false }, { - "dateNoted": "2020-11-29", + "uuid": "c4e0abbe-a525-49a6-a513-91f073ce174a", + "dateNoted": "2014-10-17", "notes": "", - "parcelID": "18073", - "siteID": "15789", - "siteRegistry": false + "parcelID": "16679", + "siteID": "20469", + "siteRegistry": true }, { - "dateNoted": "2017-06-25", + "uuid": "fbabd7b0-b9d1-42ba-9ff3-910e7ea0fe34", + "dateNoted": "2017-04-02", "notes": "", - "parcelID": "20748", - "siteID": "19391", + "parcelID": "18143", + "siteID": "17688", "siteRegistry": false } ] }, { - "uuid": "1604052f-98ec-41d1-b85c-d3814dd34a7d", - "siteID": 18405, - "address": "50585 Cleta Harbor", - "latitude": 54.8612, - "longitude": -128.4793, - "lastUpdated": "2013-12-02", - "city": "Hayleyport", + "uuid": "899790a7-9301-4453-9d3b-153a97e18876", + "siteID": 18806, + "address": "69015 Heidenreich Courts", + "latitude": 56.4587, + "longitude": -122.2045, + "lastUpdated": "2014-05-03", + "city": "Priceboro", "region": "Mainland/Southwest", - "victoriaFile": "26250-20/10633", + "victoriaFile": "26250-20/17922", "regionalFile": "N/A", "parcelIDs": [ - 6016161, - 5172104, - 9197841, - 2925991, - 5645194 + 3306115, + 7139359, + 4471214, + 7591304, + 5727774 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2023-07-31", - "completed": "2015-05-10", - "initiated": "2019-12-25", - "ministryContact": "BOSCO-KERLUKE MARIBEL", + "uuid": "1a4156d5-b476-4039-ac30-939b01769536", + "createdAt": "2019-02-27", + "completed": "2019-01-19", + "initiated": "2020-07-16", + "ministryContact": "JOHNSTON ROSARIO", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -13193,23 +15689,26 @@ ], "notationParticipants": [ { + "uuid": "764ce9da-5c99-45c1-b1f4-6085a1ae376e", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "b387419d-0863-4d24-bf51-d6ad8944157a", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false } ], "siteRegistry": true }, { - "createdAt": "2015-04-07", - "completed": "2020-01-21", - "initiated": "2019-06-12", - "ministryContact": "LEHNER CONRAD", + "uuid": "f05db0ea-1909-4c41-b1ea-0ca0ffc131f2", + "createdAt": "2014-02-18", + "completed": "2018-10-24", + "initiated": "2014-11-02", + "ministryContact": "CREMIN KOLBY", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -13218,24 +15717,96 @@ ], "notationParticipants": [ { + "uuid": "bf3417a3-6435-4d81-a693-659ee4284f07", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "bf7a0399-ca97-4f68-9743-fb76245aee92", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": false }, { + "uuid": "cfdfd5eb-4946-425a-b2d3-fdee75301d73", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "685b67d0-04f5-411d-9344-d310bc638718", "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "cc5e8780-9170-41c1-b4a4-864a319106c5", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true + }, + { + "uuid": "15e26aa0-c5b5-4ff3-b550-372919ca96b8", + "createdAt": "2019-12-20", + "completed": "2018-06-27", + "initiated": "2022-10-28", + "ministryContact": "HYATT SETH", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "uuid": "2e16a579-dc14-4130-bff4-7cf9e570b9d9", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "uuid": "377384f4-d141-4d87-92dd-65a834284fea", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "b7834718-77e6-488e-b4af-b1cc05d3f2bf", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "79e9417d-cc77-4bd8-9976-c30c80e2377a", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true } ], "participants": [ { - "name": "AMET, DOLOR SIT", - "endDate": "2021-11-22", - "startDate": "2016-05-11", + "uuid": "b9a7559a-ed3b-40ae-94ed-bd3ea0a5fcea", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2016-10-02", + "startDate": "2014-05-21", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "uuid": "fb09a899-aa56-4473-9812-52ef579aefc8", + "name": "IPSUM", + "endDate": "2021-04-19", + "startDate": "2019-03-30", "notes": "", "roles": [ "EMPLOYEE" @@ -13243,202 +15814,223 @@ "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2022-12-02", - "startDate": "2014-09-01", + "uuid": "dc3a6ea5-4a2a-41ee-af27-a60183e689e2", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2018-10-17", + "startDate": "2020-12-01", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": false } ], "suspectLandUses": [ { + "uuid": "2d51b75c-ba72-4db9-a093-ce95e133e583", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-07-16 (described on Site Profile dated 2016-07-16)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "notes": "INSERTED FOR SITE PROFILE DATED 2014-12-28 (described on Site Profile dated 2014-12-28)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { + "uuid": "a664c308-81d9-48fe-964d-477a701cc74b", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-03-28 (described on Site Profile dated 2016-03-28)", + "notes": "INSERTED FOR SITE PROFILE DATED 2017-07-10 (described on Site Profile dated 2017-07-10)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-07-28 (described on Site Profile dated 2018-07-28)", + "uuid": "516022de-7d9a-40d3-b3f3-27faa5402d65", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2018-08-04 (described on Site Profile dated 2018-08-04)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { + "uuid": "16781193-aa48-4ca8-8a50-294ef31eb819", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-08-09 (described on Site Profile dated 2018-08-09)", + "notes": "INSERTED FOR SITE PROFILE DATED 2021-06-21 (described on Site Profile dated 2021-06-21)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "uuid": "0499830a-49e8-4350-be38-a9e9678c5a2d", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2017-05-13 (described on Site Profile dated 2017-05-13)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], "parcelDescriptions": [ { - "siteRegistry": false, - "dateNoted": "2018-06-18", - "parcelID": "15580", - "crownLandUsePIN": "16948", - "crownLandFileNumber": "15194", - "landDescription": "LOT 1 OF LOT 1 BLOCK 2 DISTRICT LOT 1 PLAN 8456" + "uuid": "74798687-72cd-4847-85b7-10adb97b75e7", + "siteRegistry": true, + "dateNoted": "2022-10-02", + "parcelID": "16498", + "crownLandUsePIN": "20020", + "crownLandFileNumber": "16057", + "landDescription": "LOT 5 OF LOT 4 BLOCK 4 DISTRICT LOT 2 PLAN 9280" }, { - "siteRegistry": true, - "dateNoted": "2015-10-24", - "parcelID": "16333", - "crownLandUsePIN": "17233", - "crownLandFileNumber": "20670", - "landDescription": "LOT 3 OF LOT 1 BLOCK 5 DISTRICT LOT 1 PLAN 6224" + "uuid": "05d30db0-c62a-4bff-97d2-cd630c2630f7", + "siteRegistry": false, + "dateNoted": "2022-03-31", + "parcelID": "16644", + "crownLandUsePIN": "19009", + "crownLandFileNumber": "18645", + "landDescription": "LOT 5 OF LOT 5 BLOCK 3 DISTRICT LOT 4 PLAN 9468" }, { - "siteRegistry": true, - "dateNoted": "2020-07-31", - "parcelID": "16918", - "crownLandUsePIN": "17738", - "crownLandFileNumber": "17099", - "landDescription": "LOT 2 OF LOT 2 BLOCK 1 DISTRICT LOT 4 PLAN 7401" - }, - { - "siteRegistry": true, - "dateNoted": "2015-01-22", - "parcelID": "16158", - "crownLandUsePIN": "20658", - "crownLandFileNumber": "18551", - "landDescription": "LOT 1 OF LOT 1 BLOCK 5 DISTRICT LOT 5 PLAN 5734" + "uuid": "b15f1c52-851a-4365-a5a0-cfe129ed37c2", + "siteRegistry": false, + "dateNoted": "2023-10-05", + "parcelID": "20727", + "crownLandUsePIN": "18916", + "crownLandFileNumber": "17432", + "landDescription": "LOT 4 OF LOT 3 BLOCK 3 DISTRICT LOT 5 PLAN 5747" }, { + "uuid": "5c9dd2f6-ad70-4af1-8563-6d0a99487f62", "siteRegistry": false, - "dateNoted": "2017-04-09", - "parcelID": "20668", - "crownLandUsePIN": "15757", - "crownLandFileNumber": "17567", - "landDescription": "LOT 5 OF LOT 3 BLOCK 1 DISTRICT LOT 1 PLAN 8705" + "dateNoted": "2022-02-18", + "parcelID": "18110", + "crownLandUsePIN": "20443", + "crownLandFileNumber": "20664", + "landDescription": "LOT 5 OF LOT 2 BLOCK 3 DISTRICT LOT 2 PLAN 3209" } ], "siteDisclosures": [ { + "uuid": "06745b7b-e5bd-4fff-a46a-8c90154e9c4e", "siteRegistry": true, - "dateReceived": "2023-03-16", - "dateCompleted": "2018-05-19", - "dateEntered": "2014-09-21", - "dateRegistrar": "2021-02-04", - "dateLocalAuthorityReceived": "2020-10-31", - "summary": "Minima temporibus neque delectus occaecati deleniti debitis minus omnis consequatur.", - "informationUsed": "Quia minima nulla quam fugit beatae vel.\nAnimi explicabo nisi numquam.\nAspernatur labore earum eos quod vel repellendus accusamus fuga.\nSoluta cum dolor iusto modi nesciunt distinctio porro illo.", - "pastOrPresentOrders": "Blanditiis incidunt eaque cum reprehenderit qui.\nQuae sed corporis saepe nihil ratione numquam pariatur nam.\nSit incidunt est veniam ratione.", + "dateReceived": "2015-05-19", + "dateCompleted": "2016-12-27", + "dateEntered": "2019-06-13", + "dateRegistrar": "2014-04-16", + "dateLocalAuthorityReceived": "2016-04-30", + "summary": "Dolorum facilis saepe.\nMollitia voluptas aspernatur magni itaque fugit sequi minima tenetur.", + "informationUsed": "Quaerat placeat deserunt reiciendis.\nQuae maxime quos commodi ipsa.\nEius et repellendus ratione labore explicabo eos culpa placeat ad.\nAccusantium voluptate incidunt reiciendis.\nVeniam voluptas repellendus unde consequatur ratione tempora impedit.", + "pastOrPresentOrders": "Hic dicta earum sequi esse numquam magni tempore explicabo.", "commercialAndIndustrialPurposes": [ { + "uuid": "2774c584-61ef-40c7-8440-49f54d1db6c9", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { + "uuid": "ad2ecf35-836f-4dde-aea9-4a26732f6899", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false + "siteRegistry": true }, { - "scheduleReference": "F1*", + "uuid": "f6dffc41-e226-4ede-b0c2-70819fc4f1b8", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true + "siteRegistry": false } ] } ], "activityLog": [ { + "uuid": "b23cb6a7-5a9e-49a7-96d0-dde238475778", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "RUNOLFSDOTTIR ROSIE", - "timestamp": "2013-10-29" + "user": "SCHROEDER OPHELIA", + "timestamp": "2016-03-26" }, { - "siteRegistry": true, + "uuid": "fec8be69-53d7-47a2-9107-77c0f4bd8636", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "EMMERICH KAREEM", - "timestamp": "2020-04-05" + "user": "CASSIN CHADRICK", + "timestamp": "2022-03-05" }, { + "uuid": "9b35be97-9206-4692-b895-e6a3fd060831", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "YOST ALYCE", - "timestamp": "2016-09-05" + "user": "RUNOLFSDOTTIR CRAIG", + "timestamp": "2021-10-26" }, { + "uuid": "f550e17a-9001-4050-ab35-07430df5fe79", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "WISOZK ANTONINA", - "timestamp": "2021-12-01" + "user": "MANTE LEORA", + "timestamp": "2020-08-26" }, { + "uuid": "5ec2c222-fdcb-42b6-891f-77a56a8d5f0d", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "RICE NOEMIE", - "timestamp": "2019-12-25" + "user": "QUITZON PARIS", + "timestamp": "2020-06-03" }, { + "uuid": "0a7cf69f-4e0f-4f23-b5a1-678b8c16a0de", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "HUEL CORBIN", - "timestamp": "2019-05-24" + "user": "TORPHY RAY", + "timestamp": "2020-12-25" }, { - "siteRegistry": true, + "uuid": "ffc1a39f-018b-416e-aadf-a019345d9217", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "KUNDE EDWINA", + "timestamp": "2014-08-06" + }, + { + "uuid": "2918db27-f97e-4e1c-998d-226994bf2637", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "HALVORSON TOY", - "timestamp": "2020-09-06" + "user": "HALEY JAYDE", + "timestamp": "2017-12-16" }, { + "uuid": "de1e5700-4da8-4a31-a003-39aa989166f7", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "BLANDA JAYDON", - "timestamp": "2014-03-22" + "user": "MCDERMOTT SABRYNA", + "timestamp": "2016-05-08" } ], "associatedSites": [ { - "dateNoted": "2019-05-21", + "uuid": "0fa6ae5b-6eeb-4892-b3c4-a78cca9381e9", + "dateNoted": "2015-08-26", "notes": "", - "parcelID": "20791", - "siteID": "15681", + "parcelID": "17270", + "siteID": "19973", "siteRegistry": false - }, - { - "dateNoted": "2021-03-07", - "notes": "", - "parcelID": "19191", - "siteID": "15837", - "siteRegistry": true } ] }, { - "uuid": "b602b457-e431-49b8-84e7-ad2a44233882", - "siteID": 16677, - "address": "22334 Micheal Oval", - "latitude": 57.9209, - "longitude": -134.4915, - "lastUpdated": "2021-10-11", - "city": "Lilybury", - "region": "Thompson-Okanagan", - "victoriaFile": "26250-20/1433", + "uuid": "10817e74-1878-4371-a37f-920113dfe082", + "siteID": 18927, + "address": "559 Ludwig Lock", + "latitude": 51.9329, + "longitude": -128.4474, + "lastUpdated": "2022-08-12", + "city": "Lorainemouth", + "region": "Kootenay", + "victoriaFile": "26250-20/13395", "regionalFile": "N/A", "parcelIDs": [ - 2965724, - 5140652, - 6907292, - 5601938, - 4740447 + 2412028, + 9298532, + 4150126, + 9113654, + 4352837 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2017-01-12", - "completed": "2014-10-01", - "initiated": "2017-11-24", - "ministryContact": "BOTSFORD CORDELL", + "uuid": "65252589-5a7d-48dc-8181-20b2912e9d21", + "createdAt": "2014-10-07", + "completed": "2021-12-30", + "initiated": "2018-12-28", + "ministryContact": "WEHNER NELLE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -13447,28 +16039,38 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true + "uuid": "1c4557be-868d-4a90-9529-01a2dfeb3d58", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false }, { + "uuid": "8f1ce9f0-943e-4d36-82c3-c6af9d6a8e97", "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "uuid": "80e912f5-2741-42e5-9af7-2dd50063e6d7", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { + "uuid": "5761f9c0-3db5-4512-a0c5-0c441be41a56", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2016-06-03", - "completed": "2021-08-26", - "initiated": "2019-06-04", - "ministryContact": "VEUM STEPHEN", + "uuid": "d68d4b9b-7a6c-4391-bc90-e8ee634d30f9", + "createdAt": "2017-11-13", + "completed": "2023-02-27", + "initiated": "2021-12-19", + "ministryContact": "KSHLERIN HATTIE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -13477,33 +16079,26 @@ ], "notationParticipants": [ { + "uuid": "1cd31f47-d882-4af6-bde1-32026af5e1e2", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { + "uuid": "2e321043-978c-445b-bc46-70559febfe72", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true } ], "siteRegistry": true }, { - "createdAt": "2023-01-18", - "completed": "2022-02-11", - "initiated": "2021-06-12", - "ministryContact": "SCHULIST TATYANA", + "uuid": "2563bad0-2c6b-4658-9ada-992780b1c75c", + "createdAt": "2015-01-09", + "completed": "2019-06-06", + "initiated": "2022-05-12", + "ministryContact": "KAUTZER ELLIOTT", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -13512,242 +16107,277 @@ ], "notationParticipants": [ { + "uuid": "1b5c4bb0-b5a9-4975-84ae-5609c958bd2f", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true }, { + "uuid": "0e807858-ce87-48db-b3f8-8f09a1b0d552", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "uuid": "d517455f-7677-4133-b03e-a619afaf8559", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", "siteRegistry": false }, { + "uuid": "b3e54139-5368-4e95-ad5d-e467e738b1c2", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "uuid": "b440d420-e778-4bfa-b374-b097e02a8c23", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true } ], "participants": [ { - "name": "AMET, DOLOR SIT", - "endDate": "2021-06-28", - "startDate": "2014-10-07", + "uuid": "c467cfcb-a192-438c-a878-72d74672a4f5", + "name": "IPSUM", + "endDate": "2014-08-31", + "startDate": "2022-08-10", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": false + "siteRegistry": true }, { + "uuid": "03509552-a94f-4d06-b702-e6ec4a935550", "name": "AMET, DOLOR SIT", - "endDate": "2014-04-26", - "startDate": "2016-06-04", + "endDate": "2019-04-05", + "startDate": "2018-08-03", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": false } ], "suspectLandUses": [ { + "uuid": "c10c19ce-56e9-4039-9e68-f908a8002b37", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-04-15 (described on Site Profile dated 2017-04-15)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "notes": "INSERTED FOR SITE PROFILE DATED 2014-03-06 (described on Site Profile dated 2014-03-06)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-01-12 (described on Site Profile dated 2018-01-12)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "uuid": "0da9f2e0-7951-4d82-9267-0eb8b678640a", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2018-02-28 (described on Site Profile dated 2018-02-28)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { + "uuid": "97d1d0ca-23e6-4a76-ac6d-e87e0e41446d", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-08-21 (described on Site Profile dated 2018-08-21)", + "notes": "INSERTED FOR SITE PROFILE DATED 2015-04-18 (described on Site Profile dated 2015-04-18)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], "parcelDescriptions": [ { - "siteRegistry": false, - "dateNoted": "2016-02-28", - "parcelID": "19608", - "crownLandUsePIN": "19152", - "crownLandFileNumber": "20124", - "landDescription": "LOT 2 OF LOT 1 BLOCK 5 DISTRICT LOT 2 PLAN 6101" - }, - { + "uuid": "111f3aa0-d9db-493f-931c-ab23b3d8cdb2", "siteRegistry": true, - "dateNoted": "2020-07-05", - "parcelID": "17212", - "crownLandUsePIN": "18628", - "crownLandFileNumber": "15978", - "landDescription": "LOT 3 OF LOT 2 BLOCK 3 DISTRICT LOT 4 PLAN 6618" + "dateNoted": "2023-03-17", + "parcelID": "16235", + "crownLandUsePIN": "16154", + "crownLandFileNumber": "20863", + "landDescription": "LOT 4 OF LOT 1 BLOCK 4 DISTRICT LOT 5 PLAN 4736" }, { - "siteRegistry": false, - "dateNoted": "2022-07-24", - "parcelID": "20321", - "crownLandUsePIN": "18682", - "crownLandFileNumber": "16110", - "landDescription": "LOT 5 OF LOT 4 BLOCK 5 DISTRICT LOT 2 PLAN 7939" + "uuid": "f5b52fd5-dbab-4f73-8ffa-888ee97b03b8", + "siteRegistry": true, + "dateNoted": "2021-06-26", + "parcelID": "17353", + "crownLandUsePIN": "17884", + "crownLandFileNumber": "18504", + "landDescription": "LOT 5 OF LOT 4 BLOCK 5 DISTRICT LOT 1 PLAN 8995" }, { + "uuid": "7d43c3db-2f69-4131-a75d-553a1d7513bc", "siteRegistry": false, - "dateNoted": "2019-03-24", - "parcelID": "19049", - "crownLandUsePIN": "16845", - "crownLandFileNumber": "17955", - "landDescription": "LOT 1 OF LOT 1 BLOCK 5 DISTRICT LOT 4 PLAN 7287" + "dateNoted": "2023-05-09", + "parcelID": "18871", + "crownLandUsePIN": "20551", + "crownLandFileNumber": "17616", + "landDescription": "LOT 3 OF LOT 3 BLOCK 3 DISTRICT LOT 3 PLAN 4255" }, { + "uuid": "ae913fc3-8179-4882-80e4-680e31f80218", "siteRegistry": true, - "dateNoted": "2014-07-06", - "parcelID": "16588", - "crownLandUsePIN": "19448", - "crownLandFileNumber": "18803", - "landDescription": "LOT 2 OF LOT 4 BLOCK 1 DISTRICT LOT 5 PLAN 5158" + "dateNoted": "2021-06-14", + "parcelID": "20577", + "crownLandUsePIN": "17449", + "crownLandFileNumber": "18387", + "landDescription": "LOT 2 OF LOT 2 BLOCK 5 DISTRICT LOT 1 PLAN 5621" } ], "siteDisclosures": [ { - "siteRegistry": true, - "dateReceived": "2021-11-15", - "dateCompleted": "2018-03-13", - "dateEntered": "2016-07-13", - "dateRegistrar": "2014-12-07", - "dateLocalAuthorityReceived": "2015-02-06", - "summary": "Rerum illum corrupti.\nFuga velit magni delectus quaerat natus fuga.", - "informationUsed": "Amet illo recusandae in.\nCorrupti at dicta sint voluptate minus quos quasi atque.\nOptio consequuntur officia.\nQuae est placeat labore officia dolore.\nLaudantium facilis dolorem.", - "pastOrPresentOrders": "Ullam vel quia possimus dicta.", + "uuid": "998e95be-a0c0-4aae-879d-02b85e5701fd", + "siteRegistry": false, + "dateReceived": "2020-05-02", + "dateCompleted": "2021-01-26", + "dateEntered": "2016-07-15", + "dateRegistrar": "2022-05-17", + "dateLocalAuthorityReceived": "2018-02-17", + "summary": "Porro ipsa iusto expedita molestias.\nIllum tenetur officiis.", + "informationUsed": "Facere exercitationem quod perferendis vel fugit.\nRecusandae commodi cumque veritatis consectetur sit repellendus optio eaque.\nMagnam tenetur commodi.\nAperiam consequuntur repudiandae doloremque consequuntur dolores sunt est ullam distinctio.\nBeatae voluptates laborum.", + "pastOrPresentOrders": "Eligendi quisquam ipsum numquam corrupti maxime a cumque eum.\nDucimus unde magni aperiam quasi.", "commercialAndIndustrialPurposes": [ { + "uuid": "97ba93da-a25f-4559-a326-0a6ef4eab674", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "uuid": "0faf4e24-3866-4c5b-a8ad-b7d27657b297", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { + "uuid": "f84a35c2-af25-4868-89ba-de44a3cf6f98", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false + } + ] + }, + { + "uuid": "b18cc930-3153-44b0-a9cd-b3cee40fffae", + "siteRegistry": true, + "dateReceived": "2020-01-13", + "dateCompleted": "2022-03-13", + "dateEntered": "2019-08-08", + "dateRegistrar": "2023-05-21", + "dateLocalAuthorityReceived": "2017-08-24", + "summary": "Itaque ex pariatur velit doloremque fugiat similique.\nRecusandae corrupti aliquid voluptate repellendus magni itaque praesentium omnis quo.", + "informationUsed": "Aspernatur quis eum.\nUnde quae nobis libero pariatur rerum rem facere.\nTempora culpa nam tempora numquam et.\nTemporibus dolorem minus.", + "pastOrPresentOrders": "Quidem sequi accusantium quidem alias.\nDoloremque nam voluptatum qui adipisci quia.", + "commercialAndIndustrialPurposes": [ + { + "uuid": "595f8711-1fc7-4eac-8e9d-9ff66d50945b", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true }, { + "uuid": "1e3d0946-1701-467a-97d8-f74e3ed23953", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true + "siteRegistry": false }, { - "scheduleReference": "F1*", + "uuid": "b47b7660-f423-4cd7-b5bd-b6c7f015e0d0", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true + "siteRegistry": false } ] } ], "activityLog": [ { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "GREENHOLT SOFIA", - "timestamp": "2017-09-19" - }, - { - "siteRegistry": true, + "uuid": "9e2d8bb2-e7ab-4abb-a26d-17b323779514", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "JACOBSON-HANE MARLEY", - "timestamp": "2020-09-22" + "user": "DACH MYLES", + "timestamp": "2021-09-26" }, { + "uuid": "2bba8d71-9974-4cb4-963e-70373c97ac7b", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "ADAMS LURLINE", - "timestamp": "2016-02-16" - }, - { - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "STARK JAKAYLA", - "timestamp": "2020-06-25" + "user": "HANSEN JOHAN", + "timestamp": "2017-06-23" }, { + "uuid": "2f8c7e27-f36e-4bb4-9453-6158764d0250", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "ORTIZ GERTRUDE", - "timestamp": "2017-04-20" + "user": "MURPHY DEMETRIS", + "timestamp": "2017-10-02" }, { + "uuid": "834f24c3-5d72-4d97-a973-45142b4f942d", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "SAUER CAROLINA", - "timestamp": "2014-03-14" + "user": "BARTOLETTI FRANCO", + "timestamp": "2019-03-07" }, { + "uuid": "b4bb7df7-686d-4a03-bd2c-47394fe68d22", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "SHIELDS MAYMIE", - "timestamp": "2023-06-17" - }, + "user": "ZIEME ARNOLDO", + "timestamp": "2019-08-06" + } + ], + "associatedSites": [ { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "DICKENS CICERO", - "timestamp": "2015-09-17" + "uuid": "a5a9faf8-5538-4ce5-b396-76f34aebe306", + "dateNoted": "2020-09-11", + "notes": "", + "parcelID": "15681", + "siteID": "17161", + "siteRegistry": false }, { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "SCHOWALTER KENTON", - "timestamp": "2015-10-02" + "uuid": "482bd5e1-6426-4302-af37-cd1de4015c49", + "dateNoted": "2018-04-01", + "notes": "", + "parcelID": "19362", + "siteID": "16189", + "siteRegistry": true }, { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "MERTZ ELECTA", - "timestamp": "2023-08-11" - } - ], - "associatedSites": [ - { - "dateNoted": "2018-04-21", + "uuid": "949d9a8d-5e72-4090-b2d8-25a2812f4e0d", + "dateNoted": "2019-05-19", "notes": "", - "parcelID": "16680", - "siteID": "18309", + "parcelID": "20397", + "siteID": "19479", "siteRegistry": true } ] }, { - "uuid": "1768cea1-1481-4dd4-b388-5113b7cfb430", - "siteID": 19235, - "address": "4902 Reynolds Flats", - "latitude": 56.3748, - "longitude": -132.4965, - "lastUpdated": "2021-01-15", - "city": "New Heloiseshire", - "region": "Vancouver Island/Coast", - "victoriaFile": "26250-20/17274", + "uuid": "eb27f831-8de7-4217-a3db-5353461c3c95", + "siteID": 20626, + "address": "252 Karina Lakes", + "latitude": 49.6049, + "longitude": -130.1329, + "lastUpdated": "2023-03-27", + "city": "Konopelskicester", + "region": "Mainland/Southwest", + "victoriaFile": "26250-20/967", "regionalFile": "N/A", "parcelIDs": [ - 7372892, - 9353158, - 3148401, - 3085388, - 8206327 + 9097320, + 5120656, + 3082926, + 2761509, + 859778 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2019-06-12", - "completed": "2015-11-27", - "initiated": "2022-01-03", - "ministryContact": "ZIEME NOEMIE", + "uuid": "bba3dd4a-507b-455f-9c8e-dc54347a66ee", + "createdAt": "2015-04-20", + "completed": "2021-05-17", + "initiated": "2020-03-18", + "ministryContact": "ROWE CARLEE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -13756,98 +16386,44 @@ ], "notationParticipants": [ { + "uuid": "6162cb44-274a-4a03-ad02-8d08f5cac15f", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "92662868-4f9b-4332-b8ab-cfe2defeffbf", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - } - ], - "siteRegistry": false - }, - { - "createdAt": "2019-02-02", - "completed": "2016-07-22", - "initiated": "2018-05-09", - "ministryContact": "BOGAN FLOYD", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { + "uuid": "44048c1a-2f0e-4ef8-9abb-8e872c08302a", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", "siteRegistry": true - } - ], - "siteRegistry": true - }, - { - "createdAt": "2023-08-15", - "completed": "2014-07-03", - "initiated": "2019-03-20", - "ministryContact": "GOYETTE WILLY", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false }, { + "uuid": "7aba95cb-6535-43cc-97de-520caa42a783", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false }, { + "uuid": "dab040db-9ddc-4d8b-9ded-85c2082a28b7", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2021-01-02", - "completed": "2017-05-09", - "initiated": "2016-11-24", - "ministryContact": "HINTZ KENNY", + "uuid": "e9620861-cf72-4f25-b352-7ccd637b1ccb", + "createdAt": "2019-11-14", + "completed": "2018-11-07", + "initiated": "2015-03-26", + "ministryContact": "SCHROEDER JAQUELINE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -13856,33 +16432,32 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", + "uuid": "393a8ca1-0c39-417b-8fdd-91ffc6c124e0", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { + "uuid": "557deb78-656f-4651-a5f2-1366a731f4a4", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true }, { + "uuid": "d6838318-e06a-40e6-9f94-840ab3bedc3a", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2017-07-21", - "completed": "2015-01-16", - "initiated": "2014-10-06", - "ministryContact": "KASSULKE WYATT", + "uuid": "0b4e1e1a-e48a-4864-b552-338d5774ba5b", + "createdAt": "2021-04-24", + "completed": "2018-07-11", + "initiated": "2018-08-20", + "ministryContact": "HALEY LEANN", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -13891,34 +16466,45 @@ ], "notationParticipants": [ { + "uuid": "071f61f0-ba62-4fd1-9adf-18f6ab08f59e", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", + "uuid": "385e43a6-af51-4d71-975e-4c7f29514e7d", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false }, { + "uuid": "d2121294-5267-4133-968f-c9238227a0ac", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "0be035e9-01b4-4544-9a01-82ccc0e9ebbd", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", "siteRegistry": false }, { + "uuid": "bafa9e59-c64f-44f1-8c67-7705c45af997", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true + "role": "REQUESTED BY", + "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true } ], "participants": [ { + "uuid": "745bbd39-6575-4530-8ecb-1de96f628637", "name": "IPSUM", - "endDate": "2014-09-05", - "startDate": "2020-03-05", + "endDate": "2020-12-08", + "startDate": "2014-06-12", "notes": "", "roles": [ "EMPLOYEE" @@ -13926,127 +16512,174 @@ "siteRegistry": false }, { - "name": "AMET, DOLOR SIT", - "endDate": "2016-07-16", - "startDate": "2017-01-18", + "uuid": "89c31508-6198-4e55-8aa5-ebc394d8c319", + "name": "IPSUM", + "endDate": "2020-09-28", + "startDate": "2021-04-28", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], - "siteRegistry": false + "siteRegistry": true }, { - "name": "AMET, DOLOR SIT", - "endDate": "2021-12-03", - "startDate": "2018-10-21", + "uuid": "4fec9b2a-af93-4bef-bda3-aaa9c1c8dfe6", + "name": "IPSUM", + "endDate": "2022-11-30", + "startDate": "2018-08-08", "notes": "", "roles": [ "EMPLOYEE" ], "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2019-02-17", - "startDate": "2021-05-12", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": true } ], "suspectLandUses": [ { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-11-25 (described on Site Profile dated 2017-11-25)", + "uuid": "0b38eef6-2c52-42dd-8e92-b37caf127fca", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2018-04-21 (described on Site Profile dated 2018-04-21)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { + "uuid": "5f5e2fa5-a648-4e66-8619-6508d39723f8", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-09-22 (described on Site Profile dated 2017-09-22)", + "notes": "INSERTED FOR SITE PROFILE DATED 2020-01-20 (described on Site Profile dated 2020-01-20)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2020-01-06 (described on Site Profile dated 2020-01-06)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "uuid": "08317f7e-7a89-4aaf-bbb0-3f7d46a923d3", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2018-01-26 (described on Site Profile dated 2018-01-26)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { + "uuid": "3eb401fb-7210-44ec-ba61-ee8588708bc6", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-03-21 (described on Site Profile dated 2021-03-21)", + "notes": "INSERTED FOR SITE PROFILE DATED 2023-09-09 (described on Site Profile dated 2023-09-09)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2023-03-15 (described on Site Profile dated 2023-03-15)", + "uuid": "6dc14c72-952c-46f0-8d2e-c015b67bd690", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2014-02-10 (described on Site Profile dated 2014-02-10)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], "parcelDescriptions": [ { + "uuid": "10b117c9-2171-4cee-876d-00f035da8ac0", "siteRegistry": true, - "dateNoted": "2018-06-02", - "parcelID": "17453", - "crownLandUsePIN": "20111", - "crownLandFileNumber": "18143", - "landDescription": "LOT 5 OF LOT 2 BLOCK 2 DISTRICT LOT 2 PLAN 5213" + "dateNoted": "2018-11-01", + "parcelID": "15277", + "crownLandUsePIN": "16424", + "crownLandFileNumber": "19165", + "landDescription": "LOT 4 OF LOT 1 BLOCK 3 DISTRICT LOT 5 PLAN 3309" }, { - "siteRegistry": true, - "dateNoted": "2014-11-19", - "parcelID": "18878", - "crownLandUsePIN": "15476", - "crownLandFileNumber": "15413", - "landDescription": "LOT 1 OF LOT 2 BLOCK 4 DISTRICT LOT 5 PLAN 3323" + "uuid": "f6ae1e44-1ed8-433f-94b7-dcbff8e07382", + "siteRegistry": false, + "dateNoted": "2019-09-29", + "parcelID": "16182", + "crownLandUsePIN": "20863", + "crownLandFileNumber": "16012", + "landDescription": "LOT 3 OF LOT 5 BLOCK 2 DISTRICT LOT 3 PLAN 8719" }, { + "uuid": "87552528-ba4d-4e70-921a-8d0f6bd16bb4", "siteRegistry": false, - "dateNoted": "2021-03-25", - "parcelID": "16587", - "crownLandUsePIN": "19243", - "crownLandFileNumber": "17713", - "landDescription": "LOT 5 OF LOT 2 BLOCK 2 DISTRICT LOT 3 PLAN 8571" + "dateNoted": "2017-07-13", + "parcelID": "19804", + "crownLandUsePIN": "20815", + "crownLandFileNumber": "15558", + "landDescription": "LOT 5 OF LOT 4 BLOCK 2 DISTRICT LOT 3 PLAN 5361" }, { - "siteRegistry": false, - "dateNoted": "2020-09-18", - "parcelID": "15635", - "crownLandUsePIN": "17410", - "crownLandFileNumber": "15786", - "landDescription": "LOT 4 OF LOT 5 BLOCK 5 DISTRICT LOT 4 PLAN 3896" + "uuid": "e4efb423-b572-459e-91db-2c022d15c6a8", + "siteRegistry": true, + "dateNoted": "2022-09-13", + "parcelID": "15393", + "crownLandUsePIN": "17672", + "crownLandFileNumber": "20562", + "landDescription": "LOT 4 OF LOT 1 BLOCK 4 DISTRICT LOT 5 PLAN 3733" + }, + { + "uuid": "10af9918-b477-4692-907b-6bde705b0744", + "siteRegistry": true, + "dateNoted": "2018-11-27", + "parcelID": "20850", + "crownLandUsePIN": "18005", + "crownLandFileNumber": "19575", + "landDescription": "LOT 2 OF LOT 2 BLOCK 1 DISTRICT LOT 3 PLAN 8381" } ], "siteDisclosures": [ { + "uuid": "f4560927-886b-43f6-a397-8dc6d6b682af", "siteRegistry": false, - "dateReceived": "2021-04-13", - "dateCompleted": "2022-10-07", - "dateEntered": "2018-09-11", - "dateRegistrar": "2023-07-26", - "dateLocalAuthorityReceived": "2016-09-17", - "summary": "Molestiae quam itaque asperiores sit optio animi non.\nNemo similique vitae voluptatem est culpa quidem ea.\nConsequuntur accusantium animi quia consequatur ducimus voluptatum quibusdam illo accusamus.", - "informationUsed": "Aspernatur laborum eaque suscipit.\nDucimus quia veniam quae aut.\nIste deserunt saepe facere fugit facere aliquid explicabo iure fugit.\nConsequatur facere at voluptatem eligendi cumque deserunt.\nIure dignissimos quidem cum inventore illo deserunt.", - "pastOrPresentOrders": "Nihil voluptas omnis explicabo est occaecati.\nLaudantium ut possimus ratione.", + "dateReceived": "2017-05-25", + "dateCompleted": "2014-04-13", + "dateEntered": "2020-04-18", + "dateRegistrar": "2021-11-24", + "dateLocalAuthorityReceived": "2023-01-08", + "summary": "Perspiciatis officia laborum magnam voluptates corrupti vel fugiat corporis quibusdam.", + "informationUsed": "Odit dolore velit ipsum voluptates sed soluta officia quod.\nArchitecto quisquam aliquid amet tempore similique.\nCumque unde maiores veniam dicta itaque aliquam officiis.\nLaboriosam inventore nesciunt at.", + "pastOrPresentOrders": "Itaque velit cum.\nQuidem quis dolorem eligendi a earum.", "commercialAndIndustrialPurposes": [ { + "uuid": "11f4958d-c464-4612-b2a3-1005713d7caf", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { + "uuid": "f943deb1-b106-4d2f-9ac7-e677f17d827a", "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { - "scheduleReference": "F1*", + "uuid": "55602e79-005b-4b14-9a2e-ebd75faa837f", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { + "uuid": "28a9bf32-809c-4a1b-9943-52d9478d7f14", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + } + ] + }, + { + "uuid": "0ea5087a-2254-45b7-a2f1-8c4ea09cacca", + "siteRegistry": true, + "dateReceived": "2016-05-01", + "dateCompleted": "2016-06-19", + "dateEntered": "2013-12-07", + "dateRegistrar": "2020-09-30", + "dateLocalAuthorityReceived": "2019-02-01", + "summary": "Voluptate et delectus temporibus distinctio nulla fugit est atque.\nMinima aliquid voluptatum quae fuga perferendis optio architecto perspiciatis dolorem.\nOfficiis alias aspernatur nesciunt aspernatur beatae blanditiis.", + "informationUsed": "Eum voluptas debitis fuga delectus praesentium.\nVoluptates cumque beatae fuga nostrum iure delectus praesentium modi.\nExercitationem sapiente sunt in distinctio nostrum molestiae accusantium dolorem doloribus.\nQuas dicta ea ea voluptatibus delectus.", + "pastOrPresentOrders": "Recusandae autem aliquid suscipit culpa necessitatibus delectus.\nExcepturi iusto ipsam vel enim iste ipsam dolorum.", + "commercialAndIndustrialPurposes": [ + { + "uuid": "37dbe60c-e897-42d3-8a00-fd83f30f34a2", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "uuid": "0ada9b39-6e95-40f7-9770-14d39e34d843", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "uuid": "1f369c93-ab47-4487-8a7c-8c2dc17d7e3e", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true } ] @@ -14054,71 +16687,78 @@ ], "activityLog": [ { - "siteRegistry": false, + "uuid": "2707c901-222a-432f-b7cf-e3fd68b09dea", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "KOZEY AUGUSTUS", - "timestamp": "2016-11-01" + "user": "OLSON KOLE", + "timestamp": "2017-12-29" }, { - "siteRegistry": true, + "uuid": "b2c22156-1bcd-41e5-a361-b960d878912d", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "VON ANGELITA", - "timestamp": "2017-01-28" + "user": "HODKIEWICZ LUCIUS", + "timestamp": "2018-01-06" }, { - "siteRegistry": false, + "uuid": "de32994b-b17f-41e5-a559-683d37df58d5", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "FUNK GAVIN", - "timestamp": "2017-08-08" + "user": "WILLIAMSON PARKER", + "timestamp": "2014-05-12" }, { - "siteRegistry": false, + "uuid": "67e30e70-3736-43b4-ac17-dcdde14868e6", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "STOLTENBERG SABRYNA", - "timestamp": "2017-10-23" + "user": "WILDERMAN PENELOPE", + "timestamp": "2021-03-08" }, { + "uuid": "d66df943-a05f-4cf6-bae7-0a1dc96fbf15", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "BOGISICH GRADY", - "timestamp": "2020-04-02" + "user": "ERDMAN JERAD", + "timestamp": "2016-12-12" } ], "associatedSites": [ { - "dateNoted": "2017-08-12", + "uuid": "444c7a30-0210-4bdf-ada9-0e45b87ae1eb", + "dateNoted": "2015-04-03", "notes": "", - "parcelID": "17036", - "siteID": "18109", - "siteRegistry": false + "parcelID": "20909", + "siteID": "16044", + "siteRegistry": true } ] }, { - "uuid": "59c43bc2-4de4-4c11-b973-8dae3bba353e", - "siteID": 17034, - "address": "628 Jakubowski Turnpike", - "latitude": 49.6872, - "longitude": -130.6417, - "lastUpdated": "2016-07-30", - "city": "Port Alfredshire", - "region": " North Coast", - "victoriaFile": "26250-20/12535", + "uuid": "0cd605b0-378e-4c9f-a16c-6d330ce28ff4", + "siteID": 18428, + "address": "91293 Skiles Ways", + "latitude": 51.1478, + "longitude": -128.1011, + "lastUpdated": "2018-03-23", + "city": "East Horaceside", + "region": "Vancouver Island/Coast", + "victoriaFile": "26250-20/16748", "regionalFile": "N/A", "parcelIDs": [ - 1533493, - 2867648, - 4019994, - 3801986, - 3711904 + 3089122, + 9147817, + 2975598, + 1797193, + 2976210 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2021-11-29", - "completed": "2015-06-08", - "initiated": "2018-05-07", - "ministryContact": "TERRY SELENA", + "uuid": "09cb1e7c-afc0-4a4c-a94c-7871c161caba", + "createdAt": "2021-03-11", + "completed": "2017-10-27", + "initiated": "2014-01-13", + "ministryContact": "LEFFLER WILFORD", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -14127,73 +16767,26 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { + "uuid": "41b150b2-32b6-48ca-8ebe-35da1892476e", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - } - ], - "siteRegistry": false - }, - { - "createdAt": "2015-07-14", - "completed": "2018-01-10", - "initiated": "2020-11-26", - "ministryContact": "O'CONNER KORY", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { + "uuid": "3ebf42fd-1927-4716-b710-6bfdde910c10", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2013-12-27", - "completed": "2017-12-09", - "initiated": "2018-09-27", - "ministryContact": "BORER COURTNEY", + "uuid": "4a7929ac-798f-4370-b57d-622e2428caeb", + "createdAt": "2021-02-05", + "completed": "2022-08-18", + "initiated": "2019-01-10", + "ministryContact": "POWLOWSKI MARCELLE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -14202,38 +16795,26 @@ ], "notationParticipants": [ { + "uuid": "4b7b342e-34e4-49da-9878-997e98255532", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { + "uuid": "c0bfe933-13d1-4a5f-afe0-d30e90a6e0dc", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true } ], "siteRegistry": false }, { - "createdAt": "2017-09-09", - "completed": "2020-07-17", - "initiated": "2022-06-06", - "ministryContact": "WALSH ARLO", + "uuid": "08ecdbab-d52a-4bc1-bb20-d30210a0dd2b", + "createdAt": "2019-08-03", + "completed": "2019-01-27", + "initiated": "2018-11-08", + "ministryContact": "VON REED", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -14242,64 +16823,34 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { + "uuid": "1c59927f-eaae-4736-bcc2-033f4e9b8200", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { + "uuid": "03cdeea5-26fb-45f0-b756-98170722009b", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", "siteRegistry": true }, { + "uuid": "33c848bf-a4f3-4b9e-8241-b250977f5347", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false - } - ], - "siteRegistry": true - }, - { - "createdAt": "2013-12-04", - "completed": "2017-04-12", - "initiated": "2018-01-01", - "ministryContact": "RATKE PARKER", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false }, { + "uuid": "6bd9c3d4-112d-44dd-b04b-46bfd9a8ce72", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { + "uuid": "a8af6ff2-f623-4030-bde5-5676dd4e4463", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false } ], "siteRegistry": false @@ -14307,9 +16858,10 @@ ], "participants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2020-06-26", - "startDate": "2022-10-31", + "uuid": "112a8eef-f5e7-46d9-81ad-6c81e696156b", + "name": "IPSUM", + "endDate": "2014-11-08", + "startDate": "2019-12-04", "notes": "", "roles": [ "ORGANIZATION" @@ -14317,9 +16869,10 @@ "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2022-11-11", - "startDate": "2013-11-17", + "uuid": "3ef394ec-e40e-41cf-982c-50c67bf05ee2", + "name": "IPSUM", + "endDate": "2015-08-02", + "startDate": "2023-05-06", "notes": "", "roles": [ "EMPLOYEE" @@ -14327,205 +16880,218 @@ "siteRegistry": true }, { - "name": "AMET, DOLOR SIT", - "endDate": "2022-10-20", - "startDate": "2021-11-08", + "uuid": "fb695fdf-98cf-49d4-a224-0eb208ed3ce5", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2018-09-01", + "startDate": "2017-12-30", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "uuid": "b7a449b5-0df2-4d8c-ad34-a94e048b6d4a", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2021-06-14", + "startDate": "2021-02-11", + "notes": "", + "roles": [ + "ORGANIZATION" ], "siteRegistry": false } ], "suspectLandUses": [ { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2023-06-16 (described on Site Profile dated 2023-06-16)", + "uuid": "2cb4b39b-fc7e-45a1-b7e2-5f0c0161ce9d", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2014-01-27 (described on Site Profile dated 2014-01-27)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { + "uuid": "e3d4b36f-5812-44cc-8017-253eaf3ac91a", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2020-01-23 (described on Site Profile dated 2020-01-23)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "notes": "INSERTED FOR SITE PROFILE DATED 2023-08-10 (described on Site Profile dated 2023-08-10)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { + "uuid": "0c25720d-8502-46b8-9705-a916198ebd4b", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-11-09 (described on Site Profile dated 2014-11-09)", + "notes": "INSERTED FOR SITE PROFILE DATED 2020-09-06 (described on Site Profile dated 2020-09-06)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], "parcelDescriptions": [ { + "uuid": "1f32e4e0-5ea2-4b8d-98f5-b360960a96d9", "siteRegistry": true, - "dateNoted": "2022-11-21", - "parcelID": "18233", - "crownLandUsePIN": "17198", - "crownLandFileNumber": "18181", - "landDescription": "LOT 2 OF LOT 1 BLOCK 4 DISTRICT LOT 2 PLAN 8390" + "dateNoted": "2022-05-12", + "parcelID": "17589", + "crownLandUsePIN": "17080", + "crownLandFileNumber": "16568", + "landDescription": "LOT 5 OF LOT 1 BLOCK 3 DISTRICT LOT 5 PLAN 9033" + }, + { + "uuid": "e10a0e15-9c07-4515-b8fe-dd96f123ca97", + "siteRegistry": false, + "dateNoted": "2023-08-10", + "parcelID": "20190", + "crownLandUsePIN": "19626", + "crownLandFileNumber": "19375", + "landDescription": "LOT 4 OF LOT 3 BLOCK 4 DISTRICT LOT 4 PLAN 9074" + }, + { + "uuid": "080b891a-68d1-443e-96dc-e91fdf1542fb", + "siteRegistry": false, + "dateNoted": "2023-02-25", + "parcelID": "18624", + "crownLandUsePIN": "18831", + "crownLandFileNumber": "20578", + "landDescription": "LOT 2 OF LOT 2 BLOCK 5 DISTRICT LOT 3 PLAN 6768" + }, + { + "uuid": "312588ea-7d34-424e-a499-0c46cd6f2399", + "siteRegistry": false, + "dateNoted": "2018-10-01", + "parcelID": "19491", + "crownLandUsePIN": "19937", + "crownLandFileNumber": "20908", + "landDescription": "LOT 3 OF LOT 5 BLOCK 1 DISTRICT LOT 4 PLAN 4567" }, { + "uuid": "dd63c1ad-b5e2-4c9f-b973-e6b2aa4fd880", "siteRegistry": true, - "dateNoted": "2015-02-06", - "parcelID": "19415", - "crownLandUsePIN": "18137", - "crownLandFileNumber": "20731", - "landDescription": "LOT 2 OF LOT 2 BLOCK 3 DISTRICT LOT 4 PLAN 6937" + "dateNoted": "2019-06-23", + "parcelID": "15977", + "crownLandUsePIN": "17966", + "crownLandFileNumber": "15658", + "landDescription": "LOT 4 OF LOT 3 BLOCK 2 DISTRICT LOT 1 PLAN 7241" } ], "siteDisclosures": [ { - "siteRegistry": false, - "dateReceived": "2022-11-16", - "dateCompleted": "2017-08-09", - "dateEntered": "2021-06-15", - "dateRegistrar": "2021-06-30", - "dateLocalAuthorityReceived": "2021-02-15", - "summary": "Exercitationem rerum soluta.\nQuibusdam quis molestias ullam voluptatibus deserunt officia.\nLibero earum necessitatibus excepturi.", - "informationUsed": "Beatae consequuntur sint vitae accusantium.\nVeniam alias ut fuga.\nReprehenderit similique eveniet.", - "pastOrPresentOrders": "Id praesentium architecto eum minima numquam aliquam mollitia.", + "uuid": "727abebd-a544-4a0f-8732-12c9e0465143", + "siteRegistry": true, + "dateReceived": "2019-01-11", + "dateCompleted": "2016-11-09", + "dateEntered": "2016-08-26", + "dateRegistrar": "2020-11-07", + "dateLocalAuthorityReceived": "2015-05-21", + "summary": "Ex ut consequatur voluptate dolores rerum aliquid rem.\nIn eum occaecati aperiam voluptatem.\nAd exercitationem deleniti vel delectus libero minima tempora assumenda.", + "informationUsed": "Voluptatum dignissimos suscipit eius quae sit consectetur.\nOdit ea in ad consequuntur.\nIpsam quam explicabo laboriosam voluptate aliquam id minima.", + "pastOrPresentOrders": "Recusandae vero eius quia aspernatur facere ea ipsum blanditiis.\nLaboriosam adipisci mollitia facilis animi repellendus in ipsam optio.", "commercialAndIndustrialPurposes": [ { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true - }, - { - "scheduleReference": "F1*", + "uuid": "eb0509e3-7049-4321-9aa4-b3d8c07887b6", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { + "uuid": "ddd8b15f-0d81-4353-acc9-a5e74410918c", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false - }, - { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true } ] + } + ], + "activityLog": [ + { + "uuid": "c4979c34-f62c-447d-b091-b47f28c9704c", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "STIEDEMANN KRAIG", + "timestamp": "2015-10-16" }, { - "siteRegistry": false, - "dateReceived": "2016-11-12", - "dateCompleted": "2020-09-29", - "dateEntered": "2017-03-01", - "dateRegistrar": "2022-08-15", - "dateLocalAuthorityReceived": "2015-09-18", - "summary": "Tempora quos quod.\nCumque quae quia corporis amet laudantium corrupti laborum itaque.", - "informationUsed": "Cupiditate dolorem repudiandae non atque accusamus iure omnis.\nVoluptate tempore natus asperiores fuga maiores itaque amet.\nVoluptatum modi alias.", - "pastOrPresentOrders": "Culpa ratione aperiam.\nQuo nostrum quod.", - "commercialAndIndustrialPurposes": [ - { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false - }, - { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true - }, - { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true - }, - { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false - } - ] - } - ], - "activityLog": [ - { + "uuid": "b6bca067-0a44-4a45-82b0-92b0e11c08ff", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "FLATLEY SELMER", - "timestamp": "2016-06-13" + "user": "ABERNATHY-FRAMI AMERICA", + "timestamp": "2022-08-16" }, { - "siteRegistry": false, + "uuid": "c7241d04-16a0-4d21-a8bf-a1e391cb417c", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "BERNIER MADGE", - "timestamp": "2021-10-05" + "user": "SKILES LAVERN", + "timestamp": "2016-07-14" }, { - "siteRegistry": false, + "uuid": "88170437-98e8-4478-a06a-37e5b890cb0d", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "KUTCH KORBIN", - "timestamp": "2022-12-02" + "user": "HAYES CATALINA", + "timestamp": "2023-02-11" }, { - "siteRegistry": true, + "uuid": "a5b2e1f4-b243-4c8c-9e9d-9a06eda9a03d", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "QUIGLEY SUZANNE", - "timestamp": "2016-04-22" + "user": "O'KON SHYANN", + "timestamp": "2019-02-01" }, { + "uuid": "41de8b8c-efd1-4737-88da-b3060fbced36", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "HAND IVAH", - "timestamp": "2017-09-03" + "user": "KUPHAL EMILIO", + "timestamp": "2020-10-10" }, { - "siteRegistry": true, + "uuid": "2e0e0e2d-9a53-4628-ba58-28aaed0fa9a3", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "HEIDENREICH RILEY", - "timestamp": "2016-12-20" + "user": "METZ FEDERICO", + "timestamp": "2017-10-21" }, { + "uuid": "ce4ba6ef-9468-424f-98ad-364661f8272d", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "MORAR BELL", - "timestamp": "2022-03-26" + "user": "STREICH ALVINA", + "timestamp": "2020-05-20" } ], "associatedSites": [ { - "dateNoted": "2016-12-08", - "notes": "", - "parcelID": "18796", - "siteID": "16335", - "siteRegistry": true - }, - { - "dateNoted": "2015-12-30", + "uuid": "9819809d-3099-49be-b024-fc6dc240830e", + "dateNoted": "2020-09-11", "notes": "", - "parcelID": "17350", - "siteID": "20424", - "siteRegistry": true + "parcelID": "19777", + "siteID": "16323", + "siteRegistry": false } ] }, { - "uuid": "00c08f72-3be7-48dd-966d-f6b47204d6a3", - "siteID": 20424, - "address": "288 Kohler Spring", - "latitude": 48.1341, - "longitude": -126.812, - "lastUpdated": "2013-11-25", - "city": "Wilbertboro", - "region": "Mainland/Southwest", - "victoriaFile": "26250-20/13485", + "uuid": "a849c407-dccb-4e9f-945b-157c57bd4e50", + "siteID": 16062, + "address": "97839 Quitzon Mall", + "latitude": 50.75, + "longitude": -131.0697, + "lastUpdated": "2019-08-26", + "city": "Lake Niatown", + "region": "Vancouver Island/Coast", + "victoriaFile": "26250-20/4562", "regionalFile": "N/A", "parcelIDs": [ - 7063852, - 2542438, - 7126605, - 4291413, - 5200682 + 7806154, + 1592729, + 8178159, + 2154714, + 6042485 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2019-02-02", - "completed": "2022-06-02", - "initiated": "2014-08-21", - "ministryContact": "ORTIZ FRIDA", + "uuid": "98bfa619-ffb3-4937-ab11-b2bbce55b9f6", + "createdAt": "2018-05-10", + "completed": "2023-02-25", + "initiated": "2013-12-30", + "ministryContact": "MCKENZIE ELIJAH", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -14534,38 +17100,26 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { + "uuid": "59bdfa53-ffeb-4b0f-902d-b562d85678e0", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false }, { + "uuid": "2661e28f-5a18-4a75-9c4e-540973565884", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true } ], "siteRegistry": false }, { - "createdAt": "2016-11-27", - "completed": "2016-06-22", - "initiated": "2020-10-09", - "ministryContact": "EBERT LETHA", + "uuid": "73138c09-68fb-41ed-8b94-8fcc304d38db", + "createdAt": "2016-10-15", + "completed": "2021-03-12", + "initiated": "2017-11-20", + "ministryContact": "ERDMAN DEDRIC", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -14574,38 +17128,44 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", + "uuid": "577c0423-6ddc-48cd-9c27-d0ec75047556", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { + "uuid": "557fd3fb-4e02-4fd6-a77a-16fa79708b62", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false + "role": "SUBMITTED BY", + "siteRegistry": true }, { + "uuid": "c6a80dcd-11a2-4b7b-9daf-4affb72be240", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { + "uuid": "bbc75913-a2b5-492f-a61b-2c1c05dac50d", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true + "uuid": "8ea79f4b-cf95-4ff5-8757-e187f7964c1f", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2017-01-07", - "completed": "2019-09-03", - "initiated": "2018-07-18", - "ministryContact": "CUMMINGS ALISON", + "uuid": "dbbc63e7-93ff-49e8-bc97-c54a911bf984", + "createdAt": "2022-11-29", + "completed": "2017-02-02", + "initiated": "2018-09-28", + "ministryContact": "HOMENICK JENNYFER", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -14614,14 +17174,22 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", + "uuid": "727115a2-e6e7-4342-be10-431f19275407", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", + "uuid": "6e316f13-e04b-4766-b9ba-f10cc69ecade", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false + }, + { + "uuid": "67a9c760-b550-4ba2-8b2d-343c97e826d2", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true } ], "siteRegistry": true @@ -14629,9 +17197,10 @@ ], "participants": [ { - "name": "IPSUM", - "endDate": "2016-04-28", - "startDate": "2022-05-10", + "uuid": "4ef55782-8860-410e-b03b-5d98c71f44ae", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2015-03-01", + "startDate": "2015-08-13", "notes": "", "roles": [ "ORGANIZATION" @@ -14639,206 +17208,220 @@ "siteRegistry": true }, { - "name": "IPSUM", - "endDate": "2017-09-26", - "startDate": "2021-05-16", + "uuid": "7a9576b4-231c-4e30-b60e-517eaa427d05", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2022-05-24", + "startDate": "2021-08-31", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "uuid": "30ff0a81-ea7d-43d8-a5d9-1e10765e92b7", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2018-12-23", + "startDate": "2016-02-29", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "uuid": "d1bac9a7-4e31-4a21-9115-0f5a128aaf1a", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2015-04-22", + "startDate": "2020-08-07", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "uuid": "4d00e69c-1560-4625-a894-a6d308cb1345", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2019-12-01", + "startDate": "2017-02-13", + "notes": "", + "roles": [ + "ORGANIZATION" ], "siteRegistry": false } ], "suspectLandUses": [ { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-09-21 (described on Site Profile dated 2019-09-21)", + "uuid": "0391d371-9b4a-444b-8d80-e0e66a7062ad", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2018-09-22 (described on Site Profile dated 2018-09-22)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-06-11 (described on Site Profile dated 2018-06-11)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "uuid": "f1dddea3-badc-4cea-bf1b-f36c939e4994", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2022-09-15 (described on Site Profile dated 2022-09-15)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], "parcelDescriptions": [ { + "uuid": "340a65a5-0f51-4a84-b4b0-5de05b3725ef", "siteRegistry": true, - "dateNoted": "2021-07-19", - "parcelID": "18000", - "crownLandUsePIN": "17442", - "crownLandFileNumber": "16478", - "landDescription": "LOT 3 OF LOT 2 BLOCK 2 DISTRICT LOT 2 PLAN 7641" - }, - { - "siteRegistry": false, - "dateNoted": "2019-09-08", - "parcelID": "20060", - "crownLandUsePIN": "18966", - "crownLandFileNumber": "19998", - "landDescription": "LOT 3 OF LOT 2 BLOCK 5 DISTRICT LOT 3 PLAN 4694" - }, - { - "siteRegistry": true, - "dateNoted": "2022-02-24", - "parcelID": "20782", - "crownLandUsePIN": "20601", - "crownLandFileNumber": "19739", - "landDescription": "LOT 1 OF LOT 1 BLOCK 1 DISTRICT LOT 1 PLAN 4169" + "dateNoted": "2018-02-13", + "parcelID": "17590", + "crownLandUsePIN": "20042", + "crownLandFileNumber": "20697", + "landDescription": "LOT 1 OF LOT 5 BLOCK 1 DISTRICT LOT 3 PLAN 7478" }, { + "uuid": "9895a521-840a-48db-9ebf-1f6a06ae3212", "siteRegistry": false, - "dateNoted": "2020-02-25", - "parcelID": "19493", - "crownLandUsePIN": "17645", - "crownLandFileNumber": "15990", - "landDescription": "LOT 2 OF LOT 4 BLOCK 1 DISTRICT LOT 1 PLAN 3656" - }, - { - "siteRegistry": true, - "dateNoted": "2023-03-01", - "parcelID": "19224", - "crownLandUsePIN": "19497", - "crownLandFileNumber": "19797", - "landDescription": "LOT 3 OF LOT 4 BLOCK 5 DISTRICT LOT 2 PLAN 9329" + "dateNoted": "2023-08-03", + "parcelID": "17401", + "crownLandUsePIN": "17172", + "crownLandFileNumber": "20941", + "landDescription": "LOT 4 OF LOT 4 BLOCK 1 DISTRICT LOT 5 PLAN 5996" } ], "siteDisclosures": [ { + "uuid": "43b948a1-be1d-4851-a509-fda1f242a93d", "siteRegistry": true, - "dateReceived": "2020-05-14", - "dateCompleted": "2019-12-21", - "dateEntered": "2015-09-09", - "dateRegistrar": "2020-06-11", - "dateLocalAuthorityReceived": "2020-07-05", - "summary": "Expedita eligendi provident aliquam cum.\nQuidem facilis quis sequi accusamus ipsam nesciunt assumenda.\nEa quis fuga temporibus eius.", - "informationUsed": "Vitae sint at nihil soluta.\nMaiores mollitia fugit possimus nihil hic fuga ab harum.\nPorro facere quibusdam natus rem sequi tempore deleniti.\nConsectetur hic aspernatur reiciendis saepe ad.", - "pastOrPresentOrders": "Fugiat odio impedit rem numquam laborum placeat voluptates ullam amet.\nNecessitatibus assumenda labore voluptatem fugiat eveniet illum.\nIste tenetur quo ipsum.", + "dateReceived": "2018-11-21", + "dateCompleted": "2017-10-05", + "dateEntered": "2021-02-20", + "dateRegistrar": "2020-10-04", + "dateLocalAuthorityReceived": "2014-01-25", + "summary": "Sapiente molestiae laborum sapiente magnam inventore vel sapiente.\nEnim libero tempora neque facilis fugiat.\nLaboriosam dolorum eveniet facilis accusantium quibusdam.", + "informationUsed": "Sint minima quidem distinctio soluta eaque.\nTenetur impedit molestiae.\nDolorem dolorum tempora ullam ullam doloremque.", + "pastOrPresentOrders": "Voluptate harum neque quasi ducimus quaerat cum impedit ab culpa.\nVel sit nulla illum totam repellendus eaque soluta.", "commercialAndIndustrialPurposes": [ { + "uuid": "78e5f0aa-4377-4045-abb2-701b7a6cfb93", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "uuid": "dd4f39a8-347b-4dd0-8b87-9e795ffff27b", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true } ] + }, + { + "uuid": "fca182ed-416a-43b1-890c-2719365f78a4", + "siteRegistry": false, + "dateReceived": "2022-03-19", + "dateCompleted": "2017-10-04", + "dateEntered": "2016-05-05", + "dateRegistrar": "2020-03-05", + "dateLocalAuthorityReceived": "2018-04-12", + "summary": "Laudantium libero nostrum quidem ipsum sequi voluptatem unde.", + "informationUsed": "Quibusdam enim quam cum voluptatem facere ut doloremque cumque commodi.\nMinima provident animi occaecati nobis.\nReiciendis earum quas.", + "pastOrPresentOrders": "Reprehenderit nulla eveniet ducimus enim optio reiciendis.\nNisi quia eaque.", + "commercialAndIndustrialPurposes": [ + { + "uuid": "94541315-c4dc-4238-bca0-c60203b06c61", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "uuid": "1d06d5be-7620-4497-895f-4e4813995402", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + } + ] } ], "activityLog": [ { + "uuid": "3d2d822a-f020-47fe-9a44-a5797277283e", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "TRANTOW JANET", - "timestamp": "2019-10-17" - }, - { - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "JAKUBOWSKI ISAC", - "timestamp": "2021-01-18" + "user": "CARTWRIGHT VIVIAN", + "timestamp": "2019-03-24" }, { + "uuid": "475ba01b-1599-45dc-b0a7-fe4a50f2dfbf", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "MILLS JACKY", - "timestamp": "2019-06-27" + "user": "DURGAN KRISTOPHER", + "timestamp": "2020-12-07" }, { + "uuid": "8081b53c-eaa2-4357-8790-153d237ab53a", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "SHANAHAN RANDALL", - "timestamp": "2020-03-14" - }, - { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "DOOLEY LOYCE", - "timestamp": "2013-12-19" - }, - { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "GOYETTE LENNY", - "timestamp": "2018-09-30" + "user": "FRITSCH ALEXANDREA", + "timestamp": "2020-12-03" }, { + "uuid": "43251dcb-16d9-439d-8eb8-3409b349d811", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "WEIMANN AMELIE", - "timestamp": "2022-09-25" - }, - { - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "YUNDT ALICE", - "timestamp": "2023-07-24" + "user": "HUELS LUELLA", + "timestamp": "2020-08-09" }, { + "uuid": "1e8a78de-86de-43c9-8b9b-9daa3437b615", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "PROSACCO SELMER", - "timestamp": "2017-11-10" - }, - { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "SAWAYN KIP", - "timestamp": "2023-06-21" + "user": "POLLICH-LEDNER ALISHA", + "timestamp": "2014-11-29" } ], "associatedSites": [ { - "dateNoted": "2019-07-29", - "notes": "", - "parcelID": "18117", - "siteID": "17940", - "siteRegistry": false - }, - { - "dateNoted": "2017-08-19", + "uuid": "adab9d7f-da58-4c6f-82df-e69bfae8d28b", + "dateNoted": "2023-08-21", "notes": "", - "parcelID": "20834", - "siteID": "17940", - "siteRegistry": false + "parcelID": "19568", + "siteID": "18426", + "siteRegistry": true }, { - "dateNoted": "2018-08-15", + "uuid": "4439f9f7-6224-45ef-921d-da0534ec4e4e", + "dateNoted": "2018-03-07", "notes": "", - "parcelID": "16038", - "siteID": "20018", + "parcelID": "16563", + "siteID": "17327", "siteRegistry": true } ] }, { - "uuid": "e9ffc8bc-decd-4c4e-bcf8-0f3f93d6548c", - "siteID": 18817, - "address": "47430 Schultz Path", - "latitude": 55.5937, - "longitude": -126.5417, - "lastUpdated": "2022-07-02", - "city": "Katarinafield", + "uuid": "1e81de72-d0b5-4a39-9867-a54f23bb3ade", + "siteID": 20536, + "address": "516 Ritchie Place", + "latitude": 49.6378, + "longitude": -118.5385, + "lastUpdated": "2014-03-08", + "city": "Alexanestead", "region": "Kootenay", - "victoriaFile": "26250-20/3947", + "victoriaFile": "26250-20/3328", "regionalFile": "N/A", "parcelIDs": [ - 188747, - 9803638, - 2332095, - 4405276, - 7479791 + 8055201, + 3987611, + 1085150, + 9586668, + 6205271 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2014-03-17", - "completed": "2016-04-03", - "initiated": "2021-01-26", - "ministryContact": "GRADY CALI", + "uuid": "e7427543-3d2e-4cd0-8a74-f47830dfeded", + "createdAt": "2016-11-05", + "completed": "2015-04-05", + "initiated": "2022-10-02", + "ministryContact": "WINTHEISER RICHARD", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -14847,38 +17430,38 @@ ], "notationParticipants": [ { + "uuid": "f7f0cc76-e96c-47fa-8976-71536437f219", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false + "uuid": "fd93b8c1-118f-40b4-af0b-8ed6a5ec0ea1", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true }, { + "uuid": "b6c8464a-4672-413e-92d6-4313e81aaf90", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false + "role": "SUBMITTED BY", + "siteRegistry": true }, { + "uuid": "af78ca10-3670-44fa-bb00-6ceb5f9d0198", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false } ], "siteRegistry": false }, { - "createdAt": "2019-04-03", - "completed": "2021-09-16", - "initiated": "2016-05-21", - "ministryContact": "LEBSACK LEOPOLD", + "uuid": "690e9f93-3bb2-4bc2-9ba9-04e54d4902e1", + "createdAt": "2016-10-30", + "completed": "2014-03-03", + "initiated": "2016-10-29", + "ministryContact": "WITTING-WITTING CARLEY", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -14887,38 +17470,44 @@ ], "notationParticipants": [ { + "uuid": "0d1bc66c-bf28-4355-8f46-521d13175fbe", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", + "uuid": "bf90dc45-16be-4dc9-a5dd-61400eb37190", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { + "uuid": "708294de-856a-4582-830e-2b4c50135273", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false }, { + "uuid": "0854fdad-4f41-4287-adf2-661edd09cc41", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "uuid": "1d8a4988-4553-460f-a2e9-6558faeb18e6", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2019-11-28", - "completed": "2020-12-08", - "initiated": "2015-05-20", - "ministryContact": "SCHUSTER KATTIE", + "uuid": "340c0a32-23cb-4cda-bda8-034f0500b991", + "createdAt": "2023-05-13", + "completed": "2020-04-25", + "initiated": "2014-07-08", + "ministryContact": "CREMIN JACKIE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -14927,79 +17516,67 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "705b515d-32aa-4eff-ae38-66120dacb74b", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false }, { + "uuid": "cb3dbd40-dddf-4f25-9e77-57c795a46d54", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "uuid": "8d07e24a-efbf-4980-a889-b628018cd24d", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": true - } - ], - "siteRegistry": false - }, - { - "createdAt": "2013-10-29", - "completed": "2016-06-08", - "initiated": "2017-01-15", - "ministryContact": "WINTHEISER LIAM", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ + }, { + "uuid": "83662eb2-37d4-4b9f-9571-667e151fcdda", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false }, { + "uuid": "1b3653f6-211c-4ecc-ba27-f071aa08ff9b", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true } ], "participants": [ { - "name": "IPSUM", - "endDate": "2015-07-04", - "startDate": "2022-10-24", + "uuid": "bb9e8645-d88e-4199-aaf7-7ac577062f03", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2015-02-24", + "startDate": "2021-01-14", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2022-03-25", - "startDate": "2013-12-30", + "uuid": "00076e46-4a6d-4310-8c1f-0939f9d4b8d1", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2019-02-05", + "startDate": "2023-07-02", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "uuid": "e1a65060-76fd-4171-a34c-69562962624f", + "name": "IPSUM", + "endDate": "2019-03-15", + "startDate": "2018-12-01", "notes": "", "roles": [ "EMPLOYEE" @@ -15007,9 +17584,10 @@ "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2019-12-15", - "startDate": "2020-03-19", + "uuid": "1dcb5655-e607-4e8c-8694-d5546f4ae881", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2017-07-18", + "startDate": "2016-09-27", "notes": "", "roles": [ "ORGANIZATION" @@ -15017,132 +17595,168 @@ "siteRegistry": false }, { - "name": "AMET, DOLOR SIT", - "endDate": "2019-02-18", - "startDate": "2019-05-31", + "uuid": "32485872-7a33-4117-934b-a64c2c89bb6a", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2019-12-28", + "startDate": "2021-12-17", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false } ], "suspectLandUses": [ { + "uuid": "9080c9c4-3247-4c5b-95fb-bcf7006a7ab6", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-06-15 (described on Site Profile dated 2015-06-15)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "notes": "INSERTED FOR SITE PROFILE DATED 2015-05-03 (described on Site Profile dated 2015-05-03)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { + "uuid": "b1065f87-bdce-419c-9e9e-9f2f92325a2c", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-03-27 (described on Site Profile dated 2015-03-27)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "notes": "INSERTED FOR SITE PROFILE DATED 2015-06-18 (described on Site Profile dated 2015-06-18)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { + "uuid": "bee24c44-138b-46fb-a131-d45720270fe2", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-10-10 (described on Site Profile dated 2016-10-10)", + "notes": "INSERTED FOR SITE PROFILE DATED 2015-08-18 (described on Site Profile dated 2015-08-18)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { + "uuid": "6f61e963-1dad-45c7-b2d7-14103d64f580", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2019-04-14 (described on Site Profile dated 2019-04-14)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "uuid": "296b7373-f171-41e0-9f55-755def036477", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-01-11 (described on Site Profile dated 2018-01-11)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "notes": "INSERTED FOR SITE PROFILE DATED 2016-11-17 (described on Site Profile dated 2016-11-17)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], "parcelDescriptions": [ { - "siteRegistry": true, - "dateNoted": "2021-03-21", - "parcelID": "17424", - "crownLandUsePIN": "19781", - "crownLandFileNumber": "19671", - "landDescription": "LOT 4 OF LOT 3 BLOCK 2 DISTRICT LOT 2 PLAN 6988" + "uuid": "4634d33f-9921-429e-8482-d0e70894a717", + "siteRegistry": false, + "dateNoted": "2014-11-13", + "parcelID": "20032", + "crownLandUsePIN": "15455", + "crownLandFileNumber": "20239", + "landDescription": "LOT 4 OF LOT 1 BLOCK 1 DISTRICT LOT 2 PLAN 9783" }, { + "uuid": "0ca4957a-1ee2-4491-977b-a4e80a2fe4bf", "siteRegistry": false, - "dateNoted": "2022-05-22", - "parcelID": "20277", - "crownLandUsePIN": "15910", - "crownLandFileNumber": "17727", - "landDescription": "LOT 3 OF LOT 5 BLOCK 2 DISTRICT LOT 4 PLAN 9547" + "dateNoted": "2015-02-23", + "parcelID": "20187", + "crownLandUsePIN": "16661", + "crownLandFileNumber": "15871", + "landDescription": "LOT 1 OF LOT 1 BLOCK 3 DISTRICT LOT 3 PLAN 4084" }, { - "siteRegistry": true, - "dateNoted": "2022-03-15", - "parcelID": "15960", - "crownLandUsePIN": "19488", - "crownLandFileNumber": "20072", - "landDescription": "LOT 3 OF LOT 1 BLOCK 4 DISTRICT LOT 1 PLAN 3724" + "uuid": "b63f73e7-16e9-4bff-89f7-f515e98a5a0e", + "siteRegistry": false, + "dateNoted": "2015-04-30", + "parcelID": "18603", + "crownLandUsePIN": "18763", + "crownLandFileNumber": "20508", + "landDescription": "LOT 5 OF LOT 5 BLOCK 1 DISTRICT LOT 3 PLAN 6248" }, { + "uuid": "cc61b21f-705f-4a79-b483-b9aee1be8a07", "siteRegistry": false, - "dateNoted": "2022-02-12", - "parcelID": "16830", - "crownLandUsePIN": "18669", - "crownLandFileNumber": "20247", - "landDescription": "LOT 4 OF LOT 1 BLOCK 2 DISTRICT LOT 2 PLAN 6306" + "dateNoted": "2021-07-19", + "parcelID": "16062", + "crownLandUsePIN": "19770", + "crownLandFileNumber": "15740", + "landDescription": "LOT 2 OF LOT 1 BLOCK 5 DISTRICT LOT 3 PLAN 6448" }, { + "uuid": "d3f1f52a-df89-41cc-9b09-8aee93a706f8", "siteRegistry": false, - "dateNoted": "2020-10-19", - "parcelID": "16418", - "crownLandUsePIN": "19910", - "crownLandFileNumber": "17853", - "landDescription": "LOT 5 OF LOT 5 BLOCK 3 DISTRICT LOT 1 PLAN 5335" + "dateNoted": "2014-02-07", + "parcelID": "17650", + "crownLandUsePIN": "18985", + "crownLandFileNumber": "19005", + "landDescription": "LOT 1 OF LOT 3 BLOCK 1 DISTRICT LOT 1 PLAN 4502" } ], "siteDisclosures": [ { - "siteRegistry": true, - "dateReceived": "2022-12-01", - "dateCompleted": "2022-07-11", - "dateEntered": "2022-07-08", - "dateRegistrar": "2019-04-10", - "dateLocalAuthorityReceived": "2021-07-10", - "summary": "Nulla quia asperiores nostrum praesentium.\nEa explicabo consequuntur quos quos velit et mollitia earum.", - "informationUsed": "Magnam quos eos.\nRerum debitis eos fugiat eos tenetur quia hic hic blanditiis.\nBlanditiis eos consequatur.\nUt unde officiis.", - "pastOrPresentOrders": "Deserunt facilis neque impedit sed rerum nemo autem.", + "uuid": "4bc1315a-f753-42db-baa2-e72f0aa77a5c", + "siteRegistry": false, + "dateReceived": "2014-07-15", + "dateCompleted": "2019-11-16", + "dateEntered": "2023-09-15", + "dateRegistrar": "2014-04-26", + "dateLocalAuthorityReceived": "2023-06-23", + "summary": "Voluptas inventore nulla fugiat nisi alias.", + "informationUsed": "Maiores nemo excepturi dolore harum dignissimos iure voluptatum.\nIpsam non odio deserunt facere beatae quisquam laborum.\nFuga quo eveniet aliquid tempora nobis harum autem adipisci quo.", + "pastOrPresentOrders": "Beatae quidem nihil voluptatem voluptas.\nCorporis corrupti distinctio cumque.\nIure dignissimos quidem necessitatibus tempore.", "commercialAndIndustrialPurposes": [ { + "uuid": "c7a69ad1-3b4b-4880-b733-0da0ba1b3198", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "uuid": "34685b2b-05f0-481c-b515-4a48a30e4b90", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "uuid": "d1fafea1-8c69-4c03-823b-81cdd3790e09", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { + "uuid": "180c841f-0098-46e7-93cb-0af116d2652b", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false + "siteRegistry": true } ] }, { - "siteRegistry": true, - "dateReceived": "2023-06-03", - "dateCompleted": "2018-01-19", - "dateEntered": "2023-07-01", - "dateRegistrar": "2019-09-27", - "dateLocalAuthorityReceived": "2020-06-11", - "summary": "Ducimus est odit ullam dicta laborum non.\nIste enim laboriosam accusantium.", - "informationUsed": "Minus reprehenderit corrupti quos placeat deserunt magnam libero sunt.\nOfficia molestiae dignissimos.\nSuscipit voluptatibus tempore accusantium aspernatur doloremque officia rem.", - "pastOrPresentOrders": "Labore consequuntur qui incidunt repellat.\nFugiat amet deserunt repellat in harum magnam harum mollitia.\nConsequatur neque suscipit qui tempore voluptas adipisci veritatis animi.", + "uuid": "ab61e146-a63a-42c9-b900-c06a63d77614", + "siteRegistry": false, + "dateReceived": "2016-08-27", + "dateCompleted": "2016-02-13", + "dateEntered": "2022-07-29", + "dateRegistrar": "2016-09-14", + "dateLocalAuthorityReceived": "2020-05-24", + "summary": "Et cum cupiditate minus omnis blanditiis in similique.\nIure reiciendis incidunt est dolore ducimus repellat commodi.\nUt cumque ratione deleniti blanditiis.", + "informationUsed": "Voluptatum possimus atque nesciunt.\nNemo quas expedita eveniet accusamus quidem vitae repudiandae cum.\nCumque modi ad numquam eos deserunt animi maiores.", + "pastOrPresentOrders": "Quos eius quibusdam vitae nobis culpa sapiente.\nAutem harum magni blanditiis.\nInventore alias quia qui eos et eum molestiae.", "commercialAndIndustrialPurposes": [ { - "scheduleReference": "F2*", + "uuid": "b04a70af-55c6-4188-a75e-881f61635457", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false + "siteRegistry": true }, { + "uuid": "bfd346a9-bcd2-48c5-ae07-950a90d8c6de", "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, { + "uuid": "a0d968d0-ba59-4743-9176-a0e20a191f3c", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false }, { - "scheduleReference": "F1*", + "uuid": "ede0bf14-ab65-42a4-8d01-a017065559cb", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false } @@ -15151,109 +17765,122 @@ ], "activityLog": [ { + "uuid": "9ad9ede6-beb2-4dcf-b7de-3f80dc768343", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "ORTIZ JIMMIE", - "timestamp": "2016-10-26" + "user": "HOWE TESS", + "timestamp": "2023-01-17" }, { + "uuid": "9d70daa4-a6d9-4ca4-8b21-0612a223addf", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "HICKLE BRIDGETTE", - "timestamp": "2023-08-07" + "user": "LOCKMAN MOLLIE", + "timestamp": "2022-03-29" }, { - "siteRegistry": true, + "uuid": "93345bb5-ce0e-4911-856d-6121506dcb38", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "HACKETT-OBERBRUNNER VERNA", - "timestamp": "2017-08-28" + "user": "PURDY ELEONORE", + "timestamp": "2022-11-17" }, { - "siteRegistry": true, + "uuid": "c390864a-ffaf-4383-83f5-fa7ff730c83c", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "ROGAHN LEANN", - "timestamp": "2019-09-18" + "user": "PADBERG DANYKA", + "timestamp": "2018-05-29" }, { + "uuid": "4fdc676c-ac5f-4530-9e5c-bea5877a8adf", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "CARROLL QUINTON", - "timestamp": "2021-01-30" + "user": "KLEIN MYRIAM", + "timestamp": "2021-02-18" }, { - "siteRegistry": true, + "uuid": "470f7be5-d25c-4f92-beb2-b2e89f4c17a5", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "CUMMERATA NEVA", - "timestamp": "2014-07-18" + "user": "NICOLAS KARI", + "timestamp": "2016-02-28" }, { - "siteRegistry": false, + "uuid": "643f759a-9859-4a4b-b23f-ea9787d6ca40", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "SAWAYN ROGER", - "timestamp": "2021-07-19" + "user": "CRONIN GIANNI", + "timestamp": "2023-01-31" }, { - "siteRegistry": false, + "uuid": "9b631a14-1f9e-49ad-8e88-6d5fb918ca24", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "HODKIEWICZ ELLIS", - "timestamp": "2014-07-28" + "user": "OLSON KAYLIN", + "timestamp": "2023-05-17" }, { - "siteRegistry": true, + "uuid": "75853ae1-a54a-4faa-aea3-27217f77fd7f", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "STOLTENBERG CAROL", - "timestamp": "2014-10-26" + "user": "WILKINSON ALVERA", + "timestamp": "2020-08-23" } ], "associatedSites": [ { - "dateNoted": "2015-08-03", + "uuid": "a77ce27d-bd00-456c-b046-99b28aa74251", + "dateNoted": "2017-12-18", "notes": "", - "parcelID": "15703", - "siteID": "17287", - "siteRegistry": false + "parcelID": "17582", + "siteID": "15573", + "siteRegistry": true }, { - "dateNoted": "2014-02-13", + "uuid": "4eba853a-956b-4444-8377-b68f3f8c7261", + "dateNoted": "2015-04-23", "notes": "", - "parcelID": "19386", - "siteID": "18013", + "parcelID": "18935", + "siteID": "15493", "siteRegistry": true }, { - "dateNoted": "2013-10-29", + "uuid": "38713cdc-2f05-4228-8e82-e5e7f1959ccc", + "dateNoted": "2014-04-07", "notes": "", - "parcelID": "18890", - "siteID": "17329", - "siteRegistry": true + "parcelID": "20893", + "siteID": "16470", + "siteRegistry": false } ] }, { - "uuid": "77f93435-75c1-4180-a1aa-3058f5cf4b7a", - "siteID": 15994, - "address": "7749 Estel Parkways", - "latitude": 52.6637, - "longitude": -127.2884, - "lastUpdated": "2017-11-17", - "city": "Vonboro", - "region": "Cariboo", - "victoriaFile": "26250-20/6363", + "uuid": "8c6f3b99-65ad-499f-8b1c-ad6289dc470e", + "siteID": 16651, + "address": "3431 VonRueden Meadow", + "latitude": 54.8134, + "longitude": -121.9222, + "lastUpdated": "2022-10-19", + "city": "East Laverna", + "region": "Thompson-Okanagan", + "victoriaFile": "26250-20/7351", "regionalFile": "N/A", "parcelIDs": [ - 1015100, - 8478277, - 108846, - 4409188, - 6644790 + 4287217, + 6487545, + 4617304, + 2800722, + 6475167 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2019-09-14", - "completed": "2020-10-16", - "initiated": "2022-01-05", - "ministryContact": "DIBBERT DALLAS", + "uuid": "de767df8-b057-45e0-9429-9dbec345fd1d", + "createdAt": "2014-05-31", + "completed": "2017-03-09", + "initiated": "2015-12-07", + "ministryContact": "DICKI DARIANA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -15262,23 +17889,26 @@ ], "notationParticipants": [ { + "uuid": "94f06958-2572-4141-909c-3fc3cf18465c", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true }, { + "uuid": "d2b96166-f126-4d88-a5c8-63c8ec87114e", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true } ], "siteRegistry": false }, { - "createdAt": "2017-03-08", - "completed": "2020-05-16", - "initiated": "2019-03-12", - "ministryContact": "RUSSEL MARCIA", + "uuid": "7464edeb-25e2-4dc1-b523-27618d3353c5", + "createdAt": "2014-08-19", + "completed": "2016-08-16", + "initiated": "2022-07-18", + "ministryContact": "KSHLERIN TERRILL", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -15287,28 +17917,26 @@ ], "notationParticipants": [ { + "uuid": "d527cc82-d334-408f-94a0-278fc3b0ea27", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true + "role": "REQUESTED BY", + "siteRegistry": false }, { + "uuid": "37d3944f-1707-469a-a486-d980744f2887", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2021-01-07", - "completed": "2023-04-22", - "initiated": "2021-09-27", - "ministryContact": "RATKE SISTER", + "uuid": "54d779e7-110c-4a0d-8562-e1f83122f89b", + "createdAt": "2017-05-21", + "completed": "2015-06-13", + "initiated": "2022-04-26", + "ministryContact": "BERGSTROM FREDERICK", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -15317,29 +17945,45 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", + "uuid": "09707847-e58d-4f5a-8398-aa7be8435d40", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false }, { + "uuid": "d18b57ff-7709-4760-ab48-4f9c310d1108", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "754ad96c-9714-4d7a-acf5-3a9067d9558c", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false }, { + "uuid": "f6c5d40a-418e-4d37-905f-6d3a9167d1a9", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "efadf639-5422-4f5b-af84-5f7a655f0e82", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true } ], "participants": [ { - "name": "AMET, DOLOR SIT", - "endDate": "2016-05-06", - "startDate": "2015-04-09", + "uuid": "3cf3adbb-fcfe-44e0-8849-c60f8eb62342", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2020-03-05", + "startDate": "2023-08-04", "notes": "", "roles": [ "ORGANIZATION" @@ -15347,9 +17991,10 @@ "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2015-08-03", - "startDate": "2019-02-10", + "uuid": "7c9667c4-745d-43ce-aa59-66cc311f75c4", + "name": "AMET, DOLOR SIT", + "endDate": "2019-08-02", + "startDate": "2019-07-29", "notes": "", "roles": [ "ORGANIZATION" @@ -15357,215 +18002,207 @@ "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2016-01-08", - "startDate": "2017-09-02", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2020-04-25", - "startDate": "2022-05-20", + "uuid": "8a4e3fdf-16b8-42cd-a55f-6fde9748fff4", + "name": "IPSUM", + "endDate": "2014-12-18", + "startDate": "2014-07-27", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": false } ], "suspectLandUses": [ { + "uuid": "3e10870e-ccab-400f-8f7d-f367b3c8f901", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-05-14 (described on Site Profile dated 2014-05-14)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "notes": "INSERTED FOR SITE PROFILE DATED 2018-03-16 (described on Site Profile dated 2018-03-16)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { + "uuid": "6289037e-27ca-4d1c-a762-78a0c9e9175d", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2023-01-28 (described on Site Profile dated 2023-01-28)", + "notes": "INSERTED FOR SITE PROFILE DATED 2019-11-23 (described on Site Profile dated 2019-11-23)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-07-15 (described on Site Profile dated 2016-07-15)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" - }, - { + "uuid": "633905a0-81b5-4670-a675-a63b24ef10fa", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2013-11-06 (described on Site Profile dated 2013-11-06)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "notes": "INSERTED FOR SITE PROFILE DATED 2017-08-16 (described on Site Profile dated 2017-08-16)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], "parcelDescriptions": [ { + "uuid": "4e2e0aad-8626-45a4-bbd1-860b267acec5", "siteRegistry": true, - "dateNoted": "2020-02-29", - "parcelID": "20642", - "crownLandUsePIN": "17366", - "crownLandFileNumber": "19400", - "landDescription": "LOT 5 OF LOT 3 BLOCK 3 DISTRICT LOT 3 PLAN 4521" + "dateNoted": "2014-01-23", + "parcelID": "18421", + "crownLandUsePIN": "16875", + "crownLandFileNumber": "15817", + "landDescription": "LOT 2 OF LOT 5 BLOCK 1 DISTRICT LOT 2 PLAN 3716" + }, + { + "uuid": "f099edc2-d55e-44a5-bdec-64ea6dc29653", + "siteRegistry": false, + "dateNoted": "2023-07-06", + "parcelID": "16687", + "crownLandUsePIN": "19910", + "crownLandFileNumber": "18610", + "landDescription": "LOT 1 OF LOT 5 BLOCK 2 DISTRICT LOT 2 PLAN 9553" }, { + "uuid": "40751748-9c07-4a29-9b7a-c1ff517fff7f", "siteRegistry": true, - "dateNoted": "2021-12-19", - "parcelID": "16698", - "crownLandUsePIN": "16612", - "crownLandFileNumber": "20367", - "landDescription": "LOT 2 OF LOT 3 BLOCK 3 DISTRICT LOT 2 PLAN 7099" + "dateNoted": "2014-03-10", + "parcelID": "20123", + "crownLandUsePIN": "17353", + "crownLandFileNumber": "20350", + "landDescription": "LOT 1 OF LOT 3 BLOCK 2 DISTRICT LOT 5 PLAN 6034" }, { - "siteRegistry": false, - "dateNoted": "2016-04-02", - "parcelID": "16816", - "crownLandUsePIN": "15773", - "crownLandFileNumber": "17594", - "landDescription": "LOT 2 OF LOT 5 BLOCK 5 DISTRICT LOT 3 PLAN 6634" + "uuid": "2240403e-1b95-484f-a417-64186e8e3741", + "siteRegistry": true, + "dateNoted": "2013-10-22", + "parcelID": "17958", + "crownLandUsePIN": "20161", + "crownLandFileNumber": "15517", + "landDescription": "LOT 2 OF LOT 5 BLOCK 3 DISTRICT LOT 2 PLAN 8032" }, { - "siteRegistry": false, - "dateNoted": "2016-03-16", - "parcelID": "16496", - "crownLandUsePIN": "17442", - "crownLandFileNumber": "16268", - "landDescription": "LOT 4 OF LOT 3 BLOCK 1 DISTRICT LOT 2 PLAN 5772" + "uuid": "22582736-22c1-48c8-ad9b-03502579add4", + "siteRegistry": true, + "dateNoted": "2020-06-24", + "parcelID": "19696", + "crownLandUsePIN": "18093", + "crownLandFileNumber": "19050", + "landDescription": "LOT 3 OF LOT 2 BLOCK 3 DISTRICT LOT 2 PLAN 9342" } ], "siteDisclosures": [ { + "uuid": "d60b3b70-bca0-46da-b8c4-a2630689adbd", "siteRegistry": true, - "dateReceived": "2021-05-18", - "dateCompleted": "2014-09-06", - "dateEntered": "2023-09-06", - "dateRegistrar": "2019-01-19", - "dateLocalAuthorityReceived": "2014-11-14", - "summary": "Quidem officiis odio repellendus ratione corporis eum sunt.", - "informationUsed": "Nobis perspiciatis occaecati saepe.\nCorrupti veritatis ipsum alias hic.\nNesciunt facere facilis sed fugiat eius fugiat.\nDolorem amet odio explicabo et enim consequuntur.", - "pastOrPresentOrders": "Voluptate ipsam minima placeat soluta ratione optio.\nMinus explicabo saepe autem accusamus numquam sint quae veritatis.", + "dateReceived": "2022-01-20", + "dateCompleted": "2018-02-14", + "dateEntered": "2015-02-25", + "dateRegistrar": "2015-08-23", + "dateLocalAuthorityReceived": "2014-09-06", + "summary": "Laboriosam placeat alias aut neque voluptatum.\nEa labore fuga nihil.", + "informationUsed": "Qui sequi deleniti ipsum libero iusto molestiae officia exercitationem.\nVoluptas voluptatibus repellendus ea saepe est vero tempore nulla facilis.\nOptio cupiditate porro omnis rem placeat debitis consequatur corrupti ab.\nQuam consequatur tenetur odit.", + "pastOrPresentOrders": "Possimus unde suscipit.\nAd doloribus doloribus dignissimos fugiat.", "commercialAndIndustrialPurposes": [ { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true - }, - { - "scheduleReference": "F2*", + "uuid": "c8e9e5f3-63d6-48e8-98ef-fc7c6907fab8", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false }, { + "uuid": "bed9e3ba-94ab-4c92-895a-bef926d6ca8d", "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false - }, - { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true } ] } ], "activityLog": [ { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "WATSICA MARIBEL", - "timestamp": "2020-10-02" - }, - { + "uuid": "1f4f156b-b221-4e5c-963a-cee2b26a937a", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "SCHAEFER OLAF", - "timestamp": "2022-12-26" + "user": "GRANT GERARDO", + "timestamp": "2017-08-17" }, { - "siteRegistry": false, + "uuid": "8c9ff1a0-8733-4997-9862-9812671ff2b4", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "CUMMERATA ANDY", - "timestamp": "2014-06-25" + "user": "WIEGAND ROD", + "timestamp": "2017-07-23" }, { + "uuid": "8fbe94cb-6c82-417c-9b14-f1f7bb221aba", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "LITTEL CHANEL", - "timestamp": "2023-04-21" + "user": "FERRY MACY", + "timestamp": "2017-06-07" }, { + "uuid": "d90e59fb-1558-4790-9076-5f9643dfe450", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "SWIFT EDWINA", - "timestamp": "2022-11-05" + "user": "EMMERICH ERICK", + "timestamp": "2015-10-11" }, { - "siteRegistry": false, + "uuid": "8e450b9d-edff-4bc1-a416-34093f23cbc6", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "WILKINSON CHRISTIAN", - "timestamp": "2023-04-21" + "user": "TURNER CARLIE", + "timestamp": "2016-02-03" }, { + "uuid": "1bed96f0-5001-41ea-aa9f-1c805a17c1d4", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "LARSON CORINE", - "timestamp": "2019-01-21" + "user": "HOEGER CLARK", + "timestamp": "2022-06-14" }, { - "siteRegistry": false, + "uuid": "462a6163-ae69-4b34-a3ba-3ce4be64ec1f", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "DIBBERT LOUIE", - "timestamp": "2022-06-18" + "user": "BLICK ALYSA", + "timestamp": "2023-01-12" }, { - "siteRegistry": false, + "uuid": "ddf05604-0dd6-44b7-a279-d7a08c18fadd", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "PADBERG IGNACIO", - "timestamp": "2015-04-08" + "user": "BOGAN ELIZABETH", + "timestamp": "2016-03-16" } ], "associatedSites": [ { - "dateNoted": "2017-12-25", - "notes": "", - "parcelID": "19979", - "siteID": "19051", - "siteRegistry": true - }, - { - "dateNoted": "2014-07-02", + "uuid": "5174e639-8611-4877-973c-3d5371474bf8", + "dateNoted": "2019-06-20", "notes": "", - "parcelID": "15489", - "siteID": "17982", + "parcelID": "19745", + "siteID": "15345", "siteRegistry": false } ] }, { - "uuid": "d15a8f99-edc1-4c65-8108-5eba95e40905", - "siteID": 15482, - "address": "243 Liam Valley", - "latitude": 56.5062, - "longitude": -137.7754, - "lastUpdated": "2015-04-16", - "city": "Aubreefield", - "region": "Thompson-Okanagan", - "victoriaFile": "26250-20/4788", + "uuid": "3c33e012-ddc1-46d5-94bd-759f0da165d1", + "siteID": 15525, + "address": "2493 Champlin Pines", + "latitude": 56.8761, + "longitude": -118.2743, + "lastUpdated": "2017-04-26", + "city": "Thurmanhaven", + "region": "Cariboo", + "victoriaFile": "26250-20/17151", "regionalFile": "N/A", "parcelIDs": [ - 5327652, - 7337957, - 8686010, - 1864449, - 7392861 + 5882746, + 9242129, + 4484420, + 9654312, + 5589343 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2018-03-09", - "completed": "2020-04-11", - "initiated": "2021-06-25", - "ministryContact": "FRAMI LILY", + "uuid": "f98f5c44-e361-4a34-962f-3d028709a33a", + "createdAt": "2014-11-06", + "completed": "2017-06-17", + "initiated": "2023-06-14", + "ministryContact": "WALSH GERALDINE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -15574,33 +18211,44 @@ ], "notationParticipants": [ { + "uuid": "7c2458e1-fd9a-4629-9556-f2574827e65f", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false }, { + "uuid": "ba3ffb47-a26d-4ad7-9342-d510dd6801d4", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { + "uuid": "98378f9b-420e-418a-82c3-8ee1b81352d5", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false }, { + "uuid": "8c608cd6-df79-44d5-be81-a272dbcf1ae5", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "b798b1a2-01ce-434e-97f6-348cf3808940", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": false } ], "siteRegistry": true }, { - "createdAt": "2015-12-02", - "completed": "2017-01-31", - "initiated": "2022-12-08", - "ministryContact": "ORN DANE", + "uuid": "268bc799-5188-4076-85c8-78822fee50a3", + "createdAt": "2017-04-02", + "completed": "2019-08-05", + "initiated": "2022-06-03", + "ministryContact": "OKUNEVA COLE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -15609,29 +18257,148 @@ ], "notationParticipants": [ { + "uuid": "2c8f0053-3326-4157-b93f-adb25ec15d92", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false + "role": "SUBMITTED BY", + "siteRegistry": true }, { + "uuid": "6a3bbb1e-2c2e-49f2-9259-f11f260ab4b0", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "uuid": "445e6965-623b-4438-9b30-3fe84e50d213", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "uuid": "b2d1913a-ad55-4ee1-9fe5-51b2822615a0", + "createdAt": "2020-03-10", + "completed": "2014-03-21", + "initiated": "2022-03-23", + "ministryContact": "ROBEL JONATHON", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "uuid": "467ec3fc-a71b-4bdd-9a7b-da4ec8a15043", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "uuid": "a4bd012f-9861-4035-adc5-051faab7e853", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "dbef2609-a3df-4474-b70a-33033b3c246e", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "uuid": "22f1c140-0493-419b-9166-d2e1da0629a7", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "uuid": "f81025a8-d4d6-4545-a7aa-5e6335f75249", + "createdAt": "2014-10-17", + "completed": "2021-08-06", + "initiated": "2022-02-06", + "ministryContact": "FADEL NIKKO", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "uuid": "56ae933f-b190-450a-8a60-7ad858c1c951", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "uuid": "04b28510-4551-4e4b-8ebd-1e081fc88a34", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "uuid": "c7cc9969-4a77-49f9-a6c9-cf44fa1ab696", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": false }, { + "uuid": "b91ea381-e3fe-4cd3-b104-d4d47d76dd7b", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "uuid": "5cf1a3c9-7c83-4a31-8fdc-105c5726bf1f", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "uuid": "e53e5be4-4a6b-4a0f-a77e-5fe5c655e66a", + "createdAt": "2021-01-13", + "completed": "2016-05-21", + "initiated": "2017-04-20", + "ministryContact": "BOYLE-YOST KYLA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "uuid": "d6bd938a-8c3d-486f-a4fe-9c1aeba07b7d", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false }, { + "uuid": "abdc34a2-2e10-4d9a-b760-a9730ba72e44", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true }, { + "uuid": "ec4172fb-9a50-4e05-b093-154c054ff6f3", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false + }, + { + "uuid": "85ab8656-27a2-426d-bccd-c2ef3756f361", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true } ], "siteRegistry": false @@ -15639,19 +18406,21 @@ ], "participants": [ { - "name": "IPSUM", - "endDate": "2014-05-26", - "startDate": "2022-12-12", + "uuid": "719cfb97-4932-476a-9b9f-6a7abaef9973", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2017-02-14", + "startDate": "2015-04-17", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2019-10-14", - "startDate": "2023-07-18", + "uuid": "c5f5ee2f-10e1-41d0-9883-8562e83094e9", + "name": "IPSUM", + "endDate": "2015-09-26", + "startDate": "2017-05-31", "notes": "", "roles": [ "ORGANIZATION" @@ -15659,109 +18428,115 @@ "siteRegistry": true }, { - "name": "IPSUM", - "endDate": "2017-12-07", - "startDate": "2022-09-12", + "uuid": "5d0d0729-b924-42f9-94ff-4e5901e7762b", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2021-09-28", + "startDate": "2014-11-23", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true }, { + "uuid": "260d2ee1-b1d3-4bce-ada2-5a57caca7cbf", "name": "AMET, DOLOR SIT", - "endDate": "2022-06-04", - "startDate": "2017-05-28", + "endDate": "2014-10-15", + "startDate": "2018-09-14", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": false } ], "suspectLandUses": [ { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-09-21 (described on Site Profile dated 2017-09-21)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" - }, - { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-11-23 (described on Site Profile dated 2019-11-23)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" - }, - { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-06-25 (described on Site Profile dated 2014-06-25)", + "uuid": "a39dec95-f87d-402e-84e3-79112882b84f", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2018-09-30 (described on Site Profile dated 2018-09-30)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-10-04 (described on Site Profile dated 2016-10-04)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "uuid": "0251dc51-a74a-4a22-87cc-f71ee91af9fd", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2022-06-03 (described on Site Profile dated 2022-06-03)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2020-07-15 (described on Site Profile dated 2020-07-15)", + "uuid": "920d4c4a-f747-4595-ae36-b196a02860c7", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2020-12-17 (described on Site Profile dated 2020-12-17)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], "parcelDescriptions": [ { - "siteRegistry": false, - "dateNoted": "2017-04-06", - "parcelID": "20159", - "crownLandUsePIN": "18117", - "crownLandFileNumber": "15871", - "landDescription": "LOT 1 OF LOT 5 BLOCK 1 DISTRICT LOT 3 PLAN 8115" + "uuid": "56cfecd3-f626-4e2d-b451-a5dd443f6db6", + "siteRegistry": true, + "dateNoted": "2015-11-23", + "parcelID": "20193", + "crownLandUsePIN": "15936", + "crownLandFileNumber": "16547", + "landDescription": "LOT 1 OF LOT 5 BLOCK 5 DISTRICT LOT 1 PLAN 8091" }, { + "uuid": "8b998865-5fab-4c1d-9b39-1f34a2dbaa9a", "siteRegistry": true, - "dateNoted": "2017-05-16", - "parcelID": "20185", - "crownLandUsePIN": "18862", - "crownLandFileNumber": "20676", - "landDescription": "LOT 2 OF LOT 5 BLOCK 4 DISTRICT LOT 1 PLAN 8374" + "dateNoted": "2019-10-27", + "parcelID": "17261", + "crownLandUsePIN": "16261", + "crownLandFileNumber": "18587", + "landDescription": "LOT 4 OF LOT 2 BLOCK 1 DISTRICT LOT 3 PLAN 3310" }, { + "uuid": "5664ca0f-9f08-4cc9-811b-838bd412aaf8", "siteRegistry": false, - "dateNoted": "2015-10-17", - "parcelID": "19501", - "crownLandUsePIN": "19867", - "crownLandFileNumber": "16797", - "landDescription": "LOT 5 OF LOT 2 BLOCK 4 DISTRICT LOT 3 PLAN 7176" + "dateNoted": "2014-07-24", + "parcelID": "17908", + "crownLandUsePIN": "19707", + "crownLandFileNumber": "16315", + "landDescription": "LOT 5 OF LOT 1 BLOCK 3 DISTRICT LOT 2 PLAN 2973" + }, + { + "uuid": "cba6db56-476d-4459-b2fa-414fc224b2b6", + "siteRegistry": true, + "dateNoted": "2015-04-27", + "parcelID": "18054", + "crownLandUsePIN": "20254", + "crownLandFileNumber": "19641", + "landDescription": "LOT 5 OF LOT 4 BLOCK 5 DISTRICT LOT 3 PLAN 8359" } ], "siteDisclosures": [ { - "siteRegistry": true, - "dateReceived": "2015-11-07", - "dateCompleted": "2022-01-10", - "dateEntered": "2017-02-06", - "dateRegistrar": "2018-04-04", - "dateLocalAuthorityReceived": "2019-12-02", - "summary": "Libero aut soluta iusto vitae voluptatem error nihil sint.", - "informationUsed": "Commodi corporis atque.\nAsperiores fuga ducimus nisi ab in dolorem.\nQuam nemo mollitia ab consequuntur magni rerum.\nQuam cum sunt aut tempora eveniet.\nEnim iure tempora tempore ab excepturi cumque adipisci.", - "pastOrPresentOrders": "Minus omnis praesentium temporibus enim amet quam.", + "uuid": "707dcba6-7add-4005-abb1-155fc779e264", + "siteRegistry": false, + "dateReceived": "2017-05-03", + "dateCompleted": "2017-07-31", + "dateEntered": "2017-04-24", + "dateRegistrar": "2018-08-30", + "dateLocalAuthorityReceived": "2022-10-23", + "summary": "Dolorem quod minus tempore iure ab.\nVero tenetur illum explicabo nisi reprehenderit atque ea fuga maxime.", + "informationUsed": "Assumenda nemo odit aut mollitia distinctio fugit.\nImpedit facilis praesentium laudantium minus repudiandae sequi nam.\nAd veniam laudantium tempora quas at incidunt.\nDolores nesciunt quibusdam accusamus reiciendis.", + "pastOrPresentOrders": "Amet sunt alias occaecati numquam et similique repudiandae eos magnam.\nSed aut cumque amet laudantium odio facere.\nDicta dignissimos odio blanditiis nobis pariatur.", "commercialAndIndustrialPurposes": [ { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true + "uuid": "46931b4f-4223-4e6a-8713-bb4c19c380c6", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false }, { + "uuid": "48235e1d-a9a9-4513-bc7e-5917dfa73aab", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true + "siteRegistry": false }, { + "uuid": "741550b1-ab93-4a4b-a0a0-4eb97636186b", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false - }, - { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true } ] @@ -15769,97 +18544,106 @@ ], "activityLog": [ { + "uuid": "fd9513a1-1553-430c-905a-bbb6ad56b702", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "WINTHEISER BERNIECE", - "timestamp": "2016-01-22" + "user": "PARKER TRAVON", + "timestamp": "2016-01-21" }, { - "siteRegistry": true, + "uuid": "e499e97a-59af-4c9b-beac-e01706628459", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "REINGER BRANDI", - "timestamp": "2018-03-30" + "user": "RATKE EDGAR", + "timestamp": "2015-07-27" }, { - "siteRegistry": true, + "uuid": "cf66a5ac-be25-4ca7-be2e-3eab244495dd", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "YUNDT DELPHIA", - "timestamp": "2018-09-28" + "user": "WITTING PETE", + "timestamp": "2017-06-08" }, { + "uuid": "f97005f8-5ea4-4662-b8bc-3c9b7a2f8e63", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "DICKI BERNIE", - "timestamp": "2023-05-29" + "user": "CRIST ABBIE", + "timestamp": "2019-03-25" }, { + "uuid": "2577ced5-00df-4caf-b4dd-1d3ff619eb46", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "KERLUKE TANIA", - "timestamp": "2015-08-20" + "user": "AUFDERHAR UNIQUE", + "timestamp": "2016-10-24" }, { + "uuid": "f1d870e8-570f-4d74-a655-29d356274dd4", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "KOZEY KHALIL", - "timestamp": "2021-07-14" + "user": "PARISIAN FRITZ", + "timestamp": "2020-03-10" }, { + "uuid": "03f04ebc-d688-44cc-ab6e-60b83d450002", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "WARD CLARK", - "timestamp": "2015-10-07" - } - ], - "associatedSites": [ - { - "dateNoted": "2023-10-04", - "notes": "", - "parcelID": "16855", - "siteID": "16701", - "siteRegistry": false + "user": "YOST VERNER", + "timestamp": "2020-03-16" }, { - "dateNoted": "2023-07-06", - "notes": "", - "parcelID": "19430", - "siteID": "18801", - "siteRegistry": false + "uuid": "3a6ee1c2-34ab-4800-90a2-efb5ca73c9b6", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "RAYNOR CHELSEY", + "timestamp": "2018-11-24" }, { - "dateNoted": "2019-02-13", + "uuid": "53a41683-110b-434b-98db-21e2460a3ac2", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "SPORER EMILIO", + "timestamp": "2023-02-19" + } + ], + "associatedSites": [ + { + "uuid": "7b6b9076-b706-40ca-ba39-0363eb844265", + "dateNoted": "2016-07-13", "notes": "", - "parcelID": "18106", - "siteID": "19608", - "siteRegistry": false + "parcelID": "19964", + "siteID": "17062", + "siteRegistry": true } ] }, { - "uuid": "edc1e47d-fc36-432c-a55f-c540d1016b0c", - "siteID": 20407, - "address": "4593 Reinger Parks", - "latitude": 49.948, - "longitude": -122.5913, - "lastUpdated": "2017-02-17", - "city": "Fort Travonstead", - "region": "Thompson-Okanagan", - "victoriaFile": "26250-20/6017", + "uuid": "1d5f4084-7aa4-4402-a60d-8921dcd20480", + "siteID": 17528, + "address": "97750 Lynch Dale", + "latitude": 53.5081, + "longitude": -118.0984, + "lastUpdated": "2016-09-04", + "city": "Zanefort", + "region": "Kootenay", + "victoriaFile": "26250-20/19346", "regionalFile": "N/A", "parcelIDs": [ - 3154808, - 2946298, - 6963999, - 7834429, - 5251995 + 6390842, + 1638146, + 8596689, + 6340287, + 1467842 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2018-04-13", - "completed": "2019-11-18", - "initiated": "2017-04-23", - "ministryContact": "DICKENS OTIS", + "uuid": "d47b910f-f0c4-4de8-adfa-d0c84ebce478", + "createdAt": "2020-03-05", + "completed": "2018-07-08", + "initiated": "2023-06-25", + "ministryContact": "O'REILLY-STROMAN MERL", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -15868,38 +18652,106 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "ec5a8ca8-be90-431b-b78c-d9e257934357", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", + "uuid": "03b8eb40-32a4-403a-a8c8-357e40284393", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true }, { + "uuid": "5a79e167-9ba1-47c3-81af-a4b739d3bf6b", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "uuid": "97f50f96-165b-462e-8b4c-f48843f9cdc0", + "createdAt": "2023-02-17", + "completed": "2018-03-13", + "initiated": "2016-11-29", + "ministryContact": "HEGMANN WATSON", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "uuid": "d8e19c52-e59e-4269-abd6-d3acc522b674", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "c844ed46-9904-48d2-84d4-406636ac1d6f", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", "siteRegistry": false }, { + "uuid": "6af86a67-ee93-4cbd-a73b-43399d8056d5", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "uuid": "d0726931-8e22-4132-9145-3e41547ee6f5", + "createdAt": "2016-01-19", + "completed": "2015-09-04", + "initiated": "2022-05-14", + "ministryContact": "LANGOSH ELIJAH", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "uuid": "42ea6de4-bd04-4fa5-b5ae-e79a9e9005db", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": true }, { + "uuid": "aa21e331-7b51-4c42-af42-998e60c17c41", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true + }, + { + "uuid": "e05b15e6-7e3e-427d-8fb9-3a493c2da671", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "db117be7-5cf6-4552-b94d-d40dd62e8032", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2018-01-30", - "completed": "2017-02-15", - "initiated": "2016-01-14", - "ministryContact": "MILLS CASANDRA", + "uuid": "1a8e79b1-038b-464d-b6a5-a21b8b0b17d2", + "createdAt": "2020-05-30", + "completed": "2021-03-01", + "initiated": "2019-11-19", + "ministryContact": "KUHN GARRY", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -15908,28 +18760,44 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "uuid": "5a9eb830-1784-47d0-97a3-2b25f4db4bfa", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": true }, { + "uuid": "ef7e6a21-0ef4-4950-ba60-89d64a0c6b25", "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "uuid": "1331ab25-66fa-4f9a-b727-b75511609232", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "uuid": "1391406e-a94b-4903-a16c-c7572389c165", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "0d7bae80-bf49-4024-bb1a-294ce9ae5282", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false } ], "siteRegistry": true }, { - "createdAt": "2020-03-29", - "completed": "2021-07-05", - "initiated": "2020-12-13", - "ministryContact": "WEHNER LARON", + "uuid": "ecf0f3fc-e4bc-4a72-9ac0-de5cf31e78a0", + "createdAt": "2015-09-23", + "completed": "2018-07-20", + "initiated": "2020-02-22", + "ministryContact": "HAMILL AFTON", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -15938,39 +18806,33 @@ ], "notationParticipants": [ { + "uuid": "f7b306d3-9dac-44ce-9aea-6f270e3f7be8", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "uuid": "ee20abf7-2b2b-4244-83ad-89fc5bd346c2", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", + "uuid": "1f988931-f497-4651-aa02-ed38fcdd4a7f", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false } ], "participants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2014-05-17", - "startDate": "2019-11-24", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2019-08-30", - "startDate": "2022-06-06", + "uuid": "6fd56778-3500-4a70-a0a5-9a8976c36a49", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2022-08-04", + "startDate": "2022-03-04", "notes": "", "roles": [ "EMPLOYEE" @@ -15978,19 +18840,10 @@ "siteRegistry": false }, { + "uuid": "85c266ad-cb9b-480f-a62f-2f1e9040d3b2", "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2020-07-23", - "startDate": "2023-05-23", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": true - }, - { - "name": "IPSUM", - "endDate": "2015-03-31", - "startDate": "2022-11-10", + "endDate": "2014-11-09", + "startDate": "2023-03-13", "notes": "", "roles": [ "ORGANIZATION" @@ -15998,143 +18851,234 @@ "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2023-06-14", - "startDate": "2018-03-17", + "uuid": "f86b4fd0-aeef-429c-ae79-75988e7469f1", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2022-06-29", + "startDate": "2017-02-12", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": true } ], "suspectLandUses": [ { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2020-02-17 (described on Site Profile dated 2020-02-17)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "uuid": "48f1be4b-fcc2-4a01-9b05-c27fc8bf6cba", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2015-02-03 (described on Site Profile dated 2015-02-03)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { + "uuid": "cf9d3557-8b27-4130-99c1-5a79aa2d93c9", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-06-21 (described on Site Profile dated 2022-06-21)", + "notes": "INSERTED FOR SITE PROFILE DATED 2015-02-09 (described on Site Profile dated 2015-02-09)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "uuid": "c7f80cba-b8b7-4c95-85da-bde012d80556", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2019-08-14 (described on Site Profile dated 2019-08-14)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], "parcelDescriptions": [ { + "uuid": "21018934-9519-451b-b070-8e67569e8438", + "siteRegistry": true, + "dateNoted": "2016-04-14", + "parcelID": "16956", + "crownLandUsePIN": "16708", + "crownLandFileNumber": "20583", + "landDescription": "LOT 1 OF LOT 1 BLOCK 1 DISTRICT LOT 3 PLAN 6815" + }, + { + "uuid": "2428de9e-0dbf-4c40-9220-8192d6c6bf30", "siteRegistry": false, - "dateNoted": "2020-11-19", - "parcelID": "20860", - "crownLandUsePIN": "19491", - "crownLandFileNumber": "16545", - "landDescription": "LOT 5 OF LOT 1 BLOCK 5 DISTRICT LOT 4 PLAN 4782" + "dateNoted": "2019-02-08", + "parcelID": "15282", + "crownLandUsePIN": "20261", + "crownLandFileNumber": "18336", + "landDescription": "LOT 1 OF LOT 5 BLOCK 5 DISTRICT LOT 5 PLAN 4259" }, { + "uuid": "6cd42d17-66fb-41aa-bf00-082301eeebc2", "siteRegistry": false, - "dateNoted": "2018-05-30", - "parcelID": "16178", - "crownLandUsePIN": "20724", - "crownLandFileNumber": "17747", - "landDescription": "LOT 5 OF LOT 4 BLOCK 5 DISTRICT LOT 5 PLAN 3391" + "dateNoted": "2019-02-03", + "parcelID": "20285", + "crownLandUsePIN": "18192", + "crownLandFileNumber": "17967", + "landDescription": "LOT 1 OF LOT 2 BLOCK 5 DISTRICT LOT 4 PLAN 5872" } ], "siteDisclosures": [ { + "uuid": "be2e8f50-676b-40c0-a467-3aefafef444f", "siteRegistry": false, - "dateReceived": "2019-12-05", - "dateCompleted": "2020-11-16", - "dateEntered": "2015-09-01", - "dateRegistrar": "2015-08-16", - "dateLocalAuthorityReceived": "2017-05-25", - "summary": "Dicta excepturi laborum cumque perferendis animi minus asperiores temporibus.\nOptio sapiente esse tempore nobis cupiditate dicta.", - "informationUsed": "Quae ducimus laudantium consequatur architecto.\nQuos amet culpa delectus laudantium incidunt.\nMagnam consequuntur unde quis facilis.\nRatione dolor eius.", - "pastOrPresentOrders": "Natus veritatis magnam corrupti vero laboriosam nemo at sapiente omnis.\nAccusantium illum dicta reiciendis earum harum.\nVoluptatem doloribus esse nemo maiores culpa totam similique harum nulla.", + "dateReceived": "2017-08-26", + "dateCompleted": "2015-12-06", + "dateEntered": "2014-10-18", + "dateRegistrar": "2021-03-02", + "dateLocalAuthorityReceived": "2022-11-04", + "summary": "Quisquam doloribus aliquam veritatis incidunt provident assumenda nostrum quas.", + "informationUsed": "Adipisci expedita saepe aut eius earum id libero illo quas.\nAtque cumque explicabo suscipit maiores fugiat odit fugiat aperiam.\nVoluptatem asperiores quia doloribus distinctio quod perferendis nobis error dolorum.\nNulla reprehenderit eaque nesciunt culpa porro consequatur dignissimos nobis aliquid.\nOccaecati fugit occaecati.", + "pastOrPresentOrders": "Non repellendus harum omnis consequuntur praesentium id perspiciatis voluptatum sapiente.\nNeque impedit vel quasi doloremque quam tempore.", "commercialAndIndustrialPurposes": [ { + "uuid": "92d8e37f-b1b7-437f-9726-dd28d968a7c4", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false }, { - "scheduleReference": "F2*", + "uuid": "77bfb15e-0e91-4953-9524-334697422ea5", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { + "uuid": "41cfbb57-7538-4086-9e34-4348d8eea929", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false + }, + { + "uuid": "6e1803a5-50de-4974-933a-aa2f72fd704d", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + } + ] + }, + { + "uuid": "4bde4858-290b-4288-b34a-ff02cb530722", + "siteRegistry": false, + "dateReceived": "2019-03-15", + "dateCompleted": "2020-02-28", + "dateEntered": "2023-05-19", + "dateRegistrar": "2014-04-27", + "dateLocalAuthorityReceived": "2023-02-21", + "summary": "Modi aliquid quo.\nVel ut nam officia.\nAlias ducimus facere aspernatur necessitatibus quidem doloremque corrupti rerum.", + "informationUsed": "Vero dignissimos quaerat cupiditate quae repudiandae animi minima minus.\nDolores praesentium odio doloribus earum sequi deleniti architecto.\nQuidem deleniti quos nemo architecto autem numquam beatae asperiores.\nMinima porro quibusdam corrupti porro tempora molestias consectetur consectetur similique.\nNisi nulla amet impedit sequi blanditiis.", + "pastOrPresentOrders": "Tempora corporis quia iure laborum harum voluptate quia sed.", + "commercialAndIndustrialPurposes": [ + { + "uuid": "2ef94280-18cd-4e4f-8a49-b305300ba9be", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "uuid": "76a55a13-a1c4-4877-9e24-32f2f549ce52", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true } ] } ], "activityLog": [ { + "uuid": "8acae33b-fdb0-4e3b-bffc-fbe2b9073285", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "LYNCH SHAUN", + "timestamp": "2021-10-05" + }, + { + "uuid": "d97c2286-eafc-49ed-ac70-b330a5046886", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "REICHERT DELFINA", - "timestamp": "2015-09-12" + "user": "DENESIK NATHAN", + "timestamp": "2017-08-29" }, { - "siteRegistry": true, + "uuid": "1bc0b2be-c403-416b-8827-7b295b8b8807", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "KREIGER SHAUN", - "timestamp": "2021-11-16" + "user": "MACEJKOVIC MERCEDES", + "timestamp": "2014-02-03" }, { + "uuid": "b8122b36-e18b-420a-9e84-244f7f45c169", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "SCHAEFER DARIANA", - "timestamp": "2013-12-06" + "user": "BALISTRERI LESSIE", + "timestamp": "2016-03-01" + }, + { + "uuid": "3e5ce9c6-2659-4e19-adad-fe8a9832dcd5", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "GRANT DOMENICK", + "timestamp": "2023-05-06" + }, + { + "uuid": "bf24d899-c3c2-45df-a3e1-6de30619f60b", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "MERTZ TATUM", + "timestamp": "2023-02-27" + }, + { + "uuid": "66b468d0-cabe-44d8-9c9a-70e17be834f3", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "SCHINNER GENERAL", + "timestamp": "2014-03-27" }, { + "uuid": "5a57a728-229b-425c-ac5c-da243ca05ede", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "KING ERVIN", - "timestamp": "2022-11-02" + "user": "MOHR ZACHARIAH", + "timestamp": "2017-10-19" }, { + "uuid": "a40a15d2-ec04-42c0-b751-7eb19695eb16", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "KERTZMANN ROWAN", - "timestamp": "2017-03-30" + "user": "SENGER SEDRICK", + "timestamp": "2021-12-01" } ], "associatedSites": [ { - "dateNoted": "2023-06-01", + "uuid": "5ba67a69-27aa-4097-830f-fd417ae2b607", + "dateNoted": "2018-11-29", "notes": "", - "parcelID": "18440", - "siteID": "18404", + "parcelID": "18890", + "siteID": "20429", "siteRegistry": true } ] }, { - "uuid": "bb250d17-cd43-407d-8845-3979ea4d8f85", - "siteID": 20468, - "address": "17050 Ophelia Creek", - "latitude": 56.5159, - "longitude": -136.3001, - "lastUpdated": "2022-05-22", - "city": "Port Derick", - "region": "Mainland/Southwest", - "victoriaFile": "26250-20/2690", + "uuid": "d8dee980-c101-4f70-a421-325bc6982a63", + "siteID": 19716, + "address": "39156 Bruen Mount", + "latitude": 50.9702, + "longitude": -121.1627, + "lastUpdated": "2014-05-28", + "city": "Bodeport", + "region": "Cariboo", + "victoriaFile": "26250-20/987", "regionalFile": "N/A", "parcelIDs": [ - 4418482, - 5827357, - 5770514, - 5084508, - 2121788 + 9828848, + 2874504, + 1360662, + 7479421, + 9000149 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2022-02-13", - "completed": "2016-12-14", - "initiated": "2020-12-26", - "ministryContact": "MUELLER DIEGO", + "uuid": "234207c9-6b09-49e6-854e-40d371122b00", + "createdAt": "2018-06-23", + "completed": "2018-06-27", + "initiated": "2022-06-22", + "ministryContact": "GOLDNER CLOVIS", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -16143,23 +19087,26 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "2c7d91d8-45bc-42fe-9cda-35011ab8680d", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { + "uuid": "5a21ba23-0e5d-4d39-960b-a4c71ca32f4c", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false } ], "siteRegistry": false }, { - "createdAt": "2018-04-05", - "completed": "2014-08-30", - "initiated": "2020-12-20", - "ministryContact": "ROWE JUSTINE", + "uuid": "0c3425cc-e7c1-4550-9ccd-991ef5658fef", + "createdAt": "2014-02-10", + "completed": "2018-05-16", + "initiated": "2020-07-14", + "ministryContact": "KEELING MARGARETT", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -16168,63 +19115,38 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "uuid": "34e9aa75-4554-48e6-b840-6a2076284bc7", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", "siteRegistry": true }, { + "uuid": "32375b32-2778-478e-8ccb-3d308a7cf2cb", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - } - ], - "siteRegistry": false - }, - { - "createdAt": "2013-12-10", - "completed": "2018-05-27", - "initiated": "2017-03-21", - "ministryContact": "WALKER JUSTINA", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { + "uuid": "73a790cb-a9c9-451c-9ec2-bfca9dcb290d", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "29ef5808-5c7a-421c-b36f-cd3dc2fb190d", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2021-10-14", - "completed": "2017-03-17", - "initiated": "2013-11-19", - "ministryContact": "KONOPELSKI PASQUALE", + "uuid": "20a39fde-5aa9-4cb3-8f00-b2095245345c", + "createdAt": "2021-11-20", + "completed": "2022-10-31", + "initiated": "2016-04-24", + "ministryContact": "MANN GLENNIE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -16233,21 +19155,13 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { + "uuid": "a0646e09-fa46-45cb-8cc7-8556a29733d3", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false }, { + "uuid": "32c61746-02cf-4341-afd6-c39ec23a7ff0", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true @@ -16256,10 +19170,11 @@ "siteRegistry": false }, { - "createdAt": "2017-09-25", - "completed": "2020-06-13", - "initiated": "2019-04-11", - "ministryContact": "CONSIDINE PANSY", + "uuid": "1eba9932-85f9-4faa-a52d-b551b5922ea2", + "createdAt": "2021-09-15", + "completed": "2016-10-14", + "initiated": "2019-12-21", + "ministryContact": "HUEL JALON", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -16268,39 +19183,66 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "uuid": "ef380b0b-cfbf-4153-a28d-13d4fa434854", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "12d94cec-1d37-4d05-9584-882ea4226139", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { + "uuid": "6234cf4d-30f1-44a7-9d2c-df7346324bcd", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false } ], "participants": [ { + "uuid": "9f734772-b9d9-475a-9f67-3d0208a7c7c7", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2019-04-28", + "startDate": "2015-04-05", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "uuid": "6de6d1b4-caab-406f-ab60-22efffe85363", "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2017-03-11", - "startDate": "2022-05-03", + "endDate": "2020-09-19", + "startDate": "2022-01-26", "notes": "", "roles": [ "EMPLOYEE" ], + "siteRegistry": false + }, + { + "uuid": "047106c9-859c-4e97-bda4-d72fb85973c5", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2017-02-18", + "startDate": "2022-06-17", + "notes": "", + "roles": [ + "ORGANIZATION" + ], "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2017-06-11", - "startDate": "2019-09-03", + "uuid": "093b25a1-e334-4689-bf91-6791b9ad1b29", + "name": "IPSUM", + "endDate": "2020-01-22", + "startDate": "2022-02-21", "notes": "", "roles": [ "ORGANIZATION" @@ -16310,91 +19252,95 @@ ], "suspectLandUses": [ { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2020-09-02 (described on Site Profile dated 2020-09-02)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "uuid": "4114c6ee-401b-4b3d-bf47-fea2626b3945", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2020-11-26 (described on Site Profile dated 2020-11-26)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { + "uuid": "3cb02b90-8d39-4388-b259-570f5fc3851c", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-05-15 (described on Site Profile dated 2018-05-15)", + "notes": "INSERTED FOR SITE PROFILE DATED 2014-07-08 (described on Site Profile dated 2014-07-08)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-05-05 (described on Site Profile dated 2017-05-05)", + "uuid": "4adebc4f-82de-4adb-bdb9-858f231a4089", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2017-02-27 (described on Site Profile dated 2017-02-27)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "uuid": "487a8798-079c-44ce-a2cb-f009fab250e0", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2016-02-29 (described on Site Profile dated 2016-02-29)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], "parcelDescriptions": [ { + "uuid": "4feb73b5-b2d2-4b18-980a-ec8226224336", "siteRegistry": false, - "dateNoted": "2014-02-09", - "parcelID": "15204", - "crownLandUsePIN": "18818", - "crownLandFileNumber": "20331", - "landDescription": "LOT 3 OF LOT 4 BLOCK 5 DISTRICT LOT 1 PLAN 8031" + "dateNoted": "2015-11-15", + "parcelID": "16110", + "crownLandUsePIN": "17554", + "crownLandFileNumber": "19486", + "landDescription": "LOT 5 OF LOT 3 BLOCK 2 DISTRICT LOT 1 PLAN 9660" }, { + "uuid": "9adf0cdb-a57d-4a4a-9ad2-5864f8e901dd", "siteRegistry": true, - "dateNoted": "2015-06-16", - "parcelID": "19740", - "crownLandUsePIN": "16970", - "crownLandFileNumber": "18930", - "landDescription": "LOT 1 OF LOT 3 BLOCK 4 DISTRICT LOT 4 PLAN 5330" - }, - { - "siteRegistry": false, - "dateNoted": "2022-02-10", - "parcelID": "17715", - "crownLandUsePIN": "17295", - "crownLandFileNumber": "19971", - "landDescription": "LOT 2 OF LOT 2 BLOCK 5 DISTRICT LOT 2 PLAN 7091" + "dateNoted": "2014-09-06", + "parcelID": "19373", + "crownLandUsePIN": "19899", + "crownLandFileNumber": "20969", + "landDescription": "LOT 5 OF LOT 4 BLOCK 4 DISTRICT LOT 1 PLAN 7203" }, { - "siteRegistry": false, - "dateNoted": "2023-07-15", - "parcelID": "17776", - "crownLandUsePIN": "18966", - "crownLandFileNumber": "17801", - "landDescription": "LOT 3 OF LOT 4 BLOCK 2 DISTRICT LOT 4 PLAN 9157" + "uuid": "5ee15000-e8b1-4fab-ab4a-4630d6e5a293", + "siteRegistry": true, + "dateNoted": "2018-12-02", + "parcelID": "19499", + "crownLandUsePIN": "15325", + "crownLandFileNumber": "20116", + "landDescription": "LOT 3 OF LOT 2 BLOCK 1 DISTRICT LOT 3 PLAN 6146" }, { + "uuid": "e119fc65-b784-4a64-a7ca-cf06da6a7056", "siteRegistry": false, - "dateNoted": "2019-03-02", - "parcelID": "18764", - "crownLandUsePIN": "15841", - "crownLandFileNumber": "16187", - "landDescription": "LOT 3 OF LOT 4 BLOCK 1 DISTRICT LOT 5 PLAN 3168" + "dateNoted": "2023-06-09", + "parcelID": "18219", + "crownLandUsePIN": "18719", + "crownLandFileNumber": "15246", + "landDescription": "LOT 1 OF LOT 5 BLOCK 2 DISTRICT LOT 3 PLAN 4465" } ], "siteDisclosures": [ { - "siteRegistry": false, - "dateReceived": "2015-06-01", - "dateCompleted": "2014-07-05", - "dateEntered": "2022-09-16", - "dateRegistrar": "2019-03-17", - "dateLocalAuthorityReceived": "2018-08-11", - "summary": "Aspernatur tempore quidem beatae modi possimus.", - "informationUsed": "Cumque minus dolores nam accusantium.\nOdio cum soluta soluta ratione consequatur tempora quisquam expedita.\nDoloremque sequi nesciunt distinctio quia repudiandae.\nIn numquam sequi nihil nisi unde reiciendis quasi ullam praesentium.\nLaudantium autem quos perferendis quas consequuntur.", - "pastOrPresentOrders": "Beatae beatae maxime expedita repellat.", + "uuid": "069fe525-3bd9-473a-a1ab-55b38a9863c9", + "siteRegistry": true, + "dateReceived": "2023-03-23", + "dateCompleted": "2013-10-29", + "dateEntered": "2020-09-23", + "dateRegistrar": "2020-10-13", + "dateLocalAuthorityReceived": "2015-10-12", + "summary": "Esse non autem temporibus quos.\nCumque sit animi.", + "informationUsed": "Quo beatae debitis.\nCorrupti iure autem est quaerat aliquam nobis.\nImpedit eveniet officiis beatae optio.", + "pastOrPresentOrders": "Reprehenderit libero placeat dolores molestiae.\nEarum nostrum qui repellendus quasi voluptates quibusdam labore et.\nFugit maxime sapiente officia sequi pariatur debitis doloribus.", "commercialAndIndustrialPurposes": [ { + "uuid": "ddff557b-8de0-4e32-93a2-2ca0fbb1653d", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false - }, - { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { + "uuid": "706ffb4b-364d-4d9a-9b46-c22845ff42cc", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false + "siteRegistry": true }, { + "uuid": "86a15648-c725-43b0-b40c-b142f1a0ca0d", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false @@ -16402,126 +19348,132 @@ ] }, { + "uuid": "c4cdf0bd-8d46-4d90-9f30-84c4865fd6a2", "siteRegistry": false, - "dateReceived": "2015-09-08", - "dateCompleted": "2022-04-23", - "dateEntered": "2018-09-18", - "dateRegistrar": "2017-07-16", - "dateLocalAuthorityReceived": "2020-07-06", - "summary": "Consectetur eius ad vero reprehenderit commodi saepe assumenda magnam totam.", - "informationUsed": "Atque libero reiciendis sunt voluptas quo quod voluptatibus.\nFugiat soluta iusto labore dolores deleniti iure.\nQuo reprehenderit dolorem iste.\nVoluptas maxime facilis enim cum accusamus ipsum magni commodi.", - "pastOrPresentOrders": "Itaque nemo tempora minima facere ratione numquam sit a exercitationem.", + "dateReceived": "2016-05-18", + "dateCompleted": "2014-10-07", + "dateEntered": "2015-09-28", + "dateRegistrar": "2021-11-27", + "dateLocalAuthorityReceived": "2016-10-19", + "summary": "Officiis blanditiis velit repellendus perferendis earum.\nItaque commodi delectus quis officiis blanditiis.", + "informationUsed": "Ratione dicta fugiat perspiciatis nostrum illum corporis fuga.\nIpsam eos porro molestiae reiciendis animi suscipit.\nExpedita blanditiis eum nostrum quibusdam magnam nemo libero veritatis quae.\nDoloribus nemo enim culpa voluptatem.\nLaboriosam voluptas quaerat vero.", + "pastOrPresentOrders": "Eum quibusdam aliquam quo nam nam accusamus.\nEarum et similique reprehenderit provident quidem fugiat.", "commercialAndIndustrialPurposes": [ { + "uuid": "9baff3af-3569-46f9-b6f4-c19d50d9c93b", "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { + "uuid": "25e14491-3a86-406f-a9c8-53b540a2bda0", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false + }, + { + "uuid": "fcdc8ce0-ef2e-4764-a38d-a0bf8e5f9f4f", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "uuid": "b569953f-fbec-4520-ba8f-c35360b3ba64", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true } ] } ], "activityLog": [ { + "uuid": "10ed62ac-b250-4959-ba8b-68d12547b7d7", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "STAMM LONZO", - "timestamp": "2023-06-04" + "user": "MCCLURE COLUMBUS", + "timestamp": "2018-05-25" }, { + "uuid": "d2062a25-22be-4732-8384-aa1a2e6fd1f2", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "HANE LACY", - "timestamp": "2022-02-08" + "user": "GORCZANY ISADORE", + "timestamp": "2014-04-22" }, { + "uuid": "34c474a6-e60e-45a0-a719-181a49206fef", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "THIEL ALDA", - "timestamp": "2018-08-28" - }, - { - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "LARKIN ALIZE", - "timestamp": "2021-01-15" + "user": "STIEDEMANN BRANDT", + "timestamp": "2018-01-12" }, { - "siteRegistry": false, + "uuid": "3041654c-d644-40e5-ba8f-13460217f8e4", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "BERGE FRIEDRICH", - "timestamp": "2017-08-01" + "user": "THIEL ALVERA", + "timestamp": "2022-09-12" }, { + "uuid": "e5092877-c590-4cda-9124-65aaee8a118c", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "CONROY HESTER", - "timestamp": "2014-03-07" + "user": "LARSON DAMEON", + "timestamp": "2019-01-13" }, { + "uuid": "190707e5-139c-4441-add1-e36f7c84f8bb", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "POLLICH LYSANNE", - "timestamp": "2015-02-14" + "user": "GRADY ADONIS", + "timestamp": "2021-05-30" }, { + "uuid": "6eb70dec-ee29-4977-9af7-b02c1645868a", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "LUETTGEN ORAN", - "timestamp": "2022-11-30" - }, - { - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "GOODWIN BERNICE", - "timestamp": "2020-01-12" - }, - { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "ROHAN NATALIE", - "timestamp": "2021-07-02" + "user": "CASSIN JONAS", + "timestamp": "2022-03-28" } ], "associatedSites": [ { - "dateNoted": "2014-02-10", + "uuid": "098a8ed6-6634-4c53-8bc2-d7e54f715cb2", + "dateNoted": "2015-02-06", "notes": "", - "parcelID": "18041", - "siteID": "19907", - "siteRegistry": false + "parcelID": "19829", + "siteID": "19481", + "siteRegistry": true } ] }, { - "uuid": "932d1edb-a26c-4d15-87fb-533627bec3e9", - "siteID": 15675, - "address": "25014 Rohan Well", - "latitude": 52.1587, - "longitude": -131.794, - "lastUpdated": "2019-11-06", - "city": "Marilieport", + "uuid": "53e31d07-54f6-4096-b84c-0743c208017d", + "siteID": 18395, + "address": "802 Deckow Islands", + "latitude": 49.9203, + "longitude": -123.5499, + "lastUpdated": "2020-11-30", + "city": "Hudsonmouth", "region": "Thompson-Okanagan", - "victoriaFile": "26250-20/10376", + "victoriaFile": "26250-20/8310", "regionalFile": "N/A", "parcelIDs": [ - 6263758, - 7786795, - 6416805, - 8782660, - 5993471 + 940665, + 2895900, + 3926952, + 5177751, + 7965400 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2019-02-03", - "completed": "2019-11-26", - "initiated": "2023-04-10", - "ministryContact": "KEELING EMILIO", + "uuid": "5736d59f-8037-4d08-b673-a40a753f16a6", + "createdAt": "2021-05-19", + "completed": "2021-08-30", + "initiated": "2015-09-25", + "ministryContact": "PAUCEK MAUREEN", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -16530,22 +19482,14 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", + "uuid": "288ed172-475c-475a-9688-24a46d7bdebe", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false }, { + "uuid": "86c8301c-6c4b-4a1d-8f15-c1d02a0c7949", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true } @@ -16553,10 +19497,11 @@ "siteRegistry": true }, { - "createdAt": "2019-11-09", - "completed": "2017-06-26", - "initiated": "2014-01-11", - "ministryContact": "DENESIK MARIELLE", + "uuid": "a8286a1b-ee7a-402b-b691-c35688360acf", + "createdAt": "2022-10-07", + "completed": "2018-01-24", + "initiated": "2016-01-12", + "ministryContact": "KEEBLER JAIDEN", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -16565,28 +19510,44 @@ ], "notationParticipants": [ { + "uuid": "d4b38de4-844c-46e5-b164-5696422e3842", "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "uuid": "d8f91491-5190-46c5-bd32-bd2aba3790a7", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true }, { + "uuid": "89fe7753-b725-4dee-9c23-0006b5c6a19b", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "72ec9d30-5df9-46ec-9f2e-8a5634f87c7b", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { + "uuid": "fb3cb0f7-d69e-41d1-b0a3-c1dd1eb0b2c3", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false } ], "siteRegistry": false }, { - "createdAt": "2018-07-11", - "completed": "2021-05-22", - "initiated": "2023-09-13", - "ministryContact": "GISLASON ABIGAIL", + "uuid": "56452a42-3224-4b09-80c3-f55e6bcf5049", + "createdAt": "2016-10-26", + "completed": "2022-01-15", + "initiated": "2022-03-02", + "ministryContact": "DARE DEJON", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -16595,38 +19556,72 @@ ], "notationParticipants": [ { + "uuid": "feefba0a-edf1-429f-a4d5-7477574565c3", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": true }, { + "uuid": "0a725750-c521-4174-8b48-d84cb8bad4cc", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true + "role": "SUBMITTED BY", + "siteRegistry": false }, { + "uuid": "075a4b6c-d6f1-4ab6-8501-1331cdf9b9c7", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "uuid": "62261ded-8ab4-4c88-9f51-ef7d0faca553", + "createdAt": "2018-10-14", + "completed": "2018-10-25", + "initiated": "2019-10-10", + "ministryContact": "PROHASKA COLTEN", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "uuid": "13d2c644-3379-4133-8212-e22ecd5b1aa0", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": false }, { + "uuid": "def1266b-248a-418e-a76e-27efb70b92ad", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true }, { + "uuid": "586d1c93-e675-48b8-9215-a8e62c2bac48", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false + }, + { + "uuid": "3b85d34a-0075-41a2-8842-4a76bee2c443", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2018-04-09", - "completed": "2016-06-19", - "initiated": "2017-03-09", - "ministryContact": "MCCLURE SIMEON", + "uuid": "8af5339b-7f6c-4666-8419-26b45c7b4bd9", + "createdAt": "2017-10-08", + "completed": "2016-01-13", + "initiated": "2023-08-20", + "ministryContact": "LEANNON MOLLIE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -16635,11 +19630,25 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", + "uuid": "9a8eb41a-06bf-4986-a681-2d9b12f734cc", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false + }, + { + "uuid": "fc3be6aa-54ab-4dd2-b802-d9c164fef6b8", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false }, { + "uuid": "8fe17001-8b74-408a-9777-8ce2993deca5", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "48a7393a-8c82-4771-a4a9-61675828920a", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true @@ -16650,215 +19659,269 @@ ], "participants": [ { + "uuid": "9b134ac8-c8ce-4034-8d7d-58fcd4d2ab77", "name": "IPSUM", - "endDate": "2014-03-20", - "startDate": "2021-03-06", + "endDate": "2015-12-30", + "startDate": "2015-12-04", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": false + "siteRegistry": true }, { - "name": "AMET, DOLOR SIT", - "endDate": "2018-02-01", - "startDate": "2022-08-16", + "uuid": "52ce0dd8-acba-4203-8cdd-2d110af9b8d0", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2019-08-04", + "startDate": "2017-03-05", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": false - }, - { - "name": "IPSUM", - "endDate": "2018-03-02", - "startDate": "2019-05-16", - "notes": "", - "roles": [ - "EMPLOYEE" - ], "siteRegistry": true } ], "suspectLandUses": [ { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2013-12-08 (described on Site Profile dated 2013-12-08)", + "uuid": "779d2fb5-466f-4f6e-b6b2-b80af2cda2f1", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2019-11-05 (described on Site Profile dated 2019-11-05)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-09-19 (described on Site Profile dated 2014-09-19)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" - }, - { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-02-17 (described on Site Profile dated 2018-02-17)", + "uuid": "fd8e2f70-fb07-450e-8ecd-780d1b44a2ab", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2018-03-24 (described on Site Profile dated 2018-03-24)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { + "uuid": "4c9c4265-e863-4ff6-8d0e-f2e9df9df194", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-07-24 (described on Site Profile dated 2021-07-24)", + "notes": "INSERTED FOR SITE PROFILE DATED 2017-12-17 (described on Site Profile dated 2017-12-17)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-02-25 (described on Site Profile dated 2014-02-25)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "uuid": "5a382535-3bb5-4411-8df8-937a3cb5dd65", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2016-05-11 (described on Site Profile dated 2016-05-11)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], "parcelDescriptions": [ { + "uuid": "faa7ec3f-47d3-45bf-9109-65ea5a898be4", "siteRegistry": true, - "dateNoted": "2022-11-17", - "parcelID": "20619", - "crownLandUsePIN": "19599", - "crownLandFileNumber": "15462", - "landDescription": "LOT 5 OF LOT 1 BLOCK 4 DISTRICT LOT 2 PLAN 6435" + "dateNoted": "2019-03-05", + "parcelID": "19142", + "crownLandUsePIN": "19129", + "crownLandFileNumber": "16013", + "landDescription": "LOT 2 OF LOT 4 BLOCK 1 DISTRICT LOT 4 PLAN 6687" }, { - "siteRegistry": true, - "dateNoted": "2013-11-19", - "parcelID": "19708", - "crownLandUsePIN": "16332", - "crownLandFileNumber": "15681", - "landDescription": "LOT 4 OF LOT 3 BLOCK 2 DISTRICT LOT 5 PLAN 6454" + "uuid": "9a8d7be9-3c1e-4f66-bae0-59e52b8b2b13", + "siteRegistry": false, + "dateNoted": "2019-06-08", + "parcelID": "17967", + "crownLandUsePIN": "19769", + "crownLandFileNumber": "16204", + "landDescription": "LOT 2 OF LOT 4 BLOCK 4 DISTRICT LOT 1 PLAN 5758" }, { + "uuid": "3ade9020-38da-48cc-968a-3c6086d9e428", "siteRegistry": false, - "dateNoted": "2016-12-11", - "parcelID": "16383", - "crownLandUsePIN": "18946", - "crownLandFileNumber": "16853", - "landDescription": "LOT 4 OF LOT 5 BLOCK 3 DISTRICT LOT 4 PLAN 4167" + "dateNoted": "2014-03-30", + "parcelID": "16580", + "crownLandUsePIN": "18892", + "crownLandFileNumber": "17857", + "landDescription": "LOT 5 OF LOT 4 BLOCK 3 DISTRICT LOT 5 PLAN 5800" + }, + { + "uuid": "2a52c4b2-48f5-469f-afea-9720e9651c4c", + "siteRegistry": false, + "dateNoted": "2014-12-19", + "parcelID": "18583", + "crownLandUsePIN": "15333", + "crownLandFileNumber": "16595", + "landDescription": "LOT 5 OF LOT 5 BLOCK 1 DISTRICT LOT 3 PLAN 3532" } ], "siteDisclosures": [ { + "uuid": "198413b8-e857-4502-a53d-74fdd106ef4d", "siteRegistry": true, - "dateReceived": "2021-03-25", - "dateCompleted": "2019-07-21", - "dateEntered": "2013-12-13", - "dateRegistrar": "2018-08-24", - "dateLocalAuthorityReceived": "2018-09-07", - "summary": "Architecto eaque laboriosam.\nNisi asperiores officia dicta beatae deserunt.\nVitae molestias tempora modi vitae culpa sapiente.", - "informationUsed": "Quos error debitis incidunt qui nostrum rem optio delectus.\nEst fugit molestias vitae aliquam eveniet.\nRecusandae consequatur quia nesciunt possimus voluptatum.", - "pastOrPresentOrders": "Delectus assumenda alias consectetur praesentium error non.", + "dateReceived": "2018-03-26", + "dateCompleted": "2018-11-21", + "dateEntered": "2016-10-07", + "dateRegistrar": "2020-01-30", + "dateLocalAuthorityReceived": "2015-01-28", + "summary": "Reprehenderit doloremque nobis officia.", + "informationUsed": "Eos possimus accusamus excepturi commodi alias voluptate at non eius.\nAutem beatae quasi exercitationem tempore quasi sint corporis temporibus quibusdam.\nIpsum quae consequatur id maiores provident quis perspiciatis perferendis.\nEnim repellendus sunt numquam occaecati enim.\nVoluptas quos quasi omnis quasi aliquid sit assumenda enim.", + "pastOrPresentOrders": "Praesentium sequi dolorum modi dolor.\nLibero sint vel iure provident ex.\nAt nesciunt deserunt.", "commercialAndIndustrialPurposes": [ { - "scheduleReference": "F1*", + "uuid": "39bb2720-b809-4b8c-a3b5-8218193e85e5", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false }, { + "uuid": "e05adb88-e789-4e2e-874c-f32fe1e88336", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false + "siteRegistry": true }, { + "uuid": "4770c5ba-1a45-43ab-8509-19fb3c24e036", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false + "siteRegistry": true }, { + "uuid": "a77e8fe5-01aa-4db2-abb2-ad43f367d287", "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + } + ] + }, + { + "uuid": "97b03ef7-b86c-42e3-a020-1432e5781ed3", + "siteRegistry": false, + "dateReceived": "2016-02-26", + "dateCompleted": "2023-02-08", + "dateEntered": "2019-11-07", + "dateRegistrar": "2016-12-24", + "dateLocalAuthorityReceived": "2021-04-25", + "summary": "Quis ex quibusdam accusamus ex facere.\nTenetur modi fugit soluta illum nulla earum perspiciatis dicta enim.", + "informationUsed": "Nesciunt eaque aliquid totam assumenda at doloremque.\nEveniet corrupti voluptatum expedita ut modi.\nEaque beatae dolor ullam quibusdam ex a blanditiis.", + "pastOrPresentOrders": "Ut ipsa tempore officiis soluta soluta nobis.", + "commercialAndIndustrialPurposes": [ + { + "uuid": "abb32ff2-f0f0-4665-bb4f-9cfdcfe356a8", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true + }, + { + "uuid": "e6aef90b-889d-48a1-b49c-c541dbc980bf", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true } ] } ], "activityLog": [ { + "uuid": "b186ef57-2d4a-4028-b498-be4d8d828c4c", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "DONNELLY-RICE IRWIN", - "timestamp": "2019-08-24" - }, - { - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "KOEPP REINA", - "timestamp": "2023-07-03" + "user": "SWIFT-DIBBERT BRYANA", + "timestamp": "2018-06-08" }, { + "uuid": "5b44ccaf-8ea0-45dc-a2bf-6872bbfd00a9", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "HODKIEWICZ GLORIA", - "timestamp": "2023-07-18" + "user": "KOSS-GLEICHNER JOSEFA", + "timestamp": "2015-08-31" }, { - "siteRegistry": false, + "uuid": "ce772a8f-d4b7-46aa-ac6c-87382610482f", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "TURNER ARDITH", - "timestamp": "2019-08-31" + "user": "RAU BRANNON", + "timestamp": "2022-11-24" }, { + "uuid": "0cad316b-1ccb-4e93-a812-8373ac1549ff", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "WHITE ISABELL", - "timestamp": "2020-05-07" + "user": "NIENOW HUMBERTO", + "timestamp": "2021-05-27" }, { + "uuid": "f8d7f6b4-d105-4617-a811-754fe23d51b9", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "SCHAEFER NATHAN", - "timestamp": "2020-04-02" + "user": "KOCH ANTONIETTA", + "timestamp": "2021-04-15" }, { + "uuid": "35392e61-6366-45e7-b0d3-ccfe55ebb0f3", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "RATKE ABBIGAIL", - "timestamp": "2023-01-29" + "user": "EFFERTZ CLAIRE", + "timestamp": "2021-02-06" }, { - "siteRegistry": false, + "uuid": "350a6232-ce5d-425d-a2d1-055c9601094f", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "WILLIAMSON RUBEN", - "timestamp": "2018-02-15" + "user": "DACH LACY", + "timestamp": "2017-08-21" }, { + "uuid": "d91a78f3-345f-451d-904e-c250c7c9a531", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "HERZOG-ROBERTS JOHNATHON", - "timestamp": "2016-08-04" + "user": "KASSULKE BENTON", + "timestamp": "2018-12-04" } ], "associatedSites": [ { - "dateNoted": "2017-04-11", + "uuid": "4eae5ab2-d1e0-4243-b686-75c3a76577a3", + "dateNoted": "2014-11-24", + "notes": "", + "parcelID": "15696", + "siteID": "17528", + "siteRegistry": false + }, + { + "uuid": "f1275d35-f683-4958-9363-597e33e4e879", + "dateNoted": "2020-01-16", + "notes": "", + "parcelID": "20546", + "siteID": "16202", + "siteRegistry": false + }, + { + "uuid": "6e72f00f-8f45-437c-aad9-e7b27bd33aa4", + "dateNoted": "2021-06-03", "notes": "", - "parcelID": "20851", - "siteID": "16162", + "parcelID": "15469", + "siteID": "18428", "siteRegistry": false } ] }, { - "uuid": "66f2f21f-ad35-45ed-b421-b5e9c0bdec33", - "siteID": 20758, - "address": "848 Augusta Camp", - "latitude": 56.0962, - "longitude": -132.2269, - "lastUpdated": "2016-10-03", - "city": "Brandyburgh", - "region": "Thompson-Okanagan", - "victoriaFile": "26250-20/5440", + "uuid": "17c72677-ef8e-4837-9af2-e265ec1a713f", + "siteID": 19884, + "address": "3615 Kozey Mall", + "latitude": 49.8384, + "longitude": -123.8233, + "lastUpdated": "2019-01-11", + "city": "South Rylanport", + "region": "Vancouver Island/Coast", + "victoriaFile": "26250-20/16173", "regionalFile": "N/A", "parcelIDs": [ - 9122075, - 4162427, - 8163402, - 2630216, - 8542968 + 718861, + 2634258, + 7872742, + 9480711, + 5986227 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2014-10-05", - "completed": "2021-10-04", - "initiated": "2022-06-03", - "ministryContact": "HUDSON LENNA", + "uuid": "fd8c3ceb-9354-4ee4-82df-47cf69a21c17", + "createdAt": "2022-01-15", + "completed": "2017-10-29", + "initiated": "2020-10-27", + "ministryContact": "BINS JOSIANE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -16867,28 +19930,26 @@ ], "notationParticipants": [ { + "uuid": "a92ce659-d051-4945-9574-127c8b8c899c", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { + "uuid": "b401add9-76da-49bf-bab3-09a60ae91526", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2017-06-17", - "completed": "2019-09-25", - "initiated": "2016-05-30", - "ministryContact": "BERGE JADA", + "uuid": "3826b1dd-ef1d-4038-bd49-ea3af1052c8f", + "createdAt": "2016-08-25", + "completed": "2022-02-12", + "initiated": "2017-12-26", + "ministryContact": "TURCOTTE DELPHA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -16897,22 +19958,20 @@ ], "notationParticipants": [ { + "uuid": "ef750185-b2c3-4e68-9ebe-293889e01257", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "00b877f1-f96d-4880-b8ac-18d282e253e6", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "a11c8fcf-d350-4364-b55e-c4d133d1159c", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true } @@ -16920,10 +19979,11 @@ "siteRegistry": false }, { - "createdAt": "2023-02-06", - "completed": "2021-09-15", - "initiated": "2016-07-18", - "ministryContact": "HETTINGER DELFINA", + "uuid": "38d889bb-42eb-4096-8000-169a05d140b5", + "createdAt": "2019-01-15", + "completed": "2015-05-12", + "initiated": "2020-12-19", + "ministryContact": "EMARD CAESAR", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -16932,63 +19992,32 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { + "uuid": "876dd6de-cff8-4a73-9878-13615b9b7c93", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - } - ], - "siteRegistry": false - }, - { - "createdAt": "2017-10-30", - "completed": "2017-01-07", - "initiated": "2020-01-31", - "ministryContact": "SPENCER ALEXIE", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { + "uuid": "2c10ae26-bbf5-4d83-8d68-fa032368b8ab", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", + "uuid": "5c576904-786f-4545-945e-6a59c93dc66d", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2020-12-25", - "completed": "2023-06-30", - "initiated": "2017-07-31", - "ministryContact": "HACKETT MACY", + "uuid": "8d1bac00-afb7-41b6-a3f1-85f4cf5c46ea", + "createdAt": "2022-03-18", + "completed": "2018-12-09", + "initiated": "2023-06-07", + "ministryContact": "LANGOSH MARIELA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -16997,59 +20026,56 @@ ], "notationParticipants": [ { + "uuid": "8704c6ad-0b07-4717-945f-823c158d85d9", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "uuid": "0dea082a-3ded-4b29-941a-24e6ec13c347", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "26a2abb0-d101-497a-b20f-4b5575ee0e67", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true }, { + "uuid": "61afac9c-ae98-4142-a3da-0f59ee018cc8", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false + "role": "REQUESTED BY", + "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "8e4fe267-6686-457e-84e5-3b9884105cb2", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false } ], "participants": [ { + "uuid": "0ed6a780-4e18-4e21-9f9c-c3c98282ff9f", "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2023-04-02", - "startDate": "2021-05-15", + "endDate": "2017-04-05", + "startDate": "2015-03-15", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": true - }, - { - "name": "AMET, DOLOR SIT", - "endDate": "2016-02-16", - "startDate": "2017-01-27", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": true + "siteRegistry": false }, { + "uuid": "f287b666-5a3e-4b5b-8ced-bdfa842656fe", "name": "SHELL CANADA PRODUCTS", - "endDate": "2018-11-15", - "startDate": "2022-08-14", + "endDate": "2023-09-12", + "startDate": "2021-12-24", "notes": "", "roles": [ "EMPLOYEE" @@ -17057,194 +20083,224 @@ "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2014-06-06", - "startDate": "2016-04-18", + "uuid": "91912d44-d52e-43dc-8f6b-fa05f07f8e5e", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2020-08-12", + "startDate": "2023-04-16", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": false }, { + "uuid": "c851bd9f-4a61-45e7-b98c-81e34e7cc270", "name": "IPSUM", - "endDate": "2015-07-27", - "startDate": "2023-04-09", + "endDate": "2014-12-06", + "startDate": "2017-08-18", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true } ], "suspectLandUses": [ { + "uuid": "6ba60039-7080-475f-b390-fa2771a1edfb", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-01-23 (described on Site Profile dated 2022-01-23)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" - }, - { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-08-03 (described on Site Profile dated 2021-08-03)", + "notes": "INSERTED FOR SITE PROFILE DATED 2022-12-12 (described on Site Profile dated 2022-12-12)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { + "uuid": "1132bdfd-5048-4ab9-b8c0-b42c2ec1a417", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-07-23 (described on Site Profile dated 2016-07-23)", + "notes": "INSERTED FOR SITE PROFILE DATED 2013-11-08 (described on Site Profile dated 2013-11-08)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-01-21 (described on Site Profile dated 2022-01-21)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" - }, - { + "uuid": "0427eeaa-4036-4d5e-bb31-03c2c75a86c1", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-05-30 (described on Site Profile dated 2019-05-30)", + "notes": "INSERTED FOR SITE PROFILE DATED 2014-11-18 (described on Site Profile dated 2014-11-18)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], "parcelDescriptions": [ { - "siteRegistry": true, - "dateNoted": "2018-08-10", - "parcelID": "20401", - "crownLandUsePIN": "19666", - "crownLandFileNumber": "19107", - "landDescription": "LOT 1 OF LOT 3 BLOCK 4 DISTRICT LOT 1 PLAN 8621" + "uuid": "4dcfc670-b0c9-4140-a3af-4126fa5bece8", + "siteRegistry": false, + "dateNoted": "2022-09-27", + "parcelID": "15855", + "crownLandUsePIN": "17898", + "crownLandFileNumber": "19276", + "landDescription": "LOT 1 OF LOT 3 BLOCK 3 DISTRICT LOT 2 PLAN 8297" }, { - "siteRegistry": true, - "dateNoted": "2016-10-15", - "parcelID": "18771", - "crownLandUsePIN": "17040", - "crownLandFileNumber": "20212", - "landDescription": "LOT 3 OF LOT 1 BLOCK 3 DISTRICT LOT 2 PLAN 9549" + "uuid": "7443340d-c099-4628-a8ca-e4837a3784bc", + "siteRegistry": false, + "dateNoted": "2023-08-16", + "parcelID": "17983", + "crownLandUsePIN": "15878", + "crownLandFileNumber": "20260", + "landDescription": "LOT 4 OF LOT 1 BLOCK 2 DISTRICT LOT 2 PLAN 7052" }, { - "siteRegistry": true, - "dateNoted": "2020-01-11", - "parcelID": "20378", - "crownLandUsePIN": "18274", - "crownLandFileNumber": "18786", - "landDescription": "LOT 1 OF LOT 2 BLOCK 5 DISTRICT LOT 5 PLAN 7168" + "uuid": "716a3b38-6c6d-452e-85e5-57f2a304dda7", + "siteRegistry": false, + "dateNoted": "2019-06-29", + "parcelID": "18143", + "crownLandUsePIN": "20588", + "crownLandFileNumber": "17979", + "landDescription": "LOT 5 OF LOT 3 BLOCK 4 DISTRICT LOT 2 PLAN 8946" } ], "siteDisclosures": [ { + "uuid": "9b7bb562-2c17-4579-835c-eadd95a361a7", "siteRegistry": true, - "dateReceived": "2014-03-18", - "dateCompleted": "2021-10-24", - "dateEntered": "2019-09-03", - "dateRegistrar": "2019-12-29", - "dateLocalAuthorityReceived": "2015-02-13", - "summary": "Totam possimus id repellat inventore.", - "informationUsed": "Veniam recusandae nulla dolores eos ab nesciunt suscipit fuga.\nQuas at harum similique iste.\nRecusandae quis quisquam sint enim aspernatur vero distinctio veniam voluptate.\nSed inventore blanditiis ad atque suscipit delectus veniam aperiam saepe.\nEst ut quas.", - "pastOrPresentOrders": "Officia accusamus aliquid.\nAperiam quas nam consectetur quam occaecati fugit.\nAccusantium aliquid esse dolorum illo aliquam inventore facere molestias quos.", + "dateReceived": "2017-06-29", + "dateCompleted": "2019-04-23", + "dateEntered": "2017-01-15", + "dateRegistrar": "2019-08-20", + "dateLocalAuthorityReceived": "2020-04-18", + "summary": "Vel delectus ea sint eveniet quaerat.\nEos occaecati libero voluptate.\nAtque adipisci illum sapiente animi cupiditate laudantium.", + "informationUsed": "Ea magnam fuga vero expedita iusto enim id.\nNisi enim voluptate cum officiis.\nNemo perferendis odit eligendi corporis.\nSaepe sed unde est possimus in quas ratione quo inventore.\nMinima minus modi nihil animi voluptate voluptate harum alias.", + "pastOrPresentOrders": "Tempora modi quod doloremque animi necessitatibus maxime.", "commercialAndIndustrialPurposes": [ { + "uuid": "a57eabeb-c829-4723-b56f-b930aabcc9e8", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false }, { - "scheduleReference": "F2*", + "uuid": "434159bd-9d4b-494d-88b8-999d243cb5b3", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, { + "uuid": "3580aca1-2f4a-4edb-b7bc-b25811da9c7d", "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + } + ] + }, + { + "uuid": "1efc26dd-3ebb-4281-ab3d-3f5e8b3f6a93", + "siteRegistry": false, + "dateReceived": "2019-01-28", + "dateCompleted": "2017-09-24", + "dateEntered": "2014-07-31", + "dateRegistrar": "2018-04-10", + "dateLocalAuthorityReceived": "2014-05-31", + "summary": "Commodi voluptate reiciendis fugit beatae blanditiis sunt ad doloribus.", + "informationUsed": "Cupiditate facilis ipsa.\nMinima veniam at distinctio in sunt et alias.\nAd dolorem dolorem facere voluptatem aliquam ea esse eius.\nAsperiores ut velit ab recusandae voluptatibus.\nAb earum optio.", + "pastOrPresentOrders": "Molestias eaque culpa nulla doloremque.", + "commercialAndIndustrialPurposes": [ + { + "uuid": "b21fc0c1-747b-49cf-8ba7-2efd96fc193a", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true + }, + { + "uuid": "f916a4ae-9cc4-4afd-94f5-21a419a06923", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "uuid": "5f76b618-a606-4a73-95e5-f337169102ea", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false } ] } ], "activityLog": [ { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "SMITH LOU", - "timestamp": "2022-08-06" - }, - { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "SCHMITT SONNY", - "timestamp": "2015-04-21" - }, - { - "siteRegistry": true, + "uuid": "69a87b0e-008f-495e-bb98-7a44ff8a6441", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "ABSHIRE BERNIE", - "timestamp": "2023-09-14" + "user": "RYAN WHITNEY", + "timestamp": "2023-02-22" }, { + "uuid": "40b0b42a-0d17-4a96-86b4-d6daad103cbb", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "FRANEY ARACELI", - "timestamp": "2014-03-01" + "user": "WINDLER GODFREY", + "timestamp": "2019-11-15" }, { + "uuid": "b06159c1-d789-4c66-8ead-a6c95f7bc2d1", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "PURDY MAXIE", - "timestamp": "2016-11-01" + "user": "BOTSFORD ILIANA", + "timestamp": "2015-11-12" }, { + "uuid": "ff27eb5c-f6e5-4457-b1c2-4a47258ea612", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "BRAUN ADRIANNA", - "timestamp": "2015-09-29" + "user": "BARTOLETTI ZOEY", + "timestamp": "2013-11-11" }, { - "siteRegistry": true, + "uuid": "755655a7-3b12-435f-a064-5d1ad3c37e30", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "EMMERICH TYREE", - "timestamp": "2016-02-09" + "user": "STROMAN JEFFRY", + "timestamp": "2020-12-15" }, { - "siteRegistry": true, + "uuid": "cbf4ae7d-f050-406b-be78-09f80d29e830", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "BARTOLETTI-HARRIS BRENNA", - "timestamp": "2016-05-18" + "user": "STROMAN KARIANE", + "timestamp": "2021-01-24" } ], "associatedSites": [ { - "dateNoted": "2019-01-28", + "uuid": "142916e6-ae53-4d0a-8306-860e88076347", + "dateNoted": "2023-04-06", "notes": "", - "parcelID": "20957", - "siteID": "17387", + "parcelID": "19252", + "siteID": "15766", "siteRegistry": false } ] }, { - "uuid": "871b0580-86b9-446a-92c4-6c3f4ab8dcb2", - "siteID": 16392, - "address": "4286 Doyle Oval", - "latitude": 54.5788, - "longitude": -137.155, - "lastUpdated": "2018-12-18", - "city": "Redwood City", - "region": "Mainland/Southwest", - "victoriaFile": "26250-20/19332", + "uuid": "23a72ef2-1712-4b9b-9893-caf0d66f12a3", + "siteID": 16044, + "address": "146 D'Amore Rapids", + "latitude": 57.6347, + "longitude": -137.5903, + "lastUpdated": "2020-07-18", + "city": "Javonstead", + "region": "Vancouver Island/Coast", + "victoriaFile": "26250-20/4822", "regionalFile": "N/A", "parcelIDs": [ - 2312182, - 5977596, - 7438541, - 7083146, - 4665320 + 6435146, + 261587, + 4391199, + 874208, + 9221115 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2019-01-24", - "completed": "2015-09-13", - "initiated": "2017-09-27", - "ministryContact": "GLEASON GAETANO", + "uuid": "bc01da8d-7592-4597-aaf5-a40bb2e88118", + "createdAt": "2016-12-01", + "completed": "2015-02-15", + "initiated": "2023-05-07", + "ministryContact": "RUNOLFSSON DESTINY", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -17253,28 +20309,32 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "50fab57f-016f-48e8-88a1-9d6844b241c7", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "911f6baf-fc4a-4f46-90cd-71476e324788", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { + "uuid": "2f4bdeb7-98e4-43b9-b3c2-361e9c50de20", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true + "role": "REQUESTED BY", + "siteRegistry": false } ], "siteRegistry": true }, { - "createdAt": "2019-02-10", - "completed": "2018-02-28", - "initiated": "2020-03-11", - "ministryContact": "REICHERT DAYNA", + "uuid": "f3fb3c20-29ea-4135-b6d0-e56800c7cb4d", + "createdAt": "2018-07-17", + "completed": "2015-11-11", + "initiated": "2016-09-09", + "ministryContact": "JACOBI MARLENE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -17283,12 +20343,14 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "uuid": "49b3533e-12fe-43a6-9aee-65f2fb5bb035", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "9eda49aa-d377-465b-8a47-25fb0118008a", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true } @@ -17296,10 +20358,11 @@ "siteRegistry": true }, { - "createdAt": "2020-08-14", - "completed": "2016-12-22", - "initiated": "2019-01-02", - "ministryContact": "SAUER KIRA", + "uuid": "9567ae4c-cbdd-4e55-823f-23db0dcea1b6", + "createdAt": "2021-05-02", + "completed": "2014-07-16", + "initiated": "2020-06-29", + "ministryContact": "POLLICH ELSIE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -17308,33 +20371,32 @@ ], "notationParticipants": [ { + "uuid": "8accb2e8-2872-4da6-9e81-4b7465ddd237", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false }, { + "uuid": "7e6de07f-1b54-4778-9876-f580dde12872", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "0d7063b9-4fe7-4dfd-9dd4-75cb19c312fa", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false } ], "siteRegistry": true }, { - "createdAt": "2019-04-23", - "completed": "2023-09-12", - "initiated": "2023-03-09", - "ministryContact": "TREMBLAY ARNALDO", + "uuid": "7cca8ecb-9181-4d5b-97c6-e1e0e9d1538a", + "createdAt": "2014-01-20", + "completed": "2016-10-03", + "initiated": "2019-10-19", + "ministryContact": "CONNELLY KENNEDI", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -17343,38 +20405,44 @@ ], "notationParticipants": [ { + "uuid": "fd288968-b637-4fd0-b7a4-2bae09454835", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true + "role": "REQUESTED BY", + "siteRegistry": false }, { + "uuid": "3c318db2-db54-4659-846c-511db3924a68", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true + "role": "REQUESTED BY", + "siteRegistry": false }, { + "uuid": "0f9a7a60-7346-4db1-b412-c73017e39fa7", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "uuid": "3240d831-9229-46bc-8532-680239b8d38e", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": true }, { + "uuid": "a27ebd75-45c9-4c2b-b9f7-8adb26e19f6e", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false + "role": "SUBMITTED BY", + "siteRegistry": true } ], "siteRegistry": false }, { - "createdAt": "2020-10-30", - "completed": "2014-11-16", - "initiated": "2022-12-23", - "ministryContact": "MARKS-FRITSCH ADITYA", + "uuid": "2ef47b46-838a-4cb9-8b3e-de13e4c872fe", + "createdAt": "2017-06-10", + "completed": "2020-04-06", + "initiated": "2015-12-06", + "ministryContact": "GREENFELDER FRANCIS", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -17383,14 +20451,22 @@ ], "notationParticipants": [ { + "uuid": "57355a89-f4d6-4681-a993-29ac32ecdb8b", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false }, { + "uuid": "597efa3a-3a0e-499a-a67f-2e27e53f5a8c", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true + }, + { + "uuid": "1ec0037a-854f-4f57-8eca-693d4cd0fd86", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true } ], "siteRegistry": false @@ -17398,39 +20474,21 @@ ], "participants": [ { - "name": "AMET, DOLOR SIT", - "endDate": "2016-04-21", - "startDate": "2015-10-29", + "uuid": "70f41118-31ee-4d96-97fe-1fbf4b9d1120", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2014-03-18", + "startDate": "2018-11-19", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": true }, { + "uuid": "58191d9a-85b0-4d86-8111-115d61998702", "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2020-03-19", - "startDate": "2015-07-04", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2022-06-07", - "startDate": "2013-12-06", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": false - }, - { - "name": "IPSUM", - "endDate": "2013-11-06", - "startDate": "2018-10-13", + "endDate": "2014-09-16", + "startDate": "2019-09-01", "notes": "", "roles": [ "EMPLOYEE" @@ -17440,78 +20498,109 @@ ], "suspectLandUses": [ { + "uuid": "7d02a8a6-ef3e-440f-bce5-8154c012b726", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2023-03-05 (described on Site Profile dated 2023-03-05)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "notes": "INSERTED FOR SITE PROFILE DATED 2022-06-29 (described on Site Profile dated 2022-06-29)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { + "uuid": "d115fc48-99f0-4b7c-8f9e-1e2d8add245b", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-03-04 (described on Site Profile dated 2016-03-04)", + "notes": "INSERTED FOR SITE PROFILE DATED 2015-10-26 (described on Site Profile dated 2015-10-26)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { + "uuid": "54c67543-6e25-48fc-af80-7ab49e263e53", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2023-08-26 (described on Site Profile dated 2023-08-26)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "notes": "INSERTED FOR SITE PROFILE DATED 2016-03-27 (described on Site Profile dated 2016-03-27)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { + "uuid": "061c9efd-addb-4ebc-8955-10cc4a08eea6", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-03-07 (described on Site Profile dated 2016-03-07)", + "notes": "INSERTED FOR SITE PROFILE DATED 2016-06-13 (described on Site Profile dated 2016-06-13)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "uuid": "0a9c5c0d-52e4-45de-aae3-82bdcd9c13df", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2023-08-20 (described on Site Profile dated 2023-08-20)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], "parcelDescriptions": [ { - "siteRegistry": false, - "dateNoted": "2022-04-13", - "parcelID": "19137", - "crownLandUsePIN": "18304", - "crownLandFileNumber": "17321", - "landDescription": "LOT 5 OF LOT 3 BLOCK 1 DISTRICT LOT 1 PLAN 8068" - }, - { - "siteRegistry": false, - "dateNoted": "2023-02-06", - "parcelID": "17596", - "crownLandUsePIN": "19789", - "crownLandFileNumber": "17999", - "landDescription": "LOT 1 OF LOT 4 BLOCK 4 DISTRICT LOT 2 PLAN 8781" - }, - { - "siteRegistry": false, - "dateNoted": "2017-07-21", - "parcelID": "19411", - "crownLandUsePIN": "19977", - "crownLandFileNumber": "15507", - "landDescription": "LOT 4 OF LOT 4 BLOCK 5 DISTRICT LOT 3 PLAN 4000" + "uuid": "14ebf6bb-4aa0-480b-8eee-cea2849a46dd", + "siteRegistry": true, + "dateNoted": "2018-05-09", + "parcelID": "17865", + "crownLandUsePIN": "15450", + "crownLandFileNumber": "15257", + "landDescription": "LOT 4 OF LOT 1 BLOCK 1 DISTRICT LOT 1 PLAN 6052" }, { - "siteRegistry": false, - "dateNoted": "2021-05-23", - "parcelID": "20950", - "crownLandUsePIN": "18156", - "crownLandFileNumber": "17511", - "landDescription": "LOT 2 OF LOT 1 BLOCK 2 DISTRICT LOT 3 PLAN 4710" + "uuid": "f555c5b5-0864-4bf8-ada5-2195a5101ec0", + "siteRegistry": true, + "dateNoted": "2020-06-02", + "parcelID": "20419", + "crownLandUsePIN": "15700", + "crownLandFileNumber": "19530", + "landDescription": "LOT 1 OF LOT 1 BLOCK 2 DISTRICT LOT 4 PLAN 8564" } ], "siteDisclosures": [ { + "uuid": "bed85ae8-8ee7-450e-a08f-c3349eab55ba", "siteRegistry": true, - "dateReceived": "2023-07-06", - "dateCompleted": "2017-12-11", - "dateEntered": "2016-07-04", - "dateRegistrar": "2014-05-10", - "dateLocalAuthorityReceived": "2022-07-22", - "summary": "Eligendi distinctio officia quod consequuntur impedit.\nProvident natus illum deserunt magni.\nQuam nostrum quidem numquam enim est.", - "informationUsed": "Nesciunt deserunt iste.\nAdipisci impedit sed.\nNumquam explicabo officia exercitationem.\nCulpa voluptate nisi libero iusto facere molestiae sunt.\nAperiam dolor ducimus eveniet ex qui unde vitae repellendus quam.", - "pastOrPresentOrders": "Accusantium nostrum totam veniam tempora vero unde illum.", + "dateReceived": "2016-06-11", + "dateCompleted": "2017-06-02", + "dateEntered": "2015-08-16", + "dateRegistrar": "2018-10-18", + "dateLocalAuthorityReceived": "2021-11-07", + "summary": "Voluptates enim unde deserunt dolor amet nam explicabo.\nExcepturi ipsa aspernatur.\nEarum odio voluptatibus.", + "informationUsed": "Libero eos quae quia sint tenetur laudantium.\nSequi exercitationem aliquid cupiditate.\nRatione amet ut repellat.\nFugit officiis placeat consectetur.\nAccusantium neque neque illum suscipit.", + "pastOrPresentOrders": "Aspernatur qui iste occaecati est saepe.", "commercialAndIndustrialPurposes": [ { + "uuid": "b77f70ea-cb72-4008-bc27-52387b12b9ce", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "uuid": "79c5bed8-05bc-42c7-bd75-21fb48586986", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + } + ] + }, + { + "uuid": "f7d5b34a-e786-4784-8f19-60fd288e6668", + "siteRegistry": true, + "dateReceived": "2014-12-16", + "dateCompleted": "2013-12-09", + "dateEntered": "2019-04-01", + "dateRegistrar": "2019-03-31", + "dateLocalAuthorityReceived": "2022-05-21", + "summary": "Quas dolorem beatae perferendis vitae reprehenderit neque.\nPerspiciatis hic error sunt vero impedit laborum qui nam fugit.\nAb quasi distinctio corporis eius quidem atque.", + "informationUsed": "Recusandae quod reiciendis doloremque.\nRepellendus id itaque quas cum blanditiis quos quaerat.\nNostrum ab rerum quos error hic.\nHic eos in qui numquam repudiandae eius.", + "pastOrPresentOrders": "Rem qui voluptatem.\nAdipisci expedita ab aperiam at nostrum laudantium cum.\nPossimus illo reiciendis aperiam magnam nemo asperiores voluptatem pariatur ab.", + "commercialAndIndustrialPurposes": [ + { + "uuid": "3d998fb4-f1ed-44ef-b2f6-c22d0c94118a", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { + "uuid": "64d4c953-c3cd-4c53-b274-42bc4a41c2c6", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "uuid": "22dd6d48-1921-4acc-b156-e8091dc63ab2", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false @@ -17521,91 +20610,129 @@ ], "activityLog": [ { - "siteRegistry": true, + "uuid": "cf32b748-6ff4-4e15-b766-d38b6ea4c1fd", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "BASHIRIAN YASMINE", + "user": "JOHNS MICHELLE", "timestamp": "2020-12-06" }, { + "uuid": "1c000fde-357f-4a30-9cbc-ae252eceb601", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "NIKOLAUS JAMMIE", - "timestamp": "2023-08-06" + "user": "TREUTEL CRISTIAN", + "timestamp": "2015-01-24" + }, + { + "uuid": "1efb9e66-8166-486b-9df1-b572e3a68b4d", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "HARTMANN-HAMILL MATHIAS", + "timestamp": "2018-02-01" + }, + { + "uuid": "dd724bb6-87e2-4054-b42d-f527c3ae4350", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "SHIELDS VIDAL", + "timestamp": "2022-08-10" }, { + "uuid": "d816dd91-d7fa-4842-9d48-750db0ef2975", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "WINDLER HILMA", - "timestamp": "2023-08-13" + "user": "MOORE VALENTINA", + "timestamp": "2022-05-27" }, { + "uuid": "74b265e0-189c-4624-8792-19ddeb7f10e2", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "ROBERTS FRED", - "timestamp": "2021-04-08" + "user": "POLLICH ADONIS", + "timestamp": "2015-09-25" }, { + "uuid": "9f563ad7-b171-4058-a021-f853b005fd89", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "KOELPIN GARETT", - "timestamp": "2022-08-29" + "user": "KUHN RANDI", + "timestamp": "2017-12-19" }, { + "uuid": "b429d12e-33ef-4f6d-b64d-b34f78041806", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "KLEIN EASTER", - "timestamp": "2018-09-27" + "user": "GOLDNER ZACKARY", + "timestamp": "2022-07-22" + }, + { + "uuid": "78599277-fe71-4388-a572-d61fa39cfb2d", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "BECKER ELWYN", + "timestamp": "2018-07-21" + }, + { + "uuid": "61338d78-d263-4ff0-93dc-014b95f5e665", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "CUMMINGS OLIVER", + "timestamp": "2017-11-30" } ], "associatedSites": [ { - "dateNoted": "2017-12-21", + "uuid": "f4dfabd0-6e7e-4468-9121-7283ddd5762d", + "dateNoted": "2017-08-29", "notes": "", - "parcelID": "17404", - "siteID": "19984", - "siteRegistry": false + "parcelID": "17535", + "siteID": "15261", + "siteRegistry": true }, { - "dateNoted": "2018-06-04", + "uuid": "504df096-7dff-470e-bda5-e9da3df7069f", + "dateNoted": "2017-05-03", "notes": "", - "parcelID": "18279", - "siteID": "16640", + "parcelID": "18010", + "siteID": "15585", "siteRegistry": false }, { - "dateNoted": "2016-12-17", + "uuid": "f2d68378-0f69-4922-a021-a97a123f709c", + "dateNoted": "2020-10-09", "notes": "", - "parcelID": "20161", - "siteID": "19593", - "siteRegistry": false + "parcelID": "17546", + "siteID": "20818", + "siteRegistry": true } ] }, { - "uuid": "c6eac531-7662-440d-81e0-ecf702c2c3ac", - "siteID": 15789, - "address": "414 Rodriguez Summit", - "latitude": 49.6235, - "longitude": -135.8931, - "lastUpdated": "2022-09-18", - "city": "Starkhaven", - "region": "Vancouver Island/Coast", - "victoriaFile": "26250-20/7959", + "uuid": "343f218e-3a17-46c2-b9a7-9f77ec83d6da", + "siteID": 20872, + "address": "928 Holden Fork", + "latitude": 54.4391, + "longitude": -127.3842, + "lastUpdated": "2019-12-13", + "city": "Gilbert", + "region": "Mainland/Southwest", + "victoriaFile": "26250-20/15860", "regionalFile": "N/A", "parcelIDs": [ - 3520015, - 3754955, - 8837778, - 3558570, - 4613470 + 4757755, + 6784347, + 9907379, + 2609491, + 8527019 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2018-06-23", - "completed": "2018-09-23", - "initiated": "2018-01-22", - "ministryContact": "POWLOWSKI MARION", + "uuid": "80cc15fe-8b88-4987-82fa-110d902acc58", + "createdAt": "2021-06-02", + "completed": "2020-08-18", + "initiated": "2016-03-18", + "ministryContact": "WILKINSON KATHARINA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -17614,73 +20741,44 @@ ], "notationParticipants": [ { + "uuid": "21a986ce-a999-4267-99f5-442d44b41836", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", "siteRegistry": true }, { + "uuid": "d7f178cd-b933-4603-9c04-6e5a48f46340", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false - } - ], - "siteRegistry": false - }, - { - "createdAt": "2018-01-24", - "completed": "2013-10-22", - "initiated": "2021-06-02", - "ministryContact": "CUMMERATA RYLAN", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true }, { + "uuid": "27c07061-6e94-424d-b332-8b21d85ac210", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "8b3c8063-29b8-4dcb-b5be-92fb9ecc9c0f", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true }, { + "uuid": "5f3e666e-0757-41f4-ab13-2ac55830547b", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2015-11-09", - "completed": "2023-04-05", - "initiated": "2023-05-23", - "ministryContact": "BERNHARD XAVIER", + "uuid": "0af9396a-e0dc-4d3e-9c55-8ec3f43d550a", + "createdAt": "2023-06-26", + "completed": "2015-12-23", + "initiated": "2019-03-22", + "ministryContact": "BERNHARD BRENDAN", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -17689,33 +20787,38 @@ ], "notationParticipants": [ { + "uuid": "ad271f18-8946-462e-a6bc-fe66d96c2d68", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "6209ceb9-21da-47b1-af6d-0279d5878fd9", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { + "uuid": "e10dc78a-dae7-4e5d-8301-7808bff777bb", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "ecf8db06-71a8-4196-8127-539bdf70f8d6", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2020-09-28", - "completed": "2015-02-03", - "initiated": "2022-02-14", - "ministryContact": "ABERNATHY EZEKIEL", + "uuid": "a1cb5622-f067-4a5c-a8da-76dacc1622ae", + "createdAt": "2017-08-24", + "completed": "2021-04-20", + "initiated": "2022-01-22", + "ministryContact": "RODRIGUEZ TALON", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -17724,33 +20827,38 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "72673113-7a36-4a7d-9a2a-79baf0508397", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { + "uuid": "df3cbc60-b34e-43ec-8d64-b345c036c6c6", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false }, { + "uuid": "6b6850b6-0021-47da-a4df-8c851fca3259", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "d84c9f71-c4e0-4c01-a53b-6a061c1c08a3", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true } ], "siteRegistry": true }, { - "createdAt": "2020-04-09", - "completed": "2019-07-29", - "initiated": "2020-04-27", - "ministryContact": "SCHADEN NYASIA", + "uuid": "3b9b2a9d-603e-41d1-b717-82b61fffe8a3", + "createdAt": "2015-06-11", + "completed": "2019-11-20", + "initiated": "2015-08-15", + "ministryContact": "RODRIGUEZ GEOVANNI", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -17759,23 +20867,27 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { + "uuid": "ec228406-4653-40c8-a603-deaf06497fea", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true }, { + "uuid": "9edc907b-ad93-49d0-b7ac-08ca25a47f14", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "2b771ef7-fca5-41c0-ade4-70afe8794cf8", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { + "uuid": "64913681-af6d-43e6-8ec5-1849326b4842", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false } ], @@ -17784,29 +20896,54 @@ ], "participants": [ { - "name": "IPSUM", - "endDate": "2019-05-28", - "startDate": "2016-05-11", + "uuid": "6ad8ff16-fb70-427a-ac2d-f3019745b6e4", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2017-09-28", + "startDate": "2023-07-18", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": true }, { + "uuid": "9ca06bdc-63ac-41c5-8eb0-08dadb21a2ef", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2019-10-24", + "startDate": "2016-11-08", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "uuid": "b72d7b44-b8b8-4b33-a5cb-4d68a2d13bbd", "name": "SHELL CANADA PRODUCTS", - "endDate": "2017-06-16", - "startDate": "2023-02-06", + "endDate": "2016-02-25", + "startDate": "2021-07-02", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": false + "siteRegistry": true }, { - "name": "IPSUM", - "endDate": "2020-12-07", - "startDate": "2022-05-29", + "uuid": "0c4e4103-f16f-423e-af2d-579c40de40f8", + "name": "AMET, DOLOR SIT", + "endDate": "2019-04-24", + "startDate": "2023-08-17", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "uuid": "4276654a-9bc0-49cc-a7f7-01eb4a3facc8", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2016-07-02", + "startDate": "2019-04-30", "notes": "", "roles": [ "ORGANIZATION" @@ -17816,222 +20953,241 @@ ], "suspectLandUses": [ { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-09-26 (described on Site Profile dated 2022-09-26)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" - }, - { + "uuid": "0e8e9e31-a2cc-43fa-8788-bcb7443f2a40", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-08-20 (described on Site Profile dated 2016-08-20)", + "notes": "INSERTED FOR SITE PROFILE DATED 2019-09-15 (described on Site Profile dated 2019-09-15)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { + "uuid": "81b3ab72-0922-45cb-ae38-dbb67f35f152", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-08-06 (described on Site Profile dated 2016-08-06)", + "notes": "INSERTED FOR SITE PROFILE DATED 2019-06-02 (described on Site Profile dated 2019-06-02)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], "parcelDescriptions": [ { + "uuid": "5c5e0787-38c4-4bc3-9ea7-78a73d732022", "siteRegistry": true, - "dateNoted": "2022-05-21", - "parcelID": "18504", - "crownLandUsePIN": "20083", - "crownLandFileNumber": "17582", - "landDescription": "LOT 5 OF LOT 3 BLOCK 1 DISTRICT LOT 2 PLAN 8323" + "dateNoted": "2014-12-17", + "parcelID": "16366", + "crownLandUsePIN": "17148", + "crownLandFileNumber": "20343", + "landDescription": "LOT 2 OF LOT 1 BLOCK 2 DISTRICT LOT 4 PLAN 7222" }, { - "siteRegistry": false, - "dateNoted": "2019-12-05", - "parcelID": "19464", - "crownLandUsePIN": "17366", - "crownLandFileNumber": "18772", - "landDescription": "LOT 5 OF LOT 3 BLOCK 3 DISTRICT LOT 3 PLAN 6310" + "uuid": "cb0262be-387a-429c-a202-9d29ad4efb79", + "siteRegistry": true, + "dateNoted": "2021-11-06", + "parcelID": "15321", + "crownLandUsePIN": "18312", + "crownLandFileNumber": "17068", + "landDescription": "LOT 4 OF LOT 4 BLOCK 1 DISTRICT LOT 1 PLAN 4907" }, { - "siteRegistry": true, - "dateNoted": "2016-06-25", - "parcelID": "20084", - "crownLandUsePIN": "15298", - "crownLandFileNumber": "20822", - "landDescription": "LOT 4 OF LOT 5 BLOCK 1 DISTRICT LOT 3 PLAN 8753" + "uuid": "f005b437-6424-49dd-a818-bd35824220da", + "siteRegistry": false, + "dateNoted": "2020-09-14", + "parcelID": "18431", + "crownLandUsePIN": "19435", + "crownLandFileNumber": "17055", + "landDescription": "LOT 1 OF LOT 5 BLOCK 4 DISTRICT LOT 4 PLAN 9361" }, { - "siteRegistry": true, - "dateNoted": "2013-10-21", - "parcelID": "19361", - "crownLandUsePIN": "19355", - "crownLandFileNumber": "17950", - "landDescription": "LOT 1 OF LOT 4 BLOCK 1 DISTRICT LOT 3 PLAN 4833" + "uuid": "d5e8f113-ce32-4a92-a495-e36e4e2cbdf8", + "siteRegistry": false, + "dateNoted": "2015-05-23", + "parcelID": "16801", + "crownLandUsePIN": "16646", + "crownLandFileNumber": "19413", + "landDescription": "LOT 4 OF LOT 1 BLOCK 4 DISTRICT LOT 1 PLAN 5529" }, { - "siteRegistry": true, - "dateNoted": "2019-09-29", - "parcelID": "19029", - "crownLandUsePIN": "16195", - "crownLandFileNumber": "19703", - "landDescription": "LOT 2 OF LOT 3 BLOCK 3 DISTRICT LOT 4 PLAN 5799" + "uuid": "d5cc745f-32fc-4f8b-a24c-2df77cba8125", + "siteRegistry": false, + "dateNoted": "2016-05-21", + "parcelID": "18579", + "crownLandUsePIN": "17125", + "crownLandFileNumber": "16022", + "landDescription": "LOT 3 OF LOT 5 BLOCK 3 DISTRICT LOT 2 PLAN 8018" } ], "siteDisclosures": [ { - "siteRegistry": false, - "dateReceived": "2014-08-25", - "dateCompleted": "2014-04-08", - "dateEntered": "2018-11-19", - "dateRegistrar": "2019-08-14", - "dateLocalAuthorityReceived": "2019-04-23", - "summary": "Praesentium asperiores aliquam ullam dolore exercitationem.\nVero blanditiis ea magni nisi sit nisi beatae.\nDolore modi magni nam expedita iste impedit ab adipisci dolores.", - "informationUsed": "Facere id labore debitis nostrum officiis tenetur dignissimos veniam porro.\nDolore repellendus nostrum pariatur odit id nisi laboriosam voluptates iusto.\nTempora voluptates laboriosam.\nVero at alias non possimus a consequatur distinctio sapiente.\nQuae voluptatibus deleniti dolores porro.", - "pastOrPresentOrders": "Illo sint quo.\nOmnis expedita blanditiis corporis.\nVoluptatem veniam reiciendis odio ipsum ad officia voluptatibus suscipit.", + "uuid": "ea8c2659-7116-4a96-904c-2eb49175dae7", + "siteRegistry": true, + "dateReceived": "2016-09-04", + "dateCompleted": "2022-06-04", + "dateEntered": "2016-11-08", + "dateRegistrar": "2014-08-25", + "dateLocalAuthorityReceived": "2021-11-20", + "summary": "Rerum officiis aut.\nRerum corporis ea laboriosam.", + "informationUsed": "Consequuntur sunt saepe ex saepe nemo recusandae consequuntur dolorem tempore.\nNesciunt repudiandae maxime quos.\nQuisquam veniam dolor inventore laborum doloremque repellat commodi natus quia.\nEst velit veniam iusto aliquid numquam libero aliquam.", + "pastOrPresentOrders": "Cupiditate eos non id.\nAd odit nobis ipsam debitis ea quidem quasi quo.\nExpedita quam rem tempora voluptas.", "commercialAndIndustrialPurposes": [ { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false + "uuid": "28a1c73b-72a7-44d9-90ca-7746be994b98", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true }, { + "uuid": "e95339d5-e7e5-4a53-b487-539c9d20dda3", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true + }, + { + "uuid": "8a1f8fcb-dfec-4ea8-a6b4-7f6e6fc4cc93", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false } ] }, { - "siteRegistry": true, - "dateReceived": "2019-02-20", - "dateCompleted": "2019-12-20", - "dateEntered": "2016-02-04", - "dateRegistrar": "2014-02-16", - "dateLocalAuthorityReceived": "2022-09-13", - "summary": "Praesentium iure exercitationem.\nEx blanditiis in.", - "informationUsed": "Officiis eum deserunt alias repellat sint quaerat occaecati.\nPariatur alias aperiam doloribus qui quasi.\nPorro perspiciatis veritatis.\nOfficia praesentium veritatis minus assumenda dolorem quibusdam.", - "pastOrPresentOrders": "Occaecati nobis labore labore assumenda aut perspiciatis molestiae.\nA minus nihil ducimus consequuntur ex voluptatem assumenda.\nNulla sed qui recusandae atque necessitatibus quaerat.", + "uuid": "ff60fc38-04d9-479d-9b93-c35e9eed5551", + "siteRegistry": false, + "dateReceived": "2020-04-16", + "dateCompleted": "2014-01-16", + "dateEntered": "2019-09-08", + "dateRegistrar": "2016-05-30", + "dateLocalAuthorityReceived": "2018-09-27", + "summary": "Minus pariatur at.\nVoluptatem quis incidunt deleniti.\nConsequatur nostrum quos fuga quas officiis officia exercitationem quam asperiores.", + "informationUsed": "Quam voluptates deleniti perferendis minima eos culpa.\nHarum amet molestias voluptatibus dolorum voluptatibus labore iusto modi veritatis.\nVoluptatum impedit quibusdam doloribus necessitatibus adipisci.\nSoluta delectus perferendis quaerat libero accusamus.\nCumque dolor aspernatur voluptatem corporis vel.", + "pastOrPresentOrders": "Ullam non dolores sequi sint eos labore.\nPlaceat enim magnam et dignissimos rem.", "commercialAndIndustrialPurposes": [ { - "scheduleReference": "F1*", + "uuid": "1199c9ac-f436-4229-9237-caaeb3469fc1", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false }, { - "scheduleReference": "F2*", + "uuid": "b010d739-1b2c-4595-abc5-6bb1c8a4aa4a", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true + }, + { + "uuid": "cef995d2-154b-4a92-8f3f-1b2d3042a66d", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true } ] } ], "activityLog": [ { + "uuid": "193c59d1-d871-4507-8c55-6d8a2a0b44b2", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "METZ ESTELL", - "timestamp": "2021-04-08" - }, - { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "VON AURELIE", - "timestamp": "2015-06-05" + "user": "PFEFFER HOLLIS", + "timestamp": "2017-08-21" }, { + "uuid": "a9c5c488-9d08-434e-9db2-8873840da708", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "MCDERMOTT ABBIE", - "timestamp": "2017-05-08" + "user": "CRIST CATHY", + "timestamp": "2021-10-31" }, { + "uuid": "38d8ff9c-12d6-4b27-8d87-3cae0bad8d5b", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "KUHIC THELMA", - "timestamp": "2021-05-16" + "user": "FEENEY FREEDA", + "timestamp": "2019-10-23" }, { + "uuid": "7f1289fa-c439-464c-b53a-776a96856d5d", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "AUER KATRINE", - "timestamp": "2020-11-18" + "user": "HERMANN ANNABEL", + "timestamp": "2015-02-05" }, { + "uuid": "f85a8a45-8347-4c98-abda-6fc2a45eb0ef", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "VONRUEDEN MISSOURI", - "timestamp": "2020-11-27" + "user": "FADEL LAURIANE", + "timestamp": "2021-02-23" }, { - "siteRegistry": true, + "uuid": "a8098843-81b7-4d31-97a0-fc67d2c09f9a", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "REYNOLDS GARRY", - "timestamp": "2015-09-30" + "user": "NOLAN RUSSELL", + "timestamp": "2017-01-03" }, { + "uuid": "813b37c8-919a-4fd9-96f9-c7d34e0ddaea", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "CORKERY TYREL", - "timestamp": "2021-05-20" + "user": "RAYNOR ANSLEY", + "timestamp": "2022-06-12" }, { - "siteRegistry": false, + "uuid": "87f202c1-9289-49e5-81ec-b320cc265073", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "MURAZIK MELODY", - "timestamp": "2020-09-25" + "user": "LYNCH MCKENZIE", + "timestamp": "2014-08-08" }, { + "uuid": "4a2c2dd4-efbf-47b9-993a-004365f878c3", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "HEATHCOTE JEREL", - "timestamp": "2022-12-18" + "user": "BOGAN CLINT", + "timestamp": "2014-02-28" } ], "associatedSites": [ { - "dateNoted": "2013-12-12", - "notes": "", - "parcelID": "17160", - "siteID": "16890", - "siteRegistry": true - }, - { - "dateNoted": "2017-08-23", + "uuid": "b89221da-fbae-4f12-899a-ae86971dc786", + "dateNoted": "2015-08-14", "notes": "", - "parcelID": "19552", - "siteID": "15675", + "parcelID": "17557", + "siteID": "16133", "siteRegistry": false }, { - "dateNoted": "2020-05-12", + "uuid": "e7b9c7a0-373a-47cd-aedd-ab8fdc1e816e", + "dateNoted": "2019-10-11", "notes": "", - "parcelID": "18119", - "siteID": "19138", + "parcelID": "16366", + "siteID": "17170", "siteRegistry": false } ] }, { - "uuid": "b66dc0a0-98cc-4381-9c8a-482d69f839e6", - "siteID": 18608, - "address": "4802 Rodriguez Field", - "latitude": 51.9548, - "longitude": -133.3476, - "lastUpdated": "2019-02-10", - "city": "Petaluma", - "region": "Mainland/Southwest", - "victoriaFile": "26250-20/13936", + "uuid": "64d882aa-84e9-4f57-841e-d7c020317129", + "siteID": 18893, + "address": "92104 Shanahan Forest", + "latitude": 53.2337, + "longitude": -138.1792, + "lastUpdated": "2017-05-05", + "city": "Gordonfort", + "region": "Thompson-Okanagan", + "victoriaFile": "26250-20/15683", "regionalFile": "N/A", "parcelIDs": [ - 9829521, - 9697891, - 7299095, - 179193, - 8036533 + 9666403, + 6712869, + 2642523, + 9326959, + 894962 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2021-03-23", - "completed": "2022-04-18", - "initiated": "2021-05-04", - "ministryContact": "TERRY CATALINA", + "uuid": "c3b53ee3-e158-4141-8c33-a84df34f6968", + "createdAt": "2023-02-27", + "completed": "2023-08-04", + "initiated": "2018-10-05", + "ministryContact": "HELLER VICENTE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -18040,28 +21196,38 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "uuid": "4fd23e83-5329-4850-911b-eb83a6cbf13b", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": false }, { + "uuid": "6d28ea0a-ec02-4579-a7cd-a0a873250242", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { + "uuid": "9ad4311d-e450-445c-9e56-6ef1fb9fbbcd", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true + }, + { + "uuid": "bf91ee06-2202-4dbb-804a-4cc608cc972d", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true } ], "siteRegistry": false }, { - "createdAt": "2017-07-12", - "completed": "2019-04-04", - "initiated": "2019-11-30", - "ministryContact": "TORP CLAUDIA", + "uuid": "3a09b036-daaa-4d43-bb16-ab1dcd6d9405", + "createdAt": "2013-10-27", + "completed": "2018-08-25", + "initiated": "2017-08-13", + "ministryContact": "HAUCK PRINCESS", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -18070,266 +21236,253 @@ ], "notationParticipants": [ { + "uuid": "46097462-bc29-431e-8b88-99970c10e75b", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { + "uuid": "19b01118-c22e-40ab-a71f-27c69ff1e42f", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false } ], "participants": [ { + "uuid": "306897af-5a58-4395-bbac-1e2cd2f472cd", "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2016-10-31", - "startDate": "2023-05-05", + "endDate": "2023-10-08", + "startDate": "2022-11-20", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], - "siteRegistry": true + "siteRegistry": false }, { + "uuid": "4b44d08e-1b05-46dd-90cb-55a2896a0f70", "name": "SHELL CANADA PRODUCTS", - "endDate": "2020-01-31", - "startDate": "2020-08-13", + "endDate": "2013-11-09", + "startDate": "2017-04-15", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false } ], "suspectLandUses": [ { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2023-04-17 (described on Site Profile dated 2023-04-17)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "uuid": "653ece3a-80ec-42ff-89ca-4671b2286dd4", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2016-10-08 (described on Site Profile dated 2016-10-08)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { + "uuid": "48671d3b-a568-4a06-891a-5f8957622cd9", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-10-12 (described on Site Profile dated 2018-10-12)", + "notes": "INSERTED FOR SITE PROFILE DATED 2018-08-27 (described on Site Profile dated 2018-08-27)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { + "uuid": "3247d4d0-805f-4c0f-b018-3744c887e04e", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-08-25 (described on Site Profile dated 2019-08-25)", + "notes": "INSERTED FOR SITE PROFILE DATED 2016-07-09 (described on Site Profile dated 2016-07-09)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { + "uuid": "40125363-54e5-4bc2-9e34-ba3e28bdfdf1", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-07-19 (described on Site Profile dated 2014-07-19)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "notes": "INSERTED FOR SITE PROFILE DATED 2013-12-09 (described on Site Profile dated 2013-12-09)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { + "uuid": "f5b9fc6c-cf9c-4ae4-9d6e-3428cf3670d6", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-04-22 (described on Site Profile dated 2016-04-22)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "notes": "INSERTED FOR SITE PROFILE DATED 2017-03-05 (described on Site Profile dated 2017-03-05)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], "parcelDescriptions": [ { - "siteRegistry": false, - "dateNoted": "2019-07-23", - "parcelID": "16001", - "crownLandUsePIN": "17170", - "crownLandFileNumber": "17339", - "landDescription": "LOT 1 OF LOT 3 BLOCK 3 DISTRICT LOT 4 PLAN 3839" - }, - { + "uuid": "cc13fbc2-73d2-4feb-96be-7a08444ad2ec", "siteRegistry": true, - "dateNoted": "2020-02-17", - "parcelID": "18909", - "crownLandUsePIN": "18082", - "crownLandFileNumber": "18707", - "landDescription": "LOT 4 OF LOT 3 BLOCK 2 DISTRICT LOT 4 PLAN 8502" + "dateNoted": "2014-12-09", + "parcelID": "19550", + "crownLandUsePIN": "18875", + "crownLandFileNumber": "15482", + "landDescription": "LOT 2 OF LOT 2 BLOCK 3 DISTRICT LOT 4 PLAN 9415" }, { + "uuid": "e7841d68-d5b7-48ac-9d70-70b48ab09d76", "siteRegistry": false, - "dateNoted": "2014-11-16", - "parcelID": "16536", - "crownLandUsePIN": "15727", - "crownLandFileNumber": "18737", - "landDescription": "LOT 5 OF LOT 4 BLOCK 1 DISTRICT LOT 4 PLAN 4456" + "dateNoted": "2021-10-06", + "parcelID": "17922", + "crownLandUsePIN": "19755", + "crownLandFileNumber": "20386", + "landDescription": "LOT 5 OF LOT 2 BLOCK 5 DISTRICT LOT 4 PLAN 6562" }, { - "siteRegistry": true, - "dateNoted": "2022-10-15", - "parcelID": "20751", - "crownLandUsePIN": "17626", - "crownLandFileNumber": "19445", - "landDescription": "LOT 3 OF LOT 1 BLOCK 3 DISTRICT LOT 2 PLAN 6171" + "uuid": "33feb9b0-2f56-4489-b171-d584fa7f76a5", + "siteRegistry": false, + "dateNoted": "2015-04-20", + "parcelID": "18199", + "crownLandUsePIN": "18304", + "crownLandFileNumber": "15669", + "landDescription": "LOT 1 OF LOT 1 BLOCK 1 DISTRICT LOT 1 PLAN 7006" }, { - "siteRegistry": true, - "dateNoted": "2021-07-25", - "parcelID": "17574", - "crownLandUsePIN": "18211", - "crownLandFileNumber": "19109", - "landDescription": "LOT 1 OF LOT 3 BLOCK 5 DISTRICT LOT 2 PLAN 7914" + "uuid": "f89dcc69-48f4-4674-8176-043b85e9ef2f", + "siteRegistry": false, + "dateNoted": "2018-05-28", + "parcelID": "16879", + "crownLandUsePIN": "19352", + "crownLandFileNumber": "15903", + "landDescription": "LOT 3 OF LOT 4 BLOCK 5 DISTRICT LOT 3 PLAN 3064" } ], "siteDisclosures": [ { + "uuid": "38eb074a-30b0-4079-9dce-acc8824036e3", "siteRegistry": false, - "dateReceived": "2018-01-09", - "dateCompleted": "2020-07-04", - "dateEntered": "2017-01-30", - "dateRegistrar": "2019-02-04", - "dateLocalAuthorityReceived": "2018-12-19", - "summary": "Expedita odio vitae vitae dolore autem.", - "informationUsed": "Perspiciatis fugiat magni harum commodi tenetur quibusdam.\nDolorem exercitationem aliquid repellat minima corporis.\nSed nisi repudiandae repellat repellendus facilis modi corporis expedita aut.\nDoloremque perspiciatis expedita architecto animi.", - "pastOrPresentOrders": "Dolor dolor harum dolorum.", + "dateReceived": "2022-12-16", + "dateCompleted": "2018-12-01", + "dateEntered": "2016-08-24", + "dateRegistrar": "2017-11-02", + "dateLocalAuthorityReceived": "2023-07-27", + "summary": "Molestias nihil sint itaque doloremque quibusdam autem quidem quam eaque.\nQuae facere voluptate dolore reiciendis beatae labore qui expedita.\nEst repellendus quas laboriosam ex.", + "informationUsed": "Iste est sit ex explicabo corrupti odit.\nNulla impedit vel consectetur maxime.\nIncidunt qui blanditiis incidunt optio est sit autem odit doloremque.\nCupiditate recusandae in similique.\nPerspiciatis saepe nemo quo repudiandae ullam modi.", + "pastOrPresentOrders": "Veritatis ipsum vero qui.\nAb hic id ea veritatis.", "commercialAndIndustrialPurposes": [ { + "uuid": "d973b981-9bfa-43ef-a823-b04f57137af9", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true - }, - { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, { + "uuid": "f18df5e2-6b5a-4305-9996-fb3b7f1d5e55", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, { + "uuid": "b9670c70-182b-45dc-8280-5113c0bfcf70", "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false } ] } ], "activityLog": [ { + "uuid": "349c620a-73e6-48c7-89de-218f00c7fd36", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "SAWAYN VIDAL", - "timestamp": "2017-02-04" - }, - { - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "RYAN JAEDEN", - "timestamp": "2017-08-09" + "user": "LANG HASKELL", + "timestamp": "2022-04-08" }, { + "uuid": "a4cdc1fe-b688-447e-a3bd-c3ad2763804d", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "ORTIZ DESTANY", - "timestamp": "2020-05-20" - }, - { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "LABADIE CHET", - "timestamp": "2021-02-08" + "user": "STROMAN GUSTAVE", + "timestamp": "2021-06-18" }, { + "uuid": "daf434ee-18ae-48e3-a57c-8e6a697bb0fa", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "BRUEN LAVINIA", - "timestamp": "2018-03-29" + "user": "HOMENICK MEAGAN", + "timestamp": "2015-04-12" }, { + "uuid": "d236c994-a245-4beb-b809-9020db65622b", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "RATH-BARTOLETTI LIBBY", - "timestamp": "2020-08-12" + "user": "MCKENZIE IMELDA", + "timestamp": "2017-03-30" }, { - "siteRegistry": true, + "uuid": "a4d286f3-c855-4b3d-972d-929a872f64a0", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "LEDNER JETT", - "timestamp": "2014-06-14" + "user": "SCHAEFER SUMMER", + "timestamp": "2022-11-25" }, { + "uuid": "fc5d1824-0199-4eaf-9c08-50e668a470a0", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "HANSEN AMELY", - "timestamp": "2017-05-07" + "user": "KUNZE LORENZO", + "timestamp": "2017-07-17" }, { + "uuid": "01f19587-96f5-4d43-ab49-68fe7f2f9bdd", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "HAYES PRINCE", - "timestamp": "2017-08-01" - }, - { - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "VEUM VINNIE", - "timestamp": "2016-11-05" + "user": "WAELCHI WELDON", + "timestamp": "2017-02-21" } ], "associatedSites": [ { - "dateNoted": "2020-05-06", + "uuid": "c44bf8a0-743f-461c-bb99-fe4a4ef83005", + "dateNoted": "2019-10-23", "notes": "", - "parcelID": "18741", - "siteID": "15327", + "parcelID": "20682", + "siteID": "17437", "siteRegistry": false }, { - "dateNoted": "2020-02-12", + "uuid": "40a4872e-09c2-4e19-ac9a-1f70f15990f3", + "dateNoted": "2021-11-02", "notes": "", - "parcelID": "18618", - "siteID": "19051", + "parcelID": "19328", + "siteID": "17913", "siteRegistry": false }, { - "dateNoted": "2020-04-19", + "uuid": "6ce15145-c38e-4605-9f0a-a862b5717221", + "dateNoted": "2020-11-02", "notes": "", - "parcelID": "17593", - "siteID": "16392", - "siteRegistry": true + "parcelID": "19228", + "siteID": "18183", + "siteRegistry": false } ] }, { - "uuid": "7b3c181a-1b18-4998-b9f4-5b0a3b1f4f78", - "siteID": 20135, - "address": "274 Jules Extensions", - "latitude": 57.1303, - "longitude": -129.9713, - "lastUpdated": "2020-01-27", - "city": "New Golden", - "region": "Mainland/Southwest", - "victoriaFile": "26250-20/16494", + "uuid": "822fc962-e4d8-406d-a5d7-faf1e40016d8", + "siteID": 18040, + "address": "2655 Vilma Parkways", + "latitude": 48.8282, + "longitude": -138.4554, + "lastUpdated": "2022-05-09", + "city": "Willside", + "region": "Vancouver Island/Coast", + "victoriaFile": "26250-20/18610", "regionalFile": "N/A", "parcelIDs": [ - 4875446, - 8075202, - 9627371, - 2852569, - 7083353 + 4455055, + 5804194, + 1905430, + 3637485, + 6951705 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2013-11-21", - "completed": "2016-05-06", - "initiated": "2018-10-21", - "ministryContact": "ROHAN DIEGO", + "uuid": "c7d4b7a8-a8d3-4798-9a7f-b72a45040879", + "createdAt": "2022-11-19", + "completed": "2019-10-17", + "initiated": "2017-03-09", + "ministryContact": "O'CONNER CARMELLA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -18338,38 +21491,38 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "229f4ee8-96a2-4616-8280-0cd10bcfbeab", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { + "uuid": "1590c2fd-0805-45be-b4e1-f9886b1ac246", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "bed31572-3136-4dc6-83aa-763f5c14076e", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false + }, + { + "uuid": "6c4e2c06-7fe0-4db0-942c-7f8cd4cc9774", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2018-01-13", - "completed": "2015-09-19", - "initiated": "2023-04-12", - "ministryContact": "BEATTY MATILDE", + "uuid": "52cc69a2-6e48-49db-97c6-443c527fc052", + "createdAt": "2016-02-14", + "completed": "2021-06-25", + "initiated": "2016-09-10", + "ministryContact": "GISLASON ISABELL", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -18378,38 +21531,44 @@ ], "notationParticipants": [ { + "uuid": "ac25b9da-206b-402f-a9a4-1377406daa37", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true + "role": "REQUESTED BY", + "siteRegistry": false }, { + "uuid": "16c61ae1-4d9f-488c-9464-381b0a03e99b", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "06b00150-0aec-46ff-b5b7-4a15cf6534f8", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "1e0d794f-ae5d-4f0f-9652-227a615dacd2", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true }, { + "uuid": "b5f27a57-b6fb-4d25-bcb5-22525e2fd4f2", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true } ], "siteRegistry": false }, { - "createdAt": "2015-03-12", - "completed": "2020-01-21", - "initiated": "2016-09-03", - "ministryContact": "METZ ANTONETTE", + "uuid": "0f466b17-8bda-4770-837d-d44076fdb062", + "createdAt": "2019-11-10", + "completed": "2014-10-30", + "initiated": "2019-01-06", + "ministryContact": "MACGYVER FERNANDO", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -18418,54 +21577,45 @@ ], "notationParticipants": [ { + "uuid": "fca346b8-f463-468a-a0c6-f49421814de6", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { + "uuid": "64c6fc79-3093-4069-beae-3297f29f0ab4", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "uuid": "fe63e4e2-9594-4338-8dbe-d482a9ffd004", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": true - } - ], - "siteRegistry": false - }, - { - "createdAt": "2018-02-01", - "completed": "2014-04-01", - "initiated": "2021-11-24", - "ministryContact": "COLLIER SANFORD", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ + }, { + "uuid": "330b9997-547b-4b6d-9be4-14e105a34dc4", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", + "uuid": "f7e86e8a-eae4-4d00-959e-0d001875b961", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false } ], "participants": [ { - "name": "IPSUM", - "endDate": "2019-08-17", - "startDate": "2022-09-14", + "uuid": "f900a2ba-6964-4c6f-b370-c460cca33c6c", + "name": "AMET, DOLOR SIT", + "endDate": "2015-01-20", + "startDate": "2018-10-12", "notes": "", "roles": [ "ORGANIZATION" @@ -18473,135 +21623,122 @@ "siteRegistry": false }, { - "name": "IPSUM", - "endDate": "2015-05-17", - "startDate": "2022-11-09", + "uuid": "8b7781fc-cfe8-4cc6-aaba-405ac33b604e", + "name": "AMET, DOLOR SIT", + "endDate": "2016-11-30", + "startDate": "2016-08-06", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": false }, { - "name": "AMET, DOLOR SIT", - "endDate": "2017-12-10", - "startDate": "2022-03-11", + "uuid": "e35a70a3-4145-40cd-afd4-fe8b64b0b009", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2022-05-19", + "startDate": "2019-02-14", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true } ], "suspectLandUses": [ { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-03-05 (described on Site Profile dated 2017-03-05)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" - }, - { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-11-30 (described on Site Profile dated 2016-11-30)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" - }, - { + "uuid": "6c530746-c254-4d69-b9e9-8cdd954c0119", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-06-09 (described on Site Profile dated 2019-06-09)", + "notes": "INSERTED FOR SITE PROFILE DATED 2021-02-20 (described on Site Profile dated 2021-02-20)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { + "uuid": "eda5f0c5-26d3-45df-b9d4-6bee3f5fa199", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-05-27 (described on Site Profile dated 2014-05-27)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "notes": "INSERTED FOR SITE PROFILE DATED 2022-11-15 (described on Site Profile dated 2022-11-15)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { + "uuid": "c25935ee-ece4-42fd-9426-23794f5d0df5", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-08-26 (described on Site Profile dated 2014-08-26)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "notes": "INSERTED FOR SITE PROFILE DATED 2022-01-31 (described on Site Profile dated 2022-01-31)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], "parcelDescriptions": [ { - "siteRegistry": false, - "dateNoted": "2017-06-25", - "parcelID": "16640", - "crownLandUsePIN": "20584", - "crownLandFileNumber": "20198", - "landDescription": "LOT 1 OF LOT 5 BLOCK 3 DISTRICT LOT 4 PLAN 6740" + "uuid": "e3e0bac8-5181-42f6-bd36-fae74b8e7acb", + "siteRegistry": true, + "dateNoted": "2020-11-05", + "parcelID": "16981", + "crownLandUsePIN": "16866", + "crownLandFileNumber": "19117", + "landDescription": "LOT 3 OF LOT 4 BLOCK 4 DISTRICT LOT 2 PLAN 3768" }, { + "uuid": "16ee3567-e89b-4161-a9d0-881989e4be33", "siteRegistry": true, - "dateNoted": "2015-02-11", - "parcelID": "15902", - "crownLandUsePIN": "18653", - "crownLandFileNumber": "15947", - "landDescription": "LOT 5 OF LOT 3 BLOCK 1 DISTRICT LOT 5 PLAN 9165" + "dateNoted": "2021-05-01", + "parcelID": "19338", + "crownLandUsePIN": "16335", + "crownLandFileNumber": "16480", + "landDescription": "LOT 3 OF LOT 2 BLOCK 2 DISTRICT LOT 4 PLAN 3650" }, { + "uuid": "29a7c9d7-d43b-4634-91de-40f80c10089a", "siteRegistry": false, - "dateNoted": "2014-09-20", - "parcelID": "20655", - "crownLandUsePIN": "20106", - "crownLandFileNumber": "15651", - "landDescription": "LOT 1 OF LOT 5 BLOCK 2 DISTRICT LOT 2 PLAN 3906" + "dateNoted": "2019-08-30", + "parcelID": "16225", + "crownLandUsePIN": "19153", + "crownLandFileNumber": "19724", + "landDescription": "LOT 3 OF LOT 4 BLOCK 4 DISTRICT LOT 2 PLAN 7336" + }, + { + "uuid": "2e323f06-751c-4234-ab8c-7c73a76d4c38", + "siteRegistry": true, + "dateNoted": "2019-06-01", + "parcelID": "18525", + "crownLandUsePIN": "18930", + "crownLandFileNumber": "17251", + "landDescription": "LOT 5 OF LOT 5 BLOCK 3 DISTRICT LOT 4 PLAN 4392" + }, + { + "uuid": "27216adf-361f-4a86-a841-ef5839487e6f", + "siteRegistry": true, + "dateNoted": "2023-03-21", + "parcelID": "15796", + "crownLandUsePIN": "17117", + "crownLandFileNumber": "17930", + "landDescription": "LOT 4 OF LOT 5 BLOCK 5 DISTRICT LOT 1 PLAN 3381" } ], "siteDisclosures": [ { - "siteRegistry": false, - "dateReceived": "2014-04-12", - "dateCompleted": "2017-03-25", - "dateEntered": "2021-05-01", - "dateRegistrar": "2021-07-12", - "dateLocalAuthorityReceived": "2022-03-29", - "summary": "Deserunt neque sapiente quasi atque tempore voluptas error.\nEum asperiores odio optio enim fuga.", - "informationUsed": "Nobis possimus beatae temporibus facere voluptatem deserunt eos.\nAb dolores animi atque corrupti sit quaerat natus voluptas quia.\nEnim occaecati quibusdam.\nQuis ab laborum molestias exercitationem ab voluptatem.", - "pastOrPresentOrders": "Ipsum tenetur ratione quasi dolor nisi.\nProvident fugit voluptatibus corporis doloribus.\nIncidunt sed architecto itaque et voluptas tempora quidem eos.", - "commercialAndIndustrialPurposes": [ - { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false - }, - { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true - }, - { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true - } - ] - }, - { + "uuid": "1e24c211-a75a-4347-aa23-85e44e7ba720", "siteRegistry": true, - "dateReceived": "2016-08-07", - "dateCompleted": "2020-04-03", - "dateEntered": "2015-03-28", - "dateRegistrar": "2018-11-28", - "dateLocalAuthorityReceived": "2023-07-14", - "summary": "Praesentium asperiores aliquam rerum expedita.", - "informationUsed": "Harum excepturi nam deserunt minus soluta.\nSoluta ab reiciendis sit eum repudiandae necessitatibus eius vitae suscipit.\nNon quia provident explicabo numquam distinctio.\nCorrupti sint fuga tenetur quam voluptatum.", - "pastOrPresentOrders": "Soluta dolor dolor enim dolorum.", + "dateReceived": "2020-12-11", + "dateCompleted": "2016-08-28", + "dateEntered": "2017-10-10", + "dateRegistrar": "2014-05-09", + "dateLocalAuthorityReceived": "2021-06-30", + "summary": "Itaque soluta odit fugit eum rem.\nVoluptates id excepturi velit ullam in excepturi.", + "informationUsed": "Odio natus debitis iste cum voluptatum praesentium ipsum quia explicabo.\nSint quia fugiat pariatur doloribus incidunt.\nVitae unde veritatis nobis incidunt accusamus eius.\nIure earum porro nisi quo occaecati molestias officia.", + "pastOrPresentOrders": "Debitis alias sit quos eos debitis.", "commercialAndIndustrialPurposes": [ { + "uuid": "d43384fa-5a6c-4592-9a7d-26f1bf53c84c", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false - }, - { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { + "uuid": "599cb888-e7b1-4e0e-882f-44472540fbcf", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true + "siteRegistry": false }, { + "uuid": "1957f3a6-61ff-47f0-9f48-a51472ed89b8", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false @@ -18611,77 +21748,85 @@ ], "activityLog": [ { - "siteRegistry": true, + "uuid": "3d70a67a-79e1-478a-bacd-bb8d4f4139ce", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "OSINSKI HILTON", - "timestamp": "2021-12-10" + "user": "KEELING SKYLAR", + "timestamp": "2023-06-29" }, { - "siteRegistry": false, + "uuid": "4ab59d0f-1e68-4b34-9705-4857c3eb5232", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "SCHUPPE FELIPA", - "timestamp": "2017-09-18" + "user": "SMITHAM ALFREDO", + "timestamp": "2018-01-29" }, { + "uuid": "a8b34f42-5f81-411b-90bd-5df23f346b44", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "CRONA MARIBEL", - "timestamp": "2016-03-01" + "user": "MACGYVER GUNNAR", + "timestamp": "2017-02-14" }, { + "uuid": "f506022b-367c-47e0-ae89-45404a9b06aa", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "KOEPP JALEEL", - "timestamp": "2020-05-26" + "user": "ROMAGUERA OCEANE", + "timestamp": "2014-12-24" }, { - "siteRegistry": true, + "uuid": "c9f976a7-3b67-4bd6-b49a-780f3d77596e", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "BAUCH JUDAH", - "timestamp": "2019-12-04" + "user": "BREITENBERG JEANETTE", + "timestamp": "2020-01-29" }, { - "siteRegistry": true, + "uuid": "fd35aa68-7a6d-432e-8a27-f3bd79b3119a", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "WILLIAMSON CEASAR", - "timestamp": "2021-10-07" + "user": "HAYES-REMPEL ABELARDO", + "timestamp": "2023-10-05" } ], "associatedSites": [ { - "dateNoted": "2021-04-25", + "uuid": "ef3735b0-00a8-4b27-b819-4d248f2b183d", + "dateNoted": "2021-12-14", "notes": "", - "parcelID": "15735", - "siteID": "19399", - "siteRegistry": true + "parcelID": "15215", + "siteID": "19479", + "siteRegistry": false } ] }, { - "uuid": "5b24031d-27f9-47a2-accd-8ef954bf8c63", - "siteID": 16952, - "address": "61532 Hettinger Forges", - "latitude": 50.8948, - "longitude": -122.7394, - "lastUpdated": "2015-07-15", - "city": "Lake Bertha", - "region": "Vancouver Island/Coast", - "victoriaFile": "26250-20/766", + "uuid": "30289872-30fc-4b5a-9ce8-e5ec493ab8a6", + "siteID": 20490, + "address": "1158 Ofelia Fall", + "latitude": 49.9092, + "longitude": -118.4026, + "lastUpdated": "2016-08-24", + "city": "Tacoma", + "region": "Kootenay", + "victoriaFile": "26250-20/13733", "regionalFile": "N/A", "parcelIDs": [ - 9260712, - 7036493, - 1213058, - 8179713, - 9848732 + 4691334, + 7556766, + 962841, + 2082082, + 2496005 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2016-07-09", - "completed": "2022-12-31", - "initiated": "2020-04-20", - "ministryContact": "LANG CHAYA", + "uuid": "1d3d8b2c-7887-4c54-9025-21cefc46084f", + "createdAt": "2020-11-04", + "completed": "2015-02-03", + "initiated": "2019-05-05", + "ministryContact": "KEELING LAURETTA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -18690,47 +21835,26 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { + "uuid": "4e1e5925-dc4d-46ec-a327-68ff1bbe8779", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "77014c96-7595-4bdf-88b4-62a59622a8a0", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false - } - ], - "siteRegistry": true - }, - { - "createdAt": "2016-04-26", - "completed": "2017-09-30", - "initiated": "2018-11-02", - "ministryContact": "D'AMORE ELMER", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true }, { + "uuid": "fcc1c7f1-6de6-4f6b-9bae-8cf1d289b3bb", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", + "uuid": "4483cf99-3637-4e8c-a1d7-29f7ee51b918", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true } @@ -18738,10 +21862,11 @@ "siteRegistry": false }, { - "createdAt": "2017-12-27", - "completed": "2014-09-09", - "initiated": "2023-08-16", - "ministryContact": "HESSEL JEREL", + "uuid": "25a96b9a-89cb-42c1-971b-6caad28269f1", + "createdAt": "2014-10-25", + "completed": "2023-08-01", + "initiated": "2020-06-28", + "ministryContact": "COLLINS QUINN", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -18750,104 +21875,45 @@ ], "notationParticipants": [ { + "uuid": "4a88a647-c220-4949-a9c6-43156944bf5f", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false }, { + "uuid": "ce37b245-bf37-4f85-aa97-b340e44d7e23", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - } - ], - "siteRegistry": false - }, - { - "createdAt": "2016-08-25", - "completed": "2018-05-14", - "initiated": "2020-08-07", - "ministryContact": "GREEN EVELINE", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { + "uuid": "d0ef447d-72d5-4790-aaed-02214b8ce42e", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", "siteRegistry": false }, { + "uuid": "d70e1639-a106-48bf-b0e3-7cbb7154f078", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true }, { + "uuid": "02aa72c5-dea8-4770-b128-d75c98815530", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false } ], - "siteRegistry": true - }, - { - "createdAt": "2018-08-07", - "completed": "2019-02-24", - "initiated": "2022-10-23", - "ministryContact": "POLLICH JOSHUA", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - } - ], - "siteRegistry": true - } - ], - "participants": [ - { - "name": "IPSUM", - "endDate": "2023-09-10", - "startDate": "2023-07-08", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": true - }, + "siteRegistry": false + } + ], + "participants": [ { + "uuid": "18499079-bb95-48ad-a077-481142edb4a9", "name": "AMET, DOLOR SIT", - "endDate": "2021-05-03", - "startDate": "2020-11-16", + "endDate": "2015-12-05", + "startDate": "2022-02-26", "notes": "", "roles": [ "ORGANIZATION" @@ -18855,223 +21921,213 @@ "siteRegistry": false }, { + "uuid": "5e27bf4d-4cb5-4b9a-b3a6-6a0979d7dc19", "name": "AMET, DOLOR SIT", - "endDate": "2021-05-07", - "startDate": "2014-03-11", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2017-01-14", - "startDate": "2015-04-01", + "endDate": "2019-08-21", + "startDate": "2014-05-03", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2019-11-17", - "startDate": "2018-01-17", - "notes": "", - "roles": [ - "EMPLOYEE" - ], "siteRegistry": false } ], "suspectLandUses": [ { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-02-25 (described on Site Profile dated 2017-02-25)", + "uuid": "cb7b3f7c-da2a-462c-9aa1-a3233013f688", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2020-04-07 (described on Site Profile dated 2020-04-07)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-12-05 (described on Site Profile dated 2015-12-05)", + "uuid": "aacad657-1e7d-429c-bc24-4164493cd5a9", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2016-01-10 (described on Site Profile dated 2016-01-10)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { + "uuid": "37ad4c7a-a364-4219-b497-41fe759f8801", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-09-06 (described on Site Profile dated 2016-09-06)", + "notes": "INSERTED FOR SITE PROFILE DATED 2014-12-20 (described on Site Profile dated 2014-12-20)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { + "uuid": "ec1bb63b-19b5-4296-a7c3-31d644997a6f", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2017-04-05 (described on Site Profile dated 2017-04-05)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "uuid": "06b5706a-bb17-476c-9847-014f3eb85220", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-02-12 (described on Site Profile dated 2015-02-12)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "notes": "INSERTED FOR SITE PROFILE DATED 2016-04-13 (described on Site Profile dated 2016-04-13)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], "parcelDescriptions": [ { - "siteRegistry": true, - "dateNoted": "2020-12-03", - "parcelID": "17640", - "crownLandUsePIN": "18783", - "crownLandFileNumber": "19170", - "landDescription": "LOT 3 OF LOT 1 BLOCK 5 DISTRICT LOT 1 PLAN 9155" - }, - { - "siteRegistry": true, - "dateNoted": "2017-06-08", - "parcelID": "20713", - "crownLandUsePIN": "17304", - "crownLandFileNumber": "15492", - "landDescription": "LOT 2 OF LOT 5 BLOCK 5 DISTRICT LOT 5 PLAN 6062" - }, - { - "siteRegistry": true, - "dateNoted": "2021-06-01", - "parcelID": "16860", - "crownLandUsePIN": "17690", - "crownLandFileNumber": "19018", - "landDescription": "LOT 5 OF LOT 3 BLOCK 4 DISTRICT LOT 4 PLAN 8931" + "uuid": "4a89090c-2dde-4775-a1ca-7eaa22fc3db9", + "siteRegistry": false, + "dateNoted": "2015-10-27", + "parcelID": "16404", + "crownLandUsePIN": "19113", + "crownLandFileNumber": "19697", + "landDescription": "LOT 5 OF LOT 4 BLOCK 4 DISTRICT LOT 1 PLAN 6744" }, { + "uuid": "56a61ab0-5986-4195-a0ec-6f8dc80b9d80", "siteRegistry": false, - "dateNoted": "2021-11-16", - "parcelID": "16463", - "crownLandUsePIN": "18252", - "crownLandFileNumber": "19687", - "landDescription": "LOT 1 OF LOT 5 BLOCK 5 DISTRICT LOT 3 PLAN 9607" + "dateNoted": "2023-02-08", + "parcelID": "15865", + "crownLandUsePIN": "20669", + "crownLandFileNumber": "17383", + "landDescription": "LOT 2 OF LOT 2 BLOCK 2 DISTRICT LOT 1 PLAN 3257" } ], "siteDisclosures": [ { + "uuid": "be43d2f6-881b-4cf7-9a37-b9f6062d1b06", "siteRegistry": true, - "dateReceived": "2022-08-15", - "dateCompleted": "2017-11-08", - "dateEntered": "2018-12-02", - "dateRegistrar": "2021-12-16", - "dateLocalAuthorityReceived": "2021-09-10", - "summary": "Vero non labore iusto dolores recusandae voluptate debitis.\nCommodi dolor ipsum.\nFuga id optio sint impedit quas sequi voluptatem mollitia sapiente.", - "informationUsed": "Libero ipsam corporis odio delectus id dolor nemo saepe.\nEst quidem reprehenderit asperiores molestias mollitia minus ea sint porro.\nIure unde molestiae.\nNulla ullam iusto voluptate fuga fugit quas quas officia.\nVitae nisi eligendi magni necessitatibus facilis nihil.", - "pastOrPresentOrders": "Omnis esse eos commodi nemo.\nNecessitatibus doloribus sint quos totam quod officiis.", + "dateReceived": "2020-12-21", + "dateCompleted": "2017-11-30", + "dateEntered": "2013-11-01", + "dateRegistrar": "2014-08-15", + "dateLocalAuthorityReceived": "2015-04-24", + "summary": "Commodi est suscipit quaerat placeat.\nNemo facilis suscipit architecto.\nDolorum similique voluptas doloribus dolor itaque quos deleniti eum.", + "informationUsed": "Ea suscipit alias consequatur minima.\nBeatae fuga ut ratione molestiae saepe nisi adipisci quod eum.\nCommodi repudiandae nam necessitatibus dolorem.", + "pastOrPresentOrders": "Enim incidunt itaque architecto molestiae.", "commercialAndIndustrialPurposes": [ { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "uuid": "6750f370-f042-49e1-b00a-593f747fbd85", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, { + "uuid": "380f8ba7-6a8b-47bb-9845-dd8ad5a5762e", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true - }, - { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false - } - ] - }, - { - "siteRegistry": false, - "dateReceived": "2017-07-07", - "dateCompleted": "2022-12-20", - "dateEntered": "2017-05-17", - "dateRegistrar": "2020-04-28", - "dateLocalAuthorityReceived": "2019-06-01", - "summary": "Laborum nesciunt cumque provident iste laudantium.\nDolores placeat sequi odit porro nihil.", - "informationUsed": "Dolor placeat repellat dolor tenetur.\nFacilis mollitia adipisci ducimus.\nEt molestias qui quis dicta fuga dolor eum.\nQuidem perspiciatis quasi tempore neque voluptatibus nobis nesciunt sequi nostrum.\nOptio blanditiis officia.", - "pastOrPresentOrders": "Sequi repudiandae fuga inventore laborum maxime.\nAdipisci eligendi iste dolor ut.", - "commercialAndIndustrialPurposes": [ - { + "uuid": "4e98cfbd-ed97-4a0c-bf64-77f97d0e585b", "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true - }, - { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false } ] } ], "activityLog": [ { + "uuid": "a5c0f916-a454-4d90-bc34-89cdb641b83a", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "GOTTLIEB NARCISO", - "timestamp": "2014-08-03" + "user": "KUNZE-MOSCISKI DEION", + "timestamp": "2013-11-03" }, { + "uuid": "7512164e-fbca-48f2-8e94-acd3318e72c9", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "CARTWRIGHT JUSTYN", - "timestamp": "2020-05-06" + "user": "GRIMES BROOKE", + "timestamp": "2018-05-12" }, { + "uuid": "56028d40-fff7-428e-9b45-416d30189a39", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "RITCHIE ERNESTINA", - "timestamp": "2022-03-01" + "user": "REICHERT JO", + "timestamp": "2022-07-31" + }, + { + "uuid": "c1299a18-28ac-4f4a-a691-94c89f7b20c5", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "FAY MARQUISE", + "timestamp": "2017-07-20" + }, + { + "uuid": "5f20d931-781e-4a0f-8669-74e36d114960", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "PARKER ADOLPH", + "timestamp": "2016-03-28" + }, + { + "uuid": "656d0565-4530-4e7c-80cb-ae5c1d112208", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "PFANNERSTILL GEOFFREY", + "timestamp": "2017-09-26" }, { + "uuid": "95b6ce11-0435-449f-a71f-51d7707b4f8c", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "MAGGIO SOFIA", - "timestamp": "2015-06-21" + "user": "BRAUN RAMIRO", + "timestamp": "2023-01-25" }, { + "uuid": "3f74033e-f53a-4234-8e5e-79d31042e96b", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "WOLFF CAMILLA", - "timestamp": "2015-08-29" + "user": "WIEGAND LEILA", + "timestamp": "2015-07-09" }, { + "uuid": "bec0ea77-ba6d-4094-babe-652d6019a3e3", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "WELCH DARIEN", - "timestamp": "2020-07-30" + "user": "RAYNOR CRYSTAL", + "timestamp": "2022-09-21" } ], "associatedSites": [ { - "dateNoted": "2020-08-20", + "uuid": "997a347f-5a9b-469b-8c7e-456a18de3654", + "dateNoted": "2023-04-29", + "notes": "", + "parcelID": "15666", + "siteID": "20470", + "siteRegistry": false + }, + { + "uuid": "561a4828-2fa3-423d-85fd-e83cadb4fd06", + "dateNoted": "2018-06-28", "notes": "", - "parcelID": "19874", - "siteID": "20555", + "parcelID": "16811", + "siteID": "20024", "siteRegistry": false } ] }, { - "uuid": "c9f71a4a-d9f1-4b65-85b6-1ef029045235", - "siteID": 20713, - "address": "5117 Loma Tunnel", - "latitude": 56.7572, - "longitude": -130.9294, - "lastUpdated": "2018-06-23", - "city": "Hagenesboro", + "uuid": "579f5bca-9b2c-4832-bc9a-1f5d2c4a9b5f", + "siteID": 17183, + "address": "571 Jaclyn Flat", + "latitude": 53.1571, + "longitude": -127.7996, + "lastUpdated": "2014-10-27", + "city": "Clairetown", "region": "Cariboo", - "victoriaFile": "26250-20/19749", + "victoriaFile": "26250-20/3934", "regionalFile": "N/A", "parcelIDs": [ - 6163154, - 427697, - 3297237, - 1669476, - 8365293 + 4343389, + 236306, + 6869666, + 9270344, + 8141110 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2019-10-30", - "completed": "2022-04-20", - "initiated": "2016-10-19", - "ministryContact": "MITCHELL BENNIE", + "uuid": "a6c88726-be72-4940-bdba-7a8c6c0c95dc", + "createdAt": "2015-06-25", + "completed": "2022-03-16", + "initiated": "2015-06-25", + "ministryContact": "ZBONCAK BESSIE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -19080,33 +22136,60 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "uuid": "ae00358e-40cf-48a7-aa93-e7123e677bc2", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "21e4bfe2-a13f-47ce-9535-b4e4f5422398", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "uuid": "34efe562-420d-452c-816c-8a71a019a75a", + "createdAt": "2015-07-24", + "completed": "2017-05-05", + "initiated": "2019-03-22", + "ministryContact": "JACOBSON FLORIAN", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "uuid": "598ea16f-d8db-4946-9ced-62527dc1a3fd", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { + "uuid": "3be0206c-4957-47eb-8cff-174284254b7a", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true + "role": "SUBMITTED BY", + "siteRegistry": false }, { + "uuid": "21b30b66-084a-4057-aabc-622766d4a8db", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2014-12-05", - "completed": "2023-08-21", - "initiated": "2015-06-24", - "ministryContact": "KSHLERIN JERALD", + "uuid": "472543c5-462d-411b-98fb-6216ae05cc31", + "createdAt": "2021-07-10", + "completed": "2022-02-16", + "initiated": "2018-10-24", + "ministryContact": "NADER KORBIN", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -19115,285 +22198,337 @@ ], "notationParticipants": [ { + "uuid": "518c230c-3619-499d-b319-b5d372faa00c", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { + "uuid": "8b884fa5-41a7-4dc5-8407-0c3bc273fd06", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true + }, + { + "uuid": "8a4fbd3f-09b6-4963-b84e-44423bea3d4e", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "b63729eb-5e20-4c5a-bda3-2674a9ae545a", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true } ], "participants": [ { + "uuid": "2742716c-1a42-442f-95b5-74c55efaaafc", "name": "SHELL CANADA PRODUCTS", - "endDate": "2015-12-31", - "startDate": "2016-09-28", + "endDate": "2022-11-05", + "startDate": "2019-08-18", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": true }, { - "name": "IPSUM", - "endDate": "2015-11-02", - "startDate": "2018-10-02", + "uuid": "2034fd58-bb60-4696-bd02-0f972457f42d", + "name": "AMET, DOLOR SIT", + "endDate": "2015-12-09", + "startDate": "2018-07-21", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true }, { - "name": "AMET, DOLOR SIT", - "endDate": "2014-03-11", - "startDate": "2021-06-02", + "uuid": "9a1b78c8-69ce-4f1d-894f-dd81e8cc672e", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2016-02-17", + "startDate": "2016-01-24", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], - "siteRegistry": false + "siteRegistry": true }, { + "uuid": "49f1b641-34f1-4c1f-bdb3-a494b1cefb1f", "name": "IPSUM", - "endDate": "2021-09-03", - "startDate": "2015-10-17", + "endDate": "2017-03-31", + "startDate": "2019-12-19", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": true + "siteRegistry": false }, { - "name": "IPSUM", - "endDate": "2023-01-09", - "startDate": "2015-06-28", + "uuid": "023b20f3-a801-4c0c-bc93-cfdcd945e9c3", + "name": "AMET, DOLOR SIT", + "endDate": "2017-11-12", + "startDate": "2015-08-21", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true } ], "suspectLandUses": [ { + "uuid": "847e12c0-4ed8-47be-832f-2eff139a19a3", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2021-03-20 (described on Site Profile dated 2021-03-20)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "uuid": "c0dba012-2bce-4f19-9b12-21c8586f00e0", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2020-08-04 (described on Site Profile dated 2020-08-04)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "notes": "INSERTED FOR SITE PROFILE DATED 2023-05-10 (described on Site Profile dated 2023-05-10)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { + "uuid": "07220c5b-0b65-4e9b-bac4-d86adbf438ab", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-12-23 (described on Site Profile dated 2016-12-23)", + "notes": "INSERTED FOR SITE PROFILE DATED 2016-10-04 (described on Site Profile dated 2016-10-04)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "uuid": "321b102e-c5f2-4f27-b797-cf0c7e3a822f", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2022-04-03 (described on Site Profile dated 2022-04-03)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], "parcelDescriptions": [ { + "uuid": "d45c36c7-085f-4ef9-a9e5-38f91e59f63d", + "siteRegistry": true, + "dateNoted": "2020-12-29", + "parcelID": "20893", + "crownLandUsePIN": "18009", + "crownLandFileNumber": "20626", + "landDescription": "LOT 2 OF LOT 5 BLOCK 3 DISTRICT LOT 2 PLAN 5051" + }, + { + "uuid": "4c844138-16e8-46c1-a8f7-d32449364655", "siteRegistry": true, - "dateNoted": "2014-10-05", - "parcelID": "15761", - "crownLandUsePIN": "15962", - "crownLandFileNumber": "18705", - "landDescription": "LOT 1 OF LOT 4 BLOCK 2 DISTRICT LOT 3 PLAN 8499" + "dateNoted": "2014-06-19", + "parcelID": "15858", + "crownLandUsePIN": "18215", + "crownLandFileNumber": "18469", + "landDescription": "LOT 1 OF LOT 5 BLOCK 4 DISTRICT LOT 3 PLAN 6043" }, { + "uuid": "6a8f6f0f-6724-4543-8086-1de6e7293206", "siteRegistry": false, - "dateNoted": "2018-11-20", - "parcelID": "16333", - "crownLandUsePIN": "17516", - "crownLandFileNumber": "18848", - "landDescription": "LOT 5 OF LOT 4 BLOCK 2 DISTRICT LOT 5 PLAN 9241" + "dateNoted": "2016-11-29", + "parcelID": "15794", + "crownLandUsePIN": "18832", + "crownLandFileNumber": "15527", + "landDescription": "LOT 2 OF LOT 4 BLOCK 3 DISTRICT LOT 3 PLAN 5907" }, { + "uuid": "e51c083c-87b3-4104-9e2c-182e4c4f3175", "siteRegistry": true, - "dateNoted": "2022-01-25", - "parcelID": "19250", - "crownLandUsePIN": "15942", - "crownLandFileNumber": "15851", - "landDescription": "LOT 1 OF LOT 1 BLOCK 5 DISTRICT LOT 3 PLAN 9515" + "dateNoted": "2014-01-06", + "parcelID": "17470", + "crownLandUsePIN": "17402", + "crownLandFileNumber": "15552", + "landDescription": "LOT 2 OF LOT 4 BLOCK 4 DISTRICT LOT 4 PLAN 3083" }, { + "uuid": "f70ba1dc-38b5-4927-9f0f-96127c6dc977", "siteRegistry": false, - "dateNoted": "2014-02-14", - "parcelID": "20381", - "crownLandUsePIN": "16742", - "crownLandFileNumber": "19857", - "landDescription": "LOT 1 OF LOT 3 BLOCK 4 DISTRICT LOT 4 PLAN 7880" + "dateNoted": "2021-07-11", + "parcelID": "18123", + "crownLandUsePIN": "17842", + "crownLandFileNumber": "17134", + "landDescription": "LOT 4 OF LOT 1 BLOCK 3 DISTRICT LOT 1 PLAN 4705" } ], "siteDisclosures": [ { - "siteRegistry": false, - "dateReceived": "2016-03-27", - "dateCompleted": "2022-02-13", - "dateEntered": "2016-12-20", - "dateRegistrar": "2017-11-18", - "dateLocalAuthorityReceived": "2022-03-27", - "summary": "Facere architecto temporibus animi incidunt autem quaerat explicabo ratione molestias.\nRepudiandae assumenda laborum facere expedita veritatis voluptates.", - "informationUsed": "Occaecati magni rerum laudantium a assumenda id pariatur doloremque ipsam.\nDeserunt numquam mollitia consequuntur tenetur officia illum nemo aperiam sapiente.\nVeniam aliquid numquam ullam in libero aperiam quis.\nIn minus ipsum culpa quidem itaque id.", - "pastOrPresentOrders": "Excepturi accusantium accusantium.\nCorrupti sit quasi praesentium ipsam sunt distinctio voluptas iure.", + "uuid": "ea0cda87-0798-4f85-b8a3-c84857f8521c", + "siteRegistry": true, + "dateReceived": "2020-12-09", + "dateCompleted": "2014-02-21", + "dateEntered": "2015-05-29", + "dateRegistrar": "2015-04-30", + "dateLocalAuthorityReceived": "2022-01-31", + "summary": "Nesciunt explicabo voluptatum dicta at dolores mollitia laudantium eveniet.\nTemporibus officiis ipsum quidem porro dolorem.\nCorrupti debitis similique voluptatibus doloribus maiores quisquam quo.", + "informationUsed": "Sequi adipisci corrupti iusto.\nAut dolores tempora consectetur dolore.\nExercitationem illo ullam ut excepturi aliquid quis atque.\nQuis suscipit vero pariatur voluptas blanditiis nisi pariatur magni molestiae.", + "pastOrPresentOrders": "Aliquid deleniti corrupti facere voluptates.", "commercialAndIndustrialPurposes": [ { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "uuid": "da22ad12-7487-4a8f-a360-a7ba77b05aff", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, { + "uuid": "d2289df2-263d-4e83-ac99-1f5abbbe8726", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false + "siteRegistry": true }, { + "uuid": "bf5783c6-864d-4784-b8b9-514968b4335c", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true + }, + { + "uuid": "c929a0ce-4ec8-4094-8773-48220d09a74e", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false } ] }, { - "siteRegistry": true, - "dateReceived": "2023-06-04", - "dateCompleted": "2022-12-27", - "dateEntered": "2015-05-28", - "dateRegistrar": "2016-11-02", - "dateLocalAuthorityReceived": "2021-05-20", - "summary": "Temporibus error quia repellat.\nBlanditiis consectetur quasi nobis omnis at nihil eius ratione consequatur.\nDolorem vero quis corporis quidem aspernatur quod.", - "informationUsed": "Distinctio doloremque perferendis exercitationem atque ab odit ea.\nLaudantium numquam optio dolor illum quis rem.\nMagnam odit assumenda velit incidunt ex.\nFugiat voluptatum perferendis facilis ipsum tenetur reiciendis debitis id.", - "pastOrPresentOrders": "Repudiandae voluptate perferendis incidunt eligendi natus repellendus.\nIpsum iure necessitatibus.\nNemo aut vel delectus fugit voluptatibus adipisci molestias quia.", + "uuid": "c1c594ed-bb2e-4d75-8e82-ea076ebc273c", + "siteRegistry": false, + "dateReceived": "2016-07-16", + "dateCompleted": "2019-07-14", + "dateEntered": "2017-01-09", + "dateRegistrar": "2022-05-13", + "dateLocalAuthorityReceived": "2022-06-12", + "summary": "Minima odit eveniet pariatur similique.\nDoloribus libero quas blanditiis autem enim quaerat consequuntur quisquam quos.", + "informationUsed": "Omnis totam quod cum odio dolor et vel.\nDebitis accusantium commodi dolorum quibusdam laboriosam provident.\nPerspiciatis quaerat aliquid.", + "pastOrPresentOrders": "Quibusdam deleniti similique perferendis.\nCumque molestiae aliquid earum alias quibusdam quidem est labore voluptate.", "commercialAndIndustrialPurposes": [ { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false - }, - { + "uuid": "4dce4cc6-77ac-418e-bca4-ac362f1e9d3a", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { + "uuid": "8b12d842-aa7f-4a22-9d89-0937df804821", "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false }, { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true + "uuid": "f407e553-ac8c-4759-858c-b83a195b23b3", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false } ] } ], "activityLog": [ { - "siteRegistry": false, + "uuid": "c0f367cc-d551-4fbd-a66c-d0e250f86dd8", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "QUITZON MAKAYLA", - "timestamp": "2019-06-15" + "user": "MAYER NEDRA", + "timestamp": "2022-10-17" }, { - "siteRegistry": false, + "uuid": "910af1df-6911-43f1-8e47-d5328d79d8a9", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "HOWELL MEGHAN", - "timestamp": "2015-04-09" + "user": "ROBERTS VINCENZA", + "timestamp": "2021-11-26" }, { + "uuid": "6b2da5bb-ff9c-45aa-bee1-f48df3cc3adc", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "DOYLE GRIFFIN", - "timestamp": "2019-08-25" + "user": "KING JORGE", + "timestamp": "2014-12-06" }, { + "uuid": "f9581da9-6bb9-4410-baa6-ae25f174ad51", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "KIEHN MARTINA", - "timestamp": "2021-10-06" + "user": "HEATHCOTE STANTON", + "timestamp": "2016-07-19" }, { + "uuid": "115eb39e-4a19-4f1d-84de-bc34e65a361e", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "BECHTELAR MOZELL", - "timestamp": "2017-09-12" + "user": "BOTSFORD IGNACIO", + "timestamp": "2018-03-02" }, { - "siteRegistry": true, + "uuid": "e76349e7-c080-44f1-848a-56baa4878ef4", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "REINGER-MORAR ENOCH", - "timestamp": "2020-08-22" + "user": "HEANEY DEMOND", + "timestamp": "2021-11-26" }, { + "uuid": "0d57c548-2315-45fc-9f2d-a5e3d57f6139", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "BOTSFORD EMMETT", - "timestamp": "2016-03-26" + "user": "BARTOLETTI KEN", + "timestamp": "2017-11-15" }, { - "siteRegistry": true, + "uuid": "a101699e-eba7-4a6b-8911-48131511268a", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "DENESIK DEION", - "timestamp": "2014-11-06" + "user": "BRUEN MOZELLE", + "timestamp": "2016-02-20" }, { - "siteRegistry": false, + "uuid": "5cde3490-d4b8-475d-8ba0-b482fba2685a", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "HERZOG CESAR", - "timestamp": "2014-11-19" + "user": "SCHNEIDER LILIANE", + "timestamp": "2014-02-22" } ], "associatedSites": [ { - "dateNoted": "2019-03-18", - "notes": "", - "parcelID": "19184", - "siteID": "19984", - "siteRegistry": false - }, - { - "dateNoted": "2023-04-30", + "uuid": "c9dcb2a3-cff2-41d7-aa59-2ce1ad3e4a25", + "dateNoted": "2023-04-01", "notes": "", - "parcelID": "18488", - "siteID": "17034", + "parcelID": "18771", + "siteID": "18426", "siteRegistry": true - }, - { - "dateNoted": "2016-10-27", - "notes": "", - "parcelID": "15403", - "siteID": "20424", - "siteRegistry": false } ] }, { - "uuid": "f72d8543-1390-46a0-b8ea-b5d0cb4329d6", - "siteID": 18042, - "address": "7456 Marge Cape", - "latitude": 56.513, - "longitude": -128.3272, - "lastUpdated": "2017-07-04", - "city": "Fort Celestinoland", - "region": "Cariboo", - "victoriaFile": "26250-20/1019", + "uuid": "a9fdd6d0-8512-47f5-84ce-997af12bf991", + "siteID": 15273, + "address": "63839 Haag Burgs", + "latitude": 55.6879, + "longitude": -125.7286, + "lastUpdated": "2014-08-19", + "city": "Pourosport", + "region": " North Coast", + "victoriaFile": "26250-20/1532", "regionalFile": "N/A", "parcelIDs": [ - 2751347, - 2914527, - 8356168, - 6533404, - 7876854 + 6125348, + 7395353, + 3463113, + 8152594, + 5569435 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2015-04-19", - "completed": "2017-07-17", - "initiated": "2021-06-13", - "ministryContact": "GOLDNER LAURY", + "uuid": "695d7c8e-5826-4c7e-bc70-818f0d582d9d", + "createdAt": "2020-01-12", + "completed": "2022-11-13", + "initiated": "2017-01-22", + "ministryContact": "STANTON NAME", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -19402,23 +22537,60 @@ ], "notationParticipants": [ { + "uuid": "053f5e70-d073-4f1a-a04b-d8c0ae821b7e", "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "uuid": "551ae7a4-2c3f-40df-9c4c-6021e92370ec", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true }, { + "uuid": "38307294-5403-4887-81d7-e57864062755", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "uuid": "bd00571a-51b2-45e7-9b93-da108667d237", + "createdAt": "2023-01-27", + "completed": "2015-02-07", + "initiated": "2018-05-23", + "ministryContact": "AUFDERHAR FLORIDA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "uuid": "4daa4a63-9a2a-4576-8040-b3f1f19b862f", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true + }, + { + "uuid": "ecc9cb82-8475-411e-bd6b-61443faf6fac", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2019-04-05", - "completed": "2022-03-28", - "initiated": "2021-03-19", - "ministryContact": "BERGE SANDY", + "uuid": "2945df34-d20f-4d5a-b8d4-24c5e8614535", + "createdAt": "2016-05-20", + "completed": "2016-10-27", + "initiated": "2022-12-12", + "ministryContact": "LABADIE MARCEL", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -19427,273 +22599,347 @@ ], "notationParticipants": [ { + "uuid": "6e4796b7-5027-4238-81e6-52734f7326b8", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true }, { + "uuid": "f2950754-fb91-49bc-9832-c8915122c2f2", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "uuid": "e7f74ec2-e416-4973-8a9e-cd8f9c5b32fa", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "b67d9d61-62d6-4c6b-834d-31c0f2de8d13", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "uuid": "3cc8239d-aafd-47f3-834f-97b3be41a9c2", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": true } ], - "siteRegistry": true - } - ], - "participants": [ + "siteRegistry": false + }, { - "name": "AMET, DOLOR SIT", - "endDate": "2015-01-02", - "startDate": "2017-01-18", - "notes": "", - "roles": [ - "EMPLOYEE" + "uuid": "1fc00954-2ba5-4087-abc8-adc044637d1f", + "createdAt": "2015-07-19", + "completed": "2022-09-04", + "initiated": "2022-04-23", + "ministryContact": "BARTON CAMILA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "uuid": "252eb406-ebbd-414b-a50a-49bcf34570b2", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "a09a6a16-3dc4-48cc-8fba-cfdd469cfb59", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + } ], "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2018-12-05", - "startDate": "2022-01-19", + "uuid": "3b42f68b-31b1-488a-b2d2-bcef64fb7657", + "createdAt": "2023-08-25", + "completed": "2016-12-19", + "initiated": "2019-10-15", + "ministryContact": "SCHIMMEL BROCK", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "uuid": "672279af-99c5-4dab-b36e-f92bf81b52a6", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "uuid": "3881b49b-74a5-4989-8c04-fde527322b88", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "7b5c873a-67f6-40a2-af7c-03634457e911", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "uuid": "bfd69618-b71f-452a-8dda-fc8ade4e2a0b", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "uuid": "d21e181c-3979-47ca-9a79-3f52ee73383e", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + } + ], + "participants": [ + { + "uuid": "cfe3029b-01ff-49f1-80a8-fcbe942ca2e8", + "name": "IPSUM", + "endDate": "2017-05-06", + "startDate": "2014-06-12", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2019-11-12", - "startDate": "2015-04-19", + "uuid": "2819d3f4-fa2c-4386-a0f2-893c707fed9c", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2021-03-11", + "startDate": "2018-01-03", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], - "siteRegistry": true + "siteRegistry": false } ], "suspectLandUses": [ { + "uuid": "778124a8-9afb-45a6-977b-915d6f0d7a15", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-01-03 (described on Site Profile dated 2019-01-03)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" - }, - { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-01-22 (described on Site Profile dated 2015-01-22)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "notes": "INSERTED FOR SITE PROFILE DATED 2021-03-08 (described on Site Profile dated 2021-03-08)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { + "uuid": "f36b34e3-ac85-47bd-8250-19985c5ba30e", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2023-10-03 (described on Site Profile dated 2023-10-03)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "notes": "INSERTED FOR SITE PROFILE DATED 2019-01-05 (described on Site Profile dated 2019-01-05)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { + "uuid": "81841d88-c317-4b72-b6ce-81d6aa163347", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-12-15 (described on Site Profile dated 2016-12-15)", + "notes": "INSERTED FOR SITE PROFILE DATED 2023-01-18 (described on Site Profile dated 2023-01-18)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { + "uuid": "b3ef7a3b-ee00-4de8-b364-0938b02a1290", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-04-20 (described on Site Profile dated 2021-04-20)", + "notes": "INSERTED FOR SITE PROFILE DATED 2023-09-05 (described on Site Profile dated 2023-09-05)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], "parcelDescriptions": [ { - "siteRegistry": true, - "dateNoted": "2015-02-21", - "parcelID": "15296", - "crownLandUsePIN": "18566", - "crownLandFileNumber": "20714", - "landDescription": "LOT 5 OF LOT 1 BLOCK 4 DISTRICT LOT 4 PLAN 3787" + "uuid": "af0c3cbc-e670-4e96-badc-22f07fead19f", + "siteRegistry": false, + "dateNoted": "2019-04-21", + "parcelID": "15691", + "crownLandUsePIN": "16274", + "crownLandFileNumber": "20705", + "landDescription": "LOT 4 OF LOT 1 BLOCK 1 DISTRICT LOT 2 PLAN 2999" }, { + "uuid": "732279ed-e777-4cc6-954c-2d2f0673f184", "siteRegistry": false, - "dateNoted": "2014-05-20", - "parcelID": "16283", - "crownLandUsePIN": "17269", - "crownLandFileNumber": "16840", - "landDescription": "LOT 1 OF LOT 2 BLOCK 3 DISTRICT LOT 5 PLAN 7880" + "dateNoted": "2019-08-02", + "parcelID": "17999", + "crownLandUsePIN": "16227", + "crownLandFileNumber": "16210", + "landDescription": "LOT 2 OF LOT 2 BLOCK 3 DISTRICT LOT 1 PLAN 3758" }, { + "uuid": "d7734635-f3e8-4c4a-a629-7222057c6ba0", "siteRegistry": true, - "dateNoted": "2015-05-13", - "parcelID": "19550", - "crownLandUsePIN": "19173", - "crownLandFileNumber": "18212", - "landDescription": "LOT 4 OF LOT 4 BLOCK 3 DISTRICT LOT 1 PLAN 6737" + "dateNoted": "2020-12-22", + "parcelID": "17527", + "crownLandUsePIN": "18394", + "crownLandFileNumber": "19489", + "landDescription": "LOT 3 OF LOT 5 BLOCK 1 DISTRICT LOT 3 PLAN 3974" }, { - "siteRegistry": false, - "dateNoted": "2017-06-29", - "parcelID": "19847", - "crownLandUsePIN": "17355", - "crownLandFileNumber": "17260", - "landDescription": "LOT 2 OF LOT 2 BLOCK 5 DISTRICT LOT 3 PLAN 4616" + "uuid": "aa05473d-bbd5-4209-88d0-cdd23be2435a", + "siteRegistry": true, + "dateNoted": "2017-10-17", + "parcelID": "20979", + "crownLandUsePIN": "17475", + "crownLandFileNumber": "16542", + "landDescription": "LOT 5 OF LOT 2 BLOCK 2 DISTRICT LOT 2 PLAN 4987" }, { + "uuid": "40bcc7b1-9e1a-499f-aa0f-596a791a5131", "siteRegistry": false, - "dateNoted": "2014-12-08", - "parcelID": "16748", - "crownLandUsePIN": "19634", - "crownLandFileNumber": "17753", - "landDescription": "LOT 1 OF LOT 5 BLOCK 2 DISTRICT LOT 5 PLAN 4730" + "dateNoted": "2021-11-15", + "parcelID": "16508", + "crownLandUsePIN": "16370", + "crownLandFileNumber": "18108", + "landDescription": "LOT 4 OF LOT 2 BLOCK 1 DISTRICT LOT 1 PLAN 7794" } ], "siteDisclosures": [ { + "uuid": "d8e70586-930a-43c3-83fe-005d85b23780", "siteRegistry": false, - "dateReceived": "2021-01-30", - "dateCompleted": "2023-09-26", - "dateEntered": "2023-08-22", - "dateRegistrar": "2021-10-10", - "dateLocalAuthorityReceived": "2017-07-14", - "summary": "Laudantium voluptates animi sint officiis aut rerum placeat vero autem.", - "informationUsed": "Tenetur aperiam illo.\nRem minima quisquam.\nArchitecto autem voluptatibus voluptate accusantium magni qui facilis ratione deleniti.", - "pastOrPresentOrders": "Libero error aperiam error veniam fugit.", + "dateReceived": "2020-05-08", + "dateCompleted": "2022-11-17", + "dateEntered": "2015-10-16", + "dateRegistrar": "2019-04-10", + "dateLocalAuthorityReceived": "2015-03-18", + "summary": "Officiis sint molestiae accusamus vel.\nIn sint inventore culpa quam quas quis inventore asperiores vero.", + "informationUsed": "Ea nemo ea placeat.\nSunt recusandae minima.\nItaque blanditiis quibusdam.\nRecusandae nobis ad delectus quae eius neque culpa distinctio.\nDucimus ducimus vero maxime.", + "pastOrPresentOrders": "Tempore illum eveniet dolores eaque hic quod.", "commercialAndIndustrialPurposes": [ { - "scheduleReference": "F2*", + "uuid": "76d1c5e8-53a4-4f66-8c05-fdb3174eac31", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { + "uuid": "24b1cc41-63f6-452e-a5ea-44afc4a41576", "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false - } - ] - }, - { - "siteRegistry": false, - "dateReceived": "2015-12-31", - "dateCompleted": "2018-12-19", - "dateEntered": "2016-04-07", - "dateRegistrar": "2014-03-14", - "dateLocalAuthorityReceived": "2018-02-14", - "summary": "Eum eius dolore non nesciunt ipsa.", - "informationUsed": "Laborum qui at voluptate sit dolores.\nQuaerat placeat et nostrum.\nAccusamus voluptatem sequi.\nQuod magni ipsum iusto maxime assumenda corrupti fugiat saepe architecto.\nMagnam ullam pariatur omnis.", - "pastOrPresentOrders": "Asperiores blanditiis alias recusandae.", - "commercialAndIndustrialPurposes": [ - { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true }, { + "uuid": "dfa2824f-04e5-4887-9d57-f905923bdf5e", "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false } ] } ], "activityLog": [ { + "uuid": "5aa75f46-502b-4aaa-944d-4141921282bf", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "NOLAN DAMION", - "timestamp": "2017-07-03" + "user": "KOZEY KELLI", + "timestamp": "2016-11-30" }, { + "uuid": "f4f1dbda-1d5a-420d-a9bf-0c5863117257", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "HELLER LILA", - "timestamp": "2018-11-27" - }, - { - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "LEANNON BETHEL", - "timestamp": "2023-01-11" + "user": "NOLAN EINO", + "timestamp": "2018-10-19" }, { + "uuid": "660ecb35-631f-4648-925c-af1169f36008", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "OBERBRUNNER KOBE", - "timestamp": "2022-02-11" + "user": "GORCZANY DIEGO", + "timestamp": "2015-12-08" }, { - "siteRegistry": true, + "uuid": "06fad9cd-53c4-4ff9-90c0-e1d3e39aed9f", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "CRIST JALON", - "timestamp": "2018-04-03" + "user": "ROMAGUERA SHANE", + "timestamp": "2020-06-06" }, { + "uuid": "75ffd322-6541-4159-bfe9-10e3db376e91", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "KUB JERMAINE", - "timestamp": "2021-10-30" + "user": "BERGE-CHAMPLIN ZULA", + "timestamp": "2014-05-14" }, { - "siteRegistry": true, + "uuid": "2f5534cc-be04-4b33-b591-1cf14eec0f7b", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "MURPHY THEODORA", - "timestamp": "2022-06-20" + "user": "BAUCH CAROLANNE", + "timestamp": "2017-10-09" }, { - "siteRegistry": true, + "uuid": "d43d4a50-6a4d-4cb8-b01e-af68b6165c7d", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "BEATTY ZION", - "timestamp": "2014-03-04" + "user": "BROWN KEATON", + "timestamp": "2022-10-04" }, { - "siteRegistry": true, + "uuid": "4f14bf9f-0e61-42d0-9126-e5ac6a56e3bf", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "DICKENS MARIELA", - "timestamp": "2015-05-29" + "user": "MCLAUGHLIN ADELBERT", + "timestamp": "2017-01-14" } ], "associatedSites": [ { - "dateNoted": "2020-01-24", - "notes": "", - "parcelID": "15458", - "siteID": "16605", - "siteRegistry": true - }, - { - "dateNoted": "2016-06-29", + "uuid": "b0ed6503-1423-4633-95ac-1d96626ab955", + "dateNoted": "2023-03-27", "notes": "", - "parcelID": "20960", - "siteID": "18292", - "siteRegistry": true + "parcelID": "20933", + "siteID": "17688", + "siteRegistry": false }, { - "dateNoted": "2019-01-02", + "uuid": "c67da82e-7d01-4661-a8f1-f4437fc3b579", + "dateNoted": "2016-12-29", "notes": "", - "parcelID": "18876", - "siteID": "17616", - "siteRegistry": true + "parcelID": "17473", + "siteID": "15525", + "siteRegistry": false } ] }, { - "uuid": "3bb7badc-162c-4234-8df2-805f1b3b4b8d", - "siteID": 17153, - "address": "4044 Audie Terrace", - "latitude": 55.4013, - "longitude": -123.2925, - "lastUpdated": "2014-03-24", - "city": "North Kareem", - "region": "Kootenay", - "victoriaFile": "26250-20/12582", + "uuid": "fcc99217-db5c-4deb-b1ef-f4cf88cbfa66", + "siteID": 16189, + "address": "37249 Leanne Dale", + "latitude": 50.1158, + "longitude": -119.9321, + "lastUpdated": "2021-07-05", + "city": "Wellington", + "region": " North Coast", + "victoriaFile": "26250-20/13795", "regionalFile": "N/A", "parcelIDs": [ - 832536, - 160925, - 8180292, - 4043895, - 4727458 + 7735826, + 3425908, + 1071213, + 2923666, + 7430555 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2019-07-03", - "completed": "2019-09-12", - "initiated": "2020-12-25", - "ministryContact": "LEBSACK FINN", + "uuid": "2005981c-ea87-4185-9774-ef1b34e23ea0", + "createdAt": "2013-12-14", + "completed": "2013-12-31", + "initiated": "2020-07-07", + "ministryContact": "BARTON ELBERT", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -19702,38 +22948,38 @@ ], "notationParticipants": [ { + "uuid": "b5ad1c82-b4c6-49a7-a214-f1dae00d8aa5", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { + "uuid": "360df247-7303-482e-bdc8-175f95fb9358", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true }, { + "uuid": "27f9df85-9424-4eca-9379-edd141ee57ad", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true }, { + "uuid": "66b17f21-0f6c-4e9b-8d86-b201ece9db27", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false } ], "siteRegistry": true }, { - "createdAt": "2013-12-30", - "completed": "2022-03-17", - "initiated": "2021-04-19", - "ministryContact": "ZIEME CARTER", + "uuid": "d132b9ec-5f40-49de-82b7-49ab98c0ff7b", + "createdAt": "2014-09-29", + "completed": "2020-01-03", + "initiated": "2018-12-07", + "ministryContact": "JACOBSON ESTEL", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -19742,33 +22988,38 @@ ], "notationParticipants": [ { + "uuid": "709aace9-f771-4ad8-b5c1-854f19c48f41", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false + "role": "REQUESTED BY", + "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "uuid": "24289a9c-6a1c-45a2-8c44-eac1039351f6", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": false }, { + "uuid": "2c08e107-63e7-4a65-948b-b68c89a86b0f", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "618d7fa5-ed24-4897-95fb-2b16f21bdcee", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true } ], "siteRegistry": false }, { - "createdAt": "2016-12-31", - "completed": "2017-06-28", - "initiated": "2017-01-15", - "ministryContact": "JACOBSON RICHMOND", + "uuid": "21b04e28-a053-4812-94cd-0122f4057d8c", + "createdAt": "2015-01-05", + "completed": "2021-01-23", + "initiated": "2021-12-06", + "ministryContact": "MARVIN BERNARDO", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -19777,28 +23028,26 @@ ], "notationParticipants": [ { + "uuid": "73ce9983-f4e0-474d-91b6-3f77e524e2be", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "215f77db-d165-48a5-a543-36f3eee70128", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true } ], "siteRegistry": false }, { - "createdAt": "2019-04-27", - "completed": "2017-02-12", - "initiated": "2019-08-02", - "ministryContact": "BINS TERRENCE", + "uuid": "f0955607-4507-44f3-9f74-133744afa6a1", + "createdAt": "2014-01-14", + "completed": "2017-10-27", + "initiated": "2017-09-24", + "ministryContact": "BERNHARD MELLIE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -19807,64 +23056,44 @@ ], "notationParticipants": [ { + "uuid": "a52a8f13-5f4a-4abd-849b-030a6873cbbd", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false }, { + "uuid": "d0fe1fce-6a63-45b3-89e0-087bc5fd47ce", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - } - ], - "siteRegistry": false - }, - { - "createdAt": "2019-11-04", - "completed": "2017-03-25", - "initiated": "2019-01-06", - "ministryContact": "SIPES-MAGGIO FABIOLA", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", "siteRegistry": true }, { + "uuid": "40e2d9e0-d260-41a2-9c0e-9674d7eb5be1", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false } ], "participants": [ { + "uuid": "a0950a26-0ae9-47fa-9dc4-d3fb886ad9b1", "name": "AMET, DOLOR SIT", - "endDate": "2015-06-08", - "startDate": "2022-05-27", + "endDate": "2023-07-25", + "startDate": "2014-11-05", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "uuid": "bf890cf9-8f02-472d-9970-d34935f70ac9", + "name": "IPSUM", + "endDate": "2019-10-30", + "startDate": "2018-12-10", "notes": "", "roles": [ "ORGANIZATION" @@ -19872,9 +23101,10 @@ "siteRegistry": false }, { - "name": "AMET, DOLOR SIT", - "endDate": "2014-05-19", - "startDate": "2019-10-17", + "uuid": "a481d7d6-79b2-407d-a190-4e6107e06c4f", + "name": "IPSUM", + "endDate": "2013-10-15", + "startDate": "2014-12-10", "notes": "", "roles": [ "ORGANIZATION" @@ -19882,202 +23112,219 @@ "siteRegistry": false }, { + "uuid": "c99a1bc3-91d2-4eaf-ad21-997455498fb0", "name": "AMET, DOLOR SIT", - "endDate": "2015-03-07", - "startDate": "2023-07-29", + "endDate": "2023-05-18", + "startDate": "2018-12-30", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false } ], "suspectLandUses": [ { + "uuid": "de1ab1f4-f93c-44cc-81a8-d20a6ba1f850", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2020-07-17 (described on Site Profile dated 2020-07-17)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" - }, - { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-11-05 (described on Site Profile dated 2021-11-05)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" - }, - { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2020-07-02 (described on Site Profile dated 2020-07-02)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" - }, - { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-07-08 (described on Site Profile dated 2016-07-08)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "notes": "INSERTED FOR SITE PROFILE DATED 2014-12-10 (described on Site Profile dated 2014-12-10)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { + "uuid": "558f5c1c-f1fc-4f5f-ab95-19428f9cb919", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-04-30 (described on Site Profile dated 2019-04-30)", + "notes": "INSERTED FOR SITE PROFILE DATED 2014-05-16 (described on Site Profile dated 2014-05-16)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], "parcelDescriptions": [ { - "siteRegistry": false, - "dateNoted": "2018-02-01", - "parcelID": "20759", - "crownLandUsePIN": "20105", - "crownLandFileNumber": "19050", - "landDescription": "LOT 3 OF LOT 1 BLOCK 3 DISTRICT LOT 1 PLAN 6518" - }, - { - "siteRegistry": false, - "dateNoted": "2022-05-26", - "parcelID": "15920", - "crownLandUsePIN": "19450", - "crownLandFileNumber": "15825", - "landDescription": "LOT 2 OF LOT 2 BLOCK 3 DISTRICT LOT 1 PLAN 3887" - }, - { + "uuid": "8984e18e-7581-4187-875e-b6d867e1c948", "siteRegistry": true, - "dateNoted": "2013-10-27", - "parcelID": "18150", - "crownLandUsePIN": "17821", - "crownLandFileNumber": "20800", - "landDescription": "LOT 2 OF LOT 3 BLOCK 1 DISTRICT LOT 4 PLAN 9588" + "dateNoted": "2017-02-23", + "parcelID": "17118", + "crownLandUsePIN": "19005", + "crownLandFileNumber": "17190", + "landDescription": "LOT 3 OF LOT 2 BLOCK 1 DISTRICT LOT 1 PLAN 8416" }, { + "uuid": "d96d0e6f-efa4-4d00-9b68-adadb7a012b0", "siteRegistry": false, - "dateNoted": "2021-03-12", - "parcelID": "16535", - "crownLandUsePIN": "17077", - "crownLandFileNumber": "18159", - "landDescription": "LOT 1 OF LOT 4 BLOCK 2 DISTRICT LOT 3 PLAN 9492" + "dateNoted": "2015-02-23", + "parcelID": "18714", + "crownLandUsePIN": "16334", + "crownLandFileNumber": "15452", + "landDescription": "LOT 5 OF LOT 3 BLOCK 4 DISTRICT LOT 4 PLAN 7015" } ], "siteDisclosures": [ { - "siteRegistry": true, - "dateReceived": "2021-02-26", - "dateCompleted": "2015-08-19", - "dateEntered": "2020-08-03", - "dateRegistrar": "2020-08-17", - "dateLocalAuthorityReceived": "2018-02-02", - "summary": "Distinctio eum consequuntur ab eum inventore fugiat sed beatae vero.\nEveniet laudantium laborum necessitatibus molestias porro ab suscipit.\nHarum consequuntur quo recusandae vitae.", - "informationUsed": "Perspiciatis debitis magnam eveniet quo velit repellat illum occaecati.\nOccaecati eaque at aut voluptas maiores quia illum occaecati sint.\nFuga vel eius maxime esse minus vel.\nAdipisci dolorum dolorum.", - "pastOrPresentOrders": "Ab non corporis error eum sint.\nEx voluptas vitae saepe rem est tempora aut expedita.\nDolores quo possimus fugit quidem dicta deserunt a.", + "uuid": "d03df731-fcef-4ae0-998b-7b3210ac3bf8", + "siteRegistry": false, + "dateReceived": "2016-02-29", + "dateCompleted": "2019-03-26", + "dateEntered": "2022-08-27", + "dateRegistrar": "2019-04-05", + "dateLocalAuthorityReceived": "2018-04-07", + "summary": "Quos ullam quasi veniam modi accusantium cum perferendis.\nIusto unde laudantium amet ipsam facere expedita.\nTempore aut commodi odit laboriosam facere possimus aut.", + "informationUsed": "Nemo natus temporibus unde nostrum exercitationem rem.\nIllo amet dicta aliquam molestias corporis ad dolore tenetur.\nAdipisci iste quia assumenda.", + "pastOrPresentOrders": "Ab magnam consequuntur.", "commercialAndIndustrialPurposes": [ { + "uuid": "56460e7f-015d-4877-b2f2-bc386973bfbb", "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { + "uuid": "f8a6f00a-0421-402e-b824-70a4d586377b", "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true - } - ] - }, - { - "siteRegistry": false, - "dateReceived": "2022-04-28", - "dateCompleted": "2020-10-10", - "dateEntered": "2016-02-02", - "dateRegistrar": "2020-09-07", - "dateLocalAuthorityReceived": "2014-02-05", - "summary": "Corporis voluptatibus vitae dolor repellendus facilis dolorum deleniti assumenda.", - "informationUsed": "Nesciunt quae porro culpa fugit eum.\nDicta saepe non accusantium consectetur deleniti perferendis.\nError odit quia exercitationem assumenda.\nNemo commodi soluta voluptates culpa.", - "pastOrPresentOrders": "Odio eaque eius dicta deserunt quidem deleniti.", - "commercialAndIndustrialPurposes": [ + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, { + "uuid": "97287479-9106-41dd-9671-5e7a57873f9c", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false + "siteRegistry": true }, { + "uuid": "ef9ccf23-6538-4ee2-b001-c97a31bebbe1", "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true - }, + } + ] + }, + { + "uuid": "281e255e-dbc6-4229-9ae6-5bf35b77751b", + "siteRegistry": true, + "dateReceived": "2020-07-11", + "dateCompleted": "2018-05-18", + "dateEntered": "2015-12-10", + "dateRegistrar": "2019-03-25", + "dateLocalAuthorityReceived": "2019-03-24", + "summary": "Quis tempora quaerat eius.\nDolores soluta esse porro animi.", + "informationUsed": "Consequuntur possimus eligendi facere molestiae odio culpa est.\nQuas possimus illum molestias fugit culpa omnis.\nLaboriosam quas officia eligendi neque.", + "pastOrPresentOrders": "Dolorum ipsum ipsum eaque consequuntur autem dolores numquam ipsa.\nAliquam architecto non voluptatum a magni laborum ipsa molestiae.\nAutem id eveniet ullam perferendis corporis quas placeat corporis.", + "commercialAndIndustrialPurposes": [ { + "uuid": "1165e79f-423b-4258-9dd0-85b4fa457e4c", "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { - "scheduleReference": "F2*", + "uuid": "ff09cade-f392-4bd2-9746-532f4602def5", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false + "siteRegistry": true } ] } ], "activityLog": [ { - "siteRegistry": false, + "uuid": "8175471c-3c29-45dc-a209-165d3d0cb25d", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "BAHRINGER-HUEL RODOLFO", - "timestamp": "2016-06-05" + "user": "RUSSEL AVA", + "timestamp": "2016-06-23" }, { + "uuid": "f397750b-593c-4517-9990-0e00f0b09635", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "CHAMPLIN-MAGGIO KRAIG", + "timestamp": "2018-11-27" + }, + { + "uuid": "f489f871-310a-4c22-a05c-7c2bc95675d9", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "STANTON LENNY", - "timestamp": "2015-01-31" + "user": "HOPPE FAYE", + "timestamp": "2015-08-16" }, { + "uuid": "5c89b5cb-f62e-4bbe-a48c-2d6dce55b51f", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "MULLER-KSHLERIN JAYCEE", - "timestamp": "2014-10-14" + "user": "VEUM JOSH", + "timestamp": "2019-05-25" }, { - "siteRegistry": false, + "uuid": "51edbbc3-7dc8-421f-aa55-b54df09db08e", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "FRITSCH ISIDRO", - "timestamp": "2016-04-22" + "user": "KUNZE HOWARD", + "timestamp": "2022-11-01" + }, + { + "uuid": "83950cce-7407-4108-9e3e-ddff5f7f6c89", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "BRADTKE JOHNATHAN", + "timestamp": "2021-01-21" + }, + { + "uuid": "204b3dee-5bed-40fe-a59f-089dd2db8d5d", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "CONROY ALLY", + "timestamp": "2023-01-02" }, { + "uuid": "7fec1dd0-ebac-4219-bd3a-62ff39990c6d", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "LYNCH HARRY", - "timestamp": "2017-12-21" + "user": "TOWNE IDELLA", + "timestamp": "2023-03-30" + }, + { + "uuid": "2fcb06bc-3d88-410f-9f1e-34edf488583e", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "NOLAN MARGUERITE", + "timestamp": "2019-12-19" } ], "associatedSites": [ { - "dateNoted": "2015-03-10", + "uuid": "15076de9-c5f3-4efd-84f3-faf2476a9d14", + "dateNoted": "2021-08-17", "notes": "", - "parcelID": "20533", - "siteID": "17940", + "parcelID": "18319", + "siteID": "19383", "siteRegistry": true } ] }, { - "uuid": "0670a5e6-9a1f-4bae-b2dc-e155f9d60fbe", - "siteID": 20583, - "address": "73202 Cole Cove", - "latitude": 56.0067, - "longitude": -138.3278, - "lastUpdated": "2019-06-16", - "city": "Yvetteworth", - "region": " North Coast", - "victoriaFile": "26250-20/1790", + "uuid": "935c4a48-481e-4b6e-8c0f-56f9344c33bb", + "siteID": 18349, + "address": "84502 Julian Flats", + "latitude": 57.591, + "longitude": -136.0767, + "lastUpdated": "2021-04-12", + "city": "North Holliebury", + "region": "Vancouver Island/Coast", + "victoriaFile": "26250-20/7444", "regionalFile": "N/A", "parcelIDs": [ - 7055141, - 1315298, - 3387024, - 1542552, - 8390250 + 5915632, + 1113866, + 9151602, + 894211, + 4325564 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2023-03-01", - "completed": "2014-08-04", - "initiated": "2020-12-30", - "ministryContact": "JACOBSON JACE", + "uuid": "7183a33e-04d3-4bdd-b275-f6edc8ff4144", + "createdAt": "2015-01-12", + "completed": "2022-10-17", + "initiated": "2021-03-14", + "ministryContact": "GLEICHNER ESTEL", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -20086,28 +23333,32 @@ ], "notationParticipants": [ { + "uuid": "8875c7c1-1bca-4758-b552-5b65b8f14d82", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false }, { + "uuid": "3d113037-b676-4699-91d5-719896c439ac", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { + "uuid": "3e7ed24e-1905-4e1e-a1be-8b80e112929b", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false + "role": "SUBMITTED BY", + "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2020-06-01", - "completed": "2016-11-08", - "initiated": "2019-12-01", - "ministryContact": "BOEHM GARRETT", + "uuid": "4fb8a71d-ab47-4aca-a14d-51a83e48f4dc", + "createdAt": "2020-03-28", + "completed": "2018-03-27", + "initiated": "2015-08-31", + "ministryContact": "HERMAN KAMRON", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -20116,33 +23367,26 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { + "uuid": "bb919dab-1759-4e59-b986-ee37c29bf06a", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true }, { + "uuid": "16582cd3-c4b1-498b-b28b-9c09bcd1102f", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false } ], "siteRegistry": false }, { - "createdAt": "2017-09-12", - "completed": "2023-06-07", - "initiated": "2018-07-03", - "ministryContact": "MORAR-VEUM FRANCISCO", + "uuid": "6d985ef2-8f16-4c0f-bacc-b544c701d29e", + "createdAt": "2017-09-21", + "completed": "2020-08-15", + "initiated": "2021-04-30", + "ministryContact": "KUNDE AMELY", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -20151,26 +23395,31 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "10e6b801-f47c-4071-ae8c-72073d68acff", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true }, { + "uuid": "663924f4-578e-4a5d-b86a-b796760de4d0", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true + "uuid": "f6738708-5357-4959-955e-46d627a55fa4", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false }, { + "uuid": "8f784f84-06c1-44e8-89cd-6e73190d0b36", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false }, { + "uuid": "1c2d34e3-000f-4141-bc4d-ba36c70cd6c9", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false @@ -20179,10 +23428,11 @@ "siteRegistry": false }, { - "createdAt": "2022-10-23", - "completed": "2021-04-14", - "initiated": "2021-10-03", - "ministryContact": "BALISTRERI FRANCIS", + "uuid": "0565c568-8de2-4759-b3e9-5661c3143c1a", + "createdAt": "2017-07-09", + "completed": "2018-10-14", + "initiated": "2019-07-02", + "ministryContact": "HOWELL DIEGO", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -20191,17 +23441,20 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "49f138a1-74ce-400c-817d-a37da82c0509", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { + "uuid": "1e5078eb-6df5-4f12-b505-1860b8d6576a", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", + "uuid": "12ffd343-47ce-4c8d-8d7d-7dfebd90f7e7", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false } @@ -20209,10 +23462,11 @@ "siteRegistry": false }, { - "createdAt": "2016-06-30", - "completed": "2016-07-08", - "initiated": "2018-08-19", - "ministryContact": "NITZSCHE VELDA", + "uuid": "7cc86cbb-705d-485a-a71c-d0f926121ee5", + "createdAt": "2021-08-23", + "completed": "2017-06-13", + "initiated": "2021-07-21", + "ministryContact": "FERRY AVERY", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -20221,29 +23475,16 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { + "uuid": "c5246dce-8edc-41e2-bc17-28c48fb14ca0", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { + "uuid": "48dd761c-0a4b-4567-98fe-e5ca8e0f21f8", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true } ], "siteRegistry": false @@ -20251,19 +23492,32 @@ ], "participants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2019-10-02", - "startDate": "2014-05-06", + "uuid": "bb18f675-3009-4c03-80eb-019aff87376b", + "name": "IPSUM", + "endDate": "2021-10-02", + "startDate": "2017-03-12", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true }, { + "uuid": "aebd14c1-4584-4c35-b959-9f595fe2f297", "name": "AMET, DOLOR SIT", - "endDate": "2019-12-20", - "startDate": "2014-01-16", + "endDate": "2021-01-10", + "startDate": "2023-04-27", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "uuid": "6aa76ea4-2bba-49ea-b751-8bee5dba6002", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2014-06-11", + "startDate": "2014-04-07", "notes": "", "roles": [ "EMPLOYEE" @@ -20271,104 +23525,153 @@ "siteRegistry": true }, { - "name": "AMET, DOLOR SIT", - "endDate": "2019-05-19", - "startDate": "2020-09-19", + "uuid": "999abdde-9cfe-4dad-8073-9956f2359c6b", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2023-07-16", + "startDate": "2016-01-02", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "uuid": "5ced456d-62da-45b4-9e21-c723ba1dc567", + "name": "IPSUM", + "endDate": "2021-05-03", + "startDate": "2019-09-26", + "notes": "", + "roles": [ + "EMPLOYEE" ], "siteRegistry": true } ], "suspectLandUses": [ { + "uuid": "88f16046-f63e-499b-b40a-fedf6c102f51", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2018-01-01 (described on Site Profile dated 2018-01-01)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "uuid": "f057cb5d-5542-4c47-96d9-c2d87a59e808", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-10-25 (described on Site Profile dated 2014-10-25)", + "notes": "INSERTED FOR SITE PROFILE DATED 2022-05-08 (described on Site Profile dated 2022-05-08)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { + "uuid": "9646e33f-e247-4b9d-ad60-5aa2169dfda8", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-12-06 (described on Site Profile dated 2017-12-06)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "notes": "INSERTED FOR SITE PROFILE DATED 2017-06-12 (described on Site Profile dated 2017-06-12)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "uuid": "a1437720-078c-4f4e-9901-a6b4c905d150", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2017-01-24 (described on Site Profile dated 2017-01-24)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], "parcelDescriptions": [ { + "uuid": "a0e8c7f1-67b8-4cdf-ae3c-155b01fa50d4", "siteRegistry": false, - "dateNoted": "2016-09-11", - "parcelID": "15603", - "crownLandUsePIN": "19285", - "crownLandFileNumber": "20145", - "landDescription": "LOT 1 OF LOT 2 BLOCK 3 DISTRICT LOT 3 PLAN 7174" + "dateNoted": "2017-07-14", + "parcelID": "19256", + "crownLandUsePIN": "19755", + "crownLandFileNumber": "17529", + "landDescription": "LOT 3 OF LOT 2 BLOCK 3 DISTRICT LOT 1 PLAN 5902" + }, + { + "uuid": "07154857-dea6-4e04-bb09-baa07654bcf4", + "siteRegistry": false, + "dateNoted": "2014-06-17", + "parcelID": "20879", + "crownLandUsePIN": "19594", + "crownLandFileNumber": "19837", + "landDescription": "LOT 1 OF LOT 1 BLOCK 4 DISTRICT LOT 2 PLAN 4551" + }, + { + "uuid": "3498e418-f50f-47db-9cdf-55749c7294b1", + "siteRegistry": false, + "dateNoted": "2022-01-07", + "parcelID": "18882", + "crownLandUsePIN": "18265", + "crownLandFileNumber": "18930", + "landDescription": "LOT 1 OF LOT 3 BLOCK 3 DISTRICT LOT 1 PLAN 6847" }, { + "uuid": "cd016c5b-9098-4786-8a2d-b648869a83dd", "siteRegistry": false, - "dateNoted": "2020-04-18", - "parcelID": "16019", - "crownLandUsePIN": "18225", - "crownLandFileNumber": "15876", - "landDescription": "LOT 2 OF LOT 2 BLOCK 1 DISTRICT LOT 2 PLAN 2980" + "dateNoted": "2023-07-25", + "parcelID": "17570", + "crownLandUsePIN": "15676", + "crownLandFileNumber": "15213", + "landDescription": "LOT 5 OF LOT 4 BLOCK 5 DISTRICT LOT 1 PLAN 5912" } ], "siteDisclosures": [ { - "siteRegistry": true, - "dateReceived": "2021-06-01", - "dateCompleted": "2014-07-12", - "dateEntered": "2018-06-11", - "dateRegistrar": "2016-01-12", - "dateLocalAuthorityReceived": "2018-12-05", - "summary": "Laudantium quo iure nostrum voluptatem corrupti voluptatem.\nAccusantium sunt optio debitis necessitatibus.\nPlaceat provident iste earum optio possimus amet animi voluptatem necessitatibus.", - "informationUsed": "Dolorem minima quis quidem voluptas laudantium quae.\nOccaecati laborum soluta sed adipisci quo sint tempore.\nTemporibus omnis dignissimos.", - "pastOrPresentOrders": "Id officiis voluptatum distinctio veritatis nostrum esse atque dolore.\nIpsa aperiam excepturi iste debitis.\nAssumenda veritatis tempore enim occaecati a.", + "uuid": "7b2f807d-d4f7-43db-96f5-c02f8cbdceca", + "siteRegistry": false, + "dateReceived": "2021-09-15", + "dateCompleted": "2013-12-14", + "dateEntered": "2023-09-18", + "dateRegistrar": "2019-09-06", + "dateLocalAuthorityReceived": "2022-04-18", + "summary": "Corrupti magni quod perspiciatis expedita architecto.", + "informationUsed": "Reprehenderit exercitationem asperiores temporibus tenetur.\nExcepturi animi fugiat animi nam expedita quam deserunt voluptatibus.\nTempora quam fugiat et error non totam nostrum.\nIusto ea magnam vero sint reprehenderit occaecati fugit.\nLaboriosam voluptates quas sint omnis incidunt accusamus.", + "pastOrPresentOrders": "Facere consequatur occaecati perferendis ea sunt aliquam.\nEx aspernatur exercitationem illum a corrupti beatae aspernatur facere error.\nBlanditiis quod optio repellendus nisi.", "commercialAndIndustrialPurposes": [ { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "uuid": "48e1c46a-efc6-4cab-8002-ec0c5e73cb6a", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { - "scheduleReference": "F1*", + "uuid": "47ed2e09-9dd6-49ef-9c73-6c9d96aec675", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { + "uuid": "00081767-92ad-444b-9fc9-2d172e526adf", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false - }, - { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false + "siteRegistry": true } ] }, { + "uuid": "067ddfbd-5449-413b-8bc2-a74efadbab01", "siteRegistry": true, - "dateReceived": "2016-03-06", - "dateCompleted": "2021-05-26", - "dateEntered": "2023-09-28", - "dateRegistrar": "2020-01-15", - "dateLocalAuthorityReceived": "2016-03-28", - "summary": "Nobis quo distinctio.\nEsse iure perferendis fugiat ratione ullam neque.", - "informationUsed": "Perspiciatis optio corrupti corrupti excepturi velit cupiditate optio officia.\nEnim aliquid minima expedita maxime odio quia debitis.\nQuos in cum unde doloremque inventore maxime.", - "pastOrPresentOrders": "Similique asperiores deleniti facilis illum nesciunt quaerat illo nam odit.", + "dateReceived": "2019-11-14", + "dateCompleted": "2014-05-17", + "dateEntered": "2022-11-06", + "dateRegistrar": "2020-07-15", + "dateLocalAuthorityReceived": "2016-04-26", + "summary": "Architecto temporibus illum unde saepe temporibus ex nam perspiciatis placeat.\nCupiditate atque laboriosam nam officia assumenda hic corporis totam.", + "informationUsed": "Dolore harum molestias quos porro porro laudantium non distinctio expedita.\nAmet ex necessitatibus sequi molestias eum adipisci facere.\nNemo illo perferendis laborum.", + "pastOrPresentOrders": "Possimus cumque iste.\nOptio a esse numquam quibusdam error voluptate ad debitis inventore.", "commercialAndIndustrialPurposes": [ { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true + "uuid": "596ed368-ae00-4182-a2c7-1f1e322c3d2e", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false }, { - "scheduleReference": "F2*", + "uuid": "9d76e9df-cc52-4967-b359-230dc0048574", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true + "siteRegistry": false }, { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "uuid": "01168168-1a8e-4349-8a37-840827ec643b", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false } ] @@ -20376,113 +23679,113 @@ ], "activityLog": [ { + "uuid": "09f993d9-557a-40d6-9fab-70bea38537a5", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "DUBUQUE ANTONETTA", - "timestamp": "2017-01-12" + "user": "BLICK ABDIEL", + "timestamp": "2017-01-11" }, { + "uuid": "54eb5d2f-c9b7-476b-becd-1490165a7fe6", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "KEEBLER MARYAM", - "timestamp": "2017-12-04" + "user": "KOCH DEANGELO", + "timestamp": "2021-08-07" }, { - "siteRegistry": true, + "uuid": "8cdbb7c2-51a4-47cc-beb0-65c835f6dec7", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "WEBER ABRAHAM", - "timestamp": "2022-05-29" + "user": "RATH MATHIAS", + "timestamp": "2019-12-05" }, { + "uuid": "c4e13097-22d3-4986-9af5-68ac5f4cda7a", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "HILLL DELMER", - "timestamp": "2016-04-25" + "user": "MCKENZIE EDD", + "timestamp": "2023-08-10" }, { + "uuid": "2663b340-55a4-48c3-aa6f-2fd448336453", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "CRONA DEJUAN", - "timestamp": "2022-11-11" + "user": "ERDMAN CLAIRE", + "timestamp": "2016-03-22" }, { - "siteRegistry": true, + "uuid": "fb3bbf68-c5cc-47f5-bf91-eb139192a7ef", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "LEDNER RYLEY", + "timestamp": "2022-08-22" + }, + { + "uuid": "0a9d62ba-e1d6-453d-83ad-07f76edb46ba", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "DICKENS PATIENCE", - "timestamp": "2017-04-26" + "user": "ABSHIRE ZACHARY", + "timestamp": "2022-08-31" }, { + "uuid": "bf0e7825-e31a-4ae9-b9cf-c10610e5d102", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "FADEL KEVON", - "timestamp": "2015-10-22" + "user": "RUNOLFSDOTTIR KIP", + "timestamp": "2022-02-12" + }, + { + "uuid": "97b5f910-0049-481e-9f7f-b2020cbae0d7", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "MOEN LINCOLN", + "timestamp": "2014-05-21" + }, + { + "uuid": "b472be88-36a7-4090-abea-2df6756e9dba", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "KILBACK AVERY", + "timestamp": "2017-11-03" } ], "associatedSites": [ { - "dateNoted": "2014-12-27", + "uuid": "d460ea25-c91f-42c9-b9fa-69db49f53a7c", + "dateNoted": "2015-05-01", "notes": "", - "parcelID": "17506", - "siteID": "15924", - "siteRegistry": true + "parcelID": "17307", + "siteID": "20682", + "siteRegistry": false } ] }, { - "uuid": "26134559-8f17-4546-a6d8-0abb34aaa74f", - "siteID": 18797, - "address": "4217 Margie Mall", - "latitude": 52.7425, - "longitude": -135.8619, - "lastUpdated": "2017-06-04", - "city": "Ellsworthview", - "region": "Mainland/Southwest", - "victoriaFile": "26250-20/8310", + "uuid": "328cacc9-1466-4f49-8c17-2ac178ba336b", + "siteID": 17233, + "address": "755 Eda Ridges", + "latitude": 50.2714, + "longitude": -128.8775, + "lastUpdated": "2019-04-22", + "city": "Port Zellaland", + "region": "Cariboo", + "victoriaFile": "26250-20/11544", "regionalFile": "N/A", "parcelIDs": [ - 5799557, - 4763293, - 6412678, - 9916245, - 9264816 + 5953847, + 3802299, + 2560029, + 3671892, + 5264079 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2023-02-10", - "completed": "2015-03-24", - "initiated": "2023-04-03", - "ministryContact": "CRUICKSHANK LEONE", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - } - ], - "siteRegistry": true - }, - { - "createdAt": "2023-04-06", - "completed": "2022-10-29", - "initiated": "2016-04-19", - "ministryContact": "ROLFSON KARLEY", + "uuid": "71fd9663-13b4-4192-8334-ce49d6089468", + "createdAt": "2022-09-23", + "completed": "2017-04-06", + "initiated": "2015-01-25", + "ministryContact": "CORWIN ELDON", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -20491,38 +23794,38 @@ ], "notationParticipants": [ { + "uuid": "45a6a824-343e-4bd4-bfef-1104b8b4cce1", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { + "uuid": "7608e4ed-b949-4331-aa8b-328933a048f4", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "9f988034-8b64-462a-91ab-af02226b6b19", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { + "uuid": "10003094-4533-4a65-a124-4c51674f9852", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true } ], "siteRegistry": false }, { - "createdAt": "2014-03-18", - "completed": "2020-07-13", - "initiated": "2017-02-15", - "ministryContact": "BOSCO LORI", + "uuid": "7a3634be-3800-42f0-9446-4807ab84c756", + "createdAt": "2016-12-04", + "completed": "2017-01-26", + "initiated": "2017-01-18", + "ministryContact": "LITTLE ESTELLA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -20531,38 +23834,38 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { + "uuid": "45a8baa5-9227-4062-88c8-44ff5dba7702", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", + "uuid": "4a09b45a-e47a-42db-b17d-e90aa63248a4", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", + "uuid": "0f1f3957-400b-4064-9baf-02140d6ab7d0", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "uuid": "d7e48f6c-55d3-44be-befd-a79370a5382f", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", "siteRegistry": false } ], "siteRegistry": true }, { - "createdAt": "2014-12-05", - "completed": "2014-01-08", - "initiated": "2016-06-18", - "ministryContact": "BARTELL ELENORA", + "uuid": "827b3d36-2408-441c-bb3d-9afd3d81eaa3", + "createdAt": "2019-06-10", + "completed": "2022-10-03", + "initiated": "2020-01-11", + "ministryContact": "STAMM BETH", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -20571,114 +23874,198 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "f7cedae5-115c-4635-83b9-c0cdb9772e31", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { + "uuid": "66699b12-6093-4290-b9dc-e09d06f4e977", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", + "uuid": "9994500d-b8ee-404d-a8f7-4b364dc54627", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { + "uuid": "0a96f896-5eb7-4050-a480-722d4bf412a6", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true + "role": "REQUESTED BY", + "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true } ], "participants": [ { + "uuid": "870ecbb8-8457-46f9-8bdb-55a9c7dcb358", "name": "IPSUM", - "endDate": "2014-03-02", - "startDate": "2022-04-15", + "endDate": "2019-11-30", + "startDate": "2022-03-17", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2016-06-07", - "startDate": "2020-10-25", + "uuid": "685e06a6-96e3-4308-bbf1-77d6dbb2a847", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2018-01-10", + "startDate": "2021-11-17", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "uuid": "26e3365f-30b2-4ba7-9d34-31b6db790c3d", + "name": "IPSUM", + "endDate": "2023-09-13", + "startDate": "2023-08-21", "notes": "", "roles": [ "EMPLOYEE" ], "siteRegistry": true + }, + { + "uuid": "9f7a3e0b-edad-47d0-a449-7d3e9c4a5a87", + "name": "AMET, DOLOR SIT", + "endDate": "2014-11-05", + "startDate": "2021-07-10", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false } ], "suspectLandUses": [ { + "uuid": "ca3b52dc-c953-48ec-99f6-e1a7ff4288df", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2019-06-02 (described on Site Profile dated 2019-06-02)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "uuid": "26a8c28f-26fb-470f-8187-9f96087314dc", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-09-29 (described on Site Profile dated 2014-09-29)", + "notes": "INSERTED FOR SITE PROFILE DATED 2023-07-14 (described on Site Profile dated 2023-07-14)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { + "uuid": "3184b8cd-f124-49ef-91b2-ada1730a99d2", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-10-03 (described on Site Profile dated 2018-10-03)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "notes": "INSERTED FOR SITE PROFILE DATED 2013-11-23 (described on Site Profile dated 2013-11-23)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "uuid": "d29977a4-50d7-4908-8773-2c6cfbf51505", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2015-07-15 (described on Site Profile dated 2015-07-15)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], "parcelDescriptions": [ { + "uuid": "219b25db-527e-41e7-8572-270694fba2e4", "siteRegistry": false, - "dateNoted": "2013-11-28", - "parcelID": "18588", - "crownLandUsePIN": "16809", - "crownLandFileNumber": "16841", - "landDescription": "LOT 3 OF LOT 3 BLOCK 2 DISTRICT LOT 5 PLAN 6848" - }, - { - "siteRegistry": true, - "dateNoted": "2020-06-08", - "parcelID": "16486", - "crownLandUsePIN": "17693", - "crownLandFileNumber": "20285", - "landDescription": "LOT 3 OF LOT 3 BLOCK 4 DISTRICT LOT 5 PLAN 9532" + "dateNoted": "2020-06-20", + "parcelID": "16012", + "crownLandUsePIN": "20507", + "crownLandFileNumber": "15724", + "landDescription": "LOT 4 OF LOT 5 BLOCK 1 DISTRICT LOT 3 PLAN 3249" }, { + "uuid": "fd910582-f5ef-4c5d-b59e-9836084809d9", "siteRegistry": false, - "dateNoted": "2021-06-25", - "parcelID": "20978", - "crownLandUsePIN": "18414", - "crownLandFileNumber": "20564", - "landDescription": "LOT 4 OF LOT 2 BLOCK 4 DISTRICT LOT 1 PLAN 8938" + "dateNoted": "2021-09-18", + "parcelID": "18009", + "crownLandUsePIN": "19655", + "crownLandFileNumber": "16433", + "landDescription": "LOT 4 OF LOT 1 BLOCK 5 DISTRICT LOT 4 PLAN 7809" } ], "siteDisclosures": [ { - "siteRegistry": true, - "dateReceived": "2018-04-13", - "dateCompleted": "2014-10-09", - "dateEntered": "2015-01-01", - "dateRegistrar": "2014-05-29", - "dateLocalAuthorityReceived": "2017-04-27", - "summary": "Fugit nisi omnis magni repudiandae.", - "informationUsed": "Cupiditate architecto rerum earum alias magnam soluta.\nHarum molestias ipsam exercitationem.\nHarum fugiat aut hic ullam repudiandae doloribus minus.\nUllam reiciendis maxime id possimus error.", - "pastOrPresentOrders": "Quis perspiciatis ducimus fuga rerum harum quos fugit assumenda beatae.\nAperiam dicta qui quibusdam facere omnis perspiciatis quaerat officia quaerat.", + "uuid": "963a47d0-6f40-467a-8522-211e89ccf4db", + "siteRegistry": false, + "dateReceived": "2015-09-30", + "dateCompleted": "2019-03-22", + "dateEntered": "2018-07-27", + "dateRegistrar": "2015-01-21", + "dateLocalAuthorityReceived": "2023-09-09", + "summary": "Aliquid natus tempora reiciendis.\nDignissimos consectetur iure illo a corporis numquam aperiam.\nLaboriosam in possimus nemo deleniti quisquam quam.", + "informationUsed": "Modi consequuntur placeat.\nMinus cupiditate quas corporis voluptatem vero facilis beatae.\nNulla suscipit sed nobis.", + "pastOrPresentOrders": "Magnam dolorem aut.\nEt mollitia corporis autem ratione dignissimos provident quod aspernatur accusamus.\nExercitationem dolore corrupti distinctio nihil dolores natus temporibus.", "commercialAndIndustrialPurposes": [ { - "scheduleReference": "F1*", + "uuid": "d1991071-726b-4341-8ea4-39bff6a8decb", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "uuid": "05b5e998-0dfe-41d5-b08c-b6e5d46cd2da", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { - "scheduleReference": "F1*", + "uuid": "95862edd-0284-49c2-9e11-15910d9f1cf1", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "uuid": "16c04886-bca6-455d-b4c3-ecfda942bbb2", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + } + ] + }, + { + "uuid": "554e1d2f-4e26-4725-930f-0caf2f6ef3be", + "siteRegistry": false, + "dateReceived": "2020-12-29", + "dateCompleted": "2018-11-29", + "dateEntered": "2023-08-04", + "dateRegistrar": "2019-04-03", + "dateLocalAuthorityReceived": "2016-01-05", + "summary": "Ab libero et praesentium vero et ullam.\nProvident corporis soluta culpa nemo occaecati libero.", + "informationUsed": "Exercitationem blanditiis ipsam a mollitia dolor natus fuga.\nConsectetur et molestias optio.\nUnde sunt sequi culpa molestiae ratione nostrum ipsa ipsa doloribus.\nQuidem laudantium sint quos aut blanditiis perferendis ipsam.", + "pastOrPresentOrders": "Ratione ducimus dignissimos.", + "commercialAndIndustrialPurposes": [ + { + "uuid": "ea0d190f-2a44-449a-ae09-e3f17446805c", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "uuid": "0d8d042a-712e-4d44-ac25-2510e221ccd7", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "uuid": "3748ec0c-2b52-4ef7-b5d3-923220331329", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "uuid": "0aef2916-d4a4-4ae6-90cc-f2c07523b318", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false } ] @@ -20686,108 +24073,106 @@ ], "activityLog": [ { + "uuid": "d2236879-523c-4e85-bb2e-973a8558a11a", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "SANFORD KURT", - "timestamp": "2023-01-20" + "user": "O'HARA MAURICIO", + "timestamp": "2019-10-01" }, { - "siteRegistry": true, + "uuid": "51dddf36-8b4b-403f-94c6-c4188b477c1d", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "KING-PACOCHA AMBER", - "timestamp": "2015-04-04" + "user": "CRONA DORTHY", + "timestamp": "2018-05-04" }, { + "uuid": "269afea9-bc4b-4dbf-935f-b2849006658b", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "DICKENS MARJORY", - "timestamp": "2018-03-18" + "user": "KUNDE SOPHIA", + "timestamp": "2016-09-21" }, { + "uuid": "d3fba94d-7b30-4176-9313-ad1d1ac77cb7", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "GUTKOWSKI CAITLYN", - "timestamp": "2016-02-11" + "user": "KOELPIN ADOLFO", + "timestamp": "2014-06-22" }, { - "siteRegistry": true, + "uuid": "35a98526-36bb-4554-9609-12bc7e9f0a1e", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "NICOLAS MANLEY", - "timestamp": "2019-05-31" + "user": "BAILEY NICHOLE", + "timestamp": "2020-05-08" }, { - "siteRegistry": true, + "uuid": "2fea0a95-6bcd-4a09-b29c-e483a757d795", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "LUBOWITZ VIVIAN", - "timestamp": "2017-04-21" + "user": "LEANNON CHRISTINE", + "timestamp": "2020-10-05" }, { + "uuid": "8e1e02a9-3bba-4954-a34b-d7cd25a626cf", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "O'CONNELL ANTONETTA", - "timestamp": "2016-02-09" - }, - { - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "MARVIN FREEDA", - "timestamp": "2021-10-09" + "user": "ROHAN EDDIE", + "timestamp": "2022-12-15" }, { + "uuid": "a3329ede-d57a-407f-8455-c134351a5e7a", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "FUNK CLOYD", - "timestamp": "2019-01-13" + "user": "ROBERTS VITA", + "timestamp": "2020-07-19" }, { + "uuid": "7bcfce3a-845d-4c71-920d-eaf75c8ba0ad", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "KULAS DAISHA", - "timestamp": "2021-12-21" + "user": "MORAR MELVIN", + "timestamp": "2023-04-21" } ], "associatedSites": [ { - "dateNoted": "2017-04-23", - "notes": "", - "parcelID": "18734", - "siteID": "17329", - "siteRegistry": true - }, - { - "dateNoted": "2014-06-26", + "uuid": "5d1e0d0d-ade2-45bd-9961-8a2611c94e49", + "dateNoted": "2021-02-10", "notes": "", - "parcelID": "20910", - "siteID": "20492", - "siteRegistry": true + "parcelID": "19840", + "siteID": "17673", + "siteRegistry": false } ] }, { - "uuid": "0440d9bb-b109-4c96-bf58-187df53c36cc", - "siteID": 20424, - "address": "35812 Howell Lights", - "latitude": 56.961, - "longitude": -125.3912, - "lastUpdated": "2019-07-07", - "city": "Krajcikcester", - "region": "Vancouver Island/Coast", - "victoriaFile": "26250-20/1549", + "uuid": "4130de63-4f83-4b3a-af35-57ee233190f5", + "siteID": 15432, + "address": "9201 Ryann Fields", + "latitude": 51.6351, + "longitude": -134.1387, + "lastUpdated": "2015-07-07", + "city": "Moline", + "region": "Kootenay", + "victoriaFile": "26250-20/8308", "regionalFile": "N/A", "parcelIDs": [ - 3575788, - 2640592, - 1126789, - 2757992, - 7109448 + 2170211, + 9712501, + 6319450, + 974129, + 2972703 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2022-06-01", - "completed": "2016-05-26", - "initiated": "2022-07-06", - "ministryContact": "KEMMER GEORGE", + "uuid": "52eeb1cb-c40c-4714-a068-153cddde3b66", + "createdAt": "2022-08-03", + "completed": "2022-11-06", + "initiated": "2023-02-23", + "ministryContact": "LUBOWITZ CARMELLA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -20796,33 +24181,26 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { + "uuid": "94f7b545-c544-47f1-a8f8-87f23e6a2d42", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "uuid": "ce668b8b-0815-42a2-81c2-167e5782eb1e", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2023-04-06", - "completed": "2020-11-07", - "initiated": "2016-10-12", - "ministryContact": "ORN BABY", + "uuid": "2e06d20a-0e49-4cbc-ab92-19b8528d2049", + "createdAt": "2016-04-19", + "completed": "2023-03-11", + "initiated": "2021-01-03", + "ministryContact": "RUTHERFORD-HERMISTON ROSEMARY", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -20831,44 +24209,55 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "63f28b54-17ae-4fb8-90ee-f6735cb47af6", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "acec1d2e-8c99-492c-84ce-5982d40599d1", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false }, { + "uuid": "c5bbb712-3fb1-4045-a0cd-9606664ebc3e", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false } ], "participants": [ { - "name": "IPSUM", - "endDate": "2017-07-25", - "startDate": "2014-11-28", + "uuid": "4bc8f94d-9a7e-40cf-9347-92f48d161940", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2014-10-10", + "startDate": "2014-06-11", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2020-10-04", - "startDate": "2016-12-25", + "uuid": "50e501ec-cfdc-44db-995b-d9c56d237700", + "name": "AMET, DOLOR SIT", + "endDate": "2020-03-02", + "startDate": "2019-03-11", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true }, { + "uuid": "a5afcd39-7dc1-4de6-8fe4-30cbb4a398a9", "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2020-09-12", - "startDate": "2022-11-05", + "endDate": "2022-07-25", + "startDate": "2014-07-07", "notes": "", "roles": [ "EMPLOYEE" @@ -20876,213 +24265,235 @@ "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2023-05-26", - "startDate": "2015-03-16", + "uuid": "a7a84d33-5734-4aae-9ec4-c1fc3a95f411", + "name": "AMET, DOLOR SIT", + "endDate": "2017-07-23", + "startDate": "2023-01-02", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true } ], "suspectLandUses": [ { + "uuid": "6761564b-9423-4fc9-a7ae-b168e359d3aa", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-06-05 (described on Site Profile dated 2014-06-05)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" - }, - { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-03-19 (described on Site Profile dated 2016-03-19)", + "notes": "INSERTED FOR SITE PROFILE DATED 2021-01-11 (described on Site Profile dated 2021-01-11)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-03-12 (described on Site Profile dated 2022-03-12)", + "uuid": "722641d5-4723-4804-b90c-a1ad33940560", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2022-12-07 (described on Site Profile dated 2022-12-07)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-07-03 (described on Site Profile dated 2016-07-03)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "uuid": "90d32dcf-5043-4b02-8a0f-2e5884d69c17", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2019-08-17 (described on Site Profile dated 2019-08-17)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], "parcelDescriptions": [ { + "uuid": "d6ca8598-2fe6-4010-bd73-96601b4a9ef8", "siteRegistry": true, - "dateNoted": "2013-12-17", - "parcelID": "19564", - "crownLandUsePIN": "15377", - "crownLandFileNumber": "15585", - "landDescription": "LOT 2 OF LOT 1 BLOCK 2 DISTRICT LOT 5 PLAN 7668" + "dateNoted": "2015-09-11", + "parcelID": "15640", + "crownLandUsePIN": "18784", + "crownLandFileNumber": "15565", + "landDescription": "LOT 2 OF LOT 3 BLOCK 3 DISTRICT LOT 2 PLAN 5504" }, { + "uuid": "bb151070-9c98-4c63-b9f4-6ad97f431453", "siteRegistry": false, - "dateNoted": "2022-09-09", - "parcelID": "18267", - "crownLandUsePIN": "19025", - "crownLandFileNumber": "18099", - "landDescription": "LOT 1 OF LOT 1 BLOCK 1 DISTRICT LOT 3 PLAN 6232" + "dateNoted": "2015-03-28", + "parcelID": "19797", + "crownLandUsePIN": "15355", + "crownLandFileNumber": "15979", + "landDescription": "LOT 4 OF LOT 5 BLOCK 3 DISTRICT LOT 2 PLAN 8454" }, { - "siteRegistry": true, - "dateNoted": "2016-11-13", - "parcelID": "18145", - "crownLandUsePIN": "16061", - "crownLandFileNumber": "20690", - "landDescription": "LOT 2 OF LOT 2 BLOCK 4 DISTRICT LOT 5 PLAN 4130" + "uuid": "0ad65e18-2202-4b06-8b05-0d6235f0a108", + "siteRegistry": false, + "dateNoted": "2015-11-03", + "parcelID": "20595", + "crownLandUsePIN": "17757", + "crownLandFileNumber": "18699", + "landDescription": "LOT 3 OF LOT 4 BLOCK 4 DISTRICT LOT 1 PLAN 4956" }, { + "uuid": "eea35ebe-aba2-4be7-a946-a9adba8bb94d", "siteRegistry": false, - "dateNoted": "2018-07-03", - "parcelID": "17557", - "crownLandUsePIN": "17621", - "crownLandFileNumber": "19879", - "landDescription": "LOT 5 OF LOT 1 BLOCK 1 DISTRICT LOT 2 PLAN 5188" + "dateNoted": "2022-09-04", + "parcelID": "20220", + "crownLandUsePIN": "20950", + "crownLandFileNumber": "17004", + "landDescription": "LOT 4 OF LOT 5 BLOCK 1 DISTRICT LOT 2 PLAN 5437" + }, + { + "uuid": "f1d164e9-3ff6-4f5c-8130-2a5e89f201ea", + "siteRegistry": true, + "dateNoted": "2016-03-26", + "parcelID": "16144", + "crownLandUsePIN": "16205", + "crownLandFileNumber": "20174", + "landDescription": "LOT 1 OF LOT 2 BLOCK 1 DISTRICT LOT 3 PLAN 3337" } ], "siteDisclosures": [ { + "uuid": "6a0e5b83-66d8-4903-ad7f-4bc59f4fc487", "siteRegistry": false, - "dateReceived": "2015-08-01", - "dateCompleted": "2015-02-09", - "dateEntered": "2014-05-04", - "dateRegistrar": "2023-04-06", - "dateLocalAuthorityReceived": "2015-01-01", - "summary": "Distinctio quia sequi maxime occaecati nisi.", - "informationUsed": "Reiciendis commodi veritatis.\nSaepe debitis libero ipsa.\nAperiam impedit consequatur recusandae similique eligendi velit laboriosam velit.\nOdit commodi exercitationem rem quod beatae in.\nQuaerat minima molestiae autem nulla laudantium veritatis eligendi.", - "pastOrPresentOrders": "Asperiores accusantium velit totam.\nIusto illo deserunt similique reprehenderit quam cupiditate ea velit.", + "dateReceived": "2021-09-10", + "dateCompleted": "2021-06-07", + "dateEntered": "2017-08-19", + "dateRegistrar": "2019-07-04", + "dateLocalAuthorityReceived": "2017-07-26", + "summary": "Maiores quos iure labore quae provident.\nNobis ipsam modi eius omnis officiis.\nOfficiis rem unde cumque cum voluptate sit laborum quasi quisquam.", + "informationUsed": "Soluta et omnis error mollitia maiores culpa quia.\nRerum iusto ipsum deserunt officiis voluptatum molestias unde tempora.\nEst dicta magnam ea alias saepe.\nExcepturi corporis illo ipsa enim.", + "pastOrPresentOrders": "Consectetur veniam consequatur esse quibusdam.", "commercialAndIndustrialPurposes": [ { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false - }, - { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false - }, - { + "uuid": "fefad337-85fc-48f9-a8a0-6b7f8129f3cf", "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { + "uuid": "0f22a611-5768-42c7-8ef4-93b86cb11733", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false - } - ] - }, - { - "siteRegistry": true, - "dateReceived": "2020-06-12", - "dateCompleted": "2021-04-04", - "dateEntered": "2016-07-09", - "dateRegistrar": "2014-05-06", - "dateLocalAuthorityReceived": "2019-06-23", - "summary": "Expedita magnam amet modi sit quidem debitis libero tenetur rem.", - "informationUsed": "Facilis sunt dignissimos necessitatibus ad quod odit.\nMinus eius qui minima nostrum rerum delectus aliquid ducimus.\nSit ratione tempore officia dignissimos.\nMaiores in vel ad facilis explicabo porro excepturi vero cupiditate.\nTenetur itaque aspernatur iste voluptatibus distinctio possimus corporis impedit alias.", - "pastOrPresentOrders": "Ea facere delectus repellendus id soluta beatae.", - "commercialAndIndustrialPurposes": [ - { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true - }, - { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false - }, - { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false }, { - "scheduleReference": "F1*", + "uuid": "cc0ba0ab-01bb-4ea8-aa40-757b3329bffe", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false + "siteRegistry": true } ] } ], "activityLog": [ { + "uuid": "dc189bc5-8738-4af5-9f00-3983bd1fb32f", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "LESCH MAVERICK", + "timestamp": "2019-05-26" + }, + { + "uuid": "53ccbe5a-0be2-4b13-9fc9-e67a5496ab6c", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "PFANNERSTILL DOLLY", - "timestamp": "2017-11-23" + "user": "LEUSCHKE ARLO", + "timestamp": "2016-12-17" }, { + "uuid": "0cd82626-d75b-423e-858d-f7b393596409", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "HILLL CLEMENT", - "timestamp": "2013-10-20" + "user": "CRONA EVERETT", + "timestamp": "2020-12-10" }, { - "siteRegistry": true, + "uuid": "77c6e86e-a4c3-4f4e-ba19-66648ae5c19b", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "MCGLYNN TURNER", + "timestamp": "2014-10-10" + }, + { + "uuid": "fc7827a5-b023-4617-b987-af91abe47092", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "ZIEME FREDERIK", - "timestamp": "2015-06-09" + "user": "WISOZK JERAMIE", + "timestamp": "2022-05-27" }, { + "uuid": "c2f2023b-0350-4523-a80e-f929200c603f", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "WIZA SHANEL", - "timestamp": "2020-11-07" + "user": "RAU IRWIN", + "timestamp": "2019-04-12" }, { + "uuid": "1327b418-563d-437f-a94b-7cc9a02b5195", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "KRIS TESS", - "timestamp": "2021-09-22" + "user": "HOWELL WERNER", + "timestamp": "2023-05-01" }, { + "uuid": "cd9720cd-0680-4946-9285-ae3b48e4174f", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "BLOCK GEOVANNI", - "timestamp": "2014-07-07" + "user": "HOWE DALE", + "timestamp": "2022-01-02" + }, + { + "uuid": "4307d9c3-4191-4a51-97b4-a89d0a6e2806", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "LOCKMAN ALVENA", + "timestamp": "2019-10-07" + }, + { + "uuid": "b230f6fa-083e-4b1f-b0fd-e9629cab2234", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "SANFORD ROMA", + "timestamp": "2023-09-27" } ], "associatedSites": [ { - "dateNoted": "2018-11-05", + "uuid": "284fad88-778c-444c-9313-cbeb4a871fd8", + "dateNoted": "2022-03-25", + "notes": "", + "parcelID": "15513", + "siteID": "19122", + "siteRegistry": false + }, + { + "uuid": "40812678-caa1-4d5a-9672-e6c3e93e8762", + "dateNoted": "2019-10-22", "notes": "", - "parcelID": "20890", - "siteID": "20833", + "parcelID": "20302", + "siteID": "17161", "siteRegistry": true } ] }, { - "uuid": "2b2a6cb9-be77-4aa3-86fb-aef29ccc4814", - "siteID": 17225, - "address": "5744 Bogisich Fall", - "latitude": 54.6818, - "longitude": -133.1289, - "lastUpdated": "2022-08-24", - "city": "West Groverland", - "region": "Mainland/Southwest", - "victoriaFile": "26250-20/14424", + "uuid": "68863473-43a8-407d-b618-427f23a896ea", + "siteID": 16535, + "address": "4902 Monique Streets", + "latitude": 56.6323, + "longitude": -131.7874, + "lastUpdated": "2020-08-20", + "city": "Lake Lazarobury", + "region": "Vancouver Island/Coast", + "victoriaFile": "26250-20/14173", "regionalFile": "N/A", "parcelIDs": [ - 384941, - 1131610, - 9521775, - 9606693, - 8026143 + 135404, + 342848, + 8995551, + 6583735, + 745026 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2021-12-21", - "completed": "2017-01-09", - "initiated": "2019-06-26", - "ministryContact": "GUSIKOWSKI DEBORAH", + "uuid": "2b4ec89a-2996-4854-a882-0f1f91243b5a", + "createdAt": "2022-09-25", + "completed": "2018-03-21", + "initiated": "2017-12-27", + "ministryContact": "DONNELLY DEONTE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -21091,23 +24502,38 @@ ], "notationParticipants": [ { + "uuid": "2eac4cd6-def4-453c-aadd-e8afa76994a1", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "0db7167b-db6d-4b30-921a-bb694f550abe", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "uuid": "c69418ce-493b-4e2e-b061-965a49990965", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true }, { + "uuid": "ba391e07-042f-4cf8-a9bc-1aab4f1edde5", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2019-09-15", - "completed": "2015-11-27", - "initiated": "2016-03-17", - "ministryContact": "FAHEY WELLINGTON", + "uuid": "185f20d0-477d-4bdd-b2bb-74b793ef0c80", + "createdAt": "2021-07-23", + "completed": "2016-05-31", + "initiated": "2019-11-17", + "ministryContact": "COLLINS SETH", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -21116,28 +24542,243 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { + "uuid": "a5105517-4a56-45d5-bd57-bc2bcea2b103", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true }, { + "uuid": "35395073-bc13-4e2a-848a-29fbb6dd4d7f", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false } ], + "siteRegistry": false + } + ], + "participants": [ + { + "uuid": "3a9791d2-4d5a-4137-9154-172f2ff7aba3", + "name": "AMET, DOLOR SIT", + "endDate": "2020-04-18", + "startDate": "2021-10-03", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "uuid": "efb2dbee-f8fc-4d1b-b0f0-d709c38a8e77", + "name": "AMET, DOLOR SIT", + "endDate": "2015-11-15", + "startDate": "2018-01-16", + "notes": "", + "roles": [ + "EMPLOYEE" + ], "siteRegistry": true + } + ], + "suspectLandUses": [ + { + "uuid": "4e418e88-b34c-4ad9-b5c5-080fa242ca38", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2017-03-05 (described on Site Profile dated 2017-03-05)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "uuid": "72c75d33-f6cd-47c0-9274-c899c82b7cec", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2014-05-06 (described on Site Profile dated 2014-05-06)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "uuid": "d2a14e33-4eda-4509-a88a-75c0db08a283", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2018-06-12 (described on Site Profile dated 2018-06-12)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "uuid": "25c62778-4dc9-48f9-b309-bf9460eeb145", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2017-10-21 (described on Site Profile dated 2017-10-21)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "uuid": "303f151c-159b-4053-b5ea-d36e6a4448c3", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2020-09-02 (described on Site Profile dated 2020-09-02)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + } + ], + "parcelDescriptions": [ + { + "uuid": "c17a2131-9bd7-4ae9-911f-d0d99ad2c959", + "siteRegistry": false, + "dateNoted": "2016-08-14", + "parcelID": "18242", + "crownLandUsePIN": "20489", + "crownLandFileNumber": "20090", + "landDescription": "LOT 5 OF LOT 3 BLOCK 4 DISTRICT LOT 1 PLAN 3770" + }, + { + "uuid": "5bb41914-7488-4fff-ab0d-3a501d4d9752", + "siteRegistry": false, + "dateNoted": "2015-10-01", + "parcelID": "15371", + "crownLandUsePIN": "16506", + "crownLandFileNumber": "15519", + "landDescription": "LOT 1 OF LOT 4 BLOCK 2 DISTRICT LOT 2 PLAN 8533" + }, + { + "uuid": "5abab12e-e492-41df-9ee7-6423cd49bd18", + "siteRegistry": false, + "dateNoted": "2022-04-15", + "parcelID": "16826", + "crownLandUsePIN": "18952", + "crownLandFileNumber": "17198", + "landDescription": "LOT 3 OF LOT 2 BLOCK 2 DISTRICT LOT 2 PLAN 3883" + }, + { + "uuid": "bef18bfa-5bf3-4c6d-b138-b169b82615bf", + "siteRegistry": false, + "dateNoted": "2023-02-09", + "parcelID": "18211", + "crownLandUsePIN": "15374", + "crownLandFileNumber": "17332", + "landDescription": "LOT 5 OF LOT 3 BLOCK 1 DISTRICT LOT 1 PLAN 9327" + } + ], + "siteDisclosures": [ + { + "uuid": "b7033123-dffa-42d5-b993-9a8f141fe468", + "siteRegistry": true, + "dateReceived": "2014-06-14", + "dateCompleted": "2021-02-01", + "dateEntered": "2021-10-06", + "dateRegistrar": "2014-07-19", + "dateLocalAuthorityReceived": "2018-03-11", + "summary": "At nemo sunt sint similique repellendus.\nUnde necessitatibus sapiente fugiat molestias deleniti eveniet quos.\nConsequatur quis asperiores esse commodi magni nam ad nemo adipisci.", + "informationUsed": "Earum deserunt molestiae minima.\nAnimi molestias corrupti nobis quisquam.\nRerum libero autem deserunt ea sint quasi.\nNumquam perferendis assumenda officiis adipisci cum voluptate consequatur.", + "pastOrPresentOrders": "Praesentium facere maxime laudantium accusantium distinctio eius.\nOdio voluptas nostrum tempore perferendis vero recusandae.\nSit occaecati error veniam recusandae officiis quos tempore labore maiores.", + "commercialAndIndustrialPurposes": [ + { + "uuid": "040443ba-1e2c-48ab-a855-c5021058358a", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "uuid": "731c1cc5-4da3-462f-85c0-d960f4da2600", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + } + ] + }, + { + "uuid": "b47ec4fe-4625-4372-9b5e-94055fc20740", + "siteRegistry": true, + "dateReceived": "2014-05-28", + "dateCompleted": "2023-07-29", + "dateEntered": "2014-12-24", + "dateRegistrar": "2015-10-21", + "dateLocalAuthorityReceived": "2016-03-12", + "summary": "Non molestias odio deserunt debitis vel fuga natus deserunt.\nEsse laborum nisi occaecati.\nCorrupti praesentium mollitia officia.", + "informationUsed": "Maiores dignissimos laborum eum amet labore amet nihil occaecati.\nNon nisi rem dolores doloremque.\nQuia molestiae repudiandae eum praesentium sed reprehenderit ipsam laudantium libero.\nAccusantium dolor vitae reiciendis facere recusandae.", + "pastOrPresentOrders": "Possimus impedit consequuntur explicabo quibusdam rem cupiditate similique animi magnam.", + "commercialAndIndustrialPurposes": [ + { + "uuid": "b5c55b7a-bed5-44e2-81f6-be022c3e14fe", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "uuid": "da5fbd53-7a69-4625-b96b-02236aacc824", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + } + ] + } + ], + "activityLog": [ + { + "uuid": "c7e5c978-ec48-4df0-b3a4-dec447c76688", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "MOEN HOLLIE", + "timestamp": "2015-02-12" + }, + { + "uuid": "11c1ae1e-41e0-488b-b47f-788b47bb7ad8", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "STREICH PATIENCE", + "timestamp": "2015-07-04" + }, + { + "uuid": "a95de902-c641-4700-821a-c5d110396f61", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "GOODWIN-WISOKY JUSTYN", + "timestamp": "2023-06-05" + }, + { + "uuid": "fbe0baab-750e-451c-ab28-468a3c1ff368", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "TROMP NORBERT", + "timestamp": "2014-05-19" }, { - "createdAt": "2016-01-08", - "completed": "2018-07-30", - "initiated": "2014-05-21", - "ministryContact": "GOTTLIEB DAMON", + "uuid": "75209048-ac31-4a30-849b-910897cce658", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "O'CONNER DALE", + "timestamp": "2023-08-27" + } + ], + "associatedSites": [ + { + "uuid": "29f7c706-fd91-4da2-a548-e7e69a0f83d9", + "dateNoted": "2021-01-30", + "notes": "", + "parcelID": "20841", + "siteID": "16133", + "siteRegistry": true + } + ] + }, + { + "uuid": "78cf9aa6-6322-4cb2-8b2c-d6c15af54da4", + "siteID": 19970, + "address": "76333 Lauretta Flat", + "latitude": 56.9418, + "longitude": -137.307, + "lastUpdated": "2021-07-23", + "city": "Aliso Viejo", + "region": " North Coast", + "victoriaFile": "26250-20/7309", + "regionalFile": "N/A", + "parcelIDs": [ + 5652625, + 3185990, + 6905942, + 7819743, + 5637733 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "uuid": "d032f2a3-2329-42fc-865a-05f300cb7370", + "createdAt": "2021-12-01", + "completed": "2019-09-09", + "initiated": "2020-06-26", + "ministryContact": "SMITH BETTYE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -21146,23 +24787,38 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", + "uuid": "4d4cf8a7-08af-4c09-9650-3f8c577db8e4", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true }, { + "uuid": "32393ac6-8940-479b-939b-ebed13b6517c", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true + }, + { + "uuid": "d4ec5203-6ca4-4564-b7d4-59db7a17f0be", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "50150eae-17fc-4f3b-8fb5-6986ce17cdec", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false } ], "siteRegistry": true }, { - "createdAt": "2019-04-27", - "completed": "2020-10-24", - "initiated": "2019-02-11", - "ministryContact": "BALISTRERI WHITNEY", + "uuid": "026b829c-6d85-4356-855b-e2a6caf9e6b0", + "createdAt": "2016-06-21", + "completed": "2021-04-20", + "initiated": "2022-01-04", + "ministryContact": "HIRTHE SARINA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -21171,28 +24827,44 @@ ], "notationParticipants": [ { + "uuid": "797cacd1-e7ca-49dc-a948-1fa490defbb1", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false }, { + "uuid": "cf8ec4b6-6320-43fe-bc46-f83cfba77f75", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "5906eede-5ab8-4f48-bdc7-cc4afe15b1e0", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", + "uuid": "9204c10b-9d7d-4da6-91ad-93bcb2c67007", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "uuid": "c490f0d2-8bd8-400a-bd34-73df0348d6ee", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", "siteRegistry": true } ], "siteRegistry": false }, { - "createdAt": "2017-01-27", - "completed": "2015-09-17", - "initiated": "2015-12-08", - "ministryContact": "STROSIN JEROME", + "uuid": "cd8174d8-e233-4eaa-bd1d-aa51918893a9", + "createdAt": "2018-10-04", + "completed": "2017-09-09", + "initiated": "2018-05-21", + "ministryContact": "TILLMAN LYRIC", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -21201,59 +24873,66 @@ ], "notationParticipants": [ { + "uuid": "2194fe52-9e87-401d-9eab-7b0960275601", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "uuid": "1ca45c70-4b8b-40d1-83ed-850169803bee", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": false }, { + "uuid": "76cc1ba5-315c-4e31-8894-637dbbc9ead1", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true } ], "participants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2018-06-01", - "startDate": "2015-03-12", + "uuid": "1207d5aa-5c57-458f-a7a7-684eb834b81d", + "name": "AMET, DOLOR SIT", + "endDate": "2023-08-15", + "startDate": "2017-07-26", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2020-10-16", - "startDate": "2016-05-17", + "uuid": "719b1498-61e9-4b16-a89a-2547bba2520f", + "name": "IPSUM", + "endDate": "2016-12-06", + "startDate": "2016-01-20", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2018-10-09", - "startDate": "2019-03-19", + "uuid": "81960fbb-3f8b-4c58-9d20-8ccd58514c49", + "name": "AMET, DOLOR SIT", + "endDate": "2016-12-25", + "startDate": "2022-11-22", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": false }, { + "uuid": "7adba6f1-0691-4ac5-935e-3d443593042e", "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2019-09-04", - "startDate": "2023-06-10", + "endDate": "2020-03-15", + "startDate": "2015-08-17", "notes": "", "roles": [ "ORGANIZATION" @@ -21263,191 +24942,181 @@ ], "suspectLandUses": [ { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-03-05 (described on Site Profile dated 2021-03-05)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" - }, - { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2020-10-11 (described on Site Profile dated 2020-10-11)", + "uuid": "e30def4a-fd02-4e32-9b34-3d2cbde5d8a4", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2016-05-15 (described on Site Profile dated 2016-05-15)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { + "uuid": "f2de54c2-051c-445b-a9c1-e7df577f7a34", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-07-24 (described on Site Profile dated 2022-07-24)", + "notes": "INSERTED FOR SITE PROFILE DATED 2019-08-13 (described on Site Profile dated 2019-08-13)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], "parcelDescriptions": [ { - "siteRegistry": true, - "dateNoted": "2015-10-31", - "parcelID": "15298", - "crownLandUsePIN": "15436", - "crownLandFileNumber": "20734", - "landDescription": "LOT 4 OF LOT 2 BLOCK 2 DISTRICT LOT 4 PLAN 8368" - }, - { - "siteRegistry": false, - "dateNoted": "2015-11-23", - "parcelID": "17293", - "crownLandUsePIN": "18506", - "crownLandFileNumber": "19311", - "landDescription": "LOT 4 OF LOT 5 BLOCK 1 DISTRICT LOT 3 PLAN 5949" - }, - { + "uuid": "7a0bb14c-e275-4025-9fea-cfe4766a8e60", "siteRegistry": false, - "dateNoted": "2016-08-15", - "parcelID": "20398", - "crownLandUsePIN": "15982", - "crownLandFileNumber": "19884", - "landDescription": "LOT 2 OF LOT 5 BLOCK 2 DISTRICT LOT 1 PLAN 9476" + "dateNoted": "2014-12-11", + "parcelID": "17970", + "crownLandUsePIN": "19531", + "crownLandFileNumber": "19890", + "landDescription": "LOT 3 OF LOT 2 BLOCK 4 DISTRICT LOT 4 PLAN 4220" }, { + "uuid": "91d91b5f-4122-44ff-86dc-53e091622f11", "siteRegistry": true, - "dateNoted": "2016-04-04", - "parcelID": "18735", - "crownLandUsePIN": "19775", - "crownLandFileNumber": "17697", - "landDescription": "LOT 1 OF LOT 5 BLOCK 3 DISTRICT LOT 1 PLAN 4243" - }, - { - "siteRegistry": false, - "dateNoted": "2018-08-24", - "parcelID": "17572", - "crownLandUsePIN": "18989", - "crownLandFileNumber": "18961", - "landDescription": "LOT 3 OF LOT 4 BLOCK 1 DISTRICT LOT 3 PLAN 5708" + "dateNoted": "2018-09-23", + "parcelID": "16604", + "crownLandUsePIN": "20525", + "crownLandFileNumber": "19808", + "landDescription": "LOT 5 OF LOT 2 BLOCK 2 DISTRICT LOT 1 PLAN 4301" } ], "siteDisclosures": [ { - "siteRegistry": false, - "dateReceived": "2015-02-15", - "dateCompleted": "2022-07-31", - "dateEntered": "2021-05-04", - "dateRegistrar": "2019-04-09", - "dateLocalAuthorityReceived": "2017-05-24", - "summary": "Consequatur aliquam quas voluptatibus reiciendis nobis suscipit quaerat est.", - "informationUsed": "Quos voluptatum minima explicabo laboriosam possimus earum aliquid.\nNemo iusto quo non temporibus molestiae nobis facere possimus enim.\nItaque ad maxime porro totam dolorem eveniet nam alias doloremque.", - "pastOrPresentOrders": "Laudantium excepturi ex provident eveniet eius nulla quidem ducimus eos.\nQuo praesentium ex similique dolore.\nHic facere sint dicta.", + "uuid": "e6f378b2-6408-4fdc-8ecf-d9ce95ba1267", + "siteRegistry": true, + "dateReceived": "2022-03-06", + "dateCompleted": "2023-04-09", + "dateEntered": "2015-06-24", + "dateRegistrar": "2014-02-05", + "dateLocalAuthorityReceived": "2018-04-17", + "summary": "Laboriosam earum delectus harum quam optio veritatis rem.", + "informationUsed": "Rerum ducimus mollitia debitis esse qui rerum voluptate.\nIncidunt laboriosam voluptatum soluta tempora placeat debitis eius.\nQuas reiciendis quam ex enim earum dolor nesciunt eveniet.\nHic pariatur veritatis tempora neque.", + "pastOrPresentOrders": "Nisi cupiditate fuga cupiditate reiciendis alias.", "commercialAndIndustrialPurposes": [ { + "uuid": "9b5fed79-bc11-416e-8431-cab012007ef8", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false + "siteRegistry": true }, { - "scheduleReference": "F1*", + "uuid": "7612717a-4517-4245-aeaa-743cdf5602f3", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false + "siteRegistry": true }, { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false + "uuid": "0d221e93-df60-4c6d-88f2-64504182762f", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true } ] } ], "activityLog": [ { - "siteRegistry": true, + "uuid": "d4492919-d6d2-4f26-8561-1aab824d48b5", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "WEISSNAT FLORENCIO", - "timestamp": "2014-01-24" + "user": "GUTKOWSKI ZANDER", + "timestamp": "2021-06-21" }, { + "uuid": "10d1db54-f492-402d-8da2-c55e733f7547", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "BREITENBERG JONATHON", - "timestamp": "2013-12-17" + "user": "LESCH SALLY", + "timestamp": "2022-03-26" }, { + "uuid": "bb3ae592-4743-4eac-826a-b2073b28ba42", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "BOYER ALYSSON", - "timestamp": "2017-09-18" + "user": "CONROY VIVIENNE", + "timestamp": "2020-08-05" }, { + "uuid": "6b19a53f-5c19-48af-b155-04f50c5f90d4", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "BOEHM KATHARINA", - "timestamp": "2021-08-01" + "user": "MANN MEDA", + "timestamp": "2014-06-27" }, { + "uuid": "1b16e738-3eab-46f7-847c-7d1a4e3c081b", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "BARTON ABBIGAIL", - "timestamp": "2023-08-27" + "user": "HARRIS HILDEGARD", + "timestamp": "2015-04-04" }, { - "siteRegistry": false, + "uuid": "8d693dcd-1bff-41e8-9881-86067f1ecad4", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "CRUICKSHANK MARCIA", - "timestamp": "2021-04-10" + "user": "MCLAUGHLIN CARLIE", + "timestamp": "2019-11-05" }, { - "siteRegistry": false, + "uuid": "088addf3-dff4-438e-99c5-15f2f3a78f0a", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "CONN AUDREANNE", - "timestamp": "2021-01-16" + "user": "PFANNERSTILL MACK", + "timestamp": "2018-12-19" + }, + { + "uuid": "ffda3914-5a96-40d9-a380-e1fae1f9bab2", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "O'KON LORA", + "timestamp": "2014-11-01" }, { + "uuid": "1301bbc2-1a22-40a8-a68e-ff5fc01cd1be", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "SCHIMMEL ISOBEL", - "timestamp": "2018-02-24" + "user": "MURPHY ZOIE", + "timestamp": "2015-03-18" }, { + "uuid": "80bd5912-dc31-43b6-ab68-99824305aabb", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "FERRY REID", - "timestamp": "2021-08-29" + "user": "LEBSACK IMMANUEL", + "timestamp": "2023-06-11" } ], "associatedSites": [ { - "dateNoted": "2022-10-13", + "uuid": "78e3c12f-d50a-4256-bf74-b0e3f45f3f60", + "dateNoted": "2022-12-10", "notes": "", - "parcelID": "15875", - "siteID": "16843", + "parcelID": "20110", + "siteID": "17161", "siteRegistry": true - }, - { - "dateNoted": "2021-12-28", - "notes": "", - "parcelID": "17949", - "siteID": "18405", - "siteRegistry": false } ] }, { - "uuid": "5e71c7e8-bf7e-4701-b2d3-d83ed52778c5", - "siteID": 18372, - "address": "256 Heaney Row", - "latitude": 58.3438, - "longitude": -135.407, - "lastUpdated": "2016-10-13", - "city": "Mountain View", + "uuid": "ea723873-79f1-4976-a063-2291cfc096ea", + "siteID": 16470, + "address": "961 Casper Highway", + "latitude": 52.9311, + "longitude": -127.1648, + "lastUpdated": "2016-01-27", + "city": "Janniemouth", "region": "Kootenay", - "victoriaFile": "26250-20/9938", + "victoriaFile": "26250-20/11777", "regionalFile": "N/A", "parcelIDs": [ - 2386537, - 9781462, - 7012673, - 8295990, - 8860631 + 662306, + 7547030, + 8065336, + 6426923, + 6505818 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2014-10-23", - "completed": "2019-01-12", - "initiated": "2021-10-19", - "ministryContact": "PACOCHA ROSLYN", + "uuid": "8b82f6be-146e-41b1-8dbc-47053a26d32a", + "createdAt": "2017-03-21", + "completed": "2020-06-17", + "initiated": "2020-03-15", + "ministryContact": "PARKER MADALYN", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -21456,38 +25125,38 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "bbb87fbd-2127-4623-bc20-f183d4abcf1a", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false }, { + "uuid": "552fdf2d-16fa-4174-85da-ec04e17bcaa3", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true }, { + "uuid": "b394b4b6-16f6-442e-8636-fd96983b91b3", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", + "uuid": "41756727-d847-4896-a611-0344d367d2ae", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true } ], "siteRegistry": false }, { - "createdAt": "2018-07-19", - "completed": "2020-05-29", - "initiated": "2019-09-30", - "ministryContact": "DICKINSON LEOLA", + "uuid": "6c2149bc-a301-46c5-a269-c58d67f1e53e", + "createdAt": "2015-09-06", + "completed": "2022-07-06", + "initiated": "2016-12-30", + "ministryContact": "JOHNSON WANDA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -21496,38 +25165,32 @@ ], "notationParticipants": [ { + "uuid": "73eb883c-cd90-42a9-92f9-b0fffb3a0888", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true }, { + "uuid": "f3b80f9e-638e-4ff7-abab-f8b1ac27735a", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false + "role": "SUBMITTED BY", + "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "b74a4b69-b2f8-43b8-9448-727a28152ee0", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true } ], "siteRegistry": true }, { - "createdAt": "2015-04-06", - "completed": "2020-05-18", - "initiated": "2016-08-27", - "ministryContact": "JAKUBOWSKI NESTOR", + "uuid": "0bf91275-64d2-4e7e-8822-50a93faa7e13", + "createdAt": "2017-06-13", + "completed": "2015-09-29", + "initiated": "2015-07-24", + "ministryContact": "ABERNATHY BELL", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -21536,63 +25199,44 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { + "uuid": "7c8cde41-3d46-4026-ae5c-4bb1259d6313", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { + "uuid": "4ceaec8e-5dcd-4ff3-8b73-7311965f13c9", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false - } - ], - "siteRegistry": true - }, - { - "createdAt": "2022-03-14", - "completed": "2013-11-13", - "initiated": "2021-03-10", - "ministryContact": "BREKKE MEGGIE", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ + }, { + "uuid": "047a6dc9-c0e1-415a-882a-505e70a64aaf", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true }, { + "uuid": "bbc92c62-97bf-461c-a3ee-630cb9483da3", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false }, { + "uuid": "bd0fc72d-67da-4774-b30a-3b653ba14ef6", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2016-03-22", - "completed": "2020-10-30", - "initiated": "2023-08-25", - "ministryContact": "BAUCH DEMARCUS", + "uuid": "6cdde0a1-dd3e-414a-847a-9287b83c3a5b", + "createdAt": "2023-05-07", + "completed": "2020-05-28", + "initiated": "2019-07-12", + "ministryContact": "FUNK MILO", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -21601,24 +25245,22 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "ebf479ae-df3c-4bf9-979d-d46aa08d4577", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "5001f575-fa4e-4029-91b4-a3ef9da63016", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { + "uuid": "a4cd3d8b-42e5-4d1b-9a7e-b69b85dd51da", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false } ], "siteRegistry": true @@ -21626,248 +25268,244 @@ ], "participants": [ { + "uuid": "c1846747-ba84-4199-827d-4976987e5957", "name": "AMET, DOLOR SIT", - "endDate": "2018-12-07", - "startDate": "2021-10-02", + "endDate": "2023-04-20", + "startDate": "2019-11-11", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": true + "siteRegistry": false }, { - "name": "AMET, DOLOR SIT", - "endDate": "2018-11-03", - "startDate": "2017-04-27", - "notes": "", + "uuid": "b0b9cafa-059c-4f72-b531-dc3b310b4e04", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2014-07-21", + "startDate": "2021-07-18", + "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true + }, + { + "uuid": "65b69366-acb4-43a2-b036-27b7317e407d", + "name": "AMET, DOLOR SIT", + "endDate": "2021-10-06", + "startDate": "2020-03-28", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "uuid": "9dce1dde-34c6-489f-b89e-2e49e579a2b3", + "name": "AMET, DOLOR SIT", + "endDate": "2016-11-07", + "startDate": "2016-10-08", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true } ], "suspectLandUses": [ { + "uuid": "35fcf54f-b0cc-4b5d-be99-a0df7b6b9461", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-01-06 (described on Site Profile dated 2017-01-06)", + "notes": "INSERTED FOR SITE PROFILE DATED 2023-09-01 (described on Site Profile dated 2023-09-01)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2013-10-25 (described on Site Profile dated 2013-10-25)", + "uuid": "65f99b20-9cba-4f53-8f1c-9dc1dc062876", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2016-12-13 (described on Site Profile dated 2016-12-13)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { + "uuid": "ba72951a-8e7b-43b7-811b-749f0270eebe", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-06-16 (described on Site Profile dated 2018-06-16)", + "notes": "INSERTED FOR SITE PROFILE DATED 2014-01-16 (described on Site Profile dated 2014-01-16)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "uuid": "63ac65c3-40b3-4f0a-ac41-71dda814328e", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2022-06-29 (described on Site Profile dated 2022-06-29)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], "parcelDescriptions": [ { - "siteRegistry": true, - "dateNoted": "2017-11-18", - "parcelID": "16768", - "crownLandUsePIN": "15414", - "crownLandFileNumber": "20925", - "landDescription": "LOT 5 OF LOT 4 BLOCK 5 DISTRICT LOT 5 PLAN 9224" - }, - { + "uuid": "54a4dfb0-ffc0-4c9c-8661-203657ef5194", "siteRegistry": false, - "dateNoted": "2020-05-09", - "parcelID": "17312", - "crownLandUsePIN": "17087", - "crownLandFileNumber": "20850", - "landDescription": "LOT 4 OF LOT 3 BLOCK 2 DISTRICT LOT 1 PLAN 6833" + "dateNoted": "2014-04-22", + "parcelID": "17587", + "crownLandUsePIN": "17225", + "crownLandFileNumber": "20715", + "landDescription": "LOT 3 OF LOT 2 BLOCK 1 DISTRICT LOT 2 PLAN 9596" }, { + "uuid": "ba18e18f-2420-47c4-abeb-7b40cfad93e1", "siteRegistry": false, - "dateNoted": "2014-11-07", - "parcelID": "20378", - "crownLandUsePIN": "15897", - "crownLandFileNumber": "19566", - "landDescription": "LOT 3 OF LOT 3 BLOCK 5 DISTRICT LOT 1 PLAN 3949" - }, - { - "siteRegistry": true, - "dateNoted": "2019-07-28", - "parcelID": "19952", - "crownLandUsePIN": "19457", - "crownLandFileNumber": "15976", - "landDescription": "LOT 4 OF LOT 5 BLOCK 4 DISTRICT LOT 3 PLAN 6500" - }, - { - "siteRegistry": true, - "dateNoted": "2016-01-02", - "parcelID": "16898", - "crownLandUsePIN": "15914", - "crownLandFileNumber": "16987", - "landDescription": "LOT 4 OF LOT 4 BLOCK 4 DISTRICT LOT 4 PLAN 4439" + "dateNoted": "2023-03-12", + "parcelID": "19427", + "crownLandUsePIN": "18398", + "crownLandFileNumber": "17911", + "landDescription": "LOT 1 OF LOT 2 BLOCK 4 DISTRICT LOT 1 PLAN 8607" } ], "siteDisclosures": [ { + "uuid": "67efa127-b0df-4da5-8e0c-8cd8c75f8690", "siteRegistry": false, - "dateReceived": "2023-02-13", - "dateCompleted": "2014-01-20", - "dateEntered": "2017-04-21", - "dateRegistrar": "2014-06-24", - "dateLocalAuthorityReceived": "2023-03-29", - "summary": "Soluta quo reprehenderit.\nSuscipit magnam est.\nCulpa quia quasi.", - "informationUsed": "Dolore reprehenderit inventore.\nEius modi consequuntur.\nSequi at consequatur impedit similique fuga culpa error officiis.\nAut eveniet sapiente ab at iure debitis eum sunt.\nRatione laudantium ipsam ut id repellendus.", - "pastOrPresentOrders": "Placeat dignissimos quasi.\nAtque deleniti ea inventore.\nExercitationem repellat illum dicta molestiae recusandae ab voluptatem illo.", + "dateReceived": "2020-01-24", + "dateCompleted": "2017-02-27", + "dateEntered": "2023-06-05", + "dateRegistrar": "2018-07-25", + "dateLocalAuthorityReceived": "2015-05-25", + "summary": "Repellat illo minus.\nNulla ipsam consectetur sed excepturi alias aspernatur id molestiae ipsum.", + "informationUsed": "Accusantium soluta quas quidem a quibusdam asperiores quasi.\nRecusandae aspernatur maiores impedit sint ab sit.\nConsequuntur sapiente cum.\nRem minus libero ipsam laudantium aperiam earum sit.", + "pastOrPresentOrders": "Ullam natus quidem dolore.", "commercialAndIndustrialPurposes": [ { + "uuid": "30144804-5d70-4c50-b367-dfa4aabfcc2d", "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { + "uuid": "cc9639e3-bac6-4045-af2b-78321eb6921a", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false + "siteRegistry": true }, { + "uuid": "840203c1-6faa-49a9-90d8-03308b316260", "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false - }, - { - "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false } ] }, { + "uuid": "b2153ad9-466e-46ed-9828-cbd179d2503f", "siteRegistry": true, - "dateReceived": "2023-10-03", - "dateCompleted": "2018-02-07", - "dateEntered": "2020-08-14", - "dateRegistrar": "2016-09-16", - "dateLocalAuthorityReceived": "2017-10-10", - "summary": "Nobis iste eaque at.", - "informationUsed": "Maiores unde corporis facere.\nFugit fugit ad veritatis facilis animi blanditiis.\nNobis error optio.", - "pastOrPresentOrders": "Nemo aliquam enim odit harum tempore nostrum necessitatibus occaecati reprehenderit.\nIpsum eveniet eius porro sequi iste sint quas.\nLibero mollitia alias id repellat laudantium.", + "dateReceived": "2018-11-30", + "dateCompleted": "2014-01-31", + "dateEntered": "2021-04-15", + "dateRegistrar": "2019-05-05", + "dateLocalAuthorityReceived": "2020-09-18", + "summary": "Commodi reiciendis minima quisquam harum.\nAssumenda neque reprehenderit perspiciatis dicta quia voluptatum natus.", + "informationUsed": "Modi aliquam odio ad minima corrupti.\nSuscipit odit at nesciunt ea quis tenetur similique ipsum.\nNatus vel distinctio aut iure ducimus amet quaerat et explicabo.\nOfficia occaecati sunt fuga temporibus at consequatur maiores ipsum.\nTotam pariatur labore quod cum eligendi.", + "pastOrPresentOrders": "Excepturi labore cupiditate sed molestiae nulla.\nNumquam laborum fugiat doloremque voluptatum optio quia.", "commercialAndIndustrialPurposes": [ { + "uuid": "4a3476e3-ebca-4845-a7f8-0d4d17c13c0a", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true + "siteRegistry": false }, { - "scheduleReference": "F2*", + "uuid": "99fe12d6-1449-416f-a84c-9df4631d15c7", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false + "siteRegistry": true } ] } ], "activityLog": [ { + "uuid": "f911461e-0631-4b91-a018-9e65320523d2", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "KRIS KENNEDY", - "timestamp": "2018-08-06" - }, - { - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "LINDGREN HENRIETTE", - "timestamp": "2016-01-09" - }, - { - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "NIKOLAUS MILFORD", - "timestamp": "2019-11-29" + "user": "HAAG DEJUAN", + "timestamp": "2013-12-01" }, { - "siteRegistry": false, + "uuid": "b5e2cccf-721f-4c2d-a075-5b862aa81b47", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "BRAUN ALBERT", - "timestamp": "2017-08-17" + "user": "TERRY CONOR", + "timestamp": "2020-01-31" }, { - "siteRegistry": false, + "uuid": "7bef6c77-2fcc-4530-bc8e-d5eb297107ed", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "BAHRINGER PRINCESS", - "timestamp": "2014-05-29" + "user": "TREMBLAY NOAH", + "timestamp": "2020-03-12" }, { - "siteRegistry": false, + "uuid": "2d7648ae-fefb-4b7a-8f3a-602563eb7e08", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "HAGENES MISAEL", - "timestamp": "2021-09-23" + "user": "KULAS SELINA", + "timestamp": "2020-10-21" }, { - "siteRegistry": false, + "uuid": "bc509a40-0b33-4021-99b2-787813481286", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "SPENCER-MERTZ CHAD", - "timestamp": "2018-04-26" + "user": "CUMMINGS ERA", + "timestamp": "2015-08-16" }, { - "siteRegistry": false, + "uuid": "77530c7e-c69e-4515-9ce9-75b0a4c80893", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "BATZ EARL", - "timestamp": "2017-06-12" + "user": "HAND ZANE", + "timestamp": "2020-04-29" }, { + "uuid": "f0608e0b-bce7-418f-9e8d-bf01ff090c99", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "PFANNERSTILL JULIANNE", - "timestamp": "2022-06-25" + "user": "TREMBLAY JUSTEN", + "timestamp": "2020-08-02" } ], "associatedSites": [ { - "dateNoted": "2017-02-14", - "notes": "", - "parcelID": "15497", - "siteID": "17287", - "siteRegistry": false - }, - { - "dateNoted": "2015-08-27", - "notes": "", - "parcelID": "16623", - "siteID": "16733", - "siteRegistry": false - }, - { - "dateNoted": "2016-05-10", + "uuid": "d6e4a713-f80b-4a62-b5c0-48169783c22a", + "dateNoted": "2018-07-05", "notes": "", - "parcelID": "19887", - "siteID": "16392", - "siteRegistry": false + "parcelID": "19270", + "siteID": "17834", + "siteRegistry": true } ] }, { - "uuid": "0973e8a4-c8a6-44fe-8e4e-66f8ddaf9c00", - "siteID": 17940, - "address": "7141 Arvilla Port", - "latitude": 53.6005, - "longitude": -122.7352, - "lastUpdated": "2020-07-15", - "city": "New Britain", - "region": "Vancouver Island/Coast", - "victoriaFile": "26250-20/16518", + "uuid": "5bb3782b-3938-423b-943d-7656287dfc83", + "siteID": 17431, + "address": "71887 Quigley Freeway", + "latitude": 49.9995, + "longitude": -129.1732, + "lastUpdated": "2019-12-06", + "city": "South Jaylen", + "region": "Thompson-Okanagan", + "victoriaFile": "26250-20/5803", "regionalFile": "N/A", "parcelIDs": [ - 6297633, - 6504120, - 2441873, - 5645777, - 909689 + 5489918, + 929362, + 5917021, + 7431498, + 1057686 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2015-03-17", - "completed": "2019-05-25", - "initiated": "2019-06-14", - "ministryContact": "SWIFT FREDDY", + "uuid": "70aff2e4-e481-4385-a8bc-8d556afc5f0d", + "createdAt": "2014-12-22", + "completed": "2016-04-07", + "initiated": "2020-12-20", + "ministryContact": "KRIS-BRADTKE CHASITY", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -21876,33 +25514,84 @@ ], "notationParticipants": [ { + "uuid": "ab1d8440-b65a-4497-b3a4-7821471c1652", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "uuid": "31732f1a-4811-419b-833e-3051077bbf3a", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "d2d8074d-4235-4d8b-8849-393957c85eae", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "777c394d-1502-45eb-be1b-114126c0f2e3", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false }, { + "uuid": "46456cd2-0be9-4e8e-92d4-5addf6f1fdcc", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "uuid": "7fb04650-b21a-432a-8d2a-3ed769a4b82b", + "createdAt": "2016-10-15", + "completed": "2020-03-23", + "initiated": "2023-02-13", + "ministryContact": "TROMP HAYLIE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "uuid": "050fd67d-d6aa-4356-adbe-7ae6673e6e9f", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false }, { + "uuid": "174c87f4-8265-4f9d-9976-7865fb0b7719", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false }, { + "uuid": "0a8b859c-370b-49d5-8583-952c2e2ce593", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false + }, + { + "uuid": "3bcec8c8-283a-416d-bb62-46de35529068", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2020-01-13", - "completed": "2022-03-21", - "initiated": "2017-12-04", - "ministryContact": "FRANECKI FELICIA", + "uuid": "0549bddf-503c-431a-98ea-aaffe7d1bb9f", + "createdAt": "2020-10-14", + "completed": "2018-06-03", + "initiated": "2014-04-20", + "ministryContact": "WYMAN SCARLETT", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -21911,17 +25600,20 @@ ], "notationParticipants": [ { + "uuid": "f30d2e14-26aa-4c85-b64b-798eb3ae55cc", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false }, { + "uuid": "b302159d-fe65-4872-9cc1-fd84325d6f6e", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true + "role": "REQUESTED BY", + "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", + "uuid": "67c92d4c-a58c-418f-94cd-774e212fef12", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false } @@ -21929,10 +25621,11 @@ "siteRegistry": false }, { - "createdAt": "2016-12-11", - "completed": "2013-11-03", - "initiated": "2018-04-02", - "ministryContact": "SKILES EDWARDO", + "uuid": "735ba8ba-0968-413c-814f-53e2d9b7141c", + "createdAt": "2017-12-16", + "completed": "2019-05-21", + "initiated": "2021-04-19", + "ministryContact": "HAAG ALDA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -21941,39 +25634,79 @@ ], "notationParticipants": [ { + "uuid": "2ce71c0b-7fc1-4584-9861-f1c87bd4d323", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true + }, + { + "uuid": "6cd1515a-4341-4e5c-bf5c-9f9ab4dcc3ca", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true }, { + "uuid": "a9c8a168-ca38-4d5d-a902-acd0e23e69c2", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true }, { + "uuid": "d7a7c52c-39b6-4553-88ce-9127c8c46086", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "8576ce03-d089-4a3a-8cbf-fa2c24ced24b", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true } ], + "siteRegistry": true + }, + { + "uuid": "7f790461-d7d6-4a1f-9959-bfde657c7a05", + "createdAt": "2014-01-02", + "completed": "2018-10-02", + "initiated": "2016-10-04", + "ministryContact": "BINS TYREL", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "uuid": "c7f2f3b6-16f8-4671-9377-c7396718b413", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "uuid": "21d71895-2708-4eb6-b019-974df65d877f", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "bbefeb35-f1b6-493c-8396-9b41e2db812a", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], "siteRegistry": false } ], "participants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2020-10-25", - "startDate": "2015-09-08", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2022-11-10", - "startDate": "2017-11-02", + "uuid": "2bf32a2d-76aa-4778-9a62-051967bbd986", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2018-07-22", + "startDate": "2014-06-04", "notes": "", "roles": [ "ORGANIZATION" @@ -21981,9 +25714,10 @@ "siteRegistry": true }, { + "uuid": "38c0984a-60e4-447b-87ad-bd4981c4681e", "name": "AMET, DOLOR SIT", - "endDate": "2017-01-31", - "startDate": "2015-04-15", + "endDate": "2022-08-11", + "startDate": "2019-09-24", "notes": "", "roles": [ "ORGANIZATION" @@ -21991,94 +25725,104 @@ "siteRegistry": true }, { - "name": "IPSUM", - "endDate": "2014-07-28", - "startDate": "2018-01-11", + "uuid": "b619a4f2-5fcb-4a7b-b4eb-885841be7a5b", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2017-02-20", + "startDate": "2022-06-07", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": false } ], "suspectLandUses": [ { + "uuid": "704f7b87-a919-4e01-8efa-92d0decb7197", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-02-17 (described on Site Profile dated 2021-02-17)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" - }, - { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-12-15 (described on Site Profile dated 2014-12-15)", + "notes": "INSERTED FOR SITE PROFILE DATED 2018-04-05 (described on Site Profile dated 2018-04-05)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { + "uuid": "3c125a75-9b93-4958-91ac-ef6168f0147e", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-04-22 (described on Site Profile dated 2022-04-22)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" - }, - { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-09-08 (described on Site Profile dated 2021-09-08)", + "notes": "INSERTED FOR SITE PROFILE DATED 2015-10-09 (described on Site Profile dated 2015-10-09)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], "parcelDescriptions": [ { - "siteRegistry": false, - "dateNoted": "2021-12-20", - "parcelID": "20923", - "crownLandUsePIN": "20581", - "crownLandFileNumber": "15478", - "landDescription": "LOT 5 OF LOT 2 BLOCK 1 DISTRICT LOT 1 PLAN 4763" + "uuid": "5ab97dda-ac51-4b2b-a935-dd0f26ec41d7", + "siteRegistry": true, + "dateNoted": "2017-07-29", + "parcelID": "16868", + "crownLandUsePIN": "19278", + "crownLandFileNumber": "15306", + "landDescription": "LOT 2 OF LOT 1 BLOCK 5 DISTRICT LOT 1 PLAN 6272" }, { + "uuid": "11fe074f-eeee-47b3-852d-73c06e55afa9", "siteRegistry": false, - "dateNoted": "2014-11-10", - "parcelID": "20416", - "crownLandUsePIN": "20632", - "crownLandFileNumber": "16102", - "landDescription": "LOT 3 OF LOT 4 BLOCK 4 DISTRICT LOT 4 PLAN 8886" + "dateNoted": "2014-09-23", + "parcelID": "20127", + "crownLandUsePIN": "18212", + "crownLandFileNumber": "20247", + "landDescription": "LOT 5 OF LOT 3 BLOCK 2 DISTRICT LOT 5 PLAN 9461" + }, + { + "uuid": "f6864479-e0b2-4913-a30e-18eda94cdcc5", + "siteRegistry": true, + "dateNoted": "2016-05-13", + "parcelID": "17231", + "crownLandUsePIN": "17790", + "crownLandFileNumber": "20453", + "landDescription": "LOT 2 OF LOT 4 BLOCK 3 DISTRICT LOT 4 PLAN 4556" }, { + "uuid": "5715f09a-7488-4d18-bba7-7c711bc13909", "siteRegistry": false, - "dateNoted": "2017-04-02", - "parcelID": "16769", - "crownLandUsePIN": "19149", - "crownLandFileNumber": "20083", - "landDescription": "LOT 4 OF LOT 4 BLOCK 5 DISTRICT LOT 3 PLAN 6363" + "dateNoted": "2018-02-07", + "parcelID": "19791", + "crownLandUsePIN": "20804", + "crownLandFileNumber": "18017", + "landDescription": "LOT 1 OF LOT 5 BLOCK 2 DISTRICT LOT 3 PLAN 6067" } ], "siteDisclosures": [ { + "uuid": "e25286aa-e91b-4b49-9657-6d49bd6806cf", "siteRegistry": true, - "dateReceived": "2019-08-13", - "dateCompleted": "2018-07-23", - "dateEntered": "2023-02-21", - "dateRegistrar": "2015-03-23", - "dateLocalAuthorityReceived": "2018-11-01", - "summary": "Officiis aliquid repudiandae libero molestiae.\nCommodi esse in alias.\nQui repellendus recusandae.", - "informationUsed": "Cumque ut quasi dolor ratione sunt.\nPlaceat dolorem deleniti.\nIllum nam ipsam excepturi omnis.\nIllum blanditiis occaecati enim veritatis maiores laboriosam numquam necessitatibus maiores.", - "pastOrPresentOrders": "Maiores reprehenderit molestias voluptas eligendi.\nDeleniti molestias fugit consectetur dolor praesentium.", + "dateReceived": "2017-10-27", + "dateCompleted": "2021-02-24", + "dateEntered": "2018-06-27", + "dateRegistrar": "2020-05-13", + "dateLocalAuthorityReceived": "2019-05-23", + "summary": "Odio veniam vero est quas minus dolore excepturi quasi.", + "informationUsed": "Ut consequuntur placeat.\nError corrupti veniam minus molestias alias.\nArchitecto quasi rerum perferendis.", + "pastOrPresentOrders": "Illo quibusdam animi nesciunt.", "commercialAndIndustrialPurposes": [ { - "scheduleReference": "F2*", + "uuid": "0430f318-de94-4a0e-806e-5e0c0c3723ff", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false }, { + "uuid": "1ffe308c-4fe4-4e71-af38-51e23c5873ec", "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true }, { + "uuid": "b6ac21bc-853b-405a-99e9-084515f14915", "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true }, { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "uuid": "fdbf8039-2fac-4a6a-995f-d2467de748f4", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true } ] @@ -22086,108 +25830,85 @@ ], "activityLog": [ { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "CONN MADISON", - "timestamp": "2020-01-21" - }, - { + "uuid": "c1a95ddf-0173-4fa5-8665-709ae1b8001e", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "WUNSCH VIOLETTE", - "timestamp": "2023-06-13" + "user": "KERLUKE SHERWOOD", + "timestamp": "2019-10-06" }, { + "uuid": "915ace9d-6a90-4ba5-8fe3-401c36620ae2", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "SPORER WILSON", - "timestamp": "2021-04-19" - }, - { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "KIRLIN DERRICK", - "timestamp": "2020-09-27" + "user": "FRIESEN ASHLY", + "timestamp": "2022-02-05" }, { + "uuid": "b3ee2282-dcea-409d-959d-a30724fd99dc", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "CORMIER CORDELIA", - "timestamp": "2017-07-03" - }, - { - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "KOEPP MEAGHAN", - "timestamp": "2021-06-20" + "user": "EMMERICH LILLA", + "timestamp": "2018-03-22" }, { + "uuid": "735dd8fc-61fb-4356-9117-9231db9364e2", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "LUEILWITZ MABELLE", - "timestamp": "2018-12-26" + "user": "ANKUNDING ERNA", + "timestamp": "2020-08-25" }, { + "uuid": "39be8eb7-30ff-4869-b905-66b193d94a98", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "MOORE ADA", - "timestamp": "2015-09-01" - }, - { - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "TORPHY KOREY", - "timestamp": "2018-06-26" + "user": "TOY CORDIE", + "timestamp": "2022-09-12" }, { + "uuid": "d05a5ca7-0e50-4762-a4cf-7173f5fb0444", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "WEBER TIERRA", - "timestamp": "2018-08-08" + "user": "BAHRINGER ORAL", + "timestamp": "2016-03-01" } ], "associatedSites": [ { - "dateNoted": "2019-02-14", + "uuid": "54ec66aa-a208-4dcd-92aa-1a8d6d8479e6", + "dateNoted": "2014-08-20", "notes": "", - "parcelID": "16211", - "siteID": "19240", + "parcelID": "19515", + "siteID": "20470", "siteRegistry": true - }, - { - "dateNoted": "2014-04-28", - "notes": "", - "parcelID": "18687", - "siteID": "18292", - "siteRegistry": false } ] }, { - "uuid": "9c2f3bae-e32b-40b0-a21e-579aad6cfc1f", - "siteID": 15868, - "address": "6189 Drake Meadow", - "latitude": 49.7679, - "longitude": -129.2771, - "lastUpdated": "2023-04-03", - "city": "Greencester", - "region": "Thompson-Okanagan", - "victoriaFile": "26250-20/7206", + "uuid": "b2d22bcd-c883-4485-8bad-9c20698e0250", + "siteID": 17362, + "address": "508 Janae Creek", + "latitude": 50.0509, + "longitude": -133.3534, + "lastUpdated": "2018-12-18", + "city": "South Einobury", + "region": " North Coast", + "victoriaFile": "26250-20/19612", "regionalFile": "N/A", "parcelIDs": [ - 8834956, - 1921838, - 1329199, - 8144819, - 5354704 + 9110284, + 8816122, + 6390781, + 452842, + 7952173 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2019-05-13", - "completed": "2023-09-12", - "initiated": "2021-05-24", - "ministryContact": "OLSON-O'REILLY MEKHI", + "uuid": "a9c9158d-f982-457a-bf3b-73285b868cd3", + "createdAt": "2022-04-05", + "completed": "2018-06-06", + "initiated": "2018-12-22", + "ministryContact": "WARD BURNICE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -22196,28 +25917,60 @@ ], "notationParticipants": [ { + "uuid": "aec7cab8-c857-4db8-9317-83dd69036a16", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "84e852c9-893a-4cfe-9bdb-f2ff9baf006e", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "uuid": "988b5d45-c2d4-4f03-b049-397e81e38d7c", + "createdAt": "2014-03-21", + "completed": "2018-07-20", + "initiated": "2019-10-06", + "ministryContact": "CHAMPLIN DARYL", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "uuid": "c3434d7a-a748-4be9-b9a3-8b9530dd3810", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true }, { + "uuid": "d64c7aba-d524-4bbe-94e8-06a06afcf01a", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "uuid": "cc472e2c-3596-458e-8efe-f2772a93ed16", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2022-04-24", - "completed": "2015-10-20", - "initiated": "2018-02-20", - "ministryContact": "UPTON YASMINE", + "uuid": "c31b1698-51ee-401f-b5ba-205535777a93", + "createdAt": "2017-03-20", + "completed": "2020-04-03", + "initiated": "2023-01-19", + "ministryContact": "BOTSFORD FRANKIE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -22226,19 +25979,28 @@ ], "notationParticipants": [ { + "uuid": "0564eadd-67c4-4174-805c-e299b6a49c43", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "07939e9f-fab5-43a7-b041-a0b09ce2c1f5", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", "siteRegistry": true }, { + "uuid": "f81f267d-0c1b-4ba0-bd30-e7d2c41d28dd", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "1ab21e48-ec91-4540-a043-6c9afe7b35f2", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true } ], "siteRegistry": false @@ -22246,19 +26008,21 @@ ], "participants": [ { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2020-07-21", - "startDate": "2015-07-25", + "uuid": "10abec3a-1dae-4041-9a14-e5f7625903eb", + "name": "AMET, DOLOR SIT", + "endDate": "2015-04-03", + "startDate": "2020-07-09", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2016-03-01", - "startDate": "2018-05-11", + "uuid": "ea316a26-06c6-4f46-aa20-e88847bc2dc6", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2022-08-18", + "startDate": "2018-07-11", "notes": "", "roles": [ "ORGANIZATION" @@ -22266,108 +26030,151 @@ "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2014-10-07", - "startDate": "2017-07-17", + "uuid": "a251b16f-97d8-4a3d-ab87-7a2a3b01e712", + "name": "IPSUM", + "endDate": "2019-12-10", + "startDate": "2023-02-04", "notes": "", "roles": [ "ORGANIZATION" ], "siteRegistry": false + }, + { + "uuid": "64c929ed-4a85-4d76-9e4b-5ebd931315d9", + "name": "AMET, DOLOR SIT", + "endDate": "2014-12-10", + "startDate": "2020-06-14", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false } ], "suspectLandUses": [ { + "uuid": "6e1e9d5f-9a02-4ecd-bd50-4cfbdac5e5ce", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-12-31 (described on Site Profile dated 2015-12-31)", + "notes": "INSERTED FOR SITE PROFILE DATED 2019-07-02 (described on Site Profile dated 2019-07-02)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { + "uuid": "a4f5af7e-5e87-478b-94f5-c53d0e485e8b", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-04-16 (described on Site Profile dated 2015-04-16)", + "notes": "INSERTED FOR SITE PROFILE DATED 2013-11-07 (described on Site Profile dated 2013-11-07)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "uuid": "8b5b7116-4fe8-4534-a03a-46d2bf09a6dc", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2014-06-07 (described on Site Profile dated 2014-06-07)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], "parcelDescriptions": [ { + "uuid": "2dc0de5c-3ad2-4c9c-9e64-75184616f452", "siteRegistry": true, - "dateNoted": "2020-09-03", - "parcelID": "19170", - "crownLandUsePIN": "16672", - "crownLandFileNumber": "19000", - "landDescription": "LOT 1 OF LOT 2 BLOCK 4 DISTRICT LOT 5 PLAN 6979" + "dateNoted": "2017-09-03", + "parcelID": "19152", + "crownLandUsePIN": "18142", + "crownLandFileNumber": "19825", + "landDescription": "LOT 1 OF LOT 2 BLOCK 3 DISTRICT LOT 2 PLAN 3411" }, { + "uuid": "76308135-12ab-4498-baf1-2b44cca38303", "siteRegistry": true, - "dateNoted": "2019-09-19", - "parcelID": "19637", - "crownLandUsePIN": "15823", - "crownLandFileNumber": "18037", - "landDescription": "LOT 3 OF LOT 3 BLOCK 5 DISTRICT LOT 5 PLAN 7466" + "dateNoted": "2014-09-06", + "parcelID": "18768", + "crownLandUsePIN": "16385", + "crownLandFileNumber": "15204", + "landDescription": "LOT 1 OF LOT 3 BLOCK 3 DISTRICT LOT 3 PLAN 5973" }, { - "siteRegistry": false, - "dateNoted": "2022-04-11", - "parcelID": "19911", - "crownLandUsePIN": "17772", - "crownLandFileNumber": "17580", - "landDescription": "LOT 5 OF LOT 1 BLOCK 2 DISTRICT LOT 2 PLAN 6052" + "uuid": "7e1df2b1-7935-4f93-acf9-fde8d8fcd516", + "siteRegistry": true, + "dateNoted": "2019-11-21", + "parcelID": "15690", + "crownLandUsePIN": "18287", + "crownLandFileNumber": "19879", + "landDescription": "LOT 5 OF LOT 1 BLOCK 1 DISTRICT LOT 2 PLAN 5003" }, { + "uuid": "0709522b-f69d-4be8-a75c-751d369b98ed", "siteRegistry": true, - "dateNoted": "2020-05-05", - "parcelID": "19365", - "crownLandUsePIN": "15621", - "crownLandFileNumber": "18555", - "landDescription": "LOT 2 OF LOT 5 BLOCK 2 DISTRICT LOT 2 PLAN 2967" + "dateNoted": "2023-03-11", + "parcelID": "18292", + "crownLandUsePIN": "20717", + "crownLandFileNumber": "17162", + "landDescription": "LOT 1 OF LOT 1 BLOCK 4 DISTRICT LOT 1 PLAN 9375" } ], "siteDisclosures": [ { + "uuid": "46f3f9f3-3a0d-4540-8ba3-d60b759e4604", "siteRegistry": false, - "dateReceived": "2018-12-03", - "dateCompleted": "2018-04-16", - "dateEntered": "2023-09-05", - "dateRegistrar": "2019-09-22", - "dateLocalAuthorityReceived": "2019-12-27", - "summary": "Voluptatum earum illo earum modi doloremque eaque fugit numquam.\nIpsam corporis illum nulla recusandae iste.", - "informationUsed": "Maxime ullam nemo nostrum blanditiis ab sint.\nCum sit amet voluptas.\nCorrupti rerum eveniet commodi perferendis a cupiditate vero dolores.\nArchitecto alias voluptates accusamus suscipit.", - "pastOrPresentOrders": "Unde eveniet laborum.\nVeritatis eius temporibus.", + "dateReceived": "2019-07-02", + "dateCompleted": "2014-09-29", + "dateEntered": "2016-06-23", + "dateRegistrar": "2016-01-13", + "dateLocalAuthorityReceived": "2021-01-12", + "summary": "Aliquam cumque perspiciatis delectus et.\nAliquam cupiditate mollitia delectus debitis ex veniam optio dicta ea.", + "informationUsed": "Inventore id recusandae pariatur.\nOdit nobis excepturi mollitia natus ad ratione ratione illo doloribus.\nOptio sequi vel quisquam fugiat.\nArchitecto facilis illo temporibus quibusdam odit ut nulla.\nIllo iusto explicabo vel.", + "pastOrPresentOrders": "Facilis totam corrupti dolore quae voluptas.\nHic facilis quidem recusandae pariatur nostrum optio explicabo distinctio.\nOdio pariatur aperiam libero eum corporis incidunt.", "commercialAndIndustrialPurposes": [ { + "uuid": "eb63ad49-a678-4681-b33f-c9735036afa9", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { + "uuid": "38c369a9-f618-49e4-81fd-56f8e65b70bf", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false + "siteRegistry": true }, { - "scheduleReference": "F1*", + "uuid": "4fcea613-2dd9-491e-b538-96ba492f36d3", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false + "siteRegistry": true + }, + { + "uuid": "05353e9b-4c2b-4cd2-8ee3-e420836a5ba6", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true } ] }, { + "uuid": "37ab3015-ade6-4bbf-988c-fb3e0ab51679", "siteRegistry": true, - "dateReceived": "2015-11-23", - "dateCompleted": "2019-03-02", - "dateEntered": "2023-01-16", - "dateRegistrar": "2015-11-09", - "dateLocalAuthorityReceived": "2016-02-16", - "summary": "Laboriosam perspiciatis illum quis autem.\nDicta maiores minus molestias.", - "informationUsed": "Perferendis exercitationem illum blanditiis laborum quasi natus unde doloremque.\nAccusantium quis illo amet dignissimos ab odio a cupiditate.\nTotam aspernatur error ratione pariatur illo animi.\nNon rem nam quod ullam possimus.", - "pastOrPresentOrders": "Tempore ullam ipsa veritatis id saepe quis in.\nCum quia consequuntur.", + "dateReceived": "2019-04-22", + "dateCompleted": "2015-11-06", + "dateEntered": "2015-07-28", + "dateRegistrar": "2017-01-25", + "dateLocalAuthorityReceived": "2020-04-26", + "summary": "Consequatur minus numquam sed.\nAccusamus autem dolorum eligendi.\nPraesentium numquam dignissimos laborum nostrum maiores non tenetur quaerat nostrum.", + "informationUsed": "Voluptatum facere numquam velit commodi accusantium iste necessitatibus.\nVoluptatum similique ab nam ipsam vitae quo.\nBeatae voluptas consequatur iste fugiat blanditiis nulla.\nMagnam quae maiores sequi quam exercitationem excepturi.", + "pastOrPresentOrders": "Ab ex dolor blanditiis fugiat reprehenderit magni.", "commercialAndIndustrialPurposes": [ { + "uuid": "dc10617c-0dbc-4879-8d35-424b2e728104", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, { + "uuid": "12fa5748-d52f-41e1-8dba-1449ffe74c04", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "uuid": "1a19b524-7e65-421e-90bc-e5ab4d0f1c38", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true @@ -22377,101 +26184,114 @@ ], "activityLog": [ { + "uuid": "f8de5d9e-4f0f-48c1-a5b7-22a81083ead8", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "DACH ALBA", - "timestamp": "2017-07-30" + "user": "BASHIRIAN ENRICO", + "timestamp": "2020-08-23" }, { + "uuid": "52fa2d36-2521-4326-8ada-ee0c29a47388", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "HANE VINCENT", - "timestamp": "2014-09-27" - }, - { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "O'HARA ELIAS", - "timestamp": "2021-08-10" + "user": "MITCHELL HUGH", + "timestamp": "2019-12-14" }, { + "uuid": "1a97c951-9b7e-4fa0-bac1-bc87f7f6dc40", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "MURPHY BRANT", - "timestamp": "2022-11-19" + "user": "BATZ CORDELL", + "timestamp": "2014-03-29" }, { + "uuid": "38582eb5-4911-43cf-9a91-d7d9bd9bdada", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "HAAG ADELBERT", - "timestamp": "2017-09-22" + "user": "DONNELLY LIAM", + "timestamp": "2019-05-11" }, { - "siteRegistry": false, + "uuid": "9702f905-0e6b-4dd2-929b-1d6660e69580", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "HODKIEWICZ NAKIA", - "timestamp": "2016-03-23" + "user": "SCHIMMEL FAUSTINO", + "timestamp": "2021-06-27" }, { - "siteRegistry": false, + "uuid": "b937edce-28a9-43d1-ad9c-1e02bfa66b5c", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "MCGLYNN DENA", - "timestamp": "2013-11-03" + "user": "LUETTGEN PETE", + "timestamp": "2021-06-30" }, { + "uuid": "922952a6-1145-45ce-a6b1-de419368b6e1", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "FAHEY SAMANTHA", - "timestamp": "2014-10-24" + "user": "WARD ELECTA", + "timestamp": "2022-11-11" }, { - "siteRegistry": true, + "uuid": "6825d913-93dd-4372-917f-d4c62f4ed968", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "QUITZON ORAN", - "timestamp": "2023-09-25" + "user": "STARK JEVON", + "timestamp": "2014-09-30" }, { + "uuid": "11431651-40fd-427b-a239-b434ad15e4eb", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "SCHROEDER NATHANAEL", - "timestamp": "2018-05-15" + "user": "DICKI JAZLYN", + "timestamp": "2015-01-16" } ], "associatedSites": [ { - "dateNoted": "2021-12-15", + "uuid": "67e28663-2002-4b46-8ddb-f27af305ccc8", + "dateNoted": "2022-09-26", + "notes": "", + "parcelID": "18855", + "siteID": "19676", + "siteRegistry": true + }, + { + "uuid": "b985dfae-ff3e-4f63-aa25-c6cf1fb8283b", + "dateNoted": "2019-09-17", "notes": "", - "parcelID": "20671", - "siteID": "19914", + "parcelID": "17415", + "siteID": "19218", "siteRegistry": true } ] }, { - "uuid": "6b223d12-ab61-45d1-842a-ac0b5d87745b", - "siteID": 17606, - "address": "795 Kirlin Loop", - "latitude": 50.0395, - "longitude": -135.4042, - "lastUpdated": "2014-03-11", - "city": "Fort Immanuel", - "region": "Vancouver Island/Coast", - "victoriaFile": "26250-20/13799", + "uuid": "99a17145-e9a2-4910-8021-bfde52418b63", + "siteID": 15722, + "address": "70655 Jarret Manor", + "latitude": 58.5533, + "longitude": -132.8945, + "lastUpdated": "2018-03-04", + "city": "McGlynnboro", + "region": "Kootenay", + "victoriaFile": "26250-20/2592", "regionalFile": "N/A", "parcelIDs": [ - 6203015, - 1174065, - 4505234, - 4817230, - 5727000 + 6782129, + 4674453, + 9656440, + 2523330, + 2086547 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2018-05-05", - "completed": "2014-11-09", - "initiated": "2018-10-16", - "ministryContact": "REINGER DELFINA", + "uuid": "bf227556-d45c-4cbe-a5fd-0473bd40b3a5", + "createdAt": "2013-12-14", + "completed": "2019-07-25", + "initiated": "2023-02-23", + "ministryContact": "STROMAN WINONA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -22480,53 +26300,44 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "uuid": "061f5041-294e-4a50-8c59-33780e119d93", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": true }, { + "uuid": "f493e287-995b-4f42-acc9-e77bad59effc", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false - } - ], - "siteRegistry": false - }, - { - "createdAt": "2018-04-03", - "completed": "2022-07-21", - "initiated": "2015-07-25", - "ministryContact": "ROSENBAUM CLIFTON", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ + }, { + "uuid": "89a9530c-932f-4a03-9813-65fb772a14cc", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", + "uuid": "e3ce3ab2-6f47-4546-bcac-c16e0b3c50c1", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true + "uuid": "cb4dbaa2-9fdf-49dd-9f83-9a5414f970ec", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2017-02-17", - "completed": "2022-03-09", - "initiated": "2020-10-17", - "ministryContact": "FRIESEN LEVI", + "uuid": "d9af8d06-1109-4618-8709-07b3b7060a55", + "createdAt": "2019-08-29", + "completed": "2015-12-02", + "initiated": "2014-06-26", + "ministryContact": "JOHNSON CHEYENNE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -22535,29 +26346,33 @@ ], "notationParticipants": [ { + "uuid": "f3f0bb52-5e66-4001-ab07-34fbf7008155", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false + "role": "SUBMITTED BY", + "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "uuid": "671058d1-25ab-44ab-959a-3c06735f0cb7", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": true }, { + "uuid": "63eb8614-bc97-4f8c-b2a4-a081c45826d3", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true + "role": "REQUESTED BY", + "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true } ], "participants": [ { - "name": "AMET, DOLOR SIT", - "endDate": "2014-07-26", - "startDate": "2018-10-08", + "uuid": "491620bb-7bc6-47ee-b46a-cc075225a826", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2016-01-10", + "startDate": "2018-06-27", "notes": "", "roles": [ "ORGANIZATION" @@ -22565,39 +26380,10 @@ "siteRegistry": false }, { - "name": "AMET, DOLOR SIT", - "endDate": "2018-03-01", - "startDate": "2019-09-11", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": false - }, - { - "name": "AMET, DOLOR SIT", - "endDate": "2019-06-11", - "startDate": "2019-04-30", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2016-06-25", - "startDate": "2015-02-07", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2021-06-07", - "startDate": "2022-03-20", + "uuid": "754354c5-9fd6-43bd-9e62-ee1575a7abfe", + "name": "IPSUM", + "endDate": "2017-04-07", + "startDate": "2018-08-23", "notes": "", "roles": [ "EMPLOYEE" @@ -22607,202 +26393,207 @@ ], "suspectLandUses": [ { + "uuid": "81df17a1-68c7-4fd6-abe2-aff0f3e449af", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2023-08-06 (described on Site Profile dated 2023-08-06)", + "notes": "INSERTED FOR SITE PROFILE DATED 2018-07-29 (described on Site Profile dated 2018-07-29)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { + "uuid": "4eb2c0a5-0f0f-4df1-b209-83c2e5b75aaf", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-02-23 (described on Site Profile dated 2015-02-23)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" - }, - { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-02-26 (described on Site Profile dated 2018-02-26)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" - }, - { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2023-08-20 (described on Site Profile dated 2023-08-20)", + "notes": "INSERTED FOR SITE PROFILE DATED 2022-04-11 (described on Site Profile dated 2022-04-11)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], "parcelDescriptions": [ { - "siteRegistry": true, - "dateNoted": "2022-07-04", - "parcelID": "19336", - "crownLandUsePIN": "18317", - "crownLandFileNumber": "16752", - "landDescription": "LOT 4 OF LOT 4 BLOCK 1 DISTRICT LOT 2 PLAN 5378" + "uuid": "0b6927ea-b09c-475d-b472-c914c320efc2", + "siteRegistry": false, + "dateNoted": "2013-11-09", + "parcelID": "19870", + "crownLandUsePIN": "18832", + "crownLandFileNumber": "16187", + "landDescription": "LOT 2 OF LOT 4 BLOCK 3 DISTRICT LOT 4 PLAN 3669" }, { + "uuid": "5f730f2b-1913-49b6-b81a-34616f59c076", "siteRegistry": true, - "dateNoted": "2021-09-04", - "parcelID": "17813", - "crownLandUsePIN": "15680", - "crownLandFileNumber": "15510", - "landDescription": "LOT 1 OF LOT 5 BLOCK 5 DISTRICT LOT 5 PLAN 6959" + "dateNoted": "2018-09-12", + "parcelID": "17078", + "crownLandUsePIN": "17379", + "crownLandFileNumber": "17387", + "landDescription": "LOT 2 OF LOT 3 BLOCK 2 DISTRICT LOT 4 PLAN 8577" }, { + "uuid": "06c76cfd-119e-4f0b-9e24-a3da661dcc45", "siteRegistry": false, - "dateNoted": "2021-10-26", - "parcelID": "17239", - "crownLandUsePIN": "18089", - "crownLandFileNumber": "19725", - "landDescription": "LOT 3 OF LOT 2 BLOCK 3 DISTRICT LOT 2 PLAN 6105" + "dateNoted": "2016-10-08", + "parcelID": "15507", + "crownLandUsePIN": "20487", + "crownLandFileNumber": "17153", + "landDescription": "LOT 5 OF LOT 2 BLOCK 3 DISTRICT LOT 5 PLAN 6926" }, { - "siteRegistry": true, - "dateNoted": "2022-10-21", - "parcelID": "17824", - "crownLandUsePIN": "16173", - "crownLandFileNumber": "15755", - "landDescription": "LOT 5 OF LOT 5 BLOCK 5 DISTRICT LOT 3 PLAN 6878" + "uuid": "2d10ed83-3b79-417f-a231-538635938733", + "siteRegistry": false, + "dateNoted": "2021-11-26", + "parcelID": "18555", + "crownLandUsePIN": "16080", + "crownLandFileNumber": "20236", + "landDescription": "LOT 5 OF LOT 3 BLOCK 4 DISTRICT LOT 4 PLAN 8145" } ], "siteDisclosures": [ { + "uuid": "73d9e98c-4526-4ad0-b485-95b7ef5c6eae", "siteRegistry": true, - "dateReceived": "2016-10-11", - "dateCompleted": "2018-02-08", - "dateEntered": "2018-10-11", - "dateRegistrar": "2015-07-29", - "dateLocalAuthorityReceived": "2022-06-10", - "summary": "Repudiandae magni iusto odio quisquam.\nCumque delectus quae quidem harum voluptate nesciunt.\nLabore excepturi dicta consequatur rerum aliquam quidem temporibus ullam beatae.", - "informationUsed": "Praesentium velit quo.\nIste assumenda ducimus ut dolor facilis magnam voluptas.\nEnim non tenetur natus deserunt inventore animi tempora.\nNesciunt sint numquam voluptatibus error iste vero dolorem.\nVero officiis reiciendis repellat hic consectetur natus.", - "pastOrPresentOrders": "Nisi repellendus sed vel consequuntur itaque corrupti non nam.\nPerferendis similique blanditiis pariatur neque esse.\nAlias consequuntur sunt cumque officia.", + "dateReceived": "2016-07-11", + "dateCompleted": "2022-07-13", + "dateEntered": "2018-04-03", + "dateRegistrar": "2018-02-15", + "dateLocalAuthorityReceived": "2017-03-11", + "summary": "Laborum placeat repellat recusandae labore deleniti.\nPlaceat tenetur et quam alias earum debitis perferendis ipsam quibusdam.", + "informationUsed": "Quia tempora dolorum tempore.\nMaxime aliquid libero.\nNumquam reiciendis alias nobis architecto voluptatem totam natus quasi rerum.\nAb dolorem excepturi iste nobis ut praesentium deleniti quia.", + "pastOrPresentOrders": "Commodi itaque ullam eligendi.\nPorro repudiandae tempora ducimus esse vel.", "commercialAndIndustrialPurposes": [ { + "uuid": "d14e0e86-bed0-499d-9bb7-49727568ae3c", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { + "uuid": "6e10491e-529b-408d-91b0-e957fbbc8deb", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true + "siteRegistry": false }, { + "uuid": "61a11f36-31ff-4b47-9a5d-a6425746e0ac", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false - }, - { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false - } - ] - }, - { - "siteRegistry": true, - "dateReceived": "2018-07-08", - "dateCompleted": "2022-07-13", - "dateEntered": "2020-02-02", - "dateRegistrar": "2016-02-17", - "dateLocalAuthorityReceived": "2020-01-25", - "summary": "Iste sapiente excepturi recusandae rem.\nVoluptates suscipit ratione error et quae ad quas.\nConsectetur odit officiis assumenda.", - "informationUsed": "Tempora hic incidunt laboriosam officia qui.\nOdit blanditiis excepturi tempora facere.\nSoluta mollitia fugiat occaecati.", - "pastOrPresentOrders": "Nobis enim quos modi similique eveniet sint.\nArchitecto assumenda odit consequatur quibusdam eius.\nAdipisci quidem inventore dicta expedita.", - "commercialAndIndustrialPurposes": [ - { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false - }, - { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false - }, - { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true } ] } ], "activityLog": [ { + "uuid": "54f82c0c-1800-407f-b253-069326ea6dfa", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "WEISSNAT IMMANUEL", - "timestamp": "2018-06-14" + "user": "GRADY-STIEDEMANN JANIS", + "timestamp": "2016-07-27" }, { - "siteRegistry": true, + "uuid": "14c2912c-4ba5-42cc-adab-c0db826f7320", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "CORWIN JULIO", - "timestamp": "2019-08-11" + "user": "HOWELL KELLEY", + "timestamp": "2017-07-05" }, { + "uuid": "4b956955-087b-458e-9d4b-864be073546e", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "POUROS JACK", - "timestamp": "2019-04-17" + "user": "KING GERARD", + "timestamp": "2018-05-13" }, { - "siteRegistry": true, + "uuid": "2a196b20-46c0-4ec9-b59d-5383e85a8a50", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "SCHOWALTER JALYN", - "timestamp": "2018-09-12" + "user": "JACOBI UBALDO", + "timestamp": "2018-06-24" }, { - "siteRegistry": true, + "uuid": "4fe435af-fdc7-47df-8cfb-83ce86200178", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "BOSCO LAVINIA", + "timestamp": "2014-08-10" + }, + { + "uuid": "4e802d9e-9ab5-4e29-8f80-a8ff6c17eb9a", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "KLEIN THOMAS", + "timestamp": "2018-09-02" + }, + { + "uuid": "6e98911f-b2d1-4dd3-b869-5d767dbd037a", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "GRADY LEWIS", - "timestamp": "2023-01-16" + "user": "MACEJKOVIC AXEL", + "timestamp": "2018-04-24" }, { + "uuid": "2b94710c-c1be-4979-b72b-b6132c6b0588", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "REYNOLDS BRODERICK", - "timestamp": "2020-02-05" + "user": "LIND ARACELI", + "timestamp": "2020-07-03" + }, + { + "uuid": "aedc0941-b1e5-4c11-9cde-31a6f6db2b32", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "GISLASON AIDEN", + "timestamp": "2014-09-22" }, { + "uuid": "e3d1eb14-4d71-462f-9e94-25ed7985b5d3", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "BARTOLETTI NARCISO", - "timestamp": "2016-10-01" + "user": "JONES-LEDNER NIKITA", + "timestamp": "2022-04-27" } ], "associatedSites": [ { - "dateNoted": "2020-04-23", + "uuid": "6c9d24fb-a254-4b02-93e9-486c89c2f70b", + "dateNoted": "2015-10-18", "notes": "", - "parcelID": "17128", - "siteID": "18614", - "siteRegistry": false + "parcelID": "19021", + "siteID": "20960", + "siteRegistry": true + }, + { + "uuid": "90554d9c-c0db-44a6-8763-7f239ed69632", + "dateNoted": "2022-03-03", + "notes": "", + "parcelID": "15524", + "siteID": "18696", + "siteRegistry": true } ] }, { - "uuid": "1754c93d-9e0d-4776-8ded-f8c3c3adc50f", - "siteID": 19114, - "address": "1003 Schaefer Heights", - "latitude": 57.1911, - "longitude": -126.7418, - "lastUpdated": "2014-08-08", - "city": "O'Keefeview", - "region": "Vancouver Island/Coast", - "victoriaFile": "26250-20/3674", + "uuid": "a8eb994a-740a-4e67-92d2-c95cf14de115", + "siteID": 17458, + "address": "697 Legros River", + "latitude": 53.6014, + "longitude": -120.5236, + "lastUpdated": "2017-10-16", + "city": "New Gloria", + "region": "Cariboo", + "victoriaFile": "26250-20/11917", "regionalFile": "N/A", "parcelIDs": [ - 6613087, - 7272546, - 6235073, - 8153643, - 5118430 + 7931600, + 5256144, + 1706322, + 8598854, + 7993529 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2021-05-07", - "completed": "2021-01-31", - "initiated": "2016-03-18", - "ministryContact": "SCHINNER RODERICK", + "uuid": "5cdc1079-2e08-4075-868b-61a1cf5ed99d", + "createdAt": "2014-08-21", + "completed": "2022-06-26", + "initiated": "2021-03-20", + "ministryContact": "HICKLE NATASHA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -22811,23 +26602,66 @@ ], "notationParticipants": [ { + "uuid": "7c70c3bd-f2f2-40bf-8d90-3463c1987406", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true }, { + "uuid": "59997caf-01da-457b-8430-dc9a04eb4df0", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "uuid": "f746a6d2-d57e-48d7-8e13-eba685f030a9", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true + }, + { + "uuid": "352f519c-6456-47c5-9077-1306f92cad43", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "uuid": "38f1f8a2-5b16-456f-8bf6-3c355222d584", + "createdAt": "2019-02-07", + "completed": "2020-02-04", + "initiated": "2021-12-08", + "ministryContact": "HAYES MARGOT", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "uuid": "c0e32f63-80e8-47dd-9cc2-de1030b5b339", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "uuid": "f4ad2bac-3ade-407f-b219-aefbd03ef375", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true } ], "siteRegistry": true }, { - "createdAt": "2023-01-20", - "completed": "2018-06-08", - "initiated": "2019-08-08", - "ministryContact": "KIHN MONA", + "uuid": "25130121-0299-4276-aea2-5f340e8b26a2", + "createdAt": "2022-07-15", + "completed": "2017-04-27", + "initiated": "2023-07-25", + "ministryContact": "HAGENES AKEEM", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -22836,34 +26670,84 @@ ], "notationParticipants": [ { + "uuid": "09002751-92ad-45ee-97d4-0d46f5b5585a", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "uuid": "a0c08894-55db-46e7-a6bd-8eaf64fad188", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "9509f22f-b770-4e2c-88ec-190335007d36", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false }, { + "uuid": "d047b7bd-b6e6-401a-8169-63a01d050391", "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "uuid": "3af37bad-9ef1-4839-a49d-4c5590f77f9a", + "createdAt": "2018-03-06", + "completed": "2019-11-21", + "initiated": "2014-03-28", + "ministryContact": "WEBER REINHOLD", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "uuid": "71dfdfd2-7f0b-4d53-9766-0fd842b2ccb3", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false + }, + { + "uuid": "c218b4e1-f7b3-455c-b20c-aebeb478e23e", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "uuid": "7049da0d-bdd2-4c3f-8bf2-e658bc973c56", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false } ], "participants": [ { + "uuid": "7fdbc04c-304c-4161-8d3f-c5817382fde2", "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2022-02-26", - "startDate": "2014-05-29", + "endDate": "2019-04-15", + "startDate": "2017-03-28", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true }, { - "name": "AMET, DOLOR SIT", - "endDate": "2020-09-30", - "startDate": "2022-01-30", + "uuid": "1c1a5e59-303b-42e5-ae84-e543151a5006", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2014-08-08", + "startDate": "2019-08-21", "notes": "", "roles": [ "ORGANIZATION" @@ -22871,228 +26755,219 @@ "siteRegistry": false }, { - "name": "IPSUM", - "endDate": "2020-08-27", - "startDate": "2023-07-31", + "uuid": "ed349ff0-c3d8-487b-b07a-7429e0b039de", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2017-04-26", + "startDate": "2021-08-30", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": true }, { + "uuid": "f5b71591-25b5-4326-b5b6-b7e45df5abed", "name": "SHELL CANADA PRODUCTS", - "endDate": "2018-12-13", - "startDate": "2018-05-28", + "endDate": "2022-08-31", + "startDate": "2022-06-01", "notes": "", "roles": [ "EMPLOYEE" ], "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2015-07-25", - "startDate": "2018-10-27", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": true } ], "suspectLandUses": [ { + "uuid": "0b401c50-ab17-4920-bd3c-582bd9737fc7", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-01-30 (described on Site Profile dated 2014-01-30)", + "notes": "INSERTED FOR SITE PROFILE DATED 2019-05-18 (described on Site Profile dated 2019-05-18)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { + "uuid": "5a0d8c6f-1460-4bbd-91c7-d5edbc32a441", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2020-01-27 (described on Site Profile dated 2020-01-27)", + "notes": "INSERTED FOR SITE PROFILE DATED 2015-10-09 (described on Site Profile dated 2015-10-09)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" - }, - { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2020-11-23 (described on Site Profile dated 2020-11-23)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], "parcelDescriptions": [ { + "uuid": "7775a33b-2f07-4e7d-bcb3-7a28341e20f9", "siteRegistry": false, - "dateNoted": "2016-05-05", - "parcelID": "19317", - "crownLandUsePIN": "17270", - "crownLandFileNumber": "15709", - "landDescription": "LOT 2 OF LOT 4 BLOCK 5 DISTRICT LOT 5 PLAN 7102" + "dateNoted": "2015-08-09", + "parcelID": "17124", + "crownLandUsePIN": "17082", + "crownLandFileNumber": "15547", + "landDescription": "LOT 5 OF LOT 1 BLOCK 3 DISTRICT LOT 5 PLAN 4701" }, { + "uuid": "b7444628-501f-40a7-a55a-504f6f252b24", "siteRegistry": true, - "dateNoted": "2023-05-24", - "parcelID": "17626", - "crownLandUsePIN": "19934", - "crownLandFileNumber": "15994", - "landDescription": "LOT 1 OF LOT 3 BLOCK 5 DISTRICT LOT 4 PLAN 6216" + "dateNoted": "2021-01-04", + "parcelID": "19024", + "crownLandUsePIN": "17916", + "crownLandFileNumber": "20575", + "landDescription": "LOT 2 OF LOT 5 BLOCK 5 DISTRICT LOT 2 PLAN 9503" }, { + "uuid": "da4411cc-d1a2-4e06-ac12-9c5295f05ade", "siteRegistry": true, - "dateNoted": "2022-09-16", - "parcelID": "16854", - "crownLandUsePIN": "20753", - "crownLandFileNumber": "19578", - "landDescription": "LOT 5 OF LOT 4 BLOCK 5 DISTRICT LOT 5 PLAN 6369" + "dateNoted": "2013-11-10", + "parcelID": "19659", + "crownLandUsePIN": "16566", + "crownLandFileNumber": "17235", + "landDescription": "LOT 5 OF LOT 5 BLOCK 5 DISTRICT LOT 4 PLAN 3220" }, { - "siteRegistry": true, - "dateNoted": "2016-03-18", - "parcelID": "17829", - "crownLandUsePIN": "17503", - "crownLandFileNumber": "17471", - "landDescription": "LOT 3 OF LOT 5 BLOCK 4 DISTRICT LOT 5 PLAN 3933" + "uuid": "c88a22af-5ab7-43ec-9f7e-22426ec2da45", + "siteRegistry": false, + "dateNoted": "2015-06-04", + "parcelID": "19504", + "crownLandUsePIN": "18516", + "crownLandFileNumber": "16171", + "landDescription": "LOT 4 OF LOT 1 BLOCK 4 DISTRICT LOT 2 PLAN 9255" }, { + "uuid": "c83bea31-74bc-46c6-867c-fdffd23dc823", "siteRegistry": false, - "dateNoted": "2014-02-07", - "parcelID": "19636", - "crownLandUsePIN": "20561", - "crownLandFileNumber": "15460", - "landDescription": "LOT 4 OF LOT 3 BLOCK 4 DISTRICT LOT 5 PLAN 3065" + "dateNoted": "2019-07-28", + "parcelID": "17222", + "crownLandUsePIN": "20664", + "crownLandFileNumber": "16919", + "landDescription": "LOT 2 OF LOT 5 BLOCK 2 DISTRICT LOT 3 PLAN 3331" } ], "siteDisclosures": [ { + "uuid": "2ce396e9-6a8e-424a-bb15-8f01aa058eff", "siteRegistry": false, - "dateReceived": "2017-02-12", - "dateCompleted": "2022-07-17", - "dateEntered": "2021-11-03", - "dateRegistrar": "2016-04-29", - "dateLocalAuthorityReceived": "2020-12-09", - "summary": "Neque excepturi sapiente dolore blanditiis tenetur et.\nProvident ex dignissimos dicta voluptatem aliquam aliquid hic.\nVoluptas enim et illo mollitia qui.", - "informationUsed": "Dolorem quisquam dolores eos rem quisquam culpa.\nSoluta provident quidem tenetur consectetur perferendis veniam.\nQui esse commodi possimus deserunt et neque perspiciatis quo.\nNatus incidunt consectetur occaecati.\nPariatur eos repellendus adipisci dolor soluta rerum.", - "pastOrPresentOrders": "Quod aliquam exercitationem.", + "dateReceived": "2020-05-09", + "dateCompleted": "2023-02-13", + "dateEntered": "2017-10-04", + "dateRegistrar": "2014-08-04", + "dateLocalAuthorityReceived": "2015-05-01", + "summary": "Quos quasi ex odit.\nMagnam maxime voluptas nihil.", + "informationUsed": "Eligendi molestias ducimus deleniti porro dolore accusantium dolore eos tempore.\nMagni mollitia totam asperiores ducimus libero.\nMaxime culpa iste.", + "pastOrPresentOrders": "Commodi vero ex neque aspernatur maxime fugit minima.\nVelit laborum magnam nam odio.", "commercialAndIndustrialPurposes": [ { + "uuid": "77f89d09-c0d0-4776-8c45-6c86851163ec", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false + "siteRegistry": true }, { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "uuid": "bce23568-ede8-4c4e-9faf-4694ee18b79c", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true - } - ] - }, - { - "siteRegistry": true, - "dateReceived": "2015-05-18", - "dateCompleted": "2020-02-17", - "dateEntered": "2019-10-20", - "dateRegistrar": "2022-09-30", - "dateLocalAuthorityReceived": "2017-05-21", - "summary": "A nemo nobis eius sint nulla omnis ut odio.\nConsequuntur asperiores excepturi nobis beatae aperiam perferendis minus.\nSed est quasi eum.", - "informationUsed": "Similique modi voluptatem blanditiis porro suscipit porro consectetur mollitia.\nQuo vero praesentium sequi.\nHic alias itaque animi.\nUllam tempora sequi.", - "pastOrPresentOrders": "Aliquam ipsam sapiente labore natus nisi labore non eos.\nConsequatur laboriosam error explicabo mollitia.", - "commercialAndIndustrialPurposes": [ + }, { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "uuid": "7bb90244-be47-45fd-90db-319250c59eb7", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false }, { + "uuid": "05001370-acc5-45a3-89f5-aadeade07b18", "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false } ] } ], "activityLog": [ { + "uuid": "095fb1c8-437b-4e6d-a67d-5b9a13cb2ac9", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "FRANECKI-ZULAUF JAMMIE", - "timestamp": "2019-09-13" - }, - { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "ULLRICH KRIS", - "timestamp": "2019-04-24" + "user": "HUELS DEREK", + "timestamp": "2021-11-24" }, { - "siteRegistry": true, + "uuid": "6ae67919-f1b6-4331-b26e-193487c70e39", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "WILLIAMSON KEIRA", - "timestamp": "2023-05-21" + "user": "CROOKS BRENNA", + "timestamp": "2013-12-14" }, { + "uuid": "eb4e26a9-0ce9-4aba-ab41-9e9618179afd", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "OLSON AGLAE", + "user": "REICHEL-HICKLE MARGARETTA", "timestamp": "2021-12-20" }, { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "WUNSCH OSBORNE", - "timestamp": "2018-04-20" - }, - { + "uuid": "68909e23-07e7-474d-a20c-dae974fc8cf5", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "ORTIZ-TILLMAN JONATHON", - "timestamp": "2018-11-06" - }, - { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "BOGAN WILBERT", - "timestamp": "2018-10-12" + "user": "WEBER OMER", + "timestamp": "2014-03-13" }, { + "uuid": "17f04467-fd4e-4bbf-82a4-af9689564a40", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "BECHTELAR ISOBEL", - "timestamp": "2018-12-17" + "user": "HAGENES CHEYENNE", + "timestamp": "2018-10-14" } ], "associatedSites": [ { - "dateNoted": "2019-09-15", + "uuid": "9f0ff9ff-199a-4e6c-a2d7-3483edf0f981", + "dateNoted": "2020-10-11", "notes": "", - "parcelID": "20748", - "siteID": "17950", - "siteRegistry": true + "parcelID": "19447", + "siteID": "18934", + "siteRegistry": false + }, + { + "uuid": "5c460e87-6950-4534-9942-90a3e060ed87", + "dateNoted": "2017-05-14", + "notes": "", + "parcelID": "18977", + "siteID": "19995", + "siteRegistry": false + }, + { + "uuid": "0d5562ae-0392-4066-a56c-847b8b518420", + "dateNoted": "2019-02-28", + "notes": "", + "parcelID": "17966", + "siteID": "15716", + "siteRegistry": false } ] }, { - "uuid": "21f8f812-a8ef-49f3-8932-5f795f601f07", - "siteID": 16392, - "address": "18107 Caterina Glen", - "latitude": 54.6239, - "longitude": -126.9101, - "lastUpdated": "2019-08-15", - "city": "Normal", - "region": " North Coast", - "victoriaFile": "26250-20/3635", + "uuid": "437d3355-e6a0-44ef-a1e9-53030806365e", + "siteID": 20960, + "address": "822 Elian Hills", + "latitude": 51.5975, + "longitude": -128.2248, + "lastUpdated": "2015-01-19", + "city": "East Lucasside", + "region": "Mainland/Southwest", + "victoriaFile": "26250-20/14849", "regionalFile": "N/A", "parcelIDs": [ - 5403378, - 8187124, - 9805725, - 7008504, - 3829912 + 2781616, + 1132308, + 8204782, + 875576, + 709259 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2019-06-18", - "completed": "2021-08-24", - "initiated": "2017-04-07", - "ministryContact": "JACOBI ELEANORA", + "uuid": "11dbb356-a618-469d-819d-a35cc213d07a", + "createdAt": "2015-04-13", + "completed": "2023-04-15", + "initiated": "2023-09-14", + "ministryContact": "LITTLE ALYSON", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -23101,28 +26976,32 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "uuid": "23cb0af3-be1f-461a-abf1-dabbe9f0646e", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", + "uuid": "72e34fdc-67a5-4700-87fa-2972aeb24b53", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false + "uuid": "4fe2a3fa-5e3f-4861-b892-2e76ef4ce75e", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true } ], "siteRegistry": true }, { - "createdAt": "2020-02-04", - "completed": "2016-10-11", - "initiated": "2016-01-25", - "ministryContact": "CORKERY DRAKE", + "uuid": "65ed8cdc-049b-4f6d-9fab-ab5412ee1d9e", + "createdAt": "2017-08-23", + "completed": "2019-10-10", + "initiated": "2020-06-23", + "ministryContact": "SCHNEIDER KATHERINE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -23131,23 +27010,32 @@ ], "notationParticipants": [ { + "uuid": "b9c0e9ad-609e-4d3a-a110-794e26f88e0f", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true }, { + "uuid": "ef64f0d2-b263-465c-bc11-566b90795ab3", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true + }, + { + "uuid": "b12e7fc7-8f3e-477f-84f8-ebb4764ef52a", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2022-10-13", - "completed": "2019-08-01", - "initiated": "2018-09-15", - "ministryContact": "PFANNERSTILL CONNOR", + "uuid": "cf70ca3c-b83a-461f-9283-d8b8c8bd6d77", + "createdAt": "2023-10-06", + "completed": "2016-10-07", + "initiated": "2020-07-31", + "ministryContact": "POLLICH BARNEY", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -23156,28 +27044,26 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { + "uuid": "6f440121-87e8-4abf-805c-e7b959e87997", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true + "uuid": "71db1bc4-4965-43a1-9f1f-7372aff04e12", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2014-01-19", - "completed": "2015-01-28", - "initiated": "2019-08-25", - "ministryContact": "TOWNE ELIZABETH", + "uuid": "ef4f8ee6-ce77-4e32-9d35-e3283ce04c12", + "createdAt": "2021-02-10", + "completed": "2023-01-12", + "initiated": "2020-11-21", + "ministryContact": "CARTER EDYTHE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -23186,33 +27072,26 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { + "uuid": "65e84c63-c101-48ad-bb6a-a46e43c84fe9", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true }, { + "uuid": "cb6f9576-bc99-4e26-b151-861ea0b17186", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false } ], "siteRegistry": true }, { - "createdAt": "2021-10-06", - "completed": "2022-02-17", - "initiated": "2022-05-19", - "ministryContact": "TURCOTTE TAMARA", + "uuid": "8e4bd602-d543-4076-9d8b-251c2b073fb0", + "createdAt": "2018-10-20", + "completed": "2020-07-03", + "initiated": "2016-09-16", + "ministryContact": "MURPHY JANELLE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -23221,44 +27100,67 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "uuid": "b9b17db9-0ec7-42e3-9d78-7167eb55b5d2", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": true }, { + "uuid": "52ee92a2-df42-4bdf-b3b4-35973cc73ba5", "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "uuid": "3ee7a8fd-bc51-44e8-bce0-65b797702c16", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "3d7a443a-43c0-41d4-b823-aa6cecb815e8", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "04a73d46-ee58-4fe1-9c23-36f22a5ffe22", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false } ], "participants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2021-12-12", - "startDate": "2017-08-28", + "uuid": "92e32ed3-18a6-4fac-ae9d-c3a706bfdec3", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2020-06-03", + "startDate": "2023-04-27", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2020-04-27", - "startDate": "2022-08-27", + "uuid": "c96d1e8c-e780-409e-978c-85891a907d4c", + "name": "IPSUM", + "endDate": "2014-03-25", + "startDate": "2019-07-21", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true }, { - "name": "IPSUM", - "endDate": "2019-12-04", - "startDate": "2015-01-21", + "uuid": "a9b69aac-9a3e-4235-abc0-26e27d8f02a5", + "name": "AMET, DOLOR SIT", + "endDate": "2020-04-12", + "startDate": "2022-12-05", "notes": "", "roles": [ "EMPLOYEE" @@ -23266,19 +27168,21 @@ "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2016-08-16", - "startDate": "2021-11-07", + "uuid": "f4793086-e2f4-4855-b52e-60dc5722da40", + "name": "IPSUM", + "endDate": "2021-08-11", + "startDate": "2015-06-06", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": false }, { + "uuid": "25a1b2b0-09fe-432a-99c2-043b33c9e406", "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2019-10-06", - "startDate": "2016-02-24", + "endDate": "2018-06-04", + "startDate": "2018-06-20", "notes": "", "roles": [ "ORGANIZATION" @@ -23288,176 +27192,193 @@ ], "suspectLandUses": [ { + "uuid": "2da6e305-8384-4c96-9ac5-de4333a35a36", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-03-09 (described on Site Profile dated 2016-03-09)", + "notes": "INSERTED FOR SITE PROFILE DATED 2023-08-16 (described on Site Profile dated 2023-08-16)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-03-01 (described on Site Profile dated 2019-03-01)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" - }, - { + "uuid": "248406fb-c4d9-448e-aedf-12259a049e4b", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-09-24 (described on Site Profile dated 2014-09-24)", + "notes": "INSERTED FOR SITE PROFILE DATED 2018-06-13 (described on Site Profile dated 2018-06-13)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "uuid": "24930f00-01c7-41f9-8c11-671c7d655a8b", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2019-11-13 (described on Site Profile dated 2019-11-13)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], "parcelDescriptions": [ { - "siteRegistry": true, - "dateNoted": "2015-10-20", - "parcelID": "20582", - "crownLandUsePIN": "17946", - "crownLandFileNumber": "18817", - "landDescription": "LOT 3 OF LOT 4 BLOCK 3 DISTRICT LOT 4 PLAN 7668" + "uuid": "2138bb99-e2b1-4dac-a7d4-5d6a740ad2ac", + "siteRegistry": false, + "dateNoted": "2014-12-25", + "parcelID": "19438", + "crownLandUsePIN": "16115", + "crownLandFileNumber": "19697", + "landDescription": "LOT 2 OF LOT 1 BLOCK 2 DISTRICT LOT 2 PLAN 3688" }, { + "uuid": "652f7403-d6a9-4fe4-87cf-94c988b42125", "siteRegistry": false, - "dateNoted": "2021-03-25", - "parcelID": "16251", - "crownLandUsePIN": "17245", - "crownLandFileNumber": "19791", - "landDescription": "LOT 2 OF LOT 4 BLOCK 3 DISTRICT LOT 4 PLAN 8769" + "dateNoted": "2023-08-11", + "parcelID": "15661", + "crownLandUsePIN": "15846", + "crownLandFileNumber": "18089", + "landDescription": "LOT 3 OF LOT 1 BLOCK 1 DISTRICT LOT 4 PLAN 7008" } ], "siteDisclosures": [ { - "siteRegistry": true, - "dateReceived": "2022-11-27", - "dateCompleted": "2023-06-06", - "dateEntered": "2013-12-30", - "dateRegistrar": "2015-10-02", - "dateLocalAuthorityReceived": "2022-09-24", - "summary": "Officiis iusto quam dolor officia laborum unde.", - "informationUsed": "Excepturi at numquam ullam ut doloremque dolores ipsum cum.\nExpedita amet quod.\nDoloribus voluptatibus voluptas rerum esse quidem provident corporis a.\nDicta natus ratione quidem expedita esse veniam sed.", - "pastOrPresentOrders": "In velit commodi assumenda ipsum nesciunt dolorem cumque.\nAut magni cum necessitatibus quo eaque at.", + "uuid": "645d8cc6-dbc5-4fdf-8b84-4887f3950314", + "siteRegistry": false, + "dateReceived": "2022-10-26", + "dateCompleted": "2017-09-21", + "dateEntered": "2014-01-28", + "dateRegistrar": "2019-06-02", + "dateLocalAuthorityReceived": "2023-05-11", + "summary": "Nesciunt maiores debitis.", + "informationUsed": "Quos rem vel porro libero deserunt voluptatibus consequuntur impedit.\nEligendi architecto hic alias doloremque atque.\nQuidem sed commodi.\nItaque expedita natus cumque maxime ab.", + "pastOrPresentOrders": "Magni quibusdam optio quasi aut et consequatur inventore.", "commercialAndIndustrialPurposes": [ { + "uuid": "f787cdae-efd6-4d1d-8fb9-b6f761db6938", "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true - } - ] - }, - { - "siteRegistry": true, - "dateReceived": "2021-04-18", - "dateCompleted": "2018-06-01", - "dateEntered": "2019-09-20", - "dateRegistrar": "2018-09-30", - "dateLocalAuthorityReceived": "2014-08-15", - "summary": "Accusamus cum repellendus dolorum voluptatibus dignissimos.\nFugit iusto reprehenderit.\nLabore deserunt quibusdam dolor corrupti.", - "informationUsed": "Voluptate provident quod.\nA optio soluta quasi cumque dolore ea magnam doloremque itaque.\nOfficiis eum fuga tempora qui a eaque vel assumenda ullam.\nIn odit ducimus rem ullam nesciunt.", - "pastOrPresentOrders": "Nisi laudantium impedit quod tenetur dignissimos quas.\nDucimus quae dignissimos.", - "commercialAndIndustrialPurposes": [ - { - "scheduleReference": "F1*", + "uuid": "41204721-68f1-44a1-b024-a49c43ae202b", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true + "siteRegistry": false }, { - "scheduleReference": "F1*", + "uuid": "64fe666e-1d39-4101-a5ec-7bf76c1d2840", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, { + "uuid": "958582ea-abb2-46ef-8ba4-6f9e0f385d29", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true - }, - { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true } ] } ], "activityLog": [ { + "uuid": "38e7c128-d353-4263-a2ff-dee9dbb8c81e", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "LUETTGEN LESTER", - "timestamp": "2015-12-31" + "user": "PURDY REAGAN", + "timestamp": "2022-03-24" }, { - "siteRegistry": true, + "uuid": "99d0769a-2541-47ec-9640-c3278b7c441f", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "MURAZIK RUSS", - "timestamp": "2020-05-30" + "user": "JONES BRENT", + "timestamp": "2018-05-03" }, { + "uuid": "8629493d-8b7a-47e1-9a74-49dee3fb1493", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "POLLICH SVEN", - "timestamp": "2021-02-10" + "user": "CASSIN GENNARO", + "timestamp": "2014-11-30" }, { + "uuid": "ff98a3e9-04b5-40d9-8cc2-472ec9612c9a", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "DANIEL JAMAL", - "timestamp": "2023-03-07" + "user": "FARRELL KYLIE", + "timestamp": "2021-06-01" }, { + "uuid": "ac01746a-cd57-4663-89d1-fa1f50cb73d7", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "JOHNS ELIAN", - "timestamp": "2018-11-24" + "user": "HEATHCOTE TEAGAN", + "timestamp": "2020-06-09" + }, + { + "uuid": "a850a662-26ea-414c-b8ce-8e79ceb6c3f8", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "MITCHELL TRAVON", + "timestamp": "2017-04-15" }, { + "uuid": "fdd58771-cdc9-464d-8510-7541d2d7e301", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "CRONA-BEER RALEIGH", - "timestamp": "2018-02-01" + "user": "ZEMLAK REMINGTON", + "timestamp": "2014-03-12" + }, + { + "uuid": "adc7ee10-9950-449b-a095-f83cf429c2b0", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "HERMANN ROYCE", + "timestamp": "2020-02-18" + }, + { + "uuid": "0c82c0a3-4d94-43cd-ad0f-ea3b0806541a", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "SWANIAWSKI ALISON", + "timestamp": "2020-02-22" }, { + "uuid": "8c09a0c2-81ee-4680-9495-8413c89aa573", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "TROMP JACQUES", - "timestamp": "2020-11-23" + "user": "SMITHAM TAUREAN", + "timestamp": "2023-04-24" } ], "associatedSites": [ { - "dateNoted": "2017-02-27", + "uuid": "db3eeefb-8991-46fc-b119-65a4d09eff0a", + "dateNoted": "2022-07-23", "notes": "", - "parcelID": "17088", - "siteID": "20407", - "siteRegistry": false + "parcelID": "16037", + "siteID": "16026", + "siteRegistry": true } ] }, { - "uuid": "a56f0524-f03a-4ba4-86ad-746a69c6ebe2", - "siteID": 18732, - "address": "252 Powlowski Trafficway", - "latitude": 51.9954, - "longitude": -118.496, - "lastUpdated": "2022-01-29", - "city": "Newport News", - "region": "Thompson-Okanagan", - "victoriaFile": "26250-20/11419", + "uuid": "5e793a20-8b44-413c-bef6-b3ce3f654f4e", + "siteID": 20928, + "address": "2682 Mertie Pines", + "latitude": 55.7802, + "longitude": -130.4511, + "lastUpdated": "2022-05-14", + "city": "Ankundingmouth", + "region": "Vancouver Island/Coast", + "victoriaFile": "26250-20/3038", "regionalFile": "N/A", "parcelIDs": [ - 7503308, - 2576689, - 990486, - 7748595, - 8436764 + 440867, + 6752404, + 6143161, + 2813916, + 6682046 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2023-04-08", - "completed": "2015-02-27", - "initiated": "2021-05-10", - "ministryContact": "LESCH LEE", + "uuid": "b0aef482-e183-480f-8dca-51e3e5ce5895", + "createdAt": "2015-03-30", + "completed": "2016-03-22", + "initiated": "2023-06-18", + "ministryContact": "EFFERTZ EMMANUELLE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -23466,11 +27387,25 @@ ], "notationParticipants": [ { + "uuid": "67314100-ae1d-427c-8838-a03077ac7442", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "5287252f-25a3-4ecf-a367-a4cbebac81be", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "uuid": "6d4e2972-7222-45a3-a26a-fcf6967d720a", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": false }, { + "uuid": "ca22b127-8591-4204-a541-d50660403af8", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false @@ -23479,10 +27414,11 @@ "siteRegistry": true }, { - "createdAt": "2017-05-18", - "completed": "2016-08-08", - "initiated": "2017-07-28", - "ministryContact": "STROMAN EARL", + "uuid": "6b12b3fe-96ba-4594-8b7b-4068949405e4", + "createdAt": "2020-01-21", + "completed": "2020-09-10", + "initiated": "2015-09-25", + "ministryContact": "VANDERVORT THEODORE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -23491,27 +27427,54 @@ ], "notationParticipants": [ { + "uuid": "0b93eff5-6c30-4943-b6d7-5c7d6497fce2", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "f43a631c-9210-4012-8040-767eeff463f0", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "uuid": "c54ff134-6be9-4d1f-97d8-4d44d1913ec7", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": false - }, + } + ], + "siteRegistry": false + }, + { + "uuid": "4c6f9a82-ae73-4fdb-90c2-bb5f58fe4cf7", + "createdAt": "2021-01-29", + "completed": "2015-11-22", + "initiated": "2015-05-23", + "ministryContact": "CARTER KENNEDY", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ { + "uuid": "586343c1-0388-4acb-baaf-e02542def69d", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true }, { + "uuid": "185d454e-30e0-4fbd-b151-6de2c8131d5d", "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "uuid": "49d138b2-ed4a-48d2-8441-69de0ab1c1de", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false } @@ -23519,10 +27482,11 @@ "siteRegistry": true }, { - "createdAt": "2014-11-22", - "completed": "2023-04-30", - "initiated": "2014-09-22", - "ministryContact": "VEUM MABLE", + "uuid": "5a741ec9-5ed0-4bbd-8a9c-9c5af14f0ac7", + "createdAt": "2022-12-08", + "completed": "2015-12-16", + "initiated": "2017-12-03", + "ministryContact": "HESSEL DEMETRIS", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -23531,28 +27495,44 @@ ], "notationParticipants": [ { + "uuid": "2aeed063-3a65-4b0b-89a6-cd70a530845f", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true }, { + "uuid": "717d718c-d2ed-4095-b77e-3f23ec75c5d5", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true }, { + "uuid": "ca0cbc06-7b31-4a3f-800e-00f5617dfbca", "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "uuid": "f0e9f2ac-0f2e-442f-af4e-65c623dc6741", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false + }, + { + "uuid": "3448b638-92a4-4a35-89b3-70316c96c122", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false } ], "siteRegistry": true }, { - "createdAt": "2017-04-08", - "completed": "2018-03-21", - "initiated": "2020-11-14", - "ministryContact": "POLLICH EUGENE", + "uuid": "07d4a29e-36da-414e-9056-ebb37723941f", + "createdAt": "2023-08-30", + "completed": "2017-08-13", + "initiated": "2022-05-20", + "ministryContact": "STEUBER RODRIGO", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -23561,127 +27541,178 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", + "uuid": "865e0df7-8c01-453d-b2e1-063b3864f110", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false + "uuid": "d654e35a-1b61-4c10-aecd-c488f85059a7", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "96c22353-b851-4eb7-8cd6-7442d52e66ce", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { + "uuid": "3b2f2d9d-196a-46fe-947c-4bf82630e72a", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { + "uuid": "ebe7924e-b23a-4f1a-99e7-222c8da80919", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true + "role": "SUBMITTED BY", + "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true } ], "participants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2021-04-21", - "startDate": "2019-08-06", + "uuid": "98a66c43-0fc6-461e-9a17-eb917a3d3fdd", + "name": "IPSUM", + "endDate": "2020-04-10", + "startDate": "2015-04-10", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false }, { + "uuid": "250f0bf7-d552-47c0-9558-bf06565aea9e", "name": "AMET, DOLOR SIT", - "endDate": "2016-09-15", - "startDate": "2016-10-19", + "endDate": "2018-08-14", + "startDate": "2022-04-07", "notes": "", "roles": [ "ORGANIZATION" ], "siteRegistry": true + }, + { + "uuid": "52e32466-5976-4479-81e1-ccaecfed80ab", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2023-07-13", + "startDate": "2019-03-22", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "uuid": "e4ddda2c-d33e-45ed-9a26-ca47c20b0e43", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2019-12-07", + "startDate": "2014-03-22", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "uuid": "87825cb5-6293-4e57-8fa5-869c2e360a36", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2018-06-25", + "startDate": "2020-09-16", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false } ], "suspectLandUses": [ { + "uuid": "272a470b-6593-4958-aba1-4752ec03af8a", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-01-04 (described on Site Profile dated 2017-01-04)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "notes": "INSERTED FOR SITE PROFILE DATED 2016-06-21 (described on Site Profile dated 2016-06-21)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { + "uuid": "f18ef5f5-2716-4246-9d49-0e227a160fc8", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-04-14 (described on Site Profile dated 2014-04-14)", + "notes": "INSERTED FOR SITE PROFILE DATED 2021-11-02 (described on Site Profile dated 2021-11-02)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { + "uuid": "7f7ea9e8-5a28-4b0c-a4a3-614acea96e0c", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-11-06 (described on Site Profile dated 2017-11-06)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" - }, - { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-01-03 (described on Site Profile dated 2014-01-03)", + "notes": "INSERTED FOR SITE PROFILE DATED 2019-05-02 (described on Site Profile dated 2019-05-02)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { + "uuid": "982b1a1b-014a-45e6-b00a-50d111237add", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-12-11 (described on Site Profile dated 2014-12-11)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "notes": "INSERTED FOR SITE PROFILE DATED 2019-05-30 (described on Site Profile dated 2019-05-30)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], "parcelDescriptions": [ { - "siteRegistry": true, - "dateNoted": "2017-09-15", - "parcelID": "16497", - "crownLandUsePIN": "17962", - "crownLandFileNumber": "20192", - "landDescription": "LOT 1 OF LOT 4 BLOCK 4 DISTRICT LOT 3 PLAN 8572" + "uuid": "b5899ae6-d549-4be7-92b5-a545ee58e3da", + "siteRegistry": false, + "dateNoted": "2018-01-01", + "parcelID": "20823", + "crownLandUsePIN": "15619", + "crownLandFileNumber": "17895", + "landDescription": "LOT 4 OF LOT 4 BLOCK 4 DISTRICT LOT 5 PLAN 4468" }, { - "siteRegistry": true, - "dateNoted": "2015-10-09", - "parcelID": "20257", - "crownLandUsePIN": "16228", - "crownLandFileNumber": "19912", - "landDescription": "LOT 3 OF LOT 5 BLOCK 3 DISTRICT LOT 2 PLAN 6654" + "uuid": "01458248-77df-4c8c-9123-a87941c7edef", + "siteRegistry": false, + "dateNoted": "2017-02-13", + "parcelID": "16809", + "crownLandUsePIN": "15317", + "crownLandFileNumber": "17889", + "landDescription": "LOT 4 OF LOT 5 BLOCK 3 DISTRICT LOT 2 PLAN 6245" }, { + "uuid": "8aebfb04-dfcf-4c2a-aa68-b56438a11a0f", "siteRegistry": true, - "dateNoted": "2018-11-17", - "parcelID": "17244", - "crownLandUsePIN": "20336", - "crownLandFileNumber": "17444", - "landDescription": "LOT 2 OF LOT 2 BLOCK 2 DISTRICT LOT 3 PLAN 5467" + "dateNoted": "2023-01-19", + "parcelID": "17207", + "crownLandUsePIN": "20462", + "crownLandFileNumber": "15695", + "landDescription": "LOT 2 OF LOT 2 BLOCK 2 DISTRICT LOT 5 PLAN 9664" } ], "siteDisclosures": [ { - "siteRegistry": false, - "dateReceived": "2017-10-26", - "dateCompleted": "2018-08-23", - "dateEntered": "2014-04-23", - "dateRegistrar": "2017-08-30", - "dateLocalAuthorityReceived": "2016-05-12", - "summary": "Labore facilis labore voluptates impedit sunt perspiciatis aliquid mollitia.\nImpedit aspernatur rerum provident repudiandae excepturi cum aspernatur.", - "informationUsed": "Officia quaerat quo.\nOmnis ratione nemo magni.\nTemporibus fugit autem soluta dolores.\nEveniet eius aperiam amet corrupti sequi similique.", - "pastOrPresentOrders": "Voluptas et voluptates numquam beatae architecto accusamus debitis voluptate.", + "uuid": "61d97cfb-719c-4cbd-8bda-09099c04bfda", + "siteRegistry": true, + "dateReceived": "2020-11-27", + "dateCompleted": "2021-08-20", + "dateEntered": "2022-03-04", + "dateRegistrar": "2020-11-23", + "dateLocalAuthorityReceived": "2015-11-11", + "summary": "Accusamus labore voluptas illum mollitia explicabo non.", + "informationUsed": "Nemo consectetur voluptas perspiciatis.\nOfficiis molestias in laborum suscipit odit inventore.\nCorporis inventore atque iste alias iste maiores sint qui.\nAb aliquid laboriosam ducimus cumque est perspiciatis repellat.\nVitae provident explicabo eum.", + "pastOrPresentOrders": "Itaque mollitia sequi quas placeat perspiciatis.", "commercialAndIndustrialPurposes": [ { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "uuid": "1a54db57-608a-41a7-b312-c4f95059b9fc", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "uuid": "63817fa8-d64e-4aa1-ae71-38ee7f640796", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false }, { + "uuid": "6c58ba57-98be-4ce5-b27e-4a25389aff4d", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false @@ -23691,109 +27722,114 @@ ], "activityLog": [ { + "uuid": "9abd8475-b637-4136-9740-cce58e0c7057", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "MITCHELL JENNIE", - "timestamp": "2014-08-20" + "user": "HANE JULIANNE", + "timestamp": "2020-02-25" }, { + "uuid": "5a8a0515-0c8b-4761-bafc-7f08b8c95705", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "BAUMBACH ESTEL", - "timestamp": "2021-08-29" + "user": "HUELS RODERICK", + "timestamp": "2019-09-14" }, { - "siteRegistry": true, + "uuid": "16d69c9f-952f-4f67-96a0-35477073bfc2", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "REINGER CLAIR", - "timestamp": "2017-01-20" + "user": "SCHNEIDER HECTOR", + "timestamp": "2017-09-03" }, { - "siteRegistry": true, + "uuid": "70db6930-6417-4b97-9aac-57df01f8fd0d", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "JENKINS MARJORY", - "timestamp": "2023-08-09" + "user": "MURAZIK KAYLEIGH", + "timestamp": "2014-06-09" }, { + "uuid": "ecf45c37-deab-4ff6-9a09-b6cdc10cf827", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "KAUTZER HULDA", - "timestamp": "2023-01-14" + "user": "JOHNS PRICE", + "timestamp": "2015-03-24" }, { + "uuid": "27a804de-f9d3-4e23-8b2a-7c9153bf51e6", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "BATZ VALENTINE", - "timestamp": "2022-07-07" + "user": "SWIFT VICKIE", + "timestamp": "2018-12-16" }, { - "siteRegistry": false, + "uuid": "4242fb21-2dd9-457f-8ab6-1a62245832c8", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "WILKINSON ZULA", - "timestamp": "2019-05-23" + "user": "KOVACEK-ABSHIRE TIMMY", + "timestamp": "2018-08-29" }, { + "uuid": "dbd5a0ef-5a70-41bb-8bc5-3a8351f78409", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "WEHNER MADDISON", - "timestamp": "2018-03-07" + "user": "PREDOVIC JOAQUIN", + "timestamp": "2020-03-27" }, { + "uuid": "8cefe392-9c65-43d7-a2d4-b35603053825", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "OBERBRUNNER JERRY", - "timestamp": "2018-08-31" + "user": "STARK AFTON", + "timestamp": "2023-07-13" } ], "associatedSites": [ { - "dateNoted": "2022-05-31", - "notes": "", - "parcelID": "20553", - "siteID": "15789", - "siteRegistry": true - }, - { - "dateNoted": "2023-01-10", + "uuid": "a22dc99a-6977-4315-84c5-9f6e085123e3", + "dateNoted": "2021-12-30", "notes": "", - "parcelID": "16445", - "siteID": "16890", + "parcelID": "19884", + "siteID": "18724", "siteRegistry": false }, { - "dateNoted": "2017-08-18", + "uuid": "9f1a4b17-64ec-4503-bf49-80ce2b4324ce", + "dateNoted": "2016-11-29", "notes": "", - "parcelID": "16122", - "siteID": "20221", + "parcelID": "16361", + "siteID": "19716", "siteRegistry": false } ] }, { - "uuid": "70f98311-5108-43e5-88b5-6e8e2231566e", - "siteID": 17027, - "address": "189 Diego Run", - "latitude": 52.9714, - "longitude": -137.4123, - "lastUpdated": "2017-08-27", - "city": "Hacienda Heights", - "region": "Thompson-Okanagan", - "victoriaFile": "26250-20/1854", + "uuid": "44bedafe-2c5f-42a5-83a3-8f71351634b4", + "siteID": 15597, + "address": "766 Dietrich Heights", + "latitude": 53.1411, + "longitude": -136.6347, + "lastUpdated": "2021-06-17", + "city": "Thompsonview", + "region": "Cariboo", + "victoriaFile": "26250-20/4915", "regionalFile": "N/A", "parcelIDs": [ - 3886330, - 5372946, - 2191335, - 2728712, - 8566055 + 705604, + 8784917, + 1873845, + 521031, + 5999248 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2019-01-25", - "completed": "2017-01-09", - "initiated": "2017-06-23", - "ministryContact": "REYNOLDS VERLA", + "uuid": "663fbcd7-1e33-4666-ae95-61769b40fbb8", + "createdAt": "2019-04-01", + "completed": "2014-09-26", + "initiated": "2020-12-22", + "ministryContact": "DUBUQUE KATHERINE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -23802,28 +27838,38 @@ ], "notationParticipants": [ { + "uuid": "3ecc301a-bcab-4b6d-b757-e9dec3c70b38", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false + }, + { + "uuid": "932f893d-8591-49eb-83e5-29753a1980a2", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false }, { + "uuid": "d8698462-4837-4417-81fc-68d2c4417f55", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "uuid": "df693265-40db-4ef2-adcb-30b5393080d8", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": false } ], "siteRegistry": true }, { - "createdAt": "2016-01-25", - "completed": "2019-02-21", - "initiated": "2016-09-12", - "ministryContact": "SCHAEFER DUANE", + "uuid": "815d0430-6c0e-49fa-8cea-76ba47bce1a8", + "createdAt": "2020-08-08", + "completed": "2023-10-09", + "initiated": "2019-06-26", + "ministryContact": "LANGOSH ENA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -23832,38 +27878,72 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", + "uuid": "1d3eaf18-573f-4dee-b5a6-d8e89dda543c", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "uuid": "e75bf6cc-208b-4452-af50-8920636037b0", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { + "uuid": "a8d74cd3-1dc6-4d82-9227-6416821c0b68", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "dc0c3661-523d-4ca9-b9af-8f7d34f8a736", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { + "uuid": "25d2ca16-8cc0-46f1-9524-d75cf4f71984", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true - }, + } + ], + "siteRegistry": true + }, + { + "uuid": "969cbc0a-58aa-4ebe-b4d0-0cebe93aca5c", + "createdAt": "2017-02-20", + "completed": "2017-02-03", + "initiated": "2015-12-11", + "ministryContact": "LEGROS ELENOR", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ { + "uuid": "75080bf3-4ad0-4f1c-b669-b4267e5d1a89", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "cc0ae4aa-963d-42fa-a575-67ff1a5d8fc9", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": true } ], "siteRegistry": false }, { - "createdAt": "2022-04-04", - "completed": "2022-06-07", - "initiated": "2022-02-05", - "ministryContact": "STROSIN NELLA", + "uuid": "1e2d00fc-eecf-46e4-8cb6-dfd97fb219f8", + "createdAt": "2016-01-05", + "completed": "2018-07-10", + "initiated": "2018-11-22", + "ministryContact": "WEHNER ROSALEE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -23872,21 +27952,59 @@ ], "notationParticipants": [ { + "uuid": "9745bd8e-7131-45de-8507-95d77ee6338f", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "541d6fd9-5670-44b3-9d8b-d9c19e202914", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": false }, { + "uuid": "5cb85124-2245-452e-869d-33a5be4101ff", "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "5672e44c-fbb5-46a0-b327-d6b9a204c2e1", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "uuid": "a26f2f7d-91b6-494e-a62a-cfb251cef9c2", + "createdAt": "2018-01-31", + "completed": "2019-04-26", + "initiated": "2019-07-02", + "ministryContact": "HINTZ JOSEPHINE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "uuid": "163c8ddc-d8a7-4cfa-a01e-60556349019e", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true }, { + "uuid": "b1523a42-132f-464a-83b1-4da207f7b97c", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false }, { + "uuid": "0b17d1b3-e307-494c-adad-63e19f79ae71", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true @@ -23897,219 +28015,218 @@ ], "participants": [ { + "uuid": "a341a48f-ecbd-41e0-b8ca-915a4e68dee6", "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2021-10-06", - "startDate": "2022-11-20", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": true - }, - { - "name": "IPSUM", - "endDate": "2020-10-30", - "startDate": "2014-11-16", + "endDate": "2019-08-26", + "startDate": "2015-10-08", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": false - }, - { - "name": "AMET, DOLOR SIT", - "endDate": "2015-09-15", - "startDate": "2019-08-11", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": false + "siteRegistry": true }, { + "uuid": "80302a26-45a7-45cc-9619-f5d3b3757c23", "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2016-08-14", - "startDate": "2021-09-04", + "endDate": "2020-03-29", + "startDate": "2015-11-14", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], - "siteRegistry": false + "siteRegistry": true } ], "suspectLandUses": [ { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-01-22 (described on Site Profile dated 2021-01-22)", + "uuid": "1d00d9d6-afa4-4a99-b8f1-3a949800aee0", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2017-04-04 (described on Site Profile dated 2017-04-04)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-09-10 (described on Site Profile dated 2018-09-10)", + "uuid": "13e8d028-7733-49c5-8af8-159f6d231b06", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2015-11-18 (described on Site Profile dated 2015-11-18)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-09-01 (described on Site Profile dated 2022-09-01)", + "uuid": "1de7d666-bf1d-473f-b35d-43c0e4724fd1", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2013-12-28 (described on Site Profile dated 2013-12-28)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + } + ], + "parcelDescriptions": [ + { + "uuid": "ce1bdedd-e5a3-4230-86e9-9da715a71dab", + "siteRegistry": false, + "dateNoted": "2022-06-30", + "parcelID": "20581", + "crownLandUsePIN": "18430", + "crownLandFileNumber": "16893", + "landDescription": "LOT 2 OF LOT 5 BLOCK 3 DISTRICT LOT 3 PLAN 5714" }, { + "uuid": "d2d06e8e-4f9e-42a9-bfda-81b74c08eb74", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-05-12 (described on Site Profile dated 2022-05-12)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "dateNoted": "2023-08-15", + "parcelID": "16890", + "crownLandUsePIN": "20868", + "crownLandFileNumber": "19124", + "landDescription": "LOT 3 OF LOT 4 BLOCK 4 DISTRICT LOT 4 PLAN 9287" }, { + "uuid": "5de63052-fcf6-4416-aa0f-c00de311e021", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-06-29 (described on Site Profile dated 2019-06-29)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" - } - ], - "parcelDescriptions": [ + "dateNoted": "2022-01-09", + "parcelID": "18793", + "crownLandUsePIN": "17129", + "crownLandFileNumber": "19751", + "landDescription": "LOT 5 OF LOT 1 BLOCK 2 DISTRICT LOT 1 PLAN 8514" + }, { - "siteRegistry": true, - "dateNoted": "2023-01-25", - "parcelID": "17629", - "crownLandUsePIN": "19131", - "crownLandFileNumber": "19729", - "landDescription": "LOT 5 OF LOT 2 BLOCK 5 DISTRICT LOT 2 PLAN 9026" + "uuid": "c099eed2-4813-4715-b355-b0f264981a4f", + "siteRegistry": false, + "dateNoted": "2021-08-15", + "parcelID": "20530", + "crownLandUsePIN": "19329", + "crownLandFileNumber": "20265", + "landDescription": "LOT 3 OF LOT 1 BLOCK 4 DISTRICT LOT 5 PLAN 5312" }, { - "siteRegistry": true, - "dateNoted": "2023-09-10", - "parcelID": "16954", - "crownLandUsePIN": "18542", - "crownLandFileNumber": "20957", - "landDescription": "LOT 2 OF LOT 1 BLOCK 2 DISTRICT LOT 3 PLAN 7824" + "uuid": "2a800fcf-e7e4-4a0b-a564-6b3c360113e2", + "siteRegistry": false, + "dateNoted": "2013-10-15", + "parcelID": "18905", + "crownLandUsePIN": "18348", + "crownLandFileNumber": "19017", + "landDescription": "LOT 3 OF LOT 3 BLOCK 4 DISTRICT LOT 2 PLAN 5356" } ], "siteDisclosures": [ { - "siteRegistry": true, - "dateReceived": "2015-07-05", - "dateCompleted": "2014-12-08", - "dateEntered": "2023-08-31", - "dateRegistrar": "2015-04-27", - "dateLocalAuthorityReceived": "2021-10-15", - "summary": "Mollitia quos deserunt aliquid omnis veritatis.", - "informationUsed": "Saepe non aperiam ea qui occaecati officiis libero ipsum explicabo.\nRepudiandae amet voluptates expedita.\nSuscipit maiores doloribus deserunt esse quam tenetur a.", - "pastOrPresentOrders": "Mollitia molestiae repudiandae ex porro impedit.", + "uuid": "3b6b9f32-18b9-4e3a-b7a2-df381fda05e9", + "siteRegistry": false, + "dateReceived": "2023-09-10", + "dateCompleted": "2020-03-30", + "dateEntered": "2020-08-11", + "dateRegistrar": "2019-08-18", + "dateLocalAuthorityReceived": "2022-03-13", + "summary": "Nihil reprehenderit itaque laboriosam possimus consequatur ratione iure labore.", + "informationUsed": "Natus soluta nulla natus accusamus quod.\nLaudantium sunt deleniti fugit voluptatem provident mollitia cumque at animi.\nAliquam est recusandae nihil et.\nCulpa minus architecto et veniam et culpa unde.\nCorporis nesciunt illo cupiditate quam culpa soluta maiores numquam.", + "pastOrPresentOrders": "Reprehenderit ratione quisquam ipsum rem quia possimus magnam repellendus debitis.\nConsequuntur quae recusandae.\nMolestias aut sed beatae cumque reiciendis nisi.", "commercialAndIndustrialPurposes": [ { + "uuid": "b1d16251-d9ee-4965-9f87-644e62fd2987", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { + "uuid": "2f31a1cf-e6e4-44ec-8f3c-b9d3bc271711", "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true - }, - { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false } ] } ], "activityLog": [ { + "uuid": "b0d69766-8086-40f1-9d30-4af3d5d240cf", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "WEISSNAT VICTOR", - "timestamp": "2016-10-21" + "user": "OBERBRUNNER CARLOTTA", + "timestamp": "2015-12-30" }, { + "uuid": "c6742cb9-8c29-4feb-a8eb-49d25abf1f6f", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "DANIEL FRANCIS", - "timestamp": "2015-03-27" + "user": "KIHN BRADFORD", + "timestamp": "2015-02-16" }, { - "siteRegistry": false, + "uuid": "af6cc079-338b-4e12-9921-865014f1a1bc", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "EFFERTZ-TILLMAN BLANCA", - "timestamp": "2023-09-04" + "user": "MCLAUGHLIN CAITLYN", + "timestamp": "2019-03-29" }, { + "uuid": "52f798fe-c8e3-41cd-b08d-d0b32a3bccc6", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "GLEASON SADIE", - "timestamp": "2022-06-22" + "user": "HERMANN NEWELL", + "timestamp": "2020-02-04" }, { + "uuid": "da98bbb2-a6f6-4730-b324-5bf605f11335", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "ROSENBAUM SIBYL", - "timestamp": "2015-01-15" + "user": "MACEJKOVIC LUCY", + "timestamp": "2017-07-23" }, { + "uuid": "e4523e53-502a-4b0f-a15e-212d5c2825bf", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "HAMILL CECILIA", - "timestamp": "2023-01-10" + "user": "WEST ELOISE", + "timestamp": "2015-05-03" }, { - "siteRegistry": false, + "uuid": "810d9ee5-8b82-4a29-8ae0-f09c25948f2c", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "BARTON THEODORE", - "timestamp": "2021-02-05" + "user": "MACGYVER-SCHUPPE SALVADOR", + "timestamp": "2021-03-02" }, { + "uuid": "9896a16b-fc5c-4eb8-b00d-cecde79149b6", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "SIMONIS LILYAN", - "timestamp": "2017-07-15" - }, - { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "KUB CLEVE", - "timestamp": "2018-06-14" + "user": "BARROWS-KOCH JUNIOR", + "timestamp": "2023-01-29" } ], "associatedSites": [ { - "dateNoted": "2015-12-30", - "notes": "", - "parcelID": "16445", - "siteID": "15477", - "siteRegistry": false - }, - { - "dateNoted": "2022-07-21", + "uuid": "3761f13e-6401-4038-bef3-4574ec8aa37c", + "dateNoted": "2020-11-23", "notes": "", - "parcelID": "16052", - "siteID": "20854", + "parcelID": "20489", + "siteID": "17437", "siteRegistry": true } ] }, { - "uuid": "6c8be690-8638-4474-8c3e-e2b37f1b2580", - "siteID": 20984, - "address": "384 Klein Curve", - "latitude": 56, - "longitude": -134.3978, - "lastUpdated": "2016-10-20", - "city": "Jonesmouth", - "region": " North Coast", - "victoriaFile": "26250-20/2197", + "uuid": "9cf229ae-9424-4b49-906d-cfdcbff1d710", + "siteID": 17933, + "address": "18583 Kautzer Village", + "latitude": 52.4832, + "longitude": -119.1396, + "lastUpdated": "2021-10-23", + "city": "Port Abnerstad", + "region": "Mainland/Southwest", + "victoriaFile": "26250-20/4969", "regionalFile": "N/A", "parcelIDs": [ - 1330886, - 9438022, - 3259798, - 472501, - 4802083 + 6594520, + 1175871, + 609532, + 2378444, + 7560757 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2014-07-21", - "completed": "2017-07-09", - "initiated": "2014-09-09", - "ministryContact": "EBERT BRIDGETTE", + "uuid": "5390a8a3-2ef3-4b6b-b78f-963e98a8ea2c", + "createdAt": "2023-05-11", + "completed": "2021-08-31", + "initiated": "2018-04-10", + "ministryContact": "HOMENICK RIGOBERTO", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -24118,38 +28235,38 @@ ], "notationParticipants": [ { + "uuid": "908d3dad-0ce0-4b10-889e-f01572bebd9a", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false + "role": "SUBMITTED BY", + "siteRegistry": true }, { + "uuid": "93f32827-6870-412e-8d28-86871e78f6e4", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true }, { + "uuid": "b864ac46-3c0a-49ab-9706-feaf610435b9", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "uuid": "586b6ee8-7ef0-4c43-a3c2-8bb42436bbff", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2017-11-27", - "completed": "2018-03-02", - "initiated": "2018-10-16", - "ministryContact": "BAUMBACH-MURRAY ALTA", + "uuid": "bd6bd055-3352-4234-94dd-0bc82b103a0f", + "createdAt": "2016-08-24", + "completed": "2021-03-18", + "initiated": "2014-01-06", + "ministryContact": "SCHAMBERGER PAUL", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -24158,225 +28275,273 @@ ], "notationParticipants": [ { + "uuid": "b1282738-fc88-4b6d-ac69-bbb05e6c56de", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false + "uuid": "d080b872-639c-45bb-8ff6-36e824cf11bb", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "a7887267-c30b-42a6-9e8d-c2f1803ce976", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false } ], "participants": [ { - "name": "IPSUM", - "endDate": "2021-06-15", - "startDate": "2022-12-23", + "uuid": "34c5f213-78f3-489c-8f8f-e14c5ac5b410", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2016-04-24", + "startDate": "2019-04-16", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": false }, { - "name": "AMET, DOLOR SIT", - "endDate": "2020-05-10", - "startDate": "2017-10-07", + "uuid": "8eb9ba7c-55b3-4348-853a-a777bea8bca0", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2018-01-10", + "startDate": "2018-10-09", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "uuid": "7ad48c20-088f-47e0-8ff5-be7a2d10f86a", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2016-06-01", + "startDate": "2019-12-23", + "notes": "", + "roles": [ + "EMPLOYEE" ], "siteRegistry": false }, { + "uuid": "1d1f4e0e-8cf3-4827-bcaf-1a09c970d036", "name": "IPSUM", - "endDate": "2022-01-10", - "startDate": "2019-05-11", + "endDate": "2019-07-15", + "startDate": "2020-07-20", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": true + }, + { + "uuid": "8ae0c072-72c3-40bd-a430-5385fcaf33df", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2019-05-31", + "startDate": "2019-02-10", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false } ], "suspectLandUses": [ { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-02-25 (described on Site Profile dated 2015-02-25)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" - }, - { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-01-15 (described on Site Profile dated 2015-01-15)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" - }, - { + "uuid": "eb016ded-d5e8-4068-90cc-70fb59012cb3", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-06-18 (described on Site Profile dated 2021-06-18)", + "notes": "INSERTED FOR SITE PROFILE DATED 2021-03-04 (described on Site Profile dated 2021-03-04)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-04-05 (described on Site Profile dated 2018-04-05)", + "uuid": "2ae591f0-7d14-48cc-abc2-215a61a1fcd0", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2021-11-28 (described on Site Profile dated 2021-11-28)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], "parcelDescriptions": [ { + "uuid": "a2e30870-fc0e-4695-9d12-4fe48a3cb50b", "siteRegistry": true, - "dateNoted": "2018-06-27", - "parcelID": "18258", - "crownLandUsePIN": "16572", - "crownLandFileNumber": "16935", - "landDescription": "LOT 3 OF LOT 2 BLOCK 5 DISTRICT LOT 5 PLAN 4932" - }, - { - "siteRegistry": true, - "dateNoted": "2017-06-21", - "parcelID": "17833", - "crownLandUsePIN": "20210", - "crownLandFileNumber": "16730", - "landDescription": "LOT 4 OF LOT 4 BLOCK 1 DISTRICT LOT 2 PLAN 5549" + "dateNoted": "2021-02-25", + "parcelID": "18863", + "crownLandUsePIN": "17017", + "crownLandFileNumber": "19255", + "landDescription": "LOT 4 OF LOT 1 BLOCK 3 DISTRICT LOT 5 PLAN 3214" }, { - "siteRegistry": true, - "dateNoted": "2020-01-25", - "parcelID": "16700", - "crownLandUsePIN": "20334", - "crownLandFileNumber": "15403", - "landDescription": "LOT 2 OF LOT 2 BLOCK 3 DISTRICT LOT 1 PLAN 3155" + "uuid": "6c9b4040-581c-49b0-b891-71bcdf931013", + "siteRegistry": false, + "dateNoted": "2014-09-20", + "parcelID": "19803", + "crownLandUsePIN": "20180", + "crownLandFileNumber": "17484", + "landDescription": "LOT 3 OF LOT 4 BLOCK 1 DISTRICT LOT 3 PLAN 6788" } ], "siteDisclosures": [ { + "uuid": "c7056237-6e9f-4888-ba32-3f987957c357", "siteRegistry": false, - "dateReceived": "2015-01-07", - "dateCompleted": "2019-07-14", - "dateEntered": "2021-07-25", - "dateRegistrar": "2015-08-18", - "dateLocalAuthorityReceived": "2019-01-28", - "summary": "Numquam illo placeat minima iusto.", - "informationUsed": "Officiis eligendi id saepe id facilis ipsam perspiciatis repellendus velit.\nAd quam a voluptatem sapiente dolor incidunt.\nMolestiae culpa vel commodi quaerat delectus alias.", - "pastOrPresentOrders": "Perspiciatis earum laboriosam saepe saepe cum repudiandae omnis iure eum.", + "dateReceived": "2020-01-21", + "dateCompleted": "2016-11-19", + "dateEntered": "2015-07-23", + "dateRegistrar": "2018-08-12", + "dateLocalAuthorityReceived": "2016-11-07", + "summary": "Accusamus facilis soluta.\nConsectetur cumque fugiat explicabo vero ipsam libero.", + "informationUsed": "Suscipit blanditiis fugiat voluptates.\nEligendi adipisci dolorem error consectetur incidunt itaque maiores.\nIpsum doloremque beatae autem mollitia neque.\nCumque perferendis facere laboriosam dolore corrupti neque iusto pariatur.\nDoloremque qui dolore reiciendis quo odio totam non odit.", + "pastOrPresentOrders": "Beatae numquam itaque doloremque vel quisquam laudantium hic.", "commercialAndIndustrialPurposes": [ { + "uuid": "a5a45c74-a0d1-4fbb-8482-1f6db30d79b0", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "uuid": "dcfa1287-f562-46c1-97b9-408d9bc8da49", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "uuid": "50695a90-80a4-4b46-a0d8-dd7520fe1959", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true - }, + } + ] + }, + { + "uuid": "a4eb1dd2-f812-4fe0-a58b-8010e29a143d", + "siteRegistry": false, + "dateReceived": "2020-10-18", + "dateCompleted": "2022-11-30", + "dateEntered": "2018-02-13", + "dateRegistrar": "2014-11-12", + "dateLocalAuthorityReceived": "2017-01-11", + "summary": "Error doloribus culpa adipisci voluptas inventore quibusdam ad minima.\nMagni expedita quasi quibusdam.\nSuscipit laborum quas sequi magni officia maxime earum.", + "informationUsed": "Perspiciatis quis minima perspiciatis ducimus recusandae distinctio maxime amet rem.\nArchitecto doloribus reprehenderit.\nPlaceat laboriosam earum adipisci.\nConsequatur reprehenderit iure excepturi commodi minus nisi cupiditate pariatur minus.", + "pastOrPresentOrders": "Possimus laboriosam sed odit magni iste eveniet.", + "commercialAndIndustrialPurposes": [ { + "uuid": "1faba96c-2982-4b79-a152-13c8376e53f0", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { + "uuid": "ca5d6b67-8aa8-4404-a7d1-10a74de24e1e", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false + "siteRegistry": true + }, + { + "uuid": "543736d1-ece3-47c5-98ba-09f2ed9d14a9", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true } ] } ], "activityLog": [ { + "uuid": "5df92c32-66cc-416b-83bb-315fd643abcd", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "GLEICHNER GRAYSON", - "timestamp": "2017-10-25" + "user": "WISOZK-CONN KRISTA", + "timestamp": "2014-02-11" }, { + "uuid": "661bd32e-0891-42b0-96ea-6cfacd11c3f0", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "HAGENES LYNN", - "timestamp": "2020-01-25" + "user": "KOCH MACY", + "timestamp": "2016-06-12" }, { - "siteRegistry": false, + "uuid": "bb0e72a5-7af7-49cd-ba63-35adbd7ca7bb", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "WISOKY KEVIN", - "timestamp": "2013-10-31" + "user": "HILPERT MEGANE", + "timestamp": "2020-05-08" }, { + "uuid": "ab19fc04-5e8e-4c8c-a04c-b88c0e1c97d2", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "CASPER NOLAN", - "timestamp": "2021-12-06" + "user": "SCHMELER KASANDRA", + "timestamp": "2014-11-02" }, { + "uuid": "7c564519-f301-47c0-92d8-752641e1ae81", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "HALEY CLARK", - "timestamp": "2019-11-03" + "user": "SMITH LOGAN", + "timestamp": "2023-06-11" }, { + "uuid": "e9026f0a-4858-4bf4-937a-9d4daf791e23", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "RUSSEL KAMRON", - "timestamp": "2015-02-07" - }, - { - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "YOST THALIA", - "timestamp": "2015-06-12" - }, - { - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "BAILEY MAYE", - "timestamp": "2015-11-29" - }, - { - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "ZEMLAK GEORGE", - "timestamp": "2019-06-11" + "user": "KUNDE MAIDA", + "timestamp": "2017-03-30" } ], "associatedSites": [ { - "dateNoted": "2020-09-29", + "uuid": "b8fee2f7-940e-4e9d-bc17-7f8a230e6ebe", + "dateNoted": "2015-11-02", "notes": "", - "parcelID": "20663", - "siteID": "15420", + "parcelID": "15490", + "siteID": "16277", "siteRegistry": true + }, + { + "uuid": "5f3d1e36-d2ec-4690-9f1d-3c40fe295e17", + "dateNoted": "2015-03-02", + "notes": "", + "parcelID": "16336", + "siteID": "17528", + "siteRegistry": false } ] }, { - "uuid": "357941b4-f228-45ab-afa0-048ccb7b36c8", - "siteID": 18027, - "address": "5900 Cremin Course", - "latitude": 54.8864, - "longitude": -122.358, - "lastUpdated": "2023-05-19", - "city": "West Margret", - "region": "Cariboo", - "victoriaFile": "26250-20/15795", + "uuid": "a45774bc-0a6d-4eed-bd98-497db154bcf3", + "siteID": 17913, + "address": "4629 Hertha Spurs", + "latitude": 51.7247, + "longitude": -137.2316, + "lastUpdated": "2017-12-19", + "city": "North Bofurt", + "region": "Thompson-Okanagan", + "victoriaFile": "26250-20/3314", "regionalFile": "N/A", "parcelIDs": [ - 244731, - 6123077, - 1782286, - 6837282, - 4902093 + 4820376, + 4418710, + 8641269, + 4582289, + 1941058 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2016-10-23", - "completed": "2020-08-18", - "initiated": "2023-07-25", - "ministryContact": "CONROY GERALDINE", + "uuid": "09dafddb-67ae-4a9b-a8b7-88dfca4880e5", + "createdAt": "2018-05-18", + "completed": "2016-12-12", + "initiated": "2019-11-23", + "ministryContact": "GLOVER KELSIE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -24385,33 +28550,38 @@ ], "notationParticipants": [ { + "uuid": "3c6f3ef2-6046-4a86-ac46-16410c5128e3", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false }, { + "uuid": "3485656f-dd36-48ca-b999-8e63b7ad5910", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false }, { + "uuid": "98f9ac1d-251e-46da-a6fc-e97727939c8c", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", + "uuid": "c0b53fa3-6f21-4063-9722-2bcdc08762f8", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false } ], "siteRegistry": true }, { - "createdAt": "2016-02-18", - "completed": "2019-06-11", - "initiated": "2022-01-05", - "ministryContact": "VON HARMONY", + "uuid": "7a8b7599-ad0d-4778-8ce1-afef1cbc4da2", + "createdAt": "2023-04-17", + "completed": "2022-10-31", + "initiated": "2013-10-28", + "ministryContact": "WARD HELENE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -24420,260 +28590,321 @@ ], "notationParticipants": [ { + "uuid": "46450bcf-d28f-48e3-ada8-6615afd40ea8", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "uuid": "a1602278-1e83-4a66-a360-f6405878a832", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "uuid": "7ed34386-9622-4574-a3c8-0b42fe19f48d", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "57acf39e-f84b-4206-8650-9ae32011e399", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "uuid": "442e3528-e100-4e39-b698-5994b8e10cf6", + "createdAt": "2016-03-31", + "completed": "2018-10-14", + "initiated": "2021-12-10", + "ministryContact": "WEHNER KIRK", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "uuid": "c03a39bf-21a4-44fa-a622-2a002a6f90e7", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": true }, { + "uuid": "9b8717ce-7b56-403e-93eb-74f57ed049e8", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false }, { + "uuid": "9de6c2a5-0c5a-4007-afb5-a79cc80dc4ce", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "863d7bf6-af38-492b-a5f8-c484dcd8e692", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false } ], "participants": [ { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2016-05-26", - "startDate": "2019-01-14", + "uuid": "31a0d1c2-c3cb-4d4d-820f-379f4f0092bc", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2018-09-03", + "startDate": "2019-03-02", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true }, { - "name": "IPSUM", - "endDate": "2021-02-01", - "startDate": "2017-09-10", + "uuid": "d93e0876-b6d8-4d85-973f-c1e1a5b9f4d2", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2018-06-07", + "startDate": "2016-04-19", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2015-03-28", - "startDate": "2015-04-19", + "uuid": "f0f03e07-a260-4b6b-af03-c4e2ed71881b", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2021-01-18", + "startDate": "2018-05-28", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2016-04-26", - "startDate": "2017-10-27", + "uuid": "3e634b91-94f1-4e3b-85bc-48aa5d7d1150", + "name": "IPSUM", + "endDate": "2017-08-15", + "startDate": "2014-10-08", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2021-04-12", - "startDate": "2014-12-08", + "uuid": "e801e9a7-66c4-467c-b962-25356b08fb95", + "name": "AMET, DOLOR SIT", + "endDate": "2016-06-24", + "startDate": "2015-09-28", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false } ], "suspectLandUses": [ { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2020-09-04 (described on Site Profile dated 2020-09-04)", + "uuid": "f2cdd40b-128f-476f-bcd1-0664e13ebfc9", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2015-06-30 (described on Site Profile dated 2015-06-30)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { + "uuid": "bf32f7ef-657f-4f97-a641-3c528d41a7d8", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-10-24 (described on Site Profile dated 2019-10-24)", + "notes": "INSERTED FOR SITE PROFILE DATED 2018-03-08 (described on Site Profile dated 2018-03-08)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { + "uuid": "2bb93c0d-1050-4a8c-a89a-2de396979585", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-11-29 (described on Site Profile dated 2017-11-29)", + "notes": "INSERTED FOR SITE PROFILE DATED 2019-08-06 (described on Site Profile dated 2019-08-06)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], "parcelDescriptions": [ { + "uuid": "baf44e36-7184-45ba-b234-d8b134f5dcf8", "siteRegistry": false, - "dateNoted": "2019-09-19", - "parcelID": "19525", - "crownLandUsePIN": "16930", - "crownLandFileNumber": "18036", - "landDescription": "LOT 2 OF LOT 3 BLOCK 1 DISTRICT LOT 2 PLAN 6440" + "dateNoted": "2014-01-14", + "parcelID": "15870", + "crownLandUsePIN": "16647", + "crownLandFileNumber": "20660", + "landDescription": "LOT 1 OF LOT 5 BLOCK 4 DISTRICT LOT 2 PLAN 3684" }, { - "siteRegistry": false, - "dateNoted": "2016-08-31", - "parcelID": "18568", - "crownLandUsePIN": "15662", - "crownLandFileNumber": "17759", - "landDescription": "LOT 3 OF LOT 1 BLOCK 5 DISTRICT LOT 1 PLAN 7954" - }, - { - "siteRegistry": false, - "dateNoted": "2018-06-03", - "parcelID": "15326", - "crownLandUsePIN": "18344", - "crownLandFileNumber": "20594", - "landDescription": "LOT 3 OF LOT 2 BLOCK 1 DISTRICT LOT 2 PLAN 6845" + "uuid": "2338540e-7c10-4728-993e-9b60abb4af6a", + "siteRegistry": true, + "dateNoted": "2016-08-06", + "parcelID": "17053", + "crownLandUsePIN": "16194", + "crownLandFileNumber": "15538", + "landDescription": "LOT 5 OF LOT 1 BLOCK 1 DISTRICT LOT 5 PLAN 5179" }, { - "siteRegistry": false, - "dateNoted": "2023-06-19", - "parcelID": "16454", - "crownLandUsePIN": "16178", - "crownLandFileNumber": "18024", - "landDescription": "LOT 2 OF LOT 3 BLOCK 2 DISTRICT LOT 3 PLAN 8102" + "uuid": "a9c462c0-e882-4bac-9d22-442607732e2a", + "siteRegistry": true, + "dateNoted": "2013-11-18", + "parcelID": "20927", + "crownLandUsePIN": "19147", + "crownLandFileNumber": "17611", + "landDescription": "LOT 2 OF LOT 4 BLOCK 4 DISTRICT LOT 5 PLAN 3995" } ], "siteDisclosures": [ { + "uuid": "414a6881-7026-414b-99d5-d1863360821f", "siteRegistry": false, - "dateReceived": "2017-08-28", - "dateCompleted": "2018-10-12", - "dateEntered": "2014-03-07", - "dateRegistrar": "2020-06-14", - "dateLocalAuthorityReceived": "2023-09-09", - "summary": "Sint voluptate itaque maiores vel beatae doloribus.\nIpsum sequi eligendi at atque omnis eligendi expedita.\nPorro doloribus accusamus laboriosam doloremque recusandae labore odit fugiat.", - "informationUsed": "Quasi eum fugiat libero dolor ullam.\nFacere voluptatem perspiciatis hic.\nQui optio suscipit temporibus commodi quam reiciendis atque.\nEaque ullam assumenda voluptate ducimus suscipit dolorum quaerat quod labore.", - "pastOrPresentOrders": "Rerum numquam quibusdam dolorem.\nCulpa labore nesciunt.", + "dateReceived": "2014-01-18", + "dateCompleted": "2018-02-21", + "dateEntered": "2018-04-14", + "dateRegistrar": "2017-12-11", + "dateLocalAuthorityReceived": "2015-03-05", + "summary": "Minima harum dolores veniam voluptas dignissimos asperiores quos.\nLaborum dolor quod nihil consectetur vitae fugit cumque amet.\nTenetur dolorem quis nobis deleniti.", + "informationUsed": "Voluptatum modi ab molestias error quibusdam magni odit.\nRatione facilis iure iure qui.\nRepellendus recusandae amet pariatur accusantium.", + "pastOrPresentOrders": "Animi at expedita eligendi dignissimos tempora vero.\nQuod unde sed commodi in accusamus eaque eum.\nQuisquam aperiam nemo error culpa voluptatum repudiandae voluptatem quaerat.", "commercialAndIndustrialPurposes": [ { - "scheduleReference": "F1*", + "uuid": "a85c8fe6-263a-4b03-a209-3d854429f79e", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { - "scheduleReference": "F2*", + "uuid": "480b062f-b8ba-4a50-9caa-78c63accf564", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true - } - ] - }, - { - "siteRegistry": false, - "dateReceived": "2023-01-27", - "dateCompleted": "2020-08-01", - "dateEntered": "2019-09-12", - "dateRegistrar": "2021-05-22", - "dateLocalAuthorityReceived": "2020-08-20", - "summary": "Veritatis consequuntur facilis et illo unde ex dicta occaecati tempora.\nCorporis id sed ipsam natus quas ipsum hic.\nVeniam est fuga sit tempore corrupti.", - "informationUsed": "Dolorem et error consequatur dicta.\nAut corporis error rerum facere quos corporis dignissimos sed.\nDicta explicabo quisquam sapiente commodi.\nQuas est incidunt doloremque quis hic nesciunt.\nExpedita perspiciatis numquam modi quas nostrum assumenda.", - "pastOrPresentOrders": "A dolorem doloribus deleniti iste iusto asperiores dicta quidem molestias.", - "commercialAndIndustrialPurposes": [ + }, { + "uuid": "4673dff1-69ca-4c4a-b591-c8fd78ea674e", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { + "uuid": "93101bf8-2315-45d8-9a88-09cb36ec9cb0", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false - }, - { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true } ] } ], "activityLog": [ { - "siteRegistry": false, + "uuid": "484e4cac-ddd0-4288-bf55-79f82b87cc55", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "TURCOTTE ANASTACIO", - "timestamp": "2016-04-19" + "user": "KEELING DAPHNEY", + "timestamp": "2022-03-29" }, { + "uuid": "39dca7fe-3f0a-458e-b3f1-1c94e3d294e6", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "KUPHAL ROSE", - "timestamp": "2018-05-31" + "user": "SCHAMBERGER STANLEY", + "timestamp": "2018-08-11" + }, + { + "uuid": "794a4cfd-6d1a-4d3e-a1e3-3c0b92517c52", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "TORPHY ALEXANNE", + "timestamp": "2017-12-08" }, { + "uuid": "bba85648-e181-4542-8b9c-41abcfa480ce", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "WIZA DEWITT", - "timestamp": "2022-12-08" + "user": "CHRISTIANSEN JENNINGS", + "timestamp": "2022-03-01" + }, + { + "uuid": "0de0be82-2f31-4a86-89b3-ff8dd6b77d88", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "GOYETTE JALON", + "timestamp": "2022-11-28" }, { + "uuid": "2c09ba1e-ea4c-43f9-aa78-617e314a0ec4", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "BARTON KEELY", - "timestamp": "2022-06-17" + "user": "KUTCH EDGAR", + "timestamp": "2021-11-15" }, { + "uuid": "0db5e55e-698a-453e-9294-05ade0664d9c", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "O'HARA MARISA", - "timestamp": "2017-05-05" + "user": "PAGAC FORREST", + "timestamp": "2019-09-27" }, { + "uuid": "c792ee3d-5164-4830-a4b5-4f0fb0324187", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "WISOZK NELLIE", - "timestamp": "2020-03-30" + "user": "ROHAN FREDERIC", + "timestamp": "2019-07-24" + }, + { + "uuid": "55acc476-e21c-430f-b9cb-7ff2a7ee8b51", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "WILKINSON DAMIAN", + "timestamp": "2015-04-12" } ], "associatedSites": [ { - "dateNoted": "2014-07-28", - "notes": "", - "parcelID": "18428", - "siteID": "16677", - "siteRegistry": true - }, - { - "dateNoted": "2023-06-28", + "uuid": "e9ad7cee-3d87-4f99-9ac4-81b0c5e2f683", + "dateNoted": "2022-04-27", "notes": "", - "parcelID": "18765", - "siteID": "16305", - "siteRegistry": true + "parcelID": "20664", + "siteID": "20380", + "siteRegistry": false } ] }, { - "uuid": "4ffe4946-a259-4a08-8f06-7fe00210e27d", - "siteID": 18687, - "address": "8373 Heaney Ridges", - "latitude": 58.7246, - "longitude": -124.4109, - "lastUpdated": "2023-03-30", - "city": "South Letha", - "region": "Cariboo", - "victoriaFile": "26250-20/4791", + "uuid": "a7007ff7-aa38-42f0-8ede-69a29870f3d6", + "siteID": 15914, + "address": "555 Rau Neck", + "latitude": 50.2831, + "longitude": -125.2549, + "lastUpdated": "2023-05-23", + "city": "New Syble", + "region": "Mainland/Southwest", + "victoriaFile": "26250-20/16861", "regionalFile": "N/A", "parcelIDs": [ - 9246962, - 7043039, - 1322665, - 410747, - 6481171 + 2681710, + 2373636, + 6140777, + 1386032, + 7627194 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2016-06-27", - "completed": "2014-06-06", - "initiated": "2023-01-05", - "ministryContact": "SCHMIDT LEIF", + "uuid": "7acde7ab-c919-46d2-9d12-b28661af4276", + "createdAt": "2016-08-27", + "completed": "2022-08-11", + "initiated": "2022-03-07", + "ministryContact": "DOUGLAS-HICKLE JUWAN", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -24682,23 +28913,26 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "uuid": "993afe01-6351-447f-b98d-1f5811730679", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": false }, { + "uuid": "f13f6835-6c52-4a3b-af99-efe02d0d7526", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2017-03-05", - "completed": "2023-07-10", - "initiated": "2020-03-19", - "ministryContact": "GREEN JEAN", + "uuid": "ba01d90b-0913-42d4-b802-0f65b5308627", + "createdAt": "2021-11-19", + "completed": "2020-10-29", + "initiated": "2014-10-02", + "ministryContact": "KUVALIS MARLEN", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -24707,34 +28941,96 @@ ], "notationParticipants": [ { + "uuid": "1b7cb4f5-83f9-4f6d-b4ee-122a14845835", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true }, { + "uuid": "2a358110-0c33-4cc4-8bee-b7e541a55966", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "1e6d77b4-37fc-4e92-acf4-6a22b7272e69", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": true + }, + { + "uuid": "38a4ee4c-3dfb-4814-8c59-82a7ae41c9ee", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false } ], - "siteRegistry": true - } - ], - "participants": [ + "siteRegistry": false + }, { - "name": "IPSUM", - "endDate": "2014-03-07", - "startDate": "2019-10-21", + "uuid": "0b3cb872-5226-4335-95f4-ecfd83811e07", + "createdAt": "2014-12-24", + "completed": "2020-07-14", + "initiated": "2017-10-29", + "ministryContact": "SCHULIST VERNON", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "uuid": "5a15880c-1897-4201-8ec1-0a6bf1a8342c", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "18294ab7-d06f-4365-a7b0-466483c45901", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "uuid": "d99f3aaf-974f-40e3-87fc-26b8d9430161", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "da099571-413f-492d-99ff-8e04b0c462b5", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "uuid": "2a9e0b82-1e15-4d00-b9f6-eaf9a0607acf", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + } + ], + "participants": [ + { + "uuid": "39e59e5d-7fdc-4aa5-a341-e312682de07a", + "name": "IPSUM", + "endDate": "2016-08-20", + "startDate": "2018-07-30", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": false }, { - "name": "IPSUM", - "endDate": "2022-06-13", - "startDate": "2018-10-18", + "uuid": "96a10e25-a8a5-4b18-97f8-486e3717007c", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2022-09-20", + "startDate": "2014-06-17", "notes": "", "roles": [ "ORGANIZATION" @@ -24744,77 +29040,88 @@ ], "suspectLandUses": [ { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2020-10-18 (described on Site Profile dated 2020-10-18)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "uuid": "0c3cbb07-9eaa-43b1-b3e5-fc418f3128ef", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2015-09-22 (described on Site Profile dated 2015-09-22)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { + "uuid": "40e16925-1c43-4832-9d5d-bb25a9886cf4", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-06-11 (described on Site Profile dated 2016-06-11)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "notes": "INSERTED FOR SITE PROFILE DATED 2019-12-05 (described on Site Profile dated 2019-12-05)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "uuid": "d3a24b13-5e86-43f9-96f3-d9121e39123d", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2015-06-10 (described on Site Profile dated 2015-06-10)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "uuid": "0a454882-7053-4bf1-80f7-93e4de598da9", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2016-01-04 (described on Site Profile dated 2016-01-04)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { + "uuid": "ff4511c4-a594-44c8-abfa-c00dcb3fc37b", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-03-19 (described on Site Profile dated 2022-03-19)", + "notes": "INSERTED FOR SITE PROFILE DATED 2017-08-07 (described on Site Profile dated 2017-08-07)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], "parcelDescriptions": [ { + "uuid": "e47ca6f4-d48c-482e-8acc-8776efaa63f7", "siteRegistry": false, - "dateNoted": "2023-01-18", - "parcelID": "16278", - "crownLandUsePIN": "20274", - "crownLandFileNumber": "18119", - "landDescription": "LOT 2 OF LOT 2 BLOCK 5 DISTRICT LOT 1 PLAN 5622" + "dateNoted": "2017-02-18", + "parcelID": "20865", + "crownLandUsePIN": "15550", + "crownLandFileNumber": "18887", + "landDescription": "LOT 3 OF LOT 3 BLOCK 1 DISTRICT LOT 3 PLAN 5051" }, { - "siteRegistry": false, - "dateNoted": "2017-02-05", - "parcelID": "16134", - "crownLandUsePIN": "16486", - "crownLandFileNumber": "15302", - "landDescription": "LOT 3 OF LOT 3 BLOCK 5 DISTRICT LOT 2 PLAN 8931" + "uuid": "b2421ca6-daa4-44b2-bc03-585d77eb1f84", + "siteRegistry": true, + "dateNoted": "2014-05-30", + "parcelID": "20300", + "crownLandUsePIN": "16936", + "crownLandFileNumber": "16126", + "landDescription": "LOT 2 OF LOT 4 BLOCK 3 DISTRICT LOT 1 PLAN 4522" }, { - "siteRegistry": false, - "dateNoted": "2016-03-14", - "parcelID": "15844", - "crownLandUsePIN": "20699", - "crownLandFileNumber": "18669", - "landDescription": "LOT 2 OF LOT 5 BLOCK 4 DISTRICT LOT 5 PLAN 3422" + "uuid": "768bb26b-d06a-4ba5-b885-754c4bedc04a", + "siteRegistry": true, + "dateNoted": "2016-08-30", + "parcelID": "19958", + "crownLandUsePIN": "15226", + "crownLandFileNumber": "17117", + "landDescription": "LOT 2 OF LOT 5 BLOCK 4 DISTRICT LOT 5 PLAN 9663" } ], "siteDisclosures": [ { - "siteRegistry": false, - "dateReceived": "2023-02-05", - "dateCompleted": "2016-12-14", - "dateEntered": "2021-02-07", - "dateRegistrar": "2016-12-18", - "dateLocalAuthorityReceived": "2019-11-28", - "summary": "Laborum assumenda est quam exercitationem aperiam quos ipsam cupiditate reiciendis.", - "informationUsed": "Perferendis quidem eos.\nRem dolores ut provident deleniti aut voluptate eum illum adipisci.\nSint repellendus tempore eligendi.\nUnde beatae non modi.", - "pastOrPresentOrders": "Illo vitae ullam error aliquam.", + "uuid": "41035106-7c8c-4b40-a052-d7be4bb59e23", + "siteRegistry": true, + "dateReceived": "2014-02-28", + "dateCompleted": "2015-05-26", + "dateEntered": "2015-12-16", + "dateRegistrar": "2015-12-01", + "dateLocalAuthorityReceived": "2018-01-26", + "summary": "Eius maxime quidem magni molestiae cumque hic.", + "informationUsed": "Consequuntur numquam dolorem.\nAliquam consectetur aliquam voluptatibus deleniti voluptatem iste.\nAt sapiente id porro vel necessitatibus error cum soluta.", + "pastOrPresentOrders": "Consequuntur mollitia quos maxime.\nTotam repudiandae expedita quis maiores itaque quis libero.\nNon molestias laudantium.", "commercialAndIndustrialPurposes": [ { + "uuid": "773a9d46-ceec-4f7a-bd21-92d39ea0cf89", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false }, { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true - }, - { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true - }, - { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "uuid": "ed88c99b-501a-4b19-91eb-6a4813fdff66", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true } ] @@ -24822,84 +29129,93 @@ ], "activityLog": [ { - "siteRegistry": false, + "uuid": "e30c332d-8c6b-4ac8-b99a-1f4e064bb1c7", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "CARTWRIGHT RAMON", - "timestamp": "2019-11-25" + "user": "BECKER EVALYN", + "timestamp": "2018-05-05" }, { - "siteRegistry": true, + "uuid": "0f7755bb-c81c-49da-a845-4e9e0cac51f1", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "STOLTENBERG RUSTY", - "timestamp": "2021-06-01" + "user": "SPENCER-RYAN JOANA", + "timestamp": "2014-09-22" }, { + "uuid": "358b17a8-670d-4be0-9a4b-4ecf77e64640", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "RATKE CLYDE", - "timestamp": "2019-03-31" + "user": "WUCKERT JANIS", + "timestamp": "2016-03-29" }, { + "uuid": "5fe1bf98-95bc-4d71-813f-7e4a60ecefd0", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "STEUBER ZOE", - "timestamp": "2023-09-24" + "user": "MACGYVER MITTIE", + "timestamp": "2016-11-18" }, { - "siteRegistry": false, + "uuid": "bfc03b25-0e7b-42f9-a2ed-08dd397c65a0", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "FERRY FELIX", - "timestamp": "2015-02-08" + "user": "BERGNAUM MICAH", + "timestamp": "2013-11-17" }, { + "uuid": "3b2a89b1-7532-488e-85c5-a03bb47e1067", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "LEUSCHKE EVELYN", - "timestamp": "2014-07-27" + "user": "HARBER GIDEON", + "timestamp": "2021-04-04" } ], "associatedSites": [ { - "dateNoted": "2023-09-03", + "uuid": "b60d602d-a8fc-40f0-a464-17e044d51dd5", + "dateNoted": "2022-07-09", "notes": "", - "parcelID": "19767", - "siteID": "15284", - "siteRegistry": false + "parcelID": "18190", + "siteID": "19893", + "siteRegistry": true }, { - "dateNoted": "2022-10-11", + "uuid": "3d828f9f-19ed-4171-aa81-5d0453abcd25", + "dateNoted": "2014-03-27", "notes": "", - "parcelID": "15428", - "siteID": "19346", - "siteRegistry": false + "parcelID": "15970", + "siteID": "17483", + "siteRegistry": true } ] }, { - "uuid": "e3cd74b8-be45-4fdb-94cd-b1f2d0bdabc7", - "siteID": 15211, - "address": "75738 Francis Ford", - "latitude": 56.0871, - "longitude": -138.3613, - "lastUpdated": "2017-04-28", - "city": "Lake Arnoldo", - "region": " North Coast", - "victoriaFile": "26250-20/17733", + "uuid": "d07a269f-403c-4eeb-8c2b-a1e818e5c322", + "siteID": 15433, + "address": "76579 Larson Turnpike", + "latitude": 55.6516, + "longitude": -137.3857, + "lastUpdated": "2018-12-17", + "city": "Wellingtonhaven", + "region": "Kootenay", + "victoriaFile": "26250-20/1092", "regionalFile": "N/A", "parcelIDs": [ - 9187257, - 8780161, - 7183945, - 1938227, - 671584 + 4465644, + 5751224, + 9623451, + 6124651, + 3854729 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2016-09-07", - "completed": "2014-04-04", - "initiated": "2021-05-15", - "ministryContact": "NICOLAS FLETA", + "uuid": "31ce07fa-32de-4c4d-9112-3948f6fd32fb", + "createdAt": "2018-06-06", + "completed": "2020-08-13", + "initiated": "2019-10-10", + "ministryContact": "YOST RYLEIGH", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -24908,58 +29224,38 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { + "uuid": "4d8cfe05-f333-4d6f-ac00-317cd75c1738", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { + "uuid": "23521c03-8830-46f9-a023-b6029959f573", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false }, { + "uuid": "9c4b289a-2897-42ee-95e9-39d5c467d9b2", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - } - ], - "siteRegistry": false - }, - { - "createdAt": "2019-03-10", - "completed": "2021-03-12", - "initiated": "2016-01-25", - "ministryContact": "DICKENS KIANNA", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "uuid": "575a7c91-7638-45e3-a4c6-c62a8871d976", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2016-06-04", - "completed": "2017-05-01", - "initiated": "2015-02-08", - "ministryContact": "MONAHAN DOMENICO", + "uuid": "d98f75c1-39e9-4bbb-b956-a0218e6d4ac2", + "createdAt": "2016-02-18", + "completed": "2015-08-17", + "initiated": "2016-10-24", + "ministryContact": "KIRLIN SHANIYA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -24968,33 +29264,38 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", + "uuid": "b568d783-a95d-4f3f-ba7a-18e3f5bbe995", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", + "uuid": "a805386e-a80c-400d-a0b2-b30fa3fd255c", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false }, { + "uuid": "43d62d8c-b78e-47cd-9c48-febdb38ab56e", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", + "uuid": "de5cf17d-75c0-49fa-adcd-c42dae49b428", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2014-12-04", - "completed": "2017-02-16", - "initiated": "2014-04-17", - "ministryContact": "MCLAUGHLIN GENEVIEVE", + "uuid": "4d4f7b21-9498-4d88-a7c9-c161aceed2f9", + "createdAt": "2022-01-16", + "completed": "2017-08-02", + "initiated": "2015-10-08", + "ministryContact": "ZIEMANN ARVILLA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -25003,14 +29304,16 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", + "uuid": "bc9af4aa-ca63-4089-a89a-1c113c82f6ba", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "cf402b82-3033-4c3e-95a5-73a5d94dd4e7", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true } ], "siteRegistry": true @@ -25018,29 +29321,10 @@ ], "participants": [ { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2016-03-03", - "startDate": "2023-04-26", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2023-04-13", - "startDate": "2015-11-28", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2021-03-14", - "startDate": "2020-07-02", + "uuid": "9c548e45-de08-45d8-9cfc-3774b713950f", + "name": "AMET, DOLOR SIT", + "endDate": "2021-08-24", + "startDate": "2022-06-06", "notes": "", "roles": [ "ORGANIZATION" @@ -25048,218 +29332,271 @@ "siteRegistry": false }, { - "name": "AMET, DOLOR SIT", - "endDate": "2022-07-17", - "startDate": "2023-04-09", + "uuid": "19d1d553-630a-4ab0-8d54-e80ca9490555", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2021-08-16", + "startDate": "2013-11-01", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": false - }, - { - "name": "IPSUM", - "endDate": "2018-03-16", - "startDate": "2015-12-12", - "notes": "", - "roles": [ - "ORGANIZATION" - ], "siteRegistry": true } ], "suspectLandUses": [ { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-03-23 (described on Site Profile dated 2016-03-23)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "uuid": "279466a2-7efb-4e8f-a1e1-fe076f06de9b", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2017-08-22 (described on Site Profile dated 2017-08-22)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { + "uuid": "a990472f-20ff-4662-b46f-e5c26dccbcf1", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-07-24 (described on Site Profile dated 2014-07-24)", + "notes": "INSERTED FOR SITE PROFILE DATED 2015-05-06 (described on Site Profile dated 2015-05-06)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "uuid": "f05e4245-ea6e-443b-bc60-14148fd13c61", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2018-08-27 (described on Site Profile dated 2018-08-27)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "uuid": "bb304997-8d69-4516-bd50-c6dcd0552ccb", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2019-07-04 (described on Site Profile dated 2019-07-04)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], "parcelDescriptions": [ { - "siteRegistry": false, - "dateNoted": "2022-08-03", - "parcelID": "16995", - "crownLandUsePIN": "18617", - "crownLandFileNumber": "18694", - "landDescription": "LOT 4 OF LOT 1 BLOCK 2 DISTRICT LOT 4 PLAN 6142" + "uuid": "47cde876-290e-437a-b928-77653cae67ef", + "siteRegistry": true, + "dateNoted": "2013-11-26", + "parcelID": "19809", + "crownLandUsePIN": "15808", + "crownLandFileNumber": "20830", + "landDescription": "LOT 2 OF LOT 5 BLOCK 3 DISTRICT LOT 1 PLAN 6346" }, { + "uuid": "61e561ca-3406-4734-8984-6c49baca914d", "siteRegistry": false, - "dateNoted": "2022-10-09", - "parcelID": "19796", - "crownLandUsePIN": "18524", - "crownLandFileNumber": "15545", - "landDescription": "LOT 1 OF LOT 5 BLOCK 3 DISTRICT LOT 5 PLAN 4431" + "dateNoted": "2015-04-06", + "parcelID": "19638", + "crownLandUsePIN": "15442", + "crownLandFileNumber": "18999", + "landDescription": "LOT 2 OF LOT 5 BLOCK 1 DISTRICT LOT 2 PLAN 4552" }, { - "siteRegistry": true, - "dateNoted": "2019-11-28", - "parcelID": "19272", - "crownLandUsePIN": "17216", - "crownLandFileNumber": "19019", - "landDescription": "LOT 4 OF LOT 5 BLOCK 3 DISTRICT LOT 1 PLAN 5461" + "uuid": "c5912c60-93e6-4cd1-aa54-2354c91ed86b", + "siteRegistry": false, + "dateNoted": "2013-12-01", + "parcelID": "19930", + "crownLandUsePIN": "16472", + "crownLandFileNumber": "19188", + "landDescription": "LOT 3 OF LOT 4 BLOCK 2 DISTRICT LOT 5 PLAN 4526" }, { - "siteRegistry": false, - "dateNoted": "2014-10-17", - "parcelID": "16201", - "crownLandUsePIN": "19628", - "crownLandFileNumber": "17892", - "landDescription": "LOT 4 OF LOT 5 BLOCK 3 DISTRICT LOT 1 PLAN 6009" + "uuid": "1b0abb45-1eae-40cd-9a99-78a47b9b5b55", + "siteRegistry": true, + "dateNoted": "2021-08-06", + "parcelID": "17538", + "crownLandUsePIN": "17687", + "crownLandFileNumber": "19125", + "landDescription": "LOT 3 OF LOT 2 BLOCK 2 DISTRICT LOT 5 PLAN 6947" } ], "siteDisclosures": [ { + "uuid": "bccf9007-f981-4176-a4af-75b875ed9be2", "siteRegistry": true, - "dateReceived": "2022-05-22", - "dateCompleted": "2019-04-17", - "dateEntered": "2018-04-20", - "dateRegistrar": "2023-05-24", - "dateLocalAuthorityReceived": "2014-03-02", - "summary": "Aut ipsa iure dolores dolores deleniti.\nSimilique veniam libero recusandae dolor.\nUllam illum in deserunt officia eum ratione quam asperiores fugiat.", - "informationUsed": "Modi culpa explicabo nemo.\nEt ea quia rem culpa soluta dicta molestias.\nVoluptates aut quasi ipsam temporibus fugit fugiat.", - "pastOrPresentOrders": "Sequi aperiam autem perferendis aspernatur.\nRecusandae animi cupiditate beatae enim consequuntur iusto repellat.\nPraesentium eum quibusdam iste odit officia incidunt laudantium.", + "dateReceived": "2015-11-29", + "dateCompleted": "2022-03-17", + "dateEntered": "2014-06-24", + "dateRegistrar": "2019-07-13", + "dateLocalAuthorityReceived": "2022-02-09", + "summary": "Reiciendis veritatis vero tempora beatae.\nPerferendis culpa illo esse aliquid dolorum in maiores corporis.\nNostrum id et.", + "informationUsed": "Vel minus cumque voluptatum excepturi excepturi laboriosam praesentium beatae quaerat.\nSaepe consectetur quod distinctio ducimus.\nNihil deleniti eaque.", + "pastOrPresentOrders": "Enim voluptatem quae alias vel.\nAperiam nisi corrupti accusamus.", "commercialAndIndustrialPurposes": [ { + "uuid": "b58665ec-4c87-4794-bd39-f34601aee983", "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "uuid": "ae96eeff-2ab6-42b3-87b2-321594e93d23", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true + "siteRegistry": false }, { - "scheduleReference": "F1*", + "uuid": "71b045d6-c90a-4088-85a7-80e2c5457369", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false - }, + } + ] + }, + { + "uuid": "2fcb6abe-b401-44a8-adc4-b2ae8a94ec7d", + "siteRegistry": false, + "dateReceived": "2018-03-26", + "dateCompleted": "2017-10-04", + "dateEntered": "2016-08-07", + "dateRegistrar": "2017-10-16", + "dateLocalAuthorityReceived": "2018-12-31", + "summary": "Cumque animi quaerat ducimus.", + "informationUsed": "Nisi ea praesentium.\nOccaecati maxime aperiam vel doloremque ab.\nOdio ipsam corporis.", + "pastOrPresentOrders": "Illo nam numquam architecto maiores repudiandae nostrum.\nEveniet quae consequuntur provident minus.\nAspernatur libero alias vero expedita.", + "commercialAndIndustrialPurposes": [ { + "uuid": "5122203f-f46e-4e9a-bc6c-7525c1192fcf", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { - "scheduleReference": "F2*", + "uuid": "878f174f-063e-49f3-8218-9e6160981239", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "uuid": "9868d430-68ca-4416-b1e6-46cb16ffd771", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true + }, + { + "uuid": "8a12c031-7a8d-438c-94bc-b2aae8b6fbac", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false } ] } ], "activityLog": [ { - "siteRegistry": true, + "uuid": "ede6f4cc-c8ac-4628-a75f-b039b79fc86b", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "GRIMES-CASSIN AYLA", - "timestamp": "2019-05-12" + "user": "COLE ERIC", + "timestamp": "2020-09-21" }, { + "uuid": "5f1a5d90-475d-4ed9-8f6f-297f3313f8ca", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "WAELCHI YAZMIN", - "timestamp": "2021-10-31" + "user": "ERNSER ELISEO", + "timestamp": "2022-01-28" }, { + "uuid": "ab8067d1-cd7f-4670-8677-3c5fc9408f01", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "HESSEL PEARLINE", - "timestamp": "2021-10-21" - }, - { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "GERLACH LISA", - "timestamp": "2020-05-18" + "user": "LITTEL AGLAE", + "timestamp": "2021-07-07" }, { - "siteRegistry": true, + "uuid": "f05af3b9-3b4d-40a3-badd-3d402ce01923", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "CREMIN ANABEL", - "timestamp": "2019-08-04" + "user": "MILLER JOY", + "timestamp": "2022-04-20" }, { + "uuid": "4760b951-8d9c-4115-a310-8d24fb4a8da0", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "QUITZON UNIQUE", - "timestamp": "2022-03-12" + "user": "MEDHURST MUHAMMAD", + "timestamp": "2021-02-28" }, { - "siteRegistry": true, + "uuid": "22309937-2b7d-41b2-8ea1-36a6357ff633", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "GLEICHNER RAMIRO", - "timestamp": "2014-02-07" + "user": "SWANIAWSKI JONATAN", + "timestamp": "2015-01-11" }, { + "uuid": "e55fb31b-e775-4196-ba49-a1c46c22f228", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "FRIESEN WILFORD", - "timestamp": "2016-03-28" + "user": "RUNOLFSSON VERGIE", + "timestamp": "2018-07-16" }, { + "uuid": "77818bde-33b9-4933-b888-c0628fa8acb5", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "SCHIMMEL ELINOR", - "timestamp": "2020-09-26" + "user": "ABERNATHY KAILEY", + "timestamp": "2016-05-31" }, { + "uuid": "6c49903b-7967-4bf8-9746-5a804644f58f", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "SCHUPPE RUSSEL", - "timestamp": "2023-06-03" + "user": "RYAN ADRIAN", + "timestamp": "2020-03-14" } ], "associatedSites": [ { - "dateNoted": "2020-10-30", + "uuid": "00483893-d7cd-4d56-906b-5d868d318f13", + "dateNoted": "2023-01-11", "notes": "", - "parcelID": "16785", - "siteID": "15660", + "parcelID": "20221", + "siteID": "18428", "siteRegistry": true }, { - "dateNoted": "2018-09-28", + "uuid": "def83bdc-7fac-4d7b-aa7e-31168d5a3cb0", + "dateNoted": "2021-06-09", "notes": "", - "parcelID": "18291", - "siteID": "15462", + "parcelID": "15290", + "siteID": "17933", "siteRegistry": true }, { - "dateNoted": "2014-09-04", + "uuid": "7196881e-f5c7-4cce-a984-cc9ef768c85e", + "dateNoted": "2016-11-09", "notes": "", - "parcelID": "20249", - "siteID": "15563", + "parcelID": "20575", + "siteID": "19196", "siteRegistry": false } ] }, { - "uuid": "3d4020d6-d90e-40ca-b1a1-6cafdd5a3e07", - "siteID": 17950, - "address": "87954 Renner Row", - "latitude": 58.4746, - "longitude": -137.8449, - "lastUpdated": "2014-05-20", - "city": "Alyciatown", - "region": "Mainland/Southwest", - "victoriaFile": "26250-20/2398", + "uuid": "73a76398-567d-47ea-bdaa-87bbb2a3e54e", + "siteID": 20683, + "address": "227 Marshall Extension", + "latitude": 55.711, + "longitude": -126.6417, + "lastUpdated": "2018-06-04", + "city": "South Eloise", + "region": " North Coast", + "victoriaFile": "26250-20/1968", "regionalFile": "N/A", "parcelIDs": [ - 254953, - 1001600, - 2767092, - 3377724, - 3191102 + 5860218, + 6791177, + 9907152, + 7001947, + 4818324 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2016-07-15", - "completed": "2017-11-01", - "initiated": "2015-03-03", - "ministryContact": "HILLS JACLYN", + "uuid": "8146ebec-7e84-443b-8d57-c7a30e507722", + "createdAt": "2020-04-30", + "completed": "2018-04-09", + "initiated": "2019-09-29", + "ministryContact": "KUB BRENDAN", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -25268,28 +29605,32 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "a1927248-9956-4508-a562-ad76ee0eb413", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false }, { + "uuid": "869f7da6-e36e-4d64-b450-7f6ab724ee96", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false }, { + "uuid": "8102f228-2789-4100-9ac0-31bbb2d9b7a6", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false } ], "siteRegistry": true }, { - "createdAt": "2016-12-08", - "completed": "2021-12-29", - "initiated": "2022-06-16", - "ministryContact": "RUNTE BERYL", + "uuid": "1b7d7f80-c765-4a19-9545-793fa341662a", + "createdAt": "2020-06-13", + "completed": "2016-10-22", + "initiated": "2017-04-28", + "ministryContact": "RUSSEL JEFFRY", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -25298,38 +29639,32 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { + "uuid": "e80ad627-9dc3-4545-830f-7c445695852d", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "uuid": "bf7738c4-1102-425f-8be3-385f3f218200", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", + "uuid": "6d80506b-f1ac-473b-8e9b-62638d3e2fd9", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false } ], "siteRegistry": true }, { - "createdAt": "2020-01-05", - "completed": "2017-12-10", - "initiated": "2018-09-17", - "ministryContact": "RUTHERFORD SHANY", + "uuid": "98fe7323-460f-4c60-8e9b-03d872cfe7bc", + "createdAt": "2023-04-14", + "completed": "2023-02-09", + "initiated": "2020-07-07", + "ministryContact": "LEDNER KARI", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -25338,28 +29673,26 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { + "uuid": "ae3df988-dfbc-4403-af88-37ab8793e7ab", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { + "uuid": "4ff87adc-f6ae-4f3a-8798-803b6d5ed984", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2014-09-13", - "completed": "2015-06-27", - "initiated": "2023-05-19", - "ministryContact": "KOELPIN BERNADINE", + "uuid": "7200eab0-5d34-4d14-805c-f8ca959d4577", + "createdAt": "2022-11-09", + "completed": "2017-04-08", + "initiated": "2019-01-30", + "ministryContact": "LOCKMAN ANAIS", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -25368,19 +29701,16 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { + "uuid": "7e019541-3b4c-4f7f-8f80-370b954581b4", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true }, { + "uuid": "700bf0cd-5b2a-4251-ab54-10e356a6795f", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true + "role": "SUBMITTED BY", + "siteRegistry": false } ], "siteRegistry": true @@ -25388,234 +29718,229 @@ ], "participants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2014-03-28", - "startDate": "2020-06-23", + "uuid": "4c15af76-c672-43fa-9432-17d783aee19b", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2023-09-10", + "startDate": "2021-03-21", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": true }, { + "uuid": "3983368c-7f7e-4543-be83-ea2bbff6c468", "name": "AMET, DOLOR SIT", - "endDate": "2021-02-11", - "startDate": "2018-11-18", + "endDate": "2023-07-22", + "startDate": "2018-12-25", "notes": "", "roles": [ "ORGANIZATION" ], "siteRegistry": false - }, - { - "name": "AMET, DOLOR SIT", - "endDate": "2017-10-11", - "startDate": "2014-03-19", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": true } ], "suspectLandUses": [ { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-06-28 (described on Site Profile dated 2017-06-28)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" - }, - { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-09-15 (described on Site Profile dated 2022-09-15)", + "uuid": "0dfc337b-633f-4475-a9fe-3b1eed61ade0", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2019-01-23 (described on Site Profile dated 2019-01-23)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { + "uuid": "8186ec4d-23fb-4cab-9793-1c7a4a4b8c1c", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-12-04 (described on Site Profile dated 2016-12-04)", + "notes": "INSERTED FOR SITE PROFILE DATED 2015-12-12 (described on Site Profile dated 2015-12-12)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" - }, - { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-02-05 (described on Site Profile dated 2022-02-05)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], "parcelDescriptions": [ { - "siteRegistry": true, - "dateNoted": "2018-03-05", - "parcelID": "15910", - "crownLandUsePIN": "19458", - "crownLandFileNumber": "15799", - "landDescription": "LOT 3 OF LOT 4 BLOCK 4 DISTRICT LOT 5 PLAN 4560" - }, - { - "siteRegistry": true, - "dateNoted": "2016-04-19", - "parcelID": "17308", - "crownLandUsePIN": "17131", - "crownLandFileNumber": "15663", - "landDescription": "LOT 3 OF LOT 5 BLOCK 4 DISTRICT LOT 5 PLAN 7773" + "uuid": "84ec5eee-376b-4548-af61-f0ec21de2602", + "siteRegistry": false, + "dateNoted": "2022-02-01", + "parcelID": "19397", + "crownLandUsePIN": "16503", + "crownLandFileNumber": "17041", + "landDescription": "LOT 5 OF LOT 1 BLOCK 3 DISTRICT LOT 3 PLAN 3028" }, { - "siteRegistry": true, - "dateNoted": "2015-01-09", - "parcelID": "18448", - "crownLandUsePIN": "17553", - "crownLandFileNumber": "18797", - "landDescription": "LOT 2 OF LOT 4 BLOCK 1 DISTRICT LOT 2 PLAN 6916" + "uuid": "d37f87db-bf11-4dfd-8096-7f32c0cd2d2a", + "siteRegistry": false, + "dateNoted": "2015-09-17", + "parcelID": "18041", + "crownLandUsePIN": "19622", + "crownLandFileNumber": "17221", + "landDescription": "LOT 5 OF LOT 5 BLOCK 1 DISTRICT LOT 3 PLAN 2920" } ], "siteDisclosures": [ { - "siteRegistry": true, - "dateReceived": "2022-10-30", - "dateCompleted": "2014-09-30", - "dateEntered": "2019-05-08", - "dateRegistrar": "2016-04-01", - "dateLocalAuthorityReceived": "2013-11-02", - "summary": "Nulla maiores accusantium voluptate magnam quidem delectus non vitae.", - "informationUsed": "Error vitae sequi quasi quos iure dolorum ex exercitationem repellat.\nReprehenderit quaerat eligendi iste sint quasi quas non.\nTemporibus odio atque odit tempore ratione.", - "pastOrPresentOrders": "Nihil officia deleniti.\nRepellendus voluptate veritatis quo.", + "uuid": "025abea9-d5a3-418d-9cd8-5c11a95fb7eb", + "siteRegistry": false, + "dateReceived": "2019-09-26", + "dateCompleted": "2023-02-01", + "dateEntered": "2014-01-03", + "dateRegistrar": "2017-06-22", + "dateLocalAuthorityReceived": "2018-11-08", + "summary": "Ullam ratione repudiandae ex magni ipsum quisquam.", + "informationUsed": "Culpa natus numquam recusandae.\nPariatur perspiciatis quae repellendus quae rerum provident.\nRatione possimus aliquam impedit porro corporis deserunt doloribus.\nRerum dolores inventore sed quidem nesciunt laudantium inventore facilis corporis.\nFugiat omnis magni dolores.", + "pastOrPresentOrders": "Laboriosam impedit enim eius quae sequi.\nOmnis eaque architecto iure reiciendis earum aut neque.", "commercialAndIndustrialPurposes": [ { - "scheduleReference": "F1*", + "uuid": "a87c815b-e08c-46e8-bf0b-5b6df3513349", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { + "uuid": "ad1a2040-478b-4afa-a886-8c897f74a464", "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true }, { + "uuid": "c0020d31-6ccd-4988-b7ab-04201f9e5d3c", "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false }, { - "scheduleReference": "F2*", + "uuid": "3d7e393a-2633-4a3e-9da4-8804b795a271", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true + "siteRegistry": false } ] }, { + "uuid": "ea2515cb-213c-4cb6-9d65-7981dc720e03", "siteRegistry": false, - "dateReceived": "2020-07-01", - "dateCompleted": "2022-11-18", - "dateEntered": "2016-10-29", - "dateRegistrar": "2018-06-28", - "dateLocalAuthorityReceived": "2015-10-12", - "summary": "Sequi voluptas debitis iure consectetur.", - "informationUsed": "Nihil dolorem error voluptate.\nSimilique facilis laboriosam perferendis impedit sit amet.\nReprehenderit nisi pariatur dignissimos facilis illum.\nVoluptatum fugit ipsa.\nMagni adipisci hic blanditiis ducimus.", - "pastOrPresentOrders": "Reiciendis totam optio provident maiores officiis.\nRatione et numquam recusandae deleniti quos provident.\nInventore ducimus recusandae eligendi doloremque veniam tempore consequuntur corrupti ex.", + "dateReceived": "2017-04-17", + "dateCompleted": "2015-08-01", + "dateEntered": "2021-08-29", + "dateRegistrar": "2017-01-08", + "dateLocalAuthorityReceived": "2020-03-19", + "summary": "Quae quos aut in tenetur voluptate.\nPerferendis dolores amet.\nReprehenderit eum minus perspiciatis.", + "informationUsed": "Id quas enim quis eos eos.\nOdio inventore excepturi error dolore tempora.\nMaiores ratione odio earum voluptates veritatis fugiat ut illum.\nEnim nam occaecati facilis quisquam.", + "pastOrPresentOrders": "Animi in eaque.\nRepudiandae doloribus rem et eligendi quas.\nHic dolorum quidem ipsum ea labore quae esse.", "commercialAndIndustrialPurposes": [ { - "scheduleReference": "F1*", + "uuid": "4276184a-5a8f-4c1b-af09-8286debaf4a2", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true + "siteRegistry": false }, { + "uuid": "d72961e5-3e16-4a1f-90ed-b49a74f66a7f", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true + }, + { + "uuid": "23e78132-b207-4c40-98ec-be465ec23de4", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false } ] } ], "activityLog": [ { + "uuid": "95cf6cd9-363b-4e88-83a7-d3a169de1bb5", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "ZULAUF-HARBER ROSEMARIE", - "timestamp": "2018-09-26" + "user": "TORP TIMMOTHY", + "timestamp": "2013-10-26" }, { - "siteRegistry": true, + "uuid": "93a1e694-38ea-43d7-8a4d-d754e37508b6", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "BEDNAR CLEMENS", - "timestamp": "2021-08-03" + "user": "HANSEN ALDA", + "timestamp": "2021-04-11" }, { + "uuid": "287a6443-2634-4e36-a92e-e619b056ebb0", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "YOST KAILYN", - "timestamp": "2018-01-17" + "user": "WALSH ALDEN", + "timestamp": "2018-11-25" }, { + "uuid": "41a3a180-7e7f-428d-9698-f6914482f8cf", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "MRAZ FAE", - "timestamp": "2013-10-30" + "user": "SCHUPPE JUDGE", + "timestamp": "2020-05-06" }, { + "uuid": "e3fd13c4-cfef-4f1d-bf3e-2cdbc2236868", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "STOLTENBERG GAYLE", - "timestamp": "2018-07-29" + "user": "DOOLEY SANTOS", + "timestamp": "2016-06-26" }, { + "uuid": "4a416443-676f-4525-af28-6579b367605d", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "WALKER RAY", - "timestamp": "2019-06-16" + "user": "SCHULIST ESTEFANIA", + "timestamp": "2021-04-18" }, { + "uuid": "013b351f-2cbb-49c8-99a5-8ccc748282dd", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "POWLOWSKI JUVENAL", - "timestamp": "2021-07-20" + "user": "SCHUMM HOLLIS", + "timestamp": "2019-02-17" }, { + "uuid": "1f86f3d5-ab11-435a-91e6-ca9631e970f2", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "ROHAN RACHAEL", - "timestamp": "2018-05-18" + "user": "POUROS TREVER", + "timestamp": "2023-04-20" } ], "associatedSites": [ { - "dateNoted": "2019-11-12", - "notes": "", - "parcelID": "18643", - "siteID": "15761", - "siteRegistry": false - }, - { - "dateNoted": "2017-06-25", + "uuid": "c022627d-2a3e-4477-9432-0d8f3a37305f", + "dateNoted": "2022-11-20", "notes": "", - "parcelID": "18821", - "siteID": "17607", - "siteRegistry": false + "parcelID": "18779", + "siteID": "20154", + "siteRegistry": true } ] }, { - "uuid": "3121b6c3-f2bb-4796-b5d0-1c297d80e936", - "siteID": 15826, - "address": "695 McDermott Turnpike", - "latitude": 55.8181, - "longitude": -135.774, - "lastUpdated": "2014-06-11", - "city": "Romainemouth", - "region": "Thompson-Okanagan", - "victoriaFile": "26250-20/8812", + "uuid": "a9591033-b8cb-47c6-95a9-a088c2cde8be", + "siteID": 20013, + "address": "990 Anabel Road", + "latitude": 51.5927, + "longitude": -125.4879, + "lastUpdated": "2019-01-07", + "city": "Huelsfield", + "region": "Vancouver Island/Coast", + "victoriaFile": "26250-20/10742", "regionalFile": "N/A", "parcelIDs": [ - 7359671, - 810920, - 4738673, - 1888992, - 2993564 + 461706, + 511250, + 7538469, + 4999719, + 2439589 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2020-12-24", - "completed": "2022-03-05", - "initiated": "2014-12-23", - "ministryContact": "KOSS EDD", + "uuid": "46eed5d6-5dab-4e15-b68f-265732328813", + "createdAt": "2017-04-16", + "completed": "2020-05-20", + "initiated": "2014-06-09", + "ministryContact": "MCCULLOUGH ROSSIE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -25624,23 +29949,38 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", + "uuid": "00eea0eb-3ef9-4dba-b2f1-5798940fd962", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true }, { + "uuid": "87f59824-7c5a-478b-979a-41ca6b82d902", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "uuid": "ab87b208-84d8-4042-a264-c99fdd61f469", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": true + }, + { + "uuid": "6a721ebd-7ac7-4958-b1be-4c4ab8a02eb6", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false } ], "siteRegistry": false }, { - "createdAt": "2014-09-16", - "completed": "2019-10-15", - "initiated": "2022-01-02", - "ministryContact": "WISOKY CASSIE", + "uuid": "5ac888ac-f896-42f9-b7f9-787762a05e71", + "createdAt": "2023-02-04", + "completed": "2014-10-06", + "initiated": "2018-03-12", + "ministryContact": "LARKIN FLOYD", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -25649,23 +29989,44 @@ ], "notationParticipants": [ { + "uuid": "04a21cdb-4578-4249-9f21-e7f3054f73c7", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", + "uuid": "252436a6-565e-440d-b9f9-6fed22654913", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true + }, + { + "uuid": "3dbfc03e-d559-4366-8f7b-d97bdcbae52c", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "8d71900e-3cbb-46a6-82d4-277a8076ce04", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "ac6fdbab-a481-4bac-963f-d0741c303b64", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2014-11-18", - "completed": "2018-07-28", - "initiated": "2018-09-09", - "ministryContact": "BERGNAUM DARION", + "uuid": "0a1bae8b-48f0-459a-9e67-65b05c36408f", + "createdAt": "2023-07-15", + "completed": "2020-07-11", + "initiated": "2014-02-25", + "ministryContact": "POUROS-LEFFLER TYLER", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -25674,21 +30035,13 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { + "uuid": "d8f4d55a-7cfc-49ba-a008-6c7f0f9652f0", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true }, { + "uuid": "e6e32888-8c61-4081-acbe-dfe5d14bc76d", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false @@ -25699,19 +30052,21 @@ ], "participants": [ { - "name": "IPSUM", - "endDate": "2021-01-12", - "startDate": "2023-08-30", + "uuid": "f137d92b-ff36-4b6f-8679-82fce74e64a1", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2023-09-09", + "startDate": "2023-04-16", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": false }, { - "name": "IPSUM", - "endDate": "2021-04-16", - "startDate": "2017-01-28", + "uuid": "245d18b7-f13d-4407-81ce-f55461116725", + "name": "AMET, DOLOR SIT", + "endDate": "2020-03-14", + "startDate": "2020-09-27", "notes": "", "roles": [ "ORGANIZATION" @@ -25721,87 +30076,88 @@ ], "suspectLandUses": [ { + "uuid": "3f1f9f71-5ee7-4126-8702-e8a6de4931ea", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2013-12-15 (described on Site Profile dated 2013-12-15)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "uuid": "401f835a-690f-41a7-8e20-249d57fde3b5", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-02-14 (described on Site Profile dated 2018-02-14)", + "notes": "INSERTED FOR SITE PROFILE DATED 2023-05-15 (described on Site Profile dated 2023-05-15)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { + "uuid": "d83e7c8f-6f7c-4d50-842b-3c19161fb68b", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2020-02-03 (described on Site Profile dated 2020-02-03)", + "notes": "INSERTED FOR SITE PROFILE DATED 2023-01-08 (described on Site Profile dated 2023-01-08)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" - }, - { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-01-28 (described on Site Profile dated 2014-01-28)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], "parcelDescriptions": [ { + "uuid": "067d883e-37d1-4e01-a673-5334459ac496", "siteRegistry": true, - "dateNoted": "2022-06-22", - "parcelID": "20723", - "crownLandUsePIN": "20733", - "crownLandFileNumber": "16088", - "landDescription": "LOT 5 OF LOT 1 BLOCK 2 DISTRICT LOT 3 PLAN 8185" + "dateNoted": "2020-08-09", + "parcelID": "20280", + "crownLandUsePIN": "17716", + "crownLandFileNumber": "17831", + "landDescription": "LOT 2 OF LOT 4 BLOCK 3 DISTRICT LOT 1 PLAN 4940" }, { + "uuid": "a23af53f-daa2-4ca2-bc7b-62687699c262", "siteRegistry": true, - "dateNoted": "2014-03-09", - "parcelID": "18945", - "crownLandUsePIN": "19765", - "crownLandFileNumber": "19262", - "landDescription": "LOT 2 OF LOT 1 BLOCK 5 DISTRICT LOT 2 PLAN 5594" + "dateNoted": "2017-11-09", + "parcelID": "16873", + "crownLandUsePIN": "19019", + "crownLandFileNumber": "18276", + "landDescription": "LOT 2 OF LOT 5 BLOCK 1 DISTRICT LOT 1 PLAN 6742" + }, + { + "uuid": "1748ce49-6f53-4aa2-ba48-db90689a2c7e", + "siteRegistry": true, + "dateNoted": "2018-10-12", + "parcelID": "20109", + "crownLandUsePIN": "17890", + "crownLandFileNumber": "18151", + "landDescription": "LOT 1 OF LOT 4 BLOCK 5 DISTRICT LOT 4 PLAN 3296" } ], "siteDisclosures": [ { + "uuid": "d0dcde5a-08d5-4804-ac44-30c650e8aac9", "siteRegistry": false, - "dateReceived": "2014-06-27", - "dateCompleted": "2015-07-09", - "dateEntered": "2020-08-31", - "dateRegistrar": "2019-02-25", - "dateLocalAuthorityReceived": "2022-01-21", - "summary": "Vel laudantium hic quis ducimus deleniti.\nVoluptatum ex odio temporibus perferendis animi sed nobis.\nDoloremque odio harum ex quos dolorum ipsum repellat consectetur.", - "informationUsed": "Animi occaecati architecto harum modi ullam officiis.\nSaepe libero quidem dolorum.\nMaxime magni blanditiis nemo.", - "pastOrPresentOrders": "Facere nihil in possimus neque commodi sunt quod totam.\nTempora quibusdam dignissimos iusto perferendis esse.\nFacere id sapiente tempore quasi.", + "dateReceived": "2017-08-23", + "dateCompleted": "2018-02-01", + "dateEntered": "2021-01-02", + "dateRegistrar": "2014-05-28", + "dateLocalAuthorityReceived": "2017-03-17", + "summary": "Autem animi est et consectetur inventore reprehenderit maiores eum.\nSapiente assumenda pariatur totam eius eaque consequuntur cumque doloribus unde.\nIste nemo architecto provident quidem consectetur cupiditate beatae.", + "informationUsed": "Minus pariatur dolores nesciunt sunt facilis odit molestiae.\nQuam delectus autem iure commodi laudantium facere voluptatum quaerat velit.\nItaque eligendi officiis.\nHarum cum corrupti blanditiis.", + "pastOrPresentOrders": "Cupiditate corrupti accusamus.", "commercialAndIndustrialPurposes": [ { - "scheduleReference": "F1*", + "uuid": "4d12dca8-e2ce-4ab3-9859-dedbd0f8b55b", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false }, { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true + "uuid": "cf9bf556-3231-4d5d-bf0b-145423c0f535", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false }, { + "uuid": "0ef20e0b-2989-4f06-877b-978114b5ad4b", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false - } - ] - }, - { - "siteRegistry": false, - "dateReceived": "2017-08-12", - "dateCompleted": "2016-04-14", - "dateEntered": "2019-07-04", - "dateRegistrar": "2022-05-10", - "dateLocalAuthorityReceived": "2015-05-10", - "summary": "A enim ut delectus incidunt nam necessitatibus.\nOfficia doloremque quidem cumque optio consectetur adipisci.", - "informationUsed": "Placeat aliquam suscipit voluptate eligendi a unde autem fuga.\nSapiente vero aperiam adipisci temporibus a libero quidem.\nImpedit eligendi sit ipsum.\nMagni illo fuga.", - "pastOrPresentOrders": "Nostrum error quidem at repudiandae quod ullam quaerat maiores.\nDelectus quo minus.", - "commercialAndIndustrialPurposes": [ + }, { + "uuid": "258ff403-f691-4ebb-92a5-a289ad1e7a1b", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true - }, - { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false } ] @@ -25809,95 +30165,94 @@ ], "activityLog": [ { + "uuid": "f5a7372b-9b72-4546-b88c-63769a5cbc74", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "KUB MOLLY", - "timestamp": "2018-02-21" - }, - { - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "STROMAN EDGAR", - "timestamp": "2013-12-03" - }, - { - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "KUB KYLE", - "timestamp": "2015-07-13" - }, - { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "EFFERTZ JANE", - "timestamp": "2022-08-07" + "user": "SCHOEN LAVINA", + "timestamp": "2022-02-28" }, { + "uuid": "1fb99452-a882-47e7-8e44-2ede543496ec", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "STOKES KAVON", - "timestamp": "2020-04-25" + "user": "KIEHN VIVIENNE", + "timestamp": "2014-02-16" }, { + "uuid": "9a69a88c-f3f7-4755-811c-bbf9e10548d7", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "CRONA CHRISTOPHER", - "timestamp": "2022-09-08" + "user": "REINGER PIERCE", + "timestamp": "2018-12-28" }, { + "uuid": "4e1d22ac-d46d-4404-97d9-819370a940ec", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "HEATHCOTE SHANY", - "timestamp": "2020-07-09" + "user": "WYMAN ENRIQUE", + "timestamp": "2015-11-15" }, { + "uuid": "db4752e5-2882-44c5-b64d-156797af20f2", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "WOLFF SHANON", - "timestamp": "2017-01-27" - }, - { - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "ANDERSON LUISA", - "timestamp": "2019-02-05" + "user": "DAVIS KAILEE", + "timestamp": "2015-04-21" } ], "associatedSites": [ { - "dateNoted": "2018-12-22", + "uuid": "e9f08056-552e-4c35-ae55-3fca9b06997c", + "dateNoted": "2015-09-09", + "notes": "", + "parcelID": "19828", + "siteID": "17362", + "siteRegistry": true + }, + { + "uuid": "d36de2c9-60c9-4e91-948e-7626e6280e02", + "dateNoted": "2015-04-03", + "notes": "", + "parcelID": "18731", + "siteID": "20112", + "siteRegistry": true + }, + { + "uuid": "d6912b62-2b6c-40ed-bcd5-b6bdeb363bf9", + "dateNoted": "2014-12-16", "notes": "", - "parcelID": "16943", - "siteID": "15761", + "parcelID": "16789", + "siteID": "16913", "siteRegistry": true } ] }, { - "uuid": "c5c2ac97-3dd5-43ce-8d4b-2686c6650cf2", - "siteID": 18371, - "address": "1868 King Points", - "latitude": 58.5324, - "longitude": -137.9461, - "lastUpdated": "2022-05-12", - "city": "Cummeratashire", - "region": "Thompson-Okanagan", - "victoriaFile": "26250-20/16477", + "uuid": "e6cbedf4-feda-49eb-8a6a-451df67c9c63", + "siteID": 18410, + "address": "766 Georgiana Coves", + "latitude": 53.5156, + "longitude": -121.7182, + "lastUpdated": "2013-10-31", + "city": "Cronabury", + "region": "Mainland/Southwest", + "victoriaFile": "26250-20/19040", "regionalFile": "N/A", "parcelIDs": [ - 6507678, - 6018942, - 7478614, - 6338617, - 5475909 + 6602030, + 9696139, + 8805609, + 9091151, + 395804 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2020-10-26", - "completed": "2017-07-05", - "initiated": "2016-01-02", - "ministryContact": "O'HARA CONSUELO", + "uuid": "dcdc617d-f606-4c3c-80bf-0b65cbe19662", + "createdAt": "2016-04-15", + "completed": "2017-03-24", + "initiated": "2018-11-08", + "ministryContact": "MRAZ PRINCESS", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -25906,33 +30261,78 @@ ], "notationParticipants": [ { + "uuid": "90bd932f-2213-4756-bd51-73af968ac792", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true }, { + "uuid": "bdcb877e-3a6a-4452-842b-59a966bc1f90", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { + "uuid": "2d8cd6a9-ce61-4ed5-9822-4c0fd58d4216", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "uuid": "6dd1c39b-acb1-4037-b5fb-1ceadd61ebe5", + "createdAt": "2020-10-10", + "completed": "2014-08-15", + "initiated": "2017-05-15", + "ministryContact": "FRAMI JOSEFINA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "uuid": "491a8796-6716-4d30-a124-b271b7688602", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", + "uuid": "21247870-fa3d-4f93-8cdc-c0f9dfbe1076", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "uuid": "9e675c00-a4ff-48b3-974f-c6a66ee8b4ca", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "uuid": "d8d192cf-62bb-4194-b3fb-2f58f3f8706b", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true + }, + { + "uuid": "7f08b2b5-49fb-4c7e-9cbe-90952e100ff1", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2016-08-06", - "completed": "2019-03-31", - "initiated": "2015-04-30", - "ministryContact": "WOLFF JOVAN", + "uuid": "d5294c64-c327-474c-b0bf-dc922ef73c4f", + "createdAt": "2017-05-24", + "completed": "2017-07-22", + "initiated": "2019-03-17", + "ministryContact": "HIRTHE MAXIMUS", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -25941,12 +30341,26 @@ ], "notationParticipants": [ { + "uuid": "920308a2-7a6a-4ba9-8df8-95a3a8a8f70e", "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "2d4c90c1-3b0e-426b-a560-edebf0600860", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "e6357c8e-8209-4b7e-8ab0-718f6fad92fe", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "9468e718-d77f-4d19-944a-c3eb7ddc5f93", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false } @@ -25956,39 +30370,10 @@ ], "participants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2022-03-24", - "startDate": "2018-02-19", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": false - }, - { - "name": "IPSUM", - "endDate": "2014-09-01", - "startDate": "2016-03-03", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": true - }, - { - "name": "AMET, DOLOR SIT", - "endDate": "2022-07-27", - "startDate": "2023-08-14", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": true - }, - { + "uuid": "114a9c3c-8bda-41b8-a76a-72278ce6df0b", "name": "IPSUM", - "endDate": "2020-02-17", - "startDate": "2023-06-01", + "endDate": "2017-12-14", + "startDate": "2014-03-23", "notes": "", "roles": [ "ORGANIZATION" @@ -25996,9 +30381,10 @@ "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2023-07-08", - "startDate": "2021-01-22", + "uuid": "c338b941-7142-4ae4-b1b4-161da18ceb2f", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2020-01-14", + "startDate": "2014-06-19", "notes": "", "roles": [ "EMPLOYEE" @@ -26008,122 +30394,119 @@ ], "suspectLandUses": [ { + "uuid": "5c76e268-3310-4e35-a2aa-3e3d578e0051", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-05-26 (described on Site Profile dated 2015-05-26)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "notes": "INSERTED FOR SITE PROFILE DATED 2017-08-17 (described on Site Profile dated 2017-08-17)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { + "uuid": "ef1df433-2f5e-4f5e-afc6-64d4b2353a24", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2020-06-07 (described on Site Profile dated 2020-06-07)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" - }, - { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-01-31 (described on Site Profile dated 2014-01-31)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" - }, - { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-05-23 (described on Site Profile dated 2015-05-23)", + "notes": "INSERTED FOR SITE PROFILE DATED 2015-10-29 (described on Site Profile dated 2015-10-29)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { + "uuid": "a7e7efe0-e89e-49c1-9044-36a201c9112a", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2023-07-08 (described on Site Profile dated 2023-07-08)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "notes": "INSERTED FOR SITE PROFILE DATED 2017-11-14 (described on Site Profile dated 2017-11-14)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], "parcelDescriptions": [ { + "uuid": "815933ad-f890-4cf2-9bf7-abbb2ec943e5", "siteRegistry": true, - "dateNoted": "2020-02-08", - "parcelID": "16245", - "crownLandUsePIN": "16078", - "crownLandFileNumber": "17786", - "landDescription": "LOT 4 OF LOT 5 BLOCK 2 DISTRICT LOT 3 PLAN 5039" + "dateNoted": "2022-07-03", + "parcelID": "20397", + "crownLandUsePIN": "19844", + "crownLandFileNumber": "20079", + "landDescription": "LOT 1 OF LOT 5 BLOCK 1 DISTRICT LOT 1 PLAN 4169" }, { - "siteRegistry": true, - "dateNoted": "2019-07-15", - "parcelID": "17977", - "crownLandUsePIN": "15805", - "crownLandFileNumber": "18671", - "landDescription": "LOT 5 OF LOT 3 BLOCK 4 DISTRICT LOT 3 PLAN 6812" + "uuid": "3b65205f-e6f2-4ef7-93fb-1673c14e404e", + "siteRegistry": false, + "dateNoted": "2016-10-25", + "parcelID": "19147", + "crownLandUsePIN": "16045", + "crownLandFileNumber": "17510", + "landDescription": "LOT 3 OF LOT 1 BLOCK 3 DISTRICT LOT 2 PLAN 7754" }, { + "uuid": "d7160078-28f6-4ead-80cc-f23e0229effd", "siteRegistry": true, - "dateNoted": "2019-03-25", - "parcelID": "17928", - "crownLandUsePIN": "18284", - "crownLandFileNumber": "20450", - "landDescription": "LOT 3 OF LOT 4 BLOCK 4 DISTRICT LOT 3 PLAN 5002" - }, - { - "siteRegistry": false, - "dateNoted": "2014-10-05", - "parcelID": "17172", - "crownLandUsePIN": "16439", - "crownLandFileNumber": "18730", - "landDescription": "LOT 5 OF LOT 3 BLOCK 5 DISTRICT LOT 2 PLAN 4900" + "dateNoted": "2019-02-10", + "parcelID": "16484", + "crownLandUsePIN": "20649", + "crownLandFileNumber": "20721", + "landDescription": "LOT 4 OF LOT 1 BLOCK 3 DISTRICT LOT 3 PLAN 7214" } ], "siteDisclosures": [ { - "siteRegistry": false, - "dateReceived": "2015-02-08", - "dateCompleted": "2020-10-04", - "dateEntered": "2015-04-02", - "dateRegistrar": "2017-06-07", - "dateLocalAuthorityReceived": "2017-06-11", - "summary": "Voluptates eaque debitis accusamus.", - "informationUsed": "Reprehenderit odio nemo.\nVitae culpa excepturi architecto facilis beatae dicta fugiat.\nTemporibus eligendi totam optio.", - "pastOrPresentOrders": "Voluptatum quis quos.", + "uuid": "fd1e7f87-f498-49fa-89a9-bc1eb439ca1e", + "siteRegistry": true, + "dateReceived": "2021-11-21", + "dateCompleted": "2018-10-09", + "dateEntered": "2020-01-17", + "dateRegistrar": "2019-05-11", + "dateLocalAuthorityReceived": "2020-04-30", + "summary": "Rem adipisci dolores eos sit adipisci illum voluptates ipsum.\nDolore ea amet enim eveniet.\nOfficiis quae consequuntur quae tempore accusamus odio at.", + "informationUsed": "Consectetur cum atque vel odit cupiditate.\nNesciunt doloribus amet suscipit praesentium pariatur inventore dolorum facere dicta.\nVeritatis laudantium placeat debitis ipsum.\nConsequatur nobis ipsam hic distinctio a aliquam deserunt consequatur et.\nPerferendis eveniet facilis et aspernatur tempora.", + "pastOrPresentOrders": "Ipsa sunt ex nisi assumenda vitae veritatis debitis nulla.\nAdipisci delectus praesentium a deleniti aperiam consequatur exercitationem iusto totam.", "commercialAndIndustrialPurposes": [ { - "scheduleReference": "F1*", + "uuid": "30dc2cbb-3652-4b05-92aa-1bdafded3d2e", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { + "uuid": "3d88d7f1-f23f-4dd9-8f87-286311f10759", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "uuid": "f7cf794a-5dba-4c72-aa3f-35051b1104c2", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false }, { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "uuid": "3e2bd2f1-05f7-407d-80bb-99706e01880d", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true } ] }, { - "siteRegistry": true, - "dateReceived": "2017-02-13", - "dateCompleted": "2020-12-30", - "dateEntered": "2018-09-28", - "dateRegistrar": "2023-01-27", - "dateLocalAuthorityReceived": "2018-06-13", - "summary": "Nobis nam incidunt beatae molestiae porro natus.", - "informationUsed": "Laudantium aut ipsam nulla atque error doloribus.\nPossimus sapiente blanditiis optio neque aliquid voluptatibus at aliquam sunt.\nMaxime sed accusamus harum ducimus quasi nemo ex eveniet nostrum.\nAt necessitatibus at quae incidunt aut ut.\nConsequatur iure dolorem error dolorum recusandae perferendis architecto.", - "pastOrPresentOrders": "Quae sit mollitia consequatur temporibus quisquam placeat exercitationem veritatis necessitatibus.", + "uuid": "22c0f434-c7cb-49b1-bb67-be935aca3a7c", + "siteRegistry": false, + "dateReceived": "2020-08-13", + "dateCompleted": "2017-01-07", + "dateEntered": "2019-11-13", + "dateRegistrar": "2013-10-24", + "dateLocalAuthorityReceived": "2016-05-24", + "summary": "Veritatis ipsa autem voluptatibus fugit necessitatibus.", + "informationUsed": "Perspiciatis et error quidem nostrum qui ea facere.\nCumque maiores necessitatibus.\nPorro voluptas dolores dignissimos commodi eos reprehenderit nihil autem.", + "pastOrPresentOrders": "Tempore consectetur veniam veniam occaecati at.\nExercitationem veritatis aut suscipit.\nAperiam doloribus eum.", "commercialAndIndustrialPurposes": [ { - "scheduleReference": "F1*", + "uuid": "e7c6206c-adc8-46c7-8ce7-a8dc99815964", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { + "uuid": "8b5436c4-1455-4c3c-b061-e8c3b7a24d99", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true - }, - { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true + "siteRegistry": false }, { - "scheduleReference": "F1*", + "uuid": "b71fad3d-5647-4ab4-942d-58e083c40338", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true } @@ -26132,97 +30515,108 @@ ], "activityLog": [ { - "siteRegistry": false, + "uuid": "5944494e-0a20-4cc8-9562-b0ad823cd263", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "REICHERT LAURIE", - "timestamp": "2021-12-07" + "user": "FRANECKI KRAIG", + "timestamp": "2020-02-04" }, { + "uuid": "c1eaff50-dd95-476f-a1a9-d506c83fc998", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "WATERS DARRIN", - "timestamp": "2016-05-10" + "user": "SCHMELER JAZMYN", + "timestamp": "2014-09-15" }, { + "uuid": "63160a9f-03d4-4cad-889c-193db833c051", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "GUSIKOWSKI MARIANNE", - "timestamp": "2019-05-04" + "user": "TRANTOW MAKAYLA", + "timestamp": "2016-01-14" }, { - "siteRegistry": false, + "uuid": "d4a9b46c-97ee-4470-ac7e-dc7f79545d53", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "CRONA ROSS", - "timestamp": "2017-03-02" + "user": "MORISSETTE DEXTER", + "timestamp": "2014-03-10" }, { - "siteRegistry": true, + "uuid": "b8d4b2fd-85f5-48b9-912a-452824240473", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "NOLAN LAURYN", - "timestamp": "2021-10-02" + "user": "CASPER ZACHARIAH", + "timestamp": "2014-11-29" }, { - "siteRegistry": false, + "uuid": "d3d319ac-d91d-4eca-bc39-0031ccc3c723", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "TOY LEON", - "timestamp": "2014-08-07" + "user": "NITZSCHE CONOR", + "timestamp": "2016-11-16" }, { - "siteRegistry": false, + "uuid": "33c22d95-3294-43a4-afba-53cf07e2535e", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "VEUM EASTON", - "timestamp": "2016-02-13" + "user": "TERRY RASHAWN", + "timestamp": "2018-05-31" } ], "associatedSites": [ { - "dateNoted": "2019-02-09", + "uuid": "d8eeb3c3-8a28-447a-80af-9d26350ce205", + "dateNoted": "2021-08-03", "notes": "", - "parcelID": "19491", - "siteID": "18687", - "siteRegistry": false + "parcelID": "18812", + "siteID": "20013", + "siteRegistry": true }, { - "dateNoted": "2017-04-01", + "uuid": "6a0801c2-7d21-40c3-8045-faa278beb69c", + "dateNoted": "2019-04-01", "notes": "", - "parcelID": "17282", - "siteID": "20407", + "parcelID": "15986", + "siteID": "17172", "siteRegistry": true }, { - "dateNoted": "2014-07-08", + "uuid": "8f3eb606-8a8e-40f4-96b6-54e4ebccb7e7", + "dateNoted": "2019-11-14", "notes": "", - "parcelID": "19189", - "siteID": "16602", - "siteRegistry": true + "parcelID": "19956", + "siteID": "17608", + "siteRegistry": false } ] }, { - "uuid": "28a50545-8434-4ed7-8f47-c24a583e9816", - "siteID": 18510, - "address": "95411 Cummerata Coves", - "latitude": 54.7576, - "longitude": -133.1702, - "lastUpdated": "2018-05-02", - "city": "Justinaland", - "region": "Vancouver Island/Coast", - "victoriaFile": "26250-20/10858", + "uuid": "cf0920ca-6940-4853-bd60-733e7c1dc774", + "siteID": 20304, + "address": "30779 Kelley Ridge", + "latitude": 54.8508, + "longitude": -126.1765, + "lastUpdated": "2022-11-26", + "city": "Cummingsland", + "region": "Thompson-Okanagan", + "victoriaFile": "26250-20/16754", "regionalFile": "N/A", "parcelIDs": [ - 805199, - 8471639, - 4485809, - 4452499, - 9981495 + 7746708, + 9519704, + 1749292, + 6384739, + 4842822 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2017-08-22", - "completed": "2020-01-18", - "initiated": "2020-01-10", - "ministryContact": "GERHOLD HORTENSE", + "uuid": "28eebcad-f7e7-46f1-a1ae-b847fce5588a", + "createdAt": "2020-12-21", + "completed": "2019-06-01", + "initiated": "2022-09-01", + "ministryContact": "GERHOLD LEANNA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -26231,38 +30625,124 @@ ], "notationParticipants": [ { + "uuid": "0a73fa93-dad2-49ae-810c-de04807066ba", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "2aee567e-f15f-4cfa-b69d-f78ab8226d12", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true + }, + { + "uuid": "14354521-970b-48b0-889d-f3892bd648c7", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true }, { + "uuid": "dd018e36-7779-477e-94a9-401f4b0b9197", "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "uuid": "5840190a-8ac9-4df2-b137-91770945a3c3", + "createdAt": "2021-06-19", + "completed": "2016-03-10", + "initiated": "2021-07-05", + "ministryContact": "PADBERG ELIAN", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "uuid": "11a79319-591f-4ad2-ac6e-6cf6b23e91e6", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true }, { + "uuid": "4294cdf3-f95d-4d1c-a6b8-c19886349dac", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true + }, + { + "uuid": "035e1c5a-2e7c-4f0b-ae70-19706e6cabdd", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "3becda16-90ff-4263-ad38-87bae06272bb", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true }, { + "uuid": "d57cf3a2-c98f-450b-bbc4-6cf0d7e3d527", "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "uuid": "a3052e7f-2fe8-4d3b-b8ae-c77a6ecd319f", + "createdAt": "2023-03-10", + "completed": "2016-06-06", + "initiated": "2016-01-08", + "ministryContact": "WITTING FANNIE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "uuid": "6ad30122-936d-4051-816d-db08e59c1fda", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true }, { + "uuid": "91a9ad10-0024-4f2c-961f-6e8f3ed8ce4a", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false + }, + { + "uuid": "4e9ab6c4-a1bd-43a4-b465-56a7104ddcb0", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "uuid": "23b01ec2-701f-42cf-876e-afe0a8601a2b", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true } ], "siteRegistry": false }, { - "createdAt": "2021-08-03", - "completed": "2017-08-19", - "initiated": "2019-09-17", - "ministryContact": "FADEL HANK", + "uuid": "6c14d9ca-8333-434f-ab7f-7987c202f192", + "createdAt": "2023-06-08", + "completed": "2019-05-20", + "initiated": "2016-05-01", + "ministryContact": "LEHNER-RATKE ALVAH", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -26271,17 +30751,60 @@ ], "notationParticipants": [ { + "uuid": "202481b5-d9fd-46dd-8afe-1e2476d4c080", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "uuid": "888895e9-068e-4e08-984a-fade8a4cc349", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": false }, { + "uuid": "74b84c00-797e-427d-8f29-484ffe068a73", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "uuid": "f775f3e5-cac1-467f-a1f6-918967786f40", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "uuid": "dff23640-7a9e-4339-9f7d-8651e8b1507d", + "createdAt": "2016-02-12", + "completed": "2015-10-29", + "initiated": "2019-07-07", + "ministryContact": "PROSACCO ALEXANDRE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "uuid": "e2a1f67e-247a-437d-87f4-538b996b3cc7", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false }, { + "uuid": "e09a410a-1b08-4da4-892a-9db149a6f48c", "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "7ddc6a5b-0e88-43ab-b18b-32574ed683b1", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false } @@ -26291,9 +30814,10 @@ ], "participants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2014-11-20", - "startDate": "2022-03-26", + "uuid": "916a13c5-a340-42f0-ac89-80c77b5d50a8", + "name": "AMET, DOLOR SIT", + "endDate": "2018-05-31", + "startDate": "2019-02-12", "notes": "", "roles": [ "EMPLOYEE" @@ -26301,9 +30825,10 @@ "siteRegistry": false }, { - "name": "IPSUM", - "endDate": "2022-05-16", - "startDate": "2016-12-02", + "uuid": "f2d25026-6b73-4743-9a7a-5336277cd8f9", + "name": "AMET, DOLOR SIT", + "endDate": "2014-01-21", + "startDate": "2019-05-19", "notes": "", "roles": [ "ORGANIZATION" @@ -26311,193 +30836,258 @@ "siteRegistry": false }, { + "uuid": "62cab748-21c7-4ce6-8950-a4b3dddac986", "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2018-12-14", - "startDate": "2015-07-13", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": false - }, - { - "name": "IPSUM", - "endDate": "2022-02-15", - "startDate": "2017-06-14", + "endDate": "2016-05-29", + "startDate": "2015-12-10", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2014-02-04", - "startDate": "2016-03-10", + "uuid": "42351743-1332-4c15-9bd2-69464205efce", + "name": "AMET, DOLOR SIT", + "endDate": "2017-05-18", + "startDate": "2020-10-16", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": true } ], "suspectLandUses": [ { + "uuid": "08bcf881-6e81-4fa0-870c-041f633a6ea7", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-10-08 (described on Site Profile dated 2022-10-08)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "notes": "INSERTED FOR SITE PROFILE DATED 2018-06-04 (described on Site Profile dated 2018-06-04)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-06-07 (described on Site Profile dated 2022-06-07)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "uuid": "4bcf1bbb-6f4a-40a2-8851-bee85f904b86", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2016-08-04 (described on Site Profile dated 2016-08-04)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { + "uuid": "dafb3af2-3cf5-44ba-915f-7dd30d2e5191", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-07-17 (described on Site Profile dated 2019-07-17)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "notes": "INSERTED FOR SITE PROFILE DATED 2018-04-10 (described on Site Profile dated 2018-04-10)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { + "uuid": "2ef7b301-c5a0-4103-9596-1110fbee36f6", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2020-05-18 (described on Site Profile dated 2020-05-18)", + "notes": "INSERTED FOR SITE PROFILE DATED 2018-10-03 (described on Site Profile dated 2018-10-03)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], "parcelDescriptions": [ { + "uuid": "a6cbb48c-1bfa-479c-82a9-872ace1aa0b2", "siteRegistry": true, - "dateNoted": "2015-04-30", - "parcelID": "17851", - "crownLandUsePIN": "19922", - "crownLandFileNumber": "19162", - "landDescription": "LOT 1 OF LOT 1 BLOCK 1 DISTRICT LOT 1 PLAN 8950" + "dateNoted": "2023-01-12", + "parcelID": "19063", + "crownLandUsePIN": "15421", + "crownLandFileNumber": "17569", + "landDescription": "LOT 2 OF LOT 1 BLOCK 1 DISTRICT LOT 3 PLAN 8506" }, { + "uuid": "a13a4c28-d882-4225-ae8c-2f5a27a89af2", "siteRegistry": true, - "dateNoted": "2023-06-27", - "parcelID": "16268", - "crownLandUsePIN": "16737", - "crownLandFileNumber": "17095", - "landDescription": "LOT 1 OF LOT 5 BLOCK 5 DISTRICT LOT 3 PLAN 6737" + "dateNoted": "2019-07-26", + "parcelID": "18853", + "crownLandUsePIN": "18194", + "crownLandFileNumber": "19832", + "landDescription": "LOT 3 OF LOT 4 BLOCK 4 DISTRICT LOT 5 PLAN 7230" }, { + "uuid": "5c3cc30f-fd28-451f-8a12-3fa9a4529ad7", "siteRegistry": false, - "dateNoted": "2022-09-18", - "parcelID": "15292", - "crownLandUsePIN": "19638", - "crownLandFileNumber": "20453", - "landDescription": "LOT 2 OF LOT 4 BLOCK 1 DISTRICT LOT 2 PLAN 4702" + "dateNoted": "2016-02-03", + "parcelID": "20401", + "crownLandUsePIN": "16965", + "crownLandFileNumber": "18887", + "landDescription": "LOT 3 OF LOT 3 BLOCK 3 DISTRICT LOT 4 PLAN 5778" } ], "siteDisclosures": [ { - "siteRegistry": false, - "dateReceived": "2022-03-15", - "dateCompleted": "2023-07-14", - "dateEntered": "2018-09-18", - "dateRegistrar": "2016-10-31", - "dateLocalAuthorityReceived": "2013-11-21", - "summary": "Debitis dolore iure porro cumque ad eos.\nAut laborum quidem provident quos distinctio cumque soluta.\nDebitis ea doloribus aspernatur occaecati assumenda.", - "informationUsed": "Recusandae exercitationem molestiae hic ad aperiam perspiciatis laudantium.\nNisi libero at labore sunt minus.\nLaborum consequuntur nihil.", - "pastOrPresentOrders": "Eum sed facere facilis delectus sed delectus nostrum.", + "uuid": "e47caba5-9afe-4da2-9871-de7daa8d1613", + "siteRegistry": true, + "dateReceived": "2015-04-09", + "dateCompleted": "2020-02-05", + "dateEntered": "2014-09-24", + "dateRegistrar": "2017-04-05", + "dateLocalAuthorityReceived": "2021-06-28", + "summary": "Natus recusandae at laudantium eaque officia nobis tempora.\nVeniam aliquid aperiam in accusamus.\nUt nulla sed ipsum itaque quaerat blanditiis asperiores blanditiis tempora.", + "informationUsed": "Rerum placeat corrupti voluptas tempora illo eius.\nAnimi tempora voluptates deleniti quod neque illum.\nNostrum non aliquam ut ipsum maiores a ex.", + "pastOrPresentOrders": "Ab eaque cumque doloribus qui delectus nesciunt sunt illum laudantium.\nAutem cum necessitatibus minus eveniet pariatur distinctio temporibus.", "commercialAndIndustrialPurposes": [ { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "uuid": "7d6ba20f-de46-4fb1-b024-f57ca3c1512c", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, { + "uuid": "d18aa44e-0794-4740-8f8c-4a56382f25f3", "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { - "scheduleReference": "F2*", + "uuid": "e8016889-a0d5-452d-88df-274082be42f0", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false + "siteRegistry": true }, { - "scheduleReference": "F2*", + "uuid": "5df2c98b-3855-406d-ae07-0a7b7ad55b9a", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true + "siteRegistry": false + } + ] + }, + { + "uuid": "450bf72a-80a0-41c1-b7ad-535c3d1138af", + "siteRegistry": true, + "dateReceived": "2022-12-30", + "dateCompleted": "2018-10-31", + "dateEntered": "2017-01-11", + "dateRegistrar": "2021-05-09", + "dateLocalAuthorityReceived": "2022-10-25", + "summary": "Ut porro omnis architecto hic.\nRem ad consequuntur porro cumque.\nOfficia eos voluptatibus dolor earum at quibusdam omnis quidem adipisci.", + "informationUsed": "Porro reprehenderit repellendus expedita vero optio minus magni explicabo perspiciatis.\nMinus repellat nemo blanditiis tenetur eius.\nConsequatur voluptatem laboriosam.", + "pastOrPresentOrders": "Dolorem est ipsam itaque at corporis corporis reprehenderit quas tempore.\nTotam tenetur neque sapiente quia perspiciatis alias quidem.\nTempora sequi aliquam temporibus rem.", + "commercialAndIndustrialPurposes": [ + { + "uuid": "ad80d0b2-ae8a-41de-b22b-e9fbbd017f6d", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "uuid": "45ee6cf3-3b62-4ed6-8466-a09e74fe0731", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false } ] } ], "activityLog": [ { - "siteRegistry": false, + "uuid": "95433dd4-4133-4400-ad6b-7623812eba55", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "GUSIKOWSKI ESPERANZA", - "timestamp": "2014-05-17" + "user": "ALTENWERTH MABLE", + "timestamp": "2023-08-07" }, { + "uuid": "8f3d0b35-4aa9-47c7-8b80-d65dd89e446c", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "TOY HENRY", - "timestamp": "2017-01-22" + "user": "RATH ANDY", + "timestamp": "2014-11-28" + }, + { + "uuid": "2f3b2050-5d28-4a9e-91ee-b6c676792499", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "BEAHAN ANNABEL", + "timestamp": "2021-11-04" }, { + "uuid": "497873b2-e714-48d2-a31d-882c0503f0c3", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "PADBERG ALDEN", - "timestamp": "2014-11-06" + "user": "DURGAN STEPHANY", + "timestamp": "2014-10-12" + }, + { + "uuid": "cee81b7e-4b32-42dd-9593-d52f77f5f977", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "EMMERICH TABITHA", + "timestamp": "2021-09-08" }, { + "uuid": "ffcac83d-5587-47ea-82ff-20fcde43ab3a", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "WYMAN ALISA", - "timestamp": "2019-02-18" + "user": "SIPES BRENDAN", + "timestamp": "2023-09-24" }, { + "uuid": "733ff763-77a1-400e-ba39-3a66461cd0ea", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "DOOLEY ARIELLE", - "timestamp": "2022-05-27" + "user": "HEIDENREICH MARIELA", + "timestamp": "2018-01-12" + }, + { + "uuid": "e559bbdb-23d5-4b12-aa4d-1861ed8d176f", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "MURAZIK ERIN", + "timestamp": "2015-08-30" + }, + { + "uuid": "aa4abb87-9fc0-4b3d-9e6b-7a387fa66c27", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "CORKERY KAYLIE", + "timestamp": "2017-04-09" + }, + { + "uuid": "025dc2a9-f9b9-413a-85a1-afd7d5247eb4", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "STEUBER ALEXANNE", + "timestamp": "2015-07-30" } ], "associatedSites": [ { - "dateNoted": "2020-10-27", + "uuid": "356c628f-f30b-4beb-9f86-794c665cb883", + "dateNoted": "2020-04-05", "notes": "", - "parcelID": "19706", - "siteID": "20963", + "parcelID": "16234", + "siteID": "18760", "siteRegistry": true - }, - { - "dateNoted": "2022-05-26", - "notes": "", - "parcelID": "15306", - "siteID": "17027", - "siteRegistry": false } ] }, { - "uuid": "c7fde3a8-039b-4382-995c-8c360d7f0923", - "siteID": 20707, - "address": "682 Elinore Unions", - "latitude": 56.7802, - "longitude": -133.8118, - "lastUpdated": "2022-05-25", - "city": "Sioux City", - "region": "Thompson-Okanagan", - "victoriaFile": "26250-20/2935", + "uuid": "b0feb7a1-1f0f-4326-9d8d-e021a471afbc", + "siteID": 20660, + "address": "9984 Janie Crossing", + "latitude": 57.6949, + "longitude": -137.4664, + "lastUpdated": "2017-06-05", + "city": "South Alvena", + "region": " North Coast", + "victoriaFile": "26250-20/15241", "regionalFile": "N/A", "parcelIDs": [ - 4733011, - 4058808, - 7105054, - 2276811, - 5815939 + 9858571, + 780309, + 9821326, + 2105784, + 4666019 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2015-12-20", - "completed": "2021-08-06", - "initiated": "2019-05-20", - "ministryContact": "WEIMANN VINCENT", + "uuid": "5f576522-3acd-4ca1-8555-2da10d4641c0", + "createdAt": "2019-10-29", + "completed": "2022-10-13", + "initiated": "2022-07-18", + "ministryContact": "BREITENBERG CORY", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -26506,28 +31096,44 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", + "uuid": "6f9dabec-2d31-4d31-b05f-e4a0c64afc00", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true }, { + "uuid": "c928cffb-f7c0-4605-990e-6ed86cf77486", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "0f1a20bf-b356-4840-9b63-e1e287a75efd", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "f76241ae-6849-480e-8c99-f603e417681f", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false + }, + { + "uuid": "547ca889-bfca-479c-aa78-2f1529aeadfa", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false } ], "siteRegistry": true }, { - "createdAt": "2018-04-30", - "completed": "2022-03-12", - "initiated": "2016-12-27", - "ministryContact": "BINS ARMAND", + "uuid": "3843bdae-55bd-4b35-a010-5080c50a7826", + "createdAt": "2023-09-16", + "completed": "2018-12-09", + "initiated": "2016-04-06", + "ministryContact": "CARROLL PALMA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -26536,28 +31142,44 @@ ], "notationParticipants": [ { + "uuid": "93652712-202a-4250-94b5-4b64c6549895", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "uuid": "fcbc30e8-6a39-4f8d-b9a7-9d8a80594ab2", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true + "role": "SUBMITTED BY", + "siteRegistry": false }, { + "uuid": "315f669e-9bfb-40f7-af88-ed4ab31dfaa5", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { + "uuid": "a1be7457-099c-4e32-92f6-442b5ec1f85e", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false + }, + { + "uuid": "c2032d2f-3564-4235-8b6c-bbaeca30dfb8", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2018-09-20", - "completed": "2020-02-04", - "initiated": "2017-01-04", - "ministryContact": "ZEMLAK ROSA", + "uuid": "645f80bd-8781-467e-81f6-952e626adab1", + "createdAt": "2016-09-01", + "completed": "2016-08-20", + "initiated": "2022-01-13", + "ministryContact": "COLLINS ASHLEIGH", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -26566,14 +31188,34 @@ ], "notationParticipants": [ { + "uuid": "83734771-c32c-4c0f-b7c6-61b31e9e9985", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "d75b6483-91be-4a2b-a06b-6895a2d89bb3", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", "siteRegistry": true }, { + "uuid": "cc93e1a2-eae2-47fb-93a2-570d373d14fd", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "972ccbe8-92d9-44e2-a8b4-b9750594db00", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "f9f1f576-9969-457f-8074-7eae6d508e16", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true } ], "siteRegistry": true @@ -26581,261 +31223,307 @@ ], "participants": [ { - "name": "AMET, DOLOR SIT", - "endDate": "2013-11-28", - "startDate": "2022-10-09", + "uuid": "b5e66a95-247f-47fa-9106-f7e7a996fe94", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2018-06-26", + "startDate": "2021-12-27", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2016-09-10", - "startDate": "2018-12-26", + "uuid": "069197ee-539c-44de-a32e-c0b31f182b62", + "name": "AMET, DOLOR SIT", + "endDate": "2015-12-27", + "startDate": "2022-05-03", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true }, { + "uuid": "1175e14f-0988-4abc-ab2b-029e80a8525d", "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2014-11-09", - "startDate": "2022-05-28", + "endDate": "2021-01-24", + "startDate": "2020-03-25", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true }, { - "name": "IPSUM", - "endDate": "2022-05-17", - "startDate": "2017-08-10", + "uuid": "21d22f41-4d55-4d10-846b-cf17194d0d6b", + "name": "AMET, DOLOR SIT", + "endDate": "2021-11-17", + "startDate": "2018-10-15", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], - "siteRegistry": true + "siteRegistry": false }, { + "uuid": "701be39f-33ff-48c9-8e46-58536a8e12fd", "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2019-06-15", - "startDate": "2019-01-23", + "endDate": "2018-10-13", + "startDate": "2013-12-30", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": false } ], "suspectLandUses": [ { + "uuid": "d9f96d38-8c18-4a46-a88b-79c634f5508b", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2023-10-09 (described on Site Profile dated 2023-10-09)", + "notes": "INSERTED FOR SITE PROFILE DATED 2015-11-20 (described on Site Profile dated 2015-11-20)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-11-08 (described on Site Profile dated 2014-11-08)", + "uuid": "aaaf11a5-0858-4895-a3aa-78b10c0083ea", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2019-08-15 (described on Site Profile dated 2019-08-15)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], "parcelDescriptions": [ { - "siteRegistry": true, - "dateNoted": "2018-11-19", - "parcelID": "15273", - "crownLandUsePIN": "20275", - "crownLandFileNumber": "19954", - "landDescription": "LOT 3 OF LOT 4 BLOCK 2 DISTRICT LOT 1 PLAN 8335" + "uuid": "765e93e5-97c7-4e2f-a29c-ef092d2b2395", + "siteRegistry": false, + "dateNoted": "2016-03-04", + "parcelID": "16794", + "crownLandUsePIN": "18690", + "crownLandFileNumber": "15374", + "landDescription": "LOT 2 OF LOT 3 BLOCK 3 DISTRICT LOT 5 PLAN 6287" }, { - "siteRegistry": false, - "dateNoted": "2023-09-07", - "parcelID": "17466", - "crownLandUsePIN": "17697", - "crownLandFileNumber": "20566", - "landDescription": "LOT 4 OF LOT 1 BLOCK 3 DISTRICT LOT 2 PLAN 4671" + "uuid": "a3e0fbad-1710-4877-b014-01241752d1cf", + "siteRegistry": true, + "dateNoted": "2016-08-12", + "parcelID": "17098", + "crownLandUsePIN": "19797", + "crownLandFileNumber": "17385", + "landDescription": "LOT 4 OF LOT 2 BLOCK 5 DISTRICT LOT 3 PLAN 6314" }, { + "uuid": "82f76e1a-9633-4c6d-aa43-2cd2e2689a9d", "siteRegistry": false, - "dateNoted": "2019-05-23", - "parcelID": "16119", - "crownLandUsePIN": "18537", - "crownLandFileNumber": "20376", - "landDescription": "LOT 3 OF LOT 2 BLOCK 5 DISTRICT LOT 2 PLAN 4131" + "dateNoted": "2018-01-28", + "parcelID": "18998", + "crownLandUsePIN": "16083", + "crownLandFileNumber": "19460", + "landDescription": "LOT 2 OF LOT 5 BLOCK 4 DISTRICT LOT 1 PLAN 4781" }, { + "uuid": "6e703079-38c9-4b01-b348-98a8f71c7422", "siteRegistry": false, - "dateNoted": "2020-10-12", - "parcelID": "19786", - "crownLandUsePIN": "16534", - "crownLandFileNumber": "19379", - "landDescription": "LOT 3 OF LOT 5 BLOCK 5 DISTRICT LOT 1 PLAN 8735" + "dateNoted": "2014-04-14", + "parcelID": "20033", + "crownLandUsePIN": "18803", + "crownLandFileNumber": "15718", + "landDescription": "LOT 4 OF LOT 5 BLOCK 5 DISTRICT LOT 3 PLAN 5503" }, { + "uuid": "e94877a2-6aa4-45cf-a9ea-7f45f78e8d14", "siteRegistry": false, - "dateNoted": "2014-07-26", - "parcelID": "15279", - "crownLandUsePIN": "19418", - "crownLandFileNumber": "16374", - "landDescription": "LOT 2 OF LOT 4 BLOCK 2 DISTRICT LOT 2 PLAN 6198" + "dateNoted": "2019-02-28", + "parcelID": "17237", + "crownLandUsePIN": "20165", + "crownLandFileNumber": "17683", + "landDescription": "LOT 5 OF LOT 2 BLOCK 1 DISTRICT LOT 1 PLAN 9297" } ], "siteDisclosures": [ { + "uuid": "1dbf4b53-13b3-489c-9ceb-88bebc46ac8d", "siteRegistry": true, - "dateReceived": "2022-08-26", - "dateCompleted": "2023-05-18", - "dateEntered": "2017-09-13", - "dateRegistrar": "2018-02-05", - "dateLocalAuthorityReceived": "2015-07-18", - "summary": "Perspiciatis rerum commodi natus vitae id quos.", - "informationUsed": "Unde nisi dicta explicabo voluptatibus magnam maiores.\nId tenetur vitae illo quis.\nCorporis ratione id aliquam recusandae rerum eveniet perspiciatis occaecati.\nVoluptate excepturi dolore labore incidunt illo.\nAliquid illo cum pariatur.", - "pastOrPresentOrders": "Quae molestiae id sed quibusdam repellat architecto accusamus.\nInventore amet ipsam beatae consequuntur corporis totam officia.", + "dateReceived": "2021-04-29", + "dateCompleted": "2018-06-01", + "dateEntered": "2019-04-27", + "dateRegistrar": "2018-06-04", + "dateLocalAuthorityReceived": "2022-09-14", + "summary": "Beatae quibusdam ex ullam quisquam iusto earum minus autem minima.\nSunt architecto tempora at in non at vitae.\nA molestias dignissimos sed quis tempora labore.", + "informationUsed": "Quae ex corporis esse.\nConsectetur sed at.\nTotam enim recusandae.\nVeniam consequatur sunt impedit ea suscipit mollitia.\nExercitationem cumque aliquam totam.", + "pastOrPresentOrders": "Laboriosam commodi sed facilis officiis nostrum a voluptatum.", "commercialAndIndustrialPurposes": [ { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false - }, - { + "uuid": "2118d346-734b-4929-b88a-40c2b4d8bb28", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { + "uuid": "f99f64a5-1a6b-45ef-95eb-8c51eedae687", "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "uuid": "82b11057-6ab8-4831-be2b-5707d9d99c24", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true } ] }, { - "siteRegistry": true, - "dateReceived": "2014-12-31", - "dateCompleted": "2019-11-03", - "dateEntered": "2014-02-20", - "dateRegistrar": "2021-10-27", - "dateLocalAuthorityReceived": "2014-12-10", - "summary": "Corporis nesciunt in.\nOmnis occaecati facilis aspernatur sunt quaerat repudiandae nemo praesentium.\nPerferendis quos voluptatem vel omnis vitae eum earum ipsa.", - "informationUsed": "Temporibus suscipit eligendi molestias nemo.\nLabore eos tempora totam reprehenderit impedit.\nRepellendus porro porro architecto.\nDolorum accusantium deserunt esse cum autem blanditiis.\nEsse nobis libero qui.", - "pastOrPresentOrders": "Amet modi odio alias possimus.\nVeritatis minus labore corrupti vitae eius necessitatibus sint.\nSapiente sed culpa eos asperiores quas impedit illo facere.", + "uuid": "3eb033b3-75a6-4021-80eb-53d9352e2e2c", + "siteRegistry": false, + "dateReceived": "2015-03-02", + "dateCompleted": "2023-01-25", + "dateEntered": "2021-12-26", + "dateRegistrar": "2017-08-07", + "dateLocalAuthorityReceived": "2023-04-30", + "summary": "Adipisci labore voluptate distinctio possimus.\nHic nam quaerat.\nPariatur earum quidem.", + "informationUsed": "Omnis deleniti aspernatur quod eius quam.\nMolestiae beatae magnam quibusdam molestias dolorem vel recusandae autem maxime.\nRepudiandae amet ipsum.", + "pastOrPresentOrders": "Dolor libero ducimus veritatis fugiat nisi repellat error velit.", "commercialAndIndustrialPurposes": [ { + "uuid": "65c43309-3a86-444c-9016-566df625b325", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { + "uuid": "c72aa6c3-e6e8-4d0b-8020-371737fdeb7d", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false + "siteRegistry": true } ] } ], "activityLog": [ { + "uuid": "b8e67ddc-aa1f-4404-bc4a-f2d3bdf96845", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "HEIDENREICH GUS", - "timestamp": "2015-06-24" + "user": "ORTIZ PEYTON", + "timestamp": "2020-10-07" }, { + "uuid": "11babdb9-3699-41c7-ad4f-8aa1b06e7e69", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "SPENCER ARIC", - "timestamp": "2014-10-24" + "user": "MOHR-DAUGHERTY ETHA", + "timestamp": "2017-08-20" }, { - "siteRegistry": true, + "uuid": "5d9d8a37-6430-4bb8-942d-de692af2822b", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "RUNOLFSDOTTIR JESS", - "timestamp": "2021-08-19" + "user": "WILLMS KENNA", + "timestamp": "2014-02-21" }, { + "uuid": "986364ac-9493-4e9e-bc23-7f04939e23e1", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "STEUBER EDWARD", - "timestamp": "2022-03-15" + "user": "PRICE LIBBY", + "timestamp": "2023-08-11" }, { - "siteRegistry": false, + "uuid": "0d44c3be-81f3-4756-bc57-1f672a8f32cf", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "FEIL MAXWELL", - "timestamp": "2018-10-10" + "user": "JAKUBOWSKI DAPHNEE", + "timestamp": "2017-07-09" }, { + "uuid": "37883c7d-2620-419a-a8a7-c2684f617510", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "FLATLEY CARLOS", - "timestamp": "2018-10-01" + "user": "KOZEY CAMREN", + "timestamp": "2016-04-14" }, { + "uuid": "fa35e983-4079-4061-b3b1-677f1832acd4", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "BARTON ANTWON", - "timestamp": "2022-12-23" + "user": "MEDHURST DERICK", + "timestamp": "2019-01-15" + }, + { + "uuid": "13f42e74-201d-4c94-a1cd-c34267141f2b", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "ROGAHN CLAUD", + "timestamp": "2019-04-18" }, { + "uuid": "e8acdaff-da01-4857-a84c-e5f25e28d3d4", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "WITTING NAME", - "timestamp": "2016-04-17" + "user": "RODRIGUEZ GRAYSON", + "timestamp": "2015-07-27" }, { + "uuid": "0d829247-86f9-4f9e-9957-fde5df37ad8d", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "CARTER AALIYAH", - "timestamp": "2013-12-14" + "user": "LEMKE ERNESTO", + "timestamp": "2023-10-08" } ], "associatedSites": [ { - "dateNoted": "2019-01-27", + "uuid": "17018c22-f2d0-47ca-b4bf-c36af6fb2ffb", + "dateNoted": "2018-03-03", "notes": "", - "parcelID": "16610", - "siteID": "20963", - "siteRegistry": true + "parcelID": "18515", + "siteID": "15580", + "siteRegistry": false + }, + { + "uuid": "aed93995-5e76-4f9b-9be3-426332ad58d6", + "dateNoted": "2019-03-12", + "notes": "", + "parcelID": "20304", + "siteID": "18096", + "siteRegistry": false }, { - "dateNoted": "2018-01-13", + "uuid": "3959f85f-4bab-4b3f-ab82-86e1a60a53c6", + "dateNoted": "2019-03-30", "notes": "", - "parcelID": "17790", - "siteID": "19051", + "parcelID": "20635", + "siteID": "18254", "siteRegistry": true } ] }, { - "uuid": "23067803-a7c4-4036-b977-6461dfc32816", - "siteID": 20018, - "address": "276 Langworth Overpass", - "latitude": 58.6501, - "longitude": -120.3265, - "lastUpdated": "2018-08-03", - "city": "Gutkowskiland", - "region": "Vancouver Island/Coast", - "victoriaFile": "26250-20/10744", + "uuid": "52d826dd-bee6-47fe-8ae7-92268787c829", + "siteID": 16285, + "address": "68744 Rau Dale", + "latitude": 49.0366, + "longitude": -119.778, + "lastUpdated": "2022-01-14", + "city": "East Daisy", + "region": "Cariboo", + "victoriaFile": "26250-20/3896", "regionalFile": "N/A", "parcelIDs": [ - 5884229, - 4759800, - 1134535, - 593784, - 8703083 + 3439989, + 2880589, + 7983246, + 6965352, + 5753216 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2018-10-18", - "completed": "2019-06-26", - "initiated": "2023-01-30", - "ministryContact": "HARRIS RAQUEL", + "uuid": "fb3ae21b-e89d-4177-8c4a-d7ce41380212", + "createdAt": "2020-03-14", + "completed": "2020-09-02", + "initiated": "2016-04-20", + "ministryContact": "REYNOLDS MITCHEL", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -26844,23 +31532,38 @@ ], "notationParticipants": [ { + "uuid": "d0b25299-a694-41f6-ade2-d12f5dd16fe4", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "96682915-0386-4a96-9c93-287562bee630", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "ed36f689-9b3f-4972-b43b-af83b70a0eee", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", "siteRegistry": false }, { + "uuid": "12dbf77f-ca63-4b45-9430-48adcd99ab87", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true } ], "siteRegistry": false }, { - "createdAt": "2020-10-12", - "completed": "2014-10-08", - "initiated": "2016-01-02", - "ministryContact": "JERDE SHAYNA", + "uuid": "f3adaf7d-2eaf-4a4d-9e79-b0d757ec283b", + "createdAt": "2017-04-22", + "completed": "2021-04-22", + "initiated": "2023-06-04", + "ministryContact": "MOSCISKI CORTEZ", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -26869,18 +31572,33 @@ ], "notationParticipants": [ { + "uuid": "f72b2591-9d3f-4eeb-9678-2abbe20e32c1", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "uuid": "c3e753c0-b1d7-499a-b3d2-e26eabb17923", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "uuid": "4da1e3d6-3cf3-4f71-8048-c602215a7397", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "9f914802-0c23-44b1-bae4-283337aa0807", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false }, { + "uuid": "1cf07be3-cd0c-4e47-8851-1d52a7704104", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": true } ], @@ -26889,114 +31607,189 @@ ], "participants": [ { + "uuid": "f94ac190-fd4d-4e9d-bc62-50df0f91a81f", + "name": "IPSUM", + "endDate": "2016-09-08", + "startDate": "2019-05-09", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "uuid": "c630f413-3088-4a61-b40a-85ed10eddf78", + "name": "IPSUM", + "endDate": "2021-06-23", + "startDate": "2021-09-15", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "uuid": "354bbb75-ed5f-43ff-be72-348213c00952", "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2018-03-31", - "startDate": "2018-01-04", + "endDate": "2020-10-16", + "startDate": "2013-12-10", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": true + "siteRegistry": false + }, + { + "uuid": "0c789a95-3772-4a4e-b6b9-ea25f5d6643c", + "name": "IPSUM", + "endDate": "2021-02-01", + "startDate": "2017-11-15", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false }, { + "uuid": "b7eae372-0075-4d2f-955d-a3b02deaf664", "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2015-07-23", - "startDate": "2021-05-18", + "endDate": "2018-04-10", + "startDate": "2016-02-01", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": false } ], "suspectLandUses": [ { + "uuid": "9cc9e05e-186d-4cf1-84ee-5f6066051105", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2022-11-09 (described on Site Profile dated 2022-11-09)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "uuid": "39f02239-eaea-4d02-8363-0372141d173b", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2014-05-09 (described on Site Profile dated 2014-05-09)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "uuid": "b2626eec-fb7a-4588-93dd-600c6a6791fc", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2023-07-29 (described on Site Profile dated 2023-07-29)", + "notes": "INSERTED FOR SITE PROFILE DATED 2019-06-27 (described on Site Profile dated 2019-06-27)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-04-14 (described on Site Profile dated 2019-04-14)", + "uuid": "5890a35e-d97e-4bee-ad6e-08df98046c5e", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2022-09-28 (described on Site Profile dated 2022-09-28)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "uuid": "8d7cd2af-21b7-49c0-bb40-6bad37e0392c", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2017-04-20 (described on Site Profile dated 2017-04-20)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], "parcelDescriptions": [ { + "uuid": "daabb86a-143e-4892-9553-0a469269e214", "siteRegistry": false, - "dateNoted": "2023-04-07", - "parcelID": "17005", - "crownLandUsePIN": "20450", - "crownLandFileNumber": "16674", - "landDescription": "LOT 5 OF LOT 2 BLOCK 2 DISTRICT LOT 5 PLAN 3403" + "dateNoted": "2023-07-11", + "parcelID": "19348", + "crownLandUsePIN": "15803", + "crownLandFileNumber": "19258", + "landDescription": "LOT 2 OF LOT 1 BLOCK 5 DISTRICT LOT 3 PLAN 9023" }, { + "uuid": "e8b9f08c-1830-434c-9516-e314060eedde", "siteRegistry": true, - "dateNoted": "2016-02-17", - "parcelID": "20499", - "crownLandUsePIN": "19291", - "crownLandFileNumber": "18667", - "landDescription": "LOT 2 OF LOT 3 BLOCK 4 DISTRICT LOT 1 PLAN 9043" + "dateNoted": "2018-09-12", + "parcelID": "20311", + "crownLandUsePIN": "16736", + "crownLandFileNumber": "20611", + "landDescription": "LOT 4 OF LOT 4 BLOCK 3 DISTRICT LOT 2 PLAN 8691" + }, + { + "uuid": "42e58f64-72d0-4094-a175-c4780e0b4bd5", + "siteRegistry": false, + "dateNoted": "2014-05-10", + "parcelID": "16234", + "crownLandUsePIN": "19981", + "crownLandFileNumber": "18640", + "landDescription": "LOT 2 OF LOT 5 BLOCK 3 DISTRICT LOT 1 PLAN 3712" + }, + { + "uuid": "e67cb1f8-2ff7-49a8-8580-5b9726f32f8e", + "siteRegistry": false, + "dateNoted": "2016-02-26", + "parcelID": "19119", + "crownLandUsePIN": "15672", + "crownLandFileNumber": "18595", + "landDescription": "LOT 1 OF LOT 2 BLOCK 1 DISTRICT LOT 2 PLAN 8518" + }, + { + "uuid": "6cda9ac9-bc81-4192-afaa-1c52c8a1e016", + "siteRegistry": true, + "dateNoted": "2021-09-29", + "parcelID": "20854", + "crownLandUsePIN": "16122", + "crownLandFileNumber": "19868", + "landDescription": "LOT 5 OF LOT 1 BLOCK 2 DISTRICT LOT 3 PLAN 6030" } ], "siteDisclosures": [ { - "siteRegistry": true, - "dateReceived": "2015-07-21", - "dateCompleted": "2021-04-25", - "dateEntered": "2019-10-03", - "dateRegistrar": "2014-09-26", - "dateLocalAuthorityReceived": "2020-04-08", - "summary": "Ducimus autem unde error maxime molestiae libero occaecati.", - "informationUsed": "Libero sequi deleniti.\nTempore sit consequuntur.\nQuo illo cumque cumque cupiditate quam repellat.\nNecessitatibus voluptatum accusantium.", - "pastOrPresentOrders": "Nisi tenetur nulla ex quos.\nAccusamus odio maxime officia ipsum non mollitia.", + "uuid": "081fa24b-df70-4f5c-adce-dc8c99dfb6fc", + "siteRegistry": false, + "dateReceived": "2022-05-20", + "dateCompleted": "2017-01-07", + "dateEntered": "2020-12-29", + "dateRegistrar": "2019-05-15", + "dateLocalAuthorityReceived": "2018-09-04", + "summary": "Quo illum nam possimus incidunt.\nCupiditate quam pariatur illo nemo.", + "informationUsed": "Suscipit ducimus nulla fuga quisquam est cupiditate aspernatur beatae tenetur.\nDoloribus laborum itaque neque sapiente officiis minus natus accusantium.\nQuia esse aut modi corporis occaecati quam doloremque.\nQui pariatur ullam molestiae inventore delectus.\nPossimus porro qui laborum fuga ex laudantium excepturi.", + "pastOrPresentOrders": "Eos aut dignissimos.\nAnimi sed maiores eveniet et.\nQuidem incidunt quam dignissimos accusamus totam ducimus esse porro.", "commercialAndIndustrialPurposes": [ { + "uuid": "c5193c64-be3d-440e-8378-c7128f56db35", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { + "uuid": "6e865ee1-a9e0-44d8-9f60-b6e84342f999", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false - }, - { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false } ] }, { - "siteRegistry": false, - "dateReceived": "2017-10-20", - "dateCompleted": "2020-05-11", - "dateEntered": "2015-09-02", - "dateRegistrar": "2022-11-24", - "dateLocalAuthorityReceived": "2022-02-11", - "summary": "Assumenda incidunt commodi maxime ratione.\nOccaecati mollitia alias aperiam.", - "informationUsed": "Quam tenetur praesentium assumenda.\nLabore iste similique accusantium ea voluptates.\nEst suscipit corrupti amet consequatur voluptatem.\nUllam pariatur ex.", - "pastOrPresentOrders": "Asperiores nesciunt doloribus praesentium dicta voluptas dolorem optio praesentium error.\nVoluptatem dignissimos debitis corporis maiores mollitia odio.", + "uuid": "1ecff330-63a9-48a3-bdc5-b57a4597def2", + "siteRegistry": true, + "dateReceived": "2018-10-02", + "dateCompleted": "2015-07-11", + "dateEntered": "2017-01-05", + "dateRegistrar": "2018-05-17", + "dateLocalAuthorityReceived": "2022-11-04", + "summary": "Assumenda eaque repellendus laboriosam itaque quibusdam quaerat expedita assumenda.\nMaiores quos deserunt natus fugit facere cumque.", + "informationUsed": "Quae hic nihil.\nAccusantium voluptate sunt facere a vel reiciendis repellendus quis hic.\nQuis autem corrupti eum nobis esse vero.", + "pastOrPresentOrders": "Necessitatibus ipsum exercitationem animi laudantium cupiditate ea.\nMagnam voluptatem dicta doloremque ipsam ex mollitia.", "commercialAndIndustrialPurposes": [ { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false - }, - { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true - }, - { + "uuid": "23a70af5-97c5-4ee3-a9f6-a511acd708ca", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { + "uuid": "0bc6d072-1b65-4651-8107-64a46a8e7610", "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false } ] @@ -27004,109 +31797,114 @@ ], "activityLog": [ { - "siteRegistry": false, + "uuid": "f60428c0-47a5-47e5-b4b0-8f49ab2cb3ac", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "REICHERT ELTON", - "timestamp": "2017-08-18" + "user": "ANDERSON-WALKER KAYLEE", + "timestamp": "2021-03-21" }, { + "uuid": "06962bb0-1bbd-453f-b218-b2396b81e675", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "SENGER MARGARETT", - "timestamp": "2014-01-21" + "user": "MACGYVER ARLO", + "timestamp": "2018-01-12" }, { + "uuid": "7ea35404-3ff1-41f3-b2e1-89cdc5f24266", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "KLEIN HARDY", - "timestamp": "2023-08-23" + "user": "BAILEY DEMARCO", + "timestamp": "2016-11-12" }, { - "siteRegistry": false, + "uuid": "20b266ba-d1e7-42b5-9481-9b30b20b972f", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "SMITHAM KIERAN", - "timestamp": "2017-07-04" + "user": "GREENFELDER TIMMOTHY", + "timestamp": "2021-11-08" }, { - "siteRegistry": false, + "uuid": "2f0c8515-8596-4ded-9e9c-e32009854afe", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "GLEICHNER LETHA", - "timestamp": "2019-06-18" + "user": "CHAMPLIN TOMAS", + "timestamp": "2020-07-08" }, { + "uuid": "18eb03ed-9e93-416c-b632-c2ba0cc0ec74", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "TROMP KELLEN", - "timestamp": "2018-11-20" + "user": "HARRIS DELTA", + "timestamp": "2021-06-23" }, { - "siteRegistry": false, + "uuid": "e6854ceb-e7ad-4fcb-a7b2-a01aad79d396", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "MOORE REAGAN", - "timestamp": "2017-07-09" + "user": "STANTON SALLY", + "timestamp": "2022-08-08" }, { + "uuid": "f0972515-e7eb-4d1d-8673-faec5f25ca0a", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "GIBSON IVORY", - "timestamp": "2016-03-15" + "user": "HACKETT YOLANDA", + "timestamp": "2019-11-22" }, { + "uuid": "3b5f7813-fbac-4253-b8f5-8c973a2325e2", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "JACOBI CARLOTTA", - "timestamp": "2020-08-08" + "user": "MANN GRACE", + "timestamp": "2016-08-26" } ], "associatedSites": [ { - "dateNoted": "2023-04-03", + "uuid": "b621baca-129b-4101-b402-7b3dbae25abe", + "dateNoted": "2019-06-18", "notes": "", - "parcelID": "15568", - "siteID": "15630", + "parcelID": "19782", + "siteID": "19254", "siteRegistry": false }, { - "dateNoted": "2016-11-12", + "uuid": "8462856a-8325-475d-8576-7f7fe9598d57", + "dateNoted": "2015-02-07", "notes": "", - "parcelID": "20713", - "siteID": "15493", + "parcelID": "17388", + "siteID": "19893", "siteRegistry": true - }, - { - "dateNoted": "2017-05-05", - "notes": "", - "parcelID": "16257", - "siteID": "19587", - "siteRegistry": false } ] }, { - "uuid": "9ff3a8a3-a40a-4900-9693-ca3e224c04dc", - "siteID": 17387, - "address": "1698 Braun Rapid", - "latitude": 53.1788, - "longitude": -120.6176, - "lastUpdated": "2014-09-07", - "city": "Labadieport", - "region": "Cariboo", - "victoriaFile": "26250-20/11155", + "uuid": "29d66e00-8b54-4472-bdb2-5b2aabec7725", + "siteID": 20221, + "address": "6133 Hagenes Mount", + "latitude": 51.8137, + "longitude": -137.3931, + "lastUpdated": "2017-10-21", + "city": "Palm Desert", + "region": "Kootenay", + "victoriaFile": "26250-20/8015", "regionalFile": "N/A", "parcelIDs": [ - 1865404, - 8132971, - 6702652, - 2282638, - 1965408 + 2352634, + 9727132, + 5792656, + 4070461, + 7113177 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2021-03-29", - "completed": "2021-07-17", - "initiated": "2016-05-07", - "ministryContact": "LANGOSH-KRAJCIK LIONEL", + "uuid": "24849176-5338-4291-b480-0a996cc727c6", + "createdAt": "2021-08-07", + "completed": "2018-08-25", + "initiated": "2022-10-10", + "ministryContact": "SENGER DEVANTE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -27115,28 +31913,78 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", + "uuid": "8ecd7364-6eec-41ad-967e-1b0c6eada981", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false }, { + "uuid": "322a2226-eedd-49e2-9704-20c62cc0651b", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "uuid": "da418958-e10c-4a8b-8083-eefa404214a3", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "uuid": "1366b951-c5d8-4cdd-b97a-d973b33e7400", + "createdAt": "2022-11-09", + "completed": "2020-06-06", + "initiated": "2022-03-11", + "ministryContact": "FEEST CASSIE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "uuid": "40cc72bb-b2ad-475f-b73d-07675be6ebdc", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": false }, { + "uuid": "d4aeaf47-413b-44f4-9c1a-4aced182d6de", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "uuid": "d32c4a4d-eb7c-4070-b5c9-aa8303a9b87b", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true + }, + { + "uuid": "828fcee7-db49-4bc4-959c-917d5ef77646", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "uuid": "5db2927e-c2bb-4649-9fc6-d19d3dcaebf5", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true } ], "siteRegistry": true }, { - "createdAt": "2014-03-12", - "completed": "2022-09-16", - "initiated": "2020-07-27", - "ministryContact": "BERGE DANGELO", + "uuid": "fbd31f45-557f-4a81-8176-4007b6108bd4", + "createdAt": "2013-11-10", + "completed": "2018-08-13", + "initiated": "2014-05-16", + "ministryContact": "WILLMS JARVIS", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -27145,24 +31993,74 @@ ], "notationParticipants": [ { + "uuid": "97d1a9f2-1260-448d-aba5-56d974903bed", "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "uuid": "bbd96a99-875d-4af9-916f-2f4a10b9d093", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { + "uuid": "0ae7f945-35e2-42e6-bdf8-87978ddddd35", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false + }, + { + "uuid": "bd682b85-d2d1-4bc9-9d85-72b7268820a3", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false }, { + "uuid": "2c9970a2-3556-46d1-a2d5-654cbf6377fc", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "uuid": "b6150850-ca6e-4f5c-9812-93383906246e", + "createdAt": "2018-09-08", + "completed": "2023-04-22", + "initiated": "2018-04-22", + "ministryContact": "UPTON DARYL", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "uuid": "7ad2d2f5-e5f7-4008-9fa9-017844e00fc8", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", "siteRegistry": false }, { + "uuid": "19f434e1-1174-4f0c-a3d3-672cad44895d", "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "b586409e-4457-4ba6-9d3f-d0a285545513", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true + }, + { + "uuid": "f164aaab-2e46-4345-bd8d-1c3f1a057768", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true } ], "siteRegistry": false @@ -27170,19 +32068,21 @@ ], "participants": [ { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2023-07-29", - "startDate": "2016-09-16", + "uuid": "17c5e0f1-4033-451a-b20f-ced424cbde8e", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2016-06-24", + "startDate": "2018-07-28", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true }, { + "uuid": "9d100648-224e-4cb1-a84f-f5154ebd3da7", "name": "IPSUM", - "endDate": "2015-08-21", - "startDate": "2016-11-29", + "endDate": "2016-11-09", + "startDate": "2019-05-04", "notes": "", "roles": [ "EMPLOYEE" @@ -27192,103 +32092,115 @@ ], "suspectLandUses": [ { + "uuid": "748c496c-da97-469a-aeab-2af64c6fb3df", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-06-19 (described on Site Profile dated 2015-06-19)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" - }, - { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-11-17 (described on Site Profile dated 2016-11-17)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" - }, - { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-02-04 (described on Site Profile dated 2016-02-04)", + "notes": "INSERTED FOR SITE PROFILE DATED 2016-08-07 (described on Site Profile dated 2016-08-07)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { + "uuid": "8e0955f7-9ec0-49a1-8604-8f9cdf03721a", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2023-08-10 (described on Site Profile dated 2023-08-10)", + "notes": "INSERTED FOR SITE PROFILE DATED 2017-04-07 (described on Site Profile dated 2017-04-07)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], "parcelDescriptions": [ { - "siteRegistry": true, - "dateNoted": "2020-06-22", - "parcelID": "19670", - "crownLandUsePIN": "19234", - "crownLandFileNumber": "16746", - "landDescription": "LOT 1 OF LOT 3 BLOCK 4 DISTRICT LOT 3 PLAN 8628" + "uuid": "9df603bc-097c-4c09-8fa4-ee0bd1019925", + "siteRegistry": false, + "dateNoted": "2015-05-02", + "parcelID": "20936", + "crownLandUsePIN": "15817", + "crownLandFileNumber": "20847", + "landDescription": "LOT 5 OF LOT 3 BLOCK 1 DISTRICT LOT 2 PLAN 9705" }, { - "siteRegistry": true, - "dateNoted": "2016-11-13", - "parcelID": "17651", - "crownLandUsePIN": "20392", - "crownLandFileNumber": "18971", - "landDescription": "LOT 3 OF LOT 3 BLOCK 3 DISTRICT LOT 3 PLAN 7066" + "uuid": "665b79ab-96a9-41c1-a757-26bab3c1d173", + "siteRegistry": false, + "dateNoted": "2013-12-11", + "parcelID": "18308", + "crownLandUsePIN": "16938", + "crownLandFileNumber": "15229", + "landDescription": "LOT 4 OF LOT 3 BLOCK 3 DISTRICT LOT 3 PLAN 8144" }, { - "siteRegistry": true, - "dateNoted": "2019-02-18", - "parcelID": "18529", - "crownLandUsePIN": "16436", - "crownLandFileNumber": "19413", - "landDescription": "LOT 5 OF LOT 3 BLOCK 3 DISTRICT LOT 2 PLAN 3882" + "uuid": "4745d21a-fced-47e6-80b9-21983b304648", + "siteRegistry": false, + "dateNoted": "2017-11-10", + "parcelID": "17401", + "crownLandUsePIN": "20669", + "crownLandFileNumber": "17051", + "landDescription": "LOT 3 OF LOT 4 BLOCK 5 DISTRICT LOT 3 PLAN 4183" + }, + { + "uuid": "6e73363e-452c-4eee-bfd4-788ad8d4fa0c", + "siteRegistry": false, + "dateNoted": "2020-04-20", + "parcelID": "15260", + "crownLandUsePIN": "17794", + "crownLandFileNumber": "18940", + "landDescription": "LOT 4 OF LOT 2 BLOCK 3 DISTRICT LOT 2 PLAN 3567" } ], "siteDisclosures": [ { - "siteRegistry": false, - "dateReceived": "2018-08-09", - "dateCompleted": "2023-01-01", - "dateEntered": "2021-05-30", - "dateRegistrar": "2017-04-17", - "dateLocalAuthorityReceived": "2014-05-29", - "summary": "Occaecati quidem debitis repudiandae quis qui modi ad incidunt.", - "informationUsed": "Velit explicabo libero modi repellendus quas modi perspiciatis repellendus.\nSed similique rerum suscipit rem magni.\nMolestiae facere nostrum velit soluta.\nTemporibus at voluptatum iure quos.\nNihil quis fuga recusandae corporis eaque eius placeat quidem.", - "pastOrPresentOrders": "Excepturi harum dolores aperiam rerum odio magnam.", + "uuid": "01cbeba7-0146-4d4b-b131-aaff5ccec3ac", + "siteRegistry": true, + "dateReceived": "2023-06-10", + "dateCompleted": "2018-03-07", + "dateEntered": "2022-02-17", + "dateRegistrar": "2018-03-10", + "dateLocalAuthorityReceived": "2020-07-17", + "summary": "Quo fuga unde inventore voluptatibus vitae cum labore optio sequi.\nDolorum asperiores nam doloribus accusamus nisi voluptatum voluptate debitis doloribus.\nDolorem harum amet cumque.", + "informationUsed": "Aut enim laborum laudantium facilis harum.\nFugit ipsa tenetur nobis sequi nostrum aliquid.\nQuae facilis cum.", + "pastOrPresentOrders": "Cupiditate ipsa ea distinctio doloremque neque ipsa ea nam.\nBeatae non voluptatem hic nesciunt numquam pariatur provident minima.\nTotam laudantium cumque architecto accusamus nemo temporibus eligendi voluptas.", "commercialAndIndustrialPurposes": [ { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "uuid": "3ec33484-3720-4aa7-a962-9c4e6fd8d776", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false + "uuid": "9bcff9f7-52fb-4950-becb-294c4f767b0b", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true }, { + "uuid": "d2e5e6c3-46cf-4082-9b4a-67352336b831", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, { - "scheduleReference": "F1*", + "uuid": "072db6bd-a50c-4f59-9881-eeb0676431e6", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false } ] }, { + "uuid": "b3e2f4f4-45ae-41a9-9cfc-18ed80288e44", "siteRegistry": false, - "dateReceived": "2015-03-22", - "dateCompleted": "2019-10-23", - "dateEntered": "2019-08-27", - "dateRegistrar": "2014-02-11", - "dateLocalAuthorityReceived": "2023-06-23", - "summary": "Consequuntur animi non laudantium numquam labore.\nAsperiores dignissimos rerum commodi voluptatibus.\nQuas ducimus reiciendis beatae.", - "informationUsed": "Dignissimos at molestias.\nProvident exercitationem officia omnis ipsa recusandae optio.\nCulpa beatae nemo maxime commodi iure.\nMaiores mollitia numquam corporis tenetur.", - "pastOrPresentOrders": "Explicabo sit et aliquid illum molestiae eaque illo labore culpa.\nPerspiciatis aliquid deleniti.\nEius nemo repellat repellendus error.", + "dateReceived": "2019-03-22", + "dateCompleted": "2014-12-31", + "dateEntered": "2014-09-17", + "dateRegistrar": "2021-11-05", + "dateLocalAuthorityReceived": "2014-02-27", + "summary": "Rem temporibus incidunt earum repellat dignissimos.", + "informationUsed": "Voluptate iste perferendis modi sint ea eveniet amet sapiente.\nMaiores quas blanditiis suscipit enim inventore ullam accusantium excepturi facere.\nCum odit adipisci aperiam ad aspernatur reiciendis.\nPossimus nisi optio illo voluptatem ipsa minus mollitia labore.", + "pastOrPresentOrders": "Fugiat fugiat maxime corrupti fugit labore quasi.\nSed doloremque quaerat possimus odit.\nQuibusdam corrupti natus.", "commercialAndIndustrialPurposes": [ { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true + "uuid": "481f41fb-9264-4325-901e-593b93049b14", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false }, { + "uuid": "279c7102-3005-4fad-ac19-9d3da482c322", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false @@ -27298,97 +32210,113 @@ ], "activityLog": [ { - "siteRegistry": false, + "uuid": "6a0b46ee-c5a7-4c99-a938-2478522045cc", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "JAST BRETT", - "timestamp": "2020-07-02" + "user": "LITTLE OLGA", + "timestamp": "2014-11-29" }, { - "siteRegistry": false, + "uuid": "7f5614c8-e064-49c7-8da4-952ff15439a4", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "KLOCKO VERNON", - "timestamp": "2021-04-05" + "user": "RUNOLFSDOTTIR MYRTIS", + "timestamp": "2014-04-27" }, { + "uuid": "63e1e800-c8ba-48fb-ab75-b1fe0599f1b9", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "GLOVER ALEXANDREA", - "timestamp": "2015-11-21" + "user": "WALSH ESTA", + "timestamp": "2022-04-22" + }, + { + "uuid": "55736294-da73-4c9e-a2f6-3f9b936edab0", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "CARROLL KAREN", + "timestamp": "2018-04-29" }, { + "uuid": "b5b479cf-9115-4338-9a11-e30e62d6353d", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "GLOVER AIDA", - "timestamp": "2019-08-15" + "user": "ROHAN AMALIA", + "timestamp": "2015-02-20" + }, + { + "uuid": "a11b8548-2a75-4e37-bc9a-07d35a19ec3c", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "EMARD BARTHOLOME", + "timestamp": "2022-02-03" + }, + { + "uuid": "bf128615-9f04-4f0e-9b3b-45137e6135b4", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "JASKOLSKI ABBIGAIL", + "timestamp": "2019-10-30" }, { + "uuid": "54b67e14-eaa9-465d-9f65-d88c76d6eaff", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "MEDHURST TYLER", - "timestamp": "2023-07-24" + "user": "FRITSCH-SCHMITT NED", + "timestamp": "2022-07-31" }, { + "uuid": "67432e47-bc3a-4a20-98d9-123c0db2310e", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "BAUMBACH-REICHEL CAMILLE", - "timestamp": "2023-09-24" + "user": "BUCKRIDGE ESTEFANIA", + "timestamp": "2018-09-23" }, { - "siteRegistry": false, + "uuid": "46224b3c-e768-49de-9c13-a6ab02befcee", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "POWLOWSKI CHEYANNE", - "timestamp": "2014-12-06" + "user": "SCHADEN YOSHIKO", + "timestamp": "2018-04-29" } ], "associatedSites": [ { - "dateNoted": "2021-09-08", - "notes": "", - "parcelID": "18658", - "siteID": "19290", - "siteRegistry": false - }, - { - "dateNoted": "2015-09-22", + "uuid": "3384dd65-3961-4cde-b95b-864408981505", + "dateNoted": "2017-07-06", "notes": "", - "parcelID": "17209", - "siteID": "19914", + "parcelID": "17320", + "siteID": "15852", "siteRegistry": true - }, - { - "dateNoted": "2014-05-23", - "notes": "", - "parcelID": "17477", - "siteID": "16890", - "siteRegistry": false } ] }, { - "uuid": "eb547c49-3bf7-4984-85ec-de933d7d70ae", - "siteID": 18001, - "address": "904 Kemmer Rue", - "latitude": 55.8528, - "longitude": -129.9276, - "lastUpdated": "2020-07-29", - "city": "Midwest City", - "region": "Thompson-Okanagan", - "victoriaFile": "26250-20/7768", + "uuid": "05826f6d-29ef-418b-a886-1aff7289ba41", + "siteID": 15573, + "address": "879 Bergnaum Forks", + "latitude": 54.6539, + "longitude": -125.9769, + "lastUpdated": "2020-08-21", + "city": "Towson", + "region": " North Coast", + "victoriaFile": "26250-20/14334", "regionalFile": "N/A", "parcelIDs": [ - 9419456, - 8180384, - 9735077, - 2529829, - 9196384 + 9583483, + 4682563, + 4099718, + 6328332, + 3578688 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2015-02-16", - "completed": "2018-12-06", - "initiated": "2016-04-28", - "ministryContact": "HILLL LAMONT", + "uuid": "a746b805-66c4-4a80-8423-607e93abeda0", + "createdAt": "2017-03-12", + "completed": "2021-04-17", + "initiated": "2018-01-20", + "ministryContact": "RODRIGUEZ GODFREY", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -27397,33 +32325,44 @@ ], "notationParticipants": [ { + "uuid": "2086d679-3fba-4597-b9c9-863fdf228efd", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "uuid": "487a9c86-1ea8-4aee-876b-10bd4192aed1", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false }, { + "uuid": "6d1f26be-1c02-4af3-a6fa-b5a4add8e7dc", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "uuid": "83e4b1d1-16dc-4e59-9f72-67bd0f0ceb41", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "109d3dad-ecb3-443b-8b08-354d3f743f72", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2013-12-21", - "completed": "2016-07-25", - "initiated": "2020-08-01", - "ministryContact": "SIPES GRACE", + "uuid": "3fd24fee-6efe-411d-a687-2b13cdc66cf7", + "createdAt": "2020-10-23", + "completed": "2020-02-10", + "initiated": "2023-02-13", + "ministryContact": "QUITZON LIBBIE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -27432,33 +32371,44 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "uuid": "b350c188-f75b-4258-b0c4-656b366f327b", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": false }, { + "uuid": "727c9db5-5980-4755-b4de-144edd251578", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "95c7ce20-48ce-47c2-b8b4-d4d480801085", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false }, { + "uuid": "3a6afd24-e793-4832-b317-05ff7f4e81bc", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false + "role": "SUBMITTED BY", + "siteRegistry": true }, { + "uuid": "311b5076-257b-415e-b7b9-8b1f937bab22", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2014-07-10", - "completed": "2019-05-05", - "initiated": "2018-01-18", - "ministryContact": "NICOLAS BRENDAN", + "uuid": "4a6b136d-4922-433f-afb5-ee699a030834", + "createdAt": "2023-07-02", + "completed": "2020-05-13", + "initiated": "2018-12-18", + "ministryContact": "BOGAN VENA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -27467,144 +32417,212 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", + "uuid": "e93f18fc-a829-4455-8931-df29fe541eee", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false }, { + "uuid": "2b228701-43fc-4f79-bfd9-bd3612e233d2", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true - }, + } + ], + "siteRegistry": false + }, + { + "uuid": "91b0273c-7979-4e20-9f3d-1d416ef5f704", + "createdAt": "2019-12-04", + "completed": "2018-10-30", + "initiated": "2019-07-04", + "ministryContact": "BALISTRERI EMELIE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ { + "uuid": "41d6e779-ae72-44e2-b469-3a8eef5a3c2d", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "bad155ab-35f3-41b5-af1d-00e02940735f", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "d7899ca5-74da-4820-9a68-2897f1afbfd8", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true } ], "participants": [ { - "name": "AMET, DOLOR SIT", - "endDate": "2019-05-08", - "startDate": "2015-04-09", + "uuid": "76e21122-8f51-4615-a12e-892075641911", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2020-03-31", + "startDate": "2019-03-17", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2014-03-10", - "startDate": "2023-02-05", + "uuid": "aecb3e20-adba-4a95-8cc1-6f33cd04f85f", + "name": "IPSUM", + "endDate": "2017-01-01", + "startDate": "2016-02-05", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": false + "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2022-01-28", - "startDate": "2017-02-17", + "uuid": "299dac36-85bb-433b-8f0c-44a710c558bb", + "name": "AMET, DOLOR SIT", + "endDate": "2022-12-02", + "startDate": "2015-03-10", "notes": "", "roles": [ "ORGANIZATION" ], "siteRegistry": true - }, - { - "name": "IPSUM", - "endDate": "2022-09-07", - "startDate": "2020-11-02", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": false } ], "suspectLandUses": [ { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-06-05 (described on Site Profile dated 2017-06-05)", + "uuid": "fc4bcb53-e18d-4d09-bdd2-e1961a1e3897", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2020-01-15 (described on Site Profile dated 2020-01-15)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { + "uuid": "ad787713-afbb-45b0-889b-5f71772b4445", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-09-13 (described on Site Profile dated 2017-09-13)", + "notes": "INSERTED FOR SITE PROFILE DATED 2021-02-11 (described on Site Profile dated 2021-02-11)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "uuid": "0a2e9e46-cfb4-4a25-9a1d-5f1eb978dd20", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2022-08-19 (described on Site Profile dated 2022-08-19)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-06-08 (described on Site Profile dated 2015-06-08)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "uuid": "ab7aee2b-e3bd-41ad-b83a-c8039bfd0767", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2021-10-09 (described on Site Profile dated 2021-10-09)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], "parcelDescriptions": [ { + "uuid": "739d0f72-1eae-4573-95ad-156dd5760545", "siteRegistry": false, - "dateNoted": "2020-07-18", - "parcelID": "19301", - "crownLandUsePIN": "16166", - "crownLandFileNumber": "20472", - "landDescription": "LOT 5 OF LOT 4 BLOCK 4 DISTRICT LOT 1 PLAN 7967" + "dateNoted": "2021-03-15", + "parcelID": "20903", + "crownLandUsePIN": "16336", + "crownLandFileNumber": "16627", + "landDescription": "LOT 3 OF LOT 2 BLOCK 1 DISTRICT LOT 5 PLAN 9543" }, { - "siteRegistry": true, - "dateNoted": "2021-02-21", - "parcelID": "19103", - "crownLandUsePIN": "20773", - "crownLandFileNumber": "15242", - "landDescription": "LOT 1 OF LOT 4 BLOCK 3 DISTRICT LOT 4 PLAN 4793" + "uuid": "68ea69f8-0a92-492e-a32c-d3b87233b18e", + "siteRegistry": false, + "dateNoted": "2021-05-14", + "parcelID": "20457", + "crownLandUsePIN": "20225", + "crownLandFileNumber": "17086", + "landDescription": "LOT 4 OF LOT 3 BLOCK 3 DISTRICT LOT 4 PLAN 3293" }, { - "siteRegistry": true, - "dateNoted": "2018-05-31", - "parcelID": "18084", - "crownLandUsePIN": "19273", - "crownLandFileNumber": "15402", - "landDescription": "LOT 2 OF LOT 5 BLOCK 4 DISTRICT LOT 5 PLAN 5706" + "uuid": "f9a236d8-e0d9-444d-a38f-9740f232f0f5", + "siteRegistry": false, + "dateNoted": "2013-11-18", + "parcelID": "17924", + "crownLandUsePIN": "18769", + "crownLandFileNumber": "19273", + "landDescription": "LOT 3 OF LOT 5 BLOCK 4 DISTRICT LOT 4 PLAN 8276" } ], "siteDisclosures": [ { + "uuid": "abbb8d86-fce9-416b-b42f-b8ef2da6c314", "siteRegistry": false, - "dateReceived": "2014-11-01", - "dateCompleted": "2018-07-03", - "dateEntered": "2023-07-11", - "dateRegistrar": "2016-12-08", - "dateLocalAuthorityReceived": "2015-03-10", - "summary": "Itaque neque consectetur quia alias iste hic cumque odit laborum.", - "informationUsed": "Quos minus asperiores dolor neque pariatur harum.\nExplicabo facere ex deleniti.\nIpsa quisquam ad in modi deserunt consequuntur.\nOptio tenetur corporis natus esse odit.\nNisi fugiat earum libero modi in error sequi numquam magnam.", - "pastOrPresentOrders": "Consequatur porro quos provident at.", + "dateReceived": "2021-04-30", + "dateCompleted": "2020-05-05", + "dateEntered": "2018-05-24", + "dateRegistrar": "2016-03-14", + "dateLocalAuthorityReceived": "2018-05-10", + "summary": "Molestias fuga enim officiis assumenda.", + "informationUsed": "Rerum soluta molestias officiis molestiae aut illum.\nVero vel harum dignissimos natus impedit.\nIpsam rem deleniti magnam illum officia est.\nMollitia rem eius iusto incidunt eius officia.\nEaque quos a iure mollitia commodi.", + "pastOrPresentOrders": "Maiores voluptate nostrum dolore praesentium nam quos a.\nEum totam facere reiciendis amet.", "commercialAndIndustrialPurposes": [ { - "scheduleReference": "F1*", + "uuid": "c13057f6-58e2-4f66-98d3-647117d4a3e1", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { + "uuid": "3fb0189b-50d6-498e-a9d0-bf294a64b490", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true + "siteRegistry": false }, { + "uuid": "125805c0-6d09-4cbe-8c2c-34241e9d8c2f", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + } + ] + }, + { + "uuid": "40722856-5392-4923-b162-aaba9ef6e69e", + "siteRegistry": false, + "dateReceived": "2022-02-09", + "dateCompleted": "2018-06-11", + "dateEntered": "2017-04-15", + "dateRegistrar": "2016-08-18", + "dateLocalAuthorityReceived": "2017-07-09", + "summary": "Nisi provident odit expedita enim suscipit cupiditate quo aspernatur.\nNeque amet amet aut deleniti.", + "informationUsed": "Explicabo ea vel.\nVoluptatibus iure doloribus laudantium expedita vel repudiandae.\nQuasi nulla occaecati consequuntur autem distinctio voluptates iusto consequuntur maiores.\nAmet aperiam dolore reprehenderit iure amet.\nA omnis eaque culpa totam earum dolorum.", + "pastOrPresentOrders": "Earum numquam labore ullam necessitatibus architecto debitis blanditiis.\nIusto suscipit alias dolores accusantium.", + "commercialAndIndustrialPurposes": [ + { + "uuid": "3bc46ddb-04c2-4cdf-8547-5ab5951e5ec3", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "uuid": "eb3d365a-fbd6-402f-b3d5-8be8df4b068c", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { + "uuid": "0f762ac2-5d02-46d1-b689-243397b37da4", "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "uuid": "5b6f87fb-14ca-439f-a22a-8165d71d0c92", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false } ] @@ -27612,91 +32630,106 @@ ], "activityLog": [ { + "uuid": "00dffbc9-483f-4c43-b1fb-11f81b2c8d23", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "SCHOEN WESTLEY", - "timestamp": "2015-04-18" + "user": "BEATTY CORA", + "timestamp": "2014-06-22" }, { - "siteRegistry": false, + "uuid": "0016ef88-89d5-41c8-9b6d-b9fdadb95af7", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "STEHR MICHELE", + "timestamp": "2020-04-16" + }, + { + "uuid": "d14c3100-72bd-483f-8edd-536f32feadfa", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "BERNHARD ROMAN", - "timestamp": "2019-05-15" + "user": "WITTING KATHLYN", + "timestamp": "2015-12-03" }, { + "uuid": "553a1581-40ac-46f2-9ee5-76d9bdf4f286", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "QUIGLEY ROSELLA", - "timestamp": "2020-02-10" + "user": "TREMBLAY ROXANE", + "timestamp": "2016-02-24" }, { + "uuid": "6cf4178a-e14b-4536-b1b9-2900610cb74a", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "FERRY FEDERICO", - "timestamp": "2023-10-03" + "user": "GOODWIN ISAC", + "timestamp": "2022-04-06" }, { + "uuid": "8b4c01d2-a588-4051-97ec-91d6610b8a03", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "GULGOWSKI KAELYN", - "timestamp": "2021-09-20" + "user": "MCDERMOTT GIOVANNA", + "timestamp": "2016-12-03" + }, + { + "uuid": "afcd285a-bac6-46da-8369-8eade751de93", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "NITZSCHE RYAN", + "timestamp": "2016-12-24" }, { + "uuid": "1cf8b9eb-94a2-4f2f-b365-71ac0ba89e8b", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "WATSICA KOBE", - "timestamp": "2017-04-15" + "user": "LEDNER MOSSIE", + "timestamp": "2023-08-14" + }, + { + "uuid": "67d1e2cc-5e5b-4069-a49b-373e01b1764b", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "LEANNON TATUM", + "timestamp": "2017-04-07" } ], "associatedSites": [ { - "dateNoted": "2013-11-10", - "notes": "", - "parcelID": "18771", - "siteID": "19235", - "siteRegistry": true - }, - { - "dateNoted": "2018-10-30", + "uuid": "7f9918ba-aeee-4ced-b787-255f3a0cb3bb", + "dateNoted": "2020-02-01", "notes": "", - "parcelID": "20351", - "siteID": "18770", + "parcelID": "18556", + "siteID": "16026", "siteRegistry": true - }, - { - "dateNoted": "2016-07-11", - "notes": "", - "parcelID": "18319", - "siteID": "17951", - "siteRegistry": false } ] }, { - "uuid": "8488aed5-0c88-47fb-8ca3-7d467ca2c004", - "siteID": 17483, - "address": "770 Dana Rest", - "latitude": 49.4753, - "longitude": -127.3122, - "lastUpdated": "2014-11-23", - "city": "North Tremayne", - "region": "Vancouver Island/Coast", - "victoriaFile": "26250-20/13594", + "uuid": "94ee00b5-7adc-429b-a9bd-6d50330e2cf3", + "siteID": 19927, + "address": "152 Conroy Road", + "latitude": 50.4579, + "longitude": -133.6263, + "lastUpdated": "2021-01-25", + "city": "North Isidroworth", + "region": "Thompson-Okanagan", + "victoriaFile": "26250-20/3939", "regionalFile": "N/A", "parcelIDs": [ - 9590807, - 9154774, - 8337456, - 3706474, - 3695771 + 5931548, + 171153, + 8610097, + 143352, + 8583667 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2014-10-01", - "completed": "2018-08-17", - "initiated": "2017-01-21", - "ministryContact": "RUSSEL JANAE", + "uuid": "05fcce83-9a3c-4c7c-88b0-d12ccfe4611a", + "createdAt": "2020-06-13", + "completed": "2021-10-09", + "initiated": "2021-03-31", + "ministryContact": "BECHTELAR JOSHUA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -27705,38 +32738,26 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { + "uuid": "eda12202-e2e8-4b7c-a3e0-589266fb3cc5", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "uuid": "7ca3da41-af55-4881-b2cb-7cc8cbb574f1", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": true } ], "siteRegistry": true }, { - "createdAt": "2017-12-06", - "completed": "2021-05-10", - "initiated": "2015-11-22", - "ministryContact": "RUNOLFSSON ANTOINETTE", + "uuid": "32a48425-aa6f-4ddf-8c1c-5ab5fc90a7ad", + "createdAt": "2019-09-11", + "completed": "2023-07-05", + "initiated": "2020-12-12", + "ministryContact": "STANTON CONNOR", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -27745,23 +32766,38 @@ ], "notationParticipants": [ { + "uuid": "67020948-8fb9-46a9-8c23-86de8130f1cf", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "uuid": "d58c5bbf-15f1-4436-a7d5-d11fabf597da", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "uuid": "e088c990-ea3d-4fbd-8133-54a586a3e508", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false }, { + "uuid": "f5886da8-b3d3-4711-875c-0b725b09e688", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false } ], "siteRegistry": true }, { - "createdAt": "2013-11-12", - "completed": "2015-06-01", - "initiated": "2018-06-04", - "ministryContact": "ERNSER ELSE", + "uuid": "798447e7-dd7f-4647-8892-14abf5f2dede", + "createdAt": "2021-12-30", + "completed": "2017-09-26", + "initiated": "2020-06-04", + "ministryContact": "WINDLER ANIBAL", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -27770,28 +32806,26 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "0b133b25-31d9-4c52-922f-9c881ce5e200", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", "siteRegistry": false }, { + "uuid": "b375b3fa-306c-4ddb-8073-539dab57a06e", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false + "role": "SUBMITTED BY", + "siteRegistry": true } ], "siteRegistry": true }, { - "createdAt": "2017-12-12", - "completed": "2019-02-06", - "initiated": "2017-09-28", - "ministryContact": "DONNELLY CANDIDA", + "uuid": "92572830-88f2-4baa-ab6c-44d463ba9acd", + "createdAt": "2023-04-26", + "completed": "2014-11-24", + "initiated": "2021-06-04", + "ministryContact": "NOLAN JANNIE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -27800,16 +32834,19 @@ ], "notationParticipants": [ { + "uuid": "1d541b0d-6630-4f53-a20a-23b3a76f744e", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { + "uuid": "8775902e-a900-4092-9b24-35a67572973b", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": true }, { + "uuid": "cff439e3-60a7-4cf9-bbd5-db3e50ec0c27", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true @@ -27818,10 +32855,11 @@ "siteRegistry": false }, { - "createdAt": "2014-03-22", - "completed": "2015-09-12", - "initiated": "2015-02-28", - "ministryContact": "MORISSETTE DELPHA", + "uuid": "bd76d818-4133-4f0f-ac8a-2360db043280", + "createdAt": "2020-03-04", + "completed": "2017-06-25", + "initiated": "2014-07-07", + "ministryContact": "STREICH FLETA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -27830,24 +32868,50 @@ ], "notationParticipants": [ { + "uuid": "7fdd7e52-7338-4cd0-b8ee-46d1b35070ba", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false }, { + "uuid": "de912b51-ae05-4083-88ca-0cfedf94927f", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "2db23626-2b3e-4eb2-8b09-4d1d8f3b70ab", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true + }, + { + "uuid": "68fb44da-de92-43f9-bbc4-6343d4d4a750", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false } ], "participants": [ { + "uuid": "4c4afd8f-1604-4605-a863-ce92c2c768a9", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2016-09-10", + "startDate": "2021-04-27", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "uuid": "245bc221-5e3e-4f93-a692-69c1fc353b9f", "name": "IPSUM", - "endDate": "2016-10-31", - "startDate": "2021-07-14", + "endDate": "2017-10-28", + "startDate": "2014-03-28", "notes": "", "roles": [ "EMPLOYEE" @@ -27855,87 +32919,96 @@ "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2023-05-15", - "startDate": "2018-09-22", + "uuid": "261e0bd6-8f16-43d2-ab55-24d7c014ff64", + "name": "AMET, DOLOR SIT", + "endDate": "2016-08-15", + "startDate": "2023-06-20", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true } ], "suspectLandUses": [ { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-07-07 (described on Site Profile dated 2021-07-07)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" - }, - { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-12-04 (described on Site Profile dated 2014-12-04)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "uuid": "d3bd2af9-a8c6-49af-9e21-b03862388fd7", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2016-08-28 (described on Site Profile dated 2016-08-28)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { + "uuid": "91bc1d1e-9268-4a9c-a2eb-2af11d31dfad", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-11-18 (described on Site Profile dated 2015-11-18)", + "notes": "INSERTED FOR SITE PROFILE DATED 2023-08-15 (described on Site Profile dated 2023-08-15)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-04-29 (described on Site Profile dated 2017-04-29)", + "uuid": "48b09767-a78d-4070-8031-efe323a54223", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2021-02-21 (described on Site Profile dated 2021-02-21)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], "parcelDescriptions": [ { + "uuid": "bb910abd-d065-48f5-afb5-469f9e7e6f17", "siteRegistry": true, - "dateNoted": "2022-03-09", - "parcelID": "19431", - "crownLandUsePIN": "19916", - "crownLandFileNumber": "15241", - "landDescription": "LOT 1 OF LOT 4 BLOCK 1 DISTRICT LOT 4 PLAN 9453" + "dateNoted": "2017-02-13", + "parcelID": "18700", + "crownLandUsePIN": "20530", + "crownLandFileNumber": "20023", + "landDescription": "LOT 5 OF LOT 4 BLOCK 3 DISTRICT LOT 4 PLAN 6005" }, { + "uuid": "58fc4199-295e-44ca-9c20-5ff75b4af75a", "siteRegistry": true, - "dateNoted": "2016-01-09", - "parcelID": "19459", - "crownLandUsePIN": "15570", - "crownLandFileNumber": "20577", - "landDescription": "LOT 3 OF LOT 1 BLOCK 1 DISTRICT LOT 2 PLAN 6572" + "dateNoted": "2019-04-07", + "parcelID": "19534", + "crownLandUsePIN": "17806", + "crownLandFileNumber": "17700", + "landDescription": "LOT 4 OF LOT 5 BLOCK 4 DISTRICT LOT 2 PLAN 9644" + }, + { + "uuid": "68185434-3e7d-46a0-a956-812e9fa0d7df", + "siteRegistry": false, + "dateNoted": "2017-02-20", + "parcelID": "19461", + "crownLandUsePIN": "18797", + "crownLandFileNumber": "20443", + "landDescription": "LOT 2 OF LOT 2 BLOCK 1 DISTRICT LOT 3 PLAN 8398" }, { + "uuid": "acee711d-9e62-4d71-9c02-0ff241b8e7f6", "siteRegistry": true, - "dateNoted": "2016-04-10", - "parcelID": "18615", - "crownLandUsePIN": "16199", - "crownLandFileNumber": "18959", - "landDescription": "LOT 2 OF LOT 4 BLOCK 2 DISTRICT LOT 4 PLAN 4346" + "dateNoted": "2021-07-09", + "parcelID": "15338", + "crownLandUsePIN": "18436", + "crownLandFileNumber": "18643", + "landDescription": "LOT 2 OF LOT 5 BLOCK 2 DISTRICT LOT 1 PLAN 6935" } ], "siteDisclosures": [ { + "uuid": "fc55f918-3148-4f58-a74a-0f5af49e5bdb", "siteRegistry": true, - "dateReceived": "2015-08-27", - "dateCompleted": "2021-12-18", - "dateEntered": "2014-11-03", - "dateRegistrar": "2013-11-20", - "dateLocalAuthorityReceived": "2022-04-25", - "summary": "Ipsum laborum eligendi qui et quis deserunt officiis exercitationem eligendi.", - "informationUsed": "Occaecati necessitatibus eveniet animi amet.\nOdio veritatis nihil suscipit ipsam error iste.\nQuasi reprehenderit ducimus.", - "pastOrPresentOrders": "Maiores hic atque consequatur laborum sequi sit in.", + "dateReceived": "2018-03-07", + "dateCompleted": "2018-10-15", + "dateEntered": "2016-05-19", + "dateRegistrar": "2023-07-10", + "dateLocalAuthorityReceived": "2015-11-20", + "summary": "Nemo error veniam iusto.\nPariatur laboriosam adipisci hic vel porro dolores.", + "informationUsed": "Magnam quisquam deserunt enim soluta maxime ab magnam velit.\nConsequatur beatae distinctio suscipit eveniet necessitatibus.\nMinima exercitationem ad officiis voluptas eaque iusto qui temporibus optio.\nTotam asperiores laborum omnis.", + "pastOrPresentOrders": "Facilis laborum temporibus tenetur quae.", "commercialAndIndustrialPurposes": [ { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false - }, - { + "uuid": "25778a6d-1ed9-4afa-9b1c-e920900596f8", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true + "siteRegistry": false }, { + "uuid": "6d34c669-2450-4a0d-9f35-ed3dac0e716a", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false @@ -27943,138 +33016,148 @@ ] }, { + "uuid": "a70a02da-b4c6-4120-b9ba-515c04935ebb", "siteRegistry": true, - "dateReceived": "2014-09-18", - "dateCompleted": "2022-11-04", - "dateEntered": "2020-11-12", - "dateRegistrar": "2016-11-30", - "dateLocalAuthorityReceived": "2021-12-12", - "summary": "Rem laborum temporibus praesentium voluptas aut animi autem praesentium.\nIure nisi excepturi officiis iste vitae eos quia.", - "informationUsed": "Accusantium voluptatum voluptas quaerat nisi deleniti ipsa nobis molestias quod.\nOmnis voluptates ipsa modi.\nQuasi accusamus hic officiis ratione beatae.\nIllum eum culpa nihil nam.\nTotam cumque magni tenetur quia cumque rem pariatur minus.", - "pastOrPresentOrders": "Vel animi itaque repellendus saepe dolore voluptas.", + "dateReceived": "2017-02-12", + "dateCompleted": "2017-03-22", + "dateEntered": "2016-08-03", + "dateRegistrar": "2018-12-31", + "dateLocalAuthorityReceived": "2016-11-12", + "summary": "Quis modi quam dicta quasi eligendi aliquam illo.", + "informationUsed": "Commodi harum nulla beatae tenetur iusto debitis veniam.\nEaque molestiae vero inventore commodi neque natus.\nMagni voluptatem exercitationem.", + "pastOrPresentOrders": "Omnis quod quod at nesciunt libero.\nCommodi animi laborum odit illo optio quasi maiores.\nAut nam sunt.", "commercialAndIndustrialPurposes": [ { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "uuid": "e479b42d-fd9a-406a-9b2a-422dcc93fd12", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { + "uuid": "407a7a5c-34c0-4f17-943d-8637aee1998c", "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false }, { + "uuid": "5072ba53-b75a-46d0-b0de-e918553805f5", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, { + "uuid": "b2d8758b-3874-4537-80eb-e3d57302f117", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false + "siteRegistry": true } ] } ], "activityLog": [ { + "uuid": "0f3fc51e-0cdf-40e4-afb3-c378d9a07656", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "STEUBER JOSIANE", - "timestamp": "2016-11-04" + "user": "BARROWS NETTIE", + "timestamp": "2014-04-19" }, { + "uuid": "b319837d-7296-4a10-a3e3-f3c6c726fda3", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "LEDNER MOLLY", - "timestamp": "2016-04-06" + "user": "CROOKS MISAEL", + "timestamp": "2018-11-01" }, { - "siteRegistry": true, + "uuid": "77ffe1e0-f2f1-4925-a81a-dc9abbddc78d", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "ROMAGUERA EARLINE", - "timestamp": "2016-12-21" + "user": "ANDERSON CHARLENE", + "timestamp": "2014-09-10" }, { + "uuid": "a093a138-3adb-4f27-8c9a-ea41a0e6e3ff", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "DAVIS LAVONNE", - "timestamp": "2021-07-23" + "user": "GISLASON PERCY", + "timestamp": "2021-10-02" }, { + "uuid": "985bbddf-0445-40f1-ace0-0649eb992b54", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "ROGAHN BETHANY", - "timestamp": "2014-08-29" + "user": "SCHAMBERGER KAMERON", + "timestamp": "2023-02-14" }, { + "uuid": "e115f00f-62b2-4a0d-8a79-45a605e58d1f", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "WISOKY VIRGINIA", - "timestamp": "2014-01-10" + "user": "BOTSFORD TRENT", + "timestamp": "2013-12-24" }, { + "uuid": "9922b236-9244-49ae-abcb-d707bcedece3", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "TORPHY KARINE", - "timestamp": "2023-04-13" - }, - { - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "HINTZ ARDEN", - "timestamp": "2016-04-02" + "user": "KUNDE DANIELLE", + "timestamp": "2016-05-30" } ], "associatedSites": [ { - "dateNoted": "2015-05-24", + "uuid": "be85f00c-3f0c-4aed-ac99-fbed21e0a8ab", + "dateNoted": "2020-02-26", "notes": "", - "parcelID": "19952", - "siteID": "20424", - "siteRegistry": true + "parcelID": "16649", + "siteID": "18583", + "siteRegistry": false }, { - "dateNoted": "2020-11-22", + "uuid": "8b861ce5-4422-4ea3-b624-799b1f500e04", + "dateNoted": "2017-05-10", "notes": "", - "parcelID": "19842", - "siteID": "15211", + "parcelID": "20763", + "siteID": "15722", "siteRegistry": false }, { - "dateNoted": "2022-04-13", + "uuid": "f198d647-9c9b-4963-a092-402145acab46", + "dateNoted": "2020-07-07", "notes": "", - "parcelID": "18233", - "siteID": "16253", + "parcelID": "19768", + "siteID": "19481", "siteRegistry": false } ] }, { - "uuid": "030710aa-0558-46c5-8104-b38a2bf00036", - "siteID": 20886, - "address": "72029 Hahn Brook", - "latitude": 49.3788, - "longitude": -138.4547, - "lastUpdated": "2023-04-02", - "city": "Pourosborough", - "region": " North Coast", - "victoriaFile": "26250-20/7857", + "uuid": "a7c3f495-3ac3-4706-b742-a213a18fcba1", + "siteID": 18021, + "address": "811 Treutel Cape", + "latitude": 50.9473, + "longitude": -133.5551, + "lastUpdated": "2021-10-12", + "city": "South Kari", + "region": "Kootenay", + "victoriaFile": "26250-20/15278", "regionalFile": "N/A", "parcelIDs": [ - 5043105, - 8356588, - 4487158, - 8004690, - 5189366 + 9706538, + 8959900, + 3434412, + 4703417, + 7643178 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2018-06-14", - "completed": "2014-04-11", - "initiated": "2019-06-23", - "ministryContact": "GOLDNER CONNIE", + "uuid": "822dee67-f065-47bb-8b15-5a5593836bf6", + "createdAt": "2019-11-06", + "completed": "2019-04-19", + "initiated": "2013-12-30", + "ministryContact": "BEDNAR WARD", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -28083,68 +33166,38 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "090be348-4511-42a1-90cc-578e526e4afc", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { + "uuid": "2bff7593-cb83-4b0b-8245-f9e7d3ee1b83", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - } - ], - "siteRegistry": true - }, - { - "createdAt": "2016-06-11", - "completed": "2015-08-22", - "initiated": "2014-10-13", - "ministryContact": "D'AMORE FILOMENA", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { + "uuid": "0cb4f629-3254-4bf9-a98a-c05a715968fa", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", + "uuid": "63670a7e-5ee0-40ab-b581-2cd2c4ee7dcd", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false } ], "siteRegistry": false }, { - "createdAt": "2020-03-13", - "completed": "2014-03-03", - "initiated": "2017-05-25", - "ministryContact": "BAUCH ANNABELLE", + "uuid": "606722e3-5103-4831-bb8f-8202e0ea5530", + "createdAt": "2018-08-08", + "completed": "2022-08-19", + "initiated": "2023-04-06", + "ministryContact": "LEANNON KEVIN", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -28153,63 +33206,44 @@ ], "notationParticipants": [ { + "uuid": "96471956-26e9-4b1b-a739-4c40bfa93c98", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - } - ], - "siteRegistry": false - }, - { - "createdAt": "2014-10-09", - "completed": "2014-09-30", - "initiated": "2019-11-06", - "ministryContact": "DICKINSON ASIA", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { + "uuid": "16b80ddf-c923-4357-84fc-d2646f5a5be0", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true }, { + "uuid": "628e31aa-d30a-4776-820b-8b48eeb7c92a", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "a18518cb-4439-41bd-9878-c00f0a8d8a5d", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", + "uuid": "9209b131-32a1-4747-acff-f149b96f036f", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false } ], "siteRegistry": true }, { - "createdAt": "2013-12-29", - "completed": "2020-04-03", - "initiated": "2017-01-17", - "ministryContact": "HEGMANN BLAZE", + "uuid": "4564bece-cbbe-40ac-8825-6e71563e5a2f", + "createdAt": "2014-07-19", + "completed": "2014-03-14", + "initiated": "2023-06-22", + "ministryContact": "KOSS REINA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -28218,24 +33252,28 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "f7696a18-9dfd-4a5a-b486-b88423ac1a9d", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { + "uuid": "7710f449-5073-49c9-b45a-a36b601c119c", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true }, { + "uuid": "9a60678c-7cd8-4098-a86e-1805946828f4", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false + }, + { + "uuid": "0356280a-f529-4b61-b985-02edd949fdeb", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false } ], "siteRegistry": false @@ -28243,9 +33281,10 @@ ], "participants": [ { - "name": "AMET, DOLOR SIT", - "endDate": "2023-01-08", - "startDate": "2022-01-09", + "uuid": "6f9551a7-3b03-48dd-9ad6-fb57de7df08c", + "name": "IPSUM", + "endDate": "2019-03-24", + "startDate": "2022-07-01", "notes": "", "roles": [ "EMPLOYEE" @@ -28253,9 +33292,10 @@ "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2023-06-11", - "startDate": "2021-07-19", + "uuid": "c9d34f5b-8ac2-40ab-b7fd-b9e628c8a857", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2014-04-21", + "startDate": "2016-03-15", "notes": "", "roles": [ "EMPLOYEE" @@ -28263,140 +33303,139 @@ "siteRegistry": false }, { + "uuid": "aa12eb2b-c02c-478a-ac62-321bb54a9e6f", "name": "IPSUM", - "endDate": "2022-01-08", - "startDate": "2014-03-22", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": false - }, - { - "name": "AMET, DOLOR SIT", - "endDate": "2020-08-18", - "startDate": "2015-08-31", + "endDate": "2014-01-19", + "startDate": "2018-09-17", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false } ], "suspectLandUses": [ { + "uuid": "1b574ef6-79e0-4ff3-97d7-39951c12984d", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2023-09-18 (described on Site Profile dated 2023-09-18)", + "notes": "INSERTED FOR SITE PROFILE DATED 2022-08-22 (described on Site Profile dated 2022-08-22)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-07-25 (described on Site Profile dated 2016-07-25)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "uuid": "ba72fcaa-2770-4f14-baed-4632ab0f0a2f", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2019-03-15 (described on Site Profile dated 2019-03-15)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-07-14 (described on Site Profile dated 2022-07-14)", + "uuid": "57432399-04e6-4606-ba38-990f15672925", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2018-04-21 (described on Site Profile dated 2018-04-21)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { + "uuid": "acd2e8ed-39e2-4de6-bf9d-5ec344f3b164", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-07-20 (described on Site Profile dated 2015-07-20)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" - }, - { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-01-25 (described on Site Profile dated 2018-01-25)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "notes": "INSERTED FOR SITE PROFILE DATED 2019-03-18 (described on Site Profile dated 2019-03-18)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], "parcelDescriptions": [ { + "uuid": "933c8915-6433-454a-9b22-bd3c1cd6e601", "siteRegistry": false, - "dateNoted": "2019-01-03", - "parcelID": "16985", - "crownLandUsePIN": "18012", - "crownLandFileNumber": "19732", - "landDescription": "LOT 3 OF LOT 2 BLOCK 5 DISTRICT LOT 4 PLAN 8612" - }, - { - "siteRegistry": true, - "dateNoted": "2022-04-27", - "parcelID": "17461", - "crownLandUsePIN": "20641", - "crownLandFileNumber": "20714", - "landDescription": "LOT 5 OF LOT 4 BLOCK 3 DISTRICT LOT 1 PLAN 5505" + "dateNoted": "2015-08-31", + "parcelID": "17184", + "crownLandUsePIN": "20954", + "crownLandFileNumber": "17487", + "landDescription": "LOT 3 OF LOT 3 BLOCK 2 DISTRICT LOT 2 PLAN 5186" }, { + "uuid": "d3d7c4c2-0b81-4672-9915-66d9718ce730", "siteRegistry": false, - "dateNoted": "2017-10-24", - "parcelID": "16115", - "crownLandUsePIN": "16420", - "crownLandFileNumber": "16327", - "landDescription": "LOT 2 OF LOT 5 BLOCK 1 DISTRICT LOT 3 PLAN 4536" + "dateNoted": "2015-01-27", + "parcelID": "17321", + "crownLandUsePIN": "15282", + "crownLandFileNumber": "16782", + "landDescription": "LOT 3 OF LOT 3 BLOCK 2 DISTRICT LOT 5 PLAN 3882" }, { - "siteRegistry": true, - "dateNoted": "2015-01-13", - "parcelID": "20891", - "crownLandUsePIN": "15340", - "crownLandFileNumber": "19982", - "landDescription": "LOT 5 OF LOT 2 BLOCK 4 DISTRICT LOT 3 PLAN 3808" + "uuid": "518c1154-cf0f-4c34-9754-d92db2a4afa4", + "siteRegistry": false, + "dateNoted": "2023-04-17", + "parcelID": "20931", + "crownLandUsePIN": "17497", + "crownLandFileNumber": "20525", + "landDescription": "LOT 3 OF LOT 1 BLOCK 2 DISTRICT LOT 3 PLAN 3636" } ], "siteDisclosures": [ { + "uuid": "c11722c8-5032-439f-8cf3-6f02800d71dd", "siteRegistry": true, - "dateReceived": "2022-02-19", - "dateCompleted": "2023-04-29", - "dateEntered": "2013-12-07", - "dateRegistrar": "2018-04-19", - "dateLocalAuthorityReceived": "2017-05-02", - "summary": "Necessitatibus mollitia eum impedit suscipit.\nCorrupti ad rerum totam quis.", - "informationUsed": "Facilis nostrum quos.\nNon est tenetur.\nMaxime quibusdam soluta ipsam quam sapiente commodi ab porro.", - "pastOrPresentOrders": "Nemo itaque accusantium corporis temporibus odit.\nReprehenderit nobis non dolores deserunt quaerat.\nFugiat quae deleniti facere alias.", + "dateReceived": "2023-03-15", + "dateCompleted": "2014-11-27", + "dateEntered": "2020-07-13", + "dateRegistrar": "2020-10-29", + "dateLocalAuthorityReceived": "2015-05-04", + "summary": "Minus quis quo vero reiciendis voluptatibus quisquam provident quaerat.\nBlanditiis nisi exercitationem eos.\nIure sit consectetur ipsum ipsam ipsum.", + "informationUsed": "Similique magnam necessitatibus aperiam.\nFugiat earum cumque deserunt aliquam.\nVeritatis voluptas vero aliquam quisquam quis rem.", + "pastOrPresentOrders": "Ut animi molestias distinctio soluta ipsam sit nulla voluptas.", "commercialAndIndustrialPurposes": [ { + "uuid": "07794884-4828-43e4-a534-0573012d65c1", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "uuid": "6af0f326-27e2-4483-bf82-7201372dbfe1", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "uuid": "b3038cc2-c8df-43ec-92c5-9ffcea670bae", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false } ] }, { - "siteRegistry": false, - "dateReceived": "2016-11-26", - "dateCompleted": "2017-02-10", - "dateEntered": "2018-08-29", - "dateRegistrar": "2016-04-23", - "dateLocalAuthorityReceived": "2017-01-14", - "summary": "Delectus natus adipisci nobis eius esse.\nExpedita deleniti accusantium dicta quis saepe repellat doloribus.\nRecusandae veniam laborum necessitatibus dolorum explicabo neque magni commodi nisi.", - "informationUsed": "Qui harum maxime ipsam quas.\nOfficia tempore nisi eveniet necessitatibus.\nDucimus a accusantium vero.\nSapiente laborum numquam officiis iusto reiciendis velit quibusdam.\nIncidunt animi dolorem necessitatibus nam quidem ad.", - "pastOrPresentOrders": "Corrupti sint laudantium delectus commodi incidunt vel iure necessitatibus.", + "uuid": "7097536e-593f-4d22-8f41-3321933e9d0a", + "siteRegistry": true, + "dateReceived": "2020-01-11", + "dateCompleted": "2022-02-20", + "dateEntered": "2021-10-05", + "dateRegistrar": "2014-11-08", + "dateLocalAuthorityReceived": "2021-02-26", + "summary": "Animi perferendis repellat.\nConsequatur quidem deleniti aliquid consequuntur in sapiente ipsum accusantium tempora.", + "informationUsed": "Nulla rerum atque laboriosam illo accusamus dolor.\nIpsam facilis assumenda impedit modi dolores aliquam natus.\nNecessitatibus ad dicta quos architecto harum nobis optio nulla error.", + "pastOrPresentOrders": "Nam voluptate nihil harum deleniti.\nAt exercitationem sit mollitia.\nOccaecati quidem provident error.", "commercialAndIndustrialPurposes": [ { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true + "uuid": "1e5f380c-1bb1-4a9a-b564-fd105e2b9c57", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false }, { - "scheduleReference": "F1*", + "uuid": "2f61614a-49f2-46fd-975d-d02c9eff84c2", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, { + "uuid": "2b2641e3-4704-4110-8e93-e3348df504b0", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false + "siteRegistry": true }, { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "uuid": "705cf68c-4d29-464b-a525-329ffafd1674", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true } ] @@ -28404,90 +33443,93 @@ ], "activityLog": [ { - "siteRegistry": false, + "uuid": "1355d302-1cf3-4f26-a75f-1a0fefd7bc49", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "SKILES TOBIN", - "timestamp": "2020-12-08" + "user": "DIBBERT COLTON", + "timestamp": "2014-03-11" }, { - "siteRegistry": false, + "uuid": "551e9166-fdfb-4480-a35f-6750246a950b", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "ANKUNDING ANYA", - "timestamp": "2016-01-24" + "user": "BARTELL ROSALEE", + "timestamp": "2021-08-17" }, { + "uuid": "8989ab3f-f56e-4611-8929-ca8bb6e6875f", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "SCHMITT CASSANDRE", - "timestamp": "2016-09-18" + "user": "MCCULLOUGH ANDRES", + "timestamp": "2023-05-15" }, { - "siteRegistry": false, + "uuid": "17f2cdd5-8744-441a-b9ad-a2773379908e", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "ALTENWERTH FAUSTINO", - "timestamp": "2017-08-15" + "user": "WISOKY BERNADINE", + "timestamp": "2021-01-06" }, { + "uuid": "b6fd4909-262f-489a-a1a9-410d5b278936", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "PROSACCO LAURIANNE", - "timestamp": "2021-02-22" - }, - { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "PARISIAN-O'CONNELL KIERA", - "timestamp": "2020-04-16" + "user": "CONSIDINE KATLYNN", + "timestamp": "2022-10-12" }, { - "siteRegistry": true, + "uuid": "899f378a-9b30-4b59-a90e-3c73c9c4c2a8", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "MILLER-JERDE AMARI", - "timestamp": "2018-04-24" + "user": "WILKINSON ELNORA", + "timestamp": "2023-02-25" } ], "associatedSites": [ { - "dateNoted": "2016-01-04", + "uuid": "04b493ac-c8ea-4093-944e-025490ea5e82", + "dateNoted": "2020-09-30", "notes": "", - "parcelID": "15710", - "siteID": "18134", + "parcelID": "15371", + "siteID": "16419", "siteRegistry": false }, { - "dateNoted": "2014-08-04", + "uuid": "43b46707-72a8-4e8c-bbd3-3bd6827e5187", + "dateNoted": "2015-02-04", "notes": "", - "parcelID": "15729", - "siteID": "19390", - "siteRegistry": false + "parcelID": "20482", + "siteID": "18069", + "siteRegistry": true } ] }, { - "uuid": "1bdaab46-73d2-4833-b1ad-a33e59e6fd85", - "siteID": 20080, - "address": "73003 Zoila Via", - "latitude": 54.8841, - "longitude": -125.4276, - "lastUpdated": "2023-05-22", - "city": "O'Connerworth", - "region": "Mainland/Southwest", - "victoriaFile": "26250-20/10021", + "uuid": "b9a19aef-6c26-4bb4-82b5-9e3aa6bbdf0c", + "siteID": 18505, + "address": "26115 Lyric View", + "latitude": 58.1535, + "longitude": -130.5233, + "lastUpdated": "2021-05-08", + "city": "Fort Alexis", + "region": "Vancouver Island/Coast", + "victoriaFile": "26250-20/8632", "regionalFile": "N/A", "parcelIDs": [ - 7631958, - 3217252, - 8823636, - 8260701, - 734250 + 2742973, + 9971444, + 6368537, + 1647248, + 7120547 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2022-06-26", - "completed": "2017-08-06", - "initiated": "2014-01-14", - "ministryContact": "ZULAUF LAVONNE", + "uuid": "20f1fc19-3224-4b35-9339-4bd6b4db0c58", + "createdAt": "2017-10-04", + "completed": "2022-05-18", + "initiated": "2015-11-30", + "ministryContact": "HARBER KAREEM", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -28496,38 +33538,32 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", + "uuid": "beba0185-ea11-45f2-a719-d3c66ee5aadc", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true }, { + "uuid": "d8b36cc5-95b1-48a5-b000-d2b2987e44e9", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", + "uuid": "dc299a55-6dfa-4b59-8195-5035902c167b", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2022-04-07", - "completed": "2013-10-21", - "initiated": "2019-05-25", - "ministryContact": "KUPHAL REVA", + "uuid": "99e180d4-9d3b-4cef-8e90-208e60e91da4", + "createdAt": "2020-05-09", + "completed": "2019-08-13", + "initiated": "2023-01-22", + "ministryContact": "ORN ASTRID", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -28536,33 +33572,38 @@ ], "notationParticipants": [ { + "uuid": "58b8c1d1-8072-42e3-80ff-9474d06dbecd", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", + "uuid": "2ec7a9c9-934c-488f-aeb6-da8a2bde11a9", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { + "uuid": "43ff0c9f-2bfb-4f96-8752-80aa6fa24143", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { + "uuid": "885bc7e5-a29b-4dc6-ae8f-6e7b8930da49", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false + "role": "REQUESTED BY", + "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2017-12-20", - "completed": "2015-12-07", - "initiated": "2016-09-28", - "ministryContact": "GIBSON JOHNPAUL", + "uuid": "0339d28d-38bb-4eb8-b27e-0c4ba6e56702", + "createdAt": "2017-12-03", + "completed": "2016-06-11", + "initiated": "2017-12-10", + "ministryContact": "NICOLAS IGNACIO", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -28571,38 +33612,32 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "uuid": "da370896-e3ba-49e4-947b-1cfa5371548a", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { + "uuid": "1a2cda13-6b4a-47a9-b05a-fe3f5d64b1dc", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", + "uuid": "7cad26a6-0712-431e-a669-3d2eeb36973a", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false } ], "siteRegistry": true }, { - "createdAt": "2020-05-30", - "completed": "2019-03-24", - "initiated": "2016-06-14", - "ministryContact": "GRADY NONA", + "uuid": "7d9bb57a-a987-4edb-9297-9b053980e147", + "createdAt": "2016-01-24", + "completed": "2017-05-24", + "initiated": "2023-08-02", + "ministryContact": "MOHR MYRIAM", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -28611,22 +33646,20 @@ ], "notationParticipants": [ { + "uuid": "54a11584-c51a-489d-9b18-77f8ac42586d", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true }, { + "uuid": "0cbb5534-1b7a-41b3-9d98-1ae213f09dc5", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", + "uuid": "5a581bfc-e39a-41ff-82f4-3189979baf82", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false } @@ -28634,10 +33667,11 @@ "siteRegistry": false }, { - "createdAt": "2020-12-08", - "completed": "2018-04-15", - "initiated": "2018-12-12", - "ministryContact": "CUMMINGS ASHTYN", + "uuid": "6bd99450-ae8e-4583-8521-d24d8431b505", + "createdAt": "2014-09-16", + "completed": "2018-04-10", + "initiated": "2023-06-13", + "ministryContact": "RICE-RAYNOR MARCUS", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -28646,24 +33680,28 @@ ], "notationParticipants": [ { + "uuid": "69881edf-d70b-4695-8be0-5b2da3a6560f", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false + "uuid": "6eb2a99a-ccda-4cb1-9ce4-b2cb80b78da9", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "1c658e77-6a81-4a5b-afc7-523dc90d96f0", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true + "uuid": "51bfbc4c-41f5-490f-b0de-39e74e810f47", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false } ], "siteRegistry": false @@ -28671,133 +33709,156 @@ ], "participants": [ { - "name": "AMET, DOLOR SIT", - "endDate": "2016-06-09", - "startDate": "2016-03-24", + "uuid": "47d7747c-f98f-457b-82a8-478c953fd1de", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2021-11-13", + "startDate": "2022-07-11", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], - "siteRegistry": false + "siteRegistry": true }, { - "name": "AMET, DOLOR SIT", - "endDate": "2021-03-16", - "startDate": "2017-02-05", + "uuid": "441b11ee-5690-411e-bd75-2dae082f7b65", + "name": "IPSUM", + "endDate": "2019-08-12", + "startDate": "2013-11-21", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true } ], "suspectLandUses": [ { + "uuid": "260f5ced-23b3-43be-9ae2-cc9a22329d41", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-08-07 (described on Site Profile dated 2022-08-07)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" - }, - { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-03-09 (described on Site Profile dated 2016-03-09)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" - }, - { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-03-28 (described on Site Profile dated 2015-03-28)", + "notes": "INSERTED FOR SITE PROFILE DATED 2019-03-05 (described on Site Profile dated 2019-03-05)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { + "uuid": "8067e203-9cdb-4fd8-8742-f24b6c197c30", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-08-11 (described on Site Profile dated 2017-08-11)", + "notes": "INSERTED FOR SITE PROFILE DATED 2015-05-02 (described on Site Profile dated 2015-05-02)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], "parcelDescriptions": [ { + "uuid": "bff41dfd-5d9a-41e3-bb2f-fe29a5582489", "siteRegistry": false, - "dateNoted": "2022-08-13", - "parcelID": "18641", - "crownLandUsePIN": "20123", - "crownLandFileNumber": "20252", - "landDescription": "LOT 5 OF LOT 2 BLOCK 5 DISTRICT LOT 4 PLAN 3203" + "dateNoted": "2022-05-09", + "parcelID": "19326", + "crownLandUsePIN": "16179", + "crownLandFileNumber": "20767", + "landDescription": "LOT 1 OF LOT 4 BLOCK 5 DISTRICT LOT 3 PLAN 7938" }, { + "uuid": "e7f0a707-4fc1-4662-b4fc-cb684672c886", "siteRegistry": true, - "dateNoted": "2020-04-19", - "parcelID": "20804", - "crownLandUsePIN": "15507", - "crownLandFileNumber": "17963", - "landDescription": "LOT 5 OF LOT 5 BLOCK 4 DISTRICT LOT 2 PLAN 3655" + "dateNoted": "2023-07-28", + "parcelID": "20587", + "crownLandUsePIN": "15284", + "crownLandFileNumber": "15263", + "landDescription": "LOT 2 OF LOT 3 BLOCK 4 DISTRICT LOT 3 PLAN 7015" }, { - "siteRegistry": false, - "dateNoted": "2020-11-02", - "parcelID": "19198", - "crownLandUsePIN": "19117", - "crownLandFileNumber": "18381", - "landDescription": "LOT 1 OF LOT 1 BLOCK 4 DISTRICT LOT 3 PLAN 9065" + "uuid": "d8780863-7055-412b-9459-889d3029a73e", + "siteRegistry": true, + "dateNoted": "2023-05-12", + "parcelID": "20780", + "crownLandUsePIN": "19083", + "crownLandFileNumber": "18994", + "landDescription": "LOT 1 OF LOT 2 BLOCK 5 DISTRICT LOT 1 PLAN 7962" }, { - "siteRegistry": false, - "dateNoted": "2023-03-01", - "parcelID": "15426", - "crownLandUsePIN": "16077", - "crownLandFileNumber": "19692", - "landDescription": "LOT 4 OF LOT 5 BLOCK 3 DISTRICT LOT 2 PLAN 9342" + "uuid": "233ccbca-8b47-427f-b685-2a7815d66992", + "siteRegistry": true, + "dateNoted": "2015-07-03", + "parcelID": "18553", + "crownLandUsePIN": "18041", + "crownLandFileNumber": "18914", + "landDescription": "LOT 4 OF LOT 5 BLOCK 4 DISTRICT LOT 5 PLAN 2961" }, { - "siteRegistry": false, - "dateNoted": "2017-11-26", - "parcelID": "17364", - "crownLandUsePIN": "18880", - "crownLandFileNumber": "18675", - "landDescription": "LOT 4 OF LOT 2 BLOCK 5 DISTRICT LOT 2 PLAN 3940" + "uuid": "16e41c9f-fec3-4db9-97fa-e4291c36c2bd", + "siteRegistry": true, + "dateNoted": "2017-04-24", + "parcelID": "18876", + "crownLandUsePIN": "16706", + "crownLandFileNumber": "17860", + "landDescription": "LOT 4 OF LOT 1 BLOCK 4 DISTRICT LOT 1 PLAN 5688" } ], "siteDisclosures": [ { - "siteRegistry": false, - "dateReceived": "2017-12-06", - "dateCompleted": "2017-04-18", - "dateEntered": "2020-08-24", - "dateRegistrar": "2015-06-10", - "dateLocalAuthorityReceived": "2014-07-19", - "summary": "Delectus temporibus at.", - "informationUsed": "Ipsum voluptatibus laudantium voluptate iusto possimus ipsum et eos.\nDolorem velit beatae possimus ut neque.\nEius labore eos inventore exercitationem praesentium.", - "pastOrPresentOrders": "Repellat eveniet sed reiciendis optio assumenda sit quos.\nPorro maiores alias a expedita animi officia.", + "uuid": "72590880-e0df-4dcd-a80d-7d44038b569e", + "siteRegistry": true, + "dateReceived": "2023-09-25", + "dateCompleted": "2014-08-02", + "dateEntered": "2020-04-23", + "dateRegistrar": "2022-06-27", + "dateLocalAuthorityReceived": "2014-06-05", + "summary": "Omnis magnam magnam repellendus numquam aliquid.\nMaiores est delectus quis inventore laboriosam eaque.", + "informationUsed": "Nostrum quas soluta beatae aperiam veniam laudantium earum sit.\nA quod maiores odit.\nCommodi fugiat maxime.\nVeritatis iure consequatur.", + "pastOrPresentOrders": "Qui dicta repellat architecto ipsum tenetur temporibus.", "commercialAndIndustrialPurposes": [ { + "uuid": "f1f099e9-2579-46ab-a340-308c5b4a471a", "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { + "uuid": "c9f1a8ba-e991-4d99-9401-e2e704ec6785", "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "uuid": "ec942736-66b8-4bff-a615-893f8823ca72", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "uuid": "37fa928d-6297-448b-8de6-9765ca7fdc4a", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true } ] }, { + "uuid": "b349d913-4163-467c-a753-6e161cffabab", "siteRegistry": true, - "dateReceived": "2014-10-05", - "dateCompleted": "2017-10-31", - "dateEntered": "2014-03-23", - "dateRegistrar": "2016-06-28", - "dateLocalAuthorityReceived": "2020-03-16", - "summary": "Rem quasi fugit voluptates magni quasi provident modi porro.\nQuam laboriosam provident expedita.", - "informationUsed": "Eaque labore dolorum tempore consequatur magnam.\nMaxime dicta cum aut.\nMagni inventore placeat aperiam reiciendis vero.", - "pastOrPresentOrders": "Porro expedita minus nulla.\nLibero dicta quae nesciunt atque.\nImpedit provident voluptate praesentium accusantium suscipit dignissimos tenetur in.", + "dateReceived": "2020-06-06", + "dateCompleted": "2019-11-19", + "dateEntered": "2019-11-02", + "dateRegistrar": "2018-12-26", + "dateLocalAuthorityReceived": "2016-12-26", + "summary": "Eius earum expedita asperiores.\nCum reiciendis quisquam ad laboriosam ut quas ducimus ab.\nOccaecati soluta quo.", + "informationUsed": "Necessitatibus velit laborum inventore.\nAdipisci dolores expedita nam veniam pariatur error esse dolorum est.\nSaepe sunt ea.\nIpsa id eligendi.", + "pastOrPresentOrders": "Aut est illo eius.\nAsperiores deleniti iusto odio aperiam adipisci est alias voluptatibus.", "commercialAndIndustrialPurposes": [ { + "uuid": "5a1bd273-d7f5-4666-a6d6-8f3972b33d01", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "uuid": "cdfadb57-c02f-438a-bdeb-9db4492127aa", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false }, { + "uuid": "fbcc1d16-d6b1-4e90-8e5d-6e3c750d6a89", "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false } ] @@ -28805,109 +33866,78 @@ ], "activityLog": [ { + "uuid": "e9cb23e2-5328-47e1-b877-15483c3c10ce", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "BORER KATRINE", - "timestamp": "2017-02-24" - }, - { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "NITZSCHE SHANELLE", - "timestamp": "2016-09-02" + "user": "DENESIK ALEXIS", + "timestamp": "2018-10-28" }, { + "uuid": "760921bf-b109-47b7-b2a5-0e03d87bfa56", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "VANDERVORT KAMILLE", - "timestamp": "2022-02-28" - }, - { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "MCLAUGHLIN PRESTON", - "timestamp": "2023-03-31" - }, - { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "KOVACEK ESTEL", - "timestamp": "2020-06-26" + "user": "SCHULTZ PRINCESS", + "timestamp": "2015-11-18" }, { - "siteRegistry": true, + "uuid": "d54a4e50-0e06-42e6-acbd-d448be60a3b6", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "BEATTY DARRON", - "timestamp": "2018-10-13" + "user": "LEBSACK TITO", + "timestamp": "2014-04-28" }, { + "uuid": "bbcd5270-05ee-48e2-b8aa-1082e5884202", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "EMMERICH XZAVIER", - "timestamp": "2016-02-26" - }, - { - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "MAGGIO KAYLI", - "timestamp": "2015-04-26" + "user": "HUDSON AMELY", + "timestamp": "2019-08-29" }, { + "uuid": "8234d77c-3d7d-494f-863d-4b760687fc2c", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "LEDNER OTILIA", - "timestamp": "2017-01-16" + "user": "WALTER KAYDEN", + "timestamp": "2015-10-25" } ], "associatedSites": [ { - "dateNoted": "2022-06-17", - "notes": "", - "parcelID": "18398", - "siteID": "16960", - "siteRegistry": true - }, - { - "dateNoted": "2017-11-26", - "notes": "", - "parcelID": "15411", - "siteID": "18687", - "siteRegistry": true - }, - { - "dateNoted": "2013-10-28", + "uuid": "af25e4a9-cacd-4820-b12f-a239cab2b836", + "dateNoted": "2023-02-04", "notes": "", - "parcelID": "20360", - "siteID": "20787", - "siteRegistry": true + "parcelID": "15311", + "siteID": "19383", + "siteRegistry": false } ] }, { - "uuid": "878a66ec-f0f9-4278-b6a7-bb61e703b5a7", - "siteID": 20242, - "address": "7340 Sarah Causeway", - "latitude": 50.2034, - "longitude": -135.2743, - "lastUpdated": "2022-04-22", - "city": "Port Bettye", - "region": " North Coast", - "victoriaFile": "26250-20/9922", + "uuid": "a431b846-1ce8-4bb1-b1f2-a775668d4e61", + "siteID": 16851, + "address": "279 Darius Lodge", + "latitude": 49.5927, + "longitude": -135.8457, + "lastUpdated": "2018-10-03", + "city": "Hectorboro", + "region": "Thompson-Okanagan", + "victoriaFile": "26250-20/17312", "regionalFile": "N/A", "parcelIDs": [ - 8061544, - 2467192, - 5928730, - 6130348, - 2462504 + 3182138, + 3353139, + 4816657, + 4722938, + 3854672 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2015-06-12", - "completed": "2018-01-31", - "initiated": "2018-02-20", - "ministryContact": "DANIEL CARLETON", + "uuid": "9b14e49e-7d7b-430e-83a6-a6a80630355b", + "createdAt": "2014-03-29", + "completed": "2015-05-25", + "initiated": "2017-01-19", + "ministryContact": "KRIS ELNA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -28916,33 +33946,26 @@ ], "notationParticipants": [ { + "uuid": "1284039e-e985-48b2-ae3c-7b603388cd77", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false }, { + "uuid": "8f68aff3-b4f3-4724-addf-4b80d68b080f", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true } ], "siteRegistry": true }, { - "createdAt": "2019-09-02", - "completed": "2014-10-13", - "initiated": "2014-01-04", - "ministryContact": "NOLAN KATELYN", + "uuid": "a08d7be5-6729-4525-a2a4-9b17df39afe4", + "createdAt": "2023-01-10", + "completed": "2017-12-02", + "initiated": "2018-04-01", + "ministryContact": "BAHRINGER VERONICA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -28951,39 +33974,101 @@ ], "notationParticipants": [ { + "uuid": "513fdcbc-a1b7-4dd5-9317-11742b78f94c", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "ac9c8df5-535b-4b18-ba65-66a60a44f39f", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "uuid": "b41981cb-740c-4b65-94a9-be78314b3d6b", + "createdAt": "2018-04-24", + "completed": "2018-03-24", + "initiated": "2018-09-19", + "ministryContact": "HELLER JAMISON", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "uuid": "42b07427-7fcf-4281-bbbb-eb93262643d6", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", "siteRegistry": true }, { + "uuid": "7afd7e13-ac54-44d6-955f-01ccd69320d3", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "uuid": "aee05dd3-10d7-4c66-90ea-4b96b82ad0b0", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "uuid": "ec9ee9f8-b285-4748-96e8-e98fd798a72c", + "createdAt": "2021-08-24", + "completed": "2022-01-07", + "initiated": "2016-02-06", + "ministryContact": "ANDERSON ABRAHAM", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "uuid": "8d7bc24c-6af1-4f3e-88ad-ad4d7799db92", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "uuid": "9a38149f-e3b2-413f-aaa6-e6fb079db8e3", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", "siteRegistry": true }, { + "uuid": "aae93503-d75d-44e6-a701-95b8bb5b1274", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true }, { + "uuid": "771461bf-1be9-4a33-a2df-cea6743bd7df", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true } ], "participants": [ { - "name": "IPSUM", - "endDate": "2014-03-31", - "startDate": "2016-10-13", + "uuid": "6df2584a-13ae-4153-857b-f8fdc3958c2e", + "name": "AMET, DOLOR SIT", + "endDate": "2018-11-23", + "startDate": "2023-07-10", "notes": "", "roles": [ "ORGANIZATION" @@ -28991,229 +34076,229 @@ "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2018-08-03", - "startDate": "2019-10-28", + "uuid": "529e2822-5e44-41bc-b6ae-245e52beec9c", + "name": "AMET, DOLOR SIT", + "endDate": "2020-08-07", + "startDate": "2020-07-20", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2015-09-15", - "startDate": "2015-08-31", - "notes": "", - "roles": [ - "ORGANIZATION" - ], "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2021-12-13", - "startDate": "2022-11-08", + "uuid": "44edf43f-b3f5-494b-8064-9d9b43edf453", + "name": "IPSUM", + "endDate": "2016-01-05", + "startDate": "2019-03-04", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true } ], "suspectLandUses": [ { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-04-08 (described on Site Profile dated 2014-04-08)", + "uuid": "cdab9b7e-09e4-47b1-9fb8-e60fc06f2f85", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2016-11-19 (described on Site Profile dated 2016-11-19)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { + "uuid": "ef5a7b2c-d535-49e4-81eb-5dd5593864b2", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2022-04-17 (described on Site Profile dated 2022-04-17)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "uuid": "2dacbb5b-b7c9-4307-b44e-fcce46db8230", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-04-30 (described on Site Profile dated 2019-04-30)", + "notes": "INSERTED FOR SITE PROFILE DATED 2018-08-17 (described on Site Profile dated 2018-08-17)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { + "uuid": "5894eb32-4bfb-43cc-8928-d4c73f3fc6ef", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2019-11-04 (described on Site Profile dated 2019-11-04)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "uuid": "4733f6e9-30fa-47bb-865d-58eacceb7e90", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-09-12 (described on Site Profile dated 2019-09-12)", + "notes": "INSERTED FOR SITE PROFILE DATED 2018-11-26 (described on Site Profile dated 2018-11-26)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], "parcelDescriptions": [ { - "siteRegistry": true, - "dateNoted": "2017-06-21", - "parcelID": "16450", - "crownLandUsePIN": "17653", - "crownLandFileNumber": "15795", - "landDescription": "LOT 2 OF LOT 4 BLOCK 2 DISTRICT LOT 2 PLAN 3823" - }, - { + "uuid": "4e1c278f-d399-456a-abf4-9f89242552e8", "siteRegistry": false, - "dateNoted": "2017-03-16", - "parcelID": "20103", - "crownLandUsePIN": "16318", - "crownLandFileNumber": "17767", - "landDescription": "LOT 5 OF LOT 3 BLOCK 4 DISTRICT LOT 5 PLAN 7343" - }, - { - "siteRegistry": true, - "dateNoted": "2020-10-17", - "parcelID": "18425", - "crownLandUsePIN": "16415", - "crownLandFileNumber": "17820", - "landDescription": "LOT 4 OF LOT 4 BLOCK 2 DISTRICT LOT 2 PLAN 4145" + "dateNoted": "2016-01-30", + "parcelID": "16390", + "crownLandUsePIN": "18046", + "crownLandFileNumber": "19985", + "landDescription": "LOT 1 OF LOT 2 BLOCK 4 DISTRICT LOT 2 PLAN 4477" }, { - "siteRegistry": true, - "dateNoted": "2022-01-11", - "parcelID": "18065", - "crownLandUsePIN": "20029", - "crownLandFileNumber": "20880", - "landDescription": "LOT 4 OF LOT 1 BLOCK 5 DISTRICT LOT 1 PLAN 8008" + "uuid": "8d1b125f-fd96-4705-91b2-9750cdf9df06", + "siteRegistry": false, + "dateNoted": "2018-08-04", + "parcelID": "15361", + "crownLandUsePIN": "18150", + "crownLandFileNumber": "16159", + "landDescription": "LOT 3 OF LOT 4 BLOCK 1 DISTRICT LOT 1 PLAN 6486" } ], "siteDisclosures": [ { - "siteRegistry": false, - "dateReceived": "2015-03-13", - "dateCompleted": "2020-09-16", - "dateEntered": "2017-05-18", - "dateRegistrar": "2021-06-07", - "dateLocalAuthorityReceived": "2021-06-02", - "summary": "Tempora asperiores debitis doloremque ullam saepe atque dicta.\nAssumenda libero ea earum minima ipsam.\nMaxime tempora beatae aperiam eos quibusdam blanditiis odio.", - "informationUsed": "Labore alias eos tenetur vitae hic rem.\nVoluptates sed non praesentium hic.\nTempore non vero harum quod incidunt esse doloribus provident quia.\nEnim mollitia facilis modi ex molestias aut ex id.\nNihil amet amet iusto voluptas recusandae dolorum voluptatem amet.", - "pastOrPresentOrders": "Veritatis quia eius veniam quis.\nFacere repellendus neque quod.\nLaborum voluptate numquam quisquam.", + "uuid": "82713f09-aeb6-48cf-a6bb-9ad650b3d951", + "siteRegistry": true, + "dateReceived": "2018-04-21", + "dateCompleted": "2015-08-16", + "dateEntered": "2017-04-22", + "dateRegistrar": "2017-07-31", + "dateLocalAuthorityReceived": "2019-05-19", + "summary": "Hic occaecati voluptatem nostrum.", + "informationUsed": "Blanditiis commodi est fuga aliquid necessitatibus ducimus.\nQuis debitis quidem qui adipisci aut nulla dicta vero repellat.\nDistinctio provident optio.\nDucimus fugit hic eum neque cumque sapiente sapiente reiciendis.\nQuia dignissimos quasi.", + "pastOrPresentOrders": "Quis corrupti eius aperiam.\nVoluptatum culpa eos.\nPorro numquam assumenda magnam laudantium maiores inventore adipisci doloribus.", "commercialAndIndustrialPurposes": [ { + "uuid": "5d3c71bd-1709-40a9-897a-f17ec8756a9c", "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, { - "scheduleReference": "F2*", + "uuid": "21412117-0575-4c99-a0c3-6977f8c70d36", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false - } - ] - }, - { - "siteRegistry": false, - "dateReceived": "2015-09-14", - "dateCompleted": "2021-03-25", - "dateEntered": "2016-05-14", - "dateRegistrar": "2013-12-22", - "dateLocalAuthorityReceived": "2020-12-07", - "summary": "Voluptas neque incidunt quibusdam corporis.\nDoloremque blanditiis est ut quibusdam necessitatibus.", - "informationUsed": "Dolorum maiores esse.\nMaxime exercitationem quibusdam fugiat.\nAspernatur quis quo modi temporibus voluptates tempore alias.\nIllum dolorum sit voluptatum a.\nMolestias expedita incidunt dolor.", - "pastOrPresentOrders": "Expedita amet excepturi eum quisquam rerum.", - "commercialAndIndustrialPurposes": [ - { + "uuid": "c8763457-9b25-4649-8b61-bac881c72147", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true - }, - { + "uuid": "dd528ad3-3587-477e-b7d7-f59c0e0e2b6c", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false - }, - { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true } ] } ], "activityLog": [ { - "siteRegistry": true, + "uuid": "54521e20-5162-456c-8792-33a7e9c8b895", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "MILLER NYA", + "timestamp": "2016-10-28" + }, + { + "uuid": "9b145ef3-587c-4e8a-a42f-b8ef3f5a5cab", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "LUEILWITZ JOSIANE", - "timestamp": "2020-04-05" + "user": "TOWNE DAHLIA", + "timestamp": "2022-11-11" }, { + "uuid": "6a2bd5ba-804b-4362-acea-ff987ca06e7f", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "ROMAGUERA JESSYCA", - "timestamp": "2016-04-01" + "user": "CHAMPLIN EMELIE", + "timestamp": "2021-04-10" }, { + "uuid": "4743f48b-298c-41e0-b2c6-7e4ede4ff1ce", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "SATTERFIELD VINNIE", - "timestamp": "2017-05-07" + "user": "ORN HELENE", + "timestamp": "2015-03-05" + }, + { + "uuid": "68e00421-cb04-49d1-86e1-99064e5eafa9", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "GIBSON TAUREAN", + "timestamp": "2020-07-01" }, { + "uuid": "8f967d01-de46-484e-8ece-79272333db2b", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "KING VENA", + "timestamp": "2022-12-23" + }, + { + "uuid": "fa202bb3-ada7-4df3-898d-1ca3d1d3736a", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "ABBOTT JOVANNY", - "timestamp": "2014-09-06" + "user": "STOLTENBERG ROLLIN", + "timestamp": "2020-09-02" }, { + "uuid": "5ef09dff-8f21-4d91-a841-d98f687ca050", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "KUHIC GLADYCE", - "timestamp": "2019-07-29" + "user": "KEMMER-WYMAN ALEXANE", + "timestamp": "2020-10-19" }, { + "uuid": "fbeb77a8-363d-41f7-9b65-b6822a85a8f5", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "RYAN TEAGAN", - "timestamp": "2015-03-07" + "user": "SCHIMMEL SYDNIE", + "timestamp": "2013-10-19" }, { - "siteRegistry": false, + "uuid": "9aecd4e9-5b6e-4002-aca6-10b12aee6018", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "LANG LOU", - "timestamp": "2014-05-18" + "user": "KOSS-CASSIN HUGH", + "timestamp": "2016-08-12" } ], "associatedSites": [ { - "dateNoted": "2020-02-06", + "uuid": "1a8bb407-c1b9-4dd7-852d-6d13e57fedcb", + "dateNoted": "2023-08-21", "notes": "", - "parcelID": "16950", - "siteID": "16096", + "parcelID": "19539", + "siteID": "18583", "siteRegistry": true } ] }, { - "uuid": "a3df8950-86cd-4af9-9863-e3898c7211d5", - "siteID": 16329, - "address": "62971 Anthony Well", - "latitude": 54.6344, - "longitude": -121.5173, - "lastUpdated": "2023-02-26", - "city": "Port Reyes", - "region": "Thompson-Okanagan", - "victoriaFile": "26250-20/9231", + "uuid": "1d04d0eb-ec6c-4f2b-b10b-f8c8758e818b", + "siteID": 15493, + "address": "7081 Gardner Oval", + "latitude": 50.8854, + "longitude": -130.0916, + "lastUpdated": "2022-03-20", + "city": "Beauville", + "region": " North Coast", + "victoriaFile": "26250-20/8942", "regionalFile": "N/A", "parcelIDs": [ - 8015544, - 4651690, - 1646834, - 132301, - 1650993 + 1122388, + 4679826, + 2399705, + 9959296, + 8053447 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2017-08-21", - "completed": "2021-05-12", - "initiated": "2023-02-02", - "ministryContact": "KLEIN-FUNK LELIA", + "uuid": "971f4076-2458-487b-b589-4ea35e938b92", + "createdAt": "2019-08-15", + "completed": "2022-09-11", + "initiated": "2015-08-16", + "ministryContact": "WUCKERT ZANE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -29222,28 +34307,26 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "39a87717-f64e-4c13-8c05-9ea5f2c53b12", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true }, { + "uuid": "ffc8e892-2e51-4387-ab67-a7c3be3d37a5", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", "siteRegistry": false } ], "siteRegistry": false }, { - "createdAt": "2018-11-07", - "completed": "2017-04-30", - "initiated": "2021-11-24", - "ministryContact": "WUCKERT RANDALL", + "uuid": "e676da6b-dae4-4dc2-876d-5b0bdba5069d", + "createdAt": "2013-11-10", + "completed": "2023-09-20", + "initiated": "2021-02-04", + "ministryContact": "HAGENES NATHEN", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -29252,254 +34335,392 @@ ], "notationParticipants": [ { + "uuid": "78fd8e46-e39e-4ecd-91ff-7518fd506e6e", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false }, { + "uuid": "a569fca9-121f-413e-b42c-28cad5232ed6", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false + "role": "REQUESTED BY", + "siteRegistry": true }, { + "uuid": "c7e3b03d-b544-4bb5-92fd-1bf1de32b989", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false + "role": "REQUESTED BY", + "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true } ], "participants": [ { - "name": "IPSUM", - "endDate": "2018-09-18", - "startDate": "2017-02-20", + "uuid": "f625c80b-7a7e-45bb-93b9-e1ce61792a7c", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2019-06-17", + "startDate": "2017-02-11", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": true }, { + "uuid": "cee1172c-09ca-4418-85c3-18f0a49d91cf", "name": "IPSUM", - "endDate": "2014-12-19", - "startDate": "2015-10-24", + "endDate": "2019-12-18", + "startDate": "2020-10-04", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": true }, { - "name": "IPSUM", - "endDate": "2022-09-17", - "startDate": "2016-02-13", + "uuid": "ea0e237c-635e-4762-9130-34f2aab89dd1", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2022-05-25", + "startDate": "2015-02-28", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": true + }, + { + "uuid": "305c8e7a-d8f1-46bc-a857-26b586a3104b", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2020-11-15", + "startDate": "2022-03-31", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "uuid": "fb4d828e-b7c5-4694-95c6-5614f85b5bc4", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2020-04-11", + "startDate": "2015-07-11", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false } ], "suspectLandUses": [ { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-07-30 (described on Site Profile dated 2016-07-30)", + "uuid": "94e5eda5-f576-4a5f-b31c-10295ad82a5f", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2021-08-28 (described on Site Profile dated 2021-08-28)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2023-07-17 (described on Site Profile dated 2023-07-17)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "uuid": "b47365cf-62b5-483a-90d6-45bf5c4a5648", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2016-12-07 (described on Site Profile dated 2016-12-07)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { + "uuid": "bf1be9a0-dcf2-42cb-9f98-87784a5fd71a", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2020-08-08 (described on Site Profile dated 2020-08-08)", + "notes": "INSERTED FOR SITE PROFILE DATED 2015-04-03 (described on Site Profile dated 2015-04-03)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { + "uuid": "acf2035e-70a4-42ee-9a69-5b0e88d7de0b", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-12-11 (described on Site Profile dated 2022-12-11)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "notes": "INSERTED FOR SITE PROFILE DATED 2016-05-03 (described on Site Profile dated 2016-05-03)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], "parcelDescriptions": [ { + "uuid": "994062c9-6890-4fb8-8da5-2b21f4b85593", "siteRegistry": false, - "dateNoted": "2016-07-16", - "parcelID": "15226", - "crownLandUsePIN": "15702", - "crownLandFileNumber": "16772", - "landDescription": "LOT 4 OF LOT 1 BLOCK 1 DISTRICT LOT 1 PLAN 3348" + "dateNoted": "2020-12-21", + "parcelID": "16794", + "crownLandUsePIN": "16122", + "crownLandFileNumber": "19885", + "landDescription": "LOT 4 OF LOT 5 BLOCK 4 DISTRICT LOT 5 PLAN 6409" }, { + "uuid": "2f374980-b8bb-4ec7-a8c0-ef9c2d2c3b88", "siteRegistry": false, - "dateNoted": "2020-10-29", - "parcelID": "15256", - "crownLandUsePIN": "18627", - "crownLandFileNumber": "16131", - "landDescription": "LOT 1 OF LOT 3 BLOCK 1 DISTRICT LOT 5 PLAN 8338" - }, - { - "siteRegistry": true, - "dateNoted": "2022-09-20", - "parcelID": "19828", - "crownLandUsePIN": "18140", - "crownLandFileNumber": "20700", - "landDescription": "LOT 2 OF LOT 2 BLOCK 5 DISTRICT LOT 1 PLAN 5882" + "dateNoted": "2021-03-30", + "parcelID": "17155", + "crownLandUsePIN": "18072", + "crownLandFileNumber": "19648", + "landDescription": "LOT 5 OF LOT 3 BLOCK 2 DISTRICT LOT 3 PLAN 4165" }, { + "uuid": "969fef60-2450-4124-a9da-fc00b352c5dd", "siteRegistry": true, - "dateNoted": "2021-07-07", - "parcelID": "17138", - "crownLandUsePIN": "18591", - "crownLandFileNumber": "15587", - "landDescription": "LOT 2 OF LOT 4 BLOCK 2 DISTRICT LOT 4 PLAN 8538" + "dateNoted": "2022-02-08", + "parcelID": "18823", + "crownLandUsePIN": "20284", + "crownLandFileNumber": "15542", + "landDescription": "LOT 4 OF LOT 3 BLOCK 3 DISTRICT LOT 2 PLAN 3269" }, { + "uuid": "ee69b47d-b09c-4b22-8ae2-2bf59e386636", "siteRegistry": true, - "dateNoted": "2017-11-18", - "parcelID": "20111", - "crownLandUsePIN": "16041", - "crownLandFileNumber": "19846", - "landDescription": "LOT 5 OF LOT 1 BLOCK 5 DISTRICT LOT 5 PLAN 4860" + "dateNoted": "2017-05-11", + "parcelID": "16765", + "crownLandUsePIN": "15340", + "crownLandFileNumber": "17761", + "landDescription": "LOT 1 OF LOT 3 BLOCK 2 DISTRICT LOT 5 PLAN 9000" } ], "siteDisclosures": [ { - "siteRegistry": true, - "dateReceived": "2020-11-24", - "dateCompleted": "2014-10-12", - "dateEntered": "2022-02-06", - "dateRegistrar": "2018-07-09", - "dateLocalAuthorityReceived": "2014-11-13", - "summary": "Enim expedita iste sunt tempora blanditiis quisquam est optio.\nOfficia quaerat quia expedita explicabo.\nVeniam nobis incidunt suscipit eaque placeat suscipit.", - "informationUsed": "Ipsum odio atque veritatis repellendus voluptates.\nAtque mollitia ab earum.\nDignissimos cupiditate unde a quos eaque.\nExercitationem vel labore consectetur.", - "pastOrPresentOrders": "Aliquid aspernatur ab numquam ipsa expedita.", + "uuid": "69ee9db7-5ff3-463c-8bb2-8de1ebf2e802", + "siteRegistry": false, + "dateReceived": "2020-04-26", + "dateCompleted": "2021-03-07", + "dateEntered": "2019-07-09", + "dateRegistrar": "2018-11-11", + "dateLocalAuthorityReceived": "2018-08-21", + "summary": "Fugit aperiam incidunt iste quisquam facere quae dignissimos ex maiores.\nRem aperiam tenetur soluta.\nDicta dicta maiores eos optio at veritatis quos.", + "informationUsed": "Eaque molestiae repudiandae velit quasi magni quos pariatur praesentium sed.\nCorrupti deleniti in.\nEnim eum accusantium possimus quod tempora quibusdam.\nQuisquam temporibus fugiat tempore.\nItaque quasi doloremque recusandae aspernatur perferendis.", + "pastOrPresentOrders": "Iste praesentium iusto.", "commercialAndIndustrialPurposes": [ { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true + "uuid": "b0b1fc7d-917f-4d58-9e5f-b3e1e7e0d2d3", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false }, { - "scheduleReference": "F2*", + "uuid": "18fc0848-9962-426f-b3f1-eb02d4b99726", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "uuid": "523f2647-b57f-4f24-9cd0-8a8b4b697710", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false }, { + "uuid": "11332728-1c7b-419e-8584-5c91fefc7906", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true + "siteRegistry": false } ] } ], "activityLog": [ { - "siteRegistry": false, + "uuid": "b37ea9a0-0ee0-4091-a3fe-a4cf7e5e4ea6", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "SWANIAWSKI ROSS", - "timestamp": "2022-05-15" + "user": "DOOLEY-SCHILLER JAMAR", + "timestamp": "2018-06-02" }, { + "uuid": "c8f514f2-30af-444d-ae5c-8067a4f25ad1", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "KLEIN KENDRICK", - "timestamp": "2019-05-31" + "user": "CRUICKSHANK EMMET", + "timestamp": "2018-12-23" }, { + "uuid": "cde0a532-293b-486e-aec8-46f1ce1776b7", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "JASKOLSKI MCKAYLA", - "timestamp": "2014-06-17" + "user": "LANGOSH ZOE", + "timestamp": "2018-06-25" }, { - "siteRegistry": false, + "uuid": "ced4fb13-1e67-4ee8-b709-3578eb578a49", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "MCCLURE-BECKER CHLOE", - "timestamp": "2014-06-24" + "user": "WINDLER HAILIE", + "timestamp": "2020-04-22" }, { - "siteRegistry": false, + "uuid": "c0ab73ba-dead-4e1d-9a27-4691628d4d70", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "KULAS CAMYLLE", - "timestamp": "2014-09-18" + "user": "EMMERICH LIA", + "timestamp": "2023-04-14" }, { + "uuid": "2e9759d7-ab39-41ea-a19c-57376040398f", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "HILLL STEFANIE", - "timestamp": "2017-02-02" + "user": "BINS KENNETH", + "timestamp": "2016-01-30" }, { - "siteRegistry": true, + "uuid": "10c84853-39ec-4bde-83c5-3a5c3852507d", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "JOHNSON HARDY", - "timestamp": "2020-07-16" + "user": "JACOBSON FREDY", + "timestamp": "2020-11-14" }, { + "uuid": "b7b1dd27-749a-4c9b-aec7-6a44202a89cd", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "BAYER MOHAMMED", - "timestamp": "2015-01-31" - }, - { - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "JOHNS-JERDE CADEN", - "timestamp": "2021-08-02" + "user": "D'AMORE EMORY", + "timestamp": "2021-11-09" }, { - "siteRegistry": false, + "uuid": "ff1ae14a-957d-4ce6-a802-63aeac2e3703", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "WOLF YESENIA", - "timestamp": "2022-12-21" + "user": "BREKKE WARREN", + "timestamp": "2020-01-28" } ], "associatedSites": [ { - "dateNoted": "2022-12-19", + "uuid": "fc1ea061-0cba-467f-9d37-9f0357e3483b", + "dateNoted": "2019-06-21", "notes": "", - "parcelID": "17858", - "siteID": "17724", + "parcelID": "16743", + "siteID": "15332", "siteRegistry": true }, { - "dateNoted": "2018-08-12", + "uuid": "333f971f-6892-4d89-a494-623f92eb3cd8", + "dateNoted": "2022-11-23", "notes": "", - "parcelID": "16016", - "siteID": "17959", - "siteRegistry": true + "parcelID": "19940", + "siteID": "18483", + "siteRegistry": false + }, + { + "uuid": "6bdaefd2-ef39-42ba-b7d1-e8104476a4b5", + "dateNoted": "2014-08-12", + "notes": "", + "parcelID": "19926", + "siteID": "19254", + "siteRegistry": false } ] }, { - "uuid": "8b9faf69-1335-4280-b643-5d02a832fb86", - "siteID": 19237, - "address": "553 Bertha Place", - "latitude": 54.0272, - "longitude": -122.7244, - "lastUpdated": "2018-03-30", - "city": "New Maya", - "region": "Cariboo", - "victoriaFile": "26250-20/7058", + "uuid": "0367d199-a118-4d2c-a9f4-0fd98df7b01c", + "siteID": 17834, + "address": "130 Marvin Loop", + "latitude": 52.3086, + "longitude": -137.754, + "lastUpdated": "2020-01-17", + "city": "Hannachester", + "region": "Kootenay", + "victoriaFile": "26250-20/18698", "regionalFile": "N/A", "parcelIDs": [ - 8347963, - 5513850, - 5322969, - 7186475, - 6870580 + 5197380, + 9983488, + 808298, + 7414701, + 9117510 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2023-10-02", - "completed": "2020-07-29", - "initiated": "2022-12-29", - "ministryContact": "GIBSON CLOVIS", + "uuid": "5781326b-44df-4e20-8a19-7f316e6e9220", + "createdAt": "2021-12-09", + "completed": "2014-04-12", + "initiated": "2014-09-21", + "ministryContact": "KUHLMAN CYDNEY", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "uuid": "0d85073d-128a-4dd9-85bb-32770c8eb198", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "ff36021c-901c-4547-8bdb-e545222c107c", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "uuid": "eed5d53d-094b-44d0-8475-e149f4345699", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "uuid": "d48da9db-90a3-4e08-bfe2-e773e69f1e28", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "uuid": "c2442aef-d8f3-4883-8a07-baaca117ff99", + "createdAt": "2023-04-10", + "completed": "2015-09-25", + "initiated": "2014-01-28", + "ministryContact": "JASKOLSKI SHANELLE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "uuid": "1388dea9-a15a-49a9-9f8e-e2bb77c185a5", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "3a423fe3-e315-44d4-8820-b66aeb921804", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "uuid": "c3ec03df-d322-4e1a-97e8-ea79f9d9c5f9", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "b7fadeed-5fbd-42d2-a778-7a4b561cfeaf", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "uuid": "d0df88e7-4e2b-418a-a674-620cf0bfff13", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "uuid": "60a77b69-9eb7-48f3-80de-cb19a6feb0af", + "createdAt": "2020-11-20", + "completed": "2015-05-10", + "initiated": "2020-06-23", + "ministryContact": "LARSON HENRIETTE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -29508,11 +34729,19 @@ ], "notationParticipants": [ { + "uuid": "6101b075-ef4a-47de-950a-de65b17cf139", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "b2d93dfa-c6d3-4e1b-9d64-ac31bcbcca74", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true }, { + "uuid": "3eb173f8-7a13-4528-8caf-c781352d008d", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false @@ -29521,10 +34750,11 @@ "siteRegistry": false }, { - "createdAt": "2015-09-24", - "completed": "2015-05-29", - "initiated": "2022-02-28", - "ministryContact": "WHITE WALTON", + "uuid": "b1b1d6a1-e4f0-4b6d-9764-d0ccffbf4b9e", + "createdAt": "2019-03-25", + "completed": "2015-11-26", + "initiated": "2019-06-07", + "ministryContact": "KLING ABELARDO", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -29533,28 +34763,38 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", + "uuid": "0bd4d670-13bf-4eaa-b035-c8ef03cb752f", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true }, { + "uuid": "3ab0ac32-d899-4b85-97c6-8166c1f7079e", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false }, { + "uuid": "61cc2a60-88cd-4485-b708-fc5f2791570a", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false + }, + { + "uuid": "e912a872-dbc4-480b-ba0c-d122a2167203", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false } ], "siteRegistry": true }, { - "createdAt": "2022-11-28", - "completed": "2021-12-06", - "initiated": "2021-01-28", - "ministryContact": "FRITSCH ROBERTO", + "uuid": "8719f8da-6c4d-45ea-a1a2-067823addc07", + "createdAt": "2019-07-10", + "completed": "2021-06-22", + "initiated": "2016-09-10", + "ministryContact": "TROMP GAGE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -29563,19 +34803,28 @@ ], "notationParticipants": [ { + "uuid": "5688554e-22c2-41f6-81ad-a487cc7acb54", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false + "role": "SUBMITTED BY", + "siteRegistry": true }, { + "uuid": "c7bbc52a-2e2d-4bce-b0ed-8d1d15c2208f", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { + "uuid": "35f6334e-398d-49be-985a-e0058e87ff65", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false + }, + { + "uuid": "8d3ae6c2-ea2b-44e6-81d0-9df79dcdfb47", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true } ], "siteRegistry": true @@ -29583,9 +34832,10 @@ ], "participants": [ { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2017-02-28", - "startDate": "2017-03-10", + "uuid": "03507c13-0560-478d-9b5d-dd2a2eb6a8c0", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2018-07-03", + "startDate": "2014-10-06", "notes": "", "roles": [ "ORGANIZATION" @@ -29593,119 +34843,114 @@ "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2018-01-01", - "startDate": "2014-11-05", + "uuid": "d2e81b30-c3fc-4617-96a1-87acf15ffa8f", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2018-10-19", + "startDate": "2023-02-14", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2022-10-03", - "startDate": "2017-02-21", + "uuid": "972adb29-2e56-4c24-a7cd-f120157cf54a", + "name": "IPSUM", + "endDate": "2016-04-28", + "startDate": "2021-01-05", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2017-01-01", - "startDate": "2019-03-05", - "notes": "", - "roles": [ - "EMPLOYEE" - ], "siteRegistry": true }, { - "name": "AMET, DOLOR SIT", - "endDate": "2018-02-16", - "startDate": "2016-12-05", + "uuid": "53b85fdd-2eaf-4b1f-b288-347a7fb689db", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2018-07-20", + "startDate": "2021-12-17", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true } ], "suspectLandUses": [ { + "uuid": "7b0316bc-0595-46bc-bded-ee1fab17cee2", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-10-15 (described on Site Profile dated 2018-10-15)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "notes": "INSERTED FOR SITE PROFILE DATED 2019-02-27 (described on Site Profile dated 2019-02-27)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { + "uuid": "b2404be3-a94f-4339-ada1-4668fdfdc809", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-05-08 (described on Site Profile dated 2014-05-08)", + "notes": "INSERTED FOR SITE PROFILE DATED 2017-06-25 (described on Site Profile dated 2017-06-25)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { + "uuid": "b562c0b2-4c4d-4d65-a5d0-3a963f18b936", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2014-02-02 (described on Site Profile dated 2014-02-02)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "uuid": "ddaf7170-5619-4d1a-8d83-b9c9a42ba5bc", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2020-05-28 (described on Site Profile dated 2020-05-28)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "notes": "INSERTED FOR SITE PROFILE DATED 2016-01-14 (described on Site Profile dated 2016-01-14)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "uuid": "33a4a9eb-5de6-438d-9e36-be3a758809ff", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2019-11-20 (described on Site Profile dated 2019-11-20)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], "parcelDescriptions": [ { + "uuid": "1ad3c6eb-833f-4455-95a9-5f4eb4c62b47", "siteRegistry": false, - "dateNoted": "2015-01-16", - "parcelID": "15713", - "crownLandUsePIN": "18504", - "crownLandFileNumber": "15699", - "landDescription": "LOT 1 OF LOT 4 BLOCK 3 DISTRICT LOT 2 PLAN 8170" + "dateNoted": "2016-10-01", + "parcelID": "20398", + "crownLandUsePIN": "17509", + "crownLandFileNumber": "20541", + "landDescription": "LOT 2 OF LOT 5 BLOCK 1 DISTRICT LOT 4 PLAN 5416" }, { + "uuid": "19a3372f-bec1-4260-80fe-f00ed3711cdf", "siteRegistry": true, - "dateNoted": "2023-01-24", - "parcelID": "19545", - "crownLandUsePIN": "18846", - "crownLandFileNumber": "19406", - "landDescription": "LOT 1 OF LOT 3 BLOCK 4 DISTRICT LOT 4 PLAN 3340" - }, - { - "siteRegistry": false, - "dateNoted": "2014-02-21", - "parcelID": "20514", - "crownLandUsePIN": "17432", - "crownLandFileNumber": "17111", - "landDescription": "LOT 5 OF LOT 3 BLOCK 5 DISTRICT LOT 1 PLAN 7909" + "dateNoted": "2015-08-25", + "parcelID": "18407", + "crownLandUsePIN": "16696", + "crownLandFileNumber": "17728", + "landDescription": "LOT 1 OF LOT 5 BLOCK 3 DISTRICT LOT 1 PLAN 3008" } ], "siteDisclosures": [ { + "uuid": "f78d472a-defb-4e7e-a115-8fb7983e7f4c", "siteRegistry": true, - "dateReceived": "2015-12-04", - "dateCompleted": "2022-04-09", - "dateEntered": "2019-09-26", - "dateRegistrar": "2019-02-21", - "dateLocalAuthorityReceived": "2022-07-28", - "summary": "Nisi praesentium enim commodi amet provident.", - "informationUsed": "Cupiditate eveniet dignissimos quos temporibus modi.\nRepellendus ipsam repellat ullam provident perferendis.\nPerferendis itaque illo cupiditate in molestiae magnam cum.\nNesciunt quo dolores facere nostrum reiciendis.\nCumque hic repellendus earum aspernatur mollitia.", - "pastOrPresentOrders": "Quis laudantium incidunt accusantium ut cum maxime veritatis minima eveniet.\nEa provident tempore quae tenetur nisi.\nIllum doloremque assumenda harum omnis neque aliquid aspernatur iure.", + "dateReceived": "2020-12-27", + "dateCompleted": "2019-07-06", + "dateEntered": "2021-01-11", + "dateRegistrar": "2013-11-29", + "dateLocalAuthorityReceived": "2016-04-08", + "summary": "Ratione est iure excepturi.\nPorro reprehenderit quasi.", + "informationUsed": "Sequi quis quos inventore adipisci beatae illo nobis.\nLibero expedita deleniti modi tenetur natus velit beatae voluptatibus et.\nInventore repellat amet atque hic officiis nostrum.\nMinima ad reprehenderit ipsam iure totam reiciendis sit error.", + "pastOrPresentOrders": "Delectus enim quam magnam eum veritatis labore deserunt.\nQuae error aut.\nOccaecati nobis quas officia molestias perferendis odio.", "commercialAndIndustrialPurposes": [ { + "uuid": "ee967a23-3cbc-4e97-9b9b-39e62b0fa7eb", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false }, { + "uuid": "30bfa5af-1ee3-46c6-ab1b-a35993768549", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false - }, - { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true - }, - { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true } ] @@ -29713,103 +34958,86 @@ ], "activityLog": [ { + "uuid": "a338ae11-35fc-4904-99ae-9c7ff67ccc39", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "ROMAGUERA YOSHIKO", - "timestamp": "2018-08-09" - }, - { - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "HAYES SYDNI", - "timestamp": "2023-02-27" + "user": "LEHNER ICIE", + "timestamp": "2023-05-24" }, { - "siteRegistry": false, + "uuid": "2abacb79-0e4c-4eb9-9d33-9bb98bb3ffdd", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "MCKENZIE VENA", - "timestamp": "2015-09-10" + "user": "HINTZ AURELIO", + "timestamp": "2023-09-28" }, { - "siteRegistry": false, + "uuid": "5a4da132-16ab-4bb4-ae45-beee7baf050e", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "FRANEY BAILEY", - "timestamp": "2017-05-24" + "user": "WALKER SANDY", + "timestamp": "2016-06-10" }, { + "uuid": "bf5f5992-8933-449b-aabd-f1fa48e32dea", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "HOWELL JUANA", - "timestamp": "2016-01-29" + "user": "JAKUBOWSKI CEASAR", + "timestamp": "2020-06-22" }, { + "uuid": "efb63f40-4c47-4e40-a1ae-e875738dc692", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "NADER NATHANIAL", - "timestamp": "2013-10-31" - }, - { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "ROHAN DREW", - "timestamp": "2020-04-26" - }, - { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "KUVALIS GREEN", - "timestamp": "2019-07-19" + "user": "BEDNAR JAYME", + "timestamp": "2019-08-21" } ], "associatedSites": [ { - "dateNoted": "2016-09-06", + "uuid": "7839337d-8621-4b9f-8199-05efac298db8", + "dateNoted": "2022-02-19", "notes": "", - "parcelID": "20638", - "siteID": "18160", - "siteRegistry": false + "parcelID": "20447", + "siteID": "18496", + "siteRegistry": true }, { - "dateNoted": "2020-09-19", + "uuid": "5d8ec1b8-76b3-488f-be55-62e61d731614", + "dateNoted": "2019-03-26", "notes": "", - "parcelID": "19646", - "siteID": "15761", + "parcelID": "18513", + "siteID": "17277", "siteRegistry": false - }, - { - "dateNoted": "2022-01-07", - "notes": "", - "parcelID": "16524", - "siteID": "16138", - "siteRegistry": true } ] }, { - "uuid": "3546bcc2-490a-42ce-ac1d-593d5c3febd4", - "siteID": 16064, - "address": "238 Funk Inlet", - "latitude": 57.1815, - "longitude": -120.7815, - "lastUpdated": "2017-02-06", - "city": "West Christa", + "uuid": "57572603-d245-49af-8b89-9f1f38db7704", + "siteID": 17116, + "address": "19917 Gottlieb Grove", + "latitude": 55.5171, + "longitude": -120.0668, + "lastUpdated": "2020-01-09", + "city": "Aufderharstad", "region": "Cariboo", - "victoriaFile": "26250-20/4485", + "victoriaFile": "26250-20/8907", "regionalFile": "N/A", "parcelIDs": [ - 8660306, - 6644064, - 6648468, - 9296802, - 186384 + 7502226, + 1237449, + 3590462, + 7467178, + 9452744 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2023-01-27", - "completed": "2016-09-04", - "initiated": "2018-07-28", - "ministryContact": "SCHUPPE EDWINA", + "uuid": "79c2921c-363b-4169-85d5-d621e1621f02", + "createdAt": "2017-04-23", + "completed": "2014-04-12", + "initiated": "2014-04-28", + "ministryContact": "WOLF ROMA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -29818,28 +35046,66 @@ ], "notationParticipants": [ { + "uuid": "b25232ca-c976-454c-bf8a-1b0675b8800b", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true }, { + "uuid": "c86136ec-c093-46ee-a231-5ca85e0a7aee", "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "uuid": "cf01139b-233e-4a6d-ab85-a794fdba4f74", + "createdAt": "2020-11-09", + "completed": "2016-05-28", + "initiated": "2013-12-11", + "ministryContact": "BOSCO SYLVIA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "uuid": "51c771d3-a14a-4623-bebe-06c0a7dfd0ef", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false }, { + "uuid": "b74ec2e2-eb22-4f23-9f73-140b0f57c8e7", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": true + }, + { + "uuid": "9e8b54b4-6197-4779-a483-3a52e74c8aae", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "uuid": "3294a870-ad5e-404a-b45a-440a2a1acea8", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false } ], "siteRegistry": false }, { - "createdAt": "2023-09-08", - "completed": "2015-10-08", - "initiated": "2022-11-21", - "ministryContact": "LEBSACK CHADD", + "uuid": "d6e5314c-f84e-46f2-bac3-231953dea8ec", + "createdAt": "2015-01-16", + "completed": "2014-10-31", + "initiated": "2020-04-27", + "ministryContact": "CUMMINGS MELANY", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -29848,269 +35114,341 @@ ], "notationParticipants": [ { + "uuid": "5dbdbd0b-847b-4829-889a-5105065be7ae", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": true }, { + "uuid": "1e219b9a-be22-43a4-8de1-9b4fd5ef4bad", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "uuid": "871e7a30-7655-46e9-a6de-f077c6b2f95b", + "createdAt": "2018-06-29", + "completed": "2017-01-13", + "initiated": "2022-09-25", + "ministryContact": "GIBSON VELVA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "uuid": "48a320f9-4456-46f8-86dc-8a986c2d2a82", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false }, { + "uuid": "91df7fc9-d252-40fb-b246-51291cf9ba13", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true + "role": "SUBMITTED BY", + "siteRegistry": false }, { + "uuid": "e37e1d7d-b390-4d1e-b130-5a448f86e135", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false + "role": "SUBMITTED BY", + "siteRegistry": true } ], - "siteRegistry": false - } - ], - "participants": [ - { - "name": "IPSUM", - "endDate": "2014-07-20", - "startDate": "2021-04-15", - "notes": "", - "roles": [ - "EMPLOYEE" - ], "siteRegistry": true }, { - "name": "AMET, DOLOR SIT", - "endDate": "2021-05-21", - "startDate": "2019-05-22", - "notes": "", - "roles": [ - "EMPLOYEE" + "uuid": "ce4ca57a-44a1-4a01-8823-98c63e58b5be", + "createdAt": "2022-07-06", + "completed": "2020-10-06", + "initiated": "2013-11-02", + "ministryContact": "GLEASON RAUL", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" ], - "siteRegistry": true - }, + "notationParticipants": [ + { + "uuid": "d5f4d010-4ee4-4dfa-9371-2d30fc8d0114", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "a880f5a1-733d-42fe-9482-d4a5d86a0e8e", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "e4257eae-3f0e-4492-a47e-1840b7ea5ec5", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "f3050986-4916-4013-b3ad-99effa26147c", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "35881423-d2dc-4877-9b60-e39495e86ceb", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + } + ], + "participants": [ { + "uuid": "b04ad025-f456-4738-9cfe-0a78a4b8a8c4", "name": "AMET, DOLOR SIT", - "endDate": "2015-07-07", - "startDate": "2022-06-09", + "endDate": "2023-04-01", + "startDate": "2016-04-22", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": true }, { + "uuid": "f19ba0e6-e327-4a34-9dcd-d77ec556695f", "name": "AMET, DOLOR SIT", - "endDate": "2015-02-25", - "startDate": "2020-08-11", + "endDate": "2014-11-02", + "startDate": "2019-09-20", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": false }, { + "uuid": "5be0cf49-ea99-46fe-8242-84d9475481a1", "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2023-06-04", - "startDate": "2016-06-24", + "endDate": "2014-01-06", + "startDate": "2019-07-13", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": false + "siteRegistry": true + }, + { + "uuid": "7bb65395-71fe-43d8-8b76-389d19680f23", + "name": "IPSUM", + "endDate": "2023-09-03", + "startDate": "2017-07-22", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "uuid": "898d39ea-1b9b-4e90-9afb-c35c41001c18", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2021-12-26", + "startDate": "2021-01-15", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true } ], "suspectLandUses": [ { + "uuid": "32bc510c-54a8-42a6-baa1-1d045540845f", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-11-07 (described on Site Profile dated 2015-11-07)", + "notes": "INSERTED FOR SITE PROFILE DATED 2018-12-17 (described on Site Profile dated 2018-12-17)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { + "uuid": "7db5cb5a-ab06-4ca7-bebe-fbcd9fbd7f1f", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-05-01 (described on Site Profile dated 2021-05-01)", + "notes": "INSERTED FOR SITE PROFILE DATED 2022-09-19 (described on Site Profile dated 2022-09-19)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" - }, - { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-11-17 (described on Site Profile dated 2014-11-17)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], "parcelDescriptions": [ { + "uuid": "2f6d216b-a007-4f9f-b549-52b913ff4178", "siteRegistry": true, - "dateNoted": "2016-08-26", - "parcelID": "16388", - "crownLandUsePIN": "19761", - "crownLandFileNumber": "19075", - "landDescription": "LOT 1 OF LOT 3 BLOCK 4 DISTRICT LOT 2 PLAN 4549" - }, - { - "siteRegistry": false, - "dateNoted": "2017-05-12", - "parcelID": "20353", - "crownLandUsePIN": "18921", - "crownLandFileNumber": "18870", - "landDescription": "LOT 4 OF LOT 5 BLOCK 1 DISTRICT LOT 2 PLAN 8486" + "dateNoted": "2017-09-19", + "parcelID": "17379", + "crownLandUsePIN": "19365", + "crownLandFileNumber": "20794", + "landDescription": "LOT 5 OF LOT 4 BLOCK 4 DISTRICT LOT 4 PLAN 6287" }, { + "uuid": "1a487de7-3096-45c6-824e-3d1d415432ef", "siteRegistry": true, - "dateNoted": "2018-08-12", - "parcelID": "19508", - "crownLandUsePIN": "20091", - "crownLandFileNumber": "20820", - "landDescription": "LOT 1 OF LOT 5 BLOCK 1 DISTRICT LOT 2 PLAN 9092" + "dateNoted": "2016-01-31", + "parcelID": "17335", + "crownLandUsePIN": "20293", + "crownLandFileNumber": "16399", + "landDescription": "LOT 5 OF LOT 1 BLOCK 3 DISTRICT LOT 2 PLAN 3869" } ], "siteDisclosures": [ { + "uuid": "69f7a549-f2ae-45eb-8366-62cf7b2e1c60", "siteRegistry": true, - "dateReceived": "2016-12-26", - "dateCompleted": "2023-04-11", - "dateEntered": "2022-08-21", - "dateRegistrar": "2022-04-05", - "dateLocalAuthorityReceived": "2021-01-31", - "summary": "Esse corrupti iste minus.\nDolorum aliquid minima fugiat explicabo possimus quod velit saepe.", - "informationUsed": "Occaecati eius praesentium blanditiis amet assumenda ab esse tempore.\nIste reprehenderit quam sed non dolor quod explicabo.\nMinus impedit assumenda a.\nFacere atque neque.", - "pastOrPresentOrders": "Tempore quidem aliquam iure.", + "dateReceived": "2022-09-12", + "dateCompleted": "2020-05-28", + "dateEntered": "2016-10-04", + "dateRegistrar": "2018-12-18", + "dateLocalAuthorityReceived": "2020-01-26", + "summary": "Officiis earum nostrum.\nAutem molestias consequatur et odit autem dolor.\nFugit sit tempore itaque non.", + "informationUsed": "Omnis aliquid reiciendis quos veniam quasi est aut.\nMolestiae nam debitis officia earum fugit suscipit vel iusto occaecati.\nAsperiores iure tempora id excepturi est eos error id est.\nEligendi tenetur dolorum blanditiis atque nobis optio.", + "pastOrPresentOrders": "Totam accusamus illum.\nNeque iure pariatur esse numquam atque qui expedita.", "commercialAndIndustrialPurposes": [ { + "uuid": "98fdc704-cbcb-4eb4-a14f-2490cdb8a537", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { + "uuid": "c90d6e68-cfd8-434d-a5d0-f1dfdaf66324", "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true - } - ] - }, - { - "siteRegistry": true, - "dateReceived": "2022-06-05", - "dateCompleted": "2016-01-30", - "dateEntered": "2019-07-17", - "dateRegistrar": "2016-01-17", - "dateLocalAuthorityReceived": "2016-09-12", - "summary": "Ratione architecto provident excepturi.\nQuibusdam dolore quae consequatur.", - "informationUsed": "Debitis quidem illum amet quibusdam.\nEst nihil odit veniam sit doloremque.\nSoluta reiciendis maiores cum.\nA suscipit laborum.", - "pastOrPresentOrders": "Quaerat soluta laudantium dolore dicta beatae numquam repudiandae impedit.\nAut atque distinctio non voluptates cum quasi quasi iste tempora.\nEnim voluptatum harum.", - "commercialAndIndustrialPurposes": [ - { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { - "scheduleReference": "F2*", + "uuid": "080e8880-ebf8-4631-8546-2d1404f89669", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true + "siteRegistry": false }, { + "uuid": "76e0a1d9-360a-49e6-898a-903e3a1f857a", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false - }, - { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true } ] } ], "activityLog": [ { - "siteRegistry": true, + "uuid": "75220a18-17e8-46f3-9ae1-cbf1da9a9484", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "DURGAN KARIANNE", - "timestamp": "2023-03-02" + "user": "SKILES MAJOR", + "timestamp": "2015-01-14" }, { + "uuid": "c7d5871f-4dd4-4dd8-8ded-259340273d7f", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "KLING KOBY", - "timestamp": "2020-10-12" + "user": "REINGER MINNIE", + "timestamp": "2018-12-30" }, { + "uuid": "da2609d8-e437-45d0-9ba5-f215fb4b30fe", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "NICOLAS OLIN", - "timestamp": "2023-09-01" + "user": "BUCKRIDGE RHEA", + "timestamp": "2023-03-25" + }, + { + "uuid": "a9da3acc-7607-414f-9e8f-7d9b40e3da51", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "WAELCHI MARTA", + "timestamp": "2020-10-04" + }, + { + "uuid": "e3251959-3093-4815-9b01-4ff46b83e238", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "BRADTKE ALISHA", + "timestamp": "2023-09-20" }, { + "uuid": "ef3673c8-a283-4e86-ae4e-3faf951e9ff3", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "HERMANN CATHRYN", - "timestamp": "2015-05-22" + "user": "KOVACEK WADE", + "timestamp": "2014-01-05" }, { + "uuid": "567eab91-c802-448b-a5ed-501906537096", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "TREUTEL MELANY", - "timestamp": "2017-05-13" + "user": "CUMMERATA KARIANNE", + "timestamp": "2022-05-15" + }, + { + "uuid": "fd6cceab-55e0-458c-a0aa-8700231875f0", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "STRACKE MARIANA", + "timestamp": "2017-01-06" }, { + "uuid": "4fe0df03-65f1-4d46-96a8-ea42899779bf", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "RUTHERFORD ARLENE", - "timestamp": "2016-06-25" + "user": "ROOB KIRSTEN", + "timestamp": "2014-11-29" + }, + { + "uuid": "c2c9d64d-b79d-4443-b1a0-0e023b990df7", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "BINS VANESSA", + "timestamp": "2021-05-28" } ], "associatedSites": [ { - "dateNoted": "2023-07-15", + "uuid": "626b2e2d-0b3d-4212-88e7-e932717f0a6b", + "dateNoted": "2015-11-13", "notes": "", - "parcelID": "19275", - "siteID": "16881", + "parcelID": "17255", + "siteID": "20221", "siteRegistry": false - }, - { - "dateNoted": "2017-09-25", - "notes": "", - "parcelID": "18922", - "siteID": "16335", - "siteRegistry": true - }, - { - "dateNoted": "2020-03-21", - "notes": "", - "parcelID": "18997", - "siteID": "16278", - "siteRegistry": true } ] }, { - "uuid": "2bb244bd-8f21-4b1e-a254-4d778279b278", - "siteID": 19683, - "address": "864 Nader Knolls", - "latitude": 50.6298, - "longitude": -136.7854, - "lastUpdated": "2014-12-23", - "city": "Jamaalchester", - "region": "Mainland/Southwest", - "victoriaFile": "26250-20/3922", + "uuid": "9d4c6e00-093f-4556-8322-9a3e1c189900", + "siteID": 17062, + "address": "904 Armstrong Turnpike", + "latitude": 58.8506, + "longitude": -138.2046, + "lastUpdated": "2019-12-16", + "city": "Lelaside", + "region": " North Coast", + "victoriaFile": "26250-20/11324", "regionalFile": "N/A", "parcelIDs": [ - 1637000, - 7675656, - 1787069, - 9846065, - 7637074 + 1690433, + 8220617, + 254814, + 7013553, + 4209196 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2017-06-18", - "completed": "2018-04-16", - "initiated": "2023-08-22", - "ministryContact": "BOGISICH RENEE", + "uuid": "14e55672-7175-4103-af9e-647da5413728", + "createdAt": "2021-12-15", + "completed": "2022-10-28", + "initiated": "2017-08-18", + "ministryContact": "KUHN HALIE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -30119,38 +35457,118 @@ ], "notationParticipants": [ { + "uuid": "727b7ee0-481e-45e5-820c-b988729ecda5", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "5540cba0-fe72-46b1-a510-44a13138c315", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true }, { + "uuid": "bb54f7f0-a129-42d0-bbb3-3c509aa433ed", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "uuid": "45ea9390-e7aa-48f8-af54-5aa49ea09bce", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true }, { + "uuid": "4cf210cf-050c-496c-b345-604a4fcc2b05", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "uuid": "2b077100-b067-433d-a72f-be97916dbcae", + "createdAt": "2019-10-04", + "completed": "2018-11-21", + "initiated": "2022-08-01", + "ministryContact": "OSINSKI TONEY", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "uuid": "238e96c5-5f43-46f6-abb6-5499bbcd4b46", "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "uuid": "05f83083-8255-4de3-9449-c1ce1b109bbf", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "99ab3d72-ebb6-4ccb-b147-a6d5d5d19f29", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false }, { + "uuid": "dc1de273-4690-4cde-98c8-295fe4718182", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "uuid": "b6cc1ea3-013f-42d8-96a0-dd578d22dea6", + "createdAt": "2022-02-04", + "completed": "2018-09-09", + "initiated": "2015-08-02", + "ministryContact": "REINGER LOY", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "uuid": "05f8a1ff-fc05-4657-92c1-e82f51d685bf", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", + "uuid": "7c8a659b-4718-46d8-89d5-266d07065740", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false + }, + { + "uuid": "3e48254d-d124-42bc-a4b6-efc23162aef2", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2019-04-10", - "completed": "2016-06-14", - "initiated": "2020-12-23", - "ministryContact": "PADBERG KELTON", + "uuid": "d23fa22b-b1ae-4c56-96b3-5c403a21b348", + "createdAt": "2016-10-31", + "completed": "2023-08-18", + "initiated": "2013-12-23", + "ministryContact": "LEUSCHKE DREW", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -30159,104 +35577,171 @@ ], "notationParticipants": [ { + "uuid": "635b609b-849e-4653-8d0c-7adf138a3416", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "fb6284cc-c3e8-4cab-9c2e-22265c8d990f", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "uuid": "05447e31-ca22-48c5-9154-a851c983fcea", + "createdAt": "2019-07-08", + "completed": "2022-05-23", + "initiated": "2020-10-08", + "ministryContact": "SCHIMMEL LEONIE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "uuid": "2c0b4c5f-2171-424d-8183-b189de53f3e3", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "uuid": "5e937254-0292-43e0-9259-c11451cc7cea", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true } ], "participants": [ { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2020-01-21", - "startDate": "2019-07-17", + "uuid": "9580df9c-29bc-4dfb-a4bf-aba967f8c944", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2019-05-13", + "startDate": "2018-09-03", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], - "siteRegistry": false + "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2018-01-30", - "startDate": "2021-05-26", + "uuid": "685ed078-c672-40f5-a047-170c873e646f", + "name": "IPSUM", + "endDate": "2014-09-15", + "startDate": "2016-02-21", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "uuid": "377b3088-4b88-4f63-9554-e8cbe01fcaa2", + "name": "IPSUM", + "endDate": "2018-10-02", + "startDate": "2023-01-03", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true } ], "suspectLandUses": [ { + "uuid": "f63e2ca4-6300-4c02-8434-61a755139ea9", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-03-27 (described on Site Profile dated 2016-03-27)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "notes": "INSERTED FOR SITE PROFILE DATED 2015-09-25 (described on Site Profile dated 2015-09-25)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-01-29 (described on Site Profile dated 2022-01-29)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "uuid": "e920efbc-2ef3-4dc6-b1d3-6552e81abb03", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2017-11-07 (described on Site Profile dated 2017-11-07)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], "parcelDescriptions": [ { + "uuid": "bfe99378-d6e3-4dba-863e-d3f09eb612fc", "siteRegistry": true, - "dateNoted": "2022-06-08", - "parcelID": "16855", - "crownLandUsePIN": "19383", - "crownLandFileNumber": "19791", - "landDescription": "LOT 2 OF LOT 5 BLOCK 4 DISTRICT LOT 5 PLAN 3857" + "dateNoted": "2015-08-30", + "parcelID": "18242", + "crownLandUsePIN": "19520", + "crownLandFileNumber": "19890", + "landDescription": "LOT 3 OF LOT 2 BLOCK 3 DISTRICT LOT 4 PLAN 5315" }, { + "uuid": "9a729963-fee9-4a9a-b685-7327b4e05871", "siteRegistry": false, - "dateNoted": "2014-12-09", - "parcelID": "20491", - "crownLandUsePIN": "16362", - "crownLandFileNumber": "19959", - "landDescription": "LOT 1 OF LOT 2 BLOCK 5 DISTRICT LOT 3 PLAN 8835" + "dateNoted": "2022-07-14", + "parcelID": "20558", + "crownLandUsePIN": "18218", + "crownLandFileNumber": "18874", + "landDescription": "LOT 1 OF LOT 5 BLOCK 1 DISTRICT LOT 5 PLAN 8957" }, { + "uuid": "08e967b1-0493-4944-a7c4-9a34f19ef718", + "siteRegistry": false, + "dateNoted": "2020-05-15", + "parcelID": "20280", + "crownLandUsePIN": "20304", + "crownLandFileNumber": "16596", + "landDescription": "LOT 5 OF LOT 3 BLOCK 1 DISTRICT LOT 2 PLAN 5811" + }, + { + "uuid": "e391aeef-0b53-433b-9c59-f7dd0a868e31", "siteRegistry": true, - "dateNoted": "2019-01-28", - "parcelID": "16426", - "crownLandUsePIN": "18575", - "crownLandFileNumber": "15652", - "landDescription": "LOT 2 OF LOT 5 BLOCK 3 DISTRICT LOT 1 PLAN 5180" + "dateNoted": "2022-06-14", + "parcelID": "20007", + "crownLandUsePIN": "17020", + "crownLandFileNumber": "19847", + "landDescription": "LOT 4 OF LOT 2 BLOCK 1 DISTRICT LOT 5 PLAN 6732" } ], "siteDisclosures": [ { - "siteRegistry": false, - "dateReceived": "2021-09-23", - "dateCompleted": "2015-04-07", - "dateEntered": "2017-12-27", - "dateRegistrar": "2016-08-28", - "dateLocalAuthorityReceived": "2018-12-24", - "summary": "Illo rerum dolore dolorem voluptas.\nQuibusdam ea atque odit.", - "informationUsed": "Doloribus tenetur veniam dolorem possimus odio eos sit.\nDoloremque quos eum aliquid quasi recusandae.\nCorporis nulla cumque aperiam maiores nisi dicta deleniti reiciendis nisi.\nError temporibus in cum eum ad nihil temporibus asperiores.", - "pastOrPresentOrders": "Possimus provident esse dolorum vel quis officia ratione excepturi commodi.\nSuscipit eligendi magnam impedit voluptatibus commodi corrupti dolorum illo.\nDolorem placeat expedita tempore officia quae.", + "uuid": "e85986cf-18da-4e6a-8009-611b7de0e8ce", + "siteRegistry": true, + "dateReceived": "2016-10-28", + "dateCompleted": "2021-10-14", + "dateEntered": "2017-02-17", + "dateRegistrar": "2021-02-26", + "dateLocalAuthorityReceived": "2014-02-28", + "summary": "Quos recusandae nostrum doloribus sequi.\nQuidem iure ex officia possimus id vero dignissimos.", + "informationUsed": "Est sit qui alias enim asperiores fugit voluptatibus nisi.\nFugit fugit beatae eos quod dolores asperiores quidem excepturi magni.\nAspernatur vel distinctio porro ex voluptatibus officiis dolore magni.\nQuas modi dolore magni iusto aliquid quos labore.", + "pastOrPresentOrders": "Quae nam similique fuga maiores suscipit quae maxime reprehenderit.\nFugiat ea corporis ea temporibus pariatur sint iste vitae.", "commercialAndIndustrialPurposes": [ { + "uuid": "49c168ec-da87-4b4e-9207-06c43aa273e9", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false + "siteRegistry": true + }, + { + "uuid": "f44f9403-d041-429c-a279-2855cedc1f1a", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true }, { + "uuid": "4cd16aa6-b40c-426d-8011-2929e4bd6752", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, { + "uuid": "58d4543f-0eea-4e52-8a8b-94fce8f673b0", "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true } ] @@ -30264,116 +35749,101 @@ ], "activityLog": [ { - "siteRegistry": false, + "uuid": "1aa10a0f-b326-44e0-bd36-fe65373e5727", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "RODRIGUEZ JOHANNA", - "timestamp": "2022-06-09" + "user": "SCHINNER ROXANE", + "timestamp": "2014-03-24" }, { + "uuid": "6ec57574-3a05-4e12-b439-571a424c5fc7", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "SCHROEDER KEN", - "timestamp": "2017-07-28" + "user": "SCHNEIDER CARMELO", + "timestamp": "2021-11-06" }, { - "siteRegistry": true, + "uuid": "c2f85e00-c71a-4501-bfe4-0a2754de365b", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "AUFDERHAR BRADFORD", - "timestamp": "2023-04-02" + "user": "BATZ CREOLA", + "timestamp": "2014-05-29" }, { + "uuid": "5704f161-35b3-4fae-907e-a474e8b493f9", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "STEUBER IMELDA", - "timestamp": "2014-04-13" + "user": "BLANDA MADELINE", + "timestamp": "2017-04-25" }, { + "uuid": "905a8789-7f0f-4071-b1ac-3a565120e5f6", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "ROMAGUERA KEIRA", - "timestamp": "2014-04-07" + "user": "COLE FLO", + "timestamp": "2022-08-06" }, { - "siteRegistry": false, + "uuid": "6ef4bf74-b778-4648-b78e-9712a3f92b4b", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "BOYLE REVA", - "timestamp": "2023-08-07" + "user": "GLOVER WILMER", + "timestamp": "2022-06-08" } ], "associatedSites": [ { - "dateNoted": "2018-12-03", + "uuid": "0a6e7a92-0fff-45a3-bf1f-c6030d5f67c6", + "dateNoted": "2019-08-26", "notes": "", - "parcelID": "19559", - "siteID": "17194", + "parcelID": "17020", + "siteID": "18182", "siteRegistry": false }, { - "dateNoted": "2020-06-18", + "uuid": "72e14c82-2d27-47c0-a540-fe997564f24c", + "dateNoted": "2022-03-11", "notes": "", - "parcelID": "15840", - "siteID": "19399", - "siteRegistry": true + "parcelID": "19832", + "siteID": "19893", + "siteRegistry": false }, { - "dateNoted": "2014-09-01", + "uuid": "c56753e3-231e-4518-a359-43053ae1587c", + "dateNoted": "2021-04-20", "notes": "", - "parcelID": "17503", - "siteID": "17225", + "parcelID": "16866", + "siteID": "16026", "siteRegistry": false } ] }, { - "uuid": "28ab81ae-dcbe-4573-938f-ff89214a966e", - "siteID": 19583, - "address": "20416 Douglas Cliffs", - "latitude": 56.439, - "longitude": -135.0798, - "lastUpdated": "2023-05-01", - "city": "West Traceyport", - "region": "Mainland/Southwest", - "victoriaFile": "26250-20/1480", + "uuid": "a715cab2-6c1c-40a4-95e9-fa4c26fcfb85", + "siteID": 19620, + "address": "40335 Balistreri Rue", + "latitude": 54.6231, + "longitude": -124.1079, + "lastUpdated": "2013-12-29", + "city": "Kihnmouth", + "region": " North Coast", + "victoriaFile": "26250-20/18656", "regionalFile": "N/A", "parcelIDs": [ - 6741421, - 1319390, - 1676786, - 7708665, - 6583602 + 8932829, + 5139370, + 6179939, + 2407525, + 9498784 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2022-08-13", - "completed": "2022-05-26", - "initiated": "2023-06-28", - "ministryContact": "MCKENZIE TYSON", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - } - ], - "siteRegistry": false - }, - { - "createdAt": "2017-02-14", - "completed": "2019-07-26", - "initiated": "2021-11-19", - "ministryContact": "MACEJKOVIC KAREEM", + "uuid": "879e4d36-4bce-4f71-bf16-33567bfa5fb1", + "createdAt": "2022-01-16", + "completed": "2016-12-23", + "initiated": "2022-10-19", + "ministryContact": "FADEL REBEKA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -30382,68 +35852,32 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { + "uuid": "bd2caf64-d259-42d4-948d-26cf45e02b1f", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { + "uuid": "a6c03bb8-16ad-4bdf-9664-9123acb30f11", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - } - ], - "siteRegistry": false - }, - { - "createdAt": "2022-07-17", - "completed": "2019-01-31", - "initiated": "2015-01-24", - "ministryContact": "MCLAUGHLIN RETTA", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { + "uuid": "29f881cb-d7eb-4e91-b422-a9c4695f8b04", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false } ], "siteRegistry": false }, { - "createdAt": "2019-10-01", - "completed": "2022-03-25", - "initiated": "2014-10-17", - "ministryContact": "QUITZON CLEORA", + "uuid": "11db42f5-6c8d-4cb8-bd52-08ceeeb74b00", + "createdAt": "2018-07-19", + "completed": "2015-06-22", + "initiated": "2015-03-29", + "ministryContact": "OLSON AALIYAH", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -30452,288 +35886,251 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { + "uuid": "b0557d8d-f866-4921-b2cd-d44d9eab1624", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - } - ], - "siteRegistry": true - }, - { - "createdAt": "2016-02-23", - "completed": "2017-08-26", - "initiated": "2016-07-13", - "ministryContact": "HARVEY MAVIS", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { + "uuid": "63e6b40b-6dbf-4178-8a8c-75a7381da1ee", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true }, { + "uuid": "0de9503c-4115-4bea-9c96-e405cc39cf92", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true } ], "participants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2023-04-17", - "startDate": "2020-11-13", + "uuid": "50e8b138-5605-4614-a588-032061ecb06c", + "name": "AMET, DOLOR SIT", + "endDate": "2018-07-30", + "startDate": "2018-03-01", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true }, { + "uuid": "a3945d32-8817-41f1-a3f9-7d22c60e30ff", "name": "SHELL CANADA PRODUCTS", - "endDate": "2019-11-23", - "startDate": "2014-01-05", + "endDate": "2016-10-24", + "startDate": "2015-10-05", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false }, { + "uuid": "ae92cfe2-8004-4856-8653-72cecf5629c4", "name": "AMET, DOLOR SIT", - "endDate": "2020-05-04", - "startDate": "2022-10-20", + "endDate": "2020-05-17", + "startDate": "2014-10-12", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": true } ], "suspectLandUses": [ { + "uuid": "8af5ef25-fcba-43ef-8d36-b0de003f956f", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-07-27 (described on Site Profile dated 2014-07-27)", + "notes": "INSERTED FOR SITE PROFILE DATED 2020-04-30 (described on Site Profile dated 2020-04-30)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2023-08-09 (described on Site Profile dated 2023-08-09)", + "uuid": "86e49f1e-ef41-410e-a7b8-d13000bab9e1", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2014-09-20 (described on Site Profile dated 2014-09-20)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { + "uuid": "24d25cc3-dc00-406d-bcfd-7402a075ef5b", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2019-01-16 (described on Site Profile dated 2019-01-16)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "uuid": "b738c0ab-06d8-40d1-babd-754edc48b9d2", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-04-09 (described on Site Profile dated 2019-04-09)", + "notes": "INSERTED FOR SITE PROFILE DATED 2021-02-11 (described on Site Profile dated 2021-02-11)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { + "uuid": "8176a068-63d4-4db6-a5e9-dc59db46f9af", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2023-08-08 (described on Site Profile dated 2023-08-08)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "notes": "INSERTED FOR SITE PROFILE DATED 2014-09-22 (described on Site Profile dated 2014-09-22)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], "parcelDescriptions": [ { + "uuid": "f5a5aec5-8ee6-487f-908e-39ef5c015fda", "siteRegistry": false, - "dateNoted": "2020-07-01", - "parcelID": "20574", - "crownLandUsePIN": "17930", - "crownLandFileNumber": "19403", - "landDescription": "LOT 4 OF LOT 2 BLOCK 3 DISTRICT LOT 1 PLAN 5169" + "dateNoted": "2023-02-25", + "parcelID": "16749", + "crownLandUsePIN": "16540", + "crownLandFileNumber": "15704", + "landDescription": "LOT 2 OF LOT 5 BLOCK 4 DISTRICT LOT 1 PLAN 3285" }, { + "uuid": "f970519e-1358-4755-8371-9c6afe23d065", "siteRegistry": false, - "dateNoted": "2014-07-17", - "parcelID": "18575", - "crownLandUsePIN": "15797", - "crownLandFileNumber": "17564", - "landDescription": "LOT 1 OF LOT 4 BLOCK 2 DISTRICT LOT 1 PLAN 6755" - }, - { - "siteRegistry": true, - "dateNoted": "2014-10-08", - "parcelID": "17344", - "crownLandUsePIN": "16321", - "crownLandFileNumber": "20971", - "landDescription": "LOT 1 OF LOT 5 BLOCK 2 DISTRICT LOT 1 PLAN 6100" + "dateNoted": "2016-05-19", + "parcelID": "16890", + "crownLandUsePIN": "15570", + "crownLandFileNumber": "20851", + "landDescription": "LOT 2 OF LOT 4 BLOCK 5 DISTRICT LOT 2 PLAN 9237" }, { + "uuid": "40c7535d-40c9-4b1d-8f7b-6998c1529933", "siteRegistry": true, - "dateNoted": "2019-05-25", - "parcelID": "19061", - "crownLandUsePIN": "15393", - "crownLandFileNumber": "15970", - "landDescription": "LOT 5 OF LOT 3 BLOCK 5 DISTRICT LOT 3 PLAN 3986" + "dateNoted": "2015-04-21", + "parcelID": "18808", + "crownLandUsePIN": "15810", + "crownLandFileNumber": "15368", + "landDescription": "LOT 5 OF LOT 5 BLOCK 1 DISTRICT LOT 4 PLAN 3655" } ], "siteDisclosures": [ { - "siteRegistry": false, - "dateReceived": "2019-12-06", - "dateCompleted": "2018-09-06", - "dateEntered": "2018-01-29", - "dateRegistrar": "2021-10-03", - "dateLocalAuthorityReceived": "2017-07-04", - "summary": "Atque laborum veritatis optio amet fugiat architecto dicta.", - "informationUsed": "Autem harum repudiandae.\nDoloribus impedit quae.\nAmet veritatis perferendis cum et.\nSint soluta quibusdam.\nVelit nisi repellendus deleniti blanditiis omnis nihil.", - "pastOrPresentOrders": "Tempore ab distinctio explicabo eos consequatur error perspiciatis minima vero.\nNemo dignissimos reiciendis non et expedita molestiae dicta labore.\nCorporis tempore asperiores quae autem laborum commodi culpa vero.", + "uuid": "e31c9326-36fd-49bb-8be4-bf79c394dfd8", + "siteRegistry": true, + "dateReceived": "2018-12-07", + "dateCompleted": "2022-02-23", + "dateEntered": "2016-07-15", + "dateRegistrar": "2020-11-18", + "dateLocalAuthorityReceived": "2020-07-21", + "summary": "Laudantium maxime sapiente culpa tempore veritatis architecto tenetur.\nIncidunt voluptates similique voluptatum excepturi ad fuga occaecati alias.", + "informationUsed": "Minus quis voluptatibus ut corrupti tenetur soluta dolorem.\nQuaerat necessitatibus ex ut.\nLaborum nesciunt iure facilis quis veritatis illo minus magnam exercitationem.\nEt suscipit libero repellendus enim reiciendis rerum assumenda maiores voluptatibus.\nAccusamus aspernatur commodi.", + "pastOrPresentOrders": "Ipsum temporibus rem molestiae distinctio rerum impedit.", "commercialAndIndustrialPurposes": [ { + "uuid": "b30c8c94-56da-49d1-b036-7f83b5db76c5", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "uuid": "1197f1dc-c173-4594-b188-fd610ad9fdb6", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { + "uuid": "1d191e22-c7c0-4523-94ba-5bb8887ef70e", "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false }, { + "uuid": "e6d3bdc9-ae0b-44de-b7b6-ac437b8dad97", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false + "siteRegistry": true } ] } ], "activityLog": [ { - "siteRegistry": false, + "uuid": "6f1b00d4-ff91-4924-acb4-d2460c99dc2a", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "ROHAN TRENT", - "timestamp": "2013-11-02" + "user": "OSINSKI JACINTO", + "timestamp": "2016-10-02" }, { + "uuid": "82b91fcd-9b3f-4b5b-9a40-906962fccbde", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "MARQUARDT AYLA", - "timestamp": "2015-08-05" + "user": "GRADY CRAWFORD", + "timestamp": "2023-06-10" }, { + "uuid": "ebbf7883-a95b-4d24-ab9d-cf3efcd57a66", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "MOORE JOY", - "timestamp": "2016-03-07" + "user": "ALTENWERTH DEBORAH", + "timestamp": "2017-01-31" }, { + "uuid": "6a2a1198-c549-4c2e-830c-d5e907601eb2", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "MOHR AMANDA", - "timestamp": "2018-01-08" + "user": "HARBER KESHAWN", + "timestamp": "2023-07-18" }, { + "uuid": "6a427681-e5c3-4461-af55-e5aa059eca60", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "STIEDEMANN PRISCILLA", - "timestamp": "2014-04-04" - }, - { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "SCHOEN JAMEY", - "timestamp": "2018-01-19" - }, - { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "ROBERTS SALLIE", - "timestamp": "2017-09-16" - }, - { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "SIPES DEION", - "timestamp": "2016-08-30" + "user": "VONRUEDEN ORLO", + "timestamp": "2016-12-10" }, { + "uuid": "bd2d7a2a-bd84-4d00-af86-a44cab0bb918", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "LOWE JAYDEN", - "timestamp": "2021-09-08" + "user": "SPENCER GUDRUN", + "timestamp": "2015-10-07" }, { + "uuid": "61a5b3a8-c988-46ea-a8c6-4e90d523c01f", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "SAWAYN ROSS", - "timestamp": "2015-04-04" + "user": "HAYES DEJAH", + "timestamp": "2016-09-07" } ], "associatedSites": [ { - "dateNoted": "2019-08-26", - "notes": "", - "parcelID": "15221", - "siteID": "19747", - "siteRegistry": false - }, - { - "dateNoted": "2015-12-29", - "notes": "", - "parcelID": "19416", - "siteID": "17110", - "siteRegistry": false - }, - { - "dateNoted": "2015-05-02", + "uuid": "37860943-5311-491c-8190-16f60a19ef22", + "dateNoted": "2016-12-03", "notes": "", - "parcelID": "19325", - "siteID": "20293", - "siteRegistry": false + "parcelID": "15602", + "siteID": "18724", + "siteRegistry": true } ] }, { - "uuid": "e223d670-ee9a-4781-bbfb-0c0d92e31c3b", - "siteID": 16201, - "address": "654 Jaclyn Freeway", - "latitude": 54.7918, - "longitude": -137.1496, - "lastUpdated": "2017-10-13", - "city": "Darrenfield", - "region": " North Coast", - "victoriaFile": "26250-20/4589", + "uuid": "79c9b26c-0aa1-4b45-9716-09df510e08fc", + "siteID": 20146, + "address": "4804 Chyna Locks", + "latitude": 52.0402, + "longitude": -131.1058, + "lastUpdated": "2022-07-20", + "city": "North Dedrick", + "region": "Vancouver Island/Coast", + "victoriaFile": "26250-20/6228", "regionalFile": "N/A", "parcelIDs": [ - 6066888, - 5192120, - 3838135, - 2110992, - 8415157 + 3852606, + 7301445, + 5189871, + 2941941, + 3260247 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2020-01-03", - "completed": "2018-03-02", - "initiated": "2018-07-25", - "ministryContact": "MARKS BRITNEY", + "uuid": "603ebfc2-695c-43f3-8d03-9723c6c82513", + "createdAt": "2019-07-22", + "completed": "2021-08-10", + "initiated": "2017-12-11", + "ministryContact": "FUNK GWENDOLYN", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -30742,28 +36139,38 @@ ], "notationParticipants": [ { + "uuid": "ec5c8894-4454-4459-81c3-a940cb28a818", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "uuid": "507243c9-77be-44ce-864b-9f9d154d529c", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { + "uuid": "3944fd1b-3de8-4b7c-8666-817e1c09b64b", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "3cbc84b7-9d74-4b9f-8f57-20777dfcf743", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2016-08-15", - "completed": "2018-09-29", - "initiated": "2021-12-11", - "ministryContact": "GLEASON ALF", + "uuid": "20e51ff3-e593-4ac6-9293-4fff792027e9", + "createdAt": "2017-09-04", + "completed": "2018-02-28", + "initiated": "2016-01-14", + "ministryContact": "BARTOLETTI SCOTTIE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -30772,38 +36179,38 @@ ], "notationParticipants": [ { + "uuid": "dffc4689-668e-4bd7-b563-617e8130753b", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true + "role": "SUBMITTED BY", + "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "7aef5d91-9f7b-433a-a51e-0f06e742a61d", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false }, { + "uuid": "32510e08-3b42-48df-94aa-4fccaf742791", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { + "uuid": "8c2c210a-9c06-4069-841f-f8b64a7553bb", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2020-03-31", - "completed": "2014-03-21", - "initiated": "2019-10-31", - "ministryContact": "OBERBRUNNER VINCENZO", + "uuid": "08a474a6-25a6-45e5-bba2-47d20ef1b8f3", + "createdAt": "2017-11-15", + "completed": "2019-09-11", + "initiated": "2023-07-23", + "ministryContact": "ROLFSON GIOVANNY", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -30812,11 +36219,13 @@ ], "notationParticipants": [ { + "uuid": "b1ee668c-74b3-4187-adb6-49cf35ddfa80", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true }, { + "uuid": "6822c53d-d1bc-4bc8-a949-bf04b50370d2", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false @@ -30825,10 +36234,11 @@ "siteRegistry": false }, { - "createdAt": "2015-01-31", - "completed": "2018-07-29", - "initiated": "2021-09-19", - "ministryContact": "LOCKMAN JOYCE", + "uuid": "d3f2810d-fea0-4fc6-8bb7-ce76769de5fa", + "createdAt": "2022-08-29", + "completed": "2021-12-26", + "initiated": "2021-10-07", + "ministryContact": "BEDNAR ESTELL", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -30837,49 +36247,34 @@ ], "notationParticipants": [ { + "uuid": "297a4fb2-42b4-4cca-8ed5-6848227d53e5", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true }, { + "uuid": "23cdaaa2-c34b-4f9d-84f5-2402a22cb815", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "uuid": "a9132446-4cde-4b4a-88fe-503dc098d7f3", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": false }, { + "uuid": "d3f5c25e-6f55-44ae-b714-bde5887ca189", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false - } - ], - "siteRegistry": true - }, - { - "createdAt": "2014-10-06", - "completed": "2020-04-18", - "initiated": "2017-09-14", - "ministryContact": "FRIESEN MARILOU", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "4bc3a232-693f-40ab-9d37-488b10987cab", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true } ], "siteRegistry": false @@ -30887,19 +36282,21 @@ ], "participants": [ { + "uuid": "e5890b8e-8c0e-4327-9dfa-832c8a31f017", "name": "SHELL CANADA PRODUCTS", - "endDate": "2023-02-11", - "startDate": "2018-01-27", + "endDate": "2019-02-20", + "startDate": "2014-06-13", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2014-01-26", - "startDate": "2016-06-19", + "uuid": "ed0c4593-ba75-44cc-871f-6ea858e3a367", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2014-02-16", + "startDate": "2019-09-07", "notes": "", "roles": [ "ORGANIZATION" @@ -30907,127 +36304,80 @@ "siteRegistry": false }, { + "uuid": "9897f208-32b5-4975-9070-e55124cb04fe", "name": "IPSUM", - "endDate": "2020-06-18", - "startDate": "2016-01-20", + "endDate": "2017-04-25", + "startDate": "2017-02-07", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": true - }, - { - "name": "AMET, DOLOR SIT", - "endDate": "2021-07-10", - "startDate": "2019-10-14", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": false } ], "suspectLandUses": [ { + "uuid": "266a4081-ec11-4be7-9708-fc60ac5e4b5b", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-10-27 (described on Site Profile dated 2018-10-27)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" - }, - { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-12-26 (described on Site Profile dated 2022-12-26)", + "notes": "INSERTED FOR SITE PROFILE DATED 2014-06-15 (described on Site Profile dated 2014-06-15)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { + "uuid": "e78f6820-91c3-41b9-8ab9-6a4deae566bc", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-05-30 (described on Site Profile dated 2015-05-30)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" - }, - { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-12-17 (described on Site Profile dated 2018-12-17)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" - }, - { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2023-04-03 (described on Site Profile dated 2023-04-03)", + "notes": "INSERTED FOR SITE PROFILE DATED 2015-03-26 (described on Site Profile dated 2015-03-26)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], "parcelDescriptions": [ { + "uuid": "31dea676-73cd-4920-b000-f2fbe249675b", "siteRegistry": false, - "dateNoted": "2022-03-26", - "parcelID": "20932", - "crownLandUsePIN": "18631", - "crownLandFileNumber": "17370", - "landDescription": "LOT 5 OF LOT 5 BLOCK 2 DISTRICT LOT 5 PLAN 4788" - }, - { - "siteRegistry": false, - "dateNoted": "2020-08-11", - "parcelID": "19199", - "crownLandUsePIN": "18986", - "crownLandFileNumber": "15367", - "landDescription": "LOT 4 OF LOT 1 BLOCK 3 DISTRICT LOT 2 PLAN 3166" + "dateNoted": "2022-02-27", + "parcelID": "20184", + "crownLandUsePIN": "18010", + "crownLandFileNumber": "15645", + "landDescription": "LOT 1 OF LOT 1 BLOCK 3 DISTRICT LOT 3 PLAN 6549" }, { + "uuid": "0ca03690-9b42-45e9-a87d-f24180428067", "siteRegistry": false, - "dateNoted": "2014-04-20", - "parcelID": "20752", - "crownLandUsePIN": "17951", - "crownLandFileNumber": "16134", - "landDescription": "LOT 3 OF LOT 5 BLOCK 1 DISTRICT LOT 4 PLAN 8323" + "dateNoted": "2017-12-14", + "parcelID": "18696", + "crownLandUsePIN": "16095", + "crownLandFileNumber": "20304", + "landDescription": "LOT 5 OF LOT 5 BLOCK 3 DISTRICT LOT 4 PLAN 9723" } ], "siteDisclosures": [ { + "uuid": "98d866e7-3891-482c-9519-6833d5945aa7", "siteRegistry": true, - "dateReceived": "2022-03-11", - "dateCompleted": "2020-07-29", - "dateEntered": "2020-11-15", - "dateRegistrar": "2018-03-06", - "dateLocalAuthorityReceived": "2019-11-09", - "summary": "Eligendi ea quas animi.\nInventore numquam blanditiis molestiae incidunt animi debitis soluta suscipit.\nRepellat voluptate at esse.", - "informationUsed": "Molestias voluptate et corporis modi accusamus aliquam accusamus ullam sequi.\nSaepe sequi quae alias quos doloribus.\nDeleniti earum illo eum commodi odit natus quae tempore.\nDelectus voluptates amet neque quisquam ratione cumque.", - "pastOrPresentOrders": "Ex possimus soluta facere.", + "dateReceived": "2016-06-19", + "dateCompleted": "2018-07-23", + "dateEntered": "2017-07-25", + "dateRegistrar": "2019-01-06", + "dateLocalAuthorityReceived": "2017-04-29", + "summary": "Harum iure debitis quidem quis illo error.\nEveniet facere consequuntur animi illo itaque impedit rerum.", + "informationUsed": "Placeat voluptates culpa ullam consequuntur libero quam.\nExpedita quia rem recusandae debitis deserunt assumenda neque.\nEsse neque illo nostrum corporis ab deserunt hic ad.", + "pastOrPresentOrders": "Minima fugit dolorem.", "commercialAndIndustrialPurposes": [ { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true - }, - { - "scheduleReference": "F1*", + "uuid": "e17aa8f1-7fc7-4dfc-96cf-a7750ed6cd2a", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false + "siteRegistry": true }, { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false - } - ] - }, - { - "siteRegistry": false, - "dateReceived": "2020-06-15", - "dateCompleted": "2021-05-31", - "dateEntered": "2020-04-26", - "dateRegistrar": "2015-06-06", - "dateLocalAuthorityReceived": "2019-11-02", - "summary": "Ratione laudantium ipsum.", - "informationUsed": "Asperiores fugiat aliquam ratione nisi adipisci.\nEius maiores et et eaque nobis nesciunt ratione voluptatum placeat.\nNumquam alias iure sapiente necessitatibus commodi voluptatem quo repudiandae nisi.", - "pastOrPresentOrders": "Perferendis sit dignissimos.", - "commercialAndIndustrialPurposes": [ - { + "uuid": "6c2f64f3-2561-443c-b96f-00282e27887a", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false }, { + "uuid": "984eae4c-fb0e-47fa-8b08-1591f481940d", "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true } ] @@ -31035,85 +36385,121 @@ ], "activityLog": [ { - "siteRegistry": false, + "uuid": "25dd079a-eb8d-4479-a9fa-dbb35956d64d", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "GRAHAM ASHTYN", - "timestamp": "2015-02-05" + "user": "CUMMERATA VADA", + "timestamp": "2016-07-02" }, { - "siteRegistry": false, + "uuid": "e17bd699-37c7-415f-93ba-975d2e37f760", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "BOYER CARLETON", - "timestamp": "2018-08-18" + "user": "GOTTLIEB-O'REILLY JAKAYLA", + "timestamp": "2020-02-22" }, { - "siteRegistry": false, + "uuid": "5a198154-b18c-413e-ba16-f387c1d3f3ef", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "NIKOLAUS MAGGIE", + "timestamp": "2015-12-03" + }, + { + "uuid": "8d611865-fb6a-475b-bb99-18e9ab273222", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "PAUCEK GARRISON", + "timestamp": "2019-12-25" + }, + { + "uuid": "34033931-e844-414b-bda1-712158024715", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "SCHAEFER NIKITA", + "timestamp": "2020-05-27" + }, + { + "uuid": "3fdf4564-5e21-4fc3-b6d4-0fb467cbf2d4", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "WILDERMAN DANYKA", + "timestamp": "2017-08-20" + }, + { + "uuid": "e98d5d79-2d04-4510-b3be-9f20754755d4", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "MCKENZIE TORREY", - "timestamp": "2022-07-21" + "user": "KREIGER JERROLD", + "timestamp": "2015-04-20" }, { + "uuid": "38b92635-2e3e-46bf-8c1e-9e9f42a2253a", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "PROHASKA-JERDE JACQUES", - "timestamp": "2018-03-09" + "user": "JOHNS FREEMAN", + "timestamp": "2016-06-09" }, { + "uuid": "e2d36d08-f4de-481a-8d45-392dc55f846f", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "KUVALIS WILFREDO", - "timestamp": "2022-06-22" + "user": "KUB AARON", + "timestamp": "2023-01-14" + }, + { + "uuid": "1dddc984-93e9-4534-8831-103ae17a3191", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "TOWNE KARL", + "timestamp": "2017-07-23" } ], "associatedSites": [ { - "dateNoted": "2017-03-05", + "uuid": "ec3186a4-9ff5-4ada-89c1-9947a14290b1", + "dateNoted": "2014-03-18", "notes": "", - "parcelID": "20652", - "siteID": "18770", - "siteRegistry": false - }, - { - "dateNoted": "2023-09-21", - "notes": "", - "parcelID": "20149", - "siteID": "18547", + "parcelID": "15538", + "siteID": "18934", "siteRegistry": true }, { - "dateNoted": "2015-10-28", + "uuid": "537a5538-7a9f-4e93-8a79-8cafb4f95595", + "dateNoted": "2021-03-01", "notes": "", - "parcelID": "19875", - "siteID": "16253", - "siteRegistry": false + "parcelID": "19504", + "siteID": "20193", + "siteRegistry": true } ] }, { - "uuid": "6434884c-0bc0-4070-ab30-830dc2e86c9c", - "siteID": 20810, - "address": "282 Richie Alley", - "latitude": 52.9456, - "longitude": -134.747, - "lastUpdated": "2014-07-02", - "city": "Gerlachview", - "region": "Cariboo", - "victoriaFile": "26250-20/15070", + "uuid": "aae97e76-f379-4ba0-8a3d-57a5931f2772", + "siteID": 19113, + "address": "83168 Weissnat Wall", + "latitude": 58.0997, + "longitude": -134.8261, + "lastUpdated": "2022-03-19", + "city": "Laishashire", + "region": "Kootenay", + "victoriaFile": "26250-20/1294", "regionalFile": "N/A", "parcelIDs": [ - 192042, - 8754902, - 6498135, - 7703019, - 2359847 + 6868969, + 9242672, + 7179145, + 3175556, + 9446519 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2021-04-30", - "completed": "2020-11-09", - "initiated": "2023-05-26", - "ministryContact": "ROSENBAUM ARIC", + "uuid": "f256cbf2-787c-4630-9e45-00649e8a9b73", + "createdAt": "2018-06-22", + "completed": "2019-06-08", + "initiated": "2020-05-11", + "ministryContact": "HEANEY LEILA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -31122,33 +36508,26 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "101991fa-47f5-4a52-8b81-9cc4dd224165", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { + "uuid": "de8a4006-8af4-47f2-9c3d-d62c3e7c97de", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2018-12-18", - "completed": "2021-09-19", - "initiated": "2022-12-18", - "ministryContact": "HARRIS-REYNOLDS HOWELL", + "uuid": "75f13ddd-7892-4f2b-ad54-6fe743d3cfab", + "createdAt": "2021-09-12", + "completed": "2014-09-07", + "initiated": "2017-03-08", + "ministryContact": "DOUGLAS GUNNAR", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -31157,23 +36536,38 @@ ], "notationParticipants": [ { + "uuid": "604f9e2e-c97c-4555-8659-cf2eb2bc20de", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "96ead0c2-84d3-469f-b42c-f63423befc50", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "uuid": "d19d2135-95d2-490a-9c32-868177dee9e6", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": false }, { + "uuid": "13390f2b-4220-40a5-8623-9d708db82a88", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2017-11-20", - "completed": "2020-03-08", - "initiated": "2014-01-02", - "ministryContact": "CHRISTIANSEN RANDY", + "uuid": "a259ee03-80a6-42b3-b4a9-5bde14df0699", + "createdAt": "2015-06-25", + "completed": "2021-01-26", + "initiated": "2023-02-05", + "ministryContact": "BROWN EDDIE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -31182,28 +36576,32 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", + "uuid": "e47f2d71-a1eb-4075-bab0-10f213c646ea", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "uuid": "799420fe-1814-4588-86da-a0f4d527a462", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true + "uuid": "5e00faf8-cfe8-4a96-bb1d-cbab7a3e1781", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2019-05-05", - "completed": "2016-04-24", - "initiated": "2022-08-25", - "ministryContact": "O'CONNER VIVIANE", + "uuid": "74b1854d-a2b7-4901-9018-54fcd107406a", + "createdAt": "2016-08-15", + "completed": "2017-09-02", + "initiated": "2019-02-24", + "ministryContact": "FLATLEY PINKIE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -31212,21 +36610,31 @@ ], "notationParticipants": [ { + "uuid": "23c387d2-e85f-4819-964a-045f48116fab", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "e4b859bb-d6a1-4c50-9730-3dcd60c300a5", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false + }, + { + "uuid": "6e7244c6-bf6d-4fef-ae22-9d16dcfb6c04", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false }, { + "uuid": "1e787926-0e58-4cb1-97d5-634474eeb25d", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false }, { + "uuid": "7b0d31c9-fe74-426b-9f81-05f3f8d06205", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false @@ -31235,10 +36643,11 @@ "siteRegistry": true }, { - "createdAt": "2023-02-25", - "completed": "2021-10-09", - "initiated": "2016-10-11", - "ministryContact": "WIZA PINKIE", + "uuid": "1982e718-cc72-4c07-afdc-0a2f9f400c6e", + "createdAt": "2017-06-06", + "completed": "2017-02-04", + "initiated": "2017-04-17", + "ministryContact": "VANDERVORT CHARLES", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -31247,39 +36656,27 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { + "uuid": "5bd5edb8-8da6-4658-b919-8deda16bb210", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false }, { + "uuid": "9b621a81-c807-4ed4-beca-5a9d70413427", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true } ], "participants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2013-12-31", - "startDate": "2021-07-30", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": false - }, - { - "name": "IPSUM", - "endDate": "2014-05-21", - "startDate": "2014-01-14", + "uuid": "06dda0fd-dd94-4088-b9cc-30721656a977", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2021-05-03", + "startDate": "2014-10-22", "notes": "", "roles": [ "ORGANIZATION" @@ -31287,9 +36684,10 @@ "siteRegistry": false }, { + "uuid": "7d032f08-208d-4341-9a18-0b0b8c6486da", "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2017-05-10", - "startDate": "2017-04-27", + "endDate": "2021-10-25", + "startDate": "2017-03-20", "notes": "", "roles": [ "EMPLOYEE" @@ -31297,9 +36695,10 @@ "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2021-07-18", - "startDate": "2023-06-25", + "uuid": "c2762468-5156-4c3d-8d85-1c4ec4ff9801", + "name": "AMET, DOLOR SIT", + "endDate": "2018-08-07", + "startDate": "2014-02-18", "notes": "", "roles": [ "EMPLOYEE" @@ -31307,198 +36706,233 @@ "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2019-08-10", - "startDate": "2022-07-03", + "uuid": "6db852ef-68bc-4ea5-8b28-4213516fd13f", + "name": "AMET, DOLOR SIT", + "endDate": "2015-02-14", + "startDate": "2018-06-13", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true } ], "suspectLandUses": [ { + "uuid": "1cfd277e-001f-4eaa-a7f3-2e9fac1cdde5", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2023-08-28 (described on Site Profile dated 2023-08-28)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "notes": "INSERTED FOR SITE PROFILE DATED 2021-04-17 (described on Site Profile dated 2021-04-17)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-07-06 (described on Site Profile dated 2021-07-06)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "uuid": "768558fe-6d16-41f4-b342-08923cbcd38c", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2021-09-30 (described on Site Profile dated 2021-09-30)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-06-04 (described on Site Profile dated 2014-06-04)", + "uuid": "7ec1a23b-554a-4e27-828e-056c8652bcf3", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2021-11-20 (described on Site Profile dated 2021-11-20)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], "parcelDescriptions": [ { + "uuid": "4001bcf0-8a3e-418f-b0ef-9216c07a0206", "siteRegistry": false, - "dateNoted": "2018-07-24", - "parcelID": "18397", - "crownLandUsePIN": "15486", - "crownLandFileNumber": "19504", - "landDescription": "LOT 4 OF LOT 4 BLOCK 1 DISTRICT LOT 1 PLAN 6645" + "dateNoted": "2018-10-04", + "parcelID": "20591", + "crownLandUsePIN": "20381", + "crownLandFileNumber": "20149", + "landDescription": "LOT 4 OF LOT 5 BLOCK 5 DISTRICT LOT 1 PLAN 3467" }, { - "siteRegistry": false, - "dateNoted": "2015-09-04", - "parcelID": "16455", - "crownLandUsePIN": "16785", - "crownLandFileNumber": "18778", - "landDescription": "LOT 2 OF LOT 2 BLOCK 2 DISTRICT LOT 4 PLAN 3885" + "uuid": "512236af-5962-4685-ab55-c4f2858ba646", + "siteRegistry": true, + "dateNoted": "2020-01-02", + "parcelID": "16362", + "crownLandUsePIN": "17099", + "crownLandFileNumber": "16721", + "landDescription": "LOT 5 OF LOT 5 BLOCK 4 DISTRICT LOT 5 PLAN 5786" }, { - "siteRegistry": true, - "dateNoted": "2016-06-26", - "parcelID": "15713", - "crownLandUsePIN": "19030", - "crownLandFileNumber": "17046", - "landDescription": "LOT 1 OF LOT 4 BLOCK 3 DISTRICT LOT 2 PLAN 7567" + "uuid": "a844388f-4b2a-4dd9-98e1-c8348d9f3441", + "siteRegistry": false, + "dateNoted": "2020-07-06", + "parcelID": "16491", + "crownLandUsePIN": "16896", + "crownLandFileNumber": "16677", + "landDescription": "LOT 2 OF LOT 2 BLOCK 5 DISTRICT LOT 1 PLAN 9461" } ], "siteDisclosures": [ { + "uuid": "dc5f24a9-48a2-4ca4-b85a-93404d4e5324", "siteRegistry": false, - "dateReceived": "2017-08-14", - "dateCompleted": "2019-06-18", - "dateEntered": "2014-06-22", - "dateRegistrar": "2015-02-19", - "dateLocalAuthorityReceived": "2019-09-24", - "summary": "Distinctio mollitia enim beatae consequuntur corporis.\nLibero repellendus tempora numquam ullam velit minus.\nVoluptatum nobis impedit ea aliquid vel debitis consequatur doloribus.", - "informationUsed": "Sapiente possimus dignissimos nemo vero.\nTenetur ipsa illo iste aut nobis officia.\nSequi repellendus similique.\nReiciendis repellat adipisci nostrum enim aut quasi.", - "pastOrPresentOrders": "Animi autem est enim labore vitae autem ab dolorum.\nSaepe exercitationem dicta nihil dignissimos quod explicabo.\nDeleniti libero eligendi.", + "dateReceived": "2018-12-02", + "dateCompleted": "2021-08-01", + "dateEntered": "2017-03-26", + "dateRegistrar": "2022-07-16", + "dateLocalAuthorityReceived": "2014-09-25", + "summary": "Nam recusandae id iure nostrum labore quis minima.\nAliquid molestias quod cumque.\nExcepturi blanditiis rem tenetur qui quasi.", + "informationUsed": "Ea at aperiam ex architecto esse.\nDucimus deserunt officia aliquid ea nemo dolores voluptatum nihil vitae.\nVoluptate eligendi ab.", + "pastOrPresentOrders": "Illo consequuntur corrupti qui dicta qui.\nMaiores aperiam officia at sit fugit eaque expedita eaque.\nQuos libero maxime exercitationem.", "commercialAndIndustrialPurposes": [ { + "uuid": "c2fcb952-7d26-4020-b163-a5ad7535d631", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false + "siteRegistry": true }, { + "uuid": "d9719927-d8c7-49e5-8209-4a13d24e2a2d", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "uuid": "8a447d1f-778f-43c2-b985-3a4641dbc0f5", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + } + ] + }, + { + "uuid": "e5666dd6-703d-4ed6-8674-4d87dfa9a61f", + "siteRegistry": true, + "dateReceived": "2021-12-27", + "dateCompleted": "2015-07-07", + "dateEntered": "2018-03-11", + "dateRegistrar": "2016-08-05", + "dateLocalAuthorityReceived": "2018-08-26", + "summary": "Eos quos aspernatur quod voluptate ullam sequi nesciunt.", + "informationUsed": "Ducimus nisi possimus sint architecto libero hic.\nOfficia necessitatibus ex reiciendis blanditiis earum quam aliquid fuga.\nFugit dolorem omnis quidem vitae quam reiciendis beatae recusandae.\nId voluptates eum ex dignissimos nam accusantium.", + "pastOrPresentOrders": "Repellendus aliquid sit quam voluptate veritatis id.", + "commercialAndIndustrialPurposes": [ + { + "uuid": "2b2f4121-86e2-4728-b359-93e85b940ffc", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { + "uuid": "2ce75627-ed77-4309-ad4c-e94d4166418d", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "uuid": "a793cf12-3c34-483c-a560-958b26c94e7a", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true + "siteRegistry": false }, { + "uuid": "838d441f-b5a4-4a26-a880-06d8bfd8e5fd", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true + "siteRegistry": false } ] } ], "activityLog": [ { - "siteRegistry": false, + "uuid": "2fac60e7-1560-4c0a-926a-be67ec4b8546", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "D'AMORE ELINOR", - "timestamp": "2019-09-25" + "user": "TREUTEL MAEVE", + "timestamp": "2023-04-25" }, { + "uuid": "872ba7e9-4e53-456d-829d-1eb780f985a9", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "SCHROEDER BENNIE", - "timestamp": "2022-06-09" + "user": "KEEBLER EMMALEE", + "timestamp": "2015-12-12" }, { + "uuid": "4af25031-5070-45ed-b078-a2c54e89d35a", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "WUNSCH MARLEY", - "timestamp": "2018-10-20" + "user": "WATERS DEMOND", + "timestamp": "2021-02-16" }, { + "uuid": "6d0fe9ec-c1cb-4c00-a13c-5574a6c708bf", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "BRAUN BREANNE", - "timestamp": "2022-03-19" - }, - { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "BARTELL LORA", - "timestamp": "2017-10-16" - }, - { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "FISHER JOHNNIE", - "timestamp": "2016-08-19" + "user": "GIBSON-FERRY SHANNY", + "timestamp": "2016-02-02" }, { - "siteRegistry": true, + "uuid": "99c85ecb-95b2-44a7-9a94-9013c75c13c6", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "BERNHARD MYRNA", - "timestamp": "2016-11-13" + "user": "SCHILLER-MERTZ MARJOLAINE", + "timestamp": "2019-12-22" }, { + "uuid": "20f4db95-ef33-4169-b8f7-c283ae24f8e1", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "MARKS MOSE", - "timestamp": "2022-03-20" + "user": "WEHNER MYRTLE", + "timestamp": "2014-07-07" }, { + "uuid": "894e7684-54c5-490d-bd85-e96a066bd252", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "DICKI ANISSA", - "timestamp": "2017-12-01" + "user": "SCHMITT DEAN", + "timestamp": "2021-03-04" }, { + "uuid": "52777bce-b538-444b-9975-2ec4a1898530", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "STARK MARLON", - "timestamp": "2014-08-04" + "user": "VOLKMAN BRANDO", + "timestamp": "2023-03-05" } ], "associatedSites": [ { - "dateNoted": "2015-08-18", + "uuid": "b4f3af9f-35ae-4935-bc05-23fd66c6bf75", + "dateNoted": "2022-05-31", "notes": "", - "parcelID": "16886", - "siteID": "16934", + "parcelID": "20613", + "siteID": "20112", "siteRegistry": true - }, - { - "dateNoted": "2023-05-11", - "notes": "", - "parcelID": "17093", - "siteID": "19235", - "siteRegistry": false } ] }, { - "uuid": "e7f611d4-b61d-4eb5-b934-02f4c985d5ce", - "siteID": 16934, - "address": "682 Mueller Greens", - "latitude": 54.1376, - "longitude": -128.6904, - "lastUpdated": "2018-12-24", - "city": "Lake Ali", + "uuid": "c5237ad0-436e-4459-959c-37c1608bdae0", + "siteID": 15209, + "address": "36606 Amy Island", + "latitude": 52.9889, + "longitude": -128.3397, + "lastUpdated": "2018-05-12", + "city": "Krisville", "region": "Thompson-Okanagan", - "victoriaFile": "26250-20/10017", + "victoriaFile": "26250-20/1049", "regionalFile": "N/A", "parcelIDs": [ - 1394712, - 2510872, - 3288768, - 8205967, - 9393469 + 1751221, + 5825869, + 7265461, + 242820, + 337566 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2014-06-20", - "completed": "2018-10-08", - "initiated": "2014-07-01", - "ministryContact": "ANKUNDING LYSANNE", + "uuid": "9dc6f032-803d-47ce-9fa1-877efeb5e5c3", + "createdAt": "2020-06-21", + "completed": "2014-09-20", + "initiated": "2017-06-09", + "ministryContact": "BORER HORTENSE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -31507,16 +36941,53 @@ ], "notationParticipants": [ { + "uuid": "6278a43b-0547-4a94-9128-97bf2c019b75", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "uuid": "7959bea5-5e10-4e3f-ba66-d8ce3063fe9a", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true }, { + "uuid": "008fd712-4925-4dfd-9644-7cc54b351c42", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "00539d00-5140-453d-bf59-b755fd69e238", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "uuid": "a16d8259-11c0-4e53-b2f0-243cd123e6b6", + "createdAt": "2017-06-29", + "completed": "2017-11-15", + "initiated": "2023-05-22", + "ministryContact": "PARKER QUINTEN", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "uuid": "cd0c23ab-3caf-42b1-a227-7a3f4759c2e6", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false }, { + "uuid": "d42a4dfb-79e3-4285-ac90-00b19a2678e6", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false @@ -31525,10 +36996,11 @@ "siteRegistry": true }, { - "createdAt": "2020-07-12", - "completed": "2023-04-14", - "initiated": "2020-01-12", - "ministryContact": "MORISSETTE REID", + "uuid": "de33cd5a-9b20-4942-9ad2-210e7ab95f0d", + "createdAt": "2023-02-17", + "completed": "2023-06-18", + "initiated": "2016-08-10", + "ministryContact": "SCHIMMEL CARMEN", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -31537,28 +37009,44 @@ ], "notationParticipants": [ { + "uuid": "74f5237d-cc56-4158-97f5-381625b1a313", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "uuid": "db9a8d35-3f3c-4c55-bc38-db9c9f318551", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "a8c18bc3-19b1-4bd6-9328-38a14fe98aa3", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true }, { + "uuid": "b29f9b71-da1d-44ee-aaf8-5e29b3d70b5e", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false }, { + "uuid": "f01c6bcb-b721-491b-a887-58c987bbc921", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false } ], "siteRegistry": true }, { - "createdAt": "2020-07-28", - "completed": "2017-08-09", - "initiated": "2023-02-02", - "ministryContact": "ZEMLAK DANNIE", + "uuid": "28835d31-3aa4-4130-bdf4-7b5db69f0166", + "createdAt": "2015-06-17", + "completed": "2022-09-23", + "initiated": "2015-01-21", + "ministryContact": "STROMAN YVETTE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -31567,29 +37055,45 @@ ], "notationParticipants": [ { + "uuid": "7100c6b2-d97c-4716-a7ba-296177eee937", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false + "role": "REQUESTED BY", + "siteRegistry": true }, { + "uuid": "bcb8064f-c179-409f-b1f5-51d3ea052da8", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", + "uuid": "b3314ba1-ebfa-46bd-9c8e-895e58f76013", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false + }, + { + "uuid": "457b0552-c3b9-4e5e-80be-260b656b02e9", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "uuid": "f0b608b6-4c5c-4889-bbb9-b26ad08d644a", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true } ], "participants": [ { + "uuid": "468c3736-1e8d-45b0-8121-b0d0ee332139", "name": "IPSUM", - "endDate": "2019-02-06", - "startDate": "2019-06-29", + "endDate": "2018-08-16", + "startDate": "2017-10-07", "notes": "", "roles": [ "EMPLOYEE" @@ -31597,135 +37101,80 @@ "siteRegistry": true }, { + "uuid": "02f7ddd0-bc84-4742-b658-92d181389b62", "name": "AMET, DOLOR SIT", - "endDate": "2015-09-18", - "startDate": "2023-05-09", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2021-08-03", - "startDate": "2020-05-08", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2021-07-13", - "startDate": "2017-06-05", + "endDate": "2015-07-18", + "startDate": "2016-01-29", "notes": "", "roles": [ "ORGANIZATION" ], "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2017-10-20", - "startDate": "2015-03-20", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": false } ], "suspectLandUses": [ { + "uuid": "921c09e0-a1f2-4023-9079-2c23a7c13091", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-06-21 (described on Site Profile dated 2017-06-21)", + "notes": "INSERTED FOR SITE PROFILE DATED 2017-08-05 (described on Site Profile dated 2017-08-05)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { + "uuid": "5a3afd8b-5b8b-4465-bb46-27a7394f072e", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-07-31 (described on Site Profile dated 2015-07-31)", + "notes": "INSERTED FOR SITE PROFILE DATED 2019-09-06 (described on Site Profile dated 2019-09-06)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" - }, - { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-05-09 (described on Site Profile dated 2017-05-09)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" - }, - { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-12-21 (described on Site Profile dated 2017-12-21)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], "parcelDescriptions": [ { - "siteRegistry": false, - "dateNoted": "2020-08-11", - "parcelID": "16751", - "crownLandUsePIN": "19360", - "crownLandFileNumber": "16533", - "landDescription": "LOT 3 OF LOT 5 BLOCK 2 DISTRICT LOT 1 PLAN 5589" - }, - { + "uuid": "09517388-c7e1-4937-b763-4036412858ab", "siteRegistry": true, - "dateNoted": "2021-11-18", - "parcelID": "19834", - "crownLandUsePIN": "18414", - "crownLandFileNumber": "16582", - "landDescription": "LOT 3 OF LOT 3 BLOCK 2 DISTRICT LOT 1 PLAN 6394" - }, - { - "siteRegistry": false, - "dateNoted": "2019-09-14", - "parcelID": "19373", - "crownLandUsePIN": "19037", - "crownLandFileNumber": "16499", - "landDescription": "LOT 2 OF LOT 1 BLOCK 4 DISTRICT LOT 3 PLAN 6826" - }, - { - "siteRegistry": false, - "dateNoted": "2017-10-25", - "parcelID": "18980", - "crownLandUsePIN": "17558", - "crownLandFileNumber": "18180", - "landDescription": "LOT 5 OF LOT 2 BLOCK 3 DISTRICT LOT 1 PLAN 8098" + "dateNoted": "2022-12-15", + "parcelID": "18600", + "crownLandUsePIN": "16967", + "crownLandFileNumber": "15949", + "landDescription": "LOT 2 OF LOT 4 BLOCK 2 DISTRICT LOT 3 PLAN 6815" }, { - "siteRegistry": false, - "dateNoted": "2023-08-02", - "parcelID": "17491", - "crownLandUsePIN": "16997", - "crownLandFileNumber": "16912", - "landDescription": "LOT 1 OF LOT 3 BLOCK 2 DISTRICT LOT 4 PLAN 3108" + "uuid": "78bdab88-d9ab-48f8-a046-fefef7b67743", + "siteRegistry": true, + "dateNoted": "2016-12-25", + "parcelID": "20253", + "crownLandUsePIN": "20532", + "crownLandFileNumber": "17198", + "landDescription": "LOT 3 OF LOT 4 BLOCK 1 DISTRICT LOT 4 PLAN 8894" } ], "siteDisclosures": [ { + "uuid": "9fc5d0fa-d834-49fc-a126-b6d4e4e2ceea", "siteRegistry": false, - "dateReceived": "2016-05-23", - "dateCompleted": "2016-06-01", - "dateEntered": "2015-07-13", - "dateRegistrar": "2015-08-12", - "dateLocalAuthorityReceived": "2020-10-06", - "summary": "Iste reiciendis velit nisi reprehenderit commodi in.", - "informationUsed": "Voluptates id exercitationem quas voluptatum incidunt laboriosam.\nTemporibus accusamus quo.\nDebitis quasi possimus incidunt deleniti minus doloremque.\nAliquam voluptatem saepe necessitatibus corporis tempora.\nExplicabo suscipit quaerat quam.", - "pastOrPresentOrders": "Exercitationem ab perferendis doloribus sequi quam.\nEarum nam illo totam fugit accusantium iste dolores.", + "dateReceived": "2020-05-30", + "dateCompleted": "2022-11-18", + "dateEntered": "2021-08-31", + "dateRegistrar": "2021-03-16", + "dateLocalAuthorityReceived": "2017-11-23", + "summary": "Provident molestias similique commodi.", + "informationUsed": "Aliquid necessitatibus similique praesentium repellat asperiores deleniti.\nNumquam aspernatur doloribus.\nSequi quo a atque.\nRepellendus similique itaque corrupti placeat quos.\nCumque eos cumque soluta occaecati dolorem inventore facere repellendus saepe.", + "pastOrPresentOrders": "Fugiat beatae nulla quod possimus eum blanditiis saepe tempore.\nAssumenda eveniet molestias aut.\nVeniam quam numquam animi eaque nam perferendis molestias.", "commercialAndIndustrialPurposes": [ { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false + "uuid": "4c475d51-c3a7-445f-b0f4-27910a206483", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true }, { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "uuid": "cfcaf67b-b6fc-4336-b96e-372421d135f3", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { + "uuid": "6a10258b-61c6-4ff9-8fd3-5c0503ef6c3b", "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true } ] @@ -31733,83 +37182,101 @@ ], "activityLog": [ { - "siteRegistry": false, + "uuid": "bc61eb32-4050-405f-a8ed-4d4eb0a6e18f", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "WINDLER BUD", - "timestamp": "2018-06-09" + "user": "DOYLE OKEY", + "timestamp": "2021-05-09" }, { + "uuid": "ce2c98ab-c975-4066-a770-cd20dd6af6f3", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "ORTIZ DAYNE", - "timestamp": "2015-12-11" + "user": "HARRIS BENNETT", + "timestamp": "2021-03-03" }, { + "uuid": "8ae65f37-8450-4081-850e-6f3c3835a9b2", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "SCHUSTER-MARVIN KAMRYN", - "timestamp": "2020-05-13" - }, - { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "LEDNER HILDEGARD", - "timestamp": "2016-09-13" + "user": "BRADTKE LETHA", + "timestamp": "2020-11-11" }, { + "uuid": "962b28d9-b75e-4684-815b-9df4702146b9", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "RATH DELORES", - "timestamp": "2022-01-23" + "user": "GOYETTE KAREEM", + "timestamp": "2023-08-06" }, { + "uuid": "dc0b50c3-9e7d-45ae-9a6c-871eb3b05e74", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "REYNOLDS TRACY", - "timestamp": "2018-05-06" + "user": "REICHEL TATE", + "timestamp": "2017-06-03" }, { + "uuid": "c5aea041-6e78-4568-9875-0a58a60158c7", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "METZ BURNICE", - "timestamp": "2013-11-14" + "user": "COLLIER ULICES", + "timestamp": "2018-03-08" } ], "associatedSites": [ { - "dateNoted": "2016-10-13", + "uuid": "93bdef39-3538-4591-8bc3-b3a55f81c7a6", + "dateNoted": "2014-09-17", "notes": "", - "parcelID": "19807", - "siteID": "18404", + "parcelID": "15698", + "siteID": "20362", + "siteRegistry": true + }, + { + "uuid": "5c8c145c-a857-42e5-904f-8c5875b6a8ba", + "dateNoted": "2017-11-26", + "notes": "", + "parcelID": "18718", + "siteID": "17170", + "siteRegistry": true + }, + { + "uuid": "d5e62762-0f01-4c96-93bc-1160bb030d5b", + "dateNoted": "2018-06-07", + "notes": "", + "parcelID": "17682", + "siteID": "17858", "siteRegistry": false } ] }, { - "uuid": "c54a9340-40e9-4691-9ff7-b7737730c256", - "siteID": 16938, - "address": "62997 Noah Skyway", - "latitude": 49.2872, - "longitude": -134.1861, - "lastUpdated": "2018-01-21", - "city": "San Luis Obispo", - "region": "Cariboo", - "victoriaFile": "26250-20/19314", + "uuid": "0fdf44e0-0bb1-4c91-8479-47e4e83e0a21", + "siteID": 19383, + "address": "97800 Jo Well", + "latitude": 54.6669, + "longitude": -119.0725, + "lastUpdated": "2015-02-09", + "city": "Grimesboro", + "region": "Thompson-Okanagan", + "victoriaFile": "26250-20/5037", "regionalFile": "N/A", "parcelIDs": [ - 7673194, - 7954474, - 1961430, - 8927580, - 9507997 + 1826886, + 2549586, + 637458, + 2528434, + 3743194 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2015-12-28", - "completed": "2017-12-28", - "initiated": "2016-06-28", - "ministryContact": "KOELPIN DAISY", + "uuid": "da17df99-fdf5-4d7d-9534-c8cd3812928a", + "createdAt": "2021-07-08", + "completed": "2017-06-29", + "initiated": "2016-12-23", + "ministryContact": "ROLFSON DORCAS", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -31818,58 +37285,38 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "uuid": "15d468db-dc5b-4203-80ec-40c2d80c7efe", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "uuid": "10c0994b-4554-4479-b457-f7827d250586", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": false }, { + "uuid": "3dbf043b-68d4-4fef-a41c-04f76d6aec28", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - } - ], - "siteRegistry": true - }, - { - "createdAt": "2018-12-13", - "completed": "2016-02-15", - "initiated": "2016-08-25", - "ministryContact": "ROMAGUERA ABBEY", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true }, { + "uuid": "86d586b5-8380-4da5-9b1f-cf8bd01eff08", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2015-04-04", - "completed": "2020-11-14", - "initiated": "2014-12-13", - "ministryContact": "NIKOLAUS ANISSA", + "uuid": "31ef23f5-2e41-4416-90ec-2c494c03a1e6", + "createdAt": "2018-03-21", + "completed": "2019-09-15", + "initiated": "2021-11-02", + "ministryContact": "KOSS EILEEN", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -31878,29 +37325,16 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "149e5b30-cd82-4a7b-b69e-c993067dffac", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { + "uuid": "0aaf9203-a64a-40e8-a0a8-4241957c93d5", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false } ], "siteRegistry": false @@ -31908,9 +37342,10 @@ ], "participants": [ { - "name": "IPSUM", - "endDate": "2020-04-06", - "startDate": "2014-06-09", + "uuid": "770f5898-ceba-4e2b-987d-b76a33195f4c", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2022-01-21", + "startDate": "2015-02-08", "notes": "", "roles": [ "ORGANIZATION" @@ -31918,19 +37353,10 @@ "siteRegistry": false }, { + "uuid": "c0d21534-594c-4bdf-90c3-3b43b870db7f", "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2014-10-02", - "startDate": "2015-12-03", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2022-12-26", - "startDate": "2022-08-08", + "endDate": "2018-02-13", + "startDate": "2018-10-18", "notes": "", "roles": [ "ORGANIZATION" @@ -31938,227 +37364,220 @@ "siteRegistry": true }, { - "name": "AMET, DOLOR SIT", - "endDate": "2016-12-29", - "startDate": "2021-07-27", + "uuid": "fb3af985-d235-4443-ac24-3af2323d1641", + "name": "IPSUM", + "endDate": "2016-12-11", + "startDate": "2013-10-30", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false }, { - "name": "AMET, DOLOR SIT", - "endDate": "2019-05-18", - "startDate": "2020-05-25", + "uuid": "1a4335d8-4469-4357-bcae-27b0faa3b03e", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2018-07-26", + "startDate": "2022-04-17", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": true } ], "suspectLandUses": [ { + "uuid": "79737abd-a68f-4187-b58d-0d89251fbabb", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2021-09-08 (described on Site Profile dated 2021-09-08)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "uuid": "65609a2e-4279-4bf6-9a6d-63a1e3399c0d", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2018-10-07 (described on Site Profile dated 2018-10-07)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "uuid": "b0795ece-52a0-4410-9eb4-0df8d0f6a973", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2016-05-17 (described on Site Profile dated 2016-05-17)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "uuid": "67b54272-05af-4e3e-a5ab-d81998e462aa", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-07-01 (described on Site Profile dated 2021-07-01)", + "notes": "INSERTED FOR SITE PROFILE DATED 2019-03-21 (described on Site Profile dated 2019-03-21)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-12-11 (described on Site Profile dated 2018-12-11)", + "uuid": "5e1e415f-9193-41de-a5d3-41d258d2cf3d", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2013-11-09 (described on Site Profile dated 2013-11-09)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], "parcelDescriptions": [ { + "uuid": "8689179b-7884-45f8-8a53-74563f9732cd", "siteRegistry": true, - "dateNoted": "2017-10-23", - "parcelID": "17625", - "crownLandUsePIN": "17524", - "crownLandFileNumber": "16433", - "landDescription": "LOT 1 OF LOT 2 BLOCK 3 DISTRICT LOT 3 PLAN 6886" + "dateNoted": "2016-03-31", + "parcelID": "17279", + "crownLandUsePIN": "20442", + "crownLandFileNumber": "18825", + "landDescription": "LOT 3 OF LOT 2 BLOCK 3 DISTRICT LOT 5 PLAN 9523" }, { - "siteRegistry": true, - "dateNoted": "2017-01-30", - "parcelID": "16906", - "crownLandUsePIN": "17339", - "crownLandFileNumber": "17796", - "landDescription": "LOT 4 OF LOT 3 BLOCK 2 DISTRICT LOT 5 PLAN 7263" + "uuid": "e269595d-7061-455d-9fad-9b3686144443", + "siteRegistry": false, + "dateNoted": "2021-03-31", + "parcelID": "17068", + "crownLandUsePIN": "16910", + "crownLandFileNumber": "17260", + "landDescription": "LOT 4 OF LOT 4 BLOCK 2 DISTRICT LOT 1 PLAN 6395" }, { + "uuid": "b2e0af8c-f3f4-48a5-8862-fdc1ad8ea503", "siteRegistry": false, - "dateNoted": "2022-05-15", - "parcelID": "15582", - "crownLandUsePIN": "16343", - "crownLandFileNumber": "17084", - "landDescription": "LOT 1 OF LOT 4 BLOCK 1 DISTRICT LOT 2 PLAN 3662" + "dateNoted": "2017-12-28", + "parcelID": "20379", + "crownLandUsePIN": "20500", + "crownLandFileNumber": "19152", + "landDescription": "LOT 2 OF LOT 2 BLOCK 4 DISTRICT LOT 3 PLAN 8196" }, { - "siteRegistry": false, - "dateNoted": "2018-03-12", - "parcelID": "17003", - "crownLandUsePIN": "17198", - "crownLandFileNumber": "15627", - "landDescription": "LOT 2 OF LOT 1 BLOCK 4 DISTRICT LOT 1 PLAN 3877" + "uuid": "8a71654b-da4b-49f4-8988-f0f8e05f23a9", + "siteRegistry": true, + "dateNoted": "2023-01-28", + "parcelID": "18752", + "crownLandUsePIN": "16516", + "crownLandFileNumber": "15579", + "landDescription": "LOT 1 OF LOT 3 BLOCK 5 DISTRICT LOT 2 PLAN 3384" } ], "siteDisclosures": [ { + "uuid": "ba225c9b-a35b-4014-8451-532484df99be", "siteRegistry": false, - "dateReceived": "2021-10-16", - "dateCompleted": "2023-07-25", - "dateEntered": "2014-07-22", - "dateRegistrar": "2018-06-16", - "dateLocalAuthorityReceived": "2015-01-10", - "summary": "Voluptatibus aut aperiam nam quia minima voluptatum error sint delectus.", - "informationUsed": "Exercitationem dolorum quod pariatur perferendis placeat suscipit reprehenderit.\nUnde placeat voluptatibus suscipit esse quaerat aliquam voluptates quae temporibus.\nDignissimos rem recusandae accusantium nostrum animi quae corporis molestiae.\nMagni adipisci nisi amet dolores delectus iure ab necessitatibus saepe.\nQuibusdam eaque architecto rem accusantium accusamus numquam fugit.", - "pastOrPresentOrders": "Earum facilis laborum culpa repellat.\nPorro architecto unde vel optio magni totam dolore assumenda.", + "dateReceived": "2014-01-06", + "dateCompleted": "2015-11-20", + "dateEntered": "2019-06-30", + "dateRegistrar": "2021-09-15", + "dateLocalAuthorityReceived": "2019-11-27", + "summary": "Tenetur occaecati quia cum voluptate corporis atque.\nTemporibus officiis rerum impedit quasi expedita.", + "informationUsed": "Aliquid earum ea modi eos qui dolores earum provident.\nDeleniti atque quibusdam at nihil eos quas nisi harum rem.\nExcepturi natus soluta unde inventore explicabo.", + "pastOrPresentOrders": "Veniam asperiores asperiores quibusdam necessitatibus perspiciatis nisi delectus aperiam quas.\nLaborum praesentium maxime dignissimos impedit rerum.", "commercialAndIndustrialPurposes": [ { + "uuid": "467a5e15-11ee-4f86-ab24-6e1581f08f4c", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true - }, - { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false - }, - { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false - } - ] - }, - { - "siteRegistry": true, - "dateReceived": "2023-01-07", - "dateCompleted": "2014-03-05", - "dateEntered": "2023-02-03", - "dateRegistrar": "2022-06-08", - "dateLocalAuthorityReceived": "2015-10-19", - "summary": "Mollitia sequi natus.\nPariatur neque placeat molestias laudantium.\nDoloremque accusamus tempora impedit asperiores enim modi adipisci corrupti.", - "informationUsed": "Dicta debitis ducimus ullam quia placeat magni voluptatum nulla.\nVeniam ipsum explicabo vitae delectus necessitatibus nemo debitis est veniam.\nExercitationem illum aut nobis aut doloribus dolorum dolore.", - "pastOrPresentOrders": "Libero nemo temporibus esse nemo totam.\nTemporibus laudantium omnis facilis libero voluptas magni corporis itaque.", - "commercialAndIndustrialPurposes": [ - { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, { + "uuid": "9ee4a3c7-8895-4af7-af7b-50fe6ce6606a", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { + "uuid": "1707df65-1ee6-4749-97c5-342f3dbcd039", "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { + "uuid": "9eea682e-afc4-43fc-9033-6df1699bba07", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true + "siteRegistry": false } ] } ], "activityLog": [ { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "KOSS MARILYNE", - "timestamp": "2013-12-21" - }, - { + "uuid": "3297fbe9-4344-4bd8-8179-0664cc2b1adc", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "LEUSCHKE CLYDE", - "timestamp": "2017-09-10" - }, - { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "MOHR-MAYER MARTINE", - "timestamp": "2017-12-19" - }, - { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "FEENEY STAN", - "timestamp": "2020-05-19" + "user": "KERLUKE GASTON", + "timestamp": "2016-01-30" }, { + "uuid": "9753896c-79ba-49ea-93d6-78c4a03bf5d0", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "PFANNERSTILL ALBINA", - "timestamp": "2016-06-04" + "user": "DOUGLAS ELI", + "timestamp": "2021-11-17" }, { - "siteRegistry": true, + "uuid": "d7f9475f-507f-4584-9d26-3d7f3d11b530", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "D'AMORE JALON", - "timestamp": "2020-02-08" + "user": "GULGOWSKI LISETTE", + "timestamp": "2015-05-20" }, { - "siteRegistry": true, + "uuid": "12d6eabe-064f-4dda-a67d-a4026cff5230", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "HUEL-BEAHAN JUSTON", - "timestamp": "2015-07-03" + "user": "SCHILLER FELIX", + "timestamp": "2023-01-06" }, { - "siteRegistry": true, + "uuid": "dcebd698-7561-4a88-a660-0a4104bc69d9", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "O'HARA EILEEN", - "timestamp": "2021-08-21" + "user": "FRAMI JACLYN", + "timestamp": "2018-08-29" } ], "associatedSites": [ { - "dateNoted": "2015-11-11", + "uuid": "b7bafc89-b4ff-4b95-9589-c960ed4ddee3", + "dateNoted": "2015-11-07", "notes": "", - "parcelID": "19279", - "siteID": "16605", + "parcelID": "19995", + "siteID": "15979", "siteRegistry": true }, { - "dateNoted": "2023-01-26", + "uuid": "d128c602-890e-4cc2-8ed8-d77c2e1f4202", + "dateNoted": "2018-06-27", "notes": "", - "parcelID": "18716", - "siteID": "20243", - "siteRegistry": true + "parcelID": "17875", + "siteID": "16208", + "siteRegistry": false } ] }, { - "uuid": "c67af499-1764-44de-b109-ee760f1391bc", - "siteID": 16162, - "address": "9137 Monahan Orchard", - "latitude": 49.4604, - "longitude": -135.7626, - "lastUpdated": "2015-03-19", - "city": "West Romanberg", - "region": "Cariboo", - "victoriaFile": "26250-20/12134", + "uuid": "fadb5681-1ddf-4822-8351-f9b11c4dede0", + "siteID": 17327, + "address": "3408 Fermin Lakes", + "latitude": 56.0434, + "longitude": -138.6215, + "lastUpdated": "2015-07-10", + "city": "North Dewitt", + "region": "Vancouver Island/Coast", + "victoriaFile": "26250-20/19712", "regionalFile": "N/A", "parcelIDs": [ - 5938066, - 3441460, - 174799, - 7330946, - 7978654 + 8251601, + 6896013, + 6900307, + 840632, + 8407635 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2023-06-24", - "completed": "2016-09-07", - "initiated": "2019-12-03", - "ministryContact": "BAYER ROSELLA", + "uuid": "d1537716-66f0-4a74-9187-4ac126f0b9cd", + "createdAt": "2016-11-18", + "completed": "2017-03-01", + "initiated": "2019-07-21", + "ministryContact": "JOHNSON HERMAN", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -32167,33 +37586,44 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true + "uuid": "f5135a29-60c7-4ac6-ba5c-aa045b224e52", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false }, { + "uuid": "7694842d-77aa-4153-8d71-1f9cefdf6c5d", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "b01bcee2-9ada-4211-a61c-83632b293f3c", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": true }, { + "uuid": "3d31ed00-edaa-4861-a9e3-f4329f8e112a", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false }, { + "uuid": "b2f1d3e2-98fb-4c44-9c4f-422fa30cd563", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2019-06-10", - "completed": "2015-05-03", - "initiated": "2014-10-24", - "ministryContact": "PAGAC CLARISSA", + "uuid": "3946e8b9-227f-49cc-9967-08594ab38fbc", + "createdAt": "2022-08-09", + "completed": "2014-05-04", + "initiated": "2019-09-28", + "ministryContact": "ORN ZION", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -32202,33 +37632,84 @@ ], "notationParticipants": [ { + "uuid": "ce45dfe8-e625-49e1-8cd7-62fe7d724552", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "1b58817c-8121-4824-9fd2-d63b93b69334", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "4b985358-a93b-4cda-b880-d01127515d7d", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", "siteRegistry": true }, { + "uuid": "219fecf3-0dd8-4197-9b0f-aee8d6321e59", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "94db0a60-345b-4e54-9dca-69d8ab6d88c0", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "uuid": "9dc680bf-4a72-407a-8f76-602c10fb6288", + "createdAt": "2013-11-08", + "completed": "2016-09-15", + "initiated": "2022-09-23", + "ministryContact": "LOCKMAN ADAM", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "uuid": "153e0ac7-0d5b-4ee4-861e-d7e8e58ab233", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true }, { + "uuid": "dc3c62f4-760b-4f3e-bd2c-c003a6998668", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true + }, + { + "uuid": "b9b425ee-0e90-4685-8c45-b078d50385d7", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true }, { + "uuid": "c94766dd-91b8-49e9-a34a-dcb46dca2296", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2017-04-20", - "completed": "2020-03-08", - "initiated": "2018-06-24", - "ministryContact": "KIRLIN-PURDY TIMOTHY", + "uuid": "774c9d82-696c-4302-af75-d7968b2cf1cd", + "createdAt": "2019-04-21", + "completed": "2020-10-23", + "initiated": "2015-05-10", + "ministryContact": "LANG JADA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -32237,24 +37718,67 @@ ], "notationParticipants": [ { + "uuid": "a05f3b10-fee0-4798-9921-d9fdb5b11e23", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true }, { + "uuid": "f2e7cb05-5f0d-4758-9118-602c05eb0b4d", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "uuid": "6a20586a-8acc-4947-9798-dd2c917029e9", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "uuid": "53e5ed61-9693-4342-bfe4-7d8cf4ec27d2", + "createdAt": "2020-08-30", + "completed": "2020-01-22", + "initiated": "2015-09-17", + "ministryContact": "KULAS FREDERIQUE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "uuid": "3810d0a8-e38e-4329-9f12-9fdd24b39937", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true + }, + { + "uuid": "8c4760b4-80aa-4a56-b993-39ed6e3fb4c7", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "uuid": "0cb426ee-531d-4d8d-b77a-bf8129cfea97", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true } ], "participants": [ { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2015-10-11", - "startDate": "2016-02-01", + "uuid": "cad3c072-d3cd-47e8-a39a-4dcfa74a5ba9", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2017-07-29", + "startDate": "2021-01-22", "notes": "", "roles": [ "ORGANIZATION" @@ -32262,9 +37786,10 @@ "siteRegistry": true }, { + "uuid": "fa9be4ad-2f8e-408c-b7e0-7a2e4acf502b", "name": "SHELL CANADA PRODUCTS", - "endDate": "2023-06-01", - "startDate": "2016-01-07", + "endDate": "2021-05-03", + "startDate": "2019-11-25", "notes": "", "roles": [ "EMPLOYEE" @@ -32272,9 +37797,10 @@ "siteRegistry": true }, { - "name": "IPSUM", - "endDate": "2022-07-25", - "startDate": "2018-03-21", + "uuid": "08a187e0-95d0-4466-a29c-f0349d16cbec", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2017-05-29", + "startDate": "2020-08-21", "notes": "", "roles": [ "ORGANIZATION" @@ -32282,9 +37808,21 @@ "siteRegistry": false }, { + "uuid": "3b1b8cc5-abae-4288-9e7d-2be15b5d0d7c", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2020-04-01", + "startDate": "2023-06-21", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "uuid": "bbfa6b04-15ef-4a8b-84c8-63323944bd21", "name": "IPSUM", - "endDate": "2016-09-03", - "startDate": "2022-08-25", + "endDate": "2022-06-21", + "startDate": "2023-10-10", "notes": "", "roles": [ "ORGANIZATION" @@ -32294,212 +37832,195 @@ ], "suspectLandUses": [ { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-01-24 (described on Site Profile dated 2014-01-24)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "uuid": "83ed6c46-ecbe-4fb5-a150-eaf03cbf5463", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2017-08-17 (described on Site Profile dated 2017-08-17)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { + "uuid": "b04800a5-dc7a-4031-bbed-298cebf37bf5", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-06-06 (described on Site Profile dated 2015-06-06)", + "notes": "INSERTED FOR SITE PROFILE DATED 2018-01-24 (described on Site Profile dated 2018-01-24)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { + "uuid": "9e67372c-1bfe-400e-9506-6a6477831786", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2023-10-05 (described on Site Profile dated 2023-10-05)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "notes": "INSERTED FOR SITE PROFILE DATED 2023-01-20 (described on Site Profile dated 2023-01-20)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], "parcelDescriptions": [ { - "siteRegistry": false, - "dateNoted": "2014-07-05", - "parcelID": "16184", - "crownLandUsePIN": "17361", - "crownLandFileNumber": "16487", - "landDescription": "LOT 1 OF LOT 2 BLOCK 5 DISTRICT LOT 2 PLAN 3813" - }, - { + "uuid": "392db2bd-d976-48f5-a5e1-d2c7af794899", "siteRegistry": true, - "dateNoted": "2016-04-02", - "parcelID": "18235", - "crownLandUsePIN": "17069", - "crownLandFileNumber": "19160", - "landDescription": "LOT 1 OF LOT 1 BLOCK 1 DISTRICT LOT 3 PLAN 5927" + "dateNoted": "2020-04-21", + "parcelID": "17582", + "crownLandUsePIN": "18654", + "crownLandFileNumber": "17566", + "landDescription": "LOT 3 OF LOT 5 BLOCK 3 DISTRICT LOT 1 PLAN 6263" }, { + "uuid": "73c92dde-4f23-4882-b423-acea6ae5279b", "siteRegistry": false, - "dateNoted": "2021-03-13", - "parcelID": "15482", - "crownLandUsePIN": "15629", - "crownLandFileNumber": "20121", - "landDescription": "LOT 5 OF LOT 1 BLOCK 4 DISTRICT LOT 5 PLAN 3928" + "dateNoted": "2019-01-28", + "parcelID": "17073", + "crownLandUsePIN": "19456", + "crownLandFileNumber": "15229", + "landDescription": "LOT 2 OF LOT 4 BLOCK 3 DISTRICT LOT 3 PLAN 6478" }, { + "uuid": "27bd1555-615c-48ea-866f-6179fe7d9e86", "siteRegistry": false, - "dateNoted": "2022-02-15", - "parcelID": "16787", - "crownLandUsePIN": "19970", - "crownLandFileNumber": "19622", - "landDescription": "LOT 5 OF LOT 4 BLOCK 1 DISTRICT LOT 1 PLAN 3108" + "dateNoted": "2020-10-13", + "parcelID": "19090", + "crownLandUsePIN": "19710", + "crownLandFileNumber": "17207", + "landDescription": "LOT 2 OF LOT 3 BLOCK 1 DISTRICT LOT 2 PLAN 7387" }, { + "uuid": "552761be-eb28-4383-80ca-e5e42d3b13e8", "siteRegistry": true, - "dateNoted": "2013-11-23", - "parcelID": "19463", - "crownLandUsePIN": "17794", - "crownLandFileNumber": "15374", - "landDescription": "LOT 4 OF LOT 1 BLOCK 1 DISTRICT LOT 4 PLAN 5598" + "dateNoted": "2016-07-16", + "parcelID": "17388", + "crownLandUsePIN": "19438", + "crownLandFileNumber": "18911", + "landDescription": "LOT 1 OF LOT 4 BLOCK 4 DISTRICT LOT 2 PLAN 5448" + }, + { + "uuid": "ae233e38-007d-40c7-84e0-63c733e28092", + "siteRegistry": false, + "dateNoted": "2014-03-10", + "parcelID": "15648", + "crownLandUsePIN": "16865", + "crownLandFileNumber": "18655", + "landDescription": "LOT 5 OF LOT 3 BLOCK 2 DISTRICT LOT 4 PLAN 8886" } ], "siteDisclosures": [ { - "siteRegistry": true, - "dateReceived": "2017-12-20", - "dateCompleted": "2018-03-11", - "dateEntered": "2022-07-14", - "dateRegistrar": "2015-04-03", - "dateLocalAuthorityReceived": "2023-01-15", - "summary": "Molestias eum voluptates.\nNisi odio vero quos ratione totam repudiandae quas.", - "informationUsed": "Eligendi iure rem recusandae dolor veniam.\nEius reiciendis maiores dolor qui perferendis omnis repudiandae.\nDolor cupiditate ipsum commodi delectus aliquam provident.\nExercitationem at asperiores.", - "pastOrPresentOrders": "Autem sint commodi iste vitae non quas.", - "commercialAndIndustrialPurposes": [ - { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true - }, - { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true - }, - { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true - }, - { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true - } - ] - }, - { + "uuid": "64fd0dbe-bb41-4c25-97da-8a3ad3257b3f", "siteRegistry": false, - "dateReceived": "2022-09-28", - "dateCompleted": "2015-12-02", - "dateEntered": "2022-05-12", - "dateRegistrar": "2015-07-07", - "dateLocalAuthorityReceived": "2017-07-29", - "summary": "Iste dicta amet illo blanditiis provident temporibus.\nNisi qui itaque cum.", - "informationUsed": "Accusantium fugiat veniam blanditiis.\nDoloremque sapiente labore ab earum veritatis molestias corrupti placeat dolores.\nCulpa quisquam voluptates fugiat.\nEa et commodi dolor suscipit magnam blanditiis mollitia sit.\nVeritatis odit sit officiis corrupti.", - "pastOrPresentOrders": "Architecto quis quod enim.", + "dateReceived": "2020-02-12", + "dateCompleted": "2017-01-01", + "dateEntered": "2014-03-13", + "dateRegistrar": "2016-12-10", + "dateLocalAuthorityReceived": "2014-12-08", + "summary": "Atque vero occaecati fugit exercitationem.\nRepellat architecto unde sequi temporibus quam sed vel quaerat reiciendis.", + "informationUsed": "Repellat unde dolore magni officia aspernatur quaerat id aliquam.\nProvident dolore facilis illum atque quasi rem eligendi dicta dicta.\nSit repellat provident maiores odio ut reiciendis.\nNesciunt officiis molestias mollitia quam.\nVeniam dolore amet fuga soluta eligendi dolores nostrum.", + "pastOrPresentOrders": "Corrupti exercitationem odit dolore illo.", "commercialAndIndustrialPurposes": [ { + "uuid": "45939bfa-7477-4d10-b9f0-6989bc3c3a6f", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true + "siteRegistry": false }, { + "uuid": "e777264e-8ebb-425b-9415-ffe4301190a9", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false - }, - { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true - }, - { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false } ] } ], "activityLog": [ { - "siteRegistry": true, + "uuid": "c49c1691-56ab-4b20-9602-6ac5e77a06bf", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "CARTWRIGHT JENNIFER", + "timestamp": "2015-11-06" + }, + { + "uuid": "5b53a523-32fe-4ec5-b895-46c04b4a90de", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "RICE FAUSTINO", + "timestamp": "2019-11-14" + }, + { + "uuid": "09a0a314-b866-4aa9-bda1-f7f1b3e82df8", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "DOYLE CORNELL", - "timestamp": "2020-07-29" + "user": "FLATLEY SKYLA", + "timestamp": "2020-03-21" }, { + "uuid": "e08d3550-b0dc-427f-896c-bf8c6380bc9d", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "BERGE VAUGHN", - "timestamp": "2021-07-10" + "user": "HILLS DELMER", + "timestamp": "2017-10-11" }, { + "uuid": "8e5ad3eb-f15a-40a5-9f7f-15f017fe8751", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "ROSENBAUM NATHANAEL", - "timestamp": "2016-07-10" + "user": "RUNTE DOYLE", + "timestamp": "2016-08-13" }, { + "uuid": "95e392f3-64b4-4778-bb0b-84d51b6d0849", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "SHIELDS GARRET", - "timestamp": "2018-12-30" + "user": "KULAS-BAILEY ARDELLA", + "timestamp": "2022-11-21" }, { - "siteRegistry": true, + "uuid": "21ce3b04-8426-40fa-ba5b-83bb3b75d2c3", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "SIPES LUKAS", - "timestamp": "2023-09-29" + "user": "SWANIAWSKI WALTER", + "timestamp": "2014-03-05" } ], "associatedSites": [ { - "dateNoted": "2015-05-10", - "notes": "", - "parcelID": "16638", - "siteID": "16960", - "siteRegistry": true - }, - { - "dateNoted": "2023-10-08", + "uuid": "3c2aae9d-be29-4779-ab46-d7a0035754b8", + "dateNoted": "2020-11-28", "notes": "", - "parcelID": "16963", - "siteID": "17194", + "parcelID": "17863", + "siteID": "18395", "siteRegistry": false }, { - "dateNoted": "2022-02-16", + "uuid": "daf2ca95-a2eb-435d-b89d-0c6e4ab93226", + "dateNoted": "2020-05-29", "notes": "", - "parcelID": "20564", - "siteID": "16701", - "siteRegistry": false + "parcelID": "20018", + "siteID": "16569", + "siteRegistry": true } ] }, { - "uuid": "2382d7eb-12fc-461c-8102-f286e60c2f25", - "siteID": 17287, - "address": "8729 Jamey Shoal", - "latitude": 57.4404, - "longitude": -128.5741, - "lastUpdated": "2019-02-08", - "city": "Lubbock", - "region": "Thompson-Okanagan", - "victoriaFile": "26250-20/18271", + "uuid": "7a36a55b-b090-454f-a22f-f8c7afc50ae6", + "siteID": 20362, + "address": "816 Rosalee Locks", + "latitude": 53.193, + "longitude": -138.7856, + "lastUpdated": "2018-03-30", + "city": "Conntown", + "region": "Vancouver Island/Coast", + "victoriaFile": "26250-20/18780", "regionalFile": "N/A", "parcelIDs": [ - 7265796, - 2083237, - 7687216, - 4625629, - 133294 + 1428564, + 5292508, + 576739, + 4681162, + 8714003 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2013-12-11", - "completed": "2018-05-22", - "initiated": "2019-01-17", - "ministryContact": "JACOBSON LEILANI", + "uuid": "550e27a7-3e2e-43a9-a5d9-4eccca04c094", + "createdAt": "2015-07-26", + "completed": "2018-12-08", + "initiated": "2017-06-30", + "ministryContact": "LEUSCHKE CHRISTIANA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -32508,33 +38029,44 @@ ], "notationParticipants": [ { + "uuid": "776a50c3-cf1b-4b84-8716-7ffc3b47ba18", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "354b47fe-5ab3-4e8f-b089-aa5e9d13b8b6", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true }, { + "uuid": "7daa6267-78ef-4415-b43b-bc53aba1ce12", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true }, { + "uuid": "850c3585-75a1-4269-882b-590064311add", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { + "uuid": "687b8625-3565-4fcc-9c60-fe464a70a1ee", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2020-02-02", - "completed": "2013-11-20", - "initiated": "2014-10-05", - "ministryContact": "MUELLER SHANIE", + "uuid": "2a388d17-677c-4ee5-b14b-96a99e788ce5", + "createdAt": "2016-01-05", + "completed": "2017-11-10", + "initiated": "2023-03-26", + "ministryContact": "MULLER KIRSTIN", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -32543,23 +38075,44 @@ ], "notationParticipants": [ { + "uuid": "a559eacb-e550-4444-9aac-16e104f4be68", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false }, { + "uuid": "e99fa9cf-12ae-42a7-b1ad-9a27e84a9d84", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false + }, + { + "uuid": "9f78b2c2-c7a4-4f59-b2ab-e86c8597d6d3", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "uuid": "eec36d49-da85-4be7-a4ae-3c7b29cf8efa", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "2182443b-49c0-4d2e-a698-21f56990cfa5", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false } ], "siteRegistry": false }, { - "createdAt": "2020-02-28", - "completed": "2015-02-12", - "initiated": "2021-03-23", - "ministryContact": "HOMENICK ZACKERY", + "uuid": "c015388d-7c5d-4e95-9984-1f4c37bb6504", + "createdAt": "2015-11-06", + "completed": "2018-09-29", + "initiated": "2020-01-10", + "ministryContact": "WILLIAMSON-ROHAN ESTRELLA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -32568,23 +38121,44 @@ ], "notationParticipants": [ { + "uuid": "8e446b2b-4a2a-4cf8-9d5b-9764e177a894", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false + "role": "REQUESTED BY", + "siteRegistry": true }, { + "uuid": "9370247d-e7b6-4e89-b17b-9fb341db7b54", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "0100fa0a-2719-49cb-984e-8d323bef7ef1", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "uuid": "9cee5e32-636a-4b1d-8268-7970775d737c", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "uuid": "15d63e72-0e00-4b2e-b855-e9a9d7b0a9c0", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": true } ], "siteRegistry": true }, { - "createdAt": "2018-04-18", - "completed": "2023-07-03", - "initiated": "2018-02-02", - "ministryContact": "DAUGHERTY-PFANNERSTILL CAREY", + "uuid": "5a11ac1f-3c22-46e1-b132-8870cea3019e", + "createdAt": "2021-12-08", + "completed": "2014-06-11", + "initiated": "2017-02-07", + "ministryContact": "CONNELLY BROOK", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -32593,28 +38167,44 @@ ], "notationParticipants": [ { + "uuid": "8eb68d01-2ccf-42f4-bb6c-a14a8f8d3cc2", "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "uuid": "2394a189-ac4d-49f5-81d2-ffbcd83fccd7", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { + "uuid": "67470014-2bfb-442d-9f10-6efb79906595", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false }, { + "uuid": "4c7e6958-e7fb-4ff4-af78-aebe88ebe1f4", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true + }, + { + "uuid": "93bb8e20-6478-4e22-98ad-657786966b67", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true } ], "siteRegistry": true }, { - "createdAt": "2023-08-31", - "completed": "2021-03-02", - "initiated": "2019-02-04", - "ministryContact": "ANDERSON RUPERT", + "uuid": "a618b7d7-67a0-4eaf-9436-9d037c027765", + "createdAt": "2017-01-04", + "completed": "2020-09-05", + "initiated": "2016-06-06", + "ministryContact": "KASSULKE REBA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -32623,249 +38213,306 @@ ], "notationParticipants": [ { + "uuid": "5815a542-1578-4a6f-88a3-f3f941cfb012", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false }, { + "uuid": "262e49a3-98b5-4ad7-99d5-2911cf07b2a2", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "uuid": "7d14b128-8a52-4fc4-8e2c-04121971f443", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": true }, { + "uuid": "bd70ca75-c9bb-4c12-a58a-30d16faaa1c1", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "f6d8b05c-353b-425c-879d-3828951661ad", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true } ], "participants": [ { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2018-04-21", - "startDate": "2017-03-22", + "uuid": "7d4a71d3-74f5-4cc0-ad38-6138a8f3cdf0", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2014-08-25", + "startDate": "2021-10-14", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": false }, { + "uuid": "ef290f0b-868c-4cfc-bfd4-0cc6339bc201", "name": "IPSUM", - "endDate": "2014-12-24", - "startDate": "2016-02-09", + "endDate": "2018-08-05", + "startDate": "2014-03-29", "notes": "", "roles": [ "ORGANIZATION" ], "siteRegistry": false - }, - { - "name": "IPSUM", - "endDate": "2018-10-20", - "startDate": "2015-05-30", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": true - }, - { - "name": "AMET, DOLOR SIT", - "endDate": "2014-12-24", - "startDate": "2013-11-30", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": false - }, - { - "name": "IPSUM", - "endDate": "2023-04-05", - "startDate": "2014-06-06", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": true } ], "suspectLandUses": [ { + "uuid": "7c0aa490-cfc6-46bf-b51a-7667d0e1fe28", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2021-04-13 (described on Site Profile dated 2021-04-13)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "uuid": "3be7345e-65b3-4032-a043-4c1da5725160", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-01-13 (described on Site Profile dated 2021-01-13)", + "notes": "INSERTED FOR SITE PROFILE DATED 2020-12-22 (described on Site Profile dated 2020-12-22)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { + "uuid": "c7144f67-1146-4104-8b7d-09179ace7e53", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-03-20 (described on Site Profile dated 2018-03-20)", + "notes": "INSERTED FOR SITE PROFILE DATED 2019-01-08 (described on Site Profile dated 2019-01-08)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "uuid": "f5c09f65-87c4-4ab3-9d08-da5c3517cee7", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2017-04-15 (described on Site Profile dated 2017-04-15)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], "parcelDescriptions": [ { + "uuid": "58ffb753-6332-4c24-946c-480296cc70cd", + "siteRegistry": false, + "dateNoted": "2022-01-31", + "parcelID": "16543", + "crownLandUsePIN": "17034", + "crownLandFileNumber": "20579", + "landDescription": "LOT 2 OF LOT 3 BLOCK 4 DISTRICT LOT 1 PLAN 9674" + }, + { + "uuid": "adc5ab90-db7e-4eee-86e7-0a02fcdc3b6d", "siteRegistry": true, - "dateNoted": "2016-02-04", - "parcelID": "16406", - "crownLandUsePIN": "19317", - "crownLandFileNumber": "19026", - "landDescription": "LOT 4 OF LOT 4 BLOCK 1 DISTRICT LOT 2 PLAN 9399" + "dateNoted": "2019-03-15", + "parcelID": "16133", + "crownLandUsePIN": "16227", + "crownLandFileNumber": "15531", + "landDescription": "LOT 5 OF LOT 2 BLOCK 2 DISTRICT LOT 5 PLAN 5811" }, { + "uuid": "57a603fc-bc93-4926-8fdc-78aa08ef8430", "siteRegistry": false, - "dateNoted": "2016-02-26", - "parcelID": "20863", - "crownLandUsePIN": "20343", - "crownLandFileNumber": "16632", - "landDescription": "LOT 1 OF LOT 1 BLOCK 3 DISTRICT LOT 3 PLAN 5942" + "dateNoted": "2019-04-11", + "parcelID": "20485", + "crownLandUsePIN": "15568", + "crownLandFileNumber": "16697", + "landDescription": "LOT 1 OF LOT 3 BLOCK 1 DISTRICT LOT 4 PLAN 7777" }, { - "siteRegistry": true, - "dateNoted": "2016-01-25", - "parcelID": "17339", - "crownLandUsePIN": "16100", - "crownLandFileNumber": "15575", - "landDescription": "LOT 2 OF LOT 3 BLOCK 2 DISTRICT LOT 4 PLAN 7265" + "uuid": "b2ffda37-6929-4a0e-89c1-57f957f1f98f", + "siteRegistry": false, + "dateNoted": "2016-05-27", + "parcelID": "19420", + "crownLandUsePIN": "17253", + "crownLandFileNumber": "20388", + "landDescription": "LOT 3 OF LOT 1 BLOCK 3 DISTRICT LOT 3 PLAN 6186" }, { - "siteRegistry": true, - "dateNoted": "2021-08-13", - "parcelID": "15876", - "crownLandUsePIN": "15248", - "crownLandFileNumber": "19426", - "landDescription": "LOT 2 OF LOT 3 BLOCK 3 DISTRICT LOT 2 PLAN 5919" + "uuid": "3992e2bc-dc67-4463-99d4-19064d1026dc", + "siteRegistry": false, + "dateNoted": "2022-09-24", + "parcelID": "18139", + "crownLandUsePIN": "17734", + "crownLandFileNumber": "16528", + "landDescription": "LOT 5 OF LOT 3 BLOCK 2 DISTRICT LOT 3 PLAN 9323" } ], "siteDisclosures": [ { + "uuid": "950cf234-909b-486d-84a3-41ef66494ee8", "siteRegistry": false, - "dateReceived": "2016-02-22", - "dateCompleted": "2015-04-12", - "dateEntered": "2014-08-13", - "dateRegistrar": "2021-11-06", - "dateLocalAuthorityReceived": "2022-09-05", - "summary": "Aliquid labore architecto eaque maxime hic blanditiis quibusdam.\nNostrum earum pariatur neque est natus qui repudiandae.\nDebitis omnis veniam eveniet voluptatibus.", - "informationUsed": "Non ut odit nisi quidem.\nMagnam culpa ex iure ut mollitia ex aliquid.\nIusto quisquam a iste quasi facere cumque unde odit.\nRepellat nihil error quasi voluptates iusto nihil optio quod.\nDicta nam expedita labore.", - "pastOrPresentOrders": "Maxime eveniet in molestias doloremque architecto quod.\nAd consectetur quo impedit sit quaerat.", + "dateReceived": "2014-06-07", + "dateCompleted": "2014-04-21", + "dateEntered": "2022-07-09", + "dateRegistrar": "2021-12-10", + "dateLocalAuthorityReceived": "2016-05-12", + "summary": "Consequatur alias amet architecto rerum saepe.\nDelectus consequuntur excepturi facilis explicabo quidem voluptate quia.", + "informationUsed": "Rerum perspiciatis voluptatem quidem alias sint quo.\nEum cum ad est rem.\nSed incidunt nulla repellat ipsum magni.\nNecessitatibus quis ut atque error asperiores.\nVero libero quia sit praesentium.", + "pastOrPresentOrders": "Nulla nesciunt exercitationem.\nId ipsam iusto aliquid perspiciatis debitis ipsam.\nHarum neque culpa repudiandae voluptas quas qui cupiditate quis.", "commercialAndIndustrialPurposes": [ { + "uuid": "3c50b2c5-b6fd-4887-8c0e-6319858adb03", "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true - }, - { - "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { + "uuid": "97085ff3-be7d-4778-967d-950aef9fdfe0", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { + "uuid": "ec7fd0ad-b67a-4d46-83ca-259009826877", "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false } ] + }, + { + "uuid": "05828736-bd3e-4228-b5bc-c25f33a8de60", + "siteRegistry": true, + "dateReceived": "2016-07-23", + "dateCompleted": "2016-02-25", + "dateEntered": "2015-04-01", + "dateRegistrar": "2017-01-25", + "dateLocalAuthorityReceived": "2015-11-02", + "summary": "Odio iusto atque nostrum magnam ullam.\nAd veritatis iusto.", + "informationUsed": "Nostrum officia enim eaque harum voluptatum.\nAb in nesciunt quas placeat laboriosam tempore.\nOccaecati ipsam consequuntur ratione natus.\nIllum impedit distinctio illo distinctio corrupti ipsam.", + "pastOrPresentOrders": "Sint vero dolores deleniti laborum explicabo voluptas pariatur.\nDoloribus eaque eveniet perferendis repellendus aspernatur perferendis perspiciatis.", + "commercialAndIndustrialPurposes": [ + { + "uuid": "2f043a96-cf4d-4632-bc0a-e4b4992f57d3", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "uuid": "4d59ed1b-da22-40a0-aa82-c72561732dcb", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + } + ] } ], "activityLog": [ { - "siteRegistry": false, + "uuid": "b0f0c64e-77a3-4b88-9d8a-3598f994ba7a", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "MACGYVER KATLYN", - "timestamp": "2019-11-12" + "user": "KUPHAL ALFREDO", + "timestamp": "2019-04-12" }, { + "uuid": "2372a0cc-ce6d-49f6-a791-10697621fd71", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "SCHMELER JARROD", - "timestamp": "2018-06-27" + "user": "WALTER DEVEN", + "timestamp": "2017-03-21" + }, + { + "uuid": "f58b70d1-d936-43bc-8cce-7c2c3148bad8", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "ALTENWERTH MAYA", + "timestamp": "2017-12-09" }, { + "uuid": "b001bd56-dae2-4572-8cf2-a43349768d14", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "BLOCK-KLING CHARLES", - "timestamp": "2021-07-14" + "user": "KUHLMAN CAMREN", + "timestamp": "2013-11-14" }, { + "uuid": "c4650794-4b8a-4894-b1b7-acc7e6e6b3fc", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "HACKETT ELISHA", - "timestamp": "2022-02-15" + "user": "COLLIER JULIEN", + "timestamp": "2021-12-27" }, { + "uuid": "71cf6861-be98-4df2-bfc2-37042d11c97c", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "HILLS ABNER", - "timestamp": "2016-06-18" + "user": "RUECKER CIERRA", + "timestamp": "2014-05-08" }, { + "uuid": "2a735648-d367-4c1f-96a8-56cb1ed23fda", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "DICKINSON ARIANE", - "timestamp": "2021-03-23" + "user": "DOYLE-REINGER CORINE", + "timestamp": "2016-12-11" + }, + { + "uuid": "e91958f9-4362-45ce-b3d0-24a870c8598c", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "SMITH CAROLYNE", + "timestamp": "2019-08-03" + }, + { + "uuid": "dfc2b8fb-57d5-43ea-84ca-5d687a8bd886", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "GLEICHNER DESHAUN", + "timestamp": "2018-07-19" } ], "associatedSites": [ { - "dateNoted": "2022-06-14", - "notes": "", - "parcelID": "16048", - "siteID": "16447", - "siteRegistry": true - }, - { - "dateNoted": "2023-04-07", + "uuid": "1810053c-b956-452f-92f6-348c70a39a49", + "dateNoted": "2021-05-04", "notes": "", - "parcelID": "18108", - "siteID": "16093", + "parcelID": "17683", + "siteID": "16807", "siteRegistry": false }, { - "dateNoted": "2018-02-11", + "uuid": "12871804-a776-42a3-87cd-3ff85f97a7cb", + "dateNoted": "2017-12-27", "notes": "", - "parcelID": "16474", - "siteID": "18404", - "siteRegistry": false + "parcelID": "15562", + "siteID": "16651", + "siteRegistry": true } ] }, { - "uuid": "cdc5ddb5-f1cf-4628-b682-a9e72b05c4ea", - "siteID": 15660, - "address": "39246 Romaine Parkways", - "latitude": 57.9388, - "longitude": -128.1251, - "lastUpdated": "2018-12-15", - "city": "Constancefort", + "uuid": "3ecb0a43-8b1d-4f09-a5a7-d06a3545af61", + "siteID": 20942, + "address": "3828 Davis Fork", + "latitude": 50.0524, + "longitude": -131.1825, + "lastUpdated": "2018-12-10", + "city": "Celestinefurt", "region": "Cariboo", - "victoriaFile": "26250-20/4419", + "victoriaFile": "26250-20/13009", "regionalFile": "N/A", "parcelIDs": [ - 6137970, - 6800983, - 1775514, - 2106625, - 9294657 + 8566954, + 447691, + 1832961, + 9911172, + 4976136 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2015-02-11", - "completed": "2019-02-07", - "initiated": "2023-06-23", - "ministryContact": "WATSICA HERMINIO", + "uuid": "a5415cc8-c29f-4cfc-be95-37274bed6629", + "createdAt": "2022-08-11", + "completed": "2022-07-06", + "initiated": "2015-01-06", + "ministryContact": "KSHLERIN SONIA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -32874,21 +38521,19 @@ ], "notationParticipants": [ { + "uuid": "4ccb79b0-7a79-47ea-aa6d-2641242d5a4b", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false }, { + "uuid": "da415762-a1ea-4546-a146-3e28b46b311d", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false }, { + "uuid": "b25e1645-88cd-4c11-aa26-26ba29417ff8", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true @@ -32897,10 +38542,11 @@ "siteRegistry": false }, { - "createdAt": "2014-12-25", - "completed": "2015-06-05", - "initiated": "2021-06-17", - "ministryContact": "BOYLE KYLER", + "uuid": "a3627a7f-ee71-4711-bdaa-b5287dcf21a4", + "createdAt": "2015-01-19", + "completed": "2017-01-20", + "initiated": "2014-08-11", + "ministryContact": "DAUGHERTY CRAIG", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -32909,33 +38555,38 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { + "uuid": "3c4d8695-014a-4755-a871-85fd01123f88", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", + "uuid": "6e1d9655-e942-4068-9da7-36548beba89d", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true }, { + "uuid": "c84586ab-a3a6-41d8-a42b-2ac50db2cda1", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "uuid": "2c320d06-1e64-45a9-8277-22ca1e60192e", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2017-07-01", - "completed": "2021-06-10", - "initiated": "2016-10-09", - "ministryContact": "HEATHCOTE FELICIA", + "uuid": "562a22a5-3dcb-478e-9976-d73d95a3c838", + "createdAt": "2014-02-09", + "completed": "2014-08-01", + "initiated": "2015-12-16", + "ministryContact": "HANSEN SALLY", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -32944,14 +38595,96 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "uuid": "09a668c3-f752-4fd5-85ad-b8dbc2df8c8f", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "ae7873fb-19e0-4b5b-8fc6-1c18d5f50956", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "163dcb5c-e7e8-4e5f-8f12-39d538a5b389", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "a2b0403f-ce9e-490a-b45c-9d9814ab2845", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "uuid": "c4251668-658a-4fda-9f6b-61338620356f", + "createdAt": "2015-05-04", + "completed": "2014-08-02", + "initiated": "2018-03-16", + "ministryContact": "CONN SHANNON", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "uuid": "7026341a-8a3c-47b2-893c-dc47b328c286", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false }, { + "uuid": "14f2e154-804e-4d31-96ff-dde1a492612a", "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "uuid": "dc3b042c-4794-49c3-9a95-6192eb992200", + "createdAt": "2017-10-31", + "completed": "2023-08-30", + "initiated": "2022-05-23", + "ministryContact": "ORN JACKLYN", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "uuid": "0188c9a0-d267-4c4a-8ce1-c0d17b23a0fc", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false + }, + { + "uuid": "b6ad2829-b361-4a2e-9878-9a679d8f35e9", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "uuid": "0bc5ed5c-9808-412a-9cc6-dae3d2449daa", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "b6f7f231-5718-4cd3-a16e-e7dd1def0286", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true } ], "siteRegistry": false @@ -32959,19 +38692,21 @@ ], "participants": [ { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2020-02-21", - "startDate": "2020-05-19", + "uuid": "90fb295d-fb75-44d4-95a8-39d3cbd25f78", + "name": "AMET, DOLOR SIT", + "endDate": "2022-08-06", + "startDate": "2019-04-15", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": true + "siteRegistry": false }, { + "uuid": "605dd458-da44-4b3a-a1b1-69cb3d55b57a", "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2022-04-02", - "startDate": "2016-10-13", + "endDate": "2015-07-12", + "startDate": "2022-02-16", "notes": "", "roles": [ "EMPLOYEE" @@ -32979,204 +38714,207 @@ "siteRegistry": false }, { + "uuid": "00e8f13f-7fa1-4bdf-831f-39363bb01cae", "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2023-02-26", - "startDate": "2019-06-01", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": false - }, - { - "name": "AMET, DOLOR SIT", - "endDate": "2021-03-13", - "startDate": "2013-11-26", + "endDate": "2018-02-23", + "startDate": "2019-08-29", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": false } ], "suspectLandUses": [ { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-06-26 (described on Site Profile dated 2015-06-26)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" - }, - { + "uuid": "80df6a38-56d6-452c-a3a2-49ab8a2ca53f", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-10-26 (described on Site Profile dated 2022-10-26)", + "notes": "INSERTED FOR SITE PROFILE DATED 2018-09-24 (described on Site Profile dated 2018-09-24)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { + "uuid": "9eb1d245-2530-40ad-8436-331f1c17741d", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-06-05 (described on Site Profile dated 2014-06-05)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" - }, - { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-04-18 (described on Site Profile dated 2022-04-18)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" - }, - { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-09-19 (described on Site Profile dated 2014-09-19)", + "notes": "INSERTED FOR SITE PROFILE DATED 2021-02-16 (described on Site Profile dated 2021-02-16)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], "parcelDescriptions": [ { + "uuid": "10c01753-1fd5-4b72-b956-bd6e07eecb0a", "siteRegistry": true, - "dateNoted": "2019-07-22", - "parcelID": "18332", - "crownLandUsePIN": "16925", - "crownLandFileNumber": "18308", - "landDescription": "LOT 4 OF LOT 1 BLOCK 3 DISTRICT LOT 1 PLAN 7914" + "dateNoted": "2020-08-22", + "parcelID": "20799", + "crownLandUsePIN": "17833", + "crownLandFileNumber": "19285", + "landDescription": "LOT 3 OF LOT 3 BLOCK 1 DISTRICT LOT 4 PLAN 5852" + }, + { + "uuid": "961943da-e267-4682-b50f-190bf2f965b0", + "siteRegistry": false, + "dateNoted": "2023-06-16", + "parcelID": "20519", + "crownLandUsePIN": "18190", + "crownLandFileNumber": "19491", + "landDescription": "LOT 5 OF LOT 4 BLOCK 4 DISTRICT LOT 2 PLAN 7883" + }, + { + "uuid": "d8a8f953-18c3-442e-9809-cfec5a936b19", + "siteRegistry": false, + "dateNoted": "2023-04-02", + "parcelID": "16476", + "crownLandUsePIN": "16826", + "crownLandFileNumber": "15652", + "landDescription": "LOT 3 OF LOT 3 BLOCK 5 DISTRICT LOT 3 PLAN 6156" }, { + "uuid": "7b4b1d94-d121-4098-886a-d402b9a25c3e", "siteRegistry": true, - "dateNoted": "2019-06-29", - "parcelID": "18725", - "crownLandUsePIN": "16781", - "crownLandFileNumber": "20208", - "landDescription": "LOT 2 OF LOT 5 BLOCK 5 DISTRICT LOT 1 PLAN 3194" + "dateNoted": "2017-06-03", + "parcelID": "20983", + "crownLandUsePIN": "17367", + "crownLandFileNumber": "19745", + "landDescription": "LOT 4 OF LOT 4 BLOCK 1 DISTRICT LOT 3 PLAN 4776" } ], "siteDisclosures": [ { + "uuid": "38b30737-b5e9-4701-a069-a76d79d715a9", "siteRegistry": true, - "dateReceived": "2016-08-23", - "dateCompleted": "2023-08-16", - "dateEntered": "2019-05-22", - "dateRegistrar": "2020-11-02", - "dateLocalAuthorityReceived": "2014-10-17", - "summary": "Animi labore nulla commodi temporibus deleniti.", - "informationUsed": "Aliquam dolore harum.\nPraesentium consequatur perferendis animi culpa debitis.\nIpsum non perspiciatis error in praesentium voluptatibus.\nInventore sequi vitae facilis aliquid deserunt architecto.\nOptio fugiat laboriosam.", - "pastOrPresentOrders": "Eum at earum doloremque earum.", + "dateReceived": "2020-03-02", + "dateCompleted": "2018-06-26", + "dateEntered": "2019-02-10", + "dateRegistrar": "2022-07-02", + "dateLocalAuthorityReceived": "2023-09-17", + "summary": "Excepturi omnis nisi quaerat accusantium ea incidunt culpa fuga.\nA repudiandae aspernatur ad.\nMolestias ipsum ex aspernatur aperiam a mollitia nemo omnis.", + "informationUsed": "Enim placeat dolore atque.\nSequi in ea saepe provident totam.\nA sequi pariatur at mollitia.\nSint placeat illum ab error.\nAccusantium quos sed veniam quasi.", + "pastOrPresentOrders": "Voluptatem tempore autem sit doloribus debitis quibusdam.\nOccaecati dolore voluptatem error explicabo alias repellat voluptates.", "commercialAndIndustrialPurposes": [ { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true - }, - { + "uuid": "21fe6680-8627-4b15-ba10-f7d971f2844b", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false + "siteRegistry": true }, { + "uuid": "67bbb6ae-9b92-4e56-9220-7be46c7e9ad3", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true + "siteRegistry": false }, { + "uuid": "23b81dc8-7f66-4b4a-a6ea-83e07ee42be8", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true + "siteRegistry": false } ] } ], "activityLog": [ { + "uuid": "d06df037-c64a-4978-b013-d93a7213ab00", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "POWLOWSKI CRISTINA", - "timestamp": "2017-03-01" + "user": "HAYES ARTURO", + "timestamp": "2020-03-21" }, { + "uuid": "6bbcf255-d5a5-4271-974c-5f16a17ca6d7", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "RIPPIN JEANETTE", - "timestamp": "2020-12-14" + "user": "PFEFFER CAMDEN", + "timestamp": "2023-02-20" }, { + "uuid": "dcd28f10-1063-4c78-ad60-c8fec5c70c1c", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "KAUTZER HILBERT", - "timestamp": "2023-07-11" + "user": "BASHIRIAN VELDA", + "timestamp": "2019-07-28" }, { + "uuid": "3f393466-7863-4480-ad03-8a8edb4efb68", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "KREIGER REVA", - "timestamp": "2023-09-05" + "user": "WEBER BONITA", + "timestamp": "2015-09-19" }, { + "uuid": "17528478-8a90-4dfc-a9f9-283f2beb932e", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "HESSEL CARLEE", - "timestamp": "2020-08-06" + "user": "BARTON CAREY", + "timestamp": "2020-11-21" }, { + "uuid": "bb530dc7-f1ce-4356-8b3e-4f46a60553a8", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "NIENOW TITUS", - "timestamp": "2023-01-23" - }, - { - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "CHRISTIANSEN JAYNE", - "timestamp": "2021-02-18" - }, - { - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "SCHINNER TINA", - "timestamp": "2016-01-25" + "user": "DANIEL WERNER", + "timestamp": "2020-03-09" }, { + "uuid": "39dbdfd1-ab28-44ba-83bd-03f4a96635cd", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "YUNDT CIERRA", - "timestamp": "2022-11-02" + "user": "GLOVER DANGELO", + "timestamp": "2014-06-28" } ], "associatedSites": [ { - "dateNoted": "2019-01-28", + "uuid": "978e4d14-9640-4352-8c70-f119b4ef316f", + "dateNoted": "2023-07-22", "notes": "", - "parcelID": "19595", - "siteID": "16201", + "parcelID": "18281", + "siteID": "20687", "siteRegistry": true }, { - "dateNoted": "2014-11-05", + "uuid": "96742b23-fb59-4eab-9176-ed18996d71e8", + "dateNoted": "2022-02-02", "notes": "", - "parcelID": "18010", - "siteID": "19240", + "parcelID": "16284", + "siteID": "17062", + "siteRegistry": true + }, + { + "uuid": "382a5aba-1337-4e1b-b8e7-2d31d91fd1ff", + "dateNoted": "2017-07-17", + "notes": "", + "parcelID": "20822", + "siteID": "17608", "siteRegistry": false } ] }, { - "uuid": "68772c33-4d2f-4cdb-b44d-9b43bd103767", - "siteID": 18634, - "address": "617 Laurie Light", - "latitude": 49.797, - "longitude": -129.6498, - "lastUpdated": "2021-04-14", - "city": "North Lauryburgh", + "uuid": "2199ed74-24c9-46d2-aae4-5408e2b570ef", + "siteID": 17277, + "address": "40783 Spencer Club", + "latitude": 49.4712, + "longitude": -126.5368, + "lastUpdated": "2014-04-10", + "city": "West Leta", "region": " North Coast", - "victoriaFile": "26250-20/6202", + "victoriaFile": "26250-20/14420", "regionalFile": "N/A", "parcelIDs": [ - 9601353, - 9429038, - 4912249, - 5408473, - 3924110 + 9570924, + 6718077, + 575200, + 4579511, + 155398 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2013-12-23", - "completed": "2022-11-13", - "initiated": "2020-08-01", - "ministryContact": "MURPHY IMA", + "uuid": "a7c35375-b6ac-42d6-aaa9-48964e1ee265", + "createdAt": "2015-04-17", + "completed": "2022-07-01", + "initiated": "2021-05-19", + "ministryContact": "KERTZMANN MAVIS", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -33185,23 +38923,38 @@ ], "notationParticipants": [ { + "uuid": "9385afbb-a9df-42b7-930d-73e6c9c2df5f", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "uuid": "f63c492e-c139-46b1-a40c-eb58b4393008", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false + "role": "SUBMITTED BY", + "siteRegistry": true }, { + "uuid": "7da1ddd8-691e-4161-8fe7-278d2b50a5d5", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true + }, + { + "uuid": "1130cf6c-e66b-4b0a-bedd-d7e917e7dd3e", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false } ], "siteRegistry": false }, { - "createdAt": "2016-11-22", - "completed": "2021-04-19", - "initiated": "2019-09-29", - "ministryContact": "RITCHIE JEFFREY", + "uuid": "ce5165c3-3f7d-4048-a26c-d11ff8498d46", + "createdAt": "2022-06-12", + "completed": "2017-07-22", + "initiated": "2019-08-07", + "ministryContact": "WIEGAND RIGOBERTO", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -33210,38 +38963,44 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "ecc8f231-7d17-4a0b-93e7-85ed98af38a6", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true }, { + "uuid": "78b3b83d-6954-40f9-989c-9401f32713ed", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false + "role": "REQUESTED BY", + "siteRegistry": true }, { + "uuid": "741424aa-302a-4c4a-be60-9b48b972257b", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { + "uuid": "dfa3372f-7aa8-4d17-93b3-9e874726eb7d", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true + "role": "REQUESTED BY", + "siteRegistry": false }, { + "uuid": "c73f2ed4-3a75-41ae-814d-a88611446c81", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2016-04-25", - "completed": "2018-09-18", - "initiated": "2019-05-15", - "ministryContact": "WEBER JOSIAH", + "uuid": "c8ff79d1-5328-4e97-b4e0-3629974acbd9", + "createdAt": "2019-12-08", + "completed": "2014-07-31", + "initiated": "2014-03-20", + "ministryContact": "HOWE LANEY", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -33250,38 +39009,32 @@ ], "notationParticipants": [ { + "uuid": "ffe72b1b-4e49-428a-915f-daa1a4733190", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": true }, { + "uuid": "849ac5ca-6827-4f86-a2c9-d2c2ee554b47", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { + "uuid": "7982d98c-fc3e-4519-8871-377cd860653c", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2019-03-27", - "completed": "2018-02-19", - "initiated": "2023-01-08", - "ministryContact": "RAU LAURIE", + "uuid": "56b09273-0fd4-49c2-8f58-7542abcd4c65", + "createdAt": "2016-03-25", + "completed": "2021-03-20", + "initiated": "2022-03-03", + "ministryContact": "ADAMS PRECIOUS", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -33290,23 +39043,26 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", + "uuid": "1f17fc88-8481-48e1-8a9e-e78bb80f768a", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false }, { + "uuid": "75a032fa-def7-44d8-99f7-09d67a5ec8bf", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false } ], "siteRegistry": true }, { - "createdAt": "2022-04-02", - "completed": "2014-06-06", - "initiated": "2017-12-18", - "ministryContact": "HAMMES ANGELICA", + "uuid": "39fc9f66-afca-4427-94b8-3192a95d4c25", + "createdAt": "2017-06-23", + "completed": "2017-12-17", + "initiated": "2015-03-30", + "ministryContact": "RUTHERFORD GARETT", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -33315,18 +39071,21 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "uuid": "0f57367e-1719-4d0c-b895-e18cf00068ea", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", + "uuid": "9952eee1-ed6c-437f-8c8b-230035eb1098", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "uuid": "75f4a8ab-d02d-466c-82be-694dbe0195a9", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": false } ], @@ -33335,19 +39094,10 @@ ], "participants": [ { - "name": "AMET, DOLOR SIT", - "endDate": "2014-07-21", - "startDate": "2015-01-02", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": false - }, - { + "uuid": "cf3dd654-d475-463b-90bf-d2b30786cad7", "name": "SHELL CANADA PRODUCTS", - "endDate": "2014-03-04", - "startDate": "2016-06-04", + "endDate": "2020-02-13", + "startDate": "2014-08-22", "notes": "", "roles": [ "EMPLOYEE" @@ -33355,9 +39105,10 @@ "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2023-07-21", - "startDate": "2021-01-17", + "uuid": "6ad65e8e-4f8f-46f5-92f7-28fa26eb028e", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2019-03-12", + "startDate": "2021-04-30", "notes": "", "roles": [ "ORGANIZATION" @@ -33367,110 +39118,111 @@ ], "suspectLandUses": [ { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-08-21 (described on Site Profile dated 2018-08-21)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" - }, - { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2023-05-02 (described on Site Profile dated 2023-05-02)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" - }, - { + "uuid": "7bf9664e-0864-46ae-9170-e3061d292f5b", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2013-11-04 (described on Site Profile dated 2013-11-04)", + "notes": "INSERTED FOR SITE PROFILE DATED 2021-12-27 (described on Site Profile dated 2021-12-27)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { + "uuid": "321e9418-4b41-4b56-8b4b-8c78780516a0", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-02-02 (described on Site Profile dated 2017-02-02)", + "notes": "INSERTED FOR SITE PROFILE DATED 2023-06-17 (described on Site Profile dated 2023-06-17)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], "parcelDescriptions": [ { + "uuid": "d7e0ab04-99bc-4e45-a804-d2930ba8ae75", "siteRegistry": false, - "dateNoted": "2016-11-13", - "parcelID": "19684", - "crownLandUsePIN": "15825", - "crownLandFileNumber": "16578", - "landDescription": "LOT 4 OF LOT 4 BLOCK 1 DISTRICT LOT 5 PLAN 4189" - }, - { - "siteRegistry": false, - "dateNoted": "2023-09-30", - "parcelID": "16977", - "crownLandUsePIN": "15571", - "crownLandFileNumber": "17226", - "landDescription": "LOT 3 OF LOT 1 BLOCK 1 DISTRICT LOT 4 PLAN 3330" + "dateNoted": "2016-05-10", + "parcelID": "17671", + "crownLandUsePIN": "20833", + "crownLandFileNumber": "18107", + "landDescription": "LOT 1 OF LOT 1 BLOCK 3 DISTRICT LOT 4 PLAN 5634" }, { + "uuid": "98897a2f-08be-4b71-b7a6-7dae1d8aa56f", "siteRegistry": false, - "dateNoted": "2022-09-07", - "parcelID": "17972", - "crownLandUsePIN": "17211", - "crownLandFileNumber": "20735", - "landDescription": "LOT 5 OF LOT 2 BLOCK 4 DISTRICT LOT 3 PLAN 2930" + "dateNoted": "2014-11-16", + "parcelID": "18959", + "crownLandUsePIN": "18898", + "crownLandFileNumber": "20387", + "landDescription": "LOT 3 OF LOT 5 BLOCK 3 DISTRICT LOT 2 PLAN 8447" } ], "siteDisclosures": [ { + "uuid": "b29010a2-1856-4d0d-b544-1a7c95ce2097", "siteRegistry": false, - "dateReceived": "2015-04-17", - "dateCompleted": "2022-01-11", - "dateEntered": "2022-10-27", - "dateRegistrar": "2020-05-08", - "dateLocalAuthorityReceived": "2013-12-20", - "summary": "Aspernatur a unde iste eum veniam fuga facere tenetur.\nOptio excepturi aspernatur nostrum.", - "informationUsed": "Sunt molestias fugiat ipsam cum labore harum.\nDebitis molestiae sapiente facilis.\nEx ut accusantium ullam aperiam.\nQuod enim praesentium adipisci praesentium tempore neque.\nInventore quia officia assumenda architecto officiis repellendus sequi eveniet autem.", - "pastOrPresentOrders": "Vel qui est unde.\nLibero cum occaecati asperiores perspiciatis qui consequuntur nisi.\nAnimi suscipit aliquam animi.", + "dateReceived": "2021-10-10", + "dateCompleted": "2016-06-15", + "dateEntered": "2021-03-12", + "dateRegistrar": "2019-03-15", + "dateLocalAuthorityReceived": "2020-11-09", + "summary": "Commodi saepe iusto voluptatem facilis.", + "informationUsed": "Dignissimos et ipsum cupiditate quam maiores eos est natus quod.\nMinima ex assumenda.\nDignissimos aspernatur quas.", + "pastOrPresentOrders": "Perferendis deserunt culpa labore.\nNon sequi excepturi et dolorem doloribus vel temporibus quisquam sapiente.\nDolor voluptatum asperiores suscipit ipsum natus necessitatibus sint impedit ratione.", "commercialAndIndustrialPurposes": [ { + "uuid": "e2680013-a350-401b-8563-ea5e804af003", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false + "siteRegistry": true + }, + { + "uuid": "88de4dad-fc19-4590-8aea-fa3ffd9f2c11", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true }, { + "uuid": "2be174ab-14f4-446c-8605-f2f8500c80de", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { + "uuid": "91997bc6-3449-4140-a2ef-e101e27d0e6e", "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true } ] }, { - "siteRegistry": true, - "dateReceived": "2014-06-08", - "dateCompleted": "2022-03-31", - "dateEntered": "2022-08-06", - "dateRegistrar": "2020-05-20", - "dateLocalAuthorityReceived": "2019-04-14", - "summary": "Voluptate veniam suscipit veniam ut earum enim saepe provident magni.", - "informationUsed": "Vel quam corporis fuga voluptate veritatis necessitatibus.\nMollitia voluptas dolore corrupti explicabo voluptates.\nCommodi incidunt mollitia velit recusandae mollitia.\nLibero occaecati suscipit.\nSed quasi in expedita officia delectus molestiae corporis.", - "pastOrPresentOrders": "Veritatis neque voluptatibus tempore.\nMagnam accusamus veritatis quis ut.\nSuscipit facere labore.", + "uuid": "d2b4e2f5-818a-4be1-9e46-9a92376e6cef", + "siteRegistry": false, + "dateReceived": "2017-05-06", + "dateCompleted": "2016-04-22", + "dateEntered": "2018-12-25", + "dateRegistrar": "2016-07-18", + "dateLocalAuthorityReceived": "2023-04-03", + "summary": "Porro magni quas hic amet nam quas quos eligendi molestias.", + "informationUsed": "Aliquid voluptatibus ea voluptate eaque reiciendis.\nId dicta aut aliquid harum modi.\nLaborum inventore ullam dolor commodi nulla.\nPerspiciatis quas dolorum animi et fuga accusamus.", + "pastOrPresentOrders": "Maiores iure voluptates quo laudantium.\nUt atque perferendis reprehenderit repudiandae voluptate labore.", "commercialAndIndustrialPurposes": [ { - "scheduleReference": "F1*", + "uuid": "a154ad4d-a2bb-417d-aad3-628746172e35", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { + "uuid": "f96b8a59-5708-434e-b896-9af9421b41b8", "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { - "scheduleReference": "F1*", + "uuid": "e0d3cd8e-6efb-46e4-8006-a961b044644a", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true + "siteRegistry": false }, { + "uuid": "e8b0c2ee-fec4-4329-ae08-4c62cc8c173c", "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false } ] @@ -33478,96 +39230,121 @@ ], "activityLog": [ { + "uuid": "28f211fe-900b-43f7-aea6-2f5186bbc5d6", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "JACOBSON ANTOINETTE", + "timestamp": "2014-10-21" + }, + { + "uuid": "5694fe19-1e18-4757-9f0e-436069ac842a", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "KEMMER JOHANN", - "timestamp": "2016-11-02" + "user": "WISOZK META", + "timestamp": "2019-03-25" }, { + "uuid": "b82eb21b-06ae-40d3-a728-a00d56618c02", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "O'KEEFE CARRIE", - "timestamp": "2022-01-24" + "user": "JONES BILL", + "timestamp": "2014-10-26" }, { - "siteRegistry": true, + "uuid": "a55d4a19-1cbb-454a-9927-45e07789e799", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "PFEFFER ULICES", - "timestamp": "2018-09-13" + "user": "RODRIGUEZ JEANNE", + "timestamp": "2020-06-26" }, { - "siteRegistry": true, + "uuid": "db14a693-befb-404f-bf85-2814c6490570", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "BLOCK ROGER", - "timestamp": "2023-02-15" + "user": "ROLFSON ZOLA", + "timestamp": "2021-01-25" }, { + "uuid": "edce602f-fe79-4f85-9c79-69e05545ce93", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "MACGYVER JALEN", - "timestamp": "2023-01-20" + "user": "O'KEEFE KYLIE", + "timestamp": "2020-10-19" }, { + "uuid": "86c8c511-61f0-4459-a0b6-bfa6d2630ccd", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "DICKINSON FAE", - "timestamp": "2017-01-20" + "user": "SCHOWALTER DANNIE", + "timestamp": "2019-10-20" }, { - "siteRegistry": true, + "uuid": "09a70061-1d68-4cde-9dae-66df849b8a08", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "CREMIN BENNETT", - "timestamp": "2014-05-02" + "user": "GOYETTE CLARA", + "timestamp": "2019-06-13" }, { + "uuid": "20bf09cf-7935-45c4-b830-c0a85af63498", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "BARROWS TRAVON", - "timestamp": "2020-07-17" + "user": "MOSCISKI DENNIS", + "timestamp": "2019-02-17" + }, + { + "uuid": "9762daad-b56a-4ad5-9f22-61dbb18968fa", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "MCCLURE NEWTON", + "timestamp": "2017-06-22" } ], "associatedSites": [ { - "dateNoted": "2023-09-20", + "uuid": "e8175cbe-2f25-47a1-9a9a-529aa91d0879", + "dateNoted": "2014-12-17", "notes": "", - "parcelID": "18969", - "siteID": "20555", - "siteRegistry": true + "parcelID": "17274", + "siteID": "17834", + "siteRegistry": false }, { - "dateNoted": "2023-04-10", + "uuid": "2e62251a-d29c-40ad-8a83-1d55ee905662", + "dateNoted": "2017-03-23", "notes": "", - "parcelID": "19237", - "siteID": "19902", - "siteRegistry": false + "parcelID": "19688", + "siteID": "16353", + "siteRegistry": true } ] }, { - "uuid": "cca356dd-fe26-4d16-883a-ee45d4bce637", - "siteID": 17505, - "address": "881 Bayer Wall", - "latitude": 48.878, - "longitude": -130.465, - "lastUpdated": "2021-11-30", - "city": "Fort Tabitha", - "region": " North Coast", - "victoriaFile": "26250-20/13415", + "uuid": "672a595a-5b4f-4afa-9b32-0a7629e1c501", + "siteID": 19196, + "address": "4677 Kennedi Way", + "latitude": 55.0154, + "longitude": -127.8257, + "lastUpdated": "2022-02-17", + "city": "Huelberg", + "region": "Vancouver Island/Coast", + "victoriaFile": "26250-20/13434", "regionalFile": "N/A", "parcelIDs": [ - 9622059, - 1969285, - 1024570, - 2530015, - 5040502 + 7456029, + 1701972, + 5860749, + 3557880, + 2354816 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2022-05-13", - "completed": "2021-03-15", - "initiated": "2018-12-12", - "ministryContact": "BECKER GARRY", + "uuid": "034a2e32-b6f7-46d3-8195-91e771b11e2a", + "createdAt": "2018-05-07", + "completed": "2013-12-04", + "initiated": "2022-02-14", + "ministryContact": "HACKETT TORRANCE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -33576,28 +39353,66 @@ ], "notationParticipants": [ { + "uuid": "c932b524-ee5b-4380-bc83-daa39bbd3b89", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "uuid": "195b03ee-b6e0-4023-9bf7-b033edf557ac", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": true }, { + "uuid": "72aaa2ea-5a60-4982-bda4-0fbc31a604e3", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false + "role": "REQUESTED BY", + "siteRegistry": true }, { + "uuid": "6d23a47d-d777-41fb-adfc-a04a9cbc3c25", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "uuid": "54acd1df-346e-4118-9b29-6235e5138a6b", + "createdAt": "2022-03-26", + "completed": "2019-05-13", + "initiated": "2021-09-29", + "ministryContact": "REINGER JETTIE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "uuid": "9d84a3d4-85e2-4bdb-b729-aba8ee6af983", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "a195227d-2612-487e-882c-6a9f5643a441", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2019-12-07", - "completed": "2018-03-15", - "initiated": "2015-03-25", - "ministryContact": "REINGER MADISEN", + "uuid": "fa730752-695e-4311-b20c-7f8ee5675cf0", + "createdAt": "2021-07-27", + "completed": "2022-12-18", + "initiated": "2019-11-18", + "ministryContact": "HUDSON GAETANO", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -33606,14 +39421,28 @@ ], "notationParticipants": [ { + "uuid": "42fefe2a-446b-4e33-8b83-677df5e7adac", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false }, { + "uuid": "b6e36dca-8531-4750-a27d-de1e11c3310c", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false + }, + { + "uuid": "cc50f7cc-3c71-4cf7-9801-e43507864ad2", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "uuid": "4f049304-ed58-4bae-a15f-1efefffc729e", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true } ], "siteRegistry": false @@ -33621,227 +39450,251 @@ ], "participants": [ { - "name": "AMET, DOLOR SIT", - "endDate": "2015-12-20", - "startDate": "2017-02-04", + "uuid": "e8d35261-9a67-4abd-9001-e2d536b3f1f5", + "name": "IPSUM", + "endDate": "2022-09-12", + "startDate": "2015-05-13", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": false }, { - "name": "AMET, DOLOR SIT", - "endDate": "2017-05-06", - "startDate": "2018-10-08", + "uuid": "af5e036d-a0f6-4675-8202-e3b35938b466", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2020-02-26", + "startDate": "2013-12-02", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2019-01-07", - "startDate": "2018-09-12", + "uuid": "11007c6d-f9d0-4ae0-869e-b8f58fd3a2d8", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2016-02-04", + "startDate": "2019-01-04", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": false - }, - { - "name": "AMET, DOLOR SIT", - "endDate": "2018-11-28", - "startDate": "2020-01-23", - "notes": "", - "roles": [ - "EMPLOYEE" - ], "siteRegistry": true } ], "suspectLandUses": [ { + "uuid": "bbdf6aa4-26c7-4f8a-924f-7bb556e53a87", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2020-07-03 (described on Site Profile dated 2020-07-03)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "notes": "INSERTED FOR SITE PROFILE DATED 2013-11-26 (described on Site Profile dated 2013-11-26)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { + "uuid": "498921d1-f86b-47e7-8cbd-09353d05795d", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2023-01-23 (described on Site Profile dated 2023-01-23)", + "notes": "INSERTED FOR SITE PROFILE DATED 2017-03-18 (described on Site Profile dated 2017-03-18)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { + "uuid": "a598dece-440a-4097-999e-54d7971e6ad4", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-12-03 (described on Site Profile dated 2019-12-03)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "notes": "INSERTED FOR SITE PROFILE DATED 2021-06-24 (described on Site Profile dated 2021-06-24)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], "parcelDescriptions": [ { - "siteRegistry": true, - "dateNoted": "2022-10-03", - "parcelID": "18652", - "crownLandUsePIN": "18638", - "crownLandFileNumber": "16810", - "landDescription": "LOT 2 OF LOT 5 BLOCK 4 DISTRICT LOT 2 PLAN 5914" - }, - { + "uuid": "5c1365b9-0706-49b6-affd-6e4cd93d98ef", "siteRegistry": false, - "dateNoted": "2014-10-08", - "parcelID": "15915", - "crownLandUsePIN": "15592", - "crownLandFileNumber": "16731", - "landDescription": "LOT 1 OF LOT 5 BLOCK 5 DISTRICT LOT 1 PLAN 3097" + "dateNoted": "2015-07-16", + "parcelID": "17667", + "crownLandUsePIN": "17070", + "crownLandFileNumber": "17090", + "landDescription": "LOT 3 OF LOT 5 BLOCK 3 DISTRICT LOT 3 PLAN 8041" }, { + "uuid": "c3198b11-83d9-4acd-906a-d656fa9d614c", "siteRegistry": false, - "dateNoted": "2023-01-22", - "parcelID": "19541", - "crownLandUsePIN": "16540", - "crownLandFileNumber": "20676", - "landDescription": "LOT 2 OF LOT 3 BLOCK 2 DISTRICT LOT 5 PLAN 9581" + "dateNoted": "2019-07-29", + "parcelID": "17817", + "crownLandUsePIN": "16410", + "crownLandFileNumber": "20426", + "landDescription": "LOT 1 OF LOT 1 BLOCK 4 DISTRICT LOT 3 PLAN 7614" }, { + "uuid": "3702b7e3-917a-46cf-8f86-1d9a77f5ef14", "siteRegistry": true, - "dateNoted": "2020-05-05", - "parcelID": "17648", - "crownLandUsePIN": "19690", - "crownLandFileNumber": "16382", - "landDescription": "LOT 1 OF LOT 4 BLOCK 2 DISTRICT LOT 5 PLAN 6998" + "dateNoted": "2018-10-31", + "parcelID": "16146", + "crownLandUsePIN": "15697", + "crownLandFileNumber": "18064", + "landDescription": "LOT 4 OF LOT 4 BLOCK 2 DISTRICT LOT 3 PLAN 6916" }, { - "siteRegistry": true, - "dateNoted": "2019-03-16", - "parcelID": "19865", - "crownLandUsePIN": "15288", - "crownLandFileNumber": "19357", - "landDescription": "LOT 4 OF LOT 1 BLOCK 4 DISTRICT LOT 3 PLAN 7333" + "uuid": "7eb5cfe8-c61a-4596-9fb3-7efaef9176b7", + "siteRegistry": false, + "dateNoted": "2023-06-30", + "parcelID": "15355", + "crownLandUsePIN": "19543", + "crownLandFileNumber": "15295", + "landDescription": "LOT 1 OF LOT 1 BLOCK 3 DISTRICT LOT 3 PLAN 8196" } ], "siteDisclosures": [ { - "siteRegistry": false, - "dateReceived": "2014-09-22", - "dateCompleted": "2020-05-02", - "dateEntered": "2016-05-06", - "dateRegistrar": "2019-12-24", - "dateLocalAuthorityReceived": "2021-11-18", - "summary": "Quod nemo recusandae.", - "informationUsed": "Culpa vitae unde id.\nQuisquam autem sunt quod quia ab est dignissimos unde.\nNihil occaecati accusantium reiciendis.", - "pastOrPresentOrders": "Esse eveniet error vel vitae repudiandae unde doloremque at perspiciatis.\nRatione itaque optio temporibus dolore.", + "uuid": "3a88a3ae-450d-4b83-ae43-6a4641ee6fb7", + "siteRegistry": true, + "dateReceived": "2019-01-05", + "dateCompleted": "2023-05-22", + "dateEntered": "2018-12-09", + "dateRegistrar": "2016-03-12", + "dateLocalAuthorityReceived": "2016-08-13", + "summary": "Debitis nisi illum unde ex.", + "informationUsed": "Illum saepe fugiat odio ipsam velit aperiam impedit veniam.\nLaboriosam sequi natus.\nPossimus veritatis doloribus explicabo velit officiis.", + "pastOrPresentOrders": "Ratione vel magni cum aperiam amet ipsum alias quod.\nIncidunt eos esse voluptates corrupti.", "commercialAndIndustrialPurposes": [ { + "uuid": "ecff0dad-8953-4df2-bc14-022c0d9ed396", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "uuid": "645c3bd3-088b-4471-b17e-75aa01d66eea", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true + } + ] + }, + { + "uuid": "c9d0475c-9aeb-4e04-9ac2-eb2d70b98ac9", + "siteRegistry": true, + "dateReceived": "2016-01-17", + "dateCompleted": "2023-06-03", + "dateEntered": "2017-04-06", + "dateRegistrar": "2019-07-17", + "dateLocalAuthorityReceived": "2016-08-09", + "summary": "Dolores voluptatibus voluptate.\nAd officiis optio.", + "informationUsed": "Ducimus quos sunt maxime nobis ipsum unde impedit totam.\nVoluptates incidunt dolor ratione doloremque a inventore maiores voluptatum natus.\nOdit soluta consequuntur ad saepe.\nEum molestias facere itaque dolores eveniet itaque.", + "pastOrPresentOrders": "Iste nesciunt aspernatur aperiam iste voluptates.\nConsequuntur aut reiciendis assumenda dignissimos aliquid quibusdam reprehenderit nihil.", + "commercialAndIndustrialPurposes": [ + { + "uuid": "5f285111-d48a-4dcd-a029-e07810ef5d04", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false }, { - "scheduleReference": "F1*", + "uuid": "1833b3f6-e1f0-4255-b799-fa0a2fe9e0ba", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { + "uuid": "e112b752-d2aa-4c83-9817-2553d8874e14", "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { + "uuid": "218c30ab-4615-4761-9326-af68fcdf92bc", "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false } ] } ], "activityLog": [ { + "uuid": "23515563-3a02-4c4b-be2d-8b0df6c6f20d", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "DOUGLAS BRIDGETTE", - "timestamp": "2023-08-06" + "user": "KUNZE JUSTON", + "timestamp": "2023-09-30" }, { + "uuid": "ed8a12f9-c2ad-4f2d-ac28-e8bd7b255f60", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "TREMBLAY BEAULAH", - "timestamp": "2018-03-07" + "user": "TREMBLAY WILTON", + "timestamp": "2016-09-02" }, { - "siteRegistry": false, + "uuid": "ca83d589-7504-4a53-abed-bd897b3a7007", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "RENNER AILEEN", - "timestamp": "2022-12-07" + "user": "KOZEY ROXANNE", + "timestamp": "2015-07-23" }, { + "uuid": "b4fb63a6-0f87-4edc-b212-ac2fc99088e2", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "KOCH KARIANE", - "timestamp": "2021-11-22" + "user": "MCDERMOTT THALIA", + "timestamp": "2016-04-08" }, { + "uuid": "aba40a72-54f3-4e3c-b312-3dbd11ae25cb", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "UPTON DOMENICO", - "timestamp": "2016-01-15" + "user": "DUBUQUE-DIETRICH LOY", + "timestamp": "2014-01-05" + }, + { + "uuid": "0b35f6ea-3af2-4b10-9a36-2a51d5b433a9", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "CHRISTIANSEN ALBERTO", + "timestamp": "2018-10-02" }, { + "uuid": "c520f056-7d47-49a8-a098-01745a75d04e", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "BUCKRIDGE KATTIE", - "timestamp": "2018-11-29" + "user": "STIEDEMANN TRACEY", + "timestamp": "2022-04-24" } ], "associatedSites": [ { - "dateNoted": "2017-10-16", - "notes": "", - "parcelID": "18350", - "siteID": "18687", - "siteRegistry": true - }, - { - "dateNoted": "2017-08-05", - "notes": "", - "parcelID": "18458", - "siteID": "18160", - "siteRegistry": true - }, - { - "dateNoted": "2014-01-28", + "uuid": "64556d57-045b-4bb1-861c-8e4ac4413a18", + "dateNoted": "2023-01-09", "notes": "", - "parcelID": "17478", - "siteID": "19266", + "parcelID": "18701", + "siteID": "16804", "siteRegistry": false } ] }, { - "uuid": "1aefcf08-6c4d-49bb-953f-9e3cdaccef69", - "siteID": 16890, - "address": "39666 Buford Avenue", - "latitude": 58.9728, - "longitude": -136.8787, - "lastUpdated": "2023-01-15", - "city": "New Magdalenberg", + "uuid": "eb400f8b-68a5-4607-bc6d-a26836fc3fb6", + "siteID": 18050, + "address": "28900 Zieme Lights", + "latitude": 52.5136, + "longitude": -121.7426, + "lastUpdated": "2023-02-10", + "city": "Beahanborough", "region": " North Coast", - "victoriaFile": "26250-20/3850", + "victoriaFile": "26250-20/17137", "regionalFile": "N/A", "parcelIDs": [ - 8079449, - 4267069, - 2218150, - 3259371, - 1414291 + 5467273, + 801029, + 4103987, + 2707596, + 2709402 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2022-05-08", - "completed": "2014-05-11", - "initiated": "2016-05-03", - "ministryContact": "TOWNE ELENOR", + "uuid": "515865ab-bc02-480e-947b-2c06a7ac6248", + "createdAt": "2019-08-28", + "completed": "2022-09-26", + "initiated": "2014-04-21", + "ministryContact": "DICKI ROCIO", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -33850,63 +39703,32 @@ ], "notationParticipants": [ { + "uuid": "b449b59f-c9da-4fac-85f8-ba91a726a601", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - } - ], - "siteRegistry": false - }, - { - "createdAt": "2022-04-04", - "completed": "2022-12-30", - "initiated": "2023-08-07", - "ministryContact": "CRONIN JANIE", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { + "uuid": "150a95f8-942c-423f-888d-efa2e82b7ef1", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { + "uuid": "978a2c87-5643-4480-bf62-197c2883491d", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2016-09-14", - "completed": "2015-02-10", - "initiated": "2019-02-03", - "ministryContact": "DECKOW ZORA", + "uuid": "61423541-8c25-4a33-afd3-69961eaf0f78", + "createdAt": "2020-12-17", + "completed": "2022-10-07", + "initiated": "2016-08-09", + "ministryContact": "JASKOLSKI DONATO", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -33915,38 +39737,44 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "uuid": "f2307483-8ef8-4672-a9b0-9f88b645f9e9", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": true }, { + "uuid": "2015cfde-e265-447e-8e42-a85e46970956", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "uuid": "d70fb39e-cdc6-4b09-95ed-5bc71fde1541", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": true }, { + "uuid": "580cb000-1b3e-408f-8bbd-5ec2ef522297", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "uuid": "b97fb855-2443-42c8-80b5-2e2b9e6b3e53", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", "siteRegistry": false } ], "siteRegistry": true }, { - "createdAt": "2017-11-20", - "completed": "2017-06-09", - "initiated": "2015-03-15", - "ministryContact": "MARQUARDT EULALIA", + "uuid": "04be8f5a-7787-4940-a848-a801de6a02e2", + "createdAt": "2016-06-03", + "completed": "2020-02-24", + "initiated": "2020-08-30", + "ministryContact": "KRAJCIK EASTON", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -33955,141 +39783,178 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { + "uuid": "115d7663-2826-4b0f-b2ac-6028e78ea8ad", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { + "uuid": "29574129-35a2-4b4c-b8a1-aa4cb448a1b5", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false } ], "participants": [ { - "name": "AMET, DOLOR SIT", - "endDate": "2021-04-17", - "startDate": "2014-10-20", + "uuid": "504c2f0c-1ee9-4780-9b01-fcc9a052dcad", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2020-06-03", + "startDate": "2023-03-13", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": false }, { + "uuid": "1f78a2b2-1ca6-462f-805f-1a5898265f49", "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2014-08-08", - "startDate": "2015-12-05", + "endDate": "2023-07-22", + "startDate": "2021-02-21", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": true }, { - "name": "AMET, DOLOR SIT", - "endDate": "2014-07-27", - "startDate": "2022-01-13", + "uuid": "3c885dc8-0204-4a07-90d4-013815d58204", + "name": "IPSUM", + "endDate": "2017-11-13", + "startDate": "2014-10-03", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "uuid": "b5f2f790-a3a5-4c5e-af6b-4d1211f6112c", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2014-06-29", + "startDate": "2022-03-28", "notes": "", "roles": [ "EMPLOYEE" ], + "siteRegistry": true + }, + { + "uuid": "f47d6141-266f-4f95-849c-26d58d7ac49e", + "name": "AMET, DOLOR SIT", + "endDate": "2016-07-17", + "startDate": "2021-07-22", + "notes": "", + "roles": [ + "ORGANIZATION" + ], "siteRegistry": false } ], "suspectLandUses": [ { + "uuid": "9deec474-183e-4931-8a59-3e33c6253e06", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-01-15 (described on Site Profile dated 2018-01-15)", + "notes": "INSERTED FOR SITE PROFILE DATED 2014-04-05 (described on Site Profile dated 2014-04-05)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { + "uuid": "39606aec-4539-4f0d-9956-254b2225c593", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-09-23 (described on Site Profile dated 2022-09-23)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "notes": "INSERTED FOR SITE PROFILE DATED 2020-05-11 (described on Site Profile dated 2020-05-11)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-10-11 (described on Site Profile dated 2017-10-11)", + "uuid": "61c7e77d-b71b-484c-875f-5e83379253ae", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2016-06-01 (described on Site Profile dated 2016-06-01)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { + "uuid": "6a416646-f332-4469-9299-7a20244e30dc", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-05-18 (described on Site Profile dated 2021-05-18)", + "notes": "INSERTED FOR SITE PROFILE DATED 2016-03-30 (described on Site Profile dated 2016-03-30)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], "parcelDescriptions": [ { + "uuid": "f8ad7c47-eebe-4ce5-b1a8-f6d7f17b1f6d", "siteRegistry": false, - "dateNoted": "2020-07-03", - "parcelID": "15686", - "crownLandUsePIN": "16743", - "crownLandFileNumber": "20416", - "landDescription": "LOT 2 OF LOT 2 BLOCK 5 DISTRICT LOT 3 PLAN 8732" - }, - { - "siteRegistry": false, - "dateNoted": "2013-11-11", - "parcelID": "16497", - "crownLandUsePIN": "18504", - "crownLandFileNumber": "19396", - "landDescription": "LOT 1 OF LOT 2 BLOCK 1 DISTRICT LOT 2 PLAN 4737" + "dateNoted": "2015-10-15", + "parcelID": "16889", + "crownLandUsePIN": "16608", + "crownLandFileNumber": "17750", + "landDescription": "LOT 2 OF LOT 2 BLOCK 3 DISTRICT LOT 4 PLAN 6923" }, { + "uuid": "cb8cb636-5dce-4c32-8358-0d91a0295834", "siteRegistry": false, - "dateNoted": "2019-06-12", - "parcelID": "18752", - "crownLandUsePIN": "17298", - "crownLandFileNumber": "16656", - "landDescription": "LOT 1 OF LOT 4 BLOCK 3 DISTRICT LOT 1 PLAN 9727" - }, - { - "siteRegistry": true, - "dateNoted": "2018-12-10", - "parcelID": "17634", - "crownLandUsePIN": "15655", - "crownLandFileNumber": "17853", - "landDescription": "LOT 2 OF LOT 1 BLOCK 3 DISTRICT LOT 4 PLAN 8604" + "dateNoted": "2023-05-02", + "parcelID": "20836", + "crownLandUsePIN": "20831", + "crownLandFileNumber": "16689", + "landDescription": "LOT 4 OF LOT 4 BLOCK 3 DISTRICT LOT 5 PLAN 7721" } ], "siteDisclosures": [ { - "siteRegistry": true, - "dateReceived": "2022-03-13", - "dateCompleted": "2020-04-30", - "dateEntered": "2022-06-25", - "dateRegistrar": "2021-02-08", - "dateLocalAuthorityReceived": "2019-05-14", - "summary": "Fugiat culpa neque itaque voluptas rem.", - "informationUsed": "Culpa minus deleniti.\nQuisquam animi magnam culpa.\nConsequuntur culpa pariatur quae.", - "pastOrPresentOrders": "Aperiam voluptatum maxime neque earum.\nVitae minima repudiandae.\nSunt odio aliquid eos.", + "uuid": "f8e02220-7f5f-4a50-aecc-6300aa0ff203", + "siteRegistry": false, + "dateReceived": "2021-05-08", + "dateCompleted": "2018-03-28", + "dateEntered": "2015-01-03", + "dateRegistrar": "2015-02-26", + "dateLocalAuthorityReceived": "2021-07-07", + "summary": "Praesentium doloribus adipisci culpa dolores voluptate officiis inventore.\nOdio illo eum ab earum tempore.\nVero voluptatibus beatae temporibus ipsa cupiditate illum facilis veritatis.", + "informationUsed": "Vitae pariatur eos nulla vero non quae reiciendis.\nIllo dolor impedit vitae pariatur quos libero.\nEnim blanditiis possimus distinctio.\nIllum maxime fuga.\nConsequuntur atque excepturi dolor adipisci.", + "pastOrPresentOrders": "Cum rerum facilis quasi voluptates repellat assumenda.", "commercialAndIndustrialPurposes": [ { + "uuid": "f9bee9b4-c951-4606-bb49-4b7b571d1ead", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "uuid": "0523bd9d-6768-4d95-9bac-fec88c53d2b1", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "uuid": "e31ae4f8-26d7-421b-8092-786688ba1d24", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true + } + ] + }, + { + "uuid": "dcb18cff-48c1-411e-b77e-97dc06e2904d", + "siteRegistry": true, + "dateReceived": "2014-02-28", + "dateCompleted": "2017-01-28", + "dateEntered": "2016-05-11", + "dateRegistrar": "2019-08-10", + "dateLocalAuthorityReceived": "2016-11-19", + "summary": "Dignissimos velit nisi.", + "informationUsed": "Quidem incidunt illum esse maiores modi dicta corrupti.\nVoluptas facere deleniti temporibus.\nUt similique fugit provident enim praesentium maiores eos tempora.\nCumque veniam assumenda nihil culpa.", + "pastOrPresentOrders": "Porro id consequatur.\nTenetur hic ad aut accusamus voluptas ab.", + "commercialAndIndustrialPurposes": [ + { + "uuid": "56798e03-e412-42d1-9810-3bce7c8a5a29", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false }, { - "scheduleReference": "F1*", + "uuid": "7b7c6970-b283-4d21-a7e8-82391e374216", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false } @@ -34098,96 +39963,86 @@ ], "activityLog": [ { + "uuid": "f2cf1f15-e508-42a3-8e8a-f861781e7391", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "PARKER ELDRIDGE", - "timestamp": "2019-10-25" - }, - { - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "PROSACCO LEONORA", - "timestamp": "2015-10-15" - }, - { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "DICKENS KEENAN", - "timestamp": "2021-09-22" + "user": "HODKIEWICZ PEGGIE", + "timestamp": "2016-06-10" }, { + "uuid": "04707458-a2fe-4bd7-9cf9-7ac97d0a0718", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "D'AMORE EPHRAIM", - "timestamp": "2020-12-20" - }, - { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "ROOB NELLIE", - "timestamp": "2021-10-04" + "user": "PROHASKA CEASAR", + "timestamp": "2020-02-06" }, { + "uuid": "1262f966-8005-4bba-b2d0-421efc232076", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "VANDERVORT ARDELLA", - "timestamp": "2017-04-10" + "user": "ROOB LARRY", + "timestamp": "2015-08-16" }, { + "uuid": "e3c5303a-925b-4ece-8b3f-ed9d05191b3f", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "CONN SHYANNE", - "timestamp": "2017-03-26" + "user": "BERGNAUM KAYLEIGH", + "timestamp": "2020-11-28" }, { + "uuid": "ab4a6bef-d328-402d-bb52-804fff0d776a", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "STOKES TREY", - "timestamp": "2017-11-20" + "user": "KOHLER JUSTINE", + "timestamp": "2014-12-06" } ], "associatedSites": [ { - "dateNoted": "2016-05-27", + "uuid": "4bb90b8d-1631-4659-a6f1-fa295e08ebb9", + "dateNoted": "2016-02-14", "notes": "", - "parcelID": "20789", - "siteID": "19914", - "siteRegistry": false + "parcelID": "15470", + "siteID": "20482", + "siteRegistry": true }, { - "dateNoted": "2019-01-27", + "uuid": "8eca961b-7c70-4893-9850-92a046231bf1", + "dateNoted": "2020-06-11", "notes": "", - "parcelID": "19638", - "siteID": "20383", - "siteRegistry": false + "parcelID": "20628", + "siteID": "17390", + "siteRegistry": true } ] }, { - "uuid": "77b559a4-45ee-4511-a311-068336bc5019", - "siteID": 18873, - "address": "97274 Era Brooks", - "latitude": 53.2493, - "longitude": -118.6769, - "lastUpdated": "2014-03-11", - "city": "Santa Cruz", - "region": "Cariboo", - "victoriaFile": "26250-20/4766", + "uuid": "bac181c9-58d1-4109-8a8a-e1dd91b237f0", + "siteID": 18467, + "address": "5151 Heathcote Center", + "latitude": 50.3107, + "longitude": -124.8269, + "lastUpdated": "2019-02-04", + "city": "Rocklin", + "region": " North Coast", + "victoriaFile": "26250-20/14753", "regionalFile": "N/A", "parcelIDs": [ - 9851592, - 5304144, - 3781349, - 9102361, - 4749517 + 8594849, + 7342341, + 114113, + 4282675, + 3473096 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2017-06-24", - "completed": "2021-01-02", - "initiated": "2020-10-21", - "ministryContact": "MACEJKOVIC REBEKA", + "uuid": "1571c077-d3ce-49f9-a724-d71900575248", + "createdAt": "2020-01-22", + "completed": "2023-05-13", + "initiated": "2019-01-02", + "ministryContact": "RUNOLFSSON LIAM", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -34196,38 +40051,44 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "e15dc52d-7499-4dcc-a13e-76367582fbad", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "uuid": "65bfadf8-4040-41ea-a996-602960d0cf8c", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": false }, { + "uuid": "0c7423c4-682c-43ea-93f1-baa6da134dfe", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "63b34db2-3a25-4e1e-ba92-2f3db2c46d03", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "uuid": "8dfc70d1-cf23-4299-817b-b24f1a2c06bc", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", "siteRegistry": false } ], "siteRegistry": false }, { - "createdAt": "2020-03-20", - "completed": "2020-12-24", - "initiated": "2013-10-20", - "ministryContact": "KING EARLENE", + "uuid": "f7ca7fc8-86dc-49a7-a697-9a20d560e8c4", + "createdAt": "2021-11-24", + "completed": "2022-01-04", + "initiated": "2018-05-17", + "ministryContact": "TURNER RAHSAAN", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -34236,23 +40097,38 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "uuid": "e963ca08-9f64-42e2-8235-9420452c8f99", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": false }, { + "uuid": "25499e02-857f-4db4-af61-371e84d3b2d1", "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "uuid": "b827f83a-08f8-49fd-96dc-c329e54f678a", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "0e492218-6b8d-4b35-baf3-0ce02f60c306", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": true } ], "siteRegistry": true }, { - "createdAt": "2019-03-14", - "completed": "2014-01-08", - "initiated": "2013-11-05", - "ministryContact": "DOUGLAS BRADLEY", + "uuid": "d3e64e8f-6c6d-423d-9ec8-d9900477ff2f", + "createdAt": "2014-11-13", + "completed": "2017-11-12", + "initiated": "2016-03-07", + "ministryContact": "DANIEL NEVA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -34261,23 +40137,38 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "8a28d67e-ab90-47e0-80ef-17eead5345b2", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false }, { + "uuid": "76bbf0d1-28c4-4429-92f2-979617fe336d", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "b107ebd6-0553-4448-bd71-5ccdd298c1ef", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": true + }, + { + "uuid": "5796f3dc-879d-4084-b487-68b24aaf311f", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false } ], "siteRegistry": false }, { - "createdAt": "2022-11-08", - "completed": "2020-01-19", - "initiated": "2021-10-19", - "ministryContact": "HUDSON WAINO", + "uuid": "e85d8b0c-223e-42b8-8bac-983ed16fba59", + "createdAt": "2022-07-02", + "completed": "2020-12-18", + "initiated": "2017-02-26", + "ministryContact": "STAMM ALESSIA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -34286,44 +40177,56 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "f14ffde6-1f82-4fa3-a455-85f480ed17ad", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "dca13444-a991-4732-bb20-155a6b518b5f", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { + "uuid": "ec0b47b1-3d19-4cfc-a6b6-faf6f194b5dd", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": true }, { + "uuid": "b287b2f3-59c1-4e15-a7a5-2c42b20e8136", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true }, { + "uuid": "c99f440b-51df-4423-8596-435404786385", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false } ], "participants": [ { + "uuid": "3accedb2-b7e1-4434-aed7-03a68239b816", "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2022-12-08", - "startDate": "2013-12-14", + "endDate": "2019-03-27", + "startDate": "2019-07-25", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": false + "siteRegistry": true }, { + "uuid": "12e77172-0b1b-4ca5-803e-ce211fc964ef", "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2023-01-20", - "startDate": "2023-05-31", + "endDate": "2016-12-26", + "startDate": "2019-09-09", "notes": "", "roles": [ "EMPLOYEE" @@ -34331,226 +40234,231 @@ "siteRegistry": true }, { + "uuid": "ff19c127-eb2d-485f-8b8c-115b0f29283d", "name": "SHELL CANADA PRODUCTS", - "endDate": "2014-05-20", - "startDate": "2023-01-15", + "endDate": "2018-11-02", + "startDate": "2020-04-05", "notes": "", "roles": [ "EMPLOYEE" ], "siteRegistry": false + }, + { + "uuid": "f69eaf92-6b77-4241-ace6-118292b74b6b", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2022-06-30", + "startDate": "2018-02-18", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true } ], "suspectLandUses": [ { + "uuid": "fb3a7a75-dbec-4934-8516-3bfc69997a48", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-02-25 (described on Site Profile dated 2021-02-25)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "notes": "INSERTED FOR SITE PROFILE DATED 2019-06-09 (described on Site Profile dated 2019-06-09)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "uuid": "5e95d269-3011-4583-80a2-efe94ea682fa", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2019-07-12 (described on Site Profile dated 2019-07-12)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { + "uuid": "36d183e2-2b74-4cac-b879-eff94b51e357", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-12-24 (described on Site Profile dated 2018-12-24)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "notes": "INSERTED FOR SITE PROFILE DATED 2016-01-04 (described on Site Profile dated 2016-01-04)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], "parcelDescriptions": [ { - "siteRegistry": false, - "dateNoted": "2015-05-24", - "parcelID": "20575", - "crownLandUsePIN": "16192", - "crownLandFileNumber": "19457", - "landDescription": "LOT 5 OF LOT 4 BLOCK 3 DISTRICT LOT 1 PLAN 6727" - }, - { + "uuid": "b71eba07-64a4-4806-adc3-f5b32da6e91e", "siteRegistry": true, - "dateNoted": "2020-08-01", - "parcelID": "17618", - "crownLandUsePIN": "19235", - "crownLandFileNumber": "15220", - "landDescription": "LOT 4 OF LOT 3 BLOCK 2 DISTRICT LOT 1 PLAN 4802" + "dateNoted": "2018-08-26", + "parcelID": "17096", + "crownLandUsePIN": "18932", + "crownLandFileNumber": "20432", + "landDescription": "LOT 3 OF LOT 4 BLOCK 2 DISTRICT LOT 4 PLAN 8889" }, { + "uuid": "3eb32a29-3c54-428d-80cf-ac2cdca5da53", "siteRegistry": false, - "dateNoted": "2017-06-28", - "parcelID": "18219", - "crownLandUsePIN": "20063", - "crownLandFileNumber": "19954", - "landDescription": "LOT 5 OF LOT 4 BLOCK 5 DISTRICT LOT 3 PLAN 6685" - }, - { - "siteRegistry": true, - "dateNoted": "2021-08-18", - "parcelID": "18486", - "crownLandUsePIN": "16205", - "crownLandFileNumber": "17503", - "landDescription": "LOT 2 OF LOT 1 BLOCK 2 DISTRICT LOT 1 PLAN 8476" + "dateNoted": "2019-08-21", + "parcelID": "20818", + "crownLandUsePIN": "17151", + "crownLandFileNumber": "18177", + "landDescription": "LOT 3 OF LOT 3 BLOCK 1 DISTRICT LOT 2 PLAN 4650" }, { + "uuid": "12be880b-ab57-4116-8e91-89bb6116ac43", "siteRegistry": true, - "dateNoted": "2022-04-07", - "parcelID": "15287", - "crownLandUsePIN": "17093", - "crownLandFileNumber": "19715", - "landDescription": "LOT 5 OF LOT 1 BLOCK 5 DISTRICT LOT 2 PLAN 7082" + "dateNoted": "2018-11-21", + "parcelID": "18914", + "crownLandUsePIN": "18608", + "crownLandFileNumber": "20068", + "landDescription": "LOT 1 OF LOT 3 BLOCK 3 DISTRICT LOT 5 PLAN 7132" } ], "siteDisclosures": [ { + "uuid": "ca6c59ad-aa37-4d38-af9f-3b854b294c1b", "siteRegistry": true, - "dateReceived": "2017-07-06", - "dateCompleted": "2017-09-20", - "dateEntered": "2015-07-31", - "dateRegistrar": "2020-12-16", - "dateLocalAuthorityReceived": "2022-11-26", - "summary": "Reprehenderit rem laboriosam incidunt velit.\nTemporibus expedita sint sunt nam laboriosam error fugiat reiciendis nam.", - "informationUsed": "Nesciunt placeat exercitationem facilis et doloribus.\nVeritatis sequi unde rerum nobis tempora quibusdam.\nMinus dolorem fugit iste quod quisquam odit saepe.\nQuisquam voluptatibus facilis eaque pariatur voluptatem aliquid ad.", - "pastOrPresentOrders": "Fuga eum unde est praesentium magni tempora.", + "dateReceived": "2018-05-21", + "dateCompleted": "2023-05-12", + "dateEntered": "2019-06-12", + "dateRegistrar": "2015-12-24", + "dateLocalAuthorityReceived": "2021-12-26", + "summary": "Architecto alias officia fugit autem.\nNobis possimus quidem possimus blanditiis minus.\nNam reiciendis porro maiores quasi ipsam odio illo magnam architecto.", + "informationUsed": "Libero libero dolor minima unde voluptatibus molestias suscipit voluptatibus.\nMinus culpa at saepe aliquid voluptatem doloribus.\nTempora aliquid omnis quam similique architecto odio quod.\nQuo quisquam reprehenderit facilis est accusamus adipisci adipisci.\nTenetur tenetur quidem facere veritatis culpa libero.", + "pastOrPresentOrders": "Magnam repudiandae deserunt nulla sapiente.\nConsequuntur sint at vero aliquid hic similique quo ea.", "commercialAndIndustrialPurposes": [ { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false - }, - { + "uuid": "2b4d5879-ab3f-4f58-b020-e9973ce1b569", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, { - "scheduleReference": "F2*", + "uuid": "b658eca2-e51d-4f30-894a-b91d07e1348d", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false + "siteRegistry": true }, { - "scheduleReference": "F1*", + "uuid": "8607c4de-94e2-4b12-90a0-40f631923312", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false + "siteRegistry": true } ] }, { + "uuid": "74b656f8-fcb0-4fe2-bb4e-8c06cde77b10", "siteRegistry": false, - "dateReceived": "2016-05-02", - "dateCompleted": "2014-06-14", - "dateEntered": "2021-02-19", - "dateRegistrar": "2018-09-27", - "dateLocalAuthorityReceived": "2014-05-21", - "summary": "Quasi ipsam amet optio voluptates adipisci.\nDolor explicabo eos fugiat.\nOfficiis voluptatem quos dolorum et dolores.", - "informationUsed": "Voluptates sequi deleniti.\nOfficiis rem et.\nTotam maiores eius ab odio dolores praesentium vitae cumque.\nQuis perferendis voluptatem necessitatibus cum iusto occaecati facilis.\nEum dolor porro similique autem occaecati incidunt.", - "pastOrPresentOrders": "Recusandae excepturi vitae deserunt assumenda illum dolores dolores sint.", + "dateReceived": "2019-06-02", + "dateCompleted": "2022-05-18", + "dateEntered": "2014-08-02", + "dateRegistrar": "2018-04-14", + "dateLocalAuthorityReceived": "2022-11-29", + "summary": "Quaerat quisquam nesciunt.\nPerspiciatis aut ullam libero.\nLaborum maxime ullam esse porro beatae qui temporibus.", + "informationUsed": "Aperiam quaerat aliquid ipsa iste eos.\nCorrupti quos deleniti tenetur amet molestias quaerat dolores.\nIusto officia corrupti.", + "pastOrPresentOrders": "Fugit cum tenetur rerum fuga aperiam nostrum.\nVeritatis suscipit maxime enim nihil ad dolore culpa quas.\nTempore in sequi enim optio minima molestias magni ipsam cum.", "commercialAndIndustrialPurposes": [ { + "uuid": "71602b18-0469-48c8-8cbe-44129faa30d8", "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false }, { - "scheduleReference": "F2*", + "uuid": "2fbb944a-2da7-4841-bc6a-1e17d6c34314", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true + }, + { + "uuid": "922da113-a22e-4da9-a093-5cd727e5dd8e", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true } ] } ], "activityLog": [ { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "LEMKE LAVONNE", - "timestamp": "2019-06-24" - }, - { + "uuid": "c5f9602d-46a3-4f1e-b409-0c7171f10bb7", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "GREENFELDER ELZA", - "timestamp": "2017-08-22" + "user": "RICE ABBIGAIL", + "timestamp": "2019-08-11" }, { - "siteRegistry": true, + "uuid": "04890620-1d69-4a9d-802b-d572d809da90", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "BRAKUS VINCENT", - "timestamp": "2018-12-27" + "user": "DIETRICH ANTONINA", + "timestamp": "2014-12-12" }, { + "uuid": "1eb9e706-b89c-4097-872c-87f307185250", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "KING TELLY", - "timestamp": "2022-04-24" + "user": "SKILES CARLEE", + "timestamp": "2022-01-07" }, { + "uuid": "83b25828-1ff8-4444-bb75-a78976ddd692", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "LITTLE JERRELL", - "timestamp": "2016-02-11" + "user": "KOELPIN MARILIE", + "timestamp": "2016-03-06" }, { + "uuid": "d7118ad8-7553-4780-aed3-93faf4d73842", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "ORTIZ JAYNE", - "timestamp": "2023-03-08" + "user": "KERTZMANN KAROLANN", + "timestamp": "2020-08-01" }, { + "uuid": "2e5256ff-1239-4b59-9da9-80b10a11558c", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "SCHROEDER-ROOB JAYSON", - "timestamp": "2023-08-04" - }, - { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "KSHLERIN HANK", - "timestamp": "2014-05-19" + "user": "MURAZIK MYRTIE", + "timestamp": "2023-06-14" }, { + "uuid": "3e239a91-f169-4cce-9633-ba1cbcf0bc50", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "DICKI HUBERT", - "timestamp": "2022-12-24" + "user": "DANIEL JACYNTHE", + "timestamp": "2020-12-25" } ], "associatedSites": [ { - "dateNoted": "2022-11-19", + "uuid": "c1c403d0-1a65-4285-b65e-daf7de1b493c", + "dateNoted": "2021-10-08", "notes": "", - "parcelID": "17962", - "siteID": "15987", + "parcelID": "20525", + "siteID": "16323", "siteRegistry": true - }, - { - "dateNoted": "2022-05-05", - "notes": "", - "parcelID": "20400", - "siteID": "20492", - "siteRegistry": false } ] }, { - "uuid": "0a16cde8-283b-460c-8adb-72b65197122c", - "siteID": 20139, - "address": "6075 Mueller Drives", - "latitude": 57.2174, - "longitude": -131.6464, - "lastUpdated": "2019-12-23", - "city": "Southaven", - "region": "Kootenay", - "victoriaFile": "26250-20/14512", + "uuid": "14d3e549-f721-4f19-8f0d-40b453a30e56", + "siteID": 15844, + "address": "485 White Hill", + "latitude": 52.07, + "longitude": -125.0606, + "lastUpdated": "2013-11-17", + "city": "Gottliebfield", + "region": "Thompson-Okanagan", + "victoriaFile": "26250-20/1590", "regionalFile": "N/A", "parcelIDs": [ - 9243453, - 2798256, - 7648329, - 365349, - 9306502 + 8134947, + 9198909, + 8954156, + 3308759, + 9287882 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2016-09-29", - "completed": "2019-11-17", - "initiated": "2014-04-07", - "ministryContact": "KOSS MARTINA", + "uuid": "d56ff08d-a6b6-4ac1-be09-c3779a768b2a", + "createdAt": "2018-01-12", + "completed": "2016-08-27", + "initiated": "2021-04-06", + "ministryContact": "ERNSER SOPHIE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -34559,27 +40467,20 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { + "uuid": "47c74423-9e5e-4563-800f-a86886222b19", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false }, { + "uuid": "c2ef8300-75da-48e0-a6a2-c0a6e96731ef", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "a0d70c76-d5e5-430e-ad33-8e9ff147388f", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true } @@ -34587,10 +40488,11 @@ "siteRegistry": true }, { - "createdAt": "2018-08-15", - "completed": "2018-07-08", - "initiated": "2019-03-30", - "ministryContact": "HERZOG HAZLE", + "uuid": "83a42178-0f5d-4ad3-9418-5b22b3a18cf8", + "createdAt": "2022-08-26", + "completed": "2015-04-03", + "initiated": "2021-11-04", + "ministryContact": "DICKINSON PRESTON", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -34599,24 +40501,16 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { + "uuid": "0238e8a4-dcc2-464a-bdc8-70a14a174791", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true }, { + "uuid": "6df2522f-c19a-4e6c-8c84-16fae5f69ce0", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true + "role": "SUBMITTED BY", + "siteRegistry": false } ], "siteRegistry": false @@ -34624,154 +40518,128 @@ ], "participants": [ { - "name": "IPSUM", - "endDate": "2020-10-01", - "startDate": "2019-12-26", + "uuid": "4bfc3557-3a34-4b1c-a4f0-7d616547447e", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2015-01-15", + "startDate": "2017-01-07", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": false }, { + "uuid": "bbd224ab-c7e7-4b88-b4e1-215d48758116", "name": "SHELL CANADA PRODUCTS", - "endDate": "2022-12-07", - "startDate": "2016-06-26", + "endDate": "2016-02-05", + "startDate": "2022-06-10", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2017-01-22", - "startDate": "2018-10-24", + "uuid": "60858a3a-53e7-47b5-9c82-93a1ea4c6f4e", + "name": "AMET, DOLOR SIT", + "endDate": "2020-01-22", + "startDate": "2021-05-02", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": true + "siteRegistry": false } ], "suspectLandUses": [ { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-07-19 (described on Site Profile dated 2022-07-19)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "uuid": "80ab3f44-8182-488d-9803-063d7f2638f5", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2019-05-12 (described on Site Profile dated 2019-05-12)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-05-24 (described on Site Profile dated 2017-05-24)", + "uuid": "297c194d-1b4b-4166-9ddc-46afec15ca28", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2018-12-27 (described on Site Profile dated 2018-12-27)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-12-12 (described on Site Profile dated 2017-12-12)", + "uuid": "eee66658-439d-4cd3-b0d8-1451c872ce07", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2017-07-29 (described on Site Profile dated 2017-07-29)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-09-29 (described on Site Profile dated 2017-09-29)", + "uuid": "e7159bde-b6dc-4580-8e7b-50d761ffaaa7", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2018-11-03 (described on Site Profile dated 2018-11-03)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "uuid": "4f310edf-c590-44f7-acbb-0c1e1a1d0880", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2016-02-08 (described on Site Profile dated 2016-02-08)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], "parcelDescriptions": [ { - "siteRegistry": true, - "dateNoted": "2015-05-30", - "parcelID": "17347", - "crownLandUsePIN": "15676", - "crownLandFileNumber": "15838", - "landDescription": "LOT 3 OF LOT 2 BLOCK 5 DISTRICT LOT 3 PLAN 6398" - }, - { + "uuid": "2706bf96-c7a0-44a3-b944-d2f150aa30ff", "siteRegistry": false, - "dateNoted": "2014-11-20", - "parcelID": "20944", - "crownLandUsePIN": "18597", - "crownLandFileNumber": "17273", - "landDescription": "LOT 2 OF LOT 5 BLOCK 4 DISTRICT LOT 2 PLAN 3684" + "dateNoted": "2014-11-22", + "parcelID": "20519", + "crownLandUsePIN": "15673", + "crownLandFileNumber": "16433", + "landDescription": "LOT 1 OF LOT 5 BLOCK 1 DISTRICT LOT 2 PLAN 2948" }, { + "uuid": "06ed933c-4ded-4b4e-a1ae-48716aef08b7", "siteRegistry": true, - "dateNoted": "2022-12-06", - "parcelID": "17264", - "crownLandUsePIN": "19058", - "crownLandFileNumber": "17100", - "landDescription": "LOT 5 OF LOT 3 BLOCK 2 DISTRICT LOT 3 PLAN 6367" + "dateNoted": "2016-10-10", + "parcelID": "18783", + "crownLandUsePIN": "19265", + "crownLandFileNumber": "18203", + "landDescription": "LOT 2 OF LOT 1 BLOCK 5 DISTRICT LOT 3 PLAN 5641" }, { - "siteRegistry": true, - "dateNoted": "2016-03-25", - "parcelID": "16321", - "crownLandUsePIN": "20956", - "crownLandFileNumber": "20236", - "landDescription": "LOT 5 OF LOT 2 BLOCK 5 DISTRICT LOT 1 PLAN 6499" + "uuid": "4057dc61-874e-49ae-8226-c38663d74192", + "siteRegistry": false, + "dateNoted": "2022-11-19", + "parcelID": "15929", + "crownLandUsePIN": "20982", + "crownLandFileNumber": "15337", + "landDescription": "LOT 4 OF LOT 1 BLOCK 2 DISTRICT LOT 2 PLAN 9702" } ], "siteDisclosures": [ { - "siteRegistry": true, - "dateReceived": "2022-04-17", - "dateCompleted": "2019-03-16", - "dateEntered": "2017-10-26", - "dateRegistrar": "2019-11-28", - "dateLocalAuthorityReceived": "2022-07-07", - "summary": "Eaque error similique odio saepe minima.", - "informationUsed": "At neque deserunt minima facilis voluptas.\nDolores architecto sint cum.\nRem voluptas deserunt deserunt tempora assumenda iste.\nMaxime ipsum molestiae cumque necessitatibus.\nDelectus distinctio consequuntur.", - "pastOrPresentOrders": "Autem veniam culpa harum.", - "commercialAndIndustrialPurposes": [ - { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true - }, - { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true - }, - { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false - }, - { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false - } - ] - }, - { - "siteRegistry": true, - "dateReceived": "2020-05-11", - "dateCompleted": "2017-08-31", - "dateEntered": "2015-11-20", - "dateRegistrar": "2018-04-04", - "dateLocalAuthorityReceived": "2023-07-27", - "summary": "Repellat saepe nostrum labore fuga sed vel excepturi aliquid.\nDebitis a maiores commodi assumenda architecto sunt.", - "informationUsed": "Quos cupiditate atque vel in consequuntur eius.\nExcepturi in deserunt vero ullam aliquam provident dolore laborum.\nEveniet mollitia atque error.\nExplicabo suscipit at doloribus porro nulla saepe beatae necessitatibus explicabo.\nAliquam aperiam iusto culpa earum optio deserunt neque.", - "pastOrPresentOrders": "Aspernatur alias alias aut veniam accusamus repellat quaerat illo fugit.\nOmnis fugit enim possimus iste ipsam aliquam error error.\nNon quaerat necessitatibus voluptates.", + "uuid": "74120d5c-b1cb-4544-9055-fa1f4fe4b3ca", + "siteRegistry": false, + "dateReceived": "2023-03-18", + "dateCompleted": "2017-09-30", + "dateEntered": "2015-01-24", + "dateRegistrar": "2015-08-23", + "dateLocalAuthorityReceived": "2020-10-23", + "summary": "Molestias doloremque dolores veritatis.", + "informationUsed": "Dolore modi veniam iste adipisci.\nVelit exercitationem similique.\nQuos saepe sapiente ipsam vero labore incidunt officiis vitae culpa.\nPerspiciatis sed neque molestiae voluptate perspiciatis ducimus est aperiam iusto.\nConsectetur ullam laboriosam corporis vero illo saepe numquam architecto molestiae.", + "pastOrPresentOrders": "Est consequuntur hic dignissimos sapiente nihil fugit magnam veniam.", "commercialAndIndustrialPurposes": [ { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true - }, - { + "uuid": "c7c559c0-0773-4277-ae8a-33431f0ea5df", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { + "uuid": "10fa01b8-5bd2-4b48-9edd-7aec8f6a65d8", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { - "scheduleReference": "F2*", + "uuid": "b7fb7182-7735-45fc-ac60-76a4cecb1cb9", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false } @@ -34780,84 +40648,115 @@ ], "activityLog": [ { - "siteRegistry": false, + "uuid": "e261ff67-3100-4031-9573-f21035373975", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "BORER JAYDE", - "timestamp": "2023-05-25" + "user": "PAGAC MYRTLE", + "timestamp": "2014-06-14" }, { - "siteRegistry": false, + "uuid": "df02f704-d8d6-4a04-acd5-42289cff4b41", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "PARISIAN MARCEL", - "timestamp": "2019-08-10" + "user": "KOELPIN THEODORA", + "timestamp": "2019-06-14" }, { + "uuid": "acfd0b0f-7d37-4673-96bd-72b6d0006bf1", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "PURDY CLOVIS", - "timestamp": "2020-10-25" + "user": "HACKETT SUZANNE", + "timestamp": "2017-04-28" + }, + { + "uuid": "b1f4e7a4-6afd-4238-8151-12bd00c08ded", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "ABERNATHY-JENKINS GENESIS", + "timestamp": "2019-05-04" }, { + "uuid": "f69a001f-6e79-4a13-a63f-f4f2a740ed83", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "BORER TALIA", - "timestamp": "2014-08-16" + "user": "KEMMER JOSIANNE", + "timestamp": "2023-08-28" }, { + "uuid": "6a64072d-67f9-4dc7-ab7c-29ce0f032851", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "JOHNSON BRAYAN", - "timestamp": "2018-11-25" + "user": "SCHMIDT ALBINA", + "timestamp": "2016-02-22" + }, + { + "uuid": "0c4257a7-a945-4ba4-8d31-be15f90d9321", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "JENKINS MAIYA", + "timestamp": "2021-12-15" }, { + "uuid": "3b82953a-4a36-4c2c-a3a1-fdeba2935771", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "ROWE DAMON", - "timestamp": "2023-03-03" + "user": "SANFORD RYLEE", + "timestamp": "2022-02-28" } ], "associatedSites": [ { - "dateNoted": "2019-01-18", + "uuid": "aa787517-22dd-4ebd-a5c6-d1d6d711c2d5", + "dateNoted": "2021-11-15", "notes": "", - "parcelID": "19473", - "siteID": "19266", - "siteRegistry": true + "parcelID": "20540", + "siteID": "16017", + "siteRegistry": false + }, + { + "uuid": "b719fab3-93e3-4d26-8f0e-e9bde11aaaf0", + "dateNoted": "2014-08-03", + "notes": "", + "parcelID": "15403", + "siteID": "17062", + "siteRegistry": false }, { - "dateNoted": "2017-09-07", + "uuid": "cb2c799d-3cb2-49cd-a5a9-a117d198dcbb", + "dateNoted": "2018-12-20", "notes": "", - "parcelID": "18201", - "siteID": "16335", + "parcelID": "17954", + "siteID": "16026", "siteRegistry": false } ] }, { - "uuid": "7aab9908-cede-40ca-8f95-7f145242d2a0", - "siteID": 15987, - "address": "9726 Predovic Forest", - "latitude": 50.3951, - "longitude": -123.6328, - "lastUpdated": "2022-08-09", - "city": "Robertsshire", + "uuid": "129b5a88-ff8f-4ac2-8f85-b0b7588c96a0", + "siteID": 20892, + "address": "62510 Little Row", + "latitude": 51.7769, + "longitude": -130.3846, + "lastUpdated": "2023-05-31", + "city": "Vernaworth", "region": " North Coast", - "victoriaFile": "26250-20/9227", + "victoriaFile": "26250-20/18198", "regionalFile": "N/A", "parcelIDs": [ - 1863987, - 232042, - 5480481, - 9568777, - 9530531 + 8548305, + 9840801, + 1573324, + 766261, + 3531069 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2017-04-12", - "completed": "2016-04-05", - "initiated": "2015-07-17", - "ministryContact": "SCHUSTER NELSON", + "uuid": "9fb7d8fe-b27a-4769-9c73-ee640ffc60cf", + "createdAt": "2013-12-20", + "completed": "2015-04-10", + "initiated": "2013-12-08", + "ministryContact": "HAMMES BILLIE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -34866,42 +40765,32 @@ ], "notationParticipants": [ { + "uuid": "7d7da586-e1f7-4a05-9366-e10bfd3e2efd", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true + "role": "REQUESTED BY", + "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", + "uuid": "e7a1d8aa-8ef1-4865-af18-f8ca50758bbd", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "uuid": "2ca19bb3-aaab-40d6-ba11-00bfb41db26e", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": true - } - ], - "siteRegistry": true - }, - { - "createdAt": "2021-01-25", - "completed": "2015-06-18", - "initiated": "2016-07-20", - "ministryContact": "RIPPIN DORA", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ + }, { + "uuid": "5e7ebff4-1156-453b-9a80-fc295544f303", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", + "uuid": "56190f2f-bc29-44f3-a250-f9ef3f2a856f", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true } @@ -34909,10 +40798,11 @@ "siteRegistry": false }, { - "createdAt": "2018-02-04", - "completed": "2020-12-18", - "initiated": "2019-12-18", - "ministryContact": "CRIST KRISTOFFER", + "uuid": "f74eb6f6-9cd1-4c84-8e5b-c151db0482a1", + "createdAt": "2019-02-01", + "completed": "2021-08-23", + "initiated": "2022-08-07", + "ministryContact": "MULLER TANNER", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -34921,53 +40811,21 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { + "uuid": "8771110b-92d9-4e8f-947a-b9f61622c6c8", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", "siteRegistry": true }, { + "uuid": "3dd2f935-dc9c-4deb-8347-6c1aaf786c8d", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false - } - ], - "siteRegistry": true - }, - { - "createdAt": "2021-10-10", - "completed": "2019-01-15", - "initiated": "2018-03-07", - "ministryContact": "RIPPIN ANNETTA", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true }, { + "uuid": "acedc091-1b42-4fb5-b558-92fa072884cb", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": true } ], @@ -34976,9 +40834,10 @@ ], "participants": [ { + "uuid": "e6d678b8-df10-4ac9-9df5-6c2e6b65a4c4", "name": "SHELL CANADA PRODUCTS", - "endDate": "2021-07-30", - "startDate": "2020-04-14", + "endDate": "2015-03-02", + "startDate": "2015-10-04", "notes": "", "roles": [ "ORGANIZATION" @@ -34986,70 +40845,138 @@ "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2014-04-04", - "startDate": "2019-10-06", + "uuid": "27199627-7847-455d-aebd-275f480aa306", + "name": "IPSUM", + "endDate": "2020-10-13", + "startDate": "2016-11-16", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": true } ], "suspectLandUses": [ { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-11-02 (described on Site Profile dated 2021-11-02)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "uuid": "ada81984-ad60-4208-b855-7acde4d255f0", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2022-06-14 (described on Site Profile dated 2022-06-14)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-09-29 (described on Site Profile dated 2021-09-29)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "uuid": "bf22dd5e-96db-457d-a8b0-c9580664e9ac", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2023-04-07 (described on Site Profile dated 2023-04-07)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { + "uuid": "75758671-e9c7-4a7e-a9d8-d0e6a2ee6ff0", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-05-28 (described on Site Profile dated 2018-05-28)", + "notes": "INSERTED FOR SITE PROFILE DATED 2022-06-29 (described on Site Profile dated 2022-06-29)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], "parcelDescriptions": [ { + "uuid": "1f475543-a1e4-404a-8f56-63c87336fda6", + "siteRegistry": true, + "dateNoted": "2017-07-23", + "parcelID": "15233", + "crownLandUsePIN": "16754", + "crownLandFileNumber": "16712", + "landDescription": "LOT 5 OF LOT 4 BLOCK 1 DISTRICT LOT 3 PLAN 7267" + }, + { + "uuid": "ebaea0c7-5328-4dd2-8c29-15fe422ec5e5", "siteRegistry": false, - "dateNoted": "2015-01-24", - "parcelID": "19535", - "crownLandUsePIN": "19490", - "crownLandFileNumber": "15806", - "landDescription": "LOT 4 OF LOT 1 BLOCK 1 DISTRICT LOT 2 PLAN 4872" + "dateNoted": "2019-06-18", + "parcelID": "15552", + "crownLandUsePIN": "16331", + "crownLandFileNumber": "20320", + "landDescription": "LOT 4 OF LOT 3 BLOCK 2 DISTRICT LOT 1 PLAN 5721" + }, + { + "uuid": "21296b9f-20b2-4cf6-8754-8f5fa6349934", + "siteRegistry": false, + "dateNoted": "2020-10-26", + "parcelID": "18443", + "crownLandUsePIN": "17723", + "crownLandFileNumber": "15222", + "landDescription": "LOT 2 OF LOT 5 BLOCK 3 DISTRICT LOT 3 PLAN 7324" + }, + { + "uuid": "99705ba6-d9c0-484e-b058-626b2af86054", + "siteRegistry": true, + "dateNoted": "2022-12-25", + "parcelID": "17266", + "crownLandUsePIN": "17000", + "crownLandFileNumber": "17674", + "landDescription": "LOT 5 OF LOT 1 BLOCK 2 DISTRICT LOT 1 PLAN 8777" }, { + "uuid": "debf32fd-80fc-469b-935f-c9b7eb52b144", "siteRegistry": false, - "dateNoted": "2017-04-07", - "parcelID": "18755", - "crownLandUsePIN": "16427", - "crownLandFileNumber": "16651", - "landDescription": "LOT 1 OF LOT 3 BLOCK 5 DISTRICT LOT 2 PLAN 8245" + "dateNoted": "2017-02-04", + "parcelID": "18525", + "crownLandUsePIN": "18940", + "crownLandFileNumber": "16474", + "landDescription": "LOT 1 OF LOT 3 BLOCK 5 DISTRICT LOT 2 PLAN 7072" } ], "siteDisclosures": [ { + "uuid": "b56f6784-e4dc-443d-aa05-96fa9447327e", + "siteRegistry": true, + "dateReceived": "2017-06-13", + "dateCompleted": "2020-03-01", + "dateEntered": "2019-07-26", + "dateRegistrar": "2022-10-29", + "dateLocalAuthorityReceived": "2014-10-05", + "summary": "Dolorem vero iure dolorem tempora adipisci at laborum qui ratione.\nAdipisci tempora laborum fugit laborum fugiat iusto.", + "informationUsed": "Nobis corporis earum.\nVitae occaecati sapiente quis architecto laboriosam repudiandae explicabo.\nEsse dolores possimus repellat delectus eaque.\nAccusamus deleniti architecto neque maiores ratione occaecati illo architecto labore.\nItaque possimus provident accusamus aliquam.", + "pastOrPresentOrders": "Odit ratione vitae autem modi beatae laudantium quae corrupti.", + "commercialAndIndustrialPurposes": [ + { + "uuid": "3dbcd21b-e398-407a-a8a0-705a66530639", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "uuid": "ff997bd5-6c9f-47e6-8f4a-69a8a93e592f", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + } + ] + }, + { + "uuid": "4e9d8555-c1b6-4d3e-af0c-e34121791a98", "siteRegistry": false, - "dateReceived": "2015-08-23", - "dateCompleted": "2019-08-18", - "dateEntered": "2020-02-25", - "dateRegistrar": "2014-05-13", - "dateLocalAuthorityReceived": "2014-03-16", - "summary": "Incidunt commodi facilis occaecati quam laudantium.\nDucimus neque doloribus similique veritatis earum eveniet nisi explicabo.", - "informationUsed": "Pariatur sed doloremque possimus.\nReprehenderit eos exercitationem sapiente quos.\nEligendi libero tempora odit.\nSoluta voluptatem possimus est voluptates alias ipsum itaque similique velit.", - "pastOrPresentOrders": "Itaque praesentium labore est quod animi officiis non.\nRatione facilis inventore temporibus doloribus dolores.\nEaque ullam eum qui.", + "dateReceived": "2018-09-19", + "dateCompleted": "2016-04-14", + "dateEntered": "2022-06-20", + "dateRegistrar": "2017-03-24", + "dateLocalAuthorityReceived": "2018-06-21", + "summary": "Aut aliquam itaque qui.\nConsequuntur eveniet delectus mollitia sunt sapiente excepturi saepe.", + "informationUsed": "Accusantium doloremque corrupti ab.\nExplicabo perferendis itaque iure quisquam ex eius suscipit mollitia.\nNemo minima eveniet quibusdam.", + "pastOrPresentOrders": "Minus odit dolores rerum expedita officia molestias.", "commercialAndIndustrialPurposes": [ { + "uuid": "1a7267f2-c455-4682-b2cd-800ec3ce03d1", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false }, { - "scheduleReference": "F2*", + "uuid": "67537e18-9157-457d-b948-4753404de74a", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "uuid": "9d296afe-4c8d-4c30-8a6c-4dc5558262b1", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true } @@ -35058,83 +40985,86 @@ ], "activityLog": [ { - "siteRegistry": true, + "uuid": "0040e2f6-e8ea-4b14-9539-61aa5d4035eb", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "SKILES ALENE", - "timestamp": "2015-03-09" + "user": "WITTING BRAD", + "timestamp": "2020-01-16" }, { + "uuid": "42925383-b913-45de-aaaf-483528ab0002", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "DENESIK RASHAD", - "timestamp": "2014-12-25" + "user": "MONAHAN LINDA", + "timestamp": "2021-02-09" }, { + "uuid": "99b93ec5-a1f4-4b3a-a952-cdbc149916a7", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "BOGAN ALENA", - "timestamp": "2016-06-29" - }, - { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "BARTELL RETHA", - "timestamp": "2022-03-12" + "user": "HERZOG MACK", + "timestamp": "2017-04-13" }, { - "siteRegistry": true, + "uuid": "7f320c5b-49a9-4b43-acae-f33825130b30", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "DACH VIVIAN", - "timestamp": "2022-05-28" + "user": "BASHIRIAN OWEN", + "timestamp": "2020-12-14" }, { + "uuid": "8a27ce2a-de6a-43f2-86b4-95c8badaf42c", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "PFEFFER BILLY", - "timestamp": "2020-02-05" - }, - { - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "LUBOWITZ THERESA", - "timestamp": "2017-01-12" + "user": "HARBER ARIANE", + "timestamp": "2023-08-21" } ], "associatedSites": [ { - "dateNoted": "2022-03-18", + "uuid": "6a67c507-0e01-4dba-9f9e-d7daba62696a", + "dateNoted": "2022-06-01", "notes": "", - "parcelID": "17275", - "siteID": "18240", - "siteRegistry": true + "parcelID": "19654", + "siteID": "19122", + "siteRegistry": false + }, + { + "uuid": "7c8b5cf6-e8d4-4d3f-b0d0-6673dc25bac9", + "dateNoted": "2019-03-31", + "notes": "", + "parcelID": "16831", + "siteID": "16986", + "siteRegistry": false } ] }, { - "uuid": "b1315fb3-c10c-4039-80c2-3707e9aee3c1", - "siteID": 20741, - "address": "545 Adolf Loaf", - "latitude": 52.8016, - "longitude": -131.2535, - "lastUpdated": "2015-05-21", - "city": "Herzogcester", - "region": "Thompson-Okanagan", - "victoriaFile": "26250-20/3165", + "uuid": "408b8dc1-1161-44ff-a27a-4a8094ff898e", + "siteID": 20381, + "address": "173 Silas Plains", + "latitude": 48.774, + "longitude": -118.2796, + "lastUpdated": "2014-10-14", + "city": "South Annabellmouth", + "region": "Kootenay", + "victoriaFile": "26250-20/18386", "regionalFile": "N/A", "parcelIDs": [ - 9587655, - 7529518, - 5413837, - 9162318, - 8586291 + 4835246, + 4256657, + 8301859, + 4263141, + 5808998 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2015-03-01", - "completed": "2020-07-27", - "initiated": "2022-09-18", - "ministryContact": "RUNTE BELLA", + "uuid": "34aa4f9d-1765-47ba-999a-53bd254ba15e", + "createdAt": "2014-06-13", + "completed": "2015-07-21", + "initiated": "2018-04-22", + "ministryContact": "GLEICHNER JACKIE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -35143,38 +41073,32 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { + "uuid": "7113f039-b1a0-44a1-97e9-ab9d31142b9a", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", + "uuid": "e7113754-2c59-435c-bef7-25cfae867389", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { + "uuid": "2d2f6df0-0e30-4431-a520-a17c897fa94b", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false } ], "siteRegistry": true }, { - "createdAt": "2022-10-19", - "completed": "2014-07-04", - "initiated": "2016-01-16", - "ministryContact": "WALTER LEONEL", + "uuid": "8b82e81a-5c3d-4468-bec4-6a5ae5857a85", + "createdAt": "2017-03-19", + "completed": "2023-09-02", + "initiated": "2014-08-31", + "ministryContact": "KREIGER RAMON", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -35183,74 +41107,27 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", + "uuid": "87b81313-901c-4b54-8fd4-c8d56641d80d", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true }, { + "uuid": "8f63c8d2-cfde-4e59-9793-2b9df5052f5b", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false } ], "siteRegistry": false - }, - { - "createdAt": "2019-01-24", - "completed": "2022-06-26", - "initiated": "2013-11-03", - "ministryContact": "BERNIER BAYLEE", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - } - ], - "siteRegistry": false } ], "participants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2022-04-02", - "startDate": "2014-06-20", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": false - }, - { + "uuid": "7abc4898-c73d-45b4-8030-021c65ede61e", "name": "IPSUM", - "endDate": "2022-04-28", - "startDate": "2015-09-07", + "endDate": "2014-08-02", + "startDate": "2015-10-28", "notes": "", "roles": [ "ORGANIZATION" @@ -35258,9 +41135,10 @@ "siteRegistry": false }, { - "name": "IPSUM", - "endDate": "2014-01-02", - "startDate": "2017-02-24", + "uuid": "33f63b89-c9cf-4996-b36e-e3a71af40a4e", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2020-11-02", + "startDate": "2014-08-08", "notes": "", "roles": [ "EMPLOYEE" @@ -35268,9 +41146,10 @@ "siteRegistry": true }, { + "uuid": "e09bf9e6-43d2-4eb9-854e-22e34a5cf7f6", "name": "SHELL CANADA PRODUCTS", - "endDate": "2017-02-19", - "startDate": "2018-11-24", + "endDate": "2016-04-01", + "startDate": "2020-10-07", "notes": "", "roles": [ "EMPLOYEE" @@ -35278,104 +41157,98 @@ "siteRegistry": false }, { - "name": "AMET, DOLOR SIT", - "endDate": "2016-01-08", - "startDate": "2018-10-03", + "uuid": "db642e68-6a55-4916-b1f1-dfffc6e9a2ce", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2013-12-06", + "startDate": "2021-06-08", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true } ], "suspectLandUses": [ { + "uuid": "1fa856e1-2883-48c1-a056-3ed40c11ee66", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-09-16 (described on Site Profile dated 2019-09-16)", + "notes": "INSERTED FOR SITE PROFILE DATED 2017-04-30 (described on Site Profile dated 2017-04-30)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-10-23 (described on Site Profile dated 2014-10-23)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" - }, - { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-06-25 (described on Site Profile dated 2018-06-25)", + "uuid": "c6bbced0-e2e0-4fb2-9675-77551278a27d", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2022-09-01 (described on Site Profile dated 2022-09-01)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { + "uuid": "6253167c-ef41-400c-a48a-d0dc557aefad", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-10-29 (described on Site Profile dated 2016-10-29)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "notes": "INSERTED FOR SITE PROFILE DATED 2020-10-01 (described on Site Profile dated 2020-10-01)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], "parcelDescriptions": [ { + "uuid": "9c085cfe-3716-419a-a27e-cf22aa66a49e", "siteRegistry": true, - "dateNoted": "2014-02-15", - "parcelID": "16086", - "crownLandUsePIN": "19588", - "crownLandFileNumber": "17755", - "landDescription": "LOT 3 OF LOT 3 BLOCK 4 DISTRICT LOT 3 PLAN 5187" + "dateNoted": "2021-12-29", + "parcelID": "15687", + "crownLandUsePIN": "20761", + "crownLandFileNumber": "15776", + "landDescription": "LOT 2 OF LOT 2 BLOCK 2 DISTRICT LOT 1 PLAN 6793" }, { + "uuid": "e12f40dc-e1da-4dd2-b3c9-9d1897db1c12", "siteRegistry": false, - "dateNoted": "2021-04-09", - "parcelID": "16214", - "crownLandUsePIN": "20307", - "crownLandFileNumber": "18632", - "landDescription": "LOT 4 OF LOT 4 BLOCK 4 DISTRICT LOT 1 PLAN 3161" - } - ], - "siteDisclosures": [ + "dateNoted": "2017-08-03", + "parcelID": "20934", + "crownLandUsePIN": "15831", + "crownLandFileNumber": "15886", + "landDescription": "LOT 4 OF LOT 1 BLOCK 4 DISTRICT LOT 4 PLAN 7351" + }, { - "siteRegistry": true, - "dateReceived": "2019-01-10", - "dateCompleted": "2015-03-20", - "dateEntered": "2021-07-07", - "dateRegistrar": "2022-05-24", - "dateLocalAuthorityReceived": "2017-04-12", - "summary": "Ullam blanditiis cupiditate minima occaecati eaque hic a explicabo fugit.\nVoluptatibus nisi ex omnis officiis fugiat impedit architecto dolore.", - "informationUsed": "Cum placeat ducimus ab ad.\nAutem distinctio quaerat explicabo reiciendis deserunt aspernatur.\nEx aliquam numquam molestias tempora voluptas.\nAb optio possimus sit.", - "pastOrPresentOrders": "Exercitationem dolorum nobis.\nQuas illo recusandae quaerat.\nTenetur cumque possimus laudantium tempore velit reprehenderit corrupti alias.", - "commercialAndIndustrialPurposes": [ - { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true - }, - { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false - } - ] + "uuid": "dd1ddc46-4f1f-41ac-8f7f-73c122999e4c", + "siteRegistry": false, + "dateNoted": "2019-05-09", + "parcelID": "16660", + "crownLandUsePIN": "19681", + "crownLandFileNumber": "15646", + "landDescription": "LOT 2 OF LOT 1 BLOCK 5 DISTRICT LOT 4 PLAN 6293" }, { + "uuid": "c7492133-4a3e-4217-8821-6e341acab581", "siteRegistry": true, - "dateReceived": "2022-06-29", - "dateCompleted": "2021-07-17", - "dateEntered": "2020-07-05", - "dateRegistrar": "2023-05-28", - "dateLocalAuthorityReceived": "2018-03-02", - "summary": "Perspiciatis possimus incidunt iusto rerum aliquid facilis.", - "informationUsed": "Esse ullam quos.\nSequi amet numquam repellendus commodi quaerat maxime.\nFugit sed culpa perspiciatis animi praesentium ipsa minus.\nDicta dolor eos enim maiores.", - "pastOrPresentOrders": "Laborum tempora reiciendis et eius.\nCum perferendis voluptate.\nInventore veniam quae at in.", + "dateNoted": "2014-01-26", + "parcelID": "19744", + "crownLandUsePIN": "17125", + "crownLandFileNumber": "15363", + "landDescription": "LOT 3 OF LOT 1 BLOCK 3 DISTRICT LOT 2 PLAN 4530" + } + ], + "siteDisclosures": [ + { + "uuid": "cc6a05b0-22c1-4f29-8cdc-b424a62a2ee2", + "siteRegistry": false, + "dateReceived": "2015-08-14", + "dateCompleted": "2016-10-26", + "dateEntered": "2021-10-09", + "dateRegistrar": "2017-03-29", + "dateLocalAuthorityReceived": "2014-10-24", + "summary": "Ab animi eaque adipisci id laborum placeat inventore.", + "informationUsed": "Accusantium alias itaque delectus accusamus quisquam soluta ex eaque.\nAdipisci blanditiis cum cupiditate.\nConsequuntur beatae eligendi tempore.\nConsequuntur nesciunt neque cumque placeat.", + "pastOrPresentOrders": "Perspiciatis cum odit nemo.\nMaxime itaque accusamus sunt dolores.\nEum minus saepe.", "commercialAndIndustrialPurposes": [ { + "uuid": "dc635602-bec3-45bf-afa9-0c15d96204f4", "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false - }, - { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "uuid": "1d7dbc7a-13dd-4616-b4b5-8f63d14bb645", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true } ] @@ -35383,84 +41256,113 @@ ], "activityLog": [ { - "siteRegistry": false, + "uuid": "84c5bf3d-2454-4176-8276-778f5acee8c6", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "BARROWS HALEIGH", - "timestamp": "2015-05-25" + "user": "RUNTE ETHEL", + "timestamp": "2019-04-23" }, { + "uuid": "ab518c8d-fd45-43de-8801-f5dab812085f", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "CARROLL DELLA", - "timestamp": "2022-11-16" + "user": "SMITHAM DAVE", + "timestamp": "2022-09-18" }, { + "uuid": "5c4b3843-914e-4859-bf94-1f4d7342aab3", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "HAMILL DEXTER", - "timestamp": "2016-03-06" + "user": "HAND FREDERICK", + "timestamp": "2016-09-25" }, { + "uuid": "6882c0ee-7337-4d6c-90d3-6b61b04dd1c5", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "MANTE WYATT", - "timestamp": "2015-04-10" + "user": "MARQUARDT FAUSTINO", + "timestamp": "2014-06-22" + }, + { + "uuid": "e6ea4b01-54f8-4ace-a9ef-6b780aaad8b1", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "CORMIER BELL", + "timestamp": "2015-08-25" + }, + { + "uuid": "383e8fa3-a146-4b67-b3bb-adfa53ecfc9c", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "ARMSTRONG LANEY", + "timestamp": "2014-03-17" }, { + "uuid": "b5be0dc4-2818-427f-ad79-c1a4267210e1", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "GISLASON LILIANA", - "timestamp": "2018-11-06" + "user": "RUECKER-MILLS SUZANNE", + "timestamp": "2015-07-25" + }, + { + "uuid": "c3f7f829-f891-4dbc-b710-53bb4b62f84a", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "BECHTELAR DARRIN", + "timestamp": "2017-02-27" + }, + { + "uuid": "e50d3f38-6edb-44dd-81e0-5e645adcb738", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "PADBERG KEELY", + "timestamp": "2017-05-20" }, { + "uuid": "b6cb3685-ad54-452c-bdb8-109f129d36af", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "WITTING CHRISTINA", - "timestamp": "2016-06-20" + "user": "WUCKERT INES", + "timestamp": "2018-01-29" } ], "associatedSites": [ { - "dateNoted": "2020-10-23", - "notes": "", - "parcelID": "18640", - "siteID": "17386", - "siteRegistry": false - }, - { - "dateNoted": "2016-10-05", + "uuid": "d4046d70-9938-4ea6-90bc-50428e5fc31f", + "dateNoted": "2014-10-27", "notes": "", - "parcelID": "17800", - "siteID": "15829", - "siteRegistry": false + "parcelID": "19128", + "siteID": "19122", + "siteRegistry": true } ] }, { - "uuid": "5e88e93e-64e1-4e1c-bff6-ef9735e2de25", - "siteID": 20958, - "address": "946 Stiedemann Lights", - "latitude": 49.7743, - "longitude": -132.5905, - "lastUpdated": "2022-02-08", - "city": "Tulsa", - "region": "Thompson-Okanagan", - "victoriaFile": "26250-20/15557", + "uuid": "b4f037b4-56f6-4a91-be36-23376f151bab", + "siteID": 15261, + "address": "9298 Nikolaus Crossing", + "latitude": 48.4077, + "longitude": -119.0796, + "lastUpdated": "2015-05-14", + "city": "South Aniyahside", + "region": "Cariboo", + "victoriaFile": "26250-20/16303", "regionalFile": "N/A", "parcelIDs": [ - 387325, - 5038920, - 2709145, - 5265700, - 7242356 + 9002739, + 7767416, + 5585901, + 1686136, + 4365017 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2017-12-04", - "completed": "2014-08-02", - "initiated": "2019-10-19", - "ministryContact": "SCHMELER HILBERT", + "uuid": "a8cf3cf0-e4e2-4883-83a9-0ccff1eb400d", + "createdAt": "2017-02-21", + "completed": "2015-12-23", + "initiated": "2015-11-12", + "ministryContact": "KIHN ALICE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -35469,38 +41371,26 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "5a33d4d8-ec0d-42ad-8886-d1c9ab666c58", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true }, { + "uuid": "4f7ce3ac-fc75-487d-8dd8-9510fd4bec2b", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true } ], "siteRegistry": false }, { - "createdAt": "2022-09-14", - "completed": "2021-07-14", - "initiated": "2021-06-17", - "ministryContact": "VON ALEC", + "uuid": "ac48c0de-d41b-46a1-b94a-dc1ec070aa90", + "createdAt": "2018-10-06", + "completed": "2021-01-27", + "initiated": "2022-11-20", + "ministryContact": "SCHMELER MAGNUS", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -35509,11 +41399,19 @@ ], "notationParticipants": [ { + "uuid": "dea6c229-2dfe-4e5d-b3e0-b35cd0d46ddc", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true }, { + "uuid": "a59d754c-711d-49d5-9978-6db5c4bfb528", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "12b127d5-a145-4f55-b851-3e2c1b66abcf", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true @@ -35522,10 +41420,11 @@ "siteRegistry": true }, { - "createdAt": "2019-07-26", - "completed": "2021-04-21", - "initiated": "2015-11-13", - "ministryContact": "FEIL ARYANNA", + "uuid": "78439362-47f2-44b3-9216-01092a45a99f", + "createdAt": "2023-07-12", + "completed": "2021-04-09", + "initiated": "2022-01-24", + "ministryContact": "ALTENWERTH GRANT", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -35534,28 +41433,44 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "42d18320-a53c-48b5-b2f1-3f7f05bc04b4", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "7f09f961-e5dd-49d5-b975-c34cec898e59", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true }, { + "uuid": "cb9ee2e3-8fda-4e14-84e1-a6be06a8bf94", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false + }, + { + "uuid": "903f8c01-a335-4fdd-98eb-015fd538826e", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "3037ae78-9c8b-421f-a7b0-b84819ca18c7", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2020-06-20", - "completed": "2015-12-22", - "initiated": "2015-06-27", - "ministryContact": "POUROS DEVON", + "uuid": "97b6c2a6-22d1-4877-b38f-82bd8d170bd6", + "createdAt": "2015-01-26", + "completed": "2017-01-16", + "initiated": "2018-10-11", + "ministryContact": "DICKENS MELISA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -35564,26 +41479,25 @@ ], "notationParticipants": [ { + "uuid": "0eed02fd-3704-454f-8de1-ad085ca6789b", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { + "uuid": "60b5cf71-fc0e-4eb7-82b9-ba80a2065270", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false + "role": "REQUESTED BY", + "siteRegistry": true }, { + "uuid": "5bcab563-6e6f-4174-96fb-ba46b7990b7f", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { + "uuid": "e474373f-e2fd-478c-9436-337a7c8dd75c", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true @@ -35592,10 +41506,11 @@ "siteRegistry": true }, { - "createdAt": "2015-03-17", - "completed": "2023-08-19", - "initiated": "2016-12-02", - "ministryContact": "HAGENES SHEMAR", + "uuid": "83628a30-e2db-4ec7-851f-429a729dab23", + "createdAt": "2021-09-18", + "completed": "2015-05-14", + "initiated": "2015-02-04", + "ministryContact": "ZIEMANN KEARA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -35604,59 +41519,39 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true + "uuid": "0674d522-ff6c-4d4e-bfca-32c1fe0bc96c", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false }, { + "uuid": "616f3739-c0cf-4b4e-81b5-765d4c9dc1e1", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "uuid": "d0058482-c718-45b7-a4c4-1c706371aabf", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": false }, { + "uuid": "436a7cd5-9729-4951-a7ec-87b404cdb1ac", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true } ], "participants": [ { + "uuid": "81b50933-fbce-45d0-8abe-8aaaea856eab", "name": "SHELL CANADA PRODUCTS", - "endDate": "2018-05-24", - "startDate": "2014-04-08", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2018-03-28", - "startDate": "2021-02-17", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": false - }, - { - "name": "AMET, DOLOR SIT", - "endDate": "2014-06-16", - "startDate": "2017-01-17", + "endDate": "2023-02-09", + "startDate": "2021-09-23", "notes": "", "roles": [ "ORGANIZATION" @@ -35664,9 +41559,10 @@ "siteRegistry": false }, { - "name": "IPSUM", - "endDate": "2020-12-20", - "startDate": "2018-05-26", + "uuid": "37d8da6a-4527-4308-8abc-0880ad6ba78b", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2022-11-20", + "startDate": "2018-03-11", "notes": "", "roles": [ "ORGANIZATION" @@ -35676,150 +41572,218 @@ ], "suspectLandUses": [ { + "uuid": "d02eb3d6-787c-490b-a6d8-15e4aa27d8a7", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-03-05 (described on Site Profile dated 2017-03-05)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" - }, - { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2020-04-03 (described on Site Profile dated 2020-04-03)", + "notes": "INSERTED FOR SITE PROFILE DATED 2021-12-29 (described on Site Profile dated 2021-12-29)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { + "uuid": "57e2cd61-732b-4788-954e-003c1837032b", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2023-02-15 (described on Site Profile dated 2023-02-15)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "notes": "INSERTED FOR SITE PROFILE DATED 2019-11-18 (described on Site Profile dated 2019-11-18)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], "parcelDescriptions": [ { + "uuid": "a7709afa-289a-44e0-9fb5-3c898d3367ab", + "siteRegistry": true, + "dateNoted": "2014-08-29", + "parcelID": "17747", + "crownLandUsePIN": "17670", + "crownLandFileNumber": "17085", + "landDescription": "LOT 4 OF LOT 3 BLOCK 5 DISTRICT LOT 2 PLAN 9651" + }, + { + "uuid": "37ffa36e-e9ca-48b8-b844-61f058f2ec69", "siteRegistry": false, - "dateNoted": "2021-06-11", - "parcelID": "19750", - "crownLandUsePIN": "16346", - "crownLandFileNumber": "17365", - "landDescription": "LOT 2 OF LOT 3 BLOCK 1 DISTRICT LOT 4 PLAN 8764" + "dateNoted": "2021-04-22", + "parcelID": "18364", + "crownLandUsePIN": "16351", + "crownLandFileNumber": "18454", + "landDescription": "LOT 3 OF LOT 3 BLOCK 1 DISTRICT LOT 4 PLAN 6389" }, { + "uuid": "e2feafab-bc15-46de-8357-1845245c3210", "siteRegistry": true, - "dateNoted": "2023-09-27", - "parcelID": "15930", - "crownLandUsePIN": "17306", - "crownLandFileNumber": "20865", - "landDescription": "LOT 4 OF LOT 5 BLOCK 2 DISTRICT LOT 3 PLAN 9195" + "dateNoted": "2019-03-09", + "parcelID": "15477", + "crownLandUsePIN": "19411", + "crownLandFileNumber": "18846", + "landDescription": "LOT 3 OF LOT 2 BLOCK 5 DISTRICT LOT 2 PLAN 3338" }, { - "siteRegistry": true, - "dateNoted": "2014-04-10", - "parcelID": "18305", - "crownLandUsePIN": "15522", - "crownLandFileNumber": "20675", - "landDescription": "LOT 3 OF LOT 2 BLOCK 3 DISTRICT LOT 5 PLAN 2970" + "uuid": "4a85a69d-cb68-46b8-8a8b-ff3a8298a9b0", + "siteRegistry": false, + "dateNoted": "2020-05-20", + "parcelID": "19437", + "crownLandUsePIN": "18425", + "crownLandFileNumber": "18286", + "landDescription": "LOT 1 OF LOT 4 BLOCK 2 DISTRICT LOT 2 PLAN 6166" } ], "siteDisclosures": [ { - "siteRegistry": false, - "dateReceived": "2021-02-05", - "dateCompleted": "2023-10-08", - "dateEntered": "2014-08-20", - "dateRegistrar": "2014-03-30", - "dateLocalAuthorityReceived": "2023-03-08", - "summary": "Inventore debitis dolorem.\nCumque doloremque natus nostrum.", - "informationUsed": "Unde porro ea nam corporis facilis harum laboriosam earum.\nImpedit omnis nam.\nAtque vitae ab delectus.\nIllum consequatur sequi occaecati laborum ducimus aperiam harum.", - "pastOrPresentOrders": "Tempore provident architecto.", + "uuid": "2de7b01e-8bd8-4017-8fb8-a6f0aa452ce0", + "siteRegistry": true, + "dateReceived": "2023-02-26", + "dateCompleted": "2017-04-06", + "dateEntered": "2016-09-12", + "dateRegistrar": "2020-04-27", + "dateLocalAuthorityReceived": "2023-09-17", + "summary": "Fuga ipsam itaque sit accusantium hic.\nNihil nemo tempore.\nExercitationem labore illo harum assumenda modi numquam non.", + "informationUsed": "Consequuntur veniam harum sint quaerat esse quisquam.\nSequi quam et quidem minus officiis iusto eligendi.\nRem odio tempora autem voluptatum saepe.", + "pastOrPresentOrders": "Omnis voluptatibus voluptatum nostrum provident nemo.\nEnim reiciendis necessitatibus perspiciatis quia amet eveniet.", "commercialAndIndustrialPurposes": [ { + "uuid": "a5302f33-a3d7-47cb-90f5-e95342bd18ed", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "uuid": "75bcf032-be28-4810-94d8-203a47f52ead", "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "uuid": "b6150058-44e6-4ee3-ac88-1f13b0ee77bb", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false + "siteRegistry": true }, { + "uuid": "10fb8680-39a3-49c9-99e8-e694e6670392", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + } + ] + }, + { + "uuid": "2bb1cfb0-aac0-4cbe-8704-daffa2c738da", + "siteRegistry": false, + "dateReceived": "2014-08-25", + "dateCompleted": "2019-09-17", + "dateEntered": "2019-08-27", + "dateRegistrar": "2023-08-22", + "dateLocalAuthorityReceived": "2013-10-17", + "summary": "Odio tempora maiores cupiditate delectus nobis error vel magni culpa.\nOmnis voluptates aut.\nVel nostrum temporibus.", + "informationUsed": "Dicta quod quod quam repellat minus.\nDistinctio modi quod.\nQui voluptatum ratione pariatur at occaecati voluptatibus facilis magnam illum.\nDeserunt tenetur dolorum voluptatum labore deleniti quos.", + "pastOrPresentOrders": "Nulla fuga aliquid modi molestias eligendi suscipit tempora.", + "commercialAndIndustrialPurposes": [ + { + "uuid": "34d5564c-8e68-45a5-b692-59eb7506b3bb", "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true }, { + "uuid": "50e66088-90b6-4487-a8ae-2e87f656a677", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false + }, + { + "uuid": "37ba0d5f-a119-4336-b83a-baa91e8b0194", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true } ] } ], "activityLog": [ { + "uuid": "5d27d6e4-b686-4ef9-9335-7b25eaaf0267", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "MCDERMOTT JASON", - "timestamp": "2021-01-13" + "user": "BOYER DERON", + "timestamp": "2015-08-17" }, { + "uuid": "94b2a20a-2775-4f48-bfb3-795470655418", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "KOELPIN DORTHY", - "timestamp": "2017-03-05" + "user": "ONDRICKA ELAINA", + "timestamp": "2022-01-21" }, { + "uuid": "484439f1-9d03-47ea-a249-dd0d28d07b32", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "BERNHARD NOAH", - "timestamp": "2021-08-04" + "user": "WYMAN IMA", + "timestamp": "2016-03-25" }, { + "uuid": "abab71ee-9e46-4246-83d0-851f81c877ca", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "RATKE AMARI", - "timestamp": "2016-09-05" + "user": "RENNER FOREST", + "timestamp": "2022-10-27" }, { + "uuid": "ffc10351-63d2-46fc-a9bd-7fb2296280c4", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "WINTHEISER CYRUS", - "timestamp": "2016-03-04" - }, - { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "GOYETTE NICHOLE", - "timestamp": "2017-07-14" + "user": "MUELLER DEONDRE", + "timestamp": "2018-01-11" } ], "associatedSites": [ { - "dateNoted": "2017-03-15", + "uuid": "590fce12-a40a-4196-b40e-0a6007e1dbd9", + "dateNoted": "2018-04-21", + "notes": "", + "parcelID": "20024", + "siteID": "16267", + "siteRegistry": true + }, + { + "uuid": "1d6639d7-03b3-4249-a146-4c452e8b85ad", + "dateNoted": "2017-10-19", + "notes": "", + "parcelID": "20193", + "siteID": "15722", + "siteRegistry": true + }, + { + "uuid": "ef743318-c24b-4876-9941-4a5653ae8a0a", + "dateNoted": "2019-04-01", "notes": "", - "parcelID": "20562", - "siteID": "18001", + "parcelID": "16216", + "siteID": "16682", "siteRegistry": false } ] }, { - "uuid": "d2a7c556-a038-4a95-af0a-b7409a0d53b0", - "siteID": 17648, - "address": "851 Annalise Turnpike", - "latitude": 56.868, - "longitude": -131.8354, - "lastUpdated": "2018-04-11", - "city": "McGlynncester", + "uuid": "ea1b98db-f5df-4e0d-9482-0074e638cac5", + "siteID": 19839, + "address": "597 Hettinger Stravenue", + "latitude": 51.8791, + "longitude": -124.7247, + "lastUpdated": "2015-03-05", + "city": "Port Nat", "region": "Vancouver Island/Coast", - "victoriaFile": "26250-20/10075", + "victoriaFile": "26250-20/5796", "regionalFile": "N/A", "parcelIDs": [ - 7332867, - 8952612, - 4522218, - 6131271, - 2837759 + 3574102, + 1000443, + 2573894, + 674002, + 1958114 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2023-05-21", - "completed": "2020-10-22", - "initiated": "2018-01-02", - "ministryContact": "WEIMANN JERAD", + "uuid": "6ccf8121-fed6-427c-8b6b-dc8d78398b90", + "createdAt": "2020-07-04", + "completed": "2014-04-26", + "initiated": "2022-01-30", + "ministryContact": "PACOCHA GARRY", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -35828,33 +41792,38 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "24710f75-958d-40ad-ba09-a6fb7618792e", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false }, { + "uuid": "da91fe53-a4ca-4a9a-8ef0-4cf44522cef3", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { + "uuid": "e86bf99a-dd37-4fbf-8338-eaf003db5fcf", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true }, { + "uuid": "95b79631-75a8-4eac-8c38-4bcd396f6ca5", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false } ], "siteRegistry": true }, { - "createdAt": "2019-08-13", - "completed": "2014-08-31", - "initiated": "2014-01-17", - "ministryContact": "ZULAUF HAILIE", + "uuid": "fc48c279-50a0-4a1d-9eed-295d6882c8dc", + "createdAt": "2022-07-01", + "completed": "2023-06-16", + "initiated": "2014-03-28", + "ministryContact": "HOPPE HORACE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -35863,23 +41832,32 @@ ], "notationParticipants": [ { + "uuid": "64a69b80-86be-4645-ac83-ab8d74ed9f58", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false + "role": "SUBMITTED BY", + "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "uuid": "6181a5fa-b12c-43f2-bd41-9015c8eee941", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": true + }, + { + "uuid": "77221c16-1bbc-4824-a95e-4ae49eff62b7", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false } ], "siteRegistry": false }, { - "createdAt": "2020-07-07", - "completed": "2016-04-30", - "initiated": "2014-11-01", - "ministryContact": "KLEIN SELENA", + "uuid": "f3944035-ce73-4569-949f-a3bd5b1f3edf", + "createdAt": "2016-08-20", + "completed": "2016-10-23", + "initiated": "2014-10-11", + "ministryContact": "KSHLERIN MANLEY", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -35888,16 +41866,31 @@ ], "notationParticipants": [ { + "uuid": "d951de85-3172-4f59-9e0c-805d6f0d5a29", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", + "uuid": "03b80d7c-e1e5-4a11-8c4b-b0480708a5be", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "b5146ded-c721-4980-9d9e-9a0250d56b75", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": false }, { + "uuid": "f1eb31bd-7219-49b7-beae-cad02d5bbea9", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "86e1c0f6-4bd3-4fbc-b239-c9b4c901a064", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true @@ -35906,10 +41899,39 @@ "siteRegistry": false }, { - "createdAt": "2018-10-07", - "completed": "2017-10-23", - "initiated": "2016-03-16", - "ministryContact": "O'KEEFE KIERAN", + "uuid": "0927e4f4-736f-4a91-93cc-73b9fd6ef6ed", + "createdAt": "2020-05-13", + "completed": "2014-08-11", + "initiated": "2022-12-23", + "ministryContact": "BREKKE LARUE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "uuid": "8e8bcbc3-90ce-4470-81d0-d63f59932478", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "7894deeb-113f-4cb5-9751-1c410ef7fecf", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "uuid": "105f3e5e-f044-418c-b25c-7a3461374530", + "createdAt": "2017-11-22", + "completed": "2017-12-17", + "initiated": "2020-05-07", + "ministryContact": "KIHN ERIBERTO", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -35918,19 +41940,22 @@ ], "notationParticipants": [ { + "uuid": "cdf959ba-5e83-4eef-a356-7afde83cdfde", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true }, { + "uuid": "e518fa61-7c47-4ee7-9bc2-7bf57361f326", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false + "role": "REQUESTED BY", + "siteRegistry": true }, { + "uuid": "2b99bc21-06c7-40af-a990-f8f8ff2aa110", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true + "role": "REQUESTED BY", + "siteRegistry": false } ], "siteRegistry": true @@ -35938,260 +41963,242 @@ ], "participants": [ { + "uuid": "d281065d-9f3e-468d-9bde-e526e17c2df6", "name": "SHELL CANADA PRODUCTS", - "endDate": "2013-12-15", - "startDate": "2017-10-02", + "endDate": "2017-11-20", + "startDate": "2018-08-02", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2014-04-27", - "startDate": "2023-04-27", + "uuid": "29144be5-b663-4259-9a3a-936f2d90a8e8", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2023-03-21", + "startDate": "2014-07-30", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true + }, + { + "uuid": "f6b8fe1d-39c8-4460-8b51-62ed6c725753", + "name": "IPSUM", + "endDate": "2016-09-15", + "startDate": "2019-05-01", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true } ], "suspectLandUses": [ { + "uuid": "c6f6979e-1dba-4689-84f1-07100a78b1a1", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-04-15 (described on Site Profile dated 2017-04-15)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" - }, - { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-03-03 (described on Site Profile dated 2016-03-03)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" - }, - { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-03-10 (described on Site Profile dated 2016-03-10)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "notes": "INSERTED FOR SITE PROFILE DATED 2022-03-17 (described on Site Profile dated 2022-03-17)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { + "uuid": "b4775ade-15f7-441d-b483-02c43681fc23", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-01-16 (described on Site Profile dated 2019-01-16)", + "notes": "INSERTED FOR SITE PROFILE DATED 2015-03-21 (described on Site Profile dated 2015-03-21)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" - }, - { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-01-26 (described on Site Profile dated 2018-01-26)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], "parcelDescriptions": [ { + "uuid": "f21f89b8-48ad-419e-840a-4f88f6e64512", "siteRegistry": false, - "dateNoted": "2020-05-18", - "parcelID": "18780", - "crownLandUsePIN": "20064", - "crownLandFileNumber": "16107", - "landDescription": "LOT 4 OF LOT 4 BLOCK 1 DISTRICT LOT 5 PLAN 5884" + "dateNoted": "2014-06-10", + "parcelID": "15685", + "crownLandUsePIN": "18343", + "crownLandFileNumber": "19927", + "landDescription": "LOT 4 OF LOT 5 BLOCK 5 DISTRICT LOT 3 PLAN 3608" }, { + "uuid": "9d847c13-2ad2-446f-a32a-661c25c8ea6f", "siteRegistry": true, - "dateNoted": "2020-10-18", - "parcelID": "17073", - "crownLandUsePIN": "16351", - "crownLandFileNumber": "19564", - "landDescription": "LOT 4 OF LOT 2 BLOCK 2 DISTRICT LOT 4 PLAN 5927" + "dateNoted": "2014-11-11", + "parcelID": "18284", + "crownLandUsePIN": "15695", + "crownLandFileNumber": "19801", + "landDescription": "LOT 5 OF LOT 1 BLOCK 3 DISTRICT LOT 3 PLAN 8348" }, { + "uuid": "544e1b3e-4c3a-45af-b29a-7ac95a38185f", "siteRegistry": false, - "dateNoted": "2020-10-15", - "parcelID": "16745", - "crownLandUsePIN": "17665", - "crownLandFileNumber": "18696", - "landDescription": "LOT 4 OF LOT 2 BLOCK 3 DISTRICT LOT 3 PLAN 7934" + "dateNoted": "2015-02-07", + "parcelID": "20074", + "crownLandUsePIN": "17569", + "crownLandFileNumber": "20649", + "landDescription": "LOT 3 OF LOT 2 BLOCK 3 DISTRICT LOT 4 PLAN 5076" }, { + "uuid": "e56febb7-e729-4ca4-badf-86d1c4565fbe", "siteRegistry": false, - "dateNoted": "2014-01-01", - "parcelID": "16422", - "crownLandUsePIN": "16279", - "crownLandFileNumber": "16572", - "landDescription": "LOT 3 OF LOT 2 BLOCK 4 DISTRICT LOT 2 PLAN 3615" - }, - { - "siteRegistry": true, - "dateNoted": "2016-06-09", - "parcelID": "17113", - "crownLandUsePIN": "15278", - "crownLandFileNumber": "17786", - "landDescription": "LOT 4 OF LOT 3 BLOCK 1 DISTRICT LOT 2 PLAN 5797" + "dateNoted": "2021-01-15", + "parcelID": "15229", + "crownLandUsePIN": "20474", + "crownLandFileNumber": "16002", + "landDescription": "LOT 4 OF LOT 1 BLOCK 1 DISTRICT LOT 5 PLAN 4944" } ], "siteDisclosures": [ { - "siteRegistry": false, - "dateReceived": "2021-02-27", - "dateCompleted": "2023-07-11", - "dateEntered": "2015-05-30", - "dateRegistrar": "2014-01-08", - "dateLocalAuthorityReceived": "2021-12-30", - "summary": "Eaque ab ratione nulla illo sapiente reprehenderit tenetur doloremque doloribus.\nItaque voluptas nobis aspernatur vel architecto minus culpa.\nPariatur a in corporis enim numquam praesentium blanditiis voluptas alias.", - "informationUsed": "Consequatur commodi natus deserunt deserunt.\nRepudiandae laudantium placeat quas eveniet maiores.\nProvident ad voluptatibus modi beatae veritatis adipisci voluptatibus.", - "pastOrPresentOrders": "Asperiores beatae iure inventore.\nImpedit doloribus architecto fugiat quas ab.\nEos maxime modi commodi ad.", + "uuid": "0ff38467-3b70-4de5-86ed-f3ea8ef95930", + "siteRegistry": true, + "dateReceived": "2014-07-21", + "dateCompleted": "2014-04-15", + "dateEntered": "2018-04-10", + "dateRegistrar": "2023-05-14", + "dateLocalAuthorityReceived": "2023-09-01", + "summary": "Inventore maxime assumenda ipsa.", + "informationUsed": "Voluptates fugit similique quaerat.\nEos sint rerum quo itaque cumque.\nNisi sunt commodi.", + "pastOrPresentOrders": "Nulla laboriosam dolores fugiat.\nUllam dolorum quae ducimus recusandae accusamus ad.", "commercialAndIndustrialPurposes": [ { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false - }, - { - "scheduleReference": "F2*", + "uuid": "09427c35-cce0-4fb4-9c28-d7a8a2c7c424", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false - }, - { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { + "uuid": "663f4263-7470-4ac7-b567-f14bea407fa7", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true - } - ] - }, - { - "siteRegistry": false, - "dateReceived": "2019-07-07", - "dateCompleted": "2020-08-14", - "dateEntered": "2022-06-20", - "dateRegistrar": "2015-09-21", - "dateLocalAuthorityReceived": "2014-08-30", - "summary": "Nostrum porro modi corrupti occaecati eligendi quis iure.\nEsse minus quasi voluptatibus fuga similique quisquam illum esse harum.\nEarum aut dolorum rem a porro quod quae deserunt voluptates.", - "informationUsed": "Corrupti repudiandae eum error accusantium cumque sint velit id at.\nInventore placeat illum explicabo nesciunt voluptates fugiat unde sunt natus.\nMagnam eius consequatur.", - "pastOrPresentOrders": "Expedita consequatur aliquam adipisci at libero.", - "commercialAndIndustrialPurposes": [ - { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false - }, - { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false }, { + "uuid": "423ea5c6-da81-4cd5-afc9-d647623e3e41", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false + "siteRegistry": true }, { + "uuid": "93a98a80-0ed2-4045-a6d8-ba7bdb375482", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false + "siteRegistry": true } ] } ], "activityLog": [ { + "uuid": "9f60dc1f-abe4-440e-be9e-c67b60d51a65", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "LOWE MYRTLE", - "timestamp": "2017-05-04" + "user": "LEANNON BREANNE", + "timestamp": "2020-04-15" }, { + "uuid": "f19ded6c-8352-46ac-939a-080b3e7f2870", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "WINDLER ELLEN", - "timestamp": "2019-04-24" - }, - { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "BOTSFORD SOFIA", - "timestamp": "2015-04-16" + "user": "THIEL ELSE", + "timestamp": "2015-02-20" }, { - "siteRegistry": true, + "uuid": "f4bc3dca-a99a-42be-96f3-da87cc3802c7", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "ANKUNDING AMIR", - "timestamp": "2023-01-26" + "user": "BATZ MAXINE", + "timestamp": "2023-05-17" }, { + "uuid": "5d38c456-4212-427c-8cbf-051d23a88db8", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "SMITHAM VERNA", - "timestamp": "2015-07-14" + "user": "HALEY CALE", + "timestamp": "2016-04-27" }, { + "uuid": "4544900b-867f-4a00-9689-3d3b81332509", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "HAAG LUCY", - "timestamp": "2023-01-07" + "user": "DIBBERT TONEY", + "timestamp": "2014-02-10" }, { + "uuid": "add17a25-8e38-4226-bff8-750ea2fec1c6", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "FRITSCH JADEN", - "timestamp": "2013-12-27" + "user": "STAMM TYREE", + "timestamp": "2022-09-07" }, { - "siteRegistry": false, + "uuid": "a4d2e1f9-f4a1-48b4-b10a-8dd1e481b06f", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "KULAS BARRETT", - "timestamp": "2015-05-17" + "user": "WILLMS RYLEE", + "timestamp": "2017-10-27" }, { + "uuid": "fa1efcbe-232f-49a0-9752-f1c02cb9cce6", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "ROWE ETHA", - "timestamp": "2019-04-11" - }, - { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "MILLER DAYNA", - "timestamp": "2016-03-21" + "user": "WATSICA JORDYN", + "timestamp": "2013-11-18" } ], "associatedSites": [ { - "dateNoted": "2018-11-06", + "uuid": "2fecf86a-cdf6-4e17-a467-d5e55efa89f3", + "dateNoted": "2014-10-14", + "notes": "", + "parcelID": "16881", + "siteID": "16682", + "siteRegistry": true + }, + { + "uuid": "973f8868-5e1f-48ae-a8b8-fd228b69ecbf", + "dateNoted": "2018-03-10", "notes": "", - "parcelID": "20092", - "siteID": "18281", + "parcelID": "15236", + "siteID": "16062", "siteRegistry": false + }, + { + "uuid": "98edae03-bae3-484d-9151-a9381bfa358f", + "dateNoted": "2016-03-18", + "notes": "", + "parcelID": "17841", + "siteID": "16202", + "siteRegistry": true } ] }, { - "uuid": "ed565485-d1d1-4966-ae4a-1b341d8590e1", - "siteID": 17951, - "address": "511 Hermann Burgs", - "latitude": 48.0937, - "longitude": -123.8592, - "lastUpdated": "2015-07-03", - "city": "Schaeferfield", - "region": "Vancouver Island/Coast", - "victoriaFile": "26250-20/14483", + "uuid": "cbce66c8-16bc-485d-af6e-e4bd4a6e50d0", + "siteID": 19174, + "address": "813 Larissa Villages", + "latitude": 58.9015, + "longitude": -122.741, + "lastUpdated": "2016-06-30", + "city": "Bismarck", + "region": "Cariboo", + "victoriaFile": "26250-20/10778", "regionalFile": "N/A", "parcelIDs": [ - 332558, - 7949161, - 1184073, - 4862482, - 7499652 + 5102753, + 631556, + 7348122, + 2631299, + 9748217 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2014-08-23", - "completed": "2020-06-25", - "initiated": "2014-07-18", - "ministryContact": "BEATTY ROWLAND", + "uuid": "2778bb0e-0f96-4326-9388-f075e4c7460b", + "createdAt": "2017-03-09", + "completed": "2015-05-01", + "initiated": "2017-09-13", + "ministryContact": "WEIMANN-GLOVER ROBERTA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -36200,33 +42207,38 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", + "uuid": "2ab0de87-603a-4b9a-a6a8-b945ec9ea11d", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "uuid": "014b6fea-4993-41dc-aa23-d2014e8caa0b", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true + "uuid": "67e37bdb-f576-4b51-bbb1-f47c8543a613", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false }, { + "uuid": "272f2f94-9144-48b2-b72d-f5cf1a3dc5c8", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false + "role": "REQUESTED BY", + "siteRegistry": true } ], "siteRegistry": true }, { - "createdAt": "2015-07-31", - "completed": "2016-07-29", - "initiated": "2021-08-24", - "ministryContact": "FEEST JEANNE", + "uuid": "51cae5cc-54c2-4b0c-a5c4-9da666f3f928", + "createdAt": "2016-07-06", + "completed": "2020-04-27", + "initiated": "2014-01-04", + "ministryContact": "PRICE EARLENE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -36235,48 +42247,44 @@ ], "notationParticipants": [ { + "uuid": "0b9fb03c-80ee-4424-a84e-e80ac3257762", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false + }, + { + "uuid": "941b6f39-5412-42e4-b9d1-6899364cdcba", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false }, { + "uuid": "6eaac499-8f86-4f0a-ae50-f3f50b03d73e", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": true - } - ], - "siteRegistry": true - }, - { - "createdAt": "2019-01-01", - "completed": "2019-03-14", - "initiated": "2020-07-13", - "ministryContact": "HILPERT JAQUAN", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ + }, { + "uuid": "5c83953b-2da0-4ca4-b54e-29e5efb3743b", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true + "role": "SUBMITTED BY", + "siteRegistry": false }, { + "uuid": "234670f0-71d3-496c-8bcc-159c6931be09", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2014-08-25", - "completed": "2021-10-01", - "initiated": "2014-07-14", - "ministryContact": "LEUSCHKE ANYA", + "uuid": "60323ecf-b7c3-41ce-9410-740af7bbbe1a", + "createdAt": "2019-09-18", + "completed": "2021-10-20", + "initiated": "2019-09-30", + "ministryContact": "KUHLMAN OLLIE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -36285,24 +42293,45 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "ae603489-7fef-4d69-ac57-ff3ed12c000e", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true }, { + "uuid": "98a1e96b-0658-4a5e-af9d-a7da7adf9fc8", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "uuid": "0c7b9475-26a7-4ed5-bdb1-bb8c86d4ae97", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "uuid": "1b17876c-5aea-4913-bda8-4de9b20d1d2c", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": true + }, + { + "uuid": "d5a1a6e3-f3e1-4a77-9686-496da6a54026", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true } ], "participants": [ { - "name": "IPSUM", - "endDate": "2019-01-05", - "startDate": "2023-08-23", + "uuid": "c9ac9f1b-d771-42e6-a55d-ac51ec973077", + "name": "AMET, DOLOR SIT", + "endDate": "2016-10-15", + "startDate": "2014-06-15", "notes": "", "roles": [ "EMPLOYEE" @@ -36310,9 +42339,10 @@ "siteRegistry": true }, { - "name": "AMET, DOLOR SIT", - "endDate": "2020-03-12", - "startDate": "2014-04-28", + "uuid": "fc2fd653-6516-4058-8e66-045835697217", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2017-12-01", + "startDate": "2019-06-24", "notes": "", "roles": [ "EMPLOYEE" @@ -36320,208 +42350,251 @@ "siteRegistry": true }, { - "name": "IPSUM", - "endDate": "2019-08-30", - "startDate": "2015-09-17", + "uuid": "1ba4b633-2114-479b-9335-7644cb922a3d", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2014-10-13", + "startDate": "2020-10-10", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": false }, { - "name": "IPSUM", - "endDate": "2019-01-27", - "startDate": "2021-01-16", + "uuid": "cf4364ae-f3bc-466b-92eb-6ac768a43024", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2020-04-28", + "startDate": "2019-05-11", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "uuid": "59cbe387-6efb-4c02-b18c-01c9737d34ba", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2017-04-06", + "startDate": "2022-12-21", + "notes": "", + "roles": [ + "EMPLOYEE" ], "siteRegistry": true } ], "suspectLandUses": [ { + "uuid": "4c33fad7-287e-4099-b1f9-334f18447a04", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-01-29 (described on Site Profile dated 2016-01-29)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "notes": "INSERTED FOR SITE PROFILE DATED 2020-06-15 (described on Site Profile dated 2020-06-15)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { + "uuid": "45c36520-333a-44d5-bc61-16f00f5531c9", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-12-11 (described on Site Profile dated 2017-12-11)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "notes": "INSERTED FOR SITE PROFILE DATED 2018-04-28 (described on Site Profile dated 2018-04-28)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], "parcelDescriptions": [ { + "uuid": "67875fe2-e67d-4ba0-a147-28f269c550f0", "siteRegistry": false, - "dateNoted": "2021-04-16", - "parcelID": "20349", - "crownLandUsePIN": "16392", - "crownLandFileNumber": "16920", - "landDescription": "LOT 4 OF LOT 4 BLOCK 5 DISTRICT LOT 2 PLAN 2939" - }, - { - "siteRegistry": true, - "dateNoted": "2015-10-20", - "parcelID": "18238", - "crownLandUsePIN": "16026", - "crownLandFileNumber": "19887", - "landDescription": "LOT 3 OF LOT 1 BLOCK 3 DISTRICT LOT 5 PLAN 3130" + "dateNoted": "2017-04-05", + "parcelID": "16913", + "crownLandUsePIN": "16842", + "crownLandFileNumber": "18364", + "landDescription": "LOT 1 OF LOT 3 BLOCK 1 DISTRICT LOT 4 PLAN 6704" }, { - "siteRegistry": true, - "dateNoted": "2022-05-06", - "parcelID": "20877", - "crownLandUsePIN": "17725", - "crownLandFileNumber": "18956", - "landDescription": "LOT 5 OF LOT 5 BLOCK 5 DISTRICT LOT 4 PLAN 7436" + "uuid": "92cf3bac-5448-44f0-8639-a211f2d7ad46", + "siteRegistry": false, + "dateNoted": "2018-06-27", + "parcelID": "19471", + "crownLandUsePIN": "20137", + "crownLandFileNumber": "18048", + "landDescription": "LOT 4 OF LOT 4 BLOCK 1 DISTRICT LOT 4 PLAN 5987" }, { + "uuid": "d896b760-27c0-4fa4-ad40-d6f3fd6c03d5", "siteRegistry": false, - "dateNoted": "2022-04-15", - "parcelID": "19925", - "crownLandUsePIN": "18185", - "crownLandFileNumber": "20571", - "landDescription": "LOT 1 OF LOT 2 BLOCK 1 DISTRICT LOT 2 PLAN 7734" + "dateNoted": "2022-05-23", + "parcelID": "18880", + "crownLandUsePIN": "20836", + "crownLandFileNumber": "18194", + "landDescription": "LOT 2 OF LOT 5 BLOCK 5 DISTRICT LOT 4 PLAN 8874" }, { + "uuid": "c2ee2b1d-b244-496f-821f-4a584507cb7a", "siteRegistry": false, - "dateNoted": "2019-11-08", - "parcelID": "18131", - "crownLandUsePIN": "15782", - "crownLandFileNumber": "15413", - "landDescription": "LOT 3 OF LOT 1 BLOCK 1 DISTRICT LOT 1 PLAN 3379" + "dateNoted": "2017-07-30", + "parcelID": "20275", + "crownLandUsePIN": "17771", + "crownLandFileNumber": "19744", + "landDescription": "LOT 3 OF LOT 5 BLOCK 1 DISTRICT LOT 2 PLAN 8909" } ], "siteDisclosures": [ { - "siteRegistry": true, - "dateReceived": "2020-09-21", - "dateCompleted": "2021-07-19", - "dateEntered": "2023-05-05", - "dateRegistrar": "2017-06-01", - "dateLocalAuthorityReceived": "2014-10-24", - "summary": "Repellat est voluptatem labore itaque.\nAccusantium quam aliquam corrupti eligendi beatae unde quod.", - "informationUsed": "Laboriosam sed voluptatum repudiandae eveniet ab eius explicabo.\nConsectetur numquam nulla cumque culpa voluptates saepe impedit corrupti.\nTempore molestias et temporibus similique officia voluptates quis natus.\nOdio facilis maiores quis quos.", - "pastOrPresentOrders": "Nostrum dicta mollitia praesentium amet harum natus sint minima.\nSunt porro vitae.", + "uuid": "2de9715f-818a-4714-a8b0-2e883c2f5e56", + "siteRegistry": false, + "dateReceived": "2013-12-26", + "dateCompleted": "2020-10-06", + "dateEntered": "2021-01-30", + "dateRegistrar": "2015-02-02", + "dateLocalAuthorityReceived": "2021-11-17", + "summary": "Libero doloremque debitis repudiandae aperiam laudantium consectetur omnis modi quia.\nAccusamus sequi repudiandae sunt neque mollitia culpa porro veniam temporibus.", + "informationUsed": "Reiciendis officiis omnis quod voluptatem recusandae laborum.\nTemporibus mollitia maxime quisquam maiores rerum blanditiis officia earum.\nDeleniti delectus eveniet ab doloribus.", + "pastOrPresentOrders": "Commodi unde nesciunt quo distinctio laudantium voluptatum.\nExcepturi culpa perspiciatis error quidem excepturi vero.\nOccaecati nihil laboriosam fugit voluptate eius.", "commercialAndIndustrialPurposes": [ { + "uuid": "3721dac4-0199-49ff-b077-a0f91c68700c", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { - "scheduleReference": "F2*", + "uuid": "fb175526-fec1-4cfe-a439-664924297812", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "uuid": "25e8d271-3817-4622-82cb-e99ff617e10a", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + } + ] + }, + { + "uuid": "348ba47f-a405-48dd-bbb2-2148ee05f838", + "siteRegistry": false, + "dateReceived": "2014-01-20", + "dateCompleted": "2018-06-09", + "dateEntered": "2017-05-22", + "dateRegistrar": "2017-09-17", + "dateLocalAuthorityReceived": "2018-02-24", + "summary": "Soluta nostrum nemo aliquid reprehenderit.\nCorporis quidem vero qui.", + "informationUsed": "Maxime amet laborum modi inventore.\nNihil atque autem quae enim ea sed vel hic cupiditate.\nNecessitatibus quasi voluptate ipsum incidunt adipisci suscipit aperiam quia suscipit.\nVitae tenetur sed perspiciatis sunt.\nMolestias tenetur ipsam sit pariatur cum dolorum.", + "pastOrPresentOrders": "Ut totam velit.\nAtque nihil eaque.\nNostrum sunt deleniti quisquam exercitationem aspernatur exercitationem mollitia quaerat distinctio.", + "commercialAndIndustrialPurposes": [ + { + "uuid": "b39262f2-0da4-4195-a8f3-c7ecf7d9c906", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "uuid": "9c3e5678-a5c1-45b6-be07-0714d0eab0fb", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { + "uuid": "b78e275c-96bd-43f0-825a-0d9b924516f7", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false + }, + { + "uuid": "08e19677-7c35-4654-9016-c32c202f6abe", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false } ] } ], "activityLog": [ { + "uuid": "226570c5-ce88-4aa7-95b9-e5de05150464", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "BRAUN CRISTOPHER", - "timestamp": "2017-07-05" - }, - { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "BALISTRERI BERNIE", - "timestamp": "2020-04-04" + "user": "TILLMAN GOLDA", + "timestamp": "2017-04-09" }, { - "siteRegistry": true, + "uuid": "0d86a757-3031-49c9-a966-5f9374d2fb75", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "FAY TILLMAN", - "timestamp": "2022-04-03" + "user": "KUHLMAN VLADIMIR", + "timestamp": "2021-12-11" }, { + "uuid": "9fd67590-6596-4b81-a6be-45a3e7ba9801", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "ROBERTS FANNIE", - "timestamp": "2019-02-04" + "user": "MORAR LAURETTA", + "timestamp": "2018-11-25" }, { + "uuid": "409aa726-758b-4963-b538-067537a35693", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "WILDERMAN NADIA", - "timestamp": "2015-12-26" + "user": "PROSACCO OBIE", + "timestamp": "2021-08-15" }, { + "uuid": "0677e472-6941-4384-bb7c-715a69ab8344", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "WYMAN PALMA", - "timestamp": "2021-09-09" + "user": "HEGMANN DARYL", + "timestamp": "2023-03-18" }, { + "uuid": "1669abed-8c65-462f-9a59-5721241095dc", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "BOYLE VINCENZA", - "timestamp": "2023-09-04" - }, - { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "SAUER ALFREDA", - "timestamp": "2016-03-20" + "user": "OLSON MARLEY", + "timestamp": "2018-03-08" }, { + "uuid": "77148f90-352a-4744-80c8-97d26aff7853", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "TOWNE SAVION", - "timestamp": "2017-07-17" + "user": "WHITE KAROLANN", + "timestamp": "2021-04-13" } ], "associatedSites": [ { - "dateNoted": "2014-04-05", - "notes": "", - "parcelID": "18182", - "siteID": "17707", - "siteRegistry": false - }, - { - "dateNoted": "2022-01-15", + "uuid": "c4ca746a-d352-43e7-b250-c0ab80812ee3", + "dateNoted": "2015-01-30", "notes": "", - "parcelID": "19066", - "siteID": "18608", + "parcelID": "18311", + "siteID": "20154", "siteRegistry": true } ] }, { - "uuid": "883aa852-78ea-4847-917e-f9548b65e9e6", - "siteID": 15493, - "address": "569 Keegan Falls", - "latitude": 57.0982, - "longitude": -118.429, - "lastUpdated": "2014-10-22", - "city": "Peteberg", - "region": "Mainland/Southwest", - "victoriaFile": "26250-20/2010", + "uuid": "c766deb8-13ba-4a23-8b9f-68c8f1ad0351", + "siteID": 17604, + "address": "8183 Marianna Mountains", + "latitude": 54.7902, + "longitude": -125.3734, + "lastUpdated": "2015-01-27", + "city": "Hyattcester", + "region": "Thompson-Okanagan", + "victoriaFile": "26250-20/10108", "regionalFile": "N/A", "parcelIDs": [ - 8812566, - 3230782, - 6070901, - 9824042, - 3838814 + 6663161, + 6831888, + 5223264, + 8706514, + 4542192 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2016-04-19", - "completed": "2019-06-06", - "initiated": "2023-10-03", - "ministryContact": "NADER JEFFREY", + "uuid": "9e628797-ca25-469a-a4bd-32ddfb71bf23", + "createdAt": "2015-11-12", + "completed": "2020-05-28", + "initiated": "2022-07-25", + "ministryContact": "GREENFELDER STANTON", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -36530,26 +42603,25 @@ ], "notationParticipants": [ { + "uuid": "546a99a9-0864-4445-8cc3-be108770a5fe", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true }, { + "uuid": "942c8309-3d5a-454d-831b-6cf4678a7231", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", + "uuid": "365b2c7a-43e4-42cb-98b2-828d5d8d360d", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true }, { + "uuid": "e07bc10d-9384-45f5-9f6e-3e9d298028a9", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true @@ -36558,10 +42630,11 @@ "siteRegistry": true }, { - "createdAt": "2023-05-22", - "completed": "2021-10-26", - "initiated": "2017-06-06", - "ministryContact": "RUTHERFORD MAEVE", + "uuid": "f77dc5f0-c004-4288-9d8c-d33dd9f3ea7c", + "createdAt": "2020-02-04", + "completed": "2019-11-13", + "initiated": "2016-04-19", + "ministryContact": "ADAMS BOBBIE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -36570,27 +42643,26 @@ ], "notationParticipants": [ { + "uuid": "9956ca7f-8a24-49c2-95b9-8a002a0e9668", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "423d8efc-d39a-4d25-b1c9-2b80391ab90b", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "4ce4e1ae-44bb-440d-969c-840b4d0b8c75", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", + "uuid": "8ca3a692-90b0-4840-8b50-559a6c70d843", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true } @@ -36598,10 +42670,11 @@ "siteRegistry": true }, { - "createdAt": "2020-11-10", - "completed": "2022-03-12", - "initiated": "2021-01-31", - "ministryContact": "TURCOTTE DAMEON", + "uuid": "07e5b3db-c44c-4528-801c-465ba201b528", + "createdAt": "2019-08-15", + "completed": "2014-07-01", + "initiated": "2021-08-01", + "ministryContact": "STROMAN JENSEN", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -36610,38 +42683,38 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false + "uuid": "a59c7fd9-c110-4d61-bd63-7dc7b63b6af0", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "4b42f184-fc8b-4a27-bf98-fdd3f1164837", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false }, { + "uuid": "d982cd45-f88f-41b3-839b-0beb95df1765", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": true }, { + "uuid": "0ffa63b6-6134-4820-8b81-4af8a3278b19", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false } ], "siteRegistry": false }, { - "createdAt": "2014-08-12", - "completed": "2020-02-04", - "initiated": "2017-06-29", - "ministryContact": "BODE WILMER", + "uuid": "9d8e6f4a-6055-48d6-9ad7-9a93f7875f26", + "createdAt": "2023-04-12", + "completed": "2016-10-09", + "initiated": "2018-05-30", + "ministryContact": "PACOCHA MADONNA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -36650,24 +42723,45 @@ ], "notationParticipants": [ { + "uuid": "2039e1e2-55c1-4f01-b2f8-e13a98c3bcca", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "62b1600e-7829-40c7-b0bb-6dc6ad7f079a", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true }, { + "uuid": "8e3b6d1f-bdfd-4277-baba-3f502705fd3a", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "2ec7fe91-bbeb-459d-9fa1-ce4fdc808659", "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "8c5e52cb-05ce-45d2-aca7-4196c35a54fe", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true } ], "participants": [ { - "name": "AMET, DOLOR SIT", - "endDate": "2016-10-28", - "startDate": "2014-04-05", + "uuid": "49e9fee3-fdab-46fc-a67d-28d024f099fd", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2020-03-25", + "startDate": "2016-01-30", "notes": "", "roles": [ "ORGANIZATION" @@ -36675,148 +42769,154 @@ "siteRegistry": true }, { - "name": "AMET, DOLOR SIT", - "endDate": "2015-10-08", - "startDate": "2015-04-30", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": true - }, - { - "name": "AMET, DOLOR SIT", - "endDate": "2017-04-10", - "startDate": "2021-02-24", + "uuid": "7507b825-94f6-4435-89e0-caae0358927f", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2019-12-25", + "startDate": "2015-05-02", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": true - }, - { - "name": "AMET, DOLOR SIT", - "endDate": "2021-05-07", - "startDate": "2022-10-22", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": true + "siteRegistry": false } ], "suspectLandUses": [ { + "uuid": "0535e615-6aff-433e-8bcd-63f245eadade", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-03-30 (described on Site Profile dated 2021-03-30)", + "notes": "INSERTED FOR SITE PROFILE DATED 2015-09-30 (described on Site Profile dated 2015-09-30)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-08-22 (described on Site Profile dated 2017-08-22)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "uuid": "2d2bbe7a-b840-48e5-a7ac-3d30a979e3db", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2018-02-19 (described on Site Profile dated 2018-02-19)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { + "uuid": "fc83f311-cae7-4943-ac3e-58d23a6eaad8", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-02-10 (described on Site Profile dated 2021-02-10)", + "notes": "INSERTED FOR SITE PROFILE DATED 2023-06-02 (described on Site Profile dated 2023-06-02)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "uuid": "20211015-7b7c-47dc-ab94-344eed2e2917", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2022-02-08 (described on Site Profile dated 2022-02-08)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], "parcelDescriptions": [ { + "uuid": "c3c1a913-755d-4957-a40d-99861fee8faa", "siteRegistry": true, - "dateNoted": "2019-04-11", - "parcelID": "18683", - "crownLandUsePIN": "17448", - "crownLandFileNumber": "15481", - "landDescription": "LOT 2 OF LOT 1 BLOCK 1 DISTRICT LOT 3 PLAN 3571" - }, - { - "siteRegistry": true, - "dateNoted": "2016-07-12", - "parcelID": "18733", - "crownLandUsePIN": "18216", - "crownLandFileNumber": "18773", - "landDescription": "LOT 2 OF LOT 1 BLOCK 3 DISTRICT LOT 4 PLAN 7540" + "dateNoted": "2019-05-21", + "parcelID": "15444", + "crownLandUsePIN": "18309", + "crownLandFileNumber": "20193", + "landDescription": "LOT 2 OF LOT 2 BLOCK 1 DISTRICT LOT 5 PLAN 9792" }, { + "uuid": "5c6a5774-0df8-499a-aacd-fe50fe7195d3", "siteRegistry": true, - "dateNoted": "2014-09-11", - "parcelID": "16264", - "crownLandUsePIN": "19032", - "crownLandFileNumber": "18839", - "landDescription": "LOT 4 OF LOT 5 BLOCK 5 DISTRICT LOT 2 PLAN 5420" + "dateNoted": "2016-09-20", + "parcelID": "19274", + "crownLandUsePIN": "16419", + "crownLandFileNumber": "15810", + "landDescription": "LOT 2 OF LOT 4 BLOCK 2 DISTRICT LOT 1 PLAN 4276" }, { + "uuid": "46539ced-e989-4fe2-be4f-41c57a7ae1b7", "siteRegistry": false, - "dateNoted": "2015-02-01", - "parcelID": "19578", - "crownLandUsePIN": "17687", - "crownLandFileNumber": "17470", - "landDescription": "LOT 2 OF LOT 5 BLOCK 5 DISTRICT LOT 4 PLAN 3333" + "dateNoted": "2016-09-11", + "parcelID": "15300", + "crownLandUsePIN": "19484", + "crownLandFileNumber": "16978", + "landDescription": "LOT 2 OF LOT 2 BLOCK 4 DISTRICT LOT 1 PLAN 9409" }, { + "uuid": "27265ee9-e88f-41ca-9e67-56ae83679f6d", "siteRegistry": false, - "dateNoted": "2018-05-15", - "parcelID": "17566", - "crownLandUsePIN": "18007", - "crownLandFileNumber": "17602", - "landDescription": "LOT 4 OF LOT 5 BLOCK 5 DISTRICT LOT 4 PLAN 4051" + "dateNoted": "2021-02-08", + "parcelID": "16549", + "crownLandUsePIN": "20410", + "crownLandFileNumber": "15675", + "landDescription": "LOT 4 OF LOT 2 BLOCK 1 DISTRICT LOT 5 PLAN 8214" } ], "siteDisclosures": [ { - "siteRegistry": true, - "dateReceived": "2022-11-09", - "dateCompleted": "2021-10-20", - "dateEntered": "2014-10-11", - "dateRegistrar": "2015-08-20", - "dateLocalAuthorityReceived": "2018-04-30", - "summary": "Commodi nemo possimus eaque earum accusantium voluptate.", - "informationUsed": "Adipisci enim fugit.\nNostrum soluta dolorem id fuga a quas itaque nihil consectetur.\nSapiente minus quia perferendis laudantium optio incidunt minus.\nMolestias alias similique a laboriosam tempora odit quod.\nAutem nam cumque nesciunt.", - "pastOrPresentOrders": "Eos amet nemo asperiores sed ad.\nLibero eveniet aperiam.\nDolor nemo numquam reprehenderit nostrum nam magnam.", + "uuid": "a8c0a4c2-0e5a-4854-a198-7f6cc51b2000", + "siteRegistry": false, + "dateReceived": "2020-10-10", + "dateCompleted": "2013-12-17", + "dateEntered": "2015-09-13", + "dateRegistrar": "2015-05-21", + "dateLocalAuthorityReceived": "2016-01-29", + "summary": "Iste officiis odio sapiente maiores.\nTempore labore optio mollitia nobis eligendi dolore ratione rem.\nPariatur commodi fugiat molestias ducimus rem laudantium.", + "informationUsed": "Placeat exercitationem itaque incidunt porro.\nOmnis quaerat incidunt omnis corporis vitae est accusamus.\nDicta tempore non nihil suscipit libero expedita ipsa.\nImpedit iste reiciendis eaque ut earum dolores saepe.", + "pastOrPresentOrders": "Labore fugiat facere.\nDolores inventore quae omnis reprehenderit explicabo quis eveniet labore maiores.\nMaiores temporibus voluptatibus explicabo minus quasi voluptas dignissimos.", "commercialAndIndustrialPurposes": [ { + "uuid": "48ff7d8c-fb12-40e7-a7f5-1dbf32f77284", "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { + "uuid": "4d3b3d87-6a23-4c76-b643-a81e4e2393e2", "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "uuid": "baa9407d-9a8e-4899-960f-2082759f9113", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "uuid": "3749bcf0-2aec-457c-b407-d0a61ca4cfed", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false } ] }, { + "uuid": "03ef786c-ba2c-436b-ae9d-488f39a22d22", "siteRegistry": false, - "dateReceived": "2017-10-25", - "dateCompleted": "2013-12-10", - "dateEntered": "2019-04-28", - "dateRegistrar": "2014-12-22", - "dateLocalAuthorityReceived": "2019-02-16", - "summary": "Ad atque quidem.", - "informationUsed": "Eaque error nihil suscipit nisi.\nRerum modi error tempore molestias tempora provident.\nDoloremque quis nisi harum.\nRecusandae doloremque assumenda.", - "pastOrPresentOrders": "Id nemo at modi.", + "dateReceived": "2020-10-28", + "dateCompleted": "2015-10-11", + "dateEntered": "2022-07-24", + "dateRegistrar": "2021-08-22", + "dateLocalAuthorityReceived": "2015-01-09", + "summary": "Aliquid aut quisquam.\nFacilis error occaecati perspiciatis non ipsa.\nEligendi beatae commodi quibusdam et laudantium.", + "informationUsed": "Doloremque ex a ad unde animi.\nDolores commodi alias quia distinctio.\nMagnam dolore deleniti accusantium iste atque.\nFacere quam eaque perferendis doloribus enim repudiandae ea explicabo.\nVitae reprehenderit illo dignissimos minus error quidem autem.", + "pastOrPresentOrders": "Omnis odio enim ducimus eius unde suscipit.", "commercialAndIndustrialPurposes": [ { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false - }, - { + "uuid": "64c6f11f-143b-4987-a084-f60278c82979", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { - "scheduleReference": "F2*", + "uuid": "5f613685-76e0-4dda-9945-697ecdd7e1ac", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, { + "uuid": "1a326874-709e-4874-bf19-04eb2c440807", "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "uuid": "c3711ab3-1fea-4512-ad2f-3976768392bc", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true } ] @@ -36824,71 +42924,122 @@ ], "activityLog": [ { + "uuid": "499bbff4-d00a-49af-ae42-eef92eb30ea9", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "HYATT AVIS", + "timestamp": "2014-01-10" + }, + { + "uuid": "714e022e-693b-42ac-931e-98839787fd74", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "KOZEY PAMELA", + "timestamp": "2019-03-21" + }, + { + "uuid": "05cb5c37-ff25-42b3-ab77-1ae5c71d3548", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "LUETTGEN KAYLA", + "timestamp": "2022-05-31" + }, + { + "uuid": "e0381609-b7fd-42c6-926e-c635f72aeb1a", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "WILLIAMSON LAURYN", - "timestamp": "2017-06-02" + "user": "BRUEN DARRON", + "timestamp": "2021-12-22" }, { + "uuid": "1000c699-81c3-4fb7-a090-43fbbb46c51b", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "FAHEY BELLA", - "timestamp": "2013-11-16" + "user": "HUEL NELS", + "timestamp": "2020-10-17" }, { + "uuid": "d963a526-256a-4099-9f51-6f81bdbd54c2", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "BASHIRIAN SELINA", - "timestamp": "2020-08-23" + "user": "SCHOEN ARLENE", + "timestamp": "2017-01-27" }, { + "uuid": "f5ce78de-12a7-4c9f-bccb-afeeb5ac654a", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "DARE ALF", - "timestamp": "2021-04-25" + "user": "STEHR HAROLD", + "timestamp": "2020-09-07" }, { + "uuid": "3cdb9064-836d-4cc9-9bcf-d3497794fec7", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "O'KEEFE BERNEICE", - "timestamp": "2018-04-20" + "user": "THOMPSON CLETUS", + "timestamp": "2018-07-11" + }, + { + "uuid": "be25a050-95b2-484e-99db-b7e42b51d8e9", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "SIMONIS ALBIN", + "timestamp": "2016-07-20" } ], "associatedSites": [ { - "dateNoted": "2018-04-15", + "uuid": "ca8531ee-0ccc-46b9-81cc-5aeb219ce040", + "dateNoted": "2022-10-26", "notes": "", - "parcelID": "17867", - "siteID": "16093", + "parcelID": "20692", + "siteID": "15979", + "siteRegistry": false + }, + { + "uuid": "06ca6622-b2b2-4d00-a4fd-98bce3fb87ed", + "dateNoted": "2022-09-23", + "notes": "", + "parcelID": "19786", + "siteID": "16560", + "siteRegistry": true + }, + { + "uuid": "1de501af-7263-4c7a-9e85-8b840401bcef", + "dateNoted": "2022-01-16", + "notes": "", + "parcelID": "19289", + "siteID": "15690", "siteRegistry": false } ] }, { - "uuid": "337deb98-c361-40b8-a78d-0fb7d262dde0", - "siteID": 17982, - "address": "17206 Quigley Valleys", - "latitude": 53.2372, - "longitude": -134.2304, - "lastUpdated": "2019-02-10", - "city": "Hillsboro", + "uuid": "07725fd9-8120-41c3-b74d-54809246aece", + "siteID": 17571, + "address": "2028 Bashirian Villages", + "latitude": 49.494, + "longitude": -118.4704, + "lastUpdated": "2016-12-19", + "city": "Gracieton", "region": "Thompson-Okanagan", - "victoriaFile": "26250-20/4346", + "victoriaFile": "26250-20/16666", "regionalFile": "N/A", "parcelIDs": [ - 3378539, - 206337, - 9823199, - 1868878, - 1918656 + 2352075, + 858397, + 2491899, + 4663175, + 8901369 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2014-11-03", - "completed": "2018-05-14", - "initiated": "2022-03-13", - "ministryContact": "HELLER ALENA", + "uuid": "5ed06f03-6788-4cc3-b5ea-7dc8b4640c2a", + "createdAt": "2021-06-13", + "completed": "2016-04-15", + "initiated": "2014-08-30", + "ministryContact": "TOY MAVIS", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -36897,23 +43048,26 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "uuid": "bb987244-7211-43b6-8725-20df9adc1a20", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "0d9dc8ab-6392-4665-a269-a6f1ae47db46", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2021-05-25", - "completed": "2022-12-08", - "initiated": "2022-04-21", - "ministryContact": "CUMMERATA CHRISTOP", + "uuid": "d8a57fe6-6c1c-409c-b564-c5b9eb4d6092", + "createdAt": "2018-01-03", + "completed": "2018-01-21", + "initiated": "2016-08-08", + "ministryContact": "LEGROS TERRENCE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -36922,33 +43076,72 @@ ], "notationParticipants": [ { + "uuid": "cf39d3c2-4f33-46f3-8cab-ac96dfcef2ba", "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "23ce43f9-5ad1-49c4-a376-f305a68523f3", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true - }, + } + ], + "siteRegistry": true + }, + { + "uuid": "4859c434-def1-46d9-8b39-d76f558ec452", + "createdAt": "2018-07-27", + "completed": "2021-03-08", + "initiated": "2019-04-13", + "ministryContact": "CORMIER OCTAVIA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ { + "uuid": "f7a39407-a163-4380-859a-737a26a117b2", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false }, { + "uuid": "77772490-9ea3-4b8b-bf5a-6e28e0f9e54d", "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "uuid": "14dbed8d-cd81-4af5-bb44-a7842997e2bb", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "a58652c8-fe07-4707-b8db-b45835ecae10", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": true }, { + "uuid": "cdf8737a-3768-4ede-bbd4-839cfb930714", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2019-02-22", - "completed": "2019-06-27", - "initiated": "2020-10-05", - "ministryContact": "ROLFSON KARI", + "uuid": "572d807f-f5b7-4fa7-a57a-4200e4d47923", + "createdAt": "2020-07-14", + "completed": "2017-11-20", + "initiated": "2020-05-21", + "ministryContact": "ZIEME TONEY", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -36957,33 +43150,32 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { + "uuid": "3284c78b-57a2-47f7-8689-5274e35efa73", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { + "uuid": "672a1dee-da18-470c-9a14-868aedef9479", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": true }, { + "uuid": "0c69046b-a0d1-452a-ba89-ce446c677e2d", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2014-02-20", - "completed": "2017-01-03", - "initiated": "2018-11-01", - "ministryContact": "LUBOWITZ FREEDA", + "uuid": "32e2953a-2229-402b-bc15-d254bf4c6ddc", + "createdAt": "2015-04-24", + "completed": "2016-05-08", + "initiated": "2021-02-24", + "ministryContact": "WIZA ZACHARY", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -36992,11 +43184,19 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", + "uuid": "9532c432-0ca5-49db-8471-a7e47a3d9b59", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "uuid": "9eb31548-ec3a-43dd-82c7-d87f8deeab24", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true }, { + "uuid": "7c2af4e1-6387-4ff8-9a7f-12d1d80679c6", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false @@ -37007,217 +43207,239 @@ ], "participants": [ { - "name": "AMET, DOLOR SIT", - "endDate": "2021-12-06", - "startDate": "2015-12-21", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": true - }, - { - "name": "IPSUM", - "endDate": "2014-03-03", - "startDate": "2014-07-10", + "uuid": "37b7fc58-ee45-4b0f-aa6a-0ecd1c99a7ea", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2014-04-04", + "startDate": "2021-07-23", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": true + "siteRegistry": false }, { - "name": "IPSUM", - "endDate": "2014-09-10", - "startDate": "2021-02-11", + "uuid": "213c76ef-91f9-41a4-8fe5-f97502dda2cb", + "name": "AMET, DOLOR SIT", + "endDate": "2018-10-24", + "startDate": "2015-04-17", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false } ], "suspectLandUses": [ { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-05-04 (described on Site Profile dated 2014-05-04)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "uuid": "231546a0-81e4-464f-9df6-4aa14a29537c", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2023-03-25 (described on Site Profile dated 2023-03-25)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-06-21 (described on Site Profile dated 2017-06-21)", + "uuid": "54d39024-05e9-463b-ad28-ed7a8ea344c2", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2014-02-18 (described on Site Profile dated 2014-02-18)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { + "uuid": "5d91f879-5d20-4577-9b2b-5a4acc2daf9b", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-04-28 (described on Site Profile dated 2018-04-28)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "notes": "INSERTED FOR SITE PROFILE DATED 2013-12-09 (described on Site Profile dated 2013-12-09)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { + "uuid": "5dedce3c-5061-4423-aacd-e9ff9b1b9c17", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-04-20 (described on Site Profile dated 2016-04-20)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "notes": "INSERTED FOR SITE PROFILE DATED 2015-05-11 (described on Site Profile dated 2015-05-11)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], "parcelDescriptions": [ { - "siteRegistry": true, - "dateNoted": "2018-11-20", - "parcelID": "20187", - "crownLandUsePIN": "20821", - "crownLandFileNumber": "16754", - "landDescription": "LOT 5 OF LOT 5 BLOCK 4 DISTRICT LOT 4 PLAN 3931" - }, - { + "uuid": "4480b6fd-8077-46a5-9dd1-8b4b0179e30f", "siteRegistry": false, - "dateNoted": "2021-05-19", - "parcelID": "16907", - "crownLandUsePIN": "17906", - "crownLandFileNumber": "20942", - "landDescription": "LOT 1 OF LOT 3 BLOCK 3 DISTRICT LOT 1 PLAN 5557" + "dateNoted": "2016-02-16", + "parcelID": "19265", + "crownLandUsePIN": "20804", + "crownLandFileNumber": "17973", + "landDescription": "LOT 5 OF LOT 2 BLOCK 2 DISTRICT LOT 2 PLAN 6190" }, { + "uuid": "ab556ace-e862-4396-9ad7-14dc8f768631", "siteRegistry": false, - "dateNoted": "2018-05-15", - "parcelID": "17549", - "crownLandUsePIN": "17510", - "crownLandFileNumber": "17161", - "landDescription": "LOT 2 OF LOT 4 BLOCK 4 DISTRICT LOT 4 PLAN 3879" + "dateNoted": "2014-11-21", + "parcelID": "17489", + "crownLandUsePIN": "15592", + "crownLandFileNumber": "16599", + "landDescription": "LOT 5 OF LOT 1 BLOCK 3 DISTRICT LOT 1 PLAN 3408" } ], "siteDisclosures": [ { + "uuid": "a15fcf7e-865b-468c-8148-a2aafa2c6db6", "siteRegistry": true, - "dateReceived": "2017-04-24", - "dateCompleted": "2019-07-16", - "dateEntered": "2022-02-19", - "dateRegistrar": "2015-08-06", - "dateLocalAuthorityReceived": "2016-07-18", - "summary": "Fuga veniam ea voluptates aspernatur nemo et modi.\nRecusandae architecto recusandae amet consequatur nesciunt dolore blanditiis.", - "informationUsed": "Mollitia reprehenderit quam voluptatibus ad magnam fugit.\nProvident doloremque ipsa.\nAperiam pariatur officiis voluptatum.\nPlaceat dolor consequatur cumque a ab eum temporibus libero.", - "pastOrPresentOrders": "Commodi veritatis repellendus adipisci repudiandae dignissimos earum.\nSaepe velit alias eos.", + "dateReceived": "2015-02-27", + "dateCompleted": "2016-06-03", + "dateEntered": "2020-05-25", + "dateRegistrar": "2017-07-26", + "dateLocalAuthorityReceived": "2019-11-19", + "summary": "Tempore facere sunt voluptatem culpa repellat rem modi.\nVero nisi fugit voluptate veniam dolorum.", + "informationUsed": "Dolor tenetur repellat autem labore quibusdam reiciendis autem ipsum itaque.\nDelectus animi perferendis repellat ratione sunt quasi.\nIpsa quas veniam.\nSoluta aut rerum quae eius laudantium delectus illo.\nCupiditate magnam ratione assumenda ipsam aspernatur.", + "pastOrPresentOrders": "Laudantium perspiciatis velit fugit.\nRem pariatur officiis unde itaque voluptatem soluta.", "commercialAndIndustrialPurposes": [ { + "uuid": "31519a22-4277-41bc-9a31-5d40b9c5126d", "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false }, { - "scheduleReference": "F1*", + "uuid": "419b5f7e-fd03-4ce6-9186-bc5559b6ece2", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true - } - ] - }, - { - "siteRegistry": true, - "dateReceived": "2014-06-13", - "dateCompleted": "2014-04-20", - "dateEntered": "2021-05-04", - "dateRegistrar": "2020-02-28", - "dateLocalAuthorityReceived": "2014-08-03", - "summary": "Sit incidunt laborum nihil voluptate deleniti tenetur.\nUnde earum suscipit tempore aliquid reprehenderit eos perspiciatis.\nSint quidem debitis ipsum libero earum.", - "informationUsed": "Sapiente voluptate maiores sapiente ex quo tempore.\nSint eveniet possimus consequatur.\nCumque blanditiis maiores quod.\nQuo cumque unde illo excepturi eligendi perspiciatis.", - "pastOrPresentOrders": "Natus unde at iste expedita totam.", - "commercialAndIndustrialPurposes": [ + }, { - "scheduleReference": "F1*", + "uuid": "fea9a355-c133-47bc-a12b-f76cb0f59c17", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false + "siteRegistry": true }, { + "uuid": "e8fa1ed0-3838-4a34-b7b1-09090b781cdb", "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true } ] } ], "activityLog": [ { + "uuid": "494f4fe3-937e-420f-8fc8-32f37b8c1afe", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "MCGLYNN OTTIS", - "timestamp": "2022-10-03" + "user": "HARBER FRITZ", + "timestamp": "2016-09-19" }, { - "siteRegistry": true, + "uuid": "83d999b2-2f35-4955-87e0-33ca4ef8cbe8", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "HILLS ADOLPHUS", - "timestamp": "2015-07-07" + "user": "WISOKY ELROY", + "timestamp": "2015-04-23" }, { + "uuid": "31e3d537-d8a1-4d2f-abe8-f3815f9546d8", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "BOTSFORD RYANN", - "timestamp": "2019-06-16" + "user": "KILBACK WAYLON", + "timestamp": "2018-09-27" }, { + "uuid": "363ec8f7-2730-45bf-9737-97b7710e0c08", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "BRUEN LAMBERT", - "timestamp": "2014-05-21" + "user": "MCGLYNN JERROLD", + "timestamp": "2014-02-06" }, { - "siteRegistry": false, + "uuid": "316d72ce-8598-4efe-8739-3399ccde5dbd", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "WIEGAND META", - "timestamp": "2014-04-25" + "user": "KUTCH TRYSTAN", + "timestamp": "2015-08-04" }, { + "uuid": "fc96062e-e201-4391-959e-c2844b31403d", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "SCHMELER ELDON", - "timestamp": "2021-01-24" + "user": "KIEHN BRENT", + "timestamp": "2017-04-27" + }, + { + "uuid": "ed45f4f9-24f2-4ba1-b177-0fa3743cdb11", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "JACOBS RHETT", + "timestamp": "2017-05-20" }, { + "uuid": "320f0d9a-af95-447c-96a6-3bf49a031f4f", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "DIETRICH GABRIEL", - "timestamp": "2016-10-31" + "user": "BEIER IMMANUEL", + "timestamp": "2020-12-12" }, { + "uuid": "29085504-3f73-4019-92fe-95750e819cd2", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "KOEPP LOUIE", - "timestamp": "2015-07-15" + "user": "KOELPIN CALEB", + "timestamp": "2022-12-03" + }, + { + "uuid": "34803c8f-d3fd-4171-a455-c9b698e62bf8", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "SCHOWALTER STANFORD", + "timestamp": "2022-01-19" } ], "associatedSites": [ { - "dateNoted": "2022-11-20", + "uuid": "e01123c2-a965-45a6-a4ea-b477328418db", + "dateNoted": "2022-11-29", + "notes": "", + "parcelID": "19799", + "siteID": "16277", + "siteRegistry": true + }, + { + "uuid": "373a97ed-d04a-47d2-84f4-541d0beb219d", + "dateNoted": "2019-12-24", "notes": "", - "parcelID": "18649", - "siteID": "20970", + "parcelID": "20544", + "siteID": "17082", "siteRegistry": false + }, + { + "uuid": "b9ea2054-b3d3-4be1-8e8b-917ba8e0076f", + "dateNoted": "2013-11-25", + "notes": "", + "parcelID": "16466", + "siteID": "20960", + "siteRegistry": true } ] }, { - "uuid": "8ed1ca9d-c853-4214-b66a-6eeeeb478077", - "siteID": 16253, - "address": "50015 Bertram Field", - "latitude": 56.0129, - "longitude": -124.9411, - "lastUpdated": "2014-04-21", - "city": "North Remington", - "region": "Vancouver Island/Coast", - "victoriaFile": "26250-20/10628", + "uuid": "dc048941-0736-41c3-85c8-a60ec82929cf", + "siteID": 20313, + "address": "11247 Matt Circles", + "latitude": 50.8449, + "longitude": -125.062, + "lastUpdated": "2016-08-03", + "city": "East Orval", + "region": "Thompson-Okanagan", + "victoriaFile": "26250-20/3650", "regionalFile": "N/A", "parcelIDs": [ - 3053886, - 7865579, - 8256781, - 1553374, - 4348403 + 5780143, + 439843, + 5536872, + 1091553, + 8845806 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2020-12-23", - "completed": "2023-01-29", - "initiated": "2018-04-06", - "ministryContact": "CONROY ZELLA", + "uuid": "ad45de03-a21a-4854-9fb0-44b7f7afb87d", + "createdAt": "2021-08-05", + "completed": "2019-01-27", + "initiated": "2022-10-02", + "ministryContact": "MCCLURE NATALIE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -37226,22 +43448,20 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { + "uuid": "8ae9ab53-ce32-45ce-8cbe-a23c5f32e5dd", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { + "uuid": "6a087815-3d9b-4b12-88c3-4fcbc844a52b", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "15365ec4-c350-4e5f-8adb-5c8d789591d0", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false } @@ -37249,10 +43469,11 @@ "siteRegistry": false }, { - "createdAt": "2013-10-20", - "completed": "2014-11-07", - "initiated": "2014-06-09", - "ministryContact": "STANTON MARVIN", + "uuid": "ca6babfc-ccd6-4eea-ab03-d3a1f469f78a", + "createdAt": "2018-04-03", + "completed": "2015-07-26", + "initiated": "2023-06-01", + "ministryContact": "MILLER SAMARA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -37261,33 +43482,26 @@ ], "notationParticipants": [ { + "uuid": "4a45226e-2e91-4a1d-bfb9-ed40e88c1b62", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true }, { + "uuid": "94c7c685-b9a5-40a7-a6c4-8bc3d593346b", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2022-11-22", - "completed": "2018-02-19", - "initiated": "2020-11-02", - "ministryContact": "BEAHAN ANNIE", + "uuid": "b3607617-ead4-4e85-84b8-05dcb58c3a9e", + "createdAt": "2017-02-24", + "completed": "2015-06-21", + "initiated": "2016-06-08", + "ministryContact": "ABBOTT MYRTICE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -37296,38 +43510,84 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false + "uuid": "f4c1a9ef-c5ac-48a3-912e-44c2b5e43e02", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true }, { + "uuid": "3604dd59-c854-4f91-9185-0681410490db", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { + "uuid": "71aedb23-a396-43fa-aa6f-7d16f8ba1eb9", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "uuid": "699d8173-560e-4d4b-9083-0d9380ea814a", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "uuid": "05fd73db-873b-4655-a5e5-726c9dea19bf", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "uuid": "06691a61-18fd-465b-aeac-1fbc97a9ada9", + "createdAt": "2014-07-31", + "completed": "2023-03-22", + "initiated": "2018-03-30", + "ministryContact": "MAYERT BRODERICK", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "uuid": "78826cf2-46f2-4071-ad19-0a9ca5cf0000", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", + "uuid": "603dda94-874e-4581-a8bc-296ee927d57b", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true }, { + "uuid": "5068a749-6159-49af-b4cf-f3ffdd1ef7d4", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "87488b8c-6ced-4dcc-b0e7-b3870afcb981", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2015-02-12", - "completed": "2015-08-27", - "initiated": "2016-09-24", - "ministryContact": "BUCKRIDGE BELL", + "uuid": "0d1cf4a6-9cfa-4a23-8da5-22933ddff5f0", + "createdAt": "2023-09-03", + "completed": "2021-12-02", + "initiated": "2021-09-14", + "ministryContact": "LEDNER DERICK", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -37336,26 +43596,31 @@ ], "notationParticipants": [ { + "uuid": "e724bfa5-7a47-4ebe-9801-bbff1d26889b", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "550cfeba-61d4-4b0a-b1be-98fd23d423d7", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false + "uuid": "5703bb98-fec8-40b1-903f-2a011add6c58", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true }, { + "uuid": "1a48dcb8-f394-4d62-a1ac-a43e5940ee7a", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false }, { + "uuid": "5691409c-690b-4d76-affa-80245cffbc54", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true @@ -37366,133 +43631,182 @@ ], "participants": [ { + "uuid": "a6f0bab5-019f-441c-a76f-bd5ca2c4f400", "name": "AMET, DOLOR SIT", - "endDate": "2017-07-15", - "startDate": "2017-12-25", + "endDate": "2022-07-03", + "startDate": "2023-03-22", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2022-05-28", - "startDate": "2014-12-12", + "uuid": "15a548fd-a366-4149-975c-9a59ee9b8d7e", + "name": "IPSUM", + "endDate": "2020-08-28", + "startDate": "2021-12-12", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": false + "siteRegistry": true }, { - "name": "AMET, DOLOR SIT", - "endDate": "2015-12-25", - "startDate": "2018-11-05", + "uuid": "3582ea2b-96ac-475f-964f-1d6ed6a5c044", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2022-09-25", + "startDate": "2015-08-26", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": true } ], "suspectLandUses": [ { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2013-12-07 (described on Site Profile dated 2013-12-07)", + "uuid": "dc0987dc-f93f-436c-8d1e-36f42224c87c", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2023-07-23 (described on Site Profile dated 2023-07-23)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "uuid": "4dfcff45-66ee-4a50-b3c0-8fc9ff3c39b0", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2014-03-24 (described on Site Profile dated 2014-03-24)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "uuid": "2d0162d8-f870-47e1-89b8-13bbbe8d65e7", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2021-03-17 (described on Site Profile dated 2021-03-17)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2020-06-18 (described on Site Profile dated 2020-06-18)", + "uuid": "0c136db6-5c89-4bfc-9ac3-829a0bc11915", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2017-01-26 (described on Site Profile dated 2017-01-26)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "uuid": "abcd6b43-4af7-46e0-b8fa-b8db0a4fadcc", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2018-11-26 (described on Site Profile dated 2018-11-26)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], "parcelDescriptions": [ { - "siteRegistry": false, - "dateNoted": "2016-03-19", - "parcelID": "20258", - "crownLandUsePIN": "19026", - "crownLandFileNumber": "16318", - "landDescription": "LOT 1 OF LOT 3 BLOCK 2 DISTRICT LOT 4 PLAN 6776" - }, - { + "uuid": "9ec2547f-59ab-47ff-a907-96055fa33aa8", "siteRegistry": true, - "dateNoted": "2015-05-13", - "parcelID": "19536", - "crownLandUsePIN": "16174", - "crownLandFileNumber": "17353", - "landDescription": "LOT 1 OF LOT 1 BLOCK 4 DISTRICT LOT 2 PLAN 5359" + "dateNoted": "2017-08-22", + "parcelID": "17465", + "crownLandUsePIN": "17823", + "crownLandFileNumber": "17756", + "landDescription": "LOT 4 OF LOT 1 BLOCK 3 DISTRICT LOT 3 PLAN 4641" }, { + "uuid": "3fda299f-ead0-46c6-a638-cd76d482cc26", "siteRegistry": true, - "dateNoted": "2019-09-23", - "parcelID": "16604", - "crownLandUsePIN": "15277", - "crownLandFileNumber": "20593", - "landDescription": "LOT 5 OF LOT 1 BLOCK 3 DISTRICT LOT 2 PLAN 7275" + "dateNoted": "2015-10-30", + "parcelID": "18277", + "crownLandUsePIN": "16265", + "crownLandFileNumber": "20121", + "landDescription": "LOT 3 OF LOT 1 BLOCK 2 DISTRICT LOT 2 PLAN 8401" }, { + "uuid": "7a3f1383-3f85-4c48-9590-caf52fe716f9", "siteRegistry": false, - "dateNoted": "2015-09-21", - "parcelID": "18055", - "crownLandUsePIN": "16447", - "crownLandFileNumber": "15521", - "landDescription": "LOT 1 OF LOT 3 BLOCK 5 DISTRICT LOT 1 PLAN 6150" + "dateNoted": "2014-03-11", + "parcelID": "17030", + "crownLandUsePIN": "18855", + "crownLandFileNumber": "15205", + "landDescription": "LOT 5 OF LOT 2 BLOCK 1 DISTRICT LOT 5 PLAN 9505" }, { - "siteRegistry": false, - "dateNoted": "2019-08-14", - "parcelID": "20937", - "crownLandUsePIN": "18669", - "crownLandFileNumber": "15621", - "landDescription": "LOT 2 OF LOT 3 BLOCK 5 DISTRICT LOT 4 PLAN 4335" + "uuid": "04a9c525-7860-4308-898f-a3383e03f1f8", + "siteRegistry": true, + "dateNoted": "2015-08-31", + "parcelID": "18543", + "crownLandUsePIN": "16249", + "crownLandFileNumber": "19001", + "landDescription": "LOT 4 OF LOT 2 BLOCK 5 DISTRICT LOT 4 PLAN 3513" } ], "siteDisclosures": [ { + "uuid": "f6efb57e-adeb-4b63-848a-b4e87a4673fa", "siteRegistry": false, - "dateReceived": "2021-07-17", - "dateCompleted": "2020-09-29", - "dateEntered": "2014-04-25", - "dateRegistrar": "2017-07-24", - "dateLocalAuthorityReceived": "2022-06-11", - "summary": "Veniam suscipit ad nobis blanditiis.\nAnimi fugit reprehenderit.", - "informationUsed": "Eveniet saepe maxime.\nVeritatis saepe laboriosam fugiat assumenda doloribus.\nModi cumque aliquid tempore ut illo.\nOccaecati id laborum in ad magni saepe.", - "pastOrPresentOrders": "Officiis numquam unde rem.\nNeque neque rerum fugiat fugit.", + "dateReceived": "2016-05-06", + "dateCompleted": "2020-04-15", + "dateEntered": "2023-10-06", + "dateRegistrar": "2016-04-30", + "dateLocalAuthorityReceived": "2014-04-26", + "summary": "Tempore consequatur perferendis expedita sunt ex.\nQuasi voluptatum consectetur amet deserunt vitae atque vel.\nUt occaecati saepe esse a quos ducimus ab.", + "informationUsed": "Quae tempore recusandae eaque consectetur vel et mollitia libero.\nTotam quo quibusdam.\nA neque eligendi assumenda corporis.\nQuibusdam magnam tenetur eum maiores dolores ex.\nNon provident maxime soluta beatae ad a consectetur.", + "pastOrPresentOrders": "Neque eaque nesciunt qui dicta nesciunt.", "commercialAndIndustrialPurposes": [ { - "scheduleReference": "F1*", + "uuid": "6e3311b9-52c5-4d4b-9806-3d40f7a768ab", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false + "siteRegistry": true }, { - "scheduleReference": "F1*", + "uuid": "df1cad72-77e7-4276-9df2-912f33db41fa", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "uuid": "6a20c7b3-7189-40f8-ad5e-d6105802bc99", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true + }, + { + "uuid": "9318a36a-2fe5-4d33-a22c-71fbffad5349", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false } ] }, { + "uuid": "9f0ab0d7-5294-416d-b982-a1f413938026", "siteRegistry": true, - "dateReceived": "2016-02-21", - "dateCompleted": "2019-07-02", - "dateEntered": "2018-04-17", - "dateRegistrar": "2014-11-22", - "dateLocalAuthorityReceived": "2016-10-06", - "summary": "Consequuntur unde harum.", - "informationUsed": "Debitis libero dolorem excepturi eius rem natus officiis.\nIpsa voluptatibus numquam pariatur asperiores.\nDeserunt ea alias facere deserunt.", - "pastOrPresentOrders": "Dolorem voluptatem corporis delectus voluptas.\nNam officiis corporis labore numquam provident veritatis debitis repudiandae.\nVoluptatem optio dolores doloribus.", + "dateReceived": "2015-12-18", + "dateCompleted": "2017-03-16", + "dateEntered": "2016-05-13", + "dateRegistrar": "2022-03-16", + "dateLocalAuthorityReceived": "2018-12-14", + "summary": "Placeat cumque amet et quaerat dolore labore ut ipsa nulla.\nAliquid voluptatum maxime quaerat.", + "informationUsed": "Magni placeat ullam.\nTenetur doloribus debitis deleniti repudiandae maxime saepe.\nVoluptatum sequi nam rerum minus.\nNostrum eos tenetur esse.\nImpedit mollitia sed consequatur minima error debitis.", + "pastOrPresentOrders": "Incidunt nemo fugit iure ipsum asperiores molestias quisquam iste fuga.\nConsequatur porro voluptatibus repellendus odio beatae.", "commercialAndIndustrialPurposes": [ { + "uuid": "a94881a7-f011-4a74-9820-27e420269762", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "uuid": "ae42d6a9-5588-486f-8063-cf5c728c858e", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "uuid": "f24d2545-ffb4-4fab-a5ad-69edd9131468", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, { + "uuid": "d1c99445-d87b-4e0a-83d0-7c180828c011", "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true } ] @@ -37500,97 +43814,115 @@ ], "activityLog": [ { - "siteRegistry": false, + "uuid": "c93f8fa9-bb1f-4684-b59d-795642d7b1d7", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "GLOVER DEMARCUS", - "timestamp": "2017-01-31" + "user": "HOPPE ROOSEVELT", + "timestamp": "2020-08-01" }, { - "siteRegistry": false, + "uuid": "f87ef630-a987-44f0-b821-5f4833ffea5e", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "MACEJKOVIC ALEXANDREA", - "timestamp": "2020-10-17" + "user": "STEHR DELPHA", + "timestamp": "2021-12-09" }, { + "uuid": "93606c23-d9c6-4787-b7fb-e8cfb83a4d6c", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "BREKKE ISAAC", - "timestamp": "2021-10-03" + "user": "JACOBSON HERSHEL", + "timestamp": "2014-11-10" + }, + { + "uuid": "bdcd29e3-d14b-4eb1-8989-23a8387f703b", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "ZBONCAK ROWENA", + "timestamp": "2017-01-13" }, { + "uuid": "91f8f4ba-b1d7-4d97-a4dd-9b48d139b642", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "SIPES JADON", - "timestamp": "2020-03-29" + "user": "BOSCO MARIO", + "timestamp": "2021-01-07" }, { - "siteRegistry": true, + "uuid": "ea374187-0dc4-41a8-a90c-c4e3061859a2", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "PREDOVIC EBBA", - "timestamp": "2018-04-26" + "user": "ALTENWERTH VIDA", + "timestamp": "2020-08-30" }, { + "uuid": "37c76f5c-24dd-4235-8666-a969674f22d4", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "BATZ MARSHALL", - "timestamp": "2023-01-03" + "user": "FEIL STANLEY", + "timestamp": "2021-08-08" }, { + "uuid": "68f59d96-8e23-480d-b075-162e2ca3b267", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "HUEL CLINT", - "timestamp": "2020-11-18" + "user": "GISLASON KAREN", + "timestamp": "2017-04-08" } ], "associatedSites": [ { - "dateNoted": "2021-01-03", + "uuid": "4d9f1db1-24bd-4446-a047-531600c4b8e1", + "dateNoted": "2020-11-07", "notes": "", - "parcelID": "15999", - "siteID": "20886", + "parcelID": "19084", + "siteID": "20778", "siteRegistry": false }, { - "dateNoted": "2021-06-01", + "uuid": "234d7b21-b764-42fc-b37b-51003669e434", + "dateNoted": "2020-10-18", "notes": "", - "parcelID": "20874", - "siteID": "17306", - "siteRegistry": true + "parcelID": "19000", + "siteID": "20112", + "siteRegistry": false }, { - "dateNoted": "2019-09-08", + "uuid": "67cd893c-f0be-4bf8-a8a1-458954530e78", + "dateNoted": "2020-11-16", "notes": "", - "parcelID": "16528", - "siteID": "17362", + "parcelID": "16603", + "siteID": "16323", "siteRegistry": true } ] }, { - "uuid": "a5b559ac-c04a-459d-b99e-154b1254f8ad", - "siteID": 18665, - "address": "86638 Ross Burgs", - "latitude": 48.1735, - "longitude": -134.4633, - "lastUpdated": "2016-05-01", - "city": "Lake Heavenberg", - "region": " North Coast", - "victoriaFile": "26250-20/9273", + "uuid": "7b72ed12-a92b-427a-8903-c662b785a7d8", + "siteID": 20470, + "address": "8582 Buckridge Shores", + "latitude": 53.6414, + "longitude": -133.2307, + "lastUpdated": "2022-07-16", + "city": "New Johnnyshire", + "region": "Cariboo", + "victoriaFile": "26250-20/14262", "regionalFile": "N/A", "parcelIDs": [ - 1926191, - 2160177, - 2624448, - 7507592, - 4685535 + 2151268, + 4755655, + 8344573, + 7078375, + 786053 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2020-09-30", - "completed": "2017-04-29", - "initiated": "2020-11-24", - "ministryContact": "JOHNSON LAURETTA", + "uuid": "badf876a-71a0-4ec2-87bc-ef537116fbea", + "createdAt": "2016-09-11", + "completed": "2015-07-16", + "initiated": "2017-10-20", + "ministryContact": "BALISTRERI ALEXANDER", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -37599,38 +43931,26 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { + "uuid": "8930deec-06a3-4d60-b206-b7df9e9492e0", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "bf975cac-70a6-4ab4-b09e-1fe9a28974d7", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2017-12-08", - "completed": "2022-05-28", - "initiated": "2016-02-08", - "ministryContact": "WILKINSON PIETRO", + "uuid": "81297b60-8147-4cc9-b236-5db5f61d2822", + "createdAt": "2019-03-18", + "completed": "2016-02-25", + "initiated": "2022-07-22", + "ministryContact": "HAHN GARRICK", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -37639,24 +43959,16 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { + "uuid": "6ec3fed6-81a0-4585-86da-41ca8e6829f9", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true }, { + "uuid": "e09664bc-a4df-4d05-a296-febe10ba30bb", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true + "role": "REQUESTED BY", + "siteRegistry": false } ], "siteRegistry": false @@ -37664,9 +43976,21 @@ ], "participants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2014-06-08", - "startDate": "2020-12-02", + "uuid": "314c0397-1fb2-44e8-abaa-ef520e9a9f5a", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2018-09-11", + "startDate": "2014-01-21", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "uuid": "60eb8aa7-f6aa-44e8-ae58-71316e2d4a6b", + "name": "IPSUM", + "endDate": "2021-12-28", + "startDate": "2023-08-03", "notes": "", "roles": [ "ORGANIZATION" @@ -37674,199 +43998,263 @@ "siteRegistry": false }, { - "name": "AMET, DOLOR SIT", - "endDate": "2017-04-11", - "startDate": "2022-01-25", + "uuid": "b75f1d53-8954-4f24-95fa-21bb75cf3221", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2018-01-07", + "startDate": "2015-10-21", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": true }, { - "name": "IPSUM", - "endDate": "2015-06-20", - "startDate": "2023-09-13", + "uuid": "5667a73c-42a6-4c22-83a8-c94f620c918c", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2019-02-04", + "startDate": "2021-05-03", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], - "siteRegistry": true + "siteRegistry": false }, { + "uuid": "ee41074f-b9b6-428c-afcc-f58fee223f20", "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2017-01-13", - "startDate": "2020-05-14", + "endDate": "2022-08-15", + "startDate": "2022-04-23", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": true } ], "suspectLandUses": [ { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-10-09 (described on Site Profile dated 2017-10-09)", + "uuid": "8f9e9f41-56e4-45f9-bc3d-17b997bc34bc", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2023-09-28 (described on Site Profile dated 2023-09-28)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "uuid": "abfa788a-c2f3-4597-ba6c-840ef99dc6ba", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2016-11-06 (described on Site Profile dated 2016-11-06)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { + "uuid": "137a891b-6b3a-4c18-9616-e07fc7a74fd9", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-02-23 (described on Site Profile dated 2016-02-23)", + "notes": "INSERTED FOR SITE PROFILE DATED 2013-11-09 (described on Site Profile dated 2013-11-09)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { + "uuid": "fb2d3a05-30cf-4e21-85d1-ce91f1e3c84d", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-10-16 (described on Site Profile dated 2018-10-16)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "notes": "INSERTED FOR SITE PROFILE DATED 2019-01-25 (described on Site Profile dated 2019-01-25)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], "parcelDescriptions": [ { + "uuid": "ce173eb9-b85d-43d9-9512-121705ca9140", + "siteRegistry": false, + "dateNoted": "2023-05-08", + "parcelID": "20828", + "crownLandUsePIN": "16913", + "crownLandFileNumber": "19566", + "landDescription": "LOT 2 OF LOT 2 BLOCK 4 DISTRICT LOT 1 PLAN 7496" + }, + { + "uuid": "5c950599-d791-4053-9b7c-e58acdb57a5c", + "siteRegistry": true, + "dateNoted": "2016-08-24", + "parcelID": "15214", + "crownLandUsePIN": "15505", + "crownLandFileNumber": "17622", + "landDescription": "LOT 4 OF LOT 1 BLOCK 1 DISTRICT LOT 1 PLAN 5331" + }, + { + "uuid": "0cd1f10f-946a-4a1a-b302-527b6aaea0c4", + "siteRegistry": true, + "dateNoted": "2022-09-10", + "parcelID": "16834", + "crownLandUsePIN": "20821", + "crownLandFileNumber": "16712", + "landDescription": "LOT 1 OF LOT 2 BLOCK 2 DISTRICT LOT 3 PLAN 8446" + }, + { + "uuid": "ae967ef3-cbae-40b8-a34d-a552bad5e643", "siteRegistry": false, - "dateNoted": "2022-08-09", - "parcelID": "17210", - "crownLandUsePIN": "16793", - "crownLandFileNumber": "17672", - "landDescription": "LOT 2 OF LOT 1 BLOCK 3 DISTRICT LOT 1 PLAN 8169" + "dateNoted": "2020-05-18", + "parcelID": "20413", + "crownLandUsePIN": "15799", + "crownLandFileNumber": "15970", + "landDescription": "LOT 4 OF LOT 2 BLOCK 5 DISTRICT LOT 4 PLAN 3703" }, { + "uuid": "ec2b5da7-75f9-435a-8916-22eb96f791be", "siteRegistry": false, - "dateNoted": "2023-08-25", - "parcelID": "18190", - "crownLandUsePIN": "20591", - "crownLandFileNumber": "19195", - "landDescription": "LOT 5 OF LOT 5 BLOCK 4 DISTRICT LOT 4 PLAN 6036" + "dateNoted": "2020-04-24", + "parcelID": "17432", + "crownLandUsePIN": "15201", + "crownLandFileNumber": "15349", + "landDescription": "LOT 2 OF LOT 3 BLOCK 2 DISTRICT LOT 5 PLAN 9659" } ], "siteDisclosures": [ { + "uuid": "65dee797-6cd7-42c8-863a-16b057b9be6f", "siteRegistry": true, - "dateReceived": "2022-11-09", - "dateCompleted": "2016-12-03", - "dateEntered": "2019-01-26", - "dateRegistrar": "2022-02-14", - "dateLocalAuthorityReceived": "2022-12-01", - "summary": "A voluptatem eos quas.\nAccusamus atque a.", - "informationUsed": "Fuga rerum et.\nItaque possimus repellendus voluptate quae.\nRatione voluptatum dignissimos ut quasi rerum.\nEveniet veritatis earum.\nRecusandae accusamus tempore consequuntur.", - "pastOrPresentOrders": "Ea necessitatibus totam temporibus eos consequatur blanditiis.\nMolestiae quod ipsa laudantium veniam.\nNon dolores sunt alias iusto id assumenda placeat expedita qui.", + "dateReceived": "2017-09-01", + "dateCompleted": "2017-03-21", + "dateEntered": "2018-03-06", + "dateRegistrar": "2021-02-27", + "dateLocalAuthorityReceived": "2023-06-06", + "summary": "Maxime vitae ducimus quo.\nEligendi animi esse modi voluptates ea ullam possimus laboriosam inventore.\nOfficiis aliquid natus quisquam officia sapiente ullam perferendis beatae.", + "informationUsed": "Officiis deleniti rerum error vero recusandae saepe numquam.\nRepellat inventore quasi cum at.\nDolorum sint nisi aliquam a voluptatibus perspiciatis aliquam.\nQuos quisquam dolorum ab voluptatem illo asperiores dolorum.\nOccaecati natus sed.", + "pastOrPresentOrders": "Rerum officiis repellat voluptatibus quis ullam enim ullam.\nMinima modi atque dolore quasi debitis omnis.\nItaque optio eius modi ipsa tempore quae optio aspernatur odio.", "commercialAndIndustrialPurposes": [ { - "scheduleReference": "F2*", + "uuid": "bc66f518-c7aa-4da1-b643-b39aafa5e4cc", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "uuid": "c20a856d-55b3-4e1b-b1c1-64395bd62f27", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { + "uuid": "a683b427-0206-4ab0-bbe6-63e3e9b9062f", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false - } - ] - }, - { - "siteRegistry": false, - "dateReceived": "2020-04-21", - "dateCompleted": "2018-05-26", - "dateEntered": "2019-06-17", - "dateRegistrar": "2015-01-06", - "dateLocalAuthorityReceived": "2019-07-28", - "summary": "Iure eos nobis molestias officia impedit voluptas.\nNatus labore accusamus ex laboriosam doloribus perspiciatis atque tempora eius.\nAb ut architecto voluptatum itaque amet.", - "informationUsed": "Cumque nulla provident sunt ducimus veritatis.\nSuscipit ab voluptatem vero iusto unde quibusdam enim enim.\nDeserunt repudiandae magnam minus dolor eius.", - "pastOrPresentOrders": "Excepturi quas voluptatibus nihil omnis reiciendis excepturi.\nQuam eum pariatur quae dignissimos nam eum sequi iste nemo.\nNisi repellendus eius ullam dolor voluptates maiores.", - "commercialAndIndustrialPurposes": [ + }, { + "uuid": "254a17b9-dbb1-4bd8-bd36-ef3b7361c852", "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false - }, - { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true } ] } ], "activityLog": [ { - "siteRegistry": true, + "uuid": "7bd1d310-117e-45ae-87e9-b45f6717248b", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "ORTIZ GLEN", - "timestamp": "2015-01-22" + "user": "PROHASKA MAUDE", + "timestamp": "2021-01-06" }, { + "uuid": "1d69a042-896d-4f1e-a959-15ed2e4a8f0b", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "KESSLER ELOY", - "timestamp": "2017-03-06" + "user": "WELCH ABEL", + "timestamp": "2020-12-02" }, { + "uuid": "899a98a9-acf1-4be0-834b-10884d94b1c2", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "KOZEY CHRISTOP", - "timestamp": "2016-02-12" + "user": "CARTWRIGHT MEDA", + "timestamp": "2015-01-15" }, { + "uuid": "e6d1e977-8f35-4286-99aa-ab5a387a6d4d", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "PAGAC LEANNA", - "timestamp": "2020-11-05" + "user": "PRICE DEANGELO", + "timestamp": "2017-06-28" }, { + "uuid": "b3900e71-c6b2-41ca-a8ba-2c5e5df4c5ea", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "HAMILL SYDNI", - "timestamp": "2021-07-30" + "user": "WUCKERT-NIENOW ELZA", + "timestamp": "2016-11-20" }, { + "uuid": "0a5896f2-c158-4c46-bf6c-16ac345cf4bd", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "VOLKMAN GARRET", - "timestamp": "2023-05-17" + "user": "SPENCER JAIDA", + "timestamp": "2017-12-15" + }, + { + "uuid": "0316127a-2911-4003-a83b-e2a7b1befdad", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "BAILEY ALEK", + "timestamp": "2016-07-03" + }, + { + "uuid": "57aad8a3-7295-4dd6-99e5-9d57326dd63d", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "HOMENICK-ROWE LAYLA", + "timestamp": "2020-10-05" } ], "associatedSites": [ { - "dateNoted": "2023-03-25", + "uuid": "a2d609de-ec6b-4955-8f42-4b71289d065b", + "dateNoted": "2014-02-06", "notes": "", - "parcelID": "16314", - "siteID": "17034", + "parcelID": "19239", + "siteID": "20687", "siteRegistry": true }, { - "dateNoted": "2015-01-25", + "uuid": "ad64259e-816a-4554-978b-25bffd157b56", + "dateNoted": "2017-05-04", + "notes": "", + "parcelID": "20085", + "siteID": "16267", + "siteRegistry": true + }, + { + "uuid": "db8d01bd-77d9-40a2-957d-42b2e4200f47", + "dateNoted": "2018-08-30", "notes": "", - "parcelID": "15616", - "siteID": "15786", + "parcelID": "15636", + "siteID": "16569", "siteRegistry": false } ] }, { - "uuid": "79e1c20d-dc23-4bd3-aa86-a01f634a9554", - "siteID": 16032, - "address": "658 Macejkovic Parkway", - "latitude": 51.591, - "longitude": -137.2346, - "lastUpdated": "2020-06-05", - "city": "North Zola", - "region": "Vancouver Island/Coast", - "victoriaFile": "26250-20/3071", + "uuid": "b7e4e6b5-c685-4c18-b03f-2ffc3f2ab8f0", + "siteID": 17834, + "address": "456 Rubye Course", + "latitude": 55.9646, + "longitude": -128.7834, + "lastUpdated": "2023-09-27", + "city": "Kiehnland", + "region": "Cariboo", + "victoriaFile": "26250-20/1488", "regionalFile": "N/A", "parcelIDs": [ - 8107222, - 5808500, - 6865174, - 4092989, - 400419 + 763238, + 3507469, + 5312474, + 4913527, + 5821667 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2021-08-14", - "completed": "2018-10-28", - "initiated": "2020-01-08", - "ministryContact": "CRUICKSHANK HOLLIS", + "uuid": "99a0d4e1-9dc3-4fff-87dc-7053c42d4a83", + "createdAt": "2015-11-23", + "completed": "2017-02-02", + "initiated": "2022-10-29", + "ministryContact": "VOLKMAN NELDA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -37875,27 +44263,14 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { + "uuid": "5ff0362e-e00d-4067-8d54-dabc9e07df8b", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", + "uuid": "74e5059a-f21c-4ecb-a323-acb95fd5c178", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true } @@ -37903,10 +44278,11 @@ "siteRegistry": false }, { - "createdAt": "2021-10-13", - "completed": "2022-06-11", - "initiated": "2023-03-18", - "ministryContact": "RUTHERFORD CAITLYN", + "uuid": "6e980d2e-2962-4e64-a943-99baea6957c3", + "createdAt": "2015-12-19", + "completed": "2016-04-15", + "initiated": "2016-01-22", + "ministryContact": "BRAUN DAN", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -37915,74 +44291,44 @@ ], "notationParticipants": [ { + "uuid": "f8412817-9319-4e0e-8760-fcdbf8b2e069", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "uuid": "9913890f-b712-4b36-bb5a-4ade5a62ca84", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": false }, { + "uuid": "22955b51-1da2-4c02-beef-2e4b3787e338", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true } ], "participants": [ { - "name": "AMET, DOLOR SIT", - "endDate": "2020-04-29", - "startDate": "2014-01-02", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": true - }, - { - "name": "IPSUM", - "endDate": "2021-03-27", - "startDate": "2019-10-01", + "uuid": "73ff9d77-7c86-4080-8a65-db1ff98e2146", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2016-02-10", + "startDate": "2014-12-26", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": true - }, - { - "name": "AMET, DOLOR SIT", - "endDate": "2016-10-21", - "startDate": "2021-05-09", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": false - }, - { - "name": "AMET, DOLOR SIT", - "endDate": "2018-03-20", - "startDate": "2015-12-28", - "notes": "", - "roles": [ - "ORGANIZATION" - ], "siteRegistry": false }, { - "name": "AMET, DOLOR SIT", - "endDate": "2020-02-04", - "startDate": "2022-04-11", + "uuid": "64381d58-8d35-4f70-ab06-a9f800fe0c53", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2019-12-21", + "startDate": "2021-06-25", "notes": "", "roles": [ "EMPLOYEE" @@ -37992,160 +44338,176 @@ ], "suspectLandUses": [ { + "uuid": "c141207b-382a-4098-b4e8-c9d72737928e", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-08-27 (described on Site Profile dated 2021-08-27)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "notes": "INSERTED FOR SITE PROFILE DATED 2019-07-12 (described on Site Profile dated 2019-07-12)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-04-04 (described on Site Profile dated 2018-04-04)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "uuid": "bea691f7-a607-46d4-a619-5df51d7cff7f", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2017-02-23 (described on Site Profile dated 2017-02-23)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], "parcelDescriptions": [ { + "uuid": "4bbea6e7-d4f3-4dca-8e2a-a20da9b135e5", "siteRegistry": false, - "dateNoted": "2016-05-12", - "parcelID": "18285", - "crownLandUsePIN": "17176", - "crownLandFileNumber": "20002", - "landDescription": "LOT 3 OF LOT 3 BLOCK 4 DISTRICT LOT 2 PLAN 4825" + "dateNoted": "2014-06-13", + "parcelID": "17002", + "crownLandUsePIN": "15610", + "crownLandFileNumber": "19281", + "landDescription": "LOT 4 OF LOT 5 BLOCK 3 DISTRICT LOT 5 PLAN 9056" }, { - "siteRegistry": false, - "dateNoted": "2018-02-14", - "parcelID": "15638", - "crownLandUsePIN": "20611", - "crownLandFileNumber": "17746", - "landDescription": "LOT 1 OF LOT 1 BLOCK 3 DISTRICT LOT 2 PLAN 6509" + "uuid": "f7b5aee8-1822-4bf0-b1dc-af279b4b0277", + "siteRegistry": true, + "dateNoted": "2022-09-04", + "parcelID": "20998", + "crownLandUsePIN": "17076", + "crownLandFileNumber": "16879", + "landDescription": "LOT 1 OF LOT 2 BLOCK 4 DISTRICT LOT 5 PLAN 6221" } ], "siteDisclosures": [ { + "uuid": "0c3f0d3b-7d9b-465b-b8dc-0599bc43ac2e", "siteRegistry": false, - "dateReceived": "2022-10-09", - "dateCompleted": "2016-08-10", - "dateEntered": "2022-04-12", - "dateRegistrar": "2021-11-07", - "dateLocalAuthorityReceived": "2023-06-18", - "summary": "Fuga vel nulla quo.\nQuas ex excepturi.", - "informationUsed": "Iure suscipit qui temporibus aliquid vitae laboriosam animi a aperiam.\nMolestiae reprehenderit hic provident provident.\nQuo dolore est ipsum occaecati quam iusto occaecati adipisci nesciunt.\nAliquid quidem consequatur ipsam distinctio.", - "pastOrPresentOrders": "Illum quibusdam fuga ratione sunt sunt possimus delectus sequi.\nEt maxime nulla.\nDolorum expedita nihil recusandae neque provident sit aspernatur.", + "dateReceived": "2019-02-15", + "dateCompleted": "2023-02-24", + "dateEntered": "2015-09-14", + "dateRegistrar": "2019-09-24", + "dateLocalAuthorityReceived": "2022-10-07", + "summary": "Temporibus itaque reprehenderit sit enim saepe quod minima totam quis.\nPerspiciatis debitis et repellat architecto voluptatibus voluptatem quisquam.", + "informationUsed": "Sed doloremque mollitia doloribus aperiam.\nCulpa aut dolorum.\nMolestias nobis reprehenderit repudiandae ducimus optio alias quis modi.\nPossimus nam dolor commodi quod ipsum ratione perspiciatis architecto.\nTotam delectus earum neque.", + "pastOrPresentOrders": "Quod amet explicabo.\nPorro asperiores at et.\nIusto recusandae fugit culpa quae laudantium quaerat quia perspiciatis.", "commercialAndIndustrialPurposes": [ { + "uuid": "6a04c86a-339d-4dde-8b89-be76ef6e460f", "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false - }, - { - "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false }, { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false - }, - { + "uuid": "a70d333e-1559-439c-aef1-ea392a7c83fe", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false + "siteRegistry": true } ] } ], "activityLog": [ { - "siteRegistry": true, + "uuid": "58ce2294-8b08-4d69-a2bf-3731ae3767a6", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "BLANDA-VANDERVORT DERECK", - "timestamp": "2015-10-04" + "user": "SCHUMM DREW", + "timestamp": "2020-11-07" }, { - "siteRegistry": true, + "uuid": "ef30bcf4-4964-4bcf-8af2-99c631f50a1a", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "WARD FREDERIQUE", - "timestamp": "2022-11-19" + "user": "PARISIAN TRISTIN", + "timestamp": "2017-09-22" }, { - "siteRegistry": true, + "uuid": "0007045f-c067-464a-af74-97ea7046d892", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "BERNIER AUGUSTA", - "timestamp": "2016-02-04" + "user": "MCCULLOUGH NYAH", + "timestamp": "2019-11-17" }, { - "siteRegistry": false, + "uuid": "42ab8cb0-a838-4c8b-aae4-5c7274d40f75", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "AUFDERHAR CAYLA", - "timestamp": "2022-11-28" + "user": "TURNER PATTIE", + "timestamp": "2017-11-09" }, { + "uuid": "08c174fc-57b1-494d-8fd9-887cb2e814ea", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "KEEBLER NATALIA", - "timestamp": "2016-12-14" + "user": "SCHUSTER DIANA", + "timestamp": "2017-07-13" }, { - "siteRegistry": true, + "uuid": "6b565d24-2660-47a6-a710-9d966c36e799", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "GLEICHNER-ROGAHN JAZMYNE", - "timestamp": "2020-01-14" + "user": "O'HARA CRYSTAL", + "timestamp": "2016-01-09" }, { + "uuid": "45849f0a-247f-4f16-a4b9-809da1930924", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "THIEL GEORGE", - "timestamp": "2015-10-09" + "user": "BEDNAR ALISON", + "timestamp": "2017-01-29" }, { + "uuid": "884f3fa0-68e9-45e7-82eb-1f549eb68476", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "PARKER CRISTOBAL", - "timestamp": "2023-01-19" + "user": "PAUCEK MARGIE", + "timestamp": "2019-03-03" }, { + "uuid": "967c205e-96c3-4efe-a1d1-ebb5889897da", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "TROMP CRISTAL", - "timestamp": "2017-10-23" + "user": "BERGSTROM KARA", + "timestamp": "2020-09-21" } ], "associatedSites": [ { - "dateNoted": "2019-07-30", + "uuid": "142ac9d3-be44-4ca5-817b-ff09a2b58d16", + "dateNoted": "2023-05-28", "notes": "", - "parcelID": "16934", - "siteID": "20992", + "parcelID": "16776", + "siteID": "19730", "siteRegistry": true + }, + { + "uuid": "0988e227-2850-416c-88be-0a09147ddd8b", + "dateNoted": "2016-09-15", + "notes": "", + "parcelID": "19129", + "siteID": "18934", + "siteRegistry": false } ] }, { - "uuid": "2a3db700-d8b1-49ee-b7bf-dc3975edc801", - "siteID": 19549, - "address": "393 Marge Club", - "latitude": 54.4607, - "longitude": -136.2912, - "lastUpdated": "2013-11-08", - "city": "New Sydniefort", + "uuid": "590003ce-87d2-45c3-85af-e028eeef1838", + "siteID": 19050, + "address": "455 Lucienne Canyon", + "latitude": 55.4766, + "longitude": -120.8242, + "lastUpdated": "2017-05-22", + "city": "Redmond", "region": "Thompson-Okanagan", - "victoriaFile": "26250-20/19015", + "victoriaFile": "26250-20/2651", "regionalFile": "N/A", "parcelIDs": [ - 9988573, - 5889307, - 9260630, - 7986023, - 6446088 + 6604101, + 4150190, + 9685811, + 6800004, + 5359879 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2022-02-12", - "completed": "2022-12-21", - "initiated": "2019-10-28", - "ministryContact": "BOYLE ARMANDO", + "uuid": "f54d8f59-886d-41f7-ac3f-b2f6f3494003", + "createdAt": "2020-01-21", + "completed": "2014-06-23", + "initiated": "2016-03-20", + "ministryContact": "RICE ALDA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -38154,21 +44516,19 @@ ], "notationParticipants": [ { + "uuid": "c48e0339-c4b9-4aae-86d0-c28ee913bcb1", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { + "uuid": "e1875ffb-c0cc-4c69-a9ca-c8a0ee60505a", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { + "uuid": "97c0097b-c88c-44ff-b844-6ac29fd4a0ab", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false @@ -38177,10 +44537,11 @@ "siteRegistry": false }, { - "createdAt": "2022-02-08", - "completed": "2022-04-23", - "initiated": "2023-01-15", - "ministryContact": "REMPEL ADOLF", + "uuid": "b99c75d0-9eae-4d5e-98d1-0d429158739c", + "createdAt": "2014-08-10", + "completed": "2023-04-13", + "initiated": "2021-05-23", + "ministryContact": "BLANDA ELDRIDGE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -38189,74 +44550,22 @@ ], "notationParticipants": [ { + "uuid": "d1ff90db-989a-473f-9db0-b515bc744f31", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false }, { + "uuid": "3f142c97-a5c3-4e89-9bc2-5b21b92ea56b", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true - } - ], - "siteRegistry": true - }, - { - "createdAt": "2021-05-29", - "completed": "2015-07-23", - "initiated": "2014-04-22", - "ministryContact": "RUNOLFSSON AMIYA", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - } - ], - "siteRegistry": true - }, - { - "createdAt": "2021-10-07", - "completed": "2019-11-28", - "initiated": "2018-01-11", - "ministryContact": "YOST KALEB", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "4c0d879d-a196-4863-b203-daf04b5efc21", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true } ], "siteRegistry": false @@ -38264,117 +44573,144 @@ ], "participants": [ { + "uuid": "22128a28-1a69-444f-9e0c-2adc09a0d5b5", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2016-10-16", + "startDate": "2020-10-07", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "uuid": "1bd493f1-327b-41cd-a9d2-0cc49a9ce7ec", "name": "IPSUM", - "endDate": "2022-08-10", - "startDate": "2021-09-20", + "endDate": "2018-11-15", + "startDate": "2019-07-04", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": false + "siteRegistry": true }, { + "uuid": "3447bc33-25da-44f3-ad4a-e15af25a2f3f", "name": "SHELL CANADA PRODUCTS", - "endDate": "2017-01-02", - "startDate": "2015-10-12", + "endDate": "2021-05-21", + "startDate": "2015-09-25", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": false }, { + "uuid": "480067f2-3f1f-4bb4-ba76-c58eae2c1dff", "name": "IPSUM", - "endDate": "2022-02-09", - "startDate": "2017-11-15", + "endDate": "2016-10-01", + "startDate": "2022-05-22", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": true - }, - { - "name": "AMET, DOLOR SIT", - "endDate": "2016-02-23", - "startDate": "2022-06-21", - "notes": "", - "roles": [ - "EMPLOYEE" - ], "siteRegistry": false } ], "suspectLandUses": [ { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-03-21 (described on Site Profile dated 2019-03-21)", + "uuid": "6491e6d8-f4de-4673-8359-ba5504abccef", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2017-11-21 (described on Site Profile dated 2017-11-21)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-10-26 (described on Site Profile dated 2022-10-26)", + "uuid": "9aad14c1-717d-4d1d-9717-fec54da2589b", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2021-11-16 (described on Site Profile dated 2021-11-16)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { + "uuid": "b76a13e5-a7c6-48da-9f1f-967d66086ba9", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-09-02 (described on Site Profile dated 2019-09-02)", + "notes": "INSERTED FOR SITE PROFILE DATED 2019-09-23 (described on Site Profile dated 2019-09-23)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { + "uuid": "84b19a1f-01df-4974-9e68-139d74299840", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2023-01-25 (described on Site Profile dated 2023-01-25)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "uuid": "60566565-cbda-4c91-bde1-391bb95fea84", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2020-03-28 (described on Site Profile dated 2020-03-28)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "notes": "INSERTED FOR SITE PROFILE DATED 2014-07-14 (described on Site Profile dated 2014-07-14)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], "parcelDescriptions": [ { + "uuid": "ea86fb0b-5c85-4738-98e5-354987b2da18", "siteRegistry": false, - "dateNoted": "2023-03-19", - "parcelID": "18758", - "crownLandUsePIN": "15531", - "crownLandFileNumber": "18885", - "landDescription": "LOT 1 OF LOT 3 BLOCK 5 DISTRICT LOT 1 PLAN 3082" + "dateNoted": "2019-08-29", + "parcelID": "19683", + "crownLandUsePIN": "17464", + "crownLandFileNumber": "18229", + "landDescription": "LOT 4 OF LOT 2 BLOCK 1 DISTRICT LOT 5 PLAN 3100" }, { - "siteRegistry": true, - "dateNoted": "2017-02-01", - "parcelID": "17091", - "crownLandUsePIN": "16203", - "crownLandFileNumber": "18789", - "landDescription": "LOT 3 OF LOT 4 BLOCK 4 DISTRICT LOT 2 PLAN 6471" + "uuid": "742b4448-122e-4219-b4ab-9fb62a87c1de", + "siteRegistry": false, + "dateNoted": "2016-12-12", + "parcelID": "17002", + "crownLandUsePIN": "20172", + "crownLandFileNumber": "18913", + "landDescription": "LOT 2 OF LOT 5 BLOCK 2 DISTRICT LOT 5 PLAN 9600" }, { - "siteRegistry": false, - "dateNoted": "2016-06-08", - "parcelID": "18610", - "crownLandUsePIN": "19941", - "crownLandFileNumber": "16932", - "landDescription": "LOT 2 OF LOT 1 BLOCK 3 DISTRICT LOT 5 PLAN 4709" + "uuid": "abf56f26-132a-490d-843d-9079f0e259d3", + "siteRegistry": true, + "dateNoted": "2018-08-14", + "parcelID": "17716", + "crownLandUsePIN": "16749", + "crownLandFileNumber": "20847", + "landDescription": "LOT 5 OF LOT 3 BLOCK 2 DISTRICT LOT 5 PLAN 7023" } ], "siteDisclosures": [ { + "uuid": "e21c04c1-db9e-404d-a008-e689cf8c61a1", "siteRegistry": true, - "dateReceived": "2019-04-24", - "dateCompleted": "2020-03-17", - "dateEntered": "2018-04-26", - "dateRegistrar": "2021-03-23", - "dateLocalAuthorityReceived": "2021-05-18", - "summary": "Iusto non ratione repudiandae voluptatem amet quibusdam.\nFugit voluptatem odio.\nIllum rem tenetur ad quasi.", - "informationUsed": "Quisquam harum corporis explicabo distinctio dolores vero.\nAssumenda et quidem sint fugit.\nUnde eveniet accusamus nam culpa.\nNam quis odit non dignissimos quasi.", - "pastOrPresentOrders": "Neque eveniet cupiditate consectetur minima voluptatum architecto at doloribus.\nDeserunt velit corrupti ea corporis nostrum fugiat.\nPerspiciatis harum maxime ea necessitatibus totam.", + "dateReceived": "2015-02-04", + "dateCompleted": "2018-07-31", + "dateEntered": "2015-06-24", + "dateRegistrar": "2015-01-21", + "dateLocalAuthorityReceived": "2020-07-19", + "summary": "Nostrum dicta quia harum consequuntur.\nConsectetur natus corrupti provident tempora vero delectus recusandae quibusdam.\nMinus mollitia adipisci numquam blanditiis veniam.", + "informationUsed": "Quia fugiat voluptas placeat tempore odit et sed sapiente similique.\nIste saepe dicta possimus consequuntur accusamus nemo illum debitis.\nEaque dolorum laudantium fugiat nesciunt eius dolorum.\nEarum reiciendis optio aliquid ex aspernatur ex quia dolore vitae.", + "pastOrPresentOrders": "Aut ipsam distinctio repellat ipsum fugit dolor.\nOptio asperiores recusandae quas suscipit nesciunt suscipit repellat.\nSint omnis incidunt corrupti sequi aspernatur explicabo iusto temporibus.", "commercialAndIndustrialPurposes": [ { + "uuid": "db553c06-1c13-432a-b7e8-ad93072894a9", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, { + "uuid": "8f6b111c-c752-4075-9313-5c4347e72541", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "uuid": "adaa5557-7a4b-4164-9e0e-e142fd6701a7", "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { + "uuid": "2c31d6c1-5753-4809-96b1-8ac4f7dab1a3", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false @@ -38382,126 +44718,134 @@ ] }, { - "siteRegistry": false, - "dateReceived": "2019-03-02", - "dateCompleted": "2023-04-26", - "dateEntered": "2017-03-30", - "dateRegistrar": "2015-04-21", - "dateLocalAuthorityReceived": "2014-06-23", - "summary": "Rerum modi dicta velit sunt.\nEsse eaque libero dolorum fuga.", - "informationUsed": "Officiis et sit corporis.\nEligendi mollitia magnam nisi suscipit id ullam magnam.\nQuam sequi natus eveniet est harum placeat inventore.\nExercitationem labore placeat dolores a mollitia.\nTempora beatae debitis suscipit.", - "pastOrPresentOrders": "Veritatis omnis ab.\nEnim qui libero.", + "uuid": "de78bf4a-ee26-4c0c-bf13-6b01e4e43dcc", + "siteRegistry": true, + "dateReceived": "2020-12-15", + "dateCompleted": "2019-04-22", + "dateEntered": "2014-10-30", + "dateRegistrar": "2017-12-03", + "dateLocalAuthorityReceived": "2018-09-21", + "summary": "Ipsa praesentium facere delectus itaque at itaque pariatur.", + "informationUsed": "Laudantium nam voluptatum soluta culpa modi architecto cupiditate molestiae.\nSed placeat dolorum quam sed dolorum tenetur vero sit voluptas.\nOdio unde sit.\nQuidem adipisci similique at corporis quibusdam a.", + "pastOrPresentOrders": "Provident nam est corrupti blanditiis officia iusto.", "commercialAndIndustrialPurposes": [ { + "uuid": "abf80d23-436a-4c9f-bbde-a807d0b60511", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true + "siteRegistry": false }, { - "scheduleReference": "F1*", + "uuid": "35e00ff2-38a5-4809-9631-8b503bc6f31c", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false + "siteRegistry": true }, { + "uuid": "a4fc0eea-84c6-4c2a-a951-ba3e07a2aad6", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true - }, - { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false } ] } ], "activityLog": [ { + "uuid": "12e0d274-c991-493a-97dd-35eebcc506b0", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "BAUCH DESHAUN", + "timestamp": "2022-07-25" + }, + { + "uuid": "14f31035-4582-4c6b-bb9e-435790eef095", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "JAKUBOWSKI WILLIAM", - "timestamp": "2020-05-18" + "user": "BODE MARIANNE", + "timestamp": "2014-05-15" }, { + "uuid": "cef181ce-c2d7-4514-b5e6-de74b537c356", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "CREMIN RICHIE", - "timestamp": "2017-10-07" + "user": "MILLER WILLOW", + "timestamp": "2017-06-05" }, { + "uuid": "3794784d-cc0b-4811-ab51-94688cea42f6", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "HAGENES EZEKIEL", - "timestamp": "2015-10-07" + "user": "HACKETT KENNITH", + "timestamp": "2015-06-17" }, { + "uuid": "652565ec-5f0b-41ca-8ceb-21de791e7619", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "HOWE ORLANDO", - "timestamp": "2014-12-07" + "user": "BREKKE-QUIGLEY BROOK", + "timestamp": "2020-08-14" }, { - "siteRegistry": false, + "uuid": "223f541b-b4a4-498f-8a7c-d3106b8bfd63", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "KLOCKO JAVONTE", - "timestamp": "2017-06-03" + "user": "BOGISICH DARRIN", + "timestamp": "2016-09-11" }, { + "uuid": "04bc9637-8ef4-4edb-a2d0-4ed94d0fe7a2", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "DURGAN JULIANA", - "timestamp": "2014-01-20" + "user": "JACOBI CHRISTELLE", + "timestamp": "2022-08-15" } ], "associatedSites": [ { - "dateNoted": "2017-09-26", - "notes": "", - "parcelID": "18793", - "siteID": "17812", - "siteRegistry": true - }, - { - "dateNoted": "2023-08-15", + "uuid": "3728dd59-ff10-4615-a7bf-c8a492fe595a", + "dateNoted": "2015-03-03", "notes": "", - "parcelID": "17319", - "siteID": "20583", + "parcelID": "15502", + "siteID": "19769", "siteRegistry": true }, { - "dateNoted": "2016-10-07", + "uuid": "371bfcdf-86fd-47f4-952e-89f36f54b703", + "dateNoted": "2022-03-20", "notes": "", - "parcelID": "15504", - "siteID": "16960", + "parcelID": "20472", + "siteID": "19893", "siteRegistry": false } ] }, { - "uuid": "e602cb1a-8f62-4005-84f0-80b315cd6ca9", - "siteID": 16960, - "address": "74996 King Cove", - "latitude": 52.8077, - "longitude": -121.8172, - "lastUpdated": "2019-06-11", - "city": "Gulgowskichester", - "region": "Kootenay", - "victoriaFile": "26250-20/16961", + "uuid": "dfe0e8fa-449b-421c-8b83-fbf572f0a46c", + "siteID": 19218, + "address": "59751 Ansel Plains", + "latitude": 55.108, + "longitude": -119.5739, + "lastUpdated": "2023-10-05", + "city": "Yorba Linda", + "region": " North Coast", + "victoriaFile": "26250-20/14760", "regionalFile": "N/A", "parcelIDs": [ - 5237006, - 7533719, - 5594778, - 3338663, - 523583 + 2618022, + 5792981, + 7799845, + 6399338, + 4527071 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2023-02-25", - "completed": "2020-04-10", - "initiated": "2017-09-21", - "ministryContact": "SPORER SHERMAN", + "uuid": "5665a19f-fe31-44ee-b301-bfc32e3f423e", + "createdAt": "2019-08-05", + "completed": "2019-01-17", + "initiated": "2016-12-29", + "ministryContact": "MAGGIO NATALIA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -38510,16 +44854,53 @@ ], "notationParticipants": [ { + "uuid": "39f88575-f1aa-48c3-880c-9e19dde5aa8b", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "uuid": "7d787554-cacd-4ae2-95cf-ae305f2f0bd0", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "uuid": "5cc9cb12-2dc5-4bbe-abb6-d3afe4cc829c", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": true }, { + "uuid": "bda67f5f-d89e-40a6-bc5f-ef86c8506d3b", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "uuid": "7b3cfc5a-3a1c-41ba-9c45-0fa7bcf6a0cd", + "createdAt": "2017-07-03", + "completed": "2015-02-22", + "initiated": "2019-01-21", + "ministryContact": "OBERBRUNNER BARBARA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "uuid": "3449dbea-e204-4b71-8aeb-a5f82a27cb56", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": true }, { + "uuid": "1dc2a071-28d4-457b-9558-daed07ca4fff", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true @@ -38528,10 +44909,11 @@ "siteRegistry": false }, { - "createdAt": "2017-01-20", - "completed": "2021-02-05", - "initiated": "2021-06-28", - "ministryContact": "MULLER TERESA", + "uuid": "1cee8416-c598-4774-a65d-2b8eb2afc766", + "createdAt": "2013-11-01", + "completed": "2014-07-16", + "initiated": "2023-05-19", + "ministryContact": "HOEGER JOLIE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -38540,140 +44922,242 @@ ], "notationParticipants": [ { + "uuid": "eb356412-8f05-487c-b2c9-b849f3eeb806", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { + "uuid": "542aa6fc-9d87-44c3-b8a1-f3cf353596ce", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "uuid": "e78aaa1e-a3fa-44fd-a77c-cc380f799ed7", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "uuid": "d4301005-a4f5-4f8d-bb7f-e50e5c86ed57", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": false }, { + "uuid": "f7f89a85-dd37-44fb-b2e5-e0299b00c1f5", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false - }, + } + ], + "siteRegistry": true + }, + { + "uuid": "210dd779-2c5b-496a-a064-369370862b8a", + "createdAt": "2020-08-27", + "completed": "2018-06-18", + "initiated": "2023-08-24", + "ministryContact": "AUER STEPHEN", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ { + "uuid": "5a47adaa-e9cf-4822-b362-8966ee51bef8", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "uuid": "8dc12420-192e-4c9b-999a-70c06a064c0c", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": true + }, + { + "uuid": "dbb931fa-2068-4542-a088-7debc9ce5ee0", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false } ], "participants": [ { + "uuid": "20b69e30-3a7a-4c80-8b90-b7177def4c28", "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2018-05-21", - "startDate": "2020-06-02", + "endDate": "2019-05-06", + "startDate": "2018-10-12", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": false }, { + "uuid": "308904ac-90d7-438f-be5d-dd1f2052b9f3", "name": "SHELL CANADA PRODUCTS", - "endDate": "2016-12-05", - "startDate": "2017-08-05", + "endDate": "2016-11-05", + "startDate": "2015-01-17", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "uuid": "891a37a6-108b-4fd3-b377-c0ce6535df2f", + "name": "IPSUM", + "endDate": "2020-04-08", + "startDate": "2023-07-29", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "uuid": "8136a70b-5add-423f-8c06-9331b87391b4", + "name": "IPSUM", + "endDate": "2022-01-12", + "startDate": "2022-10-12", + "notes": "", + "roles": [ + "ORGANIZATION" ], "siteRegistry": false } ], "suspectLandUses": [ { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-10-30 (described on Site Profile dated 2016-10-30)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" - }, - { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-05-23 (described on Site Profile dated 2022-05-23)", + "uuid": "ea554981-9ff6-431e-baa3-1b06459fa3a4", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2016-11-01 (described on Site Profile dated 2016-11-01)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-02-23 (described on Site Profile dated 2015-02-23)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "uuid": "e0462f43-0c3a-4f06-8a61-e64b5933a38c", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2014-11-22 (described on Site Profile dated 2014-11-22)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-02-05 (described on Site Profile dated 2018-02-05)", + "uuid": "7841ca2a-e2c8-4c9e-8e09-040dd4b2c273", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2019-04-06 (described on Site Profile dated 2019-04-06)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], "parcelDescriptions": [ { - "siteRegistry": false, - "dateNoted": "2017-07-14", - "parcelID": "17217", - "crownLandUsePIN": "17566", - "crownLandFileNumber": "17882", - "landDescription": "LOT 1 OF LOT 2 BLOCK 2 DISTRICT LOT 4 PLAN 6920" + "uuid": "d717bcc8-83d9-4e26-a033-dc97586c9473", + "siteRegistry": true, + "dateNoted": "2013-12-27", + "parcelID": "15837", + "crownLandUsePIN": "19276", + "crownLandFileNumber": "16529", + "landDescription": "LOT 1 OF LOT 5 BLOCK 2 DISTRICT LOT 5 PLAN 8552" }, { + "uuid": "27f3accf-82b9-4d8c-af7d-bdc69f9d2b2d", "siteRegistry": false, - "dateNoted": "2017-04-25", - "parcelID": "16436", - "crownLandUsePIN": "17545", - "crownLandFileNumber": "17943", - "landDescription": "LOT 4 OF LOT 1 BLOCK 5 DISTRICT LOT 5 PLAN 8036" + "dateNoted": "2018-12-05", + "parcelID": "18031", + "crownLandUsePIN": "18207", + "crownLandFileNumber": "16033", + "landDescription": "LOT 3 OF LOT 4 BLOCK 2 DISTRICT LOT 5 PLAN 3380" }, { + "uuid": "4e7d901a-98b7-4da4-aedc-13abc824d75e", "siteRegistry": true, - "dateNoted": "2022-08-06", - "parcelID": "15288", - "crownLandUsePIN": "17051", - "crownLandFileNumber": "18032", - "landDescription": "LOT 4 OF LOT 3 BLOCK 5 DISTRICT LOT 5 PLAN 8533" + "dateNoted": "2020-08-03", + "parcelID": "15446", + "crownLandUsePIN": "18787", + "crownLandFileNumber": "19024", + "landDescription": "LOT 3 OF LOT 5 BLOCK 4 DISTRICT LOT 5 PLAN 3910" }, { - "siteRegistry": false, - "dateNoted": "2016-03-14", - "parcelID": "18394", - "crownLandUsePIN": "16168", - "crownLandFileNumber": "19565", - "landDescription": "LOT 4 OF LOT 1 BLOCK 4 DISTRICT LOT 2 PLAN 5095" + "uuid": "6126b3dd-66c3-42e5-8751-0e2470a9622b", + "siteRegistry": true, + "dateNoted": "2023-06-19", + "parcelID": "17425", + "crownLandUsePIN": "20227", + "crownLandFileNumber": "16758", + "landDescription": "LOT 1 OF LOT 5 BLOCK 4 DISTRICT LOT 4 PLAN 7202" } ], "siteDisclosures": [ { + "uuid": "fb4acd04-808f-4b11-8d98-08eb96c57584", "siteRegistry": true, - "dateReceived": "2021-12-30", - "dateCompleted": "2022-09-26", - "dateEntered": "2015-06-17", - "dateRegistrar": "2017-07-15", - "dateLocalAuthorityReceived": "2015-04-19", - "summary": "Natus eligendi iusto blanditiis quisquam reprehenderit unde.", - "informationUsed": "Magnam eos voluptas aut harum magni quia sit nihil aliquid.\nEos dolor harum.\nRepellendus dignissimos recusandae veritatis magnam.\nQuibusdam debitis repudiandae vero cupiditate nam iusto aliquam eveniet sit.\nIpsum accusantium eius asperiores.", - "pastOrPresentOrders": "Reiciendis dolorum aspernatur beatae quam possimus iure sunt.", + "dateReceived": "2023-07-28", + "dateCompleted": "2016-09-09", + "dateEntered": "2021-08-10", + "dateRegistrar": "2023-04-15", + "dateLocalAuthorityReceived": "2021-02-27", + "summary": "Qui molestias ipsa laborum ducimus recusandae.\nOdio porro nesciunt explicabo aut quasi.", + "informationUsed": "Officiis ducimus delectus hic ad quibusdam voluptas cupiditate.\nIusto voluptatem aut sed sit corporis nam assumenda pariatur voluptatem.\nAlias sapiente itaque corrupti architecto mollitia ullam deserunt ipsum eum.\nExcepturi soluta ipsam quam quae sequi molestiae ratione aut optio.\nConsectetur illo veniam dignissimos itaque delectus quis fuga.", + "pastOrPresentOrders": "Nostrum sit repudiandae reprehenderit ratione.\nInventore sint natus.", "commercialAndIndustrialPurposes": [ { + "uuid": "6f9c0c15-97ea-40d3-9475-5c414c442796", "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false }, { + "uuid": "357a7d3d-18c4-4f80-b560-66df81e5e986", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "uuid": "0121e100-58de-449e-8ec4-161f35ea2981", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "uuid": "4bc5371c-9f11-4937-9a3c-7c472c2840cd", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + } + ] + }, + { + "uuid": "2e23810c-d90a-4561-a4a1-16923c4dbae0", + "siteRegistry": false, + "dateReceived": "2020-11-28", + "dateCompleted": "2019-09-01", + "dateEntered": "2014-06-09", + "dateRegistrar": "2021-05-23", + "dateLocalAuthorityReceived": "2022-07-17", + "summary": "Minus et quibusdam neque id dolores ut officia.", + "informationUsed": "Assumenda corporis earum illo repudiandae.\nCum expedita voluptates excepturi perspiciatis officia.\nVoluptate sapiente labore aliquid eius pariatur eius sint.", + "pastOrPresentOrders": "Mollitia laboriosam quibusdam accusantium.\nUllam natus nesciunt aperiam voluptatum eaque libero eveniet.\nCorrupti eum dolorem dolore aperiam.", + "commercialAndIndustrialPurposes": [ + { + "uuid": "ba0a8d75-23c3-4ad7-b275-b46cc5ce800d", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, { + "uuid": "1539c50a-32dd-494d-b375-1af5226201b6", "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, { + "uuid": "2c6a166e-1cb2-4774-8ff8-b6e177c1f041", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false @@ -38683,95 +45167,122 @@ ], "activityLog": [ { + "uuid": "397a18da-f969-4972-8ec5-23fa7cf7cd8c", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "HANE REESE", - "timestamp": "2021-07-29" + "user": "MEDHURST VLADIMIR", + "timestamp": "2022-05-21" }, { + "uuid": "201b8d80-793c-44f5-b1b5-0cdb9b29d4a8", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "CHAMPLIN DAWN", - "timestamp": "2023-07-06" + "user": "LEGROS SYLVIA", + "timestamp": "2021-10-26" }, { - "siteRegistry": false, + "uuid": "6fd4134c-2be3-41fb-9b10-fce6d82f59c0", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "MAYER JEREMY", - "timestamp": "2020-09-08" + "user": "NADER JOSHUA", + "timestamp": "2015-05-18" }, { + "uuid": "6aefe06a-7edf-4eaf-be31-b6f583fa055f", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "ABBOTT GENEVIEVE", - "timestamp": "2017-01-07" + "user": "REINGER PATRICK", + "timestamp": "2015-10-09" }, { + "uuid": "70a19aad-84a0-4fe4-85a8-7f9caa7d4c2a", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "PROSACCO ETHAN", - "timestamp": "2021-04-23" + "user": "TOY JAVONTE", + "timestamp": "2016-04-18" }, { + "uuid": "397a3211-0f40-4110-82d3-79e621e4621d", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "MACGYVER-NIKOLAUS LETITIA", - "timestamp": "2020-05-02" + "user": "GUTMANN KAREEM", + "timestamp": "2020-05-03" }, { + "uuid": "1b382698-849d-44c2-819b-77b5b3547dd2", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "HUELS DELPHIA", - "timestamp": "2020-10-13" + "user": "MAYER KENYA", + "timestamp": "2023-07-02" }, { - "siteRegistry": true, + "uuid": "e2815151-123f-417e-9bf0-08da5c9ac30e", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "STARK NATASHA", - "timestamp": "2021-11-30" + "user": "LAKIN JAMARCUS", + "timestamp": "2018-03-18" }, { - "siteRegistry": true, + "uuid": "6b5096d2-3636-4c4b-9355-4352a7d02fd5", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "PAUCEK REY", - "timestamp": "2017-05-21" + "user": "BROWN HOYT", + "timestamp": "2015-01-14" } ], "associatedSites": [ { - "dateNoted": "2015-07-20", + "uuid": "68354cab-a47e-4acb-a0f6-5e0bb0c03bd4", + "dateNoted": "2019-08-04", + "notes": "", + "parcelID": "19359", + "siteID": "20059", + "siteRegistry": false + }, + { + "uuid": "fd85c589-9776-4a97-be09-3d8018d8eb98", + "dateNoted": "2020-12-15", + "notes": "", + "parcelID": "20941", + "siteID": "18183", + "siteRegistry": true + }, + { + "uuid": "d99ac1b0-06ec-49b1-8c77-f67f3a5f42dc", + "dateNoted": "2018-12-19", "notes": "", - "parcelID": "17645", - "siteID": "20970", + "parcelID": "17102", + "siteID": "20059", "siteRegistry": false } ] }, { - "uuid": "3b4478ca-b4ad-4200-8a46-9abfe5d8cd17", - "siteID": 18160, - "address": "1761 Mante Glen", - "latitude": 58.1188, - "longitude": -121.0251, - "lastUpdated": "2018-08-05", - "city": "Waterbury", - "region": "Kootenay", - "victoriaFile": "26250-20/17767", + "uuid": "4c8f72f1-c28f-48ae-a57d-7b61200b2b3d", + "siteID": 16186, + "address": "16958 Mante Tunnel", + "latitude": 48.3209, + "longitude": -125.8071, + "lastUpdated": "2018-05-27", + "city": "Florianmouth", + "region": " North Coast", + "victoriaFile": "26250-20/3593", "regionalFile": "N/A", "parcelIDs": [ - 3518383, - 3656695, - 1482027, - 1210870, - 859679 + 1891256, + 9723101, + 2344993, + 1993849, + 4341595 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2020-05-31", - "completed": "2017-03-30", - "initiated": "2021-10-20", - "ministryContact": "CONNELLY TOMAS", + "uuid": "ff5d9baa-9d08-46a1-ba81-960c2f13b1f3", + "createdAt": "2019-12-04", + "completed": "2021-02-06", + "initiated": "2023-05-20", + "ministryContact": "JASKOLSKI ARTURO", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -38780,23 +45291,26 @@ ], "notationParticipants": [ { + "uuid": "1b4ba3d3-bd00-4f7d-9b65-64823f2f4144", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false + "uuid": "6d528ea2-3860-4733-81e2-3ce0d5fe8679", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2014-09-13", - "completed": "2020-11-25", - "initiated": "2020-08-27", - "ministryContact": "WITTING HAYLEY", + "uuid": "39341ab8-f592-4128-bd60-583b9f70a142", + "createdAt": "2018-06-07", + "completed": "2021-02-08", + "initiated": "2020-06-12", + "ministryContact": "JOHNSON STEVE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -38805,320 +45319,349 @@ ], "notationParticipants": [ { + "uuid": "ad6ac084-dfc7-4f15-82da-b59e9be169cd", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false + "role": "SUBMITTED BY", + "siteRegistry": true }, { + "uuid": "d7da425a-daa8-4317-aeee-a556eb41d2ac", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false - } - ], - "siteRegistry": true - }, - { - "createdAt": "2014-06-02", - "completed": "2014-12-11", - "initiated": "2019-03-21", - "ministryContact": "HAAG PATTIE", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true }, { + "uuid": "7693fb86-99c1-445e-8e99-96bf4b3f4111", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true + "role": "SUBMITTED BY", + "siteRegistry": false }, { + "uuid": "dc0eda3b-5b67-4a67-8c75-0d938ee339b9", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - } - ], - "siteRegistry": true - }, - { - "createdAt": "2016-03-25", - "completed": "2019-11-18", - "initiated": "2020-10-12", - "ministryContact": "LEMKE CIERRA", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { + "uuid": "d5ae93b0-934f-4244-9c85-5b8e9937567c", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true } ], "participants": [ { + "uuid": "2c2be844-19de-4570-8af9-62fcbed24739", "name": "AMET, DOLOR SIT", - "endDate": "2017-10-30", - "startDate": "2023-09-04", + "endDate": "2022-09-29", + "startDate": "2014-06-14", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": true }, { - "name": "IPSUM", - "endDate": "2017-02-16", - "startDate": "2014-07-26", + "uuid": "185d2ce0-fb12-4d1a-9147-b44f0a1e6ae6", + "name": "AMET, DOLOR SIT", + "endDate": "2017-08-31", + "startDate": "2022-08-27", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": true }, { - "name": "IPSUM", - "endDate": "2020-04-20", - "startDate": "2016-07-21", + "uuid": "0ff19e4d-6320-4b09-8aae-e3578467ba0f", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2015-10-19", + "startDate": "2014-07-30", "notes": "", "roles": [ "ORGANIZATION" ], + "siteRegistry": false + }, + { + "uuid": "61ff5828-67f1-4ed1-b1f0-d6fc79144007", + "name": "AMET, DOLOR SIT", + "endDate": "2017-07-03", + "startDate": "2019-01-05", + "notes": "", + "roles": [ + "EMPLOYEE" + ], "siteRegistry": true } ], "suspectLandUses": [ { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-03-16 (described on Site Profile dated 2015-03-16)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" - }, - { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-10-11 (described on Site Profile dated 2015-10-11)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" - }, - { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2023-07-15 (described on Site Profile dated 2023-07-15)", + "uuid": "cf496826-639c-44f5-9bd5-7e48a2a58720", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2017-04-25 (described on Site Profile dated 2017-04-25)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { + "uuid": "09a14826-6299-49c9-8db2-8b5c079b8e6e", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-08-15 (described on Site Profile dated 2021-08-15)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "notes": "INSERTED FOR SITE PROFILE DATED 2022-02-04 (described on Site Profile dated 2022-02-04)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], "parcelDescriptions": [ { + "uuid": "feb07064-53d2-43a6-9892-2be1a68fbd91", "siteRegistry": false, - "dateNoted": "2022-03-19", - "parcelID": "15467", - "crownLandUsePIN": "16976", - "crownLandFileNumber": "16238", - "landDescription": "LOT 3 OF LOT 5 BLOCK 2 DISTRICT LOT 4 PLAN 6505" + "dateNoted": "2019-09-13", + "parcelID": "15204", + "crownLandUsePIN": "18545", + "crownLandFileNumber": "15329", + "landDescription": "LOT 2 OF LOT 1 BLOCK 1 DISTRICT LOT 4 PLAN 4316" }, { + "uuid": "59b8881e-51e2-48a8-8ce6-d4cb815a0e7d", "siteRegistry": true, - "dateNoted": "2021-07-11", - "parcelID": "17748", - "crownLandUsePIN": "15920", - "crownLandFileNumber": "19710", - "landDescription": "LOT 5 OF LOT 3 BLOCK 4 DISTRICT LOT 2 PLAN 4157" + "dateNoted": "2018-09-03", + "parcelID": "16145", + "crownLandUsePIN": "18688", + "crownLandFileNumber": "18268", + "landDescription": "LOT 5 OF LOT 5 BLOCK 4 DISTRICT LOT 4 PLAN 5387" }, { + "uuid": "fa1a962e-10bc-461e-946e-d803c54e9400", "siteRegistry": true, - "dateNoted": "2017-02-07", - "parcelID": "19589", - "crownLandUsePIN": "15544", - "crownLandFileNumber": "16092", - "landDescription": "LOT 3 OF LOT 1 BLOCK 3 DISTRICT LOT 1 PLAN 8601" + "dateNoted": "2016-02-26", + "parcelID": "17039", + "crownLandUsePIN": "20113", + "crownLandFileNumber": "15530", + "landDescription": "LOT 5 OF LOT 1 BLOCK 4 DISTRICT LOT 2 PLAN 9711" + }, + { + "uuid": "fb9bf95f-29d1-4674-862d-9af0683c0856", + "siteRegistry": true, + "dateNoted": "2017-11-07", + "parcelID": "18219", + "crownLandUsePIN": "17576", + "crownLandFileNumber": "18304", + "landDescription": "LOT 4 OF LOT 1 BLOCK 5 DISTRICT LOT 3 PLAN 8954" + }, + { + "uuid": "2517f105-1e08-408a-98e0-b5f4d3d1b33d", + "siteRegistry": true, + "dateNoted": "2018-03-08", + "parcelID": "20365", + "crownLandUsePIN": "17246", + "crownLandFileNumber": "20483", + "landDescription": "LOT 2 OF LOT 2 BLOCK 5 DISTRICT LOT 2 PLAN 5097" } ], "siteDisclosures": [ { + "uuid": "7db7e484-8a39-412b-a432-6858e191f738", "siteRegistry": true, - "dateReceived": "2014-02-11", - "dateCompleted": "2016-03-04", - "dateEntered": "2015-02-07", - "dateRegistrar": "2013-11-11", - "dateLocalAuthorityReceived": "2023-05-20", - "summary": "Unde ipsa suscipit perspiciatis.\nFuga quam asperiores in quae quod.", - "informationUsed": "Non dolor rerum distinctio voluptas est rem magni.\nAperiam atque recusandae consectetur.\nAliquam rem consequuntur laboriosam omnis.", - "pastOrPresentOrders": "Aspernatur id cum exercitationem in cum explicabo.\nAut nisi quae.", + "dateReceived": "2019-12-12", + "dateCompleted": "2014-07-21", + "dateEntered": "2021-03-10", + "dateRegistrar": "2019-10-16", + "dateLocalAuthorityReceived": "2017-05-01", + "summary": "Ea expedita nemo.", + "informationUsed": "Qui placeat repellendus voluptate alias dolorum repellat error velit vero.\nPorro libero reprehenderit aut saepe rerum distinctio.\nQuos ipsam tempora inventore rerum.\nPossimus earum deserunt magnam repellat.", + "pastOrPresentOrders": "Sint error facere totam.\nNihil eaque provident recusandae deleniti quibusdam placeat molestias perspiciatis.", "commercialAndIndustrialPurposes": [ { + "uuid": "b184c9c5-315a-4df5-9862-e750dc3d1b19", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, { + "uuid": "130be439-41df-4224-aceb-b842364f386c", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "uuid": "d919d641-bcb3-4ef9-8f6c-2d557a319852", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false + }, + { + "uuid": "f25e3f8a-2571-4b91-8335-a7757ac7ddde", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true } ] }, { - "siteRegistry": true, - "dateReceived": "2016-01-27", - "dateCompleted": "2019-06-06", - "dateEntered": "2016-03-25", - "dateRegistrar": "2019-04-21", - "dateLocalAuthorityReceived": "2022-11-27", - "summary": "Amet perferendis dignissimos repudiandae reiciendis.\nSoluta doloremque numquam unde nesciunt.", - "informationUsed": "Eveniet tempore alias magni non explicabo quae deserunt.\nVoluptates itaque quia cupiditate autem repellendus architecto amet.\nQuaerat ullam quaerat ex quidem voluptas nostrum exercitationem.\nAccusamus distinctio minus rerum quas est iste eum aspernatur iusto.", - "pastOrPresentOrders": "Impedit voluptates ipsam at cumque.\nEveniet pariatur aliquid voluptas quam excepturi inventore illo nostrum.\nIpsam dolorum iste praesentium hic corporis.", + "uuid": "a3d02b44-064e-4b6b-8798-109cd74bc287", + "siteRegistry": false, + "dateReceived": "2020-09-15", + "dateCompleted": "2023-07-31", + "dateEntered": "2016-07-13", + "dateRegistrar": "2016-10-17", + "dateLocalAuthorityReceived": "2019-05-27", + "summary": "Expedita magnam repellat error iure.", + "informationUsed": "Sequi voluptatibus veritatis ipsum totam adipisci.\nNam numquam mollitia recusandae enim assumenda omnis impedit nisi odio.\nAb debitis ducimus assumenda architecto asperiores.", + "pastOrPresentOrders": "Facere dignissimos laudantium.\nNumquam quasi recusandae quibusdam delectus est facilis totam.", "commercialAndIndustrialPurposes": [ { + "uuid": "8397027a-eef9-4d6a-94f4-ce11350c7ef0", "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true }, { - "scheduleReference": "F1*", + "uuid": "a9c07ac7-4570-4cfd-84a3-1911ee0aa9cf", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false + "siteRegistry": true }, { + "uuid": "b199a5c3-6c91-4596-b9c3-d28d6ff63eb1", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { + "uuid": "2655aa14-3cb0-46ea-b15d-22d6770599a0", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true + "siteRegistry": false } ] } ], "activityLog": [ { + "uuid": "e5e3fd53-70f3-446c-8e14-e8af498b7c92", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "KUPHAL MARGARETT", - "timestamp": "2023-04-16" + "user": "ZIEME MILES", + "timestamp": "2019-12-01" }, { - "siteRegistry": false, + "uuid": "62817fda-f5f7-4fdc-ba72-af6498375a8e", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "CORWIN ROEL", - "timestamp": "2022-06-13" + "user": "KUHIC EVELINE", + "timestamp": "2023-03-28" }, { + "uuid": "26ff091b-641e-4f7d-8376-96e11869b95c", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "KLOCKO LENORE", - "timestamp": "2014-01-04" + "user": "KEMMER ALIYAH", + "timestamp": "2021-09-13" }, { - "siteRegistry": false, + "uuid": "18a167a5-b6b3-4218-966c-3ff5e52b0927", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "SPINKA MARISA", - "timestamp": "2015-08-22" + "user": "REILLY DANA", + "timestamp": "2013-12-22" }, { + "uuid": "cad18969-da61-422d-8011-3de42d8ad8b6", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "TURNER MAURINE", - "timestamp": "2020-03-02" + "user": "ABERNATHY MYRTIS", + "timestamp": "2020-07-03" }, { + "uuid": "e1139830-ba22-4d13-b2ad-deb965cb9e73", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "MANN JOANA", - "timestamp": "2021-08-28" + "user": "WILLMS JESSE", + "timestamp": "2015-05-16" + }, + { + "uuid": "7f84a626-719c-44a6-8c3f-9cb1620f5683", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "FLATLEY BRIELLE", + "timestamp": "2023-08-15" }, { + "uuid": "967f6e22-b001-4597-a094-9b64909cc0f5", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "O'HARA URBAN", - "timestamp": "2016-01-06" + "user": "DECKOW FOREST", + "timestamp": "2017-09-16" }, { + "uuid": "9d27f561-8a69-4f22-92df-491bedb33cd1", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "BODE MARTA", - "timestamp": "2017-06-02" + "user": "STREICH BRYON", + "timestamp": "2015-04-07" }, { + "uuid": "7cbb411a-9175-4f48-930f-fbc4e5b0e090", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "SKILES DELLA", - "timestamp": "2023-09-25" + "user": "ULLRICH DEMARCUS", + "timestamp": "2016-12-01" } ], "associatedSites": [ { - "dateNoted": "2021-11-16", + "uuid": "606e723c-6df6-42c4-a6b7-b30702cc9e47", + "dateNoted": "2020-06-02", "notes": "", - "parcelID": "16672", - "siteID": "18478", - "siteRegistry": true + "parcelID": "16126", + "siteID": "16071", + "siteRegistry": false }, { - "dateNoted": "2019-01-11", + "uuid": "5cd4099e-4a89-401c-bc51-02c409519bcb", + "dateNoted": "2014-08-08", "notes": "", - "parcelID": "20134", - "siteID": "16778", - "siteRegistry": true + "parcelID": "20614", + "siteID": "16154", + "siteRegistry": false + }, + { + "uuid": "d16baf63-4d16-42bb-b086-437f8afa1494", + "dateNoted": "2014-04-12", + "notes": "", + "parcelID": "16905", + "siteID": "17371", + "siteRegistry": false } ] }, { - "uuid": "467b6c92-7e7e-4ca3-b4d4-7b9f91b52384", - "siteID": 15875, - "address": "6679 Hills Trace", - "latitude": 53.0813, - "longitude": -136.5193, - "lastUpdated": "2023-05-08", - "city": "Brendanfort", - "region": "Mainland/Southwest", - "victoriaFile": "26250-20/15854", + "uuid": "622f848f-017e-49d1-9fc7-712f7a367caa", + "siteID": 20607, + "address": "552 Cassin Heights", + "latitude": 51.6901, + "longitude": -128.7784, + "lastUpdated": "2016-11-27", + "city": "Arvada", + "region": "Cariboo", + "victoriaFile": "26250-20/13628", "regionalFile": "N/A", "parcelIDs": [ - 5543300, - 100778, - 3163055, - 550848, - 9809135 + 311745, + 1174191, + 3443807, + 9596125, + 9363176 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2014-09-28", - "completed": "2020-06-03", - "initiated": "2015-11-06", - "ministryContact": "MACGYVER TYREL", + "uuid": "20017b23-106c-44ba-b4ba-78ba53e6b419", + "createdAt": "2016-09-10", + "completed": "2018-07-04", + "initiated": "2020-05-17", + "ministryContact": "OKUNEVA JUSTUS", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -39127,51 +45670,31 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { + "uuid": "0408b79d-2015-4cd1-a357-967b6aaf0d02", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", + "uuid": "3cd62391-fc71-4c5b-af42-024cf2af2ac2", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { + "uuid": "03546563-5aaa-4ba9-bfcc-5416bb4204a3", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - } - ], - "siteRegistry": true - }, - { - "createdAt": "2013-12-03", - "completed": "2022-02-20", - "initiated": "2021-07-23", - "ministryContact": "CONNELLY LORENA", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", + "uuid": "9342ab76-d8a6-4e27-8815-42b2e56e00da", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { + "uuid": "1f04a6fa-e626-4bca-8b7a-e429e8c03bc5", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true @@ -39180,10 +45703,11 @@ "siteRegistry": true }, { - "createdAt": "2017-02-05", - "completed": "2017-02-23", - "initiated": "2018-12-08", - "ministryContact": "VOLKMAN TINA", + "uuid": "a234b011-8754-4050-9ff4-03e5851b368e", + "createdAt": "2015-07-15", + "completed": "2017-07-05", + "initiated": "2014-08-07", + "ministryContact": "DICKI KAYLEY", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -39192,29 +45716,27 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { + "uuid": "d9b231de-01e8-4ac4-a709-5251170cc821", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false + "role": "REQUESTED BY", + "siteRegistry": true }, { + "uuid": "4015d513-c8da-4eba-803f-4d10c93760be", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false } ], "participants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2017-01-30", - "startDate": "2019-05-01", + "uuid": "e481b797-266d-46d7-a7e8-a0b5583ec624", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2016-05-24", + "startDate": "2014-05-25", "notes": "", "roles": [ "EMPLOYEE" @@ -39222,9 +45744,10 @@ "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2020-05-04", - "startDate": "2016-09-26", + "uuid": "e6178e52-8713-4e9c-b955-80e2e8f059a9", + "name": "IPSUM", + "endDate": "2015-08-10", + "startDate": "2017-08-18", "notes": "", "roles": [ "EMPLOYEE" @@ -39232,9 +45755,10 @@ "siteRegistry": true }, { - "name": "AMET, DOLOR SIT", - "endDate": "2016-12-21", - "startDate": "2023-06-22", + "uuid": "7b4f7ceb-a8cb-42bc-a740-b975e5b7a111", + "name": "IPSUM", + "endDate": "2017-07-11", + "startDate": "2016-06-23", "notes": "", "roles": [ "EMPLOYEE" @@ -39242,123 +45766,133 @@ "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2015-06-18", - "startDate": "2018-04-26", + "uuid": "7c3589ef-7901-41cf-ac10-720d98e75c2e", + "name": "IPSUM", + "endDate": "2019-06-14", + "startDate": "2022-07-19", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": false }, { + "uuid": "7fccb9ae-384b-4d5e-9177-1988d7892cb8", "name": "AMET, DOLOR SIT", - "endDate": "2020-12-06", - "startDate": "2018-09-05", + "endDate": "2015-01-15", + "startDate": "2022-06-23", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true } ], "suspectLandUses": [ { + "uuid": "d0ff3c0d-7a5f-4f6c-8e2c-2f2dfbde0fbd", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-02-26 (described on Site Profile dated 2021-02-26)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" - }, - { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-11-06 (described on Site Profile dated 2019-11-06)", + "notes": "INSERTED FOR SITE PROFILE DATED 2019-10-09 (described on Site Profile dated 2019-10-09)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { + "uuid": "3fedaa11-2566-4fe9-bbab-41f0a0e71e6f", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-06-02 (described on Site Profile dated 2014-06-02)", + "notes": "INSERTED FOR SITE PROFILE DATED 2021-08-04 (described on Site Profile dated 2021-08-04)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], "parcelDescriptions": [ { + "uuid": "4209c623-6106-45a4-9e68-e0a792208deb", "siteRegistry": true, - "dateNoted": "2018-03-21", - "parcelID": "17126", - "crownLandUsePIN": "17484", - "crownLandFileNumber": "19745", - "landDescription": "LOT 4 OF LOT 4 BLOCK 2 DISTRICT LOT 3 PLAN 5544" - }, - { - "siteRegistry": true, - "dateNoted": "2023-06-27", - "parcelID": "20200", - "crownLandUsePIN": "19745", - "crownLandFileNumber": "19259", - "landDescription": "LOT 4 OF LOT 1 BLOCK 3 DISTRICT LOT 1 PLAN 6869" - }, - { - "siteRegistry": false, - "dateNoted": "2020-09-02", - "parcelID": "17550", - "crownLandUsePIN": "18491", - "crownLandFileNumber": "17331", - "landDescription": "LOT 5 OF LOT 2 BLOCK 5 DISTRICT LOT 2 PLAN 5068" + "dateNoted": "2023-06-29", + "parcelID": "17756", + "crownLandUsePIN": "17672", + "crownLandFileNumber": "17875", + "landDescription": "LOT 1 OF LOT 4 BLOCK 2 DISTRICT LOT 2 PLAN 7504" }, { + "uuid": "343caa01-f6f2-40ec-8860-6a9e10724d21", "siteRegistry": false, - "dateNoted": "2017-03-27", - "parcelID": "16887", - "crownLandUsePIN": "20878", - "crownLandFileNumber": "17292", - "landDescription": "LOT 1 OF LOT 1 BLOCK 1 DISTRICT LOT 1 PLAN 9452" + "dateNoted": "2016-09-21", + "parcelID": "19254", + "crownLandUsePIN": "18283", + "crownLandFileNumber": "18979", + "landDescription": "LOT 1 OF LOT 4 BLOCK 1 DISTRICT LOT 3 PLAN 8563" } ], "siteDisclosures": [ { - "siteRegistry": true, - "dateReceived": "2014-09-17", - "dateCompleted": "2021-05-09", - "dateEntered": "2019-02-17", - "dateRegistrar": "2018-05-08", - "dateLocalAuthorityReceived": "2019-10-24", - "summary": "Aut totam mollitia nam.\nNesciunt quis hic sed cum.", - "informationUsed": "Repudiandae ad eaque.\nIpsum consequatur nobis ipsa laudantium repellat ex temporibus sunt fuga.\nDolores repellat quasi pariatur quo veniam cum exercitationem reiciendis ut.\nNon quasi vero in atque.", - "pastOrPresentOrders": "Excepturi laboriosam voluptatem aut incidunt perspiciatis est.", + "uuid": "b9ac311f-80f4-4674-af36-6470cdd10c29", + "siteRegistry": false, + "dateReceived": "2022-01-04", + "dateCompleted": "2014-11-05", + "dateEntered": "2018-02-02", + "dateRegistrar": "2021-08-07", + "dateLocalAuthorityReceived": "2015-07-04", + "summary": "Suscipit accusantium laborum illo error.\nUt cupiditate tempore accusamus voluptas nesciunt aut quod mollitia.", + "informationUsed": "Eaque distinctio deleniti.\nHarum rerum libero fugit corporis.\nFacere corporis id impedit perferendis repellendus accusamus asperiores temporibus.\nTempora nisi maiores inventore deserunt fuga eveniet optio voluptatem nulla.\nIpsum repellat fugiat est impedit veniam officiis illum.", + "pastOrPresentOrders": "Tenetur exercitationem enim nulla facilis ducimus.\nExplicabo temporibus odio magni officia temporibus odit.\nDolorum dignissimos tenetur voluptate provident maiores odit reprehenderit ullam quis.", "commercialAndIndustrialPurposes": [ { + "uuid": "57621dd0-a8a1-40dd-84e5-072f9757bd42", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "uuid": "c44d1bb1-b5a8-4a6a-8b96-11dbd3388d43", "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false }, { + "uuid": "40ea6628-a20e-45fd-8559-fc719a50a02a", "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, { + "uuid": "4a936217-e7a6-4484-821b-d4ec390ea889", "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true } ] }, { + "uuid": "e4b6855c-2017-46cc-bde1-4497a7aac731", "siteRegistry": false, - "dateReceived": "2016-03-23", - "dateCompleted": "2014-09-10", - "dateEntered": "2018-04-25", - "dateRegistrar": "2022-11-14", - "dateLocalAuthorityReceived": "2017-03-31", - "summary": "Pariatur mollitia quis fugit impedit consequuntur eveniet eum reiciendis debitis.\nDolor quam illum laudantium necessitatibus dolorum nesciunt.", - "informationUsed": "Explicabo sunt perspiciatis quibusdam qui aspernatur.\nEst fugiat veniam ipsam quis.\nQuae ipsam molestias nesciunt sit.\nAlias voluptates vel quam fugiat cupiditate.", - "pastOrPresentOrders": "Ipsum impedit soluta laboriosam possimus optio commodi voluptatem.\nQuo ipsum saepe magnam.", + "dateReceived": "2016-03-02", + "dateCompleted": "2016-05-31", + "dateEntered": "2018-05-24", + "dateRegistrar": "2018-01-02", + "dateLocalAuthorityReceived": "2014-09-09", + "summary": "Nesciunt quia repellat.\nTemporibus assumenda commodi.\nIusto quaerat fuga beatae labore sint incidunt esse.", + "informationUsed": "Mollitia nemo similique harum facilis.\nIllum rem quia asperiores excepturi ad quo.\nAlias id nulla doloremque corporis molestiae numquam adipisci ad.\nFuga assumenda quae.", + "pastOrPresentOrders": "Iure recusandae saepe facilis aliquam aut quas unde voluptatem.", "commercialAndIndustrialPurposes": [ { - "scheduleReference": "F1*", + "uuid": "d58df700-1018-40dc-a6a3-110b64ae96c9", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "uuid": "7399070b-6296-4299-89ec-37027a008d17", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "uuid": "c2c1369b-3438-43d0-8d4b-1e47d6d7bc0c", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false }, { + "uuid": "b6b5600f-7de6-4288-afc8-a459bef4039f", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false @@ -39368,109 +45902,86 @@ ], "activityLog": [ { - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "RUECKER CHESTER", - "timestamp": "2016-06-21" - }, - { - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "GRADY JOVANY", - "timestamp": "2016-11-18" - }, - { + "uuid": "2fb9646b-5ead-49c5-aada-de0aacfa5027", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "ARMSTRONG AIDA", - "timestamp": "2019-10-30" + "user": "KILBACK GERALD", + "timestamp": "2018-07-17" }, { + "uuid": "ee64c265-0d05-413d-9a44-2b311d289ced", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "HACKETT OMA", - "timestamp": "2021-08-04" + "user": "MILLS JAVON", + "timestamp": "2016-05-30" }, { + "uuid": "b2381368-ad6e-4637-9e52-c51ba7e7a29e", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "ARMSTRONG ERWIN", - "timestamp": "2022-01-05" - }, - { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "CHAMPLIN RANDAL", - "timestamp": "2020-08-26" - }, - { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "RIPPIN GREGG", - "timestamp": "2014-01-24" + "user": "HARRIS JACKY", + "timestamp": "2015-06-11" }, { + "uuid": "5fc8c8ae-c605-406c-87b8-813710a26211", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "ORN VALENTIN", - "timestamp": "2016-06-24" + "user": "PFANNERSTILL LEONARDO", + "timestamp": "2020-09-24" }, { - "siteRegistry": true, + "uuid": "5b3cef8f-fe97-4f99-9f3a-a0d761226401", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "RYAN CARLOS", - "timestamp": "2016-01-29" + "user": "PFANNERSTILL GEORGIANA", + "timestamp": "2020-07-07" } ], "associatedSites": [ { - "dateNoted": "2019-01-23", - "notes": "", - "parcelID": "20347", - "siteID": "15868", - "siteRegistry": false - }, - { - "dateNoted": "2018-04-30", + "uuid": "ca011975-7df0-497f-8102-bf7b30eeb6f5", + "dateNoted": "2021-08-26", "notes": "", - "parcelID": "20101", - "siteID": "19608", + "parcelID": "16325", + "siteID": "16656", "siteRegistry": false }, { - "dateNoted": "2023-03-28", + "uuid": "13a4ab4e-06e6-467d-8bc7-8dff825b46a3", + "dateNoted": "2015-09-01", "notes": "", - "parcelID": "20988", - "siteID": "17607", + "parcelID": "19362", + "siteID": "17528", "siteRegistry": true } ] }, { - "uuid": "8d177bbe-f909-4d0f-8813-6f12ff0f2618", - "siteID": 18281, - "address": "889 Valentina Shores", - "latitude": 53.1927, - "longitude": -125.4253, - "lastUpdated": "2017-11-16", - "city": "Koelpinport", + "uuid": "0e098a5b-a87e-4277-bf2d-1dd21af27ae0", + "siteID": 18696, + "address": "731 Monahan Lakes", + "latitude": 56.1651, + "longitude": -136.8109, + "lastUpdated": "2018-11-13", + "city": "Appleton", "region": "Mainland/Southwest", - "victoriaFile": "26250-20/12542", + "victoriaFile": "26250-20/19338", "regionalFile": "N/A", "parcelIDs": [ - 8321801, - 6745464, - 1343006, - 2300754, - 5958957 + 9766337, + 2111043, + 2266059, + 7187394, + 2388871 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2022-09-23", - "completed": "2017-03-23", - "initiated": "2014-09-24", - "ministryContact": "MOHR ANNABEL", + "uuid": "a95e1b3b-66cb-4f35-ab2c-ad4575aa7e45", + "createdAt": "2017-02-18", + "completed": "2020-06-14", + "initiated": "2020-05-18", + "ministryContact": "BOGAN AMINA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -39479,63 +45990,44 @@ ], "notationParticipants": [ { + "uuid": "9187820a-c884-42f5-8798-5cc9c800866e", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false }, { + "uuid": "d804cb93-9478-4976-b0e5-077b565a842a", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false }, { + "uuid": "ee126f0d-c840-4c46-b4f3-07a716192e1b", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true - } - ], - "siteRegistry": false - }, - { - "createdAt": "2017-01-12", - "completed": "2019-06-25", - "initiated": "2023-06-13", - "ministryContact": "HODKIEWICZ ADRIANNA", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false }, { + "uuid": "694893c3-0b64-49d0-8be7-4e0d5283dc10", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { + "uuid": "01465d5f-0028-4b4c-bae9-4e1178e27254", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", "siteRegistry": false } ], "siteRegistry": false }, { - "createdAt": "2014-07-06", - "completed": "2019-12-26", - "initiated": "2019-09-18", - "ministryContact": "BLANDA EDYTHE", + "uuid": "31988a75-058b-4896-aea5-6aa5e5b607b3", + "createdAt": "2022-07-13", + "completed": "2018-06-04", + "initiated": "2017-01-15", + "ministryContact": "JACOBSON OTHA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -39544,79 +46036,34 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { + "uuid": "1681a7b0-34df-4e99-a046-d94559fd6367", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true + "role": "REQUESTED BY", + "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - } - ], - "siteRegistry": false - }, - { - "createdAt": "2015-07-12", - "completed": "2020-10-26", - "initiated": "2019-12-23", - "ministryContact": "FEEST ELISA", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { + "uuid": "9872f854-1fc1-4396-8316-fc23aff2355e", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true }, { + "uuid": "93055587-aa89-4467-b474-8bda936805bd", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "c9a8bf48-e4d4-4b51-8fd8-5043cd4f158c", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true - } - ], - "siteRegistry": false - }, - { - "createdAt": "2013-10-18", - "completed": "2015-09-09", - "initiated": "2016-04-11", - "ministryContact": "MEDHURST BERNARD", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ + }, { + "uuid": "9d9ad1b7-41be-49cd-a2f7-c559946b8a69", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false } ], "siteRegistry": true @@ -39624,39 +46071,10 @@ ], "participants": [ { + "uuid": "2e2e7a31-2781-4057-882b-b98a8c068673", "name": "IPSUM", - "endDate": "2017-12-30", - "startDate": "2014-09-07", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2018-08-07", - "startDate": "2016-04-22", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": true - }, - { - "name": "IPSUM", - "endDate": "2013-12-13", - "startDate": "2015-03-02", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": false - }, - { - "name": "AMET, DOLOR SIT", - "endDate": "2013-12-14", - "startDate": "2017-10-07", + "endDate": "2018-06-09", + "startDate": "2023-06-28", "notes": "", "roles": [ "ORGANIZATION" @@ -39664,97 +46082,151 @@ "siteRegistry": true }, { - "name": "IPSUM", - "endDate": "2014-06-06", - "startDate": "2022-08-21", + "uuid": "44a579d3-289e-4727-8e72-e3c996843d80", + "name": "AMET, DOLOR SIT", + "endDate": "2018-03-06", + "startDate": "2018-07-18", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": false } ], "suspectLandUses": [ { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-03-05 (described on Site Profile dated 2019-03-05)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" - }, - { + "uuid": "fbbfdc47-dd33-49ba-8484-a53cb442cb0b", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-10-09 (described on Site Profile dated 2014-10-09)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "notes": "INSERTED FOR SITE PROFILE DATED 2018-07-23 (described on Site Profile dated 2018-07-23)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { + "uuid": "70e12bf8-791a-43cc-8072-0ad563469955", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-05-20 (described on Site Profile dated 2014-05-20)", + "notes": "INSERTED FOR SITE PROFILE DATED 2016-09-07 (described on Site Profile dated 2016-09-07)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-11-21 (described on Site Profile dated 2017-11-21)", + "uuid": "030fc834-ee77-48cf-8530-87a967329711", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2014-06-15 (described on Site Profile dated 2014-06-15)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { + "uuid": "74238d3d-aec0-4d7c-a28f-8918bb3d91ea", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-06-24 (described on Site Profile dated 2019-06-24)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "notes": "INSERTED FOR SITE PROFILE DATED 2015-06-26 (described on Site Profile dated 2015-06-26)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], "parcelDescriptions": [ { + "uuid": "81709392-cc9d-4528-b483-589094ed064c", "siteRegistry": false, - "dateNoted": "2018-07-23", - "parcelID": "18648", - "crownLandUsePIN": "19127", - "crownLandFileNumber": "19412", - "landDescription": "LOT 3 OF LOT 4 BLOCK 2 DISTRICT LOT 4 PLAN 7719" + "dateNoted": "2018-02-07", + "parcelID": "17704", + "crownLandUsePIN": "16954", + "crownLandFileNumber": "19041", + "landDescription": "LOT 1 OF LOT 4 BLOCK 3 DISTRICT LOT 2 PLAN 6889" + }, + { + "uuid": "444eee4e-bd89-40c0-807a-325ecac7641b", + "siteRegistry": true, + "dateNoted": "2019-07-17", + "parcelID": "17598", + "crownLandUsePIN": "19913", + "crownLandFileNumber": "17531", + "landDescription": "LOT 2 OF LOT 5 BLOCK 4 DISTRICT LOT 2 PLAN 4202" }, { + "uuid": "352d0d32-0619-4291-86cc-41b2f05d6c43", "siteRegistry": false, - "dateNoted": "2023-01-18", - "parcelID": "20976", - "crownLandUsePIN": "18539", - "crownLandFileNumber": "20380", - "landDescription": "LOT 2 OF LOT 2 BLOCK 2 DISTRICT LOT 3 PLAN 7092" + "dateNoted": "2018-05-24", + "parcelID": "18985", + "crownLandUsePIN": "15961", + "crownLandFileNumber": "18936", + "landDescription": "LOT 1 OF LOT 5 BLOCK 3 DISTRICT LOT 2 PLAN 4329" }, { + "uuid": "c2cf4074-f14f-4c32-8c42-f269460df65a", "siteRegistry": true, - "dateNoted": "2014-06-27", - "parcelID": "17053", - "crownLandUsePIN": "15348", - "crownLandFileNumber": "17701", - "landDescription": "LOT 4 OF LOT 5 BLOCK 4 DISTRICT LOT 2 PLAN 7185" + "dateNoted": "2023-04-17", + "parcelID": "17700", + "crownLandUsePIN": "19242", + "crownLandFileNumber": "18376", + "landDescription": "LOT 1 OF LOT 4 BLOCK 5 DISTRICT LOT 5 PLAN 3892" }, { - "siteRegistry": false, - "dateNoted": "2020-12-09", - "parcelID": "16219", - "crownLandUsePIN": "18149", - "crownLandFileNumber": "15941", - "landDescription": "LOT 2 OF LOT 4 BLOCK 2 DISTRICT LOT 3 PLAN 3731" + "uuid": "8e139cc4-60f8-4ae9-9a2c-c3c09aa3329a", + "siteRegistry": true, + "dateNoted": "2018-03-08", + "parcelID": "16891", + "crownLandUsePIN": "18169", + "crownLandFileNumber": "18153", + "landDescription": "LOT 1 OF LOT 1 BLOCK 4 DISTRICT LOT 5 PLAN 8953" } ], "siteDisclosures": [ { + "uuid": "b5487775-5cc5-421a-8917-f28a1910edb9", "siteRegistry": true, - "dateReceived": "2021-03-03", - "dateCompleted": "2019-01-28", - "dateEntered": "2022-06-05", - "dateRegistrar": "2022-06-29", - "dateLocalAuthorityReceived": "2015-03-12", - "summary": "Pariatur voluptates voluptatem sunt sapiente alias fugit.", - "informationUsed": "Vitae minima corporis illo aliquid voluptatem laudantium.\nMolestiae aut molestiae vero saepe ullam consequuntur.\nDeleniti impedit iure veritatis amet nisi similique animi.\nCum velit eum beatae a officiis magnam numquam.", - "pastOrPresentOrders": "Pariatur repudiandae fuga optio quisquam.\nQui inventore officiis aut provident illum.\nMinus exercitationem blanditiis dolorum quaerat rem.", + "dateReceived": "2015-05-03", + "dateCompleted": "2018-01-07", + "dateEntered": "2018-09-26", + "dateRegistrar": "2022-02-01", + "dateLocalAuthorityReceived": "2016-10-24", + "summary": "Veniam ex officia itaque vitae.\nOfficiis error blanditiis vitae nulla velit maiores.\nVeritatis accusantium illo quisquam alias temporibus dolores necessitatibus eligendi atque.", + "informationUsed": "Itaque voluptate rerum animi temporibus sapiente consequatur velit.\nQuae itaque tempora assumenda omnis similique inventore exercitationem.\nBeatae commodi eveniet vitae accusantium quod natus doloremque alias eius.\nNobis iure doloremque pariatur deserunt minus perferendis earum ipsa magnam.", + "pastOrPresentOrders": "Iste doloremque saepe a praesentium mollitia odio dicta ut.", "commercialAndIndustrialPurposes": [ { - "scheduleReference": "F2*", + "uuid": "16f24a18-10cf-492a-bdfd-f8a79b606140", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, { - "scheduleReference": "F2*", + "uuid": "3096b79b-8c32-44b3-ba74-05139d1db1c9", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "uuid": "538cecdc-53e0-4d7e-a300-8fb37383acdb", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + } + ] + }, + { + "uuid": "5a29fa49-82c7-4d31-bc45-9aafef257c51", + "siteRegistry": true, + "dateReceived": "2018-06-17", + "dateCompleted": "2015-12-16", + "dateEntered": "2016-12-25", + "dateRegistrar": "2017-11-01", + "dateLocalAuthorityReceived": "2015-07-22", + "summary": "Velit vel possimus.\nA asperiores et esse ipsam.", + "informationUsed": "Consequatur deserunt autem tenetur accusamus amet eius repudiandae animi eum.\nExercitationem ducimus ad adipisci quam enim.\nNeque magni deleniti repellat maiores.\nDolor exercitationem eos minima amet distinctio iure commodi.\nEnim a aspernatur.", + "pastOrPresentOrders": "Sapiente similique quos.\nRatione accusantium accusantium eaque ea eligendi commodi illo quo.", + "commercialAndIndustrialPurposes": [ + { + "uuid": "5bc5f93c-3596-4950-9a15-18fe32ef5de1", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "uuid": "7287c4d9-e89f-48c5-a14f-4d8ca5340b8f", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "uuid": "e918519f-8257-44e9-8d2f-f9dab3d67c4a", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false } ] @@ -39762,83 +46234,122 @@ ], "activityLog": [ { - "siteRegistry": false, + "uuid": "1fcd351a-599f-4e9c-8ab3-73426da08a83", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "MANTE TRACE", + "timestamp": "2015-03-08" + }, + { + "uuid": "36212b4c-52f8-4611-a5ee-082ab053d13d", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "CREMIN MARGE", - "timestamp": "2022-04-01" + "user": "ABERNATHY ADELBERT", + "timestamp": "2021-12-03" }, { + "uuid": "267a7625-0dc3-4dbd-abaf-3360df374298", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "LEFFLER-CHAMPLIN REID", - "timestamp": "2022-11-26" + "user": "KUHIC MERCEDES", + "timestamp": "2020-05-03" }, { + "uuid": "5d53ee90-2248-4ccb-9359-15888440d3ee", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "PAUCEK KILEY", - "timestamp": "2015-11-05" + "user": "LARKIN ELIAS", + "timestamp": "2021-05-20" }, { - "siteRegistry": true, + "uuid": "309967ca-002c-4918-a525-7adb305f3fae", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "TURCOTTE FRANCISCO", - "timestamp": "2015-07-07" + "user": "WEIMANN JARRED", + "timestamp": "2018-11-21" }, { + "uuid": "03e0a1b2-dac6-42a4-84ca-5592c6f4c798", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "RODRIGUEZ RICO", - "timestamp": "2017-08-23" + "user": "CRONA NOEMI", + "timestamp": "2019-10-27" }, { - "siteRegistry": true, + "uuid": "abfaccb9-850f-4a0f-99eb-cdae9f8369e6", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "HODKIEWICZ MARYSE", + "timestamp": "2016-07-05" + }, + { + "uuid": "7830e1d9-0974-414d-b3f9-c881ea5257e0", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "SAUER NIA", - "timestamp": "2015-01-17" + "user": "FRANEY ELINOR", + "timestamp": "2021-10-04" }, { + "uuid": "9ad18887-f29c-4eed-ab35-a4602e402e10", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "PRICE DONNELL", - "timestamp": "2019-01-05" + "user": "O'KEEFE ROSSIE", + "timestamp": "2021-09-14" } ], "associatedSites": [ { - "dateNoted": "2017-06-01", + "uuid": "c01ebaba-e29d-460d-9d91-d4eb80bd952e", + "dateNoted": "2021-02-25", + "notes": "", + "parcelID": "20439", + "siteID": "20378", + "siteRegistry": true + }, + { + "uuid": "89a44722-00b3-4fdc-999f-2f6981561f5a", + "dateNoted": "2016-09-11", "notes": "", - "parcelID": "20082", - "siteID": "18801", + "parcelID": "19816", + "siteID": "16415", "siteRegistry": false + }, + { + "uuid": "de894eac-2950-48ce-b498-a14411754635", + "dateNoted": "2023-03-18", + "notes": "", + "parcelID": "18444", + "siteID": "15815", + "siteRegistry": true } ] }, { - "uuid": "adbaf508-8779-4e76-bbc4-84bafa9341ff", - "siteID": 17956, - "address": "99216 Bednar Parkway", - "latitude": 54.8749, - "longitude": -122.7023, - "lastUpdated": "2015-02-08", - "city": "O'Reillystead", - "region": " North Coast", - "victoriaFile": "26250-20/13674", + "uuid": "37a25e94-b7cc-4d02-b236-2e09c4f23c86", + "siteID": 20933, + "address": "25088 Roberts Tunnel", + "latitude": 57.7083, + "longitude": -138.7785, + "lastUpdated": "2020-11-23", + "city": "North Linamouth", + "region": "Thompson-Okanagan", + "victoriaFile": "26250-20/18799", "regionalFile": "N/A", "parcelIDs": [ - 2218961, - 2635586, - 6075224, - 3223039, - 7570152 + 5865933, + 9023854, + 686681, + 1794009, + 5109801 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2015-11-06", - "completed": "2013-11-27", - "initiated": "2014-01-01", - "ministryContact": "KOCH PATTIE", + "uuid": "9aa99f89-40cd-4944-b547-ff6d93e7437b", + "createdAt": "2017-03-02", + "completed": "2018-04-28", + "initiated": "2018-04-09", + "ministryContact": "SCHUMM PASCALE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -39847,33 +46358,26 @@ ], "notationParticipants": [ { + "uuid": "9261085a-599f-4cc5-b47d-b43db99a7e01", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", "siteRegistry": true }, { + "uuid": "0ec16387-3906-4e71-8d40-b52e2c6d97fc", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", "siteRegistry": false } ], "siteRegistry": true }, { - "createdAt": "2014-11-04", - "completed": "2023-03-12", - "initiated": "2023-02-21", - "ministryContact": "LUETTGEN MAGGIE", + "uuid": "b62979cd-c3ed-4799-be34-2b29b38e4724", + "createdAt": "2020-12-20", + "completed": "2014-07-07", + "initiated": "2016-09-11", + "ministryContact": "ANDERSON ABNER", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -39882,29 +46386,68 @@ ], "notationParticipants": [ { + "uuid": "c52385be-c351-4556-80ed-2edfa41021d4", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { + "uuid": "dc5e8fc5-c1c1-43ce-a2dd-a99237000c99", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "uuid": "9dabd02b-59f2-4da2-8b04-5f2b809f1bee", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": true }, { + "uuid": "d3c767cc-175b-46a9-a333-2b3fd0016f85", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "uuid": "203cc0ec-d276-4028-90b5-adfe84ad7006", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "uuid": "7fc13215-2078-409d-a4c0-c134e8215b2d", + "createdAt": "2013-12-02", + "completed": "2015-03-08", + "initiated": "2019-02-04", + "ministryContact": "CARROLL TATUM", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "uuid": "30c33e47-cf7d-404c-a216-6c638a7889ee", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false }, { + "uuid": "346959e1-91a7-4df4-b59c-37cd54c7807d", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", + "uuid": "a2d6b313-4d6d-484f-b7f4-b27ba6e95218", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true } ], "siteRegistry": false @@ -39912,9 +46455,10 @@ ], "participants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2016-02-09", - "startDate": "2023-09-01", + "uuid": "7b549cdf-aac3-45a7-9c2e-50ab47763f04", + "name": "AMET, DOLOR SIT", + "endDate": "2019-01-21", + "startDate": "2014-09-29", "notes": "", "roles": [ "ORGANIZATION" @@ -39922,29 +46466,21 @@ "siteRegistry": false }, { + "uuid": "efcb34ee-c566-4da6-afef-32c2bfb0ccee", "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2018-01-08", - "startDate": "2017-02-08", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2019-04-09", - "startDate": "2016-09-30", + "endDate": "2020-11-09", + "startDate": "2022-10-22", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true }, { + "uuid": "9a206e87-e42a-40d4-8c5f-44266c7c2522", "name": "AMET, DOLOR SIT", - "endDate": "2020-05-21", - "startDate": "2022-02-16", + "endDate": "2023-06-24", + "startDate": "2019-01-17", "notes": "", "roles": [ "ORGANIZATION" @@ -39952,122 +46488,98 @@ "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2019-08-16", - "startDate": "2023-10-08", + "uuid": "ee96e582-1255-443c-9358-1faee64c8db6", + "name": "AMET, DOLOR SIT", + "endDate": "2021-10-02", + "startDate": "2017-03-29", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false } ], "suspectLandUses": [ { + "uuid": "efc8c9e7-de6a-4407-ad8b-611aa016b458", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2020-11-05 (described on Site Profile dated 2020-11-05)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "notes": "INSERTED FOR SITE PROFILE DATED 2022-03-19 (described on Site Profile dated 2022-03-19)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { + "uuid": "77321b85-912a-4ed4-ad75-dccb3161dfff", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-12-14 (described on Site Profile dated 2017-12-14)", + "notes": "INSERTED FOR SITE PROFILE DATED 2021-09-18 (described on Site Profile dated 2021-09-18)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-05-30 (described on Site Profile dated 2018-05-30)", + "uuid": "2ecdedb6-9eff-4452-9fe6-84a12a5c6a29", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2021-06-27 (described on Site Profile dated 2021-06-27)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { + "uuid": "0e1ee008-0086-4f76-9965-2f1c293cfccd", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-10-18 (described on Site Profile dated 2017-10-18)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "notes": "INSERTED FOR SITE PROFILE DATED 2023-04-06 (described on Site Profile dated 2023-04-06)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], "parcelDescriptions": [ { - "siteRegistry": false, - "dateNoted": "2015-05-21", - "parcelID": "19433", - "crownLandUsePIN": "15555", - "crownLandFileNumber": "18593", - "landDescription": "LOT 5 OF LOT 3 BLOCK 2 DISTRICT LOT 2 PLAN 7046" - }, - { - "siteRegistry": false, - "dateNoted": "2017-01-15", - "parcelID": "19439", - "crownLandUsePIN": "20272", - "crownLandFileNumber": "16024", - "landDescription": "LOT 3 OF LOT 3 BLOCK 3 DISTRICT LOT 2 PLAN 5199" + "uuid": "7ca5eacd-c70f-4e9e-8727-c90bf911b678", + "siteRegistry": true, + "dateNoted": "2018-11-30", + "parcelID": "20328", + "crownLandUsePIN": "18826", + "crownLandFileNumber": "17611", + "landDescription": "LOT 5 OF LOT 3 BLOCK 5 DISTRICT LOT 5 PLAN 4972" }, { + "uuid": "9a0faa8b-3b9c-44cb-9454-176ad6ac0dab", "siteRegistry": false, - "dateNoted": "2023-09-26", - "parcelID": "16634", - "crownLandUsePIN": "17999", - "crownLandFileNumber": "20686", - "landDescription": "LOT 1 OF LOT 4 BLOCK 5 DISTRICT LOT 5 PLAN 6225" + "dateNoted": "2019-08-06", + "parcelID": "16369", + "crownLandUsePIN": "20558", + "crownLandFileNumber": "19706", + "landDescription": "LOT 4 OF LOT 5 BLOCK 2 DISTRICT LOT 2 PLAN 4058" } ], "siteDisclosures": [ { + "uuid": "7ff6db3d-7f18-4655-a729-e24565f9297f", "siteRegistry": true, - "dateReceived": "2017-03-12", - "dateCompleted": "2017-04-04", - "dateEntered": "2019-05-02", - "dateRegistrar": "2020-10-21", - "dateLocalAuthorityReceived": "2021-05-12", - "summary": "Ipsum dolor dicta mollitia quis.\nAnimi qui vitae nesciunt quae odit sunt.", - "informationUsed": "Sapiente provident a aliquid.\nAsperiores eveniet vero voluptates.\nBeatae rerum nobis amet omnis recusandae quae error natus.\nQuisquam velit deleniti placeat eius.", - "pastOrPresentOrders": "Fugit in nisi quam.\nError dolorem accusantium in sapiente distinctio iusto.", + "dateReceived": "2019-06-29", + "dateCompleted": "2021-05-11", + "dateEntered": "2021-06-22", + "dateRegistrar": "2022-02-14", + "dateLocalAuthorityReceived": "2014-10-25", + "summary": "Nam ratione consequatur reiciendis voluptatibus veniam sed.", + "informationUsed": "Ex ratione maxime neque molestiae vitae eum.\nEaque cupiditate molestias illo quasi labore.\nVoluptates quae temporibus odio autem.\nAnimi odio soluta iste suscipit quam.", + "pastOrPresentOrders": "Accusantium iusto qui.\nFacere excepturi amet.\nOfficia occaecati molestiae.", "commercialAndIndustrialPurposes": [ { + "uuid": "fa7b2d2f-07fd-49d0-9bb1-9db5a867c14f", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false }, { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false - }, - { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true - } - ] - }, - { - "siteRegistry": false, - "dateReceived": "2014-03-09", - "dateCompleted": "2020-03-25", - "dateEntered": "2015-12-31", - "dateRegistrar": "2014-01-15", - "dateLocalAuthorityReceived": "2020-12-27", - "summary": "Consequatur cum incidunt necessitatibus necessitatibus ducimus eligendi itaque odio quidem.", - "informationUsed": "Aspernatur aperiam error reprehenderit autem modi iste dolores excepturi.\nId temporibus cum magnam error sit saepe facere.\nAtque nobis id.\nNatus natus tenetur incidunt.\nProvident doloremque in rerum eius voluptatem velit quibusdam earum.", - "pastOrPresentOrders": "Tempore accusantium ut nobis iusto iusto.\nMinima qui iure asperiores est repudiandae quaerat distinctio.", - "commercialAndIndustrialPurposes": [ - { + "uuid": "769c17a1-aac0-4216-8e12-a8774df07266", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { + "uuid": "2d90a680-c0f4-443a-a2de-45e263b4450f", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { + "uuid": "b88a7e50-94bf-4c64-bdbf-7e7d7190389b", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false - }, - { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true } ] @@ -40075,78 +46587,85 @@ ], "activityLog": [ { + "uuid": "da63dd7f-71ba-4c10-b09c-513ac01e6b3b", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "SCHADEN NATHEN", - "timestamp": "2020-05-03" + "user": "CRUICKSHANK MARIELLE", + "timestamp": "2014-11-06" }, { + "uuid": "8bd2cbc6-0b4f-4a24-be1b-fc0f7aff0c64", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "STOLTENBERG JEFFERY", - "timestamp": "2019-08-17" + "user": "FRAMI MAURICIO", + "timestamp": "2018-10-07" }, { + "uuid": "83a2c1de-5ee5-46f7-8825-55fae806dbbb", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "WINDLER ENA", - "timestamp": "2020-07-23" + "user": "WIZA KEITH", + "timestamp": "2018-04-12" }, { - "siteRegistry": false, + "uuid": "6a226fb0-e9a1-4921-86a6-6e42a580142e", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "BERGE ALYCE", - "timestamp": "2017-10-03" + "user": "GRADY OSCAR", + "timestamp": "2020-03-20" }, { + "uuid": "0fcf25e7-e0e5-43db-9f50-53814b6d4eda", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "SCHINNER WILEY", - "timestamp": "2014-12-24" + "user": "CARROLL DEMARIO", + "timestamp": "2020-02-25" + }, + { + "uuid": "a333857e-cfe6-44bc-80fe-84ec43121e3d", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "O'HARA DEION", + "timestamp": "2015-12-11" } ], "associatedSites": [ { - "dateNoted": "2017-10-04", - "notes": "", - "parcelID": "18345", - "siteID": "18801", - "siteRegistry": false - }, - { - "dateNoted": "2020-08-12", + "uuid": "9faad376-4478-44be-a8d2-e2186511cc76", + "dateNoted": "2017-08-10", "notes": "", - "parcelID": "15899", - "siteID": "17847", + "parcelID": "17519", + "siteID": "19995", "siteRegistry": false } ] }, { - "uuid": "92572afd-24cf-42db-a1bf-e351848fce09", - "siteID": 18240, - "address": "760 Kiana Vista", - "latitude": 58.2975, - "longitude": -119.1714, - "lastUpdated": "2020-11-28", - "city": "Lake Shanny", - "region": "Mainland/Southwest", - "victoriaFile": "26250-20/16514", + "uuid": "b72c1c98-5069-43e1-b8fe-51af7f27ae63", + "siteID": 15345, + "address": "158 Leannon Unions", + "latitude": 56.2983, + "longitude": -138.2086, + "lastUpdated": "2019-02-16", + "city": "Ullrichfort", + "region": "Thompson-Okanagan", + "victoriaFile": "26250-20/15301", "regionalFile": "N/A", "parcelIDs": [ - 2203779, - 5785127, - 4550175, - 3675137, - 4733130 + 773538, + 9178530, + 4955006, + 4312993, + 9693838 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2018-04-06", - "completed": "2018-03-04", - "initiated": "2016-02-03", - "ministryContact": "RUNOLFSSON SCOT", + "uuid": "dc2e29bf-104e-4f16-bbf8-e725c16fc042", + "createdAt": "2017-11-10", + "completed": "2021-11-12", + "initiated": "2015-11-28", + "ministryContact": "WILLIAMSON TOBY", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -40155,38 +46674,32 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { + "uuid": "7bfe16df-6d07-424e-952f-f65674026e15", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "a1e7dfdb-8484-4f19-abef-1cb64619dd7b", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "0c1e34db-ac42-4350-9904-4363fb5637e6", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2016-12-22", - "completed": "2019-01-06", - "initiated": "2020-12-23", - "ministryContact": "MOORE RAINA", + "uuid": "e458f724-1087-4d48-a6df-54481c3f4aaa", + "createdAt": "2023-09-30", + "completed": "2021-10-02", + "initiated": "2014-02-25", + "ministryContact": "GREENFELDER SINCERE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -40195,63 +46708,32 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "efcbbefa-6449-464c-8054-d985d478038e", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true - } - ], - "siteRegistry": true - }, - { - "createdAt": "2015-01-24", - "completed": "2023-05-26", - "initiated": "2017-05-13", - "ministryContact": "PADBERG WANDA", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { + "uuid": "e3316594-5591-4290-89c5-d813236c51d3", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { + "uuid": "e2c9dd5b-dcbe-4f7c-9312-3775e3e2bf0e", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", "siteRegistry": false } ], "siteRegistry": true }, { - "createdAt": "2022-01-11", - "completed": "2014-08-16", - "initiated": "2014-11-23", - "ministryContact": "LEHNER GARRISON", + "uuid": "78eee788-5000-444c-982a-70418a5c9ff9", + "createdAt": "2015-04-11", + "completed": "2017-11-30", + "initiated": "2022-12-17", + "ministryContact": "RODRIGUEZ MURIEL", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -40260,33 +46742,44 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { + "uuid": "521e2890-a6e9-4d0c-bb09-379be07a2e3a", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "ec173d0b-6edd-4f45-bd1d-bbd6f84496be", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false }, { + "uuid": "9442c82a-ada3-4ea3-81cb-49c3dbfd4611", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false + }, + { + "uuid": "bf0b257f-cc65-4aae-8721-f1f84cc73ffe", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "uuid": "34606713-c44d-422d-8c9f-9f529f918ded", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false } ], "siteRegistry": true }, { - "createdAt": "2017-10-10", - "completed": "2014-09-12", - "initiated": "2018-09-24", - "ministryContact": "BARTOLETTI MOSHE", + "uuid": "d892ad21-6ca7-4bd3-babd-fdede9e4ff4d", + "createdAt": "2015-02-10", + "completed": "2014-05-17", + "initiated": "2019-08-07", + "ministryContact": "KEELING MADILYN", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -40295,16 +46788,13 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", + "uuid": "ba16a0ca-3e4e-45cc-ad95-541cf290d27e", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { + "uuid": "f8ada29d-bd8b-4824-a972-442966cd1f3b", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true @@ -40315,128 +46805,150 @@ ], "participants": [ { - "name": "AMET, DOLOR SIT", - "endDate": "2014-04-24", - "startDate": "2018-08-15", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": false - }, - { + "uuid": "d3dae4ed-38b5-4bce-9d0c-6726341db342", "name": "SHELL CANADA PRODUCTS", - "endDate": "2020-08-07", - "startDate": "2016-01-29", + "endDate": "2020-02-21", + "startDate": "2019-04-12", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], - "siteRegistry": false + "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2022-10-11", - "startDate": "2020-05-28", + "uuid": "d365518e-03bb-47db-9477-339ccd650ede", + "name": "IPSUM", + "endDate": "2018-08-17", + "startDate": "2013-11-10", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": false + "siteRegistry": true }, { - "name": "AMET, DOLOR SIT", - "endDate": "2023-01-13", - "startDate": "2022-01-15", + "uuid": "a0a09562-3f78-4e25-8430-1cc587beaaf6", + "name": "IPSUM", + "endDate": "2021-08-07", + "startDate": "2014-07-22", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": false }, { - "name": "AMET, DOLOR SIT", - "endDate": "2023-02-14", - "startDate": "2018-08-11", + "uuid": "3dcc2b70-46a4-47a4-96d2-66d06b8e9b15", + "name": "IPSUM", + "endDate": "2019-04-16", + "startDate": "2020-04-19", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": false } ], "suspectLandUses": [ { + "uuid": "9a3b771a-9aec-42df-9e8e-9ae991c72afc", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-12-28 (described on Site Profile dated 2014-12-28)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" - }, - { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-02-07 (described on Site Profile dated 2021-02-07)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" - }, - { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-12-15 (described on Site Profile dated 2014-12-15)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" - }, - { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-06-04 (described on Site Profile dated 2014-06-04)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "notes": "INSERTED FOR SITE PROFILE DATED 2022-05-17 (described on Site Profile dated 2022-05-17)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-06-13 (described on Site Profile dated 2017-06-13)", + "uuid": "9d4810e4-e5b9-4eca-8aeb-85727cf609ab", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2020-09-12 (described on Site Profile dated 2020-09-12)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], "parcelDescriptions": [ { - "siteRegistry": true, - "dateNoted": "2017-04-22", - "parcelID": "20944", - "crownLandUsePIN": "17327", - "crownLandFileNumber": "17342", - "landDescription": "LOT 2 OF LOT 4 BLOCK 2 DISTRICT LOT 2 PLAN 5826" - }, - { - "siteRegistry": true, - "dateNoted": "2019-08-28", - "parcelID": "16731", - "crownLandUsePIN": "18953", - "crownLandFileNumber": "20321", - "landDescription": "LOT 4 OF LOT 3 BLOCK 4 DISTRICT LOT 3 PLAN 5947" + "uuid": "a7fe777e-7d28-43ae-89bb-2bebe2fec1a6", + "siteRegistry": false, + "dateNoted": "2023-02-23", + "parcelID": "15679", + "crownLandUsePIN": "17912", + "crownLandFileNumber": "19852", + "landDescription": "LOT 3 OF LOT 3 BLOCK 2 DISTRICT LOT 3 PLAN 9122" }, { + "uuid": "8d700d82-19fc-42b7-99b2-1ab5a8708fb9", "siteRegistry": false, - "dateNoted": "2019-07-28", - "parcelID": "19513", - "crownLandUsePIN": "15461", - "crownLandFileNumber": "20742", - "landDescription": "LOT 4 OF LOT 3 BLOCK 1 DISTRICT LOT 3 PLAN 9448" + "dateNoted": "2014-04-03", + "parcelID": "19928", + "crownLandUsePIN": "20948", + "crownLandFileNumber": "20031", + "landDescription": "LOT 4 OF LOT 1 BLOCK 1 DISTRICT LOT 5 PLAN 7770" } ], "siteDisclosures": [ { + "uuid": "5c4e8466-93bf-4524-9517-8f5548b5f405", "siteRegistry": true, - "dateReceived": "2017-07-11", - "dateCompleted": "2014-03-22", - "dateEntered": "2021-05-17", - "dateRegistrar": "2020-11-13", - "dateLocalAuthorityReceived": "2018-09-11", - "summary": "Aut unde nulla excepturi minima recusandae nam.\nExcepturi eum corporis eum explicabo libero harum.\nFugit tempora dolorum ratione.", - "informationUsed": "Magni incidunt quos accusantium quas libero perferendis earum eos.\nRem nihil maiores sequi quam nemo saepe.\nVitae ipsa iste.\nConsequatur necessitatibus quo optio consequatur a sapiente.", - "pastOrPresentOrders": "Labore cum repudiandae cum numquam sit autem quisquam velit.\nPossimus numquam similique.", + "dateReceived": "2022-06-02", + "dateCompleted": "2022-03-31", + "dateEntered": "2020-04-19", + "dateRegistrar": "2023-03-19", + "dateLocalAuthorityReceived": "2022-12-03", + "summary": "Sequi incidunt consequatur nostrum voluptate doloribus debitis sunt voluptatem.\nVoluptatibus illum neque.\nVitae similique consequuntur aliquam nesciunt.", + "informationUsed": "Provident cumque excepturi dolor fuga laborum at voluptatem.\nFugiat a culpa repellendus architecto.\nCumque sequi beatae atque repudiandae facilis accusamus non magni.", + "pastOrPresentOrders": "Autem ullam accusamus corporis aliquid autem officia.\nAlias minima dignissimos vitae tempora iure sunt.\nIste aliquid laboriosam minima natus impedit totam mollitia esse eaque.", "commercialAndIndustrialPurposes": [ { - "scheduleReference": "F2*", + "uuid": "a6f98a6b-672e-4b16-a7c4-f2e1a90a15a7", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "uuid": "8a046056-967f-4e61-abc5-906819bc5860", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "uuid": "78dc4a11-fe53-4633-afcb-6e98c68be2c3", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { + "uuid": "a160a206-4cca-4351-b2c2-c7475ee545a3", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + } + ] + }, + { + "uuid": "70de7b7e-5972-40b3-b818-fd9a516fcf71", + "siteRegistry": false, + "dateReceived": "2022-03-28", + "dateCompleted": "2016-01-27", + "dateEntered": "2015-02-26", + "dateRegistrar": "2020-02-20", + "dateLocalAuthorityReceived": "2020-01-08", + "summary": "A ab excepturi omnis qui.\nConsequatur voluptatum iusto qui.\nAsperiores voluptatibus atque dolor aperiam ab voluptate aperiam dolor qui.", + "informationUsed": "Placeat voluptatum eaque numquam dolorum ipsam aperiam.\nDolore eveniet architecto dolores facilis consectetur vel laborum numquam.\nTenetur quis at esse.\nIllum nihil corrupti aperiam blanditiis labore.\nExcepturi voluptatum iure inventore.", + "pastOrPresentOrders": "Ab reiciendis aliquid sunt amet praesentium.", + "commercialAndIndustrialPurposes": [ + { + "uuid": "2e5770b7-dabe-4888-8d27-49a523ed3f11", "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "uuid": "1a6abc7b-14cc-4ebf-9ff7-a749fd38e438", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "uuid": "cfba7b82-1257-4f34-83a0-0e9621ea7229", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true } @@ -40445,96 +46957,85 @@ ], "activityLog": [ { - "siteRegistry": true, + "uuid": "41ea9830-7200-4054-870c-30f8145bb2af", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "CUMMERATA DEMARIO", - "timestamp": "2016-03-21" + "user": "JACOBS REBEKAH", + "timestamp": "2021-12-15" }, { + "uuid": "fe08bc0a-f26b-4f74-8b34-279c434f0afa", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "HEIDENREICH DAWSON", - "timestamp": "2015-01-24" + "user": "LANGOSH CARLI", + "timestamp": "2022-06-10" }, { + "uuid": "8574d050-d798-4809-9d5d-da6161f6d45a", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "PAUCEK HENRIETTE", - "timestamp": "2015-03-30" + "user": "JAKUBOWSKI ELWYN", + "timestamp": "2023-05-02" }, { + "uuid": "b2051a08-eba0-4b35-9c78-82173c347963", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "MULLER FLETA", - "timestamp": "2013-11-14" + "user": "FEIL BAILEE", + "timestamp": "2023-03-11" }, { + "uuid": "ec64c5c6-5a62-43e1-afbf-8df5c8f300a8", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "JOHNSON CLAUDIE", - "timestamp": "2019-11-07" - }, - { - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "GRIMES KORBIN", - "timestamp": "2018-01-01" - }, - { - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "JOHNS CLEORA", - "timestamp": "2019-06-28" + "user": "MORISSETTE ALYSON", + "timestamp": "2021-01-18" }, { + "uuid": "e6fb0715-0d57-433e-8efc-94e83559e761", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "HIRTHE FREIDA", - "timestamp": "2017-09-18" + "user": "TURNER CARMELA", + "timestamp": "2014-03-05" } ], "associatedSites": [ { - "dateNoted": "2015-11-01", + "uuid": "971012da-83d3-43c5-96aa-850a707b9658", + "dateNoted": "2020-08-12", "notes": "", - "parcelID": "20518", - "siteID": "20713", - "siteRegistry": false - }, - { - "dateNoted": "2015-06-11", - "notes": "", - "parcelID": "17136", - "siteID": "18309", + "parcelID": "19225", + "siteID": "19481", "siteRegistry": true } ] }, { - "uuid": "79f14244-862d-434f-ab0c-f7b749ca079f", - "siteID": 19044, - "address": "5092 Gusikowski Plain", - "latitude": 51.1583, - "longitude": -120.4281, - "lastUpdated": "2014-04-18", - "city": "El Dorado Hills", - "region": "Kootenay", - "victoriaFile": "26250-20/7549", + "uuid": "0215e1b7-b0f6-45f2-a8ec-0d1b048bc743", + "siteID": 20429, + "address": "27583 Mohr Drives", + "latitude": 50.7244, + "longitude": -134.5277, + "lastUpdated": "2018-06-10", + "city": "Fort Emmanuellestad", + "region": "Vancouver Island/Coast", + "victoriaFile": "26250-20/15392", "regionalFile": "N/A", "parcelIDs": [ - 4295206, - 8525446, - 4808958, - 8856783, - 8199321 + 8605727, + 5999802, + 3806005, + 6745793, + 9608911 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2017-06-29", - "completed": "2014-10-07", - "initiated": "2017-06-17", - "ministryContact": "WEIMANN GARTH", + "uuid": "33fef08c-81f7-44ae-a333-30acb3e7c90d", + "createdAt": "2018-08-18", + "completed": "2013-11-03", + "initiated": "2020-07-23", + "ministryContact": "ERDMAN HASKELL", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -40543,26 +47044,13 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", + "uuid": "38ef0c5b-ebc3-4276-b1cd-45cf5e0a7071", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { + "uuid": "aaefbd07-390b-4109-8ab5-e21caff34eb8", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true @@ -40571,10 +47059,11 @@ "siteRegistry": true }, { - "createdAt": "2015-10-03", - "completed": "2014-04-02", - "initiated": "2017-10-06", - "ministryContact": "STEHR CURT", + "uuid": "3e51eeae-864d-48c0-93be-5698ec070b08", + "createdAt": "2017-08-15", + "completed": "2019-06-18", + "initiated": "2018-03-19", + "ministryContact": "BLICK MARIELLE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -40583,34 +47072,67 @@ ], "notationParticipants": [ { + "uuid": "f1e8944c-6e32-452f-b7fe-e8fdf96cf636", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "b079f1de-1889-4078-b79e-8d666d07043e", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "uuid": "113cf492-cfcd-4b53-8f70-5e92b0223ec7", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": true }, { + "uuid": "af05a74c-5790-4cf9-be73-eb01634cf603", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "e5d159c2-786c-4345-b0e9-a5730a29d529", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true + "role": "REQUESTED BY", + "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false } ], "participants": [ { + "uuid": "9f943528-462e-4f2a-9a7e-a92e62565bc3", "name": "SHELL CANADA PRODUCTS", - "endDate": "2020-02-18", - "startDate": "2022-01-14", + "endDate": "2019-02-03", + "startDate": "2020-04-02", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": false }, { + "uuid": "0170ca96-405a-460f-86f0-57d0f3bd7078", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2023-04-19", + "startDate": "2020-06-24", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "uuid": "13c4f480-5f1d-4b8f-816b-c56708d95aac", "name": "SHELL CANADA PRODUCTS", - "endDate": "2017-01-06", - "startDate": "2019-08-22", + "endDate": "2019-10-30", + "startDate": "2014-10-27", "notes": "", "roles": [ "ORGANIZATION" @@ -40620,155 +47142,226 @@ ], "suspectLandUses": [ { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-02-19 (described on Site Profile dated 2021-02-19)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "uuid": "0d015882-1328-45f3-bd15-6d3b0465ad82", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2023-03-03 (described on Site Profile dated 2023-03-03)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-08-03 (described on Site Profile dated 2018-08-03)", + "uuid": "ad3f32e1-8549-4efb-a5dd-48832a54c49f", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2017-01-19 (described on Site Profile dated 2017-01-19)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], "parcelDescriptions": [ { + "uuid": "049aa155-873f-4050-b50b-a0b1fc12d6b3", "siteRegistry": false, - "dateNoted": "2016-11-30", - "parcelID": "17860", - "crownLandUsePIN": "18051", - "crownLandFileNumber": "15806", - "landDescription": "LOT 3 OF LOT 2 BLOCK 2 DISTRICT LOT 4 PLAN 7683" + "dateNoted": "2021-12-10", + "parcelID": "17188", + "crownLandUsePIN": "20052", + "crownLandFileNumber": "19495", + "landDescription": "LOT 1 OF LOT 3 BLOCK 4 DISTRICT LOT 3 PLAN 5926" }, { + "uuid": "673a7fc0-77a8-4876-a0cd-77ef41695616", "siteRegistry": false, - "dateNoted": "2021-07-10", - "parcelID": "18471", - "crownLandUsePIN": "20440", - "crownLandFileNumber": "19914", - "landDescription": "LOT 1 OF LOT 1 BLOCK 1 DISTRICT LOT 3 PLAN 8118" + "dateNoted": "2018-03-08", + "parcelID": "19925", + "crownLandUsePIN": "18710", + "crownLandFileNumber": "15789", + "landDescription": "LOT 1 OF LOT 2 BLOCK 4 DISTRICT LOT 1 PLAN 8533" }, { + "uuid": "980fc4bb-4034-4c38-a813-081784f1b161", "siteRegistry": false, - "dateNoted": "2019-07-07", - "parcelID": "18424", - "crownLandUsePIN": "15689", - "crownLandFileNumber": "15800", - "landDescription": "LOT 2 OF LOT 3 BLOCK 3 DISTRICT LOT 2 PLAN 8482" + "dateNoted": "2021-09-30", + "parcelID": "19038", + "crownLandUsePIN": "17074", + "crownLandFileNumber": "17908", + "landDescription": "LOT 2 OF LOT 3 BLOCK 4 DISTRICT LOT 3 PLAN 4681" }, { - "siteRegistry": false, - "dateNoted": "2017-08-03", - "parcelID": "17842", - "crownLandUsePIN": "17760", - "crownLandFileNumber": "20946", - "landDescription": "LOT 1 OF LOT 2 BLOCK 2 DISTRICT LOT 1 PLAN 4080" + "uuid": "e56d41ee-ecc1-4232-a3bd-9780564b7e30", + "siteRegistry": true, + "dateNoted": "2016-08-24", + "parcelID": "18804", + "crownLandUsePIN": "15810", + "crownLandFileNumber": "19148", + "landDescription": "LOT 5 OF LOT 4 BLOCK 1 DISTRICT LOT 5 PLAN 5038" } ], "siteDisclosures": [ { + "uuid": "f260bcd0-f769-475d-bdea-537e57e9c77b", "siteRegistry": true, - "dateReceived": "2019-10-16", - "dateCompleted": "2015-10-16", - "dateEntered": "2022-06-18", - "dateRegistrar": "2020-02-26", - "dateLocalAuthorityReceived": "2021-08-23", - "summary": "At eligendi fuga a officia ipsum dolore molestiae ducimus est.\nSaepe quisquam voluptatum molestias nobis consequuntur in voluptatem fuga.\nEum ut veniam.", - "informationUsed": "Consectetur mollitia debitis animi corporis.\nNostrum natus saepe quas impedit debitis quidem.\nSunt architecto ipsam minima similique.\nMollitia cumque facilis.", - "pastOrPresentOrders": "Harum voluptatum culpa.", + "dateReceived": "2014-09-19", + "dateCompleted": "2014-08-25", + "dateEntered": "2021-12-26", + "dateRegistrar": "2020-10-23", + "dateLocalAuthorityReceived": "2018-07-15", + "summary": "Ea recusandae tenetur quibusdam assumenda temporibus dolores ipsum reiciendis.", + "informationUsed": "Eius deleniti maxime porro aspernatur quaerat.\nNobis quos praesentium tenetur neque necessitatibus voluptates.\nNatus laborum delectus earum.\nOfficia ad ratione.\nFacere dicta autem.", + "pastOrPresentOrders": "Consequuntur quos aspernatur provident eveniet.", "commercialAndIndustrialPurposes": [ { + "uuid": "739e80e0-0594-448b-bdd1-e813b82a2740", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { + "uuid": "2f163266-33f2-44f4-a50e-d1394994e89c", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "uuid": "c3c03013-0e45-4306-89ba-c6074156aafe", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "uuid": "ca3ae5e3-b0e3-4cd6-94a0-647d8f4fade0", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false } ] + }, + { + "uuid": "d79807c4-aaf0-4a54-9f32-eef15fe9e63b", + "siteRegistry": false, + "dateReceived": "2018-02-11", + "dateCompleted": "2015-03-23", + "dateEntered": "2017-02-16", + "dateRegistrar": "2017-03-09", + "dateLocalAuthorityReceived": "2023-10-10", + "summary": "Atque voluptas necessitatibus minus tempora nesciunt non nostrum impedit.", + "informationUsed": "Porro iure amet ipsa distinctio architecto nesciunt architecto.\nTotam odio magnam corporis.\nId molestias veritatis et rerum.\nOmnis doloribus ducimus adipisci dolore rerum totam corporis.", + "pastOrPresentOrders": "Doloremque placeat esse repellendus nihil laborum ipsa magni.\nOptio minima praesentium fuga recusandae voluptates ea fugiat earum.\nIncidunt ipsa ratione.", + "commercialAndIndustrialPurposes": [ + { + "uuid": "1d6e9e10-9d70-447c-bf4d-01b9c5b78566", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "uuid": "34e5b95d-6f15-47ed-807c-6cc19b2800b6", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + } + ] } ], "activityLog": [ { + "uuid": "72873b5c-1702-4e52-9fa2-b5e253a6b8e2", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "KUVALIS KALLIE", - "timestamp": "2015-09-13" + "user": "LOCKMAN MICHELLE", + "timestamp": "2019-09-18" }, { - "siteRegistry": false, + "uuid": "84c1e5db-0d59-4885-bd64-567a3a7775a5", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "LABADIE ALAYNA", - "timestamp": "2023-04-19" + "user": "BAHRINGER ESTRELLA", + "timestamp": "2020-10-08" }, { - "siteRegistry": true, + "uuid": "0bb5dd14-ec6a-49b5-805f-62ced4d8599b", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "DANIEL NORBERTO", - "timestamp": "2017-05-02" + "user": "CREMIN SHAWNA", + "timestamp": "2019-07-20" }, { + "uuid": "4ae62057-4103-430a-af7d-21423cf06842", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "HAUCK RANDALL", - "timestamp": "2023-01-15" + "user": "KUHIC DARON", + "timestamp": "2018-09-25" }, { - "siteRegistry": false, + "uuid": "5dd61f1f-65ab-48d7-8e0c-4cba1e8ccb94", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "HERMAN GENOVEVA", - "timestamp": "2016-10-26" + "user": "BORER STEPHEN", + "timestamp": "2021-05-09" }, { + "uuid": "92d95342-93b8-47a7-9d5c-b7016a77437d", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "MOEN EZEQUIEL", - "timestamp": "2021-03-02" + "user": "WELCH HADLEY", + "timestamp": "2022-03-31" + }, + { + "uuid": "c49eff23-933a-4b40-bf13-ab4492ba0640", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "HEGMANN HANNA", + "timestamp": "2016-09-13" } ], "associatedSites": [ { - "dateNoted": "2016-08-03", + "uuid": "ec594576-418f-458d-8178-07e4decba1b9", + "dateNoted": "2014-08-17", "notes": "", - "parcelID": "19788", - "siteID": "20833", + "parcelID": "19688", + "siteID": "18395", "siteRegistry": true }, { - "dateNoted": "2014-05-19", + "uuid": "0efa87ae-c8ec-45ac-a7e4-8b8af2b0f2d1", + "dateNoted": "2023-04-26", + "notes": "", + "parcelID": "17313", + "siteID": "16364", + "siteRegistry": false + }, + { + "uuid": "c15046a7-c245-4f30-8653-40772cc8088c", + "dateNoted": "2019-02-14", "notes": "", - "parcelID": "20272", - "siteID": "18134", + "parcelID": "18557", + "siteID": "15432", "siteRegistry": true } ] }, { - "uuid": "f1e69548-c901-41f5-aa5d-f4d2fba3979a", - "siteID": 17707, - "address": "9340 Xzavier Path", - "latitude": 58.4957, - "longitude": -129.829, - "lastUpdated": "2015-01-31", - "city": "Tillmanboro", - "region": " North Coast", - "victoriaFile": "26250-20/2852", + "uuid": "0f3e50d5-3f68-4e4b-a003-885566fd30fc", + "siteID": 19995, + "address": "42607 Hessel Flats", + "latitude": 51.1376, + "longitude": -136.2537, + "lastUpdated": "2013-12-24", + "city": "Longmont", + "region": "Kootenay", + "victoriaFile": "26250-20/5665", "regionalFile": "N/A", "parcelIDs": [ - 5461663, - 5104111, - 4777997, - 7716148, - 7473807 + 1237349, + 9177098, + 574110, + 4068671, + 6177624 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2022-04-18", - "completed": "2019-01-27", - "initiated": "2021-02-13", - "ministryContact": "PAUCEK WILLIE", + "uuid": "4dd7933f-1df6-49df-93be-87851cdc0519", + "createdAt": "2021-02-03", + "completed": "2017-04-12", + "initiated": "2014-04-17", + "ministryContact": "PFANNERSTILL HILARIO", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -40777,28 +47370,60 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", + "uuid": "5434ebb4-2ccd-40e3-a261-29e718f04f65", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "ca0886fe-269e-4012-8a8d-321f1d8045c7", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false }, { + "uuid": "f2ceb073-4a89-4794-a319-acb52b35b2fd", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "uuid": "1fe1a1fa-1f4f-4ff9-bfb3-fe3c7c8b4e76", + "createdAt": "2021-04-08", + "completed": "2022-10-21", + "initiated": "2014-12-15", + "ministryContact": "WEBER JOHATHAN", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "uuid": "9ea32eae-05de-488a-aae4-b2c901bca43d", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": false }, { + "uuid": "d783a0f7-fa85-419c-b7fc-bdccbe7b26d5", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2015-01-30", - "completed": "2017-10-17", - "initiated": "2021-06-30", - "ministryContact": "WISOZK JIMMY", + "uuid": "1523ce47-4997-44f3-8e19-0ffbd3445b76", + "createdAt": "2022-06-26", + "completed": "2019-06-04", + "initiated": "2022-01-11", + "ministryContact": "REICHEL ZECHARIAH", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -40807,33 +47432,44 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true + "uuid": "e02ec13c-7f36-43a4-ab8d-2e953d917642", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "e7a38a0e-08eb-488a-8c08-a5c99854b088", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false }, { + "uuid": "b07df638-3b0c-4073-b466-02121a740481", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { + "uuid": "28d339d7-7051-4c0e-af7c-b5e3fcb2ae76", "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "uuid": "77154509-a061-4ccb-a053-4565b0a56bb0", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true } ], "siteRegistry": false }, { - "createdAt": "2014-09-08", - "completed": "2015-03-15", - "initiated": "2017-10-13", - "ministryContact": "HEANEY WILBERT", + "uuid": "be106ffa-d680-4fc5-96b0-c23d9655f547", + "createdAt": "2015-01-18", + "completed": "2018-10-17", + "initiated": "2014-11-07", + "ministryContact": "PAUCEK MAY", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -40842,23 +47478,26 @@ ], "notationParticipants": [ { + "uuid": "274f79a3-f216-4efd-a501-4786d63b3684", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { + "uuid": "e101a48f-6164-441b-b3d2-27c7c3b0b63e", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false + "role": "SUBMITTED BY", + "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2016-03-15", - "completed": "2013-11-03", - "initiated": "2019-07-14", - "ministryContact": "PADBERG KAYDEN", + "uuid": "e88cf42e-c747-4eaa-9846-ef2c1337b69a", + "createdAt": "2017-02-17", + "completed": "2017-04-13", + "initiated": "2021-06-15", + "ministryContact": "HILLS MARIBEL", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -40867,231 +47506,266 @@ ], "notationParticipants": [ { + "uuid": "d07a4087-7064-46a6-a3ef-894bf6cf6e67", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false }, { + "uuid": "37f13f74-109d-41a3-b8bd-41238a2741d5", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "7dc5e739-ca5e-4101-8c13-e2a91746d7cd", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", + "uuid": "cf165e6c-beeb-44fd-b464-521084456933", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true + }, + { + "uuid": "f16c4b67-8b87-4036-861b-9fb9d44d46a9", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true } ], "participants": [ { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2015-12-04", - "startDate": "2022-06-28", + "uuid": "8c5db168-19fa-4668-8892-058d8b581d9e", + "name": "IPSUM", + "endDate": "2023-07-16", + "startDate": "2015-04-21", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2016-03-11", - "startDate": "2017-10-24", + "uuid": "f0edbd52-2db7-4b4e-b528-70f50b6eeb5a", + "name": "AMET, DOLOR SIT", + "endDate": "2023-06-24", + "startDate": "2017-11-03", "notes": "", "roles": [ "EMPLOYEE" ], "siteRegistry": false - } - ], - "suspectLandUses": [ - { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-05-20 (described on Site Profile dated 2018-05-20)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2023-05-13 (described on Site Profile dated 2023-05-13)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "uuid": "5d9e0e68-a789-4444-a295-3ef030110d56", + "name": "IPSUM", + "endDate": "2017-04-08", + "startDate": "2023-05-10", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false }, { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-10-09 (described on Site Profile dated 2021-10-09)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "uuid": "db934b60-332c-4913-9d7a-2cef3878cd51", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2020-08-06", + "startDate": "2016-06-30", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false }, { + "uuid": "474c4324-bc3a-4401-b36d-f19926807387", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2013-11-24", + "startDate": "2018-07-31", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + } + ], + "suspectLandUses": [ + { + "uuid": "2b780fb7-4a59-4874-9ed8-39c5bab62c4a", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-10-15 (described on Site Profile dated 2016-10-15)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "notes": "INSERTED FOR SITE PROFILE DATED 2019-06-15 (described on Site Profile dated 2019-06-15)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { + "uuid": "6a0c30e8-c01c-4cd6-a364-a9fcf64b29a3", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-12-21 (described on Site Profile dated 2016-12-21)", + "notes": "INSERTED FOR SITE PROFILE DATED 2022-12-24 (described on Site Profile dated 2022-12-24)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], "parcelDescriptions": [ { - "siteRegistry": true, - "dateNoted": "2015-06-01", - "parcelID": "19476", - "crownLandUsePIN": "20731", - "crownLandFileNumber": "16389", - "landDescription": "LOT 3 OF LOT 3 BLOCK 1 DISTRICT LOT 2 PLAN 9132" + "uuid": "07c945d4-e7ba-4040-89b3-f8c4d89e6dec", + "siteRegistry": false, + "dateNoted": "2014-12-15", + "parcelID": "16924", + "crownLandUsePIN": "15767", + "crownLandFileNumber": "18319", + "landDescription": "LOT 2 OF LOT 3 BLOCK 2 DISTRICT LOT 4 PLAN 8038" }, { - "siteRegistry": false, - "dateNoted": "2023-09-16", - "parcelID": "18282", - "crownLandUsePIN": "19910", - "crownLandFileNumber": "20975", - "landDescription": "LOT 2 OF LOT 3 BLOCK 3 DISTRICT LOT 5 PLAN 3413" + "uuid": "58c3520e-79e8-48d6-82a9-0d56b47d0d14", + "siteRegistry": true, + "dateNoted": "2014-11-27", + "parcelID": "16608", + "crownLandUsePIN": "16121", + "crownLandFileNumber": "18602", + "landDescription": "LOT 2 OF LOT 4 BLOCK 4 DISTRICT LOT 3 PLAN 6756" } ], "siteDisclosures": [ { + "uuid": "b8a6fbc3-8126-4fcc-8a38-4ffa556dff67", "siteRegistry": false, - "dateReceived": "2022-11-07", - "dateCompleted": "2023-01-02", - "dateEntered": "2017-08-25", - "dateRegistrar": "2022-12-11", - "dateLocalAuthorityReceived": "2023-01-03", - "summary": "Voluptatem asperiores voluptatem ut eos sed modi eveniet ipsum suscipit.\nCorrupti voluptatibus vitae explicabo quibusdam animi magni maiores.", - "informationUsed": "Velit cumque sed illo nihil et aliquam voluptatum alias illum.\nBlanditiis nesciunt asperiores ullam aut.\nSoluta hic repudiandae necessitatibus repudiandae quam reiciendis quod repudiandae.\nSunt corrupti saepe pariatur.", - "pastOrPresentOrders": "Accusamus eos aut accusantium distinctio quam autem quidem.\nFacere ad accusamus veritatis maiores consequuntur impedit necessitatibus.", + "dateReceived": "2014-02-05", + "dateCompleted": "2014-11-04", + "dateEntered": "2018-01-15", + "dateRegistrar": "2016-11-17", + "dateLocalAuthorityReceived": "2019-04-16", + "summary": "Iste adipisci id eligendi labore recusandae quasi molestiae aperiam.\nDolore officiis autem libero ipsa mollitia voluptatum laudantium pariatur.\nQuisquam accusantium nobis sint officia mollitia.", + "informationUsed": "Reprehenderit reiciendis molestiae enim voluptatibus at.\nQuam modi quam.\nCommodi blanditiis voluptate nulla dolor architecto fugiat.", + "pastOrPresentOrders": "Aut sunt enim a.\nDistinctio voluptatem voluptates ullam soluta modi at quos asperiores hic.\nEnim expedita nesciunt earum assumenda.", "commercialAndIndustrialPurposes": [ { - "scheduleReference": "F2*", + "uuid": "4f44ca7b-4847-4b5f-a3c1-00a1ad0302f6", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false + "siteRegistry": true }, { - "scheduleReference": "F1*", + "uuid": "30e0f75a-32b7-4d90-b335-0de36a0f84cd", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false - }, + "siteRegistry": true + } + ] + }, + { + "uuid": "96dfa189-b36d-4f5a-be69-87deb2a6422d", + "siteRegistry": true, + "dateReceived": "2020-05-26", + "dateCompleted": "2014-02-22", + "dateEntered": "2021-08-07", + "dateRegistrar": "2022-06-26", + "dateLocalAuthorityReceived": "2022-12-02", + "summary": "Ad consequatur doloribus a recusandae.\nUt minima vel aperiam.\nOdit facilis debitis omnis ab ea exercitationem iste ex iusto.", + "informationUsed": "Praesentium ea doloribus autem aliquam nobis.\nDebitis incidunt excepturi nihil reprehenderit ut ipsa.\nFacere dolorum quos illum voluptatum temporibus vero.", + "pastOrPresentOrders": "Et veniam minima rerum alias consectetur harum distinctio.\nInventore quod quae.", + "commercialAndIndustrialPurposes": [ { + "uuid": "660ce9fb-1ae0-4e1c-88a2-5683f01241eb", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false + "siteRegistry": true }, { + "uuid": "b34c2298-54e0-4a19-9082-cd1a71f9bab5", "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false } ] } ], "activityLog": [ { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "BROWN SAIGE", - "timestamp": "2015-02-07" - }, - { - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "WALTER CHELSIE", - "timestamp": "2016-04-07" - }, - { - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "KIHN VINCENZO", - "timestamp": "2019-05-20" - }, - { + "uuid": "fbb65219-de02-4eb7-bbb4-68bd3678687f", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "ZBONCAK JO", - "timestamp": "2014-12-14" + "user": "BARTOLETTI CASEY", + "timestamp": "2020-05-31" }, { + "uuid": "ddc1bdfc-8775-4d6b-b42e-245df3134a8d", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "WIZA THOMAS", - "timestamp": "2018-10-25" - }, - { - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "HAMILL DANYKA", - "timestamp": "2014-11-13" + "user": "ROGAHN CHRISTA", + "timestamp": "2019-01-23" }, { + "uuid": "3c69255c-2eda-484d-b3ea-d29e21e81be3", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "RUECKER CLAY", - "timestamp": "2019-04-03" + "user": "RAYNOR-HAAG PERCIVAL", + "timestamp": "2019-07-31" }, { + "uuid": "2e5deab4-e278-4f80-a583-28bb0e91193c", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "FARRELL OFELIA", - "timestamp": "2019-06-15" + "user": "KOELPIN ELENA", + "timestamp": "2014-12-25" }, { + "uuid": "4c2da16f-7ab0-4583-bf24-3bc3d2f0909f", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "MCCULLOUGH MICHEL", - "timestamp": "2021-05-30" + "user": "BERGSTROM JEDIDIAH", + "timestamp": "2014-03-22" } ], "associatedSites": [ { - "dateNoted": "2016-04-21", + "uuid": "e869eeea-aec8-4401-ada6-47a8142aa8de", + "dateNoted": "2018-05-21", "notes": "", - "parcelID": "19355", - "siteID": "18727", - "siteRegistry": false - }, - { - "dateNoted": "2014-01-25", - "notes": "", - "parcelID": "19389", - "siteID": "16933", + "parcelID": "16156", + "siteID": "18311", "siteRegistry": true }, { - "dateNoted": "2014-04-08", + "uuid": "b462cb6b-b570-42ac-ab7c-64ce788c3dfd", + "dateNoted": "2016-08-02", "notes": "", - "parcelID": "20458", - "siteID": "18587", - "siteRegistry": false + "parcelID": "15629", + "siteID": "20626", + "siteRegistry": true } ] }, { - "uuid": "b656aa88-d890-4a18-be82-9ac35961f689", - "siteID": 18225, - "address": "4910 Wehner Rest", - "latitude": 52.4639, - "longitude": -118.4923, - "lastUpdated": "2019-02-18", - "city": "East Laurenmouth", - "region": "Mainland/Southwest", - "victoriaFile": "26250-20/6671", + "uuid": "21a28d3a-6187-4b47-81e0-25568c38e2d3", + "siteID": 16017, + "address": "451 Tate Fall", + "latitude": 52.3354, + "longitude": -127.5588, + "lastUpdated": "2022-06-14", + "city": "Lake Daytonboro", + "region": "Cariboo", + "victoriaFile": "26250-20/6160", "regionalFile": "N/A", "parcelIDs": [ - 3040999, - 1798385, - 6534508, - 1646194, - 7152392 + 3151156, + 4673688, + 1455326, + 5254544, + 7930094 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2022-09-07", - "completed": "2014-04-02", - "initiated": "2021-06-15", - "ministryContact": "FAY MOSE", + "uuid": "9be9cf02-1ad0-40e6-b826-9c2e463fb873", + "createdAt": "2018-10-15", + "completed": "2022-08-19", + "initiated": "2016-06-01", + "ministryContact": "QUIGLEY CATALINA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -41100,33 +47774,26 @@ ], "notationParticipants": [ { + "uuid": "7b6b39a2-6f32-4049-8ea5-2c2ac3ab1f4b", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { + "uuid": "9a2c8fb9-804f-4da3-8f76-606e28bab9a3", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2015-12-19", - "completed": "2019-07-14", - "initiated": "2014-06-11", - "ministryContact": "HETTINGER-KUTCH BURLEY", + "uuid": "bd993e0e-1211-4455-baf0-fa55a1a9b4f4", + "createdAt": "2023-03-11", + "completed": "2023-01-13", + "initiated": "2016-02-21", + "ministryContact": "BOGISICH TITO", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -41135,12 +47802,14 @@ ], "notationParticipants": [ { + "uuid": "970cbee3-5ee9-43f3-a114-1e60cbae6c2a", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false + "role": "SUBMITTED BY", + "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", + "uuid": "1461d583-a9d2-40f0-aff9-93b0cb5b97fe", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true } @@ -41148,10 +47817,11 @@ "siteRegistry": true }, { - "createdAt": "2023-01-28", - "completed": "2016-03-10", - "initiated": "2021-05-01", - "ministryContact": "MCKENZIE ABBEY", + "uuid": "f57b4023-f8d5-4007-88b6-98b8b4fc3481", + "createdAt": "2014-09-20", + "completed": "2018-03-02", + "initiated": "2018-08-11", + "ministryContact": "LUETTGEN POLLY", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -41160,59 +47830,33 @@ ], "notationParticipants": [ { + "uuid": "b2fbef81-cea0-4d48-8bd2-63a806825d34", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - } - ], - "siteRegistry": false - }, - { - "createdAt": "2023-08-09", - "completed": "2020-02-02", - "initiated": "2018-08-10", - "ministryContact": "VOLKMAN MAX", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", + "uuid": "cacf931f-0e68-4c79-bebd-62644ad365cc", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", "siteRegistry": true }, { + "uuid": "6b2e59d9-9a3c-4daf-ad82-34a4e76dcd29", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false + "role": "REQUESTED BY", + "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true } ], "participants": [ { - "name": "AMET, DOLOR SIT", - "endDate": "2014-06-02", - "startDate": "2022-09-10", + "uuid": "4dad9da6-376f-4902-80d0-dd3597ad635c", + "name": "IPSUM", + "endDate": "2014-06-04", + "startDate": "2018-01-05", "notes": "", "roles": [ "EMPLOYEE" @@ -41220,120 +47864,118 @@ "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2021-10-27", - "startDate": "2018-07-03", + "uuid": "9d71ce5e-42df-430e-8abc-821297a79d03", + "name": "IPSUM", + "endDate": "2019-06-17", + "startDate": "2022-07-16", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2018-05-14", - "startDate": "2015-03-18", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": false + "siteRegistry": true }, { + "uuid": "478f3bf9-8aff-4c6b-964b-b530cbb2123e", "name": "IPSUM", - "endDate": "2020-05-27", - "startDate": "2022-03-15", + "endDate": "2022-08-05", + "startDate": "2017-03-13", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true } ], "suspectLandUses": [ { + "uuid": "6a5f9e2c-788e-4f76-90d2-3c63de67d3aa", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-04-18 (described on Site Profile dated 2014-04-18)", + "notes": "INSERTED FOR SITE PROFILE DATED 2020-04-28 (described on Site Profile dated 2020-04-28)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-07-16 (described on Site Profile dated 2021-07-16)", + "uuid": "a1190019-edf8-4683-a0a2-550468e7360e", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2022-04-18 (described on Site Profile dated 2022-04-18)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-03-29 (described on Site Profile dated 2018-03-29)", + "uuid": "cbfce622-bbb4-4583-9451-250b52168f0a", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2016-09-10 (described on Site Profile dated 2016-09-10)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-09-16 (described on Site Profile dated 2014-09-16)", + "uuid": "a80b4dee-0d69-4deb-8951-5127598bf1a2", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2021-02-20 (described on Site Profile dated 2021-02-20)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], "parcelDescriptions": [ { - "siteRegistry": true, - "dateNoted": "2016-01-10", - "parcelID": "16004", - "crownLandUsePIN": "17666", - "crownLandFileNumber": "17583", - "landDescription": "LOT 3 OF LOT 3 BLOCK 2 DISTRICT LOT 5 PLAN 3449" + "uuid": "0234071e-9649-4f85-873a-26e461a63c2a", + "siteRegistry": false, + "dateNoted": "2020-07-30", + "parcelID": "19629", + "crownLandUsePIN": "16692", + "crownLandFileNumber": "16428", + "landDescription": "LOT 2 OF LOT 3 BLOCK 5 DISTRICT LOT 5 PLAN 9370" }, { + "uuid": "77738675-1676-4214-9c1b-c87efc73ad7c", "siteRegistry": true, - "dateNoted": "2021-09-21", - "parcelID": "16801", - "crownLandUsePIN": "18620", - "crownLandFileNumber": "15873", - "landDescription": "LOT 5 OF LOT 5 BLOCK 1 DISTRICT LOT 3 PLAN 7248" - }, - { - "siteRegistry": false, - "dateNoted": "2019-11-09", - "parcelID": "15598", - "crownLandUsePIN": "15419", - "crownLandFileNumber": "17213", - "landDescription": "LOT 3 OF LOT 1 BLOCK 4 DISTRICT LOT 1 PLAN 6756" + "dateNoted": "2017-10-23", + "parcelID": "15242", + "crownLandUsePIN": "20201", + "crownLandFileNumber": "19864", + "landDescription": "LOT 4 OF LOT 3 BLOCK 2 DISTRICT LOT 5 PLAN 6332" }, { + "uuid": "6349d223-9e3c-4786-986b-9f4b2410cfb3", "siteRegistry": false, - "dateNoted": "2014-06-28", - "parcelID": "20475", - "crownLandUsePIN": "19563", - "crownLandFileNumber": "15375", - "landDescription": "LOT 5 OF LOT 5 BLOCK 1 DISTRICT LOT 5 PLAN 8314" - }, - { - "siteRegistry": true, - "dateNoted": "2013-11-01", - "parcelID": "15480", - "crownLandUsePIN": "19975", - "crownLandFileNumber": "20177", - "landDescription": "LOT 5 OF LOT 1 BLOCK 1 DISTRICT LOT 3 PLAN 6167" + "dateNoted": "2018-04-26", + "parcelID": "17459", + "crownLandUsePIN": "18478", + "crownLandFileNumber": "17036", + "landDescription": "LOT 2 OF LOT 5 BLOCK 2 DISTRICT LOT 5 PLAN 7913" } ], "siteDisclosures": [ { + "uuid": "dd00a50d-ea35-439e-a5df-c70be3e33797", "siteRegistry": false, - "dateReceived": "2014-01-02", - "dateCompleted": "2017-12-29", - "dateEntered": "2019-10-05", - "dateRegistrar": "2023-02-19", - "dateLocalAuthorityReceived": "2017-09-25", - "summary": "Quisquam voluptates natus voluptatibus voluptate.\nVoluptate beatae odio sit saepe illo unde sapiente.\nImpedit reiciendis facere cum dolorem.", - "informationUsed": "Ipsam ratione debitis.\nAdipisci sit laboriosam omnis sunt temporibus quasi quisquam.\nTemporibus cumque error quos exercitationem alias ex optio.\nQui veniam iusto sint.", - "pastOrPresentOrders": "Inventore occaecati quidem pariatur.", + "dateReceived": "2023-04-15", + "dateCompleted": "2015-04-19", + "dateEntered": "2014-06-24", + "dateRegistrar": "2014-08-11", + "dateLocalAuthorityReceived": "2020-05-03", + "summary": "Magnam quae exercitationem adipisci architecto et.\nNam necessitatibus dolorem.\nOptio assumenda reprehenderit iusto ipsam expedita suscipit aliquid impedit nulla.", + "informationUsed": "Quos atque neque quis aut velit rem eligendi ipsa vitae.\nCumque totam aut ut.\nMaxime fugiat saepe reiciendis alias voluptate fugit corrupti.", + "pastOrPresentOrders": "Dolore magnam suscipit facere provident possimus delectus est iste.\nCulpa rem corrupti labore quod.", "commercialAndIndustrialPurposes": [ { + "uuid": "cba4ed54-4500-473a-a25d-63592f7d656c", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "uuid": "4781f22c-ec57-4a7e-833b-f34032fad3f0", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { + "uuid": "5f74c82b-4079-43f4-8868-503d86dd6fa0", "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "uuid": "07ec0680-919c-4350-8edc-88f54d174e71", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true } ] @@ -41341,85 +47983,113 @@ ], "activityLog": [ { + "uuid": "c80fc434-1cd0-4e94-bbf3-e4c3f73b704d", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "KLEIN KAELYN", - "timestamp": "2020-06-16" + "user": "BOGAN MILAN", + "timestamp": "2019-09-10" + }, + { + "uuid": "c8459225-0b5f-49b0-8bbd-5101e099dece", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "BERNHARD ELNORA", + "timestamp": "2023-01-17" }, { + "uuid": "f986ae97-2a79-4153-b738-feece3991645", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "SCHNEIDER LYNN", - "timestamp": "2015-11-17" + "user": "LEDNER-BRAKUS FABIAN", + "timestamp": "2018-04-05" + }, + { + "uuid": "d57168df-6be7-4c31-953a-3e66615cdb32", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "HANE VITO", + "timestamp": "2013-12-15" }, { + "uuid": "805a7229-30c3-4113-b2dd-b0db757ef635", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "JOHNS LORENZA", - "timestamp": "2021-06-03" + "user": "BASHIRIAN ANAHI", + "timestamp": "2021-06-09" }, { + "uuid": "de489e56-93db-4d69-a7ad-6120a71aff83", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "HODKIEWICZ FREEMAN", - "timestamp": "2016-03-17" + "user": "WUNSCH ALEK", + "timestamp": "2017-11-03" }, { - "siteRegistry": false, + "uuid": "d3baab9a-a9c4-4335-b5e7-dfd9d7e4221f", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "KLING FERNANDO", - "timestamp": "2022-06-08" - } - ], - "associatedSites": [ + "user": "FISHER AVIS", + "timestamp": "2023-07-28" + }, { - "dateNoted": "2016-06-08", - "notes": "", - "parcelID": "17456", - "siteID": "19583", - "siteRegistry": true + "uuid": "9cff013a-8ec5-454e-84f0-661f1bc79c30", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "WILL TERENCE", + "timestamp": "2016-10-31" }, { - "dateNoted": "2020-07-30", - "notes": "", - "parcelID": "17522", - "siteID": "17386", - "siteRegistry": false + "uuid": "0620da38-0337-416d-90b9-dcfda8af6b4d", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "KERTZMANN SHANY", + "timestamp": "2017-01-28" }, { - "dateNoted": "2021-07-29", + "uuid": "41e4774f-8f17-4cc5-8f3c-ccf5d81c5024", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "DOYLE JUDD", + "timestamp": "2023-06-25" + } + ], + "associatedSites": [ + { + "uuid": "942184ad-b15b-487e-9b1e-bc02179cb7ec", + "dateNoted": "2022-08-04", "notes": "", - "parcelID": "16280", - "siteID": "16938", + "parcelID": "16257", + "siteID": "20536", "siteRegistry": false } ] }, { - "uuid": "e33d0502-290d-4db7-8d5f-d3197578cce4", - "siteID": 15630, - "address": "66764 Myles Mews", - "latitude": 57.1531, - "longitude": -118.8848, - "lastUpdated": "2015-09-06", - "city": "Fort Orin", - "region": "Kootenay", - "victoriaFile": "26250-20/7912", + "uuid": "4f77cf8e-09a9-4f53-8248-96f04e95b2a1", + "siteID": 15212, + "address": "541 Nikolaus Junction", + "latitude": 57.5079, + "longitude": -136.7904, + "lastUpdated": "2021-07-31", + "city": "Gastonia", + "region": "Mainland/Southwest", + "victoriaFile": "26250-20/7966", "regionalFile": "N/A", "parcelIDs": [ - 7525329, - 4445740, - 8998721, - 392401, - 8853485 + 4951660, + 4461934, + 1688213, + 9670690, + 8614450 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2018-10-02", - "completed": "2017-05-08", - "initiated": "2021-08-10", - "ministryContact": "CORMIER ELIAN", + "uuid": "9ffcc903-e57c-468d-a7ee-4f7ec21bbf07", + "createdAt": "2014-08-27", + "completed": "2022-03-12", + "initiated": "2020-03-22", + "ministryContact": "NITZSCHE HALEY", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -41428,33 +48098,78 @@ ], "notationParticipants": [ { + "uuid": "d86dae3c-28f8-46f4-bda5-21e83c95a7b1", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "uuid": "3faff3cc-a1e5-4043-a217-8d47ae161980", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "b2d4bff6-4aad-43d0-b205-595b305d21a3", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false }, { + "uuid": "01cf7e4b-6319-4efc-9f5f-fd20ebd13df2", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { + "uuid": "8a4add04-3a88-480d-9891-9a40200b6dcc", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "uuid": "c82a6526-f6bb-4ab7-af01-6613948719a4", + "createdAt": "2016-04-11", + "completed": "2019-08-20", + "initiated": "2014-12-27", + "ministryContact": "NIENOW-CRONA ZORA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "uuid": "4d877168-9a69-41d4-b3be-4cabd7c638fd", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true }, { + "uuid": "971ace4a-e760-4336-b087-0b356f060ca8", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "uuid": "7279af83-e0b9-4e79-88be-09b681fca826", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false } ], "siteRegistry": true }, { - "createdAt": "2022-05-02", - "completed": "2013-11-27", - "initiated": "2014-08-25", - "ministryContact": "KUTCH WENDY", + "uuid": "5a3e2f22-2c69-40cc-8fdb-7ab84bb8e596", + "createdAt": "2020-11-09", + "completed": "2021-04-11", + "initiated": "2020-06-19", + "ministryContact": "DICKENS NEDRA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -41463,64 +48178,38 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "e2c6b487-a858-41b7-b77a-4980016f9e36", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { + "uuid": "93e3e9d7-21ec-45c7-b9c9-67350bea06de", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false } ], "participants": [ { + "uuid": "8dd0f3a8-d7b8-468b-9525-9f04babaad32", "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2016-10-05", - "startDate": "2016-06-17", + "endDate": "2016-02-24", + "startDate": "2015-01-21", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2016-05-21", - "startDate": "2015-05-22", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2023-05-25", - "startDate": "2019-04-16", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2015-01-02", - "startDate": "2023-04-11", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": false - }, - { - "name": "IPSUM", - "endDate": "2018-08-01", - "startDate": "2021-12-03", + "uuid": "455e8b89-a778-4788-8a74-4cd38641fe53", + "name": "AMET, DOLOR SIT", + "endDate": "2014-12-15", + "startDate": "2020-11-30", "notes": "", "roles": [ "EMPLOYEE" @@ -41530,202 +48219,231 @@ ], "suspectLandUses": [ { + "uuid": "89b02154-9217-409e-b5f8-197aa3c6429e", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-03-31 (described on Site Profile dated 2018-03-31)", + "notes": "INSERTED FOR SITE PROFILE DATED 2020-05-06 (described on Site Profile dated 2020-05-06)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { + "uuid": "4e24b684-5d0d-44dc-b885-0c35d1316ca6", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-06-03 (described on Site Profile dated 2016-06-03)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" - }, - { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-01-13 (described on Site Profile dated 2019-01-13)", + "notes": "INSERTED FOR SITE PROFILE DATED 2015-09-30 (described on Site Profile dated 2015-09-30)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], "parcelDescriptions": [ { - "siteRegistry": false, - "dateNoted": "2022-10-09", - "parcelID": "17832", - "crownLandUsePIN": "18115", - "crownLandFileNumber": "20864", - "landDescription": "LOT 1 OF LOT 1 BLOCK 5 DISTRICT LOT 2 PLAN 3741" - }, - { + "uuid": "72579ff6-8b62-4397-9e9f-dab80cb4efa9", "siteRegistry": true, - "dateNoted": "2021-07-08", - "parcelID": "17256", - "crownLandUsePIN": "16412", - "crownLandFileNumber": "18210", - "landDescription": "LOT 5 OF LOT 2 BLOCK 1 DISTRICT LOT 1 PLAN 9430" + "dateNoted": "2021-10-31", + "parcelID": "18149", + "crownLandUsePIN": "17547", + "crownLandFileNumber": "15527", + "landDescription": "LOT 3 OF LOT 3 BLOCK 3 DISTRICT LOT 4 PLAN 7843" }, { + "uuid": "293f393f-a831-4b07-b16e-dea3529fe2e4", "siteRegistry": false, - "dateNoted": "2020-07-01", - "parcelID": "19078", - "crownLandUsePIN": "20636", - "crownLandFileNumber": "18359", - "landDescription": "LOT 2 OF LOT 3 BLOCK 2 DISTRICT LOT 1 PLAN 3300" + "dateNoted": "2014-02-02", + "parcelID": "16512", + "crownLandUsePIN": "19954", + "crownLandFileNumber": "19128", + "landDescription": "LOT 2 OF LOT 4 BLOCK 3 DISTRICT LOT 4 PLAN 7553" }, { - "siteRegistry": true, - "dateNoted": "2020-12-04", - "parcelID": "19357", - "crownLandUsePIN": "18220", - "crownLandFileNumber": "18344", - "landDescription": "LOT 3 OF LOT 4 BLOCK 4 DISTRICT LOT 1 PLAN 4138" + "uuid": "0f21d30e-7cb2-4156-bef4-2e167cdc605b", + "siteRegistry": false, + "dateNoted": "2021-04-21", + "parcelID": "18498", + "crownLandUsePIN": "20429", + "crownLandFileNumber": "18925", + "landDescription": "LOT 5 OF LOT 3 BLOCK 1 DISTRICT LOT 4 PLAN 6310" }, { + "uuid": "7a906026-fdd1-4e4b-a0c7-8439474ea29d", "siteRegistry": false, - "dateNoted": "2017-12-01", - "parcelID": "20580", - "crownLandUsePIN": "16977", - "crownLandFileNumber": "20670", - "landDescription": "LOT 3 OF LOT 5 BLOCK 2 DISTRICT LOT 4 PLAN 4629" + "dateNoted": "2023-04-09", + "parcelID": "16248", + "crownLandUsePIN": "19058", + "crownLandFileNumber": "19365", + "landDescription": "LOT 1 OF LOT 3 BLOCK 4 DISTRICT LOT 1 PLAN 5818" } ], "siteDisclosures": [ { - "siteRegistry": false, - "dateReceived": "2020-12-16", - "dateCompleted": "2023-03-05", - "dateEntered": "2023-03-13", - "dateRegistrar": "2016-02-13", - "dateLocalAuthorityReceived": "2019-04-16", - "summary": "Sunt temporibus quia.\nDolorum magni voluptas.", - "informationUsed": "Quaerat animi tenetur necessitatibus quisquam reprehenderit.\nFacilis alias repellendus quas deserunt.\nSit delectus sapiente quam animi minima.\nNon voluptatibus beatae vel sint assumenda.", - "pastOrPresentOrders": "Voluptatum accusantium laboriosam saepe doloremque molestiae.\nLaborum hic ad ut saepe illum dolores.\nAutem quasi ut sequi magni pariatur quas necessitatibus quidem minus.", + "uuid": "19f04313-106b-47bb-8f2e-26ce0c9f6713", + "siteRegistry": true, + "dateReceived": "2016-08-13", + "dateCompleted": "2023-01-22", + "dateEntered": "2015-12-20", + "dateRegistrar": "2022-03-28", + "dateLocalAuthorityReceived": "2014-03-14", + "summary": "Veritatis voluptas non ex laborum consequuntur architecto cum.\nQuas saepe quo vel ipsam.", + "informationUsed": "Repellat non delectus corrupti.\nPariatur dolor placeat facere iusto dicta rerum.\nBlanditiis nemo ipsum laboriosam eos alias saepe sunt.", + "pastOrPresentOrders": "Officia beatae eligendi magni est tempore.\nInventore laudantium aliquam.", "commercialAndIndustrialPurposes": [ { + "uuid": "0413c690-082f-467d-83e5-2577074bde3d", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "uuid": "8132ed4c-2ab4-4738-8269-e19c1c138ddf", "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { + "uuid": "f69806f4-047c-46ae-aa26-1a533d1f2c5f", "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "uuid": "5600599d-5284-4e97-8af4-dd0499a956ff", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true } ] }, { - "siteRegistry": false, - "dateReceived": "2014-03-07", - "dateCompleted": "2014-08-11", - "dateEntered": "2017-01-19", - "dateRegistrar": "2018-04-08", - "dateLocalAuthorityReceived": "2022-11-06", - "summary": "Aliquam repellat temporibus corrupti architecto harum.\nLaboriosam quasi quae quos.", - "informationUsed": "Minus vero accusamus accusantium perferendis.\nRepudiandae vel eaque ad blanditiis itaque blanditiis placeat ducimus.\nFugiat saepe deleniti quam natus sint reiciendis iure asperiores nisi.", - "pastOrPresentOrders": "Velit pariatur animi officia possimus doloribus.", + "uuid": "4b418223-6670-4ed5-b958-dc8c9b1f6f60", + "siteRegistry": true, + "dateReceived": "2017-08-28", + "dateCompleted": "2020-04-10", + "dateEntered": "2018-04-14", + "dateRegistrar": "2018-01-08", + "dateLocalAuthorityReceived": "2022-12-17", + "summary": "Nesciunt exercitationem quisquam fuga nisi suscipit consequuntur a temporibus.\nDolorum excepturi ipsa.", + "informationUsed": "Beatae illo cum sequi ipsam distinctio tenetur.\nQuam sunt minus eum.\nEaque cupiditate minima alias optio impedit nemo mollitia deleniti.\nAtque dignissimos animi velit molestiae.", + "pastOrPresentOrders": "Incidunt numquam asperiores ipsa.\nExplicabo et animi hic ipsa exercitationem voluptate fuga voluptate.\nFacilis corporis corporis ut laborum voluptatum explicabo nam deleniti porro.", "commercialAndIndustrialPurposes": [ { - "scheduleReference": "F2*", + "uuid": "01fd8462-35f3-4947-b2e6-d2b47cf9874c", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false + "siteRegistry": true }, { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false + "uuid": "43068b81-f5dc-4775-9bd1-73dd301f905b", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true }, { - "scheduleReference": "F1*", + "uuid": "325bd203-74a4-4122-ad0f-e93f60fcb9ef", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false + "siteRegistry": true } ] } ], "activityLog": [ { + "uuid": "86391b7d-6b46-40b6-9a4b-202141f82b7b", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "SWIFT MIKE", - "timestamp": "2022-01-03" + "user": "ARMSTRONG-LEUSCHKE DONALD", + "timestamp": "2014-09-15" + }, + { + "uuid": "71247c27-1bfb-4b80-85fe-32cb21ec3db7", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "KESSLER CRYSTEL", + "timestamp": "2020-06-27" }, { + "uuid": "c78a3f90-ce94-4ce9-bd78-fbb1c1f6c517", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "ABBOTT MAUREEN", - "timestamp": "2018-12-01" + "user": "BEIER SOLEDAD", + "timestamp": "2017-06-11" }, { + "uuid": "87598dd6-0b60-4e2d-8d7b-7d2bb932beb7", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "AUFDERHAR SYBLE", - "timestamp": "2017-09-08" + "user": "BARTOLETTI DEVIN", + "timestamp": "2016-11-08" }, { + "uuid": "11500e14-35ca-4f33-b04a-06a27cd91427", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "BRADTKE ANTONIA", - "timestamp": "2017-11-12" + "user": "MARVIN ADRAIN", + "timestamp": "2017-09-05" }, { + "uuid": "a1fc24b9-e7fa-4f82-b756-08dbb430acc4", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "JENKINS ASHLYNN", - "timestamp": "2017-09-06" + "user": "RAYNOR GASTON", + "timestamp": "2023-10-01" }, { - "siteRegistry": false, + "uuid": "453121b8-989d-4874-a5be-07455f40c634", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "BOEHM ANGELITA", - "timestamp": "2020-06-16" + "user": "NICOLAS SYDNI", + "timestamp": "2014-08-30" }, { - "siteRegistry": false, + "uuid": "bddfaf70-e5bc-455f-b68c-82b31d004cda", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "CARTWRIGHT SAM", - "timestamp": "2023-05-21" + "user": "KREIGER DUNCAN", + "timestamp": "2019-04-16" } ], "associatedSites": [ { - "dateNoted": "2020-02-27", + "uuid": "087f7fba-9c7b-4e44-987e-3a8bea228044", + "dateNoted": "2014-10-31", "notes": "", - "parcelID": "15977", - "siteID": "18687", - "siteRegistry": false + "parcelID": "18497", + "siteID": "17371", + "siteRegistry": true }, { - "dateNoted": "2014-07-05", + "uuid": "23f04491-d336-49b2-8e5f-feabca2328ea", + "dateNoted": "2017-01-15", "notes": "", - "parcelID": "16988", - "siteID": "20992", - "siteRegistry": true + "parcelID": "17379", + "siteID": "20942", + "siteRegistry": false } ] }, { - "uuid": "8f8f2138-3ed1-49fb-b6e4-91d16052a3c5", - "siteID": 17116, - "address": "627 Purdy Curve", - "latitude": 54.0088, - "longitude": -126.3354, - "lastUpdated": "2014-08-20", - "city": "New Wyatt", - "region": "Vancouver Island/Coast", - "victoriaFile": "26250-20/17401", + "uuid": "24e219c5-3c03-482b-bc52-55c17ad13619", + "siteID": 20154, + "address": "18017 Fadel Mountain", + "latitude": 54.0723, + "longitude": -136.4067, + "lastUpdated": "2014-09-22", + "city": "East Cleve", + "region": "Mainland/Southwest", + "victoriaFile": "26250-20/1853", "regionalFile": "N/A", "parcelIDs": [ - 8869052, - 5425519, - 1525069, - 7669404, - 6075700 + 3988489, + 7009346, + 2104810, + 6063292, + 145484 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2022-10-11", - "completed": "2020-04-12", - "initiated": "2018-08-09", - "ministryContact": "YUNDT DEANGELO", + "uuid": "3e4b2a5f-a78b-4cc8-889e-90ae21b6f08e", + "createdAt": "2023-02-14", + "completed": "2015-03-19", + "initiated": "2020-09-19", + "ministryContact": "BERGE ASHTYN", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -41734,33 +48452,32 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "cdf9eb01-a6ab-4eaa-bc11-5e1d37b4cc5c", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "3b6e0e41-dd47-4d53-b6ca-627b0b0d7ec2", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { + "uuid": "d32c93ac-875a-4502-8893-e6c3d6ca3151", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2017-05-02", - "completed": "2021-07-04", - "initiated": "2014-02-26", - "ministryContact": "HEIDENREICH LESSIE", + "uuid": "cd2e5ebf-5e27-4119-aeb4-e38314c98c37", + "createdAt": "2013-11-26", + "completed": "2022-08-03", + "initiated": "2020-12-16", + "ministryContact": "MUELLER SAMMIE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -41769,39 +48486,50 @@ ], "notationParticipants": [ { + "uuid": "796afda4-6749-4f52-a082-b1447f69def2", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", + "uuid": "5a309493-d9c9-4c5d-8038-35db51ffa77e", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true }, { + "uuid": "6c6f8a6e-5b1c-48f1-8ae5-c287a90bbcaf", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "ed8abf29-c03a-451e-9d9b-8e2fddc77688", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false } ], "participants": [ { + "uuid": "5bf73f2f-85dc-495a-b017-4c55ae223b7f", "name": "SHELL CANADA PRODUCTS", - "endDate": "2016-12-27", - "startDate": "2013-10-26", + "endDate": "2015-10-18", + "startDate": "2023-04-09", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "uuid": "a71fc5e9-5a10-40d0-8efa-2872af2c4249", + "name": "IPSUM", + "endDate": "2021-08-04", + "startDate": "2017-03-19", "notes": "", "roles": [ "EMPLOYEE" @@ -41809,9 +48537,10 @@ "siteRegistry": false }, { + "uuid": "4627a41c-27a5-4aae-b46f-5b8d101c1a01", "name": "SHELL CANADA PRODUCTS", - "endDate": "2018-12-19", - "startDate": "2017-01-13", + "endDate": "2017-04-26", + "startDate": "2014-12-12", "notes": "", "roles": [ "EMPLOYEE" @@ -41819,227 +48548,222 @@ "siteRegistry": true }, { - "name": "IPSUM", - "endDate": "2021-08-07", - "startDate": "2019-11-11", + "uuid": "6cbf71b9-ad13-469a-840f-05e1ae28ccc4", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2015-03-31", + "startDate": "2022-07-03", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], - "siteRegistry": true + "siteRegistry": false } ], "suspectLandUses": [ { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-01-04 (described on Site Profile dated 2015-01-04)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" - }, - { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-02-03 (described on Site Profile dated 2015-02-03)", + "uuid": "67dd9f02-5bb1-4dae-ac53-d1261985c3c3", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2023-03-18 (described on Site Profile dated 2023-03-18)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { + "uuid": "e58802a5-a07d-4ec0-aa74-bffb2c357aa9", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2020-01-14 (described on Site Profile dated 2020-01-14)", + "notes": "INSERTED FOR SITE PROFILE DATED 2023-02-15 (described on Site Profile dated 2023-02-15)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { + "uuid": "a6cac033-262a-4108-9587-94bb970a5697", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-09-06 (described on Site Profile dated 2015-09-06)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" - }, - { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-12-21 (described on Site Profile dated 2014-12-21)", + "notes": "INSERTED FOR SITE PROFILE DATED 2016-10-04 (described on Site Profile dated 2016-10-04)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], "parcelDescriptions": [ { - "siteRegistry": true, - "dateNoted": "2020-09-18", - "parcelID": "20020", - "crownLandUsePIN": "19675", - "crownLandFileNumber": "15525", - "landDescription": "LOT 2 OF LOT 5 BLOCK 4 DISTRICT LOT 5 PLAN 9020" - }, - { - "siteRegistry": true, - "dateNoted": "2018-08-02", - "parcelID": "15873", - "crownLandUsePIN": "19065", - "crownLandFileNumber": "18439", - "landDescription": "LOT 4 OF LOT 3 BLOCK 2 DISTRICT LOT 4 PLAN 5600" - }, - { - "siteRegistry": true, - "dateNoted": "2022-03-06", - "parcelID": "17055", - "crownLandUsePIN": "20750", - "crownLandFileNumber": "20005", - "landDescription": "LOT 2 OF LOT 1 BLOCK 5 DISTRICT LOT 1 PLAN 9589" + "uuid": "1e82f2b7-28b4-498a-b94f-0f2345dab45f", + "siteRegistry": false, + "dateNoted": "2022-03-20", + "parcelID": "19175", + "crownLandUsePIN": "20441", + "crownLandFileNumber": "20233", + "landDescription": "LOT 5 OF LOT 4 BLOCK 5 DISTRICT LOT 5 PLAN 6319" }, { + "uuid": "3760b4e3-b205-475e-9844-2aed95e4f9b1", "siteRegistry": true, - "dateNoted": "2020-05-25", - "parcelID": "16068", - "crownLandUsePIN": "18496", - "crownLandFileNumber": "17099", - "landDescription": "LOT 2 OF LOT 1 BLOCK 2 DISTRICT LOT 5 PLAN 9429" + "dateNoted": "2014-03-31", + "parcelID": "19462", + "crownLandUsePIN": "18493", + "crownLandFileNumber": "19120", + "landDescription": "LOT 3 OF LOT 4 BLOCK 1 DISTRICT LOT 1 PLAN 7448" }, { + "uuid": "4e4e42e1-7d7a-4b4d-a50b-d725b6103179", "siteRegistry": false, - "dateNoted": "2013-11-23", - "parcelID": "19325", - "crownLandUsePIN": "15295", - "crownLandFileNumber": "17558", - "landDescription": "LOT 3 OF LOT 5 BLOCK 5 DISTRICT LOT 1 PLAN 6895" + "dateNoted": "2022-03-15", + "parcelID": "20400", + "crownLandUsePIN": "17133", + "crownLandFileNumber": "19333", + "landDescription": "LOT 5 OF LOT 5 BLOCK 4 DISTRICT LOT 4 PLAN 7229" } ], "siteDisclosures": [ { - "siteRegistry": false, - "dateReceived": "2023-01-25", - "dateCompleted": "2014-12-22", - "dateEntered": "2020-10-26", - "dateRegistrar": "2021-09-19", - "dateLocalAuthorityReceived": "2017-10-08", - "summary": "Magnam officia doloribus nulla sed esse quo commodi.", - "informationUsed": "Tempora cum iure eveniet a quos.\nVero unde saepe fuga tempore magnam provident at.\nUnde veniam neque illum magni eos vel excepturi.\nEius blanditiis dolore sit nulla minus dolor libero.\nCupiditate quae nulla tenetur.", - "pastOrPresentOrders": "Sequi eum qui repudiandae corrupti optio.\nConsequatur quia saepe cumque eos nulla quidem minima.\nVoluptate quis impedit laboriosam assumenda.", + "uuid": "d549831c-164d-4ffe-b874-dcbce93c5042", + "siteRegistry": true, + "dateReceived": "2015-09-17", + "dateCompleted": "2018-08-28", + "dateEntered": "2022-08-20", + "dateRegistrar": "2015-08-26", + "dateLocalAuthorityReceived": "2018-05-01", + "summary": "Ut minus dicta corporis repellat eveniet.\nRatione numquam neque nemo error quas repellendus.", + "informationUsed": "Dolorem minima odit libero.\nAt minus quisquam reprehenderit.\nQuidem soluta ab possimus amet saepe.\nCumque soluta odit explicabo totam harum.\nTenetur commodi ducimus distinctio nesciunt perferendis repellendus voluptatum iusto.", + "pastOrPresentOrders": "Doloremque dicta praesentium rerum dolore earum dolore architecto adipisci tempore.\nFugit tempore asperiores tempora molestias.", "commercialAndIndustrialPurposes": [ { - "scheduleReference": "F1*", + "uuid": "f64aa2e3-dc8f-40b9-b857-d06796fbe649", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false }, { - "scheduleReference": "F1*", + "uuid": "6d0a5e4c-c0d1-4048-9931-541b32d099e1", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true + "siteRegistry": false }, { - "scheduleReference": "F1*", + "uuid": "1bccaea8-8529-4646-ae04-b675fbb66e88", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false + "siteRegistry": true } ] }, { - "siteRegistry": true, - "dateReceived": "2015-02-16", - "dateCompleted": "2020-02-01", - "dateEntered": "2023-01-09", - "dateRegistrar": "2015-06-09", - "dateLocalAuthorityReceived": "2014-11-11", - "summary": "Quisquam dolore recusandae inventore saepe voluptates.", - "informationUsed": "Dignissimos illum maxime enim iure perspiciatis provident.\nSapiente reprehenderit assumenda quidem eum recusandae dicta quia nobis.\nDeserunt voluptates sunt ipsam accusantium molestias facere sapiente.", - "pastOrPresentOrders": "Debitis adipisci porro deleniti veritatis.\nCupiditate quasi dolorem veritatis nobis culpa et natus placeat aliquid.\nConsequuntur vero magnam illo voluptates.", + "uuid": "21b7eee9-d786-4654-97d7-ad6d508e2149", + "siteRegistry": false, + "dateReceived": "2017-08-26", + "dateCompleted": "2022-02-17", + "dateEntered": "2014-10-14", + "dateRegistrar": "2015-03-20", + "dateLocalAuthorityReceived": "2016-01-07", + "summary": "Iste earum voluptatibus atque vero debitis odit perferendis.\nModi minus tenetur.\nOfficiis optio expedita accusamus.", + "informationUsed": "Quis atque provident ad.\nLaudantium quo perferendis inventore illo odit id.\nInventore earum fugit voluptates sapiente ducimus ad nihil eum illum.\nDolorem quibusdam repellat perferendis.", + "pastOrPresentOrders": "Cumque voluptatum aperiam debitis maiores tempora et.\nModi nulla cumque dolorum odio exercitationem consectetur.\nRepellendus non cupiditate ullam ducimus atque.", "commercialAndIndustrialPurposes": [ { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false - }, - { + "uuid": "bcc506cf-74f3-4341-a94d-ad430fba215e", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false - }, - { + "uuid": "26716469-c630-4acc-879c-eb08a8d866ba", "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true } ] } ], "activityLog": [ { - "siteRegistry": false, + "uuid": "e81b3439-16b0-4d23-ab94-560750a5c378", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "ERDMAN JAMIR", - "timestamp": "2015-01-12" + "user": "LOWE CARMEN", + "timestamp": "2021-05-21" }, { - "siteRegistry": false, + "uuid": "f2073189-9a70-4988-aba1-cfa628cec0a0", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "HAMMES STANTON", - "timestamp": "2015-09-15" + "user": "LOWE DESTINEY", + "timestamp": "2016-12-04" }, { - "siteRegistry": false, + "uuid": "66bfd604-b2c6-4068-88d6-b9700ed093d5", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "SMITH SEAN", - "timestamp": "2019-03-23" + "user": "MUELLER FLETCHER", + "timestamp": "2018-01-29" }, { + "uuid": "a12ab3dd-9959-4ee5-92bf-9afd47178c76", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "WILL MERTIE", - "timestamp": "2023-05-21" + "user": "ROMAGUERA LAURIANE", + "timestamp": "2018-07-05" }, { + "uuid": "4b2a4b41-6dbf-4536-ac74-418fe723dab9", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "SCHULTZ KATELYN", - "timestamp": "2019-04-28" + "user": "CROOKS FRIDA", + "timestamp": "2021-02-18" }, { - "siteRegistry": false, + "uuid": "39a0a985-db14-4b63-9a20-a09c624c2432", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "WILLIAMSON SKYLA", - "timestamp": "2019-08-27" + "user": "GRADY NOVELLA", + "timestamp": "2019-09-14" }, { - "siteRegistry": false, + "uuid": "ddb1edc9-ab21-4367-9352-9797b378dd7a", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "HAGENES HOLDEN", - "timestamp": "2016-02-08" + "user": "BOGAN CLEMENTINA", + "timestamp": "2020-09-24" } ], "associatedSites": [ { - "dateNoted": "2017-05-16", + "uuid": "69f99c3e-1427-4d73-a126-36a4bc2d04d0", + "dateNoted": "2014-08-15", "notes": "", - "parcelID": "19144", - "siteID": "15994", - "siteRegistry": false + "parcelID": "19856", + "siteID": "16538", + "siteRegistry": true + }, + { + "uuid": "10478abb-92a1-4a34-b065-fcd133f128e3", + "dateNoted": "2015-03-15", + "notes": "", + "parcelID": "16588", + "siteID": "20872", + "siteRegistry": true } ] }, { - "uuid": "3d3ea79d-4894-419f-b3c9-c5989c6a7ec4", - "siteID": 20555, - "address": "17393 Lois Estate", - "latitude": 51.8321, - "longitude": -128.6502, - "lastUpdated": "2020-04-09", - "city": "Murrieta", + "uuid": "f2e45540-6141-421a-8c58-ed5996c3f0e0", + "siteID": 17483, + "address": "772 Breitenberg Terrace", + "latitude": 54.4863, + "longitude": -128.1123, + "lastUpdated": "2017-08-16", + "city": "Hackettcester", "region": "Cariboo", - "victoriaFile": "26250-20/5282", + "victoriaFile": "26250-20/10910", "regionalFile": "N/A", "parcelIDs": [ - 4738812, - 8694721, - 8596122, - 1238267, - 7450862 + 1821343, + 2180631, + 1325299, + 813981, + 282526 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2023-01-04", - "completed": "2020-06-19", - "initiated": "2015-09-02", - "ministryContact": "KOHLER FRANKIE", + "uuid": "9d3b4fa9-6b39-483e-a5ec-92699d856a62", + "createdAt": "2018-05-08", + "completed": "2022-03-08", + "initiated": "2017-10-07", + "ministryContact": "CARROLL CHARLEY", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -42048,28 +48772,26 @@ ], "notationParticipants": [ { + "uuid": "0b0fa727-6e1f-48e7-abf4-878a37f0f288", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { + "uuid": "1aca4eb6-e28a-4fda-8fc9-7a26ab1b5c82", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", "siteRegistry": true } ], "siteRegistry": false }, { - "createdAt": "2020-12-09", - "completed": "2020-08-29", - "initiated": "2021-02-17", - "ministryContact": "SKILES DON", + "uuid": "634d3e64-a1d7-4993-b9a9-21c7f733e52f", + "createdAt": "2022-03-26", + "completed": "2015-05-11", + "initiated": "2021-04-23", + "ministryContact": "BRAUN JAKE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -42078,94 +48800,61 @@ ], "notationParticipants": [ { + "uuid": "4dbef52d-f67b-4bb6-8baa-7e8c4634ff58", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { + "uuid": "b653eb6b-4b20-42be-b9f5-6d965a898762", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - } - ], - "siteRegistry": false - }, - { - "createdAt": "2014-03-07", - "completed": "2021-04-23", - "initiated": "2018-06-11", - "ministryContact": "NOLAN AISHA", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", "siteRegistry": true - } - ], - "siteRegistry": true - }, - { - "createdAt": "2015-05-30", - "completed": "2016-06-15", - "initiated": "2020-02-05", - "ministryContact": "WINDLER LINWOOD", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false }, { + "uuid": "553c85ab-c41d-4bdb-a634-d051b0414e85", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true }, { + "uuid": "ac845a8e-2a74-4135-8229-178bed12d0df", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false } ], "participants": [ { + "uuid": "1529922a-a935-4ae9-80a9-584a484077ec", + "name": "AMET, DOLOR SIT", + "endDate": "2020-11-06", + "startDate": "2020-11-30", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "uuid": "bc2e6e0d-a941-49fa-ab11-6c117f277d8a", "name": "SHELL CANADA PRODUCTS", - "endDate": "2017-02-18", - "startDate": "2018-09-18", + "endDate": "2016-01-21", + "startDate": "2017-03-25", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "uuid": "e74cb394-6e30-4774-9c76-d4780a9401be", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2020-02-06", + "startDate": "2021-06-27", "notes": "", "roles": [ "EMPLOYEE" @@ -42173,220 +48862,270 @@ "siteRegistry": true }, { + "uuid": "dd877da5-d6d1-41f4-bc6a-fd36bc4d3482", "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2023-05-23", - "startDate": "2013-11-26", + "endDate": "2023-03-30", + "startDate": "2016-07-24", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false + }, + { + "uuid": "440f6b3b-1cc0-4222-abb7-e8356246dcd4", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2021-03-10", + "startDate": "2015-10-09", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false } ], "suspectLandUses": [ { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-03-12 (described on Site Profile dated 2021-03-12)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" - }, - { + "uuid": "844175a0-f10a-4b46-8b15-8e2a5bce7287", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-01-15 (described on Site Profile dated 2018-01-15)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "notes": "INSERTED FOR SITE PROFILE DATED 2013-10-19 (described on Site Profile dated 2013-10-19)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { + "uuid": "82a70bf4-4790-4b9e-ae15-b74c0b1c6bd2", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-03-27 (described on Site Profile dated 2016-03-27)", + "notes": "INSERTED FOR SITE PROFILE DATED 2022-12-01 (described on Site Profile dated 2022-12-01)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { + "uuid": "51adea7a-47fe-4288-9a0c-968175328a8c", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-08-23 (described on Site Profile dated 2017-08-23)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "notes": "INSERTED FOR SITE PROFILE DATED 2013-12-25 (described on Site Profile dated 2013-12-25)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { + "uuid": "bc0b032b-653c-4d55-b895-d5b695ef1b8f", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-11-27 (described on Site Profile dated 2017-11-27)", + "notes": "INSERTED FOR SITE PROFILE DATED 2016-03-01 (described on Site Profile dated 2016-03-01)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "uuid": "e2051ff6-c74e-4f84-8b90-e67e46c552c6", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2021-10-08 (described on Site Profile dated 2021-10-08)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], "parcelDescriptions": [ { + "uuid": "57facb88-296f-496d-af2c-e9c725c7e706", "siteRegistry": true, - "dateNoted": "2017-10-23", - "parcelID": "20785", - "crownLandUsePIN": "15764", - "crownLandFileNumber": "19042", - "landDescription": "LOT 5 OF LOT 1 BLOCK 2 DISTRICT LOT 1 PLAN 3343" + "dateNoted": "2022-11-01", + "parcelID": "18126", + "crownLandUsePIN": "19401", + "crownLandFileNumber": "17696", + "landDescription": "LOT 3 OF LOT 4 BLOCK 2 DISTRICT LOT 3 PLAN 4128" }, { + "uuid": "76b427ec-01ad-4546-bcc3-f468397d2444", "siteRegistry": false, - "dateNoted": "2016-05-25", - "parcelID": "19328", - "crownLandUsePIN": "20310", - "crownLandFileNumber": "19636", - "landDescription": "LOT 1 OF LOT 4 BLOCK 2 DISTRICT LOT 3 PLAN 6085" + "dateNoted": "2016-03-23", + "parcelID": "16754", + "crownLandUsePIN": "18481", + "crownLandFileNumber": "17065", + "landDescription": "LOT 3 OF LOT 1 BLOCK 2 DISTRICT LOT 3 PLAN 3270" }, { - "siteRegistry": false, - "dateNoted": "2017-09-19", - "parcelID": "18634", - "crownLandUsePIN": "16119", - "crownLandFileNumber": "18339", - "landDescription": "LOT 3 OF LOT 4 BLOCK 1 DISTRICT LOT 2 PLAN 3355" + "uuid": "fb491c79-c5b8-4867-bf78-5d64dbfe406d", + "siteRegistry": true, + "dateNoted": "2019-07-12", + "parcelID": "18477", + "crownLandUsePIN": "19814", + "crownLandFileNumber": "17632", + "landDescription": "LOT 4 OF LOT 4 BLOCK 5 DISTRICT LOT 2 PLAN 4302" }, { - "siteRegistry": false, - "dateNoted": "2022-11-06", - "parcelID": "20737", - "crownLandUsePIN": "17757", - "crownLandFileNumber": "18524", - "landDescription": "LOT 4 OF LOT 4 BLOCK 1 DISTRICT LOT 2 PLAN 3023" + "uuid": "39234979-e3d3-4bff-b446-af0919ef372d", + "siteRegistry": true, + "dateNoted": "2022-05-28", + "parcelID": "15407", + "crownLandUsePIN": "18836", + "crownLandFileNumber": "17301", + "landDescription": "LOT 3 OF LOT 2 BLOCK 4 DISTRICT LOT 4 PLAN 5982" }, { + "uuid": "0e69bf1c-6429-4579-8bfb-93d3c9fd08a6", "siteRegistry": true, - "dateNoted": "2023-04-13", - "parcelID": "20710", - "crownLandUsePIN": "16207", - "crownLandFileNumber": "15333", - "landDescription": "LOT 3 OF LOT 1 BLOCK 5 DISTRICT LOT 2 PLAN 4628" + "dateNoted": "2019-05-08", + "parcelID": "15607", + "crownLandUsePIN": "18273", + "crownLandFileNumber": "19730", + "landDescription": "LOT 3 OF LOT 2 BLOCK 4 DISTRICT LOT 5 PLAN 3071" } ], "siteDisclosures": [ { - "siteRegistry": true, - "dateReceived": "2023-01-10", - "dateCompleted": "2014-12-29", - "dateEntered": "2020-10-10", - "dateRegistrar": "2018-09-21", - "dateLocalAuthorityReceived": "2017-05-09", - "summary": "Ipsum mollitia odio aliquam tenetur libero ullam.", - "informationUsed": "Maxime odit asperiores laboriosam alias consequatur.\nAt velit alias ipsum sequi veritatis suscipit accusamus reprehenderit pariatur.\nLaudantium eaque reprehenderit hic in id ut vel consequuntur voluptatibus.\nPerspiciatis dicta nostrum similique itaque officiis aliquid voluptate earum.", - "pastOrPresentOrders": "Possimus consectetur molestiae tenetur est.", + "uuid": "84edc230-d838-4bc6-b2bf-8582f253455e", + "siteRegistry": false, + "dateReceived": "2014-09-28", + "dateCompleted": "2022-01-25", + "dateEntered": "2015-09-14", + "dateRegistrar": "2017-10-16", + "dateLocalAuthorityReceived": "2019-11-13", + "summary": "Nostrum natus nostrum dignissimos.\nNostrum unde mollitia doloremque ducimus qui quae reprehenderit.\nSint praesentium nisi sunt facilis consequatur.", + "informationUsed": "Animi provident distinctio.\nVel quae suscipit velit maiores est dolorum reiciendis quia quis.\nSint enim saepe repellendus necessitatibus corporis.", + "pastOrPresentOrders": "Maiores ad odit voluptates corrupti.\nId ipsam iste quia nobis nisi voluptate explicabo corrupti.", "commercialAndIndustrialPurposes": [ { + "uuid": "1a5720e4-05dc-4b2f-a0aa-233f323ede19", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false + "siteRegistry": true }, { + "uuid": "8d9bb8f9-ab72-4603-9dcd-781a7a527c16", "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "uuid": "d26f74fd-0ec6-4244-9c54-e9f210e7c595", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true + "siteRegistry": false }, { + "uuid": "443d7591-84dc-4c21-9d81-e6338d7b6674", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + } + ] + }, + { + "uuid": "7f13b335-8ef9-49f5-9676-ea6b5f1165b6", + "siteRegistry": true, + "dateReceived": "2021-03-10", + "dateCompleted": "2019-03-21", + "dateEntered": "2021-01-01", + "dateRegistrar": "2016-05-25", + "dateLocalAuthorityReceived": "2019-05-16", + "summary": "Enim illo iste architecto sit praesentium itaque officia dignissimos.", + "informationUsed": "Quaerat fuga consectetur illum quae corrupti illum pariatur.\nNecessitatibus reiciendis dolorum nesciunt suscipit.\nUllam culpa tenetur enim pariatur.\nSuscipit dolore assumenda nostrum ipsum.", + "pastOrPresentOrders": "Quos culpa tempora.", + "commercialAndIndustrialPurposes": [ + { + "uuid": "f22ea164-2936-4afe-82dd-878b97b182d8", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false + }, + { + "uuid": "f233f508-0ca9-4e76-88aa-8d647d5108f9", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false } ] } ], "activityLog": [ { + "uuid": "bff0d0cc-a1a1-4e7e-b0ec-862089afa0de", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "TROMP MAGDALEN", - "timestamp": "2016-10-15" - }, - { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "BAUMBACH PAOLO", - "timestamp": "2017-08-07" + "user": "ONDRICKA KRISTA", + "timestamp": "2018-05-01" }, { + "uuid": "1007bc3b-7939-4712-8646-eadd91de0894", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "WISOKY EVALYN", - "timestamp": "2018-04-25" + "user": "MOHR ROMAINE", + "timestamp": "2019-11-02" }, { + "uuid": "ce5d82f3-0730-4a59-a0fa-1dad5ce90897", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "OBERBRUNNER JEREMY", - "timestamp": "2020-05-25" - }, - { - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "GREEN GOLDA", - "timestamp": "2017-10-22" + "user": "SKILES PRECIOUS", + "timestamp": "2017-01-21" }, { + "uuid": "2f004c70-f850-448a-b7d6-aacd46b10361", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "BEDNAR EINO", - "timestamp": "2017-01-09" - }, - { - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "DUBUQUE ELMIRA", - "timestamp": "2021-07-28" + "user": "HILPERT EZRA", + "timestamp": "2014-12-02" }, { - "siteRegistry": false, + "uuid": "5fc50217-dce9-412e-a0da-3fff2d7e65fb", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "O'KEEFE WILSON", - "timestamp": "2014-01-03" + "user": "MARKS CARTER", + "timestamp": "2017-07-13" }, { + "uuid": "fbf9bab2-6e9b-46ff-9a9d-cbd42bf9f3db", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "LEDNER CAROLE", - "timestamp": "2022-01-07" + "user": "BINS MADYSON", + "timestamp": "2020-11-24" } ], "associatedSites": [ { - "dateNoted": "2023-09-09", + "uuid": "2fa55c3f-fcca-4598-a36f-7aae3c7cc2d5", + "dateNoted": "2019-07-16", "notes": "", - "parcelID": "18917", - "siteID": "18281", + "parcelID": "18504", + "siteID": "20203", "siteRegistry": false }, { - "dateNoted": "2020-04-13", + "uuid": "08f316f0-a37f-4913-a657-e2de0d85eb99", + "dateNoted": "2020-09-28", "notes": "", - "parcelID": "19945", - "siteID": "19390", + "parcelID": "17668", + "siteID": "20146", "siteRegistry": true }, { - "dateNoted": "2014-10-03", + "uuid": "22a04ab2-e4a1-4819-b400-f6c571c2f97e", + "dateNoted": "2017-06-21", "notes": "", - "parcelID": "15983", - "siteID": "16201", - "siteRegistry": false + "parcelID": "20638", + "siteID": "17183", + "siteRegistry": true } ] }, { - "uuid": "c1cf5db0-9aef-4edb-b7bf-437c599444ec", - "siteID": 16605, - "address": "866 Blanda Via", - "latitude": 52.1081, - "longitude": -132.6256, - "lastUpdated": "2020-08-21", - "city": "Salinas", - "region": "Cariboo", - "victoriaFile": "26250-20/13301", + "uuid": "21033622-974c-4dcf-a4a7-f7e999136654", + "siteID": 17161, + "address": "5149 Corkery Haven", + "latitude": 51.8937, + "longitude": -121.8151, + "lastUpdated": "2018-03-10", + "city": "Heidenreichview", + "region": "Vancouver Island/Coast", + "victoriaFile": "26250-20/11643", "regionalFile": "N/A", "parcelIDs": [ - 9284222, - 7284799, - 5492578, - 835916, - 5327430 + 9833779, + 4608311, + 381459, + 4823017, + 648584 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2023-08-06", - "completed": "2023-05-23", - "initiated": "2019-10-05", - "ministryContact": "DIBBERT SETH", + "uuid": "9a38637e-32ef-491c-9a03-860046e4c1dd", + "createdAt": "2014-09-19", + "completed": "2014-05-13", + "initiated": "2019-07-14", + "ministryContact": "DACH JUVENAL", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -42395,48 +49134,26 @@ ], "notationParticipants": [ { + "uuid": "809c7878-b698-428f-8ce2-87af573d6832", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - } - ], - "siteRegistry": true - }, - { - "createdAt": "2020-08-04", - "completed": "2023-01-05", - "initiated": "2022-11-21", - "ministryContact": "POUROS JUSTEN", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { + "uuid": "4f2ff7f4-71fb-4f85-90a9-898f6aa395a3", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2014-07-20", - "completed": "2021-12-24", - "initiated": "2017-08-03", - "ministryContact": "ROWE ANTOINETTE", + "uuid": "c59e3341-796a-4b47-b8a0-bca3e6fbacbf", + "createdAt": "2017-01-21", + "completed": "2015-07-10", + "initiated": "2014-10-06", + "ministryContact": "JAKUBOWSKI CASIMIR", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -42445,28 +49162,26 @@ ], "notationParticipants": [ { + "uuid": "08175b5d-5c1d-4ad5-a501-8d4cfcd51389", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false }, { + "uuid": "5fd33454-3904-4a67-a973-84aebbac412a", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true } ], "siteRegistry": false }, { - "createdAt": "2018-09-16", - "completed": "2016-09-21", - "initiated": "2017-10-04", - "ministryContact": "KUNZE LOTTIE", + "uuid": "eda7449f-0420-4f97-bf47-a6991d4e3862", + "createdAt": "2017-05-23", + "completed": "2015-12-19", + "initiated": "2020-03-10", + "ministryContact": "PADBERG LAMONT", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -42475,64 +49190,38 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", + "uuid": "daaa7d47-1296-4701-9843-59addb9e5529", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { + "uuid": "5bf75248-c891-4277-9d79-b69e7f33e68f", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true } ], "siteRegistry": true - }, - { - "createdAt": "2014-03-03", - "completed": "2017-10-31", - "initiated": "2020-01-23", - "ministryContact": "KUNZE RODRICK", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - } - ], - "siteRegistry": false } ], "participants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2020-04-24", - "startDate": "2016-06-16", + "uuid": "1bc86319-bf9e-41b5-bfa4-b1d15baa0fe5", + "name": "IPSUM", + "endDate": "2015-07-15", + "startDate": "2022-04-14", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "uuid": "4e9d14ec-6689-4866-8f87-1a30a771e578", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2014-08-16", + "startDate": "2016-10-24", "notes": "", "roles": [ "EMPLOYEE" @@ -42540,19 +49229,32 @@ "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2020-04-02", - "startDate": "2016-05-02", + "uuid": "2c6ee5af-9598-4da3-a7de-83694f9182a2", + "name": "IPSUM", + "endDate": "2017-01-03", + "startDate": "2022-08-07", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true }, { + "uuid": "5896a24a-b7fe-488a-acce-db0314b8ff8f", "name": "SHELL CANADA PRODUCTS", - "endDate": "2018-10-05", - "startDate": "2016-09-05", + "endDate": "2017-10-17", + "startDate": "2022-02-09", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "uuid": "6a70d4ea-9a5c-4cab-a39e-742a2b9afa97", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2014-03-20", + "startDate": "2020-07-12", "notes": "", "roles": [ "ORGANIZATION" @@ -42562,176 +49264,227 @@ ], "suspectLandUses": [ { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-03-19 (described on Site Profile dated 2016-03-19)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "uuid": "dd50c673-a428-4908-91b5-cf074d0443fb", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2021-04-27 (described on Site Profile dated 2021-04-27)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "uuid": "1e7ba66f-22a0-4049-9438-35c0bb872592", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2018-02-21 (described on Site Profile dated 2018-02-21)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { + "uuid": "445d06b3-dadd-4bd5-970c-b9647d996a89", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-11-19 (described on Site Profile dated 2021-11-19)", + "notes": "INSERTED FOR SITE PROFILE DATED 2022-10-25 (described on Site Profile dated 2022-10-25)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { + "uuid": "f98a7187-8f34-4026-abc3-62d35298d511", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-12-12 (described on Site Profile dated 2019-12-12)", + "notes": "INSERTED FOR SITE PROFILE DATED 2021-05-17 (described on Site Profile dated 2021-05-17)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "uuid": "737f3672-d58e-4750-9475-b6563be14bff", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2022-12-16 (described on Site Profile dated 2022-12-16)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], "parcelDescriptions": [ { + "uuid": "a46027ae-3f7a-4f8e-bea6-453b122766aa", "siteRegistry": true, - "dateNoted": "2015-01-27", - "parcelID": "20001", - "crownLandUsePIN": "19222", - "crownLandFileNumber": "15311", - "landDescription": "LOT 5 OF LOT 2 BLOCK 3 DISTRICT LOT 5 PLAN 4067" + "dateNoted": "2018-12-03", + "parcelID": "19852", + "crownLandUsePIN": "15767", + "crownLandFileNumber": "17447", + "landDescription": "LOT 1 OF LOT 5 BLOCK 4 DISTRICT LOT 2 PLAN 8169" }, { + "uuid": "926da217-c3c3-4cfd-b800-84317ce2c979", "siteRegistry": false, - "dateNoted": "2023-05-21", - "parcelID": "16965", - "crownLandUsePIN": "17967", - "crownLandFileNumber": "18088", - "landDescription": "LOT 3 OF LOT 2 BLOCK 1 DISTRICT LOT 2 PLAN 6081" + "dateNoted": "2023-06-09", + "parcelID": "18518", + "crownLandUsePIN": "19469", + "crownLandFileNumber": "16658", + "landDescription": "LOT 4 OF LOT 2 BLOCK 1 DISTRICT LOT 2 PLAN 8363" }, { + "uuid": "91c0766f-96f1-434a-b2bc-105abe48cdb1", "siteRegistry": true, - "dateNoted": "2015-05-24", - "parcelID": "18010", - "crownLandUsePIN": "16549", - "crownLandFileNumber": "19091", - "landDescription": "LOT 5 OF LOT 1 BLOCK 4 DISTRICT LOT 4 PLAN 7390" + "dateNoted": "2021-11-06", + "parcelID": "18519", + "crownLandUsePIN": "20763", + "crownLandFileNumber": "20320", + "landDescription": "LOT 3 OF LOT 2 BLOCK 3 DISTRICT LOT 2 PLAN 4080" + }, + { + "uuid": "368518b4-fb8b-41f7-ae70-525ff90da36d", + "siteRegistry": false, + "dateNoted": "2014-10-30", + "parcelID": "16813", + "crownLandUsePIN": "16248", + "crownLandFileNumber": "19632", + "landDescription": "LOT 4 OF LOT 1 BLOCK 4 DISTRICT LOT 5 PLAN 8097" } ], "siteDisclosures": [ { + "uuid": "b9eacf50-e585-4f5c-8c60-6932a9db2c04", "siteRegistry": false, - "dateReceived": "2015-01-14", - "dateCompleted": "2021-12-23", - "dateEntered": "2021-09-21", - "dateRegistrar": "2013-12-22", - "dateLocalAuthorityReceived": "2021-09-04", - "summary": "At quidem laboriosam iusto eum porro voluptates adipisci veritatis.\nIure error atque beatae facilis perspiciatis quis voluptates fugiat.", - "informationUsed": "Occaecati iusto esse amet alias optio porro numquam.\nNemo neque fuga nemo consequatur.\nVoluptate sunt inventore nam.\nRem reiciendis eaque quos debitis ipsum quam quo aspernatur.", - "pastOrPresentOrders": "Autem ea enim dicta quae commodi molestias.\nRepellendus odit aliquam consequatur suscipit.\nSit adipisci eius atque totam ab a modi harum.", + "dateReceived": "2018-09-18", + "dateCompleted": "2016-09-22", + "dateEntered": "2020-05-16", + "dateRegistrar": "2022-08-05", + "dateLocalAuthorityReceived": "2018-12-29", + "summary": "Nam voluptatum deleniti voluptatum.", + "informationUsed": "Optio esse cumque tenetur accusantium quasi nam aliquid consectetur suscipit.\nAdipisci quas magnam laudantium autem nemo porro maiores.\nQuidem dolore quas consequuntur natus facilis voluptatem laudantium ratione.", + "pastOrPresentOrders": "Est suscipit sequi.\nHarum iusto iusto commodi corrupti cumque ab sit.", "commercialAndIndustrialPurposes": [ { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false - }, - { + "uuid": "c2890d6c-fd8c-43e5-993b-4d741e3a10ed", "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true }, { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false + "uuid": "30345b5b-0a8e-48f9-833d-fbaee4a0f8c6", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true } ] } ], "activityLog": [ { - "siteRegistry": true, + "uuid": "d59059f1-850b-4ee4-afec-29a0956ecd27", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "BOYER AISHA", - "timestamp": "2019-04-24" + "user": "HODKIEWICZ MOSSIE", + "timestamp": "2022-02-25" }, { + "uuid": "08ee8842-4c3c-4a71-bcc5-56e8bb13b334", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "KSHLERIN CRISTOBAL", - "timestamp": "2021-08-25" + "user": "HANSEN MITCHEL", + "timestamp": "2020-08-02" }, { + "uuid": "614c4211-4609-4308-b6c7-3f0d7b3b8e27", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "DICKI TORREY", - "timestamp": "2013-10-23" + "user": "FADEL VIOLA", + "timestamp": "2022-06-12" + }, + { + "uuid": "e5f5c63a-d277-4aeb-8815-bcbaef740a64", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "KONOPELSKI ENOCH", + "timestamp": "2018-03-04" }, { + "uuid": "4b2698f4-7042-425e-a3b7-4c26a01e612b", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "LUBOWITZ JACK", - "timestamp": "2018-04-08" + "user": "WHITE ARIELLE", + "timestamp": "2020-04-20" }, { + "uuid": "28b24b3c-fc55-429b-a9c9-4f03bdf121a0", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "LOCKMAN TORREY", - "timestamp": "2019-10-06" + "user": "BREITENBERG GAYLE", + "timestamp": "2017-06-27" }, { + "uuid": "be5a888c-fc93-436d-99ff-59b030ae9ff3", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "RUNOLFSSON HUBERT", - "timestamp": "2018-02-19" + "user": "O'CONNER LITZY", + "timestamp": "2021-01-30" }, { - "siteRegistry": false, + "uuid": "cff62eb0-6eba-45e5-b867-3618d5c5bb17", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "SANFORD-FRIESEN TRISHA", - "timestamp": "2018-10-27" + "user": "RIPPIN FREDERICK", + "timestamp": "2017-05-15" }, { + "uuid": "3b2adfa8-a81d-42fa-a711-af615d9da2b5", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "FLATLEY-RODRIGUEZ EULA", - "timestamp": "2023-03-28" + "user": "WEBER JOCELYN", + "timestamp": "2014-10-10" + }, + { + "uuid": "9b710b3a-b8ef-48b6-889f-b58d0eeaf134", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "JOHNSON LEXUS", + "timestamp": "2020-12-06" } ], "associatedSites": [ { - "dateNoted": "2021-09-21", + "uuid": "65061ff5-826e-413b-a723-c2f836fbf121", + "dateNoted": "2020-04-23", "notes": "", - "parcelID": "16161", - "siteID": "18040", + "parcelID": "18735", + "siteID": "16682", "siteRegistry": false }, { - "dateNoted": "2022-07-02", + "uuid": "2e9aba80-00e7-4934-bf4c-ee7971fc0e71", + "dateNoted": "2022-09-19", "notes": "", - "parcelID": "20884", - "siteID": "16285", + "parcelID": "19221", + "siteID": "17685", "siteRegistry": true }, { - "dateNoted": "2019-10-20", + "uuid": "88da5ed6-e26f-4dd3-92b6-5aaa36164d5b", + "dateNoted": "2014-07-21", "notes": "", - "parcelID": "16208", - "siteID": "15827", + "parcelID": "16832", + "siteID": "17431", "siteRegistry": true } ] }, { - "uuid": "af3a2520-dad6-4dcf-bb59-504dc894cba9", - "siteID": 19847, - "address": "49190 Baumbach Pine", - "latitude": 49.1699, - "longitude": -130.7942, - "lastUpdated": "2021-09-18", - "city": "Larkinshire", - "region": " North Coast", - "victoriaFile": "26250-20/18625", + "uuid": "8eb323c9-0e0f-486d-af99-df830eb75816", + "siteID": 20573, + "address": "57645 Jordane Ramp", + "latitude": 51.0247, + "longitude": -137.6872, + "lastUpdated": "2023-07-10", + "city": "Maricopa", + "region": "Kootenay", + "victoriaFile": "26250-20/19312", "regionalFile": "N/A", "parcelIDs": [ - 8481045, - 3066642, - 5138660, - 1054338, - 4628503 + 6638817, + 4216514, + 7461372, + 388836, + 1860791 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2017-12-04", - "completed": "2018-01-13", - "initiated": "2020-09-08", - "ministryContact": "LIND KAELA", + "uuid": "a79d1a1f-a474-4050-8213-d02f88b70b76", + "createdAt": "2015-10-15", + "completed": "2014-03-11", + "initiated": "2020-10-09", + "ministryContact": "ZBONCAK JEFFERY", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -42740,16 +49493,31 @@ ], "notationParticipants": [ { + "uuid": "a9e28f46-81c4-4960-ba2a-826abd721bbf", "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "uuid": "cf39835e-fe0b-4264-81c2-81b5bb085503", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "uuid": "b2a18927-b893-4e3a-96e9-897d4fc67b3e", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false }, { + "uuid": "9e465d11-714b-4102-b740-f224de25b987", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { + "uuid": "fe76af5b-10e6-401e-9fab-505eb0e07a0a", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false @@ -42758,10 +49526,11 @@ "siteRegistry": true }, { - "createdAt": "2014-04-10", - "completed": "2023-10-02", - "initiated": "2021-04-24", - "ministryContact": "NADER BEULAH", + "uuid": "db56eda3-98ca-462d-9958-8adb9570c4bb", + "createdAt": "2018-04-15", + "completed": "2020-03-11", + "initiated": "2022-02-11", + "ministryContact": "SWIFT ADELIA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -42770,23 +49539,44 @@ ], "notationParticipants": [ { + "uuid": "fd0e34c4-e0d5-48ef-926a-7f73d211e4b7", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "uuid": "9bc7c868-6fb6-4034-8835-8cb0838a3af7", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "ee7158ae-c86a-4987-89b0-2312060abec4", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": false }, { + "uuid": "8f6d1643-1fa4-4f88-bda2-4523a540562d", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true + }, + { + "uuid": "bc8039ce-f4a3-4167-9cbe-db744c785e3d", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2022-06-05", - "completed": "2019-11-03", - "initiated": "2021-11-03", - "ministryContact": "WINTHEISER MURRAY", + "uuid": "57d67c60-1e21-4575-8be8-7ba2b31c26a2", + "createdAt": "2014-09-28", + "completed": "2014-11-18", + "initiated": "2015-11-15", + "ministryContact": "KREIGER MURIEL", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -42795,33 +49585,44 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true + "uuid": "8951f4bf-e9ff-41db-a7b3-0be045d1def4", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false }, { + "uuid": "824b696f-0ed3-42db-8637-c12db5ea398c", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "9db65ac8-d97a-41cd-a0f0-ed640451966e", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { + "uuid": "d4bc5ba3-ec50-4be9-bd6b-79c43649e461", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "d16481d0-f8a6-4294-9467-e0cf865b5c35", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": false } ], "siteRegistry": false }, { - "createdAt": "2020-06-16", - "completed": "2017-11-06", - "initiated": "2015-06-05", - "ministryContact": "BECHTELAR DEMETRIUS", + "uuid": "260c4490-73d2-4cb8-a47b-78d68d27f90b", + "createdAt": "2018-05-24", + "completed": "2021-04-22", + "initiated": "2017-05-05", + "ministryContact": "LUBOWITZ ALEXANE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -42830,28 +49631,61 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "uuid": "b1ded3e7-644c-429d-bbc2-48518d311df0", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", "siteRegistry": false }, { + "uuid": "2841ecb5-379c-423e-aa35-3c70bb56ea0f", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false + }, + { + "uuid": "392ebef5-ff5d-4c33-9622-c4ed1fcda5f9", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "uuid": "7e97c063-31b3-428f-8e70-2e31d1bc198f", + "createdAt": "2019-05-12", + "completed": "2019-09-29", + "initiated": "2016-05-28", + "ministryContact": "VEUM MAYBELL", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "uuid": "812d5eb2-d337-49df-8784-85df900f0bcb", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false }, { + "uuid": "73ff64e6-c7a2-4e62-a772-7813cb9be291", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", + "uuid": "b99f27c7-bfa5-487a-8901-d275a07bbfd3", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "uuid": "ceb8b411-a3b1-4168-a338-b95ae7889759", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": false } ], @@ -42860,9 +49694,10 @@ ], "participants": [ { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2023-05-01", - "startDate": "2021-01-11", + "uuid": "c1bb81a6-8441-400b-9d21-33c5627d2913", + "name": "AMET, DOLOR SIT", + "endDate": "2022-04-30", + "startDate": "2022-04-26", "notes": "", "roles": [ "EMPLOYEE" @@ -42870,221 +49705,270 @@ "siteRegistry": false }, { + "uuid": "d2900183-a87f-413a-93ac-e635849aaac5", "name": "SHELL CANADA PRODUCTS", - "endDate": "2018-04-30", - "startDate": "2014-03-29", + "endDate": "2021-03-29", + "startDate": "2017-01-02", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": true }, { - "name": "AMET, DOLOR SIT", - "endDate": "2021-05-31", - "startDate": "2021-09-24", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": false - }, - { + "uuid": "3192fff5-058d-44a1-91a5-72c11fbb3415", "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2017-05-23", - "startDate": "2015-06-24", + "endDate": "2017-10-05", + "startDate": "2014-01-22", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": true + "siteRegistry": false } ], "suspectLandUses": [ { + "uuid": "58190c78-e544-461e-bc05-74d206132ee3", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2020-06-14 (described on Site Profile dated 2020-06-14)", + "notes": "INSERTED FOR SITE PROFILE DATED 2018-04-08 (described on Site Profile dated 2018-04-08)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { + "uuid": "bd742b39-339c-4f41-a093-72f21db16589", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2023-09-30 (described on Site Profile dated 2023-09-30)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "uuid": "403236d9-b9b5-457e-a278-51dc2f6b5744", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2022-09-15 (described on Site Profile dated 2022-09-15)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "uuid": "a496aa69-7585-48d2-856d-6d0544e65399", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-08-01 (described on Site Profile dated 2016-08-01)", + "notes": "INSERTED FOR SITE PROFILE DATED 2020-10-31 (described on Site Profile dated 2020-10-31)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "uuid": "4ced450b-a0ab-47f4-b5a0-cce8bcb251d0", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2019-05-10 (described on Site Profile dated 2019-05-10)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], "parcelDescriptions": [ { - "siteRegistry": true, - "dateNoted": "2019-12-07", - "parcelID": "16320", - "crownLandUsePIN": "18334", - "crownLandFileNumber": "17926", - "landDescription": "LOT 3 OF LOT 4 BLOCK 5 DISTRICT LOT 1 PLAN 7002" + "uuid": "9326892c-4f94-4381-a7e4-7ad0aa0e455c", + "siteRegistry": false, + "dateNoted": "2014-08-24", + "parcelID": "19355", + "crownLandUsePIN": "17705", + "crownLandFileNumber": "17588", + "landDescription": "LOT 3 OF LOT 5 BLOCK 4 DISTRICT LOT 4 PLAN 6619" }, { + "uuid": "e983ed5b-2c44-4a37-adff-71610da4156c", "siteRegistry": true, - "dateNoted": "2022-01-27", - "parcelID": "17363", - "crownLandUsePIN": "20115", - "crownLandFileNumber": "17714", - "landDescription": "LOT 5 OF LOT 2 BLOCK 5 DISTRICT LOT 1 PLAN 5304" + "dateNoted": "2015-02-15", + "parcelID": "20173", + "crownLandUsePIN": "16601", + "crownLandFileNumber": "16842", + "landDescription": "LOT 2 OF LOT 4 BLOCK 4 DISTRICT LOT 3 PLAN 7411" }, { + "uuid": "ce5a477c-e4fd-4380-bdb4-942169823089", "siteRegistry": false, - "dateNoted": "2020-11-10", - "parcelID": "15279", - "crownLandUsePIN": "19772", - "crownLandFileNumber": "18025", - "landDescription": "LOT 2 OF LOT 3 BLOCK 5 DISTRICT LOT 4 PLAN 6295" + "dateNoted": "2023-07-28", + "parcelID": "19903", + "crownLandUsePIN": "18071", + "crownLandFileNumber": "18761", + "landDescription": "LOT 3 OF LOT 5 BLOCK 2 DISTRICT LOT 2 PLAN 4213" + }, + { + "uuid": "7e64952d-3c90-46cb-a6d1-17a9464c6913", + "siteRegistry": true, + "dateNoted": "2020-12-26", + "parcelID": "16977", + "crownLandUsePIN": "20335", + "crownLandFileNumber": "18635", + "landDescription": "LOT 4 OF LOT 2 BLOCK 5 DISTRICT LOT 1 PLAN 3082" }, { + "uuid": "39355b7e-5108-4582-8da4-854d6b42ba4b", "siteRegistry": false, - "dateNoted": "2017-07-22", - "parcelID": "20154", - "crownLandUsePIN": "20540", - "crownLandFileNumber": "18413", - "landDescription": "LOT 4 OF LOT 5 BLOCK 4 DISTRICT LOT 4 PLAN 4667" + "dateNoted": "2013-10-26", + "parcelID": "15435", + "crownLandUsePIN": "20612", + "crownLandFileNumber": "20343", + "landDescription": "LOT 3 OF LOT 4 BLOCK 2 DISTRICT LOT 4 PLAN 6123" } ], "siteDisclosures": [ { - "siteRegistry": false, - "dateReceived": "2016-11-29", - "dateCompleted": "2023-01-16", - "dateEntered": "2013-12-22", - "dateRegistrar": "2020-12-22", - "dateLocalAuthorityReceived": "2022-05-30", - "summary": "Earum voluptate explicabo quibusdam iusto dignissimos illo commodi eum.\nAperiam qui quasi in nostrum a reiciendis.\nConsequatur corporis vitae eos rerum excepturi necessitatibus placeat excepturi.", - "informationUsed": "Commodi beatae iusto similique veritatis in voluptatibus.\nCorrupti eligendi recusandae ut tempore animi enim odit.\nAb totam pariatur nulla.\nQuibusdam id nam culpa debitis dolore nisi voluptate quas.", - "pastOrPresentOrders": "At tenetur magnam iusto officiis occaecati corrupti beatae.", + "uuid": "6b52287e-20b4-424f-995a-555a2be55d47", + "siteRegistry": true, + "dateReceived": "2021-02-23", + "dateCompleted": "2022-10-01", + "dateEntered": "2016-05-10", + "dateRegistrar": "2015-06-09", + "dateLocalAuthorityReceived": "2015-04-09", + "summary": "Excepturi dolor unde animi.\nSunt necessitatibus quidem id dolore possimus aliquid.", + "informationUsed": "Nulla debitis corporis voluptatibus.\nAd odio a incidunt.\nDignissimos error odio ab.\nAliquam cupiditate sapiente.", + "pastOrPresentOrders": "Architecto possimus aut et excepturi blanditiis harum consectetur.", "commercialAndIndustrialPurposes": [ { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "uuid": "b8240645-5d3f-4a67-9a74-74289fcf848d", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false }, { + "uuid": "a0fa07ea-c48c-4819-9a94-43919db03757", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + } + ] + }, + { + "uuid": "59a1af58-2da6-4cc9-b6a1-696bd024b0ba", + "siteRegistry": false, + "dateReceived": "2021-01-24", + "dateCompleted": "2018-02-28", + "dateEntered": "2016-10-22", + "dateRegistrar": "2019-04-01", + "dateLocalAuthorityReceived": "2016-11-25", + "summary": "Suscipit totam dolores excepturi necessitatibus soluta dolores optio velit voluptatibus.", + "informationUsed": "Consectetur tenetur explicabo.\nTempora tenetur maiores quia veritatis accusantium perferendis quod.\nCorrupti excepturi nam autem repellendus ea enim ullam numquam.\nAlias unde ipsum nulla explicabo occaecati ab.", + "pastOrPresentOrders": "Explicabo nesciunt dolore molestiae corrupti sit ipsam aspernatur accusantium recusandae.", + "commercialAndIndustrialPurposes": [ + { + "uuid": "6b912522-7d40-4c6d-bdb6-c7f9b529ca43", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { + "uuid": "c5a9d7c6-0aef-441b-aa78-7daba39e4da0", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false + "siteRegistry": true } ] } ], "activityLog": [ { + "uuid": "960db291-44a2-4b1b-b993-1c70929f1690", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "OKUNEVA NELS", + "timestamp": "2020-06-01" + }, + { + "uuid": "7dc8ebf3-c9c5-4761-9cd7-7b1e80d7daf6", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "HEATHCOTE BRANDI", + "timestamp": "2023-07-02" + }, + { + "uuid": "53c98d9f-b215-40cd-baee-b63ddd28a737", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "ZBONCAK VERLIE", - "timestamp": "2022-10-30" + "user": "COLE BELLA", + "timestamp": "2020-09-07" + }, + { + "uuid": "5f3f2970-ad2d-40b4-a783-c2283def8ab4", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "WUNSCH DESSIE", + "timestamp": "2018-08-22" }, { + "uuid": "1d2eec3b-c29c-498f-9e3c-28ed72e60c72", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "FEIL BRANDO", - "timestamp": "2016-08-16" + "user": "HERMAN LAZARO", + "timestamp": "2015-12-23" + }, + { + "uuid": "95bc10d1-3e38-4839-bbe7-75018ff30555", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "REICHEL SELINA", + "timestamp": "2016-02-24" }, { + "uuid": "8d6d8ffc-c8e3-4f2f-ab24-4df2c7f852c6", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "PARKER VINCE", - "timestamp": "2022-10-31" + "user": "SAWAYN KOLBY", + "timestamp": "2021-07-07" }, { + "uuid": "af24ab71-d046-4db9-aec4-1be3516cb47e", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "MCGLYNN AUTUMN", - "timestamp": "2021-04-14" + "user": "DECKOW TRACY", + "timestamp": "2018-02-21" + }, + { + "uuid": "6fae6231-0405-4a30-bd08-1d02f20fa791", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "KERLUKE HUDSON", + "timestamp": "2019-01-01" }, { + "uuid": "a47dea11-45d9-43f0-a270-c068f417c466", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "MCKENZIE ELENORA", - "timestamp": "2021-03-22" + "user": "KOELPIN ENOS", + "timestamp": "2015-02-24" } ], "associatedSites": [ { - "dateNoted": "2023-03-27", + "uuid": "dafe88e7-de94-4f63-9fd1-6186c2ca5b2a", + "dateNoted": "2018-12-16", "notes": "", - "parcelID": "16245", - "siteID": "19051", + "parcelID": "17535", + "siteID": "18096", "siteRegistry": false - }, - { - "dateNoted": "2018-06-11", - "notes": "", - "parcelID": "16068", - "siteID": "18225", - "siteRegistry": true } ] }, { - "uuid": "17941bab-86a3-46fe-a151-e1bf578a5401", - "siteID": 18404, - "address": "44126 Dayton Rapids", - "latitude": 58.6677, - "longitude": -126.1635, - "lastUpdated": "2023-06-02", - "city": "Lake Sabrynafield", + "uuid": "3fc904a1-1da2-474a-a81c-870bba32fca1", + "siteID": 16154, + "address": "16334 Reina Radial", + "latitude": 56.0845, + "longitude": -127.354, + "lastUpdated": "2023-07-30", + "city": "Port Claudinestad", "region": "Vancouver Island/Coast", - "victoriaFile": "26250-20/19352", + "victoriaFile": "26250-20/15568", "regionalFile": "N/A", "parcelIDs": [ - 6643694, - 7181032, - 1497344, - 7246267, - 545007 + 8793026, + 6834465, + 1625226, + 2721627, + 4983428 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2013-11-10", - "completed": "2014-11-21", - "initiated": "2017-06-14", - "ministryContact": "BERGSTROM ADOLFO", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - } - ], - "siteRegistry": false - }, - { - "createdAt": "2015-01-22", - "completed": "2014-03-24", - "initiated": "2014-07-26", - "ministryContact": "BRAKUS KARELLE", + "uuid": "1a414808-a4e1-4988-a50f-5a7acbe9f9ec", + "createdAt": "2023-01-28", + "completed": "2017-05-18", + "initiated": "2017-01-15", + "ministryContact": "BASHIRIAN FLOY", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -43093,63 +49977,44 @@ ], "notationParticipants": [ { + "uuid": "d56f7255-bce7-41de-9ca4-3ceced173479", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - } - ], - "siteRegistry": false - }, - { - "createdAt": "2021-03-16", - "completed": "2016-05-23", - "initiated": "2020-05-28", - "ministryContact": "RUSSEL DOLLY", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { + "uuid": "778f47e8-ffdc-4f3b-b438-f01718ff0eaa", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true }, { + "uuid": "3768770e-9894-4827-8b12-b0102eca1c16", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", + "uuid": "11c549cf-d5ea-4e93-a660-7eaa4b692cf9", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { + "uuid": "f0c687b9-f710-43dc-8fb8-9c183a76843a", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2014-01-21", - "completed": "2016-06-24", - "initiated": "2016-04-21", - "ministryContact": "SWIFT BART", + "uuid": "a533ec0e-0371-4901-b786-de6dad36aba8", + "createdAt": "2017-10-30", + "completed": "2015-12-06", + "initiated": "2022-08-12", + "ministryContact": "MAYER MEAGAN", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -43158,79 +50023,50 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "f472329a-525d-4864-a0fc-6c72fea964f0", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { + "uuid": "d4be706c-cbc0-40b9-8cca-cc9a5c85eaab", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { + "uuid": "151a6047-e199-4484-ae29-603793029280", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false - } - ], - "siteRegistry": false - }, - { - "createdAt": "2016-05-24", - "completed": "2014-07-13", - "initiated": "2023-03-07", - "ministryContact": "DUBUQUE ALANA", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", + "uuid": "dbe06520-47a9-4ae6-add6-4bc6dc870fb2", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false } ], "participants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2015-05-30", - "startDate": "2019-06-22", + "uuid": "b59ec944-d48e-45ae-b997-84b8d4ea3959", + "name": "IPSUM", + "endDate": "2017-12-21", + "startDate": "2020-05-10", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2014-07-11", - "startDate": "2021-01-09", + "uuid": "25b1d916-f656-4310-88f0-00a901d6970c", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2015-12-06", + "startDate": "2021-07-18", "notes": "", "roles": [ "ORGANIZATION" @@ -43238,217 +50074,262 @@ "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2021-06-25", - "startDate": "2022-04-05", + "uuid": "2fa47856-7a03-4c9b-847d-b8b5e77c6e15", + "name": "IPSUM", + "endDate": "2017-01-21", + "startDate": "2023-03-16", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], - "siteRegistry": true + "siteRegistry": false }, { + "uuid": "e45e213a-c0ff-40d2-b0b3-114c12d6c6a9", "name": "AMET, DOLOR SIT", - "endDate": "2019-01-04", - "startDate": "2017-02-11", + "endDate": "2019-05-04", + "startDate": "2015-11-22", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2015-07-13", - "startDate": "2018-11-24", - "notes": "", - "roles": [ - "ORGANIZATION" - ], "siteRegistry": true } ], "suspectLandUses": [ { + "uuid": "70d37739-fcd4-41b6-84be-45862746f406", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-09-27 (described on Site Profile dated 2015-09-27)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "notes": "INSERTED FOR SITE PROFILE DATED 2021-07-18 (described on Site Profile dated 2021-07-18)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { + "uuid": "d3e1afb7-c5fc-40d0-b4a6-9ce32ac1b7b3", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-04-10 (described on Site Profile dated 2014-04-10)", + "notes": "INSERTED FOR SITE PROFILE DATED 2023-06-19 (described on Site Profile dated 2023-06-19)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { + "uuid": "289c9f81-ac46-4be0-b54e-ec595515ef15", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-10-01 (described on Site Profile dated 2022-10-01)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "notes": "INSERTED FOR SITE PROFILE DATED 2023-03-26 (described on Site Profile dated 2023-03-26)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], "parcelDescriptions": [ { + "uuid": "63647833-ee96-4535-91b5-2f1bd3cab3f9", "siteRegistry": true, - "dateNoted": "2017-08-04", - "parcelID": "18632", - "crownLandUsePIN": "18113", - "crownLandFileNumber": "18189", - "landDescription": "LOT 3 OF LOT 2 BLOCK 1 DISTRICT LOT 2 PLAN 6519" + "dateNoted": "2022-06-20", + "parcelID": "20726", + "crownLandUsePIN": "16625", + "crownLandFileNumber": "16289", + "landDescription": "LOT 5 OF LOT 2 BLOCK 5 DISTRICT LOT 3 PLAN 6224" }, { + "uuid": "fa2a3441-d989-4a37-9da6-83bf9e11591b", "siteRegistry": true, - "dateNoted": "2020-03-01", - "parcelID": "18010", - "crownLandUsePIN": "17421", - "crownLandFileNumber": "20388", - "landDescription": "LOT 5 OF LOT 2 BLOCK 2 DISTRICT LOT 1 PLAN 9129" + "dateNoted": "2020-09-03", + "parcelID": "17334", + "crownLandUsePIN": "20911", + "crownLandFileNumber": "16311", + "landDescription": "LOT 3 OF LOT 3 BLOCK 4 DISTRICT LOT 2 PLAN 8174" }, { + "uuid": "8a8a02f1-a2ae-4ca6-a32b-c9f147914ef2", "siteRegistry": false, - "dateNoted": "2014-11-09", - "parcelID": "15260", - "crownLandUsePIN": "20981", - "crownLandFileNumber": "15473", - "landDescription": "LOT 3 OF LOT 4 BLOCK 2 DISTRICT LOT 3 PLAN 5134" + "dateNoted": "2016-09-29", + "parcelID": "17794", + "crownLandUsePIN": "20217", + "crownLandFileNumber": "17592", + "landDescription": "LOT 4 OF LOT 3 BLOCK 5 DISTRICT LOT 5 PLAN 4479" + }, + { + "uuid": "b591d9cf-7704-4413-a65c-5be5464961e2", + "siteRegistry": false, + "dateNoted": "2015-07-18", + "parcelID": "18517", + "crownLandUsePIN": "19372", + "crownLandFileNumber": "17628", + "landDescription": "LOT 3 OF LOT 4 BLOCK 4 DISTRICT LOT 3 PLAN 3528" + }, + { + "uuid": "08bf56da-8495-446c-b817-abfe1cc3e197", + "siteRegistry": false, + "dateNoted": "2019-07-13", + "parcelID": "15546", + "crownLandUsePIN": "19180", + "crownLandFileNumber": "19481", + "landDescription": "LOT 1 OF LOT 4 BLOCK 1 DISTRICT LOT 1 PLAN 3022" } ], "siteDisclosures": [ { - "siteRegistry": true, - "dateReceived": "2018-03-05", - "dateCompleted": "2022-07-30", - "dateEntered": "2021-11-12", - "dateRegistrar": "2020-04-01", - "dateLocalAuthorityReceived": "2018-11-29", - "summary": "Mollitia illo hic magni ratione nostrum officia assumenda necessitatibus corporis.\nVeritatis maiores et similique.\nQui eveniet quia voluptas.", - "informationUsed": "Provident maiores minus explicabo vero libero deleniti nostrum occaecati maiores.\nEos iusto vitae est quod et voluptates debitis sequi.\nAliquam odio voluptas ab tempora.\nExcepturi harum voluptas neque.", - "pastOrPresentOrders": "Unde magni iste aliquam consectetur provident labore quod molestias.", + "uuid": "efd52be6-a9d9-4809-91c2-5dff46ca5723", + "siteRegistry": false, + "dateReceived": "2015-04-27", + "dateCompleted": "2022-03-20", + "dateEntered": "2022-02-14", + "dateRegistrar": "2017-07-17", + "dateLocalAuthorityReceived": "2015-10-06", + "summary": "Facilis et porro debitis eaque vero quia nemo voluptates aspernatur.\nTotam vero enim aperiam quo.", + "informationUsed": "Non quo quo a unde.\nInventore autem aliquam corporis.\nExpedita aspernatur numquam alias facere.\nIpsam nisi hic voluptatum assumenda.\nTotam itaque possimus.", + "pastOrPresentOrders": "Minima modi dolorem pariatur saepe laudantium beatae ipsa quis.\nRepellat impedit accusantium explicabo doloremque facilis dolorum adipisci tempore.", "commercialAndIndustrialPurposes": [ { + "uuid": "e9bff18d-fbf2-4889-bc3f-3cd0265d45b6", "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false }, { - "scheduleReference": "F1*", + "uuid": "d78ddea7-8632-4350-b3ce-2f78be30128c", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false }, { - "scheduleReference": "F1*", + "uuid": "913100a4-5234-4a80-b625-e529bbc63fd2", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false + "siteRegistry": true }, { + "uuid": "96592ed0-3f7c-4a84-9795-e7e049549c16", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true + "siteRegistry": false } ] }, { + "uuid": "03648d57-f3c1-4995-9a6d-8882f1641042", "siteRegistry": true, - "dateReceived": "2020-08-13", - "dateCompleted": "2016-04-03", - "dateEntered": "2014-05-09", - "dateRegistrar": "2022-11-18", - "dateLocalAuthorityReceived": "2017-01-17", - "summary": "Maiores distinctio quo.\nNostrum iste dicta iure maiores.", - "informationUsed": "Nobis ipsa minus.\nDignissimos voluptate aut.\nVoluptate unde accusamus fugiat recusandae ex veritatis sequi.\nSuscipit molestiae eveniet.\nNeque magnam nisi quae itaque.", - "pastOrPresentOrders": "Velit quidem quo quod repellendus id quos saepe.\nImpedit natus deserunt libero totam.", + "dateReceived": "2017-02-02", + "dateCompleted": "2019-02-07", + "dateEntered": "2018-11-30", + "dateRegistrar": "2016-06-25", + "dateLocalAuthorityReceived": "2023-01-04", + "summary": "Modi eaque veniam deleniti error eum error.\nAliquid earum a mollitia placeat rerum velit.", + "informationUsed": "Voluptate nihil enim suscipit nam et.\nMinima facere officia delectus temporibus animi exercitationem.\nOfficia sapiente in quo recusandae id sunt possimus.", + "pastOrPresentOrders": "Exercitationem tempora nam.", "commercialAndIndustrialPurposes": [ { + "uuid": "26296d14-3091-4139-9c1d-eb480a3b71b1", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false + "siteRegistry": true }, { + "uuid": "14b3c678-2709-4d19-afdb-86640890e29c", "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "uuid": "39436805-65fb-4f4f-8290-cbd58eccac5f", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false + }, + { + "uuid": "3a9eb814-942b-49f9-b3e5-f2a313da9d44", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false } ] } ], "activityLog": [ { + "uuid": "d24a126b-37a4-4b9b-996f-042ba58bef19", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "SANFORD AILEEN", - "timestamp": "2015-06-12" + "user": "HOEGER KATELIN", + "timestamp": "2023-01-12" }, { + "uuid": "75d37423-b868-4ecf-972e-f84ee41d1590", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "BERGSTROM EVERARDO", - "timestamp": "2019-12-21" + "user": "SCHMIDT BARRETT", + "timestamp": "2019-01-15" }, { - "siteRegistry": false, + "uuid": "e3e16b2f-b893-4f93-925e-f428a962d506", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "MUELLER KIEL", - "timestamp": "2022-11-25" + "user": "HOWE LIAM", + "timestamp": "2022-05-12" }, { + "uuid": "a4aec6b4-36c1-44c7-bf0f-b5111679e84c", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "RITCHIE ANIKA", - "timestamp": "2015-08-14" + "user": "GREENFELDER DAMIEN", + "timestamp": "2014-08-26" }, { - "siteRegistry": false, + "uuid": "89045d34-77c5-4aca-858f-31d3d5116115", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "HALEY LEXI", - "timestamp": "2021-09-16" + "user": "MACGYVER AILEEN", + "timestamp": "2014-08-22" }, { + "uuid": "767f95b4-8b53-4464-88b8-8ee2f7cf61bf", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "BORER LERA", - "timestamp": "2015-12-08" + "user": "RUTHERFORD MADYSON", + "timestamp": "2016-10-30" } ], "associatedSites": [ { - "dateNoted": "2017-12-16", + "uuid": "98e54e1e-fbfc-4c89-ac11-4b0b41ca2928", + "dateNoted": "2020-06-27", "notes": "", - "parcelID": "17311", - "siteID": "20810", - "siteRegistry": false + "parcelID": "17031", + "siteID": "19113", + "siteRegistry": true }, { - "dateNoted": "2023-02-15", + "uuid": "af4ee5a6-16ef-4d00-8e5c-d213d535e235", + "dateNoted": "2022-06-23", "notes": "", - "parcelID": "18805", - "siteID": "19253", - "siteRegistry": false + "parcelID": "15861", + "siteID": "15732", + "siteRegistry": true } ] }, { - "uuid": "dd202eab-de38-449e-9175-e5ce6ce07a0d", - "siteID": 18787, - "address": "47274 Prohaska Station", - "latitude": 58.6767, - "longitude": -123.6176, - "lastUpdated": "2019-08-12", - "city": "McLean", - "region": "Kootenay", - "victoriaFile": "26250-20/13946", + "uuid": "1719a9e5-727d-47fe-af6b-b319dea098c7", + "siteID": 15732, + "address": "52929 Meda Green", + "latitude": 51.2494, + "longitude": -134.761, + "lastUpdated": "2021-02-12", + "city": "Greenfelderstead", + "region": "Cariboo", + "victoriaFile": "26250-20/10502", "regionalFile": "N/A", "parcelIDs": [ - 2196235, - 5920056, - 1880252, - 272467, - 8155859 + 8629289, + 1445213, + 7737297, + 4749209, + 2275030 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2021-06-10", - "completed": "2020-11-17", - "initiated": "2019-09-07", - "ministryContact": "GIBSON VERONICA", + "uuid": "a50ae2f4-9268-4b70-b550-4452f681bb54", + "createdAt": "2022-08-14", + "completed": "2015-04-01", + "initiated": "2016-07-02", + "ministryContact": "WALSH NOEMY", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -43457,23 +50338,66 @@ ], "notationParticipants": [ { + "uuid": "c93c055f-e4b7-474d-b6bd-db73e3c7bfc1", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true }, { + "uuid": "cec2f03c-418d-4a6b-a717-6ed1836a51a1", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "uuid": "5a1297f7-7726-42ab-8a1b-4d0d97ad45be", + "createdAt": "2022-06-16", + "completed": "2019-05-05", + "initiated": "2020-12-10", + "ministryContact": "KUHIC GAGE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "uuid": "9d3ce41c-6214-4dbd-b71b-9e440471ad70", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": false + }, + { + "uuid": "9b40a7a7-bd1a-41e6-a57f-3da00391c9b6", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "c007e81f-e67e-43b0-9a3a-9b406d0fefa7", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "uuid": "76d73ca3-1f1a-47e5-9591-7728136f7d32", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true } ], "siteRegistry": false }, { - "createdAt": "2020-02-23", - "completed": "2016-03-21", - "initiated": "2017-05-11", - "ministryContact": "FEENEY JAYCEE", + "uuid": "828ec343-7b24-4d7b-a14b-e1f24cab8dca", + "createdAt": "2017-05-17", + "completed": "2017-01-06", + "initiated": "2023-03-01", + "ministryContact": "BAUCH MAIYA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -43482,226 +50406,299 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "d24a3fc3-b21b-4c57-a5ba-837b870371f4", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false }, { + "uuid": "c1eb3196-008d-47d4-a8fa-d3ad4e508a94", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false }, { + "uuid": "8d57dc04-86b5-42d9-9c07-35acdf2dc974", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "602fcb1a-fe01-4f49-96f2-6e3a17955e91", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", "siteRegistry": false }, { + "uuid": "b48e8ea3-b7db-4a1d-bc7d-e0c6640fba36", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true } ], "participants": [ { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2022-07-27", - "startDate": "2021-10-24", + "uuid": "0bb7c2c3-08a1-450b-951e-d5747c70b142", + "name": "IPSUM", + "endDate": "2022-01-10", + "startDate": "2018-06-25", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": false }, { + "uuid": "8c47afcb-8697-4b33-8a9b-2c1c82463cf4", "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2020-02-06", - "startDate": "2022-09-15", + "endDate": "2013-12-25", + "startDate": "2018-02-14", "notes": "", "roles": [ "ORGANIZATION" ], "siteRegistry": true - } - ], - "suspectLandUses": [ - { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-02-23 (described on Site Profile dated 2017-02-23)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-11-02 (described on Site Profile dated 2014-11-02)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "uuid": "cc26185c-bea0-4bc1-bb92-7aac3d4fd10c", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2015-06-24", + "startDate": "2015-11-30", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false }, { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-02-02 (described on Site Profile dated 2021-02-02)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "uuid": "fd8f4bef-2f0c-4913-b3cf-ec051c26bc96", + "name": "AMET, DOLOR SIT", + "endDate": "2015-04-30", + "startDate": "2023-04-07", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false }, { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-05-25 (described on Site Profile dated 2019-05-25)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "uuid": "7c17eed4-0f09-4055-9dfd-b46377715bc2", + "name": "AMET, DOLOR SIT", + "endDate": "2018-02-02", + "startDate": "2015-03-03", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true } ], - "parcelDescriptions": [ + "suspectLandUses": [ { - "siteRegistry": true, - "dateNoted": "2014-10-29", - "parcelID": "18091", - "crownLandUsePIN": "20451", - "crownLandFileNumber": "20808", - "landDescription": "LOT 3 OF LOT 5 BLOCK 5 DISTRICT LOT 5 PLAN 9143" + "uuid": "d1776346-b65f-42aa-ba5c-2ae072f557bc", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2022-06-22 (described on Site Profile dated 2022-06-22)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { + "uuid": "0f1586b0-03d9-4584-ba0e-d06e0b9edb62", "siteRegistry": true, - "dateNoted": "2017-12-14", - "parcelID": "18565", - "crownLandUsePIN": "19714", - "crownLandFileNumber": "16071", - "landDescription": "LOT 1 OF LOT 4 BLOCK 2 DISTRICT LOT 1 PLAN 8037" + "notes": "INSERTED FOR SITE PROFILE DATED 2020-06-01 (described on Site Profile dated 2020-06-01)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { + "uuid": "ecd5fc13-6120-4ad5-915e-e5c6b0448570", "siteRegistry": true, - "dateNoted": "2023-07-31", - "parcelID": "18357", - "crownLandUsePIN": "20036", - "crownLandFileNumber": "18190", - "landDescription": "LOT 2 OF LOT 1 BLOCK 1 DISTRICT LOT 4 PLAN 4908" - }, + "notes": "INSERTED FOR SITE PROFILE DATED 2022-12-22 (described on Site Profile dated 2022-12-22)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + } + ], + "parcelDescriptions": [ { + "uuid": "c392ad57-8df9-40ec-9de8-10fb4993784d", "siteRegistry": true, - "dateNoted": "2019-05-29", - "parcelID": "15731", - "crownLandUsePIN": "16117", - "crownLandFileNumber": "18238", - "landDescription": "LOT 5 OF LOT 3 BLOCK 3 DISTRICT LOT 1 PLAN 9162" + "dateNoted": "2020-02-18", + "parcelID": "17132", + "crownLandUsePIN": "17843", + "crownLandFileNumber": "18500", + "landDescription": "LOT 5 OF LOT 1 BLOCK 3 DISTRICT LOT 1 PLAN 5603" }, { + "uuid": "e2e456a1-4b0e-452c-8097-5569016c22ae", "siteRegistry": false, - "dateNoted": "2018-08-04", - "parcelID": "15505", - "crownLandUsePIN": "17969", - "crownLandFileNumber": "20934", - "landDescription": "LOT 4 OF LOT 5 BLOCK 1 DISTRICT LOT 3 PLAN 4715" + "dateNoted": "2019-04-03", + "parcelID": "20781", + "crownLandUsePIN": "18672", + "crownLandFileNumber": "16122", + "landDescription": "LOT 4 OF LOT 5 BLOCK 3 DISTRICT LOT 2 PLAN 9108" } ], "siteDisclosures": [ { + "uuid": "3875628d-6539-4328-a045-6ecafc39ad34", "siteRegistry": false, - "dateReceived": "2013-10-24", - "dateCompleted": "2016-10-16", - "dateEntered": "2017-11-27", - "dateRegistrar": "2018-03-07", - "dateLocalAuthorityReceived": "2017-09-15", - "summary": "Ipsam a aliquid quia assumenda inventore rerum.\nReiciendis necessitatibus quisquam in sint.\nVitae dolore fugiat ad.", - "informationUsed": "Quasi ullam alias accusamus modi beatae voluptatum delectus.\nMaiores sequi a.\nTotam ipsum recusandae veritatis nemo ut alias.\nAspernatur numquam nobis omnis molestiae nisi iure accusantium quidem distinctio.", - "pastOrPresentOrders": "Fuga fugit dolor laudantium eos magnam.\nConsectetur hic iusto placeat maiores fuga animi voluptates ex magnam.\nOptio qui exercitationem nostrum cupiditate.", + "dateReceived": "2016-03-08", + "dateCompleted": "2020-04-19", + "dateEntered": "2016-07-24", + "dateRegistrar": "2022-03-14", + "dateLocalAuthorityReceived": "2016-08-21", + "summary": "Accusantium optio cumque maiores explicabo.\nQuibusdam esse debitis.", + "informationUsed": "Sint ab consequatur.\nDucimus labore mollitia praesentium minus excepturi magni repudiandae.\nExplicabo ipsam laboriosam a nulla nam rem vitae.\nPorro quae ut magnam.", + "pastOrPresentOrders": "Exercitationem nesciunt deserunt odit dicta.\nSed veritatis dolorum id repellendus labore ratione.", "commercialAndIndustrialPurposes": [ { + "uuid": "2dab77bf-5d9f-467c-9dac-c63786d0d572", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false + "siteRegistry": true }, { - "scheduleReference": "F1*", + "uuid": "5885bc78-b501-4fbc-9f39-11d72e1ec31e", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false - }, + } + ] + }, + { + "uuid": "b2934fa3-b0ca-426f-aaab-1e691437ab26", + "siteRegistry": false, + "dateReceived": "2016-03-11", + "dateCompleted": "2020-01-21", + "dateEntered": "2019-09-17", + "dateRegistrar": "2016-12-21", + "dateLocalAuthorityReceived": "2017-07-30", + "summary": "Laborum sapiente cum quo totam.\nEveniet deleniti maxime laboriosam ipsa aliquid voluptate.\nOdit ad quisquam ipsum possimus harum fugiat vel maiores ratione.", + "informationUsed": "Ratione temporibus sequi inventore.\nAt ratione est.\nEaque assumenda est.\nPorro eum excepturi dolores placeat sunt.", + "pastOrPresentOrders": "Nisi sequi aliquid doloribus officia.", + "commercialAndIndustrialPurposes": [ { + "uuid": "ea63e9e4-5934-4e81-b55c-884249c504f0", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false + }, + { + "uuid": "51ec74ed-14f3-402b-8bf0-f3a62f370c34", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "uuid": "ff967088-fe19-4bff-a13e-2ca1ebde9b57", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true } ] } ], "activityLog": [ { + "uuid": "523cd4f4-6190-4809-ae02-20395d6e11b7", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "MCCLURE BULAH", + "timestamp": "2021-12-25" + }, + { + "uuid": "5c832b8d-2373-4bcd-a180-6d21e7cbac89", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "SMITHAM BRISA", + "timestamp": "2016-11-01" + }, + { + "uuid": "b4f57679-6a05-43cd-b12f-95ca30db9c2a", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "HARVEY DELMER", + "timestamp": "2021-02-25" + }, + { + "uuid": "19b3ac22-cab6-484d-8e81-6506be8b7706", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "NITZSCHE MONIQUE", - "timestamp": "2018-05-03" + "user": "O'CONNER ABE", + "timestamp": "2020-08-10" }, { + "uuid": "174af389-f542-4a4d-a3d4-5f1001ba1d54", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "LAKIN JOSE", - "timestamp": "2020-04-02" + "user": "BOSCO CHANELLE", + "timestamp": "2014-06-16" }, { + "uuid": "60eb8c9d-69ad-4b7d-8225-d07209233195", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "SCHULTZ JOLIE", - "timestamp": "2016-05-14" + "user": "SCHMITT AURELIA", + "timestamp": "2017-08-15" }, { - "siteRegistry": false, + "uuid": "d84a313c-b952-418a-a2a7-f408197545a4", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "PARKER HARMONY", - "timestamp": "2022-07-27" + "user": "NITZSCHE COLTON", + "timestamp": "2016-08-15" }, { + "uuid": "a74756ab-40a9-433a-b05a-97363110eabe", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "HILPERT ARVILLA", - "timestamp": "2021-06-29" + "user": "HOMENICK-HAHN JAMAAL", + "timestamp": "2014-11-13" } ], "associatedSites": [ { - "dateNoted": "2019-06-16", - "notes": "", - "parcelID": "16845", - "siteID": "15493", - "siteRegistry": true - }, - { - "dateNoted": "2014-04-06", + "uuid": "73aa5357-32d8-493a-96b6-3caa5a78d572", + "dateNoted": "2023-01-29", "notes": "", - "parcelID": "18408", - "siteID": "16605", - "siteRegistry": true + "parcelID": "19131", + "siteID": "17418", + "siteRegistry": false }, { - "dateNoted": "2023-09-20", + "uuid": "f1396140-6f3c-48d4-9b09-1d6aab73dddd", + "dateNoted": "2023-03-12", "notes": "", - "parcelID": "17324", - "siteID": "17483", + "parcelID": "15674", + "siteID": "17896", "siteRegistry": false } ] }, { - "uuid": "b37e3e27-a01f-4a1d-ba80-188d34978f24", - "siteID": 19365, - "address": "529 Rogelio Mountain", - "latitude": 50.7788, - "longitude": -133.1751, - "lastUpdated": "2016-02-21", - "city": "South Simonechester", - "region": " North Coast", - "victoriaFile": "26250-20/5361", + "uuid": "86732fb8-c80b-453c-a11e-f3e163b73874", + "siteID": 16277, + "address": "964 Buddy Trace", + "latitude": 54.7737, + "longitude": -132.5943, + "lastUpdated": "2016-03-08", + "city": "Lakeland", + "region": "Thompson-Okanagan", + "victoriaFile": "26250-20/16988", "regionalFile": "N/A", "parcelIDs": [ - 6132631, - 5238159, - 7816904, - 6919870, - 5615759 + 5452003, + 743749, + 6148699, + 8188609, + 1745258 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2021-12-24", - "completed": "2021-06-29", - "initiated": "2014-04-04", - "ministryContact": "HAMMES JERRY", + "uuid": "7c29e1e7-6a37-4b53-9372-2780c7a539f9", + "createdAt": "2018-10-25", + "completed": "2014-10-15", + "initiated": "2020-06-20", + "ministryContact": "KESSLER KAMILLE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -43710,78 +50707,44 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { + "uuid": "9c2c4792-7005-47f5-8a24-5dca5eeb8821", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { + "uuid": "6af74aca-9476-4cb8-9980-01bfe1e8c2ae", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true }, { + "uuid": "ae87dbc4-e907-4228-924c-36df9da58227", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - } - ], - "siteRegistry": true - }, - { - "createdAt": "2020-07-16", - "completed": "2021-03-25", - "initiated": "2015-08-13", - "ministryContact": "PFANNERSTILL GENESIS", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", "siteRegistry": true }, { + "uuid": "438ea4d6-956e-444d-8ed6-3cf5b768ff1a", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { + "uuid": "fd05dc82-543a-4e64-8213-6e40fe193e63", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false } ], "siteRegistry": false }, { - "createdAt": "2021-02-21", - "completed": "2023-01-07", - "initiated": "2019-06-16", - "ministryContact": "BEAHAN STEPHON", + "uuid": "cad0b825-8cba-48eb-849f-7431e2d6dac7", + "createdAt": "2023-03-19", + "completed": "2018-04-06", + "initiated": "2020-01-07", + "ministryContact": "JOHNSON ORION", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -43790,27 +50753,32 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false + "uuid": "590898ac-f09c-47ee-af69-16bfafcf88e0", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true }, { + "uuid": "523ac83e-9a5e-4a81-8909-7b26c8d4fb07", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "uuid": "8d49bfd2-af89-4cb4-9546-a6a001210708", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": false }, { + "uuid": "d5a17ff7-873d-4816-87b3-84021964f595", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "01bc76ea-db3f-4044-a484-d85ed401e85d", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true } @@ -43820,9 +50788,10 @@ ], "participants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2019-04-15", - "startDate": "2016-05-02", + "uuid": "39dfc8f1-6846-428c-bb43-1c796d1eba74", + "name": "IPSUM", + "endDate": "2015-02-11", + "startDate": "2021-07-25", "notes": "", "roles": [ "ORGANIZATION" @@ -43830,93 +50799,108 @@ "siteRegistry": false }, { - "name": "IPSUM", - "endDate": "2015-05-20", - "startDate": "2018-07-01", + "uuid": "d3c549db-4537-41a6-ae6e-92acd226ae87", + "name": "AMET, DOLOR SIT", + "endDate": "2015-12-06", + "startDate": "2014-10-19", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2016-06-17", - "startDate": "2019-08-09", + "uuid": "a3530347-e45c-4622-b0d9-6a2283949c16", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2016-03-02", + "startDate": "2014-07-09", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": true + "siteRegistry": false } ], "suspectLandUses": [ { + "uuid": "62d0fb6e-7223-47e2-bcb6-8fb8c02a9256", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-11-29 (described on Site Profile dated 2019-11-29)", + "notes": "INSERTED FOR SITE PROFILE DATED 2015-12-04 (described on Site Profile dated 2015-12-04)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "uuid": "19050144-95c2-46a8-8f03-f1e51c648222", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2015-07-02 (described on Site Profile dated 2015-07-02)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "uuid": "f79f68df-9bdf-4c62-a8cf-a219d64d64d2", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2014-06-15 (described on Site Profile dated 2014-06-15)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { + "uuid": "1c8a7577-5468-4ebd-afdd-66fa5d728172", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-08-07 (described on Site Profile dated 2018-08-07)", + "notes": "INSERTED FOR SITE PROFILE DATED 2022-11-04 (described on Site Profile dated 2022-11-04)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "uuid": "cb84e4ac-6bc9-4a0b-bb35-0eb613fdd700", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2022-06-22 (described on Site Profile dated 2022-06-22)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], "parcelDescriptions": [ { + "uuid": "d4bfe1d4-d928-4d5a-a3f1-4f6331cdeb5a", "siteRegistry": true, - "dateNoted": "2019-06-22", - "parcelID": "15278", - "crownLandUsePIN": "17709", - "crownLandFileNumber": "15262", - "landDescription": "LOT 2 OF LOT 4 BLOCK 5 DISTRICT LOT 1 PLAN 7927" - }, - { - "siteRegistry": false, - "dateNoted": "2019-01-17", - "parcelID": "16071", - "crownLandUsePIN": "17832", - "crownLandFileNumber": "18843", - "landDescription": "LOT 5 OF LOT 3 BLOCK 3 DISTRICT LOT 5 PLAN 6249" + "dateNoted": "2015-05-14", + "parcelID": "16292", + "crownLandUsePIN": "16719", + "crownLandFileNumber": "15730", + "landDescription": "LOT 1 OF LOT 5 BLOCK 1 DISTRICT LOT 4 PLAN 4573" }, { + "uuid": "618cfabb-b2dc-4e1e-8613-6daab29dd598", "siteRegistry": false, - "dateNoted": "2014-03-06", - "parcelID": "20953", - "crownLandUsePIN": "20070", - "crownLandFileNumber": "17026", - "landDescription": "LOT 4 OF LOT 1 BLOCK 4 DISTRICT LOT 2 PLAN 8779" + "dateNoted": "2022-04-08", + "parcelID": "20489", + "crownLandUsePIN": "17025", + "crownLandFileNumber": "17098", + "landDescription": "LOT 4 OF LOT 3 BLOCK 5 DISTRICT LOT 1 PLAN 7969" } ], "siteDisclosures": [ { + "uuid": "4df7b168-f69c-4d6b-bb5e-68e9ac6c2e83", "siteRegistry": true, - "dateReceived": "2020-07-11", - "dateCompleted": "2015-05-05", - "dateEntered": "2015-09-08", - "dateRegistrar": "2021-06-17", - "dateLocalAuthorityReceived": "2015-01-26", - "summary": "Animi ad reiciendis consequuntur voluptas alias delectus.\nIste dolorem ullam culpa ut dicta fugit.", - "informationUsed": "Necessitatibus sint dolor ex magnam et.\nIllo sequi magni asperiores dolore fugiat.\nQuidem voluptas dolores.", - "pastOrPresentOrders": "Neque ipsam cumque.", + "dateReceived": "2013-11-18", + "dateCompleted": "2014-08-13", + "dateEntered": "2023-06-06", + "dateRegistrar": "2016-12-09", + "dateLocalAuthorityReceived": "2020-03-22", + "summary": "Quo magnam consequuntur perspiciatis sunt suscipit autem veritatis.", + "informationUsed": "Quo facere fugit repellat dolores repellat maiores.\nConsequatur maxime tempore quo alias optio adipisci animi ea a.\nLaborum sint facilis esse omnis atque accusantium.\nAlias incidunt minima voluptates commodi quis voluptates ipsa ad.\nRepudiandae quae perferendis eos placeat.", + "pastOrPresentOrders": "Laboriosam impedit quibusdam molestiae ab rem tempore modi voluptatum maiores.\nEligendi a atque sunt doloremque.", "commercialAndIndustrialPurposes": [ { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true - }, - { + "uuid": "b209ec12-641c-43c0-b14a-1a089c8dcfd9", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, { - "scheduleReference": "F1*", + "uuid": "95885b97-3098-4ceb-b6d3-37cf8d68c34f", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true + "siteRegistry": false }, { - "scheduleReference": "F1*", + "uuid": "eb554b75-c33f-41d4-8a12-08afd992b862", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true } @@ -43925,85 +50909,122 @@ ], "activityLog": [ { + "uuid": "63367a7c-2ae2-4037-8344-3da661a32d73", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "SCHMITT HELLEN", - "timestamp": "2014-02-05" + "user": "KLOCKO SIM", + "timestamp": "2020-11-11" }, { + "uuid": "ada410b5-dfd1-44ac-acd6-fb80da9f0540", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "O'CONNELL RAPHAELLE", - "timestamp": "2022-10-08" + "user": "HYATT ROSEMARY", + "timestamp": "2014-10-31" }, { + "uuid": "b379d7fe-64f7-4229-b9b1-ee2f7d176609", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "ALTENWERTH MAGDALENA", - "timestamp": "2021-09-09" + "user": "BARROWS PERCY", + "timestamp": "2018-11-21" + }, + { + "uuid": "6b5d09fd-6966-43e6-b899-7e49fe686658", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "GRADY RETHA", + "timestamp": "2021-11-16" + }, + { + "uuid": "08073435-6d08-41c3-a207-64c0c36bf6ee", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "EMARD AVIS", + "timestamp": "2017-11-11" }, { + "uuid": "9944fe52-8666-4599-a71a-820098695680", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "STARK MINA", - "timestamp": "2017-07-11" + "user": "ABERNATHY MAGDALENA", + "timestamp": "2020-03-02" }, { + "uuid": "0c9b7838-1c06-4a49-b82b-d86a35b84441", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "COLLINS-STIEDEMANN MAXIMUS", - "timestamp": "2014-03-14" + "user": "O'HARA JUWAN", + "timestamp": "2020-11-13" + }, + { + "uuid": "7e02e0b6-08c0-47e3-afec-4abdf6331ac3", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "WUCKERT LONIE", + "timestamp": "2019-12-11" + }, + { + "uuid": "0bd62aca-1788-4c52-8f68-060a1351d91c", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "STROSIN DAIJA", + "timestamp": "2021-06-20" } ], "associatedSites": [ { - "dateNoted": "2015-08-13", + "uuid": "f2b3f240-dfce-4338-9d02-1e4b8f3c383c", + "dateNoted": "2023-09-26", "notes": "", - "parcelID": "19294", - "siteID": "20045", - "siteRegistry": true + "parcelID": "15592", + "siteID": "19620", + "siteRegistry": false }, { - "dateNoted": "2017-02-06", + "uuid": "c2b7d894-e25d-4aca-83b2-eee3fd2c1dd2", + "dateNoted": "2021-10-10", "notes": "", - "parcelID": "20649", - "siteID": "17116", - "siteRegistry": true + "parcelID": "17740", + "siteID": "18021", + "siteRegistry": false }, { - "dateNoted": "2022-03-19", + "uuid": "78176239-8d9e-4ccd-922d-5b7e9889775e", + "dateNoted": "2020-01-23", "notes": "", - "parcelID": "17713", - "siteID": "19267", + "parcelID": "17386", + "siteID": "15852", "siteRegistry": false } ] }, { - "uuid": "38481872-a467-441f-8dd8-4ab6a1feaa89", - "siteID": 18770, - "address": "56649 Mertz Common", - "latitude": 54.3569, - "longitude": -122.3275, - "lastUpdated": "2021-02-14", - "city": "Greenholtland", - "region": "Vancouver Island/Coast", - "victoriaFile": "26250-20/9603", + "uuid": "a60968ae-be3d-477d-baac-df769af2a0ab", + "siteID": 17727, + "address": "729 Crist Spur", + "latitude": 58.3895, + "longitude": -122.9879, + "lastUpdated": "2016-02-18", + "city": "O'Fallon", + "region": "Thompson-Okanagan", + "victoriaFile": "26250-20/6464", "regionalFile": "N/A", "parcelIDs": [ - 4959200, - 1405614, - 5842134, - 2825755, - 966970 + 9700834, + 1756713, + 1366536, + 7932857, + 5618408 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2017-08-03", - "completed": "2017-04-13", - "initiated": "2016-08-28", - "ministryContact": "WILKINSON ROGER", + "uuid": "fe6d5b81-6f1b-40e8-a150-c2a489317a08", + "createdAt": "2014-08-20", + "completed": "2017-01-12", + "initiated": "2014-07-04", + "ministryContact": "DAVIS LORINE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -44012,38 +51033,44 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false + "uuid": "b6d7f761-ed39-40df-b196-c157b5f7357d", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", + "uuid": "70457dfe-b3ea-4163-9a9e-c3b1bfdcb6c7", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "uuid": "7dd165ef-5602-4b46-ba19-d868a240729d", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": true }, { + "uuid": "70c9cd0e-239d-492f-a72a-360948cb2395", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false }, { + "uuid": "1adbd0f8-8200-4ea9-91a2-6bee7e252d73", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2020-08-02", - "completed": "2018-06-14", - "initiated": "2014-04-20", - "ministryContact": "ALTENWERTH JULIE", + "uuid": "606de55c-2d50-44e1-95de-5396d9c8360a", + "createdAt": "2020-11-09", + "completed": "2022-06-03", + "initiated": "2015-04-13", + "ministryContact": "DICKINSON JALYN", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -44052,63 +51079,44 @@ ], "notationParticipants": [ { + "uuid": "6e18e003-31ae-45dd-9519-0ee8f7d1b3cf", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false }, { + "uuid": "965c454b-6f20-4be0-8a6d-d4c1b10f7d9a", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true + "role": "REQUESTED BY", + "siteRegistry": false }, { + "uuid": "1b8c8487-576c-46a8-b29d-0e9770e05e98", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { + "uuid": "8b500616-eb03-4392-a402-206ef53611fe", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true - } - ], - "siteRegistry": true - }, - { - "createdAt": "2020-11-19", - "completed": "2014-12-05", - "initiated": "2017-12-29", - "ministryContact": "MORISSETTE MURRAY", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false }, { + "uuid": "d4fa3c54-bffc-4abe-8b39-7ef1e3a58753", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true + "role": "SUBMITTED BY", + "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2020-01-17", - "completed": "2019-09-06", - "initiated": "2022-07-16", - "ministryContact": "KOELPIN RHEA", + "uuid": "a55f5cb2-d898-40e9-9930-ee4a2b57afd5", + "createdAt": "2022-10-31", + "completed": "2022-01-24", + "initiated": "2018-02-02", + "ministryContact": "SCHMELER RODERICK", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -44117,49 +51125,50 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", + "uuid": "218d9f12-06f2-425f-b894-83e5e5a55e8f", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true }, { + "uuid": "c08936ac-484f-4bd0-8091-638586d83b80", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true - } - ], - "siteRegistry": true - }, - { - "createdAt": "2023-03-03", - "completed": "2020-10-24", - "initiated": "2014-08-14", - "ministryContact": "SAWAYN ABDUL", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ + }, { + "uuid": "c71c6967-0451-46b0-be13-ee3960d558f6", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false }, { + "uuid": "5776d60b-c6d5-4fd7-9c6f-76a584deebf5", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false } ], "participants": [ { - "name": "IPSUM", - "endDate": "2022-12-02", - "startDate": "2015-07-30", + "uuid": "730fbfe1-ba33-4146-a926-e9125e56d75e", + "name": "AMET, DOLOR SIT", + "endDate": "2020-10-02", + "startDate": "2017-05-14", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "uuid": "1c6af3c7-d94d-4a6a-a1c9-cd473f377c78", + "name": "AMET, DOLOR SIT", + "endDate": "2015-07-28", + "startDate": "2017-08-24", "notes": "", "roles": [ "EMPLOYEE" @@ -44167,168 +51176,215 @@ "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2019-12-17", - "startDate": "2023-04-14", + "uuid": "adb2e38c-7f41-4abd-9ce2-1496e07c9dba", + "name": "AMET, DOLOR SIT", + "endDate": "2014-10-23", + "startDate": "2018-06-26", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "uuid": "2dbbea1a-73e7-442d-a672-cbed2190a240", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2015-09-06", + "startDate": "2023-02-01", "notes": "", "roles": [ "ORGANIZATION" ], "siteRegistry": false + }, + { + "uuid": "391915be-3824-4cee-a003-1d1a1ad3b9b8", + "name": "AMET, DOLOR SIT", + "endDate": "2018-03-12", + "startDate": "2015-11-30", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false } ], "suspectLandUses": [ { + "uuid": "6024cb30-66c7-4bd0-a912-0bdc76a7e722", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-04-21 (described on Site Profile dated 2017-04-21)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" - }, - { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-01-31 (described on Site Profile dated 2021-01-31)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "notes": "INSERTED FOR SITE PROFILE DATED 2018-08-18 (described on Site Profile dated 2018-08-18)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { + "uuid": "1c3cfec3-6552-4608-8399-6cc9db93dd6c", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-11-30 (described on Site Profile dated 2015-11-30)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" - }, - { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-05-06 (described on Site Profile dated 2019-05-06)", + "notes": "INSERTED FOR SITE PROFILE DATED 2015-06-07 (described on Site Profile dated 2015-06-07)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], "parcelDescriptions": [ { - "siteRegistry": false, - "dateNoted": "2023-04-22", - "parcelID": "18210", - "crownLandUsePIN": "16245", - "crownLandFileNumber": "19421", - "landDescription": "LOT 4 OF LOT 5 BLOCK 2 DISTRICT LOT 1 PLAN 3332" + "uuid": "42363022-46ce-4e11-b2bf-7ab9439fd904", + "siteRegistry": true, + "dateNoted": "2020-05-06", + "parcelID": "15610", + "crownLandUsePIN": "17854", + "crownLandFileNumber": "20250", + "landDescription": "LOT 3 OF LOT 4 BLOCK 5 DISTRICT LOT 2 PLAN 6002" }, { + "uuid": "df330a47-1c07-480c-80ee-47e2c464a860", "siteRegistry": true, - "dateNoted": "2015-10-25", - "parcelID": "19762", - "crownLandUsePIN": "15300", - "crownLandFileNumber": "15491", - "landDescription": "LOT 1 OF LOT 2 BLOCK 2 DISTRICT LOT 3 PLAN 9680" + "dateNoted": "2014-09-29", + "parcelID": "16866", + "crownLandUsePIN": "20769", + "crownLandFileNumber": "16738", + "landDescription": "LOT 3 OF LOT 3 BLOCK 2 DISTRICT LOT 5 PLAN 3098" }, { - "siteRegistry": false, - "dateNoted": "2023-03-12", - "parcelID": "16214", - "crownLandUsePIN": "15422", - "crownLandFileNumber": "16622", - "landDescription": "LOT 2 OF LOT 5 BLOCK 1 DISTRICT LOT 4 PLAN 7773" + "uuid": "289ecf49-a13a-4254-85f8-ecb8418bd708", + "siteRegistry": true, + "dateNoted": "2023-01-31", + "parcelID": "20613", + "crownLandUsePIN": "17987", + "crownLandFileNumber": "20965", + "landDescription": "LOT 1 OF LOT 1 BLOCK 1 DISTRICT LOT 2 PLAN 7642" + }, + { + "uuid": "d12c9519-eb98-4ba7-a7d5-562fc568791d", + "siteRegistry": true, + "dateNoted": "2021-11-08", + "parcelID": "18554", + "crownLandUsePIN": "17920", + "crownLandFileNumber": "20955", + "landDescription": "LOT 2 OF LOT 3 BLOCK 3 DISTRICT LOT 5 PLAN 3090" } ], "siteDisclosures": [ { + "uuid": "565f8530-153f-4226-bc62-636addf2cdf6", "siteRegistry": true, - "dateReceived": "2015-06-18", - "dateCompleted": "2020-10-07", - "dateEntered": "2017-10-16", - "dateRegistrar": "2019-11-14", - "dateLocalAuthorityReceived": "2016-11-09", - "summary": "Sunt voluptatem atque nulla sunt repellat debitis voluptatem sed.\nMolestias dolorem in maxime recusandae ea quos.", - "informationUsed": "Ex officia libero magnam velit culpa consequuntur.\nIpsum dolorem enim repellat.\nUt debitis officia atque quidem.\nAperiam doloremque atque nostrum impedit.\nVero quos officiis voluptas magnam.", - "pastOrPresentOrders": "Reprehenderit possimus maxime repudiandae quos quam eius similique quam.", + "dateReceived": "2015-09-30", + "dateCompleted": "2020-08-28", + "dateEntered": "2019-11-13", + "dateRegistrar": "2014-03-27", + "dateLocalAuthorityReceived": "2016-12-09", + "summary": "Ab repudiandae quibusdam ut.\nMinima ad dolore.", + "informationUsed": "Consequatur deleniti ut minus animi repellat ipsa.\nRem quis eligendi nihil sit unde eius excepturi.\nEaque facilis repellendus.\nTenetur doloribus quis.\nPossimus cum quibusdam quas debitis nulla cupiditate ratione.", + "pastOrPresentOrders": "Amet asperiores soluta dolor asperiores deserunt nam nisi reprehenderit.\nHarum magnam culpa commodi voluptates neque quasi.\nHarum quia quaerat cum eveniet voluptatum nesciunt facere similique.", "commercialAndIndustrialPurposes": [ { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false - }, - { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "uuid": "7380c42f-ea0e-4403-8438-90e3311fdb43", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false + "uuid": "18f074c4-09ab-4c8e-8f6e-394714bc3941", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true } ] } ], "activityLog": [ { + "uuid": "b1dcbc0b-95c3-4eb0-9f62-2f0016346d27", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "NIENOW LAVADA", - "timestamp": "2021-03-20" + "user": "MAGGIO BETTY", + "timestamp": "2021-07-13" }, { - "siteRegistry": true, + "uuid": "dc518c20-461f-4359-a791-910af6eda907", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "BINS OKEY", - "timestamp": "2015-12-08" + "user": "KSHLERIN JANAE", + "timestamp": "2021-06-27" }, { - "siteRegistry": true, + "uuid": "fd77dbab-a022-416f-bdd7-704ed658d93b", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "KRIS ELZA", - "timestamp": "2016-05-25" + "user": "MURRAY RIVER", + "timestamp": "2019-04-22" }, { + "uuid": "72c6cfff-ca1c-4dfc-b6e8-d6006a15ccfc", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "LESCH MAXIMO", - "timestamp": "2022-11-19" + "user": "MCGLYNN ELIJAH", + "timestamp": "2019-04-10" }, { - "siteRegistry": true, + "uuid": "9bcfede9-ef6a-4cb9-b214-23b72772bb6d", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "DARE LAYNE", - "timestamp": "2019-05-26" + "user": "GOODWIN DELBERT", + "timestamp": "2013-10-28" + }, + { + "uuid": "f472bfc4-4838-456a-8863-7bd28f4d3057", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "SCHINNER DEVYN", + "timestamp": "2022-01-14" + }, + { + "uuid": "98337abd-ef4d-417b-9614-54b663dfb849", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "KOCH CLAUDIA", + "timestamp": "2020-07-14" } ], "associatedSites": [ { - "dateNoted": "2019-02-24", + "uuid": "747a90ca-8ae0-46e1-8b79-d67e32ad2645", + "dateNoted": "2018-06-14", "notes": "", - "parcelID": "19305", - "siteID": "20583", + "parcelID": "17373", + "siteID": "17858", "siteRegistry": true }, { - "dateNoted": "2020-03-18", + "uuid": "43131614-c608-474b-ab3c-13b99834bb08", + "dateNoted": "2015-01-21", "notes": "", - "parcelID": "17627", - "siteID": "19450", - "siteRegistry": false + "parcelID": "19207", + "siteID": "17571", + "siteRegistry": true } ] }, { - "uuid": "92ef5af3-5dac-4d10-b98d-e88ce29e35a4", - "siteID": 19914, - "address": "24281 Sawayn Crescent", - "latitude": 53.2934, - "longitude": -137.5558, - "lastUpdated": "2016-05-21", - "city": "Friesenstead", - "region": " North Coast", - "victoriaFile": "26250-20/7346", + "uuid": "ca0a41a1-d5d9-4190-a82f-8ea6b63b1c44", + "siteID": 19713, + "address": "50866 Veum Spring", + "latitude": 56.7632, + "longitude": -119.2787, + "lastUpdated": "2019-03-05", + "city": "New Napoleontown", + "region": "Cariboo", + "victoriaFile": "26250-20/9883", "regionalFile": "N/A", "parcelIDs": [ - 9115869, - 9124411, - 2999257, - 1841405, - 4488640 + 9429607, + 2435092, + 396723, + 3533405, + 5541908 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2016-10-13", - "completed": "2014-06-02", - "initiated": "2014-10-01", - "ministryContact": "BROWN CAMERON", + "uuid": "3fb0cf14-9ec3-484c-8c1e-b81d3954f959", + "createdAt": "2022-04-14", + "completed": "2021-04-29", + "initiated": "2018-08-21", + "ministryContact": "KLOCKO KARLEE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -44337,23 +51393,38 @@ ], "notationParticipants": [ { + "uuid": "68ccd679-719c-49e6-b7ff-8ca0bcf2c62e", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true }, { + "uuid": "045722ff-13ee-4602-b745-b0b33742da0d", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false + }, + { + "uuid": "aa7ca617-2784-42a0-96f2-e808bd0dc87a", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "371594fb-4c66-49cb-a47a-5b214b3af286", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2017-02-12", - "completed": "2013-11-02", - "initiated": "2019-03-26", - "ministryContact": "LIND NOLAN", + "uuid": "8963e5dc-d4b5-43f0-aa8a-5c27d5859560", + "createdAt": "2018-04-14", + "completed": "2014-05-27", + "initiated": "2013-12-28", + "ministryContact": "HEANEY KAELA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -44362,33 +51433,66 @@ ], "notationParticipants": [ { + "uuid": "a37c5b9a-989b-4d74-a21a-fdefef5dfb01", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false + "role": "SUBMITTED BY", + "siteRegistry": true }, { + "uuid": "3ffdf8be-2bb3-4e86-98a8-016814e66964", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "uuid": "59798dbd-0736-4e67-9082-62101b712ff8", + "createdAt": "2014-10-15", + "completed": "2022-01-20", + "initiated": "2020-09-08", + "ministryContact": "SAWAYN CONNER", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "uuid": "aac48031-8c1d-4a4e-b968-377a92c7e507", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "e90ecda8-dffc-44fe-b9a6-3950195b18c8", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true }, { + "uuid": "ceab69e5-af3b-4f40-a8c4-beefabf3ab6d", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false + }, + { + "uuid": "16c943f2-dbbc-4a40-b427-6930fa03d318", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true } ], "siteRegistry": true }, { - "createdAt": "2017-02-26", - "completed": "2016-07-05", - "initiated": "2019-05-22", - "ministryContact": "KUHLMAN RICARDO", + "uuid": "342d7aaa-e4ce-4700-9ff0-4b27734f6fa2", + "createdAt": "2016-04-17", + "completed": "2017-02-16", + "initiated": "2022-12-30", + "ministryContact": "GLOVER DORTHY", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -44397,11 +51501,13 @@ ], "notationParticipants": [ { + "uuid": "fc34a6ce-e49b-4df3-8f8f-e077f623199d", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false + "role": "SUBMITTED BY", + "siteRegistry": true }, { + "uuid": "39df2cf8-a930-46b2-a666-7e1032477472", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true @@ -44410,10 +51516,11 @@ "siteRegistry": false }, { - "createdAt": "2018-12-24", - "completed": "2017-09-09", - "initiated": "2020-05-17", - "ministryContact": "LEHNER DESIREE", + "uuid": "11d72852-c040-440f-8691-4b7136e87205", + "createdAt": "2018-11-08", + "completed": "2021-09-07", + "initiated": "2014-02-02", + "ministryContact": "LEGROS FRANCO", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -44422,26 +51529,13 @@ ], "notationParticipants": [ { + "uuid": "381a528e-9a52-4447-8483-90b18805815e", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { + "uuid": "243aa2b1-1224-44af-a515-93f28a986a46", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true @@ -44452,19 +51546,21 @@ ], "participants": [ { + "uuid": "64664fed-1a6a-4acb-99cd-a8ec14e725a8", "name": "IPSUM", - "endDate": "2015-01-22", - "startDate": "2023-03-20", + "endDate": "2023-06-03", + "startDate": "2018-06-15", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": false }, { - "name": "AMET, DOLOR SIT", - "endDate": "2019-04-26", - "startDate": "2017-03-20", + "uuid": "65cae325-772b-4569-be39-54564dd9e949", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2019-07-27", + "startDate": "2016-07-08", "notes": "", "roles": [ "ORGANIZATION" @@ -44472,203 +51568,219 @@ "siteRegistry": true }, { - "name": "AMET, DOLOR SIT", - "endDate": "2018-05-19", - "startDate": "2023-05-15", + "uuid": "2abc3a57-0eb9-4c2d-bbd7-fd2b92109246", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2022-07-23", + "startDate": "2019-11-28", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true } ], "suspectLandUses": [ { + "uuid": "30400ed4-03ab-4b48-a787-dcec55089083", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2018-06-26 (described on Site Profile dated 2018-06-26)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "uuid": "9359df86-cebc-4403-9398-7a7975db9634", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-09-18 (described on Site Profile dated 2018-09-18)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "notes": "INSERTED FOR SITE PROFILE DATED 2020-07-02 (described on Site Profile dated 2020-07-02)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { + "uuid": "28f7c1c4-bed3-4c5d-873b-ca3f40b430fd", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-07-24 (described on Site Profile dated 2018-07-24)", + "notes": "INSERTED FOR SITE PROFILE DATED 2022-11-06 (described on Site Profile dated 2022-11-06)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { + "uuid": "1f251986-b838-4cbd-bf59-c21534d884fb", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-03-16 (described on Site Profile dated 2014-03-16)", + "notes": "INSERTED FOR SITE PROFILE DATED 2018-03-15 (described on Site Profile dated 2018-03-15)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], "parcelDescriptions": [ { + "uuid": "60b2eb53-bef7-4c48-955a-8d2c1ea750ec", "siteRegistry": false, - "dateNoted": "2019-07-14", - "parcelID": "19775", - "crownLandUsePIN": "20177", - "crownLandFileNumber": "19797", - "landDescription": "LOT 3 OF LOT 3 BLOCK 2 DISTRICT LOT 5 PLAN 4691" + "dateNoted": "2017-04-14", + "parcelID": "17362", + "crownLandUsePIN": "16832", + "crownLandFileNumber": "17218", + "landDescription": "LOT 3 OF LOT 2 BLOCK 4 DISTRICT LOT 4 PLAN 9203" }, { + "uuid": "876e3780-e78c-4a14-88ec-9bbeb65b0921", "siteRegistry": true, - "dateNoted": "2014-11-29", - "parcelID": "20155", - "crownLandUsePIN": "19838", - "crownLandFileNumber": "17985", - "landDescription": "LOT 3 OF LOT 3 BLOCK 2 DISTRICT LOT 2 PLAN 8827" + "dateNoted": "2022-02-18", + "parcelID": "15849", + "crownLandUsePIN": "16932", + "crownLandFileNumber": "18203", + "landDescription": "LOT 3 OF LOT 2 BLOCK 5 DISTRICT LOT 4 PLAN 3082" + }, + { + "uuid": "916f3e1f-6daf-4971-9227-b4ccd55c93ce", + "siteRegistry": false, + "dateNoted": "2019-04-15", + "parcelID": "15493", + "crownLandUsePIN": "20391", + "crownLandFileNumber": "20306", + "landDescription": "LOT 4 OF LOT 1 BLOCK 2 DISTRICT LOT 3 PLAN 4738" }, { + "uuid": "f36d9501-8e58-4dda-b3c6-19b01f14adfe", "siteRegistry": true, - "dateNoted": "2021-06-20", - "parcelID": "18479", - "crownLandUsePIN": "15454", - "crownLandFileNumber": "20316", - "landDescription": "LOT 5 OF LOT 5 BLOCK 2 DISTRICT LOT 3 PLAN 4074" + "dateNoted": "2019-05-22", + "parcelID": "18637", + "crownLandUsePIN": "20930", + "crownLandFileNumber": "16222", + "landDescription": "LOT 3 OF LOT 3 BLOCK 2 DISTRICT LOT 2 PLAN 6073" } ], "siteDisclosures": [ { + "uuid": "30c1f6ae-cbea-492a-bac8-442e27db4bfb", "siteRegistry": false, - "dateReceived": "2020-06-28", - "dateCompleted": "2023-02-10", - "dateEntered": "2022-07-10", - "dateRegistrar": "2016-03-17", - "dateLocalAuthorityReceived": "2021-11-08", - "summary": "Dolore aperiam accusantium at tenetur sunt numquam eveniet blanditiis.\nOfficia labore earum ratione itaque architecto.", - "informationUsed": "Culpa et labore quidem fugiat possimus.\nNobis temporibus inventore repellendus doloribus.\nEa porro dicta.\nIncidunt vel adipisci dolorem minus soluta error saepe.\nAliquid eum saepe doloremque accusantium ea voluptatum.", - "pastOrPresentOrders": "Amet libero quibusdam ut illo asperiores velit.\nIpsum quia ratione accusamus architecto sed consectetur sed similique.\nQuaerat corporis illo.", - "commercialAndIndustrialPurposes": [ - { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true - }, - { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true - } - ] - }, - { - "siteRegistry": false, - "dateReceived": "2016-04-09", - "dateCompleted": "2013-12-03", - "dateEntered": "2022-05-18", - "dateRegistrar": "2021-09-03", - "dateLocalAuthorityReceived": "2015-06-30", - "summary": "Optio iste sed quos.\nReprehenderit quae perspiciatis laborum tenetur dignissimos velit nesciunt.\nId ex ut reprehenderit eligendi deserunt nobis.", - "informationUsed": "Voluptates aliquid vitae libero aspernatur earum.\nAsperiores modi cumque odio aperiam expedita repellendus ipsum.\nQuasi debitis voluptas dicta ipsum.", - "pastOrPresentOrders": "Odit recusandae tenetur quam consequuntur sint ipsa quia dolore voluptas.\nNobis ducimus tempore doloribus.", + "dateReceived": "2014-07-17", + "dateCompleted": "2017-06-04", + "dateEntered": "2015-03-02", + "dateRegistrar": "2021-04-05", + "dateLocalAuthorityReceived": "2017-12-11", + "summary": "Earum placeat enim consectetur sunt ipsum consequuntur ratione esse.", + "informationUsed": "Sed possimus mollitia quia fugiat fuga ut a.\nEa quos ad animi ipsum ea.\nEt aliquam qui quisquam dolore minus consequuntur labore magni velit.", + "pastOrPresentOrders": "Ducimus a commodi nulla nobis recusandae optio.", "commercialAndIndustrialPurposes": [ { + "uuid": "8b0ea62e-6535-4809-ab26-326d3e31a03d", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false }, { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true - }, - { + "uuid": "b761e101-ca71-4ecb-8ab2-2b44a4606d96", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false }, { - "scheduleReference": "F1*", + "uuid": "baf5eb40-7d92-4100-ac48-6ff7eed9d3d3", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true + "siteRegistry": false } ] } ], "activityLog": [ { - "siteRegistry": true, + "uuid": "f85f6a00-6256-4353-9e92-fce3a8d7bc76", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "LOCKMAN WYMAN", - "timestamp": "2021-11-16" + "user": "TREMBLAY BRODERICK", + "timestamp": "2017-05-28" }, { - "siteRegistry": true, + "uuid": "5876373e-47f7-482d-a04f-0ccecaed2c2d", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "LABADIE-DECKOW LUDWIG", - "timestamp": "2016-10-17" + "user": "FRANEY KRYSTAL", + "timestamp": "2020-06-11" }, { + "uuid": "5cb1df59-e248-4725-b684-ad96a287d294", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "LOWE VICENTA", - "timestamp": "2019-01-28" + "user": "HODKIEWICZ MICHELLE", + "timestamp": "2019-11-07" }, { + "uuid": "bfea328f-185f-4413-bec6-c40b46e8846e", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "CARTWRIGHT SILAS", - "timestamp": "2015-02-07" + "user": "VONRUEDEN MOSES", + "timestamp": "2022-06-23" }, { - "siteRegistry": true, + "uuid": "e9b8642b-710d-4410-9a99-ab23bdd94c1e", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "KERLUKE AKEEM", - "timestamp": "2016-12-11" + "user": "LITTLE CRAIG", + "timestamp": "2014-03-14" }, { - "siteRegistry": false, + "uuid": "5f4382ac-14e2-46d2-90d8-e85c35621c98", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "UPTON MATT", - "timestamp": "2022-11-25" + "user": "KUHLMAN ROOSEVELT", + "timestamp": "2014-02-22" }, { - "siteRegistry": true, + "uuid": "ee7670db-1b48-42b6-b4e7-d4f1690b812b", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "WELCH-KEMMER ALEXANDREA", - "timestamp": "2019-10-26" + "user": "SAWAYN CONSTANCE", + "timestamp": "2020-09-03" } ], "associatedSites": [ { - "dateNoted": "2017-10-14", + "uuid": "8cd98efa-30c6-46ae-8863-3c3843a373ef", + "dateNoted": "2023-06-18", "notes": "", - "parcelID": "20150", - "siteID": "20713", - "siteRegistry": true + "parcelID": "16485", + "siteID": "17082", + "siteRegistry": false }, { - "dateNoted": "2015-06-06", + "uuid": "1b49cc4b-66c9-4ffd-8447-bf7c9c70ace1", + "dateNoted": "2022-08-11", "notes": "", - "parcelID": "20170", - "siteID": "20707", - "siteRegistry": true + "parcelID": "17487", + "siteID": "18410", + "siteRegistry": false + }, + { + "uuid": "afb0f100-e641-4af6-aa3e-5baf1829daee", + "dateNoted": "2022-08-23", + "notes": "", + "parcelID": "18752", + "siteID": "19479", + "siteRegistry": false } ] }, { - "uuid": "7cbd88cd-0eb0-43a0-9b8a-f9f9d5e4a9ac", - "siteID": 18214, - "address": "1068 Johanna Ford", - "latitude": 55.3804, - "longitude": -135.2881, - "lastUpdated": "2016-02-14", - "city": "North Destany", - "region": " North Coast", - "victoriaFile": "26250-20/12682", + "uuid": "c9947b0d-645a-47a4-8af1-c27d38069e3f", + "siteID": 19300, + "address": "10618 Yvonne Fork", + "latitude": 58.5936, + "longitude": -127.2763, + "lastUpdated": "2023-07-10", + "city": "Fort Viviane", + "region": "Mainland/Southwest", + "victoriaFile": "26250-20/16055", "regionalFile": "N/A", "parcelIDs": [ - 4838853, - 9518742, - 337083, - 3850017, - 3029801 + 5632895, + 5808916, + 9514601, + 3719069, + 4309510 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2023-09-04", - "completed": "2020-06-16", - "initiated": "2017-08-20", - "ministryContact": "HINTZ LAURIANE", + "uuid": "a3226bbe-9ec9-4f58-918f-18a3b0752a71", + "createdAt": "2015-08-27", + "completed": "2021-04-12", + "initiated": "2017-08-16", + "ministryContact": "JOHNSTON DEJUAN", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -44677,38 +51789,32 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { + "uuid": "da323341-705e-4282-bdf1-d6f2381a8acf", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { + "uuid": "8d922431-b7bb-4adc-9135-2fb0952a5415", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "uuid": "293429b4-63ea-44f8-a7f7-dd0d289e593e", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": false } ], "siteRegistry": true }, { - "createdAt": "2022-11-29", - "completed": "2019-07-30", - "initiated": "2016-03-20", - "ministryContact": "BAILEY LAVON", + "uuid": "a1cfd6eb-fb40-467b-8798-87426a50f4bd", + "createdAt": "2018-12-17", + "completed": "2020-02-28", + "initiated": "2022-11-23", + "ministryContact": "GERHOLD VITO", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -44717,298 +51823,354 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "uuid": "795b92a1-76d1-4d7f-8e53-2463f2d883ec", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": false }, { + "uuid": "cd456ffd-9968-4ae3-a3fd-ed532aef36fa", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "b58204f0-d9c6-43a4-934f-a33fb830cf50", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false - }, + } + ], + "siteRegistry": false + }, + { + "uuid": "e9525f71-a897-4564-a614-b117a9bb7612", + "createdAt": "2018-03-14", + "completed": "2015-03-28", + "initiated": "2016-01-04", + "ministryContact": "YUNDT-CORKERY EMMA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ { + "uuid": "35e6a367-8627-42c8-8015-a914d9e010e3", "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "f518651e-db9e-4a66-8f26-5ea9c1bb6725", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false } ], "participants": [ { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2021-05-16", - "startDate": "2022-06-08", + "uuid": "c1eeccec-1e1c-4874-803f-696f7e013d61", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2019-07-07", + "startDate": "2018-12-13", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false }, { - "name": "IPSUM", - "endDate": "2022-11-12", - "startDate": "2015-07-06", + "uuid": "12ab64bf-09e6-4c7e-a613-e0c7eb0fff20", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2023-09-10", + "startDate": "2017-09-23", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true }, { + "uuid": "fffc9566-f9dc-4451-bb47-99a0b39abfea", "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2023-01-18", - "startDate": "2015-12-22", + "endDate": "2016-04-25", + "startDate": "2018-05-18", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true }, { - "name": "AMET, DOLOR SIT", - "endDate": "2019-12-12", - "startDate": "2019-02-08", + "uuid": "c3446c5f-3ad0-4585-8e0f-8b2c5fb88708", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2023-07-06", + "startDate": "2023-06-03", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], - "siteRegistry": false + "siteRegistry": true } ], "suspectLandUses": [ { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-02-28 (described on Site Profile dated 2018-02-28)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "uuid": "9a2ca976-d31e-4ef1-b3bd-f1e8ad802a14", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2014-12-05 (described on Site Profile dated 2014-12-05)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { + "uuid": "6a63b812-b5a3-4878-8319-cf7776e54f07", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2020-12-07 (described on Site Profile dated 2020-12-07)", + "notes": "INSERTED FOR SITE PROFILE DATED 2019-11-16 (described on Site Profile dated 2019-11-16)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { + "uuid": "30ddd15b-b1ae-4f64-b28f-838626b9947c", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-02-08 (described on Site Profile dated 2014-02-08)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" - }, - { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2020-09-03 (described on Site Profile dated 2020-09-03)", + "notes": "INSERTED FOR SITE PROFILE DATED 2013-12-31 (described on Site Profile dated 2013-12-31)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-09-27 (described on Site Profile dated 2022-09-27)", + "uuid": "e46f45ee-747a-47e8-9d08-da2f970ecf75", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2021-07-13 (described on Site Profile dated 2021-07-13)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], "parcelDescriptions": [ { + "uuid": "97a86a51-522f-4640-b766-52975c11b576", "siteRegistry": false, - "dateNoted": "2023-02-05", - "parcelID": "15979", - "crownLandUsePIN": "15957", - "crownLandFileNumber": "16929", - "landDescription": "LOT 2 OF LOT 4 BLOCK 3 DISTRICT LOT 5 PLAN 7860" - }, - { - "siteRegistry": true, - "dateNoted": "2015-12-13", - "parcelID": "16716", - "crownLandUsePIN": "16073", - "crownLandFileNumber": "16566", - "landDescription": "LOT 3 OF LOT 2 BLOCK 4 DISTRICT LOT 1 PLAN 6240" + "dateNoted": "2015-08-10", + "parcelID": "15742", + "crownLandUsePIN": "19173", + "crownLandFileNumber": "19475", + "landDescription": "LOT 1 OF LOT 3 BLOCK 5 DISTRICT LOT 5 PLAN 4313" }, { + "uuid": "1b699fbb-46b9-4a1d-9f75-5a2ab359d16e", "siteRegistry": false, - "dateNoted": "2018-06-03", - "parcelID": "18509", - "crownLandUsePIN": "16870", - "crownLandFileNumber": "18257", - "landDescription": "LOT 4 OF LOT 5 BLOCK 2 DISTRICT LOT 2 PLAN 8531" + "dateNoted": "2016-10-13", + "parcelID": "16093", + "crownLandUsePIN": "19065", + "crownLandFileNumber": "17716", + "landDescription": "LOT 4 OF LOT 1 BLOCK 5 DISTRICT LOT 3 PLAN 4199" }, { - "siteRegistry": true, - "dateNoted": "2018-09-13", - "parcelID": "19966", - "crownLandUsePIN": "18123", - "crownLandFileNumber": "17049", - "landDescription": "LOT 5 OF LOT 4 BLOCK 3 DISTRICT LOT 5 PLAN 5221" + "uuid": "67ecf23a-4ae7-4b54-83f8-b8e8ef33655c", + "siteRegistry": false, + "dateNoted": "2021-06-10", + "parcelID": "20961", + "crownLandUsePIN": "16107", + "crownLandFileNumber": "17118", + "landDescription": "LOT 3 OF LOT 1 BLOCK 3 DISTRICT LOT 1 PLAN 4636" }, { + "uuid": "49f4d725-2d33-4368-8174-cadc6df88672", "siteRegistry": false, - "dateNoted": "2014-10-18", - "parcelID": "17913", - "crownLandUsePIN": "17152", - "crownLandFileNumber": "17587", - "landDescription": "LOT 1 OF LOT 4 BLOCK 2 DISTRICT LOT 1 PLAN 7127" + "dateNoted": "2018-09-28", + "parcelID": "15954", + "crownLandUsePIN": "20275", + "crownLandFileNumber": "16979", + "landDescription": "LOT 4 OF LOT 1 BLOCK 1 DISTRICT LOT 5 PLAN 4343" } ], "siteDisclosures": [ { - "siteRegistry": true, - "dateReceived": "2014-05-19", - "dateCompleted": "2018-10-14", - "dateEntered": "2015-01-02", - "dateRegistrar": "2016-11-27", - "dateLocalAuthorityReceived": "2016-03-16", - "summary": "Unde voluptatem deleniti excepturi iste harum explicabo officiis in natus.", - "informationUsed": "Molestias eum corporis eum sapiente dolor.\nQuia adipisci impedit officiis impedit sed quasi.\nExercitationem tempora deserunt ea cumque molestias blanditiis vel facilis.\nVoluptatum mollitia nulla ut quasi magni veniam.", - "pastOrPresentOrders": "Molestias et neque et vitae commodi eius omnis.", + "uuid": "4cc1c8b0-1c3a-430d-86aa-ce6e49ff30f8", + "siteRegistry": false, + "dateReceived": "2017-04-08", + "dateCompleted": "2019-03-20", + "dateEntered": "2021-10-10", + "dateRegistrar": "2021-09-05", + "dateLocalAuthorityReceived": "2021-03-07", + "summary": "Nihil maiores facere a facere praesentium quia.\nPerferendis error magni aspernatur.", + "informationUsed": "Consequuntur animi maxime beatae ipsum.\nFacilis facere dolorum debitis est ullam.\nTemporibus vero accusantium ea nostrum iste non dolor.\nNobis iste delectus necessitatibus maxime praesentium facere.\nAmet iure labore sapiente est cum praesentium architecto.", + "pastOrPresentOrders": "Ducimus dolorem veritatis rem occaecati pariatur itaque deserunt quis.\nNobis quibusdam laborum minus ratione et nostrum placeat.\nAssumenda beatae modi doloremque eaque illum voluptatem commodi sapiente nam.", "commercialAndIndustrialPurposes": [ { - "scheduleReference": "F1*", + "uuid": "c4276057-f15f-4d13-9bb9-26ed094f4c90", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true + "siteRegistry": false }, { + "uuid": "ec643b16-2677-44b5-9f25-1cdd57fe2c01", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false + "siteRegistry": true + }, + { + "uuid": "d3cb46f8-8c0f-4945-9afe-bb34db303673", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true } ] }, { + "uuid": "9df46b15-f586-4516-b669-0bd42ca12fac", "siteRegistry": true, - "dateReceived": "2020-07-01", - "dateCompleted": "2021-02-26", - "dateEntered": "2023-06-01", - "dateRegistrar": "2022-01-22", - "dateLocalAuthorityReceived": "2020-05-22", - "summary": "Iure saepe eos.\nIn quidem sit ex velit.\nNon quam mollitia repellat nostrum ut consequuntur blanditiis quo.", - "informationUsed": "Dignissimos modi nam excepturi rem consequatur laborum mollitia perferendis.\nFacere delectus modi voluptatum.\nNesciunt ratione eos laboriosam.", - "pastOrPresentOrders": "Magni sequi eos.", + "dateReceived": "2017-08-04", + "dateCompleted": "2018-12-17", + "dateEntered": "2015-05-27", + "dateRegistrar": "2018-06-11", + "dateLocalAuthorityReceived": "2014-09-06", + "summary": "Occaecati eius eligendi perspiciatis.", + "informationUsed": "Quidem dicta reiciendis laboriosam nisi occaecati ab possimus quae optio.\nOccaecati libero reprehenderit rem fuga enim.\nAnimi sunt ratione praesentium.\nIpsam qui aspernatur beatae aperiam nemo.\nQuibusdam quae minus architecto id eligendi nisi.", + "pastOrPresentOrders": "Nemo maxime id ut reprehenderit adipisci vel.\nPlaceat quisquam hic.", "commercialAndIndustrialPurposes": [ { + "uuid": "3aadeecf-a7fc-413f-8f56-f1a2d76312f3", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { - "scheduleReference": "F2*", + "uuid": "a4b755f0-7a6f-4e5e-b2b0-d1edaed70c37", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false }, { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false + "uuid": "9e4a097a-c403-4f14-b597-617d733f015d", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "uuid": "4a923e37-6cc6-46ae-ad07-e17604ff44e1", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true } ] } ], "activityLog": [ { - "siteRegistry": false, + "uuid": "af5c8e18-c8e0-49bc-b2d0-cc8681dae9d7", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "WALKER JESSYCA", - "timestamp": "2020-12-29" + "user": "BOGISICH CASSANDRA", + "timestamp": "2021-11-10" }, { - "siteRegistry": true, + "uuid": "4c988458-900f-4748-8cf9-7b1f08519cbd", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "UPTON MARTY", - "timestamp": "2023-05-07" + "user": "HILLL JENNYFER", + "timestamp": "2017-12-07" }, { + "uuid": "599f37fb-30de-45b1-8a39-4b370a5668ad", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "KESSLER AURELIO", - "timestamp": "2023-05-01" + "user": "SCHUMM ALDA", + "timestamp": "2023-04-25" }, { + "uuid": "0be323a3-d845-4caf-ac4f-16a2327d4a33", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "STROMAN NOAH", - "timestamp": "2016-06-30" + "user": "GRADY FELIPE", + "timestamp": "2017-06-26" }, { - "siteRegistry": true, + "uuid": "8c5dadd3-9d37-4e93-8827-f26390e24ce4", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "MOHR LUCAS", - "timestamp": "2016-08-19" + "user": "HEANEY ENOS", + "timestamp": "2016-02-22" }, { - "siteRegistry": false, + "uuid": "b8e2895b-2f7f-496b-a682-916867838e44", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "ROLFSON ALVAH", - "timestamp": "2018-05-22" + "user": "WITTING EUSEBIO", + "timestamp": "2023-09-24" }, { - "siteRegistry": false, + "uuid": "89917b1b-2012-409a-84ff-80e313d981b4", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "HOEGER KING", - "timestamp": "2018-03-24" + "user": "ABBOTT-BERNHARD IBRAHIM", + "timestamp": "2022-06-13" }, { + "uuid": "9f4068fe-9a2b-4aad-85b3-60e5957e41c6", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "HARTMANN EDGARDO", - "timestamp": "2020-05-25" + "user": "BERGSTROM LAISHA", + "timestamp": "2022-10-12" }, { + "uuid": "cb903022-6e9c-4dc7-8a52-cc86ba814a26", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "HOMENICK CLOVIS", - "timestamp": "2022-12-03" + "user": "MOHR GRANT", + "timestamp": "2017-04-02" + }, + { + "uuid": "c9a733fd-c3f9-40e7-92a8-3f6e8c004894", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "VEUM MAYBELL", + "timestamp": "2017-08-25" } ], "associatedSites": [ { - "dateNoted": "2014-10-18", - "notes": "", - "parcelID": "17570", - "siteID": "15638", - "siteRegistry": true - }, - { - "dateNoted": "2014-06-28", + "uuid": "39c01759-c3ca-4572-bbb7-d36dded0b413", + "dateNoted": "2014-08-20", "notes": "", - "parcelID": "19454", - "siteID": "19290", - "siteRegistry": true + "parcelID": "19271", + "siteID": "18395", + "siteRegistry": false }, { - "dateNoted": "2015-02-22", + "uuid": "388858d4-a345-4984-b902-723ad6ff5e0c", + "dateNoted": "2019-12-13", "notes": "", - "parcelID": "20397", - "siteID": "16162", + "parcelID": "17277", + "siteID": "15525", "siteRegistry": false } ] }, { - "uuid": "c5bd8e07-671f-4a52-9a30-8efe6c2b2091", - "siteID": 15761, - "address": "861 Hudson Field", - "latitude": 49.1152, - "longitude": -130.0614, - "lastUpdated": "2015-08-14", - "city": "Alexandria", - "region": "Kootenay", - "victoriaFile": "26250-20/1499", + "uuid": "1705085d-fb7b-494c-90a9-b0ef6da3c102", + "siteID": 17666, + "address": "918 Henry Estates", + "latitude": 49.5166, + "longitude": -127.8402, + "lastUpdated": "2014-09-24", + "city": "Jadastad", + "region": "Vancouver Island/Coast", + "victoriaFile": "26250-20/18125", "regionalFile": "N/A", "parcelIDs": [ - 9420741, - 8883738, - 6922302, - 1096113, - 7893253 + 4266023, + 3453566, + 462248, + 4289165, + 831411 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2017-05-18", - "completed": "2014-01-14", - "initiated": "2021-11-18", - "ministryContact": "REMPEL SALLY", + "uuid": "f7559c9e-fe9b-4a8f-b047-0903afe3a89b", + "createdAt": "2018-11-15", + "completed": "2017-05-17", + "initiated": "2018-12-14", + "ministryContact": "BERNIER NEDRA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -45017,23 +52179,44 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "uuid": "1c09367a-e083-486f-b538-50c6143f1d2c", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "uuid": "063ae131-426a-4aaa-bfcc-1fd9648c11d7", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "8fb77d96-b929-489e-850f-2b7d82914715", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": true + }, + { + "uuid": "c46d9347-90ed-41b0-8f20-24f4df64d969", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "65bd285e-34b6-429f-a742-589e6ff2b370", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false } ], "siteRegistry": false }, { - "createdAt": "2018-12-05", - "completed": "2015-12-23", - "initiated": "2023-05-23", - "ministryContact": "BAUMBACH JERALD", + "uuid": "6e2cf697-5991-4b4f-974a-6860ac66423c", + "createdAt": "2019-12-15", + "completed": "2016-07-18", + "initiated": "2017-10-23", + "ministryContact": "HUEL CARY", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -45042,28 +52225,44 @@ ], "notationParticipants": [ { + "uuid": "e3461fa0-6029-49ae-bda9-044c34628bad", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { + "uuid": "b4b9d419-68e4-4df0-b09b-076d361ccbe8", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "uuid": "4ab28524-e466-42b3-906d-a9f7c6a18ea5", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "uuid": "ee68ac12-938c-434c-b844-22c0aacb18a0", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "b0de7a5a-1ec1-414f-825d-c514cd5dfa37", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": false } ], "siteRegistry": false }, { - "createdAt": "2014-05-05", - "completed": "2023-05-28", - "initiated": "2020-04-27", - "ministryContact": "FRANECKI GODFREY", + "uuid": "cd862194-bab8-4518-8575-a74c00632c19", + "createdAt": "2014-10-23", + "completed": "2022-02-25", + "initiated": "2022-03-11", + "ministryContact": "HELLER GERMAN", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -45072,38 +52271,38 @@ ], "notationParticipants": [ { + "uuid": "7a097b92-1e81-45c4-a0bc-113ff7dbbf74", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "98e921fb-6ef6-47da-afed-8b01649e5d99", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true }, { + "uuid": "ef48ca52-1946-4fee-9c17-c155a6899061", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true }, { + "uuid": "a364ca71-172d-49ee-a481-b40b68505527", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", "siteRegistry": true } ], "siteRegistry": false }, { - "createdAt": "2023-04-01", - "completed": "2020-04-08", - "initiated": "2023-01-21", - "ministryContact": "WEISSNAT ALAINA", + "uuid": "c97d068e-972b-49a2-8d4d-319180f2a0ba", + "createdAt": "2021-07-27", + "completed": "2017-04-01", + "initiated": "2013-12-26", + "ministryContact": "WYMAN ALEXYS", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -45112,23 +52311,26 @@ ], "notationParticipants": [ { + "uuid": "ea864865-4de2-4e3d-a993-fa78eb14599e", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false }, { + "uuid": "a671ee37-f2d3-43eb-974d-bb2705f581e2", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false } ], "siteRegistry": false }, { - "createdAt": "2021-01-06", - "completed": "2017-01-09", - "initiated": "2020-09-14", - "ministryContact": "LUEILWITZ ARNO", + "uuid": "474d3b0d-0428-443b-9fc2-6b7e8e05c5de", + "createdAt": "2015-02-11", + "completed": "2018-12-27", + "initiated": "2023-07-12", + "ministryContact": "JENKINS LURLINE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -45137,13 +52339,21 @@ ], "notationParticipants": [ { + "uuid": "161835bc-fd5d-45d8-a766-652600edf27b", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "7275ac7f-a811-42d2-b0a3-587dfe894c67", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true }, { + "uuid": "41c84233-c12a-4763-b29e-22076a3d3b88", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": true } ], @@ -45152,9 +52362,32 @@ ], "participants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2015-06-12", - "startDate": "2022-10-14", + "uuid": "b1a7f1ac-eb6b-4a0b-be54-6b497381520e", + "name": "AMET, DOLOR SIT", + "endDate": "2023-06-02", + "startDate": "2023-07-29", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "uuid": "e7fc38d7-c49f-4908-8ac0-272c20de3a1e", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2022-02-27", + "startDate": "2021-02-14", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "uuid": "0a0edc01-fb0c-43b0-b5e2-1dd5ad8fb349", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2020-10-18", + "startDate": "2019-11-18", "notes": "", "roles": [ "ORGANIZATION" @@ -45162,9 +52395,21 @@ "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2016-04-06", - "startDate": "2013-12-14", + "uuid": "eb854beb-6a3c-4fd3-b9ab-543165b377cf", + "name": "IPSUM", + "endDate": "2019-03-06", + "startDate": "2021-03-16", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "uuid": "b37e0102-6f33-426a-847a-78b9125bb006", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2021-05-05", + "startDate": "2018-02-08", "notes": "", "roles": [ "ORGANIZATION" @@ -45174,160 +52419,213 @@ ], "suspectLandUses": [ { + "uuid": "c4c0fb9d-f4ed-468f-a70a-c9f4ff04ebb5", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2020-09-14 (described on Site Profile dated 2020-09-14)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "notes": "INSERTED FOR SITE PROFILE DATED 2023-06-08 (described on Site Profile dated 2023-06-08)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { + "uuid": "0629de01-1bbf-47d4-a522-66b99a5f9001", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2023-06-28 (described on Site Profile dated 2023-06-28)", + "notes": "INSERTED FOR SITE PROFILE DATED 2019-01-07 (described on Site Profile dated 2019-01-07)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "uuid": "b1d7ee86-274b-45e4-8ca4-27863f33b88f", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2014-06-01 (described on Site Profile dated 2014-06-01)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "uuid": "69d89c88-61ef-492f-80a9-fc87aa4b0b21", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2015-01-09 (described on Site Profile dated 2015-01-09)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], "parcelDescriptions": [ { + "uuid": "49153989-00e5-430d-8264-055e75d5a1da", "siteRegistry": true, - "dateNoted": "2017-02-27", - "parcelID": "18676", - "crownLandUsePIN": "17832", - "crownLandFileNumber": "17946", - "landDescription": "LOT 2 OF LOT 3 BLOCK 4 DISTRICT LOT 5 PLAN 9687" + "dateNoted": "2020-04-30", + "parcelID": "20481", + "crownLandUsePIN": "20529", + "crownLandFileNumber": "15776", + "landDescription": "LOT 4 OF LOT 1 BLOCK 4 DISTRICT LOT 4 PLAN 7534" }, { + "uuid": "d2e7c24d-ff19-4228-b9d7-d8514691efbf", "siteRegistry": false, - "dateNoted": "2020-11-07", - "parcelID": "17174", - "crownLandUsePIN": "17883", - "crownLandFileNumber": "16941", - "landDescription": "LOT 5 OF LOT 1 BLOCK 1 DISTRICT LOT 3 PLAN 8925" + "dateNoted": "2017-09-12", + "parcelID": "19342", + "crownLandUsePIN": "20140", + "crownLandFileNumber": "15652", + "landDescription": "LOT 5 OF LOT 4 BLOCK 5 DISTRICT LOT 1 PLAN 6752" + }, + { + "uuid": "22292777-897a-4b56-a747-6bac593c0256", + "siteRegistry": true, + "dateNoted": "2019-03-28", + "parcelID": "16406", + "crownLandUsePIN": "17635", + "crownLandFileNumber": "15528", + "landDescription": "LOT 1 OF LOT 5 BLOCK 5 DISTRICT LOT 1 PLAN 8844" } ], "siteDisclosures": [ { + "uuid": "ada116d7-a288-4da0-a2f0-408101e6331b", "siteRegistry": false, - "dateReceived": "2020-07-30", - "dateCompleted": "2016-06-08", - "dateEntered": "2019-07-04", - "dateRegistrar": "2020-03-07", - "dateLocalAuthorityReceived": "2017-03-12", - "summary": "Ducimus libero quibusdam repudiandae officia impedit.\nDignissimos reiciendis quisquam tempore doloribus alias.\nVoluptates dolor eveniet sunt similique.", - "informationUsed": "Recusandae maiores consectetur error autem dicta consectetur.\nRem dignissimos accusamus vero.\nPossimus beatae tenetur unde nobis fugit veritatis optio officia.\nVoluptates eum incidunt illo voluptatem porro a.\nQuaerat sunt deserunt a nostrum repellendus doloremque dolorum.", - "pastOrPresentOrders": "Odit illo fugiat.\nDolorum et reprehenderit maiores ratione ullam at minus iure.\nDolores id pariatur labore quo quod perferendis amet odio vero.", + "dateReceived": "2015-04-09", + "dateCompleted": "2020-02-07", + "dateEntered": "2018-02-19", + "dateRegistrar": "2023-03-25", + "dateLocalAuthorityReceived": "2018-10-15", + "summary": "Deleniti repudiandae animi quas neque repellat porro atque.\nModi eos voluptates aperiam amet debitis officiis suscipit.", + "informationUsed": "Ex earum voluptatem voluptatibus voluptas suscipit impedit ipsa.\nVeniam rem totam aliquid optio voluptatibus.\nFacere quae pariatur hic assumenda similique facere.\nQuia ad atque quis illo.", + "pastOrPresentOrders": "Unde repudiandae optio esse earum temporibus voluptates cumque a id.\nDolorem rem vero officia sapiente beatae necessitatibus at nisi.", "commercialAndIndustrialPurposes": [ { - "scheduleReference": "F1*", + "uuid": "040fd652-b9ea-4acc-bf2f-ae10f4228aa0", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true + "siteRegistry": false }, { + "uuid": "b6ceb341-7324-4ff0-89e3-6bdcce9909a5", "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true + "uuid": "682aaed1-6d88-4ba2-aa8e-bc35861f25ec", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false }, { + "uuid": "a102436a-1863-4422-acb5-1917b5e6a526", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false } ] + }, + { + "uuid": "58974912-b466-4d1c-b58c-4c3d74691567", + "siteRegistry": false, + "dateReceived": "2021-09-07", + "dateCompleted": "2021-08-08", + "dateEntered": "2015-04-24", + "dateRegistrar": "2018-08-22", + "dateLocalAuthorityReceived": "2021-09-23", + "summary": "Tempora aut cum ex laudantium.\nOmnis non natus quidem voluptatibus.\nVoluptatem nostrum at aperiam temporibus animi ab.", + "informationUsed": "Eligendi officia excepturi error amet explicabo quibusdam distinctio.\nNesciunt modi molestias deleniti doloribus sed eum.\nNon sed laborum corporis nobis cumque deserunt et quam.\nEum ullam optio libero vero.", + "pastOrPresentOrders": "Culpa accusantium ratione hic assumenda labore eos perspiciatis.\nSimilique voluptatem molestias tempora deleniti voluptatibus impedit eos illum.\nEnim totam officiis natus recusandae.", + "commercialAndIndustrialPurposes": [ + { + "uuid": "f14a6d1b-203e-45b5-ba88-874d27cc7dff", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "uuid": "65b1dff8-741d-4de7-a116-a4202b8043c8", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + } + ] } ], "activityLog": [ { + "uuid": "12bbaad7-8693-44a6-8f93-569ca3b20559", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "MRAZ WHITNEY", - "timestamp": "2016-11-10" + "user": "KERLUKE NAME", + "timestamp": "2014-10-09" }, { + "uuid": "24b3b7a7-e83d-429d-a252-b18340fa7deb", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "WILLIAMSON PEARL", - "timestamp": "2015-10-08" - }, - { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "SANFORD MAYBELL", - "timestamp": "2020-01-23" + "user": "BRAKUS MARA", + "timestamp": "2015-06-01" }, { + "uuid": "2b2e0df5-0add-4200-b3b5-cdf42154ce67", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "CARTWRIGHT HOLLIE", - "timestamp": "2015-01-26" + "user": "SPINKA LORENZ", + "timestamp": "2014-03-23" }, { + "uuid": "8da92728-c912-46fa-92bb-0c8f0db79fc9", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "HAMMES PEARLINE", - "timestamp": "2022-11-29" + "user": "KUHN CALISTA", + "timestamp": "2020-09-05" }, { + "uuid": "35ef12f6-cb74-4a6a-87e9-4ff4ba519984", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "KOSS PETE", - "timestamp": "2022-08-18" - }, - { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "RYAN REANNA", - "timestamp": "2018-06-19" + "user": "UPTON WHITNEY", + "timestamp": "2016-09-12" }, { - "siteRegistry": true, + "uuid": "2cac2458-6df8-4d88-a7e7-8be28b03eec2", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "CREMIN STEPHON", - "timestamp": "2022-02-02" + "user": "GERHOLD ORLAND", + "timestamp": "2021-08-21" }, { - "siteRegistry": true, + "uuid": "862b473f-125c-489e-85e5-acf97afd1197", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "SCHROEDER NYAH", - "timestamp": "2016-09-18" + "user": "O'KON GUY", + "timestamp": "2018-11-03" } ], "associatedSites": [ { - "dateNoted": "2017-01-31", + "uuid": "083a0802-9d30-49b8-9854-20b94f8e3b64", + "dateNoted": "2018-04-09", "notes": "", - "parcelID": "20589", - "siteID": "19235", + "parcelID": "20696", + "siteID": "16078", "siteRegistry": true } ] }, { - "uuid": "3fe91dcb-a30d-4d4f-9254-72d536107c2d", - "siteID": 17959, - "address": "42391 Darien Meadow", - "latitude": 58.1356, - "longitude": -127.6117, - "lastUpdated": "2023-02-17", - "city": "Elinoreburgh", + "uuid": "a7572108-f557-4dc8-93bd-7e74d670cf09", + "siteID": 15766, + "address": "4269 Gusikowski Lock", + "latitude": 58.7509, + "longitude": -133.1236, + "lastUpdated": "2023-07-20", + "city": "South Eliside", "region": "Thompson-Okanagan", - "victoriaFile": "26250-20/18197", + "victoriaFile": "26250-20/8054", "regionalFile": "N/A", "parcelIDs": [ - 9692771, - 7073730, - 1598716, - 1694656, - 8698112 + 6151631, + 8246092, + 162387, + 6298318, + 7329047 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2016-06-08", - "completed": "2016-07-07", - "initiated": "2017-11-11", - "ministryContact": "LEHNER IVORY", + "uuid": "12eaf94a-ccf0-4a78-8dc9-a8f2cdbebd7e", + "createdAt": "2022-01-31", + "completed": "2022-02-13", + "initiated": "2021-08-09", + "ministryContact": "SAUER GRIFFIN", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -45336,21 +52634,53 @@ ], "notationParticipants": [ { + "uuid": "f4138458-aee9-4f92-a469-e4bac8066a6c", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "cb17c3ac-afd3-4005-846e-7f402fe94514", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false }, { + "uuid": "db2f8b49-b344-4024-8865-d7c0607ad518", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "uuid": "624e85bc-bb64-438c-9e3a-1ed6bd60fca5", + "createdAt": "2020-01-01", + "completed": "2016-03-29", + "initiated": "2021-08-26", + "ministryContact": "ROBERTS ZETTA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "uuid": "ed35d209-2e16-45ec-a5e4-cdcb978bee36", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": true }, { + "uuid": "be4605e3-0699-4eb1-8b71-a6ba7b9973ab", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { + "uuid": "8cdf89fc-8bf7-4d45-ae56-64c796aeeb2f", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false @@ -45359,10 +52689,11 @@ "siteRegistry": true }, { - "createdAt": "2023-05-29", - "completed": "2020-12-02", - "initiated": "2014-01-27", - "ministryContact": "BODE ELLIE", + "uuid": "0d008612-0bdf-4940-931b-619885839ba2", + "createdAt": "2018-01-03", + "completed": "2023-02-28", + "initiated": "2014-04-12", + "ministryContact": "DENESIK ZARIA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -45371,39 +52702,124 @@ ], "notationParticipants": [ { + "uuid": "3cd94b94-5d86-4d7f-91c0-26a393f1576c", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false }, { + "uuid": "a750fe53-1c41-4805-9700-0e3513125567", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false }, { + "uuid": "7221140e-9e0e-453a-b2f3-18977a5f2930", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false }, { + "uuid": "13169aec-643a-4b5c-bbde-09fa97a5f7ab", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "e84f097e-069e-4b4d-bf02-4186802e714b", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "uuid": "6101c484-af49-419e-b4b6-4870cd893e1b", + "createdAt": "2019-01-14", + "completed": "2023-06-28", + "initiated": "2020-12-19", + "ministryContact": "WUCKERT RONNY", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "uuid": "7d2ab078-8e75-479c-969a-ece4b27cea2c", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false }, { + "uuid": "efd7644c-277c-480c-ba30-dda66f315eaf", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true + }, + { + "uuid": "90ece7f3-3923-4238-9aef-7b060ecfb782", + "createdAt": "2018-04-19", + "completed": "2015-12-12", + "initiated": "2017-03-26", + "ministryContact": "WEST LIZZIE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "uuid": "13aab0da-9e39-45d4-bded-0d258bba46ba", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "uuid": "a5916593-f598-417d-989b-dacb0f69e905", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "c4925d38-b82d-4563-bd97-8830580ab44e", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "e69688f2-7d46-44d5-bb75-71d9358c7d1c", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true } ], "participants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2016-02-09", - "startDate": "2015-03-14", + "uuid": "a8b30b0a-fe1a-49d2-b3a8-35197d04fb30", + "name": "AMET, DOLOR SIT", + "endDate": "2015-07-13", + "startDate": "2014-02-13", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "uuid": "c34c3675-bf6c-4d01-a03e-f6297b001b90", + "name": "IPSUM", + "endDate": "2023-04-15", + "startDate": "2022-02-13", "notes": "", "roles": [ "EMPLOYEE" @@ -45411,178 +52827,234 @@ "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2018-11-01", - "startDate": "2014-08-21", + "uuid": "c627aa4b-fbe2-415a-a34e-705dd4fe659a", + "name": "IPSUM", + "endDate": "2021-08-30", + "startDate": "2018-06-28", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "uuid": "379e9446-9f1e-49b6-8576-e3b3cf22d517", + "name": "AMET, DOLOR SIT", + "endDate": "2017-04-12", + "startDate": "2022-02-10", "notes": "", "roles": [ "ORGANIZATION" ], + "siteRegistry": false + }, + { + "uuid": "81c3e51c-12e2-42e6-b618-6f5edd0f4423", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2016-10-15", + "startDate": "2021-12-21", + "notes": "", + "roles": [ + "EMPLOYEE" + ], "siteRegistry": true } ], "suspectLandUses": [ { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-06-20 (described on Site Profile dated 2015-06-20)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" - }, - { + "uuid": "a4986db0-8dab-4422-b33a-dcfbaee46086", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-01-20 (described on Site Profile dated 2018-01-20)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "notes": "INSERTED FOR SITE PROFILE DATED 2016-08-23 (described on Site Profile dated 2016-08-23)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { + "uuid": "751ddc60-1076-4990-ad26-67377e2c91f7", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-11-24 (described on Site Profile dated 2019-11-24)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "notes": "INSERTED FOR SITE PROFILE DATED 2014-05-09 (described on Site Profile dated 2014-05-09)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { + "uuid": "3ae4b1da-cc26-478c-8bf9-38ba2f773c99", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-01-09 (described on Site Profile dated 2014-01-09)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "notes": "INSERTED FOR SITE PROFILE DATED 2023-03-06 (described on Site Profile dated 2023-03-06)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], "parcelDescriptions": [ { + "uuid": "593ecfd9-c22c-43a9-9876-05aedf23267e", "siteRegistry": true, - "dateNoted": "2014-03-04", - "parcelID": "19747", - "crownLandUsePIN": "16706", - "crownLandFileNumber": "15417", - "landDescription": "LOT 2 OF LOT 3 BLOCK 5 DISTRICT LOT 5 PLAN 9531" + "dateNoted": "2021-05-18", + "parcelID": "20094", + "crownLandUsePIN": "19643", + "crownLandFileNumber": "20558", + "landDescription": "LOT 3 OF LOT 5 BLOCK 3 DISTRICT LOT 5 PLAN 3653" }, { + "uuid": "8675f918-9b63-495e-bc19-e25f927df435", "siteRegistry": true, - "dateNoted": "2019-03-21", - "parcelID": "18231", - "crownLandUsePIN": "15690", - "crownLandFileNumber": "17539", - "landDescription": "LOT 4 OF LOT 3 BLOCK 3 DISTRICT LOT 2 PLAN 3988" + "dateNoted": "2017-02-18", + "parcelID": "17880", + "crownLandUsePIN": "15566", + "crownLandFileNumber": "20357", + "landDescription": "LOT 1 OF LOT 2 BLOCK 1 DISTRICT LOT 1 PLAN 3006" }, { + "uuid": "3f8bd8f9-d090-4385-9420-2ce24aab888a", "siteRegistry": false, - "dateNoted": "2023-07-22", - "parcelID": "20904", - "crownLandUsePIN": "19100", - "crownLandFileNumber": "17760", - "landDescription": "LOT 2 OF LOT 3 BLOCK 3 DISTRICT LOT 4 PLAN 8178" + "dateNoted": "2019-12-05", + "parcelID": "19215", + "crownLandUsePIN": "15839", + "crownLandFileNumber": "18795", + "landDescription": "LOT 5 OF LOT 1 BLOCK 1 DISTRICT LOT 4 PLAN 7680" + }, + { + "uuid": "8db52bc4-647c-48a5-a1d3-7378380df50e", + "siteRegistry": true, + "dateNoted": "2020-04-07", + "parcelID": "15685", + "crownLandUsePIN": "15478", + "crownLandFileNumber": "18919", + "landDescription": "LOT 2 OF LOT 4 BLOCK 2 DISTRICT LOT 2 PLAN 9288" } ], "siteDisclosures": [ { + "uuid": "3cef9310-1ecf-41ff-89e1-7f7150e1b1a8", "siteRegistry": false, - "dateReceived": "2017-10-09", - "dateCompleted": "2018-06-20", - "dateEntered": "2019-07-24", - "dateRegistrar": "2016-04-23", - "dateLocalAuthorityReceived": "2016-11-10", - "summary": "Velit occaecati alias nesciunt dicta aspernatur iste fuga corrupti nam.\nBlanditiis quisquam repellat totam at id consequuntur alias officiis.\nDelectus atque delectus quam eius maxime voluptatum ad ad commodi.", - "informationUsed": "Reiciendis ea sed impedit rerum dolor vel quae eum.\nHarum nemo autem voluptate dolores numquam modi totam.\nCorrupti aut distinctio voluptates deleniti explicabo blanditiis dolorum.\nLaborum doloremque iste quo nesciunt voluptatem corporis officia illo.", - "pastOrPresentOrders": "Maxime illo soluta.", + "dateReceived": "2022-06-05", + "dateCompleted": "2022-10-19", + "dateEntered": "2014-05-04", + "dateRegistrar": "2020-09-01", + "dateLocalAuthorityReceived": "2022-11-01", + "summary": "Accusantium exercitationem repudiandae hic omnis debitis libero alias.\nEx autem vel doloremque quod minima molestias qui suscipit ullam.", + "informationUsed": "Placeat soluta nemo ratione aliquam optio.\nVoluptas ad ipsum tempora quia sequi eveniet minus.\nEum rem ipsa nulla.", + "pastOrPresentOrders": "Ex dicta ea nostrum nam quam.", "commercialAndIndustrialPurposes": [ { + "uuid": "4c7faec9-cac9-4487-a035-d553f1607e96", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false }, { + "uuid": "e2ce13f8-9e5f-4133-aa14-b8d00256c4e0", "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false }, { + "uuid": "22c5e753-e530-4478-965a-006a291b022b", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true + "siteRegistry": false }, { - "scheduleReference": "F2*", + "uuid": "05df16a3-687d-4774-bff7-a756686419b0", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false + "siteRegistry": true } ] } ], "activityLog": [ { - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "SCHUMM DARWIN", - "timestamp": "2019-12-03" - }, - { - "siteRegistry": false, + "uuid": "42a2779f-24e4-4b30-b082-1c91ed8ad2f3", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "PFANNERSTILL RUPERT", - "timestamp": "2017-03-09" + "user": "DAUGHERTY MARGE", + "timestamp": "2020-02-15" }, { + "uuid": "4faacd88-3f12-4054-a051-f1739751c798", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "MORAR TURNER", - "timestamp": "2016-10-24" + "user": "ULLRICH BILL", + "timestamp": "2019-12-14" }, { + "uuid": "0ac29f4f-d625-4ec8-a795-7d1ddb592ade", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "ROLFSON SEDRICK", - "timestamp": "2018-12-29" + "user": "SHIELDS VEDA", + "timestamp": "2016-12-26" }, { + "uuid": "e2208cc0-0bf2-4530-bf08-09011632540c", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "PFANNERSTILL ELFRIEDA", - "timestamp": "2015-03-07" + "user": "DARE MARCOS", + "timestamp": "2020-10-14" }, { + "uuid": "62b97bd5-34be-41cb-8484-1d38111e585b", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "EMARD ZULA", - "timestamp": "2016-03-29" + "user": "RUSSEL NAYELI", + "timestamp": "2022-03-09" }, { - "siteRegistry": false, + "uuid": "81f31d8e-7634-4289-88f9-c49f90c7eefc", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "EFFERTZ ARIC", - "timestamp": "2017-12-22" + "user": "HICKLE TERENCE", + "timestamp": "2017-04-18" } ], "associatedSites": [ { - "dateNoted": "2021-06-11", + "uuid": "d741a5ad-b2fc-4695-bb8b-3938f8c700ca", + "dateNoted": "2015-08-20", + "notes": "", + "parcelID": "17829", + "siteID": "15493", + "siteRegistry": true + }, + { + "uuid": "4b4a6c8f-ee06-40db-a0ea-54137519ca4b", + "dateNoted": "2016-07-02", + "notes": "", + "parcelID": "15327", + "siteID": "17913", + "siteRegistry": true + }, + { + "uuid": "6b718b9a-bd0e-41b0-b317-7abe6bf5d359", + "dateNoted": "2017-01-23", "notes": "", - "parcelID": "15503", - "siteID": "19450", + "parcelID": "16133", + "siteID": "17701", "siteRegistry": false } ] }, { - "uuid": "b8b98f9b-822c-485b-a159-260e273aedd5", - "siteID": 19909, - "address": "2983 Kassandra Gardens", - "latitude": 50.1227, - "longitude": -135.0673, - "lastUpdated": "2016-12-06", - "city": "Richland", - "region": " North Coast", - "victoriaFile": "26250-20/10109", + "uuid": "87f0d555-ef88-46ca-84ae-8e1ffd0867be", + "siteID": 16913, + "address": "16327 West Skyway", + "latitude": 55.6585, + "longitude": -129.9947, + "lastUpdated": "2022-02-15", + "city": "Brendaview", + "region": "Cariboo", + "victoriaFile": "26250-20/10542", "regionalFile": "N/A", "parcelIDs": [ - 3616742, - 5479260, - 8088403, - 7089466, - 3184053 + 1045622, + 8095549, + 7418497, + 4156011, + 4636792 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2016-01-18", - "completed": "2015-06-24", - "initiated": "2014-11-15", - "ministryContact": "REYNOLDS MISAEL", + "uuid": "6cd0eb0c-af2b-462f-af37-6ee7771eef05", + "createdAt": "2016-02-24", + "completed": "2019-10-26", + "initiated": "2016-06-11", + "ministryContact": "ZULAUF DAMIAN", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -45591,12 +53063,14 @@ ], "notationParticipants": [ { + "uuid": "9880bff6-4d03-48df-9643-6dcb614d2e3e", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", + "uuid": "281de042-03f7-4862-afc3-6aa855b2489b", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false } @@ -45604,10 +53078,11 @@ "siteRegistry": true }, { - "createdAt": "2015-05-15", - "completed": "2015-08-18", - "initiated": "2018-01-21", - "ministryContact": "HILLS ZANDER", + "uuid": "d2f299db-c13c-458d-8470-f0300b5f2f00", + "createdAt": "2020-11-15", + "completed": "2019-07-01", + "initiated": "2014-07-08", + "ministryContact": "BUCKRIDGE MIGUEL", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -45616,188 +53091,54 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { + "uuid": "25064f8d-c076-459c-9021-2c0784d9556f", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", + "uuid": "7b12d7e8-e736-4996-ac54-ac71d78a6cb1", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false } ], - "siteRegistry": true - } - ], - "participants": [ - { - "name": "IPSUM", - "endDate": "2018-10-22", - "startDate": "2013-11-08", - "notes": "", - "roles": [ - "EMPLOYEE" - ], "siteRegistry": false }, { - "name": "IPSUM", - "endDate": "2015-08-21", - "startDate": "2018-03-22", - "notes": "", - "roles": [ - "ORGANIZATION" + "uuid": "d54e73a8-a1af-489b-8686-0f9f3c03d641", + "createdAt": "2019-12-17", + "completed": "2022-05-05", + "initiated": "2014-09-12", + "ministryContact": "WALKER DAPHNE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" ], - "siteRegistry": true - } - ], - "suspectLandUses": [ - { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-04-18 (described on Site Profile dated 2021-04-18)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" - }, - { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-02-07 (described on Site Profile dated 2022-02-07)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" - } - ], - "parcelDescriptions": [ - { - "siteRegistry": true, - "dateNoted": "2016-03-09", - "parcelID": "18910", - "crownLandUsePIN": "17724", - "crownLandFileNumber": "16171", - "landDescription": "LOT 1 OF LOT 4 BLOCK 4 DISTRICT LOT 2 PLAN 8423" - }, - { - "siteRegistry": false, - "dateNoted": "2015-07-19", - "parcelID": "15338", - "crownLandUsePIN": "17388", - "crownLandFileNumber": "15405", - "landDescription": "LOT 3 OF LOT 5 BLOCK 4 DISTRICT LOT 5 PLAN 4018" - }, - { - "siteRegistry": false, - "dateNoted": "2019-02-15", - "parcelID": "15863", - "crownLandUsePIN": "16447", - "crownLandFileNumber": "17774", - "landDescription": "LOT 1 OF LOT 4 BLOCK 3 DISTRICT LOT 2 PLAN 3989" - } - ], - "siteDisclosures": [ - { - "siteRegistry": false, - "dateReceived": "2015-10-26", - "dateCompleted": "2020-02-17", - "dateEntered": "2021-10-03", - "dateRegistrar": "2023-03-26", - "dateLocalAuthorityReceived": "2022-01-25", - "summary": "Unde velit odit.\nTemporibus ab minus consectetur modi voluptatem nostrum.\nSaepe modi deleniti atque perspiciatis.", - "informationUsed": "Minima sed vitae voluptatibus praesentium.\nUllam culpa doloribus culpa.\nQuam debitis itaque nam ipsum eum.\nOdio quae eius odio fuga.", - "pastOrPresentOrders": "Occaecati eveniet occaecati qui recusandae itaque quo iure veniam.\nDebitis laudantium doloremque eum nobis atque.", - "commercialAndIndustrialPurposes": [ - { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true - }, + "notationParticipants": [ { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true + "uuid": "b7f70543-0990-4066-b7ef-7c8012ef9b33", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false }, { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "uuid": "806b5562-ae72-41f3-a148-c821761541ba", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", "siteRegistry": true } - ] - } - ], - "activityLog": [ - { - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "ZIEME MARJORY", - "timestamp": "2021-11-17" - }, - { - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "FERRY KEVON", - "timestamp": "2015-06-19" - }, - { - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "DICKINSON ROXANE", - "timestamp": "2015-10-25" - }, - { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "RIPPIN TONEY", - "timestamp": "2020-06-08" - }, - { - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "KESSLER BENEDICT", - "timestamp": "2014-06-11" - } - ], - "associatedSites": [ - { - "dateNoted": "2016-04-17", - "notes": "", - "parcelID": "16360", - "siteID": "16952", + ], "siteRegistry": false }, { - "dateNoted": "2014-01-16", - "notes": "", - "parcelID": "17026", - "siteID": "18727", - "siteRegistry": false - } - ] - }, - { - "uuid": "b45e5ff9-e115-4c02-acfd-022b29a2cf71", - "siteID": 16979, - "address": "324 Nicolas Row", - "latitude": 58.7543, - "longitude": -130.9712, - "lastUpdated": "2022-01-24", - "city": "Pacochaville", - "region": "Mainland/Southwest", - "victoriaFile": "26250-20/15285", - "regionalFile": "N/A", - "parcelIDs": [ - 1577164, - 9288502, - 4803636, - 8496611, - 9891643 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2022-06-12", - "completed": "2023-04-06", - "initiated": "2020-06-17", - "ministryContact": "RAYNOR MIKEL", + "uuid": "99fb40d8-86db-4363-9f5d-c427d5358e20", + "createdAt": "2014-08-12", + "completed": "2016-10-05", + "initiated": "2022-08-25", + "ministryContact": "BARTELL FELICITY", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -45806,33 +53147,26 @@ ], "notationParticipants": [ { + "uuid": "67f7e047-d9d4-415a-afb6-136dc3cbb6e4", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { + "uuid": "4c328d20-dad0-4067-95ff-99d1bbc72192", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2013-11-11", - "completed": "2014-09-21", - "initiated": "2022-01-26", - "ministryContact": "O'KEEFE BLANCHE", + "uuid": "bad39fa6-e220-4cc5-b7c0-684aa48f7998", + "createdAt": "2020-06-28", + "completed": "2014-07-03", + "initiated": "2021-07-01", + "ministryContact": "WISOZK VINCE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -45841,29 +53175,34 @@ ], "notationParticipants": [ { + "uuid": "eb36363b-87ac-4061-bf3f-b621b78f7488", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "uuid": "b8b20181-472c-4b22-b5bc-834d591b808a", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": true }, { + "uuid": "9fe5ea5c-d3fc-43ff-be6e-0def2bcac8eb", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false }, { + "uuid": "ab929f1a-453d-41e4-8b7b-1c6f09cc1ea7", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false + }, + { + "uuid": "e2999cbb-eeef-49a4-87ab-1f30d44f9b3a", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false } ], "siteRegistry": true @@ -45871,29 +53210,21 @@ ], "participants": [ { + "uuid": "5674d032-3bb1-42ce-9975-9b170ccd4ee4", "name": "SHELL CANADA PRODUCTS", - "endDate": "2014-07-14", - "startDate": "2019-10-04", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": true - }, - { - "name": "AMET, DOLOR SIT", - "endDate": "2015-04-27", - "startDate": "2017-02-12", + "endDate": "2016-01-25", + "startDate": "2022-10-21", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true }, { - "name": "AMET, DOLOR SIT", - "endDate": "2021-11-13", - "startDate": "2021-04-01", + "uuid": "e7fa529d-faea-4f43-bb9b-848ce11ef718", + "name": "IPSUM", + "endDate": "2023-03-20", + "startDate": "2019-12-27", "notes": "", "roles": [ "ORGANIZATION" @@ -45903,59 +53234,129 @@ ], "suspectLandUses": [ { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-03-27 (described on Site Profile dated 2016-03-27)", + "uuid": "9025b3df-d699-4e76-9cd8-5a0290563985", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2016-10-31 (described on Site Profile dated 2016-10-31)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { + "uuid": "1c875d08-618a-480d-b04b-95550f4db1db", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2020-07-15 (described on Site Profile dated 2020-07-15)", + "notes": "INSERTED FOR SITE PROFILE DATED 2018-06-06 (described on Site Profile dated 2018-06-06)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { + "uuid": "73aa30dc-c2b6-4e54-b70b-8a2cc3bb7c9d", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-05-06 (described on Site Profile dated 2015-05-06)", + "notes": "INSERTED FOR SITE PROFILE DATED 2015-06-21 (described on Site Profile dated 2015-06-21)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "uuid": "4bfc1aac-795d-4803-94bf-9579176db37d", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2017-01-22 (described on Site Profile dated 2017-01-22)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], "parcelDescriptions": [ { - "siteRegistry": false, - "dateNoted": "2020-05-12", - "parcelID": "16780", - "crownLandUsePIN": "20292", - "crownLandFileNumber": "16426", - "landDescription": "LOT 1 OF LOT 2 BLOCK 5 DISTRICT LOT 2 PLAN 7247" + "uuid": "4659c1aa-c6ac-466f-9cff-738f7611b899", + "siteRegistry": true, + "dateNoted": "2015-03-25", + "parcelID": "17207", + "crownLandUsePIN": "20452", + "crownLandFileNumber": "19630", + "landDescription": "LOT 2 OF LOT 4 BLOCK 4 DISTRICT LOT 1 PLAN 9013" }, { + "uuid": "b4d6e3bc-cd53-4875-aaae-3307c4ea57d0", + "siteRegistry": true, + "dateNoted": "2016-11-27", + "parcelID": "17936", + "crownLandUsePIN": "20075", + "crownLandFileNumber": "20431", + "landDescription": "LOT 4 OF LOT 3 BLOCK 5 DISTRICT LOT 3 PLAN 8611" + }, + { + "uuid": "96edde4b-a99f-44fa-8fa8-1ccd6f372240", "siteRegistry": false, - "dateNoted": "2023-05-24", - "parcelID": "19849", - "crownLandUsePIN": "20403", - "crownLandFileNumber": "15870", - "landDescription": "LOT 3 OF LOT 5 BLOCK 1 DISTRICT LOT 5 PLAN 7487" + "dateNoted": "2014-04-25", + "parcelID": "20475", + "crownLandUsePIN": "19256", + "crownLandFileNumber": "17340", + "landDescription": "LOT 5 OF LOT 3 BLOCK 5 DISTRICT LOT 4 PLAN 7344" + }, + { + "uuid": "d3a647f6-0110-4e36-a74e-185a4f8270d9", + "siteRegistry": true, + "dateNoted": "2017-06-27", + "parcelID": "18529", + "crownLandUsePIN": "16559", + "crownLandFileNumber": "19479", + "landDescription": "LOT 2 OF LOT 1 BLOCK 3 DISTRICT LOT 4 PLAN 4151" } ], "siteDisclosures": [ { - "siteRegistry": false, - "dateReceived": "2020-05-03", - "dateCompleted": "2017-03-09", - "dateEntered": "2021-12-18", - "dateRegistrar": "2023-06-30", - "dateLocalAuthorityReceived": "2015-04-06", - "summary": "Possimus necessitatibus ab.\nEnim vero atque laborum.\nError odit commodi aliquam deleniti.", - "informationUsed": "Quis deserunt deserunt modi quasi.\nEnim doloremque corrupti ad quas sed praesentium.\nLabore tempora voluptate perspiciatis nemo reiciendis consequuntur ut saepe maxime.\nIpsa soluta beatae enim perferendis sint.", - "pastOrPresentOrders": "Expedita sapiente accusantium similique.", + "uuid": "3efb26fd-100f-43ae-baf8-ceb9e4d8e840", + "siteRegistry": true, + "dateReceived": "2022-05-03", + "dateCompleted": "2014-04-18", + "dateEntered": "2017-07-19", + "dateRegistrar": "2016-02-19", + "dateLocalAuthorityReceived": "2018-04-11", + "summary": "Amet quia iusto quis consequatur mollitia debitis.\nCumque doloribus dolor beatae.\nMinima at soluta quis voluptate.", + "informationUsed": "Doloribus nostrum neque ratione commodi repudiandae.\nSaepe veniam occaecati cum soluta nihil veniam excepturi cum.\nCulpa ab ipsum harum laudantium.", + "pastOrPresentOrders": "Molestiae a quasi minima libero.\nRepellat distinctio magni.\nSapiente consequatur asperiores natus deserunt architecto.", "commercialAndIndustrialPurposes": [ { + "uuid": "436cbf9e-7d70-4db6-b409-20cf2c6d6367", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "uuid": "f5b43b8d-ce75-4bb5-be63-a25230ece4fb", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false + "siteRegistry": true }, { + "uuid": "6e39327e-6c08-4e87-babb-45eed7516089", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "uuid": "54ae3597-e3f7-43bf-8837-eaa1202398eb", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + } + ] + }, + { + "uuid": "929e6aca-d302-4a20-b479-a7a0b8543766", + "siteRegistry": false, + "dateReceived": "2023-08-19", + "dateCompleted": "2019-10-27", + "dateEntered": "2019-01-26", + "dateRegistrar": "2018-07-03", + "dateLocalAuthorityReceived": "2020-07-16", + "summary": "Alias iste natus mollitia pariatur maxime nihil vitae.\nVitae doloremque saepe dignissimos ab quod sequi officia.\nVoluptatibus possimus a doloribus.", + "informationUsed": "Quas pariatur repudiandae placeat commodi molestiae architecto ex eos sequi.\nOfficia quas laudantium dolorem.\nPossimus quos quidem accusantium distinctio ipsa.\nExcepturi dolorum deleniti quasi iusto cupiditate nobis repellat.\nSimilique labore vitae quibusdam optio minima.", + "pastOrPresentOrders": "Placeat possimus ex in quibusdam.", + "commercialAndIndustrialPurposes": [ + { + "uuid": "0f8a6ad0-175e-45c7-a8f1-3b946e502477", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "uuid": "17cabc4e-b22d-42d3-b56e-98c84ab83279", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true } ] @@ -45963,115 +53364,92 @@ ], "activityLog": [ { + "uuid": "534d66d9-865f-4801-9cf7-d3c9ed522d72", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "RUECKER EDDIE", - "timestamp": "2021-05-05" - }, - { - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "BAYER-BARTOLETTI GAVIN", - "timestamp": "2019-02-20" + "user": "GISLASON SHANIYA", + "timestamp": "2019-01-27" }, { + "uuid": "a8f70a81-14ba-4dd8-8d7e-29b18a6b7edc", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "LITTEL LYLA", - "timestamp": "2015-08-05" + "user": "KOEPP DESTIN", + "timestamp": "2015-10-30" }, { + "uuid": "06e6e364-645b-4879-92cf-8954ef10c755", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "SMITH VALENTINA", - "timestamp": "2023-01-18" + "user": "MRAZ ADELL", + "timestamp": "2019-10-18" }, { + "uuid": "80169a01-346c-4ab0-93e8-8b50893b9bc0", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "REINGER JOSH", - "timestamp": "2021-10-09" - }, - { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "SPORER TRACE", - "timestamp": "2022-02-18" + "user": "EBERT ISABELL", + "timestamp": "2014-01-13" }, { - "siteRegistry": true, + "uuid": "c8dfa6cd-07b6-4ba1-be45-c28ca1922c7e", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "BEDNAR MADDISON", - "timestamp": "2018-04-29" + "user": "KEEBLER LETITIA", + "timestamp": "2022-09-20" }, { + "uuid": "7064cec1-871a-4135-bcd4-79fe8fdb7a18", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "CONROY-VON KAELA", - "timestamp": "2015-09-11" - }, - { - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "LEHNER MABELLE", - "timestamp": "2023-09-19" + "user": "HAYES DEE", + "timestamp": "2020-07-15" }, { + "uuid": "fb04f288-2c6c-4b23-8e8b-f007591176e4", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "WEHNER EINAR", - "timestamp": "2022-03-15" + "user": "VON HASKELL", + "timestamp": "2014-09-22" } ], "associatedSites": [ { - "dateNoted": "2018-09-14", - "notes": "", - "parcelID": "16924", - "siteID": "20283", - "siteRegistry": false - }, - { - "dateNoted": "2021-12-27", - "notes": "", - "parcelID": "17834", - "siteID": "16489", - "siteRegistry": true - }, - { - "dateNoted": "2023-08-14", + "uuid": "9bb04475-eba7-463a-a7af-b8fe9cc32e7f", + "dateNoted": "2021-09-02", "notes": "", - "parcelID": "19098", - "siteID": "18350", + "parcelID": "18596", + "siteID": "16986", "siteRegistry": false } ] }, { - "uuid": "cd432f7a-0292-49ed-bcac-8b2b83ec35db", - "siteID": 19587, - "address": "57862 O'Connell Well", - "latitude": 48.1005, - "longitude": -122.0923, - "lastUpdated": "2018-04-04", - "city": "Morissetteshire", - "region": "Kootenay", - "victoriaFile": "26250-20/16029", + "uuid": "e8df3e23-5bb2-4a0c-826b-e8a0b660ee9c", + "siteID": 15676, + "address": "45614 Merl Shoal", + "latitude": 50.8547, + "longitude": -138.4433, + "lastUpdated": "2022-01-10", + "city": "West Crystelhaven", + "region": "Vancouver Island/Coast", + "victoriaFile": "26250-20/8575", "regionalFile": "N/A", "parcelIDs": [ - 2130087, - 8343183, - 5762041, - 4151797, - 5098644 + 7313557, + 7944740, + 7172609, + 2786347, + 387789 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2023-04-16", - "completed": "2016-05-26", - "initiated": "2020-09-07", - "ministryContact": "MOSCISKI NASIR", + "uuid": "de5d3639-8804-4500-91e4-3653b13f8f18", + "createdAt": "2015-02-10", + "completed": "2023-03-27", + "initiated": "2020-11-11", + "ministryContact": "GERLACH WILTON", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -46080,28 +53458,44 @@ ], "notationParticipants": [ { + "uuid": "096170c0-7126-459a-8062-34893ead89c2", "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "4c274b58-730d-4ecc-8c9a-815454c23e8f", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "uuid": "1daf7bef-ed35-43d8-ab20-beebdf2d3ccd", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false }, { + "uuid": "649b2ba5-bed5-4fab-975a-862dd82c9e79", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "uuid": "3968008f-0026-4dd4-a4db-c249686bec98", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": false } ], "siteRegistry": false }, { - "createdAt": "2022-01-12", - "completed": "2022-08-07", - "initiated": "2018-08-02", - "ministryContact": "HELLER ALEXANDRE", + "uuid": "6e3fd992-da40-4610-b48a-6d08863a50e8", + "createdAt": "2021-11-06", + "completed": "2019-12-20", + "initiated": "2013-11-08", + "ministryContact": "LANG GEOVANNI", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -46110,155 +53504,284 @@ ], "notationParticipants": [ { + "uuid": "d15f0238-432a-418f-8186-686c339a7aa9", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "uuid": "ed3154a9-b16b-4639-acc7-ab8058f5e0b6", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "cbdf0495-f166-4a2f-ad7a-5c4571812205", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "35f54147-f764-47a9-8bf6-ff0ef4c421e8", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "uuid": "58de3911-3521-4395-a36b-d7f8ac84f02c", + "createdAt": "2022-08-16", + "completed": "2017-08-05", + "initiated": "2014-12-29", + "ministryContact": "HOEGER VELDA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "uuid": "34a8028b-3bb2-4596-a2e6-9b9b183e07c4", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "d4f6b76b-5317-4a3d-a9af-be342cf5b6e1", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "10d28965-f5dd-478f-8e58-37d44b82d209", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false }, { + "uuid": "7f6b9bd6-88be-42a2-a974-7e5ba397a871", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "uuid": "85ae2d60-19e8-41cb-85a0-b3d2ca55c8a3", + "createdAt": "2017-07-22", + "completed": "2019-10-24", + "initiated": "2023-10-05", + "ministryContact": "BOGAN MICHEAL", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "uuid": "cb8051c1-7c3a-4eb0-9d4b-b228c3bd62ce", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": true }, { + "uuid": "166d28ab-67de-4e41-bbe4-c63d5a15df78", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true }, { + "uuid": "bc2725b3-bf8a-4be4-87d5-743e4bd1f58e", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "3d67bcbc-b3b9-4a12-bff5-4d488ee0d017", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false } ], "participants": [ { + "uuid": "807b251a-6127-4089-984f-e9f30964e11e", "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2019-10-14", - "startDate": "2017-01-24", + "endDate": "2022-08-13", + "startDate": "2015-12-26", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2019-05-28", - "startDate": "2021-02-11", + "uuid": "8d0c3f12-ee56-46e9-90fe-00a43d883d05", + "name": "IPSUM", + "endDate": "2018-11-23", + "startDate": "2014-10-06", "notes": "", "roles": [ "EMPLOYEE" ], "siteRegistry": true + }, + { + "uuid": "7da7da4a-d1da-4bb6-9f1d-050498d5f29b", + "name": "AMET, DOLOR SIT", + "endDate": "2013-10-24", + "startDate": "2017-01-28", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "uuid": "79b87406-0f39-43d0-9db3-27a305370f0a", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2014-09-21", + "startDate": "2018-07-11", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "uuid": "7a3c9670-f77a-408a-aed0-c75f95f7bbd8", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2015-10-29", + "startDate": "2015-10-16", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false } ], "suspectLandUses": [ { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-04-26 (described on Site Profile dated 2017-04-26)", + "uuid": "bf9b852c-d7be-4165-bc22-45275094e933", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2016-11-15 (described on Site Profile dated 2016-11-15)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { + "uuid": "3ddeedc5-8483-48e9-914a-469c3244d834", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2023-03-20 (described on Site Profile dated 2023-03-20)", + "notes": "INSERTED FOR SITE PROFILE DATED 2017-01-17 (described on Site Profile dated 2017-01-17)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { + "uuid": "e281e978-bfbf-4cfc-815b-96d6414742c0", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-05-20 (described on Site Profile dated 2019-05-20)", + "notes": "INSERTED FOR SITE PROFILE DATED 2021-08-28 (described on Site Profile dated 2021-08-28)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "uuid": "b83a1e74-8d5f-490b-ae15-6ebfcba0bf4f", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2015-11-08 (described on Site Profile dated 2015-11-08)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "uuid": "69dfd68b-13b7-43b7-9764-24c6d46efaa5", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2023-06-02 (described on Site Profile dated 2023-06-02)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], "parcelDescriptions": [ { + "uuid": "9123837b-b383-4d66-a2f3-79fdf3f2d9c6", "siteRegistry": true, - "dateNoted": "2014-07-21", - "parcelID": "18975", - "crownLandUsePIN": "17979", - "crownLandFileNumber": "17010", - "landDescription": "LOT 4 OF LOT 5 BLOCK 4 DISTRICT LOT 3 PLAN 7874" + "dateNoted": "2019-03-18", + "parcelID": "18045", + "crownLandUsePIN": "19558", + "crownLandFileNumber": "19481", + "landDescription": "LOT 1 OF LOT 4 BLOCK 1 DISTRICT LOT 5 PLAN 5741" }, { + "uuid": "7c7b48e2-c23f-4669-ac18-a680dca4a7d9", "siteRegistry": true, - "dateNoted": "2021-07-24", - "parcelID": "18872", - "crownLandUsePIN": "15764", - "crownLandFileNumber": "18519", - "landDescription": "LOT 2 OF LOT 5 BLOCK 3 DISTRICT LOT 1 PLAN 3996" + "dateNoted": "2014-04-26", + "parcelID": "16415", + "crownLandUsePIN": "19600", + "crownLandFileNumber": "16004", + "landDescription": "LOT 3 OF LOT 3 BLOCK 4 DISTRICT LOT 5 PLAN 9653" }, { - "siteRegistry": false, - "dateNoted": "2021-11-30", - "parcelID": "16569", - "crownLandUsePIN": "20662", - "crownLandFileNumber": "15390", - "landDescription": "LOT 2 OF LOT 4 BLOCK 2 DISTRICT LOT 4 PLAN 7174" + "uuid": "e6a5be2a-99cd-45f0-8782-4a6f799a74a9", + "siteRegistry": true, + "dateNoted": "2019-03-04", + "parcelID": "17551", + "crownLandUsePIN": "17902", + "crownLandFileNumber": "19429", + "landDescription": "LOT 5 OF LOT 2 BLOCK 4 DISTRICT LOT 4 PLAN 3298" }, { + "uuid": "49175eb3-3a16-408e-9ea5-2f1dc76d336b", "siteRegistry": true, - "dateNoted": "2016-05-12", - "parcelID": "20719", - "crownLandUsePIN": "19969", - "crownLandFileNumber": "15349", - "landDescription": "LOT 4 OF LOT 5 BLOCK 1 DISTRICT LOT 2 PLAN 3785" + "dateNoted": "2020-06-07", + "parcelID": "17799", + "crownLandUsePIN": "17851", + "crownLandFileNumber": "20881", + "landDescription": "LOT 5 OF LOT 3 BLOCK 2 DISTRICT LOT 4 PLAN 5732" + }, + { + "uuid": "e921f492-665d-4ba0-bf8d-e93d51b362bb", + "siteRegistry": true, + "dateNoted": "2017-03-16", + "parcelID": "16831", + "crownLandUsePIN": "16671", + "crownLandFileNumber": "17452", + "landDescription": "LOT 2 OF LOT 3 BLOCK 5 DISTRICT LOT 1 PLAN 8857" } ], "siteDisclosures": [ { + "uuid": "8c633e28-d6bb-4167-b76e-f8bb361ef0fc", "siteRegistry": true, - "dateReceived": "2019-03-03", - "dateCompleted": "2021-01-11", - "dateEntered": "2019-06-20", - "dateRegistrar": "2021-11-24", - "dateLocalAuthorityReceived": "2018-11-13", - "summary": "Unde vero culpa eos laudantium tempore delectus inventore.\nQuos ex voluptates eligendi cupiditate corrupti quos velit.", - "informationUsed": "Nemo odit soluta.\nSoluta possimus labore maiores placeat magnam deserunt temporibus.\nMagnam accusamus libero similique natus.\nEt natus similique.", - "pastOrPresentOrders": "Nihil ea eius nam nam tempora.\nPariatur modi maiores aliquam.\nMaxime tenetur velit ducimus praesentium autem vel laborum accusantium veritatis.", + "dateReceived": "2015-02-10", + "dateCompleted": "2023-08-02", + "dateEntered": "2018-03-11", + "dateRegistrar": "2018-05-09", + "dateLocalAuthorityReceived": "2022-12-26", + "summary": "Consequuntur magnam totam odit ducimus aliquid.\nMaxime eveniet necessitatibus a laudantium facilis provident corporis beatae corrupti.\nSaepe quisquam ut delectus error magnam ipsum architecto sed.", + "informationUsed": "Vero ea nam consectetur fugiat molestias voluptatum laudantium.\nDolore id nulla tempora eos nostrum.\nQui eligendi blanditiis.\nUt ullam consequuntur exercitationem aperiam necessitatibus.", + "pastOrPresentOrders": "Quas ex alias dicta.\nQuae quas ipsa quis iusto ut ipsam quibusdam alias quod.", "commercialAndIndustrialPurposes": [ { + "uuid": "0c4b3f4c-e8cc-4928-9bbc-a71bec89ed0e", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false + "siteRegistry": true }, { + "uuid": "39d0ce1e-e6a2-4ce9-ad58-cdae0ea2fcea", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false - } - ] - }, - { - "siteRegistry": false, - "dateReceived": "2022-01-12", - "dateCompleted": "2013-11-09", - "dateEntered": "2016-09-26", - "dateRegistrar": "2022-07-09", - "dateLocalAuthorityReceived": "2021-04-10", - "summary": "Fugiat ratione saepe blanditiis accusantium alias.", - "informationUsed": "Ullam molestias rerum eaque optio magnam omnis ipsa enim.\nDeserunt quasi possimus perferendis at laborum quasi nemo adipisci non.\nArchitecto commodi similique voluptates officia nulla accusantium voluptatum.\nOfficiis illum voluptatibus quo est officiis minima.", - "pastOrPresentOrders": "Rem veniam doloremque.\nNisi quasi est officia repellendus in incidunt magni tenetur.", - "commercialAndIndustrialPurposes": [ - { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true }, { + "uuid": "d77a4285-9e1c-4579-b3a2-534c9f5d328e", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false }, { + "uuid": "e30d72ee-170f-4a6a-bd1e-4540fbf7b8af", "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false } ] @@ -46266,115 +53789,107 @@ ], "activityLog": [ { - "siteRegistry": true, + "uuid": "85a5822e-0845-4633-9ca8-207c9b3cd8ad", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "ROBEL ERIK", - "timestamp": "2022-12-10" + "user": "RITCHIE FRED", + "timestamp": "2023-02-15" }, { + "uuid": "8f3a84fc-e9f6-410d-b03d-8ab056da56fb", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "MAGGIO MAKENZIE", - "timestamp": "2023-06-10" - }, - { - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "BEER SADYE", - "timestamp": "2018-11-27" + "user": "BERNHARD JASMIN", + "timestamp": "2016-02-03" }, { + "uuid": "5604d64d-8dec-451c-a28e-a70995fd2f57", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "FISHER DAWSON", - "timestamp": "2023-09-24" + "user": "RENNER MARYSE", + "timestamp": "2014-12-04" }, { - "siteRegistry": false, + "uuid": "aa69d41a-d192-4805-9999-40c74904fdd8", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "PARKER CREOLA", - "timestamp": "2015-05-06" + "user": "SCHMELER ADAM", + "timestamp": "2018-12-01" }, { + "uuid": "f4e7df94-3e00-4219-bc2d-12bd732bcdd4", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "FAY JUNIOR", - "timestamp": "2023-01-27" + "user": "HYATT TATUM", + "timestamp": "2015-03-27" }, { + "uuid": "4f328d2c-6bc2-49da-8b58-66530c1aed3d", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "VANDERVORT-GLOVER DAVE", - "timestamp": "2019-09-24" + "user": "GIBSON KRYSTAL", + "timestamp": "2015-01-23" }, { + "uuid": "3140cfec-e099-43db-a8d7-d35cbd9ea31d", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "BREITENBERG JAIRO", - "timestamp": "2015-05-31" - }, - { - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "WEBER LILLIAN", - "timestamp": "2014-07-16" + "user": "KIHN XANDER", + "timestamp": "2014-09-15" }, { + "uuid": "6c44285e-ff4e-4285-9558-eec390a61d18", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "BECHTELAR RUSTY", - "timestamp": "2018-05-29" + "user": "ROBEL THAD", + "timestamp": "2022-11-23" } ], "associatedSites": [ { - "dateNoted": "2014-04-03", + "uuid": "413a78f3-f31f-4673-9c9d-93ac8bd95662", + "dateNoted": "2013-11-06", "notes": "", - "parcelID": "19621", - "siteID": "20325", + "parcelID": "15372", + "siteID": "15580", "siteRegistry": false }, { - "dateNoted": "2015-01-06", - "notes": "", - "parcelID": "20599", - "siteID": "20242", - "siteRegistry": true - }, - { - "dateNoted": "2014-09-28", + "uuid": "d7906c9b-d36d-453f-aa2e-161c006b3e73", + "dateNoted": "2018-11-06", "notes": "", - "parcelID": "20109", - "siteID": "17847", + "parcelID": "18422", + "siteID": "16202", "siteRegistry": true } ] }, { - "uuid": "6838cc71-aaca-4ef8-b7d5-f6beec4ae2f8", - "siteID": 17812, - "address": "7839 Jakubowski Village", - "latitude": 49.7347, - "longitude": -122.0383, - "lastUpdated": "2019-10-12", - "city": "Waelchimouth", + "uuid": "e05f18af-11a4-4e76-b08d-b3ab8dfc2cf0", + "siteID": 17920, + "address": "18357 Lacey Shoal", + "latitude": 54.8404, + "longitude": -137.4287, + "lastUpdated": "2019-02-16", + "city": "North Aronton", "region": "Vancouver Island/Coast", - "victoriaFile": "26250-20/17367", + "victoriaFile": "26250-20/4071", "regionalFile": "N/A", "parcelIDs": [ - 3802109, - 3732898, - 1007487, - 1592767, - 6455120 + 2057899, + 4413079, + 9686094, + 1110172, + 105352 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2022-11-09", - "completed": "2015-07-12", - "initiated": "2015-05-26", - "ministryContact": "RATKE CHAZ", + "uuid": "88e8cf40-5ef9-40fd-bd5d-ac3d7ecc6dbd", + "createdAt": "2016-09-26", + "completed": "2017-12-27", + "initiated": "2021-07-15", + "ministryContact": "OKUNEVA TALIA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -46383,53 +53898,32 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { + "uuid": "54f797dd-de55-48a0-a1a2-910e1fefb1da", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { + "uuid": "2bd33143-43ff-4e07-a2cc-fb750b3cb5d3", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - } - ], - "siteRegistry": true - }, - { - "createdAt": "2016-05-09", - "completed": "2022-06-14", - "initiated": "2017-07-28", - "ministryContact": "STREICH MACK", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true + "uuid": "602f3917-fc66-4bb7-be86-1d37ca0ec0a7", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false } ], "siteRegistry": false }, { - "createdAt": "2016-09-28", - "completed": "2016-02-17", - "initiated": "2020-09-01", - "ministryContact": "KESSLER MATTIE", + "uuid": "5b14d597-17a8-4429-9847-cdc17fa7ea7f", + "createdAt": "2015-03-18", + "completed": "2022-11-05", + "initiated": "2017-12-23", + "ministryContact": "HAMILL ADRAIN", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -46438,16 +53932,31 @@ ], "notationParticipants": [ { + "uuid": "969b3eb8-cbc3-474c-aa29-0561a4523548", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "uuid": "8bb16235-2319-4ef4-95f7-da11db8eeae3", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": false }, { + "uuid": "14677759-93dc-4aec-88f6-3029940c50da", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false }, { + "uuid": "d0598f64-af01-4515-8057-989021fec4c9", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "uuid": "823830b9-26a9-4c46-b210-e75f2eefe7f7", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false @@ -46456,10 +53965,11 @@ "siteRegistry": true }, { - "createdAt": "2023-05-04", - "completed": "2023-07-14", - "initiated": "2017-07-21", - "ministryContact": "LEMKE OSCAR", + "uuid": "a2dfeef4-0de7-427d-8f90-8c4c6e835037", + "createdAt": "2021-10-27", + "completed": "2016-07-01", + "initiated": "2021-03-08", + "ministryContact": "BUCKRIDGE MARYSE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -46468,23 +53978,32 @@ ], "notationParticipants": [ { + "uuid": "314d1b9a-781e-42a8-b97e-5135a5f8a8f4", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "b34c501f-a10b-48fc-afeb-6f4ca209a30f", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", + "uuid": "613a7d71-2fa6-4731-864d-c903d3eafc00", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2017-10-23", - "completed": "2016-08-19", - "initiated": "2018-09-13", - "ministryContact": "ROHAN DELPHIA", + "uuid": "66c9c0b1-7c0e-43de-9e8b-eccf72e07e7e", + "createdAt": "2018-01-01", + "completed": "2019-10-26", + "initiated": "2021-02-20", + "ministryContact": "HALVORSON WINONA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -46493,44 +54012,27 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { + "uuid": "7ef52ab4-d397-46f7-8bfa-cefdb83544d2", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "uuid": "b2349f51-4b0d-4172-bb85-f4c639adee3e", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true } ], "participants": [ { - "name": "IPSUM", - "endDate": "2016-12-09", - "startDate": "2014-08-21", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": false - }, - { - "name": "IPSUM", - "endDate": "2013-11-10", - "startDate": "2017-05-13", + "uuid": "d362cabc-81fa-4e8f-8912-1da5fedb93c7", + "name": "AMET, DOLOR SIT", + "endDate": "2021-10-20", + "startDate": "2018-06-05", "notes": "", "roles": [ "ORGANIZATION" @@ -46538,115 +54040,83 @@ "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2019-03-06", - "startDate": "2016-05-10", + "uuid": "f0b1b605-d2a6-4a69-bde0-c02f038109fe", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2018-03-14", + "startDate": "2020-05-28", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": true }, { + "uuid": "80abdbe7-8ceb-483e-9aa1-ceb1b6594925", "name": "SHELL CANADA PRODUCTS", - "endDate": "2019-05-22", - "startDate": "2014-07-28", + "endDate": "2022-08-29", + "startDate": "2020-05-14", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": false } ], "suspectLandUses": [ { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-08-28 (described on Site Profile dated 2019-08-28)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" - }, - { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-04-26 (described on Site Profile dated 2015-04-26)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" - }, - { + "uuid": "32544481-7e5b-4aac-80cb-1acbdaba3634", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-05-04 (described on Site Profile dated 2018-05-04)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "notes": "INSERTED FOR SITE PROFILE DATED 2023-03-19 (described on Site Profile dated 2023-03-19)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { + "uuid": "c3a44cca-db31-4243-9fa5-1d9ac0c9411b", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-11-27 (described on Site Profile dated 2019-11-27)", + "notes": "INSERTED FOR SITE PROFILE DATED 2015-05-30 (described on Site Profile dated 2015-05-30)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], "parcelDescriptions": [ { + "uuid": "b28662ef-1b6f-427a-9f1a-bf0eb888d56c", "siteRegistry": true, - "dateNoted": "2023-02-23", - "parcelID": "15422", - "crownLandUsePIN": "20785", - "crownLandFileNumber": "17927", - "landDescription": "LOT 5 OF LOT 4 BLOCK 3 DISTRICT LOT 1 PLAN 8353" - }, - { - "siteRegistry": false, - "dateNoted": "2021-08-09", - "parcelID": "18634", - "crownLandUsePIN": "20549", - "crownLandFileNumber": "19427", - "landDescription": "LOT 2 OF LOT 1 BLOCK 3 DISTRICT LOT 3 PLAN 3505" + "dateNoted": "2015-07-14", + "parcelID": "20841", + "crownLandUsePIN": "18875", + "crownLandFileNumber": "17184", + "landDescription": "LOT 4 OF LOT 5 BLOCK 3 DISTRICT LOT 1 PLAN 3582" }, { - "siteRegistry": false, - "dateNoted": "2023-09-12", - "parcelID": "20292", - "crownLandUsePIN": "18820", - "crownLandFileNumber": "19569", - "landDescription": "LOT 5 OF LOT 3 BLOCK 3 DISTRICT LOT 5 PLAN 3283" + "uuid": "80bbf0d6-46be-4bb0-b0da-8162ebe16f8a", + "siteRegistry": true, + "dateNoted": "2022-01-03", + "parcelID": "17055", + "crownLandUsePIN": "20236", + "crownLandFileNumber": "15939", + "landDescription": "LOT 1 OF LOT 4 BLOCK 3 DISTRICT LOT 5 PLAN 3728" } ], "siteDisclosures": [ { + "uuid": "28205f82-5e3a-4ff7-bde5-8d3ce150acfe", "siteRegistry": false, - "dateReceived": "2020-10-02", - "dateCompleted": "2021-03-24", - "dateEntered": "2016-03-19", - "dateRegistrar": "2020-08-08", - "dateLocalAuthorityReceived": "2022-12-16", - "summary": "Itaque voluptatum provident eius explicabo autem consequuntur dolore adipisci earum.", - "informationUsed": "Placeat impedit voluptate deleniti nisi ratione commodi.\nNobis iure vitae doloribus.\nConsectetur odio at eligendi.\nPlaceat aspernatur tenetur doloremque earum temporibus laborum illo enim modi.", - "pastOrPresentOrders": "Deleniti dolorum accusamus dolore.\nNeque dicta autem ex.\nCupiditate dignissimos dolores praesentium vel tenetur maiores quasi voluptas.", + "dateReceived": "2017-10-16", + "dateCompleted": "2018-05-13", + "dateEntered": "2019-03-12", + "dateRegistrar": "2016-08-01", + "dateLocalAuthorityReceived": "2014-06-11", + "summary": "Soluta ea ut inventore magni quibusdam recusandae et saepe distinctio.", + "informationUsed": "Eum distinctio modi sapiente iste reprehenderit aut fugiat.\nDolores dolores eveniet voluptate consequuntur.\nFugit minus possimus reprehenderit nemo.\nExercitationem doloribus necessitatibus delectus eum fugit maiores totam.\nDucimus quod reprehenderit atque voluptatibus nobis delectus voluptas earum velit.", + "pastOrPresentOrders": "Cumque minus rerum hic maiores saepe placeat quasi a dignissimos.\nLaudantium totam quae deserunt eveniet repudiandae.\nSint eaque quis.", "commercialAndIndustrialPurposes": [ { + "uuid": "ad4f2e97-1dd5-426e-971a-3ca0d6195f3f", "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false - }, - { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false - } - ] - }, - { - "siteRegistry": true, - "dateReceived": "2017-10-15", - "dateCompleted": "2021-12-27", - "dateEntered": "2018-04-07", - "dateRegistrar": "2015-01-27", - "dateLocalAuthorityReceived": "2021-04-11", - "summary": "Nihil aliquam aspernatur.\nAperiam asperiores optio commodi iusto quaerat ab quaerat blanditiis soluta.", - "informationUsed": "Nesciunt quia eum sed similique earum quos.\nVitae assumenda beatae voluptatibus sint corporis.\nQuibusdam voluptate omnis minus quis deleniti doloribus rem atque earum.\nUt ab maiores quas quas.", - "pastOrPresentOrders": "Exercitationem facilis explicabo adipisci nulla officia repudiandae.\nAmet deserunt a iusto incidunt eum harum.\nEsse omnis tempora deserunt alias natus rerum voluptatem.", - "commercialAndIndustrialPurposes": [ - { - "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false + "siteRegistry": true }, { + "uuid": "007068d6-40ad-4d95-a1d4-9059162cbce0", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false @@ -46656,78 +54126,107 @@ ], "activityLog": [ { + "uuid": "52099ca2-c8d7-45cb-b423-1acbf9d7ea53", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "MCLAUGHLIN ALBERTHA", + "timestamp": "2016-08-08" + }, + { + "uuid": "c27267c0-f4b0-4c89-a7f7-fa179c0cacaf", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "STAMM LORENZA", - "timestamp": "2015-11-04" + "user": "PREDOVIC CARLEY", + "timestamp": "2018-08-22" }, { + "uuid": "d0447093-e235-422b-9a04-60764f5a439d", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "WEHNER JUANA", - "timestamp": "2020-01-12" + "user": "BERNHARD SKYLA", + "timestamp": "2014-11-12" }, { + "uuid": "8c8610a5-a0e0-4ee1-8e4a-27f352fac6ca", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "GULGOWSKI AMY", - "timestamp": "2022-03-10" + "user": "ANKUNDING STANTON", + "timestamp": "2022-05-12" }, { - "siteRegistry": true, + "uuid": "821f080f-6959-4ed4-8b3c-f7ad5e6d158f", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "BRADTKE KYLE", - "timestamp": "2017-12-15" + "user": "O'CONNER JAMIE", + "timestamp": "2016-06-05" }, { + "uuid": "8af21c25-e32f-425d-8f30-616180286bee", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "HICKLE CHESLEY", - "timestamp": "2020-10-09" + "user": "DICKENS CORENE", + "timestamp": "2021-04-30" + }, + { + "uuid": "4dc1525d-1422-4f8d-808f-b617910d6d7c", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "LUEILWITZ-BERNHARD JOEY", + "timestamp": "2020-10-16" + }, + { + "uuid": "00d4cccd-11d8-443d-8697-e92d2e7099a2", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "REMPEL ISAI", + "timestamp": "2014-08-21" } ], "associatedSites": [ { - "dateNoted": "2015-07-30", + "uuid": "d6995f36-015f-4820-926e-372b6714c03b", + "dateNoted": "2015-06-12", "notes": "", - "parcelID": "16324", - "siteID": "18140", - "siteRegistry": true + "parcelID": "15294", + "siteID": "16186", + "siteRegistry": false }, { - "dateNoted": "2022-01-19", + "uuid": "f6ba9477-5965-43a3-9e6d-aafdbb164989", + "dateNoted": "2015-11-02", "notes": "", - "parcelID": "20605", - "siteID": "16602", + "parcelID": "16711", + "siteID": "18893", "siteRegistry": true } ] }, { - "uuid": "5bacea94-b5f3-4d21-9b15-22d2f27d6e72", - "siteID": 16138, - "address": "100 Sanford Viaduct", - "latitude": 52.5047, - "longitude": -136.6424, - "lastUpdated": "2017-08-28", - "city": "Adrientown", - "region": "Cariboo", - "victoriaFile": "26250-20/6765", + "uuid": "9f5b4aec-5200-4432-8da5-d79592b0fa98", + "siteID": 17676, + "address": "38973 Hayes Circles", + "latitude": 55.8281, + "longitude": -123.6032, + "lastUpdated": "2021-09-16", + "city": "West Gertrude", + "region": "Kootenay", + "victoriaFile": "26250-20/6044", "regionalFile": "N/A", "parcelIDs": [ - 9845466, - 4638005, - 909105, - 3719133, - 4979251 + 2136546, + 5443638, + 3826950, + 6627145, + 3443907 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2019-10-11", - "completed": "2018-08-02", - "initiated": "2020-03-01", - "ministryContact": "MARQUARDT EUGENE", + "uuid": "641ac7bc-236d-4926-9047-f5f50c71b6f8", + "createdAt": "2018-10-25", + "completed": "2018-10-11", + "initiated": "2019-09-19", + "ministryContact": "HERMAN LISETTE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -46736,48 +54235,32 @@ ], "notationParticipants": [ { + "uuid": "cc045465-d2e6-4130-a25b-a8ef5a27deb3", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true + "role": "SUBMITTED BY", + "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - } - ], - "siteRegistry": true - }, - { - "createdAt": "2021-02-22", - "completed": "2022-09-05", - "initiated": "2020-04-08", - "ministryContact": "FRANEY JOSIANNE", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { + "uuid": "c8e49917-97c4-4265-b80f-aee0ded40c4f", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { + "uuid": "6e69321f-2357-47df-b378-382751668d40", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2020-07-10", - "completed": "2017-06-06", - "initiated": "2021-10-23", - "ministryContact": "TURCOTTE-SKILES DOLORES", + "uuid": "6dd17e13-5472-4602-bf64-7117f698806b", + "createdAt": "2018-11-16", + "completed": "2020-10-20", + "initiated": "2022-10-15", + "ministryContact": "KLING SYLVESTER", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -46786,49 +54269,56 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "uuid": "41882d89-1ba8-4532-b2dc-d4ae0ec257db", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "uuid": "f7195918-6d36-4425-98ab-69b40cdf59b3", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", "siteRegistry": false }, { + "uuid": "cc9b174d-6d4a-412d-b510-26a2d3f089bf", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { + "uuid": "f1a03904-83d6-4a63-89b3-9edc4730790e", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", + "uuid": "3304faf3-f6da-4d49-9330-54ebecae4259", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true } ], "participants": [ { - "name": "IPSUM", - "endDate": "2020-06-26", - "startDate": "2023-02-23", + "uuid": "43ff60e1-cbeb-4b21-8f63-949920d73dde", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2019-04-27", + "startDate": "2014-01-26", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": true + "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2019-08-13", - "startDate": "2017-01-24", + "uuid": "f36ce133-b5ff-477d-8315-fafcda91c24f", + "name": "IPSUM", + "endDate": "2019-10-06", + "startDate": "2022-06-22", "notes": "", "roles": [ "ORGANIZATION" @@ -46836,9 +54326,10 @@ "siteRegistry": false }, { - "name": "AMET, DOLOR SIT", - "endDate": "2021-06-12", - "startDate": "2019-11-06", + "uuid": "daa36025-c0f2-408a-afd2-901a24e17191", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2023-04-20", + "startDate": "2023-04-09", "notes": "", "roles": [ "ORGANIZATION" @@ -46846,190 +54337,193 @@ "siteRegistry": true }, { + "uuid": "d2eac118-bb96-4bfc-b3ec-70e0afa68fc6", "name": "SHELL CANADA PRODUCTS", - "endDate": "2022-12-20", - "startDate": "2020-09-29", + "endDate": "2015-02-14", + "startDate": "2015-06-07", "notes": "", "roles": [ "ORGANIZATION" ], "siteRegistry": false - }, - { - "name": "AMET, DOLOR SIT", - "endDate": "2020-03-14", - "startDate": "2018-02-21", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": true } ], "suspectLandUses": [ { + "uuid": "deffb83c-67d8-4da4-8ad0-bf89f5e948ce", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-05-23 (described on Site Profile dated 2016-05-23)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" - }, - { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-04-16 (described on Site Profile dated 2016-04-16)", + "notes": "INSERTED FOR SITE PROFILE DATED 2019-04-05 (described on Site Profile dated 2019-04-05)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { + "uuid": "a9195dd8-fc79-4ceb-ba03-4ad181d2dfbb", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-09-19 (described on Site Profile dated 2018-09-19)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" - }, - { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-06-11 (described on Site Profile dated 2014-06-11)", + "notes": "INSERTED FOR SITE PROFILE DATED 2019-01-21 (described on Site Profile dated 2019-01-21)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { + "uuid": "4f37bfae-a1e3-41e7-b9f7-602c0c359b1a", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-01-21 (described on Site Profile dated 2018-01-21)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "notes": "INSERTED FOR SITE PROFILE DATED 2017-06-03 (described on Site Profile dated 2017-06-03)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], "parcelDescriptions": [ { - "siteRegistry": true, - "dateNoted": "2015-04-18", - "parcelID": "17306", - "crownLandUsePIN": "17928", - "crownLandFileNumber": "18666", - "landDescription": "LOT 2 OF LOT 3 BLOCK 4 DISTRICT LOT 4 PLAN 7468" + "uuid": "b97afa9a-26e2-48b2-8c06-45d2fe283252", + "siteRegistry": false, + "dateNoted": "2022-05-18", + "parcelID": "19323", + "crownLandUsePIN": "20612", + "crownLandFileNumber": "16653", + "landDescription": "LOT 2 OF LOT 3 BLOCK 4 DISTRICT LOT 5 PLAN 4567" }, { + "uuid": "cf8f1eab-8b6a-4d28-a026-65c962edbbb9", "siteRegistry": true, - "dateNoted": "2017-11-07", - "parcelID": "16553", - "crownLandUsePIN": "17919", - "crownLandFileNumber": "16732", - "landDescription": "LOT 3 OF LOT 5 BLOCK 5 DISTRICT LOT 5 PLAN 8896" + "dateNoted": "2014-06-12", + "parcelID": "17728", + "crownLandUsePIN": "16138", + "crownLandFileNumber": "20538", + "landDescription": "LOT 3 OF LOT 4 BLOCK 1 DISTRICT LOT 1 PLAN 7955" }, { + "uuid": "e526ab32-d744-4374-a133-706ba73f97c5", "siteRegistry": false, - "dateNoted": "2016-11-06", - "parcelID": "18443", - "crownLandUsePIN": "20705", - "crownLandFileNumber": "18793", - "landDescription": "LOT 1 OF LOT 3 BLOCK 4 DISTRICT LOT 4 PLAN 5168" + "dateNoted": "2023-04-25", + "parcelID": "19846", + "crownLandUsePIN": "19972", + "crownLandFileNumber": "15300", + "landDescription": "LOT 1 OF LOT 1 BLOCK 1 DISTRICT LOT 2 PLAN 5413" + }, + { + "uuid": "c2412993-3b79-412f-8c7e-bfd8b4d6d1ab", + "siteRegistry": false, + "dateNoted": "2021-03-02", + "parcelID": "17131", + "crownLandUsePIN": "16675", + "crownLandFileNumber": "17050", + "landDescription": "LOT 5 OF LOT 5 BLOCK 4 DISTRICT LOT 1 PLAN 4938" }, { + "uuid": "6a721b76-243c-4bc2-9914-e19a4321f47d", "siteRegistry": true, - "dateNoted": "2016-05-22", - "parcelID": "16031", - "crownLandUsePIN": "18685", - "crownLandFileNumber": "17579", - "landDescription": "LOT 2 OF LOT 3 BLOCK 5 DISTRICT LOT 3 PLAN 6015" + "dateNoted": "2020-10-01", + "parcelID": "19521", + "crownLandUsePIN": "15818", + "crownLandFileNumber": "19530", + "landDescription": "LOT 2 OF LOT 4 BLOCK 2 DISTRICT LOT 5 PLAN 4877" } ], "siteDisclosures": [ { - "siteRegistry": true, - "dateReceived": "2015-09-19", - "dateCompleted": "2014-03-24", - "dateEntered": "2023-05-12", - "dateRegistrar": "2015-04-10", - "dateLocalAuthorityReceived": "2022-09-02", - "summary": "Modi explicabo quod veritatis non a laboriosam nemo cum id.\nExplicabo dolorem veritatis quod ea explicabo iusto.", - "informationUsed": "Cum magni rem.\nOptio nisi enim ad tempore debitis.\nConsectetur enim ut repudiandae temporibus et reprehenderit aspernatur a.", - "pastOrPresentOrders": "Sed accusamus molestiae explicabo eligendi maiores at.", + "uuid": "8e5d1907-72a0-4778-9f0c-d30fb3ac2b6d", + "siteRegistry": false, + "dateReceived": "2023-03-15", + "dateCompleted": "2016-02-13", + "dateEntered": "2022-11-13", + "dateRegistrar": "2021-06-11", + "dateLocalAuthorityReceived": "2015-10-06", + "summary": "Sit voluptates provident culpa ducimus eius molestias non.\nQuae tempore at.", + "informationUsed": "Magnam repellat odio placeat odit ex eum eveniet quia rem.\nQuaerat sapiente minima ab blanditiis recusandae.\nVel commodi unde veniam tempore illum aspernatur.\nIncidunt quibusdam quod illo libero illum earum.", + "pastOrPresentOrders": "Dignissimos eius atque fuga deserunt quia a.\nEt deleniti ipsum culpa itaque accusantium.", "commercialAndIndustrialPurposes": [ { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false + "uuid": "5ecd523d-ee63-4b64-875f-1f0370799244", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true }, { + "uuid": "c6333167-06e0-4200-a8e6-2a1eaacbbf5b", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false - }, - { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true } ] } ], "activityLog": [ { + "uuid": "3233eb5e-4dc7-4087-971e-18c36744c451", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "SCHOWALTER CHRISTOPHER", - "timestamp": "2019-02-12" + "user": "SHIELDS CHEYANNE", + "timestamp": "2015-06-22" }, { - "siteRegistry": true, + "uuid": "5a2c17ba-53fd-4124-82fa-d13456424ed3", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "DIBBERT FRANZ", - "timestamp": "2023-09-02" + "user": "DOOLEY KANE", + "timestamp": "2022-06-01" }, { - "siteRegistry": true, + "uuid": "09a7505c-9f11-4041-8769-1d9f60354320", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "ARMSTRONG KELLEY", - "timestamp": "2017-05-05" + "user": "DIETRICH GLENDA", + "timestamp": "2021-12-21" }, { - "siteRegistry": false, + "uuid": "b2da03f3-e484-4689-ac31-795010ca7a68", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "CONNELLY NYAH", - "timestamp": "2023-07-07" + "user": "CRONIN GREGORIO", + "timestamp": "2020-02-10" }, { + "uuid": "9bfba3ec-7525-48dd-be41-24114a569194", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "REICHERT-BEDNAR JAZLYN", - "timestamp": "2015-10-17" + "user": "HERMAN CASSANDRA", + "timestamp": "2021-04-13" }, { - "siteRegistry": false, + "uuid": "26dd0c03-6333-4889-8e08-372dbae0645c", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "ZEMLAK KENDALL", - "timestamp": "2020-01-24" + "user": "MURAZIK ISIDRO", + "timestamp": "2016-02-12" } ], "associatedSites": [ { - "dateNoted": "2016-03-24", + "uuid": "fd377dbe-25d4-44bd-84a5-1fb2a36f426d", + "dateNoted": "2019-10-08", "notes": "", - "parcelID": "20895", - "siteID": "19235", - "siteRegistry": true + "parcelID": "20341", + "siteID": "19716", + "siteRegistry": false } ] }, { - "uuid": "33dc804c-a195-4420-a9f0-18ced48a47c7", - "siteID": 15758, - "address": "9856 Sanford Mount", - "latitude": 51.1592, - "longitude": -121.3721, - "lastUpdated": "2021-12-18", - "city": "South Tatumburgh", - "region": "Cariboo", - "victoriaFile": "26250-20/5161", + "uuid": "e20610f9-8e54-4c40-9e0a-74120f8a287a", + "siteID": 18096, + "address": "9307 Carroll Dale", + "latitude": 48.2518, + "longitude": -138.6792, + "lastUpdated": "2017-05-24", + "city": "Kylacester", + "region": "Kootenay", + "victoriaFile": "26250-20/4403", "regionalFile": "N/A", "parcelIDs": [ - 2905109, - 4839786, - 2719106, - 6221631, - 6293669 + 5237086, + 7764510, + 4633732, + 3586353, + 785623 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2014-02-15", - "completed": "2014-03-01", - "initiated": "2020-12-18", - "ministryContact": "JACOBI LORNA", + "uuid": "854c6ad5-f3dc-4c17-a30c-067580456404", + "createdAt": "2016-05-08", + "completed": "2015-07-28", + "initiated": "2023-02-24", + "ministryContact": "KONOPELSKI LUDIE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -47038,22 +54532,32 @@ ], "notationParticipants": [ { + "uuid": "c6c579d8-e8d7-46cc-a71f-1628adb11639", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "uuid": "4ba07dde-9127-4f7f-865f-bd50ad7446a2", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { + "uuid": "4d738480-567a-4ad8-83b8-7a05032d094f", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "uuid": "74f78c0f-8667-483c-8051-ae473afbc590", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", + "uuid": "343ea554-acbf-4b6e-8fc1-a2e291f5a6c3", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false } @@ -47061,10 +54565,11 @@ "siteRegistry": false }, { - "createdAt": "2020-06-22", - "completed": "2016-03-25", - "initiated": "2014-08-10", - "ministryContact": "GOYETTE CLYDE", + "uuid": "362c042f-3df4-464d-a62a-cc8684ff3e65", + "createdAt": "2017-09-08", + "completed": "2023-08-29", + "initiated": "2014-05-20", + "ministryContact": "CUMMINGS LIZA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -47073,23 +54578,38 @@ ], "notationParticipants": [ { + "uuid": "502d5ff2-8bed-4b0f-99d3-a246e6f7edde", "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "0000f99c-cb89-4f76-aa46-3daa305ae34a", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true }, { + "uuid": "997b60fe-3892-4d15-bc56-31d079de87ec", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": true + }, + { + "uuid": "e41ba0ee-b9fa-4b1d-928a-f2aad2514322", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2021-02-13", - "completed": "2014-06-14", - "initiated": "2018-07-08", - "ministryContact": "GLEICHNER REBEKAH", + "uuid": "1ada49eb-7202-4d8d-aca3-186ce31e7cbb", + "createdAt": "2021-12-10", + "completed": "2016-02-15", + "initiated": "2020-06-23", + "ministryContact": "BAUMBACH DANIKA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -47098,33 +54618,78 @@ ], "notationParticipants": [ { + "uuid": "efdd489d-1325-468d-aa46-f659e4757aa1", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true }, { + "uuid": "45e802be-7719-4674-bfd3-35f67b34ec18", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "uuid": "413fc1ce-ce6c-4734-968e-0bf62cc1247e", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true }, { + "uuid": "4cc0bfa6-b4f5-4028-94b9-ac41da71a3f5", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "uuid": "51e1c1d4-c5a7-498c-8879-26e521709898", + "createdAt": "2023-02-21", + "completed": "2022-07-20", + "initiated": "2021-01-18", + "ministryContact": "STEHR CARLOS", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "uuid": "08302154-649e-4882-8c9a-d89e2061d81c", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "uuid": "1d5698b2-030d-401b-ad23-a56e7ce83536", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "uuid": "ca6027f6-5fcf-4468-8ecc-b5b173a935de", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", "siteRegistry": true }, { + "uuid": "4e0d5ab2-7592-43d0-b474-e035379a45c1", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true } ], "siteRegistry": false }, { - "createdAt": "2021-06-24", - "completed": "2020-09-12", - "initiated": "2021-11-04", - "ministryContact": "STOKES TAMIA", + "uuid": "a1dee369-ae3f-4475-a6e0-391c63075d1b", + "createdAt": "2022-01-24", + "completed": "2021-10-09", + "initiated": "2018-11-01", + "ministryContact": "LABADIE GEOFFREY", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -47133,18 +54698,27 @@ ], "notationParticipants": [ { + "uuid": "c9126666-d7f1-4b2a-bde1-f19323fd2740", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "7f31b8df-98bc-4ba3-8228-61638a72a1b7", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true }, { + "uuid": "e3dacc63-ad6f-4a1b-8905-35081bded0b6", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "uuid": "a7d21dfd-86aa-4a7e-813e-3291f5399f36", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": true } ], @@ -47153,103 +54727,138 @@ ], "participants": [ { - "name": "IPSUM", - "endDate": "2021-02-04", - "startDate": "2023-09-07", + "uuid": "fd5706d2-ce9a-4d26-8c90-40dcd34b6c5b", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2018-05-03", + "startDate": "2018-06-21", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2020-01-01", - "startDate": "2016-03-05", + "uuid": "5ee5388b-e6af-46fd-9c01-48f63fcd7a9b", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2019-03-12", + "startDate": "2018-03-07", "notes": "", "roles": [ "ORGANIZATION" ], + "siteRegistry": true + }, + { + "uuid": "6dc7debf-1454-403d-9f6d-5196a436a8d3", + "name": "AMET, DOLOR SIT", + "endDate": "2019-03-13", + "startDate": "2021-01-25", + "notes": "", + "roles": [ + "EMPLOYEE" + ], "siteRegistry": false + }, + { + "uuid": "f38375ac-dba1-4303-8e88-41fe103a15df", + "name": "AMET, DOLOR SIT", + "endDate": "2016-12-14", + "startDate": "2021-02-02", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true } ], "suspectLandUses": [ { + "uuid": "81dbb63a-b200-4588-8f89-e26b96ba47ef", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2023-06-29 (described on Site Profile dated 2023-06-29)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "notes": "INSERTED FOR SITE PROFILE DATED 2018-03-17 (described on Site Profile dated 2018-03-17)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { + "uuid": "72e31b11-ff73-4a70-b72a-bfba4393ed50", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-11-21 (described on Site Profile dated 2022-11-21)", + "notes": "INSERTED FOR SITE PROFILE DATED 2014-04-28 (described on Site Profile dated 2014-04-28)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], "parcelDescriptions": [ { + "uuid": "25bcf1b5-d4bf-450c-82c2-79624877534f", "siteRegistry": true, - "dateNoted": "2022-06-15", - "parcelID": "19888", - "crownLandUsePIN": "17855", - "crownLandFileNumber": "20305", - "landDescription": "LOT 2 OF LOT 4 BLOCK 4 DISTRICT LOT 2 PLAN 4914" + "dateNoted": "2014-02-21", + "parcelID": "15599", + "crownLandUsePIN": "17564", + "crownLandFileNumber": "19521", + "landDescription": "LOT 2 OF LOT 4 BLOCK 3 DISTRICT LOT 5 PLAN 7416" }, { - "siteRegistry": false, - "dateNoted": "2018-08-29", - "parcelID": "15522", - "crownLandUsePIN": "19244", - "crownLandFileNumber": "16072", - "landDescription": "LOT 2 OF LOT 1 BLOCK 4 DISTRICT LOT 2 PLAN 8724" + "uuid": "b576817d-d447-4424-b73c-122b56b3a963", + "siteRegistry": true, + "dateNoted": "2016-10-20", + "parcelID": "15493", + "crownLandUsePIN": "18081", + "crownLandFileNumber": "16900", + "landDescription": "LOT 5 OF LOT 3 BLOCK 4 DISTRICT LOT 5 PLAN 6578" }, { - "siteRegistry": true, - "dateNoted": "2014-11-15", - "parcelID": "20904", - "crownLandUsePIN": "20414", - "crownLandFileNumber": "15955", - "landDescription": "LOT 3 OF LOT 3 BLOCK 2 DISTRICT LOT 3 PLAN 9760" + "uuid": "c045eb96-6d3a-4b85-a203-28b04f0532ee", + "siteRegistry": false, + "dateNoted": "2021-01-21", + "parcelID": "18800", + "crownLandUsePIN": "18128", + "crownLandFileNumber": "15386", + "landDescription": "LOT 5 OF LOT 4 BLOCK 3 DISTRICT LOT 1 PLAN 3024" }, { + "uuid": "fdf5b402-c39e-4939-82de-d551f724c5fb", "siteRegistry": true, - "dateNoted": "2016-06-04", - "parcelID": "19679", - "crownLandUsePIN": "19506", - "crownLandFileNumber": "17207", - "landDescription": "LOT 1 OF LOT 5 BLOCK 1 DISTRICT LOT 1 PLAN 9030" + "dateNoted": "2018-06-08", + "parcelID": "17640", + "crownLandUsePIN": "17773", + "crownLandFileNumber": "15495", + "landDescription": "LOT 3 OF LOT 2 BLOCK 2 DISTRICT LOT 1 PLAN 9672" }, { - "siteRegistry": false, - "dateNoted": "2016-01-03", - "parcelID": "17031", - "crownLandUsePIN": "18082", - "crownLandFileNumber": "19839", - "landDescription": "LOT 1 OF LOT 5 BLOCK 4 DISTRICT LOT 1 PLAN 8838" + "uuid": "4c4f8ad8-063b-423d-a2c1-81df58544214", + "siteRegistry": true, + "dateNoted": "2015-12-26", + "parcelID": "19803", + "crownLandUsePIN": "15873", + "crownLandFileNumber": "19750", + "landDescription": "LOT 5 OF LOT 1 BLOCK 2 DISTRICT LOT 5 PLAN 9141" } ], "siteDisclosures": [ { + "uuid": "ec8c5c3a-2d24-4000-b9d6-c5887f477f51", "siteRegistry": false, - "dateReceived": "2023-01-24", - "dateCompleted": "2018-01-05", - "dateEntered": "2019-06-23", - "dateRegistrar": "2022-10-17", - "dateLocalAuthorityReceived": "2023-09-20", - "summary": "Commodi deserunt exercitationem incidunt consequuntur quod odit.", - "informationUsed": "Similique minima harum maxime quod fugit perspiciatis odio sunt.\nCommodi ullam ab ab ea laudantium magnam ducimus cumque.\nExpedita doloribus eius tempore.\nItaque id quis cumque est deleniti.\nNesciunt tempore eius minus minima numquam inventore numquam deleniti rem.", - "pastOrPresentOrders": "Maiores excepturi similique natus iusto dolore similique aliquid quaerat dicta.\nAut culpa illum rerum sint dolores quasi blanditiis.", + "dateReceived": "2016-11-15", + "dateCompleted": "2019-08-16", + "dateEntered": "2013-12-30", + "dateRegistrar": "2018-12-25", + "dateLocalAuthorityReceived": "2014-09-07", + "summary": "Explicabo nostrum numquam fugiat ducimus et eius.\nHic beatae nihil eos rem qui.\nEarum ex provident.", + "informationUsed": "Laboriosam repellendus perspiciatis id.\nNecessitatibus consequatur magni.\nSuscipit quis aut veniam accusamus consectetur.", + "pastOrPresentOrders": "Odio eos dolore facilis maiores.", "commercialAndIndustrialPurposes": [ { - "scheduleReference": "F1*", + "uuid": "6344a9cb-28fc-4762-8470-72d722bb4c64", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true + "siteRegistry": false }, { + "uuid": "7373e8fb-bd3e-41b6-b52d-101a1cbb16ab", "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false }, { + "uuid": "fd6f0341-1cb5-40a2-b71a-993f956af0c9", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true @@ -47257,32 +54866,37 @@ ] }, { + "uuid": "712b8c3f-e690-4ace-8092-76d98bde1025", "siteRegistry": false, - "dateReceived": "2016-06-01", - "dateCompleted": "2018-04-29", - "dateEntered": "2019-04-20", - "dateRegistrar": "2019-08-02", - "dateLocalAuthorityReceived": "2020-06-26", - "summary": "Dolor illo assumenda ab fuga aut cumque.\nLaboriosam quam eveniet quibusdam sit eaque voluptatem aspernatur facere provident.\nEnim sequi impedit.", - "informationUsed": "Voluptatibus ex error dolore.\nAdipisci molestiae laudantium suscipit dolores amet hic ea laboriosam hic.\nLaudantium rem impedit totam.\nTotam vitae ex iusto vero maxime aperiam.", - "pastOrPresentOrders": "Aliquam optio unde cum unde.\nCupiditate magni atque molestias est quibusdam aperiam placeat facilis.\nAdipisci nostrum unde nihil quo.", + "dateReceived": "2023-01-11", + "dateCompleted": "2014-07-26", + "dateEntered": "2015-02-20", + "dateRegistrar": "2016-11-05", + "dateLocalAuthorityReceived": "2023-07-01", + "summary": "Voluptates eaque consectetur nisi assumenda quibusdam adipisci dignissimos earum minima.", + "informationUsed": "Veritatis quae occaecati ipsa.\nCorrupti officiis ipsum iusto fugit dolorem quisquam.\nDolor vel doloribus sapiente porro ipsam animi.\nVoluptatem laudantium necessitatibus inventore itaque nam molestias.\nVoluptas cum non molestias necessitatibus.", + "pastOrPresentOrders": "Excepturi exercitationem modi illum.", "commercialAndIndustrialPurposes": [ { + "uuid": "e264e242-204b-4242-920b-20b7fbdff421", "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false + "uuid": "1f64e32d-a92a-4120-93ea-9fe85175c90e", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true }, { - "scheduleReference": "F1*", + "uuid": "d66b28cd-14f2-4bdd-8669-75985c95325d", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { + "uuid": "a5d35af1-77d2-4cf6-9a71-e0ca5807680b", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true @@ -47292,101 +54906,107 @@ ], "activityLog": [ { + "uuid": "fccd83db-fa78-4002-af34-5fea7baeacaf", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "BAYER-MOSCISKI CELESTINE", - "timestamp": "2021-04-03" + "user": "ANKUNDING EMERSON", + "timestamp": "2015-12-15" }, { - "siteRegistry": false, + "uuid": "4c9ec8f3-802b-4e9a-8e55-5a7b5a9bcb94", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "MURAZIK WARD", - "timestamp": "2016-12-14" + "user": "TILLMAN EASTON", + "timestamp": "2014-07-21" }, { + "uuid": "32c9ee54-3ece-4f6c-8392-949f3bcd327f", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "KEELING TRISTON", - "timestamp": "2021-07-03" - }, - { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "KUHN CARLI", - "timestamp": "2014-09-15" + "user": "KEELING LOWELL", + "timestamp": "2022-04-25" }, { + "uuid": "5732cbd9-1afc-481f-b08f-62793def0246", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "BINS HERMANN", - "timestamp": "2019-05-19" + "user": "POLLICH MEREDITH", + "timestamp": "2014-01-30" }, { - "siteRegistry": true, + "uuid": "fe0a304a-1f92-4451-920c-74e229117afc", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "LEBSACK GODFREY", - "timestamp": "2016-07-15" + "user": "WEISSNAT BRIDGET", + "timestamp": "2017-12-07" }, { + "uuid": "a2a04859-8013-476e-a6f7-1117d13228a0", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "FAY CHARLIE", - "timestamp": "2020-09-18" - }, - { - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "SCHIMMEL ARYANNA", - "timestamp": "2018-10-10" + "user": "RITCHIE SAUL", + "timestamp": "2015-07-19" }, { + "uuid": "c557ce00-f7eb-423a-8a24-5a73c17712f3", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "FRANEY CHRISTA", - "timestamp": "2023-07-28" + "user": "STOLTENBERG-GUTMANN PASQUALE", + "timestamp": "2018-01-19" }, { + "uuid": "ed0dcf30-a3dc-4ecf-bfcd-99455e28183c", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "SPINKA ALANNA", - "timestamp": "2018-01-10" + "user": "VOLKMAN RODRICK", + "timestamp": "2019-07-18" } ], "associatedSites": [ { - "dateNoted": "2018-09-08", + "uuid": "a8edae85-45fe-47a7-aabc-df757f9a48b2", + "dateNoted": "2018-10-29", "notes": "", - "parcelID": "15257", - "siteID": "19608", + "parcelID": "15597", + "siteID": "18183", "siteRegistry": true + }, + { + "uuid": "49ad7fd6-3a08-4622-bdc3-39686d943363", + "dateNoted": "2014-03-02", + "notes": "", + "parcelID": "19558", + "siteID": "20362", + "siteRegistry": false } ] }, { - "uuid": "9c3c9185-236a-46c3-a4c8-e371fbccef74", - "siteID": 20388, - "address": "335 Rau Terrace", - "latitude": 49.6902, - "longitude": -130.8813, - "lastUpdated": "2023-08-14", - "city": "New Maceyton", - "region": " North Coast", - "victoriaFile": "26250-20/5221", + "uuid": "0b8f555c-cf08-425d-9229-1d94ca8a624c", + "siteID": 20395, + "address": "92228 Ari Path", + "latitude": 57.8696, + "longitude": -138.8594, + "lastUpdated": "2019-01-18", + "city": "Zulastead", + "region": "Vancouver Island/Coast", + "victoriaFile": "26250-20/12340", "regionalFile": "N/A", "parcelIDs": [ - 5095094, - 4505167, - 1384300, - 6774792, - 5297460 + 5887311, + 6010371, + 1264500, + 3289123, + 1719999 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2014-05-11", - "completed": "2019-08-14", - "initiated": "2020-08-01", - "ministryContact": "CRONA ELDON", + "uuid": "7d03d310-b544-4cf6-89b6-b0801b3e0fd6", + "createdAt": "2020-08-07", + "completed": "2020-05-16", + "initiated": "2015-06-23", + "ministryContact": "BARROWS CRYSTAL", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -47395,63 +55015,38 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "c1f6c686-d481-43b0-a02c-bbefe08fc89c", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { + "uuid": "b650a282-f62a-4859-824f-fa9efd8e9c28", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false - } - ], - "siteRegistry": false - }, - { - "createdAt": "2022-07-11", - "completed": "2017-02-14", - "initiated": "2018-09-09", - "ministryContact": "PACOCHA TERENCE", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true }, { + "uuid": "cfd185bb-2db6-4dbf-be10-dbe23e21eadb", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { + "uuid": "885f52a5-357a-4975-a12b-85026e19056d", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false + "role": "SUBMITTED BY", + "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2023-04-10", - "completed": "2018-07-04", - "initiated": "2020-04-02", - "ministryContact": "JOHNS JUNIOR", + "uuid": "43ef79da-c29e-42d1-914e-2e7724bbb522", + "createdAt": "2020-01-26", + "completed": "2014-06-29", + "initiated": "2021-03-22", + "ministryContact": "CONN MAFALDA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -47460,64 +55055,28 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "453ebd87-779d-4b4b-ae72-7c8e6666a00e", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false }, { + "uuid": "0116c825-9e28-4e13-b085-502c7b4d9ffd", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true }, { + "uuid": "e2cd01e7-4fa1-42fe-86f6-96e95ff9ad03", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - } - ], - "siteRegistry": true - }, - { - "createdAt": "2018-11-10", - "completed": "2018-12-16", - "initiated": "2018-10-28", - "ministryContact": "SCHAEFER MATT", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { + "uuid": "8eb33aa3-f5f0-47a1-8e0d-3b7241bd97e1", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false } ], "siteRegistry": true @@ -47525,9 +55084,10 @@ ], "participants": [ { + "uuid": "9c6c644e-3734-422c-8ab4-0e220bdefbbe", "name": "AMET, DOLOR SIT", - "endDate": "2014-01-28", - "startDate": "2019-09-08", + "endDate": "2019-02-13", + "startDate": "2018-11-29", "notes": "", "roles": [ "EMPLOYEE" @@ -47535,19 +55095,10 @@ "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2013-12-25", - "startDate": "2016-06-14", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2016-05-27", - "startDate": "2020-05-16", + "uuid": "24507963-74fe-4356-8ccf-ba6f31195022", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2014-10-29", + "startDate": "2014-10-08", "notes": "", "roles": [ "EMPLOYEE" @@ -47555,103 +55106,123 @@ "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2018-11-22", - "startDate": "2014-01-08", + "uuid": "36012127-5e70-4e0e-9917-b88083f0ba4b", + "name": "AMET, DOLOR SIT", + "endDate": "2022-02-02", + "startDate": "2022-10-05", "notes": "", "roles": [ "EMPLOYEE" ], "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2014-10-11", - "startDate": "2023-07-22", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": true } ], "suspectLandUses": [ { + "uuid": "2887bdc9-d13d-44af-a801-bab59eebd199", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-06-05 (described on Site Profile dated 2017-06-05)", + "notes": "INSERTED FOR SITE PROFILE DATED 2014-07-31 (described on Site Profile dated 2014-07-31)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { + "uuid": "a5a30a2f-dc66-4c65-932a-c5b35aafc4ca", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-11-25 (described on Site Profile dated 2018-11-25)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "notes": "INSERTED FOR SITE PROFILE DATED 2022-08-28 (described on Site Profile dated 2022-08-28)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "uuid": "b8bf61e3-586a-4db0-829b-e1a9c15870f7", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2017-06-08 (described on Site Profile dated 2017-06-08)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "uuid": "74ef2670-e210-4b27-967c-784d19343041", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2017-07-13 (described on Site Profile dated 2017-07-13)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], "parcelDescriptions": [ { + "uuid": "350e0749-7552-4637-ae36-2f6afbfd3fb4", "siteRegistry": false, - "dateNoted": "2015-07-30", - "parcelID": "16934", - "crownLandUsePIN": "19613", - "crownLandFileNumber": "19638", - "landDescription": "LOT 2 OF LOT 5 BLOCK 4 DISTRICT LOT 5 PLAN 4616" + "dateNoted": "2021-03-07", + "parcelID": "20576", + "crownLandUsePIN": "20168", + "crownLandFileNumber": "19852", + "landDescription": "LOT 2 OF LOT 4 BLOCK 1 DISTRICT LOT 2 PLAN 6815" }, { + "uuid": "75f9d3a5-6f03-40cb-befa-840f6a8f8f53", "siteRegistry": true, - "dateNoted": "2016-01-01", - "parcelID": "15927", - "crownLandUsePIN": "20735", - "crownLandFileNumber": "18065", - "landDescription": "LOT 3 OF LOT 4 BLOCK 2 DISTRICT LOT 4 PLAN 6831" + "dateNoted": "2014-12-12", + "parcelID": "16842", + "crownLandUsePIN": "20325", + "crownLandFileNumber": "19831", + "landDescription": "LOT 4 OF LOT 2 BLOCK 3 DISTRICT LOT 3 PLAN 6827" }, { + "uuid": "e60fecf3-2c49-4a45-b9d1-53290076ad4b", "siteRegistry": false, - "dateNoted": "2014-08-24", - "parcelID": "17374", - "crownLandUsePIN": "18447", - "crownLandFileNumber": "17728", - "landDescription": "LOT 2 OF LOT 2 BLOCK 3 DISTRICT LOT 1 PLAN 5780" + "dateNoted": "2023-02-03", + "parcelID": "20463", + "crownLandUsePIN": "20317", + "crownLandFileNumber": "20132", + "landDescription": "LOT 1 OF LOT 4 BLOCK 3 DISTRICT LOT 4 PLAN 4584" }, { - "siteRegistry": true, - "dateNoted": "2020-03-15", - "parcelID": "19059", - "crownLandUsePIN": "17755", - "crownLandFileNumber": "19299", - "landDescription": "LOT 1 OF LOT 5 BLOCK 2 DISTRICT LOT 2 PLAN 5293" + "uuid": "8173ee62-4084-4c95-aec4-9d644d22d13c", + "siteRegistry": false, + "dateNoted": "2018-01-21", + "parcelID": "20639", + "crownLandUsePIN": "15533", + "crownLandFileNumber": "15537", + "landDescription": "LOT 4 OF LOT 4 BLOCK 2 DISTRICT LOT 4 PLAN 8185" }, { + "uuid": "c4230385-a5a4-465f-85b2-96ec527f6e5b", "siteRegistry": false, - "dateNoted": "2019-08-28", - "parcelID": "17170", - "crownLandUsePIN": "16404", - "crownLandFileNumber": "18024", - "landDescription": "LOT 4 OF LOT 3 BLOCK 1 DISTRICT LOT 1 PLAN 6309" + "dateNoted": "2016-03-27", + "parcelID": "20384", + "crownLandUsePIN": "18609", + "crownLandFileNumber": "17104", + "landDescription": "LOT 1 OF LOT 2 BLOCK 1 DISTRICT LOT 4 PLAN 8201" } ], "siteDisclosures": [ { + "uuid": "015f3ff6-5bce-41b3-867f-5f28bdea8f5a", "siteRegistry": false, - "dateReceived": "2023-05-14", - "dateCompleted": "2019-05-31", - "dateEntered": "2019-10-25", - "dateRegistrar": "2021-03-24", - "dateLocalAuthorityReceived": "2022-05-30", - "summary": "Cumque sunt odit fugiat.\nEligendi harum distinctio delectus architecto molestiae et.", - "informationUsed": "Porro iusto quisquam laborum non assumenda.\nSimilique debitis ab dolores animi harum laborum.\nExplicabo itaque non quis impedit laboriosam sunt fuga ab.\nImpedit magni velit quod eveniet in nihil.\nDeleniti esse minus libero quae temporibus vitae delectus quod.", - "pastOrPresentOrders": "Reiciendis rem possimus eaque doloribus reiciendis praesentium pariatur.\nDoloribus illum quidem fuga sed reiciendis quos consequuntur.", + "dateReceived": "2019-02-19", + "dateCompleted": "2018-06-20", + "dateEntered": "2015-06-20", + "dateRegistrar": "2013-12-27", + "dateLocalAuthorityReceived": "2018-11-21", + "summary": "Consectetur quaerat dolorem quidem animi repudiandae vel ea dolore.", + "informationUsed": "Aspernatur maiores enim enim dolor est sit debitis nemo.\nNecessitatibus saepe rem magni eos maiores.\nConsectetur tempore est impedit dicta autem in.", + "pastOrPresentOrders": "Suscipit sequi odit corporis asperiores consequuntur quasi.\nExpedita voluptas voluptatibus odio mollitia eaque.", "commercialAndIndustrialPurposes": [ { + "uuid": "cdf8eda5-a487-43fa-9a91-df48754d1494", "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "uuid": "0fff631b-a15d-43dc-9960-38eefece5bfb", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "uuid": "eb3d618f-6a58-4e4b-b1c6-ef68a43e7122", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { + "uuid": "8e9ea863-0843-4ca3-9111-7fede34c5433", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true @@ -47661,108 +55232,106 @@ ], "activityLog": [ { + "uuid": "189127fb-2623-47c5-8e0d-b0f580107183", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "CHAMPLIN NOEMIE", - "timestamp": "2019-09-27" + "user": "CASPER LOGAN", + "timestamp": "2014-07-12" }, { + "uuid": "e8d302ba-c5b9-41d2-a5ea-735476862f72", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "BEAHAN MAYBELL", - "timestamp": "2020-10-29" + "user": "COLLINS CHADD", + "timestamp": "2021-04-21" }, { + "uuid": "ac9a855c-2bc5-49b2-a7be-df74bc6d863d", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "WIEGAND LONDON", - "timestamp": "2023-05-21" + "user": "WHITE MERLE", + "timestamp": "2021-12-31" }, { + "uuid": "a102a889-5ab6-4b65-a29c-2d309c17611a", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "KEEBLER DION", - "timestamp": "2023-05-22" + "user": "VONRUEDEN AIDA", + "timestamp": "2019-12-05" }, { - "siteRegistry": true, + "uuid": "57f8abb6-5f72-4224-b2a6-6d557827a52d", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "WILLIAMSON ROSALIA", - "timestamp": "2020-06-14" + "user": "MCKENZIE HAVEN", + "timestamp": "2019-05-12" }, { - "siteRegistry": true, + "uuid": "9c32efae-6d4a-42e8-bf4e-16da93c02699", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "STAMM TORRANCE", - "timestamp": "2020-12-10" + "user": "WATSICA GREGG", + "timestamp": "2018-05-15" }, { - "siteRegistry": true, + "uuid": "911fdbb6-e9f1-4cc9-997b-dd0750905a50", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "BEDNAR KELLEN", - "timestamp": "2023-01-01" + "user": "ZBONCAK ROBB", + "timestamp": "2017-08-25" }, { + "uuid": "60e39a2d-e5b1-4b1c-b2b9-e360659d82e1", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "WELCH GIOVANNY", - "timestamp": "2021-11-15" - }, - { - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "LANG JARRETT", - "timestamp": "2022-12-30" + "user": "RYAN MITCHELL", + "timestamp": "2023-01-23" }, { + "uuid": "4046f331-d850-44fc-a352-5c6caeda0d8f", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "RODRIGUEZ EMMITT", - "timestamp": "2020-04-09" + "user": "BLOCK SAMMY", + "timestamp": "2015-12-25" } ], "associatedSites": [ { - "dateNoted": "2023-08-06", - "notes": "", - "parcelID": "17158", - "siteID": "20283", - "siteRegistry": false - }, - { - "dateNoted": "2017-01-08", + "uuid": "018f4662-b4f5-4ca2-90f0-f82307d86446", + "dateNoted": "2023-01-22", "notes": "", - "parcelID": "20989", - "siteID": "19593", + "parcelID": "17899", + "siteID": "17608", "siteRegistry": true } ] }, { - "uuid": "449bfb8c-9373-4e07-9949-a311d5eaca34", - "siteID": 20293, - "address": "28030 Zena Wall", - "latitude": 54.2997, - "longitude": -118.8041, - "lastUpdated": "2016-09-01", - "city": "Port Kellieton", - "region": "Vancouver Island/Coast", - "victoriaFile": "26250-20/7123", + "uuid": "535ed476-8b54-4045-8d7f-b3391112a803", + "siteID": 20942, + "address": "5828 Koelpin Key", + "latitude": 57.6529, + "longitude": -132.5273, + "lastUpdated": "2022-11-16", + "city": "Lewisville", + "region": "Mainland/Southwest", + "victoriaFile": "26250-20/19489", "regionalFile": "N/A", "parcelIDs": [ - 7647119, - 5781911, - 4431268, - 1347989, - 6608570 + 4130669, + 8082402, + 368089, + 8873538, + 8060742 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2019-11-09", - "completed": "2020-03-23", - "initiated": "2023-08-11", - "ministryContact": "GRIMES WILHELMINE", + "uuid": "70e7f409-7488-4bba-ba6c-e0c90b4055e8", + "createdAt": "2023-06-06", + "completed": "2017-03-09", + "initiated": "2021-09-10", + "ministryContact": "ZEMLAK KEYSHAWN", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -47771,28 +55340,44 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", + "uuid": "7990adaa-03c7-474e-9ced-244abf52d2c7", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { + "uuid": "615feb97-6595-4d89-9277-75320b2b76f4", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false + }, + { + "uuid": "5cc14632-cd96-485b-a28c-32539fc40f9e", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "1b908e63-9052-471d-acb8-c7d79e93b4fd", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false }, { + "uuid": "9a3627fd-bce6-493e-8367-3d46f864392d", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2019-12-08", - "completed": "2023-01-01", - "initiated": "2019-08-08", - "ministryContact": "D'AMORE EUNICE", + "uuid": "cc6fdf7e-b2e6-43b2-9a2c-7bc304d84415", + "createdAt": "2023-01-28", + "completed": "2019-12-29", + "initiated": "2017-05-12", + "ministryContact": "HILLS CYNTHIA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -47801,38 +55386,44 @@ ], "notationParticipants": [ { + "uuid": "1ebb67c1-9f63-4db1-8d21-76b5ca234308", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true + "uuid": "f1791d94-3abc-48dd-bb99-95089cf940a6", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false }, { + "uuid": "10fcbc28-3a99-4537-a373-5ae24e595acf", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false }, { + "uuid": "92dda4ff-823e-440f-a52d-201ca427de9a", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "baee62e7-686d-4563-92cc-3e03cf3fd3d9", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2018-02-06", - "completed": "2015-12-08", - "initiated": "2013-10-22", - "ministryContact": "LEUSCHKE HAVEN", + "uuid": "3930a05e-835d-4d6b-9990-0a062ba23515", + "createdAt": "2020-11-15", + "completed": "2014-07-14", + "initiated": "2014-04-03", + "ministryContact": "BREKKE SHANIYA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -47841,53 +55432,32 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { + "uuid": "e630b40c-32e8-4224-b789-2d1342bc5c5e", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false - } - ], - "siteRegistry": false - }, - { - "createdAt": "2019-06-08", - "completed": "2018-02-17", - "initiated": "2018-06-07", - "ministryContact": "SCHOWALTER JANIE", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "2d8ad39e-d1eb-4328-be29-61d5563725f4", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true }, { + "uuid": "d33a426e-8090-4a28-83c4-796bd80335b4", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2016-02-27", - "completed": "2021-08-01", - "initiated": "2020-10-25", - "ministryContact": "GERLACH LAVONNE", + "uuid": "cad00725-3a8c-493e-b59f-2fffda8bb259", + "createdAt": "2017-02-25", + "completed": "2018-09-07", + "initiated": "2022-05-17", + "ministryContact": "HANE ALF", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -47896,29 +55466,16 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { + "uuid": "18d4009e-340d-4b1d-9ce4-d15ec6532b65", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false }, { + "uuid": "15a66588-ad6b-4f71-8e4f-35c6a66a1710", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false } ], "siteRegistry": true @@ -47926,19 +55483,10 @@ ], "participants": [ { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2017-11-26", - "startDate": "2022-02-13", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": true - }, - { - "name": "IPSUM", - "endDate": "2021-12-19", - "startDate": "2014-11-29", + "uuid": "af298428-a73f-4dca-a3b5-9eeff4f5e065", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2016-12-01", + "startDate": "2016-06-03", "notes": "", "roles": [ "EMPLOYEE" @@ -47946,93 +55494,102 @@ "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2015-06-29", - "startDate": "2020-07-11", + "uuid": "362853f1-2ea0-42ca-94dd-1a1985ed885b", + "name": "IPSUM", + "endDate": "2022-07-21", + "startDate": "2020-05-29", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": true + "siteRegistry": false } ], "suspectLandUses": [ { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-07-11 (described on Site Profile dated 2022-07-11)", + "uuid": "1ac8a4b8-dd32-4dbb-969f-fded0ee2092a", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2015-11-27 (described on Site Profile dated 2015-11-27)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { + "uuid": "5e6e880d-b2db-4db8-9968-e4e3831226f4", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-11-22 (described on Site Profile dated 2019-11-22)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" - }, - { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-08-14 (described on Site Profile dated 2017-08-14)", + "notes": "INSERTED FOR SITE PROFILE DATED 2022-05-29 (described on Site Profile dated 2022-05-29)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], "parcelDescriptions": [ { - "siteRegistry": false, - "dateNoted": "2023-06-05", - "parcelID": "18625", - "crownLandUsePIN": "16461", - "crownLandFileNumber": "18582", - "landDescription": "LOT 4 OF LOT 4 BLOCK 4 DISTRICT LOT 2 PLAN 8059" + "uuid": "00113c48-15c2-47e0-8453-8b18b265ba85", + "siteRegistry": true, + "dateNoted": "2023-05-18", + "parcelID": "19110", + "crownLandUsePIN": "18729", + "crownLandFileNumber": "18066", + "landDescription": "LOT 5 OF LOT 3 BLOCK 1 DISTRICT LOT 4 PLAN 7313" }, { + "uuid": "07d69ff2-603e-4046-9d27-c44debbe2862", "siteRegistry": false, - "dateNoted": "2015-05-05", - "parcelID": "17202", - "crownLandUsePIN": "17608", - "crownLandFileNumber": "20375", - "landDescription": "LOT 3 OF LOT 1 BLOCK 1 DISTRICT LOT 4 PLAN 4760" - }, - { - "siteRegistry": true, - "dateNoted": "2014-11-01", - "parcelID": "20842", - "crownLandUsePIN": "17158", - "crownLandFileNumber": "16558", - "landDescription": "LOT 4 OF LOT 4 BLOCK 4 DISTRICT LOT 1 PLAN 3175" + "dateNoted": "2016-01-30", + "parcelID": "15353", + "crownLandUsePIN": "18742", + "crownLandFileNumber": "17198", + "landDescription": "LOT 3 OF LOT 3 BLOCK 2 DISTRICT LOT 1 PLAN 3605" }, { + "uuid": "d2c195ed-11b8-4318-91a7-9944f3cf2c30", "siteRegistry": true, - "dateNoted": "2022-10-26", - "parcelID": "19950", - "crownLandUsePIN": "17617", - "crownLandFileNumber": "18715", - "landDescription": "LOT 3 OF LOT 3 BLOCK 1 DISTRICT LOT 5 PLAN 5935" + "dateNoted": "2020-12-15", + "parcelID": "16546", + "crownLandUsePIN": "16897", + "crownLandFileNumber": "20003", + "landDescription": "LOT 3 OF LOT 5 BLOCK 2 DISTRICT LOT 3 PLAN 3776" }, { - "siteRegistry": true, - "dateNoted": "2018-05-15", - "parcelID": "18056", - "crownLandUsePIN": "20555", - "crownLandFileNumber": "15339", - "landDescription": "LOT 4 OF LOT 3 BLOCK 4 DISTRICT LOT 5 PLAN 8543" + "uuid": "51f20898-6ff4-4676-8b32-06392ee0aa68", + "siteRegistry": false, + "dateNoted": "2022-12-24", + "parcelID": "17569", + "crownLandUsePIN": "20845", + "crownLandFileNumber": "19116", + "landDescription": "LOT 5 OF LOT 5 BLOCK 3 DISTRICT LOT 2 PLAN 3739" } ], "siteDisclosures": [ { + "uuid": "a9eb1960-0922-4764-b0a7-cdbf3d251665", "siteRegistry": false, - "dateReceived": "2019-10-24", - "dateCompleted": "2018-07-08", - "dateEntered": "2020-07-11", - "dateRegistrar": "2021-03-26", - "dateLocalAuthorityReceived": "2019-10-29", - "summary": "Molestias ad sint tempore laboriosam maiores.\nMagni natus officiis quia sit ex sapiente sit officia.\nQuidem exercitationem id.", - "informationUsed": "Animi quo excepturi ratione facilis fuga.\nNecessitatibus sunt earum incidunt illum exercitationem.\nDolor voluptatum modi consequatur illum facilis eligendi.\nQui earum beatae ipsum quasi occaecati fugiat.", - "pastOrPresentOrders": "Voluptatibus deserunt nesciunt ab.", + "dateReceived": "2018-06-20", + "dateCompleted": "2020-03-06", + "dateEntered": "2013-12-09", + "dateRegistrar": "2023-05-21", + "dateLocalAuthorityReceived": "2017-06-18", + "summary": "Cum asperiores nulla impedit.\nRepellendus nesciunt placeat ab in tenetur voluptate commodi.", + "informationUsed": "Minus debitis id esse doloremque error voluptates aperiam.\nEveniet cum nam illum esse magni ab.\nEa iste culpa.\nQuod consequatur ducimus aliquam fuga optio.", + "pastOrPresentOrders": "Sit fuga distinctio ratione temporibus iusto libero officiis minus asperiores.", "commercialAndIndustrialPurposes": [ { + "uuid": "ea3a5c17-a111-4dba-81a5-7c176cc1b0fd", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "uuid": "59719899-a38a-4526-aebe-e18c0a7f3f15", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false + "siteRegistry": true }, { + "uuid": "b3c78daa-0e34-4128-abd5-496448cf64bb", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "uuid": "737403ed-abd8-4c56-9c2e-eaa47ceed50d", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true @@ -48042,84 +55599,78 @@ ], "activityLog": [ { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "KLEIN HAILEY", - "timestamp": "2017-07-24" - }, - { - "siteRegistry": true, + "uuid": "e1556bd3-b5c4-41aa-b621-fcdcff2c2053", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "WAELCHI MELISA", - "timestamp": "2020-03-24" + "user": "GREENFELDER MICHALE", + "timestamp": "2019-07-17" }, { - "siteRegistry": true, + "uuid": "b9b86fa4-5dc5-4888-8060-075aaeefd0ec", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "RUECKER-QUIGLEY ELDRED", - "timestamp": "2015-04-25" + "user": "STOKES CYDNEY", + "timestamp": "2021-01-17" }, { + "uuid": "87a430cf-da01-4482-96ef-044b5e7e27d4", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "EFFERTZ AMY", - "timestamp": "2019-01-22" + "user": "SCHNEIDER ABDUL", + "timestamp": "2021-08-11" }, { + "uuid": "96b470bc-60e3-4745-8d86-be14105a9029", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "HESSEL RACHELLE", - "timestamp": "2016-12-24" + "user": "BOGAN GLEN", + "timestamp": "2022-12-13" }, { + "uuid": "73864fd4-e6be-4879-9ff3-7373df7ebe0e", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "TREUTEL SILAS", - "timestamp": "2019-01-03" + "user": "SWANIAWSKI MARIANO", + "timestamp": "2016-01-01" } ], "associatedSites": [ { - "dateNoted": "2016-10-16", - "notes": "", - "parcelID": "17130", - "siteID": "20549", - "siteRegistry": true - }, - { - "dateNoted": "2014-04-14", + "uuid": "e58d5ad3-c49d-43b3-a31b-9ba4fa214323", + "dateNoted": "2023-05-10", "notes": "", - "parcelID": "17050", - "siteID": "20268", - "siteRegistry": true + "parcelID": "17166", + "siteID": "15914", + "siteRegistry": false } ] }, { - "uuid": "52b65a89-6779-4d12-b30d-697c567a733c", - "siteID": 18292, - "address": "8323 Collier Unions", - "latitude": 57.6942, - "longitude": -127.762, - "lastUpdated": "2014-11-06", - "city": "West Niko", - "region": " North Coast", - "victoriaFile": "26250-20/17642", + "uuid": "31846fef-05ec-4f52-be8e-a94c1fa31347", + "siteID": 18760, + "address": "58035 Miller Ranch", + "latitude": 57.8275, + "longitude": -131.1546, + "lastUpdated": "2014-01-28", + "city": "New Chanelleview", + "region": "Mainland/Southwest", + "victoriaFile": "26250-20/7007", "regionalFile": "N/A", "parcelIDs": [ - 6255720, - 6282942, - 6265642, - 6079274, - 3590828 + 5606600, + 6626610, + 9402197, + 504096, + 6659236 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2014-03-24", - "completed": "2014-02-18", - "initiated": "2017-05-24", - "ministryContact": "ROWE ISAIAH", + "uuid": "ea5e0dc9-e427-45f4-9e76-8564e46443ee", + "createdAt": "2021-02-26", + "completed": "2021-08-31", + "initiated": "2022-06-17", + "ministryContact": "ERNSER KENDRA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -48128,28 +55679,44 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "uuid": "5e4c532a-ef77-4d87-a383-bdac845fb7ca", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": true }, { + "uuid": "3d3282e7-3566-47fa-9e3f-2ab65e0c0cd0", "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "eef380b3-9cbc-4ee3-a201-cdd674382b9a", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true }, { + "uuid": "ce1142e1-07fb-44b2-a89c-aa23a4152fe1", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true + }, + { + "uuid": "85cff2de-ac8b-4bfe-9038-a108bdc1b4bc", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false } ], "siteRegistry": false }, { - "createdAt": "2018-01-08", - "completed": "2014-10-31", - "initiated": "2014-09-10", - "ministryContact": "KREIGER DIEGO", + "uuid": "60d9c579-1f4b-4cd7-834e-cad228d51cf0", + "createdAt": "2014-05-21", + "completed": "2018-11-01", + "initiated": "2022-04-20", + "ministryContact": "STROSIN IMANI", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -48158,28 +55725,44 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "uuid": "3483fdfa-799b-4521-a3af-b4d93f98b26e", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "f0977f7a-ff10-4a34-ba12-4e6f1aa76f51", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": true }, { + "uuid": "e7624f25-4bcd-4fba-bb96-59f7a8de082c", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { + "uuid": "2110a9f8-103a-4e2c-845d-00ef49326be3", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": true + }, + { + "uuid": "4546f71c-c3c7-4999-a314-428aa8061838", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false } ], "siteRegistry": false }, { - "createdAt": "2021-10-30", - "completed": "2016-10-10", - "initiated": "2018-01-28", - "ministryContact": "STOKES FRANCO", + "uuid": "f07a5099-8b2f-4f23-be7c-119bff996fb4", + "createdAt": "2016-09-27", + "completed": "2017-10-13", + "initiated": "2014-10-24", + "ministryContact": "KING LENORA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -48188,23 +55771,44 @@ ], "notationParticipants": [ { + "uuid": "1e549534-065c-493a-8b6b-afbd17dd7ab3", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "uuid": "a2942451-b855-4ccd-8323-b9bbd09927a5", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "uuid": "f74c32dd-b308-4073-be1d-28827ee28d60", "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "uuid": "7d077b53-3112-4ffd-95a7-2e7f0b46e039", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true }, { + "uuid": "ecc22b34-ba4a-4ae7-a10e-11bac006fd0e", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2018-04-01", - "completed": "2023-08-06", - "initiated": "2022-06-17", - "ministryContact": "WAELCHI JODY", + "uuid": "ca5f7242-b630-46bf-9c08-5c179ce229be", + "createdAt": "2021-08-30", + "completed": "2021-02-28", + "initiated": "2020-07-29", + "ministryContact": "HACKETT GRAYCE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -48213,29 +55817,62 @@ ], "notationParticipants": [ { + "uuid": "887a7d9f-860a-494e-be91-490d5d840898", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true + "role": "SUBMITTED BY", + "siteRegistry": false }, { + "uuid": "fc5fa64b-cae9-42a9-9304-1deae0890bef", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "uuid": "631b84fa-108d-490e-a8c9-3016cb3700ac", + "createdAt": "2018-02-17", + "completed": "2023-01-05", + "initiated": "2019-09-19", + "ministryContact": "POUROS ANGEL", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "uuid": "503af1ec-7e3c-4612-9a4d-013a6913eff7", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": true }, { + "uuid": "c861c1f9-95ad-47fb-9ebc-cee05d86e6dd", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": true }, { + "uuid": "f3f3cb50-e887-48ed-a44a-b9060b1c09ed", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false + "role": "REQUESTED BY", + "siteRegistry": true }, { + "uuid": "e5ff4764-eb98-4e97-a465-f56304926979", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false + }, + { + "uuid": "0b6597de-4613-43bf-bda0-4adcac8e4e9c", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false } ], "siteRegistry": false @@ -48243,91 +55880,129 @@ ], "participants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2022-09-05", - "startDate": "2017-11-05", + "uuid": "3610f7da-e27e-47b3-af29-3a929a5b44d9", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2021-08-27", + "startDate": "2020-06-17", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false }, { - "name": "IPSUM", - "endDate": "2023-05-17", - "startDate": "2018-12-12", + "uuid": "d54915d7-e18a-4e0a-8ff3-cc58b9dc296c", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2017-03-20", + "startDate": "2014-08-18", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false } ], "suspectLandUses": [ { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-05-08 (described on Site Profile dated 2018-05-08)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "uuid": "fe9e1832-0005-446e-ab27-84362ff00736", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2022-12-22 (described on Site Profile dated 2022-12-22)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { + "uuid": "b880ce48-bc9e-4790-bfab-5ccb006e669f", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-10-29 (described on Site Profile dated 2019-10-29)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "notes": "INSERTED FOR SITE PROFILE DATED 2021-08-26 (described on Site Profile dated 2021-08-26)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { + "uuid": "75b9d903-825b-4072-9bad-56c18f292597", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2020-02-27 (described on Site Profile dated 2020-02-27)", + "notes": "INSERTED FOR SITE PROFILE DATED 2022-03-27 (described on Site Profile dated 2022-03-27)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], "parcelDescriptions": [ { + "uuid": "0cc6364b-fa37-4375-9337-f9ad53884f44", "siteRegistry": false, - "dateNoted": "2021-07-30", - "parcelID": "16040", - "crownLandUsePIN": "20303", - "crownLandFileNumber": "17002", - "landDescription": "LOT 2 OF LOT 2 BLOCK 3 DISTRICT LOT 1 PLAN 8122" + "dateNoted": "2022-06-25", + "parcelID": "16964", + "crownLandUsePIN": "19793", + "crownLandFileNumber": "16477", + "landDescription": "LOT 4 OF LOT 1 BLOCK 1 DISTRICT LOT 3 PLAN 8878" }, { - "siteRegistry": true, - "dateNoted": "2016-07-10", - "parcelID": "16764", - "crownLandUsePIN": "15612", - "crownLandFileNumber": "19290", - "landDescription": "LOT 4 OF LOT 1 BLOCK 4 DISTRICT LOT 2 PLAN 3468" + "uuid": "37ec66f8-563d-4379-a3f3-05609db9705e", + "siteRegistry": false, + "dateNoted": "2023-05-25", + "parcelID": "16605", + "crownLandUsePIN": "18061", + "crownLandFileNumber": "18424", + "landDescription": "LOT 1 OF LOT 2 BLOCK 4 DISTRICT LOT 4 PLAN 6388" } ], "siteDisclosures": [ { + "uuid": "3366ab3c-e16e-48e5-a180-978ca004f487", "siteRegistry": true, - "dateReceived": "2022-10-12", - "dateCompleted": "2023-01-05", - "dateEntered": "2019-01-10", - "dateRegistrar": "2019-02-19", - "dateLocalAuthorityReceived": "2016-02-04", - "summary": "Culpa vitae accusantium fugit labore consequuntur illum dolorem amet nemo.", - "informationUsed": "Non fugit enim qui exercitationem beatae amet.\nConsequuntur veniam non necessitatibus aliquam eum.\nSed quia velit quia.\nCorrupti inventore sint dicta impedit molestiae culpa rem ab ipsam.", - "pastOrPresentOrders": "Libero iusto porro eius doloribus nulla incidunt error.", + "dateReceived": "2015-01-25", + "dateCompleted": "2018-05-07", + "dateEntered": "2022-03-01", + "dateRegistrar": "2018-09-03", + "dateLocalAuthorityReceived": "2019-06-22", + "summary": "Perspiciatis eveniet dicta ut assumenda.", + "informationUsed": "Totam assumenda eum neque fugiat accusamus necessitatibus pariatur.\nRatione corporis et autem deserunt deserunt itaque ea.\nDolor consectetur provident aspernatur odio facilis.\nNatus eligendi veritatis tempora laboriosam quod saepe.\nPerspiciatis enim molestiae officia natus.", + "pastOrPresentOrders": "Consequuntur repudiandae incidunt expedita consectetur dolore sapiente maiores.\nIste animi doloremque eveniet adipisci assumenda commodi blanditiis.\nModi omnis ipsa totam.", "commercialAndIndustrialPurposes": [ { + "uuid": "c69a4f26-f64c-48fc-9531-c943b5d23823", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "uuid": "69f6299f-8c0e-49f2-bf05-89719edce2ac", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "uuid": "69e07889-e300-4cc2-84b7-073a55392700", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "uuid": "65ba99e5-9925-4403-928f-93e28f68e850", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false - }, + } + ] + }, + { + "uuid": "28dffa23-c3c4-4b3c-93a0-f9cddf0019c5", + "siteRegistry": false, + "dateReceived": "2022-03-20", + "dateCompleted": "2014-01-16", + "dateEntered": "2014-08-20", + "dateRegistrar": "2013-11-11", + "dateLocalAuthorityReceived": "2014-06-21", + "summary": "Molestias quam pariatur enim maiores quisquam vero.\nLaboriosam unde sit pariatur quae perferendis ex nisi delectus.\nRem et et laudantium.", + "informationUsed": "Minima cum ratione soluta deleniti fuga quis distinctio libero.\nDolores autem cum explicabo facilis.\nTenetur excepturi eligendi dolor hic quae soluta deserunt placeat.", + "pastOrPresentOrders": "Neque rerum explicabo ut quo natus dignissimos eum explicabo aperiam.\nDolore et minima.", + "commercialAndIndustrialPurposes": [ { + "uuid": "632730de-716c-49c1-a7b5-7c484e22bb5a", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, { + "uuid": "9b2e38ae-de08-4f49-9b14-b3332c076f11", "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true } ] @@ -48335,115 +56010,99 @@ ], "activityLog": [ { - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "CORWIN DAVIN", - "timestamp": "2015-04-04" - }, - { + "uuid": "d57acd41-1a43-4775-86a2-774a7ae80737", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "PARISIAN TERRANCE", - "timestamp": "2023-03-06" + "user": "O'REILLY CLAUDIE", + "timestamp": "2020-10-23" }, { - "siteRegistry": true, + "uuid": "f86fa091-d124-4c41-a2b9-11ff05d32054", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "SKILES ATHENA", - "timestamp": "2016-03-30" + "user": "SAUER EMMALEE", + "timestamp": "2015-07-26" }, { - "siteRegistry": true, + "uuid": "85aaf0d8-20fa-4b7a-ad11-e87059c80a6f", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "BEAHAN ERICH", - "timestamp": "2018-07-22" + "user": "NICOLAS TERESA", + "timestamp": "2020-09-19" }, { - "siteRegistry": false, + "uuid": "b5062d48-a466-4816-82d3-ae522cd2f65e", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "BATZ LEONIE", - "timestamp": "2021-08-11" + "user": "BARROWS JEREMIE", + "timestamp": "2013-12-15" }, { - "siteRegistry": false, + "uuid": "349b0a6d-39ff-4b62-a04b-e0734e047dde", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "PFANNERSTILL MAKENZIE", - "timestamp": "2020-02-28" + "user": "ZEMLAK OWEN", + "timestamp": "2021-11-27" }, { - "siteRegistry": false, + "uuid": "b90fd8ad-d124-40ca-b5cb-cc073831be55", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "WALSH CHADD", - "timestamp": "2018-10-09" + "user": "KSHLERIN ELNA", + "timestamp": "2020-07-27" }, { + "uuid": "a11b682c-d74b-4349-b154-1cc47191c41d", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "LINDGREN GENERAL", - "timestamp": "2018-03-26" + "user": "BOYER GARRISON", + "timestamp": "2016-04-09" }, { + "uuid": "1a4d9a7a-3150-414c-b273-9721127e1a6f", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "NOLAN PAULINE", - "timestamp": "2020-12-17" - }, - { - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "GOYETTE MINERVA", - "timestamp": "2017-04-22" + "user": "OSINSKI-HEATHCOTE BERRY", + "timestamp": "2020-08-01" } ], "associatedSites": [ { - "dateNoted": "2014-05-12", - "notes": "", - "parcelID": "20901", - "siteID": "18529", - "siteRegistry": false - }, - { - "dateNoted": "2019-10-04", + "uuid": "709b396a-8e22-46be-bf4c-87dbda3cf4de", + "dateNoted": "2016-07-24", "notes": "", - "parcelID": "18968", - "siteID": "17116", + "parcelID": "20790", + "siteID": "19572", "siteRegistry": false - }, - { - "dateNoted": "2018-10-07", - "notes": "", - "parcelID": "20158", - "siteID": "20574", - "siteRegistry": true } ] }, { - "uuid": "7a6703aa-c2ad-4e04-bb62-7f359545fa78", - "siteID": 20221, - "address": "41575 Itzel Mountains", - "latitude": 50.6899, - "longitude": -124.5518, - "lastUpdated": "2016-06-29", - "city": "Schinnerchester", - "region": " North Coast", - "victoriaFile": "26250-20/10688", + "uuid": "5809dd6e-eea7-4c54-a2a9-140e75964355", + "siteID": 17172, + "address": "3589 Glover Knolls", + "latitude": 52.5692, + "longitude": -119.7641, + "lastUpdated": "2017-05-23", + "city": "Port Kennedistad", + "region": "Kootenay", + "victoriaFile": "26250-20/6921", "regionalFile": "N/A", "parcelIDs": [ - 2424016, - 6910714, - 2108279, - 8348936, - 9708150 + 3623243, + 9523337, + 5285371, + 6152616, + 4883608 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2017-09-09", - "completed": "2017-09-15", - "initiated": "2016-09-30", - "ministryContact": "SAUER DENIS", + "uuid": "807503fd-23aa-46fd-b27e-6fff3126e465", + "createdAt": "2016-04-04", + "completed": "2016-01-04", + "initiated": "2016-05-29", + "ministryContact": "LANGWORTH DIEGO", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -48452,12 +56111,20 @@ ], "notationParticipants": [ { + "uuid": "95108209-5337-4105-9419-3ebb00a34b72", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "40f6cb4a-2a78-417e-ac9f-b1347be9dd8b", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "72b57d79-43b5-4dc5-839e-c3f216517204", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false } @@ -48465,10 +56132,11 @@ "siteRegistry": true }, { - "createdAt": "2021-09-04", - "completed": "2022-01-06", - "initiated": "2017-07-27", - "ministryContact": "O'KON PINKIE", + "uuid": "1b2e0a8a-9015-4277-ad57-05bf002f9583", + "createdAt": "2021-11-12", + "completed": "2019-06-15", + "initiated": "2022-02-20", + "ministryContact": "JASKOLSKI MIKE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -48477,19 +56145,56 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "48d22782-7656-470e-8ab0-b540fb03a9a4", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true }, { + "uuid": "b946698d-92d9-4de9-9b66-a43428d9dbda", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "uuid": "1c36526e-6f7d-417b-aa5c-50b4faa08397", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "uuid": "02917747-20eb-472e-bacc-3c3c0bba2df5", + "createdAt": "2014-10-27", + "completed": "2019-04-07", + "initiated": "2015-06-02", + "ministryContact": "HARTMANN EVIE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "uuid": "3634ff60-6605-4308-af72-c406ec06a0fa", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true }, { + "uuid": "e9144620-f795-45b1-9993-4825740cb148", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true + }, + { + "uuid": "3f471839-5a73-46e4-8cd2-dec2577a2ffd", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true } ], "siteRegistry": true @@ -48497,29 +56202,10 @@ ], "participants": [ { + "uuid": "89fff29e-7a8d-45c4-952f-1b6abcfc42e7", "name": "IPSUM", - "endDate": "2018-08-25", - "startDate": "2017-11-07", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": false - }, - { - "name": "IPSUM", - "endDate": "2021-04-18", - "startDate": "2020-02-10", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": true - }, - { - "name": "IPSUM", - "endDate": "2021-07-15", - "startDate": "2019-10-11", + "endDate": "2021-11-13", + "startDate": "2018-12-31", "notes": "", "roles": [ "ORGANIZATION" @@ -48527,100 +56213,133 @@ "siteRegistry": false }, { - "name": "AMET, DOLOR SIT", - "endDate": "2015-08-14", - "startDate": "2021-11-16", + "uuid": "48a3203e-4136-4560-9498-c63a206b3aff", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2016-02-12", + "startDate": "2014-02-16", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": false + "siteRegistry": true } ], "suspectLandUses": [ { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2020-05-09 (described on Site Profile dated 2020-05-09)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" - }, - { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-12-16 (described on Site Profile dated 2015-12-16)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" - }, - { + "uuid": "195d1de2-4e45-4275-9d6c-aceaaf923eb2", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-01-09 (described on Site Profile dated 2021-01-09)", + "notes": "INSERTED FOR SITE PROFILE DATED 2018-05-19 (described on Site Profile dated 2018-05-19)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-08-21 (described on Site Profile dated 2017-08-21)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "uuid": "a3ca71f7-6628-4c04-961a-782b29452671", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2021-04-21 (described on Site Profile dated 2021-04-21)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], "parcelDescriptions": [ { - "siteRegistry": false, - "dateNoted": "2019-01-24", - "parcelID": "18495", - "crownLandUsePIN": "20026", - "crownLandFileNumber": "16558", - "landDescription": "LOT 3 OF LOT 4 BLOCK 1 DISTRICT LOT 4 PLAN 8199" - }, - { + "uuid": "d4aed054-ea7d-4773-b208-2fdfafddcf9c", "siteRegistry": true, - "dateNoted": "2022-10-30", - "parcelID": "18807", - "crownLandUsePIN": "16405", - "crownLandFileNumber": "15725", - "landDescription": "LOT 1 OF LOT 2 BLOCK 5 DISTRICT LOT 2 PLAN 5557" + "dateNoted": "2014-12-10", + "parcelID": "17531", + "crownLandUsePIN": "20250", + "crownLandFileNumber": "16589", + "landDescription": "LOT 3 OF LOT 2 BLOCK 1 DISTRICT LOT 2 PLAN 5438" }, { + "uuid": "66e1c21e-2498-4807-8d9e-3083d4945074", "siteRegistry": false, - "dateNoted": "2020-01-03", - "parcelID": "16618", - "crownLandUsePIN": "16138", - "crownLandFileNumber": "15376", - "landDescription": "LOT 5 OF LOT 5 BLOCK 5 DISTRICT LOT 2 PLAN 4465" + "dateNoted": "2013-11-09", + "parcelID": "17549", + "crownLandUsePIN": "17517", + "crownLandFileNumber": "18504", + "landDescription": "LOT 5 OF LOT 1 BLOCK 2 DISTRICT LOT 4 PLAN 4346" }, { + "uuid": "032f777c-1843-4780-8bd6-afc904e80cab", "siteRegistry": false, - "dateNoted": "2019-11-08", - "parcelID": "16012", - "crownLandUsePIN": "18726", - "crownLandFileNumber": "18169", - "landDescription": "LOT 5 OF LOT 1 BLOCK 5 DISTRICT LOT 3 PLAN 9442" + "dateNoted": "2020-09-02", + "parcelID": "17629", + "crownLandUsePIN": "20220", + "crownLandFileNumber": "18641", + "landDescription": "LOT 2 OF LOT 1 BLOCK 4 DISTRICT LOT 4 PLAN 5003" + }, + { + "uuid": "4ae9698e-50df-4a7d-b3e1-09ff24319dc4", + "siteRegistry": true, + "dateNoted": "2019-10-26", + "parcelID": "15693", + "crownLandUsePIN": "19135", + "crownLandFileNumber": "20880", + "landDescription": "LOT 2 OF LOT 1 BLOCK 2 DISTRICT LOT 1 PLAN 7195" }, { + "uuid": "e604dc72-9524-4900-bac0-751ea0732dcf", "siteRegistry": false, - "dateNoted": "2018-05-09", - "parcelID": "18925", - "crownLandUsePIN": "18908", - "crownLandFileNumber": "20567", - "landDescription": "LOT 2 OF LOT 1 BLOCK 3 DISTRICT LOT 5 PLAN 8388" + "dateNoted": "2020-12-07", + "parcelID": "18523", + "crownLandUsePIN": "19409", + "crownLandFileNumber": "15418", + "landDescription": "LOT 1 OF LOT 1 BLOCK 4 DISTRICT LOT 4 PLAN 7372" } ], "siteDisclosures": [ { - "siteRegistry": false, - "dateReceived": "2022-07-09", - "dateCompleted": "2018-04-16", - "dateEntered": "2020-09-17", - "dateRegistrar": "2018-04-09", - "dateLocalAuthorityReceived": "2020-11-10", - "summary": "Eligendi ipsam vero cupiditate quaerat totam.\nVoluptatum accusantium sapiente expedita modi nobis dicta omnis cupiditate.", - "informationUsed": "Blanditiis nihil odit officiis adipisci iure.\nPariatur tempora amet odio quod et facilis sunt.\nFuga quibusdam vero quas.\nEveniet numquam quidem ab molestias.\nCumque sit rerum.", - "pastOrPresentOrders": "Reprehenderit deserunt quos sunt.\nQuaerat reiciendis in rerum deserunt veniam.", + "uuid": "eab0d33a-6680-4d76-b90d-618aa209eb77", + "siteRegistry": true, + "dateReceived": "2019-03-06", + "dateCompleted": "2021-06-26", + "dateEntered": "2023-06-29", + "dateRegistrar": "2014-03-12", + "dateLocalAuthorityReceived": "2021-12-14", + "summary": "Labore natus placeat rerum cupiditate culpa alias at quo.\nOfficiis cumque dolorum qui blanditiis nam laudantium.\nDolorum blanditiis ullam beatae porro cupiditate maxime vel.", + "informationUsed": "Quod at sed.\nIllum nesciunt dolor eligendi nostrum ex laborum eaque.\nDoloribus quae at eos sapiente dignissimos.\nModi consequuntur blanditiis ipsa laudantium laudantium rerum.", + "pastOrPresentOrders": "Eligendi cum officiis ipsam modi dolores necessitatibus tenetur iusto cumque.\nQuaerat ullam cum laborum.", "commercialAndIndustrialPurposes": [ { + "uuid": "b8db4115-b865-4469-a959-c3ef4d3bda9c", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "uuid": "ac6707c8-6aae-4a4a-9924-83007566fe57", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "uuid": "7631bcb2-3355-4fef-ae23-fb6ed8071852", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + } + ] + }, + { + "uuid": "06c1c26c-70fd-4655-aeab-5be868bb742e", + "siteRegistry": true, + "dateReceived": "2013-12-08", + "dateCompleted": "2021-02-28", + "dateEntered": "2016-06-29", + "dateRegistrar": "2022-12-01", + "dateLocalAuthorityReceived": "2019-02-06", + "summary": "Quos quas officiis distinctio.\nNeque accusamus eius veniam quisquam velit id.\nQui nobis sequi eaque quis blanditiis.", + "informationUsed": "Ex numquam nulla veritatis velit nisi architecto tempore beatae.\nTemporibus adipisci illo magnam impedit tempore repellendus cumque aspernatur.\nNobis a numquam eum consequatur amet eligendi soluta error recusandae.", + "pastOrPresentOrders": "Ducimus cumque vero ea vel porro.", + "commercialAndIndustrialPurposes": [ + { + "uuid": "23d0a50f-d38e-4c8b-9d98-ba099d38e594", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "uuid": "f08bdbf3-57c6-442b-87ec-d7c5cee067aa", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false } ] @@ -48628,85 +56347,121 @@ ], "activityLog": [ { - "siteRegistry": true, + "uuid": "df9b775a-07e3-468d-9f2b-6a25cc54a1df", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "HETTINGER ROSEMARY", - "timestamp": "2023-09-19" + "user": "LEUSCHKE GUILLERMO", + "timestamp": "2021-01-17" }, { + "uuid": "65b6cf65-a294-44f1-a15e-5c97ed38d722", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "OSINSKI COOPER", - "timestamp": "2014-11-01" + "user": "NADER ZACHARIAH", + "timestamp": "2014-04-08" + }, + { + "uuid": "fb06f061-2163-4281-b9a6-33b1e87a9985", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "KOEPP KATELIN", + "timestamp": "2018-02-09" }, { + "uuid": "c14ec5d8-fb19-4bb2-a82e-bd32423101ce", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "LANGWORTH KIEL", - "timestamp": "2020-07-07" + "user": "BUCKRIDGE SANTOS", + "timestamp": "2020-03-04" + }, + { + "uuid": "ab56b87f-c4fa-4e89-bff2-f28bbcc8a32a", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "CORMIER EMILY", + "timestamp": "2020-10-03" }, { + "uuid": "8c6ba14f-4c98-431f-a420-62f4fd4eb619", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "HOPPE ALFREDO", - "timestamp": "2018-09-01" + "user": "MAYERT DAWN", + "timestamp": "2022-03-09" }, { + "uuid": "30bdde40-1874-4bf8-b9cd-1f5f8b19b708", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "YUNDT LESLEY", - "timestamp": "2014-01-07" + "user": "MANTE COLLIN", + "timestamp": "2022-09-10" + }, + { + "uuid": "326815a1-0d3d-4367-803e-fe745cd1c952", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "GLEICHNER ADAM", + "timestamp": "2014-01-15" + }, + { + "uuid": "41f5aa36-9134-41ef-9048-e6d35588ed2d", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "HERZOG ANNAMARIE", + "timestamp": "2019-04-24" + }, + { + "uuid": "74840de1-2fbe-4be3-b06d-0dcbfd6ca6fd", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "GREENFELDER KAMILLE", + "timestamp": "2020-11-19" } ], "associatedSites": [ { - "dateNoted": "2022-07-29", + "uuid": "751af32e-d1f5-4ae8-8e1b-8e2df4088a8a", + "dateNoted": "2015-06-19", "notes": "", - "parcelID": "17220", - "siteID": "18281", - "siteRegistry": true + "parcelID": "20451", + "siteID": "16656", + "siteRegistry": false }, { - "dateNoted": "2016-11-05", + "uuid": "be494fdd-d966-46b9-a5a1-77c34d5145bc", + "dateNoted": "2020-03-10", "notes": "", - "parcelID": "17306", - "siteID": "17982", - "siteRegistry": false - }, - { - "dateNoted": "2014-09-08", - "notes": "", - "parcelID": "20237", - "siteID": "20963", + "parcelID": "20821", + "siteID": "17858", "siteRegistry": false } ] }, { - "uuid": "958bb8d1-95d9-44d2-a7e2-834a3c1c9da4", - "siteID": 15420, - "address": "70129 Sylvester Walk", - "latitude": 51.3278, - "longitude": -130.8616, - "lastUpdated": "2015-07-23", - "city": "Gleasonberg", + "uuid": "e298cf4f-4567-4084-9443-3af2fe1b144b", + "siteID": 20953, + "address": "64791 Shayna Knoll", + "latitude": 57.6624, + "longitude": -124.0054, + "lastUpdated": "2022-12-06", + "city": "Fort Kristinacester", "region": "Kootenay", - "victoriaFile": "26250-20/13448", + "victoriaFile": "26250-20/1166", "regionalFile": "N/A", "parcelIDs": [ - 1904127, - 2522044, - 415790, - 7737916, - 8540933 + 1429917, + 2187229, + 8924419, + 4134025, + 6724750 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2021-08-01", - "completed": "2017-01-26", - "initiated": "2018-07-31", - "ministryContact": "SCHMITT MEGGIE", + "uuid": "04ac939b-fec6-4e42-a9a7-5d1a39b1c807", + "createdAt": "2021-09-15", + "completed": "2016-01-12", + "initiated": "2018-01-29", + "ministryContact": "MCGLYNN PRICE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -48715,63 +56470,38 @@ ], "notationParticipants": [ { + "uuid": "47f71348-e814-41a7-b120-4882cbd3709e", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false + "role": "SUBMITTED BY", + "siteRegistry": true }, { + "uuid": "9635a927-6efe-4f16-a6d4-8d9fec5e272c", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { + "uuid": "ef16abf8-903d-4c1c-a51a-5b142a0ba841", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false - } - ], - "siteRegistry": true - }, - { - "createdAt": "2018-04-28", - "completed": "2023-08-06", - "initiated": "2023-09-16", - "ministryContact": "ERDMAN BIRDIE", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ + }, { - "name": "SHELL CANADA PRODUCTS", + "uuid": "7e496f60-a469-4564-b20c-94b71492ba9a", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true } ], "siteRegistry": false }, { - "createdAt": "2017-06-17", - "completed": "2021-06-22", - "initiated": "2022-01-15", - "ministryContact": "OLSON ENOCH", + "uuid": "0dc81b53-6f65-484b-91a0-670b5da3a44c", + "createdAt": "2021-04-19", + "completed": "2013-12-18", + "initiated": "2019-08-21", + "ministryContact": "MARVIN KYLEIGH", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -48780,33 +56510,38 @@ ], "notationParticipants": [ { + "uuid": "2125b4d6-5456-48f9-9303-a353271a13ac", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true + "role": "REQUESTED BY", + "siteRegistry": false }, { + "uuid": "9f3af7f3-c96d-41e5-980f-6f8701db14ed", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "d26f9e75-3975-407e-a498-c22a3784cd4f", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true + "uuid": "13d47743-0c13-4ae5-a178-1166a7796818", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2023-01-14", - "completed": "2020-10-09", - "initiated": "2017-12-02", - "ministryContact": "SCHADEN BERNITA", + "uuid": "9442e83f-fdf1-435b-b52d-03915ce887b7", + "createdAt": "2015-12-01", + "completed": "2020-07-25", + "initiated": "2016-07-28", + "ministryContact": "PROSACCO ALFORD", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -48815,200 +56550,245 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { + "uuid": "71a76a07-eddb-4404-8092-9105732c40fd", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": true }, { + "uuid": "af23c394-b744-4552-b4a9-f294a5f6b36e", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false } ], "participants": [ { - "name": "AMET, DOLOR SIT", - "endDate": "2017-06-19", - "startDate": "2023-08-17", + "uuid": "e11c8c2c-5926-4ac6-92da-fcdb2e498c72", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2017-05-22", + "startDate": "2021-06-08", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": true + "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2014-02-28", - "startDate": "2021-10-06", + "uuid": "df6aae47-4396-4c55-92a8-bacb31bbb3c1", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2015-09-21", + "startDate": "2020-09-18", "notes": "", "roles": [ "ORGANIZATION" ], "siteRegistry": true + }, + { + "uuid": "7e91658b-e2bd-4d40-be78-ef4db5996cf0", + "name": "IPSUM", + "endDate": "2015-06-04", + "startDate": "2016-01-14", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true } ], "suspectLandUses": [ { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-08-09 (described on Site Profile dated 2018-08-09)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" - }, - { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-10-04 (described on Site Profile dated 2022-10-04)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" - }, - { + "uuid": "814bfc49-f0ce-4bb1-9343-96ed5648c496", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-01-27 (described on Site Profile dated 2016-01-27)", + "notes": "INSERTED FOR SITE PROFILE DATED 2015-05-06 (described on Site Profile dated 2015-05-06)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { + "uuid": "87117b37-1857-4bd9-aa03-ef689d1c010a", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-06-01 (described on Site Profile dated 2019-06-01)", + "notes": "INSERTED FOR SITE PROFILE DATED 2017-06-11 (described on Site Profile dated 2017-06-11)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], "parcelDescriptions": [ { + "uuid": "99f902df-2d73-4ed3-b9ee-98fb9d5a1f0b", + "siteRegistry": false, + "dateNoted": "2021-02-25", + "parcelID": "15754", + "crownLandUsePIN": "16732", + "crownLandFileNumber": "18580", + "landDescription": "LOT 3 OF LOT 1 BLOCK 1 DISTRICT LOT 2 PLAN 8717" + }, + { + "uuid": "89a6b08b-eae6-4752-9549-caf34889275c", "siteRegistry": false, - "dateNoted": "2019-10-05", - "parcelID": "18132", - "crownLandUsePIN": "17593", - "crownLandFileNumber": "20349", - "landDescription": "LOT 3 OF LOT 4 BLOCK 5 DISTRICT LOT 5 PLAN 5378" + "dateNoted": "2014-04-01", + "parcelID": "19170", + "crownLandUsePIN": "15376", + "crownLandFileNumber": "20311", + "landDescription": "LOT 2 OF LOT 2 BLOCK 1 DISTRICT LOT 4 PLAN 5438" }, { + "uuid": "fbb0566f-6e19-456e-bd3d-80a48fcd9f78", "siteRegistry": true, - "dateNoted": "2014-01-15", - "parcelID": "18247", - "crownLandUsePIN": "20942", - "crownLandFileNumber": "15795", - "landDescription": "LOT 5 OF LOT 2 BLOCK 1 DISTRICT LOT 4 PLAN 9103" + "dateNoted": "2017-11-25", + "parcelID": "15202", + "crownLandUsePIN": "19543", + "crownLandFileNumber": "18720", + "landDescription": "LOT 3 OF LOT 3 BLOCK 1 DISTRICT LOT 2 PLAN 8335" } ], "siteDisclosures": [ { + "uuid": "7c515027-8d94-4421-83c5-a4ea994ba8d8", "siteRegistry": true, - "dateReceived": "2022-12-25", - "dateCompleted": "2014-06-22", - "dateEntered": "2018-05-23", - "dateRegistrar": "2016-11-10", - "dateLocalAuthorityReceived": "2017-10-22", - "summary": "Culpa similique tenetur blanditiis eaque laudantium.", - "informationUsed": "Dolor sunt quidem perspiciatis labore repellendus ipsam numquam sequi.\nId voluptatum laboriosam maxime tenetur aperiam voluptas.\nQuasi repellat voluptatum libero assumenda aut.\nEius modi delectus beatae occaecati odio.", - "pastOrPresentOrders": "Asperiores maxime id reprehenderit laborum quae ipsum nesciunt.", + "dateReceived": "2019-01-13", + "dateCompleted": "2023-01-18", + "dateEntered": "2022-08-28", + "dateRegistrar": "2016-11-07", + "dateLocalAuthorityReceived": "2022-02-07", + "summary": "Quisquam culpa facere ex temporibus ea rerum deleniti natus consequuntur.", + "informationUsed": "Iste nihil cupiditate quidem alias eum natus magni.\nPerferendis aliquam qui iusto voluptatum rerum impedit sequi.\nCulpa ex expedita quam dolore porro nemo perspiciatis quaerat.\nNesciunt exercitationem suscipit corrupti.\nQuia autem occaecati a.", + "pastOrPresentOrders": "Facilis aut architecto dignissimos.\nQuas vel amet minus ipsum fugit.", "commercialAndIndustrialPurposes": [ { + "uuid": "331a9bcb-0508-41df-962e-5e4d800029e5", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true + "siteRegistry": false }, { + "uuid": "d2015cff-189e-4eb6-9ff8-1e546da4e208", "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true - }, - { - "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false + "siteRegistry": true } ] } ], "activityLog": [ { + "uuid": "4e341176-3429-44bf-b745-5219565eee9c", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "CASSIN BUFORD", + "timestamp": "2017-06-27" + }, + { + "uuid": "6b31967c-8a8e-4ad7-8dde-0ea766ff5bf4", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "KIRLIN SHANY", - "timestamp": "2022-06-22" + "user": "SCHUMM JUANA", + "timestamp": "2017-08-24" }, { + "uuid": "0e9922ee-67e6-47d1-a1fd-d6cfed12cfda", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "FEENEY MAKAYLA", - "timestamp": "2019-01-28" + "user": "EMARD LEA", + "timestamp": "2018-10-15" }, { + "uuid": "37d54904-e011-44c5-ab25-a75ff92d91f0", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "FEENEY SHANNY", - "timestamp": "2023-08-31" + "user": "METZ KENNETH", + "timestamp": "2014-05-24" }, { + "uuid": "7f147f58-6db8-4560-8beb-00698a0b75f2", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "MOHR LOU", - "timestamp": "2014-04-19" + "user": "HELLER OSBORNE", + "timestamp": "2017-08-18" + }, + { + "uuid": "43296a7b-36e9-4127-81d7-0928ddc5e1d9", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "JACOBSON VERNER", + "timestamp": "2021-04-07" }, { + "uuid": "b3f669df-3d72-4413-aab5-3c254bd65060", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "SMITHAM ANNABELL", - "timestamp": "2015-09-04" + "user": "SCHILLER FREDA", + "timestamp": "2016-12-21" }, { + "uuid": "053e0574-4ee2-4a07-bcb1-1645c640ad55", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "PFANNERSTILL MABLE", - "timestamp": "2020-01-03" + "user": "MCGLYNN-GOLDNER LYDIA", + "timestamp": "2020-10-26" }, { - "siteRegistry": true, + "uuid": "5337fe8a-9e50-47f8-9cdc-1516bd45f158", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "HERMANN BRYCEN", - "timestamp": "2016-06-27" + "user": "HILLL BRANDT", + "timestamp": "2014-07-25" } ], "associatedSites": [ { - "dateNoted": "2022-08-18", + "uuid": "91ec6a64-4642-43a1-94d7-50d9741c2270", + "dateNoted": "2014-09-12", "notes": "", - "parcelID": "19800", - "siteID": "19593", - "siteRegistry": true + "parcelID": "19980", + "siteID": "20470", + "siteRegistry": false + }, + { + "uuid": "e15349d9-1a7f-400c-ae42-32b5a3eb97b0", + "dateNoted": "2021-02-21", + "notes": "", + "parcelID": "15628", + "siteID": "16728", + "siteRegistry": false + }, + { + "uuid": "20b5a9ae-d65a-4b06-a4d7-5b84dd5a9d11", + "dateNoted": "2020-12-30", + "notes": "", + "parcelID": "17438", + "siteID": "15264", + "siteRegistry": false } ] }, { - "uuid": "fe1fef30-0e7b-4c3a-addb-f0c08cc85fb8", - "siteID": 15952, - "address": "185 Dagmar Spring", - "latitude": 52.9524, - "longitude": -128.2345, - "lastUpdated": "2015-01-30", - "city": "Virginiemouth", + "uuid": "3d05d430-9864-471e-83fe-fde15fe50775", + "siteID": 15374, + "address": "62081 Ruecker Ranch", + "latitude": 52.4278, + "longitude": -122.6755, + "lastUpdated": "2015-05-27", + "city": "East Darbyboro", "region": "Kootenay", - "victoriaFile": "26250-20/18354", + "victoriaFile": "26250-20/16599", "regionalFile": "N/A", "parcelIDs": [ - 8044199, - 3856566, - 4245686, - 1149236, - 4171728 + 1687193, + 9125041, + 2362073, + 3047531, + 3984583 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2018-07-17", - "completed": "2023-01-06", - "initiated": "2022-11-27", - "ministryContact": "HALEY BRUCE", + "uuid": "8123cac1-f861-4c40-a9bc-751828ca7063", + "createdAt": "2017-05-20", + "completed": "2020-11-19", + "initiated": "2019-07-25", + "ministryContact": "RAYNOR JACKIE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -49017,38 +56797,44 @@ ], "notationParticipants": [ { + "uuid": "c4bc4a44-d2aa-44c2-bed2-a88259785654", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true + "role": "REQUESTED BY", + "siteRegistry": false }, { + "uuid": "b5ffe03f-0b4b-47a8-908c-3957b791b6f2", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true + "role": "SUBMITTED BY", + "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", + "uuid": "c8d0b8a9-cdbb-49fc-8759-67d05f10668f", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { + "uuid": "9732a6aa-6145-4843-b2d9-80693f86bd64", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { + "uuid": "b0eb32ad-0937-4346-861d-684ecac75a5b", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2016-03-20", - "completed": "2022-02-27", - "initiated": "2016-12-24", - "ministryContact": "JENKINS JARRETT", + "uuid": "9aba60ca-5ac6-4f1f-bfe0-eaace598433f", + "createdAt": "2019-01-01", + "completed": "2014-01-30", + "initiated": "2016-01-18", + "ministryContact": "O'KEEFE CLINTON", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -49057,33 +56843,44 @@ ], "notationParticipants": [ { + "uuid": "c7dbbb6b-ba6a-4a7b-8180-aa87967eab82", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { + "uuid": "dc0e99a9-5f6a-444d-b93b-4836707f3992", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", + "uuid": "bf5c2180-0594-44b9-91f8-2863c144a709", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true + }, + { + "uuid": "bfb383f8-a5be-491b-80cc-56cea9043bdf", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "0bb53750-ed5a-4278-9e08-602b9975358d", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2019-01-12", - "completed": "2015-01-14", - "initiated": "2020-12-30", - "ministryContact": "CONNELLY ROSALIND", + "uuid": "9a3c238c-4b89-44a2-a9d4-7d83b3e4fb32", + "createdAt": "2015-02-01", + "completed": "2018-09-20", + "initiated": "2020-08-08", + "ministryContact": "DAVIS ROBERTO", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -49092,28 +56889,38 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", + "uuid": "b4c7ca62-6c96-41d1-8c02-08fb704a6b0a", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true }, { + "uuid": "a8047684-86eb-4d2e-8e73-f107267f7e3a", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "9685b108-2043-4fea-9d6b-f209af5250b5", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "uuid": "2bf9381a-22a6-4d7b-a7ff-a3c32d0c9ac8", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": false } ], "siteRegistry": false }, { - "createdAt": "2015-09-26", - "completed": "2021-08-08", - "initiated": "2018-08-01", - "ministryContact": "SCHADEN-WILDERMAN FAUSTO", + "uuid": "7c205ca3-2d45-41eb-82c7-841e6390a984", + "createdAt": "2015-04-13", + "completed": "2017-12-27", + "initiated": "2021-06-04", + "ministryContact": "GREEN JO", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -49122,256 +56929,256 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", + "uuid": "1fb6e3c9-d953-4183-ad7d-6cdfa9e413a3", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { + "uuid": "68da48d7-c140-46ef-966a-31fe6f728e5f", "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "c5db3e95-dd4d-49ff-b63b-881dbcfa059e", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true } ], "participants": [ { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2015-05-06", - "startDate": "2016-03-26", + "uuid": "3934da21-b5c0-4789-b917-0ff6f9fac7e1", + "name": "IPSUM", + "endDate": "2019-06-08", + "startDate": "2014-04-29", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": true + "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2022-01-13", - "startDate": "2023-07-15", + "uuid": "1accb535-f437-4792-a891-5f7af4e0319a", + "name": "AMET, DOLOR SIT", + "endDate": "2019-04-02", + "startDate": "2015-05-21", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": true } ], "suspectLandUses": [ { + "uuid": "298fe1bc-66f1-4fe2-90a4-461aec9b5352", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-05-05 (described on Site Profile dated 2015-05-05)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "notes": "INSERTED FOR SITE PROFILE DATED 2013-11-10 (described on Site Profile dated 2013-11-10)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { + "uuid": "1e472de6-e9d1-447f-a414-0c799aca2ec8", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2023-09-14 (described on Site Profile dated 2023-09-14)", + "notes": "INSERTED FOR SITE PROFILE DATED 2021-09-14 (described on Site Profile dated 2021-09-14)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { + "uuid": "f622735e-3794-40ef-870c-ffa1402e1a66", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-04-13 (described on Site Profile dated 2018-04-13)", + "notes": "INSERTED FOR SITE PROFILE DATED 2019-04-11 (described on Site Profile dated 2019-04-11)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { + "uuid": "a06f604f-64c6-438d-91b7-f2d5ab2dc390", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-05-14 (described on Site Profile dated 2014-05-14)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "notes": "INSERTED FOR SITE PROFILE DATED 2018-08-04 (described on Site Profile dated 2018-08-04)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-01-05 (described on Site Profile dated 2022-01-05)", + "uuid": "66257560-0acf-4e52-b118-9f98cef89a1e", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2020-12-03 (described on Site Profile dated 2020-12-03)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], "parcelDescriptions": [ { - "siteRegistry": true, - "dateNoted": "2017-06-25", - "parcelID": "17872", - "crownLandUsePIN": "15267", - "crownLandFileNumber": "19431", - "landDescription": "LOT 4 OF LOT 1 BLOCK 4 DISTRICT LOT 5 PLAN 5605" - }, - { - "siteRegistry": true, - "dateNoted": "2017-06-27", - "parcelID": "17941", - "crownLandUsePIN": "16653", - "crownLandFileNumber": "20110", - "landDescription": "LOT 2 OF LOT 2 BLOCK 3 DISTRICT LOT 1 PLAN 4890" + "uuid": "06c8ef6f-536d-4eb4-9196-05a7260cb5f2", + "siteRegistry": false, + "dateNoted": "2019-01-12", + "parcelID": "15383", + "crownLandUsePIN": "17195", + "crownLandFileNumber": "19059", + "landDescription": "LOT 5 OF LOT 5 BLOCK 5 DISTRICT LOT 5 PLAN 8735" }, { + "uuid": "87c040b2-0864-437e-a815-059ff9e6a597", "siteRegistry": true, - "dateNoted": "2021-11-11", - "parcelID": "15942", - "crownLandUsePIN": "15329", - "crownLandFileNumber": "19091", - "landDescription": "LOT 4 OF LOT 4 BLOCK 3 DISTRICT LOT 1 PLAN 4937" + "dateNoted": "2020-03-28", + "parcelID": "17026", + "crownLandUsePIN": "15931", + "crownLandFileNumber": "17617", + "landDescription": "LOT 3 OF LOT 3 BLOCK 5 DISTRICT LOT 2 PLAN 6907" }, { + "uuid": "8fc46a48-8b8c-4c9b-85d5-3b22c5ec43d4", "siteRegistry": false, - "dateNoted": "2018-08-29", - "parcelID": "15429", - "crownLandUsePIN": "16226", - "crownLandFileNumber": "15941", - "landDescription": "LOT 5 OF LOT 5 BLOCK 4 DISTRICT LOT 5 PLAN 5699" + "dateNoted": "2018-10-09", + "parcelID": "18517", + "crownLandUsePIN": "15611", + "crownLandFileNumber": "20704", + "landDescription": "LOT 1 OF LOT 2 BLOCK 5 DISTRICT LOT 4 PLAN 6087" }, { - "siteRegistry": true, - "dateNoted": "2023-09-15", - "parcelID": "16480", - "crownLandUsePIN": "17182", - "crownLandFileNumber": "19509", - "landDescription": "LOT 4 OF LOT 1 BLOCK 1 DISTRICT LOT 1 PLAN 8924" + "uuid": "fccb769a-c82d-4349-8075-767f966c5f86", + "siteRegistry": false, + "dateNoted": "2019-05-09", + "parcelID": "18103", + "crownLandUsePIN": "18012", + "crownLandFileNumber": "19503", + "landDescription": "LOT 4 OF LOT 2 BLOCK 1 DISTRICT LOT 1 PLAN 9342" } ], "siteDisclosures": [ { - "siteRegistry": true, - "dateReceived": "2021-01-22", - "dateCompleted": "2015-12-06", - "dateEntered": "2018-01-04", - "dateRegistrar": "2019-10-14", - "dateLocalAuthorityReceived": "2016-11-19", - "summary": "Eveniet cupiditate eius sed.\nDeleniti quae fugit ducimus ducimus adipisci velit.\nCorrupti iure ab.", - "informationUsed": "Labore dignissimos reiciendis numquam velit nihil tempore quibusdam libero.\nNatus libero cumque blanditiis rerum delectus quod ipsam optio maxime.\nRepudiandae dolore facilis odio nisi expedita.\nDeleniti labore aspernatur omnis quo adipisci sit est.\nUt nihil illum sint culpa voluptatibus iure dicta.", - "pastOrPresentOrders": "Fugit provident voluptatum.\nNisi debitis aliquam assumenda repellat at.\nAmet sed voluptate harum incidunt impedit ex sequi officia sint.", + "uuid": "edad6f59-8a25-45ce-b878-231982beae8b", + "siteRegistry": false, + "dateReceived": "2022-09-12", + "dateCompleted": "2017-12-27", + "dateEntered": "2015-04-10", + "dateRegistrar": "2022-05-27", + "dateLocalAuthorityReceived": "2022-06-17", + "summary": "Quo autem fuga perferendis molestias.", + "informationUsed": "Voluptates eius assumenda perferendis nemo animi et.\nVelit delectus alias corrupti temporibus voluptates magnam commodi unde.\nInventore totam reiciendis.", + "pastOrPresentOrders": "Libero sit vitae repudiandae dicta autem hic suscipit quisquam quia.\nSaepe animi a est repellendus nisi quidem.\nDolor facere facere quidem nisi magnam qui est optio.", "commercialAndIndustrialPurposes": [ { + "uuid": "0a435208-0f31-43ef-aa58-7bc8f9466e08", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false }, { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false - } - ] - }, - { - "siteRegistry": true, - "dateReceived": "2017-05-30", - "dateCompleted": "2015-07-11", - "dateEntered": "2018-12-11", - "dateRegistrar": "2018-07-18", - "dateLocalAuthorityReceived": "2021-11-22", - "summary": "Fugiat fugit tenetur laboriosam.\nMolestiae saepe incidunt sint voluptatum beatae doloribus omnis enim.", - "informationUsed": "Qui quos dolorem impedit.\nVel dolorum distinctio.\nSoluta vel fuga ab tempora vitae.\nCum occaecati eius id voluptatem ducimus.", - "pastOrPresentOrders": "Saepe magni labore sint hic eveniet assumenda.\nAliquid ipsum facilis nesciunt ab hic quos.", - "commercialAndIndustrialPurposes": [ + "uuid": "8da356da-168f-41b1-a8f3-dbf5e6f887e4", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, { + "uuid": "d6f64f93-47e0-45ab-8c01-0b8c7f1e3857", "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true }, { - "scheduleReference": "F1*", + "uuid": "c46f236a-07d2-4eaf-8d74-21981068dc74", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true + "siteRegistry": false } ] } ], "activityLog": [ { + "uuid": "11563c85-5dc6-4336-9965-b3894924460f", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "DAUGHERTY JACKELINE", - "timestamp": "2021-02-22" + "user": "MILLER STEFANIE", + "timestamp": "2014-03-21" }, { + "uuid": "41af5800-898d-4315-acab-aad9a43acefb", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "WISOZK TRISTIN", - "timestamp": "2015-12-10" - }, - { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "BERGNAUM LUIS", - "timestamp": "2019-09-13" + "user": "ANKUNDING BRIANNE", + "timestamp": "2015-11-19" }, { + "uuid": "16c9ef55-97ac-4e4e-8c46-b275406a29ee", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "KUVALIS JAYSON", - "timestamp": "2023-06-14" + "user": "WILDERMAN ALTA", + "timestamp": "2014-02-03" }, { - "siteRegistry": true, + "uuid": "d51f2de8-7bed-4b2a-9830-bdb862dc4e0c", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "KONOPELSKI NATHANAEL", - "timestamp": "2018-05-04" + "user": "LANGWORTH VINCENZO", + "timestamp": "2021-01-24" }, { + "uuid": "d81978b4-e5a8-493d-afc7-f94dc2614c93", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "HARTMANN MIGUEL", - "timestamp": "2021-08-14" + "user": "BEATTY NEAL", + "timestamp": "2018-02-05" }, { - "siteRegistry": true, + "uuid": "30f41b25-ae75-44f9-9bfe-55e56d1119ca", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "MURPHY KACIE", - "timestamp": "2021-03-11" + "user": "WHITE GERMAN", + "timestamp": "2014-05-24" }, { - "siteRegistry": true, + "uuid": "f1916751-b486-4a90-aaf8-18595c4391a8", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "DAUGHERTY IVA", - "timestamp": "2022-10-16" + "user": "REINGER ISRAEL", + "timestamp": "2017-12-23" }, { + "uuid": "3d999d5b-8bf5-44fa-aeed-8cb0f7a8debd", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "CORKERY CAMILLA", - "timestamp": "2021-12-06" + "user": "MEDHURST JEROD", + "timestamp": "2020-04-27" } ], "associatedSites": [ { - "dateNoted": "2019-01-29", - "notes": "", - "parcelID": "16945", - "siteID": "16392", - "siteRegistry": false - }, - { - "dateNoted": "2015-04-28", + "uuid": "0cbf3ab5-a571-4d9e-864d-8c7540be41f7", + "dateNoted": "2014-08-20", "notes": "", - "parcelID": "17653", - "siteID": "19984", + "parcelID": "16456", + "siteID": "15261", "siteRegistry": true } ] }, { - "uuid": "21fc39ce-464a-445d-9add-b8f41be97cd9", - "siteID": 16278, - "address": "477 Therese Point", - "latitude": 57.1968, - "longitude": -123.4345, - "lastUpdated": "2021-12-24", - "city": "Suffolk", - "region": "Mainland/Southwest", - "victoriaFile": "26250-20/11317", + "uuid": "e6fb9240-7505-4a14-bde0-dbe3699b6835", + "siteID": 16682, + "address": "55911 Maryse Lodge", + "latitude": 51.8322, + "longitude": -131.1582, + "lastUpdated": "2018-03-04", + "city": "Port Millerport", + "region": " North Coast", + "victoriaFile": "26250-20/14498", "regionalFile": "N/A", "parcelIDs": [ - 3727971, - 6847423, - 8770521, - 9293385, - 2631664 + 1484768, + 2721593, + 9074297, + 1303543, + 5732542 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2023-03-06", - "completed": "2023-05-26", - "initiated": "2017-11-06", - "ministryContact": "CRONA DELBERT", + "uuid": "9e40dc3c-ab1f-4f1c-9e4b-4ceb09c4038b", + "createdAt": "2017-07-10", + "completed": "2016-07-31", + "initiated": "2014-06-12", + "ministryContact": "KULAS SONYA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -49380,28 +57187,26 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "9642bb79-2ff9-401c-9b9f-5465eed05dae", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true }, { + "uuid": "8fdd047f-baf9-4340-ab41-a1ec7563f5fd", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true } ], "siteRegistry": true }, { - "createdAt": "2016-09-17", - "completed": "2018-02-23", - "initiated": "2014-12-04", - "ministryContact": "WOLF CHARLEY", + "uuid": "69d74462-6b43-401a-90e1-81537366733d", + "createdAt": "2014-10-05", + "completed": "2022-09-09", + "initiated": "2023-04-07", + "ministryContact": "SCHAEFER AYANA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -49410,28 +57215,26 @@ ], "notationParticipants": [ { + "uuid": "393b61b0-c181-45ee-bfee-039657669473", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { + "uuid": "e5e8ce48-08a9-4853-908b-60721cf70892", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true } ], "siteRegistry": false }, { - "createdAt": "2023-06-08", - "completed": "2017-01-22", - "initiated": "2016-02-24", - "ministryContact": "WISOZK VELVA", + "uuid": "4b6fa962-81a5-4f57-b00a-500c54887e3a", + "createdAt": "2019-11-05", + "completed": "2018-02-21", + "initiated": "2016-09-15", + "ministryContact": "GREENHOLT JERMAINE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -49440,219 +57243,272 @@ ], "notationParticipants": [ { + "uuid": "3d5c6632-0a5e-4e2e-a4b4-83d3f9d18c4e", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", "siteRegistry": true }, { + "uuid": "bb39b51d-dba9-4232-98e1-d8b5ab2d847a", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false }, { + "uuid": "a1fd7a29-c711-426c-9771-073afe01bebd", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true }, { + "uuid": "57118fc3-c1e3-4477-8b24-4518aa143406", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "fb67ebfe-01df-4c5b-8815-f1dc3045ea3a", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false } ], "participants": [ { - "name": "AMET, DOLOR SIT", - "endDate": "2020-11-10", - "startDate": "2017-02-26", + "uuid": "c853db4c-8342-435a-b661-6d20c565bcbf", + "name": "IPSUM", + "endDate": "2019-05-16", + "startDate": "2020-06-07", "notes": "", "roles": [ "ORGANIZATION" ], + "siteRegistry": true + }, + { + "uuid": "cd0b5fe8-1cf9-4e06-8629-3366c78206fc", + "name": "IPSUM", + "endDate": "2020-01-07", + "startDate": "2013-11-17", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "uuid": "101b9c94-1078-421e-a593-26b96d68b458", + "name": "IPSUM", + "endDate": "2017-05-31", + "startDate": "2018-05-01", + "notes": "", + "roles": [ + "EMPLOYEE" + ], "siteRegistry": false }, { - "name": "AMET, DOLOR SIT", - "endDate": "2014-07-21", - "startDate": "2017-08-31", + "uuid": "dcfd4be7-4305-48a9-8b29-db9e6052bfaf", + "name": "IPSUM", + "endDate": "2015-08-14", + "startDate": "2023-03-28", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": true + "siteRegistry": false } ], "suspectLandUses": [ { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-10-31 (described on Site Profile dated 2021-10-31)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" - }, - { + "uuid": "a8803afd-d8be-4c9f-9900-9d9a89534692", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-01-14 (described on Site Profile dated 2015-01-14)", + "notes": "INSERTED FOR SITE PROFILE DATED 2014-02-13 (described on Site Profile dated 2014-02-13)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { + "uuid": "a8723cd7-01e6-401a-b691-0875a794fe10", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2013-10-28 (described on Site Profile dated 2013-10-28)", + "notes": "INSERTED FOR SITE PROFILE DATED 2023-08-04 (described on Site Profile dated 2023-08-04)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "uuid": "823be35d-57ab-4455-acae-cb23b78ece3d", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2013-11-23 (described on Site Profile dated 2013-11-23)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], "parcelDescriptions": [ { + "uuid": "02dfe969-5ceb-4d1a-82ba-d5d59cf9d72f", "siteRegistry": true, - "dateNoted": "2016-05-17", - "parcelID": "15528", - "crownLandUsePIN": "20930", - "crownLandFileNumber": "20027", - "landDescription": "LOT 5 OF LOT 3 BLOCK 2 DISTRICT LOT 4 PLAN 6132" + "dateNoted": "2022-02-03", + "parcelID": "20610", + "crownLandUsePIN": "20856", + "crownLandFileNumber": "19224", + "landDescription": "LOT 2 OF LOT 2 BLOCK 4 DISTRICT LOT 2 PLAN 4649" }, { - "siteRegistry": false, - "dateNoted": "2014-01-23", - "parcelID": "20947", - "crownLandUsePIN": "20800", - "crownLandFileNumber": "18503", - "landDescription": "LOT 2 OF LOT 2 BLOCK 1 DISTRICT LOT 2 PLAN 5025" + "uuid": "ae20822b-0c18-4636-b2d2-33fe26e767b7", + "siteRegistry": true, + "dateNoted": "2022-04-29", + "parcelID": "16312", + "crownLandUsePIN": "15894", + "crownLandFileNumber": "19176", + "landDescription": "LOT 5 OF LOT 2 BLOCK 1 DISTRICT LOT 3 PLAN 7412" }, { - "siteRegistry": false, - "dateNoted": "2022-11-01", - "parcelID": "15798", - "crownLandUsePIN": "15757", - "crownLandFileNumber": "16845", - "landDescription": "LOT 1 OF LOT 5 BLOCK 5 DISTRICT LOT 5 PLAN 9607" + "uuid": "669d9554-ccac-42c5-a564-1d14c5f2c4d2", + "siteRegistry": true, + "dateNoted": "2018-03-14", + "parcelID": "19602", + "crownLandUsePIN": "16974", + "crownLandFileNumber": "16447", + "landDescription": "LOT 4 OF LOT 1 BLOCK 4 DISTRICT LOT 5 PLAN 6231" } ], "siteDisclosures": [ { + "uuid": "24b4ba61-7070-4ffa-bd36-50c92ad9942b", "siteRegistry": false, - "dateReceived": "2021-09-08", - "dateCompleted": "2022-12-11", - "dateEntered": "2020-06-23", - "dateRegistrar": "2014-09-10", - "dateLocalAuthorityReceived": "2022-04-21", - "summary": "Exercitationem porro reprehenderit incidunt in iste delectus.\nQuidem commodi aliquam ea nisi perferendis facere ratione.", - "informationUsed": "Blanditiis facere repudiandae et ullam neque commodi delectus delectus.\nLaborum error aut odio.\nQui sequi suscipit possimus ab corporis.", - "pastOrPresentOrders": "Dolore id officia cum eius enim excepturi.\nCorporis sed officia reiciendis incidunt ut illo tenetur.", + "dateReceived": "2014-05-29", + "dateCompleted": "2013-11-08", + "dateEntered": "2016-01-05", + "dateRegistrar": "2015-02-12", + "dateLocalAuthorityReceived": "2016-03-21", + "summary": "Dolorem eaque quo praesentium.\nEt ab iste sunt aliquam debitis.\nRepellat non possimus a commodi fugiat ipsum aperiam voluptatem molestiae.", + "informationUsed": "Praesentium suscipit a fugiat.\nOccaecati ducimus quibusdam dolorum.\nUt ipsa beatae officiis maxime sed amet omnis esse corrupti.\nTemporibus recusandae esse ea quas assumenda autem.", + "pastOrPresentOrders": "Modi culpa consequatur.", "commercialAndIndustrialPurposes": [ { + "uuid": "5f21a858-35fb-46ce-adcb-720946e896f4", "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false - }, - { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true - } - ] - }, - { - "siteRegistry": true, - "dateReceived": "2017-01-28", - "dateCompleted": "2014-09-02", - "dateEntered": "2017-05-25", - "dateRegistrar": "2021-11-10", - "dateLocalAuthorityReceived": "2017-01-26", - "summary": "Odio sunt soluta accusantium odio aliquid perferendis ipsa aperiam dolores.\nNostrum sequi repellendus eligendi facere laborum suscipit doloribus.", - "informationUsed": "Sunt delectus itaque unde saepe reiciendis aliquid repellat rerum.\nVel assumenda totam laborum vel provident aliquam.\nLibero consequuntur natus id saepe.\nDeserunt et maxime ipsa blanditiis sed quisquam quam sint nemo.", - "pastOrPresentOrders": "Beatae quibusdam explicabo doloremque.\nDolorem porro exercitationem rem optio voluptatibus.", - "commercialAndIndustrialPurposes": [ - { - "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true + "siteRegistry": false }, { + "uuid": "65f48448-106e-44a9-a304-a3a8ea4189bd", "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true - }, - { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false } ] } ], "activityLog": [ { + "uuid": "3f8e0d2f-e19f-455a-a23d-02f235de730e", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "MOEN ILIANA", - "timestamp": "2018-10-15" + "user": "MRAZ MALINDA", + "timestamp": "2022-12-13" + }, + { + "uuid": "accd89f4-7b0a-495a-9de5-79e55a00af14", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "LUBOWITZ JUSTUS", + "timestamp": "2023-08-16" }, { + "uuid": "90fa4a08-8034-4caf-b40e-4e5c2b02671e", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "MILLER OFELIA", - "timestamp": "2019-10-23" + "user": "FERRY LAURIE", + "timestamp": "2017-07-15" }, { + "uuid": "a3493948-63cb-4c27-bc4c-43db4fd41f29", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "CUMMERATA LORI", - "timestamp": "2018-05-20" + "user": "HOWE KOBE", + "timestamp": "2015-11-12" }, { - "siteRegistry": true, + "uuid": "5bf782cb-d621-46f9-a65b-a4f93fce60ec", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "DIETRICH MARQUES", - "timestamp": "2022-12-01" + "user": "KILBACK COLLIN", + "timestamp": "2016-02-12" }, { + "uuid": "0269700e-0754-4085-bfc4-e80f5e6825b2", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "WITTING FREDERICK", - "timestamp": "2016-09-19" + "user": "BOGISICH QUINN", + "timestamp": "2022-12-02" + }, + { + "uuid": "21898a5c-b6e9-4b5c-8355-85139cba5561", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "CASPER ETHELYN", + "timestamp": "2017-06-25" + }, + { + "uuid": "ca22e154-b1f6-4836-ad1f-0b2d2c066955", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "DOOLEY BLAKE", + "timestamp": "2017-07-19" + }, + { + "uuid": "d899b765-a905-40b3-abea-1f8779cfd291", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "HAUCK JOSIAH", + "timestamp": "2015-11-08" } ], "associatedSites": [ { - "dateNoted": "2018-04-28", + "uuid": "e52040bd-156f-49bf-a13a-131333f9517b", + "dateNoted": "2016-05-13", "notes": "", - "parcelID": "20532", - "siteID": "17653", + "parcelID": "19025", + "siteID": "20928", "siteRegistry": true + }, + { + "uuid": "9db2405c-be94-4b94-8664-83ddd535327f", + "dateNoted": "2021-10-01", + "notes": "", + "parcelID": "16757", + "siteID": "20013", + "siteRegistry": false } ] }, { - "uuid": "7fc01c02-e6b7-48c3-850d-0371dfb55d5a", - "siteID": 16489, - "address": "8522 Wintheiser Shore", - "latitude": 53.1696, - "longitude": -124.4426, - "lastUpdated": "2022-10-12", - "city": "West Cali", + "uuid": "242dcf28-67ed-4ef4-a23d-7b60b2dd7691", + "siteID": 18687, + "address": "339 Kovacek Dam", + "latitude": 54.7096, + "longitude": -134.875, + "lastUpdated": "2021-04-25", + "city": "Corwinmouth", "region": "Mainland/Southwest", - "victoriaFile": "26250-20/3887", + "victoriaFile": "26250-20/18746", "regionalFile": "N/A", "parcelIDs": [ - 2857054, - 8432819, - 9458486, - 2273153, - 7754009 + 3319287, + 440609, + 6448713, + 9054405, + 925268 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2020-01-01", - "completed": "2020-12-27", - "initiated": "2021-04-30", - "ministryContact": "PROSACCO BUFORD", + "uuid": "36a1000b-6739-4892-8b3a-2f1cc44b0db5", + "createdAt": "2014-09-07", + "completed": "2017-04-09", + "initiated": "2015-02-25", + "ministryContact": "CREMIN MARITZA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -49661,16 +57517,13 @@ ], "notationParticipants": [ { + "uuid": "fdc9a0f6-a9ec-4cbd-9a2a-99c6f6c50159", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false }, { + "uuid": "b01dc35f-5c57-4f91-9a21-a66488016d71", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true @@ -49679,10 +57532,11 @@ "siteRegistry": true }, { - "createdAt": "2014-02-06", - "completed": "2018-05-09", - "initiated": "2015-09-16", - "ministryContact": "REINGER HILLARD", + "uuid": "7cda63aa-ab63-458d-965a-1de50e14352c", + "createdAt": "2017-12-13", + "completed": "2023-05-15", + "initiated": "2015-10-03", + "ministryContact": "SCHOEN JUNIUS", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -49691,63 +57545,32 @@ ], "notationParticipants": [ { + "uuid": "fc46b078-1528-488d-8d62-b0e0730cf974", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", "siteRegistry": false - } - ], - "siteRegistry": false - }, - { - "createdAt": "2019-01-04", - "completed": "2020-12-08", - "initiated": "2022-10-03", - "ministryContact": "ZIEMANN CRAWFORD", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ + }, { + "uuid": "2cace8ae-418f-42a4-bcca-bd3354e9a9ad", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { + "uuid": "866b9051-ab9c-413d-b939-1f09a1d31695", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false } ], "siteRegistry": false }, { - "createdAt": "2018-03-19", - "completed": "2015-03-22", - "initiated": "2020-11-15", - "ministryContact": "TREMBLAY ALVAH", + "uuid": "9d0ef82f-5574-455d-90ab-cd1911c997d4", + "createdAt": "2019-06-07", + "completed": "2017-03-07", + "initiated": "2021-04-16", + "ministryContact": "STEHR MARLEN", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -49756,23 +57579,15 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { + "uuid": "3ed07d48-846f-4193-8200-e67c84c5174d", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { + "uuid": "04e1a1f2-c5f4-4eff-a486-58d085e8e709", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false } ], @@ -49781,19 +57596,10 @@ ], "participants": [ { - "name": "IPSUM", - "endDate": "2020-09-25", - "startDate": "2015-11-21", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": false - }, - { + "uuid": "7f02f5c2-d043-4f10-85ea-06eb558a08e9", "name": "AMET, DOLOR SIT", - "endDate": "2016-11-10", - "startDate": "2019-02-18", + "endDate": "2016-12-07", + "startDate": "2021-04-30", "notes": "", "roles": [ "EMPLOYEE" @@ -49801,19 +57607,10 @@ "siteRegistry": true }, { - "name": "IPSUM", - "endDate": "2020-12-15", - "startDate": "2021-10-20", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": true - }, - { + "uuid": "3d0baf94-1e88-466d-ac33-e33ffbb05fc9", "name": "AMET, DOLOR SIT", - "endDate": "2021-12-08", - "startDate": "2021-01-24", + "endDate": "2014-06-02", + "startDate": "2013-11-26", "notes": "", "roles": [ "EMPLOYEE" @@ -49823,126 +57620,100 @@ ], "suspectLandUses": [ { + "uuid": "8cdcd302-945c-4b69-968f-c29a9124d612", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-07-16 (described on Site Profile dated 2022-07-16)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "notes": "INSERTED FOR SITE PROFILE DATED 2023-06-06 (described on Site Profile dated 2023-06-06)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2023-07-12 (described on Site Profile dated 2023-07-12)", + "uuid": "65018791-3da6-455e-be2a-f0ac2d3a542e", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2020-03-02 (described on Site Profile dated 2020-03-02)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" - }, - { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-11-05 (described on Site Profile dated 2014-11-05)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" - }, - { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-01-07 (described on Site Profile dated 2018-01-07)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" - }, + } + ], + "parcelDescriptions": [ { + "uuid": "70682c9a-8dea-4ebb-9710-93e5046de02f", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2020-04-20 (described on Site Profile dated 2020-04-20)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" - } - ], - "parcelDescriptions": [ - { - "siteRegistry": false, - "dateNoted": "2021-07-15", - "parcelID": "19343", - "crownLandUsePIN": "16143", - "crownLandFileNumber": "20845", - "landDescription": "LOT 2 OF LOT 3 BLOCK 5 DISTRICT LOT 2 PLAN 9017" + "dateNoted": "2022-01-22", + "parcelID": "18771", + "crownLandUsePIN": "16772", + "crownLandFileNumber": "18195", + "landDescription": "LOT 1 OF LOT 1 BLOCK 1 DISTRICT LOT 2 PLAN 8824" }, { + "uuid": "a932c55e-be3e-4ebf-9690-5510060dc850", "siteRegistry": false, - "dateNoted": "2020-06-08", - "parcelID": "15226", - "crownLandUsePIN": "17943", - "crownLandFileNumber": "16337", - "landDescription": "LOT 5 OF LOT 3 BLOCK 4 DISTRICT LOT 2 PLAN 6776" + "dateNoted": "2020-12-05", + "parcelID": "15207", + "crownLandUsePIN": "16763", + "crownLandFileNumber": "17523", + "landDescription": "LOT 3 OF LOT 4 BLOCK 1 DISTRICT LOT 5 PLAN 8202" }, { + "uuid": "c18d918e-5f8a-41ff-b99a-581d21b7a11d", "siteRegistry": false, - "dateNoted": "2018-10-22", - "parcelID": "20193", - "crownLandUsePIN": "16772", - "crownLandFileNumber": "19165", - "landDescription": "LOT 4 OF LOT 1 BLOCK 2 DISTRICT LOT 5 PLAN 7059" + "dateNoted": "2013-12-09", + "parcelID": "19713", + "crownLandUsePIN": "18753", + "crownLandFileNumber": "20875", + "landDescription": "LOT 1 OF LOT 2 BLOCK 4 DISTRICT LOT 3 PLAN 9187" }, { + "uuid": "d1eacccc-a4e3-4d46-974e-2b574ac12d72", "siteRegistry": true, - "dateNoted": "2022-10-14", - "parcelID": "19388", - "crownLandUsePIN": "15537", - "crownLandFileNumber": "16510", - "landDescription": "LOT 2 OF LOT 4 BLOCK 4 DISTRICT LOT 4 PLAN 3353" + "dateNoted": "2018-12-11", + "parcelID": "19269", + "crownLandUsePIN": "16486", + "crownLandFileNumber": "17148", + "landDescription": "LOT 4 OF LOT 3 BLOCK 2 DISTRICT LOT 5 PLAN 3881" }, { - "siteRegistry": false, - "dateNoted": "2014-11-14", - "parcelID": "19917", - "crownLandUsePIN": "18609", - "crownLandFileNumber": "16029", - "landDescription": "LOT 1 OF LOT 5 BLOCK 1 DISTRICT LOT 5 PLAN 3957" + "uuid": "d985f8e6-31d3-4071-b04f-9cf304c944a6", + "siteRegistry": true, + "dateNoted": "2020-09-23", + "parcelID": "18693", + "crownLandUsePIN": "18537", + "crownLandFileNumber": "15812", + "landDescription": "LOT 2 OF LOT 1 BLOCK 4 DISTRICT LOT 1 PLAN 8744" } ], "siteDisclosures": [ { + "uuid": "33a9c5ad-08eb-49ce-a7ac-9658294edea1", "siteRegistry": false, - "dateReceived": "2022-11-23", - "dateCompleted": "2014-03-25", - "dateEntered": "2014-05-19", - "dateRegistrar": "2017-08-22", - "dateLocalAuthorityReceived": "2021-02-18", - "summary": "Minus quaerat sed.\nQuidem neque consectetur perferendis rerum qui velit ipsam exercitationem tenetur.\nDoloribus mollitia molestiae tempore sapiente soluta inventore.", - "informationUsed": "Porro maiores error cumque laudantium nihil possimus.\nOccaecati id ipsum.\nAspernatur debitis nisi nobis possimus pariatur rem.", - "pastOrPresentOrders": "Accusamus aliquam beatae architecto dignissimos.\nVeritatis sed voluptates illo iusto autem quos voluptate.\nPerferendis sunt atque.", - "commercialAndIndustrialPurposes": [ - { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true - }, - { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true - }, - { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true - } - ] - }, - { - "siteRegistry": true, - "dateReceived": "2018-07-20", - "dateCompleted": "2018-12-30", - "dateEntered": "2023-09-18", - "dateRegistrar": "2015-04-01", - "dateLocalAuthorityReceived": "2021-07-31", - "summary": "Architecto eaque totam quisquam pariatur cupiditate ullam maxime enim.\nIste praesentium exercitationem ullam.", - "informationUsed": "Nobis accusantium facere distinctio cumque assumenda sunt.\nVoluptatibus corrupti accusamus sit.\nNulla maiores totam suscipit vel.\nVeniam harum eum fuga libero dignissimos tempore eligendi tempora delectus.", - "pastOrPresentOrders": "Laborum eum iusto architecto numquam.", + "dateReceived": "2014-09-25", + "dateCompleted": "2023-07-22", + "dateEntered": "2016-01-07", + "dateRegistrar": "2022-09-29", + "dateLocalAuthorityReceived": "2016-09-06", + "summary": "Architecto recusandae nam.\nExpedita excepturi aperiam.", + "informationUsed": "Nam eos dolorum soluta illum rerum.\nRepudiandae autem veritatis expedita optio in.\nHic impedit expedita aperiam fugit.\nBlanditiis a tempore repellat.", + "pastOrPresentOrders": "Distinctio laudantium tempora pariatur.", "commercialAndIndustrialPurposes": [ { + "uuid": "24128348-36ea-4f66-b133-97a6066850a3", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, { + "uuid": "4cd864c9-d7d6-4369-adb7-659ff00f3346", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false }, { + "uuid": "913d2993-67ac-4736-b426-949b74607aee", "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "uuid": "e7102cd1-27ed-4490-84a6-0c7d8b5a59d8", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true } ] @@ -49950,115 +57721,78 @@ ], "activityLog": [ { + "uuid": "2aa8d1d7-1875-41a5-9d0b-7b6962cf0816", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "ROSENBAUM LARRY", - "timestamp": "2018-05-04" - }, - { - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "MAGGIO LLOYD", - "timestamp": "2016-06-21" - }, - { - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "HERMANN CHARLES", - "timestamp": "2021-12-20" - }, - { - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "THOMPSON AYLA", - "timestamp": "2018-05-01" - }, - { - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "FEIL STEFAN", - "timestamp": "2019-05-26" + "user": "SMITH RICHARD", + "timestamp": "2017-02-19" }, { + "uuid": "0f8b0681-a8e6-43a2-8622-733ed5599bc5", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "JACOBS PENELOPE", - "timestamp": "2015-10-16" + "user": "SMITH TERRILL", + "timestamp": "2018-02-07" }, { + "uuid": "f6c40f0b-22d3-46b8-a5d4-e1660c6e7b7f", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "LEHNER MAJOR", - "timestamp": "2019-05-21" - }, - { - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "FRIESEN CURTIS", - "timestamp": "2015-03-23" + "user": "VON JARRED", + "timestamp": "2020-02-28" }, { + "uuid": "c0f55e6b-d65b-4e84-ac15-888dac18f8a0", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "SCHROEDER LEANNA", - "timestamp": "2017-08-26" + "user": "MACEJKOVIC JEREMIE", + "timestamp": "2019-04-15" }, { - "siteRegistry": true, + "uuid": "34b004dd-92ae-4b3a-bd3b-f27d2dcf28ad", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "HODKIEWICZ ROBIN", - "timestamp": "2018-10-22" + "user": "HOWELL JAN", + "timestamp": "2022-12-28" } ], "associatedSites": [ { - "dateNoted": "2020-06-04", - "notes": "", - "parcelID": "15849", - "siteID": "18372", - "siteRegistry": true - }, - { - "dateNoted": "2014-08-07", + "uuid": "a842647f-6d54-4762-992a-4d4729333078", + "dateNoted": "2016-10-13", "notes": "", - "parcelID": "19582", - "siteID": "18160", + "parcelID": "19730", + "siteID": "20490", "siteRegistry": true - }, - { - "dateNoted": "2016-02-20", - "notes": "", - "parcelID": "19066", - "siteID": "17362", - "siteRegistry": false } ] }, { - "uuid": "e7aa2502-7c7e-474d-8b76-b2c667e47d95", - "siteID": 18727, - "address": "6164 Amelia Skyway", - "latitude": 51.8544, - "longitude": -129.1797, - "lastUpdated": "2014-04-01", - "city": "Gillianchester", - "region": "Kootenay", - "victoriaFile": "26250-20/11475", + "uuid": "220fd643-036c-4d22-a63a-51cc18b18c45", + "siteID": 19660, + "address": "538 Zola Shore", + "latitude": 58.7399, + "longitude": -127.8483, + "lastUpdated": "2015-11-21", + "city": "Keeblerstead", + "region": " North Coast", + "victoriaFile": "26250-20/17468", "regionalFile": "N/A", "parcelIDs": [ - 8296749, - 2261686, - 1503271, - 8131852, - 8148333 + 9009466, + 6039411, + 4995539, + 5760574, + 9367186 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2021-02-14", - "completed": "2014-01-03", - "initiated": "2017-06-13", - "ministryContact": "GRADY CEDRICK", + "uuid": "3456739c-8519-4a2e-99b5-0acd39284528", + "createdAt": "2017-06-10", + "completed": "2015-05-11", + "initiated": "2021-10-08", + "ministryContact": "ZULAUF ANNETTE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -50067,38 +57801,66 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "uuid": "5ca654c6-69dd-46ff-9118-53b03e43e127", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": true }, { + "uuid": "9ebc58cd-efa8-46dd-92e5-cd256d32a053", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true }, { + "uuid": "7abb6856-6927-49ed-b177-769247721209", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "uuid": "56435ff8-038e-4b37-8bb6-ec9ff9896655", + "createdAt": "2016-04-21", + "completed": "2017-08-18", + "initiated": "2016-12-04", + "ministryContact": "AUER EVANS", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "uuid": "ca8084dd-68f8-4bf3-b4a7-5319fa9cf837", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "d45183a0-4b21-42c8-b2af-51fd499c66de", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false }, { + "uuid": "91c19865-a1c7-4771-ac83-2f8038c698af", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false + "role": "REQUESTED BY", + "siteRegistry": true } ], "siteRegistry": true }, { - "createdAt": "2021-09-29", - "completed": "2018-09-27", - "initiated": "2022-09-14", - "ministryContact": "COLLINS HAYLIE", + "uuid": "e7dfe7f6-b641-49fd-b066-7fb838907d77", + "createdAt": "2020-02-21", + "completed": "2014-09-23", + "initiated": "2016-12-05", + "ministryContact": "KOZEY LEW", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -50107,49 +57869,147 @@ ], "notationParticipants": [ { + "uuid": "a86b1a92-f6b3-4484-b871-5f258daa9df7", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "b76f3170-0204-4232-8b3e-1b503537de8f", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true }, { + "uuid": "72381379-a17e-442e-9fe7-a39f41596318", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "c702e3b4-364f-4eb3-bc4f-8f28024a647e", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": true }, { + "uuid": "3223482d-2ebe-451a-a152-529eb520dbfe", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "uuid": "904650e6-10d2-4aab-9c02-4720916c58ce", + "createdAt": "2020-01-06", + "completed": "2016-09-07", + "initiated": "2019-12-15", + "ministryContact": "HILPERT-WIZA ARTURO", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "uuid": "1b83e7f5-9b95-4578-b29d-1ec69d48bf57", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "51e73eef-7138-47fe-87de-19d3d3e39bae", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "18edf77d-7c12-48f8-ab46-06fd16a2d876", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "uuid": "48eff319-cf30-468e-8c39-d2bde652daef", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": true }, { + "uuid": "1a25f102-4a43-4ab8-82e5-c85fa13d9668", "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "uuid": "83f0737c-03c7-43b5-ad77-b3bc6a9fea97", + "createdAt": "2015-04-04", + "completed": "2014-12-22", + "initiated": "2016-01-09", + "ministryContact": "MANTE CAREY", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "uuid": "4b14228b-7278-4d35-aaaa-79ab60ec7bc3", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "uuid": "3fb771ab-1969-4cb5-9a87-99d376cd7053", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": false + }, + { + "uuid": "8b70d444-9ea4-4b50-a161-c78c61b8cab9", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true } ], "participants": [ { + "uuid": "ce1bac39-f0be-4a77-be4a-efe60e4fb772", "name": "IPSUM", - "endDate": "2018-11-14", - "startDate": "2013-12-27", + "endDate": "2017-12-17", + "startDate": "2018-04-22", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": true + "siteRegistry": false + }, + { + "uuid": "b926e80a-a46c-42ec-9106-b341a1322b73", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2019-01-15", + "startDate": "2023-09-17", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false }, { + "uuid": "3162c184-b6ee-4896-a02a-b15fbd7bc784", "name": "AMET, DOLOR SIT", - "endDate": "2019-10-31", - "startDate": "2014-12-03", + "endDate": "2022-12-01", + "startDate": "2021-01-04", "notes": "", "roles": [ "ORGANIZATION" @@ -50157,9 +58017,10 @@ "siteRegistry": false }, { - "name": "IPSUM", - "endDate": "2014-04-29", - "startDate": "2014-06-13", + "uuid": "d9a346c5-2ca0-4efe-a28e-f0d142adf205", + "name": "AMET, DOLOR SIT", + "endDate": "2021-12-15", + "startDate": "2020-02-08", "notes": "", "roles": [ "EMPLOYEE" @@ -50167,196 +58028,229 @@ "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2022-03-26", - "startDate": "2017-05-31", + "uuid": "9a2760bc-b111-4fb6-82e2-1095d2813653", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2019-03-06", + "startDate": "2023-07-07", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], - "siteRegistry": true + "siteRegistry": false } ], "suspectLandUses": [ { + "uuid": "75ceca57-d919-4c51-a0c9-e33a3c43a2fe", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-02-07 (described on Site Profile dated 2022-02-07)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" - }, - { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-05-04 (described on Site Profile dated 2014-05-04)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "notes": "INSERTED FOR SITE PROFILE DATED 2014-04-19 (described on Site Profile dated 2014-04-19)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { + "uuid": "bc33b7b4-6556-4154-8e2d-b38220d3345f", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-04-17 (described on Site Profile dated 2018-04-17)", + "notes": "INSERTED FOR SITE PROFILE DATED 2023-04-03 (described on Site Profile dated 2023-04-03)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { + "uuid": "7e16ab48-c9c1-4250-994a-a13a04916cf2", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-07-02 (described on Site Profile dated 2015-07-02)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" - }, - { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-03-14 (described on Site Profile dated 2016-03-14)", + "notes": "INSERTED FOR SITE PROFILE DATED 2019-09-05 (described on Site Profile dated 2019-09-05)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], "parcelDescriptions": [ { - "siteRegistry": true, - "dateNoted": "2022-03-03", - "parcelID": "19495", - "crownLandUsePIN": "19186", - "crownLandFileNumber": "17968", - "landDescription": "LOT 4 OF LOT 5 BLOCK 2 DISTRICT LOT 4 PLAN 8810" - }, - { + "uuid": "de82a8ef-c9e1-4368-8bc7-c3d7fe138f9f", "siteRegistry": false, - "dateNoted": "2023-09-04", - "parcelID": "16595", - "crownLandUsePIN": "17530", - "crownLandFileNumber": "16719", - "landDescription": "LOT 5 OF LOT 1 BLOCK 2 DISTRICT LOT 1 PLAN 7067" - }, - { - "siteRegistry": true, - "dateNoted": "2016-04-23", - "parcelID": "17276", - "crownLandUsePIN": "16921", - "crownLandFileNumber": "20809", - "landDescription": "LOT 5 OF LOT 1 BLOCK 1 DISTRICT LOT 1 PLAN 4567" + "dateNoted": "2022-01-06", + "parcelID": "16907", + "crownLandUsePIN": "19182", + "crownLandFileNumber": "18072", + "landDescription": "LOT 5 OF LOT 1 BLOCK 3 DISTRICT LOT 3 PLAN 6519" }, { + "uuid": "2dde9a8a-dcd9-4aad-9e32-ebb9727b4735", "siteRegistry": true, - "dateNoted": "2014-05-17", - "parcelID": "19656", - "crownLandUsePIN": "16024", - "crownLandFileNumber": "20691", - "landDescription": "LOT 5 OF LOT 2 BLOCK 1 DISTRICT LOT 3 PLAN 3002" - }, - { - "siteRegistry": false, - "dateNoted": "2021-10-04", - "parcelID": "19996", - "crownLandUsePIN": "18688", - "crownLandFileNumber": "19552", - "landDescription": "LOT 4 OF LOT 1 BLOCK 5 DISTRICT LOT 1 PLAN 5773" + "dateNoted": "2016-05-17", + "parcelID": "20904", + "crownLandUsePIN": "20319", + "crownLandFileNumber": "17349", + "landDescription": "LOT 1 OF LOT 3 BLOCK 3 DISTRICT LOT 2 PLAN 6188" } ], "siteDisclosures": [ { + "uuid": "6f1e4340-15bb-4f96-a1b5-60889a58f02f", "siteRegistry": true, - "dateReceived": "2018-09-13", - "dateCompleted": "2018-10-20", - "dateEntered": "2016-04-10", - "dateRegistrar": "2022-03-26", - "dateLocalAuthorityReceived": "2019-11-22", - "summary": "Sunt non dolore.", - "informationUsed": "Libero sint atque numquam non dignissimos beatae.\nAtque doloribus omnis veniam sint ad quos architecto.\nIpsum eaque tempore quam ullam expedita reiciendis optio modi.\nSequi velit eum incidunt amet optio cupiditate qui.\nHarum eos corrupti earum iure illum.", - "pastOrPresentOrders": "Ipsa fuga accusamus ratione.\nAtque necessitatibus officiis magni consequuntur debitis dolore officiis rerum dicta.\nEos optio commodi veritatis recusandae veritatis dolorem fuga fugit magnam.", + "dateReceived": "2018-03-01", + "dateCompleted": "2020-09-21", + "dateEntered": "2014-09-12", + "dateRegistrar": "2018-04-17", + "dateLocalAuthorityReceived": "2023-08-30", + "summary": "Vero aliquam perferendis eos.", + "informationUsed": "Similique perferendis iure est quam tempore repudiandae magni.\nFuga doloribus deserunt quae corrupti placeat sint.\nPerferendis natus illo dolores earum distinctio iure.\nAliquam inventore autem beatae eius atque sint ex illo.", + "pastOrPresentOrders": "Eligendi laborum alias consequuntur.", "commercialAndIndustrialPurposes": [ { - "scheduleReference": "F2*", + "uuid": "3429899e-b9de-4f31-aea0-8a658d47e303", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true + "siteRegistry": false }, { + "uuid": "09971c1d-4536-44bd-b9c5-eedb94a0a0cc", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false - }, + } + ] + }, + { + "uuid": "243a0ec6-0565-4dd6-946b-54df4aced13c", + "siteRegistry": false, + "dateReceived": "2014-05-13", + "dateCompleted": "2023-08-06", + "dateEntered": "2016-04-19", + "dateRegistrar": "2020-01-23", + "dateLocalAuthorityReceived": "2015-08-14", + "summary": "Fugit fugit praesentium.\nAspernatur deleniti quo earum quo.\nHarum enim earum.", + "informationUsed": "Omnis id facilis dignissimos.\nVero autem iste neque placeat at dolor consequuntur.\nAccusamus esse voluptate esse enim sunt sequi nulla accusantium officiis.\nPlaceat excepturi incidunt.", + "pastOrPresentOrders": "Officia quam sint.\nIusto quia aut placeat error suscipit voluptatum tempora ut.\nVoluptas repudiandae quod quasi sunt in et saepe architecto.", + "commercialAndIndustrialPurposes": [ { - "scheduleReference": "F1*", + "uuid": "c5e4f032-eae6-4d3c-8cbc-8155104df1e2", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false + }, + { + "uuid": "02c4b6e2-bfe5-44fb-944c-812593f2d59d", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true } ] } ], "activityLog": [ { + "uuid": "6c13bf9b-3d4a-4bf3-b072-704fe2666f95", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "SCHULIST SARAI", + "timestamp": "2016-02-29" + }, + { + "uuid": "78b608ad-0019-437e-a839-eb0e8b99dec6", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "HALVORSON VIRGIL", - "timestamp": "2014-01-11" + "user": "WEIMANN JAQUELINE", + "timestamp": "2016-11-04" }, { - "siteRegistry": true, + "uuid": "bcb5ab1f-c1a4-479d-8c22-c7dcbb25c794", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "FUNK ARCH", - "timestamp": "2018-02-14" + "user": "ROHAN LAISHA", + "timestamp": "2017-02-20" }, { + "uuid": "7eaee4d9-eb38-4635-bc6f-6e70608b6f2b", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "KONOPELSKI DESTINY", - "timestamp": "2015-07-15" + "user": "MACGYVER-MANN ZACHERY", + "timestamp": "2015-08-12" + }, + { + "uuid": "7d10626d-dc70-45f9-85f8-c08f0c083b63", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "HERMAN-SMITH DANIELLA", + "timestamp": "2014-10-10" }, { + "uuid": "f99eadad-4a65-4c06-b433-108896d217ec", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "HOWELL VANCE", - "timestamp": "2021-04-18" + "user": "HARVEY LESLY", + "timestamp": "2017-09-26" }, { + "uuid": "9407529f-bd32-49fc-94b4-726748b0c801", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "MURAZIK DELPHIA", - "timestamp": "2020-09-07" + "user": "VON ORAN", + "timestamp": "2018-06-08" + }, + { + "uuid": "d5fb5d58-2850-4322-82e5-d22c49572e27", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "HOMENICK HEATHER", + "timestamp": "2016-01-27" + }, + { + "uuid": "c208aba5-593e-450e-9cd3-92dd81f2a9cd", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "JOHNS TRACE", + "timestamp": "2018-05-05" } ], "associatedSites": [ { - "dateNoted": "2021-11-06", + "uuid": "6ce14325-8430-4d18-8879-817187135afa", + "dateNoted": "2015-09-21", "notes": "", - "parcelID": "18793", - "siteID": "18027", - "siteRegistry": true + "parcelID": "17346", + "siteID": "19769", + "siteRegistry": false }, { - "dateNoted": "2014-10-18", + "uuid": "982ed4e8-5d62-439b-9874-32bd84708bde", + "dateNoted": "2022-12-15", "notes": "", - "parcelID": "19029", - "siteID": "18787", - "siteRegistry": true + "parcelID": "17393", + "siteID": "20395", + "siteRegistry": false }, { - "dateNoted": "2016-01-29", + "uuid": "93edc891-06fe-44fd-94fa-19df2664bfba", + "dateNoted": "2016-07-02", "notes": "", - "parcelID": "19297", - "siteID": "18123", + "parcelID": "20009", + "siteID": "20395", "siteRegistry": false } ] }, { - "uuid": "ae132c2f-1c03-4bbe-ac5d-1d756c6d0150", - "siteID": 17509, - "address": "664 Tatum Isle", - "latitude": 58.8101, - "longitude": -131.5151, - "lastUpdated": "2014-01-24", - "city": "Lazaroside", - "region": "Thompson-Okanagan", - "victoriaFile": "26250-20/15890", + "uuid": "d1ec86a4-da2d-4a03-81b7-ac4201ef0dc4", + "siteID": 20858, + "address": "89138 Laurine Plains", + "latitude": 58.4611, + "longitude": -135.3754, + "lastUpdated": "2015-01-31", + "city": "Mishawaka", + "region": "Kootenay", + "victoriaFile": "26250-20/16300", "regionalFile": "N/A", "parcelIDs": [ - 4283376, - 5825224, - 2167814, - 1577799, - 9500507 + 9662909, + 586296, + 6012692, + 6639069, + 7125484 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2017-08-21", - "completed": "2020-06-06", - "initiated": "2016-04-18", - "ministryContact": "LEANNON MONIQUE", + "uuid": "e421adbe-3fe9-449c-880a-adeeb77e9010", + "createdAt": "2017-07-11", + "completed": "2016-03-11", + "initiated": "2023-02-20", + "ministryContact": "CHRISTIANSEN CHAD", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -50365,28 +58259,44 @@ ], "notationParticipants": [ { + "uuid": "d822e4cd-41da-4846-a754-6ba9b385d6fe", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "f2c02b0a-c404-46e2-93f4-8da130fbc711", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { + "uuid": "d63c3a7f-7697-4ebd-a848-8009ac4d1cfa", "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "uuid": "8a06c348-f16e-47a9-8fa7-ff0041da2057", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", + "uuid": "c70129b5-fd0d-45ef-8657-b505b4472eda", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2022-10-02", - "completed": "2017-06-05", - "initiated": "2019-05-04", - "ministryContact": "STEHR DAGMAR", + "uuid": "9e8b2b0e-e595-4216-a081-14ef11f7eb49", + "createdAt": "2016-08-30", + "completed": "2015-04-29", + "initiated": "2014-04-27", + "ministryContact": "KIRLIN TOMAS", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -50395,23 +58305,26 @@ ], "notationParticipants": [ { + "uuid": "c75b9716-efd5-49ee-afb7-4af9d91a674e", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false + "uuid": "614a52d5-2ac9-4503-b746-ed708b9d6418", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true } ], "siteRegistry": true }, { - "createdAt": "2023-07-27", - "completed": "2016-08-11", - "initiated": "2022-08-05", - "ministryContact": "BREKKE CHRISTA", + "uuid": "e09d6932-4630-4044-99b6-d8f303353410", + "createdAt": "2018-02-06", + "completed": "2019-05-29", + "initiated": "2019-11-13", + "ministryContact": "KUNDE DEXTER", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -50420,19 +58333,62 @@ ], "notationParticipants": [ { + "uuid": "30d769c9-b8b0-42d4-adae-c0c448e529fb", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": true }, { + "uuid": "1538261b-91fb-4278-a5e9-339a337957e3", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "c9b37ec6-8dad-4a28-92d1-3f5d7e361b42", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": false }, { + "uuid": "9844540c-b96f-43e5-9657-e7610a3fba82", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "9efbbcd5-46ea-4e90-b11f-12f8dc7a6f6f", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "uuid": "4c1247fd-89ab-4561-8416-24ecbd926dec", + "createdAt": "2018-08-12", + "completed": "2016-12-27", + "initiated": "2014-09-02", + "ministryContact": "GREEN JEFFRY", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "uuid": "35a04133-4e6b-4ffd-ab91-07b9be96a48e", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", "siteRegistry": true + }, + { + "uuid": "264312a4-6234-4b57-8072-5a1bcca7d87a", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false } ], "siteRegistry": true @@ -50440,19 +58396,21 @@ ], "participants": [ { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2014-08-13", - "startDate": "2020-11-20", + "uuid": "ce7aabf8-0cd0-47b8-af5b-8f7634d0b16a", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2016-11-02", + "startDate": "2015-05-20", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], - "siteRegistry": true + "siteRegistry": false }, { - "name": "AMET, DOLOR SIT", - "endDate": "2017-12-28", - "startDate": "2023-05-19", + "uuid": "19b79c68-d952-4d5c-b8f3-ea33cfc376eb", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2013-12-09", + "startDate": "2022-07-07", "notes": "", "roles": [ "ORGANIZATION" @@ -50460,84 +58418,103 @@ "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2015-09-07", - "startDate": "2014-04-14", + "uuid": "d508da70-9bbf-42ba-8d4c-4ebd1127cf56", + "name": "AMET, DOLOR SIT", + "endDate": "2018-06-09", + "startDate": "2018-08-18", "notes": "", "roles": [ "ORGANIZATION" ], "siteRegistry": false + }, + { + "uuid": "f79be447-6d9c-4e1b-93d5-8af1c642cef0", + "name": "AMET, DOLOR SIT", + "endDate": "2016-07-07", + "startDate": "2016-12-25", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true } ], "suspectLandUses": [ { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-11-09 (described on Site Profile dated 2015-11-09)", + "uuid": "1051ecdb-ea05-4bce-8b96-f19df00c297a", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2020-06-03 (described on Site Profile dated 2020-06-03)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { + "uuid": "3f777591-6fff-47f5-874e-d034aa16aa41", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-07-13 (described on Site Profile dated 2014-07-13)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "notes": "INSERTED FOR SITE PROFILE DATED 2023-01-27 (described on Site Profile dated 2023-01-27)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], "parcelDescriptions": [ { + "uuid": "d20f9ac6-4b39-43cc-8387-bc674d3923c9", "siteRegistry": true, - "dateNoted": "2023-03-08", - "parcelID": "16168", - "crownLandUsePIN": "16260", - "crownLandFileNumber": "15315", - "landDescription": "LOT 5 OF LOT 2 BLOCK 1 DISTRICT LOT 4 PLAN 8164" + "dateNoted": "2023-04-26", + "parcelID": "15795", + "crownLandUsePIN": "19467", + "crownLandFileNumber": "20075", + "landDescription": "LOT 1 OF LOT 5 BLOCK 3 DISTRICT LOT 1 PLAN 2917" }, { + "uuid": "e51a9b9f-4cd9-4cfb-9bce-cdb231a836ef", "siteRegistry": false, - "dateNoted": "2018-12-07", - "parcelID": "17359", - "crownLandUsePIN": "17929", - "crownLandFileNumber": "16288", - "landDescription": "LOT 1 OF LOT 1 BLOCK 2 DISTRICT LOT 2 PLAN 3276" + "dateNoted": "2015-11-01", + "parcelID": "19727", + "crownLandUsePIN": "16565", + "crownLandFileNumber": "15863", + "landDescription": "LOT 1 OF LOT 1 BLOCK 2 DISTRICT LOT 5 PLAN 4730" }, { + "uuid": "c39a627b-4c17-493e-a713-fa260e5e8438", "siteRegistry": true, - "dateNoted": "2017-10-19", - "parcelID": "20471", - "crownLandUsePIN": "15578", - "crownLandFileNumber": "19588", - "landDescription": "LOT 5 OF LOT 2 BLOCK 5 DISTRICT LOT 4 PLAN 5652" + "dateNoted": "2015-02-02", + "parcelID": "17877", + "crownLandUsePIN": "15509", + "crownLandFileNumber": "19027", + "landDescription": "LOT 2 OF LOT 4 BLOCK 2 DISTRICT LOT 3 PLAN 8320" + }, + { + "uuid": "6c38f410-1f80-48ae-b3bb-3b7c07809ce3", + "siteRegistry": true, + "dateNoted": "2017-12-09", + "parcelID": "18725", + "crownLandUsePIN": "20963", + "crownLandFileNumber": "20100", + "landDescription": "LOT 5 OF LOT 5 BLOCK 3 DISTRICT LOT 2 PLAN 9445" } ], "siteDisclosures": [ { - "siteRegistry": true, - "dateReceived": "2023-09-02", - "dateCompleted": "2015-08-14", - "dateEntered": "2018-01-16", - "dateRegistrar": "2019-06-17", - "dateLocalAuthorityReceived": "2020-11-04", - "summary": "Unde nostrum a debitis neque sint explicabo molestias vitae praesentium.\nNobis cupiditate officiis quia cum.", - "informationUsed": "Dicta voluptatibus ipsam ullam.\nNatus magnam qui.\nRepellendus assumenda at suscipit.", - "pastOrPresentOrders": "Cumque quam quos.\nVoluptatum architecto ducimus exercitationem culpa et.\nVoluptate mollitia maxime sunt exercitationem perferendis voluptas quidem.", + "uuid": "18be446a-0634-4f70-94e3-d12c3d680e49", + "siteRegistry": false, + "dateReceived": "2021-09-29", + "dateCompleted": "2019-07-12", + "dateEntered": "2019-11-02", + "dateRegistrar": "2016-07-10", + "dateLocalAuthorityReceived": "2014-05-21", + "summary": "Praesentium quibusdam iste.", + "informationUsed": "Inventore perferendis mollitia.\nEum aliquam voluptate cumque repellendus veritatis.\nDolor distinctio repudiandae vero nihil est quo.", + "pastOrPresentOrders": "Amet enim natus ipsam dolorem.", "commercialAndIndustrialPurposes": [ { + "uuid": "b01fffdd-a6b2-4bd7-8620-4e0dbbcc66a8", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true - }, - { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false - }, - { + "uuid": "8bad8f13-ad54-49a8-b095-e1f68f6eee0f", "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true } ] @@ -50545,109 +58522,93 @@ ], "activityLog": [ { + "uuid": "ec8fd00b-8e41-43da-ba0a-980e0717cd66", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "BECHTELAR KANE", - "timestamp": "2018-09-04" - }, - { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "MULLER-MOEN BRADLY", - "timestamp": "2023-01-13" + "user": "MANN CLEMMIE", + "timestamp": "2023-04-26" }, { + "uuid": "0ccd6696-b3a0-442a-8282-27269022a060", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "ZBONCAK-LEDNER EVELYN", - "timestamp": "2022-05-23" + "user": "AUER MELVINA", + "timestamp": "2021-04-20" }, { + "uuid": "bd414626-2e50-4209-9eb5-60d50ddf6be4", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "RUSSEL HELENE", - "timestamp": "2019-12-20" + "user": "GERLACH CASSANDRA", + "timestamp": "2016-05-30" }, { - "siteRegistry": true, + "uuid": "5f85d097-8f47-4c18-ae97-68c2feb1872d", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "SCHMELER ORLO", - "timestamp": "2015-09-29" + "user": "ONDRICKA CECIL", + "timestamp": "2019-01-01" }, { + "uuid": "b91496d5-6215-4d3b-b056-e4493ae94bfd", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "HOPPE MOZELLE", - "timestamp": "2021-02-28" + "user": "GOTTLIEB SHAYNA", + "timestamp": "2022-07-09" }, { + "uuid": "eff081c8-5d4e-4155-aad0-a0a352e6b9cc", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "MAYERT LEONOR", - "timestamp": "2014-10-07" - }, - { - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "EMARD JANE", - "timestamp": "2022-02-08" - }, - { - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "JAKUBOWSKI JOSUE", - "timestamp": "2016-12-29" + "user": "LEFFLER JOSEFINA", + "timestamp": "2017-06-11" } ], "associatedSites": [ { - "dateNoted": "2019-10-13", - "notes": "", - "parcelID": "20056", - "siteID": "16253", - "siteRegistry": true - }, - { - "dateNoted": "2015-11-26", + "uuid": "bd9dae1a-2f4a-4ca4-ac93-37d2d6d71316", + "dateNoted": "2016-04-22", "notes": "", - "parcelID": "19619", - "siteID": "16934", + "parcelID": "16214", + "siteID": "18986", "siteRegistry": true }, { - "dateNoted": "2019-04-21", + "uuid": "f2e606f6-d2e9-47a8-ae1b-0065c725b471", + "dateNoted": "2014-05-27", "notes": "", - "parcelID": "18171", - "siteID": "18608", + "parcelID": "15238", + "siteID": "19113", "siteRegistry": false } ] }, { - "uuid": "11028487-8ced-4383-b980-323d6f8f6991", - "siteID": 20833, - "address": "99236 Joyce Junction", - "latitude": 58.5333, - "longitude": -137.2649, - "lastUpdated": "2017-04-05", - "city": "Lake Tessie", - "region": " North Coast", - "victoriaFile": "26250-20/7067", + "uuid": "ee27eeb1-8c05-49ca-840f-ccb5c9a334ad", + "siteID": 15396, + "address": "4561 Marc Valleys", + "latitude": 53.7588, + "longitude": -131.5525, + "lastUpdated": "2023-08-25", + "city": "South Minervaview", + "region": "Thompson-Okanagan", + "victoriaFile": "26250-20/9575", "regionalFile": "N/A", "parcelIDs": [ - 8975777, - 1216366, - 2561907, - 2651659, - 3844835 + 3351528, + 1374403, + 4313296, + 177657, + 2973188 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2015-12-08", - "completed": "2015-07-17", - "initiated": "2018-10-23", - "ministryContact": "EBERT LELAH", + "uuid": "72d5a75b-1295-4e67-9d7e-88e575d0de59", + "createdAt": "2018-12-01", + "completed": "2014-11-15", + "initiated": "2017-06-30", + "ministryContact": "KOCH DELMER", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -50656,23 +58617,38 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", + "uuid": "8e6ddfa1-de0b-47ee-974d-7a4f1e64c1bb", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "06c81041-3387-496e-a4ab-651266483126", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "ca1583ed-c686-4802-8539-8939383bbdc3", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "uuid": "c5b7c0f1-e99f-4f54-b3a8-f8a976b6c060", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2019-08-09", - "completed": "2021-11-22", - "initiated": "2016-07-15", - "ministryContact": "KULAS ERICK", + "uuid": "c2403887-2fa1-4221-8ce3-f2d1d04d04ae", + "createdAt": "2022-01-02", + "completed": "2016-02-07", + "initiated": "2014-07-26", + "ministryContact": "JACOBI BENTON", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -50681,28 +58657,44 @@ ], "notationParticipants": [ { + "uuid": "e6fcd36b-bb4e-461c-9497-78f60269afd0", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "8a91da9d-6427-4d6f-97c3-4b909061487e", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false }, { + "uuid": "7cdf07a5-0cff-48bc-8ce7-99b50612ba22", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "fe5a9f98-dabb-4247-87eb-9a4a94740e88", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", + "uuid": "b2adb9dd-71e2-4724-b9c3-d2f9e5d5880c", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true } ], "siteRegistry": false }, { - "createdAt": "2020-02-01", - "completed": "2016-05-19", - "initiated": "2015-07-03", - "ministryContact": "VONRUEDEN ERNEST", + "uuid": "54349f8d-caf2-44ff-ae9f-aa06d47dfb05", + "createdAt": "2014-03-04", + "completed": "2022-01-01", + "initiated": "2013-11-06", + "ministryContact": "MARVIN-BERNHARD WILMA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -50711,38 +58703,32 @@ ], "notationParticipants": [ { + "uuid": "a54b7fc7-1a8b-4f99-9054-ef59553bb641", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { + "uuid": "f7aac6fa-df47-400e-b653-f7f14f60c4bc", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false }, { + "uuid": "d35425b6-10a6-4257-859e-ba7f166bf9b2", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true } ], "siteRegistry": false }, { - "createdAt": "2014-11-10", - "completed": "2016-06-11", - "initiated": "2017-07-21", - "ministryContact": "BASHIRIAN RAPHAELLE", + "uuid": "91811bdb-9f79-405e-abe4-af7a4a224564", + "createdAt": "2016-08-19", + "completed": "2018-06-21", + "initiated": "2023-02-25", + "ministryContact": "SCHNEIDER RACHAEL", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -50751,28 +58737,38 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "8b306a4c-bc17-4a8b-befc-1528b94d0876", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true }, { + "uuid": "318952c1-3828-4b5f-aafb-e91bc2d02d36", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true }, { + "uuid": "61fbc551-5078-459c-a2df-3dadef3ac575", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false + }, + { + "uuid": "433a6ecd-22be-45db-b1e3-c41d30ab5fd9", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2017-12-11", - "completed": "2021-10-25", - "initiated": "2018-06-23", - "ministryContact": "HOWE BETTE", + "uuid": "eb30865c-4c12-49eb-bb5e-e37f7906028f", + "createdAt": "2020-07-25", + "completed": "2016-06-18", + "initiated": "2017-10-08", + "ministryContact": "HAAG GUSTAVE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -50781,19 +58777,28 @@ ], "notationParticipants": [ { + "uuid": "76862ae3-5f96-4e6d-a768-3355809ae196", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "uuid": "15a86c3e-d938-4f60-8a4e-d0335c5c2139", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": false }, { + "uuid": "f1dfcca9-4ae4-4f4b-908a-76bf6d34557d", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false + }, + { + "uuid": "0999db59-df2b-4214-8c67-fb22b27f05ce", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false } ], "siteRegistry": true @@ -50801,9 +58806,10 @@ ], "participants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2018-03-05", - "startDate": "2016-10-02", + "uuid": "699f148d-3ac8-4ea1-8f48-db78e419843f", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2020-02-04", + "startDate": "2017-06-30", "notes": "", "roles": [ "ORGANIZATION" @@ -50811,213 +58817,239 @@ "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2018-10-23", - "startDate": "2015-03-19", + "uuid": "73e1a380-393b-47ff-9849-db6817d94d9c", + "name": "IPSUM", + "endDate": "2019-07-15", + "startDate": "2021-05-24", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false } ], "suspectLandUses": [ { + "uuid": "4b19b854-03f3-4de2-9375-4da8404ee701", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-04-24 (described on Site Profile dated 2021-04-24)", + "notes": "INSERTED FOR SITE PROFILE DATED 2022-11-08 (described on Site Profile dated 2022-11-08)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { + "uuid": "308b8e74-709a-4332-b61e-42eb62c9b255", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-11-24 (described on Site Profile dated 2014-11-24)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "notes": "INSERTED FOR SITE PROFILE DATED 2016-01-29 (described on Site Profile dated 2016-01-29)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { + "uuid": "2f4996e2-7e5c-4c8e-b909-51047115e803", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-01-14 (described on Site Profile dated 2022-01-14)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "notes": "INSERTED FOR SITE PROFILE DATED 2022-06-10 (described on Site Profile dated 2022-06-10)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], "parcelDescriptions": [ { - "siteRegistry": false, - "dateNoted": "2022-07-02", - "parcelID": "15915", - "crownLandUsePIN": "17588", - "crownLandFileNumber": "16436", - "landDescription": "LOT 2 OF LOT 2 BLOCK 5 DISTRICT LOT 2 PLAN 4669" + "uuid": "93bfb905-1baf-4815-b948-df5b737d9af5", + "siteRegistry": true, + "dateNoted": "2021-11-09", + "parcelID": "16320", + "crownLandUsePIN": "17541", + "crownLandFileNumber": "18485", + "landDescription": "LOT 4 OF LOT 2 BLOCK 2 DISTRICT LOT 5 PLAN 3763" }, { - "siteRegistry": true, - "dateNoted": "2016-09-30", - "parcelID": "18869", - "crownLandUsePIN": "17035", - "crownLandFileNumber": "15485", - "landDescription": "LOT 5 OF LOT 1 BLOCK 3 DISTRICT LOT 1 PLAN 6678" + "uuid": "39cc243d-364a-4f46-8ea6-413613c75807", + "siteRegistry": false, + "dateNoted": "2020-02-10", + "parcelID": "17406", + "crownLandUsePIN": "16170", + "crownLandFileNumber": "15592", + "landDescription": "LOT 4 OF LOT 1 BLOCK 5 DISTRICT LOT 3 PLAN 7982" } ], "siteDisclosures": [ { + "uuid": "e6252cb1-50c8-4cba-8b00-070c27d1466e", "siteRegistry": true, - "dateReceived": "2016-08-27", - "dateCompleted": "2017-03-05", - "dateEntered": "2017-09-23", - "dateRegistrar": "2020-11-11", - "dateLocalAuthorityReceived": "2020-07-18", - "summary": "Eum deserunt et necessitatibus quo optio eos consectetur.\nExplicabo excepturi soluta velit cupiditate.\nEnim velit doloribus iusto numquam earum veritatis laborum sunt architecto.", - "informationUsed": "Omnis corporis dicta ab hic repudiandae consequuntur atque quod.\nIllo sint nulla.\nQuam adipisci ipsa quas accusamus dolorum tempore deserunt fuga.", - "pastOrPresentOrders": "Porro vitae ullam inventore voluptate quidem ad accusamus.", + "dateReceived": "2021-02-04", + "dateCompleted": "2017-08-24", + "dateEntered": "2022-03-22", + "dateRegistrar": "2018-05-11", + "dateLocalAuthorityReceived": "2016-12-10", + "summary": "Excepturi inventore molestiae officiis recusandae adipisci exercitationem ipsum non.", + "informationUsed": "Doloremque asperiores neque iusto delectus labore aliquid.\nAd dicta voluptas deleniti qui nulla.\nEst vero delectus aperiam.\nEum reprehenderit ea possimus.", + "pastOrPresentOrders": "Sit atque facere soluta labore totam.", "commercialAndIndustrialPurposes": [ { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true - }, - { + "uuid": "edae175a-a2fb-4d0f-89a4-531c8a9b1bc9", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true + "siteRegistry": false }, { - "scheduleReference": "F2*", + "uuid": "bb5c4bda-e4e6-4655-a7c4-f40bb06d2b3d", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { + "uuid": "6f239d3e-c601-4468-b77a-c0a455a9cdb0", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true + "siteRegistry": false + }, + { + "uuid": "016bc235-1d7b-4da0-bc64-2932b12adb35", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false } ] }, { - "siteRegistry": false, - "dateReceived": "2018-04-08", - "dateCompleted": "2015-11-19", - "dateEntered": "2017-02-14", - "dateRegistrar": "2022-12-23", - "dateLocalAuthorityReceived": "2014-08-06", - "summary": "Omnis nam soluta.", - "informationUsed": "Fugiat excepturi tempore corporis facere non.\nQuod dolor adipisci voluptatibus voluptate voluptas eos quo.\nDelectus dolor culpa molestiae nam similique veritatis voluptas aut.", - "pastOrPresentOrders": "Soluta quisquam labore excepturi quidem dignissimos aliquid.\nArchitecto atque molestias distinctio.\nNisi explicabo quisquam explicabo mollitia veritatis quae autem ipsam.", + "uuid": "472d1c49-5fd5-4dd7-ab8f-4b3d2f7ec19e", + "siteRegistry": true, + "dateReceived": "2018-06-16", + "dateCompleted": "2019-04-29", + "dateEntered": "2022-03-12", + "dateRegistrar": "2015-05-25", + "dateLocalAuthorityReceived": "2020-03-10", + "summary": "Dicta incidunt nulla perspiciatis commodi.\nQuam veritatis exercitationem.\nNesciunt vel sit distinctio quidem.", + "informationUsed": "Nisi laboriosam consequuntur a amet aliquid quas ducimus.\nCommodi libero ad.\nQuo quae itaque modi eveniet laborum nesciunt architecto adipisci quo.", + "pastOrPresentOrders": "Tempora quos eum soluta.", "commercialAndIndustrialPurposes": [ { + "uuid": "4fb8db93-d1be-4cee-a58a-dc846e000aaf", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { - "scheduleReference": "F2*", + "uuid": "ab8abdae-b74a-4fe7-8150-4273e4df4de3", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "uuid": "1204b269-d269-4fc5-af9c-43e1a3c62af5", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false + }, + { + "uuid": "0d012904-f52b-4ad6-ab61-982ba9204190", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false } ] } ], "activityLog": [ { + "uuid": "5191cc14-1dc7-4eb0-b8de-78054105fa06", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "SCHUMM DILLON", - "timestamp": "2019-10-13" - }, - { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "DIBBERT CELESTINO", - "timestamp": "2017-07-22" - }, - { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "WILLMS DEANGELO", - "timestamp": "2019-06-27" - }, - { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "SCHUPPE MILTON", - "timestamp": "2021-08-26" + "user": "HEGMANN CAESAR", + "timestamp": "2017-01-23" }, { + "uuid": "b59c6b42-7fba-4065-b4dd-2b959f8c8cbc", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "MURAZIK IVA", - "timestamp": "2014-06-18" + "user": "MAYERT PINK", + "timestamp": "2018-02-17" }, { + "uuid": "2bcc42f1-91a8-45e2-9bfb-02c415925d2a", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "BROWN RANDALL", - "timestamp": "2015-08-13" + "user": "EFFERTZ BENNIE", + "timestamp": "2021-11-21" }, { + "uuid": "b1f329b9-27f6-4baf-b17c-4f282ef6e39f", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "JOHNS ALLEN", - "timestamp": "2022-09-16" + "user": "RUNOLFSSON KOLE", + "timestamp": "2019-06-11" }, { - "siteRegistry": true, + "uuid": "7bd97fc2-ddd3-4ac3-a758-9e94b867748a", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "KEEBLER ALEXANDRE", - "timestamp": "2021-06-02" + "user": "FAHEY JERAMY", + "timestamp": "2018-10-05" }, { + "uuid": "88800009-dce0-4a17-9f51-52b51a459550", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "GREENFELDER MAYMIE", - "timestamp": "2019-01-31" + "user": "ROGAHN MANLEY", + "timestamp": "2020-06-11" }, { + "uuid": "5ab5b7d0-81be-4603-9f86-a8b395402ec7", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "SWANIAWSKI SISTER", - "timestamp": "2020-03-03" + "user": "CRIST TAVARES", + "timestamp": "2015-09-10" } ], "associatedSites": [ { - "dateNoted": "2017-03-04", + "uuid": "dee31fd2-cc1a-451a-bc63-b958f2d92f46", + "dateNoted": "2023-05-04", "notes": "", - "parcelID": "18990", - "siteID": "16392", - "siteRegistry": false + "parcelID": "15876", + "siteID": "15426", + "siteRegistry": true }, { - "dateNoted": "2021-08-19", + "uuid": "32d54c26-e259-43c3-9135-adae9fbc6987", + "dateNoted": "2022-08-07", "notes": "", - "parcelID": "16929", - "siteID": "16489", - "siteRegistry": false + "parcelID": "15302", + "siteID": "16419", + "siteRegistry": true + }, + { + "uuid": "f64a818a-c610-4cdc-a213-d42b1f8058d7", + "dateNoted": "2017-12-06", + "notes": "", + "parcelID": "20263", + "siteID": "19254", + "siteRegistry": true } ] }, { - "uuid": "e341daec-b072-4ec4-8da6-eda944ff92e7", - "siteID": 15829, - "address": "7457 Kuvalis Views", - "latitude": 56.0667, - "longitude": -123.6904, - "lastUpdated": "2014-02-20", - "city": "West Babylon", - "region": "Thompson-Okanagan", - "victoriaFile": "26250-20/9365", + "uuid": "32e88a54-1c95-4479-af30-6f58c151614c", + "siteID": 16656, + "address": "169 Wehner Squares", + "latitude": 51.866, + "longitude": -118.8705, + "lastUpdated": "2022-05-07", + "city": "Turlock", + "region": "Kootenay", + "victoriaFile": "26250-20/9139", "regionalFile": "N/A", "parcelIDs": [ - 2034009, - 9841635, - 8004469, - 8169705, - 5690652 + 9212899, + 1900212, + 600919, + 1349149, + 6020350 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2019-12-23", - "completed": "2020-08-25", - "initiated": "2023-01-18", - "ministryContact": "AUFDERHAR WILHELM", + "uuid": "3c0b1cd4-9faa-42e3-968d-ad19ab11d657", + "createdAt": "2016-11-06", + "completed": "2017-03-22", + "initiated": "2023-02-22", + "ministryContact": "HEGMANN DAIJA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -51026,83 +59058,32 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", + "uuid": "77686ba7-3dfb-48f5-994f-0684937a3b4d", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false - } - ], - "siteRegistry": true - }, - { - "createdAt": "2020-02-05", - "completed": "2021-01-28", - "initiated": "2017-12-26", - "ministryContact": "JONES JAN", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true }, { + "uuid": "b810d9bb-e803-4b61-877e-c0dd671d5142", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true - } - ], - "siteRegistry": false - }, - { - "createdAt": "2022-02-10", - "completed": "2017-09-08", - "initiated": "2017-07-19", - "ministryContact": "SCHNEIDER NELSON", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", "siteRegistry": false }, { + "uuid": "d30f727a-f6a2-4f99-80e1-7fe5bc1f86cd", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false + "role": "REQUESTED BY", + "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2021-12-29", - "completed": "2015-11-25", - "initiated": "2019-02-20", - "ministryContact": "SCHADEN ADELE", + "uuid": "06037c7c-1dbc-42f9-bf91-ac23eebd7d13", + "createdAt": "2016-09-14", + "completed": "2018-10-17", + "initiated": "2019-05-27", + "ministryContact": "BRAUN EMERSON", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -51111,23 +59092,21 @@ ], "notationParticipants": [ { + "uuid": "d45ee6db-0422-4195-9631-511a65748220", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "386a7cef-85bd-402c-9d6a-27b8a3b2e7e9", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "uuid": "269d8483-6520-44b1-91df-11d8c3b65b35", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": false } ], @@ -51136,9 +59115,10 @@ ], "participants": [ { - "name": "AMET, DOLOR SIT", - "endDate": "2015-02-14", - "startDate": "2016-05-23", + "uuid": "af370b74-7da7-483c-906f-2d436c48ed65", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2015-12-16", + "startDate": "2021-04-29", "notes": "", "roles": [ "ORGANIZATION" @@ -51146,9 +59126,21 @@ "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2018-08-12", - "startDate": "2018-04-28", + "uuid": "a7a013f9-c6f8-4a29-a091-cb5b09ebda77", + "name": "IPSUM", + "endDate": "2017-05-18", + "startDate": "2020-07-11", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "uuid": "b6bdaa63-7e1b-4a25-82df-d13e8b046a77", + "name": "AMET, DOLOR SIT", + "endDate": "2020-01-22", + "startDate": "2013-11-26", "notes": "", "roles": [ "EMPLOYEE" @@ -51156,168 +59148,240 @@ "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2017-03-23", - "startDate": "2018-06-25", + "uuid": "c4453655-c178-4097-ba2b-503e11d864e0", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2023-07-31", + "startDate": "2014-10-25", "notes": "", "roles": [ "ORGANIZATION" ], "siteRegistry": true + }, + { + "uuid": "bfced66e-9a9b-486d-899f-0313c0b2003d", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2019-03-30", + "startDate": "2020-07-08", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true } ], "suspectLandUses": [ { + "uuid": "bcdec633-6c49-4a01-8845-8d7f41bbb131", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-11-15 (described on Site Profile dated 2015-11-15)", + "notes": "INSERTED FOR SITE PROFILE DATED 2020-06-04 (described on Site Profile dated 2020-06-04)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "uuid": "f0fa1aee-2c9d-4a93-bf70-6959ea5ce6be", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2020-04-10 (described on Site Profile dated 2020-04-10)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { + "uuid": "9c8abc1b-192a-4db9-9bac-f9fd31d62cd0", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-06-09 (described on Site Profile dated 2021-06-09)", + "notes": "INSERTED FOR SITE PROFILE DATED 2017-11-06 (described on Site Profile dated 2017-11-06)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-02-25 (described on Site Profile dated 2022-02-25)", + "uuid": "6682b756-bd09-48b5-aea5-1f8f1186654f", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2019-06-19 (described on Site Profile dated 2019-06-19)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "uuid": "dc30569a-9480-4696-8e49-f46a3167cabc", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2014-04-25 (described on Site Profile dated 2014-04-25)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], "parcelDescriptions": [ { + "uuid": "dc3a1812-c1fa-42af-9747-f8803de63a1c", + "siteRegistry": false, + "dateNoted": "2017-01-31", + "parcelID": "17610", + "crownLandUsePIN": "19327", + "crownLandFileNumber": "16003", + "landDescription": "LOT 1 OF LOT 5 BLOCK 2 DISTRICT LOT 3 PLAN 3674" + }, + { + "uuid": "9315cabc-4d25-4bf4-aadf-e9c2720470dd", "siteRegistry": true, - "dateNoted": "2019-11-06", - "parcelID": "19492", - "crownLandUsePIN": "19343", - "crownLandFileNumber": "19212", - "landDescription": "LOT 1 OF LOT 2 BLOCK 1 DISTRICT LOT 1 PLAN 4506" + "dateNoted": "2018-07-28", + "parcelID": "19336", + "crownLandUsePIN": "18300", + "crownLandFileNumber": "18356", + "landDescription": "LOT 3 OF LOT 5 BLOCK 4 DISTRICT LOT 2 PLAN 3016" + }, + { + "uuid": "aec7c6ab-0974-4ca2-9a21-b24b2b27dfb7", + "siteRegistry": false, + "dateNoted": "2018-12-28", + "parcelID": "15969", + "crownLandUsePIN": "16988", + "crownLandFileNumber": "15249", + "landDescription": "LOT 4 OF LOT 3 BLOCK 4 DISTRICT LOT 1 PLAN 3229" }, { + "uuid": "714ce5ef-0c6b-40f3-bb52-c1c30f4c9996", "siteRegistry": true, - "dateNoted": "2021-11-30", - "parcelID": "15547", - "crownLandUsePIN": "19042", - "crownLandFileNumber": "18925", - "landDescription": "LOT 1 OF LOT 5 BLOCK 2 DISTRICT LOT 4 PLAN 5492" + "dateNoted": "2014-04-24", + "parcelID": "16883", + "crownLandUsePIN": "20259", + "crownLandFileNumber": "18333", + "landDescription": "LOT 3 OF LOT 1 BLOCK 3 DISTRICT LOT 5 PLAN 3841" } ], "siteDisclosures": [ { + "uuid": "85fc8220-8a02-4ec8-9455-2fa0111c9001", + "siteRegistry": false, + "dateReceived": "2020-08-10", + "dateCompleted": "2021-10-14", + "dateEntered": "2016-10-14", + "dateRegistrar": "2014-09-29", + "dateLocalAuthorityReceived": "2023-06-10", + "summary": "Tempore sunt nihil dolore debitis hic voluptatibus praesentium.", + "informationUsed": "Placeat tenetur velit laudantium fuga reprehenderit sed.\nAutem accusantium asperiores repellat.\nAccusantium amet vel dicta quidem commodi aperiam qui.\nMollitia quibusdam adipisci.", + "pastOrPresentOrders": "Consequuntur voluptas numquam maxime maiores odit occaecati.", + "commercialAndIndustrialPurposes": [ + { + "uuid": "1ef985b7-d85d-4b01-bcf6-98bf6f25c5e6", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "uuid": "88c1c114-26df-49c2-b12d-70a6ee6979fb", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + } + ] + }, + { + "uuid": "56f005ec-5df1-4466-9c6c-1ae1339d8180", "siteRegistry": false, - "dateReceived": "2014-08-10", - "dateCompleted": "2023-04-20", - "dateEntered": "2015-09-08", - "dateRegistrar": "2016-11-26", - "dateLocalAuthorityReceived": "2014-09-24", - "summary": "Blanditiis maiores natus nisi doloribus officia iste ipsa.\nTempore nam non qui saepe neque molestiae iure occaecati voluptas.", - "informationUsed": "Delectus facere porro nihil recusandae.\nEst maxime enim veniam quasi in.\nVoluptatum illum ea cumque harum odit.\nPossimus alias itaque eius tenetur laudantium optio temporibus deleniti illum.", - "pastOrPresentOrders": "Qui dolorum nisi consequatur ea.\nPariatur et esse et explicabo qui illum.\nDolores explicabo itaque nemo nesciunt in.", + "dateReceived": "2021-01-16", + "dateCompleted": "2020-06-01", + "dateEntered": "2019-05-21", + "dateRegistrar": "2014-12-03", + "dateLocalAuthorityReceived": "2017-03-30", + "summary": "Provident nemo dolorem quod voluptas quibusdam.", + "informationUsed": "Maiores culpa inventore modi iure laboriosam at.\nEsse id non ipsam unde odit reprehenderit quisquam provident quis.\nRepudiandae animi eligendi cum sequi.", + "pastOrPresentOrders": "Ea commodi et eum laudantium.\nAdipisci dolorem veritatis expedita ullam neque illo suscipit.\nQuidem voluptatem numquam unde ipsum provident illum id saepe.", "commercialAndIndustrialPurposes": [ { + "uuid": "9c5b6d16-83b3-48a4-992d-2cdcd9d73be6", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { + "uuid": "cb3d3113-cfbc-48e5-a590-c0516acfc892", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false + }, + { + "uuid": "eb980bcc-b262-4b6a-bf47-d7f1a0df2b92", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false } ] } ], "activityLog": [ { + "uuid": "0f1e14b5-dda1-48c9-a973-9a87f781927d", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "KERLUKE JULIEN", - "timestamp": "2023-03-08" - }, - { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "QUIGLEY DAVID", - "timestamp": "2023-06-18" + "user": "MITCHELL ADELA", + "timestamp": "2020-07-30" }, { + "uuid": "ea6d21c2-722f-4f3e-81b8-8f4398b98151", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "FRIESEN FERN", - "timestamp": "2018-01-06" - }, - { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "RUSSEL DARIAN", - "timestamp": "2021-07-29" - }, - { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "DECKOW EDGAR", - "timestamp": "2020-12-24" + "user": "RAU ESMERALDA", + "timestamp": "2017-09-16" }, { - "siteRegistry": true, + "uuid": "25351ddf-77a8-4ed7-8bb1-6de6f8815ed9", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "RICE ERICKA", - "timestamp": "2017-11-04" + "user": "MORAR GARETT", + "timestamp": "2014-12-05" }, { + "uuid": "67f4a55b-613b-4b84-9849-463a898b4e08", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "OSINSKI ADALINE", - "timestamp": "2016-02-19" + "user": "LEGROS ISABELL", + "timestamp": "2022-12-24" }, { + "uuid": "50fdd664-5559-4f78-a4ed-b422e2ba16ea", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "KOELPIN-KEMMER SALLIE", - "timestamp": "2021-07-18" + "user": "WAELCHI RACHAEL", + "timestamp": "2014-08-09" } ], "associatedSites": [ { - "dateNoted": "2023-08-31", + "uuid": "a10e8050-6e72-4861-bf40-4f66a6e299f5", + "dateNoted": "2022-06-22", "notes": "", - "parcelID": "19124", - "siteID": "20984", - "siteRegistry": true + "parcelID": "18889", + "siteID": "15426", + "siteRegistry": false }, { - "dateNoted": "2018-04-16", + "uuid": "9dd327ff-6090-43ec-b536-45004d0591a3", + "dateNoted": "2022-04-12", "notes": "", - "parcelID": "15721", - "siteID": "16604", - "siteRegistry": false + "parcelID": "16798", + "siteID": "16986", + "siteRegistry": true } ] }, { - "uuid": "bb51cc51-6c88-43cd-9158-d9482bb17324", - "siteID": 19562, - "address": "451 Kris Lake", - "latitude": 54.9093, - "longitude": -135.1826, - "lastUpdated": "2020-09-13", - "city": "Jaidashire", - "region": " North Coast", - "victoriaFile": "26250-20/18810", + "uuid": "bb3582e1-eb98-41af-ad58-83c0ab57b0b8", + "siteID": 17101, + "address": "880 Devonte Brooks", + "latitude": 51.1273, + "longitude": -121.0227, + "lastUpdated": "2021-04-30", + "city": "West Halie", + "region": "Vancouver Island/Coast", + "victoriaFile": "26250-20/11325", "regionalFile": "N/A", "parcelIDs": [ - 7283039, - 9084548, - 1593424, - 6886949, - 7620654 + 5680235, + 6616604, + 466562, + 5369643, + 1262025 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2021-03-10", - "completed": "2015-12-09", - "initiated": "2017-12-26", - "ministryContact": "CARROLL STELLA", + "uuid": "31cbb130-065a-4dbc-9831-05f4cb6cb99b", + "createdAt": "2017-03-19", + "completed": "2014-08-30", + "initiated": "2021-09-15", + "ministryContact": "LEGROS MAYE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -51326,38 +59390,32 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { + "uuid": "e995d085-2b08-4c50-8342-8855c7985e7e", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": true }, { + "uuid": "bf8f53d8-6b99-4eba-93a3-49230b270fcd", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", + "uuid": "f72befbb-a073-450d-b60c-beaaf6a10b4d", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true } ], "siteRegistry": false }, { - "createdAt": "2013-12-30", - "completed": "2021-08-12", - "initiated": "2017-12-16", - "ministryContact": "MONAHAN MADIE", + "uuid": "3bc7aafc-ec60-4934-bd94-2105d7fb2895", + "createdAt": "2016-04-05", + "completed": "2023-05-01", + "initiated": "2016-02-02", + "ministryContact": "LITTLE TOREY", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -51366,58 +59424,38 @@ ], "notationParticipants": [ { + "uuid": "e8246659-f616-4235-80e8-34b4dd3792a9", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - } - ], - "siteRegistry": true - }, - { - "createdAt": "2014-02-17", - "completed": "2015-12-08", - "initiated": "2022-11-22", - "ministryContact": "LESCH MAGDALENA", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", + "uuid": "4c2969b8-4061-480a-b0e1-316e7fa62b35", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false }, { + "uuid": "3f3b3fdc-830d-47c4-8670-dcd7d9f45c95", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "1b31100d-49f4-4793-a6c8-aec40453495f", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false } ], "siteRegistry": false }, { - "createdAt": "2018-03-18", - "completed": "2022-02-21", - "initiated": "2019-04-30", - "ministryContact": "KOZEY WYATT", + "uuid": "395b02a9-7ad7-4c1c-bf00-c29dce0ef5a5", + "createdAt": "2023-04-18", + "completed": "2014-11-29", + "initiated": "2022-06-06", + "ministryContact": "SCHAMBERGER MORTON", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -51426,23 +59464,32 @@ ], "notationParticipants": [ { + "uuid": "15de333c-541d-4ef0-9c59-614abbaa6b51", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "uuid": "809185c7-4b3c-421c-a701-67c7c843d773", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": true + }, + { + "uuid": "c4d3591b-adc1-4a75-bdad-7d356ec0bcc0", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2023-06-25", - "completed": "2020-05-14", - "initiated": "2022-07-21", - "ministryContact": "LITTLE ALICE", + "uuid": "2ea35cdd-9cf4-46ec-bf20-aa4edf777984", + "createdAt": "2015-02-17", + "completed": "2021-09-12", + "initiated": "2020-01-16", + "ministryContact": "PFANNERSTILL ALEXA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -51451,27 +59498,32 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "c21001a4-db84-4a0f-92cd-1752464abbca", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "d8dda9ef-e914-44f6-aed6-a8fa6b0d9c42", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", + "uuid": "daa1151f-e5dd-4db4-b9ab-44a4262b2a9b", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { + "uuid": "73b865a5-4aaa-4161-979c-cf126b5e59a0", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "a88622f6-21f3-4701-b92a-650bbcee8e01", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true } @@ -51481,9 +59533,10 @@ ], "participants": [ { - "name": "AMET, DOLOR SIT", - "endDate": "2018-03-08", - "startDate": "2015-04-18", + "uuid": "c6e08b43-f149-4c8e-9c5b-7085f303501b", + "name": "IPSUM", + "endDate": "2016-09-15", + "startDate": "2020-04-30", "notes": "", "roles": [ "EMPLOYEE" @@ -51491,207 +59544,236 @@ "siteRegistry": false }, { + "uuid": "2d1c552a-2c36-4058-b8f3-5719797414c7", "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2018-05-11", - "startDate": "2020-08-26", + "endDate": "2021-07-23", + "startDate": "2014-01-17", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false } ], "suspectLandUses": [ { + "uuid": "3e8eb53e-20bf-4a9d-b8fe-4c2e09b7f63c", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-03-22 (described on Site Profile dated 2014-03-22)", + "notes": "INSERTED FOR SITE PROFILE DATED 2017-12-14 (described on Site Profile dated 2017-12-14)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { + "uuid": "bf3596c0-83c8-40f7-b1c7-56f2faec9b84", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-11-23 (described on Site Profile dated 2019-11-23)", + "notes": "INSERTED FOR SITE PROFILE DATED 2015-08-07 (described on Site Profile dated 2015-08-07)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { + "uuid": "b036bc65-32e7-4936-b236-f16ca33a45b5", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-07-14 (described on Site Profile dated 2021-07-14)", + "notes": "INSERTED FOR SITE PROFILE DATED 2021-08-19 (described on Site Profile dated 2021-08-19)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-04-02 (described on Site Profile dated 2014-04-02)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" - }, - { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-02-05 (described on Site Profile dated 2017-02-05)", + "uuid": "c442c850-8768-4e0e-8f6a-22c805304daf", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2018-06-08 (described on Site Profile dated 2018-06-08)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], "parcelDescriptions": [ { + "uuid": "30c892d5-e19c-4597-ab45-557df4aa4723", "siteRegistry": true, - "dateNoted": "2021-10-15", - "parcelID": "18485", - "crownLandUsePIN": "16823", - "crownLandFileNumber": "17307", - "landDescription": "LOT 4 OF LOT 5 BLOCK 1 DISTRICT LOT 3 PLAN 8668" + "dateNoted": "2014-07-28", + "parcelID": "19423", + "crownLandUsePIN": "15736", + "crownLandFileNumber": "19145", + "landDescription": "LOT 3 OF LOT 2 BLOCK 3 DISTRICT LOT 3 PLAN 8454" }, { + "uuid": "08d37006-f021-4f6c-b73a-2a821d4033e7", "siteRegistry": true, - "dateNoted": "2014-05-17", - "parcelID": "19004", - "crownLandUsePIN": "17888", - "crownLandFileNumber": "20890", - "landDescription": "LOT 5 OF LOT 3 BLOCK 2 DISTRICT LOT 2 PLAN 7826" + "dateNoted": "2017-03-22", + "parcelID": "16041", + "crownLandUsePIN": "18742", + "crownLandFileNumber": "17635", + "landDescription": "LOT 5 OF LOT 4 BLOCK 3 DISTRICT LOT 5 PLAN 3812" }, { + "uuid": "971eb73d-a8b1-4302-a26d-0e3274783e95", "siteRegistry": false, - "dateNoted": "2015-12-01", - "parcelID": "17644", - "crownLandUsePIN": "19443", - "crownLandFileNumber": "16609", - "landDescription": "LOT 2 OF LOT 3 BLOCK 5 DISTRICT LOT 5 PLAN 6024" + "dateNoted": "2019-01-30", + "parcelID": "20247", + "crownLandUsePIN": "18212", + "crownLandFileNumber": "20537", + "landDescription": "LOT 1 OF LOT 5 BLOCK 4 DISTRICT LOT 1 PLAN 8656" }, { + "uuid": "7cd7acf9-7af2-498f-b3eb-fde9fbf9494b", "siteRegistry": false, - "dateNoted": "2018-04-01", - "parcelID": "20693", - "crownLandUsePIN": "20364", - "crownLandFileNumber": "19582", - "landDescription": "LOT 1 OF LOT 1 BLOCK 3 DISTRICT LOT 5 PLAN 5305" + "dateNoted": "2017-06-25", + "parcelID": "18830", + "crownLandUsePIN": "20071", + "crownLandFileNumber": "15457", + "landDescription": "LOT 4 OF LOT 2 BLOCK 2 DISTRICT LOT 4 PLAN 9189" }, { - "siteRegistry": true, - "dateNoted": "2018-12-15", - "parcelID": "20632", - "crownLandUsePIN": "20229", - "crownLandFileNumber": "20849", - "landDescription": "LOT 2 OF LOT 4 BLOCK 3 DISTRICT LOT 1 PLAN 4245" + "uuid": "c8407f8d-1473-4768-824b-fe9f3dbac31b", + "siteRegistry": false, + "dateNoted": "2018-02-19", + "parcelID": "20100", + "crownLandUsePIN": "18063", + "crownLandFileNumber": "19730", + "landDescription": "LOT 3 OF LOT 1 BLOCK 3 DISTRICT LOT 5 PLAN 3878" } ], "siteDisclosures": [ { + "uuid": "97d5c426-8f86-4537-bdec-b4f389d439e4", "siteRegistry": true, - "dateReceived": "2017-06-24", - "dateCompleted": "2021-09-27", - "dateEntered": "2023-06-02", - "dateRegistrar": "2015-07-23", - "dateLocalAuthorityReceived": "2017-10-19", - "summary": "Voluptatum dolore eius provident ea dicta in pariatur.", - "informationUsed": "Itaque earum aspernatur tempore.\nIste laborum temporibus qui ducimus blanditiis.\nHic cumque deserunt iste vero voluptas nobis laboriosam.\nMinus asperiores aliquam ea maiores molestiae.\nIusto numquam corrupti.", - "pastOrPresentOrders": "Perspiciatis rem omnis facere aliquid odio.", + "dateReceived": "2016-04-02", + "dateCompleted": "2015-07-30", + "dateEntered": "2016-03-24", + "dateRegistrar": "2017-01-17", + "dateLocalAuthorityReceived": "2018-05-31", + "summary": "Dicta pariatur recusandae nobis.\nFacere quia error aspernatur.\nIure eligendi qui consectetur animi.", + "informationUsed": "Reiciendis ut illum adipisci sit temporibus aperiam corrupti facere minus.\nExplicabo cumque pariatur minus illum quod ratione ipsam.\nOdio odit rem eius possimus.\nSaepe consequatur earum soluta est ipsa voluptatem minus.\nExcepturi sunt cum quaerat totam.", + "pastOrPresentOrders": "Nulla nostrum deleniti doloremque architecto ea consectetur aut.\nCorporis vero officiis ut quod autem minus modi.", "commercialAndIndustrialPurposes": [ { + "uuid": "72ec276c-7736-4c90-beac-d939926facea", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { + "uuid": "10e71075-58e7-44f7-ba6f-240a23439409", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true + "siteRegistry": false }, { + "uuid": "b6da3b6c-fc91-4dbc-ad70-02f20389c0da", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "uuid": "909d5080-cea8-41c5-ad69-d7babc907ea5", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true } ] - } - ], - "activityLog": [ - { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "KOELPIN LINA", - "timestamp": "2021-08-16" - }, - { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "OLSON DRAKE", - "timestamp": "2015-10-03" }, { + "uuid": "556b533f-0e5b-4a4a-90fd-5e6ae4be9048", "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "BOGISICH ELZA", - "timestamp": "2022-10-22" - }, + "dateReceived": "2018-09-02", + "dateCompleted": "2018-09-30", + "dateEntered": "2021-07-28", + "dateRegistrar": "2016-08-16", + "dateLocalAuthorityReceived": "2017-02-28", + "summary": "Sequi voluptatem explicabo.\nError necessitatibus dignissimos nam illo inventore ex quas.", + "informationUsed": "Magni similique nostrum tempora dolore.\nQuasi molestiae cupiditate.\nTenetur qui doloribus officia sapiente autem doloremque.\nDoloremque totam ducimus quam sit enim.\nFuga incidunt eos maiores.", + "pastOrPresentOrders": "Perspiciatis optio quod harum unde.\nAdipisci a doloribus harum odio illum magni.\nNam numquam sed cum.", + "commercialAndIndustrialPurposes": [ + { + "uuid": "b828beea-a58d-4147-aa20-d1047fbd934b", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "uuid": "3f132fa8-6753-4efe-aa15-3f5044bcf558", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "uuid": "89e880a4-f755-497c-a541-bd43fdae8414", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + } + ] + } + ], + "activityLog": [ { + "uuid": "2142da56-3363-4324-ae04-ddc4d965d025", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "WILDERMAN LARON", - "timestamp": "2018-05-03" + "user": "SCHULIST CHESTER", + "timestamp": "2014-04-20" }, { + "uuid": "6259c5ed-3378-4e42-ad65-17da5b12ad52", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "MILLS MICAH", - "timestamp": "2016-02-29" + "user": "ROLFSON FREDDIE", + "timestamp": "2015-09-24" }, { - "siteRegistry": true, + "uuid": "25a28c10-48e0-4ec7-ad0b-119a0c3edacf", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "STOLTENBERG KEITH", - "timestamp": "2021-05-13" + "user": "STOLTENBERG CATHY", + "timestamp": "2023-09-10" }, { + "uuid": "d85413d0-c8fe-4833-8078-2695b291509e", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "GRIMES MATHIAS", - "timestamp": "2017-05-27" + "user": "GUSIKOWSKI MICHEL", + "timestamp": "2018-07-31" }, { - "siteRegistry": true, + "uuid": "420472a2-614b-4d7e-8978-5503eda6a8f5", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "WEISSNAT VALLIE", - "timestamp": "2020-02-02" + "user": "HERMISTON KORY", + "timestamp": "2020-05-10" } ], "associatedSites": [ { - "dateNoted": "2023-03-30", + "uuid": "1777c126-a9b3-4925-998a-1e9f232e0731", + "dateNoted": "2022-07-20", "notes": "", - "parcelID": "17249", - "siteID": "19213", + "parcelID": "18496", + "siteID": "15716", "siteRegistry": true - }, - { - "dateNoted": "2019-07-13", - "notes": "", - "parcelID": "20781", - "siteID": "19138", - "siteRegistry": false } ] }, { - "uuid": "4b425bd4-acd0-4e34-b080-ecc1ab332972", - "siteID": 17306, - "address": "666 Norval Cliffs", - "latitude": 53.5343, - "longitude": -123.4852, - "lastUpdated": "2020-08-04", - "city": "Ferrymouth", - "region": "Cariboo", - "victoriaFile": "26250-20/9402", + "uuid": "636d61f0-6d11-457c-9010-46ed61b178e7", + "siteID": 17769, + "address": "29993 Johns Shoals", + "latitude": 54.1376, + "longitude": -126.9972, + "lastUpdated": "2022-06-25", + "city": "Quigleyboro", + "region": "Mainland/Southwest", + "victoriaFile": "26250-20/17414", "regionalFile": "N/A", "parcelIDs": [ - 3485263, - 657094, - 9368037, - 4480474, - 2027872 + 8326876, + 449983, + 9115969, + 7391245, + 4964030 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2018-08-25", - "completed": "2022-06-20", - "initiated": "2023-03-15", - "ministryContact": "MCGLYNN ERNESTINA", + "uuid": "98311df5-45eb-4f77-a05c-ce0c98c67588", + "createdAt": "2015-06-12", + "completed": "2015-09-15", + "initiated": "2023-01-17", + "ministryContact": "HANSEN ARCH", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -51700,33 +59782,38 @@ ], "notationParticipants": [ { + "uuid": "112bffde-5790-4a3e-902b-176776c49da1", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false }, { + "uuid": "b61ff10a-caf6-42ad-9bb7-de0991f0f721", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false + "uuid": "d55305d7-7322-4f4c-ba0c-4c045458f854", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "22b7cd18-0953-4fc6-bd20-f1eada27457e", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2014-02-21", - "completed": "2020-05-26", - "initiated": "2020-12-18", - "ministryContact": "HILPERT DAPHNEY", + "uuid": "76ed012b-a687-42f6-83f4-27713c90ad11", + "createdAt": "2014-07-17", + "completed": "2021-11-23", + "initiated": "2020-11-03", + "ministryContact": "ROLFSON ELYSSA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -51735,23 +59822,44 @@ ], "notationParticipants": [ { + "uuid": "cebd4c8e-e26b-4c19-b0ac-457e4cf3ef15", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "accf743a-3ce7-41f4-a199-ff05cc3694f6", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "uuid": "81eb0e11-fa22-40b2-b59a-3c6f44c7f2d0", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true }, { + "uuid": "cd1ee035-7cb3-4516-969c-30b23073f3a9", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false + }, + { + "uuid": "a65d00ca-5b63-42e0-ac8c-71b2bf123c15", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2017-03-27", - "completed": "2021-08-12", - "initiated": "2022-10-06", - "ministryContact": "GREENHOLT JACK", + "uuid": "39b26ee6-f2fa-4b26-9617-f238ebb56f51", + "createdAt": "2017-11-18", + "completed": "2018-07-06", + "initiated": "2015-02-04", + "ministryContact": "LABADIE JAY", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -51760,246 +59868,287 @@ ], "notationParticipants": [ { + "uuid": "65ff3542-ffe1-4ce2-b358-a5e2146060db", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false + "role": "SUBMITTED BY", + "siteRegistry": true }, { + "uuid": "70e0ac7c-dcab-46fa-a6d4-c4b8fad77bb9", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "uuid": "e2c4a77c-313e-4579-bb18-33d58da4aa91", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false } ], "participants": [ { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2019-08-27", - "startDate": "2020-06-28", + "uuid": "3d13c4e2-f213-4cc3-84f7-9cab32b8236e", + "name": "AMET, DOLOR SIT", + "endDate": "2023-02-12", + "startDate": "2016-10-04", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false }, { + "uuid": "6499855d-737e-4b30-ab3b-d447afa1b30a", "name": "AMET, DOLOR SIT", - "endDate": "2014-10-18", - "startDate": "2023-10-03", + "endDate": "2020-01-27", + "startDate": "2022-01-08", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2021-09-08", - "startDate": "2016-09-22", + "uuid": "343d521b-fd60-4b53-94a2-a5e47e4f799b", + "name": "AMET, DOLOR SIT", + "endDate": "2017-01-09", + "startDate": "2017-04-02", "notes": "", "roles": [ "EMPLOYEE" ], "siteRegistry": false + }, + { + "uuid": "30def8bd-493f-4226-a87d-0ccdf4fa5ed3", + "name": "AMET, DOLOR SIT", + "endDate": "2016-05-23", + "startDate": "2016-07-03", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "uuid": "b1a664d5-bbe2-45f7-9805-dbb0c7f8566e", + "name": "IPSUM", + "endDate": "2023-07-05", + "startDate": "2016-05-08", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false } ], "suspectLandUses": [ { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-01-26 (described on Site Profile dated 2015-01-26)", + "uuid": "813b37ff-729b-43fd-8345-257bdfd7a32b", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2023-03-06 (described on Site Profile dated 2023-03-06)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { + "uuid": "5d69fd00-24d9-4c83-bd3e-a75c8ceefab5", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2020-05-04 (described on Site Profile dated 2020-05-04)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + } + ], + "parcelDescriptions": [ + { + "uuid": "82465d18-ea34-4ba0-b7aa-0ecb6a14870a", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2020-08-05 (described on Site Profile dated 2020-08-05)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" - }, - { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-10-30 (described on Site Profile dated 2018-10-30)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" - }, - { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-08-11 (described on Site Profile dated 2017-08-11)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" - } - ], - "parcelDescriptions": [ - { - "siteRegistry": true, - "dateNoted": "2017-06-07", - "parcelID": "18516", - "crownLandUsePIN": "18992", - "crownLandFileNumber": "20344", - "landDescription": "LOT 1 OF LOT 1 BLOCK 5 DISTRICT LOT 2 PLAN 3189" - }, - { - "siteRegistry": true, - "dateNoted": "2019-03-24", - "parcelID": "20935", - "crownLandUsePIN": "18336", - "crownLandFileNumber": "18683", - "landDescription": "LOT 3 OF LOT 5 BLOCK 5 DISTRICT LOT 5 PLAN 6738" + "dateNoted": "2022-03-10", + "parcelID": "20812", + "crownLandUsePIN": "20971", + "crownLandFileNumber": "18392", + "landDescription": "LOT 1 OF LOT 4 BLOCK 5 DISTRICT LOT 3 PLAN 9597" }, { + "uuid": "6c1d0a71-e4f9-44dc-ad4e-5765838077fc", "siteRegistry": true, - "dateNoted": "2019-10-26", - "parcelID": "15232", - "crownLandUsePIN": "19404", - "crownLandFileNumber": "20545", - "landDescription": "LOT 3 OF LOT 5 BLOCK 4 DISTRICT LOT 3 PLAN 4954" - }, - { - "siteRegistry": false, - "dateNoted": "2016-04-04", - "parcelID": "16912", - "crownLandUsePIN": "20165", - "crownLandFileNumber": "19576", - "landDescription": "LOT 2 OF LOT 3 BLOCK 4 DISTRICT LOT 5 PLAN 3856" + "dateNoted": "2020-04-13", + "parcelID": "17791", + "crownLandUsePIN": "19414", + "crownLandFileNumber": "17739", + "landDescription": "LOT 3 OF LOT 5 BLOCK 1 DISTRICT LOT 2 PLAN 5461" } ], "siteDisclosures": [ { - "siteRegistry": true, - "dateReceived": "2020-07-08", - "dateCompleted": "2019-06-04", - "dateEntered": "2015-11-29", - "dateRegistrar": "2021-04-01", - "dateLocalAuthorityReceived": "2023-09-21", - "summary": "Praesentium inventore eum aliquid quae quibusdam in est quod.\nEt omnis perspiciatis.\nCorporis impedit excepturi ipsam voluptatum officia.", - "informationUsed": "Neque pariatur sunt recusandae incidunt minima veritatis iste quidem.\nAliquam eos esse neque sit cupiditate nam omnis.\nSint asperiores repudiandae nemo.\nPariatur tempore cum aperiam impedit ex.", - "pastOrPresentOrders": "Fugit culpa totam.", + "uuid": "db802ef1-35bd-4be5-9665-72b92c8b935a", + "siteRegistry": false, + "dateReceived": "2014-08-25", + "dateCompleted": "2018-06-15", + "dateEntered": "2019-12-11", + "dateRegistrar": "2017-07-16", + "dateLocalAuthorityReceived": "2014-03-09", + "summary": "A debitis ipsum commodi suscipit optio.", + "informationUsed": "Ipsam eius eum fugit.\nEst quae voluptatem.\nMinus amet ipsum dolore labore facilis atque ducimus aperiam animi.", + "pastOrPresentOrders": "Amet nisi velit non distinctio.\nAlias excepturi unde.", "commercialAndIndustrialPurposes": [ { + "uuid": "4d22532d-4c38-4a4f-8881-9fd2d7f6379a", "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "uuid": "1ed3d8bd-b5df-44ff-aa72-866f6e2b103f", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { + "uuid": "ced129a8-5e2b-4a1f-98ec-9c679cf3d9a5", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "uuid": "65748337-89e2-4f39-be1b-0bab7896c3e5", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false } ] }, { - "siteRegistry": true, - "dateReceived": "2020-11-06", - "dateCompleted": "2023-05-27", - "dateEntered": "2020-05-09", - "dateRegistrar": "2014-10-09", - "dateLocalAuthorityReceived": "2015-03-21", - "summary": "Repellendus aspernatur ratione itaque eveniet maxime expedita.\nSoluta dolor nesciunt assumenda ipsum soluta voluptatum odit.\nOmnis adipisci rem totam voluptates sapiente id laudantium.", - "informationUsed": "Dignissimos incidunt atque eum minima.\nDelectus iusto voluptatem.\nFugiat debitis sed.\nIpsam nemo voluptatum sapiente est.\nQuam ea commodi maiores assumenda dolorem ratione.", - "pastOrPresentOrders": "Quae eos necessitatibus dolorum in tenetur tempora fugit blanditiis.\nDolorum natus consectetur quaerat tenetur quod nesciunt neque.\nDolor tempora ipsa fugiat.", + "uuid": "105a1b38-d9f8-42eb-8ce8-9f1b806603d6", + "siteRegistry": false, + "dateReceived": "2016-05-12", + "dateCompleted": "2015-11-27", + "dateEntered": "2017-11-19", + "dateRegistrar": "2016-02-05", + "dateLocalAuthorityReceived": "2020-10-23", + "summary": "Quis ratione esse pariatur eos quae impedit animi.\nPorro non officia est quibusdam fugit totam delectus.", + "informationUsed": "Sit voluptates occaecati.\nHic reprehenderit veritatis quisquam minus ex.\nFacilis voluptatum beatae fugit eveniet.\nAperiam earum repellat molestiae.\nCorporis autem non ipsum.", + "pastOrPresentOrders": "Ipsa quos accusantium atque qui.\nQuibusdam modi consequuntur repellendus eius porro placeat illum.\nUnde nisi molestias.", "commercialAndIndustrialPurposes": [ { + "uuid": "fdfa7e1f-b643-4c61-a9e3-89bacd7818f0", "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false }, { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true + "uuid": "64cf1ce1-8997-44b7-be91-daa53e4bd38d", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false } ] } ], "activityLog": [ { + "uuid": "7db4ac0a-00b6-42ca-916b-1121d2001588", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "RITCHIE KRISTINA", - "timestamp": "2016-03-01" + "user": "LOWE MONTY", + "timestamp": "2019-08-22" }, { + "uuid": "eeb0e9fb-a528-4fca-97ca-2eadcf07f1bb", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "DARE SAMMY", - "timestamp": "2023-06-20" + "user": "RUNOLFSDOTTIR HASSAN", + "timestamp": "2021-01-11" }, { + "uuid": "20a01858-f601-4daa-9e1f-902e2746d729", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "WINTHEISER SYLVESTER", + "timestamp": "2014-10-05" + }, + { + "uuid": "f1c691ce-9a61-4eba-9605-e678b2969436", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "FRIESEN MCKENNA", - "timestamp": "2015-07-29" + "user": "BOEHM HILBERT", + "timestamp": "2017-09-24" }, { + "uuid": "a7e410a9-17d2-4ebb-96a2-fc71695a4c91", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "WAELCHI COTY", - "timestamp": "2020-09-09" + "user": "WINTHEISER LEATHA", + "timestamp": "2016-04-22" }, { + "uuid": "ad99907b-9f2b-49ba-8fd9-68955a838ba9", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "GRADY NEWTON", - "timestamp": "2018-10-15" + "user": "O'HARA BUFORD", + "timestamp": "2021-11-12" + }, + { + "uuid": "e67a0814-8abd-444d-945e-bd7611733f5a", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "SANFORD REANNA", + "timestamp": "2014-03-21" + }, + { + "uuid": "98a726b1-d2dc-44bf-926b-c6d479f1993e", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "DUBUQUE WILHELM", + "timestamp": "2017-09-12" } ], "associatedSites": [ { - "dateNoted": "2021-10-17", - "notes": "", - "parcelID": "18786", - "siteID": "17847", - "siteRegistry": false - }, - { - "dateNoted": "2021-01-18", + "uuid": "cefbd325-2712-443e-8046-e91214a26647", + "dateNoted": "2016-08-30", "notes": "", - "parcelID": "15323", - "siteID": "20268", + "parcelID": "16359", + "siteID": "18183", "siteRegistry": false }, { - "dateNoted": "2023-08-30", + "uuid": "b099d693-c7b9-4f44-873c-ad876798ab97", + "dateNoted": "2014-09-07", "notes": "", - "parcelID": "16798", - "siteID": "19583", + "parcelID": "15566", + "siteID": "18096", "siteRegistry": false } ] }, { - "uuid": "badad7a6-df37-4d57-9507-9f12b84af380", - "siteID": 18611, - "address": "8363 Pfannerstill Ramp", - "latitude": 49.6091, - "longitude": -120.6176, - "lastUpdated": "2017-09-19", - "city": "Bradenburgh", - "region": "Cariboo", - "victoriaFile": "26250-20/10444", + "uuid": "8f12444d-d38d-40cc-afa2-5324c8501576", + "siteID": 19893, + "address": "50581 Hoeger Freeway", + "latitude": 53.2851, + "longitude": -136.812, + "lastUpdated": "2020-09-02", + "city": "Allieland", + "region": "Thompson-Okanagan", + "victoriaFile": "26250-20/7966", "regionalFile": "N/A", "parcelIDs": [ - 1595555, - 2774682, - 8166131, - 7196270, - 4863755 + 2507050, + 9982639, + 7592446, + 7324464, + 5212281 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2020-04-25", - "completed": "2015-06-24", - "initiated": "2017-09-28", - "ministryContact": "WILLIAMSON GERMAN", + "uuid": "69fd2637-0f79-4b2c-ae38-532c400ec5d1", + "createdAt": "2018-12-30", + "completed": "2021-07-22", + "initiated": "2017-11-13", + "ministryContact": "BERGE FREDERIK", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -52008,23 +60157,32 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "52dec7ae-c0b5-496a-884f-d07e60b00925", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "uuid": "baea86ed-b889-4114-9535-015ef6111f9f", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "e17b526a-a9a8-45ce-b076-dcf47588d496", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2022-05-22", - "completed": "2023-02-06", - "initiated": "2015-05-23", - "ministryContact": "GREEN WARD", + "uuid": "c387b855-24d0-4b4e-8f0b-9ad52f62c211", + "createdAt": "2018-03-08", + "completed": "2021-03-20", + "initiated": "2022-12-05", + "ministryContact": "KEMMER KAYLEIGH", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -52033,17 +60191,14 @@ ], "notationParticipants": [ { + "uuid": "550637f9-4225-4daf-9fdd-68085cf8042b", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", + "uuid": "2fda1041-e5b2-4490-92cd-a46c6fb4a419", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false } @@ -52053,210 +60208,247 @@ ], "participants": [ { + "uuid": "9e705393-dba0-4091-9510-af4ce43a9d7b", "name": "AMET, DOLOR SIT", - "endDate": "2023-02-10", - "startDate": "2021-07-25", + "endDate": "2023-10-11", + "startDate": "2014-05-14", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": true }, { - "name": "IPSUM", - "endDate": "2015-09-22", - "startDate": "2014-02-11", + "uuid": "8cc4912f-9b7b-402c-8035-3f885df997b6", + "name": "AMET, DOLOR SIT", + "endDate": "2023-08-29", + "startDate": "2021-08-17", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": true + }, + { + "uuid": "25a19111-f7a4-4400-8ab1-b9e395a1113d", + "name": "AMET, DOLOR SIT", + "endDate": "2020-07-19", + "startDate": "2015-02-17", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false } ], "suspectLandUses": [ { + "uuid": "25da92d9-f5af-4c75-95a0-4a78a72ba028", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2013-11-06 (described on Site Profile dated 2013-11-06)", + "notes": "INSERTED FOR SITE PROFILE DATED 2019-12-25 (described on Site Profile dated 2019-12-25)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "uuid": "153b3b97-4dcd-427e-9d27-df3b33c0b515", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2022-02-13 (described on Site Profile dated 2022-02-13)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "uuid": "ee629192-cc6a-4844-9328-d2348dbb69a7", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2019-11-18 (described on Site Profile dated 2019-11-18)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { + "uuid": "b7e56172-3500-40c5-aab6-f55d52eaa251", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2020-10-14 (described on Site Profile dated 2020-10-14)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "uuid": "abd20d1c-a9b8-44de-8f92-7a2f4c0af10d", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-12-23 (described on Site Profile dated 2019-12-23)", + "notes": "INSERTED FOR SITE PROFILE DATED 2014-10-17 (described on Site Profile dated 2014-10-17)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], "parcelDescriptions": [ { + "uuid": "2aa41ef8-783d-435d-8cd7-02798c09b1fd", + "siteRegistry": false, + "dateNoted": "2016-07-25", + "parcelID": "16826", + "crownLandUsePIN": "20443", + "crownLandFileNumber": "15948", + "landDescription": "LOT 1 OF LOT 5 BLOCK 1 DISTRICT LOT 3 PLAN 9769" + }, + { + "uuid": "2337f590-77a8-4141-958a-006c95d5ff51", "siteRegistry": true, - "dateNoted": "2022-07-18", - "parcelID": "17428", - "crownLandUsePIN": "16028", - "crownLandFileNumber": "15557", - "landDescription": "LOT 4 OF LOT 4 BLOCK 2 DISTRICT LOT 3 PLAN 4272" + "dateNoted": "2015-12-07", + "parcelID": "19806", + "crownLandUsePIN": "17695", + "crownLandFileNumber": "19031", + "landDescription": "LOT 5 OF LOT 1 BLOCK 1 DISTRICT LOT 3 PLAN 4937" }, { + "uuid": "bca21f16-02a7-4752-8587-ffebc9788da3", "siteRegistry": true, - "dateNoted": "2016-07-15", - "parcelID": "18941", - "crownLandUsePIN": "20662", - "crownLandFileNumber": "18162", - "landDescription": "LOT 3 OF LOT 5 BLOCK 5 DISTRICT LOT 5 PLAN 3674" + "dateNoted": "2018-05-02", + "parcelID": "15716", + "crownLandUsePIN": "20718", + "crownLandFileNumber": "18413", + "landDescription": "LOT 1 OF LOT 3 BLOCK 3 DISTRICT LOT 1 PLAN 9444" + }, + { + "uuid": "7f9ebd56-0dca-4eb7-b584-0b8d260f4c59", + "siteRegistry": true, + "dateNoted": "2017-09-03", + "parcelID": "18569", + "crownLandUsePIN": "18167", + "crownLandFileNumber": "19079", + "landDescription": "LOT 3 OF LOT 1 BLOCK 3 DISTRICT LOT 1 PLAN 7362" } ], "siteDisclosures": [ { - "siteRegistry": true, - "dateReceived": "2015-10-25", - "dateCompleted": "2020-08-03", - "dateEntered": "2020-10-09", - "dateRegistrar": "2017-08-02", - "dateLocalAuthorityReceived": "2018-06-10", - "summary": "Maiores cum necessitatibus nesciunt optio asperiores saepe fugiat odio aperiam.", - "informationUsed": "Illo quos hic impedit.\nVitae minus natus nobis sapiente sapiente at.\nAut atque accusamus.\nOptio consequuntur nemo.", - "pastOrPresentOrders": "Quas sed eligendi fugit enim a ullam reiciendis fuga.", + "uuid": "81d6b3c9-3d02-4eb8-9a90-898c399cc0cf", + "siteRegistry": false, + "dateReceived": "2022-02-21", + "dateCompleted": "2018-01-10", + "dateEntered": "2016-07-12", + "dateRegistrar": "2016-09-11", + "dateLocalAuthorityReceived": "2021-09-10", + "summary": "Ipsa repellendus commodi optio blanditiis.\nEaque voluptatum quisquam non excepturi reprehenderit alias eligendi inventore culpa.", + "informationUsed": "Explicabo quasi in ducimus assumenda quasi officia quo molestias.\nFuga molestias libero.\nNisi atque impedit quos nesciunt ipsum commodi repellendus.\nError tempore consequatur.\nSit odit accusamus numquam dolorum accusamus ipsa quaerat.", + "pastOrPresentOrders": "Deleniti voluptatum beatae iure provident omnis quae.\nAliquam aliquam velit.\nEa reprehenderit assumenda dignissimos quidem tenetur maiores modi.", "commercialAndIndustrialPurposes": [ { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false - }, - { + "uuid": "9574c7d7-e9ee-4068-8030-1a31a40b3e54", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false }, { + "uuid": "d10a6560-2220-46c7-a25f-9eb4003195aa", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false - }, - { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true - } - ] - }, - { - "siteRegistry": false, - "dateReceived": "2021-12-15", - "dateCompleted": "2022-11-03", - "dateEntered": "2014-12-09", - "dateRegistrar": "2016-09-12", - "dateLocalAuthorityReceived": "2016-02-19", - "summary": "Voluptatum quia enim.\nPraesentium excepturi esse excepturi delectus deleniti doloremque vitae velit deserunt.\nLaboriosam quia repellendus magnam provident itaque.", - "informationUsed": "Id doloribus voluptatem autem id voluptatibus nobis cum placeat ut.\nDeserunt aliquam eveniet.\nAd rerum soluta iste cum hic eligendi quis at.", - "pastOrPresentOrders": "Perferendis consequuntur in.", - "commercialAndIndustrialPurposes": [ - { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false - }, - { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false - }, - { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true - }, - { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false } ] } ], "activityLog": [ { + "uuid": "0e2f4b58-6ea3-4d27-a7cb-aee729a335d8", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "NICOLAS BETH", - "timestamp": "2021-06-15" + "user": "HARBER-MCCLURE MALVINA", + "timestamp": "2021-01-27" }, { + "uuid": "5c44e6df-d987-4618-99ce-9c5e64ec52b9", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "ZBONCAK CECELIA", - "timestamp": "2019-10-15" + "user": "WEIMANN LUCIENNE", + "timestamp": "2022-04-28" }, { + "uuid": "930fdb2d-5655-4114-89d8-91cd58e25689", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "GOODWIN ERNESTINA", - "timestamp": "2017-10-17" + "user": "MURPHY ROD", + "timestamp": "2014-01-23" }, { + "uuid": "19942060-ee8e-4b21-b7e5-74dc3ce17817", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "KUNZE NIA", - "timestamp": "2019-05-25" + "user": "CARTER HARVEY", + "timestamp": "2018-10-07" }, { + "uuid": "2f788b42-1aa7-4654-a153-8da2dc6b88e5", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "SAWAYN CARLOS", + "timestamp": "2017-10-11" + }, + { + "uuid": "30261f2f-f924-4ea6-89aa-27d5e6951d25", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "BEDNAR EUDORA", - "timestamp": "2020-09-10" + "user": "FRITSCH KELTON", + "timestamp": "2021-09-04" }, { + "uuid": "52e18ff1-04fa-4298-bb34-cc6126ae035c", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "BERGNAUM MOLLIE", - "timestamp": "2018-03-27" + "user": "GREENFELDER HILTON", + "timestamp": "2022-03-19" }, { + "uuid": "380a23c3-9762-4eb4-aaaa-92d1267b2ac1", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "LINDGREN TRE", - "timestamp": "2023-08-10" + "user": "ROWE DORRIS", + "timestamp": "2022-09-24" + }, + { + "uuid": "33d4749d-d3a0-470a-b6f4-e5355aa8a7c6", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "KEELING DAPHNEY", + "timestamp": "2018-09-27" } ], "associatedSites": [ { - "dateNoted": "2018-03-16", + "uuid": "2179f9b6-bcf0-4d6b-9d77-f659d9540e5d", + "dateNoted": "2023-06-21", "notes": "", - "parcelID": "20189", - "siteID": "19608", + "parcelID": "15946", + "siteID": "17666", "siteRegistry": true }, { - "dateNoted": "2021-04-13", + "uuid": "0da33f73-2a9f-47ef-b918-2d2c185b339a", + "dateNoted": "2017-04-29", "notes": "", - "parcelID": "15411", - "siteID": "17779", - "siteRegistry": false + "parcelID": "18240", + "siteID": "17101", + "siteRegistry": true } ] }, { - "uuid": "ac6ddafd-2e73-4265-9d42-b106d9bffadf", - "siteID": 20383, - "address": "57602 Coralie Skyway", - "latitude": 58.4244, - "longitude": -120.6009, - "lastUpdated": "2020-02-18", - "city": "Townecester", - "region": " North Coast", - "victoriaFile": "26250-20/14341", + "uuid": "e5cc57d5-afaa-4b68-b99b-6802d8b28c5b", + "siteID": 20682, + "address": "88598 Karelle Fields", + "latitude": 49.6052, + "longitude": -120.9783, + "lastUpdated": "2018-02-07", + "city": "South Juanitaland", + "region": "Kootenay", + "victoriaFile": "26250-20/13471", "regionalFile": "N/A", "parcelIDs": [ - 2180557, - 2813153, - 8495058, - 5905673, - 9329057 + 2108605, + 6681550, + 6186978, + 4810779, + 8281141 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2016-12-17", - "completed": "2015-05-31", - "initiated": "2023-02-15", - "ministryContact": "SWANIAWSKI LEA", + "uuid": "fbef5485-71df-468f-817a-d48c194cda32", + "createdAt": "2015-07-29", + "completed": "2015-02-02", + "initiated": "2023-05-29", + "ministryContact": "BARROWS NORBERT", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -52265,63 +60457,26 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - } - ], - "siteRegistry": false - }, - { - "createdAt": "2021-10-18", - "completed": "2019-10-10", - "initiated": "2016-03-30", - "ministryContact": "HEATHCOTE THEODORE", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { + "uuid": "49fd51b8-233d-4b70-a5d0-fff838717c4f", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { + "uuid": "e0005179-dd24-4554-9beb-9b5b11a10523", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2019-12-05", - "completed": "2022-07-08", - "initiated": "2019-01-04", - "ministryContact": "BERGSTROM PROVIDENCI", + "uuid": "e1cb1de1-2534-4e28-99ef-c9b29450cf8d", + "createdAt": "2015-06-21", + "completed": "2016-09-02", + "initiated": "2021-06-18", + "ministryContact": "SCHIMMEL ZOIE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -52330,99 +60485,28 @@ ], "notationParticipants": [ { + "uuid": "1544f92a-8176-4087-b034-411d3df0e00e", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false }, { + "uuid": "dc5334d1-0416-41d5-8eac-58e96fda06f6", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - } - ], - "siteRegistry": true - }, - { - "createdAt": "2019-08-11", - "completed": "2016-06-27", - "initiated": "2023-02-20", - "ministryContact": "SIMONIS-RUNTE ANIBAL", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { + "uuid": "c3686e2b-b178-4ca6-9514-94360bc08cc4", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - } - ], - "siteRegistry": false - }, - { - "createdAt": "2021-04-01", - "completed": "2018-11-30", - "initiated": "2016-03-08", - "ministryContact": "JAKUBOWSKI AMELIA", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { + "uuid": "e2aa75f6-ce54-491b-8480-0cbc479a68f3", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false } ], "siteRegistry": false @@ -52430,242 +60514,207 @@ ], "participants": [ { - "name": "IPSUM", - "endDate": "2014-12-24", - "startDate": "2017-10-10", + "uuid": "4ee80b76-8cbd-49bc-964d-843931636454", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2020-04-15", + "startDate": "2014-01-13", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": true - }, - { - "name": "IPSUM", - "endDate": "2018-04-27", - "startDate": "2015-12-23", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": true + "siteRegistry": false }, { + "uuid": "d794c898-2ff8-48bf-96b4-e7466e84ba81", "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2018-02-18", - "startDate": "2015-04-27", + "endDate": "2015-09-08", + "startDate": "2023-09-06", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], - "siteRegistry": false + "siteRegistry": true } ], "suspectLandUses": [ { + "uuid": "8b534fe0-c92a-40ca-8060-46da10f9df50", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2015-07-12 (described on Site Profile dated 2015-07-12)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "uuid": "a88fa6f2-253b-454a-a0ee-b30c3fc94f7d", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2013-10-27 (described on Site Profile dated 2013-10-27)", + "notes": "INSERTED FOR SITE PROFILE DATED 2016-10-01 (described on Site Profile dated 2016-10-01)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { + "uuid": "69108ed3-0cc5-44c2-9f67-f0282f5d27d3", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2023-03-19 (described on Site Profile dated 2023-03-19)", + "notes": "INSERTED FOR SITE PROFILE DATED 2018-06-04 (described on Site Profile dated 2018-06-04)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { + "uuid": "b3e18072-d2e0-4e41-9dcb-fed7b398d802", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-03-01 (described on Site Profile dated 2022-03-01)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" - }, - { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2020-10-05 (described on Site Profile dated 2020-10-05)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "notes": "INSERTED FOR SITE PROFILE DATED 2016-07-04 (described on Site Profile dated 2016-07-04)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-06-28 (described on Site Profile dated 2022-06-28)", + "uuid": "34391458-1194-406d-b6bc-e09073af45ff", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2022-10-02 (described on Site Profile dated 2022-10-02)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], "parcelDescriptions": [ { + "uuid": "47b07011-ca4e-4790-b5f1-ae937b416e0f", "siteRegistry": false, - "dateNoted": "2022-05-08", - "parcelID": "20859", - "crownLandUsePIN": "16330", - "crownLandFileNumber": "19453", - "landDescription": "LOT 1 OF LOT 2 BLOCK 2 DISTRICT LOT 4 PLAN 8789" - }, - { - "siteRegistry": true, - "dateNoted": "2018-06-20", - "parcelID": "18079", - "crownLandUsePIN": "18124", - "crownLandFileNumber": "18874", - "landDescription": "LOT 2 OF LOT 2 BLOCK 1 DISTRICT LOT 2 PLAN 8918" + "dateNoted": "2020-09-06", + "parcelID": "20335", + "crownLandUsePIN": "20655", + "crownLandFileNumber": "18763", + "landDescription": "LOT 1 OF LOT 3 BLOCK 5 DISTRICT LOT 5 PLAN 2997" }, { - "siteRegistry": true, - "dateNoted": "2015-08-26", - "parcelID": "20141", - "crownLandUsePIN": "19220", - "crownLandFileNumber": "20666", - "landDescription": "LOT 5 OF LOT 3 BLOCK 4 DISTRICT LOT 1 PLAN 8688" + "uuid": "c8214011-1347-47f8-b090-0f9537bdaa2f", + "siteRegistry": false, + "dateNoted": "2022-06-04", + "parcelID": "19009", + "crownLandUsePIN": "16855", + "crownLandFileNumber": "15591", + "landDescription": "LOT 3 OF LOT 5 BLOCK 5 DISTRICT LOT 4 PLAN 7293" }, { + "uuid": "cde15854-5c59-4180-a3e8-3590b1d89527", "siteRegistry": false, - "dateNoted": "2018-11-15", - "parcelID": "19143", - "crownLandUsePIN": "15995", - "crownLandFileNumber": "18641", - "landDescription": "LOT 5 OF LOT 4 BLOCK 2 DISTRICT LOT 1 PLAN 4997" + "dateNoted": "2014-09-18", + "parcelID": "17067", + "crownLandUsePIN": "20866", + "crownLandFileNumber": "20588", + "landDescription": "LOT 3 OF LOT 3 BLOCK 1 DISTRICT LOT 1 PLAN 7928" } ], "siteDisclosures": [ { + "uuid": "b9787f7e-0567-44b1-9026-7831d1fcfeac", "siteRegistry": true, - "dateReceived": "2021-06-05", - "dateCompleted": "2018-12-16", - "dateEntered": "2019-05-10", - "dateRegistrar": "2016-09-15", - "dateLocalAuthorityReceived": "2014-06-03", - "summary": "Sunt quaerat cupiditate ut in suscipit dolorem ipsam iusto consequuntur.\nOmnis fugiat voluptatum veniam expedita incidunt dolorum.\nVero nesciunt quam aliquam blanditiis.", - "informationUsed": "Laudantium architecto expedita expedita occaecati blanditiis deleniti unde.\nMagnam debitis itaque.\nQuod error debitis voluptate repellat alias deserunt quidem.", - "pastOrPresentOrders": "Quaerat dolorum voluptate nihil incidunt quam libero eaque.\nVoluptatum reprehenderit soluta libero laborum iste numquam quidem doloremque veniam.", - "commercialAndIndustrialPurposes": [ - { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true - }, - { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true - } - ] - }, - { - "siteRegistry": true, - "dateReceived": "2016-07-06", - "dateCompleted": "2022-11-05", - "dateEntered": "2022-06-05", - "dateRegistrar": "2015-08-09", - "dateLocalAuthorityReceived": "2022-01-02", - "summary": "Reprehenderit rem placeat voluptates minima eligendi ex blanditiis eligendi.", - "informationUsed": "Ducimus beatae inventore perspiciatis.\nEum doloremque repellendus eum quis quia mollitia magnam enim magnam.\nAnimi et modi ad optio dignissimos veniam consequatur sint.\nExercitationem commodi praesentium excepturi velit eveniet consequatur.\nVoluptates ipsum sit deleniti reprehenderit at.", - "pastOrPresentOrders": "At vel deleniti dolor.", + "dateReceived": "2022-07-12", + "dateCompleted": "2016-06-15", + "dateEntered": "2022-02-17", + "dateRegistrar": "2022-10-16", + "dateLocalAuthorityReceived": "2015-04-24", + "summary": "Corrupti esse placeat et commodi eveniet.\nBeatae maiores id consequatur.", + "informationUsed": "Adipisci sed est explicabo sint impedit non earum.\nPariatur facere ipsum numquam a.\nNumquam corporis recusandae.\nProvident eaque asperiores cupiditate nemo.", + "pastOrPresentOrders": "Excepturi inventore fugiat possimus excepturi illo nulla in.\nUllam reiciendis nobis.", "commercialAndIndustrialPurposes": [ { + "uuid": "6dbf39db-2ce0-4b06-a303-0cf725a584ed", "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, { + "uuid": "295d7f06-57a7-4a6c-b8dc-6c0c9e99fd84", "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true - }, - { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false - }, - { - "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true + "siteRegistry": false } ] } ], "activityLog": [ { + "uuid": "eee94eeb-3f65-4356-8318-ff4cb0061a13", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "KERLUKE LONIE", - "timestamp": "2014-07-13" - }, - { - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "STROSIN GLADYS", - "timestamp": "2016-11-06" + "user": "GREENHOLT LORENZO", + "timestamp": "2021-01-06" }, { + "uuid": "d84c00cd-c719-44a6-a4ff-f04cd380612d", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "BAHRINGER KELSI", - "timestamp": "2023-06-22" + "user": "MARKS PAULINE", + "timestamp": "2015-12-05" }, { - "siteRegistry": true, + "uuid": "e05f91bf-38d9-4f14-a03c-a1a5fe0d5579", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "RUTHERFORD TIMMY", - "timestamp": "2020-03-25" + "user": "MURRAY LEON", + "timestamp": "2023-03-24" }, { + "uuid": "36e54e4e-dca4-4dcf-bb4f-ff49b3bdf0cf", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "SPENCER NOLA", - "timestamp": "2023-04-22" + "user": "WISOZK GAIL", + "timestamp": "2016-03-08" }, { - "siteRegistry": false, + "uuid": "b83b0474-aa35-418a-b761-18dfcbef3b29", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "VANDERVORT MARSHALL", - "timestamp": "2014-08-15" + "user": "GRIMES ROWENA", + "timestamp": "2016-01-04" } ], "associatedSites": [ { - "dateNoted": "2018-08-23", + "uuid": "74518d80-0cfc-4da0-bb31-eb9f969814a9", + "dateNoted": "2021-10-26", "notes": "", - "parcelID": "19515", - "siteID": "18665", + "parcelID": "19543", + "siteID": "16186", "siteRegistry": false }, { - "dateNoted": "2014-07-09", + "uuid": "307abfb3-64a4-4441-bcfc-263fdd4ee2d6", + "dateNoted": "2017-04-11", "notes": "", - "parcelID": "15514", - "siteID": "20468", - "siteRegistry": false + "parcelID": "15464", + "siteID": "17390", + "siteRegistry": true }, { - "dateNoted": "2022-04-11", + "uuid": "b40f8205-cb73-4c0d-b7f5-d9bf4d8e4581", + "dateNoted": "2018-10-02", "notes": "", - "parcelID": "16738", - "siteID": "18529", - "siteRegistry": true + "parcelID": "20982", + "siteID": "18416", + "siteRegistry": false } ] }, { - "uuid": "9bdc94d3-3533-41ee-9cc4-e779afba92b6", - "siteID": 18350, - "address": "14059 Reichel Avenue", - "latitude": 52.9621, - "longitude": -128.4714, - "lastUpdated": "2021-07-16", - "city": "White Plains", - "region": " North Coast", - "victoriaFile": "26250-20/19232", + "uuid": "d13d4273-ef3d-41fb-84c1-cfd1b5725d1b", + "siteID": 20203, + "address": "9978 Mohr Roads", + "latitude": 54.2928, + "longitude": -138.9652, + "lastUpdated": "2014-04-23", + "city": "New Dellboro", + "region": "Vancouver Island/Coast", + "victoriaFile": "26250-20/13696", "regionalFile": "N/A", "parcelIDs": [ - 5184006, - 3840190, - 7919199, - 7831339, - 2627514 + 4028691, + 811624, + 3561341, + 9510437, + 1493053 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2017-10-21", - "completed": "2016-07-21", - "initiated": "2019-05-03", - "ministryContact": "WEISSNAT DEANNA", + "uuid": "396b17cc-f9f3-48a8-bb99-f2eb15a487b6", + "createdAt": "2020-08-14", + "completed": "2014-07-18", + "initiated": "2019-12-12", + "ministryContact": "BRUEN MALACHI", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -52674,38 +60723,32 @@ ], "notationParticipants": [ { + "uuid": "9fcda53c-3705-4320-9b76-5cef91648814", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false }, { + "uuid": "dcf886dd-e311-4a0c-b686-658b0737cde1", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false + "role": "SUBMITTED BY", + "siteRegistry": true }, { + "uuid": "fb6f2b55-f1ab-4c4c-a659-e3ebce6035e3", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true } ], "siteRegistry": true }, { - "createdAt": "2020-11-20", - "completed": "2015-08-31", - "initiated": "2016-07-03", - "ministryContact": "COLE-MAYERT DANIELA", + "uuid": "f4541f3a-62a6-48c6-8311-a3a64fb78b11", + "createdAt": "2017-12-03", + "completed": "2013-10-24", + "initiated": "2018-10-15", + "ministryContact": "HAMILL BRAYAN", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -52714,38 +60757,44 @@ ], "notationParticipants": [ { + "uuid": "51950537-40fc-4d0c-9f56-877492fbe52d", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { + "uuid": "ca3c95e7-813d-4d23-9124-7eccfd3e0554", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false + "uuid": "bd7c4ed6-2adc-4186-9d9d-993265268eb2", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "b5c18bd9-59fd-477e-a642-ba5036dfc5d4", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true }, { + "uuid": "56ada901-a017-443b-88e6-e59ad7bf4af9", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true } ], "siteRegistry": true }, { - "createdAt": "2016-05-31", - "completed": "2019-05-23", - "initiated": "2014-03-01", - "ministryContact": "LOCKMAN MALLORY", + "uuid": "7b085b5b-8131-4505-a177-c105cc605286", + "createdAt": "2023-03-04", + "completed": "2015-07-07", + "initiated": "2015-11-19", + "ministryContact": "O'KON ALFONSO", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -52754,49 +60803,39 @@ ], "notationParticipants": [ { + "uuid": "af27dc33-231a-4efb-bfd1-eb2f08035718", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "uuid": "125d955a-9309-4c94-b379-dde5f290b057", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", "siteRegistry": false - } - ], - "siteRegistry": false - }, - { - "createdAt": "2017-07-05", - "completed": "2014-07-31", - "initiated": "2016-01-09", - "ministryContact": "KUHLMAN JOANNE", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ + }, { + "uuid": "6196fb01-2cf4-4e49-9a1a-f5dbbb021733", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false }, { + "uuid": "917d8e39-4ed6-455a-9386-962f2a46d7ab", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true + "role": "SUBMITTED BY", + "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false } ], "participants": [ { - "name": "AMET, DOLOR SIT", - "endDate": "2015-01-30", - "startDate": "2015-01-17", + "uuid": "d7d3825e-1eec-4360-bf9d-e2f1558b6a7a", + "name": "IPSUM", + "endDate": "2022-12-04", + "startDate": "2016-05-19", "notes": "", "roles": [ "EMPLOYEE" @@ -52804,19 +60843,10 @@ "siteRegistry": true }, { - "name": "IPSUM", - "endDate": "2022-10-04", - "startDate": "2015-09-28", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2020-06-23", - "startDate": "2020-02-08", + "uuid": "db824cab-26f5-46ce-a5a5-66da4f7e144d", + "name": "AMET, DOLOR SIT", + "endDate": "2022-02-24", + "startDate": "2019-01-29", "notes": "", "roles": [ "EMPLOYEE" @@ -52826,172 +60856,224 @@ ], "suspectLandUses": [ { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2013-10-19 (described on Site Profile dated 2013-10-19)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" - }, - { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-06-18 (described on Site Profile dated 2017-06-18)", + "uuid": "08e9c47a-1a75-4ff7-9db4-1b5538b83216", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2022-10-23 (described on Site Profile dated 2022-10-23)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-10-01 (described on Site Profile dated 2015-10-01)", + "uuid": "719694d9-3350-4db7-b425-e9e1261e85cf", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2014-09-16 (described on Site Profile dated 2014-09-16)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2023-04-19 (described on Site Profile dated 2023-04-19)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" - }, - { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2023-04-07 (described on Site Profile dated 2023-04-07)", + "uuid": "5b5a7f26-c496-41ab-90a9-88f970830c90", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2014-04-14 (described on Site Profile dated 2014-04-14)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], "parcelDescriptions": [ { + "uuid": "216474bb-e33a-42ba-b1b6-11d242bea984", "siteRegistry": true, - "dateNoted": "2013-10-28", - "parcelID": "20480", - "crownLandUsePIN": "19832", - "crownLandFileNumber": "17664", - "landDescription": "LOT 3 OF LOT 4 BLOCK 3 DISTRICT LOT 3 PLAN 6520" - }, - { - "siteRegistry": true, - "dateNoted": "2019-03-29", - "parcelID": "19629", - "crownLandUsePIN": "17192", - "crownLandFileNumber": "16823", - "landDescription": "LOT 1 OF LOT 2 BLOCK 5 DISTRICT LOT 5 PLAN 6377" + "dateNoted": "2022-01-07", + "parcelID": "15250", + "crownLandUsePIN": "16826", + "crownLandFileNumber": "15477", + "landDescription": "LOT 5 OF LOT 5 BLOCK 4 DISTRICT LOT 1 PLAN 6015" }, { + "uuid": "4621a64b-c304-4980-8715-00e9c7d98850", "siteRegistry": false, - "dateNoted": "2020-06-08", - "parcelID": "17820", - "crownLandUsePIN": "16852", - "crownLandFileNumber": "18258", - "landDescription": "LOT 4 OF LOT 1 BLOCK 1 DISTRICT LOT 3 PLAN 4478" + "dateNoted": "2019-04-28", + "parcelID": "17954", + "crownLandUsePIN": "17398", + "crownLandFileNumber": "16509", + "landDescription": "LOT 2 OF LOT 3 BLOCK 3 DISTRICT LOT 4 PLAN 3461" }, { + "uuid": "1fdffd0b-0c67-4caa-acb6-cd99c703246e", "siteRegistry": true, - "dateNoted": "2018-10-13", - "parcelID": "16785", - "crownLandUsePIN": "19330", - "crownLandFileNumber": "19982", - "landDescription": "LOT 5 OF LOT 1 BLOCK 1 DISTRICT LOT 2 PLAN 5958" + "dateNoted": "2017-03-19", + "parcelID": "18353", + "crownLandUsePIN": "16140", + "crownLandFileNumber": "17393", + "landDescription": "LOT 4 OF LOT 3 BLOCK 1 DISTRICT LOT 1 PLAN 9155" }, { - "siteRegistry": true, - "dateNoted": "2021-03-02", - "parcelID": "16243", - "crownLandUsePIN": "17277", - "crownLandFileNumber": "15380", - "landDescription": "LOT 3 OF LOT 4 BLOCK 1 DISTRICT LOT 3 PLAN 9489" + "uuid": "f14b9992-186e-4ad0-b4e1-919ed25dc7cd", + "siteRegistry": false, + "dateNoted": "2022-08-15", + "parcelID": "18141", + "crownLandUsePIN": "18797", + "crownLandFileNumber": "15905", + "landDescription": "LOT 3 OF LOT 4 BLOCK 4 DISTRICT LOT 2 PLAN 9759" } ], "siteDisclosures": [ { - "siteRegistry": true, - "dateReceived": "2018-11-10", - "dateCompleted": "2015-11-27", - "dateEntered": "2016-05-06", - "dateRegistrar": "2016-12-20", - "dateLocalAuthorityReceived": "2022-02-07", - "summary": "Libero exercitationem inventore illum a architecto laudantium sunt atque minus.\nAb officia rem expedita.", - "informationUsed": "Magni veritatis saepe voluptatum modi commodi necessitatibus accusantium odio.\nQuis vel eius.\nAd quo magni nostrum quod.", - "pastOrPresentOrders": "Perferendis temporibus tempore suscipit cum doloremque ullam et quas pariatur.\nFugiat temporibus nesciunt earum accusantium iusto delectus ratione earum.\nTemporibus necessitatibus quis eaque ut sed perferendis.", + "uuid": "8083b977-56a6-44ab-a9db-66f42fee7389", + "siteRegistry": false, + "dateReceived": "2023-07-02", + "dateCompleted": "2017-07-19", + "dateEntered": "2019-10-11", + "dateRegistrar": "2021-06-09", + "dateLocalAuthorityReceived": "2023-06-06", + "summary": "Ab vitae perspiciatis.", + "informationUsed": "Neque inventore facere placeat temporibus.\nQuisquam ut quam inventore dicta odit commodi odio ipsam.\nNam praesentium aliquid saepe.\nRem ullam nobis maiores tenetur.", + "pastOrPresentOrders": "Qui quam ad laboriosam error delectus autem repellendus quis eum.", "commercialAndIndustrialPurposes": [ { - "scheduleReference": "F2*", + "uuid": "91e91144-3fe9-45f1-96fe-98c08fcbf9da", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { + "uuid": "7f48b1d6-0a44-4dd1-8d06-3f5651a8ec2b", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false } ] + }, + { + "uuid": "09bf10e5-13d0-4848-83e9-d5a7bb1351f5", + "siteRegistry": true, + "dateReceived": "2015-11-27", + "dateCompleted": "2022-05-28", + "dateEntered": "2015-01-21", + "dateRegistrar": "2017-11-11", + "dateLocalAuthorityReceived": "2020-05-21", + "summary": "A ipsa provident magni laborum quia placeat unde.\nA autem assumenda.", + "informationUsed": "Aut voluptatem odit.\nQuibusdam neque quasi sint itaque.\nCommodi porro iusto architecto exercitationem nam.\nFugit error at tempora debitis at dolor.\nOdio totam ut nihil molestiae vitae.", + "pastOrPresentOrders": "At commodi mollitia sit itaque placeat commodi blanditiis.\nVeritatis cupiditate ut saepe pariatur natus minima dignissimos modi reprehenderit.\nAsperiores repudiandae iure ea blanditiis accusantium.", + "commercialAndIndustrialPurposes": [ + { + "uuid": "bc6502f6-b5a6-4f36-a1ef-a061c4ab44c6", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "uuid": "a7ad4d4c-3b19-45a6-a935-b837311fab80", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "uuid": "660dc6f5-5315-4b14-ab27-9ec9c9681b07", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + } + ] } ], "activityLog": [ { + "uuid": "44d7ab13-03a0-491d-90c7-35fa669e9148", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "STEHR TRISTON", + "timestamp": "2023-03-12" + }, + { + "uuid": "891061ce-5fb3-4b2d-8283-8897ec2f2fae", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "KUTCH MARJORY", + "timestamp": "2014-04-27" + }, + { + "uuid": "45a5af6a-1b9a-4ff6-9b2a-cfc73f92de90", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "BORER FRITZ", - "timestamp": "2018-11-06" + "user": "LITTLE-KEEBLER LEORA", + "timestamp": "2017-10-26" }, { + "uuid": "b19e562c-c0cd-42f3-8acd-83e8ca14fda8", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "KING EILEEN", - "timestamp": "2015-11-18" + "user": "BAILEY EDYTH", + "timestamp": "2016-11-14" }, { + "uuid": "9d918d72-1036-4111-8ef5-59344c8311da", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "HOMENICK SIBYL", - "timestamp": "2016-11-28" + "user": "GOLDNER DALLIN", + "timestamp": "2014-07-22" }, { + "uuid": "010eb3d9-1142-4233-9da9-af4dff435bc4", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "ULLRICH BENNY", - "timestamp": "2017-12-02" + "user": "LEBSACK PEGGIE", + "timestamp": "2021-07-18" }, { + "uuid": "aeb024ab-2b91-4fe4-9666-e75163efe2f4", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "HIRTHE ROSCOE", - "timestamp": "2022-11-06" + "user": "HINTZ KELSIE", + "timestamp": "2015-02-22" + }, + { + "uuid": "d57c5a24-f834-45b6-8ce6-55296301d7e9", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "LOCKMAN YESSENIA", + "timestamp": "2016-05-25" + }, + { + "uuid": "e10e970c-af5f-46eb-b54f-4df06055e181", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "RITCHIE REVA", + "timestamp": "2023-06-10" } ], "associatedSites": [ { - "dateNoted": "2015-10-06", + "uuid": "efb11276-8ec3-42b0-a2d2-13da84020016", + "dateNoted": "2013-12-03", "notes": "", - "parcelID": "20106", - "siteID": "18634", + "parcelID": "18757", + "siteID": "16364", "siteRegistry": true - }, - { - "dateNoted": "2015-05-22", - "notes": "", - "parcelID": "17207", - "siteID": "20492", - "siteRegistry": false } ] }, { - "uuid": "9fb96f53-9f93-4eed-a98c-0c667557e298", - "siteID": 18123, - "address": "5638 Jaleel Rapids", - "latitude": 50.7615, - "longitude": -122.6735, - "lastUpdated": "2018-06-08", - "city": "Lake Violashire", - "region": "Vancouver Island/Coast", - "victoriaFile": "26250-20/13927", + "uuid": "557fcf4d-a016-430c-b876-62b5489a62a4", + "siteID": 20059, + "address": "797 Milan Plain", + "latitude": 56.5869, + "longitude": -123.3119, + "lastUpdated": "2022-08-13", + "city": "New Kristianstad", + "region": "Cariboo", + "victoriaFile": "26250-20/14163", "regionalFile": "N/A", "parcelIDs": [ - 2995520, - 2535493, - 9745429, - 9232240, - 3372130 + 2869538, + 7289333, + 743646, + 968115, + 9337558 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2016-04-07", - "completed": "2016-10-10", - "initiated": "2019-05-09", - "ministryContact": "BARTON JESUS", + "uuid": "35485a48-eb33-4b15-affd-1608df01c17d", + "createdAt": "2023-05-05", + "completed": "2016-07-14", + "initiated": "2014-02-28", + "ministryContact": "LUBOWITZ FRANK", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -53000,38 +61082,38 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { + "uuid": "75bbd5d1-d40d-439f-8a86-b9a2eebda62c", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", + "uuid": "f5bbd987-6730-4c54-a454-3151b8b8035f", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", + "uuid": "ea9a7aa1-ba42-4a5e-9291-508c0e73946a", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true }, { + "uuid": "3bc8f565-c8ae-4403-a910-345c2adc2eb4", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2020-03-23", - "completed": "2018-11-08", - "initiated": "2020-09-22", - "ministryContact": "O'CONNER CHANDLER", + "uuid": "5e46df12-f372-406c-b639-b379e3f90616", + "createdAt": "2021-03-25", + "completed": "2019-02-12", + "initiated": "2017-07-21", + "ministryContact": "LYNCH LEOPOLD", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -53040,78 +61122,303 @@ ], "notationParticipants": [ { + "uuid": "39269e85-d509-4077-bc84-7266889b822b", "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "7a36b76f-be4f-41f5-a126-39999d2bc1e7", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { + "uuid": "a13505ea-8136-4081-9d0b-b3d9b87eecee", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true + "role": "SUBMITTED BY", + "siteRegistry": false }, { + "uuid": "f81bb160-882f-44eb-88c0-592ce1fc714e", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false }, { + "uuid": "5828d21e-3794-4fe7-af36-05db7ccbc018", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true } ], + "siteRegistry": true + } + ], + "participants": [ + { + "uuid": "b16a9e0c-b0cd-4906-8a97-295675bd57bd", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2017-08-05", + "startDate": "2017-07-28", + "notes": "", + "roles": [ + "EMPLOYEE" + ], "siteRegistry": false }, { - "createdAt": "2021-06-07", - "completed": "2020-03-22", - "initiated": "2021-06-23", - "ministryContact": "WATERS-KOSS RONNY", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" + "uuid": "7001bfb7-e191-4190-ad7d-b85e10c1276a", + "name": "AMET, DOLOR SIT", + "endDate": "2020-06-12", + "startDate": "2015-02-18", + "notes": "", + "roles": [ + "ORGANIZATION" ], - "notationParticipants": [ + "siteRegistry": false + }, + { + "uuid": "765d67eb-ddde-4d12-93db-0bab9a80ceef", + "name": "IPSUM", + "endDate": "2021-12-18", + "startDate": "2023-02-10", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "uuid": "8cc6eb22-4d21-4d7e-9bf3-d267aad2c35d", + "name": "IPSUM", + "endDate": "2017-03-09", + "startDate": "2018-02-07", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + } + ], + "suspectLandUses": [ + { + "uuid": "97fbd3b0-fb4e-4f86-9046-3584d9861028", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2020-08-03 (described on Site Profile dated 2020-08-03)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "uuid": "49fd60d7-f67a-4878-b446-ddd38667b5b6", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2022-05-24 (described on Site Profile dated 2022-05-24)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + } + ], + "parcelDescriptions": [ + { + "uuid": "d1e5b4df-4636-4f32-ae73-da651c1e465a", + "siteRegistry": false, + "dateNoted": "2020-12-01", + "parcelID": "15416", + "crownLandUsePIN": "15507", + "crownLandFileNumber": "16471", + "landDescription": "LOT 5 OF LOT 1 BLOCK 1 DISTRICT LOT 5 PLAN 7395" + }, + { + "uuid": "ef9c4661-8b37-4ba3-9994-3e2b9f9b5d18", + "siteRegistry": false, + "dateNoted": "2014-02-17", + "parcelID": "19036", + "crownLandUsePIN": "19669", + "crownLandFileNumber": "15663", + "landDescription": "LOT 2 OF LOT 5 BLOCK 2 DISTRICT LOT 2 PLAN 6883" + } + ], + "siteDisclosures": [ + { + "uuid": "ff292cda-dce0-47ce-932c-72f134a68fa4", + "siteRegistry": true, + "dateReceived": "2016-08-02", + "dateCompleted": "2017-04-17", + "dateEntered": "2016-05-09", + "dateRegistrar": "2017-12-31", + "dateLocalAuthorityReceived": "2023-01-31", + "summary": "Labore labore necessitatibus architecto dolorem veniam laudantium modi necessitatibus distinctio.\nQuod excepturi eveniet commodi natus perspiciatis a quos.\nIpsa fugit dignissimos autem non beatae nulla quasi quo ad.", + "informationUsed": "Eos quo quia voluptates qui odio perferendis perferendis.\nDolorum dolore dolorem tempora natus inventore ducimus.\nSuscipit error consectetur repudiandae animi iure voluptate officia non.\nBlanditiis nulla voluptatum excepturi.\nSaepe distinctio earum natus saepe laboriosam.", + "pastOrPresentOrders": "Mollitia dolorum quo illum velit quam odio quisquam rem.\nSed rerum molestias consequuntur quam voluptatibus corrupti similique.\nExpedita quaerat provident ut animi.", + "commercialAndIndustrialPurposes": [ { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "uuid": "023b5ade-820a-481c-918b-1e9359f442d0", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "uuid": "675d9a78-917a-4b6a-b09a-68cfe4cc51b3", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "uuid": "d6087d39-213a-4401-9ddd-7eb75d4cd6fe", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false - }, + } + ] + }, + { + "uuid": "02a47191-0194-4afe-84e3-04f613066ef5", + "siteRegistry": false, + "dateReceived": "2017-01-17", + "dateCompleted": "2016-11-09", + "dateEntered": "2018-04-23", + "dateRegistrar": "2020-02-14", + "dateLocalAuthorityReceived": "2018-12-22", + "summary": "Vero repellat excepturi.", + "informationUsed": "Occaecati incidunt ut error eaque eos eius facere nobis.\nMinima earum architecto consectetur voluptas nesciunt dolorem officiis.\nAccusantium doloribus odit exercitationem iure delectus labore.", + "pastOrPresentOrders": "Occaecati sunt officiis nam accusantium et voluptatem.\nOccaecati commodi quos numquam.", + "commercialAndIndustrialPurposes": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "uuid": "d7b7b55a-ca4b-4fda-bcbf-f678950123a9", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "uuid": "32e077f6-346c-4c00-beba-4552e9d06c3d", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false + "uuid": "8cb171ab-2611-4594-aa42-f1056b0d1890", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true } - ], - "siteRegistry": false + ] + } + ], + "activityLog": [ + { + "uuid": "8f75f96d-4f22-4d75-bd29-e335d84a906f", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "RENNER RENEE", + "timestamp": "2016-04-05" + }, + { + "uuid": "61157968-b2fd-4a94-ac84-6c9aff2c3aa6", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "BERGE DEDRICK", + "timestamp": "2020-05-08" + }, + { + "uuid": "a4f37842-a914-4b37-9838-9dcb3d1577e0", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "MOSCISKI MITCHEL", + "timestamp": "2023-01-14" + }, + { + "uuid": "2346f9df-a41f-4de2-b2b5-e17cf5fc2aea", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "ULLRICH ROSALIA", + "timestamp": "2014-05-31" + }, + { + "uuid": "69bd0f9a-2deb-4ca6-a45e-ed2e60ab4e30", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "HARRIS JOAQUIN", + "timestamp": "2018-08-21" + }, + { + "uuid": "a3b90f55-b7e5-426e-aa5c-fc184810b53e", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "ROOB HIRAM", + "timestamp": "2017-06-26" + }, + { + "uuid": "642a2b19-f39d-4220-94c9-66ea627713ed", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "FRANECKI TRYSTAN", + "timestamp": "2021-08-20" + }, + { + "uuid": "1aacdaac-4616-4c08-a77e-a1ce83b213d9", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "STROSIN ZOE", + "timestamp": "2019-05-23" + }, + { + "uuid": "89095d27-4005-4c42-af66-4316e96fd3fe", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "FAHEY LILLIE", + "timestamp": "2014-09-05" + } + ], + "associatedSites": [ + { + "uuid": "248136b8-6091-40ae-8195-3611838306bd", + "dateNoted": "2020-09-29", + "notes": "", + "parcelID": "19787", + "siteID": "18410", + "siteRegistry": true }, { - "createdAt": "2021-11-09", - "completed": "2014-11-01", - "initiated": "2016-03-15", - "ministryContact": "PARISIAN EDMOND", + "uuid": "ddf7a5bf-7d68-4f38-ad25-d483443bf95f", + "dateNoted": "2015-07-12", + "notes": "", + "parcelID": "20421", + "siteID": "20626", + "siteRegistry": true + }, + { + "uuid": "d86b812e-66db-4ced-a014-7ae33c1e8d81", + "dateNoted": "2014-06-23", + "notes": "", + "parcelID": "19512", + "siteID": "15914", + "siteRegistry": true + } + ] + }, + { + "uuid": "eb33c80c-bf3a-4f8f-b0f7-02d21e9d6ad5", + "siteID": 17390, + "address": "912 Sporer Field", + "latitude": 57.2517, + "longitude": -127.1701, + "lastUpdated": "2016-02-18", + "city": "Antoninaview", + "region": "Mainland/Southwest", + "victoriaFile": "26250-20/17106", + "regionalFile": "N/A", + "parcelIDs": [ + 378439, + 688398, + 125930, + 9727075, + 4089367 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "uuid": "335e6902-1fe2-4bed-b360-c817c8f90b0e", + "createdAt": "2021-03-10", + "completed": "2022-07-02", + "initiated": "2014-01-23", + "ministryContact": "WILLMS QUINTEN", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -53120,26 +61427,13 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "uuid": "1f2b7f54-c523-4a84-9ae3-d15a8cf09484", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { + "uuid": "f0016415-ed27-49dc-8bf7-ac34f04e921c", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false @@ -53148,10 +61442,11 @@ "siteRegistry": false }, { - "createdAt": "2020-12-11", - "completed": "2017-11-14", - "initiated": "2017-09-03", - "ministryContact": "GIBSON JULIANNE", + "uuid": "fa9dbaed-475b-468d-b595-31ea294dd25d", + "createdAt": "2016-08-08", + "completed": "2020-08-02", + "initiated": "2019-04-24", + "ministryContact": "HARRIS BRYANA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -53160,13 +61455,21 @@ ], "notationParticipants": [ { + "uuid": "4e527673-a11a-45aa-90f5-ba0caa4c334b", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false }, { + "uuid": "f03e6dfe-6f65-4895-8822-0f654650b496", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "uuid": "05c1c91e-f4d2-4c1f-81d4-b4fbff9fa40b", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false } ], @@ -53175,87 +61478,144 @@ ], "participants": [ { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2020-01-28", - "startDate": "2015-07-21", + "uuid": "ce8b5a39-5ac9-4337-9374-ee33349c06b3", + "name": "AMET, DOLOR SIT", + "endDate": "2021-06-18", + "startDate": "2022-08-19", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": false }, { + "uuid": "e990f748-d965-4967-98a6-72804056f092", "name": "AMET, DOLOR SIT", - "endDate": "2022-09-15", - "startDate": "2016-04-25", + "endDate": "2019-05-28", + "startDate": "2015-11-03", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": false + "siteRegistry": true + }, + { + "uuid": "3984beeb-142e-49cc-b8fe-4df40ef8e8b4", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2016-05-30", + "startDate": "2016-07-05", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "uuid": "e7eaf813-00d3-48a0-88ff-462a4cd93bd5", + "name": "IPSUM", + "endDate": "2023-08-12", + "startDate": "2015-05-07", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true } ], "suspectLandUses": [ { + "uuid": "60239979-a418-46ed-9778-ca35cc89fca8", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-07-10 (described on Site Profile dated 2018-07-10)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "notes": "INSERTED FOR SITE PROFILE DATED 2013-11-16 (described on Site Profile dated 2013-11-16)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-05-05 (described on Site Profile dated 2019-05-05)", + "uuid": "66102849-81c8-4263-bbb5-b12dc29d7cae", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2015-09-13 (described on Site Profile dated 2015-09-13)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { + "uuid": "d89f55f1-c1b2-4f4b-97af-e655304ee68a", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-09-19 (described on Site Profile dated 2015-09-19)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "notes": "INSERTED FOR SITE PROFILE DATED 2023-01-11 (described on Site Profile dated 2023-01-11)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "uuid": "29430466-8625-4c7a-a0d4-e8dc134a765c", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2017-06-07 (described on Site Profile dated 2017-06-07)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "uuid": "1c0ca5f5-5f31-4c4c-99d2-aac751b50a9f", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2022-05-04 (described on Site Profile dated 2022-05-04)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], "parcelDescriptions": [ { - "siteRegistry": true, - "dateNoted": "2022-11-11", - "parcelID": "16555", - "crownLandUsePIN": "16234", - "crownLandFileNumber": "20770", - "landDescription": "LOT 1 OF LOT 4 BLOCK 1 DISTRICT LOT 4 PLAN 2951" + "uuid": "efeba95e-5ed2-4b1a-842c-c55a45c4923f", + "siteRegistry": false, + "dateNoted": "2022-06-25", + "parcelID": "20644", + "crownLandUsePIN": "20435", + "crownLandFileNumber": "16816", + "landDescription": "LOT 1 OF LOT 2 BLOCK 5 DISTRICT LOT 1 PLAN 3726" }, { - "siteRegistry": true, - "dateNoted": "2022-09-19", - "parcelID": "19841", - "crownLandUsePIN": "19406", - "crownLandFileNumber": "16378", - "landDescription": "LOT 5 OF LOT 3 BLOCK 1 DISTRICT LOT 5 PLAN 4317" + "uuid": "39407635-1b33-4681-bc4e-732d91e8e1a9", + "siteRegistry": false, + "dateNoted": "2015-10-02", + "parcelID": "18225", + "crownLandUsePIN": "17264", + "crownLandFileNumber": "18324", + "landDescription": "LOT 2 OF LOT 3 BLOCK 1 DISTRICT LOT 3 PLAN 3521" }, { + "uuid": "f5d5474b-7f23-4202-89bd-35e48fe35326", "siteRegistry": true, - "dateNoted": "2014-07-26", - "parcelID": "19385", - "crownLandUsePIN": "18689", - "crownLandFileNumber": "17277", - "landDescription": "LOT 1 OF LOT 4 BLOCK 1 DISTRICT LOT 1 PLAN 6897" + "dateNoted": "2022-07-18", + "parcelID": "18616", + "crownLandUsePIN": "15200", + "crownLandFileNumber": "19423", + "landDescription": "LOT 4 OF LOT 2 BLOCK 3 DISTRICT LOT 5 PLAN 8385" } ], "siteDisclosures": [ { + "uuid": "39420503-bb55-43e5-8a3a-22ed013537c5", "siteRegistry": false, - "dateReceived": "2020-08-30", - "dateCompleted": "2017-05-26", - "dateEntered": "2022-01-16", - "dateRegistrar": "2019-05-18", - "dateLocalAuthorityReceived": "2016-04-29", - "summary": "Nostrum deserunt nihil hic necessitatibus qui.\nNemo dignissimos hic.\nAliquid reiciendis doloribus unde asperiores ullam minus.", - "informationUsed": "Minima odit ratione non.\nRepellendus corrupti alias repellendus velit.\nNostrum in neque quam aperiam odit libero nemo officiis ducimus.\nItaque aperiam facere at.", - "pastOrPresentOrders": "Necessitatibus laudantium tempora veniam corporis error deserunt nostrum officia recusandae.", + "dateReceived": "2016-09-29", + "dateCompleted": "2022-09-13", + "dateEntered": "2018-01-26", + "dateRegistrar": "2021-05-10", + "dateLocalAuthorityReceived": "2020-01-10", + "summary": "Enim ducimus praesentium nobis itaque neque dignissimos dicta officia.\nNecessitatibus atque quia doloribus.", + "informationUsed": "Nesciunt ipsa delectus consectetur dolore.\nRecusandae consequatur accusantium voluptates mollitia reprehenderit officia.\nRerum hic quasi numquam explicabo dolore iusto accusantium.", + "pastOrPresentOrders": "Laborum in quisquam maxime odio vitae laboriosam asperiores repudiandae.\nConsequuntur dolores magni aperiam dolorem soluta libero odit.\nAdipisci omnis perferendis libero deserunt maiores.", "commercialAndIndustrialPurposes": [ { + "uuid": "ec1fac79-f460-41f5-bdb7-0bbced33deaf", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { + "uuid": "53dc24f2-3271-4d61-8834-59093b513e07", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "uuid": "b115b905-1c62-4fe3-a3cc-c231fc6118e2", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "uuid": "039e2490-ffd3-4d26-bdf9-2eb3f3c5eeae", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true @@ -53263,120 +61623,127 @@ ] }, { + "uuid": "7e244952-c6d8-4d93-aa5d-050ddda89723", "siteRegistry": true, - "dateReceived": "2019-12-21", - "dateCompleted": "2022-11-16", - "dateEntered": "2022-02-04", - "dateRegistrar": "2023-05-02", - "dateLocalAuthorityReceived": "2017-02-05", - "summary": "Libero mollitia aut at.\nIn sunt praesentium dolorem temporibus placeat.", - "informationUsed": "Voluptates possimus saepe consectetur quas cupiditate culpa ut explicabo magni.\nAperiam corporis aspernatur illo fugiat laboriosam.\nSit facere iste voluptas perspiciatis.\nNatus recusandae necessitatibus fugiat sit enim ab quasi.", - "pastOrPresentOrders": "Dolores itaque tempora id ad architecto ab qui tempora delectus.", + "dateReceived": "2016-10-29", + "dateCompleted": "2017-06-18", + "dateEntered": "2023-01-13", + "dateRegistrar": "2015-07-08", + "dateLocalAuthorityReceived": "2021-12-13", + "summary": "Officiis at tempora.", + "informationUsed": "Optio fugiat ut magnam porro facere molestias tempora corrupti molestiae.\nVelit commodi dolores sapiente explicabo quasi a necessitatibus dolore inventore.\nMolestias pariatur incidunt quos odit nulla et quaerat ea maxime.\nEnim temporibus sapiente consequatur maxime tempora libero adipisci esse.", + "pastOrPresentOrders": "Porro odit corporis esse ut.\nTemporibus sed rerum.", "commercialAndIndustrialPurposes": [ { + "uuid": "1da0f0ce-da72-4a01-a923-a4e68d3638e9", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true - }, - { - "scheduleReference": "F1*", + "uuid": "2587682e-2979-429e-a907-57b19922e6f7", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true + "siteRegistry": false }, { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false + "uuid": "774c6ae1-cd8d-4035-a4f6-0d6ff97ed3be", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true } ] } ], "activityLog": [ { + "uuid": "f93f3c85-d8e1-4116-8286-98c1305830c0", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "O'REILLY NATALIA", - "timestamp": "2015-03-26" + "user": "DICKINSON ADRIANA", + "timestamp": "2019-08-07" }, { + "uuid": "c2844ee4-46ef-4fb5-bfd2-3297ae246eef", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "BEAHAN PRINCE", - "timestamp": "2019-04-07" + "user": "HANSEN ART", + "timestamp": "2023-09-17" }, { + "uuid": "d40be1e6-05a4-4c0e-ad7a-e6ff13270359", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "HARVEY WILEY", - "timestamp": "2023-05-26" + "user": "WIEGAND ZORA", + "timestamp": "2022-07-10" }, { + "uuid": "58c03790-6f79-47b3-83f4-2c9e4e4bd331", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "DOOLEY AUDIE", - "timestamp": "2016-06-24" + "user": "DAVIS VERONA", + "timestamp": "2023-06-20" + }, + { + "uuid": "29618c83-5305-4615-9462-d11d4ea900b1", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "KING IKE", + "timestamp": "2019-02-14" }, { + "uuid": "94334e91-6294-4005-8b60-9904060394e1", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "ROBERTS DESHAWN", - "timestamp": "2022-09-08" + "user": "DOYLE LAYLA", + "timestamp": "2022-11-27" } ], "associatedSites": [ { - "dateNoted": "2022-11-12", - "notes": "", - "parcelID": "18978", - "siteID": "15827", - "siteRegistry": false - }, - { - "dateNoted": "2021-06-06", + "uuid": "e832d72b-3486-477b-872e-6c5d906f907f", + "dateNoted": "2019-12-07", "notes": "", - "parcelID": "17677", - "siteID": "20492", + "parcelID": "17370", + "siteID": "16878", "siteRegistry": true }, { - "dateNoted": "2023-06-08", + "uuid": "251d805a-9ec2-4083-9c9b-fead47d7d95f", + "dateNoted": "2022-09-11", "notes": "", - "parcelID": "16956", - "siteID": "16150", + "parcelID": "19641", + "siteID": "17172", "siteRegistry": false } ] }, { - "uuid": "aa114fd7-38fd-4ee0-917e-11eb75239a18", - "siteID": 17724, - "address": "553 Micaela Extension", - "latitude": 50.4648, - "longitude": -126.2832, - "lastUpdated": "2014-03-18", - "city": "Tillmanmouth", - "region": "Cariboo", - "victoriaFile": "26250-20/15267", + "uuid": "4bfa5895-7365-4370-8e02-47c12bc7f6ea", + "siteID": 20469, + "address": "2490 Schulist Parkways", + "latitude": 57.2925, + "longitude": -125.4953, + "lastUpdated": "2019-02-10", + "city": "Lake Jalenfort", + "region": "Mainland/Southwest", + "victoriaFile": "26250-20/19053", "regionalFile": "N/A", "parcelIDs": [ - 5407281, - 7845000, - 5420039, - 1286929, - 5525925 + 9279391, + 4376154, + 997526, + 362519, + 9082474 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2015-11-16", - "completed": "2013-10-13", - "initiated": "2018-06-02", - "ministryContact": "DENESIK DANNIE", + "uuid": "fab17bfa-7f65-40e4-87ea-d107f3fb5e78", + "createdAt": "2015-03-10", + "completed": "2020-06-16", + "initiated": "2021-09-21", + "ministryContact": "GREEN RYAN", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -53385,23 +61752,44 @@ ], "notationParticipants": [ { + "uuid": "31efa300-9e4b-4278-a914-4899a7d65c0f", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true + }, + { + "uuid": "ae73b59f-bcf8-49e5-96ed-0f1f45948dac", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true }, { + "uuid": "7da6613b-cde7-4e2f-88eb-d96e5c63b254", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true + }, + { + "uuid": "5da79c66-ef6f-4d9b-b2a4-0ba964951b3f", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "uuid": "0d4bb8b6-3ac9-4d3c-86ea-7187f2849312", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2014-03-22", - "completed": "2019-11-07", - "initiated": "2020-06-29", - "ministryContact": "RUECKER MILO", + "uuid": "90c641e7-98b0-4695-8a4d-ea06799addb5", + "createdAt": "2020-11-08", + "completed": "2014-11-15", + "initiated": "2021-07-06", + "ministryContact": "ROSENBAUM CHELSEA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -53410,14 +61798,16 @@ ], "notationParticipants": [ { + "uuid": "7c362b51-e17f-48b3-9e17-8c732891fa33", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", + "uuid": "afd297e9-f451-4d50-b313-d051e29c9425", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true } ], "siteRegistry": false @@ -53425,9 +61815,10 @@ ], "participants": [ { + "uuid": "fc9b4d2b-ebec-45c5-b239-02fc4a8a7af6", "name": "IPSUM", - "endDate": "2017-10-20", - "startDate": "2018-07-29", + "endDate": "2022-04-21", + "startDate": "2021-06-17", "notes": "", "roles": [ "EMPLOYEE" @@ -53435,39 +61826,10 @@ "siteRegistry": true }, { - "name": "AMET, DOLOR SIT", - "endDate": "2016-11-25", - "startDate": "2021-06-04", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": false - }, - { - "name": "IPSUM", - "endDate": "2021-10-02", - "startDate": "2022-04-28", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": false - }, - { - "name": "IPSUM", - "endDate": "2019-01-19", - "startDate": "2015-07-18", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": false - }, - { - "name": "AMET, DOLOR SIT", - "endDate": "2017-09-25", - "startDate": "2022-03-05", + "uuid": "79f11cbb-2cd2-4172-ab34-0438e2b5db1b", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2021-09-02", + "startDate": "2023-01-22", "notes": "", "roles": [ "ORGANIZATION" @@ -53477,78 +61839,83 @@ ], "suspectLandUses": [ { + "uuid": "42944273-1fe9-4a85-8c5e-0e062f751e01", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-08-14 (described on Site Profile dated 2022-08-14)", + "notes": "INSERTED FOR SITE PROFILE DATED 2021-06-20 (described on Site Profile dated 2021-06-20)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { + "uuid": "912e0189-bc8e-4d00-b484-2da07a41f27c", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-04-22 (described on Site Profile dated 2017-04-22)", + "notes": "INSERTED FOR SITE PROFILE DATED 2023-07-06 (described on Site Profile dated 2023-07-06)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { + "uuid": "a933397b-5984-4a6b-b2e9-c46d2fd17f20", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-07-18 (described on Site Profile dated 2015-07-18)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" - } - ], - "parcelDescriptions": [ - { - "siteRegistry": false, - "dateNoted": "2022-03-23", - "parcelID": "20152", - "crownLandUsePIN": "15257", - "crownLandFileNumber": "19022", - "landDescription": "LOT 5 OF LOT 5 BLOCK 3 DISTRICT LOT 1 PLAN 3682" + "notes": "INSERTED FOR SITE PROFILE DATED 2013-11-20 (described on Site Profile dated 2013-11-20)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { + "uuid": "d2923d01-3f2b-45e7-941e-b0126575cf77", "siteRegistry": false, - "dateNoted": "2016-05-17", - "parcelID": "15429", - "crownLandUsePIN": "18915", - "crownLandFileNumber": "19481", - "landDescription": "LOT 2 OF LOT 1 BLOCK 2 DISTRICT LOT 3 PLAN 9378" + "notes": "INSERTED FOR SITE PROFILE DATED 2020-09-25 (described on Site Profile dated 2020-09-25)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { + "uuid": "a3e57762-4694-4e7f-871d-5f8e1190a471", "siteRegistry": true, - "dateNoted": "2021-10-19", - "parcelID": "18381", - "crownLandUsePIN": "17350", - "crownLandFileNumber": "16724", - "landDescription": "LOT 1 OF LOT 5 BLOCK 5 DISTRICT LOT 5 PLAN 8349" + "notes": "INSERTED FOR SITE PROFILE DATED 2019-08-25 (described on Site Profile dated 2019-08-25)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + } + ], + "parcelDescriptions": [ + { + "uuid": "47912c68-f3fb-4a7d-9605-cf5b0224fb05", + "siteRegistry": false, + "dateNoted": "2015-09-29", + "parcelID": "19083", + "crownLandUsePIN": "17917", + "crownLandFileNumber": "15864", + "landDescription": "LOT 2 OF LOT 2 BLOCK 2 DISTRICT LOT 2 PLAN 5684" }, { + "uuid": "742c5ded-2e1c-46ac-b480-da27f62fd67f", "siteRegistry": false, - "dateNoted": "2015-03-22", - "parcelID": "16418", - "crownLandUsePIN": "16222", - "crownLandFileNumber": "20789", - "landDescription": "LOT 1 OF LOT 4 BLOCK 1 DISTRICT LOT 1 PLAN 7740" + "dateNoted": "2016-05-19", + "parcelID": "16575", + "crownLandUsePIN": "19538", + "crownLandFileNumber": "16876", + "landDescription": "LOT 1 OF LOT 5 BLOCK 4 DISTRICT LOT 2 PLAN 3044" } ], "siteDisclosures": [ { - "siteRegistry": true, - "dateReceived": "2021-02-10", - "dateCompleted": "2019-06-19", - "dateEntered": "2017-03-15", - "dateRegistrar": "2015-07-15", - "dateLocalAuthorityReceived": "2014-06-06", - "summary": "Commodi quam voluptatibus architecto perferendis culpa tempore porro inventore soluta.", - "informationUsed": "Minus quo alias quod.\nDolorum incidunt tempora sunt ipsum nam animi quaerat accusantium.\nDolore eaque recusandae deserunt doloribus molestiae in architecto quos maxime.", - "pastOrPresentOrders": "Accusamus tempore odit aspernatur dolore soluta ullam.", + "uuid": "2eed9acd-1b70-43f4-9b79-e0e65e78d8c4", + "siteRegistry": false, + "dateReceived": "2015-04-11", + "dateCompleted": "2017-09-19", + "dateEntered": "2017-11-24", + "dateRegistrar": "2023-05-05", + "dateLocalAuthorityReceived": "2023-03-31", + "summary": "Sapiente laborum voluptates reiciendis numquam illum deserunt molestiae id asperiores.\nIpsam sunt consectetur.\nQuis dolorum facilis quidem delectus nihil.", + "informationUsed": "Facere minima est autem sequi sint.\nIllo quidem optio accusantium commodi blanditiis.\nProvident adipisci ea.\nEst eius expedita blanditiis quisquam tempora corporis natus pariatur provident.", + "pastOrPresentOrders": "Quaerat voluptatibus debitis eos ipsam recusandae perferendis.\nTempore ad est aliquid doloribus optio delectus placeat perferendis non.", "commercialAndIndustrialPurposes": [ { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "uuid": "79eab0e5-c091-46f0-b5cb-1d7a06b2498e", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, { + "uuid": "90c7f5d1-6c0c-4f79-a84a-36801b41fdfa", "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true }, { + "uuid": "5068083d-ac72-4f26-a0a7-9eba1ab98eca", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false @@ -53556,29 +61923,27 @@ ] }, { + "uuid": "884b4ca2-165c-4a3d-95a8-dfc43975b88c", "siteRegistry": true, - "dateReceived": "2022-04-12", - "dateCompleted": "2023-04-20", - "dateEntered": "2023-05-08", - "dateRegistrar": "2015-04-16", - "dateLocalAuthorityReceived": "2022-03-09", - "summary": "Ipsa voluptatem reiciendis optio sit maxime distinctio asperiores.\nEaque assumenda consequuntur placeat ratione architecto minus.", - "informationUsed": "Suscipit neque harum beatae adipisci quidem.\nQuidem perspiciatis laudantium incidunt debitis itaque ea animi quae.\nEarum fuga non doloribus.\nIpsa unde officiis voluptas.", - "pastOrPresentOrders": "In autem repellendus.", + "dateReceived": "2022-01-21", + "dateCompleted": "2020-12-25", + "dateEntered": "2020-11-18", + "dateRegistrar": "2017-06-29", + "dateLocalAuthorityReceived": "2019-10-19", + "summary": "Ipsam iste quasi.", + "informationUsed": "Dignissimos quam aut.\nAd nam unde vero deserunt quaerat repudiandae.\nExercitationem expedita eum.", + "pastOrPresentOrders": "Nam tenetur minus sunt beatae.\nRerum aliquam optio cupiditate labore harum tempora earum unde commodi.", "commercialAndIndustrialPurposes": [ { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false + "uuid": "38b0f132-1777-4a6f-9c1d-ce205c318d2b", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true }, { + "uuid": "6c00dc47-fab9-4f36-9d31-21b844c7af3a", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false - }, - { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true } ] @@ -53586,85 +61951,108 @@ ], "activityLog": [ { + "uuid": "bcbb6e49-b8a5-4fa1-9a8a-2a4af462ff4e", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "LESCH AMIRA", - "timestamp": "2018-11-26" + "user": "GUTMANN WILTON", + "timestamp": "2019-04-26" }, { + "uuid": "5e3a655c-191d-461e-87ec-018fc227aa7f", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "REILLY DEMOND", - "timestamp": "2018-06-14" + "user": "BARTOLETTI ALIZE", + "timestamp": "2022-02-11" }, { + "uuid": "0933b243-29cc-4579-ba0e-c0fa73aa7240", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "POWLOWSKI MICHELLE", - "timestamp": "2020-01-11" + "user": "ZIEME DWIGHT", + "timestamp": "2021-11-12" }, { + "uuid": "fe6bcbd7-bd9b-4cf6-819d-ad43e8532f48", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "BALISTRERI BARNEY", - "timestamp": "2014-12-04" + "user": "O'CONNELL DECLAN", + "timestamp": "2016-12-17" + }, + { + "uuid": "fde9642f-0cc2-4b73-abf6-89df22b36bca", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "HARTMANN MARIAN", + "timestamp": "2018-10-31" + }, + { + "uuid": "fca6671a-66d5-4ae6-bcdc-c157257cf635", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "HYATT ISIDRO", + "timestamp": "2019-06-06" }, { + "uuid": "06d060fb-f799-4abc-bada-6ae35d2ab318", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "SKILES TANNER", - "timestamp": "2020-05-26" + "user": "WATSICA RUSSEL", + "timestamp": "2016-05-19" } ], "associatedSites": [ { - "dateNoted": "2021-11-17", + "uuid": "7ee315dd-6081-469a-8dfe-2a093ae7b85e", + "dateNoted": "2022-02-02", "notes": "", - "parcelID": "18496", - "siteID": "17110", - "siteRegistry": false + "parcelID": "20746", + "siteID": "19713", + "siteRegistry": true }, { - "dateNoted": "2013-11-06", + "uuid": "eec32cd6-c5a8-4935-b5df-bd860b4e928f", + "dateNoted": "2019-05-07", "notes": "", - "parcelID": "18722", - "siteID": "18732", - "siteRegistry": true + "parcelID": "18945", + "siteID": "18336", + "siteRegistry": false }, { - "dateNoted": "2017-12-29", + "uuid": "c0a79ce9-b564-4bff-b073-b1be970054ce", + "dateNoted": "2019-09-01", "notes": "", - "parcelID": "15623", - "siteID": "20833", + "parcelID": "20515", + "siteID": "19154", "siteRegistry": false } ] }, { - "uuid": "da26b6c6-ffd0-4539-9741-6ca1cc6421d8", - "siteID": 19256, - "address": "775 Edgardo Manor", - "latitude": 50.3445, - "longitude": -122.3961, - "lastUpdated": "2016-07-19", - "city": "Port Wilton", + "uuid": "3d02436f-efe2-4aea-8871-d666cecfe94d", + "siteID": 18174, + "address": "538 Tristian Tunnel", + "latitude": 53.5208, + "longitude": -137.5508, + "lastUpdated": "2021-08-05", + "city": "New Carole", "region": " North Coast", - "victoriaFile": "26250-20/8799", + "victoriaFile": "26250-20/9174", "regionalFile": "N/A", "parcelIDs": [ - 1393931, - 8584126, - 1570060, - 2816424, - 4485219 + 4469301, + 6778426, + 2540136, + 4311217, + 9944740 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2021-06-17", - "completed": "2018-08-16", - "initiated": "2020-11-28", - "ministryContact": "CASPER-DANIEL REGGIE", + "uuid": "3b0de997-f751-4f60-85bf-6bbd9f6d675e", + "createdAt": "2017-03-05", + "completed": "2019-09-09", + "initiated": "2022-11-10", + "ministryContact": "OKUNEVA BRANSON", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -53673,28 +62061,32 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "57e76096-57ac-4b88-b85c-dd6e2f4790d2", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "uuid": "91629ffe-2250-4b13-accc-88c056b13177", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", + "uuid": "686358a6-f187-4eed-959b-391faddc9280", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2021-12-14", - "completed": "2014-04-26", - "initiated": "2017-02-17", - "ministryContact": "BEAHAN EDD", + "uuid": "1104c7d3-9983-4c21-bc97-d1712e6899be", + "createdAt": "2019-04-08", + "completed": "2013-11-09", + "initiated": "2018-02-10", + "ministryContact": "KEEBLER MITCHELL", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -53703,46 +62095,31 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false + "uuid": "d61b0f56-f25a-4f17-afb1-5747bcdeea46", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true }, { + "uuid": "15874d4a-c65b-42b1-bcd8-d7fed812afed", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - } - ], - "siteRegistry": true - }, - { - "createdAt": "2016-10-13", - "completed": "2023-01-07", - "initiated": "2019-03-31", - "ministryContact": "PRICE DORTHY", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { + "uuid": "022aabd1-efb7-4adc-a547-b894bb2cca42", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "uuid": "6c4fa343-85d6-41ff-b6ae-369a95b5de29", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": true }, { + "uuid": "0c48bc86-1313-489a-b80d-c473c0ef0b36", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true @@ -53751,10 +62128,11 @@ "siteRegistry": true }, { - "createdAt": "2022-11-29", - "completed": "2017-11-18", - "initiated": "2020-01-06", - "ministryContact": "PRICE LOUIE", + "uuid": "f6284bd6-c124-47e8-a546-969c0e17cbbf", + "createdAt": "2016-08-03", + "completed": "2020-10-28", + "initiated": "2014-01-19", + "ministryContact": "ABSHIRE ADRIAN", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -53763,22 +62141,20 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { + "uuid": "f2f1c17e-ad6b-4530-b145-acaa6a0f0f18", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "uuid": "767a4420-5adc-4279-be33-af59ff41202a", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "f86212b5-e5f5-4070-a356-c572329e3e04", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true } @@ -53786,10 +62162,11 @@ "siteRegistry": false }, { - "createdAt": "2017-09-27", - "completed": "2016-10-14", - "initiated": "2022-01-22", - "ministryContact": "TORP BEVERLY", + "uuid": "5ea20d3d-e978-46b0-b421-227ba7e4f821", + "createdAt": "2021-01-07", + "completed": "2018-01-09", + "initiated": "2013-10-22", + "ministryContact": "GRIMES CASANDRA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -53798,14 +62175,28 @@ ], "notationParticipants": [ { + "uuid": "32f302e8-acbf-498e-b17c-41ea0485900b", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "uuid": "621fc45f-d316-4eb0-aac7-cdd4f447787b", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "5cb5bea7-f480-411c-88fb-98395faf9d50", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false + }, + { + "uuid": "9a549eec-9971-4fb8-bba5-1ebbc0903bf7", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false } ], "siteRegistry": true @@ -53813,9 +62204,10 @@ ], "participants": [ { - "name": "IPSUM", - "endDate": "2014-06-25", - "startDate": "2016-08-12", + "uuid": "5330d929-ecc7-4d1f-9ffc-5d35e2467d1e", + "name": "AMET, DOLOR SIT", + "endDate": "2022-07-29", + "startDate": "2014-05-28", "notes": "", "roles": [ "EMPLOYEE" @@ -53823,9 +62215,10 @@ "siteRegistry": false }, { - "name": "IPSUM", - "endDate": "2017-07-27", - "startDate": "2015-01-08", + "uuid": "51725da3-4301-41f1-9feb-426bd7c712c6", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2016-06-13", + "startDate": "2018-05-05", "notes": "", "roles": [ "EMPLOYEE" @@ -53835,110 +62228,81 @@ ], "suspectLandUses": [ { + "uuid": "410da5fd-b385-4259-bd44-fa3576ba6660", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2023-02-25 (described on Site Profile dated 2023-02-25)", + "notes": "INSERTED FOR SITE PROFILE DATED 2020-02-05 (described on Site Profile dated 2020-02-05)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { + "uuid": "be082846-a5e4-4679-b8e8-f3a73592a1de", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-04-21 (described on Site Profile dated 2021-04-21)", + "notes": "INSERTED FOR SITE PROFILE DATED 2014-11-17 (described on Site Profile dated 2014-11-17)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" - } - ], - "parcelDescriptions": [ - { - "siteRegistry": false, - "dateNoted": "2020-01-24", - "parcelID": "16071", - "crownLandUsePIN": "18314", - "crownLandFileNumber": "20351", - "landDescription": "LOT 2 OF LOT 3 BLOCK 3 DISTRICT LOT 2 PLAN 9581" }, { + "uuid": "2d3f24be-cde0-41ef-91e4-6c51677d61bb", "siteRegistry": true, - "dateNoted": "2018-11-02", - "parcelID": "17384", - "crownLandUsePIN": "20031", - "crownLandFileNumber": "20948", - "landDescription": "LOT 2 OF LOT 4 BLOCK 3 DISTRICT LOT 4 PLAN 4285" + "notes": "INSERTED FOR SITE PROFILE DATED 2013-10-31 (described on Site Profile dated 2013-10-31)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { + "uuid": "9669ad2c-1f57-4a01-9779-145b97de6cb9", "siteRegistry": false, - "dateNoted": "2023-01-28", - "parcelID": "17231", - "crownLandUsePIN": "20848", - "crownLandFileNumber": "15420", - "landDescription": "LOT 4 OF LOT 3 BLOCK 1 DISTRICT LOT 1 PLAN 6877" + "notes": "INSERTED FOR SITE PROFILE DATED 2022-06-24 (described on Site Profile dated 2022-06-24)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + } + ], + "parcelDescriptions": [ + { + "uuid": "36a779af-5bd8-4e61-ab56-e6793b96c0dd", + "siteRegistry": true, + "dateNoted": "2023-02-21", + "parcelID": "16094", + "crownLandUsePIN": "15352", + "crownLandFileNumber": "19169", + "landDescription": "LOT 4 OF LOT 3 BLOCK 4 DISTRICT LOT 4 PLAN 9243" }, { + "uuid": "07d30d10-f032-4a80-ba23-5d02d9acf5b3", "siteRegistry": false, - "dateNoted": "2018-05-26", - "parcelID": "20541", - "crownLandUsePIN": "17440", - "crownLandFileNumber": "15218", - "landDescription": "LOT 3 OF LOT 4 BLOCK 1 DISTRICT LOT 1 PLAN 4018" + "dateNoted": "2021-08-08", + "parcelID": "15711", + "crownLandUsePIN": "18459", + "crownLandFileNumber": "18825", + "landDescription": "LOT 5 OF LOT 2 BLOCK 3 DISTRICT LOT 1 PLAN 8208" }, { - "siteRegistry": false, - "dateNoted": "2018-07-24", - "parcelID": "19939", - "crownLandUsePIN": "19349", - "crownLandFileNumber": "18430", - "landDescription": "LOT 2 OF LOT 4 BLOCK 3 DISTRICT LOT 3 PLAN 9126" + "uuid": "b2ec147d-3ea5-4a0e-9b9b-f3a5dc311917", + "siteRegistry": true, + "dateNoted": "2022-09-11", + "parcelID": "18400", + "crownLandUsePIN": "20191", + "crownLandFileNumber": "16324", + "landDescription": "LOT 5 OF LOT 4 BLOCK 2 DISTRICT LOT 3 PLAN 3631" } ], "siteDisclosures": [ { + "uuid": "e995f12a-061f-429c-b3e8-5143513aee00", "siteRegistry": false, - "dateReceived": "2022-11-27", - "dateCompleted": "2018-02-27", - "dateEntered": "2016-03-06", - "dateRegistrar": "2019-02-20", - "dateLocalAuthorityReceived": "2021-06-25", - "summary": "Unde impedit ratione laborum reprehenderit accusantium reiciendis minima.\nMollitia iusto tenetur sint eveniet enim pariatur in soluta fuga.", - "informationUsed": "Repudiandae consequatur quisquam ullam laboriosam earum ipsam itaque.\nNatus ad eaque mollitia animi suscipit consequuntur voluptatibus.\nEst est error optio labore dignissimos.\nSint quo eveniet facere.", - "pastOrPresentOrders": "Veniam nemo ullam expedita veritatis corporis expedita enim modi at.", - "commercialAndIndustrialPurposes": [ - { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false - }, - { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false - }, - { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true - } - ] - }, - { - "siteRegistry": false, - "dateReceived": "2023-03-11", - "dateCompleted": "2019-06-14", - "dateEntered": "2020-04-15", - "dateRegistrar": "2015-07-18", + "dateReceived": "2019-07-19", + "dateCompleted": "2023-08-18", + "dateEntered": "2015-12-14", + "dateRegistrar": "2018-05-27", "dateLocalAuthorityReceived": "2015-09-12", - "summary": "Occaecati officiis in temporibus accusantium dignissimos fuga molestias.\nConsequuntur veniam ea placeat expedita voluptatum quibusdam aliquid.\nAssumenda tempore iste commodi blanditiis dolorum dolor et cum.", - "informationUsed": "Minus ipsa commodi totam ipsam.\nAsperiores fugiat rerum voluptatum.\nQuisquam minus dolor nulla earum sed ducimus.", - "pastOrPresentOrders": "Nam aliquid ea adipisci voluptates nesciunt magni inventore.\nIusto a possimus dolor.\nDolorum in modi nulla optio.", + "summary": "Quos sit ipsum iusto consequuntur facere omnis.", + "informationUsed": "Repudiandae repudiandae nam quos.\nItaque aliquid odio.\nDeserunt ratione deserunt labore itaque.\nNatus libero fuga dicta.\nQuia deserunt voluptates qui eum necessitatibus dolore.", + "pastOrPresentOrders": "Incidunt corrupti possimus magni nobis tenetur cum.", "commercialAndIndustrialPurposes": [ { + "uuid": "2a8a151b-9478-4b68-afd8-3ca3c8f4874b", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { + "uuid": "79bf848e-eab3-4266-811a-8bdaf3927e72", "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false - }, - { - "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true } @@ -53947,85 +62311,108 @@ ], "activityLog": [ { + "uuid": "0cde8cb3-5b6f-45b9-b81f-a15eb87e9b4a", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "ROMAGUERA MISSOURI", - "timestamp": "2016-04-14" + "user": "WALSH HETTIE", + "timestamp": "2017-01-09" }, { + "uuid": "ec2544db-4cb3-45cd-9580-4b36ce71ec53", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "HILPERT GERARD", - "timestamp": "2016-01-05" + "user": "PROHASKA MONICA", + "timestamp": "2014-11-04" }, { + "uuid": "9f6eec98-e7fd-4940-951b-3d90e2fd3e12", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "BODE KEELEY", - "timestamp": "2019-03-30" + "user": "MCCLURE-WUNSCH JENNINGS", + "timestamp": "2023-05-11" }, { + "uuid": "616dd4ba-59cd-46f5-ae75-12f5218ed316", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "JENKINS CALISTA", - "timestamp": "2014-05-17" + "user": "MAYER BERNICE", + "timestamp": "2023-06-12" }, { + "uuid": "96cb1007-f508-485b-a190-d14990dc071a", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "FEENEY FELIPE", - "timestamp": "2014-08-08" + "user": "MORAR LOIS", + "timestamp": "2022-10-11" + }, + { + "uuid": "b239ebff-802f-4b23-a5d2-133d76da62dd", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "REILLY ZANDER", + "timestamp": "2019-06-11" + }, + { + "uuid": "a959c07d-c5bb-43c3-9aae-e6cf26390c0b", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "MAYERT JOSHUA", + "timestamp": "2019-04-25" } ], "associatedSites": [ { - "dateNoted": "2020-02-28", + "uuid": "67efdfa9-3b5d-4450-b22d-7ac9537b0a28", + "dateNoted": "2018-05-04", "notes": "", - "parcelID": "17702", - "siteID": "18529", - "siteRegistry": true + "parcelID": "18850", + "siteID": "16538", + "siteRegistry": false }, { - "dateNoted": "2018-10-09", + "uuid": "2b96b996-7744-471a-ac31-8f2e6fb9fe09", + "dateNoted": "2022-01-22", "notes": "", - "parcelID": "15328", - "siteID": "17509", + "parcelID": "19505", + "siteID": "19713", "siteRegistry": true }, { - "dateNoted": "2017-03-19", + "uuid": "c534d3ce-6cfb-42a1-9b18-093a00bc5b6b", + "dateNoted": "2019-07-14", "notes": "", - "parcelID": "15464", - "siteID": "19902", + "parcelID": "15958", + "siteID": "20221", "siteRegistry": true } ] }, { - "uuid": "a205fbd8-8095-4128-9bde-de3fa4ecfb27", - "siteID": 17194, - "address": "9640 Adams Keys", - "latitude": 56.3167, - "longitude": -121.5802, - "lastUpdated": "2021-05-26", - "city": "San Ramon", - "region": " North Coast", - "victoriaFile": "26250-20/13168", + "uuid": "67d3e2b3-672e-424a-95e0-a7e1573758cc", + "siteID": 15815, + "address": "237 Eliezer River", + "latitude": 58.8488, + "longitude": -119.426, + "lastUpdated": "2021-04-01", + "city": "Reynoldsview", + "region": "Mainland/Southwest", + "victoriaFile": "26250-20/14111", "regionalFile": "N/A", "parcelIDs": [ - 3166117, - 1999004, - 155913, - 6772778, - 9848121 + 8258363, + 8137705, + 966224, + 1118452, + 4499878 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2015-03-30", - "completed": "2018-06-18", - "initiated": "2022-07-26", - "ministryContact": "THIEL SHANEL", + "uuid": "a667d3a0-3cd7-49b8-8bb7-e98dca541d18", + "createdAt": "2023-02-25", + "completed": "2019-07-17", + "initiated": "2015-02-17", + "ministryContact": "KUNDE SHANNA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -54034,58 +62421,32 @@ ], "notationParticipants": [ { + "uuid": "bfe82ec5-93b4-4ac1-a4c0-c2020ad730fa", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - } - ], - "siteRegistry": true - }, - { - "createdAt": "2017-05-29", - "completed": "2021-05-22", - "initiated": "2022-10-11", - "ministryContact": "CRONA RHEA", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "89250c75-140a-4e58-9d34-9c35ed6edab7", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false }, { + "uuid": "89155df2-a0a7-4ab3-b612-c2d742458ca7", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2014-06-23", - "completed": "2021-08-20", - "initiated": "2023-06-18", - "ministryContact": "DIBBERT RODERICK", + "uuid": "48835bd5-e3ad-4844-9df5-b6fc4ecf34db", + "createdAt": "2019-12-19", + "completed": "2017-11-24", + "initiated": "2015-02-12", + "ministryContact": "BASHIRIAN CLIFTON", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -54094,63 +62455,38 @@ ], "notationParticipants": [ { + "uuid": "e949d19b-2f65-4227-bd4f-bfac1f0959a1", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", "siteRegistry": false - } - ], - "siteRegistry": false - }, - { - "createdAt": "2018-10-30", - "completed": "2016-08-17", - "initiated": "2016-03-03", - "ministryContact": "SCHAMBERGER ASHLYNN", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ + }, { + "uuid": "ba595ec9-7daf-4f48-b9b4-f6a61704c005", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true }, { + "uuid": "75d971b4-f220-43cd-95f8-ddf34421dd93", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { + "uuid": "11317548-a62a-4420-badf-b5c7d4fd53ff", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false } ], "siteRegistry": false }, { - "createdAt": "2023-02-06", - "completed": "2017-01-13", - "initiated": "2015-09-25", - "ministryContact": "LEBSACK DAISHA", + "uuid": "79c8e0aa-4d9b-4efc-ae33-d746fd794c99", + "createdAt": "2017-12-15", + "completed": "2019-04-09", + "initiated": "2014-12-23", + "ministryContact": "STEUBER LON", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -54159,39 +62495,60 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { + "uuid": "3057c535-5fd2-4923-9e4e-0ac5c48bee39", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false }, { + "uuid": "ffcf361b-1fba-474a-83a5-b85e17026b35", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false } ], "siteRegistry": true - } - ], - "participants": [ + } + ], + "participants": [ + { + "uuid": "92473c75-cd1a-4707-95d8-ed3def7c392a", + "name": "AMET, DOLOR SIT", + "endDate": "2014-12-03", + "startDate": "2014-01-20", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "uuid": "3da91c9e-f63b-46ff-892a-910a969c28ca", + "name": "AMET, DOLOR SIT", + "endDate": "2014-06-11", + "startDate": "2018-02-06", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, { + "uuid": "9a448d51-26ab-4e65-9dd8-811c389658aa", "name": "AMET, DOLOR SIT", - "endDate": "2014-05-10", - "startDate": "2020-07-16", + "endDate": "2020-12-18", + "startDate": "2022-07-13", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false }, { - "name": "IPSUM", - "endDate": "2017-01-21", - "startDate": "2023-08-12", + "uuid": "0f865386-f7e8-45d4-b0d9-7f7a97be24a2", + "name": "AMET, DOLOR SIT", + "endDate": "2016-12-14", + "startDate": "2015-03-19", "notes": "", "roles": [ "EMPLOYEE" @@ -54201,239 +62558,234 @@ ], "suspectLandUses": [ { + "uuid": "ab6a5759-0258-458a-bc4f-85cafc250d9c", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2020-06-13 (described on Site Profile dated 2020-06-13)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" - }, - { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2020-05-29 (described on Site Profile dated 2020-05-29)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" - }, - { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2020-09-04 (described on Site Profile dated 2020-09-04)", + "notes": "INSERTED FOR SITE PROFILE DATED 2016-12-10 (described on Site Profile dated 2016-12-10)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2023-02-06 (described on Site Profile dated 2023-02-06)", + "uuid": "6857f61f-9b3b-4744-b367-e065f43d768c", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2023-04-02 (described on Site Profile dated 2023-04-02)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { + "uuid": "20218003-79d4-42e0-a836-efe73553a8fa", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-10-10 (described on Site Profile dated 2015-10-10)", + "notes": "INSERTED FOR SITE PROFILE DATED 2020-04-27 (described on Site Profile dated 2020-04-27)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], "parcelDescriptions": [ { + "uuid": "74d6c2de-71f2-416f-a253-e5881d66f991", "siteRegistry": false, - "dateNoted": "2016-04-16", - "parcelID": "15430", - "crownLandUsePIN": "16677", - "crownLandFileNumber": "18940", - "landDescription": "LOT 3 OF LOT 1 BLOCK 2 DISTRICT LOT 3 PLAN 3550" - }, - { - "siteRegistry": false, - "dateNoted": "2022-05-27", - "parcelID": "17000", - "crownLandUsePIN": "20220", - "crownLandFileNumber": "17629", - "landDescription": "LOT 5 OF LOT 5 BLOCK 3 DISTRICT LOT 3 PLAN 4174" + "dateNoted": "2015-04-02", + "parcelID": "16393", + "crownLandUsePIN": "19689", + "crownLandFileNumber": "16126", + "landDescription": "LOT 5 OF LOT 3 BLOCK 2 DISTRICT LOT 1 PLAN 4901" }, { + "uuid": "62992324-95d9-4325-92be-16215e207bcd", "siteRegistry": false, - "dateNoted": "2019-11-13", - "parcelID": "19886", - "crownLandUsePIN": "20650", - "crownLandFileNumber": "18593", - "landDescription": "LOT 5 OF LOT 5 BLOCK 5 DISTRICT LOT 5 PLAN 4424" + "dateNoted": "2023-05-09", + "parcelID": "17562", + "crownLandUsePIN": "18698", + "crownLandFileNumber": "20356", + "landDescription": "LOT 1 OF LOT 4 BLOCK 4 DISTRICT LOT 3 PLAN 5811" }, { + "uuid": "cea0fbf6-088f-4b54-b8ed-af0c90db1924", "siteRegistry": true, - "dateNoted": "2015-04-02", - "parcelID": "16492", - "crownLandUsePIN": "17492", - "crownLandFileNumber": "16380", - "landDescription": "LOT 2 OF LOT 2 BLOCK 1 DISTRICT LOT 3 PLAN 4709" + "dateNoted": "2021-08-27", + "parcelID": "18507", + "crownLandUsePIN": "19062", + "crownLandFileNumber": "19065", + "landDescription": "LOT 4 OF LOT 1 BLOCK 4 DISTRICT LOT 4 PLAN 7474" } ], "siteDisclosures": [ { - "siteRegistry": true, - "dateReceived": "2020-09-05", - "dateCompleted": "2017-09-03", - "dateEntered": "2022-09-01", - "dateRegistrar": "2015-08-29", - "dateLocalAuthorityReceived": "2015-06-18", - "summary": "Ipsum architecto quos maxime numquam saepe delectus.\nEx commodi iste quaerat illo.\nReprehenderit minus excepturi vitae.", - "informationUsed": "Necessitatibus deleniti recusandae.\nFacere doloremque eius alias vel.\nTenetur cumque mollitia quas voluptatibus aliquid qui perspiciatis.\nTenetur consequuntur corporis error et sit debitis laboriosam.", - "pastOrPresentOrders": "Natus eligendi officiis quam ipsam soluta rem sit odio voluptas.\nTotam dolore iure error aliquam dolore consequatur dolore natus.", + "uuid": "ef404b19-1f11-4a3b-bddc-55b005ac204d", + "siteRegistry": false, + "dateReceived": "2023-02-21", + "dateCompleted": "2022-12-30", + "dateEntered": "2015-01-19", + "dateRegistrar": "2014-11-13", + "dateLocalAuthorityReceived": "2020-02-18", + "summary": "Rem rerum pariatur.\nDolores asperiores accusantium aut.\nSint ab velit excepturi soluta quasi dolorum numquam vitae.", + "informationUsed": "Doloremque recusandae veritatis nesciunt.\nRatione in rem nihil modi quas et cupiditate.\nOptio alias sequi recusandae enim eum.\nIn quaerat provident nam tenetur pariatur eaque assumenda.\nTempore pariatur in inventore similique deserunt.", + "pastOrPresentOrders": "Veniam eaque earum ipsa assumenda.\nHarum facere reiciendis sapiente officia.", "commercialAndIndustrialPurposes": [ { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "uuid": "e591f17a-22ea-4028-a425-2f9ef6eb937d", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, { + "uuid": "23f48176-e16f-4a52-844e-6d727ebba759", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { + "uuid": "cceaccf1-e5b8-41a4-8345-4ace2a65125f", "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { + "uuid": "f517873b-8fee-4d26-b4c5-272460aa702e", "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true } ] }, { - "siteRegistry": true, - "dateReceived": "2013-11-27", - "dateCompleted": "2016-04-12", - "dateEntered": "2016-03-16", - "dateRegistrar": "2014-01-30", - "dateLocalAuthorityReceived": "2016-07-12", - "summary": "Aperiam inventore ex impedit iste ad voluptatum minus repellendus assumenda.\nCumque eos adipisci odio perferendis vitae velit molestias qui fugit.", - "informationUsed": "Maxime tenetur consequatur quam laudantium.\nIllum in atque.\nIpsa soluta ullam porro doloribus fuga ad nobis.\nVoluptatem voluptatum nemo ex.", - "pastOrPresentOrders": "Ullam qui amet.\nNostrum repellat consectetur iusto quam unde.", + "uuid": "cfd32523-a4b2-4364-95a2-bc2df513fbb4", + "siteRegistry": false, + "dateReceived": "2017-10-20", + "dateCompleted": "2022-05-11", + "dateEntered": "2016-08-29", + "dateRegistrar": "2019-05-15", + "dateLocalAuthorityReceived": "2015-12-11", + "summary": "Atque ut eius.\nQui ducimus necessitatibus nam eaque impedit nobis molestiae.\nRecusandae perspiciatis veritatis libero commodi quas deleniti maiores.", + "informationUsed": "Qui quos ipsum dolores nisi quidem pariatur maxime suscipit.\nLaudantium nulla ratione expedita quisquam ex similique exercitationem placeat.\nRem qui ex placeat culpa deleniti.", + "pastOrPresentOrders": "Optio dolor doloribus recusandae porro dicta.", "commercialAndIndustrialPurposes": [ { + "uuid": "6af6dc7f-cc3d-4957-830e-5fc0d148c92b", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false + "siteRegistry": true }, { + "uuid": "c061649c-923c-4169-9e36-7c875aa4806b", "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { + "uuid": "46b5d6be-90bb-488d-bdeb-e3348da6604a", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false + }, + { + "uuid": "3ddd4b97-06f8-4125-a202-d465c2e4558b", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false } ] } ], "activityLog": [ { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "KLEIN PRESTON", - "timestamp": "2015-04-26" - }, - { + "uuid": "7916e0a7-ff27-4ef2-97ac-bea688deb652", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "HERZOG ANGUS", - "timestamp": "2017-03-27" + "user": "HUELS OLGA", + "timestamp": "2017-03-10" }, { + "uuid": "7c5d46a6-001e-45a3-8aea-e2e884571729", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "SCHADEN THEA", - "timestamp": "2019-05-16" + "user": "BECKER KAREN", + "timestamp": "2013-12-14" }, { + "uuid": "b8596e2a-b4f4-4a9f-8746-5b872f7d4104", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "KOVACEK ALFRED", - "timestamp": "2022-02-10" - }, - { - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "KRAJCIK EDA", - "timestamp": "2020-11-22" + "user": "O'REILLY CLEMENTINA", + "timestamp": "2023-03-01" }, { + "uuid": "c4452ec8-8af1-4d8c-9b40-cb7bfcd1d5ee", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "KIEHN DAPHNE", - "timestamp": "2017-10-23" + "user": "GISLASON EINO", + "timestamp": "2016-05-02" }, { - "siteRegistry": false, + "uuid": "7a7891ab-b7ed-49f1-aebc-ef26a970ab59", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "WUCKERT MADDISON", - "timestamp": "2014-02-28" + "user": "ROLFSON BETTE", + "timestamp": "2018-05-01" }, { - "siteRegistry": false, + "uuid": "f752f5d9-f6b0-4715-b5ad-dea045fc3a9f", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "HESSEL ANGUS", - "timestamp": "2016-10-13" + "user": "GRANT JANAE", + "timestamp": "2023-02-08" }, { - "siteRegistry": false, + "uuid": "954cd368-5d8f-427c-90bc-0079b49c2d0d", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "MOEN ILA", - "timestamp": "2016-08-29" + "user": "HIRTHE OLIN", + "timestamp": "2020-08-05" }, { - "siteRegistry": false, + "uuid": "dc3a78e7-df36-421c-9cdd-925e3eb2fc31", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "ARMSTRONG JETTIE", - "timestamp": "2020-04-23" + "user": "KOHLER GIOVANI", + "timestamp": "2021-04-02" } ], "associatedSites": [ { - "dateNoted": "2020-06-18", + "uuid": "6fd32b4d-5572-4ffb-91f9-f206e52da25f", + "dateNoted": "2018-12-17", "notes": "", - "parcelID": "19476", - "siteID": "16934", + "parcelID": "19593", + "siteID": "17528", "siteRegistry": true }, { - "dateNoted": "2015-05-04", - "notes": "", - "parcelID": "15199", - "siteID": "20963", - "siteRegistry": false - }, - { - "dateNoted": "2020-01-10", + "uuid": "694ca8da-4e5b-47bc-8a06-7e05505aff70", + "dateNoted": "2021-12-27", "notes": "", - "parcelID": "19510", - "siteID": "16489", - "siteRegistry": false + "parcelID": "18580", + "siteID": "15914", + "siteRegistry": true } ] }, { - "uuid": "071fca60-9a7b-4444-a3c9-f67fe4d8a147", - "siteID": 20733, - "address": "84344 Altenwerth Roads", - "latitude": 55.1465, - "longitude": -130.8749, - "lastUpdated": "2015-02-03", - "city": "East Tarachester", - "region": "Mainland/Southwest", - "victoriaFile": "26250-20/6125", + "uuid": "eaa5fdad-24bc-4325-a316-87bce1ccbb02", + "siteID": 18725, + "address": "32881 McKenzie Lake", + "latitude": 58.0056, + "longitude": -125.8021, + "lastUpdated": "2023-02-10", + "city": "Koeppberg", + "region": "Vancouver Island/Coast", + "victoriaFile": "26250-20/5641", "regionalFile": "N/A", "parcelIDs": [ - 2645668, - 232261, - 3987465, - 5065827, - 1487457 + 8385057, + 7373155, + 8145200, + 8255780, + 4523650 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2014-07-25", - "completed": "2020-09-06", - "initiated": "2016-11-04", - "ministryContact": "WALKER OCTAVIA", + "uuid": "34f8b1b8-7225-4170-886d-037c3a2a4e7d", + "createdAt": "2021-08-25", + "completed": "2017-03-24", + "initiated": "2022-06-14", + "ministryContact": "PROHASKA CIELO", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -54442,23 +62794,26 @@ ], "notationParticipants": [ { + "uuid": "b6d770a2-07dd-4eab-9589-f0e85449ad2c", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", + "uuid": "0b18d9c5-107d-4d4e-9ca3-c6ed3130490f", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2015-07-06", - "completed": "2019-07-27", - "initiated": "2023-06-13", - "ministryContact": "BARTOLETTI CARA", + "uuid": "a72f6fba-b6b6-4aab-bf37-e11f77935cc4", + "createdAt": "2022-08-09", + "completed": "2019-12-22", + "initiated": "2023-01-12", + "ministryContact": "FEIL HAROLD", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -54467,69 +62822,34 @@ ], "notationParticipants": [ { + "uuid": "42980ff2-85db-4c32-b75f-fc4ce4af59dc", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false }, { + "uuid": "470bb865-1754-447b-b2a7-5d212dadb8ec", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", + "uuid": "a820b420-c43e-4361-972b-05884d2f5505", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false - } - ], - "siteRegistry": false - }, - { - "createdAt": "2020-10-01", - "completed": "2023-08-17", - "initiated": "2021-12-25", - "ministryContact": "STIEDEMANN STEWART", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false }, { + "uuid": "e29a27fe-c94f-4d1b-b349-af9ea465fd56", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { + "uuid": "bf15c6f8-cb2e-4dfa-a2b0-51d8192f5387", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false } ], "siteRegistry": true @@ -54537,39 +62857,21 @@ ], "participants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2016-09-27", - "startDate": "2016-06-22", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": false - }, - { - "name": "IPSUM", - "endDate": "2018-01-13", - "startDate": "2018-02-28", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": false - }, - { + "uuid": "c35c177e-de27-4f73-b94c-285afc300778", "name": "SHELL CANADA PRODUCTS", - "endDate": "2023-10-06", - "startDate": "2014-07-17", + "endDate": "2016-09-06", + "startDate": "2019-12-16", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true }, { + "uuid": "b4d8c02a-8fa9-479b-a76a-9f351f40290c", "name": "AMET, DOLOR SIT", - "endDate": "2015-05-20", - "startDate": "2018-09-07", + "endDate": "2023-08-30", + "startDate": "2019-07-10", "notes": "", "roles": [ "ORGANIZATION" @@ -54579,185 +62881,203 @@ ], "suspectLandUses": [ { + "uuid": "af1f3f2b-9882-4c01-a4dc-9986c504c219", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2020-03-26 (described on Site Profile dated 2020-03-26)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "notes": "INSERTED FOR SITE PROFILE DATED 2014-03-15 (described on Site Profile dated 2014-03-15)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-10-22 (described on Site Profile dated 2017-10-22)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "uuid": "bf76fef5-acef-44a1-9e4d-66778686c0cf", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2015-09-13 (described on Site Profile dated 2015-09-13)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { + "uuid": "b5050435-3fef-48be-98cc-7442d0a3246b", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-05-11 (described on Site Profile dated 2015-05-11)", + "notes": "INSERTED FOR SITE PROFILE DATED 2023-08-04 (described on Site Profile dated 2023-08-04)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { + "uuid": "b1bade69-31e5-433a-8dfd-4f2415094d49", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-05-09 (described on Site Profile dated 2017-05-09)", + "notes": "INSERTED FOR SITE PROFILE DATED 2014-03-04 (described on Site Profile dated 2014-03-04)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "uuid": "da16bd56-6757-42ec-95ae-e6894e567030", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2023-09-26 (described on Site Profile dated 2023-09-26)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], "parcelDescriptions": [ { + "uuid": "9250ac60-d43a-404c-91d7-92de4dd461c2", + "siteRegistry": true, + "dateNoted": "2022-01-04", + "parcelID": "20567", + "crownLandUsePIN": "19096", + "crownLandFileNumber": "18965", + "landDescription": "LOT 3 OF LOT 2 BLOCK 4 DISTRICT LOT 5 PLAN 3628" + }, + { + "uuid": "67908c86-eca5-4bd6-ba2c-946b04fc26b7", "siteRegistry": false, - "dateNoted": "2022-11-10", - "parcelID": "20087", - "crownLandUsePIN": "20023", - "crownLandFileNumber": "19223", - "landDescription": "LOT 5 OF LOT 2 BLOCK 1 DISTRICT LOT 3 PLAN 5584" + "dateNoted": "2019-09-04", + "parcelID": "16609", + "crownLandUsePIN": "18868", + "crownLandFileNumber": "16359", + "landDescription": "LOT 1 OF LOT 1 BLOCK 2 DISTRICT LOT 1 PLAN 3002" }, { - "siteRegistry": true, - "dateNoted": "2016-08-19", - "parcelID": "18846", - "crownLandUsePIN": "20316", - "crownLandFileNumber": "20162", - "landDescription": "LOT 4 OF LOT 5 BLOCK 5 DISTRICT LOT 4 PLAN 8175" + "uuid": "e2b3d70c-73b3-4b3a-900a-37beaf97ab62", + "siteRegistry": false, + "dateNoted": "2017-11-11", + "parcelID": "18896", + "crownLandUsePIN": "19619", + "crownLandFileNumber": "17515", + "landDescription": "LOT 5 OF LOT 1 BLOCK 4 DISTRICT LOT 3 PLAN 9764" }, { - "siteRegistry": true, - "dateNoted": "2014-12-16", - "parcelID": "18773", - "crownLandUsePIN": "18961", - "crownLandFileNumber": "16396", - "landDescription": "LOT 1 OF LOT 1 BLOCK 2 DISTRICT LOT 2 PLAN 3245" + "uuid": "82b8c1ae-401b-474c-84a9-fa84cc2f0952", + "siteRegistry": false, + "dateNoted": "2014-03-30", + "parcelID": "20699", + "crownLandUsePIN": "15591", + "crownLandFileNumber": "16505", + "landDescription": "LOT 1 OF LOT 5 BLOCK 3 DISTRICT LOT 2 PLAN 4227" } ], "siteDisclosures": [ { + "uuid": "60767b2e-c345-437f-8019-bb03a100ed40", "siteRegistry": false, - "dateReceived": "2016-03-25", - "dateCompleted": "2019-08-26", - "dateEntered": "2017-11-01", - "dateRegistrar": "2020-07-09", - "dateLocalAuthorityReceived": "2015-02-15", - "summary": "Eos atque suscipit.\nQuisquam provident sed laudantium possimus rerum doloremque voluptatem.\nAt illo voluptatibus culpa.", - "informationUsed": "Repellat inventore corrupti ullam.\nPraesentium praesentium quisquam aut porro.\nSequi molestiae necessitatibus quia.\nCorrupti velit possimus labore deleniti laudantium quaerat.", - "pastOrPresentOrders": "Voluptatem dolorem fuga hic aliquam animi quibusdam.\nNobis aperiam ad tempora voluptates nostrum quasi quam ratione magni.\nMinus deleniti fugiat.", + "dateReceived": "2017-12-23", + "dateCompleted": "2018-08-15", + "dateEntered": "2017-11-07", + "dateRegistrar": "2017-08-30", + "dateLocalAuthorityReceived": "2015-12-21", + "summary": "Molestiae facilis ea vel excepturi velit voluptatibus beatae iste aliquid.\nEum cum consectetur labore ipsum voluptatum nemo quidem.", + "informationUsed": "Vitae atque magnam quo incidunt minus placeat.\nQuaerat neque nisi possimus laudantium minima harum earum aut.\nItaque accusamus rerum et voluptas voluptas.\nFugit nihil animi qui.\nConsequatur quo id vitae.", + "pastOrPresentOrders": "Optio suscipit sapiente.\nRerum amet sapiente mollitia.", "commercialAndIndustrialPurposes": [ { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true - }, - { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true + "uuid": "bcabff20-fd18-4a8b-b760-0aa5daa6f77f", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false }, { - "scheduleReference": "F1*", + "uuid": "01cc5cee-bccb-4b6b-8bb3-9f0f445b2ca5", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false }, { + "uuid": "84287e11-fab9-4695-8c81-fb0791c0e448", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true + "siteRegistry": false } ] } ], "activityLog": [ { + "uuid": "ec210d40-e789-4662-a976-ae7920a307a2", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "RIPPIN SCHUYLER", - "timestamp": "2019-02-15" + "user": "HOEGER BERNIECE", + "timestamp": "2023-03-27" }, { + "uuid": "f7048a86-54fa-4b3d-886f-e6352c2dbdc8", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "SHANAHAN KAYLEY", - "timestamp": "2014-11-02" + "user": "HICKLE JULIO", + "timestamp": "2020-10-27" }, { + "uuid": "69ce2b4a-e9a7-4475-8c52-da5a92d92211", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "YUNDT-ROMAGUERA JON", - "timestamp": "2023-06-07" + "user": "STOKES VERNER", + "timestamp": "2014-08-19" }, { + "uuid": "893262d8-d8e9-4f5d-9269-15adea9245ea", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "DUBUQUE AMAYA", - "timestamp": "2021-06-25" + "user": "THOMPSON MARTY", + "timestamp": "2023-06-28" }, { + "uuid": "e22784e5-866c-4f97-9f94-f503f8b3c703", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "FEIL LUCAS", - "timestamp": "2021-08-01" - }, - { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "WINDLER NIKITA", - "timestamp": "2018-07-23" + "user": "MCGLYNN LURLINE", + "timestamp": "2020-05-31" }, { + "uuid": "da973cb2-30ec-4721-a868-de24d31a982e", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "REINGER RYAN", - "timestamp": "2020-04-18" + "user": "KULAS PARIS", + "timestamp": "2022-08-02" }, { + "uuid": "d27470f7-ef2e-4697-8d27-95ef90f20a4e", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "KRAJCIK SHEMAR", - "timestamp": "2015-05-21" + "user": "WOLF NIGEL", + "timestamp": "2016-07-07" }, { + "uuid": "016e6352-577a-4040-ad18-f587996a3057", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "HELLER NAKIA", - "timestamp": "2021-08-05" + "user": "ERDMAN FOSTER", + "timestamp": "2017-12-15" } ], "associatedSites": [ { - "dateNoted": "2021-08-01", - "notes": "", - "parcelID": "15708", - "siteID": "20680", - "siteRegistry": false - }, - { - "dateNoted": "2013-12-11", + "uuid": "d5d4913e-5703-48a8-a178-a49826c13366", + "dateNoted": "2017-06-06", "notes": "", - "parcelID": "16826", - "siteID": "18816", - "siteRegistry": false + "parcelID": "17052", + "siteID": "16133", + "siteRegistry": true } ] }, { - "uuid": "a686cfaa-2aee-40cf-ac49-a2a6b39885ee", - "siteID": 18801, - "address": "5877 Vena Hollow", - "latitude": 58.5346, - "longitude": -120.7598, - "lastUpdated": "2020-09-16", - "city": "Janesville", - "region": " North Coast", - "victoriaFile": "26250-20/4572", + "uuid": "8a77d904-38df-4708-a998-04cda559d666", + "siteID": 19893, + "address": "43896 Mitchell Mall", + "latitude": 49.1373, + "longitude": -127.5032, + "lastUpdated": "2015-04-24", + "city": "Dooleystead", + "region": "Mainland/Southwest", + "victoriaFile": "26250-20/2654", "regionalFile": "N/A", "parcelIDs": [ - 6741446, - 8890663, - 1076350, - 5058945, - 3592676 + 7729087, + 5576950, + 8707706, + 6799492, + 2750266 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2020-09-07", - "completed": "2019-11-28", - "initiated": "2019-06-24", - "ministryContact": "CARTER JARED", + "uuid": "f4744860-d445-4b8c-8b5d-b16970f436c6", + "createdAt": "2019-06-15", + "completed": "2020-04-10", + "initiated": "2020-07-03", + "ministryContact": "DICKINSON ELNORA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -54766,28 +63086,38 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true + "uuid": "1b0a47cb-4c0c-4499-ace2-828eddd3f1a7", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "uuid": "003bddcb-f4eb-4269-aeef-143f1ed8a5d8", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false }, { + "uuid": "d39d5a2b-c072-4481-8eae-3c0408055e41", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true }, { + "uuid": "9e8b5efd-8dd9-42ed-bc16-df61c02b0aa4", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2023-08-13", - "completed": "2015-04-14", - "initiated": "2019-04-24", - "ministryContact": "MURAZIK TOD", + "uuid": "1b9d6886-4d9a-4418-acdf-907b8094e2a1", + "createdAt": "2016-12-01", + "completed": "2017-05-27", + "initiated": "2015-07-29", + "ministryContact": "KUPHAL LEXIE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -54796,23 +63126,44 @@ ], "notationParticipants": [ { + "uuid": "3cc7dd2a-4837-46f9-bbe8-b2f65ed0b209", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "4083428c-0a95-48e5-a2ca-0ef64d465de2", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false }, { + "uuid": "5efb250b-2d1a-4e4d-8ac2-d5125719a07f", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true + }, + { + "uuid": "4e605442-a045-45ae-a99e-905b69e48053", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "e20bc64d-b6e5-42c3-936f-f32744f2404e", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2020-01-15", - "completed": "2014-08-05", - "initiated": "2020-02-24", - "ministryContact": "SCHMITT FRED", + "uuid": "d5691fb7-a575-4779-9a4c-4c2ede2289b5", + "createdAt": "2022-12-10", + "completed": "2014-05-29", + "initiated": "2016-11-10", + "ministryContact": "DARE EMMY", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -54821,23 +63172,32 @@ ], "notationParticipants": [ { + "uuid": "dcfa2c53-637d-47db-8059-3ad678412d64", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", + "uuid": "91ca2f05-3f8c-45f7-9672-6388cfa942c2", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "uuid": "9e2a706f-0b57-4eae-96f9-8d4ba5884f4d", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2019-03-09", - "completed": "2015-02-08", - "initiated": "2013-12-20", - "ministryContact": "ORTIZ STEPHAN", + "uuid": "32612cc7-39e5-4f58-9f11-c4ce6ec79595", + "createdAt": "2014-09-01", + "completed": "2015-09-23", + "initiated": "2014-01-29", + "ministryContact": "FRIESEN REBA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -54846,23 +63206,26 @@ ], "notationParticipants": [ { + "uuid": "af296418-d12d-41d2-9c33-7920c2846a2f", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false }, { + "uuid": "e6435fd4-f6cd-442b-86ff-310abd803291", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": true } ], "siteRegistry": false }, { - "createdAt": "2021-06-02", - "completed": "2020-08-27", - "initiated": "2014-06-03", - "ministryContact": "KUB MADISYN", + "uuid": "1201baf8-26d7-43e6-97be-08c69a8c10d9", + "createdAt": "2020-11-10", + "completed": "2023-06-03", + "initiated": "2022-01-03", + "ministryContact": "FARRELL ANTONETTA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -54871,69 +63234,56 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "uuid": "62b2c210-5315-47b9-b7c0-ac2adecef2e6", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { + "uuid": "a5c2fcbc-f4fa-42d9-afa5-e820e113fc29", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true + "role": "REQUESTED BY", + "siteRegistry": false }, { + "uuid": "cc39cdc9-2264-4075-8b87-d92ce8aa4bcf", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true + "role": "REQUESTED BY", + "siteRegistry": false }, { + "uuid": "d9b06eb9-bcd4-40ba-a020-913744594bff", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false + }, + { + "uuid": "aafe9484-aaaf-435b-b2d1-54369e9ff2b0", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true } ], "participants": [ { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2021-01-01", - "startDate": "2015-01-29", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": true - }, - { - "name": "IPSUM", - "endDate": "2021-04-05", - "startDate": "2020-11-28", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": false - }, - { + "uuid": "e9ef8c94-9b07-4040-909f-d238c2280b09", "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2019-03-23", - "startDate": "2021-10-03", + "endDate": "2013-10-24", + "startDate": "2019-11-21", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": false }, { - "name": "IPSUM", - "endDate": "2019-06-09", - "startDate": "2020-05-24", + "uuid": "a44b65da-3437-4bbf-bf35-129b1e6e15d8", + "name": "AMET, DOLOR SIT", + "endDate": "2019-07-09", + "startDate": "2015-11-23", "notes": "", "roles": [ "EMPLOYEE" @@ -54943,212 +63293,220 @@ ], "suspectLandUses": [ { + "uuid": "4e03b3fa-bb50-4a7d-ab94-fa80c91e0dc5", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-07-12 (described on Site Profile dated 2021-07-12)", + "notes": "INSERTED FOR SITE PROFILE DATED 2016-10-22 (described on Site Profile dated 2016-10-22)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { + "uuid": "87abf5cc-214b-4f6a-a28d-488d6362e4ab", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-01-11 (described on Site Profile dated 2021-01-11)", + "notes": "INSERTED FOR SITE PROFILE DATED 2022-12-18 (described on Site Profile dated 2022-12-18)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { + "uuid": "fd8a27d2-ea28-4e15-a2aa-00d47c648f20", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-10-28 (described on Site Profile dated 2014-10-28)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "notes": "INSERTED FOR SITE PROFILE DATED 2021-06-04 (described on Site Profile dated 2021-06-04)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2023-08-13 (described on Site Profile dated 2023-08-13)", + "uuid": "7fd204ed-b22b-44f1-85b9-50fa63830845", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2016-02-22 (described on Site Profile dated 2016-02-22)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-11-16 (described on Site Profile dated 2015-11-16)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "uuid": "9376fa15-b551-4460-9151-466fbd859066", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2019-05-19 (described on Site Profile dated 2019-05-19)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], "parcelDescriptions": [ { + "uuid": "b8ecab93-b702-4b09-9e90-d06601e3b789", "siteRegistry": false, - "dateNoted": "2019-03-04", - "parcelID": "19442", - "crownLandUsePIN": "20655", - "crownLandFileNumber": "17545", - "landDescription": "LOT 2 OF LOT 1 BLOCK 5 DISTRICT LOT 1 PLAN 4226" + "dateNoted": "2020-07-21", + "parcelID": "15536", + "crownLandUsePIN": "17913", + "crownLandFileNumber": "20606", + "landDescription": "LOT 4 OF LOT 1 BLOCK 1 DISTRICT LOT 2 PLAN 3620" }, { - "siteRegistry": false, - "dateNoted": "2019-12-26", - "parcelID": "17346", - "crownLandUsePIN": "17495", - "crownLandFileNumber": "19553", - "landDescription": "LOT 3 OF LOT 1 BLOCK 2 DISTRICT LOT 3 PLAN 8950" + "uuid": "d6219801-ff83-4017-a9cc-5ccd5fc61437", + "siteRegistry": true, + "dateNoted": "2015-09-16", + "parcelID": "19596", + "crownLandUsePIN": "17742", + "crownLandFileNumber": "15753", + "landDescription": "LOT 1 OF LOT 2 BLOCK 2 DISTRICT LOT 1 PLAN 8908" + }, + { + "uuid": "ac7ec786-39e5-496f-8a26-ff90ca63e331", + "siteRegistry": true, + "dateNoted": "2021-12-29", + "parcelID": "19842", + "crownLandUsePIN": "16819", + "crownLandFileNumber": "20701", + "landDescription": "LOT 3 OF LOT 5 BLOCK 1 DISTRICT LOT 1 PLAN 8695" } ], "siteDisclosures": [ { - "siteRegistry": true, - "dateReceived": "2020-01-09", - "dateCompleted": "2016-09-03", - "dateEntered": "2016-11-10", - "dateRegistrar": "2015-05-02", - "dateLocalAuthorityReceived": "2016-08-21", - "summary": "Maiores voluptatum quisquam cumque adipisci itaque.\nAmet quidem cum voluptate.", - "informationUsed": "Ducimus exercitationem praesentium temporibus doloribus exercitationem officiis animi corporis error.\nEaque perferendis unde hic maxime nulla itaque vel reiciendis nihil.\nQuam ducimus quas.\nDoloribus maiores cupiditate.\nAtque repellendus doloribus error odio reprehenderit hic veniam.", - "pastOrPresentOrders": "Sunt quos non iste.\nVero officiis repellendus inventore distinctio ipsum ullam fugit.", + "uuid": "802c7a75-3c5d-4398-9caa-24c123a494c4", + "siteRegistry": false, + "dateReceived": "2017-03-08", + "dateCompleted": "2021-04-27", + "dateEntered": "2017-05-27", + "dateRegistrar": "2014-05-25", + "dateLocalAuthorityReceived": "2019-01-12", + "summary": "Corporis libero pariatur vero illum unde aut omnis qui.\nEum labore recusandae incidunt recusandae ipsa delectus quis deleniti fugiat.\nQuod similique facilis dolorum quasi.", + "informationUsed": "Cumque porro iste impedit quam quod molestiae.\nEarum voluptatem nostrum in iste.\nDolores velit mollitia aut veniam.", + "pastOrPresentOrders": "Similique tempora commodi ut in.", "commercialAndIndustrialPurposes": [ { + "uuid": "86de9c48-c7a9-43a6-a9bf-b821292d05a6", "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false }, { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "uuid": "9e2bff9b-a8d9-4e8c-bc83-17a87d6ce7e5", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { + "uuid": "4cb9216c-12ff-4e77-9be5-c9fca7778389", "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false }, { + "uuid": "7622142c-c509-4711-90f2-bd7a9eb36614", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true + "siteRegistry": false } ] }, { - "siteRegistry": true, - "dateReceived": "2023-05-19", - "dateCompleted": "2021-11-03", - "dateEntered": "2019-04-21", - "dateRegistrar": "2019-03-21", - "dateLocalAuthorityReceived": "2018-05-05", - "summary": "Nostrum fugiat consequatur fuga repudiandae nisi fuga praesentium recusandae.\nAb facere doloribus consectetur earum explicabo.", - "informationUsed": "Debitis incidunt ipsum cumque animi.\nQuibusdam officiis maiores nulla eaque veritatis facere voluptatibus nihil.\nSed ea odio quam provident illum soluta.\nQuibusdam ratione laboriosam doloremque deleniti quam veritatis quam architecto porro.\nQuis voluptatibus asperiores quaerat tempore laudantium.", - "pastOrPresentOrders": "Itaque fugiat quis omnis saepe ipsum quae rem quis.\nLibero iusto voluptatum consequuntur reprehenderit.", + "uuid": "97c45b5f-7a17-46a2-8a51-0ffda85f1422", + "siteRegistry": false, + "dateReceived": "2023-06-25", + "dateCompleted": "2019-02-14", + "dateEntered": "2022-12-16", + "dateRegistrar": "2016-10-10", + "dateLocalAuthorityReceived": "2018-11-29", + "summary": "Autem quaerat ab cumque qui fugit distinctio mollitia ad sed.\nAperiam facilis illum architecto assumenda adipisci optio.\nAut natus earum.", + "informationUsed": "Quasi laboriosam nulla aperiam molestiae architecto nobis mollitia dolores.\nQuasi eaque molestiae dolorem ipsum sit quia nam.\nReprehenderit minima aspernatur maxime nulla aliquam iure voluptatibus.", + "pastOrPresentOrders": "Distinctio quasi minus voluptates.\nPossimus sit quidem reprehenderit expedita velit ullam.\nLaborum quas doloremque iste architecto sunt cumque ad cupiditate.", "commercialAndIndustrialPurposes": [ { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false + "uuid": "0d1bfd1d-fe48-4ef4-993c-0c255e91cbec", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true }, { + "uuid": "82eb99c3-8555-4c6a-88b8-4e1bf623f160", "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true } ] } ], "activityLog": [ { + "uuid": "bbdfad28-a6f7-45e0-b7b1-2bca686983bd", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "KIHN MADELYN", - "timestamp": "2014-10-06" + "user": "MAYER ERNIE", + "timestamp": "2021-12-03" }, { + "uuid": "4bd5a582-2d47-4d43-9e00-9ee2566eaaa2", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "SENGER LARISSA", - "timestamp": "2018-12-09" + "user": "MERTZ CHRISTOPHER", + "timestamp": "2017-12-11" }, { + "uuid": "7ce61688-c164-482d-bf81-5d338242a3a3", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "STIEDEMANN OTHO", - "timestamp": "2018-10-28" - }, - { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "BARROWS WAYNE", - "timestamp": "2022-03-04" - }, - { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "HICKLE ISOBEL", - "timestamp": "2019-04-08" + "user": "CHAMPLIN GENE", + "timestamp": "2021-04-26" }, { + "uuid": "323aad58-6dbc-4e2f-b683-e296f386454d", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "JACOBS JAZMYNE", - "timestamp": "2014-09-07" - }, - { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "ANDERSON ANGUS", - "timestamp": "2016-09-02" + "user": "HYATT ROGER", + "timestamp": "2014-08-17" }, { + "uuid": "c0a04873-0871-485a-85d0-a55fd841d5f1", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "WEHNER MCKENNA", - "timestamp": "2022-04-25" + "user": "SMITH CARRIE", + "timestamp": "2014-10-16" }, { - "siteRegistry": true, + "uuid": "d0b4704b-4f2b-49ff-b6ac-6c0d9c85789e", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "GRANT MERLIN", - "timestamp": "2014-11-06" + "user": "THIEL JALON", + "timestamp": "2021-03-12" } ], "associatedSites": [ { - "dateNoted": "2014-05-21", + "uuid": "f690f149-475d-477b-b4a3-27459bb1ceaf", + "dateNoted": "2015-02-23", "notes": "", - "parcelID": "16659", - "siteID": "19235", - "siteRegistry": false - }, - { - "dateNoted": "2020-01-13", - "notes": "", - "parcelID": "15605", - "siteID": "19549", + "parcelID": "18215", + "siteID": "18174", "siteRegistry": false }, { - "dateNoted": "2015-04-11", + "uuid": "4c2eb564-685c-437a-8470-ba3b4ca94c77", + "dateNoted": "2022-03-23", "notes": "", - "parcelID": "20102", - "siteID": "15827", + "parcelID": "15730", + "siteID": "16078", "siteRegistry": false } ] }, { - "uuid": "7d238a5d-1b5b-4219-927c-53f385d34fb8", - "siteID": 19240, - "address": "12856 Nitzsche Flat", - "latitude": 54.0597, - "longitude": -120.9272, - "lastUpdated": "2016-03-02", - "city": "Angelineshire", - "region": "Vancouver Island/Coast", - "victoriaFile": "26250-20/11378", + "uuid": "9107af30-4f31-4fff-94de-df5bf1e99f34", + "siteID": 20380, + "address": "81343 Carter Forks", + "latitude": 51.5781, + "longitude": -126.033, + "lastUpdated": "2014-03-17", + "city": "Waelchistad", + "region": "Cariboo", + "victoriaFile": "26250-20/14905", "regionalFile": "N/A", "parcelIDs": [ - 4400832, - 453306, - 878905, - 2475915, - 7473507 + 9200581, + 3840719, + 580503, + 259659, + 9203969 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2017-01-09", - "completed": "2022-11-26", - "initiated": "2022-08-20", - "ministryContact": "HUDSON BART", + "uuid": "32246000-1fe1-40d2-8dd5-6b2fe4baec43", + "createdAt": "2016-05-22", + "completed": "2020-10-18", + "initiated": "2018-04-09", + "ministryContact": "HOWELL BRADEN", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -55157,33 +63515,78 @@ ], "notationParticipants": [ { + "uuid": "e5d3dc37-ca6e-4f56-84d3-da0a00cc87f3", "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "08897ae7-16ba-48f0-b703-f8d6ba5efd8e", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", + "uuid": "c3f8e428-3f25-4775-8a26-7f0273a1d470", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "uuid": "870db574-acfa-45bb-aea1-0352ab1718da", + "createdAt": "2016-01-07", + "completed": "2014-03-23", + "initiated": "2023-03-01", + "ministryContact": "TURCOTTE CHAUNCEY", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "uuid": "5065f81d-52be-404d-8022-0d52ca1b642d", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", + "uuid": "0986c140-470c-43bf-9d37-6437e7002315", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "603d56ce-5433-4525-a289-e93f2cb984a3", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "834859da-c88d-4288-8a4f-4214ab832399", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false + }, + { + "uuid": "9c920039-2f07-40d2-82c8-6612e1a12fd8", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2022-11-23", - "completed": "2018-02-26", - "initiated": "2017-05-13", - "ministryContact": "BASHIRIAN ROLANDO", + "uuid": "0a0ab52a-f261-41b8-921c-2e1863c63c07", + "createdAt": "2020-03-31", + "completed": "2017-01-22", + "initiated": "2020-01-29", + "ministryContact": "SAWAYN MCKENZIE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -55192,27 +63595,112 @@ ], "notationParticipants": [ { + "uuid": "cd8d9da3-46fb-4904-b890-ecfe8f8b3186", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "uuid": "af76623a-28bb-4acd-a2cb-d7758a5d1726", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false }, { + "uuid": "2595f656-abaa-408d-b6a1-59e448a293a3", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "74257754-b5e0-496b-a706-8edd44a6e026", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "uuid": "0e34666f-9cca-403f-8bb8-d0bf33f162f8", + "createdAt": "2016-06-20", + "completed": "2016-09-25", + "initiated": "2020-04-20", + "ministryContact": "HAYES WADE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "uuid": "ffefd14d-7130-4ce1-b043-2d51d6afcb08", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "uuid": "04c8eb80-0cd6-4029-b516-5858d65911a4", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true }, { + "uuid": "b8ce9ed8-8f80-4d7c-bf83-ed3c3c0e1819", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "uuid": "6e16b76b-6c18-4559-8d86-c33de68db923", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": false }, { + "uuid": "f7c6d0dc-9dc9-4f4c-8a11-a6832b5ea15a", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "uuid": "89eb4823-2878-417b-bf0f-833fa903668a", + "createdAt": "2015-02-26", + "completed": "2015-10-10", + "initiated": "2023-09-29", + "ministryContact": "ALTENWERTH FLORINE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "uuid": "a07acd77-08f1-4242-901d-8bf9342ae41c", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true }, { + "uuid": "18410002-c412-4e4e-8f59-acdd9150f3e5", "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "44b6ac0b-c595-4a83-ae99-ebe9b4cb4ca5", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "uuid": "a9cb3f3d-9973-45ca-ae75-e8f8aeb3bfbf", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false } @@ -55222,49 +63710,43 @@ ], "participants": [ { + "uuid": "1528dc98-6b84-4426-981d-3630dcbd2360", "name": "IPSUM", - "endDate": "2016-04-13", - "startDate": "2017-08-02", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2022-11-04", - "startDate": "2022-03-23", + "endDate": "2014-12-20", + "startDate": "2021-04-30", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true }, { - "name": "IPSUM", - "endDate": "2019-01-19", - "startDate": "2021-10-07", + "uuid": "9e85e6e9-62d6-4932-b17c-cb83e06c7b92", + "name": "AMET, DOLOR SIT", + "endDate": "2015-08-20", + "startDate": "2014-01-06", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": false }, { - "name": "AMET, DOLOR SIT", - "endDate": "2014-12-19", - "startDate": "2016-06-12", + "uuid": "be2cb3b1-1de9-4b55-bd9c-947d7c59ac81", + "name": "IPSUM", + "endDate": "2015-03-15", + "startDate": "2019-07-20", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": true + "siteRegistry": false }, { + "uuid": "d54fa536-d819-41ac-a20c-2214b46317e5", "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2017-05-04", - "startDate": "2017-01-09", + "endDate": "2015-11-24", + "startDate": "2014-10-13", "notes": "", "roles": [ "ORGANIZATION" @@ -55274,139 +63756,252 @@ ], "suspectLandUses": [ { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-06-19 (described on Site Profile dated 2018-06-19)", + "uuid": "f763f4e7-4f20-4c4b-b332-1ab7c44058d3", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2018-06-28 (described on Site Profile dated 2018-06-28)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "uuid": "c4ad487d-5440-4c2d-962f-b3066a7ffe89", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2022-05-12 (described on Site Profile dated 2022-05-12)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { + "uuid": "8db175f8-7f7e-447a-9498-46674afe67e4", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-02-27 (described on Site Profile dated 2019-02-27)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "notes": "INSERTED FOR SITE PROFILE DATED 2015-09-17 (described on Site Profile dated 2015-09-17)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { + "uuid": "ede828af-8dc7-420a-809a-5ae18feb47b5", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2013-11-29 (described on Site Profile dated 2013-11-29)", + "notes": "INSERTED FOR SITE PROFILE DATED 2015-06-18 (described on Site Profile dated 2015-06-18)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], "parcelDescriptions": [ { - "siteRegistry": false, - "dateNoted": "2022-02-17", - "parcelID": "18288", - "crownLandUsePIN": "18965", - "crownLandFileNumber": "19974", - "landDescription": "LOT 3 OF LOT 3 BLOCK 1 DISTRICT LOT 3 PLAN 7719" + "uuid": "f7ae6864-c929-4de6-a989-fe90212731d8", + "siteRegistry": true, + "dateNoted": "2016-11-21", + "parcelID": "15522", + "crownLandUsePIN": "18618", + "crownLandFileNumber": "20935", + "landDescription": "LOT 3 OF LOT 4 BLOCK 4 DISTRICT LOT 5 PLAN 5078" }, { - "siteRegistry": true, - "dateNoted": "2021-04-24", - "parcelID": "18622", - "crownLandUsePIN": "17771", - "crownLandFileNumber": "19460", - "landDescription": "LOT 3 OF LOT 2 BLOCK 1 DISTRICT LOT 1 PLAN 8104" + "uuid": "09d96999-c65f-4944-bdbf-307c45d56e90", + "siteRegistry": false, + "dateNoted": "2015-02-26", + "parcelID": "17922", + "crownLandUsePIN": "18303", + "crownLandFileNumber": "17009", + "landDescription": "LOT 3 OF LOT 1 BLOCK 2 DISTRICT LOT 5 PLAN 7828" }, { + "uuid": "a9b4462d-68ca-431c-a4db-0f0ada6ceaf6", "siteRegistry": false, - "dateNoted": "2017-02-01", - "parcelID": "15864", - "crownLandUsePIN": "18780", - "crownLandFileNumber": "18168", - "landDescription": "LOT 2 OF LOT 1 BLOCK 4 DISTRICT LOT 5 PLAN 6209" + "dateNoted": "2022-03-12", + "parcelID": "17762", + "crownLandUsePIN": "16790", + "crownLandFileNumber": "17080", + "landDescription": "LOT 5 OF LOT 3 BLOCK 3 DISTRICT LOT 2 PLAN 9254" + }, + { + "uuid": "d7fa6f40-98ac-4af9-9978-3d6887b6dc4d", + "siteRegistry": true, + "dateNoted": "2022-07-26", + "parcelID": "16854", + "crownLandUsePIN": "19365", + "crownLandFileNumber": "17355", + "landDescription": "LOT 1 OF LOT 4 BLOCK 5 DISTRICT LOT 2 PLAN 6250" } ], "siteDisclosures": [ { + "uuid": "9ff53b93-f2b7-44c2-95c2-b13db45a7349", "siteRegistry": true, - "dateReceived": "2019-10-07", - "dateCompleted": "2020-05-29", - "dateEntered": "2014-01-17", - "dateRegistrar": "2021-12-27", - "dateLocalAuthorityReceived": "2022-11-28", - "summary": "Et consequuntur veritatis ducimus vero officia amet consequatur.", - "informationUsed": "Deleniti culpa nesciunt.\nSimilique facilis praesentium neque.\nA magnam eius id dignissimos temporibus sed unde.", - "pastOrPresentOrders": "Earum sint doloremque dolorum perspiciatis sequi fuga iure.\nAccusamus rerum nostrum laborum sequi adipisci possimus laborum saepe.", + "dateReceived": "2014-01-05", + "dateCompleted": "2015-03-03", + "dateEntered": "2022-01-21", + "dateRegistrar": "2023-04-24", + "dateLocalAuthorityReceived": "2018-12-21", + "summary": "Vero accusamus eligendi nemo.\nDistinctio labore architecto beatae laboriosam pariatur.", + "informationUsed": "Similique consequuntur accusamus est facere error.\nNulla eligendi dicta officia ut.\nUt earum architecto.", + "pastOrPresentOrders": "Incidunt totam error eius omnis molestias nam accusantium.\nHarum voluptas cum fugit.\nEarum dolores cumque.", "commercialAndIndustrialPurposes": [ { + "uuid": "66bd4d20-ebf3-468c-8cd1-b65170767abf", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "uuid": "7caaa7dd-f434-4b51-a935-b3e92d04f044", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { + "uuid": "3cd068f2-dfcc-49c4-b151-7a486268adc7", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "uuid": "e1433e40-df3e-4278-b00f-2584209e4909", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true } ] + }, + { + "uuid": "009817f5-2eac-407c-a27a-126d9b4b14cd", + "siteRegistry": true, + "dateReceived": "2021-09-26", + "dateCompleted": "2021-01-07", + "dateEntered": "2018-08-13", + "dateRegistrar": "2019-06-09", + "dateLocalAuthorityReceived": "2021-10-23", + "summary": "Et laudantium fuga quasi quisquam molestias dolore soluta veritatis laudantium.\nLaudantium vitae error doloremque repellendus natus nulla laudantium.\nAb eaque laudantium eveniet enim rerum reprehenderit dignissimos.", + "informationUsed": "Dolor ipsam iusto dicta ab molestiae maxime corporis.\nIpsum perferendis sequi.\nLabore deserunt molestiae ipsa aliquam praesentium quaerat velit distinctio.", + "pastOrPresentOrders": "Non voluptates voluptatibus consectetur laborum laudantium perferendis ab.\nPlaceat rem saepe.\nVoluptatum nemo reiciendis ut.", + "commercialAndIndustrialPurposes": [ + { + "uuid": "e12ed12d-70a2-4cc0-b461-f521506c235c", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "uuid": "39bdf3b7-5259-4486-b394-c8fbdedba848", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + } + ] } ], "activityLog": [ { - "siteRegistry": true, + "uuid": "babcbc8a-3234-4766-b120-aade49b1f21b", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "DENESIK JOHN", - "timestamp": "2021-08-18" + "user": "HERMAN KARINE", + "timestamp": "2015-06-14" }, { + "uuid": "857c2d1b-c54c-4f56-8939-3e0b91a8a908", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "WARD JORDANE", - "timestamp": "2021-10-21" + "user": "BERNIER AISHA", + "timestamp": "2017-01-15" }, { + "uuid": "bc4727c4-d0ba-4375-87d4-9e9fc439a591", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "WINTHEISER BILL", - "timestamp": "2019-03-21" + "user": "HUELS SHANEL", + "timestamp": "2022-12-05" }, { + "uuid": "a3a1a95a-c6d7-454f-b433-bfea5d452330", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "FAHEY-SCHADEN NOEMIE", - "timestamp": "2020-09-13" + "user": "VON SUZANNE", + "timestamp": "2015-02-01" + }, + { + "uuid": "1f5397a1-fb1b-446c-8613-3604f01be080", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "SCHAMBERGER ALESSANDRA", + "timestamp": "2018-12-03" + }, + { + "uuid": "208b968e-c70e-4b4e-b23e-3348c09041ab", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "POUROS WILLIE", + "timestamp": "2016-08-19" }, { + "uuid": "ce5f5dd9-d963-4984-8c41-4c650b3b3eae", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "SATTERFIELD SAVION", - "timestamp": "2014-11-17" + "user": "HETTINGER WILMA", + "timestamp": "2019-03-19" + }, + { + "uuid": "1f779a38-8379-4ee6-8457-d280e22f870e", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "RUNTE-FADEL RAQUEL", + "timestamp": "2016-08-30" + }, + { + "uuid": "a774f0c3-954c-4a45-bffd-b2733fbc1414", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "FRANECKI DORIS", + "timestamp": "2015-04-08" } ], "associatedSites": [ { - "dateNoted": "2022-08-30", + "uuid": "ede516ae-2554-4201-9e38-24424e61fc75", + "dateNoted": "2015-06-06", + "notes": "", + "parcelID": "17817", + "siteID": "15485", + "siteRegistry": false + }, + { + "uuid": "624a6da7-0084-4bf7-9660-17d12cbb9ddc", + "dateNoted": "2017-08-29", + "notes": "", + "parcelID": "19115", + "siteID": "16285", + "siteRegistry": true + }, + { + "uuid": "bd4826b8-ff69-41d4-8fd7-153032f93f39", + "dateNoted": "2021-08-21", "notes": "", - "parcelID": "17228", - "siteID": "18136", + "parcelID": "16771", + "siteID": "18050", "siteRegistry": false } ] }, { - "uuid": "81a94ac6-a422-42be-a3c5-34243dab1d06", - "siteID": 15837, - "address": "5345 Jamar Spurs", - "latitude": 55.7551, - "longitude": -128.0872, - "lastUpdated": "2014-12-09", - "city": "Hacienda Heights", - "region": " North Coast", - "victoriaFile": "26250-20/1267", + "uuid": "2efdfc23-7d4e-41fd-a5cc-4e01f88dbdb3", + "siteID": 19515, + "address": "280 Reinger Gardens", + "latitude": 50.0714, + "longitude": -122.0945, + "lastUpdated": "2021-07-05", + "city": "Roderickstad", + "region": "Kootenay", + "victoriaFile": "26250-20/14707", "regionalFile": "N/A", "parcelIDs": [ - 5910202, - 9261838, - 3149415, - 1872539, - 586314 + 2916862, + 5140789, + 5374860, + 7571531, + 7227382 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2014-03-18", - "completed": "2018-01-24", - "initiated": "2020-12-23", - "ministryContact": "SENGER MELLIE", + "uuid": "5bede6eb-9f33-4884-b315-a7ac79777d15", + "createdAt": "2022-11-25", + "completed": "2016-04-25", + "initiated": "2016-03-12", + "ministryContact": "FUNK ALEXIE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -55415,28 +64010,38 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", + "uuid": "c13289e9-0e53-4a69-bdf9-6d389ebc7089", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "cf24f4b0-4ace-495f-814d-e055cbcc4bd6", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "09031458-d38e-4f41-b252-06f254942e01", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false + }, + { + "uuid": "aafdb118-d2a3-42c5-85ee-a68ebd39e5e3", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2018-12-11", - "completed": "2017-06-11", - "initiated": "2019-10-15", - "ministryContact": "LINDGREN BROCK", + "uuid": "90bb06a5-edf4-44e5-bbe2-8398466a3326", + "createdAt": "2020-12-23", + "completed": "2020-11-28", + "initiated": "2014-02-04", + "ministryContact": "HELLER JANIYA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -55445,49 +64050,45 @@ ], "notationParticipants": [ { + "uuid": "a76b8678-79e6-4213-b87b-fc5923804e46", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false + "uuid": "9d43dacc-fa61-4c4b-ad8b-980a8e3441c6", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "uuid": "f33575b3-f4a1-4872-b1fe-7fb62af51767", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": false }, { + "uuid": "d93f715a-ed30-4687-bdae-ea4f18733b72", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { + "uuid": "671a6721-179b-4a49-ad9a-65a1a157c1d5", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false } ], "participants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2023-10-09", - "startDate": "2019-09-25", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": true - }, - { - "name": "AMET, DOLOR SIT", - "endDate": "2015-06-23", - "startDate": "2018-05-11", + "uuid": "84fed237-1c40-4863-90d0-900970b0c410", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2016-12-16", + "startDate": "2016-12-02", "notes": "", "roles": [ "EMPLOYEE" @@ -55495,9 +64096,10 @@ "siteRegistry": true }, { - "name": "IPSUM", - "endDate": "2019-08-21", - "startDate": "2021-12-31", + "uuid": "72ff7da2-1056-41a3-a684-472bacf01b7c", + "name": "AMET, DOLOR SIT", + "endDate": "2022-08-28", + "startDate": "2022-05-03", "notes": "", "roles": [ "EMPLOYEE" @@ -55505,224 +64107,209 @@ "siteRegistry": true }, { + "uuid": "375cd03c-035c-4ce4-bcb5-a8ef7a66c79a", "name": "AMET, DOLOR SIT", - "endDate": "2014-04-20", - "startDate": "2014-12-22", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2017-01-22", - "startDate": "2015-07-15", + "endDate": "2020-09-13", + "startDate": "2015-04-28", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false } ], "suspectLandUses": [ { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2020-04-02 (described on Site Profile dated 2020-04-02)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" - }, - { + "uuid": "8e50d73a-3cd7-44e2-877e-b1d54bda2082", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-08-19 (described on Site Profile dated 2021-08-19)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "notes": "INSERTED FOR SITE PROFILE DATED 2023-10-08 (described on Site Profile dated 2023-10-08)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-09-11 (described on Site Profile dated 2015-09-11)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "uuid": "90e88e3f-647f-45f1-a3bc-ddf5e1119c4c", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2018-06-22 (described on Site Profile dated 2018-06-22)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-12-25 (described on Site Profile dated 2015-12-25)", + "uuid": "cef105e3-fd6b-40d5-9e66-4c04e872bd91", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2022-09-22 (described on Site Profile dated 2022-09-22)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { + "uuid": "3cededaf-914b-4b03-9d3c-e208bd5543a0", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-05-12 (described on Site Profile dated 2017-05-12)", + "notes": "INSERTED FOR SITE PROFILE DATED 2017-04-04 (described on Site Profile dated 2017-04-04)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "uuid": "8ea7090c-ae39-4fa8-9f8e-1b2059acde56", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2022-10-04 (described on Site Profile dated 2022-10-04)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], "parcelDescriptions": [ { + "uuid": "c984e337-e053-453c-99ae-57af2aac6ecc", "siteRegistry": true, - "dateNoted": "2023-05-06", - "parcelID": "17435", - "crownLandUsePIN": "17358", - "crownLandFileNumber": "20051", - "landDescription": "LOT 1 OF LOT 2 BLOCK 1 DISTRICT LOT 3 PLAN 7297" + "dateNoted": "2019-12-08", + "parcelID": "18152", + "crownLandUsePIN": "19650", + "crownLandFileNumber": "20956", + "landDescription": "LOT 3 OF LOT 2 BLOCK 4 DISTRICT LOT 2 PLAN 5204" }, { - "siteRegistry": false, - "dateNoted": "2021-11-04", - "parcelID": "15325", - "crownLandUsePIN": "19976", - "crownLandFileNumber": "19042", - "landDescription": "LOT 3 OF LOT 4 BLOCK 4 DISTRICT LOT 4 PLAN 5218" + "uuid": "94bc10e4-488f-4953-9fe1-dc2848cdc64f", + "siteRegistry": true, + "dateNoted": "2014-01-23", + "parcelID": "19707", + "crownLandUsePIN": "20212", + "crownLandFileNumber": "17327", + "landDescription": "LOT 5 OF LOT 5 BLOCK 4 DISTRICT LOT 1 PLAN 9027" + }, + { + "uuid": "0d4903dd-0c02-4c15-9ad0-1fd121c1eb5a", + "siteRegistry": true, + "dateNoted": "2019-11-13", + "parcelID": "18821", + "crownLandUsePIN": "20383", + "crownLandFileNumber": "18871", + "landDescription": "LOT 2 OF LOT 2 BLOCK 2 DISTRICT LOT 1 PLAN 3107" }, { + "uuid": "e034eccf-a726-4e4f-977c-d72d5170c1be", "siteRegistry": false, - "dateNoted": "2016-07-10", - "parcelID": "18014", - "crownLandUsePIN": "16909", - "crownLandFileNumber": "18620", - "landDescription": "LOT 4 OF LOT 3 BLOCK 3 DISTRICT LOT 5 PLAN 6370" + "dateNoted": "2016-12-23", + "parcelID": "19307", + "crownLandUsePIN": "17130", + "crownLandFileNumber": "16210", + "landDescription": "LOT 5 OF LOT 3 BLOCK 2 DISTRICT LOT 4 PLAN 3161" } ], "siteDisclosures": [ { - "siteRegistry": false, - "dateReceived": "2022-09-23", - "dateCompleted": "2023-08-19", - "dateEntered": "2020-04-27", - "dateRegistrar": "2014-06-10", - "dateLocalAuthorityReceived": "2014-10-05", - "summary": "Dolorum quasi qui a dicta nobis ab nihil.\nConsectetur ea facilis beatae quas.\nNihil possimus eligendi.", - "informationUsed": "Sunt alias deserunt ipsam nesciunt laudantium sint architecto corporis.\nNecessitatibus similique qui consequuntur enim illum excepturi fugit quo.\nCupiditate veniam incidunt fuga sequi.", - "pastOrPresentOrders": "Excepturi amet eos sunt tempore deserunt autem expedita mollitia.\nModi quae commodi aliquam voluptatibus corrupti fuga.", + "uuid": "49c42955-6aec-4c92-80ee-1c6437031657", + "siteRegistry": true, + "dateReceived": "2022-04-28", + "dateCompleted": "2020-12-01", + "dateEntered": "2016-10-07", + "dateRegistrar": "2019-03-14", + "dateLocalAuthorityReceived": "2020-02-25", + "summary": "Odit pariatur quam saepe illo magni placeat.\nVoluptatem saepe doloribus exercitationem.", + "informationUsed": "Minima quibusdam atque id error provident.\nQuis nisi nihil cumque quas nihil unde porro deserunt nam.\nCulpa laboriosam error similique.\nEligendi accusantium pariatur accusantium doloremque.\nNeque et voluptates.", + "pastOrPresentOrders": "Cum ducimus quia.\nNatus corporis numquam odio quam.\nQuibusdam non magni sequi suscipit possimus molestiae veniam.", "commercialAndIndustrialPurposes": [ { + "uuid": "9102c1fe-f857-4cf0-9367-ff88effaa989", "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true - }, - { - "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false - } - ] - }, - { - "siteRegistry": false, - "dateReceived": "2015-03-20", - "dateCompleted": "2015-11-17", - "dateEntered": "2022-09-20", - "dateRegistrar": "2014-11-23", - "dateLocalAuthorityReceived": "2018-07-15", - "summary": "Est magni non recusandae similique debitis cumque.", - "informationUsed": "Eos possimus aliquam laborum quae optio quibusdam voluptate sint ut.\nFuga maxime enim aperiam beatae animi doloribus eos.\nPossimus itaque cupiditate fugit delectus recusandae.\nNobis iste fuga.\nPerferendis ratione fuga magni inventore aliquid.", - "pastOrPresentOrders": "Iste quisquam fugit perspiciatis consequatur temporibus at enim ducimus.", - "commercialAndIndustrialPurposes": [ + }, { - "scheduleReference": "F1*", + "uuid": "7bd757ee-0576-4f92-9f58-102891b92799", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false + "siteRegistry": true }, { - "scheduleReference": "F1*", + "uuid": "c5ffcfed-755f-4d51-a283-27ddd1851928", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false + "siteRegistry": true }, { + "uuid": "28dac2c8-29af-4402-9e1f-6595c2f48dae", "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false } ] } ], "activityLog": [ { + "uuid": "6af69669-3ec3-4a08-9afd-2d546c687613", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "GLOVER ALYSA", - "timestamp": "2022-10-31" - }, - { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "MORISSETTE HORACIO", - "timestamp": "2016-02-26" + "user": "TOY OMARI", + "timestamp": "2019-08-23" }, { + "uuid": "7874a83f-5e75-4e94-8b64-971855d8f7ae", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "PFANNERSTILL ANTHONY", - "timestamp": "2023-03-06" - }, - { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "PAGAC ABBY", - "timestamp": "2022-03-15" - }, - { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "SHIELDS LUCIOUS", - "timestamp": "2015-03-04" + "user": "FRIESEN BARTON", + "timestamp": "2020-11-30" }, { + "uuid": "8eebfdce-a401-4153-bfb4-f8d115eb7e87", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "D'AMORE GUIDO", - "timestamp": "2023-01-26" + "user": "GULGOWSKI-WEISSNAT LAVERNA", + "timestamp": "2022-01-15" }, { + "uuid": "ec4f5004-a88f-4713-8bbb-7fd89a2f31f0", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "SCHULIST MARGARETT", - "timestamp": "2013-10-22" + "user": "ROLFSON JOVANY", + "timestamp": "2014-06-07" }, { + "uuid": "360d1f4d-4e43-4eef-8279-cf6a773aa9a0", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "GREEN JESSY", - "timestamp": "2019-03-23" + "user": "STROMAN FREDA", + "timestamp": "2021-10-21" } ], "associatedSites": [ { - "dateNoted": "2020-10-05", + "uuid": "987371a7-96e2-4798-8fd6-5d2f74db66a5", + "dateNoted": "2020-03-26", "notes": "", - "parcelID": "15664", - "siteID": "20080", - "siteRegistry": false + "parcelID": "17164", + "siteID": "18794", + "siteRegistry": true }, { - "dateNoted": "2015-05-26", + "uuid": "d17548fb-5095-4fb1-9daf-6099a57c1255", + "dateNoted": "2013-10-30", "notes": "", - "parcelID": "16155", - "siteID": "20492", - "siteRegistry": true + "parcelID": "18911", + "siteID": "19660", + "siteRegistry": false } ] }, { - "uuid": "b3dcbc29-7470-47e6-be93-015a27fbe061", - "siteID": 19253, - "address": "662 Bartell Green", - "latitude": 52.8973, - "longitude": -124.9908, - "lastUpdated": "2021-12-06", - "city": "Lake Dolly", - "region": "Mainland/Southwest", - "victoriaFile": "26250-20/3871", + "uuid": "d2b664f3-8985-4da6-9215-39ed8227f200", + "siteID": 18069, + "address": "37418 Keeling Ridges", + "latitude": 58.4328, + "longitude": -131.9069, + "lastUpdated": "2017-02-22", + "city": "Cartwrightfield", + "region": "Kootenay", + "victoriaFile": "26250-20/11415", "regionalFile": "N/A", "parcelIDs": [ - 5991615, - 5511473, - 5584346, - 2943078, - 1675059 + 9010470, + 9998627, + 244334, + 4625662, + 1771202 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2017-05-10", - "completed": "2021-02-03", - "initiated": "2015-09-10", - "ministryContact": "MANTE MCKENZIE", + "uuid": "c45ff7c3-6a02-45d5-9542-54e795b21852", + "createdAt": "2016-10-08", + "completed": "2021-08-30", + "initiated": "2018-02-20", + "ministryContact": "OKUNEVA EMILIE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -55731,33 +64318,44 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false + "uuid": "b7145c3a-4b96-42c6-8bea-f14edf5742b0", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true }, { + "uuid": "57e4d10e-5d8d-4dc4-87c2-511e72723f7d", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "08b1e4de-aa0e-4c1a-90bf-c20244550fc8", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { + "uuid": "a5cfc3e4-50e9-4fc0-b52d-4190c08bfaff", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false + }, + { + "uuid": "16c9944b-ed58-4fef-aed3-513e05a78ca9", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true } ], "siteRegistry": false }, { - "createdAt": "2015-05-15", - "completed": "2019-05-23", - "initiated": "2021-09-11", - "ministryContact": "ROSENBAUM SANTINO", + "uuid": "6bdcb065-014f-4d1e-998b-6d10febc9457", + "createdAt": "2014-10-08", + "completed": "2019-07-25", + "initiated": "2022-02-03", + "ministryContact": "VOLKMAN TAUREAN", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -55766,28 +64364,60 @@ ], "notationParticipants": [ { + "uuid": "e1918d9a-ac2f-4668-ab4c-320836738ace", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true }, { + "uuid": "c7bcd9b9-36af-42d7-8e4f-c98067b71920", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "ebc4fd5f-2f2f-4505-8c86-524c6e9b8a8e", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "uuid": "668caff5-d95b-4032-8aad-8a3c97373bb0", + "createdAt": "2018-08-04", + "completed": "2022-04-11", + "initiated": "2018-01-16", + "ministryContact": "LUEILWITZ SARINA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "uuid": "f827733f-da08-4161-b027-6f219fb415f3", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true }, { + "uuid": "52995ea3-4b0d-463c-913c-97d6961dd69f", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false + "role": "SUBMITTED BY", + "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2020-12-28", - "completed": "2018-10-03", - "initiated": "2014-07-27", - "ministryContact": "WELCH CATHERINE", + "uuid": "c3fd3d78-4808-4a9f-a473-9e024b24e643", + "createdAt": "2022-04-08", + "completed": "2019-11-15", + "initiated": "2016-03-22", + "ministryContact": "HAGENES BREANA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -55796,24 +64426,62 @@ ], "notationParticipants": [ { + "uuid": "0deba8b5-845c-49fe-a119-332f6f877931", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "3075b1ba-fe87-477e-ad09-5f2a29e556de", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false }, { + "uuid": "c7960e3f-4d0b-49f8-99c7-bf5e31b904a9", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", + "uuid": "911f4bf3-6929-4823-926c-33c308844093", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "uuid": "5dbf824a-709f-451d-ab85-6e2fe16f2f5e", + "createdAt": "2016-03-13", + "completed": "2017-08-24", + "initiated": "2022-09-11", + "ministryContact": "LEHNER ELBERT", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "uuid": "4622e26f-68ec-4c79-abf5-81c5b17871f1", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false }, { + "uuid": "f6a44593-6b5f-45bb-9ba9-737ccf6cc169", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "uuid": "4e764a0c-5aca-4bba-91b8-7c6c892309e5", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true } ], "siteRegistry": false @@ -55821,104 +64489,167 @@ ], "participants": [ { - "name": "IPSUM", - "endDate": "2014-10-25", - "startDate": "2014-01-31", + "uuid": "1ec9b35b-3f7c-497f-8300-7df4f9b7824b", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2019-05-10", + "startDate": "2017-04-03", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2023-03-29", - "startDate": "2018-02-15", + "uuid": "ca12bbe8-970b-418f-9b04-0732a8eb7556", + "name": "IPSUM", + "endDate": "2015-03-29", + "startDate": "2013-11-20", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], - "siteRegistry": true + "siteRegistry": false }, { - "name": "IPSUM", - "endDate": "2022-08-18", - "startDate": "2021-08-30", + "uuid": "5e624957-46f6-4bc3-8824-8b99c7d61a14", + "name": "AMET, DOLOR SIT", + "endDate": "2016-01-29", + "startDate": "2022-05-05", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": true + "siteRegistry": false }, { - "name": "AMET, DOLOR SIT", - "endDate": "2016-12-10", - "startDate": "2015-08-11", + "uuid": "6ecfb163-a882-4e23-b525-08d0847ba6c8", + "name": "IPSUM", + "endDate": "2017-01-31", + "startDate": "2022-07-05", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": true } ], "suspectLandUses": [ { + "uuid": "ff75f62e-cce9-48bd-994f-8a5905af353a", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2021-02-20 (described on Site Profile dated 2021-02-20)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "uuid": "250bbd72-bdf5-4487-9d21-94fe214be833", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-07-02 (described on Site Profile dated 2018-07-02)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "notes": "INSERTED FOR SITE PROFILE DATED 2021-01-11 (described on Site Profile dated 2021-01-11)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { + "uuid": "1cac3978-8ea8-473c-a1d1-dc0eb287d91f", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-08-07 (described on Site Profile dated 2017-08-07)", + "notes": "INSERTED FOR SITE PROFILE DATED 2014-11-29 (described on Site Profile dated 2014-11-29)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-06-16 (described on Site Profile dated 2015-06-16)", + "uuid": "28e2ab7c-3cdd-41e2-b610-2bd2998cd603", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2023-03-07 (described on Site Profile dated 2023-03-07)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "uuid": "f45abfe1-d357-40e9-8821-5cbf492a9ca2", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2016-03-05 (described on Site Profile dated 2016-03-05)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], "parcelDescriptions": [ { + "uuid": "c7320f81-b5c8-49fb-9abb-abd15572c667", "siteRegistry": false, - "dateNoted": "2014-09-25", - "parcelID": "17378", - "crownLandUsePIN": "20027", - "crownLandFileNumber": "20865", - "landDescription": "LOT 1 OF LOT 2 BLOCK 3 DISTRICT LOT 1 PLAN 7152" + "dateNoted": "2015-08-09", + "parcelID": "15933", + "crownLandUsePIN": "20112", + "crownLandFileNumber": "17639", + "landDescription": "LOT 2 OF LOT 1 BLOCK 2 DISTRICT LOT 1 PLAN 8502" }, { - "siteRegistry": false, - "dateNoted": "2020-06-23", - "parcelID": "20977", - "crownLandUsePIN": "15695", - "crownLandFileNumber": "15562", - "landDescription": "LOT 4 OF LOT 1 BLOCK 4 DISTRICT LOT 4 PLAN 3076" + "uuid": "a41491bd-cc0d-48b8-9f68-9a1288a3fb16", + "siteRegistry": true, + "dateNoted": "2022-09-23", + "parcelID": "20925", + "crownLandUsePIN": "16960", + "crownLandFileNumber": "17173", + "landDescription": "LOT 4 OF LOT 1 BLOCK 4 DISTRICT LOT 4 PLAN 6377" } ], "siteDisclosures": [ { + "uuid": "80cf3485-0013-4ad5-b6e7-1b9669448a32", "siteRegistry": true, - "dateReceived": "2014-10-12", - "dateCompleted": "2018-04-23", - "dateEntered": "2017-09-22", - "dateRegistrar": "2021-04-03", - "dateLocalAuthorityReceived": "2017-05-12", - "summary": "Similique consectetur dolorum laudantium occaecati beatae corrupti.", - "informationUsed": "Nostrum temporibus officiis nobis nisi tenetur.\nVoluptatum odit dolor nam.\nInventore adipisci est sapiente.\nNon ea odit consequatur soluta ipsum ullam.", - "pastOrPresentOrders": "Harum hic officia tempora accusamus dolor est libero.", + "dateReceived": "2019-02-23", + "dateCompleted": "2022-01-14", + "dateEntered": "2019-04-09", + "dateRegistrar": "2020-07-07", + "dateLocalAuthorityReceived": "2018-11-06", + "summary": "Eum illum nesciunt quod omnis nisi illo.\nVoluptatem ab sunt sequi ullam.", + "informationUsed": "Officiis quidem itaque a amet reiciendis.\nEt tenetur corporis harum quod voluptates amet.\nVel hic quam velit officiis odio eaque molestiae et.\nMagnam esse assumenda.", + "pastOrPresentOrders": "Aspernatur sapiente reprehenderit nostrum fugit ducimus nisi.\nSed veniam quod a officia cum suscipit sapiente inventore.", "commercialAndIndustrialPurposes": [ { + "uuid": "1b3d831e-ebe8-40ed-9124-3d22021934bd", "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false }, { + "uuid": "aaea965f-3ea8-45e8-a594-6b1d8ecad33d", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "uuid": "2586cefc-052b-41b4-b631-6bcdc7dff38d", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + } + ] + }, + { + "uuid": "5f557c2f-1d1f-4d94-94f1-52f0fafc18e4", + "siteRegistry": false, + "dateReceived": "2017-05-22", + "dateCompleted": "2020-07-18", + "dateEntered": "2020-04-05", + "dateRegistrar": "2021-09-29", + "dateLocalAuthorityReceived": "2019-01-18", + "summary": "Dolor libero iste illum similique non omnis praesentium tempora.\nSaepe voluptas maiores in rem.", + "informationUsed": "Velit dolorem laudantium quisquam dolorum odio.\nVoluptatum temporibus labore qui error ad sed cum dolorem facilis.\nSequi repellat magnam reiciendis laborum perspiciatis sit.\nDeserunt rerum consequuntur accusamus rerum expedita at.", + "pastOrPresentOrders": "Numquam laborum dolore dolorum nobis.", + "commercialAndIndustrialPurposes": [ + { + "uuid": "776abec5-5392-43b9-9630-8785e63e91b1", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { + "uuid": "8980ce45-8804-4835-bd2b-415cd00143b2", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "uuid": "9f09419c-fce9-4481-b6ce-347415caf6ed", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "uuid": "c61a6592-3dbf-43b4-aac3-be01cf2ad9a3", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true @@ -55928,85 +64659,106 @@ ], "activityLog": [ { + "uuid": "f9abd8f0-8a18-49d9-ae28-f8a20f27b222", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "PROSACCO EVELINE", + "timestamp": "2021-05-23" + }, + { + "uuid": "cd831cc4-6cf5-42f0-9df0-dfb8cbb343d9", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "OBERBRUNNER-BEIER ROOSEVELT", + "timestamp": "2015-04-25" + }, + { + "uuid": "b7cc067d-9535-4cd2-a9ea-e3fd6881477c", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "KOZEY KAREN", - "timestamp": "2014-03-05" + "user": "PROHASKA-WELCH ARVILLA", + "timestamp": "2017-10-19" }, { + "uuid": "889cf7d9-954d-4192-9b81-e9d6ba360c27", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "HOPPE BO", - "timestamp": "2021-12-23" + "user": "TRANTOW ROGELIO", + "timestamp": "2019-07-09" }, { + "uuid": "6a66719e-bd26-4849-a49e-6235038c92f1", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "STARK MIGUEL", - "timestamp": "2022-10-21" + "user": "THOMPSON ASHTON", + "timestamp": "2014-08-24" }, { + "uuid": "c5265be8-e051-481a-b396-6ded397ec4b3", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "PROSACCO LYLA", - "timestamp": "2016-01-19" + "user": "BREKKE PAMELA", + "timestamp": "2018-10-16" }, { + "uuid": "993c35eb-0130-4d5e-9989-a7237a7d56d6", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "KONOPELSKI TREVION", - "timestamp": "2015-07-14" - } - ], - "associatedSites": [ - { - "dateNoted": "2019-03-23", - "notes": "", - "parcelID": "20252", - "siteID": "16278", - "siteRegistry": true + "user": "SCHUPPE ABEL", + "timestamp": "2019-04-08" }, { - "dateNoted": "2023-01-28", - "notes": "", - "parcelID": "19181", - "siteID": "19399", - "siteRegistry": true + "uuid": "79f9ac26-2a3b-444b-8de0-705882393c68", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "O'KEEFE DOCK", + "timestamp": "2015-06-02" }, { - "dateNoted": "2020-08-09", + "uuid": "19ca0b67-13eb-4f46-b3ff-436242de6804", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "WUNSCH GENNARO", + "timestamp": "2023-04-21" + } + ], + "associatedSites": [ + { + "uuid": "9facd8cb-44e5-4721-8e43-78428fb31ac7", + "dateNoted": "2023-08-06", "notes": "", - "parcelID": "17967", - "siteID": "19365", + "parcelID": "20266", + "siteID": "18865", "siteRegistry": false } ] }, { - "uuid": "82d4086e-f040-4b6c-a11e-d2a671094877", - "siteID": 19608, - "address": "638 Satterfield Falls", - "latitude": 57.8519, - "longitude": -133.3304, - "lastUpdated": "2020-10-24", - "city": "Waldoport", - "region": "Kootenay", - "victoriaFile": "26250-20/9218", + "uuid": "fa5c298b-8dfd-4399-89cb-a19e7926c52f", + "siteID": 20584, + "address": "474 Gorczany Neck", + "latitude": 53.7774, + "longitude": -118.0731, + "lastUpdated": "2018-08-13", + "city": "North Jesscester", + "region": "Vancouver Island/Coast", + "victoriaFile": "26250-20/17866", "regionalFile": "N/A", "parcelIDs": [ - 2162873, - 3584163, - 4070141, - 6091424, - 8560169 + 4367173, + 5707674, + 4386448, + 6253342, + 9644350 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2017-10-08", - "completed": "2020-06-20", - "initiated": "2017-06-20", - "ministryContact": "TILLMAN LIZZIE", + "uuid": "8d66a6be-f9d2-414f-8040-d96bef4b08a9", + "createdAt": "2018-11-12", + "completed": "2015-10-27", + "initiated": "2016-09-24", + "ministryContact": "CARROLL KACI", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -56015,38 +64767,66 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", + "uuid": "13a3ed93-be7a-4c69-8d9d-2569157a1ea8", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false }, { + "uuid": "73ed718a-04ee-449d-8a65-b6c0a6ff01ee", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "uuid": "63ed3cc6-6a37-4246-889a-6f26f6f87c20", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": false }, { + "uuid": "0e4ff442-3f30-4c5a-850c-8e5c1f90da53", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "uuid": "72723dd9-8040-409c-983f-cc61ae54cb77", + "createdAt": "2018-01-06", + "completed": "2015-12-21", + "initiated": "2023-09-20", + "ministryContact": "WISOZK FELICITA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "uuid": "61a79504-cba0-4e3c-a1b3-75fa703424cb", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true }, { + "uuid": "e930a291-e70a-4f47-ac4d-cd84bdd2ecdb", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2020-02-18", - "completed": "2021-10-16", - "initiated": "2022-10-29", - "ministryContact": "SCHULTZ BEULAH", + "uuid": "78088393-bf13-45b0-acbb-62e6b1d62afb", + "createdAt": "2015-05-13", + "completed": "2019-05-24", + "initiated": "2018-12-01", + "ministryContact": "KASSULKE MAX", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -56055,16 +64835,25 @@ ], "notationParticipants": [ { + "uuid": "2234ae60-b961-4614-993a-cd916acce63b", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "88907be2-cac5-4e9b-99f1-006f6b5a92ac", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "61052868-d30d-4cfe-8134-1dd7f4469ec3", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true }, { + "uuid": "2b72b002-a6d5-4798-833a-eb7a21e7e190", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false @@ -56073,10 +64862,11 @@ "siteRegistry": true }, { - "createdAt": "2022-11-08", - "completed": "2016-03-03", - "initiated": "2020-01-07", - "ministryContact": "ZEMLAK BENTON", + "uuid": "8bfb9a77-96a8-493e-9b72-94c402daca43", + "createdAt": "2021-02-28", + "completed": "2021-07-15", + "initiated": "2023-02-15", + "ministryContact": "QUITZON HUBERT", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -56085,23 +64875,38 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "73b64d1a-1861-4df2-87a9-80bb28df0fcf", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "uuid": "067a8401-95e1-455c-8204-f3d42fa72a4b", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true }, { + "uuid": "f629e2dc-b1c1-4fdf-a62a-2b754819f930", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false + }, + { + "uuid": "74e14169-216b-44ff-922c-3251843b96ee", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false } ], "siteRegistry": true }, { - "createdAt": "2014-08-19", - "completed": "2021-10-15", - "initiated": "2016-10-19", - "ministryContact": "BAUMBACH JACQUELYN", + "uuid": "e7edf569-8939-4660-86c7-3d0dce8c7a19", + "createdAt": "2017-01-20", + "completed": "2021-11-11", + "initiated": "2015-05-02", + "ministryContact": "HAHN BRYANA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -56110,14 +64915,34 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "uuid": "5c2b7416-ab7b-4229-a909-872ef63e6d26", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "uuid": "9f0b0d0b-098d-4bf2-ad4c-e3706e6192a5", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": true }, { + "uuid": "775e18cd-ec3a-4681-aa54-edc3560d4285", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true + }, + { + "uuid": "a0ff2166-13f6-4d19-98ce-a54a183a30d5", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "uuid": "8777b7a1-5041-4c5f-b983-c54c16b2b971", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false } ], "siteRegistry": false @@ -56125,210 +64950,208 @@ ], "participants": [ { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2014-01-11", - "startDate": "2022-07-28", + "uuid": "c032bd63-9e8c-4f94-8168-a21618e56420", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2019-08-17", + "startDate": "2016-05-10", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": true + "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2022-06-15", - "startDate": "2018-12-31", + "uuid": "0b15d591-8c1c-4edc-97cc-95dc3ee6ccae", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2020-06-30", + "startDate": "2018-04-08", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": true } ], "suspectLandUses": [ { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2023-03-24 (described on Site Profile dated 2023-03-24)", + "uuid": "c651f08c-dc02-46b5-bd61-b6b761ca3346", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2023-09-08 (described on Site Profile dated 2023-09-08)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2023-08-02 (described on Site Profile dated 2023-08-02)", + "uuid": "ea705dd5-2aea-46f9-b8b5-6a65a5f620b0", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2018-12-31 (described on Site Profile dated 2018-12-31)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { + "uuid": "e871faba-2113-433e-8a31-c4d7eacca598", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-12-24 (described on Site Profile dated 2019-12-24)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "notes": "INSERTED FOR SITE PROFILE DATED 2015-09-20 (described on Site Profile dated 2015-09-20)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { + "uuid": "416cc540-f5e1-4a4a-95eb-8de3f5fd7f36", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-12-02 (described on Site Profile dated 2015-12-02)", + "notes": "INSERTED FOR SITE PROFILE DATED 2018-11-16 (described on Site Profile dated 2018-11-16)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], "parcelDescriptions": [ { - "siteRegistry": false, - "dateNoted": "2015-06-09", - "parcelID": "15902", - "crownLandUsePIN": "20552", - "crownLandFileNumber": "15443", - "landDescription": "LOT 1 OF LOT 4 BLOCK 2 DISTRICT LOT 4 PLAN 7173" + "uuid": "acb472c8-4931-44ec-a8d4-97e98212275d", + "siteRegistry": true, + "dateNoted": "2016-09-10", + "parcelID": "19054", + "crownLandUsePIN": "17037", + "crownLandFileNumber": "17973", + "landDescription": "LOT 3 OF LOT 2 BLOCK 5 DISTRICT LOT 1 PLAN 7592" }, { - "siteRegistry": true, - "dateNoted": "2019-12-17", - "parcelID": "18844", - "crownLandUsePIN": "17857", - "crownLandFileNumber": "19492", - "landDescription": "LOT 5 OF LOT 3 BLOCK 2 DISTRICT LOT 4 PLAN 7800" + "uuid": "eb14bb7e-1f69-4b35-86f1-1e1ab45066e7", + "siteRegistry": false, + "dateNoted": "2020-05-04", + "parcelID": "20767", + "crownLandUsePIN": "17693", + "crownLandFileNumber": "17646", + "landDescription": "LOT 3 OF LOT 3 BLOCK 4 DISTRICT LOT 3 PLAN 3344" }, { + "uuid": "c85e039b-7b23-441f-9504-c918f9630e33", "siteRegistry": false, - "dateNoted": "2019-11-24", - "parcelID": "20304", - "crownLandUsePIN": "19297", - "crownLandFileNumber": "17515", - "landDescription": "LOT 4 OF LOT 3 BLOCK 2 DISTRICT LOT 2 PLAN 3438" + "dateNoted": "2016-08-04", + "parcelID": "18373", + "crownLandUsePIN": "18103", + "crownLandFileNumber": "20576", + "landDescription": "LOT 3 OF LOT 4 BLOCK 1 DISTRICT LOT 3 PLAN 6651" }, { + "uuid": "0f56a85d-e8cc-4bba-8d14-3fd04dad9020", "siteRegistry": true, - "dateNoted": "2017-04-14", - "parcelID": "18046", - "crownLandUsePIN": "17726", - "crownLandFileNumber": "18520", - "landDescription": "LOT 5 OF LOT 2 BLOCK 1 DISTRICT LOT 3 PLAN 3634" + "dateNoted": "2023-04-28", + "parcelID": "16585", + "crownLandUsePIN": "18345", + "crownLandFileNumber": "15991", + "landDescription": "LOT 5 OF LOT 3 BLOCK 4 DISTRICT LOT 1 PLAN 7937" } ], "siteDisclosures": [ { + "uuid": "50477080-82e0-4c58-a1f7-cb2253ac5189", "siteRegistry": false, - "dateReceived": "2016-01-21", - "dateCompleted": "2016-12-03", - "dateEntered": "2018-07-12", - "dateRegistrar": "2022-01-27", - "dateLocalAuthorityReceived": "2022-12-13", - "summary": "Quo a ducimus voluptatum.\nMolestias iure dolore perspiciatis voluptatem.\nRerum est illum aliquid minus provident quod laudantium alias.", - "informationUsed": "Illo libero eaque debitis sit.\nOmnis rerum dolorem illo provident consectetur.\nFuga quos odio debitis.\nDeserunt praesentium accusamus reprehenderit earum laudantium.", - "pastOrPresentOrders": "Accusamus rem modi consequatur unde itaque officia dicta odio.\nIllum nesciunt consequuntur ut occaecati quis neque labore.\nNam expedita architecto laudantium recusandae voluptatum.", + "dateReceived": "2018-04-11", + "dateCompleted": "2018-02-11", + "dateEntered": "2014-01-03", + "dateRegistrar": "2018-05-01", + "dateLocalAuthorityReceived": "2019-01-30", + "summary": "Recusandae voluptate a vero eveniet aliquid natus amet.", + "informationUsed": "Asperiores eos reprehenderit.\nId voluptatem suscipit mollitia.\nExplicabo nesciunt vitae deserunt.\nNobis dolore pariatur qui ex inventore excepturi est suscipit excepturi.\nPossimus tenetur sunt aperiam aspernatur harum recusandae minima earum esse.", + "pastOrPresentOrders": "Impedit rem delectus ipsum.", "commercialAndIndustrialPurposes": [ { + "uuid": "8afec6ec-2208-4b12-af9f-03076049b95a", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true - }, - { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true + "siteRegistry": false }, { + "uuid": "1cdc27b8-13ab-4140-8820-d1675e92fd33", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true - }, - { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true } ] } ], "activityLog": [ { - "siteRegistry": true, + "uuid": "bfd0b409-8dfe-4a31-9661-d0c04f67df53", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "DONNELLY ROSALYN", - "timestamp": "2022-02-08" + "user": "MEDHURST ISAI", + "timestamp": "2016-03-07" }, { - "siteRegistry": false, + "uuid": "3e255ee3-fad2-4752-bef2-9a70851dade5", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "SATTERFIELD KRISTY", - "timestamp": "2023-07-15" + "user": "O'HARA BART", + "timestamp": "2016-09-10" }, { - "siteRegistry": false, + "uuid": "2ce9c9f7-de96-4afb-a728-8b31ac07efca", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "ARMSTRONG CONSTANTIN", - "timestamp": "2018-06-07" + "user": "GRAHAM CASEY", + "timestamp": "2015-04-27" }, { - "siteRegistry": false, + "uuid": "dfc2ebb2-e49c-42fa-b49e-d6cefb0457cc", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "KERLUKE RONALDO", - "timestamp": "2014-03-30" + "user": "RUNOLFSSON KRISTIN", + "timestamp": "2013-10-21" }, { - "siteRegistry": true, + "uuid": "73e91169-61f1-4045-a287-efb0b62f5d3f", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "WINTHEISER ASHLEY", - "timestamp": "2021-03-18" + "user": "ROHAN-STREICH MAYBELLE", + "timestamp": "2015-05-26" }, { + "uuid": "0701cb25-88b4-4784-8e66-87984c2220a5", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "SCHUMM ROGELIO", - "timestamp": "2023-03-20" + "user": "MRAZ-CORWIN WAINO", + "timestamp": "2019-11-12" }, { - "siteRegistry": true, + "uuid": "8c98258f-c6c0-4c0b-85d7-7f79d22d822f", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "METZ RORY", - "timestamp": "2017-12-20" + "user": "EFFERTZ MEAGHAN", + "timestamp": "2017-06-25" } ], "associatedSites": [ { - "dateNoted": "2021-01-30", - "notes": "", - "parcelID": "17906", - "siteID": "16489", - "siteRegistry": true - }, - { - "dateNoted": "2017-06-22", - "notes": "", - "parcelID": "19452", - "siteID": "18658", - "siteRegistry": true - }, - { - "dateNoted": "2019-12-26", + "uuid": "07c16887-f480-4285-abe8-3e53877bdc63", + "dateNoted": "2016-12-17", "notes": "", - "parcelID": "18851", - "siteID": "16262", + "parcelID": "17053", + "siteID": "19884", "siteRegistry": false } ] }, { - "uuid": "b78be1dd-724a-41c7-b6ba-74a6d0446c4f", - "siteID": 19051, - "address": "107 Kariane Springs", - "latitude": 57.8536, - "longitude": -138.5105, - "lastUpdated": "2018-07-27", - "city": "Peoria", + "uuid": "6943de79-1438-410a-9133-6136a1d497bf", + "siteID": 19572, + "address": "950 Jalon Brooks", + "latitude": 55.2355, + "longitude": -130.7023, + "lastUpdated": "2017-03-27", + "city": "East Dalton", "region": " North Coast", - "victoriaFile": "26250-20/5433", + "victoriaFile": "26250-20/13052", "regionalFile": "N/A", "parcelIDs": [ - 1035994, - 4843095, - 7576945, - 5319545, - 8938211 + 9170382, + 5615118, + 5438560, + 4221894, + 4458685 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2021-01-26", - "completed": "2017-08-03", - "initiated": "2023-08-04", - "ministryContact": "VEUM MAE", + "uuid": "2e9d6682-ea63-42cb-8985-68c757b5ba9a", + "createdAt": "2015-11-03", + "completed": "2016-09-10", + "initiated": "2018-09-23", + "ministryContact": "WYMAN DENNIS", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -56337,28 +65160,32 @@ ], "notationParticipants": [ { + "uuid": "997687a0-b1ca-4410-abc9-2cce4267cf7c", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "uuid": "bd55e0ba-01df-475e-93e0-d37610bbfd4b", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true + "uuid": "9e9dd5b5-c9ec-441c-b337-06bea46ea079", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2014-11-11", - "completed": "2016-09-14", - "initiated": "2016-02-02", - "ministryContact": "TOY ONIE", + "uuid": "78e89697-4d99-4ebc-b50c-610bb83c65de", + "createdAt": "2015-08-22", + "completed": "2019-05-30", + "initiated": "2016-06-29", + "ministryContact": "PAUCEK ABNER", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -56367,41 +65194,25 @@ ], "notationParticipants": [ { + "uuid": "5bcd094c-046e-483c-a6be-83673a24fcf8", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true + "role": "REQUESTED BY", + "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - } - ], - "siteRegistry": true - }, - { - "createdAt": "2020-05-15", - "completed": "2020-04-08", - "initiated": "2017-10-21", - "ministryContact": "SCHUPPE HILTON", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "716ea01c-da2a-43ca-9356-e63cb82f0996", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "dbf2a3a1-3a04-4360-a083-8de4acdc0a2f", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { + "uuid": "fa0472a5-f990-4625-b829-bbf70e5df4d6", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false @@ -56412,29 +65223,21 @@ ], "participants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2016-10-13", - "startDate": "2017-02-07", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2014-11-01", - "startDate": "2015-10-18", + "uuid": "7fab2941-bbc4-4dc3-9e50-f5e713f58263", + "name": "IPSUM", + "endDate": "2017-04-04", + "startDate": "2017-09-04", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": false }, { + "uuid": "6af8fff2-dba2-45fe-b8c2-be0f67a4ca3e", "name": "AMET, DOLOR SIT", - "endDate": "2018-10-22", - "startDate": "2015-03-13", + "endDate": "2022-12-12", + "startDate": "2018-09-03", "notes": "", "roles": [ "ORGANIZATION" @@ -56442,9 +65245,10 @@ "siteRegistry": false }, { + "uuid": "1643497f-034a-470d-aec5-bbf058e32d07", "name": "SHELL CANADA PRODUCTS", - "endDate": "2018-10-14", - "startDate": "2020-02-23", + "endDate": "2015-05-20", + "startDate": "2015-12-07", "notes": "", "roles": [ "EMPLOYEE" @@ -56452,193 +65256,236 @@ "siteRegistry": false }, { - "name": "IPSUM", - "endDate": "2017-05-26", - "startDate": "2016-09-03", + "uuid": "d28adab8-8f3f-446b-aa4c-70019a055c0b", + "name": "AMET, DOLOR SIT", + "endDate": "2020-09-09", + "startDate": "2018-09-16", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false } ], "suspectLandUses": [ { + "uuid": "4bf4268e-5887-4299-916e-9b2734e9c521", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-08-13 (described on Site Profile dated 2014-08-13)", + "notes": "INSERTED FOR SITE PROFILE DATED 2018-09-23 (described on Site Profile dated 2018-09-23)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "uuid": "4a1f1500-0014-4cb3-8371-66e96fd304d4", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2015-04-18 (described on Site Profile dated 2015-04-18)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { + "uuid": "f25968fb-8983-4e68-b51b-0cca15b115e6", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2020-06-15 (described on Site Profile dated 2020-06-15)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "notes": "INSERTED FOR SITE PROFILE DATED 2015-01-16 (described on Site Profile dated 2015-01-16)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { + "uuid": "ae842e5b-33f9-4ea5-a6f3-0dd9d8b38b74", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-08-04 (described on Site Profile dated 2021-08-04)", + "notes": "INSERTED FOR SITE PROFILE DATED 2017-07-12 (described on Site Profile dated 2017-07-12)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { + "uuid": "f0c6627f-d63d-4053-b790-eb223d4f13df", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-03-08 (described on Site Profile dated 2021-03-08)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "notes": "INSERTED FOR SITE PROFILE DATED 2019-11-08 (described on Site Profile dated 2019-11-08)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], "parcelDescriptions": [ { - "siteRegistry": true, - "dateNoted": "2018-09-05", - "parcelID": "16869", - "crownLandUsePIN": "16295", - "crownLandFileNumber": "15904", - "landDescription": "LOT 4 OF LOT 2 BLOCK 4 DISTRICT LOT 3 PLAN 8818" + "uuid": "3d1d411e-1864-4fb7-877e-75e236af8f74", + "siteRegistry": false, + "dateNoted": "2021-01-16", + "parcelID": "19397", + "crownLandUsePIN": "19950", + "crownLandFileNumber": "20711", + "landDescription": "LOT 4 OF LOT 1 BLOCK 4 DISTRICT LOT 3 PLAN 5951" }, { - "siteRegistry": true, - "dateNoted": "2021-12-27", - "parcelID": "15809", - "crownLandUsePIN": "20254", - "crownLandFileNumber": "17573", - "landDescription": "LOT 3 OF LOT 2 BLOCK 3 DISTRICT LOT 4 PLAN 5734" + "uuid": "fd497956-97d3-4632-9208-330ae838c064", + "siteRegistry": false, + "dateNoted": "2017-08-06", + "parcelID": "16042", + "crownLandUsePIN": "20447", + "crownLandFileNumber": "16883", + "landDescription": "LOT 4 OF LOT 2 BLOCK 2 DISTRICT LOT 5 PLAN 8450" }, { + "uuid": "b7665483-d19e-43a1-ac51-6cb627247e61", "siteRegistry": false, - "dateNoted": "2017-06-11", - "parcelID": "17047", - "crownLandUsePIN": "17734", - "crownLandFileNumber": "20991", - "landDescription": "LOT 3 OF LOT 5 BLOCK 5 DISTRICT LOT 3 PLAN 5244" + "dateNoted": "2020-10-05", + "parcelID": "17693", + "crownLandUsePIN": "18602", + "crownLandFileNumber": "20304", + "landDescription": "LOT 3 OF LOT 4 BLOCK 2 DISTRICT LOT 2 PLAN 6900" }, { - "siteRegistry": true, - "dateNoted": "2016-10-15", - "parcelID": "15367", - "crownLandUsePIN": "20753", - "crownLandFileNumber": "15459", - "landDescription": "LOT 1 OF LOT 5 BLOCK 5 DISTRICT LOT 4 PLAN 3288" + "uuid": "fff5e392-5d16-49d8-83b5-ab077c63b51d", + "siteRegistry": false, + "dateNoted": "2018-08-11", + "parcelID": "15956", + "crownLandUsePIN": "20566", + "crownLandFileNumber": "20606", + "landDescription": "LOT 2 OF LOT 2 BLOCK 1 DISTRICT LOT 5 PLAN 3872" } ], "siteDisclosures": [ { - "siteRegistry": false, - "dateReceived": "2022-01-10", - "dateCompleted": "2016-05-01", - "dateEntered": "2016-02-22", - "dateRegistrar": "2013-12-10", - "dateLocalAuthorityReceived": "2014-06-20", - "summary": "Cupiditate numquam voluptas quam quisquam omnis sint voluptatem.", - "informationUsed": "Animi sit esse quisquam enim.\nTotam architecto cumque inventore voluptatum similique.\nExpedita soluta doloribus.", - "pastOrPresentOrders": "Eaque dolores eos delectus.\nVoluptatibus nemo voluptatibus ipsam autem consectetur.", + "uuid": "026b72ce-fe0e-400a-aa96-c5e3d2e53d23", + "siteRegistry": true, + "dateReceived": "2018-11-08", + "dateCompleted": "2021-05-13", + "dateEntered": "2016-05-12", + "dateRegistrar": "2021-09-29", + "dateLocalAuthorityReceived": "2015-02-15", + "summary": "Impedit aliquid neque laboriosam deleniti maxime natus repudiandae.\nVitae veritatis maxime dicta deleniti esse cumque veritatis facere dolorum.", + "informationUsed": "Magnam fugiat rerum exercitationem laboriosam odit cum illum.\nAssumenda reprehenderit aspernatur laudantium.\nIpsam aspernatur minus rerum tempore maiores at.\nQuidem praesentium neque tenetur pariatur fugit eos aperiam sint.", + "pastOrPresentOrders": "Sint dolorum odio alias saepe molestiae explicabo.", "commercialAndIndustrialPurposes": [ { - "scheduleReference": "F1*", + "uuid": "c2cc25b2-d6da-41d0-9e3c-f535de551150", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true + "siteRegistry": false }, { + "uuid": "a1af748c-954c-4bbb-ab5a-0ea5172a084a", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { - "scheduleReference": "F2*", + "uuid": "0bb16769-bbc0-4c3f-a0bb-bea77e293f8d", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false }, { + "uuid": "b6ca9110-40bd-4044-a526-1a702a8717bc", "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false } ] } ], "activityLog": [ { + "uuid": "6fc71e7e-d999-4f83-bc84-708b0d77805d", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "GOYETTE KIARRA", - "timestamp": "2013-11-02" + "user": "MEDHURST-ABERNATHY LUE", + "timestamp": "2014-01-05" + }, + { + "uuid": "da58598a-71c6-4e77-b9f1-03570d0dc682", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "HAGENES DONALD", + "timestamp": "2018-11-03" }, { + "uuid": "e822dc2f-872a-48fb-99df-372f1123cdf0", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "KIEHN MOISES", - "timestamp": "2022-12-25" + "user": "LEANNON DOMENICO", + "timestamp": "2019-01-21" }, { + "uuid": "bd4912fd-eb04-4123-8e91-810f7c82573e", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "QUITZON JONATHON", - "timestamp": "2016-09-08" + "user": "ROSENBAUM SERENITY", + "timestamp": "2017-07-27" }, { + "uuid": "c352668b-c3af-4848-9d77-e9abff66e5ed", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "ZBONCAK EILEEN", - "timestamp": "2022-06-14" + "user": "DARE CONSTANCE", + "timestamp": "2019-06-03" }, { - "siteRegistry": false, + "uuid": "bb91db0d-1729-4ea7-94ad-1c59d08820df", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "BOGISICH-SKILES MICHAEL", + "timestamp": "2022-11-02" + }, + { + "uuid": "85328d58-30d8-487a-9903-caec342f8eac", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "BREKKE LILLIAN", - "timestamp": "2015-07-24" + "user": "CORKERY JEFFEREY", + "timestamp": "2018-10-06" }, { + "uuid": "52c5c87a-d908-4e93-8ac1-929624806ed8", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "MCCULLOUGH CHANELLE", - "timestamp": "2023-06-20" + "user": "JACOBSON DION", + "timestamp": "2017-04-04" }, { - "siteRegistry": false, + "uuid": "3c7f685b-25e7-458d-85e9-102040dd9657", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "WOLF ISOM", - "timestamp": "2015-12-12" + "user": "KLOCKO HIRAM", + "timestamp": "2021-08-28" + }, + { + "uuid": "87987b70-b9b1-467d-ac8d-914b92950c7d", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "KOEPP PALMA", + "timestamp": "2016-09-05" } ], "associatedSites": [ { - "dateNoted": "2014-08-17", - "notes": "", - "parcelID": "20236", - "siteID": "17653", - "siteRegistry": true - }, - { - "dateNoted": "2022-07-23", + "uuid": "17699e03-15e8-42e6-89aa-583605587c22", + "dateNoted": "2015-12-26", "notes": "", - "parcelID": "16289", - "siteID": "18816", - "siteRegistry": true + "parcelID": "18846", + "siteID": "17765", + "siteRegistry": false } ] }, { - "uuid": "b41b6e32-468b-4cc3-abe6-70cdc6820a57", - "siteID": 19399, - "address": "601 Mueller Row", - "latitude": 55.5421, - "longitude": -129.6232, - "lastUpdated": "2017-11-05", - "city": "Gorczanyport", - "region": "Thompson-Okanagan", - "victoriaFile": "26250-20/7099", + "uuid": "96e34427-034e-4beb-bb78-2037ef907eb5", + "siteID": 18986, + "address": "3165 Chaya Keys", + "latitude": 58.184, + "longitude": -132.4178, + "lastUpdated": "2017-07-16", + "city": "Coral Gables", + "region": "Kootenay", + "victoriaFile": "26250-20/1682", "regionalFile": "N/A", "parcelIDs": [ - 4118828, - 4666661, - 5707167, - 1620279, - 4980352 + 3710681, + 6975000, + 8650524, + 4555918, + 1445029 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2021-12-08", - "completed": "2021-09-23", - "initiated": "2021-02-22", - "ministryContact": "LOWE MARJOLAINE", + "uuid": "b7366124-6f87-4fa9-91df-115cab72015b", + "createdAt": "2015-04-18", + "completed": "2018-08-02", + "initiated": "2021-06-05", + "ministryContact": "BEER GUSTAVE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -56647,38 +65494,38 @@ ], "notationParticipants": [ { + "uuid": "897b91e5-e151-4df5-af69-16fb00479f98", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", "siteRegistry": false }, { + "uuid": "9e180346-146f-4291-b203-57b9bed8e0d6", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "2ba075d7-3082-48e3-9068-badd62e2449c", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false }, { + "uuid": "32b6cd1e-244a-4cc0-a47b-cda9f23d6d52", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2018-09-25", - "completed": "2020-09-18", - "initiated": "2014-06-05", - "ministryContact": "KOSS LEONE", + "uuid": "5da0a720-b957-4d9b-bb4d-0b3d493c0fda", + "createdAt": "2017-06-02", + "completed": "2017-02-18", + "initiated": "2014-04-05", + "ministryContact": "CORKERY HIRAM", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -56687,33 +65534,72 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "6388524a-a727-416d-a89e-ef1c08e2ee53", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "ffb0aaf1-8e3f-41d0-b6c7-ccac9ad2cb51", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "uuid": "ce50bea1-a848-41eb-8a4f-18917c0cea90", + "createdAt": "2020-05-29", + "completed": "2019-09-12", + "initiated": "2014-12-02", + "ministryContact": "ROBERTS HENRIETTE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "uuid": "e2c11e01-1800-418c-8367-26eda4386a6a", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "1ae40c19-8070-4ace-aa9b-e0eba1d29174", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": false }, { + "uuid": "657a7733-c65a-4606-b396-64a5da92946c", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true }, { + "uuid": "981e207f-36f5-4331-8e6f-974bfab1356b", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "7ad77555-d1bb-4835-9e7a-cf7b4ed3b8e8", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2023-06-23", - "completed": "2021-01-20", - "initiated": "2021-03-31", - "ministryContact": "NIENOW MARGRET", + "uuid": "19c1f03e-6be8-418a-bd19-a6f65de053db", + "createdAt": "2022-12-09", + "completed": "2022-11-30", + "initiated": "2015-02-11", + "ministryContact": "CREMIN LUCIO", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -56722,39 +65608,55 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "95085985-9b61-4f46-ba58-dd54a759885b", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false + "uuid": "788f877d-8bea-4daf-952b-fe9e9f3f210d", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true }, { + "uuid": "4962386e-d79f-401c-a448-a98c1fef26fe", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true } ], "participants": [ { + "uuid": "c504e2a7-6e8c-41e8-8959-5134e1470930", "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2018-02-26", - "startDate": "2020-08-03", + "endDate": "2023-03-11", + "startDate": "2015-02-14", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2017-12-04", - "startDate": "2014-07-20", + "uuid": "c3c68c75-2581-4dda-86e6-4c50d048f1f6", + "name": "IPSUM", + "endDate": "2019-11-06", + "startDate": "2017-01-26", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "uuid": "67fe83cc-8ce1-4788-8fa6-b4f6d0c43338", + "name": "IPSUM", + "endDate": "2018-02-15", + "startDate": "2018-10-27", "notes": "", "roles": [ "EMPLOYEE" @@ -56762,9 +65664,10 @@ "siteRegistry": false }, { + "uuid": "76070f01-2be6-479b-8da6-634f7da1ebce", "name": "AMET, DOLOR SIT", - "endDate": "2014-11-17", - "startDate": "2015-01-30", + "endDate": "2014-10-09", + "startDate": "2020-12-14", "notes": "", "roles": [ "EMPLOYEE" @@ -56772,197 +65675,200 @@ "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2021-04-14", - "startDate": "2018-06-24", + "uuid": "f4361b4a-2143-48ed-8760-78e90ef588c2", + "name": "IPSUM", + "endDate": "2014-09-23", + "startDate": "2018-10-20", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": true + "siteRegistry": false } ], "suspectLandUses": [ { + "uuid": "60288c89-c926-452b-81a7-73a1b554a403", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-12-16 (described on Site Profile dated 2015-12-16)", + "notes": "INSERTED FOR SITE PROFILE DATED 2014-08-03 (described on Site Profile dated 2014-08-03)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { + "uuid": "d9b46489-2b43-46dc-bfc7-2d2a223b42ba", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2014-08-20 (described on Site Profile dated 2014-08-20)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "uuid": "3a16ebb4-1064-4ffc-8d83-bd6f5a126e4e", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2023-06-30 (described on Site Profile dated 2023-06-30)", + "notes": "INSERTED FOR SITE PROFILE DATED 2020-03-12 (described on Site Profile dated 2020-03-12)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], "parcelDescriptions": [ { + "uuid": "3093d75d-28f4-4035-9b13-3364daede24c", "siteRegistry": false, - "dateNoted": "2022-08-30", - "parcelID": "17030", - "crownLandUsePIN": "19382", - "crownLandFileNumber": "18936", - "landDescription": "LOT 4 OF LOT 3 BLOCK 2 DISTRICT LOT 5 PLAN 4606" + "dateNoted": "2020-06-21", + "parcelID": "18930", + "crownLandUsePIN": "17994", + "crownLandFileNumber": "18410", + "landDescription": "LOT 3 OF LOT 2 BLOCK 5 DISTRICT LOT 3 PLAN 7912" }, { + "uuid": "7db4a5e0-f39b-495e-bd27-e9e227fdcdc3", + "siteRegistry": true, + "dateNoted": "2021-12-23", + "parcelID": "17118", + "crownLandUsePIN": "19005", + "crownLandFileNumber": "20525", + "landDescription": "LOT 4 OF LOT 5 BLOCK 5 DISTRICT LOT 3 PLAN 8467" + }, + { + "uuid": "24f2cb33-86c5-4f74-8a03-f170a9f91319", + "siteRegistry": false, + "dateNoted": "2019-04-24", + "parcelID": "18375", + "crownLandUsePIN": "17093", + "crownLandFileNumber": "18160", + "landDescription": "LOT 2 OF LOT 2 BLOCK 2 DISTRICT LOT 5 PLAN 5232" + }, + { + "uuid": "75fd3ef3-c58c-49ea-a57a-bd2b46ab4aec", + "siteRegistry": false, + "dateNoted": "2023-06-25", + "parcelID": "19521", + "crownLandUsePIN": "18190", + "crownLandFileNumber": "18869", + "landDescription": "LOT 4 OF LOT 4 BLOCK 5 DISTRICT LOT 2 PLAN 6483" + }, + { + "uuid": "1ff23d9b-853a-4592-b966-cf5b7076ae7f", "siteRegistry": false, - "dateNoted": "2018-09-07", - "parcelID": "17925", - "crownLandUsePIN": "20337", - "crownLandFileNumber": "18975", - "landDescription": "LOT 3 OF LOT 3 BLOCK 1 DISTRICT LOT 1 PLAN 9724" + "dateNoted": "2023-05-30", + "parcelID": "17556", + "crownLandUsePIN": "18601", + "crownLandFileNumber": "19499", + "landDescription": "LOT 5 OF LOT 3 BLOCK 4 DISTRICT LOT 4 PLAN 9036" } ], "siteDisclosures": [ { + "uuid": "4daf906e-6791-4efa-8017-9be87017f4cf", "siteRegistry": false, - "dateReceived": "2017-02-10", - "dateCompleted": "2017-10-14", - "dateEntered": "2017-09-12", - "dateRegistrar": "2020-12-02", - "dateLocalAuthorityReceived": "2014-08-06", - "summary": "Adipisci voluptatum id ratione recusandae fugiat officia.\nVel fugit temporibus possimus iste quidem quas modi repellendus.\nReiciendis ipsum quaerat laborum modi doloremque eaque quae.", - "informationUsed": "Non occaecati excepturi.\nPlaceat molestiae architecto.\nSaepe iste tenetur sunt aspernatur odio praesentium.\nTemporibus voluptas libero repellendus iure.", - "pastOrPresentOrders": "Voluptates saepe ut rem ullam.", - "commercialAndIndustrialPurposes": [ - { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false - }, - { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true - } - ] - }, - { - "siteRegistry": true, - "dateReceived": "2015-02-28", - "dateCompleted": "2016-08-31", - "dateEntered": "2015-07-28", - "dateRegistrar": "2022-07-19", - "dateLocalAuthorityReceived": "2022-04-17", - "summary": "Voluptatum rerum aliquam.", - "informationUsed": "Iure dolorem odio.\nIllum illum consequuntur ipsam quibusdam voluptas architecto unde explicabo reiciendis.\nDolorem ab quaerat.\nBeatae doloribus id sed cumque necessitatibus.", - "pastOrPresentOrders": "Recusandae ab iste deserunt adipisci.\nDoloribus animi delectus ab officiis quas nam eveniet.\nAliquam ipsa repellendus aliquid placeat iusto ea natus error.", + "dateReceived": "2019-02-19", + "dateCompleted": "2020-03-30", + "dateEntered": "2018-04-08", + "dateRegistrar": "2019-06-25", + "dateLocalAuthorityReceived": "2017-01-31", + "summary": "Tenetur dolores quae provident.", + "informationUsed": "At ipsa nostrum debitis assumenda architecto tempora.\nQuae totam quae.\nPorro deserunt hic magnam.\nNam saepe nobis quo nihil inventore laborum.", + "pastOrPresentOrders": "Nemo cumque ullam commodi sapiente explicabo.", "commercialAndIndustrialPurposes": [ { + "uuid": "e212c39c-e277-4db8-80c9-5d20998dd048", "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, { + "uuid": "5e3b656b-7075-4ec0-91a7-bbbcd4d4193d", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false - }, - { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true - }, - { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true } ] } ], "activityLog": [ { - "siteRegistry": true, + "uuid": "1956a898-002c-4122-ac00-a57c1a82536b", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "FEEST MARINA", - "timestamp": "2022-04-08" + "user": "RUNOLFSDOTTIR AGNES", + "timestamp": "2020-07-27" }, { - "siteRegistry": true, + "uuid": "6ed2c4b7-cb08-43d2-8537-2f4dad82ba93", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "FISHER ALESSANDRA", - "timestamp": "2016-08-15" + "user": "MOORE OPHELIA", + "timestamp": "2015-09-30" }, { - "siteRegistry": true, + "uuid": "ec9e8833-38db-4168-a873-6aef0cc97196", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "KUHN RASHAWN", - "timestamp": "2018-04-27" + "user": "GOLDNER ADITYA", + "timestamp": "2022-08-03" }, { - "siteRegistry": false, + "uuid": "e9360766-7b11-4a1e-8763-64865b22a5f6", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "HILPERT ARCHIBALD", - "timestamp": "2022-06-14" + "user": "WEISSNAT JAIRO", + "timestamp": "2015-03-06" }, { + "uuid": "dc2f96f3-c3a6-4cee-ad86-4c23407f1d9b", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "ROWE-BRAKUS BRAEDEN", - "timestamp": "2023-10-03" + "user": "PAUCEK CORBIN", + "timestamp": "2014-03-09" }, { + "uuid": "9c7cfcce-5dfc-4c3c-b02a-1c20084e0569", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "MAGGIO ALEXANNE", - "timestamp": "2016-02-07" + "user": "JACOBSON AMPARO", + "timestamp": "2023-08-09" }, { + "uuid": "a611a9a7-288c-4fb1-820a-a21bf1a9b4a8", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "HAYES MAY", - "timestamp": "2019-10-05" + "user": "MANN-WELCH VERNON", + "timestamp": "2016-05-20" } ], "associatedSites": [ { - "dateNoted": "2019-05-17", + "uuid": "c7e61d4b-3613-4d26-9e5e-f7037ee31133", + "dateNoted": "2021-01-01", "notes": "", - "parcelID": "17659", - "siteID": "16979", + "parcelID": "19858", + "siteID": "16270", "siteRegistry": true - }, - { - "dateNoted": "2022-05-18", - "notes": "", - "parcelID": "16438", - "siteID": "18292", - "siteRegistry": false - }, - { - "dateNoted": "2017-08-31", - "notes": "", - "parcelID": "20304", - "siteID": "18013", - "siteRegistry": false } ] }, { - "uuid": "b6a512d4-4b16-4fa6-9b13-1d2a7bdb8183", - "siteID": 16983, - "address": "76126 Leonardo Landing", - "latitude": 55.2819, - "longitude": -122.5735, - "lastUpdated": "2019-08-22", - "city": "Carmelocester", - "region": "Mainland/Southwest", - "victoriaFile": "26250-20/18136", + "uuid": "89e0dea2-3239-4a2f-80c4-c255b7f28c3b", + "siteID": 20482, + "address": "38562 Kailyn Lodge", + "latitude": 57.9439, + "longitude": -130.1813, + "lastUpdated": "2020-03-06", + "city": "Rancho Cordova", + "region": "Thompson-Okanagan", + "victoriaFile": "26250-20/17741", "regionalFile": "N/A", "parcelIDs": [ - 9659889, - 3703749, - 4723657, - 745880, - 6714374 + 3546630, + 4014533, + 8895786, + 2702563, + 1926063 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2017-12-08", - "completed": "2020-12-26", - "initiated": "2017-02-09", - "ministryContact": "KUNZE AMELIA", + "uuid": "125ea0d8-c7f7-49a7-8b41-67b3a7a4d530", + "createdAt": "2022-01-27", + "completed": "2015-06-02", + "initiated": "2019-04-03", + "ministryContact": "BAUMBACH WILL", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -56971,11 +65877,13 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "3dfb3e59-6c75-4172-bcd1-e24a15ab9b4a", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false }, { + "uuid": "140ed8e6-b14e-4f45-927a-185b94b17ea3", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true @@ -56984,10 +65892,73 @@ "siteRegistry": false }, { - "createdAt": "2017-03-18", - "completed": "2017-08-13", - "initiated": "2019-06-25", - "ministryContact": "LANG ELLSWORTH", + "uuid": "b732d093-1ef7-416d-951b-d4fdae22c019", + "createdAt": "2015-07-14", + "completed": "2016-04-12", + "initiated": "2016-07-01", + "ministryContact": "RAYNOR MOHAMMED", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "uuid": "50b75c26-0172-490f-9329-fda7aa7a3931", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "uuid": "997489ba-534f-446a-9ca7-d10e88ef982f", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "uuid": "a2fdfeff-b4fa-42cf-a9f8-1d6bf6e4a3d0", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "uuid": "a5610413-ed26-4f0f-93f8-90beb6952b2d", + "createdAt": "2018-06-12", + "completed": "2015-12-15", + "initiated": "2014-04-06", + "ministryContact": "STOKES KRYSTEL", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "uuid": "52e91f60-a389-4a76-bbb3-d06d1ca909c8", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "uuid": "7aa746f0-3740-49ff-902b-2cd818560ee4", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "uuid": "5e7d0134-c08e-439f-b4ab-7adf4e10e9a3", + "createdAt": "2014-03-12", + "completed": "2020-12-30", + "initiated": "2017-11-18", + "ministryContact": "GUTMANN ELLEN", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -56996,23 +65967,67 @@ ], "notationParticipants": [ { + "uuid": "56ab6a4c-c08e-4902-acfc-a06e27b84b5f", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "9eb9197a-32b6-47e7-bc8b-cb0bf2c6a7ed", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "uuid": "9d0f7bc9-07d1-4cb0-86f6-cc5638df7e0e", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", "siteRegistry": false }, { + "uuid": "45fb863c-b648-4999-813d-50eeb09063cd", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "uuid": "8c40a76b-ebe5-4d26-a167-16c3de3af626", + "createdAt": "2016-04-21", + "completed": "2023-09-25", + "initiated": "2020-07-19", + "ministryContact": "LIND JOSHUAH", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "uuid": "cb8ab6d9-d734-44c1-9567-4936a2e0148d", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "7f890c51-80cf-4cd5-826f-1f106074f3c7", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true }, { + "uuid": "67f6e27a-fc5a-4f57-acdd-b337f5e65e7e", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false }, { + "uuid": "464f943e-7b35-4a68-88e4-f0dc32b2eaab", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": true } ], @@ -57021,19 +66036,21 @@ ], "participants": [ { + "uuid": "ad2a99df-048d-4daa-9d38-4e58970cfb1b", "name": "IPSUM", - "endDate": "2017-10-14", - "startDate": "2015-12-30", + "endDate": "2020-02-10", + "startDate": "2023-07-07", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true }, { - "name": "IPSUM", - "endDate": "2021-12-28", - "startDate": "2017-10-11", + "uuid": "e3851836-db3a-4dad-ab77-67ebc8802d22", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2018-04-25", + "startDate": "2017-05-23", "notes": "", "roles": [ "EMPLOYEE" @@ -57041,104 +66058,153 @@ "siteRegistry": true }, { + "uuid": "78b70502-d862-4d67-a4f5-773c37d499fc", "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2015-01-05", - "startDate": "2017-04-29", + "endDate": "2019-12-25", + "startDate": "2023-02-09", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2016-09-13", - "startDate": "2021-02-08", + "uuid": "fad3fa42-03ad-4a5e-a81a-a5d77124b0b0", + "name": "IPSUM", + "endDate": "2018-05-09", + "startDate": "2021-03-27", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], - "siteRegistry": false + "siteRegistry": true } ], "suspectLandUses": [ { + "uuid": "d8acf7b6-012c-47c2-be90-bb896ccce4d8", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-08-29 (described on Site Profile dated 2019-08-29)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" - }, - { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-12-30 (described on Site Profile dated 2017-12-30)", + "notes": "INSERTED FOR SITE PROFILE DATED 2021-05-27 (described on Site Profile dated 2021-05-27)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-12-08 (described on Site Profile dated 2015-12-08)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "uuid": "38a63934-cd02-408d-98af-28646ae4b0ab", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2022-10-08 (described on Site Profile dated 2022-10-08)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-04-05 (described on Site Profile dated 2014-04-05)", + "uuid": "5e4f5fdc-6707-4322-9cd4-45240d286bf8", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2015-07-03 (described on Site Profile dated 2015-07-03)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { + "uuid": "72735bf0-6405-4984-bc46-53bbb77bfeb8", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-09-03 (described on Site Profile dated 2016-09-03)", + "notes": "INSERTED FOR SITE PROFILE DATED 2022-04-10 (described on Site Profile dated 2022-04-10)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], "parcelDescriptions": [ { - "siteRegistry": false, - "dateNoted": "2017-10-30", - "parcelID": "17049", - "crownLandUsePIN": "15352", - "crownLandFileNumber": "17666", - "landDescription": "LOT 2 OF LOT 3 BLOCK 2 DISTRICT LOT 3 PLAN 8571" + "uuid": "30f36d35-1330-4334-ad51-934420654076", + "siteRegistry": true, + "dateNoted": "2019-07-20", + "parcelID": "15999", + "crownLandUsePIN": "19020", + "crownLandFileNumber": "19672", + "landDescription": "LOT 2 OF LOT 5 BLOCK 1 DISTRICT LOT 5 PLAN 6034" }, { + "uuid": "44265d31-5970-437e-a76f-23258c1b7474", "siteRegistry": true, - "dateNoted": "2016-11-04", - "parcelID": "19246", - "crownLandUsePIN": "19265", - "crownLandFileNumber": "16659", - "landDescription": "LOT 1 OF LOT 2 BLOCK 3 DISTRICT LOT 3 PLAN 3753" + "dateNoted": "2014-01-08", + "parcelID": "17805", + "crownLandUsePIN": "20219", + "crownLandFileNumber": "20947", + "landDescription": "LOT 4 OF LOT 5 BLOCK 2 DISTRICT LOT 4 PLAN 8261" }, { + "uuid": "e213fd12-8c8e-4bca-9c85-ecf437004aac", "siteRegistry": false, - "dateNoted": "2015-05-20", - "parcelID": "20903", - "crownLandUsePIN": "15216", - "crownLandFileNumber": "18148", - "landDescription": "LOT 1 OF LOT 5 BLOCK 4 DISTRICT LOT 5 PLAN 6864" + "dateNoted": "2019-02-21", + "parcelID": "19932", + "crownLandUsePIN": "17172", + "crownLandFileNumber": "17711", + "landDescription": "LOT 3 OF LOT 3 BLOCK 2 DISTRICT LOT 3 PLAN 8428" + }, + { + "uuid": "9ba03d4f-3745-45c4-96ac-949d86407e18", + "siteRegistry": true, + "dateNoted": "2019-10-28", + "parcelID": "19964", + "crownLandUsePIN": "19219", + "crownLandFileNumber": "19458", + "landDescription": "LOT 3 OF LOT 1 BLOCK 5 DISTRICT LOT 2 PLAN 3589" } ], "siteDisclosures": [ { + "uuid": "a588f39a-ccae-4393-a7c9-67b4a3c78485", + "siteRegistry": false, + "dateReceived": "2021-09-16", + "dateCompleted": "2019-05-30", + "dateEntered": "2016-08-24", + "dateRegistrar": "2021-07-12", + "dateLocalAuthorityReceived": "2016-08-07", + "summary": "Tempora fugiat numquam fugiat fugit commodi facere iusto quas.\nQuas culpa id nostrum id doloremque laboriosam quasi.", + "informationUsed": "Architecto nihil quidem doloribus repudiandae minus vero.\nAliquam rem quaerat eligendi praesentium corporis error laudantium consequuntur natus.\nMinus animi molestias quam dolore molestiae rem eaque labore.\nDolorum deleniti minima.\nRepudiandae est inventore ea pariatur.", + "pastOrPresentOrders": "Impedit magni sed tenetur molestiae nobis totam.", + "commercialAndIndustrialPurposes": [ + { + "uuid": "2eb27358-ab81-403f-91b5-6b8d7ebb4c0b", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "uuid": "267131f7-dc1c-4adf-a9c6-847243c0b266", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "uuid": "22409cdc-f2a4-4412-9138-e2a330f93a95", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + } + ] + }, + { + "uuid": "9b4c3d58-3a7b-4b82-b48c-e93c63084ecb", "siteRegistry": false, - "dateReceived": "2017-10-09", - "dateCompleted": "2014-11-17", - "dateEntered": "2023-07-28", - "dateRegistrar": "2023-01-14", - "dateLocalAuthorityReceived": "2021-01-04", - "summary": "Facilis animi in.\nError laborum adipisci illum.", - "informationUsed": "Iste voluptas cum quibusdam temporibus quibusdam.\nIn maxime esse amet aliquam quod.\nItaque modi quia qui eaque inventore eaque recusandae.\nImpedit quaerat facere debitis nihil illo.", - "pastOrPresentOrders": "Recusandae commodi sed totam repudiandae.\nMolestias est aliquam commodi hic excepturi eos error.\nInventore sint cupiditate delectus nesciunt quibusdam numquam numquam delectus.", + "dateReceived": "2022-05-23", + "dateCompleted": "2020-09-20", + "dateEntered": "2018-03-17", + "dateRegistrar": "2016-09-16", + "dateLocalAuthorityReceived": "2016-12-16", + "summary": "Tenetur impedit laboriosam.\nOdio pariatur ex quibusdam doloribus rem neque.\nDolores quis suscipit.", + "informationUsed": "Quibusdam expedita in sit incidunt in ea.\nCorrupti laboriosam officia recusandae quidem repudiandae illum enim odio.\nFacere quam adipisci ipsa eos nam.", + "pastOrPresentOrders": "Voluptas illum dolorem ipsam esse ipsam.\nNeque quam ex quas ad.", "commercialAndIndustrialPurposes": [ { - "scheduleReference": "F1*", + "uuid": "345969f5-9868-48dc-a6e5-5c1794775306", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { + "uuid": "808f7a57-043e-42e1-821b-426ecd5fd45f", "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false }, { + "uuid": "4b7c0a1f-89f5-4a56-ac02-60e796a7fcaa", "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false } ] @@ -57146,77 +66212,78 @@ ], "activityLog": [ { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "CARTWRIGHT EMMIE", - "timestamp": "2018-05-16" - }, - { - "siteRegistry": true, + "uuid": "e1a0c97f-3b5a-483b-8f35-c41dba866b5b", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "KUB MAIDA", - "timestamp": "2019-10-06" + "user": "PARKER DEXTER", + "timestamp": "2022-01-30" }, { - "siteRegistry": true, + "uuid": "0856d0cb-6189-4885-b768-57b9b441d814", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "WISOKY AUGUSTA", - "timestamp": "2021-07-07" + "user": "DICKINSON ANIYA", + "timestamp": "2018-10-28" }, { + "uuid": "d6fdabc5-0a5d-49bc-89a8-00e3c6c9efa4", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "LOWE MABELLE", - "timestamp": "2020-03-14" + "user": "HYATT LEOPOLDO", + "timestamp": "2017-01-01" }, { + "uuid": "7736676c-fcf1-4303-a07b-3eb6d2c9e9e2", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "SMITH OTTILIE", - "timestamp": "2015-05-03" + "user": "DENESIK MACIE", + "timestamp": "2020-04-01" }, { - "siteRegistry": true, + "uuid": "e77f3e6b-cdcb-4636-8c81-b5e38622efd3", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "GOYETTE NIKOLAS", - "timestamp": "2023-05-22" + "user": "HANE DEANNA", + "timestamp": "2016-04-02" } ], "associatedSites": [ { - "dateNoted": "2020-06-26", + "uuid": "b6423842-e02e-48bb-a18d-d2e53cc861bc", + "dateNoted": "2022-07-13", "notes": "", - "parcelID": "18373", - "siteID": "18993", + "parcelID": "16254", + "siteID": "19218", "siteRegistry": false } ] }, { - "uuid": "220dd957-6546-480c-a95b-33e9a75dd6c2", - "siteID": 19984, - "address": "822 Antone Hills", - "latitude": 49.2052, - "longitude": -132.7085, - "lastUpdated": "2016-10-18", - "city": "Schambergerchester", + "uuid": "ace42fda-0059-4113-803c-47c74e55e926", + "siteID": 19479, + "address": "179 Considine Green", + "latitude": 48.4906, + "longitude": -119.8113, + "lastUpdated": "2017-11-29", + "city": "Lehigh Acres", "region": "Kootenay", - "victoriaFile": "26250-20/10961", + "victoriaFile": "26250-20/14691", "regionalFile": "N/A", "parcelIDs": [ - 3863385, - 7357776, - 3859551, - 2527117, - 9261550 + 811968, + 4344426, + 6023298, + 568271, + 9507107 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2014-02-13", - "completed": "2017-05-21", - "initiated": "2018-01-13", - "ministryContact": "RUECKER ELOISA", + "uuid": "15f19390-9550-44a2-a09a-118c47f8fb1f", + "createdAt": "2021-07-19", + "completed": "2021-05-22", + "initiated": "2021-01-04", + "ministryContact": "SCHINNER SHERMAN", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -57225,28 +66292,26 @@ ], "notationParticipants": [ { + "uuid": "06eb631a-678a-4714-a718-2cca51e4c175", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", + "uuid": "60c5f5f0-1198-450f-a861-4f121b81cf47", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2022-08-19", - "completed": "2019-05-21", - "initiated": "2015-05-01", - "ministryContact": "STRACKE MADISYN", + "uuid": "eea9e2b5-2e1b-4431-88cf-e5956580f934", + "createdAt": "2020-10-20", + "completed": "2017-08-29", + "initiated": "2022-09-06", + "ministryContact": "LUBOWITZ DALLIN", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -57255,28 +66320,44 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true + "uuid": "da6cca5d-851c-422a-bff0-489ee771fed0", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", + "uuid": "7234b73e-af47-4670-bce2-1f3ae6a55a89", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "uuid": "29dc31ea-3e8c-4a1b-a0a1-372cf1f4401b", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", "siteRegistry": false }, { + "uuid": "84a09140-423a-4573-ae41-e683559a38ac", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "3ceba771-c996-4624-9500-ae6e5cc43749", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", "siteRegistry": false } ], "siteRegistry": false }, { - "createdAt": "2017-07-10", - "completed": "2017-07-28", - "initiated": "2016-12-11", - "ministryContact": "O'KEEFE ALEEN", + "uuid": "802ef824-5977-4dd7-a307-0637da12826a", + "createdAt": "2016-08-07", + "completed": "2023-03-01", + "initiated": "2022-10-09", + "ministryContact": "RUTHERFORD RICK", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -57285,39 +66366,79 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", + "uuid": "14e530ae-4ec0-4edf-a0dd-bbcfd4ecd8dd", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "uuid": "c69d4c70-b684-4228-84bf-54e8d8917b18", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true }, { + "uuid": "f8f7fef7-759c-4207-a296-c4a9d13d64f2", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false }, { + "uuid": "55ce4d2c-2091-4fa1-807c-dacd051dcd29", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false }, { + "uuid": "a01f4a06-4bd3-44f3-8421-1d309224ac01", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "uuid": "2f8e462f-8d49-497e-82ca-037d669ae317", + "createdAt": "2019-02-23", + "completed": "2015-06-18", + "initiated": "2014-07-12", + "ministryContact": "SCHUSTER LEONARDO", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "uuid": "64a75bdb-2b26-4496-9af0-bea1ca543e1c", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "c57b5a95-3b95-46df-8464-1ee0d5caad15", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": false }, { + "uuid": "bec483da-8efb-49de-a1c0-96eecde1e58e", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true } ], "participants": [ { + "uuid": "2d51460c-a738-40fa-9166-8b53eafa9c35", "name": "SHELL CANADA PRODUCTS", - "endDate": "2020-08-21", - "startDate": "2022-08-18", + "endDate": "2022-02-01", + "startDate": "2023-06-30", "notes": "", "roles": [ "EMPLOYEE" @@ -57325,99 +66446,154 @@ "siteRegistry": false }, { + "uuid": "ff87f9c7-2722-4de9-9a22-adc19e41a628", "name": "SHELL CANADA PRODUCTS", - "endDate": "2021-08-13", - "startDate": "2020-05-06", + "endDate": "2019-07-06", + "startDate": "2019-01-30", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true }, { - "name": "IPSUM", - "endDate": "2019-10-04", - "startDate": "2018-09-03", + "uuid": "6d41ca09-4015-463d-9ef2-5dd8839bf37d", + "name": "AMET, DOLOR SIT", + "endDate": "2015-03-07", + "startDate": "2022-06-24", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], - "siteRegistry": false + "siteRegistry": true }, { + "uuid": "273361bc-fd59-4de4-9d9d-e0da1bb9650d", "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2019-04-22", - "startDate": "2016-12-23", + "endDate": "2017-08-30", + "startDate": "2022-05-20", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": true + }, + { + "uuid": "1170e0fe-3a24-4560-9aec-7e449b1e4d12", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2015-12-20", + "startDate": "2021-09-06", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false } ], "suspectLandUses": [ { + "uuid": "2ed57a2d-e413-449f-bc6c-d2faeac4a316", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2022-03-09 (described on Site Profile dated 2022-03-09)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "uuid": "f8f5c33b-f0e3-4d23-a358-290b0f377e60", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-10-16 (described on Site Profile dated 2017-10-16)", + "notes": "INSERTED FOR SITE PROFILE DATED 2014-08-13 (described on Site Profile dated 2014-08-13)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-10-05 (described on Site Profile dated 2014-10-05)", + "uuid": "ccf8770d-1da6-4074-92cb-8eca8ed827cd", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2020-06-05 (described on Site Profile dated 2020-06-05)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], "parcelDescriptions": [ { + "uuid": "4a1a4731-467a-4ffd-a168-fde55897e1a0", "siteRegistry": false, - "dateNoted": "2017-01-09", - "parcelID": "17833", - "crownLandUsePIN": "17626", - "crownLandFileNumber": "17793", - "landDescription": "LOT 3 OF LOT 3 BLOCK 3 DISTRICT LOT 4 PLAN 5347" + "dateNoted": "2022-06-15", + "parcelID": "20390", + "crownLandUsePIN": "18644", + "crownLandFileNumber": "20606", + "landDescription": "LOT 3 OF LOT 1 BLOCK 4 DISTRICT LOT 4 PLAN 8862" }, { + "uuid": "8b030845-65b7-4e33-9710-eefa0c0b6b65", "siteRegistry": true, - "dateNoted": "2017-07-01", - "parcelID": "18429", - "crownLandUsePIN": "18864", - "crownLandFileNumber": "19935", - "landDescription": "LOT 4 OF LOT 1 BLOCK 2 DISTRICT LOT 1 PLAN 9595" + "dateNoted": "2018-09-25", + "parcelID": "19258", + "crownLandUsePIN": "17857", + "crownLandFileNumber": "18502", + "landDescription": "LOT 1 OF LOT 1 BLOCK 4 DISTRICT LOT 3 PLAN 6503" }, { - "siteRegistry": false, - "dateNoted": "2015-01-23", - "parcelID": "20365", - "crownLandUsePIN": "20905", - "crownLandFileNumber": "17158", - "landDescription": "LOT 4 OF LOT 3 BLOCK 2 DISTRICT LOT 4 PLAN 6155" + "uuid": "2e459645-ee9a-4343-81ac-5a8daa86b2d3", + "siteRegistry": true, + "dateNoted": "2023-05-25", + "parcelID": "18189", + "crownLandUsePIN": "18286", + "crownLandFileNumber": "15337", + "landDescription": "LOT 3 OF LOT 5 BLOCK 4 DISTRICT LOT 4 PLAN 6648" } ], "siteDisclosures": [ { + "uuid": "adde84fe-296f-491c-92ec-70df93e12c0b", "siteRegistry": true, - "dateReceived": "2014-06-28", - "dateCompleted": "2018-06-09", - "dateEntered": "2023-01-28", - "dateRegistrar": "2023-03-25", - "dateLocalAuthorityReceived": "2020-11-14", - "summary": "Perferendis illo consequuntur fugit animi sed dolor occaecati quo voluptatibus.\nDelectus occaecati dolorum dolore quasi nulla.", - "informationUsed": "Facere eius perspiciatis vitae voluptas natus id quae maxime.\nOccaecati excepturi laboriosam.\nOdit sint quis.\nConsectetur ea aliquid laudantium et.\nPorro perspiciatis sint modi distinctio ut.", - "pastOrPresentOrders": "Nam ratione ratione doloribus aliquid fuga ad eveniet illo.\nVoluptatibus deleniti corrupti earum.\nMinus cumque illo est et similique doloremque totam at.", + "dateReceived": "2019-10-17", + "dateCompleted": "2019-11-08", + "dateEntered": "2013-10-27", + "dateRegistrar": "2017-11-13", + "dateLocalAuthorityReceived": "2019-02-28", + "summary": "Ab ea molestias nihil illo mollitia tenetur ipsam pariatur veniam.\nExcepturi dolorum architecto.", + "informationUsed": "Debitis modi inventore excepturi quidem sed enim accusamus.\nOfficiis cum magnam eveniet eos reiciendis quo occaecati occaecati blanditiis.\nDignissimos atque ut corporis omnis facilis.\nQuod necessitatibus ipsum.", + "pastOrPresentOrders": "Quia quas natus non asperiores velit molestias debitis.", "commercialAndIndustrialPurposes": [ { - "scheduleReference": "F2*", + "uuid": "6fa0b894-70e8-4921-bbb3-df67944cabdc", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true + "siteRegistry": false }, { + "uuid": "f507a232-0bf4-4dc8-9415-443a0ebcada3", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true + } + ] + }, + { + "uuid": "cf97120c-e250-4e12-bb8a-f4a17c2a0b26", + "siteRegistry": false, + "dateReceived": "2017-10-06", + "dateCompleted": "2021-11-14", + "dateEntered": "2019-10-29", + "dateRegistrar": "2018-12-16", + "dateLocalAuthorityReceived": "2018-06-08", + "summary": "Impedit quas ratione dolorem eaque neque iusto odio.", + "informationUsed": "Ducimus accusamus ab a necessitatibus.\nVoluptatum sequi reiciendis nobis libero aperiam nobis.\nSoluta nesciunt quidem voluptatum unde amet illum nobis non.\nDolores sit at atque.", + "pastOrPresentOrders": "Libero quisquam inventore exercitationem quis optio.", + "commercialAndIndustrialPurposes": [ + { + "uuid": "dda69cac-b89f-4bc4-af30-ed364ce8f347", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true }, { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "uuid": "c2d25c79-f2d4-472f-b248-b10f617e8444", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "uuid": "76435cf1-64a3-4c4c-9c7b-952e8ff203a5", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true } ] @@ -57425,102 +66601,115 @@ ], "activityLog": [ { - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "SMITHAM LUCIO", - "timestamp": "2017-10-10" - }, - { - "siteRegistry": false, + "uuid": "c793d364-87e6-47ee-bbc6-222627b6e146", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "ZIEMANN REX", - "timestamp": "2014-02-25" + "user": "DUBUQUE VIVIEN", + "timestamp": "2017-09-28" }, { + "uuid": "b421428a-8da3-4418-a6e4-a62a3892ac26", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "KIRLIN BENTON", - "timestamp": "2016-05-24" + "user": "WHITE BRENNAN", + "timestamp": "2021-08-29" }, { - "siteRegistry": true, + "uuid": "15cd65fc-f5c4-4b67-9d34-842845274a9e", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "REICHEL JANNIE", - "timestamp": "2014-06-25" + "user": "BOTSFORD CAROLYNE", + "timestamp": "2019-06-30" }, { + "uuid": "0e6cb95b-c336-40e9-be89-bf7a3b4461aa", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "SATTERFIELD MELVINA", - "timestamp": "2019-09-22" + "user": "MITCHELL EMERSON", + "timestamp": "2018-07-15" }, { + "uuid": "3db057c4-6e9a-499f-9a69-48ba3a9c43ae", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "FEEST ZAKARY", - "timestamp": "2018-08-19" + "user": "BODE EDUARDO", + "timestamp": "2022-04-18" }, { + "uuid": "a47d41eb-2d20-47cf-93e8-3dd1a70c8971", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "VOLKMAN ADRIENNE", - "timestamp": "2013-11-09" + "user": "GLOVER DANGELO", + "timestamp": "2016-12-13" }, { + "uuid": "da302c3f-4c0a-4557-ab41-60ea56ea30e7", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "LOWE YASMIN", - "timestamp": "2018-08-09" + "user": "POUROS KATHARINA", + "timestamp": "2015-07-05" }, { + "uuid": "24ed2126-2964-4900-a9bf-1c33462b8153", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "QUITZON ELROY", - "timestamp": "2019-02-07" + "user": "SHIELDS SHAD", + "timestamp": "2015-06-04" } ], "associatedSites": [ { - "dateNoted": "2018-04-25", + "uuid": "3afc14e8-f694-4ff5-90d0-b0f6cce8a7ba", + "dateNoted": "2021-12-04", "notes": "", - "parcelID": "20466", - "siteID": "20388", - "siteRegistry": false + "parcelID": "15835", + "siteID": "15766", + "siteRegistry": true + }, + { + "uuid": "e579c7d4-b1a4-4e26-a678-9bbf53f7608a", + "dateNoted": "2014-09-27", + "notes": "", + "parcelID": "20729", + "siteID": "15722", + "siteRegistry": true }, { - "dateNoted": "2021-06-25", + "uuid": "80e8913c-2627-4a26-8ed9-00abfa6c8de3", + "dateNoted": "2015-02-26", "notes": "", - "parcelID": "18255", - "siteID": "15420", + "parcelID": "15932", + "siteID": "16419", "siteRegistry": true } ] }, { - "uuid": "bf048b92-c8a2-4fd6-8ce2-f192a00914d8", - "siteID": 18326, - "address": "233 Rocky Radial", - "latitude": 58.7386, - "longitude": -127.0021, - "lastUpdated": "2019-01-23", - "city": "West George", - "region": "Cariboo", - "victoriaFile": "26250-20/2039", + "uuid": "c10fc799-d0c2-43de-baf6-7ad9ffe950ef", + "siteID": 17170, + "address": "3541 Reuben Expressway", + "latitude": 57.7261, + "longitude": -135.1182, + "lastUpdated": "2016-06-29", + "city": "Centreville", + "region": "Vancouver Island/Coast", + "victoriaFile": "26250-20/8332", "regionalFile": "N/A", "parcelIDs": [ - 7195210, - 3728560, - 6202804, - 6490815, - 6959658 + 3447582, + 2438997, + 8046175, + 6044488, + 3422130 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2015-03-22", - "completed": "2019-08-07", - "initiated": "2021-02-11", - "ministryContact": "LIND MARILIE", + "uuid": "fc6100ef-2306-4786-8796-d0ddaac1eb09", + "createdAt": "2020-10-29", + "completed": "2021-06-27", + "initiated": "2017-09-09", + "ministryContact": "HELLER BRAULIO", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -57529,38 +66718,26 @@ ], "notationParticipants": [ { + "uuid": "00a76c2c-d13e-474a-9cdc-b98aba90c7af", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false }, { + "uuid": "598fe7ba-691b-4531-a4bb-586a2ef174f4", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2017-06-19", - "completed": "2013-10-15", - "initiated": "2014-05-08", - "ministryContact": "ERDMAN KIANNA", + "uuid": "38a6eab3-bf81-46af-9cd4-aa1f1cf2388c", + "createdAt": "2018-05-06", + "completed": "2022-06-14", + "initiated": "2022-02-08", + "ministryContact": "KASSULKE DOMINIC", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -57569,33 +66746,26 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { + "uuid": "8bafd87f-5189-4be0-9bcb-46a065099d9f", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { + "uuid": "90d685c2-0e09-40ae-9b5e-7c1ecb2914a6", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false } ], "siteRegistry": true }, { - "createdAt": "2017-03-27", - "completed": "2021-06-10", - "initiated": "2015-10-25", - "ministryContact": "GIBSON TYREEK", + "uuid": "8f749393-dbc0-4afa-ad6c-bd27851450e5", + "createdAt": "2022-05-31", + "completed": "2018-10-29", + "initiated": "2019-08-25", + "ministryContact": "DOOLEY KEAGAN", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -57604,38 +66774,21 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false + "uuid": "2d2b6306-fc12-4db2-baee-bd0f86b5a1ea", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true }, { + "uuid": "20081bb8-f440-476a-8ae6-5f68be5fce7a", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false - } - ], - "siteRegistry": false - }, - { - "createdAt": "2022-06-22", - "completed": "2019-08-07", - "initiated": "2020-08-31", - "ministryContact": "GUSIKOWSKI SOLON", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", "siteRegistry": true }, { + "uuid": "5236a755-28ff-458d-8952-2d2fb970fb6d", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": true } ], @@ -57644,39 +66797,43 @@ ], "participants": [ { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2019-01-06", - "startDate": "2019-06-04", + "uuid": "5c91dfb5-6aa2-445f-8412-0a286987d192", + "name": "AMET, DOLOR SIT", + "endDate": "2021-10-23", + "startDate": "2018-02-02", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": true + "siteRegistry": false }, { + "uuid": "e1698c15-fea5-4d3b-ab80-a82314a1fa66", "name": "IPSUM", - "endDate": "2023-06-15", - "startDate": "2017-03-12", + "endDate": "2023-02-16", + "startDate": "2016-04-14", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2023-03-20", - "startDate": "2020-06-29", + "uuid": "dc442ec8-1717-40a2-a7b5-25a301e5c1ca", + "name": "AMET, DOLOR SIT", + "endDate": "2023-05-18", + "startDate": "2018-09-09", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": true }, { + "uuid": "e99bf413-dc6f-40ef-a0ad-019af99d504a", "name": "IPSUM", - "endDate": "2018-02-13", - "startDate": "2021-11-23", + "endDate": "2017-03-24", + "startDate": "2016-10-06", "notes": "", "roles": [ "EMPLOYEE" @@ -57684,223 +66841,237 @@ "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2021-05-26", - "startDate": "2021-08-23", + "uuid": "37b60ed8-3dd8-4a34-83fa-57e0bfb44554", + "name": "IPSUM", + "endDate": "2020-04-09", + "startDate": "2017-12-16", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": true } ], "suspectLandUses": [ { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-09-29 (described on Site Profile dated 2014-09-29)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" - }, - { + "uuid": "702eb27f-43fa-471a-8e64-dad7a910e162", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-05-29 (described on Site Profile dated 2016-05-29)", + "notes": "INSERTED FOR SITE PROFILE DATED 2022-01-04 (described on Site Profile dated 2022-01-04)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { + "uuid": "278acbb6-6142-430d-9cc8-4db7e9c55dda", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2023-09-07 (described on Site Profile dated 2023-09-07)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" - }, - { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2020-05-02 (described on Site Profile dated 2020-05-02)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "notes": "INSERTED FOR SITE PROFILE DATED 2014-12-10 (described on Site Profile dated 2014-12-10)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], "parcelDescriptions": [ { + "uuid": "cd6f383f-19cd-40e9-8614-116b40b84ee5", + "siteRegistry": true, + "dateNoted": "2023-02-19", + "parcelID": "18285", + "crownLandUsePIN": "17562", + "crownLandFileNumber": "20022", + "landDescription": "LOT 1 OF LOT 3 BLOCK 2 DISTRICT LOT 4 PLAN 8424" + }, + { + "uuid": "7ad2479d-2eb2-4d5e-ad1b-d5f53efb6434", "siteRegistry": false, - "dateNoted": "2018-05-18", - "parcelID": "17756", - "crownLandUsePIN": "16031", - "crownLandFileNumber": "16905", - "landDescription": "LOT 4 OF LOT 2 BLOCK 5 DISTRICT LOT 3 PLAN 3181" + "dateNoted": "2013-11-22", + "parcelID": "17511", + "crownLandUsePIN": "17590", + "crownLandFileNumber": "18866", + "landDescription": "LOT 3 OF LOT 5 BLOCK 2 DISTRICT LOT 5 PLAN 8156" }, { + "uuid": "0eab97e5-df64-47c2-ac0b-5c3e85ec108a", "siteRegistry": true, - "dateNoted": "2021-07-09", - "parcelID": "16406", - "crownLandUsePIN": "16668", - "crownLandFileNumber": "19098", - "landDescription": "LOT 3 OF LOT 5 BLOCK 5 DISTRICT LOT 1 PLAN 6784" + "dateNoted": "2014-03-02", + "parcelID": "16591", + "crownLandUsePIN": "17613", + "crownLandFileNumber": "18756", + "landDescription": "LOT 5 OF LOT 4 BLOCK 2 DISTRICT LOT 2 PLAN 7655" }, { + "uuid": "38e88c5e-dc74-4477-b3aa-cca6414eed1b", "siteRegistry": false, - "dateNoted": "2018-11-17", - "parcelID": "17118", - "crownLandUsePIN": "19272", - "crownLandFileNumber": "18240", - "landDescription": "LOT 4 OF LOT 4 BLOCK 1 DISTRICT LOT 4 PLAN 4046" + "dateNoted": "2018-04-01", + "parcelID": "19291", + "crownLandUsePIN": "16263", + "crownLandFileNumber": "17605", + "landDescription": "LOT 5 OF LOT 5 BLOCK 1 DISTRICT LOT 2 PLAN 8528" + }, + { + "uuid": "a3805237-c7ae-474b-bd3d-f4c48c1a7b97", + "siteRegistry": true, + "dateNoted": "2021-12-29", + "parcelID": "16332", + "crownLandUsePIN": "17727", + "crownLandFileNumber": "18017", + "landDescription": "LOT 1 OF LOT 5 BLOCK 2 DISTRICT LOT 2 PLAN 3937" } ], "siteDisclosures": [ { - "siteRegistry": false, - "dateReceived": "2014-04-02", - "dateCompleted": "2019-11-20", - "dateEntered": "2015-01-25", - "dateRegistrar": "2020-11-03", - "dateLocalAuthorityReceived": "2018-10-07", - "summary": "Natus iusto voluptate adipisci ipsam.\nMinus voluptates qui ratione doloremque facere dolores excepturi.", - "informationUsed": "Est inventore blanditiis nostrum aliquam ab quibusdam officiis.\nQuaerat ipsam sint reiciendis.\nDeserunt totam consequatur praesentium harum aspernatur minus illo reprehenderit qui.\nRepellendus delectus magnam voluptate pariatur temporibus assumenda tempora dolorem.", - "pastOrPresentOrders": "Iste assumenda dolore fuga commodi culpa.\nLibero quos animi eum voluptate impedit consequuntur.\nTempore minima quam cumque.", + "uuid": "5e9b7052-32ce-40bf-87e5-98eb11de1a14", + "siteRegistry": true, + "dateReceived": "2015-03-10", + "dateCompleted": "2017-05-26", + "dateEntered": "2020-04-08", + "dateRegistrar": "2021-10-16", + "dateLocalAuthorityReceived": "2021-12-27", + "summary": "In ex dignissimos rerum adipisci pariatur quasi.\nDebitis nostrum distinctio rem consequuntur quis amet placeat.\nLaboriosam itaque veniam dolores nesciunt blanditiis deserunt dolor.", + "informationUsed": "Occaecati unde quae id nulla.\nItaque fuga excepturi sed inventore ex exercitationem.\nInventore error quas.\nRatione ullam deserunt dignissimos autem distinctio mollitia quis.\nQuisquam eligendi maxime aperiam.", + "pastOrPresentOrders": "Quos illum laudantium quaerat vitae.\nBeatae debitis inventore ratione error reprehenderit accusantium quam quos.", "commercialAndIndustrialPurposes": [ { - "scheduleReference": "F2*", + "uuid": "5db6378f-4912-4abc-bd3c-c8a403c8005e", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false - } - ] - }, - { - "siteRegistry": false, - "dateReceived": "2019-02-16", - "dateCompleted": "2018-05-22", - "dateEntered": "2016-07-17", - "dateRegistrar": "2020-01-17", - "dateLocalAuthorityReceived": "2020-10-05", - "summary": "In quam eos iusto inventore natus.\nDoloremque dolorem corporis consequuntur dolor cum quisquam.\nLibero quo excepturi repellat ipsum maxime.", - "informationUsed": "Amet rerum vitae quia placeat exercitationem reiciendis quia.\nId impedit nostrum ipsam sequi.\nEa ab repellendus explicabo impedit maiores nesciunt eius aliquid.", - "pastOrPresentOrders": "Quisquam enim hic iusto incidunt facere tenetur.", - "commercialAndIndustrialPurposes": [ - { + "uuid": "fbf5898d-9127-46aa-8d9c-00cc852028ea", "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true }, { + "uuid": "e2d6710b-86e0-4f92-915f-2e898462e92c", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false + "siteRegistry": true } ] } ], "activityLog": [ { + "uuid": "faf73ef4-fea8-4689-8f47-c7c43112dfa7", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "BAHRINGER HOPE", - "timestamp": "2018-04-16" + "user": "MUELLER MAURICE", + "timestamp": "2023-03-05" }, { - "siteRegistry": true, + "uuid": "8bff8f55-fe3d-4dbe-80d0-ce6779556e0a", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "HEGMANN ALBA", - "timestamp": "2022-01-26" + "user": "RUSSEL ADONIS", + "timestamp": "2017-02-05" }, { + "uuid": "441d5553-c10c-48d5-87de-4b36ca7b0c36", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "BREKKE BRADFORD", - "timestamp": "2019-07-28" + "user": "HOMENICK ALDEN", + "timestamp": "2018-09-16" }, { - "siteRegistry": true, + "uuid": "d2369554-b069-4048-9ffb-a830ff925b9d", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "THIEL CONSUELO", - "timestamp": "2014-05-20" + "user": "SWANIAWSKI NIGEL", + "timestamp": "2014-07-14" }, { + "uuid": "6e011e24-7763-4507-9e76-c8aa5e91e489", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "DIBBERT ERIBERTO", - "timestamp": "2020-11-09" + "user": "WEHNER MAIYA", + "timestamp": "2018-06-12" }, { + "uuid": "ac8f9b4c-abd7-42ac-8007-c4570c64a25a", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "HELLER NORA", - "timestamp": "2018-09-29" + "user": "CARTER LEMUEL", + "timestamp": "2019-03-07" }, { + "uuid": "5d0968a4-5e0d-44fe-989f-b3074e8b5af5", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "OLSON BRADLY", - "timestamp": "2020-04-16" + "user": "BREITENBERG ERICK", + "timestamp": "2021-10-08" }, { - "siteRegistry": false, + "uuid": "65e95454-83e8-47ed-8605-5cff692bde14", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "ZULAUF ELECTA", - "timestamp": "2021-07-15" + "user": "GULGOWSKI ELSIE", + "timestamp": "2016-11-15" }, { - "siteRegistry": true, + "uuid": "e303c76a-2300-444c-88d2-93a940c317a2", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "KUTCH MARTINA", - "timestamp": "2019-01-05" + "user": "HODKIEWICZ LEILA", + "timestamp": "2022-04-28" }, { + "uuid": "1c086f0d-9e4a-4c0f-b8b6-6e8a7a4dbf25", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "BASHIRIAN ISSAC", - "timestamp": "2016-08-25" + "user": "PACOCHA MOISES", + "timestamp": "2015-07-02" } ], "associatedSites": [ { - "dateNoted": "2016-04-17", + "uuid": "1ade322a-7f0a-4950-99c6-b0b3b8758656", + "dateNoted": "2021-01-13", "notes": "", - "parcelID": "19766", - "siteID": "20984", + "parcelID": "20206", + "siteID": "17362", "siteRegistry": true }, { - "dateNoted": "2021-03-10", + "uuid": "43b17ea9-a294-4c7b-99c2-05531d38d646", + "dateNoted": "2019-07-17", "notes": "", - "parcelID": "19940", - "siteID": "15630", - "siteRegistry": false + "parcelID": "15700", + "siteID": "19730", + "siteRegistry": true }, { - "dateNoted": "2019-04-07", + "uuid": "23336433-7bee-49d9-bafc-2acd6a1ecd65", + "dateNoted": "2017-03-04", "notes": "", - "parcelID": "20694", - "siteID": "18372", + "parcelID": "18028", + "siteID": "19113", "siteRegistry": false } ] }, { - "uuid": "a1a100bf-cd71-462d-9bf4-a3fb647c79bf", - "siteID": 20962, - "address": "135 Hollie Estate", - "latitude": 50.7816, - "longitude": -129.0344, - "lastUpdated": "2019-10-02", - "city": "Livermore", + "uuid": "2643e5b4-a0a8-4198-a60d-e9669cecfcd0", + "siteID": 16895, + "address": "32906 Willms Hollow", + "latitude": 57.6919, + "longitude": -134.6161, + "lastUpdated": "2018-05-23", + "city": "South Jabari", "region": "Cariboo", - "victoriaFile": "26250-20/8543", + "victoriaFile": "26250-20/17309", "regionalFile": "N/A", "parcelIDs": [ - 1955576, - 6534110, - 7871656, - 5996269, - 9508035 + 2884349, + 1989638, + 7213898, + 9890193, + 1439019 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2014-05-05", - "completed": "2020-09-29", - "initiated": "2020-04-21", - "ministryContact": "ANDERSON BREANNE", + "uuid": "4efdfaf1-580a-4b36-9569-2d8efaf2dbc1", + "createdAt": "2013-12-21", + "completed": "2020-10-01", + "initiated": "2022-06-03", + "ministryContact": "FADEL KAMRON", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -57909,38 +67080,38 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { + "uuid": "735a6c0e-28a6-49d0-b9f8-cfb919f0753a", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { + "uuid": "c7b25df0-ae60-45a1-9b38-338d8831e0ff", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true }, { + "uuid": "8c7c50cc-bf04-456c-b9c1-17a5d24e1588", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { + "uuid": "cc18ec3c-e193-4f33-b638-5f476fd6b4c5", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true + "role": "SUBMITTED BY", + "siteRegistry": false } ], "siteRegistry": true }, { - "createdAt": "2015-02-15", - "completed": "2016-05-25", - "initiated": "2014-03-07", - "ministryContact": "WALSH CARLOTTA", + "uuid": "708c36e7-06c6-4450-bc02-8871eb79144a", + "createdAt": "2016-12-18", + "completed": "2018-09-23", + "initiated": "2013-10-26", + "ministryContact": "WEISSNAT ALDEN", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -57949,23 +67120,26 @@ ], "notationParticipants": [ { + "uuid": "5c53aa00-9163-4409-85d1-c7a455308318", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "uuid": "b6d81ce3-12a6-4ace-95b6-d7708ce353d5", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", "siteRegistry": true } ], "siteRegistry": true }, { - "createdAt": "2019-09-17", - "completed": "2021-12-09", - "initiated": "2016-01-05", - "ministryContact": "HAGENES SHAD", + "uuid": "9d029c63-a981-4b42-8549-34bcb5002f0e", + "createdAt": "2015-02-22", + "completed": "2018-03-17", + "initiated": "2017-10-15", + "ministryContact": "HICKLE VICENTA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -57974,53 +67148,33 @@ ], "notationParticipants": [ { + "uuid": "11f4f5a1-c260-4b97-be51-290720e84573", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { + "uuid": "e03b5cac-c720-4437-90b0-12eedbdd3f3a", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false }, { + "uuid": "5d19caa6-94d7-4b1c-8873-c50b082ec5dd", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "e8bac91b-ec2f-4993-b7a8-d621c2dbf418", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true - } - ], - "siteRegistry": false - }, - { - "createdAt": "2017-08-16", - "completed": "2022-06-06", - "initiated": "2022-10-23", - "ministryContact": "DENESIK RASHEED", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "uuid": "476bb03d-d891-4a54-a853-4cc9e7b83f6c", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": false } ], @@ -58029,124 +67183,195 @@ ], "participants": [ { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2020-01-29", - "startDate": "2015-10-10", + "uuid": "d57a959c-e9fd-482b-9345-209e81f09de1", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2021-09-18", + "startDate": "2022-09-03", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], - "siteRegistry": true + "siteRegistry": false }, { + "uuid": "ce10a268-b30b-4e00-bb80-17c68655a820", "name": "IPSUM", - "endDate": "2020-07-25", - "startDate": "2023-09-03", + "endDate": "2016-12-16", + "startDate": "2013-11-12", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2022-07-06", - "startDate": "2015-07-04", + "uuid": "a59c6278-fcac-47db-ab7a-a8daca5d769a", + "name": "AMET, DOLOR SIT", + "endDate": "2013-10-20", + "startDate": "2015-10-02", "notes": "", "roles": [ "EMPLOYEE" ], + "siteRegistry": false + }, + { + "uuid": "1d06606a-7c8c-4809-a722-12b13aebe17a", + "name": "AMET, DOLOR SIT", + "endDate": "2014-09-06", + "startDate": "2023-09-24", + "notes": "", + "roles": [ + "ORGANIZATION" + ], "siteRegistry": true }, { + "uuid": "0f14c720-d5bf-46aa-ad5e-2d8fece4ab2b", "name": "SHELL CANADA PRODUCTS", - "endDate": "2014-11-07", - "startDate": "2022-08-01", + "endDate": "2021-05-24", + "startDate": "2015-10-31", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": false + "siteRegistry": true } ], "suspectLandUses": [ { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-05-22 (described on Site Profile dated 2016-05-22)", + "uuid": "ff163233-62ae-4ff1-8cb0-dc414c7c7836", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2020-06-24 (described on Site Profile dated 2020-06-24)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "uuid": "d681d101-2b8c-4520-9be3-859eae5befbf", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2018-07-01 (described on Site Profile dated 2018-07-01)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { + "uuid": "f4462871-4fa6-4cc6-b985-eff9c35f205d", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-05-26 (described on Site Profile dated 2015-05-26)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "notes": "INSERTED FOR SITE PROFILE DATED 2016-12-17 (described on Site Profile dated 2016-12-17)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-07-31 (described on Site Profile dated 2017-07-31)", + "uuid": "4a8781a6-d610-4519-8e3f-e84a8ef16e8a", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2013-11-05 (described on Site Profile dated 2013-11-05)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-03-01 (described on Site Profile dated 2022-03-01)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "uuid": "84d8de1f-3832-44b1-b9c8-b44405757bba", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2015-08-31 (described on Site Profile dated 2015-08-31)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], "parcelDescriptions": [ { - "siteRegistry": true, - "dateNoted": "2018-09-11", - "parcelID": "20226", - "crownLandUsePIN": "15650", - "crownLandFileNumber": "18179", - "landDescription": "LOT 3 OF LOT 1 BLOCK 2 DISTRICT LOT 5 PLAN 5590" + "uuid": "39e8afc6-db87-4026-8e66-559ba5588995", + "siteRegistry": false, + "dateNoted": "2013-12-14", + "parcelID": "17434", + "crownLandUsePIN": "17507", + "crownLandFileNumber": "19074", + "landDescription": "LOT 1 OF LOT 2 BLOCK 5 DISTRICT LOT 2 PLAN 9463" }, { + "uuid": "427e82c3-09fe-41ed-82e4-a4cf049c8b3c", "siteRegistry": true, - "dateNoted": "2018-03-17", - "parcelID": "17750", - "crownLandUsePIN": "16380", - "crownLandFileNumber": "18365", - "landDescription": "LOT 4 OF LOT 5 BLOCK 4 DISTRICT LOT 3 PLAN 6356" + "dateNoted": "2013-12-03", + "parcelID": "19583", + "crownLandUsePIN": "20786", + "crownLandFileNumber": "20223", + "landDescription": "LOT 5 OF LOT 5 BLOCK 2 DISTRICT LOT 1 PLAN 7281" }, { + "uuid": "5626c14b-a050-49c4-80b0-a0f36f4f1788", "siteRegistry": true, - "dateNoted": "2015-06-27", - "parcelID": "16137", - "crownLandUsePIN": "16448", - "crownLandFileNumber": "15292", - "landDescription": "LOT 2 OF LOT 5 BLOCK 5 DISTRICT LOT 2 PLAN 4036" + "dateNoted": "2015-05-22", + "parcelID": "18068", + "crownLandUsePIN": "19190", + "crownLandFileNumber": "19874", + "landDescription": "LOT 2 OF LOT 5 BLOCK 4 DISTRICT LOT 5 PLAN 8523" } ], "siteDisclosures": [ { + "uuid": "5ce1721b-f098-44d7-9188-35f67d002d9e", + "siteRegistry": true, + "dateReceived": "2023-01-06", + "dateCompleted": "2015-07-29", + "dateEntered": "2014-10-28", + "dateRegistrar": "2022-09-07", + "dateLocalAuthorityReceived": "2015-02-03", + "summary": "Vel unde impedit architecto.", + "informationUsed": "Nesciunt praesentium cupiditate nisi nihil voluptas praesentium facere.\nQuia sed sequi officia quam architecto explicabo vel amet.\nUnde nam aut quas voluptas architecto vitae quia asperiores.\nSint ipsa laboriosam.", + "pastOrPresentOrders": "Iste fuga magni temporibus ipsum.", + "commercialAndIndustrialPurposes": [ + { + "uuid": "78b8bd0b-8c46-4b9f-834d-01f6a227e400", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "uuid": "c283041b-8cdc-4fb7-8e95-5e369f87fc21", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "uuid": "8bb72b79-4893-4b4a-91a6-9d80ab54e438", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "uuid": "08a16ad3-34a3-46ce-93e1-4a7e4bd6ce30", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + } + ] + }, + { + "uuid": "7db59817-ab68-44d4-9005-fe21667512f7", "siteRegistry": false, - "dateReceived": "2019-04-20", - "dateCompleted": "2014-12-15", - "dateEntered": "2017-03-18", - "dateRegistrar": "2018-02-02", - "dateLocalAuthorityReceived": "2020-10-30", - "summary": "Harum assumenda nihil nesciunt ullam tenetur ducimus cum aut at.", - "informationUsed": "Dolorum cupiditate magnam reprehenderit veritatis temporibus esse deleniti nihil recusandae.\nEius ut quia odio ipsa culpa ea neque.\nEos dolores sequi hic eos expedita.\nOfficia inventore porro iste.\nHic quam officiis repellat aperiam corrupti reprehenderit.", - "pastOrPresentOrders": "Asperiores minima corrupti illo.\nAccusamus tempora voluptates tenetur deserunt fugit dolore dolores quo.\nInventore iure mollitia.", + "dateReceived": "2014-03-13", + "dateCompleted": "2016-05-03", + "dateEntered": "2018-03-16", + "dateRegistrar": "2017-01-17", + "dateLocalAuthorityReceived": "2019-08-18", + "summary": "Explicabo voluptas voluptates eligendi.\nAlias sapiente dolorum impedit cumque veniam omnis iusto natus voluptatem.", + "informationUsed": "Ipsam illo provident temporibus.\nVero sit rerum occaecati unde inventore voluptatibus.\nAd nihil corrupti.\nEveniet veniam reprehenderit quisquam quidem cum eius nostrum.\nInventore odio voluptatum rem in omnis perspiciatis ducimus voluptas.", + "pastOrPresentOrders": "Amet at ad illo consequuntur occaecati.\nEveniet a vitae in.", "commercialAndIndustrialPurposes": [ { + "uuid": "08d67ecc-0432-4672-a9f8-a0471dc19011", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false + "siteRegistry": true }, { + "uuid": "abd53ce0-545c-426f-acef-73d7e97706df", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { - "scheduleReference": "F2*", + "uuid": "9ea173b5-e331-4031-91ee-463ad4d481e3", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false + "siteRegistry": true }, { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "uuid": "96257a89-8a09-476c-941e-8b4009031e3d", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false } ] @@ -58154,90 +67379,92 @@ ], "activityLog": [ { - "siteRegistry": false, + "uuid": "693988fc-82a0-48bf-b6fc-a5fabfb14983", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "ROBERTS JOSEFA", - "timestamp": "2023-02-16" + "user": "DACH KARINA", + "timestamp": "2019-12-30" }, { + "uuid": "47823140-e46f-43fe-8e6a-cdc806d40654", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "GOYETTE TOY", - "timestamp": "2016-08-06" + "user": "HARBER ELVERA", + "timestamp": "2017-07-25" }, { - "siteRegistry": false, + "uuid": "be830667-4270-419b-bfe4-444ff7a92ccd", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "DAUGHERTY ADELIA", - "timestamp": "2020-03-27" + "user": "ROWE CARLEY", + "timestamp": "2017-12-25" }, { - "siteRegistry": true, + "uuid": "ac3785d6-17fa-46ba-bd32-23aaf3fe81ba", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "CARTWRIGHT BETH", - "timestamp": "2014-07-20" + "user": "THIEL HILARIO", + "timestamp": "2021-05-10" }, { + "uuid": "83458636-b025-4d0b-a17d-e70e064e0bd5", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "O'KON KELSI", - "timestamp": "2018-09-05" + "user": "YOST BARON", + "timestamp": "2022-03-24" }, { + "uuid": "69ee7561-e3e2-4a2b-b2fd-ebadeb94d7d2", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "SWIFT PANSY", - "timestamp": "2017-12-19" + "user": "BECHTELAR DANYKA", + "timestamp": "2020-09-29" }, { + "uuid": "5ba6de4b-760c-4c4a-b1b3-bd97d858005f", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "KOHLER ERWIN", - "timestamp": "2018-04-09" + "user": "HOMENICK KATELYNN", + "timestamp": "2017-03-28" } ], "associatedSites": [ { - "dateNoted": "2018-01-18", - "notes": "", - "parcelID": "19778", - "siteID": "16064", - "siteRegistry": true - }, - { - "dateNoted": "2020-04-30", + "uuid": "5c2d31ac-4131-4c99-9a68-caff8307c2fa", + "dateNoted": "2018-01-03", "notes": "", - "parcelID": "18078", - "siteID": "17959", + "parcelID": "15768", + "siteID": "20482", "siteRegistry": false } ] }, { - "uuid": "4290a1a4-3b99-4870-9973-2fba4e29d1a8", - "siteID": 19427, - "address": "1801 Watsica Drives", - "latitude": 54.7778, - "longitude": -127.7466, - "lastUpdated": "2014-04-21", - "city": "Bayerfurt", - "region": "Vancouver Island/Coast", - "victoriaFile": "26250-20/16108", + "uuid": "1bbdd9ac-fca1-4219-8f5f-47622ff311a7", + "siteID": 18416, + "address": "56260 Noemie Points", + "latitude": 51.2382, + "longitude": -130.645, + "lastUpdated": "2015-08-29", + "city": "Ebertview", + "region": "Kootenay", + "victoriaFile": "26250-20/11778", "regionalFile": "N/A", "parcelIDs": [ - 7674633, - 928500, - 2502722, - 5221292, - 7239077 + 3219988, + 8043192, + 7695053, + 9391960, + 3209343 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2017-10-02", - "completed": "2021-12-16", - "initiated": "2016-12-25", - "ministryContact": "DOUGLAS SIDNEY", + "uuid": "4c183fc9-d2d8-4ad8-9bc3-2cce63b875b3", + "createdAt": "2022-01-10", + "completed": "2018-12-18", + "initiated": "2021-09-19", + "ministryContact": "DUBUQUE JUSTINE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -58246,23 +67473,60 @@ ], "notationParticipants": [ { + "uuid": "147f7b14-b354-4f1c-887a-72c9f3d55f4e", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "99b850bd-c045-43d9-b82c-e873a2dde27d", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "uuid": "62b2a91d-c0b9-4157-a255-d3a2db837c50", + "createdAt": "2015-03-06", + "completed": "2022-10-06", + "initiated": "2015-08-21", + "ministryContact": "BRAKUS BROOKLYN", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "uuid": "50ddec0f-6c54-4749-ae19-0dbcfb6f1b9a", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "uuid": "2ef0c944-8d16-40e8-a6d1-f6b8a53118ee", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false }, { + "uuid": "005abc73-6f37-4998-87e9-f3852949b500", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2018-05-20", - "completed": "2019-10-27", - "initiated": "2017-10-03", - "ministryContact": "PAGAC ZACKERY", + "uuid": "bf98a50a-738b-408c-bbab-daff45f5d0a6", + "createdAt": "2019-03-29", + "completed": "2016-07-10", + "initiated": "2020-07-02", + "ministryContact": "KING GEO", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -58271,38 +67535,44 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "689c0c65-de70-4c6a-a476-e785a9c993ce", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "uuid": "a27369bf-fc86-4a68-809f-c0ddfcc9c66f", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", + "uuid": "0a6906de-8760-4d9d-9e86-74882a384ba6", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false }, { + "uuid": "31906c99-183a-41e1-9a9c-d4fd8ea4f915", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true }, { + "uuid": "6a716012-98fd-42b8-b95c-b881a880ad03", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2021-04-20", - "completed": "2017-01-07", - "initiated": "2020-02-20", - "ministryContact": "MCDERMOTT PASQUALE", + "uuid": "7f062c93-b856-423c-94f9-3e4638ac5900", + "createdAt": "2019-09-18", + "completed": "2017-05-22", + "initiated": "2014-08-30", + "ministryContact": "MOSCISKI ABDULLAH", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -58311,54 +67581,66 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { + "uuid": "d55b640f-f7b1-435b-9453-22e67751207c", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false }, { + "uuid": "91311019-d22a-4688-baf0-806fbe0caf15", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true - }, + } + ], + "siteRegistry": true + }, + { + "uuid": "3833306e-a056-400d-b182-4d92cbc68d76", + "createdAt": "2015-03-14", + "completed": "2022-11-14", + "initiated": "2014-01-23", + "ministryContact": "NIENOW SHANEL", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", + "uuid": "443c9d77-a4c4-4875-b711-cf893db6763c", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "4cafd749-7549-428b-bf46-e23b5d7b1dde", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true } ], "participants": [ { - "name": "IPSUM", - "endDate": "2022-11-24", - "startDate": "2015-03-09", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": false - }, - { + "uuid": "41e855bf-2553-486b-ba0c-35e2991b30e1", "name": "SHELL CANADA PRODUCTS", - "endDate": "2019-07-31", - "startDate": "2020-03-16", + "endDate": "2023-03-23", + "startDate": "2015-08-12", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": true }, { - "name": "IPSUM", - "endDate": "2023-01-25", - "startDate": "2017-11-17", + "uuid": "75fffaec-fba0-4c35-9356-9eaddb6f53dc", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2017-05-20", + "startDate": "2016-04-25", "notes": "", "roles": [ "ORGANIZATION" @@ -58366,199 +67648,229 @@ "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2017-12-08", - "startDate": "2020-10-18", + "uuid": "9e9b3258-e77e-495e-8629-c7fe750ccda7", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2014-11-01", + "startDate": "2018-02-20", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": false } ], "suspectLandUses": [ { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-09-25 (described on Site Profile dated 2015-09-25)", + "uuid": "d23a02dd-c279-4362-94ad-ac9ffd075445", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2021-10-21 (described on Site Profile dated 2021-10-21)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "uuid": "e4e325f8-300f-406b-83f7-f3fe0b934c15", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2022-01-15 (described on Site Profile dated 2022-01-15)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { + "uuid": "2c9f67fe-306a-41c8-88be-ce1f6f21f405", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-07-21 (described on Site Profile dated 2017-07-21)", + "notes": "INSERTED FOR SITE PROFILE DATED 2019-08-04 (described on Site Profile dated 2019-08-04)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], "parcelDescriptions": [ { + "uuid": "9ea06167-e86f-414d-ac16-41cf54b972fe", "siteRegistry": false, - "dateNoted": "2013-11-16", - "parcelID": "20248", - "crownLandUsePIN": "18713", - "crownLandFileNumber": "17423", - "landDescription": "LOT 2 OF LOT 4 BLOCK 3 DISTRICT LOT 4 PLAN 6609" - }, - { - "siteRegistry": false, - "dateNoted": "2015-07-04", - "parcelID": "19331", - "crownLandUsePIN": "19725", - "crownLandFileNumber": "17137", - "landDescription": "LOT 4 OF LOT 4 BLOCK 5 DISTRICT LOT 3 PLAN 4622" - }, - { - "siteRegistry": false, - "dateNoted": "2019-03-20", - "parcelID": "20585", - "crownLandUsePIN": "20843", - "crownLandFileNumber": "17639", - "landDescription": "LOT 1 OF LOT 3 BLOCK 5 DISTRICT LOT 2 PLAN 3440" - }, - { - "siteRegistry": false, - "dateNoted": "2022-06-25", - "parcelID": "20814", - "crownLandUsePIN": "18572", - "crownLandFileNumber": "16573", - "landDescription": "LOT 1 OF LOT 3 BLOCK 5 DISTRICT LOT 3 PLAN 8808" + "dateNoted": "2022-08-24", + "parcelID": "16315", + "crownLandUsePIN": "19714", + "crownLandFileNumber": "19832", + "landDescription": "LOT 5 OF LOT 5 BLOCK 3 DISTRICT LOT 3 PLAN 8946" }, { + "uuid": "8dc090c9-81ab-491b-a168-eb2675dcce98", "siteRegistry": true, - "dateNoted": "2021-08-24", - "parcelID": "20391", - "crownLandUsePIN": "20903", - "crownLandFileNumber": "18847", - "landDescription": "LOT 5 OF LOT 4 BLOCK 4 DISTRICT LOT 5 PLAN 7841" + "dateNoted": "2023-03-22", + "parcelID": "18160", + "crownLandUsePIN": "17064", + "crownLandFileNumber": "18378", + "landDescription": "LOT 3 OF LOT 4 BLOCK 4 DISTRICT LOT 2 PLAN 7256" } ], "siteDisclosures": [ { + "uuid": "c4a4431f-e4eb-4f6c-a7d5-045938276101", "siteRegistry": true, - "dateReceived": "2019-05-15", - "dateCompleted": "2018-08-08", - "dateEntered": "2020-03-21", - "dateRegistrar": "2016-12-31", - "dateLocalAuthorityReceived": "2021-04-05", - "summary": "Molestias deleniti consequuntur consequuntur cupiditate maiores dolorem occaecati sequi.", - "informationUsed": "Dolorum omnis temporibus beatae modi magnam quam et eligendi.\nUnde vel voluptatem velit.\nCum rem quo.\nItaque autem exercitationem ducimus ut enim fuga iure sit itaque.\nRepellat excepturi nemo vero suscipit omnis quo nulla.", - "pastOrPresentOrders": "Totam ullam atque.\nSunt nisi ut doloribus cumque.\nVero est cumque sapiente.", + "dateReceived": "2014-02-10", + "dateCompleted": "2019-01-06", + "dateEntered": "2019-02-16", + "dateRegistrar": "2014-11-05", + "dateLocalAuthorityReceived": "2018-11-13", + "summary": "Aut facere corrupti delectus vero doloribus eum autem eveniet.\nAsperiores maiores adipisci quam iusto soluta perspiciatis voluptates blanditiis.\nNobis molestias ratione beatae.", + "informationUsed": "Quos vero temporibus adipisci consectetur est.\nLaudantium quasi possimus ut dicta nulla.\nExplicabo mollitia amet maxime in.\nEos commodi ea voluptatibus consequatur enim dolorum culpa occaecati.\nCorrupti nisi adipisci nulla necessitatibus quidem dolores animi at hic.", + "pastOrPresentOrders": "Ipsam iusto vitae minima nostrum veritatis libero maxime nostrum modi.\nEos vitae ratione dolore vero quae.", "commercialAndIndustrialPurposes": [ { + "uuid": "738c23c8-2322-4137-afaa-66697a008137", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "uuid": "a06a22c1-77f2-4ce2-8104-9291cc5937bf", "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + } + ] + }, + { + "uuid": "9cb81a9c-b8ca-47f4-a18d-5f384c98a4a6", + "siteRegistry": false, + "dateReceived": "2020-10-13", + "dateCompleted": "2019-09-11", + "dateEntered": "2020-08-31", + "dateRegistrar": "2016-07-23", + "dateLocalAuthorityReceived": "2016-06-03", + "summary": "Minus repudiandae enim.\nConsequatur praesentium odit porro repudiandae aliquid illum.\nAssumenda accusantium quas eligendi recusandae.", + "informationUsed": "Doloribus aliquid vero quod sed.\nOmnis ducimus voluptates.\nMagnam minima quasi autem aliquid quidem maiores officia natus quidem.", + "pastOrPresentOrders": "Est ut tempora officiis.", + "commercialAndIndustrialPurposes": [ + { + "uuid": "5a0fd36a-7d3a-413c-b14d-cd99620a23ec", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, { + "uuid": "14d1aa2a-f539-44ad-9193-46a5040be830", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true + "siteRegistry": false } ] } ], "activityLog": [ { - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "NIENOW BETTY", - "timestamp": "2019-11-08" - }, - { + "uuid": "6466ce41-e8c3-41fd-b1b5-436a67a6a39f", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "CRONA GREEN", - "timestamp": "2014-03-27" + "user": "BAHRINGER RON", + "timestamp": "2020-04-10" }, { - "siteRegistry": false, + "uuid": "4cbfbc2a-33a8-4a0b-a042-98a4edb64091", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "WIZA ILIANA", - "timestamp": "2016-05-02" + "user": "JOHNSTON MARGARETT", + "timestamp": "2018-04-14" }, { + "uuid": "d92d74f9-3f9e-4d03-9554-bf1236cbde17", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "ZEMLAK JAYSON", - "timestamp": "2014-07-11" + "user": "SCHROEDER ABDIEL", + "timestamp": "2014-03-24" }, { - "siteRegistry": false, + "uuid": "2370c6fd-f16f-4979-b8f5-b4b710b91be4", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "HAUCK TERESA", - "timestamp": "2017-08-11" + "user": "SAUER DOMINIQUE", + "timestamp": "2014-07-02" }, { + "uuid": "e0b71888-be64-48dd-8f09-6ae27c5cabaa", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "HOEGER CHANCE", - "timestamp": "2017-12-29" + "user": "STARK CULLEN", + "timestamp": "2016-03-13" }, { + "uuid": "b215ebdf-59f8-43c2-9ca7-e075ff6016d9", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "RUTHERFORD MARIAN", - "timestamp": "2022-01-12" + "user": "NIENOW RICHMOND", + "timestamp": "2017-05-14" }, { + "uuid": "60826765-e4e1-4737-b176-79373b888dd3", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "CHAMPLIN PASCALE", - "timestamp": "2013-10-14" + "user": "WEISSNAT ROSENDO", + "timestamp": "2019-06-02" }, { + "uuid": "7b49cbb2-f4d1-49f1-92ac-a3bbcaf24a44", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "PRICE KAYDEN", - "timestamp": "2015-06-25" + "user": "LEHNER NORMA", + "timestamp": "2022-05-17" }, { + "uuid": "d8a9f54e-b038-48d8-9710-f959cb594a41", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "JASKOLSKI THERESE", - "timestamp": "2020-05-07" + "user": "MCKENZIE ROMAN", + "timestamp": "2016-12-28" } ], "associatedSites": [ { - "dateNoted": "2015-01-25", + "uuid": "a5b9b027-baff-468d-876a-97356837d4ca", + "dateNoted": "2020-01-16", "notes": "", - "parcelID": "16784", - "siteID": "16933", + "parcelID": "19026", + "siteID": "15209", "siteRegistry": false }, { - "dateNoted": "2021-11-20", + "uuid": "35d30731-9673-428d-b852-9832f70f8207", + "dateNoted": "2023-02-05", "notes": "", - "parcelID": "17200", - "siteID": "18478", + "parcelID": "15940", + "siteID": "17170", "siteRegistry": true + }, + { + "uuid": "fe1dbb19-535b-4274-90d7-a61b7a7aedc6", + "dateNoted": "2015-11-18", + "notes": "", + "parcelID": "20388", + "siteID": "16323", + "siteRegistry": false } ] }, { - "uuid": "badd3c7d-ec07-4b68-8b39-bfb14f1041ba", - "siteID": 20787, - "address": "78142 Kuvalis Greens", - "latitude": 49.6525, - "longitude": -126.7615, - "lastUpdated": "2019-09-10", - "city": "Greenholtmouth", - "region": "Cariboo", - "victoriaFile": "26250-20/16005", + "uuid": "100eddeb-6e44-4c11-be44-579bbbb3908b", + "siteID": 15575, + "address": "798 Padberg Point", + "latitude": 58.0521, + "longitude": -119.0479, + "lastUpdated": "2014-07-16", + "city": "Fort Sigrid", + "region": " North Coast", + "victoriaFile": "26250-20/9763", "regionalFile": "N/A", "parcelIDs": [ - 5096182, - 8289555, - 6349312, - 1036068, - 7223518 + 1942946, + 7251450, + 9794132, + 643877, + 9804194 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2017-02-08", - "completed": "2019-07-13", - "initiated": "2017-10-04", - "ministryContact": "GRAHAM GUIDO", + "uuid": "91d66b23-2bb3-4615-bc5e-2bfde7f8ace4", + "createdAt": "2023-09-28", + "completed": "2021-05-23", + "initiated": "2014-04-12", + "ministryContact": "KASSULKE DANIAL", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -58567,38 +67879,32 @@ ], "notationParticipants": [ { + "uuid": "68c71d6b-e385-4fd5-ad3d-9a8be17f5eaf", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true }, { + "uuid": "ded84e28-2648-4886-8122-3b8f0710670a", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { + "uuid": "5a33406b-c9a4-47de-976a-b11caed83b8d", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true + "role": "REQUESTED BY", + "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2017-08-25", - "completed": "2019-02-10", - "initiated": "2015-07-02", - "ministryContact": "HEGMANN STEPHANY", + "uuid": "8b3052ff-6a70-44f3-8ee9-07f558c863b6", + "createdAt": "2023-01-30", + "completed": "2022-07-30", + "initiated": "2020-09-23", + "ministryContact": "WALTER KELLY", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -58607,28 +67913,38 @@ ], "notationParticipants": [ { + "uuid": "51383a9f-83dc-4359-a747-63712f101c6f", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "346b4462-680c-4594-aac9-854de9eb0c07", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", + "uuid": "2a1e4644-ef1b-4a9a-8ce7-340369cb000a", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true + }, + { + "uuid": "61b974c3-040e-46f1-b071-e6f64d58590f", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2015-12-30", - "completed": "2013-12-12", - "initiated": "2021-12-01", - "ministryContact": "QUIGLEY ALFORD", + "uuid": "24c06e36-6f8e-4a0b-aeb1-3e61c94b35a1", + "createdAt": "2023-10-07", + "completed": "2014-12-16", + "initiated": "2015-04-23", + "ministryContact": "KUTCH ISAC", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -58637,39 +67953,39 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false + "uuid": "e6efe835-030e-4e9c-9dcb-2405dfd723ff", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true }, { + "uuid": "b7b8189a-e11d-4f19-ba10-b70e383dbc4c", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true }, { + "uuid": "af5f5b65-a029-4149-b607-16a18fab156d", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false + }, + { + "uuid": "1f55c8a4-28b2-4814-95de-2b4386cc8887", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true } ], "participants": [ { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2020-11-14", - "startDate": "2014-02-05", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": true - }, - { - "name": "IPSUM", - "endDate": "2022-03-27", - "startDate": "2021-01-16", + "uuid": "3c9d9996-ddef-48d5-b48c-b538f3e58ed3", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2016-03-04", + "startDate": "2015-03-18", "notes": "", "roles": [ "ORGANIZATION" @@ -58677,119 +67993,86 @@ "siteRegistry": true }, { + "uuid": "e02d0a54-4161-4e88-98e2-1e1af2ecfb54", "name": "IPSUM", - "endDate": "2021-10-16", - "startDate": "2018-08-27", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": false - }, - { - "name": "IPSUM", - "endDate": "2021-11-05", - "startDate": "2019-11-18", + "endDate": "2015-06-09", + "startDate": "2015-09-27", "notes": "", "roles": [ "ORGANIZATION" ], "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2016-04-01", - "startDate": "2022-11-09", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": false } ], "suspectLandUses": [ { + "uuid": "a4e1ae9d-b282-4b43-9304-b4145f05beff", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-06-11 (described on Site Profile dated 2019-06-11)", + "notes": "INSERTED FOR SITE PROFILE DATED 2022-03-27 (described on Site Profile dated 2022-03-27)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-07-22 (described on Site Profile dated 2016-07-22)", + "uuid": "b96fa7cd-b059-4821-8543-ead6f2d56bf2", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2021-02-11 (described on Site Profile dated 2021-02-11)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { + "uuid": "cd048860-a274-468a-81cf-23887d2eb846", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2020-08-07 (described on Site Profile dated 2020-08-07)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "uuid": "e0490eb3-f046-4a0a-921a-da45726fb8ed", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2020-07-23 (described on Site Profile dated 2020-07-23)", + "notes": "INSERTED FOR SITE PROFILE DATED 2023-05-29 (described on Site Profile dated 2023-05-29)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], "parcelDescriptions": [ { + "uuid": "861002cd-9d3d-41d2-a9ed-fd79343177a2", "siteRegistry": true, - "dateNoted": "2014-03-06", - "parcelID": "16288", - "crownLandUsePIN": "18498", - "crownLandFileNumber": "17565", - "landDescription": "LOT 5 OF LOT 3 BLOCK 5 DISTRICT LOT 4 PLAN 4903" + "dateNoted": "2015-03-11", + "parcelID": "17437", + "crownLandUsePIN": "19283", + "crownLandFileNumber": "19837", + "landDescription": "LOT 1 OF LOT 1 BLOCK 1 DISTRICT LOT 5 PLAN 4013" }, { - "siteRegistry": true, - "dateNoted": "2021-02-09", - "parcelID": "15971", - "crownLandUsePIN": "19649", - "crownLandFileNumber": "19473", - "landDescription": "LOT 2 OF LOT 5 BLOCK 1 DISTRICT LOT 3 PLAN 5875" + "uuid": "1a129794-1197-457d-908a-2d111ff9de9d", + "siteRegistry": false, + "dateNoted": "2021-06-19", + "parcelID": "20704", + "crownLandUsePIN": "20319", + "crownLandFileNumber": "19551", + "landDescription": "LOT 1 OF LOT 4 BLOCK 1 DISTRICT LOT 2 PLAN 4640" } ], "siteDisclosures": [ { + "uuid": "7564313d-d1d0-4ef2-97e2-af5c02f75f39", "siteRegistry": false, - "dateReceived": "2014-09-17", - "dateCompleted": "2014-09-27", - "dateEntered": "2023-01-04", - "dateRegistrar": "2019-09-26", - "dateLocalAuthorityReceived": "2017-09-11", - "summary": "Eius amet dolore adipisci facere placeat.\nPorro ea quis nulla expedita est.", - "informationUsed": "Accusantium dignissimos doloribus similique possimus vitae rem blanditiis nostrum.\nMinus ex dolorum dolorem placeat.\nExpedita quo sequi ab mollitia earum adipisci temporibus cumque fuga.", - "pastOrPresentOrders": "Architecto odio nihil necessitatibus.\nBeatae iure nostrum.", + "dateReceived": "2019-12-25", + "dateCompleted": "2021-03-17", + "dateEntered": "2022-02-25", + "dateRegistrar": "2018-05-16", + "dateLocalAuthorityReceived": "2014-08-29", + "summary": "Veniam magnam excepturi quam.", + "informationUsed": "Illum quisquam aliquam officiis magni commodi nesciunt.\nVoluptates aperiam sapiente architecto reprehenderit eum.\nQuae tempora officiis.\nVoluptatibus libero distinctio illum eligendi quis necessitatibus saepe quaerat saepe.\nOmnis pariatur eum eveniet doloribus rem.", + "pastOrPresentOrders": "Ad facilis suscipit vel.\nItaque adipisci tempore facere veritatis tenetur occaecati.\nSuscipit occaecati necessitatibus repellat quasi.", "commercialAndIndustrialPurposes": [ { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true - }, - { + "uuid": "e20b7f00-e005-4488-a2fc-a1ec7b9c3571", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false - }, - { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true - } - ] - }, - { - "siteRegistry": true, - "dateReceived": "2018-04-06", - "dateCompleted": "2017-02-20", - "dateEntered": "2022-10-27", - "dateRegistrar": "2016-11-19", - "dateLocalAuthorityReceived": "2022-06-22", - "summary": "Iusto distinctio cum rem fugit deleniti praesentium.\nConsectetur occaecati tempore dolore.\nIpsam ipsam beatae veniam soluta voluptatem ab.", - "informationUsed": "Praesentium quia tenetur dignissimos ad autem.\nQuam deleniti suscipit.\nDoloribus repellat veritatis reiciendis libero id voluptatum dolor sit repudiandae.", - "pastOrPresentOrders": "Magni repellendus fugiat doloribus et id.", - "commercialAndIndustrialPurposes": [ - { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { + "uuid": "cf38fb43-9cfd-4cde-aeaf-e1b3c2845a43", "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false } ] @@ -58797,85 +68080,114 @@ ], "activityLog": [ { - "siteRegistry": true, + "uuid": "504f9d04-e0a3-41a3-a133-cd481371b16d", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "GULGOWSKI LUTHER", - "timestamp": "2015-11-20" + "user": "BOTSFORD BRADLEY", + "timestamp": "2020-08-15" }, { + "uuid": "c0455172-eacc-4fa6-ae83-77296aea74d4", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "ANKUNDING MOSE", - "timestamp": "2016-08-22" + "user": "HESSEL HATTIE", + "timestamp": "2021-05-08" }, { + "uuid": "8751ccae-0ff6-499c-8efe-c47e95da6c7e", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "ROBEL KESHAWN", - "timestamp": "2014-10-06" + "user": "TILLMAN SYDNI", + "timestamp": "2021-08-15" }, { + "uuid": "9c180642-c907-4248-98e5-d2a326d9c911", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "DURGAN JANAE", - "timestamp": "2014-05-15" + "user": "MURRAY SHANNON", + "timestamp": "2021-06-24" + }, + { + "uuid": "1f68b7fb-0ac7-4775-97a0-581bb07f86ab", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "GREENHOLT KENYATTA", + "timestamp": "2016-09-02" + }, + { + "uuid": "61f84fb6-dce2-4b02-9f8a-80879c4d6d90", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "WYMAN SABINA", + "timestamp": "2022-12-24" }, { + "uuid": "ddd2b6a9-19ca-4615-bef0-54f9ff937d3d", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "WEHNER LOIS", - "timestamp": "2018-06-19" + "user": "SCHOWALTER CAROLE", + "timestamp": "2019-06-10" + }, + { + "uuid": "eb6f9c62-ed0a-4064-a047-179b29338bb1", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "KREIGER GUSTAVE", + "timestamp": "2020-08-27" + }, + { + "uuid": "be21fa28-87cf-499e-8aad-52953f029b40", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "GOODWIN ADITYA", + "timestamp": "2023-02-14" } ], "associatedSites": [ { - "dateNoted": "2022-09-20", - "notes": "", - "parcelID": "17939", - "siteID": "17606", - "siteRegistry": true - }, - { - "dateNoted": "2016-05-22", + "uuid": "830cb59e-3125-4e0b-809a-929e6c0f774f", + "dateNoted": "2018-01-09", "notes": "", - "parcelID": "18621", - "siteID": "17362", + "parcelID": "16651", + "siteID": "16026", "siteRegistry": true }, { - "dateNoted": "2023-03-12", + "uuid": "c31113c2-87f8-45ec-b41a-106eeb444cee", + "dateNoted": "2015-09-22", "notes": "", - "parcelID": "15628", - "siteID": "20992", + "parcelID": "15967", + "siteID": "20683", "siteRegistry": true } ] }, { - "uuid": "8edde948-92f2-4982-94f6-f93d35e93c6a", - "siteID": 18040, - "address": "623 Haag Highway", - "latitude": 51.8755, - "longitude": -124.9462, - "lastUpdated": "2020-08-14", - "city": "Normaland", + "uuid": "d55afd52-f6d9-4d31-a2b2-04d3eaa82937", + "siteID": 18724, + "address": "87873 Leannon Port", + "latitude": 51.6, + "longitude": -128.9697, + "lastUpdated": "2022-10-27", + "city": "Lake Gregorio", "region": "Mainland/Southwest", - "victoriaFile": "26250-20/8921", + "victoriaFile": "26250-20/12515", "regionalFile": "N/A", "parcelIDs": [ - 3306504, - 2519988, - 8376366, - 7667881, - 9386080 + 3846442, + 2321065, + 3428284, + 293176, + 7311940 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2022-06-21", - "completed": "2022-05-26", - "initiated": "2021-07-18", - "ministryContact": "KIEHN ALBERTHA", + "uuid": "5a5275d6-21b0-4a5c-8cfe-caad84fe76b3", + "createdAt": "2019-02-06", + "completed": "2023-06-19", + "initiated": "2019-10-09", + "ministryContact": "TILLMAN HORACE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -58884,28 +68196,26 @@ ], "notationParticipants": [ { + "uuid": "fecfb827-f706-42e0-b46b-6ff1a7f98cd7", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false + "uuid": "6237a585-6ae1-4ee8-9f3c-99e0c73a128e", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2022-07-21", - "completed": "2022-08-06", - "initiated": "2017-11-29", - "ministryContact": "STIEDEMANN SYLVIA", + "uuid": "53dc8d65-1219-4dca-865d-830c580d96ce", + "createdAt": "2020-01-25", + "completed": "2015-11-21", + "initiated": "2018-03-13", + "ministryContact": "ERDMAN LUTHER", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -58914,38 +68224,32 @@ ], "notationParticipants": [ { + "uuid": "2a2fc6fd-a295-428f-baea-792c77e8f474", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false }, { + "uuid": "db84fb08-632c-42ae-afd3-55d732e0b9f2", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true }, { + "uuid": "c0ad4b51-7b2c-46ee-864e-e522f13c29dd", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true + "role": "SUBMITTED BY", + "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2020-09-19", - "completed": "2014-08-10", - "initiated": "2019-06-18", - "ministryContact": "SCHMIDT ASTRID", + "uuid": "6eaa3f53-a288-4812-9a78-0a15d7ac18e8", + "createdAt": "2022-09-22", + "completed": "2014-03-23", + "initiated": "2022-09-18", + "ministryContact": "DONNELLY ETHYL", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -58954,38 +68258,32 @@ ], "notationParticipants": [ { + "uuid": "8be8e3e3-e5e5-4659-9255-e6dfedad386a", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { + "uuid": "15e2be60-8852-4209-91d7-4e8530fadeb2", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false }, { + "uuid": "61f14ffb-f55d-4c80-8000-9eabd2838c87", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true } ], "siteRegistry": false }, { - "createdAt": "2019-05-16", - "completed": "2023-03-17", - "initiated": "2020-08-29", - "ministryContact": "SCHILLER KRAIG", + "uuid": "f1e267e5-bfbf-4b70-bb34-16279eead6b8", + "createdAt": "2022-01-08", + "completed": "2017-11-22", + "initiated": "2016-09-11", + "ministryContact": "KOSS GEORGIANA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -58994,28 +68292,44 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "uuid": "533ed8f4-ed95-484c-9ee8-33554ced9c29", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", "siteRegistry": true }, { + "uuid": "e5e7eb1e-7df9-48d8-9023-3ff36e8b0a1f", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", + "uuid": "69411819-3b97-406e-a69b-1569fdb1c131", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "e8140dd6-b8d3-4275-b386-b05525af1f26", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "uuid": "92bbdb80-fe6f-414b-b2d3-ae1632503729", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2022-06-26", - "completed": "2022-04-28", - "initiated": "2015-08-12", - "ministryContact": "WISOKY LAVERNE", + "uuid": "4a1569a2-1df4-45fb-9f02-265bf3cd0506", + "createdAt": "2021-03-24", + "completed": "2015-02-19", + "initiated": "2018-07-26", + "ministryContact": "GULGOWSKI MASON", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -59024,19 +68338,16 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { + "uuid": "0c060935-cf6e-4264-ab60-16b605ca06e2", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false + "role": "SUBMITTED BY", + "siteRegistry": true }, { + "uuid": "625ce87c-1416-4144-8a0c-e5034ec36a7a", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false + "role": "SUBMITTED BY", + "siteRegistry": true } ], "siteRegistry": false @@ -59044,19 +68355,54 @@ ], "participants": [ { + "uuid": "efeaef09-af2f-4025-b9b8-7b25be34be4f", "name": "IPSUM", - "endDate": "2015-03-10", - "startDate": "2014-01-17", + "endDate": "2023-01-09", + "startDate": "2014-04-21", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": false + "siteRegistry": true }, { + "uuid": "29d3a7a4-9608-4804-b2cf-8d16874f5b9d", "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2023-03-04", - "startDate": "2016-03-16", + "endDate": "2021-10-13", + "startDate": "2016-12-09", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "uuid": "d8f59c57-7cfd-4862-9ef0-6411a5898faf", + "name": "IPSUM", + "endDate": "2022-04-04", + "startDate": "2022-07-08", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "uuid": "3d88dac6-2cdb-4c61-b95c-587c1420ad78", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2017-04-04", + "startDate": "2014-06-30", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "uuid": "dcbf82fc-77ac-40a1-922f-357e772e3e4d", + "name": "IPSUM", + "endDate": "2017-12-04", + "startDate": "2015-12-24", "notes": "", "roles": [ "ORGANIZATION" @@ -59066,90 +68412,117 @@ ], "suspectLandUses": [ { + "uuid": "948d5275-66b3-48e3-9bc1-a67f202e902e", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-02-17 (described on Site Profile dated 2015-02-17)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" - }, - { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-09-12 (described on Site Profile dated 2021-09-12)", + "notes": "INSERTED FOR SITE PROFILE DATED 2018-09-16 (described on Site Profile dated 2018-09-16)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-02-20 (described on Site Profile dated 2017-02-20)", + "uuid": "72ec93d1-ba51-4e43-a036-607004d05e42", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2023-07-26 (described on Site Profile dated 2023-07-26)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { + "uuid": "a8669c55-30c5-44a6-8b4f-33e5b0a5fdfd", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-09-06 (described on Site Profile dated 2019-09-06)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" - }, - { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-08-20 (described on Site Profile dated 2014-08-20)", + "notes": "INSERTED FOR SITE PROFILE DATED 2021-11-30 (described on Site Profile dated 2021-11-30)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], "parcelDescriptions": [ { + "uuid": "5388a7ef-1b19-41e8-b524-40ac85aa6689", "siteRegistry": false, - "dateNoted": "2018-06-27", - "parcelID": "19983", - "crownLandUsePIN": "18507", - "crownLandFileNumber": "16885", - "landDescription": "LOT 3 OF LOT 5 BLOCK 5 DISTRICT LOT 2 PLAN 6629" + "dateNoted": "2016-04-20", + "parcelID": "17679", + "crownLandUsePIN": "16140", + "crownLandFileNumber": "20052", + "landDescription": "LOT 4 OF LOT 2 BLOCK 5 DISTRICT LOT 2 PLAN 8614" }, { + "uuid": "bb0653e8-b975-40f4-8415-a2c9170b39f2", "siteRegistry": true, - "dateNoted": "2014-10-13", - "parcelID": "17191", - "crownLandUsePIN": "19449", - "crownLandFileNumber": "15820", - "landDescription": "LOT 5 OF LOT 3 BLOCK 2 DISTRICT LOT 3 PLAN 8654" + "dateNoted": "2013-12-20", + "parcelID": "15851", + "crownLandUsePIN": "20878", + "crownLandFileNumber": "15449", + "landDescription": "LOT 3 OF LOT 4 BLOCK 4 DISTRICT LOT 4 PLAN 4072" }, { - "siteRegistry": true, - "dateNoted": "2015-03-06", - "parcelID": "18884", - "crownLandUsePIN": "20161", - "crownLandFileNumber": "16201", - "landDescription": "LOT 1 OF LOT 4 BLOCK 4 DISTRICT LOT 1 PLAN 5462" + "uuid": "00cd3020-e313-4021-8787-96ac17aa8e76", + "siteRegistry": false, + "dateNoted": "2013-11-28", + "parcelID": "17146", + "crownLandUsePIN": "15225", + "crownLandFileNumber": "19275", + "landDescription": "LOT 4 OF LOT 2 BLOCK 2 DISTRICT LOT 4 PLAN 7038" }, { + "uuid": "14dc9645-71dd-464a-a977-b7263d86c529", "siteRegistry": false, - "dateNoted": "2021-04-22", - "parcelID": "20703", - "crownLandUsePIN": "19817", - "crownLandFileNumber": "16181", - "landDescription": "LOT 3 OF LOT 3 BLOCK 3 DISTRICT LOT 5 PLAN 6547" + "dateNoted": "2019-03-06", + "parcelID": "19950", + "crownLandUsePIN": "18795", + "crownLandFileNumber": "18454", + "landDescription": "LOT 5 OF LOT 3 BLOCK 1 DISTRICT LOT 5 PLAN 6570" } ], "siteDisclosures": [ { + "uuid": "5bb121fa-c6fb-4a82-897e-2e807bd34e77", "siteRegistry": true, - "dateReceived": "2023-01-17", - "dateCompleted": "2019-03-10", - "dateEntered": "2014-11-19", - "dateRegistrar": "2020-07-19", - "dateLocalAuthorityReceived": "2016-04-21", - "summary": "Quasi ratione perferendis nisi ipsum nam.\nQuidem sed laudantium quia repellat repudiandae nemo vel tempora magni.\nBlanditiis exercitationem hic laboriosam eum vitae beatae perspiciatis temporibus itaque.", - "informationUsed": "Odio magnam in molestias possimus aut quae iste minima.\nCumque amet in cupiditate atque velit corrupti magnam debitis.\nOdio pariatur dignissimos.", - "pastOrPresentOrders": "Illo quam dolorem.", + "dateReceived": "2020-07-31", + "dateCompleted": "2022-04-26", + "dateEntered": "2019-07-31", + "dateRegistrar": "2017-01-11", + "dateLocalAuthorityReceived": "2021-01-02", + "summary": "Hic minus tenetur.\nDolore dolore dicta assumenda consequuntur delectus odio.\nIure optio harum dolores accusantium.", + "informationUsed": "Similique rem aspernatur voluptates porro iure omnis tempora itaque.\nDolor voluptatem odio beatae unde libero enim.\nExercitationem iure sint.", + "pastOrPresentOrders": "Blanditiis inventore autem.", "commercialAndIndustrialPurposes": [ { - "scheduleReference": "F1*", + "uuid": "4ce66cdf-b42d-4fb6-b224-e733c6807181", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false + "siteRegistry": true }, { + "uuid": "76f039f7-279d-4473-a296-e06f032f2e6b", "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "uuid": "279fc8b1-349c-4ef8-9da5-72282bb27bd1", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true - }, + } + ] + }, + { + "uuid": "ea55f897-d7da-4b0e-a96e-25fe3f00b758", + "siteRegistry": true, + "dateReceived": "2022-04-30", + "dateCompleted": "2022-08-15", + "dateEntered": "2016-06-28", + "dateRegistrar": "2015-08-11", + "dateLocalAuthorityReceived": "2021-10-12", + "summary": "Rerum aliquid possimus enim.", + "informationUsed": "Consequuntur sequi quod.\nTempore nobis ullam ipsa nemo in ut voluptatibus inventore facilis.\nDolorum excepturi sapiente suscipit culpa rerum maxime dignissimos.\nAccusamus quibusdam ipsum dolores.\nAperiam atque architecto autem alias.", + "pastOrPresentOrders": "Impedit blanditiis adipisci.", + "commercialAndIndustrialPurposes": [ { + "uuid": "49481b66-633a-494d-b0f3-609f21195fd7", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "uuid": "c7215661-0141-464a-9631-26ab93f88cc6", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false } ] @@ -59157,137 +68530,113 @@ ], "activityLog": [ { - "siteRegistry": true, + "uuid": "e14cb653-fad2-472e-9996-2fd4444b6c6f", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "HERZOG PROVIDENCI", - "timestamp": "2021-03-21" + "user": "HAYES GILBERTO", + "timestamp": "2021-08-10" }, { + "uuid": "77730e09-cb12-40ea-bcd0-9417be09d01f", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "YOST CORA", - "timestamp": "2018-11-02" + "user": "KOSS LANDEN", + "timestamp": "2017-11-20" }, { - "siteRegistry": true, + "uuid": "55d66f4c-8227-424a-af70-7b67e26fd4ec", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "TREMBLAY AURELIA", - "timestamp": "2017-07-21" + "user": "REICHEL MOSSIE", + "timestamp": "2019-08-07" }, { + "uuid": "308b9a42-e6d8-4184-b083-1ab1a49f2045", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "BARROWS SCOT", - "timestamp": "2013-11-28" + "user": "WISOKY GLENNA", + "timestamp": "2020-05-05" }, { + "uuid": "ebe3ff69-6fc4-4b7a-b8df-77a21d216fad", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "BOGISICH TARYN", - "timestamp": "2017-07-30" + "user": "GRANT DIXIE", + "timestamp": "2018-12-19" + }, + { + "uuid": "cb553b2d-e2ed-4bbf-b2bd-332ec985dbf2", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "LIND NILS", + "timestamp": "2019-02-08" + }, + { + "uuid": "95adef67-b8dc-4cca-9788-5f187a24e7c9", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "PREDOVIC KARLEY", + "timestamp": "2023-03-04" + }, + { + "uuid": "1194303b-f914-4bfa-af80-cf201eae35cd", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "BARTON JANELLE", + "timestamp": "2019-08-08" }, { + "uuid": "055988f7-ac45-48a9-8cfe-c071b2735a11", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "EFFERTZ NED", - "timestamp": "2021-07-03" + "user": "RUSSEL BENNIE", + "timestamp": "2022-04-24" + }, + { + "uuid": "6b72a523-96b0-4e8b-9ca3-68aafbe4ea6f", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "ORN NORBERTO", + "timestamp": "2018-06-25" } ], "associatedSites": [ { - "dateNoted": "2016-11-28", + "uuid": "d297d60d-1251-4fd7-8e82-53b3e022bfdc", + "dateNoted": "2021-10-17", "notes": "", - "parcelID": "17105", - "siteID": "16602", - "siteRegistry": true + "parcelID": "17304", + "siteID": "17362", + "siteRegistry": false } ] }, { - "uuid": "d11fb8d5-937d-4557-a4d8-af66547274b8", - "siteID": 17847, - "address": "3265 Hermann Streets", - "latitude": 48.7077, - "longitude": -133.1017, - "lastUpdated": "2014-06-02", - "city": "Caspercester", - "region": "Vancouver Island/Coast", - "victoriaFile": "26250-20/11484", + "uuid": "0cf49f39-42fc-414d-9811-13b6e0a67226", + "siteID": 18294, + "address": "3618 Craig Forges", + "latitude": 56.8755, + "longitude": -130.3743, + "lastUpdated": "2018-12-26", + "city": "New Everetteboro", + "region": "Kootenay", + "victoriaFile": "26250-20/5402", "regionalFile": "N/A", "parcelIDs": [ - 8038928, - 1006136, - 2550426, - 6370880, - 1784447 + 5772008, + 4379054, + 704236, + 1549703, + 5285725 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2016-10-02", - "completed": "2018-07-02", - "initiated": "2016-08-16", - "ministryContact": "NITZSCHE JERROD", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - } - ], - "siteRegistry": true - }, - { - "createdAt": "2015-11-01", - "completed": "2020-03-26", - "initiated": "2018-07-06", - "ministryContact": "FRIESEN SYDNEY", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - } - ], - "siteRegistry": false - }, + "notations": [ { - "createdAt": "2022-03-03", - "completed": "2020-11-11", - "initiated": "2017-12-09", - "ministryContact": "MCGLYNN EDWIN", + "uuid": "b53e336c-29de-4927-a997-0e72b6e1c10e", + "createdAt": "2016-09-09", + "completed": "2022-11-17", + "initiated": "2015-06-23", + "ministryContact": "WEIMANN MYLENE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -59296,23 +68645,26 @@ ], "notationParticipants": [ { + "uuid": "41d2b660-1549-400d-ad53-9eab0a66ec01", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false + "uuid": "06bb9a90-b97d-42ab-bcf6-d77f1ded8d12", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true } ], "siteRegistry": true }, { - "createdAt": "2021-11-18", - "completed": "2021-06-29", - "initiated": "2015-10-14", - "ministryContact": "TURNER ARON", + "uuid": "19a3fcd9-ad71-4c46-aa36-78d30ebac705", + "createdAt": "2015-08-21", + "completed": "2020-08-14", + "initiated": "2022-12-30", + "ministryContact": "FLATLEY HAZLE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -59321,36 +68673,31 @@ ], "notationParticipants": [ { + "uuid": "b926035d-2768-4299-8d87-985b63d45477", "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "4ccd5d4f-067b-4c68-bfaf-0640b10aba59", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "615c0dfd-84ea-44ed-bf92-6830e59275ee", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true - } - ], - "siteRegistry": false - }, - { - "createdAt": "2014-11-09", - "completed": "2021-05-04", - "initiated": "2015-05-01", - "ministryContact": "WIEGAND JANIE", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ + }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false + "uuid": "54a7a742-8c89-45b0-b512-073edb50b557", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true }, { + "uuid": "875aeac4-5c67-491f-a3d7-1240b9c7ef39", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false @@ -59361,29 +68708,32 @@ ], "participants": [ { + "uuid": "9c51466e-af75-47ab-8e4c-4ec7b11b0b2a", "name": "SHELL CANADA PRODUCTS", - "endDate": "2022-04-25", - "startDate": "2014-03-10", + "endDate": "2022-06-17", + "startDate": "2017-05-26", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2018-06-23", - "startDate": "2018-11-18", + "uuid": "1fc43875-c525-4f2e-9b75-2eef290dc724", + "name": "AMET, DOLOR SIT", + "endDate": "2017-03-16", + "startDate": "2015-11-16", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2021-10-23", - "startDate": "2018-02-18", + "uuid": "00235d8b-fc56-4a84-8f42-e7ffaca436a1", + "name": "AMET, DOLOR SIT", + "endDate": "2023-04-24", + "startDate": "2017-03-03", "notes": "", "roles": [ "EMPLOYEE" @@ -59393,62 +68743,86 @@ ], "suspectLandUses": [ { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-10-23 (described on Site Profile dated 2014-10-23)", + "uuid": "9d6f6db7-636f-4ba4-b013-7a2619627a11", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2016-04-08 (described on Site Profile dated 2016-04-08)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { + "uuid": "846f0e11-27b2-4643-9297-1617f2c29132", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-11-15 (described on Site Profile dated 2021-11-15)", + "notes": "INSERTED FOR SITE PROFILE DATED 2018-02-09 (described on Site Profile dated 2018-02-09)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "uuid": "1a2a1662-9055-483b-b3d2-12872e714321", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2021-09-27 (described on Site Profile dated 2021-09-27)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { + "uuid": "0d7a70ed-4385-4011-9af4-1c534e6086db", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-04-01 (described on Site Profile dated 2022-04-01)", + "notes": "INSERTED FOR SITE PROFILE DATED 2023-03-08 (described on Site Profile dated 2023-03-08)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], "parcelDescriptions": [ { + "uuid": "a51bdcf1-8444-49c5-bd4a-c44071a8515d", + "siteRegistry": false, + "dateNoted": "2022-12-29", + "parcelID": "17875", + "crownLandUsePIN": "15340", + "crownLandFileNumber": "18336", + "landDescription": "LOT 4 OF LOT 1 BLOCK 3 DISTRICT LOT 3 PLAN 3776" + }, + { + "uuid": "32e5c49d-9a45-4006-9543-e4946b852b95", "siteRegistry": true, - "dateNoted": "2015-09-07", - "parcelID": "19637", - "crownLandUsePIN": "17211", - "crownLandFileNumber": "20453", - "landDescription": "LOT 2 OF LOT 2 BLOCK 3 DISTRICT LOT 2 PLAN 7438" + "dateNoted": "2018-08-07", + "parcelID": "17317", + "crownLandUsePIN": "18177", + "crownLandFileNumber": "20975", + "landDescription": "LOT 1 OF LOT 3 BLOCK 2 DISTRICT LOT 4 PLAN 5301" }, { - "siteRegistry": false, - "dateNoted": "2020-06-30", - "parcelID": "16759", - "crownLandUsePIN": "20164", - "crownLandFileNumber": "19592", - "landDescription": "LOT 2 OF LOT 2 BLOCK 4 DISTRICT LOT 3 PLAN 8359" + "uuid": "304d3263-f669-4145-9072-01372e25f000", + "siteRegistry": true, + "dateNoted": "2019-12-16", + "parcelID": "19045", + "crownLandUsePIN": "19142", + "crownLandFileNumber": "20561", + "landDescription": "LOT 3 OF LOT 2 BLOCK 5 DISTRICT LOT 1 PLAN 5415" } ], "siteDisclosures": [ { + "uuid": "92d3f2d5-bba6-46a6-8b80-a72f204cd435", "siteRegistry": false, - "dateReceived": "2021-04-02", - "dateCompleted": "2022-08-02", - "dateEntered": "2021-07-28", - "dateRegistrar": "2016-10-29", - "dateLocalAuthorityReceived": "2022-02-01", - "summary": "Blanditiis aliquid blanditiis natus.", - "informationUsed": "Sed quos dolor.\nNobis molestiae laborum rerum ipsam.\nNon nulla nemo debitis recusandae laboriosam nostrum.\nReiciendis porro deleniti ipsa in at deleniti molestias illum tempora.\nEnim vitae maxime possimus corporis totam.", - "pastOrPresentOrders": "In quos odio cum distinctio architecto aliquid consequatur.\nCum eos iusto dolorum minima.", + "dateReceived": "2020-07-05", + "dateCompleted": "2013-10-14", + "dateEntered": "2019-02-05", + "dateRegistrar": "2014-06-01", + "dateLocalAuthorityReceived": "2015-10-25", + "summary": "Magnam provident expedita unde optio provident maiores occaecati.\nDucimus corrupti quibusdam dolores dolorem reiciendis consequuntur molestias.\nMagni facilis optio.", + "informationUsed": "Facere reiciendis consequatur architecto labore praesentium blanditiis.\nDistinctio praesentium sit corrupti quos aliquid ducimus.\nConsequatur vitae unde quia vel explicabo rem.\nTenetur in tempora nam explicabo dolorem doloribus.", + "pastOrPresentOrders": "Illum deserunt fugit a mollitia sit eligendi explicabo.\nAperiam assumenda corporis vel nobis ullam.\nId illo atque assumenda sunt repellendus aspernatur temporibus voluptas.", "commercialAndIndustrialPurposes": [ { - "scheduleReference": "F2*", + "uuid": "7c73f6d4-ad2c-43e8-a959-c261b2a600b8", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true + "siteRegistry": false }, { + "uuid": "85457df1-7a15-44b8-8dc7-9414e2cee48e", "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { + "uuid": "f0e7608a-a96d-426e-b218-398465a23926", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false @@ -59458,95 +68832,94 @@ ], "activityLog": [ { - "siteRegistry": true, + "uuid": "e17ad822-01f8-48a1-9757-cb4bb2c3d310", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "HOPPE ADOLPHUS", - "timestamp": "2022-07-25" + "user": "RITCHIE CAMYLLE", + "timestamp": "2021-09-28" }, { + "uuid": "6aa1a405-8399-4671-b16f-632e8c7a5223", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "QUITZON TROY", - "timestamp": "2022-12-24" - }, - { - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "SCHILLER ROBYN", - "timestamp": "2017-12-19" + "user": "MCKENZIE LACY", + "timestamp": "2014-10-04" }, { + "uuid": "32e9f8f6-5531-40d5-9030-3f9b5d1aa852", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "DARE MYRIAM", - "timestamp": "2017-10-22" + "user": "PROSACCO JULIAN", + "timestamp": "2013-12-10" }, { + "uuid": "424be8d3-15bf-48f3-91b6-31ecdb209c98", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "HERMANN ANDRE", - "timestamp": "2018-03-04" - }, - { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "BAYER PRESTON", - "timestamp": "2015-07-16" - }, - { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "FLATLEY GEORGIANNA", - "timestamp": "2020-10-08" - }, - { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "MILLS ALBINA", - "timestamp": "2018-11-22" + "user": "BAILEY CLAIR", + "timestamp": "2018-04-04" }, { + "uuid": "3f19cea7-3de8-4eef-8fa4-7af2cd90108e", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "LEANNON KARL", - "timestamp": "2020-08-17" + "user": "BAUMBACH MARYAM", + "timestamp": "2017-12-28" } ], "associatedSites": [ { - "dateNoted": "2014-04-11", + "uuid": "fe8d59b9-20dc-46e0-8940-fd49645a3a32", + "dateNoted": "2021-09-30", "notes": "", - "parcelID": "16556", - "siteID": "17607", + "parcelID": "20881", + "siteID": "20024", "siteRegistry": true + }, + { + "uuid": "d55cb2de-8599-4a55-9ee5-19a1cde1edf8", + "dateNoted": "2015-05-11", + "notes": "", + "parcelID": "17805", + "siteID": "16267", + "siteRegistry": false + }, + { + "uuid": "ca03b1bf-2e29-44ef-aade-00c3d8f3df8f", + "dateNoted": "2018-01-08", + "notes": "", + "parcelID": "17868", + "siteID": "17082", + "siteRegistry": false } ] }, { - "uuid": "89419c83-1d1b-43d0-86e2-735917573dc8", - "siteID": 20283, - "address": "65351 Herman Land", - "latitude": 51.9264, - "longitude": -130.6317, - "lastUpdated": "2017-05-10", - "city": "Murlburgh", - "region": "Vancouver Island/Coast", - "victoriaFile": "26250-20/9602", + "uuid": "a1cbd3da-70c1-4681-b2f0-f91942de9dcc", + "siteID": 18182, + "address": "138 Gerlach Forks", + "latitude": 58.7381, + "longitude": -123.5482, + "lastUpdated": "2020-07-12", + "city": "Port Lamont", + "region": " North Coast", + "victoriaFile": "26250-20/8201", "regionalFile": "N/A", "parcelIDs": [ - 9722851, - 6425942, - 5624111, - 4411317, - 8678048 + 4820323, + 9638266, + 218539, + 1975666, + 1830457 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2019-02-06", - "completed": "2016-12-19", - "initiated": "2017-04-23", - "ministryContact": "HOWELL JAYCEE", + "uuid": "5da93c03-33f0-4572-99ba-691b7225f2f2", + "createdAt": "2022-12-11", + "completed": "2016-03-19", + "initiated": "2021-06-05", + "ministryContact": "SCHUSTER WALTER", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -59555,28 +68928,32 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "uuid": "e28b8c67-56f8-4452-9577-b892d816283f", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "uuid": "049f0e2b-c73b-4ef5-b69c-05664191c31e", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", "siteRegistry": false }, { + "uuid": "a1f205f7-5fd9-4648-87aa-3a25901b8206", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2014-08-13", - "completed": "2022-08-18", - "initiated": "2018-06-19", - "ministryContact": "CUMMERATA SASHA", + "uuid": "d24fce43-dbbb-4a84-bb4a-5400ae57cd3e", + "createdAt": "2023-03-26", + "completed": "2020-12-29", + "initiated": "2017-05-04", + "ministryContact": "JONES MARISOL", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -59585,38 +68962,32 @@ ], "notationParticipants": [ { + "uuid": "06a63270-2a21-41b5-9ac9-6e0fa5e4b0a1", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", + "uuid": "808d1a19-387a-4eb5-885e-44b7d9a6f24e", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { + "uuid": "7570a48a-c12b-4fbf-a7a3-007b749f14ae", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false } ], "siteRegistry": true }, { - "createdAt": "2015-10-21", - "completed": "2022-07-28", - "initiated": "2015-05-29", - "ministryContact": "KSHLERIN RAHUL", + "uuid": "9ef0e0d7-0932-4197-a6f2-7d07c9c55fb0", + "createdAt": "2022-12-25", + "completed": "2014-02-04", + "initiated": "2015-04-09", + "ministryContact": "MILLS JAN", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -59625,33 +68996,32 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { + "uuid": "fbfd8cde-3633-43f0-bc5c-46da168d0709", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", + "uuid": "b1cba6e3-fca7-4964-9533-4c4099a8dd11", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", + "uuid": "5165d697-095e-49f8-a630-619048a47cb0", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2016-05-05", - "completed": "2018-09-12", - "initiated": "2017-06-23", - "ministryContact": "O'CONNER KAMILLE", + "uuid": "f1ab7570-b155-4327-826c-bc1ff50e3c8e", + "createdAt": "2020-06-15", + "completed": "2018-03-30", + "initiated": "2015-04-15", + "ministryContact": "MACGYVER KATHRYNE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -59660,33 +69030,38 @@ ], "notationParticipants": [ { + "uuid": "0c58f0ae-dd2d-4beb-b77d-ee53e0a20c4b", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false }, { + "uuid": "145d1d27-080d-4dc5-9be1-dd8eccf24147", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false }, { + "uuid": "4f3efee8-c1f5-481b-baeb-cb07ec81ecad", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "uuid": "cb614fd0-462c-4939-8703-a7ee8a4d1f3c", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2017-12-04", - "completed": "2014-01-13", - "initiated": "2018-05-23", - "ministryContact": "JAST LUISA", + "uuid": "67b4e813-59b2-4665-9b3f-b41e7e48f350", + "createdAt": "2019-11-16", + "completed": "2023-01-15", + "initiated": "2014-08-31", + "ministryContact": "KUHN MONTY", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -59695,44 +69070,27 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { + "uuid": "11381b49-f04a-4bc4-bb47-8d4291251bac", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { + "uuid": "f9766b4a-db85-4679-81dc-50bfca3742ba", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false } ], "participants": [ { + "uuid": "47a8109c-05e5-482d-9577-85ab24b2ee38", "name": "SHELL CANADA PRODUCTS", - "endDate": "2016-11-02", - "startDate": "2018-05-07", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2015-10-23", - "startDate": "2016-08-13", + "endDate": "2016-12-10", + "startDate": "2019-06-22", "notes": "", "roles": [ "EMPLOYEE" @@ -59740,74 +69098,128 @@ "siteRegistry": true }, { + "uuid": "b8bb7a06-5c4c-433d-b1eb-46b31a0ea94c", "name": "AMET, DOLOR SIT", - "endDate": "2020-03-20", - "startDate": "2023-09-17", + "endDate": "2021-03-07", + "startDate": "2014-08-08", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": false + "siteRegistry": true } ], "suspectLandUses": [ { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-07-27 (described on Site Profile dated 2019-07-27)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" - }, - { + "uuid": "d80ecb0e-6d4c-4fb4-a676-31e8211d2152", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-08-22 (described on Site Profile dated 2022-08-22)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" - }, - { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-05-04 (described on Site Profile dated 2016-05-04)", + "notes": "INSERTED FOR SITE PROFILE DATED 2022-06-19 (described on Site Profile dated 2022-06-19)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { + "uuid": "b0518191-b944-46c3-aad6-53a37916aff0", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-10-30 (described on Site Profile dated 2017-10-30)", + "notes": "INSERTED FOR SITE PROFILE DATED 2017-03-31 (described on Site Profile dated 2017-03-31)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], "parcelDescriptions": [ { + "uuid": "8da9cd33-e6b6-49ab-b413-48f90058bbeb", "siteRegistry": false, - "dateNoted": "2016-08-27", - "parcelID": "18339", - "crownLandUsePIN": "19075", - "crownLandFileNumber": "17336", - "landDescription": "LOT 2 OF LOT 3 BLOCK 2 DISTRICT LOT 2 PLAN 9189" + "dateNoted": "2022-10-17", + "parcelID": "18993", + "crownLandUsePIN": "15753", + "crownLandFileNumber": "17615", + "landDescription": "LOT 4 OF LOT 2 BLOCK 3 DISTRICT LOT 2 PLAN 8093" + }, + { + "uuid": "7c2b0c8f-4db1-46d1-b825-b34b249d8f39", + "siteRegistry": true, + "dateNoted": "2021-09-23", + "parcelID": "19530", + "crownLandUsePIN": "20490", + "crownLandFileNumber": "15735", + "landDescription": "LOT 1 OF LOT 4 BLOCK 4 DISTRICT LOT 1 PLAN 8494" }, { + "uuid": "65f37361-29b8-44f1-8823-ae298df36c31", "siteRegistry": false, - "dateNoted": "2016-03-28", - "parcelID": "15935", - "crownLandUsePIN": "19969", - "crownLandFileNumber": "16197", - "landDescription": "LOT 3 OF LOT 2 BLOCK 4 DISTRICT LOT 2 PLAN 3167" + "dateNoted": "2022-12-09", + "parcelID": "15208", + "crownLandUsePIN": "16963", + "crownLandFileNumber": "16244", + "landDescription": "LOT 5 OF LOT 2 BLOCK 1 DISTRICT LOT 1 PLAN 6002" + }, + { + "uuid": "b1646ffc-d7ef-4ba1-ba87-23e5e6129892", + "siteRegistry": true, + "dateNoted": "2018-04-28", + "parcelID": "18012", + "crownLandUsePIN": "19302", + "crownLandFileNumber": "20962", + "landDescription": "LOT 1 OF LOT 3 BLOCK 1 DISTRICT LOT 1 PLAN 5425" } ], "siteDisclosures": [ { - "siteRegistry": false, - "dateReceived": "2018-12-02", - "dateCompleted": "2016-12-30", - "dateEntered": "2020-12-21", - "dateRegistrar": "2020-02-12", - "dateLocalAuthorityReceived": "2020-02-07", - "summary": "Temporibus at officiis impedit accusantium repellat quia.\nVeniam doloribus aliquam placeat.\nCorrupti error recusandae pariatur quos neque nisi blanditiis amet aliquid.", - "informationUsed": "Perferendis facere magnam facilis impedit.\nEa mollitia quo ab vitae hic facere.\nEsse laboriosam velit.", - "pastOrPresentOrders": "Non et nisi consectetur eum aperiam deleniti porro amet.\nSoluta molestiae consequuntur quisquam quasi odit explicabo natus quidem animi.", + "uuid": "effe80b2-27fe-488e-a36e-89cc5a7eddee", + "siteRegistry": true, + "dateReceived": "2020-09-25", + "dateCompleted": "2021-01-15", + "dateEntered": "2020-04-06", + "dateRegistrar": "2021-07-11", + "dateLocalAuthorityReceived": "2022-04-01", + "summary": "Error provident enim.\nVero error totam esse.\nAliquam possimus commodi.", + "informationUsed": "Perferendis consequuntur ad veritatis sed cum atque quo.\nDebitis dicta soluta provident illum maxime ratione.\nDicta numquam quia nulla sequi.\nNobis quis dolore doloremque laudantium vel modi.", + "pastOrPresentOrders": "Ratione soluta modi id quisquam.", "commercialAndIndustrialPurposes": [ { + "uuid": "be4e6977-88c8-4262-b2c2-7640080aea30", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "uuid": "13777466-30d5-4a91-ba58-4d1b8c48a64f", "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "uuid": "4d5cfad3-3b94-4ba3-b576-e2a7cc6c2508", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + } + ] + }, + { + "uuid": "7c3d98c9-5e0d-4300-a6a2-38b9b42b49de", + "siteRegistry": false, + "dateReceived": "2019-07-17", + "dateCompleted": "2014-04-30", + "dateEntered": "2016-02-25", + "dateRegistrar": "2020-12-30", + "dateLocalAuthorityReceived": "2013-10-22", + "summary": "Itaque incidunt accusamus placeat labore.\nAt incidunt a facilis dolor officia ipsam.", + "informationUsed": "Earum ex eveniet quasi quia tenetur nihil non.\nAdipisci autem saepe earum non ea distinctio voluptas at.\nPerspiciatis omnis at quibusdam blanditiis quae reiciendis alias deserunt esse.\nCum reprehenderit provident praesentium nemo odio.", + "pastOrPresentOrders": "Repudiandae aspernatur unde et nobis nobis voluptas non accusantium.\nLabore maxime fugiat nulla labore quasi libero voluptates pariatur hic.\nNeque magnam provident ipsa aspernatur aut ullam fugit nobis eligendi.", + "commercialAndIndustrialPurposes": [ + { + "uuid": "4596acd1-ddc1-434a-b99a-fe536293235a", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "uuid": "15adb8e6-2851-408e-a7b0-858d22c2dbc5", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false }, { + "uuid": "d65c7b89-3422-4992-9a31-d9e9603b38b7", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true @@ -59817,109 +69229,100 @@ ], "activityLog": [ { - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "MERTZ RHEA", - "timestamp": "2022-06-17" - }, - { - "siteRegistry": false, + "uuid": "dbfd5370-6314-42dd-ad85-b58677c0ee93", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "BLICK JERAMIE", - "timestamp": "2023-07-25" + "user": "SCHUMM ERICH", + "timestamp": "2021-04-12" }, { + "uuid": "46082e39-aab4-4dfd-b8ad-159c9eda2a05", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "BREITENBERG MITCHEL", - "timestamp": "2023-03-25" + "user": "BOEHM CRISTAL", + "timestamp": "2017-09-26" }, { + "uuid": "3e66fbe1-a514-486c-869c-4e5cc33e8f1b", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "BREITENBERG KIANA", - "timestamp": "2020-06-29" + "user": "WINTHEISER AUDIE", + "timestamp": "2023-07-09" }, { + "uuid": "1c026fcf-9866-4dce-8183-8099f13cf766", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "GUTMANN JOSEFA", - "timestamp": "2016-06-01" - }, - { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "ROBEL-HETTINGER JODIE", - "timestamp": "2021-11-09" + "user": "LANGWORTH MARINA", + "timestamp": "2017-01-03" }, { + "uuid": "3af4a222-eb90-4cd9-af70-83598d9cddc3", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "SHANAHAN MELISA", - "timestamp": "2015-10-24" + "user": "GREEN VICENTE", + "timestamp": "2021-05-09" }, { + "uuid": "c8e62d3d-3594-4ee8-b7c6-bca0163b6dff", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "ARMSTRONG ZELDA", - "timestamp": "2016-04-26" + "user": "JOHNSTON VAN", + "timestamp": "2023-08-10" }, { - "siteRegistry": true, + "uuid": "bb0d5fea-0ebe-424d-914d-79bb3392d7f2", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "KLOCKO KEN", - "timestamp": "2020-04-06" + "user": "ROGAHN EMILE", + "timestamp": "2014-02-25" } ], "associatedSites": [ { - "dateNoted": "2013-12-15", + "uuid": "1190feb7-e8ca-487f-9537-9afac971955b", + "dateNoted": "2021-09-03", "notes": "", - "parcelID": "16059", - "siteID": "15482", + "parcelID": "16873", + "siteID": "16419", "siteRegistry": true }, { - "dateNoted": "2016-04-13", - "notes": "", - "parcelID": "16631", - "siteID": "17362", - "siteRegistry": false - }, - { - "dateNoted": "2022-02-20", + "uuid": "35d96d02-e66c-4647-8b95-e886475751da", + "dateNoted": "2014-03-21", "notes": "", - "parcelID": "20202", - "siteID": "19044", - "siteRegistry": false + "parcelID": "20464", + "siteID": "15264", + "siteRegistry": true } ] }, { - "uuid": "04ec34e1-5969-4f5a-9c06-1064de57cd05", - "siteID": 18928, - "address": "7898 Maverick Vista", - "latitude": 54.983, - "longitude": -123.3139, - "lastUpdated": "2021-07-13", - "city": "South Felipa", - "region": "Mainland/Southwest", - "victoriaFile": "26250-20/17691", + "uuid": "6209dd31-6ac3-4e36-b38f-9846e2e53058", + "siteID": 17371, + "address": "860 Collier Glens", + "latitude": 58.609, + "longitude": -122.8998, + "lastUpdated": "2017-10-07", + "city": "Bellflower", + "region": "Thompson-Okanagan", + "victoriaFile": "26250-20/6723", "regionalFile": "N/A", "parcelIDs": [ - 8188120, - 8761080, - 8440236, - 2391597, - 7647192 + 1489597, + 7844161, + 6474501, + 5720126, + 669737 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2018-06-21", - "completed": "2021-04-02", - "initiated": "2015-01-29", - "ministryContact": "GUSIKOWSKI WILFRED", + "uuid": "05e84287-6174-46e5-b1c2-2b22fd261be8", + "createdAt": "2022-12-19", + "completed": "2020-11-05", + "initiated": "2020-04-10", + "ministryContact": "BAUMBACH GREEN", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -59928,23 +69331,32 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true + "uuid": "80c49e9a-47af-49ab-8598-e33e1dd68dc5", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "uuid": "e5bacfdc-3836-420f-aa6a-7341ec030bf4", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", "siteRegistry": false + }, + { + "uuid": "9ee6a9b8-33bb-4ed1-a231-1d588b52838b", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true } ], "siteRegistry": false }, { - "createdAt": "2022-03-15", - "completed": "2022-05-25", - "initiated": "2017-01-24", - "ministryContact": "BECKER DANYKA", + "uuid": "f80a14d2-1c61-42f5-813b-ef007ac821f3", + "createdAt": "2022-04-17", + "completed": "2016-02-26", + "initiated": "2015-04-06", + "ministryContact": "MARKS GIOVANNI", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -59953,29 +69365,22 @@ ], "notationParticipants": [ { + "uuid": "33cf617a-abee-48db-b07a-29e32fdbe526", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false }, { + "uuid": "298860fe-b845-4c8f-8ba0-65a6b304d966", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false }, { + "uuid": "2bc045eb-2a99-4381-a501-bc56aea1776a", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false } ], "siteRegistry": false @@ -59983,19 +69388,32 @@ ], "participants": [ { - "name": "AMET, DOLOR SIT", - "endDate": "2022-10-14", - "startDate": "2020-02-25", + "uuid": "e1dd4dde-7ae2-42bb-a9a1-2d62826a706c", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2021-10-21", + "startDate": "2023-09-22", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "uuid": "dba1eb8d-064d-4d99-baf3-73fb8f6c7557", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2018-10-17", + "startDate": "2019-08-12", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": true + "siteRegistry": false }, { + "uuid": "c721fda7-1c23-4609-b644-630dc3236e4c", "name": "SHELL CANADA PRODUCTS", - "endDate": "2018-03-31", - "startDate": "2017-10-30", + "endDate": "2016-06-14", + "startDate": "2018-02-23", "notes": "", "roles": [ "EMPLOYEE" @@ -60003,163 +69421,175 @@ "siteRegistry": false }, { - "name": "IPSUM", - "endDate": "2015-07-17", - "startDate": "2023-06-16", + "uuid": "54ed7cc1-53ac-4341-aad0-9023cb1604dd", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2017-11-03", + "startDate": "2020-10-26", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": true } ], "suspectLandUses": [ { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-11-17 (described on Site Profile dated 2021-11-17)", + "uuid": "0eae5254-865c-4cff-aa38-3a6f288f8c05", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2018-11-10 (described on Site Profile dated 2018-11-10)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-09-22 (described on Site Profile dated 2018-09-22)", + "uuid": "d83f2736-b3a3-47b4-81b7-c14f30611116", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2021-11-04 (described on Site Profile dated 2021-11-04)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], "parcelDescriptions": [ { + "uuid": "a1243ea2-8c5b-4dad-9dfc-7afe9bdabfeb", "siteRegistry": false, - "dateNoted": "2021-06-20", - "parcelID": "20829", - "crownLandUsePIN": "20138", - "crownLandFileNumber": "16792", - "landDescription": "LOT 4 OF LOT 4 BLOCK 3 DISTRICT LOT 5 PLAN 3885" + "dateNoted": "2013-11-24", + "parcelID": "20405", + "crownLandUsePIN": "17851", + "crownLandFileNumber": "20518", + "landDescription": "LOT 2 OF LOT 1 BLOCK 3 DISTRICT LOT 3 PLAN 3917" }, { - "siteRegistry": true, - "dateNoted": "2020-02-01", - "parcelID": "15813", - "crownLandUsePIN": "18343", - "crownLandFileNumber": "19638", - "landDescription": "LOT 3 OF LOT 3 BLOCK 2 DISTRICT LOT 3 PLAN 7594" + "uuid": "01993b02-0b3b-4e10-a8dd-b4aacfa3731a", + "siteRegistry": false, + "dateNoted": "2020-12-07", + "parcelID": "18126", + "crownLandUsePIN": "16274", + "crownLandFileNumber": "19216", + "landDescription": "LOT 3 OF LOT 1 BLOCK 5 DISTRICT LOT 5 PLAN 9547" }, { - "siteRegistry": false, - "dateNoted": "2022-08-12", - "parcelID": "20013", - "crownLandUsePIN": "19211", - "crownLandFileNumber": "19358", - "landDescription": "LOT 1 OF LOT 3 BLOCK 4 DISTRICT LOT 2 PLAN 8161" + "uuid": "7acb91ad-2439-4965-a748-2cddd1a76884", + "siteRegistry": true, + "dateNoted": "2014-09-21", + "parcelID": "20010", + "crownLandUsePIN": "20991", + "crownLandFileNumber": "17527", + "landDescription": "LOT 1 OF LOT 4 BLOCK 4 DISTRICT LOT 2 PLAN 6719" } ], "siteDisclosures": [ { + "uuid": "2ceeddb8-6a64-4053-9362-122338be94f0", "siteRegistry": false, - "dateReceived": "2018-12-09", - "dateCompleted": "2018-01-08", - "dateEntered": "2017-05-20", - "dateRegistrar": "2016-03-03", - "dateLocalAuthorityReceived": "2018-01-18", - "summary": "Explicabo necessitatibus sunt nam quae molestias laudantium vel facere.\nBeatae voluptatem corrupti dolorum.\nVero repudiandae dolores beatae fugiat fugiat.", - "informationUsed": "Labore ut omnis et quos consequatur porro suscipit.\nEt ea qui ducimus voluptatem.\nCorrupti nam excepturi delectus aut voluptates eum fugiat ipsa.\nNobis eos facilis sint libero quod qui nobis sit.\nQuas omnis provident quos vero ad cumque quia consequuntur fugit.", - "pastOrPresentOrders": "Quae quos quis fugiat culpa quaerat ex.", + "dateReceived": "2020-12-18", + "dateCompleted": "2014-08-06", + "dateEntered": "2016-05-20", + "dateRegistrar": "2023-04-22", + "dateLocalAuthorityReceived": "2016-09-02", + "summary": "Deserunt quisquam facilis deleniti tempora unde officia dicta.\nNam odit sint nemo minus distinctio commodi impedit asperiores repudiandae.", + "informationUsed": "Eveniet aperiam blanditiis ducimus accusantium.\nMaxime autem asperiores hic consequatur consequatur libero illum.\nAlias quidem iste magnam.\nQuae voluptatibus reiciendis culpa odio fuga magnam fuga.", + "pastOrPresentOrders": "Et numquam maiores similique sed est laudantium accusamus fugit.\nNam alias debitis.\nArchitecto vero animi ex perferendis a.", "commercialAndIndustrialPurposes": [ { + "uuid": "f907b4c4-0edb-4cb1-aa97-2c35fa784a1c", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false - }, - { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false + "siteRegistry": true }, { - "scheduleReference": "F2*", + "uuid": "0c4cf3fc-691b-4e81-992d-b5e079e187d9", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true + }, + { + "uuid": "cc02019d-c89e-40a7-84c1-5812ce4f7718", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false } ] } ], "activityLog": [ { + "uuid": "8c9159d5-16e0-45b3-9fbd-f6dc1926a019", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "SANFORD ELLEN", - "timestamp": "2016-05-10" + "user": "LIND VELVA", + "timestamp": "2020-08-28" }, { + "uuid": "42d45c82-5590-4528-8fa2-255d577fa064", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "D'AMORE JULIANNE", - "timestamp": "2023-02-05" + "user": "VEUM DUDLEY", + "timestamp": "2016-02-15" }, { + "uuid": "3d81cb63-594b-4f76-ae3a-f52a46cbd1b9", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "HIRTHE VADA", - "timestamp": "2023-02-09" + "user": "HUDSON ORLO", + "timestamp": "2020-08-30" }, { + "uuid": "b83a8798-9d10-4d5e-baaa-55187a2669e0", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "ROGAHN ZACKERY", - "timestamp": "2015-01-26" + "user": "TORP JAVIER", + "timestamp": "2018-12-29" }, { + "uuid": "c39f7b53-80a8-4bfd-9444-15b64886a7f2", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "HELLER KRISTY", - "timestamp": "2018-03-30" + "user": "EMARD DEMOND", + "timestamp": "2020-08-16" }, { + "uuid": "8e5e4c31-67e1-45a7-a431-b3c87a2050ee", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "STROSIN THERESIA", - "timestamp": "2019-09-01" - }, - { - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "LOCKMAN-DARE KAIA", - "timestamp": "2022-03-29" + "user": "OSINSKI CAROL", + "timestamp": "2021-12-14" } ], "associatedSites": [ { - "dateNoted": "2023-08-20", + "uuid": "25a4f186-4660-4cdb-97d2-608fe4642546", + "dateNoted": "2019-07-02", "notes": "", - "parcelID": "20066", - "siteID": "20080", - "siteRegistry": false + "parcelID": "17206", + "siteID": "17116", + "siteRegistry": true } ] }, { - "uuid": "254c6052-2b40-45a5-bda7-b038dd80fe4e", - "siteID": 19450, - "address": "884 Grady Fork", - "latitude": 53.6684, - "longitude": -120.9876, - "lastUpdated": "2015-03-03", - "city": "Monterey Park", - "region": "Cariboo", - "victoriaFile": "26250-20/14891", + "uuid": "f324e60a-e203-412b-9e64-b8e62ea3d1f5", + "siteID": 16133, + "address": "78635 Hayley Ports", + "latitude": 48.3249, + "longitude": -118.3766, + "lastUpdated": "2015-09-04", + "city": "New Ruthefield", + "region": "Mainland/Southwest", + "victoriaFile": "26250-20/17706", "regionalFile": "N/A", "parcelIDs": [ - 5029043, - 3582183, - 5160833, - 6639354, - 8208200 + 7621650, + 6139129, + 1065115, + 4092482, + 8285825 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2018-06-23", - "completed": "2020-03-05", - "initiated": "2017-03-13", - "ministryContact": "TERRY BETTE", + "uuid": "bb9e99b9-32e1-4ef5-ab35-41fb65318139", + "createdAt": "2014-12-19", + "completed": "2017-05-09", + "initiated": "2019-06-20", + "ministryContact": "GULGOWSKI IMOGENE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -60168,28 +69598,66 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", + "uuid": "ab78693a-2578-46fc-b293-a4dc0c6007fe", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true }, { + "uuid": "c323f4b9-b3b1-4768-bbd1-d09722b9807a", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "uuid": "fba527b3-0274-4504-910f-c85ea3c6cde4", + "createdAt": "2016-04-06", + "completed": "2020-10-06", + "initiated": "2016-02-20", + "ministryContact": "COLLIER RAINA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "uuid": "db1f880a-5835-426f-a5ae-914255222e32", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "2bba07af-312f-4eb6-8348-db1b5e589212", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true }, { + "uuid": "00605120-5535-4195-8486-dd9e8e5dfc04", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "uuid": "5ba5b8ff-6fb8-4c30-908f-ff2b2c150ab2", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2014-06-06", - "completed": "2018-12-16", - "initiated": "2014-06-01", - "ministryContact": "NICOLAS MORTON", + "uuid": "ba2643ab-75ea-4e62-93af-9da387bffddf", + "createdAt": "2020-05-09", + "completed": "2015-12-14", + "initiated": "2017-03-18", + "ministryContact": "CROOKS CESAR", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -60198,23 +69666,26 @@ ], "notationParticipants": [ { + "uuid": "76799ee9-7aef-47e4-8deb-20dc29c64f30", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { + "uuid": "965a53b7-cd8f-4d3c-abce-a41eea82ab17", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true } ], "siteRegistry": false }, { - "createdAt": "2015-05-12", - "completed": "2017-10-01", - "initiated": "2016-08-31", - "ministryContact": "DUBUQUE GREGG", + "uuid": "372fa3ae-51da-46f4-be43-11109289378c", + "createdAt": "2019-07-21", + "completed": "2023-10-07", + "initiated": "2016-11-07", + "ministryContact": "HEATHCOTE OLIVER", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -60223,39 +69694,79 @@ ], "notationParticipants": [ { + "uuid": "0c836c42-3f6b-49c7-871c-1f7f61108fba", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true }, { + "uuid": "d4dae8d5-2500-4bd4-a32c-7ca90bd54ace", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false + "role": "REQUESTED BY", + "siteRegistry": true }, { + "uuid": "56a40a98-5579-4bec-b154-db9f04d0f214", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "uuid": "5c81d1cc-bbb4-4434-803d-c2fadc64c24b", + "createdAt": "2023-09-29", + "completed": "2019-05-05", + "initiated": "2021-01-19", + "ministryContact": "MARVIN LUZ", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "uuid": "57b4c560-0ff0-4ace-8463-1c17c3e79b68", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true }, { + "uuid": "9dd175aa-2741-464a-b4c5-89b6308b7858", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "cf666d46-89d2-4dcc-8ea4-859040547664", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "uuid": "5384c147-8be9-4c85-9c7d-054039cf8fe8", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false + }, + { + "uuid": "fd52b249-5516-47d7-86c9-e190fcf45b9c", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false } ], "participants": [ { - "name": "AMET, DOLOR SIT", - "endDate": "2018-07-24", - "startDate": "2017-03-07", + "uuid": "27a76c63-42ff-46fc-bdc5-997ec65bf60a", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2019-02-16", + "startDate": "2022-07-17", "notes": "", "roles": [ "EMPLOYEE" @@ -60263,203 +69774,230 @@ "siteRegistry": false }, { + "uuid": "b4da1172-0c28-4d33-addb-6a861ea12370", "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2015-09-11", - "startDate": "2022-08-06", + "endDate": "2016-08-22", + "startDate": "2019-09-28", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": false - } - ], - "suspectLandUses": [ - { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-06-12 (described on Site Profile dated 2021-06-12)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "siteRegistry": true }, { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-04-25 (described on Site Profile dated 2021-04-25)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "uuid": "08568c6f-83be-4d91-854f-dd56b6e24f56", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2014-02-23", + "startDate": "2015-02-16", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true }, { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2023-05-23 (described on Site Profile dated 2023-05-23)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "uuid": "a08a6f10-2499-4fc7-a6c5-a51bb58ed207", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2022-03-12", + "startDate": "2017-09-27", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false }, { + "uuid": "900cb601-db3d-4cc0-abdf-36dea794f294", + "name": "IPSUM", + "endDate": "2021-02-24", + "startDate": "2021-03-26", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + } + ], + "suspectLandUses": [ + { + "uuid": "316a262f-e73a-49df-9bb7-3c56ae2a943c", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-07-15 (described on Site Profile dated 2019-07-15)", + "notes": "INSERTED FOR SITE PROFILE DATED 2022-02-22 (described on Site Profile dated 2022-02-22)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { + "uuid": "2e0fa9e2-4db4-4915-867a-15eff6d0199b", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-04-20 (described on Site Profile dated 2017-04-20)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "notes": "INSERTED FOR SITE PROFILE DATED 2019-07-27 (described on Site Profile dated 2019-07-27)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], "parcelDescriptions": [ { - "siteRegistry": true, - "dateNoted": "2020-01-06", - "parcelID": "17366", - "crownLandUsePIN": "15348", - "crownLandFileNumber": "16828", - "landDescription": "LOT 1 OF LOT 2 BLOCK 5 DISTRICT LOT 3 PLAN 5904" - }, - { + "uuid": "a0b63283-2169-43e4-b233-0038f4bf4cd2", "siteRegistry": false, - "dateNoted": "2020-05-06", - "parcelID": "20270", - "crownLandUsePIN": "16035", - "crownLandFileNumber": "19540", - "landDescription": "LOT 3 OF LOT 5 BLOCK 3 DISTRICT LOT 3 PLAN 9167" + "dateNoted": "2021-11-05", + "parcelID": "16467", + "crownLandUsePIN": "15568", + "crownLandFileNumber": "15574", + "landDescription": "LOT 2 OF LOT 5 BLOCK 5 DISTRICT LOT 4 PLAN 4123" }, { + "uuid": "56c08752-b8e1-4500-b6e6-c763a5d5e3e7", "siteRegistry": true, - "dateNoted": "2015-11-15", - "parcelID": "18210", - "crownLandUsePIN": "17906", - "crownLandFileNumber": "19959", - "landDescription": "LOT 5 OF LOT 3 BLOCK 3 DISTRICT LOT 1 PLAN 7570" + "dateNoted": "2018-06-11", + "parcelID": "18889", + "crownLandUsePIN": "17599", + "crownLandFileNumber": "15552", + "landDescription": "LOT 4 OF LOT 4 BLOCK 3 DISTRICT LOT 1 PLAN 3948" }, { + "uuid": "4b5ed488-fbbe-4006-bdab-28938e5e978b", "siteRegistry": false, - "dateNoted": "2019-03-22", - "parcelID": "16752", - "crownLandUsePIN": "17776", - "crownLandFileNumber": "16532", - "landDescription": "LOT 4 OF LOT 2 BLOCK 1 DISTRICT LOT 5 PLAN 4637" + "dateNoted": "2017-08-16", + "parcelID": "18866", + "crownLandUsePIN": "20599", + "crownLandFileNumber": "16322", + "landDescription": "LOT 4 OF LOT 4 BLOCK 4 DISTRICT LOT 5 PLAN 7920" } ], "siteDisclosures": [ { + "uuid": "d1182183-2b84-4be0-bf47-1a37278babc1", "siteRegistry": true, - "dateReceived": "2016-10-01", - "dateCompleted": "2022-03-14", - "dateEntered": "2022-05-20", - "dateRegistrar": "2014-04-17", - "dateLocalAuthorityReceived": "2015-12-17", - "summary": "Nesciunt dolores ea blanditiis.", - "informationUsed": "Quibusdam est qui distinctio.\nAut incidunt reprehenderit eligendi voluptas molestiae voluptas id optio.\nMaxime cupiditate reprehenderit voluptates illum quam beatae omnis.", - "pastOrPresentOrders": "Cum animi magnam repellendus saepe sit corrupti.", + "dateReceived": "2017-05-27", + "dateCompleted": "2014-05-29", + "dateEntered": "2016-08-15", + "dateRegistrar": "2017-07-22", + "dateLocalAuthorityReceived": "2016-05-02", + "summary": "Adipisci illum asperiores blanditiis voluptatum enim dolorum nobis iste.\nTempore officia eaque voluptatem ipsum.\nA incidunt adipisci consequatur animi omnis dolor.", + "informationUsed": "Quia incidunt eius alias voluptas quidem ipsa eius illum.\nPraesentium sit quisquam necessitatibus.\nAut dolorem eveniet atque praesentium ratione accusantium.", + "pastOrPresentOrders": "Perspiciatis voluptatibus ad ad perspiciatis.\nAperiam eligendi nobis ullam qui consequuntur soluta ea vero.", "commercialAndIndustrialPurposes": [ { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "uuid": "f1e5691c-6933-4b2b-adf1-15630038ee8e", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { + "uuid": "26735733-1b28-4fcb-a381-775aad62e66b", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false - } - ] - }, - { - "siteRegistry": false, - "dateReceived": "2014-01-12", - "dateCompleted": "2021-06-12", - "dateEntered": "2023-08-08", - "dateRegistrar": "2015-06-01", - "dateLocalAuthorityReceived": "2019-07-15", - "summary": "Molestias esse vel accusantium quas repudiandae rerum.", - "informationUsed": "Commodi magni minima.\nRepudiandae rerum suscipit voluptatem esse.\nNemo voluptas quis nam doloribus cumque corrupti.", - "pastOrPresentOrders": "Rerum placeat a laudantium recusandae voluptates laborum et magni ad.\nBeatae atque doloremque facere cupiditate culpa illum debitis rerum debitis.\nInventore voluptates esse porro ratione facere unde nostrum sunt culpa.", - "commercialAndIndustrialPurposes": [ - { + "uuid": "3bf1d0fc-5669-4cde-860f-07b6cf54c218", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true + "siteRegistry": false }, { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true + "uuid": "7176e302-63c2-43dd-a1c1-03f08e392e8b", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false } ] } ], "activityLog": [ { + "uuid": "bf586e2b-0350-4df7-a400-1a705424a336", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "VONRUEDEN JUWAN", - "timestamp": "2023-01-13" + "user": "KILBACK HAZLE", + "timestamp": "2019-05-09" }, { - "siteRegistry": true, + "uuid": "58abbe8f-6339-4c07-ae1c-9a8654a5b64c", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "TROMP ELLSWORTH", - "timestamp": "2019-05-19" + "user": "MACGYVER MALVINA", + "timestamp": "2018-09-07" }, { + "uuid": "55f6503b-9c86-461f-8503-494006829cc7", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "HEANEY ARJUN", - "timestamp": "2016-01-31" + "user": "JACOBI HOYT", + "timestamp": "2022-05-18" }, { + "uuid": "9ef98a85-7818-4fe2-9406-77573fe90d57", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "SCHMELER ANGELITA", - "timestamp": "2018-09-11" + "user": "GIBSON MARVIN", + "timestamp": "2020-04-11" }, { - "siteRegistry": true, + "uuid": "78d07370-acff-44c2-8ce7-f0b070d1d7bd", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "RENNER MARLENE", - "timestamp": "2014-06-14" + "user": "MULLER LUNA", + "timestamp": "2016-07-05" }, { + "uuid": "aa5a8cc8-7f9f-4abf-b930-69a0b51703c1", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "FEEST-WAELCHI ALENE", - "timestamp": "2021-01-29" + "user": "KOZEY RALEIGH", + "timestamp": "2015-10-03" } ], "associatedSites": [ { - "dateNoted": "2020-05-29", + "uuid": "50d3fcd3-96b0-4d42-bc1c-b0a3d0445cf3", + "dateNoted": "2015-10-26", + "notes": "", + "parcelID": "19947", + "siteID": "17082", + "siteRegistry": true + }, + { + "uuid": "da929064-26a8-4242-9894-4eb05f5386e9", + "dateNoted": "2023-07-01", "notes": "", - "parcelID": "19122", - "siteID": "16335", + "parcelID": "20137", + "siteID": "18349", "siteRegistry": false + }, + { + "uuid": "ba3beae4-82c9-4d98-967d-22ab4df790fe", + "dateNoted": "2016-01-25", + "notes": "", + "parcelID": "19338", + "siteID": "18040", + "siteRegistry": true } ] }, { - "uuid": "ba6cfbb2-1dce-4d64-aa87-6725d03e803c", - "siteID": 19747, - "address": "20708 Ward Courts", - "latitude": 52.4009, - "longitude": -128.5207, - "lastUpdated": "2016-11-14", - "city": "Fort Jefferystad", + "uuid": "cd1d9ba5-f477-4e5e-92fa-d00bf47b826e", + "siteID": 20314, + "address": "3959 Hegmann Lakes", + "latitude": 48.9038, + "longitude": -127.1134, + "lastUpdated": "2018-09-14", + "city": "Visalia", "region": "Kootenay", - "victoriaFile": "26250-20/4292", + "victoriaFile": "26250-20/11428", "regionalFile": "N/A", "parcelIDs": [ - 2157692, - 9407484, - 9904927, - 6812785, - 8366788 + 9400952, + 7742189, + 2141511, + 2931941, + 5098462 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2017-04-11", - "completed": "2017-02-23", - "initiated": "2016-02-14", - "ministryContact": "WEISSNAT KOREY", + "uuid": "f9c4ad44-f8fc-450d-a100-c46b0b28741f", + "createdAt": "2019-02-10", + "completed": "2023-09-06", + "initiated": "2017-09-22", + "ministryContact": "GIBSON JACKSON", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -60468,38 +70006,44 @@ ], "notationParticipants": [ { + "uuid": "410ee2a4-02c6-4c9d-8532-7351cae7922a", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false }, { + "uuid": "a5e510d7-7ba3-480b-9b8b-f7357e21ec3c", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true + "uuid": "afedcbcb-0f23-4721-bcda-1b5a0e6c1a9b", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false }, { + "uuid": "14fe021a-adff-4223-b495-915b68d60820", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "72688aeb-5d26-4c71-a6e9-de62e5801157", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2015-09-09", - "completed": "2018-02-18", - "initiated": "2018-01-09", - "ministryContact": "NADER-GUTMANN NEOMA", + "uuid": "c6dca5ec-af92-47eb-b9ae-fc021fbfd5f5", + "createdAt": "2023-09-26", + "completed": "2014-02-10", + "initiated": "2022-08-02", + "ministryContact": "GOTTLIEB SAUL", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -60508,17 +70052,20 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { + "uuid": "4d1036ab-4045-4a42-bf90-7a8d92d1392c", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false }, { + "uuid": "6d549a19-f033-488c-be60-6cb03c173fe5", "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "uuid": "a5cd7e5c-fa97-4c95-94db-ab71270c063f", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false } @@ -60528,19 +70075,10 @@ ], "participants": [ { - "name": "IPSUM", - "endDate": "2013-11-29", - "startDate": "2018-03-01", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2017-02-09", - "startDate": "2014-08-08", + "uuid": "2b214204-de14-4657-a185-177bf3982745", + "name": "AMET, DOLOR SIT", + "endDate": "2016-10-02", + "startDate": "2020-06-02", "notes": "", "roles": [ "ORGANIZATION" @@ -60548,237 +70086,262 @@ "siteRegistry": true }, { - "name": "IPSUM", - "endDate": "2016-07-08", - "startDate": "2020-04-13", + "uuid": "dc40014a-88f3-48d6-b070-a77b36d7b870", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2023-03-25", + "startDate": "2022-01-21", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2020-06-28", - "startDate": "2018-06-15", + "uuid": "93bc6065-836a-4dc9-97fc-9d3123e2bc34", + "name": "IPSUM", + "endDate": "2021-04-14", + "startDate": "2019-11-28", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false } ], "suspectLandUses": [ { + "uuid": "647ba11f-0d94-4baf-99b2-cf7faffa38d4", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-06-11 (described on Site Profile dated 2014-06-11)", + "notes": "INSERTED FOR SITE PROFILE DATED 2015-02-05 (described on Site Profile dated 2015-02-05)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-10-27 (described on Site Profile dated 2021-10-27)", + "uuid": "0794ec51-4902-49a9-9096-ef006eda49ec", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2015-04-04 (described on Site Profile dated 2015-04-04)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { + "uuid": "2389fd0c-d678-438b-9fd5-b38281b72b08", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2023-09-15 (described on Site Profile dated 2023-09-15)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "notes": "INSERTED FOR SITE PROFILE DATED 2022-01-04 (described on Site Profile dated 2022-01-04)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { + "uuid": "bcfef91b-7ec5-4608-b09c-5202a5d06da0", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2020-09-19 (described on Site Profile dated 2020-09-19)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "notes": "INSERTED FOR SITE PROFILE DATED 2014-02-22 (described on Site Profile dated 2014-02-22)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], "parcelDescriptions": [ { - "siteRegistry": true, - "dateNoted": "2023-03-13", - "parcelID": "16645", - "crownLandUsePIN": "18977", - "crownLandFileNumber": "18839", - "landDescription": "LOT 3 OF LOT 4 BLOCK 1 DISTRICT LOT 2 PLAN 2955" + "uuid": "f950bb30-8704-4315-89fb-43f264f88f73", + "siteRegistry": false, + "dateNoted": "2017-11-04", + "parcelID": "20811", + "crownLandUsePIN": "16916", + "crownLandFileNumber": "17171", + "landDescription": "LOT 1 OF LOT 5 BLOCK 5 DISTRICT LOT 1 PLAN 8126" }, { - "siteRegistry": false, - "dateNoted": "2021-08-26", - "parcelID": "18557", - "crownLandUsePIN": "19067", - "crownLandFileNumber": "18089", - "landDescription": "LOT 3 OF LOT 1 BLOCK 4 DISTRICT LOT 5 PLAN 3896" + "uuid": "73769196-e92f-4cec-96ca-373e81016ed6", + "siteRegistry": true, + "dateNoted": "2021-07-27", + "parcelID": "20206", + "crownLandUsePIN": "15898", + "crownLandFileNumber": "15716", + "landDescription": "LOT 4 OF LOT 1 BLOCK 1 DISTRICT LOT 4 PLAN 3211" }, { - "siteRegistry": false, - "dateNoted": "2019-03-24", - "parcelID": "20133", - "crownLandUsePIN": "20250", - "crownLandFileNumber": "19229", - "landDescription": "LOT 2 OF LOT 2 BLOCK 2 DISTRICT LOT 2 PLAN 6584" + "uuid": "77dd003e-9327-4d81-973a-47052d660111", + "siteRegistry": true, + "dateNoted": "2021-07-26", + "parcelID": "20620", + "crownLandUsePIN": "15558", + "crownLandFileNumber": "17667", + "landDescription": "LOT 1 OF LOT 2 BLOCK 4 DISTRICT LOT 4 PLAN 4504" }, { + "uuid": "0600de41-f671-4710-8d14-4620e4711312", "siteRegistry": false, - "dateNoted": "2023-09-25", - "parcelID": "15960", - "crownLandUsePIN": "20772", - "crownLandFileNumber": "20250", - "landDescription": "LOT 2 OF LOT 3 BLOCK 5 DISTRICT LOT 3 PLAN 4347" + "dateNoted": "2019-04-03", + "parcelID": "17262", + "crownLandUsePIN": "17183", + "crownLandFileNumber": "17552", + "landDescription": "LOT 1 OF LOT 1 BLOCK 1 DISTRICT LOT 4 PLAN 7014" } ], "siteDisclosures": [ { - "siteRegistry": false, - "dateReceived": "2018-06-09", - "dateCompleted": "2019-12-21", - "dateEntered": "2014-07-10", - "dateRegistrar": "2018-10-24", - "dateLocalAuthorityReceived": "2020-09-23", - "summary": "Quisquam enim asperiores hic nostrum assumenda sequi hic quae fugit.\nPlaceat adipisci sunt et voluptates quas illo.\nNumquam tenetur ad quidem natus.", - "informationUsed": "Quaerat aliquid qui animi blanditiis nobis sapiente eum quaerat explicabo.\nEst ab mollitia et.\nConsequuntur aut quas culpa id.", - "pastOrPresentOrders": "Nobis unde illo.", + "uuid": "ee112ef8-e6ee-401e-8888-5ff4ccf071b9", + "siteRegistry": true, + "dateReceived": "2016-07-06", + "dateCompleted": "2014-02-03", + "dateEntered": "2016-06-02", + "dateRegistrar": "2020-12-27", + "dateLocalAuthorityReceived": "2018-08-27", + "summary": "Qui nam occaecati quaerat quia sint labore.\nLaborum asperiores fugit.\nQuasi praesentium quos blanditiis officia labore neque blanditiis.", + "informationUsed": "Inventore sequi quasi consectetur.\nExercitationem optio modi asperiores reprehenderit cum incidunt vero veritatis.\nEligendi illo magni perspiciatis laboriosam nulla rem.", + "pastOrPresentOrders": "Adipisci doloremque quisquam unde reprehenderit placeat quo velit nobis consequatur.\nOmnis non ducimus.", "commercialAndIndustrialPurposes": [ { - "scheduleReference": "F1*", + "uuid": "6eed9556-f0b4-4753-8d61-269dfd64efd4", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { + "uuid": "8ab88949-89ca-4bd6-aac1-f15b671e47e8", "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false }, { + "uuid": "35713f0e-5d1b-4e51-8cce-06e5c8ef78df", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true + "siteRegistry": false }, { + "uuid": "8da4f07a-ddaa-4d11-95b0-657a62ebc15e", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true } ] - }, - { - "siteRegistry": true, - "dateReceived": "2023-01-13", - "dateCompleted": "2015-03-29", - "dateEntered": "2014-11-19", - "dateRegistrar": "2015-09-16", - "dateLocalAuthorityReceived": "2023-01-01", - "summary": "Mollitia earum magni rerum eveniet commodi provident vel molestiae.\nQuos in sunt non libero nobis consequatur provident facere rerum.\nQuisquam delectus consequatur quae expedita facilis facilis.", - "informationUsed": "Eum iure voluptate hic adipisci rem.\nExcepturi aperiam accusantium rem inventore quod voluptatem fugiat illum.\nQuas accusamus deleniti.", - "pastOrPresentOrders": "Enim repellendus porro voluptatem adipisci iure voluptates incidunt.\nFugit incidunt eveniet doloribus possimus.", - "commercialAndIndustrialPurposes": [ - { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true - }, - { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true - } - ] } ], "activityLog": [ { + "uuid": "f82668f4-82db-482a-8877-b048203c3ef9", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "O'KEEFE ZELLA", - "timestamp": "2018-12-22" - }, - { - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "CUMMERATA NOEL", - "timestamp": "2016-06-17" + "user": "HOMENICK ISMAEL", + "timestamp": "2022-03-04" }, { - "siteRegistry": false, + "uuid": "1bb10518-b9b8-4961-bb6f-0c0e87e24e49", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "LITTEL SIMONE", - "timestamp": "2021-09-23" + "user": "LITTEL RAHEEM", + "timestamp": "2017-06-15" }, { + "uuid": "b79f4fb4-c853-4aa6-97f9-15ed11c862f4", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "KILBACK SAUL", - "timestamp": "2016-05-05" + "user": "CARTWRIGHT-COLLIER NELLIE", + "timestamp": "2014-07-21" }, { + "uuid": "e4d018a5-b4b8-4d97-aadb-e7cdb564efb4", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "SCHAMBERGER EDNA", - "timestamp": "2019-11-19" + "user": "KUHN CORDIA", + "timestamp": "2020-04-29" }, { - "siteRegistry": true, + "uuid": "aec80d01-b05f-4e28-85c0-8e1656b7d8a5", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "ANKUNDING ARACELI", - "timestamp": "2021-05-10" + "user": "HEIDENREICH-BEER KENYATTA", + "timestamp": "2015-03-28" }, { + "uuid": "233837bd-c33f-4387-8918-42e867e02ff5", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "ZBONCAK MARQUES", - "timestamp": "2014-05-01" + "user": "CASPER SANTA", + "timestamp": "2021-07-11" }, { - "siteRegistry": true, + "uuid": "6781ea79-aabb-4d67-b5a7-e178999c6222", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "DOUGLAS HAYLEY", - "timestamp": "2020-10-25" + "user": "BECKER DEMETRIS", + "timestamp": "2015-12-04" }, { - "siteRegistry": false, + "uuid": "3aeb68f7-4b9c-40d5-b02d-b8cec960c885", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "GOLDNER DORRIS", - "timestamp": "2023-03-05" + "user": "WISOKY ABRAHAM", + "timestamp": "2014-04-17" }, { + "uuid": "022c24b3-e2b5-4dab-b809-7ad6cc3ca847", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "MACEJKOVIC MAUDIE", - "timestamp": "2015-07-05" + "user": "BRAUN BERTRAND", + "timestamp": "2020-12-01" } ], "associatedSites": [ { - "dateNoted": "2023-08-28", + "uuid": "28db745a-85ae-416c-8006-249d7234225c", + "dateNoted": "2019-08-13", "notes": "", - "parcelID": "16416", - "siteID": "18639", + "parcelID": "17517", + "siteID": "17082", "siteRegistry": true } ] }, { - "uuid": "90112ebd-c8eb-40cd-94cd-304e610bd540", - "siteID": 17017, - "address": "878 Moen Ferry", - "latitude": 51.8809, - "longitude": -118.896, - "lastUpdated": "2021-03-19", - "city": "Parkercester", + "uuid": "fc6d7193-28f2-4f54-b909-97d718f14c1b", + "siteID": 17437, + "address": "85510 Verner Fields", + "latitude": 55.0804, + "longitude": -122.6231, + "lastUpdated": "2017-06-21", + "city": "Annandale", "region": "Thompson-Okanagan", - "victoriaFile": "26250-20/16064", + "victoriaFile": "26250-20/7316", "regionalFile": "N/A", "parcelIDs": [ - 1541002, - 6692856, - 1064707, - 2013143, - 2356542 + 4147654, + 1898042, + 7959733, + 593302, + 3393238 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2020-02-23", - "completed": "2017-10-10", - "initiated": "2022-10-29", - "ministryContact": "KUPHAL BARTHOLOME", + "uuid": "b2b65424-1369-48d4-a870-27c52c0bcf02", + "createdAt": "2014-04-14", + "completed": "2017-04-13", + "initiated": "2017-07-12", + "ministryContact": "NICOLAS-ALTENWERTH WILMER", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "uuid": "427126cc-ee62-4584-932e-0b3d039581f6", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "0fac2138-2901-490b-8ed5-ed56e71069ae", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "uuid": "eeffe1cc-79a2-4eba-8d65-6da05bf60c59", + "createdAt": "2014-06-01", + "completed": "2014-04-23", + "initiated": "2015-02-19", + "ministryContact": "BATZ KILEY", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -60787,11 +70350,13 @@ ], "notationParticipants": [ { + "uuid": "5f84c3d1-b3c7-4c1c-b5a5-fea45e972f58", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true }, { + "uuid": "6de98378-965a-40f3-9a49-898b3fbf60f2", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false @@ -60800,10 +70365,11 @@ "siteRegistry": true }, { - "createdAt": "2020-07-19", - "completed": "2018-11-08", - "initiated": "2018-01-17", - "ministryContact": "HAMILL VELLA", + "uuid": "1317f868-6503-467e-89a3-6849f0e13a73", + "createdAt": "2022-12-14", + "completed": "2021-01-05", + "initiated": "2020-01-08", + "ministryContact": "WILKINSON PERRY", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -60812,23 +70378,33 @@ ], "notationParticipants": [ { + "uuid": "c8cacc96-320b-43fe-957c-0de6334ca818", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "uuid": "1ea6d434-55b8-47e3-998e-4f85018766f4", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { + "uuid": "f5e79916-9d58-4845-a9ad-daf4907b2d66", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", + "uuid": "3f9299cf-c15c-4b87-838b-eb132faa7f05", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "uuid": "7674ed82-896e-4a5d-89b6-42b30d1e64e5", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": true } ], @@ -60837,139 +70413,121 @@ ], "participants": [ { - "name": "IPSUM", - "endDate": "2023-02-24", - "startDate": "2021-11-04", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": false - }, - { + "uuid": "3ea2f95b-60f5-4987-a5c3-1c5e028b17b6", "name": "AMET, DOLOR SIT", - "endDate": "2022-08-12", - "startDate": "2014-11-28", + "endDate": "2023-09-14", + "startDate": "2017-10-19", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true }, { + "uuid": "f3ad72c1-3773-4bcc-a4d9-ceae3008850b", "name": "IPSUM", - "endDate": "2022-04-22", - "startDate": "2016-04-04", + "endDate": "2015-07-29", + "startDate": "2018-09-17", "notes": "", "roles": [ "EMPLOYEE" ], "siteRegistry": false - }, - { - "name": "AMET, DOLOR SIT", - "endDate": "2013-10-13", - "startDate": "2023-02-21", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": false - }, - { - "name": "AMET, DOLOR SIT", - "endDate": "2017-10-08", - "startDate": "2022-05-10", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": false } ], "suspectLandUses": [ { + "uuid": "a52330da-ee65-4e09-a501-8c5f45ce9a41", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2020-02-13 (described on Site Profile dated 2020-02-13)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "notes": "INSERTED FOR SITE PROFILE DATED 2019-07-05 (described on Site Profile dated 2019-07-05)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { + "uuid": "702d9c40-3e87-46f2-8ca2-b93c601622b3", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-06-19 (described on Site Profile dated 2019-06-19)", + "notes": "INSERTED FOR SITE PROFILE DATED 2014-04-26 (described on Site Profile dated 2014-04-26)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2013-11-29 (described on Site Profile dated 2013-11-29)", + "uuid": "9a3e4099-0439-427c-94d6-61ec05a5187c", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2019-02-11 (described on Site Profile dated 2019-02-11)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-02-28 (described on Site Profile dated 2022-02-28)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" - }, - { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-12-27 (described on Site Profile dated 2021-12-27)", + "uuid": "6a7054ed-c9ba-47fb-8607-ee18008cfb62", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2020-05-22 (described on Site Profile dated 2020-05-22)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], "parcelDescriptions": [ { - "siteRegistry": true, - "dateNoted": "2022-03-11", - "parcelID": "16603", - "crownLandUsePIN": "16792", - "crownLandFileNumber": "17036", - "landDescription": "LOT 4 OF LOT 4 BLOCK 4 DISTRICT LOT 4 PLAN 8704" + "uuid": "a7d1272b-84d4-4a87-8461-f1205ee9f690", + "siteRegistry": false, + "dateNoted": "2016-06-18", + "parcelID": "18210", + "crownLandUsePIN": "16732", + "crownLandFileNumber": "16495", + "landDescription": "LOT 3 OF LOT 2 BLOCK 4 DISTRICT LOT 5 PLAN 4934" }, { + "uuid": "439f8c5f-6387-4318-a500-e8532ac1fcd4", + "siteRegistry": false, + "dateNoted": "2014-12-24", + "parcelID": "18297", + "crownLandUsePIN": "20812", + "crownLandFileNumber": "15268", + "landDescription": "LOT 1 OF LOT 4 BLOCK 1 DISTRICT LOT 1 PLAN 4307" + }, + { + "uuid": "9b8b8e3e-31d9-4634-ab30-2b1cfad5df1c", "siteRegistry": true, - "dateNoted": "2019-01-21", - "parcelID": "19249", - "crownLandUsePIN": "15702", - "crownLandFileNumber": "20138", - "landDescription": "LOT 4 OF LOT 4 BLOCK 4 DISTRICT LOT 2 PLAN 4091" + "dateNoted": "2020-11-17", + "parcelID": "16513", + "crownLandUsePIN": "18245", + "crownLandFileNumber": "18138", + "landDescription": "LOT 1 OF LOT 1 BLOCK 4 DISTRICT LOT 5 PLAN 6109" }, { - "siteRegistry": false, - "dateNoted": "2018-06-29", - "parcelID": "17137", - "crownLandUsePIN": "15360", - "crownLandFileNumber": "15283", - "landDescription": "LOT 3 OF LOT 5 BLOCK 1 DISTRICT LOT 3 PLAN 6647" + "uuid": "ef7ca9ad-602c-458a-99f0-34ca83270d6c", + "siteRegistry": true, + "dateNoted": "2018-04-14", + "parcelID": "18183", + "crownLandUsePIN": "18841", + "crownLandFileNumber": "19703", + "landDescription": "LOT 3 OF LOT 3 BLOCK 1 DISTRICT LOT 5 PLAN 4977" } ], "siteDisclosures": [ { - "siteRegistry": true, - "dateReceived": "2023-07-24", - "dateCompleted": "2015-04-25", - "dateEntered": "2023-08-28", - "dateRegistrar": "2017-04-17", - "dateLocalAuthorityReceived": "2016-02-05", - "summary": "Aliquam ut fugit commodi autem nostrum.", - "informationUsed": "Explicabo laudantium ducimus eaque hic.\nVeniam quam molestiae aspernatur harum esse nostrum perferendis.\nFugit quasi distinctio placeat.\nDolorum reprehenderit minus eaque unde dolor nisi.", - "pastOrPresentOrders": "Vero accusamus ullam optio minima.\nIpsum aliquid necessitatibus voluptates reprehenderit tenetur.\nLaudantium omnis aliquid molestiae quis non blanditiis laboriosam.", + "uuid": "c5047477-f387-4201-acd2-f80ddee67c51", + "siteRegistry": false, + "dateReceived": "2019-10-10", + "dateCompleted": "2019-02-01", + "dateEntered": "2022-06-10", + "dateRegistrar": "2020-03-17", + "dateLocalAuthorityReceived": "2017-11-27", + "summary": "At aliquam nam occaecati natus.", + "informationUsed": "Perferendis esse ullam voluptate non suscipit suscipit.\nTempora facere architecto eum molestiae.\nMaxime natus fugit explicabo consequatur.\nQuod distinctio nulla ipsum esse consequuntur vitae voluptas.\nLabore ea officiis delectus tempore totam ducimus molestiae dolore.", + "pastOrPresentOrders": "Nam nesciunt nam et.", "commercialAndIndustrialPurposes": [ { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "uuid": "df3b49a0-b330-4788-9dfe-9cf4597a460b", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, { + "uuid": "586662ef-2511-493f-ba2b-a56556cb8902", "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false }, { + "uuid": "5d4dc49e-b718-4a4b-ae8f-c2e74f061955", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true - }, - { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false } ] @@ -60977,108 +70535,99 @@ ], "activityLog": [ { + "uuid": "6bd598df-59a9-4e03-83e0-7eed65bdbd32", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "WEHNER LOWELL", - "timestamp": "2016-06-10" + "user": "TOWNE DARLENE", + "timestamp": "2022-12-09" }, { + "uuid": "674cb38c-3625-453c-ac23-0bf666a86679", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "FRANECKI VALENTINA", - "timestamp": "2022-09-01" - }, - { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "CONNELLY LYDIA", - "timestamp": "2022-10-12" - }, - { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "KOSS KALEY", - "timestamp": "2018-05-29" + "user": "DECKOW AUGUSTUS", + "timestamp": "2020-05-10" }, { - "siteRegistry": true, + "uuid": "1c1e228a-2e41-42c9-bfdd-334b44b19aaa", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "SCHUSTER XZAVIER", - "timestamp": "2020-03-08" + "user": "KLOCKO JOSEPHINE", + "timestamp": "2021-07-28" }, { - "siteRegistry": true, + "uuid": "57f0b473-a5c5-4de2-bccb-21f66f717477", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "SAWAYN JANESSA", - "timestamp": "2014-04-16" + "user": "FISHER ISABELL", + "timestamp": "2013-12-23" }, { - "siteRegistry": true, + "uuid": "fc86bc44-ef36-463b-8c16-955435b97c2f", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "UPTON DAISY", - "timestamp": "2022-11-26" + "user": "ROHAN FAUSTO", + "timestamp": "2020-07-25" }, { + "uuid": "11a563d8-313e-4088-8efa-9ecd01d66505", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "BEAHAN EWALD", - "timestamp": "2022-04-27" + "user": "ABERNATHY ANNIE", + "timestamp": "2018-10-26" }, { + "uuid": "f75fbf7b-2606-47a9-95d9-d403d4770383", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "OKUNEVA JESS", - "timestamp": "2022-03-14" + "user": "FLATLEY ALEX", + "timestamp": "2018-04-04" }, { + "uuid": "d6548ce7-f94d-4bce-9aba-922748bd620e", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "ZULAUF DOYLE", - "timestamp": "2015-03-24" + "user": "TILLMAN CLEMMIE", + "timestamp": "2017-05-06" } ], "associatedSites": [ { - "dateNoted": "2016-06-11", - "notes": "", - "parcelID": "19204", - "siteID": "16335", - "siteRegistry": true - }, - { - "dateNoted": "2017-05-25", + "uuid": "24e36cfc-afb0-4a65-829b-36d71549e1d8", + "dateNoted": "2021-10-28", "notes": "", - "parcelID": "18787", - "siteID": "16604", - "siteRegistry": true + "parcelID": "17727", + "siteID": "19769", + "siteRegistry": false } ] }, { - "uuid": "8f5ee416-287d-4e4b-8e38-48ce40079023", - "siteID": 17081, - "address": "2086 Wilkinson Road", - "latitude": 50.0768, - "longitude": -121.2458, - "lastUpdated": "2023-09-18", - "city": "Angeloberg", - "region": "Thompson-Okanagan", - "victoriaFile": "26250-20/4031", + "uuid": "cd2925d1-b39c-425d-85e3-08a96f82267c", + "siteID": 19973, + "address": "3939 Sven Drives", + "latitude": 52.4552, + "longitude": -133.5053, + "lastUpdated": "2020-12-13", + "city": "New Jaronmouth", + "region": "Vancouver Island/Coast", + "victoriaFile": "26250-20/16503", "regionalFile": "N/A", "parcelIDs": [ - 5219144, - 8146653, - 3356611, - 4023680, - 8480917 + 5361600, + 8130999, + 4897495, + 6244527, + 2495159 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2020-11-04", - "completed": "2019-10-22", - "initiated": "2020-03-31", - "ministryContact": "CARTER MANDY", + "uuid": "d8438133-d8a6-4b44-bb41-3e91d52e21ee", + "createdAt": "2016-02-22", + "completed": "2020-06-03", + "initiated": "2021-04-05", + "ministryContact": "CHRISTIANSEN ALF", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -61087,133 +70636,44 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { + "uuid": "ebb551f2-28c8-44b6-b274-a98386b893f8", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", "siteRegistry": true - } - ], - "siteRegistry": false - }, - { - "createdAt": "2023-04-12", - "completed": "2021-03-02", - "initiated": "2023-08-23", - "ministryContact": "KEMMER ALBINA", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - } - ], - "siteRegistry": false - }, - { - "createdAt": "2019-07-01", - "completed": "2017-11-21", - "initiated": "2022-03-25", - "ministryContact": "KUB-SPINKA DIEGO", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { + "uuid": "397c11c4-45a2-474d-9d38-c289be7a7d49", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false }, { + "uuid": "83297579-8799-43bc-b792-9263930187d1", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false }, { + "uuid": "7ce9c461-e970-48de-88a9-2c31190b0a76", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - } - ], - "siteRegistry": false - }, - { - "createdAt": "2022-06-19", - "completed": "2020-01-27", - "initiated": "2019-07-05", - "ministryContact": "HOWELL STERLING", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { + "uuid": "5a4f6a6a-ecf3-43a9-8fcb-63366e0152b2", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2016-03-02", - "completed": "2016-11-16", - "initiated": "2023-06-06", - "ministryContact": "MOSCISKI UBALDO", + "uuid": "695d403e-13b8-4add-acb7-62577f0aa8fd", + "createdAt": "2014-07-03", + "completed": "2021-04-29", + "initiated": "2018-07-10", + "ministryContact": "CRONA CECELIA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -61222,11 +70682,13 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "791cc452-2d07-46c5-bb6a-f1ac87c46b07", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true }, { + "uuid": "65eb4275-36eb-4ad7-ac03-dbc74d9fdad8", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true @@ -61237,114 +70699,136 @@ ], "participants": [ { - "name": "IPSUM", - "endDate": "2018-11-18", - "startDate": "2023-04-02", + "uuid": "ee39a1d9-def5-4ce8-b346-1f5df12b34b8", + "name": "AMET, DOLOR SIT", + "endDate": "2014-11-26", + "startDate": "2018-02-06", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true }, { - "name": "AMET, DOLOR SIT", - "endDate": "2019-12-24", - "startDate": "2020-11-04", + "uuid": "d51786e1-edbc-4de9-9f6d-17672581aab9", + "name": "IPSUM", + "endDate": "2018-11-29", + "startDate": "2020-08-17", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true } ], "suspectLandUses": [ { + "uuid": "3d589dad-b491-4c11-8d0e-6c7e301445ee", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2020-04-13 (described on Site Profile dated 2020-04-13)", + "notes": "INSERTED FOR SITE PROFILE DATED 2018-08-24 (described on Site Profile dated 2018-08-24)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { + "uuid": "2522c876-eaa3-4f9c-b8f8-9fd7f5a608cd", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-08-30 (described on Site Profile dated 2016-08-30)", + "notes": "INSERTED FOR SITE PROFILE DATED 2015-11-24 (described on Site Profile dated 2015-11-24)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "uuid": "9eef81a3-6b45-4839-a9a6-16c94dec4676", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2017-01-24 (described on Site Profile dated 2017-01-24)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2023-05-01 (described on Site Profile dated 2023-05-01)", + "uuid": "4a187da7-bf7d-457c-9ae6-89a6d63b4fa7", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2022-07-27 (described on Site Profile dated 2022-07-27)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "uuid": "8d2133d5-7164-413b-a714-e08ad2a40fe4", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2013-10-17 (described on Site Profile dated 2013-10-17)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], "parcelDescriptions": [ { + "uuid": "09036052-d72b-491e-a9b7-0965f95e3c85", + "siteRegistry": true, + "dateNoted": "2022-09-28", + "parcelID": "15736", + "crownLandUsePIN": "16734", + "crownLandFileNumber": "19658", + "landDescription": "LOT 1 OF LOT 5 BLOCK 1 DISTRICT LOT 5 PLAN 4944" + }, + { + "uuid": "77fb1739-8534-4970-a3aa-5685ff369a8c", "siteRegistry": false, - "dateNoted": "2021-04-26", - "parcelID": "15502", - "crownLandUsePIN": "16295", - "crownLandFileNumber": "18529", - "landDescription": "LOT 1 OF LOT 4 BLOCK 4 DISTRICT LOT 4 PLAN 6878" + "dateNoted": "2014-12-12", + "parcelID": "18195", + "crownLandUsePIN": "19470", + "crownLandFileNumber": "19788", + "landDescription": "LOT 1 OF LOT 1 BLOCK 1 DISTRICT LOT 5 PLAN 4043" }, { + "uuid": "8f9bdac1-02c0-4d85-9866-a71ba4cc83ef", "siteRegistry": true, - "dateNoted": "2021-03-28", - "parcelID": "17209", - "crownLandUsePIN": "20991", - "crownLandFileNumber": "17692", - "landDescription": "LOT 5 OF LOT 5 BLOCK 5 DISTRICT LOT 4 PLAN 6282" + "dateNoted": "2022-09-15", + "parcelID": "17853", + "crownLandUsePIN": "16945", + "crownLandFileNumber": "19329", + "landDescription": "LOT 4 OF LOT 4 BLOCK 4 DISTRICT LOT 3 PLAN 4841" + }, + { + "uuid": "c05be34c-35fa-42c6-b64a-04493a4212e1", + "siteRegistry": false, + "dateNoted": "2019-08-31", + "parcelID": "17232", + "crownLandUsePIN": "17970", + "crownLandFileNumber": "17486", + "landDescription": "LOT 1 OF LOT 4 BLOCK 2 DISTRICT LOT 3 PLAN 8738" + }, + { + "uuid": "24471637-66d4-4226-9f8d-1091690ddb3d", + "siteRegistry": true, + "dateNoted": "2014-12-15", + "parcelID": "16775", + "crownLandUsePIN": "19865", + "crownLandFileNumber": "16466", + "landDescription": "LOT 5 OF LOT 3 BLOCK 2 DISTRICT LOT 5 PLAN 6928" } ], "siteDisclosures": [ { + "uuid": "c13440f6-808c-4163-a32a-3ed28f25e7c9", "siteRegistry": true, - "dateReceived": "2018-06-20", - "dateCompleted": "2021-02-22", - "dateEntered": "2018-01-16", - "dateRegistrar": "2016-08-13", - "dateLocalAuthorityReceived": "2015-10-27", - "summary": "Exercitationem voluptas iste harum deleniti.\nEum eum optio quibusdam.", - "informationUsed": "Dicta veniam voluptatum.\nConsequuntur velit nam odio maxime aspernatur.\nEt eius animi maxime odit voluptate voluptatibus dicta maiores.\nCulpa itaque iure cumque dignissimos quisquam nemo ea ab.", - "pastOrPresentOrders": "Magnam autem vel enim.", + "dateReceived": "2021-04-24", + "dateCompleted": "2018-09-11", + "dateEntered": "2019-09-03", + "dateRegistrar": "2020-08-28", + "dateLocalAuthorityReceived": "2023-10-04", + "summary": "Iure quae odio laudantium corporis earum accusamus.\nNihil qui pariatur eos deleniti ducimus fuga tempora corporis asperiores.", + "informationUsed": "Expedita tenetur laudantium ipsa rem distinctio fugiat voluptatibus id.\nTenetur optio at voluptatibus incidunt nam rem accusamus magni.\nEius atque velit nobis magnam nobis consequuntur.\nAperiam quidem reprehenderit eius cum.", + "pastOrPresentOrders": "Tempora sed voluptatem cumque vero eum.\nOdio repudiandae delectus molestias culpa temporibus molestiae autem molestiae provident.", "commercialAndIndustrialPurposes": [ { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false - }, - { + "uuid": "5e507bc9-cf7b-48a1-b9d2-ca1f2a6b410c", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true + "siteRegistry": false }, { + "uuid": "5e7b3ff5-ecf3-4b32-8c5d-ed326854fb46", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true - } - ] - }, - { - "siteRegistry": true, - "dateReceived": "2018-01-24", - "dateCompleted": "2017-08-13", - "dateEntered": "2021-06-17", - "dateRegistrar": "2019-01-28", - "dateLocalAuthorityReceived": "2022-12-29", - "summary": "Aut dolor non accusamus fugiat ducimus harum aliquam.\nVitae nulla dicta cumque.\nFugit quasi corporis necessitatibus eaque quas aliquam corporis.", - "informationUsed": "Maxime voluptates doloremque saepe nihil.\nQuasi accusamus quasi labore.\nDeserunt debitis ipsum alias repellat inventore.", - "pastOrPresentOrders": "Exercitationem praesentium animi assumenda.\nQuis veniam incidunt magni quisquam.", - "commercialAndIndustrialPurposes": [ - { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true - }, - { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true }, { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "uuid": "3db587db-75c1-4da4-b7a5-ca58a53e0fee", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false } ] @@ -61352,71 +70836,78 @@ ], "activityLog": [ { - "siteRegistry": false, + "uuid": "7e83d139-85b2-403d-8056-6d05971306cf", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "MERTZ ATHENA", - "timestamp": "2014-08-26" + "user": "KRIS MADYSON", + "timestamp": "2020-07-14" }, { + "uuid": "0b107e90-889e-4900-8171-727964cd48bb", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "SCHAEFER NOEMI", - "timestamp": "2014-10-15" + "user": "FUNK NORWOOD", + "timestamp": "2019-03-03" }, { - "siteRegistry": true, + "uuid": "ec5a2d88-3cc0-4386-8fe7-09f1b63c0f98", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "TRANTOW KALE", - "timestamp": "2016-08-10" + "user": "QUITZON ZOE", + "timestamp": "2018-01-26" }, { - "siteRegistry": false, + "uuid": "5f5434d3-ba1f-41d6-9271-149766ae65e1", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "TILLMAN JULIE", - "timestamp": "2022-10-27" + "user": "KUTCH DAVE", + "timestamp": "2014-05-17" }, { - "siteRegistry": true, + "uuid": "711954f9-5ebd-4505-ab30-44e2eb807beb", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "BAUCH ANTONE", - "timestamp": "2019-11-17" + "user": "HARVEY RUBY", + "timestamp": "2020-01-22" } ], "associatedSites": [ { - "dateNoted": "2021-01-31", + "uuid": "cf4ce24d-6a97-467d-95f1-c5519170401b", + "dateNoted": "2014-06-02", "notes": "", - "parcelID": "16572", - "siteID": "19562", + "parcelID": "16853", + "siteID": "19897", "siteRegistry": true } ] }, { - "uuid": "55215439-6865-4aaa-b821-e4b7daa24729", - "siteID": 18318, - "address": "610 Sawayn Crest", - "latitude": 55.9733, - "longitude": -136.4085, - "lastUpdated": "2014-09-08", - "city": "Greeley", - "region": " North Coast", - "victoriaFile": "26250-20/8711", + "uuid": "4605c6e4-398c-46e5-849d-ed0f076fef7c", + "siteID": 17673, + "address": "4594 Ernser Crossing", + "latitude": 57.1722, + "longitude": -125.4493, + "lastUpdated": "2019-06-14", + "city": "East Amanda", + "region": "Cariboo", + "victoriaFile": "26250-20/7459", "regionalFile": "N/A", "parcelIDs": [ - 171322, - 2309176, - 4567632, - 5777920, - 1651152 + 8463058, + 5000517, + 5238452, + 5738122, + 767392 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2014-03-23", - "completed": "2016-01-16", - "initiated": "2020-05-26", - "ministryContact": "ROWE ADRAIN", + "uuid": "6670e97d-7922-46f1-b494-9defe6a86c1d", + "createdAt": "2017-12-21", + "completed": "2017-03-06", + "initiated": "2016-12-23", + "ministryContact": "QUITZON JED", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -61425,38 +70916,66 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "uuid": "5206e6e5-8dfe-4527-a818-6c3bc4cec258", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", + "uuid": "cf0865c4-3eae-4882-bd61-3c32d7272e0a", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "uuid": "04766463-babf-4258-ba47-b230a7216f08", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "uuid": "7b61687d-1d3a-4a6a-bbde-bf7d0dcb97f8", + "createdAt": "2020-07-21", + "completed": "2018-03-24", + "initiated": "2020-06-13", + "ministryContact": "REYNOLDS NOEMI", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "uuid": "df9a9d8c-48e0-4d26-abf4-91a624e695ff", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "04974ad8-63fc-4754-908b-af84bbf86f68", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true }, { + "uuid": "01ae7461-b6b8-4e0e-9e9b-64f507ac13fa", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true } ], "siteRegistry": false }, { - "createdAt": "2013-10-25", - "completed": "2017-12-08", - "initiated": "2014-07-12", - "ministryContact": "HARVEY AIMEE", + "uuid": "19ad39bf-3d9f-4b76-88b7-f6e61198d07f", + "createdAt": "2017-04-08", + "completed": "2014-12-08", + "initiated": "2020-10-10", + "ministryContact": "KUHLMAN PATRICIA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -61465,19 +70984,62 @@ ], "notationParticipants": [ { + "uuid": "17e6e75c-0eb7-4829-b49d-57c6b41d8b69", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": true }, { + "uuid": "a91a4bef-0a42-4bde-827c-db2b3626efcb", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "4f79496e-80d5-432d-ab37-c16561e860e0", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false }, { + "uuid": "2ef70a56-d4b3-4de3-8f42-8bc19c3c88f4", "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "uuid": "7c248f23-e189-44d7-85f7-77858f3b3237", + "createdAt": "2017-08-07", + "completed": "2020-04-24", + "initiated": "2018-05-23", + "ministryContact": "JOHNSON EMILIO", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "uuid": "63ee4b43-8e5d-4fa3-bb0d-accb4c956921", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true + }, + { + "uuid": "41d03fae-fc01-4b3d-8bf9-3b2b2dc94ba6", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "b22c60d0-249d-4a76-83a3-ee32e5934e72", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true } ], "siteRegistry": false @@ -61485,9 +71047,10 @@ ], "participants": [ { - "name": "AMET, DOLOR SIT", - "endDate": "2019-07-22", - "startDate": "2020-12-27", + "uuid": "e5895080-cddc-4e95-8a6b-c378a0ecb358", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2019-09-06", + "startDate": "2022-12-25", "notes": "", "roles": [ "EMPLOYEE" @@ -61495,112 +71058,152 @@ "siteRegistry": true }, { + "uuid": "69edad78-3246-4a26-8437-7d982fd6078a", "name": "SHELL CANADA PRODUCTS", - "endDate": "2021-10-08", - "startDate": "2014-09-24", + "endDate": "2015-01-28", + "startDate": "2014-06-22", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2017-04-19", - "startDate": "2021-08-18", + "uuid": "66c489b6-195e-460e-991c-6f9fefb95583", + "name": "AMET, DOLOR SIT", + "endDate": "2022-10-23", + "startDate": "2021-06-28", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true }, { + "uuid": "c8472aba-3381-46de-8f64-76ebb8301b1a", "name": "SHELL CANADA PRODUCTS", - "endDate": "2022-04-09", - "startDate": "2018-10-22", + "endDate": "2021-12-26", + "startDate": "2017-01-21", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": true + }, + { + "uuid": "7696631d-5ccc-4ee4-9d2a-d0c1e4ea2db5", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2021-10-17", + "startDate": "2014-08-25", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false } ], "suspectLandUses": [ { + "uuid": "14c376b9-0b37-4bff-aa9a-4054857ee710", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-10-23 (described on Site Profile dated 2019-10-23)", + "notes": "INSERTED FOR SITE PROFILE DATED 2021-06-17 (described on Site Profile dated 2021-06-17)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { + "uuid": "2e6e6a60-e102-45c4-8aac-ba48146a8c30", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-08-04 (described on Site Profile dated 2016-08-04)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "notes": "INSERTED FOR SITE PROFILE DATED 2023-09-20 (described on Site Profile dated 2023-09-20)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2023-03-22 (described on Site Profile dated 2023-03-22)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "uuid": "0579b622-96bf-475e-b0fb-8af3e69803ff", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2021-08-04 (described on Site Profile dated 2021-08-04)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { + "uuid": "61a0228f-9755-4808-8a17-8fbe51f2bb73", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-09-15 (described on Site Profile dated 2015-09-15)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "notes": "INSERTED FOR SITE PROFILE DATED 2019-07-19 (described on Site Profile dated 2019-07-19)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], "parcelDescriptions": [ { + "uuid": "2f6d8204-1112-417a-856d-f1c7bc812a7c", "siteRegistry": true, - "dateNoted": "2017-12-16", - "parcelID": "17062", - "crownLandUsePIN": "20175", - "crownLandFileNumber": "18447", - "landDescription": "LOT 5 OF LOT 3 BLOCK 5 DISTRICT LOT 2 PLAN 3955" + "dateNoted": "2017-06-11", + "parcelID": "17363", + "crownLandUsePIN": "20053", + "crownLandFileNumber": "19914", + "landDescription": "LOT 1 OF LOT 4 BLOCK 3 DISTRICT LOT 1 PLAN 6726" }, { - "siteRegistry": false, - "dateNoted": "2022-04-19", - "parcelID": "17092", - "crownLandUsePIN": "19434", - "crownLandFileNumber": "17053", - "landDescription": "LOT 4 OF LOT 1 BLOCK 2 DISTRICT LOT 4 PLAN 8005" + "uuid": "695c94ef-45e3-48ca-90b8-889869e9616d", + "siteRegistry": true, + "dateNoted": "2020-05-10", + "parcelID": "15991", + "crownLandUsePIN": "19815", + "crownLandFileNumber": "18488", + "landDescription": "LOT 1 OF LOT 2 BLOCK 4 DISTRICT LOT 2 PLAN 6490" }, { + "uuid": "942af08f-d69d-4339-8f80-4a4fe532ad41", "siteRegistry": true, - "dateNoted": "2020-02-10", - "parcelID": "19486", - "crownLandUsePIN": "19831", - "crownLandFileNumber": "20784", - "landDescription": "LOT 1 OF LOT 4 BLOCK 4 DISTRICT LOT 3 PLAN 5415" + "dateNoted": "2022-05-18", + "parcelID": "16708", + "crownLandUsePIN": "16078", + "crownLandFileNumber": "18187", + "landDescription": "LOT 4 OF LOT 4 BLOCK 1 DISTRICT LOT 3 PLAN 4992" }, { + "uuid": "db56da9e-8a17-48aa-afc8-52d64638834a", "siteRegistry": true, - "dateNoted": "2020-09-15", - "parcelID": "19626", - "crownLandUsePIN": "18377", - "crownLandFileNumber": "20204", - "landDescription": "LOT 4 OF LOT 3 BLOCK 5 DISTRICT LOT 5 PLAN 6441" + "dateNoted": "2015-05-12", + "parcelID": "18638", + "crownLandUsePIN": "20566", + "crownLandFileNumber": "19651", + "landDescription": "LOT 2 OF LOT 1 BLOCK 3 DISTRICT LOT 3 PLAN 9608" + }, + { + "uuid": "5f6eb0bf-0c2d-45f7-b0a2-b2fea3366a2d", + "siteRegistry": false, + "dateNoted": "2014-01-23", + "parcelID": "15987", + "crownLandUsePIN": "19643", + "crownLandFileNumber": "17248", + "landDescription": "LOT 1 OF LOT 3 BLOCK 2 DISTRICT LOT 3 PLAN 9762" } ], "siteDisclosures": [ { - "siteRegistry": true, - "dateReceived": "2015-07-19", - "dateCompleted": "2022-04-13", - "dateEntered": "2021-02-26", - "dateRegistrar": "2017-11-04", - "dateLocalAuthorityReceived": "2014-12-30", - "summary": "Quo quo rerum distinctio voluptatum quod perspiciatis.\nOdit ex sit odit maxime est deserunt nihil asperiores.", - "informationUsed": "Fuga necessitatibus consectetur dolorum itaque deserunt architecto dolorem consequuntur labore.\nIllum laborum a.\nNisi accusamus similique quam nisi.\nEaque harum quae.\nFugiat soluta quam aperiam placeat harum tempora debitis aliquid alias.", - "pastOrPresentOrders": "Reprehenderit placeat exercitationem esse soluta magnam sapiente exercitationem quos saepe.", + "uuid": "4d1db4b6-d3bf-45f6-b8cc-d4b0225dbe3a", + "siteRegistry": false, + "dateReceived": "2020-04-05", + "dateCompleted": "2017-04-03", + "dateEntered": "2018-03-10", + "dateRegistrar": "2017-10-10", + "dateLocalAuthorityReceived": "2014-11-10", + "summary": "Esse quaerat rem sunt.\nSapiente quo reiciendis incidunt nisi rem sunt saepe unde.", + "informationUsed": "Unde consequuntur corrupti asperiores adipisci maiores ratione doloremque explicabo praesentium.\nVitae ipsa sapiente incidunt.\nQuaerat ipsam nulla rerum omnis alias voluptate maxime.\nIusto rerum quisquam perspiciatis quisquam qui placeat molestias.", + "pastOrPresentOrders": "Perspiciatis doloribus quas.\nEst optio deserunt voluptatum hic sint repudiandae neque.", "commercialAndIndustrialPurposes": [ { - "scheduleReference": "F1*", + "uuid": "4d6a3e98-d016-406e-a717-fa59a946696a", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false }, { + "uuid": "4245990d-cb10-4b5c-8589-f16b167a1e52", "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "uuid": "b95e6b0b-4841-4c79-9338-2329f13fc240", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false } ] @@ -61608,83 +71211,94 @@ ], "activityLog": [ { + "uuid": "5b430c68-d8e9-4b8a-8ad3-6154ac62a9b0", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "MANTE AMIRA", - "timestamp": "2023-05-22" + "user": "GERHOLD ALISA", + "timestamp": "2020-08-24" }, { + "uuid": "c620e11a-39ac-4100-b19a-917b1a27d3e5", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "POUROS DANA", - "timestamp": "2023-07-16" - }, - { - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "POWLOWSKI CAMRON", - "timestamp": "2020-10-20" + "user": "CRONA JUNIUS", + "timestamp": "2017-04-28" }, { + "uuid": "bbf4e903-df70-4621-be8a-b53bbbcd2666", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "HIRTHE GEORGIANNA", - "timestamp": "2014-01-20" - }, - { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "GUTKOWSKI VITA", - "timestamp": "2023-02-20" + "user": "TRANTOW ORAN", + "timestamp": "2015-11-29" }, { + "uuid": "9d9d0c3f-6207-429c-b231-7faa9adc4204", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "DENESIK JACLYN", - "timestamp": "2021-07-23" + "user": "MARKS VENA", + "timestamp": "2021-02-24" }, { + "uuid": "c7e946ae-879c-4b5c-b40d-b44b697d63c1", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "GLEICHNER CALEIGH", - "timestamp": "2014-01-10" + "user": "HALVORSON MARTINE", + "timestamp": "2019-12-20" } ], "associatedSites": [ { - "dateNoted": "2018-11-22", + "uuid": "9ca923d8-c346-48c1-b684-8004b3a0b1a9", + "dateNoted": "2016-12-09", "notes": "", - "parcelID": "16221", - "siteID": "18801", + "parcelID": "18129", + "siteID": "17327", + "siteRegistry": true + }, + { + "uuid": "a42d3f66-eb6a-4b50-8c2d-892920c24f36", + "dateNoted": "2022-02-17", + "notes": "", + "parcelID": "20763", + "siteID": "20362", "siteRegistry": true + }, + { + "uuid": "357b142a-39eb-4133-94be-773b58919087", + "dateNoted": "2014-08-16", + "notes": "", + "parcelID": "17333", + "siteID": "20510", + "siteRegistry": false } ] }, { - "uuid": "427863a2-6062-45ae-8c86-116e505b0f98", - "siteID": 18134, - "address": "8826 Kuhn Inlet", - "latitude": 49.1483, - "longitude": -133.7441, - "lastUpdated": "2019-06-18", - "city": "Lake Alizatown", - "region": "Thompson-Okanagan", - "victoriaFile": "26250-20/14812", + "uuid": "552e064d-9498-4cea-945f-43904099538c", + "siteID": 17418, + "address": "198 Jenkins Hollow", + "latitude": 56.5748, + "longitude": -137.9579, + "lastUpdated": "2015-05-23", + "city": "Aliso Viejo", + "region": "Cariboo", + "victoriaFile": "26250-20/5101", "regionalFile": "N/A", "parcelIDs": [ - 8231535, - 1120091, - 842613, - 2194184, - 516829 + 2215751, + 7579520, + 1403738, + 1630408, + 663851 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2014-01-21", - "completed": "2017-01-07", - "initiated": "2018-01-20", - "ministryContact": "ZIEME ELISEO", + "uuid": "e8ab21b5-d86d-4bfb-b5c8-3361ae7837ec", + "createdAt": "2016-08-08", + "completed": "2015-03-07", + "initiated": "2019-12-22", + "ministryContact": "BEER BERTA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -61693,38 +71307,60 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "uuid": "dece95ec-1f59-49c7-b792-e465c653cb4d", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", "siteRegistry": true }, { + "uuid": "cb2b29b2-f8f2-47a7-86fc-b29ae84e09f8", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false - }, + } + ], + "siteRegistry": true + }, + { + "uuid": "917c28f3-6794-4335-ae6d-dd6d4f431c68", + "createdAt": "2023-05-17", + "completed": "2019-01-15", + "initiated": "2021-09-23", + "ministryContact": "DICKENS AKEEM", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ { + "uuid": "3f20040f-6771-4353-9de6-e41915c4f2ff", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true }, { + "uuid": "0ecea1ba-a402-456a-8edf-efa69cda9996", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false + "role": "REQUESTED BY", + "siteRegistry": true }, { + "uuid": "888ff5e0-4f21-4c22-9c6c-fdfbdde90c08", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true } ], "siteRegistry": true }, { - "createdAt": "2018-10-11", - "completed": "2017-11-18", - "initiated": "2019-01-22", - "ministryContact": "RITCHIE ISAI", + "uuid": "d1c857e9-117e-4129-b031-e7eaf17904ec", + "createdAt": "2014-09-14", + "completed": "2019-11-16", + "initiated": "2020-03-11", + "ministryContact": "SCHUSTER JEANIE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -61733,14 +71369,16 @@ ], "notationParticipants": [ { + "uuid": "86edcfe1-c99a-4b1c-ac9c-675f521d995e", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false }, { + "uuid": "f8c39a39-eed5-417e-9db2-b09176f77621", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false } ], "siteRegistry": true @@ -61748,9 +71386,10 @@ ], "participants": [ { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2018-05-22", - "startDate": "2019-12-09", + "uuid": "7f36962c-ade6-4ded-abb8-478c608e389c", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2020-07-04", + "startDate": "2018-10-31", "notes": "", "roles": [ "ORGANIZATION" @@ -61758,9 +71397,10 @@ "siteRegistry": true }, { - "name": "AMET, DOLOR SIT", - "endDate": "2015-04-09", - "startDate": "2020-08-19", + "uuid": "f27cbd99-35c3-4882-9e3d-c0d014663de6", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2021-01-19", + "startDate": "2018-01-25", "notes": "", "roles": [ "ORGANIZATION" @@ -61768,216 +71408,215 @@ "siteRegistry": true }, { + "uuid": "47632201-4bcc-4ba4-aa79-ff987adf87bf", "name": "AMET, DOLOR SIT", - "endDate": "2016-02-01", - "startDate": "2021-08-18", + "endDate": "2014-10-13", + "startDate": "2018-10-13", "notes": "", "roles": [ "EMPLOYEE" ], "siteRegistry": false - } - ], - "suspectLandUses": [ - { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2023-03-23 (described on Site Profile dated 2023-03-23)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-06-10 (described on Site Profile dated 2014-06-10)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "uuid": "d19f274e-88b2-494d-aa5d-b2c18d3eac40", + "name": "AMET, DOLOR SIT", + "endDate": "2021-03-26", + "startDate": "2023-04-11", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true }, { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-07-29 (described on Site Profile dated 2016-07-29)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" - }, + "uuid": "4c38299f-9af9-480e-b90a-a9ac900c55c7", + "name": "IPSUM", + "endDate": "2016-10-07", + "startDate": "2022-10-15", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + } + ], + "suspectLandUses": [ { + "uuid": "66fd507e-e5c2-4407-a1e7-82e2d3860f47", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-09-10 (described on Site Profile dated 2014-09-10)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "notes": "INSERTED FOR SITE PROFILE DATED 2019-12-06 (described on Site Profile dated 2019-12-06)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { + "uuid": "32b8c000-f560-44c6-b337-167445d093b8", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-09-01 (described on Site Profile dated 2014-09-01)", + "notes": "INSERTED FOR SITE PROFILE DATED 2021-02-04 (described on Site Profile dated 2021-02-04)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], "parcelDescriptions": [ { - "siteRegistry": true, - "dateNoted": "2021-11-06", - "parcelID": "19029", - "crownLandUsePIN": "19702", - "crownLandFileNumber": "16554", - "landDescription": "LOT 5 OF LOT 1 BLOCK 5 DISTRICT LOT 3 PLAN 7072" + "uuid": "f0e0184a-534f-48d3-b982-88520f5952b4", + "siteRegistry": false, + "dateNoted": "2022-04-11", + "parcelID": "15670", + "crownLandUsePIN": "15408", + "crownLandFileNumber": "15552", + "landDescription": "LOT 2 OF LOT 3 BLOCK 2 DISTRICT LOT 2 PLAN 5903" }, { + "uuid": "126f7bf0-47d0-47c9-99a1-529ef3078483", "siteRegistry": false, - "dateNoted": "2021-08-31", - "parcelID": "16550", - "crownLandUsePIN": "15424", - "crownLandFileNumber": "15259", - "landDescription": "LOT 4 OF LOT 5 BLOCK 5 DISTRICT LOT 2 PLAN 4393" + "dateNoted": "2017-09-29", + "parcelID": "20798", + "crownLandUsePIN": "17691", + "crownLandFileNumber": "19887", + "landDescription": "LOT 2 OF LOT 4 BLOCK 1 DISTRICT LOT 1 PLAN 3958" }, { - "siteRegistry": true, - "dateNoted": "2019-08-30", - "parcelID": "17783", - "crownLandUsePIN": "20192", - "crownLandFileNumber": "16921", - "landDescription": "LOT 4 OF LOT 5 BLOCK 5 DISTRICT LOT 3 PLAN 5379" + "uuid": "afb07ff0-a29e-441c-beef-cd0454d1bf16", + "siteRegistry": false, + "dateNoted": "2014-11-15", + "parcelID": "17605", + "crownLandUsePIN": "20359", + "crownLandFileNumber": "17968", + "landDescription": "LOT 4 OF LOT 3 BLOCK 3 DISTRICT LOT 2 PLAN 4132" }, { - "siteRegistry": false, - "dateNoted": "2022-05-05", - "parcelID": "17924", - "crownLandUsePIN": "15781", - "crownLandFileNumber": "18602", - "landDescription": "LOT 1 OF LOT 1 BLOCK 5 DISTRICT LOT 1 PLAN 5943" + "uuid": "35cca8bc-4a8d-4b99-a8be-b3e70b07b8a6", + "siteRegistry": true, + "dateNoted": "2021-02-01", + "parcelID": "18750", + "crownLandUsePIN": "19995", + "crownLandFileNumber": "17428", + "landDescription": "LOT 4 OF LOT 5 BLOCK 2 DISTRICT LOT 1 PLAN 4518" } ], "siteDisclosures": [ { + "uuid": "5d294ac9-02de-4045-9c0c-0fbe71aa5380", "siteRegistry": true, - "dateReceived": "2021-04-28", - "dateCompleted": "2023-06-15", - "dateEntered": "2017-05-18", - "dateRegistrar": "2016-11-09", - "dateLocalAuthorityReceived": "2017-12-15", - "summary": "Tempora illum suscipit possimus maxime distinctio earum.", - "informationUsed": "Eligendi expedita eum architecto ullam.\nIllum perspiciatis assumenda consectetur neque nisi veniam excepturi laudantium.\nAliquam dolorum suscipit ad corporis beatae magnam quasi facilis consectetur.", - "pastOrPresentOrders": "Molestias consectetur libero id ducimus recusandae.\nPerspiciatis explicabo quaerat natus.\nPariatur atque praesentium quae necessitatibus.", - "commercialAndIndustrialPurposes": [ - { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true - }, - { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false - } - ] - }, - { - "siteRegistry": true, - "dateReceived": "2019-12-14", - "dateCompleted": "2017-04-11", - "dateEntered": "2016-02-11", - "dateRegistrar": "2016-06-14", - "dateLocalAuthorityReceived": "2014-08-09", - "summary": "Impedit corrupti architecto ex earum necessitatibus modi quam qui sed.\nIllum sed laudantium odit sit velit amet porro.\nCulpa officiis natus.", - "informationUsed": "Dolorem ex omnis sapiente quisquam placeat quia quisquam autem perspiciatis.\nExcepturi dolorem odio sed at.\nUnde fuga aliquid voluptas quasi exercitationem.\nTotam delectus maiores praesentium iusto id.\nDolores placeat natus doloremque voluptatibus nobis earum excepturi hic autem.", - "pastOrPresentOrders": "Rem hic maxime facilis impedit a vitae praesentium.\nCum totam architecto ipsam perspiciatis modi dolor aperiam.\nVoluptatibus dolore aut possimus.", + "dateReceived": "2019-10-17", + "dateCompleted": "2019-10-22", + "dateEntered": "2015-01-31", + "dateRegistrar": "2016-03-12", + "dateLocalAuthorityReceived": "2020-05-31", + "summary": "Molestias quas sapiente beatae.", + "informationUsed": "Laborum minus eaque nobis similique sapiente iste mollitia suscipit autem.\nVoluptatibus quisquam aspernatur voluptatem totam velit vitae facere dolor.\nIllum nesciunt aut id laudantium deleniti ab magnam reiciendis.", + "pastOrPresentOrders": "Expedita nemo tempora officia.\nDelectus blanditiis incidunt quibusdam impedit cumque libero.\nAb iusto deleniti animi ipsa mollitia.", "commercialAndIndustrialPurposes": [ { - "scheduleReference": "F1*", + "uuid": "bfd7912f-5279-4f16-9cfc-2e83759b74ec", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false }, { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true - }, - { - "scheduleReference": "F1*", + "uuid": "6adff297-37c7-47b8-9a6d-3621570b4c8a", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false + "siteRegistry": true } ] } ], "activityLog": [ { + "uuid": "9d693134-bd9f-4729-aded-6570741026c8", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "SCHUMM LIANA", - "timestamp": "2017-04-28" + "user": "KOVACEK ALLY", + "timestamp": "2016-05-04" }, { + "uuid": "f9438d42-89da-404f-a609-0c818c52b46d", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "LITTEL KAMRON", - "timestamp": "2019-02-09" + "user": "CARTER CAROLYN", + "timestamp": "2018-08-08" }, { - "siteRegistry": false, + "uuid": "85ec0baf-5e75-4ef5-a65b-1ec83fcf9f1c", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "BARTELL HEIDI", - "timestamp": "2015-10-29" + "user": "GORCZANY FRED", + "timestamp": "2022-09-22" }, { - "siteRegistry": true, + "uuid": "64e2b854-db4d-4fb0-aa78-ce668a9ad8fb", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "GRIMES MYA", - "timestamp": "2015-10-04" + "user": "GRADY AIDEN", + "timestamp": "2023-05-17" }, { + "uuid": "fc3e3fb7-1a19-45d0-a020-e0e7eaccf9a7", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "NADER DRAKE", - "timestamp": "2016-08-29" + "user": "GLOVER GREEN", + "timestamp": "2021-09-12" }, { - "siteRegistry": true, + "uuid": "1624e037-2173-410f-b9b8-5f989b692ede", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "ROBEL ANASTACIO", - "timestamp": "2014-03-11" + "user": "RUNOLFSSON HANNA", + "timestamp": "2023-02-02" }, { - "siteRegistry": false, + "uuid": "b751ce31-f2a2-4b76-81f5-c9f7d176dfac", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "HUDSON SANDRINE", - "timestamp": "2023-05-13" + "user": "HANSEN GEOFFREY", + "timestamp": "2020-06-13" } ], "associatedSites": [ { - "dateNoted": "2022-06-24", + "uuid": "aac0308c-5d8a-415c-b159-6e0350625e2d", + "dateNoted": "2013-11-05", "notes": "", - "parcelID": "16585", - "siteID": "20555", + "parcelID": "18465", + "siteID": "17701", "siteRegistry": false }, { - "dateNoted": "2018-03-27", + "uuid": "e0b137ef-9af2-4e78-9a7e-24ab7d4302f0", + "dateNoted": "2023-03-19", "notes": "", - "parcelID": "15664", - "siteID": "17950", - "siteRegistry": false + "parcelID": "18465", + "siteID": "15432", + "siteRegistry": true } ] }, { - "uuid": "5af00e8f-fbd1-4562-995e-168a2ac505a5", - "siteID": 18547, - "address": "352 Alvina Greens", - "latitude": 54.1838, - "longitude": -118.4317, - "lastUpdated": "2020-06-26", - "city": "Bernhardstad", - "region": "Vancouver Island/Coast", - "victoriaFile": "26250-20/1513", + "uuid": "3f583e33-917f-42fe-987a-accdd6de8fab", + "siteID": 19713, + "address": "957 Rippin Heights", + "latitude": 50.3469, + "longitude": -123.5003, + "lastUpdated": "2016-07-14", + "city": "East Hilbertbury", + "region": " North Coast", + "victoriaFile": "26250-20/12450", "regionalFile": "N/A", "parcelIDs": [ - 917928, - 4589049, - 5007959, - 8577122, - 1956489 + 8740530, + 5488943, + 8107500, + 3342938, + 2439153 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2023-05-07", - "completed": "2016-10-09", - "initiated": "2020-06-26", - "ministryContact": "O'HARA NYAH", + "uuid": "96e84f32-427d-410d-bcd6-13f248ca4bb8", + "createdAt": "2017-03-15", + "completed": "2019-12-19", + "initiated": "2016-11-12", + "ministryContact": "GREENFELDER OMA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -61986,23 +71625,32 @@ ], "notationParticipants": [ { + "uuid": "c8c6978d-0437-45ee-8c79-134cd36caf79", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "efbe6aea-3554-4061-b50b-a5a026497cf0", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true }, { + "uuid": "32a3288c-1614-4b6a-8166-41209128f405", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": true } ], "siteRegistry": false }, { - "createdAt": "2016-02-28", - "completed": "2017-10-13", - "initiated": "2020-01-03", - "ministryContact": "KIEHN GARTH", + "uuid": "b0d9f656-8fa0-4901-ae3b-4d1ec865138f", + "createdAt": "2016-11-25", + "completed": "2020-06-10", + "initiated": "2017-12-27", + "ministryContact": "KAUTZER CLAUDINE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -62011,24 +71659,68 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", + "uuid": "23627e1e-4f81-47de-97d7-556002fc796f", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { + "uuid": "357f5e35-9357-4526-9ba9-97f9f0a73476", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true }, { + "uuid": "2f698c90-4e53-4d1b-9154-b3ce124824ef", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "uuid": "21d27b88-f0b5-4a0b-866c-ac3dd29d9b02", + "createdAt": "2016-10-29", + "completed": "2017-05-14", + "initiated": "2019-01-21", + "ministryContact": "TROMP KRISTOPHER", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "uuid": "d1d9b3c7-0ab3-4f95-b85b-04c30a7346a1", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "uuid": "b2bf1af1-db21-4dfc-b65b-49605d94a948", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false }, { + "uuid": "bdab3c22-fa04-4730-b14b-264bc481f193", "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "uuid": "95b70e76-1eb0-41cc-a616-a7f8782b3c2f", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false + }, + { + "uuid": "efd0ec6a-5d39-42ab-ab9e-4abe56625556", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false } ], "siteRegistry": true @@ -62036,265 +71728,284 @@ ], "participants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2015-02-11", - "startDate": "2017-11-16", + "uuid": "15a4bc08-5213-4246-b159-70d20cbcf2c7", + "name": "IPSUM", + "endDate": "2016-08-27", + "startDate": "2018-05-21", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": false }, { + "uuid": "4c9729d1-7326-4011-955a-91d7bbc457ba", "name": "IPSUM", - "endDate": "2023-04-01", - "startDate": "2018-07-30", + "endDate": "2016-08-02", + "startDate": "2015-05-06", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": true }, { - "name": "AMET, DOLOR SIT", - "endDate": "2020-10-24", - "startDate": "2014-06-07", + "uuid": "5ba294fc-4f40-473e-9102-e965322a6055", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2020-08-01", + "startDate": "2015-06-03", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": true + "siteRegistry": false }, { - "name": "IPSUM", - "endDate": "2018-11-21", - "startDate": "2016-09-09", + "uuid": "ec37cc88-19c4-4c26-b967-9f773793f7fd", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2017-04-10", + "startDate": "2021-11-27", "notes": "", "roles": [ "EMPLOYEE" ], "siteRegistry": true - }, - { - "name": "IPSUM", - "endDate": "2023-02-18", - "startDate": "2015-11-29", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": false } ], "suspectLandUses": [ { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-07-22 (described on Site Profile dated 2015-07-22)", + "uuid": "615e670e-2408-456b-8a6e-e6207cdce811", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2020-11-05 (described on Site Profile dated 2020-11-05)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { + "uuid": "bc925c87-0c53-4bea-a58b-9d390c8ab976", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2015-01-05 (described on Site Profile dated 2015-01-05)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "uuid": "869e297c-5a66-4a1d-8714-9f5b78d9973e", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-12-25 (described on Site Profile dated 2019-12-25)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "notes": "INSERTED FOR SITE PROFILE DATED 2018-06-14 (described on Site Profile dated 2018-06-14)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { + "uuid": "5057b722-d99f-42fa-9566-df1776560515", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2023-02-13 (described on Site Profile dated 2023-02-13)", + "notes": "INSERTED FOR SITE PROFILE DATED 2019-05-08 (described on Site Profile dated 2019-05-08)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-05-23 (described on Site Profile dated 2018-05-23)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "uuid": "82e2fdac-abd2-4c05-a65a-38c194f76045", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2017-09-03 (described on Site Profile dated 2017-09-03)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], "parcelDescriptions": [ { + "uuid": "26a0bf78-64ca-4956-99df-1abe3c6ae989", "siteRegistry": false, - "dateNoted": "2022-02-24", - "parcelID": "20364", - "crownLandUsePIN": "17610", - "crownLandFileNumber": "17443", - "landDescription": "LOT 4 OF LOT 4 BLOCK 1 DISTRICT LOT 2 PLAN 6292" + "dateNoted": "2019-11-23", + "parcelID": "15211", + "crownLandUsePIN": "15994", + "crownLandFileNumber": "16284", + "landDescription": "LOT 5 OF LOT 3 BLOCK 1 DISTRICT LOT 1 PLAN 9446" }, { - "siteRegistry": false, - "dateNoted": "2019-08-20", - "parcelID": "19930", - "crownLandUsePIN": "17689", - "crownLandFileNumber": "18584", - "landDescription": "LOT 5 OF LOT 3 BLOCK 2 DISTRICT LOT 5 PLAN 9434" + "uuid": "d13d672d-7754-4127-a4ac-76b6188b17bc", + "siteRegistry": true, + "dateNoted": "2014-02-03", + "parcelID": "16593", + "crownLandUsePIN": "17658", + "crownLandFileNumber": "18181", + "landDescription": "LOT 4 OF LOT 4 BLOCK 5 DISTRICT LOT 5 PLAN 5628" }, { + "uuid": "82b97df5-15e5-4e0f-800c-a1476f02fb98", "siteRegistry": false, - "dateNoted": "2020-08-07", - "parcelID": "20051", - "crownLandUsePIN": "20650", - "crownLandFileNumber": "18781", - "landDescription": "LOT 3 OF LOT 2 BLOCK 5 DISTRICT LOT 4 PLAN 4813" - }, - { - "siteRegistry": true, - "dateNoted": "2017-01-17", - "parcelID": "16076", - "crownLandUsePIN": "20990", - "crownLandFileNumber": "16367", - "landDescription": "LOT 2 OF LOT 5 BLOCK 3 DISTRICT LOT 5 PLAN 3752" + "dateNoted": "2019-02-26", + "parcelID": "16697", + "crownLandUsePIN": "16386", + "crownLandFileNumber": "18263", + "landDescription": "LOT 1 OF LOT 5 BLOCK 1 DISTRICT LOT 4 PLAN 5058" }, { - "siteRegistry": true, - "dateNoted": "2021-04-30", - "parcelID": "16670", - "crownLandUsePIN": "18135", - "crownLandFileNumber": "19564", - "landDescription": "LOT 3 OF LOT 1 BLOCK 5 DISTRICT LOT 5 PLAN 9778" + "uuid": "0896c2bf-c201-419c-a60d-5753424ec936", + "siteRegistry": false, + "dateNoted": "2020-01-04", + "parcelID": "16697", + "crownLandUsePIN": "16971", + "crownLandFileNumber": "16384", + "landDescription": "LOT 2 OF LOT 1 BLOCK 3 DISTRICT LOT 5 PLAN 5053" } ], "siteDisclosures": [ { + "uuid": "967b09de-f703-40ae-836d-bb746227b1f0", "siteRegistry": true, - "dateReceived": "2015-02-09", - "dateCompleted": "2021-05-23", - "dateEntered": "2022-01-26", - "dateRegistrar": "2016-05-28", - "dateLocalAuthorityReceived": "2014-08-26", - "summary": "Dicta exercitationem voluptatum quam nostrum voluptas amet sint amet.\nNam ut inventore quibusdam omnis necessitatibus.", - "informationUsed": "At earum repudiandae illum nihil temporibus vero distinctio impedit.\nAb est voluptate commodi fugit nulla.\nNostrum esse optio facere aspernatur voluptatum repudiandae.\nTempore quaerat dolor quod repellendus.\nLaudantium veritatis impedit sunt cum tempora assumenda iure laudantium.", - "pastOrPresentOrders": "Animi iure odio nulla.\nArchitecto nam molestias quibusdam culpa dignissimos ullam consectetur sit blanditiis.\nOfficia ex amet maiores sed corrupti aliquid quasi aliquam.", - "commercialAndIndustrialPurposes": [ - { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true - }, - { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true - } - ] - }, - { - "siteRegistry": false, - "dateReceived": "2016-05-05", - "dateCompleted": "2020-04-19", - "dateEntered": "2018-03-28", - "dateRegistrar": "2023-08-17", - "dateLocalAuthorityReceived": "2021-08-02", - "summary": "Quam odio quibusdam repudiandae sapiente doloribus odio eos architecto velit.\nNeque sed tenetur molestiae veritatis libero enim corrupti eos.\nCumque voluptas deserunt quod quasi ab.", - "informationUsed": "Nemo atque dolore nulla corporis.\nTemporibus eum similique.\nQuisquam perferendis aliquid.", - "pastOrPresentOrders": "Hic dolore delectus.", + "dateReceived": "2020-12-14", + "dateCompleted": "2018-05-15", + "dateEntered": "2021-08-07", + "dateRegistrar": "2016-01-15", + "dateLocalAuthorityReceived": "2019-08-10", + "summary": "Architecto distinctio tenetur iste vel suscipit nihil illum.\nTemporibus ipsam culpa.", + "informationUsed": "Numquam totam voluptatum ducimus itaque.\nVeniam mollitia quis velit similique a iure eius at labore.\nNecessitatibus est exercitationem laboriosam maxime eveniet quasi laudantium.\nQuaerat deserunt eligendi quis.", + "pastOrPresentOrders": "Consectetur cupiditate dicta ipsam quas quaerat.\nHic delectus tenetur atque unde sunt fuga facere praesentium.\nLaudantium ut molestias maiores fugit.", "commercialAndIndustrialPurposes": [ { + "uuid": "ee38648a-5017-41a3-b2a1-7a3580c51c7c", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { - "scheduleReference": "F2*", + "uuid": "947d86f1-7c94-4546-aa8f-a34dcdab9992", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true + "siteRegistry": false }, { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true + "uuid": "05503979-219d-40eb-8f1d-e94b827bfa21", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false } ] } ], "activityLog": [ { - "siteRegistry": false, + "uuid": "de9cdfa0-5faa-43d3-a535-6171055fcb15", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "REICHEL SUMMER", - "timestamp": "2017-03-01" + "user": "BAHRINGER TEAGAN", + "timestamp": "2017-04-12" }, { + "uuid": "a057d824-0c8a-428a-8075-8359b1736bc9", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "HARVEY ALTHEA", - "timestamp": "2015-02-23" + "user": "ANDERSON JOY", + "timestamp": "2015-06-28" }, { + "uuid": "bdc320f2-4c86-4793-a5bd-b1d81917e3eb", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "KUNDE DAMON", - "timestamp": "2014-05-22" + "user": "OSINSKI JAQUAN", + "timestamp": "2019-02-18" }, { + "uuid": "1e22423b-fe7c-4961-bbe8-a422a87b1638", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "AUER DELBERT", - "timestamp": "2015-02-09" + "user": "CONSIDINE MURIEL", + "timestamp": "2023-10-09" }, { - "siteRegistry": false, + "uuid": "c4b6ffce-d424-46dd-8dcd-a651ddab05f6", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "THIEL NEDRA", - "timestamp": "2023-04-15" + "user": "FEEST DONATO", + "timestamp": "2020-10-25" }, { + "uuid": "fc9cefd4-061a-4c14-99b9-baf776db236d", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "REICHERT VANESSA", - "timestamp": "2019-06-20" + "user": "BRADTKE ALEXANDRA", + "timestamp": "2014-09-09" }, { - "siteRegistry": true, + "uuid": "24dfd783-d6f4-4ee0-81ee-3094879727df", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "WEISSNAT AMANDA", - "timestamp": "2014-03-24" + "user": "RAYNOR BERNITA", + "timestamp": "2017-07-20" }, { - "siteRegistry": true, + "uuid": "1f6f0369-adbc-444f-a57c-ebdfb18e9cde", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "SCHINNER SELINA", - "timestamp": "2015-04-21" + "user": "SCHINNER HOLLIE", + "timestamp": "2021-11-04" + }, + { + "uuid": "be837829-b8e4-4cbf-8c1e-676414af9bd5", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "ROGAHN SAMANTHA", + "timestamp": "2016-06-05" } ], "associatedSites": [ { - "dateNoted": "2023-03-05", - "notes": "", - "parcelID": "15840", - "siteID": "16392", - "siteRegistry": false - }, - { - "dateNoted": "2018-12-11", + "uuid": "a08d7f81-7c9c-4488-b24e-648983f2654e", + "dateNoted": "2018-02-12", "notes": "", - "parcelID": "17552", - "siteID": "20424", + "parcelID": "16920", + "siteID": "19660", "siteRegistry": false } ] }, { - "uuid": "b2e819ff-d697-47d4-ade6-dd8e6294f777", - "siteID": 17828, - "address": "25458 Cathy Spur", - "latitude": 51.2333, - "longitude": -120.3147, - "lastUpdated": "2014-04-14", - "city": "North Dandre", - "region": " North Coast", - "victoriaFile": "26250-20/14017", + "uuid": "19cd52c8-d2a0-425b-8c3b-79726ea8eb01", + "siteID": 20510, + "address": "88745 Mante Curve", + "latitude": 51.5687, + "longitude": -136.7944, + "lastUpdated": "2019-04-20", + "city": "Grand Prairie", + "region": "Mainland/Southwest", + "victoriaFile": "26250-20/1850", "regionalFile": "N/A", "parcelIDs": [ - 4895017, - 879492, - 3045630, - 1770492, - 7768733 + 3537985, + 2461854, + 7290177, + 5551490, + 780106 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2017-06-03", - "completed": "2021-09-21", - "initiated": "2022-09-23", - "ministryContact": "LEANNON BRANDO", + "uuid": "2d45120a-8e29-433d-8b4f-3b59bf27e5bf", + "createdAt": "2018-09-17", + "completed": "2020-12-19", + "initiated": "2015-07-12", + "ministryContact": "LABADIE DEDRICK", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "uuid": "a650a94a-2ca5-4bd4-90a3-2db1a515f841", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "uuid": "79733c81-22ef-40d2-a07a-7d97fbd503aa", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "uuid": "1a51bb0a-422a-46fb-a0a0-06198c3222ae", + "createdAt": "2016-04-06", + "completed": "2022-06-06", + "initiated": "2019-08-01", + "ministryContact": "MAYER JO", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -62303,21 +72014,25 @@ ], "notationParticipants": [ { + "uuid": "46146793-898e-49f4-8051-a7f33cbb7740", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false }, { + "uuid": "2e65161e-714d-49a2-8c16-1e44b86c8937", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true }, { + "uuid": "4b7b4a5c-2c4b-4a77-a922-3bd58fbfdfdb", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false + "role": "SUBMITTED BY", + "siteRegistry": true }, { + "uuid": "37ef0538-1d8a-4194-a777-c80a7d493b9f", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true @@ -62326,10 +72041,11 @@ "siteRegistry": false }, { - "createdAt": "2020-02-07", - "completed": "2019-04-05", - "initiated": "2015-06-24", - "ministryContact": "THIEL ALVERTA", + "uuid": "cdd52988-8f4c-4063-bda4-44f98503a028", + "createdAt": "2021-07-21", + "completed": "2014-09-13", + "initiated": "2020-05-26", + "ministryContact": "CARTWRIGHT URSULA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -62338,23 +72054,26 @@ ], "notationParticipants": [ { + "uuid": "545a30cf-2e6e-4e75-a241-ba7973cba7d6", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "uuid": "57e2df52-d033-4475-ac38-dcc2312b56d9", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2022-06-08", - "completed": "2023-03-27", - "initiated": "2016-10-27", - "ministryContact": "REINGER FORD", + "uuid": "cfc29942-c957-4446-a2b1-206184c8fc29", + "createdAt": "2020-02-15", + "completed": "2018-08-30", + "initiated": "2019-06-27", + "ministryContact": "REICHEL WELDON", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -62363,39 +72082,102 @@ ], "notationParticipants": [ { + "uuid": "357fc17e-e624-4c10-bd9a-50aa2e816454", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "uuid": "2a5d2a2e-d7b5-4590-92b0-7b230457d94c", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "343f2d3b-83a0-4271-9808-7091649c49cd", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false }, { + "uuid": "b2f596c9-d825-4ec9-9268-1cc81aeec5f0", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "0b7059c8-5895-4882-8a9d-f83578fa9552", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "uuid": "6593de6c-027c-4c0d-af74-04b89d53d689", + "createdAt": "2019-11-04", + "completed": "2019-07-12", + "initiated": "2014-11-09", + "ministryContact": "MANTE LYDIA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "uuid": "3d585d61-04e2-4622-8669-0ea9e6d91eff", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true }, { + "uuid": "ebc95da8-d77c-437c-98dd-4e1fcd107a5e", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "uuid": "3fc3f857-7e62-476d-9861-4689ad0170e4", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": false + }, + { + "uuid": "13ebabe5-8367-44f7-a87e-8ef28da9e462", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "uuid": "b8738a7c-c8f1-4f07-acef-ce7a94a38841", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true } ], "participants": [ { - "name": "IPSUM", - "endDate": "2017-09-28", - "startDate": "2018-03-18", + "uuid": "eb4a71d5-10ff-41da-bcbd-d631094d8bda", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2015-10-26", + "startDate": "2017-07-22", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2020-09-18", - "startDate": "2020-01-02", + "uuid": "fb8cec1f-edf4-4fdc-949c-03d5d06790e5", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2016-10-19", + "startDate": "2019-06-15", "notes": "", "roles": [ "EMPLOYEE" @@ -62403,19 +72185,21 @@ "siteRegistry": true }, { - "name": "IPSUM", - "endDate": "2014-08-11", - "startDate": "2023-05-10", + "uuid": "6d630148-a8ed-490f-9749-e34e790120d8", + "name": "AMET, DOLOR SIT", + "endDate": "2019-11-03", + "startDate": "2021-05-09", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": false }, { + "uuid": "9c88c5b9-8c39-4d48-b35d-f6fb1c3cc201", "name": "AMET, DOLOR SIT", - "endDate": "2023-07-13", - "startDate": "2018-12-30", + "endDate": "2018-02-01", + "startDate": "2022-12-24", "notes": "", "roles": [ "EMPLOYEE" @@ -62425,190 +72209,200 @@ ], "suspectLandUses": [ { + "uuid": "8ce7360f-fec9-4812-84fa-154453b82b7e", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-08-29 (described on Site Profile dated 2018-08-29)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" - }, - { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-08-15 (described on Site Profile dated 2016-08-15)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" - }, - { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-12-31 (described on Site Profile dated 2022-12-31)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" - }, - { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-01-01 (described on Site Profile dated 2019-01-01)", + "notes": "INSERTED FOR SITE PROFILE DATED 2023-01-19 (described on Site Profile dated 2023-01-19)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { + "uuid": "1ead995d-d825-4287-b3ad-da82c335c97b", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-10-28 (described on Site Profile dated 2021-10-28)", + "notes": "INSERTED FOR SITE PROFILE DATED 2014-11-25 (described on Site Profile dated 2014-11-25)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], "parcelDescriptions": [ { + "uuid": "6ff499c1-7aa2-4da6-bfe5-f6f6cd30fe87", "siteRegistry": false, - "dateNoted": "2018-04-15", - "parcelID": "18214", - "crownLandUsePIN": "15421", - "crownLandFileNumber": "17397", - "landDescription": "LOT 4 OF LOT 2 BLOCK 5 DISTRICT LOT 4 PLAN 4596" + "dateNoted": "2014-03-28", + "parcelID": "19144", + "crownLandUsePIN": "19714", + "crownLandFileNumber": "16022", + "landDescription": "LOT 3 OF LOT 2 BLOCK 3 DISTRICT LOT 2 PLAN 9071" }, { + "uuid": "b9bf7374-054c-4f17-9a0a-1c933e32362c", "siteRegistry": true, - "dateNoted": "2016-03-24", - "parcelID": "18937", - "crownLandUsePIN": "17579", - "crownLandFileNumber": "17163", - "landDescription": "LOT 4 OF LOT 1 BLOCK 4 DISTRICT LOT 2 PLAN 7914" + "dateNoted": "2016-02-05", + "parcelID": "20164", + "crownLandUsePIN": "19018", + "crownLandFileNumber": "16309", + "landDescription": "LOT 3 OF LOT 2 BLOCK 2 DISTRICT LOT 5 PLAN 3006" + }, + { + "uuid": "5ddce32c-990f-439b-ba8c-d3fec8e7ce5f", + "siteRegistry": false, + "dateNoted": "2016-12-20", + "parcelID": "19385", + "crownLandUsePIN": "18866", + "crownLandFileNumber": "16416", + "landDescription": "LOT 1 OF LOT 2 BLOCK 2 DISTRICT LOT 4 PLAN 9624" + }, + { + "uuid": "76beaa84-706f-43da-a314-bee4a950b08d", + "siteRegistry": false, + "dateNoted": "2014-11-16", + "parcelID": "17517", + "crownLandUsePIN": "17020", + "crownLandFileNumber": "17464", + "landDescription": "LOT 2 OF LOT 5 BLOCK 4 DISTRICT LOT 4 PLAN 6909" } ], "siteDisclosures": [ { - "siteRegistry": false, - "dateReceived": "2019-04-14", - "dateCompleted": "2023-05-03", - "dateEntered": "2022-07-17", - "dateRegistrar": "2017-05-09", - "dateLocalAuthorityReceived": "2017-08-04", - "summary": "Labore ducimus facilis earum similique.", - "informationUsed": "Cum tenetur aliquid quas voluptate enim quis.\nPariatur qui reiciendis et expedita incidunt cumque quaerat esse.\nUnde vitae similique incidunt magnam consectetur laborum.\nDelectus et pariatur.", - "pastOrPresentOrders": "Libero quis officiis voluptatum veniam.", + "uuid": "2930d339-958e-4fdf-839d-f54e03fbf7c3", + "siteRegistry": true, + "dateReceived": "2017-05-21", + "dateCompleted": "2020-03-17", + "dateEntered": "2014-07-02", + "dateRegistrar": "2019-06-08", + "dateLocalAuthorityReceived": "2015-09-26", + "summary": "Asperiores atque autem labore dolorem numquam quaerat.\nHarum nobis ut molestias tenetur officiis voluptate molestias.", + "informationUsed": "Vero animi soluta fugit animi molestiae corrupti facilis qui labore.\nLaudantium ipsa est aspernatur laborum aut rem qui veniam soluta.\nOdio amet eius sint expedita architecto nihil.\nCommodi asperiores in nam quisquam dolorem beatae eligendi provident unde.", + "pastOrPresentOrders": "Dolore amet exercitationem distinctio sed.\nEarum ipsa iusto non.", "commercialAndIndustrialPurposes": [ { + "uuid": "bbcc3478-8f86-4ddb-b05f-476145d9471a", "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true - }, - { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false }, { + "uuid": "67b303ed-187c-4714-a382-1cbe050bf98c", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true + }, + { + "uuid": "c4d3f697-c16e-4385-88e1-5936b6b270f8", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false } ] } ], "activityLog": [ { - "siteRegistry": false, + "uuid": "d7fa79b0-af52-48c7-9688-c7d5af2aa0ca", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "LARSON META", - "timestamp": "2017-09-18" + "user": "LEFFLER-O'KEEFE LOLA", + "timestamp": "2022-04-21" }, { + "uuid": "8e530b3d-d806-401c-b7e3-ba4d379e4ce6", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "HAGENES ANNABELLE", - "timestamp": "2023-10-03" - }, - { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "MANTE ANGUS", - "timestamp": "2017-11-26" + "user": "WUCKERT DERECK", + "timestamp": "2020-09-18" }, { - "siteRegistry": true, + "uuid": "7c3a6385-1aba-4b5e-bb14-d5be011b8581", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "KIEHN SOPHIA", - "timestamp": "2020-11-18" + "user": "BINS VINCENT", + "timestamp": "2022-08-14" }, { + "uuid": "36a294c9-4c6f-469d-9e43-cda2b8152292", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "LEANNON CONNIE", - "timestamp": "2016-01-04" + "user": "KUB AIMEE", + "timestamp": "2022-07-06" }, { + "uuid": "44b98223-62da-4492-b4d5-977b9403d418", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "FRAMI MARIBEL", - "timestamp": "2015-12-04" + "user": "KULAS HILARIO", + "timestamp": "2020-06-08" }, { - "siteRegistry": true, + "uuid": "bcc26adc-87a0-4615-8577-a05afd9c77f6", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "GOYETTE FREDDY", - "timestamp": "2020-02-04" + "user": "PFANNERSTILL TERRANCE", + "timestamp": "2020-03-04" }, { - "siteRegistry": true, + "uuid": "9c9a370c-251d-46a1-8811-9189532b0b14", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "AUFDERHAR LACEY", - "timestamp": "2016-05-16" + "user": "GLEICHNER EZEQUIEL", + "timestamp": "2020-04-09" }, { + "uuid": "1896f616-dc32-496e-9ec7-0ff4a7a099f2", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "TURNER VERDA", - "timestamp": "2015-10-10" + "user": "DIBBERT RODERICK", + "timestamp": "2018-01-31" }, { - "siteRegistry": true, + "uuid": "dd82aed7-97fb-42c8-ba64-27b996d48515", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "VANDERVORT-TORP XANDER", - "timestamp": "2014-03-07" + "user": "WELCH CAROL", + "timestamp": "2019-05-13" } ], "associatedSites": [ { - "dateNoted": "2016-05-19", + "uuid": "f35561d0-295d-4685-8dc4-2631da9fad1a", + "dateNoted": "2014-03-13", "notes": "", - "parcelID": "16559", - "siteID": "18292", + "parcelID": "18590", + "siteID": "19174", "siteRegistry": true }, { - "dateNoted": "2017-04-21", + "uuid": "b4415f2b-1703-492c-9336-6af6b287a903", + "dateNoted": "2023-05-29", "notes": "", - "parcelID": "17121", - "siteID": "19650", + "parcelID": "19751", + "siteID": "17362", "siteRegistry": false - }, - { - "dateNoted": "2019-10-11", - "notes": "", - "parcelID": "15339", - "siteID": "16096", - "siteRegistry": true } ] }, { - "uuid": "e81752eb-5383-40db-9a56-16ce7439e898", - "siteID": 20325, - "address": "1613 Scottie Wall", - "latitude": 49.6417, - "longitude": -125.0862, - "lastUpdated": "2021-01-12", - "city": "West New York", - "region": "Kootenay", - "victoriaFile": "26250-20/19502", + "uuid": "ccf6cca9-4446-4b40-a94c-a34d7f65e5ec", + "siteID": 16208, + "address": "2548 Wade Crossing", + "latitude": 52.2774, + "longitude": -122.9376, + "lastUpdated": "2018-12-14", + "city": "Ileneborough", + "region": "Vancouver Island/Coast", + "victoriaFile": "26250-20/16421", "regionalFile": "N/A", "parcelIDs": [ - 8141455, - 2129224, - 7665263, - 8453909, - 8130110 + 9663155, + 4700555, + 6625531, + 2073109, + 8946164 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2014-07-21", - "completed": "2017-02-22", - "initiated": "2018-11-03", - "ministryContact": "HAUCK VERNA", + "uuid": "94cb32db-900c-4f65-9c06-071716c00c75", + "createdAt": "2016-05-25", + "completed": "2020-10-29", + "initiated": "2022-08-11", + "ministryContact": "SCHOWALTER MAGALI", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -62617,38 +72411,44 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "f730160d-1fed-4ea1-a9cc-5872cc4be559", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "uuid": "f23e315b-adf8-4953-aea5-71212fb56aa3", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", + "uuid": "b6d4eba3-a733-4c72-8a23-dd329144f4e2", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true }, { + "uuid": "fc91f269-9f6b-4e8a-b872-ec1b023975f6", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false }, { + "uuid": "8c5d9cf4-b7dc-4326-b780-99e830a301fb", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false + "role": "REQUESTED BY", + "siteRegistry": true } ], "siteRegistry": true }, { - "createdAt": "2021-07-18", - "completed": "2020-10-02", - "initiated": "2021-10-04", - "ministryContact": "OKUNEVA LEANN", + "uuid": "a87d7911-61cf-4b62-aca0-ed03a37668da", + "createdAt": "2022-07-12", + "completed": "2013-12-20", + "initiated": "2018-09-23", + "ministryContact": "SIPES JUNE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -62657,28 +72457,38 @@ ], "notationParticipants": [ { + "uuid": "bb267a00-d5a1-4230-8408-7b3f58d3edae", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true }, { + "uuid": "9b7fd7de-50ee-44a5-a694-b5259daa9efc", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { + "uuid": "f998480d-05e8-441c-ad7f-4baa9ae4998d", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false + }, + { + "uuid": "2b16df89-e2df-4456-8ed2-a63f47fabffb", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true } ], "siteRegistry": true }, { - "createdAt": "2022-01-09", - "completed": "2019-06-08", - "initiated": "2021-06-02", - "ministryContact": "SATTERFIELD CAROLYNE", + "uuid": "c615f8e5-92ee-4fc7-a893-0a99e635019b", + "createdAt": "2021-07-04", + "completed": "2019-07-16", + "initiated": "2014-07-07", + "ministryContact": "BOYLE THEODORA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -62687,167 +72497,168 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", + "uuid": "0df85b4f-91f6-4558-82dd-833f0983765c", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false }, { + "uuid": "f777276e-7163-460f-9565-123845327444", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true }, { + "uuid": "9be29cba-4cfc-4a55-ba6a-5b8d99079d60", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false } ], "participants": [ { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2019-05-17", - "startDate": "2018-03-04", + "uuid": "4d5c868d-472d-434f-8b51-dcd10706fb99", + "name": "AMET, DOLOR SIT", + "endDate": "2018-04-29", + "startDate": "2019-01-30", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2019-03-13", - "startDate": "2018-10-26", + "uuid": "0139a738-111e-4fce-8329-4fa436a2f275", + "name": "IPSUM", + "endDate": "2015-01-01", + "startDate": "2015-12-03", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": false }, { - "name": "IPSUM", - "endDate": "2021-03-12", - "startDate": "2021-03-22", + "uuid": "e91836f4-2470-436c-9a57-55fb153cc25c", + "name": "AMET, DOLOR SIT", + "endDate": "2016-02-22", + "startDate": "2021-03-12", "notes": "", "roles": [ "EMPLOYEE" ], + "siteRegistry": false + }, + { + "uuid": "2bac999e-8b38-4282-a41e-abaa54aee5bf", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2013-10-15", + "startDate": "2023-02-25", + "notes": "", + "roles": [ + "ORGANIZATION" + ], "siteRegistry": true + }, + { + "uuid": "09cebff7-83ce-473f-adb0-1a4efa7ba4f5", + "name": "IPSUM", + "endDate": "2015-07-15", + "startDate": "2015-10-09", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false } ], "suspectLandUses": [ { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-09-19 (described on Site Profile dated 2019-09-19)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" - }, - { + "uuid": "b71b9eba-d734-4558-869c-e3d886d2b531", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-07-07 (described on Site Profile dated 2016-07-07)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" - }, - { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2023-09-20 (described on Site Profile dated 2023-09-20)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "notes": "INSERTED FOR SITE PROFILE DATED 2017-09-15 (described on Site Profile dated 2017-09-15)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { + "uuid": "4642b5fa-8ee6-48bf-a5a9-0463280e78fc", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-08-27 (described on Site Profile dated 2017-08-27)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "notes": "INSERTED FOR SITE PROFILE DATED 2014-09-17 (described on Site Profile dated 2014-09-17)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { + "uuid": "77b61cfe-0715-40ad-a880-11015096afb5", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-08-29 (described on Site Profile dated 2022-08-29)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "notes": "INSERTED FOR SITE PROFILE DATED 2020-03-02 (described on Site Profile dated 2020-03-02)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], "parcelDescriptions": [ { + "uuid": "7e2ca2f8-1ad7-4040-910e-01e0556239cf", "siteRegistry": true, - "dateNoted": "2015-12-01", - "parcelID": "17299", - "crownLandUsePIN": "20876", - "crownLandFileNumber": "19477", - "landDescription": "LOT 2 OF LOT 1 BLOCK 3 DISTRICT LOT 5 PLAN 4460" + "dateNoted": "2016-06-06", + "parcelID": "17522", + "crownLandUsePIN": "17738", + "crownLandFileNumber": "16242", + "landDescription": "LOT 5 OF LOT 4 BLOCK 5 DISTRICT LOT 4 PLAN 8069" }, { - "siteRegistry": false, - "dateNoted": "2017-08-20", - "parcelID": "16630", - "crownLandUsePIN": "16394", - "crownLandFileNumber": "18547", - "landDescription": "LOT 5 OF LOT 4 BLOCK 1 DISTRICT LOT 4 PLAN 3733" + "uuid": "40cf20cb-ec91-4d38-a582-5d5276b89c60", + "siteRegistry": true, + "dateNoted": "2021-03-06", + "parcelID": "17843", + "crownLandUsePIN": "20252", + "crownLandFileNumber": "18218", + "landDescription": "LOT 3 OF LOT 1 BLOCK 1 DISTRICT LOT 2 PLAN 4831" }, { + "uuid": "f25de042-c1a0-4197-9369-43d20f323b4e", "siteRegistry": true, - "dateNoted": "2016-07-02", - "parcelID": "17688", - "crownLandUsePIN": "19004", - "crownLandFileNumber": "17349", - "landDescription": "LOT 4 OF LOT 2 BLOCK 5 DISTRICT LOT 4 PLAN 6437" + "dateNoted": "2019-12-28", + "parcelID": "20364", + "crownLandUsePIN": "20185", + "crownLandFileNumber": "19310", + "landDescription": "LOT 2 OF LOT 1 BLOCK 3 DISTRICT LOT 3 PLAN 5203" } ], "siteDisclosures": [ { + "uuid": "c95d4410-6281-41b4-9a74-e272d780e3c5", "siteRegistry": true, - "dateReceived": "2018-12-21", - "dateCompleted": "2014-06-22", - "dateEntered": "2017-01-18", - "dateRegistrar": "2018-07-19", - "dateLocalAuthorityReceived": "2018-11-14", - "summary": "Similique voluptatem doloribus dolore recusandae doloribus modi.\nOccaecati in sit praesentium pariatur ratione unde.\nId consequatur dolore magni dolores vel.", - "informationUsed": "Quam neque deleniti officiis nulla repellendus ratione blanditiis tempore nostrum.\nArchitecto eveniet magnam molestias.\nQuis doloribus nulla ex autem voluptatem molestias ipsum dolores.\nQuasi nam magni hic rem ab voluptatem dolorem officiis.", - "pastOrPresentOrders": "Earum quaerat sint.\nExcepturi reprehenderit dolores repudiandae aliquam repellat.", + "dateReceived": "2017-12-02", + "dateCompleted": "2022-02-27", + "dateEntered": "2018-11-21", + "dateRegistrar": "2021-09-28", + "dateLocalAuthorityReceived": "2016-05-30", + "summary": "Tempore vel rem dolore aut dolorum incidunt.\nTempore impedit debitis assumenda inventore magnam.", + "informationUsed": "Velit itaque reiciendis eos accusamus inventore aliquam quam.\nDolores dolorem occaecati culpa a dolorem ipsam.\nRepellendus nihil asperiores debitis animi quasi voluptatum nemo.", + "pastOrPresentOrders": "Atque reprehenderit cum nam.\nBlanditiis labore culpa dolorum cupiditate temporibus in.", "commercialAndIndustrialPurposes": [ { + "uuid": "1d2f3dcf-e4ba-44c0-8154-a352211e6944", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false - }, - { + "uuid": "b327ce09-fde8-4d54-9d8d-75691c2f535d", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true - } - ] - }, - { - "siteRegistry": false, - "dateReceived": "2020-06-05", - "dateCompleted": "2015-06-16", - "dateEntered": "2021-10-21", - "dateRegistrar": "2018-10-04", - "dateLocalAuthorityReceived": "2020-09-12", - "summary": "A consequuntur tenetur inventore repellendus adipisci temporibus.\nIure veritatis voluptatem.", - "informationUsed": "Autem accusantium saepe voluptas eveniet.\nRepellendus deserunt corrupti.\nVitae aliquam consequuntur esse esse non enim corrupti excepturi.", - "pastOrPresentOrders": "Quis quae inventore rem nobis ea laudantium inventore odio.", - "commercialAndIndustrialPurposes": [ - { + "uuid": "9646efe2-ee87-43c6-be4e-01aad227e711", "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true - }, - { - "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false + "siteRegistry": true }, { + "uuid": "cbff0b88-bf12-42fe-b7f0-401fefbe0781", "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false } ] @@ -62855,97 +72666,94 @@ ], "activityLog": [ { + "uuid": "f411645e-8d10-48b9-8f2e-e24e9a773116", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "TILLMAN BROOKS", - "timestamp": "2017-04-22" + "user": "CARTER HEBER", + "timestamp": "2022-03-07" }, { - "siteRegistry": false, + "uuid": "2f0aa847-7eb7-4a19-9d6a-ba7dbaa1bef6", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "KRIS ORAN", - "timestamp": "2017-08-19" + "user": "BALISTRERI NICOLETTE", + "timestamp": "2020-09-07" }, { + "uuid": "ba204b0a-353a-4340-be46-e1c92c4791fd", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "KSHLERIN ALIA", - "timestamp": "2023-09-07" - }, - { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "CORMIER LURA", - "timestamp": "2015-05-21" + "user": "CORWIN ELOISE", + "timestamp": "2018-11-01" }, { + "uuid": "a6968a7c-a8e9-4a3e-8a72-302194b30b7a", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "FAHEY DEONDRE", - "timestamp": "2018-03-30" + "user": "JAST ALANIS", + "timestamp": "2018-09-05" }, { + "uuid": "e8d09c99-6106-46a0-b6f0-2ab4fb54ae75", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "FERRY DECLAN", - "timestamp": "2020-11-16" - }, - { - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "O'HARA KENNETH", - "timestamp": "2015-09-10" + "user": "MITCHELL ARNOLD", + "timestamp": "2021-04-01" } ], "associatedSites": [ { - "dateNoted": "2017-09-11", + "uuid": "12c8799e-fc7c-4e7c-8d2d-0037eae8280c", + "dateNoted": "2019-02-26", "notes": "", - "parcelID": "19146", - "siteID": "16934", + "parcelID": "20544", + "siteID": "16154", "siteRegistry": false }, { - "dateNoted": "2015-06-01", + "uuid": "f3d0bf81-217b-415a-bd0f-3367669b8bc4", + "dateNoted": "2018-08-24", "notes": "", - "parcelID": "15697", - "siteID": "19427", - "siteRegistry": true + "parcelID": "19732", + "siteID": "20482", + "siteRegistry": false }, { - "dateNoted": "2021-03-01", + "uuid": "dad562b9-e96c-4c9d-be6c-8516c8d6c082", + "dateNoted": "2018-03-15", "notes": "", - "parcelID": "19019", - "siteID": "16138", - "siteRegistry": false + "parcelID": "19654", + "siteID": "19713", + "siteRegistry": true } ] }, { - "uuid": "a23f8c40-6df3-466f-8a39-5f5e251df917", - "siteID": 16392, - "address": "543 Trantow Lights", - "latitude": 54.0749, - "longitude": -132.3958, - "lastUpdated": "2020-11-27", - "city": "East Jamieshire", - "region": "Cariboo", - "victoriaFile": "26250-20/9737", + "uuid": "64d58666-e812-4a82-8ae6-daa90598e8ec", + "siteID": 16364, + "address": "2276 Bradtke Locks", + "latitude": 48.23, + "longitude": -138.6131, + "lastUpdated": "2016-06-17", + "city": "Juliushaven", + "region": "Kootenay", + "victoriaFile": "26250-20/6456", "regionalFile": "N/A", "parcelIDs": [ - 4339510, - 5289245, - 2402064, - 7102275, - 190255 + 8446251, + 387703, + 3795500, + 7314273, + 9001818 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2017-04-12", - "completed": "2015-03-04", - "initiated": "2014-07-06", - "ministryContact": "DANIEL GARRISON", + "uuid": "d7a915de-92b7-4ca5-b741-b8e6d2cd6eba", + "createdAt": "2022-11-20", + "completed": "2016-04-27", + "initiated": "2017-02-15", + "ministryContact": "YOST EUGENE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -62954,63 +72762,32 @@ ], "notationParticipants": [ { + "uuid": "5f8be338-c150-40b9-b04d-a21f2575fd1f", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true }, { + "uuid": "08e8493e-f38e-4098-81b8-c87b699e6c47", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true }, { + "uuid": "9f9b4ad7-a488-4074-beeb-c9b19983428f", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - } - ], - "siteRegistry": false - }, - { - "createdAt": "2015-01-21", - "completed": "2018-08-01", - "initiated": "2017-07-03", - "ministryContact": "TURCOTTE-BODE LORA", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true } ], "siteRegistry": false }, { - "createdAt": "2019-05-22", - "completed": "2019-04-21", - "initiated": "2014-01-18", - "ministryContact": "STAMM ZITA", + "uuid": "a9f1f18b-5eb0-494a-8e41-9e4bb348af38", + "createdAt": "2018-05-02", + "completed": "2019-09-05", + "initiated": "2019-01-26", + "ministryContact": "SCHAEFER VERONICA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -63019,134 +72796,66 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { + "uuid": "19ba1c41-e4bd-4e99-a4cb-22cf0364396d", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { + "uuid": "cc318b25-92c8-4e99-ae02-6256dc124970", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true }, { + "uuid": "891ee213-def9-4bf7-bb88-d1cb42e86f62", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true } ], - "siteRegistry": false - }, - { - "createdAt": "2020-06-07", - "completed": "2023-06-26", - "initiated": "2016-02-13", - "ministryContact": "DIBBERT POLLY", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - } - ], - "siteRegistry": false - }, - { - "createdAt": "2020-06-04", - "completed": "2015-05-07", - "initiated": "2022-04-21", - "ministryContact": "KRIS DEREK", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - } - ], - "siteRegistry": false + "siteRegistry": true } ], "participants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2023-08-26", - "startDate": "2019-07-06", + "uuid": "d1a8bffa-0eda-4cef-881c-9fab55375104", + "name": "IPSUM", + "endDate": "2020-04-30", + "startDate": "2017-07-06", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": true + "siteRegistry": false }, { - "name": "IPSUM", - "endDate": "2017-11-23", - "startDate": "2018-03-03", + "uuid": "6671a732-454d-4326-9136-a4d11005b3fc", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2023-07-28", + "startDate": "2016-02-14", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": false + "siteRegistry": true }, { - "name": "AMET, DOLOR SIT", - "endDate": "2020-12-05", - "startDate": "2015-12-09", + "uuid": "0002a5a9-ebb7-41ee-ac97-29e1ec255eb3", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2022-12-17", + "startDate": "2021-07-07", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true }, { + "uuid": "8aa9a39d-9f5c-4355-b642-3c15cf897b6f", "name": "AMET, DOLOR SIT", - "endDate": "2014-06-04", - "startDate": "2016-11-11", + "endDate": "2021-09-28", + "startDate": "2023-04-11", "notes": "", "roles": [ "EMPLOYEE" @@ -63156,126 +72865,73 @@ ], "suspectLandUses": [ { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2020-10-12 (described on Site Profile dated 2020-10-12)", + "uuid": "6b47f059-289f-4a3b-a01f-1e9f89749f69", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2018-03-30 (described on Site Profile dated 2018-03-30)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { + "uuid": "371c205f-ecfa-49fb-91c4-bccb3bffe585", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-04-15 (described on Site Profile dated 2016-04-15)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" - }, - { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-08-09 (described on Site Profile dated 2021-08-09)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" - }, - { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-03-19 (described on Site Profile dated 2022-03-19)", + "notes": "INSERTED FOR SITE PROFILE DATED 2023-06-22 (described on Site Profile dated 2023-06-22)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], "parcelDescriptions": [ { - "siteRegistry": false, - "dateNoted": "2015-05-06", - "parcelID": "17742", - "crownLandUsePIN": "20653", - "crownLandFileNumber": "15395", - "landDescription": "LOT 3 OF LOT 3 BLOCK 3 DISTRICT LOT 5 PLAN 3817" - }, - { + "uuid": "a3b023c7-70e6-4412-a7db-fd50d60ad802", "siteRegistry": true, - "dateNoted": "2015-05-10", - "parcelID": "18808", - "crownLandUsePIN": "19378", - "crownLandFileNumber": "17356", - "landDescription": "LOT 4 OF LOT 1 BLOCK 3 DISTRICT LOT 2 PLAN 6080" - }, - { - "siteRegistry": false, - "dateNoted": "2017-09-27", - "parcelID": "16266", - "crownLandUsePIN": "16093", - "crownLandFileNumber": "16817", - "landDescription": "LOT 4 OF LOT 3 BLOCK 4 DISTRICT LOT 4 PLAN 4791" + "dateNoted": "2017-06-27", + "parcelID": "16418", + "crownLandUsePIN": "15550", + "crownLandFileNumber": "19517", + "landDescription": "LOT 3 OF LOT 2 BLOCK 2 DISTRICT LOT 5 PLAN 9144" }, { + "uuid": "8e50622a-0e3b-45b9-b71a-c70c424cbdfd", "siteRegistry": false, - "dateNoted": "2015-10-11", - "parcelID": "17799", - "crownLandUsePIN": "15829", - "crownLandFileNumber": "18970", - "landDescription": "LOT 2 OF LOT 1 BLOCK 4 DISTRICT LOT 1 PLAN 8948" - }, - { - "siteRegistry": true, - "dateNoted": "2014-05-03", - "parcelID": "15698", - "crownLandUsePIN": "17001", - "crownLandFileNumber": "18966", - "landDescription": "LOT 2 OF LOT 3 BLOCK 1 DISTRICT LOT 5 PLAN 9327" + "dateNoted": "2013-11-06", + "parcelID": "19443", + "crownLandUsePIN": "15718", + "crownLandFileNumber": "19785", + "landDescription": "LOT 1 OF LOT 4 BLOCK 5 DISTRICT LOT 5 PLAN 6026" } ], "siteDisclosures": [ { + "uuid": "410744db-7c1a-4c99-af1b-266399545c87", "siteRegistry": true, - "dateReceived": "2023-09-14", - "dateCompleted": "2023-06-24", - "dateEntered": "2016-09-21", - "dateRegistrar": "2022-10-14", - "dateLocalAuthorityReceived": "2022-03-22", - "summary": "Consectetur quasi nobis.", - "informationUsed": "Eligendi tenetur ipsum ratione asperiores illum ratione est cupiditate.\nMolestias facere optio.\nSoluta blanditiis necessitatibus suscipit dolores ipsa nobis dignissimos.", - "pastOrPresentOrders": "Unde perferendis molestiae sint dolorum.\nQuia ex sed eveniet sapiente eos quae quisquam illo.", + "dateReceived": "2019-06-05", + "dateCompleted": "2023-01-31", + "dateEntered": "2014-08-30", + "dateRegistrar": "2019-04-09", + "dateLocalAuthorityReceived": "2022-01-17", + "summary": "Ipsa cupiditate aspernatur hic adipisci placeat.\nBeatae nam vero expedita ut quis perferendis vero.", + "informationUsed": "Quidem id soluta.\nNisi autem est ratione numquam reprehenderit aut eos quidem esse.\nQuisquam dolor voluptate architecto minima laudantium at.\nVelit dolorum voluptas dolorem quos.\nVoluptate sapiente eius dignissimos in iusto.", + "pastOrPresentOrders": "Voluptatum omnis ullam quis praesentium aspernatur illo similique.", "commercialAndIndustrialPurposes": [ { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false - }, - { + "uuid": "476078f6-32e6-4c72-9653-409d38ec7b44", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, { + "uuid": "3b354ddc-8123-4544-80e9-1ad113d2c52c", "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false - }, - { - "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true - } - ] - }, - { - "siteRegistry": true, - "dateReceived": "2021-08-23", - "dateCompleted": "2015-04-10", - "dateEntered": "2019-12-25", - "dateRegistrar": "2013-12-14", - "dateLocalAuthorityReceived": "2021-10-12", - "summary": "Est voluptatibus expedita.", - "informationUsed": "Quaerat optio facilis quas odit optio nemo eligendi.\nVero fuga ullam sunt mollitia nostrum voluptatibus ex aut cum.\nBlanditiis culpa eaque error.\nQuidem quae quam ipsa.", - "pastOrPresentOrders": "Nostrum cupiditate soluta nobis minima officiis illo asperiores.\nAliquam perferendis facere tempora blanditiis quidem quasi repellendus.\nBeatae natus autem aspernatur ad ipsum.", - "commercialAndIndustrialPurposes": [ - { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true }, { - "scheduleReference": "F1*", + "uuid": "4d0d4750-b7c1-4500-9572-07d8f174af79", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false + "siteRegistry": true }, { + "uuid": "4c34b22d-027f-4b71-b31c-e96527ee71e0", "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true } ] @@ -63283,84 +72939,115 @@ ], "activityLog": [ { + "uuid": "e16c8ffa-f698-4f16-8a22-c9758aac3221", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "MAGGIO LYNN", - "timestamp": "2014-12-31" + "user": "CARTER QUINN", + "timestamp": "2015-01-08" }, { - "siteRegistry": false, + "uuid": "6a5bc57d-f0bc-4476-8f7d-0e20ee5fc6a1", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "SPENCER ELIAS", - "timestamp": "2019-07-02" + "user": "GERHOLD MARKUS", + "timestamp": "2022-07-10" }, { - "siteRegistry": false, + "uuid": "6da1d393-51ca-49ca-ae0a-feb6bdcd5691", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "POLLICH ALFONSO", - "timestamp": "2019-10-10" + "user": "MAGGIO KOLE", + "timestamp": "2021-07-02" }, { + "uuid": "615c72b4-9fba-426b-a16b-93148dffb024", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "BOSCO MARIETTA", - "timestamp": "2018-04-01" + "user": "LUBOWITZ ANTWON", + "timestamp": "2017-02-10" }, { + "uuid": "e4e086de-dd90-4f44-8d10-8159db748f95", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "STROMAN ALLAN", - "timestamp": "2016-07-03" + "user": "HACKETT WYMAN", + "timestamp": "2021-04-15" + }, + { + "uuid": "7ec7e0ba-4550-46a4-bc05-b03001cc9404", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "VOLKMAN FILOMENA", + "timestamp": "2018-12-22" }, { + "uuid": "aa2b7c53-aebd-4e7f-98c5-2130a7af5ae0", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "GOLDNER AMALIA", - "timestamp": "2018-12-04" + "user": "STROMAN DEVONTE", + "timestamp": "2015-09-17" + }, + { + "uuid": "b3372a7c-40de-4cf0-8b2f-a25b98c8909f", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "CARTER BRIA", + "timestamp": "2019-08-19" } ], "associatedSites": [ { - "dateNoted": "2014-12-21", + "uuid": "427bd2bc-22b4-4093-a061-202c8a69135d", + "dateNoted": "2016-02-23", "notes": "", - "parcelID": "15274", - "siteID": "19266", + "parcelID": "18107", + "siteID": "15844", "siteRegistry": true }, { - "dateNoted": "2014-10-29", + "uuid": "dd01f3f8-44a1-4b10-a848-afc95a7873b3", + "dateNoted": "2014-12-29", "notes": "", - "parcelID": "18809", - "siteID": "19305", + "parcelID": "18921", + "siteID": "19113", "siteRegistry": false + }, + { + "uuid": "68d1e30f-de36-4e4b-9836-7842f36e656a", + "dateNoted": "2017-08-23", + "notes": "", + "parcelID": "20786", + "siteID": "18336", + "siteRegistry": true } ] }, { - "uuid": "02c87007-8d57-460d-9197-d776279195e1", - "siteID": 16853, - "address": "629 Kovacek Forest", - "latitude": 49.3125, - "longitude": -134.6041, - "lastUpdated": "2016-08-07", - "city": "Raheemtown", - "region": "Kootenay", - "victoriaFile": "26250-20/4489", + "uuid": "78b66b46-5a29-4441-a324-313abb1bd14d", + "siteID": 18336, + "address": "36838 Deckow Meadows", + "latitude": 53.2808, + "longitude": -124.0322, + "lastUpdated": "2017-09-22", + "city": "Eliworth", + "region": "Vancouver Island/Coast", + "victoriaFile": "26250-20/9830", "regionalFile": "N/A", "parcelIDs": [ - 6709894, - 622284, - 1507405, - 5036291, - 6717504 + 5076576, + 1154751, + 7904623, + 1615916, + 7650699 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2020-06-04", - "completed": "2023-10-05", - "initiated": "2016-07-13", - "ministryContact": "JONES VALENTINE", + "uuid": "73390c3d-28bf-43ae-98cd-dc5520c54429", + "createdAt": "2020-02-16", + "completed": "2021-04-20", + "initiated": "2020-02-28", + "ministryContact": "ZEMLAK DAISY", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -63369,28 +73056,32 @@ ], "notationParticipants": [ { + "uuid": "3c5af846-b8b9-47ec-adf5-95e6e0f1b5fa", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false + "role": "REQUESTED BY", + "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", + "uuid": "cf93e030-c8f3-474c-b412-c7086cebde5f", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "uuid": "26aaf0b2-3e68-43e0-8cda-7c0591ef7e9b", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2015-01-16", - "completed": "2022-04-21", - "initiated": "2015-02-13", - "ministryContact": "QUITZON SHANON", + "uuid": "d8bea2b4-975f-4b1e-a450-d89eed4504c5", + "createdAt": "2018-06-03", + "completed": "2017-03-31", + "initiated": "2015-04-10", + "ministryContact": "KESSLER CHADRICK", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -63399,23 +73090,44 @@ ], "notationParticipants": [ { + "uuid": "4d51efcb-3756-4f54-b9cd-9c05a228c163", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", + "uuid": "a132bc18-ce87-4f2c-abe7-1ae051d7d505", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "uuid": "3d5d1bc3-137d-4312-96bd-c18d301e2750", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "uuid": "8dca4472-bc8d-4960-b7b4-a34564bacd94", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "uuid": "8f9afe6e-cab2-4060-a05f-78e4078c18a8", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2017-04-07", - "completed": "2020-12-08", - "initiated": "2019-07-27", - "ministryContact": "MCDERMOTT MARGARETTE", + "uuid": "30f21efb-b69d-4a8b-8652-d34455e8ca57", + "createdAt": "2018-07-31", + "completed": "2014-04-13", + "initiated": "2022-01-13", + "ministryContact": "SCHADEN CODY", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -63424,38 +73136,44 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", + "uuid": "c3f12280-9e19-4f8f-b007-edfffca25531", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false }, { + "uuid": "3ac00b37-212e-40fc-86f7-2ea62b2e39e0", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true }, { + "uuid": "461b6944-4308-4d7a-be8b-c8b33b7c0b8d", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "uuid": "6ee7e338-f0e5-4ffe-9bfe-e283debc5010", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true }, { + "uuid": "32dc97b0-0680-447c-a3e6-83ee414c4e9c", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2017-04-18", - "completed": "2023-10-02", - "initiated": "2014-09-02", - "ministryContact": "FRANECKI JAMARCUS", + "uuid": "23682235-303a-4e41-b3d1-b895c54af5cd", + "createdAt": "2014-06-19", + "completed": "2019-06-09", + "initiated": "2020-01-23", + "ministryContact": "WHITE MIREILLE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -63464,19 +73182,22 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { + "uuid": "80ba3b23-def7-4d25-83b0-feeb2493558a", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", + "uuid": "3837ca32-bc34-4f9e-8dd1-3503f96203be", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true + }, + { + "uuid": "5cc352f7-78ed-415a-a1b2-64f12f4e8c5b", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false } ], "siteRegistry": false @@ -63484,9 +73205,10 @@ ], "participants": [ { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2014-05-11", - "startDate": "2018-01-21", + "uuid": "195ec865-46d2-46e8-b5c5-4a5f3da660d5", + "name": "AMET, DOLOR SIT", + "endDate": "2014-07-21", + "startDate": "2022-03-01", "notes": "", "roles": [ "EMPLOYEE" @@ -63494,213 +73216,193 @@ "siteRegistry": false }, { - "name": "AMET, DOLOR SIT", - "endDate": "2014-07-10", - "startDate": "2022-10-26", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": true - }, - { - "name": "IPSUM", - "endDate": "2023-03-31", - "startDate": "2019-03-21", + "uuid": "8c9057e4-e0f9-4376-9cd0-4b144fbfe85f", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2019-08-14", + "startDate": "2019-06-10", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": true }, { + "uuid": "b5122695-6b14-4464-86f9-8c1b93501c29", "name": "IPSUM", - "endDate": "2019-01-12", - "startDate": "2018-11-25", + "endDate": "2022-03-30", + "startDate": "2017-08-15", "notes": "", "roles": [ "ORGANIZATION" ], "siteRegistry": true - }, - { - "name": "AMET, DOLOR SIT", - "endDate": "2022-04-10", - "startDate": "2022-11-13", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": false } ], "suspectLandUses": [ { + "uuid": "1f6e1506-bd9f-4a50-8d3e-37125eb9976f", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-03-22 (described on Site Profile dated 2016-03-22)", + "notes": "INSERTED FOR SITE PROFILE DATED 2016-05-29 (described on Site Profile dated 2016-05-29)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { + "uuid": "41e4997f-07cf-4b2a-a6e7-a9119519ab7a", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-08-21 (described on Site Profile dated 2015-08-21)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" - }, - { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2020-03-12 (described on Site Profile dated 2020-03-12)", + "notes": "INSERTED FOR SITE PROFILE DATED 2015-07-22 (described on Site Profile dated 2015-07-22)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-11-21 (described on Site Profile dated 2021-11-21)", + "uuid": "cfa5593c-e9c7-4a67-a530-cb5749c702bb", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2016-07-20 (described on Site Profile dated 2016-07-20)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2020-10-07 (described on Site Profile dated 2020-10-07)", + "uuid": "c9ad990d-ae43-491d-80e5-c9f60266e63b", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2022-12-02 (described on Site Profile dated 2022-12-02)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], "parcelDescriptions": [ { - "siteRegistry": false, - "dateNoted": "2013-11-04", - "parcelID": "20622", - "crownLandUsePIN": "20332", - "crownLandFileNumber": "19547", - "landDescription": "LOT 5 OF LOT 5 BLOCK 1 DISTRICT LOT 2 PLAN 4168" - }, - { - "siteRegistry": false, - "dateNoted": "2014-05-14", - "parcelID": "20276", - "crownLandUsePIN": "15405", - "crownLandFileNumber": "15226", - "landDescription": "LOT 2 OF LOT 4 BLOCK 4 DISTRICT LOT 2 PLAN 9797" + "uuid": "cee2f13d-36ae-424e-90b7-65748e7a0353", + "siteRegistry": true, + "dateNoted": "2019-10-29", + "parcelID": "20131", + "crownLandUsePIN": "17837", + "crownLandFileNumber": "15505", + "landDescription": "LOT 5 OF LOT 3 BLOCK 5 DISTRICT LOT 2 PLAN 8754" }, { + "uuid": "3a85ecf1-04e1-4fe6-9d9e-6990d1fd0028", "siteRegistry": true, - "dateNoted": "2014-03-19", - "parcelID": "17078", - "crownLandUsePIN": "15344", - "crownLandFileNumber": "17003", - "landDescription": "LOT 3 OF LOT 3 BLOCK 5 DISTRICT LOT 5 PLAN 8498" + "dateNoted": "2023-02-13", + "parcelID": "16913", + "crownLandUsePIN": "19580", + "crownLandFileNumber": "19934", + "landDescription": "LOT 5 OF LOT 1 BLOCK 1 DISTRICT LOT 2 PLAN 8098" }, { + "uuid": "650e008e-e50e-482d-9921-25662c2428f7", "siteRegistry": true, - "dateNoted": "2019-06-14", - "parcelID": "18475", - "crownLandUsePIN": "16199", - "crownLandFileNumber": "20127", - "landDescription": "LOT 5 OF LOT 5 BLOCK 1 DISTRICT LOT 2 PLAN 6417" + "dateNoted": "2022-06-27", + "parcelID": "15953", + "crownLandUsePIN": "20140", + "crownLandFileNumber": "18429", + "landDescription": "LOT 2 OF LOT 4 BLOCK 2 DISTRICT LOT 3 PLAN 5777" } ], "siteDisclosures": [ { - "siteRegistry": true, - "dateReceived": "2014-12-22", - "dateCompleted": "2019-08-27", - "dateEntered": "2017-04-05", - "dateRegistrar": "2019-03-03", - "dateLocalAuthorityReceived": "2013-11-23", - "summary": "Quidem laudantium consequuntur voluptatem nesciunt dicta rem.", - "informationUsed": "Corporis nobis nisi maiores cum iure.\nExcepturi sunt tempore voluptate repellat nemo earum.\nNatus laborum reiciendis totam tempore iusto neque ducimus.", - "pastOrPresentOrders": "Sunt molestiae ad aut necessitatibus.\nNeque ex veritatis tempore aliquam voluptates minima commodi pariatur.", + "uuid": "406ce52b-ed4c-472a-892e-848bdec564f7", + "siteRegistry": false, + "dateReceived": "2019-09-21", + "dateCompleted": "2022-09-06", + "dateEntered": "2015-07-21", + "dateRegistrar": "2018-03-21", + "dateLocalAuthorityReceived": "2016-11-13", + "summary": "Unde illo architecto.", + "informationUsed": "Officiis recusandae corrupti debitis ratione doloremque error.\nVoluptate a distinctio.\nQuam ipsum doloribus quas earum quidem ratione eius iste eveniet.\nIn molestiae similique adipisci tenetur voluptas itaque.\nBeatae perferendis deserunt quisquam nisi sapiente placeat enim dignissimos.", + "pastOrPresentOrders": "Et voluptatibus molestias molestias consequuntur totam autem nisi deleniti vitae.\nAtque suscipit cumque.\nLibero quod illo sapiente culpa provident perferendis eligendi exercitationem.", "commercialAndIndustrialPurposes": [ { + "uuid": "b48e7f0d-0f64-4762-a554-f41d37e1bf2b", "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { - "scheduleReference": "F2*", + "uuid": "e4c834cb-bf21-4958-bd80-70df1c797938", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false + "siteRegistry": true } ] } ], "activityLog": [ { - "siteRegistry": false, + "uuid": "68aec6fc-fb88-4892-b712-727bfe4b8d2f", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "LANGOSH-FRANECKI RAYMOND", - "timestamp": "2016-04-26" + "user": "JACOBS KAROLANN", + "timestamp": "2023-04-21" }, { - "siteRegistry": true, + "uuid": "0a5215b2-e4cd-4707-8c00-af98763ba561", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "ANKUNDING CHARITY", - "timestamp": "2015-06-29" + "user": "SANFORD SHAYNE", + "timestamp": "2018-07-17" }, { + "uuid": "86cd4e87-e647-46d2-a186-4e7a482edbe9", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "LANGOSH MAVERICK", - "timestamp": "2019-03-21" + "user": "VEUM FIDEL", + "timestamp": "2021-05-03" }, { + "uuid": "4353ed86-c030-485b-9279-b4da8c522f9a", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "WARD PRICE", - "timestamp": "2014-08-18" + "user": "ANKUNDING JEREL", + "timestamp": "2019-05-14" }, { - "siteRegistry": true, + "uuid": "ca1747e8-1f9f-4490-b2d3-badc043aad91", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "BINS EASTON", - "timestamp": "2015-05-11" + "user": "ROBEL TERRANCE", + "timestamp": "2021-05-12" } ], "associatedSites": [ { - "dateNoted": "2018-04-01", - "notes": "", - "parcelID": "17905", - "siteID": "18732", - "siteRegistry": true - }, - { - "dateNoted": "2015-07-03", + "uuid": "3a91aa34-673a-4f7e-9330-5673c1a70851", + "dateNoted": "2019-02-16", "notes": "", - "parcelID": "16025", - "siteID": "19266", + "parcelID": "20657", + "siteID": "16470", "siteRegistry": true }, { - "dateNoted": "2015-05-06", + "uuid": "ae868327-c3d2-4cbb-b59d-f28e2cd36d8f", + "dateNoted": "2017-08-07", "notes": "", - "parcelID": "15779", - "siteID": "19984", - "siteRegistry": true + "parcelID": "16310", + "siteID": "16044", + "siteRegistry": false } ] }, { - "uuid": "2d6b07cc-3615-4430-ac8f-d1b47e476709", - "siteID": 18993, - "address": "2795 Mitchell Ranch", - "latitude": 58.141, - "longitude": -131.0614, - "lastUpdated": "2014-09-02", - "city": "Port Burdetteside", - "region": "Mainland/Southwest", - "victoriaFile": "26250-20/2988", + "uuid": "5010ff49-6b8f-4ec2-9fb5-ae55f508965e", + "siteID": 16267, + "address": "675 Ivory Estates", + "latitude": 52.0184, + "longitude": -135.186, + "lastUpdated": "2022-01-21", + "city": "Gutmannborough", + "region": "Vancouver Island/Coast", + "victoriaFile": "26250-20/2593", "regionalFile": "N/A", "parcelIDs": [ - 9914561, - 8105490, - 7230260, - 900375, - 2325583 + 9644477, + 7359847, + 7690709, + 6090451, + 2278713 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2019-02-12", - "completed": "2016-07-05", - "initiated": "2018-11-10", - "ministryContact": "VEUM CLETA", + "uuid": "2a752852-a494-41f5-9aea-8f4f6c7213ad", + "createdAt": "2017-04-29", + "completed": "2019-10-22", + "initiated": "2023-08-29", + "ministryContact": "FLATLEY ALBERT", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -63709,33 +73411,32 @@ ], "notationParticipants": [ { + "uuid": "613ff97b-f73b-4e34-ae01-90e536cc7d77", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false }, { + "uuid": "65ee39f4-5048-49cd-8fb7-001b96bff7ca", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false + "role": "REQUESTED BY", + "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "uuid": "4360215e-e6f3-4134-adc7-570a1d12bafe", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2014-12-03", - "completed": "2015-03-03", - "initiated": "2016-10-02", - "ministryContact": "EMARD RAHUL", + "uuid": "8db90106-fcf2-4058-a77a-7050321a9ade", + "createdAt": "2017-07-23", + "completed": "2019-09-19", + "initiated": "2023-04-02", + "ministryContact": "WOLFF WADE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -63744,26 +73445,53 @@ ], "notationParticipants": [ { + "uuid": "163431d9-656e-437d-b71c-eef1d89838c2", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true + "role": "REQUESTED BY", + "siteRegistry": false }, { + "uuid": "caf4131c-a49c-429d-9086-a9e6a55f5d2b", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "uuid": "6619196e-029a-40c4-9134-58f594ce17f0", + "createdAt": "2021-11-14", + "completed": "2016-01-23", + "initiated": "2019-02-03", + "ministryContact": "PARISIAN CHADRICK", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "uuid": "062a10be-634a-4e42-b150-1f4921dc45f7", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": false }, { + "uuid": "5d484982-36d8-4153-bfc9-b9e62f35de4f", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true }, { + "uuid": "7fb7e736-9b8c-4f56-ab1b-256beea791c2", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false }, { + "uuid": "54fde7fb-3b95-43ab-ac48-976c0f4a6e87", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true @@ -63772,10 +73500,11 @@ "siteRegistry": true }, { - "createdAt": "2019-09-28", - "completed": "2015-11-17", - "initiated": "2016-12-20", - "ministryContact": "AUER KAYLIE", + "uuid": "df8f0128-318c-49c5-b6ef-86bdf0773f88", + "createdAt": "2020-02-23", + "completed": "2018-08-15", + "initiated": "2014-06-26", + "ministryContact": "ORTIZ ARMANI", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -63784,23 +73513,33 @@ ], "notationParticipants": [ { + "uuid": "521fc24a-56a1-4ed1-9497-8848e33d7747", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", + "uuid": "f8073712-bb53-4108-a02e-0767ae30745a", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { + "uuid": "ed3d685b-be0c-416e-94bb-4136fcf6950d", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "uuid": "ddc94ff2-87cb-4e62-a5ff-4e162f99e42b", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "uuid": "ba6b4fb7-c6ce-4f3c-838f-c66a23e2aa34", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": true } ], @@ -63809,9 +73548,10 @@ ], "participants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2013-11-25", - "startDate": "2016-11-24", + "uuid": "e3e3ac07-0f1d-426d-97a1-6b02d9107b3f", + "name": "IPSUM", + "endDate": "2021-10-09", + "startDate": "2016-04-27", "notes": "", "roles": [ "ORGANIZATION" @@ -63819,19 +73559,10 @@ "siteRegistry": false }, { + "uuid": "ca44c7d0-3589-419e-b6dd-0d33a61e1f88", "name": "IPSUM", - "endDate": "2021-04-03", - "startDate": "2019-01-13", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": false - }, - { - "name": "AMET, DOLOR SIT", - "endDate": "2019-04-03", - "startDate": "2013-10-16", + "endDate": "2016-11-13", + "startDate": "2017-12-16", "notes": "", "roles": [ "EMPLOYEE" @@ -63839,143 +73570,107 @@ "siteRegistry": true }, { - "name": "AMET, DOLOR SIT", - "endDate": "2017-10-02", - "startDate": "2015-01-10", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": true - }, - { + "uuid": "521a95df-018c-4834-b7b7-6fbd89ed9415", "name": "IPSUM", - "endDate": "2015-06-29", - "startDate": "2018-04-06", + "endDate": "2021-05-24", + "startDate": "2022-01-11", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], - "siteRegistry": true + "siteRegistry": false } ], "suspectLandUses": [ { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-08-10 (described on Site Profile dated 2018-08-10)", + "uuid": "4308c430-dfc2-4120-a6e2-8cd6dbed67cb", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2020-12-02 (described on Site Profile dated 2020-12-02)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { + "uuid": "f3f718f0-07f7-4885-b1d2-71b3bece4606", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-07-13 (described on Site Profile dated 2019-07-13)", + "notes": "INSERTED FOR SITE PROFILE DATED 2017-03-09 (described on Site Profile dated 2017-03-09)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" - }, - { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2013-11-27 (described on Site Profile dated 2013-11-27)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], "parcelDescriptions": [ { - "siteRegistry": false, - "dateNoted": "2022-03-20", - "parcelID": "18391", - "crownLandUsePIN": "19331", - "crownLandFileNumber": "17786", - "landDescription": "LOT 5 OF LOT 2 BLOCK 1 DISTRICT LOT 5 PLAN 5924" + "uuid": "30dd48ac-5b2f-4350-be83-9c030ebed19e", + "siteRegistry": true, + "dateNoted": "2014-09-27", + "parcelID": "16455", + "crownLandUsePIN": "20716", + "crownLandFileNumber": "18865", + "landDescription": "LOT 5 OF LOT 1 BLOCK 4 DISTRICT LOT 2 PLAN 9162" }, { - "siteRegistry": true, - "dateNoted": "2016-12-11", - "parcelID": "16852", - "crownLandUsePIN": "15298", - "crownLandFileNumber": "15718", - "landDescription": "LOT 3 OF LOT 5 BLOCK 2 DISTRICT LOT 3 PLAN 4171" + "uuid": "209d19b1-16a9-4056-9e0c-b18c7cc14ee3", + "siteRegistry": false, + "dateNoted": "2017-03-19", + "parcelID": "15223", + "crownLandUsePIN": "20808", + "crownLandFileNumber": "20797", + "landDescription": "LOT 5 OF LOT 4 BLOCK 4 DISTRICT LOT 5 PLAN 2983" }, { + "uuid": "b0c35900-5362-4641-b69d-6aaead82fb58", "siteRegistry": false, - "dateNoted": "2019-07-11", - "parcelID": "18085", - "crownLandUsePIN": "19980", - "crownLandFileNumber": "17582", - "landDescription": "LOT 3 OF LOT 5 BLOCK 3 DISTRICT LOT 2 PLAN 7291" + "dateNoted": "2021-09-26", + "parcelID": "17842", + "crownLandUsePIN": "17533", + "crownLandFileNumber": "17655", + "landDescription": "LOT 2 OF LOT 3 BLOCK 5 DISTRICT LOT 4 PLAN 4031" }, { - "siteRegistry": true, - "dateNoted": "2020-12-31", - "parcelID": "16110", - "crownLandUsePIN": "15202", - "crownLandFileNumber": "17571", - "landDescription": "LOT 1 OF LOT 5 BLOCK 4 DISTRICT LOT 2 PLAN 4149" + "uuid": "1ffaf210-d3b9-4413-bb49-af0867c102e6", + "siteRegistry": false, + "dateNoted": "2015-02-15", + "parcelID": "17291", + "crownLandUsePIN": "15644", + "crownLandFileNumber": "16187", + "landDescription": "LOT 3 OF LOT 1 BLOCK 1 DISTRICT LOT 5 PLAN 7475" }, { + "uuid": "d412f125-7bdd-4b32-af6b-91938ee4fd70", "siteRegistry": true, - "dateNoted": "2015-07-22", - "parcelID": "19812", - "crownLandUsePIN": "15516", - "crownLandFileNumber": "20687", - "landDescription": "LOT 3 OF LOT 5 BLOCK 5 DISTRICT LOT 4 PLAN 4013" + "dateNoted": "2019-02-12", + "parcelID": "17021", + "crownLandUsePIN": "16007", + "crownLandFileNumber": "19020", + "landDescription": "LOT 5 OF LOT 2 BLOCK 2 DISTRICT LOT 1 PLAN 6035" } ], "siteDisclosures": [ { + "uuid": "d95d41ce-4319-4724-b635-1e02b4dab395", "siteRegistry": true, - "dateReceived": "2020-02-13", - "dateCompleted": "2017-04-09", - "dateEntered": "2015-03-30", - "dateRegistrar": "2015-08-28", - "dateLocalAuthorityReceived": "2016-02-25", - "summary": "Eius sed porro nobis id dolorum expedita eligendi officiis.\nAspernatur eius placeat harum saepe nemo ut incidunt repudiandae cum.\nQuae ex assumenda.", - "informationUsed": "Tempora unde iste nesciunt quas excepturi incidunt.\nNisi provident optio sed culpa fuga.\nConsequatur illo quidem perferendis officiis.", - "pastOrPresentOrders": "Explicabo voluptates excepturi.\nLaboriosam molestias eligendi distinctio.\nQuae totam ea consectetur ullam esse.", - "commercialAndIndustrialPurposes": [ - { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false - }, - { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false - }, - { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false - } - ] - }, - { - "siteRegistry": true, - "dateReceived": "2017-08-11", - "dateCompleted": "2022-05-20", - "dateEntered": "2018-02-21", - "dateRegistrar": "2023-03-24", - "dateLocalAuthorityReceived": "2021-01-06", - "summary": "Sapiente numquam repudiandae eaque quasi occaecati ab qui.\nPerferendis dolorem explicabo deleniti facere doloribus quisquam.\nVoluptates sed molestiae.", - "informationUsed": "Dolores illo facere qui.\nAt omnis accusantium repellat impedit.\nDeleniti officia fugit earum reiciendis officia cum voluptate fuga expedita.", - "pastOrPresentOrders": "Nobis dicta dicta inventore quod excepturi.\nNatus odit nemo animi repudiandae.", + "dateReceived": "2016-06-28", + "dateCompleted": "2022-05-16", + "dateEntered": "2021-07-04", + "dateRegistrar": "2016-09-16", + "dateLocalAuthorityReceived": "2017-09-09", + "summary": "Voluptatibus voluptas temporibus sequi quae laudantium quod laboriosam fugit.\nIn odio sit culpa.\nUnde expedita similique optio maiores.", + "informationUsed": "Eum voluptates tenetur earum maiores.\nRepellat cum totam.\nOdio molestias rem a veniam.", + "pastOrPresentOrders": "Tenetur molestiae veniam suscipit est sed ad officia corporis.\nMinus dolorum repudiandae.", "commercialAndIndustrialPurposes": [ { + "uuid": "955310da-de50-4e35-86ee-e3079fe4a4a3", "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true - }, - { - "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true + "siteRegistry": false }, { + "uuid": "10b65b81-c0ea-4e04-be43-ae465d900752", "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false }, { + "uuid": "029c8ad3-ca17-4c12-b738-6d970f938ae6", "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false } ] @@ -63983,109 +73678,114 @@ ], "activityLog": [ { + "uuid": "6e6d603c-da79-427e-b2b6-1fc8da8468d0", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "STRACKE ALESSIA", + "timestamp": "2022-07-01" + }, + { + "uuid": "74ae0eab-66ef-4a5f-b782-2da753b76645", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "ROMAGUERA LUNA", - "timestamp": "2019-01-21" + "user": "LYNCH MYLES", + "timestamp": "2019-07-13" }, { + "uuid": "6fa3b288-8ba2-46b8-bc28-924fe8aa96b4", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "KEEBLER ADRIANA", + "timestamp": "2019-02-20" + }, + { + "uuid": "227835db-58cc-45a2-acd7-4d1d45a8efac", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "REYNOLDS ZULA", - "timestamp": "2021-06-24" + "user": "SCHAEFER AUDREY", + "timestamp": "2021-06-22" }, { + "uuid": "fd9af48b-ce5b-4010-8fab-faacdcb3dd5a", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "TOY JARRELL", - "timestamp": "2022-10-19" + "user": "HINTZ JERMEY", + "timestamp": "2019-05-05" }, { + "uuid": "6a5700f9-28ad-4c0c-b0e6-f4452c27ed2c", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "FEEST KATHARINA", - "timestamp": "2018-02-07" + "user": "FARRELL EMILE", + "timestamp": "2023-01-19" }, { - "siteRegistry": false, + "uuid": "f07251f3-f0a3-4a4f-aaf2-697ded4a9182", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "FRIESEN BROWN", - "timestamp": "2018-06-03" + "user": "GUTKOWSKI DEVIN", + "timestamp": "2017-06-30" }, { + "uuid": "c41d2acf-24ab-4518-871f-020471ebc6d5", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "WILLMS AUBREY", - "timestamp": "2021-10-06" + "user": "TOWNE IRVING", + "timestamp": "2022-06-24" + }, + { + "uuid": "a9a74b2b-067c-416b-94a9-a789757ad1e1", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "KAUTZER JULIANA", + "timestamp": "2019-07-24" } ], "associatedSites": [ { - "dateNoted": "2022-03-11", + "uuid": "3e85b79d-4f85-490c-b3fc-c2c54e8d4ac2", + "dateNoted": "2021-06-24", "notes": "", - "parcelID": "19637", - "siteID": "18136", + "parcelID": "17867", + "siteID": "18294", "siteRegistry": true }, { - "dateNoted": "2020-10-30", + "uuid": "8eca5ab6-b260-421f-ab22-26ab51b97391", + "dateNoted": "2015-12-09", "notes": "", - "parcelID": "18367", - "siteID": "17387", - "siteRegistry": true + "parcelID": "20728", + "siteID": "18893", + "siteRegistry": false } ] }, { - "uuid": "45aaa12c-d772-49e1-a6e0-49434ebc97f0", - "siteID": 19802, - "address": "649 Gleason Coves", - "latitude": 49.7066, - "longitude": -128.3762, - "lastUpdated": "2023-02-24", - "city": "South Ruthe", + "uuid": "30e5558a-0e1d-4282-ac25-1ea58b0ce9d4", + "siteID": 19522, + "address": "3471 Audie Lane", + "latitude": 52.561, + "longitude": -130.5639, + "lastUpdated": "2021-05-03", + "city": "Lake Rosellabury", "region": " North Coast", - "victoriaFile": "26250-20/9513", + "victoriaFile": "26250-20/19681", "regionalFile": "N/A", "parcelIDs": [ - 7737846, - 5343577, - 293309, - 8892053, - 4858955 + 4623008, + 8307770, + 5023024, + 4723296, + 8678768 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2016-09-14", - "completed": "2017-08-01", - "initiated": "2016-11-14", - "ministryContact": "VANDERVORT LORENA", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - } - ], - "siteRegistry": false - }, - { - "createdAt": "2016-03-02", - "completed": "2022-05-04", - "initiated": "2017-02-05", - "ministryContact": "CRONIN MATT", + "uuid": "b4c6b220-100f-4637-b22b-b1c5fd9c4eb1", + "createdAt": "2019-06-13", + "completed": "2017-10-03", + "initiated": "2018-02-04", + "ministryContact": "WEISSNAT ORAL", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -64094,47 +73794,32 @@ ], "notationParticipants": [ { + "uuid": "35818891-fc5d-45ee-b86d-98143eaa33ba", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - } - ], - "siteRegistry": true - }, - { - "createdAt": "2023-05-29", - "completed": "2018-03-22", - "initiated": "2015-11-13", - "ministryContact": "SCHMIDT-FRANECKI KIRSTIN", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "e5165059-0585-43c2-a878-82243795e75b", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "b1aad4d4-2dab-4abf-85e5-417d36475b80", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false }, { + "uuid": "0aebe9f1-b2c0-4dd6-8fee-b32f7b97da67", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", + "uuid": "410543d9-f5c9-453c-ad15-6a93feea83bd", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true } @@ -64142,10 +73827,11 @@ "siteRegistry": false }, { - "createdAt": "2023-07-31", - "completed": "2015-06-03", - "initiated": "2015-10-24", - "ministryContact": "LITTEL ANISSA", + "uuid": "61053e1b-66d0-4764-8a39-386324df30a5", + "createdAt": "2017-12-07", + "completed": "2021-07-15", + "initiated": "2019-07-09", + "ministryContact": "ULLRICH ORLO", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -64154,64 +73840,71 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", + "uuid": "c3a46377-70d8-4803-b92c-ea58574f491e", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { + "uuid": "57d40096-5303-4df1-a21e-6be1a52cf80a", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false + "role": "SUBMITTED BY", + "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false } ], "participants": [ { + "uuid": "8ebee8a9-a01b-4ae9-bc81-71f52db978a9", "name": "IPSUM", - "endDate": "2015-12-02", - "startDate": "2022-05-12", + "endDate": "2017-01-28", + "startDate": "2014-10-19", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": false + "siteRegistry": true }, { - "name": "IPSUM", - "endDate": "2013-12-13", - "startDate": "2017-10-22", + "uuid": "f88f1b9a-f8bf-4490-85b4-cd8be189837a", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2014-04-03", + "startDate": "2021-10-17", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true }, { - "name": "IPSUM", - "endDate": "2018-03-06", - "startDate": "2018-01-25", + "uuid": "896e3e33-d8a2-4821-a943-04e218064ba4", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2018-08-16", + "startDate": "2017-01-30", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": false + "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2020-11-02", - "startDate": "2019-07-06", + "uuid": "ec9dd4e4-102f-4975-9bda-2f641389663d", + "name": "IPSUM", + "endDate": "2022-01-16", + "startDate": "2014-12-21", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], - "siteRegistry": false + "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2014-12-29", - "startDate": "2016-10-05", + "uuid": "256a6894-41c3-4772-a267-2a39cbab423b", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2015-02-03", + "startDate": "2021-04-27", "notes": "", "roles": [ "EMPLOYEE" @@ -64221,120 +73914,72 @@ ], "suspectLandUses": [ { + "uuid": "8dc654dc-ca33-4646-ba75-a4e23ee89d34", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-07-19 (described on Site Profile dated 2016-07-19)", + "notes": "INSERTED FOR SITE PROFILE DATED 2021-01-10 (described on Site Profile dated 2021-01-10)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { + "uuid": "993f96c5-f551-4060-9e7d-ad52b2cd5d2c", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-06-18 (described on Site Profile dated 2021-06-18)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" - }, - { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-09-27 (described on Site Profile dated 2017-09-27)", + "notes": "INSERTED FOR SITE PROFILE DATED 2019-03-04 (described on Site Profile dated 2019-03-04)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { + "uuid": "a218fdaf-788b-4482-91c4-74e7c047b5b1", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-07-25 (described on Site Profile dated 2016-07-25)", + "notes": "INSERTED FOR SITE PROFILE DATED 2019-03-16 (described on Site Profile dated 2019-03-16)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" - }, - { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-04-04 (described on Site Profile dated 2022-04-04)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], "parcelDescriptions": [ { - "siteRegistry": true, - "dateNoted": "2018-10-14", - "parcelID": "20809", - "crownLandUsePIN": "19378", - "crownLandFileNumber": "20749", - "landDescription": "LOT 1 OF LOT 3 BLOCK 3 DISTRICT LOT 3 PLAN 6207" - }, - { - "siteRegistry": true, - "dateNoted": "2021-02-05", - "parcelID": "15761", - "crownLandUsePIN": "17410", - "crownLandFileNumber": "15244", - "landDescription": "LOT 5 OF LOT 5 BLOCK 1 DISTRICT LOT 4 PLAN 9323" - }, - { - "siteRegistry": false, - "dateNoted": "2017-11-13", - "parcelID": "19535", - "crownLandUsePIN": "18822", - "crownLandFileNumber": "18039", - "landDescription": "LOT 3 OF LOT 2 BLOCK 1 DISTRICT LOT 5 PLAN 9501" - }, - { + "uuid": "f5397ef9-8318-4288-ac94-fca8994ec90f", "siteRegistry": false, - "dateNoted": "2015-11-11", - "parcelID": "15440", - "crownLandUsePIN": "20647", - "crownLandFileNumber": "15628", - "landDescription": "LOT 1 OF LOT 3 BLOCK 2 DISTRICT LOT 2 PLAN 4757" + "dateNoted": "2020-12-11", + "parcelID": "16037", + "crownLandUsePIN": "18399", + "crownLandFileNumber": "16417", + "landDescription": "LOT 3 OF LOT 4 BLOCK 1 DISTRICT LOT 4 PLAN 7376" }, { + "uuid": "8bf04d60-021b-4561-b610-8ece62723d4d", "siteRegistry": true, - "dateNoted": "2015-04-19", - "parcelID": "17211", - "crownLandUsePIN": "17932", - "crownLandFileNumber": "17250", - "landDescription": "LOT 5 OF LOT 2 BLOCK 2 DISTRICT LOT 4 PLAN 9702" + "dateNoted": "2014-11-07", + "parcelID": "18241", + "crownLandUsePIN": "16017", + "crownLandFileNumber": "15354", + "landDescription": "LOT 2 OF LOT 2 BLOCK 3 DISTRICT LOT 2 PLAN 4055" } ], "siteDisclosures": [ { + "uuid": "f5bcc9e7-5789-49d8-b8f3-70248a9cab10", "siteRegistry": false, - "dateReceived": "2023-08-28", - "dateCompleted": "2013-10-28", - "dateEntered": "2017-11-05", - "dateRegistrar": "2014-01-10", - "dateLocalAuthorityReceived": "2015-05-02", - "summary": "Nostrum accusamus nemo deleniti maxime quo deserunt inventore commodi.\nTotam itaque necessitatibus unde repudiandae qui.", - "informationUsed": "Eveniet modi beatae veniam assumenda fugit aut expedita tempora ea.\nNobis suscipit nobis excepturi.\nEarum amet voluptates laudantium similique illum.\nCumque magnam omnis laboriosam maxime ullam ea suscipit id praesentium.", - "pastOrPresentOrders": "Numquam eos architecto in eius dolore reprehenderit ut.", + "dateReceived": "2014-10-23", + "dateCompleted": "2016-03-10", + "dateEntered": "2020-05-19", + "dateRegistrar": "2022-08-30", + "dateLocalAuthorityReceived": "2023-07-23", + "summary": "Reprehenderit blanditiis quae aut quod maiores quo vitae dolorem.\nMagni doloremque minima fugit numquam nihil officia.", + "informationUsed": "Nobis eius accusantium culpa vitae laborum non.\nQuo magni non eum mollitia ipsa.\nFugiat est repudiandae et reprehenderit asperiores.", + "pastOrPresentOrders": "Ipsa facilis dolores cum ipsum maxime doloribus odio.\nQuia quaerat facilis veniam nobis.\nUnde unde doloribus.", "commercialAndIndustrialPurposes": [ { - "scheduleReference": "F1*", + "uuid": "4b192d95-648d-4c3a-a297-d82945c3c7f2", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false - }, - { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false - } - ] - }, - { - "siteRegistry": true, - "dateReceived": "2018-04-30", - "dateCompleted": "2015-02-06", - "dateEntered": "2018-06-24", - "dateRegistrar": "2023-03-08", - "dateLocalAuthorityReceived": "2015-04-07", - "summary": "Quidem facere amet.", - "informationUsed": "Cumque quibusdam facere minus vitae eveniet maxime.\nTotam numquam libero repudiandae.\nQuos nesciunt alias exercitationem ipsam voluptate laborum consectetur perferendis accusantium.", - "pastOrPresentOrders": "Ad nisi et suscipit nam ex modi.\nVeniam ratione nostrum hic.", - "commercialAndIndustrialPurposes": [ - { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { + "uuid": "527ad977-5176-4531-9d4a-ba0ac2c5afaa", "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, { - "scheduleReference": "F2*", + "uuid": "5341d923-5a26-401b-9c07-0c9aca79b1da", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true } @@ -64343,90 +73988,113 @@ ], "activityLog": [ { - "siteRegistry": false, + "uuid": "34702782-6816-4fac-9170-55358c1bb722", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "JERDE CAMILA", - "timestamp": "2017-06-19" + "user": "FERRY JENNINGS", + "timestamp": "2022-08-15" }, { + "uuid": "d8d8e7f5-5c04-470d-9766-58f87bcc5c86", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "EBERT HOBART", - "timestamp": "2021-05-21" + "user": "PURDY TYRELL", + "timestamp": "2017-09-21" }, { + "uuid": "a76362f1-b9b4-4578-8ea2-d48da67a3bca", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "MANTE BRISA", - "timestamp": "2018-01-14" + "user": "FRITSCH ESTHER", + "timestamp": "2015-04-10" }, { + "uuid": "35f973a2-61ac-4161-93ea-9be3c5100d8f", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "POUROS ELMIRA", - "timestamp": "2019-01-17" + "user": "GREENHOLT MISSOURI", + "timestamp": "2019-03-20" + }, + { + "uuid": "841a6d10-bb45-44b9-a09d-809a1ec6c63e", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "GLOVER MAKAYLA", + "timestamp": "2017-04-27" }, { + "uuid": "4cfeac25-1667-4918-a232-1c553a422a9c", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "WALTER VAUGHN", - "timestamp": "2022-09-07" + "user": "BAILEY CARSON", + "timestamp": "2021-10-20" }, { + "uuid": "d2f70786-314e-4720-9d04-de30894fe8d9", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "ZIEME MOHAMED", - "timestamp": "2021-08-18" + "user": "YUNDT BRIA", + "timestamp": "2017-11-05" + }, + { + "uuid": "460861b3-d104-49a5-9947-6f1e41fc0a1f", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "FRANEY BRAIN", + "timestamp": "2014-04-24" + }, + { + "uuid": "9202abc2-9e0f-4420-b4a7-36bc74f9f13b", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "WOLF AGNES", + "timestamp": "2023-02-06" }, { + "uuid": "46d4fad2-58c4-4f22-a66c-1c5d03242196", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "HUEL TREVION", - "timestamp": "2020-05-15" + "user": "DENESIK DEONDRE", + "timestamp": "2016-09-23" } ], "associatedSites": [ { - "dateNoted": "2020-10-12", - "notes": "", - "parcelID": "15226", - "siteID": "20555", - "siteRegistry": false - }, - { - "dateNoted": "2016-07-01", + "uuid": "9f3e4f42-8594-4feb-916e-1c2817766c60", + "dateNoted": "2022-08-02", "notes": "", - "parcelID": "16688", - "siteID": "17653", + "parcelID": "15418", + "siteID": "20496", "siteRegistry": false } ] }, { - "uuid": "8dc10898-4181-4008-b12b-02901bdb1023", - "siteID": 18863, - "address": "83328 Orin View", - "latitude": 58.5702, - "longitude": -125.0072, - "lastUpdated": "2019-05-18", - "city": "Fort Jonastown", - "region": "Thompson-Okanagan", - "victoriaFile": "26250-20/19063", + "uuid": "5804250e-280a-499f-ac94-4166a254ef7a", + "siteID": 20112, + "address": "513 Ruecker Spring", + "latitude": 52.0796, + "longitude": -138.1973, + "lastUpdated": "2017-04-01", + "city": "Perth Amboy", + "region": "Kootenay", + "victoriaFile": "26250-20/4942", "regionalFile": "N/A", "parcelIDs": [ - 667567, - 6600001, - 4855872, - 9217154, - 9546058 + 4143145, + 5782598, + 1112515, + 5920918, + 9820019 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2014-05-29", - "completed": "2018-12-15", - "initiated": "2020-07-06", - "ministryContact": "VONRUEDEN ALYCIA", + "uuid": "81bf5479-48d0-4992-ac1d-67911772ccd9", + "createdAt": "2020-08-14", + "completed": "2022-02-19", + "initiated": "2019-05-16", + "ministryContact": "SENGER EDUARDO", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -64435,38 +74103,38 @@ ], "notationParticipants": [ { + "uuid": "935618be-4285-4d1e-ab67-b07394ef4b9f", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false + "role": "SUBMITTED BY", + "siteRegistry": true }, { + "uuid": "5b985aea-8408-4e23-8cd0-db9aca66bc9f", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { + "uuid": "4c9b877b-a26c-4367-9af7-342dbeebe71a", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { + "uuid": "16bcf3a7-76dd-4111-9c46-6104e7921894", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2016-05-22", - "completed": "2019-06-05", - "initiated": "2022-03-14", - "ministryContact": "RAU-SIPES DOMENICK", + "uuid": "5098d000-7bcf-410c-8d07-a25645f36059", + "createdAt": "2017-04-02", + "completed": "2016-05-29", + "initiated": "2017-08-02", + "ministryContact": "DONNELLY EMMALEE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -64475,16 +74143,25 @@ ], "notationParticipants": [ { + "uuid": "b0e55859-1aff-4eb9-9056-dd460dcc8e52", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { + "uuid": "0dea05d9-d160-48b5-91a8-5bea0a550c67", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "uuid": "604846ed-c812-45bd-ab83-5cc0a0b638fc", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": false }, { + "uuid": "be60e135-b4b7-4190-a918-49912b2ea5b8", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false @@ -64493,10 +74170,11 @@ "siteRegistry": false }, { - "createdAt": "2017-02-11", - "completed": "2023-07-26", - "initiated": "2021-01-09", - "ministryContact": "SPORER ALFRED", + "uuid": "44fab54b-d1b4-40ad-8ca7-cf8153252f17", + "createdAt": "2019-08-15", + "completed": "2014-12-16", + "initiated": "2020-12-21", + "ministryContact": "LITTEL MANDY", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -64505,262 +74183,249 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "296291b3-1418-45e3-983b-ce4784738f2a", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", + "uuid": "c3a8b4a1-815c-4614-95ef-927efb1455c0", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false + }, + { + "uuid": "3869e3c0-70bf-4d8f-9a25-5e86a1bb5311", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true } ], "participants": [ { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2016-04-04", - "startDate": "2021-06-02", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": false - }, - { - "name": "IPSUM", - "endDate": "2016-04-16", - "startDate": "2023-06-16", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": false - }, - { - "name": "IPSUM", - "endDate": "2016-10-22", - "startDate": "2017-04-11", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": false - }, - { + "uuid": "cf30f8e4-e9f2-49fe-b3e3-2a0d68290120", "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2016-03-28", - "startDate": "2017-07-15", + "endDate": "2016-11-07", + "startDate": "2017-01-17", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false }, { - "name": "IPSUM", - "endDate": "2021-07-11", - "startDate": "2019-03-26", + "uuid": "e2d8c447-728d-4fd8-a0e4-cd09b3d4d642", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2019-08-25", + "startDate": "2016-11-25", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": false } ], "suspectLandUses": [ { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-05-13 (described on Site Profile dated 2017-05-13)", + "uuid": "a77f08ce-1e5e-4032-9671-d1757f1bc38c", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2022-03-23 (described on Site Profile dated 2022-03-23)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-01-28 (described on Site Profile dated 2018-01-28)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "uuid": "dcc89796-9fbb-449b-92fb-b62127deebf1", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2016-07-10 (described on Site Profile dated 2016-07-10)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], "parcelDescriptions": [ { + "uuid": "33950729-a8c8-4aeb-af98-689d13489198", "siteRegistry": true, - "dateNoted": "2019-01-02", - "parcelID": "20925", - "crownLandUsePIN": "18869", - "crownLandFileNumber": "17110", - "landDescription": "LOT 3 OF LOT 1 BLOCK 2 DISTRICT LOT 4 PLAN 4805" + "dateNoted": "2022-01-08", + "parcelID": "20519", + "crownLandUsePIN": "18637", + "crownLandFileNumber": "19434", + "landDescription": "LOT 1 OF LOT 3 BLOCK 3 DISTRICT LOT 4 PLAN 8401" }, { - "siteRegistry": true, - "dateNoted": "2018-10-14", - "parcelID": "17325", - "crownLandUsePIN": "19023", - "crownLandFileNumber": "20651", - "landDescription": "LOT 2 OF LOT 2 BLOCK 4 DISTRICT LOT 2 PLAN 8503" + "uuid": "e687fc3a-1584-4436-8c69-5d8caab81572", + "siteRegistry": false, + "dateNoted": "2014-08-03", + "parcelID": "16902", + "crownLandUsePIN": "17337", + "crownLandFileNumber": "19650", + "landDescription": "LOT 5 OF LOT 2 BLOCK 5 DISTRICT LOT 2 PLAN 9335" }, { - "siteRegistry": false, - "dateNoted": "2017-04-02", - "parcelID": "18854", - "crownLandUsePIN": "20973", - "crownLandFileNumber": "19955", - "landDescription": "LOT 1 OF LOT 4 BLOCK 4 DISTRICT LOT 4 PLAN 8166" + "uuid": "0f579e12-1870-494f-b2a7-f15cb66c15e8", + "siteRegistry": true, + "dateNoted": "2023-03-24", + "parcelID": "18464", + "crownLandUsePIN": "16473", + "crownLandFileNumber": "18978", + "landDescription": "LOT 5 OF LOT 3 BLOCK 2 DISTRICT LOT 3 PLAN 4506" }, { + "uuid": "b0eba650-6d16-4a4d-9579-f57b45770f48", "siteRegistry": true, - "dateNoted": "2018-03-18", - "parcelID": "19852", - "crownLandUsePIN": "15503", - "crownLandFileNumber": "20164", - "landDescription": "LOT 4 OF LOT 2 BLOCK 4 DISTRICT LOT 5 PLAN 5838" + "dateNoted": "2022-12-05", + "parcelID": "16387", + "crownLandUsePIN": "16698", + "crownLandFileNumber": "19774", + "landDescription": "LOT 4 OF LOT 5 BLOCK 4 DISTRICT LOT 4 PLAN 3470" }, { - "siteRegistry": false, - "dateNoted": "2019-08-18", - "parcelID": "16978", - "crownLandUsePIN": "18485", - "crownLandFileNumber": "20963", - "landDescription": "LOT 2 OF LOT 5 BLOCK 5 DISTRICT LOT 2 PLAN 6840" + "uuid": "44ab6bca-a027-435b-a1bc-0f6f1f467159", + "siteRegistry": true, + "dateNoted": "2015-10-11", + "parcelID": "20664", + "crownLandUsePIN": "15227", + "crownLandFileNumber": "16133", + "landDescription": "LOT 4 OF LOT 4 BLOCK 2 DISTRICT LOT 1 PLAN 7449" } ], "siteDisclosures": [ { + "uuid": "bcbd0493-6dba-4dfd-8739-026a81710d82", "siteRegistry": true, - "dateReceived": "2019-07-11", - "dateCompleted": "2021-05-08", - "dateEntered": "2015-12-06", - "dateRegistrar": "2016-09-01", - "dateLocalAuthorityReceived": "2019-01-13", - "summary": "Maiores saepe quas nulla perferendis quibusdam provident harum eius.\nQuidem expedita ratione hic ea pariatur sint eaque exercitationem unde.\nIusto aliquam quos similique veniam fuga omnis.", - "informationUsed": "Sunt asperiores voluptatum nulla totam repudiandae unde rerum voluptatibus.\nQuis porro asperiores.\nLibero doloremque nulla saepe ipsam iure saepe.\nEarum voluptate nobis quae dolorem sit aut at voluptate quisquam.", - "pastOrPresentOrders": "Libero quibusdam eveniet cum odit possimus enim.", + "dateReceived": "2020-12-13", + "dateCompleted": "2020-07-04", + "dateEntered": "2022-07-19", + "dateRegistrar": "2019-11-04", + "dateLocalAuthorityReceived": "2021-06-01", + "summary": "Nobis laudantium deleniti debitis reprehenderit.", + "informationUsed": "Eveniet reiciendis perspiciatis.\nMinima facilis officiis ratione iure iure voluptatum architecto.\nLibero autem corrupti quae excepturi quod.\nFacere temporibus doloremque.\nCupiditate saepe cupiditate hic qui accusantium alias et doloremque.", + "pastOrPresentOrders": "Enim temporibus inventore minima placeat delectus dicta voluptate aliquid sapiente.\nVelit numquam nam fugit distinctio neque quod consectetur alias sapiente.\nA reprehenderit dolor ab repudiandae sint est labore quaerat.", "commercialAndIndustrialPurposes": [ { + "uuid": "9f14845f-0d56-4fbd-ac19-c64b09388cda", "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false - }, - { - "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true - } - ] - }, - { - "siteRegistry": false, - "dateReceived": "2015-10-15", - "dateCompleted": "2016-09-23", - "dateEntered": "2014-08-06", - "dateRegistrar": "2015-05-08", - "dateLocalAuthorityReceived": "2014-11-18", - "summary": "Dolores sapiente assumenda numquam modi.\nCorporis dolor mollitia debitis maxime omnis.\nAutem error rerum autem a.", - "informationUsed": "Soluta quam magnam.\nVoluptatem earum molestiae sapiente aspernatur error rerum impedit.\nEx debitis tenetur nostrum recusandae.\nPossimus fugiat minus.", - "pastOrPresentOrders": "Maxime nulla velit neque ut eveniet iusto.\nError repellat eaque.", - "commercialAndIndustrialPurposes": [ - { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false - }, - { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false - }, - { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false }, { + "uuid": "a0131a18-4578-40c3-bb9e-58d0da2b19da", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true + "siteRegistry": false } ] } ], "activityLog": [ { - "siteRegistry": false, + "uuid": "f5e11c13-8858-412e-a47b-428303b8498c", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "POUROS MILAN", - "timestamp": "2019-09-26" + "user": "KUHN TIERRA", + "timestamp": "2017-10-06" }, { + "uuid": "7b03aa4c-3437-484f-8e34-5428e387c1c8", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "DIBBERT ARCHIBALD", - "timestamp": "2014-01-14" + "user": "KUHIC BILLY", + "timestamp": "2016-02-07" }, { + "uuid": "97dc354b-1ca9-4bc8-b74c-fe7fb7738597", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "KESSLER YOSHIKO", - "timestamp": "2022-12-02" + "user": "KEEBLER DOROTHY", + "timestamp": "2020-12-31" }, { + "uuid": "a487ba65-26d4-4151-baa2-1f956fe851ea", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "BRAKUS TYRA", - "timestamp": "2017-02-11" + "user": "CHAMPLIN OSBORNE", + "timestamp": "2023-09-26" }, { - "siteRegistry": true, + "uuid": "f3408de6-c433-45bf-8183-974d2377a4ac", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "TILLMAN ALEK", - "timestamp": "2014-11-28" + "user": "HAUCK LAURYN", + "timestamp": "2023-02-05" }, { + "uuid": "a677f159-2b35-4563-9e88-9b9bea2d0479", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "GUTMANN SHYANNE", - "timestamp": "2015-11-10" + "user": "SCHUPPE MARIANA", + "timestamp": "2019-09-01" }, { + "uuid": "fc8a51d7-2dad-4716-8ea9-0649f74ab345", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "KUVALIS LUDWIG", - "timestamp": "2018-01-29" + "user": "BROWN JANNIE", + "timestamp": "2014-06-30" + }, + { + "uuid": "fa0f4821-507e-4ab9-bbc6-80230b17b08f", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "SCHULTZ ELIAS", + "timestamp": "2019-05-04" + }, + { + "uuid": "a701d952-6e07-4335-a17a-3847af33d567", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "HAGENES TABITHA", + "timestamp": "2021-03-29" + }, + { + "uuid": "0f1452f4-24ce-4d47-b6ec-e11a2369630a", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "WISOZK DEMARCUS", + "timestamp": "2017-02-18" } ], "associatedSites": [ { - "dateNoted": "2019-09-22", + "uuid": "bbe15970-518b-4f34-a645-f4a81e06ceea", + "dateNoted": "2020-06-29", "notes": "", - "parcelID": "16511", - "siteID": "20139", + "parcelID": "16453", + "siteID": "16728", "siteRegistry": true } ] }, { - "uuid": "5a05c2c7-dfe1-4871-8710-7eac8432d881", - "siteID": 20963, - "address": "21439 Nathan Alley", - "latitude": 53.7578, - "longitude": -127.8701, - "lastUpdated": "2019-09-23", - "city": "Braunworth", - "region": " North Coast", - "victoriaFile": "26250-20/15095", + "uuid": "a340d9f3-fe9e-415c-bb2f-cf955cba0024", + "siteID": 16323, + "address": "5341 Efrain Turnpike", + "latitude": 49.6545, + "longitude": -128.2638, + "lastUpdated": "2016-01-05", + "city": "East Efren", + "region": "Mainland/Southwest", + "victoriaFile": "26250-20/3003", "regionalFile": "N/A", "parcelIDs": [ - 2481355, - 6036654, - 1359999, - 959321, - 227274 + 5485816, + 2676967, + 214467, + 4109041, + 691007 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2022-01-29", - "completed": "2022-04-01", - "initiated": "2023-01-07", - "ministryContact": "BECHTELAR FORD", + "uuid": "d18f2a8d-32b6-41aa-b989-8dc98e169310", + "createdAt": "2021-05-23", + "completed": "2019-12-29", + "initiated": "2022-06-23", + "ministryContact": "KSHLERIN ELWIN", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -64769,58 +74434,26 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { + "uuid": "25e88de3-1599-46c3-bf24-970883598569", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", "siteRegistry": true - } - ], - "siteRegistry": true - }, - { - "createdAt": "2018-05-24", - "completed": "2015-04-19", - "initiated": "2016-02-02", - "ministryContact": "WAELCHI-GIBSON KARSON", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "808f8f01-5375-48ff-9926-9bb00a29ab5a", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false } ], "siteRegistry": true }, { - "createdAt": "2019-10-05", - "completed": "2020-12-07", - "initiated": "2016-06-04", - "ministryContact": "EBERT BROWN", + "uuid": "a9c6dd9c-47b0-41b8-8d52-ff284e52726d", + "createdAt": "2023-08-18", + "completed": "2023-07-08", + "initiated": "2018-04-24", + "ministryContact": "STAMM SOLON", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -64829,38 +74462,32 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { + "uuid": "05b3c25e-0ddd-4d3d-b12a-1a297ba9b009", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "aacd0d12-b583-4f4c-b8fc-d16d8e24bcd3", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { + "uuid": "88f9a078-1e51-469d-a37d-a8a2dcd975d7", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true } ], "siteRegistry": true }, { - "createdAt": "2016-03-06", - "completed": "2017-10-28", - "initiated": "2020-11-28", - "ministryContact": "THIEL RUDY", + "uuid": "cc0f29a7-e87e-4fe2-b32c-52ce6df90cc0", + "createdAt": "2013-11-02", + "completed": "2019-03-03", + "initiated": "2014-04-13", + "ministryContact": "DICKINSON SONNY", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -64869,24 +74496,38 @@ ], "notationParticipants": [ { + "uuid": "08f6d02d-d007-4ef7-81c3-bd92f0894fd4", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { + "uuid": "19c929df-080a-46de-aa5c-f4d0310bc5fb", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true + "role": "SUBMITTED BY", + "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true } ], "participants": [ { + "uuid": "78bd6ff4-8570-47fd-9486-24f6ca4ec934", + "name": "IPSUM", + "endDate": "2014-11-29", + "startDate": "2018-03-11", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "uuid": "d9eec214-ba10-459f-baa1-33859043195c", "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2016-04-21", - "startDate": "2014-07-06", + "endDate": "2017-06-17", + "startDate": "2016-08-07", "notes": "", "roles": [ "EMPLOYEE" @@ -64894,257 +74535,239 @@ "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2014-10-08", - "startDate": "2021-08-25", + "uuid": "61b3eff1-f97f-4e4e-80dc-f457c3c752f7", + "name": "IPSUM", + "endDate": "2022-07-11", + "startDate": "2021-07-11", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false }, { + "uuid": "9fa4911b-cb21-454f-bfdd-009858d9032d", "name": "SHELL CANADA PRODUCTS", - "endDate": "2016-05-09", - "startDate": "2014-04-27", + "endDate": "2017-04-23", + "startDate": "2015-07-29", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], - "siteRegistry": false + "siteRegistry": true }, { + "uuid": "dd43a1b4-b36e-40da-bfce-1440185dfac2", "name": "IPSUM", - "endDate": "2014-07-18", - "startDate": "2021-05-15", + "endDate": "2020-02-08", + "startDate": "2014-01-06", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": false } ], "suspectLandUses": [ { + "uuid": "8933aba5-7f47-47db-a0e6-2af271def798", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2020-01-27 (described on Site Profile dated 2020-01-27)", + "notes": "INSERTED FOR SITE PROFILE DATED 2022-01-14 (described on Site Profile dated 2022-01-14)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { + "uuid": "ad04c494-6db8-4d3f-a4f9-33147ea61e06", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-06-04 (described on Site Profile dated 2015-06-04)", + "notes": "INSERTED FOR SITE PROFILE DATED 2014-10-25 (described on Site Profile dated 2014-10-25)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], "parcelDescriptions": [ { - "siteRegistry": false, - "dateNoted": "2023-04-14", - "parcelID": "18660", - "crownLandUsePIN": "19800", - "crownLandFileNumber": "18584", - "landDescription": "LOT 4 OF LOT 2 BLOCK 4 DISTRICT LOT 4 PLAN 6346" - }, - { - "siteRegistry": false, - "dateNoted": "2021-08-30", - "parcelID": "17340", - "crownLandUsePIN": "16356", - "crownLandFileNumber": "19503", - "landDescription": "LOT 1 OF LOT 2 BLOCK 2 DISTRICT LOT 2 PLAN 6026" + "uuid": "5a75a545-d471-40fc-9100-a96c7af04816", + "siteRegistry": true, + "dateNoted": "2014-05-17", + "parcelID": "18673", + "crownLandUsePIN": "16036", + "crownLandFileNumber": "18063", + "landDescription": "LOT 3 OF LOT 4 BLOCK 5 DISTRICT LOT 4 PLAN 8271" }, { - "siteRegistry": false, - "dateNoted": "2023-04-29", - "parcelID": "20824", - "crownLandUsePIN": "16531", - "crownLandFileNumber": "15843", - "landDescription": "LOT 2 OF LOT 5 BLOCK 4 DISTRICT LOT 3 PLAN 7762" + "uuid": "31fcfe2e-3bed-45d2-b614-127aca510d96", + "siteRegistry": true, + "dateNoted": "2019-01-09", + "parcelID": "16153", + "crownLandUsePIN": "18887", + "crownLandFileNumber": "19267", + "landDescription": "LOT 4 OF LOT 1 BLOCK 1 DISTRICT LOT 5 PLAN 4475" }, { + "uuid": "aff70580-5f8b-47fe-9b5c-909723eba6d3", "siteRegistry": true, - "dateNoted": "2022-01-06", - "parcelID": "16823", - "crownLandUsePIN": "19905", - "crownLandFileNumber": "15956", - "landDescription": "LOT 1 OF LOT 5 BLOCK 5 DISTRICT LOT 4 PLAN 9524" + "dateNoted": "2016-12-06", + "parcelID": "18664", + "crownLandUsePIN": "18758", + "crownLandFileNumber": "19897", + "landDescription": "LOT 3 OF LOT 4 BLOCK 3 DISTRICT LOT 2 PLAN 5217" }, { + "uuid": "be5c236c-63ef-4585-a0b2-931cc73c81a8", "siteRegistry": false, - "dateNoted": "2014-10-11", - "parcelID": "20370", - "crownLandUsePIN": "20264", - "crownLandFileNumber": "19484", - "landDescription": "LOT 4 OF LOT 1 BLOCK 3 DISTRICT LOT 1 PLAN 6059" + "dateNoted": "2020-08-12", + "parcelID": "20844", + "crownLandUsePIN": "20031", + "crownLandFileNumber": "18806", + "landDescription": "LOT 3 OF LOT 2 BLOCK 3 DISTRICT LOT 3 PLAN 5038" } ], "siteDisclosures": [ { - "siteRegistry": false, - "dateReceived": "2015-12-02", - "dateCompleted": "2015-12-10", - "dateEntered": "2014-09-11", - "dateRegistrar": "2014-08-28", - "dateLocalAuthorityReceived": "2023-09-10", - "summary": "Illo doloribus ducimus natus ipsam.", - "informationUsed": "Eligendi enim placeat dignissimos voluptas cum velit quibusdam excepturi.\nDignissimos harum quod iste ratione laboriosam.\nPraesentium modi dolore dolore sunt.\nSoluta numquam voluptates accusamus ea at saepe.", - "pastOrPresentOrders": "Quisquam accusantium voluptates officiis neque fugiat aliquid hic itaque cumque.", + "uuid": "1b74c44a-66b3-42eb-bd30-28073243bff6", + "siteRegistry": true, + "dateReceived": "2021-02-27", + "dateCompleted": "2017-04-16", + "dateEntered": "2015-02-25", + "dateRegistrar": "2015-07-09", + "dateLocalAuthorityReceived": "2016-06-15", + "summary": "Culpa quis magni nemo hic in provident hic ut maxime.\nA itaque harum est rem repellendus.", + "informationUsed": "Quam eveniet reprehenderit consequuntur ut repudiandae.\nNesciunt quo facilis sit ratione possimus quibusdam doloremque accusantium.\nSimilique fuga voluptatum assumenda ratione commodi fugit a.\nPlaceat asperiores vitae voluptatibus porro.", + "pastOrPresentOrders": "Suscipit aspernatur veniam sequi possimus sint accusamus eligendi eum.\nAt corrupti praesentium mollitia dolorem cupiditate voluptate repellendus.\nAssumenda repellendus similique.", "commercialAndIndustrialPurposes": [ { + "uuid": "8276098b-4eba-4cfe-a2d9-51f688bfbc7f", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false + "siteRegistry": true }, { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false + "uuid": "19dcb0ad-a9d7-4771-a2af-fed6cf7b05a5", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true }, { + "uuid": "c460bf90-f800-4607-8855-13e04a0114d8", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false + }, + { + "uuid": "d6383538-7f27-4f1a-b983-ea4668b74073", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true } ] }, { + "uuid": "117c13e0-cae9-448a-bab6-a7a458de2535", "siteRegistry": true, - "dateReceived": "2021-10-14", - "dateCompleted": "2015-04-08", - "dateEntered": "2019-01-26", - "dateRegistrar": "2016-01-29", - "dateLocalAuthorityReceived": "2017-05-23", - "summary": "Numquam culpa dolorum animi unde autem fugiat.\nRerum et placeat asperiores eos nisi illum maxime quasi.\nOccaecati autem magnam illum in.", - "informationUsed": "Itaque minus eveniet tenetur consectetur quidem adipisci facere.\nLaudantium debitis pariatur ullam eaque aperiam sint sapiente natus dicta.\nPlaceat quibusdam dicta totam nihil.\nRepellat iure incidunt.", - "pastOrPresentOrders": "Cumque magnam occaecati nostrum blanditiis hic voluptas veniam recusandae.\nOmnis vitae commodi distinctio totam nisi facere hic voluptates reprehenderit.\nQuos sint recusandae.", + "dateReceived": "2018-12-09", + "dateCompleted": "2015-05-13", + "dateEntered": "2014-09-08", + "dateRegistrar": "2020-02-10", + "dateLocalAuthorityReceived": "2022-10-18", + "summary": "Fuga incidunt esse veritatis molestias quaerat cumque.", + "informationUsed": "Perspiciatis nulla non dolor repellat cupiditate facilis.\nDolore incidunt accusamus ducimus sequi.\nCommodi dignissimos consequatur soluta repellat est hic laudantium ipsum.\nNatus delectus inventore blanditiis aut.\nCumque facilis assumenda voluptates.", + "pastOrPresentOrders": "Aliquam adipisci nulla corporis non fugit eius maxime ut.\nNobis velit magni autem sit sint cum animi necessitatibus repudiandae.", "commercialAndIndustrialPurposes": [ { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false - }, - { + "uuid": "6251569e-230e-4c11-a133-e8634940b83e", "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true - }, - { - "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false + "siteRegistry": true }, { + "uuid": "0619e1d1-f563-43fd-9c11-b1fefcedd056", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true + "siteRegistry": false } ] } ], "activityLog": [ { + "uuid": "19e27d68-5f5d-424e-8d2b-f401ebee363b", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "GISLASON SAVANNA", - "timestamp": "2022-05-26" - }, - { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "SCHIMMEL KIANA", - "timestamp": "2022-01-18" - }, - { - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "HUELS MARCUS", - "timestamp": "2023-08-14" - }, - { - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "LEFFLER ABEL", - "timestamp": "2022-02-08" - }, - { - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "SCHOWALTER KEIRA", - "timestamp": "2017-06-20" - }, - { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "TURNER LENNIE", - "timestamp": "2022-05-16" + "user": "BECKER JARED", + "timestamp": "2015-08-19" }, { + "uuid": "1003244f-a254-441f-b405-d1462020017d", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "SIMONIS CONNER", - "timestamp": "2018-10-20" + "user": "RAYNOR JALEEL", + "timestamp": "2013-11-05" }, { + "uuid": "a0853d8a-8f0a-49a4-b3d3-895af81205a3", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "GUSIKOWSKI DIANA", - "timestamp": "2019-10-14" + "user": "STAMM GIOVANNY", + "timestamp": "2017-02-28" }, { + "uuid": "f12440fb-d7af-43e2-b8e4-1e6c328f6f3f", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "HERZOG WAVA", - "timestamp": "2014-05-16" + "user": "WATERS KIRK", + "timestamp": "2015-06-05" }, { + "uuid": "5486030a-e65b-4c84-acb3-a893aa4ed46d", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "RUECKER ROSEMARIE", - "timestamp": "2018-11-09" + "user": "TOY RODOLFO", + "timestamp": "2020-07-08" } ], "associatedSites": [ { - "dateNoted": "2022-08-21", + "uuid": "2f84b8ba-a985-4fa1-8471-944211c8c1e3", + "dateNoted": "2023-01-12", "notes": "", - "parcelID": "15345", - "siteID": "20984", + "parcelID": "20390", + "siteID": "17972", "siteRegistry": true }, { - "dateNoted": "2018-08-19", + "uuid": "72ab8b6f-0d35-414a-8da3-522bab1a829e", + "dateNoted": "2019-10-02", "notes": "", - "parcelID": "18002", - "siteID": "17027", - "siteRegistry": false + "parcelID": "17436", + "siteID": "18833", + "siteRegistry": true } ] }, { - "uuid": "dc3a05b0-d6f5-45f9-8d23-ce77804f571f", - "siteID": 16262, - "address": "76204 Bailee Village", - "latitude": 55.9246, - "longitude": -120.2469, - "lastUpdated": "2023-10-05", - "city": "Jessfurt", + "uuid": "5c1ee0a6-1433-40f2-9600-e0438a499a6a", + "siteID": 18068, + "address": "84007 Gene Mills", + "latitude": 48.4479, + "longitude": -133.3829, + "lastUpdated": "2016-07-04", + "city": "Alhambra", "region": "Cariboo", - "victoriaFile": "26250-20/19496", + "victoriaFile": "26250-20/14355", "regionalFile": "N/A", "parcelIDs": [ - 3835024, - 1664762, - 8251974, - 6621884, - 6361313 + 4154116, + 3462253, + 7404828, + 6941224, + 8117360 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2023-04-08", - "completed": "2018-07-28", - "initiated": "2016-06-19", - "ministryContact": "KONOPELSKI ROSINA", + "uuid": "f19b790d-d382-4770-b756-05aab1628572", + "createdAt": "2021-01-10", + "completed": "2019-06-03", + "initiated": "2018-02-24", + "ministryContact": "VOLKMAN AMERICO", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -65153,28 +74776,26 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { + "uuid": "0a471577-c6fd-4e26-8d05-246358e6ebdd", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": true }, { + "uuid": "5428cf2d-a64a-4458-a566-0278a6f9943f", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": true } ], "siteRegistry": false }, { - "createdAt": "2018-04-10", - "completed": "2014-12-13", - "initiated": "2021-08-09", - "ministryContact": "WISOKY CLIFTON", + "uuid": "8dd881f0-c81a-4998-8e2b-fc374da5369a", + "createdAt": "2013-11-22", + "completed": "2017-11-15", + "initiated": "2014-07-29", + "ministryContact": "KUNZE BURNICE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -65183,131 +74804,199 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", + "uuid": "e0bbe808-1147-41e4-8c4c-f39e4ddc663d", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false }, { + "uuid": "4141b101-0d7b-4897-8094-c6b674915203", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "550b6d51-8745-4724-ae56-850715119ff1", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false - }, + } + ], + "siteRegistry": false + }, + { + "uuid": "343760e3-eb5c-4604-9144-063665d7eaf2", + "createdAt": "2016-08-26", + "completed": "2020-09-01", + "initiated": "2015-08-26", + "ministryContact": "DECKOW-POLLICH TRINITY", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "uuid": "5682dcef-b878-4475-b847-847750ebb18f", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "uuid": "33b3406d-a4f5-427f-b28e-d700f094c6a0", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": true + }, + { + "uuid": "cc6f29de-5213-4896-86ac-0df506c37d5d", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true } ], "participants": [ { - "name": "AMET, DOLOR SIT", - "endDate": "2020-04-15", - "startDate": "2018-06-19", + "uuid": "9e0c9682-3495-4bbd-8565-6e4472ea1cc7", + "name": "IPSUM", + "endDate": "2018-07-20", + "startDate": "2022-08-01", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": true + "siteRegistry": false }, { + "uuid": "88abf7b7-d2b3-4c8f-866a-f69535694020", "name": "AMET, DOLOR SIT", - "endDate": "2020-12-02", - "startDate": "2014-04-23", + "endDate": "2015-10-27", + "startDate": "2014-06-29", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": false } ], "suspectLandUses": [ { + "uuid": "a0a3d955-e33a-4be8-89bc-ea10efe2f6ef", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-07-30 (described on Site Profile dated 2019-07-30)", + "notes": "INSERTED FOR SITE PROFILE DATED 2013-12-06 (described on Site Profile dated 2013-12-06)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { + "uuid": "c998bb39-97d2-461d-957e-7c438ebbcd69", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-11-02 (described on Site Profile dated 2016-11-02)", + "notes": "INSERTED FOR SITE PROFILE DATED 2018-05-13 (described on Site Profile dated 2018-05-13)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { + "uuid": "24205d00-496d-4ddc-8db2-54a2c02bb71f", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-09-11 (described on Site Profile dated 2021-09-11)", + "notes": "INSERTED FOR SITE PROFILE DATED 2013-10-22 (described on Site Profile dated 2013-10-22)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-06-27 (described on Site Profile dated 2017-06-27)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "uuid": "8e5be4d7-8b09-49b4-bb54-337165f65a6e", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2018-12-30 (described on Site Profile dated 2018-12-30)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-05-04 (described on Site Profile dated 2021-05-04)", + "uuid": "e2a3a043-e464-4c67-9bc3-35dc1ad6ccf4", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2021-12-04 (described on Site Profile dated 2021-12-04)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], "parcelDescriptions": [ { + "uuid": "4fc0b7e1-7beb-47d2-8c26-ae0802493504", "siteRegistry": false, - "dateNoted": "2018-06-27", - "parcelID": "16260", - "crownLandUsePIN": "18824", - "crownLandFileNumber": "17824", - "landDescription": "LOT 3 OF LOT 2 BLOCK 5 DISTRICT LOT 4 PLAN 7582" + "dateNoted": "2014-06-14", + "parcelID": "17942", + "crownLandUsePIN": "20022", + "crownLandFileNumber": "16587", + "landDescription": "LOT 3 OF LOT 5 BLOCK 1 DISTRICT LOT 1 PLAN 9778" }, { + "uuid": "992da8c6-321c-4278-8c12-e92d040e3813", "siteRegistry": true, - "dateNoted": "2022-03-19", - "parcelID": "16216", - "crownLandUsePIN": "16015", - "crownLandFileNumber": "19765", - "landDescription": "LOT 3 OF LOT 3 BLOCK 4 DISTRICT LOT 5 PLAN 7335" + "dateNoted": "2021-06-26", + "parcelID": "17098", + "crownLandUsePIN": "19750", + "crownLandFileNumber": "18919", + "landDescription": "LOT 1 OF LOT 5 BLOCK 5 DISTRICT LOT 1 PLAN 7047" + }, + { + "uuid": "2bcf05e2-43be-4e81-b535-c167205a805c", + "siteRegistry": false, + "dateNoted": "2020-03-24", + "parcelID": "18591", + "crownLandUsePIN": "17003", + "crownLandFileNumber": "18686", + "landDescription": "LOT 1 OF LOT 4 BLOCK 1 DISTRICT LOT 1 PLAN 4576" + }, + { + "uuid": "c34b708f-8c14-4e76-8ebf-1ecf65d9a022", + "siteRegistry": false, + "dateNoted": "2016-01-09", + "parcelID": "15403", + "crownLandUsePIN": "17172", + "crownLandFileNumber": "16897", + "landDescription": "LOT 5 OF LOT 2 BLOCK 5 DISTRICT LOT 1 PLAN 3043" + }, + { + "uuid": "49f2e5c7-fd91-4544-b999-c1a6a8c6381e", + "siteRegistry": false, + "dateNoted": "2017-11-18", + "parcelID": "15937", + "crownLandUsePIN": "16762", + "crownLandFileNumber": "16413", + "landDescription": "LOT 3 OF LOT 2 BLOCK 3 DISTRICT LOT 3 PLAN 4470" } ], "siteDisclosures": [ { - "siteRegistry": false, - "dateReceived": "2014-02-25", - "dateCompleted": "2020-06-10", - "dateEntered": "2016-11-10", - "dateRegistrar": "2021-09-14", - "dateLocalAuthorityReceived": "2015-11-09", - "summary": "Quos saepe magni eum eius porro ducimus quaerat.\nDucimus quibusdam veniam nam.", - "informationUsed": "Atque voluptates sit ut accusantium.\nHarum dolores aperiam sequi voluptas adipisci similique nihil.\nNostrum voluptatum exercitationem id sapiente voluptate minus ratione minus hic.", - "pastOrPresentOrders": "Rem magnam fuga ex iste.", + "uuid": "219d0246-b808-4c28-99f1-94bf39302a45", + "siteRegistry": true, + "dateReceived": "2013-10-18", + "dateCompleted": "2018-02-09", + "dateEntered": "2014-01-11", + "dateRegistrar": "2015-02-04", + "dateLocalAuthorityReceived": "2020-01-23", + "summary": "Earum quisquam eius nulla magnam deleniti dolore.", + "informationUsed": "Veritatis ullam atque sunt.\nTempora hic eius.\nAtque occaecati numquam animi accusamus voluptate porro consequuntur.\nQuas occaecati facere ea nulla laboriosam.\nHarum iure repudiandae repellendus tempora cum beatae.", + "pastOrPresentOrders": "Quam debitis unde.", "commercialAndIndustrialPurposes": [ { - "scheduleReference": "F1*", + "uuid": "36d1cad0-b23b-4e95-8962-db9b483e73b4", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false + "siteRegistry": true }, { + "uuid": "5af215be-1af9-434c-b7dd-c211b736e11a", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { + "uuid": "04ea0e8b-2d05-4aa4-b3e3-a20bd8032839", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { + "uuid": "289591d1-bf6e-47cf-9426-3a051ebe771c", "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false } ] @@ -65315,97 +75004,94 @@ ], "activityLog": [ { - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "BUCKRIDGE GABRIELLA", - "timestamp": "2016-12-29" - }, - { - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "JACOBSON ZECHARIAH", - "timestamp": "2013-11-05" - }, - { - "siteRegistry": false, + "uuid": "1636c991-ff3e-4e5d-9855-f013e914d077", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "TORPHY EDWIN", - "timestamp": "2020-11-29" + "user": "GLEASON DARON", + "timestamp": "2017-01-18" }, { - "siteRegistry": false, + "uuid": "acee186a-c2a4-4920-b367-47fbe989406f", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "GOLDNER BRENT", - "timestamp": "2014-01-11" + "user": "OKUNEVA NAME", + "timestamp": "2020-12-04" }, { + "uuid": "61c4aa6c-ff5f-4c53-a88f-61f7d19d6c56", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "ROBERTS MOLLIE", - "timestamp": "2020-02-26" + "user": "OSINSKI PHOEBE", + "timestamp": "2022-06-22" }, { + "uuid": "17dbe744-9097-43a7-a833-16b22b098209", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "JONES KARIANNE", - "timestamp": "2020-11-19" + "user": "KUB DEANGELO", + "timestamp": "2022-12-05" }, { - "siteRegistry": false, + "uuid": "ff55f3e1-229f-4873-be06-246ed0c664cb", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "NIENOW TRACY", - "timestamp": "2023-09-20" + "user": "SCHMELER JERMAINE", + "timestamp": "2017-10-24" } ], "associatedSites": [ { - "dateNoted": "2017-03-13", + "uuid": "8a1503ac-1454-4656-b20e-44c7cc1e1f31", + "dateNoted": "2018-07-27", "notes": "", - "parcelID": "18630", - "siteID": "18191", - "siteRegistry": true + "parcelID": "20057", + "siteID": "20818", + "siteRegistry": false }, { - "dateNoted": "2016-11-25", + "uuid": "1e411d83-d164-4417-8ff1-8ad8d2d9bcb6", + "dateNoted": "2022-01-09", "notes": "", - "parcelID": "20482", - "siteID": "15493", + "parcelID": "19531", + "siteID": "20960", "siteRegistry": false }, { - "dateNoted": "2020-07-17", + "uuid": "80d84183-33d9-4aea-886c-cc8fb7bd8fa6", + "dateNoted": "2017-03-27", "notes": "", - "parcelID": "20948", - "siteID": "19267", + "parcelID": "18627", + "siteID": "17431", "siteRegistry": false } ] }, { - "uuid": "bd449db8-6f83-4776-9c4c-6211f02bdb1f", - "siteID": 19290, - "address": "455 Bailey Unions", - "latitude": 56.5072, - "longitude": -125.9625, - "lastUpdated": "2022-02-19", - "city": "South Maye", - "region": "Mainland/Southwest", - "victoriaFile": "26250-20/4067", + "uuid": "34b5ba94-d337-4953-84fe-d02bd2714e0c", + "siteID": 15979, + "address": "6390 Braun Mills", + "latitude": 52.5216, + "longitude": -137.8442, + "lastUpdated": "2019-08-20", + "city": "Fort Abagailcester", + "region": "Thompson-Okanagan", + "victoriaFile": "26250-20/11236", "regionalFile": "N/A", "parcelIDs": [ - 7557067, - 1660680, - 7206770, - 2929082, - 696953 + 9117246, + 7495640, + 119368, + 9095298, + 2098365 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2021-06-10", - "completed": "2019-07-02", - "initiated": "2023-06-07", - "ministryContact": "BREITENBERG KALEIGH", + "uuid": "58f15e3e-5179-4c0d-a98c-eeaae28e187f", + "createdAt": "2017-03-01", + "completed": "2019-11-23", + "initiated": "2014-10-18", + "ministryContact": "ORTIZ EDISON", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -65414,38 +75100,26 @@ ], "notationParticipants": [ { + "uuid": "d75c9e1b-22cd-4c51-b7ff-0001a1a30c91", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false }, { + "uuid": "1567b593-c840-40c6-9a67-843f795f6b86", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false } ], "siteRegistry": true }, { - "createdAt": "2021-04-26", - "completed": "2020-04-24", - "initiated": "2017-11-10", - "ministryContact": "VOLKMAN-HILLS MARIANNE", + "uuid": "420aee6b-9ec2-47d1-9565-bfda784edbe5", + "createdAt": "2018-01-11", + "completed": "2014-10-18", + "initiated": "2021-09-19", + "ministryContact": "KOZEY ALEXANDREA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -65454,28 +75128,44 @@ ], "notationParticipants": [ { + "uuid": "80b02b9d-067f-4b2d-96c8-de13b583544a", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false + "role": "REQUESTED BY", + "siteRegistry": true }, { + "uuid": "ca336e2d-d990-44c7-9fe9-66e3f451cef1", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false }, { + "uuid": "bd1a02a5-a350-4e05-8bf6-e944b6826b93", "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "uuid": "aad32f1c-644e-49a5-babd-62ec8137b915", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "41f1c953-1e42-4759-b48d-e14b0d4d87cf", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2022-09-10", - "completed": "2013-12-09", - "initiated": "2014-09-03", - "ministryContact": "TREUTEL KIRA", + "uuid": "8a0f5ae4-558f-4593-b2e9-5c09c9d37efb", + "createdAt": "2019-11-07", + "completed": "2020-05-27", + "initiated": "2021-04-16", + "ministryContact": "UPTON DEXTER", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -65484,38 +75174,32 @@ ], "notationParticipants": [ { + "uuid": "45fdbca6-d90c-45b8-a4b0-4b7c9d7b9c37", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true + "uuid": "263e20ad-5a81-4dd4-8cbd-56ae0ff3e7ae", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false }, { + "uuid": "b479463d-a767-4d23-a9be-98e2569e7fc5", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false } ], "siteRegistry": true }, { - "createdAt": "2017-12-11", - "completed": "2016-10-30", - "initiated": "2016-12-06", - "ministryContact": "JOHNSON KARLI", + "uuid": "26ee1c44-51da-4a07-9c0e-1e98420aa07f", + "createdAt": "2015-01-27", + "completed": "2021-12-04", + "initiated": "2021-09-20", + "ministryContact": "EFFERTZ LESTER", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -65524,44 +75208,34 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "uuid": "aa6d8fa2-8faf-4948-9837-c1c07b255c72", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", + "uuid": "6e049808-d1a8-4200-8c38-3b86369e1dca", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { + "uuid": "9d61f38b-869e-4dc0-ab02-b12e1c3265da", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true - } - ], - "siteRegistry": true - }, - { - "createdAt": "2021-01-22", - "completed": "2020-12-28", - "initiated": "2018-10-26", - "ministryContact": "PREDOVIC LINDSEY", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ + }, { + "uuid": "7e84a1f4-2bee-41fa-af41-72d2bdac352a", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false }, { + "uuid": "93442df7-c42b-48fe-a154-f1785d3161a7", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true } ], "siteRegistry": false @@ -65569,19 +75243,32 @@ ], "participants": [ { - "name": "IPSUM", - "endDate": "2019-01-28", - "startDate": "2015-02-11", + "uuid": "437ed057-3018-4e29-913a-bda7fd599da3", + "name": "AMET, DOLOR SIT", + "endDate": "2014-02-07", + "startDate": "2017-01-31", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": true }, { - "name": "AMET, DOLOR SIT", - "endDate": "2014-05-08", - "startDate": "2020-08-11", + "uuid": "459eae77-2e91-4bc8-8df1-02be711bd536", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2022-01-31", + "startDate": "2016-10-14", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "uuid": "fc9b52d5-c465-42ae-bac2-cd58b437ddc9", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2014-06-16", + "startDate": "2021-03-31", "notes": "", "roles": [ "ORGANIZATION" @@ -65589,198 +75276,200 @@ "siteRegistry": true }, { - "name": "IPSUM", - "endDate": "2015-08-26", - "startDate": "2017-12-21", + "uuid": "e8fa8d28-9cc4-44da-9109-7cf15580bf45", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2020-10-17", + "startDate": "2019-12-18", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": true + "siteRegistry": false }, { - "name": "AMET, DOLOR SIT", - "endDate": "2018-04-30", - "startDate": "2018-10-11", + "uuid": "a6279e50-ee25-4d1a-908d-f776cf07363d", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2016-08-05", + "startDate": "2015-01-23", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": false + "siteRegistry": true } ], "suspectLandUses": [ { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-03-09 (described on Site Profile dated 2014-03-09)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" - }, - { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-08-12 (described on Site Profile dated 2016-08-12)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" - }, - { + "uuid": "f743785e-c3ec-4f56-a3ec-f3cf6cc248e7", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-07-26 (described on Site Profile dated 2015-07-26)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" - }, - { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2023-09-05 (described on Site Profile dated 2023-09-05)", + "notes": "INSERTED FOR SITE PROFILE DATED 2015-11-25 (described on Site Profile dated 2015-11-25)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-05-15 (described on Site Profile dated 2019-05-15)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "uuid": "931482b7-07a0-4f58-9cab-56972beeb5f2", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2021-12-07 (described on Site Profile dated 2021-12-07)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], "parcelDescriptions": [ { - "siteRegistry": true, - "dateNoted": "2022-10-10", - "parcelID": "17918", - "crownLandUsePIN": "20558", - "crownLandFileNumber": "19825", - "landDescription": "LOT 5 OF LOT 3 BLOCK 3 DISTRICT LOT 5 PLAN 5787" - }, - { + "uuid": "a30da4ba-ca1f-4a7d-a5bf-4c46f329d765", "siteRegistry": false, - "dateNoted": "2021-10-06", - "parcelID": "20783", - "crownLandUsePIN": "20945", - "crownLandFileNumber": "15948", - "landDescription": "LOT 4 OF LOT 4 BLOCK 2 DISTRICT LOT 2 PLAN 8552" - }, - { - "siteRegistry": true, - "dateNoted": "2023-01-15", - "parcelID": "15364", - "crownLandUsePIN": "15294", - "crownLandFileNumber": "18357", - "landDescription": "LOT 4 OF LOT 2 BLOCK 5 DISTRICT LOT 5 PLAN 7683" + "dateNoted": "2018-09-25", + "parcelID": "16581", + "crownLandUsePIN": "20330", + "crownLandFileNumber": "19595", + "landDescription": "LOT 1 OF LOT 2 BLOCK 4 DISTRICT LOT 2 PLAN 9283" }, { + "uuid": "4846bd98-38d8-49ef-90e0-89ae4d657951", "siteRegistry": false, - "dateNoted": "2022-03-23", - "parcelID": "15885", - "crownLandUsePIN": "17383", - "crownLandFileNumber": "16539", - "landDescription": "LOT 2 OF LOT 5 BLOCK 1 DISTRICT LOT 3 PLAN 4709" + "dateNoted": "2014-02-02", + "parcelID": "17444", + "crownLandUsePIN": "17769", + "crownLandFileNumber": "16724", + "landDescription": "LOT 4 OF LOT 3 BLOCK 1 DISTRICT LOT 1 PLAN 8397" } ], "siteDisclosures": [ { + "uuid": "b74510e2-654a-4ca7-8728-85e6196f5ccf", "siteRegistry": false, - "dateReceived": "2017-10-02", - "dateCompleted": "2019-09-18", - "dateEntered": "2022-09-19", - "dateRegistrar": "2017-05-01", - "dateLocalAuthorityReceived": "2019-11-11", - "summary": "Porro accusamus iusto quas maxime officia commodi.\nMaxime architecto dolor voluptas.\nTenetur impedit mollitia tempore aspernatur quas facilis est illum sint.", - "informationUsed": "Quod atque aliquid sunt corrupti illum ab atque saepe distinctio.\nSit deleniti distinctio recusandae tempore sapiente quae eum.\nQuisquam officiis asperiores unde placeat quibusdam explicabo.", - "pastOrPresentOrders": "Molestiae pariatur asperiores assumenda facilis debitis eius.\nFugit nihil itaque.", + "dateReceived": "2015-04-08", + "dateCompleted": "2014-06-10", + "dateEntered": "2023-06-26", + "dateRegistrar": "2016-04-11", + "dateLocalAuthorityReceived": "2015-10-21", + "summary": "Maiores modi neque.\nReiciendis officia veniam dolorem.\nQuos pariatur a eligendi.", + "informationUsed": "Incidunt maxime eveniet maiores facere.\nPossimus sunt iure.\nLibero dolores aspernatur impedit repellat.\nAspernatur quod sit aspernatur dicta dolor placeat.", + "pastOrPresentOrders": "Occaecati amet mollitia eius molestiae rerum numquam fuga itaque.", "commercialAndIndustrialPurposes": [ { - "scheduleReference": "F1*", + "uuid": "b89fe806-2d7f-4fa2-b2f1-d19e0ff51841", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { + "uuid": "03b8cbc8-3384-4d07-aa99-842bf7ef7721", "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true + }, + { + "uuid": "c34b22b9-2583-4cca-9875-e2da891a4c61", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false } ] } ], "activityLog": [ { - "siteRegistry": false, + "uuid": "23de0b42-3efc-4373-a0a5-d5bc21961b76", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "O'CONNER LIBBIE", - "timestamp": "2016-11-24" + "user": "REMPEL KAROLANN", + "timestamp": "2023-04-11" }, { - "siteRegistry": false, + "uuid": "4a779281-6a2f-4183-b29d-3820e95bbc89", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "GULGOWSKI MICAH", - "timestamp": "2016-02-10" + "user": "BECHTELAR-DICKINSON EARLINE", + "timestamp": "2020-11-10" }, { + "uuid": "23fbd162-d6fc-4e1c-8245-cfbe0bde17ac", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "CHRISTIANSEN HARRISON", - "timestamp": "2017-11-21" + "user": "CHAMPLIN JERAD", + "timestamp": "2016-03-03" }, { - "siteRegistry": false, + "uuid": "1c4beeb3-d653-43b8-8e80-300b003895f9", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "LARKIN DESTANY", - "timestamp": "2021-07-13" + "user": "BEIER RICHARD", + "timestamp": "2015-11-07" }, { - "siteRegistry": true, + "uuid": "1fcb4f97-d715-40e3-9df7-005e84fcf005", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "MAYERT ATHENA", - "timestamp": "2016-02-21" + "user": "O'KON AMIRA", + "timestamp": "2014-12-24" }, { - "siteRegistry": true, + "uuid": "751ff79c-0ebd-476f-ad6d-b26ff88149d3", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "CASSIN KENNITH", - "timestamp": "2020-11-02" + "user": "JENKINS NORBERT", + "timestamp": "2018-03-08" }, { + "uuid": "2817bf30-9d74-41a4-bc4b-a730deeb6d76", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "TOWNE FAUSTO", - "timestamp": "2017-08-07" + "user": "PURDY DUNCAN", + "timestamp": "2016-03-07" } ], "associatedSites": [ { - "dateNoted": "2017-04-14", + "uuid": "12ed4155-b7a7-4b23-b886-14c6ceb43826", + "dateNoted": "2022-11-29", "notes": "", - "parcelID": "17624", - "siteID": "19399", + "parcelID": "19551", + "siteID": "19383", "siteRegistry": false }, { - "dateNoted": "2018-07-22", + "uuid": "67e87ad5-fb56-4acc-82e5-cd29c5a6b806", + "dateNoted": "2017-12-14", "notes": "", - "parcelID": "18583", - "siteID": "20424", + "parcelID": "20653", + "siteID": "15304", "siteRegistry": true + }, + { + "uuid": "d27b934c-96f0-44f0-ad17-c56011a0d88e", + "dateNoted": "2022-10-26", + "notes": "", + "parcelID": "16024", + "siteID": "18986", + "siteRegistry": false } ] }, { - "uuid": "597b897f-448a-4f23-a759-5e93af31f4cc", - "siteID": 18816, - "address": "471 Lulu Parkway", - "latitude": 50.0987, - "longitude": -121.8258, - "lastUpdated": "2018-12-30", - "city": "Gabeborough", - "region": "Vancouver Island/Coast", - "victoriaFile": "26250-20/12159", + "uuid": "a2f35ebc-3a4a-4c7f-8734-a0aa015f88c3", + "siteID": 20433, + "address": "15622 Patience Lodge", + "latitude": 57.403, + "longitude": -128.3927, + "lastUpdated": "2023-07-06", + "city": "Elkhart", + "region": "Thompson-Okanagan", + "victoriaFile": "26250-20/15242", "regionalFile": "N/A", "parcelIDs": [ - 3069579, - 7571058, - 1518616, - 3047364, - 1803447 + 1546590, + 671711, + 5108373, + 533038, + 4264687 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2021-07-19", - "completed": "2020-04-21", - "initiated": "2014-12-20", - "ministryContact": "HALEY JAILYN", + "uuid": "ce6c3b06-9824-4854-a6f3-e0d1b8002bdb", + "createdAt": "2015-02-25", + "completed": "2017-04-23", + "initiated": "2023-10-06", + "ministryContact": "BAYER MADELYN", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -65789,118 +75478,32 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { + "uuid": "136b8cfa-4f9c-4eda-9dc4-a69650776955", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true - } - ], - "siteRegistry": true - }, - { - "createdAt": "2021-02-23", - "completed": "2016-08-17", - "initiated": "2020-10-21", - "ministryContact": "FEIL WILLARD", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - } - ], - "siteRegistry": false - }, - { - "createdAt": "2017-03-10", - "completed": "2013-12-13", - "initiated": "2023-02-07", - "ministryContact": "BERGE ZAKARY", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { + "uuid": "1eb470c8-ac05-4863-b66e-27bd082fec07", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - } - ], - "siteRegistry": false - }, - { - "createdAt": "2014-05-07", - "completed": "2020-08-18", - "initiated": "2019-11-11", - "ministryContact": "BERGE DARBY", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { + "uuid": "a0a5c9ae-b3b2-4dac-825d-896fd7c2080c", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true } ], "siteRegistry": true }, { - "createdAt": "2016-03-06", - "completed": "2017-07-12", - "initiated": "2016-04-16", - "ministryContact": "WILLIAMSON ELNA", + "uuid": "a82992a1-a2f5-4cc6-a78c-c01e93c0cec7", + "createdAt": "2021-05-29", + "completed": "2022-01-22", + "initiated": "2014-06-30", + "ministryContact": "LARSON AUGUSTINE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -65909,18 +75512,15 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "4e64c6cd-0ecb-48a3-976c-82533a1ea337", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false }, { + "uuid": "f537409a-c8b0-4d56-861d-519e797c7b05", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true } ], @@ -65929,19 +75529,21 @@ ], "participants": [ { - "name": "IPSUM", - "endDate": "2022-07-04", - "startDate": "2018-03-10", + "uuid": "c572bfa6-9d28-49fd-b5ee-3c82abdd4601", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2020-04-20", + "startDate": "2021-01-22", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": false }, { - "name": "IPSUM", - "endDate": "2022-09-12", - "startDate": "2021-06-10", + "uuid": "147bba87-880a-47a7-8b9a-ce408cb33b04", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2019-05-14", + "startDate": "2014-04-01", "notes": "", "roles": [ "ORGANIZATION" @@ -65949,187 +75551,208 @@ "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2020-07-19", - "startDate": "2017-02-03", + "uuid": "4e4045b9-5f7f-43d2-969d-521f2409d3b4", + "name": "AMET, DOLOR SIT", + "endDate": "2023-09-10", + "startDate": "2023-01-04", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": false }, { - "name": "IPSUM", - "endDate": "2020-08-06", - "startDate": "2022-08-03", + "uuid": "ed29e02a-13d0-4d70-b217-d9f1394cafc2", + "name": "AMET, DOLOR SIT", + "endDate": "2015-12-27", + "startDate": "2019-07-14", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": true }, { - "name": "AMET, DOLOR SIT", - "endDate": "2022-08-02", - "startDate": "2020-03-12", + "uuid": "c56c0b93-f8dc-4597-8e1a-f1ee9f32d090", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2022-01-28", + "startDate": "2014-10-06", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], - "siteRegistry": false + "siteRegistry": true } ], "suspectLandUses": [ { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-04-01 (described on Site Profile dated 2019-04-01)", + "uuid": "9b8e4b1b-c55b-418d-915e-d1a9f1ba1159", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2017-02-03 (described on Site Profile dated 2017-02-03)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { + "uuid": "bb110644-b55e-4591-aee8-7d453e7ffaa4", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2023-01-12 (described on Site Profile dated 2023-01-12)", + "notes": "INSERTED FOR SITE PROFILE DATED 2015-05-07 (described on Site Profile dated 2015-05-07)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" - } - ], - "parcelDescriptions": [ - { - "siteRegistry": false, - "dateNoted": "2015-11-07", - "parcelID": "18009", - "crownLandUsePIN": "19717", - "crownLandFileNumber": "15778", - "landDescription": "LOT 1 OF LOT 2 BLOCK 4 DISTRICT LOT 3 PLAN 6567" }, { - "siteRegistry": false, - "dateNoted": "2014-03-05", - "parcelID": "18936", - "crownLandUsePIN": "18239", - "crownLandFileNumber": "15418", - "landDescription": "LOT 1 OF LOT 3 BLOCK 1 DISTRICT LOT 5 PLAN 7985" + "uuid": "f09d0bd6-eb87-4a18-98ad-e34ee804d3c9", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2015-11-20 (described on Site Profile dated 2015-11-20)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { + "uuid": "824fdbc7-55ab-41ae-ac89-6d1e47e3f0db", "siteRegistry": false, - "dateNoted": "2019-12-05", - "parcelID": "20151", - "crownLandUsePIN": "20402", - "crownLandFileNumber": "16295", - "landDescription": "LOT 2 OF LOT 4 BLOCK 3 DISTRICT LOT 4 PLAN 4933" - }, + "notes": "INSERTED FOR SITE PROFILE DATED 2023-09-18 (described on Site Profile dated 2023-09-18)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + } + ], + "parcelDescriptions": [ { - "siteRegistry": false, - "dateNoted": "2022-11-20", - "parcelID": "20315", - "crownLandUsePIN": "16207", - "crownLandFileNumber": "16618", - "landDescription": "LOT 4 OF LOT 3 BLOCK 4 DISTRICT LOT 2 PLAN 5303" + "uuid": "6c52abb2-498d-47a9-9d7c-08f2eefeea13", + "siteRegistry": true, + "dateNoted": "2014-07-29", + "parcelID": "15512", + "crownLandUsePIN": "20727", + "crownLandFileNumber": "20692", + "landDescription": "LOT 5 OF LOT 4 BLOCK 2 DISTRICT LOT 4 PLAN 5659" }, { + "uuid": "818e2644-f010-4e99-bf0c-997524e202cf", "siteRegistry": false, - "dateNoted": "2014-10-18", - "parcelID": "15823", - "crownLandUsePIN": "20921", - "crownLandFileNumber": "15610", - "landDescription": "LOT 2 OF LOT 4 BLOCK 2 DISTRICT LOT 2 PLAN 7221" + "dateNoted": "2020-08-17", + "parcelID": "15744", + "crownLandUsePIN": "19025", + "crownLandFileNumber": "19871", + "landDescription": "LOT 4 OF LOT 2 BLOCK 1 DISTRICT LOT 2 PLAN 4386" } ], "siteDisclosures": [ { - "siteRegistry": false, - "dateReceived": "2017-03-24", - "dateCompleted": "2019-11-21", - "dateEntered": "2015-11-23", - "dateRegistrar": "2018-01-05", - "dateLocalAuthorityReceived": "2020-10-18", - "summary": "Culpa commodi accusantium dolorum ipsum quo fugit.\nBeatae iste reiciendis itaque nam at est.", - "informationUsed": "Praesentium sequi labore ducimus quasi ad deserunt quidem aspernatur tenetur.\nDolorum possimus rem vitae exercitationem quos consequuntur quidem.\nCumque tenetur est veritatis placeat illum non architecto temporibus id.\nHarum eius voluptates.", - "pastOrPresentOrders": "Dolorem nam a ea a facere fugiat velit natus voluptate.", + "uuid": "1f61ae6d-1d8c-430e-98e3-6de0701841fd", + "siteRegistry": true, + "dateReceived": "2016-05-05", + "dateCompleted": "2018-01-11", + "dateEntered": "2022-06-17", + "dateRegistrar": "2020-06-11", + "dateLocalAuthorityReceived": "2015-09-04", + "summary": "Tempora cumque consequuntur magnam nesciunt unde officia dolorem facere quasi.\nRepellat vel nam.\nOmnis atque necessitatibus nostrum explicabo eaque.", + "informationUsed": "Laborum fuga totam sapiente eius natus.\nVeritatis consectetur ea dolorem modi nulla officiis voluptate expedita aliquam.\nAb sit blanditiis dolore hic commodi enim quod.", + "pastOrPresentOrders": "Totam odio beatae autem fuga.\nOdio itaque consequatur.", "commercialAndIndustrialPurposes": [ { - "scheduleReference": "F2*", + "uuid": "bb44354e-bfc3-4044-b5f9-b5dc83a23aa5", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "uuid": "018d774a-10dd-4abb-8161-8b7e3ca2aebe", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false }, { + "uuid": "2e0a42f5-0456-410f-b834-928231514bf6", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true + "siteRegistry": false } ] } ], "activityLog": [ { + "uuid": "5c674df9-c6aa-46d8-ab5d-4d5f42bd56a5", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "GREENFELDER EDYTHE", - "timestamp": "2023-07-30" + "user": "HOWELL DASHAWN", + "timestamp": "2017-11-17" }, { - "siteRegistry": true, + "uuid": "f077f293-63e1-4d5d-9528-6e121afb1857", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "RENNER TAMIA", - "timestamp": "2013-12-21" + "user": "LANGOSH DARION", + "timestamp": "2022-03-13" }, { + "uuid": "79176f42-2d44-4fe0-85d3-b77f31994d5e", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "GORCZANY BLANCHE", - "timestamp": "2019-06-15" + "user": "WOLFF DAREN", + "timestamp": "2019-09-21" }, { - "siteRegistry": true, + "uuid": "622c4b88-a66c-4928-b366-573e99d949db", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "MUELLER SANTOS", - "timestamp": "2014-04-27" + "user": "MCLAUGHLIN BARON", + "timestamp": "2016-06-04" }, { - "siteRegistry": true, + "uuid": "c824133d-bc02-41fd-9162-e790a250c8d4", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "HEIDENREICH ROXANE", - "timestamp": "2019-09-15" + "user": "DOUGLAS DORTHA", + "timestamp": "2015-11-26" + }, + { + "uuid": "c36acae5-c9cf-4cb7-9ff8-093fe7f00918", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "WARD ALEJANDRIN", + "timestamp": "2022-07-22" } ], "associatedSites": [ { - "dateNoted": "2021-09-23", + "uuid": "15569fea-ee58-4242-87e9-3b3575d92161", + "dateNoted": "2017-03-23", "notes": "", - "parcelID": "16908", - "siteID": "17483", + "parcelID": "17005", + "siteID": "20892", "siteRegistry": false + }, + { + "uuid": "4e9e6ef4-0d55-455f-8fb2-236a66329792", + "dateNoted": "2022-09-23", + "notes": "", + "parcelID": "16104", + "siteID": "20380", + "siteRegistry": true } ] }, { - "uuid": "97028e94-86c3-4948-9f73-b6426f42c85f", - "siteID": 15827, - "address": "319 Malcolm Rue", - "latitude": 50.3443, - "longitude": -131.7112, - "lastUpdated": "2020-06-16", - "city": "Shannonhaven", - "region": "Mainland/Southwest", - "victoriaFile": "26250-20/18350", + "uuid": "3aff25ba-09da-40b0-a2af-05ae9cd8eab8", + "siteID": 15426, + "address": "5975 Aurelia Harbor", + "latitude": 50.7513, + "longitude": -131.8679, + "lastUpdated": "2020-08-24", + "city": "Indianapolis", + "region": "Vancouver Island/Coast", + "victoriaFile": "26250-20/11609", "regionalFile": "N/A", "parcelIDs": [ - 5000784, - 9798541, - 2544517, - 5109704, - 4207787 + 4557734, + 2287398, + 5861452, + 3517984, + 3370301 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2014-06-20", - "completed": "2021-01-17", - "initiated": "2015-02-13", - "ministryContact": "GIBSON GEORGE", + "uuid": "c1801740-b6b8-498d-89e5-0263d7c164cf", + "createdAt": "2018-02-07", + "completed": "2016-09-24", + "initiated": "2017-11-23", + "ministryContact": "ROSENBAUM MARCELO", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -66138,38 +75761,38 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { + "uuid": "124cd145-55dd-429f-914f-8b7715885bef", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true }, { + "uuid": "0317a28e-f48e-4f1f-8ac7-72d3c4c224f1", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false + "role": "REQUESTED BY", + "siteRegistry": true }, { + "uuid": "7c1a5ac0-a720-4b27-a3f7-969bbf365e3f", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "uuid": "d47d2246-1870-4836-9172-03a156c7f8dd", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2015-02-04", - "completed": "2014-01-29", - "initiated": "2023-02-15", - "ministryContact": "KLING DORIAN", + "uuid": "427c7b38-b1d6-4430-a52f-b6248ce659ab", + "createdAt": "2023-10-03", + "completed": "2016-01-31", + "initiated": "2013-12-07", + "ministryContact": "GOYETTE HERBERT", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -66178,38 +75801,32 @@ ], "notationParticipants": [ { + "uuid": "d98b7970-4f25-4930-a60d-bbad4cf3b73b", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { + "uuid": "69013ad6-de02-4ff7-9532-8d944722b0d7", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false }, { + "uuid": "eb7a4bc3-430f-49e9-b222-7fc18ab6d25a", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true + "role": "SUBMITTED BY", + "siteRegistry": false } ], "siteRegistry": true }, { - "createdAt": "2014-07-23", - "completed": "2022-09-27", - "initiated": "2016-03-13", - "ministryContact": "LITTEL KRISTA", + "uuid": "377053e8-60de-4dc1-a438-5db5b922d311", + "createdAt": "2018-01-06", + "completed": "2018-04-16", + "initiated": "2015-02-27", + "ministryContact": "DARE KAYLIN", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -66218,29 +75835,28 @@ ], "notationParticipants": [ { + "uuid": "a329ffb1-9159-4c2b-8516-bccd04165856", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "uuid": "8b843543-7432-49f9-9ebd-7642acb1de66", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "525a0d87-1aa2-437e-a7f1-ef62af0830b1", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true }, { + "uuid": "15f7b6da-f661-4f01-8711-7c0be4b3d4f7", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false } ], "siteRegistry": false @@ -66248,39 +75864,43 @@ ], "participants": [ { - "name": "AMET, DOLOR SIT", - "endDate": "2023-06-10", - "startDate": "2019-02-04", + "uuid": "53356e1c-8b20-43e5-bd9b-2eae83ab83a8", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2014-01-15", + "startDate": "2017-12-22", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": true }, { - "name": "IPSUM", - "endDate": "2019-02-02", - "startDate": "2017-01-09", + "uuid": "60d1ba09-c6a4-476b-b37d-6a17dd1e6d21", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2017-05-21", + "startDate": "2016-01-21", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2017-07-19", - "startDate": "2015-05-06", + "uuid": "b1575fd1-2a59-419f-8ceb-5b67d20e9e5e", + "name": "IPSUM", + "endDate": "2014-08-26", + "startDate": "2016-07-07", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2021-09-05", - "startDate": "2015-01-27", + "uuid": "14764e31-abd1-4172-9353-d00b1a39f7e9", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2018-06-16", + "startDate": "2017-03-15", "notes": "", "roles": [ "EMPLOYEE" @@ -66288,198 +75908,279 @@ "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2018-08-07", - "startDate": "2017-06-01", + "uuid": "4a348746-99b5-48f0-b7e8-7f0f9be24ff3", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2014-08-22", + "startDate": "2020-06-29", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": false } ], "suspectLandUses": [ { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-03-02 (described on Site Profile dated 2014-03-02)", + "uuid": "625b8de4-ba79-49ff-8331-97d16505baa7", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2022-05-24 (described on Site Profile dated 2022-05-24)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { + "uuid": "c1e5af28-a49e-4164-8ace-59d19ec9f3bb", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-05-23 (described on Site Profile dated 2014-05-23)", + "notes": "INSERTED FOR SITE PROFILE DATED 2020-04-13 (described on Site Profile dated 2020-04-13)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "uuid": "5cbc298e-eb3b-4b54-a890-96cd84e85481", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2014-09-18 (described on Site Profile dated 2014-09-18)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { + "uuid": "26da3eeb-27ca-4ddc-902b-2c7496cd93ed", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-08-10 (described on Site Profile dated 2017-08-10)", + "notes": "INSERTED FOR SITE PROFILE DATED 2022-08-21 (described on Site Profile dated 2022-08-21)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], "parcelDescriptions": [ { - "siteRegistry": false, - "dateNoted": "2019-10-16", - "parcelID": "16143", - "crownLandUsePIN": "20372", - "crownLandFileNumber": "17987", - "landDescription": "LOT 1 OF LOT 1 BLOCK 4 DISTRICT LOT 2 PLAN 5567" + "uuid": "67dc040a-a08b-4889-a841-395de6f728f4", + "siteRegistry": true, + "dateNoted": "2017-05-23", + "parcelID": "20002", + "crownLandUsePIN": "17625", + "crownLandFileNumber": "16504", + "landDescription": "LOT 4 OF LOT 4 BLOCK 2 DISTRICT LOT 2 PLAN 5051" + }, + { + "uuid": "71575fc0-0d53-4468-aa08-41e62af755c0", + "siteRegistry": true, + "dateNoted": "2015-01-15", + "parcelID": "19091", + "crownLandUsePIN": "18872", + "crownLandFileNumber": "19964", + "landDescription": "LOT 4 OF LOT 2 BLOCK 2 DISTRICT LOT 2 PLAN 8044" + }, + { + "uuid": "2a6d926c-f4d0-4194-aa8c-3677bb5c43f3", + "siteRegistry": true, + "dateNoted": "2017-11-17", + "parcelID": "15932", + "crownLandUsePIN": "16520", + "crownLandFileNumber": "16914", + "landDescription": "LOT 3 OF LOT 4 BLOCK 3 DISTRICT LOT 5 PLAN 5208" }, { + "uuid": "83795333-35e3-4853-946f-b641c00dfff4", "siteRegistry": false, - "dateNoted": "2020-04-13", - "parcelID": "16321", - "crownLandUsePIN": "15465", - "crownLandFileNumber": "19984", - "landDescription": "LOT 4 OF LOT 5 BLOCK 2 DISTRICT LOT 3 PLAN 4614" + "dateNoted": "2017-12-04", + "parcelID": "15728", + "crownLandUsePIN": "19641", + "crownLandFileNumber": "17882", + "landDescription": "LOT 3 OF LOT 2 BLOCK 5 DISTRICT LOT 5 PLAN 3654" + }, + { + "uuid": "0762e15b-8614-46ab-ba0d-424d66dc8b0f", + "siteRegistry": true, + "dateNoted": "2016-01-31", + "parcelID": "15909", + "crownLandUsePIN": "17307", + "crownLandFileNumber": "18396", + "landDescription": "LOT 1 OF LOT 2 BLOCK 5 DISTRICT LOT 1 PLAN 5426" } ], "siteDisclosures": [ { + "uuid": "365f0a33-b9b8-4ca7-b0fe-2cf1b3912c71", "siteRegistry": false, - "dateReceived": "2017-07-04", - "dateCompleted": "2015-12-01", - "dateEntered": "2022-06-30", - "dateRegistrar": "2015-12-12", - "dateLocalAuthorityReceived": "2016-09-02", - "summary": "Consequuntur voluptates molestias repellat velit explicabo ducimus assumenda.\nAnimi tenetur voluptas vitae dolorum nesciunt maxime nemo.", - "informationUsed": "Vel placeat vero consequatur temporibus sint atque veritatis.\nDistinctio quidem amet a itaque deserunt temporibus.\nNisi accusantium quo laboriosam ipsam vel.\nFugit eos aliquam aliquam iusto nesciunt.", - "pastOrPresentOrders": "Nemo error hic.\nTempore ad ipsum.", + "dateReceived": "2020-09-27", + "dateCompleted": "2022-01-15", + "dateEntered": "2015-10-31", + "dateRegistrar": "2014-10-20", + "dateLocalAuthorityReceived": "2013-11-09", + "summary": "Accusamus facere facere sapiente sint.\nEveniet corporis deleniti.\nEveniet aliquam at labore eum distinctio architecto laboriosam fuga.", + "informationUsed": "Ipsa eveniet eveniet magnam necessitatibus quam repudiandae exercitationem.\nEx ea repellat.\nAt necessitatibus omnis odit minima.\nMinima iure rerum placeat.", + "pastOrPresentOrders": "Voluptate quibusdam veritatis consectetur laborum sapiente nesciunt fuga.\nFacere qui quibusdam doloribus esse aspernatur.\nOfficiis incidunt aut architecto ea ad.", "commercialAndIndustrialPurposes": [ { + "uuid": "e5185494-8fa4-4868-bc52-9fe38f176286", "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "uuid": "ac546d87-0fab-42c0-99c3-7f2e9bc6aa95", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { + "uuid": "e67fbec5-d963-4ff3-9ebf-7c02d861f105", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false + "siteRegistry": true } ] }, { - "siteRegistry": false, - "dateReceived": "2021-05-31", - "dateCompleted": "2022-02-10", - "dateEntered": "2020-11-23", - "dateRegistrar": "2014-01-13", - "dateLocalAuthorityReceived": "2021-09-27", - "summary": "Incidunt vitae et ducimus numquam.", - "informationUsed": "Odit accusantium sequi harum quia voluptatibus.\nOdio consequatur asperiores deserunt corrupti numquam sit rerum assumenda.\nRepellat aut laudantium voluptatum.\nDistinctio consequuntur illo nostrum deserunt quisquam.", - "pastOrPresentOrders": "Iusto dignissimos quibusdam odio soluta deleniti impedit.\nPossimus neque veritatis sunt nobis excepturi vero aliquid numquam ipsa.\nSed eius distinctio magnam nihil molestiae voluptatem hic provident rem.", + "uuid": "82ca0d20-8cac-4106-a4fc-576c6788ec02", + "siteRegistry": true, + "dateReceived": "2020-07-31", + "dateCompleted": "2015-07-18", + "dateEntered": "2018-09-16", + "dateRegistrar": "2019-09-05", + "dateLocalAuthorityReceived": "2020-01-22", + "summary": "Non sequi tenetur illo totam necessitatibus fugit corrupti sed error.", + "informationUsed": "Harum molestiae earum ad dolores aut explicabo numquam quam ipsa.\nMolestias placeat saepe nemo dolor consequatur quidem excepturi quam id.\nMaxime reprehenderit est in qui maxime.", + "pastOrPresentOrders": "Itaque sunt odit nesciunt nemo.", "commercialAndIndustrialPurposes": [ { - "scheduleReference": "F2*", + "uuid": "7b09b874-ae2a-48c5-b7a0-9a893f26dacc", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false }, { + "uuid": "44810d8d-9575-4f23-b22c-1c16b99460ec", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false + }, + { + "uuid": "b2e404e2-0eaa-4b87-ad5c-2905397d8091", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "uuid": "2bdcfbec-38a6-48df-a3af-2b70c1e4de6e", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false } ] } ], "activityLog": [ { + "uuid": "fdb51a70-504f-43ba-a3c6-b24f2c6cd62f", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "OSINSKI MYRNA", - "timestamp": "2022-03-29" + "user": "BERGE CATHERINE", + "timestamp": "2017-02-10" + }, + { + "uuid": "9b7c5488-0f25-43fb-b03d-63a5e58d0c10", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "ZIEME DAMION", + "timestamp": "2023-07-08" }, { + "uuid": "f93877d8-622d-45a3-a888-6a1ab393ce84", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "REILLY AURELIA", - "timestamp": "2020-10-10" + "user": "NADER NOEL", + "timestamp": "2018-12-28" }, { - "siteRegistry": false, + "uuid": "ccb45bf1-fa0c-43e0-8396-ff0dd9042868", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "UPTON REYES", - "timestamp": "2023-07-29" + "user": "MOEN MARQUISE", + "timestamp": "2013-12-19" }, { - "siteRegistry": false, + "uuid": "7fbc7395-071d-4351-9ffe-21aa643df398", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "O'CONNER DON", - "timestamp": "2019-07-19" + "user": "EFFERTZ JANICE", + "timestamp": "2023-08-20" }, { + "uuid": "e97927f7-49be-4291-aa21-d314313f5de5", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "LEFFLER LOMA", - "timestamp": "2016-12-24" + "user": "WALKER BRENNA", + "timestamp": "2022-12-12" + }, + { + "uuid": "2ceef012-faa7-4a16-9049-866d6aa653b0", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "STANTON MELANY", + "timestamp": "2016-05-31" }, { + "uuid": "34b84572-4beb-456c-923a-326a973da007", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "CONNELLY MARQUISE", - "timestamp": "2017-01-05" + "user": "HAND MAXIMO", + "timestamp": "2017-06-18" }, { - "siteRegistry": true, + "uuid": "7b801029-5eda-4be9-9ba5-e1a3616d6ff4", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "HODKIEWICZ CAREY", - "timestamp": "2019-10-31" + "user": "ROWE CEDRICK", + "timestamp": "2017-09-05" }, { + "uuid": "aad5a081-b245-4639-9ee2-5682183fa52b", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "GUTMANN ELLA", - "timestamp": "2018-11-10" + "user": "MURAZIK IVAH", + "timestamp": "2013-10-25" } ], "associatedSites": [ { - "dateNoted": "2023-02-20", - "notes": "", - "parcelID": "16701", - "siteID": "16843", - "siteRegistry": true - }, - { - "dateNoted": "2015-08-26", + "uuid": "d03f5e9f-4229-417d-8c0c-7d5f495fe556", + "dateNoted": "2019-07-10", "notes": "", - "parcelID": "17414", - "siteID": "17940", + "parcelID": "15279", + "siteID": "17261", "siteRegistry": false }, { - "dateNoted": "2021-03-07", + "uuid": "3b34fd7d-f17e-4b07-85c6-404c90c8d4bb", + "dateNoted": "2018-12-07", "notes": "", - "parcelID": "16496", - "siteID": "16938", + "parcelID": "19289", + "siteID": "16078", "siteRegistry": true } ] }, { - "uuid": "06f879c3-e70d-47b2-ace2-5fa07f6a48f7", - "siteID": 15786, - "address": "7683 Darrick Burg", - "latitude": 53.9815, - "longitude": -128.7349, - "lastUpdated": "2021-09-14", - "city": "Legrosview", - "region": "Kootenay", - "victoriaFile": "26250-20/11572", + "uuid": "a01c9303-da18-43ef-b14f-dd2df37c44f5", + "siteID": 16071, + "address": "3364 Olga Garden", + "latitude": 55.4698, + "longitude": -133.4088, + "lastUpdated": "2015-07-15", + "city": "New Maurine", + "region": " North Coast", + "victoriaFile": "26250-20/9340", "regionalFile": "N/A", "parcelIDs": [ - 5355676, - 2536590, - 2484395, - 2209182, - 9394654 + 8766179, + 691928, + 288311, + 3658239, + 6057914 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2016-11-09", - "completed": "2013-10-21", - "initiated": "2021-09-19", - "ministryContact": "OBERBRUNNER DIXIE", + "uuid": "ee02458d-e961-4e5a-803e-3837a91726a1", + "createdAt": "2017-05-29", + "completed": "2020-04-09", + "initiated": "2018-05-30", + "ministryContact": "REINGER MITCHELL", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -66488,93 +76189,32 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { + "uuid": "3d7578c2-7e7b-45a4-bc3d-8de79a51349b", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false - } - ], - "siteRegistry": false - }, - { - "createdAt": "2022-10-27", - "completed": "2014-11-25", - "initiated": "2023-04-08", - "ministryContact": "HACKETT ELOISE", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true }, { + "uuid": "2e4e0364-4853-4926-8bc1-2fcc6bf2cfe8", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - } - ], - "siteRegistry": true - }, - { - "createdAt": "2018-11-04", - "completed": "2016-10-09", - "initiated": "2019-02-03", - "ministryContact": "LEDNER VIRGINIA", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false }, { + "uuid": "8e6be4df-4c38-46f1-9abe-671c6edcb3b7", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": true } ], "siteRegistry": true }, { - "createdAt": "2018-06-18", - "completed": "2014-06-23", - "initiated": "2016-04-26", - "ministryContact": "CHRISTIANSEN LEMUEL", + "uuid": "0ca32a61-457e-4697-8ee5-bfd7f0cb474a", + "createdAt": "2018-11-20", + "completed": "2015-09-07", + "initiated": "2023-06-18", + "ministryContact": "HUEL MARINA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -66583,69 +76223,27 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { + "uuid": "4f13a208-fe23-4a93-8928-6a48ffaa28fc", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false }, { + "uuid": "1fcc7913-fa28-4ee2-b1b9-f1cf4415eeea", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - } - ], - "siteRegistry": true - }, - { - "createdAt": "2016-02-02", - "completed": "2015-09-25", - "initiated": "2014-07-12", - "ministryContact": "CARTWRIGHT LOYCE", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false } ], "participants": [ { - "name": "AMET, DOLOR SIT", - "endDate": "2020-09-09", - "startDate": "2019-05-13", + "uuid": "5fdfece5-037c-4033-af15-389e2eb4d197", + "name": "IPSUM", + "endDate": "2014-04-15", + "startDate": "2020-08-09", "notes": "", "roles": [ "ORGANIZATION" @@ -66653,19 +76251,10 @@ "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2020-01-18", - "startDate": "2016-05-06", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2019-08-06", - "startDate": "2018-12-26", + "uuid": "bd59eb1f-631a-4da1-96ad-f134dcbe434a", + "name": "AMET, DOLOR SIT", + "endDate": "2015-06-10", + "startDate": "2019-05-01", "notes": "", "roles": [ "ORGANIZATION" @@ -66675,225 +76264,236 @@ ], "suspectLandUses": [ { + "uuid": "ed74bb5e-dcca-43bf-800a-90717d3b1aae", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-07-05 (described on Site Profile dated 2019-07-05)", + "notes": "INSERTED FOR SITE PROFILE DATED 2020-09-09 (described on Site Profile dated 2020-09-09)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-11-16 (described on Site Profile dated 2017-11-16)", + "uuid": "6960bea9-3c5e-4920-ba25-fdbb1aaa6e92", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2018-06-20 (described on Site Profile dated 2018-06-20)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "uuid": "6c501703-4c77-4fd9-a258-746f8383dd7d", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2015-09-11 (described on Site Profile dated 2015-09-11)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2020-01-17 (described on Site Profile dated 2020-01-17)", + "uuid": "ca5dc44d-1618-4ab8-bb5f-efb107d9df1d", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2020-06-22 (described on Site Profile dated 2020-06-22)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" - }, + } + ], + "parcelDescriptions": [ { + "uuid": "6266a21e-52c0-49d7-b0ac-b9571bb1146c", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-07-21 (described on Site Profile dated 2016-07-21)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "dateNoted": "2015-10-22", + "parcelID": "16631", + "crownLandUsePIN": "19018", + "crownLandFileNumber": "18915", + "landDescription": "LOT 3 OF LOT 3 BLOCK 2 DISTRICT LOT 5 PLAN 4305" }, { + "uuid": "ba23fb3a-d570-4d19-b84f-616760a34101", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-07-28 (described on Site Profile dated 2019-07-28)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" - } - ], - "parcelDescriptions": [ + "dateNoted": "2019-03-29", + "parcelID": "17955", + "crownLandUsePIN": "20884", + "crownLandFileNumber": "19578", + "landDescription": "LOT 5 OF LOT 3 BLOCK 3 DISTRICT LOT 2 PLAN 7116" + }, { + "uuid": "a6ed0cbe-49ce-4e40-b2e0-22fe457f3918", "siteRegistry": true, - "dateNoted": "2017-05-07", - "parcelID": "17292", - "crownLandUsePIN": "19364", - "crownLandFileNumber": "18741", - "landDescription": "LOT 3 OF LOT 1 BLOCK 2 DISTRICT LOT 2 PLAN 7804" + "dateNoted": "2021-07-23", + "parcelID": "18391", + "crownLandUsePIN": "18066", + "crownLandFileNumber": "17638", + "landDescription": "LOT 4 OF LOT 3 BLOCK 4 DISTRICT LOT 4 PLAN 3985" }, { + "uuid": "b9ec07c2-a95e-44a0-8e0a-0a0d2a62281f", "siteRegistry": false, - "dateNoted": "2014-02-01", - "parcelID": "18013", - "crownLandUsePIN": "16668", - "crownLandFileNumber": "19933", - "landDescription": "LOT 5 OF LOT 3 BLOCK 5 DISTRICT LOT 5 PLAN 9643" + "dateNoted": "2022-04-20", + "parcelID": "15663", + "crownLandUsePIN": "15481", + "crownLandFileNumber": "15704", + "landDescription": "LOT 1 OF LOT 5 BLOCK 2 DISTRICT LOT 4 PLAN 3567" }, { - "siteRegistry": true, - "dateNoted": "2020-05-05", - "parcelID": "18177", - "crownLandUsePIN": "15770", - "crownLandFileNumber": "19891", - "landDescription": "LOT 2 OF LOT 3 BLOCK 4 DISTRICT LOT 3 PLAN 6683" + "uuid": "709d94de-545e-48f8-aa70-3d6f82b1a4c2", + "siteRegistry": false, + "dateNoted": "2023-08-18", + "parcelID": "15790", + "crownLandUsePIN": "17679", + "crownLandFileNumber": "16635", + "landDescription": "LOT 5 OF LOT 5 BLOCK 4 DISTRICT LOT 3 PLAN 9657" } ], "siteDisclosures": [ { + "uuid": "109bde35-0817-4823-92f2-9afc0fb9a1aa", "siteRegistry": false, - "dateReceived": "2023-09-28", - "dateCompleted": "2021-06-22", - "dateEntered": "2017-09-29", - "dateRegistrar": "2017-01-11", - "dateLocalAuthorityReceived": "2021-06-14", - "summary": "Consequatur aliquid repudiandae aspernatur illum.", - "informationUsed": "Earum neque quam iste ullam aliquam mollitia amet.\nMaiores repellat praesentium enim quam unde.\nDolor quae impedit assumenda nobis quos quaerat voluptatem.\nQuo numquam iste modi.\nOccaecati numquam a.", - "pastOrPresentOrders": "Ex neque laudantium facilis doloremque laudantium sed molestias.\nEos id fugiat adipisci ducimus saepe assumenda itaque atque amet.", + "dateReceived": "2014-07-30", + "dateCompleted": "2023-04-17", + "dateEntered": "2015-11-05", + "dateRegistrar": "2023-07-07", + "dateLocalAuthorityReceived": "2023-05-20", + "summary": "Eos laboriosam earum sit.\nFugiat dignissimos neque iusto.", + "informationUsed": "Ab sapiente molestias reprehenderit maxime.\nNumquam est totam voluptas ad occaecati temporibus ducimus quisquam.\nEst officia voluptas eaque ea iusto doloribus aperiam.\nLaboriosam quisquam ex commodi velit blanditiis tenetur libero similique maiores.\nSaepe officiis sapiente occaecati ex voluptate.", + "pastOrPresentOrders": "Totam tenetur delectus necessitatibus error repellat voluptate.\nLibero asperiores molestiae consequuntur dolore architecto eum non assumenda.", "commercialAndIndustrialPurposes": [ { + "uuid": "2545a8fc-ef8b-4722-8451-4f3a3791e829", "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false - }, - { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false }, { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true - }, - { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false - } - ] - }, - { - "siteRegistry": false, - "dateReceived": "2021-10-28", - "dateCompleted": "2016-02-06", - "dateEntered": "2019-06-06", - "dateRegistrar": "2019-04-25", - "dateLocalAuthorityReceived": "2014-04-18", - "summary": "Laudantium facilis consectetur.\nAut molestiae illo.", - "informationUsed": "Repudiandae eaque doloribus deserunt est illo esse excepturi enim.\nPerferendis similique repellat tempora porro beatae aspernatur aliquid.\nCum saepe earum ratione delectus.\nNobis repellat ea dignissimos accusamus nisi quas cupiditate.", - "pastOrPresentOrders": "Nobis quasi accusamus sunt recusandae hic repellat laudantium facilis.\nDucimus non nesciunt.\nIpsa facilis necessitatibus neque libero maiores.", - "commercialAndIndustrialPurposes": [ - { + "uuid": "7b40fef0-d399-4040-9cf5-59993eb20145", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { + "uuid": "cd920069-6f2f-4c17-9e92-6f0082416729", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true - }, - { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true } ] } ], "activityLog": [ { - "siteRegistry": true, + "uuid": "6a02657f-b378-46b1-a96c-6f0e62dcee74", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "KLEIN THEO", - "timestamp": "2014-04-30" + "user": "BOTSFORD DAISHA", + "timestamp": "2018-10-18" }, { - "siteRegistry": true, + "uuid": "40a214cb-fb54-49e0-a105-ab60711eddd3", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "KRIS LINWOOD", - "timestamp": "2013-11-22" + "user": "MURAZIK ORAN", + "timestamp": "2015-11-01" }, { + "uuid": "c0348e37-36a7-4991-bb50-f8d349bef452", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "WINDLER BUD", - "timestamp": "2021-04-21" + "user": "KLING RENEE", + "timestamp": "2019-10-12" }, { - "siteRegistry": false, + "uuid": "6d960a28-b81f-4fb0-879f-0e2d3edf4e22", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "CUMMERATA KENYATTA", - "timestamp": "2022-10-21" + "user": "GIBSON EDDIE", + "timestamp": "2013-11-19" }, { + "uuid": "bcf80ca5-7883-4c22-a73b-48df47ab7b88", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "VON DREW", - "timestamp": "2020-12-07" + "user": "WILLIAMSON TATYANA", + "timestamp": "2021-06-11" }, { - "siteRegistry": false, + "uuid": "c5df6cc5-5a9d-44ea-b52b-f0092d28bdb6", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "EMMERICH EDWARDO", - "timestamp": "2015-08-14" + "user": "KESSLER LUCY", + "timestamp": "2018-07-01" }, { + "uuid": "fd7e94c1-de3d-4aad-a42a-8f58fbd9fefb", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "BRADTKE ART", - "timestamp": "2020-04-04" + "user": "CONN DALLAS", + "timestamp": "2014-09-26" }, { + "uuid": "74995a9e-abd9-4380-ad6b-34ff37cfbfb9", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "WUCKERT KRYSTAL", - "timestamp": "2022-05-21" + "user": "KOZEY JERAMY", + "timestamp": "2021-08-30" + }, + { + "uuid": "4127cf2c-3205-49d6-8703-9abcc6e35274", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "BOGISICH LILLIAN", + "timestamp": "2022-02-05" }, { + "uuid": "8ba7f3a5-01ad-4ad7-945a-02cef9a4ab72", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "HAMILL-WITTING KATHLEEN", - "timestamp": "2014-04-25" + "user": "KESSLER-RAYNOR ALVAH", + "timestamp": "2018-09-19" } ], "associatedSites": [ { - "dateNoted": "2017-02-10", + "uuid": "27ce5c5b-5ec7-4b33-9102-30be27f8d3a6", + "dateNoted": "2023-09-22", "notes": "", - "parcelID": "20409", - "siteID": "17225", + "parcelID": "19292", + "siteID": "16077", "siteRegistry": true }, { - "dateNoted": "2014-07-26", + "uuid": "467499d8-8bc8-45b8-81fc-5e16db94b4b6", + "dateNoted": "2019-02-07", "notes": "", - "parcelID": "19490", - "siteID": "17951", - "siteRegistry": false + "parcelID": "18643", + "siteID": "18794", + "siteRegistry": true }, { - "dateNoted": "2016-07-02", + "uuid": "c9a49f3c-372f-4722-bef3-03d1eb37bf3f", + "dateNoted": "2022-06-15", "notes": "", - "parcelID": "16321", - "siteID": "19390", - "siteRegistry": false + "parcelID": "20604", + "siteID": "20683", + "siteRegistry": true } ] }, { - "uuid": "924be8e1-a95c-4d15-a3d4-ca6f762ee9c5", - "siteID": 17846, - "address": "2050 Hauck Ways", - "latitude": 55.3289, - "longitude": -125.0426, - "lastUpdated": "2021-08-07", - "city": "Lake Ronaldochester", - "region": "Kootenay", - "victoriaFile": "26250-20/6971", + "uuid": "4835aa0d-2331-4fea-8094-63161da2f57f", + "siteID": 15690, + "address": "62940 Devon Ridges", + "latitude": 49.7352, + "longitude": -125.4729, + "lastUpdated": "2015-04-17", + "city": "Ziemeton", + "region": "Cariboo", + "victoriaFile": "26250-20/4634", "regionalFile": "N/A", "parcelIDs": [ - 7739567, - 7732039, - 9547712, - 3182231, - 7426168 + 2441347, + 4221472, + 5447276, + 3559935, + 8608688 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2013-10-20", - "completed": "2014-03-23", - "initiated": "2014-07-25", - "ministryContact": "BROWN JENNIE", + "uuid": "09482f29-537f-4aed-9483-528ba29276f2", + "createdAt": "2020-06-16", + "completed": "2021-05-31", + "initiated": "2014-02-14", + "ministryContact": "STROSIN JERAD", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -66902,23 +76502,54 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", + "uuid": "e77b14fc-e6ae-4d85-a8fb-e0c0ae99edc5", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", + "uuid": "3fa08fb3-7782-4749-b899-16fb0574d131", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "uuid": "7502b037-3b93-47a5-8273-6bfd2cc927e6", + "createdAt": "2019-02-10", + "completed": "2023-02-13", + "initiated": "2014-08-02", + "ministryContact": "MARKS HARDY", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "uuid": "f169eff2-13f5-4506-b574-21a61fb05bec", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false + }, + { + "uuid": "21bf2308-ce85-4e83-85c0-e9fe263209ab", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true } ], "siteRegistry": true }, { - "createdAt": "2015-11-27", - "completed": "2023-09-11", - "initiated": "2017-06-06", - "ministryContact": "TILLMAN ELMER", + "uuid": "5760afd2-9114-4256-93f8-b2f19cdd0bcc", + "createdAt": "2022-07-20", + "completed": "2020-09-19", + "initiated": "2020-12-12", + "ministryContact": "WALTER KARSON", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -66927,23 +76558,26 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", + "uuid": "3bb8b504-46a5-492f-847b-bffbecab1fde", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", + "uuid": "fad0d851-d8d3-4ca1-ae86-a8beb37d7c67", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2014-12-22", - "completed": "2014-10-25", - "initiated": "2015-05-11", - "ministryContact": "RENNER DARIEN", + "uuid": "c12ecbb9-5590-4fe4-be31-3d4e417a9a4c", + "createdAt": "2023-04-13", + "completed": "2017-07-16", + "initiated": "2013-10-28", + "ministryContact": "ZIEME ELIZA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -66952,247 +76586,263 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", + "uuid": "96129d9a-f7bd-442b-af14-e2f8030121bb", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", + "uuid": "f0fa725c-6b18-487a-a194-9912d44e9d34", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false } ], "participants": [ { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2017-04-24", - "startDate": "2021-12-21", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2023-02-25", - "startDate": "2013-11-16", + "uuid": "06a4faf5-1eeb-4c9c-9f02-b2761c8b1a3f", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2014-10-31", + "startDate": "2016-09-05", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2017-02-22", - "startDate": "2018-07-13", + "uuid": "10ab0eb3-fd18-45c3-b832-d4080adb480c", + "name": "AMET, DOLOR SIT", + "endDate": "2022-04-22", + "startDate": "2022-07-21", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true } ], "suspectLandUses": [ { + "uuid": "bf946d40-1252-46c6-ab3d-c11fbee0e0ea", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-07-06 (described on Site Profile dated 2014-07-06)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "notes": "INSERTED FOR SITE PROFILE DATED 2014-12-10 (described on Site Profile dated 2014-12-10)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { + "uuid": "823acf09-e9ac-487e-9deb-a4db0b89a238", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-07-13 (described on Site Profile dated 2015-07-13)", + "notes": "INSERTED FOR SITE PROFILE DATED 2023-01-02 (described on Site Profile dated 2023-01-02)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "uuid": "7d4cc1f5-2c53-4335-83a6-b7f2857acdce", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2019-03-07 (described on Site Profile dated 2019-03-07)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { + "uuid": "f6c02ab1-f0f1-40f8-96cb-b35d1b03f56b", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-03-23 (described on Site Profile dated 2016-03-23)", + "notes": "INSERTED FOR SITE PROFILE DATED 2013-10-26 (described on Site Profile dated 2013-10-26)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], "parcelDescriptions": [ { + "uuid": "e3908071-8eca-4887-9dfa-69430e67556f", "siteRegistry": false, - "dateNoted": "2020-01-16", - "parcelID": "19985", - "crownLandUsePIN": "19307", - "crownLandFileNumber": "16830", - "landDescription": "LOT 5 OF LOT 3 BLOCK 3 DISTRICT LOT 3 PLAN 5699" + "dateNoted": "2022-11-25", + "parcelID": "16035", + "crownLandUsePIN": "19794", + "crownLandFileNumber": "15669", + "landDescription": "LOT 4 OF LOT 1 BLOCK 1 DISTRICT LOT 5 PLAN 7206" + }, + { + "uuid": "c1c8bfff-9b39-4b8e-bb78-a81a3403d9ef", + "siteRegistry": true, + "dateNoted": "2022-01-04", + "parcelID": "16342", + "crownLandUsePIN": "17827", + "crownLandFileNumber": "17410", + "landDescription": "LOT 1 OF LOT 2 BLOCK 1 DISTRICT LOT 1 PLAN 9667" }, { + "uuid": "81a7c5af-201e-4fa8-81c8-22bd492eff07", "siteRegistry": false, - "dateNoted": "2015-11-15", - "parcelID": "20552", - "crownLandUsePIN": "19065", - "crownLandFileNumber": "16827", - "landDescription": "LOT 3 OF LOT 2 BLOCK 1 DISTRICT LOT 4 PLAN 3750" + "dateNoted": "2016-07-19", + "parcelID": "20850", + "crownLandUsePIN": "16343", + "crownLandFileNumber": "18038", + "landDescription": "LOT 4 OF LOT 2 BLOCK 4 DISTRICT LOT 4 PLAN 4985" }, { + "uuid": "afd95523-7684-480c-bdad-4258cc06b85b", "siteRegistry": false, - "dateNoted": "2017-06-08", - "parcelID": "16310", - "crownLandUsePIN": "16793", - "crownLandFileNumber": "17016", - "landDescription": "LOT 4 OF LOT 3 BLOCK 3 DISTRICT LOT 5 PLAN 8386" + "dateNoted": "2017-07-22", + "parcelID": "19778", + "crownLandUsePIN": "16820", + "crownLandFileNumber": "17138", + "landDescription": "LOT 2 OF LOT 1 BLOCK 2 DISTRICT LOT 4 PLAN 4748" }, { + "uuid": "8dcf5c10-8f23-44c3-b60d-d1e83387844b", "siteRegistry": false, - "dateNoted": "2017-02-20", - "parcelID": "15396", - "crownLandUsePIN": "19228", - "crownLandFileNumber": "19072", - "landDescription": "LOT 1 OF LOT 5 BLOCK 2 DISTRICT LOT 1 PLAN 6653" + "dateNoted": "2020-02-26", + "parcelID": "16259", + "crownLandUsePIN": "16634", + "crownLandFileNumber": "18071", + "landDescription": "LOT 2 OF LOT 2 BLOCK 5 DISTRICT LOT 4 PLAN 9750" } ], "siteDisclosures": [ { + "uuid": "3ae1b3fe-e324-4392-a974-a71206d2ca4a", "siteRegistry": true, - "dateReceived": "2016-07-19", - "dateCompleted": "2019-02-04", - "dateEntered": "2020-07-17", - "dateRegistrar": "2020-08-20", - "dateLocalAuthorityReceived": "2015-04-07", - "summary": "Modi esse occaecati.\nDelectus numquam odio a officia expedita repudiandae velit esse.\nVeniam sit vitae deserunt velit facilis facere ducimus iste.", - "informationUsed": "Adipisci repellendus aspernatur harum vitae iste a.\nSit ea aperiam quibusdam non minima.\nEarum voluptate eveniet eos totam.", - "pastOrPresentOrders": "Accusamus dolore architecto quisquam animi.\nMinus perferendis ut hic totam repellendus cumque expedita minus numquam.\nRerum incidunt sint architecto omnis magni ut.", + "dateReceived": "2015-11-12", + "dateCompleted": "2016-11-30", + "dateEntered": "2016-05-04", + "dateRegistrar": "2015-08-21", + "dateLocalAuthorityReceived": "2021-11-14", + "summary": "Voluptatem eligendi corporis quas odio quis quaerat.\nSapiente recusandae eius nemo.\nNecessitatibus laboriosam unde.", + "informationUsed": "Ab ab voluptatum sed sed iusto assumenda.\nDolor cumque aliquid.\nProvident fugiat sunt a inventore aperiam in impedit vero.", + "pastOrPresentOrders": "Delectus quidem odio possimus molestiae esse debitis soluta voluptatem praesentium.\nOptio odit quae odit ipsam eum vero laudantium nostrum aliquid.\nAccusamus adipisci reiciendis officia.", "commercialAndIndustrialPurposes": [ { - "scheduleReference": "F1*", + "uuid": "7132491d-71ad-4fd6-85f5-297645e081ce", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false }, { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false - } - ] - }, - { - "siteRegistry": true, - "dateReceived": "2021-01-25", - "dateCompleted": "2016-03-19", - "dateEntered": "2022-11-13", - "dateRegistrar": "2017-02-06", - "dateLocalAuthorityReceived": "2017-08-10", - "summary": "Tenetur quidem quisquam.\nEsse similique fugiat.", - "informationUsed": "Asperiores quia soluta ipsa occaecati hic eos.\nQuae deleniti quia veniam labore debitis aspernatur earum.\nAnimi omnis eligendi ducimus similique atque perspiciatis maiores saepe.\nDistinctio enim necessitatibus deleniti doloremque quae itaque vero soluta.", - "pastOrPresentOrders": "Nulla possimus sed natus.\nVitae aperiam corporis debitis blanditiis est nihil corporis adipisci.\nId blanditiis suscipit laboriosam.", - "commercialAndIndustrialPurposes": [ - { + "uuid": "83b44641-c0d6-4652-ad31-6ea98a1ad968", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { + "uuid": "955b5ca0-9960-4dcf-9c94-f756bfedb6b8", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false - }, - { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false + "siteRegistry": true } ] } ], "activityLog": [ { + "uuid": "8e496389-bf66-4ab8-a202-99ace915db37", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "RAYNOR KARLEY", + "timestamp": "2023-07-04" + }, + { + "uuid": "faafbbc5-4af3-43cc-8a70-1cb30ad2343a", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "DOUGLAS ADDIE", - "timestamp": "2021-08-01" + "user": "HEIDENREICH SANTIAGO", + "timestamp": "2014-09-09" }, { + "uuid": "34b048b1-2b1f-4d8b-b2b5-84509ddfda43", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "MOHR CLARISSA", - "timestamp": "2013-12-14" + "user": "KASSULKE-MANN LOGAN", + "timestamp": "2021-11-21" + }, + { + "uuid": "c14bb42a-4a10-4cee-ac95-339885c2ff45", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "STIEDEMANN LILLIAN", + "timestamp": "2021-04-12" }, { + "uuid": "5d5ffe33-1701-4878-85ae-e123bfab9df4", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "KOHLER MATTIE", - "timestamp": "2015-11-23" + "user": "RYAN DANA", + "timestamp": "2015-02-05" }, { + "uuid": "6d3a658a-b6b1-4e09-a0ca-df4c649b5064", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "LOCKMAN-WALSH ELDORA", - "timestamp": "2015-03-26" + "user": "DIBBERT ELADIO", + "timestamp": "2014-09-10" }, { + "uuid": "b7feacf4-c940-4102-a25b-f1e5089dc961", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "REINGER ZANDER", - "timestamp": "2018-07-18" + "user": "HUDSON CASSIDY", + "timestamp": "2017-03-09" }, { + "uuid": "48eb9a9c-9884-49ae-a1d4-a5e0333bdbe4", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "BECKER KAITLYN", - "timestamp": "2021-09-30" + "user": "HESSEL BRISA", + "timestamp": "2021-07-14" } ], "associatedSites": [ { - "dateNoted": "2021-05-22", + "uuid": "0d0bf90b-d43a-4cd7-8b49-55e3e9fa65d2", + "dateNoted": "2016-02-18", "notes": "", - "parcelID": "16485", - "siteID": "17116", - "siteRegistry": true + "parcelID": "19332", + "siteID": "20510", + "siteRegistry": false }, { - "dateNoted": "2023-04-15", + "uuid": "abf66ee4-ac8c-48ea-98db-d80444a6fef3", + "dateNoted": "2017-09-26", "notes": "", - "parcelID": "18837", - "siteID": "18770", + "parcelID": "17070", + "siteID": "17685", "siteRegistry": false }, { - "dateNoted": "2020-11-13", + "uuid": "3359b5ed-21be-40c2-94ae-1bb97d0a2762", + "dateNoted": "2017-04-06", "notes": "", - "parcelID": "18156", - "siteID": "17509", - "siteRegistry": true + "parcelID": "20855", + "siteID": "19254", + "siteRegistry": false } ] }, { - "uuid": "a6bb8d70-98f1-49a1-98a1-3f10a9ec9b17", - "siteID": 16285, - "address": "3324 Lee Underpass", - "latitude": 53.7457, - "longitude": -135.3476, - "lastUpdated": "2014-01-13", - "city": "Elenashire", - "region": "Thompson-Okanagan", - "victoriaFile": "26250-20/7826", + "uuid": "f46d34d7-b0eb-46d0-afdf-097aa8799a7d", + "siteID": 16728, + "address": "552 Schoen Route", + "latitude": 58.5878, + "longitude": -121.9096, + "lastUpdated": "2013-12-02", + "city": "Earnestport", + "region": "Vancouver Island/Coast", + "victoriaFile": "26250-20/1664", "regionalFile": "N/A", "parcelIDs": [ - 4504154, - 5910489, - 1137239, - 284753, - 4550700 + 2516409, + 9734288, + 1616587, + 6238949, + 9030146 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2021-08-05", - "completed": "2016-08-21", - "initiated": "2021-01-23", - "ministryContact": "BOYER JULIANNE", + "uuid": "61403893-ff0a-42aa-8f2b-52e1439b2281", + "createdAt": "2023-07-05", + "completed": "2015-11-06", + "initiated": "2018-04-06", + "ministryContact": "FUNK KENDALL", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -67201,12 +76851,14 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true + "uuid": "ca1a1a5b-4ce5-4a80-9377-3a62cdefea00", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", + "uuid": "aef317b2-7f11-413e-b58b-47c718d82f73", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true } @@ -67214,10 +76866,11 @@ "siteRegistry": true }, { - "createdAt": "2017-05-08", - "completed": "2019-08-14", - "initiated": "2023-05-14", - "ministryContact": "KULAS TYSON", + "uuid": "aee4ba6d-c6b4-4b25-8c32-2479a5acdcc5", + "createdAt": "2014-12-06", + "completed": "2020-08-29", + "initiated": "2019-09-17", + "ministryContact": "KUHLMAN KENNETH", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -67226,69 +76879,135 @@ ], "notationParticipants": [ { + "uuid": "8de34bdf-9acd-42bf-ba40-6579714cf783", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "12c2b644-7039-45cb-872e-c7366fa44364", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false }, { + "uuid": "94010b48-31b2-4288-8910-cda3a9c4afab", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", + "uuid": "71ccfb63-4de9-4d6b-b41f-e2e5ba30e268", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false } ], "siteRegistry": false - } - ], - "participants": [ + }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2018-12-28", - "startDate": "2021-01-05", - "notes": "", - "roles": [ - "ORGANIZATION" + "uuid": "929de637-e904-4505-9c9e-0cdd56538a54", + "createdAt": "2015-07-18", + "completed": "2019-10-28", + "initiated": "2016-05-18", + "ministryContact": "SIPES SAMANTHA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" ], - "siteRegistry": false + "notationParticipants": [ + { + "uuid": "612021e9-78f0-4e2c-b9cd-fbdc9a81c79c", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "6041d80a-f722-4dd6-8f67-d76f0cb37b7e", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "uuid": "fc28f44c-d226-4750-b43a-edb09c27156e", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2022-02-05", - "startDate": "2020-03-22", - "notes": "", - "roles": [ - "EMPLOYEE" + "uuid": "b9fc413e-b158-4192-a36f-d3a8c2509fc0", + "createdAt": "2015-06-12", + "completed": "2018-05-02", + "initiated": "2014-05-01", + "ministryContact": "MCKENZIE JACLYN", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "uuid": "531c0ad9-c2ca-40a3-b228-5ffc449a67f5", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "60e88701-832b-46b4-865c-480deb76bd48", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "faec7792-edd8-4582-ba66-d1d38b58f52e", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "d5d4e190-9421-4459-b3f3-3fb3b4df030d", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + } ], "siteRegistry": true - }, + } + ], + "participants": [ { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2015-12-24", - "startDate": "2020-03-22", + "uuid": "28923627-5c70-4027-895d-d354b671e524", + "name": "IPSUM", + "endDate": "2017-02-24", + "startDate": "2016-09-16", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2017-08-21", - "startDate": "2017-05-27", + "uuid": "a815aa68-1411-4260-a70f-de4360aded90", + "name": "IPSUM", + "endDate": "2013-11-25", + "startDate": "2018-11-10", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": false + "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2019-09-22", - "startDate": "2020-09-15", + "uuid": "aeed5f17-7791-456c-b2c0-59c179c982b6", + "name": "IPSUM", + "endDate": "2017-09-22", + "startDate": "2022-04-23", "notes": "", "roles": [ "ORGANIZATION" @@ -67298,219 +77017,194 @@ ], "suspectLandUses": [ { + "uuid": "9d24694e-342d-4e34-bfa0-2cbf5f231181", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-10-06 (described on Site Profile dated 2021-10-06)", + "notes": "INSERTED FOR SITE PROFILE DATED 2016-03-21 (described on Site Profile dated 2016-03-21)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-09-16 (described on Site Profile dated 2019-09-16)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" - }, - { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-03-10 (described on Site Profile dated 2014-03-10)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" - }, - { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-12-21 (described on Site Profile dated 2019-12-21)", + "uuid": "9d966bce-fceb-443a-82e2-821bf4898f2f", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2015-04-25 (described on Site Profile dated 2015-04-25)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { + "uuid": "97f06d08-3a62-4ac4-ac03-1f0228ed1133", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2020-04-01 (described on Site Profile dated 2020-04-01)", + "notes": "INSERTED FOR SITE PROFILE DATED 2016-05-12 (described on Site Profile dated 2016-05-12)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], "parcelDescriptions": [ { + "uuid": "9909c16c-1954-4d4a-b23f-6ae28019f48f", "siteRegistry": false, - "dateNoted": "2015-03-07", - "parcelID": "19329", - "crownLandUsePIN": "17450", - "crownLandFileNumber": "16204", - "landDescription": "LOT 1 OF LOT 4 BLOCK 2 DISTRICT LOT 2 PLAN 9223" - }, - { - "siteRegistry": false, - "dateNoted": "2015-07-13", - "parcelID": "20296", - "crownLandUsePIN": "18211", - "crownLandFileNumber": "20781", - "landDescription": "LOT 2 OF LOT 4 BLOCK 5 DISTRICT LOT 1 PLAN 5347" + "dateNoted": "2019-01-12", + "parcelID": "19971", + "crownLandUsePIN": "18560", + "crownLandFileNumber": "15653", + "landDescription": "LOT 4 OF LOT 4 BLOCK 1 DISTRICT LOT 1 PLAN 5943" }, { + "uuid": "007f81dc-706e-444f-b604-a0f5406b313f", "siteRegistry": true, - "dateNoted": "2016-02-03", - "parcelID": "15419", - "crownLandUsePIN": "19185", - "crownLandFileNumber": "16722", - "landDescription": "LOT 1 OF LOT 3 BLOCK 1 DISTRICT LOT 1 PLAN 8983" + "dateNoted": "2022-10-03", + "parcelID": "16858", + "crownLandUsePIN": "19193", + "crownLandFileNumber": "17923", + "landDescription": "LOT 1 OF LOT 3 BLOCK 4 DISTRICT LOT 4 PLAN 5619" }, { + "uuid": "54a0dff9-0aaf-47d1-b53f-7be2fbb1951d", "siteRegistry": false, - "dateNoted": "2021-11-10", - "parcelID": "15504", - "crownLandUsePIN": "20398", - "crownLandFileNumber": "19183", - "landDescription": "LOT 2 OF LOT 5 BLOCK 4 DISTRICT LOT 5 PLAN 9205" + "dateNoted": "2022-04-17", + "parcelID": "15701", + "crownLandUsePIN": "19591", + "crownLandFileNumber": "16672", + "landDescription": "LOT 4 OF LOT 4 BLOCK 5 DISTRICT LOT 2 PLAN 9561" }, { + "uuid": "bf0c3653-f959-4b9e-9b38-5cd49ac35ceb", "siteRegistry": true, - "dateNoted": "2013-10-30", - "parcelID": "16799", - "crownLandUsePIN": "18112", - "crownLandFileNumber": "19597", - "landDescription": "LOT 1 OF LOT 3 BLOCK 3 DISTRICT LOT 2 PLAN 9631" + "dateNoted": "2014-06-19", + "parcelID": "19917", + "crownLandUsePIN": "16471", + "crownLandFileNumber": "18766", + "landDescription": "LOT 3 OF LOT 1 BLOCK 4 DISTRICT LOT 4 PLAN 5879" + }, + { + "uuid": "45e96d3e-fa01-402c-803f-a8645d435800", + "siteRegistry": true, + "dateNoted": "2014-04-26", + "parcelID": "15696", + "crownLandUsePIN": "17485", + "crownLandFileNumber": "19723", + "landDescription": "LOT 3 OF LOT 4 BLOCK 3 DISTRICT LOT 1 PLAN 5384" } ], "siteDisclosures": [ { - "siteRegistry": true, - "dateReceived": "2018-10-05", - "dateCompleted": "2021-03-17", - "dateEntered": "2016-08-11", - "dateRegistrar": "2015-01-30", - "dateLocalAuthorityReceived": "2013-11-22", - "summary": "Amet atque placeat adipisci expedita.\nFugit esse dolorum enim optio.\nEst voluptas maxime aspernatur iusto aliquid voluptatem non.", - "informationUsed": "Vitae praesentium quas nemo maxime.\nExpedita vel consequatur error sunt et.\nNam sit deserunt labore voluptas odit nemo ratione.", - "pastOrPresentOrders": "Dolor id delectus.\nEnim perferendis possimus quos.", + "uuid": "3ee5a4b7-90f9-43e7-90bd-235bdf6edd2f", + "siteRegistry": false, + "dateReceived": "2015-04-08", + "dateCompleted": "2015-10-30", + "dateEntered": "2020-12-21", + "dateRegistrar": "2016-08-26", + "dateLocalAuthorityReceived": "2020-11-12", + "summary": "Dolores quod ab magni saepe eligendi.\nMinus totam nostrum.\nAperiam beatae dignissimos assumenda suscipit assumenda inventore rem quaerat incidunt.", + "informationUsed": "Quae nesciunt illo iste quas repudiandae repellendus molestiae minus.\nMolestias ratione vel quasi quis labore sed.\nOfficia accusantium natus.\nRatione impedit temporibus aliquid voluptatibus molestias.\nOptio dolorem eius ducimus est quia.", + "pastOrPresentOrders": "Ut eveniet veniam.", "commercialAndIndustrialPurposes": [ { + "uuid": "2e48af6f-6e92-43bb-9f2b-3d9fb94f4b41", "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false - }, - { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false - } - ] - }, - { - "siteRegistry": true, - "dateReceived": "2023-09-26", - "dateCompleted": "2020-04-26", - "dateEntered": "2017-01-08", - "dateRegistrar": "2022-11-13", - "dateLocalAuthorityReceived": "2015-08-02", - "summary": "Illo nobis aspernatur incidunt quisquam.\nNesciunt inventore exercitationem accusantium illum cum et rem iste.\nDolores dolore fugit quo accusantium at.", - "informationUsed": "Similique mollitia explicabo.\nEst iure porro necessitatibus voluptatem reprehenderit.\nTemporibus possimus doloribus quod quis culpa molestiae earum esse omnis.\nEx neque quaerat quod facilis corporis animi.\nUnde excepturi nisi.", - "pastOrPresentOrders": "Error ducimus ipsam consequuntur reiciendis.\nSapiente tenetur voluptatibus deleniti deserunt laborum velit minus provident.", - "commercialAndIndustrialPurposes": [ - { + "uuid": "c608e159-2dc2-4098-a217-8aced216ae81", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false + "siteRegistry": true }, { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true + "uuid": "3f3913ac-5a16-45f4-ba3d-974461ef001a", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false } ] } ], "activityLog": [ { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "VONRUEDEN PANSY", - "timestamp": "2016-09-27" - }, - { + "uuid": "7967f2a5-a7d6-43bb-ae7c-0fdde7bd42f6", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "MAYERT SEBASTIAN", - "timestamp": "2015-05-08" + "user": "LINDGREN FREDDY", + "timestamp": "2023-04-17" }, { - "siteRegistry": true, + "uuid": "87c8b16f-de07-4bdb-85f1-5e10dad27537", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "ROGAHN KRISTINA", - "timestamp": "2018-01-01" + "user": "RUNTE FREDRICK", + "timestamp": "2017-09-14" }, { + "uuid": "6abb3943-2726-40bc-8f85-934bd57bd5ac", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "KUHIC HOSEA", - "timestamp": "2020-07-10" + "user": "STRACKE ALEXANDER", + "timestamp": "2014-04-27" }, { + "uuid": "2a67a6cc-9ff0-46ef-b766-cdca6c4e6a5a", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "CUMMINGS RHIANNON", - "timestamp": "2019-03-25" + "user": "EMMERICH ELTON", + "timestamp": "2022-04-16" }, { + "uuid": "89a2d27a-f60e-41b7-a990-feedaf310b36", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "CRUICKSHANK BRENDAN", - "timestamp": "2018-03-15" + "user": "BLANDA MAKENNA", + "timestamp": "2023-05-24" }, { - "siteRegistry": true, + "uuid": "5e4b0aa8-d397-42ae-aa89-2e626db9c603", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "CORMIER-TOY GEORGE", - "timestamp": "2019-08-23" + "user": "LITTLE ROSS", + "timestamp": "2019-04-26" } ], "associatedSites": [ { - "dateNoted": "2020-10-09", + "uuid": "463ed6d0-02db-4f2d-9d18-cbbc4205cf5d", + "dateNoted": "2017-06-19", "notes": "", - "parcelID": "19628", - "siteID": "16432", + "parcelID": "17756", + "siteID": "18986", "siteRegistry": true }, { - "dateNoted": "2015-05-02", - "notes": "", - "parcelID": "20247", - "siteID": "15327", - "siteRegistry": false - }, - { - "dateNoted": "2018-08-03", + "uuid": "64d88cb0-dd1e-4cf8-a1a0-1de5f4aaea6f", + "dateNoted": "2022-10-17", "notes": "", - "parcelID": "16212", - "siteID": "16677", + "parcelID": "15295", + "siteID": "16656", "siteRegistry": true } ] }, { - "uuid": "a51c9025-9f04-4e6c-9e8f-c451ae8a90bb", - "siteID": 19138, - "address": "212 Wilderman Parkway", - "latitude": 49.3559, - "longitude": -119.7521, - "lastUpdated": "2019-01-18", - "city": "Thompsoncester", + "uuid": "4830535f-c132-4b06-809a-ad66bba41346", + "siteID": 15304, + "address": "73717 Alisa Brook", + "latitude": 51.797, + "longitude": -129.4096, + "lastUpdated": "2022-08-07", + "city": "South Deronbury", "region": "Mainland/Southwest", - "victoriaFile": "26250-20/3678", + "victoriaFile": "26250-20/17591", "regionalFile": "N/A", "parcelIDs": [ - 645562, - 2015495, - 6940972, - 8282349, - 7275609 + 5129026, + 6128240, + 5081482, + 3521505, + 7358413 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2014-01-18", - "completed": "2021-08-13", - "initiated": "2014-01-05", - "ministryContact": "LOWE HASSAN", + "uuid": "3aef8211-11e2-4995-9fde-2778365caf60", + "createdAt": "2019-04-26", + "completed": "2020-08-02", + "initiated": "2020-03-02", + "ministryContact": "HERZOG ADDIE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -67519,38 +77213,32 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", + "uuid": "b6f6607e-4fd1-40cd-99c7-f30274a410df", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", "siteRegistry": true }, { + "uuid": "5cf33bbe-e951-4409-86b8-1dfcca4a6f7b", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false }, { + "uuid": "989468ac-3538-4df8-8c7c-5a82925dc8a7", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false } ], "siteRegistry": true }, { - "createdAt": "2023-04-23", - "completed": "2021-03-20", - "initiated": "2014-05-17", - "ministryContact": "JOHNSTON KIRSTIN", + "uuid": "79b9da07-39d3-4d85-9d53-900d976b85a5", + "createdAt": "2016-05-03", + "completed": "2015-02-14", + "initiated": "2022-03-31", + "ministryContact": "OKUNEVA FLORENCIO", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -67559,94 +77247,28 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { + "uuid": "085005a5-0146-4e00-a431-96efc89c54df", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", "siteRegistry": true - } - ], - "siteRegistry": true - }, - { - "createdAt": "2013-10-19", - "completed": "2016-03-25", - "initiated": "2014-06-19", - "ministryContact": "DURGAN BRICE", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false }, { + "uuid": "b692d3e5-ee8f-42ba-b0e3-e1506251f8cd", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - } - ], - "siteRegistry": false - }, - { - "createdAt": "2023-04-19", - "completed": "2018-12-10", - "initiated": "2023-07-12", - "ministryContact": "RYAN BEVERLY", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { + "uuid": "8c83dbb1-8434-4bea-af43-324fb2300439", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", + "uuid": "4ac70678-7b17-4b1a-8405-8e02f1f85a0a", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true } ], "siteRegistry": true @@ -67654,29 +77276,32 @@ ], "participants": [ { - "name": "IPSUM", - "endDate": "2021-03-25", - "startDate": "2022-04-22", + "uuid": "5a8836bc-d606-4749-b6cf-0e3ea9421146", + "name": "AMET, DOLOR SIT", + "endDate": "2017-07-13", + "startDate": "2017-05-03", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true }, { - "name": "AMET, DOLOR SIT", - "endDate": "2019-12-17", - "startDate": "2015-12-06", + "uuid": "792449e2-9bff-43c1-ac01-f6b665ab3275", + "name": "IPSUM", + "endDate": "2016-03-13", + "startDate": "2018-04-12", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": true }, { + "uuid": "708e0378-c353-42c6-9fa1-68371b6cb8ec", "name": "IPSUM", - "endDate": "2015-06-10", - "startDate": "2014-03-03", + "endDate": "2020-02-15", + "startDate": "2016-03-25", "notes": "", "roles": [ "ORGANIZATION" @@ -67686,90 +77311,89 @@ ], "suspectLandUses": [ { + "uuid": "21d4df8f-e3a1-48dd-9c09-977c086c65bd", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-12-23 (described on Site Profile dated 2015-12-23)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" - }, - { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-02-08 (described on Site Profile dated 2015-02-08)", + "notes": "INSERTED FOR SITE PROFILE DATED 2016-12-18 (described on Site Profile dated 2016-12-18)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-09-24 (described on Site Profile dated 2021-09-24)", + "uuid": "cb24b270-e58b-4fee-9bba-252fe7da2382", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2014-12-08 (described on Site Profile dated 2014-12-08)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], "parcelDescriptions": [ { + "uuid": "e9309daf-b51f-457f-bb22-e4da88688ba1", + "siteRegistry": true, + "dateNoted": "2022-07-04", + "parcelID": "19606", + "crownLandUsePIN": "18592", + "crownLandFileNumber": "15762", + "landDescription": "LOT 3 OF LOT 3 BLOCK 3 DISTRICT LOT 5 PLAN 9738" + }, + { + "uuid": "e0d5687f-8fe1-4ee7-9375-7f0db18525dc", "siteRegistry": false, - "dateNoted": "2015-03-09", - "parcelID": "18759", - "crownLandUsePIN": "20004", - "crownLandFileNumber": "15728", - "landDescription": "LOT 5 OF LOT 4 BLOCK 4 DISTRICT LOT 5 PLAN 6405" + "dateNoted": "2014-08-04", + "parcelID": "20743", + "crownLandUsePIN": "18714", + "crownLandFileNumber": "19400", + "landDescription": "LOT 3 OF LOT 5 BLOCK 4 DISTRICT LOT 1 PLAN 7930" }, { + "uuid": "7cec5fce-5e0f-4b6b-a5ed-ecc34560bd2f", "siteRegistry": false, - "dateNoted": "2019-02-22", - "parcelID": "16138", - "crownLandUsePIN": "19465", - "crownLandFileNumber": "19475", - "landDescription": "LOT 4 OF LOT 2 BLOCK 3 DISTRICT LOT 3 PLAN 5927" + "dateNoted": "2015-08-26", + "parcelID": "16385", + "crownLandUsePIN": "16150", + "crownLandFileNumber": "18485", + "landDescription": "LOT 5 OF LOT 1 BLOCK 1 DISTRICT LOT 5 PLAN 8725" + }, + { + "uuid": "39718641-e2d5-4cdd-9408-8028fff7e012", + "siteRegistry": true, + "dateNoted": "2020-08-05", + "parcelID": "18688", + "crownLandUsePIN": "20765", + "crownLandFileNumber": "18496", + "landDescription": "LOT 1 OF LOT 3 BLOCK 1 DISTRICT LOT 3 PLAN 8972" } ], "siteDisclosures": [ { - "siteRegistry": true, - "dateReceived": "2019-12-03", - "dateCompleted": "2014-02-23", - "dateEntered": "2017-04-28", - "dateRegistrar": "2015-03-28", - "dateLocalAuthorityReceived": "2020-02-27", - "summary": "Accusantium quis molestiae labore aliquid repellat.\nLabore nemo modi aspernatur ipsum autem adipisci dolores.\nAliquam eius error aliquid excepturi.", - "informationUsed": "Libero repellat assumenda repellendus et deserunt facere.\nNobis nemo debitis velit aperiam quidem voluptate sed vitae.\nIllum sint dolores adipisci voluptatibus fuga rerum minus voluptas.", - "pastOrPresentOrders": "Cum eveniet labore ab ipsa.\nUllam doloribus ex dolorum.\nAut reiciendis soluta nihil alias corporis vero labore distinctio.", + "uuid": "c282edc6-c3fb-4f91-832d-90d8ba0f82d1", + "siteRegistry": false, + "dateReceived": "2016-10-13", + "dateCompleted": "2013-10-22", + "dateEntered": "2021-10-11", + "dateRegistrar": "2022-09-03", + "dateLocalAuthorityReceived": "2019-11-13", + "summary": "Non aliquam ea aspernatur ullam commodi laudantium.\nAperiam libero dolore velit.\nOfficia quos ea incidunt laudantium suscipit explicabo facilis repellat.", + "informationUsed": "Similique ad qui sed.\nVoluptate quo corporis quidem dolorem nulla commodi occaecati aliquam.\nLaborum omnis quia quae officiis inventore.\nModi alias voluptatum est ab.\nNumquam cum iste dolores sit porro.", + "pastOrPresentOrders": "Repellendus reprehenderit quibusdam minus autem.\nImpedit vitae amet nisi itaque facere fugiat.\nPerspiciatis animi dolores numquam sit.", "commercialAndIndustrialPurposes": [ { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "uuid": "339bf685-a884-48eb-b59d-f56676dd1455", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, { + "uuid": "a3da64c4-8af1-4113-8a02-1e26c46ca269", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true - }, - { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false - } - ] - }, - { - "siteRegistry": true, - "dateReceived": "2020-02-25", - "dateCompleted": "2020-05-19", - "dateEntered": "2014-01-13", - "dateRegistrar": "2014-03-03", - "dateLocalAuthorityReceived": "2022-01-14", - "summary": "Excepturi eius atque.\nAsperiores voluptatibus excepturi tempore enim iste quisquam autem nesciunt ducimus.", - "informationUsed": "Vero natus iure porro est dolore aut qui asperiores.\nAmet illo eaque omnis exercitationem fugit.\nAut ratione eligendi laboriosam autem laudantium necessitatibus quo.\nVeniam fugit quas.", - "pastOrPresentOrders": "Pariatur animi ipsum.\nIllo minima id distinctio unde ab repellendus neque totam.\nQuod ipsa pariatur.", - "commercialAndIndustrialPurposes": [ - { + "uuid": "3739d06a-c10b-4b49-b9df-344a46d386ce", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { + "uuid": "d8a80d04-1f49-457b-b182-f26326c9f637", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true @@ -67779,108 +77403,106 @@ ], "activityLog": [ { - "siteRegistry": false, + "uuid": "7292886f-01fb-4c03-b79f-d93f1397d475", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "OKUNEVA ERA", - "timestamp": "2020-06-20" + "user": "CRONIN JASEN", + "timestamp": "2016-06-27" }, { + "uuid": "6266411a-d7d2-48d9-b57e-74e6eaa8d72c", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "DICKINSON RAMONA", - "timestamp": "2019-03-12" + "user": "BAUMBACH GEOVANY", + "timestamp": "2018-11-05" }, { - "siteRegistry": false, + "uuid": "3213eff0-5915-4707-a474-665f814ebf6d", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "GRAHAM GERSON", - "timestamp": "2019-05-23" + "user": "MURRAY VEDA", + "timestamp": "2021-09-02" }, { + "uuid": "d7cc3167-9f58-4a0a-b99b-2f795cf34dc3", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "WINTHEISER-RENNER JACKELINE", - "timestamp": "2018-01-28" + "user": "MOSCISKI ANASTASIA", + "timestamp": "2014-08-20" }, { + "uuid": "88858366-7900-4b24-81ed-dffb0fb29e70", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "JACOBI-GRANT LEW", - "timestamp": "2021-11-23" + "user": "ROMAGUERA FRANCIS", + "timestamp": "2021-02-26" }, { + "uuid": "ea4ab1e5-9b79-45ec-a336-93bd6ccc8419", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "OSINSKI RICKEY", - "timestamp": "2020-08-30" - }, - { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "KRAJCIK MONTANA", - "timestamp": "2019-12-30" + "user": "HERZOG GERALDINE", + "timestamp": "2023-01-18" }, { - "siteRegistry": true, + "uuid": "743ecc1e-1412-4f94-82d2-5a83cdb30364", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "BORER KYLIE", - "timestamp": "2015-07-20" + "user": "SCHILLER-KUNDE KAYLEIGH", + "timestamp": "2018-03-08" }, { - "siteRegistry": true, + "uuid": "c7033aa4-6acc-4db6-8290-083b15ae7e45", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "ANKUNDING KEYSHAWN", - "timestamp": "2017-07-03" + "user": "GERLACH AILEEN", + "timestamp": "2016-09-19" }, { - "siteRegistry": true, + "uuid": "ab510719-56a4-4a84-850c-ebc3307535f0", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "FRIESEN PIETRO", - "timestamp": "2021-06-05" + "user": "WARD LEWIS", + "timestamp": "2014-11-27" } ], "associatedSites": [ { - "dateNoted": "2017-07-21", - "notes": "", - "parcelID": "19599", - "siteID": "20221", - "siteRegistry": true - }, - { - "dateNoted": "2021-09-02", + "uuid": "23a8311c-5fe6-4373-a130-993e08be2e74", + "dateNoted": "2015-01-25", "notes": "", - "parcelID": "15352", - "siteID": "15327", - "siteRegistry": true + "parcelID": "17983", + "siteID": "17673", + "siteRegistry": false } ] }, { - "uuid": "64a82e15-1146-4085-9b3a-62a7b7c51569", - "siteID": 16150, - "address": "237 Hagenes Skyway", - "latitude": 57.4868, - "longitude": -122.2043, - "lastUpdated": "2022-07-21", - "city": "East Arturo", - "region": "Kootenay", - "victoriaFile": "26250-20/4424", + "uuid": "54b8a0eb-6ca0-4613-b8e9-cade4ef7289a", + "siteID": 17035, + "address": "518 Molly Shoals", + "latitude": 48.9058, + "longitude": -138.0284, + "lastUpdated": "2013-11-07", + "city": "Willland", + "region": "Cariboo", + "victoriaFile": "26250-20/15975", "regionalFile": "N/A", "parcelIDs": [ - 5965753, - 7611714, - 9282687, - 2043018, - 9221820 + 1648245, + 9303334, + 3588600, + 5713591, + 3200959 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2021-06-02", - "completed": "2016-09-30", - "initiated": "2014-01-26", - "ministryContact": "LUBOWITZ ALEXIS", + "uuid": "7b74dc8c-be03-4036-8433-826eeb5f3c13", + "createdAt": "2015-05-03", + "completed": "2014-11-29", + "initiated": "2022-05-08", + "ministryContact": "STROSIN ANABELLE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -67889,23 +77511,66 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", + "uuid": "ed67defe-3fef-4a0c-ad71-c3eedb724350", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false }, { + "uuid": "cb9a6e2a-b74e-4619-a579-9d67be6e50e0", "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "7340551b-aafd-4fd5-a932-71e666490a4d", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "uuid": "80cfcccb-de43-4ef1-adbc-a6ded45c8a58", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "uuid": "6fb061f1-726d-47eb-a719-f874a9ea29af", + "createdAt": "2018-11-08", + "completed": "2014-11-18", + "initiated": "2021-06-30", + "ministryContact": "GISLASON JAMISON", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "uuid": "b34602a0-96b9-4103-a6f9-80e4e0dc6888", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": false + }, + { + "uuid": "73ef40df-5b66-4d96-b5af-9ba7d094975b", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2016-06-03", - "completed": "2017-11-26", - "initiated": "2013-11-15", - "ministryContact": "BRUEN ANTONIO", + "uuid": "1743b3e9-d462-4730-99cf-02f5e345a050", + "createdAt": "2017-10-20", + "completed": "2020-05-07", + "initiated": "2023-06-01", + "ministryContact": "EMARD MIREILLE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -67914,19 +77579,72 @@ ], "notationParticipants": [ { + "uuid": "18126bb5-5e0a-479b-b5fc-15a5101840ea", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "61c87a56-ae09-4a45-803c-8b8b622400a8", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "uuid": "c8c65d5a-2f4a-4f9e-85e0-2844bf001f3b", + "createdAt": "2015-05-20", + "completed": "2017-07-23", + "initiated": "2020-06-21", + "ministryContact": "PAUCEK HESTER", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "uuid": "4bafdf85-bd24-4010-8d19-f58966a73b4b", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true }, { + "uuid": "dcce7b7f-fa01-4aad-a36e-b50f51ca4c18", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "uuid": "8db2ab6d-cf01-49be-92d2-bcf2a41111ef", + "createdAt": "2017-01-29", + "completed": "2022-07-19", + "initiated": "2016-05-09", + "ministryContact": "MRAZ STONE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "uuid": "19f0d323-0688-41be-aae0-0ec51e689aaf", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "b612c562-4941-424a-b9df-2626856dd267", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false } ], "siteRegistry": true @@ -67934,111 +77652,162 @@ ], "participants": [ { - "name": "AMET, DOLOR SIT", - "endDate": "2016-01-09", - "startDate": "2016-08-29", + "uuid": "2a6167c2-12e5-4a71-b8fc-c45064b7b34e", + "name": "IPSUM", + "endDate": "2020-01-30", + "startDate": "2018-04-21", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false }, { - "name": "AMET, DOLOR SIT", - "endDate": "2021-03-27", - "startDate": "2021-04-09", + "uuid": "dff9052a-ab89-4a89-bce6-5bf707596b2c", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2021-12-06", + "startDate": "2016-02-10", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": false + "siteRegistry": true }, { + "uuid": "2f6fb2bc-ab4c-4b15-a600-0bc4fe032212", "name": "SHELL CANADA PRODUCTS", - "endDate": "2023-08-06", - "startDate": "2021-10-21", + "endDate": "2013-11-30", + "startDate": "2014-06-20", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "uuid": "9ac31e9e-f1df-4aab-a28a-407be7afcc4f", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2016-03-26", + "startDate": "2019-09-13", "notes": "", "roles": [ "EMPLOYEE" ], "siteRegistry": true + }, + { + "uuid": "4aa57854-54ae-4a27-97bf-2034c5b7db6e", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2014-03-31", + "startDate": "2013-11-24", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false } ], "suspectLandUses": [ { + "uuid": "b6c593c7-1902-429a-82e6-e382cfb13889", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2020-10-09 (described on Site Profile dated 2020-10-09)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "uuid": "c6533500-f279-4641-91fb-3246580279d4", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2020-06-27 (described on Site Profile dated 2020-06-27)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "uuid": "9feec51e-7751-456a-989a-51e3319861ce", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-08-13 (described on Site Profile dated 2018-08-13)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "notes": "INSERTED FOR SITE PROFILE DATED 2019-01-02 (described on Site Profile dated 2019-01-02)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { + "uuid": "e4634fd0-6106-433d-bc7a-5c520aae607f", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-02-16 (described on Site Profile dated 2014-02-16)", + "notes": "INSERTED FOR SITE PROFILE DATED 2015-08-24 (described on Site Profile dated 2015-08-24)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], "parcelDescriptions": [ { - "siteRegistry": true, - "dateNoted": "2014-06-14", - "parcelID": "19107", - "crownLandUsePIN": "19433", - "crownLandFileNumber": "17387", - "landDescription": "LOT 1 OF LOT 4 BLOCK 2 DISTRICT LOT 5 PLAN 7510" + "uuid": "783bdc17-0548-4de1-8bc7-dce4a0bd0f5c", + "siteRegistry": false, + "dateNoted": "2016-09-01", + "parcelID": "16411", + "crownLandUsePIN": "17846", + "crownLandFileNumber": "16325", + "landDescription": "LOT 3 OF LOT 3 BLOCK 1 DISTRICT LOT 4 PLAN 6829" }, { + "uuid": "2d8433e5-0330-4b92-96a6-5cda69d3a603", "siteRegistry": false, - "dateNoted": "2015-09-29", - "parcelID": "20869", - "crownLandUsePIN": "15951", - "crownLandFileNumber": "20738", - "landDescription": "LOT 3 OF LOT 3 BLOCK 3 DISTRICT LOT 2 PLAN 7717" + "dateNoted": "2019-10-15", + "parcelID": "18795", + "crownLandUsePIN": "20294", + "crownLandFileNumber": "20903", + "landDescription": "LOT 2 OF LOT 2 BLOCK 5 DISTRICT LOT 2 PLAN 6164" + }, + { + "uuid": "7b4404df-d4a2-40bf-a326-a4d7f61e1504", + "siteRegistry": true, + "dateNoted": "2016-02-15", + "parcelID": "16099", + "crownLandUsePIN": "16682", + "crownLandFileNumber": "15636", + "landDescription": "LOT 5 OF LOT 4 BLOCK 4 DISTRICT LOT 2 PLAN 4952" }, { + "uuid": "0206ced6-df2d-4164-b152-21feba5a2658", "siteRegistry": false, - "dateNoted": "2017-01-28", - "parcelID": "15777", - "crownLandUsePIN": "16236", - "crownLandFileNumber": "15658", - "landDescription": "LOT 3 OF LOT 1 BLOCK 3 DISTRICT LOT 1 PLAN 6176" + "dateNoted": "2020-06-22", + "parcelID": "19265", + "crownLandUsePIN": "18049", + "crownLandFileNumber": "20193", + "landDescription": "LOT 3 OF LOT 5 BLOCK 3 DISTRICT LOT 4 PLAN 7189" }, { + "uuid": "bd351ccd-bed8-41e4-8f24-e89d31429751", "siteRegistry": true, - "dateNoted": "2018-12-27", - "parcelID": "16908", - "crownLandUsePIN": "16334", - "crownLandFileNumber": "17072", - "landDescription": "LOT 1 OF LOT 5 BLOCK 1 DISTRICT LOT 5 PLAN 8943" + "dateNoted": "2018-12-22", + "parcelID": "17124", + "crownLandUsePIN": "18436", + "crownLandFileNumber": "16026", + "landDescription": "LOT 3 OF LOT 2 BLOCK 1 DISTRICT LOT 2 PLAN 8905" } ], "siteDisclosures": [ { + "uuid": "dbb51931-0ca5-4f91-a441-834980dd0e3f", "siteRegistry": true, - "dateReceived": "2020-08-30", - "dateCompleted": "2016-11-08", - "dateEntered": "2019-03-20", - "dateRegistrar": "2019-12-16", - "dateLocalAuthorityReceived": "2013-11-05", - "summary": "Fugit error provident recusandae.\nAperiam ad quisquam a quibusdam incidunt odio.", - "informationUsed": "Animi delectus provident tenetur voluptas iure doloribus ullam officiis dolor.\nConsectetur nihil ipsum cum odio ad delectus ab.\nIllum quia mollitia voluptas libero necessitatibus deserunt consequatur.\nExcepturi officiis quisquam pariatur nisi voluptatem sit.\nVoluptatibus earum eaque accusantium et ad autem ipsam veritatis quasi.", - "pastOrPresentOrders": "Expedita aspernatur maiores dignissimos.\nExpedita voluptatum deleniti iusto dolor saepe atque assumenda similique natus.\nExpedita deserunt laudantium ab provident maxime.", + "dateReceived": "2019-08-31", + "dateCompleted": "2019-07-22", + "dateEntered": "2016-01-25", + "dateRegistrar": "2021-03-18", + "dateLocalAuthorityReceived": "2016-04-03", + "summary": "Numquam sed nihil cupiditate laboriosam quidem magnam aliquid.\nDoloremque quo porro nostrum quaerat perferendis ea ut velit magnam.", + "informationUsed": "Assumenda illo a quod quae modi rerum veritatis natus.\nReprehenderit modi quibusdam cupiditate amet corporis modi nemo suscipit.\nOccaecati dolor in aliquid odio.", + "pastOrPresentOrders": "Tenetur aspernatur in.", "commercialAndIndustrialPurposes": [ { + "uuid": "0c86e8d3-67b9-4970-9baf-8ac43e378996", "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false }, { + "uuid": "7ad0d5ed-3a8e-4427-9254-0fd7cd6ea540", "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, { + "uuid": "a08d7279-96e1-47dd-84b5-47b91c76698c", "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true - }, - { - "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true } @@ -68047,78 +77816,129 @@ ], "activityLog": [ { + "uuid": "8324d9ae-f5ec-490f-ae83-a338b4f12adc", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "PAGAC DEJON", + "timestamp": "2021-03-09" + }, + { + "uuid": "efafa5ed-12c0-4714-894c-3b0e19b70574", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "WEBER ZANDER", + "timestamp": "2014-10-19" + }, + { + "uuid": "478adc22-7699-4c8f-9fee-f74fb3cdc59f", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "MURRAY WINONA", - "timestamp": "2017-05-23" + "user": "LINDGREN HERMAN", + "timestamp": "2014-09-02" }, { + "uuid": "32bf8584-2efa-41c2-9e6c-d3a6d8b202b0", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "ANKUNDING JOHN", - "timestamp": "2023-02-03" + "user": "DOYLE-SCHIMMEL TARYN", + "timestamp": "2021-09-23" }, { + "uuid": "be704a38-5f07-492f-a09f-b1ef714a2b5c", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "ROSENBAUM JORDI", - "timestamp": "2023-01-27" + "user": "JACOBSON BERNARDO", + "timestamp": "2020-11-08" }, { + "uuid": "94b6aa57-aeaf-4626-a54f-db263773f2de", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "BERGSTROM ELMIRA", - "timestamp": "2020-09-19" + "user": "LANGWORTH HUDSON", + "timestamp": "2014-11-01" + }, + { + "uuid": "f22baa30-4fc3-480a-8662-42344ff9211e", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "ORTIZ JONATHON", + "timestamp": "2017-06-15" + }, + { + "uuid": "04d50330-2074-49dc-97ff-a43ecea4d78b", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "CREMIN EVA", + "timestamp": "2021-02-13" }, { + "uuid": "8bd2f8fc-9b9e-4957-95b4-277610704cae", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "HETTINGER HAL", - "timestamp": "2017-05-21" + "user": "MOHR EMMANUELLE", + "timestamp": "2015-07-16" + }, + { + "uuid": "ef1565cc-b8bc-411d-a074-8cd30144a61e", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "WALKER JOHANN", + "timestamp": "2016-07-14" } ], "associatedSites": [ { - "dateNoted": "2014-07-07", + "uuid": "1d12752d-ce2d-421a-bfc1-9889e986c2ab", + "dateNoted": "2022-04-18", "notes": "", - "parcelID": "19230", - "siteID": "15987", - "siteRegistry": false + "parcelID": "15631", + "siteID": "20304", + "siteRegistry": true }, { - "dateNoted": "2020-07-07", + "uuid": "81217cca-0999-4bad-8746-84aa0c5aba7a", + "dateNoted": "2018-10-27", "notes": "", - "parcelID": "15320", - "siteID": "19984", + "parcelID": "17625", + "siteID": "20024", "siteRegistry": false + }, + { + "uuid": "2c8331fa-ea81-4222-8761-c7197a988122", + "dateNoted": "2015-08-16", + "notes": "", + "parcelID": "15725", + "siteID": "20362", + "siteRegistry": true } ] }, { - "uuid": "ed4988ca-9dd9-45d7-bd01-b6ec9c8a4468", - "siteID": 17110, - "address": "906 Kutch Flats", - "latitude": 51.9937, - "longitude": -127.8756, - "lastUpdated": "2023-07-13", - "city": "Elijahside", - "region": " North Coast", - "victoriaFile": "26250-20/13589", + "uuid": "6ae8dda7-9fd0-4fa0-8cc5-a26d98637b3d", + "siteID": 18865, + "address": "83712 Carli Corner", + "latitude": 49.7239, + "longitude": -133.1883, + "lastUpdated": "2022-06-16", + "city": "Wizafort", + "region": "Thompson-Okanagan", + "victoriaFile": "26250-20/4153", "regionalFile": "N/A", "parcelIDs": [ - 5842989, - 4888616, - 5352608, - 2281436, - 1026081 + 9218490, + 2624823, + 160255, + 3738213, + 9558148 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2015-04-07", - "completed": "2016-09-18", - "initiated": "2014-11-07", - "ministryContact": "ROSENBAUM ALIZE", + "uuid": "8521bb4d-dee3-4a43-92ee-b4fed7932f28", + "createdAt": "2023-06-30", + "completed": "2020-03-18", + "initiated": "2022-05-17", + "ministryContact": "OKUNEVA STERLING", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -68127,113 +77947,26 @@ ], "notationParticipants": [ { + "uuid": "078ce67d-6940-4582-b784-11cd32025516", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - } - ], - "siteRegistry": false - }, - { - "createdAt": "2022-01-08", - "completed": "2021-01-22", - "initiated": "2018-03-11", - "ministryContact": "MACGYVER VELVA", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { + "uuid": "814a47d9-2c3b-4ae7-a23b-3c5644f6e2eb", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false } ], "siteRegistry": false }, { - "createdAt": "2020-07-05", - "completed": "2021-05-01", - "initiated": "2019-11-11", - "ministryContact": "WAELCHI-CONNELLY TANIA", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - } - ], - "siteRegistry": true - }, - { - "createdAt": "2014-08-12", - "completed": "2015-04-10", - "initiated": "2021-07-08", - "ministryContact": "PADBERG SANDRINE", + "uuid": "0bbb91d9-eca5-4f32-83a5-f6b4b058f151", + "createdAt": "2022-11-09", + "completed": "2017-06-29", + "initiated": "2023-07-17", + "ministryContact": "RUTHERFORD SYLVAN", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -68242,261 +77975,292 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { + "uuid": "b688effd-12bb-4aef-8511-3fdbf66b0b52", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true }, { + "uuid": "343b1b57-0ddb-4959-9c44-7efe2905dfaa", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false } ], "participants": [ { + "uuid": "05564712-960b-411f-b932-a58116c495c6", "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2021-12-30", - "startDate": "2020-03-31", + "endDate": "2017-05-23", + "startDate": "2019-04-22", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": true + "siteRegistry": false }, { - "name": "AMET, DOLOR SIT", - "endDate": "2019-05-03", - "startDate": "2014-10-19", + "uuid": "50ba157e-d2b3-46db-ae00-50ef8ebbad52", + "name": "IPSUM", + "endDate": "2017-09-19", + "startDate": "2016-06-30", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2023-02-01", - "startDate": "2016-05-08", + "uuid": "478790ad-2dcc-4d89-9693-2c951ce2f69e", + "name": "IPSUM", + "endDate": "2023-02-09", + "startDate": "2017-05-28", "notes": "", "roles": [ "ORGANIZATION" ], "siteRegistry": false + }, + { + "uuid": "c1f4b13c-68d6-4cad-aeb5-a841652bb894", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2016-09-17", + "startDate": "2023-06-23", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "uuid": "02fe192c-8647-46a1-bd35-3a630e3bbd36", + "name": "IPSUM", + "endDate": "2014-06-25", + "startDate": "2014-11-16", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true } ], "suspectLandUses": [ { + "uuid": "f3598cc1-54cd-4933-9c22-8d874df71418", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2017-01-04 (described on Site Profile dated 2017-01-04)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "uuid": "15107157-ea50-4d58-bb07-140f43bf1c66", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2014-02-25 (described on Site Profile dated 2014-02-25)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "uuid": "d4bd7802-5d72-4da4-8840-42435c221c90", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-11-26 (described on Site Profile dated 2021-11-26)", + "notes": "INSERTED FOR SITE PROFILE DATED 2020-11-12 (described on Site Profile dated 2020-11-12)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { + "uuid": "7fd6a3bd-9356-4eee-9558-ba2eb6337959", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-12-04 (described on Site Profile dated 2016-12-04)", + "notes": "INSERTED FOR SITE PROFILE DATED 2019-12-02 (described on Site Profile dated 2019-12-02)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "uuid": "44c0c417-8887-467e-8b5d-672f52f5bc08", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2022-03-10 (described on Site Profile dated 2022-03-10)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], "parcelDescriptions": [ { - "siteRegistry": false, - "dateNoted": "2015-06-12", - "parcelID": "20081", - "crownLandUsePIN": "18910", - "crownLandFileNumber": "18227", - "landDescription": "LOT 5 OF LOT 5 BLOCK 4 DISTRICT LOT 1 PLAN 5976" - }, - { + "uuid": "51dd5da8-3ac1-4a82-9af0-9f1cf5523bbf", "siteRegistry": true, - "dateNoted": "2020-12-02", - "parcelID": "17008", - "crownLandUsePIN": "19868", - "crownLandFileNumber": "19350", - "landDescription": "LOT 2 OF LOT 1 BLOCK 2 DISTRICT LOT 5 PLAN 5973" + "dateNoted": "2016-08-31", + "parcelID": "15789", + "crownLandUsePIN": "20286", + "crownLandFileNumber": "16380", + "landDescription": "LOT 4 OF LOT 4 BLOCK 1 DISTRICT LOT 5 PLAN 9161" }, { + "uuid": "a3f27c09-6b96-4b81-901b-0e2f694112b4", "siteRegistry": false, - "dateNoted": "2020-05-08", - "parcelID": "19767", - "crownLandUsePIN": "19342", - "crownLandFileNumber": "20223", - "landDescription": "LOT 1 OF LOT 5 BLOCK 5 DISTRICT LOT 1 PLAN 4112" + "dateNoted": "2017-04-05", + "parcelID": "19646", + "crownLandUsePIN": "18556", + "crownLandFileNumber": "20339", + "landDescription": "LOT 1 OF LOT 3 BLOCK 5 DISTRICT LOT 4 PLAN 4175" }, { - "siteRegistry": false, - "dateNoted": "2017-05-03", - "parcelID": "15636", - "crownLandUsePIN": "17358", - "crownLandFileNumber": "18907", - "landDescription": "LOT 4 OF LOT 3 BLOCK 3 DISTRICT LOT 2 PLAN 9502" + "uuid": "18d7c305-9ded-441f-8992-7006f6e53c3d", + "siteRegistry": true, + "dateNoted": "2013-11-05", + "parcelID": "16876", + "crownLandUsePIN": "15261", + "crownLandFileNumber": "16867", + "landDescription": "LOT 2 OF LOT 3 BLOCK 3 DISTRICT LOT 1 PLAN 9590" } ], "siteDisclosures": [ { + "uuid": "89e14d6c-c23e-4962-98ea-1a94e405ed2f", "siteRegistry": true, - "dateReceived": "2017-05-04", - "dateCompleted": "2022-06-02", - "dateEntered": "2014-10-19", - "dateRegistrar": "2015-12-23", - "dateLocalAuthorityReceived": "2022-03-07", - "summary": "Vero deleniti quasi repudiandae reprehenderit laboriosam sit.\nHic maiores fugit enim debitis voluptatibus suscipit voluptates nostrum omnis.", - "informationUsed": "Eius officia quaerat commodi.\nNam at ipsa.\nQuo officiis fugiat doloremque.\nSequi consequatur vel officiis praesentium culpa qui quisquam atque voluptatibus.\nRerum beatae ullam officia.", - "pastOrPresentOrders": "Suscipit magni vitae libero.\nExpedita modi architecto veniam aliquam tenetur sint consequatur.\nEum esse velit fuga.", - "commercialAndIndustrialPurposes": [ - { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false - }, - { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true - }, - { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false - } - ] - }, - { - "siteRegistry": false, - "dateReceived": "2021-03-20", - "dateCompleted": "2022-03-31", - "dateEntered": "2019-06-03", - "dateRegistrar": "2021-10-26", - "dateLocalAuthorityReceived": "2017-03-17", - "summary": "Occaecati laborum atque consequatur occaecati.\nOmnis unde blanditiis nemo non vel.\nInventore mollitia fugiat voluptatum beatae.", - "informationUsed": "Debitis quisquam sapiente iure aspernatur illum delectus assumenda veniam fuga.\nDicta consequatur quo in fugit.\nNobis alias quas.\nPerspiciatis accusamus excepturi.", - "pastOrPresentOrders": "Modi nemo sunt magni labore quidem porro neque odit.", + "dateReceived": "2015-04-01", + "dateCompleted": "2018-05-18", + "dateEntered": "2022-08-01", + "dateRegistrar": "2017-11-04", + "dateLocalAuthorityReceived": "2020-05-31", + "summary": "Quas itaque quasi aperiam at explicabo fuga ullam.\nVero nobis eaque necessitatibus rerum.\nAsperiores praesentium est minima dolorum voluptatibus molestias ex.", + "informationUsed": "Tenetur est impedit velit nisi error voluptatum.\nFugit architecto blanditiis fugit quaerat dolore nulla necessitatibus.\nLabore a provident a maxime modi quae laboriosam sit minus.\nConsectetur in deserunt cum magnam qui aperiam.", + "pastOrPresentOrders": "Eum commodi occaecati voluptatum odit.\nExcepturi laudantium nostrum ex facilis consectetur sed explicabo praesentium.", "commercialAndIndustrialPurposes": [ { + "uuid": "42b31235-45ae-4e46-a2f9-6474433407e2", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false - }, - { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { + "uuid": "893400d9-cd27-4ca0-baac-046a411d6e0a", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true + "siteRegistry": false } ] } ], "activityLog": [ { + "uuid": "eb684ef1-8434-47a6-b043-22892953b3e9", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "TOWNE LEVI", - "timestamp": "2020-06-23" + "user": "KUHLMAN ROD", + "timestamp": "2018-05-09" }, { + "uuid": "65ad4bcd-097a-447b-9242-4c9e8c27b73a", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "DONNELLY FRED", - "timestamp": "2013-10-18" + "user": "COLLIER JUNIOR", + "timestamp": "2020-03-21" + }, + { + "uuid": "d11b98a0-e155-485b-a05c-8640bd3c6768", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "KUHN MOSSIE", + "timestamp": "2018-09-14" }, { + "uuid": "3ac74ca3-9efa-4cb0-a1e4-24767e5892c9", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "MAYER ALEXA", - "timestamp": "2019-06-22" + "user": "SCHOEN JAYLAN", + "timestamp": "2020-11-25" }, { + "uuid": "05d447ee-62be-47bf-8978-a64b2bbfa7e4", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "HOEGER MAGDALEN", - "timestamp": "2013-11-24" + "user": "HOMENICK AUDIE", + "timestamp": "2016-11-29" }, { + "uuid": "da3f544d-d14e-4547-9647-5bca9ae0453d", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "BOYER ELECTA", - "timestamp": "2021-08-05" + "user": "LARSON ALANIS", + "timestamp": "2017-11-24" }, { + "uuid": "d2c20c23-00c2-41f1-b605-fac99b28b87d", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "RUNOLFSSON WILLIAM", - "timestamp": "2014-03-06" + "user": "HILLL MAKENZIE", + "timestamp": "2015-12-19" }, { + "uuid": "6d729b24-52a8-4540-a7b7-b08b56afa98f", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "HAYES LOIS", - "timestamp": "2017-01-27" + "user": "BRAKUS CLEMENTINA", + "timestamp": "2016-04-18" }, { - "siteRegistry": false, + "uuid": "ea004ea1-1ed9-4ea3-ad5e-43dafe8aa5bd", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "WEHNER SALMA", - "timestamp": "2017-08-19" + "user": "FISHER VERNIE", + "timestamp": "2020-03-29" }, { + "uuid": "0e04792f-e16b-4b39-bc61-862eab14c039", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "KUVALIS NEVA", - "timestamp": "2017-05-14" + "user": "MCDERMOTT ARELY", + "timestamp": "2019-09-29" } ], "associatedSites": [ { - "dateNoted": "2023-05-05", + "uuid": "a8d8eb26-1305-4f27-b590-69f41e4b50c7", + "dateNoted": "2020-01-17", + "notes": "", + "parcelID": "18516", + "siteID": "20942", + "siteRegistry": false + }, + { + "uuid": "37b4dd30-c2fc-4bf6-8795-b818e5396831", + "dateNoted": "2018-05-17", "notes": "", - "parcelID": "18348", - "siteID": "20741", + "parcelID": "18622", + "siteID": "17666", "siteRegistry": false + }, + { + "uuid": "fa66cf8d-f876-40ae-9e94-07e48d7623c3", + "dateNoted": "2017-07-08", + "notes": "", + "parcelID": "18194", + "siteID": "18416", + "siteRegistry": true } ] }, { - "uuid": "68c8c3ba-17ce-414d-bf1b-ce9fa066c62f", - "siteID": 16843, - "address": "2765 Powlowski Lock", - "latitude": 56.4004, - "longitude": -135.4178, - "lastUpdated": "2015-03-17", - "city": "Reichelworth", + "uuid": "ea5fe53c-c05a-42ac-af06-6ec9224b0d92", + "siteID": 17896, + "address": "8619 Alda Rapids", + "latitude": 56.6884, + "longitude": -119.1977, + "lastUpdated": "2016-01-31", + "city": "Ratkeworth", "region": "Mainland/Southwest", - "victoriaFile": "26250-20/8546", + "victoriaFile": "26250-20/5202", "regionalFile": "N/A", "parcelIDs": [ - 3647231, - 1595517, - 5324516, - 7962526, - 6405704 + 8030380, + 505713, + 6184047, + 8649340, + 1486341 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2015-07-21", - "completed": "2014-08-26", - "initiated": "2020-06-25", - "ministryContact": "DONNELLY LENNA", + "uuid": "66bc2459-d05b-4d52-8944-3067485724f1", + "createdAt": "2016-03-27", + "completed": "2021-07-31", + "initiated": "2019-08-30", + "ministryContact": "SAUER ALYSHA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -68505,28 +78269,38 @@ ], "notationParticipants": [ { + "uuid": "a3a916d5-6c0b-4972-a4d6-925a4858df16", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", + "uuid": "a3504f55-5124-4de0-8cd6-3a3c4c31bd4b", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { + "uuid": "e39ac3a6-4cc5-486b-97f3-87f4abc70699", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "43b076f2-019e-41e2-aeda-d96b8d4c852f", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": true } ], "siteRegistry": true }, { - "createdAt": "2016-09-15", - "completed": "2017-11-08", - "initiated": "2019-10-15", - "ministryContact": "RENNER-BINS PENELOPE", + "uuid": "94ede550-dddc-4a1b-89e1-4916c54cf7e5", + "createdAt": "2023-02-03", + "completed": "2020-03-17", + "initiated": "2020-06-23", + "ministryContact": "GOYETTE GILBERT", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -68535,38 +78309,84 @@ ], "notationParticipants": [ { + "uuid": "67f457b5-1a45-400e-8d21-46bd69038c80", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false }, { + "uuid": "b5e06b6c-89cf-4274-a4d1-e0e9681d1498", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false }, { + "uuid": "02f2b634-ab53-4a9d-9b07-dfe764aa2bb1", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "uuid": "36eadb70-26e5-4a76-9ce4-7a879afac0c6", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "uuid": "27001ae0-ed14-46c2-adab-1baf2bda3a0c", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "uuid": "c5b9da58-af0b-44fc-8e9a-4c159806efc6", + "createdAt": "2016-01-16", + "completed": "2021-12-11", + "initiated": "2015-07-04", + "ministryContact": "ROHAN TREMAINE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "uuid": "35bab488-286c-40a6-aea1-8fa59f8901d7", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "87ef35d0-b5eb-4d7d-b397-18fdf6c74148", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", "siteRegistry": false }, { + "uuid": "b367e86e-870f-448a-89c8-d639acbe9d4e", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true }, { + "uuid": "acc67a35-8077-4eb8-bb87-94a81f47c128", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2018-04-17", - "completed": "2016-07-18", - "initiated": "2019-01-24", - "ministryContact": "MAYER FREDERIC", + "uuid": "ac4457f7-c0c1-481d-983f-17efa4872831", + "createdAt": "2018-02-06", + "completed": "2015-04-16", + "initiated": "2022-06-03", + "ministryContact": "NADER JONATHON", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -68575,29 +78395,68 @@ ], "notationParticipants": [ { + "uuid": "5ed3074c-c537-4207-a65f-f00307599c6e", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", + "uuid": "75bd3599-4c5f-4765-8397-cc7d17ea4b25", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "uuid": "f3368313-6929-4fc3-a37c-138d60947fef", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true }, { + "uuid": "6add1fcb-6bfb-414d-b65b-827584b316c7", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "uuid": "58eefd35-1739-49d8-aba4-3d57fe190f81", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "uuid": "4331e8a1-4922-4443-86cf-4d99ea26ce9f", + "createdAt": "2014-08-08", + "completed": "2023-02-11", + "initiated": "2019-06-20", + "ministryContact": "THIEL LAURIANNE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "uuid": "c8c34461-aa0a-4889-8919-8f5b25f85b9c", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true }, { + "uuid": "f8e8e538-c5ed-4404-977a-7c9da989ec89", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true }, { + "uuid": "7815889b-8779-4c26-a6b8-158f7e5ef256", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false + "role": "REQUESTED BY", + "siteRegistry": true } ], "siteRegistry": true @@ -68605,9 +78464,10 @@ ], "participants": [ { + "uuid": "7da42591-9acf-4166-a1f1-f9b5958797ce", "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2021-08-30", - "startDate": "2022-06-27", + "endDate": "2020-07-18", + "startDate": "2016-05-31", "notes": "", "roles": [ "EMPLOYEE" @@ -68615,207 +78475,195 @@ "siteRegistry": false }, { - "name": "AMET, DOLOR SIT", - "endDate": "2020-05-24", - "startDate": "2022-03-13", + "uuid": "cb6ec1cc-3315-4b77-95b2-c8a9df928a3a", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2022-12-23", + "startDate": "2018-04-02", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], - "siteRegistry": true + "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2023-02-27", - "startDate": "2020-04-17", + "uuid": "5921baaf-a466-4e8a-bc19-296dec555d8d", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2022-01-17", + "startDate": "2014-11-17", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": false + "siteRegistry": true }, { + "uuid": "f012b81a-53c0-46de-b5f2-bc2d7513e801", "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2016-05-13", - "startDate": "2015-05-24", + "endDate": "2020-09-08", + "startDate": "2016-01-15", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true }, { + "uuid": "7956b3a5-b519-44ee-b934-f2f8fdd10000", "name": "SHELL CANADA PRODUCTS", - "endDate": "2016-12-14", - "startDate": "2021-01-27", + "endDate": "2023-02-23", + "startDate": "2013-11-10", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": true + "siteRegistry": false } ], "suspectLandUses": [ { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-02-24 (described on Site Profile dated 2016-02-24)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" - }, - { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-10-17 (described on Site Profile dated 2014-10-17)", + "uuid": "bb7b6327-0c72-459a-bf3c-4d44609589e1", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2016-12-15 (described on Site Profile dated 2016-12-15)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2023-09-06 (described on Site Profile dated 2023-09-06)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" - }, - { + "uuid": "99a5337a-5351-4f32-a6ba-93116bb285e1", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-08-16 (described on Site Profile dated 2017-08-16)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "notes": "INSERTED FOR SITE PROFILE DATED 2014-10-16 (described on Site Profile dated 2014-10-16)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], "parcelDescriptions": [ { + "uuid": "f8c01492-f3aa-4f90-8a3c-6b3b2a329f62", + "siteRegistry": false, + "dateNoted": "2020-02-24", + "parcelID": "15697", + "crownLandUsePIN": "16607", + "crownLandFileNumber": "19271", + "landDescription": "LOT 5 OF LOT 4 BLOCK 3 DISTRICT LOT 3 PLAN 5464" + }, + { + "uuid": "b5caa230-0c2a-4c63-999a-26240a854c28", "siteRegistry": true, - "dateNoted": "2015-11-19", - "parcelID": "18063", - "crownLandUsePIN": "20234", - "crownLandFileNumber": "20726", - "landDescription": "LOT 1 OF LOT 5 BLOCK 1 DISTRICT LOT 5 PLAN 3044" + "dateNoted": "2022-05-25", + "parcelID": "19342", + "crownLandUsePIN": "17208", + "crownLandFileNumber": "17593", + "landDescription": "LOT 1 OF LOT 2 BLOCK 5 DISTRICT LOT 5 PLAN 7499" }, { + "uuid": "b206197f-825c-45da-9e29-29cdcf245d18", "siteRegistry": true, - "dateNoted": "2021-03-16", - "parcelID": "15361", - "crownLandUsePIN": "19495", - "crownLandFileNumber": "20120", - "landDescription": "LOT 1 OF LOT 5 BLOCK 5 DISTRICT LOT 4 PLAN 5397" + "dateNoted": "2016-01-09", + "parcelID": "17946", + "crownLandUsePIN": "16789", + "crownLandFileNumber": "20555", + "landDescription": "LOT 4 OF LOT 2 BLOCK 2 DISTRICT LOT 1 PLAN 9541" } ], "siteDisclosures": [ { + "uuid": "7e064dea-5ed8-470e-af68-545fc428cb42", "siteRegistry": false, - "dateReceived": "2016-10-19", - "dateCompleted": "2014-09-04", - "dateEntered": "2020-12-20", - "dateRegistrar": "2015-06-24", - "dateLocalAuthorityReceived": "2021-01-11", - "summary": "Dolorum placeat culpa sit provident.\nExplicabo expedita voluptate.\nSuscipit repellat culpa.", - "informationUsed": "Autem expedita minima nostrum.\nLaboriosam voluptates natus est mollitia molestiae.\nOccaecati fugiat labore aliquam possimus officia nulla id ullam.", - "pastOrPresentOrders": "Laboriosam distinctio quam autem iure ratione magni reprehenderit porro.\nEt voluptate cumque.\nEveniet quisquam consequatur debitis reiciendis.", + "dateReceived": "2022-11-02", + "dateCompleted": "2016-11-17", + "dateEntered": "2014-09-16", + "dateRegistrar": "2019-09-09", + "dateLocalAuthorityReceived": "2018-03-09", + "summary": "Illum laboriosam temporibus vitae facere eveniet.\nEius odio inventore libero occaecati nisi.", + "informationUsed": "Dolor a iusto.\nDicta accusantium minus occaecati.\nEum atque aliquam iste voluptates inventore quia labore consectetur.\nOfficiis aspernatur beatae non corrupti voluptatibus.\nDolores libero molestias.", + "pastOrPresentOrders": "Aliquam odio eveniet commodi eum fuga quo vitae natus tempora.\nTempora expedita excepturi ab aliquid placeat repudiandae beatae.", "commercialAndIndustrialPurposes": [ { + "uuid": "2a002eab-1b76-463f-84c7-7d975a4e1c30", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false - }, - { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { + "uuid": "d97a9195-969b-44c2-9c43-9a5de4c2dbff", "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true - }, - { - "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true + "siteRegistry": false } ] } ], "activityLog": [ { - "siteRegistry": true, + "uuid": "9d00f2d4-0a79-4d57-8144-336566843746", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "ADAMS MAJOR", - "timestamp": "2020-01-07" + "user": "KING MARIO", + "timestamp": "2019-04-08" }, { + "uuid": "5dc5ec44-653e-4781-980d-5ddc2a6026e5", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "STANTON BETHANY", - "timestamp": "2020-03-04" + "user": "BLOCK REYNOLD", + "timestamp": "2018-09-05" }, { + "uuid": "99b919b1-a670-4d57-9bad-6139f9bd1d06", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "VEUM CATALINA", - "timestamp": "2021-11-28" - }, - { - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "HILLS QUINCY", - "timestamp": "2022-06-12" - }, - { - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "CONN ELECTA", - "timestamp": "2016-02-28" + "user": "WAELCHI CAMILLE", + "timestamp": "2019-10-26" }, { + "uuid": "6fa464df-3a58-42b4-87af-826c93c67f99", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "STREICH ALEXYS", - "timestamp": "2016-04-03" + "user": "STARK TAMARA", + "timestamp": "2022-11-28" }, { + "uuid": "d4921585-f3cd-4873-be6e-dbf607661a2d", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "RATKE-LYNCH TEAGAN", - "timestamp": "2015-06-23" + "user": "HARBER AISHA", + "timestamp": "2014-05-30" } ], "associatedSites": [ { - "dateNoted": "2017-04-10", + "uuid": "17cf43d7-8f6b-4084-927b-980db6e84e60", + "dateNoted": "2017-11-10", "notes": "", - "parcelID": "16643", - "siteID": "19745", + "parcelID": "18595", + "siteID": "17972", "siteRegistry": false - }, - { - "dateNoted": "2017-01-11", - "notes": "", - "parcelID": "15383", - "siteID": "15327", - "siteRegistry": true } ] }, { - "uuid": "8042395c-290e-4974-b016-104a7f7f4bd6", - "siteID": 18658, - "address": "3812 Schaefer Spur", - "latitude": 57.5521, - "longitude": -123.7888, - "lastUpdated": "2018-10-10", - "city": "Noblesville", - "region": "Vancouver Island/Coast", - "victoriaFile": "26250-20/13410", + "uuid": "f62f3b04-39e8-4829-8df5-67e1bcd53bdd", + "siteID": 18311, + "address": "9923 Bria Corner", + "latitude": 53.044, + "longitude": -130.0047, + "lastUpdated": "2015-04-20", + "city": "North Amberside", + "region": "Cariboo", + "victoriaFile": "26250-20/6373", "regionalFile": "N/A", "parcelIDs": [ - 3469053, - 4895698, - 5418789, - 5936299, - 8662346 + 1533289, + 8655837, + 8356189, + 7189939, + 8128617 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2013-12-10", - "completed": "2022-10-04", - "initiated": "2015-04-12", - "ministryContact": "BRUEN JACKELINE", + "uuid": "19ae3371-8e5e-4fbe-9482-098e1f32e440", + "createdAt": "2021-09-22", + "completed": "2018-12-05", + "initiated": "2019-10-05", + "ministryContact": "HAGENES TIANA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -68824,38 +78672,72 @@ ], "notationParticipants": [ { + "uuid": "93c2787b-665d-438a-a8bd-f4360fe3dfe1", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true }, { + "uuid": "e81a0040-042e-4956-84ad-dce393da6d17", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "86845b9b-5e91-48d2-88b9-776a5a168d8f", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "uuid": "d720f726-b6ab-4fbb-9fcf-df2ccb93522c", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "uuid": "87d4b941-2a7d-41f4-a094-e89ee0f43e05", + "createdAt": "2018-06-21", + "completed": "2014-11-18", + "initiated": "2020-10-01", + "ministryContact": "HERMISTON AIDA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "uuid": "1c35eb8c-2b6b-4fe1-97af-836d053ae011", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false }, { + "uuid": "17ea3f07-f001-40e4-ba8c-4e6c36c28324", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false }, { + "uuid": "e8d55b8e-f2f3-4d37-b431-7e5ccd0d84c9", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false + "role": "REQUESTED BY", + "siteRegistry": true } ], "siteRegistry": false }, { - "createdAt": "2019-02-24", - "completed": "2019-12-03", - "initiated": "2019-08-21", - "ministryContact": "FISHER FIDEL", + "uuid": "e7131dd5-add7-4a8b-835e-ced6522109f0", + "createdAt": "2016-10-12", + "completed": "2016-05-15", + "initiated": "2023-05-24", + "ministryContact": "GERHOLD AUBREY", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -68864,17 +78746,20 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "5bea92ca-471d-4c34-8b1f-fba50255aca6", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true }, { + "uuid": "165fb1dd-6fad-4c40-853a-8b1a98745587", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", + "uuid": "bd68ecdf-cd1a-47b8-aa86-209526a1f104", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true } @@ -68882,10 +78767,11 @@ "siteRegistry": false }, { - "createdAt": "2015-05-27", - "completed": "2023-05-02", - "initiated": "2023-07-16", - "ministryContact": "DENESIK SCOTTY", + "uuid": "9819445d-6875-4498-bd7f-5147830e17e5", + "createdAt": "2019-12-14", + "completed": "2016-09-19", + "initiated": "2016-07-30", + "ministryContact": "KUHLMAN MIKE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -68894,252 +78780,269 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", + "uuid": "b6507c3d-5bd0-4925-998a-269bc8e5aad7", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "be4268df-ed55-4e17-befd-6006b37f0ecd", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { + "uuid": "021c685d-e54b-4a45-b79b-dfe36581eae0", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false - } - ], - "siteRegistry": false - } - ], - "participants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2022-12-17", - "startDate": "2022-08-01", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": false - }, - { - "name": "IPSUM", - "endDate": "2014-09-17", - "startDate": "2017-04-14", - "notes": "", - "roles": [ - "EMPLOYEE" + "siteRegistry": false + }, + { + "uuid": "07b0cc62-7ff8-49d4-bfc6-93d80aefe205", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + } ], - "siteRegistry": false - }, + "siteRegistry": true + } + ], + "participants": [ { + "uuid": "4db3a779-115b-42cd-bcfa-d7b74ae24ec1", "name": "IPSUM", - "endDate": "2017-08-01", - "startDate": "2022-08-26", + "endDate": "2017-09-17", + "startDate": "2014-09-22", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": false }, { - "name": "IPSUM", - "endDate": "2016-09-30", - "startDate": "2015-03-23", + "uuid": "6e5ae133-c796-46c0-9248-f506d35aa6a5", + "name": "AMET, DOLOR SIT", + "endDate": "2022-07-13", + "startDate": "2014-10-13", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": true - }, - { - "name": "IPSUM", - "endDate": "2017-06-17", - "startDate": "2016-10-26", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": false } ], "suspectLandUses": [ { + "uuid": "51717593-0b17-4507-a413-ce8a92d351df", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2016-06-07 (described on Site Profile dated 2016-06-07)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "uuid": "d2947123-9e47-4327-96d8-8112ab04e31c", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2023-03-27 (described on Site Profile dated 2023-03-27)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "uuid": "e0daffe1-a200-4f49-a273-75dd26e7016b", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-01-23 (described on Site Profile dated 2015-01-23)", + "notes": "INSERTED FOR SITE PROFILE DATED 2020-09-04 (described on Site Profile dated 2020-09-04)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-10-27 (described on Site Profile dated 2015-10-27)", + "uuid": "c1de377d-d670-48e1-bf89-433c3f3ac466", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2015-01-15 (described on Site Profile dated 2015-01-15)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "uuid": "30255325-772d-4e82-9a85-d19d827a2d57", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2017-09-04 (described on Site Profile dated 2017-09-04)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], "parcelDescriptions": [ { - "siteRegistry": false, - "dateNoted": "2013-11-04", - "parcelID": "20521", - "crownLandUsePIN": "15692", - "crownLandFileNumber": "19471", - "landDescription": "LOT 1 OF LOT 3 BLOCK 2 DISTRICT LOT 1 PLAN 9429" + "uuid": "dadb2365-0db3-4925-8a8a-2bb94f4f7ae8", + "siteRegistry": true, + "dateNoted": "2014-11-23", + "parcelID": "16343", + "crownLandUsePIN": "17091", + "crownLandFileNumber": "16241", + "landDescription": "LOT 4 OF LOT 3 BLOCK 1 DISTRICT LOT 5 PLAN 6117" }, { - "siteRegistry": true, - "dateNoted": "2019-05-01", - "parcelID": "17712", - "crownLandUsePIN": "15466", - "crownLandFileNumber": "17691", - "landDescription": "LOT 5 OF LOT 5 BLOCK 4 DISTRICT LOT 3 PLAN 3878" + "uuid": "35585634-2e0a-4a1b-b62c-9350fb8db3ca", + "siteRegistry": false, + "dateNoted": "2020-08-14", + "parcelID": "16436", + "crownLandUsePIN": "15581", + "crownLandFileNumber": "15256", + "landDescription": "LOT 3 OF LOT 5 BLOCK 2 DISTRICT LOT 5 PLAN 6438" }, { + "uuid": "7dcd45c5-1d8f-45a5-8dd5-abff0e5431d5", "siteRegistry": false, - "dateNoted": "2015-11-26", - "parcelID": "18488", - "crownLandUsePIN": "18016", - "crownLandFileNumber": "20527", - "landDescription": "LOT 2 OF LOT 4 BLOCK 5 DISTRICT LOT 4 PLAN 4372" + "dateNoted": "2023-01-12", + "parcelID": "16168", + "crownLandUsePIN": "16607", + "crownLandFileNumber": "20721", + "landDescription": "LOT 4 OF LOT 3 BLOCK 2 DISTRICT LOT 1 PLAN 8248" }, { + "uuid": "b8db2087-bec1-4807-a1a7-37e0426c174e", "siteRegistry": true, - "dateNoted": "2016-11-26", - "parcelID": "15585", - "crownLandUsePIN": "17589", - "crownLandFileNumber": "17294", - "landDescription": "LOT 1 OF LOT 1 BLOCK 3 DISTRICT LOT 5 PLAN 5112" + "dateNoted": "2016-08-18", + "parcelID": "20892", + "crownLandUsePIN": "15494", + "crownLandFileNumber": "16141", + "landDescription": "LOT 1 OF LOT 1 BLOCK 4 DISTRICT LOT 4 PLAN 6811" } ], "siteDisclosures": [ { + "uuid": "d85aa498-1872-4753-88de-1e885cd6986c", "siteRegistry": true, - "dateReceived": "2014-02-08", - "dateCompleted": "2019-03-20", - "dateEntered": "2019-10-04", - "dateRegistrar": "2018-10-05", - "dateLocalAuthorityReceived": "2014-10-11", - "summary": "Quam aliquid accusamus libero commodi voluptate illum eos.", - "informationUsed": "Eius laborum aut sunt ipsa.\nDoloremque ipsa molestiae ad consequuntur ullam corrupti a sequi ipsam.\nModi neque aperiam inventore odio sequi dicta odit excepturi.\nAlias laudantium quos suscipit.\nBeatae optio minus assumenda.", - "pastOrPresentOrders": "Voluptas quisquam similique.\nVel explicabo aliquid itaque dolorem ipsam accusantium repellat.\nVeniam dolorem animi sunt corrupti.", + "dateReceived": "2017-02-11", + "dateCompleted": "2020-12-18", + "dateEntered": "2014-09-25", + "dateRegistrar": "2023-07-15", + "dateLocalAuthorityReceived": "2013-12-19", + "summary": "Officiis sunt recusandae voluptate.\nHic deleniti optio vel exercitationem dicta tempore hic.", + "informationUsed": "Vitae ducimus cupiditate suscipit similique esse labore.\nQui necessitatibus animi itaque.\nError nostrum mollitia.\nExplicabo quam iure dignissimos.\nExercitationem quae ipsam voluptates non dolorum.", + "pastOrPresentOrders": "Minima quasi sequi.", "commercialAndIndustrialPurposes": [ { + "uuid": "99290bb4-937a-4d5b-aec3-89b3318a1e95", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false - }, - { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false - }, - { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true - } - ] - }, - { - "siteRegistry": true, - "dateReceived": "2020-12-31", - "dateCompleted": "2016-05-03", - "dateEntered": "2019-03-02", - "dateRegistrar": "2020-07-14", - "dateLocalAuthorityReceived": "2019-06-18", - "summary": "Aut voluptate quod cumque possimus quia itaque nesciunt.\nOccaecati velit voluptates dolorem totam doloremque possimus.", - "informationUsed": "Eum fugiat corporis modi quasi.\nIllo ipsa harum eos dolorem eum.\nError recusandae quidem animi voluptas incidunt consectetur.\nDucimus corrupti voluptatum hic rerum doloribus numquam.\nVero numquam tempore officia error.", - "pastOrPresentOrders": "Reiciendis repellat excepturi nemo odio dicta mollitia.", - "commercialAndIndustrialPurposes": [ - { + "uuid": "41b5e496-1373-4624-aa21-1da11a6a7889", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true + "siteRegistry": false }, { + "uuid": "829ff316-7751-4858-ac96-c7e94183ec5d", "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false }, { + "uuid": "533668c7-b323-463b-b599-36591f13013a", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true - }, - { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false } ] } ], "activityLog": [ { - "siteRegistry": true, + "uuid": "2c2ef20f-d80d-4e30-a326-abd32f0d20f2", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "KUNDE BLAKE", - "timestamp": "2023-05-14" + "user": "TROMP CORDIA", + "timestamp": "2023-08-20" }, { + "uuid": "5d3934ec-ffae-4711-9ecf-1605e8de9056", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "GREEN SISTER", - "timestamp": "2017-11-09" + "user": "KRAJCIK TESS", + "timestamp": "2021-12-04" }, { - "siteRegistry": false, + "uuid": "096e1ad4-81fb-4de2-ad32-612e6811a530", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "BARTOLETTI MICHAEL", - "timestamp": "2021-09-03" + "user": "SCHUSTER FELIX", + "timestamp": "2021-06-25" + }, + { + "uuid": "d4fe616d-8d23-4247-a9ee-943f8144a89a", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "WHITE WILHELM", + "timestamp": "2014-05-28" }, { + "uuid": "35adf96f-764e-47e9-9e3d-26a7eac1f120", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "BOYLE ORAL", - "timestamp": "2018-12-26" + "user": "RUNOLFSDOTTIR REBEKAH", + "timestamp": "2016-07-19" + }, + { + "uuid": "7d57afa0-f094-4d54-b905-98bef5f6142c", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "SCHMELER ETHA", + "timestamp": "2018-04-07" + }, + { + "uuid": "69384d5d-4f07-4855-92e9-878719f8485a", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "ZIEME THAD", + "timestamp": "2019-08-22" }, { + "uuid": "2d247c69-7fd0-42b8-9499-afc5b138e254", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "NOLAN REANNA", - "timestamp": "2019-04-09" + "user": "GREEN SIMONE", + "timestamp": "2018-12-23" + }, + { + "uuid": "685e8784-6806-4b31-8720-8c9ed5b57af5", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "WIZA AISHA", + "timestamp": "2015-05-11" } ], "associatedSites": [ { - "dateNoted": "2023-06-10", + "uuid": "e85a5194-1a81-46e2-9092-70e9f9946b61", + "dateNoted": "2021-06-19", "notes": "", - "parcelID": "20362", - "siteID": "15826", - "siteRegistry": false + "parcelID": "19234", + "siteID": "19522", + "siteRegistry": true } ] }, { - "uuid": "1c2e90ae-d2b0-4d7d-9cc4-1bf533f255a7", - "siteID": 20574, - "address": "998 Darwin Springs", - "latitude": 58.3393, - "longitude": -138.3392, - "lastUpdated": "2016-08-23", - "city": "Lake Maci", + "uuid": "f3acb45c-35d9-4298-97eb-63d478afbff7", + "siteID": 19676, + "address": "475 Koch Run", + "latitude": 57.5509, + "longitude": -135.9387, + "lastUpdated": "2018-07-30", + "city": "St. George", "region": "Kootenay", - "victoriaFile": "26250-20/12179", + "victoriaFile": "26250-20/10800", "regionalFile": "N/A", "parcelIDs": [ - 979498, - 7282452, - 4395451, - 319500, - 4242567 + 548025, + 9038127, + 9333835, + 5629055, + 4736962 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2017-05-08", - "completed": "2014-08-06", - "initiated": "2022-11-11", - "ministryContact": "CRIST JAYLON", + "uuid": "4e6522b8-9c6e-4590-8ef3-d851f25a78ba", + "createdAt": "2018-07-28", + "completed": "2016-04-24", + "initiated": "2019-04-17", + "ministryContact": "VON CARA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -69148,23 +79051,32 @@ ], "notationParticipants": [ { + "uuid": "c4c4613f-8711-4e0e-aed3-609344f326a0", "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "uuid": "aafedb80-f123-4706-90e2-117cc1b81a4c", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { + "uuid": "9b104b0d-a0d0-4b19-bec9-637c1e8cf13e", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true + "role": "REQUESTED BY", + "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2014-12-14", - "completed": "2020-12-10", - "initiated": "2013-12-26", - "ministryContact": "STROSIN LIZZIE", + "uuid": "c6d166c0-081a-46cb-aef0-18faef1c9c2d", + "createdAt": "2021-11-24", + "completed": "2020-01-04", + "initiated": "2017-01-21", + "ministryContact": "GERHOLD ADOLPHUS", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -69173,28 +79085,32 @@ ], "notationParticipants": [ { + "uuid": "46110019-74b3-4958-8a5c-e42245545f3c", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false + "uuid": "99d6d186-5791-4ba3-821c-914315069256", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "uuid": "a8ef8722-dba2-409c-ba76-25f57e31f5df", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": false } ], "siteRegistry": false }, { - "createdAt": "2014-04-21", - "completed": "2022-07-29", - "initiated": "2017-12-07", - "ministryContact": "BERNHARD REINHOLD", + "uuid": "48cae2e6-460d-45db-841b-ec18ca3b8c35", + "createdAt": "2018-05-24", + "completed": "2015-12-16", + "initiated": "2017-11-25", + "ministryContact": "BARTELL TRUDIE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -69203,33 +79119,44 @@ ], "notationParticipants": [ { + "uuid": "b5aa2d93-b902-41ee-a449-a1cfee4202f2", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false + "role": "REQUESTED BY", + "siteRegistry": true }, { + "uuid": "8099adbc-02cd-4e7b-b230-be1468797cd8", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "uuid": "68a5bb8b-078c-4797-9112-3634165d57af", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": true }, { + "uuid": "53179c03-92fe-451d-b056-8391913d5562", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "a4f93225-36de-4123-9114-6c097b646767", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2018-01-28", - "completed": "2014-04-21", - "initiated": "2018-05-10", - "ministryContact": "BARTELL PHYLLIS", + "uuid": "55e9c41f-142f-421c-95f2-cfd68396863a", + "createdAt": "2014-04-29", + "completed": "2015-10-13", + "initiated": "2023-08-22", + "ministryContact": "HOEGER JARED", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -69238,84 +79165,72 @@ ], "notationParticipants": [ { + "uuid": "e3297302-e80a-4b35-a8dd-1c7ebc299072", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false }, { + "uuid": "b3e4468a-4252-4b52-a3a4-86a2e3fbdd38", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { + "uuid": "00028a49-53a4-4cfa-8826-e5b6a97e5101", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true - } - ], - "siteRegistry": false - }, - { - "createdAt": "2016-03-14", - "completed": "2015-03-23", - "initiated": "2019-04-18", - "ministryContact": "ROMAGUERA EARLINE", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "97f9cd3a-3cd0-477e-b1f7-269a2f7421e4", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false } ], "participants": [ { - "name": "AMET, DOLOR SIT", - "endDate": "2018-03-02", - "startDate": "2016-03-28", + "uuid": "e6f78888-e9ed-4c3f-947e-5ade027bc502", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2014-05-23", + "startDate": "2021-01-23", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": true }, { - "name": "AMET, DOLOR SIT", - "endDate": "2014-09-18", - "startDate": "2020-03-08", + "uuid": "1698c6a5-22b1-48b6-9067-78e2b6640dff", + "name": "IPSUM", + "endDate": "2023-05-09", + "startDate": "2021-06-25", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false + }, + { + "uuid": "4f0a2e63-3d97-4903-b755-c5770cb79830", + "name": "AMET, DOLOR SIT", + "endDate": "2022-05-21", + "startDate": "2019-02-11", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false }, { + "uuid": "c62febb4-1c82-450c-8ca1-68e4f408d80d", "name": "IPSUM", - "endDate": "2022-04-27", - "startDate": "2016-05-24", + "endDate": "2013-12-02", + "startDate": "2015-02-08", "notes": "", "roles": [ "ORGANIZATION" @@ -69325,123 +79240,120 @@ ], "suspectLandUses": [ { + "uuid": "665bc137-4a7c-4b42-b67e-bec4a0b679cb", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-04-07 (described on Site Profile dated 2017-04-07)", + "notes": "INSERTED FOR SITE PROFILE DATED 2020-10-13 (described on Site Profile dated 2020-10-13)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { + "uuid": "288be828-d6d8-4153-b320-38dddc6a253f", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-05-18 (described on Site Profile dated 2016-05-18)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" - }, - { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-04-14 (described on Site Profile dated 2015-04-14)", + "notes": "INSERTED FOR SITE PROFILE DATED 2019-03-06 (described on Site Profile dated 2019-03-06)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" - }, - { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-02-19 (described on Site Profile dated 2018-02-19)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" - }, - { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2013-12-10 (described on Site Profile dated 2013-12-10)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], "parcelDescriptions": [ { + "uuid": "a5526141-4b00-40ef-ad6c-27ff2a52f5c6", "siteRegistry": true, - "dateNoted": "2018-12-13", - "parcelID": "19749", - "crownLandUsePIN": "19378", - "crownLandFileNumber": "17391", - "landDescription": "LOT 3 OF LOT 3 BLOCK 4 DISTRICT LOT 5 PLAN 6803" + "dateNoted": "2019-03-22", + "parcelID": "19729", + "crownLandUsePIN": "20155", + "crownLandFileNumber": "18094", + "landDescription": "LOT 4 OF LOT 3 BLOCK 3 DISTRICT LOT 1 PLAN 7420" }, { + "uuid": "7aff26ea-23df-4b42-aaf3-fed2a7ef33cf", "siteRegistry": false, - "dateNoted": "2019-08-27", - "parcelID": "19097", - "crownLandUsePIN": "20136", - "crownLandFileNumber": "20851", - "landDescription": "LOT 2 OF LOT 2 BLOCK 3 DISTRICT LOT 5 PLAN 3209" + "dateNoted": "2014-01-26", + "parcelID": "18568", + "crownLandUsePIN": "16788", + "crownLandFileNumber": "15766", + "landDescription": "LOT 1 OF LOT 1 BLOCK 5 DISTRICT LOT 3 PLAN 9406" + }, + { + "uuid": "cf6f68e0-6bd1-44ca-8725-7fd220b47c36", + "siteRegistry": true, + "dateNoted": "2018-05-17", + "parcelID": "18664", + "crownLandUsePIN": "16749", + "crownLandFileNumber": "19561", + "landDescription": "LOT 5 OF LOT 4 BLOCK 4 DISTRICT LOT 4 PLAN 6869" }, { + "uuid": "fb80fd09-1798-40d6-8264-bd57515d9065", "siteRegistry": false, - "dateNoted": "2019-07-06", - "parcelID": "20435", - "crownLandUsePIN": "19569", - "crownLandFileNumber": "15871", - "landDescription": "LOT 3 OF LOT 3 BLOCK 5 DISTRICT LOT 1 PLAN 3346" + "dateNoted": "2017-08-07", + "parcelID": "17995", + "crownLandUsePIN": "20359", + "crownLandFileNumber": "19228", + "landDescription": "LOT 2 OF LOT 1 BLOCK 3 DISTRICT LOT 2 PLAN 6535" }, { + "uuid": "c45b41b2-318f-4c20-8ed9-c2037843825d", "siteRegistry": false, - "dateNoted": "2015-02-21", - "parcelID": "17093", - "crownLandUsePIN": "16883", - "crownLandFileNumber": "16289", - "landDescription": "LOT 5 OF LOT 4 BLOCK 1 DISTRICT LOT 3 PLAN 6768" + "dateNoted": "2022-07-24", + "parcelID": "16268", + "crownLandUsePIN": "20151", + "crownLandFileNumber": "20317", + "landDescription": "LOT 1 OF LOT 2 BLOCK 5 DISTRICT LOT 3 PLAN 4217" } ], "siteDisclosures": [ { - "siteRegistry": false, - "dateReceived": "2020-12-16", - "dateCompleted": "2019-06-19", - "dateEntered": "2014-06-07", - "dateRegistrar": "2017-08-19", - "dateLocalAuthorityReceived": "2015-05-18", - "summary": "Neque numquam at incidunt ex.\nTenetur quod reiciendis consectetur ab itaque nemo modi nobis laborum.\nReprehenderit reiciendis culpa quibusdam maiores iste deserunt.", - "informationUsed": "Corporis sequi debitis eos illo incidunt consequatur officiis quaerat sint.\nHic fugit ab quis voluptatum quam eos architecto.\nNemo quod ipsam dolores adipisci.\nAperiam laboriosam facilis autem quod saepe minus nulla.\nVelit voluptas aliquid ipsam harum quod corporis dicta.", - "pastOrPresentOrders": "Sit ipsum pariatur.", + "uuid": "071552ac-9ed5-44e0-ac0c-a3dba7f1ba9e", + "siteRegistry": true, + "dateReceived": "2015-11-24", + "dateCompleted": "2019-02-25", + "dateEntered": "2018-04-07", + "dateRegistrar": "2020-04-21", + "dateLocalAuthorityReceived": "2019-03-21", + "summary": "Rem tempora exercitationem eligendi numquam commodi ad.\nQuasi veniam omnis quasi mollitia earum quos quisquam ab esse.\nVeritatis temporibus cupiditate cupiditate.", + "informationUsed": "Ipsum officia cumque alias autem dolorum nihil.\nFugit cumque quae.\nNulla adipisci vel eos facere consequatur.", + "pastOrPresentOrders": "Tempora distinctio officia officia vero eum voluptatem nesciunt.\nTenetur debitis culpa deserunt laudantium.", "commercialAndIndustrialPurposes": [ { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "uuid": "9d802d7a-d762-4d4a-90f3-6f349b2aadc0", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, { + "uuid": "4f82b77f-c8d4-42ca-853c-fb8175a17efc", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true - }, - { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true - }, - { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true } ] }, { + "uuid": "2c340a78-197d-4d96-9b4b-ca66c8188283", "siteRegistry": false, - "dateReceived": "2016-03-11", - "dateCompleted": "2023-07-27", - "dateEntered": "2015-01-16", - "dateRegistrar": "2019-04-28", - "dateLocalAuthorityReceived": "2016-02-24", - "summary": "Tempora veritatis iusto odio.\nDoloremque corrupti nam minima iusto.", - "informationUsed": "Magnam magni distinctio hic ullam mollitia.\nVoluptatem repudiandae mollitia nulla.\nUllam ipsam laboriosam vero deserunt aut unde harum.\nAb omnis voluptatem iusto aperiam corporis illum laboriosam corporis.\nMinus unde maxime molestiae nihil autem.", - "pastOrPresentOrders": "Mollitia iste quam officiis doloremque earum quaerat.", + "dateReceived": "2017-03-04", + "dateCompleted": "2014-07-30", + "dateEntered": "2017-06-04", + "dateRegistrar": "2019-10-01", + "dateLocalAuthorityReceived": "2015-01-04", + "summary": "Quia blanditiis error voluptate quibusdam nihil repellendus placeat tempore.\nVoluptatem deserunt maiores tenetur quisquam.\nAutem eius deserunt architecto omnis rem nostrum minima a aliquam.", + "informationUsed": "Voluptates quia quos explicabo unde perspiciatis delectus voluptatibus nisi.\nSequi reiciendis omnis unde amet atque commodi iure.\nDelectus illo praesentium culpa temporibus.\nHic saepe placeat accusamus hic.\nError architecto vero odio vitae unde esse autem.", + "pastOrPresentOrders": "Occaecati dignissimos quo culpa doloribus eos incidunt saepe blanditiis.\nRepellendus nulla blanditiis illo voluptatibus fugit nemo.\nReprehenderit ratione repudiandae perferendis.", "commercialAndIndustrialPurposes": [ { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "uuid": "e8821b64-6551-4f0b-a73c-1314c4a23045", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true + "uuid": "7e62fa2f-0376-40dd-861c-d7353b32713c", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false }, { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "uuid": "09cd53f5-a664-42f0-8131-d66855c89db6", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false } ] @@ -69449,101 +79361,106 @@ ], "activityLog": [ { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "HANE AURELIO", - "timestamp": "2016-10-22" - }, - { + "uuid": "02855e0f-332e-4bd6-b639-ab06ad380fba", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "POUROS RENEE", - "timestamp": "2020-09-19" + "user": "LEBSACK PRINCE", + "timestamp": "2017-12-05" }, { + "uuid": "675cefb5-1383-487e-82a6-d6c56a83f72e", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "MONAHAN LESLY", - "timestamp": "2014-05-02" + "user": "KEEBLER EASTON", + "timestamp": "2021-08-04" }, { + "uuid": "879107fe-a31f-45c5-9c30-ba0bb45d2d96", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "REILLY-KULAS FAUSTO", - "timestamp": "2015-08-16" + "user": "BEIER EDUARDO", + "timestamp": "2018-06-13" }, { + "uuid": "b861ed32-32bd-48be-8eab-794298c4e885", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "DAUGHERTY JAMMIE", - "timestamp": "2019-05-13" + "user": "WEISSNAT ANGELO", + "timestamp": "2023-07-27" }, { + "uuid": "a62dc01a-e3d7-42c8-aa97-2604902a6726", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "LEBSACK HORACIO", - "timestamp": "2019-05-28" + "user": "WEHNER MAUDE", + "timestamp": "2016-05-21" }, { + "uuid": "8ddae228-5515-4eca-b4a7-9671b9a998a5", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "CONSIDINE JACKIE", - "timestamp": "2019-09-28" + "user": "NADER KEATON", + "timestamp": "2015-01-30" }, { + "uuid": "c6d51077-03a1-40e6-8346-b61d4b703a4a", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "KOCH KRISTIAN", - "timestamp": "2023-08-29" + "user": "SIMONIS VITA", + "timestamp": "2020-07-17" }, { - "siteRegistry": false, + "uuid": "70d2c362-4cfa-4c5b-a023-d84c5d5897cc", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "RATH SOPHIE", - "timestamp": "2018-04-22" + "user": "DAUGHERTY SHANNON", + "timestamp": "2020-12-08" }, { - "siteRegistry": true, + "uuid": "cf70b359-0269-47f8-bcee-798f8b30648f", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "BRADTKE KORY", - "timestamp": "2023-05-20" + "user": "CARROLL CONRAD", + "timestamp": "2022-04-11" } ], "associatedSites": [ { - "dateNoted": "2019-01-07", + "uuid": "13f9d99f-8cd7-414a-99aa-2eccf6a5478d", + "dateNoted": "2015-05-19", "notes": "", - "parcelID": "19480", - "siteID": "18817", - "siteRegistry": false + "parcelID": "16833", + "siteID": "15852", + "siteRegistry": true } ] }, { - "uuid": "85e34efd-00bd-4063-a7b6-1a54a884e61d", - "siteID": 19213, - "address": "87420 Waelchi Burgs", - "latitude": 54.9681, - "longitude": -131.1854, - "lastUpdated": "2017-04-10", - "city": "Abernathyhaven", + "uuid": "486eca83-e9a6-4bf0-9bc5-de7d21a6e564", + "siteID": 20699, + "address": "8149 Oleta Light", + "latitude": 53.0039, + "longitude": -130.0363, + "lastUpdated": "2017-03-10", + "city": "Beavercreek", "region": "Cariboo", - "victoriaFile": "26250-20/6868", + "victoriaFile": "26250-20/19678", "regionalFile": "N/A", "parcelIDs": [ - 6652509, - 1012713, - 8949017, - 4760909, - 3750064 + 9379976, + 1084805, + 8318694, + 6273562, + 2760397 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2021-06-30", - "completed": "2017-05-24", - "initiated": "2021-04-24", - "ministryContact": "CARROLL MEGHAN", + "uuid": "ccd2a10c-4835-440a-ada7-61bac08f6182", + "createdAt": "2014-07-07", + "completed": "2021-06-07", + "initiated": "2014-11-17", + "ministryContact": "PROHASKA ODIE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -69552,78 +79469,32 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { + "uuid": "24508c23-71ee-4e4c-bff5-0d50168073d3", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - } - ], - "siteRegistry": true - }, - { - "createdAt": "2022-08-13", - "completed": "2015-03-24", - "initiated": "2019-08-17", - "ministryContact": "SMITH TIA", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { + "uuid": "9872d24c-9d77-4002-b042-b1e7e0b8425d", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false }, { + "uuid": "a07d52c3-0fbc-4cdc-98d5-f743ccbef8dd", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true } ], - "siteRegistry": true - }, - { - "createdAt": "2023-06-28", - "completed": "2019-09-22", - "initiated": "2018-06-23", - "ministryContact": "GERHOLD CHRISTINA", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - } - ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2021-01-23", - "completed": "2021-03-26", - "initiated": "2015-11-27", - "ministryContact": "FARRELL ADELIA", + "uuid": "a9625a67-78f5-497b-bc7c-b5c41d46defa", + "createdAt": "2022-06-27", + "completed": "2015-11-11", + "initiated": "2019-10-16", + "ministryContact": "ROLFSON KAYA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -69632,26 +79503,25 @@ ], "notationParticipants": [ { + "uuid": "c09898d2-d177-4f88-8c0e-a8a57596f5e3", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", + "uuid": "13629c71-98a5-49e6-af2e-a01b233c9254", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { + "uuid": "1c9cebed-6679-4866-b442-9fde197c41d3", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false }, { + "uuid": "b068a4dd-4bc0-436c-815a-718d3253e3c9", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false @@ -69662,29 +79532,10 @@ ], "participants": [ { - "name": "AMET, DOLOR SIT", - "endDate": "2020-04-17", - "startDate": "2016-12-16", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2015-11-21", - "startDate": "2021-05-02", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2021-05-09", - "startDate": "2016-08-10", + "uuid": "c6d85433-9940-4e4f-accd-2ff2e58d2eee", + "name": "IPSUM", + "endDate": "2014-04-12", + "startDate": "2023-05-25", "notes": "", "roles": [ "EMPLOYEE" @@ -69692,187 +79543,224 @@ "siteRegistry": true }, { - "name": "IPSUM", - "endDate": "2020-10-26", - "startDate": "2013-10-16", + "uuid": "07ff81c0-87c6-452a-8b48-71801da179b1", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2019-12-21", + "startDate": "2015-12-18", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false }, { - "name": "IPSUM", - "endDate": "2018-11-03", - "startDate": "2022-10-11", + "uuid": "3dddd917-f3a7-4c14-9777-7ab36154af10", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2017-08-17", + "startDate": "2021-04-02", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], - "siteRegistry": true + "siteRegistry": false } ], "suspectLandUses": [ { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2023-07-18 (described on Site Profile dated 2023-07-18)", + "uuid": "5c3d688c-9a9f-4518-86af-feaeef8245a5", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2021-05-30 (described on Site Profile dated 2021-05-30)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-08-14 (described on Site Profile dated 2016-08-14)", + "uuid": "0833ffae-4c6d-4c63-b616-0293e9952b2c", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2021-09-07 (described on Site Profile dated 2021-09-07)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" - }, + } + ], + "parcelDescriptions": [ { + "uuid": "74bace09-466e-4d07-b9b3-5dcacd9e2fc3", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2023-08-01 (described on Site Profile dated 2023-08-01)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "dateNoted": "2019-02-26", + "parcelID": "17013", + "crownLandUsePIN": "16659", + "crownLandFileNumber": "16784", + "landDescription": "LOT 1 OF LOT 1 BLOCK 5 DISTRICT LOT 2 PLAN 7559" }, { + "uuid": "7c9b6f98-c9ba-450b-81a8-b6beffd3b82c", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-01-01 (described on Site Profile dated 2014-01-01)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "dateNoted": "2015-03-29", + "parcelID": "15475", + "crownLandUsePIN": "20563", + "crownLandFileNumber": "16231", + "landDescription": "LOT 5 OF LOT 3 BLOCK 1 DISTRICT LOT 4 PLAN 9426" }, { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2023-07-24 (described on Site Profile dated 2023-07-24)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" - } - ], - "parcelDescriptions": [ - { - "siteRegistry": false, - "dateNoted": "2022-11-25", - "parcelID": "16433", - "crownLandUsePIN": "19416", - "crownLandFileNumber": "18266", - "landDescription": "LOT 5 OF LOT 1 BLOCK 1 DISTRICT LOT 1 PLAN 5084" + "uuid": "5ad9a752-404e-45fe-ae15-4d146e80132c", + "siteRegistry": true, + "dateNoted": "2014-06-23", + "parcelID": "19403", + "crownLandUsePIN": "19969", + "crownLandFileNumber": "16399", + "landDescription": "LOT 5 OF LOT 3 BLOCK 4 DISTRICT LOT 5 PLAN 5668" }, { - "siteRegistry": true, - "dateNoted": "2018-03-16", - "parcelID": "17705", - "crownLandUsePIN": "17559", - "crownLandFileNumber": "18972", - "landDescription": "LOT 5 OF LOT 1 BLOCK 5 DISTRICT LOT 2 PLAN 5587" + "uuid": "57b5cf76-584e-42ff-b55c-abc51b7007d4", + "siteRegistry": false, + "dateNoted": "2014-12-25", + "parcelID": "16131", + "crownLandUsePIN": "18742", + "crownLandFileNumber": "19319", + "landDescription": "LOT 2 OF LOT 4 BLOCK 5 DISTRICT LOT 4 PLAN 8388" } ], "siteDisclosures": [ { + "uuid": "6e17bd78-73c4-450d-a205-a77a3d35931a", "siteRegistry": true, - "dateReceived": "2016-08-25", - "dateCompleted": "2017-12-13", - "dateEntered": "2022-06-12", - "dateRegistrar": "2016-01-24", - "dateLocalAuthorityReceived": "2018-12-04", - "summary": "Ratione pariatur minus voluptatem recusandae quibusdam iusto voluptatibus.\nLabore omnis ad enim adipisci neque.", - "informationUsed": "Repellat sint deserunt ea nulla reprehenderit.\nAsperiores facilis excepturi harum veritatis doloremque sapiente.\nMaiores et qui placeat nam aut enim harum libero.\nRepudiandae repellat animi molestiae.", - "pastOrPresentOrders": "Repudiandae vel quae id totam.", + "dateReceived": "2020-10-31", + "dateCompleted": "2019-08-27", + "dateEntered": "2023-02-11", + "dateRegistrar": "2019-12-18", + "dateLocalAuthorityReceived": "2022-10-09", + "summary": "Soluta nam aliquid adipisci aperiam corrupti minus.\nMolestiae quod animi excepturi.\nAut animi ex temporibus quasi porro quia ab illum doloribus.", + "informationUsed": "Voluptas voluptate dignissimos aut facere pariatur aliquid cum vel vero.\nTemporibus inventore aliquid.\nDucimus ducimus fuga.", + "pastOrPresentOrders": "Nesciunt unde quia unde.", "commercialAndIndustrialPurposes": [ { + "uuid": "c86e4d49-8b34-4192-b856-4e60ba11bbac", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "uuid": "c216d1fb-3ab8-4b39-9906-c5a454ac075c", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "uuid": "f3c2b8cc-8466-4476-a4d5-3f90db249494", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, { + "uuid": "92d78e5c-d4f5-4b8f-aea2-9f3a3c918d1d", "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false } ] } ], "activityLog": [ { + "uuid": "342d9c5f-7f9b-44a7-8579-c6ad81ec7cc2", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "LYNCH MAXINE", - "timestamp": "2015-07-25" - }, - { - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "CROOKS-BALISTRERI MOSHE", - "timestamp": "2022-02-21" - }, - { - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "WEIMANN ZOLA", - "timestamp": "2018-10-13" + "user": "BARTON WENDY", + "timestamp": "2016-04-23" }, { + "uuid": "519dfbda-202d-4203-9349-f8e519e33cef", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "MRAZ GEO", - "timestamp": "2014-03-16" + "user": "DURGAN KAYLIN", + "timestamp": "2015-09-28" }, { - "siteRegistry": true, + "uuid": "21adcb31-6a13-44c3-94d0-4ce6364ce231", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "AUFDERHAR SONIA", - "timestamp": "2023-06-19" + "user": "HINTZ ULICES", + "timestamp": "2021-05-09" }, { + "uuid": "213f217d-5242-4112-abf0-34581ac10406", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "REILLY DERON", - "timestamp": "2021-06-04" + "user": "POLLICH MELLIE", + "timestamp": "2023-01-18" }, { + "uuid": "529b5af5-4edd-4a14-9009-88165a2f070e", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "O'KEEFE-MILLER VELVA", - "timestamp": "2023-08-03" + "user": "VONRUEDEN ISABELLE", + "timestamp": "2017-03-24" }, { + "uuid": "c73a7088-2301-4086-91e8-2c3cb6d25588", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "VON ROEL", - "timestamp": "2016-03-13" + "user": "TOWNE CYDNEY", + "timestamp": "2015-01-05" }, { - "siteRegistry": false, + "uuid": "b46efa9f-73a1-4b7b-9cbc-f7d6b8bdbea0", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "NIKOLAUS KENYATTA", - "timestamp": "2020-01-21" + "user": "ONDRICKA COLUMBUS", + "timestamp": "2015-03-21" } ], "associatedSites": [ { - "dateNoted": "2021-03-15", + "uuid": "df395679-cbfd-4175-8e43-71f5f94ac827", + "dateNoted": "2022-02-06", "notes": "", - "parcelID": "17304", - "siteID": "17017", + "parcelID": "18638", + "siteID": "19254", "siteRegistry": true + }, + { + "uuid": "30cc33fe-4508-43b4-a856-bc5a1694c357", + "dateNoted": "2019-08-26", + "notes": "", + "parcelID": "20224", + "siteID": "16208", + "siteRegistry": false + }, + { + "uuid": "ddb3de88-0e61-4e6c-9f23-bad44a5368eb", + "dateNoted": "2022-02-24", + "notes": "", + "parcelID": "18079", + "siteID": "19716", + "siteRegistry": false } ] }, { - "uuid": "f8f2e86b-3bb2-4061-8213-15317b378103", - "siteID": 19593, - "address": "504 Marilie Pike", - "latitude": 54.8145, - "longitude": -126.2731, - "lastUpdated": "2019-03-08", - "city": "Gulfport", - "region": "Mainland/Southwest", - "victoriaFile": "26250-20/18829", + "uuid": "2d2a58c3-56f6-46da-9ba8-3ef3792f947e", + "siteID": 20768, + "address": "7727 Patrick Green", + "latitude": 58.4774, + "longitude": -131.8585, + "lastUpdated": "2015-06-29", + "city": "Jefferson City", + "region": " North Coast", + "victoriaFile": "26250-20/4550", "regionalFile": "N/A", "parcelIDs": [ - 4224730, - 9875037, - 8058808, - 9699668, - 5100856 + 2576982, + 1777751, + 3013968, + 2948992, + 2151656 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2020-04-15", - "completed": "2017-02-10", - "initiated": "2014-02-06", - "ministryContact": "SIMONIS DONNELL", + "uuid": "2b62b8fe-2c4a-4443-a1e2-8849c8899b09", + "createdAt": "2019-07-10", + "completed": "2023-01-25", + "initiated": "2019-10-20", + "ministryContact": "HERZOG PRESTON", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -69881,28 +79769,26 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", + "uuid": "d3e0dee1-87a2-4f26-80c6-204555d9a6b8", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { + "uuid": "90ea0a97-0ce5-4156-9a8e-4abe5a23b115", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true + "role": "REQUESTED BY", + "siteRegistry": false } ], "siteRegistry": false }, { - "createdAt": "2014-05-24", - "completed": "2017-06-01", - "initiated": "2018-07-05", - "ministryContact": "LANGWORTH REINHOLD", + "uuid": "07e76e97-741c-4341-8abf-662011609f37", + "createdAt": "2017-10-28", + "completed": "2016-09-13", + "initiated": "2014-01-04", + "ministryContact": "RATKE MAE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -69911,94 +79797,67 @@ ], "notationParticipants": [ { + "uuid": "16fa25a9-4256-47ef-b650-b62e12d13f1f", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true }, { + "uuid": "aac4ef54-c24a-4ba8-b3ab-d7aac824aed6", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false - } - ], - "siteRegistry": true - }, - { - "createdAt": "2014-04-02", - "completed": "2018-07-14", - "initiated": "2015-08-07", - "ministryContact": "NADER KENYATTA", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", "siteRegistry": true }, { + "uuid": "5ae3c9c6-26dd-4ce4-8bcd-92c23ea03d80", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - } - ], - "siteRegistry": true - }, - { - "createdAt": "2017-10-26", - "completed": "2022-08-29", - "initiated": "2022-05-10", - "ministryContact": "RUTHERFORD DAMIEN", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { + "uuid": "c89fc472-6ba4-4ff7-89d5-bf428781dd71", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true }, { + "uuid": "da85e87b-4059-45f0-9a15-845591821a44", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false } ], "participants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2020-02-04", - "startDate": "2020-06-26", + "uuid": "6acc12c8-9a84-4b78-8f9d-6ecaa3aa3b12", + "name": "AMET, DOLOR SIT", + "endDate": "2021-12-19", + "startDate": "2022-02-17", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "uuid": "f74478de-cdd1-4adc-8003-12c88dce6c92", + "name": "AMET, DOLOR SIT", + "endDate": "2013-11-23", + "startDate": "2015-10-10", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2021-03-16", - "startDate": "2016-02-17", + "uuid": "293ca611-efd1-4f1e-8991-341d2c2bc18e", + "name": "IPSUM", + "endDate": "2015-05-22", + "startDate": "2020-04-06", "notes": "", "roles": [ "EMPLOYEE" @@ -70006,166 +79865,245 @@ "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2017-12-16", - "startDate": "2019-10-21", + "uuid": "6d830883-d673-47b5-99e8-0fba5c1bbb46", + "name": "IPSUM", + "endDate": "2016-11-18", + "startDate": "2020-05-18", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true + }, + { + "uuid": "78907806-cc56-4cc7-b757-aa45f94907cd", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2017-11-21", + "startDate": "2017-01-21", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true } ], "suspectLandUses": [ { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-10-09 (described on Site Profile dated 2014-10-09)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" - }, - { + "uuid": "138e45f9-5211-4189-8d19-5ec695ec3f7e", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-07-04 (described on Site Profile dated 2022-07-04)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "notes": "INSERTED FOR SITE PROFILE DATED 2017-12-27 (described on Site Profile dated 2017-12-27)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { + "uuid": "90913b8e-e4d7-42f8-9750-c03e202bee2c", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-03-16 (described on Site Profile dated 2014-03-16)", + "notes": "INSERTED FOR SITE PROFILE DATED 2016-01-27 (described on Site Profile dated 2016-01-27)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { + "uuid": "7c2f5b00-0cb3-4a87-9b0e-934be83c873e", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-05-16 (described on Site Profile dated 2021-05-16)", + "notes": "INSERTED FOR SITE PROFILE DATED 2020-09-18 (described on Site Profile dated 2020-09-18)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], "parcelDescriptions": [ { - "siteRegistry": false, - "dateNoted": "2014-12-24", - "parcelID": "16572", - "crownLandUsePIN": "20688", - "crownLandFileNumber": "15306", - "landDescription": "LOT 1 OF LOT 1 BLOCK 1 DISTRICT LOT 1 PLAN 3630" + "uuid": "f416200a-97e7-4678-9f23-a519af1cbac9", + "siteRegistry": true, + "dateNoted": "2018-11-30", + "parcelID": "17141", + "crownLandUsePIN": "18781", + "crownLandFileNumber": "18080", + "landDescription": "LOT 4 OF LOT 5 BLOCK 3 DISTRICT LOT 1 PLAN 5887" }, { + "uuid": "f1542592-e20d-4ce4-86b6-12a7e94ac32b", "siteRegistry": false, - "dateNoted": "2015-02-06", - "parcelID": "18985", - "crownLandUsePIN": "16226", - "crownLandFileNumber": "18936", - "landDescription": "LOT 5 OF LOT 2 BLOCK 4 DISTRICT LOT 5 PLAN 7012" + "dateNoted": "2013-12-17", + "parcelID": "15456", + "crownLandUsePIN": "16398", + "crownLandFileNumber": "18069", + "landDescription": "LOT 5 OF LOT 1 BLOCK 2 DISTRICT LOT 5 PLAN 3325" }, { - "siteRegistry": true, - "dateNoted": "2021-04-08", - "parcelID": "19195", - "crownLandUsePIN": "15925", - "crownLandFileNumber": "19695", - "landDescription": "LOT 4 OF LOT 2 BLOCK 5 DISTRICT LOT 3 PLAN 6018" + "uuid": "d8382f7f-82a1-4ab0-98d7-041f60b09044", + "siteRegistry": false, + "dateNoted": "2014-01-20", + "parcelID": "15866", + "crownLandUsePIN": "19244", + "crownLandFileNumber": "18913", + "landDescription": "LOT 5 OF LOT 4 BLOCK 5 DISTRICT LOT 3 PLAN 8469" } ], "siteDisclosures": [ { - "siteRegistry": false, - "dateReceived": "2016-07-21", - "dateCompleted": "2019-02-10", - "dateEntered": "2022-08-07", - "dateRegistrar": "2020-06-24", - "dateLocalAuthorityReceived": "2017-01-19", - "summary": "Corrupti eius natus expedita.\nEos odit aliquid officia.\nPlaceat perferendis adipisci voluptates.", - "informationUsed": "Molestiae inventore numquam facere incidunt quas architecto architecto aspernatur reprehenderit.\nCum error temporibus omnis delectus architecto eos rerum quod ad.\nExplicabo natus animi perspiciatis tempore atque.\nTemporibus voluptates illo tempora consequuntur voluptatum veniam.\nDistinctio delectus architecto quidem aut maiores excepturi accusantium iusto voluptate.", - "pastOrPresentOrders": "Aperiam distinctio aliquid commodi porro illo asperiores et pariatur magnam.\nReprehenderit quis fugiat non.", + "uuid": "27f7953e-fb9c-4481-a8ea-4a1a6897713f", + "siteRegistry": true, + "dateReceived": "2015-06-26", + "dateCompleted": "2017-07-18", + "dateEntered": "2017-03-15", + "dateRegistrar": "2015-04-30", + "dateLocalAuthorityReceived": "2021-10-07", + "summary": "Ex reprehenderit ullam dicta natus modi laudantium fugit.", + "informationUsed": "Repellat nisi porro excepturi.\nEx assumenda exercitationem quis nesciunt illo ipsam eos.\nMinus soluta molestias perferendis.", + "pastOrPresentOrders": "Mollitia odio a dolorem libero eos ex.\nAperiam laboriosam numquam consectetur.", "commercialAndIndustrialPurposes": [ { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "uuid": "4fb1d644-290a-47d3-8be6-252c594e352f", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { + "uuid": "641c21ea-9fc4-455f-b675-eafd9e6f7271", "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "uuid": "e6d5268f-5d70-4c05-addd-d30b473b020b", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true + } + ] + }, + { + "uuid": "f19c0916-72a1-4c6e-8a09-bd501b51660f", + "siteRegistry": true, + "dateReceived": "2017-02-17", + "dateCompleted": "2017-03-31", + "dateEntered": "2023-05-10", + "dateRegistrar": "2015-05-29", + "dateLocalAuthorityReceived": "2015-05-22", + "summary": "Explicabo asperiores consequuntur recusandae.\nSint modi non eveniet labore.", + "informationUsed": "Nobis dignissimos corporis.\nPossimus non odit expedita qui magni atque id aut.\nSoluta quae atque ab corporis mollitia.\nMollitia autem est ullam.", + "pastOrPresentOrders": "Assumenda corporis perferendis exercitationem error numquam repellendus.", + "commercialAndIndustrialPurposes": [ + { + "uuid": "f6f65340-d6a3-41c6-aa53-057d1a7c360f", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false }, { + "uuid": "2fa1146f-7585-41a8-84c9-62110b753fa8", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false + "uuid": "3b50402c-9ded-4984-ba50-33abeeaafd1c", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true } ] } ], "activityLog": [ { + "uuid": "e771a491-619f-4ea5-9e83-6a412c5f1580", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "STANTON LINDSAY", - "timestamp": "2022-11-22" + "user": "QUIGLEY JAMESON", + "timestamp": "2021-08-30" }, { + "uuid": "d9bd8c89-0acd-4b3e-8900-a93080cc7296", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "SCHUPPE JANET", + "timestamp": "2014-03-28" + }, + { + "uuid": "ea0f3536-1f3e-4de0-8840-a6812a53ee6f", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "HAND ELODY", - "timestamp": "2019-01-02" + "user": "BERNIER ROWENA", + "timestamp": "2019-07-06" }, { + "uuid": "d4ae71d7-df3d-48be-b614-017bc0dab94c", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "SPORER REYES", - "timestamp": "2020-09-01" + "user": "ROMAGUERA ALDEN", + "timestamp": "2016-10-15" }, { + "uuid": "482c13ed-0b5a-4731-b65b-270355d57fd6", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "GLOVER MILFORD", - "timestamp": "2016-02-09" + "user": "TORPHY NOE", + "timestamp": "2023-03-21" + }, + { + "uuid": "f506c6bd-09a3-456c-84bc-789a0adc8095", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "KONOPELSKI JEANIE", + "timestamp": "2021-05-13" + }, + { + "uuid": "82e9cfbc-b71a-495a-9603-c306d60e92e9", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "FEIL BETTY", + "timestamp": "2021-08-19" }, { + "uuid": "93ec55ae-c6b6-4c3a-8bac-cc2a4d90cee4", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "ERNSER THURMAN", - "timestamp": "2017-08-04" + "user": "MEDHURST DARON", + "timestamp": "2021-03-19" + }, + { + "uuid": "b2f12823-8335-45f9-8176-7ce049065876", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "BROWN NIKKO", + "timestamp": "2017-09-28" } ], "associatedSites": [ { - "dateNoted": "2016-10-21", + "uuid": "5ba84bdf-1381-490a-9a2f-952006aaff86", + "dateNoted": "2015-10-24", "notes": "", - "parcelID": "19219", - "siteID": "15994", + "parcelID": "19507", + "siteID": "20024", "siteRegistry": false } ] }, { - "uuid": "6f6c20a2-d589-4fbe-b3f5-ae2b91648af8", - "siteID": 20549, - "address": "252 Kreiger Hollow", - "latitude": 51.7475, - "longitude": -128.0368, - "lastUpdated": "2022-11-05", - "city": "Hoppechester", - "region": "Kootenay", - "victoriaFile": "26250-20/19520", + "uuid": "543498d2-eb15-4ec2-b793-83baa46c7f28", + "siteID": 17765, + "address": "266 Lorena Plains", + "latitude": 58.3562, + "longitude": -132.5642, + "lastUpdated": "2023-08-31", + "city": "North Leolastad", + "region": "Thompson-Okanagan", + "victoriaFile": "26250-20/12986", "regionalFile": "N/A", "parcelIDs": [ - 8355526, - 6855730, - 5620512, - 6639228, - 1305678 + 9279587, + 1782061, + 6046822, + 9241140, + 8723875 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2018-10-09", - "completed": "2021-03-22", - "initiated": "2014-08-21", - "ministryContact": "WHITE ALFREDA", + "uuid": "4dbb9d60-e4b4-4794-9697-7d8eb3b99e83", + "createdAt": "2019-06-22", + "completed": "2023-09-20", + "initiated": "2023-09-29", + "ministryContact": "RUECKER EMIE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -70174,33 +80112,44 @@ ], "notationParticipants": [ { + "uuid": "b8362348-9e95-4198-864d-71e59d7ce96d", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false + "role": "SUBMITTED BY", + "siteRegistry": true }, { + "uuid": "c056ca68-8717-4afe-954e-0fe501f18d74", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true }, { + "uuid": "b043005a-298a-4f0a-bd38-961fbcc8b89a", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false }, { + "uuid": "6d7913c1-1795-4542-b457-c57de08bcf09", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "uuid": "3a3dd175-4108-4351-948c-b8507849a252", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false } ], "siteRegistry": true }, { - "createdAt": "2022-07-22", - "completed": "2020-12-19", - "initiated": "2017-12-28", - "ministryContact": "VANDERVORT KAMRON", + "uuid": "40e38610-187d-40ed-b34d-4b54213e3046", + "createdAt": "2016-09-22", + "completed": "2020-02-07", + "initiated": "2018-06-30", + "ministryContact": "GUSIKOWSKI CHRISTIAN", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -70209,38 +80158,44 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true + "uuid": "5a7a0afc-4628-4d60-83c7-ebd93dab99dc", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false }, { + "uuid": "88a94f54-f649-4432-aa66-55c9361b9c5f", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true }, { + "uuid": "6e7cbe36-b0a0-4816-b89e-ff3539d92cee", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", + "uuid": "6def8210-a8be-4cb2-9388-bf22aa28eb35", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "45c6aadc-b25f-4eb9-99bd-8b6cc3c68408", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2017-04-09", - "completed": "2018-03-10", - "initiated": "2019-10-16", - "ministryContact": "HARRIS OSWALD", + "uuid": "ac0a44ab-29f8-44dd-969f-5e5a451cf7db", + "createdAt": "2021-07-25", + "completed": "2021-10-22", + "initiated": "2013-12-20", + "ministryContact": "ROOB KENNA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -70249,26 +80204,13 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "75700053-4bf1-4c01-b552-07e725a54c8e", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { + "uuid": "91ffcb17-5dd8-40db-becd-9a48699ffe66", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false @@ -70279,87 +80221,144 @@ ], "participants": [ { + "uuid": "4685dcc7-6da1-4544-8a1d-3ac7ce6bc7af", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2020-07-24", + "startDate": "2020-10-11", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "uuid": "24c35c45-3001-45f2-883c-c56a7cdcd67c", "name": "IPSUM", - "endDate": "2015-03-26", - "startDate": "2018-12-16", + "endDate": "2023-09-13", + "startDate": "2018-02-20", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": false + "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2018-01-28", - "startDate": "2018-07-27", + "uuid": "e1607c5b-9081-435d-817d-998333042ece", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2017-06-28", + "startDate": "2023-03-23", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true } ], "suspectLandUses": [ { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-03-06 (described on Site Profile dated 2016-03-06)", + "uuid": "30becad0-a69b-46f6-a476-34f24d12fb73", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2016-03-07 (described on Site Profile dated 2016-03-07)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "uuid": "6d4d6eba-d6dd-456e-8c93-d74870d7f74e", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2014-02-08 (described on Site Profile dated 2014-02-08)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { + "uuid": "d1f0e98d-5935-4249-bfd3-63f73bcfb980", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-02-15 (described on Site Profile dated 2014-02-15)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "notes": "INSERTED FOR SITE PROFILE DATED 2023-01-05 (described on Site Profile dated 2023-01-05)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], "parcelDescriptions": [ { + "uuid": "4ce0bcad-bcf3-4fd1-b87e-7659e0daf846", "siteRegistry": true, - "dateNoted": "2014-10-23", - "parcelID": "15735", - "crownLandUsePIN": "17197", - "crownLandFileNumber": "17760", - "landDescription": "LOT 3 OF LOT 2 BLOCK 2 DISTRICT LOT 1 PLAN 4064" + "dateNoted": "2015-07-03", + "parcelID": "19194", + "crownLandUsePIN": "17946", + "crownLandFileNumber": "19719", + "landDescription": "LOT 3 OF LOT 4 BLOCK 2 DISTRICT LOT 4 PLAN 9475" }, { + "uuid": "c4020c96-1970-4895-a932-5b4b130a9395", + "siteRegistry": false, + "dateNoted": "2013-11-06", + "parcelID": "16210", + "crownLandUsePIN": "20962", + "crownLandFileNumber": "18736", + "landDescription": "LOT 1 OF LOT 4 BLOCK 3 DISTRICT LOT 2 PLAN 8553" + }, + { + "uuid": "05ba701e-a82c-40e4-956b-4a5ec76529ee", "siteRegistry": true, - "dateNoted": "2016-08-17", - "parcelID": "18736", - "crownLandUsePIN": "20983", - "crownLandFileNumber": "16358", - "landDescription": "LOT 4 OF LOT 4 BLOCK 5 DISTRICT LOT 2 PLAN 9038" + "dateNoted": "2021-10-18", + "parcelID": "18436", + "crownLandUsePIN": "18891", + "crownLandFileNumber": "17429", + "landDescription": "LOT 3 OF LOT 1 BLOCK 4 DISTRICT LOT 5 PLAN 4603" }, { - "siteRegistry": false, - "dateNoted": "2015-12-06", - "parcelID": "16495", - "crownLandUsePIN": "16931", - "crownLandFileNumber": "16735", - "landDescription": "LOT 5 OF LOT 4 BLOCK 5 DISTRICT LOT 4 PLAN 5338" + "uuid": "5559c387-d69d-4bed-8782-9219167ec041", + "siteRegistry": true, + "dateNoted": "2016-02-02", + "parcelID": "17995", + "crownLandUsePIN": "16323", + "crownLandFileNumber": "18842", + "landDescription": "LOT 1 OF LOT 3 BLOCK 1 DISTRICT LOT 2 PLAN 8811" } ], "siteDisclosures": [ { - "siteRegistry": false, - "dateReceived": "2016-12-26", - "dateCompleted": "2016-02-04", - "dateEntered": "2023-09-03", - "dateRegistrar": "2014-04-25", - "dateLocalAuthorityReceived": "2020-04-18", - "summary": "Temporibus deserunt porro est.", - "informationUsed": "Fuga quos id dolores ducimus molestias assumenda.\nSaepe temporibus magnam dolor.\nAspernatur eum iusto deleniti illum fuga facere nihil veritatis ea.", - "pastOrPresentOrders": "Dicta quis provident sunt nulla vel magnam voluptatem necessitatibus.", + "uuid": "9d47b1ad-350c-4d71-bbf6-226545abd8a0", + "siteRegistry": true, + "dateReceived": "2020-03-07", + "dateCompleted": "2023-08-07", + "dateEntered": "2020-12-25", + "dateRegistrar": "2019-03-04", + "dateLocalAuthorityReceived": "2021-12-20", + "summary": "Culpa illo quidem reprehenderit officia ipsam ex impedit dignissimos.", + "informationUsed": "Ipsa ex pariatur molestias architecto voluptatibus iusto quasi dolore exercitationem.\nVoluptatum eius culpa ad ad aspernatur.\nEius pariatur maiores dolorem commodi dolorem optio consectetur.", + "pastOrPresentOrders": "Nobis voluptatem vitae eveniet impedit sapiente itaque asperiores earum quae.", "commercialAndIndustrialPurposes": [ { - "scheduleReference": "F2*", + "uuid": "f4eda2f4-ed8e-4d24-b039-863eb6548357", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false + "siteRegistry": true }, { + "uuid": "d6c80ed8-dc6f-48e5-b901-f313b5037a30", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + } + ] + }, + { + "uuid": "f60cea7f-bb21-40e7-b106-3809aa5972ce", + "siteRegistry": true, + "dateReceived": "2018-11-29", + "dateCompleted": "2019-09-06", + "dateEntered": "2016-02-10", + "dateRegistrar": "2021-04-08", + "dateLocalAuthorityReceived": "2021-08-21", + "summary": "Reprehenderit explicabo atque adipisci blanditiis delectus porro.\nNesciunt facere harum quo reiciendis optio sequi.", + "informationUsed": "Repudiandae accusantium dolore.\nOdit blanditiis saepe deleniti placeat repellat modi.\nFugiat officiis blanditiis.", + "pastOrPresentOrders": "Soluta pariatur labore animi ut laboriosam cum repellendus quod iusto.\nModi dolor recusandae.\nAccusamus perspiciatis blanditiis laboriosam.", + "commercialAndIndustrialPurposes": [ + { + "uuid": "8b845509-6a5d-4a9d-a191-246a2aec5daa", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { + "uuid": "02e8dc88-782b-46e1-a6a0-23c0af16bf7b", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true @@ -70369,85 +80368,100 @@ ], "activityLog": [ { + "uuid": "81657cab-c5fe-4e26-ac01-c5765e9c6b5a", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "THIEL MISTY", + "timestamp": "2019-08-11" + }, + { + "uuid": "f3bf0bf1-1e55-478a-8a32-87c785a165b2", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "BEDNAR CHET", - "timestamp": "2015-12-15" + "user": "HAUCK SHAWN", + "timestamp": "2020-10-28" + }, + { + "uuid": "b58dc73a-340a-4851-8588-c2047caac8fd", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "WHITE KATARINA", + "timestamp": "2021-03-16" }, { + "uuid": "e24fc912-ff74-4d4e-9938-7001f46f74d9", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "GUSIKOWSKI CLEMENTINA", - "timestamp": "2014-02-23" + "user": "WARD SHANIE", + "timestamp": "2015-12-16" }, { + "uuid": "a54810f1-dbee-4201-ad6e-79c5a758d6d8", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "KUNZE JEREMIE", - "timestamp": "2015-03-30" + "user": "RIPPIN LELAND", + "timestamp": "2020-09-17" }, { + "uuid": "bc79e1ce-5f78-4f07-9a9f-e7bcd8524652", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "CASPER RICKY", - "timestamp": "2017-12-07" + "user": "KRAJCIK REYMUNDO", + "timestamp": "2021-04-08" }, { + "uuid": "d7f142d0-915d-427a-8fef-5ab955cebf0c", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "STROSIN GARETT", - "timestamp": "2014-02-23" + "user": "GRADY KANE", + "timestamp": "2022-10-09" } ], "associatedSites": [ { - "dateNoted": "2017-08-14", - "notes": "", - "parcelID": "18934", - "siteID": "17950", - "siteRegistry": false - }, - { - "dateNoted": "2015-10-10", + "uuid": "d76f93b7-6e89-44f9-bd5a-51ebcd678619", + "dateNoted": "2023-09-15", "notes": "", - "parcelID": "15826", - "siteID": "15482", + "parcelID": "19230", + "siteID": "19572", "siteRegistry": false }, { - "dateNoted": "2017-11-17", + "uuid": "970fb945-934b-4f4c-9083-ffba9f152bf6", + "dateNoted": "2020-09-22", "notes": "", - "parcelID": "15288", - "siteID": "15660", + "parcelID": "17003", + "siteID": "15525", "siteRegistry": true } ] }, { - "uuid": "5f688b6b-b10c-483c-9d3b-d348f8339c61", - "siteID": 17362, - "address": "771 Keebler Track", - "latitude": 58.1794, - "longitude": -132.4778, - "lastUpdated": "2021-06-13", - "city": "Plantation", - "region": " North Coast", - "victoriaFile": "26250-20/13442", + "uuid": "09dde270-d7ed-4ea6-a331-8bd027197924", + "siteID": 17261, + "address": "2355 Ebert Field", + "latitude": 50.5154, + "longitude": -133.6945, + "lastUpdated": "2022-11-04", + "city": "Port Candelario", + "region": "Thompson-Okanagan", + "victoriaFile": "26250-20/13998", "regionalFile": "N/A", "parcelIDs": [ - 4452623, - 8357309, - 6342341, - 7752423, - 2273716 + 6362558, + 821338, + 4013226, + 4051380, + 4967840 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2014-04-14", - "completed": "2023-01-16", - "initiated": "2023-04-16", - "ministryContact": "SWANIAWSKI GLORIA", + "uuid": "d50c8b1c-ac0d-4052-8e29-d4cf37c0c97c", + "createdAt": "2015-12-10", + "completed": "2015-08-19", + "initiated": "2017-06-19", + "ministryContact": "GERHOLD ARON", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -70456,28 +80470,44 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", + "uuid": "c568e67f-0f3b-4093-8aab-9aa6a837b8b1", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "5726328b-a232-4ad3-87e8-6a82f4cad815", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "uuid": "796b42ba-7e9d-4eb3-a72a-cb0804d88f50", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "uuid": "78eef311-34ae-487e-92a5-e8cc5babdc28", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", "siteRegistry": true }, { + "uuid": "dd5517aa-e341-48e2-852c-f4c86c827715", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2019-12-19", - "completed": "2023-04-16", - "initiated": "2016-08-30", - "ministryContact": "GIBSON CYRUS", + "uuid": "5cea1993-81e9-4629-be02-5ccfadb18d10", + "createdAt": "2016-08-27", + "completed": "2022-03-23", + "initiated": "2019-01-22", + "ministryContact": "ARMSTRONG EDDIE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -70486,28 +80516,78 @@ ], "notationParticipants": [ { + "uuid": "9995794e-2654-4dd7-ad7b-c30aed2c9a5b", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "uuid": "1cd4576a-c9cf-4b36-9c71-0d96e0af922d", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false }, { + "uuid": "224209e2-c165-4ee9-aac6-95d7a451653a", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false }, { + "uuid": "6886afae-d733-4fcf-8dcb-e6fbe7fe1c61", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "db0c7ab3-87cd-4c96-98c9-c4e63cebf2d9", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "uuid": "dbe4ecd7-f5d1-4fcf-8e51-5493f4c8f85a", + "createdAt": "2014-10-09", + "completed": "2021-02-16", + "initiated": "2017-06-20", + "ministryContact": "BERNIER ELEONORE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "uuid": "59aff8f6-4ec4-413e-9e0f-7cc011a144cb", "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "uuid": "fd7be1eb-9307-452a-b62f-d8d2bf3c4435", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true + }, + { + "uuid": "641c4919-592f-45a0-ac2d-f3e500f3ae21", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false } ], "siteRegistry": false }, { - "createdAt": "2013-12-03", - "completed": "2019-07-26", - "initiated": "2019-09-28", - "ministryContact": "DECKOW PEARLINE", + "uuid": "422a7746-1afb-4b0c-ab41-d9a9c0af48f6", + "createdAt": "2019-06-24", + "completed": "2022-02-15", + "initiated": "2014-10-13", + "ministryContact": "HERMAN JESUS", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -70516,33 +80596,44 @@ ], "notationParticipants": [ { + "uuid": "e1ec02d9-77a8-4e30-94e4-76dceb4e2b93", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true }, { + "uuid": "0bee9c74-ec66-435d-bb0d-7f70131e9bbe", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true + "role": "REQUESTED BY", + "siteRegistry": false }, { + "uuid": "7f48a0a8-aed9-4101-846e-65b0dda7e891", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { + "uuid": "bcc463e2-3fe6-494a-ab47-68c91d0c0632", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true + }, + { + "uuid": "acfe799f-745b-4fc8-8fca-959c0e2dff88", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2020-07-18", - "completed": "2016-02-25", - "initiated": "2018-01-06", - "ministryContact": "CARROLL HAYLEE", + "uuid": "6c186138-ae84-424f-9343-03449d9b55ae", + "createdAt": "2018-04-12", + "completed": "2016-12-02", + "initiated": "2021-11-23", + "ministryContact": "JAKUBOWSKI CONNOR", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -70551,163 +80642,165 @@ ], "notationParticipants": [ { + "uuid": "65e23b4e-33ac-44b8-86ed-090521404f2e", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true + "role": "SUBMITTED BY", + "siteRegistry": false }, { + "uuid": "79e8d495-d644-4b8c-8c3a-b26ddbac2752", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", + "uuid": "b42ec90b-2c1c-421a-8b96-45efb2779346", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "bded73fa-37c0-492c-b780-c7e724710716", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false } ], "participants": [ { + "uuid": "3cabb933-a475-4f16-bf23-18cd78997ffd", "name": "SHELL CANADA PRODUCTS", - "endDate": "2021-06-08", - "startDate": "2022-11-26", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": false - }, - { - "name": "AMET, DOLOR SIT", - "endDate": "2018-03-02", - "startDate": "2018-04-23", + "endDate": "2021-05-04", + "startDate": "2014-04-16", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": false }, { + "uuid": "db24290d-5779-4d5b-898c-0c1ee6f745db", "name": "AMET, DOLOR SIT", - "endDate": "2022-05-23", - "startDate": "2014-12-14", + "endDate": "2017-10-19", + "startDate": "2021-08-08", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true }, { + "uuid": "f3bdf0f5-c1b6-4b24-9431-64b3129beef9", "name": "AMET, DOLOR SIT", - "endDate": "2014-04-16", - "startDate": "2018-11-21", + "endDate": "2017-04-24", + "startDate": "2022-04-24", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true } ], "suspectLandUses": [ { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-01-06 (described on Site Profile dated 2018-01-06)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" - }, - { + "uuid": "17c7f48b-c3f5-41ae-99ea-b8a73a316fc6", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2020-05-28 (described on Site Profile dated 2020-05-28)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "notes": "INSERTED FOR SITE PROFILE DATED 2022-06-03 (described on Site Profile dated 2022-06-03)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { + "uuid": "56c80402-73d6-4235-8b55-eec4eb48fdd1", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-08-04 (described on Site Profile dated 2014-08-04)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "notes": "INSERTED FOR SITE PROFILE DATED 2018-08-13 (described on Site Profile dated 2018-08-13)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], "parcelDescriptions": [ { + "uuid": "eee2d839-becd-47d1-ac30-2c9b9ef5e9eb", + "siteRegistry": true, + "dateNoted": "2018-08-14", + "parcelID": "16602", + "crownLandUsePIN": "17280", + "crownLandFileNumber": "19396", + "landDescription": "LOT 5 OF LOT 3 BLOCK 4 DISTRICT LOT 1 PLAN 9621" + }, + { + "uuid": "c6986578-b1d3-447a-9ebb-0490ff367c62", "siteRegistry": false, - "dateNoted": "2022-10-15", - "parcelID": "17483", - "crownLandUsePIN": "15403", - "crownLandFileNumber": "16906", - "landDescription": "LOT 4 OF LOT 3 BLOCK 4 DISTRICT LOT 1 PLAN 5753" + "dateNoted": "2017-05-07", + "parcelID": "20222", + "crownLandUsePIN": "17485", + "crownLandFileNumber": "16200", + "landDescription": "LOT 4 OF LOT 4 BLOCK 5 DISTRICT LOT 2 PLAN 9426" }, { - "siteRegistry": true, - "dateNoted": "2022-10-26", - "parcelID": "20770", - "crownLandUsePIN": "20939", - "crownLandFileNumber": "15955", - "landDescription": "LOT 1 OF LOT 2 BLOCK 3 DISTRICT LOT 4 PLAN 5207" + "uuid": "0ca580e5-3a9d-46ba-af47-6692771704e8", + "siteRegistry": false, + "dateNoted": "2016-06-17", + "parcelID": "20076", + "crownLandUsePIN": "19295", + "crownLandFileNumber": "17520", + "landDescription": "LOT 5 OF LOT 2 BLOCK 1 DISTRICT LOT 2 PLAN 9238" } ], "siteDisclosures": [ { + "uuid": "fb737cea-b149-40fd-9f26-112b59164fe1", "siteRegistry": false, - "dateReceived": "2017-11-26", - "dateCompleted": "2017-11-02", - "dateEntered": "2023-05-13", - "dateRegistrar": "2016-04-25", - "dateLocalAuthorityReceived": "2022-07-08", - "summary": "Veniam sint reprehenderit quo at ullam quam.\nDebitis suscipit quo occaecati quasi.", - "informationUsed": "Ipsum dolorem animi enim libero illo.\nNatus sapiente autem quibusdam rem.\nSed reprehenderit amet ullam corrupti inventore placeat.", - "pastOrPresentOrders": "Tempora harum hic deleniti rerum blanditiis.", + "dateReceived": "2019-08-31", + "dateCompleted": "2022-09-27", + "dateEntered": "2020-04-06", + "dateRegistrar": "2015-04-17", + "dateLocalAuthorityReceived": "2015-08-19", + "summary": "Nesciunt et animi impedit eligendi fugiat facere voluptate.", + "informationUsed": "Veritatis assumenda dolorem aliquam ipsa vero facilis ipsum voluptatibus.\nLibero ex tempore officia repellendus eligendi qui similique.\nPariatur culpa commodi praesentium consequuntur debitis suscipit mollitia tempore ipsam.\nQuidem illum distinctio magni iste voluptate autem facere ipsum.", + "pastOrPresentOrders": "Quam explicabo quis dicta assumenda cupiditate aliquam laboriosam animi.\nAtque ipsum ea ea impedit tenetur excepturi.\nMolestiae vitae odit.", "commercialAndIndustrialPurposes": [ { + "uuid": "9b5fd9f8-625e-4131-ab5e-be8685b82a94", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { + "uuid": "9288bb96-18ca-413d-90a7-677af747cb1a", "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false } ] }, { + "uuid": "612026f6-0663-442b-aa44-317dea53e099", "siteRegistry": false, - "dateReceived": "2019-12-12", - "dateCompleted": "2020-03-20", - "dateEntered": "2018-01-13", - "dateRegistrar": "2016-04-16", - "dateLocalAuthorityReceived": "2014-12-12", - "summary": "Doloribus nisi magnam.\nPraesentium ratione ex quia quasi.\nAtque libero ratione.", - "informationUsed": "Fuga eveniet sint.\nAdipisci repellendus error sit voluptate consequuntur quisquam ipsum.\nDolore soluta dolores.", - "pastOrPresentOrders": "Doloribus possimus magnam nisi maxime animi incidunt.\nQuod atque eius sint consequatur vitae enim dignissimos.", + "dateReceived": "2017-01-24", + "dateCompleted": "2014-10-07", + "dateEntered": "2023-09-28", + "dateRegistrar": "2014-11-16", + "dateLocalAuthorityReceived": "2014-12-22", + "summary": "Fugiat officiis maxime tenetur ipsum suscipit harum.", + "informationUsed": "Porro debitis quo totam mollitia dolor repellendus nostrum.\nSapiente aspernatur omnis quasi fugit maiores.\nLaboriosam iusto maiores accusamus ipsam.\nAd neque possimus.", + "pastOrPresentOrders": "A debitis cupiditate earum inventore distinctio fuga hic.\nQuaerat sit voluptates necessitatibus delectus perferendis.\nDolor suscipit recusandae.", "commercialAndIndustrialPurposes": [ { - "scheduleReference": "F1*", + "uuid": "47938c80-9845-4e4a-a6cd-f2bbf7ef1da2", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true + "siteRegistry": false }, { + "uuid": "d18b1ec5-98ed-40a9-8d2b-5b47127949c9", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false }, { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true - }, - { - "scheduleReference": "F2*", + "uuid": "0a7a252f-76ce-40a9-a7db-7c8d5dfa03b2", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true } @@ -70716,96 +80809,121 @@ ], "activityLog": [ { - "siteRegistry": true, + "uuid": "d15d8359-c60a-425c-b575-d90104863775", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "BALISTRERI-ULLRICH KAYA", - "timestamp": "2020-09-13" + "user": "GIBSON MAYE", + "timestamp": "2014-03-04" }, { + "uuid": "eccd5b94-eafd-4da5-93e4-65659983205d", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "JACOBS EMILE", - "timestamp": "2013-11-01" + "user": "BROWN MARCUS", + "timestamp": "2014-02-28" }, { - "siteRegistry": true, + "uuid": "cf1b602e-3947-4d0c-b204-cdd79683cf5f", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "TROMP KATLYNN", - "timestamp": "2017-03-27" + "user": "GERLACH LISANDRO", + "timestamp": "2017-05-08" }, { + "uuid": "12ce73d4-5b3c-43d5-bc55-7cdc33b6b060", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "HARRIS KEENAN", - "timestamp": "2014-12-19" + "user": "RATH TREVION", + "timestamp": "2018-05-25" }, { + "uuid": "db2c2058-5abd-4280-9a18-d0f925de9f19", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "RAU ABIGAYLE", - "timestamp": "2022-02-11" + "user": "EMARD NEWTON", + "timestamp": "2019-12-19" }, { - "siteRegistry": false, + "uuid": "da695a10-4525-4420-91c7-3fd573962249", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "STREICH ELLA", - "timestamp": "2021-10-30" + "user": "HERMAN KALEY", + "timestamp": "2014-01-29" }, { - "siteRegistry": false, + "uuid": "7e810fae-783a-4ec0-b47e-d04dca6c58f6", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "JAKUBOWSKI BUSTER", - "timestamp": "2015-09-04" + "user": "PROSACCO JEREL", + "timestamp": "2018-11-30" }, { + "uuid": "bc6766e2-43e2-4384-ab9c-dd9241f68298", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "DAUGHERTY DALE", - "timestamp": "2016-04-18" + "user": "FEIL NEIL", + "timestamp": "2023-10-06" + }, + { + "uuid": "c7cd8c1e-a813-4463-94f6-cfae912d322b", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "STARK MERLIN", + "timestamp": "2018-06-17" + }, + { + "uuid": "e160e74c-7fcf-4300-978d-f7ac075ca302", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "WELCH EFRAIN", + "timestamp": "2019-04-05" } ], "associatedSites": [ { - "dateNoted": "2019-02-16", + "uuid": "c091fe8b-dc28-4737-9f2a-cdd6890eab59", + "dateNoted": "2014-07-26", "notes": "", - "parcelID": "16979", - "siteID": "19240", - "siteRegistry": true + "parcelID": "17801", + "siteID": "16415", + "siteRegistry": false }, { - "dateNoted": "2014-09-17", + "uuid": "192ee7fb-1e8a-4bcd-a2b5-93b9ca477dd5", + "dateNoted": "2021-09-01", "notes": "", - "parcelID": "19593", - "siteID": "16150", + "parcelID": "15578", + "siteID": "19218", "siteRegistry": true } ] }, { - "uuid": "d10117b5-ad52-4fa7-b6d0-a02deafd94e7", - "siteID": 19650, - "address": "244 Rosalia Throughway", - "latitude": 57.0733, - "longitude": -127.4053, - "lastUpdated": "2021-07-10", - "city": "South Deonte", - "region": " North Coast", - "victoriaFile": "26250-20/19656", + "uuid": "8be22f59-645f-4bc3-a261-726f20befca8", + "siteID": 16419, + "address": "6915 Nitzsche Courts", + "latitude": 53.4286, + "longitude": -126.3331, + "lastUpdated": "2017-10-21", + "city": "Moshefort", + "region": "Vancouver Island/Coast", + "victoriaFile": "26250-20/10982", "regionalFile": "N/A", "parcelIDs": [ - 9511555, - 9557224, - 6242874, - 3669204, - 7796509 + 2944571, + 5204150, + 7611140, + 6826439, + 4888172 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2020-11-04", - "completed": "2019-06-06", - "initiated": "2023-09-04", - "ministryContact": "ZEMLAK ISSAC", + "uuid": "1d6eecfc-5c14-49db-ae8b-3d77521acb0a", + "createdAt": "2017-06-27", + "completed": "2016-06-16", + "initiated": "2014-05-03", + "ministryContact": "MCCLURE-CARROLL RYLEIGH", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -70814,58 +80932,32 @@ ], "notationParticipants": [ { + "uuid": "f9b3d8aa-f1aa-4fdc-a06c-9110eb77b07b", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", "siteRegistry": false }, { + "uuid": "7a0da616-880a-471c-bc7e-c972d2f1a091", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - } - ], - "siteRegistry": true - }, - { - "createdAt": "2014-03-21", - "completed": "2014-03-03", - "initiated": "2015-03-09", - "ministryContact": "MARVIN KEIRA", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", + "uuid": "bdeec181-4392-4696-88ef-62c08b72a2bb", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true } ], "siteRegistry": false }, { - "createdAt": "2019-04-29", - "completed": "2018-02-28", - "initiated": "2018-06-13", - "ministryContact": "CARTER JUANITA", + "uuid": "ecd8a0f0-b46b-4e3f-ba03-bae60eaa87c1", + "createdAt": "2022-03-05", + "completed": "2021-12-20", + "initiated": "2023-06-15", + "ministryContact": "FAHEY LUTHER", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -70874,23 +80966,26 @@ ], "notationParticipants": [ { + "uuid": "b3721d7d-9b43-464e-b7c2-1f1b6f30480d", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "uuid": "530e268d-12d8-4ed0-980f-25c3325ac07a", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2019-11-10", - "completed": "2014-03-04", - "initiated": "2021-12-29", - "ministryContact": "KESSLER ARVID", + "uuid": "48e7356a-e256-4bc8-8798-bc2b8cb4d309", + "createdAt": "2019-12-31", + "completed": "2018-08-17", + "initiated": "2021-12-31", + "ministryContact": "PROSACCO KAREN", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -70899,64 +80994,39 @@ ], "notationParticipants": [ { + "uuid": "ef366e45-402e-4c5a-ac63-327e00a509a0", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true }, { + "uuid": "401f3bb2-0982-4a47-a1e7-a4acc00926dd", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - } - ], - "siteRegistry": true - }, - { - "createdAt": "2020-10-20", - "completed": "2022-01-11", - "initiated": "2021-12-15", - "ministryContact": "MOEN ADRIENNE", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { + "uuid": "41f43b82-abf0-4dc1-9271-9c5763bd7073", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", + "uuid": "fd53f32c-9e23-4432-bbb6-e0bdca777d34", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false } ], "participants": [ { - "name": "IPSUM", - "endDate": "2023-03-11", - "startDate": "2014-12-11", + "uuid": "f0325492-6c47-4b97-ab38-409ad2c7ef3a", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2017-11-19", + "startDate": "2020-08-09", "notes": "", "roles": [ "ORGANIZATION" @@ -70964,106 +81034,117 @@ "siteRegistry": true }, { + "uuid": "1325e418-1a9a-4da0-a11c-0adbdb1f0ebd", "name": "AMET, DOLOR SIT", - "endDate": "2021-11-22", - "startDate": "2019-08-30", + "endDate": "2022-12-14", + "startDate": "2021-10-07", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": true } ], "suspectLandUses": [ { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-09-02 (described on Site Profile dated 2016-09-02)", + "uuid": "d4a506e3-0cac-405c-9854-de5347c74138", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2022-02-02 (described on Site Profile dated 2022-02-02)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-07-22 (described on Site Profile dated 2016-07-22)", + "uuid": "8b2251ac-3ce7-45bf-9b7d-ff9de00820a2", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2017-01-24 (described on Site Profile dated 2017-01-24)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "uuid": "28db85a2-a191-403f-86b8-08ef285c29e3", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2018-01-01 (described on Site Profile dated 2018-01-01)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], "parcelDescriptions": [ { - "siteRegistry": true, - "dateNoted": "2018-04-22", - "parcelID": "19392", - "crownLandUsePIN": "15541", - "crownLandFileNumber": "20824", - "landDescription": "LOT 5 OF LOT 2 BLOCK 1 DISTRICT LOT 1 PLAN 3462" - }, - { - "siteRegistry": true, - "dateNoted": "2023-02-27", - "parcelID": "17115", - "crownLandUsePIN": "15418", - "crownLandFileNumber": "17119", - "landDescription": "LOT 3 OF LOT 5 BLOCK 1 DISTRICT LOT 5 PLAN 6659" + "uuid": "3afcea5f-e515-4677-a111-66e0f152d321", + "siteRegistry": false, + "dateNoted": "2020-12-18", + "parcelID": "16648", + "crownLandUsePIN": "19799", + "crownLandFileNumber": "19020", + "landDescription": "LOT 2 OF LOT 5 BLOCK 5 DISTRICT LOT 2 PLAN 4227" }, - { - "siteRegistry": true, - "dateNoted": "2023-04-18", - "parcelID": "18562", - "crownLandUsePIN": "16936", - "crownLandFileNumber": "19377", - "landDescription": "LOT 3 OF LOT 3 BLOCK 1 DISTRICT LOT 4 PLAN 8296" + { + "uuid": "14c6283d-fa85-44e1-9fc0-6255be8a5af0", + "siteRegistry": false, + "dateNoted": "2015-11-06", + "parcelID": "20946", + "crownLandUsePIN": "16039", + "crownLandFileNumber": "16019", + "landDescription": "LOT 2 OF LOT 2 BLOCK 3 DISTRICT LOT 3 PLAN 6923" } ], "siteDisclosures": [ { - "siteRegistry": true, - "dateReceived": "2021-10-19", - "dateCompleted": "2016-06-11", - "dateEntered": "2014-07-21", - "dateRegistrar": "2016-12-14", - "dateLocalAuthorityReceived": "2015-11-19", - "summary": "At facilis ab voluptatibus.\nBlanditiis a nesciunt at pariatur laudantium.", - "informationUsed": "Qui repellendus eum.\nAlias ab magnam perferendis blanditiis at iusto omnis quae aliquam.\nId id provident.", - "pastOrPresentOrders": "Minus natus occaecati velit maxime sed veniam.", + "uuid": "94cd9842-9f02-406f-ae1c-803b92ad6612", + "siteRegistry": false, + "dateReceived": "2019-02-03", + "dateCompleted": "2015-01-09", + "dateEntered": "2016-06-08", + "dateRegistrar": "2014-04-20", + "dateLocalAuthorityReceived": "2017-11-22", + "summary": "Quisquam adipisci dignissimos eaque hic.\nImpedit nemo quidem ex.", + "informationUsed": "Voluptatum iusto sapiente ad repellat excepturi hic odit magni.\nNihil quo voluptatem inventore consequatur magni molestiae quidem dolores.\nRepellat doloribus quibusdam esse porro soluta molestias itaque.", + "pastOrPresentOrders": "Possimus magnam fugit rerum deserunt inventore quos rerum.\nQuia fuga sunt exercitationem atque.\nEarum nulla dicta.", "commercialAndIndustrialPurposes": [ { - "scheduleReference": "F2*", + "uuid": "41ab9cb2-6dec-4d6c-b0ee-ec5406383555", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, { - "scheduleReference": "F1*", + "uuid": "8c31f3e2-6cec-4460-a2e4-7b64f91ffea4", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true } ] }, { + "uuid": "93e25247-d164-4aac-b71c-345ba15f94de", "siteRegistry": true, - "dateReceived": "2014-08-04", - "dateCompleted": "2020-07-06", - "dateEntered": "2014-06-07", - "dateRegistrar": "2020-09-12", - "dateLocalAuthorityReceived": "2020-10-08", - "summary": "Minima odit sapiente et.\nIure eum quos commodi mollitia tempore dolores quam totam.\nProvident velit quidem quaerat.", - "informationUsed": "Reprehenderit esse ab voluptatibus autem repudiandae voluptate nostrum similique eveniet.\nEnim provident laborum.\nCumque debitis expedita accusamus modi ullam iusto excepturi.", - "pastOrPresentOrders": "Doloremque accusantium fugit.", + "dateReceived": "2018-05-12", + "dateCompleted": "2015-09-22", + "dateEntered": "2023-04-13", + "dateRegistrar": "2016-03-04", + "dateLocalAuthorityReceived": "2015-02-13", + "summary": "Vitae rerum recusandae esse at placeat culpa temporibus deleniti sed.\nCorporis culpa recusandae temporibus ab.", + "informationUsed": "Aut qui cum ab atque maxime repellat.\nQuod aspernatur aliquid provident laboriosam quis voluptates a tempore.\nLaboriosam similique reprehenderit laudantium natus quo debitis nemo consectetur.\nSaepe vitae dolore architecto molestiae placeat molestiae veritatis.\nNatus occaecati mollitia optio voluptatibus recusandae asperiores quod autem.", + "pastOrPresentOrders": "Dolorum adipisci explicabo nesciunt quia totam eum recusandae sequi.\nError beatae reiciendis dignissimos veritatis ratione.\nNon odit vel nobis recusandae saepe repellat.", "commercialAndIndustrialPurposes": [ { + "uuid": "e4bc5335-abc6-49d6-a90c-fde8380de412", "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { - "scheduleReference": "F1*", + "uuid": "3f004b49-c30f-4d1d-9cc5-7f629a7a1e9d", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, { + "uuid": "ca6dcad7-d477-4861-a9ad-16b60f579eb8", "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false }, { - "scheduleReference": "F2*", + "uuid": "9251026a-7410-47b3-8368-a156070a275a", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false } @@ -71072,71 +81153,106 @@ ], "activityLog": [ { + "uuid": "cac2d210-5fc2-419c-959b-036f5ede5cc9", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "O'KEEFE CLAUDE", + "timestamp": "2020-12-05" + }, + { + "uuid": "c8a28478-4108-4f32-88ea-94880bddf1e2", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "STIEDEMANN TIFFANY", - "timestamp": "2014-12-30" + "user": "SCHMELER ALDA", + "timestamp": "2020-03-06" }, { + "uuid": "4e1c6f3e-a756-45d1-ac2f-02b60e72883f", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "WILDERMAN JONATHAN", - "timestamp": "2015-03-18" + "user": "FRITSCH LOLA", + "timestamp": "2021-12-01" + }, + { + "uuid": "a2ec099d-843e-42b5-b8e0-e7a45d520b2d", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "YOST DARIEN", + "timestamp": "2014-12-03" }, { + "uuid": "19d27f74-1d00-4836-ad47-dd6516a2b8dc", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "GUTMANN BRADLY", - "timestamp": "2017-04-22" + "user": "WITTING CONNIE", + "timestamp": "2016-04-20" }, { + "uuid": "b357cd5e-eec7-473f-a19f-194a616cbcea", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "ZULAUF JUANITA", - "timestamp": "2022-01-04" + "user": "HAMMES AVA", + "timestamp": "2015-08-16" + }, + { + "uuid": "1a080d41-463f-4d48-ad29-8d24f4fba0dc", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "PREDOVIC GEORGE", + "timestamp": "2022-03-04" + }, + { + "uuid": "e1f21557-ccc5-43e1-ab77-a10a1aa96517", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "TREUTEL KENYATTA", + "timestamp": "2016-01-30" }, { + "uuid": "c69023f9-62ad-4fb9-acd5-8278858983b7", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "CUMMINGS CHEYANNE", - "timestamp": "2015-05-20" + "user": "CONNELLY FRED", + "timestamp": "2021-03-07" } ], "associatedSites": [ { - "dateNoted": "2018-12-30", + "uuid": "3bcfeac2-31d9-4754-9375-3ab118ce8bc1", + "dateNoted": "2020-07-08", "notes": "", - "parcelID": "15417", - "siteID": "16640", + "parcelID": "17231", + "siteID": "19927", "siteRegistry": true } ] }, { - "uuid": "9a3ba138-ca5d-4e30-ad1f-774d4f37084e", - "siteID": 15781, - "address": "27479 Homenick Street", - "latitude": 52.8857, - "longitude": -125.8552, - "lastUpdated": "2015-11-02", - "city": "Rathview", - "region": "Kootenay", - "victoriaFile": "26250-20/15391", + "uuid": "da2c922a-a765-4aa8-9362-31fd6bf25e37", + "siteID": 20778, + "address": "8427 Ledner Mews", + "latitude": 57.683, + "longitude": -123.4356, + "lastUpdated": "2017-09-25", + "city": "Taunton", + "region": "Vancouver Island/Coast", + "victoriaFile": "26250-20/1006", "regionalFile": "N/A", "parcelIDs": [ - 8445802, - 4479330, - 503192, - 7908176, - 2971724 + 4337355, + 241891, + 1136709, + 9366289, + 7703390 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2020-03-11", - "completed": "2021-02-19", - "initiated": "2016-03-30", - "ministryContact": "WEISSNAT JOHAN", + "uuid": "5a869a6a-5cfd-4730-bf4c-8ba2b3608b2f", + "createdAt": "2018-12-19", + "completed": "2020-04-24", + "initiated": "2015-03-06", + "ministryContact": "HOWE EUGENIA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -71145,53 +81261,38 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", + "uuid": "6e1c7b71-3ab6-44bd-8991-2686d512fc3f", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "b18a77ca-de01-4293-b8aa-0e6448e47031", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - } - ], - "siteRegistry": false - }, - { - "createdAt": "2014-01-08", - "completed": "2018-02-27", - "initiated": "2022-08-25", - "ministryContact": "O'CONNER JASON", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "uuid": "e65d50db-bdad-4287-a71e-566242db9296", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": false }, { + "uuid": "4969e231-7b72-4d9d-8b09-9ced3c05bceb", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2015-06-12", - "completed": "2014-08-27", - "initiated": "2018-02-25", - "ministryContact": "HEIDENREICH CLAUDIA", + "uuid": "c218a841-8091-4a3b-a68d-ef47446d50fc", + "createdAt": "2022-03-05", + "completed": "2017-10-17", + "initiated": "2015-05-14", + "ministryContact": "BRAKUS MICHAELA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -71200,24 +81301,33 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "dd048748-cc50-4bd0-979e-5f00281fe9e5", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true }, { + "uuid": "7ef96f00-b5dc-4aa5-a32f-f32cc2bc0a78", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true + }, + { + "uuid": "3defb09e-dcdf-477c-b977-71cde0b2c70c", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true } ], "participants": [ { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2019-09-28", - "startDate": "2019-04-10", + "uuid": "a010e431-cd4b-42af-9b6b-7151297e070f", + "name": "IPSUM", + "endDate": "2017-05-20", + "startDate": "2014-07-02", "notes": "", "roles": [ "EMPLOYEE" @@ -71225,19 +81335,21 @@ "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2017-03-22", - "startDate": "2021-03-24", + "uuid": "2aa5db8e-c347-46bd-941d-0dfe1e91bf66", + "name": "IPSUM", + "endDate": "2023-08-03", + "startDate": "2018-08-10", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": true + "siteRegistry": false }, { - "name": "IPSUM", - "endDate": "2014-06-07", - "startDate": "2020-02-01", + "uuid": "acfd1472-33eb-40ae-8388-e4309ad0e1df", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2017-02-22", + "startDate": "2017-09-22", "notes": "", "roles": [ "ORGANIZATION" @@ -71245,201 +81357,221 @@ "siteRegistry": true }, { - "name": "AMET, DOLOR SIT", - "endDate": "2022-06-28", - "startDate": "2022-11-27", + "uuid": "eb1077d3-f59c-4bc1-972d-1fbafe4f6564", + "name": "IPSUM", + "endDate": "2016-12-01", + "startDate": "2014-06-14", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": false + "siteRegistry": true } ], "suspectLandUses": [ { + "uuid": "399db5ba-1d89-4859-a962-3e5624f42472", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-08-11 (described on Site Profile dated 2021-08-11)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" - }, - { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2020-03-31 (described on Site Profile dated 2020-03-31)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "notes": "INSERTED FOR SITE PROFILE DATED 2020-05-06 (described on Site Profile dated 2020-05-06)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { + "uuid": "c531fc75-c916-43ad-9e37-91808ecab059", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-04-12 (described on Site Profile dated 2017-04-12)", + "notes": "INSERTED FOR SITE PROFILE DATED 2018-04-23 (described on Site Profile dated 2018-04-23)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2023-02-17 (described on Site Profile dated 2023-02-17)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "uuid": "cff57cd4-9788-43c4-a806-2eb2615a8ff4", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2022-08-23 (described on Site Profile dated 2022-08-23)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-08-15 (described on Site Profile dated 2016-08-15)", + "uuid": "5e1b2c62-a57f-43d8-a595-96da5f1a3c1e", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2023-08-31 (described on Site Profile dated 2023-08-31)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], "parcelDescriptions": [ { + "uuid": "fe9fa45b-732a-4aea-a2db-71fdc77d6ef5", "siteRegistry": true, - "dateNoted": "2022-05-10", - "parcelID": "16615", - "crownLandUsePIN": "17576", - "crownLandFileNumber": "18755", - "landDescription": "LOT 1 OF LOT 2 BLOCK 1 DISTRICT LOT 3 PLAN 8989" - }, - { - "siteRegistry": true, - "dateNoted": "2017-01-20", - "parcelID": "20982", - "crownLandUsePIN": "20675", - "crownLandFileNumber": "17303", - "landDescription": "LOT 4 OF LOT 5 BLOCK 2 DISTRICT LOT 1 PLAN 5653" - }, - { - "siteRegistry": false, - "dateNoted": "2021-10-16", - "parcelID": "17083", - "crownLandUsePIN": "20185", - "crownLandFileNumber": "16116", - "landDescription": "LOT 2 OF LOT 3 BLOCK 5 DISTRICT LOT 1 PLAN 4903" + "dateNoted": "2014-06-11", + "parcelID": "16652", + "crownLandUsePIN": "20963", + "crownLandFileNumber": "16622", + "landDescription": "LOT 4 OF LOT 3 BLOCK 4 DISTRICT LOT 2 PLAN 7334" }, { + "uuid": "468fb833-bb13-49d3-bf7f-d6aadfcef3cd", "siteRegistry": false, - "dateNoted": "2021-12-10", - "parcelID": "16331", - "crownLandUsePIN": "19350", - "crownLandFileNumber": "15388", - "landDescription": "LOT 3 OF LOT 2 BLOCK 1 DISTRICT LOT 3 PLAN 9615" + "dateNoted": "2016-06-16", + "parcelID": "19521", + "crownLandUsePIN": "17783", + "crownLandFileNumber": "15584", + "landDescription": "LOT 4 OF LOT 3 BLOCK 4 DISTRICT LOT 4 PLAN 7868" }, { - "siteRegistry": false, - "dateNoted": "2017-01-01", - "parcelID": "17585", - "crownLandUsePIN": "17291", - "crownLandFileNumber": "20906", - "landDescription": "LOT 5 OF LOT 2 BLOCK 5 DISTRICT LOT 2 PLAN 7307" + "uuid": "ce37d36d-906c-49a1-abf0-fc8796f58ec6", + "siteRegistry": true, + "dateNoted": "2020-08-13", + "parcelID": "20482", + "crownLandUsePIN": "17197", + "crownLandFileNumber": "15379", + "landDescription": "LOT 5 OF LOT 4 BLOCK 5 DISTRICT LOT 3 PLAN 6344" } ], "siteDisclosures": [ { - "siteRegistry": false, - "dateReceived": "2020-10-27", - "dateCompleted": "2015-05-09", - "dateEntered": "2021-05-19", - "dateRegistrar": "2014-04-12", - "dateLocalAuthorityReceived": "2014-12-02", - "summary": "Fugiat laboriosam amet dolore laboriosam occaecati error quae ipsam.", - "informationUsed": "Necessitatibus esse natus animi nostrum.\nCumque maiores facilis.\nNostrum tempore qui dolor beatae voluptate.\nIn reiciendis mollitia ipsa consequuntur vero exercitationem error non.", - "pastOrPresentOrders": "Est hic iure veniam optio numquam nesciunt molestiae quia ipsa.\nIllo atque in laborum voluptatem impedit.", + "uuid": "b8e65d4e-bafa-4fbc-a5b0-b655483be7fc", + "siteRegistry": true, + "dateReceived": "2023-02-01", + "dateCompleted": "2013-12-03", + "dateEntered": "2020-03-01", + "dateRegistrar": "2022-10-20", + "dateLocalAuthorityReceived": "2016-01-24", + "summary": "Modi reiciendis minima magni recusandae nihil quaerat voluptatum dolore.", + "informationUsed": "Qui tempora praesentium fugit aperiam adipisci et.\nExpedita voluptate delectus.\nDelectus eveniet ut dolor sunt neque.\nCumque ipsum blanditiis quam.", + "pastOrPresentOrders": "Architecto reprehenderit hic.\nEius tempore consequuntur quasi adipisci quibusdam nam ea.", "commercialAndIndustrialPurposes": [ { + "uuid": "ac9b6213-9055-4555-86b8-0d1948696619", "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { - "scheduleReference": "F2*", + "uuid": "73a756b8-a303-48ae-94fa-83c7b031ab4c", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false + "siteRegistry": true + }, + { + "uuid": "00821d45-11f1-41c4-bed4-628684eb012c", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true }, { + "uuid": "08da8928-307b-48de-87b6-63e48535540c", "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true } ] } ], "activityLog": [ { + "uuid": "fa80efbd-26d0-4668-9c9d-e2715eefecc5", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "BEATTY FELIX", - "timestamp": "2013-10-25" + "user": "WYMAN BERTHA", + "timestamp": "2015-12-14" }, { + "uuid": "6b2dcdaa-18f2-4305-a847-addbe52b99f8", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "PRICE REILLY", + "timestamp": "2020-11-14" + }, + { + "uuid": "dabbbc2c-8b0d-427b-853c-df3b7a49b9a2", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "HAYES FAY", - "timestamp": "2021-02-18" + "user": "ROWE LARON", + "timestamp": "2021-04-14" }, { + "uuid": "2b4407bf-faf2-42c8-9dea-02681df7fd66", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "BERGNAUM LESLIE", - "timestamp": "2019-11-25" + "user": "JACOBSON RHETT", + "timestamp": "2021-06-01" }, { + "uuid": "f733047d-2939-4050-8740-041e08a5ff0e", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "BRAKUS MAY", - "timestamp": "2014-02-04" + "user": "OLSON DINA", + "timestamp": "2023-05-23" }, { - "siteRegistry": false, + "uuid": "57be0b8c-37ce-47f9-bcf4-3455992b3b4d", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "KSHLERIN MACEY", - "timestamp": "2019-01-27" + "user": "WIZA PALMA", + "timestamp": "2015-10-29" + }, + { + "uuid": "c6bdf063-cae2-46cf-ac67-48db893c1d0f", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "WILLMS CASIMIR", + "timestamp": "2017-01-20" + }, + { + "uuid": "815cba90-6234-4bc4-8c36-e9c9a120b92c", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "KREIGER JILLIAN", + "timestamp": "2017-08-22" }, { + "uuid": "456bc416-1165-4026-acd7-d2ed3e801d7d", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "RITCHIE PETER", - "timestamp": "2013-12-11" + "user": "MARKS CLAUDIA", + "timestamp": "2019-09-04" }, { + "uuid": "3077944e-9c11-4f50-b414-fc691c41d1ed", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "KULAS PETER", - "timestamp": "2017-05-11" + "user": "MCCULLOUGH JEREMIE", + "timestamp": "2014-06-26" } ], "associatedSites": [ { - "dateNoted": "2015-08-07", - "notes": "", - "parcelID": "16143", - "siteID": "18510", - "siteRegistry": false - }, - { - "dateNoted": "2013-11-29", + "uuid": "d8b3ff48-d2d2-457f-8eb4-3240992e4a7c", + "dateNoted": "2023-01-06", "notes": "", - "parcelID": "20274", - "siteID": "16941", + "parcelID": "18376", + "siteID": "15766", "siteRegistry": false } ] }, { - "uuid": "c03aec54-93f3-406c-a8dd-ab4740a0dc94", - "siteID": 16778, - "address": "38854 Kshlerin Station", - "latitude": 53.4046, - "longitude": -126.4357, - "lastUpdated": "2020-03-13", - "city": "Great Falls", - "region": "Vancouver Island/Coast", - "victoriaFile": "26250-20/17313", + "uuid": "329b101d-e2f9-4b12-be22-6ba95a2c0d22", + "siteID": 18630, + "address": "1302 Bartell Valleys", + "latitude": 49.5579, + "longitude": -119.4232, + "lastUpdated": "2016-01-30", + "city": "Wernerfurt", + "region": "Cariboo", + "victoriaFile": "26250-20/17907", "regionalFile": "N/A", "parcelIDs": [ - 9989450, - 8934088, - 2673490, - 5112064, - 5172468 + 9026613, + 5340553, + 4855011, + 3232143, + 5315555 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2017-09-03", - "completed": "2015-10-04", - "initiated": "2023-08-16", - "ministryContact": "MOEN MARCO", + "uuid": "eebb61c8-0904-48d0-a4c4-4dbd4cce3333", + "createdAt": "2020-10-11", + "completed": "2018-03-24", + "initiated": "2017-08-27", + "ministryContact": "LEDNER PAYTON", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -71448,38 +81580,44 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "292b6792-34cb-47b9-84f0-c0e03e040ecd", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { + "uuid": "e147da86-3c63-4a0f-bca9-999f6643aefc", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "uuid": "3bf40d9f-1d76-416d-85db-0dcbf3e09574", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": true }, { + "uuid": "024fb722-9276-470a-8c0a-62f74eef528d", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false }, { + "uuid": "123c6e16-218f-47a2-aa5c-06eec2ba02e5", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2023-09-17", - "completed": "2022-11-07", - "initiated": "2017-01-07", - "ministryContact": "BAILEY ADRIENNE", + "uuid": "61b57eed-c5d3-4415-a104-d5e5bdeac980", + "createdAt": "2023-04-02", + "completed": "2014-07-28", + "initiated": "2017-08-31", + "ministryContact": "FRITSCH ZION", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -71488,38 +81626,26 @@ ], "notationParticipants": [ { + "uuid": "6c53930f-b073-4a55-bd78-a4d47f3917b4", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "uuid": "43acec91-08fd-431b-aef8-baf4fbc75370", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false } ], "siteRegistry": false }, { - "createdAt": "2021-02-10", - "completed": "2014-07-23", - "initiated": "2014-08-16", - "ministryContact": "FISHER TRYCIA", + "uuid": "ac8feaf7-e246-482a-a5eb-41bc9e003861", + "createdAt": "2021-10-15", + "completed": "2014-08-03", + "initiated": "2020-11-27", + "ministryContact": "ADAMS NICO", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -71528,58 +81654,38 @@ ], "notationParticipants": [ { + "uuid": "20580aa7-5972-42ba-9ba9-256239a19b98", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - } - ], - "siteRegistry": false - }, - { - "createdAt": "2017-05-07", - "completed": "2018-05-31", - "initiated": "2015-06-28", - "ministryContact": "WILDERMAN SADIE", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "2eadf114-a6d2-4ee3-a7e4-b2d97e02dcc9", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false }, { + "uuid": "1b14dd0d-916b-443a-81af-f6c28ff45489", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true }, { + "uuid": "fc7ba173-08b9-4f45-957f-76eb6b6fb3b2", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2021-12-11", - "completed": "2019-05-09", - "initiated": "2020-03-15", - "ministryContact": "KOCH BUDDY", + "uuid": "c7bf1a5b-2f8e-4420-a1d1-4a11fbdd22ed", + "createdAt": "2022-03-06", + "completed": "2022-02-01", + "initiated": "2017-07-13", + "ministryContact": "GRIMES LINNEA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -71588,19 +81694,28 @@ ], "notationParticipants": [ { + "uuid": "59d83cf8-7c76-46d9-ad4b-79bf1b2f0c1a", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { + "uuid": "58e0b69b-53ec-4ec4-9434-55c348d0c37e", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { + "uuid": "0c6e8099-e3a8-47cd-a23f-f6d4b62fbc2e", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false + }, + { + "uuid": "d6505793-2daf-4767-9499-b3f0fc160947", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false } ], "siteRegistry": false @@ -71608,19 +81723,21 @@ ], "participants": [ { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2017-04-24", - "startDate": "2020-09-22", + "uuid": "bc59935d-3b39-4aba-99b5-a14427946a6f", + "name": "AMET, DOLOR SIT", + "endDate": "2016-04-19", + "startDate": "2020-03-19", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": true }, { + "uuid": "a35ef885-cd7f-4eeb-9f1a-49aa2adad026", "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2015-01-16", - "startDate": "2019-11-04", + "endDate": "2017-09-30", + "startDate": "2019-08-31", "notes": "", "roles": [ "EMPLOYEE" @@ -71628,361 +81745,156 @@ "siteRegistry": false }, { + "uuid": "8f4dbf4f-d178-4daf-b81e-6bafb59a88b5", "name": "IPSUM", - "endDate": "2022-08-27", - "startDate": "2015-05-26", + "endDate": "2017-04-29", + "startDate": "2022-11-01", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "uuid": "c1407d16-b39c-4c17-a9ff-49601f2cbba9", + "name": "IPSUM", + "endDate": "2022-10-26", + "startDate": "2015-10-17", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "uuid": "cf9ac901-283a-4f8b-996a-9349a7ff168a", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2023-07-26", + "startDate": "2014-08-30", + "notes": "", + "roles": [ + "ORGANIZATION" ], "siteRegistry": true } ], "suspectLandUses": [ { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2020-03-13 (described on Site Profile dated 2020-03-13)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "uuid": "11c1e0b7-2ff0-4cbc-9235-20125a07ee13", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2019-06-08 (described on Site Profile dated 2019-06-08)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { + "uuid": "5128fb40-ab85-44e4-8a1c-f2ed97b8f3a8", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2023-09-02 (described on Site Profile dated 2023-09-02)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "notes": "INSERTED FOR SITE PROFILE DATED 2020-06-07 (described on Site Profile dated 2020-06-07)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-04-22 (described on Site Profile dated 2021-04-22)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "uuid": "82d5a3cc-e41d-4e46-a88d-70cfbb3d0ce9", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2016-06-21 (described on Site Profile dated 2016-06-21)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { + "uuid": "041caeea-c6f5-44dc-a955-cd43f3f3f546", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-02-08 (described on Site Profile dated 2014-02-08)", + "notes": "INSERTED FOR SITE PROFILE DATED 2019-01-08 (described on Site Profile dated 2019-01-08)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], "parcelDescriptions": [ { + "uuid": "5e901333-79fc-4cb6-a5ab-73446a35de73", "siteRegistry": false, - "dateNoted": "2018-07-15", - "parcelID": "20191", - "crownLandUsePIN": "16181", - "crownLandFileNumber": "19180", - "landDescription": "LOT 2 OF LOT 1 BLOCK 1 DISTRICT LOT 5 PLAN 3002" - }, - { - "siteRegistry": true, - "dateNoted": "2018-01-20", - "parcelID": "17629", - "crownLandUsePIN": "15602", - "crownLandFileNumber": "20419", - "landDescription": "LOT 5 OF LOT 2 BLOCK 2 DISTRICT LOT 4 PLAN 6966" + "dateNoted": "2018-12-17", + "parcelID": "18687", + "crownLandUsePIN": "15388", + "crownLandFileNumber": "15314", + "landDescription": "LOT 4 OF LOT 1 BLOCK 2 DISTRICT LOT 4 PLAN 4268" }, { + "uuid": "3cfe9151-60e4-4fc6-931f-2a1cea937eff", "siteRegistry": false, - "dateNoted": "2019-10-03", - "parcelID": "16557", - "crownLandUsePIN": "18934", - "crownLandFileNumber": "19893", - "landDescription": "LOT 3 OF LOT 3 BLOCK 1 DISTRICT LOT 2 PLAN 9307" - }, - { - "siteRegistry": true, - "dateNoted": "2021-11-18", - "parcelID": "18013", - "crownLandUsePIN": "18748", - "crownLandFileNumber": "18057", - "landDescription": "LOT 3 OF LOT 4 BLOCK 5 DISTRICT LOT 4 PLAN 3626" - }, - { - "siteRegistry": true, - "dateNoted": "2013-12-31", - "parcelID": "20377", - "crownLandUsePIN": "19015", - "crownLandFileNumber": "17131", - "landDescription": "LOT 4 OF LOT 1 BLOCK 1 DISTRICT LOT 2 PLAN 8756" + "dateNoted": "2023-03-26", + "parcelID": "19102", + "crownLandUsePIN": "15457", + "crownLandFileNumber": "15959", + "landDescription": "LOT 1 OF LOT 4 BLOCK 3 DISTRICT LOT 4 PLAN 5813" } ], "siteDisclosures": [ { + "uuid": "bafaa703-c66f-4701-9549-544ff454c8a8", "siteRegistry": true, - "dateReceived": "2021-10-28", - "dateCompleted": "2021-12-05", - "dateEntered": "2017-12-27", - "dateRegistrar": "2020-12-25", - "dateLocalAuthorityReceived": "2022-11-11", - "summary": "Assumenda magnam explicabo cumque maxime praesentium beatae.\nLabore eos distinctio maiores eveniet consequatur doloribus.\nPorro explicabo explicabo eum.", - "informationUsed": "Culpa aliquam architecto sit recusandae suscipit error inventore.\nQuam voluptatibus provident sed ab error quia quaerat quas.\nVel reiciendis quaerat odio sit dolor nihil.", - "pastOrPresentOrders": "Dolore dolorem corporis perspiciatis deserunt iure ducimus.", + "dateReceived": "2013-10-28", + "dateCompleted": "2014-01-11", + "dateEntered": "2021-03-15", + "dateRegistrar": "2018-09-05", + "dateLocalAuthorityReceived": "2021-09-17", + "summary": "Ipsa ea officiis soluta debitis.\nMaxime facere facilis optio adipisci repudiandae dolores sapiente voluptate.", + "informationUsed": "Repudiandae nihil dolores debitis aliquid vero similique quisquam et.\nVoluptatibus distinctio odio id repellat iste illum in consectetur.\nIn deserunt incidunt repellendus sunt fugiat sint ea possimus sequi.", + "pastOrPresentOrders": "Blanditiis excepturi totam numquam natus nam laborum molestias omnis.\nQuam eaque sequi quis ipsam sunt iste.\nTempore architecto quam in animi quae porro veritatis sed nihil.", "commercialAndIndustrialPurposes": [ { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "uuid": "fe89d98d-d54f-4e9c-bb58-cd371a8c637d", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false }, { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true - } - ] - }, - { - "siteRegistry": true, - "dateReceived": "2015-01-11", - "dateCompleted": "2022-03-18", - "dateEntered": "2014-02-16", - "dateRegistrar": "2023-07-06", - "dateLocalAuthorityReceived": "2018-03-06", - "summary": "Velit fugiat rerum voluptatem molestiae ipsam debitis.\nSunt ducimus modi quia iure ratione.\nPerspiciatis atque architecto architecto cum natus non modi vitae.", - "informationUsed": "Eveniet voluptates ullam excepturi aut quas cumque nisi officiis.\nLibero veniam vel quos deserunt modi debitis fuga.\nMollitia nulla nesciunt.\nRecusandae esse est ea.", - "pastOrPresentOrders": "Debitis repudiandae rerum provident sunt debitis.\nFugit perspiciatis iusto laborum molestiae impedit sed repellendus.", - "commercialAndIndustrialPurposes": [ - { + "uuid": "4285643b-db5b-4ea2-a02a-a0942de8974e", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false + "siteRegistry": true }, { + "uuid": "bbd666ee-6844-41a8-84d6-6f1938a252f2", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false - } - ] - } - ], - "activityLog": [ - { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "GERHOLD CURTIS", - "timestamp": "2023-07-06" - }, - { - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "ANKUNDING OSBALDO", - "timestamp": "2015-09-15" - }, - { - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "JOHNSON MARIANNA", - "timestamp": "2013-10-31" - }, - { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "WYMAN DEJUAN", - "timestamp": "2021-11-01" - }, - { - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "JACOBSON ELFRIEDA", - "timestamp": "2016-05-24" - }, - { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "BREKKE HATTIE", - "timestamp": "2018-12-30" - } - ], - "associatedSites": [ - { - "dateNoted": "2022-04-07", - "notes": "", - "parcelID": "20537", - "siteID": "17387", - "siteRegistry": true - } - ] - }, - { - "uuid": "9e2930ec-0cd2-4ba6-992a-990fc86afe77", - "siteID": 16933, - "address": "9629 Rice Brooks", - "latitude": 51.4858, - "longitude": -123.9395, - "lastUpdated": "2023-02-26", - "city": "Fort Constance", - "region": "Kootenay", - "victoriaFile": "26250-20/6962", - "regionalFile": "N/A", - "parcelIDs": [ - 1944265, - 8583899, - 4025195, - 8633882, - 8183360 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2018-02-21", - "completed": "2021-06-15", - "initiated": "2014-11-25", - "ministryContact": "BORER KEN", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - } - ], - "siteRegistry": false - }, - { - "createdAt": "2022-08-20", - "completed": "2019-06-30", - "initiated": "2018-04-17", - "ministryContact": "TORP HILDA", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "uuid": "27d2779f-2112-47ca-80f6-24b8abf4f54f", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true } - ], - "siteRegistry": false - } - ], - "participants": [ - { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2019-09-19", - "startDate": "2020-07-29", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": true - }, - { - "name": "IPSUM", - "endDate": "2018-06-11", - "startDate": "2015-11-08", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2014-08-29", - "startDate": "2015-09-04", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": false - } - ], - "suspectLandUses": [ - { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2020-07-11 (described on Site Profile dated 2020-07-11)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" - }, - { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-10-07 (described on Site Profile dated 2021-10-07)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" - } - ], - "parcelDescriptions": [ - { - "siteRegistry": true, - "dateNoted": "2016-10-20", - "parcelID": "15731", - "crownLandUsePIN": "16290", - "crownLandFileNumber": "16905", - "landDescription": "LOT 1 OF LOT 2 BLOCK 2 DISTRICT LOT 5 PLAN 5082" - }, - { - "siteRegistry": false, - "dateNoted": "2017-09-13", - "parcelID": "18524", - "crownLandUsePIN": "18868", - "crownLandFileNumber": "19708", - "landDescription": "LOT 5 OF LOT 4 BLOCK 1 DISTRICT LOT 3 PLAN 5428" - }, - { - "siteRegistry": true, - "dateNoted": "2020-03-27", - "parcelID": "17584", - "crownLandUsePIN": "18655", - "crownLandFileNumber": "19211", - "landDescription": "LOT 5 OF LOT 1 BLOCK 5 DISTRICT LOT 5 PLAN 6613" - }, - { - "siteRegistry": true, - "dateNoted": "2015-08-10", - "parcelID": "18513", - "crownLandUsePIN": "20437", - "crownLandFileNumber": "15570", - "landDescription": "LOT 4 OF LOT 1 BLOCK 4 DISTRICT LOT 3 PLAN 7946" + ] }, { + "uuid": "575243fa-c2d9-45b0-8941-309af46491bf", "siteRegistry": false, - "dateNoted": "2018-02-14", - "parcelID": "16464", - "crownLandUsePIN": "18026", - "crownLandFileNumber": "15788", - "landDescription": "LOT 1 OF LOT 5 BLOCK 5 DISTRICT LOT 2 PLAN 3529" - } - ], - "siteDisclosures": [ - { - "siteRegistry": true, - "dateReceived": "2015-01-23", - "dateCompleted": "2014-01-14", - "dateEntered": "2019-11-29", - "dateRegistrar": "2019-02-01", - "dateLocalAuthorityReceived": "2015-10-10", - "summary": "Cumque atque hic quae.\nIusto alias velit tempora quia quae.\nAt sed magnam accusamus ipsa ut officiis modi incidunt voluptates.", - "informationUsed": "Delectus natus optio cumque.\nIusto ea et animi non occaecati placeat.\nNon architecto aliquid modi voluptates.", - "pastOrPresentOrders": "Amet mollitia similique voluptas nostrum.\nVoluptas temporibus mollitia excepturi reprehenderit.", + "dateReceived": "2017-03-25", + "dateCompleted": "2020-09-29", + "dateEntered": "2014-12-03", + "dateRegistrar": "2013-10-14", + "dateLocalAuthorityReceived": "2021-03-11", + "summary": "Excepturi excepturi eligendi blanditiis repudiandae adipisci ad ipsum.\nEum facilis voluptatibus adipisci beatae molestiae.\nAssumenda est sint excepturi molestiae.", + "informationUsed": "Incidunt dignissimos rerum eaque modi iusto dolore.\nNisi perferendis maiores expedita.\nDelectus voluptas facere necessitatibus.\nOfficiis tempora assumenda ducimus voluptatem quae iste a aut iusto.", + "pastOrPresentOrders": "Aliquam quidem officiis itaque molestias cupiditate ea aliquid dolorem.\nPerspiciatis aperiam unde ipsam quibusdam voluptatibus.", "commercialAndIndustrialPurposes": [ { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false + "uuid": "9e6fddc1-eff6-4c79-b2e2-2a6f8aeb1d7b", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true }, { + "uuid": "a88f7adc-941f-448a-9d67-d2c81966304b", "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, { - "scheduleReference": "F2*", + "uuid": "0eac5d3c-4bad-434a-ab8a-11de2e88a241", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { + "uuid": "71b1f350-261f-4cf1-9b75-29fca4e4fdc1", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false @@ -71992,101 +81904,114 @@ ], "activityLog": [ { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "PAGAC DELANEY", - "timestamp": "2019-08-15" - }, - { + "uuid": "4272ad1f-da31-424f-b9b0-a7bc667fd3cc", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "KEMMER BERRY", - "timestamp": "2018-05-24" + "user": "KLOCKO MERRITT", + "timestamp": "2014-03-26" }, { - "siteRegistry": false, + "uuid": "5beabcda-8c08-47ce-8952-f535114598c7", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "LINDGREN AUDIE", - "timestamp": "2016-01-27" + "user": "HACKETT AIDEN", + "timestamp": "2015-09-27" }, { + "uuid": "54e6dab6-d622-451b-9311-40be2df61e22", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "HOPPE GENEVIEVE", - "timestamp": "2022-09-12" + "user": "GRIMES JENA", + "timestamp": "2015-07-07" }, { - "siteRegistry": true, + "uuid": "fbd16a40-0939-46ec-8fb4-0df25434ffdb", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "STEHR PEYTON", - "timestamp": "2018-12-23" + "user": "HODKIEWICZ-KOZEY ADRIENNE", + "timestamp": "2019-03-07" }, { + "uuid": "41c440ec-5442-4ed4-9c78-6298f569d0fe", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "RUNTE YASMINE", - "timestamp": "2020-05-17" + "user": "DICKINSON SAMANTA", + "timestamp": "2020-05-03" }, { - "siteRegistry": true, + "uuid": "0b66bb6b-2dda-4c68-a633-78e93ee4f8c9", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "BLICK JEANETTE", - "timestamp": "2016-03-29" + "user": "MEDHURST FRANCES", + "timestamp": "2018-11-15" }, { + "uuid": "a6e1f490-2ae3-46ca-94c9-de9a186436ef", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "FAY ELEANORA", - "timestamp": "2018-08-19" + "user": "FRAMI ERYN", + "timestamp": "2018-07-13" }, { - "siteRegistry": false, + "uuid": "710daf8f-a3d3-4db9-91af-e059cb391af0", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "KOELPIN SEAMUS", - "timestamp": "2020-06-24" + "user": "BARTOLETTI-REMPEL LYDA", + "timestamp": "2014-09-10" }, { - "siteRegistry": false, + "uuid": "b58a5902-0617-446f-bfdc-6c3c06d68ebc", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "ORN ADITYA", - "timestamp": "2018-06-16" + "user": "BARROWS ADALBERTO", + "timestamp": "2017-06-12" } ], "associatedSites": [ { - "dateNoted": "2020-08-09", + "uuid": "53e378f5-3214-4317-9642-fb6519cc1995", + "dateNoted": "2015-07-23", "notes": "", - "parcelID": "19512", - "siteID": "18873", + "parcelID": "16957", + "siteID": "18311", + "siteRegistry": true + }, + { + "uuid": "b6e15904-75da-4194-94c7-0dbd02caff46", + "dateNoted": "2015-06-25", + "notes": "", + "parcelID": "18691", + "siteID": "19174", "siteRegistry": true } ] }, { - "uuid": "c68a15f8-3da9-45aa-9d53-02daa6c255c7", - "siteID": 20722, - "address": "5786 Monserrate Gardens", - "latitude": 51.9633, - "longitude": -129.6443, - "lastUpdated": "2022-04-21", - "city": "Alvenabury", - "region": " North Coast", - "victoriaFile": "26250-20/11821", + "uuid": "03e08e02-971a-4a56-84b7-3a32bd1a5880", + "siteID": 20820, + "address": "630 Dare Ferry", + "latitude": 53.8831, + "longitude": -127.7888, + "lastUpdated": "2016-04-22", + "city": "South Chris", + "region": "Mainland/Southwest", + "victoriaFile": "26250-20/14593", "regionalFile": "N/A", "parcelIDs": [ - 129322, - 8612144, - 9828261, - 3181930, - 2276263 + 4651131, + 2023317, + 4631046, + 2082858, + 9963644 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2018-06-14", - "completed": "2020-05-17", - "initiated": "2016-12-05", - "ministryContact": "BAILEY EDWINA", + "uuid": "da124082-b173-4796-b68f-b2a12c6ff913", + "createdAt": "2021-09-08", + "completed": "2018-07-29", + "initiated": "2022-01-08", + "ministryContact": "RUECKER-MANTE ERNESTINA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -72095,23 +82020,26 @@ ], "notationParticipants": [ { + "uuid": "7ed6607b-82da-4a90-a583-6b8f759b5c06", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true + "role": "SUBMITTED BY", + "siteRegistry": false }, { + "uuid": "0de8c15f-e606-41b4-bd25-c48b09f6a0f3", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2016-05-20", - "completed": "2021-02-26", - "initiated": "2019-07-31", - "ministryContact": "HEIDENREICH GARRET", + "uuid": "984c6e08-a165-4d3a-bffb-11ddcd27f3d3", + "createdAt": "2014-11-25", + "completed": "2023-07-21", + "initiated": "2023-08-18", + "ministryContact": "CORMIER ADELLA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -72120,203 +82048,162 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true + "uuid": "ae2ea696-5abd-49b5-936b-3f25d476d1bc", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "uuid": "4b7369f6-58f6-40e1-a382-426f5ba4003b", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": true }, { + "uuid": "5a352ca8-a738-4db6-973e-8a0c01949139", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false } ], "siteRegistry": true + } + ], + "participants": [ + { + "uuid": "b6e94c7d-5e5b-459d-816b-fcab3107da44", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2020-06-26", + "startDate": "2014-01-18", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false }, { - "createdAt": "2015-02-05", - "completed": "2016-08-05", - "initiated": "2016-02-02", - "ministryContact": "BARROWS DOROTHY", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" + "uuid": "1688c4d4-cc38-422f-9550-98323139cb12", + "name": "IPSUM", + "endDate": "2021-04-25", + "startDate": "2022-03-03", + "notes": "", + "roles": [ + "EMPLOYEE" ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - } + "siteRegistry": true + }, + { + "uuid": "2874892f-b5c4-4126-8ce0-ebe7835e232a", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2018-07-05", + "startDate": "2023-06-09", + "notes": "", + "roles": [ + "ORGANIZATION" ], "siteRegistry": true - } - ], - "participants": [ + }, { + "uuid": "52df45fa-7093-4469-a746-a841b58b6607", "name": "SHELL CANADA PRODUCTS", - "endDate": "2019-07-30", - "startDate": "2013-10-21", + "endDate": "2019-04-12", + "startDate": "2015-08-27", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": false + "siteRegistry": true }, { - "name": "AMET, DOLOR SIT", - "endDate": "2014-10-04", - "startDate": "2020-12-31", + "uuid": "75e961ab-6de5-421b-ace3-db67f540b5fe", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2023-10-08", + "startDate": "2015-10-29", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false } ], "suspectLandUses": [ { + "uuid": "083f4f59-5fbd-4150-a8df-731d739c3652", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-07-04 (described on Site Profile dated 2017-07-04)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "notes": "INSERTED FOR SITE PROFILE DATED 2022-08-29 (described on Site Profile dated 2022-08-29)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { + "uuid": "e5c71a5e-5a9c-4e7c-aed3-b01e7976f691", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-04-23 (described on Site Profile dated 2021-04-23)", + "notes": "INSERTED FOR SITE PROFILE DATED 2022-12-15 (described on Site Profile dated 2022-12-15)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { + "uuid": "a1c90423-5b12-4417-9634-78de62eb80ed", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-07-27 (described on Site Profile dated 2014-07-27)", + "notes": "INSERTED FOR SITE PROFILE DATED 2017-01-14 (described on Site Profile dated 2017-01-14)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { + "uuid": "c8be2f03-37aa-4a98-a044-5cf2429c9ac1", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2020-02-07 (described on Site Profile dated 2020-02-07)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" - }, - { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-05-08 (described on Site Profile dated 2016-05-08)", + "notes": "INSERTED FOR SITE PROFILE DATED 2021-05-13 (described on Site Profile dated 2021-05-13)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], "parcelDescriptions": [ { - "siteRegistry": false, - "dateNoted": "2015-01-30", - "parcelID": "20006", - "crownLandUsePIN": "15963", - "crownLandFileNumber": "16318", - "landDescription": "LOT 3 OF LOT 3 BLOCK 1 DISTRICT LOT 5 PLAN 2968" - }, - { - "siteRegistry": false, - "dateNoted": "2014-06-14", - "parcelID": "19313", - "crownLandUsePIN": "17667", - "crownLandFileNumber": "20099", - "landDescription": "LOT 3 OF LOT 1 BLOCK 5 DISTRICT LOT 3 PLAN 5470" + "uuid": "43fcbc21-8fa4-4d78-9b90-566f1f639d72", + "siteRegistry": true, + "dateNoted": "2016-09-17", + "parcelID": "15864", + "crownLandUsePIN": "18803", + "crownLandFileNumber": "18885", + "landDescription": "LOT 5 OF LOT 2 BLOCK 2 DISTRICT LOT 2 PLAN 5640" }, { + "uuid": "eb1ace25-64e5-4399-a5c7-4f12e5014174", "siteRegistry": false, - "dateNoted": "2017-02-15", - "parcelID": "15806", - "crownLandUsePIN": "17011", - "crownLandFileNumber": "19318", - "landDescription": "LOT 3 OF LOT 1 BLOCK 1 DISTRICT LOT 3 PLAN 9762" - }, - { - "siteRegistry": true, - "dateNoted": "2015-01-15", - "parcelID": "17094", - "crownLandUsePIN": "20159", - "crownLandFileNumber": "20263", - "landDescription": "LOT 1 OF LOT 4 BLOCK 3 DISTRICT LOT 5 PLAN 6312" + "dateNoted": "2017-08-10", + "parcelID": "20372", + "crownLandUsePIN": "17493", + "crownLandFileNumber": "20980", + "landDescription": "LOT 1 OF LOT 3 BLOCK 3 DISTRICT LOT 1 PLAN 4281" }, { + "uuid": "12f174a8-bdf6-40b2-9e13-6fe04ad6b653", "siteRegistry": false, - "dateNoted": "2015-05-05", - "parcelID": "18296", - "crownLandUsePIN": "20317", - "crownLandFileNumber": "17904", - "landDescription": "LOT 5 OF LOT 5 BLOCK 1 DISTRICT LOT 1 PLAN 8921" + "dateNoted": "2023-05-06", + "parcelID": "20648", + "crownLandUsePIN": "17068", + "crownLandFileNumber": "16681", + "landDescription": "LOT 2 OF LOT 4 BLOCK 5 DISTRICT LOT 4 PLAN 3516" } ], "siteDisclosures": [ { - "siteRegistry": true, - "dateReceived": "2019-12-21", - "dateCompleted": "2016-12-17", - "dateEntered": "2023-05-15", - "dateRegistrar": "2019-04-05", - "dateLocalAuthorityReceived": "2020-08-03", - "summary": "Accusantium perspiciatis occaecati voluptas quo adipisci deleniti nesciunt tempora rerum.\nAnimi placeat sunt eum magnam ut in dolor nesciunt officia.", - "informationUsed": "Perferendis quidem ipsam quidem modi aliquam ducimus repellendus veniam nisi.\nCumque quo impedit quo.\nMinus dignissimos fugiat ut.\nBlanditiis corrupti pariatur ex atque fugit maxime aperiam ipsa.\nLibero sequi eius nobis.", - "pastOrPresentOrders": "Recusandae facilis perferendis in mollitia laudantium perferendis culpa minima beatae.", - "commercialAndIndustrialPurposes": [ - { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true - }, - { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false - }, - { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false - }, - { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true - } - ] - }, - { + "uuid": "c7a8b61a-8d07-4e26-8e40-8c174f278d43", "siteRegistry": false, - "dateReceived": "2021-12-12", - "dateCompleted": "2019-11-01", - "dateEntered": "2022-06-25", - "dateRegistrar": "2018-08-29", - "dateLocalAuthorityReceived": "2013-12-23", - "summary": "Nostrum unde earum cum vero fuga quas assumenda mollitia iure.\nAd reiciendis expedita nam odio.\nCorporis impedit sint commodi eum eum minima reprehenderit.", - "informationUsed": "Quod occaecati quos corporis.\nRepellat cumque ipsam quaerat vero minima saepe officia.\nAmet quo officiis facere nostrum et voluptate explicabo.\nVitae molestias quisquam odit nihil voluptatibus dolores esse dolorem alias.", - "pastOrPresentOrders": "Amet asperiores iste distinctio cum consequatur atque quam.\nPariatur iusto alias iste eos voluptate quasi quaerat laboriosam iste.\nIste quo occaecati molestiae occaecati corporis eos vero.", + "dateReceived": "2014-11-07", + "dateCompleted": "2014-12-04", + "dateEntered": "2015-11-30", + "dateRegistrar": "2018-03-05", + "dateLocalAuthorityReceived": "2018-01-14", + "summary": "At id qui saepe libero quia.\nLabore ullam quo commodi quia ut officiis dolor.\nSint est cum.", + "informationUsed": "Neque a nam neque sed nostrum ipsam magni architecto non.\nOdio possimus nobis minima asperiores blanditiis illo porro.\nMagnam corporis corrupti ad.", + "pastOrPresentOrders": "Aspernatur asperiores occaecati maxime consectetur vitae asperiores.", "commercialAndIndustrialPurposes": [ { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false - }, - { + "uuid": "f66010ba-b195-427b-a95b-ec73a27fb4ab", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false - }, - { + "uuid": "ce6ff805-cbf6-434b-99cc-53a0cd21d794", "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true } ] @@ -72324,102 +82211,93 @@ ], "activityLog": [ { - "siteRegistry": false, + "uuid": "edc6fec9-4071-4045-b284-9ddddffd1b6c", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "POUROS LULU", - "timestamp": "2019-06-06" + "user": "HESSEL JACKSON", + "timestamp": "2017-11-25" }, { + "uuid": "4fde30e7-1cf9-4ebc-9caf-1a135280d90f", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "BARTOLETTI CELESTINE", - "timestamp": "2019-04-05" + "user": "RAYNOR HOPE", + "timestamp": "2018-01-24" }, { + "uuid": "4e9723e6-f06c-43d0-893c-c1e1e702e7a0", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "TREUTEL MORRIS", - "timestamp": "2019-02-12" + "user": "TREMBLAY OLETA", + "timestamp": "2013-12-22" }, { + "uuid": "2351acf7-8799-4db0-b70d-61bbcc97ee6b", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "SKILES BRAXTON", - "timestamp": "2021-08-25" + "user": "KLOCKO SYDNEE", + "timestamp": "2023-09-15" }, { + "uuid": "568fec7e-7fcf-4d17-b324-379c832af3a9", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "MEDHURST KENYON", - "timestamp": "2015-03-21" + "user": "TURCOTTE IMA", + "timestamp": "2017-04-03" }, { + "uuid": "00265754-580c-4e6a-98c8-5763d870111b", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "WEST NILS", - "timestamp": "2018-04-05" - }, - { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "PFANNERSTILL LIONEL", - "timestamp": "2014-09-08" - }, - { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "WAELCHI RUTHIE", - "timestamp": "2013-10-18" - }, - { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "WALSH DANIELLE", - "timestamp": "2022-04-26" + "user": "KOSS MERCEDES", + "timestamp": "2017-07-22" } ], "associatedSites": [ { - "dateNoted": "2021-01-21", + "uuid": "c3fd67fb-55ff-4fa4-9485-6759c01a9963", + "dateNoted": "2014-10-17", "notes": "", - "parcelID": "19366", - "siteID": "16285", - "siteRegistry": false + "parcelID": "18885", + "siteID": "16560", + "siteRegistry": true }, { - "dateNoted": "2016-05-16", + "uuid": "6accb363-9604-4bc7-94d0-f5596ff9e456", + "dateNoted": "2018-09-24", "notes": "", - "parcelID": "17562", - "siteID": "16890", + "parcelID": "19939", + "siteID": "15514", "siteRegistry": false } ] }, { - "uuid": "b3f74f04-4570-49bc-be10-28be17f77995", - "siteID": 17386, - "address": "58810 Granville Greens", - "latitude": 49.0504, - "longitude": -133.5564, - "lastUpdated": "2019-11-02", - "city": "Hollywood", - "region": "Kootenay", - "victoriaFile": "26250-20/8565", + "uuid": "6c612b93-e084-4a29-9bef-c7671b4b992b", + "siteID": 20818, + "address": "85717 Davis Island", + "latitude": 51.9713, + "longitude": -126.2968, + "lastUpdated": "2014-12-08", + "city": "Port Lauretta", + "region": "Vancouver Island/Coast", + "victoriaFile": "26250-20/11844", "regionalFile": "N/A", "parcelIDs": [ - 9955223, - 9107776, - 1136614, - 2635240, - 3483869 + 8136114, + 9480908, + 3483248, + 3428780, + 3273884 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2021-02-10", - "completed": "2018-08-26", - "initiated": "2016-10-08", - "ministryContact": "D'AMORE BRANDYN", + "uuid": "5e4a4af0-aad0-4985-9563-77c90c7ce557", + "createdAt": "2019-03-13", + "completed": "2015-10-11", + "initiated": "2016-04-10", + "ministryContact": "GUTKOWSKI ALIZA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -72428,38 +82306,72 @@ ], "notationParticipants": [ { + "uuid": "2f646a7a-1f90-4d29-8320-ca1fbbb770e7", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true + "role": "REQUESTED BY", + "siteRegistry": false }, { + "uuid": "327dd689-38e8-4323-976e-d5cd2288f830", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true - }, + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "uuid": "712ddc65-66aa-4d64-b5a1-0cfae345cdd8", + "createdAt": "2015-06-09", + "completed": "2015-06-23", + "initiated": "2015-09-05", + "ministryContact": "DENESIK JANESSA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", + "uuid": "34d845ea-8c14-4bdf-ac0b-9a7b07209922", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", + "uuid": "f8e0428c-f69d-49be-aaf1-43f4b0f6fdcb", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false + }, + { + "uuid": "a892bb1d-1fb2-4ff5-a46e-5f4edc540416", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false }, { + "uuid": "1eb06add-756f-4d04-9b37-24eb860a7506", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "de6a9888-6c4b-4aae-954e-45e94bedfc86", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": true } ], "siteRegistry": true }, { - "createdAt": "2019-11-06", - "completed": "2019-06-20", - "initiated": "2015-04-10", - "ministryContact": "CRUICKSHANK KAITLYN", + "uuid": "110904c9-47d1-4b68-9e5e-6f01c5c3add7", + "createdAt": "2015-09-29", + "completed": "2023-09-13", + "initiated": "2023-01-05", + "ministryContact": "LUBOWITZ KARL", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -72468,33 +82380,44 @@ ], "notationParticipants": [ { + "uuid": "777e3a3c-c4de-4bb9-8b9a-88a95ffb8d59", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "uuid": "7b7882e4-86c2-4123-ac25-3509ceb24b0a", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "uuid": "8e442d9e-7159-4d08-a6e2-705783599c77", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": false }, { + "uuid": "ad54fc4a-1ee5-46c1-a24e-6a8f2833dd71", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true }, { + "uuid": "0f2fa857-fbb7-4498-b815-f6427e83ef82", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", "siteRegistry": true } ], "siteRegistry": true }, { - "createdAt": "2020-11-17", - "completed": "2018-11-25", - "initiated": "2015-12-29", - "ministryContact": "WILLIAMSON EMERALD", + "uuid": "6bda383a-8bc5-4a89-bd9d-d4a483e5f4ce", + "createdAt": "2020-11-13", + "completed": "2015-07-19", + "initiated": "2019-09-03", + "ministryContact": "GRIMES WAINO", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -72503,49 +82426,56 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true + "uuid": "badbcc7f-1679-4ad9-8552-1b1991e9bc49", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "0e69704c-6c3b-4da0-8d09-f81c40064794", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false }, { + "uuid": "60cf5dd3-bf56-4f69-a4c6-62ed9838414c", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "uuid": "245daf70-6eff-4ac4-920c-dd37ca03d9d7", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", "siteRegistry": false }, { + "uuid": "775126ba-aace-4ef1-9a8f-dc656950505a", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true + "role": "SUBMITTED BY", + "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false } ], "participants": [ { + "uuid": "88c03e38-4c33-4b86-a71a-dccbc6fc0e5e", "name": "IPSUM", - "endDate": "2020-10-16", - "startDate": "2017-07-24", + "endDate": "2016-07-14", + "startDate": "2014-02-17", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": false }, { - "name": "AMET, DOLOR SIT", - "endDate": "2016-04-30", - "startDate": "2018-07-05", + "uuid": "6cfd7a00-7fc2-407b-8fad-2599d2353a06", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2015-11-26", + "startDate": "2017-01-23", "notes": "", "roles": [ "ORGANIZATION" @@ -72553,9 +82483,10 @@ "siteRegistry": true }, { + "uuid": "05f102ac-c1b3-4abf-b0fb-a4188bb504d9", "name": "AMET, DOLOR SIT", - "endDate": "2022-07-14", - "startDate": "2018-03-28", + "endDate": "2015-05-12", + "startDate": "2014-10-23", "notes": "", "roles": [ "EMPLOYEE" @@ -72563,95 +82494,174 @@ "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2023-08-04", - "startDate": "2017-06-30", + "uuid": "af0adab0-865e-44f5-a634-ac05946039b4", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2013-12-12", + "startDate": "2014-08-06", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": true + "siteRegistry": false + }, + { + "uuid": "771c6650-51bb-4113-8993-ff10c6911965", + "name": "AMET, DOLOR SIT", + "endDate": "2018-07-05", + "startDate": "2016-12-13", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false } ], "suspectLandUses": [ { + "uuid": "a8823239-da79-48d9-81d3-6eb7c4e5ac94", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-07-30 (described on Site Profile dated 2016-07-30)", + "notes": "INSERTED FOR SITE PROFILE DATED 2014-12-29 (described on Site Profile dated 2014-12-29)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { + "uuid": "38b8be8e-b6e1-4680-974d-05963968d3e6", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-11-05 (described on Site Profile dated 2015-11-05)", + "notes": "INSERTED FOR SITE PROFILE DATED 2020-07-24 (described on Site Profile dated 2020-07-24)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { + "uuid": "d752ff43-91a4-4dc7-a3a6-db49fa2d9f22", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-12-20 (described on Site Profile dated 2018-12-20)", + "notes": "INSERTED FOR SITE PROFILE DATED 2014-06-06 (described on Site Profile dated 2014-06-06)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "uuid": "dc4e9635-7d4d-4076-884b-9e4ceea7c59d", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2020-08-11 (described on Site Profile dated 2020-08-11)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], "parcelDescriptions": [ { - "siteRegistry": true, - "dateNoted": "2020-03-14", - "parcelID": "17066", - "crownLandUsePIN": "19007", - "crownLandFileNumber": "17881", - "landDescription": "LOT 1 OF LOT 1 BLOCK 3 DISTRICT LOT 3 PLAN 3852" + "uuid": "f702e105-4064-4121-8a8d-1eda01d3b562", + "siteRegistry": false, + "dateNoted": "2016-08-18", + "parcelID": "18453", + "crownLandUsePIN": "17464", + "crownLandFileNumber": "20853", + "landDescription": "LOT 4 OF LOT 4 BLOCK 3 DISTRICT LOT 4 PLAN 4883" }, { - "siteRegistry": true, - "dateNoted": "2021-05-19", - "parcelID": "15969", - "crownLandUsePIN": "18137", - "crownLandFileNumber": "18542", - "landDescription": "LOT 4 OF LOT 3 BLOCK 4 DISTRICT LOT 5 PLAN 8636" + "uuid": "141b04fa-ed68-40b6-893b-4d9dbe9fe091", + "siteRegistry": false, + "dateNoted": "2023-02-16", + "parcelID": "16631", + "crownLandUsePIN": "15288", + "crownLandFileNumber": "16185", + "landDescription": "LOT 3 OF LOT 1 BLOCK 3 DISTRICT LOT 1 PLAN 4555" }, { + "uuid": "f255ea5b-0bad-4c36-825e-95ba2598ebff", "siteRegistry": true, - "dateNoted": "2016-10-18", - "parcelID": "17098", - "crownLandUsePIN": "15388", - "crownLandFileNumber": "18366", - "landDescription": "LOT 4 OF LOT 2 BLOCK 5 DISTRICT LOT 4 PLAN 5969" + "dateNoted": "2018-05-20", + "parcelID": "19898", + "crownLandUsePIN": "16009", + "crownLandFileNumber": "19046", + "landDescription": "LOT 3 OF LOT 5 BLOCK 4 DISTRICT LOT 2 PLAN 3962" }, { - "siteRegistry": false, - "dateNoted": "2019-12-08", - "parcelID": "19287", - "crownLandUsePIN": "17569", - "crownLandFileNumber": "20163", - "landDescription": "LOT 5 OF LOT 3 BLOCK 1 DISTRICT LOT 2 PLAN 7377" + "uuid": "dba70cce-02ea-48c9-95e5-c96bdbe0062a", + "siteRegistry": true, + "dateNoted": "2020-08-09", + "parcelID": "17905", + "crownLandUsePIN": "18138", + "crownLandFileNumber": "20125", + "landDescription": "LOT 4 OF LOT 5 BLOCK 4 DISTRICT LOT 3 PLAN 9793" }, { - "siteRegistry": false, - "dateNoted": "2016-06-17", - "parcelID": "16070", - "crownLandUsePIN": "16358", - "crownLandFileNumber": "16923", - "landDescription": "LOT 2 OF LOT 5 BLOCK 2 DISTRICT LOT 5 PLAN 6978" + "uuid": "12ff93c2-9828-4aa7-9ebf-2c07537e5c68", + "siteRegistry": true, + "dateNoted": "2017-05-12", + "parcelID": "16387", + "crownLandUsePIN": "16988", + "crownLandFileNumber": "20638", + "landDescription": "LOT 2 OF LOT 3 BLOCK 5 DISTRICT LOT 1 PLAN 9106" } ], "siteDisclosures": [ { + "uuid": "cc68ab81-5df9-4592-8cad-65c0c616ef4a", "siteRegistry": false, - "dateReceived": "2015-12-20", - "dateCompleted": "2021-03-22", - "dateEntered": "2021-12-21", - "dateRegistrar": "2015-01-06", - "dateLocalAuthorityReceived": "2019-05-28", - "summary": "Molestiae repellat optio doloribus.\nVoluptates cum suscipit at perferendis molestias iusto.", - "informationUsed": "Praesentium culpa molestiae molestias similique non magni autem accusantium est.\nAliquid facere cumque eligendi nesciunt deleniti ratione blanditiis maiores ad.\nNon consectetur aut.\nOfficiis nobis tenetur pariatur deserunt sapiente ipsum assumenda.", - "pastOrPresentOrders": "Totam repellendus quas deleniti.\nMagni pariatur quo.\nOdit tempore quasi aut quibusdam tempora iste.", + "dateReceived": "2018-12-11", + "dateCompleted": "2014-10-27", + "dateEntered": "2017-08-24", + "dateRegistrar": "2020-06-04", + "dateLocalAuthorityReceived": "2018-09-09", + "summary": "Fugiat at voluptatibus occaecati labore quia voluptates debitis.\nExpedita quas rem provident ratione in voluptates in.\nQuibusdam dignissimos dolorem repellat iste.", + "informationUsed": "Fugiat adipisci distinctio sint numquam quaerat.\nProvident iure optio a minus aliquid consequatur labore.\nAccusantium qui iste magni cum repudiandae.\nArchitecto inventore maxime consequatur voluptatibus magnam commodi ipsa.", + "pastOrPresentOrders": "Atque officia molestias hic alias.\nEsse rem laudantium neque explicabo mollitia nihil ipsum.\nNulla aspernatur suscipit asperiores tempore repellendus laborum eum.", "commercialAndIndustrialPurposes": [ { + "uuid": "9432246b-e089-4b6f-ace4-4f1be886bd61", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "uuid": "a0392eb5-6894-43ec-8016-891ece4a94b9", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "uuid": "df8efa99-c900-40ca-89de-73985dd25a08", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "uuid": "b0b648b9-a311-4fa4-a8d2-b6a94d7f68dd", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false + } + ] + }, + { + "uuid": "630a4ff9-ca3f-43cd-8c71-e51ae1f10d49", + "siteRegistry": false, + "dateReceived": "2017-11-22", + "dateCompleted": "2020-03-17", + "dateEntered": "2020-07-24", + "dateRegistrar": "2020-05-30", + "dateLocalAuthorityReceived": "2016-08-14", + "summary": "Eum laudantium quae corporis aperiam minus culpa ipsa voluptatibus tenetur.", + "informationUsed": "Sunt debitis commodi eaque fugiat maxime minus architecto corrupti.\nTenetur aspernatur repellat temporibus.\nDistinctio assumenda repudiandae quo.", + "pastOrPresentOrders": "Aperiam doloribus nobis explicabo ea in voluptate pariatur nisi.\nCupiditate accusamus aperiam mollitia quidem.\nReiciendis natus corrupti magni sit repellendus minus natus ut doloribus.", + "commercialAndIndustrialPurposes": [ + { + "uuid": "abe5891e-a96d-4260-98e3-eacb8e05da1a", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true }, { + "uuid": "0513e8b7-e53b-4ee5-8c4a-6a4d1329ec69", "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "uuid": "150e069c-a098-4534-a930-0b0d5cf533e7", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "uuid": "0467c824-2d72-46b5-a5d2-cb9202aed27a", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true } ] @@ -72659,90 +82669,121 @@ ], "activityLog": [ { + "uuid": "2f57fbf2-b9a2-49f0-8b78-3e9bfdf84acd", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "VONRUEDEN ANTONINA", + "timestamp": "2014-12-11" + }, + { + "uuid": "0eff19cf-af5e-4c26-a869-6fcbb892b3dd", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "LITTEL BRANDYN", + "timestamp": "2019-06-23" + }, + { + "uuid": "2c78d4f7-16ea-4558-90ca-83343e0e1a7d", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "LUETTGEN REINA", - "timestamp": "2019-04-20" + "user": "DIBBERT KACI", + "timestamp": "2015-03-14" }, { + "uuid": "f6c5f8b0-fe79-45b9-b12a-6b30ae6fce53", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "UPTON CLEMENTINA", - "timestamp": "2022-07-23" + "user": "MONAHAN CHRISTIAN", + "timestamp": "2022-09-21" }, { + "uuid": "381df1d7-965a-42a6-8663-faed3407b2e8", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "MULLER CASANDRA", - "timestamp": "2020-01-01" + "user": "BRAKUS JOSIANE", + "timestamp": "2023-02-18" }, { + "uuid": "08392818-fd6d-47cd-84ef-fc07276e0598", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "PFANNERSTILL NOVELLA", - "timestamp": "2022-04-11" + "user": "BRAUN BRIANA", + "timestamp": "2016-08-02" }, { + "uuid": "2feb0bf8-c59a-451a-8427-f2ec346e6807", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "TROMP HOLLIE", - "timestamp": "2020-07-04" + "user": "STIEDEMANN-SMITHAM GIDEON", + "timestamp": "2017-10-18" }, { - "siteRegistry": false, + "uuid": "4d523513-00aa-4dc7-a8e6-c8818e42eb1c", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "CONNELLY CHASITY", - "timestamp": "2016-08-18" + "user": "REINGER ZENA", + "timestamp": "2016-04-20" }, { + "uuid": "1c281eee-2b2e-4c94-bb84-213e7f36e276", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "HESSEL LAVINA", - "timestamp": "2014-10-08" + "user": "POWLOWSKI JOHNSON", + "timestamp": "2016-04-22" + }, + { + "uuid": "d08beb75-a0fc-4498-aaf5-39390cb5a224", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "KRIS-SCHUPPE JANAE", + "timestamp": "2018-01-20" } ], "associatedSites": [ { - "dateNoted": "2014-03-24", + "uuid": "04308bac-c3b3-47a3-a231-d572b7f82de4", + "dateNoted": "2016-06-21", "notes": "", - "parcelID": "20293", - "siteID": "20992", + "parcelID": "16806", + "siteID": "16470", "siteRegistry": true }, { - "dateNoted": "2015-04-17", + "uuid": "20fb5552-f9b8-4f20-995f-557fb403fddd", + "dateNoted": "2017-03-17", "notes": "", - "parcelID": "18259", - "siteID": "19390", - "siteRegistry": true + "parcelID": "15263", + "siteID": "19995", + "siteRegistry": false } ] }, { - "uuid": "098d8631-f8d7-44a6-b0e9-03ac826b0534", - "siteID": 19041, - "address": "647 Labadie Street", - "latitude": 58.0622, - "longitude": -133.5732, - "lastUpdated": "2019-08-12", - "city": "Veumview", - "region": "Mainland/Southwest", - "victoriaFile": "26250-20/16439", + "uuid": "3c392526-5d76-4c26-b3aa-ae92f4ef1a21", + "siteID": 16026, + "address": "26845 Abby Path", + "latitude": 50.0438, + "longitude": -136.5388, + "lastUpdated": "2019-12-20", + "city": "Mannview", + "region": "Thompson-Okanagan", + "victoriaFile": "26250-20/8051", "regionalFile": "N/A", "parcelIDs": [ - 3708874, - 9421065, - 8934974, - 9384203, - 1826132 + 573719, + 9171709, + 3048060, + 4472935, + 5738460 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2022-11-14", - "completed": "2020-02-09", - "initiated": "2015-06-20", - "ministryContact": "WALTER CARLEY", + "uuid": "0f93464d-9c48-4dd7-96aa-78e574234070", + "createdAt": "2016-07-22", + "completed": "2022-05-11", + "initiated": "2018-05-02", + "ministryContact": "MULLER TYRELL", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -72751,23 +82792,38 @@ ], "notationParticipants": [ { + "uuid": "c598e1d5-652e-4fe5-877e-b358b0537e09", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "79efc53a-1991-497b-96a5-f55febee5d56", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { + "uuid": "a81eb88b-3508-4a4f-85be-338b1e6cd02d", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false + }, + { + "uuid": "a2288708-44df-44da-985d-05e32a013d5b", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false } ], "siteRegistry": false }, { - "createdAt": "2021-02-06", - "completed": "2017-12-15", - "initiated": "2017-06-01", - "ministryContact": "HARTMANN CIERRA", + "uuid": "5bda9403-ccf5-45eb-8905-10fb45f16fb4", + "createdAt": "2020-04-24", + "completed": "2018-03-16", + "initiated": "2018-04-13", + "ministryContact": "SCHADEN CHARLIE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -72776,17 +82832,76 @@ ], "notationParticipants": [ { + "uuid": "dca0aa4f-1b3f-4368-bb13-7ac66420dbca", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false }, { + "uuid": "d9f98632-bb56-49f0-a063-36ed433d1f22", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "uuid": "0e217225-4ce3-4f93-a66c-c56de3afa585", + "createdAt": "2016-05-31", + "completed": "2018-12-12", + "initiated": "2014-09-04", + "ministryContact": "KUHLMAN KARSON", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "uuid": "a0e9a324-a059-4ecd-a1df-fcf26b6cd39f", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": true }, { + "uuid": "e89c1405-9566-4246-bbc5-3dce09323cc5", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "uuid": "663e3efb-a60d-48cc-af57-03dd5264c489", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "uuid": "d3d6cc6d-3c11-423c-98d6-2875947b75d5", + "createdAt": "2018-03-13", + "completed": "2019-06-08", + "initiated": "2016-07-29", + "ministryContact": "BAUMBACH STEVIE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "uuid": "de977ffe-66c9-4d7f-beac-f635927bdbfc", "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "uuid": "b6c00e0d-5115-4c86-9ee2-94876c022c0b", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true } @@ -72796,19 +82911,32 @@ ], "participants": [ { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2013-11-17", - "startDate": "2018-08-17", + "uuid": "504cce41-fe3f-4993-832a-f6ed9985a8d1", + "name": "IPSUM", + "endDate": "2015-07-07", + "startDate": "2022-08-13", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": true }, { - "name": "AMET, DOLOR SIT", - "endDate": "2022-08-23", - "startDate": "2019-07-01", + "uuid": "7bc69f1e-39fb-4682-bfc3-336fd3216b35", + "name": "IPSUM", + "endDate": "2022-02-17", + "startDate": "2015-12-28", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "uuid": "b4fe3a4a-fc6f-4042-804e-c443eea0938e", + "name": "IPSUM", + "endDate": "2014-09-06", + "startDate": "2014-04-01", "notes": "", "roles": [ "ORGANIZATION" @@ -72816,95 +82944,134 @@ "siteRegistry": true }, { + "uuid": "c543151e-80e0-4626-a18b-c0632e91f16b", "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2015-07-20", - "startDate": "2021-09-29", + "endDate": "2020-12-29", + "startDate": "2016-12-13", "notes": "", "roles": [ "EMPLOYEE" ], "siteRegistry": false + }, + { + "uuid": "0c0f5126-9c3f-44e7-9f50-a5f126e281c1", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2018-08-04", + "startDate": "2015-11-25", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true } ], "suspectLandUses": [ { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-11-09 (described on Site Profile dated 2022-11-09)", + "uuid": "0adb1add-e1b5-48a5-8f2d-f60b533e5e7c", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2017-05-12 (described on Site Profile dated 2017-05-12)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { + "uuid": "56242157-a147-4fcd-84b1-6d57c3bb2123", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-07-16 (described on Site Profile dated 2015-07-16)", + "notes": "INSERTED FOR SITE PROFILE DATED 2018-09-25 (described on Site Profile dated 2018-09-25)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "uuid": "7677fdcc-9206-4973-b897-ac9bb87c2f35", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2017-08-25 (described on Site Profile dated 2017-08-25)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "uuid": "bebfaad1-b1e2-40ac-bfb9-160a1cdcf159", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2019-01-03 (described on Site Profile dated 2019-01-03)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "uuid": "f1e15a44-b0b5-40e8-8b2e-96c92483d974", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2015-09-03 (described on Site Profile dated 2015-09-03)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], "parcelDescriptions": [ { + "uuid": "500170a1-be01-4e83-bd41-68c0e0bc6ab4", "siteRegistry": true, - "dateNoted": "2020-12-22", - "parcelID": "16675", - "crownLandUsePIN": "20778", - "crownLandFileNumber": "16209", - "landDescription": "LOT 5 OF LOT 1 BLOCK 3 DISTRICT LOT 3 PLAN 4637" + "dateNoted": "2020-03-26", + "parcelID": "20797", + "crownLandUsePIN": "20149", + "crownLandFileNumber": "16360", + "landDescription": "LOT 2 OF LOT 5 BLOCK 2 DISTRICT LOT 5 PLAN 7141" }, { + "uuid": "a3baae53-9129-450e-bbf6-2fa873916ead", + "siteRegistry": false, + "dateNoted": "2022-03-07", + "parcelID": "15363", + "crownLandUsePIN": "15271", + "crownLandFileNumber": "18538", + "landDescription": "LOT 2 OF LOT 5 BLOCK 3 DISTRICT LOT 1 PLAN 8268" + }, + { + "uuid": "49a61b07-e924-424f-9a5a-b2ff08e15ff3", "siteRegistry": true, - "dateNoted": "2019-07-09", - "parcelID": "17398", - "crownLandUsePIN": "19531", - "crownLandFileNumber": "20064", - "landDescription": "LOT 4 OF LOT 4 BLOCK 3 DISTRICT LOT 3 PLAN 8723" + "dateNoted": "2017-02-03", + "parcelID": "20588", + "crownLandUsePIN": "18945", + "crownLandFileNumber": "16537", + "landDescription": "LOT 1 OF LOT 1 BLOCK 4 DISTRICT LOT 1 PLAN 6644" }, { + "uuid": "e88a09ca-81a9-4983-a65b-05868a5f9f6a", + "siteRegistry": true, + "dateNoted": "2016-12-12", + "parcelID": "16299", + "crownLandUsePIN": "19339", + "crownLandFileNumber": "19178", + "landDescription": "LOT 2 OF LOT 4 BLOCK 4 DISTRICT LOT 4 PLAN 5694" + }, + { + "uuid": "d4ad0df2-78c4-4456-9802-c5c443277bdb", "siteRegistry": false, - "dateNoted": "2014-08-08", - "parcelID": "15402", - "crownLandUsePIN": "17969", - "crownLandFileNumber": "17353", - "landDescription": "LOT 4 OF LOT 3 BLOCK 1 DISTRICT LOT 2 PLAN 2960" + "dateNoted": "2013-11-01", + "parcelID": "15818", + "crownLandUsePIN": "19110", + "crownLandFileNumber": "19680", + "landDescription": "LOT 2 OF LOT 5 BLOCK 5 DISTRICT LOT 4 PLAN 4884" } ], "siteDisclosures": [ { + "uuid": "2b67d68c-7901-486c-806e-3071fc8ca366", "siteRegistry": true, - "dateReceived": "2018-03-02", - "dateCompleted": "2020-07-26", - "dateEntered": "2017-12-16", - "dateRegistrar": "2022-03-08", - "dateLocalAuthorityReceived": "2014-08-09", - "summary": "Sunt neque perferendis sed qui placeat necessitatibus cupiditate tempora dicta.", - "informationUsed": "Beatae dolores inventore.\nNisi nulla unde iste nesciunt ea dicta commodi.\nSequi ut maiores magni beatae quasi repellendus aspernatur nulla tempore.\nEarum rem quis consequatur provident.\nOdio in doloribus tenetur totam illum vero quas quae.", - "pastOrPresentOrders": "Veniam deserunt similique provident aspernatur.", + "dateReceived": "2023-06-16", + "dateCompleted": "2016-04-18", + "dateEntered": "2022-01-20", + "dateRegistrar": "2019-06-22", + "dateLocalAuthorityReceived": "2014-10-27", + "summary": "Quisquam eaque rem reprehenderit vero velit earum.\nError recusandae pariatur.", + "informationUsed": "Cumque inventore enim ea.\nAssumenda ipsum ullam labore esse optio eaque quidem.\nOccaecati quisquam voluptatum quae doloribus ad sapiente debitis sapiente.\nCommodi illum rem.", + "pastOrPresentOrders": "Incidunt ratione accusantium.\nPraesentium ad numquam saepe nobis deleniti.\nNihil iure deserunt.", "commercialAndIndustrialPurposes": [ { + "uuid": "ec7f441e-9659-40bf-a640-85d0e79658da", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true + "siteRegistry": false }, { + "uuid": "6b617226-bf20-4744-a872-7e5c0351c965", "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true - } - ] - }, - { - "siteRegistry": false, - "dateReceived": "2016-04-07", - "dateCompleted": "2015-02-25", - "dateEntered": "2016-06-27", - "dateRegistrar": "2022-07-23", - "dateLocalAuthorityReceived": "2020-11-15", - "summary": "Magni totam doloremque nulla voluptatibus corporis.\nLaborum iste eveniet ullam optio.", - "informationUsed": "Architecto autem impedit.\nTotam ut omnis ut officiis ad in perspiciatis inventore delectus.\nEt ipsa nam autem minima excepturi quam provident consectetur.\nTotam id explicabo cumque.", - "pastOrPresentOrders": "Sed consectetur voluptatum odit eaque velit nostrum aliquam blanditiis.", - "commercialAndIndustrialPurposes": [ - { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, { + "uuid": "55dfbc89-f315-46f3-ada5-20cbfd2b495c", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true @@ -72914,85 +83081,100 @@ ], "activityLog": [ { + "uuid": "b6767529-882a-4777-aabd-68d364b715f3", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "D'AMORE ROCIO", - "timestamp": "2018-12-14" + "user": "SCHULIST EUNICE", + "timestamp": "2017-10-08" }, { + "uuid": "2cfbc3a3-29c5-49d2-af5b-c7bd58c33d36", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "TERRY CASSANDRA", - "timestamp": "2015-07-18" + "user": "AUFDERHAR RALPH", + "timestamp": "2018-05-10" }, { + "uuid": "c972bd81-5d72-4030-b96b-87e2349c67ae", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "FLATLEY GIOVANI", - "timestamp": "2021-05-14" + "user": "HILLL LILIAN", + "timestamp": "2021-08-23" }, { - "siteRegistry": false, + "uuid": "77c374e9-84be-443a-b259-2548e7a2b4b2", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "LYNCH KEON", - "timestamp": "2022-03-09" + "user": "SPINKA MARJORIE", + "timestamp": "2014-10-16" + }, + { + "uuid": "472da4dd-9cb7-4e8d-9c02-4578b36291cd", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "SCHILLER MYAH", + "timestamp": "2015-03-30" }, { + "uuid": "ad35102d-710a-43d6-bafa-40ed8cf5226c", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "WALSH JARED", - "timestamp": "2015-02-27" + "user": "PAGAC LACEY", + "timestamp": "2016-02-08" + }, + { + "uuid": "957e3421-5bbe-4377-85c9-0f4c6461ee85", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "WILL ADELLE", + "timestamp": "2020-12-25" } ], "associatedSites": [ { - "dateNoted": "2021-11-16", + "uuid": "1a815fa3-d87f-49f4-bdaa-29c0f54c6068", + "dateNoted": "2023-07-10", "notes": "", - "parcelID": "18863", - "siteID": "19390", - "siteRegistry": true + "parcelID": "17504", + "siteID": "20221", + "siteRegistry": false }, { - "dateNoted": "2014-07-13", + "uuid": "65aeff9a-bbe3-48ff-962e-0fee2a87db3f", + "dateNoted": "2022-05-04", "notes": "", - "parcelID": "20797", - "siteID": "19266", + "parcelID": "20583", + "siteID": "17765", "siteRegistry": true - }, - { - "dateNoted": "2019-04-23", - "notes": "", - "parcelID": "19370", - "siteID": "18292", - "siteRegistry": false } ] }, { - "uuid": "b2cdf4da-e081-4102-a5a2-a852b8f61768", - "siteID": 20970, - "address": "5823 Roob Creek", - "latitude": 51.445, - "longitude": -136.0119, - "lastUpdated": "2021-08-12", - "city": "Dublin", - "region": " North Coast", - "victoriaFile": "26250-20/11927", + "uuid": "e091981f-29d1-4876-8e1b-03af4e0a51e0", + "siteID": 19884, + "address": "265 Boyer Fall", + "latitude": 54.342, + "longitude": -134.2805, + "lastUpdated": "2023-01-18", + "city": "East Jazlynbury", + "region": "Vancouver Island/Coast", + "victoriaFile": "26250-20/16843", "regionalFile": "N/A", "parcelIDs": [ - 8022156, - 6167781, - 8931787, - 496016, - 2489539 + 857220, + 7432263, + 6749357, + 3846792, + 8738176 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2015-01-10", - "completed": "2020-09-17", - "initiated": "2021-01-18", - "ministryContact": "RUSSEL CLAUDIE", + "uuid": "667e3bb9-e450-42f4-9e96-7d202024b39d", + "createdAt": "2017-08-06", + "completed": "2021-08-05", + "initiated": "2019-04-02", + "ministryContact": "ZIEMANN REYMUNDO", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -73001,33 +83183,44 @@ ], "notationParticipants": [ { + "uuid": "845057df-f86a-49f4-9151-f99b80ad6423", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "231433a7-8b7b-48c7-8c3a-e510442b37d1", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { + "uuid": "d16f3477-57eb-4af0-80cd-6781f8e11595", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "cd2a673e-2011-4b65-8caa-92fe3a140211", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { + "uuid": "7aaf0cf8-08db-4526-9a08-37eca8ab91f5", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2016-07-15", - "completed": "2016-11-19", - "initiated": "2023-09-30", - "ministryContact": "RAYNOR RUBIE", + "uuid": "ad9048d0-7b60-4630-a4e5-2095c56ff86d", + "createdAt": "2019-01-10", + "completed": "2016-08-28", + "initiated": "2022-01-30", + "ministryContact": "PAUCEK FLOSSIE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -73036,23 +83229,44 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", + "uuid": "50965717-1026-4535-a715-a82d901b9f74", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "fed67907-b5ce-4c34-956e-5683165f440d", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", + "uuid": "2dbce81b-daad-4dd4-b4a5-7bc320176742", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false + }, + { + "uuid": "43510d14-3092-468a-9b08-bb5e24d0dc90", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "5e34996b-4d47-41b5-bac6-110ceb6fe5ee", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2015-04-10", - "completed": "2019-10-09", - "initiated": "2020-01-16", - "ministryContact": "AUFDERHAR JUSTON", + "uuid": "03aa4e7d-1c4a-4c86-9c3e-970ae41d312c", + "createdAt": "2014-08-04", + "completed": "2019-04-19", + "initiated": "2020-02-18", + "ministryContact": "BARTON AHMED", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -73061,33 +83275,44 @@ ], "notationParticipants": [ { + "uuid": "a9faf897-bab6-4b01-a7ea-ff244fa50a02", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "a7d3de3f-09e5-48c9-8cec-ac8fa8949405", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", + "uuid": "9afd9fda-d435-4f97-bc95-9a3b1b4a917d", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true + "uuid": "215302cb-d455-4eb2-87a9-2bdd5a27484a", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false }, { + "uuid": "e5d30fc1-d1a8-4110-8036-69e6603782c8", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true } ], "siteRegistry": true }, { - "createdAt": "2023-09-09", - "completed": "2023-06-26", - "initiated": "2017-12-22", - "ministryContact": "SCHULIST ADAM", + "uuid": "c8ba95b0-c34b-45c8-86d0-9d4aa5e8f982", + "createdAt": "2018-02-08", + "completed": "2018-03-29", + "initiated": "2019-03-06", + "ministryContact": "KUHIC KODY", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -73096,17 +83321,32 @@ ], "notationParticipants": [ { + "uuid": "25539005-93a8-458e-ba78-6b84829330d0", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "4abba883-272c-4441-adbc-42007d9b8460", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false }, { + "uuid": "04c07292-9810-4430-b5c2-a7c5f984a03d", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "cec6feb1-2e3d-4c29-a182-f88adf84c0d8", "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "edb32bd7-f867-4f33-8318-2a53643b3e99", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true } @@ -73116,9 +83356,10 @@ ], "participants": [ { + "uuid": "47abd620-5e8a-4fda-b0e4-83d0bd874c35", "name": "IPSUM", - "endDate": "2020-09-07", - "startDate": "2016-01-30", + "endDate": "2016-01-31", + "startDate": "2022-09-12", "notes": "", "roles": [ "EMPLOYEE" @@ -73126,234 +83367,251 @@ "siteRegistry": true }, { + "uuid": "218daca9-42af-47c2-a20e-c384e8e8dce7", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2017-02-13", + "startDate": "2019-02-09", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "uuid": "1e557b4a-de8e-486a-8e6c-410f91505d8d", + "name": "AMET, DOLOR SIT", + "endDate": "2016-02-22", + "startDate": "2017-06-07", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "uuid": "85ed955b-ceda-42ee-bd60-09683c65bcbe", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2018-12-11", + "startDate": "2015-11-21", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "uuid": "8e36e30d-f421-4961-969a-61bcce17c5ab", "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2022-09-12", - "startDate": "2017-10-28", + "endDate": "2014-09-06", + "startDate": "2016-04-14", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false } ], "suspectLandUses": [ { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-09-27 (described on Site Profile dated 2018-09-27)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" - }, - { + "uuid": "4fdc3ada-d282-4bb8-bc80-ad486893e874", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-11-07 (described on Site Profile dated 2018-11-07)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "notes": "INSERTED FOR SITE PROFILE DATED 2017-03-08 (described on Site Profile dated 2017-03-08)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { + "uuid": "91fe6521-c422-444b-bea6-95e3fbba5606", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-03-11 (described on Site Profile dated 2018-03-11)", + "notes": "INSERTED FOR SITE PROFILE DATED 2022-02-26 (described on Site Profile dated 2022-02-26)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { + "uuid": "e21ffff2-6fed-44de-bd2b-18e23b20e5ca", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-03-16 (described on Site Profile dated 2019-03-16)", + "notes": "INSERTED FOR SITE PROFILE DATED 2022-04-13 (described on Site Profile dated 2022-04-13)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "uuid": "33f904f3-da4f-4840-9099-9ba818edb0d0", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2023-08-14 (described on Site Profile dated 2023-08-14)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], "parcelDescriptions": [ { + "uuid": "1d268b16-cc5b-496a-b06a-85ea22a50027", "siteRegistry": true, - "dateNoted": "2017-01-27", - "parcelID": "17493", - "crownLandUsePIN": "16073", - "crownLandFileNumber": "20624", - "landDescription": "LOT 2 OF LOT 4 BLOCK 2 DISTRICT LOT 1 PLAN 4828" + "dateNoted": "2023-03-02", + "parcelID": "18437", + "crownLandUsePIN": "16167", + "crownLandFileNumber": "19579", + "landDescription": "LOT 5 OF LOT 1 BLOCK 1 DISTRICT LOT 2 PLAN 8272" }, { + "uuid": "3719a1c9-0164-42f7-9856-adfc00db5ae4", "siteRegistry": false, - "dateNoted": "2017-08-28", - "parcelID": "20903", - "crownLandUsePIN": "17826", - "crownLandFileNumber": "18935", - "landDescription": "LOT 1 OF LOT 1 BLOCK 3 DISTRICT LOT 1 PLAN 8205" + "dateNoted": "2015-04-04", + "parcelID": "15593", + "crownLandUsePIN": "19491", + "crownLandFileNumber": "15598", + "landDescription": "LOT 4 OF LOT 5 BLOCK 3 DISTRICT LOT 2 PLAN 5206" }, { + "uuid": "f774d09a-3c74-4097-9f6e-cef05a96a754", "siteRegistry": true, - "dateNoted": "2020-11-22", - "parcelID": "19931", - "crownLandUsePIN": "19115", - "crownLandFileNumber": "15328", - "landDescription": "LOT 5 OF LOT 3 BLOCK 5 DISTRICT LOT 4 PLAN 4304" + "dateNoted": "2014-06-12", + "parcelID": "20293", + "crownLandUsePIN": "16772", + "crownLandFileNumber": "19953", + "landDescription": "LOT 5 OF LOT 4 BLOCK 2 DISTRICT LOT 4 PLAN 3365" }, { - "siteRegistry": true, - "dateNoted": "2016-07-10", - "parcelID": "20023", - "crownLandUsePIN": "18958", - "crownLandFileNumber": "19072", - "landDescription": "LOT 5 OF LOT 1 BLOCK 5 DISTRICT LOT 1 PLAN 8517" + "uuid": "6fba4eea-7682-4300-abcb-53204390e741", + "siteRegistry": false, + "dateNoted": "2022-05-08", + "parcelID": "17786", + "crownLandUsePIN": "19499", + "crownLandFileNumber": "15547", + "landDescription": "LOT 5 OF LOT 5 BLOCK 1 DISTRICT LOT 3 PLAN 2945" } ], "siteDisclosures": [ { - "siteRegistry": false, - "dateReceived": "2021-05-16", - "dateCompleted": "2020-05-21", - "dateEntered": "2015-08-14", - "dateRegistrar": "2016-05-05", - "dateLocalAuthorityReceived": "2017-12-05", - "summary": "Reiciendis iusto sint ex architecto aliquid voluptatem dolor doloribus ea.", - "informationUsed": "Sapiente reiciendis nisi sequi odit.\nHic hic nostrum consequuntur.\nNatus ex rerum earum perferendis.", - "pastOrPresentOrders": "Quod nemo eligendi non maxime.\nEligendi nemo ipsam vero.", - "commercialAndIndustrialPurposes": [ - { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false - }, - { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true - } - ] - }, - { + "uuid": "b53c2c6f-4976-49c5-8a24-5098e52b6570", "siteRegistry": true, - "dateReceived": "2018-08-18", - "dateCompleted": "2019-10-26", - "dateEntered": "2017-01-25", - "dateRegistrar": "2017-07-30", - "dateLocalAuthorityReceived": "2022-03-09", - "summary": "Ab fugit eveniet delectus deserunt consectetur porro iste.\nExpedita accusamus libero voluptates dolores optio.", - "informationUsed": "Perspiciatis sequi pariatur soluta voluptas cum asperiores at harum exercitationem.\nQuia fuga doloremque quaerat quae ex.\nDolores repellendus itaque numquam debitis minima asperiores doloremque nam harum.", - "pastOrPresentOrders": "Quo ducimus dolorum atque labore.", + "dateReceived": "2017-04-19", + "dateCompleted": "2019-06-06", + "dateEntered": "2020-10-20", + "dateRegistrar": "2022-11-25", + "dateLocalAuthorityReceived": "2022-11-17", + "summary": "Incidunt et consequuntur.\nAspernatur cumque doloremque id rem laudantium.\nNobis quos est itaque sequi veritatis non rerum iste.", + "informationUsed": "Quisquam odio soluta magnam similique quas distinctio laboriosam.\nAliquid ipsa explicabo sunt quo itaque possimus doloremque.\nVeniam magnam consequuntur sunt minima nesciunt.\nIpsa perferendis dignissimos minima officiis quisquam ipsa.\nMolestiae odio cum expedita tempora reprehenderit.", + "pastOrPresentOrders": "Labore illum aliquam perferendis rerum quasi deserunt dignissimos aperiam.\nMinus nesciunt animi qui quas itaque mollitia explicabo qui.", "commercialAndIndustrialPurposes": [ { + "uuid": "f285ba95-4e56-4890-8ce1-54d43c37eb57", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { + "uuid": "9b3b029a-3fb3-43ae-aa5d-6c5cb45b499f", "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false }, { + "uuid": "62d6fa0b-c82c-49de-a4f7-3d71e41287ff", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false + "siteRegistry": true }, { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false + "uuid": "e885ebd8-e51f-4e23-8597-f6869383ddef", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true } ] } ], "activityLog": [ { - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "MOEN CLAUDIA", - "timestamp": "2017-07-26" - }, - { - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "NICOLAS IMELDA", - "timestamp": "2018-09-19" - }, - { + "uuid": "37052336-bee6-4157-8ae4-8e628c30a939", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "SPORER MATEO", - "timestamp": "2019-09-24" + "user": "ZEMLAK EARNEST", + "timestamp": "2015-07-18" }, { + "uuid": "138612c6-7dda-40e3-a504-fafb726bf6e8", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "BREKKE AMPARO", - "timestamp": "2018-11-19" + "user": "MERTZ SANTINA", + "timestamp": "2017-03-17" }, { + "uuid": "e0cc1d43-517a-4518-ac25-fd0220a5c950", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "JACOBI AFTON", - "timestamp": "2017-09-25" + "user": "LANGOSH ALDEN", + "timestamp": "2023-07-12" }, { + "uuid": "022fa45e-3947-4cb9-a746-c482148a228a", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "PAGAC JORDAN", - "timestamp": "2015-05-17" + "user": "MACGYVER DOVIE", + "timestamp": "2015-01-10" }, { + "uuid": "ee10f4ca-9dc0-492e-9242-af66073d4cde", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "PAGAC JAYCE", - "timestamp": "2019-04-29" - }, - { - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "QUIGLEY-SCHROEDER MARCIA", - "timestamp": "2022-06-02" + "user": "WEST LILIAN", + "timestamp": "2023-10-08" }, { - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "DIBBERT DEMOND", - "timestamp": "2020-08-14" - }, - { - "siteRegistry": false, + "uuid": "0198f257-ee14-4fe8-aa8d-a3edee4f9e88", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "ROSENBAUM-DONNELLY SEAMUS", - "timestamp": "2017-10-15" + "user": "POWLOWSKI CLOTILDE", + "timestamp": "2021-01-16" } ], "associatedSites": [ { - "dateNoted": "2023-05-11", + "uuid": "a8a31cc1-fbcc-41d2-9f9c-b28804a713f0", + "dateNoted": "2015-07-11", "notes": "", - "parcelID": "17083", - "siteID": "15462", - "siteRegistry": true + "parcelID": "15852", + "siteID": "20490", + "siteRegistry": false }, { - "dateNoted": "2021-05-17", + "uuid": "ae0f9e7d-081d-4dda-afdf-d9678dd1b0ba", + "dateNoted": "2022-01-30", "notes": "", - "parcelID": "15750", - "siteID": "17982", + "parcelID": "19214", + "siteID": "20380", "siteRegistry": false + }, + { + "uuid": "7a7edc88-0839-40e0-b2a6-3effcb494418", + "dateNoted": "2022-01-22", + "notes": "", + "parcelID": "16804", + "siteID": "17688", + "siteRegistry": true } ] }, { - "uuid": "3c98a92b-208a-4f89-8f2f-52c9ee0a3611", - "siteID": 17785, - "address": "197 Watsica Valley", - "latitude": 53.4978, - "longitude": -138.343, - "lastUpdated": "2019-08-15", - "city": "Port Dixie", - "region": "Mainland/Southwest", - "victoriaFile": "26250-20/4928", + "uuid": "a0ac7341-1faf-456a-a40a-f78036753039", + "siteID": 18254, + "address": "376 Hackett Neck", + "latitude": 51.2954, + "longitude": -130.7718, + "lastUpdated": "2021-07-08", + "city": "Ceres", + "region": "Thompson-Okanagan", + "victoriaFile": "26250-20/8482", "regionalFile": "N/A", "parcelIDs": [ - 855951, - 8201093, - 3921618, - 8554526, - 3390029 + 3044079, + 6480919, + 1522617, + 7934123, + 9958302 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2017-11-27", - "completed": "2018-07-05", - "initiated": "2014-11-14", - "ministryContact": "HUDSON JAYLAN", + "uuid": "3988021b-83a0-49a2-9751-a2592316ea21", + "createdAt": "2021-04-24", + "completed": "2016-09-26", + "initiated": "2015-02-22", + "ministryContact": "HEGMANN NELLE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -73362,33 +83620,66 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "a86c2e0a-aff9-4975-85f6-8e316db37021", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "uuid": "6705c562-d17b-45a2-b0ee-2a10103cee9d", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true - }, + } + ], + "siteRegistry": false + }, + { + "uuid": "0092592f-c86a-4e63-853e-da2afc2626f9", + "createdAt": "2018-07-09", + "completed": "2016-10-08", + "initiated": "2019-03-19", + "ministryContact": "CORKERY CRISTOPHER", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ { + "uuid": "aee31512-ca05-4c0f-99b1-e68c8af8fa7a", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true }, { + "uuid": "d7df65ea-8cce-41ff-a0f8-e3f2730ed949", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "bc57d5a8-f182-4a73-b53a-e38819f78860", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false }, { + "uuid": "5c416788-b42f-404f-9c23-8054ea66dc0f", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2013-11-10", - "completed": "2021-02-10", - "initiated": "2018-03-17", - "ministryContact": "SPENCER ISRAEL", + "uuid": "b5a72e6b-ce21-4b60-ba6c-9359381e5cf1", + "createdAt": "2020-10-28", + "completed": "2016-11-15", + "initiated": "2019-09-07", + "ministryContact": "WEST SARAH", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -73397,44 +83688,50 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "8f30f116-2927-4d77-aef7-d44bf17e4f9a", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "uuid": "60ec8a60-b3db-47dd-bd51-b32a7c808b96", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": false }, { + "uuid": "b8019b30-5b6c-4c3a-9194-b7abc7de4df9", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true + "role": "SUBMITTED BY", + "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false + "uuid": "5da0e5b6-5ec9-4736-854e-5c572bdd247a", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false } ], "participants": [ { - "name": "IPSUM", - "endDate": "2017-08-10", - "startDate": "2015-05-31", + "uuid": "7a602dbc-5190-4bd5-be60-00419b0b2f7b", + "name": "AMET, DOLOR SIT", + "endDate": "2022-11-06", + "startDate": "2019-12-15", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2017-09-18", - "startDate": "2019-05-12", + "uuid": "6b0f35ed-14e3-4e0b-bad9-9d6092533f1d", + "name": "AMET, DOLOR SIT", + "endDate": "2018-10-30", + "startDate": "2020-07-27", "notes": "", "roles": [ "ORGANIZATION" @@ -73442,19 +83739,21 @@ "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2022-08-12", - "startDate": "2022-07-22", + "uuid": "7df6d1cf-e4c9-4c28-8be5-a0d0f5a55a6e", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2016-01-03", + "startDate": "2017-07-01", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2014-03-23", - "startDate": "2016-10-27", + "uuid": "5ea7e571-15b8-4ef1-8a46-78dc989e4c32", + "name": "IPSUM", + "endDate": "2023-07-20", + "startDate": "2014-04-07", "notes": "", "roles": [ "EMPLOYEE" @@ -73462,195 +83761,220 @@ "siteRegistry": true }, { - "name": "AMET, DOLOR SIT", - "endDate": "2014-01-14", - "startDate": "2021-07-25", + "uuid": "37d1d029-28a9-4c25-93a3-245a065cd60d", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2020-09-29", + "startDate": "2014-10-22", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true } ], "suspectLandUses": [ { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-07-06 (described on Site Profile dated 2019-07-06)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "uuid": "facf4e34-5ceb-487e-b19c-2128bec2c1aa", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2023-01-31 (described on Site Profile dated 2023-01-31)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { + "uuid": "a950d8ec-8321-40a7-8db1-ec1e274766f7", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-04-27 (described on Site Profile dated 2022-04-27)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "notes": "INSERTED FOR SITE PROFILE DATED 2017-08-24 (described on Site Profile dated 2017-08-24)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], "parcelDescriptions": [ { - "siteRegistry": false, - "dateNoted": "2021-09-04", - "parcelID": "15384", - "crownLandUsePIN": "20188", - "crownLandFileNumber": "20696", - "landDescription": "LOT 3 OF LOT 2 BLOCK 5 DISTRICT LOT 5 PLAN 8593" + "uuid": "2a1c7bdd-60f6-4ab7-b37a-ad38fc9b0338", + "siteRegistry": true, + "dateNoted": "2020-09-28", + "parcelID": "18629", + "crownLandUsePIN": "18520", + "crownLandFileNumber": "15462", + "landDescription": "LOT 3 OF LOT 1 BLOCK 3 DISTRICT LOT 2 PLAN 8180" }, { + "uuid": "782cc531-84af-467a-8632-5e09b8115ca9", "siteRegistry": false, - "dateNoted": "2014-03-31", - "parcelID": "18687", - "crownLandUsePIN": "16890", - "crownLandFileNumber": "17150", - "landDescription": "LOT 1 OF LOT 5 BLOCK 3 DISTRICT LOT 3 PLAN 7474" + "dateNoted": "2015-09-07", + "parcelID": "15745", + "crownLandUsePIN": "17166", + "crownLandFileNumber": "20789", + "landDescription": "LOT 2 OF LOT 1 BLOCK 5 DISTRICT LOT 3 PLAN 4441" }, { + "uuid": "535d69cf-8a35-4c3b-8e81-092031401038", "siteRegistry": false, - "dateNoted": "2017-03-16", - "parcelID": "16859", - "crownLandUsePIN": "20446", - "crownLandFileNumber": "16570", - "landDescription": "LOT 3 OF LOT 3 BLOCK 3 DISTRICT LOT 2 PLAN 4641" + "dateNoted": "2015-01-07", + "parcelID": "15423", + "crownLandUsePIN": "18417", + "crownLandFileNumber": "16460", + "landDescription": "LOT 4 OF LOT 2 BLOCK 3 DISTRICT LOT 5 PLAN 8989" }, { + "uuid": "4fe26ca3-6b0b-454b-b4d3-198c46e622f1", "siteRegistry": false, - "dateNoted": "2021-03-01", - "parcelID": "16309", - "crownLandUsePIN": "19430", - "crownLandFileNumber": "19095", - "landDescription": "LOT 2 OF LOT 4 BLOCK 2 DISTRICT LOT 5 PLAN 7133" + "dateNoted": "2016-07-15", + "parcelID": "19770", + "crownLandUsePIN": "19000", + "crownLandFileNumber": "16272", + "landDescription": "LOT 1 OF LOT 4 BLOCK 2 DISTRICT LOT 5 PLAN 9657" } ], "siteDisclosures": [ { - "siteRegistry": true, - "dateReceived": "2020-01-28", - "dateCompleted": "2015-06-26", - "dateEntered": "2023-04-26", - "dateRegistrar": "2022-06-21", - "dateLocalAuthorityReceived": "2021-06-07", - "summary": "Molestiae inventore error eligendi qui nulla.\nEt dicta esse nostrum.", - "informationUsed": "Totam odit expedita iure doloribus.\nError dolorem iusto corrupti.\nQuia vel quia.\nQuod adipisci occaecati harum.", - "pastOrPresentOrders": "Veniam nisi nemo.", + "uuid": "23d57a3b-c400-4149-be18-fa36acb7a1ef", + "siteRegistry": false, + "dateReceived": "2014-07-29", + "dateCompleted": "2023-08-07", + "dateEntered": "2014-04-27", + "dateRegistrar": "2016-02-12", + "dateLocalAuthorityReceived": "2015-04-29", + "summary": "Harum autem vero incidunt nostrum dicta assumenda sapiente.", + "informationUsed": "Animi quibusdam rerum aliquid ipsum porro libero.\nEligendi neque maiores id vitae explicabo.\nVeritatis quaerat modi corrupti nobis minima tenetur odit voluptate amet.", + "pastOrPresentOrders": "Reprehenderit deserunt soluta quos esse nam.\nIpsam quam libero quasi.\nAccusantium dolores quae nesciunt odio et vero deserunt voluptate repellendus.", "commercialAndIndustrialPurposes": [ { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true - }, - { + "uuid": "caca30d7-0a99-40e3-a13d-beb62ad6dcae", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false }, { - "scheduleReference": "F1*", + "uuid": "582a4017-83ff-4a68-bdc1-328468446d01", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true + "siteRegistry": false }, { + "uuid": "72dd36d1-faba-4649-90be-786f7507c3ff", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false + "siteRegistry": true } ] } ], "activityLog": [ { - "siteRegistry": false, + "uuid": "caa9c852-cfda-4e04-806f-046e60b2e90c", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "SIMONIS DANNY", - "timestamp": "2023-01-03" + "user": "EFFERTZ ADELBERT", + "timestamp": "2018-09-04" }, { - "siteRegistry": true, + "uuid": "3e4437af-4336-48ce-b42d-874c9bfc61cd", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "BOGAN KAYLEIGH", - "timestamp": "2021-07-13" + "user": "GOYETTE HAZLE", + "timestamp": "2016-07-23" }, { + "uuid": "dd612256-bfad-4d2f-9866-c9d0f939bb64", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "PACOCHA DOLLY", - "timestamp": "2019-09-12" + "user": "SANFORD CARMELLA", + "timestamp": "2023-01-30" }, { + "uuid": "8154e167-c953-40bb-a506-bf692dee6459", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "HEATHCOTE MORTIMER", - "timestamp": "2014-06-28" + "user": "MURAZIK ALYSA", + "timestamp": "2022-07-11" }, { + "uuid": "8c9f2491-92fd-4516-8f03-5b9550842009", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "SCHULTZ MINA", - "timestamp": "2016-11-04" + "user": "FAHEY SHANNY", + "timestamp": "2019-12-02" }, { + "uuid": "a1429a47-fca6-41e8-b64d-be252a673037", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "KESSLER BRAXTON", - "timestamp": "2021-04-03" + "user": "CORWIN JOSH", + "timestamp": "2021-01-08" }, { - "siteRegistry": false, + "uuid": "b14e16fb-9de3-4dac-ae78-91088ab26661", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "KING MAIA", - "timestamp": "2019-12-21" + "user": "GLEICHNER NAYELI", + "timestamp": "2019-09-15" }, { + "uuid": "9062b520-a0c3-4b1b-8674-245d4a058b90", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "ARMSTRONG LISETTE", - "timestamp": "2020-12-25" + "user": "JACOBI AMERICA", + "timestamp": "2022-05-05" }, { + "uuid": "1670a933-50ba-4775-88b5-672b08c49c96", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "ARMSTRONG-SCHNEIDER ANASTASIA", - "timestamp": "2014-11-06" + "user": "MAYERT GILES", + "timestamp": "2014-06-14" + }, + { + "uuid": "9eae2f13-2558-4103-80c1-71e87461e81a", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "BAHRINGER RHETT", + "timestamp": "2021-01-10" } ], "associatedSites": [ { - "dateNoted": "2021-08-11", + "uuid": "15d3aa51-a33f-492a-beac-19a068a5d377", + "dateNoted": "2014-03-25", "notes": "", - "parcelID": "18136", - "siteID": "18281", + "parcelID": "18975", + "siteID": "17183", "siteRegistry": true }, { - "dateNoted": "2019-03-27", + "uuid": "a1cca59e-bbd1-466d-b166-ab7ffeb2d109", + "dateNoted": "2022-01-16", "notes": "", - "parcelID": "16515", - "siteID": "18687", - "siteRegistry": true + "parcelID": "19637", + "siteID": "16026", + "siteRegistry": false } ] }, { - "uuid": "339bd50c-9f00-4128-be2c-ba42e8982b8d", - "siteID": 16096, - "address": "68684 Mossie Key", - "latitude": 54.0796, - "longitude": -119.7949, - "lastUpdated": "2021-12-10", - "city": "West Stephonfield", - "region": "Thompson-Okanagan", - "victoriaFile": "26250-20/5393", + "uuid": "8edf388c-8591-4bd4-84b9-836277511787", + "siteID": 18284, + "address": "938 Alda Passage", + "latitude": 55.4897, + "longitude": -137.3001, + "lastUpdated": "2022-04-19", + "city": "Gutkowskiberg", + "region": "Vancouver Island/Coast", + "victoriaFile": "26250-20/12993", "regionalFile": "N/A", "parcelIDs": [ - 3508387, - 7498084, - 1572013, - 7516528, - 2397850 + 4153914, + 4021442, + 9315123, + 487588, + 1363500 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2017-01-08", - "completed": "2020-10-08", - "initiated": "2022-10-24", - "ministryContact": "RUNOLFSDOTTIR MAYRA", + "uuid": "8183e758-a947-4b62-8f0d-eedf452767f8", + "createdAt": "2020-10-02", + "completed": "2014-11-01", + "initiated": "2015-12-05", + "ministryContact": "RUTHERFORD TAYA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -73659,26 +83983,19 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { + "uuid": "fcf42bb2-3ad0-4dbe-b5c2-0923b3843a9a", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", + "uuid": "5d6b1fb0-5620-4954-a061-a54381b7767a", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { + "uuid": "d38f8f1d-ceda-488f-919f-caf6bc270ce1", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false @@ -73687,10 +84004,11 @@ "siteRegistry": false }, { - "createdAt": "2019-03-23", - "completed": "2017-05-11", - "initiated": "2021-11-06", - "ministryContact": "HOWELL STEFAN", + "uuid": "ef00d769-f23d-4c31-ad7b-d5b7a5676eaf", + "createdAt": "2019-10-15", + "completed": "2016-03-07", + "initiated": "2017-01-25", + "ministryContact": "DURGAN DEONDRE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -73699,38 +84017,32 @@ ], "notationParticipants": [ { + "uuid": "e9785dcd-6066-4300-8ac3-d3ebafb5e389", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false }, { + "uuid": "4f009093-ff0e-4aeb-8853-b9bb4a05a5f3", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { + "uuid": "e455049b-820b-4276-8fe0-0310dad65149", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": true } ], "siteRegistry": true }, { - "createdAt": "2018-10-06", - "completed": "2018-09-08", - "initiated": "2020-03-29", - "ministryContact": "WILKINSON DEAN", + "uuid": "17a394a1-3838-468d-8971-1e3d8f199483", + "createdAt": "2022-07-16", + "completed": "2022-06-20", + "initiated": "2017-08-30", + "ministryContact": "MOHR KAYLI", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -73739,44 +84051,78 @@ ], "notationParticipants": [ { + "uuid": "3768337a-872c-43a8-a3f8-3d1e6511835c", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "uuid": "6bb97b23-eaa0-4b2d-8ee0-a281a7dce205", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { + "uuid": "67fae1a8-0115-447f-9ea6-ac43231e9628", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "1e054f59-a4bc-435e-b77c-e36fe6f8fa05", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": false + }, + { + "uuid": "6b5304dc-97fb-4cc1-bbd0-4b2268108f46", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true } ], "participants": [ { - "name": "AMET, DOLOR SIT", - "endDate": "2014-08-01", - "startDate": "2022-02-08", + "uuid": "2a6b9cee-c647-4466-96eb-845bb7a7471d", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2015-04-25", + "startDate": "2022-01-03", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], - "siteRegistry": true + "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2019-12-22", - "startDate": "2021-07-25", + "uuid": "c2003d2e-3f62-468f-872b-90b77808c242", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2018-04-24", + "startDate": "2023-05-03", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "uuid": "1cb3d551-a606-4402-b68b-5982bf1b3260", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2023-09-09", + "startDate": "2020-11-03", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false }, { - "name": "AMET, DOLOR SIT", - "endDate": "2022-10-31", - "startDate": "2020-04-26", + "uuid": "a53c40b1-e6eb-435a-be5e-f8b67e3598fd", + "name": "IPSUM", + "endDate": "2016-06-07", + "startDate": "2014-10-01", "notes": "", "roles": [ "ORGANIZATION" @@ -73786,57 +84132,98 @@ ], "suspectLandUses": [ { + "uuid": "a61d6947-784a-499f-8da1-9bbc249ed7c3", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2023-06-28 (described on Site Profile dated 2023-06-28)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" - }, - { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2023-02-20 (described on Site Profile dated 2023-02-20)", + "notes": "INSERTED FOR SITE PROFILE DATED 2018-10-07 (described on Site Profile dated 2018-10-07)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-04-16 (described on Site Profile dated 2014-04-16)", + "uuid": "05a36730-4ffe-49ff-b996-310d39d55941", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2015-02-21 (described on Site Profile dated 2015-02-21)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], "parcelDescriptions": [ { + "uuid": "57950936-3e8f-4a90-801a-77b94dd5ffd1", + "siteRegistry": true, + "dateNoted": "2014-12-18", + "parcelID": "16133", + "crownLandUsePIN": "16141", + "crownLandFileNumber": "20965", + "landDescription": "LOT 2 OF LOT 4 BLOCK 1 DISTRICT LOT 4 PLAN 4501" + }, + { + "uuid": "9e12d362-3786-4113-98ff-ef542867b54b", "siteRegistry": false, - "dateNoted": "2014-01-13", - "parcelID": "16965", - "crownLandUsePIN": "18016", - "crownLandFileNumber": "16753", - "landDescription": "LOT 4 OF LOT 1 BLOCK 2 DISTRICT LOT 5 PLAN 7872" + "dateNoted": "2013-10-29", + "parcelID": "19534", + "crownLandUsePIN": "20168", + "crownLandFileNumber": "15328", + "landDescription": "LOT 5 OF LOT 2 BLOCK 5 DISTRICT LOT 2 PLAN 7619" }, { + "uuid": "8a1db5b4-8fa8-4ff4-899a-5a529bc787e1", "siteRegistry": false, - "dateNoted": "2020-01-01", - "parcelID": "16237", - "crownLandUsePIN": "17749", - "crownLandFileNumber": "20802", - "landDescription": "LOT 3 OF LOT 2 BLOCK 1 DISTRICT LOT 5 PLAN 5107" + "dateNoted": "2018-11-04", + "parcelID": "20662", + "crownLandUsePIN": "18491", + "crownLandFileNumber": "19531", + "landDescription": "LOT 4 OF LOT 5 BLOCK 1 DISTRICT LOT 1 PLAN 3062" + }, + { + "uuid": "615d76a7-8205-4ac6-a121-86966d723a71", + "siteRegistry": true, + "dateNoted": "2021-12-07", + "parcelID": "16044", + "crownLandUsePIN": "19398", + "crownLandFileNumber": "19176", + "landDescription": "LOT 5 OF LOT 5 BLOCK 1 DISTRICT LOT 3 PLAN 8720" + }, + { + "uuid": "f336ca27-5aa3-4b63-ba05-3d423aaaea77", + "siteRegistry": true, + "dateNoted": "2021-06-05", + "parcelID": "20721", + "crownLandUsePIN": "17460", + "crownLandFileNumber": "20069", + "landDescription": "LOT 2 OF LOT 3 BLOCK 5 DISTRICT LOT 3 PLAN 7594" } ], "siteDisclosures": [ { - "siteRegistry": true, - "dateReceived": "2022-10-27", - "dateCompleted": "2022-12-30", - "dateEntered": "2020-12-25", - "dateRegistrar": "2014-12-17", - "dateLocalAuthorityReceived": "2018-11-12", - "summary": "Placeat ex excepturi officiis alias qui molestiae iure.\nAut modi vero incidunt sequi cupiditate.", - "informationUsed": "Dignissimos ex quo quo cum quos illum sunt sunt.\nAut voluptatibus est odit magni officiis.\nConsequatur corrupti impedit dignissimos laborum ullam aliquid.", - "pastOrPresentOrders": "Ipsam officia eum sed dolor.\nHarum eius reiciendis aspernatur hic repellat accusamus.", + "uuid": "a35d742b-5457-45c7-88a8-704956cab756", + "siteRegistry": false, + "dateReceived": "2019-04-18", + "dateCompleted": "2017-02-15", + "dateEntered": "2019-08-14", + "dateRegistrar": "2023-01-08", + "dateLocalAuthorityReceived": "2017-10-25", + "summary": "Et esse iusto quam unde facilis delectus aspernatur maxime.", + "informationUsed": "Adipisci accusamus molestiae quidem temporibus labore assumenda ipsum.\nRecusandae quas est consequatur atque.\nExcepturi tempore eum reprehenderit architecto sint rerum.", + "pastOrPresentOrders": "Cupiditate error fugit ipsum libero.", "commercialAndIndustrialPurposes": [ { + "uuid": "a6cd4db3-6de0-4892-a6a3-44fbc91dcfc2", "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "uuid": "847a15cd-50f6-452c-bf6e-77ca8b7b4d25", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "uuid": "0405e37e-9f13-45f0-8da7-cd44d47bac3c", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { + "uuid": "d2d0e37f-a767-46fc-8e58-c019c1142335", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false @@ -73846,78 +84233,202 @@ ], "activityLog": [ { + "uuid": "7a1a85ba-8c7e-456a-8325-ef436d469094", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "REICHERT BERT", + "timestamp": "2014-02-04" + }, + { + "uuid": "4dac44c7-e70c-42b4-89d3-ced4d9ee1867", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "RATH IVAH", - "timestamp": "2017-11-07" + "user": "SIPES ALBERTO", + "timestamp": "2015-12-16" }, { + "uuid": "3678591d-1784-4c64-b84c-2821e39ff1b3", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "LITTLE STERLING", - "timestamp": "2022-01-30" + "user": "CRIST-MAYERT SHAWN", + "timestamp": "2013-10-23" + }, + { + "uuid": "043017ad-5f12-4d72-942e-44c21b3e46c6", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "HAUCK LUCILE", + "timestamp": "2019-12-01" }, { + "uuid": "bcccfe5d-062c-4d0e-a6d8-0c49a5cd7b2c", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "LITTEL MARCELLUS", - "timestamp": "2018-01-13" + "user": "GOLDNER JAYDON", + "timestamp": "2014-06-20" }, { + "uuid": "c79849bf-4083-4920-a080-33d32fde2132", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "MOORE JEROMY", - "timestamp": "2022-03-17" + "user": "HALEY TIANA", + "timestamp": "2016-06-11" }, { + "uuid": "54fa41ae-3b3c-45d1-b646-b3504eda1284", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "PFEFFER FILIBERTO", - "timestamp": "2023-05-13" + "user": "HILLL RUSSEL", + "timestamp": "2022-07-04" } ], "associatedSites": [ { - "dateNoted": "2016-01-22", + "uuid": "2427b669-f337-4fea-96a5-d7e094d54704", + "dateNoted": "2018-09-05", + "notes": "", + "parcelID": "17195", + "siteID": "20660", + "siteRegistry": false + }, + { + "uuid": "cb5daf49-0363-4cd4-82b8-d4defdc4e4ea", + "dateNoted": "2021-01-25", "notes": "", - "parcelID": "15569", - "siteID": "17828", + "parcelID": "15214", + "siteID": "17972", + "siteRegistry": true + } + ] + }, + { + "uuid": "a0acda97-a72f-442b-8cec-7c2d66cee110", + "siteID": 19154, + "address": "640 Remington Rapids", + "latitude": 55.5731, + "longitude": -132.3763, + "lastUpdated": "2022-08-12", + "city": "New Theodoracester", + "region": "Thompson-Okanagan", + "victoriaFile": "26250-20/8478", + "regionalFile": "N/A", + "parcelIDs": [ + 9850729, + 7994330, + 1929199, + 9399643, + 152098 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "uuid": "7b528f1f-564c-4eea-85a6-f9f2aa7329b9", + "createdAt": "2022-03-07", + "completed": "2020-05-07", + "initiated": "2023-04-21", + "ministryContact": "TROMP LEXIE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "uuid": "9fba22b8-16af-43da-bfc2-476aafa453b8", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "uuid": "8bd5f33c-3031-418b-a40d-7236ea64e941", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "uuid": "1796997e-1a86-4dae-b389-4b5fa0f6d07b", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "945f4f24-d02b-4141-ab58-420d7955624c", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "27d87b84-f0f2-42bb-89a6-780269ec68bb", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "uuid": "81843dcc-9dca-463c-8426-e82872eb2bd1", + "createdAt": "2023-05-24", + "completed": "2019-02-23", + "initiated": "2023-04-07", + "ministryContact": "LEMKE PERRY", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "uuid": "9decbe9f-dfd8-4f13-9c01-24008e75006b", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "dc70ef67-6bd1-4765-aff3-2401ecc9d2cd", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "uuid": "754d82b1-7e82-4206-a15d-96ca36ebe309", + "createdAt": "2017-03-05", + "completed": "2020-02-15", + "initiated": "2016-07-28", + "ministryContact": "SCHOEN-FUNK MARILYNE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "uuid": "b82aab7c-001a-40d9-a1f7-f1ee2d73047a", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "fea24362-75aa-4bfc-b23b-310043ca647d", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], "siteRegistry": false }, { - "dateNoted": "2014-04-02", - "notes": "", - "parcelID": "17563", - "siteID": "17110", - "siteRegistry": false - } - ] - }, - { - "uuid": "76464aa9-6e5d-425d-9d4a-69e88c0f8930", - "siteID": 20268, - "address": "593 Denis Tunnel", - "latitude": 51.7803, - "longitude": -132.2195, - "lastUpdated": "2015-05-28", - "city": "North Oral", - "region": " North Coast", - "victoriaFile": "26250-20/3741", - "regionalFile": "N/A", - "parcelIDs": [ - 5796244, - 3101503, - 8899572, - 4417647, - 2506471 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2017-12-15", - "completed": "2018-08-22", - "initiated": "2019-12-01", - "ministryContact": "KLEIN JAVONTE", + "uuid": "a1cb5d5d-b6ad-4986-959a-6809141c3ef7", + "createdAt": "2023-07-09", + "completed": "2017-02-10", + "initiated": "2014-05-09", + "ministryContact": "HEANEY MATILDA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -73926,28 +84437,44 @@ ], "notationParticipants": [ { + "uuid": "c1d377c5-e4e8-455f-b650-30fbd357e0a6", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "uuid": "25eb3bad-a7a7-4166-aae5-e2bc13690852", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "8f3bc951-3d7d-478d-a4ad-b453a35950c3", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "ce21ff49-ad42-4d54-8adf-52644fe16b14", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true + }, + { + "uuid": "2d4a20d7-d87d-42ae-8680-8eeb9b8271df", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true } ], "siteRegistry": true }, { - "createdAt": "2015-07-25", - "completed": "2017-02-11", - "initiated": "2021-10-31", - "ministryContact": "BAYER LACY", + "uuid": "b7ddfddb-dc77-4d8e-b1c1-68fbce8de0fd", + "createdAt": "2021-10-26", + "completed": "2014-08-08", + "initiated": "2015-01-31", + "ministryContact": "HAND JUDGE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -73956,14 +84483,34 @@ ], "notationParticipants": [ { + "uuid": "a743e14d-49b4-498d-bf51-d57694e824e7", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true + "role": "REQUESTED BY", + "siteRegistry": false }, { + "uuid": "97157912-78f0-451a-91d8-e5de5421ddee", "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "e610fcfd-0216-4071-a23c-1c13c3b6d015", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false + }, + { + "uuid": "fe79b4ac-3245-4e51-bbb8-021e3a9bb360", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "22fe70f5-16a6-4ff2-9d4c-55cd881fa1a5", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true } ], "siteRegistry": false @@ -73971,9 +84518,21 @@ ], "participants": [ { - "name": "IPSUM", - "endDate": "2022-12-14", - "startDate": "2020-09-05", + "uuid": "61566c19-c3c9-47de-b1ad-b18ad97c83b8", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2016-06-06", + "startDate": "2023-03-10", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "uuid": "9533c2d7-6661-443c-9627-4f2b1fa085a7", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2015-12-01", + "startDate": "2019-11-26", "notes": "", "roles": [ "ORGANIZATION" @@ -73981,9 +84540,10 @@ "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2015-04-23", - "startDate": "2017-03-01", + "uuid": "0ef46603-18d5-4dbc-b59c-751941651bfe", + "name": "IPSUM", + "endDate": "2013-10-24", + "startDate": "2015-10-29", "notes": "", "roles": [ "ORGANIZATION" @@ -73993,87 +84553,119 @@ ], "suspectLandUses": [ { + "uuid": "5169567f-b587-4f69-831c-53da1ff1cba7", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2020-06-29 (described on Site Profile dated 2020-06-29)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "notes": "INSERTED FOR SITE PROFILE DATED 2023-08-19 (described on Site Profile dated 2023-08-19)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-01-31 (described on Site Profile dated 2016-01-31)", + "uuid": "4a2ededd-4cb6-42ab-b100-de602f720a8d", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2017-02-23 (described on Site Profile dated 2017-02-23)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], "parcelDescriptions": [ { - "siteRegistry": true, - "dateNoted": "2017-06-05", - "parcelID": "19096", - "crownLandUsePIN": "18000", - "crownLandFileNumber": "17839", - "landDescription": "LOT 1 OF LOT 4 BLOCK 4 DISTRICT LOT 1 PLAN 5202" + "uuid": "ab564c89-670b-4a01-b303-b0d0953217c9", + "siteRegistry": false, + "dateNoted": "2021-06-01", + "parcelID": "20647", + "crownLandUsePIN": "19528", + "crownLandFileNumber": "19295", + "landDescription": "LOT 4 OF LOT 3 BLOCK 3 DISTRICT LOT 3 PLAN 9778" }, { - "siteRegistry": false, - "dateNoted": "2017-02-16", - "parcelID": "16215", - "crownLandUsePIN": "16284", - "crownLandFileNumber": "17554", - "landDescription": "LOT 4 OF LOT 3 BLOCK 4 DISTRICT LOT 2 PLAN 7484" + "uuid": "383064f8-3ef7-4e7e-a542-a9fe68babc33", + "siteRegistry": true, + "dateNoted": "2022-08-29", + "parcelID": "16977", + "crownLandUsePIN": "18994", + "crownLandFileNumber": "20827", + "landDescription": "LOT 3 OF LOT 3 BLOCK 2 DISTRICT LOT 2 PLAN 8794" }, { + "uuid": "0a242db0-fb2f-49a3-9c6e-daaebc4d7072", "siteRegistry": false, - "dateNoted": "2023-01-20", - "parcelID": "18166", - "crownLandUsePIN": "18811", - "crownLandFileNumber": "20276", - "landDescription": "LOT 1 OF LOT 3 BLOCK 3 DISTRICT LOT 5 PLAN 5921" + "dateNoted": "2022-05-26", + "parcelID": "15716", + "crownLandUsePIN": "19179", + "crownLandFileNumber": "16114", + "landDescription": "LOT 5 OF LOT 4 BLOCK 5 DISTRICT LOT 3 PLAN 7628" }, { + "uuid": "275e7b88-679c-4a47-b4b0-d4137087d437", "siteRegistry": true, - "dateNoted": "2023-01-20", - "parcelID": "15959", - "crownLandUsePIN": "15805", - "crownLandFileNumber": "16353", - "landDescription": "LOT 3 OF LOT 1 BLOCK 2 DISTRICT LOT 4 PLAN 8424" + "dateNoted": "2017-11-14", + "parcelID": "20858", + "crownLandUsePIN": "18547", + "crownLandFileNumber": "16753", + "landDescription": "LOT 2 OF LOT 2 BLOCK 5 DISTRICT LOT 3 PLAN 4591" }, { - "siteRegistry": true, - "dateNoted": "2021-04-18", - "parcelID": "15331", - "crownLandUsePIN": "15671", - "crownLandFileNumber": "16128", - "landDescription": "LOT 4 OF LOT 3 BLOCK 1 DISTRICT LOT 3 PLAN 6333" + "uuid": "c93aa9e3-8a24-4f23-9f61-90d1f8d55fa0", + "siteRegistry": false, + "dateNoted": "2016-03-13", + "parcelID": "20435", + "crownLandUsePIN": "17489", + "crownLandFileNumber": "16457", + "landDescription": "LOT 1 OF LOT 3 BLOCK 3 DISTRICT LOT 4 PLAN 9071" } ], "siteDisclosures": [ { - "siteRegistry": false, - "dateReceived": "2022-01-03", - "dateCompleted": "2022-01-02", - "dateEntered": "2023-09-28", - "dateRegistrar": "2016-07-08", - "dateLocalAuthorityReceived": "2013-12-07", - "summary": "Optio minima odit asperiores similique.", - "informationUsed": "Laboriosam quos commodi voluptas.\nVero voluptas culpa quo quo perferendis nostrum quod.\nNulla impedit delectus eaque.", - "pastOrPresentOrders": "Magnam debitis animi porro facere velit exercitationem.", + "uuid": "051521db-59a1-4885-91e2-a6fcda959a0f", + "siteRegistry": true, + "dateReceived": "2020-09-13", + "dateCompleted": "2016-07-29", + "dateEntered": "2018-01-10", + "dateRegistrar": "2022-11-23", + "dateLocalAuthorityReceived": "2013-11-19", + "summary": "Commodi cum veniam placeat ipsum.\nRatione inventore recusandae deserunt assumenda magnam maxime exercitationem.\nQuis blanditiis officia voluptas ab veniam consequatur sunt sed ratione.", + "informationUsed": "Ut sint repellat veritatis iste.\nConsequatur nesciunt assumenda nisi sapiente nobis veritatis laudantium distinctio.\nRatione occaecati nulla doloribus.\nRepellendus pariatur iure itaque facere nostrum consequatur tenetur aliquid error.\nCumque soluta explicabo fugiat.", + "pastOrPresentOrders": "Excepturi officiis magni expedita nihil.\nDignissimos nobis recusandae placeat.", "commercialAndIndustrialPurposes": [ { + "uuid": "8c490a06-77d4-4244-b9b8-7af5bcaf0ae8", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true + "siteRegistry": false }, { + "uuid": "d5042616-f01a-4176-b371-b90142ec548d", "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true }, { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "uuid": "8c198f0c-ff12-47ea-8722-91b407148861", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true + } + ] + }, + { + "uuid": "070b893a-20de-4534-b4b3-919fbaf591bf", + "siteRegistry": true, + "dateReceived": "2023-07-27", + "dateCompleted": "2018-01-24", + "dateEntered": "2018-04-10", + "dateRegistrar": "2018-07-12", + "dateLocalAuthorityReceived": "2023-01-04", + "summary": "Nihil iure a.\nA labore eius exercitationem consequuntur sed.", + "informationUsed": "Nesciunt atque aut sit voluptatibus.\nMolestias accusantium nesciunt.\nVoluptatum vel neque temporibus explicabo corrupti porro tenetur maxime id.\nAlias similique minima sapiente reprehenderit quo.", + "pastOrPresentOrders": "Doloribus sunt repudiandae autem alias beatae eligendi.", + "commercialAndIndustrialPurposes": [ + { + "uuid": "93e25582-518b-46eb-bb60-c1c76b3ac746", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false }, { - "scheduleReference": "F1*", + "uuid": "fa272714-8cbd-4cc0-8e55-479fc421a98b", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true } @@ -74082,108 +84674,106 @@ ], "activityLog": [ { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "BLICK JAMAR", - "timestamp": "2014-09-19" - }, - { + "uuid": "c1a4f3c9-f174-495f-ac84-2807abe49f18", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "THIEL RYLAN", - "timestamp": "2014-12-21" + "user": "HOMENICK CAROLANNE", + "timestamp": "2021-05-24" }, { - "siteRegistry": false, + "uuid": "50a2090d-a56e-4c8a-a89c-b9ac4ac99ac9", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "WINTHEISER-QUIGLEY ARDELLA", - "timestamp": "2018-06-27" + "user": "LAKIN KENNETH", + "timestamp": "2022-12-17" }, { + "uuid": "001ed698-c504-4516-b475-d1d9e7be2f31", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "DICKINSON-LARKIN BETTE", - "timestamp": "2017-09-30" + "user": "HELLER LEW", + "timestamp": "2015-02-25" }, { + "uuid": "fcdd6b72-625c-4298-9949-4a33b3db3cbc", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "HANSEN THORA", - "timestamp": "2016-11-29" + "user": "HARRIS HALIE", + "timestamp": "2013-10-27" }, { + "uuid": "a25861e7-7223-4fee-9805-0e249a1c5006", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "TROMP BRIAN", - "timestamp": "2018-03-10" + "user": "WEHNER KENNA", + "timestamp": "2021-09-24" }, { + "uuid": "3917a949-fb6e-494e-8788-0c43aac5d12c", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "DIETRICH NIKKO", - "timestamp": "2021-07-04" + "user": "WOLF EVE", + "timestamp": "2015-12-08" }, { + "uuid": "53d90ab4-6ad8-4736-aa73-c73cbb483588", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "EFFERTZ HAL", - "timestamp": "2017-01-29" + "user": "GERHOLD MYRTLE", + "timestamp": "2014-08-19" }, { - "siteRegistry": false, + "uuid": "309ac91e-f3f3-4d04-809e-c9706e063ce4", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "STRACKE GARFIELD", - "timestamp": "2018-04-20" + "user": "POLLICH WOODROW", + "timestamp": "2022-09-14" }, { - "siteRegistry": true, + "uuid": "8cfca96a-5fbf-40f1-ac77-894d75bc5dca", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "ONDRICKA DULCE", - "timestamp": "2023-06-24" + "user": "ONDRICKA LAURINE", + "timestamp": "2016-02-09" } ], "associatedSites": [ { - "dateNoted": "2014-04-16", - "notes": "", - "parcelID": "19389", - "siteID": "19044", - "siteRegistry": true - }, - { - "dateNoted": "2016-01-16", + "uuid": "3a4b3199-5b45-4e81-a3b4-34079b511f18", + "dateNoted": "2020-12-08", "notes": "", - "parcelID": "19071", - "siteID": "17483", + "parcelID": "17744", + "siteID": "19839", "siteRegistry": true } ] }, { - "uuid": "e022a453-5532-49bc-9cf0-4e4aeac8334f", - "siteID": 15493, - "address": "5238 Avis Crossing", - "latitude": 58.4773, - "longitude": -118.811, - "lastUpdated": "2022-01-24", - "city": "Stoltenbergville", - "region": " North Coast", - "victoriaFile": "26250-20/7837", + "uuid": "af00ef2a-0cdb-4a2c-bcc6-f75bc2a6e1b0", + "siteID": 20175, + "address": "370 Dooley Green", + "latitude": 53.6686, + "longitude": -128.9871, + "lastUpdated": "2020-01-08", + "city": "Piercemouth", + "region": "Mainland/Southwest", + "victoriaFile": "26250-20/3663", "regionalFile": "N/A", "parcelIDs": [ - 1882109, - 7665285, - 7581378, - 9385942, - 4899767 + 848162, + 2950941, + 8151120, + 6534893, + 1679509 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2020-06-08", - "completed": "2017-02-23", - "initiated": "2020-07-31", - "ministryContact": "TOY AUSTIN", + "uuid": "f8514e19-c7e8-4901-97ba-717bb5737462", + "createdAt": "2017-02-06", + "completed": "2015-01-02", + "initiated": "2019-12-15", + "ministryContact": "LARSON MARILYNE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -74192,33 +84782,32 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "uuid": "16c9af1e-933c-424d-9dd6-1db2aa074359", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": false }, { + "uuid": "855a55d6-a3b3-4de5-aaaf-9cf44842af62", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false }, { + "uuid": "fff0476b-fb1a-43fd-802f-258b5d016ea7", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false } ], "siteRegistry": false }, { - "createdAt": "2015-06-28", - "completed": "2023-09-08", - "initiated": "2016-06-12", - "ministryContact": "LITTEL RALPH", + "uuid": "fca5e318-3bd1-4880-8c77-6873748d72a6", + "createdAt": "2023-09-24", + "completed": "2015-10-13", + "initiated": "2019-11-20", + "ministryContact": "KERTZMANN SADIE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -74227,38 +84816,26 @@ ], "notationParticipants": [ { + "uuid": "5e004c50-0398-4f0b-91a8-ab65848261ba", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", "siteRegistry": true }, { + "uuid": "a4c9b99f-4b18-4bd7-9153-6ffe88fad5fa", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false + "role": "REQUESTED BY", + "siteRegistry": true } ], "siteRegistry": true }, { - "createdAt": "2017-09-20", - "completed": "2023-02-23", - "initiated": "2021-09-08", - "ministryContact": "DIBBERT SILAS", + "uuid": "ba16229c-ab90-4c78-87c4-e558b51ef0c8", + "createdAt": "2021-07-06", + "completed": "2020-06-27", + "initiated": "2022-01-29", + "ministryContact": "ULLRICH NORBERT", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -74267,62 +84844,32 @@ ], "notationParticipants": [ { + "uuid": "6d99a887-836a-4d40-94d1-38d790a149dd", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false }, { + "uuid": "36bf0f5c-a1c2-40e7-a4dc-114e29b98098", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true }, { + "uuid": "092f00ce-f52c-4714-a4a5-050ab8101af5", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false }, { + "uuid": "b785c1be-5e13-462d-ab93-132fac0f9908", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false - } - ], - "siteRegistry": true - }, - { - "createdAt": "2020-06-09", - "completed": "2021-01-20", - "initiated": "2021-06-14", - "ministryContact": "KILBACK LUCIUS", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", "siteRegistry": true }, { + "uuid": "0d8bfcc7-db0e-4ef7-9bd9-637ab045feb4", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false } @@ -74332,268 +84879,246 @@ ], "participants": [ { + "uuid": "c35b9e78-13cd-4d4b-b9ab-10287ae9a2a7", "name": "SHELL CANADA PRODUCTS", - "endDate": "2019-09-26", - "startDate": "2014-02-28", + "endDate": "2016-11-25", + "startDate": "2016-06-18", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true }, { - "name": "IPSUM", - "endDate": "2021-01-08", - "startDate": "2014-07-08", + "uuid": "1bc92494-bff1-44d5-b665-5bc19eb9ee74", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2023-06-09", + "startDate": "2017-08-17", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": true + "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2014-02-05", - "startDate": "2014-07-23", + "uuid": "72e35133-2325-49f1-89ba-88ab8a4a18eb", + "name": "IPSUM", + "endDate": "2023-04-18", + "startDate": "2021-01-07", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": false + "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2021-04-15", - "startDate": "2015-05-09", + "uuid": "13a5db32-451e-4e2f-8fcc-8b1dc73be0a4", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2021-06-21", + "startDate": "2016-08-24", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], - "siteRegistry": false + "siteRegistry": true } ], "suspectLandUses": [ { + "uuid": "35e75a1e-bee0-4374-93de-126397e29e05", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-09-29 (described on Site Profile dated 2021-09-29)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "notes": "INSERTED FOR SITE PROFILE DATED 2020-03-07 (described on Site Profile dated 2020-03-07)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-01-26 (described on Site Profile dated 2019-01-26)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "uuid": "6297e98e-05e3-40f5-ae8f-0bd8d8d30f85", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2023-07-27 (described on Site Profile dated 2023-07-27)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], "parcelDescriptions": [ { + "uuid": "4162668a-c393-4fd7-b68e-9d2d28506892", "siteRegistry": false, - "dateNoted": "2014-10-04", - "parcelID": "18571", - "crownLandUsePIN": "18073", - "crownLandFileNumber": "17555", - "landDescription": "LOT 5 OF LOT 2 BLOCK 1 DISTRICT LOT 5 PLAN 3801" - }, - { - "siteRegistry": false, - "dateNoted": "2016-10-28", - "parcelID": "17433", - "crownLandUsePIN": "19435", - "crownLandFileNumber": "20809", - "landDescription": "LOT 1 OF LOT 5 BLOCK 1 DISTRICT LOT 5 PLAN 6959" + "dateNoted": "2016-12-05", + "parcelID": "18936", + "crownLandUsePIN": "20056", + "crownLandFileNumber": "16301", + "landDescription": "LOT 5 OF LOT 5 BLOCK 2 DISTRICT LOT 5 PLAN 5352" }, { + "uuid": "66075eb8-4529-4184-b075-e04e2761c9ce", "siteRegistry": true, - "dateNoted": "2019-11-06", - "parcelID": "19511", - "crownLandUsePIN": "17505", - "crownLandFileNumber": "17051", - "landDescription": "LOT 5 OF LOT 5 BLOCK 4 DISTRICT LOT 1 PLAN 4055" + "dateNoted": "2021-10-04", + "parcelID": "18814", + "crownLandUsePIN": "19086", + "crownLandFileNumber": "17860", + "landDescription": "LOT 3 OF LOT 4 BLOCK 1 DISTRICT LOT 5 PLAN 8221" }, { + "uuid": "5139165c-2d58-43f4-a3f9-80dba9f856d4", "siteRegistry": false, - "dateNoted": "2015-02-25", - "parcelID": "15941", - "crownLandUsePIN": "20736", - "crownLandFileNumber": "16545", - "landDescription": "LOT 2 OF LOT 5 BLOCK 5 DISTRICT LOT 4 PLAN 7051" + "dateNoted": "2017-03-28", + "parcelID": "20324", + "crownLandUsePIN": "19913", + "crownLandFileNumber": "20577", + "landDescription": "LOT 4 OF LOT 4 BLOCK 3 DISTRICT LOT 2 PLAN 6616" }, { - "siteRegistry": false, - "dateNoted": "2015-06-18", - "parcelID": "17207", - "crownLandUsePIN": "20992", - "crownLandFileNumber": "17324", - "landDescription": "LOT 2 OF LOT 1 BLOCK 2 DISTRICT LOT 1 PLAN 8742" + "uuid": "4feaa809-a0a4-4d01-9ab9-752950bdc24e", + "siteRegistry": true, + "dateNoted": "2021-05-02", + "parcelID": "15754", + "crownLandUsePIN": "18207", + "crownLandFileNumber": "19577", + "landDescription": "LOT 4 OF LOT 2 BLOCK 2 DISTRICT LOT 3 PLAN 9402" } ], "siteDisclosures": [ { + "uuid": "497ee474-be7e-44d8-8929-52b82faebdb5", "siteRegistry": true, - "dateReceived": "2023-02-18", - "dateCompleted": "2022-11-05", - "dateEntered": "2016-05-15", - "dateRegistrar": "2016-09-09", - "dateLocalAuthorityReceived": "2017-06-09", - "summary": "Quasi dolor molestiae natus tempore ipsa.\nIllum quidem ad voluptatem numquam qui reprehenderit iste consequatur dolorem.", - "informationUsed": "Doloribus repellendus iste vitae.\nEum vero alias eum incidunt.\nIste officiis consequuntur neque maxime est incidunt eius ex.\nAliquam non ea nisi perspiciatis.", - "pastOrPresentOrders": "Impedit facilis quas quidem odit.", + "dateReceived": "2021-07-13", + "dateCompleted": "2017-06-13", + "dateEntered": "2020-11-09", + "dateRegistrar": "2015-10-16", + "dateLocalAuthorityReceived": "2016-04-29", + "summary": "Ratione vero dolores magni ex molestiae repudiandae quisquam vitae nisi.", + "informationUsed": "In voluptas id nam delectus reprehenderit consequuntur quidem animi.\nDoloribus voluptas recusandae doloremque alias.\nExplicabo adipisci ut atque sapiente optio officiis nisi ea voluptatem.", + "pastOrPresentOrders": "Eveniet incidunt ex ipsam.\nMolestias perferendis repudiandae error neque.\nTemporibus ipsam libero corrupti quae enim in quos minus.", "commercialAndIndustrialPurposes": [ { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true - }, - { + "uuid": "0387907f-f6f8-445d-a718-d48029da531b", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false }, { - "scheduleReference": "F2*", + "uuid": "be94afcc-17ac-46f1-b289-a618c94954fc", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true - } - ] - }, - { - "siteRegistry": false, - "dateReceived": "2018-05-21", - "dateCompleted": "2015-01-04", - "dateEntered": "2020-10-01", - "dateRegistrar": "2019-10-31", - "dateLocalAuthorityReceived": "2015-11-23", - "summary": "In aspernatur dignissimos incidunt recusandae maiores.\nEveniet nesciunt distinctio consectetur similique deleniti esse omnis tempore.", - "informationUsed": "Eius provident tempore possimus blanditiis explicabo ea eveniet.\nEum dignissimos iste.\nMinus tempore nam.\nAd dignissimos occaecati vero facere modi accusantium perspiciatis quas perspiciatis.\nDeserunt nam itaque natus facere cumque fuga.", - "pastOrPresentOrders": "Tenetur excepturi voluptatibus omnis impedit tempora unde.\nHarum officia nesciunt consectetur nostrum libero quibusdam repudiandae.", - "commercialAndIndustrialPurposes": [ - { - "scheduleReference": "F2*", + "uuid": "42dd05e9-949d-47e9-bf8f-be1085124745", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false }, { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false - }, - { - "scheduleReference": "F2*", + "uuid": "1c03fb42-b275-40be-bf55-4d23b7ece9e7", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false + "siteRegistry": true } ] } ], "activityLog": [ { - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "SCHMIDT DUANE", - "timestamp": "2018-04-01" - }, - { - "siteRegistry": false, + "uuid": "db88dffa-3e2b-4c0e-969f-dd09a5301bbe", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "JOHNS ZANE", - "timestamp": "2014-09-25" + "user": "HAUCK-WIZA MARQUIS", + "timestamp": "2018-08-19" }, { + "uuid": "d95b9fcd-b0de-49b7-9c15-1b95d967ba18", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "BASHIRIAN CARLIE", - "timestamp": "2022-08-01" + "user": "OLSON ARVEL", + "timestamp": "2022-12-11" }, { + "uuid": "badd7dda-3876-4ee7-a8fe-fc4a58863aa8", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "KLEIN PEYTON", - "timestamp": "2018-05-07" + "user": "ROLFSON WILFRED", + "timestamp": "2017-08-21" }, { + "uuid": "5443f99c-de8e-49c0-9db1-36f83c37d002", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "HANSEN ABEL", - "timestamp": "2017-01-23" + "user": "MITCHELL DANNY", + "timestamp": "2022-09-26" }, { + "uuid": "3fe30cad-21ab-4f4d-80ad-2507aa71a316", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "MACEJKOVIC VERN", - "timestamp": "2014-06-06" + "user": "TORPHY MAX", + "timestamp": "2017-01-17" }, { + "uuid": "61550650-7597-4aaf-b979-1ada8ccf9b2d", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "ZIEME MALLIE", - "timestamp": "2019-03-21" - }, - { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "HOPPE JEREMIE", - "timestamp": "2017-09-07" + "user": "CARROLL NATALIE", + "timestamp": "2015-08-04" }, { + "uuid": "4b5b39f5-8136-4d39-a18b-5865bfc8300f", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "CRIST ALEEN", - "timestamp": "2018-12-15" + "user": "KAUTZER MITCHELL", + "timestamp": "2021-05-06" } ], "associatedSites": [ { - "dateNoted": "2015-06-08", + "uuid": "b2a6dea7-0c71-4bbf-a2ca-242dffc60946", + "dateNoted": "2022-12-15", "notes": "", - "parcelID": "18522", - "siteID": "20722", + "parcelID": "15764", + "siteID": "20469", "siteRegistry": true }, { - "dateNoted": "2015-01-05", + "uuid": "09cf2131-5ead-4b65-bf57-7a80c0ab26ae", + "dateNoted": "2018-05-24", "notes": "", - "parcelID": "19214", - "siteID": "17017", + "parcelID": "16441", + "siteID": "20510", "siteRegistry": true }, { - "dateNoted": "2017-04-14", + "uuid": "08f07f3f-c41e-44ce-ad8c-a6eca15e62a1", + "dateNoted": "2015-10-10", "notes": "", - "parcelID": "17357", - "siteID": "16392", - "siteRegistry": false + "parcelID": "18391", + "siteID": "17834", + "siteRegistry": true } ] }, { - "uuid": "f82668c7-210a-440a-8ade-2ecb4aaed5bd", - "siteID": 19346, - "address": "899 Dare Forges", - "latitude": 48.9122, - "longitude": -120.9673, - "lastUpdated": "2015-03-11", - "city": "Gleasonview", - "region": "Cariboo", - "victoriaFile": "26250-20/8292", + "uuid": "6fd8cde2-dd14-4cc4-b399-a7459c4b9895", + "siteID": 15735, + "address": "6674 Jean Ways", + "latitude": 54.3454, + "longitude": -138.8894, + "lastUpdated": "2023-09-07", + "city": "West Tevin", + "region": "Kootenay", + "victoriaFile": "26250-20/5665", "regionalFile": "N/A", "parcelIDs": [ - 7510192, - 8807058, - 8502392, - 6969073, - 8663270 + 449106, + 5421124, + 5864348, + 3420258, + 3242166 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2014-09-28", - "completed": "2019-02-15", - "initiated": "2014-11-13", - "ministryContact": "ZIEME MELYNA", + "uuid": "53d88616-d1b1-4542-bcc7-c7962b3d6d34", + "createdAt": "2019-08-13", + "completed": "2022-02-20", + "initiated": "2016-07-03", + "ministryContact": "RODRIGUEZ CLYDE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -74602,23 +85127,26 @@ ], "notationParticipants": [ { + "uuid": "889f4c1a-e622-45b3-adb8-be5ba0a80367", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true + "uuid": "80094fed-8785-4087-b74e-1de2aa3b7a42", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false } ], "siteRegistry": true }, { - "createdAt": "2013-10-21", - "completed": "2015-12-21", - "initiated": "2016-08-03", - "ministryContact": "BOGAN SHANY", + "uuid": "c0dc4e57-4164-45d6-8ba3-f101c2eac98b", + "createdAt": "2021-05-16", + "completed": "2022-04-17", + "initiated": "2020-06-15", + "ministryContact": "JACOBSON REBECCA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -74627,33 +85155,32 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { + "uuid": "067fe3bf-103e-4c94-96dc-6f539ff09047", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", + "uuid": "7a95add5-cfee-421e-80ca-363dd89062a9", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false }, { + "uuid": "e223c5f9-0348-42b1-b02a-3c24dd9696cb", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false } ], "siteRegistry": false }, { - "createdAt": "2018-03-02", - "completed": "2017-08-11", - "initiated": "2019-03-26", - "ministryContact": "O'HARA EULA", + "uuid": "81637f08-acbe-42ae-b834-80d6ba2a0864", + "createdAt": "2014-06-14", + "completed": "2015-03-16", + "initiated": "2015-10-11", + "ministryContact": "GERHOLD ALEK", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -74662,34 +85189,100 @@ ], "notationParticipants": [ { + "uuid": "a25a7c5d-c0d2-49c9-9631-3888f46f070c", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { + "uuid": "34cc6e11-50d0-4bb2-bac2-a536c0e54c12", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false + "role": "REQUESTED BY", + "siteRegistry": true } ], "siteRegistry": false + }, + { + "uuid": "2c6d4064-456f-40b9-9852-990d1f54e788", + "createdAt": "2015-12-04", + "completed": "2022-05-29", + "initiated": "2023-06-21", + "ministryContact": "MAGGIO MADIE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "uuid": "50a88013-3d1f-490b-b1d5-2f9aa7ebf351", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "1da34373-df90-410c-98b7-2912a1f9a985", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "uuid": "ef43b508-6989-4f5b-bd02-628f8650e405", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "uuid": "86701390-a020-4847-bb97-72e10a798b35", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true } ], "participants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2018-06-22", - "startDate": "2021-10-13", + "uuid": "9e81ffd1-c26f-4565-a62c-2913306d37c1", + "name": "AMET, DOLOR SIT", + "endDate": "2015-06-09", + "startDate": "2017-07-01", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true }, { + "uuid": "02b78a17-0903-440a-a1cb-631f9b9a1897", "name": "AMET, DOLOR SIT", - "endDate": "2017-01-21", - "startDate": "2021-07-28", + "endDate": "2018-10-13", + "startDate": "2016-05-22", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "uuid": "2c9caeb5-9aaf-4562-a769-5be2c8a8c5a8", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2017-04-11", + "startDate": "2014-08-18", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "uuid": "2df7dcca-5762-4143-bf7e-b46ef7693a01", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2016-08-24", + "startDate": "2014-08-17", "notes": "", "roles": [ "EMPLOYEE" @@ -74699,264 +85292,242 @@ ], "suspectLandUses": [ { + "uuid": "b866a279-d8e5-4606-8f9b-d4d589f5d4fc", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-03-27 (described on Site Profile dated 2014-03-27)", + "notes": "INSERTED FOR SITE PROFILE DATED 2014-03-22 (described on Site Profile dated 2014-03-22)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-05-05 (described on Site Profile dated 2018-05-05)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" - }, - { + "uuid": "819b8aee-5768-4225-9e86-be08f99a788c", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-11-29 (described on Site Profile dated 2019-11-29)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "notes": "INSERTED FOR SITE PROFILE DATED 2015-02-11 (described on Site Profile dated 2015-02-11)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { + "uuid": "8e4e4526-9787-480d-9868-6900a7757564", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-04-07 (described on Site Profile dated 2022-04-07)", + "notes": "INSERTED FOR SITE PROFILE DATED 2015-03-28 (described on Site Profile dated 2015-03-28)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { + "uuid": "1fed7ce9-113c-4de1-a2eb-8ba5b4970c29", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-08-22 (described on Site Profile dated 2016-08-22)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "notes": "INSERTED FOR SITE PROFILE DATED 2022-11-21 (described on Site Profile dated 2022-11-21)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], "parcelDescriptions": [ { + "uuid": "a40ac959-d169-4129-8bf8-93325b4dbac5", "siteRegistry": true, - "dateNoted": "2022-06-23", - "parcelID": "17676", - "crownLandUsePIN": "17414", - "crownLandFileNumber": "19684", - "landDescription": "LOT 3 OF LOT 4 BLOCK 1 DISTRICT LOT 3 PLAN 5468" - }, - { - "siteRegistry": false, - "dateNoted": "2019-08-06", - "parcelID": "16643", - "crownLandUsePIN": "15694", - "crownLandFileNumber": "19618", - "landDescription": "LOT 5 OF LOT 1 BLOCK 1 DISTRICT LOT 2 PLAN 8932" + "dateNoted": "2017-04-20", + "parcelID": "16749", + "crownLandUsePIN": "18012", + "crownLandFileNumber": "20257", + "landDescription": "LOT 2 OF LOT 5 BLOCK 5 DISTRICT LOT 2 PLAN 9485" }, { + "uuid": "f963a2ff-5fe0-471b-8d78-8b20ae93f895", "siteRegistry": true, - "dateNoted": "2022-02-16", - "parcelID": "17575", - "crownLandUsePIN": "20270", - "crownLandFileNumber": "16712", - "landDescription": "LOT 5 OF LOT 4 BLOCK 4 DISTRICT LOT 4 PLAN 8135" + "dateNoted": "2023-02-07", + "parcelID": "20964", + "crownLandUsePIN": "20656", + "crownLandFileNumber": "20949", + "landDescription": "LOT 1 OF LOT 3 BLOCK 2 DISTRICT LOT 1 PLAN 6581" }, { - "siteRegistry": false, - "dateNoted": "2022-11-22", - "parcelID": "16761", - "crownLandUsePIN": "16508", - "crownLandFileNumber": "18454", - "landDescription": "LOT 4 OF LOT 5 BLOCK 1 DISTRICT LOT 4 PLAN 3055" + "uuid": "bc420401-e73f-4f4f-9ee3-e3a287e6c3d2", + "siteRegistry": true, + "dateNoted": "2021-06-12", + "parcelID": "18353", + "crownLandUsePIN": "16315", + "crownLandFileNumber": "15272", + "landDescription": "LOT 3 OF LOT 4 BLOCK 4 DISTRICT LOT 5 PLAN 8843" }, { - "siteRegistry": false, - "dateNoted": "2019-04-17", - "parcelID": "19106", - "crownLandUsePIN": "17853", - "crownLandFileNumber": "18647", - "landDescription": "LOT 5 OF LOT 3 BLOCK 1 DISTRICT LOT 2 PLAN 8205" + "uuid": "770a2374-e4ca-43f1-b71f-84bcdb2078bb", + "siteRegistry": true, + "dateNoted": "2019-12-20", + "parcelID": "17495", + "crownLandUsePIN": "18921", + "crownLandFileNumber": "15887", + "landDescription": "LOT 2 OF LOT 4 BLOCK 3 DISTRICT LOT 2 PLAN 9182" } ], "siteDisclosures": [ { - "siteRegistry": false, - "dateReceived": "2020-02-03", - "dateCompleted": "2014-09-22", - "dateEntered": "2016-05-29", - "dateRegistrar": "2019-02-01", - "dateLocalAuthorityReceived": "2021-10-21", - "summary": "Doloribus reprehenderit eligendi.", - "informationUsed": "Dignissimos incidunt culpa.\nDolores ab nisi itaque non.\nDicta dolorum inventore perferendis repudiandae iusto accusantium provident libero amet.\nAb quam est.\nVoluptas iste sint.", - "pastOrPresentOrders": "Quaerat porro aliquam.", + "uuid": "bb1514d0-fbe5-46e3-9ee5-c39fc82c22c6", + "siteRegistry": true, + "dateReceived": "2020-11-14", + "dateCompleted": "2021-01-29", + "dateEntered": "2016-05-18", + "dateRegistrar": "2021-07-15", + "dateLocalAuthorityReceived": "2020-05-15", + "summary": "Ullam aperiam itaque harum labore.\nDelectus minus fugiat explicabo illum iure dolores optio quae magni.", + "informationUsed": "Sint nostrum officiis amet deleniti perspiciatis ab hic fugit quibusdam.\nMagnam quam natus.\nNobis laudantium minima sequi facere deserunt vel veritatis ut.\nHarum minus nam laborum soluta excepturi totam facere rem dignissimos.", + "pastOrPresentOrders": "Magnam animi alias quibusdam officiis atque nihil placeat laudantium.\nEa sunt modi earum ea ad excepturi.\nNemo laboriosam fugit suscipit eum nihil.", "commercialAndIndustrialPurposes": [ { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "uuid": "f17736f9-b6a4-4b4a-aad6-7e2cae181e45", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, { + "uuid": "b3a3f79d-1ece-4d6a-a0ac-b9a7e90aa53d", "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false + }, + { + "uuid": "5d3c9388-afe2-4f49-b97d-e5961f2c889d", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true } ] }, { - "siteRegistry": true, - "dateReceived": "2022-12-11", - "dateCompleted": "2014-05-07", - "dateEntered": "2017-04-22", - "dateRegistrar": "2016-04-16", - "dateLocalAuthorityReceived": "2022-04-30", - "summary": "Eligendi accusantium aperiam fuga culpa rem odit inventore.", - "informationUsed": "Earum voluptate ipsa dolore distinctio.\nTotam voluptate occaecati.\nIste veritatis harum laborum eaque a non ipsam.\nA placeat ducimus odio vel id non beatae facere doloribus.", - "pastOrPresentOrders": "Ratione dolor id quo ea.", + "uuid": "88b94cd8-ccf1-4315-a8ae-146afe940390", + "siteRegistry": false, + "dateReceived": "2014-12-25", + "dateCompleted": "2019-09-08", + "dateEntered": "2019-11-29", + "dateRegistrar": "2014-03-24", + "dateLocalAuthorityReceived": "2023-03-28", + "summary": "Aperiam quidem voluptate illo laudantium.", + "informationUsed": "Esse explicabo debitis.\nRerum occaecati ad.\nItaque dignissimos autem.\nDignissimos tempore maxime commodi nam sed odio.\nAutem quam dolorum quidem officia error corporis.", + "pastOrPresentOrders": "Asperiores doloribus maxime minus impedit.\nMagnam dignissimos minima modi magni.\nVoluptatem non veniam.", "commercialAndIndustrialPurposes": [ { - "scheduleReference": "F2*", + "uuid": "00e572b0-f39d-442b-bad8-d06c7284c83d", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "uuid": "8b6133e5-4095-4c87-97bf-aa96748757c3", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { - "scheduleReference": "F2*", + "uuid": "06edd3e5-7eec-4021-8f3a-aaf66bf0744c", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false }, { + "uuid": "739e47e9-f26f-4704-ad2e-2bfb2345b07d", "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false } ] } ], "activityLog": [ { - "siteRegistry": false, + "uuid": "4e335fcf-8af1-40ca-bf5b-b577f8a84995", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "ABERNATHY ESTHER", - "timestamp": "2018-12-11" + "user": "HANSEN GENESIS", + "timestamp": "2023-08-27" }, { - "siteRegistry": true, + "uuid": "53fee0ae-ae97-4f64-ac47-8afed3c1d1db", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "WALKER LEO", - "timestamp": "2015-11-20" + "user": "CASSIN DORIS", + "timestamp": "2017-04-15" }, { - "siteRegistry": false, + "uuid": "04aa84da-1c1e-44b5-b5be-9851187d43c9", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "KIRLIN AUGUSTA", - "timestamp": "2020-01-26" + "user": "GOTTLIEB THERON", + "timestamp": "2023-01-15" }, { - "siteRegistry": false, + "uuid": "66ef71a6-8c87-44c4-a41b-c8306ea5541b", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "ROMAGUERA-BREKKE ANGIE", - "timestamp": "2017-02-08" + "user": "AUFDERHAR BRENDEN", + "timestamp": "2020-08-17" }, { + "uuid": "1f46fbba-6af8-4dad-81f2-3aa0acba1fad", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "HERMISTON LOTTIE", - "timestamp": "2015-10-10" + "user": "LEMKE VLADIMIR", + "timestamp": "2017-04-09" }, { - "siteRegistry": false, + "uuid": "694648cb-fa65-4a15-8500-87638d290abb", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "STEUBER AHMED", - "timestamp": "2022-05-28" + "user": "CRIST CHET", + "timestamp": "2017-09-03" }, { + "uuid": "1bee7f63-a3ee-4283-987f-6c1d097513c5", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "LEFFLER BERENICE", - "timestamp": "2020-06-15" + "user": "ABERNATHY ARDELLA", + "timestamp": "2015-04-12" }, { + "uuid": "ecd6dcc4-7b03-438c-b9bc-394184ca99ef", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "ROMAGUERA MICHELLE", - "timestamp": "2023-05-29" + "user": "REMPEL HAILEY", + "timestamp": "2020-02-18" }, { + "uuid": "a71295f9-33c1-42eb-946c-f3634f7ba489", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "BEATTY DEMETRIUS", - "timestamp": "2020-10-15" + "user": "LANG IGNATIUS", + "timestamp": "2021-10-19" } ], "associatedSites": [ { - "dateNoted": "2019-03-30", - "notes": "", - "parcelID": "20946", - "siteID": "16853", - "siteRegistry": false - }, - { - "dateNoted": "2019-10-22", + "uuid": "2f72468c-b21e-4936-944e-a0c40c026776", + "dateNoted": "2014-09-10", "notes": "", - "parcelID": "16138", - "siteID": "16960", + "parcelID": "19039", + "siteID": "20146", "siteRegistry": false } ] }, - { - "uuid": "b0f8aac9-9a2b-4ddc-974b-35fd123c325d", - "siteID": 18614, - "address": "2435 Koch Inlet", - "latitude": 50.0763, - "longitude": -121.009, - "lastUpdated": "2020-03-30", - "city": "Mount Pleasant", - "region": "Cariboo", - "victoriaFile": "26250-20/16800", - "regionalFile": "N/A", - "parcelIDs": [ - 9350834, - 8004831, - 9163136, - 7748006, - 2751107 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "createdAt": "2018-06-19", - "completed": "2018-04-25", - "initiated": "2017-03-19", - "ministryContact": "JACOBS KACI", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - } - ], - "siteRegistry": true - }, + { + "uuid": "8d540fbf-21c7-418a-8ec1-53ed56ebf1ac", + "siteID": 19137, + "address": "19112 Rau Hills", + "latitude": 55.2899, + "longitude": -118.6117, + "lastUpdated": "2023-08-17", + "city": "West Pattie", + "region": "Mainland/Southwest", + "victoriaFile": "26250-20/18479", + "regionalFile": "N/A", + "parcelIDs": [ + 5975265, + 6753182, + 5519686, + 9936873, + 9861046 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ { - "createdAt": "2022-08-01", - "completed": "2022-10-14", - "initiated": "2014-09-10", - "ministryContact": "SCHOEN MORTIMER", + "uuid": "9ed521d7-049d-48ab-86f5-95ea6135d062", + "createdAt": "2014-10-14", + "completed": "2019-02-23", + "initiated": "2020-06-12", + "ministryContact": "FAHEY MOLLIE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -74965,33 +85536,26 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { + "uuid": "0fed47d9-8f61-4190-8380-d845458dca0a", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": true }, { + "uuid": "66d58312-7731-4701-ac9f-c54e4acf48c0", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false + "role": "REQUESTED BY", + "siteRegistry": true } ], "siteRegistry": true }, { - "createdAt": "2015-08-19", - "completed": "2016-09-16", - "initiated": "2017-05-03", - "ministryContact": "ABERNATHY KING", + "uuid": "a712a867-cb04-41c9-b3bb-2139984a6ffc", + "createdAt": "2023-07-09", + "completed": "2020-06-05", + "initiated": "2017-12-04", + "ministryContact": "O'CONNER CLAUDINE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -75000,34 +85564,45 @@ ], "notationParticipants": [ { + "uuid": "e2f160af-cd3f-457b-941e-adff07c6108e", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "uuid": "8c0afcf4-3dc5-4e75-a47f-e6bec782e0af", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false + "uuid": "f90644c2-39eb-4c01-b97e-1ab242afad3d", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "uuid": "e4dff49c-c222-4e5a-be4f-e34f19e9a383", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", "siteRegistry": true }, { + "uuid": "c1c46637-33f2-462d-a10d-d82ca4e4b793", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false } ], "participants": [ { - "name": "IPSUM", - "endDate": "2022-03-02", - "startDate": "2017-05-23", + "uuid": "d6851e77-fc70-4593-8980-c09da296cd9b", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2018-04-02", + "startDate": "2022-06-09", "notes": "", "roles": [ "ORGANIZATION" @@ -75035,19 +85610,21 @@ "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2018-08-01", - "startDate": "2021-02-05", + "uuid": "c30ddd5a-9ae6-4d71-96e6-9297cac4a27b", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2018-01-13", + "startDate": "2017-09-17", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": false }, { + "uuid": "4c167d7c-8550-4ecf-b15f-f1a6448b106c", "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2015-02-02", - "startDate": "2016-05-01", + "endDate": "2014-05-02", + "startDate": "2016-07-27", "notes": "", "roles": [ "ORGANIZATION" @@ -75057,93 +85634,97 @@ ], "suspectLandUses": [ { + "uuid": "bc2decb7-cdb8-4a9c-87d6-137dd7334890", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2023-02-25 (described on Site Profile dated 2023-02-25)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "notes": "INSERTED FOR SITE PROFILE DATED 2022-12-07 (described on Site Profile dated 2022-12-07)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-10-30 (described on Site Profile dated 2017-10-30)", + "uuid": "48126f11-6546-43d2-9099-bf20986a5e1d", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2013-12-18 (described on Site Profile dated 2013-12-18)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { + "uuid": "1ebb5202-5746-4532-9354-0746d3ca7f11", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-01-29 (described on Site Profile dated 2015-01-29)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "notes": "INSERTED FOR SITE PROFILE DATED 2018-06-14 (described on Site Profile dated 2018-06-14)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-06-26 (described on Site Profile dated 2018-06-26)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "uuid": "d3918c5a-3f0c-48d6-98af-553424973ecb", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2017-01-03 (described on Site Profile dated 2017-01-03)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], "parcelDescriptions": [ { + "uuid": "4fd195e6-1d8b-47ad-a9ee-28d6bfa9e69a", "siteRegistry": true, - "dateNoted": "2018-08-22", - "parcelID": "17283", - "crownLandUsePIN": "15977", - "crownLandFileNumber": "18900", - "landDescription": "LOT 3 OF LOT 1 BLOCK 5 DISTRICT LOT 2 PLAN 4808" + "dateNoted": "2021-09-23", + "parcelID": "17495", + "crownLandUsePIN": "17124", + "crownLandFileNumber": "19328", + "landDescription": "LOT 5 OF LOT 4 BLOCK 4 DISTRICT LOT 2 PLAN 5546" }, { - "siteRegistry": false, - "dateNoted": "2023-04-04", - "parcelID": "17877", - "crownLandUsePIN": "18464", - "crownLandFileNumber": "16383", - "landDescription": "LOT 2 OF LOT 5 BLOCK 1 DISTRICT LOT 4 PLAN 9689" + "uuid": "bc9f1b5d-5cbf-4aeb-8ef4-d66fe2b7da59", + "siteRegistry": true, + "dateNoted": "2022-11-27", + "parcelID": "16691", + "crownLandUsePIN": "19115", + "crownLandFileNumber": "16965", + "landDescription": "LOT 2 OF LOT 2 BLOCK 5 DISTRICT LOT 5 PLAN 9212" }, { + "uuid": "d3808ae9-1e9b-4401-8a5b-cae9d0f28ce3", "siteRegistry": false, - "dateNoted": "2020-07-16", - "parcelID": "18372", - "crownLandUsePIN": "19935", - "crownLandFileNumber": "20232", - "landDescription": "LOT 1 OF LOT 3 BLOCK 1 DISTRICT LOT 2 PLAN 7302" - }, - { - "siteRegistry": true, - "dateNoted": "2021-04-02", - "parcelID": "20051", - "crownLandUsePIN": "19459", - "crownLandFileNumber": "15526", - "landDescription": "LOT 4 OF LOT 4 BLOCK 1 DISTRICT LOT 5 PLAN 8610" + "dateNoted": "2022-03-12", + "parcelID": "16196", + "crownLandUsePIN": "18348", + "crownLandFileNumber": "15852", + "landDescription": "LOT 3 OF LOT 1 BLOCK 4 DISTRICT LOT 1 PLAN 6230" }, { + "uuid": "c37b0786-2c45-46e7-ab18-15b8c9a851f3", "siteRegistry": false, - "dateNoted": "2021-04-10", - "parcelID": "16188", - "crownLandUsePIN": "17595", - "crownLandFileNumber": "19615", - "landDescription": "LOT 2 OF LOT 5 BLOCK 2 DISTRICT LOT 4 PLAN 3933" + "dateNoted": "2018-05-29", + "parcelID": "15905", + "crownLandUsePIN": "15523", + "crownLandFileNumber": "15747", + "landDescription": "LOT 4 OF LOT 5 BLOCK 4 DISTRICT LOT 4 PLAN 5954" } ], "siteDisclosures": [ { + "uuid": "32da7109-a9d0-4172-8671-d1f8d3e66fce", "siteRegistry": false, - "dateReceived": "2021-06-15", - "dateCompleted": "2018-01-20", - "dateEntered": "2015-07-25", - "dateRegistrar": "2018-05-06", - "dateLocalAuthorityReceived": "2021-03-07", - "summary": "Occaecati saepe expedita enim hic molestiae totam beatae dolore.\nNemo voluptates nihil quas at inventore quaerat amet.\nCumque cupiditate consectetur voluptatibus veniam earum.", - "informationUsed": "Delectus repellat praesentium minus recusandae architecto ipsa.\nPerferendis saepe accusamus.\nEaque beatae officiis odio debitis.\nEveniet excepturi eum quaerat vitae quia neque tenetur id.", - "pastOrPresentOrders": "Corporis recusandae ab delectus sequi.\nAnimi ullam ad porro.", + "dateReceived": "2016-07-01", + "dateCompleted": "2014-05-11", + "dateEntered": "2017-06-09", + "dateRegistrar": "2019-05-23", + "dateLocalAuthorityReceived": "2014-07-08", + "summary": "Nam omnis sapiente repellat explicabo delectus.", + "informationUsed": "Modi fugit unde labore dolorum natus at natus.\nLaborum velit quasi sequi voluptatum quasi recusandae nesciunt.\nNam enim doloribus aliquam commodi.\nAlias laborum illum mollitia.\nIpsum quidem quia unde deleniti veniam atque.", + "pastOrPresentOrders": "Earum dignissimos laudantium ab impedit facilis temporibus optio cum.", "commercialAndIndustrialPurposes": [ { + "uuid": "74a430d1-bd89-4d58-a02d-9c0a8216f920", "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true }, { - "scheduleReference": "F1*", + "uuid": "e0caeb01-c2fe-473a-8617-2352d8603873", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false }, { + "uuid": "4d372a99-d9f0-4e66-a023-cdc2d4d6a092", "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false } ] @@ -75151,83 +85732,122 @@ ], "activityLog": [ { + "uuid": "923d330b-648f-4226-80e0-2ddb0448d801", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "KOZEY KAMREN", - "timestamp": "2014-11-29" + "user": "LUETTGEN GIOVANNA", + "timestamp": "2015-10-22" }, { + "uuid": "162806f4-f63b-4d7c-b6eb-4fb732a055fc", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "STRACKE CRISTINA", - "timestamp": "2018-04-19" + "user": "ROBERTS EMELIA", + "timestamp": "2018-09-24" }, { + "uuid": "aa01f97e-fba1-46c7-8d66-7d1c59f43960", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "VANDERVORT CALI", - "timestamp": "2017-05-03" + "user": "KIHN BUCK", + "timestamp": "2015-09-09" }, { + "uuid": "dc11f155-98a1-4ebd-96c7-af0c4ee55f75", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "WYMAN KACI", - "timestamp": "2023-05-21" + "user": "RYAN MELANY", + "timestamp": "2015-05-27" + }, + { + "uuid": "711fa1d2-2432-44c6-ac12-834745b293f8", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "WAELCHI CADEN", + "timestamp": "2020-10-09" }, { + "uuid": "2223e987-ffee-4731-b6d5-4e9868ea3952", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "VEUM CLOVIS", - "timestamp": "2021-07-03" + "user": "HOWELL GEOFFREY", + "timestamp": "2019-04-15" }, { + "uuid": "0fb62909-1543-4d82-bce5-184502849060", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "BOEHM ARCH", - "timestamp": "2022-01-09" + "user": "EMARD PAULINE", + "timestamp": "2023-03-18" }, { + "uuid": "39a1e5e8-dc1e-4a3f-8c5f-2eeb148eeaeb", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "KUB CALE", - "timestamp": "2018-06-18" + "user": "SCHINNER JUDGE", + "timestamp": "2015-11-16" + }, + { + "uuid": "fa58216a-f6cf-4269-81fa-0b9ba4f95029", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "SPENCER-HEANEY ELIANE", + "timestamp": "2023-07-22" } ], "associatedSites": [ { - "dateNoted": "2019-09-04", + "uuid": "548a9e14-f78f-40c7-90c4-8e680f3d9c76", + "dateNoted": "2016-12-08", "notes": "", - "parcelID": "17262", - "siteID": "18240", + "parcelID": "17976", + "siteID": "15261", + "siteRegistry": false + }, + { + "uuid": "02f4329a-e048-43db-b59f-7ddf7fa10fa2", + "dateNoted": "2018-02-14", + "notes": "", + "parcelID": "16923", + "siteID": "17933", + "siteRegistry": true + }, + { + "uuid": "32352504-ad82-456b-8674-757912128433", + "dateNoted": "2021-04-02", + "notes": "", + "parcelID": "17556", + "siteID": "20154", "siteRegistry": false } ] }, { - "uuid": "87e9824b-116d-44e9-a685-d09d5b1dc175", - "siteID": 18191, - "address": "7160 Otis Prairie", - "latitude": 52.3914, - "longitude": -122.6916, - "lastUpdated": "2018-04-20", - "city": "West Kittyfort", - "region": "Kootenay", - "victoriaFile": "26250-20/5703", + "uuid": "56fc74ac-b067-451e-89c2-c4e8c0fe4de8", + "siteID": 19230, + "address": "642 Zack Route", + "latitude": 49.0956, + "longitude": -126.6438, + "lastUpdated": "2019-09-08", + "city": "Midland", + "region": "Thompson-Okanagan", + "victoriaFile": "26250-20/6555", "regionalFile": "N/A", "parcelIDs": [ - 9575039, - 9711071, - 2391706, - 9604276, - 6549991 + 8464132, + 823928, + 1943711, + 9386189, + 7548622 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2022-07-14", - "completed": "2014-05-10", - "initiated": "2022-06-01", - "ministryContact": "TERRY JULIE", + "uuid": "9c085213-29d8-435b-800c-77518fe21358", + "createdAt": "2014-11-05", + "completed": "2022-02-16", + "initiated": "2021-10-03", + "ministryContact": "GREENHOLT KARINA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -75236,38 +85856,32 @@ ], "notationParticipants": [ { + "uuid": "2222f95a-9179-4e5c-878f-eecd38d2fb06", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false }, { + "uuid": "03827e13-52f4-424e-b436-7ed69bfc9149", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "1690ec9c-c981-48e4-8bed-7b99127295f2", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2017-10-01", - "completed": "2020-04-23", - "initiated": "2020-03-12", - "ministryContact": "BINS KELSIE", + "uuid": "6fe56ce5-a75f-457f-9c6f-25ef3e2aa42e", + "createdAt": "2015-02-19", + "completed": "2014-02-15", + "initiated": "2022-09-25", + "ministryContact": "BERGSTROM MONICA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -75276,29 +85890,28 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { + "uuid": "cc040cda-0703-4576-83f0-94ba43681817", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "uuid": "e61e0097-82d2-48b6-bbdd-741923546c68", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "uuid": "a6f31da4-27f0-447d-95c5-1aca93484417", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false + "uuid": "a18189ab-2790-47b2-8acf-51c97edf6b48", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true } ], "siteRegistry": false @@ -75306,19 +85919,32 @@ ], "participants": [ { - "name": "IPSUM", - "endDate": "2021-06-06", - "startDate": "2019-07-26", + "uuid": "e593f454-3fc4-4159-93fb-2dc2797f2039", + "name": "AMET, DOLOR SIT", + "endDate": "2021-09-24", + "startDate": "2019-02-25", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": false }, { + "uuid": "8d3d8b70-b317-4c0a-8603-c5b7bae3f2f7", "name": "IPSUM", - "endDate": "2021-11-17", - "startDate": "2023-07-27", + "endDate": "2016-12-29", + "startDate": "2015-10-01", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "uuid": "7d6da180-d2ba-4091-bc82-2170d4cbe479", + "name": "AMET, DOLOR SIT", + "endDate": "2014-01-22", + "startDate": "2018-02-19", "notes": "", "roles": [ "EMPLOYEE" @@ -75328,69 +85954,76 @@ ], "suspectLandUses": [ { + "uuid": "28f047bb-9a0a-424e-8bcf-d51669e4f988", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2023-06-26 (described on Site Profile dated 2023-06-26)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" - }, - { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-03-08 (described on Site Profile dated 2014-03-08)", + "notes": "INSERTED FOR SITE PROFILE DATED 2019-12-15 (described on Site Profile dated 2019-12-15)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { + "uuid": "7e10a989-9389-4f2a-9e12-52e241d198ca", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-11-12 (described on Site Profile dated 2015-11-12)", + "notes": "INSERTED FOR SITE PROFILE DATED 2015-07-29 (described on Site Profile dated 2015-07-29)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], "parcelDescriptions": [ { - "siteRegistry": true, - "dateNoted": "2021-07-22", - "parcelID": "15922", - "crownLandUsePIN": "19199", - "crownLandFileNumber": "16237", - "landDescription": "LOT 3 OF LOT 5 BLOCK 1 DISTRICT LOT 5 PLAN 6227" + "uuid": "f1153fc6-d50c-42f6-b22d-2ba8b53be079", + "siteRegistry": false, + "dateNoted": "2023-09-15", + "parcelID": "18681", + "crownLandUsePIN": "19978", + "crownLandFileNumber": "15387", + "landDescription": "LOT 3 OF LOT 5 BLOCK 3 DISTRICT LOT 1 PLAN 6318" }, { + "uuid": "5e17f079-ba98-4fe8-b147-997706e6c603", + "siteRegistry": false, + "dateNoted": "2017-05-30", + "parcelID": "17401", + "crownLandUsePIN": "18535", + "crownLandFileNumber": "20144", + "landDescription": "LOT 3 OF LOT 2 BLOCK 2 DISTRICT LOT 4 PLAN 7426" + }, + { + "uuid": "f46b2d3d-5831-4372-aadd-7c569337930e", "siteRegistry": true, - "dateNoted": "2016-12-31", - "parcelID": "15270", - "crownLandUsePIN": "17543", - "crownLandFileNumber": "19464", - "landDescription": "LOT 4 OF LOT 1 BLOCK 2 DISTRICT LOT 4 PLAN 9706" + "dateNoted": "2016-10-01", + "parcelID": "16551", + "crownLandUsePIN": "15766", + "crownLandFileNumber": "20540", + "landDescription": "LOT 2 OF LOT 4 BLOCK 4 DISTRICT LOT 2 PLAN 4428" } ], "siteDisclosures": [ { - "siteRegistry": true, - "dateReceived": "2016-12-16", - "dateCompleted": "2016-04-23", - "dateEntered": "2022-06-22", - "dateRegistrar": "2014-10-12", - "dateLocalAuthorityReceived": "2022-06-21", - "summary": "Dolorem repudiandae quia vel.", - "informationUsed": "Nostrum nemo sed.\nNihil eveniet sint fugit est occaecati laborum fuga molestiae.\nDignissimos soluta est adipisci illum blanditiis sunt sit placeat.", - "pastOrPresentOrders": "Est nihil reiciendis est.\nOmnis totam porro voluptatibus consectetur maiores exercitationem autem.", + "uuid": "57599125-ccf0-4f2a-ab12-7ae03d4b6e09", + "siteRegistry": false, + "dateReceived": "2023-06-30", + "dateCompleted": "2020-08-01", + "dateEntered": "2017-06-27", + "dateRegistrar": "2022-07-02", + "dateLocalAuthorityReceived": "2019-04-18", + "summary": "Nam ullam cum exercitationem optio.", + "informationUsed": "Iste quibusdam perferendis itaque perferendis.\nNulla alias quae ut iusto facere atque.\nSit at vel magni consequatur id debitis iusto ducimus.\nIste esse beatae a maxime exercitationem.\nLaborum temporibus omnis laboriosam quo necessitatibus.", + "pastOrPresentOrders": "Nam vitae culpa.", "commercialAndIndustrialPurposes": [ { + "uuid": "03544241-4fe2-4996-963d-057234a1b505", "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, { - "scheduleReference": "F1*", + "uuid": "7fe126e9-127e-4fc5-ad9e-536a75c8590f", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false }, { + "uuid": "0a84604b-d74b-4cf5-9cb3-0dbbe790d61c", "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true - }, - { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false } ] @@ -75398,71 +86031,108 @@ ], "activityLog": [ { + "uuid": "1294db0e-0daa-4352-bce3-6bb2fdca0523", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "GISLASON EVA", + "timestamp": "2020-07-09" + }, + { + "uuid": "9e4dda63-1639-4715-b582-2d8d377f3c41", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "WILLIAMSON LUCIANO", + "timestamp": "2016-11-24" + }, + { + "uuid": "2d19e46a-6272-400e-a92e-efaf5a06fde0", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "BERGSTROM ALDEN", - "timestamp": "2022-03-22" + "user": "CASPER BEN", + "timestamp": "2017-05-10" }, { + "uuid": "5706e16b-0cee-4c1b-b01d-074c32778c82", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "CRONA ERA", - "timestamp": "2017-04-08" + "user": "STAMM LERA", + "timestamp": "2021-05-26" }, { - "siteRegistry": false, + "uuid": "307ee0e0-9104-4c32-a287-15c0e9be7c5c", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "CUMMERATA CHAIM", - "timestamp": "2015-02-26" + "user": "CUMMINGS MABELLE", + "timestamp": "2023-02-25" }, { + "uuid": "809ffe53-a145-49e8-8253-7b8464d6d222", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "BERGNAUM BEN", - "timestamp": "2018-01-23" + "user": "DUBUQUE JARRETT", + "timestamp": "2019-08-17" }, { - "siteRegistry": false, + "uuid": "e5c5f4c4-858b-4163-811f-e94835add1b1", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "SCHUSTER ROXANE", - "timestamp": "2015-09-13" + "user": "KRIS BENTON", + "timestamp": "2020-06-28" } ], "associatedSites": [ { - "dateNoted": "2016-11-07", + "uuid": "35f5937a-4426-4aa7-a297-bcb0e70ccfe8", + "dateNoted": "2015-07-22", + "notes": "", + "parcelID": "16880", + "siteID": "17727", + "siteRegistry": true + }, + { + "uuid": "fc720656-4d9d-47f7-84e4-444cc32883be", + "dateNoted": "2021-03-12", "notes": "", - "parcelID": "15331", - "siteID": "15758", + "parcelID": "19007", + "siteID": "18583", "siteRegistry": true + }, + { + "uuid": "b157271d-052b-4293-b6bd-0d0ae931ae87", + "dateNoted": "2021-11-08", + "notes": "", + "parcelID": "17426", + "siteID": "17483", + "siteRegistry": false } ] }, { - "uuid": "9df8aabd-f192-4906-b1d4-c5e78894aab0", - "siteID": 16604, - "address": "24084 Wehner Station", - "latitude": 56.9275, - "longitude": -128.7475, - "lastUpdated": "2014-03-31", - "city": "New Rachelleside", - "region": "Vancouver Island/Coast", - "victoriaFile": "26250-20/19786", + "uuid": "799deffe-7bdc-4131-8939-c4cc0fec3899", + "siteID": 18794, + "address": "7499 Barton Extension", + "latitude": 50.6234, + "longitude": -118.7952, + "lastUpdated": "2018-09-23", + "city": "Gilbertofurt", + "region": "Cariboo", + "victoriaFile": "26250-20/14868", "regionalFile": "N/A", "parcelIDs": [ - 5368307, - 1802526, - 8096965, - 3720508, - 3536533 + 6645559, + 1672485, + 3180471, + 6228292, + 2283946 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2021-12-06", - "completed": "2016-06-12", - "initiated": "2022-04-20", - "ministryContact": "WEBER LINNIE", + "uuid": "64358954-d927-40a1-8464-d0332b396b25", + "createdAt": "2022-10-28", + "completed": "2020-10-27", + "initiated": "2017-12-27", + "ministryContact": "BOEHM MAUREEN", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -75471,38 +86141,26 @@ ], "notationParticipants": [ { + "uuid": "9ab740bf-5daa-44e3-8c7a-5c451c3b4ef1", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false }, { + "uuid": "8e6c2941-e7b6-413c-995f-b74218ff319e", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2017-07-08", - "completed": "2022-09-03", - "initiated": "2021-11-15", - "ministryContact": "MILLER ELLIOT", + "uuid": "1abd53ff-82f8-4e19-b455-847a213ad233", + "createdAt": "2014-12-30", + "completed": "2014-12-29", + "initiated": "2016-11-07", + "ministryContact": "BOGAN LAWRENCE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -75511,33 +86169,38 @@ ], "notationParticipants": [ { + "uuid": "849f94b9-0ad9-4641-84a8-9080e4b7303f", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { + "uuid": "8eb55fdd-f51f-4453-8220-97178da18493", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "0f86b02b-fc2f-435c-a3d1-2fee142a7783", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "c95a0d2e-dc55-449d-b295-b27591170939", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2019-12-02", - "completed": "2020-08-27", - "initiated": "2018-01-13", - "ministryContact": "PFANNERSTILL ODA", + "uuid": "a653cf67-4326-404f-9aee-7d1c2699719d", + "createdAt": "2019-05-26", + "completed": "2020-07-03", + "initiated": "2016-10-17", + "ministryContact": "SWANIAWSKI QUINTON", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -75546,24 +86209,22 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", + "uuid": "7596c0c6-f3bd-4328-9013-d75d396f428e", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { + "uuid": "b31fa4d8-8595-468f-baf3-4a57f38891df", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "3a58b8bd-52ef-4305-a950-acdcf8c28729", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true } ], "siteRegistry": true @@ -75571,9 +86232,10 @@ ], "participants": [ { - "name": "AMET, DOLOR SIT", - "endDate": "2019-06-19", - "startDate": "2016-12-05", + "uuid": "8836e5d3-64df-4987-bf0f-906f848d7ed0", + "name": "IPSUM", + "endDate": "2014-01-19", + "startDate": "2014-03-31", "notes": "", "roles": [ "ORGANIZATION" @@ -75581,136 +86243,116 @@ "siteRegistry": false }, { - "name": "IPSUM", - "endDate": "2016-12-19", - "startDate": "2014-08-17", + "uuid": "3cfcbc1d-0865-4bd6-ab9f-d2f28d8ccc0c", + "name": "AMET, DOLOR SIT", + "endDate": "2022-01-16", + "startDate": "2017-03-08", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "uuid": "cdb2d6fd-ad92-478d-b029-4f8552fc2b66", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2019-12-11", + "startDate": "2019-10-23", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true } ], "suspectLandUses": [ { + "uuid": "d2896841-4995-47ac-9215-7463fb23b309", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-09-14 (described on Site Profile dated 2014-09-14)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" - }, - { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-03-31 (described on Site Profile dated 2016-03-31)", + "notes": "INSERTED FOR SITE PROFILE DATED 2018-10-08 (described on Site Profile dated 2018-10-08)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { + "uuid": "b874a2cf-295a-414d-a415-f64c81b6878f", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2023-05-13 (described on Site Profile dated 2023-05-13)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "notes": "INSERTED FOR SITE PROFILE DATED 2019-12-14 (described on Site Profile dated 2019-12-14)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { + "uuid": "26af7325-7e86-46f6-b4b2-58be967d60ab", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-06-14 (described on Site Profile dated 2019-06-14)", + "notes": "INSERTED FOR SITE PROFILE DATED 2015-04-02 (described on Site Profile dated 2015-04-02)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "uuid": "f9021cc8-5dc0-4148-bb95-165ab6ea6e3b", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2016-10-01 (described on Site Profile dated 2016-10-01)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], "parcelDescriptions": [ { + "uuid": "1c6e2303-54d0-4945-89c8-a9382353173f", "siteRegistry": true, - "dateNoted": "2013-12-31", - "parcelID": "19149", - "crownLandUsePIN": "15278", - "crownLandFileNumber": "19580", - "landDescription": "LOT 5 OF LOT 3 BLOCK 1 DISTRICT LOT 4 PLAN 6188" - }, - { - "siteRegistry": true, - "dateNoted": "2017-03-01", - "parcelID": "15972", - "crownLandUsePIN": "19839", - "crownLandFileNumber": "16650", - "landDescription": "LOT 5 OF LOT 3 BLOCK 4 DISTRICT LOT 2 PLAN 7136" - }, - { - "siteRegistry": true, - "dateNoted": "2019-06-18", - "parcelID": "15215", - "crownLandUsePIN": "15519", - "crownLandFileNumber": "19454", - "landDescription": "LOT 5 OF LOT 1 BLOCK 3 DISTRICT LOT 4 PLAN 9193" + "dateNoted": "2020-07-14", + "parcelID": "20319", + "crownLandUsePIN": "17164", + "crownLandFileNumber": "15414", + "landDescription": "LOT 3 OF LOT 1 BLOCK 1 DISTRICT LOT 3 PLAN 8527" }, { + "uuid": "1c4da2eb-48c2-40e2-88cb-e243d8c89158", "siteRegistry": false, - "dateNoted": "2020-04-28", - "parcelID": "18808", - "crownLandUsePIN": "15561", - "crownLandFileNumber": "17345", - "landDescription": "LOT 2 OF LOT 1 BLOCK 3 DISTRICT LOT 5 PLAN 9641" + "dateNoted": "2021-05-10", + "parcelID": "16507", + "crownLandUsePIN": "19182", + "crownLandFileNumber": "18938", + "landDescription": "LOT 3 OF LOT 1 BLOCK 5 DISTRICT LOT 1 PLAN 9753" }, { + "uuid": "62e943d6-1f62-4973-ad69-72cdbfd84103", "siteRegistry": false, - "dateNoted": "2014-11-20", - "parcelID": "20059", - "crownLandUsePIN": "17467", - "crownLandFileNumber": "17059", - "landDescription": "LOT 5 OF LOT 3 BLOCK 2 DISTRICT LOT 4 PLAN 9738" + "dateNoted": "2015-08-13", + "parcelID": "20974", + "crownLandUsePIN": "18550", + "crownLandFileNumber": "17444", + "landDescription": "LOT 3 OF LOT 4 BLOCK 1 DISTRICT LOT 2 PLAN 7195" } ], "siteDisclosures": [ { - "siteRegistry": false, - "dateReceived": "2015-03-24", - "dateCompleted": "2021-11-29", - "dateEntered": "2015-07-29", - "dateRegistrar": "2021-02-10", - "dateLocalAuthorityReceived": "2017-07-22", - "summary": "Natus esse aspernatur tenetur officia non deleniti.", - "informationUsed": "Molestiae dolore aperiam a odio.\nMolestias ut ipsum.\nOptio fugit error.\nNam praesentium non inventore mollitia rem eligendi autem.", - "pastOrPresentOrders": "Dolores est eaque ratione sapiente provident ea rerum.\nMagni accusantium reiciendis ab beatae.", - "commercialAndIndustrialPurposes": [ - { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false - }, - { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false - }, - { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false - } - ] - }, - { + "uuid": "1c015475-d50e-4e89-b62d-f4459c07c8c1", "siteRegistry": true, - "dateReceived": "2014-05-25", - "dateCompleted": "2023-04-09", - "dateEntered": "2021-10-31", - "dateRegistrar": "2014-10-30", - "dateLocalAuthorityReceived": "2021-11-12", - "summary": "Id aperiam eius doloribus minus dignissimos officia.", - "informationUsed": "Quaerat facilis voluptatibus ab praesentium pariatur.\nQuo odio similique nulla.\nConsectetur sint corporis veritatis quod quam consequuntur illo itaque.\nLaudantium veniam dignissimos rerum modi.", - "pastOrPresentOrders": "Quo debitis accusantium.\nConsectetur ea mollitia earum temporibus quasi mollitia.", + "dateReceived": "2019-03-15", + "dateCompleted": "2016-03-01", + "dateEntered": "2017-11-25", + "dateRegistrar": "2022-09-17", + "dateLocalAuthorityReceived": "2020-07-08", + "summary": "Voluptatum quaerat libero unde accusamus.\nHarum eos aliquid.", + "informationUsed": "Vel minima facere possimus laborum magnam earum.\nUnde a quisquam mollitia harum.\nDolorum ipsum aut ut.", + "pastOrPresentOrders": "Dolorem quam occaecati nulla aliquid numquam cumque.\nMolestiae cumque aliquid aliquid hic.", "commercialAndIndustrialPurposes": [ { - "scheduleReference": "F2*", + "uuid": "83b7dae8-0be4-4291-8aa5-c8ae26945649", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "uuid": "04b6c1ff-55ed-4f8e-9aeb-d4e813da1455", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { + "uuid": "63a2bb54-0e3f-44f4-9bf1-2613921c2507", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { + "uuid": "b4b04c1b-aece-411c-8119-e7e25ffc6225", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true @@ -75720,101 +86362,94 @@ ], "activityLog": [ { - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "POLLICH-BRAKUS HILLARD", - "timestamp": "2022-09-22" - }, - { + "uuid": "c66a9555-0362-4e35-9a2e-51c3aeb3a78f", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "LARKIN TAUREAN", - "timestamp": "2019-07-10" + "user": "ZEMLAK CADEN", + "timestamp": "2016-06-16" }, { + "uuid": "3bd677de-4a6b-48f0-9943-462f6c6fe156", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "ORN EINO", - "timestamp": "2016-04-09" - }, - { - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "BARTOLETTI ANIBAL", - "timestamp": "2023-05-11" - }, - { - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "SHIELDS KYLEIGH", - "timestamp": "2018-03-21" + "user": "HOWE SERENITY", + "timestamp": "2016-08-05" }, { + "uuid": "3ccd329c-b6ec-435e-8022-2cf40c122380", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "STANTON AMERICO", - "timestamp": "2022-08-26" - }, - { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "OBERBRUNNER CARA", - "timestamp": "2014-07-25" + "user": "DUBUQUE ALBERTO", + "timestamp": "2021-02-26" }, { + "uuid": "e9bbeb3e-c591-44a3-8f87-95485ca53c37", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "WIEGAND FANNIE", - "timestamp": "2017-07-26" - }, - { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "BERGE BLAISE", - "timestamp": "2018-01-06" + "user": "LESCH ELSIE", + "timestamp": "2015-01-22" }, { + "uuid": "00768f9d-6af2-4f0e-a3f7-254fa965f5e9", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "LAKIN BRITNEY", - "timestamp": "2019-06-03" + "user": "KSHLERIN CARMELLA", + "timestamp": "2020-08-27" } ], "associatedSites": [ { - "dateNoted": "2014-01-18", + "uuid": "b38fc66c-1dd4-4a97-af0d-1be387a2f4e9", + "dateNoted": "2023-04-26", "notes": "", - "parcelID": "18037", - "siteID": "16934", + "parcelID": "18727", + "siteID": "20482", "siteRegistry": false + }, + { + "uuid": "55a843d7-9fb7-4cb8-a5e0-a0e361bbd994", + "dateNoted": "2019-07-11", + "notes": "", + "parcelID": "15918", + "siteID": "17765", + "siteRegistry": true + }, + { + "uuid": "9c43beb5-dd6c-4d02-98d8-63afe41c25a6", + "dateNoted": "2014-02-09", + "notes": "", + "parcelID": "19863", + "siteID": "18428", + "siteRegistry": true } ] }, { - "uuid": "041f013a-dde1-445e-a403-80e50cada4fd", - "siteID": 20045, - "address": "1959 Kiley Brook", - "latitude": 56.7969, - "longitude": -120.24, - "lastUpdated": "2017-06-26", - "city": "Ondrickashire", - "region": "Kootenay", - "victoriaFile": "26250-20/15858", + "uuid": "12b0531f-1947-46f9-86b9-0d5393c8b02d", + "siteID": 18717, + "address": "6659 Christiansen Glen", + "latitude": 55.7007, + "longitude": -138.2361, + "lastUpdated": "2021-09-22", + "city": "Eleanoraborough", + "region": "Cariboo", + "victoriaFile": "26250-20/14391", "regionalFile": "N/A", "parcelIDs": [ - 6075129, - 6922329, - 7970176, - 8805100, - 2494533 + 9445618, + 8804912, + 4686588, + 5853621, + 5898590 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2016-04-13", - "completed": "2017-04-07", - "initiated": "2022-04-21", - "ministryContact": "TOWNE HETTIE", + "uuid": "fb23a657-5c66-4392-9226-6174c2131df7", + "createdAt": "2017-11-25", + "completed": "2015-06-22", + "initiated": "2013-10-21", + "ministryContact": "LAKIN ZACKERY", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -75823,38 +86458,44 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", + "uuid": "ef73719e-bf40-4ca1-bebd-3559d96be504", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true + "uuid": "3d562089-9d02-4ec2-97c0-a4659c06024d", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "uuid": "79b9921c-7c84-4bce-bf07-4c3f299bfea5", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", "siteRegistry": true }, { + "uuid": "f29de0e2-8c2c-4533-a5ce-b64dfa18369a", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false + "uuid": "4ebcac27-7d9a-4e88-86cf-aaaab1332265", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2015-04-27", - "completed": "2017-02-06", - "initiated": "2014-06-08", - "ministryContact": "LARSON MAZIE", + "uuid": "823db2f6-8b8a-462f-8374-7fad151e9175", + "createdAt": "2019-04-16", + "completed": "2014-11-29", + "initiated": "2017-04-07", + "ministryContact": "ZBONCAK VERLA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -75863,23 +86504,32 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "84809a3d-a8d4-4cf2-bf68-842fba0261bf", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "463fb782-3111-423a-a5f0-95163cbdd94b", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true + }, + { + "uuid": "f7e287c7-8635-4a34-b66f-f1d912de8013", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2019-05-21", - "completed": "2015-03-21", - "initiated": "2014-09-05", - "ministryContact": "HEIDENREICH GAVIN", + "uuid": "8e8c1231-5611-4fcc-aa5b-d4e46bc6f31c", + "createdAt": "2017-10-24", + "completed": "2014-03-25", + "initiated": "2015-08-07", + "ministryContact": "WALSH BERNHARD", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -75888,64 +86538,49 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { + "uuid": "c8d98486-0e52-47cf-8868-ea6143c09089", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true }, { + "uuid": "8fb87abf-e72d-4c52-9924-7824e452f3e7", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true } ], "participants": [ { - "name": "AMET, DOLOR SIT", - "endDate": "2018-07-23", - "startDate": "2020-07-07", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2022-12-10", - "startDate": "2022-03-04", + "uuid": "8dd90049-9404-4750-9df8-c895c02afd8f", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2021-05-20", + "startDate": "2023-06-01", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true }, { - "name": "AMET, DOLOR SIT", - "endDate": "2017-10-17", - "startDate": "2022-05-30", + "uuid": "a7cc323e-3c32-4671-a02b-9b43ba424fd7", + "name": "IPSUM", + "endDate": "2017-09-16", + "startDate": "2020-05-07", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": true + "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2022-10-24", - "startDate": "2019-07-01", + "uuid": "7630b11b-dbcf-4749-9df0-24fe9ec158a9", + "name": "IPSUM", + "endDate": "2018-06-07", + "startDate": "2018-08-09", "notes": "", "roles": [ "EMPLOYEE" @@ -75953,197 +86588,235 @@ "siteRegistry": false }, { - "name": "IPSUM", - "endDate": "2014-04-27", - "startDate": "2022-08-18", + "uuid": "030b24d9-dab2-49a9-a2c5-7b436a3c1a8d", + "name": "AMET, DOLOR SIT", + "endDate": "2023-01-19", + "startDate": "2023-05-22", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], - "siteRegistry": false + "siteRegistry": true } ], "suspectLandUses": [ { + "uuid": "0e5501ca-b9dc-4266-8cce-7fb75bc2a893", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-05-09 (described on Site Profile dated 2015-05-09)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" - }, - { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-10-07 (described on Site Profile dated 2019-10-07)", + "notes": "INSERTED FOR SITE PROFILE DATED 2019-06-17 (described on Site Profile dated 2019-06-17)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2020-11-23 (described on Site Profile dated 2020-11-23)", + "uuid": "08a5d4a4-8b8d-4224-8aa6-1ddf7a840367", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2023-06-02 (described on Site Profile dated 2023-06-02)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], "parcelDescriptions": [ { - "siteRegistry": false, - "dateNoted": "2016-11-03", - "parcelID": "17237", - "crownLandUsePIN": "18655", - "crownLandFileNumber": "16708", - "landDescription": "LOT 2 OF LOT 5 BLOCK 1 DISTRICT LOT 5 PLAN 6541" + "uuid": "471e0fd0-9d97-4500-86a3-add2293c0dc9", + "siteRegistry": true, + "dateNoted": "2020-07-02", + "parcelID": "20251", + "crownLandUsePIN": "15413", + "crownLandFileNumber": "20095", + "landDescription": "LOT 3 OF LOT 3 BLOCK 4 DISTRICT LOT 1 PLAN 8153" }, { + "uuid": "eb90c761-19cc-44a6-b938-a19a3e14c674", "siteRegistry": false, - "dateNoted": "2023-02-18", - "parcelID": "18767", - "crownLandUsePIN": "17748", - "crownLandFileNumber": "17587", - "landDescription": "LOT 1 OF LOT 3 BLOCK 2 DISTRICT LOT 5 PLAN 9141" + "dateNoted": "2013-11-23", + "parcelID": "20350", + "crownLandUsePIN": "17476", + "crownLandFileNumber": "16499", + "landDescription": "LOT 3 OF LOT 4 BLOCK 2 DISTRICT LOT 5 PLAN 3734" }, { - "siteRegistry": true, - "dateNoted": "2021-06-10", - "parcelID": "16816", - "crownLandUsePIN": "15509", - "crownLandFileNumber": "20525", - "landDescription": "LOT 1 OF LOT 5 BLOCK 4 DISTRICT LOT 3 PLAN 7529" + "uuid": "039dbfc5-0e06-423b-be5d-53e0bc5e255d", + "siteRegistry": false, + "dateNoted": "2021-02-14", + "parcelID": "15500", + "crownLandUsePIN": "20045", + "crownLandFileNumber": "16603", + "landDescription": "LOT 5 OF LOT 5 BLOCK 5 DISTRICT LOT 2 PLAN 5864" }, { + "uuid": "9c8049ee-1bfa-4647-80c3-061915c0a686", "siteRegistry": false, - "dateNoted": "2023-03-23", - "parcelID": "19904", - "crownLandUsePIN": "15741", - "crownLandFileNumber": "17718", - "landDescription": "LOT 1 OF LOT 4 BLOCK 5 DISTRICT LOT 3 PLAN 7943" + "dateNoted": "2014-02-10", + "parcelID": "15793", + "crownLandUsePIN": "19736", + "crownLandFileNumber": "20089", + "landDescription": "LOT 3 OF LOT 2 BLOCK 4 DISTRICT LOT 2 PLAN 4969" }, { + "uuid": "a339c52b-1ff0-47b8-82c6-91d0e89a5a03", "siteRegistry": false, - "dateNoted": "2018-10-01", - "parcelID": "18869", - "crownLandUsePIN": "16832", - "crownLandFileNumber": "19153", - "landDescription": "LOT 4 OF LOT 5 BLOCK 4 DISTRICT LOT 3 PLAN 6412" + "dateNoted": "2021-01-31", + "parcelID": "18946", + "crownLandUsePIN": "20860", + "crownLandFileNumber": "18330", + "landDescription": "LOT 1 OF LOT 4 BLOCK 1 DISTRICT LOT 5 PLAN 6600" } ], "siteDisclosures": [ { + "uuid": "c1291fc8-fb50-4a46-8a8f-05c155a6ef09", "siteRegistry": false, - "dateReceived": "2014-03-12", - "dateCompleted": "2014-05-29", - "dateEntered": "2019-05-16", - "dateRegistrar": "2015-01-12", - "dateLocalAuthorityReceived": "2020-10-21", - "summary": "Sunt distinctio voluptas delectus.\nAd quasi officia expedita omnis earum voluptate.", - "informationUsed": "Velit in corporis delectus magnam animi minus.\nFacilis impedit quia molestias necessitatibus.\nSunt qui voluptatibus.", - "pastOrPresentOrders": "Ullam nulla deserunt nihil quidem sapiente.", + "dateReceived": "2020-07-01", + "dateCompleted": "2019-11-03", + "dateEntered": "2017-01-06", + "dateRegistrar": "2016-07-20", + "dateLocalAuthorityReceived": "2023-09-10", + "summary": "Commodi dignissimos doloremque deleniti minima doloribus assumenda.\nAutem a vero.", + "informationUsed": "Ratione asperiores iusto aut labore sint impedit.\nMollitia tempore modi rerum.\nQuia magni dolorem esse mollitia voluptatibus id.", + "pastOrPresentOrders": "Repellendus molestiae voluptatum unde deleniti incidunt.", "commercialAndIndustrialPurposes": [ { + "uuid": "d2696b2b-71e6-4c45-ad56-166108c37a00", "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { - "scheduleReference": "F2*", + "uuid": "6f6d6ba1-5cc5-4ea3-b557-73b2345bc704", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false + "siteRegistry": true }, { + "uuid": "524258d1-ca20-46f7-94b6-714b43387eb9", "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + } + ] + }, + { + "uuid": "fc8428a5-7edc-4976-a554-74eed9b01b28", + "siteRegistry": false, + "dateReceived": "2023-09-04", + "dateCompleted": "2015-08-26", + "dateEntered": "2020-03-25", + "dateRegistrar": "2015-08-06", + "dateLocalAuthorityReceived": "2021-04-28", + "summary": "Dolore dolore maiores quia voluptates cupiditate error quaerat sequi delectus.\nDucimus voluptates vitae saepe et consequatur dolores nobis.\nCulpa voluptatibus iste cumque modi aliquid nostrum laboriosam.", + "informationUsed": "Nostrum omnis alias consequatur officiis omnis quidem totam.\nEx placeat magni.\nUt repellat cumque fugit tempora repellendus.\nMagnam fugiat ullam labore.", + "pastOrPresentOrders": "Aliquam in beatae.", + "commercialAndIndustrialPurposes": [ + { + "uuid": "0b356120-d0ff-43ea-aa07-7ed01cf87637", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false + }, + { + "uuid": "817db68a-577f-4e75-abea-4e18db4d8457", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true } ] } ], - "activityLog": [ - { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "O'HARA LETA", - "timestamp": "2017-06-07" - }, - { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "WINTHEISER ELVERA", - "timestamp": "2020-08-25" - }, + "activityLog": [ { - "siteRegistry": true, + "uuid": "50a247f3-227e-424d-98c1-d71ea17c2157", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "CRONIN DUANE", - "timestamp": "2014-05-02" + "user": "RUTHERFORD LEW", + "timestamp": "2021-01-10" }, { + "uuid": "9a370395-5f6f-48c5-ad0a-999524bf79f5", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "BEDNAR KARLEY", - "timestamp": "2017-03-03" + "user": "AUFDERHAR ALEXANDRE", + "timestamp": "2023-01-30" }, { - "siteRegistry": true, + "uuid": "9362959e-4764-48bd-9346-24c2b2fb576d", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "HAUCK LYDA", - "timestamp": "2016-09-30" + "user": "JACOBI COLLIN", + "timestamp": "2021-09-05" }, { - "siteRegistry": true, + "uuid": "416340a1-ca82-472d-84e2-f17d5528fea3", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "PFEFFER LETHA", - "timestamp": "2020-09-20" + "user": "WEIMANN MARQUES", + "timestamp": "2023-04-01" }, { - "siteRegistry": true, + "uuid": "f11f7d07-c6a7-45c0-8fa0-59e3376c29db", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "MCLAUGHLIN LLOYD", - "timestamp": "2022-11-26" + "user": "SCHMITT PIERRE", + "timestamp": "2019-03-23" }, { + "uuid": "8ef178b7-1fa0-4dca-81e0-5374778aa8d2", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "KLOCKO KENDRICK", - "timestamp": "2018-08-09" + "user": "MORAR CARMELA", + "timestamp": "2018-10-01" } ], "associatedSites": [ { - "dateNoted": "2019-01-12", + "uuid": "460f8334-9711-41e4-8ea0-a8e36477e338", + "dateNoted": "2022-12-19", "notes": "", - "parcelID": "16703", - "siteID": "20139", + "parcelID": "19665", + "siteID": "19481", "siteRegistry": true }, { - "dateNoted": "2021-05-01", + "uuid": "aec2db1a-cc53-4e16-9579-bbfe4e62e492", + "dateNoted": "2015-03-12", "notes": "", - "parcelID": "18461", - "siteID": "17607", + "parcelID": "20529", + "siteID": "19730", + "siteRegistry": false + }, + { + "uuid": "4ebb48b1-0426-4a35-a763-242749d7f264", + "dateNoted": "2022-11-18", + "notes": "", + "parcelID": "17788", + "siteID": "16078", "siteRegistry": true } ] }, { - "uuid": "85c8dc7d-6c6a-4bd7-903b-97a714917703", - "siteID": 20854, - "address": "610 Lorine Point", - "latitude": 58.3142, - "longitude": -123.7934, - "lastUpdated": "2014-09-28", - "city": "South Hadleyberg", - "region": " North Coast", - "victoriaFile": "26250-20/7212", + "uuid": "76b45522-f1e8-4c15-966a-f549d64b49d2", + "siteID": 17608, + "address": "432 Ike Underpass", + "latitude": 58.4623, + "longitude": -134.3881, + "lastUpdated": "2020-07-09", + "city": "Highland", + "region": "Cariboo", + "victoriaFile": "26250-20/11596", "regionalFile": "N/A", "parcelIDs": [ - 1323945, - 674427, - 8205626, - 4904749, - 1094726 + 5522484, + 7528485, + 9245155, + 9576468, + 7493885 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2015-12-08", - "completed": "2022-08-09", - "initiated": "2023-07-04", - "ministryContact": "BOGISICH BELL", + "uuid": "76a2e312-2f65-4493-9d06-9f09af89040f", + "createdAt": "2016-08-17", + "completed": "2018-09-15", + "initiated": "2017-12-17", + "ministryContact": "ABERNATHY ELYSSA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -76152,33 +86825,38 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "uuid": "49309500-6ab9-4117-b0a6-c97b298a334f", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", + "uuid": "da4a64fd-e7ce-4321-9d3b-8145e26802ef", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { + "uuid": "175ad33f-c6a3-4aa2-beff-df34b9f7a152", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "uuid": "4df8816b-a36b-4263-979c-26458fc1ceb0", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": false } ], "siteRegistry": false }, { - "createdAt": "2023-06-06", - "completed": "2014-12-17", - "initiated": "2016-04-04", - "ministryContact": "KERTZMANN ELLEN", + "uuid": "696fbc89-acd0-49d1-9c13-ffe2fc315726", + "createdAt": "2016-04-06", + "completed": "2022-05-24", + "initiated": "2022-11-11", + "ministryContact": "HANE SANTOS", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -76187,38 +86865,26 @@ ], "notationParticipants": [ { + "uuid": "72631602-46b5-4f5a-b2bc-209229aba590", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": true }, { + "uuid": "c8389248-a67c-4a6b-9259-3e1eafd27510", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2017-03-12", - "completed": "2014-03-27", - "initiated": "2014-05-25", - "ministryContact": "WATSICA LUZ", + "uuid": "9b23241a-3282-4001-8e8a-d20df008ba57", + "createdAt": "2020-05-28", + "completed": "2014-11-23", + "initiated": "2017-03-22", + "ministryContact": "HANE SERENITY", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -76227,28 +86893,44 @@ ], "notationParticipants": [ { + "uuid": "757e2e50-1068-44ab-838a-01cbf7a4cab0", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "d682cbfc-dd50-464f-87b1-3df86031a5b4", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "92c77efa-198d-4f4f-84b3-95f4492166ab", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "e3ca1531-669d-477a-8007-8f7f45f7edf0", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { + "uuid": "6c70d80e-a773-42a9-86fc-b3c9b7bf4222", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2017-09-09", - "completed": "2021-07-15", - "initiated": "2016-01-17", - "ministryContact": "RIPPIN REX", + "uuid": "0de86aba-26a0-48bd-87fb-1f8209d82af3", + "createdAt": "2016-08-16", + "completed": "2020-10-29", + "initiated": "2019-05-18", + "ministryContact": "BATZ LINWOOD", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -76257,12 +86939,20 @@ ], "notationParticipants": [ { + "uuid": "02f65661-18d1-4b3b-bf33-578fad613338", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "fb7a84d2-1c89-41a4-bb51-b7da62d407e4", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "57328fbd-75cb-460c-897d-e4a91f8f9ec0", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true } @@ -76272,9 +86962,10 @@ ], "participants": [ { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2015-05-13", - "startDate": "2015-07-06", + "uuid": "b8d13722-44f8-45c2-b192-66582dcbed5d", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2020-10-04", + "startDate": "2016-07-11", "notes": "", "roles": [ "ORGANIZATION" @@ -76282,29 +86973,43 @@ "siteRegistry": true }, { - "name": "IPSUM", - "endDate": "2022-03-03", - "startDate": "2022-05-06", + "uuid": "4aa38f85-23e4-41e2-abc9-a784ca3683db", + "name": "AMET, DOLOR SIT", + "endDate": "2020-09-20", + "startDate": "2021-11-10", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": true + "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2022-02-08", - "startDate": "2019-06-06", + "uuid": "bc2f8cb8-0b54-4862-9be5-e2c8ba243060", + "name": "AMET, DOLOR SIT", + "endDate": "2022-02-15", + "startDate": "2018-11-13", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "uuid": "1bada328-128f-41ed-8665-b48e46f6d362", + "name": "IPSUM", + "endDate": "2022-04-30", + "startDate": "2015-03-22", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2013-12-16", - "startDate": "2022-09-03", + "uuid": "62112c63-b938-497d-bd34-462e4644b4e2", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2021-09-16", + "startDate": "2017-06-24", "notes": "", "roles": [ "ORGANIZATION" @@ -76314,54 +87019,91 @@ ], "suspectLandUses": [ { + "uuid": "bb0eb753-a4d4-4b05-9b8a-8b5cd860b71a", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-03-22 (described on Site Profile dated 2014-03-22)", + "notes": "INSERTED FOR SITE PROFILE DATED 2020-05-19 (described on Site Profile dated 2020-05-19)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { + "uuid": "3e524d95-6328-42b8-91fe-e7492247d527", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2017-02-26 (described on Site Profile dated 2017-02-26)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "uuid": "7969308b-97d7-4d5e-a52f-0a79365964af", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-03-13 (described on Site Profile dated 2018-03-13)", + "notes": "INSERTED FOR SITE PROFILE DATED 2016-09-13 (described on Site Profile dated 2016-09-13)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], "parcelDescriptions": [ { + "uuid": "0211e4f3-a948-4326-8006-8301767cc5d9", "siteRegistry": true, - "dateNoted": "2021-12-01", - "parcelID": "20775", - "crownLandUsePIN": "16817", - "crownLandFileNumber": "19128", - "landDescription": "LOT 4 OF LOT 2 BLOCK 4 DISTRICT LOT 1 PLAN 9775" + "dateNoted": "2014-08-08", + "parcelID": "18503", + "crownLandUsePIN": "17682", + "crownLandFileNumber": "20863", + "landDescription": "LOT 2 OF LOT 4 BLOCK 5 DISTRICT LOT 3 PLAN 4835" + }, + { + "uuid": "6074e815-3950-4be7-a633-297b72f63009", + "siteRegistry": true, + "dateNoted": "2014-06-13", + "parcelID": "16588", + "crownLandUsePIN": "19085", + "crownLandFileNumber": "20781", + "landDescription": "LOT 4 OF LOT 5 BLOCK 5 DISTRICT LOT 4 PLAN 6922" + }, + { + "uuid": "2104d95e-de1a-4de2-87e6-0f95f67b504e", + "siteRegistry": true, + "dateNoted": "2022-03-02", + "parcelID": "20941", + "crownLandUsePIN": "16854", + "crownLandFileNumber": "20179", + "landDescription": "LOT 2 OF LOT 1 BLOCK 1 DISTRICT LOT 5 PLAN 5072" }, { + "uuid": "b6c143f8-7999-4b2f-adac-304913a01225", "siteRegistry": false, - "dateNoted": "2018-09-03", - "parcelID": "15328", - "crownLandUsePIN": "16590", - "crownLandFileNumber": "17700", - "landDescription": "LOT 4 OF LOT 1 BLOCK 2 DISTRICT LOT 5 PLAN 8259" + "dateNoted": "2015-11-28", + "parcelID": "17973", + "crownLandUsePIN": "18976", + "crownLandFileNumber": "17552", + "landDescription": "LOT 5 OF LOT 3 BLOCK 3 DISTRICT LOT 5 PLAN 8441" } ], "siteDisclosures": [ { - "siteRegistry": false, - "dateReceived": "2015-01-13", - "dateCompleted": "2020-04-23", - "dateEntered": "2019-04-19", - "dateRegistrar": "2013-10-18", - "dateLocalAuthorityReceived": "2016-05-12", - "summary": "Laborum ad ipsam adipisci corrupti ut occaecati quia fugit.\nEnim culpa placeat voluptates voluptatum inventore eum alias asperiores.\nAperiam veritatis quam facere eaque eligendi.", - "informationUsed": "Nemo consequatur ratione quibusdam dignissimos dolore numquam.\nAnimi modi fuga delectus aut adipisci veniam.\nDolorem occaecati laudantium.", - "pastOrPresentOrders": "Error saepe sapiente maiores eum ut praesentium.\nDoloribus distinctio magnam illo autem nisi quibusdam iste consequatur.", + "uuid": "ba83b5fa-4c51-4db1-9127-3f45e23e69d4", + "siteRegistry": true, + "dateReceived": "2014-02-01", + "dateCompleted": "2017-04-07", + "dateEntered": "2016-06-19", + "dateRegistrar": "2022-07-07", + "dateLocalAuthorityReceived": "2016-10-10", + "summary": "Velit nihil expedita eligendi nihil dolor assumenda.\nDolorum tenetur praesentium doloremque facilis excepturi inventore harum.\nOdio quod nulla officiis.", + "informationUsed": "Occaecati ex at id repudiandae tempora unde illo nisi.\nAutem iure quia minima commodi consectetur magnam.\nDicta quasi eum fuga.\nPariatur repellat dolore adipisci molestias nobis dolorum porro dicta libero.", + "pastOrPresentOrders": "Cum ea commodi necessitatibus fuga sint.\nSit magnam quis commodi asperiores fugit soluta placeat earum.\nIn qui magni excepturi quo illum sint perferendis ad.", "commercialAndIndustrialPurposes": [ { + "uuid": "335a092b-eded-49a2-bff2-de47170cbd5f", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "uuid": "a51e3de6-c4d3-429e-8c48-534b2f56384c", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { + "uuid": "88185275-8c9f-4dde-98ed-078ce0b25c94", "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false } ] @@ -76369,85 +87111,85 @@ ], "activityLog": [ { + "uuid": "40a5c3ac-90b1-4236-bc55-024e147460c7", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "NOLAN VERNICE", - "timestamp": "2020-08-18" + "user": "RENNER JAMARCUS", + "timestamp": "2015-11-07" }, { + "uuid": "d7f5df8e-2a5d-4957-a581-fca19bd8f1f8", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "TURNER CHET", - "timestamp": "2018-12-09" + "user": "TURCOTTE-JACOBSON ELOY", + "timestamp": "2016-07-15" }, { + "uuid": "c8cd60ab-8ce6-4fff-bf22-f39cd9bec5c4", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "O'REILLY MARGARETTA", - "timestamp": "2022-08-02" + "user": "DAUGHERTY DAMIAN", + "timestamp": "2016-05-21" }, { + "uuid": "a66036ed-4347-46dd-b458-80652537c33e", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "STARK ROSLYN", - "timestamp": "2019-02-09" + "user": "WALSH-MORISSETTE KRISTOFER", + "timestamp": "2023-06-22" }, { - "siteRegistry": false, + "uuid": "95ebea19-de60-465e-bd6f-a82f9b93ac3a", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "GOYETTE RAMONA", - "timestamp": "2015-11-20" + "user": "HALVORSON-WEISSNAT DEWITT", + "timestamp": "2020-04-22" + }, + { + "uuid": "e882a170-6ebe-4a0b-8dfa-c6ebdde4c9f7", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "OBERBRUNNER YADIRA", + "timestamp": "2016-01-24" } ], "associatedSites": [ { - "dateNoted": "2017-10-25", - "notes": "", - "parcelID": "16968", - "siteID": "20018", - "siteRegistry": true - }, - { - "dateNoted": "2020-09-13", - "notes": "", - "parcelID": "19353", - "siteID": "18001", - "siteRegistry": false - }, - { - "dateNoted": "2014-01-08", + "uuid": "a2b6cb1c-9cf1-4d49-89f8-56cb626567d3", + "dateNoted": "2015-10-09", "notes": "", - "parcelID": "17559", - "siteID": "20733", + "parcelID": "19277", + "siteID": "16804", "siteRegistry": true } ] }, { - "uuid": "85276bd2-3f18-4162-9b47-a0596b552ceb", - "siteID": 18529, - "address": "820 Jovany Landing", - "latitude": 56.4626, - "longitude": -135.3069, - "lastUpdated": "2016-10-01", - "city": "New Lillystead", + "uuid": "5a3677e2-ce77-4c21-bffc-907436f1a620", + "siteID": 18934, + "address": "80905 Ullrich Harbors", + "latitude": 48.8086, + "longitude": -133.5742, + "lastUpdated": "2021-12-02", + "city": "Kutchfield", "region": "Mainland/Southwest", - "victoriaFile": "26250-20/4387", + "victoriaFile": "26250-20/15176", "regionalFile": "N/A", "parcelIDs": [ - 9334780, - 2381459, - 4384960, - 6271272, - 5547607 + 4264979, + 4668749, + 3987493, + 6054423, + 5408431 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2022-04-23", - "completed": "2015-09-04", - "initiated": "2016-03-04", - "ministryContact": "ARMSTRONG JEFFEREY", + "uuid": "5f571450-1487-4398-91d9-12551a836eb8", + "createdAt": "2014-11-20", + "completed": "2015-02-01", + "initiated": "2019-06-13", + "ministryContact": "CONN KRISTIN", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -76456,38 +87198,26 @@ ], "notationParticipants": [ { + "uuid": "854ae8e0-8cc0-45c7-830b-288d48e27ece", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { + "uuid": "1a8c22be-47f2-4f9e-924c-f9669a71c03f", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", "siteRegistry": false } ], "siteRegistry": false }, { - "createdAt": "2019-12-10", - "completed": "2022-04-06", - "initiated": "2023-08-10", - "ministryContact": "SCHAEFER CHESTER", + "uuid": "b78f4abe-441a-4d31-9692-69fd688daf70", + "createdAt": "2017-02-18", + "completed": "2013-12-27", + "initiated": "2016-09-04", + "ministryContact": "CHAMPLIN BERT", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -76496,63 +87226,38 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "uuid": "29679dfe-0567-42d1-a4e2-a78676ff5183", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", "siteRegistry": false }, { + "uuid": "d827234a-de40-46b3-8c7c-8005301a910d", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": true }, { + "uuid": "680ffa26-8622-47f3-8e22-cdcb73825c6a", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - } - ], - "siteRegistry": false - }, - { - "createdAt": "2014-02-02", - "completed": "2023-09-10", - "initiated": "2019-02-15", - "ministryContact": "HETTINGER GERRY", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { + "uuid": "c6d8fc4f-1d5c-45e9-bf6c-f7dca4c28178", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2021-01-05", - "completed": "2015-04-08", - "initiated": "2015-04-22", - "ministryContact": "BEAHAN CONNER", + "uuid": "df2fb9d6-9595-4f07-b4b9-cbc54e4066fc", + "createdAt": "2016-09-13", + "completed": "2023-01-23", + "initiated": "2016-02-02", + "ministryContact": "TROMP DAKOTA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -76561,29 +87266,16 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "cd7ade99-db1a-432f-9dfb-8e1be92a343e", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { + "uuid": "2d687471-efa2-4ef8-9bf4-2eeb264c5cb5", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false } ], "siteRegistry": true @@ -76591,9 +87283,10 @@ ], "participants": [ { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2023-06-29", - "startDate": "2020-07-04", + "uuid": "c580da02-9df3-40ee-8c29-4f2b5e4a7202", + "name": "IPSUM", + "endDate": "2014-03-31", + "startDate": "2018-10-14", "notes": "", "roles": [ "EMPLOYEE" @@ -76601,109 +87294,128 @@ "siteRegistry": false }, { - "name": "IPSUM", - "endDate": "2017-08-05", - "startDate": "2016-12-19", + "uuid": "c0564076-732a-4ca4-a000-80c18d1cd7cf", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2016-06-20", + "startDate": "2021-07-30", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "uuid": "cc36e39b-9463-47e4-8794-1538ceeb7c49", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2015-01-24", + "startDate": "2023-06-08", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "uuid": "c841492a-55c7-49c3-9480-1c17df9cf747", + "name": "AMET, DOLOR SIT", + "endDate": "2015-06-24", + "startDate": "2014-05-12", "notes": "", "roles": [ "ORGANIZATION" ], "siteRegistry": false + }, + { + "uuid": "3f8d8083-97e8-4769-ab70-d40cdb08fa51", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2022-08-18", + "startDate": "2020-01-15", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true } ], "suspectLandUses": [ { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-04-25 (described on Site Profile dated 2015-04-25)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" - }, - { + "uuid": "316cfb65-edb3-4ab4-b9dd-30c208cfc5c1", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-11-28 (described on Site Profile dated 2014-11-28)", + "notes": "INSERTED FOR SITE PROFILE DATED 2019-10-11 (described on Site Profile dated 2019-10-11)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { + "uuid": "361c295c-f8f4-4e56-970c-9f6b177b90e6", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-02-02 (described on Site Profile dated 2014-02-02)", + "notes": "INSERTED FOR SITE PROFILE DATED 2016-06-27 (described on Site Profile dated 2016-06-27)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-06-26 (described on Site Profile dated 2018-06-26)", + "uuid": "00b7f38e-c419-42ea-943c-410d0065abe9", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2018-11-28 (described on Site Profile dated 2018-11-28)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "uuid": "2c3c2b6b-2b60-4732-a4b3-f6f39a6231c9", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2021-05-07 (described on Site Profile dated 2021-05-07)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], "parcelDescriptions": [ { + "uuid": "a4b8eaae-ee5a-4888-9e3f-1664e231bc9f", "siteRegistry": true, - "dateNoted": "2022-07-30", - "parcelID": "16208", - "crownLandUsePIN": "20548", - "crownLandFileNumber": "16595", - "landDescription": "LOT 2 OF LOT 4 BLOCK 3 DISTRICT LOT 4 PLAN 5678" + "dateNoted": "2017-12-30", + "parcelID": "18160", + "crownLandUsePIN": "16971", + "crownLandFileNumber": "15642", + "landDescription": "LOT 3 OF LOT 1 BLOCK 5 DISTRICT LOT 3 PLAN 6176" + }, + { + "uuid": "57b5a1e0-171c-4297-b665-251657698d6d", + "siteRegistry": true, + "dateNoted": "2022-07-08", + "parcelID": "15602", + "crownLandUsePIN": "17916", + "crownLandFileNumber": "19161", + "landDescription": "LOT 5 OF LOT 1 BLOCK 1 DISTRICT LOT 3 PLAN 8762" }, { + "uuid": "0b5a0621-7e05-4940-9272-4073bd6a4ec2", "siteRegistry": false, - "dateNoted": "2019-11-07", - "parcelID": "16042", - "crownLandUsePIN": "18623", - "crownLandFileNumber": "20665", - "landDescription": "LOT 5 OF LOT 5 BLOCK 3 DISTRICT LOT 5 PLAN 9441" + "dateNoted": "2021-01-27", + "parcelID": "18248", + "crownLandUsePIN": "18567", + "crownLandFileNumber": "20356", + "landDescription": "LOT 4 OF LOT 4 BLOCK 1 DISTRICT LOT 3 PLAN 5368" } ], "siteDisclosures": [ { + "uuid": "b0fc0a17-2ee9-4b93-988d-cece45a3100c", "siteRegistry": false, - "dateReceived": "2019-07-10", - "dateCompleted": "2018-05-23", - "dateEntered": "2014-06-25", - "dateRegistrar": "2020-08-31", - "dateLocalAuthorityReceived": "2018-02-09", - "summary": "Fugiat praesentium sit provident expedita quidem veniam voluptatem cum.\nMinus quas autem voluptates velit labore optio assumenda illum ea.", - "informationUsed": "Eaque et deserunt cupiditate dolore repudiandae deserunt nesciunt numquam consequuntur.\nNon eligendi dolores adipisci fugiat praesentium commodi aspernatur.\nHarum maxime ducimus natus ipsum iusto dicta ab.", - "pastOrPresentOrders": "Corporis veniam vero labore nisi.\nDeleniti libero libero dignissimos tempore inventore sunt rem adipisci dolorem.\nIn ratione cumque dignissimos repellendus.", + "dateReceived": "2020-03-11", + "dateCompleted": "2021-02-19", + "dateEntered": "2016-07-17", + "dateRegistrar": "2017-09-25", + "dateLocalAuthorityReceived": "2017-07-09", + "summary": "Expedita recusandae inventore praesentium.", + "informationUsed": "Modi excepturi nihil accusamus ab at ratione.\nOdio veniam magni quo.\nAlias et reprehenderit illo.\nRecusandae dolores consectetur placeat tempora perferendis.\nDignissimos aperiam aspernatur soluta.", + "pastOrPresentOrders": "Qui ipsa quidem mollitia facilis rerum fugit veritatis tempore doloremque.\nMinus quod aut consequuntur maiores sint accusantium assumenda accusantium.\nVoluptatum perspiciatis soluta mollitia quidem.", "commercialAndIndustrialPurposes": [ { + "uuid": "0347c21b-d5d8-4ef3-b4fb-3ff21cfc532b", "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false - }, - { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true - } - ] - }, - { - "siteRegistry": true, - "dateReceived": "2015-10-18", - "dateCompleted": "2016-07-04", - "dateEntered": "2022-01-24", - "dateRegistrar": "2016-06-21", - "dateLocalAuthorityReceived": "2019-04-08", - "summary": "Quaerat natus harum eius.\nVoluptas aliquam quam.", - "informationUsed": "Non suscipit blanditiis libero dolores libero excepturi.\nAut ipsam asperiores architecto alias incidunt corrupti amet voluptas.\nMollitia enim molestiae explicabo nesciunt voluptas minima adipisci.\nEa facere quis quasi ducimus.", - "pastOrPresentOrders": "Quod laudantium voluptatibus expedita voluptatem molestiae consequatur dignissimos.\nAd quaerat nesciunt numquam tempore.\nA doloribus quas similique ducimus.", - "commercialAndIndustrialPurposes": [ - { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true - }, - { - "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { + "uuid": "8a910eca-0bad-4f38-8dba-a72e82f8fe90", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true - }, - { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false } ] @@ -76711,109 +87423,85 @@ ], "activityLog": [ { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "BARROWS MILTON", - "timestamp": "2018-07-04" - }, - { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "TORPHY GILBERT", - "timestamp": "2021-06-13" - }, - { + "uuid": "3f89e218-cd47-4f3a-9e89-21433db810c9", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "TROMP SABRINA", - "timestamp": "2017-05-19" + "user": "BALISTRERI MIA", + "timestamp": "2022-11-03" }, { + "uuid": "6486506f-7324-47b8-a56a-83f26a605ec2", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "RITCHIE RAVEN", - "timestamp": "2016-10-19" - }, - { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "FRAMI-VEUM ERICKA", - "timestamp": "2021-01-10" + "user": "RICE LISETTE", + "timestamp": "2014-10-26" }, { + "uuid": "0ffe7b7a-a3da-4054-92aa-ce82d81b1a12", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "SCHOWALTER-ARMSTRONG ESTEL", - "timestamp": "2015-08-06" + "user": "DECKOW MAURINE", + "timestamp": "2022-01-10" }, { + "uuid": "4727e52a-226f-4e3f-b3e2-d25f2d22e7d9", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "WUCKERT LUCY", - "timestamp": "2022-11-24" + "user": "MOSCISKI EDYTHE", + "timestamp": "2021-01-25" }, { - "siteRegistry": true, + "uuid": "afd1db93-aa2a-433a-97b0-174184430059", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "LYNCH CIARA", - "timestamp": "2013-11-07" + "user": "PARKER SABRYNA", + "timestamp": "2021-06-25" }, { + "uuid": "995301c8-a957-4e31-9cb2-9f83feb7f2b6", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "O'CONNELL-HELLER ORLAND", - "timestamp": "2016-05-11" + "user": "HAYES TYREL", + "timestamp": "2016-05-06" } ], "associatedSites": [ { - "dateNoted": "2022-08-20", - "notes": "", - "parcelID": "17061", - "siteID": "19044", - "siteRegistry": true - }, - { - "dateNoted": "2017-03-15", - "notes": "", - "parcelID": "17004", - "siteID": "15477", - "siteRegistry": true - }, - { - "dateNoted": "2016-11-03", + "uuid": "671b6e2c-4ccf-4039-849c-7889cf836340", + "dateNoted": "2021-06-21", "notes": "", - "parcelID": "18204", - "siteID": "18318", - "siteRegistry": true + "parcelID": "20690", + "siteID": "15396", + "siteRegistry": false } ] }, { - "uuid": "6a6fc9a0-abae-4963-9a1a-09f5f7fb4480", - "siteID": 15462, - "address": "8806 Parker Highway", - "latitude": 54.3811, - "longitude": -134.6903, - "lastUpdated": "2020-08-30", - "city": "Jacksonville", - "region": "Thompson-Okanagan", - "victoriaFile": "26250-20/8768", + "uuid": "f284ecf0-e776-435b-973c-457666e3434e", + "siteID": 16415, + "address": "357 Katarina Terrace", + "latitude": 56.3341, + "longitude": -137.1725, + "lastUpdated": "2019-11-24", + "city": "Muncie", + "region": "Kootenay", + "victoriaFile": "26250-20/3815", "regionalFile": "N/A", "parcelIDs": [ - 8824080, - 7776209, - 7116252, - 7601617, - 9368392 + 2412652, + 4800771, + 1181738, + 2165738, + 5635747 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2021-02-13", - "completed": "2018-12-04", - "initiated": "2022-03-18", - "ministryContact": "JOHNSTON ELIZA", + "uuid": "1fdf759f-2d14-4cf5-ad89-67717f8f83ff", + "createdAt": "2021-01-26", + "completed": "2022-10-10", + "initiated": "2020-05-28", + "ministryContact": "DURGAN HERBERT", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -76822,108 +87510,38 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { + "uuid": "f9a034f4-b519-4cbb-b83f-54e9091a9aba", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true - } - ], - "siteRegistry": false - }, - { - "createdAt": "2019-11-17", - "completed": "2014-11-09", - "initiated": "2016-12-07", - "ministryContact": "WILLIAMSON PEARLINE", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - } - ], - "siteRegistry": false - }, - { - "createdAt": "2016-05-15", - "completed": "2018-08-24", - "initiated": "2020-03-15", - "ministryContact": "WEST ADAH", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { + "uuid": "f7f3829d-54c8-4608-a505-391e330e802b", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false }, { + "uuid": "77b508db-22ad-4952-af45-3b83f4280d3f", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false }, { + "uuid": "e8af7eae-42bf-4dd4-b96e-963d94cc50bf", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2016-07-21", - "completed": "2018-03-19", - "initiated": "2015-05-19", - "ministryContact": "KOZEY DARON", + "uuid": "d9875d12-e362-49d7-9dcc-18d0bad01b8e", + "createdAt": "2014-01-28", + "completed": "2023-05-26", + "initiated": "2018-06-08", + "ministryContact": "PAUCEK JALEEL", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -76932,26 +87550,19 @@ ], "notationParticipants": [ { + "uuid": "6efce08e-877e-4449-a8a4-8795abd63aa3", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", "siteRegistry": false }, { + "uuid": "da6334a4-f67d-45cd-907f-18e9b728e687", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false }, { + "uuid": "cf576b5e-f80d-4516-a9e2-6ac5db53193c", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true @@ -76962,9 +87573,10 @@ ], "participants": [ { - "name": "IPSUM", - "endDate": "2023-04-08", - "startDate": "2016-08-24", + "uuid": "bfac22e8-5aed-47c0-b899-3764e2df4b32", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2021-09-20", + "startDate": "2018-05-31", "notes": "", "roles": [ "EMPLOYEE" @@ -76972,104 +87584,152 @@ "siteRegistry": false }, { + "uuid": "fbfaed71-9d0d-48d9-9f58-97032c09ca90", "name": "SHELL CANADA PRODUCTS", - "endDate": "2015-01-15", - "startDate": "2020-05-23", + "endDate": "2023-07-22", + "startDate": "2020-09-08", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "uuid": "2e30b534-17e9-4f89-bd6e-f8d7bfa8829a", + "name": "IPSUM", + "endDate": "2017-06-13", + "startDate": "2020-08-18", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "uuid": "d277874f-8191-45f8-9e03-1b4b0e5ace1e", + "name": "AMET, DOLOR SIT", + "endDate": "2014-08-24", + "startDate": "2019-06-04", + "notes": "", + "roles": [ + "EMPLOYEE" ], "siteRegistry": true } ], "suspectLandUses": [ { + "uuid": "76b6a9a1-e276-4cb6-98f6-4015badfd972", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2019-09-03 (described on Site Profile dated 2019-09-03)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "uuid": "ecd03bf1-ee69-4a20-9ee7-2eb49e875261", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2020-11-03 (described on Site Profile dated 2020-11-03)", + "notes": "INSERTED FOR SITE PROFILE DATED 2015-11-24 (described on Site Profile dated 2015-11-24)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-04-16 (described on Site Profile dated 2015-04-16)", + "uuid": "bbf33013-f180-4aca-9e26-f9cde2dd0a73", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2014-06-16 (described on Site Profile dated 2014-06-16)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], "parcelDescriptions": [ { - "siteRegistry": true, - "dateNoted": "2021-05-10", - "parcelID": "17530", - "crownLandUsePIN": "19783", - "crownLandFileNumber": "20666", - "landDescription": "LOT 5 OF LOT 2 BLOCK 1 DISTRICT LOT 1 PLAN 6689" + "uuid": "27343409-74b2-46fa-bc51-7febe18e5343", + "siteRegistry": false, + "dateNoted": "2021-03-07", + "parcelID": "16181", + "crownLandUsePIN": "19885", + "crownLandFileNumber": "16261", + "landDescription": "LOT 5 OF LOT 4 BLOCK 4 DISTRICT LOT 3 PLAN 6710" }, { + "uuid": "54875e95-f8b5-4a0b-9f05-1c5c75290cea", "siteRegistry": false, - "dateNoted": "2022-01-22", - "parcelID": "18475", - "crownLandUsePIN": "16513", - "crownLandFileNumber": "20758", - "landDescription": "LOT 5 OF LOT 5 BLOCK 3 DISTRICT LOT 1 PLAN 5592" + "dateNoted": "2022-03-02", + "parcelID": "20074", + "crownLandUsePIN": "19947", + "crownLandFileNumber": "15742", + "landDescription": "LOT 2 OF LOT 5 BLOCK 4 DISTRICT LOT 2 PLAN 6041" + }, + { + "uuid": "b4e4f792-69a9-491c-8d75-bdb008a75a56", + "siteRegistry": false, + "dateNoted": "2016-08-17", + "parcelID": "20409", + "crownLandUsePIN": "17213", + "crownLandFileNumber": "16350", + "landDescription": "LOT 4 OF LOT 5 BLOCK 5 DISTRICT LOT 4 PLAN 6932" + }, + { + "uuid": "2344642d-181a-4627-885d-acf5c6b52a90", + "siteRegistry": true, + "dateNoted": "2016-07-07", + "parcelID": "19277", + "crownLandUsePIN": "19292", + "crownLandFileNumber": "16864", + "landDescription": "LOT 4 OF LOT 2 BLOCK 3 DISTRICT LOT 3 PLAN 4443" } ], "siteDisclosures": [ { - "siteRegistry": false, - "dateReceived": "2015-08-17", - "dateCompleted": "2020-02-25", - "dateEntered": "2021-12-24", - "dateRegistrar": "2015-10-16", - "dateLocalAuthorityReceived": "2018-08-31", - "summary": "Facilis velit doloremque veniam dolores.\nQuis ullam sint at.", - "informationUsed": "Veniam perferendis nihil tempore beatae.\nBlanditiis hic natus officia a non accusantium maiores corporis.\nNesciunt ducimus molestiae quasi debitis repellendus neque omnis atque.\nIure voluptas provident.", - "pastOrPresentOrders": "Porro voluptates explicabo itaque cupiditate.\nSoluta itaque rerum.", + "uuid": "3fe88c81-4cc8-4e7c-b818-b98bcc366583", + "siteRegistry": true, + "dateReceived": "2023-01-09", + "dateCompleted": "2020-12-23", + "dateEntered": "2019-05-09", + "dateRegistrar": "2023-03-10", + "dateLocalAuthorityReceived": "2018-01-18", + "summary": "Omnis molestiae nobis.", + "informationUsed": "Consequatur autem fuga voluptatum quia ipsum necessitatibus ex non velit.\nMaxime ullam consequatur eos similique aperiam alias mollitia.\nSunt nam deleniti aspernatur qui iusto rerum.\nMagni eos quae optio.\nMinima magnam ipsum tempore voluptates eligendi ea.", + "pastOrPresentOrders": "Tempore perferendis optio porro at repellendus atque veniam fugiat consequuntur.\nOfficiis ipsam hic.", "commercialAndIndustrialPurposes": [ { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false - }, - { - "scheduleReference": "F2*", + "uuid": "bce0f3a2-49c7-4a16-a74d-b2d1cf6b77ef", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false - }, - { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false + "siteRegistry": true }, { + "uuid": "fe474567-8bad-4352-9888-14c22505c28e", "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false } ] }, { - "siteRegistry": false, - "dateReceived": "2023-05-12", - "dateCompleted": "2022-03-16", - "dateEntered": "2022-02-06", - "dateRegistrar": "2017-03-07", - "dateLocalAuthorityReceived": "2013-12-27", - "summary": "Inventore veritatis ea dicta tempore amet molestias necessitatibus hic.\nAliquid natus inventore voluptates dignissimos distinctio nemo consectetur impedit.", - "informationUsed": "Neque reprehenderit autem dolorem nobis aut autem a doloremque.\nNesciunt tempore animi consectetur cumque voluptas.\nInventore doloribus libero in.", - "pastOrPresentOrders": "Atque aut earum.\nSequi perspiciatis quis porro voluptatum cum.\nAut tempora aut natus rem tempore porro autem.", + "uuid": "ade76b11-2af1-4376-936b-f72839c80e80", + "siteRegistry": true, + "dateReceived": "2018-11-16", + "dateCompleted": "2013-12-11", + "dateEntered": "2018-08-02", + "dateRegistrar": "2015-05-10", + "dateLocalAuthorityReceived": "2018-08-15", + "summary": "Cupiditate quidem nemo.\nDolorum optio exercitationem eos impedit repudiandae provident non cupiditate.", + "informationUsed": "Totam iure dolores quod sapiente quo odit tempora eligendi.\nSunt ipsam impedit quidem odio.\nVoluptatum aut enim deserunt pariatur corporis repellendus.\nExpedita totam praesentium rem adipisci id.\nNostrum placeat illum.", + "pastOrPresentOrders": "Nihil quisquam esse corporis.", "commercialAndIndustrialPurposes": [ { + "uuid": "33cb261f-56ca-4660-a612-511aac1a4939", "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false }, { - "scheduleReference": "F1*", + "uuid": "7ad2846b-98c9-4e5f-a081-fa34ba1270df", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true + "siteRegistry": false }, { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "uuid": "f4359e2c-cd6d-45a9-a5fb-652a6e431cb9", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true } ] @@ -77077,101 +87737,114 @@ ], "activityLog": [ { + "uuid": "e24c5780-4617-49ca-99f2-f5cf7d143790", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "LEUSCHKE EMERALD", - "timestamp": "2022-11-14" - }, - { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "ABSHIRE DAPHNEE", - "timestamp": "2023-04-19" + "user": "DANIEL MAGDALEN", + "timestamp": "2017-09-13" }, { + "uuid": "93637352-5ad3-418a-81fe-d2c7d13b5fa3", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "RYAN MILFORD", - "timestamp": "2021-06-12" + "user": "ZEMLAK PRUDENCE", + "timestamp": "2018-03-22" }, { - "siteRegistry": true, + "uuid": "1f502283-043f-427b-9880-6830b677206c", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "HOWELL DAVE", - "timestamp": "2014-06-27" + "user": "SCHOEN SOFIA", + "timestamp": "2015-04-28" }, { + "uuid": "0e2bd15d-dfc4-4edd-be5a-200f9fd8f81c", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "HINTZ STEWART", - "timestamp": "2021-07-04" + "user": "CONROY DAPHNEY", + "timestamp": "2017-05-28" }, { + "uuid": "708afc3c-4bf4-4561-a900-8b5e2ffbdfaa", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "LUBOWITZ ABIGALE", - "timestamp": "2023-05-23" + "user": "MEDHURST ALIVIA", + "timestamp": "2022-12-15" }, { - "siteRegistry": true, + "uuid": "3a781b67-16d1-436e-81e9-d7a41f1fdf68", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "RITCHIE VERDA", - "timestamp": "2022-05-31" + "user": "BOTSFORD CIARA", + "timestamp": "2017-11-15" }, { + "uuid": "73843769-2d65-4adf-95cb-7de7cde05798", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "PAGAC TONY", - "timestamp": "2021-02-11" + "user": "SMITH LILYAN", + "timestamp": "2017-12-19" }, { + "uuid": "44944dd1-590e-44f4-8a78-60d44ae818f9", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "GIBSON ELISABETH", - "timestamp": "2021-10-29" + "user": "LUEILWITZ SYDNEY", + "timestamp": "2016-10-22" }, { + "uuid": "f60edd76-befd-4c1c-8690-af15e6060ab7", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "KESSLER MARC", - "timestamp": "2019-07-26" + "user": "HICKLE LEXI", + "timestamp": "2016-06-16" } ], "associatedSites": [ { - "dateNoted": "2016-04-22", + "uuid": "e02cc36e-c798-4425-8891-ba09a0153fda", + "dateNoted": "2018-06-08", "notes": "", - "parcelID": "19940", - "siteID": "17081", + "parcelID": "16192", + "siteID": "17913", + "siteRegistry": false + }, + { + "uuid": "912af51c-5ddc-4539-afd4-0d1b2685548c", + "dateNoted": "2021-08-15", + "notes": "", + "parcelID": "20876", + "siteID": "16651", "siteRegistry": true } ] }, { - "uuid": "128d16df-f115-4116-ad50-24cb0fa90ecb", - "siteID": 19726, - "address": "2226 Josie Stream", - "latitude": 50.5989, - "longitude": -121.9129, - "lastUpdated": "2013-11-01", - "city": "Angelineland", + "uuid": "68a8e5f6-37a5-49a6-9c26-5f8721841f88", + "siteID": 17251, + "address": "6038 Katlyn Fields", + "latitude": 51.1869, + "longitude": -130.1487, + "lastUpdated": "2019-07-02", + "city": "New Carlos", "region": "Cariboo", - "victoriaFile": "26250-20/18292", + "victoriaFile": "26250-20/10344", "regionalFile": "N/A", "parcelIDs": [ - 7998604, - 6687748, - 1043610, - 2468520, - 285544 + 7820382, + 8501495, + 7301117, + 5877183, + 6158672 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2021-01-13", - "completed": "2018-04-17", - "initiated": "2014-07-01", - "ministryContact": "LABADIE OLE", + "uuid": "ecdaca8d-8d39-405e-abc3-654d2d70218c", + "createdAt": "2019-11-14", + "completed": "2015-03-02", + "initiated": "2014-02-17", + "ministryContact": "BLANDA JEFF", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -77180,38 +87853,26 @@ ], "notationParticipants": [ { + "uuid": "67fab5e2-b93a-4023-a3fb-614c55795ba1", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { + "uuid": "218b463c-90f9-4043-a17b-42567d7c7671", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false } ], "siteRegistry": false }, { - "createdAt": "2020-06-26", - "completed": "2018-12-05", - "initiated": "2021-10-05", - "ministryContact": "LYNCH TEAGAN", + "uuid": "bbf9972d-01fa-487e-a3f3-298073f5325f", + "createdAt": "2014-12-20", + "completed": "2021-12-21", + "initiated": "2016-03-09", + "ministryContact": "BERGNAUM-GLEICHNER JOSIANNE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -77220,149 +87881,78 @@ ], "notationParticipants": [ { + "uuid": "126e8802-9294-4e55-9202-0446564bb10b", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { + "uuid": "9354968d-1f27-45d8-92e9-3717325790a5", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - } - ], - "siteRegistry": true - }, - { - "createdAt": "2018-10-19", - "completed": "2018-01-23", - "initiated": "2021-10-28", - "ministryContact": "TURNER BERNIE", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true }, { + "uuid": "e3cd9872-7967-45c9-8810-52cdbb636171", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - } - ], - "siteRegistry": false - }, - { - "createdAt": "2015-11-16", - "completed": "2022-02-14", - "initiated": "2020-09-16", - "ministryContact": "SCHMELER DILLAN", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - } - ], - "siteRegistry": true - }, - { - "createdAt": "2019-04-03", - "completed": "2021-07-24", - "initiated": "2022-12-08", - "ministryContact": "O'CONNER DARIEN", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { + "uuid": "39e47a66-d66d-4b1d-a001-28e484a2bc1a", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true }, { + "uuid": "a49647a6-c9da-4aea-9518-4e81ae95ea51", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true + "role": "SUBMITTED BY", + "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true } ], "participants": [ { - "name": "AMET, DOLOR SIT", - "endDate": "2016-08-26", - "startDate": "2017-05-28", + "uuid": "ef7c83e6-937a-4156-819f-72fd3399b248", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2017-03-09", + "startDate": "2019-02-16", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false }, { - "name": "IPSUM", - "endDate": "2023-01-21", - "startDate": "2017-05-28", + "uuid": "86c6154c-8dac-42cb-b092-4249b075b021", + "name": "AMET, DOLOR SIT", + "endDate": "2019-03-12", + "startDate": "2023-04-29", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], - "siteRegistry": false + "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2020-05-05", - "startDate": "2015-06-05", + "uuid": "961d915f-31fe-4244-b77b-731d3537e823", + "name": "IPSUM", + "endDate": "2015-05-03", + "startDate": "2015-09-17", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true }, { - "name": "IPSUM", - "endDate": "2018-03-20", - "startDate": "2022-03-03", + "uuid": "a95e805b-207f-4f4f-b70f-3934233d7781", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2018-08-15", + "startDate": "2015-01-22", "notes": "", "roles": [ "ORGANIZATION" @@ -77372,120 +87962,113 @@ ], "suspectLandUses": [ { + "uuid": "1f633683-8646-4424-ad2c-b95e4429a9e0", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2020-02-14 (described on Site Profile dated 2020-02-14)", + "notes": "INSERTED FOR SITE PROFILE DATED 2022-01-07 (described on Site Profile dated 2022-01-07)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { + "uuid": "b9cbc92f-e52f-4734-99ef-edeb0c2f9ab7", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-11-02 (described on Site Profile dated 2014-11-02)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" - }, - { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2023-01-19 (described on Site Profile dated 2023-01-19)", + "notes": "INSERTED FOR SITE PROFILE DATED 2020-09-28 (described on Site Profile dated 2020-09-28)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { + "uuid": "204aac6a-ba3d-4fd2-822f-93d6473fc82b", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-01-27 (described on Site Profile dated 2018-01-27)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" - }, - { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-07-02 (described on Site Profile dated 2021-07-02)", + "notes": "INSERTED FOR SITE PROFILE DATED 2021-06-18 (described on Site Profile dated 2021-06-18)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], "parcelDescriptions": [ { + "uuid": "7b031aa3-69eb-43bd-8721-b4475544ab06", "siteRegistry": false, - "dateNoted": "2022-02-03", - "parcelID": "20703", - "crownLandUsePIN": "19165", - "crownLandFileNumber": "20625", - "landDescription": "LOT 4 OF LOT 5 BLOCK 4 DISTRICT LOT 1 PLAN 3606" - }, - { - "siteRegistry": true, - "dateNoted": "2019-10-17", - "parcelID": "17852", - "crownLandUsePIN": "19777", - "crownLandFileNumber": "15862", - "landDescription": "LOT 5 OF LOT 4 BLOCK 5 DISTRICT LOT 5 PLAN 3596" - }, - { - "siteRegistry": true, - "dateNoted": "2018-08-26", - "parcelID": "18215", - "crownLandUsePIN": "17336", - "crownLandFileNumber": "18724", - "landDescription": "LOT 1 OF LOT 1 BLOCK 5 DISTRICT LOT 5 PLAN 5892" + "dateNoted": "2022-04-16", + "parcelID": "15649", + "crownLandUsePIN": "18315", + "crownLandFileNumber": "15640", + "landDescription": "LOT 4 OF LOT 5 BLOCK 3 DISTRICT LOT 1 PLAN 5266" }, { + "uuid": "a19e2294-690a-4b0d-97b1-42185d26b124", "siteRegistry": false, - "dateNoted": "2022-05-02", - "parcelID": "16690", - "crownLandUsePIN": "15785", - "crownLandFileNumber": "15647", - "landDescription": "LOT 5 OF LOT 4 BLOCK 4 DISTRICT LOT 1 PLAN 7132" + "dateNoted": "2020-04-11", + "parcelID": "18844", + "crownLandUsePIN": "18527", + "crownLandFileNumber": "16679", + "landDescription": "LOT 4 OF LOT 4 BLOCK 1 DISTRICT LOT 4 PLAN 5570" }, { - "siteRegistry": false, - "dateNoted": "2021-09-24", - "parcelID": "19454", - "crownLandUsePIN": "17406", - "crownLandFileNumber": "16942", - "landDescription": "LOT 3 OF LOT 2 BLOCK 5 DISTRICT LOT 5 PLAN 5439" + "uuid": "7c87e69d-b90f-4c3b-8c5e-b4cd532da46f", + "siteRegistry": true, + "dateNoted": "2014-01-08", + "parcelID": "20151", + "crownLandUsePIN": "16875", + "crownLandFileNumber": "18685", + "landDescription": "LOT 3 OF LOT 5 BLOCK 4 DISTRICT LOT 5 PLAN 5275" } ], "siteDisclosures": [ { + "uuid": "ac5d8454-67a1-45ee-a790-cb8e6b7eb0fa", "siteRegistry": false, - "dateReceived": "2018-12-20", - "dateCompleted": "2014-07-31", - "dateEntered": "2020-10-28", - "dateRegistrar": "2013-12-26", - "dateLocalAuthorityReceived": "2018-03-17", - "summary": "Aliquid voluptates praesentium excepturi vitae.\nCumque quam laudantium exercitationem animi animi.\nNostrum earum ad porro quibusdam praesentium rerum deleniti.", - "informationUsed": "Itaque nesciunt fuga ea.\nUllam iure a nemo iste commodi.\nQuaerat corrupti magnam ducimus odio.", - "pastOrPresentOrders": "Nemo excepturi sed voluptates esse debitis magnam voluptatem excepturi ipsum.", + "dateReceived": "2015-12-19", + "dateCompleted": "2015-11-20", + "dateEntered": "2020-01-30", + "dateRegistrar": "2021-05-13", + "dateLocalAuthorityReceived": "2014-08-26", + "summary": "Consequuntur quam reiciendis.", + "informationUsed": "Molestias non vel quia laudantium cum et.\nNisi nam aspernatur.\nSimilique optio deserunt deserunt maiores sapiente harum similique.\nPerferendis repellat quidem dolorem porro fugiat fuga illo.\nEnim aperiam quia.", + "pastOrPresentOrders": "Voluptas dolor excepturi modi incidunt assumenda a.", "commercialAndIndustrialPurposes": [ { - "scheduleReference": "F2*", + "uuid": "0db034f8-8004-4b67-851e-89cc0d0cff60", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true + "siteRegistry": false }, { - "scheduleReference": "F1*", + "uuid": "d3a53cd3-bfb8-4a10-8deb-9425ddd9fed3", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, { + "uuid": "f7ba1cd7-bff9-4135-9163-37236b8be3c2", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true + }, + { + "uuid": "c393a886-110c-4632-aed5-ad5f1497a7bd", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true } ] }, { - "siteRegistry": true, - "dateReceived": "2015-08-03", - "dateCompleted": "2022-07-25", - "dateEntered": "2022-02-22", - "dateRegistrar": "2015-03-13", - "dateLocalAuthorityReceived": "2015-06-15", - "summary": "Dolorem repudiandae quod voluptatibus neque culpa molestias sunt amet.", - "informationUsed": "Dolorem beatae esse velit culpa aperiam ipsam at assumenda.\nTempore modi similique.\nDolor vero iste consectetur ut ea sed.\nQui nostrum eum corporis ducimus perspiciatis est.\nNam iusto alias deleniti neque aliquam.", - "pastOrPresentOrders": "Eos impedit illum.\nNisi illum doloribus labore amet nihil occaecati totam eum.\nQuisquam cumque itaque id voluptatem porro ex atque.", + "uuid": "62f59d39-406d-4b02-afb8-409a95878616", + "siteRegistry": false, + "dateReceived": "2023-01-23", + "dateCompleted": "2015-07-07", + "dateEntered": "2021-12-14", + "dateRegistrar": "2022-03-22", + "dateLocalAuthorityReceived": "2015-09-08", + "summary": "Natus soluta maxime.\nAb aliquid nostrum quibusdam blanditiis ex excepturi asperiores magnam fugiat.\nEius ipsa commodi pariatur.", + "informationUsed": "Assumenda non necessitatibus magnam labore blanditiis pariatur dolorem.\nRepellat corporis pariatur porro assumenda provident velit distinctio error.\nQuibusdam nihil dolorum molestias culpa delectus temporibus magnam quae quae.\nAccusamus ex dolore vero quod a aliquid veniam.\nVoluptas magni doloremque voluptatibus debitis.", + "pastOrPresentOrders": "Minus reiciendis sapiente non eum aspernatur.\nEveniet debitis explicabo molestiae et.\nDolores aperiam minima esse corporis aperiam.", "commercialAndIndustrialPurposes": [ { - "scheduleReference": "F1*", + "uuid": "e55a940e-0c48-4105-a547-e3bbf324e45c", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true + "siteRegistry": false }, { - "scheduleReference": "F1*", + "uuid": "450b04e4-5eb8-4b01-b148-83f9b5f0b7c7", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false } @@ -77494,95 +88077,107 @@ ], "activityLog": [ { - "siteRegistry": false, + "uuid": "f288cc1c-ef55-4462-a458-b14fd9cfe696", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "POLLICH-LANGOSH WADE", - "timestamp": "2019-04-10" + "user": "GRAHAM REMINGTON", + "timestamp": "2019-03-21" }, { + "uuid": "dcda9b6f-f48d-4548-9f49-35d40156b3cc", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "STEHR ALFONSO", - "timestamp": "2014-09-29" + "user": "VANDERVORT WINIFRED", + "timestamp": "2020-07-19" }, { + "uuid": "38c72f47-7069-4b40-9eab-4cafa7c2a840", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "HOMENICK EUNICE", - "timestamp": "2016-07-06" - }, - { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "STRACKE SVEN", - "timestamp": "2021-11-18" + "user": "ONDRICKA QUEENIE", + "timestamp": "2022-12-10" }, { + "uuid": "806e75a1-7974-482d-99c0-b13630079154", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "SIMONIS MYRNA", - "timestamp": "2018-02-13" + "user": "FRANECKI BRADY", + "timestamp": "2015-05-11" }, { - "siteRegistry": false, + "uuid": "bbe9cdd3-fbbf-4a72-98b8-f2e51bba05d1", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "FEENEY TREMAINE", - "timestamp": "2018-02-27" + "user": "BEATTY JAROD", + "timestamp": "2018-10-13" }, { + "uuid": "43692be5-cce9-40a1-8d30-702f56cea0e7", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "ARMSTRONG GENEVIEVE", - "timestamp": "2014-08-29" + "user": "FADEL-SCHILLER BROWN", + "timestamp": "2015-07-28" }, { - "siteRegistry": true, + "uuid": "0b2836ac-a127-4a7c-a0ea-49ddb771d96e", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "KOZEY HUNTER", - "timestamp": "2017-03-01" + "user": "KLING DIAMOND", + "timestamp": "2019-06-23" }, { - "siteRegistry": true, + "uuid": "eaee69e9-0ee9-4719-b5dd-c413b6968fcf", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "MCCULLOUGH ALEJANDRA", - "timestamp": "2019-10-12" + "user": "KOZEY KARA", + "timestamp": "2017-10-21" } ], "associatedSites": [ { - "dateNoted": "2014-03-27", + "uuid": "b08dbcaa-c5fb-4887-b501-2fa025ad3116", + "dateNoted": "2021-05-05", + "notes": "", + "parcelID": "20038", + "siteID": "20203", + "siteRegistry": true + }, + { + "uuid": "13192faa-f0a6-4b01-abba-bed7f266ff42", + "dateNoted": "2018-07-24", "notes": "", - "parcelID": "17150", - "siteID": "19399", + "parcelID": "20606", + "siteID": "17172", "siteRegistry": true } ] }, { - "uuid": "505b39d1-122f-4af3-ac42-3926fedcb866", - "siteID": 18013, - "address": "6754 Alexane Drives", - "latitude": 51.1119, - "longitude": -136.081, - "lastUpdated": "2018-03-07", - "city": "Port Jordane", - "region": "Thompson-Okanagan", - "victoriaFile": "26250-20/6471", + "uuid": "a33c8fb0-ab3b-402b-940b-d010c9506294", + "siteID": 16804, + "address": "2082 Homenick Landing", + "latitude": 54.7225, + "longitude": -138.1798, + "lastUpdated": "2020-05-30", + "city": "Lake Marjolaine", + "region": "Mainland/Southwest", + "victoriaFile": "26250-20/7020", "regionalFile": "N/A", "parcelIDs": [ - 8026522, - 5739900, - 5475331, - 3699334, - 4087534 + 3535352, + 965513, + 1527674, + 2550971, + 383651 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2023-05-05", - "completed": "2021-05-21", - "initiated": "2022-08-21", - "ministryContact": "HUELS ROSEMARY", + "uuid": "28c36900-e515-4f92-a13f-2521226d9b08", + "createdAt": "2019-04-05", + "completed": "2016-07-15", + "initiated": "2019-02-18", + "ministryContact": "KIRLIN ENID", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -77591,38 +88186,26 @@ ], "notationParticipants": [ { + "uuid": "c8ccedb8-9ee6-455b-96e1-74821e8aa96b", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { + "uuid": "01090b95-cc49-4117-8dc8-786120e71c02", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2014-06-17", - "completed": "2018-03-28", - "initiated": "2021-11-14", - "ministryContact": "BECHTELAR JORDANE", + "uuid": "6962b272-b979-4247-8ac8-f0123c80e2aa", + "createdAt": "2014-06-29", + "completed": "2017-12-20", + "initiated": "2016-08-28", + "ministryContact": "RUNOLFSDOTTIR RUPERT", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -77631,83 +88214,44 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "3cc79341-17dc-42aa-953a-9abb04c7f274", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - } - ], - "siteRegistry": false - }, - { - "createdAt": "2021-02-11", - "completed": "2021-05-07", - "initiated": "2017-11-30", - "ministryContact": "KOELPIN KENNEDY", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "uuid": "bd3a43aa-0f7f-4c7f-a4b3-59d2f945bec6", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": false }, { + "uuid": "905d3894-aecd-4e07-8920-2c0fedbb008c", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true }, { + "uuid": "a9dd6381-1928-4a62-98f9-d2deb54bcea2", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { + "uuid": "eac1228d-9e70-4e4d-8f10-6456c424a603", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - } - ], - "siteRegistry": false - }, - { - "createdAt": "2022-09-01", - "completed": "2019-01-31", - "initiated": "2014-12-20", - "ministryContact": "BUCKRIDGE LYLA", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", "siteRegistry": true } ], "siteRegistry": true }, { - "createdAt": "2023-04-24", - "completed": "2016-07-30", - "initiated": "2020-07-19", - "ministryContact": "ROMAGUERA RUPERT", + "uuid": "401f40f9-f262-49ad-89d7-47e920bf74a4", + "createdAt": "2018-12-21", + "completed": "2022-09-10", + "initiated": "2018-04-15", + "ministryContact": "GISLASON VALENTINA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -77716,27 +88260,20 @@ ], "notationParticipants": [ { + "uuid": "1f663280-3ce2-45ce-b166-efa25518d958", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true }, { + "uuid": "42717299-562f-4ce5-bac7-cd562bec8a5f", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "2392f686-5e91-4ecd-8149-87256384bf7b", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false } @@ -77746,157 +88283,156 @@ ], "participants": [ { + "uuid": "d49ff3a3-9d3b-4f52-b8f8-397965c6ee06", "name": "IPSUM", - "endDate": "2014-10-26", - "startDate": "2019-02-15", + "endDate": "2022-01-13", + "startDate": "2023-07-21", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": true }, { - "name": "IPSUM", - "endDate": "2020-12-09", - "startDate": "2014-03-25", + "uuid": "d77048a7-5b38-4acb-8d13-1c8ce21cd3c0", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2014-06-18", + "startDate": "2018-01-06", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": false + "siteRegistry": true }, { + "uuid": "f613a67f-5981-42f0-9156-b051b2b09571", "name": "AMET, DOLOR SIT", - "endDate": "2015-04-21", - "startDate": "2015-06-04", + "endDate": "2015-01-04", + "startDate": "2023-02-15", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "uuid": "d0f616fd-ff14-47b1-88a0-42ef635185fc", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2023-09-15", + "startDate": "2013-10-22", "notes": "", "roles": [ "ORGANIZATION" ], "siteRegistry": false + }, + { + "uuid": "73588ca5-67c5-440d-8587-e38eabb543ae", + "name": "IPSUM", + "endDate": "2021-06-11", + "startDate": "2017-09-12", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true } ], "suspectLandUses": [ { + "uuid": "ce48824b-4d1a-4bf4-a72a-610977fa4951", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2016-11-16 (described on Site Profile dated 2016-11-16)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "uuid": "24b842c6-fa4f-4467-866c-bcd5753c7311", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2017-01-31 (described on Site Profile dated 2017-01-31)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "uuid": "8f90ccf7-9afd-4461-a521-c8e0a549c3ec", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-05-25 (described on Site Profile dated 2022-05-25)", + "notes": "INSERTED FOR SITE PROFILE DATED 2016-07-27 (described on Site Profile dated 2016-07-27)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-08-23 (described on Site Profile dated 2021-08-23)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "uuid": "c224e7c3-cf32-45d9-947b-349be418d1b1", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2014-03-25 (described on Site Profile dated 2014-03-25)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { + "uuid": "b298e789-6b8e-4852-84f7-6b4702f2ed5f", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-08-27 (described on Site Profile dated 2014-08-27)", + "notes": "INSERTED FOR SITE PROFILE DATED 2016-06-19 (described on Site Profile dated 2016-06-19)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], "parcelDescriptions": [ { + "uuid": "0b4b4047-9af3-4bbc-83e8-33a8077a07a6", "siteRegistry": false, - "dateNoted": "2019-06-07", - "parcelID": "18258", - "crownLandUsePIN": "19940", - "crownLandFileNumber": "18175", - "landDescription": "LOT 2 OF LOT 5 BLOCK 2 DISTRICT LOT 2 PLAN 4623" - }, - { - "siteRegistry": false, - "dateNoted": "2015-02-28", - "parcelID": "20731", - "crownLandUsePIN": "15951", - "crownLandFileNumber": "15479", - "landDescription": "LOT 1 OF LOT 1 BLOCK 2 DISTRICT LOT 1 PLAN 8483" + "dateNoted": "2017-11-27", + "parcelID": "18047", + "crownLandUsePIN": "15772", + "crownLandFileNumber": "17847", + "landDescription": "LOT 5 OF LOT 3 BLOCK 4 DISTRICT LOT 4 PLAN 8560" }, { + "uuid": "79d0ecda-4833-4a16-825d-5b99f8cba9d9", "siteRegistry": true, - "dateNoted": "2013-12-15", - "parcelID": "17708", - "crownLandUsePIN": "18602", - "crownLandFileNumber": "17585", - "landDescription": "LOT 3 OF LOT 4 BLOCK 3 DISTRICT LOT 1 PLAN 3456" - }, - { - "siteRegistry": true, - "dateNoted": "2020-01-17", - "parcelID": "20763", - "crownLandUsePIN": "19379", - "crownLandFileNumber": "20286", - "landDescription": "LOT 1 OF LOT 2 BLOCK 2 DISTRICT LOT 4 PLAN 7763" + "dateNoted": "2017-01-18", + "parcelID": "15386", + "crownLandUsePIN": "17363", + "crownLandFileNumber": "16793", + "landDescription": "LOT 4 OF LOT 1 BLOCK 1 DISTRICT LOT 5 PLAN 9654" }, { - "siteRegistry": true, - "dateNoted": "2021-03-26", - "parcelID": "16229", - "crownLandUsePIN": "17452", - "crownLandFileNumber": "17433", - "landDescription": "LOT 5 OF LOT 1 BLOCK 5 DISTRICT LOT 5 PLAN 5320" + "uuid": "32f18194-474e-4325-bf31-7e98374a1234", + "siteRegistry": false, + "dateNoted": "2017-01-14", + "parcelID": "20950", + "crownLandUsePIN": "17996", + "crownLandFileNumber": "18718", + "landDescription": "LOT 2 OF LOT 5 BLOCK 5 DISTRICT LOT 1 PLAN 5303" } ], "siteDisclosures": [ { + "uuid": "a6ed4a4a-b70b-4628-9244-22da7121cb3e", "siteRegistry": false, - "dateReceived": "2021-12-16", - "dateCompleted": "2017-09-01", - "dateEntered": "2015-07-18", - "dateRegistrar": "2020-08-15", - "dateLocalAuthorityReceived": "2014-01-22", - "summary": "Voluptates qui delectus reprehenderit iste dolores hic facilis.", - "informationUsed": "Veritatis vero eligendi assumenda adipisci.\nEum pariatur quidem non porro ratione.\nRepellat veritatis necessitatibus eligendi necessitatibus.", - "pastOrPresentOrders": "Aliquam deserunt possimus eligendi alias.\nConsectetur dicta officiis voluptatem earum fugiat ipsum aspernatur.", + "dateReceived": "2018-10-20", + "dateCompleted": "2021-05-11", + "dateEntered": "2017-01-01", + "dateRegistrar": "2016-03-15", + "dateLocalAuthorityReceived": "2022-08-14", + "summary": "Deleniti corporis quam repudiandae odio pariatur id laboriosam.\nMolestiae dolorum optio.\nPlaceat illo recusandae quis ad blanditiis ad.", + "informationUsed": "Non rerum a labore velit.\nEum voluptatibus ipsum libero.\nEx possimus delectus corporis optio fuga perferendis consequatur.\nCupiditate molestias occaecati repudiandae in doloremque odit ducimus fugit dolores.\nVitae dolorum eum facere laudantium dolor.", + "pastOrPresentOrders": "Itaque dignissimos asperiores nulla reprehenderit voluptas minima exercitationem exercitationem.\nDolorum adipisci quos provident aliquam.\nVeritatis deleniti consectetur delectus.", "commercialAndIndustrialPurposes": [ { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false - }, - { + "uuid": "ca23599f-d920-4fbe-a977-ccc28c858e66", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true + "siteRegistry": false }, { + "uuid": "d0ebee56-c3a2-4948-ba75-d045703d1328", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false - } - ] - }, - { - "siteRegistry": false, - "dateReceived": "2016-02-19", - "dateCompleted": "2020-07-19", - "dateEntered": "2015-08-24", - "dateRegistrar": "2017-12-01", - "dateLocalAuthorityReceived": "2018-06-17", - "summary": "Esse quo quae aut quidem sint quisquam architecto blanditiis tempora.\nFuga voluptas sequi in architecto tempore quibusdam dolores.\nPerferendis numquam quos ea enim odit maiores aperiam temporibus.", - "informationUsed": "Nobis quae et harum aliquam consequatur dolorem quae.\nIste odio fugiat nisi impedit asperiores iusto temporibus.\nUt accusamus vitae molestias eos.\nAtque amet veniam praesentium iusto.", - "pastOrPresentOrders": "Suscipit qui error nisi sunt.", - "commercialAndIndustrialPurposes": [ - { + "uuid": "80c02713-ab4b-4892-8551-93163dd42958", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true - }, - { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false - }, - { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, { - "scheduleReference": "F2*", + "uuid": "e3ad4c98-c202-4777-9037-4b66e8e4db83", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true } @@ -77905,78 +88441,114 @@ ], "activityLog": [ { + "uuid": "65b400cc-19b6-4579-a32e-5b750379c954", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "QUIGLEY JAYDON", + "timestamp": "2014-09-14" + }, + { + "uuid": "99cffe53-99f7-408e-b3ca-ac6d80213733", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "HAGENES MARIANO", - "timestamp": "2018-08-21" + "user": "ABBOTT JACE", + "timestamp": "2016-03-14" }, { + "uuid": "81680dc3-1a77-4d12-8425-3f15c3f391fa", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "RATH ZACHERY", - "timestamp": "2021-04-24" + "user": "OLSON NYA", + "timestamp": "2022-07-09" }, { + "uuid": "bdaa6bc7-23e5-4122-b579-bd0d51bc6e4c", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "TREMBLAY JESUS", - "timestamp": "2022-01-15" + "user": "HESSEL KADEN", + "timestamp": "2020-03-24" + }, + { + "uuid": "138ac2f8-cc46-4126-9f19-f582f10bb5ab", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "KIEHN CEDRICK", + "timestamp": "2014-03-04" }, { + "uuid": "399b3011-00a1-4149-9447-bed05d01b511", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "JOHNSTON DARYL", - "timestamp": "2014-12-09" + "user": "CASSIN EVALYN", + "timestamp": "2022-11-13" }, { + "uuid": "dce578cf-a572-4113-a8e5-ac30fda5946f", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "TREMBLAY LEO", - "timestamp": "2016-03-08" + "user": "VANDERVORT DAKOTA", + "timestamp": "2022-03-27" + }, + { + "uuid": "9278bf95-1f93-4f8c-81b4-2eb9f705c234", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "OLSON MAXIMUS", + "timestamp": "2017-06-12" + }, + { + "uuid": "091c08f6-8b57-456a-9749-dae32c482b1e", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "KIEHN-HARVEY RENEE", + "timestamp": "2022-03-15" } ], "associatedSites": [ { - "dateNoted": "2015-12-18", + "uuid": "04d7cd7f-4a06-4a43-81f2-e474ffb7b287", + "dateNoted": "2014-11-03", "notes": "", - "parcelID": "15443", - "siteID": "20492", + "parcelID": "20109", + "siteID": "20314", "siteRegistry": false }, { - "dateNoted": "2022-10-07", + "uuid": "fe73d6aa-90c4-4b50-bfa0-d6133d269662", + "dateNoted": "2019-12-13", "notes": "", - "parcelID": "17822", - "siteID": "17110", - "siteRegistry": false + "parcelID": "19829", + "siteID": "16323", + "siteRegistry": true } ] }, { - "uuid": "c43c8887-48c1-4722-8ac5-75a5ae470bfe", - "siteID": 16733, - "address": "1018 Rico Green", - "latitude": 53.4854, - "longitude": -122.0856, - "lastUpdated": "2018-03-20", - "city": "Jacobiport", - "region": "Thompson-Okanagan", - "victoriaFile": "26250-20/1298", + "uuid": "9a520ff7-9567-482b-ab7c-a6156ee50202", + "siteID": 16986, + "address": "12557 Parisian Landing", + "latitude": 58.0808, + "longitude": -129.3462, + "lastUpdated": "2018-07-28", + "city": "New Evabury", + "region": " North Coast", + "victoriaFile": "26250-20/11251", "regionalFile": "N/A", "parcelIDs": [ - 897388, - 9901433, - 4278319, - 7015674, - 6547222 + 7292508, + 8197030, + 7816853, + 6391384, + 1607146 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2016-10-12", - "completed": "2018-02-18", - "initiated": "2018-10-17", - "ministryContact": "BARTELL JUDSON", + "uuid": "be5bca28-cacb-425b-834e-865db59672da", + "createdAt": "2022-01-28", + "completed": "2016-03-06", + "initiated": "2022-10-13", + "ministryContact": "DAVIS-HARVEY LINA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -77985,73 +88557,26 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { + "uuid": "f14f5572-8bfe-40e2-9e86-c3b4f40e0b21", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", "siteRegistry": false }, { + "uuid": "4cc7cba6-dcbb-4b9d-afd8-dc4f3dece149", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - } - ], - "siteRegistry": false - }, - { - "createdAt": "2014-06-04", - "completed": "2023-01-19", - "initiated": "2022-09-13", - "ministryContact": "MARQUARDT CARY", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", "siteRegistry": false } ], "siteRegistry": true }, { - "createdAt": "2019-01-31", - "completed": "2023-01-27", - "initiated": "2013-12-23", - "ministryContact": "LARKIN ELFRIEDA", + "uuid": "bdc9455e-a495-4e50-84c5-cc8b6189635a", + "createdAt": "2019-02-22", + "completed": "2023-10-11", + "initiated": "2021-01-12", + "ministryContact": "LABADIE PRINCE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -78060,270 +88585,285 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", + "uuid": "fa8876ab-e28e-4a10-941a-a2042275f478", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { + "uuid": "128c83b9-3738-4e69-b51d-55d0626fceb0", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true } ], "participants": [ { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2019-12-09", - "startDate": "2014-06-22", + "uuid": "64776225-52a1-4e3e-a1c9-d545c9a4329c", + "name": "AMET, DOLOR SIT", + "endDate": "2016-12-28", + "startDate": "2022-03-31", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false }, { - "name": "AMET, DOLOR SIT", - "endDate": "2020-06-25", - "startDate": "2015-05-24", + "uuid": "ad595cf0-6b0d-4f3a-add6-896931505611", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2022-03-24", + "startDate": "2021-10-26", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": true + "siteRegistry": false }, { + "uuid": "5addf183-8a5e-4be5-95da-1ac76278dd96", "name": "IPSUM", - "endDate": "2022-05-01", - "startDate": "2019-03-21", + "endDate": "2022-11-24", + "startDate": "2019-07-09", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": false } ], "suspectLandUses": [ { + "uuid": "bea5c08d-a60a-4dc2-807a-dba2ed5e50b4", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-04-03 (described on Site Profile dated 2016-04-03)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "notes": "INSERTED FOR SITE PROFILE DATED 2022-08-21 (described on Site Profile dated 2022-08-21)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2020-05-18 (described on Site Profile dated 2020-05-18)", + "uuid": "01273685-ed44-4da3-b970-39218c10a848", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2022-12-21 (described on Site Profile dated 2022-12-21)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { + "uuid": "cdcfb97e-7125-46b7-ba10-ffd6ab7f9843", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2020-12-18 (described on Site Profile dated 2020-12-18)", + "notes": "INSERTED FOR SITE PROFILE DATED 2018-04-13 (described on Site Profile dated 2018-04-13)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "uuid": "c61ceb0d-f928-4179-a91b-0c7676b2d4b8", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2020-02-11 (described on Site Profile dated 2020-02-11)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], "parcelDescriptions": [ { + "uuid": "fbbf7496-cc31-4593-b084-96c62919e4f6", "siteRegistry": true, - "dateNoted": "2021-07-22", - "parcelID": "16713", - "crownLandUsePIN": "16145", - "crownLandFileNumber": "17943", - "landDescription": "LOT 2 OF LOT 4 BLOCK 3 DISTRICT LOT 3 PLAN 5925" - }, - { - "siteRegistry": false, - "dateNoted": "2018-07-27", - "parcelID": "17546", - "crownLandUsePIN": "17028", - "crownLandFileNumber": "20050", - "landDescription": "LOT 5 OF LOT 4 BLOCK 2 DISTRICT LOT 3 PLAN 8292" + "dateNoted": "2019-05-20", + "parcelID": "17553", + "crownLandUsePIN": "18753", + "crownLandFileNumber": "20343", + "landDescription": "LOT 4 OF LOT 5 BLOCK 3 DISTRICT LOT 1 PLAN 7724" }, { + "uuid": "7203689e-9efc-42fc-b33d-03d0b5a5d51b", "siteRegistry": false, - "dateNoted": "2019-09-13", - "parcelID": "16206", - "crownLandUsePIN": "15650", - "crownLandFileNumber": "16978", - "landDescription": "LOT 5 OF LOT 1 BLOCK 2 DISTRICT LOT 3 PLAN 5591" - }, - { - "siteRegistry": true, - "dateNoted": "2018-09-03", - "parcelID": "20549", - "crownLandUsePIN": "15225", - "crownLandFileNumber": "16748", - "landDescription": "LOT 5 OF LOT 3 BLOCK 1 DISTRICT LOT 1 PLAN 9131" - }, - { - "siteRegistry": true, - "dateNoted": "2023-09-30", - "parcelID": "19641", - "crownLandUsePIN": "19936", - "crownLandFileNumber": "15204", - "landDescription": "LOT 4 OF LOT 5 BLOCK 4 DISTRICT LOT 2 PLAN 5517" + "dateNoted": "2014-10-19", + "parcelID": "15221", + "crownLandUsePIN": "15335", + "crownLandFileNumber": "15938", + "landDescription": "LOT 3 OF LOT 4 BLOCK 1 DISTRICT LOT 2 PLAN 8822" } ], "siteDisclosures": [ { + "uuid": "cb7deaa8-efff-44dc-a00a-9b8d6ede4597", "siteRegistry": false, - "dateReceived": "2019-07-24", - "dateCompleted": "2017-12-17", - "dateEntered": "2020-03-18", - "dateRegistrar": "2020-01-29", - "dateLocalAuthorityReceived": "2018-06-06", - "summary": "Debitis debitis provident placeat odio rerum quos sint.", - "informationUsed": "Ad omnis dignissimos praesentium veniam.\nPariatur placeat facere saepe cumque saepe repudiandae.\nVoluptatibus cum temporibus.", - "pastOrPresentOrders": "Ipsa alias voluptatibus quaerat corporis optio cum voluptatem quos quod.\nDoloremque ratione sunt dignissimos assumenda.\nDucimus voluptatibus deleniti enim.", + "dateReceived": "2019-01-16", + "dateCompleted": "2018-06-19", + "dateEntered": "2020-02-02", + "dateRegistrar": "2020-07-24", + "dateLocalAuthorityReceived": "2014-11-03", + "summary": "Inventore quas itaque placeat id omnis qui aperiam accusantium.", + "informationUsed": "Distinctio magnam quo tempore eaque officia.\nQuisquam perferendis quam voluptas nihil eos numquam iusto.\nQuia iure ea voluptatibus tempora illum maiores totam.", + "pastOrPresentOrders": "Nobis quo quis illum hic eligendi nobis id magni aperiam.", "commercialAndIndustrialPurposes": [ { - "scheduleReference": "F2*", + "uuid": "28e9ad72-57e6-47b4-b22a-b0656b2e6c12", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false }, { + "uuid": "a515b64c-8581-495d-af78-22fcf9e00a3b", "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false }, { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false + "uuid": "d2f0af81-c8c7-404f-8233-182194ee1f43", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true }, { - "scheduleReference": "F2*", + "uuid": "3e5b3091-7ed3-47d3-b9b3-13ef46f17b08", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false } ] }, { - "siteRegistry": false, - "dateReceived": "2017-11-06", - "dateCompleted": "2021-11-20", - "dateEntered": "2016-10-05", - "dateRegistrar": "2019-08-06", - "dateLocalAuthorityReceived": "2015-10-13", - "summary": "Sit totam sapiente aut.\nTotam sapiente eos ab sapiente reprehenderit rerum.", - "informationUsed": "Molestias minus perspiciatis.\nDignissimos nulla id repellat neque cum libero.\nIste tempore quis aspernatur perferendis ad molestiae.", - "pastOrPresentOrders": "Numquam facilis magnam impedit quaerat blanditiis aliquid porro dignissimos adipisci.\nSit nisi accusamus delectus.", + "uuid": "bbd61432-edfb-45f4-891b-de5a87b09437", + "siteRegistry": true, + "dateReceived": "2020-10-28", + "dateCompleted": "2018-04-04", + "dateEntered": "2022-11-03", + "dateRegistrar": "2018-02-09", + "dateLocalAuthorityReceived": "2023-02-25", + "summary": "Atque distinctio quam.\nTempore quasi atque.", + "informationUsed": "Quis aliquam corrupti architecto.\nAssumenda distinctio dolorem dolor consequatur assumenda.\nAut fugiat recusandae at praesentium.\nCumque deserunt fugiat sapiente.\nCumque ea numquam modi quidem.", + "pastOrPresentOrders": "Blanditiis doloremque explicabo nihil asperiores.\nQuia occaecati fugiat eum illum minima aspernatur delectus.", "commercialAndIndustrialPurposes": [ { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false - }, - { + "uuid": "8ef341d3-db13-41de-a1e3-cbb962028010", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false }, { + "uuid": "0ad2665e-d1c1-44e6-88fd-1926b993b0e5", "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false } ] } ], "activityLog": [ { - "siteRegistry": true, + "uuid": "0293db97-c9ee-4545-9561-d557a208e4ce", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "LEGROS ISRAEL", - "timestamp": "2018-01-16" + "user": "FEEST KAMRON", + "timestamp": "2020-01-11" }, { + "uuid": "72405036-38a3-40cc-a0eb-9196371a5590", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "REMPEL CAYLA", - "timestamp": "2021-04-23" + "user": "KEELING LEANNA", + "timestamp": "2019-08-23" + }, + { + "uuid": "ee1243ab-2d07-47df-89f2-edd8a1f29e57", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "KEELING LIZETH", + "timestamp": "2022-11-24" + }, + { + "uuid": "9171cedc-244c-4a46-9c21-4baf11751002", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "STANTON WOODROW", + "timestamp": "2021-04-17" }, { + "uuid": "cb75ea8e-2777-4c84-b8c4-a5aa9ac8d8d0", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "GISLASON MARSHALL", - "timestamp": "2017-07-23" + "user": "HEATHCOTE VELLA", + "timestamp": "2018-08-20" }, { + "uuid": "31bcbaa5-ee2b-4c28-8d85-2c9dcc809564", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "NIENOW NEHA", - "timestamp": "2014-04-11" + "user": "ZBONCAK CLETUS", + "timestamp": "2017-06-03" }, { + "uuid": "bd1e1911-2c4c-48d2-8947-1c0f9e92982d", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "ZIEME MYRON", - "timestamp": "2020-06-27" + "user": "RENNER ASTRID", + "timestamp": "2016-03-18" }, { + "uuid": "8c6460c5-fee1-40ff-ab5f-45cefa58e5b2", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "YOST CHRISTOP", - "timestamp": "2022-09-14" + "user": "CUMMERATA MIKE", + "timestamp": "2020-07-13" + }, + { + "uuid": "9b368a50-b698-4d8a-91b9-b3b8a8fd89ee", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "LOCKMAN ADELINE", + "timestamp": "2014-08-16" + }, + { + "uuid": "e8524bc4-ab5a-4f67-b88c-c410ddad2db0", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "YUNDT LEMPI", + "timestamp": "2015-07-19" } ], "associatedSites": [ { - "dateNoted": "2019-03-20", - "notes": "", - "parcelID": "19524", - "siteID": "19749", - "siteRegistry": true - }, - { - "dateNoted": "2021-03-01", + "uuid": "bb85e498-7562-41fc-b081-1d0d0b2db193", + "dateNoted": "2020-03-07", "notes": "", - "parcelID": "17891", - "siteID": "15675", + "parcelID": "20812", + "siteID": "17458", "siteRegistry": false }, { - "dateNoted": "2019-03-14", + "uuid": "f1870f81-b449-43d8-a633-2097239897e0", + "dateNoted": "2017-12-19", "notes": "", - "parcelID": "19055", - "siteID": "19390", + "parcelID": "17201", + "siteID": "17172", "siteRegistry": false } ] }, { - "uuid": "993c7b9e-a80d-46a9-ab85-b5450f521250", - "siteID": 17329, - "address": "285 Era Common", - "latitude": 48.7533, - "longitude": -121.6843, - "lastUpdated": "2021-09-06", - "city": "New Jonatan", + "uuid": "92b89119-4b6f-4120-a795-c48bc371cc9c", + "siteID": 20526, + "address": "7970 Conroy Hollow", + "latitude": 56.2713, + "longitude": -136.3135, + "lastUpdated": "2020-05-29", + "city": "Flatleyboro", "region": " North Coast", - "victoriaFile": "26250-20/19589", + "victoriaFile": "26250-20/16346", "regionalFile": "N/A", "parcelIDs": [ - 6853394, - 4432549, - 2149179, - 9719028, - 1078247 + 1452050, + 1824830, + 5962865, + 4616584, + 4392420 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2019-07-25", - "completed": "2018-07-19", - "initiated": "2019-11-26", - "ministryContact": "CHRISTIANSEN ZULA", + "uuid": "b7ae4e23-936f-4483-a2dc-6ef49f55720c", + "createdAt": "2017-08-14", + "completed": "2020-01-24", + "initiated": "2023-01-26", + "ministryContact": "TOWNE PALMA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -78332,28 +88872,44 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "uuid": "ba3a1397-02f1-4b3b-8181-8bf3d74671ff", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": false }, { + "uuid": "55caacc4-7849-498f-9f93-eadaf19ca096", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "8dee6cc1-1c81-4149-8bc3-d13d5b150575", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { + "uuid": "12e903d2-e9bf-4dbd-961b-590acf5ce2b0", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "2413a496-7ec6-416c-94cc-9c78a097efc1", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2019-11-23", - "completed": "2021-11-12", - "initiated": "2022-10-03", - "ministryContact": "CRIST ANTONINA", + "uuid": "5ebabf5b-465f-4574-940a-9f3cce3cb41c", + "createdAt": "2023-05-10", + "completed": "2017-06-25", + "initiated": "2022-03-11", + "ministryContact": "BLICK GRACIELA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -78362,33 +88918,44 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "2a9bc62b-008a-4072-8d34-db02da657208", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "f5b1f376-e2fe-4ddc-9e64-eabb14597ebe", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "7bb53b68-b713-43e4-b831-2f86cd7b858c", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false }, { + "uuid": "324ef546-536b-4a3c-bb1c-8b0ff7f4a9b8", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "uuid": "3f2982b1-3106-4e37-9264-6865b39fb1c6", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": false } ], "siteRegistry": false }, { - "createdAt": "2016-05-13", - "completed": "2021-04-07", - "initiated": "2016-04-24", - "ministryContact": "RIPPIN ARCHIBALD", + "uuid": "100fed63-cad1-414d-9cb3-412fc94474e6", + "createdAt": "2015-10-25", + "completed": "2018-09-13", + "initiated": "2021-11-26", + "ministryContact": "BARROWS JOSEPHINE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -78397,29 +88964,28 @@ ], "notationParticipants": [ { + "uuid": "c6a8277d-5426-4027-83af-94f35ba8ae2a", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "5724ae70-573f-4358-b1ce-72c235a96ca1", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false }, { + "uuid": "73d30b6e-8028-4361-89f3-22a25e3ad030", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "54687b5c-bd1d-42b8-ae1a-a860eb192d7f", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true } ], "siteRegistry": true @@ -78427,19 +88993,43 @@ ], "participants": [ { + "uuid": "d141389d-34b6-406a-a661-22be08026a08", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2020-03-21", + "startDate": "2021-06-23", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "uuid": "28345de2-57a9-4913-9ebe-6d3c732596df", "name": "AMET, DOLOR SIT", - "endDate": "2017-03-10", - "startDate": "2016-12-18", + "endDate": "2019-04-24", + "startDate": "2017-08-05", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": true + "siteRegistry": false + }, + { + "uuid": "a0bfc507-2a7f-4f33-8bd1-9f5a0d51d98c", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2018-09-06", + "startDate": "2017-05-07", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false }, { + "uuid": "62f4fc63-e68a-421d-a023-54b1785a62ce", "name": "SHELL CANADA PRODUCTS", - "endDate": "2014-04-03", - "startDate": "2020-03-03", + "endDate": "2018-01-07", + "startDate": "2022-05-04", "notes": "", "roles": [ "EMPLOYEE" @@ -78449,210 +89039,261 @@ ], "suspectLandUses": [ { + "uuid": "c0d7fc1f-4128-4f8a-8db5-cfda39097326", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-04-17 (described on Site Profile dated 2015-04-17)", + "notes": "INSERTED FOR SITE PROFILE DATED 2016-03-16 (described on Site Profile dated 2016-03-16)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { + "uuid": "57dbd30b-5e88-4c75-b4bc-b8171eb5838e", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-07-03 (described on Site Profile dated 2022-07-03)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" - }, - { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-09-01 (described on Site Profile dated 2016-09-01)", + "notes": "INSERTED FOR SITE PROFILE DATED 2019-03-05 (described on Site Profile dated 2019-03-05)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-08-10 (described on Site Profile dated 2019-08-10)", + "uuid": "50a0e54a-7521-48ec-ac31-bc06b059ce0d", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2023-06-15 (described on Site Profile dated 2023-06-15)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-09-21 (described on Site Profile dated 2016-09-21)", + "uuid": "a40ce65c-c94d-4061-8153-d19e5f95eacb", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2014-07-01 (described on Site Profile dated 2014-07-01)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], "parcelDescriptions": [ { + "uuid": "3bd1a1af-d7ca-4477-af9c-9794d1b3177e", "siteRegistry": true, - "dateNoted": "2014-10-05", - "parcelID": "16730", - "crownLandUsePIN": "17686", - "crownLandFileNumber": "16047", - "landDescription": "LOT 4 OF LOT 1 BLOCK 3 DISTRICT LOT 5 PLAN 6792" - }, - { - "siteRegistry": false, - "dateNoted": "2014-01-07", - "parcelID": "16161", - "crownLandUsePIN": "17658", - "crownLandFileNumber": "16168", - "landDescription": "LOT 1 OF LOT 4 BLOCK 1 DISTRICT LOT 2 PLAN 3847" - }, - { - "siteRegistry": false, - "dateNoted": "2022-04-07", - "parcelID": "18777", - "crownLandUsePIN": "16418", - "crownLandFileNumber": "17483", - "landDescription": "LOT 5 OF LOT 4 BLOCK 2 DISTRICT LOT 4 PLAN 7322" - }, - { - "siteRegistry": true, - "dateNoted": "2017-12-08", - "parcelID": "16951", - "crownLandUsePIN": "20184", - "crownLandFileNumber": "15887", - "landDescription": "LOT 1 OF LOT 2 BLOCK 4 DISTRICT LOT 5 PLAN 3917" + "dateNoted": "2014-11-05", + "parcelID": "16889", + "crownLandUsePIN": "17283", + "crownLandFileNumber": "19734", + "landDescription": "LOT 4 OF LOT 2 BLOCK 3 DISTRICT LOT 1 PLAN 4047" }, { + "uuid": "4c2629bb-f69f-4212-84f7-f86a9ea97c46", "siteRegistry": true, - "dateNoted": "2013-12-05", - "parcelID": "16998", - "crownLandUsePIN": "20626", - "crownLandFileNumber": "16812", - "landDescription": "LOT 2 OF LOT 3 BLOCK 1 DISTRICT LOT 4 PLAN 5070" + "dateNoted": "2022-05-10", + "parcelID": "19038", + "crownLandUsePIN": "18250", + "crownLandFileNumber": "19427", + "landDescription": "LOT 5 OF LOT 2 BLOCK 3 DISTRICT LOT 4 PLAN 7865" } ], "siteDisclosures": [ { + "uuid": "da28e389-0071-4e77-8cbc-56071f0cb2d5", "siteRegistry": true, - "dateReceived": "2015-12-14", - "dateCompleted": "2023-05-30", - "dateEntered": "2016-11-05", - "dateRegistrar": "2021-12-31", - "dateLocalAuthorityReceived": "2013-11-23", - "summary": "Corporis laudantium quos laudantium laborum aspernatur.\nQuisquam recusandae quibusdam.", - "informationUsed": "Mollitia facilis eius dolorum nostrum laboriosam atque quaerat.\nAnimi quod deleniti a quos distinctio atque inventore error.\nNihil esse aliquid excepturi totam laborum ipsam voluptas est in.\nAccusamus harum animi magni et quod voluptates culpa autem.\nQuidem aperiam dolorem culpa.", - "pastOrPresentOrders": "Ratione facere qui facere vel facere nemo magnam.\nRepellendus debitis modi laudantium sunt repellendus.", + "dateReceived": "2020-06-02", + "dateCompleted": "2022-04-15", + "dateEntered": "2022-05-21", + "dateRegistrar": "2019-03-16", + "dateLocalAuthorityReceived": "2015-02-07", + "summary": "Nemo repellat maiores a nam soluta odio occaecati accusantium.\nQuibusdam iusto id fuga.\nAnimi quae temporibus non laudantium sapiente sapiente hic natus.", + "informationUsed": "Rerum dolorum voluptate earum iure in fugiat facere eum explicabo.\nSunt odit deserunt corrupti enim molestiae.\nQuos placeat atque ullam sunt eum nam voluptate ipsa.\nEa labore explicabo deserunt corporis animi doloremque quidem.", + "pastOrPresentOrders": "Vitae similique laudantium ad suscipit quam corporis.\nReprehenderit incidunt aspernatur quam.", "commercialAndIndustrialPurposes": [ { - "scheduleReference": "F2*", + "uuid": "89b3ee5d-ee71-48d7-8836-e57446601c99", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { + "uuid": "48320b10-8f7c-46cc-b96e-b4cc1ac73db3", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + } + ] + }, + { + "uuid": "ce70e008-5293-43d0-bc30-3803c0b4b680", + "siteRegistry": true, + "dateReceived": "2020-12-05", + "dateCompleted": "2013-12-16", + "dateEntered": "2016-12-07", + "dateRegistrar": "2018-12-13", + "dateLocalAuthorityReceived": "2020-03-01", + "summary": "Quaerat velit alias aliquid.", + "informationUsed": "Inventore accusamus corrupti rerum ullam ullam aperiam at iste.\nIllum harum tempore modi dolorum exercitationem enim quam provident porro.\nEa porro perferendis rerum facere accusamus expedita.\nQuos quo laborum accusamus vitae ipsum beatae nemo laudantium maiores.", + "pastOrPresentOrders": "Id perferendis neque tempora distinctio.\nAlias quo nobis magni qui id.", + "commercialAndIndustrialPurposes": [ + { + "uuid": "0876a184-72cf-4490-af21-c6939d0ef486", "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { + "uuid": "60e5c1d8-bf96-4e33-aa46-31ab236644a8", "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, { + "uuid": "2d44d775-90d2-4475-879d-8e5bdc96f10f", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false - } - ] - }, - { - "siteRegistry": false, - "dateReceived": "2015-04-17", - "dateCompleted": "2014-09-23", - "dateEntered": "2015-10-20", - "dateRegistrar": "2017-03-29", - "dateLocalAuthorityReceived": "2014-12-21", - "summary": "Tempora odio nemo amet dolorum voluptates temporibus.", - "informationUsed": "Accusamus iusto adipisci ipsa ex.\nCorrupti et amet excepturi laboriosam.\nNulla consequatur quas rerum.\nQuidem cumque suscipit maxime accusantium officiis hic perspiciatis.\nVeniam et minus sunt incidunt sunt praesentium.", - "pastOrPresentOrders": "Ipsam nulla officia repellendus architecto aut vero deleniti quae debitis.\nIste voluptatum ullam vitae quisquam reprehenderit vel.", - "commercialAndIndustrialPurposes": [ - { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true }, { + "uuid": "3ea887e3-b4dc-457b-8bc9-36be0dfc7b34", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true + "siteRegistry": false } ] } ], "activityLog": [ { - "siteRegistry": true, + "uuid": "5592161f-d182-401c-9df0-c81c9b17f0ed", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "O'KON ARVEL", - "timestamp": "2018-08-25" + "user": "DAVIS ADAH", + "timestamp": "2017-06-15" }, { + "uuid": "fcc35727-f34f-438d-8e85-8b8418046f9e", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "WILLIAMSON LURLINE", - "timestamp": "2016-02-18" + "user": "BLICK CARTER", + "timestamp": "2014-06-18" }, { - "siteRegistry": false, + "uuid": "ec73b637-6c14-4421-a36f-8c16e0613b1d", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "LEUSCHKE LINCOLN", - "timestamp": "2022-01-02" + "user": "DENESIK QUINTEN", + "timestamp": "2013-12-22" }, { - "siteRegistry": false, + "uuid": "f1914e18-a002-4bf1-8831-61f66fe038f4", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "HELLER NATHANAEL", - "timestamp": "2015-04-09" + "user": "JAKUBOWSKI MEDA", + "timestamp": "2022-10-21" }, { + "uuid": "72db0b13-58c9-45bd-ab4a-dc1f7ea67082", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "TERRY PEDRO", - "timestamp": "2019-07-27" + "user": "MORISSETTE ZACKARY", + "timestamp": "2017-07-25" }, { + "uuid": "3ad8671c-241d-4762-9954-febdef1063ed", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "JAKUBOWSKI BRAYAN", - "timestamp": "2023-02-15" + "user": "KLOCKO MCKENNA", + "timestamp": "2019-03-07" + }, + { + "uuid": "922c6da4-eadc-4ca6-9e91-d98f2a97e898", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "HOEGER FLETCHER", + "timestamp": "2018-10-19" + }, + { + "uuid": "691a392c-de8f-4a9f-80ef-6a1d4ec38dfa", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "PARISIAN ANDERSON", + "timestamp": "2017-02-26" + }, + { + "uuid": "96d99ef6-c926-45b2-891e-2359cae13c36", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "ERDMAN MASON", + "timestamp": "2016-11-11" }, { + "uuid": "41ff641a-7cbb-4882-bcd7-c1683231cd29", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "BARTON ISABELL", - "timestamp": "2022-05-28" + "user": "D'AMORE BRADLEY", + "timestamp": "2021-03-28" } ], "associatedSites": [ { - "dateNoted": "2023-01-20", + "uuid": "a30d128f-9b82-4baf-a350-9af5762ebe54", + "dateNoted": "2021-06-05", + "notes": "", + "parcelID": "16631", + "siteID": "20381", + "siteRegistry": true + }, + { + "uuid": "178fd1ac-987d-42c3-8c88-52f71ea7051f", + "dateNoted": "2021-05-16", "notes": "", - "parcelID": "17221", - "siteID": "18405", + "parcelID": "18978", + "siteID": "18725", "siteRegistry": false } ] }, { - "uuid": "00967bb1-7be0-45e9-9e60-5157a85746cf", - "siteID": 17616, - "address": "664 Bennie Knoll", - "latitude": 54.2005, - "longitude": -138.5432, - "lastUpdated": "2019-01-16", - "city": "Lake Shane", - "region": " North Coast", - "victoriaFile": "26250-20/1938", + "uuid": "f4150d3b-a951-4ba0-9d36-6749e401fd19", + "siteID": 18183, + "address": "2238 Karen Locks", + "latitude": 54.9071, + "longitude": -124.3647, + "lastUpdated": "2023-05-21", + "city": "South Winnifredhaven", + "region": "Kootenay", + "victoriaFile": "26250-20/10713", "regionalFile": "N/A", "parcelIDs": [ - 498636, - 9294084, - 6785269, - 7396117, - 3590958 + 8113148, + 250971, + 718859, + 9807588, + 7745506 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2016-06-21", - "completed": "2020-04-12", - "initiated": "2018-03-06", - "ministryContact": "DAUGHERTY ANNAMARIE", + "uuid": "afdd7664-4495-48c0-90f3-24df1b6a7e72", + "createdAt": "2022-01-05", + "completed": "2017-04-01", + "initiated": "2018-05-15", + "ministryContact": "WIZA ANGEL", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "uuid": "53b388f4-38fc-48f0-a299-72eeff160e6a", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "8c521ebd-6e20-4160-85e0-b844c92ac4d3", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "uuid": "3bf9cc3b-2db6-4436-b790-8b3c6471d33c", + "createdAt": "2022-02-08", + "completed": "2019-01-19", + "initiated": "2020-03-25", + "ministryContact": "BARTON JOANNY", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -78661,16 +89302,71 @@ ], "notationParticipants": [ { + "uuid": "36f48b3c-563d-433c-827d-bde6a9032da3", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "uuid": "8c723ec7-a0eb-4c7e-9bb0-85811be15e2e", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "uuid": "cc31f9f5-a9f1-493b-8aff-8f2ad9b6f938", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true }, { + "uuid": "cfb43476-a9a0-4034-8535-bf9bc0114243", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "uuid": "e27e14da-79c0-4481-b641-fd30c98c8237", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "uuid": "296ca5cb-1011-43fa-9354-55f11bd66df1", + "createdAt": "2018-07-24", + "completed": "2014-11-21", + "initiated": "2014-11-12", + "ministryContact": "KEEBLER ENOLA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "uuid": "5dcda84a-7e3b-4222-ac10-b26204a64ff1", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "uuid": "c24f4533-bac5-4960-871e-58979ac19386", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "uuid": "9caf77f6-5c7f-40d4-a31c-a40a7927cef2", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true }, { + "uuid": "d207b823-62fb-4cc7-a336-b6e0d0c0bd51", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false @@ -78679,10 +89375,11 @@ "siteRegistry": true }, { - "createdAt": "2021-07-07", - "completed": "2014-07-17", - "initiated": "2017-11-29", - "ministryContact": "ORN-HEGMANN CORDELL", + "uuid": "43fcab3b-05fd-48da-8692-c2f61d0e4098", + "createdAt": "2017-04-22", + "completed": "2015-03-20", + "initiated": "2020-03-28", + "ministryContact": "BEATTY GLADYCE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -78691,59 +89388,67 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", + "uuid": "f5132be5-b00d-4315-83c7-4d9a1cc6889e", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "51fbf19e-57dc-4b20-971e-b76ee25ca448", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", + "uuid": "6b441a43-ed50-4cef-949e-42a27085a677", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true }, { + "uuid": "2bb0bdb3-4f9c-4e5e-8834-27d5e2495d94", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { + "uuid": "9973d6d0-378d-4ea0-8d98-63b9c4fb858f", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true } ], "participants": [ { - "name": "AMET, DOLOR SIT", - "endDate": "2018-12-29", - "startDate": "2015-07-04", + "uuid": "77bceafb-d971-4613-9617-e6ba1902eba5", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2015-11-17", + "startDate": "2019-07-13", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false }, { - "name": "AMET, DOLOR SIT", - "endDate": "2018-08-01", - "startDate": "2021-05-04", + "uuid": "81ed0efb-8838-4e92-ab46-495dfd9abfb5", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2014-03-02", + "startDate": "2022-02-02", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false }, { + "uuid": "fd5453f1-b42b-494f-a2c4-e935b85feb03", "name": "AMET, DOLOR SIT", - "endDate": "2015-03-14", - "startDate": "2020-12-08", + "endDate": "2015-06-07", + "startDate": "2016-03-14", "notes": "", "roles": [ "EMPLOYEE" @@ -78751,9 +89456,10 @@ "siteRegistry": false }, { + "uuid": "58ef6052-94e5-455a-92d1-67bbda707ebf", "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2015-02-17", - "startDate": "2018-06-17", + "endDate": "2015-01-21", + "startDate": "2022-02-19", "notes": "", "roles": [ "EMPLOYEE" @@ -78761,9 +89467,10 @@ "siteRegistry": false }, { + "uuid": "3ee75907-ddee-4801-bd19-34512bc55535", "name": "AMET, DOLOR SIT", - "endDate": "2020-04-22", - "startDate": "2016-06-29", + "endDate": "2016-09-01", + "startDate": "2022-05-27", "notes": "", "roles": [ "EMPLOYEE" @@ -78773,83 +89480,117 @@ ], "suspectLandUses": [ { + "uuid": "6f4504e3-6982-46c8-898d-5986322b0082", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-11-11 (described on Site Profile dated 2019-11-11)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "notes": "INSERTED FOR SITE PROFILE DATED 2020-10-16 (described on Site Profile dated 2020-10-16)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-01-08 (described on Site Profile dated 2019-01-08)", + "uuid": "137848f5-d9d6-4da0-a58f-03537879876c", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2021-01-11 (described on Site Profile dated 2021-01-11)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { + "uuid": "ce1e4a33-c959-4903-ac93-9f8adeeabb65", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-03-29 (described on Site Profile dated 2021-03-29)", + "notes": "INSERTED FOR SITE PROFILE DATED 2019-01-04 (described on Site Profile dated 2019-01-04)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" - } - ], - "parcelDescriptions": [ - { - "siteRegistry": true, - "dateNoted": "2019-08-23", - "parcelID": "20574", - "crownLandUsePIN": "16906", - "crownLandFileNumber": "16173", - "landDescription": "LOT 1 OF LOT 4 BLOCK 1 DISTRICT LOT 4 PLAN 6083" }, { - "siteRegistry": false, - "dateNoted": "2019-06-28", - "parcelID": "17380", - "crownLandUsePIN": "15832", - "crownLandFileNumber": "18576", - "landDescription": "LOT 5 OF LOT 2 BLOCK 4 DISTRICT LOT 5 PLAN 9475" + "uuid": "1b88343f-b898-41af-9898-64452c15252f", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2021-04-14 (described on Site Profile dated 2021-04-14)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "siteRegistry": false, - "dateNoted": "2015-09-22", - "parcelID": "18685", - "crownLandUsePIN": "15893", - "crownLandFileNumber": "15576", - "landDescription": "LOT 2 OF LOT 2 BLOCK 2 DISTRICT LOT 5 PLAN 3509" - }, + "uuid": "3105728e-ba30-45f1-94a5-675233998579", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2018-07-22 (described on Site Profile dated 2018-07-22)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + } + ], + "parcelDescriptions": [ { + "uuid": "0748922d-0e7d-4b8e-8cd9-e13b638798dc", "siteRegistry": true, - "dateNoted": "2016-02-09", - "parcelID": "16584", - "crownLandUsePIN": "20765", - "crownLandFileNumber": "15914", - "landDescription": "LOT 3 OF LOT 2 BLOCK 5 DISTRICT LOT 2 PLAN 8594" + "dateNoted": "2015-07-15", + "parcelID": "16226", + "crownLandUsePIN": "20920", + "crownLandFileNumber": "15464", + "landDescription": "LOT 3 OF LOT 3 BLOCK 1 DISTRICT LOT 5 PLAN 8524" }, { + "uuid": "6c233d6a-521e-488e-b8df-8b66c6860421", "siteRegistry": true, - "dateNoted": "2018-10-28", - "parcelID": "19042", - "crownLandUsePIN": "18743", - "crownLandFileNumber": "16012", - "landDescription": "LOT 2 OF LOT 3 BLOCK 2 DISTRICT LOT 3 PLAN 7163" + "dateNoted": "2014-08-31", + "parcelID": "20255", + "crownLandUsePIN": "17069", + "crownLandFileNumber": "16702", + "landDescription": "LOT 4 OF LOT 2 BLOCK 4 DISTRICT LOT 4 PLAN 5473" } ], "siteDisclosures": [ { - "siteRegistry": true, - "dateReceived": "2016-11-04", - "dateCompleted": "2023-01-30", - "dateEntered": "2019-10-12", - "dateRegistrar": "2013-11-23", - "dateLocalAuthorityReceived": "2015-06-27", - "summary": "Nostrum totam delectus animi ipsum voluptatum ipsam delectus earum.", - "informationUsed": "Aliquid officia consequuntur voluptates vitae eius amet magni.\nRecusandae nihil iusto officia recusandae quos iste dolorum.\nAd id rerum iste ipsam.", - "pastOrPresentOrders": "Suscipit impedit ullam libero.", + "uuid": "53dd0deb-5a51-40c1-9083-45ae2bc01970", + "siteRegistry": false, + "dateReceived": "2022-02-20", + "dateCompleted": "2022-07-07", + "dateEntered": "2018-02-16", + "dateRegistrar": "2022-12-12", + "dateLocalAuthorityReceived": "2017-08-08", + "summary": "Consequatur nesciunt eius iste commodi pariatur quibusdam molestiae eum.\nDoloribus laborum quam deserunt sit reprehenderit exercitationem nam.\nQui facere exercitationem debitis alias ipsum maxime facere.", + "informationUsed": "Quibusdam molestias fugit qui ipsum facilis neque praesentium maxime dolorum.\nVoluptas veniam voluptatibus animi minus blanditiis delectus quasi.\nDeleniti perferendis molestias.", + "pastOrPresentOrders": "Modi voluptatibus voluptate dignissimos pariatur consequatur consectetur dolorem.\nCumque reiciendis ea iste maxime accusantium iste.", "commercialAndIndustrialPurposes": [ { + "uuid": "a0161fdb-b3c5-4618-a430-5269d89b844c", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "uuid": "33458792-0a27-4c94-84f4-b97636b81036", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { + "uuid": "941ae824-281c-4f16-9dd5-0c764fc355c2", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + } + ] + }, + { + "uuid": "a6300ce0-b625-4324-9563-6ee4d4dcd440", + "siteRegistry": true, + "dateReceived": "2016-11-05", + "dateCompleted": "2020-02-10", + "dateEntered": "2020-08-16", + "dateRegistrar": "2014-12-11", + "dateLocalAuthorityReceived": "2014-11-20", + "summary": "Nisi repellendus vitae nemo ea porro suscipit.\nNeque ducimus natus illum quae placeat id nisi.", + "informationUsed": "Deserunt error provident nulla voluptate amet error provident deleniti officiis.\nRepellendus debitis doloremque odio ab.\nVoluptatum facilis nemo neque quia deserunt.\nMolestiae est fugiat animi exercitationem.\nNeque voluptatibus vel quae minus.", + "pastOrPresentOrders": "Expedita temporibus delectus suscipit temporibus recusandae vero soluta rerum tempora.\nOdit deserunt quisquam maxime.", + "commercialAndIndustrialPurposes": [ + { + "uuid": "36f13930-1554-4930-895f-dce95a8dc6b9", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "uuid": "1c91da4d-8231-440b-9b1f-e61a7a683ec7", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "uuid": "95017b11-d045-4d9e-8cb9-ce3a6a0694e0", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true } ] @@ -78857,101 +89598,113 @@ ], "activityLog": [ { - "siteRegistry": false, + "uuid": "ceabc847-f69f-4cd0-ac01-7fdf842e9203", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "WOLF CARLEY", - "timestamp": "2017-08-06" + "user": "VONRUEDEN JULIUS", + "timestamp": "2019-02-03" }, { - "siteRegistry": true, + "uuid": "eb173069-5919-48e6-b829-5a0c081a9814", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "BLANDA-SCHADEN CHARITY", - "timestamp": "2014-05-08" + "user": "CASSIN CONCEPCION", + "timestamp": "2015-09-08" }, { - "siteRegistry": true, + "uuid": "c4425b15-8bad-4fb1-be64-34f8271cd6e2", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "HALEY KADIN", - "timestamp": "2013-11-10" + "user": "MCCLURE MAGALI", + "timestamp": "2020-02-14" }, { + "uuid": "d761faa4-89de-4465-89c8-b4fb03370a25", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "TILLMAN HOLDEN", - "timestamp": "2022-01-02" + "user": "LARKIN DARIO", + "timestamp": "2017-12-07" }, { + "uuid": "9b614b6a-71fe-47e2-bf78-ed858cc19cc0", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "BARTON KRISTOPHER", - "timestamp": "2017-01-18" + "user": "BRUEN CORY", + "timestamp": "2016-06-21" }, { - "siteRegistry": false, + "uuid": "92d168e4-915d-41df-922c-ed8aaa30c785", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "JOHNS RUTHE", - "timestamp": "2014-10-15" + "user": "CREMIN-FISHER VINCENZO", + "timestamp": "2019-12-19" }, { + "uuid": "d7f72e9f-a62c-497c-b023-280a6db0e527", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "CORWIN EDGARDO", - "timestamp": "2022-04-07" + "user": "CARROLL TOY", + "timestamp": "2015-01-16" }, { - "siteRegistry": false, + "uuid": "27e165e1-24d6-4bb3-92e8-fddc8045f82d", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "KULAS HERMANN", - "timestamp": "2022-05-29" + "user": "SWIFT LINDSAY", + "timestamp": "2017-12-27" }, { + "uuid": "6067f5fb-9b07-4d7a-a955-4c6f6d8c1b93", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "RUTHERFORD WESTLEY", - "timestamp": "2017-12-19" + "user": "BOYER MARLEE", + "timestamp": "2023-01-04" }, { + "uuid": "c9e4a909-6ee0-4997-a1fa-6d6263279df8", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "FISHER DUDLEY", - "timestamp": "2016-05-20" + "user": "COLLINS GARRISON", + "timestamp": "2023-05-10" } ], "associatedSites": [ { - "dateNoted": "2018-01-26", + "uuid": "4e044ea5-a6e1-48c6-8831-0c83aab928ea", + "dateNoted": "2014-08-20", "notes": "", - "parcelID": "17425", - "siteID": "17956", - "siteRegistry": true + "parcelID": "17034", + "siteID": "17062", + "siteRegistry": false } ] }, { - "uuid": "ab764273-de74-4113-8e00-6805b936643a", - "siteID": 17116, - "address": "553 Sammy Squares", - "latitude": 50.1036, - "longitude": -120.0431, - "lastUpdated": "2015-09-03", - "city": "Lake Russell", - "region": "Kootenay", - "victoriaFile": "26250-20/6749", + "uuid": "446a6080-565f-4ddb-983a-ec43751039c9", + "siteID": 16807, + "address": "64884 Carolanne Cove", + "latitude": 51.5036, + "longitude": -125.1707, + "lastUpdated": "2020-02-13", + "city": "The Woodlands", + "region": "Thompson-Okanagan", + "victoriaFile": "26250-20/8382", "regionalFile": "N/A", "parcelIDs": [ - 3581438, - 7638487, - 5467430, - 3798621, - 5458098 + 9072537, + 7532097, + 724015, + 5484093, + 7690237 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2021-01-11", - "completed": "2014-10-26", - "initiated": "2015-02-24", - "ministryContact": "RAU ODESSA", + "uuid": "e02663ea-b13d-4fe5-b713-37f5bd88232d", + "createdAt": "2015-05-15", + "completed": "2021-07-04", + "initiated": "2016-06-18", + "ministryContact": "ANDERSON CANDELARIO", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -78960,26 +89713,19 @@ ], "notationParticipants": [ { + "uuid": "476545ab-8d75-408e-bcf2-205981278f73", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true }, { + "uuid": "da7dacb7-3778-4ba2-b4a6-7fdc45a6d869", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false }, { + "uuid": "ccf71fe3-dcf4-4880-8e1d-f550c8336513", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true @@ -78988,10 +89734,11 @@ "siteRegistry": false }, { - "createdAt": "2021-07-03", - "completed": "2023-05-13", - "initiated": "2014-11-29", - "ministryContact": "GOYETTE NAPOLEON", + "uuid": "a8ea5972-095e-49e2-89e4-354e9f553594", + "createdAt": "2014-05-10", + "completed": "2021-02-22", + "initiated": "2015-05-02", + "ministryContact": "UPTON AILEEN", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -79000,79 +89747,33 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "uuid": "423f0b79-a573-4e7a-898f-fdf8a59b2baa", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - } - ], - "siteRegistry": true - }, - { - "createdAt": "2015-10-20", - "completed": "2017-02-15", - "initiated": "2022-01-07", - "ministryContact": "SIPES GREGORY", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", + "uuid": "40da6c0b-8dfb-4dad-91f7-a0aa44fb29f1", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { + "uuid": "fd3021e5-733d-4d8e-9561-3dcf1fe4365f", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false } ], - "siteRegistry": true - }, - { - "createdAt": "2023-02-07", - "completed": "2019-08-04", - "initiated": "2017-03-22", - "ministryContact": "REYNOLDS WINNIFRED", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - } - ], "siteRegistry": false } ], "participants": [ { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2020-08-27", - "startDate": "2019-05-20", + "uuid": "d76b69fe-a5c3-4c8e-b698-614e3ef27c16", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2017-09-19", + "startDate": "2021-08-21", "notes": "", "roles": [ "ORGANIZATION" @@ -79080,9 +89781,21 @@ "siteRegistry": false }, { - "name": "IPSUM", - "endDate": "2023-06-11", - "startDate": "2016-01-24", + "uuid": "62bb4c9b-80b8-47bc-8754-090e40e2c8fb", + "name": "AMET, DOLOR SIT", + "endDate": "2018-03-27", + "startDate": "2021-02-01", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "uuid": "ba1351ff-12b8-4994-aa80-628f09359769", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2018-07-16", + "startDate": "2015-03-18", "notes": "", "roles": [ "EMPLOYEE" @@ -79090,9 +89803,10 @@ "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2014-12-30", - "startDate": "2018-08-04", + "uuid": "6698b4da-7443-475e-9362-45d1862e7cde", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2020-01-20", + "startDate": "2020-06-20", "notes": "", "roles": [ "ORGANIZATION" @@ -79102,64 +89816,88 @@ ], "suspectLandUses": [ { + "uuid": "1f02b15c-df36-46f3-bca5-dd54921c1388", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2016-02-09 (described on Site Profile dated 2016-02-09)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "uuid": "f2531daa-8382-4329-afce-419c5c77f1e6", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2023-09-25 (described on Site Profile dated 2023-09-25)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "uuid": "4d41c9df-029d-45ce-afe5-34eb6f20a0df", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-04-23 (described on Site Profile dated 2022-04-23)", + "notes": "INSERTED FOR SITE PROFILE DATED 2022-10-30 (described on Site Profile dated 2022-10-30)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { + "uuid": "d8a1ce8d-1c26-4ca9-b091-ef9f6c4bde60", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-10-19 (described on Site Profile dated 2021-10-19)", + "notes": "INSERTED FOR SITE PROFILE DATED 2017-03-09 (described on Site Profile dated 2017-03-09)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], "parcelDescriptions": [ { - "siteRegistry": true, - "dateNoted": "2018-11-24", - "parcelID": "18979", - "crownLandUsePIN": "16412", - "crownLandFileNumber": "18779", - "landDescription": "LOT 4 OF LOT 4 BLOCK 4 DISTRICT LOT 4 PLAN 6951" + "uuid": "bb62833c-c102-4664-93af-865b48a25e5d", + "siteRegistry": false, + "dateNoted": "2016-10-15", + "parcelID": "17038", + "crownLandUsePIN": "20466", + "crownLandFileNumber": "20911", + "landDescription": "LOT 5 OF LOT 3 BLOCK 4 DISTRICT LOT 1 PLAN 9402" }, { + "uuid": "e24a3fa5-23d2-4ccd-b211-1c7465900fcb", "siteRegistry": false, - "dateNoted": "2020-07-16", - "parcelID": "19124", - "crownLandUsePIN": "15899", - "crownLandFileNumber": "20304", - "landDescription": "LOT 2 OF LOT 4 BLOCK 1 DISTRICT LOT 2 PLAN 7683" + "dateNoted": "2022-12-18", + "parcelID": "19807", + "crownLandUsePIN": "18096", + "crownLandFileNumber": "15423", + "landDescription": "LOT 4 OF LOT 4 BLOCK 5 DISTRICT LOT 5 PLAN 4671" + }, + { + "uuid": "4bbaf7c5-82c6-48ca-af85-f4310c184f6c", + "siteRegistry": false, + "dateNoted": "2018-11-23", + "parcelID": "15991", + "crownLandUsePIN": "19442", + "crownLandFileNumber": "20648", + "landDescription": "LOT 4 OF LOT 5 BLOCK 3 DISTRICT LOT 4 PLAN 5957" } ], "siteDisclosures": [ { - "siteRegistry": false, - "dateReceived": "2023-09-21", - "dateCompleted": "2016-11-24", - "dateEntered": "2021-04-22", - "dateRegistrar": "2019-07-25", - "dateLocalAuthorityReceived": "2016-07-04", - "summary": "Sint natus officia excepturi quae.", - "informationUsed": "Sed facere at necessitatibus tempora quasi dignissimos aut pariatur.\nAsperiores aliquid amet minus officiis nihil atque cumque quaerat.\nEaque laboriosam praesentium sit nostrum molestiae tenetur.\nMagni atque voluptatibus.", - "pastOrPresentOrders": "Repellat animi pariatur quia doloremque quo.\nEaque error tenetur exercitationem ad quisquam deserunt.", + "uuid": "b4db8c0c-07b0-4e93-a2f2-b267912718eb", + "siteRegistry": true, + "dateReceived": "2018-01-12", + "dateCompleted": "2016-09-20", + "dateEntered": "2023-01-16", + "dateRegistrar": "2016-06-15", + "dateLocalAuthorityReceived": "2013-12-28", + "summary": "Laborum in mollitia.\nSimilique unde assumenda laudantium suscipit recusandae earum pariatur beatae.\nDistinctio accusantium dolorem consequuntur dolor cum.", + "informationUsed": "Architecto eum velit sapiente distinctio dignissimos sunt.\nTempore delectus possimus pariatur expedita dolorem eligendi ea.\nEum eaque labore alias explicabo accusantium possimus.", + "pastOrPresentOrders": "Voluptate ut nesciunt illum quasi dolor laudantium.", "commercialAndIndustrialPurposes": [ { + "uuid": "c77bdd4f-1a29-4581-a509-c59260eeb3dd", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true + "siteRegistry": false }, { + "uuid": "ba90ebde-0318-4351-9efb-13ae803e0cf5", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true - }, - { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true + "siteRegistry": false }, { + "uuid": "485c258a-8932-421e-860c-6c24dbfe58ea", "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false } ] @@ -79167,90 +89905,93 @@ ], "activityLog": [ { - "siteRegistry": true, + "uuid": "68c3c479-ed00-4a19-8ed5-cc9064cf386d", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "HUEL JANY", - "timestamp": "2021-02-17" + "user": "MAYER JACE", + "timestamp": "2019-04-06" }, { + "uuid": "a0b95035-afc4-478c-8542-3fa9d158f066", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "VONRUEDEN NELS", - "timestamp": "2022-04-15" + "user": "KLEIN BARRETT", + "timestamp": "2016-04-08" }, { + "uuid": "fb3e861f-cf41-4333-ae2f-ba66353fb419", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "GRAHAM ONA", - "timestamp": "2014-07-12" + "user": "SCHOWALTER KEVIN", + "timestamp": "2019-07-05" }, { - "siteRegistry": false, + "uuid": "36268bd6-6580-4f86-bb50-80729056f3c4", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "FRIESEN TYREE", - "timestamp": "2016-07-19" + "user": "LEGROS JAY", + "timestamp": "2020-09-27" }, { + "uuid": "371154a8-6ca0-4b41-bfa1-623993153414", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "GRADY CITLALLI", - "timestamp": "2014-07-30" - }, - { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "BEIER BENJAMIN", - "timestamp": "2023-04-03" + "user": "BODE CARTER", + "timestamp": "2022-04-30" }, { + "uuid": "c689e578-b786-4c33-9fbb-949e00825267", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "WAELCHI DARREN", - "timestamp": "2016-10-21" + "user": "KEMMER MERL", + "timestamp": "2015-04-08" } ], "associatedSites": [ { - "dateNoted": "2019-08-04", + "uuid": "1857dbb4-4947-436d-87ff-44689726f9c0", + "dateNoted": "2021-01-22", "notes": "", - "parcelID": "16334", - "siteID": "19802", - "siteRegistry": false + "parcelID": "16476", + "siteID": "19254", + "siteRegistry": true }, { - "dateNoted": "2023-03-21", + "uuid": "b8c78477-e102-4e82-bde9-e259c420b998", + "dateNoted": "2021-08-06", "notes": "", - "parcelID": "17964", - "siteID": "18928", + "parcelID": "20559", + "siteID": "16728", "siteRegistry": false } ] }, { - "uuid": "ac766a5a-b9e5-4607-b738-c9677460101c", - "siteID": 15327, - "address": "2539 Audra Bypass", - "latitude": 58.4276, - "longitude": -133.3178, - "lastUpdated": "2020-02-24", - "city": "Jensenhaven", - "region": "Mainland/Southwest", - "victoriaFile": "26250-20/12370", + "uuid": "e2b90f18-214a-4bbe-8b03-97d655abec79", + "siteID": 20496, + "address": "3821 Malachi Vista", + "latitude": 58.6915, + "longitude": -119.421, + "lastUpdated": "2018-05-27", + "city": "Lake Tad", + "region": "Kootenay", + "victoriaFile": "26250-20/5849", "regionalFile": "N/A", "parcelIDs": [ - 9544798, - 3408217, - 9148352, - 6373225, - 9285982 + 5085165, + 4567192, + 4482740, + 2846942, + 4896415 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2014-11-23", - "completed": "2018-02-04", - "initiated": "2017-10-26", - "ministryContact": "TORPHY-YUNDT FELIPA", + "uuid": "5d2a2e7c-29f4-4ed0-9661-0bcc66579bbc", + "createdAt": "2023-02-04", + "completed": "2022-06-11", + "initiated": "2015-02-03", + "ministryContact": "KOEPP VERNIE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -79259,78 +90000,44 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { + "uuid": "dd2c1b8f-cc84-46af-b1b2-512bf22576a1", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { + "uuid": "7ee747ff-c2d1-4c46-8901-df5b1df53861", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true - } - ], - "siteRegistry": true - }, - { - "createdAt": "2013-12-10", - "completed": "2022-05-31", - "initiated": "2021-09-27", - "ministryContact": "KEMMER DOMINGO", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ + "siteRegistry": false + }, { + "uuid": "19cb42c6-a003-47f9-8fe9-046bbba93dab", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - } - ], - "siteRegistry": false - }, - { - "createdAt": "2014-01-28", - "completed": "2020-07-20", - "initiated": "2022-02-21", - "ministryContact": "BROWN REMINGTON", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { + "uuid": "330f52ca-8d7a-4053-86f3-269932341445", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { + "uuid": "9509b4dd-10bb-4561-981f-9f573c4c83b8", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2017-01-07", - "completed": "2017-07-15", - "initiated": "2022-12-11", - "ministryContact": "WEISSNAT NETTIE", + "uuid": "2b0531bd-ebea-4962-a868-b178b91c5f30", + "createdAt": "2018-12-25", + "completed": "2019-03-03", + "initiated": "2013-10-20", + "ministryContact": "NIENOW RAVEN", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -79339,74 +90046,72 @@ ], "notationParticipants": [ { + "uuid": "97cb12dc-fb77-42ba-adec-1b7270f9cd0c", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true }, { + "uuid": "d3b1aaa5-5bd5-43fa-9ad6-7ed3f3c96b6c", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { + "uuid": "a0517b5a-e448-4a10-a0aa-aaf6fd2088ae", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - } - ], - "siteRegistry": false - }, - { - "createdAt": "2020-01-29", - "completed": "2014-01-02", - "initiated": "2022-05-14", - "ministryContact": "REYNOLDS-BRAKUS ARVILLA", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false }, { + "uuid": "6e1425d8-13ec-4086-8ec2-756a3fbc8c5d", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false } ], "participants": [ { + "uuid": "ecac764b-62c4-4c51-9d23-d0dc8f6ef2e9", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2022-02-10", + "startDate": "2022-10-18", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "uuid": "557f33d9-553f-42a1-9953-7adbc14f7e71", "name": "IPSUM", - "endDate": "2017-12-29", - "startDate": "2022-08-04", + "endDate": "2016-08-31", + "startDate": "2023-02-26", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": false + "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2017-06-08", - "startDate": "2020-05-28", + "uuid": "6e8bcf81-7a50-42a8-9f6d-549a231a5762", + "name": "IPSUM", + "endDate": "2021-07-23", + "startDate": "2018-11-20", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "uuid": "54318e7e-869d-402c-b7b3-28c6de36e24c", + "name": "AMET, DOLOR SIT", + "endDate": "2018-03-02", + "startDate": "2015-10-27", "notes": "", "roles": [ "EMPLOYEE" @@ -79416,106 +90121,101 @@ ], "suspectLandUses": [ { + "uuid": "f1a0e9a5-302e-4fca-9260-4ed3b2048d03", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2020-08-06 (described on Site Profile dated 2020-08-06)", + "notes": "INSERTED FOR SITE PROFILE DATED 2014-05-28 (described on Site Profile dated 2014-05-28)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "uuid": "998564e9-3e31-4711-a777-f0ef4945d353", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2020-05-10 (described on Site Profile dated 2020-05-10)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { + "uuid": "9d0fb9c1-561c-49fe-8f8d-4c6c9f44769f", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2020-05-01 (described on Site Profile dated 2020-05-01)", + "notes": "INSERTED FOR SITE PROFILE DATED 2015-10-04 (described on Site Profile dated 2015-10-04)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { + "uuid": "d30a6ac3-56de-41b1-addd-8f06d0854449", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-09-05 (described on Site Profile dated 2018-09-05)", + "notes": "INSERTED FOR SITE PROFILE DATED 2023-05-19 (described on Site Profile dated 2023-05-19)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { + "uuid": "08b807cc-59ca-4e8b-b4d0-d907e29a225a", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-08-23 (described on Site Profile dated 2018-08-23)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "notes": "INSERTED FOR SITE PROFILE DATED 2021-10-07 (described on Site Profile dated 2021-10-07)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], "parcelDescriptions": [ { - "siteRegistry": false, - "dateNoted": "2013-12-12", - "parcelID": "20309", - "crownLandUsePIN": "16320", - "crownLandFileNumber": "17752", - "landDescription": "LOT 5 OF LOT 2 BLOCK 3 DISTRICT LOT 3 PLAN 9492" + "uuid": "e9c78dcb-4ee2-44e0-a164-5e6052262943", + "siteRegistry": true, + "dateNoted": "2021-09-07", + "parcelID": "19299", + "crownLandUsePIN": "19165", + "crownLandFileNumber": "20753", + "landDescription": "LOT 4 OF LOT 4 BLOCK 3 DISTRICT LOT 4 PLAN 4022" }, { + "uuid": "28f52023-0988-40f8-a199-bd0c7b0a787e", "siteRegistry": false, - "dateNoted": "2022-09-19", - "parcelID": "20704", - "crownLandUsePIN": "15968", - "crownLandFileNumber": "15216", - "landDescription": "LOT 5 OF LOT 4 BLOCK 5 DISTRICT LOT 5 PLAN 8871" + "dateNoted": "2023-06-19", + "parcelID": "19194", + "crownLandUsePIN": "20094", + "crownLandFileNumber": "19934", + "landDescription": "LOT 3 OF LOT 1 BLOCK 4 DISTRICT LOT 3 PLAN 7441" }, { - "siteRegistry": false, - "dateNoted": "2022-02-26", - "parcelID": "15453", - "crownLandUsePIN": "18968", - "crownLandFileNumber": "19786", - "landDescription": "LOT 1 OF LOT 2 BLOCK 4 DISTRICT LOT 5 PLAN 8703" + "uuid": "d5923250-19c0-42c1-ab57-13c526511748", + "siteRegistry": true, + "dateNoted": "2023-03-14", + "parcelID": "16258", + "crownLandUsePIN": "17132", + "crownLandFileNumber": "17957", + "landDescription": "LOT 2 OF LOT 3 BLOCK 4 DISTRICT LOT 3 PLAN 9596" }, { + "uuid": "fdfa5557-506e-46d9-9c16-1abc2a5dc8ed", "siteRegistry": false, - "dateNoted": "2022-03-24", - "parcelID": "17148", - "crownLandUsePIN": "18309", - "crownLandFileNumber": "19570", - "landDescription": "LOT 1 OF LOT 1 BLOCK 1 DISTRICT LOT 2 PLAN 5378" + "dateNoted": "2018-11-30", + "parcelID": "18849", + "crownLandUsePIN": "16996", + "crownLandFileNumber": "19808", + "landDescription": "LOT 1 OF LOT 4 BLOCK 5 DISTRICT LOT 5 PLAN 5070" } ], "siteDisclosures": [ { + "uuid": "2fefc106-da59-4d3b-813c-5c8da7e154fc", "siteRegistry": false, - "dateReceived": "2021-10-03", - "dateCompleted": "2017-03-21", - "dateEntered": "2016-02-05", - "dateRegistrar": "2018-08-31", - "dateLocalAuthorityReceived": "2015-10-21", - "summary": "Cum adipisci corporis assumenda nemo amet nisi.\nQuasi doloribus nemo minima quaerat repellendus sint fuga nisi ab.", - "informationUsed": "Voluptas ullam error illum in sit nesciunt nihil ullam.\nEsse veniam sequi vel corrupti tempore ipsa labore.\nEst nam sequi corrupti architecto debitis magnam.\nCumque quibusdam soluta voluptate perspiciatis id tempora.", - "pastOrPresentOrders": "Ullam dignissimos autem unde esse laboriosam.", - "commercialAndIndustrialPurposes": [ - { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false - }, - { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true - } - ] - }, - { - "siteRegistry": true, - "dateReceived": "2015-06-02", - "dateCompleted": "2015-10-05", - "dateEntered": "2019-09-15", - "dateRegistrar": "2018-06-12", - "dateLocalAuthorityReceived": "2020-03-17", - "summary": "Optio ipsa molestias culpa quae laboriosam pariatur laudantium.", - "informationUsed": "Esse id omnis expedita sunt harum consequatur.\nAmet id consequuntur exercitationem asperiores aperiam tempora odit.\nPossimus quasi expedita recusandae sunt.", - "pastOrPresentOrders": "Maiores rerum assumenda similique mollitia qui error architecto eum qui.\nFacilis minima reprehenderit quam.\nOdio rem molestiae id.", + "dateReceived": "2022-09-05", + "dateCompleted": "2022-03-23", + "dateEntered": "2014-07-06", + "dateRegistrar": "2014-05-12", + "dateLocalAuthorityReceived": "2023-01-01", + "summary": "Voluptates delectus quaerat dicta debitis minima tempore minima.\nError itaque porro tempora perspiciatis natus animi.", + "informationUsed": "Reiciendis excepturi vero esse dolore molestias.\nQuod odit eveniet quas.\nAspernatur error voluptatibus corporis in voluptatum suscipit deserunt error.", + "pastOrPresentOrders": "Aliquid sequi quo ducimus a.\nCorporis voluptatum laudantium.", "commercialAndIndustrialPurposes": [ { + "uuid": "d436aece-dfe1-4067-9df1-71079c450210", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { + "uuid": "d8ac9cb3-6c6a-4450-ac60-9bf01e1ca8a1", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true + "siteRegistry": false }, { + "uuid": "0bc5c618-d962-465f-88d5-0608446f7ea8", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true @@ -79525,95 +90225,99 @@ ], "activityLog": [ { + "uuid": "9fd5baf6-da77-4a89-b930-c21df053c0b7", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "LOCKMAN THELMA", - "timestamp": "2016-05-21" - }, - { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "BRADTKE NOBLE", - "timestamp": "2015-04-08" + "user": "OLSON ALLAN", + "timestamp": "2018-07-05" }, { + "uuid": "b660f41a-5e15-42c9-b515-a0f0d010171f", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "FRAMI JAMAR", - "timestamp": "2016-11-18" + "user": "GOLDNER RAHEEM", + "timestamp": "2022-03-01" }, { + "uuid": "8b17d625-522f-4595-9f31-a8830409be1e", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "ARMSTRONG ADELA", - "timestamp": "2017-05-11" + "user": "HEGMANN ELWIN", + "timestamp": "2020-08-16" }, { + "uuid": "fe0d3415-1530-4759-bec5-dbdc55d30514", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "FRANECKI GERMAINE", - "timestamp": "2013-12-04" + "user": "BAYER CARMELO", + "timestamp": "2013-12-16" }, { + "uuid": "31023571-068b-4a49-b00a-71f478a58d34", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "GOTTLIEB NICHOLAS", - "timestamp": "2020-10-12" + "user": "YUNDT PASCALE", + "timestamp": "2020-07-24" }, { + "uuid": "00167e83-7b38-462e-bd21-e2db618393a0", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "NOLAN DAREN", - "timestamp": "2019-06-27" + "user": "REILLY-HARRIS ELEANORE", + "timestamp": "2016-09-07" }, { - "siteRegistry": false, + "uuid": "1fa5330a-c520-45c7-b784-149393a46365", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "O'KON ALLENE", - "timestamp": "2015-02-03" + "user": "HOEGER ASHA", + "timestamp": "2017-11-02" }, { + "uuid": "88b0dc09-eccf-4b01-b38b-07998fb6714d", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "KIHN KATRINA", - "timestamp": "2016-01-21" + "user": "MURRAY LILLIE", + "timestamp": "2014-02-09" } ], "associatedSites": [ { - "dateNoted": "2015-10-26", + "uuid": "007e32d1-0db0-41f2-af9b-52c359d9dd8a", + "dateNoted": "2023-07-22", "notes": "", - "parcelID": "20134", - "siteID": "17950", - "siteRegistry": false + "parcelID": "16813", + "siteID": "20960", + "siteRegistry": true } ] }, { - "uuid": "20ffcd41-704c-4c95-bd45-3e2deff48d2c", - "siteID": 16941, - "address": "5302 Farrell Estate", - "latitude": 57.9859, - "longitude": -128.3683, - "lastUpdated": "2022-01-31", - "city": "Greenland", + "uuid": "93793d65-5ac6-4f65-bb64-86e68ecc93a8", + "siteID": 20402, + "address": "2328 Runolfsdottir Lane", + "latitude": 55.5347, + "longitude": -118.9045, + "lastUpdated": "2021-03-14", + "city": "East Rosemaryport", "region": " North Coast", - "victoriaFile": "26250-20/16631", + "victoriaFile": "26250-20/18908", "regionalFile": "N/A", "parcelIDs": [ - 8226616, - 6434716, - 6191856, - 5927957, - 9685325 + 7491909, + 7298057, + 6892468, + 7038402, + 3435887 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2023-08-18", - "completed": "2017-02-19", - "initiated": "2022-03-11", - "ministryContact": "BOYLE RACHELLE", + "uuid": "88e5f8ab-c25c-409b-9c8e-2452e38105e9", + "createdAt": "2020-05-12", + "completed": "2022-03-18", + "initiated": "2018-09-28", + "ministryContact": "WATERS TRE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -79622,23 +90326,54 @@ ], "notationParticipants": [ { + "uuid": "fbf6bba1-c53f-4487-8049-473eaec0f84d", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "uuid": "bcc06d01-3a1f-418e-84bb-2dc9748ca078", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "uuid": "006d4d0c-bc3c-4561-81a4-1f4f3b9ff3d0", + "createdAt": "2018-03-31", + "completed": "2017-01-25", + "initiated": "2021-11-06", + "ministryContact": "CORKERY ROYCE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "uuid": "6cc6f78f-7f8d-46b2-b45c-72cf685d14e6", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true }, { + "uuid": "aa940a95-e1a7-481d-8d7d-4191d2e336d3", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false } ], "siteRegistry": true }, { - "createdAt": "2015-02-06", - "completed": "2018-11-23", - "initiated": "2018-10-16", - "ministryContact": "STRACKE GLORIA", + "uuid": "c1260f5f-7ad1-4e91-8806-403518179a60", + "createdAt": "2021-10-15", + "completed": "2018-12-13", + "initiated": "2016-08-07", + "ministryContact": "TREUTEL JEREMIE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -79647,23 +90382,32 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "uuid": "856e1c2f-e503-4833-9dbb-0281a5c7aa54", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": false }, { + "uuid": "aac72025-0ffb-42ad-a677-7862466b1422", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true + }, + { + "uuid": "7a4ac86b-8287-46ba-b9bb-c9726b237cf4", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false } ], "siteRegistry": true }, { - "createdAt": "2021-10-22", - "completed": "2022-05-18", - "initiated": "2017-11-25", - "ministryContact": "JACOBS ZELDA", + "uuid": "b6a59c61-e39c-4888-8eac-724b8142cc41", + "createdAt": "2017-01-12", + "completed": "2018-03-07", + "initiated": "2016-02-24", + "ministryContact": "HACKETT CATHRINE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -79672,14 +90416,22 @@ ], "notationParticipants": [ { + "uuid": "84fc499f-99fe-4aa4-b275-96298df8e154", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true }, { + "uuid": "91153b9e-3cb2-400b-9e70-ce19dff6f209", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true + }, + { + "uuid": "5b932373-fd9f-45e7-ae17-874e08f76539", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true } ], "siteRegistry": false @@ -79687,29 +90439,43 @@ ], "participants": [ { - "name": "AMET, DOLOR SIT", - "endDate": "2020-04-07", - "startDate": "2019-05-07", + "uuid": "433160c9-e080-4bbd-8991-a8219bc2e9dc", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2020-01-06", + "startDate": "2020-12-20", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2021-10-14", - "startDate": "2020-10-20", + "uuid": "2994a74c-8b40-445b-bb0d-352e6ecfb4f4", + "name": "AMET, DOLOR SIT", + "endDate": "2021-09-01", + "startDate": "2022-06-13", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": false + "siteRegistry": true + }, + { + "uuid": "9d0d7e8a-b717-4bf4-a390-2360b1c6887c", + "name": "IPSUM", + "endDate": "2022-06-28", + "startDate": "2019-05-10", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true }, { + "uuid": "7f3b6d80-b625-4569-8994-ca3675e6e9b4", "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2014-05-22", - "startDate": "2014-08-10", + "endDate": "2019-01-03", + "startDate": "2014-10-19", "notes": "", "roles": [ "EMPLOYEE" @@ -79717,236 +90483,206 @@ "siteRegistry": true }, { - "name": "IPSUM", - "endDate": "2019-09-30", - "startDate": "2015-02-09", + "uuid": "bdaff046-302d-4013-b2b8-f809721a419f", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2018-09-07", + "startDate": "2020-10-15", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": false + "siteRegistry": true } ], "suspectLandUses": [ { + "uuid": "f0293c53-76d1-45bd-9734-045d03f5fdc1", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-07-14 (described on Site Profile dated 2021-07-14)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "notes": "INSERTED FOR SITE PROFILE DATED 2022-11-18 (described on Site Profile dated 2022-11-18)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { + "uuid": "7deba724-4c06-461c-b1ba-38c7c1b88508", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-08-15 (described on Site Profile dated 2021-08-15)", + "notes": "INSERTED FOR SITE PROFILE DATED 2014-07-04 (described on Site Profile dated 2014-07-04)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-06-06 (described on Site Profile dated 2015-06-06)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "uuid": "d8c53308-0cbe-470d-b4d3-b7175e05b789", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2023-04-29 (described on Site Profile dated 2023-04-29)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-12-22 (described on Site Profile dated 2022-12-22)", + "uuid": "1621d905-287c-4c5a-8473-85317134ea39", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2023-08-01 (described on Site Profile dated 2023-08-01)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-05-04 (described on Site Profile dated 2015-05-04)", + "uuid": "3b1ea9fa-8d08-4d37-86ee-bb4f9f00ee57", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2020-09-19 (described on Site Profile dated 2020-09-19)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], "parcelDescriptions": [ { + "uuid": "47921eeb-b879-4602-a1a8-d673ed75a660", "siteRegistry": false, - "dateNoted": "2019-07-07", - "parcelID": "15260", - "crownLandUsePIN": "15766", - "crownLandFileNumber": "18674", - "landDescription": "LOT 1 OF LOT 4 BLOCK 3 DISTRICT LOT 1 PLAN 5640" - }, - { - "siteRegistry": false, - "dateNoted": "2018-08-02", - "parcelID": "19330", - "crownLandUsePIN": "19126", - "crownLandFileNumber": "16371", - "landDescription": "LOT 4 OF LOT 5 BLOCK 2 DISTRICT LOT 3 PLAN 4647" - }, - { - "siteRegistry": false, - "dateNoted": "2022-10-10", - "parcelID": "18254", - "crownLandUsePIN": "19177", - "crownLandFileNumber": "16103", - "landDescription": "LOT 3 OF LOT 1 BLOCK 4 DISTRICT LOT 1 PLAN 8977" + "dateNoted": "2020-06-23", + "parcelID": "19723", + "crownLandUsePIN": "15908", + "crownLandFileNumber": "19999", + "landDescription": "LOT 5 OF LOT 3 BLOCK 1 DISTRICT LOT 3 PLAN 6401" }, { + "uuid": "cd77d6d0-f9f1-4864-89c8-c3d08c2df51b", "siteRegistry": false, - "dateNoted": "2023-03-01", - "parcelID": "15592", - "crownLandUsePIN": "17587", - "crownLandFileNumber": "17697", - "landDescription": "LOT 5 OF LOT 5 BLOCK 3 DISTRICT LOT 1 PLAN 9634" + "dateNoted": "2015-10-02", + "parcelID": "18954", + "crownLandUsePIN": "17626", + "crownLandFileNumber": "19741", + "landDescription": "LOT 2 OF LOT 4 BLOCK 5 DISTRICT LOT 2 PLAN 9504" }, { + "uuid": "921207c4-1095-4bc5-b7f2-084a004e649e", "siteRegistry": true, - "dateNoted": "2014-12-14", - "parcelID": "15322", - "crownLandUsePIN": "16068", - "crownLandFileNumber": "17644", - "landDescription": "LOT 1 OF LOT 4 BLOCK 5 DISTRICT LOT 1 PLAN 7245" + "dateNoted": "2017-02-08", + "parcelID": "20579", + "crownLandUsePIN": "19441", + "crownLandFileNumber": "16710", + "landDescription": "LOT 5 OF LOT 4 BLOCK 3 DISTRICT LOT 5 PLAN 4015" } ], "siteDisclosures": [ { - "siteRegistry": true, - "dateReceived": "2023-01-06", - "dateCompleted": "2019-03-06", - "dateEntered": "2023-07-07", - "dateRegistrar": "2021-11-19", - "dateLocalAuthorityReceived": "2018-05-29", - "summary": "Maiores soluta non optio.", - "informationUsed": "Quos illum aspernatur qui.\nIn repellat hic asperiores ipsam libero dolorem consequuntur unde.\nEarum quae quo.", - "pastOrPresentOrders": "Harum unde expedita eveniet quaerat harum et.\nQuaerat vitae omnis ad.\nQuis repudiandae ducimus error inventore suscipit voluptatum consequuntur quae.", + "uuid": "6845d006-ee11-4f12-b5aa-aef09dca091e", + "siteRegistry": false, + "dateReceived": "2017-05-11", + "dateCompleted": "2013-10-23", + "dateEntered": "2018-09-04", + "dateRegistrar": "2017-08-27", + "dateLocalAuthorityReceived": "2017-04-27", + "summary": "Asperiores occaecati quod quos illum ducimus nam maxime ad.", + "informationUsed": "Nisi cupiditate dignissimos repellat assumenda consequuntur alias aut tempora nihil.\nIpsam error dolores aliquam minus.\nDignissimos qui magnam aut ex nulla eum aliquam dolorem.", + "pastOrPresentOrders": "Architecto praesentium tempora hic corrupti qui sapiente.\nDolores voluptatibus sed nisi.", "commercialAndIndustrialPurposes": [ { + "uuid": "70e7b16d-fff9-48b6-a5a0-8180b86cfce8", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true - }, - { + "uuid": "f5d75f80-55ce-4aa7-b17e-0563e1edcbd8", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true - } - ] - }, - { - "siteRegistry": true, - "dateReceived": "2019-06-02", - "dateCompleted": "2016-09-02", - "dateEntered": "2015-09-27", - "dateRegistrar": "2023-06-16", - "dateLocalAuthorityReceived": "2020-09-13", - "summary": "Sunt labore omnis.", - "informationUsed": "Eum vitae nulla voluptate.\nNesciunt sapiente veritatis eaque labore cupiditate doloribus molestiae.\nNatus consectetur neque soluta incidunt.\nSed magni in ipsa itaque dolorem.\nVoluptate reiciendis tempora eveniet.", - "pastOrPresentOrders": "Ea soluta repellendus.", - "commercialAndIndustrialPurposes": [ - { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true + "siteRegistry": false }, { + "uuid": "dd50ff68-8036-43ee-9eba-7958173272c5", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true + "siteRegistry": false }, { - "scheduleReference": "F1*", + "uuid": "76566960-5864-4846-bc48-46ef3b5eac98", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false + "siteRegistry": true } ] } ], "activityLog": [ { - "siteRegistry": true, + "uuid": "e1a9f0f2-1eb7-4d2b-9ee6-9fc17caa2682", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "EMARD STEWART", - "timestamp": "2016-06-29" + "user": "DIBBERT DECLAN", + "timestamp": "2018-03-09" }, { + "uuid": "246c1817-1342-4449-9aca-5087bdbdbe56", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "DACH CHRISTOPHE", - "timestamp": "2023-02-15" + "user": "LEMKE VELLA", + "timestamp": "2018-12-26" }, { + "uuid": "20354602-9615-4650-95e2-c790f35f176f", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "KUNZE PABLO", - "timestamp": "2023-06-19" + "user": "STEUBER FELTON", + "timestamp": "2013-10-26" }, { - "siteRegistry": true, + "uuid": "3bc7d350-a43c-4a10-9cec-bd81fe56954c", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "MCKENZIE GABRIEL", - "timestamp": "2018-06-26" + "user": "RENNER GIUSEPPE", + "timestamp": "2018-03-11" }, { + "uuid": "228fe115-3665-4781-a478-48445f2d52eb", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "DURGAN BELLE", - "timestamp": "2015-02-19" + "user": "O'CONNER AUGUST", + "timestamp": "2023-06-06" }, { - "siteRegistry": true, + "uuid": "25f4764f-61cc-4e69-a7d9-dbf3aaf090b1", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "DONNELLY CASEY", - "timestamp": "2022-07-14" + "user": "LANGWORTH-WEHNER BRICE", + "timestamp": "2017-05-27" }, { + "uuid": "df3820b1-a2ba-4a7c-86db-0c540472aae6", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "WIEGAND DONATO", - "timestamp": "2021-12-31" + "user": "WHITE TERRENCE", + "timestamp": "2013-12-28" } ], "associatedSites": [ { - "dateNoted": "2015-01-31", - "notes": "", - "parcelID": "16750", - "siteID": "17607", - "siteRegistry": true - }, - { - "dateNoted": "2022-03-22", - "notes": "", - "parcelID": "20942", - "siteID": "18326", - "siteRegistry": true - }, - { - "dateNoted": "2022-04-27", + "uuid": "ede18f5e-1d7d-4319-a974-4e7a07748784", + "dateNoted": "2014-08-27", "notes": "", - "parcelID": "19581", - "siteID": "16150", + "parcelID": "15965", + "siteID": "15914", "siteRegistry": false } ] }, { - "uuid": "9bd74e0b-cd1e-43e3-b2d0-599d2e040d11", - "siteID": 19907, - "address": "16590 Norma Falls", - "latitude": 54.6794, - "longitude": -121.5145, - "lastUpdated": "2017-08-23", - "city": "Kuhnmouth", - "region": "Mainland/Southwest", - "victoriaFile": "26250-20/1059", + "uuid": "84d0c5d1-9e94-4bc4-a5f0-ace17c1c8e4c", + "siteID": 16078, + "address": "84498 Linnie Garden", + "latitude": 56.4421, + "longitude": -136.4891, + "lastUpdated": "2023-05-12", + "city": "Juniorcester", + "region": "Thompson-Okanagan", + "victoriaFile": "26250-20/3756", "regionalFile": "N/A", "parcelIDs": [ - 9839221, - 1239402, - 9677607, - 8262266, - 6151385 + 4587346, + 8203607, + 6992859, + 9806368, + 6957671 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2017-07-09", - "completed": "2018-01-20", - "initiated": "2019-07-26", - "ministryContact": "DOOLEY JEREMY", + "uuid": "c2d320b6-e8d8-42d9-8344-c9e1deddc4fd", + "createdAt": "2015-03-29", + "completed": "2018-11-19", + "initiated": "2018-08-16", + "ministryContact": "CRONIN VESTA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -79955,38 +90691,32 @@ ], "notationParticipants": [ { + "uuid": "344548c0-bb5b-499c-86e0-bf324226022a", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", "siteRegistry": false }, { + "uuid": "8d40f3f7-2f0b-444c-b52b-bdf1447ced14", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { + "uuid": "1595127c-7320-4ed2-a8b6-20eb95f8d1b6", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true } ], "siteRegistry": false }, { - "createdAt": "2019-11-29", - "completed": "2018-06-01", - "initiated": "2022-08-18", - "ministryContact": "MANTE CORDELL", + "uuid": "8af72849-e598-4a2b-84e2-8e69b52a03e7", + "createdAt": "2019-09-21", + "completed": "2021-05-03", + "initiated": "2016-10-08", + "ministryContact": "ARMSTRONG TIANNA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -79995,130 +90725,190 @@ ], "notationParticipants": [ { + "uuid": "f5f3e403-1850-4349-9ce3-f32587d79adb", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false }, { + "uuid": "22963929-f314-47b5-9cff-c80599c6bde2", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false }, { + "uuid": "d4025c10-1272-4e81-b00a-2ea50673fd50", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "uuid": "7da8265a-fe11-4197-947f-6719480fe772", + "createdAt": "2019-04-17", + "completed": "2020-04-22", + "initiated": "2015-07-25", + "ministryContact": "VONRUEDEN LETHA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "uuid": "907ff285-8ef4-4eab-932f-9bf8b54be4b5", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true }, { + "uuid": "1214edab-51df-4efa-ac98-4fd2174ebec7", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false } ], "participants": [ { - "name": "AMET, DOLOR SIT", - "endDate": "2018-02-17", - "startDate": "2023-05-24", + "uuid": "3e1f6da7-c3b3-40dc-9e04-de57cc3b670e", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2017-01-23", + "startDate": "2019-09-03", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "uuid": "a272f958-cba4-4943-8b2e-72736cc36bc9", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2021-10-04", + "startDate": "2015-04-13", + "notes": "", + "roles": [ + "EMPLOYEE" ], "siteRegistry": false }, { + "uuid": "c48ea8a4-c71f-4cdc-9d75-a0caf5b5b96f", "name": "AMET, DOLOR SIT", - "endDate": "2021-12-18", - "startDate": "2016-06-15", + "endDate": "2021-08-14", + "startDate": "2021-10-18", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false } ], "suspectLandUses": [ { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2023-08-11 (described on Site Profile dated 2023-08-11)", + "uuid": "81298b7b-bed5-4c7e-a126-d44ff7833d79", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2019-12-06 (described on Site Profile dated 2019-12-06)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { + "uuid": "cdc50d8e-6c66-480c-8945-27aeaa662e22", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-10-27 (described on Site Profile dated 2022-10-27)", + "notes": "INSERTED FOR SITE PROFILE DATED 2014-06-24 (described on Site Profile dated 2014-06-24)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "uuid": "c862a9c4-b439-4fa7-aa2d-229583525580", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2020-01-30 (described on Site Profile dated 2020-01-30)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "uuid": "ef2ef47a-b2a9-46f7-a659-7d7b0cc8e846", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2014-09-20 (described on Site Profile dated 2014-09-20)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "uuid": "523ce00a-7129-47f9-b1fa-94d59be52d90", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2019-08-27 (described on Site Profile dated 2019-08-27)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], "parcelDescriptions": [ { - "siteRegistry": false, - "dateNoted": "2017-03-11", - "parcelID": "16511", - "crownLandUsePIN": "18119", - "crownLandFileNumber": "16255", - "landDescription": "LOT 4 OF LOT 4 BLOCK 1 DISTRICT LOT 4 PLAN 6634" + "uuid": "e2e634dc-ce1f-46d3-bbe1-cb72a2b34172", + "siteRegistry": true, + "dateNoted": "2016-12-15", + "parcelID": "19282", + "crownLandUsePIN": "17516", + "crownLandFileNumber": "18207", + "landDescription": "LOT 2 OF LOT 1 BLOCK 2 DISTRICT LOT 1 PLAN 3033" }, { + "uuid": "ef9e5c22-dc8e-4ac1-b539-f4debbad5562", "siteRegistry": true, - "dateNoted": "2017-12-10", - "parcelID": "18673", - "crownLandUsePIN": "20336", - "crownLandFileNumber": "20071", - "landDescription": "LOT 3 OF LOT 2 BLOCK 1 DISTRICT LOT 2 PLAN 7520" + "dateNoted": "2019-01-02", + "parcelID": "15820", + "crownLandUsePIN": "15922", + "crownLandFileNumber": "17301", + "landDescription": "LOT 4 OF LOT 4 BLOCK 5 DISTRICT LOT 3 PLAN 4508" + }, + { + "uuid": "e1c77c75-4e77-43fc-b487-19be1b1f6ac9", + "siteRegistry": false, + "dateNoted": "2015-07-08", + "parcelID": "17401", + "crownLandUsePIN": "20360", + "crownLandFileNumber": "17457", + "landDescription": "LOT 5 OF LOT 1 BLOCK 1 DISTRICT LOT 5 PLAN 9045" }, { + "uuid": "0d2abc52-ea75-490f-b3df-f15990ae05f6", "siteRegistry": true, - "dateNoted": "2021-03-08", - "parcelID": "16597", - "crownLandUsePIN": "19033", - "crownLandFileNumber": "20879", - "landDescription": "LOT 2 OF LOT 1 BLOCK 1 DISTRICT LOT 5 PLAN 4994" + "dateNoted": "2016-01-10", + "parcelID": "20319", + "crownLandUsePIN": "16901", + "crownLandFileNumber": "16360", + "landDescription": "LOT 3 OF LOT 2 BLOCK 1 DISTRICT LOT 4 PLAN 3838" }, { + "uuid": "e3e563e9-c0c7-488d-a41b-f0e602662b55", "siteRegistry": true, - "dateNoted": "2021-07-16", - "parcelID": "17504", - "crownLandUsePIN": "18564", - "crownLandFileNumber": "19953", - "landDescription": "LOT 3 OF LOT 1 BLOCK 3 DISTRICT LOT 5 PLAN 6397" + "dateNoted": "2019-10-21", + "parcelID": "15676", + "crownLandUsePIN": "17576", + "crownLandFileNumber": "20362", + "landDescription": "LOT 4 OF LOT 1 BLOCK 1 DISTRICT LOT 5 PLAN 8213" } ], "siteDisclosures": [ { - "siteRegistry": true, - "dateReceived": "2020-02-21", - "dateCompleted": "2022-05-19", - "dateEntered": "2019-06-13", - "dateRegistrar": "2013-10-21", - "dateLocalAuthorityReceived": "2020-06-15", - "summary": "Tenetur id cumque ab tenetur voluptatum nemo sequi ipsa.\nPariatur atque vero vero.\nArchitecto praesentium debitis atque ipsa cupiditate aliquam saepe.", - "informationUsed": "Culpa veniam consectetur officiis similique.\nQui ipsa animi asperiores temporibus soluta rem esse quas.\nIste voluptatum qui aspernatur.", - "pastOrPresentOrders": "Itaque quidem veritatis veniam.", + "uuid": "6b82e74c-0991-4bd5-9d88-6fbb24710a5b", + "siteRegistry": false, + "dateReceived": "2017-08-16", + "dateCompleted": "2019-01-12", + "dateEntered": "2018-11-26", + "dateRegistrar": "2014-08-30", + "dateLocalAuthorityReceived": "2015-08-01", + "summary": "Aut reprehenderit reprehenderit vero.\nArchitecto ipsa unde quibusdam.", + "informationUsed": "Soluta soluta cupiditate occaecati eum perspiciatis nihil nam.\nQuae doloremque ipsum deleniti fugit.\nSoluta fuga possimus cum ipsum eveniet doloribus deleniti.", + "pastOrPresentOrders": "Possimus dolores possimus.\nSint doloremque enim architecto.", "commercialAndIndustrialPurposes": [ { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false - }, - { + "uuid": "7947ac78-381d-439b-9cc3-eb76c8068246", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false - }, - { + "uuid": "023763f2-f6cb-4ad6-9fe0-3dc325d046f9", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true @@ -80126,145 +90916,150 @@ ] }, { + "uuid": "38a84a18-bfb7-4f94-998a-a06627b719ad", "siteRegistry": false, - "dateReceived": "2018-11-24", - "dateCompleted": "2015-09-21", - "dateEntered": "2016-01-30", - "dateRegistrar": "2014-01-16", - "dateLocalAuthorityReceived": "2014-04-30", - "summary": "Sint atque earum ipsum.\nImpedit nihil nam.", - "informationUsed": "Ad quas enim.\nArchitecto reprehenderit facilis accusantium sequi.\nMinus architecto eligendi unde earum consequuntur error quibusdam eos minima.\nDicta laboriosam fugiat eum odio maiores illo ipsam ea autem.\nSequi dolores laborum.", - "pastOrPresentOrders": "Praesentium ex saepe veniam occaecati expedita consequuntur.", + "dateReceived": "2014-06-20", + "dateCompleted": "2020-12-23", + "dateEntered": "2014-06-11", + "dateRegistrar": "2022-04-12", + "dateLocalAuthorityReceived": "2015-12-06", + "summary": "Porro optio sed debitis doloribus distinctio totam maiores distinctio rerum.", + "informationUsed": "Aliquid optio dolorum quos quae adipisci dolores magnam.\nError porro nostrum sunt laudantium ipsum optio at quisquam.\nNecessitatibus reiciendis facilis perspiciatis enim.", + "pastOrPresentOrders": "Necessitatibus neque facilis placeat alias nobis.", "commercialAndIndustrialPurposes": [ { - "scheduleReference": "F1*", + "uuid": "4a7c421a-8ae0-4fec-8f22-1792cb44ccfe", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { - "scheduleReference": "F1*", + "uuid": "f26eff79-badf-4cc5-8f73-ecdfc0ecac78", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false - }, - { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false + "siteRegistry": true } ] } ], "activityLog": [ { + "uuid": "f1172e2c-697c-4284-b654-79addb3e2c24", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "VANDERVORT LUDIE", - "timestamp": "2020-08-19" - }, - { - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "WILLIAMSON REGINALD", - "timestamp": "2015-10-20" + "user": "DAUGHERTY MAEVE", + "timestamp": "2022-10-21" }, { + "uuid": "451f02c0-1490-49d0-b207-0822397f5853", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "OSINSKI ROSALIND", - "timestamp": "2018-01-06" + "user": "CRUICKSHANK ANTWAN", + "timestamp": "2020-09-02" }, { + "uuid": "22acfd81-3f1a-40ef-8067-bc347e1cce16", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "FRANECKI SELENA", - "timestamp": "2016-03-28" + "user": "RITCHIE ELVA", + "timestamp": "2023-01-30" }, { + "uuid": "cdd3e47d-ad04-4e0b-9f4c-97d254558ca8", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "STARK JEROME", - "timestamp": "2015-10-19" + "user": "PROSACCO JEFFRY", + "timestamp": "2020-03-23" }, { - "siteRegistry": false, + "uuid": "35d53bee-e80e-4aa8-8be3-56704c1c3ce6", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "BODE-SCHUSTER PEDRO", - "timestamp": "2018-03-14" + "user": "BRADTKE DELTA", + "timestamp": "2015-10-04" }, { - "siteRegistry": true, + "uuid": "9c6421e7-ab0f-4b88-afed-62c1a5a7dac6", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "LEMKE YASMEEN", - "timestamp": "2018-01-22" + "user": "WEHNER-HARBER BOBBY", + "timestamp": "2021-10-03" }, { - "siteRegistry": true, + "uuid": "3aebe82a-bc3d-42ad-9b41-4d87f8f0a6d1", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "TROMP ODIE", - "timestamp": "2023-06-19" + "user": "KOZEY ISAI", + "timestamp": "2020-03-14" }, { - "siteRegistry": true, + "uuid": "fc92006a-ae5c-4caf-9052-31273c9685a7", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "STANTON STUART", - "timestamp": "2014-11-16" + "user": "ROOB TATUM", + "timestamp": "2020-10-25" }, { + "uuid": "c71f0e42-097a-4822-a647-9fc7d19e3514", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "MEDHURST HETTIE", - "timestamp": "2023-04-11" + "user": "SCHNEIDER MELISA", + "timestamp": "2018-07-08" } ], "associatedSites": [ { - "dateNoted": "2015-09-09", + "uuid": "4f231018-a56c-4136-98d9-46b4c53c0b8b", + "dateNoted": "2023-06-15", "notes": "", - "parcelID": "20805", - "siteID": "20958", + "parcelID": "16831", + "siteID": "15815", "siteRegistry": false }, { - "dateNoted": "2014-06-06", + "uuid": "40e8cad0-9d26-4390-910a-6076a472c737", + "dateNoted": "2017-07-14", "notes": "", - "parcelID": "18726", - "siteID": "20583", + "parcelID": "17875", + "siteID": "19713", "siteRegistry": true }, { - "dateNoted": "2022-07-28", + "uuid": "887d016f-2878-45ed-bca2-0753e3ecec47", + "dateNoted": "2016-09-13", "notes": "", - "parcelID": "19051", - "siteID": "16677", + "parcelID": "15493", + "siteID": "16323", "siteRegistry": false } ] }, { - "uuid": "3754547a-f0e6-4a21-8595-5574e2a7eef3", - "siteID": 15710, - "address": "6265 Esperanza View", - "latitude": 57.7078, - "longitude": -136.4208, - "lastUpdated": "2017-02-17", - "city": "Chula Vista", - "region": "Cariboo", - "victoriaFile": "26250-20/8517", + "uuid": "0bbbb9d5-e16c-4fd6-905f-e3966abbe1f1", + "siteID": 16878, + "address": "46332 Tanya Ridges", + "latitude": 58.0209, + "longitude": -123.07, + "lastUpdated": "2021-04-05", + "city": "West Oraltown", + "region": "Mainland/Southwest", + "victoriaFile": "26250-20/11799", "regionalFile": "N/A", "parcelIDs": [ - 6791322, - 3794164, - 4428205, - 9446082, - 3393716 + 1875431, + 4675144, + 3971002, + 2813226, + 4084603 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2022-03-28", - "completed": "2022-02-27", - "initiated": "2021-11-22", - "ministryContact": "MILLER JONATHAN", + "uuid": "810b6f20-910b-49a4-b0a9-b3220c4085cc", + "createdAt": "2023-08-10", + "completed": "2015-08-24", + "initiated": "2014-12-11", + "ministryContact": "MOEN ELENORA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -80273,28 +91068,84 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "ded5e378-f738-423b-8cdd-35cee9a8dbee", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false }, { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "c6c6e972-1c68-4001-922c-99c54c0e9748", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true + }, + { + "uuid": "a16e7904-777b-4e9e-9f9f-a0108278a413", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true }, { + "uuid": "211d61cc-b41d-4914-a481-96914ff9c9e6", "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "uuid": "c9ca1792-6e37-4115-af7e-b343cde5beca", + "createdAt": "2017-08-13", + "completed": "2022-01-14", + "initiated": "2020-05-22", + "ministryContact": "LABADIE DEMETRIUS", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "uuid": "bfe0337c-136f-43fc-99a9-7053abc257fd", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "624d14f8-f4b3-45d0-a2a5-43ddd6ec11ce", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false + }, + { + "uuid": "5659af4b-1a1d-4c53-94f5-db5f6975be81", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "uuid": "822e31dd-f533-4d9d-9af7-01691f5aa3e6", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "uuid": "8dfdaa00-e3d7-452e-a187-291213f41869", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true } ], "siteRegistry": false }, { - "createdAt": "2017-07-22", - "completed": "2015-12-25", - "initiated": "2021-01-31", - "ministryContact": "STARK LOYAL", + "uuid": "ad19f2dc-c5a4-401a-859c-116666f1de9d", + "createdAt": "2021-09-22", + "completed": "2020-07-14", + "initiated": "2019-03-23", + "ministryContact": "LIND CHELSEA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -80303,14 +91154,16 @@ ], "notationParticipants": [ { + "uuid": "e2fd3f0c-348b-451e-9c67-53879a893757", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true }, { + "uuid": "7bd819ff-7d20-4d91-8f32-dc6ad91e5016", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true } ], "siteRegistry": false @@ -80318,49 +91171,32 @@ ], "participants": [ { + "uuid": "e9ffae4b-fef4-4237-b5f2-81b161417bad", "name": "IPSUM", - "endDate": "2022-05-28", - "startDate": "2021-06-24", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": true - }, - { - "name": "IPSUM", - "endDate": "2017-11-02", - "startDate": "2023-01-22", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": true - }, - { - "name": "IPSUM", - "endDate": "2018-03-26", - "startDate": "2015-12-31", + "endDate": "2022-03-03", + "startDate": "2021-03-21", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true }, { + "uuid": "10ca78d3-4031-4ac1-87d5-31370380955c", "name": "SHELL CANADA PRODUCTS", - "endDate": "2018-12-03", - "startDate": "2015-08-10", + "endDate": "2022-07-02", + "startDate": "2014-04-29", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2016-05-10", - "startDate": "2013-10-12", + "uuid": "c8641510-954a-4793-880d-639212767ad9", + "name": "AMET, DOLOR SIT", + "endDate": "2020-09-12", + "startDate": "2015-10-22", "notes": "", "roles": [ "ORGANIZATION" @@ -80370,179 +91206,195 @@ ], "suspectLandUses": [ { + "uuid": "cd2f8730-2237-4dfd-bca7-27e17a030438", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-03-26 (described on Site Profile dated 2021-03-26)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" - }, - { - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2023-09-17 (described on Site Profile dated 2023-09-17)", + "notes": "INSERTED FOR SITE PROFILE DATED 2022-12-15 (described on Site Profile dated 2022-12-15)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { + "uuid": "ca9c305a-57d7-45a5-9277-6f205e50081e", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-05-31 (described on Site Profile dated 2017-05-31)", + "notes": "INSERTED FOR SITE PROFILE DATED 2014-09-04 (described on Site Profile dated 2014-09-04)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" - }, - { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2020-10-19 (described on Site Profile dated 2020-10-19)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], "parcelDescriptions": [ { + "uuid": "50f52285-a347-43a4-b02c-fb3f4d7cdc6b", "siteRegistry": true, - "dateNoted": "2014-07-09", - "parcelID": "15837", - "crownLandUsePIN": "15778", - "crownLandFileNumber": "20971", - "landDescription": "LOT 5 OF LOT 5 BLOCK 2 DISTRICT LOT 4 PLAN 7989" + "dateNoted": "2022-08-25", + "parcelID": "19340", + "crownLandUsePIN": "16972", + "crownLandFileNumber": "15569", + "landDescription": "LOT 3 OF LOT 5 BLOCK 4 DISTRICT LOT 3 PLAN 4908" }, { - "siteRegistry": false, - "dateNoted": "2018-11-23", - "parcelID": "15921", - "crownLandUsePIN": "15997", - "crownLandFileNumber": "16396", - "landDescription": "LOT 2 OF LOT 2 BLOCK 3 DISTRICT LOT 3 PLAN 8494" + "uuid": "a4508dc0-a381-4d88-a490-7077ef86531c", + "siteRegistry": true, + "dateNoted": "2017-09-23", + "parcelID": "15655", + "crownLandUsePIN": "19400", + "crownLandFileNumber": "20987", + "landDescription": "LOT 5 OF LOT 5 BLOCK 4 DISTRICT LOT 3 PLAN 8318" + }, + { + "uuid": "bcd4e5f5-3278-4c95-ae12-b4b9ff6a08a2", + "siteRegistry": true, + "dateNoted": "2014-08-27", + "parcelID": "19402", + "crownLandUsePIN": "19290", + "crownLandFileNumber": "16843", + "landDescription": "LOT 3 OF LOT 5 BLOCK 4 DISTRICT LOT 1 PLAN 4315" } ], "siteDisclosures": [ { + "uuid": "dfbe839c-ebb1-46cc-a7a3-df5e3d4d437c", "siteRegistry": true, - "dateReceived": "2019-11-29", - "dateCompleted": "2016-12-29", - "dateEntered": "2016-04-10", - "dateRegistrar": "2014-02-08", - "dateLocalAuthorityReceived": "2021-04-26", - "summary": "Optio aliquam odit libero vel.\nNam odio illo maxime voluptate cumque sit.", - "informationUsed": "Libero eum dolorem dolore dolores ducimus voluptas provident.\nDoloribus perferendis veniam molestias enim dolor labore.\nNihil mollitia expedita eum adipisci expedita nostrum.", - "pastOrPresentOrders": "Id labore aspernatur sunt deleniti.", + "dateReceived": "2021-10-10", + "dateCompleted": "2018-12-14", + "dateEntered": "2017-12-24", + "dateRegistrar": "2020-07-07", + "dateLocalAuthorityReceived": "2020-11-19", + "summary": "Est hic itaque doloribus suscipit laudantium alias sunt.\nSit molestias enim voluptates aperiam quidem exercitationem fugit.\nDucimus omnis error sint.", + "informationUsed": "Quis id cum quos atque velit aliquid vel.\nItaque sequi iste consectetur aspernatur dicta at in dignissimos aliquam.\nRepellendus debitis nisi natus expedita optio fugit.", + "pastOrPresentOrders": "Vitae dolor minima suscipit dicta enim dolor.\nSimilique velit aspernatur.\nFacilis illum reiciendis voluptatem quaerat nemo tenetur iure.", "commercialAndIndustrialPurposes": [ { + "uuid": "e4197621-d523-4d70-89fb-ba2c662cc109", "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "uuid": "57695586-66c7-4cf9-8232-3d51af53fbd7", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { + "uuid": "f0752926-e2e6-4c53-a224-25679a740096", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true + "siteRegistry": false } ] }, { + "uuid": "82ac8244-823f-4840-8372-a34c11dfcbc1", "siteRegistry": false, - "dateReceived": "2018-11-23", - "dateCompleted": "2023-07-27", - "dateEntered": "2017-01-08", - "dateRegistrar": "2017-12-03", - "dateLocalAuthorityReceived": "2017-04-17", - "summary": "Consequuntur deserunt quae at explicabo accusantium porro.", - "informationUsed": "Inventore in quae quibusdam corrupti tempora perspiciatis deleniti quisquam aperiam.\nQuisquam placeat vero.\nAt pariatur ut accusamus in.", - "pastOrPresentOrders": "Libero sed repellat est dolorum dolore veritatis quis.\nError provident dolor officiis eius excepturi dignissimos explicabo.", + "dateReceived": "2016-03-17", + "dateCompleted": "2020-09-24", + "dateEntered": "2022-08-15", + "dateRegistrar": "2020-12-30", + "dateLocalAuthorityReceived": "2020-12-08", + "summary": "Ab earum debitis.\nTotam distinctio eius cupiditate neque tenetur commodi iure impedit.", + "informationUsed": "Doloribus pariatur quas dicta quos dolores provident.\nEius dicta accusantium magnam voluptates eos expedita.\nDeleniti aspernatur suscipit repellat officia.\nTenetur natus optio tempora.\nVel soluta porro sed placeat molestias asperiores velit laudantium id.", + "pastOrPresentOrders": "Voluptates deserunt velit adipisci vero nobis id dolores.\nQuidem neque voluptates alias enim voluptatem modi temporibus similique quam.", "commercialAndIndustrialPurposes": [ { + "uuid": "db9d227c-65f0-4881-a041-de0db7e66be5", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false + "uuid": "becf709f-dfca-4952-82a7-022b9c4ef9f8", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true } ] } ], "activityLog": [ { + "uuid": "901c661e-7cf3-4891-abde-96e4017f9602", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "MCDERMOTT KURT", - "timestamp": "2014-10-04" + "user": "EBERT LONZO", + "timestamp": "2020-12-31" + }, + { + "uuid": "b7a346cf-dc31-419b-b84c-d50fd5743b67", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "BARTELL EMANUEL", + "timestamp": "2020-01-31" }, { + "uuid": "c18996d4-72d6-45c4-8b91-213ac4e8331a", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "SCHUMM MARION", - "timestamp": "2021-01-06" + "user": "WEHNER-MARVIN JOSEPH", + "timestamp": "2020-07-22" }, { + "uuid": "fa8b85e4-a37f-4c5c-824f-a99f91a710fb", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "RUSSEL BRAXTON", - "timestamp": "2019-12-19" + "user": "CONROY CHELSEY", + "timestamp": "2017-04-20" }, { - "siteRegistry": true, + "uuid": "a0d96f66-32a2-4629-a10d-23eb7fdc73b1", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "DIETRICH NICK", - "timestamp": "2013-11-06" + "user": "BOEHM MYLES", + "timestamp": "2018-01-22" }, { + "uuid": "197ecda7-f6e0-4316-867c-cafeea6a2227", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "LARSON COLLIN", - "timestamp": "2014-01-08" + "user": "TOWNE MATTIE", + "timestamp": "2019-09-02" }, { + "uuid": "39ce2f9a-961e-43d8-8c36-f4b386ca50b7", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "HAMMES DARYL", - "timestamp": "2015-09-18" + "user": "KIRLIN LEONOR", + "timestamp": "2019-01-21" } ], "associatedSites": [ { - "dateNoted": "2016-12-30", - "notes": "", - "parcelID": "19083", - "siteID": "16933", - "siteRegistry": false - }, - { - "dateNoted": "2014-10-20", + "uuid": "a146acf5-31f0-430c-8a77-143b64019dd9", + "dateNoted": "2014-10-11", "notes": "", - "parcelID": "20792", - "siteID": "18727", + "parcelID": "18413", + "siteID": "18724", "siteRegistry": true - }, - { - "dateNoted": "2015-02-20", - "notes": "", - "parcelID": "16998", - "siteID": "16392", - "siteRegistry": false } ] }, { - "uuid": "2c4e21ea-0f0d-4902-b10f-8d423b4cdf51", - "siteID": 15638, - "address": "585 Maggio Run", - "latitude": 53.6391, - "longitude": -120.1338, - "lastUpdated": "2022-05-29", - "city": "Garden Grove", - "region": "Thompson-Okanagan", - "victoriaFile": "26250-20/19736", + "uuid": "e6b3e44a-818d-44b1-808b-4128d5ea008f", + "siteID": 19254, + "address": "382 O'Connell Station", + "latitude": 52.2024, + "longitude": -121.7901, + "lastUpdated": "2018-03-22", + "city": "Fort Donavon", + "region": " North Coast", + "victoriaFile": "26250-20/14484", "regionalFile": "N/A", "parcelIDs": [ - 9659785, - 2472672, - 2202158, - 7712310, - 4678096 + 7588208, + 5490124, + 9663519, + 7922437, + 5518429 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2022-12-20", - "completed": "2014-01-05", - "initiated": "2015-08-22", - "ministryContact": "DANIEL MERLE", + "uuid": "cd686129-a78f-4851-a199-9208dfac573c", + "createdAt": "2021-12-06", + "completed": "2015-12-14", + "initiated": "2017-01-06", + "ministryContact": "SENGER ROLLIN", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -80551,23 +91403,26 @@ ], "notationParticipants": [ { + "uuid": "80ac141b-baf1-4496-abdc-6bfef7117d27", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true + "role": "SUBMITTED BY", + "siteRegistry": false }, { + "uuid": "41984550-efb5-4e95-9eb8-47e0acd60383", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2015-11-04", - "completed": "2017-04-19", - "initiated": "2018-08-21", - "ministryContact": "HOEGER MONTANA", + "uuid": "1b035a27-acea-44ae-a06e-50aecf986d70", + "createdAt": "2023-07-27", + "completed": "2016-12-08", + "initiated": "2017-02-13", + "ministryContact": "LUETTGEN GLENDA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -80576,23 +91431,26 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { + "uuid": "05ed9572-deee-42ff-9999-6a47b3c76d7b", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true + }, + { + "uuid": "8b59c57d-3969-43d6-84e9-725057c4b426", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true } ], "siteRegistry": true }, { - "createdAt": "2015-04-01", - "completed": "2021-11-07", - "initiated": "2018-08-25", - "ministryContact": "MCCULLOUGH CHESTER", + "uuid": "92f968be-7674-4f4b-9286-682f49f5de97", + "createdAt": "2021-03-06", + "completed": "2016-08-08", + "initiated": "2022-01-10", + "ministryContact": "MEDHURST MONA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -80601,54 +91459,34 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { + "uuid": "94ac561a-7953-4020-8468-e248e64b757d", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", + "uuid": "c19e80b2-2cd9-4495-9ffd-7fb837761db0", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false - } - ], - "siteRegistry": false - }, - { - "createdAt": "2018-10-18", - "completed": "2018-02-04", - "initiated": "2017-06-10", - "ministryContact": "VANDERVORT MYRA", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true }, { + "uuid": "07611e58-514b-42d6-823e-7e4d4b493cb5", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false }, { + "uuid": "bb2d7f2a-08f7-4831-992d-9570058f317a", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { + "uuid": "ae5c7dc7-674f-4527-8b46-0ae39852311c", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true } ], "siteRegistry": false @@ -80656,9 +91494,10 @@ ], "participants": [ { - "name": "AMET, DOLOR SIT", - "endDate": "2020-01-22", - "startDate": "2017-09-22", + "uuid": "e88f206c-974c-4512-870e-642ffc8b5c57", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2020-01-28", + "startDate": "2016-05-12", "notes": "", "roles": [ "ORGANIZATION" @@ -80666,195 +91505,250 @@ "siteRegistry": false }, { + "uuid": "078e1d61-b7f2-45ff-881b-926b962049f9", "name": "SHELL CANADA PRODUCTS", - "endDate": "2014-08-13", - "startDate": "2014-05-08", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": true - }, - { - "name": "AMET, DOLOR SIT", - "endDate": "2016-03-01", - "startDate": "2019-04-07", + "endDate": "2015-12-05", + "startDate": "2016-02-16", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": true + "siteRegistry": false }, { + "uuid": "b3e6e578-b6c8-42f2-93c0-1b975e6ab636", "name": "AMET, DOLOR SIT", - "endDate": "2022-03-07", - "startDate": "2021-12-22", + "endDate": "2023-08-22", + "startDate": "2021-11-18", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": true - }, - { - "name": "IPSUM", - "endDate": "2016-02-08", - "startDate": "2016-05-19", - "notes": "", - "roles": [ - "ORGANIZATION" - ], "siteRegistry": false } ], "suspectLandUses": [ { + "uuid": "990c51e1-cc89-4071-a005-acc829cb9def", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2020-10-06 (described on Site Profile dated 2020-10-06)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "notes": "INSERTED FOR SITE PROFILE DATED 2014-07-21 (described on Site Profile dated 2014-07-21)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "uuid": "31a5b2d8-dc36-4054-ae07-5700c4702b5f", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2015-01-18 (described on Site Profile dated 2015-01-18)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { + "uuid": "88df9370-8997-4024-b2ca-4f9712e979b3", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2020-01-09 (described on Site Profile dated 2020-01-09)", + "notes": "INSERTED FOR SITE PROFILE DATED 2015-06-11 (described on Site Profile dated 2015-06-11)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], "parcelDescriptions": [ { + "uuid": "daa38283-2a66-43ee-a255-45cba0a1b117", "siteRegistry": false, - "dateNoted": "2019-06-10", - "parcelID": "17422", - "crownLandUsePIN": "20889", - "crownLandFileNumber": "17830", - "landDescription": "LOT 1 OF LOT 4 BLOCK 1 DISTRICT LOT 4 PLAN 3728" - }, - { - "siteRegistry": true, - "dateNoted": "2014-12-14", - "parcelID": "17294", - "crownLandUsePIN": "16705", - "crownLandFileNumber": "20351", - "landDescription": "LOT 3 OF LOT 2 BLOCK 2 DISTRICT LOT 3 PLAN 3901" + "dateNoted": "2023-05-18", + "parcelID": "17855", + "crownLandUsePIN": "20791", + "crownLandFileNumber": "16669", + "landDescription": "LOT 4 OF LOT 2 BLOCK 1 DISTRICT LOT 1 PLAN 8035" }, { + "uuid": "259ce856-9903-4012-ac8c-866d469379eb", "siteRegistry": false, - "dateNoted": "2017-12-09", - "parcelID": "18467", - "crownLandUsePIN": "17420", - "crownLandFileNumber": "17882", - "landDescription": "LOT 2 OF LOT 5 BLOCK 1 DISTRICT LOT 5 PLAN 7095" + "dateNoted": "2017-02-13", + "parcelID": "18969", + "crownLandUsePIN": "16108", + "crownLandFileNumber": "17203", + "landDescription": "LOT 2 OF LOT 1 BLOCK 3 DISTRICT LOT 5 PLAN 3763" } ], "siteDisclosures": [ { + "uuid": "ef2817c8-80ec-41ea-9776-e8d9b1c89744", "siteRegistry": true, - "dateReceived": "2020-08-01", - "dateCompleted": "2022-07-10", - "dateEntered": "2020-05-06", - "dateRegistrar": "2018-03-17", - "dateLocalAuthorityReceived": "2021-12-15", - "summary": "Numquam dignissimos deleniti veniam labore ullam laboriosam.\nAccusantium nemo placeat.", - "informationUsed": "Soluta nesciunt unde beatae totam voluptatem doloribus reiciendis debitis quas.\nUllam rerum esse corrupti fugit officiis eius sapiente.\nOdit iusto possimus.", - "pastOrPresentOrders": "Fugit quam quo ex temporibus exercitationem repudiandae soluta cupiditate.\nEaque facere aperiam.\nVoluptatibus molestiae repudiandae repudiandae laudantium facere est architecto voluptatem.", + "dateReceived": "2016-12-04", + "dateCompleted": "2017-09-14", + "dateEntered": "2022-12-03", + "dateRegistrar": "2022-07-25", + "dateLocalAuthorityReceived": "2015-01-27", + "summary": "Dolore earum ut cupiditate consequuntur quae repellat vero voluptas.\nQui nesciunt totam ut aliquid quibusdam consequuntur ex.\nQuidem similique officiis repellendus.", + "informationUsed": "Porro dolores occaecati culpa at.\nOfficia ullam voluptatum vel ea sint recusandae quos vel molestias.\nIpsam sint adipisci doloremque ut sapiente deleniti itaque aliquid.\nIusto tenetur explicabo at labore officiis.\nDistinctio quo laudantium nulla voluptatibus sit.", + "pastOrPresentOrders": "Quidem odit unde saepe illum ad quasi quasi non.\nNatus commodi necessitatibus dolor debitis magnam id laborum officia.\nEa dolore maxime reiciendis labore fugiat quae molestiae.", "commercialAndIndustrialPurposes": [ { - "scheduleReference": "F1*", + "uuid": "7aeeb29d-fe5a-4182-be2b-22ab67469e45", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "uuid": "3c79d43f-a846-4fe5-8747-e62945544615", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { + "uuid": "619ffa51-1b4b-44cf-a653-345fd4c8e2f3", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false }, { - "scheduleReference": "F1*", + "uuid": "57574810-ccb7-45a5-9c88-ca19f8c68c4c", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + } + ] + }, + { + "uuid": "dc5259ae-b407-4c0a-8228-99d7cb9dfd89", + "siteRegistry": false, + "dateReceived": "2018-03-15", + "dateCompleted": "2019-07-15", + "dateEntered": "2017-04-02", + "dateRegistrar": "2021-06-17", + "dateLocalAuthorityReceived": "2022-12-22", + "summary": "Odit fuga error vel debitis ea earum veritatis.\nQuasi ipsum inventore cum consequatur deserunt magnam reprehenderit sit.\nCommodi est natus sed corporis dolor.", + "informationUsed": "Libero recusandae accusamus recusandae tempora.\nVelit ipsum magni atque suscipit at maxime.\nEligendi magni ex asperiores ratione.\nInventore voluptate non ipsam.\nEnim voluptate non adipisci distinctio numquam.", + "pastOrPresentOrders": "Aperiam suscipit repudiandae iste ducimus optio cupiditate magni nulla iusto.\nDoloremque odio eius ex deserunt quae blanditiis quae maxime quo.\nRepudiandae soluta adipisci et officia.", + "commercialAndIndustrialPurposes": [ + { + "uuid": "a110d9e9-942d-44b5-88e9-6e6f4656d11e", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "uuid": "354a46f9-1bba-4c58-ab76-5fc5b3937809", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "uuid": "40bb6e53-a95c-4b7c-96b8-44faffb6dfb2", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true + }, + { + "uuid": "cadf59df-8341-47a1-9152-486563dda88e", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false } ] } ], "activityLog": [ { + "uuid": "f39bd150-75ea-4d20-8b1e-3108f280ea8d", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "DIBBERT LON", - "timestamp": "2016-06-24" + "user": "WUNSCH GUSTAVE", + "timestamp": "2013-11-12" }, { + "uuid": "de0f9fe4-5e8b-4768-a0c1-ddbdcffbfa0a", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "GREENHOLT CAMILA", + "timestamp": "2020-05-15" + }, + { + "uuid": "20e05f79-477a-4949-806d-feacc1b7fc88", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "CREMIN KAMILLE", - "timestamp": "2021-12-16" + "user": "FAHEY ALVA", + "timestamp": "2020-02-08" }, { - "siteRegistry": true, + "uuid": "5413d8a3-43b2-4bbd-b7bb-4e11d57c16bf", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "TROMP MADALYN", - "timestamp": "2023-08-18" + "user": "DICKI GILBERTO", + "timestamp": "2021-08-22" }, { - "siteRegistry": true, + "uuid": "fb071109-b003-4178-aee6-2dd759eb942f", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "MRAZ NANNIE", - "timestamp": "2014-03-19" + "user": "TRANTOW-FISHER DEONTAE", + "timestamp": "2017-02-12" }, { + "uuid": "68233f8f-4c76-487b-a160-b21f9d425e8e", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "EBERT PRICE", - "timestamp": "2019-11-01" + "user": "STAMM LINNEA", + "timestamp": "2021-12-29" + }, + { + "uuid": "d664a1e1-03a4-43a0-91eb-02e91117487f", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "ROBEL CODY", + "timestamp": "2022-07-31" } ], "associatedSites": [ { - "dateNoted": "2018-08-29", + "uuid": "0cf3d19f-6630-45f0-bef5-1a050b328871", + "dateNoted": "2018-07-10", "notes": "", - "parcelID": "16768", - "siteID": "18326", + "parcelID": "19601", + "siteID": "16415", "siteRegistry": false }, { - "dateNoted": "2021-03-07", + "uuid": "7147050b-5333-4c53-9636-def15860a2b3", + "dateNoted": "2016-03-14", "notes": "", - "parcelID": "16289", - "siteID": "20583", + "parcelID": "20775", + "siteID": "17612", "siteRegistry": false }, { - "dateNoted": "2018-11-15", + "uuid": "6ae7cd0a-ddba-4cb0-b455-6ae88b049516", + "dateNoted": "2019-07-05", "notes": "", - "parcelID": "16907", - "siteID": "15660", - "siteRegistry": true + "parcelID": "17073", + "siteID": "16202", + "siteRegistry": false } ] }, { - "uuid": "604c9c28-848e-4ead-bf1a-a510864262a5", - "siteID": 16640, - "address": "377 Carissa Islands", - "latitude": 55.0881, - "longitude": -121.0525, - "lastUpdated": "2017-02-19", - "city": "East Humberto", - "region": "Vancouver Island/Coast", - "victoriaFile": "26250-20/2901", + "uuid": "91101184-8f64-409d-b1e6-0e9e54553b6a", + "siteID": 19254, + "address": "35562 Eleanore Shore", + "latitude": 55.9636, + "longitude": -129.915, + "lastUpdated": "2019-01-25", + "city": "Terrillbury", + "region": "Mainland/Southwest", + "victoriaFile": "26250-20/4478", "regionalFile": "N/A", "parcelIDs": [ - 9543234, - 9879889, - 5548031, - 2060824, - 1584927 + 7636521, + 1742300, + 5875328, + 2997993, + 917541 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2019-05-02", - "completed": "2023-06-09", - "initiated": "2014-10-23", - "ministryContact": "LANG CATHRYN", + "uuid": "de141c77-9816-4dd1-81c3-35bfd0078b11", + "createdAt": "2018-12-12", + "completed": "2023-08-01", + "initiated": "2020-08-28", + "ministryContact": "PARISIAN STEPHAN", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -80863,68 +91757,38 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { + "uuid": "3a00672b-69ae-4778-8448-5f1ae64170dd", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true - } - ], - "siteRegistry": true - }, - { - "createdAt": "2022-11-20", - "completed": "2013-10-20", - "initiated": "2019-07-26", - "ministryContact": "FLATLEY MIGUEL", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false }, { + "uuid": "ab1f5926-3581-4a27-8228-b6eef36bf092", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false + "role": "REQUESTED BY", + "siteRegistry": true }, { + "uuid": "a2e753d2-38a4-401e-aba0-bd31a8992b70", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true }, { + "uuid": "4109b290-9c7e-411c-b037-bcc309f141ee", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true + "role": "REQUESTED BY", + "siteRegistry": false } ], "siteRegistry": false }, { - "createdAt": "2015-07-22", - "completed": "2019-11-21", - "initiated": "2022-11-07", - "ministryContact": "LESCH RAMON", + "uuid": "da10c16f-fd34-4f2a-9714-4d417ccd2438", + "createdAt": "2020-02-03", + "completed": "2017-09-04", + "initiated": "2017-08-22", + "ministryContact": "MCKENZIE NAOMIE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -80933,28 +91797,38 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", + "uuid": "824e4eb5-d326-4d65-b23d-166fae297cb3", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "a5ebf6e0-a773-4097-a04d-d804d1681f0e", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false }, { + "uuid": "3d8a5b8c-f414-45ad-94bc-ce998773d45d", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false }, { + "uuid": "60b6c2f9-8b1c-46d0-8b99-8868633fbed8", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false }, { - "createdAt": "2019-02-02", - "completed": "2020-03-04", - "initiated": "2019-12-24", - "ministryContact": "PAUCEK ARLO", + "uuid": "d2140955-a1a9-4fef-9523-d2d5950d465e", + "createdAt": "2022-07-13", + "completed": "2023-05-15", + "initiated": "2017-06-01", + "ministryContact": "KLOCKO LELIA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -80963,33 +91837,32 @@ ], "notationParticipants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "4ce61531-df39-410c-b47c-de3117cd21e4", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false }, { + "uuid": "89a177b7-e095-47e8-b20c-91c93d5a5adb", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { + "uuid": "a8a93892-c99a-4047-8d75-a0591db8406d", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2016-03-08", - "completed": "2014-10-24", - "initiated": "2017-04-04", - "ministryContact": "GORCZANY OTHA", + "uuid": "cb655aeb-3cec-478f-a8b0-37616d5c9bc3", + "createdAt": "2021-08-20", + "completed": "2019-04-04", + "initiated": "2018-08-02", + "ministryContact": "FRANEY SIDNEY", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -80998,34 +91871,67 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", + "uuid": "0f3d77a8-008c-4b14-aa3c-f079e6adadc5", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true }, { + "uuid": "18925a2e-3639-44c1-8dc3-9e52ba4f10d4", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { + "uuid": "61f7c89f-4240-4304-97be-6ddd415ca303", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false }, { + "uuid": "091e5189-c7e6-4a14-899f-a3adad52e18b", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "uuid": "241ef83e-17f5-4760-bc97-2584936d958f", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false + "role": "SUBMITTED BY", + "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true } ], "participants": [ { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2018-10-28", - "startDate": "2015-12-06", + "uuid": "3218da83-e7de-47ab-a8b3-ec9c4ed8e1cf", + "name": "AMET, DOLOR SIT", + "endDate": "2018-01-08", + "startDate": "2017-10-02", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "uuid": "46a9b8b1-29c8-4829-b464-9c20046ceb9b", + "name": "AMET, DOLOR SIT", + "endDate": "2023-05-30", + "startDate": "2019-03-15", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "uuid": "77eaefcc-2529-4ef0-a080-7710aa7fd433", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2019-02-25", + "startDate": "2019-12-01", "notes": "", "roles": [ "ORGANIZATION" @@ -81033,9 +91939,10 @@ "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2022-10-31", - "startDate": "2022-11-06", + "uuid": "ccc8e37c-0972-4233-8791-5b10691d9969", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2022-06-05", + "startDate": "2016-08-07", "notes": "", "roles": [ "EMPLOYEE" @@ -81043,123 +91950,139 @@ "siteRegistry": true }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2018-05-17", - "startDate": "2017-04-23", + "uuid": "26756fe6-ecee-4016-8170-1305745a4d61", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2014-02-11", + "startDate": "2019-03-27", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": false } ], "suspectLandUses": [ { + "uuid": "698647d5-1462-46ed-9e94-157c6fde8a59", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-07-07 (described on Site Profile dated 2022-07-07)", + "notes": "INSERTED FOR SITE PROFILE DATED 2016-12-29 (described on Site Profile dated 2016-12-29)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { + "uuid": "b7629b6c-7279-47b9-a95d-35ba2a73c00a", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-05-17 (described on Site Profile dated 2017-05-17)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "notes": "INSERTED FOR SITE PROFILE DATED 2018-04-06 (described on Site Profile dated 2018-04-06)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { + "uuid": "b684971c-8673-42ed-bce2-52511e13479b", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2020-06-07 (described on Site Profile dated 2020-06-07)", + "notes": "INSERTED FOR SITE PROFILE DATED 2019-09-24 (described on Site Profile dated 2019-09-24)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "uuid": "78d1ac86-7688-4176-b790-21768641a755", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2020-07-20 (described on Site Profile dated 2020-07-20)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "uuid": "d8bc1516-22c0-4553-890f-c2bdf22ba28b", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2019-07-25 (described on Site Profile dated 2019-07-25)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], "parcelDescriptions": [ { + "uuid": "1ac11363-f0ff-410e-8430-d00b4548988c", "siteRegistry": false, - "dateNoted": "2016-07-12", - "parcelID": "20360", - "crownLandUsePIN": "16791", - "crownLandFileNumber": "18062", - "landDescription": "LOT 1 OF LOT 3 BLOCK 1 DISTRICT LOT 1 PLAN 6381" - }, - { - "siteRegistry": false, - "dateNoted": "2018-04-26", - "parcelID": "17547", - "crownLandUsePIN": "18783", - "crownLandFileNumber": "20400", - "landDescription": "LOT 3 OF LOT 3 BLOCK 2 DISTRICT LOT 4 PLAN 8348" + "dateNoted": "2018-11-09", + "parcelID": "17745", + "crownLandUsePIN": "17823", + "crownLandFileNumber": "16314", + "landDescription": "LOT 3 OF LOT 4 BLOCK 2 DISTRICT LOT 4 PLAN 7604" }, { + "uuid": "c00e3f87-4ac0-4ff7-9679-948806afc85a", "siteRegistry": true, - "dateNoted": "2014-06-19", - "parcelID": "20481", - "crownLandUsePIN": "19419", - "crownLandFileNumber": "19185", - "landDescription": "LOT 3 OF LOT 5 BLOCK 1 DISTRICT LOT 2 PLAN 7401" + "dateNoted": "2022-04-18", + "parcelID": "15267", + "crownLandUsePIN": "15801", + "crownLandFileNumber": "18442", + "landDescription": "LOT 4 OF LOT 4 BLOCK 2 DISTRICT LOT 3 PLAN 8906" }, { + "uuid": "f7a11b55-2582-44e6-92d4-dc1eb18ce9de", "siteRegistry": true, - "dateNoted": "2017-01-28", - "parcelID": "19843", - "crownLandUsePIN": "17912", - "crownLandFileNumber": "20704", - "landDescription": "LOT 2 OF LOT 4 BLOCK 3 DISTRICT LOT 1 PLAN 5408" - }, - { - "siteRegistry": false, - "dateNoted": "2016-09-06", - "parcelID": "20274", - "crownLandUsePIN": "15669", - "crownLandFileNumber": "20343", - "landDescription": "LOT 1 OF LOT 5 BLOCK 4 DISTRICT LOT 3 PLAN 5646" + "dateNoted": "2019-08-18", + "parcelID": "17036", + "crownLandUsePIN": "15625", + "crownLandFileNumber": "16070", + "landDescription": "LOT 3 OF LOT 5 BLOCK 5 DISTRICT LOT 3 PLAN 5077" } ], "siteDisclosures": [ { + "uuid": "003b3a4e-5037-4566-a67f-745bee28db14", "siteRegistry": true, - "dateReceived": "2019-11-08", - "dateCompleted": "2016-09-15", - "dateEntered": "2017-04-22", - "dateRegistrar": "2015-12-02", - "dateLocalAuthorityReceived": "2015-07-22", - "summary": "Ducimus dolores tenetur corporis architecto nobis quas.", - "informationUsed": "Corporis culpa quo consequuntur aut unde repellendus.\nPorro adipisci itaque odio ut voluptatibus.\nEligendi quod minima quis dolor perferendis recusandae impedit ipsum necessitatibus.\nInventore eveniet facilis laudantium exercitationem cumque numquam nihil illo maxime.", - "pastOrPresentOrders": "Facere facere in explicabo deleniti illo eaque dolore velit.\nAutem ad nihil quam itaque.", + "dateReceived": "2022-08-19", + "dateCompleted": "2022-04-04", + "dateEntered": "2022-07-27", + "dateRegistrar": "2022-03-25", + "dateLocalAuthorityReceived": "2018-05-31", + "summary": "Odio autem harum deleniti dolorem quam temporibus labore ullam.", + "informationUsed": "Expedita facere incidunt aspernatur nesciunt doloribus totam.\nSed quibusdam distinctio sunt dolorum quaerat dolor ut.\nSed enim in velit sit molestias.\nPorro quasi fugiat a quo reprehenderit.", + "pastOrPresentOrders": "Fugiat aspernatur error dignissimos quo recusandae explicabo ipsum.", "commercialAndIndustrialPurposes": [ { - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "uuid": "c65becff-30a8-4385-bd54-d5add042e047", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, { + "uuid": "7ed072fc-8f53-423d-8046-63eeb06036ba", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false + "siteRegistry": true } ] }, { + "uuid": "dcf82d37-a76b-489e-aa98-6e50989e0c49", "siteRegistry": false, - "dateReceived": "2015-11-27", - "dateCompleted": "2019-04-06", - "dateEntered": "2016-08-05", - "dateRegistrar": "2021-05-26", - "dateLocalAuthorityReceived": "2018-04-01", - "summary": "Laboriosam aperiam maiores voluptatum perspiciatis.\nRepudiandae asperiores impedit non autem debitis dignissimos nam qui saepe.", - "informationUsed": "Animi in explicabo illum.\nTemporibus perferendis voluptatum recusandae natus quod fugiat mollitia.\nNihil quas molestias deleniti veniam unde velit quos.", - "pastOrPresentOrders": "Vero consequatur ullam reiciendis voluptates.\nLaudantium nihil accusantium et quam.", + "dateReceived": "2020-11-04", + "dateCompleted": "2013-10-24", + "dateEntered": "2016-10-17", + "dateRegistrar": "2015-03-27", + "dateLocalAuthorityReceived": "2023-01-31", + "summary": "Molestiae voluptatum tenetur modi amet quaerat natus porro blanditiis tenetur.\nVoluptas exercitationem corporis similique minima vero iusto accusamus commodi.", + "informationUsed": "Laborum facilis explicabo eligendi nulla enim doloribus ullam illo nobis.\nEt minus quasi nobis facere at et maxime dolorum commodi.\nMollitia quaerat repudiandae similique vel ullam consequuntur.", + "pastOrPresentOrders": "Rem sed iure perspiciatis.\nAccusamus expedita quam totam.\nAlias non provident velit recusandae dolorum.", "commercialAndIndustrialPurposes": [ { - "scheduleReference": "F2*", + "uuid": "dfde239f-d5e2-46f2-b8ab-157fcbf13f6a", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true + "siteRegistry": false }, { + "uuid": "01d4fb64-99c7-41b5-867f-b0a58f0f3442", "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "uuid": "025320d2-d7d8-42ab-b263-15b26cc3f400", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, { + "uuid": "38ee770d-738c-4844-92d5-aff2e4938384", "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false } ] @@ -81167,108 +92090,121 @@ ], "activityLog": [ { + "uuid": "9f04dbf6-5eed-4c64-a545-63b877e2ddde", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "PARKER ROSCOE", - "timestamp": "2014-01-22" + "user": "BREITENBERG LANCE", + "timestamp": "2018-02-05" }, { + "uuid": "07ef94ea-6b59-4912-818b-ef1f6a5ccf66", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "KONOPELSKI LILLIANA", - "timestamp": "2014-04-14" + "user": "HOWELL OMA", + "timestamp": "2020-11-23" }, { + "uuid": "12e2f223-81c0-4ada-beca-91f0c435acf9", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "ROBEL HOLLIS", - "timestamp": "2016-02-16" + "user": "GRADY PERCIVAL", + "timestamp": "2015-03-24" }, { + "uuid": "cdb0e54c-cde3-4f75-8085-cfc8d725f86e", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "HERMANN DEVAN", - "timestamp": "2023-01-10" + "user": "WYMAN LACEY", + "timestamp": "2013-12-05" }, { - "siteRegistry": false, + "uuid": "a6de3451-759d-4600-b535-077b8ef23959", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "LEDNER ALVERA", - "timestamp": "2019-11-01" + "user": "SCHOWALTER ROGERS", + "timestamp": "2020-10-27" }, { - "siteRegistry": false, + "uuid": "3499aebf-4a65-46ae-a626-564b474502ab", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "REICHERT MILLIE", - "timestamp": "2023-09-28" + "user": "DOUGLAS VERONA", + "timestamp": "2015-12-07" }, { + "uuid": "4ec1fd48-d978-434f-b9b5-dcdb671018ab", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "GLEASON MARY", - "timestamp": "2020-12-13" + "user": "LANGWORTH PEARL", + "timestamp": "2022-07-26" }, { + "uuid": "b0b41ead-8732-4bc6-8ee5-c688b588f2ba", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "DIETRICH MAE", - "timestamp": "2016-01-08" + "user": "BERGSTROM ELVERA", + "timestamp": "2017-09-07" }, { + "uuid": "58b1fd0c-de88-420a-b086-f7611a3653b9", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "ABERNATHY MARGARETTA", - "timestamp": "2014-04-30" + "user": "BOGAN-LANGWORTH ADAM", + "timestamp": "2020-01-19" }, { + "uuid": "fdb6dd16-7c68-4f95-a32c-8a002f15be0c", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "HARRIS ERIBERTO", - "timestamp": "2021-05-18" + "user": "STROMAN REYES", + "timestamp": "2023-08-09" } ], "associatedSites": [ { - "dateNoted": "2021-07-28", + "uuid": "544dcd61-ae59-42c7-819a-dc6b81e3f776", + "dateNoted": "2016-02-16", "notes": "", - "parcelID": "16953", - "siteID": "19583", + "parcelID": "17101", + "siteID": "18806", "siteRegistry": true }, { - "dateNoted": "2017-08-02", + "uuid": "c1d1eed7-90ec-4e98-b015-a344c06a157d", + "dateNoted": "2017-12-17", "notes": "", - "parcelID": "17145", - "siteID": "18928", + "parcelID": "17430", + "siteID": "18336", "siteRegistry": false } ] }, { - "uuid": "f12d9908-370e-4e4b-b674-93bb455f01cc", - "siteID": 19902, - "address": "205 Jerde Ridge", - "latitude": 58.2841, - "longitude": -122.364, - "lastUpdated": "2019-01-17", - "city": "East Arch", - "region": "Kootenay", - "victoriaFile": "26250-20/8423", + "uuid": "f1e8b9be-6107-4058-ab62-6f230736c0af", + "siteID": 17685, + "address": "977 Ashley Isle", + "latitude": 50.9848, + "longitude": -125.8874, + "lastUpdated": "2021-09-06", + "city": "South Abbigail", + "region": " North Coast", + "victoriaFile": "26250-20/17763", "regionalFile": "N/A", "parcelIDs": [ - 4821680, - 5138425, - 1906497, - 869422, - 7616199 + 6124454, + 9463412, + 878411, + 2913626, + 8217567 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "createdAt": "2017-05-06", - "completed": "2021-01-01", - "initiated": "2023-02-13", - "ministryContact": "JACOBI AMY", + "uuid": "ba8fffbb-8b60-410b-b4e8-52bf5ee73458", + "createdAt": "2023-06-17", + "completed": "2021-06-02", + "initiated": "2017-07-18", + "ministryContact": "STARK LINA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -81277,23 +92213,26 @@ ], "notationParticipants": [ { + "uuid": "5f03ece7-d46f-4f5d-b0f5-b367241ee749", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false }, { + "uuid": "85e5bfd9-b198-48f1-8725-6ec422f412ef", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true }, { - "createdAt": "2016-02-07", - "completed": "2015-01-31", - "initiated": "2022-04-22", - "ministryContact": "OLSON ELOISE", + "uuid": "d1626c3a-5a61-41dc-9a98-45e8ba162b19", + "createdAt": "2015-08-27", + "completed": "2021-04-03", + "initiated": "2013-12-01", + "ministryContact": "MARQUARDT CARMINE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -81302,69 +92241,95 @@ ], "notationParticipants": [ { - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { + "uuid": "88338805-de54-42ed-ba79-2ce17649691e", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { + "uuid": "07d868e8-03b6-4653-8a90-8465dece2a0d", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true }, { + "uuid": "c680321c-eec6-4f99-9f96-096b65c823c3", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { + "uuid": "c24061b1-f18c-450b-975c-4c87ad5cfc34", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "87be1158-3d7f-493a-a011-5429e7712db8", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "uuid": "c7cc2dcd-6cc6-44ee-a35b-23e0d2c0886d", + "createdAt": "2017-11-23", + "completed": "2019-04-21", + "initiated": "2021-05-22", + "ministryContact": "HETTINGER GARRETT", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "uuid": "8d1bb83d-a34f-45d4-86e7-dffed0301991", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": true + }, + { + "uuid": "5b93197b-c747-4b73-931c-f47045d4c5d0", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true } ], "participants": [ { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2021-10-08", - "startDate": "2018-04-09", + "uuid": "17330c49-a2d4-4d70-90bd-6a65c2c97395", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2021-12-27", + "startDate": "2014-08-25", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": true }, { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2016-11-22", - "startDate": "2019-01-20", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": false - }, - { - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2015-09-16", - "startDate": "2022-01-29", + "uuid": "77c1abd2-f178-4c8c-83fa-1dbc6878a00b", + "name": "IPSUM", + "endDate": "2019-07-16", + "startDate": "2019-06-20", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": false + "siteRegistry": true }, { - "name": "AMET, DOLOR SIT", - "endDate": "2023-05-23", - "startDate": "2020-12-31", + "uuid": "3b9faa36-347e-400f-921b-eb01dc624856", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2016-10-08", + "startDate": "2013-11-02", "notes": "", "roles": [ "EMPLOYEE" @@ -81372,9 +92337,10 @@ "siteRegistry": false }, { - "name": "SHELL CANADA PRODUCTS", - "endDate": "2022-07-16", - "startDate": "2018-09-06", + "uuid": "7c1b124f-5db3-43ab-886b-95e7034f9808", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2015-03-26", + "startDate": "2023-05-31", "notes": "", "roles": [ "ORGANIZATION" @@ -81384,150 +92350,165 @@ ], "suspectLandUses": [ { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-09-06 (described on Site Profile dated 2022-09-06)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "uuid": "a5c99900-1bf9-4d02-9035-df2d4d2a632a", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2016-01-08 (described on Site Profile dated 2016-01-08)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { + "uuid": "cf76b72d-5b1a-4271-817d-f3a39db3b957", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-02-03 (described on Site Profile dated 2019-02-03)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "notes": "INSERTED FOR SITE PROFILE DATED 2016-07-05 (described on Site Profile dated 2016-07-05)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { + "uuid": "d84e17e2-63e3-4489-a969-5a6fa8fc1f76", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-10-24 (described on Site Profile dated 2022-10-24)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "notes": "INSERTED FOR SITE PROFILE DATED 2023-03-12 (described on Site Profile dated 2023-03-12)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-03-24 (described on Site Profile dated 2017-03-24)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "uuid": "3b615c03-289a-4eaf-8af2-e513e9abea07", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2018-06-10 (described on Site Profile dated 2018-06-10)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], "parcelDescriptions": [ { - "siteRegistry": true, - "dateNoted": "2015-04-06", - "parcelID": "18879", - "crownLandUsePIN": "18587", - "crownLandFileNumber": "15570", - "landDescription": "LOT 2 OF LOT 5 BLOCK 3 DISTRICT LOT 3 PLAN 6137" + "uuid": "a3d5307f-ef56-4df4-a9de-0a74f27a739d", + "siteRegistry": false, + "dateNoted": "2022-06-13", + "parcelID": "17664", + "crownLandUsePIN": "16979", + "crownLandFileNumber": "17048", + "landDescription": "LOT 4 OF LOT 4 BLOCK 1 DISTRICT LOT 5 PLAN 6928" }, { - "siteRegistry": false, - "dateNoted": "2023-09-14", - "parcelID": "19204", - "crownLandUsePIN": "16960", - "crownLandFileNumber": "19212", - "landDescription": "LOT 3 OF LOT 4 BLOCK 5 DISTRICT LOT 5 PLAN 5067" + "uuid": "22588a18-b48c-44d1-b9ae-d3363f225c33", + "siteRegistry": true, + "dateNoted": "2017-05-29", + "parcelID": "19995", + "crownLandUsePIN": "16065", + "crownLandFileNumber": "17295", + "landDescription": "LOT 3 OF LOT 1 BLOCK 1 DISTRICT LOT 5 PLAN 3442" } ], "siteDisclosures": [ { + "uuid": "3d6d84c7-5c7b-4d2c-a460-b8bddc98cac2", "siteRegistry": false, - "dateReceived": "2019-05-25", - "dateCompleted": "2017-01-31", - "dateEntered": "2014-10-19", - "dateRegistrar": "2016-11-25", - "dateLocalAuthorityReceived": "2019-03-22", - "summary": "Ipsa accusantium unde iste nulla dolores quidem quidem.\nIste tempore necessitatibus pariatur.\nId temporibus corporis veritatis ex assumenda esse eveniet veniam.", - "informationUsed": "Inventore aliquam expedita porro itaque vitae eum quidem.\nReiciendis ipsum nam assumenda sint.\nIllo maiores dolore saepe molestias libero ea exercitationem deserunt.", - "pastOrPresentOrders": "Eos pariatur est incidunt nostrum ullam velit distinctio.\nExercitationem consequatur quaerat totam.\nItaque fuga consequuntur odit ipsa.", + "dateReceived": "2023-04-23", + "dateCompleted": "2014-05-22", + "dateEntered": "2015-02-19", + "dateRegistrar": "2017-05-07", + "dateLocalAuthorityReceived": "2019-05-05", + "summary": "Sapiente occaecati hic impedit.", + "informationUsed": "Voluptatibus aut saepe.\nIure eligendi perspiciatis illo tempora dicta numquam eum blanditiis beatae.\nPraesentium error dolores officia quae ad.", + "pastOrPresentOrders": "Laborum repellat saepe reprehenderit eius debitis minima.\nExercitationem numquam vitae temporibus omnis iusto.\nOptio iste totam nam.", "commercialAndIndustrialPurposes": [ { + "uuid": "f3d4c8d7-1421-4312-8e7b-74923898b8e6", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false - }, - { - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { - "scheduleReference": "F1*", + "uuid": "e234f19f-12fc-45f9-94f7-2aac12d14f01", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true - } - ] - }, - { - "siteRegistry": true, - "dateReceived": "2013-11-06", - "dateCompleted": "2014-11-18", - "dateEntered": "2022-09-26", - "dateRegistrar": "2019-08-08", - "dateLocalAuthorityReceived": "2023-09-02", - "summary": "Temporibus consequatur quos ea excepturi nisi dolorem.\nQuidem nisi sequi.\nEligendi ad corporis consequuntur nulla asperiores eius.", - "informationUsed": "Quos delectus voluptatum esse.\nSint quod dolor possimus temporibus corrupti omnis sapiente excepturi.\nNihil mollitia sit similique sequi dolorum optio.", - "pastOrPresentOrders": "Tempore dolore saepe incidunt quia natus cum.\nMolestias sunt nemo eligendi.", - "commercialAndIndustrialPurposes": [ + "siteRegistry": false + }, { - "scheduleReference": "F1*", + "uuid": "195c9768-cec9-46d0-b823-f28f8392912c", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false }, { + "uuid": "aced7c7f-f3ad-46d7-853c-147b5df92b34", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false + "siteRegistry": true } ] } ], "activityLog": [ { - "siteRegistry": false, + "uuid": "caa8caea-4fb2-453e-8310-b3194097191a", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "BECHTELAR EDWARD", - "timestamp": "2015-03-10" + "user": "ZBONCAK KEYON", + "timestamp": "2016-10-29" }, { - "siteRegistry": false, + "uuid": "2af4a56c-e610-4f3d-a418-062510c475e7", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "SPENCER WADE", + "timestamp": "2017-12-14" + }, + { + "uuid": "7ffff999-5d79-422c-8f1d-82b9c3e1bf2d", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "POUROS HILLARY", - "timestamp": "2023-07-06" + "user": "HETTINGER MICHAEL", + "timestamp": "2017-08-24" }, { + "uuid": "8508e4ae-1871-4f49-bdf3-c2a971a791c2", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "LEBSACK MYRTIS", - "timestamp": "2023-03-17" + "user": "SWIFT JULIUS", + "timestamp": "2019-02-12" }, { + "uuid": "d7013774-b172-44c9-8065-2ee0b7870a68", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "WALSH DAMON", - "timestamp": "2023-03-26" + "user": "PAUCEK LAVERNA", + "timestamp": "2015-02-08" }, { + "uuid": "1f8d64c3-7d67-40a7-9eba-671d7bf459d4", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "LUETTGEN KESHAWN", - "timestamp": "2021-12-21" + "user": "BRAKUS ERNESTO", + "timestamp": "2020-08-11" + }, + { + "uuid": "81be86eb-3ace-4635-944b-fa92358f3402", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "HUELS ARVILLA", + "timestamp": "2015-01-26" } ], "associatedSites": [ { - "dateNoted": "2015-12-16", + "uuid": "d805736a-7c50-429a-b2f4-aeee2a56b8af", + "dateNoted": "2019-12-19", "notes": "", - "parcelID": "18907", - "siteID": "19847", - "siteRegistry": true + "parcelID": "18144", + "siteID": "16651", + "siteRegistry": false }, { - "dateNoted": "2016-08-25", + "uuid": "bd20199e-c3ee-4b46-ac82-c0676d957366", + "dateNoted": "2023-10-06", "notes": "", - "parcelID": "18886", - "siteID": "20268", - "siteRegistry": false + "parcelID": "20516", + "siteID": "20933", + "siteRegistry": true }, { - "dateNoted": "2013-12-18", + "uuid": "1d7a0f8c-3deb-48c0-991b-d288e47622dd", + "dateNoted": "2015-12-16", "notes": "", - "parcelID": "17295", - "siteID": "15758", - "siteRegistry": false + "parcelID": "16424", + "siteID": "19196", + "siteRegistry": true } ] } From 15016b4b18733ab85c29f28cb43cfa803e308b7c Mon Sep 17 00:00:00 2001 From: Adam Coard Date: Wed, 11 Oct 2023 15:20:19 -0700 Subject: [PATCH 144/194] FormatLatLng on search --- frontend/site-search-frontend/src/pages/search.tsx | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/frontend/site-search-frontend/src/pages/search.tsx b/frontend/site-search-frontend/src/pages/search.tsx index fba75ce8..ef663781 100644 --- a/frontend/site-search-frontend/src/pages/search.tsx +++ b/frontend/site-search-frontend/src/pages/search.tsx @@ -9,6 +9,7 @@ import SimpleSearchResults from '@/features/simple-search/search-results'; import './search.css'; import SearchToggle from '@/features/simple-search/search-toggle'; import { RootState } from '@/store'; +import { formatLatLng } from '@/helpers/formatLatLng'; @@ -95,8 +96,8 @@ export default function SearchPage() { // And search remaining cols if nothing selected: if (nothingSelected) { - resultCollection.push(String(site.latitude).includes(query)) - resultCollection.push(String(site.longitude).includes(query)) + resultCollection.push(formatLatLng(site.latitude).includes(query)) + resultCollection.push(formatLatLng(site.longitude).includes(query)) } // console.log('sites.filter', { searchBySiteID, searchByCity, searchByRegion, resultCollection, nothingSelected, site }) From 3d9bb031ec033c87cecfc1ca434992c5342b7375 Mon Sep 17 00:00:00 2001 From: Adam Coard Date: Wed, 11 Oct 2023 15:20:37 -0700 Subject: [PATCH 145/194] Deletions working better on site details table --- .../src/features/site-details/site-profile.tsx | 14 +++++++++++++- .../site-details/table/SiteDetailsTable.tsx | 2 +- 2 files changed, 14 insertions(+), 2 deletions(-) diff --git a/frontend/site-search-frontend/src/features/site-details/site-profile.tsx b/frontend/site-search-frontend/src/features/site-details/site-profile.tsx index dd57e659..7beea92e 100644 --- a/frontend/site-search-frontend/src/features/site-details/site-profile.tsx +++ b/frontend/site-search-frontend/src/features/site-details/site-profile.tsx @@ -28,7 +28,7 @@ export default function SiteProfile() { {editMode && } {site.siteDisclosures.map((siteDisclosureData, index) => { - return + return })}
) @@ -72,6 +72,18 @@ function SiteDisclosureItem({ index, disclosure }: SiteDisclosureItemProps) { ]} data={disclosure.commercialAndIndustrialPurposes} /> + +
+

IV Additional Comments and Explanations

+ + {/* TODO - Make these TextAreas */} + {/* Can create SiteGridTextAreaItem */} + {/* Or can create */} + {/* Can even combine? Leaning towards renderer option. */} + + + +
) diff --git a/frontend/site-search-frontend/src/features/site-details/table/SiteDetailsTable.tsx b/frontend/site-search-frontend/src/features/site-details/table/SiteDetailsTable.tsx index 0f1e68ee..1766e784 100644 --- a/frontend/site-search-frontend/src/features/site-details/table/SiteDetailsTable.tsx +++ b/frontend/site-search-frontend/src/features/site-details/table/SiteDetailsTable.tsx @@ -129,7 +129,7 @@ export default function SiteDetailsTable({ onClickAdd, headers, data, label, onC {editMode && handleCheck({ index, event })} /> } - {headers?.map((header, index) => )} + {headers?.map((header, index) => )} {editMode && } ) From 959a7d32aad509b116e57902dbc6dabc78a402bc Mon Sep 17 00:00:00 2001 From: Adam Coard Date: Wed, 11 Oct 2023 15:38:45 -0700 Subject: [PATCH 146/194] Auto header check --- .../features/site-details/table/SiteDetailsTable.tsx | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/frontend/site-search-frontend/src/features/site-details/table/SiteDetailsTable.tsx b/frontend/site-search-frontend/src/features/site-details/table/SiteDetailsTable.tsx index 1766e784..71f6c5bc 100644 --- a/frontend/site-search-frontend/src/features/site-details/table/SiteDetailsTable.tsx +++ b/frontend/site-search-frontend/src/features/site-details/table/SiteDetailsTable.tsx @@ -4,7 +4,7 @@ import { Button, Form, Table, ToggleButton } from 'react-bootstrap' import { useSelector } from 'react-redux'; import { TableEditItem } from '../TableEditItem'; import { SiteRegistryIconButton } from '@/components/SiteRegistryIcon'; -import { useState } from 'react'; +import { useEffect, useState } from 'react'; interface SiteDetailsTableProps { onClickAdd?; @@ -27,6 +27,7 @@ interface SiteDetailsTableProps { export default function SiteDetailsTable({ onClickAdd, headers, data, label, onClickRemove }: SiteDetailsTableProps) { const editMode = useSelector((state: RootState) => state.edit.editMode); const [checked, setChecked] = useState<{ [key: string]: boolean }>(initializeCheckedObject(false)); + const [headerChecked, setHeaderChecked] = useState(false); const [SRCheck, setSRChecks] = useState(copySiteRegistryToState()); @@ -51,12 +52,17 @@ export default function SiteDetailsTable({ onClickAdd, headers, data, label, onC // } function handleCheck({ index, event }) { - // console.log('handleCheck', { index, event, checked }) const newCheck = { ...checked } newCheck[index] = event.target.checked setChecked(newCheck) } + // If the user manually selects all checkboxes, the header should auto-toggle and vice versa. + useEffect(() => { + const allChecked = getSelection().length === Object.keys(checked).length + setHeaderChecked(allChecked); + }, [checked]) + function handleRemove(val) { // Manually unselect all checkboxes after user deletes, otherwise selection kinda ghosts to // other entries which now share that indice @@ -116,7 +122,7 @@ export default function SiteDetailsTable({ onClickAdd, headers, data, label, onC - {editMode && } + {editMode && } {headers?.map((header, index) => )} {editMode && } From 622a5ed4d9202b7a2f6b8c782758b3243f387fd0 Mon Sep 17 00:00:00 2001 From: midhun-aot Date: Wed, 11 Oct 2023 16:00:32 -0700 Subject: [PATCH 147/194] add extra validations on conditional tab --- ... Ecological Risk Assessment Checklist.json | 213 +++++++++--------- 1 file changed, 107 insertions(+), 106 deletions(-) diff --git a/forms-flow-ai/epd-forms/bundling/Detailed Ecological Risk Assessment Checklist.json b/forms-flow-ai/epd-forms/bundling/Detailed Ecological Risk Assessment Checklist.json index 12aba115..f12b7159 100644 --- a/forms-flow-ai/epd-forms/bundling/Detailed Ecological Risk Assessment Checklist.json +++ b/forms-flow-ai/epd-forms/bundling/Detailed Ecological Risk Assessment Checklist.json @@ -1696,27 +1696,77 @@ }, { "label": "Notes", + "labelPosition": "top", + "description": "", + "tooltip": "", + "customClass": "", + "tabindex": "", + "openWhenEmpty": false, + "disableAddingRemovingRows": false, + "conditionalAddButton": "", + "hidden": false, "hideLabel": true, + "autofocus": false, + "disabled": false, "tableView": false, + "modalEdit": false, "templates": { "header": "{% console.log(\"row-key header\",'commentFor',row['commentFor']) %}\r\n{% const UserDetails = JSON.parse(localStorage.getItem(\"UserDetails\"))%}\r\n{% const groups = UserDetails[\"groups\"]; %}\r\n\r\n{% if(groups.includes(\"/formsflow/formsflow-client\") || groups.includes(\"/formsflow/formsflow-reviewer/csap\") || groups.includes(\"/formsflow/formsflow-reviewer/csap-society\")){ %}\r\n\r\n
\r\n {% util.eachComponent(components, function(component) { %}\r\n {% if (displayValue(component) && component.key !== 'commentFor' ) { %}\r\n {% if(component.label === 'Notes') { %}\r\n
{{ t(component.label) }}
\r\n {% } else if(component.key !== 'comments') { %}\r\n
{{ t(component.label) }}
\r\n {% } %}\r\n {% } %}\r\n {% }) %}\r\n
\r\n\r\n{% } else { %}\r\n\r\n
\r\n {% util.eachComponent(components, function(component) { %}\r\n {% if (displayValue(component)) { %}\r\n {% if(component.key == 'comments') { %}\r\n
{{ t(component.label)}}
\r\n {% } else if(component.key == 'role' || component.key == 'createdBy') { %}\r\n
{{ t(component.label)}}
\r\n{% } else { %}\r\n
{{ t(component.label)}}
\r\n{% } %} \r\n {% } %}\r\n {% }) %}\r\n
\r\n\r\n{% } %}", - "row": "\r\n\r\n{% console.log(\"row-key main 22\",'commentFor',row['commentFor'],row) %}\r\n{% const UserDetails = JSON.parse(localStorage.getItem(\"UserDetails\"))%}\r\n{% const groups = UserDetails[\"groups\"]; %}\r\n{% console.log('rendering edit grid body')%}\r\n{% if((groups.includes(\"/formsflow/formsflow-reviewer/formsflow-client-reviewer\") || groups.includes(\"/formsflow/formsflow-client\") || groups.includes(\"/formsflow/formsflow-reviewer/csap\") || groups.includes(\"/formsflow/formsflow-reviewer/csap-society\")) && row['commentFor']==='external'){ %}\r\n\r\n\r\n\r\n
\r\n\r\n {% util.eachComponent(components, function(component) { %}\r\n {% if (displayValue(component) && component.key !== 'commentFor' ) { %}\r\n {% console.log(\"row-key\",component.key,row[component.key]) %}\r\n {% const UserDetails = JSON.parse(localStorage.getItem(\"UserDetails\"))%}\r\n{% const groups = UserDetails[\"groups\"]; %}\r\n{% if((groups.includes(\"/formsflow/formsflow-reviewer/formsflow-client-reviewer\") || groups.includes(\"/formsflow/formsflow-client\") || groups.includes(\"/formsflow/formsflow-reviewer/csap\") || groups.includes(\"/formsflow/formsflow-reviewer/csap-society\")) && row['commentFor']==='external'){ %}\r\n{% if(component.key == 'comments') { %}\r\n
\r\n {{ getView(component, row[component.key])}}\r\n
\r\n{% } else { %}\r\n
\r\n {{ getView(component, row[component.key])}}\r\n
\r\n{%}%}\r\n \r\n\r\n {% } %}\r\n {% } %}\r\n {% }) %}\r\n {% if (!instance.options.readOnly && !instance.disabled) { %}\r\n {% const UserDetails = JSON.parse(localStorage.getItem(\"UserDetails\"))%}\r\n{% const groups = UserDetails[\"groups\"]; %}\r\n{% if((groups.includes(\"/formsflow/formsflow-reviewer/formsflow-client-reviewer\") || groups.includes(\"/formsflow/formsflow-client\") || groups.includes(\"/formsflow/formsflow-reviewer/csap\") || groups.includes(\"/formsflow/formsflow-reviewer/csap-society\")) && row['commentFor']==='external'){ %}\r\n
\r\n
\r\n {% if (!instance.hasRemoveButtons || instance.hasRemoveButtons()) { %}\r\n \r\n {% } %}\r\n
\r\n
\r\n \r\n {% } %}\r\n {% } %}\r\n
\r\n {% } else if (groups.includes(\"/formsflow/formsflow-reviewer/cssa-manager\") || groups.includes(\"/formsflow/formsflow-reviewer/cssa-team\") || groups.includes(\"/formsflow/formsflow-reviewer/caseworker\") || groups.includes(\"/formsflow/formsflow-reviewer/sdm\")) { %}\r\n
\r\n {% util.eachComponent(components, function(component) { %}\r\n {% console.log('for sia') %}\r\n {% if (displayValue(component)) { %}\r\n {% if(component.key == 'comments') { %}\r\n
{{ getView(component, row[component.key])}}
\r\n {% } else if(component.key == 'role' || component.key == 'createdBy') { %}\r\n
{{ getView(component, row[component.key])}}
\r\n{% } else { %}\r\n
{{ getView(component, row[component.key])}}
\r\n{% } %} \r\n \r\n {% } %}\r\n {% }) %}\r\n {% if (!instance.options.readOnly && !instance.disabled) { %}\r\n
\r\n
\r\n {% if (!instance.hasRemoveButtons || instance.hasRemoveButtons()) { %}\r\n \r\n {% } %}\r\n
\r\n
\r\n {% } %}\r\n
\r\n {% } %}\r\n \r\n \r\n \r\n{% const emptyElements = []; %}\r\n{% const elements = document.getElementsByClassName(\"list-group-item\"); %}\r\n{% for (let i = 0; i < elements.length; i++) { %}\r\n{% const element = elements[i]; %}\r\n{% if(element.querySelectorAll('div.row').length===0){(element).remove() }} %}", - "footer": "{% const emptyElements = []; %}\r\n{% const elements = document.getElementsByClassName(\"list-group-item\"); %}\r\n{% for (let i = 0; i < elements.length; i++) { %}\r\n{% const element = elements[i]; %}\r\n{%if(element.querySelectorAll('div.row').length===0){(element).remove() }} %}\r\n", "tableHeader": "\n
\n {% util.eachComponent(components, function(component) { %}\n {% if (!component.hasOwnProperty('tableView') || component.tableView) { %}\n \n {% } %}\n {% }) %}\n {% if (!instance.options.readOnly && !instance.disabled) { %}\n \n {% } %}\n \n ", - "tableRow": "\n {% util.eachComponent(components, function(component) { %}\n {% if (!component.hasOwnProperty('tableView') || component.tableView) { %}\n \n {% } %}\n {% }) %}\n {% if (!instance.options.readOnly && !instance.disabled) { %}\n \n {% } %}\n " + "row": "\r\n\r\n{% console.log(\"row-key main 22\",'commentFor',row['commentFor'],row) %}\r\n{% const UserDetails = JSON.parse(localStorage.getItem(\"UserDetails\"))%}\r\n{% const groups = UserDetails[\"groups\"]; %}\r\n{% console.log('rendering edit grid body')%}\r\n{% if((groups.includes(\"/formsflow/formsflow-reviewer/formsflow-client-reviewer\") || groups.includes(\"/formsflow/formsflow-client\") || groups.includes(\"/formsflow/formsflow-reviewer/csap\") || groups.includes(\"/formsflow/formsflow-reviewer/csap-society\")) && row['commentFor']==='external'){ %}\r\n\r\n\r\n\r\n
\r\n\r\n {% util.eachComponent(components, function(component) { %}\r\n {% if (displayValue(component) && component.key !== 'commentFor' ) { %}\r\n {% console.log(\"row-key\",component.key,row[component.key]) %}\r\n {% const UserDetails = JSON.parse(localStorage.getItem(\"UserDetails\"))%}\r\n{% const groups = UserDetails[\"groups\"]; %}\r\n{% if((groups.includes(\"/formsflow/formsflow-reviewer/formsflow-client-reviewer\") || groups.includes(\"/formsflow/formsflow-client\") || groups.includes(\"/formsflow/formsflow-reviewer/csap\") || groups.includes(\"/formsflow/formsflow-reviewer/csap-society\")) && row['commentFor']==='external'){ %}\r\n{% if(component.key == 'comments') { %}\r\n
\r\n {{ getView(component, row[component.key])}}\r\n
\r\n{% } else { %}\r\n
\r\n {{ getView(component, row[component.key])}}\r\n
\r\n{%}%}\r\n \r\n\r\n {% } %}\r\n {% } %}\r\n {% }) %}\r\n {% if (!instance.options.readOnly && !instance.disabled) { %}\r\n {% const UserDetails = JSON.parse(localStorage.getItem(\"UserDetails\"))%}\r\n{% const groups = UserDetails[\"groups\"]; %}\r\n{% if((groups.includes(\"/formsflow/formsflow-reviewer/formsflow-client-reviewer\") || groups.includes(\"/formsflow/formsflow-client\") || groups.includes(\"/formsflow/formsflow-reviewer/csap\") || groups.includes(\"/formsflow/formsflow-reviewer/csap-society\")) && row['commentFor']==='external'){ %}\r\n
\r\n
\r\n {% if (!instance.hasRemoveButtons || instance.hasRemoveButtons()) { %}\r\n \r\n {% } %}\r\n
\r\n
\r\n \r\n {% } %}\r\n {% } %}\r\n
\r\n {% } else if (groups.includes(\"/formsflow/formsflow-reviewer/cssa-manager\") || groups.includes(\"/formsflow/formsflow-reviewer/cssa-team\") || groups.includes(\"/formsflow/formsflow-reviewer/caseworker\") || groups.includes(\"/formsflow/formsflow-reviewer/sdm\")) { %}\r\n
\r\n {% util.eachComponent(components, function(component) { %}\r\n {% console.log('for sia') %}\r\n {% if (displayValue(component)) { %}\r\n {% if(component.key == 'comments') { %}\r\n
{{ getView(component, row[component.key])}}
\r\n {% } else if(component.key == 'role' || component.key == 'createdBy') { %}\r\n
{{ getView(component, row[component.key])}}
\r\n{% } else { %}\r\n
{{ getView(component, row[component.key])}}
\r\n{% } %} \r\n \r\n {% } %}\r\n {% }) %}\r\n {% if (!instance.options.readOnly && !instance.disabled) { %}\r\n
\r\n
\r\n {% if (!instance.hasRemoveButtons || instance.hasRemoveButtons()) { %}\r\n \r\n {% } %}\r\n
\r\n
\r\n {% } %}\r\n
\r\n {% } %}\r\n \r\n \r\n \r\n{% const emptyElements = []; %}\r\n{% const elements = document.getElementsByClassName(\"list-group-item\"); %}\r\n{% for (let i = 0; i < elements.length; i++) { %}\r\n{% const element = elements[i]; %}\r\n{% if(element.querySelectorAll('div.row').length===0){(element).remove() }} %}", + "tableRow": "\n {% util.eachComponent(components, function(component) { %}\n {% if (!component.hasOwnProperty('tableView') || component.tableView) { %}\n \n {% } %}\n {% }) %}\n {% if (!instance.options.readOnly && !instance.disabled) { %}\n \n {% } %}\n ", + "footer": "{% const emptyElements = []; %}\r\n{% const elements = document.getElementsByClassName(\"list-group-item\"); %}\r\n{% for (let i = 0; i < elements.length; i++) { %}\r\n{% const element = elements[i]; %}\r\n{%if(element.querySelectorAll('div.row').length===0){(element).remove() }} %}\r\n" }, + "rowClass": "", + "addAnother": "", + "modal": false, + "saveRow": "", + "removeRow": "Cancel", + "persistent": true, + "inlineEdit": false, + "protected": false, + "dbIndex": false, + "encrypted": false, + "redrawOn": "", + "clearOnHide": true, "customDefaultValue": "const emptyElements = [];\r\nconst elements = document.getElementsByClassName(\"list-group-item\");\r\nfor (let i = 0; i < elements.length; i++) {\r\nconst element = elements[i];\r\nif(element.querySelectorAll('div.row').length===0){(element).remove() }\r\n \r\n}", + "calculateValue": "", + "calculateServer": false, + "allowCalculateOverride": false, + "validateOn": "change", "validate": { - "custom": "const emptyElements = [];\r\nconst elements = document.getElementsByClassName(\"list-group-item\");\r\nfor (let i = 0; i < elements.length; i++) {\r\nconst element = elements[i];\r\n\r\nif(element.querySelectorAll('div.row').length===0){(element).remove() }\r\n \r\n}\r\n\r\n\r\nvar b =JSON.parse(localStorage.getItem('UserDetails'))\r\n\r\nif(b.groups.includes(\"/formsflow/formsflow-client\"))\r\n{\r\n\tif(document.querySelector(\"[ref='editgrid-deraNotes-addRow']\") != null)\r\n\t{\r\n\t\tdocument.querySelector(\"[ref='editgrid-deraNotes-addRow']\").remove();\r\n\t}\r\n\r\nvar editButtons = document.querySelectorAll('button.btn.btn-default.btn-light.btn-sm.editRow');\r\nif(editButtons!=null)\r\n{\r\n\tfor(i=0;ix.commentFor==='external').length > 0)\r\n show = true;\r\n else\r\n show = false;\r\n}\r\nelse\r\n{\r\n show = true;\r\n}\r\n\r\n\r\nvar addButton = document.querySelector(\"button[ref=editgrid-deraNotes-addRow]\");\r\nif(addButton!==null && addButton !== undefined)\r\n{\r\naddButton.addEventListener('click',\r\n(e)=>{\r\n\t\tif( groups.includes(\"/formsflow/formsflow-reviewer/csap\") || groups.includes(\"/formsflow/formsflow-reviewer/csap-society\"))\r\n\t\t{\r\n\t\t var internalRadio = document.querySelectorAll(\"input[value='internal'][type='radio']\");\r\n\t\t for (let i = 0; i < internalRadio.length; i++) {\r\n\t\t\tinternalRadio[i].parentElement.remove();\r\n\t\t }\r\n\t\t}\r\n})\r\n}\r\nconst emptyElements = [];\r\nconst elements = document.getElementsByClassName(\"list-group-item\");\r\nfor (let i = 0; i < elements.length; i++) {\r\nconst element = elements[i];\r\n\r\nif(element.querySelectorAll('div.row').length===0){(element).remove() }\r\n \r\n}\r\n", + "tags": [], + "properties": {}, + "conditional": { + "show": null, + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "\n\nshow = false;\n\nconst UserDetails = JSON.parse(localStorage.getItem(\"UserDetails\"))\nconst groups = UserDetails[\"groups\"];\nif((groups.includes(\"/formsflow/formsflow-client\") || groups.includes(\"/formsflow/formsflow-reviewer/formsflow-client-reviewer\")))\n{\n if(data.deraNotes && data.deraNotes.filter((x)=>x.commentFor==='external').length > 0)\n show = true;\n else\n show = false;\n}\nelse\n{\n show = true;\n}\n\n\nvar addButton = document.querySelector(\"button[ref=editgrid-deraNotes-addRow]\");\nif(addButton!==null && addButton !== undefined)\n{\naddButton.addEventListener('click',\n(e)=>{\n\t\tif( groups.includes(\"/formsflow/formsflow-reviewer/csap\") || groups.includes(\"/formsflow/formsflow-reviewer/csap-society\"))\n\t\t{\n\t\t var internalRadio = document.querySelectorAll(\"input[value='internal'][type='radio']\");\n\t\t for (let i = 0; i < internalRadio.length; i++) {\n\t\t\tinternalRadio[i].parentElement.remove();\n\t\t }\n\t\t}\n})\n}\nconst emptyElements = [];\nconst elements = document.getElementsByClassName(\"list-group-item\");\nfor (let i = 0; i < elements.length; i++) {\nconst element = elements[i];\n\nif(element.querySelectorAll('div.row').length===0){(element).remove() }\n \n}\n\n\nvar b =JSON.parse(localStorage.getItem('UserDetails'))\n\nif(b.groups.includes(\"/formsflow/formsflow-client\"))\n{\n console.log('client here');\n\tif(document.querySelector(\"[ref='editgrid-deraNotes-addRow']\") != null)\n\t{\n\t\tdocument.querySelector(\"[ref='editgrid-deraNotes-addRow']\").remove();\n\t}\n\nvar editButtons = document.querySelectorAll('button.btn.btn-default.btn-light.btn-sm.editRow');\nif(editButtons!=null)\n{\n\tfor(i=0;i -1 )\n{\n value = 'Client'\n}\nelse if(b.groups.indexOf('/formsflow/formsflow-reviewer/csap') > -1 )\n{\n value = 'Approved Professional'\n}\nelse if(b.groups.indexOf('/formsflow/formsflow-reviewer/csap-society') > -1 )\n{\n value = 'CSAP Society'\n}\nelse if(b.groups.indexOf('/formsflow/formsflow-reviewer/cssa-team') > -1 )\n{\n value = 'CSSA Team'\n}\nelse if(b.groups.indexOf('/formsflow/formsflow-reviewer/caseworker') > -1 )\n{\n value = 'Caseworker'\n}\nelse if(b.groups.indexOf('/formsflow/formsflow-reviewer/sdm') > -1 )\n{\n value = 'Statutory Decision Maker'\n}\nelse if(b.groups.indexOf('/formsflow/formsflow-reviewer/site-risk-classification-officer') > -1 )\n{\n value = 'Site Risk Classification Officer'\n}\nelse if(b.groups.indexOf('/formsflow/formsflow-reviewer/cssa-manager') > -1 )\n{\n value = 'CSSA Manager'\n}", + "key": "role", + "type": "textfield", + "input": true, "placeholder": "", - "description": "", - "tooltip": "", "prefix": "", - "suffix": "", - "widget": { - "type": "input" - }, - "inputMask": "", - "displayMask": "", - "allowMultipleMasks": false, "customClass": "", - "tabindex": "", - "autocomplete": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", "hideLabel": false, - "showWordCount": false, - "showCharCount": false, - "mask": false, + "tabindex": "", "autofocus": false, - "spellcheck": true, - "disabled": true, - "tableView": true, - "modalEdit": false, - "multiple": false, - "persistent": true, - "inputFormat": "plain", - "protected": false, "dbIndex": false, - "case": "", - "truncateMultipleSpaces": false, - "encrypted": false, - "redrawOn": "", - "clearOnHide": true, - "customDefaultValue": "var b =JSON.parse(localStorage.getItem('UserDetails'))\nif(b.groups.indexOf('/formsflow/formsflow-client') > -1 )\n{\n value = 'Client'\n}\nelse if(b.groups.indexOf('/formsflow/formsflow-reviewer/csap') > -1 )\n{\n value = 'Approved Professional'\n}\nelse if(b.groups.indexOf('/formsflow/formsflow-reviewer/csap-society') > -1 )\n{\n value = 'CSAP Society'\n}\nelse if(b.groups.indexOf('/formsflow/formsflow-reviewer/cssa-team') > -1 )\n{\n value = 'CSSA Team'\n}\nelse if(b.groups.indexOf('/formsflow/formsflow-reviewer/caseworker') > -1 )\n{\n value = 'Caseworker'\n}\nelse if(b.groups.indexOf('/formsflow/formsflow-reviewer/sdm') > -1 )\n{\n value = 'Statutory Decision Maker'\n}\nelse if(b.groups.indexOf('/formsflow/formsflow-reviewer/site-risk-classification-officer') > -1 )\n{\n value = 'Site Risk Classification Officer'\n}\nelse if(b.groups.indexOf('/formsflow/formsflow-reviewer/cssa-manager') > -1 )\n{\n value = 'CSSA Manager'\n}", "calculateValue": "", "calculateServer": false, - "allowCalculateOverride": false, + "widget": { + "type": "input" + }, + "attributes": {}, "validateOn": "change", "validate": { "required": false, - "pattern": "", - "customMessage": "", "custom": "", "customPrivate": false, - "json": "", - "minLength": "", - "maxLength": "", "strictDateValidation": false, "multiple": false, - "unique": false + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" }, - "unique": false, - "errorLabel": "", - "errors": "", - "key": "role", - "tags": [], - "properties": {}, "conditional": { "show": null, "when": null, - "eq": "", - "json": "" + "eq": "" }, - "customConditional": "", - "logic": [], - "attributes": {}, "overlay": { "style": "", - "page": "", "left": "", "top": "", "width": "", "height": "" }, - "type": "textfield", - "input": true, - "refreshOn": "", - "dataGridLabel": false, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, "addons": [], + "mask": false, "inputType": "text", - "id": "e9saysy", - "defaultValue": "" + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "e9ovig" } ], "size": "md", @@ -2084,7 +2124,7 @@ "displayMask": "", "spellcheck": true, "truncateMultipleSpaces": false, - "id": "eparje" + "id": "e9mkaf6" } ], "size": "md", @@ -2171,7 +2211,7 @@ "displayMask": "", "spellcheck": true, "truncateMultipleSpaces": false, - "id": "eu1i69" + "id": "ex1fdip" } ], "size": "md", @@ -2246,65 +2286,26 @@ "tree": false, "lazyLoad": false, "autoAdjust": false, - "id": "e2r7iqr" + "id": "e35oaqh" } ], "placeholder": "", "prefix": "", - "customClass": "", "suffix": "", "multiple": false, "defaultValue": null, - "protected": false, "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, "refreshOn": "", - "redrawOn": "", - "modalEdit": false, "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "calculateValue": "", - "calculateServer": false, "widget": null, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, "showCharCount": false, "showWordCount": false, - "properties": {}, "allowMultipleMasks": false, "addons": [], "tree": true, "lazyLoad": false, - "disableAddingRemovingRows": false, - "removeRow": "Cancel", "defaultOpen": false, - "openWhenEmpty": false, - "modal": false, - "inlineEdit": false, - "id": "efshkpp" + "id": "eu37j0v" }, { "id": "ecmxmh", @@ -5487,7 +5488,7 @@ "attributes": {}, "components": [ { - "id": "eh8z2bfa000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "id": "eh8z2bfa000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", "key": "panel", "tags": [], "tree": false, @@ -36016,7 +36017,7 @@ } ], "collapsible": false, - "id": "eof7940000000000000000000000000000000000000000000000000000000000000000000000000", + "id": "eof7940000000000000000000000000000000000000000000000000000000000000000000000000000", "placeholder": "", "prefix": "", "customClass": "", From a75732fe40b54d350dbbbd26365a271a5dd2bb79 Mon Sep 17 00:00:00 2001 From: midhun-aot Date: Wed, 11 Oct 2023 16:08:01 -0700 Subject: [PATCH 148/194] updated nom form to have role for sia in the table --- ...ication of Likely or Actual Migration.json | 102 ++++++++++-------- 1 file changed, 56 insertions(+), 46 deletions(-) diff --git a/forms-flow-ai/epd-forms/bundling/Notification of Likely or Actual Migration.json b/forms-flow-ai/epd-forms/bundling/Notification of Likely or Actual Migration.json index 22229514..7c808bda 100644 --- a/forms-flow-ai/epd-forms/bundling/Notification of Likely or Actual Migration.json +++ b/forms-flow-ai/epd-forms/bundling/Notification of Likely or Actual Migration.json @@ -709,80 +709,90 @@ "components": [ { "label": "Role", - "disabled": true, - "tableView": true, - "customDefaultValue": "var b =JSON.parse(localStorage.getItem('UserDetails'))\r\nif(b.groups.indexOf('/formsflow/formsflow-client') > -1 )\r\n{\r\n value = 'Client'\r\n}\r\nelse if(b.groups.indexOf('/formsflow/formsflow-reviewer/csap') > -1 )\r\n{\r\n value = 'Approved Professional'\r\n}\r\nelse if(b.groups.indexOf('/formsflow/formsflow-reviewer/csap-society') > -1 )\r\n{\r\n value = 'CSAP Society'\r\n}\r\nelse if(b.groups.indexOf('/formsflow/formsflow-reviewer/cssa-team') > -1 )\r\n{\r\n value = 'CSSA Team'\r\n}\r\nelse if(b.groups.indexOf('/formsflow/formsflow-reviewer/caseworker') > -1 )\r\n{\r\n value = 'Caseworker'\r\n}\r\nelse if(b.groups.indexOf('/formsflow/formsflow-reviewer/sdm') > -1 )\r\n{\r\n value = 'Statutory Decision Maker'\r\n}\r\nelse if(b.groups.indexOf('/formsflow/formsflow-reviewer/site-risk-classification-officer') > -1 )\r\n{\r\n value = 'Site Risk Classification Officer'\r\n}\r\nelse if(b.groups.indexOf('/formsflow/formsflow-reviewer/site-information-advisor') > -1 )\r\n{\r\n value = 'Site Information Advisor'\r\n}", - "key": "role", - "type": "textfield", - "input": true, + "labelPosition": "top", "placeholder": "", + "description": "", + "tooltip": "", "prefix": "", - "customClass": "", "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, + "widget": { + "type": "input" + }, + "inputMask": "", + "displayMask": "", + "allowMultipleMasks": false, + "customClass": "", + "tabindex": "", + "autocomplete": "", "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", "hideLabel": false, - "tabindex": "", + "showWordCount": false, + "showCharCount": false, + "mask": false, "autofocus": false, + "spellcheck": true, + "disabled": true, + "tableView": true, + "modalEdit": false, + "multiple": false, + "persistent": true, + "inputFormat": "plain", + "protected": false, "dbIndex": false, + "case": "", + "truncateMultipleSpaces": false, + "encrypted": false, + "redrawOn": "", + "clearOnHide": true, + "customDefaultValue": "var b =JSON.parse(localStorage.getItem('UserDetails'))\nif(b.groups.indexOf('/formsflow/formsflow-client') > -1 )\n{\n value = 'Client'\n}\nelse if(b.groups.indexOf('/formsflow/formsflow-reviewer/csap') > -1 )\n{\n value = 'Approved Professional'\n}\nelse if(b.groups.indexOf('/formsflow/formsflow-reviewer/csap-society') > -1 )\n{\n value = 'CSAP Society'\n}\nelse if(b.groups.indexOf('/formsflow/formsflow-reviewer/cssa-team') > -1 )\n{\n value = 'CSSA Team'\n}\nelse if(b.groups.indexOf('/formsflow/formsflow-reviewer/cssa-manager') > -1 )\n{\n value = 'CSSA Manager'\n}\nelse if(b.groups.indexOf('/formsflow/formsflow-reviewer/caseworker') > -1 )\n{\n value = 'Caseworker'\n}\nelse if(b.groups.indexOf('/formsflow/formsflow-reviewer/sdm') > -1 )\n{\n value = 'Statutory Decision Maker'\n}\nelse if(b.groups.indexOf('/formsflow/formsflow-reviewer/site-risk-classification-officer') > -1 )\n{\n value = 'Site Risk Classification Officer'\n}\nelse if(b.groups.indexOf('/formsflow/formsflow-reviewer/site-information-advisor') > -1 )\n{\n value = 'Site Information Advisor'\n}", "calculateValue": "", "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, + "allowCalculateOverride": false, "validateOn": "change", "validate": { "required": false, + "pattern": "", + "customMessage": "", "custom": "", "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, + "json": "", "minLength": "", "maxLength": "", - "pattern": "" + "strictDateValidation": false, + "multiple": false, + "unique": false }, + "unique": false, + "errorLabel": "", + "errors": "", + "key": "role", + "tags": [], + "properties": {}, "conditional": { "show": null, "when": null, - "eq": "" + "eq": "", + "json": "" }, + "customConditional": "", + "logic": [], + "attributes": {}, "overlay": { "style": "", + "page": "", "left": "", "top": "", "width": "", "height": "" }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, + "type": "textfield", + "input": true, + "refreshOn": "", + "dataGridLabel": false, "addons": [], - "mask": false, "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "e9e9ws" + "id": "ecrl5qi", + "defaultValue": "" } ], "size": "md", @@ -1213,7 +1223,7 @@ "attributes": {}, "components": [ { - "id": "ea2btv000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "id": "ea2btv00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", "key": "Panel-InformationForAffectedAndLikelyAffectedParcels", "tree": false, "type": "panel", @@ -9085,7 +9095,7 @@ "addons": [], "tree": false, "lazyLoad": false, - "id": "emrk44b00000" + "id": "emrk44b0000000" } ], "errorLabel": "", From cfa94371a837ff1465bcf36083f0e4a34a216903 Mon Sep 17 00:00:00 2001 From: Adam Coard Date: Thu, 12 Oct 2023 08:53:01 -0700 Subject: [PATCH 149/194] Site profile grid formatting --- .../features/site-details/site-profile.tsx | 22 +++++++++---------- 1 file changed, 10 insertions(+), 12 deletions(-) diff --git a/frontend/site-search-frontend/src/features/site-details/site-profile.tsx b/frontend/site-search-frontend/src/features/site-details/site-profile.tsx index 7beea92e..6a362cda 100644 --- a/frontend/site-search-frontend/src/features/site-details/site-profile.tsx +++ b/frontend/site-search-frontend/src/features/site-details/site-profile.tsx @@ -45,9 +45,9 @@ function SiteDisclosureItem({ index, disclosure }: SiteDisclosureItemProps) { return ( <>
-
+
-

Site Disclosure Statement (Sec. III and IV) {index + 1}

+
Site Disclosure Statement (Sec. III and IV)
{editMode &&
@@ -73,17 +73,15 @@ function SiteDisclosureItem({ index, disclosure }: SiteDisclosureItemProps) { data={disclosure.commercialAndIndustrialPurposes} /> -
-

IV Additional Comments and Explanations

- {/* TODO - Make these TextAreas */} - {/* Can create SiteGridTextAreaItem */} - {/* Or can create */} - {/* Can even combine? Leaning towards renderer option. */} - - - -
+

IV Additional Comments and Explanations

+ +
+ + + +
+
) From 7d806c5d4bdea6b95db0fe7964574e862f7e9fe0 Mon Sep 17 00:00:00 2001 From: midhun-aot Date: Thu, 12 Oct 2023 09:02:34 -0700 Subject: [PATCH 150/194] updating roles in NIR --- ...tification of Independent Remediation.json | 114 ++++++++++-------- 1 file changed, 62 insertions(+), 52 deletions(-) diff --git a/forms-flow-ai/epd-forms/bundling/Notification of Independent Remediation.json b/forms-flow-ai/epd-forms/bundling/Notification of Independent Remediation.json index 4096cf93..1e1da8f7 100644 --- a/forms-flow-ai/epd-forms/bundling/Notification of Independent Remediation.json +++ b/forms-flow-ai/epd-forms/bundling/Notification of Independent Remediation.json @@ -644,80 +644,90 @@ "components": [ { "label": "Role", - "disabled": true, - "tableView": true, - "customDefaultValue": "var b =JSON.parse(localStorage.getItem('UserDetails'))\r\nif(b.groups.indexOf('/formsflow/formsflow-client') > -1 )\r\n{\r\n value = 'Client'\r\n}\r\nelse if(b.groups.indexOf('/formsflow/formsflow-reviewer/csap') > -1 )\r\n{\r\n value = 'Approved Professional'\r\n}\r\nelse if(b.groups.indexOf('/formsflow/formsflow-reviewer/csap-society') > -1 )\r\n{\r\n value = 'CSAP Society'\r\n}\r\nelse if(b.groups.indexOf('/formsflow/formsflow-reviewer/cssa-team') > -1 )\r\n{\r\n value = 'CSSA Team'\r\n}\r\nelse if(b.groups.indexOf('/formsflow/formsflow-reviewer/caseworker') > -1 )\r\n{\r\n value = 'Caseworker'\r\n}\r\nelse if(b.groups.indexOf('/formsflow/formsflow-reviewer/sdm') > -1 )\r\n{\r\n value = 'Statutory Decision Maker'\r\n}\r\nelse if(b.groups.indexOf('/formsflow/formsflow-reviewer/site-risk-classification-officer') > -1 )\r\n{\r\n value = 'Site Risk Classification Officer'\r\n}\r\nelse if(b.groups.indexOf('/formsflow/formsflow-reviewer/site-information-advisor') > -1 )\r\n{\r\n value = 'Site Information Advisor'\r\n}", - "key": "role", - "type": "textfield", - "input": true, + "labelPosition": "top", "placeholder": "", + "description": "", + "tooltip": "", "prefix": "", - "customClass": "", "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, + "widget": { + "type": "input" + }, + "inputMask": "", + "displayMask": "", + "allowMultipleMasks": false, + "customClass": "", + "tabindex": "", + "autocomplete": "", "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", "hideLabel": false, - "tabindex": "", + "showWordCount": false, + "showCharCount": false, + "mask": false, "autofocus": false, + "spellcheck": true, + "disabled": true, + "tableView": true, + "modalEdit": false, + "multiple": false, + "persistent": true, + "inputFormat": "plain", + "protected": false, "dbIndex": false, + "case": "", + "truncateMultipleSpaces": false, + "encrypted": false, + "redrawOn": "", + "clearOnHide": true, + "customDefaultValue": "var b =JSON.parse(localStorage.getItem('UserDetails'))\nif(b.groups.indexOf('/formsflow/formsflow-client') > -1 )\n{\n value = 'Client'\n}\nelse if(b.groups.indexOf('/formsflow/formsflow-reviewer/csap') > -1 )\n{\n value = 'Approved Professional'\n}\nelse if(b.groups.indexOf('/formsflow/formsflow-reviewer/csap-society') > -1 )\n{\n value = 'CSAP Society'\n}\nelse if(b.groups.indexOf('/formsflow/formsflow-reviewer/cssa-team') > -1 )\n{\n value = 'CSSA Team'\n}\nelse if(b.groups.indexOf('/formsflow/formsflow-reviewer/cssa-manager') > -1 )\n{\n value = 'CSSA Manager'\n}\nelse if(b.groups.indexOf('/formsflow/formsflow-reviewer/caseworker') > -1 )\n{\n value = 'Caseworker'\n}\nelse if(b.groups.indexOf('/formsflow/formsflow-reviewer/sdm') > -1 )\n{\n value = 'Statutory Decision Maker'\n}\nelse if(b.groups.indexOf('/formsflow/formsflow-reviewer/site-risk-classification-officer') > -1 )\n{\n value = 'Site Risk Classification Officer'\n}\nelse if(b.groups.indexOf('/formsflow/formsflow-reviewer/site-information-advisor') > -1 )\n{\n value = 'Site Information Advisor'\n}", "calculateValue": "", "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, + "allowCalculateOverride": false, "validateOn": "change", "validate": { "required": false, + "pattern": "", + "customMessage": "", "custom": "", "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, + "json": "", "minLength": "", "maxLength": "", - "pattern": "" + "strictDateValidation": false, + "multiple": false, + "unique": false }, + "unique": false, + "errorLabel": "", + "errors": "", + "key": "role", + "tags": [], + "properties": {}, "conditional": { "show": null, "when": null, - "eq": "" + "eq": "", + "json": "" }, + "customConditional": "", + "logic": [], + "attributes": {}, "overlay": { "style": "", + "page": "", "left": "", "top": "", "width": "", "height": "" }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, + "type": "textfield", + "input": true, + "refreshOn": "", + "dataGridLabel": false, "addons": [], - "mask": false, "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "eki49bq" + "id": "eezdg0l", + "defaultValue": "" } ], "size": "md", @@ -9067,7 +9077,7 @@ "attributes": {}, "components": [ { - "id": "epivnsp00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "id": "epivnsp0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", "key": "contaminant", "mask": false, "type": "textfield", @@ -9144,7 +9154,7 @@ "truncateMultipleSpaces": false }, { - "id": "el3hlvr00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "id": "el3hlvr0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", "key": "maximumConcentration", "mask": false, "type": "textfield", @@ -9889,7 +9899,7 @@ "attributes": {}, "components": [ { - "id": "esedw400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "id": "esedw40000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", "key": "contaminant", "mask": false, "type": "textfield", @@ -9966,7 +9976,7 @@ "truncateMultipleSpaces": false }, { - "id": "esor90600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "id": "esor9060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", "key": "maximumConcentration", "mask": false, "type": "textfield", @@ -10708,7 +10718,7 @@ "attributes": {}, "components": [ { - "id": "ej0y4100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "id": "ej0y410000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", "key": "contaminant", "mask": false, "type": "textfield", @@ -10785,7 +10795,7 @@ "truncateMultipleSpaces": false }, { - "id": "e8qg9fh00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "id": "e8qg9fh0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", "key": "maximumConcentration", "mask": false, "type": "textfield", @@ -11533,7 +11543,7 @@ "attributes": {}, "components": [ { - "id": "eevqmo90000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "id": "eevqmo9000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", "key": "contaminant", "mask": false, "type": "textfield", @@ -11610,7 +11620,7 @@ "truncateMultipleSpaces": false }, { - "id": "et223l30000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "id": "et223l3000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", "key": "maximumConcentration", "mask": false, "type": "textfield", From b49b01b10fcc6896124114fbe456605cdf7c3472 Mon Sep 17 00:00:00 2001 From: Adam Coard Date: Thu, 12 Oct 2023 09:02:45 -0700 Subject: [PATCH 151/194] Activity Log page --- .../features/site-details/activity-log.tsx | 23 ++++++++++++++++++- .../site-details/table/SiteDetailsTable.tsx | 12 ++++++---- 2 files changed, 29 insertions(+), 6 deletions(-) diff --git a/frontend/site-search-frontend/src/features/site-details/activity-log.tsx b/frontend/site-search-frontend/src/features/site-details/activity-log.tsx index 87ead04b..b63277e3 100644 --- a/frontend/site-search-frontend/src/features/site-details/activity-log.tsx +++ b/frontend/site-search-frontend/src/features/site-details/activity-log.tsx @@ -1,9 +1,30 @@ +import { Site } from "@/api/sites"; +import { RootState } from "@/store"; +import { useSelector } from "react-redux"; +import { useParams } from "react-router-dom"; +import SubSearch from "./sub-search/SubSearch"; +import SiteDetailsTable from "./table/SiteDetailsTable"; export default function ActivityLog() { + const { siteID } = useParams(); + const siteIDNum = parseInt(siteID); + const site: Site = useSelector((state: RootState) => state.site.value.find(searchedSite => searchedSite.siteID === siteIDNum)); + return (
-

Activity Log go here

+ + +
) } \ No newline at end of file diff --git a/frontend/site-search-frontend/src/features/site-details/table/SiteDetailsTable.tsx b/frontend/site-search-frontend/src/features/site-details/table/SiteDetailsTable.tsx index 71f6c5bc..5f8c29c2 100644 --- a/frontend/site-search-frontend/src/features/site-details/table/SiteDetailsTable.tsx +++ b/frontend/site-search-frontend/src/features/site-details/table/SiteDetailsTable.tsx @@ -17,6 +17,7 @@ interface SiteDetailsTableProps { siteRegistry: boolean [key: string]: any; }[]; + showAddRemoveButtons?: boolean; } @@ -24,7 +25,7 @@ interface SiteDetailsTableProps { // Site Registry togglez // editMode -export default function SiteDetailsTable({ onClickAdd, headers, data, label, onClickRemove }: SiteDetailsTableProps) { +export default function SiteDetailsTable({ onClickAdd, headers, data, label, onClickRemove, showAddRemoveButtons: hideAddRemoveButtons = true }: SiteDetailsTableProps) { const editMode = useSelector((state: RootState) => state.edit.editMode); const [checked, setChecked] = useState<{ [key: string]: boolean }>(initializeCheckedObject(false)); const [headerChecked, setHeaderChecked] = useState(false); @@ -111,10 +112,11 @@ export default function SiteDetailsTable({ onClickAdd, headers, data, label, onC
{editMode &&
- - - {/* */} - + {/* */} + + {hideAddRemoveButtons ? : '' } + + {hideAddRemoveButtons ? : '' }
} From 0f75911603c8b83a063b7def245ab54c21ab3d6c Mon Sep 17 00:00:00 2001 From: Adam Coard Date: Thu, 12 Oct 2023 09:03:02 -0700 Subject: [PATCH 152/194] Notation SR button functionality --- .../src/features/site-details/notations.tsx | 16 ++-------------- 1 file changed, 2 insertions(+), 14 deletions(-) diff --git a/frontend/site-search-frontend/src/features/site-details/notations.tsx b/frontend/site-search-frontend/src/features/site-details/notations.tsx index 0f733f63..1bfef36b 100644 --- a/frontend/site-search-frontend/src/features/site-details/notations.tsx +++ b/frontend/site-search-frontend/src/features/site-details/notations.tsx @@ -9,7 +9,7 @@ import { Notation, Site } from '@/api/sites'; import { RootState } from '@/store'; import { deleteNotation, updateSite } from '../simple-search/simple-search'; import { useEffect, useState } from 'react'; -import SiteRegistryIcon from '@/components/SiteRegistryIcon'; +import SiteRegistryIcon, { SiteRegistryIconButton } from '@/components/SiteRegistryIcon'; import SubSearch from './sub-search/SubSearch'; import SiteDetailsTable from './table/SiteDetailsTable'; import formatDateToString from '@/helpers/formatDateToString'; @@ -102,17 +102,13 @@ export default function Notations() { return (
- - {editMode && } {site.notations.map((siteNotationData, index) => { // return return })} - -
) } @@ -122,11 +118,6 @@ function NotationItem({ notation, index, onClickAddParticipant, onClickRemovePar const isMinistry = useSelector((state: RootState) => state.user.isMinistry); const editMode = useSelector((state: RootState) => state.edit.editMode); - // Toggling these two makes it mirror exact state, but it shouldn't, instead should be for batch changing of them. - // const defaultSelectionState: {index: number, siteRegistry: boolean}[] = notation.notationParticipants.map((x,index) => {return {index, siteRegistry: x.siteRegistry}} ) - // const defaultSelectionState: {index: number, siteRegistry: boolean}[] = notation.notationParticipants.map((x,index) => {return {index, siteRegistry: false}} ) - // const [participationSelection, setParticipationSeleciton] = useState(defaultSelectionState) - return (
@@ -135,7 +126,7 @@ function NotationItem({ notation, index, onClickAddParticipant, onClickRemovePar {isMinistry &&

Created: {notation.createdAt}

}
{editMode &&
- + SR
}
@@ -161,9 +152,6 @@ function NotationItem({ notation, index, onClickAddParticipant, onClickRemovePar onClickAdd={() => { onClickAddParticipant({notationIndex: index})}} onClickRemove={(checked) => { onClickRemoveParticipant({notationIndex: index, checked})}} /> - - -
) From ed4594b17e41eaf8f25951d5c11f0eeaa99c9921 Mon Sep 17 00:00:00 2001 From: Adam Coard Date: Thu, 12 Oct 2023 09:10:16 -0700 Subject: [PATCH 153/194] Add/Remove table working with state updates on parcel and land use --- .../site-details/parcel-description.tsx | 34 +++++++++++++++++-- .../site-details/suspect-land-uses.tsx | 33 ++++++++++++++++-- 2 files changed, 63 insertions(+), 4 deletions(-) diff --git a/frontend/site-search-frontend/src/features/site-details/parcel-description.tsx b/frontend/site-search-frontend/src/features/site-details/parcel-description.tsx index 45771c40..8413ea4a 100644 --- a/frontend/site-search-frontend/src/features/site-details/parcel-description.tsx +++ b/frontend/site-search-frontend/src/features/site-details/parcel-description.tsx @@ -1,15 +1,43 @@ -import { Site } from "@/api/sites"; +import { ParcelDescription, Site } from "@/api/sites"; import { RootState } from "@/store"; -import { useSelector } from "react-redux"; +import { useDispatch, useSelector } from "react-redux"; import { useParams } from "react-router-dom"; import SubSearch from "./sub-search/SubSearch"; import SiteDetailsTable from "./table/SiteDetailsTable"; +import { faker } from "@faker-js/faker"; +import { updateSite } from "../simple-search/simple-search"; export default function ParcelDescription() { const { siteID } = useParams(); const siteIDNum = parseInt(siteID); const site: Site = useSelector((state: RootState) => state.site.value.find(searchedSite => searchedSite.siteID === siteIDNum)); + const dispatch = useDispatch(); + + function newParcelDescription(){ + const newParcel: ParcelDescription = {uuid: faker.string.uuid(), crownLandFileNumber: '', crownLandUsePIN: '', dateNoted: '', landDescription: '', parcelID: '', siteRegistry: false }; + const newSite: Site = { + ...site, + parcelDescriptions: [...site.parcelDescriptions, newParcel] + }; + + dispatch(updateSite(newSite)) + } + + function removeParcel(checkedObj){ + const newSite: Site = { + ...site, + parcelDescriptions: [...site.parcelDescriptions.filter((_, index) => { + if (checkedObj[index] === true ) { + return false + } + return true; + })] + }; + + dispatch(updateSite(newSite)) + } + return (
@@ -24,6 +52,8 @@ export default function ParcelDescription() { {label: 'Crown Lands File Number', accessor: 'crownLandFileNumber'}, {label: 'Land Description', accessor: 'landDescription'} ]} + onClickAdd={newParcelDescription} + onClickRemove={removeParcel} data={site.parcelDescriptions} />
diff --git a/frontend/site-search-frontend/src/features/site-details/suspect-land-uses.tsx b/frontend/site-search-frontend/src/features/site-details/suspect-land-uses.tsx index 0479ff32..b74e0303 100644 --- a/frontend/site-search-frontend/src/features/site-details/suspect-land-uses.tsx +++ b/frontend/site-search-frontend/src/features/site-details/suspect-land-uses.tsx @@ -1,14 +1,41 @@ -import { Site } from "@/api/sites"; +import { Site, SuspectLandUse } from "@/api/sites"; import { RootState } from "@/store"; -import { useSelector } from "react-redux"; +import { useDispatch, useSelector } from "react-redux"; import { useParams } from "react-router-dom"; import SubSearch from "./sub-search/SubSearch"; import SiteDetailsTable from "./table/SiteDetailsTable"; +import { updateSite } from "../simple-search/simple-search"; +import { faker } from "@faker-js/faker"; export default function SuspectLandUses() { const { siteID } = useParams(); const siteIDNum = parseInt(siteID); const site: Site = useSelector((state: RootState) => state.site.value.find(searchedSite => searchedSite.siteID === siteIDNum)); + const dispatch = useDispatch(); + + function newSuspectLandUse(){ + const newLandUse: SuspectLandUse = {uuid: faker.string.uuid(), landUse: '', notes: '', siteRegistry: true}; + const newSite: Site = { + ...site, + suspectLandUses: [...site.suspectLandUses, newLandUse] + }; + + dispatch(updateSite(newSite)) + } + + function removeLandUse(checkedObj){ + const newSite: Site = { + ...site, + suspectLandUses: [...site.suspectLandUses.filter((_, index) => { + if (checkedObj[index] === true ) { + return false + } + return true; + })] + }; + + dispatch(updateSite(newSite)) + } return ( @@ -21,6 +48,8 @@ export default function SuspectLandUses() { {label: 'Land Use', accessor: 'landUse'}, {label: 'Notes', accessor: 'notes'} ]} + onClickAdd={newSuspectLandUse} + onClickRemove={removeLandUse} data={site.suspectLandUses} /> From 68d1cf3f9dd7dec41224050c880fb35c1457b2a3 Mon Sep 17 00:00:00 2001 From: Adam Coard Date: Thu, 12 Oct 2023 09:18:02 -0700 Subject: [PATCH 154/194] Fix minor build issues with vars --- .../src/features/site-details/parcel-description.tsx | 2 +- .../src/features/site-details/site-profile.tsx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/site-search-frontend/src/features/site-details/parcel-description.tsx b/frontend/site-search-frontend/src/features/site-details/parcel-description.tsx index 8413ea4a..5ebe51c5 100644 --- a/frontend/site-search-frontend/src/features/site-details/parcel-description.tsx +++ b/frontend/site-search-frontend/src/features/site-details/parcel-description.tsx @@ -7,7 +7,7 @@ import SiteDetailsTable from "./table/SiteDetailsTable"; import { faker } from "@faker-js/faker"; import { updateSite } from "../simple-search/simple-search"; -export default function ParcelDescription() { +export default function ParcelDescriptionSubPage() { const { siteID } = useParams(); const siteIDNum = parseInt(siteID); const site: Site = useSelector((state: RootState) => state.site.value.find(searchedSite => searchedSite.siteID === siteIDNum)); diff --git a/frontend/site-search-frontend/src/features/site-details/site-profile.tsx b/frontend/site-search-frontend/src/features/site-details/site-profile.tsx index 6a362cda..649577e2 100644 --- a/frontend/site-search-frontend/src/features/site-details/site-profile.tsx +++ b/frontend/site-search-frontend/src/features/site-details/site-profile.tsx @@ -39,7 +39,7 @@ interface SiteDisclosureItemProps { disclosure: SiteDisclosure } -function SiteDisclosureItem({ index, disclosure }: SiteDisclosureItemProps) { +function SiteDisclosureItem({ disclosure }: SiteDisclosureItemProps) { const editMode = useSelector((state: RootState) => state.edit.editMode) const isMinistry = useSelector((state: RootState) => state.user.isMinistry); return ( From d13318e08d5a03fe88ad11f86fb40c86276dedcc Mon Sep 17 00:00:00 2001 From: midhun-aot Date: Thu, 12 Oct 2023 10:20:41 -0700 Subject: [PATCH 155/194] updated role name --- .../processes/Bundling/subProcess/DERABundleWorkflow.bpmn | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/processes/Bundling/subProcess/DERABundleWorkflow.bpmn b/forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/processes/Bundling/subProcess/DERABundleWorkflow.bpmn index d15e2524..f85a7beb 100644 --- a/forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/processes/Bundling/subProcess/DERABundleWorkflow.bpmn +++ b/forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/processes/Bundling/subProcess/DERABundleWorkflow.bpmn @@ -706,7 +706,7 @@ task.execution.setVariable('userRole','Statutory Decision Maker'); task.execution.setVariable('applicationStatus', task.execution.getVariable('action')); task.execution.setVariable('deleteReason', "completed"); -task.execution.setVariable('userRole','Case worker 3'); +task.execution.setVariable('userRole','Caseworker'); @@ -902,7 +902,7 @@ task.execution.setVariable('requestType', 'SRCR'); task.execution.setVariable('deleteReason', "completed"); task.execution.setVariable('srcrStatus', task.execution.getVariable('action')); task.execution.setVariable('applicationStatus', task.execution.getVariable('action')); -task.execution.setVariable('userRole','Case worker 2'); +task.execution.setVariable('userRole','Caseworker'); task.execution.setVariable('subFormName','SRCR Form'); From 6967128e341618e87c561fdad3dd053954a7708f Mon Sep 17 00:00:00 2001 From: nikhila-aot Date: Thu, 12 Oct 2023 13:20:28 -0700 Subject: [PATCH 156/194] correction for sosc standalone --- .../epd-forms/Summary of Site Condition.json | 2982 +++++++++++------ .../subProcess/SOSCBundleWorklow.bpmn | 2064 +++--------- 2 files changed, 2489 insertions(+), 2557 deletions(-) diff --git a/forms-flow-ai/epd-forms/Summary of Site Condition.json b/forms-flow-ai/epd-forms/Summary of Site Condition.json index 85ce1665..6b1d0f74 100644 --- a/forms-flow-ai/epd-forms/Summary of Site Condition.json +++ b/forms-flow-ai/epd-forms/Summary of Site Condition.json @@ -4,18 +4,18 @@ "title": "Summary of Site Condition", "display": "form", "type": "form", - "name": "summaryOfSiteCondition", - "path": "summaryofsitecondition", + "name": "soscForm", + "path": "soscform", "tags": [ "common" ], "components": [ { - "title": "Site Information Advisor Actions", + "title": "Reviewer Actions", "collapsible": false, "hideLabel": true, - "key": "siteInformationAdvisorActions", - "customConditional": "const UserDetails = JSON.parse(localStorage.getItem(\"UserDetails\"))\r\n\r\nconsole.log(\"form UserDetails\",UserDetails);\r\n\r\nconst roles = UserDetails[\"role\"];\r\n\r\nconsole.log(\"form roles\",roles);\r\nif(roles.includes(\"formsflow-reviewer/site-information-advisor\")) {\r\n show = true;\r\n}\r\nelse\r\n{\r\n show = false;\r\n}", + "key": "reviewerActions", + "customConditional": "const UserDetails = JSON.parse(localStorage.getItem(\"UserDetails\"));\r\nconst roles = UserDetails[\"role\"];\r\nif(roles.includes(\"formsflow-client\") || \r\nroles.includes(\"formsflow-reviewer/cssa-team\") || \r\nroles.includes(\"formsflow-reviewer/cssa-manager\")|| \r\nroles.includes(\"formsflow-reviewer/csap\") || \r\nroles.includes(\"formsflow-reviewer/csap-society\") ||\r\nroles.includes(\"formsflow-reviewer/formsflow-client-reviewer\")) {\r\n show = false;\r\n}\r\nelse\r\n{\r\n if (data.riskclassification === \"exempt\") {\r\n show = false;\r\n } else {\r\n show = true;\r\n }\r\n}", "type": "panel", "label": "Panel", "input": false, @@ -27,14 +27,14 @@ { "components": [ { - "label": "Accept Forms", + "label": "Previous Reviewer", "action": "custom", "showValidations": false, - "theme": "success", "tableView": false, - "key": "accepted", + "key": "prevReviewer", + "customConditional": "const UserDetails = JSON.parse(localStorage.getItem(\"UserDetails\"))\r\n\r\nconst roles = UserDetails[\"role\"];\r\n\r\n\r\nif(roles.includes(\"formsflow-reviewer\") && \r\n!roles.includes(\"formsflow-reviewer/caseworker\") &&\r\n!(roles.includes(\"formsflow-reviewer/sdm\") && data.typeOfReview === \"applicationViaTheSocietyOfContaminatedSitesApprovedProfessionalsOfBc\")) {\r\n show = true;\r\n}\r\nelse\r\n{\r\n show = false;\r\n}", "type": "button", - "custom": "const submissionId = form._submission._id;\r\nconst formId = form._submission.form;\r\nconst formDataReqUrl = form.formio?form.formio.formUrl:(localStorage.getItem('customSubmissionUrl')+'/form/'+formId)+'/submission/'+submissionId;const formDataReqObj1 = { \"_id\": submissionId, \"data\": data};\r\nconsole.log('formDataReqUrl',formDataReqUrl)\r\nconst formio = new Formio(formDataReqUrl);\r\nformio.saveSubmission(formDataReqObj1).then( result => {\r\nform.emit('customEvent', {\r\n type: \"actionComplete\", \r\n component: component,\r\n actionType: 'Accepted'\r\n }); \r\n}).catch((error)=>{\r\n//Error callback on not Save\r\nform.emit('customEvent', {\r\n type: \"actionError\", \r\n component: component,\r\n actionType:'Accepted'\r\n }); \r\n});", + "custom": "const submissionId = form._submission._id;\r\nconst formId = form._submission.form;\r\nconst formDataReqUrl = form.formio?form.formio.formUrl:(localStorage.getItem('customSubmissionUrl')+'/form/'+formId)+'/submission/'+submissionId;\r\nconst filteredData = _.pick(data, data.soscUtilKeys);\r\nconst formDataReqObj1 = { \"_id\": submissionId, \"data\": filteredData};\r\nconst formio = new Formio(formDataReqUrl);\r\nformio.saveSubmission(formDataReqObj1).then( result => {\r\nform.emit('customEvent', {\r\n type: \"actionComplete\", \r\n component: component,\r\n actionType: 'Recheck'\r\n }); \r\n}).catch((error)=>{\r\n//Error callback on not Save\r\nform.emit('customEvent', {\r\n type: \"actionError\", \r\n component: component,\r\n actionType:'Recheck'\r\n }); \r\n});", "input": true, "placeholder": "", "prefix": "", @@ -100,27 +100,105 @@ "rightIcon": "", "block": false, "disableOnInvalid": false, - "id": "exnpl2" + "theme": "primary", + "id": "egxsp3h" } ], - "width": 2, "offset": 0, "push": 0, "pull": 0, "size": "md", - "currentWidth": 2 + "currentWidth": 3, + "width": 3 }, { "components": [ { - "label": "Needs More Info", + "label": "Next Reviewer", "action": "custom", "showValidations": false, - "theme": "warning", "tableView": false, - "key": "needsMoreInfo", + "key": "nextReviewer", + "customConditional": "const UserDetails = JSON.parse(localStorage.getItem(\"UserDetails\"));\r\n\r\nconst roles = UserDetails[\"role\"];\r\n\r\nif(roles.includes(\"formsflow-reviewer/caseworker\")) {\r\n show = true;\r\n}\r\nelse\r\n{\r\n show = false;\r\n}", + "type": "button", + "custom": "const submissionId = form._submission._id;\r\nconst formId = form._submission.form;\r\nconst formDataReqUrl = form.formio?form.formio.formUrl:(localStorage.getItem('customSubmissionUrl')+'/form/'+formId)+'/submission/'+submissionId;\r\n\r\nconst filteredData = _.pick(data, data.soscUtilKeys);\r\n\r\nconst formDataReqObj1 = { \"_id\": submissionId, \"data\": filteredData};\r\nconst formio = new Formio(formDataReqUrl);\r\nformio.saveSubmission(formDataReqObj1).then( result => {\r\nform.emit('customEvent', {\r\n type: \"actionComplete\", \r\n component: component,\r\n actionType: 'Accepted'\r\n }); \r\n}).catch((error)=>{\r\n//Error callback on not Save\r\nform.emit('customEvent', {\r\n type: \"actionError\", \r\n component: component,\r\n actionType:'Accepted'\r\n }); \r\n});", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": true, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "size": "md", + "leftIcon": "", + "rightIcon": "", + "block": false, + "disableOnInvalid": false, + "theme": "primary", + "id": "e8ywitm" + }, + { + "label": "Approved", + "action": "custom", + "showValidations": false, + "tableView": false, + "key": "approved", + "customConditional": "const UserDetails = JSON.parse(localStorage.getItem(\"UserDetails\"));\r\n\r\nconst roles = UserDetails[\"role\"];\r\n\r\nif(roles.includes(\"formsflow-reviewer/sdm\")) {\r\n show = true;\r\n}\r\nelse\r\n{\r\n show = false;\r\n}", "type": "button", - "custom": "\r\nconst submissionId = form._submission._id;\r\nconst formId = form._submission.form;\r\nconst formDataReqUrl = form.formio?form.formio.formUrl:(localStorage.getItem('customSubmissionUrl')+'/form/'+formId)+'/submission/'+submissionId;\r\nconst formDataReqObj1 = { \"_id\": submissionId, \"data\": data};\r\nconst formio = new Formio(formDataReqUrl);\r\nformio.saveSubmission(formDataReqObj1).then( result => {\r\nform.emit('customEvent', {\r\n type: \"actionComplete\", \r\n component: component,\r\n actionType: 'Returned'\r\n }); \r\n}).catch((error)=>{\r\n//Error callback on not Save\r\nform.emit('customEvent', {\r\n type: \"actionError\", \r\n component: component,\r\n actionType:'Returned'\r\n }); \r\n});", + "custom": "\r\nconst submissionId = form._submission._id;\r\nconst formId = form._submission.form;\r\nconst formDataReqUrl = form.formio?form.formio.formUrl:(localStorage.getItem('customSubmissionUrl')+'/form/'+formId)+'/submission/'+submissionId;\r\nconst filteredData = _.pick(data, data.soscUtilKeys);\r\nconst formDataReqObj1 = { \"_id\": submissionId, \"data\": filteredData};\r\nconst formio = new Formio(formDataReqUrl);\r\nformio.saveSubmission(formDataReqObj1).then( result => {\r\nform.emit('customEvent', {\r\n type: \"actionComplete\", \r\n component: component,\r\n actionType: 'Approved'\r\n }); \r\n}).catch((error)=>{\r\n//Error callback on not Save\r\nform.emit('customEvent', {\r\n type: \"actionError\", \r\n component: component,\r\n actionType:'Approved'\r\n }); \r\n});\r\n", "input": true, "placeholder": "", "prefix": "", @@ -186,28 +264,33 @@ "rightIcon": "", "block": false, "disableOnInvalid": false, - "id": "er0far" + "theme": "primary", + "id": "evn8m09" } ], - "width": 2, + "width": 3, "offset": 0, "push": 0, "pull": 0, "size": "md", - "currentWidth": 2 + "currentWidth": 3 }, { "components": [ { - "label": "Reject Forms", + "label": "Needs More Info", "action": "custom", "showValidations": false, - "theme": "danger", + "theme": "warning", + "disabled": true, "tableView": false, - "key": "rejected", + "key": "needsMoreInfo", + "customConditional": "const UserDetails = JSON.parse(localStorage.getItem(\"UserDetails\"));\r\nconst roles = UserDetails[\"role\"];\r\nconst taskUrl = window.location.pathname.split('/');\r\nconst taskId = taskUrl[2];\r\nconst authToken = localStorage.getItem(\"authToken\");\r\nconst bpmUrl = localStorage.getItem(\"bpmApiUrl\");\r\nvar reqUrl = bpmUrl + \"/task/\" + taskId + \"/variables\";\r\n\r\n\r\n getData(reqUrl, authToken).then((response) => {\r\n \r\n\t if(roles.includes(\"formsflow-reviewer\")) {\r\n \tvar applicationStatus = response.applicationStatus ? response.applicationStatus.value : '';\r\n \t show = true;\r\n \t \r\n\r\n \t\t\r\n\t if (applicationStatus === 'Resubmit') {\r\n\t component.disabled = true;\r\n\t component.description = 'Disabled since SRCR resubmission in progress';\r\n\t instance.triggerRedraw();\r\n\t } else {\r\n\t component.description = '';\r\n\t component.disabled = false;\r\n\t instance.triggerRedraw();\r\n\t }\r\n\t }\r\n\t else\r\n\t {\r\n \t\tshow = false;\r\n\t }\r\n });\r\n\r\n\r\nasync function getData(reqUrl, authToken) {\r\n const response = await fetch(reqUrl, {\r\n method: \"GET\",\r\n headers: {\r\n \"Content-type\": \"application/json\",\r\n Accept: \"application/json\",\r\n Authorization: \"Bearer \" + authToken,\r\n },\r\n });\r\n const data = await response.json();\r\n return data;\r\n}", "type": "button", - "custom": "const submissionId = form._submission._id;\r\nconst formId = form._submission.form;\r\nconst formDataReqUrl = form.formio?form.formio.formUrl:(localStorage.getItem('customSubmissionUrl')+'/form/'+formId)+'/submission/'+submissionId;\r\nconst formDataReqObj1 = { \"_id\": submissionId, \"data\": data};\r\nconst formio = new Formio(formDataReqUrl);\r\nformio.saveSubmission(formDataReqObj1).then( result => {\r\nform.emit('customEvent', {\r\n type: \"actionComplete\", \r\n component: component,\r\n actionType: 'Rejected'\r\n }); \r\n}).catch((error)=>{\r\n//Error callback on not Save\r\nform.emit('customEvent', {\r\n type: \"actionError\", \r\n component: component,\r\n actionType:'Rejected'\r\n }); \r\n});", + "custom": "const submissionId = form._submission._id;\r\nconst formId = form._submission.form;\r\nconst formDataReqUrl = form.formio?form.formio.formUrl:(localStorage.getItem('customSubmissionUrl')+'/form/'+formId)+'/submission/'+submissionId;+submissionId;\r\nconst filteredData = _.pick(data, data.soscUtilKeys);\r\nconst formDataReqObj1 = { \"_id\": submissionId, \"data\": filteredData};\r\nconst formio = new Formio(formDataReqUrl);\r\nformio.saveSubmission(formDataReqObj1).then( result => {\r\nform.emit('customEvent', {\r\n type: \"actionComplete\", \r\n component: component,\r\n actionType: 'Returned'\r\n }); \r\n}).catch((error)=>{\r\n//Error callback on not Save\r\nform.emit('customEvent', {\r\n type: \"actionError\", \r\n component: component,\r\n actionType:'Returned'\r\n }); \r\n});", "input": true, + "redrawOn": "textField", + "keyModified": true, "placeholder": "", "prefix": "", "customClass": "", @@ -220,7 +303,6 @@ "hidden": false, "clearOnHide": true, "refreshOn": "", - "redrawOn": "", "modalEdit": false, "dataGridLabel": true, "labelPosition": "top", @@ -229,7 +311,6 @@ "tooltip": "", "hideLabel": false, "tabindex": "", - "disabled": false, "autofocus": false, "dbIndex": false, "customDefaultValue": "", @@ -272,26 +353,28 @@ "rightIcon": "", "block": false, "disableOnInvalid": false, - "id": "erfy6zg" + "id": "e5ues4" } ], "size": "md", - "width": 2, + "width": 3, "offset": 0, "push": 0, "pull": 0, - "currentWidth": 2 + "currentWidth": 3 }, { "components": [ { - "label": "Return To Client", + "label": "Reject Form", "action": "custom", "showValidations": false, + "theme": "danger", "tableView": false, - "key": "returnToClient1", + "key": "rejected", + "customConditional": "const UserDetails = JSON.parse(localStorage.getItem(\"UserDetails\"))\r\n\r\nconst roles = UserDetails[\"role\"];\r\n\r\nif(roles.includes(\"formsflow-reviewer\") && \r\n!(roles.includes(\"formsflow-reviewer/csap\") ||\r\nroles.includes(\"formsflow-reviewer/csap-society\"))) {\r\n show = true;\r\n}\r\nelse\r\n{\r\n show = false;\r\n}", "type": "button", - "custom": "const submissionId = form._submission._id;\r\nconst formId = form._submission.form;\r\nconst formDataReqUrl = form.formio?form.formio.formUrl:(localStorage.getItem('customSubmissionUrl')+'/form/'+formId)+'/submission/'+submissionId;\r\nconst formDataReqObj1 = { \"_id\": submissionId, \"data\": data};\r\nconst formio = new Formio(formDataReqUrl);\r\nformio.saveSubmission(formDataReqObj1).then( result => {\r\nform.emit('customEvent', {\r\n type: \"actionComplete\", \r\n component: component,\r\n actionType: 'ReturnedToClient'\r\n }); \r\n}).catch((error)=>{\r\n//Error callback on not Save\r\nform.emit('customEvent', {\r\n type: \"actionError\", \r\n component: component,\r\n actionType:'ReturnedToClient'\r\n }); \r\n});", + "custom": "const submissionId = form._submission._id;\r\nconst formId = form._submission.form;\r\nconst formDataReqUrl = form.formio?form.formio.formUrl:(localStorage.getItem('customSubmissionUrl')+'/form/'+formId)+'/submission/'+submissionId;\r\nconst filteredData = _.pick(data, data.soscUtilKeys);\r\nconst formDataReqObj1 = { \"_id\": submissionId, \"data\": filteredData};\r\nconst formio = new Formio(formDataReqUrl);\r\nformio.saveSubmission(formDataReqObj1).then( result => {\r\nform.emit('customEvent', {\r\n type: \"actionComplete\", \r\n component: component,\r\n actionType: 'Rejected'\r\n }); \r\n}).catch((error)=>{\r\n//Error callback on not Save\r\nform.emit('customEvent', {\r\n type: \"actionError\", \r\n component: component,\r\n actionType:'Rejected'\r\n }); \r\n});\r\n", "input": true, "placeholder": "", "prefix": "", @@ -357,25 +440,15 @@ "rightIcon": "", "block": false, "disableOnInvalid": false, - "theme": "primary", - "id": "ea7ott" + "id": "eeuquma" } ], "size": "md", - "width": 2, + "width": 3, "offset": 0, "push": 0, "pull": 0, - "currentWidth": 2 - }, - { - "components": [], - "size": "md", - "offset": 0, - "push": 0, - "pull": 0, - "width": 4, - "currentWidth": 4 + "currentWidth": 3 } ], "hideLabel": true, @@ -442,9 +515,10 @@ "tree": false, "lazyLoad": false, "autoAdjust": false, - "id": "ewmtpgh" + "id": "e9sdimc" } ], + "keyModified": true, "placeholder": "", "prefix": "", "customClass": "", @@ -505,85 +579,17 @@ "lazyLoad": false, "theme": "default", "breadcrumb": "default", - "id": "e4pmjy", - "keyModified": true + "id": "e3fjtw" }, { - "label": "Edit Grid", - "labelPosition": "top", - "description": "", - "tooltip": "", - "customClass": "", - "tabindex": "", - "openWhenEmpty": false, - "disableAddingRemovingRows": false, - "conditionalAddButton": "", - "hidden": false, - "hideLabel": true, - "autofocus": false, - "disabled": false, - "tableView": true, - "modalEdit": false, - "templates": { - "header": "\r\n{% console.log(\"row-key header\",'commentFor',row['commentFor']) %}\r\n{% const UserDetails = JSON.parse(localStorage.getItem(\"UserDetails\"))%}\r\n{% const groups = UserDetails[\"groups\"]; %}\r\n\r\n{% if(groups.includes(\"/formsflow/formsflow-reviewer/formsflow-client-reviewer\") || groups.includes(\"/formsflow/formsflow-reviewer/lrs-approving-authority\") || groups.includes(\"/formsflow/formsflow-client\")){ %}\r\n\r\n
\r\n {% util.eachComponent(components, function(component) { %}\r\n {% if (displayValue(component) && component.key !== 'commentFor' ) { %}\r\n {% if(component.label === 'Notes') { %}\r\n
{{ t(component.label) }}
\r\n {% } else if(component.key !== 'comments') { %}\r\n
{{ t(component.label) }}
\r\n {% } %}\r\n {% } %}\r\n {% }) %}\r\n
\r\n\r\n{% } else { %}\r\n\r\n
\r\n {% util.eachComponent(components, function(component) { %}\r\n {% if (displayValue(component)) { %}\r\n {% if(component.key == 'comments') { %}\r\n
{{ t(component.label)}}
\r\n{% } else { %}\r\n
{{ t(component.label)}}
\r\n{% } %} \r\n {% } %}\r\n {% }) %}\r\n
\r\n\r\n{% } %}", - "tableHeader": "\n
\n {% util.eachComponent(components, function(component) { %}\n {% if (!component.hasOwnProperty('tableView') || component.tableView) { %}\n \n {% } %}\n {% }) %}\n {% if (!instance.options.readOnly && !instance.disabled) { %}\n \n {% } %}\n \n ", - "row": "{% console.log(\"row-key main\",'commentFor',row['commentFor']) %}\r\n{% const UserDetails = JSON.parse(localStorage.getItem(\"UserDetails\"))%}\r\n{% const groups = UserDetails[\"groups\"]; %}\r\n\r\n{% if((groups.includes(\"/formsflow/formsflow-reviewer/formsflow-client-reviewer\") || groups.includes(\"/formsflow/formsflow-reviewer/lrs-approving-authority\") || groups.includes(\"/formsflow/formsflow-client\")) && row['commentFor']==='external'){ %}\r\n\r\n\r\n\r\n
\r\n\r\n {% util.eachComponent(components, function(component) { %}\r\n {% if (displayValue(component) && component.key !== 'commentFor' ) { %}\r\n {% console.log(\"row-key\",component.key,row[component.key]) %}\r\n {% const UserDetails = JSON.parse(localStorage.getItem(\"UserDetails\"))%}\r\n{% const groups = UserDetails[\"groups\"]; %}\r\n{% if((groups.includes(\"/formsflow/formsflow-reviewer/formsflow-client-reviewer\") || groups.includes(\"/formsflow/formsflow-reviewer/lrs-approving-authority\") || groups.includes(\"/formsflow/formsflow-client\")) && row['commentFor']==='external'){ %}\r\n{% if(component.key == 'comments') { %}\r\n
\r\n {{ getView(component, row[component.key])}}\r\n
\r\n{% } else { %}\r\n
\r\n {{ getView(component, row[component.key])}}\r\n
\r\n{%}%}\r\n \r\n\r\n {% } %}\r\n {% } %}\r\n {% }) %}\r\n {% if (!instance.options.readOnly && !instance.disabled) { %}\r\n {% const UserDetails = JSON.parse(localStorage.getItem(\"UserDetails\"))%}\r\n{% const groups = UserDetails[\"groups\"]; %}\r\n{% if((groups.includes(\"/formsflow/formsflow-reviewer/formsflow-client-reviewer\") || groups.includes(\"/formsflow/formsflow-reviewer/lrs-approving-authority\") || groups.includes(\"/formsflow/formsflow-client\")) && row['commentFor']==='external'){ %}\r\n
\r\n
\r\n \r\n {% if (!instance.hasRemoveButtons || instance.hasRemoveButtons()) { %}\r\n \r\n {% } %}\r\n
\r\n
\r\n \r\n {% } %}\r\n {% } %}\r\n
\r\n {% } else if (groups.includes(\"/formsflow/formsflow-reviewer/site-information-advisor\")) { %}\r\n
\r\n {% util.eachComponent(components, function(component) { %}\r\n {% console.log('for sia') %}\r\n {% if (displayValue(component)) { %}\r\n {% if(component.key == 'comments') { %}\r\n
{{ getView(component, row[component.key])}}
\r\n{% } else { %}\r\n
{{ getView(component, row[component.key])}}
\r\n{% } %} \r\n \r\n {% } %}\r\n {% }) %}\r\n {% if (!instance.options.readOnly && !instance.disabled) { %}\r\n
\r\n
\r\n \r\n {% if (!instance.hasRemoveButtons || instance.hasRemoveButtons()) { %}\r\n \r\n {% } %}\r\n
\r\n
\r\n {% } %}\r\n
\r\n {% } %}\r\n \r\n \r\n \r\n{% const emptyElements = []; %}\r\n{% const elements = document.getElementsByClassName(\"list-group-item\"); %}\r\n{% for (let i = 0; i < elements.length; i++) { %}\r\n{% const element = elements[i]; %}\r\n{% if(element.querySelectorAll('div.row').length===0){(element).remove() }} %}", - "tableRow": "\n {% util.eachComponent(components, function(component) { %}\n {% if (!component.hasOwnProperty('tableView') || component.tableView) { %}\n \n {% } %}\n {% }) %}\n {% if (!instance.options.readOnly && !instance.disabled) { %}\n \n {% } %}\n ", - "footer": "" - }, - "rowClass": "", - "addAnother": "", - "modal": false, - "saveRow": "", - "removeRow": "Cancel", - "persistent": true, - "inlineEdit": false, - "protected": false, - "dbIndex": false, - "encrypted": false, - "redrawOn": "", - "clearOnHide": true, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "allowCalculateOverride": false, - "validateOn": "change", - "validate": { - "required": false, - "customMessage": "", - "custom": "const emptyElements = [];\r\nconst elements = document.getElementsByClassName(\"list-group-item\");\r\nfor (let i = 0; i < elements.length; i++) {\r\nconst element = elements[i];\r\nconsole.log('in validation remove');\r\nif(element.querySelectorAll('div.row').length===0){(element).remove() }\r\n \r\n}\r\n\r\n\r\nvar b =JSON.parse(localStorage.getItem('UserDetails'))\r\nif(b.groups.indexOf('/formsflow/formsflow-client') > -1 || b.groups.indexOf('/formsflow/formsflow-reviewer/lrs-approving-authority') > -1 || b.groups.indexOf('/formsflow/formsflow-reviewer/formsflow-client-reviewer') > -1 )\r\n{\r\ndocument.querySelector(\"[ref='editgrid-notesSOSC-addRow']\").remove();\r\nvar editButtons = document.querySelectorAll('button.btn.btn-default.btn-light.btn-sm.editRow');\r\nfor(i=0;ix.commentFor==='external').length > 0)\r\nshow = true;\r\nelse\r\nshow = false;\r\n}\r\nelse\r\n{\r\n show = true;\r\n}\r\n", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "editgrid", - "displayAsTable": false, - "input": true, + "title": "Reviewer Actions", + "collapsible": false, + "key": "soscBundleActions", + "customConditional": "\r\nconst UserDetails = JSON.parse(localStorage.getItem(\"UserDetails\"))\r\nconst roles = UserDetails[\"role\"];\r\n\r\nif(roles.includes(\"formsflow-reviewer/cssa-team\") || \r\nroles.includes(\"formsflow-reviewer/cssa-manager\") ||\r\nroles.includes(\"formsflow-reviewer/csap\") || \r\nroles.includes(\"formsflow-reviewer/csap-society\")|| \r\nroles.includes(\"formsflow-reviewer/caseworker\")|| \r\nroles.includes(\"formsflow-reviewer/sdm\")) {\r\n if (data.riskclassification === \"exempt\"){\r\n show = true;\r\n } else {\r\n show = false;\r\n }\r\n}\r\nelse\r\n{\r\n show = false;\r\n}", + "type": "panel", + "label": "Panel", + "input": false, + "tableView": false, "components": [ { "label": "Columns", @@ -591,13 +597,15 @@ { "components": [ { - "label": "Notes", - "autoExpand": false, - "tableView": true, - "key": "notesSOSC", - "type": "textarea", + "label": "Previous Reviewer", + "action": "custom", + "showValidations": false, + "tableView": false, + "key": "sendBundleToPreviousReviewer", + "customConditional": "const UserDetails = JSON.parse(localStorage.getItem(\"UserDetails\"))\r\n\r\n\r\n\r\nconst roles = UserDetails[\"role\"];\r\n\r\n\r\nif(\r\n(roles.includes(\"formsflow-reviewer/csap\") || roles.includes(\"formsflow-reviewer/cssa-team\")) && \r\n(data.applicationStatus===\"New\" || data.applicationStatus===\"Resubmitted\" || data.applicationStatus===\"Recheck\") \r\n) {\r\n show = false;\r\n}\r\nelse\r\n{\r\n show = true;\r\n}", + "type": "button", + "custom": "form.emit('customEvent', {\r\n type: \"actionComplete\", \r\n component: component,\r\n actionType:'Recheck'\r\n });", "input": true, - "keyModified": true, "placeholder": "", "prefix": "", "customClass": "", @@ -606,13 +614,13 @@ "defaultValue": null, "protected": false, "unique": false, - "persistent": true, + "persistent": false, "hidden": false, "clearOnHide": true, "refreshOn": "", "redrawOn": "", "modalEdit": false, - "dataGridLabel": false, + "dataGridLabel": true, "labelPosition": "top", "description": "", "errorLabel": "", @@ -636,12 +644,7 @@ "customPrivate": false, "strictDateValidation": false, "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "", - "minWords": "", - "maxWords": "" + "unique": false }, "conditional": { "show": null, @@ -662,64 +665,50 @@ "properties": {}, "allowMultipleMasks": false, "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "html", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "rows": 3, - "wysiwyg": false, - "editor": "", - "fixedSize": true, - "id": "ewhsx7p" + "size": "md", + "leftIcon": "", + "rightIcon": "", + "block": false, + "disableOnInvalid": false, + "theme": "primary", + "id": "e9xv8c" } ], - "width": 4, + "width": 3, "offset": 0, "push": 0, "pull": 0, "size": "md", - "currentWidth": 4 + "currentWidth": 3 }, { "components": [ { - "label": "Visibility", - "optionsLabelPosition": "right", - "inline": false, - "tableView": true, - "defaultValue": "internal", - "values": [ - { - "label": "Internal", - "value": "internal", - "shortcut": "" - }, - { - "label": "External", - "value": "external", - "shortcut": "" - } - ], - "key": "commentFor", - "type": "radio", + "label": "Next Reviewer", + "action": "custom", + "showValidations": false, + "tableView": false, + "key": "sendBundleToNextReviewer", + "customConditional": "\r\nconst UserDetails = JSON.parse(localStorage.getItem(\"UserDetails\"))\r\n\r\n\r\n\r\nconst roles = UserDetails[\"role\"];\r\n\r\n\r\nif(roles.includes(\"formsflow-reviewer/cssa-team\") || \r\nroles.includes(\"formsflow-reviewer/cssa-manager\") || \r\nroles.includes(\"formsflow-reviewer/csap\") || \r\nroles.includes(\"formsflow-reviewer/csap-society\") || \r\nroles.includes(\"formsflow-reviewer/caseworker\")) {\r\n show = true;\r\n}\r\nelse\r\n{\r\n show = false;\r\n}", + "type": "button", + "custom": "const UserDetails = JSON.parse(localStorage.getItem(\"UserDetails\"))\r\nconst roles = UserDetails[\"role\"];\r\nif(roles.includes(\"formsflow-reviewer/cssa-manager\") && \r\n(data.selectSoscSdm===''||data.selectSoscSdm===undefined|| \r\n(data.typeOfReview==='directToMinistryApplication'&&data.selectSoscCaseworker===undefined|| data.selectSoscCaseworker==='')))\r\n{\r\n alert('Please assign reviewers to continue!');\r\n \r\n}\r\nelse\r\n{\r\n form.emit('customEvent', {\r\n type: \"actionComplete\", \r\n component: component,\r\n actionType:'Accepted'\r\n });\r\n}", "input": true, + "keyModified": true, "placeholder": "", "prefix": "", "customClass": "", "suffix": "", "multiple": false, + "defaultValue": null, "protected": false, "unique": false, - "persistent": true, + "persistent": false, "hidden": false, "clearOnHide": true, "refreshOn": "", "redrawOn": "", "modalEdit": false, - "dataGridLabel": false, + "dataGridLabel": true, "labelPosition": "top", "description": "", "errorLabel": "", @@ -732,7 +721,9 @@ "customDefaultValue": "", "calculateValue": "", "calculateServer": false, - "widget": null, + "widget": { + "type": "input" + }, "attributes": {}, "validateOn": "change", "validate": { @@ -741,8 +732,7 @@ "customPrivate": false, "strictDateValidation": false, "multiple": false, - "unique": false, - "onlyAvailableItems": false + "unique": false }, "conditional": { "show": null, @@ -763,27 +753,23 @@ "properties": {}, "allowMultipleMasks": false, "addons": [], - "inputType": "radio", - "fieldSet": false, - "id": "eg6l854" - } - ], - "width": 2, - "offset": 0, - "push": 0, - "pull": 0, - "size": "md", - "currentWidth": 2 - }, - { - "components": [ + "size": "md", + "leftIcon": "", + "rightIcon": "", + "block": false, + "disableOnInvalid": false, + "theme": "primary", + "id": "e5d0iuo" + }, { - "label": "Role", - "disabled": true, - "tableView": true, - "customDefaultValue": "var b =JSON.parse(localStorage.getItem('UserDetails'))\r\nif(b.groups.indexOf('/formsflow/formsflow-client') > -1 )\r\n{\r\n value = 'Client'\r\n}\r\nelse if(b.groups.indexOf('/formsflow/formsflow-reviewer/site-information-advisor') > -1 )\r\n{\r\n value = 'SIA'\r\n}", - "key": "role", - "type": "textfield", + "label": "Approved", + "action": "custom", + "showValidations": false, + "tableView": false, + "key": "approveBundle", + "customConditional": "const UserDetails = JSON.parse(localStorage.getItem(\"UserDetails\"))\r\n\r\n\r\n\r\nconst roles = UserDetails[\"role\"];\r\n\r\n\r\nif(roles.includes(\"formsflow-reviewer/sdm\")) {\r\n show = true;\r\n}\r\nelse\r\n{\r\n show = false;\r\n}", + "type": "button", + "custom": "\r\nform.emit('customEvent', {\r\n type: \"actionComplete\", \r\n component: component,\r\n actionType: 'Approved'\r\n})", "input": true, "placeholder": "", "prefix": "", @@ -793,21 +779,23 @@ "defaultValue": null, "protected": false, "unique": false, - "persistent": true, + "persistent": false, "hidden": false, "clearOnHide": true, "refreshOn": "", "redrawOn": "", "modalEdit": false, - "dataGridLabel": false, + "dataGridLabel": true, "labelPosition": "top", "description": "", "errorLabel": "", "tooltip": "", "hideLabel": false, "tabindex": "", + "disabled": false, "autofocus": false, "dbIndex": false, + "customDefaultValue": "", "calculateValue": "", "calculateServer": false, "widget": { @@ -821,10 +809,7 @@ "customPrivate": false, "strictDateValidation": false, "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" + "unique": false }, "conditional": { "show": null, @@ -845,32 +830,34 @@ "properties": {}, "allowMultipleMasks": false, "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "esrtubp" + "size": "md", + "leftIcon": "", + "rightIcon": "", + "block": false, + "disableOnInvalid": false, + "theme": "primary", + "id": "eu9gwi" } ], - "size": "md", - "width": 2, + "width": 3, "offset": 0, "push": 0, "pull": 0, - "currentWidth": 2 + "size": "md", + "currentWidth": 3 }, { "components": [ { - "label": "Created By", - "disabled": true, - "tableView": true, - "customDefaultValue": "value = JSON.parse( localStorage.UserDetails).name ", - "key": "createdBy", - "type": "textfield", + "label": "Needs More Info", + "action": "custom", + "showValidations": false, + "theme": "warning", + "tableView": false, + "key": "sendBundleToApplicant", + "customConditional": "const UserDetails = JSON.parse(localStorage.getItem(\"UserDetails\"))\r\nconst roles = UserDetails[\"role\"];\r\n\r\nif(roles.includes(\"formsflow-reviewer/cssa-manager\")) {\r\n show = false;\r\n}\r\nelse\r\n{\r\n show = true;\r\n}", + "type": "button", + "custom": "form.emit('customEvent', {\r\n type: \"actionComplete\", \r\n component: component,\r\n actionType:'Returned'\r\n });", "input": true, "placeholder": "", "prefix": "", @@ -880,21 +867,23 @@ "defaultValue": null, "protected": false, "unique": false, - "persistent": true, + "persistent": false, "hidden": false, "clearOnHide": true, "refreshOn": "", "redrawOn": "", "modalEdit": false, - "dataGridLabel": false, + "dataGridLabel": true, "labelPosition": "top", "description": "", "errorLabel": "", "tooltip": "", "hideLabel": false, "tabindex": "", + "disabled": false, "autofocus": false, "dbIndex": false, + "customDefaultValue": "", "calculateValue": "", "calculateServer": false, "widget": { @@ -908,10 +897,7 @@ "customPrivate": false, "strictDateValidation": false, "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" + "unique": false }, "conditional": { "show": null, @@ -932,32 +918,33 @@ "properties": {}, "allowMultipleMasks": false, "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "elcgok" + "size": "md", + "leftIcon": "", + "rightIcon": "", + "block": false, + "disableOnInvalid": false, + "id": "esfoixl" } ], "size": "md", - "width": 2, + "width": 3, "offset": 0, "push": 0, "pull": 0, - "currentWidth": 2 + "currentWidth": 3 }, { "components": [ { - "label": "Created At", - "disabled": true, - "tableView": true, - "customDefaultValue": "value = (new Date()).toLocaleDateString() + ' At ' + (new Date()).toLocaleTimeString()", - "key": "createdAt", - "type": "textfield", + "label": "Reject Form", + "action": "custom", + "showValidations": false, + "theme": "danger", + "tableView": false, + "key": "rejectBundle", + "customConditional": "const UserDetails = JSON.parse(localStorage.getItem(\"UserDetails\"))\r\n\r\nconst roles = UserDetails[\"role\"];\r\n\r\nif(roles.includes(\"formsflow-reviewer\") && \r\n!(roles.includes(\"formsflow-reviewer/cssa-manager\") || \r\nroles.includes(\"formsflow-reviewer/csap\") ||\r\nroles.includes(\"formsflow-reviewer/csap-society\"))) {\r\n show = true;\r\n}\r\nelse\r\n{\r\n show = false;\r\n}", + "type": "button", + "custom": "\r\nform.emit('customEvent', {\r\n type: \"actionComplete\", \r\n component: component,\r\n actionType: 'Rejected'\r\n}); ", "input": true, "placeholder": "", "prefix": "", @@ -967,21 +954,23 @@ "defaultValue": null, "protected": false, "unique": false, - "persistent": true, + "persistent": false, "hidden": false, "clearOnHide": true, "refreshOn": "", "redrawOn": "", "modalEdit": false, - "dataGridLabel": false, + "dataGridLabel": true, "labelPosition": "top", "description": "", "errorLabel": "", "tooltip": "", "hideLabel": false, "tabindex": "", + "disabled": false, "autofocus": false, "dbIndex": false, + "customDefaultValue": "", "calculateValue": "", "calculateServer": false, "widget": { @@ -995,10 +984,7 @@ "customPrivate": false, "strictDateValidation": false, "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" + "unique": false }, "conditional": { "show": null, @@ -1019,22 +1005,680 @@ "properties": {}, "allowMultipleMasks": false, "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "emurgb" + "size": "md", + "leftIcon": "", + "rightIcon": "", + "block": false, + "disableOnInvalid": false, + "id": "eh5xh0h" } ], "size": "md", - "width": 2, + "width": 3, "offset": 0, "push": 0, "pull": 0, - "currentWidth": 2 + "currentWidth": 3 + } + ], + "key": "columns", + "type": "columns", + "input": false, + "tableView": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "hidden": false, + "clearOnHide": false, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "tree": false, + "lazyLoad": false, + "autoAdjust": false, + "id": "epe166" + } + ], + "keyModified": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": false, + "hidden": false, + "clearOnHide": false, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "tree": false, + "lazyLoad": false, + "theme": "default", + "breadcrumb": "default", + "id": "eiaowx6" + }, + { + "label": "Edit Grid", + "labelPosition": "top", + "description": "", + "tooltip": "", + "customClass": "", + "tabindex": "", + "openWhenEmpty": false, + "disableAddingRemovingRows": false, + "conditionalAddButton": "", + "hidden": false, + "hideLabel": true, + "autofocus": false, + "disabled": false, + "tableView": true, + "modalEdit": false, + "templates": { + "header": "\r\n{% console.log(\"row-key header\",'commentFor',row['commentFor']) %}\r\n{% const UserDetails = JSON.parse(localStorage.getItem(\"UserDetails\"))%}\r\n{% const groups = UserDetails[\"groups\"]; %}\r\n\r\n{% if(groups.includes(\"/formsflow/formsflow-reviewer/formsflow-client-reviewer\") || groups.includes(\"/formsflow/formsflow-reviewer/lrs-approving-authority\") || groups.includes(\"/formsflow/formsflow-client\")){ %}\r\n\r\n
\r\n {% util.eachComponent(components, function(component) { %}\r\n {% if (displayValue(component) && component.key !== 'commentFor' ) { %}\r\n {% if(component.label === 'Notes') { %}\r\n
{{ t(component.label) }}
\r\n {% } else if(component.key !== 'comments') { %}\r\n
{{ t(component.label) }}
\r\n {% } %}\r\n {% } %}\r\n {% }) %}\r\n
\r\n\r\n{% } else { %}\r\n\r\n
\r\n {% util.eachComponent(components, function(component) { %}\r\n {% if (displayValue(component)) { %}\r\n {% if(component.key == 'comments') { %}\r\n
{{ t(component.label)}}
\r\n{% } else { %}\r\n
{{ t(component.label)}}
\r\n{% } %} \r\n {% } %}\r\n {% }) %}\r\n
\r\n\r\n{% } %}", + "tableHeader": "\n
\n {% util.eachComponent(components, function(component) { %}\n {% if (!component.hasOwnProperty('tableView') || component.tableView) { %}\n \n {% } %}\n {% }) %}\n {% if (!instance.options.readOnly && !instance.disabled) { %}\n \n {% } %}\n \n ", + "row": "{% console.log(\"row-key main\",'commentFor',row['commentFor']) %}\r\n{% const UserDetails = JSON.parse(localStorage.getItem(\"UserDetails\"))%}\r\n{% const groups = UserDetails[\"groups\"]; %}\r\n\r\n{% if((groups.includes(\"/formsflow/formsflow-reviewer/formsflow-client-reviewer\") || groups.includes(\"/formsflow/formsflow-reviewer/lrs-approving-authority\") || groups.includes(\"/formsflow/formsflow-client\")) && row['commentFor']==='external'){ %}\r\n\r\n\r\n\r\n
\r\n\r\n {% util.eachComponent(components, function(component) { %}\r\n {% if (displayValue(component) && component.key !== 'commentFor' ) { %}\r\n {% console.log(\"row-key\",component.key,row[component.key]) %}\r\n {% const UserDetails = JSON.parse(localStorage.getItem(\"UserDetails\"))%}\r\n{% const groups = UserDetails[\"groups\"]; %}\r\n{% if((groups.includes(\"/formsflow/formsflow-reviewer/formsflow-client-reviewer\") || groups.includes(\"/formsflow/formsflow-reviewer/lrs-approving-authority\") || groups.includes(\"/formsflow/formsflow-client\")) && row['commentFor']==='external'){ %}\r\n{% if(component.key == 'comments') { %}\r\n
\r\n {{ getView(component, row[component.key])}}\r\n
\r\n{% } else { %}\r\n
\r\n {{ getView(component, row[component.key])}}\r\n
\r\n{%}%}\r\n \r\n\r\n {% } %}\r\n {% } %}\r\n {% }) %}\r\n {% if (!instance.options.readOnly && !instance.disabled) { %}\r\n {% const UserDetails = JSON.parse(localStorage.getItem(\"UserDetails\"))%}\r\n{% const groups = UserDetails[\"groups\"]; %}\r\n{% if((groups.includes(\"/formsflow/formsflow-reviewer/formsflow-client-reviewer\") || groups.includes(\"/formsflow/formsflow-reviewer/lrs-approving-authority\") || groups.includes(\"/formsflow/formsflow-client\")) && row['commentFor']==='external'){ %}\r\n
\r\n
\r\n \r\n {% if (!instance.hasRemoveButtons || instance.hasRemoveButtons()) { %}\r\n \r\n {% } %}\r\n
\r\n
\r\n \r\n {% } %}\r\n {% } %}\r\n
\r\n {% } else if (groups.includes(\"/formsflow/formsflow-reviewer/site-information-advisor\")) { %}\r\n
\r\n {% util.eachComponent(components, function(component) { %}\r\n {% console.log('for sia') %}\r\n {% if (displayValue(component)) { %}\r\n {% if(component.key == 'comments') { %}\r\n
{{ getView(component, row[component.key])}}
\r\n{% } else { %}\r\n
{{ getView(component, row[component.key])}}
\r\n{% } %} \r\n \r\n {% } %}\r\n {% }) %}\r\n {% if (!instance.options.readOnly && !instance.disabled) { %}\r\n
\r\n
\r\n \r\n {% if (!instance.hasRemoveButtons || instance.hasRemoveButtons()) { %}\r\n \r\n {% } %}\r\n
\r\n
\r\n {% } %}\r\n
\r\n {% } %}\r\n \r\n \r\n \r\n{% const emptyElements = []; %}\r\n{% const elements = document.getElementsByClassName(\"list-group-item\"); %}\r\n{% for (let i = 0; i < elements.length; i++) { %}\r\n{% const element = elements[i]; %}\r\n{% if(element.querySelectorAll('div.row').length===0){(element).remove() }} %}", + "tableRow": "\n {% util.eachComponent(components, function(component) { %}\n {% if (!component.hasOwnProperty('tableView') || component.tableView) { %}\n \n {% } %}\n {% }) %}\n {% if (!instance.options.readOnly && !instance.disabled) { %}\n \n {% } %}\n ", + "footer": "" + }, + "rowClass": "", + "addAnother": "", + "modal": false, + "saveRow": "", + "removeRow": "Cancel", + "persistent": true, + "inlineEdit": false, + "protected": false, + "dbIndex": false, + "encrypted": false, + "redrawOn": "", + "clearOnHide": true, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "allowCalculateOverride": false, + "validateOn": "change", + "validate": { + "required": false, + "customMessage": "", + "custom": "const emptyElements = [];\r\nconst elements = document.getElementsByClassName(\"list-group-item\");\r\nfor (let i = 0; i < elements.length; i++) {\r\nconst element = elements[i];\r\nif(element.querySelectorAll('div.row').length===0){(element).remove() }\r\n \r\n}\r\n\r\n\r\nvar b =JSON.parse(localStorage.getItem('UserDetails'))\r\nif(b.groups.indexOf('/formsflow/formsflow-client') > -1 || b.groups.indexOf('/formsflow/formsflow-reviewer/lrs-approving-authority') > -1 || b.groups.indexOf('/formsflow/formsflow-reviewer/formsflow-client-reviewer') > -1 )\r\n{\r\ndocument.querySelector(\"[ref='editgrid-notesSOSC-addRow']\").remove();\r\nvar editButtons = document.querySelectorAll('button.btn.btn-default.btn-light.btn-sm.editRow');\r\nfor(i=0;ix.commentFor==='external').length > 0)\r\nshow = true;\r\nelse\r\nshow = false;\r\n}\r\nelse\r\n{\r\n show = true;\r\n}\r\n", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "editgrid", + "displayAsTable": false, + "input": true, + "components": [ + { + "label": "Columns", + "columns": [ + { + "components": [ + { + "label": "Notes", + "autoExpand": false, + "tableView": true, + "key": "notesSOSC", + "type": "textarea", + "input": true, + "keyModified": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "", + "minWords": "", + "maxWords": "" + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "html", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "rows": 3, + "wysiwyg": false, + "editor": "", + "fixedSize": true, + "id": "ewhsx7p" + } + ], + "width": 4, + "offset": 0, + "push": 0, + "pull": 0, + "size": "md", + "currentWidth": 4 + }, + { + "components": [ + { + "label": "Visibility", + "optionsLabelPosition": "right", + "inline": false, + "tableView": true, + "defaultValue": "internal", + "values": [ + { + "label": "Internal", + "value": "internal", + "shortcut": "" + }, + { + "label": "External", + "value": "external", + "shortcut": "" + } + ], + "key": "commentFor", + "type": "radio", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "onlyAvailableItems": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "inputType": "radio", + "fieldSet": false, + "id": "eg6l854" + } + ], + "width": 2, + "offset": 0, + "push": 0, + "pull": 0, + "size": "md", + "currentWidth": 2 + }, + { + "components": [ + { + "label": "Role", + "disabled": true, + "tableView": true, + "customDefaultValue": "var b =JSON.parse(localStorage.getItem('UserDetails'))\r\nif(b.groups.indexOf('/formsflow/formsflow-client') > -1 )\r\n{\r\n value = 'Client'\r\n}\r\nelse if(b.groups.indexOf('/formsflow/formsflow-reviewer/site-information-advisor') > -1 )\r\n{\r\n value = 'SIA'\r\n}", + "key": "role", + "type": "textfield", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "autofocus": false, + "dbIndex": false, + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "esrtubp" + } + ], + "size": "md", + "width": 2, + "offset": 0, + "push": 0, + "pull": 0, + "currentWidth": 2 + }, + { + "components": [ + { + "label": "Created By", + "disabled": true, + "tableView": true, + "customDefaultValue": "value = JSON.parse( localStorage.UserDetails).name ", + "key": "createdBy", + "type": "textfield", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "autofocus": false, + "dbIndex": false, + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "elcgok" + } + ], + "size": "md", + "width": 2, + "offset": 0, + "push": 0, + "pull": 0, + "currentWidth": 2 + }, + { + "components": [ + { + "label": "Created At", + "disabled": true, + "tableView": true, + "customDefaultValue": "value = (new Date()).toLocaleDateString() + ' At ' + (new Date()).toLocaleTimeString()", + "key": "createdAt", + "type": "textfield", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "autofocus": false, + "dbIndex": false, + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "mask": false, + "inputType": "text", + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "emurgb" + } + ], + "size": "md", + "width": 2, + "offset": 0, + "push": 0, + "pull": 0, + "currentWidth": 2 } ], "key": "columns", @@ -1182,7 +1826,7 @@ "unique": false, "onlyAvailableItems": false }, - "key": "selectCssaSdm", + "key": "selectSoscSdm", "type": "select", "selectValues": "data", "disableLimit": false, @@ -1315,7 +1959,7 @@ "unique": false, "onlyAvailableItems": false }, - "key": "selectCssaCaseworker", + "key": "selectSoscCaseworker", "customConditional": "if (data.typeOfReview==='applicationViaTheSocietyOfContaminatedSitesApprovedProfessionalsOfBc')\n{\n show = false;\n}\nelse {\n show = true;\n}", "type": "select", "selectValues": "data", @@ -1545,6 +2189,148 @@ "breadcrumb": "default", "id": "ecgbuxt" }, + { + "label": "hiddenUserIdForFormSharingApplicantAsOwner", + "customClass": "", + "modalEdit": false, + "defaultValue": null, + "persistent": true, + "protected": false, + "dbIndex": false, + "encrypted": false, + "redrawOn": "", + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "key": "hiddenUserIdForFormSharingApplicantAsOwner", + "tags": [], + "properties": {}, + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "hidden", + "input": true, + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "unique": false, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "tableView": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "widget": { + "type": "input" + }, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "allowCalculateOverride": false, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "inputType": "hidden", + "id": "e51bxw" + }, + { + "label": "hiddenUserIdForFormSharingWithDiffOwner", + "customClass": "", + "modalEdit": false, + "defaultValue": null, + "persistent": true, + "protected": false, + "dbIndex": false, + "encrypted": false, + "redrawOn": "", + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "key": "hiddenUserIdForFormSharingWithDiffOwner", + "tags": [], + "properties": {}, + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "hidden", + "input": true, + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "unique": false, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "tableView": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "widget": { + "type": "input" + }, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "allowCalculateOverride": false, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "inputType": "hidden", + "id": "eia0fkf" + }, { "html": "

Part 1  - Contact Information

", "label": "Content", @@ -2647,7 +3433,7 @@ "tableView": true, "validate": { "required": true, - "custom": "\r\nvar currentValue = input;\r\nconsole.log('currentValue',currentValue);\r\nfetch('https://forms-flow-api-e38158-dev.apps.silver.devops.gov.bc.ca/user?memberOfGroup=formsflow%2Fformsflow-reviewer%2Fformsflow-client-reviewer',\r\n{'headers':{ 'authorization': 'Bearer '+localStorage.getItem('authToken')},'mode':'cors'})\r\n.then((p)=> {return p.json();}).\r\nthen((x)=>{\r\n data.hiddenUserIdForFormSharing = '' ;\r\n x.find((y)=>{ console.log('currentValue',currentValue); \r\n if( y.email=== currentValue ) \r\n { data.hiddenUserIdForFormSharing = y.id}\r\n\r\n })\r\n\r\n if(data.hiddenUserIdForFormSharing==='')\r\n {\r\n valid = 'Unable to find user with provided email address';\r\n }\r\n else\r\n {\r\n valid = true;\r\n }\r\n\r\n});", + "custom": "\r\nvar currentValue = input;\r\nfetch('https://forms-flow-api-e38158-dev.apps.silver.devops.gov.bc.ca/user?memberOfGroup=formsflow%2Fformsflow-reviewer%2Fformsflow-client-reviewer',\r\n{'headers':{ 'authorization': 'Bearer '+localStorage.getItem('authToken')},'mode':'cors'})\r\n.then((p)=> {return p.json();}).\r\nthen((x)=>{\r\n data.hiddenUserIdForFormSharing = '' ;\r\n x.find((y)=>{ if( y.email=== currentValue ) \r\n { data.hiddenUserIdForFormSharing = y.id}\r\n\r\n })\r\n\r\n if(data.hiddenUserIdForFormSharing==='')\r\n {\r\n valid = 'Unable to find user with provided email address';\r\n }\r\n else\r\n {\r\n valid = true;\r\n }\r\n\r\n});", "customPrivate": false, "strictDateValidation": false, "multiple": false, @@ -2795,19 +3581,9 @@ }, { "label": "Is applicant same as above?", - "labelPosition": "top", "optionsLabelPosition": "right", - "description": "", - "tooltip": "", - "customClass": "", - "tabindex": "", "inline": false, - "hidden": false, - "hideLabel": false, - "autofocus": false, - "disabled": false, "tableView": false, - "modalEdit": false, "values": [ { "label": "Yes", @@ -2820,69 +3596,70 @@ "shortcut": "" } ], - "dataType": "", - "persistent": true, - "protected": false, - "dbIndex": false, - "encrypted": false, - "redrawOn": "", - "clearOnHide": true, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "allowCalculateOverride": false, "validate": { "required": true, - "onlyAvailableItems": false, - "customMessage": "", "custom": "", "customPrivate": false, - "json": "", "strictDateValidation": false, "multiple": false, - "unique": false + "unique": false, + "onlyAvailableItems": false }, - "errorLabel": "", - "errors": "", "key": "isApplicantSameAsAbove", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, "type": "radio", "input": true, "placeholder": "", "prefix": "", + "customClass": "", "suffix": "", "multiple": false, + "defaultValue": null, + "protected": false, "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, "refreshOn": "", + "redrawOn": "", + "modalEdit": false, "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, "widget": null, + "attributes": {}, "validateOn": "change", + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, "showCharCount": false, "showWordCount": false, + "properties": {}, "allowMultipleMasks": false, "addons": [], "inputType": "radio", "fieldSet": false, - "id": "eup055", - "defaultValue": "" + "id": "enx9oad" } ], "collapsible": false, @@ -4318,82 +5095,92 @@ "offset": 0, "components": [ { - "key": "Section1B-LastName", - "type": "textfield", - "input": true, "label": "Last Name", - "tableView": false, - "hideOnChildrenHidden": false, + "labelPosition": "top", "placeholder": "", + "description": "", + "tooltip": "", "prefix": "", - "customClass": "", "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, + "widget": { + "type": "input" + }, + "inputMask": "", + "displayMask": "", + "allowMultipleMasks": false, + "customClass": "", + "tabindex": "", + "autocomplete": "", "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", "hideLabel": false, - "tabindex": "", - "disabled": false, + "showWordCount": false, + "showCharCount": false, + "mask": false, "autofocus": false, + "spellcheck": true, + "disabled": false, + "tableView": false, + "modalEdit": false, + "multiple": false, + "persistent": true, + "inputFormat": "plain", + "protected": false, "dbIndex": false, + "case": "", + "truncateMultipleSpaces": false, + "encrypted": false, + "redrawOn": "", + "clearOnHide": true, "customDefaultValue": "", "calculateValue": "", "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, + "allowCalculateOverride": false, "validateOn": "change", "validate": { - "required": false, + "required": true, + "pattern": "", + "customMessage": "", "custom": "", "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, + "json": "", "minLength": "", "maxLength": "", - "pattern": "" + "strictDateValidation": false, + "multiple": false, + "unique": false }, + "unique": false, + "errorLabel": "", + "errors": "", + "key": "Section1B-LastName", + "tags": [], + "properties": {}, "conditional": { "show": null, "when": null, - "eq": "" + "eq": "", + "json": "" }, + "customConditional": "", + "logic": [], + "attributes": {}, "overlay": { "style": "", + "page": "", "left": "", "top": "", "width": "", "height": "" }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, + "type": "textfield", + "input": true, + "hideOnChildrenHidden": false, + "refreshOn": "", + "dataGridLabel": false, "addons": [], - "mask": false, "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "ewq9vf" + "id": "ehh4qkk", + "defaultValue": "" } ], "currentWidth": 6 @@ -4406,82 +5193,92 @@ "offset": 0, "components": [ { - "key": "Section1B-FirstName", - "type": "textfield", - "input": true, "label": "First Name", - "tableView": false, - "hideOnChildrenHidden": false, + "labelPosition": "top", "placeholder": "", + "description": "", + "tooltip": "", "prefix": "", - "customClass": "", "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, + "widget": { + "type": "input" + }, + "inputMask": "", + "displayMask": "", + "allowMultipleMasks": false, + "customClass": "", + "tabindex": "", + "autocomplete": "", "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", "hideLabel": false, - "tabindex": "", - "disabled": false, + "showWordCount": false, + "showCharCount": false, + "mask": false, "autofocus": false, + "spellcheck": true, + "disabled": false, + "tableView": false, + "modalEdit": false, + "multiple": false, + "persistent": true, + "inputFormat": "plain", + "protected": false, "dbIndex": false, + "case": "", + "truncateMultipleSpaces": false, + "encrypted": false, + "redrawOn": "", + "clearOnHide": true, "customDefaultValue": "", "calculateValue": "", "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, + "allowCalculateOverride": false, "validateOn": "change", "validate": { - "required": false, + "required": true, + "pattern": "", + "customMessage": "", "custom": "", "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, + "json": "", "minLength": "", "maxLength": "", - "pattern": "" + "strictDateValidation": false, + "multiple": false, + "unique": false }, + "unique": false, + "errorLabel": "", + "errors": "", + "key": "Section1B-FirstName", + "tags": [], + "properties": {}, "conditional": { "show": null, "when": null, - "eq": "" + "eq": "", + "json": "" }, + "customConditional": "", + "logic": [], + "attributes": {}, "overlay": { "style": "", + "page": "", "left": "", "top": "", "width": "", "height": "" }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, + "type": "textfield", + "input": true, + "hideOnChildrenHidden": false, + "refreshOn": "", + "dataGridLabel": false, "addons": [], - "mask": false, "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "egx5th9" + "id": "e2couam", + "defaultValue": "" } ], "currentWidth": 6 @@ -5555,82 +6352,92 @@ "offset": 0, "components": [ { - "key": "Section1B-LastName1", - "type": "textfield", - "input": true, "label": "Last Name", - "tableView": false, - "hideOnChildrenHidden": false, + "labelPosition": "top", "placeholder": "", + "description": "", + "tooltip": "", "prefix": "", - "customClass": "", "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, + "widget": { + "type": "input" + }, + "inputMask": "", + "displayMask": "", + "allowMultipleMasks": false, + "customClass": "", + "tabindex": "", + "autocomplete": "", "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", "hideLabel": false, - "tabindex": "", - "disabled": false, + "showWordCount": false, + "showCharCount": false, + "mask": false, "autofocus": false, + "spellcheck": true, + "disabled": false, + "tableView": false, + "modalEdit": false, + "multiple": false, + "persistent": true, + "inputFormat": "plain", + "protected": false, "dbIndex": false, + "case": "", + "truncateMultipleSpaces": false, + "encrypted": false, + "redrawOn": "", + "clearOnHide": true, "customDefaultValue": "", "calculateValue": "", "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, + "allowCalculateOverride": false, "validateOn": "change", "validate": { - "required": false, + "required": true, + "pattern": "", + "customMessage": "", "custom": "", "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, + "json": "", "minLength": "", "maxLength": "", - "pattern": "" + "strictDateValidation": false, + "multiple": false, + "unique": false }, + "unique": false, + "errorLabel": "", + "errors": "", + "key": "Section1B-LastName1", + "tags": [], + "properties": {}, "conditional": { "show": null, "when": null, - "eq": "" + "eq": "", + "json": "" }, + "customConditional": "", + "logic": [], + "attributes": {}, "overlay": { "style": "", + "page": "", "left": "", "top": "", "width": "", "height": "" }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, + "type": "textfield", + "input": true, + "hideOnChildrenHidden": false, + "refreshOn": "", + "dataGridLabel": false, "addons": [], - "mask": false, "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "epx0m9r" + "id": "euvjh55", + "defaultValue": "" } ], "currentWidth": 6 @@ -5643,82 +6450,92 @@ "offset": 0, "components": [ { - "key": "Section1B-FirstName1", - "type": "textfield", - "input": true, "label": "First Name", - "tableView": false, - "hideOnChildrenHidden": false, + "labelPosition": "top", "placeholder": "", + "description": "", + "tooltip": "", "prefix": "", - "customClass": "", "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, + "widget": { + "type": "input" + }, + "inputMask": "", + "displayMask": "", + "allowMultipleMasks": false, + "customClass": "", + "tabindex": "", + "autocomplete": "", "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", "hideLabel": false, - "tabindex": "", - "disabled": false, + "showWordCount": false, + "showCharCount": false, + "mask": false, "autofocus": false, + "spellcheck": true, + "disabled": false, + "tableView": false, + "modalEdit": false, + "multiple": false, + "persistent": true, + "inputFormat": "plain", + "protected": false, "dbIndex": false, + "case": "", + "truncateMultipleSpaces": false, + "encrypted": false, + "redrawOn": "", + "clearOnHide": true, "customDefaultValue": "", "calculateValue": "", "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, + "allowCalculateOverride": false, "validateOn": "change", "validate": { - "required": false, + "required": true, + "pattern": "", + "customMessage": "", "custom": "", "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, + "json": "", "minLength": "", "maxLength": "", - "pattern": "" + "strictDateValidation": false, + "multiple": false, + "unique": false }, + "unique": false, + "errorLabel": "", + "errors": "", + "key": "Section1B-FirstName1", + "tags": [], + "properties": {}, "conditional": { "show": null, "when": null, - "eq": "" + "eq": "", + "json": "" }, + "customConditional": "", + "logic": [], + "attributes": {}, "overlay": { "style": "", + "page": "", "left": "", "top": "", "width": "", "height": "" }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, + "type": "textfield", + "input": true, + "hideOnChildrenHidden": false, + "refreshOn": "", + "dataGridLabel": false, "addons": [], - "mask": false, "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "e5zc8ym" + "id": "ei7qvpq", + "defaultValue": "" } ], "currentWidth": 6 @@ -8174,7 +8991,7 @@ "id": "eco0438" } ], - "id": "edowey0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "id": "edowey00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", "placeholder": "", "prefix": "", "customClass": "", @@ -8505,8 +9322,19 @@ }, { "label": "Land ownership (Source Site) Please select all that apply:", + "labelPosition": "top", "optionsLabelPosition": "right", + "description": "", + "tooltip": "", + "customClass": "", + "tabindex": "", + "inline": false, + "hidden": false, + "hideLabel": false, + "autofocus": false, + "disabled": false, "tableView": false, + "modalEdit": false, "values": [ { "label": "Legally Titled, Registered Property", @@ -8524,71 +9352,74 @@ "shortcut": "" } ], - "key": "landOwnershipSourceSitePleaseSelectAllThatApply", - "type": "selectboxes", - "input": true, - "inputType": "checkbox", - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, + "protected": false, "dbIndex": false, + "encrypted": false, + "redrawOn": "", + "clearOnHide": true, "customDefaultValue": "", "calculateValue": "", "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", + "allowCalculateOverride": false, "validate": { - "required": false, + "required": true, + "onlyAvailableItems": false, + "customMessage": "", "custom": "", "customPrivate": false, + "json": "", "strictDateValidation": false, "multiple": false, - "unique": false, - "onlyAvailableItems": false + "unique": false }, + "errorLabel": "", + "minSelectedCountMessage": "", + "maxSelectedCountMessage": "", + "errors": "", + "key": "landOwnershipSourceSitePleaseSelectAllThatApply", + "tags": [], + "properties": {}, "conditional": { "show": null, "when": null, - "eq": "" + "eq": "", + "json": "" }, + "customConditional": "", + "logic": [], + "attributes": {}, "overlay": { "style": "", + "page": "", "left": "", "top": "", "width": "", "height": "" }, - "allowCalculateOverride": false, - "encrypted": false, + "type": "selectboxes", + "input": true, + "inputType": "checkbox", + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "unique": false, + "refreshOn": "", + "dataGridLabel": false, + "widget": null, + "validateOn": "change", "showCharCount": false, "showWordCount": false, - "properties": {}, "allowMultipleMasks": false, "addons": [], "fieldSet": false, - "inline": false, - "id": "e49h9q" + "id": "e66yx6u", + "defaultValue": { + "legallyTitled": false, + "untitledCrown": false, + "untitledMunicipal": false + } }, { "title": "For Legally Titled, Registered Property (Source Site)", @@ -9245,7 +10076,7 @@ "id": "eqnyhh" } ], - "id": "eskogm00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "id": "eskogm000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", "placeholder": "", "prefix": "", "customClass": "", @@ -9777,7 +10608,7 @@ "addons": [], "tree": false, "lazyLoad": false, - "id": "e0cqfrg00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" + "id": "e0cqfrg000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" } ], "layoutFixed": false, @@ -9876,7 +10707,7 @@ "input": true, "label": "Crown Land File Numbers", "tableView": true, - "id": "elizdoh00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "id": "elizdoh000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", "placeholder": "", "prefix": "", "customClass": "", @@ -10367,7 +11198,7 @@ "calculateServer": false, "allowCalculateOverride": false, "validate": { - "required": false, + "required": true, "onlyAvailableItems": false, "customMessage": "", "custom": "", @@ -10416,7 +11247,7 @@ "addons": [], "inputType": "radio", "fieldSet": false, - "id": "eeowt5", + "id": "e2ysuh", "defaultValue": "" }, { @@ -11264,7 +12095,7 @@ "id": "e6o3au0o" } ], - "id": "erlwlrl000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "id": "erlwlrl00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", "placeholder": "", "prefix": "", "customClass": "", @@ -11489,7 +12320,7 @@ "calculateServer": false, "allowCalculateOverride": false, "validate": { - "required": false, + "required": true, "onlyAvailableItems": false, "customMessage": "", "custom": "", @@ -11538,8 +12369,8 @@ "addons": [], "inputType": "radio", "fieldSet": false, - "id": "eluvwrd", - "defaultValue": "" + "id": "e0vaduj", + "defaultValue": "noTitleRecord" }, { "label": "Land ownership (Impacted Property or Receiving Site) Please select all that apply:", @@ -12287,7 +13118,7 @@ "id": "eg4rrls" } ], - "id": "ehjtgz0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "id": "ehjtgz000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", "placeholder": "", "prefix": "", "customClass": "", @@ -12886,7 +13717,7 @@ "addons": [], "tree": false, "lazyLoad": false, - "id": "emjblk60000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" + "id": "emjblk6000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" } ], "placeholder": "", @@ -12930,7 +13761,7 @@ "input": true, "label": "Crown Land File Numbers", "tableView": true, - "id": "eh8kmqu00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "id": "eh8kmqu0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", "placeholder": "", "prefix": "", "customClass": "", @@ -13839,7 +14670,7 @@ "id": "egqqs34" } ], - "id": "e80y9k8000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "id": "e80y9k8000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", "placeholder": "", "prefix": "", "customClass": "", @@ -15471,423 +16302,473 @@ "components": [ { "label": "Topography", - "description": "Describe steepness, direction of slope and position of site in relation to surrounding land", - "autoExpand": false, - "tableView": true, - "key": "topography", - "type": "textarea", - "input": true, + "labelPosition": "top", "placeholder": "", + "description": "Describe steepness, direction of slope and position of site in relation to surrounding land", + "tooltip": "", "prefix": "", - "customClass": "", "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, + "widget": { + "type": "input" + }, + "displayMask": "", + "editor": "", + "autoExpand": false, + "customClass": "", + "tabindex": "", + "autocomplete": "", "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "errorLabel": "", - "tooltip": "", "hideLabel": false, - "tabindex": "", - "disabled": false, + "showWordCount": false, + "showCharCount": false, "autofocus": false, + "spellcheck": true, + "disabled": false, + "tableView": true, + "modalEdit": false, + "multiple": false, + "persistent": true, + "inputFormat": "html", + "protected": false, "dbIndex": false, + "case": "", + "truncateMultipleSpaces": false, + "encrypted": false, + "redrawOn": "", + "clearOnHide": true, "customDefaultValue": "", "calculateValue": "", "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, + "allowCalculateOverride": false, "validateOn": "change", "validate": { - "required": false, + "required": true, + "pattern": "", + "customMessage": "", "custom": "", "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, + "json": "", "minLength": "", "maxLength": "", - "pattern": "", "minWords": "", - "maxWords": "" + "maxWords": "", + "strictDateValidation": false, + "multiple": false, + "unique": false }, + "unique": false, + "errorLabel": "", + "errors": "", + "key": "topography", + "tags": [], + "properties": {}, "conditional": { "show": null, "when": null, - "eq": "" + "eq": "", + "json": "" }, + "customConditional": "", + "logic": [], + "attributes": {}, "overlay": { "style": "", + "page": "", "left": "", "top": "", "width": "", "height": "" }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, + "type": "textarea", + "rows": 3, + "wysiwyg": false, + "input": true, + "refreshOn": "", + "dataGridLabel": false, "allowMultipleMasks": false, "addons": [], "mask": false, "inputType": "text", - "inputFormat": "html", "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "rows": 3, - "wysiwyg": false, - "editor": "", "fixedSize": true, - "id": "ehhl80m" + "id": "e0d63ci", + "defaultValue": "" }, { "label": "Stratigraphy", - "description": "Describe depth and thickness, grain size, etc. of typical stratigraphic components and note depth to cemented or very compact materials, bedrock / refusal, etc.", - "autoExpand": false, - "tableView": true, - "key": "stratigraphy", - "type": "textarea", - "input": true, + "labelPosition": "top", "placeholder": "", + "description": "Describe depth and thickness, grain size, etc. of typical stratigraphic components and note depth to cemented or very compact materials, bedrock / refusal, etc.", + "tooltip": "", "prefix": "", - "customClass": "", "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, + "widget": { + "type": "input" + }, + "displayMask": "", + "editor": "", + "autoExpand": false, + "customClass": "", + "tabindex": "", + "autocomplete": "", "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "errorLabel": "", - "tooltip": "", "hideLabel": false, - "tabindex": "", - "disabled": false, + "showWordCount": false, + "showCharCount": false, "autofocus": false, + "spellcheck": true, + "disabled": false, + "tableView": true, + "modalEdit": false, + "multiple": false, + "persistent": true, + "inputFormat": "html", + "protected": false, "dbIndex": false, + "case": "", + "truncateMultipleSpaces": false, + "encrypted": false, + "redrawOn": "", + "clearOnHide": true, "customDefaultValue": "", "calculateValue": "", "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, + "allowCalculateOverride": false, "validateOn": "change", "validate": { - "required": false, + "required": true, + "pattern": "", + "customMessage": "", "custom": "", "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, + "json": "", "minLength": "", "maxLength": "", - "pattern": "", "minWords": "", - "maxWords": "" + "maxWords": "", + "strictDateValidation": false, + "multiple": false, + "unique": false }, + "unique": false, + "errorLabel": "", + "errors": "", + "key": "stratigraphy", + "tags": [], + "properties": {}, "conditional": { "show": null, "when": null, - "eq": "" + "eq": "", + "json": "" }, + "customConditional": "", + "logic": [], + "attributes": {}, "overlay": { "style": "", + "page": "", "left": "", "top": "", "width": "", "height": "" }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, + "type": "textarea", + "rows": 3, + "wysiwyg": false, + "input": true, + "refreshOn": "", + "dataGridLabel": false, "allowMultipleMasks": false, "addons": [], "mask": false, "inputType": "text", - "inputFormat": "html", "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "rows": 3, - "wysiwyg": false, - "editor": "", "fixedSize": true, - "id": "etftfyg" + "id": "etgkvg", + "defaultValue": "" }, { "label": "Hydrogeology", - "description": "Describe groundwater levels, confining / semi-confining layers, flow velocity and hydraulic conductivity. Provide arguments and supporting data to show compliance with Protocol 21 \"Water Use Determination\" where a specified groundwater use (DW, AW, IW or LW) has been determined not to apply. Provide explicit statements and description for every geological unit where an exemption from a specified water use is proposed to apply (add additional pages if necessary).", - "autoExpand": false, - "tableView": true, - "key": "hydrogeology", - "type": "textarea", - "input": true, + "labelPosition": "top", "placeholder": "", + "description": "Describe groundwater levels, confining / semi-confining layers, flow velocity and hydraulic conductivity. Provide arguments and supporting data to show compliance with Protocol 21 \"Water Use Determination\" where a specified groundwater use (DW, AW, IW or LW) has been determined not to apply. Provide explicit statements and description for every geological unit where an exemption from a specified water use is proposed to apply (add additional pages if necessary).", + "tooltip": "", "prefix": "", - "customClass": "", "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, + "widget": { + "type": "input" + }, + "displayMask": "", + "editor": "", + "autoExpand": false, + "customClass": "", + "tabindex": "", + "autocomplete": "", "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "errorLabel": "", - "tooltip": "", "hideLabel": false, - "tabindex": "", - "disabled": false, + "showWordCount": false, + "showCharCount": false, "autofocus": false, + "spellcheck": true, + "disabled": false, + "tableView": true, + "modalEdit": false, + "multiple": false, + "persistent": true, + "inputFormat": "html", + "protected": false, "dbIndex": false, + "case": "", + "truncateMultipleSpaces": false, + "encrypted": false, + "redrawOn": "", + "clearOnHide": true, "customDefaultValue": "", "calculateValue": "", "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, + "allowCalculateOverride": false, "validateOn": "change", "validate": { - "required": false, + "required": true, + "pattern": "", + "customMessage": "", "custom": "", "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, + "json": "", "minLength": "", "maxLength": "", - "pattern": "", "minWords": "", - "maxWords": "" + "maxWords": "", + "strictDateValidation": false, + "multiple": false, + "unique": false }, + "unique": false, + "errorLabel": "", + "errors": "", + "key": "hydrogeology", + "tags": [], + "properties": {}, "conditional": { "show": null, "when": null, - "eq": "" + "eq": "", + "json": "" }, + "customConditional": "", + "logic": [], + "attributes": {}, "overlay": { "style": "", + "page": "", "left": "", "top": "", "width": "", "height": "" }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, + "type": "textarea", + "rows": 3, + "wysiwyg": false, + "input": true, + "refreshOn": "", + "dataGridLabel": false, "allowMultipleMasks": false, "addons": [], "mask": false, "inputType": "text", - "inputFormat": "html", "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "rows": 3, - "wysiwyg": false, - "editor": "", "fixedSize": true, - "id": "e2zxth" + "id": "ejzhbnb", + "defaultValue": "" }, { "label": "Surface water features - freshwater ", - "description": "List name, direction and distance to nearest surface water bodies and the characteristics (e.g., relative size / flow) of the water body", - "autoExpand": false, - "tableView": true, - "key": "surfaceWaterFeaturesFreshwater", - "type": "textarea", - "input": true, + "labelPosition": "top", "placeholder": "", + "description": "List name, direction and distance to nearest surface water bodies and the characteristics (e.g., relative size / flow) of the water body", + "tooltip": "", "prefix": "", - "customClass": "", "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, + "widget": { + "type": "input" + }, + "displayMask": "", + "editor": "", + "autoExpand": false, + "customClass": "", + "tabindex": "", + "autocomplete": "", "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "errorLabel": "", - "tooltip": "", "hideLabel": false, - "tabindex": "", - "disabled": false, + "showWordCount": false, + "showCharCount": false, "autofocus": false, + "spellcheck": true, + "disabled": false, + "tableView": true, + "modalEdit": false, + "multiple": false, + "persistent": true, + "inputFormat": "html", + "protected": false, "dbIndex": false, + "case": "", + "truncateMultipleSpaces": false, + "encrypted": false, + "redrawOn": "", + "clearOnHide": true, "customDefaultValue": "", "calculateValue": "", "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, + "allowCalculateOverride": false, "validateOn": "change", "validate": { - "required": false, + "required": true, + "pattern": "", + "customMessage": "", "custom": "", "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, + "json": "", "minLength": "", "maxLength": "", - "pattern": "", "minWords": "", - "maxWords": "" + "maxWords": "", + "strictDateValidation": false, + "multiple": false, + "unique": false }, + "unique": false, + "errorLabel": "", + "errors": "", + "key": "surfaceWaterFeaturesFreshwater", + "tags": [], + "properties": {}, "conditional": { "show": null, "when": null, - "eq": "" + "eq": "", + "json": "" }, + "customConditional": "", + "logic": [], + "attributes": {}, "overlay": { "style": "", + "page": "", "left": "", "top": "", "width": "", "height": "" }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, + "type": "textarea", + "rows": 3, + "wysiwyg": false, + "input": true, + "refreshOn": "", + "dataGridLabel": false, "allowMultipleMasks": false, "addons": [], "mask": false, "inputType": "text", - "inputFormat": "html", "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "rows": 3, - "wysiwyg": false, - "editor": "", "fixedSize": true, - "id": "eqsdwfv" + "id": "etp7mp", + "defaultValue": "" }, { "label": "Surface water features - marine waters", - "description": "List name, direction and distance to nearest surface water bodies and the characteristics (e.g., relative size / flow) of the water body", - "autoExpand": false, - "tableView": true, - "key": "surfaceWaterFeaturesMarineWaters", - "type": "textarea", - "input": true, + "labelPosition": "top", "placeholder": "", + "description": "List name, direction and distance to nearest surface water bodies and the characteristics (e.g., relative size / flow) of the water body", + "tooltip": "", "prefix": "", - "customClass": "", "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, + "widget": { + "type": "input" + }, + "displayMask": "", + "editor": "", + "autoExpand": false, + "customClass": "", + "tabindex": "", + "autocomplete": "", "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "errorLabel": "", - "tooltip": "", "hideLabel": false, - "tabindex": "", - "disabled": false, + "showWordCount": false, + "showCharCount": false, "autofocus": false, + "spellcheck": true, + "disabled": false, + "tableView": true, + "modalEdit": false, + "multiple": false, + "persistent": true, + "inputFormat": "html", + "protected": false, "dbIndex": false, + "case": "", + "truncateMultipleSpaces": false, + "encrypted": false, + "redrawOn": "", + "clearOnHide": true, "customDefaultValue": "", "calculateValue": "", "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, + "allowCalculateOverride": false, "validateOn": "change", "validate": { - "required": false, + "required": true, + "pattern": "", + "customMessage": "", "custom": "", "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, + "json": "", "minLength": "", "maxLength": "", - "pattern": "", "minWords": "", - "maxWords": "" + "maxWords": "", + "strictDateValidation": false, + "multiple": false, + "unique": false }, + "unique": false, + "errorLabel": "", + "errors": "", + "key": "surfaceWaterFeaturesMarineWaters", + "tags": [], + "properties": {}, "conditional": { "show": null, "when": null, - "eq": "" + "eq": "", + "json": "" }, + "customConditional": "", + "logic": [], + "attributes": {}, "overlay": { "style": "", + "page": "", "left": "", "top": "", "width": "", "height": "" }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, + "type": "textarea", + "rows": 3, + "wysiwyg": false, + "input": true, + "refreshOn": "", + "dataGridLabel": false, "allowMultipleMasks": false, "addons": [], "mask": false, "inputType": "text", - "inputFormat": "html", "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "rows": 3, - "wysiwyg": false, - "editor": "", "fixedSize": true, - "id": "exdrjd" + "id": "eng6xqr", + "defaultValue": "" } ], "placeholder": "", @@ -21331,7 +22212,7 @@ "id": "es5kcwo" } ], - "id": "egwgsw0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "id": "egwgsw0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", "placeholder": "", "prefix": "", "customClass": "", @@ -22128,7 +23009,7 @@ "id": "erxxdli" } ], - "id": "e09khr20000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "id": "e09khr20000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", "placeholder": "", "prefix": "", "customClass": "", @@ -22737,7 +23618,7 @@ "id": "eu9o53q" } ], - "id": "eipn9d000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "id": "eipn9d000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", "placeholder": "", "prefix": "", "customClass": "", @@ -23267,7 +24148,7 @@ "id": "ef617zf" } ], - "id": "ebh60il000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "id": "ebh60il000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", "placeholder": "", "prefix": "", "customClass": "", @@ -24038,7 +24919,7 @@ "id": "eak2oy8" } ], - "id": "evgsijp000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "id": "evgsijp000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", "placeholder": "", "prefix": "", "customClass": "", @@ -28112,7 +28993,7 @@ "id": "e9e5bm" } ], - "id": "e6l31cy0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "id": "e6l31cy0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", "placeholder": "", "prefix": "", "customClass": "", @@ -29022,7 +29903,7 @@ "id": "eb274z" } ], - "id": "eauzdys000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "id": "eauzdys000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", "placeholder": "", "prefix": "", "customClass": "", @@ -29617,7 +30498,7 @@ "id": "euj2r2l" } ], - "id": "ey0h0vl00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "id": "ey0h0vl00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", "placeholder": "", "prefix": "", "customClass": "", @@ -30212,7 +31093,7 @@ "id": "ehez7s" } ], - "id": "el9aclo0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "id": "el9aclo0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", "placeholder": "", "prefix": "", "customClass": "", @@ -30807,7 +31688,7 @@ "id": "et10s3fg" } ], - "id": "ehk7lsj000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "id": "ehk7lsj000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", "placeholder": "", "prefix": "", "customClass": "", @@ -31402,7 +32283,7 @@ "id": "eu50tno" } ], - "id": "ejahpfm000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "id": "ejahpfm000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", "placeholder": "", "prefix": "", "customClass": "", @@ -32108,7 +32989,7 @@ "addons": [], "tree": false, "lazyLoad": false, - "id": "etzpsl000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" + "id": "etzpsl000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" } ], "placeholder": "", @@ -32849,7 +33730,7 @@ "defaultValue": "" } ], - "id": "esvz3la0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "id": "esvz3la0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", "placeholder": "", "prefix": "", "customClass": "", @@ -34049,94 +34930,85 @@ }, { "label": "Direct to ministry application?", - "labelPosition": "top", "optionsLabelPosition": "right", - "description": "", - "tooltip": "", - "customClass": "", - "tabindex": "", "inline": false, - "hidden": false, - "hideLabel": false, - "autofocus": false, - "disabled": false, "tableView": false, - "modalEdit": false, "values": [ { "label": "Yes", - "value": "yes", + "value": "true", "shortcut": "" }, { "label": "No", - "value": "no", + "value": "false", "shortcut": "" } ], - "dataType": "", - "persistent": true, + "key": "directToMinistryApplication", + "type": "radio", + "input": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, "protected": false, - "dbIndex": false, - "encrypted": false, - "redrawOn": "", + "unique": false, + "persistent": true, + "hidden": false, "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, "customDefaultValue": "", "calculateValue": "", "calculateServer": false, - "allowCalculateOverride": false, + "widget": null, + "attributes": {}, + "validateOn": "change", "validate": { "required": false, - "onlyAvailableItems": false, - "customMessage": "", "custom": "", "customPrivate": false, - "json": "", "strictDateValidation": false, "multiple": false, - "unique": false + "unique": false, + "onlyAvailableItems": false }, - "errorLabel": "", - "errors": "", - "key": "directToMinistryApplication", - "tags": [], - "properties": {}, "conditional": { "show": null, "when": null, - "eq": "", - "json": "" + "eq": "" }, - "customConditional": "", - "logic": [], - "attributes": {}, "overlay": { "style": "", - "page": "", "left": "", "top": "", "width": "", "height": "" }, - "type": "radio", - "input": true, - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "unique": false, - "refreshOn": "", - "dataGridLabel": false, - "widget": null, - "validateOn": "change", + "allowCalculateOverride": false, + "encrypted": false, "showCharCount": false, "showWordCount": false, + "properties": {}, "allowMultipleMasks": false, "addons": [], "inputType": "radio", "fieldSet": false, - "id": "e9vcbi", - "defaultValue": "" + "id": "e7lksy9" }, { "title": "SECTION I - Certification Document and Summary Recommendation", @@ -34336,8 +35208,26 @@ }, { "label": "Please select those that apply", + "labelPosition": "top", "optionsLabelPosition": "right", + "description": "", + "tooltip": "", + "customClass": "", + "tabindex": "", + "inline": false, + "hidden": false, + "hideLabel": false, + "autofocus": false, + "disabled": false, "tableView": false, + "modalEdit": false, + "defaultValue": { + "aDeterminationUnderSection44OfEma": false, + "anAiPUnderSection531OfEma": false, + "aCoCUnderSection533OfEma": false, + "aSiteRiskReclassification": false, + "other": false + }, "values": [ { "label": "A Determination under section 44 of EMA", @@ -34365,77 +35255,69 @@ "shortcut": "" } ], + "persistent": true, + "protected": false, + "dbIndex": false, + "encrypted": false, + "redrawOn": "", + "clearOnHide": true, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "allowCalculateOverride": false, "validate": { "required": true, + "onlyAvailableItems": false, + "customMessage": "", "custom": "", "customPrivate": false, + "json": "", "strictDateValidation": false, "multiple": false, - "unique": false, - "onlyAvailableItems": false - }, - "key": "pleaseSelectThoseThatApply", - "type": "selectboxes", - "input": true, - "inputType": "checkbox", - "defaultValue": { - "aDeterminationUnderSection44OfEma": false, - "anAiPUnderSection531OfEma": false, - "aCoCUnderSection533OfEma": false, - "aSiteRiskReclassification": false, - "other": false + "unique": false }, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", + "minSelectedCountMessage": "", + "maxSelectedCountMessage": "", + "errors": "", + "key": "recommendationCheckbox", + "tags": [], + "properties": {}, "conditional": { "show": null, "when": null, - "eq": "" + "eq": "", + "json": "" }, + "customConditional": "", + "logic": [], + "attributes": {}, "overlay": { "style": "", + "page": "", "left": "", "top": "", "width": "", "height": "" }, - "allowCalculateOverride": false, - "encrypted": false, + "type": "selectboxes", + "input": true, + "inputType": "checkbox", + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "unique": false, + "refreshOn": "", + "dataGridLabel": false, + "widget": null, + "validateOn": "change", "showCharCount": false, "showWordCount": false, - "properties": {}, "allowMultipleMasks": false, "addons": [], "fieldSet": false, - "inline": false, - "id": "ebm3fb" + "id": "egkjvv6" }, { "label": "Describe:", @@ -34857,12 +35739,12 @@ "values": [ { "label": "Yes", - "value": "yes", + "value": "true", "shortcut": "" }, { "label": "No", - "value": "no", + "value": "false", "shortcut": "" } ], @@ -34890,7 +35772,7 @@ }, "errorLabel": "", "errors": "", - "key": "forARecommendationForADetermination2", + "key": "siteRiskReclassification", "tags": [], "properties": {}, "conditional": { @@ -34927,7 +35809,7 @@ "addons": [], "inputType": "radio", "fieldSet": false, - "id": "ef23oc7", + "id": "el2mw07", "defaultValue": "" }, { @@ -35701,8 +36583,8 @@ "conditional": { "json": "", "show": true, - "when": "forARecommendationForADetermination2", - "eq": "yes" + "when": "siteRiskReclassification", + "eq": "true" }, "logic": [], "attributes": {}, @@ -35786,7 +36668,7 @@ "properties": {}, "allowMultipleMasks": false, "addons": [], - "id": "ecvtkzl" + "id": "ekdiwsi" }, { "label": "Please select", @@ -35868,7 +36750,7 @@ "addons": [], "inputType": "radio", "fieldSet": false, - "id": "el01008" + "id": "eiohx6i" } ], "placeholder": "", @@ -35909,7 +36791,7 @@ "addons": [], "tree": false, "lazyLoad": false, - "id": "edjdlg" + "id": "e3y0rp9" } ], "placeholder": "", @@ -36801,7 +37683,7 @@ "id": "estazfs" } ], - "id": "ef5nwt0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "id": "ef5nwt0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", "placeholder": "", "prefix": "", "customClass": "", @@ -37307,7 +38189,7 @@ "id": "eq5jxk" } ], - "id": "eoq12ev000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "id": "eoq12ev000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", "placeholder": "", "prefix": "", "customClass": "", @@ -37626,7 +38508,7 @@ "id": "enjn8bkh" } ], - "id": "ett43n0j00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "id": "ett43n0j00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", "placeholder": "", "prefix": "", "customClass": "", @@ -37945,7 +38827,7 @@ "id": "ee9w9ok" } ], - "id": "euuaaa0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "id": "euuaaa0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", "placeholder": "", "prefix": "", "customClass": "", @@ -38264,7 +39146,7 @@ "id": "e6efm7o" } ], - "id": "edr4h05000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "id": "edr4h05000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", "placeholder": "", "prefix": "", "customClass": "", @@ -40357,7 +41239,7 @@ "type": "columns", "input": false, "tableView": false, - "id": "ev4kpmc00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "id": "ev4kpmc00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", "placeholder": "", "prefix": "", "customClass": "", @@ -41136,7 +42018,7 @@ "type": "columns", "input": false, "tableView": false, - "id": "ehbime0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "id": "ehbime0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", "placeholder": "", "prefix": "", "customClass": "", @@ -42044,7 +42926,7 @@ "refreshOn": "", "addons": [], "inputType": "text", - "id": "errpqaf00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "id": "errpqaf00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", "defaultValue": "" } ], @@ -42988,7 +43870,7 @@ "allowCalculateOverride": false, "validateOn": "change", "validate": { - "required": false, + "required": true, "pattern": "", "customMessage": "", "custom": "", @@ -43029,94 +43911,7 @@ "dataGridLabel": false, "addons": [], "inputType": "text", - "id": "e0t58xs", - "defaultValue": "" - }, - { - "label": "Postal Code", - "labelPosition": "top", - "placeholder": "", - "description": "", - "tooltip": "", - "prefix": "", - "suffix": "", - "widget": { - "type": "input" - }, - "inputMask": "", - "displayMask": "", - "allowMultipleMasks": false, - "customClass": "", - "tabindex": "", - "autocomplete": "", - "hidden": false, - "hideLabel": false, - "showWordCount": false, - "showCharCount": false, - "mask": false, - "autofocus": false, - "spellcheck": true, - "disabled": false, - "tableView": true, - "modalEdit": false, - "multiple": false, - "persistent": true, - "inputFormat": "plain", - "protected": false, - "dbIndex": false, - "case": "", - "truncateMultipleSpaces": false, - "encrypted": false, - "redrawOn": "", - "clearOnHide": true, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "allowCalculateOverride": false, - "validateOn": "change", - "validate": { - "required": false, - "pattern": "", - "customMessage": "", - "custom": "", - "customPrivate": false, - "json": "", - "minLength": "", - "maxLength": "", - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "unique": false, - "errorLabel": "", - "errors": "", - "key": "postalCode", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "textfield", - "input": true, - "refreshOn": "", - "dataGridLabel": false, - "addons": [], - "inputType": "text", - "id": "edujc18", + "id": "ehvzv6o", "defaultValue": "" }, { @@ -43230,7 +44025,7 @@ "allowCalculateOverride": false, "validateOn": "change", "validate": { - "required": false, + "required": true, "pattern": "", "customMessage": "", "custom": "", @@ -43271,7 +44066,7 @@ "dataGridLabel": false, "addons": [], "inputType": "text", - "id": "ejwgarc", + "id": "e1koxeg", "defaultValue": "" }, { @@ -43317,7 +44112,7 @@ "allowCalculateOverride": false, "validateOn": "change", "validate": { - "required": false, + "required": true, "pattern": "", "customMessage": "", "custom": "", @@ -43358,7 +44153,7 @@ "dataGridLabel": false, "addons": [], "inputType": "text", - "id": "esqr745", + "id": "eiw0krr", "defaultValue": "" } ], @@ -43414,7 +44209,7 @@ "allowCalculateOverride": false, "validateOn": "change", "validate": { - "required": false, + "required": true, "pattern": "", "customMessage": "", "custom": "", @@ -43455,7 +44250,7 @@ "dataGridLabel": false, "addons": [], "inputType": "text", - "id": "eo9uzz", + "id": "es4bja", "defaultValue": "" }, { @@ -43501,7 +44296,7 @@ "allowCalculateOverride": false, "validateOn": "change", "validate": { - "required": false, + "required": true, "pattern": "", "customMessage": "", "custom": "", @@ -43542,7 +44337,7 @@ "dataGridLabel": false, "addons": [], "inputType": "text", - "id": "e62t8ss", + "id": "e893hnl", "defaultValue": "" } ], @@ -43709,6 +44504,217 @@ "rightIcon": "", "id": "emkrxp" }, + { + "label": "bundleStatus", + "customClass": "", + "modalEdit": false, + "defaultValue": null, + "persistent": true, + "protected": false, + "dbIndex": false, + "encrypted": false, + "redrawOn": "", + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "key": "bundleStatus", + "tags": [], + "properties": {}, + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "hidden", + "input": true, + "tableView": false, + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "unique": false, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "widget": { + "type": "input" + }, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "allowCalculateOverride": false, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "inputType": "hidden", + "id": "eryzjur" + }, + { + "label": "soscUtilKeys", + "customDefaultValue": "const soscKeys = Object.keys(\n      utils.flattenComponents(form.components, false)\n    );\n\nvalue = soscKeys;", + "key": "soscUtilKeys", + "type": "hidden", + "input": true, + "tableView": false, + "keyModified": true, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "calculateValue": "", + "calculateServer": false, + "widget": { + "type": "input" + }, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "inputType": "hidden", + "id": "e6did" + }, + { + "label": "soscStatus", + "customClass": "", + "modalEdit": false, + "defaultValue": null, + "persistent": true, + "protected": false, + "dbIndex": false, + "encrypted": false, + "redrawOn": "", + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "key": "soscBundleStatus", + "tags": [], + "properties": {}, + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "hidden", + "input": true, + "tableView": false, + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "unique": false, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "widget": { + "type": "input" + }, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "allowCalculateOverride": false, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "inputType": "hidden", + "id": "epy41s4" + }, { "label": "applicationId", "customClass": "", diff --git a/forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/processes/Bundling/subProcess/SOSCBundleWorklow.bpmn b/forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/processes/Bundling/subProcess/SOSCBundleWorklow.bpmn index cd969b3b..78d57db1 100644 --- a/forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/processes/Bundling/subProcess/SOSCBundleWorklow.bpmn +++ b/forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/processes/Bundling/subProcess/SOSCBundleWorklow.bpmn @@ -13,51 +13,51 @@ Activity_0k6ixqm - Activity_1uc1xs1 Gateway_04o747e + Activity_1uc1xs1 + Gateway_0xsksj8 - Gateway_0oobb3z Activity_08ykdar + Gateway_0oobb3z + Gateway_03fnjoh Activity_1ao3zkj Gateway_15p5urd - - - Activity_0p4hm8r - Gateway_1lbpcug - Event_0sdygwc - Activity_1hs3dja - Activity_1bsz2qm - Gateway_1lgyz1h - Activity_0tsm937 - Gateway_0o9l3lp - Activity_15e3ho6 - Gateway_1m36jwe - Gateway_0uf75ow - Activity_1bhbq4y - Activity_07ttn7q + Gateway_1hfcr71 Activity_0vo5rls - Gateway_1chdumm Activity_1qnqtak Gateway_1lfy3cm + Gateway_0lf4jcq + + + Activity_15e3ho6 + Event_0sdygwc + Activity_0p4hm8r + Activity_1hs3dja + Gateway_1lbpcug + Gateway_0c5c1m3 + + + Activity_0tsm937 + Gateway_0o9l3lp + Gateway_1lgyz1h + Activity_1bsz2qm + Gateway_1d5b9rt ${action == 'Accepted'} - + ${action == 'Rejected'} - - ${!riskclassification} - ${action == 'Recheck'} @@ -112,14 +112,6 @@ - - - - execution.setVariable('bundleUrl', execution.getVariable('formUrl')); - - - ${riskclassification != 'exempt'} - ${action == 'Accepted'} @@ -132,7 +124,7 @@ ${action == 'Returned'} - + ${action == 'Recheck'} @@ -148,7 +140,7 @@ ${action == 'Accepted'} - + ${applicationStatus== 'Resubmitted' and isCssaTeam== true} @@ -161,13 +153,6 @@ ${applicationStatus!= 'Resubmitted'} - - Flow_0bz8atu - Flow_19ktqsm - Flow_0qbjx6e - Flow_1tu4hj7 - Flow_1ev1kr6 - @@ -218,39 +203,11 @@ system.out.println ("isSentFromSociety "+ task.execution.getVariable('isSentFrom Flow_1ev1kr6 Flow_0d8ruax - - - - task.execution.setVariable('isAp',false); - - - - task.execution.setVariable('applicationStatus', task.execution.getVariable('action')); -task.execution.setVariable('deleteReason', "completed"); - - - - - ["applicationId", "applicationStatus"] - - - - Flow_0pzpbn7 - Flow_0527h3y - Flow_1xj96i6 - Flow_0b418rv - - Flow_0b418rv + Flow_1uymx0e Flow_12uv3km Flow_0kfjdmp - - Flow_0d8ruax - Flow_0gb2oz2 - Flow_0qw9o9a - Flow_0pzpbn7 - ${applicationStatus== 'Resubmitted' and isCaseworker== true} @@ -263,7 +220,7 @@ task.execution.setVariable('deleteReason', "completed"); ${action == 'Recheck'} - + @@ -292,807 +249,14 @@ task.execution.setVariable('deleteReason', "completed"); Flow_0aabyhy Flow_0gcqir8 - - Flow_1u3s5mj - Flow_1phkhb3 - - Flow_05vthw4 - Flow_1ojyq91 - Flow_019edzt - Flow_0cdvwnp - var system = java.lang.System; -system.out.println ("Sent to Caseworker"); - - - - - - Y - - - ["pid","applicationId","process_pid","task_id"] - - - - task.execution.setVariable('task_id',task.getId()); -task.execution.setVariableLocal('variable1',"srcr"); - - - task.execution.setVariable('requestStatus', task.execution.getVariable('action')); -task.execution.setVariable('requestType', 'SRCR'); -task.execution.setVariable('deleteReason', "completed"); -task.execution.setVariable('srcrStatus', task.execution.getVariable('action')); -task.execution.setVariable('applicationStatus', task.execution.getVariable('action')); - - - - - - Flow_0cdvwnp - Flow_1ccbyzk - - - Flow_1ccbyzk - Flow_0zzhoui - Flow_1ixkifd - Flow_0pqd76u - Flow_187pabg - - - Flow_1ixkifd - Flow_0izugkb - Flow_0xqj2sm - Flow_1pdey0j - Flow_0qaeplv - var system = java.lang.System; -system.out.println ("Sent to SDM"); - - - - - - Y - - - ["pid","applicationId","process_pid","task_id"] - - - - task.execution.setVariable('task_id',task.getId()); - - - task.execution.setVariable('requestStatus', task.execution.getVariable('action')); -task.execution.setVariable('requestType', 'SRCR'); -task.execution.setVariable('deleteReason', "completed"); -task.execution.setVariable('srcrStatus', task.execution.getVariable('action')); -task.execution.setVariable('applicationStatus', task.execution.getVariable('action')); - - - - - - Flow_0qaeplv - Flow_0mtd57d - - - Flow_0mtd57d - Flow_0k5l8nk - Flow_0ryglee - Flow_1kizv19 - - - Flow_0zzhoui - Flow_0k5l8nk - Flow_14snpj2 - - - - - execution.setVariable('applicationStatus', "Resubmit"); - - - - - ["applicationId", "applicationStatus", "srcrStatus"] - - - - - Flow_187pabg - Flow_1ojyq91 - - - - - execution.setVariable('applicationStatus', "Resubmit"); - - - - - ["applicationId", "applicationStatus", "srcrStatus"] - - - - - Flow_0ryglee - Flow_0izugkb - - - Flow_0q159o1 - Flow_019edzt - Flow_0xqj2sm - - - Flow_0pqd76u - Flow_00vao62 - Flow_1axts3r - Flow_1g44pgu - Flow_1up3td8 - Flow_0c71o5w - var system = java.lang.System; -system.out.println ("Begin SRCR Flow - Sent To SRCO"); -system.out.println ("isSentFromSociety "+execution.getVariable('isSentFromSociety')); - - - Flow_1axts3r - - - - - - Y - - - ["pid","applicationId","process_pid","task_id"] - - - - task.execution.setVariable('task_id',task.getId()); -task.execution.setVariableLocal('variable1',"srcr"); - - - task.execution.setVariable('requestStatus', task.execution.getVariable('action')); -task.execution.setVariable('requestType', 'SRCR'); -task.execution.setVariable('deleteReason', "completed"); -task.execution.setVariable('srcrStatus', task.execution.getVariable('action')); -task.execution.setVariable('applicationStatus', task.execution.getVariable('action')); - - - - - - Flow_0c71o5w - Flow_0h34vew - - - Flow_0h34vew - Flow_14snpj2 - Flow_0qz0c7u - Flow_1ifs52w - - - - - execution.setVariable('applicationStatus', "Resubmit"); - - - - - ["applicationId", "applicationStatus", "srcrStatus"] - - - - - Flow_1ifs52w - Flow_00vao62 - - - Flow_0qz0c7u - Flow_1pdey0j - Flow_0q159o1 - - - - - - - ${isSentFromSociety == false} - - - - - - execution.setVariable('applicationStatus', "Resubmitted"); -execution.setVariable('requestStatus', "Resubmitted"); -execution.setVariable('srcrStatus', "Resubmitted"); - - - - ["applicationId", "applicationStatus", "srcrStatus"] - - - - - - - - ${isSentFromSociety == false} - - - - - - - ["applicationId", "applicationStatus", "srcrStatus"] - - - - execution.setVariable('srcrFormUrl', execution.getVariable('formUrl')); - - - - - - - - - execution.setVariable('bundleUrl', execution.getVariable('formUrl')); - - - ${action == 'Rejected'} - - - ${action == 'Accepted'} - - - - ${action == 'Recheck'} - - - - - - ${action == 'Returned' } - - - - - execution.setVariable('applicationStatus', "Resubmitted"); -execution.setVariable('requestStatus', "Resubmitted"); -execution.setVariable('srcrStatus', "Resubmitted"); - - - - - ["applicationId", "applicationStatus", "srcrStatus"] - - - - - - - - ${isSentFromSociety == true} - - - ${siteRiskClassification != 'notHighRisk'} - - - - - - - ["applicationId", "applicationStatus", "srcrStatus"] - - - - execution.setVariable('srcrFormUrl', execution.getVariable('formUrl')); - - - - - - - - - execution.setVariable('bundleUrl', execution.getVariable('formUrl')); - - - ${action == 'Approved' or action == 'Rejected' } - - - - - - - - ${action == 'Returned' } - - - - - execution.setVariable('bundleUrl', execution.getVariable('formUrl')); - - - ${action == 'Rejected' } - - - ${siteRiskClassification == 'notHighRisk'} - - - - - - execution.setVariable('applicationStatus', "Resubmitted"); -execution.setVariable('requestStatus', "Resubmitted"); -execution.setVariable('srcrStatus', "Resubmitted"); - - - - ["applicationId", "applicationStatus", "srcrStatus"] - - - - - - - - - - execution.setVariable('requestStatus', 'New'); -execution.setVariable('requestType', 'SRCR'); - - - - - - - - - - - - ["applicationId", "applicationStatus", "srcrStatus"] - - - - execution.setVariable('srcrFormUrl', execution.getVariable('formUrl')); - - - - - - - ${action == 'Accepted'} - - - - - - ${action == 'Returned' } - - - - - - - ${siteRiskClassification != 'notHighRisk' } - - - Flow_1kizv19 - Flow_1g44pgu - Flow_1q2jho1 - - - ${action == 'Recheck' } - - - Flow_1q2jho1 - Flow_05vthw4 - Flow_1up3td8 - - - ${siteRiskClassification == 'notHighRisk' } - - - - - - - ${isSentFromSociety == true} - - - - Flow_1kyum71 - Flow_0fa3idu - - Flow_0f731f5 - Flow_1vxydh0 - Flow_00qi8nk - Flow_130v3rp - var system = java.lang.System; -system.out.println ("Sent to SDM"); - - - - - - Y - - - ["pid","applicationId","process_pid","task_id"] - - - - task.execution.setVariable('task_id',task.getId()); - - - task.execution.setVariable('requestStatus', task.execution.getVariable('action')); -task.execution.setVariable('requestType', 'SoSC'); -task.execution.setVariable('soscStatus', task.execution.getVariable('action')); -task.execution.setVariable('applicationStatus', task.execution.getVariable('action')); -task.execution.setVariable('deleteReason', "completed"); - - - - - - Flow_130v3rp - Flow_04rzv3x - - - - - execution.setVariable('applicationStatus', "Resubmit"); - - - - - ["applicationId", "applicationStatus"] - - - - - Flow_0ui56bn - Flow_1vxydh0 - - - Flow_04rzv3x - Flow_0ui56bn - Flow_0pqk381 - Flow_07enxwq - - - Flow_07enxwq - Flow_0yy721o - - - - - - Y - - - ["pid","applicationId","process_pid","task_id"] - - - - task.execution.setVariable('task_id',task.getId()); -task.execution.setVariableLocal('variable1',"sosc"); - - - task.execution.setVariable('requestStatus', task.execution.getVariable('action')); -task.execution.setVariable('requestType', 'SoSC'); -task.execution.setVariable('soscStatus', task.execution.getVariable('action')); -task.execution.setVariable('applicationStatus', task.execution.getVariable('action')); -task.execution.setVariable('deleteReason', "completed"); - - - - - - Flow_0go33vq - Flow_13zl1nd - - - Flow_13zl1nd - Flow_0f731f5 - Flow_0yy721o - Flow_1c0kfis - - - - - execution.setVariable('applicationStatus', "Resubmit"); - - - - - ["applicationId", "applicationStatus"] - - - - - Flow_1c0kfis - Flow_06v4kdf - - - Flow_0pqk381 - Flow_06v4kdf - Flow_18exjmw - Flow_0orrcue - var system = java.lang.System; -system.out.println ("Begin SoSC Flow - Sent To Caseworker"); -execution.setVariable('isCaseworker',false); -system.out.println ("isSentFromSociety "+execution.getVariable('isSentFromSociety')); - - - Flow_18exjmw - - - Flow_0orrcue - Flow_00qi8nk - Flow_0go33vq - - - ${action == 'Accepted'} - - - - - execution.setVariable('applicationStatus', "Resubmitted"); -execution.setVariable('requestStatus', "Resubmitted"); -execution.setVariable('soscStatus', "Resubmitted"); - - - - - ["applicationId", "applicationStatus", "soscStatus"] - - - - - - - - ${isSentFromSociety == true} - - - - - - - ["applicationId", "applicationStatus", "soscStatus"] - - - - execution.setVariable('soscFormUrl', execution.getVariable('formUrl')); - - - - - - - - - - ${action == 'Returned'} - - - - - - - ${action == 'Recheck' and isSentFromSociety == false} - - - - - - - execution.setVariable('bundleUrl', execution.getVariable('formUrl')); - - - ${action == 'Rejected' or action == 'Approved' } - - - - - execution.setVariable('bundleUrl', execution.getVariable('formUrl')); - - - ${action == 'Rejected'} - - - ${isSentFromSociety == false} - - - - - - ["applicationId", "applicationStatus", "soscStatus"] - - - - execution.setVariable('soscFormUrl', execution.getVariable('formUrl')); - - - - - - - - - - ${action == 'Returned'} - - - - - - execution.setVariable('applicationStatus', "Resubmitted"); -execution.setVariable('requestStatus', "Resubmitted"); -execution.setVariable('soscStatus', "Resubmitted"); - - - - ["applicationId", "applicationStatus", "soscStatus"] - - - - - - - - - - execution.setVariable('requestStatus', 'New'); -execution.setVariable('requestType', 'SoSC'); - - - - - - - - - - - - - - - Flow_0qbjx6e - Flow_1nowy63 - Flow_07eueok - Flow_1xju4ax - Flow_0izwlc1 - - - Flow_08c8ij1 - Flow_0b5e332 - Flow_1jxxrt6 - Flow_07eueok - Flow_0aabyhy - - - Flow_0izwlc1 - - - - - task.execution.setVariable('isSdm',false); - - - - task.execution.setVariable('applicationStatus', task.execution.getVariable('action')); -task.execution.setVariable('deleteReason', "completed"); - - - - - ["applicationId", "applicationStatus"] - - - - Flow_07vh0na - Flow_08c8ij1 - - - - - task.execution.setVariable('isCaseworker',false); - - - - task.execution.setVariable('applicationStatus', task.execution.getVariable('action')); -task.execution.setVariable('deleteReason', "completed"); - - - - - ["applicationId", "applicationStatus"] - - - - Flow_01suxh6 - Flow_19ik9s7 - - - Flow_0qiqnks - Flow_057qs1x - Flow_01suxh6 - - - Flow_0i3fcvy - Flow_0d8ioqs - Flow_1jxxrt6 - Flow_0qiqnks - var system = java.lang.System; -system.out.println ("Begin SoSC Individual Flow - Sent To Caseworker"); -execution.setVariable('isCaseworker',false); -system.out.println ("isSentFromSociety "+execution.getVariable('isSentFromSociety')); - - - Flow_19ik9s7 - Flow_0kw2jbo - Flow_0wxa7vb - Flow_1xju4ax - Flow_1esdw3m - - - Flow_0kw2jbo - Flow_057qs1x - Flow_0ovj0pk - Flow_07vh0na - var system = java.lang.System; -system.out.println ("Sent to SDM"); - - - Flow_0fa3idu - Flow_1phkhb3 - Flow_1nowy63 - - - Flow_0drs8s9 - Flow_1kyum71 - Flow_1u3s5mj - - - - - ${action == 'Rejected' or action == 'Approved' } ${action == 'Rejected'} - - - - execution.setVariable('formUrl', execution.getVariable('soscFormUrl')); - - - - execution.setVariable('bundleUrl', execution.getVariable('formUrl')); -execution.setVariable('formUrl', execution.getVariable('srcrFormUrl')); - - - - if (execution.getVariable('soscStatus') === "Approved" && execution.getVariable('srcrStatus') === "Approved" ) -{ -execution.setVariable("applicationStatus", "Approved"); -} -else{ -execution.setVariable("applicationStatus", "Rejected"); -} - - - - - + ${action == 'Recheck' and isSentFromSociety == false} @@ -1100,7 +264,7 @@ execution.setVariable("applicationStatus", "Rejected"); ${isSentFromSociety == false} - + ${isSentFromSociety == true} @@ -1111,48 +275,7 @@ execution.setVariable("applicationStatus", "Rejected"); ${action == 'Recheck'} - - Flow_026ykts - Flow_0drs8s9 - Flow_0i3fcvy - - - - Flow_02ysv7t - Flow_026ykts - var system = java.lang.System; -var selectSoscSdm= execution.getVariable('selectSoscSdm'); -system.out.println ("selectSoscSdm"+selectSoscSdm); -execution.setVariable('soscSdmAssignment',selectSoscSdm); -system.out.println ("soscSdmAssignment"+execution.getVariable('soscSdmAssignment')); - -var selectSoscCaseworker= execution.getVariable('selectSoscCaseworker'); -system.out.println ("selectSoscCaseworker"+selectSoscCaseworker); -execution.setVariable('soscCaseworkerAssignment',selectSoscCaseworker); -system.out.println ("soscCaseworkerAssignment"+execution.getVariable('soscCaseworkerAssignment')); - -var selectSdm= execution.getVariable('selectSdm'); -system.out.println ("selectSdm"+selectSdm); -execution.setVariable('sdmAssignment',selectSdm); -system.out.println ("sdmAssignment"+execution.getVariable('sdmAssignment')); - -var selectCaseworker= execution.getVariable('selectCaseworker'); -system.out.println ("selectCaseworker"+selectCaseworker); -execution.setVariable('caseworkerAssignment',selectCaseworker); -system.out.println ("caseworkerAssignment"+execution.getVariable('caseworkerAssignment')); - -var selectSrco= execution.getVariable('selectSrco'); -system.out.println ("selectSrco"+selectSrco); -execution.setVariable('srcoAssignment',selectSrco); -system.out.println ("srcoAssignment"+execution.getVariable('srcoAssignment')); - - - - Flow_0gcqir8 - Flow_02ysv7t - Flow_0lgivc3 - - + @@ -1198,6 +321,14 @@ var agentEmail = execution.getVariable('contactPersonEmailAddress1'); execution.setVariable('agentEmail',agentEmail); system.out.println("agentEmail"+agentEmail); +var emailsToArray = []; +emailsToArray.push(contactEmail); +emailsToArray.push(apEmail); +emailsToArray.push(clientEmail); +emailsToArray.push(agentEmail); +execution.setVariable("emailTo", Java.to(emailsToArray, "java.lang.Object[]")); +system.out.println ("emailTo"+execution.getVariable('emailTo')); + var siteRiskClassification = execution.getVariable('siteRiskClassification'); system.out.println ("siteRiskClassification "+siteRiskClassification ); execution.setVariable('siteRiskClassification',siteRiskClassification); @@ -1220,72 +351,273 @@ execution.setVariable('isAp',false); execution.setVariable('isSociety',false); execution.setVariable('isCssaTeam',false); - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + task.execution.setVariable('isAp',false); + + + + task.execution.setVariable('applicationStatus', task.execution.getVariable('action')); +task.execution.setVariable('deleteReason', "completed"); + + + + + ["applicationId", "applicationStatus"] + + + + Flow_0pzpbn7 + Flow_0527h3y + Flow_1xj96i6 + Flow_0b418rv + + + + Flow_0b418rv + Flow_1uymx0e + Flow_16imhzz + + + + Flow_1rauvts + Flow_0gb2oz2 + Flow_0qw9o9a + Flow_0pzpbn7 + + + + Flow_0d8ruax + Flow_1rauvts + Flow_0xqxeuh + + + + Flow_1e5ig6c + Flow_19ktqsm + Flow_0qbjx6e + Flow_1tu4hj7 + Flow_1ev1kr6 + + + + Flow_0bz8atu + Flow_1e5ig6c + Flow_0q6vtm0 + + + + + Flow_02ysv7t + Flow_026ykts + var system = java.lang.System; +var selectSoscSdm= execution.getVariable('selectSoscSdm'); +system.out.println ("selectSoscSdm"+selectSoscSdm); +execution.setVariable('soscSdmAssignment',selectSoscSdm); +system.out.println ("soscSdmAssignment"+execution.getVariable('soscSdmAssignment')); + +var selectSoscCaseworker= execution.getVariable('selectSoscCaseworker'); +system.out.println ("selectSoscCaseworker"+selectSoscCaseworker); +execution.setVariable('soscCaseworkerAssignment',selectSoscCaseworker); +system.out.println ("soscCaseworkerAssignment"+execution.getVariable('soscCaseworkerAssignment')); + +var selectSdm= execution.getVariable('selectSdm'); +system.out.println ("selectSdm"+selectSdm); +execution.setVariable('sdmAssignment',selectSdm); +system.out.println ("sdmAssignment"+execution.getVariable('sdmAssignment')); + +var selectCaseworker= execution.getVariable('selectCaseworker'); +system.out.println ("selectCaseworker"+selectCaseworker); +execution.setVariable('caseworkerAssignment',selectCaseworker); +system.out.println ("caseworkerAssignment"+execution.getVariable('caseworkerAssignment')); + +var selectSrco= execution.getVariable('selectSrco'); +system.out.println ("selectSrco"+selectSrco); +execution.setVariable('srcoAssignment',selectSrco); +system.out.println ("srcoAssignment"+execution.getVariable('srcoAssignment')); + + + + Flow_0ox6f9z + Flow_02ysv7t + Flow_0lgivc3 + + + + Flow_0gcqir8 + Flow_0ox6f9z + Flow_1hnx4nj + + + + + + + + Flow_0d8ioqs + Flow_1jxxrt6 + Flow_026ykts + Flow_0qiqnks + var system = java.lang.System; +system.out.println ("Begin SoSC Individual Flow - Sent To Caseworker"); +execution.setVariable('isCaseworker',false); +system.out.println ("isSentFromSociety "+execution.getVariable('isSentFromSociety')); + + + Flow_0on1goq + Flow_0kw2jbo + Flow_0wxa7vb + Flow_1xju4ax + Flow_1esdw3m + + + Flow_0kw2jbo + Flow_057qs1x + Flow_0ovj0pk + Flow_07vh0na + var system = java.lang.System; +system.out.println ("Sent to SDM"); + + + Flow_0izwlc1 + + + + + + + + sosc_updated + + + Flow_0qbjx6e + Flow_07eueok + Flow_1xju4ax + Flow_16imhzz + Flow_0xqxeuh + Flow_0q6vtm0 + Flow_1hnx4nj + Flow_0z0wj6z + Flow_0op6tja + Flow_0izwlc1 + + + Flow_0qiqnks + Flow_057qs1x + Flow_01suxh6 + + + + + task.execution.setVariable('isCaseworker',false); + + + + task.execution.setVariable('applicationStatus', task.execution.getVariable('action')); +task.execution.setVariable('deleteReason', "completed"); + + + + + ["applicationId", "applicationStatus"] + + + + Flow_01suxh6 + Flow_19ik9s7 + + + Flow_19ik9s7 + Flow_0on1goq + Flow_0z0wj6z + + + + + task.execution.setVariable('isSdm',false); + + + + task.execution.setVariable('applicationStatus', task.execution.getVariable('action')); +task.execution.setVariable('deleteReason', "completed"); + + + + + ["applicationId", "applicationStatus"] + + + + Flow_07vh0na + Flow_08c8ij1 + + + Flow_1l3oqze + Flow_0b5e332 + Flow_1jxxrt6 + Flow_07eueok + Flow_0aabyhy + + + Flow_08c8ij1 + Flow_1l3oqze + Flow_0op6tja + + + + + + + + + - - + + - - + + - - + + + + + + + + + + + + + + + + + + + + + + + + + - + - - + + + + + + - + @@ -1308,563 +640,143 @@ execution.setVariable('isCssaTeam',false); - - - - - - - - - + + - - - - - - - - - - - - - - - - - + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + - + - - - + + - - + + - + - - - - - + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + - - - - - - - - - - - - - - + + - - - - - + + - - + + - - + + - + - - - - - - - - - - - + + - - + + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + - - - - - - - - + + - + - - - - - + - - - - - - - - + + - - - - - - - - - - - - - - - - - + + + - - + + - + - - - - - - + + - + - + - + - - - - + + + + - - - - - - - - - + - - - - + + + + - + - - + + + - + - - - + + + - + - - + + - + @@ -1886,13 +798,6 @@ execution.setVariable('isCssaTeam',false); - - - - - - - @@ -1910,37 +815,37 @@ execution.setVariable('isCssaTeam',false); - - + + - - - - + + + + - + - - + + - + - + - + - + @@ -1957,174 +862,195 @@ execution.setVariable('isCssaTeam',false); - - + + - + - + - - - + + + - + - - - + + + - - - - + + + + - - - + + + - + - - + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + - + - - + + + - + - - - - + + + + - - - - - - - - - + - - + + - - + + - - - - + + + + - + - - + + - - + + - + - - + + - - + + - - - - + + + + - + - - + + - + - - - + + + - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + From 542c8c7953e0b65e50ded0bae71c4fedac00147a Mon Sep 17 00:00:00 2001 From: nikhila-aot Date: Fri, 13 Oct 2023 09:58:15 -0700 Subject: [PATCH 157/194] removed unused files and corrected file locations --- ... Ecological Risk Assessment Checklist.json | 32560 ----------- .../bundling/Summary of Site Condition.json | 44865 ---------------- ...mission auth-2023-01-25T22_52_33.564Z.json | 1 - .../SOSCBundleWorklow.bpmn | 0 4 files changed, 77426 deletions(-) delete mode 100644 forms-flow-ai/epd-forms/Detailed Ecological Risk Assessment Checklist.json delete mode 100644 forms-flow-ai/epd-forms/bundling/Summary of Site Condition.json delete mode 100644 forms-flow-ai/epd-forms/test-forms/test api submission auth-2023-01-25T22_52_33.564Z.json rename forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/processes/{Bundling/subProcess => SoSC}/SOSCBundleWorklow.bpmn (100%) diff --git a/forms-flow-ai/epd-forms/Detailed Ecological Risk Assessment Checklist.json b/forms-flow-ai/epd-forms/Detailed Ecological Risk Assessment Checklist.json deleted file mode 100644 index 79e622e8..00000000 --- a/forms-flow-ai/epd-forms/Detailed Ecological Risk Assessment Checklist.json +++ /dev/null @@ -1,32560 +0,0 @@ -{ - "forms": [ - { - "title": "Detailed Ecological Risk Assessment Checklist", - "display": "form", - "type": "form", - "name": "deraForm", - "path": "deraForm", - "tags": [ - "common" - ], - "components": [ - { - "id": "ecmxmh", - "key": "simplecontentfour", - "html": "

*All fields marked with an asterisk are required.

", - "type": "content", - "input": false, - "label": "Text/Images", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "json": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "customConditional": "", - "allowMultipleMasks": false, - "customDefaultValue": "", - "allowCalculateOverride": false - }, - { - "id": "eaiecoe", - "key": "simplecontent", - "html": "

Part 1. Land, owner and qualified professional information

", - "type": "content", - "input": false, - "label": "Text/Images", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "json": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "customConditional": "", - "allowMultipleMasks": false, - "customDefaultValue": "", - "allowCalculateOverride": false - }, - { - "id": "etughs8", - "key": "LandDescription", - "tree": false, - "type": "panel", - "input": false, - "label": "", - "theme": "default", - "title": "Section 1 - Land Description", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "collapsed": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "breadcrumb": "default", - "components": [ - { - "id": "es0n4kd", - "key": "simplecolsthree", - "tree": false, - "type": "columns", - "input": false, - "label": "Columns - 2", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "columns": [ - { - "pull": 0, - "push": 0, - "size": "md", - "width": 6, - "offset": 0, - "components": [ - { - "id": "e18s0mb", - "key": "siteIdNumber", - "case": "", - "mask": false, - "type": "textfield", - "input": true, - "label": "Site ID Number", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": { - "type": "input" - }, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "pattern": "", - "multiple": false, - "required": false, - "maxLength": "", - "minLength": "", - "customMessage": "", - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "inputMask": "", - "inputType": "text", - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "spellcheck": true, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "json": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "inputFormat": "plain", - "placeholder": "", - "defaultValue": "", - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "customConditional": "", - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "allowCalculateOverride": false - } - ], - "currentWidth": 6 - }, - { - "pull": 0, - "push": 0, - "size": "md", - "width": 6, - "offset": 0, - "components": [ - { - "id": "egag7k", - "key": "pid", - "case": "", - "mask": false, - "type": "textfield", - "input": true, - "label": "PID/PIN", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": { - "type": "input" - }, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "pattern": "", - "multiple": false, - "required": false, - "maxLength": "", - "minLength": "", - "customMessage": "", - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "inputMask": "", - "inputType": "text", - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "spellcheck": true, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "json": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "must include, if applicable", - "inputFormat": "plain", - "placeholder": "", - "defaultValue": "", - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "customConditional": "", - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "allowCalculateOverride": false - } - ], - "currentWidth": 6 - } - ], - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "autoAdjust": false, - "errorLabel": "", - "persistent": false, - "properties": {}, - "validateOn": "change", - "clearOnHide": false, - "conditional": { - "eq": "", - "json": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "customConditional": "", - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "allowCalculateOverride": false - }, - { - "id": "edh1gto", - "key": "legalDescription", - "case": "", - "mask": false, - "rows": 3, - "type": "textarea", - "input": true, - "label": "Legal description", - "editor": "", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": { - "type": "input" - }, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "wysiwyg": false, - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "pattern": "", - "maxWords": "", - "minWords": "", - "multiple": false, - "required": true, - "maxLength": "", - "minLength": "", - "customMessage": "", - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "fixedSize": true, - "hideLabel": false, - "inputMask": "", - "inputType": "text", - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": true, - "attributes": {}, - "autoExpand": true, - "errorLabel": "", - "persistent": true, - "properties": {}, - "spellcheck": true, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "json": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "inputFormat": "plain", - "placeholder": "", - "defaultValue": "", - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "customConditional": "", - "allowMultipleMasks": false, - "customDefaultValue": "", - "allowCalculateOverride": false - }, - { - "id": "ejhiouv", - "key": "simplecolsfour", - "tree": false, - "type": "columns", - "input": false, - "label": "Columns - 2", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "columns": [ - { - "pull": 0, - "push": 0, - "size": "md", - "width": 6, - "offset": 0, - "components": [ - { - "id": "e8dohr", - "key": "simplecontentsix", - "html": "

Latitude

", - "type": "content", - "input": false, - "label": "Text/Images", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "json": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "customConditional": "", - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "allowCalculateOverride": false - }, - { - "id": "ezm7ac", - "key": "simplecolsfive", - "tree": false, - "type": "columns", - "input": false, - "label": "Columns - 3", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "columns": [ - { - "pull": 0, - "push": 0, - "size": "md", - "width": 4, - "offset": 0, - "components": [ - { - "id": "e0j47yn", - "key": "latdegrees", - "case": "", - "mask": false, - "type": "textfield", - "input": true, - "label": "Degrees", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": { - "type": "input" - }, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "pattern": "", - "multiple": false, - "required": true, - "maxLength": "", - "minLength": "", - "customMessage": "", - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "inputMask": "", - "inputType": "text", - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "spellcheck": true, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "json": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "inputFormat": "plain", - "placeholder": "", - "defaultValue": "", - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "customConditional": "", - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "allowCalculateOverride": false - } - ], - "currentWidth": 4 - }, - { - "pull": 0, - "push": 0, - "size": "md", - "width": 4, - "offset": 0, - "components": [ - { - "id": "ev4t4c3", - "key": "latminutes", - "case": "", - "mask": false, - "type": "textfield", - "input": true, - "label": "Minutes", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": { - "type": "input" - }, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "pattern": "", - "multiple": false, - "required": true, - "maxLength": "", - "minLength": "", - "customMessage": "", - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "inputMask": "", - "inputType": "text", - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "spellcheck": true, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "json": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "inputFormat": "plain", - "placeholder": "", - "defaultValue": "", - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "customConditional": "", - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "allowCalculateOverride": false - } - ], - "currentWidth": 4 - }, - { - "pull": 0, - "push": 0, - "size": "md", - "width": 4, - "offset": 0, - "components": [ - { - "id": "ee0yf4e", - "key": "latseconds", - "case": "", - "mask": false, - "type": "textfield", - "input": true, - "label": "Seconds", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": { - "type": "input" - }, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "pattern": "", - "multiple": false, - "required": true, - "maxLength": "", - "minLength": "", - "customMessage": "", - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "inputMask": "", - "inputType": "text", - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "spellcheck": true, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "json": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "inputFormat": "plain", - "placeholder": "", - "defaultValue": "", - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "customConditional": "", - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "allowCalculateOverride": false - } - ], - "currentWidth": 4 - } - ], - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "autoAdjust": false, - "errorLabel": "", - "persistent": false, - "properties": {}, - "validateOn": "change", - "clearOnHide": false, - "conditional": { - "eq": "", - "json": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "customConditional": "", - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "allowCalculateOverride": false - } - ], - "currentWidth": 6 - }, - { - "pull": 0, - "push": 0, - "size": "md", - "width": 6, - "offset": 0, - "components": [ - { - "id": "e6rosp", - "key": "simplecontentseven", - "html": "

Longitude

", - "type": "content", - "input": false, - "label": "Text/Images", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "json": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "customConditional": "", - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "allowCalculateOverride": false - }, - { - "id": "exgle6", - "key": "simplecolssix", - "tree": false, - "type": "columns", - "input": false, - "label": "Columns - 3", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "columns": [ - { - "pull": 0, - "push": 0, - "size": "md", - "width": 4, - "offset": 0, - "components": [ - { - "id": "edfviv", - "key": "longdegrees", - "case": "", - "mask": false, - "type": "textfield", - "input": true, - "label": "Degrees", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": { - "type": "input" - }, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "pattern": "", - "multiple": false, - "required": true, - "maxLength": "", - "minLength": "", - "customMessage": "", - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "inputMask": "", - "inputType": "text", - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "spellcheck": true, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "json": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "inputFormat": "plain", - "placeholder": "", - "defaultValue": "", - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "customConditional": "", - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "allowCalculateOverride": false - } - ], - "currentWidth": 4 - }, - { - "pull": 0, - "push": 0, - "size": "md", - "width": 4, - "offset": 0, - "components": [ - { - "id": "eq6m3ov", - "key": "longminutes", - "case": "", - "mask": false, - "type": "textfield", - "input": true, - "label": "Minutes", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": { - "type": "input" - }, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "pattern": "", - "multiple": false, - "required": true, - "maxLength": "", - "minLength": "", - "customMessage": "", - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "inputMask": "", - "inputType": "text", - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "spellcheck": true, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "json": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "inputFormat": "plain", - "placeholder": "", - "defaultValue": "", - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "customConditional": "", - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "allowCalculateOverride": false - } - ], - "currentWidth": 4 - }, - { - "pull": 0, - "push": 0, - "size": "md", - "width": 4, - "offset": 0, - "components": [ - { - "id": "e9qo2k5", - "key": "longseconds", - "case": "", - "mask": false, - "type": "textfield", - "input": true, - "label": "Seconds", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": { - "type": "input" - }, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "pattern": "", - "multiple": false, - "required": true, - "maxLength": "", - "minLength": "", - "customMessage": "", - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "inputMask": "", - "inputType": "text", - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "spellcheck": true, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "json": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "inputFormat": "plain", - "placeholder": "", - "defaultValue": "", - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "customConditional": "", - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "allowCalculateOverride": false - } - ], - "currentWidth": 4 - } - ], - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "autoAdjust": false, - "errorLabel": "", - "persistent": false, - "properties": {}, - "validateOn": "change", - "clearOnHide": false, - "conditional": { - "eq": "", - "json": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "customConditional": "", - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "allowCalculateOverride": false - } - ], - "currentWidth": 6 - } - ], - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "autoAdjust": false, - "errorLabel": "", - "persistent": false, - "properties": {}, - "validateOn": "change", - "clearOnHide": false, - "conditional": { - "eq": "", - "json": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "customConditional": "", - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "allowCalculateOverride": false - }, - { - "id": "eqwlzfq", - "key": "simplecontenteight", - "html": "

Site Civic Address

", - "type": "content", - "input": false, - "label": "Text/Images", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "json": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "customConditional": "", - "allowMultipleMasks": false, - "customDefaultValue": "", - "allowCalculateOverride": false - }, - { - "id": "eocdw5j", - "key": "simplecolsseven", - "tree": false, - "type": "columns", - "input": false, - "label": "Columns - 3", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "columns": [ - { - "pull": 0, - "push": 0, - "size": "md", - "width": 4, - "offset": 0, - "components": [ - { - "id": "e2oo3nq", - "key": "street", - "case": "", - "mask": false, - "type": "textfield", - "input": true, - "label": "Street", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": { - "type": "input" - }, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "pattern": "", - "multiple": false, - "required": true, - "maxLength": "", - "minLength": "", - "customMessage": "", - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "inputMask": "", - "inputType": "text", - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "spellcheck": true, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "json": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "inputFormat": "plain", - "placeholder": "", - "defaultValue": "", - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "customConditional": "", - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "allowCalculateOverride": false - } - ], - "currentWidth": 4 - }, - { - "pull": 0, - "push": 0, - "size": "md", - "width": 4, - "offset": 0, - "components": [ - { - "id": "erq3m3", - "key": "city", - "case": "", - "mask": false, - "type": "textfield", - "input": true, - "label": "City", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": { - "type": "input" - }, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "pattern": "", - "multiple": false, - "required": true, - "maxLength": "", - "minLength": "", - "customMessage": "", - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "inputMask": "", - "inputType": "text", - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "spellcheck": true, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "json": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "inputFormat": "plain", - "placeholder": "", - "defaultValue": "", - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "customConditional": "", - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "allowCalculateOverride": false - } - ], - "currentWidth": 4 - }, - { - "pull": 0, - "push": 0, - "size": "md", - "width": 4, - "offset": 0, - "components": [ - { - "id": "em48kxg", - "key": "postalCode", - "case": "", - "mask": false, - "type": "textfield", - "input": true, - "label": "Postal Code", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": { - "type": "input" - }, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "pattern": "", - "multiple": false, - "required": true, - "maxLength": "", - "minLength": "", - "customMessage": "", - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "inputMask": "", - "inputType": "text", - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "spellcheck": true, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "json": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "inputFormat": "plain", - "placeholder": "", - "defaultValue": "", - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "customConditional": "", - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "allowCalculateOverride": false - } - ], - "currentWidth": 4 - } - ], - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "autoAdjust": false, - "errorLabel": "", - "persistent": false, - "properties": {}, - "validateOn": "change", - "clearOnHide": false, - "conditional": { - "eq": "", - "json": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "customConditional": "", - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "allowCalculateOverride": false - } - ], - "errorLabel": "", - "persistent": false, - "properties": {}, - "validateOn": "change", - "clearOnHide": false, - "collapsible": false, - "conditional": { - "eq": "", - "json": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "customConditional": "", - "allowMultipleMasks": false, - "customDefaultValue": "", - "allowCalculateOverride": false - }, - { - "id": "ezm09ve", - "key": "PropertyOwnerAndOrOperator", - "tree": false, - "type": "panel", - "input": false, - "label": "", - "theme": "default", - "title": "Section 2 - Property Owner and/or Operator", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "collapsed": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "breadcrumb": "default", - "components": [ - { - "id": "ezfhyre", - "key": "name", - "case": "", - "mask": false, - "type": "textfield", - "input": true, - "label": "Full Name", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": { - "type": "input" - }, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "pattern": "", - "multiple": false, - "required": true, - "maxLength": "", - "minLength": "", - "customMessage": "", - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "inputMask": "", - "inputType": "text", - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "spellcheck": true, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "json": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "inputFormat": "plain", - "placeholder": "", - "defaultValue": "", - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "customConditional": "", - "allowMultipleMasks": false, - "customDefaultValue": "", - "allowCalculateOverride": false - }, - { - "id": "eaisw1n", - "key": "simplecolseight", - "tree": false, - "type": "columns", - "input": false, - "label": "Columns - 2", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "columns": [ - { - "pull": 0, - "push": 0, - "size": "md", - "width": 6, - "offset": 0, - "components": [ - { - "id": "ejfyfra", - "key": "address", - "case": "", - "mask": false, - "type": "textfield", - "input": true, - "label": "Address", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": { - "type": "input" - }, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "pattern": "", - "multiple": false, - "required": true, - "maxLength": "", - "minLength": "", - "customMessage": "", - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "inputMask": "", - "inputType": "text", - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "spellcheck": true, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "json": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "inputFormat": "plain", - "placeholder": "", - "defaultValue": "", - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "customConditional": "", - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "allowCalculateOverride": false - } - ], - "currentWidth": 6 - }, - { - "pull": 0, - "push": 0, - "size": "md", - "width": 6, - "offset": 0, - "components": [ - { - "id": "ejpt6hn", - "key": "cityone", - "case": "", - "mask": false, - "type": "textfield", - "input": true, - "label": "City", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": { - "type": "input" - }, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "pattern": "", - "multiple": false, - "required": true, - "maxLength": "", - "minLength": "", - "customMessage": "", - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "inputMask": "", - "inputType": "text", - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "spellcheck": true, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "json": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "inputFormat": "plain", - "placeholder": "", - "defaultValue": "", - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "customConditional": "", - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "allowCalculateOverride": false - } - ], - "currentWidth": 6 - } - ], - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "autoAdjust": false, - "errorLabel": "", - "persistent": false, - "properties": {}, - "validateOn": "change", - "clearOnHide": false, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "allowCalculateOverride": false - }, - { - "id": "emt2953", - "key": "simplecolsnine", - "tree": false, - "type": "columns", - "input": false, - "label": "Columns - 3", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "columns": [ - { - "pull": 0, - "push": 0, - "size": "md", - "width": 4, - "offset": 0, - "components": [ - { - "id": "epc0stn", - "key": "provinceState", - "case": "", - "mask": false, - "type": "textfield", - "input": true, - "label": "Province", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": { - "type": "input" - }, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "pattern": "", - "multiple": false, - "required": true, - "maxLength": "", - "minLength": "", - "customMessage": "", - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "inputMask": "", - "inputType": "text", - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "spellcheck": true, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "json": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "inputFormat": "plain", - "placeholder": "", - "defaultValue": "", - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "customConditional": "", - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "allowCalculateOverride": false - } - ], - "currentWidth": 4 - }, - { - "pull": 0, - "push": 0, - "size": "md", - "width": 4, - "offset": 0, - "components": [ - { - "id": "e8ev3uq", - "key": "country", - "case": "", - "mask": false, - "type": "textfield", - "input": true, - "label": "Country", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": { - "type": "input" - }, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "pattern": "", - "multiple": false, - "required": true, - "maxLength": "", - "minLength": "", - "customMessage": "", - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "inputMask": "", - "inputType": "text", - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "spellcheck": true, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "json": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "inputFormat": "plain", - "placeholder": "", - "defaultValue": "", - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "customConditional": "", - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "allowCalculateOverride": false - } - ], - "currentWidth": 4 - }, - { - "pull": 0, - "push": 0, - "size": "md", - "width": 4, - "offset": 0, - "components": [ - { - "id": "exz86sp", - "key": "postalZipCode", - "case": "", - "mask": false, - "type": "textfield", - "input": true, - "label": "Postal Code", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": { - "type": "input" - }, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "pattern": "", - "multiple": false, - "required": true, - "maxLength": "", - "minLength": "", - "customMessage": "", - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "inputMask": "", - "inputType": "text", - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "spellcheck": true, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "json": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "inputFormat": "plain", - "placeholder": "", - "defaultValue": "", - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "customConditional": "", - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "allowCalculateOverride": false - } - ], - "currentWidth": 4 - } - ], - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "autoAdjust": false, - "errorLabel": "", - "persistent": false, - "properties": {}, - "validateOn": "change", - "clearOnHide": false, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "allowCalculateOverride": false - }, - { - "id": "ey6wc4", - "key": "simplecolsten", - "tree": false, - "type": "columns", - "input": false, - "label": "Columns - 2", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "columns": [ - { - "pull": 0, - "push": 0, - "size": "md", - "width": 6, - "offset": 0, - "components": [ - { - "id": "elq0bb", - "key": "simplephonenumber", - "mask": false, - "type": "phoneNumber", - "input": true, - "label": "Phone Number", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": { - "type": "input" - }, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "pattern": "", - "multiple": false, - "required": true, - "maxLength": "", - "minLength": "", - "customMessage": "", - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "inputMask": "", - "inputMode": "decimal", - "inputType": "tel", - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": true, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "spellcheck": true, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "json": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "inputFormat": "plain", - "placeholder": "", - "defaultValue": "", - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "customConditional": "", - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "allowCalculateOverride": false - } - ], - "currentWidth": 6 - }, - { - "pull": 0, - "push": 0, - "size": "md", - "width": 6, - "offset": 0, - "components": [ - { - "id": "eiao328", - "key": "simpleemail", - "case": "", - "mask": false, - "type": "email", - "input": true, - "label": "Email", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": { - "type": "input" - }, - "dbIndex": false, - "kickbox": { - "enabled": false - }, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "pattern": "", - "multiple": false, - "required": true, - "maxLength": "", - "minLength": "", - "customMessage": "", - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "inputMask": "", - "inputType": "email", - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": true, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "spellcheck": true, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "json": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "inputFormat": "plain", - "placeholder": "", - "defaultValue": "", - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "customConditional": "", - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "allowCalculateOverride": false - } - ], - "currentWidth": 6 - } - ], - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "autoAdjust": false, - "errorLabel": "", - "persistent": false, - "properties": {}, - "validateOn": "change", - "clearOnHide": false, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "allowCalculateOverride": false - } - ], - "errorLabel": "", - "persistent": false, - "properties": {}, - "validateOn": "change", - "clearOnHide": false, - "collapsible": false, - "conditional": { - "eq": "", - "json": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "customConditional": "", - "allowMultipleMasks": false, - "customDefaultValue": "", - "allowCalculateOverride": false - }, - { - "id": "ec1vql9", - "key": "QualifiedProfessionalS", - "tree": false, - "type": "panel", - "input": false, - "label": "", - "theme": "default", - "title": "Section 3 - Qualified Professional(s)", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "collapsed": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "breadcrumb": "default", - "components": [ - { - "id": "etyxkxo", - "key": "dataGrid", - "tags": [], - "tree": true, - "type": "datagrid", - "input": true, - "label": "Data Grid", - "logic": [], - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "page": "", - "style": "", - "width": "", - "height": "" - }, - "reorder": false, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "json": "", - "custom": "", - "unique": false, - "multiple": false, - "required": true, - "maxLength": "", - "minLength": "", - "customMessage": "", - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": true, - "initEmpty": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "addAnother": "", - "attributes": {}, - "components": [ - { - "id": "eh8z2bfa0000000000000000000000", - "key": "panel", - "tags": [], - "tree": false, - "type": "panel", - "input": false, - "label": "Panel", - "logic": [], - "theme": "default", - "title": "Panel", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "page": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": true, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "breadcrumb": "default", - "components": [ - { - "id": "e65pw3", - "key": "simplecolssevensix", - "tree": false, - "type": "columns", - "input": false, - "label": "Columns - 2", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "columns": [ - { - "pull": 0, - "push": 0, - "size": "md", - "width": 6, - "offset": 0, - "components": [ - { - "id": "eusqe7y", - "key": "nameOfFirm", - "mask": false, - "type": "textfield", - "input": true, - "label": "Name of Firm", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": { - "type": "input" - }, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "pattern": "", - "multiple": false, - "required": true, - "maxLength": "", - "minLength": "", - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "inputMask": "", - "inputType": "text", - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "spellcheck": true, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "inputFormat": "plain", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "allowCalculateOverride": false - }, - { - "id": "ec171ks", - "key": "street", - "mask": false, - "type": "textfield", - "input": true, - "label": "Street", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": { - "type": "input" - }, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "pattern": "", - "multiple": false, - "required": true, - "maxLength": "", - "minLength": "", - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "inputMask": "", - "inputType": "text", - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "spellcheck": true, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "inputFormat": "plain", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "allowCalculateOverride": false - } - ], - "currentWidth": 6 - }, - { - "pull": 0, - "push": 0, - "size": "md", - "width": 6, - "offset": 0, - "components": [ - { - "id": "elkko0k", - "key": "contactName", - "mask": false, - "type": "textfield", - "input": true, - "label": "Contact Name", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": { - "type": "input" - }, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "pattern": "", - "multiple": false, - "required": true, - "maxLength": "", - "minLength": "", - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "inputMask": "", - "inputType": "text", - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "spellcheck": true, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "inputFormat": "plain", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "allowCalculateOverride": false - }, - { - "id": "e7n16fb", - "key": "citytwo", - "mask": false, - "type": "textfield", - "input": true, - "label": "City", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": { - "type": "input" - }, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "pattern": "", - "multiple": false, - "required": true, - "maxLength": "", - "minLength": "", - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "inputMask": "", - "inputType": "text", - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "spellcheck": true, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "inputFormat": "plain", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "allowCalculateOverride": false - } - ], - "currentWidth": 6 - } - ], - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": true, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "autoAdjust": false, - "errorLabel": "", - "persistent": false, - "properties": {}, - "validateOn": "change", - "clearOnHide": false, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "allowCalculateOverride": false - }, - { - "id": "eemm29o", - "key": "simplecolssevenseven", - "tree": false, - "type": "columns", - "input": false, - "label": "Columns - 3", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "columns": [ - { - "pull": 0, - "push": 0, - "size": "md", - "width": 4, - "offset": 0, - "components": [ - { - "id": "e0xwwwm", - "key": "provinceState", - "case": "", - "mask": false, - "type": "textfield", - "input": true, - "label": "Province", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": { - "type": "input" - }, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "pattern": "", - "multiple": false, - "required": true, - "maxLength": "", - "minLength": "", - "customMessage": "", - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "inputMask": "", - "inputType": "text", - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "spellcheck": true, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "json": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "inputFormat": "plain", - "placeholder": "", - "defaultValue": "", - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "customConditional": "", - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "allowCalculateOverride": false - }, - { - "id": "ekq842", - "key": "simplephonenumber", - "mask": false, - "type": "phoneNumber", - "input": true, - "label": "Phone Number", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": { - "type": "input" - }, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "pattern": "", - "multiple": false, - "required": true, - "maxLength": "", - "minLength": "", - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "inputMask": "(999) 999-9999", - "inputMode": "decimal", - "inputType": "tel", - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": true, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "spellcheck": true, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "inputFormat": "plain", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "allowCalculateOverride": false - } - ], - "currentWidth": 4 - }, - { - "pull": 0, - "push": 0, - "size": "md", - "width": 4, - "offset": 0, - "components": [ - { - "id": "e3u6trd", - "key": "country", - "mask": false, - "type": "textfield", - "input": true, - "label": "Country", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": { - "type": "input" - }, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "pattern": "", - "multiple": false, - "required": true, - "maxLength": "", - "minLength": "", - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "inputMask": "", - "inputType": "text", - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "spellcheck": true, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "inputFormat": "plain", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "allowCalculateOverride": false - }, - { - "id": "ebvtv9f", - "key": "simpleemail", - "mask": false, - "type": "email", - "input": true, - "label": "Email", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": { - "type": "input" - }, - "dbIndex": false, - "kickbox": { - "enabled": false - }, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "pattern": "", - "multiple": false, - "required": true, - "maxLength": "", - "minLength": "", - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "delimiter": false, - "encrypted": false, - "hideLabel": false, - "inputMask": "", - "inputType": "email", - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": true, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "spellcheck": true, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "inputFormat": "plain", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "requireDecimal": false, - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "allowCalculateOverride": false - } - ], - "currentWidth": 4 - }, - { - "pull": 0, - "push": 0, - "size": "md", - "width": 4, - "offset": 0, - "components": [ - { - "id": "elnny7", - "key": "postalCode", - "mask": false, - "type": "textfield", - "input": true, - "label": "Postal Code", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": { - "type": "input" - }, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "pattern": "", - "multiple": false, - "required": true, - "maxLength": "", - "minLength": "", - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "inputMask": "", - "inputType": "text", - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "spellcheck": true, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "inputFormat": "plain", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "allowCalculateOverride": false - } - ], - "currentWidth": 4 - } - ], - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": true, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "autoAdjust": false, - "errorLabel": "", - "persistent": false, - "properties": {}, - "validateOn": "change", - "clearOnHide": false, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "allowCalculateOverride": false - } - ], - "errorLabel": "", - "persistent": false, - "properties": {}, - "validateOn": "change", - "clearOnHide": false, - "collapsible": false, - "conditional": { - "eq": "", - "json": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "customConditional": "", - "allowMultipleMasks": false, - "customDefaultValue": "", - "allowCalculateOverride": false - } - ], - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "json": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "layoutFixed": false, - "placeholder": "", - "defaultValue": [ - {} - ], - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "enableRowGroups": false, - "customConditional": "", - "addAnotherPosition": "bottom", - "allowMultipleMasks": false, - "customDefaultValue": "", - "conditionalAddButton": "", - "allowCalculateOverride": false, - "disableAddingRemovingRows": false - } - ], - "errorLabel": "", - "persistent": false, - "properties": {}, - "validateOn": "change", - "clearOnHide": false, - "collapsible": false, - "conditional": { - "eq": "", - "json": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "customConditional": "", - "allowMultipleMasks": false, - "customDefaultValue": "", - "allowCalculateOverride": false - }, - { - "id": "e8kaudb4", - "key": "simplecontentChecklist", - "html": "

Part 2. Detailed Ecological Risk Assessment Checklist 

", - "type": "content", - "input": false, - "label": "Text/Images", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "json": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "customConditional": "", - "allowMultipleMasks": false, - "customDefaultValue": "", - "allowCalculateOverride": false - }, - { - "id": "erbcxai", - "key": "DetailedEcologicalRiskAssessmentChecklist", - "tree": false, - "type": "panel", - "input": false, - "label": "", - "theme": "default", - "title": "Section 4 - Detailed Ecological Risk Assessment Checklist", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "collapsed": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "breadcrumb": "default", - "components": [ - { - "id": "everwl", - "key": "subsectionGeneralRequirements", - "tree": false, - "type": "panel", - "input": false, - "label": "", - "theme": "default", - "title": "Subsection 1.0 General Requirements", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "collapsed": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "breadcrumb": "default", - "components": [ - { - "id": "ez59ho", - "key": "columns", - "tags": [], - "tree": false, - "type": "columns", - "input": false, - "label": "Columns", - "logic": [], - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "columns": [ - { - "pull": 0, - "push": 0, - "size": "md", - "width": 4, - "offset": 0, - "components": [ - { - "id": "ebbfqk", - "key": "simplecontentnine", - "html": "", - "type": "content", - "input": false, - "label": "Text/Images", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "json": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "customConditional": "", - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "allowCalculateOverride": false - }, - { - "id": "eaijcgg", - "key": "one", - "html": "

1.1 Does the DERA identify who the major participants are in the risk assessment and state their qualifications?

", - "type": "content", - "input": false, - "label": "Text/Images", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "allowCalculateOverride": false - } - ], - "currentWidth": 4 - }, - { - "pull": 0, - "push": 0, - "size": "md", - "width": 2, - "offset": 0, - "components": [ - { - "id": "ej9yvef", - "key": "simplecontenteleven", - "html": "

Response

", - "type": "content", - "input": false, - "label": "Text/Images", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "json": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "customConditional": "", - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "allowCalculateOverride": false - }, - { - "id": "eo5l1a", - "key": "radioGroup", - "type": "radio", - "input": true, - "label": "Radio Group", - "hidden": false, - "inline": false, - "prefix": "", - "suffix": "", - "unique": false, - "values": [ - { - "label": "Yes", - "value": "yes", - "shortcut": "" - }, - { - "label": "No", - "value": "no", - "shortcut": "" - } - ], - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "fieldSet": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": true, - "customMessage": "", - "customPrivate": false, - "onlyAvailableItems": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": true, - "inputType": "radio", - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "json": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": "", - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "customConditional": "", - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "optionsLabelPosition": "right", - "allowCalculateOverride": false - } - ], - "currentWidth": 2 - }, - { - "pull": 0, - "push": 0, - "size": "md", - "width": 6, - "offset": 0, - "components": [ - { - "id": "e91z4w8", - "key": "simplecontenttwelve", - "html": "

Comments

", - "type": "content", - "input": false, - "label": "Text/Images", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "json": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "customConditional": "", - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "allowCalculateOverride": false - }, - { - "id": "e52n5r", - "key": "simpletextarea", - "case": "", - "mask": false, - "rows": 2, - "type": "textarea", - "input": true, - "label": "Multi-line Text", - "editor": "", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": { - "type": "input" - }, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "wysiwyg": false, - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "pattern": "", - "maxWords": "", - "minWords": "", - "multiple": false, - "required": false, - "maxLength": "", - "minLength": "", - "customMessage": "", - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "fixedSize": true, - "hideLabel": true, - "inputMask": "", - "inputType": "text", - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": true, - "attributes": {}, - "autoExpand": true, - "errorLabel": "", - "persistent": true, - "properties": {}, - "spellcheck": true, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "json": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "inputFormat": "plain", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "customConditional": "", - "allowMultipleMasks": false, - "customDefaultValue": "", - "allowCalculateOverride": false - } - ], - "currentWidth": 6 - } - ], - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "page": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "autoAdjust": false, - "errorLabel": "", - "persistent": false, - "properties": {}, - "validateOn": "change", - "clearOnHide": false, - "conditional": { - "eq": "", - "json": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "customConditional": "", - "allowMultipleMasks": false, - "customDefaultValue": "", - "allowCalculateOverride": false - }, - { - "id": "eayd5l", - "key": "columnsone", - "tree": false, - "type": "columns", - "input": false, - "label": "Columns", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "columns": [ - { - "pull": 0, - "push": 0, - "size": "md", - "width": 4, - "offset": 0, - "components": [ - { - "id": "ell9c8g", - "key": "dera", - "html": "

1.2 Does the DERA describe how the method(s) of assessment and the findings of any previous investigation(s) were used to design and carry out the current assessment? 

", - "type": "content", - "input": false, - "label": "Text/Images", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "allowCalculateOverride": false - } - ], - "currentWidth": 4 - }, - { - "pull": 0, - "push": 0, - "size": "md", - "width": 2, - "offset": 0, - "components": [ - { - "id": "ep1m9b", - "key": "simplecontentthreethree", - "html": "

Response

", - "type": "content", - "input": false, - "label": "Text/Images", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "allowCalculateOverride": false - }, - { - "id": "e0yqbqu", - "key": "radioGroupone", - "type": "radio", - "input": true, - "label": "Radio Group", - "hidden": false, - "inline": false, - "prefix": "", - "suffix": "", - "unique": false, - "values": [ - { - "label": "Yes", - "value": "yes", - "shortcut": "" - }, - { - "label": "No", - "value": "no", - "shortcut": "" - } - ], - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "fieldSet": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": true, - "customMessage": "", - "customPrivate": false, - "onlyAvailableItems": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": true, - "inputType": "radio", - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "json": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": "", - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "customConditional": "", - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "optionsLabelPosition": "right", - "allowCalculateOverride": false - } - ], - "currentWidth": 2 - }, - { - "pull": 0, - "push": 0, - "size": "md", - "width": 6, - "offset": 0, - "components": [ - { - "id": "e8yn0fd", - "key": "simplecontentthreeeight", - "html": "

Comments

", - "type": "content", - "input": false, - "label": "Text/Images", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "allowCalculateOverride": false - }, - { - "id": "eio5ell", - "key": "simpletextareatest", - "case": "", - "mask": false, - "rows": 2, - "type": "textarea", - "input": true, - "label": "Multi-line Text", - "editor": "", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": { - "type": "input" - }, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "wysiwyg": false, - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "pattern": "", - "maxWords": "", - "minWords": "", - "multiple": false, - "required": false, - "maxLength": "", - "minLength": "", - "customMessage": "", - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "fixedSize": true, - "hideLabel": true, - "inputMask": "", - "inputType": "text", - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": true, - "attributes": {}, - "autoExpand": true, - "errorLabel": "", - "persistent": true, - "properties": {}, - "spellcheck": true, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "json": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "inputFormat": "plain", - "placeholder": "", - "defaultValue": "", - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "customConditional": "", - "allowMultipleMasks": false, - "customDefaultValue": "", - "allowCalculateOverride": false - } - ], - "currentWidth": 6 - } - ], - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "autoAdjust": false, - "errorLabel": "", - "persistent": false, - "properties": {}, - "validateOn": "change", - "clearOnHide": false, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "allowCalculateOverride": false - }, - { - "id": "esnh3bi", - "key": "columnstwo", - "tree": false, - "type": "columns", - "input": false, - "label": "Columns", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "columns": [ - { - "pull": 0, - "push": 0, - "size": "md", - "width": 4, - "offset": 0, - "components": [ - { - "id": "e5xm7yi", - "key": "onethree", - "html": "

1.3 Does the DERA describe the extent to which any previous assessment(s) were/were not relied upon?

", - "type": "content", - "input": false, - "label": "Text/Images", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "allowCalculateOverride": false - } - ], - "currentWidth": 4 - }, - { - "pull": 0, - "push": 0, - "size": "md", - "width": 2, - "offset": 0, - "components": [ - { - "id": "eral38a", - "key": "simplecontentthreenine", - "html": "

Response

", - "type": "content", - "input": false, - "label": "Text/Images", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "allowCalculateOverride": false - }, - { - "id": "euvl3j", - "key": "radioGrouptwo", - "type": "radio", - "input": true, - "label": "Radio Group", - "hidden": false, - "inline": false, - "prefix": "", - "suffix": "", - "unique": false, - "values": [ - { - "label": "Yes", - "value": "yes", - "shortcut": "" - }, - { - "label": "No", - "value": "no", - "shortcut": "" - } - ], - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "fieldSet": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": true, - "customPrivate": false, - "onlyAvailableItems": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": true, - "inputType": "radio", - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "optionsLabelPosition": "right", - "allowCalculateOverride": false - } - ], - "currentWidth": 2 - }, - { - "pull": 0, - "push": 0, - "size": "md", - "width": 6, - "offset": 0, - "components": [ - { - "id": "ehr8vwo", - "key": "simplecontentforty", - "html": "

Comments

", - "type": "content", - "input": false, - "label": "Text/Images", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "allowCalculateOverride": false - }, - { - "id": "e0zyp5f", - "key": "threeimpletextareatwo", - "case": "", - "mask": false, - "rows": 2, - "type": "textarea", - "input": true, - "label": "Multi-line Text", - "editor": "", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": { - "type": "input" - }, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "wysiwyg": false, - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "pattern": "", - "maxWords": "", - "minWords": "", - "multiple": false, - "required": false, - "maxLength": "", - "minLength": "", - "customMessage": "", - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "fixedSize": true, - "hideLabel": true, - "inputMask": "", - "inputType": "text", - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": true, - "attributes": {}, - "autoExpand": true, - "errorLabel": "", - "persistent": true, - "properties": {}, - "spellcheck": true, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "json": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "inputFormat": "plain", - "placeholder": "", - "defaultValue": "", - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "customConditional": "", - "allowMultipleMasks": false, - "customDefaultValue": "", - "allowCalculateOverride": false - } - ], - "currentWidth": 6 - } - ], - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "autoAdjust": false, - "errorLabel": "", - "persistent": false, - "properties": {}, - "validateOn": "change", - "clearOnHide": false, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "allowCalculateOverride": false - }, - { - "id": "efqzeos", - "key": "columnsthree", - "tree": false, - "type": "columns", - "input": false, - "label": "Columns", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "columns": [ - { - "pull": 0, - "push": 0, - "size": "md", - "width": 4, - "offset": 0, - "components": [ - { - "id": "e8vcua", - "key": "four", - "html": "

1.4 If ministry preapprovals apply to the DERA, has all required preapproval documentation been provided with the risk assessment? 

", - "type": "content", - "input": false, - "label": "Text/Images", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "allowCalculateOverride": false - } - ], - "currentWidth": 4 - }, - { - "pull": 0, - "push": 0, - "size": "md", - "width": 2, - "offset": 0, - "components": [ - { - "id": "emdz4mh", - "key": "simplecontentfourone", - "html": "

Response

", - "type": "content", - "input": false, - "label": "Text/Images", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "allowCalculateOverride": false - }, - { - "id": "em6l9jb", - "key": "radioGroupthree", - "type": "radio", - "input": true, - "label": "Radio Group", - "hidden": false, - "inline": false, - "prefix": "", - "suffix": "", - "unique": false, - "values": [ - { - "label": "Yes", - "value": "yes", - "shortcut": "" - }, - { - "label": "No", - "value": "no", - "shortcut": "" - } - ], - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "fieldSet": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": true, - "customPrivate": false, - "onlyAvailableItems": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": true, - "inputType": "radio", - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "optionsLabelPosition": "right", - "allowCalculateOverride": false - } - ], - "currentWidth": 2 - }, - { - "pull": 0, - "push": 0, - "size": "md", - "width": 6, - "offset": 0, - "components": [ - { - "id": "ej1meks", - "key": "simplecontentfourtwo", - "html": "

Comments

", - "type": "content", - "input": false, - "label": "Text/Images", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "allowCalculateOverride": false - }, - { - "id": "enz8df", - "key": "foursimpletextarea", - "case": "", - "mask": false, - "rows": 2, - "type": "textarea", - "input": true, - "label": "Multi-line Text", - "editor": "", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": { - "type": "input" - }, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "wysiwyg": false, - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "pattern": "", - "maxWords": "", - "minWords": "", - "multiple": false, - "required": false, - "maxLength": "", - "minLength": "", - "customMessage": "", - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "fixedSize": true, - "hideLabel": true, - "inputMask": "", - "inputType": "text", - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": true, - "attributes": {}, - "autoExpand": true, - "errorLabel": "", - "persistent": true, - "properties": {}, - "spellcheck": true, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "json": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "inputFormat": "plain", - "placeholder": "", - "defaultValue": "", - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "customConditional": "", - "allowMultipleMasks": false, - "customDefaultValue": "", - "allowCalculateOverride": false - } - ], - "currentWidth": 6 - } - ], - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "autoAdjust": false, - "errorLabel": "", - "persistent": false, - "properties": {}, - "validateOn": "change", - "clearOnHide": false, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "allowCalculateOverride": false - }, - { - "id": "e3lgqen", - "key": "columnsfour", - "tree": false, - "type": "columns", - "input": false, - "label": "Columns", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "columns": [ - { - "pull": 0, - "push": 0, - "size": "md", - "width": 4, - "offset": 0, - "components": [ - { - "id": "eez7jmp", - "key": "five", - "html": "

1.5 Does the report make it clear what conditions are required (if any) for the instrument being applied for (e.g., Schedule B conditions for a Certificate of Compliance)?

", - "type": "content", - "input": false, - "label": "Text/Images", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "allowCalculateOverride": false - } - ], - "currentWidth": 4 - }, - { - "pull": 0, - "push": 0, - "size": "md", - "width": 2, - "offset": 0, - "components": [ - { - "id": "e7dwj5a", - "key": "simplecontentfourthree", - "html": "

Response

", - "type": "content", - "input": false, - "label": "Text/Images", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "allowCalculateOverride": false - }, - { - "id": "epqwqbu", - "key": "radioGroupfour", - "type": "radio", - "input": true, - "label": "Radio Group", - "hidden": false, - "inline": false, - "prefix": "", - "suffix": "", - "unique": false, - "values": [ - { - "label": "Yes", - "value": "yes", - "shortcut": "" - }, - { - "label": "No", - "value": "no", - "shortcut": "" - } - ], - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "fieldSet": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": true, - "customPrivate": false, - "onlyAvailableItems": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": true, - "inputType": "radio", - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "optionsLabelPosition": "right", - "allowCalculateOverride": false - } - ], - "currentWidth": 2 - }, - { - "pull": 0, - "push": 0, - "size": "md", - "width": 6, - "offset": 0, - "components": [ - { - "id": "e59jz0f", - "key": "simplecontentfourfour", - "html": "

Comments

", - "type": "content", - "input": false, - "label": "Text/Images", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "allowCalculateOverride": false - }, - { - "id": "e2kaj7", - "key": "fiveimpletextareafour", - "case": "", - "mask": false, - "rows": 2, - "type": "textarea", - "input": true, - "label": "Multi-line Text", - "editor": "", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": { - "type": "input" - }, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "wysiwyg": false, - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "pattern": "", - "maxWords": "", - "minWords": "", - "multiple": false, - "required": false, - "maxLength": "", - "minLength": "", - "customMessage": "", - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "fixedSize": true, - "hideLabel": true, - "inputMask": "", - "inputType": "text", - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": true, - "attributes": {}, - "autoExpand": true, - "errorLabel": "", - "persistent": true, - "properties": {}, - "spellcheck": true, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "json": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "inputFormat": "plain", - "placeholder": "", - "defaultValue": "", - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "customConditional": "", - "allowMultipleMasks": false, - "customDefaultValue": "", - "allowCalculateOverride": false - } - ], - "currentWidth": 6 - } - ], - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "autoAdjust": false, - "errorLabel": "", - "persistent": false, - "properties": {}, - "validateOn": "change", - "clearOnHide": false, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "allowCalculateOverride": false - }, - { - "id": "e6fsfvg", - "key": "columnsfive", - "tree": false, - "type": "columns", - "input": false, - "label": "Columns", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "columns": [ - { - "pull": 0, - "push": 0, - "size": "md", - "width": 4, - "offset": 0, - "components": [ - { - "id": "e69qkg", - "key": "six", - "html": "

1.6 Has field data relevant to the ecological risk assessment been provided?

", - "type": "content", - "input": false, - "label": "Text/Images", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "allowCalculateOverride": false - } - ], - "currentWidth": 4 - }, - { - "pull": 0, - "push": 0, - "size": "md", - "width": 2, - "offset": 0, - "components": [ - { - "id": "e81brt", - "key": "simplecontentfourfive", - "html": "

Response

", - "type": "content", - "input": false, - "label": "Text/Images", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "allowCalculateOverride": false - }, - { - "id": "e013kgf", - "key": "radioGroupfive", - "type": "radio", - "input": true, - "label": "Radio Group", - "hidden": false, - "inline": false, - "prefix": "", - "suffix": "", - "unique": false, - "values": [ - { - "label": "Yes", - "value": "yes", - "shortcut": "" - }, - { - "label": "No", - "value": "no", - "shortcut": "" - } - ], - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "fieldSet": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": true, - "customPrivate": false, - "onlyAvailableItems": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": true, - "inputType": "radio", - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "optionsLabelPosition": "right", - "allowCalculateOverride": false - } - ], - "currentWidth": 2 - }, - { - "pull": 0, - "push": 0, - "size": "md", - "width": 6, - "offset": 0, - "components": [ - { - "id": "ed9kbf6", - "key": "simplecontentfoursix", - "html": "

Comments

", - "type": "content", - "input": false, - "label": "Text/Images", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "allowCalculateOverride": false - }, - { - "id": "ejztcmd", - "key": "siximpletextareafive", - "case": "", - "mask": false, - "rows": 2, - "type": "textarea", - "input": true, - "label": "Multi-line Text", - "editor": "", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": { - "type": "input" - }, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "wysiwyg": false, - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "pattern": "", - "maxWords": "", - "minWords": "", - "multiple": false, - "required": false, - "maxLength": "", - "minLength": "", - "customMessage": "", - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "fixedSize": true, - "hideLabel": true, - "inputMask": "", - "inputType": "text", - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": true, - "attributes": {}, - "autoExpand": true, - "errorLabel": "", - "persistent": true, - "properties": {}, - "spellcheck": true, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "json": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "inputFormat": "plain", - "placeholder": "", - "defaultValue": "", - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "customConditional": "", - "allowMultipleMasks": false, - "customDefaultValue": "", - "allowCalculateOverride": false - } - ], - "currentWidth": 6 - } - ], - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "autoAdjust": false, - "errorLabel": "", - "persistent": false, - "properties": {}, - "validateOn": "change", - "clearOnHide": false, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "allowCalculateOverride": false - }, - { - "id": "edfjloh", - "key": "columnssix", - "tree": false, - "type": "columns", - "input": false, - "label": "Columns", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "columns": [ - { - "pull": 0, - "push": 0, - "size": "md", - "width": 4, - "offset": 0, - "components": [ - { - "id": "e8srcmv", - "key": "seven", - "html": "

1.7 Has laboratory data relevant to the ecological risk assessment been provided? 

", - "type": "content", - "input": false, - "label": "Text/Images", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "allowCalculateOverride": false - } - ], - "currentWidth": 4 - }, - { - "pull": 0, - "push": 0, - "size": "md", - "width": 2, - "offset": 0, - "components": [ - { - "id": "ebbz6ei", - "key": "simplecontentfourseven", - "html": "

Response

", - "type": "content", - "input": false, - "label": "Text/Images", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "allowCalculateOverride": false - }, - { - "id": "ebttphr", - "key": "radioGroupsix", - "type": "radio", - "input": true, - "label": "Radio Group", - "hidden": false, - "inline": false, - "prefix": "", - "suffix": "", - "unique": false, - "values": [ - { - "label": "Yes", - "value": "yes", - "shortcut": "" - }, - { - "label": "No", - "value": "no", - "shortcut": "" - } - ], - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "fieldSet": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": true, - "customPrivate": false, - "onlyAvailableItems": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": true, - "inputType": "radio", - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "optionsLabelPosition": "right", - "allowCalculateOverride": false - } - ], - "currentWidth": 2 - }, - { - "pull": 0, - "push": 0, - "size": "md", - "width": 6, - "offset": 0, - "components": [ - { - "id": "efe0gaf", - "key": "simplecontentfoureight", - "html": "

Comments

", - "type": "content", - "input": false, - "label": "Text/Images", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "allowCalculateOverride": false - }, - { - "id": "eb80f6b", - "key": "sevensimpletextareasix", - "case": "", - "mask": false, - "rows": 2, - "type": "textarea", - "input": true, - "label": "Multi-line Text", - "editor": "", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": { - "type": "input" - }, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "wysiwyg": false, - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "pattern": "", - "maxWords": "", - "minWords": "", - "multiple": false, - "required": false, - "maxLength": "", - "minLength": "", - "customMessage": "", - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "fixedSize": true, - "hideLabel": true, - "inputMask": "", - "inputType": "text", - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": true, - "attributes": {}, - "autoExpand": true, - "errorLabel": "", - "persistent": true, - "properties": {}, - "spellcheck": true, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "json": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "inputFormat": "plain", - "placeholder": "", - "defaultValue": "", - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "customConditional": "", - "allowMultipleMasks": false, - "customDefaultValue": "", - "allowCalculateOverride": false - } - ], - "currentWidth": 6 - } - ], - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "autoAdjust": false, - "errorLabel": "", - "persistent": false, - "properties": {}, - "validateOn": "change", - "clearOnHide": false, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "allowCalculateOverride": false - } - ], - "errorLabel": "", - "persistent": false, - "properties": {}, - "validateOn": "change", - "clearOnHide": false, - "collapsible": true, - "conditional": { - "eq": "", - "json": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "customConditional": "", - "allowMultipleMasks": false, - "customDefaultValue": "", - "allowCalculateOverride": false - }, - { - "id": "et2ccq", - "key": "subsectionProblemFormulation", - "tree": false, - "type": "panel", - "input": false, - "label": "", - "theme": "default", - "title": "Subsection 2.0 Problem Formulation", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "collapsed": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "breadcrumb": "default", - "components": [ - { - "id": "ednhxtj", - "key": "columnsseven", - "tree": false, - "type": "columns", - "input": false, - "label": "Columns", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "columns": [ - { - "pull": 0, - "push": 0, - "size": "md", - "width": 4, - "offset": 0, - "components": [ - { - "id": "etwfzoj", - "key": "simplecontentten", - "html": "", - "type": "content", - "input": false, - "label": "Text/Images", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "allowCalculateOverride": false - }, - { - "id": "extvw4r", - "key": "twoone", - "html": "

2.1 Have the objectives of the ecological risk assessment been documented? (See footnote 1)

", - "type": "content", - "input": false, - "label": "Text/Images", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "allowCalculateOverride": false - } - ], - "currentWidth": 4 - }, - { - "pull": 0, - "push": 0, - "size": "md", - "width": 2, - "offset": 0, - "components": [ - { - "id": "emtc5tm", - "key": "simplecontentfournine", - "html": "

Response

", - "type": "content", - "input": false, - "label": "Text/Images", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "allowCalculateOverride": false - }, - { - "id": "eyod2r1b", - "key": "radioGroupseven", - "type": "radio", - "input": true, - "label": "Radio Group", - "hidden": false, - "inline": false, - "prefix": "", - "suffix": "", - "unique": false, - "values": [ - { - "label": "Yes", - "value": "yes", - "shortcut": "" - }, - { - "label": "No", - "value": "no", - "shortcut": "" - } - ], - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "fieldSet": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": true, - "customPrivate": false, - "onlyAvailableItems": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": true, - "inputType": "radio", - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "optionsLabelPosition": "right", - "allowCalculateOverride": false - } - ], - "currentWidth": 2 - }, - { - "pull": 0, - "push": 0, - "size": "md", - "width": 6, - "offset": 0, - "components": [ - { - "id": "e1j43vn", - "key": "simplecontentfifty", - "html": "

Comments

", - "type": "content", - "input": false, - "label": "Text/Images", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "allowCalculateOverride": false - }, - { - "id": "ehph4qt", - "key": "onesimpletextarea", - "mask": false, - "rows": 2, - "type": "textarea", - "input": true, - "label": "Multi-line Text", - "editor": "", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": { - "type": "input" - }, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "wysiwyg": false, - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "pattern": "", - "maxWords": "", - "minWords": "", - "multiple": false, - "required": false, - "maxLength": "", - "minLength": "", - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "fixedSize": true, - "hideLabel": true, - "inputMask": "", - "inputType": "text", - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": true, - "attributes": {}, - "autoExpand": true, - "errorLabel": "", - "persistent": true, - "properties": {}, - "spellcheck": true, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "inputFormat": "plain", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "allowCalculateOverride": false - } - ], - "currentWidth": 6 - } - ], - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "autoAdjust": false, - "errorLabel": "", - "persistent": false, - "properties": {}, - "validateOn": "change", - "clearOnHide": false, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "allowCalculateOverride": false - }, - { - "id": "ekrxdm6", - "key": "columnseight", - "tree": false, - "type": "columns", - "input": false, - "label": "Columns", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "columns": [ - { - "pull": 0, - "push": 0, - "size": "md", - "width": 4, - "offset": 0, - "components": [ - { - "id": "etyjrjk", - "key": "twotwo", - "html": "

2.2 Were assessment and measurement endpoints for operative exposure pathways warranting further assessment defined? (See footnote 1)

", - "type": "content", - "input": false, - "label": "Text/Images", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "allowCalculateOverride": false - } - ], - "currentWidth": 4 - }, - { - "pull": 0, - "push": 0, - "size": "md", - "width": 2, - "offset": 0, - "components": [ - { - "id": "ew09m5k", - "key": "simplecontentfivetwo", - "html": "

Response

", - "type": "content", - "input": false, - "label": "Text/Images", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "allowCalculateOverride": false - }, - { - "id": "e5co8x", - "key": "radioGroupeight", - "type": "radio", - "input": true, - "label": "Radio Group", - "hidden": false, - "inline": false, - "prefix": "", - "suffix": "", - "unique": false, - "values": [ - { - "label": "Yes", - "value": "yes", - "shortcut": "" - }, - { - "label": "No", - "value": "no", - "shortcut": "" - } - ], - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "fieldSet": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": true, - "customPrivate": false, - "onlyAvailableItems": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": true, - "inputType": "radio", - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "optionsLabelPosition": "right", - "allowCalculateOverride": false - } - ], - "currentWidth": 2 - }, - { - "pull": 0, - "push": 0, - "size": "md", - "width": 6, - "offset": 0, - "components": [ - { - "id": "edtheg", - "key": "simplecontentfivethree", - "html": "

Comments

", - "type": "content", - "input": false, - "label": "Text/Images", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "allowCalculateOverride": false - }, - { - "id": "e1qplb", - "key": "simpletextareatwo", - "mask": false, - "rows": 2, - "type": "textarea", - "input": true, - "label": "Multi-line Text", - "editor": "", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": { - "type": "input" - }, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "wysiwyg": false, - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "pattern": "", - "maxWords": "", - "minWords": "", - "multiple": false, - "required": false, - "maxLength": "", - "minLength": "", - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "fixedSize": true, - "hideLabel": true, - "inputMask": "", - "inputType": "text", - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": true, - "attributes": {}, - "autoExpand": true, - "errorLabel": "", - "persistent": true, - "properties": {}, - "spellcheck": true, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "inputFormat": "plain", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "allowCalculateOverride": false - } - ], - "currentWidth": 6 - } - ], - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "autoAdjust": false, - "errorLabel": "", - "persistent": false, - "properties": {}, - "validateOn": "change", - "clearOnHide": false, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "allowCalculateOverride": false - }, - { - "id": "eirts5d", - "key": "columnsnine", - "tree": false, - "type": "columns", - "input": false, - "label": "Columns", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "columns": [ - { - "pull": 0, - "push": 0, - "size": "md", - "width": 4, - "offset": 0, - "components": [ - { - "id": "egdsidc", - "key": "twothree", - "html": "

2.3 Were assessment and measurement endpoints linked to the risk assessment objectives? (See footnote 1)

", - "type": "content", - "input": false, - "label": "Text/Images", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "allowCalculateOverride": false - } - ], - "currentWidth": 4 - }, - { - "pull": 0, - "push": 0, - "size": "md", - "width": 2, - "offset": 0, - "components": [ - { - "id": "es764fq", - "key": "simplecontentfivefour", - "html": "

Response

", - "type": "content", - "input": false, - "label": "Text/Images", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "allowCalculateOverride": false - }, - { - "id": "eji82tr", - "key": "radioGroupnine", - "type": "radio", - "input": true, - "label": "Radio Group", - "hidden": false, - "inline": false, - "prefix": "", - "suffix": "", - "unique": false, - "values": [ - { - "label": "Yes", - "value": "yes", - "shortcut": "" - }, - { - "label": "No", - "value": "no", - "shortcut": "" - } - ], - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "fieldSet": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": true, - "customPrivate": false, - "onlyAvailableItems": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": true, - "inputType": "radio", - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "optionsLabelPosition": "right", - "allowCalculateOverride": false - } - ], - "currentWidth": 2 - }, - { - "pull": 0, - "push": 0, - "size": "md", - "width": 6, - "offset": 0, - "components": [ - { - "id": "eav8ay6", - "key": "simplecontentfivefive", - "html": "

Comments

", - "type": "content", - "input": false, - "label": "Text/Images", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "allowCalculateOverride": false - }, - { - "id": "e9huhua", - "key": "simpletextareathree", - "mask": false, - "rows": 2, - "type": "textarea", - "input": true, - "label": "Multi-line Text", - "editor": "", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": { - "type": "input" - }, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "wysiwyg": false, - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "pattern": "", - "maxWords": "", - "minWords": "", - "multiple": false, - "required": false, - "maxLength": "", - "minLength": "", - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "fixedSize": true, - "hideLabel": true, - "inputMask": "", - "inputType": "text", - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": true, - "attributes": {}, - "autoExpand": true, - "errorLabel": "", - "persistent": true, - "properties": {}, - "spellcheck": true, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "inputFormat": "plain", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "allowCalculateOverride": false - } - ], - "currentWidth": 6 - } - ], - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "autoAdjust": false, - "errorLabel": "", - "persistent": false, - "properties": {}, - "validateOn": "change", - "clearOnHide": false, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "allowCalculateOverride": false - }, - { - "id": "e7lyld", - "key": "columnsonezero", - "tree": false, - "type": "columns", - "input": false, - "label": "Columns", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "columns": [ - { - "pull": 0, - "push": 0, - "size": "md", - "width": 4, - "offset": 0, - "components": [ - { - "id": "es6mwqn", - "key": "twofour", - "html": "

2.4 Were all current and reasonable potential future land, water and sediment uses identified in the problem formulation and considered in screening for chemical exceedances?

", - "type": "content", - "input": false, - "label": "Text/Images", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "allowCalculateOverride": false - } - ], - "currentWidth": 4 - }, - { - "pull": 0, - "push": 0, - "size": "md", - "width": 2, - "offset": 0, - "components": [ - { - "id": "e609iyx", - "key": "simplecontentfivesix", - "html": "

Response

", - "type": "content", - "input": false, - "label": "Text/Images", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "allowCalculateOverride": false - }, - { - "id": "e3chs1", - "key": "radioGroupten", - "type": "radio", - "input": true, - "label": "Radio Group", - "hidden": false, - "inline": false, - "prefix": "", - "suffix": "", - "unique": false, - "values": [ - { - "label": "Yes", - "value": "yes", - "shortcut": "" - }, - { - "label": "No", - "value": "no", - "shortcut": "" - } - ], - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "fieldSet": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": true, - "customPrivate": false, - "onlyAvailableItems": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": true, - "inputType": "radio", - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "optionsLabelPosition": "right", - "allowCalculateOverride": false - } - ], - "currentWidth": 2 - }, - { - "pull": 0, - "push": 0, - "size": "md", - "width": 6, - "offset": 0, - "components": [ - { - "id": "edl1lnl", - "key": "simplecontentfiveseven", - "html": "

Comments

", - "type": "content", - "input": false, - "label": "Text/Images", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "allowCalculateOverride": false - }, - { - "id": "eyy71f8", - "key": "simpletextareafour", - "mask": false, - "rows": 2, - "type": "textarea", - "input": true, - "label": "Multi-line Text", - "editor": "", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": { - "type": "input" - }, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "wysiwyg": false, - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "pattern": "", - "maxWords": "", - "minWords": "", - "multiple": false, - "required": false, - "maxLength": "", - "minLength": "", - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "fixedSize": true, - "hideLabel": true, - "inputMask": "", - "inputType": "text", - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": true, - "attributes": {}, - "autoExpand": true, - "errorLabel": "", - "persistent": true, - "properties": {}, - "spellcheck": true, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "inputFormat": "plain", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "allowCalculateOverride": false - } - ], - "currentWidth": 6 - } - ], - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "autoAdjust": false, - "errorLabel": "", - "persistent": false, - "properties": {}, - "validateOn": "change", - "clearOnHide": false, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "allowCalculateOverride": false - }, - { - "id": "e0cczs", - "key": "columnsoneone", - "tree": false, - "type": "columns", - "input": false, - "label": "Columns", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "columns": [ - { - "pull": 0, - "push": 0, - "size": "md", - "width": 4, - "offset": 0, - "components": [ - { - "id": "eula1d", - "key": "twofive", - "html": "

2.5 Were assumptions associated with current and future land use documented and rationale provided (e.g., development scenario)?

", - "type": "content", - "input": false, - "label": "Text/Images", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "allowCalculateOverride": false - } - ], - "currentWidth": 4 - }, - { - "pull": 0, - "push": 0, - "size": "md", - "width": 2, - "offset": 0, - "components": [ - { - "id": "ejxlw3", - "key": "simplecontentfiveeight", - "html": "

Response

", - "type": "content", - "input": false, - "label": "Text/Images", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "allowCalculateOverride": false - }, - { - "id": "ev9lap", - "key": "radioGroupeleven", - "type": "radio", - "input": true, - "label": "Radio Group", - "hidden": false, - "inline": false, - "prefix": "", - "suffix": "", - "unique": false, - "values": [ - { - "label": "Yes", - "value": "yes", - "shortcut": "" - }, - { - "label": "No", - "value": "no", - "shortcut": "" - } - ], - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "fieldSet": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": true, - "customPrivate": false, - "onlyAvailableItems": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": true, - "inputType": "radio", - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "optionsLabelPosition": "right", - "allowCalculateOverride": false - } - ], - "currentWidth": 2 - }, - { - "pull": 0, - "push": 0, - "size": "md", - "width": 6, - "offset": 0, - "components": [ - { - "id": "ex8tf3p", - "key": "simplecontentfivenine", - "html": "

Comments

", - "type": "content", - "input": false, - "label": "Text/Images", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "allowCalculateOverride": false - }, - { - "id": "eeejhjq", - "key": "simpletextareafive", - "mask": false, - "rows": 2, - "type": "textarea", - "input": true, - "label": "Multi-line Text", - "editor": "", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": { - "type": "input" - }, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "wysiwyg": false, - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "pattern": "", - "maxWords": "", - "minWords": "", - "multiple": false, - "required": false, - "maxLength": "", - "minLength": "", - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "fixedSize": true, - "hideLabel": true, - "inputMask": "", - "inputType": "text", - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": true, - "attributes": {}, - "autoExpand": true, - "errorLabel": "", - "persistent": true, - "properties": {}, - "spellcheck": true, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "inputFormat": "plain", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "allowCalculateOverride": false - } - ], - "currentWidth": 6 - } - ], - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "autoAdjust": false, - "errorLabel": "", - "persistent": false, - "properties": {}, - "validateOn": "change", - "clearOnHide": false, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "allowCalculateOverride": false - }, - { - "id": "eain23o", - "key": "columnsonetwo", - "tree": false, - "type": "columns", - "input": false, - "label": "Columns", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "columns": [ - { - "pull": 0, - "push": 0, - "size": "md", - "width": 4, - "offset": 0, - "components": [ - { - "id": "e4vddf", - "key": "twosix", - "html": "

2.6 Were potential contaminants of concern identified?

", - "type": "content", - "input": false, - "label": "Text/Images", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "allowCalculateOverride": false - } - ], - "currentWidth": 4 - }, - { - "pull": 0, - "push": 0, - "size": "md", - "width": 2, - "offset": 0, - "components": [ - { - "id": "ezyob4e", - "key": "simplecontentsixty", - "html": "

Response

", - "type": "content", - "input": false, - "label": "Text/Images", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "allowCalculateOverride": false - }, - { - "id": "esktrnt", - "key": "radioGrouptwelve", - "type": "radio", - "input": true, - "label": "Radio Group", - "hidden": false, - "inline": false, - "prefix": "", - "suffix": "", - "unique": false, - "values": [ - { - "label": "Yes", - "value": "yes", - "shortcut": "" - }, - { - "label": "No", - "value": "no", - "shortcut": "" - } - ], - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "fieldSet": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": true, - "customPrivate": false, - "onlyAvailableItems": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": true, - "inputType": "radio", - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "optionsLabelPosition": "right", - "allowCalculateOverride": false - } - ], - "currentWidth": 2 - }, - { - "pull": 0, - "push": 0, - "size": "md", - "width": 6, - "offset": 0, - "components": [ - { - "id": "ektazf", - "key": "simplecontentsixone", - "html": "

Comments

", - "type": "content", - "input": false, - "label": "Text/Images", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "allowCalculateOverride": false - }, - { - "id": "eycoz3f", - "key": "simpletextareasix", - "mask": false, - "rows": 2, - "type": "textarea", - "input": true, - "label": "Multi-line Text", - "editor": "", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": { - "type": "input" - }, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "wysiwyg": false, - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "pattern": "", - "maxWords": "", - "minWords": "", - "multiple": false, - "required": false, - "maxLength": "", - "minLength": "", - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "fixedSize": true, - "hideLabel": true, - "inputMask": "", - "inputType": "text", - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": true, - "attributes": {}, - "autoExpand": true, - "errorLabel": "", - "persistent": true, - "properties": {}, - "spellcheck": true, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "inputFormat": "plain", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "allowCalculateOverride": false - } - ], - "currentWidth": 6 - } - ], - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "autoAdjust": false, - "errorLabel": "", - "persistent": false, - "properties": {}, - "validateOn": "change", - "clearOnHide": false, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "allowCalculateOverride": false - }, - { - "id": "e2ryhv", - "key": "columnsonethree", - "tree": false, - "type": "columns", - "input": false, - "label": "Columns", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "columns": [ - { - "pull": 0, - "push": 0, - "size": "md", - "width": 4, - "offset": 0, - "components": [ - { - "id": "e7dxa6q", - "key": "twoseven", - "html": "

2.7 Was a conceptual site model included?

", - "type": "content", - "input": false, - "label": "Text/Images", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "allowCalculateOverride": false - } - ], - "currentWidth": 4 - }, - { - "pull": 0, - "push": 0, - "size": "md", - "width": 2, - "offset": 0, - "components": [ - { - "id": "e9907yf", - "key": "simplecontentsixtwo", - "html": "

Response

", - "type": "content", - "input": false, - "label": "Text/Images", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "allowCalculateOverride": false - }, - { - "id": "ecmm8ty", - "key": "radioGroupthirteen", - "type": "radio", - "input": true, - "label": "Radio Group", - "hidden": false, - "inline": false, - "prefix": "", - "suffix": "", - "unique": false, - "values": [ - { - "label": "Yes", - "value": "yes", - "shortcut": "" - }, - { - "label": "No", - "value": "no", - "shortcut": "" - } - ], - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "fieldSet": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": true, - "customPrivate": false, - "onlyAvailableItems": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": true, - "inputType": "radio", - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "optionsLabelPosition": "right", - "allowCalculateOverride": false - } - ], - "currentWidth": 2 - }, - { - "pull": 0, - "push": 0, - "size": "md", - "width": 6, - "offset": 0, - "components": [ - { - "id": "ebp8f3h", - "key": "simplecontentsixthree", - "html": "

Comments

", - "type": "content", - "input": false, - "label": "Text/Images", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "allowCalculateOverride": false - }, - { - "id": "ey1l1v", - "key": "simpletextareaseven", - "mask": false, - "rows": 2, - "type": "textarea", - "input": true, - "label": "Multi-line Text", - "editor": "", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": { - "type": "input" - }, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "wysiwyg": false, - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "pattern": "", - "maxWords": "", - "minWords": "", - "multiple": false, - "required": false, - "maxLength": "", - "minLength": "", - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "fixedSize": true, - "hideLabel": true, - "inputMask": "", - "inputType": "text", - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": true, - "attributes": {}, - "autoExpand": true, - "errorLabel": "", - "persistent": true, - "properties": {}, - "spellcheck": true, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "inputFormat": "plain", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "allowCalculateOverride": false - } - ], - "currentWidth": 6 - } - ], - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "autoAdjust": false, - "errorLabel": "", - "persistent": false, - "properties": {}, - "validateOn": "change", - "clearOnHide": false, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "allowCalculateOverride": false - }, - { - "id": "eaxz7x", - "key": "columnsonefour", - "tree": false, - "type": "columns", - "input": false, - "label": "Columns", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "columns": [ - { - "pull": 0, - "push": 0, - "size": "md", - "width": 4, - "offset": 0, - "components": [ - { - "id": "etv0teq", - "key": "twoeight", - "html": "

2.8 Were all relevant exposure pathways (direct and indirect) identified and considered?

", - "type": "content", - "input": false, - "label": "Text/Images", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "allowCalculateOverride": false - } - ], - "currentWidth": 4 - }, - { - "pull": 0, - "push": 0, - "size": "md", - "width": 2, - "offset": 0, - "components": [ - { - "id": "el9ziy6", - "key": "simplecontentsixfour", - "html": "

Response

", - "type": "content", - "input": false, - "label": "Text/Images", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "allowCalculateOverride": false - }, - { - "id": "ejron5", - "key": "radioGroupfourteen", - "type": "radio", - "input": true, - "label": "Radio Group", - "hidden": false, - "inline": false, - "prefix": "", - "suffix": "", - "unique": false, - "values": [ - { - "label": "Yes", - "value": "yes", - "shortcut": "" - }, - { - "label": "No", - "value": "no", - "shortcut": "" - } - ], - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "fieldSet": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": true, - "customPrivate": false, - "onlyAvailableItems": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": true, - "inputType": "radio", - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "optionsLabelPosition": "right", - "allowCalculateOverride": false - } - ], - "currentWidth": 2 - }, - { - "pull": 0, - "push": 0, - "size": "md", - "width": 6, - "offset": 0, - "components": [ - { - "id": "e5oap1", - "key": "simplecontentsixfive", - "html": "

Comments

", - "type": "content", - "input": false, - "label": "Text/Images", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "allowCalculateOverride": false - }, - { - "id": "eo7bthj", - "key": "simpletextareaeight", - "mask": false, - "rows": 2, - "type": "textarea", - "input": true, - "label": "Multi-line Text", - "editor": "", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": { - "type": "input" - }, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "wysiwyg": false, - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "pattern": "", - "maxWords": "", - "minWords": "", - "multiple": false, - "required": false, - "maxLength": "", - "minLength": "", - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "fixedSize": true, - "hideLabel": true, - "inputMask": "", - "inputType": "text", - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": true, - "attributes": {}, - "autoExpand": true, - "errorLabel": "", - "persistent": true, - "properties": {}, - "spellcheck": true, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "inputFormat": "plain", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "allowCalculateOverride": false - } - ], - "currentWidth": 6 - } - ], - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "autoAdjust": false, - "errorLabel": "", - "persistent": false, - "properties": {}, - "validateOn": "change", - "clearOnHide": false, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "allowCalculateOverride": false - }, - { - "id": "eqbtbs", - "key": "columnsonefive", - "tree": false, - "type": "columns", - "input": false, - "label": "Columns", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "columns": [ - { - "pull": 0, - "push": 0, - "size": "md", - "width": 4, - "offset": 0, - "components": [ - { - "id": "e21b9ck", - "key": "twonine", - "html": "

2.9 If the site was previously assessed using screening level risk assessment (SLRA) and if exposure pathways excluded under the SLRA were not considered in the DERA; were the assumptions upon which the pathways were excluded in the SLRA confirmed in the DERA? (See footnote 2)

", - "type": "content", - "input": false, - "label": "Text/Images", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "allowCalculateOverride": false - } - ], - "currentWidth": 4 - }, - { - "pull": 0, - "push": 0, - "size": "md", - "width": 2, - "offset": 0, - "components": [ - { - "id": "e6jewmf", - "key": "simplecontentsixsix", - "html": "

Response

", - "type": "content", - "input": false, - "label": "Text/Images", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "allowCalculateOverride": false - }, - { - "id": "ex0kqt", - "key": "radioGroupfifteen", - "type": "radio", - "input": true, - "label": "Radio Group", - "hidden": false, - "inline": false, - "prefix": "", - "suffix": "", - "unique": false, - "values": [ - { - "label": "Yes", - "value": "yes", - "shortcut": "" - }, - { - "label": "No", - "value": "no", - "shortcut": "" - } - ], - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "fieldSet": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": true, - "customPrivate": false, - "onlyAvailableItems": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": true, - "inputType": "radio", - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "optionsLabelPosition": "right", - "allowCalculateOverride": false - } - ], - "currentWidth": 2 - }, - { - "pull": 0, - "push": 0, - "size": "md", - "width": 6, - "offset": 0, - "components": [ - { - "id": "ew9zmv", - "key": "simplecontentsixseven", - "html": "

Comments

", - "type": "content", - "input": false, - "label": "Text/Images", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "allowCalculateOverride": false - }, - { - "id": "el8g4q", - "key": "simpletextareanine", - "mask": false, - "rows": 2, - "type": "textarea", - "input": true, - "label": "Multi-line Text", - "editor": "", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": { - "type": "input" - }, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "wysiwyg": false, - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "pattern": "", - "maxWords": "", - "minWords": "", - "multiple": false, - "required": false, - "maxLength": "", - "minLength": "", - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "fixedSize": true, - "hideLabel": true, - "inputMask": "", - "inputType": "text", - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": true, - "attributes": {}, - "autoExpand": true, - "errorLabel": "", - "persistent": true, - "properties": {}, - "spellcheck": true, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "inputFormat": "plain", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "allowCalculateOverride": false - } - ], - "currentWidth": 6 - } - ], - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "autoAdjust": false, - "errorLabel": "", - "persistent": false, - "properties": {}, - "validateOn": "change", - "clearOnHide": false, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "allowCalculateOverride": false - }, - { - "id": "eoidpmq", - "key": "columnsonesix", - "tree": false, - "type": "columns", - "input": false, - "label": "Columns", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "columns": [ - { - "pull": 0, - "push": 0, - "size": "md", - "width": 4, - "offset": 0, - "components": [ - { - "id": "enyk2s", - "key": "twoten", - "html": "

2.10 If statistics were used in the DERA, was a rationale provided for the statistical methods used?

", - "type": "content", - "input": false, - "label": "Text/Images", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "allowCalculateOverride": false - } - ], - "currentWidth": 4 - }, - { - "pull": 0, - "push": 0, - "size": "md", - "width": 2, - "offset": 0, - "components": [ - { - "id": "egq6den", - "key": "simplecontentsixeight", - "html": "

Response

", - "type": "content", - "input": false, - "label": "Text/Images", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "allowCalculateOverride": false - }, - { - "id": "eyb4j9b", - "key": "radioGroupsixteen", - "type": "radio", - "input": true, - "label": "Radio Group", - "hidden": false, - "inline": false, - "prefix": "", - "suffix": "", - "unique": false, - "values": [ - { - "label": "Yes", - "value": "yes", - "shortcut": "" - }, - { - "label": "No", - "value": "no", - "shortcut": "" - } - ], - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "fieldSet": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": true, - "customPrivate": false, - "onlyAvailableItems": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": true, - "inputType": "radio", - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "optionsLabelPosition": "right", - "allowCalculateOverride": false - } - ], - "currentWidth": 2 - }, - { - "pull": 0, - "push": 0, - "size": "md", - "width": 6, - "offset": 0, - "components": [ - { - "id": "ehygad8", - "key": "simplecontentsixnine", - "html": "

Comments

", - "type": "content", - "input": false, - "label": "Text/Images", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "allowCalculateOverride": false - }, - { - "id": "e6nyg06", - "key": "simpletextareaten", - "mask": false, - "rows": 2, - "type": "textarea", - "input": true, - "label": "Multi-line Text", - "editor": "", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": { - "type": "input" - }, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "wysiwyg": false, - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "pattern": "", - "maxWords": "", - "minWords": "", - "multiple": false, - "required": false, - "maxLength": "", - "minLength": "", - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "fixedSize": true, - "hideLabel": true, - "inputMask": "", - "inputType": "text", - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": true, - "attributes": {}, - "autoExpand": true, - "errorLabel": "", - "persistent": true, - "properties": {}, - "spellcheck": true, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "inputFormat": "plain", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "allowCalculateOverride": false - } - ], - "currentWidth": 6 - } - ], - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "autoAdjust": false, - "errorLabel": "", - "persistent": false, - "properties": {}, - "validateOn": "change", - "clearOnHide": false, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "allowCalculateOverride": false - }, - { - "id": "el9pnse", - "key": "columnsoneseven", - "tree": false, - "type": "columns", - "input": false, - "label": "Columns", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "columns": [ - { - "pull": 0, - "push": 0, - "size": "md", - "width": 4, - "offset": 0, - "components": [ - { - "id": "e20owe7", - "key": "twoeleven", - "html": "

2.11 Was a rationale provided for any exclusion of contaminants that exceed applicable standards, criteria, or guidelines? (See footnote 3)

", - "type": "content", - "input": false, - "label": "Text/Images", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "allowCalculateOverride": false - } - ], - "currentWidth": 4 - }, - { - "pull": 0, - "push": 0, - "size": "md", - "width": 2, - "offset": 0, - "components": [ - { - "id": "emyn1aj", - "key": "simplecontentseventy", - "html": "

Response

", - "type": "content", - "input": false, - "label": "Text/Images", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "allowCalculateOverride": false - }, - { - "id": "erp1pog", - "key": "radioGroupseventeen", - "type": "radio", - "input": true, - "label": "Radio Group", - "hidden": false, - "inline": false, - "prefix": "", - "suffix": "", - "unique": false, - "values": [ - { - "label": "Yes", - "value": "yes", - "shortcut": "" - }, - { - "label": "No", - "value": "no", - "shortcut": "" - } - ], - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "fieldSet": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": true, - "customPrivate": false, - "onlyAvailableItems": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": true, - "inputType": "radio", - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "optionsLabelPosition": "right", - "allowCalculateOverride": false - } - ], - "currentWidth": 2 - }, - { - "pull": 0, - "push": 0, - "size": "md", - "width": 6, - "offset": 0, - "components": [ - { - "id": "evepebn", - "key": "simplecontentsevenone", - "html": "

Comments

", - "type": "content", - "input": false, - "label": "Text/Images", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "allowCalculateOverride": false - }, - { - "id": "ej0zlo", - "key": "simpletextareaeleven", - "mask": false, - "rows": 2, - "type": "textarea", - "input": true, - "label": "Multi-line Text", - "editor": "", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": { - "type": "input" - }, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "wysiwyg": false, - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "pattern": "", - "maxWords": "", - "minWords": "", - "multiple": false, - "required": false, - "maxLength": "", - "minLength": "", - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "fixedSize": true, - "hideLabel": true, - "inputMask": "", - "inputType": "text", - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": true, - "attributes": {}, - "autoExpand": true, - "errorLabel": "", - "persistent": true, - "properties": {}, - "spellcheck": true, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "inputFormat": "plain", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "allowCalculateOverride": false - } - ], - "currentWidth": 6 - } - ], - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "autoAdjust": false, - "errorLabel": "", - "persistent": false, - "properties": {}, - "validateOn": "change", - "clearOnHide": false, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "allowCalculateOverride": false - }, - { - "id": "e8pb20n", - "key": "columnsonenine", - "tree": false, - "type": "columns", - "input": false, - "label": "Columns", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "columns": [ - { - "pull": 0, - "push": 0, - "size": "md", - "width": 4, - "offset": 0, - "components": [ - { - "id": "ec380cl", - "key": "twotwelve", - "html": "

2.12 Did a qualified professional visit and assess the site?

", - "type": "content", - "input": false, - "label": "Text/Images", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "allowCalculateOverride": false - } - ], - "currentWidth": 4 - }, - { - "pull": 0, - "push": 0, - "size": "md", - "width": 2, - "offset": 0, - "components": [ - { - "id": "evdlxf", - "key": "simplecontentsevenfour", - "html": "

Response

", - "type": "content", - "input": false, - "label": "Text/Images", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "allowCalculateOverride": false - }, - { - "id": "ek7tm0p", - "key": "radioGroupninteen", - "type": "radio", - "input": true, - "label": "Radio Group", - "hidden": false, - "inline": false, - "prefix": "", - "suffix": "", - "unique": false, - "values": [ - { - "label": "Yes", - "value": "yes", - "shortcut": "" - }, - { - "label": "No", - "value": "no", - "shortcut": "" - } - ], - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "fieldSet": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": true, - "customPrivate": false, - "onlyAvailableItems": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": true, - "inputType": "radio", - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "optionsLabelPosition": "right", - "allowCalculateOverride": false - } - ], - "currentWidth": 2 - }, - { - "pull": 0, - "push": 0, - "size": "md", - "width": 6, - "offset": 0, - "components": [ - { - "id": "er86y0h", - "key": "simplecontentsevenfive", - "html": "

Comments

", - "type": "content", - "input": false, - "label": "Text/Images", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "allowCalculateOverride": false - }, - { - "id": "elq2vaj", - "key": "simpletextareathirteen", - "mask": false, - "rows": 2, - "type": "textarea", - "input": true, - "label": "Multi-line Text", - "editor": "", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": { - "type": "input" - }, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "wysiwyg": false, - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "pattern": "", - "maxWords": "", - "minWords": "", - "multiple": false, - "required": false, - "maxLength": "", - "minLength": "", - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "fixedSize": true, - "hideLabel": true, - "inputMask": "", - "inputType": "text", - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": true, - "attributes": {}, - "autoExpand": true, - "errorLabel": "", - "persistent": true, - "properties": {}, - "spellcheck": true, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "inputFormat": "plain", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "allowCalculateOverride": false - } - ], - "currentWidth": 6 - } - ], - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "autoAdjust": false, - "errorLabel": "", - "persistent": false, - "properties": {}, - "validateOn": "change", - "clearOnHide": false, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "allowCalculateOverride": false - }, - { - "id": "ev8b32", - "key": "columnsoneeight", - "tree": false, - "type": "columns", - "input": false, - "label": "Columns", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "columns": [ - { - "pull": 0, - "push": 0, - "size": "md", - "width": 4, - "offset": 0, - "components": [ - { - "id": "erqsxgl", - "key": "twothirteen", - "html": "

2.13 Were receptors of potential concern identified based on commonly accepted risk assessment practice, including consideration of: ecological relevance, social importance, exposure potential and contaminant sensitivity? (See footnote 4)

", - "type": "content", - "input": false, - "label": "Text/Images", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "allowCalculateOverride": false - } - ], - "currentWidth": 4 - }, - { - "pull": 0, - "push": 0, - "size": "md", - "width": 2, - "offset": 0, - "components": [ - { - "id": "eg9sql", - "key": "simplecontentseventwo", - "html": "

Response

", - "type": "content", - "input": false, - "label": "Text/Images", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "allowCalculateOverride": false - }, - { - "id": "egezvcj", - "key": "radioGroupeightteen", - "type": "radio", - "input": true, - "label": "Radio Group", - "hidden": false, - "inline": false, - "prefix": "", - "suffix": "", - "unique": false, - "values": [ - { - "label": "Yes", - "value": "yes", - "shortcut": "" - }, - { - "label": "No", - "value": "no", - "shortcut": "" - } - ], - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "fieldSet": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": true, - "customPrivate": false, - "onlyAvailableItems": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": true, - "inputType": "radio", - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "optionsLabelPosition": "right", - "allowCalculateOverride": false - } - ], - "currentWidth": 2 - }, - { - "pull": 0, - "push": 0, - "size": "md", - "width": 6, - "offset": 0, - "components": [ - { - "id": "e4087y", - "key": "simplecontentseventhree", - "html": "

Comments

", - "type": "content", - "input": false, - "label": "Text/Images", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "allowCalculateOverride": false - }, - { - "id": "ebursg", - "key": "simpletextareatwelve", - "mask": false, - "rows": 2, - "type": "textarea", - "input": true, - "label": "Multi-line Text", - "editor": "", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": { - "type": "input" - }, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "wysiwyg": false, - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "pattern": "", - "maxWords": "", - "minWords": "", - "multiple": false, - "required": false, - "maxLength": "", - "minLength": "", - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "fixedSize": true, - "hideLabel": true, - "inputMask": "", - "inputType": "text", - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": true, - "attributes": {}, - "autoExpand": true, - "errorLabel": "", - "persistent": true, - "properties": {}, - "spellcheck": true, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "inputFormat": "plain", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "allowCalculateOverride": false - } - ], - "currentWidth": 6 - } - ], - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "autoAdjust": false, - "errorLabel": "", - "persistent": false, - "properties": {}, - "validateOn": "change", - "clearOnHide": false, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "allowCalculateOverride": false - }, - { - "id": "e0xbc57", - "key": "columnstwozero", - "tree": false, - "type": "columns", - "input": false, - "label": "Columns", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "columns": [ - { - "pull": 0, - "push": 0, - "size": "md", - "width": 4, - "offset": 0, - "components": [ - { - "id": "e562d5", - "key": "twofourteen", - "html": "

2.14 Was the site assessed for likely use by red and blue listed species?

", - "type": "content", - "input": false, - "label": "Text/Images", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "allowCalculateOverride": false - } - ], - "currentWidth": 4 - }, - { - "pull": 0, - "push": 0, - "size": "md", - "width": 2, - "offset": 0, - "components": [ - { - "id": "ecn0z2a", - "key": "simplecontentsevensix", - "html": "

Response

", - "type": "content", - "input": false, - "label": "Text/Images", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "allowCalculateOverride": false - }, - { - "id": "exbrt4j", - "key": "radioGrouptwenty", - "type": "radio", - "input": true, - "label": "Radio Group", - "hidden": false, - "inline": false, - "prefix": "", - "suffix": "", - "unique": false, - "values": [ - { - "label": "Yes", - "value": "yes", - "shortcut": "" - }, - { - "label": "No", - "value": "no", - "shortcut": "" - } - ], - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "fieldSet": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": true, - "customPrivate": false, - "onlyAvailableItems": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": true, - "inputType": "radio", - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "optionsLabelPosition": "right", - "allowCalculateOverride": false - } - ], - "currentWidth": 2 - }, - { - "pull": 0, - "push": 0, - "size": "md", - "width": 6, - "offset": 0, - "components": [ - { - "id": "ez6aeq", - "key": "simplecontentsevenseven", - "html": "

Comments

", - "type": "content", - "input": false, - "label": "Text/Images", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "allowCalculateOverride": false - }, - { - "id": "ec6uggh", - "key": "simpletextareafourteen", - "mask": false, - "rows": 2, - "type": "textarea", - "input": true, - "label": "Multi-line Text", - "editor": "", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": { - "type": "input" - }, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "wysiwyg": false, - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "pattern": "", - "maxWords": "", - "minWords": "", - "multiple": false, - "required": false, - "maxLength": "", - "minLength": "", - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "fixedSize": true, - "hideLabel": true, - "inputMask": "", - "inputType": "text", - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": true, - "attributes": {}, - "autoExpand": true, - "errorLabel": "", - "persistent": true, - "properties": {}, - "spellcheck": true, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "inputFormat": "plain", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "allowCalculateOverride": false - } - ], - "currentWidth": 6 - } - ], - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "autoAdjust": false, - "errorLabel": "", - "persistent": false, - "properties": {}, - "validateOn": "change", - "clearOnHide": false, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "allowCalculateOverride": false - }, - { - "id": "eshn8cd", - "key": "columnstwoone", - "tree": false, - "type": "columns", - "input": false, - "label": "Columns", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "columns": [ - { - "pull": 0, - "push": 0, - "size": "md", - "width": 4, - "offset": 0, - "components": [ - { - "id": "ekap2qt", - "key": "twofifteen", - "html": "

2.15 Were contaminant-pathway-receptor combinations that warranted further assessment clearly identified?

", - "type": "content", - "input": false, - "label": "Text/Images", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "allowCalculateOverride": false - } - ], - "currentWidth": 4 - }, - { - "pull": 0, - "push": 0, - "size": "md", - "width": 2, - "offset": 0, - "components": [ - { - "id": "e64k8be", - "key": "simplecontentseveneight", - "html": "

Response

", - "type": "content", - "input": false, - "label": "Text/Images", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "allowCalculateOverride": false - }, - { - "id": "ea7oe3v", - "key": "radioGrouptwoone", - "type": "radio", - "input": true, - "label": "Radio Group", - "hidden": false, - "inline": false, - "prefix": "", - "suffix": "", - "unique": false, - "values": [ - { - "label": "Yes", - "value": "yes", - "shortcut": "" - }, - { - "label": "No", - "value": "no", - "shortcut": "" - } - ], - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "fieldSet": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": true, - "customPrivate": false, - "onlyAvailableItems": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": true, - "inputType": "radio", - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "optionsLabelPosition": "right", - "allowCalculateOverride": false - } - ], - "currentWidth": 2 - }, - { - "pull": 0, - "push": 0, - "size": "md", - "width": 6, - "offset": 0, - "components": [ - { - "id": "eoc6uue", - "key": "simplecontentsevennine", - "html": "

Comments

", - "type": "content", - "input": false, - "label": "Text/Images", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "allowCalculateOverride": false - }, - { - "id": "eki2oop", - "key": "simpletextareafifteen", - "mask": false, - "rows": 2, - "type": "textarea", - "input": true, - "label": "Multi-line Text", - "editor": "", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": { - "type": "input" - }, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "wysiwyg": false, - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "pattern": "", - "maxWords": "", - "minWords": "", - "multiple": false, - "required": false, - "maxLength": "", - "minLength": "", - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "fixedSize": true, - "hideLabel": true, - "inputMask": "", - "inputType": "text", - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": true, - "attributes": {}, - "autoExpand": true, - "errorLabel": "", - "persistent": true, - "properties": {}, - "spellcheck": true, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "inputFormat": "plain", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "allowCalculateOverride": false - } - ], - "currentWidth": 6 - } - ], - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "autoAdjust": false, - "errorLabel": "", - "persistent": false, - "properties": {}, - "validateOn": "change", - "clearOnHide": false, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "allowCalculateOverride": false - }, - { - "id": "ef13bz7", - "key": "columnstwotwo", - "tree": false, - "type": "columns", - "input": false, - "label": "Columns", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "columns": [ - { - "pull": 0, - "push": 0, - "size": "md", - "width": 4, - "offset": 0, - "components": [ - { - "id": "e6anrbp", - "key": "twosixteen", - "html": "

2.16 If contaminant-pathway-receptor combinations were excluded from further assessment, was a rationale for the exclusion provided?

", - "type": "content", - "input": false, - "label": "Text/Images", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "allowCalculateOverride": false - } - ], - "currentWidth": 4 - }, - { - "pull": 0, - "push": 0, - "size": "md", - "width": 2, - "offset": 0, - "components": [ - { - "id": "e5pjx7u", - "key": "simplecontenteighty", - "html": "

Response

", - "type": "content", - "input": false, - "label": "Text/Images", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "allowCalculateOverride": false - }, - { - "id": "e8g5ejx", - "key": "radioGrouptwotwo", - "type": "radio", - "input": true, - "label": "Radio Group", - "hidden": false, - "inline": false, - "prefix": "", - "suffix": "", - "unique": false, - "values": [ - { - "label": "Yes", - "value": "yes", - "shortcut": "" - }, - { - "label": "No", - "value": "no", - "shortcut": "" - } - ], - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "fieldSet": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": true, - "customPrivate": false, - "onlyAvailableItems": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": true, - "inputType": "radio", - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "optionsLabelPosition": "right", - "allowCalculateOverride": false - } - ], - "currentWidth": 2 - }, - { - "pull": 0, - "push": 0, - "size": "md", - "width": 6, - "offset": 0, - "components": [ - { - "id": "ey5pmub", - "key": "simplecontenteightone", - "html": "

Comments

", - "type": "content", - "input": false, - "label": "Text/Images", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "allowCalculateOverride": false - }, - { - "id": "e63v4z", - "key": "simpletextareasixteen", - "mask": false, - "rows": 2, - "type": "textarea", - "input": true, - "label": "Multi-line Text", - "editor": "", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": { - "type": "input" - }, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "wysiwyg": false, - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "pattern": "", - "maxWords": "", - "minWords": "", - "multiple": false, - "required": false, - "maxLength": "", - "minLength": "", - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "fixedSize": true, - "hideLabel": true, - "inputMask": "", - "inputType": "text", - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": true, - "attributes": {}, - "autoExpand": true, - "errorLabel": "", - "persistent": true, - "properties": {}, - "spellcheck": true, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "inputFormat": "plain", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "allowCalculateOverride": false - } - ], - "currentWidth": 6 - } - ], - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "autoAdjust": false, - "errorLabel": "", - "persistent": false, - "properties": {}, - "validateOn": "change", - "clearOnHide": false, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "allowCalculateOverride": false - }, - { - "id": "eeumcf", - "key": "columnstwothree", - "tree": false, - "type": "columns", - "input": false, - "label": "Columns", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "columns": [ - { - "pull": 0, - "push": 0, - "size": "md", - "width": 4, - "offset": 0, - "components": [ - { - "id": "e1thj0l", - "key": "twotwenty", - "html": "

2.17 If bioassays were used, was detailed rationale provided for the selection of the toxicity tests used, (e.g., consideration of: sensitivity of the organism to the potential contaminants of concern; potential confounding factors; taxonomic diversity, etc.)?

", - "type": "content", - "input": false, - "label": "Text/Images", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "allowCalculateOverride": false - } - ], - "currentWidth": 4 - }, - { - "pull": 0, - "push": 0, - "size": "md", - "width": 2, - "offset": 0, - "components": [ - { - "id": "ewwhheb", - "key": "simplecontenteightwo", - "html": "

Response

", - "type": "content", - "input": false, - "label": "Text/Images", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "allowCalculateOverride": false - }, - { - "id": "e7t9tgb", - "key": "radioGrouptwothree", - "type": "radio", - "input": true, - "label": "Radio Group", - "hidden": false, - "inline": false, - "prefix": "", - "suffix": "", - "unique": false, - "values": [ - { - "label": "Yes", - "value": "yes", - "shortcut": "" - }, - { - "label": "No", - "value": "no", - "shortcut": "" - } - ], - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "fieldSet": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": true, - "customPrivate": false, - "onlyAvailableItems": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": true, - "inputType": "radio", - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "optionsLabelPosition": "right", - "allowCalculateOverride": false - } - ], - "currentWidth": 2 - }, - { - "pull": 0, - "push": 0, - "size": "md", - "width": 6, - "offset": 0, - "components": [ - { - "id": "ekswm8p", - "key": "simplecontenteightthree", - "html": "

Comments

", - "type": "content", - "input": false, - "label": "Text/Images", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "allowCalculateOverride": false - }, - { - "id": "ebr584", - "key": "simpletextareaseventeen", - "mask": false, - "rows": 2, - "type": "textarea", - "input": true, - "label": "Multi-line Text", - "editor": "", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": { - "type": "input" - }, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "wysiwyg": false, - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "pattern": "", - "maxWords": "", - "minWords": "", - "multiple": false, - "required": false, - "maxLength": "", - "minLength": "", - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "fixedSize": true, - "hideLabel": true, - "inputMask": "", - "inputType": "text", - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": true, - "attributes": {}, - "autoExpand": true, - "errorLabel": "", - "persistent": true, - "properties": {}, - "spellcheck": true, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "inputFormat": "plain", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "allowCalculateOverride": false - } - ], - "currentWidth": 6 - } - ], - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "autoAdjust": false, - "errorLabel": "", - "persistent": false, - "properties": {}, - "validateOn": "change", - "clearOnHide": false, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "allowCalculateOverride": false - }, - { - "id": "e02zkxe", - "key": "columnstwofour", - "tree": false, - "type": "columns", - "input": false, - "label": "Columns", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "columns": [ - { - "pull": 0, - "push": 0, - "size": "md", - "width": 4, - "offset": 0, - "components": [ - { - "id": "erragpi", - "key": "twotwoone", - "html": "

2.18 If the assessment of risk was based on several lines of evidence, was the approach used to evaluate individual lines of evidence and to integrate findings across lines of evidence documented? (See footnote 5)

", - "type": "content", - "input": false, - "label": "Text/Images", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "allowCalculateOverride": false - } - ], - "currentWidth": 4 - }, - { - "pull": 0, - "push": 0, - "size": "md", - "width": 2, - "offset": 0, - "components": [ - { - "id": "enub1bk", - "key": "simplecontenteightfour", - "html": "

Response

", - "type": "content", - "input": false, - "label": "Text/Images", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "allowCalculateOverride": false - }, - { - "id": "eshf6i", - "key": "radioGrouptwofour", - "type": "radio", - "input": true, - "label": "Radio Group", - "hidden": false, - "inline": false, - "prefix": "", - "suffix": "", - "unique": false, - "values": [ - { - "label": "Yes", - "value": "yes", - "shortcut": "" - }, - { - "label": "No", - "value": "no", - "shortcut": "" - } - ], - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "fieldSet": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": true, - "customPrivate": false, - "onlyAvailableItems": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": true, - "inputType": "radio", - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "optionsLabelPosition": "right", - "allowCalculateOverride": false - } - ], - "currentWidth": 2 - }, - { - "pull": 0, - "push": 0, - "size": "md", - "width": 6, - "offset": 0, - "components": [ - { - "id": "ekyvw2", - "key": "simplecontenteightfive", - "html": "

Comments

", - "type": "content", - "input": false, - "label": "Text/Images", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "allowCalculateOverride": false - }, - { - "id": "ethyhrn", - "key": "simpletextareaeightteen", - "mask": false, - "rows": 2, - "type": "textarea", - "input": true, - "label": "Multi-line Text", - "editor": "", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": { - "type": "input" - }, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "wysiwyg": false, - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "pattern": "", - "maxWords": "", - "minWords": "", - "multiple": false, - "required": false, - "maxLength": "", - "minLength": "", - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "fixedSize": true, - "hideLabel": true, - "inputMask": "", - "inputType": "text", - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": true, - "attributes": {}, - "autoExpand": true, - "errorLabel": "", - "persistent": true, - "properties": {}, - "spellcheck": true, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "inputFormat": "plain", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "allowCalculateOverride": false - } - ], - "currentWidth": 6 - } - ], - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "autoAdjust": false, - "errorLabel": "", - "persistent": false, - "properties": {}, - "validateOn": "change", - "clearOnHide": false, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "allowCalculateOverride": false - }, - { - "id": "epkmql9dj", - "key": "columnstwofive", - "tree": false, - "type": "columns", - "input": false, - "label": "Columns", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "columns": [ - { - "pull": 0, - "push": 0, - "size": "md", - "width": 4, - "offset": 0, - "components": [ - { - "id": "eeu0q0m", - "key": "twotwotwo", - "html": "

2.19 Were future contaminant concentrations and potential contaminant degradation products considered?

", - "type": "content", - "input": false, - "label": "Text/Images", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "allowCalculateOverride": false - } - ], - "currentWidth": 4 - }, - { - "pull": 0, - "push": 0, - "size": "md", - "width": 2, - "offset": 0, - "components": [ - { - "id": "eus2amy", - "key": "simplecontenteightsix", - "html": "

Response

", - "type": "content", - "input": false, - "label": "Text/Images", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "allowCalculateOverride": false - }, - { - "id": "emhcput", - "key": "radioGrouptwofive", - "type": "radio", - "input": true, - "label": "Radio Group", - "hidden": false, - "inline": false, - "prefix": "", - "suffix": "", - "unique": false, - "values": [ - { - "label": "Yes", - "value": "yes", - "shortcut": "" - }, - { - "label": "No", - "value": "no", - "shortcut": "" - } - ], - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "fieldSet": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customMessage": "", - "customPrivate": false, - "onlyAvailableItems": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": true, - "inputType": "radio", - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "json": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": "", - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "customConditional": "", - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "optionsLabelPosition": "right", - "allowCalculateOverride": false - } - ], - "currentWidth": 2 - }, - { - "pull": 0, - "push": 0, - "size": "md", - "width": 6, - "offset": 0, - "components": [ - { - "id": "ety0sql", - "key": "simplecontenteightseven", - "html": "

Comments

", - "type": "content", - "input": false, - "label": "Text/Images", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "allowCalculateOverride": false - }, - { - "id": "e9so3gs", - "key": "simpletextareaninteen", - "mask": false, - "rows": 2, - "type": "textarea", - "input": true, - "label": "Multi-line Text", - "editor": "", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": { - "type": "input" - }, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "wysiwyg": false, - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "pattern": "", - "maxWords": "", - "minWords": "", - "multiple": false, - "required": false, - "maxLength": "", - "minLength": "", - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "fixedSize": true, - "hideLabel": true, - "inputMask": "", - "inputType": "text", - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": true, - "attributes": {}, - "autoExpand": true, - "errorLabel": "", - "persistent": true, - "properties": {}, - "spellcheck": true, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "inputFormat": "plain", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "allowCalculateOverride": false - } - ], - "currentWidth": 6 - } - ], - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "autoAdjust": false, - "errorLabel": "", - "persistent": false, - "properties": {}, - "validateOn": "change", - "clearOnHide": false, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "allowCalculateOverride": false - } - ], - "errorLabel": "", - "persistent": false, - "properties": {}, - "validateOn": "change", - "clearOnHide": false, - "collapsible": true, - "conditional": { - "eq": "", - "json": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "customConditional": "", - "allowMultipleMasks": false, - "customDefaultValue": "", - "allowCalculateOverride": false - }, - { - "id": "ehbedsj", - "key": "subsectionExposureAssessment", - "tree": false, - "type": "panel", - "input": false, - "label": "", - "theme": "default", - "title": "Subsection 3.0 Exposure Assessment", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "collapsed": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "breadcrumb": "default", - "components": [ - { - "id": "e4lqrat", - "key": "columnstwosix", - "tree": false, - "type": "columns", - "input": false, - "label": "Columns", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "columns": [ - { - "pull": 0, - "push": 0, - "size": "md", - "width": 4, - "offset": 0, - "components": [ - { - "id": "e4nh55k", - "key": "simplecontentthirteen", - "html": "", - "type": "content", - "input": false, - "label": "Text/Images", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "allowCalculateOverride": false - }, - { - "id": "e7jkpor", - "key": "threeone", - "html": "

3.1 Was each contaminant-pathway-receptor combination identified for further assessment evaluated?

", - "type": "content", - "input": false, - "label": "Text/Images", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "allowCalculateOverride": false - } - ], - "currentWidth": 4 - }, - { - "pull": 0, - "push": 0, - "size": "md", - "width": 2, - "offset": 0, - "components": [ - { - "id": "eoep90i", - "key": "simplecontentfourteen", - "html": "

Response

", - "type": "content", - "input": false, - "label": "Text/Images", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "allowCalculateOverride": false - }, - { - "id": "epxbscc", - "key": "radioGrouptwosix", - "type": "radio", - "input": true, - "label": "Radio Group", - "hidden": false, - "inline": false, - "prefix": "", - "suffix": "", - "unique": false, - "values": [ - { - "label": "Yes", - "value": "yes", - "shortcut": "" - }, - { - "label": "No", - "value": "no", - "shortcut": "" - } - ], - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "fieldSet": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": true, - "customPrivate": false, - "onlyAvailableItems": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": true, - "inputType": "radio", - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "optionsLabelPosition": "right", - "allowCalculateOverride": false - } - ], - "currentWidth": 2 - }, - { - "pull": 0, - "push": 0, - "size": "md", - "width": 6, - "offset": 0, - "components": [ - { - "id": "ea40n3", - "key": "simplecontentfifteen", - "html": "

Comments

", - "type": "content", - "input": false, - "label": "Text/Images", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "allowCalculateOverride": false - }, - { - "id": "efxix1k", - "key": "simpletextareatwenty", - "mask": false, - "rows": 2, - "type": "textarea", - "input": true, - "label": "Multi-line Text", - "editor": "", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": { - "type": "input" - }, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "wysiwyg": false, - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "pattern": "", - "maxWords": "", - "minWords": "", - "multiple": false, - "required": false, - "maxLength": "", - "minLength": "", - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "fixedSize": true, - "hideLabel": true, - "inputMask": "", - "inputType": "text", - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": true, - "attributes": {}, - "autoExpand": true, - "errorLabel": "", - "persistent": true, - "properties": {}, - "spellcheck": true, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "inputFormat": "plain", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "allowCalculateOverride": false - } - ], - "currentWidth": 6 - } - ], - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "autoAdjust": false, - "errorLabel": "", - "persistent": false, - "properties": {}, - "validateOn": "change", - "clearOnHide": false, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "allowCalculateOverride": false - }, - { - "id": "e9n1mtl", - "key": "columnstwoseven", - "tree": false, - "type": "columns", - "input": false, - "label": "Columns", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "columns": [ - { - "pull": 0, - "push": 0, - "size": "md", - "width": 4, - "offset": 0, - "components": [ - { - "id": "el3wba7", - "key": "threetwo", - "html": "

3.2 Was each applicable land use scenario (current and future) evaluated?

", - "type": "content", - "input": false, - "label": "Text/Images", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "allowCalculateOverride": false - } - ], - "currentWidth": 4 - }, - { - "pull": 0, - "push": 0, - "size": "md", - "width": 2, - "offset": 0, - "components": [ - { - "id": "eztdvzf", - "key": "simplecontenttwoone", - "html": "

Response

", - "type": "content", - "input": false, - "label": "Text/Images", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "allowCalculateOverride": false - }, - { - "id": "e8ypti", - "key": "radioGrouptwoseven", - "type": "radio", - "input": true, - "label": "Radio Group", - "hidden": false, - "inline": false, - "prefix": "", - "suffix": "", - "unique": false, - "values": [ - { - "label": "Yes", - "value": "yes", - "shortcut": "" - }, - { - "label": "No", - "value": "no", - "shortcut": "" - } - ], - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "fieldSet": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": true, - "customPrivate": false, - "onlyAvailableItems": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": true, - "inputType": "radio", - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "optionsLabelPosition": "right", - "allowCalculateOverride": false - } - ], - "currentWidth": 2 - }, - { - "pull": 0, - "push": 0, - "size": "md", - "width": 6, - "offset": 0, - "components": [ - { - "id": "emnc6j", - "key": "simplecontenttwotwo", - "html": "

Comments

", - "type": "content", - "input": false, - "label": "Text/Images", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "allowCalculateOverride": false - }, - { - "id": "e2rfdv", - "key": "simpletextareatwoone", - "mask": false, - "rows": 2, - "type": "textarea", - "input": true, - "label": "Multi-line Text", - "editor": "", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": { - "type": "input" - }, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "wysiwyg": false, - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "pattern": "", - "maxWords": "", - "minWords": "", - "multiple": false, - "required": false, - "maxLength": "", - "minLength": "", - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "fixedSize": true, - "hideLabel": true, - "inputMask": "", - "inputType": "text", - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": true, - "attributes": {}, - "autoExpand": true, - "errorLabel": "", - "persistent": true, - "properties": {}, - "spellcheck": true, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "inputFormat": "plain", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "allowCalculateOverride": false - } - ], - "currentWidth": 6 - } - ], - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "autoAdjust": false, - "errorLabel": "", - "persistent": false, - "properties": {}, - "validateOn": "change", - "clearOnHide": false, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "allowCalculateOverride": false - }, - { - "id": "eb0xwg6", - "key": "columnstwonine", - "tree": false, - "type": "columns", - "input": false, - "label": "Columns", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "columns": [ - { - "pull": 0, - "push": 0, - "size": "md", - "width": 4, - "offset": 0, - "components": [ - { - "id": "ek8cz2o", - "key": "threethree", - "html": "

3.3 Was supporting rationale provided for methods used to estimate exposure point contaminant concentration(s)?

", - "type": "content", - "input": false, - "label": "Text/Images", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "allowCalculateOverride": false - } - ], - "currentWidth": 4 - }, - { - "pull": 0, - "push": 0, - "size": "md", - "width": 2, - "offset": 0, - "components": [ - { - "id": "e2hada9", - "key": "simplecontentfiveone", - "html": "

Response

", - "type": "content", - "input": false, - "label": "Text/Images", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "allowCalculateOverride": false - }, - { - "id": "ekb86x", - "key": "radioGrouptwonine", - "type": "radio", - "input": true, - "label": "Radio Group", - "hidden": false, - "inline": false, - "prefix": "", - "suffix": "", - "unique": false, - "values": [ - { - "label": "Yes", - "value": "yes", - "shortcut": "" - }, - { - "label": "No", - "value": "no", - "shortcut": "" - } - ], - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "fieldSet": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": true, - "customPrivate": false, - "onlyAvailableItems": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": true, - "inputType": "radio", - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "optionsLabelPosition": "right", - "allowCalculateOverride": false - } - ], - "currentWidth": 2 - }, - { - "pull": 0, - "push": 0, - "size": "md", - "width": 6, - "offset": 0, - "components": [ - { - "id": "eo5uwe", - "key": "simplecontenteighteight", - "html": "

Comments

", - "type": "content", - "input": false, - "label": "Text/Images", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "allowCalculateOverride": false - }, - { - "id": "ettpdif", - "key": "simpletextareatwothree", - "mask": false, - "rows": 2, - "type": "textarea", - "input": true, - "label": "Multi-line Text", - "editor": "", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": { - "type": "input" - }, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "wysiwyg": false, - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "pattern": "", - "maxWords": "", - "minWords": "", - "multiple": false, - "required": false, - "maxLength": "", - "minLength": "", - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "fixedSize": true, - "hideLabel": true, - "inputMask": "", - "inputType": "text", - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": true, - "attributes": {}, - "autoExpand": true, - "errorLabel": "", - "persistent": true, - "properties": {}, - "spellcheck": true, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "inputFormat": "plain", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "allowCalculateOverride": false - } - ], - "currentWidth": 6 - } - ], - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "autoAdjust": false, - "errorLabel": "", - "persistent": false, - "properties": {}, - "validateOn": "change", - "clearOnHide": false, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "allowCalculateOverride": false - }, - { - "id": "erzzxtj", - "key": "columnstwoeight", - "tree": false, - "type": "columns", - "input": false, - "label": "Columns", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "columns": [ - { - "pull": 0, - "push": 0, - "size": "md", - "width": 4, - "offset": 0, - "components": [ - { - "id": "e0zg8h", - "key": "threefour", - "html": "

3.4 If a fate and transport model or other exposure model was used, were model equations provided and referenced?

", - "type": "content", - "input": false, - "label": "Text/Images", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "allowCalculateOverride": false - } - ], - "currentWidth": 4 - }, - { - "pull": 0, - "push": 0, - "size": "md", - "width": 2, - "offset": 0, - "components": [ - { - "id": "evou28", - "key": "simplecontenttwothree", - "html": "

Response

", - "type": "content", - "input": false, - "label": "Text/Images", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "allowCalculateOverride": false - }, - { - "id": "ejn8qt5c", - "key": "radioGrouptwoeight", - "type": "radio", - "input": true, - "label": "Radio Group", - "hidden": false, - "inline": false, - "prefix": "", - "suffix": "", - "unique": false, - "values": [ - { - "label": "Yes", - "value": "yes", - "shortcut": "" - }, - { - "label": "No", - "value": "no", - "shortcut": "" - } - ], - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "fieldSet": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": true, - "customPrivate": false, - "onlyAvailableItems": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": true, - "inputType": "radio", - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "optionsLabelPosition": "right", - "allowCalculateOverride": false - } - ], - "currentWidth": 2 - }, - { - "pull": 0, - "push": 0, - "size": "md", - "width": 6, - "offset": 0, - "components": [ - { - "id": "e6i5h29", - "key": "simplecontenttwofour", - "html": "

Comments

", - "type": "content", - "input": false, - "label": "Text/Images", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "allowCalculateOverride": false - }, - { - "id": "ecjvbyp", - "key": "simpletextareatwotwo", - "mask": false, - "rows": 2, - "type": "textarea", - "input": true, - "label": "Multi-line Text", - "editor": "", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": { - "type": "input" - }, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "wysiwyg": false, - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "pattern": "", - "maxWords": "", - "minWords": "", - "multiple": false, - "required": false, - "maxLength": "", - "minLength": "", - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "fixedSize": true, - "hideLabel": true, - "inputMask": "", - "inputType": "text", - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": true, - "attributes": {}, - "autoExpand": true, - "errorLabel": "", - "persistent": true, - "properties": {}, - "spellcheck": true, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "inputFormat": "plain", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "allowCalculateOverride": false - } - ], - "currentWidth": 6 - } - ], - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "autoAdjust": false, - "errorLabel": "", - "persistent": false, - "properties": {}, - "validateOn": "change", - "clearOnHide": false, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "allowCalculateOverride": false - }, - { - "id": "ec6wjzl", - "key": "columnsthreeone", - "tree": false, - "type": "columns", - "input": false, - "label": "Columns", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "columns": [ - { - "pull": 0, - "push": 0, - "size": "md", - "width": 4, - "offset": 0, - "components": [ - { - "id": "e1vsfz5", - "key": "threefive", - "html": "

3.5 If an exposure model was used, were equations and the input data provided to support an independent quality assurance check for each exposure route in the risk assessment?

", - "type": "content", - "input": false, - "label": "Text/Images", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "allowCalculateOverride": false - } - ], - "currentWidth": 4 - }, - { - "pull": 0, - "push": 0, - "size": "md", - "width": 2, - "offset": 0, - "components": [ - { - "id": "e04mm6o", - "key": "simplecontentnineone", - "html": "

Response

", - "type": "content", - "input": false, - "label": "Text/Images", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "allowCalculateOverride": false - }, - { - "id": "el2rn7", - "key": "radioGroupthreeone", - "type": "radio", - "input": true, - "label": "Radio Group", - "hidden": false, - "inline": false, - "prefix": "", - "suffix": "", - "unique": false, - "values": [ - { - "label": "Yes", - "value": "yes", - "shortcut": "" - }, - { - "label": "No", - "value": "no", - "shortcut": "" - } - ], - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "fieldSet": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": true, - "customPrivate": false, - "onlyAvailableItems": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": true, - "inputType": "radio", - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "optionsLabelPosition": "right", - "allowCalculateOverride": false - } - ], - "currentWidth": 2 - }, - { - "pull": 0, - "push": 0, - "size": "md", - "width": 6, - "offset": 0, - "components": [ - { - "id": "ensing", - "key": "simplecontentninetwo", - "html": "

Comments

", - "type": "content", - "input": false, - "label": "Text/Images", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "allowCalculateOverride": false - }, - { - "id": "eix6ej7", - "key": "simpletextareatwofive", - "mask": false, - "rows": 2, - "type": "textarea", - "input": true, - "label": "Multi-line Text", - "editor": "", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": { - "type": "input" - }, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "wysiwyg": false, - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "pattern": "", - "maxWords": "", - "minWords": "", - "multiple": false, - "required": false, - "maxLength": "", - "minLength": "", - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "fixedSize": true, - "hideLabel": true, - "inputMask": "", - "inputType": "text", - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": true, - "attributes": {}, - "autoExpand": true, - "errorLabel": "", - "persistent": true, - "properties": {}, - "spellcheck": true, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "inputFormat": "plain", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "allowCalculateOverride": false - } - ], - "currentWidth": 6 - } - ], - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "autoAdjust": false, - "errorLabel": "", - "persistent": false, - "properties": {}, - "validateOn": "change", - "clearOnHide": false, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "allowCalculateOverride": false - }, - { - "id": "eas6fbu", - "key": "columnsthreezero", - "tree": false, - "type": "columns", - "input": false, - "label": "Columns", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "columns": [ - { - "pull": 0, - "push": 0, - "size": "md", - "width": 4, - "offset": 0, - "components": [ - { - "id": "exssfl", - "key": "threesix", - "html": "

3.6 Were all exposure model parameters defined and was rationale provided for all exposure model parameter values (with references where applicable)?

", - "type": "content", - "input": false, - "label": "Text/Images", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "allowCalculateOverride": false - } - ], - "currentWidth": 4 - }, - { - "pull": 0, - "push": 0, - "size": "md", - "width": 2, - "offset": 0, - "components": [ - { - "id": "ei8dflp", - "key": "simplecontenteightnine", - "html": "

Response

", - "type": "content", - "input": false, - "label": "Text/Images", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "allowCalculateOverride": false - }, - { - "id": "eyyfe3", - "key": "radioGroupthreezero", - "type": "radio", - "input": true, - "label": "Radio Group", - "hidden": false, - "inline": false, - "prefix": "", - "suffix": "", - "unique": false, - "values": [ - { - "label": "Yes", - "value": "yes", - "shortcut": "" - }, - { - "label": "No", - "value": "no", - "shortcut": "" - } - ], - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "fieldSet": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": true, - "customPrivate": false, - "onlyAvailableItems": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": true, - "inputType": "radio", - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "optionsLabelPosition": "right", - "allowCalculateOverride": false - } - ], - "currentWidth": 2 - }, - { - "pull": 0, - "push": 0, - "size": "md", - "width": 6, - "offset": 0, - "components": [ - { - "id": "e91bakgo", - "key": "simplecontentninty", - "html": "

Comments

", - "type": "content", - "input": false, - "label": "Text/Images", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "allowCalculateOverride": false - }, - { - "id": "eyel95", - "key": "simpletextareatwofour", - "mask": false, - "rows": 2, - "type": "textarea", - "input": true, - "label": "Multi-line Text", - "editor": "", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": { - "type": "input" - }, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "wysiwyg": false, - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "pattern": "", - "maxWords": "", - "minWords": "", - "multiple": false, - "required": false, - "maxLength": "", - "minLength": "", - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "fixedSize": true, - "hideLabel": true, - "inputMask": "", - "inputType": "text", - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": true, - "attributes": {}, - "autoExpand": true, - "errorLabel": "", - "persistent": true, - "properties": {}, - "spellcheck": true, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "inputFormat": "plain", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "allowCalculateOverride": false - } - ], - "currentWidth": 6 - } - ], - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "autoAdjust": false, - "errorLabel": "", - "persistent": false, - "properties": {}, - "validateOn": "change", - "clearOnHide": false, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "allowCalculateOverride": false - }, - { - "id": "elin1lm", - "key": "columnsthreethree", - "tree": false, - "type": "columns", - "input": false, - "label": "Columns", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "columns": [ - { - "pull": 0, - "push": 0, - "size": "md", - "width": 4, - "offset": 0, - "components": [ - { - "id": "en5tfh3", - "key": "threeseven", - "html": "

3.7 If an exposure model was used, was uncertainty regarding both: (a) the structure of the exposure model and (b) the parameter values used in the exposure model, considered in any interpretation of the results of the exposure modelling?

", - "type": "content", - "input": false, - "label": "Text/Images", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "allowCalculateOverride": false - } - ], - "currentWidth": 4 - }, - { - "pull": 0, - "push": 0, - "size": "md", - "width": 2, - "offset": 0, - "components": [ - { - "id": "ezcpphj", - "key": "simplecontentninefive", - "html": "

Response

", - "type": "content", - "input": false, - "label": "Text/Images", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "allowCalculateOverride": false - }, - { - "id": "ewwi7um", - "key": "radioGroupthreethree", - "type": "radio", - "input": true, - "label": "Radio Group", - "hidden": false, - "inline": false, - "prefix": "", - "suffix": "", - "unique": false, - "values": [ - { - "label": "Yes", - "value": "yes", - "shortcut": "" - }, - { - "label": "No", - "value": "no", - "shortcut": "" - } - ], - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "fieldSet": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": true, - "customPrivate": false, - "onlyAvailableItems": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": true, - "inputType": "radio", - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "optionsLabelPosition": "right", - "allowCalculateOverride": false - } - ], - "currentWidth": 2 - }, - { - "pull": 0, - "push": 0, - "size": "md", - "width": 6, - "offset": 0, - "components": [ - { - "id": "etrk8x", - "key": "simplecontentninesix", - "html": "

Comments

", - "type": "content", - "input": false, - "label": "Text/Images", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "allowCalculateOverride": false - }, - { - "id": "e7sp1mr", - "key": "simpletextareatwoseven", - "mask": false, - "rows": 2, - "type": "textarea", - "input": true, - "label": "Multi-line Text", - "editor": "", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": { - "type": "input" - }, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "wysiwyg": false, - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "pattern": "", - "maxWords": "", - "minWords": "", - "multiple": false, - "required": false, - "maxLength": "", - "minLength": "", - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "fixedSize": true, - "hideLabel": true, - "inputMask": "", - "inputType": "text", - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": true, - "attributes": {}, - "autoExpand": true, - "errorLabel": "", - "persistent": true, - "properties": {}, - "spellcheck": true, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "inputFormat": "plain", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "allowCalculateOverride": false - } - ], - "currentWidth": 6 - } - ], - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "autoAdjust": false, - "errorLabel": "", - "persistent": false, - "properties": {}, - "validateOn": "change", - "clearOnHide": false, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "allowCalculateOverride": false - }, - { - "id": "e7hazx", - "key": "columnsthreetwo", - "tree": false, - "type": "columns", - "input": false, - "label": "Columns", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "columns": [ - { - "pull": 0, - "push": 0, - "size": "md", - "width": 4, - "offset": 0, - "components": [ - { - "id": "embimz", - "key": "threeeight", - "html": "

3.8 If an exposure model was used, were the model’s results compared to, or calibrated to, empirical (i.e., measured data) to determine if the model adequately represents reality?

", - "type": "content", - "input": false, - "label": "Text/Images", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "allowCalculateOverride": false - } - ], - "currentWidth": 4 - }, - { - "pull": 0, - "push": 0, - "size": "md", - "width": 2, - "offset": 0, - "components": [ - { - "id": "e1ni90qh", - "key": "simplecontentninethree", - "html": "

Response

", - "type": "content", - "input": false, - "label": "Text/Images", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "allowCalculateOverride": false - }, - { - "id": "e8wbve", - "key": "radioGroupthreetwo", - "type": "radio", - "input": true, - "label": "Radio Group", - "hidden": false, - "inline": false, - "prefix": "", - "suffix": "", - "unique": false, - "values": [ - { - "label": "Yes", - "value": "yes", - "shortcut": "" - }, - { - "label": "No", - "value": "no", - "shortcut": "" - } - ], - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "fieldSet": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customMessage": "", - "customPrivate": false, - "onlyAvailableItems": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": true, - "inputType": "radio", - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "json": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": "", - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "customConditional": "", - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "optionsLabelPosition": "right", - "allowCalculateOverride": false - } - ], - "currentWidth": 2 - }, - { - "pull": 0, - "push": 0, - "size": "md", - "width": 6, - "offset": 0, - "components": [ - { - "id": "emry9vl", - "key": "simplecontentninefour", - "html": "

Comments

", - "type": "content", - "input": false, - "label": "Text/Images", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "allowCalculateOverride": false - }, - { - "id": "evut5h", - "key": "simpletextareatwosix", - "mask": false, - "rows": 2, - "type": "textarea", - "input": true, - "label": "Multi-line Text", - "editor": "", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": { - "type": "input" - }, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "wysiwyg": false, - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "pattern": "", - "maxWords": "", - "minWords": "", - "multiple": false, - "required": false, - "maxLength": "", - "minLength": "", - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "fixedSize": true, - "hideLabel": true, - "inputMask": "", - "inputType": "text", - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": true, - "attributes": {}, - "autoExpand": true, - "errorLabel": "", - "persistent": true, - "properties": {}, - "spellcheck": true, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "inputFormat": "plain", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "allowCalculateOverride": false - } - ], - "currentWidth": 6 - } - ], - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "autoAdjust": false, - "errorLabel": "", - "persistent": false, - "properties": {}, - "validateOn": "change", - "clearOnHide": false, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "allowCalculateOverride": false - }, - { - "id": "en3cue9", - "key": "columnsthreefive", - "tree": false, - "type": "columns", - "input": false, - "label": "Columns", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "columns": [ - { - "pull": 0, - "push": 0, - "size": "md", - "width": 4, - "offset": 0, - "components": [ - { - "id": "euwzqk", - "key": "threenine", - "html": "

3.9 For any models used, was a sensitivity analysis or a rationale for the absence of a sensitivity analysis provided?

", - "type": "content", - "input": false, - "label": "Text/Images", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "allowCalculateOverride": false - } - ], - "currentWidth": 4 - }, - { - "pull": 0, - "push": 0, - "size": "md", - "width": 2, - "offset": 0, - "components": [ - { - "id": "eaewmqf", - "key": "simplecontentninenine", - "html": "

Response

", - "type": "content", - "input": false, - "label": "Text/Images", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "allowCalculateOverride": false - }, - { - "id": "ehqjioo", - "key": "radioGroupthreefive", - "type": "radio", - "input": true, - "label": "Radio Group", - "hidden": false, - "inline": false, - "prefix": "", - "suffix": "", - "unique": false, - "values": [ - { - "label": "Yes", - "value": "yes", - "shortcut": "" - }, - { - "label": "No", - "value": "no", - "shortcut": "" - } - ], - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "fieldSet": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customMessage": "", - "customPrivate": false, - "onlyAvailableItems": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": true, - "inputType": "radio", - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "json": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": "", - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "customConditional": "", - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "optionsLabelPosition": "right", - "allowCalculateOverride": false - } - ], - "currentWidth": 2 - }, - { - "pull": 0, - "push": 0, - "size": "md", - "width": 6, - "offset": 0, - "components": [ - { - "id": "ei1mxdp", - "key": "simplecontenttenzero", - "html": "

Comments

", - "type": "content", - "input": false, - "label": "Text/Images", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "allowCalculateOverride": false - }, - { - "id": "e5tuqkb", - "key": "simpletextareatwonine", - "mask": false, - "rows": 2, - "type": "textarea", - "input": true, - "label": "Multi-line Text", - "editor": "", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": { - "type": "input" - }, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "wysiwyg": false, - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "pattern": "", - "maxWords": "", - "minWords": "", - "multiple": false, - "required": false, - "maxLength": "", - "minLength": "", - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "fixedSize": true, - "hideLabel": true, - "inputMask": "", - "inputType": "text", - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": true, - "attributes": {}, - "autoExpand": true, - "errorLabel": "", - "persistent": true, - "properties": {}, - "spellcheck": true, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "inputFormat": "plain", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "allowCalculateOverride": false - } - ], - "currentWidth": 6 - } - ], - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "autoAdjust": false, - "errorLabel": "", - "persistent": false, - "properties": {}, - "validateOn": "change", - "clearOnHide": false, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "allowCalculateOverride": false - }, - { - "id": "eqokko", - "key": "columnsthreefour", - "tree": false, - "type": "columns", - "input": false, - "label": "Columns", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "columns": [ - { - "pull": 0, - "push": 0, - "size": "md", - "width": 4, - "offset": 0, - "components": [ - { - "id": "eikh83m", - "key": "threeten", - "html": "

3.10 Were data quality objectives established for field parameters used in the risk assessment?

", - "type": "content", - "input": false, - "label": "Text/Images", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "allowCalculateOverride": false - } - ], - "currentWidth": 4 - }, - { - "pull": 0, - "push": 0, - "size": "md", - "width": 2, - "offset": 0, - "components": [ - { - "id": "e8e6c6", - "key": "simplecontentnineseven", - "html": "

Response

", - "type": "content", - "input": false, - "label": "Text/Images", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "allowCalculateOverride": false - }, - { - "id": "esz0dgd", - "key": "radioGroupthreefour", - "type": "radio", - "input": true, - "label": "Radio Group", - "hidden": false, - "inline": false, - "prefix": "", - "suffix": "", - "unique": false, - "values": [ - { - "label": "Yes", - "value": "yes", - "shortcut": "" - }, - { - "label": "No", - "value": "no", - "shortcut": "" - } - ], - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "fieldSet": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customMessage": "", - "customPrivate": false, - "onlyAvailableItems": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": true, - "inputType": "radio", - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "json": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": "", - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "customConditional": "", - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "optionsLabelPosition": "right", - "allowCalculateOverride": false - } - ], - "currentWidth": 2 - }, - { - "pull": 0, - "push": 0, - "size": "md", - "width": 6, - "offset": 0, - "components": [ - { - "id": "e9x1tjl", - "key": "simplecontentnineeight", - "html": "

Comments

", - "type": "content", - "input": false, - "label": "Text/Images", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "allowCalculateOverride": false - }, - { - "id": "ert1fop", - "key": "simpletextareatwoeight", - "mask": false, - "rows": 2, - "type": "textarea", - "input": true, - "label": "Multi-line Text", - "editor": "", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": { - "type": "input" - }, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "wysiwyg": false, - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "pattern": "", - "maxWords": "", - "minWords": "", - "multiple": false, - "required": false, - "maxLength": "", - "minLength": "", - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "fixedSize": true, - "hideLabel": true, - "inputMask": "", - "inputType": "text", - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": true, - "attributes": {}, - "autoExpand": true, - "errorLabel": "", - "persistent": true, - "properties": {}, - "spellcheck": true, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "inputFormat": "plain", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "allowCalculateOverride": false - } - ], - "currentWidth": 6 - } - ], - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "autoAdjust": false, - "errorLabel": "", - "persistent": false, - "properties": {}, - "validateOn": "change", - "clearOnHide": false, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "allowCalculateOverride": false - } - ], - "errorLabel": "", - "persistent": false, - "properties": {}, - "validateOn": "change", - "clearOnHide": false, - "collapsible": true, - "conditional": { - "eq": "", - "json": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "customConditional": "", - "allowMultipleMasks": false, - "customDefaultValue": "", - "allowCalculateOverride": false - }, - { - "id": "ehjttpp", - "key": "subsectionEffectsAssessment", - "tree": false, - "type": "panel", - "input": false, - "label": "", - "theme": "default", - "title": "Subsection 4.0 Effects Assessment", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "collapsed": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "breadcrumb": "default", - "components": [ - { - "id": "ek3ekod", - "key": "columnsthreesix", - "tree": false, - "type": "columns", - "input": false, - "label": "Columns", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "columns": [ - { - "pull": 0, - "push": 0, - "size": "md", - "width": 4, - "offset": 0, - "components": [ - { - "id": "et1jlry", - "key": "fourone", - "html": "

4.1 If ecological surveys (e.g., plant, soil invertebrate, bird, fish, or benthic communities) were conducted, was the survey methodology used (including sampling locations and seasons) documented?

", - "type": "content", - "input": false, - "label": "Text/Images", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "allowCalculateOverride": false - } - ], - "currentWidth": 4 - }, - { - "pull": 0, - "push": 0, - "size": "md", - "width": 2, - "offset": 0, - "components": [ - { - "id": "evwrnaq", - "key": "simplecontenttenone", - "html": "

Response

", - "type": "content", - "input": false, - "label": "Text/Images", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "allowCalculateOverride": false - }, - { - "id": "ea1et1", - "key": "radioGroupthreesix", - "type": "radio", - "input": true, - "label": "Radio Group", - "hidden": false, - "inline": false, - "prefix": "", - "suffix": "", - "unique": false, - "values": [ - { - "label": "Yes", - "value": "yes", - "shortcut": "" - }, - { - "label": "No", - "value": "no", - "shortcut": "" - } - ], - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "fieldSet": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": true, - "customMessage": "", - "customPrivate": false, - "onlyAvailableItems": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": true, - "inputType": "radio", - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "json": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": "", - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "customConditional": "", - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "optionsLabelPosition": "right", - "allowCalculateOverride": false - } - ], - "currentWidth": 2 - }, - { - "pull": 0, - "push": 0, - "size": "md", - "width": 6, - "offset": 0, - "components": [ - { - "id": "e9snkjk", - "key": "simplecontenttentwo", - "html": "

Comments

", - "type": "content", - "input": false, - "label": "Text/Images", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "allowCalculateOverride": false - }, - { - "id": "en0su6q", - "key": "simpletextareathirty", - "mask": false, - "rows": 2, - "type": "textarea", - "input": true, - "label": "Multi-line Text", - "editor": "", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": { - "type": "input" - }, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "wysiwyg": false, - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "pattern": "", - "maxWords": "", - "minWords": "", - "multiple": false, - "required": false, - "maxLength": "", - "minLength": "", - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "fixedSize": true, - "hideLabel": true, - "inputMask": "", - "inputType": "text", - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": true, - "attributes": {}, - "autoExpand": true, - "errorLabel": "", - "persistent": true, - "properties": {}, - "spellcheck": true, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "inputFormat": "plain", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "allowCalculateOverride": false - } - ], - "currentWidth": 6 - } - ], - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "autoAdjust": false, - "errorLabel": "", - "persistent": false, - "properties": {}, - "validateOn": "change", - "clearOnHide": false, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "allowCalculateOverride": false - }, - { - "id": "eajp52", - "key": "columnsthirtyeight", - "tree": false, - "type": "columns", - "input": false, - "label": "Columns", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "columns": [ - { - "pull": 0, - "push": 0, - "size": "md", - "width": 4, - "offset": 0, - "components": [ - { - "id": "efta9bh", - "key": "toxicityreference", - "html": "

4.2 If toxicity reference values (TRVs) were used, was a rationale for the selection and/or development of the TRVs provided?

", - "type": "content", - "input": false, - "label": "Text/Images", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "allowCalculateOverride": false - } - ], - "currentWidth": 4 - }, - { - "pull": 0, - "push": 0, - "size": "md", - "width": 2, - "offset": 0, - "components": [ - { - "id": "ewr5gyh", - "key": "simplecontentonezerofive", - "html": "

Response

", - "type": "content", - "input": false, - "label": "Text/Images", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "allowCalculateOverride": false - }, - { - "id": "evhzru", - "key": "radioGroupthirtyeight", - "type": "radio", - "input": true, - "label": "Radio Group", - "hidden": false, - "inline": false, - "prefix": "", - "suffix": "", - "unique": false, - "values": [ - { - "label": "Yes", - "value": "yes", - "shortcut": "" - }, - { - "label": "No", - "value": "no", - "shortcut": "" - } - ], - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "fieldSet": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": true, - "customMessage": "", - "customPrivate": false, - "onlyAvailableItems": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": true, - "inputType": "radio", - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "json": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": "", - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "customConditional": "", - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "optionsLabelPosition": "right", - "allowCalculateOverride": false - } - ], - "currentWidth": 2 - }, - { - "pull": 0, - "push": 0, - "size": "md", - "width": 6, - "offset": 0, - "components": [ - { - "id": "e1eqpcf", - "key": "simplecontentonezerosix", - "html": "

Comments

", - "type": "content", - "input": false, - "label": "Text/Images", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "allowCalculateOverride": false - }, - { - "id": "eff51qr", - "key": "simpletextareathirtytwo", - "mask": false, - "rows": 2, - "type": "textarea", - "input": true, - "label": "Multi-line Text", - "editor": "", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": { - "type": "input" - }, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "wysiwyg": false, - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "pattern": "", - "maxWords": "", - "minWords": "", - "multiple": false, - "required": false, - "maxLength": "", - "minLength": "", - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "fixedSize": true, - "hideLabel": true, - "inputMask": "", - "inputType": "text", - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": true, - "attributes": {}, - "autoExpand": true, - "errorLabel": "", - "persistent": true, - "properties": {}, - "spellcheck": true, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "inputFormat": "plain", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "allowCalculateOverride": false - } - ], - "currentWidth": 6 - } - ], - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "autoAdjust": false, - "errorLabel": "", - "persistent": false, - "properties": {}, - "validateOn": "change", - "clearOnHide": false, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "allowCalculateOverride": false - }, - { - "id": "e3rhq3h", - "key": "columnsthirtyseven", - "tree": false, - "type": "columns", - "input": false, - "label": "Columns", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "columns": [ - { - "pull": 0, - "push": 0, - "size": "md", - "width": 4, - "offset": 0, - "components": [ - { - "id": "edwvn4", - "key": "trvs", - "html": "

4.3 If TRVs were used, was the source of the TRVs referenced? If TRVs were developed de novo, was their derivation documented?

", - "type": "content", - "input": false, - "label": "Text/Images", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "allowCalculateOverride": false - } - ], - "currentWidth": 4 - }, - { - "pull": 0, - "push": 0, - "size": "md", - "width": 2, - "offset": 0, - "components": [ - { - "id": "e6lp42jn", - "key": "simplecontentonezerothree", - "html": "

Response

", - "type": "content", - "input": false, - "label": "Text/Images", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "allowCalculateOverride": false - }, - { - "id": "eoii9ca", - "key": "radioGroupthirtyseven", - "type": "radio", - "input": true, - "label": "Radio Group", - "hidden": false, - "inline": false, - "prefix": "", - "suffix": "", - "unique": false, - "values": [ - { - "label": "Yes", - "value": "yes", - "shortcut": "" - }, - { - "label": "No", - "value": "no", - "shortcut": "" - } - ], - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "fieldSet": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": true, - "customMessage": "", - "customPrivate": false, - "onlyAvailableItems": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": true, - "inputType": "radio", - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "json": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": "", - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "customConditional": "", - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "optionsLabelPosition": "right", - "allowCalculateOverride": false - } - ], - "currentWidth": 2 - }, - { - "pull": 0, - "push": 0, - "size": "md", - "width": 6, - "offset": 0, - "components": [ - { - "id": "euwqfre", - "key": "simplecontentonexerofour", - "html": "

Comments

", - "type": "content", - "input": false, - "label": "Text/Images", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "allowCalculateOverride": false - }, - { - "id": "el939", - "key": "simpletextareathreeone", - "mask": false, - "rows": 2, - "type": "textarea", - "input": true, - "label": "Multi-line Text", - "editor": "", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": { - "type": "input" - }, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "wysiwyg": false, - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "pattern": "", - "maxWords": "", - "minWords": "", - "multiple": false, - "required": false, - "maxLength": "", - "minLength": "", - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "fixedSize": true, - "hideLabel": true, - "inputMask": "", - "inputType": "text", - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": true, - "attributes": {}, - "autoExpand": true, - "errorLabel": "", - "persistent": true, - "properties": {}, - "spellcheck": true, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "inputFormat": "plain", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "allowCalculateOverride": false - } - ], - "currentWidth": 6 - } - ], - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "autoAdjust": false, - "errorLabel": "", - "persistent": false, - "properties": {}, - "validateOn": "change", - "clearOnHide": false, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "allowCalculateOverride": false - }, - { - "id": "e75575", - "key": "columnsfourone", - "tree": false, - "type": "columns", - "input": false, - "label": "Columns", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "columns": [ - { - "pull": 0, - "push": 0, - "size": "md", - "width": 4, - "offset": 0, - "components": [ - { - "id": "ei7sx8s", - "key": "fourfour", - "html": "

4.4 If TRVs were used, was the toxicity endpoint associated with each TRV identified?

", - "type": "content", - "input": false, - "label": "Text/Images", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "allowCalculateOverride": false - } - ], - "currentWidth": 4 - }, - { - "pull": 0, - "push": 0, - "size": "md", - "width": 2, - "offset": 0, - "components": [ - { - "id": "ef4voud", - "key": "simplecontentelevenone", - "html": "

Response

", - "type": "content", - "input": false, - "label": "Text/Images", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "allowCalculateOverride": false - }, - { - "id": "e9u11v", - "key": "radioGroupfourone", - "type": "radio", - "input": true, - "label": "Radio Group", - "hidden": false, - "inline": false, - "prefix": "", - "suffix": "", - "unique": false, - "values": [ - { - "label": "Yes", - "value": "yes", - "shortcut": "" - }, - { - "label": "No", - "value": "no", - "shortcut": "" - } - ], - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "fieldSet": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": true, - "customPrivate": false, - "onlyAvailableItems": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": true, - "inputType": "radio", - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "optionsLabelPosition": "right", - "allowCalculateOverride": false - } - ], - "currentWidth": 2 - }, - { - "pull": 0, - "push": 0, - "size": "md", - "width": 6, - "offset": 0, - "components": [ - { - "id": "el693uh", - "key": "simplecontenteleventwo", - "html": "

Comments

", - "type": "content", - "input": false, - "label": "Text/Images", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "allowCalculateOverride": false - }, - { - "id": "egfo74", - "key": "simpletextareathreefive", - "mask": false, - "rows": 2, - "type": "textarea", - "input": true, - "label": "Multi-line Text", - "editor": "", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": { - "type": "input" - }, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "wysiwyg": false, - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "pattern": "", - "maxWords": "", - "minWords": "", - "multiple": false, - "required": false, - "maxLength": "", - "minLength": "", - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "fixedSize": true, - "hideLabel": true, - "inputMask": "", - "inputType": "text", - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": true, - "attributes": {}, - "autoExpand": true, - "errorLabel": "", - "persistent": true, - "properties": {}, - "spellcheck": true, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "inputFormat": "plain", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "allowCalculateOverride": false - } - ], - "currentWidth": 6 - } - ], - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "autoAdjust": false, - "errorLabel": "", - "persistent": false, - "properties": {}, - "validateOn": "change", - "clearOnHide": false, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "allowCalculateOverride": false - }, - { - "id": "ek8qkvl", - "key": "columnsfourzero", - "tree": false, - "type": "columns", - "input": false, - "label": "Columns", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "columns": [ - { - "pull": 0, - "push": 0, - "size": "md", - "width": 4, - "offset": 0, - "components": [ - { - "id": "el9nuoj", - "key": "fourfive", - "html": "

4.5 Did the level of protection used in the DERA comply with the level specified in the ministry ecological risk assessment policy summary6 for the applicable land use or media?

", - "type": "content", - "input": false, - "label": "Text/Images", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "allowCalculateOverride": false - } - ], - "currentWidth": 4 - }, - { - "pull": 0, - "push": 0, - "size": "md", - "width": 2, - "offset": 0, - "components": [ - { - "id": "ezrpe8", - "key": "simplecontenttennine", - "html": "

Response

", - "type": "content", - "input": false, - "label": "Text/Images", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "allowCalculateOverride": false - }, - { - "id": "epg71vk", - "key": "radioGroupfourty", - "type": "radio", - "input": true, - "label": "Radio Group", - "hidden": false, - "inline": false, - "prefix": "", - "suffix": "", - "unique": false, - "values": [ - { - "label": "Yes", - "value": "yes", - "shortcut": "" - }, - { - "label": "No", - "value": "no", - "shortcut": "" - } - ], - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "fieldSet": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": true, - "customPrivate": false, - "onlyAvailableItems": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": true, - "inputType": "radio", - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "optionsLabelPosition": "right", - "allowCalculateOverride": false - } - ], - "currentWidth": 2 - }, - { - "pull": 0, - "push": 0, - "size": "md", - "width": 6, - "offset": 0, - "components": [ - { - "id": "ew06n9e", - "key": "simplecontentelevenzero", - "html": "

Comments

", - "type": "content", - "input": false, - "label": "Text/Images", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "allowCalculateOverride": false - }, - { - "id": "eksi5rl", - "key": "simpletextareathreefour", - "mask": false, - "rows": 2, - "type": "textarea", - "input": true, - "label": "Multi-line Text", - "editor": "", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": { - "type": "input" - }, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "wysiwyg": false, - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "pattern": "", - "maxWords": "", - "minWords": "", - "multiple": false, - "required": false, - "maxLength": "", - "minLength": "", - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "fixedSize": true, - "hideLabel": true, - "inputMask": "", - "inputType": "text", - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": true, - "attributes": {}, - "autoExpand": true, - "errorLabel": "", - "persistent": true, - "properties": {}, - "spellcheck": true, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "inputFormat": "plain", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "allowCalculateOverride": false - } - ], - "currentWidth": 6 - } - ], - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "autoAdjust": false, - "errorLabel": "", - "persistent": false, - "properties": {}, - "validateOn": "change", - "clearOnHide": false, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "allowCalculateOverride": false - }, - { - "id": "e5stqjp", - "key": "columnsthreenine", - "tree": false, - "type": "columns", - "input": false, - "label": "Columns", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "columns": [ - { - "pull": 0, - "push": 0, - "size": "md", - "width": 4, - "offset": 0, - "components": [ - { - "id": "e3vanh", - "key": "foursix", - "html": "

4.6 If risks were evaluated relative to: a reference site(s) or reference condition(s), was rationale for the selection of the reference site(s) or reference condition(s) provided? Were confounding variables (e.g., soil: texture, pH, grain size, depth etc.) addressed and considered in the evaluation?

", - "type": "content", - "input": false, - "label": "Text/Images", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "allowCalculateOverride": false - } - ], - "currentWidth": 4 - }, - { - "pull": 0, - "push": 0, - "size": "md", - "width": 2, - "offset": 0, - "components": [ - { - "id": "el9qadbf", - "key": "simplecontenttenseven", - "html": "

Response

", - "type": "content", - "input": false, - "label": "Text/Images", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "allowCalculateOverride": false - }, - { - "id": "eoqxgz9", - "key": "radioGroupthreenine", - "type": "radio", - "input": true, - "label": "Radio Group", - "hidden": false, - "inline": false, - "prefix": "", - "suffix": "", - "unique": false, - "values": [ - { - "label": "Yes", - "value": "yes", - "shortcut": "" - }, - { - "label": "No", - "value": "no", - "shortcut": "" - } - ], - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "fieldSet": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": true, - "customPrivate": false, - "onlyAvailableItems": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": true, - "inputType": "radio", - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "optionsLabelPosition": "right", - "allowCalculateOverride": false - } - ], - "currentWidth": 2 - }, - { - "pull": 0, - "push": 0, - "size": "md", - "width": 6, - "offset": 0, - "components": [ - { - "id": "emeu9si", - "key": "simplecontentteneight", - "html": "

Comments

", - "type": "content", - "input": false, - "label": "Text/Images", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "allowCalculateOverride": false - }, - { - "id": "eadzfkt", - "key": "simpletextareathreethree", - "mask": false, - "rows": 2, - "type": "textarea", - "input": true, - "label": "Multi-line Text", - "editor": "", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": { - "type": "input" - }, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "wysiwyg": false, - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "pattern": "", - "maxWords": "", - "minWords": "", - "multiple": false, - "required": false, - "maxLength": "", - "minLength": "", - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "fixedSize": true, - "hideLabel": true, - "inputMask": "", - "inputType": "text", - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": true, - "attributes": {}, - "autoExpand": true, - "errorLabel": "", - "persistent": true, - "properties": {}, - "spellcheck": true, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "inputFormat": "plain", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "allowCalculateOverride": false - } - ], - "currentWidth": 6 - } - ], - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "autoAdjust": false, - "errorLabel": "", - "persistent": false, - "properties": {}, - "validateOn": "change", - "clearOnHide": false, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "allowCalculateOverride": false - }, - { - "id": "ex1wvqe", - "key": "columnsfourthree", - "tree": false, - "type": "columns", - "input": false, - "label": "Columns", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "columns": [ - { - "pull": 0, - "push": 0, - "size": "md", - "width": 4, - "offset": 0, - "components": [ - { - "id": "eiw3m7l", - "key": "fourseven", - "html": "

4.7 If site-specific toxicity testing was conducted, did the test method(s) used meet the quality standards of Environment Canada (See footnote 7), ASTM (See footnote 8) or another recognized government agency?

", - "type": "content", - "input": false, - "label": "Text/Images", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "allowCalculateOverride": false - } - ], - "currentWidth": 4 - }, - { - "pull": 0, - "push": 0, - "size": "md", - "width": 2, - "offset": 0, - "components": [ - { - "id": "ed3ggs", - "key": "simplecontentelevenfive", - "html": "

Response

", - "type": "content", - "input": false, - "label": "Text/Images", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "allowCalculateOverride": false - }, - { - "id": "e8m0z5h", - "key": "radioGroupfourthree", - "type": "radio", - "input": true, - "label": "Radio Group", - "hidden": false, - "inline": false, - "prefix": "", - "suffix": "", - "unique": false, - "values": [ - { - "label": "Yes", - "value": "yes", - "shortcut": "" - }, - { - "label": "No", - "value": "no", - "shortcut": "" - } - ], - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "fieldSet": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": true, - "customPrivate": false, - "onlyAvailableItems": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": true, - "inputType": "radio", - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "optionsLabelPosition": "right", - "allowCalculateOverride": false - } - ], - "currentWidth": 2 - }, - { - "pull": 0, - "push": 0, - "size": "md", - "width": 6, - "offset": 0, - "components": [ - { - "id": "ecb84n", - "key": "simplecontentelevensix", - "html": "

Comments

", - "type": "content", - "input": false, - "label": "Text/Images", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "allowCalculateOverride": false - }, - { - "id": "eveqrzh", - "key": "simpletextareathreeseven", - "mask": false, - "rows": 2, - "type": "textarea", - "input": true, - "label": "Multi-line Text", - "editor": "", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": { - "type": "input" - }, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "wysiwyg": false, - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "pattern": "", - "maxWords": "", - "minWords": "", - "multiple": false, - "required": false, - "maxLength": "", - "minLength": "", - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "fixedSize": true, - "hideLabel": true, - "inputMask": "", - "inputType": "text", - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": true, - "attributes": {}, - "autoExpand": true, - "errorLabel": "", - "persistent": true, - "properties": {}, - "spellcheck": true, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "inputFormat": "plain", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "allowCalculateOverride": false - } - ], - "currentWidth": 6 - } - ], - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "autoAdjust": false, - "errorLabel": "", - "persistent": false, - "properties": {}, - "validateOn": "change", - "clearOnHide": false, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "allowCalculateOverride": false - }, - { - "id": "elsige6", - "key": "columnsfourtwo", - "tree": false, - "type": "columns", - "input": false, - "label": "Columns", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "columns": [ - { - "pull": 0, - "push": 0, - "size": "md", - "width": 4, - "offset": 0, - "components": [ - { - "id": "evcyuj5", - "key": "foureight", - "html": "

4.8 If site-specific toxicity tests were conducted, did the tests include samples from the most contaminated area of the site?

", - "type": "content", - "input": false, - "label": "Text/Images", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "allowCalculateOverride": false - } - ], - "currentWidth": 4 - }, - { - "pull": 0, - "push": 0, - "size": "md", - "width": 2, - "offset": 0, - "components": [ - { - "id": "eimpqag", - "key": "simplecontenteleventhree", - "html": "

Response

", - "type": "content", - "input": false, - "label": "Text/Images", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "allowCalculateOverride": false - }, - { - "id": "ecb2ru", - "key": "radioGroupfourtwo", - "type": "radio", - "input": true, - "label": "Radio Group", - "hidden": false, - "inline": false, - "prefix": "", - "suffix": "", - "unique": false, - "values": [ - { - "label": "Yes", - "value": "yes", - "shortcut": "" - }, - { - "label": "No", - "value": "no", - "shortcut": "" - } - ], - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "fieldSet": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": true, - "customPrivate": false, - "onlyAvailableItems": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": true, - "inputType": "radio", - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "optionsLabelPosition": "right", - "allowCalculateOverride": false - } - ], - "currentWidth": 2 - }, - { - "pull": 0, - "push": 0, - "size": "md", - "width": 6, - "offset": 0, - "components": [ - { - "id": "ecqckbt", - "key": "simplecontentelevenfour", - "html": "

Comments

", - "type": "content", - "input": false, - "label": "Text/Images", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "allowCalculateOverride": false - }, - { - "id": "ef5bcrt", - "key": "simpletextareathreesix", - "mask": false, - "rows": 2, - "type": "textarea", - "input": true, - "label": "Multi-line Text", - "editor": "", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": { - "type": "input" - }, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "wysiwyg": false, - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "pattern": "", - "maxWords": "", - "minWords": "", - "multiple": false, - "required": false, - "maxLength": "", - "minLength": "", - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "fixedSize": true, - "hideLabel": true, - "inputMask": "", - "inputType": "text", - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": true, - "attributes": {}, - "autoExpand": true, - "errorLabel": "", - "persistent": true, - "properties": {}, - "spellcheck": true, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "inputFormat": "plain", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "allowCalculateOverride": false - } - ], - "currentWidth": 6 - } - ], - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "autoAdjust": false, - "errorLabel": "", - "persistent": false, - "properties": {}, - "validateOn": "change", - "clearOnHide": false, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "allowCalculateOverride": false - }, - { - "id": "e3c1wninteen", - "key": "columnsfourfive", - "tree": false, - "type": "columns", - "input": false, - "label": "Columns", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "columns": [ - { - "pull": 0, - "push": 0, - "size": "md", - "width": 4, - "offset": 0, - "components": [ - { - "id": "emdof2v", - "key": "fournine", - "html": "

4.9 Were potential toxicological interactions (e.g., synergistic or antagonistic effects) between potential contaminants of concern discussed?

", - "type": "content", - "input": false, - "label": "Text/Images", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "allowCalculateOverride": false - } - ], - "currentWidth": 4 - }, - { - "pull": 0, - "push": 0, - "size": "md", - "width": 2, - "offset": 0, - "components": [ - { - "id": "epi3t03", - "key": "simplecontentelevennine", - "html": "

Response

", - "type": "content", - "input": false, - "label": "Text/Images", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "allowCalculateOverride": false - }, - { - "id": "ez7n08b", - "key": "radioGroupfourfive", - "type": "radio", - "input": true, - "label": "Radio Group", - "hidden": false, - "inline": false, - "prefix": "", - "suffix": "", - "unique": false, - "values": [ - { - "label": "Yes", - "value": "yes", - "shortcut": "" - }, - { - "label": "No", - "value": "no", - "shortcut": "" - } - ], - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "fieldSet": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customMessage": "", - "customPrivate": false, - "onlyAvailableItems": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": true, - "inputType": "radio", - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "json": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": "", - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "customConditional": "", - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "optionsLabelPosition": "right", - "allowCalculateOverride": false - } - ], - "currentWidth": 2 - }, - { - "pull": 0, - "push": 0, - "size": "md", - "width": 6, - "offset": 0, - "components": [ - { - "id": "efvlbj6", - "key": "simplecontentonetwenty", - "html": "

Comments

", - "type": "content", - "input": false, - "label": "Text/Images", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "allowCalculateOverride": false - }, - { - "id": "e1ue06", - "key": "simpletextareathreenine", - "mask": false, - "rows": 2, - "type": "textarea", - "input": true, - "label": "Multi-line Text", - "editor": "", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": { - "type": "input" - }, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "wysiwyg": false, - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "pattern": "", - "maxWords": "", - "minWords": "", - "multiple": false, - "required": false, - "maxLength": "", - "minLength": "", - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "fixedSize": true, - "hideLabel": true, - "inputMask": "", - "inputType": "text", - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": true, - "attributes": {}, - "autoExpand": true, - "errorLabel": "", - "persistent": true, - "properties": {}, - "spellcheck": true, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "inputFormat": "plain", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "allowCalculateOverride": false - } - ], - "currentWidth": 6 - } - ], - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "autoAdjust": false, - "errorLabel": "", - "persistent": false, - "properties": {}, - "validateOn": "change", - "clearOnHide": false, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "allowCalculateOverride": false - }, - { - "id": "eo9okc", - "key": "columnsfourfour", - "tree": false, - "type": "columns", - "input": false, - "label": "Columns", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "columns": [ - { - "pull": 0, - "push": 0, - "size": "md", - "width": 4, - "offset": 0, - "components": [ - { - "id": "e6j4l1", - "key": "fourten", - "html": "

4.10 Were up to date toxicity profiles provided for each potential contaminant of concern?

", - "type": "content", - "input": false, - "label": "Text/Images", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "allowCalculateOverride": false - } - ], - "currentWidth": 4 - }, - { - "pull": 0, - "push": 0, - "size": "md", - "width": 2, - "offset": 0, - "components": [ - { - "id": "efu6p06", - "key": "simplecontentelevenseven", - "html": "

Response

", - "type": "content", - "input": false, - "label": "Text/Images", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "allowCalculateOverride": false - }, - { - "id": "ehmw4me", - "key": "radioGroupfourfour", - "type": "radio", - "input": true, - "label": "Radio Group", - "hidden": false, - "inline": false, - "prefix": "", - "suffix": "", - "unique": false, - "values": [ - { - "label": "Yes", - "value": "yes", - "shortcut": "" - }, - { - "label": "No", - "value": "no", - "shortcut": "" - } - ], - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "fieldSet": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customMessage": "", - "customPrivate": false, - "onlyAvailableItems": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": true, - "inputType": "radio", - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "json": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": "", - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "customConditional": "", - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "optionsLabelPosition": "right", - "allowCalculateOverride": false - } - ], - "currentWidth": 2 - }, - { - "pull": 0, - "push": 0, - "size": "md", - "width": 6, - "offset": 0, - "components": [ - { - "id": "ex113s", - "key": "simplecontenteleveneight", - "html": "

Comments

", - "type": "content", - "input": false, - "label": "Text/Images", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "allowCalculateOverride": false - }, - { - "id": "e7x44r", - "key": "simpletextareathreeeight", - "mask": false, - "rows": 2, - "type": "textarea", - "input": true, - "label": "Multi-line Text", - "editor": "", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": { - "type": "input" - }, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "wysiwyg": false, - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "pattern": "", - "maxWords": "", - "minWords": "", - "multiple": false, - "required": false, - "maxLength": "", - "minLength": "", - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "fixedSize": true, - "hideLabel": true, - "inputMask": "", - "inputType": "text", - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": true, - "attributes": {}, - "autoExpand": true, - "errorLabel": "", - "persistent": true, - "properties": {}, - "spellcheck": true, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "inputFormat": "plain", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "allowCalculateOverride": false - } - ], - "currentWidth": 6 - } - ], - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "autoAdjust": false, - "errorLabel": "", - "persistent": false, - "properties": {}, - "validateOn": "change", - "clearOnHide": false, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "allowCalculateOverride": false - } - ], - "errorLabel": "", - "persistent": false, - "properties": {}, - "validateOn": "change", - "clearOnHide": false, - "collapsible": true, - "conditional": { - "eq": "", - "json": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "customConditional": "", - "allowMultipleMasks": false, - "customDefaultValue": "", - "allowCalculateOverride": false - }, - { - "id": "errmgyj", - "key": "subsectionRiskCharacterization", - "tree": false, - "type": "panel", - "input": false, - "label": "", - "theme": "default", - "title": "Subsection 5.0 Risk Characterization", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "collapsed": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "breadcrumb": "default", - "components": [ - { - "id": "e5ipmhg", - "key": "columnsfoursix", - "tree": false, - "type": "columns", - "input": false, - "label": "Columns", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "columns": [ - { - "pull": 0, - "push": 0, - "size": "md", - "width": 4, - "offset": 0, - "components": [ - { - "id": "ehzftk", - "key": "fiveone", - "html": "

5.1 Was sufficient detail provided for equations used to calculate numeric risk estimates so that it is clear how the estimates were derived?

", - "type": "content", - "input": false, - "label": "Text/Images", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "allowCalculateOverride": false - } - ], - "currentWidth": 4 - }, - { - "pull": 0, - "push": 0, - "size": "md", - "width": 2, - "offset": 0, - "components": [ - { - "id": "e9tbwg", - "key": "simplecontenttwelveone", - "html": "

Response

", - "type": "content", - "input": false, - "label": "Text/Images", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "allowCalculateOverride": false - }, - { - "id": "epsll5fo", - "key": "radioGroupfoursix", - "type": "radio", - "input": true, - "label": "Radio Group", - "hidden": false, - "inline": false, - "prefix": "", - "suffix": "", - "unique": false, - "values": [ - { - "label": "Yes", - "value": "yes", - "shortcut": "" - }, - { - "label": "No", - "value": "no", - "shortcut": "" - } - ], - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "fieldSet": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": true, - "customPrivate": false, - "onlyAvailableItems": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": true, - "inputType": "radio", - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "optionsLabelPosition": "right", - "allowCalculateOverride": false - } - ], - "currentWidth": 2 - }, - { - "pull": 0, - "push": 0, - "size": "md", - "width": 6, - "offset": 0, - "components": [ - { - "id": "epjfcc8", - "key": "simplecontenttwelvetwo", - "html": "

Comments

", - "type": "content", - "input": false, - "label": "Text/Images", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "allowCalculateOverride": false - }, - { - "id": "eg02v0s", - "key": "simpletextareafourty", - "mask": false, - "rows": 2, - "type": "textarea", - "input": true, - "label": "Multi-line Text", - "editor": "", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": { - "type": "input" - }, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "wysiwyg": false, - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "pattern": "", - "maxWords": "", - "minWords": "", - "multiple": false, - "required": false, - "maxLength": "", - "minLength": "", - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "fixedSize": true, - "hideLabel": true, - "inputMask": "", - "inputType": "text", - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": true, - "attributes": {}, - "autoExpand": true, - "errorLabel": "", - "persistent": true, - "properties": {}, - "spellcheck": true, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "inputFormat": "plain", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "allowCalculateOverride": false - } - ], - "currentWidth": 6 - } - ], - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "autoAdjust": false, - "errorLabel": "", - "persistent": false, - "properties": {}, - "validateOn": "change", - "clearOnHide": false, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "allowCalculateOverride": false - }, - { - "id": "ez4885", - "key": "columnsfournine", - "tree": false, - "type": "columns", - "input": false, - "label": "Columns", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "columns": [ - { - "pull": 0, - "push": 0, - "size": "md", - "width": 4, - "offset": 0, - "components": [ - { - "id": "epknoga", - "key": "fivetwo", - "html": "

5.2 Was preference given to the use of hazard quotients in expressing numeric risk estimates?

", - "type": "content", - "input": false, - "label": "Text/Images", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "allowCalculateOverride": false - } - ], - "currentWidth": 4 - }, - { - "pull": 0, - "push": 0, - "size": "md", - "width": 2, - "offset": 0, - "components": [ - { - "id": "efbwr8l", - "key": "simplecontenttwelveseven", - "html": "

Response

", - "type": "content", - "input": false, - "label": "Text/Images", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "allowCalculateOverride": false - }, - { - "id": "ewollkv", - "key": "radioGroupfournine", - "type": "radio", - "input": true, - "label": "Radio Group", - "hidden": false, - "inline": false, - "prefix": "", - "suffix": "", - "unique": false, - "values": [ - { - "label": "Yes", - "value": "yes", - "shortcut": "" - }, - { - "label": "No", - "value": "no", - "shortcut": "" - } - ], - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "fieldSet": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": true, - "customPrivate": false, - "onlyAvailableItems": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": true, - "inputType": "radio", - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "optionsLabelPosition": "right", - "allowCalculateOverride": false - } - ], - "currentWidth": 2 - }, - { - "pull": 0, - "push": 0, - "size": "md", - "width": 6, - "offset": 0, - "components": [ - { - "id": "ewvtd7u", - "key": "simplecontenttwelveright", - "html": "

Comments

", - "type": "content", - "input": false, - "label": "Text/Images", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "allowCalculateOverride": false - }, - { - "id": "eykvapr", - "key": "simpletextareafourthree", - "mask": false, - "rows": 2, - "type": "textarea", - "input": true, - "label": "Multi-line Text", - "editor": "", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": { - "type": "input" - }, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "wysiwyg": false, - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "pattern": "", - "maxWords": "", - "minWords": "", - "multiple": false, - "required": false, - "maxLength": "", - "minLength": "", - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "fixedSize": true, - "hideLabel": true, - "inputMask": "", - "inputType": "text", - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": true, - "attributes": {}, - "autoExpand": true, - "errorLabel": "", - "persistent": true, - "properties": {}, - "spellcheck": true, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "inputFormat": "plain", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "allowCalculateOverride": false - } - ], - "currentWidth": 6 - } - ], - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "autoAdjust": false, - "errorLabel": "", - "persistent": false, - "properties": {}, - "validateOn": "change", - "clearOnHide": false, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "allowCalculateOverride": false - }, - { - "id": "e0o8ief", - "key": "columnsfoureight", - "tree": false, - "type": "columns", - "input": false, - "label": "Columns", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "columns": [ - { - "pull": 0, - "push": 0, - "size": "md", - "width": 4, - "offset": 0, - "components": [ - { - "id": "etlnijl", - "key": "fivethree", - "html": "

5.3 If hazard quotients were calculated, were they documented for each complete contaminant-receptor-pathway combination (as identified in the Problem Formulation)?

", - "type": "content", - "input": false, - "label": "Text/Images", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "allowCalculateOverride": false - } - ], - "currentWidth": 4 - }, - { - "pull": 0, - "push": 0, - "size": "md", - "width": 2, - "offset": 0, - "components": [ - { - "id": "ezsa1c7", - "key": "simplecontenttwelvefive", - "html": "

Response

", - "type": "content", - "input": false, - "label": "Text/Images", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "allowCalculateOverride": false - }, - { - "id": "e1jab8d", - "key": "radioGroupfoureight", - "type": "radio", - "input": true, - "label": "Radio Group", - "hidden": false, - "inline": false, - "prefix": "", - "suffix": "", - "unique": false, - "values": [ - { - "label": "Yes", - "value": "yes", - "shortcut": "" - }, - { - "label": "No", - "value": "no", - "shortcut": "" - } - ], - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "fieldSet": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": true, - "customPrivate": false, - "onlyAvailableItems": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": true, - "inputType": "radio", - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "optionsLabelPosition": "right", - "allowCalculateOverride": false - } - ], - "currentWidth": 2 - }, - { - "pull": 0, - "push": 0, - "size": "md", - "width": 6, - "offset": 0, - "components": [ - { - "id": "eu9tu2f", - "key": "simplecontenttwelvesix", - "html": "

Comments

", - "type": "content", - "input": false, - "label": "Text/Images", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "allowCalculateOverride": false - }, - { - "id": "ej87fb", - "key": "simpletextareafourtwo", - "mask": false, - "rows": 2, - "type": "textarea", - "input": true, - "label": "Multi-line Text", - "editor": "", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": { - "type": "input" - }, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "wysiwyg": false, - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "pattern": "", - "maxWords": "", - "minWords": "", - "multiple": false, - "required": false, - "maxLength": "", - "minLength": "", - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "fixedSize": true, - "hideLabel": true, - "inputMask": "", - "inputType": "text", - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": true, - "attributes": {}, - "autoExpand": true, - "errorLabel": "", - "persistent": true, - "properties": {}, - "spellcheck": true, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "inputFormat": "plain", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "allowCalculateOverride": false - } - ], - "currentWidth": 6 - } - ], - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "autoAdjust": false, - "errorLabel": "", - "persistent": false, - "properties": {}, - "validateOn": "change", - "clearOnHide": false, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "allowCalculateOverride": false - }, - { - "id": "ezsoqom", - "key": "columnsfourseven", - "tree": false, - "type": "columns", - "input": false, - "label": "Columns", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "columns": [ - { - "pull": 0, - "push": 0, - "size": "md", - "width": 4, - "offset": 0, - "components": [ - { - "id": "e28w7eq", - "key": "fivefour", - "html": "

5.4 If hazard quotients were not calculated, was rationale provided for using a different approach (e.g., site observations or plotting exposure with dose-response data)?

", - "type": "content", - "input": false, - "label": "Text/Images", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "allowCalculateOverride": false - } - ], - "currentWidth": 4 - }, - { - "pull": 0, - "push": 0, - "size": "md", - "width": 2, - "offset": 0, - "components": [ - { - "id": "ep4idbt", - "key": "simplecontenttwelvethree", - "html": "

Response

", - "type": "content", - "input": false, - "label": "Text/Images", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "allowCalculateOverride": false - }, - { - "id": "eesf545", - "key": "radioGroupfourseven", - "type": "radio", - "input": true, - "label": "Radio Group", - "hidden": false, - "inline": false, - "prefix": "", - "suffix": "", - "unique": false, - "values": [ - { - "label": "Yes", - "value": "yes", - "shortcut": "" - }, - { - "label": "No", - "value": "no", - "shortcut": "" - } - ], - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "fieldSet": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": true, - "customPrivate": false, - "onlyAvailableItems": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": true, - "inputType": "radio", - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "optionsLabelPosition": "right", - "allowCalculateOverride": false - } - ], - "currentWidth": 2 - }, - { - "pull": 0, - "push": 0, - "size": "md", - "width": 6, - "offset": 0, - "components": [ - { - "id": "er52oy", - "key": "simplecontenttwelvefour", - "html": "

Comments

", - "type": "content", - "input": false, - "label": "Text/Images", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "allowCalculateOverride": false - }, - { - "id": "epp2tr", - "key": "simpletextareafourone", - "mask": false, - "rows": 2, - "type": "textarea", - "input": true, - "label": "Multi-line Text", - "editor": "", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": { - "type": "input" - }, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "wysiwyg": false, - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "pattern": "", - "maxWords": "", - "minWords": "", - "multiple": false, - "required": false, - "maxLength": "", - "minLength": "", - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "fixedSize": true, - "hideLabel": true, - "inputMask": "", - "inputType": "text", - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": true, - "attributes": {}, - "autoExpand": true, - "errorLabel": "", - "persistent": true, - "properties": {}, - "spellcheck": true, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "inputFormat": "plain", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "allowCalculateOverride": false - } - ], - "currentWidth": 6 - } - ], - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "autoAdjust": false, - "errorLabel": "", - "persistent": false, - "properties": {}, - "validateOn": "change", - "clearOnHide": false, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "allowCalculateOverride": false - }, - { - "id": "e9mvfz5", - "key": "columnsfiveone", - "tree": false, - "type": "columns", - "input": false, - "label": "Columns", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "columns": [ - { - "pull": 0, - "push": 0, - "size": "md", - "width": 4, - "offset": 0, - "components": [ - { - "id": "ezfvuk7", - "key": "fivefive", - "html": "

5.5 If an ecological hazard quotient exceeded unity, but the level of risk was considered acceptable, was a rationale provided?

", - "type": "content", - "input": false, - "label": "Text/Images", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "allowCalculateOverride": false - } - ], - "currentWidth": 4 - }, - { - "pull": 0, - "push": 0, - "size": "md", - "width": 2, - "offset": 0, - "components": [ - { - "id": "ec7l57h", - "key": "simplecontentthirteenone", - "html": "

Response

", - "type": "content", - "input": false, - "label": "Text/Images", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "allowCalculateOverride": false - }, - { - "id": "eb55uy9", - "key": "radioGroupfiveone", - "type": "radio", - "input": true, - "label": "Radio Group", - "hidden": false, - "inline": false, - "prefix": "", - "suffix": "", - "unique": false, - "values": [ - { - "label": "Yes", - "value": "yes", - "shortcut": "" - }, - { - "label": "No", - "value": "no", - "shortcut": "" - } - ], - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "fieldSet": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": true, - "customPrivate": false, - "onlyAvailableItems": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": true, - "inputType": "radio", - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "optionsLabelPosition": "right", - "allowCalculateOverride": false - } - ], - "currentWidth": 2 - }, - { - "pull": 0, - "push": 0, - "size": "md", - "width": 6, - "offset": 0, - "components": [ - { - "id": "esactns", - "key": "simplecontentthirteentwo", - "html": "

Comments

", - "type": "content", - "input": false, - "label": "Text/Images", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "allowCalculateOverride": false - }, - { - "id": "eeggckb", - "key": "simpletextareafourfive", - "mask": false, - "rows": 2, - "type": "textarea", - "input": true, - "label": "Multi-line Text", - "editor": "", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": { - "type": "input" - }, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "wysiwyg": false, - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "pattern": "", - "maxWords": "", - "minWords": "", - "multiple": false, - "required": false, - "maxLength": "", - "minLength": "", - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "fixedSize": true, - "hideLabel": true, - "inputMask": "", - "inputType": "text", - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": true, - "attributes": {}, - "autoExpand": true, - "errorLabel": "", - "persistent": true, - "properties": {}, - "spellcheck": true, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "inputFormat": "plain", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "allowCalculateOverride": false - } - ], - "currentWidth": 6 - } - ], - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "autoAdjust": false, - "errorLabel": "", - "persistent": false, - "properties": {}, - "validateOn": "change", - "clearOnHide": false, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "allowCalculateOverride": false - }, - { - "id": "eer25a7", - "key": "columnsfivezero", - "tree": false, - "type": "columns", - "input": false, - "label": "Columns", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "columns": [ - { - "pull": 0, - "push": 0, - "size": "md", - "width": 4, - "offset": 0, - "components": [ - { - "id": "egu0x", - "key": "fivesix", - "html": "

5.6 Were risks for all operative contaminant-receptor-pathways detailed in the problem formulation assessed and categorized as acceptable or unacceptable?

", - "type": "content", - "input": false, - "label": "Text/Images", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "allowCalculateOverride": false - } - ], - "currentWidth": 4 - }, - { - "pull": 0, - "push": 0, - "size": "md", - "width": 2, - "offset": 0, - "components": [ - { - "id": "er4updb", - "key": "simplecontenttwelvenine", - "html": "

Response

", - "type": "content", - "input": false, - "label": "Text/Images", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "allowCalculateOverride": false - }, - { - "id": "eadugp5", - "key": "radioGroupfivezero", - "type": "radio", - "input": true, - "label": "Radio Group", - "hidden": false, - "inline": false, - "prefix": "", - "suffix": "", - "unique": false, - "values": [ - { - "label": "Yes", - "value": "yes", - "shortcut": "" - }, - { - "label": "No", - "value": "no", - "shortcut": "" - } - ], - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "fieldSet": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": true, - "customPrivate": false, - "onlyAvailableItems": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": true, - "inputType": "radio", - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "optionsLabelPosition": "right", - "allowCalculateOverride": false - } - ], - "currentWidth": 2 - }, - { - "pull": 0, - "push": 0, - "size": "md", - "width": 6, - "offset": 0, - "components": [ - { - "id": "ec37din", - "key": "simplecontentthirteenzero", - "html": "

Comments

", - "type": "content", - "input": false, - "label": "Text/Images", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "allowCalculateOverride": false - }, - { - "id": "ebf2gzj", - "key": "simpletextareafourfour", - "mask": false, - "rows": 2, - "type": "textarea", - "input": true, - "label": "Multi-line Text", - "editor": "", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": { - "type": "input" - }, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "wysiwyg": false, - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "pattern": "", - "maxWords": "", - "minWords": "", - "multiple": false, - "required": false, - "maxLength": "", - "minLength": "", - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "fixedSize": true, - "hideLabel": true, - "inputMask": "", - "inputType": "text", - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": true, - "attributes": {}, - "autoExpand": true, - "errorLabel": "", - "persistent": true, - "properties": {}, - "spellcheck": true, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "inputFormat": "plain", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "allowCalculateOverride": false - } - ], - "currentWidth": 6 - } - ], - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "autoAdjust": false, - "errorLabel": "", - "persistent": false, - "properties": {}, - "validateOn": "change", - "clearOnHide": false, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "allowCalculateOverride": false - }, - { - "id": "e7vk7k", - "key": "columnsfivethree", - "tree": false, - "type": "columns", - "input": false, - "label": "Columns", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "columns": [ - { - "pull": 0, - "push": 0, - "size": "md", - "width": 4, - "offset": 0, - "components": [ - { - "id": "eyl3fu", - "key": "fiveseven", - "html": "

5.7 Were the conclusions (i.e., risk characterization) consistent with the assessment endpoints?

", - "type": "content", - "input": false, - "label": "Text/Images", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "allowCalculateOverride": false - } - ], - "currentWidth": 4 - }, - { - "pull": 0, - "push": 0, - "size": "md", - "width": 2, - "offset": 0, - "components": [ - { - "id": "esv8t2q", - "key": "simplecontentthirteenfive", - "html": "

Response

", - "type": "content", - "input": false, - "label": "Text/Images", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "allowCalculateOverride": false - }, - { - "id": "eubrtyj", - "key": "radioGroupfivethree", - "type": "radio", - "input": true, - "label": "Radio Group", - "hidden": false, - "inline": false, - "prefix": "", - "suffix": "", - "unique": false, - "values": [ - { - "label": "Yes", - "value": "yes", - "shortcut": "" - }, - { - "label": "No", - "value": "no", - "shortcut": "" - } - ], - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "fieldSet": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": true, - "customPrivate": false, - "onlyAvailableItems": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": true, - "inputType": "radio", - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "optionsLabelPosition": "right", - "allowCalculateOverride": false - } - ], - "currentWidth": 2 - }, - { - "pull": 0, - "push": 0, - "size": "md", - "width": 6, - "offset": 0, - "components": [ - { - "id": "epzkl8e", - "key": "simplecontentthirteensix", - "html": "

Comments

", - "type": "content", - "input": false, - "label": "Text/Images", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "allowCalculateOverride": false - }, - { - "id": "e2czylj", - "key": "simpletextareafourseven", - "mask": false, - "rows": 2, - "type": "textarea", - "input": true, - "label": "Multi-line Text", - "editor": "", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": { - "type": "input" - }, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "wysiwyg": false, - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "pattern": "", - "maxWords": "", - "minWords": "", - "multiple": false, - "required": false, - "maxLength": "", - "minLength": "", - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "fixedSize": true, - "hideLabel": true, - "inputMask": "", - "inputType": "text", - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": true, - "attributes": {}, - "autoExpand": true, - "errorLabel": "", - "persistent": true, - "properties": {}, - "spellcheck": true, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "inputFormat": "plain", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "allowCalculateOverride": false - } - ], - "currentWidth": 6 - } - ], - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "autoAdjust": false, - "errorLabel": "", - "persistent": false, - "properties": {}, - "validateOn": "change", - "clearOnHide": false, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "allowCalculateOverride": false - }, - { - "id": "evup4bu", - "key": "columnsfivetwo", - "tree": false, - "type": "columns", - "input": false, - "label": "Columns", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "columns": [ - { - "pull": 0, - "push": 0, - "size": "md", - "width": 4, - "offset": 0, - "components": [ - { - "id": "ewyc2oq", - "key": "fiveeight", - "html": "

5.8 Does the risk assessment provide an explicit risk conclusion in regard to the significance of the ecological risk posed by the contamination at the site?

", - "type": "content", - "input": false, - "label": "Text/Images", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "allowCalculateOverride": false - } - ], - "currentWidth": 4 - }, - { - "pull": 0, - "push": 0, - "size": "md", - "width": 2, - "offset": 0, - "components": [ - { - "id": "eq80cx5", - "key": "simplecontentthirteenthre", - "html": "

Response

", - "type": "content", - "input": false, - "label": "Text/Images", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "allowCalculateOverride": false - }, - { - "id": "e8fufi", - "key": "radioGroupfivetwo", - "type": "radio", - "input": true, - "label": "Radio Group", - "hidden": false, - "inline": false, - "prefix": "", - "suffix": "", - "unique": false, - "values": [ - { - "label": "Yes", - "value": "yes", - "shortcut": "" - }, - { - "label": "No", - "value": "no", - "shortcut": "" - } - ], - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "fieldSet": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": true, - "customPrivate": false, - "onlyAvailableItems": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": true, - "inputType": "radio", - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "optionsLabelPosition": "right", - "allowCalculateOverride": false - } - ], - "currentWidth": 2 - }, - { - "pull": 0, - "push": 0, - "size": "md", - "width": 6, - "offset": 0, - "components": [ - { - "id": "ef5eqfh", - "key": "simplecontentthirteenfour", - "html": "

Comments

", - "type": "content", - "input": false, - "label": "Text/Images", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "allowCalculateOverride": false - }, - { - "id": "e0nkw9d", - "key": "simpletextareafoursix", - "mask": false, - "rows": 2, - "type": "textarea", - "input": true, - "label": "Multi-line Text", - "editor": "", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": { - "type": "input" - }, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "wysiwyg": false, - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "pattern": "", - "maxWords": "", - "minWords": "", - "multiple": false, - "required": false, - "maxLength": "", - "minLength": "", - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "fixedSize": true, - "hideLabel": true, - "inputMask": "", - "inputType": "text", - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": true, - "attributes": {}, - "autoExpand": true, - "errorLabel": "", - "persistent": true, - "properties": {}, - "spellcheck": true, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "inputFormat": "plain", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "allowCalculateOverride": false - } - ], - "currentWidth": 6 - } - ], - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "autoAdjust": false, - "errorLabel": "", - "persistent": false, - "properties": {}, - "validateOn": "change", - "clearOnHide": false, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "allowCalculateOverride": false - } - ], - "errorLabel": "", - "persistent": false, - "properties": {}, - "validateOn": "change", - "clearOnHide": false, - "collapsible": true, - "conditional": { - "eq": "", - "json": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "customConditional": "", - "allowMultipleMasks": false, - "customDefaultValue": "", - "allowCalculateOverride": false - }, - { - "id": "eybnpj", - "key": "subsectionUncertaintyAssessment", - "tree": false, - "type": "panel", - "input": false, - "label": "", - "theme": "default", - "title": "Subsection 6.0 Uncertainty Assessment", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "collapsed": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "breadcrumb": "default", - "components": [ - { - "id": "ekgfwyh", - "key": "columnsfivefour", - "tree": false, - "type": "columns", - "input": false, - "label": "Columns", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "columns": [ - { - "pull": 0, - "push": 0, - "size": "md", - "width": 4, - "offset": 0, - "components": [ - { - "id": "eivr0mg", - "key": "sixone", - "html": "

6.1 Were uncertainties (e.g., measurement uncertainty, random variations, conceptual uncertainty and ignorance) explicitly evaluated and stated, including their implications on risk conclusions?

", - "type": "content", - "input": false, - "label": "Text/Images", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "allowCalculateOverride": false - } - ], - "currentWidth": 4 - }, - { - "pull": 0, - "push": 0, - "size": "md", - "width": 2, - "offset": 0, - "components": [ - { - "id": "ek4v8s9", - "key": "simplecontentthirteenseven", - "html": "

Response

", - "type": "content", - "input": false, - "label": "Text/Images", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "allowCalculateOverride": false - }, - { - "id": "ey5ukps", - "key": "radioGroupfivefour", - "type": "radio", - "input": true, - "label": "Radio Group", - "hidden": false, - "inline": false, - "prefix": "", - "suffix": "", - "unique": false, - "values": [ - { - "label": "Yes", - "value": "yes", - "shortcut": "" - }, - { - "label": "No", - "value": "no", - "shortcut": "" - } - ], - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "fieldSet": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": true, - "customPrivate": false, - "onlyAvailableItems": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": true, - "inputType": "radio", - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "optionsLabelPosition": "right", - "allowCalculateOverride": false - } - ], - "currentWidth": 2 - }, - { - "pull": 0, - "push": 0, - "size": "md", - "width": 6, - "offset": 0, - "components": [ - { - "id": "ed7qhg", - "key": "simplecontentthirteeneight", - "html": "

Comments

", - "type": "content", - "input": false, - "label": "Text/Images", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "allowCalculateOverride": false - }, - { - "id": "e09sc0c", - "key": "simpletextareafoureight", - "mask": false, - "rows": 2, - "type": "textarea", - "input": true, - "label": "Multi-line Text", - "editor": "", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": { - "type": "input" - }, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "wysiwyg": false, - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "pattern": "", - "maxWords": "", - "minWords": "", - "multiple": false, - "required": false, - "maxLength": "", - "minLength": "", - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "fixedSize": true, - "hideLabel": true, - "inputMask": "", - "inputType": "text", - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": true, - "attributes": {}, - "autoExpand": true, - "errorLabel": "", - "persistent": true, - "properties": {}, - "spellcheck": true, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "inputFormat": "plain", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "allowCalculateOverride": false - } - ], - "currentWidth": 6 - } - ], - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "autoAdjust": false, - "errorLabel": "", - "persistent": false, - "properties": {}, - "validateOn": "change", - "clearOnHide": false, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "allowCalculateOverride": false - }, - { - "id": "ensgg9q", - "key": "columnsfiveseven", - "tree": false, - "type": "columns", - "input": false, - "label": "Columns", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "columns": [ - { - "pull": 0, - "push": 0, - "size": "md", - "width": 4, - "offset": 0, - "components": [ - { - "id": "efvh06", - "key": "sixtwo", - "html": "

6.2 If a weight-of-evidence approach was used, was preference given to assigning quantifiable, a priori weightings to weighted aspects of the DERA?

", - "type": "content", - "input": false, - "label": "Text/Images", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "allowCalculateOverride": false - } - ], - "currentWidth": 4 - }, - { - "pull": 0, - "push": 0, - "size": "md", - "width": 2, - "offset": 0, - "components": [ - { - "id": "es4tfx6", - "key": "simplecontentfourteenthree", - "html": "

Response

", - "type": "content", - "input": false, - "label": "Text/Images", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "allowCalculateOverride": false - }, - { - "id": "ex71prl", - "key": "radioGroupfiveseven", - "type": "radio", - "input": true, - "label": "Radio Group", - "hidden": false, - "inline": false, - "prefix": "", - "suffix": "", - "unique": false, - "values": [ - { - "label": "Yes", - "value": "yes", - "shortcut": "" - }, - { - "label": "No", - "value": "no", - "shortcut": "" - } - ], - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "fieldSet": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": true, - "customPrivate": false, - "onlyAvailableItems": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": true, - "inputType": "radio", - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "optionsLabelPosition": "right", - "allowCalculateOverride": false - } - ], - "currentWidth": 2 - }, - { - "pull": 0, - "push": 0, - "size": "md", - "width": 6, - "offset": 0, - "components": [ - { - "id": "e3oawia", - "key": "simplecontentfourteenfour", - "html": "

Comments

", - "type": "content", - "input": false, - "label": "Text/Images", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "allowCalculateOverride": false - }, - { - "id": "e32ks6r", - "key": "simpletextareafiveone", - "mask": false, - "rows": 2, - "type": "textarea", - "input": true, - "label": "Multi-line Text", - "editor": "", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": { - "type": "input" - }, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "wysiwyg": false, - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "pattern": "", - "maxWords": "", - "minWords": "", - "multiple": false, - "required": false, - "maxLength": "", - "minLength": "", - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "fixedSize": true, - "hideLabel": true, - "inputMask": "", - "inputType": "text", - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": true, - "attributes": {}, - "autoExpand": true, - "errorLabel": "", - "persistent": true, - "properties": {}, - "spellcheck": true, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "inputFormat": "plain", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "allowCalculateOverride": false - } - ], - "currentWidth": 6 - } - ], - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "autoAdjust": false, - "errorLabel": "", - "persistent": false, - "properties": {}, - "validateOn": "change", - "clearOnHide": false, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "allowCalculateOverride": false - }, - { - "id": "e8r81o", - "key": "columnsfivesix", - "tree": false, - "type": "columns", - "input": false, - "label": "Columns", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "columns": [ - { - "pull": 0, - "push": 0, - "size": "md", - "width": 4, - "offset": 0, - "components": [ - { - "id": "eeh8c76", - "key": "sixthree", - "html": "

6.3 If a weight-of-evidence approach was used, were the weight-of-evidence conclusions determined in a manner consistent with the approach laid out in the problem formulation?

", - "type": "content", - "input": false, - "label": "Text/Images", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "allowCalculateOverride": false - } - ], - "currentWidth": 4 - }, - { - "pull": 0, - "push": 0, - "size": "md", - "width": 2, - "offset": 0, - "components": [ - { - "id": "eo9oi1i", - "key": "simplecontentfourteenone", - "html": "

Response

", - "type": "content", - "input": false, - "label": "Text/Images", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "allowCalculateOverride": false - }, - { - "id": "ez3px9i", - "key": "radioGroupfivesix", - "type": "radio", - "input": true, - "label": "Radio Group", - "hidden": false, - "inline": false, - "prefix": "", - "suffix": "", - "unique": false, - "values": [ - { - "label": "Yes", - "value": "yes", - "shortcut": "" - }, - { - "label": "No", - "value": "no", - "shortcut": "" - } - ], - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "fieldSet": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": true, - "customPrivate": false, - "onlyAvailableItems": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": true, - "inputType": "radio", - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "optionsLabelPosition": "right", - "allowCalculateOverride": false - } - ], - "currentWidth": 2 - }, - { - "pull": 0, - "push": 0, - "size": "md", - "width": 6, - "offset": 0, - "components": [ - { - "id": "eqlwt0s", - "key": "simplecontentfourteentwo", - "html": "

Comments

", - "type": "content", - "input": false, - "label": "Text/Images", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "allowCalculateOverride": false - }, - { - "id": "e4p3qqc", - "key": "simpletextareafivty", - "mask": false, - "rows": 2, - "type": "textarea", - "input": true, - "label": "Multi-line Text", - "editor": "", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": { - "type": "input" - }, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "wysiwyg": false, - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "pattern": "", - "maxWords": "", - "minWords": "", - "multiple": false, - "required": false, - "maxLength": "", - "minLength": "", - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "fixedSize": true, - "hideLabel": true, - "inputMask": "", - "inputType": "text", - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": true, - "attributes": {}, - "autoExpand": true, - "errorLabel": "", - "persistent": true, - "properties": {}, - "spellcheck": true, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "inputFormat": "plain", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "allowCalculateOverride": false - } - ], - "currentWidth": 6 - } - ], - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "autoAdjust": false, - "errorLabel": "", - "persistent": false, - "properties": {}, - "validateOn": "change", - "clearOnHide": false, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "allowCalculateOverride": false - }, - { - "id": "e15mv8t", - "key": "columnsfivefive", - "tree": false, - "type": "columns", - "input": false, - "label": "Columns", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "columns": [ - { - "pull": 0, - "push": 0, - "size": "md", - "width": 4, - "offset": 0, - "components": [ - { - "id": "en1u93", - "key": "sixfour", - "html": "

6.4 If a weight-of-evidence approach was used, were uncertainties associated with the use of the assigned weightings explicitly evaluated and stated, including their implications on risk conclusions?

", - "type": "content", - "input": false, - "label": "Text/Images", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "allowCalculateOverride": false - } - ], - "currentWidth": 4 - }, - { - "pull": 0, - "push": 0, - "size": "md", - "width": 2, - "offset": 0, - "components": [ - { - "id": "e2esk2o", - "key": "simplecontentthirteennine", - "html": "

Response

", - "type": "content", - "input": false, - "label": "Text/Images", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "allowCalculateOverride": false - }, - { - "id": "e02ef3", - "key": "radioGroupfivefive", - "type": "radio", - "input": true, - "label": "Radio Group", - "hidden": false, - "inline": false, - "prefix": "", - "suffix": "", - "unique": false, - "values": [ - { - "label": "Yes", - "value": "yes", - "shortcut": "" - }, - { - "label": "No", - "value": "no", - "shortcut": "" - } - ], - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "fieldSet": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": true, - "customPrivate": false, - "onlyAvailableItems": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": true, - "inputType": "radio", - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "optionsLabelPosition": "right", - "allowCalculateOverride": false - } - ], - "currentWidth": 2 - }, - { - "pull": 0, - "push": 0, - "size": "md", - "width": 6, - "offset": 0, - "components": [ - { - "id": "eouw37a", - "key": "simplecontentfourteenzero", - "html": "

Comments

", - "type": "content", - "input": false, - "label": "Text/Images", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "allowCalculateOverride": false - }, - { - "id": "ejgieej", - "key": "simpletextareafournine", - "mask": false, - "rows": 2, - "type": "textarea", - "input": true, - "label": "Multi-line Text", - "editor": "", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": { - "type": "input" - }, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "wysiwyg": false, - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "pattern": "", - "maxWords": "", - "minWords": "", - "multiple": false, - "required": false, - "maxLength": "", - "minLength": "", - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "fixedSize": true, - "hideLabel": true, - "inputMask": "", - "inputType": "text", - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": true, - "attributes": {}, - "autoExpand": true, - "errorLabel": "", - "persistent": true, - "properties": {}, - "spellcheck": true, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "inputFormat": "plain", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "allowCalculateOverride": false - } - ], - "currentWidth": 6 - } - ], - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "autoAdjust": false, - "errorLabel": "", - "persistent": false, - "properties": {}, - "validateOn": "change", - "clearOnHide": false, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "allowCalculateOverride": false - } - ], - "errorLabel": "", - "persistent": false, - "properties": {}, - "validateOn": "change", - "clearOnHide": false, - "collapsible": true, - "conditional": { - "eq": "", - "json": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "customConditional": "", - "allowMultipleMasks": false, - "customDefaultValue": "", - "allowCalculateOverride": false - }, - { - "id": "emwfku2", - "key": "simplecontentthreefour", - "html": "

Footnotes

  1. Ecological risk assessment objectives and assessment and measurement endpoints are described in Science Advisory Board for Contaminated Sites in British Columbia, Report on: Detailed Ecological Risk Assessment (DERA) in British Columbia Technical Guidance, September, 2008.
  2. Where both SLRA and DRA are applied at a site, pathways screened using SLRA should be re-evaluated in the problem formulation stage of the DRA to confirm that the assumptions and conditions inherent in SLRA are satisfied at the site.
  3. Province of British Columbia. Environmental Management Act. BC Reg 375/96 Contaminated Sites Regulation Section 59 (2).
  4. Guidance on selecting receptors of potential concern can be found in Science Advisory Board for Contaminated Sites in British Columbia, Report on: Detailed Ecological Risk Assessment (DERA) in British Columbia Technical Guidance, September, 2008.
  5. Guidance on the use of weight-of-evidence evaluation under DERA can be found in Science Advisory Board for Contaminated Sites in British Columbia, Report on: Guidance for a Weight of Evidence Approach in Conducting Detailed Ecological Risk Assessments (DERA) in British Columbia, October, 2010.
  6. Ministry of Environment, lands and Parks. Tier 1 Ecological Risk Assessment Policy Decision Summary. Victoria, British Columbia. 1999.
  7. Environment Canada toxicity test protocols are available from the Environment Canada Biological Test Method Series website. Environment Canada. Ottawa, Ontario.
  8. ASTM toxicity testing protocols can be purchased through the ASTM Committee E47 on Biological Effects and Environmental Fate website. American Society for Testing and Materials International. Technical Committee E47 on Biological Effects and Environmental Fate.
", - "type": "content", - "input": false, - "label": "Text/Images", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "json": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "customConditional": "", - "allowMultipleMasks": false, - "customDefaultValue": "", - "allowCalculateOverride": false - } - ], - "errorLabel": "", - "persistent": false, - "properties": {}, - "validateOn": "change", - "clearOnHide": false, - "collapsible": false, - "conditional": { - "eq": "", - "json": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "customConditional": "", - "allowMultipleMasks": false, - "customDefaultValue": "", - "allowCalculateOverride": false - }, - { - "id": "ezcibp", - "key": "simplecontentthree", - "html": "

Part 3. Professional Statements and Signatures 

", - "type": "content", - "input": false, - "label": "Text/Images", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "json": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "customConditional": "", - "allowMultipleMasks": false, - "customDefaultValue": "", - "allowCalculateOverride": false - }, - { - "id": "eb0u9hh", - "key": "ProfessionalStatementsAndSignaturesToBeCompletedByTheQualifiedProfessional", - "tree": false, - "type": "panel", - "input": false, - "label": "", - "theme": "default", - "title": "Section 5 - Professional Statements and Signatures – To be completed by the Qualified Professional", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "collapsed": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "breadcrumb": "default", - "components": [ - { - "id": "eq2zbyua", - "key": "simplecontentthreefive", - "html": "

In accordance with Section 63 of the Contaminated Sites Regulation, I confirm that:

  1. The detailed ecological risk assessment for which this checklist is submitted has been performed in accordance with ministry approved methods, procedures, guidance and standards of professional practice;
  2. The responses provided in this Detailed Ecological Risk Assessment Checklist are true and accurate based on current knowledge as of the date completed; and
  3. I have demonstrable experience in conducting ecological risk assessments and in conducting investigations of the type used to prepare the detailed ecological risk assessment for which this checklist is submitted.
", - "type": "content", - "input": false, - "label": "Text/Images", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "json": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "customConditional": "", - "allowMultipleMasks": false, - "customDefaultValue": "", - "allowCalculateOverride": false - }, - { - "id": "ecuiejf7", - "key": "dataGridtwo", - "tags": [], - "tree": true, - "type": "datagrid", - "input": true, - "label": "Data Grid", - "logic": [], - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "page": "", - "style": "", - "width": "", - "height": "" - }, - "reorder": false, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "json": "", - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "maxLength": "", - "minLength": "", - "customMessage": "", - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": true, - "initEmpty": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "addAnother": "", - "attributes": {}, - "components": [ - { - "id": "e0l905x000000000000000000", - "key": "signatures", - "tags": [], - "tree": false, - "type": "panel", - "input": false, - "label": "Panel", - "logic": [], - "theme": "default", - "title": "Panel", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "page": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": true, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "breadcrumb": "default", - "components": [ - { - "id": "exyyciy", - "key": "simplecolstwo", - "tree": false, - "type": "columns", - "input": false, - "label": "Columns - 2", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "columns": [ - { - "pull": 0, - "push": 0, - "size": "md", - "width": 6, - "offset": 0, - "components": [ - { - "id": "er5fbkl", - "key": "signature", - "tags": [], - "type": "signature", - "input": true, - "label": "Signature", - "logic": [], - "width": "100%", - "footer": "Sign above", - "height": "150px", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": { - "type": "input" - }, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "page": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "maxWidth": "2.5", - "minWidth": "0.5", - "multiple": false, - "penColor": "black", - "redrawOn": "", - "tabindex": "", - "validate": { - "json": "", - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customMessage": "", - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "json": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "Signatures are required for all qualified professionals involved in the application. Add the number of required signature blocks, save the form to PDF and forward it to all parties for signatures and stamps prior to submitting to the ministry.", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "backgroundColor": "rgb(245,245,235)", - "calculateServer": false, - "customConditional": "", - "allowMultipleMasks": false, - "customDefaultValue": "", - "allowCalculateOverride": false - } - ], - "currentWidth": 6 - }, - { - "pull": 0, - "push": 0, - "size": "md", - "width": 6, - "offset": 0, - "components": [ - { - "id": "e8c719m", - "key": "fullname", - "case": "", - "mask": false, - "tags": [], - "type": "textfield", - "input": true, - "label": "Full Name", - "logic": [], - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": { - "type": "input" - }, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "page": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "json": "", - "custom": "", - "unique": false, - "pattern": "", - "multiple": false, - "required": false, - "maxLength": "", - "minLength": "", - "customMessage": "", - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "inputMask": "", - "inputType": "text", - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": true, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "spellcheck": true, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "json": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "inputFormat": "plain", - "placeholder": "", - "autocomplete": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "customConditional": "", - "allowMultipleMasks": false, - "customDefaultValue": "", - "allowCalculateOverride": false - }, - { - "id": "esyr8f", - "key": "datesigned", - "type": "datetime", - "input": true, - "label": "Date Signed", - "format": "yyyy-MM-dd hh:mm a", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": { - "mode": "single", - "type": "calendar", - "format": "yyyy-MM-dd", - "locale": "en", - "maxDate": null, - "minDate": null, - "time_24hr": false, - "allowInput": true, - "enableTime": false, - "noCalendar": false, - "hourIncrement": 1, - "disableWeekdays": false, - "disableWeekends": false, - "minuteIncrement": 1, - "displayInTimezone": "viewer", - "useLocaleSettings": false - }, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "timezone": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customMessage": "", - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "allowInput": true, - "attributes": {}, - "datePicker": { - "maxDate": null, - "maxMode": "year", - "minDate": null, - "minMode": "day", - "initDate": "", - "yearRows": 4, - "showWeeks": true, - "startingDay": 0, - "yearColumns": 5, - "disableWeekdays": false, - "disableWeekends": false - }, - "enableDate": true, - "enableTime": false, - "errorLabel": "", - "persistent": true, - "properties": {}, - "timePicker": { - "hourStep": 1, - "arrowkeys": true, - "minuteStep": 1, - "mousewheel": true, - "showMeridian": true, - "readonlyInput": false - }, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "json": "", - "show": null, - "when": null - }, - "customClass": "", - "defaultDate": "", - "description": "", - "placeholder": "", - "defaultValue": "", - "customOptions": {}, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "datepickerMode": "day", - "calculateServer": false, - "customConditional": "", - "displayInTimezone": "viewer", - "useLocaleSettings": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "allowCalculateOverride": false - } - ], - "currentWidth": 6 - } - ], - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "autoAdjust": false, - "errorLabel": "", - "persistent": false, - "properties": {}, - "validateOn": "change", - "clearOnHide": false, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "allowCalculateOverride": false - } - ], - "errorLabel": "", - "persistent": false, - "properties": {}, - "validateOn": "change", - "clearOnHide": false, - "collapsible": false, - "conditional": { - "eq": "", - "json": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "customConditional": "", - "allowMultipleMasks": false, - "customDefaultValue": "", - "allowCalculateOverride": false - } - ], - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "json": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "layoutFixed": false, - "placeholder": "", - "defaultValue": [ - { - "dateTime": "", - "signature": "", - "textField": "" - } - ], - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "enableRowGroups": false, - "customConditional": "", - "addAnotherPosition": "bottom", - "allowMultipleMasks": false, - "customDefaultValue": "", - "conditionalAddButton": "", - "allowCalculateOverride": false, - "disableAddingRemovingRows": false - }, - { - "id": "esw97xn", - "key": "simplecontentthreesix", - "html": "

NOTE: All signatories to Part 3 are jointly and equally responsible for all risk assessment aspects of the Detailed Ecological Risk Assessment

", - "type": "content", - "input": false, - "label": "Text/Images", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "json": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "customConditional": "", - "allowMultipleMasks": false, - "customDefaultValue": "", - "allowCalculateOverride": false - }, - { - "id": "ezxlc5p", - "key": "simplecolssevenfive", - "tree": false, - "type": "columns", - "input": false, - "label": "Columns - 3", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "columns": [ - { - "pull": 0, - "push": 0, - "size": "md", - "width": 4, - "offset": 0, - "components": [], - "currentWidth": 4 - }, - { - "pull": 0, - "push": 0, - "size": "md", - "width": 4, - "offset": 0, - "components": [ - { - "id": "eb8383", - "key": "simplecontentthreeseven", - "html": "

Apply professional society stamp 

 

 

 

 

 

 

(if applicable)

", - "type": "content", - "input": false, - "label": "Text/Images", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "json": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "customConditional": "", - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "allowCalculateOverride": false - } - ], - "currentWidth": 4 - }, - { - "pull": 0, - "push": 0, - "size": "md", - "width": 4, - "offset": 0, - "components": [], - "currentWidth": 4 - } - ], - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "autoAdjust": false, - "errorLabel": "", - "persistent": false, - "properties": {}, - "validateOn": "change", - "clearOnHide": false, - "conditional": { - "eq": "", - "json": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "customConditional": "", - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "allowCalculateOverride": false - } - ], - "errorLabel": "", - "persistent": false, - "properties": {}, - "validateOn": "change", - "clearOnHide": false, - "collapsible": false, - "conditional": { - "eq": "", - "json": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "customConditional": "", - "allowMultipleMasks": false, - "customDefaultValue": "", - "allowCalculateOverride": false - }, - { - "id": "ea5c3gh", - "key": "submit", - "size": "md", - "tags": [], - "type": "button", - "block": false, - "input": true, - "label": "Save as PDF", - "logic": [], - "theme": "primary", - "action": "custom", - "custom": "window.print();", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": { - "type": "input" - }, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "page": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "leftIcon": "", - "multiple": false, - "redrawOn": "", - "shortcut": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "rightIcon": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": false, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "json": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": true, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "showValidations": false, - "disableOnInvalid": true, - "customConditional": "", - "allowMultipleMasks": false, - "customDefaultValue": "", - "allowCalculateOverride": false - } - ] - } - ] -} \ No newline at end of file diff --git a/forms-flow-ai/epd-forms/bundling/Summary of Site Condition.json b/forms-flow-ai/epd-forms/bundling/Summary of Site Condition.json deleted file mode 100644 index 19a4603c..00000000 --- a/forms-flow-ai/epd-forms/bundling/Summary of Site Condition.json +++ /dev/null @@ -1,44865 +0,0 @@ -{ - "forms": [ - { - "title": "Summary of Site Condition", - "display": "form", - "type": "form", - "name": "soscBundleForm", - "path": "soscbundleform", - "tags": [ - "common" - ], - "components": [ - { - "title": "Reviewer Actions", - "collapsible": false, - "hideLabel": true, - "key": "reviewerActions", - "customConditional": "const UserDetails = JSON.parse(localStorage.getItem(\"UserDetails\"));\r\nconst roles = UserDetails[\"role\"];\r\nif(roles.includes(\"formsflow-client\") || \r\nroles.includes(\"formsflow-reviewer/cssa-team\") || \r\nroles.includes(\"formsflow-reviewer/cssa-manager\")|| \r\nroles.includes(\"formsflow-reviewer/csap\") || \r\nroles.includes(\"formsflow-reviewer/csap-society\") ||\r\nroles.includes(\"formsflow-reviewer/formsflow-client-reviewer\")) {\r\n show = false;\r\n}\r\nelse\r\n{\r\n if (data.riskclassification === \"exempt\") {\r\n show = false;\r\n } else {\r\n show = true;\r\n }\r\n}", - "type": "panel", - "label": "Panel", - "input": false, - "tableView": false, - "components": [ - { - "label": "Columns", - "columns": [ - { - "components": [ - { - "label": "Previous Reviewer", - "action": "custom", - "showValidations": false, - "tableView": false, - "key": "prevReviewer", - "customConditional": "const UserDetails = JSON.parse(localStorage.getItem(\"UserDetails\"))\r\n\r\nconst roles = UserDetails[\"role\"];\r\n\r\n\r\nif(roles.includes(\"formsflow-reviewer\") && \r\n!roles.includes(\"formsflow-reviewer/caseworker\") &&\r\n!(roles.includes(\"formsflow-reviewer/sdm\") && data.typeOfReview === \"applicationViaTheSocietyOfContaminatedSitesApprovedProfessionalsOfBc\")) {\r\n show = true;\r\n}\r\nelse\r\n{\r\n show = false;\r\n}", - "type": "button", - "custom": "const submissionId = form._submission._id;\r\nconst formId = form._submission.form;\r\nconst formDataReqUrl = form.formio?form.formio.formUrl:(localStorage.getItem('customSubmissionUrl')+'/form/'+formId)+'/submission/'+submissionId;\r\nconst filteredData = _.pick(data, data.soscUtilKeys);\r\nconst formDataReqObj1 = { \"_id\": submissionId, \"data\": filteredData};\r\nconst formio = new Formio(formDataReqUrl);\r\nformio.saveSubmission(formDataReqObj1).then( result => {\r\nform.emit('customEvent', {\r\n type: \"actionComplete\", \r\n component: component,\r\n actionType: 'Recheck'\r\n }); \r\n}).catch((error)=>{\r\n//Error callback on not Save\r\nform.emit('customEvent', {\r\n type: \"actionError\", \r\n component: component,\r\n actionType:'Recheck'\r\n }); \r\n});", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": true, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "size": "md", - "leftIcon": "", - "rightIcon": "", - "block": false, - "disableOnInvalid": false, - "theme": "primary", - "id": "egxsp3h" - } - ], - "offset": 0, - "push": 0, - "pull": 0, - "size": "md", - "currentWidth": 3, - "width": 3 - }, - { - "components": [ - { - "label": "Next Reviewer", - "action": "custom", - "showValidations": false, - "tableView": false, - "key": "nextReviewer", - "customConditional": "const UserDetails = JSON.parse(localStorage.getItem(\"UserDetails\"));\r\n\r\nconst roles = UserDetails[\"role\"];\r\n\r\nif(roles.includes(\"formsflow-reviewer/caseworker\")) {\r\n show = true;\r\n}\r\nelse\r\n{\r\n show = false;\r\n}", - "type": "button", - "custom": "const submissionId = form._submission._id;\r\nconst formId = form._submission.form;\r\nconst formDataReqUrl = form.formio?form.formio.formUrl:(localStorage.getItem('customSubmissionUrl')+'/form/'+formId)+'/submission/'+submissionId;\r\n\r\nconst filteredData = _.pick(data, data.soscUtilKeys);\r\n\r\nconst formDataReqObj1 = { \"_id\": submissionId, \"data\": filteredData};\r\nconst formio = new Formio(formDataReqUrl);\r\nformio.saveSubmission(formDataReqObj1).then( result => {\r\nform.emit('customEvent', {\r\n type: \"actionComplete\", \r\n component: component,\r\n actionType: 'Accepted'\r\n }); \r\n}).catch((error)=>{\r\n//Error callback on not Save\r\nform.emit('customEvent', {\r\n type: \"actionError\", \r\n component: component,\r\n actionType:'Accepted'\r\n }); \r\n});", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": true, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "size": "md", - "leftIcon": "", - "rightIcon": "", - "block": false, - "disableOnInvalid": false, - "theme": "primary", - "id": "e8ywitm" - }, - { - "label": "Approved", - "action": "custom", - "showValidations": false, - "tableView": false, - "key": "approved", - "customConditional": "const UserDetails = JSON.parse(localStorage.getItem(\"UserDetails\"));\r\n\r\nconst roles = UserDetails[\"role\"];\r\n\r\nif(roles.includes(\"formsflow-reviewer/sdm\")) {\r\n show = true;\r\n}\r\nelse\r\n{\r\n show = false;\r\n}", - "type": "button", - "custom": "\r\nconst submissionId = form._submission._id;\r\nconst formId = form._submission.form;\r\nconst formDataReqUrl = form.formio?form.formio.formUrl:(localStorage.getItem('customSubmissionUrl')+'/form/'+formId)+'/submission/'+submissionId;\r\nconst filteredData = _.pick(data, data.soscUtilKeys);\r\nconst formDataReqObj1 = { \"_id\": submissionId, \"data\": filteredData};\r\nconst formio = new Formio(formDataReqUrl);\r\nformio.saveSubmission(formDataReqObj1).then( result => {\r\nform.emit('customEvent', {\r\n type: \"actionComplete\", \r\n component: component,\r\n actionType: 'Approved'\r\n }); \r\n}).catch((error)=>{\r\n//Error callback on not Save\r\nform.emit('customEvent', {\r\n type: \"actionError\", \r\n component: component,\r\n actionType:'Approved'\r\n }); \r\n});\r\n", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": true, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "size": "md", - "leftIcon": "", - "rightIcon": "", - "block": false, - "disableOnInvalid": false, - "theme": "primary", - "id": "evn8m09" - } - ], - "width": 3, - "offset": 0, - "push": 0, - "pull": 0, - "size": "md", - "currentWidth": 3 - }, - { - "components": [ - { - "label": "Needs More Info", - "action": "custom", - "showValidations": false, - "theme": "warning", - "disabled": true, - "tableView": false, - "key": "needsMoreInfo", - "customConditional": "const UserDetails = JSON.parse(localStorage.getItem(\"UserDetails\"));\r\nconst roles = UserDetails[\"role\"];\r\nconst taskUrl = window.location.pathname.split('/');\r\nconst taskId = taskUrl[2];\r\nconst authToken = localStorage.getItem(\"authToken\");\r\nconst bpmUrl = localStorage.getItem(\"bpmApiUrl\");\r\nvar reqUrl = bpmUrl + \"/task/\" + taskId + \"/variables\";\r\n\r\n\r\n getData(reqUrl, authToken).then((response) => {\r\n \r\n\t if(roles.includes(\"formsflow-reviewer\")) {\r\n \tvar applicationStatus = response.applicationStatus ? response.applicationStatus.value : '';\r\n \t show = true;\r\n \t \r\n\r\n \t\t\r\n\t if (applicationStatus === 'Resubmit') {\r\n\t component.disabled = true;\r\n\t component.description = 'Disabled since SRCR resubmission in progress';\r\n\t instance.triggerRedraw();\r\n\t } else {\r\n\t component.description = '';\r\n\t component.disabled = false;\r\n\t instance.triggerRedraw();\r\n\t }\r\n\t }\r\n\t else\r\n\t {\r\n \t\tshow = false;\r\n\t }\r\n });\r\n\r\n\r\nasync function getData(reqUrl, authToken) {\r\n const response = await fetch(reqUrl, {\r\n method: \"GET\",\r\n headers: {\r\n \"Content-type\": \"application/json\",\r\n Accept: \"application/json\",\r\n Authorization: \"Bearer \" + authToken,\r\n },\r\n });\r\n const data = await response.json();\r\n return data;\r\n}", - "type": "button", - "custom": "const submissionId = form._submission._id;\r\nconst formId = form._submission.form;\r\nconst formDataReqUrl = form.formio?form.formio.formUrl:(localStorage.getItem('customSubmissionUrl')+'/form/'+formId)+'/submission/'+submissionId;+submissionId;\r\nconst filteredData = _.pick(data, data.soscUtilKeys);\r\nconst formDataReqObj1 = { \"_id\": submissionId, \"data\": filteredData};\r\nconst formio = new Formio(formDataReqUrl);\r\nformio.saveSubmission(formDataReqObj1).then( result => {\r\nform.emit('customEvent', {\r\n type: \"actionComplete\", \r\n component: component,\r\n actionType: 'Returned'\r\n }); \r\n}).catch((error)=>{\r\n//Error callback on not Save\r\nform.emit('customEvent', {\r\n type: \"actionError\", \r\n component: component,\r\n actionType:'Returned'\r\n }); \r\n});", - "input": true, - "redrawOn": "textField", - "keyModified": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "modalEdit": false, - "dataGridLabel": true, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "size": "md", - "leftIcon": "", - "rightIcon": "", - "block": false, - "disableOnInvalid": false, - "id": "e5ues4" - } - ], - "size": "md", - "width": 3, - "offset": 0, - "push": 0, - "pull": 0, - "currentWidth": 3 - }, - { - "components": [ - { - "label": "Reject Form", - "action": "custom", - "showValidations": false, - "theme": "danger", - "tableView": false, - "key": "rejected", - "customConditional": "const UserDetails = JSON.parse(localStorage.getItem(\"UserDetails\"))\r\n\r\nconst roles = UserDetails[\"role\"];\r\n\r\nif(roles.includes(\"formsflow-reviewer\") && \r\n!(roles.includes(\"formsflow-reviewer/csap\") ||\r\nroles.includes(\"formsflow-reviewer/csap-society\"))) {\r\n show = true;\r\n}\r\nelse\r\n{\r\n show = false;\r\n}", - "type": "button", - "custom": "const submissionId = form._submission._id;\r\nconst formId = form._submission.form;\r\nconst formDataReqUrl = form.formio?form.formio.formUrl:(localStorage.getItem('customSubmissionUrl')+'/form/'+formId)+'/submission/'+submissionId;\r\nconst filteredData = _.pick(data, data.soscUtilKeys);\r\nconst formDataReqObj1 = { \"_id\": submissionId, \"data\": filteredData};\r\nconst formio = new Formio(formDataReqUrl);\r\nformio.saveSubmission(formDataReqObj1).then( result => {\r\nform.emit('customEvent', {\r\n type: \"actionComplete\", \r\n component: component,\r\n actionType: 'Rejected'\r\n }); \r\n}).catch((error)=>{\r\n//Error callback on not Save\r\nform.emit('customEvent', {\r\n type: \"actionError\", \r\n component: component,\r\n actionType:'Rejected'\r\n }); \r\n});\r\n", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": true, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "size": "md", - "leftIcon": "", - "rightIcon": "", - "block": false, - "disableOnInvalid": false, - "id": "eeuquma" - } - ], - "size": "md", - "width": 3, - "offset": 0, - "push": 0, - "pull": 0, - "currentWidth": 3 - } - ], - "hideLabel": true, - "key": "columns", - "type": "columns", - "input": false, - "tableView": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "hidden": false, - "clearOnHide": false, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "tree": false, - "lazyLoad": false, - "autoAdjust": false, - "id": "e9sdimc" - } - ], - "keyModified": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "hidden": false, - "clearOnHide": false, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "tree": false, - "lazyLoad": false, - "theme": "default", - "breadcrumb": "default", - "id": "e3fjtw" - }, - { - "title": "Reviewer Actions", - "collapsible": false, - "key": "soscBundleActions", - "customConditional": "\r\nconst UserDetails = JSON.parse(localStorage.getItem(\"UserDetails\"))\r\nconst roles = UserDetails[\"role\"];\r\n\r\nif(roles.includes(\"formsflow-reviewer/cssa-team\") || \r\nroles.includes(\"formsflow-reviewer/cssa-manager\") ||\r\nroles.includes(\"formsflow-reviewer/csap\") || \r\nroles.includes(\"formsflow-reviewer/csap-society\")|| \r\nroles.includes(\"formsflow-reviewer/caseworker\")|| \r\nroles.includes(\"formsflow-reviewer/sdm\")) {\r\n if (data.riskclassification === \"exempt\"){\r\n show = true;\r\n } else {\r\n show = false;\r\n }\r\n}\r\nelse\r\n{\r\n show = false;\r\n}", - "type": "panel", - "label": "Panel", - "input": false, - "tableView": false, - "components": [ - { - "label": "Columns", - "columns": [ - { - "components": [ - { - "label": "Previous Reviewer", - "action": "custom", - "showValidations": false, - "tableView": false, - "key": "sendBundleToPreviousReviewer", - "customConditional": "const UserDetails = JSON.parse(localStorage.getItem(\"UserDetails\"))\r\n\r\n\r\n\r\nconst roles = UserDetails[\"role\"];\r\n\r\n\r\nif(\r\n(roles.includes(\"formsflow-reviewer/csap\") || roles.includes(\"formsflow-reviewer/cssa-team\")) && \r\n(data.applicationStatus===\"New\" || data.applicationStatus===\"Resubmitted\" || data.applicationStatus===\"Recheck\") \r\n) {\r\n show = false;\r\n}\r\nelse\r\n{\r\n show = true;\r\n}", - "type": "button", - "custom": "form.emit('customEvent', {\r\n type: \"actionComplete\", \r\n component: component,\r\n actionType:'Recheck'\r\n });", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": true, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "size": "md", - "leftIcon": "", - "rightIcon": "", - "block": false, - "disableOnInvalid": false, - "theme": "primary", - "id": "e9xv8c" - } - ], - "width": 3, - "offset": 0, - "push": 0, - "pull": 0, - "size": "md", - "currentWidth": 3 - }, - { - "components": [ - { - "label": "Next Reviewer", - "action": "custom", - "showValidations": false, - "tableView": false, - "key": "sendBundleToNextReviewer", - "customConditional": "\r\nconst UserDetails = JSON.parse(localStorage.getItem(\"UserDetails\"))\r\n\r\n\r\n\r\nconst roles = UserDetails[\"role\"];\r\n\r\n\r\nif(roles.includes(\"formsflow-reviewer/cssa-team\") || \r\nroles.includes(\"formsflow-reviewer/cssa-manager\") || \r\nroles.includes(\"formsflow-reviewer/csap\") || \r\nroles.includes(\"formsflow-reviewer/csap-society\") || \r\nroles.includes(\"formsflow-reviewer/caseworker\")) {\r\n show = true;\r\n}\r\nelse\r\n{\r\n show = false;\r\n}", - "type": "button", - "custom": "const UserDetails = JSON.parse(localStorage.getItem(\"UserDetails\"))\r\nconst roles = UserDetails[\"role\"];\r\nif(roles.includes(\"formsflow-reviewer/cssa-manager\") && \r\n(data.selectSoscSdm===''||data.selectSoscSdm===undefined|| \r\n(data.typeOfReview==='directToMinistryApplication'&&data.selectSoscCaseworker===undefined|| data.selectSoscCaseworker==='')))\r\n{\r\n alert('Please assign reviewers to continue!');\r\n \r\n}\r\nelse\r\n{\r\n form.emit('customEvent', {\r\n type: \"actionComplete\", \r\n component: component,\r\n actionType:'Accepted'\r\n });\r\n}", - "input": true, - "keyModified": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": true, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "size": "md", - "leftIcon": "", - "rightIcon": "", - "block": false, - "disableOnInvalid": false, - "theme": "primary", - "id": "e5d0iuo" - }, - { - "label": "Approved", - "action": "custom", - "showValidations": false, - "tableView": false, - "key": "approveBundle", - "customConditional": "const UserDetails = JSON.parse(localStorage.getItem(\"UserDetails\"))\r\n\r\n\r\n\r\nconst roles = UserDetails[\"role\"];\r\n\r\n\r\nif(roles.includes(\"formsflow-reviewer/sdm\")) {\r\n show = true;\r\n}\r\nelse\r\n{\r\n show = false;\r\n}", - "type": "button", - "custom": "\r\nform.emit('customEvent', {\r\n type: \"actionComplete\", \r\n component: component,\r\n actionType: 'Approved'\r\n})", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": true, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "size": "md", - "leftIcon": "", - "rightIcon": "", - "block": false, - "disableOnInvalid": false, - "theme": "primary", - "id": "eu9gwi" - } - ], - "width": 3, - "offset": 0, - "push": 0, - "pull": 0, - "size": "md", - "currentWidth": 3 - }, - { - "components": [ - { - "label": "Needs More Info", - "action": "custom", - "showValidations": false, - "theme": "warning", - "tableView": false, - "key": "sendBundleToApplicant", - "customConditional": "const UserDetails = JSON.parse(localStorage.getItem(\"UserDetails\"))\r\nconst roles = UserDetails[\"role\"];\r\n\r\nif(roles.includes(\"formsflow-reviewer/cssa-manager\")) {\r\n show = false;\r\n}\r\nelse\r\n{\r\n show = true;\r\n}", - "type": "button", - "custom": "form.emit('customEvent', {\r\n type: \"actionComplete\", \r\n component: component,\r\n actionType:'Returned'\r\n });", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": true, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "size": "md", - "leftIcon": "", - "rightIcon": "", - "block": false, - "disableOnInvalid": false, - "id": "esfoixl" - } - ], - "size": "md", - "width": 3, - "offset": 0, - "push": 0, - "pull": 0, - "currentWidth": 3 - }, - { - "components": [ - { - "label": "Reject Form", - "action": "custom", - "showValidations": false, - "theme": "danger", - "tableView": false, - "key": "rejectBundle", - "customConditional": "const UserDetails = JSON.parse(localStorage.getItem(\"UserDetails\"))\r\n\r\nconst roles = UserDetails[\"role\"];\r\n\r\nif(roles.includes(\"formsflow-reviewer\") && \r\n!(roles.includes(\"formsflow-reviewer/cssa-manager\") || \r\nroles.includes(\"formsflow-reviewer/csap\") ||\r\nroles.includes(\"formsflow-reviewer/csap-society\"))) {\r\n show = true;\r\n}\r\nelse\r\n{\r\n show = false;\r\n}", - "type": "button", - "custom": "\r\nform.emit('customEvent', {\r\n type: \"actionComplete\", \r\n component: component,\r\n actionType: 'Rejected'\r\n}); ", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": true, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "size": "md", - "leftIcon": "", - "rightIcon": "", - "block": false, - "disableOnInvalid": false, - "id": "eh5xh0h" - } - ], - "size": "md", - "width": 3, - "offset": 0, - "push": 0, - "pull": 0, - "currentWidth": 3 - } - ], - "key": "columns", - "type": "columns", - "input": false, - "tableView": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "hidden": false, - "clearOnHide": false, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "tree": false, - "lazyLoad": false, - "autoAdjust": false, - "id": "epe166" - } - ], - "keyModified": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "hidden": false, - "clearOnHide": false, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "tree": false, - "lazyLoad": false, - "theme": "default", - "breadcrumb": "default", - "id": "eiaowx6" - }, - { - "label": "Edit Grid", - "labelPosition": "top", - "description": "", - "tooltip": "", - "customClass": "", - "tabindex": "", - "openWhenEmpty": false, - "disableAddingRemovingRows": false, - "conditionalAddButton": "", - "hidden": false, - "hideLabel": true, - "autofocus": false, - "disabled": false, - "tableView": true, - "modalEdit": false, - "templates": { - "header": "\r\n{% console.log(\"row-key header\",'commentFor',row['commentFor']) %}\r\n{% const UserDetails = JSON.parse(localStorage.getItem(\"UserDetails\"))%}\r\n{% const groups = UserDetails[\"groups\"]; %}\r\n\r\n{% if(groups.includes(\"/formsflow/formsflow-reviewer/formsflow-client-reviewer\") || groups.includes(\"/formsflow/formsflow-reviewer/lrs-approving-authority\") || groups.includes(\"/formsflow/formsflow-client\")){ %}\r\n\r\n
\r\n {% util.eachComponent(components, function(component) { %}\r\n {% if (displayValue(component) && component.key !== 'commentFor' ) { %}\r\n {% if(component.label === 'Notes') { %}\r\n
{{ t(component.label) }}
\r\n {% } else if(component.key !== 'comments') { %}\r\n
{{ t(component.label) }}
\r\n {% } %}\r\n {% } %}\r\n {% }) %}\r\n
\r\n\r\n{% } else { %}\r\n\r\n
\r\n {% util.eachComponent(components, function(component) { %}\r\n {% if (displayValue(component)) { %}\r\n {% if(component.key == 'comments') { %}\r\n
{{ t(component.label)}}
\r\n{% } else { %}\r\n
{{ t(component.label)}}
\r\n{% } %} \r\n {% } %}\r\n {% }) %}\r\n
\r\n\r\n{% } %}", - "tableHeader": "\n
\n {% util.eachComponent(components, function(component) { %}\n {% if (!component.hasOwnProperty('tableView') || component.tableView) { %}\n \n {% } %}\n {% }) %}\n {% if (!instance.options.readOnly && !instance.disabled) { %}\n \n {% } %}\n \n ", - "row": "{% console.log(\"row-key main\",'commentFor',row['commentFor']) %}\r\n{% const UserDetails = JSON.parse(localStorage.getItem(\"UserDetails\"))%}\r\n{% const groups = UserDetails[\"groups\"]; %}\r\n\r\n{% if((groups.includes(\"/formsflow/formsflow-reviewer/formsflow-client-reviewer\") || groups.includes(\"/formsflow/formsflow-reviewer/lrs-approving-authority\") || groups.includes(\"/formsflow/formsflow-client\")) && row['commentFor']==='external'){ %}\r\n\r\n\r\n\r\n
\r\n\r\n {% util.eachComponent(components, function(component) { %}\r\n {% if (displayValue(component) && component.key !== 'commentFor' ) { %}\r\n {% console.log(\"row-key\",component.key,row[component.key]) %}\r\n {% const UserDetails = JSON.parse(localStorage.getItem(\"UserDetails\"))%}\r\n{% const groups = UserDetails[\"groups\"]; %}\r\n{% if((groups.includes(\"/formsflow/formsflow-reviewer/formsflow-client-reviewer\") || groups.includes(\"/formsflow/formsflow-reviewer/lrs-approving-authority\") || groups.includes(\"/formsflow/formsflow-client\")) && row['commentFor']==='external'){ %}\r\n{% if(component.key == 'comments') { %}\r\n
\r\n {{ getView(component, row[component.key])}}\r\n
\r\n{% } else { %}\r\n
\r\n {{ getView(component, row[component.key])}}\r\n
\r\n{%}%}\r\n \r\n\r\n {% } %}\r\n {% } %}\r\n {% }) %}\r\n {% if (!instance.options.readOnly && !instance.disabled) { %}\r\n {% const UserDetails = JSON.parse(localStorage.getItem(\"UserDetails\"))%}\r\n{% const groups = UserDetails[\"groups\"]; %}\r\n{% if((groups.includes(\"/formsflow/formsflow-reviewer/formsflow-client-reviewer\") || groups.includes(\"/formsflow/formsflow-reviewer/lrs-approving-authority\") || groups.includes(\"/formsflow/formsflow-client\")) && row['commentFor']==='external'){ %}\r\n
\r\n
\r\n \r\n {% if (!instance.hasRemoveButtons || instance.hasRemoveButtons()) { %}\r\n \r\n {% } %}\r\n
\r\n
\r\n \r\n {% } %}\r\n {% } %}\r\n
\r\n {% } else if (groups.includes(\"/formsflow/formsflow-reviewer/site-information-advisor\")) { %}\r\n
\r\n {% util.eachComponent(components, function(component) { %}\r\n {% console.log('for sia') %}\r\n {% if (displayValue(component)) { %}\r\n {% if(component.key == 'comments') { %}\r\n
{{ getView(component, row[component.key])}}
\r\n{% } else { %}\r\n
{{ getView(component, row[component.key])}}
\r\n{% } %} \r\n \r\n {% } %}\r\n {% }) %}\r\n {% if (!instance.options.readOnly && !instance.disabled) { %}\r\n
\r\n
\r\n \r\n {% if (!instance.hasRemoveButtons || instance.hasRemoveButtons()) { %}\r\n \r\n {% } %}\r\n
\r\n
\r\n {% } %}\r\n
\r\n {% } %}\r\n \r\n \r\n \r\n{% const emptyElements = []; %}\r\n{% const elements = document.getElementsByClassName(\"list-group-item\"); %}\r\n{% for (let i = 0; i < elements.length; i++) { %}\r\n{% const element = elements[i]; %}\r\n{% if(element.querySelectorAll('div.row').length===0){(element).remove() }} %}", - "tableRow": "\n {% util.eachComponent(components, function(component) { %}\n {% if (!component.hasOwnProperty('tableView') || component.tableView) { %}\n \n {% } %}\n {% }) %}\n {% if (!instance.options.readOnly && !instance.disabled) { %}\n \n {% } %}\n ", - "footer": "" - }, - "rowClass": "", - "addAnother": "", - "modal": false, - "saveRow": "", - "removeRow": "Cancel", - "persistent": true, - "inlineEdit": false, - "protected": false, - "dbIndex": false, - "encrypted": false, - "redrawOn": "", - "clearOnHide": true, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "allowCalculateOverride": false, - "validateOn": "change", - "validate": { - "required": false, - "customMessage": "", - "custom": "const emptyElements = [];\r\nconst elements = document.getElementsByClassName(\"list-group-item\");\r\nfor (let i = 0; i < elements.length; i++) {\r\nconst element = elements[i];\r\nif(element.querySelectorAll('div.row').length===0){(element).remove() }\r\n \r\n}\r\n\r\n\r\nvar b =JSON.parse(localStorage.getItem('UserDetails'))\r\nif(b.groups.indexOf('/formsflow/formsflow-client') > -1 || b.groups.indexOf('/formsflow/formsflow-reviewer/lrs-approving-authority') > -1 || b.groups.indexOf('/formsflow/formsflow-reviewer/formsflow-client-reviewer') > -1 )\r\n{\r\ndocument.querySelector(\"[ref='editgrid-notesSOSC-addRow']\").remove();\r\nvar editButtons = document.querySelectorAll('button.btn.btn-default.btn-light.btn-sm.editRow');\r\nfor(i=0;ix.commentFor==='external').length > 0)\r\nshow = true;\r\nelse\r\nshow = false;\r\n}\r\nelse\r\n{\r\n show = true;\r\n}\r\n", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "editgrid", - "displayAsTable": false, - "input": true, - "components": [ - { - "label": "Columns", - "columns": [ - { - "components": [ - { - "label": "Notes", - "autoExpand": false, - "tableView": true, - "key": "notesSOSC", - "type": "textarea", - "input": true, - "keyModified": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "", - "minWords": "", - "maxWords": "" - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "html", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "rows": 3, - "wysiwyg": false, - "editor": "", - "fixedSize": true, - "id": "ewhsx7p" - } - ], - "width": 4, - "offset": 0, - "push": 0, - "pull": 0, - "size": "md", - "currentWidth": 4 - }, - { - "components": [ - { - "label": "Visibility", - "optionsLabelPosition": "right", - "inline": false, - "tableView": true, - "defaultValue": "internal", - "values": [ - { - "label": "Internal", - "value": "internal", - "shortcut": "" - }, - { - "label": "External", - "value": "external", - "shortcut": "" - } - ], - "key": "commentFor", - "type": "radio", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "onlyAvailableItems": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "inputType": "radio", - "fieldSet": false, - "id": "eg6l854" - } - ], - "width": 2, - "offset": 0, - "push": 0, - "pull": 0, - "size": "md", - "currentWidth": 2 - }, - { - "components": [ - { - "label": "Role", - "disabled": true, - "tableView": true, - "customDefaultValue": "var b =JSON.parse(localStorage.getItem('UserDetails'))\r\nif(b.groups.indexOf('/formsflow/formsflow-client') > -1 )\r\n{\r\n value = 'Client'\r\n}\r\nelse if(b.groups.indexOf('/formsflow/formsflow-reviewer/site-information-advisor') > -1 )\r\n{\r\n value = 'SIA'\r\n}", - "key": "role", - "type": "textfield", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "autofocus": false, - "dbIndex": false, - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "esrtubp" - } - ], - "size": "md", - "width": 2, - "offset": 0, - "push": 0, - "pull": 0, - "currentWidth": 2 - }, - { - "components": [ - { - "label": "Created By", - "disabled": true, - "tableView": true, - "customDefaultValue": "value = JSON.parse( localStorage.UserDetails).name ", - "key": "createdBy", - "type": "textfield", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "autofocus": false, - "dbIndex": false, - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "elcgok" - } - ], - "size": "md", - "width": 2, - "offset": 0, - "push": 0, - "pull": 0, - "currentWidth": 2 - }, - { - "components": [ - { - "label": "Created At", - "disabled": true, - "tableView": true, - "customDefaultValue": "value = (new Date()).toLocaleDateString() + ' At ' + (new Date()).toLocaleTimeString()", - "key": "createdAt", - "type": "textfield", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "autofocus": false, - "dbIndex": false, - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "emurgb" - } - ], - "size": "md", - "width": 2, - "offset": 0, - "push": 0, - "pull": 0, - "currentWidth": 2 - } - ], - "key": "columns", - "type": "columns", - "input": false, - "tableView": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "hidden": false, - "clearOnHide": false, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "tree": false, - "lazyLoad": false, - "autoAdjust": false, - "id": "e4fbc5e" - } - ], - "keyModified": true, - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "unique": false, - "refreshOn": "", - "dataGridLabel": false, - "widget": null, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "tree": true, - "lazyLoad": false, - "defaultOpen": false, - "id": "e6vzi4" - }, - { - "title": "Assign Reviewers", - "collapsible": true, - "key": "soscReviewerAssignment", - "customConditional": " if (data.riskclassification === \"exempt\"){\r\n const UserDetails = JSON.parse(localStorage.getItem(\"UserDetails\"))\r\n const roles = UserDetails[\"role\"];\r\n \r\n if(roles.includes(\"formsflow-reviewer/cssa-manager\")) {\r\n show = true;\r\n }\r\n else\r\n {\r\n show = false;\r\n }\r\n} else {\r\n show = false;\r\n}", - "type": "panel", - "label": "", - "collapsed": false, - "input": false, - "tableView": false, - "components": [ - { - "label": "Columns", - "columns": [ - { - "components": [ - { - "label": "Select SDM", - "widget": "choicesjs", - "tableView": true, - "dataSrc": "url", - "data": { - "url": "{{localStorage.getItem('formsflow.ai.api.url')}}/user?memberOfGroup=formsflow/formsflow-reviewer/sdm", - "headers": [ - { - "key": "Authorization", - "value": "Bearer {{localStorage.getItem(\"authToken\")}}" - }, - { - "key": "Content-type", - "value": "application/json" - }, - { - "key": "Accept", - "value": "application/json" - } - ], - "values": [ - { - "label": "", - "value": "" - } - ], - "json": "", - "resource": "", - "custom": "" - }, - "dataType": "string", - "valueProperty": "username", - "template": "{{ item.lastName }}, {{ item.firstName }}", - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "onlyAvailableItems": false - }, - "key": "selectSoscSdm", - "type": "select", - "selectValues": "data", - "disableLimit": false, - "input": true, - "keyModified": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "idPath": "id", - "clearOnRefresh": false, - "limit": 100, - "lazyLoad": true, - "filter": "", - "searchEnabled": true, - "searchDebounce": 0.3, - "searchField": "", - "minSearch": 0, - "readOnlyValue": false, - "authenticate": false, - "ignoreCache": false, - "selectFields": "", - "selectThreshold": 0.3, - "uniqueOptions": false, - "fuseOptions": { - "include": "score", - "threshold": 0.3 - }, - "indexeddb": { - "filter": {} - }, - "customOptions": {}, - "useExactSearch": false, - "id": "e9csp3n" - } - ], - "width": 4, - "offset": 0, - "push": 0, - "pull": 0, - "size": "md", - "currentWidth": 4 - }, - { - "components": [ - { - "label": "Select Caseworker", - "widget": "choicesjs", - "tableView": true, - "dataSrc": "url", - "data": { - "url": "{{localStorage.getItem('formsflow.ai.api.url')}}/user?memberOfGroup=formsflow/formsflow-reviewer/caseworker", - "headers": [ - { - "key": "Authorization", - "value": "Bearer {{localStorage.getItem(\"authToken\")}}" - }, - { - "key": "Content-type", - "value": "application/json" - }, - { - "key": "Accept", - "value": "application/json" - } - ], - "values": [ - { - "label": "", - "value": "" - } - ], - "json": "", - "resource": "", - "custom": "" - }, - "dataType": "string", - "valueProperty": "username", - "template": "{{ item.lastName }}, {{ item.firstName }}", - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "onlyAvailableItems": false - }, - "key": "selectSoscCaseworker", - "customConditional": "if (data.typeOfReview==='applicationViaTheSocietyOfContaminatedSitesApprovedProfessionalsOfBc')\n{\n show = false;\n}\nelse {\n show = true;\n}", - "type": "select", - "selectValues": "data", - "disableLimit": false, - "input": true, - "keyModified": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "idPath": "id", - "clearOnRefresh": false, - "limit": 100, - "lazyLoad": true, - "filter": "", - "searchEnabled": true, - "searchDebounce": 0.3, - "searchField": "", - "minSearch": 0, - "readOnlyValue": false, - "authenticate": false, - "ignoreCache": false, - "selectFields": "", - "selectThreshold": 0.3, - "uniqueOptions": false, - "fuseOptions": { - "include": "score", - "threshold": 0.3 - }, - "indexeddb": { - "filter": {} - }, - "customOptions": {}, - "useExactSearch": false, - "id": "e8pinfp" - } - ], - "width": 4, - "offset": 0, - "push": 0, - "pull": 0, - "size": "md", - "currentWidth": 4 - }, - { - "components": [], - "size": "md", - "width": 4, - "offset": 0, - "push": 0, - "pull": 0, - "currentWidth": 4 - } - ], - "key": "columns3", - "type": "columns", - "input": false, - "tableView": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "hidden": false, - "clearOnHide": false, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "tree": false, - "lazyLoad": false, - "autoAdjust": false, - "id": "ejnemx9" - } - ], - "keyModified": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "hidden": false, - "clearOnHide": false, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "tree": false, - "lazyLoad": false, - "theme": "default", - "breadcrumb": "default", - "id": "ecgbuxt" - }, - { - "label": "hiddenUserIdForFormSharingApplicantAsOwner", - "customClass": "", - "modalEdit": false, - "defaultValue": null, - "persistent": true, - "protected": false, - "dbIndex": false, - "encrypted": false, - "redrawOn": "", - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "key": "hiddenUserIdForFormSharingApplicantAsOwner", - "tags": [], - "properties": {}, - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "hidden", - "input": true, - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "unique": false, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "tableView": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "widget": { - "type": "input" - }, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "allowCalculateOverride": false, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "inputType": "hidden", - "id": "e51bxw" - }, - { - "label": "hiddenUserIdForFormSharingWithDiffOwner", - "customClass": "", - "modalEdit": false, - "defaultValue": null, - "persistent": true, - "protected": false, - "dbIndex": false, - "encrypted": false, - "redrawOn": "", - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "key": "hiddenUserIdForFormSharingWithDiffOwner", - "tags": [], - "properties": {}, - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "hidden", - "input": true, - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "unique": false, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "tableView": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "widget": { - "type": "input" - }, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "allowCalculateOverride": false, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "inputType": "hidden", - "id": "eia0fkf" - }, - { - "html": "

Part 1  - Contact Information

", - "label": "Content", - "customClass": "", - "refreshOnChange": false, - "hidden": false, - "modalEdit": false, - "key": "content3", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "content", - "input": false, - "tableView": false, - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "id": "e7c7u3u" - }, - { - "key": "Section1-ContactInformation", - "type": "panel", - "input": false, - "label": "", - "title": "Section I - CONTACT INFORMATION", - "collapsed": false, - "tableView": false, - "components": [ - { - "key": "siteOwnerOrOperator", - "type": "panel", - "input": false, - "label": "Panel", - "title": "Site Owner or Operator", - "hideLabel": true, - "tableView": false, - "components": [ - { - "key": "Section1A-NameColumn", - "type": "columns", - "input": false, - "label": "Columns - 2", - "columns": [ - { - "pull": 0, - "push": 0, - "size": "md", - "width": 6, - "offset": 0, - "components": [ - { - "key": "Section1A-LastName", - "type": "textfield", - "input": true, - "label": "Last Name", - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "tableView": false, - "hideOnChildrenHidden": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "ekh7nj9" - } - ], - "currentWidth": 6 - }, - { - "pull": 0, - "push": 0, - "size": "md", - "width": 6, - "offset": 0, - "components": [ - { - "key": "Section1A-FirstName", - "type": "textfield", - "input": true, - "label": "First Name", - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "tableView": false, - "hideOnChildrenHidden": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "euc0sw" - } - ], - "currentWidth": 6 - } - ], - "tableView": false, - "hideOnChildrenHidden": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "hidden": false, - "clearOnHide": false, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "tree": false, - "lazyLoad": false, - "autoAdjust": false, - "id": "euaafu" - }, - { - "key": "Section1A-Company", - "type": "textfield", - "input": true, - "label": "Company, if applicable", - "tableView": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "effeqnf" - }, - { - "key": "Section1A-AddressColumn3", - "type": "columns", - "input": false, - "label": "Columns - 2", - "columns": [ - { - "pull": 0, - "push": 0, - "size": "md", - "width": 6, - "offset": 0, - "components": [ - { - "key": "Section1A-Address", - "type": "textfield", - "input": true, - "label": "Address", - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "tableView": false, - "hideOnChildrenHidden": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "e2utqz" - } - ], - "currentWidth": 6 - }, - { - "pull": 0, - "push": 0, - "size": "md", - "width": 6, - "offset": 0, - "components": [ - { - "key": "Section1A-City", - "type": "textfield", - "input": true, - "label": "City", - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "tableView": false, - "hideOnChildrenHidden": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "e5u2rue" - } - ], - "currentWidth": 6 - } - ], - "tableView": false, - "hideOnChildrenHidden": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "hidden": false, - "clearOnHide": false, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "tree": false, - "lazyLoad": false, - "autoAdjust": false, - "id": "emhj7ub" - }, - { - "key": "Section1A-AddressColumn", - "type": "columns", - "input": false, - "label": "Columns - 3", - "columns": [ - { - "pull": 0, - "push": 0, - "size": "md", - "width": 4, - "offset": 0, - "components": [ - { - "key": "Section1A-ProvinceState", - "type": "textfield", - "input": true, - "label": "Province", - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "tableView": false, - "hideOnChildrenHidden": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "ea49wil" - } - ], - "currentWidth": 4 - }, - { - "pull": 0, - "push": 0, - "size": "md", - "width": 4, - "offset": 0, - "components": [ - { - "key": "Section1A-Country", - "type": "textfield", - "input": true, - "label": "Country", - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "tableView": false, - "hideOnChildrenHidden": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "elb9xr8" - } - ], - "currentWidth": 4 - }, - { - "pull": 0, - "push": 0, - "size": "md", - "width": 4, - "offset": 0, - "components": [ - { - "key": "Section1A-PostalZipCode", - "type": "textfield", - "input": true, - "label": "Postal Code", - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "tableView": false, - "hideOnChildrenHidden": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "etaog87" - } - ], - "currentWidth": 4 - } - ], - "tableView": false, - "hideOnChildrenHidden": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "hidden": false, - "clearOnHide": false, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "tree": false, - "lazyLoad": false, - "autoAdjust": false, - "id": "ewwkail" - }, - { - "key": "Section1A-ContactInfoColumn", - "type": "columns", - "input": false, - "label": "Columns - 2", - "columns": [ - { - "pull": 0, - "push": 0, - "size": "md", - "width": 6, - "offset": 0, - "components": [ - { - "key": "phoneNumber2", - "type": "textfield", - "input": true, - "label": "Phone Number", - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "tableView": false, - "hideOnChildrenHidden": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "eunnqpj" - } - ], - "currentWidth": 6 - }, - { - "pull": 0, - "push": 0, - "size": "md", - "width": 6, - "offset": 0, - "components": [ - { - "label": "Email", - "tableView": true, - "validate": { - "required": true, - "custom": "\r\nvar currentValue = input;\r\nfetch('https://forms-flow-api-e38158-dev.apps.silver.devops.gov.bc.ca/user?memberOfGroup=formsflow%2Fformsflow-reviewer%2Fformsflow-client-reviewer',\r\n{'headers':{ 'authorization': 'Bearer '+localStorage.getItem('authToken')},'mode':'cors'})\r\n.then((p)=> {return p.json();}).\r\nthen((x)=>{\r\n data.hiddenUserIdForFormSharing = '' ;\r\n x.find((y)=>{ if( y.email=== currentValue ) \r\n { data.hiddenUserIdForFormSharing = y.id}\r\n\r\n })\r\n\r\n if(data.hiddenUserIdForFormSharing==='')\r\n {\r\n valid = 'Unable to find user with provided email address';\r\n }\r\n else\r\n {\r\n valid = true;\r\n }\r\n\r\n});", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "key": "ownerEmailAddress", - "type": "email", - "input": true, - "delimiter": false, - "requireDecimal": false, - "hideOnChildrenHidden": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "email", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "kickbox": { - "enabled": false - }, - "id": "ewvvqh" - } - ], - "currentWidth": 6 - } - ], - "tableView": false, - "hideOnChildrenHidden": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "hidden": false, - "clearOnHide": false, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "tree": false, - "lazyLoad": false, - "autoAdjust": false, - "id": "eeq9dzs" - }, - { - "label": "Is applicant same as above?", - "optionsLabelPosition": "right", - "inline": false, - "tableView": false, - "values": [ - { - "label": "Yes", - "value": "true", - "shortcut": "" - }, - { - "label": "No", - "value": "false", - "shortcut": "" - } - ], - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "onlyAvailableItems": false - }, - "key": "isApplicantSameAsAbove", - "type": "radio", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "inputType": "radio", - "fieldSet": false, - "id": "enx9oad" - } - ], - "collapsible": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "hidden": false, - "clearOnHide": false, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "tree": false, - "lazyLoad": false, - "theme": "default", - "breadcrumb": "default", - "id": "evm4w5b" - }, - { - "title": "Applicant", - "theme": "default", - "tooltip": "", - "customClass": "", - "collapsible": false, - "hidden": false, - "hideLabel": false, - "disabled": false, - "modalEdit": false, - "key": "applicant", - "tags": [], - "properties": {}, - "customConditional": "", - "conditional": { - "json": "", - "show": true, - "when": "isApplicantSameAsAbove", - "eq": "false" - }, - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "panel", - "label": "Panel", - "breadcrumb": "default", - "tabindex": "", - "input": false, - "tableView": false, - "components": [ - { - "key": "Section1C-NameColumn", - "type": "columns", - "input": false, - "label": "Columns - 2", - "columns": [ - { - "pull": 0, - "push": 0, - "size": "md", - "width": 6, - "offset": 0, - "components": [ - { - "key": "Section1C-LastName", - "type": "textfield", - "input": true, - "label": "Last Name", - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "tableView": false, - "hideOnChildrenHidden": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "e40la5k" - } - ], - "currentWidth": 6 - }, - { - "pull": 0, - "push": 0, - "size": "md", - "width": 6, - "offset": 0, - "components": [ - { - "key": "Section1C-FirstName", - "type": "textfield", - "input": true, - "label": "First Name", - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "tableView": false, - "hideOnChildrenHidden": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "e0oy6rg" - } - ], - "currentWidth": 6 - } - ], - "tableView": false, - "hideOnChildrenHidden": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "hidden": false, - "clearOnHide": false, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "tree": false, - "lazyLoad": false, - "autoAdjust": false, - "id": "e9ur3d" - }, - { - "key": "Section1C-Company", - "type": "textfield", - "input": true, - "label": "Company, if applicable", - "tableView": false, - "hideOnChildrenHidden": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "eikmhmk" - }, - { - "key": "Section1C-AddressColumn", - "type": "columns", - "input": false, - "label": "Columns - 2", - "columns": [ - { - "pull": 0, - "push": 0, - "size": "md", - "width": 6, - "offset": 0, - "components": [ - { - "key": "Section1C-Address", - "type": "textfield", - "input": true, - "label": "Address", - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "tableView": false, - "hideOnChildrenHidden": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "efojt6s" - } - ], - "currentWidth": 6 - }, - { - "pull": 0, - "push": 0, - "size": "md", - "width": 6, - "offset": 0, - "components": [ - { - "key": "Section1C-City", - "type": "textfield", - "input": true, - "label": "City", - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "tableView": false, - "hideOnChildrenHidden": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "e59u27" - } - ], - "currentWidth": 6 - } - ], - "tableView": false, - "hideOnChildrenHidden": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "hidden": false, - "clearOnHide": false, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "tree": false, - "lazyLoad": false, - "autoAdjust": false, - "id": "eigg0un" - }, - { - "key": "Section1A-AddressColumn2", - "type": "columns", - "input": false, - "label": "Columns - 3", - "columns": [ - { - "pull": 0, - "push": 0, - "size": "md", - "width": 4, - "offset": 0, - "components": [ - { - "key": "Section1A-ProvinceState2", - "type": "textfield", - "input": true, - "label": "Province", - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "tableView": false, - "hideOnChildrenHidden": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "efyqlzn" - } - ], - "currentWidth": 4 - }, - { - "pull": 0, - "push": 0, - "size": "md", - "width": 4, - "offset": 0, - "components": [ - { - "key": "Section1A-Country2", - "type": "textfield", - "input": true, - "label": "Country", - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "tableView": false, - "hideOnChildrenHidden": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "edhcyho" - } - ], - "currentWidth": 4 - }, - { - "pull": 0, - "push": 0, - "size": "md", - "width": 4, - "offset": 0, - "components": [ - { - "key": "Section1A-PostalZipCode2", - "type": "textfield", - "input": true, - "label": "Postal Code", - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "tableView": false, - "hideOnChildrenHidden": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "e3mm0qo" - } - ], - "currentWidth": 4 - } - ], - "tableView": false, - "hideOnChildrenHidden": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "hidden": false, - "clearOnHide": false, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "tree": false, - "lazyLoad": false, - "autoAdjust": false, - "id": "elurmt" - }, - { - "key": "Section1C-ContactInfoColumn", - "type": "columns", - "input": false, - "label": "Columns - 2", - "columns": [ - { - "pull": 0, - "push": 0, - "size": "md", - "width": 6, - "offset": 0, - "components": [ - { - "key": "phoneNumber", - "type": "textfield", - "input": true, - "label": "Phone Number", - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "tableView": false, - "hideOnChildrenHidden": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "eidhmy6" - } - ], - "currentWidth": 6 - }, - { - "pull": 0, - "push": 0, - "size": "md", - "width": 6, - "offset": 0, - "components": [ - { - "label": "Email", - "tableView": true, - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "key": "contactPersonEmailAddress", - "type": "email", - "input": true, - "delimiter": false, - "requireDecimal": false, - "hideOnChildrenHidden": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "email", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "kickbox": { - "enabled": false - }, - "id": "ee0ed8f" - } - ], - "currentWidth": 6 - } - ], - "tableView": false, - "hideOnChildrenHidden": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "hidden": false, - "clearOnHide": false, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "tree": false, - "lazyLoad": false, - "autoAdjust": false, - "id": "ebgnl1p" - }, - { - "label": "Is the agent same as the applicant?", - "optionsLabelPosition": "right", - "inline": false, - "tableView": false, - "values": [ - { - "label": "Yes", - "value": "true", - "shortcut": "" - }, - { - "label": "No", - "value": "false", - "shortcut": "" - } - ], - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "onlyAvailableItems": false - }, - "key": "isApplicantSameAsAbove1", - "conditional": { - "show": true, - "when": "isApplicantSameAsAbove", - "eq": "false" - }, - "type": "radio", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "inputType": "radio", - "fieldSet": false, - "id": "et6b04k" - } - ], - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "clearOnHide": false, - "refreshOn": "", - "redrawOn": "", - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "tree": false, - "lazyLoad": false, - "id": "er3axs" - }, - { - "title": "Agent", - "theme": "default", - "tooltip": "", - "customClass": "", - "collapsible": false, - "hidden": false, - "hideLabel": false, - "disabled": false, - "modalEdit": false, - "key": "panel", - "tags": [], - "properties": {}, - "customConditional": "", - "conditional": { - "json": "", - "show": true, - "when": "isApplicantSameAsAbove1", - "eq": "false" - }, - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "panel", - "label": "Panel", - "breadcrumb": "default", - "tabindex": "", - "input": false, - "tableView": false, - "components": [ - { - "key": "Section1B-NameColumn", - "type": "columns", - "input": false, - "label": "Section1B-NameColumn", - "columns": [ - { - "pull": 0, - "push": 0, - "size": "md", - "width": 6, - "offset": 0, - "components": [ - { - "label": "Last Name", - "labelPosition": "top", - "placeholder": "", - "description": "", - "tooltip": "", - "prefix": "", - "suffix": "", - "widget": { - "type": "input" - }, - "inputMask": "", - "displayMask": "", - "allowMultipleMasks": false, - "customClass": "", - "tabindex": "", - "autocomplete": "", - "hidden": false, - "hideLabel": false, - "showWordCount": false, - "showCharCount": false, - "mask": false, - "autofocus": false, - "spellcheck": true, - "disabled": false, - "tableView": false, - "modalEdit": false, - "multiple": false, - "persistent": true, - "inputFormat": "plain", - "protected": false, - "dbIndex": false, - "case": "", - "truncateMultipleSpaces": false, - "encrypted": false, - "redrawOn": "", - "clearOnHide": true, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "allowCalculateOverride": false, - "validateOn": "change", - "validate": { - "required": true, - "pattern": "", - "customMessage": "", - "custom": "", - "customPrivate": false, - "json": "", - "minLength": "", - "maxLength": "", - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "unique": false, - "errorLabel": "", - "errors": "", - "key": "Section1B-LastName", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "textfield", - "input": true, - "hideOnChildrenHidden": false, - "refreshOn": "", - "dataGridLabel": false, - "addons": [], - "inputType": "text", - "id": "ehh4qkk", - "defaultValue": "" - } - ], - "currentWidth": 6 - }, - { - "pull": 0, - "push": 0, - "size": "md", - "width": 6, - "offset": 0, - "components": [ - { - "label": "First Name", - "labelPosition": "top", - "placeholder": "", - "description": "", - "tooltip": "", - "prefix": "", - "suffix": "", - "widget": { - "type": "input" - }, - "inputMask": "", - "displayMask": "", - "allowMultipleMasks": false, - "customClass": "", - "tabindex": "", - "autocomplete": "", - "hidden": false, - "hideLabel": false, - "showWordCount": false, - "showCharCount": false, - "mask": false, - "autofocus": false, - "spellcheck": true, - "disabled": false, - "tableView": false, - "modalEdit": false, - "multiple": false, - "persistent": true, - "inputFormat": "plain", - "protected": false, - "dbIndex": false, - "case": "", - "truncateMultipleSpaces": false, - "encrypted": false, - "redrawOn": "", - "clearOnHide": true, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "allowCalculateOverride": false, - "validateOn": "change", - "validate": { - "required": true, - "pattern": "", - "customMessage": "", - "custom": "", - "customPrivate": false, - "json": "", - "minLength": "", - "maxLength": "", - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "unique": false, - "errorLabel": "", - "errors": "", - "key": "Section1B-FirstName", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "textfield", - "input": true, - "hideOnChildrenHidden": false, - "refreshOn": "", - "dataGridLabel": false, - "addons": [], - "inputType": "text", - "id": "e2couam", - "defaultValue": "" - } - ], - "currentWidth": 6 - } - ], - "tableView": false, - "hideOnChildrenHidden": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "hidden": false, - "clearOnHide": false, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "tree": false, - "lazyLoad": false, - "autoAdjust": false, - "id": "eyy4ce" - }, - { - "key": "Section1C-Company1", - "type": "textfield", - "input": true, - "label": "Company, if applicable", - "tableView": false, - "hideOnChildrenHidden": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "ex0z6ex" - }, - { - "key": "Section1C-AddressColumn1", - "type": "columns", - "input": false, - "label": "Columns - 2", - "columns": [ - { - "pull": 0, - "push": 0, - "size": "md", - "width": 6, - "offset": 0, - "components": [ - { - "key": "Section1C-Address1", - "type": "textfield", - "input": true, - "label": "Address", - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "tableView": false, - "hideOnChildrenHidden": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "eks23e" - } - ], - "currentWidth": 6 - }, - { - "pull": 0, - "push": 0, - "size": "md", - "width": 6, - "offset": 0, - "components": [ - { - "key": "Section1C-City1", - "type": "textfield", - "input": true, - "label": "City", - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "tableView": false, - "hideOnChildrenHidden": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "e026ykm" - } - ], - "currentWidth": 6 - } - ], - "tableView": false, - "hideOnChildrenHidden": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "hidden": false, - "clearOnHide": false, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "tree": false, - "lazyLoad": false, - "autoAdjust": false, - "id": "eb0na63" - }, - { - "key": "Section1A-AddressColumn4", - "type": "columns", - "input": false, - "label": "Columns - 3", - "columns": [ - { - "pull": 0, - "push": 0, - "size": "md", - "width": 4, - "offset": 0, - "components": [ - { - "key": "Section1A-ProvinceState3", - "type": "textfield", - "input": true, - "label": "Province", - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "tableView": false, - "hideOnChildrenHidden": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "er0guec" - } - ], - "currentWidth": 4 - }, - { - "pull": 0, - "push": 0, - "size": "md", - "width": 4, - "offset": 0, - "components": [ - { - "key": "Section1A-Country3", - "type": "textfield", - "input": true, - "label": "Country", - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "tableView": false, - "hideOnChildrenHidden": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "ex5fali" - } - ], - "currentWidth": 4 - }, - { - "pull": 0, - "push": 0, - "size": "md", - "width": 4, - "offset": 0, - "components": [ - { - "key": "Section1A-PostalZipCode3", - "type": "textfield", - "input": true, - "label": "Postal Code", - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "tableView": false, - "hideOnChildrenHidden": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "e5v9qcs" - } - ], - "currentWidth": 4 - } - ], - "tableView": false, - "hideOnChildrenHidden": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "hidden": false, - "clearOnHide": false, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "tree": false, - "lazyLoad": false, - "autoAdjust": false, - "id": "ek9ixdb" - }, - { - "key": "Section1C-ContactInfoColumn1", - "type": "columns", - "input": false, - "label": "Columns - 2", - "columns": [ - { - "pull": 0, - "push": 0, - "size": "md", - "width": 6, - "offset": 0, - "components": [ - { - "key": "phoneNumber1", - "type": "textfield", - "input": true, - "label": "Phone Number", - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "tableView": false, - "hideOnChildrenHidden": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "etn06w9" - } - ], - "currentWidth": 6 - }, - { - "pull": 0, - "push": 0, - "size": "md", - "width": 6, - "offset": 0, - "components": [ - { - "label": "Email", - "tableView": true, - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "key": "contactPersonEmailAddress1", - "type": "email", - "input": true, - "delimiter": false, - "requireDecimal": false, - "hideOnChildrenHidden": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "email", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "kickbox": { - "enabled": false - }, - "id": "elk9b5f" - } - ], - "currentWidth": 6 - } - ], - "tableView": false, - "hideOnChildrenHidden": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "hidden": false, - "clearOnHide": false, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "tree": false, - "lazyLoad": false, - "autoAdjust": false, - "id": "esdtr6j" - } - ], - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "clearOnHide": false, - "refreshOn": "", - "redrawOn": "", - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "tree": false, - "lazyLoad": false, - "id": "eccpvcc" - }, - { - "title": "Approved Professional", - "theme": "default", - "tooltip": "", - "customClass": "", - "collapsible": false, - "hidden": false, - "hideLabel": false, - "disabled": false, - "modalEdit": false, - "key": "panel1", - "tags": [], - "properties": {}, - "customConditional": "", - "conditional": { - "json": "", - "show": null, - "when": null, - "eq": "" - }, - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "panel", - "label": "Panel", - "breadcrumb": "default", - "tabindex": "", - "input": false, - "tableView": false, - "components": [ - { - "key": "Section1B-NameColumn1", - "type": "columns", - "input": false, - "label": "Section1B-NameColumn", - "columns": [ - { - "pull": 0, - "push": 0, - "size": "md", - "width": 6, - "offset": 0, - "components": [ - { - "label": "Last Name", - "labelPosition": "top", - "placeholder": "", - "description": "", - "tooltip": "", - "prefix": "", - "suffix": "", - "widget": { - "type": "input" - }, - "inputMask": "", - "displayMask": "", - "allowMultipleMasks": false, - "customClass": "", - "tabindex": "", - "autocomplete": "", - "hidden": false, - "hideLabel": false, - "showWordCount": false, - "showCharCount": false, - "mask": false, - "autofocus": false, - "spellcheck": true, - "disabled": false, - "tableView": false, - "modalEdit": false, - "multiple": false, - "persistent": true, - "inputFormat": "plain", - "protected": false, - "dbIndex": false, - "case": "", - "truncateMultipleSpaces": false, - "encrypted": false, - "redrawOn": "", - "clearOnHide": true, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "allowCalculateOverride": false, - "validateOn": "change", - "validate": { - "required": true, - "pattern": "", - "customMessage": "", - "custom": "", - "customPrivate": false, - "json": "", - "minLength": "", - "maxLength": "", - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "unique": false, - "errorLabel": "", - "errors": "", - "key": "Section1B-LastName1", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "textfield", - "input": true, - "hideOnChildrenHidden": false, - "refreshOn": "", - "dataGridLabel": false, - "addons": [], - "inputType": "text", - "id": "euvjh55", - "defaultValue": "" - } - ], - "currentWidth": 6 - }, - { - "pull": 0, - "push": 0, - "size": "md", - "width": 6, - "offset": 0, - "components": [ - { - "label": "First Name", - "labelPosition": "top", - "placeholder": "", - "description": "", - "tooltip": "", - "prefix": "", - "suffix": "", - "widget": { - "type": "input" - }, - "inputMask": "", - "displayMask": "", - "allowMultipleMasks": false, - "customClass": "", - "tabindex": "", - "autocomplete": "", - "hidden": false, - "hideLabel": false, - "showWordCount": false, - "showCharCount": false, - "mask": false, - "autofocus": false, - "spellcheck": true, - "disabled": false, - "tableView": false, - "modalEdit": false, - "multiple": false, - "persistent": true, - "inputFormat": "plain", - "protected": false, - "dbIndex": false, - "case": "", - "truncateMultipleSpaces": false, - "encrypted": false, - "redrawOn": "", - "clearOnHide": true, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "allowCalculateOverride": false, - "validateOn": "change", - "validate": { - "required": true, - "pattern": "", - "customMessage": "", - "custom": "", - "customPrivate": false, - "json": "", - "minLength": "", - "maxLength": "", - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "unique": false, - "errorLabel": "", - "errors": "", - "key": "Section1B-FirstName1", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "textfield", - "input": true, - "hideOnChildrenHidden": false, - "refreshOn": "", - "dataGridLabel": false, - "addons": [], - "inputType": "text", - "id": "ei7qvpq", - "defaultValue": "" - } - ], - "currentWidth": 6 - } - ], - "tableView": false, - "hideOnChildrenHidden": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "hidden": false, - "clearOnHide": false, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "tree": false, - "lazyLoad": false, - "autoAdjust": false, - "id": "ebe00dr" - }, - { - "key": "Section1C-Company2", - "type": "textfield", - "input": true, - "label": "Company, if applicable", - "tableView": false, - "hideOnChildrenHidden": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "ehx2r3c" - }, - { - "key": "Section1C-AddressColumn2", - "type": "columns", - "input": false, - "label": "Columns - 2", - "columns": [ - { - "pull": 0, - "push": 0, - "size": "md", - "width": 6, - "offset": 0, - "components": [ - { - "key": "Section1C-Address2", - "type": "textfield", - "input": true, - "label": "Address", - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "tableView": false, - "hideOnChildrenHidden": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "eviqouu" - } - ], - "currentWidth": 6 - }, - { - "pull": 0, - "push": 0, - "size": "md", - "width": 6, - "offset": 0, - "components": [ - { - "key": "Section1C-City2", - "type": "textfield", - "input": true, - "label": "City", - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "tableView": false, - "hideOnChildrenHidden": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "ej96lic" - } - ], - "currentWidth": 6 - } - ], - "tableView": false, - "hideOnChildrenHidden": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "hidden": false, - "clearOnHide": false, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "tree": false, - "lazyLoad": false, - "autoAdjust": false, - "id": "eo3ukfa" - }, - { - "key": "Section1A-AddressColumn5", - "type": "columns", - "input": false, - "label": "Columns - 3", - "columns": [ - { - "pull": 0, - "push": 0, - "size": "md", - "width": 4, - "offset": 0, - "components": [ - { - "key": "Section1A-ProvinceState4", - "type": "textfield", - "input": true, - "label": "Province", - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "tableView": false, - "hideOnChildrenHidden": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "euw0tfs" - } - ], - "currentWidth": 4 - }, - { - "pull": 0, - "push": 0, - "size": "md", - "width": 4, - "offset": 0, - "components": [ - { - "key": "Section1A-Country4", - "type": "textfield", - "input": true, - "label": "Country", - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "tableView": false, - "hideOnChildrenHidden": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "eq6im" - } - ], - "currentWidth": 4 - }, - { - "pull": 0, - "push": 0, - "size": "md", - "width": 4, - "offset": 0, - "components": [ - { - "key": "Section1A-PostalZipCode4", - "type": "textfield", - "input": true, - "label": "Postal Code", - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "tableView": false, - "hideOnChildrenHidden": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "ezn76c" - } - ], - "currentWidth": 4 - } - ], - "tableView": false, - "hideOnChildrenHidden": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "hidden": false, - "clearOnHide": false, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "tree": false, - "lazyLoad": false, - "autoAdjust": false, - "id": "ed95jch" - }, - { - "key": "Section1C-ContactInfoColumn2", - "type": "columns", - "input": false, - "label": "Columns - 2", - "columns": [ - { - "pull": 0, - "push": 0, - "size": "md", - "width": 6, - "offset": 0, - "components": [ - { - "key": "phoneNumber3", - "type": "textfield", - "input": true, - "label": "Phone Number", - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "tableView": false, - "hideOnChildrenHidden": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "epk5n6b" - } - ], - "currentWidth": 6 - }, - { - "pull": 0, - "push": 0, - "size": "md", - "width": 6, - "offset": 0, - "components": [ - { - "label": "Email", - "tableView": true, - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "key": "contactPersonEmailAddress2", - "type": "email", - "input": true, - "delimiter": false, - "requireDecimal": false, - "hideOnChildrenHidden": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "email", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "kickbox": { - "enabled": false - }, - "id": "e2vlpc" - } - ], - "currentWidth": 6 - } - ], - "tableView": false, - "hideOnChildrenHidden": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "hidden": false, - "clearOnHide": false, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "tree": false, - "lazyLoad": false, - "autoAdjust": false, - "id": "e4f2vgv" - }, - { - "label": "Professional Designation", - "labelPosition": "top", - "placeholder": "", - "description": "", - "tooltip": "", - "prefix": "", - "suffix": "", - "widget": { - "type": "input" - }, - "inputMask": "", - "displayMask": "", - "allowMultipleMasks": false, - "customClass": "", - "tabindex": "", - "autocomplete": "", - "hidden": false, - "hideLabel": false, - "showWordCount": false, - "showCharCount": false, - "mask": false, - "autofocus": false, - "spellcheck": true, - "disabled": false, - "tableView": true, - "modalEdit": false, - "multiple": false, - "persistent": true, - "inputFormat": "plain", - "protected": false, - "dbIndex": false, - "case": "", - "truncateMultipleSpaces": false, - "encrypted": false, - "redrawOn": "", - "clearOnHide": true, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "allowCalculateOverride": false, - "validateOn": "change", - "validate": { - "required": false, - "pattern": "", - "customMessage": "", - "custom": "", - "customPrivate": false, - "json": "", - "minLength": "", - "maxLength": "", - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "unique": false, - "errorLabel": "", - "errors": "", - "key": "professionalDesignation", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "textfield", - "input": true, - "refreshOn": "", - "dataGridLabel": false, - "addons": [], - "inputType": "text", - "id": "e4erht", - "defaultValue": "" - }, - { - "label": "Scope of review completed by Approved Professional (eg. arm's length risk-based standards review)", - "labelPosition": "top", - "placeholder": "", - "description": "", - "tooltip": "", - "prefix": "", - "suffix": "", - "widget": { - "type": "input" - }, - "displayMask": "", - "editor": "", - "autoExpand": false, - "customClass": "", - "tabindex": "", - "autocomplete": "", - "hidden": false, - "hideLabel": false, - "showWordCount": false, - "showCharCount": false, - "autofocus": false, - "spellcheck": true, - "disabled": false, - "tableView": true, - "modalEdit": false, - "multiple": false, - "persistent": true, - "inputFormat": "html", - "protected": false, - "dbIndex": false, - "case": "", - "truncateMultipleSpaces": false, - "encrypted": false, - "redrawOn": "", - "clearOnHide": true, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "allowCalculateOverride": false, - "validateOn": "change", - "validate": { - "required": false, - "pattern": "", - "customMessage": "", - "custom": "", - "customPrivate": false, - "json": "", - "minLength": "", - "maxLength": "", - "minWords": "", - "maxWords": "", - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "unique": false, - "errorLabel": "", - "errors": "", - "key": "scopeOfReviewCompletedByApprovedProfessionalEgArmsLengthRiskBasedStandardsReview", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "textarea", - "rows": 3, - "wysiwyg": false, - "input": true, - "refreshOn": "", - "dataGridLabel": false, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputMask": "", - "fixedSize": true, - "id": "e3504l8", - "defaultValue": "" - } - ], - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "clearOnHide": false, - "refreshOn": "", - "redrawOn": "", - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "tree": false, - "lazyLoad": false, - "id": "euyo4sn" - } - ], - "collapsible": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "hidden": false, - "clearOnHide": false, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "tree": false, - "lazyLoad": false, - "theme": "default", - "breadcrumb": "default", - "id": "e52kzii", - "keyModified": true - }, - { - "html": "

Part 2 - Executive Summary

", - "label": "Content", - "customClass": "", - "refreshOnChange": false, - "hidden": false, - "modalEdit": false, - "key": "content4", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "content", - "input": false, - "tableView": false, - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "id": "eip4sw7" - }, - { - "title": "Section II - EXECUTIVE SUMMARY", - "theme": "default", - "tooltip": "", - "customClass": "", - "collapsible": true, - "hidden": false, - "hideLabel": false, - "disabled": false, - "modalEdit": false, - "key": "Section1-ContactInformation1", - "tags": [], - "properties": {}, - "customConditional": "", - "conditional": { - "json": "", - "show": null, - "when": null, - "eq": "" - }, - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "panel", - "label": "", - "breadcrumb": "default", - "tabindex": "", - "collapsed": false, - "input": false, - "tableView": false, - "keyModified": true, - "components": [ - { - "html": "

To be completed by the approved professionals reviewing the site investigation, risk assessment, remediation or confirmation of remediation reports.

", - "label": "Content", - "customClass": "", - "refreshOnChange": false, - "hidden": false, - "modalEdit": false, - "key": "content2", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "content", - "input": false, - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "tableView": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "id": "epyqnv" - }, - { - "label": "Subject Site Locations", - "reorder": false, - "addAnotherPosition": "bottom", - "layoutFixed": false, - "enableRowGroups": false, - "initEmpty": false, - "tableView": false, - "defaultValue": [ - { - "siteId": "", - "siteCommonName": "", - "section2LatitudeDegrees": "", - "section2LatitudeMinutes": "", - "section2LatitudeSeconds": "", - "section2LongitudeDegrees": "", - "section2LongitudeMinutes": "", - "section2LongitudeSeconds": "" - } - ], - "key": "dataGrid", - "type": "datagrid", - "input": true, - "components": [ - { - "title": "Subject Site Location", - "collapsible": false, - "key": "panel2", - "type": "panel", - "label": "Site", - "input": false, - "tableView": false, - "components": [ - { - "label": "Site ID", - "tableView": true, - "key": "siteId", - "type": "textfield", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "etpvslk" - }, - { - "label": "Site Common Name", - "autoExpand": false, - "tableView": true, - "key": "siteCommonName", - "type": "textarea", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "", - "minWords": "", - "maxWords": "" - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "html", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "rows": 3, - "wysiwyg": false, - "editor": "", - "fixedSize": true, - "id": "edrol6" - }, - { - "key": "heading4", - "tag": "h4", - "type": "htmlelement", - "input": false, - "label": "Heading", - "content": "Latitude", - "tableView": false, - "headingSize": "h1", - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "attrs": [], - "id": "e8b5q86" - }, - { - "key": "Section2-LatitudeColumn", - "type": "columns", - "input": false, - "label": "Columns - 3", - "columns": [ - { - "pull": 0, - "push": 0, - "size": "md", - "width": 4, - "offset": 0, - "components": [ - { - "key": "section2LatitudeDegrees", - "type": "textfield", - "input": true, - "label": "Degrees", - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "tableView": false, - "hideOnChildrenHidden": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "ef4s1gv" - } - ], - "currentWidth": 4 - }, - { - "pull": 0, - "push": 0, - "size": "md", - "width": 4, - "offset": 0, - "components": [ - { - "key": "section2LatitudeMinutes", - "type": "textfield", - "input": true, - "label": "Minutes", - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "tableView": false, - "hideOnChildrenHidden": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "evm2u7" - } - ], - "currentWidth": 4 - }, - { - "pull": 0, - "push": 0, - "size": "md", - "width": 4, - "offset": 0, - "components": [ - { - "key": "section2LatitudeSeconds", - "type": "textfield", - "input": true, - "label": "Seconds", - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "tableView": false, - "hideOnChildrenHidden": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "ezwdsq8" - } - ], - "currentWidth": 4 - } - ], - "tableView": false, - "hideOnChildrenHidden": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "hidden": false, - "clearOnHide": false, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "tree": false, - "lazyLoad": false, - "autoAdjust": false, - "id": "elda0gq" - }, - { - "key": "heading5", - "tag": "h4", - "type": "htmlelement", - "input": false, - "label": "Heading", - "content": "Longitude", - "tableView": false, - "headingSize": "h1", - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "attrs": [], - "id": "en3p8e9" - }, - { - "key": "Section2-LongitudeColumn", - "type": "columns", - "input": false, - "label": "Columns - 3", - "columns": [ - { - "pull": 0, - "push": 0, - "size": "md", - "width": 4, - "offset": 0, - "components": [ - { - "key": "section2LongitudeDegrees", - "type": "textfield", - "input": true, - "label": "Degrees", - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "tableView": false, - "hideOnChildrenHidden": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "e8hqhvc" - } - ], - "currentWidth": 4 - }, - { - "pull": 0, - "push": 0, - "size": "md", - "width": 4, - "offset": 0, - "components": [ - { - "key": "section2LongitudeMinutes", - "type": "textfield", - "input": true, - "label": "Minutes", - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "tableView": false, - "hideOnChildrenHidden": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "er4jc8h" - } - ], - "currentWidth": 4 - }, - { - "pull": 0, - "push": 0, - "size": "md", - "width": 4, - "offset": 0, - "components": [ - { - "key": "section2LongitudeSeconds", - "type": "textfield", - "input": true, - "label": "Seconds", - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "tableView": false, - "hideOnChildrenHidden": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "ekx2hxj" - } - ], - "currentWidth": 4 - } - ], - "tableView": false, - "hideOnChildrenHidden": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "hidden": false, - "clearOnHide": false, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "tree": false, - "lazyLoad": false, - "autoAdjust": false, - "id": "eco0438" - } - ], - "id": "edowey00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "hidden": false, - "clearOnHide": false, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "tree": false, - "lazyLoad": false, - "theme": "default", - "breadcrumb": "default" - } - ], - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "tree": true, - "lazyLoad": false, - "disableAddingRemovingRows": false, - "id": "evusv2q" - }, - { - "key": "heading3", - "tag": "h3", - "type": "htmlelement", - "input": false, - "label": "Heading", - "content": "Coordinates for the centre of the site:", - "tableView": false, - "headingSize": "h1", - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "attrs": [], - "id": "ee72tiv" - }, - { - "key": "content", - "html": "

Attention:

A separate map with appropriate scale showing the location and boundaries of the site must be included with an SDS submission.

", - "type": "content", - "input": false, - "label": "Static Text", - "tableView": false, - "hideOnChildrenHidden": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "id": "e5fmbyj" - }, - { - "key": "iUnderstandAndWillAttachAMapWithMySubmission", - "type": "checkbox", - "input": true, - "label": "I will include a map with my submission", - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "tableView": false, - "defaultValue": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": true, - "labelPosition": "right", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "inputType": "checkbox", - "value": "", - "name": "", - "id": "ekbr5fb" - }, - { - "label": "Land ownership (Source Site) Please select all that apply:", - "labelPosition": "top", - "optionsLabelPosition": "right", - "description": "", - "tooltip": "", - "customClass": "", - "tabindex": "", - "inline": false, - "hidden": false, - "hideLabel": false, - "autofocus": false, - "disabled": false, - "tableView": false, - "modalEdit": false, - "values": [ - { - "label": "Legally Titled, Registered Property", - "value": "legallyTitled", - "shortcut": "" - }, - { - "label": "Untitled Crown Land", - "value": "untitledCrown", - "shortcut": "" - }, - { - "label": "Untitled Municipal Land", - "value": "untitledMunicipal", - "shortcut": "" - } - ], - "persistent": true, - "protected": false, - "dbIndex": false, - "encrypted": false, - "redrawOn": "", - "clearOnHide": true, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "allowCalculateOverride": false, - "validate": { - "required": true, - "onlyAvailableItems": false, - "customMessage": "", - "custom": "", - "customPrivate": false, - "json": "", - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "errorLabel": "", - "minSelectedCountMessage": "", - "maxSelectedCountMessage": "", - "errors": "", - "key": "landOwnershipSourceSitePleaseSelectAllThatApply", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "selectboxes", - "input": true, - "inputType": "checkbox", - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "unique": false, - "refreshOn": "", - "dataGridLabel": false, - "widget": null, - "validateOn": "change", - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "fieldSet": false, - "id": "e66yx6u", - "defaultValue": { - "legallyTitled": false, - "untitledCrown": false, - "untitledMunicipal": false - } - }, - { - "title": "For Legally Titled, Registered Property (Source Site)", - "theme": "default", - "tooltip": "", - "customClass": "", - "collapsible": false, - "hidden": false, - "hideLabel": false, - "disabled": false, - "modalEdit": false, - "key": "forLegallyTitledRegisteredProperty-panel", - "tags": [], - "properties": {}, - "customConditional": "", - "conditional": { - "json": "", - "show": true, - "when": "landOwnershipSourceSitePleaseSelectAllThatApply", - "eq": "legallyTitled" - }, - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "panel", - "label": "", - "breadcrumb": "default", - "tabindex": "", - "input": false, - "collapsed": false, - "tableView": false, - "components": [ - { - "key": "Section2-LegallyTitled-Address", - "type": "textfield", - "input": true, - "label": "Site Address", - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "tableView": false, - "placeholder": "or nearest street name/intersection if no address is assigned", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "emyfj89" - }, - { - "key": "Section2-LegallyTitled-AddressColumn", - "type": "columns", - "input": false, - "label": "Columns - 2", - "columns": [ - { - "pull": 0, - "push": 0, - "size": "md", - "width": 6, - "offset": 0, - "components": [ - { - "key": "Section2-LegallyTitled-City", - "type": "textfield", - "input": true, - "label": "City", - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "tableView": false, - "hideOnChildrenHidden": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "ev16eg9" - } - ], - "currentWidth": 6 - }, - { - "pull": 0, - "push": 0, - "size": "md", - "width": 6, - "offset": 0, - "components": [ - { - "key": "Section2-LegallyTitled-PostalZipCode", - "type": "textfield", - "input": true, - "label": "Postal Code", - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "tableView": false, - "hideOnChildrenHidden": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "eftbs3h" - } - ], - "currentWidth": 6 - } - ], - "tableView": false, - "hideOnChildrenHidden": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "hidden": false, - "clearOnHide": false, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "tree": false, - "lazyLoad": false, - "autoAdjust": false, - "id": "eavg5jx" - }, - { - "label": "Enter PIDs and Land Descriptions below", - "tooltip": "Select the 'X' button to delete an entry.", - "reorder": false, - "addAnotherPosition": "bottom", - "layoutFixed": false, - "enableRowGroups": false, - "initEmpty": false, - "hideLabel": true, - "tableView": false, - "defaultValue": [ - { - "Section2-LegallyTitled-PID": "", - "SiteAddress-LegallyTitled-PID": "", - "Section2-LegallyTitled-LandDescription": "", - "SiteAddress-LegallyTitled-LandDescription": "" - } - ], - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "key": "Section2-LegallyTitled-PIDColumn", - "type": "datagrid", - "input": true, - "components": [ - { - "title": "Entries", - "collapsible": false, - "hideLabel": true, - "key": "panel1", - "type": "panel", - "label": "Panel", - "input": false, - "tableView": false, - "components": [ - { - "key": "cols3", - "type": "columns", - "input": false, - "label": "Columns - 2", - "columns": [ - { - "pull": 0, - "push": 0, - "size": "md", - "width": 6, - "offset": 0, - "components": [ - { - "key": "Section2-LegallyTitled-PID", - "type": "textfield", - "input": true, - "label": "PID", - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "inputMask": "999-999-999", - "tableView": true, - "hideOnChildrenHidden": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "eaoeej" - } - ], - "currentWidth": 6 - }, - { - "pull": 0, - "push": 0, - "size": "md", - "width": 6, - "offset": 0, - "components": [], - "currentWidth": 6 - } - ], - "tableView": false, - "hideOnChildrenHidden": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "hidden": false, - "clearOnHide": false, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "tree": false, - "lazyLoad": false, - "autoAdjust": false, - "id": "e35et7b" - }, - { - "key": "Section2-LegallyTitled-LandDescription", - "type": "textarea", - "input": true, - "label": "Land Description", - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "", - "minWords": "", - "maxWords": "" - }, - "tableView": true, - "autoExpand": false, - "inputFormat": "plain", - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "rows": 3, - "wysiwyg": false, - "editor": "", - "fixedSize": true, - "id": "eqnyhh" - } - ], - "id": "eskogm000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "hidden": false, - "clearOnHide": false, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "tree": false, - "lazyLoad": false, - "theme": "default", - "breadcrumb": "default" - } - ], - "hideOnChildrenHidden": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "tree": true, - "lazyLoad": false, - "disableAddingRemovingRows": false, - "id": "eyxh9qa" - } - ], - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "clearOnHide": false, - "refreshOn": "", - "redrawOn": "", - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "tree": false, - "lazyLoad": false, - "id": "esaica" - }, - { - "title": "For Untitled Crown Land (Source Site)", - "theme": "default", - "tooltip": "", - "customClass": "", - "collapsible": false, - "hidden": false, - "hideLabel": false, - "disabled": false, - "modalEdit": false, - "key": "Section2-forUntitledCrownLand", - "tags": [], - "properties": {}, - "customConditional": "", - "conditional": { - "json": "", - "show": true, - "when": "landOwnershipSourceSitePleaseSelectAllThatApply", - "eq": "untitledCrown" - }, - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "panel", - "label": "", - "breadcrumb": "default", - "tabindex": "", - "input": false, - "collapsed": false, - "tableView": false, - "components": [ - { - "key": "Section2-UntitledCrown-PINColumn", - "type": "datagrid", - "input": true, - "label": "", - "reorder": false, - "hideLabel": true, - "initEmpty": false, - "tableView": false, - "components": [ - { - "title": "Untitled Crown Land", - "theme": "default", - "tooltip": "", - "customClass": "", - "collapsible": false, - "hidden": false, - "hideLabel": true, - "dataGridLabel": false, - "disabled": false, - "modalEdit": false, - "key": "panel1", - "tags": [], - "properties": {}, - "customConditional": "", - "conditional": { - "json": "", - "show": null, - "when": null, - "eq": "" - }, - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "panel", - "label": "Crown Land", - "breadcrumb": "default", - "tabindex": "", - "input": false, - "tableView": false, - "components": [ - { - "key": "cols3", - "type": "columns", - "input": false, - "label": "Columns - 2", - "columns": [ - { - "pull": 0, - "push": 0, - "size": "md", - "width": 6, - "offset": 0, - "components": [ - { - "key": "Section2-LegallyTitled-PID", - "type": "textfield", - "input": true, - "label": "PIN", - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "tableView": true, - "hideOnChildrenHidden": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "e0zxpd" - } - ], - "currentWidth": 6 - }, - { - "pull": 0, - "push": 0, - "size": "md", - "width": 6, - "offset": 0, - "components": [], - "currentWidth": 6 - } - ], - "tableView": false, - "hideOnChildrenHidden": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "hidden": false, - "clearOnHide": false, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "tree": false, - "lazyLoad": false, - "autoAdjust": false, - "id": "eohw9y" - }, - { - "key": "Section2-LegallyTitled-LandDescription", - "type": "textarea", - "input": true, - "label": "Land Description or metes and bounds", - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "", - "minWords": "", - "maxWords": "" - }, - "tableView": true, - "autoExpand": false, - "inputFormat": "plain", - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "rows": 3, - "wysiwyg": false, - "editor": "", - "fixedSize": true, - "id": "e9sdlfc" - } - ], - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "clearOnHide": false, - "refreshOn": "", - "redrawOn": "", - "labelPosition": "top", - "description": "", - "errorLabel": "", - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "tree": false, - "lazyLoad": false, - "id": "e0cqfrg000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" - } - ], - "layoutFixed": false, - "defaultValue": [ - { - "Section2-LegallyTitled-PID": "", - "SiteAddress-UntitledCrown-PIN": "", - "Section2-LegallyTitled-LandDescription": "", - "SiteAddress-UntitledCrown-LandDescription": "" - } - ], - "enableRowGroups": false, - "addAnotherPosition": "bottom", - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "tree": true, - "lazyLoad": false, - "disableAddingRemovingRows": false, - "id": "eg4uvab" - }, - { - "label": "And if available:", - "reorder": false, - "addAnotherPosition": "bottom", - "layoutFixed": false, - "enableRowGroups": false, - "initEmpty": false, - "hideLabel": true, - "tableView": false, - "defaultValue": [ - { - "Section2-UntitledCrown-CrownLandFileNumbers": "", - "SiteAddress-UntitledCrown-CrownLandFileNumbers": "" - } - ], - "key": "Section2-UntitledCrownLand-FileNumberColumn", - "type": "datagrid", - "input": true, - "components": [ - { - "key": "Section2-UntitledCrown-CrownLandFileNumbers", - "type": "textfield", - "input": true, - "label": "Crown Land File Numbers", - "tableView": true, - "id": "elizdoh000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false - } - ], - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "tree": true, - "lazyLoad": false, - "disableAddingRemovingRows": false, - "id": "eeq9myk" - } - ], - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "clearOnHide": false, - "refreshOn": "", - "redrawOn": "", - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "tree": false, - "lazyLoad": false, - "id": "eids8qa" - }, - { - "title": "For untitled municipal land (Source Site)", - "theme": "default", - "tooltip": "", - "customClass": "", - "collapsible": false, - "hidden": false, - "hideLabel": false, - "disabled": false, - "modalEdit": false, - "key": "Section2-forUntitledCrownLand1", - "tags": [], - "properties": {}, - "customConditional": "", - "conditional": { - "json": "", - "show": true, - "when": "landOwnershipSourceSitePleaseSelectAllThatApply", - "eq": "untitledMunicipal" - }, - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "panel", - "label": "", - "breadcrumb": "default", - "tabindex": "", - "input": false, - "collapsed": false, - "tableView": false, - "components": [ - { - "key": "Section2-LegallyTitled-LandDescription", - "type": "textarea", - "input": true, - "label": "Land Description", - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "", - "minWords": "", - "maxWords": "" - }, - "tableView": true, - "autoExpand": false, - "inputFormat": "plain", - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "rows": 3, - "wysiwyg": false, - "editor": "", - "fixedSize": true, - "id": "eggg59w" - } - ], - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "clearOnHide": false, - "refreshOn": "", - "redrawOn": "", - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "tree": false, - "lazyLoad": false, - "id": "e8g7fan" - } - ], - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "clearOnHide": false, - "refreshOn": "", - "redrawOn": "", - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "tree": false, - "lazyLoad": false, - "id": "eqif3zi" - }, - { - "title": "Offsite Impacted Properties", - "theme": "default", - "tooltip": "", - "customClass": "", - "collapsible": false, - "hidden": false, - "hideLabel": false, - "disabled": false, - "modalEdit": false, - "key": "offsiteImpactedProperties1", - "tags": [], - "properties": {}, - "customConditional": "", - "conditional": { - "json": "", - "show": null, - "when": null, - "eq": "" - }, - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "panel", - "label": "Panel", - "breadcrumb": "default", - "tabindex": "", - "input": false, - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "clearOnHide": false, - "refreshOn": "", - "redrawOn": "", - "tableView": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "tree": false, - "lazyLoad": false, - "components": [ - { - "label": "Select one:", - "labelPosition": "top", - "optionsLabelPosition": "right", - "description": "", - "tooltip": "", - "customClass": "", - "tabindex": "", - "inline": false, - "hidden": false, - "hideLabel": false, - "autofocus": false, - "disabled": false, - "tableView": false, - "modalEdit": false, - "values": [ - { - "label": "Offsite impacted property(ies) - Provide information for each", - "value": "offsiteImpactedProperty", - "shortcut": "" - }, - { - "label": "Not Applicable", - "value": "notApplicable", - "shortcut": "" - } - ], - "dataType": "", - "persistent": true, - "protected": false, - "dbIndex": false, - "encrypted": false, - "redrawOn": "", - "clearOnHide": true, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "allowCalculateOverride": false, - "validate": { - "required": true, - "onlyAvailableItems": false, - "customMessage": "", - "custom": "", - "customPrivate": false, - "json": "", - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "errorLabel": "", - "errors": "", - "key": "offsiteImpactedProperties", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "radio", - "input": true, - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "unique": false, - "refreshOn": "", - "dataGridLabel": false, - "widget": null, - "validateOn": "change", - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "inputType": "radio", - "fieldSet": false, - "id": "e2ysuh", - "defaultValue": "" - }, - { - "label": "", - "reorder": false, - "addAnotherPosition": "bottom", - "layoutFixed": false, - "enableRowGroups": false, - "initEmpty": false, - "hideLabel": true, - "tableView": false, - "defaultValue": [ - {} - ], - "key": "dataGrid1", - "conditional": { - "show": true, - "when": "offsiteImpactedProperties", - "eq": "offsiteImpactedProperty" - }, - "type": "datagrid", - "input": true, - "components": [ - { - "title": "Coordinates for the centre of the impacted site", - "collapsible": false, - "key": "Section2-forUntitledCrownLand2", - "conditional": { - "show": true, - "when": "offsiteImpactedProperties", - "eq": "offsiteImpactedProperty" - }, - "type": "panel", - "label": "Impacted Sites", - "input": false, - "collapsed": false, - "tableView": false, - "components": [ - { - "key": "heading8", - "tag": "h4", - "type": "htmlelement", - "input": false, - "label": "Heading", - "content": "Latitude", - "tableView": false, - "headingSize": "h1", - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "attrs": [], - "id": "e2ug45e" - }, - { - "key": "Section2-LatitudeColumn2", - "type": "columns", - "input": false, - "label": "Columns - 3", - "columns": [ - { - "pull": 0, - "push": 0, - "size": "md", - "width": 4, - "offset": 0, - "components": [ - { - "key": "section2LatitudeDegrees2", - "type": "textfield", - "input": true, - "label": "Degrees", - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "tableView": false, - "hideOnChildrenHidden": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "ey5x9g8" - } - ], - "currentWidth": 4 - }, - { - "pull": 0, - "push": 0, - "size": "md", - "width": 4, - "offset": 0, - "components": [ - { - "key": "section2LatitudeMinutes2", - "type": "textfield", - "input": true, - "label": "Minutes", - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "tableView": false, - "hideOnChildrenHidden": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "e1ftky" - } - ], - "currentWidth": 4 - }, - { - "pull": 0, - "push": 0, - "size": "md", - "width": 4, - "offset": 0, - "components": [ - { - "key": "section2LatitudeSeconds2", - "type": "textfield", - "input": true, - "label": "Seconds", - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "tableView": false, - "hideOnChildrenHidden": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "e4whd08" - } - ], - "currentWidth": 4 - } - ], - "tableView": false, - "hideOnChildrenHidden": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "hidden": false, - "clearOnHide": false, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "tree": false, - "lazyLoad": false, - "autoAdjust": false, - "id": "el90wzy" - }, - { - "key": "heading9", - "tag": "h4", - "type": "htmlelement", - "input": false, - "label": "Heading", - "content": "Longitude", - "tableView": false, - "headingSize": "h1", - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "attrs": [], - "id": "ex8n8vc" - }, - { - "key": "Section2-LongitudeColumn2", - "type": "columns", - "input": false, - "label": "Columns - 3", - "columns": [ - { - "pull": 0, - "push": 0, - "size": "md", - "width": 4, - "offset": 0, - "components": [ - { - "key": "section2LongitudeDegrees2", - "type": "textfield", - "input": true, - "label": "Degrees", - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "tableView": false, - "hideOnChildrenHidden": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "eayewmr" - } - ], - "currentWidth": 4 - }, - { - "pull": 0, - "push": 0, - "size": "md", - "width": 4, - "offset": 0, - "components": [ - { - "key": "section2LongitudeMinutes2", - "type": "textfield", - "input": true, - "label": "Minutes", - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "tableView": false, - "hideOnChildrenHidden": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "eg5a19" - } - ], - "currentWidth": 4 - }, - { - "pull": 0, - "push": 0, - "size": "md", - "width": 4, - "offset": 0, - "components": [ - { - "key": "section2LongitudeSeconds2", - "type": "textfield", - "input": true, - "label": "Seconds", - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "tableView": false, - "hideOnChildrenHidden": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "evt9aao" - } - ], - "currentWidth": 4 - } - ], - "tableView": false, - "hideOnChildrenHidden": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "hidden": false, - "clearOnHide": false, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "tree": false, - "lazyLoad": false, - "autoAdjust": false, - "id": "e6o3au0o" - } - ], - "id": "erlwlrl00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "hidden": false, - "clearOnHide": false, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "tree": false, - "lazyLoad": false, - "theme": "default", - "breadcrumb": "default" - } - ], - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "tree": true, - "lazyLoad": false, - "disableAddingRemovingRows": false, - "id": "eef218" - }, - { - "html": "

Attention:

", - "label": "Content", - "customClass": "", - "refreshOnChange": false, - "hidden": false, - "modalEdit": false, - "key": "content1", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "content", - "input": false, - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "tableView": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "id": "edgwhqh" - }, - { - "label": "Include land title record, where applicable", - "labelPosition": "top", - "optionsLabelPosition": "right", - "description": "", - "tooltip": "", - "customClass": "", - "tabindex": "", - "inline": false, - "hidden": false, - "hideLabel": false, - "autofocus": false, - "disabled": false, - "tableView": false, - "modalEdit": false, - "values": [ - { - "label": "I understand and will include a land title record with my submission", - "value": "hasTitleRecord", - "shortcut": "" - }, - { - "label": "Land title record not available", - "value": "noTitleRecord", - "shortcut": "" - } - ], - "dataType": "", - "persistent": true, - "protected": false, - "dbIndex": false, - "encrypted": false, - "redrawOn": "", - "clearOnHide": true, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "allowCalculateOverride": false, - "validate": { - "required": true, - "onlyAvailableItems": false, - "customMessage": "", - "custom": "", - "customPrivate": false, - "json": "", - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "errorLabel": "", - "errors": "", - "key": "includeLandTitleRecordWhereApplicable", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "radio", - "input": true, - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "unique": false, - "refreshOn": "", - "dataGridLabel": false, - "widget": null, - "validateOn": "change", - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "inputType": "radio", - "fieldSet": false, - "id": "e0vaduj", - "defaultValue": "noTitleRecord" - }, - { - "label": "Land ownership (Impacted Property or Receiving Site) Please select all that apply:", - "optionsLabelPosition": "right", - "tableView": false, - "values": [ - { - "label": "Legally Titled, Registered Property", - "value": "legallyTitled", - "shortcut": "" - }, - { - "label": "Untitled Crown Land", - "value": "untitledCrown", - "shortcut": "" - }, - { - "label": "Untitled Municipal Land", - "value": "untitledMunicipal", - "shortcut": "" - } - ], - "key": "landOwnershipImpactedPropertyPleaseSelectAllThatApply", - "type": "selectboxes", - "input": true, - "inputType": "checkbox", - "defaultValue": { - "legallyTitled": false, - "untitledCrown": false, - "untitledMunicipal": false - }, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "onlyAvailableItems": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "fieldSet": false, - "inline": false, - "id": "ebvkqdh" - }, - { - "title": "For Legally Titled, Registered Property (Impacted Property)", - "theme": "default", - "tooltip": "", - "customClass": "", - "collapsible": false, - "hidden": false, - "hideLabel": false, - "disabled": false, - "modalEdit": false, - "key": "forLegallyTitledRegisteredProperty-panel1", - "tags": [], - "properties": {}, - "customConditional": "", - "conditional": { - "json": "", - "show": true, - "when": "landOwnershipImpactedPropertyPleaseSelectAllThatApply", - "eq": "legallyTitled" - }, - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "panel", - "label": "", - "breadcrumb": "default", - "tabindex": "", - "input": false, - "collapsed": false, - "tableView": false, - "components": [ - { - "key": "Section2-LegallyTitled-Address1", - "type": "textfield", - "input": true, - "label": "Site Address", - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "tableView": false, - "placeholder": "or nearest street name/intersection if no address is assigned", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "epwcnl" - }, - { - "key": "Section2-LegallyTitled-AddressColumn1", - "type": "columns", - "input": false, - "label": "Columns - 2", - "columns": [ - { - "pull": 0, - "push": 0, - "size": "md", - "width": 6, - "offset": 0, - "components": [ - { - "key": "Section2-LegallyTitled-City1", - "type": "textfield", - "input": true, - "label": "City", - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "tableView": false, - "hideOnChildrenHidden": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "e6ii8s" - } - ], - "currentWidth": 6 - }, - { - "pull": 0, - "push": 0, - "size": "md", - "width": 6, - "offset": 0, - "components": [ - { - "key": "Section2-LegallyTitled-PostalZipCode1", - "type": "textfield", - "input": true, - "label": "Postal Code", - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "tableView": false, - "hideOnChildrenHidden": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "erie2w" - } - ], - "currentWidth": 6 - } - ], - "tableView": false, - "hideOnChildrenHidden": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "hidden": false, - "clearOnHide": false, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "tree": false, - "lazyLoad": false, - "autoAdjust": false, - "id": "e5j0jj4" - }, - { - "label": "Enter PIDs and Land Descriptions below", - "tooltip": "Select the 'X' button to delete an entry.", - "reorder": false, - "addAnotherPosition": "bottom", - "layoutFixed": false, - "enableRowGroups": false, - "initEmpty": false, - "hideLabel": true, - "tableView": false, - "defaultValue": [ - { - "Section2-LegallyTitled-PID": "", - "SiteAddress-LegallyTitled-PID": "", - "Section2-LegallyTitled-LandDescription": "", - "SiteAddress-LegallyTitled-LandDescription": "" - } - ], - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "key": "Section2-LegallyTitled-PIDColumn1", - "type": "datagrid", - "input": true, - "components": [ - { - "title": "Entries", - "collapsible": false, - "hideLabel": true, - "key": "panel1", - "type": "panel", - "label": "Panel", - "input": false, - "tableView": false, - "components": [ - { - "key": "cols3", - "type": "columns", - "input": false, - "label": "Columns - 2", - "columns": [ - { - "pull": 0, - "push": 0, - "size": "md", - "width": 6, - "offset": 0, - "components": [ - { - "key": "Section2-LegallyTitled-PID", - "type": "textfield", - "input": true, - "label": "PID", - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "inputMask": "999-999-999", - "tableView": true, - "hideOnChildrenHidden": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "e35yp8o" - } - ], - "currentWidth": 6 - }, - { - "pull": 0, - "push": 0, - "size": "md", - "width": 6, - "offset": 0, - "components": [], - "currentWidth": 6 - } - ], - "tableView": false, - "hideOnChildrenHidden": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "hidden": false, - "clearOnHide": false, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "tree": false, - "lazyLoad": false, - "autoAdjust": false, - "id": "edxz0kc" - }, - { - "key": "Section2-LegallyTitled-LandDescription", - "type": "textarea", - "input": true, - "label": "Land Description", - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "", - "minWords": "", - "maxWords": "" - }, - "tableView": true, - "autoExpand": false, - "inputFormat": "plain", - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "rows": 3, - "wysiwyg": false, - "editor": "", - "fixedSize": true, - "id": "eg4rrls" - } - ], - "id": "ehjtgz000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "hidden": false, - "clearOnHide": false, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "tree": false, - "lazyLoad": false, - "theme": "default", - "breadcrumb": "default" - } - ], - "hideOnChildrenHidden": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "tree": true, - "lazyLoad": false, - "disableAddingRemovingRows": false, - "id": "edwqg5s" - } - ], - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "clearOnHide": false, - "refreshOn": "", - "redrawOn": "", - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "tree": false, - "lazyLoad": false, - "id": "eljmet" - }, - { - "title": "For Untitled Crown Land (Impacted Property)", - "theme": "default", - "tooltip": "", - "customClass": "", - "collapsible": false, - "hidden": false, - "hideLabel": false, - "disabled": false, - "modalEdit": false, - "key": "Section2-forUntitledCrownLand2", - "tags": [], - "properties": {}, - "customConditional": "", - "conditional": { - "json": "", - "show": true, - "when": "landOwnershipImpactedPropertyPleaseSelectAllThatApply", - "eq": "untitledCrown" - }, - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "panel", - "label": "", - "breadcrumb": "default", - "tabindex": "", - "input": false, - "collapsed": false, - "tableView": false, - "components": [ - { - "label": "Crown Land Entries", - "labelPosition": "top", - "description": "", - "tooltip": "", - "disableAddingRemovingRows": false, - "conditionalAddButton": "", - "reorder": false, - "addAnother": "", - "addAnotherPosition": "bottom", - "layoutFixed": false, - "enableRowGroups": false, - "initEmpty": false, - "customClass": "", - "tabindex": "", - "hidden": false, - "hideLabel": true, - "autofocus": false, - "disabled": false, - "tableView": false, - "modalEdit": false, - "defaultValue": [ - { - "Section2-LegallyTitled-PID": "", - "SiteAddress-UntitledCrown-PIN": "", - "Section2-LegallyTitled-LandDescription": "", - "SiteAddress-UntitledCrown-LandDescription": "" - } - ], - "persistent": true, - "protected": false, - "dbIndex": false, - "encrypted": false, - "redrawOn": "", - "clearOnHide": true, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "allowCalculateOverride": false, - "validateOn": "change", - "validate": { - "required": false, - "minLength": "", - "maxLength": "", - "customMessage": "", - "custom": "", - "customPrivate": false, - "json": "", - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "errorLabel": "", - "errors": "", - "key": "Section2-UntitledCrown-PINColumn1", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "datagrid", - "input": true, - "components": [ - { - "title": "Crown Land", - "theme": "default", - "tooltip": "", - "customClass": "", - "collapsible": false, - "hidden": false, - "hideLabel": true, - "dataGridLabel": false, - "disabled": false, - "modalEdit": false, - "key": "panel1", - "tags": [], - "properties": {}, - "customConditional": "", - "conditional": { - "json": "", - "show": null, - "when": null, - "eq": "" - }, - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "panel", - "label": "", - "breadcrumb": "default", - "tabindex": "", - "input": false, - "tableView": false, - "components": [ - { - "key": "cols3", - "type": "columns", - "input": false, - "label": "Columns - 2", - "columns": [ - { - "pull": 0, - "push": 0, - "size": "md", - "width": 6, - "offset": 0, - "components": [ - { - "label": "PIN", - "tableView": true, - "key": "Section2-LegallyTitled-PID", - "type": "textfield", - "input": true, - "hideOnChildrenHidden": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "e6g3hkp" - } - ], - "currentWidth": 6 - }, - { - "pull": 0, - "push": 0, - "size": "md", - "width": 6, - "offset": 0, - "components": [], - "currentWidth": 6 - } - ], - "tableView": false, - "hideOnChildrenHidden": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "hidden": false, - "clearOnHide": false, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "tree": false, - "lazyLoad": false, - "autoAdjust": false, - "id": "eqa4hvn" - }, - { - "label": "Land Description or metes and bounds", - "autoExpand": false, - "tableView": true, - "inputFormat": "plain", - "key": "Section2-LegallyTitled-LandDescription", - "type": "textarea", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "", - "minWords": "", - "maxWords": "" - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "rows": 3, - "wysiwyg": false, - "editor": "", - "fixedSize": true, - "id": "esiwlom" - } - ], - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "clearOnHide": false, - "refreshOn": "", - "redrawOn": "", - "labelPosition": "top", - "description": "", - "errorLabel": "", - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "tree": false, - "lazyLoad": false, - "id": "emjblk6000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" - } - ], - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "unique": false, - "refreshOn": "", - "dataGridLabel": false, - "widget": null, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "tree": true, - "lazyLoad": false, - "id": "ecdu066" - }, - { - "label": "And if available:", - "reorder": false, - "addAnotherPosition": "bottom", - "layoutFixed": false, - "enableRowGroups": false, - "initEmpty": false, - "hideLabel": true, - "tableView": false, - "defaultValue": [ - { - "Section2-UntitledCrown-CrownLandFileNumbers": "", - "SiteAddress-UntitledCrown-CrownLandFileNumbers": "" - } - ], - "key": "Section2-UntitledCrownLand-FileNumberColumn1", - "type": "datagrid", - "input": true, - "components": [ - { - "key": "Section2-UntitledCrown-CrownLandFileNumbers", - "type": "textfield", - "input": true, - "label": "Crown Land File Numbers", - "tableView": true, - "id": "eh8kmqu0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false - } - ], - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "tree": true, - "lazyLoad": false, - "disableAddingRemovingRows": false, - "id": "ebjum0p" - } - ], - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "clearOnHide": false, - "refreshOn": "", - "redrawOn": "", - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "tree": false, - "lazyLoad": false, - "id": "e6t7knc" - }, - { - "title": "For untitled municipal land (Impacted Property)", - "theme": "default", - "tooltip": "", - "customClass": "", - "collapsible": false, - "hidden": false, - "hideLabel": false, - "disabled": false, - "modalEdit": false, - "key": "Section2-forUntitledCrownLand3", - "tags": [], - "properties": {}, - "customConditional": "", - "conditional": { - "json": "", - "show": true, - "when": "landOwnershipImpactedPropertyPleaseSelectAllThatApply", - "eq": "untitledMunicipal" - }, - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "panel", - "label": "", - "breadcrumb": "default", - "tabindex": "", - "input": false, - "collapsed": false, - "tableView": false, - "components": [ - { - "key": "Section2-LegallyTitled-LandDescription1", - "type": "textarea", - "input": true, - "label": "Land Description", - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "", - "minWords": "", - "maxWords": "" - }, - "tableView": true, - "autoExpand": false, - "inputFormat": "plain", - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "rows": 3, - "wysiwyg": false, - "editor": "", - "fixedSize": true, - "id": "eze39c" - } - ], - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "clearOnHide": false, - "refreshOn": "", - "redrawOn": "", - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "tree": false, - "lazyLoad": false, - "id": "ewwn6y8" - } - ], - "id": "e8qmdma" - }, - { - "html": "

Part 3 - Document Summary

 

", - "label": "Content", - "customClass": "", - "refreshOnChange": false, - "hidden": false, - "modalEdit": false, - "key": "content5", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "content", - "input": false, - "tableView": false, - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "id": "ewlel6g" - }, - { - "title": "", - "theme": "default", - "tooltip": "", - "customClass": "", - "collapsible": false, - "hidden": false, - "hideLabel": false, - "disabled": false, - "modalEdit": false, - "key": "panel8", - "tags": [], - "properties": {}, - "customConditional": "", - "conditional": { - "json": "", - "show": null, - "when": null, - "eq": "" - }, - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "panel", - "label": "Panel", - "breadcrumb": "default", - "tabindex": "", - "input": false, - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "clearOnHide": false, - "refreshOn": "", - "redrawOn": "", - "tableView": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "tree": false, - "lazyLoad": false, - "components": [ - { - "html": "

List all known site investigation, risk assessment (including screening level risk assessment), remediation plan and confirmation of remediation reports comleted and directly supporting correspondence submitted (for source site and offsite impacted sites). 

List documents in order from newest to oldest.

", - "label": "Content", - "customClass": "", - "refreshOnChange": false, - "hidden": false, - "modalEdit": false, - "key": "content8", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "content", - "input": false, - "tableView": false, - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "id": "eevyl1r" - }, - { - "label": "", - "reorder": false, - "addAnotherPosition": "bottom", - "layoutFixed": false, - "enableRowGroups": false, - "initEmpty": false, - "hideLabel": true, - "tableView": false, - "defaultValue": [ - { - "document": "", - "documentTitle": "", - "authorCompany": "", - "documentDate": "00/00/0000" - } - ], - "key": "dataGrid2", - "type": "datagrid", - "input": true, - "components": [ - { - "title": "Document", - "collapsible": false, - "key": "documents", - "type": "panel", - "label": "Documents", - "input": false, - "tableView": false, - "components": [ - { - "label": "Document #:", - "tableView": true, - "key": "document", - "type": "textfield", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "e0ufs5o" - }, - { - "label": "Document Title", - "tableView": true, - "key": "documentTitle", - "type": "textfield", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "e839axn" - }, - { - "label": "Author/Company", - "tableView": true, - "key": "authorCompany", - "type": "textfield", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "eum71oo" - }, - { - "label": "Document Date", - "hideInputLabels": false, - "inputsLabelPosition": "top", - "useLocaleSettings": false, - "tableView": false, - "fields": { - "day": { - "hide": false, - "type": "number", - "placeholder": "", - "required": false - }, - "month": { - "hide": false, - "type": "select", - "placeholder": "", - "required": false - }, - "year": { - "hide": false, - "type": "number", - "placeholder": "", - "required": false - } - }, - "key": "documentDate", - "type": "day", - "input": true, - "defaultValue": "00/00/0000", - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "dayFirst": false, - "id": "egqqs34" - } - ], - "id": "e80y9k8000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "hidden": false, - "clearOnHide": false, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "tree": false, - "lazyLoad": false, - "theme": "default", - "breadcrumb": "default" - } - ], - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "tree": true, - "lazyLoad": false, - "disableAddingRemovingRows": false, - "id": "e1pcqd3" - } - ], - "id": "euq4ro" - }, - { - "html": "

Part 4 - Investigation Summary

 

", - "label": "Content", - "customClass": "", - "refreshOnChange": false, - "hidden": false, - "modalEdit": false, - "key": "content6", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "content", - "input": false, - "tableView": false, - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "id": "e08pdh" - }, - { - "label": "Has an Approval in Principal (AiP) been issued for this site?", - "labelPosition": "top", - "optionsLabelPosition": "right", - "description": "", - "tooltip": "", - "customClass": "", - "tabindex": "", - "inline": false, - "hidden": false, - "hideLabel": false, - "autofocus": false, - "disabled": false, - "tableView": false, - "modalEdit": false, - "values": [ - { - "label": "Yes", - "value": "true", - "shortcut": "" - }, - { - "label": "No", - "value": "false", - "shortcut": "" - } - ], - "dataType": "", - "persistent": true, - "protected": false, - "dbIndex": false, - "encrypted": false, - "redrawOn": "", - "clearOnHide": true, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "allowCalculateOverride": false, - "validate": { - "required": false, - "onlyAvailableItems": false, - "customMessage": "", - "custom": "", - "customPrivate": false, - "json": "", - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "errorLabel": "", - "errors": "", - "key": "hasAnApprovalInPrincipalAiPBeenIssuedForThisSite", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "radio", - "input": true, - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "unique": false, - "refreshOn": "", - "dataGridLabel": false, - "widget": null, - "validateOn": "change", - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "inputType": "radio", - "fieldSet": false, - "id": "etgpg9", - "defaultValue": "" - }, - { - "html": "

If an Approval in Principle (AIP) has been issued and this SoSC form is being submitted as part of a Certificate of Compliance, you do not need to complete PART 4.

If an AiP has not been issued, or if other circumstances require completion of section 4, please complete PARTS 4.1 to 4.8 below where indicated.

 

", - "label": "Content", - "customClass": "", - "refreshOnChange": false, - "hidden": false, - "modalEdit": false, - "key": "content7", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "content", - "input": false, - "tableView": false, - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "id": "e4z1cma" - }, - { - "title": "SECTION I - Investigations Completed", - "collapsible": false, - "key": "sectionIInvestigationsCompleted", - "conditional": { - "show": true, - "when": "hasAnApprovalInPrincipalAiPBeenIssuedForThisSite", - "eq": "false" - }, - "type": "panel", - "label": "Panel", - "input": false, - "tableView": false, - "components": [ - { - "title": "", - "collapsible": false, - "key": "panel2", - "type": "panel", - "label": "Panel", - "input": false, - "tableView": false, - "components": [ - { - "html": "

Stage 1 PSI

", - "label": "Content", - "refreshOnChange": false, - "key": "content9", - "type": "content", - "input": false, - "tableView": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "id": "e3pl2xr" - }, - { - "label": "Completed? ", - "optionsLabelPosition": "right", - "inline": false, - "tableView": false, - "values": [ - { - "label": "Yes", - "value": "yes", - "shortcut": "" - }, - { - "label": "No", - "value": "no", - "shortcut": "" - }, - { - "label": "N/A", - "value": "nA", - "shortcut": "" - } - ], - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "onlyAvailableItems": false - }, - "key": "completed", - "type": "radio", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "inputType": "radio", - "fieldSet": false, - "id": "e5mdhfh" - }, - { - "label": "Includes Stage 1 PSI information as listed in CSR Section 58 and any current applicable ministry protocols, guidelines, checklists, etc.?", - "optionsLabelPosition": "right", - "inline": false, - "tableView": false, - "values": [ - { - "label": "Yes", - "value": "yes", - "shortcut": "" - }, - { - "label": "No", - "value": "no", - "shortcut": "" - }, - { - "label": "N/A", - "value": "nA", - "shortcut": "" - } - ], - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "onlyAvailableItems": false - }, - "key": "includesStage1PsiInformationAsListedInCsrSection58AndAnyCurrentApplicableMinistryProtocolsGuidelinesChecklistsEtc", - "type": "radio", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "inputType": "radio", - "fieldSet": false, - "id": "eaori8x" - }, - { - "html": "

Stage 2 PSI

", - "label": "Content", - "refreshOnChange": false, - "key": "content10", - "type": "content", - "input": false, - "tableView": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "id": "epv4kl" - }, - { - "label": "Completed? ", - "optionsLabelPosition": "right", - "inline": false, - "tableView": false, - "values": [ - { - "label": "Yes", - "value": "yes", - "shortcut": "" - }, - { - "label": "No", - "value": "no", - "shortcut": "" - }, - { - "label": "N/A", - "value": "nA", - "shortcut": "" - } - ], - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "onlyAvailableItems": false - }, - "key": "completed1", - "type": "radio", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "inputType": "radio", - "fieldSet": false, - "id": "evp0dxp" - }, - { - "label": "Includes Stage 2 PSI information as listed in CSR Section 59 and any current applicable ministry protocols, guidelines, checklists, etc.?", - "optionsLabelPosition": "right", - "inline": false, - "tableView": false, - "values": [ - { - "label": "Yes", - "value": "yes", - "shortcut": "" - }, - { - "label": "No", - "value": "no", - "shortcut": "" - }, - { - "label": "N/A", - "value": "nA", - "shortcut": "" - } - ], - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "onlyAvailableItems": false - }, - "key": "includesStage1PsiInformationAsListedInCsrSection58AndAnyCurrentApplicableMinistryProtocolsGuidelinesChecklistsEtc1", - "type": "radio", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "inputType": "radio", - "fieldSet": false, - "id": "ep82c5k" - }, - { - "html": "

DSI

", - "label": "Content", - "refreshOnChange": false, - "key": "content11", - "type": "content", - "input": false, - "tableView": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "id": "era84nd" - }, - { - "label": "Completed? ", - "optionsLabelPosition": "right", - "inline": false, - "tableView": false, - "values": [ - { - "label": "Yes", - "value": "yes", - "shortcut": "" - }, - { - "label": "No", - "value": "no", - "shortcut": "" - }, - { - "label": "N/A", - "value": "nA", - "shortcut": "" - } - ], - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "onlyAvailableItems": false - }, - "key": "completed2", - "type": "radio", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "inputType": "radio", - "fieldSet": false, - "id": "e1o53pv" - }, - { - "label": "Includes DSI information as listed in CSR Section 59 and any current applicable ministry protocols, guidelines, checklists, etc.?", - "optionsLabelPosition": "right", - "inline": false, - "tableView": false, - "values": [ - { - "label": "Yes", - "value": "yes", - "shortcut": "" - }, - { - "label": "No", - "value": "no", - "shortcut": "" - }, - { - "label": "N/A", - "value": "nA", - "shortcut": "" - } - ], - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "onlyAvailableItems": false - }, - "key": "includesStage1PsiInformationAsListedInCsrSection58AndAnyCurrentApplicableMinistryProtocolsGuidelinesChecklistsEtc2", - "type": "radio", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "inputType": "radio", - "fieldSet": false, - "id": "eaetjce" - }, - { - "html": "

Other Reports

", - "label": "Content", - "refreshOnChange": false, - "key": "content12", - "type": "content", - "input": false, - "tableView": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "id": "e54l6dg" - }, - { - "label": "Completed? ", - "optionsLabelPosition": "right", - "inline": false, - "tableView": false, - "values": [ - { - "label": "Yes", - "value": "yes", - "shortcut": "" - }, - { - "label": "No", - "value": "no", - "shortcut": "" - }, - { - "label": "N/A", - "value": "nA", - "shortcut": "" - } - ], - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "onlyAvailableItems": false - }, - "key": "completed3", - "type": "radio", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "inputType": "radio", - "fieldSet": false, - "id": "enqzxx" - }, - { - "label": "According to other guidelines? (Provide explanation in notes below. Indicate how reports assist understanding of conditions and remediation.)", - "optionsLabelPosition": "right", - "inline": false, - "tableView": false, - "values": [ - { - "label": "Yes", - "value": "yes", - "shortcut": "" - }, - { - "label": "No", - "value": "no", - "shortcut": "" - }, - { - "label": "N/A", - "value": "nA", - "shortcut": "" - } - ], - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "onlyAvailableItems": false - }, - "key": "includesStage1PsiInformationAsListedInCsrSection58AndAnyCurrentApplicableMinistryProtocolsGuidelinesChecklistsEtc3", - "type": "radio", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "inputType": "radio", - "fieldSet": false, - "id": "epuetea" - }, - { - "label": "Notes", - "tableView": true, - "key": "notes", - "type": "textfield", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "e40v61c" - } - ], - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "hidden": false, - "clearOnHide": false, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "tree": false, - "lazyLoad": false, - "theme": "default", - "breadcrumb": "default", - "id": "e5czdm" - }, - { - "html": "

If completed investigation reports are not adequate or if reports are titled differently or have a different scope than those listed above in accordance with the Contaminated Sites Regulation (i.e. PSI, DSI), complete Section 4.8 (Investigation or Interpretation Issues)

", - "label": "Content", - "refreshOnChange": false, - "key": "content66", - "type": "content", - "input": false, - "tableView": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "id": "eckn0k" - } - ], - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "hidden": false, - "clearOnHide": false, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "tree": false, - "lazyLoad": false, - "theme": "default", - "breadcrumb": "default", - "id": "eqjsu9p" - }, - { - "title": "SECTION II - Site Conditions", - "collapsible": false, - "key": "sectionIiSiteConditions", - "conditional": { - "show": true, - "when": "hasAnApprovalInPrincipalAiPBeenIssuedForThisSite", - "eq": "false" - }, - "type": "panel", - "label": "Panel", - "input": false, - "tableView": false, - "components": [ - { - "label": "Topography", - "labelPosition": "top", - "placeholder": "", - "description": "Describe steepness, direction of slope and position of site in relation to surrounding land", - "tooltip": "", - "prefix": "", - "suffix": "", - "widget": { - "type": "input" - }, - "displayMask": "", - "editor": "", - "autoExpand": false, - "customClass": "", - "tabindex": "", - "autocomplete": "", - "hidden": false, - "hideLabel": false, - "showWordCount": false, - "showCharCount": false, - "autofocus": false, - "spellcheck": true, - "disabled": false, - "tableView": true, - "modalEdit": false, - "multiple": false, - "persistent": true, - "inputFormat": "html", - "protected": false, - "dbIndex": false, - "case": "", - "truncateMultipleSpaces": false, - "encrypted": false, - "redrawOn": "", - "clearOnHide": true, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "allowCalculateOverride": false, - "validateOn": "change", - "validate": { - "required": true, - "pattern": "", - "customMessage": "", - "custom": "", - "customPrivate": false, - "json": "", - "minLength": "", - "maxLength": "", - "minWords": "", - "maxWords": "", - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "unique": false, - "errorLabel": "", - "errors": "", - "key": "topography", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "textarea", - "rows": 3, - "wysiwyg": false, - "input": true, - "refreshOn": "", - "dataGridLabel": false, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputMask": "", - "fixedSize": true, - "id": "e0d63ci", - "defaultValue": "" - }, - { - "label": "Stratigraphy", - "labelPosition": "top", - "placeholder": "", - "description": "Describe depth and thickness, grain size, etc. of typical stratigraphic components and note depth to cemented or very compact materials, bedrock / refusal, etc.", - "tooltip": "", - "prefix": "", - "suffix": "", - "widget": { - "type": "input" - }, - "displayMask": "", - "editor": "", - "autoExpand": false, - "customClass": "", - "tabindex": "", - "autocomplete": "", - "hidden": false, - "hideLabel": false, - "showWordCount": false, - "showCharCount": false, - "autofocus": false, - "spellcheck": true, - "disabled": false, - "tableView": true, - "modalEdit": false, - "multiple": false, - "persistent": true, - "inputFormat": "html", - "protected": false, - "dbIndex": false, - "case": "", - "truncateMultipleSpaces": false, - "encrypted": false, - "redrawOn": "", - "clearOnHide": true, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "allowCalculateOverride": false, - "validateOn": "change", - "validate": { - "required": true, - "pattern": "", - "customMessage": "", - "custom": "", - "customPrivate": false, - "json": "", - "minLength": "", - "maxLength": "", - "minWords": "", - "maxWords": "", - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "unique": false, - "errorLabel": "", - "errors": "", - "key": "stratigraphy", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "textarea", - "rows": 3, - "wysiwyg": false, - "input": true, - "refreshOn": "", - "dataGridLabel": false, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputMask": "", - "fixedSize": true, - "id": "etgkvg", - "defaultValue": "" - }, - { - "label": "Hydrogeology", - "labelPosition": "top", - "placeholder": "", - "description": "Describe groundwater levels, confining / semi-confining layers, flow velocity and hydraulic conductivity. Provide arguments and supporting data to show compliance with Protocol 21 \"Water Use Determination\" where a specified groundwater use (DW, AW, IW or LW) has been determined not to apply. Provide explicit statements and description for every geological unit where an exemption from a specified water use is proposed to apply (add additional pages if necessary).", - "tooltip": "", - "prefix": "", - "suffix": "", - "widget": { - "type": "input" - }, - "displayMask": "", - "editor": "", - "autoExpand": false, - "customClass": "", - "tabindex": "", - "autocomplete": "", - "hidden": false, - "hideLabel": false, - "showWordCount": false, - "showCharCount": false, - "autofocus": false, - "spellcheck": true, - "disabled": false, - "tableView": true, - "modalEdit": false, - "multiple": false, - "persistent": true, - "inputFormat": "html", - "protected": false, - "dbIndex": false, - "case": "", - "truncateMultipleSpaces": false, - "encrypted": false, - "redrawOn": "", - "clearOnHide": true, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "allowCalculateOverride": false, - "validateOn": "change", - "validate": { - "required": true, - "pattern": "", - "customMessage": "", - "custom": "", - "customPrivate": false, - "json": "", - "minLength": "", - "maxLength": "", - "minWords": "", - "maxWords": "", - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "unique": false, - "errorLabel": "", - "errors": "", - "key": "hydrogeology", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "textarea", - "rows": 3, - "wysiwyg": false, - "input": true, - "refreshOn": "", - "dataGridLabel": false, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputMask": "", - "fixedSize": true, - "id": "ejzhbnb", - "defaultValue": "" - }, - { - "label": "Surface water features - freshwater ", - "labelPosition": "top", - "placeholder": "", - "description": "List name, direction and distance to nearest surface water bodies and the characteristics (e.g., relative size / flow) of the water body", - "tooltip": "", - "prefix": "", - "suffix": "", - "widget": { - "type": "input" - }, - "displayMask": "", - "editor": "", - "autoExpand": false, - "customClass": "", - "tabindex": "", - "autocomplete": "", - "hidden": false, - "hideLabel": false, - "showWordCount": false, - "showCharCount": false, - "autofocus": false, - "spellcheck": true, - "disabled": false, - "tableView": true, - "modalEdit": false, - "multiple": false, - "persistent": true, - "inputFormat": "html", - "protected": false, - "dbIndex": false, - "case": "", - "truncateMultipleSpaces": false, - "encrypted": false, - "redrawOn": "", - "clearOnHide": true, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "allowCalculateOverride": false, - "validateOn": "change", - "validate": { - "required": true, - "pattern": "", - "customMessage": "", - "custom": "", - "customPrivate": false, - "json": "", - "minLength": "", - "maxLength": "", - "minWords": "", - "maxWords": "", - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "unique": false, - "errorLabel": "", - "errors": "", - "key": "surfaceWaterFeaturesFreshwater", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "textarea", - "rows": 3, - "wysiwyg": false, - "input": true, - "refreshOn": "", - "dataGridLabel": false, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputMask": "", - "fixedSize": true, - "id": "etp7mp", - "defaultValue": "" - }, - { - "label": "Surface water features - marine waters", - "labelPosition": "top", - "placeholder": "", - "description": "List name, direction and distance to nearest surface water bodies and the characteristics (e.g., relative size / flow) of the water body", - "tooltip": "", - "prefix": "", - "suffix": "", - "widget": { - "type": "input" - }, - "displayMask": "", - "editor": "", - "autoExpand": false, - "customClass": "", - "tabindex": "", - "autocomplete": "", - "hidden": false, - "hideLabel": false, - "showWordCount": false, - "showCharCount": false, - "autofocus": false, - "spellcheck": true, - "disabled": false, - "tableView": true, - "modalEdit": false, - "multiple": false, - "persistent": true, - "inputFormat": "html", - "protected": false, - "dbIndex": false, - "case": "", - "truncateMultipleSpaces": false, - "encrypted": false, - "redrawOn": "", - "clearOnHide": true, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "allowCalculateOverride": false, - "validateOn": "change", - "validate": { - "required": true, - "pattern": "", - "customMessage": "", - "custom": "", - "customPrivate": false, - "json": "", - "minLength": "", - "maxLength": "", - "minWords": "", - "maxWords": "", - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "unique": false, - "errorLabel": "", - "errors": "", - "key": "surfaceWaterFeaturesMarineWaters", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "textarea", - "rows": 3, - "wysiwyg": false, - "input": true, - "refreshOn": "", - "dataGridLabel": false, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputMask": "", - "fixedSize": true, - "id": "eng6xqr", - "defaultValue": "" - } - ], - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "hidden": false, - "clearOnHide": false, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "tree": false, - "lazyLoad": false, - "theme": "default", - "breadcrumb": "default", - "id": "ejah089" - }, - { - "title": "SECTION III - Land Use", - "collapsible": false, - "key": "sectionIiiLandUse", - "conditional": { - "show": true, - "when": "hasAnApprovalInPrincipalAiPBeenIssuedForThisSite", - "eq": "false" - }, - "type": "panel", - "label": "Panel", - "input": false, - "tableView": false, - "components": [ - { - "html": "

Please indicate land use for each applicable area

", - "label": "Content", - "refreshOnChange": false, - "key": "content14", - "type": "content", - "input": false, - "tableView": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "id": "enxqvoe" - }, - { - "label": "Onsite: Site", - "description": "Description of current land use(s)/activities:", - "autoExpand": false, - "tableView": true, - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "", - "minWords": "", - "maxWords": "" - }, - "key": "onsiteSite", - "type": "textarea", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "html", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "rows": 3, - "wysiwyg": false, - "editor": "", - "fixedSize": true, - "id": "e6rs9wg" - }, - { - "label": "Offsite: North", - "description": "Description of current land use(s)/activities:", - "autoExpand": false, - "tableView": true, - "key": "offsiteNorth", - "type": "textarea", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "", - "minWords": "", - "maxWords": "" - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "html", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "rows": 3, - "wysiwyg": false, - "editor": "", - "fixedSize": true, - "id": "e7l6j3" - }, - { - "label": "Offsite: East", - "description": "Description of current land use(s)/activities:", - "autoExpand": false, - "tableView": true, - "key": "offsiteEast", - "type": "textarea", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "", - "minWords": "", - "maxWords": "" - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "html", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "rows": 3, - "wysiwyg": false, - "editor": "", - "fixedSize": true, - "id": "es0gn0e" - }, - { - "label": "Offsite: South", - "description": "Description of current land use(s)/activities:", - "autoExpand": false, - "tableView": true, - "key": "offsiteSouth", - "type": "textarea", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "", - "minWords": "", - "maxWords": "" - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "html", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "rows": 3, - "wysiwyg": false, - "editor": "", - "fixedSize": true, - "id": "eizhyma" - }, - { - "label": "Offsite: West", - "description": "Description of current land use(s)/activities:", - "autoExpand": false, - "tableView": true, - "key": "offsiteWest", - "type": "textarea", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "", - "minWords": "", - "maxWords": "" - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "html", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "rows": 3, - "wysiwyg": false, - "editor": "", - "fixedSize": true, - "id": "eajh7y" - }, - { - "label": "Proposed land use of site", - "optionsLabelPosition": "right", - "inline": false, - "tableView": false, - "values": [ - { - "label": "Same as above", - "value": "sameAsAbove", - "shortcut": "" - }, - { - "label": "Other", - "value": "other", - "shortcut": "" - } - ], - "key": "proposedLandUseOfSite", - "type": "radio", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "onlyAvailableItems": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "inputType": "radio", - "fieldSet": false, - "id": "ef9c7xv" - }, - { - "label": "Describe:", - "autoExpand": false, - "tableView": true, - "key": "describe", - "conditional": { - "show": true, - "when": "proposedLandUseOfSite", - "eq": "other" - }, - "type": "textarea", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "", - "minWords": "", - "maxWords": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "html", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "rows": 3, - "wysiwyg": false, - "editor": "", - "fixedSize": true, - "id": "enenb" - } - ], - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "hidden": false, - "clearOnHide": false, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "tree": false, - "lazyLoad": false, - "theme": "default", - "breadcrumb": "default", - "id": "ehd14l6" - }, - { - "title": "SECTION IV - Applicable Numerical Standards and Criteria", - "theme": "default", - "tooltip": "", - "customClass": "", - "collapsible": false, - "hidden": false, - "hideLabel": false, - "disabled": false, - "modalEdit": false, - "key": "sectionIvApplicableNumericalStandardsAndCriteria", - "tags": [], - "properties": {}, - "customConditional": "", - "conditional": { - "json": "", - "show": true, - "when": "hasAnApprovalInPrincipalAiPBeenIssuedForThisSite", - "eq": "false" - }, - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "panel", - "label": "Panel", - "breadcrumb": "default", - "tabindex": "", - "input": false, - "tableView": false, - "components": [ - { - "html": "

Soil (CSR Schedule 3.1)

Property - Source Site

", - "label": "Content", - "refreshOnChange": false, - "key": "content15", - "type": "content", - "input": false, - "tableView": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "id": "epzrwqp" - }, - { - "label": "CSR Land Use - Current", - "optionsLabelPosition": "right", - "tableView": false, - "values": [ - { - "label": "Industrial Land Use (IL)", - "value": "industrialLandUseIl", - "shortcut": "" - }, - { - "label": "Commercial Land Use (CL)", - "value": "commercialLandUseCl", - "shortcut": "" - }, - { - "label": "Residential Land Use High Density (RLHD)", - "value": "residentialLandUseHighDensityRlhd", - "shortcut": "" - }, - { - "label": "Residential Land Use Low Density (RLLD)", - "value": "residentialLandUseLowDensityRlld", - "shortcut": "" - }, - { - "label": "Urban Park Land Use (PL)", - "value": "urbanParkLandUsePl", - "shortcut": "" - }, - { - "label": "Agricultural Land Use (AL)", - "value": "agriculturalLandUseAl", - "shortcut": "" - }, - { - "label": "Wildlands Natural Land Use (WLN)", - "value": "wildlandsNaturalLandUseWln", - "shortcut": "" - }, - { - "label": "Wildlands Reverted Land Use (WLR)", - "value": "wildlandsRevertedLandUseWlr", - "shortcut": "" - }, - { - "label": "Other", - "value": "other", - "shortcut": "" - } - ], - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "onlyAvailableItems": false - }, - "key": "csrLandUseCurrent", - "type": "selectboxes", - "input": true, - "inputType": "checkbox", - "defaultValue": { - "industrialLandUseIl": false, - "commercialLandUseCl": false, - "residentialLandUseHighDensityRlhd": false, - "residentialLandUseLowDensityRlld": false, - "urbanParkLandUsePl": false, - "agriculturalLandUseAl": false, - "wildlandsNaturalLandUseWln": false, - "wildlandsRevertedLandUseWlr": false, - "other": false - }, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "fieldSet": false, - "inline": false, - "id": "e24v93" - }, - { - "label": "If 'Other' is specified above, please explain: (e.g. applicable or excluded guidance, protocols or policies specific to the site)", - "autoExpand": false, - "tableView": true, - "key": "ifOtherIsSpecifiedAbovePleaseExplainEGApplicableOrExcludedGuidanceProtocolsOrPoliciesSpecificToTheSite", - "conditional": { - "show": true, - "when": "csrLandUseCurrent", - "eq": "other" - }, - "type": "textarea", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "", - "minWords": "", - "maxWords": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "html", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "rows": 3, - "wysiwyg": false, - "editor": "", - "fixedSize": true, - "id": "e4nly1" - }, - { - "label": "Notes: If 'Other' standards selected above, provide rationale for why a typical standard does not apply:", - "autoExpand": false, - "tableView": true, - "key": "notesIfOtherStandardsSelectedAboveProvideRationaleForWhyATypicalStandardDoesNotApply", - "conditional": { - "show": true, - "when": "csrLandUseCurrent", - "eq": "other" - }, - "type": "textarea", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "", - "minWords": "", - "maxWords": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "html", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "rows": 3, - "wysiwyg": false, - "editor": "", - "fixedSize": true, - "id": "ebde74r" - }, - { - "label": "Have Protocol 2 site-specific standards been applied?", - "optionsLabelPosition": "right", - "inline": false, - "tableView": false, - "values": [ - { - "label": "Yes", - "value": "yes", - "shortcut": "" - }, - { - "label": "No", - "value": "no", - "shortcut": "" - } - ], - "key": "haveProtocol2SiteSpecificStandardsBeenApplied", - "type": "radio", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "onlyAvailableItems": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "inputType": "radio", - "fieldSet": false, - "id": "exwmue8" - }, - { - "label": "Note: If P2 site-specific numerical standards selected above, identify the substance and provide rationale for application of the site-specific numerical standard.", - "autoExpand": false, - "tableView": true, - "key": "noteIfP2SiteSpecificNumericalStandardsSelectedAboveIdentifyTheSubstanceAndProvideRationaleForApplicationOfTheSiteSpecificNumericalStandard", - "type": "textarea", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "", - "minWords": "", - "maxWords": "" - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "html", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "rows": 3, - "wysiwyg": false, - "editor": "", - "fixedSize": true, - "id": "eu2f997" - }, - { - "label": "Have Protocol 4 site-specific standards been applied?", - "optionsLabelPosition": "right", - "inline": false, - "tableView": false, - "values": [ - { - "label": "Yes", - "value": "yes", - "shortcut": "" - }, - { - "label": "No", - "value": "no", - "shortcut": "" - } - ], - "key": "haveProtocol4SiteSpecificStandardsBeenApplied", - "type": "radio", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "onlyAvailableItems": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "inputType": "radio", - "fieldSet": false, - "id": "ea8eabc" - }, - { - "label": "Note: If P4 background selected above, provide rationale for why the background concentration applies.", - "autoExpand": false, - "tableView": true, - "key": "noteIfP4BackgroundSelectedAboveProvideRationaleForWhyTheBackgroundConcentrationApplies", - "type": "textarea", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "", - "minWords": "", - "maxWords": "" - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "html", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "rows": 3, - "wysiwyg": false, - "editor": "", - "fixedSize": true, - "id": "eztiog" - }, - { - "label": "Does more than one land use apply at this site?", - "optionsLabelPosition": "right", - "inline": false, - "tableView": false, - "values": [ - { - "label": "Yes", - "value": "yes", - "shortcut": "" - }, - { - "label": "No", - "value": "no", - "shortcut": "" - } - ], - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "onlyAvailableItems": false - }, - "key": "haveProtocol4SiteSpecificStandardsBeenApplied1", - "type": "radio", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "inputType": "radio", - "fieldSet": false, - "id": "elpsvca" - }, - { - "label": "If more than one land use applies to the site, specify additional land uses covered by the document, i.e., riparian areas, roadways, etc. include a diagram to clearly show the area(s) with different standards.", - "autoExpand": false, - "tableView": true, - "key": "ifMoreThanOneLandUseAppliesToTheSiteSpecifyAdditionalLandUsesCoveredByTheDocumentIERiparianAreasRoadwaysEtcIncludeADiagramToClearlyShowTheAreaSWithDifferentStandards", - "type": "textarea", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "", - "minWords": "", - "maxWords": "" - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "html", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "rows": 3, - "wysiwyg": false, - "editor": "", - "fixedSize": true, - "id": "ekvvcob" - }, - { - "label": "Attention: attach diagram if more than one land use applies", - "tableView": false, - "defaultValue": false, - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "key": "attentionAttachDiagramIfMoreThanOneLandUseApplies", - "type": "checkbox", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": true, - "labelPosition": "right", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "inputType": "checkbox", - "value": "", - "name": "", - "id": "ez43pr" - }, - { - "label": "CSR Land Use - Proposed", - "optionsLabelPosition": "right", - "tableView": false, - "defaultValue": { - "industrialLandUseIl": false, - "commercialLandUseCl": false, - "residentialLandUseHighDensityRlhd": false, - "residentialLandUseLowDensityRlld": false, - "urbanParkLandUsePl": false, - "agriculturalLandUseAl": false, - "wildlandsNaturalLandUseWln": false, - "wildlandsRevertedLandUseWlr": false, - "other": false - }, - "values": [ - { - "label": "Industrial Land Use (IL)", - "value": "industrialLandUseIl", - "shortcut": "" - }, - { - "label": "Commercial Land Use (CL)", - "value": "commercialLandUseCl", - "shortcut": "" - }, - { - "label": "Residential Land Use High Density (RLHD)", - "value": "residentialLandUseHighDensityRlhd", - "shortcut": "" - }, - { - "label": "Residential Land Use Low Density (RLLD)", - "value": "residentialLandUseLowDensityRlld", - "shortcut": "" - }, - { - "label": "Urban Park Land Use (PL)", - "value": "urbanParkLandUsePl", - "shortcut": "" - }, - { - "label": "Agricultural Land Use (AL)", - "value": "agriculturalLandUseAl", - "shortcut": "" - }, - { - "label": "Wildlands Natural Land Use (WLN)", - "value": "wildlandsNaturalLandUseWln", - "shortcut": "" - }, - { - "label": "Wildlands Reverted Land Use (WLR)", - "value": "wildlandsRevertedLandUseWlr", - "shortcut": "" - }, - { - "label": "Other", - "value": "other", - "shortcut": "" - } - ], - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "onlyAvailableItems": false - }, - "key": "csrLandUseProposed", - "type": "selectboxes", - "input": true, - "inputType": "checkbox", - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "fieldSet": false, - "inline": false, - "id": "ehtn49" - }, - { - "label": "If 'Other' is specified above, please explain: (e.g. applicable or excluded guidance, protocols or policies specific to the site)", - "autoExpand": false, - "tableView": true, - "key": "ifOtherIsSpecifiedAbovePleaseExplainEGApplicableOrExcludedGuidanceProtocolsOrPoliciesSpecificToTheSite1", - "conditional": { - "show": true, - "when": "csrLandUseProposed", - "eq": "other" - }, - "type": "textarea", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "", - "minWords": "", - "maxWords": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "html", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "rows": 3, - "wysiwyg": false, - "editor": "", - "fixedSize": true, - "id": "ewle16h" - }, - { - "label": "Notes: If 'Other' standards selected above, provide rationale for why a typical standard does not apply:", - "autoExpand": false, - "tableView": true, - "key": "notesIfOtherStandardsSelectedAboveProvideRationaleForWhyATypicalStandardDoesNotApply1", - "conditional": { - "show": true, - "when": "csrLandUseProposed", - "eq": "other" - }, - "type": "textarea", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "", - "minWords": "", - "maxWords": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "html", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "rows": 3, - "wysiwyg": false, - "editor": "", - "fixedSize": true, - "id": "emkd1y" - }, - { - "label": "Have Protocol 2 site-specific standards been applied?", - "optionsLabelPosition": "right", - "inline": false, - "tableView": false, - "values": [ - { - "label": "Yes", - "value": "yes", - "shortcut": "" - }, - { - "label": "No", - "value": "no", - "shortcut": "" - } - ], - "key": "haveProtocol2SiteSpecificStandardsBeenApplied1", - "type": "radio", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "onlyAvailableItems": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "inputType": "radio", - "fieldSet": false, - "id": "eq1wesd" - }, - { - "label": "Note: If P2 site-specific numerical standards selected above, identify the substance and provide rationale for application of the site-specific numerical standard.", - "autoExpand": false, - "tableView": true, - "key": "noteIfP2SiteSpecificNumericalStandardsSelectedAboveIdentifyTheSubstanceAndProvideRationaleForApplicationOfTheSiteSpecificNumericalStandard1", - "type": "textarea", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "", - "minWords": "", - "maxWords": "" - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "html", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "rows": 3, - "wysiwyg": false, - "editor": "", - "fixedSize": true, - "id": "eo1fmv" - }, - { - "label": "Have Protocol 4 site-specific standards been applied?", - "optionsLabelPosition": "right", - "inline": false, - "tableView": false, - "values": [ - { - "label": "Yes", - "value": "yes", - "shortcut": "" - }, - { - "label": "No", - "value": "no", - "shortcut": "" - } - ], - "key": "haveProtocol4SiteSpecificStandardsBeenApplied2", - "type": "radio", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "onlyAvailableItems": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "inputType": "radio", - "fieldSet": false, - "id": "em04tuv" - }, - { - "label": "Note: If P4 background selected above, provide rationale for why the background concentration applies.", - "autoExpand": false, - "tableView": true, - "key": "noteIfP4BackgroundSelectedAboveProvideRationaleForWhyTheBackgroundConcentrationApplies1", - "type": "textarea", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "", - "minWords": "", - "maxWords": "" - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "html", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "rows": 3, - "wysiwyg": false, - "editor": "", - "fixedSize": true, - "id": "e736awck" - }, - { - "label": "Does more than one land use apply at this site?", - "optionsLabelPosition": "right", - "inline": false, - "tableView": false, - "values": [ - { - "label": "Yes", - "value": "yes", - "shortcut": "" - }, - { - "label": "No", - "value": "no", - "shortcut": "" - } - ], - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "onlyAvailableItems": false - }, - "key": "multipleLandUse", - "type": "radio", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "inputType": "radio", - "fieldSet": false, - "id": "erk6myf" - }, - { - "label": "If more than one land use applies to the site, specify additional land uses covered by the document, i.e., riparian areas, roadways, etc. include a diagram to clearly show the area(s) with different standards.", - "autoExpand": false, - "tableView": true, - "key": "ifMoreThanOneLandUseAppliesToTheSiteSpecifyAdditionalLandUsesCoveredByTheDocumentIERiparianAreasRoadwaysEtcIncludeADiagramToClearlyShowTheAreaSWithDifferentStandards1", - "conditional": { - "show": true, - "when": "multipleLandUse", - "eq": "yes" - }, - "type": "textarea", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "", - "minWords": "", - "maxWords": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "html", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "rows": 3, - "wysiwyg": false, - "editor": "", - "fixedSize": true, - "id": "e339galn" - }, - { - "label": "Attention: attach diagram if more than one land use applies", - "tableView": false, - "defaultValue": false, - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "key": "attentionAttachDiagramIfMoreThanOneLandUseApplies1", - "conditional": { - "show": true, - "when": "multipleLandUse", - "eq": "yes" - }, - "type": "checkbox", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": true, - "labelPosition": "right", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "inputType": "checkbox", - "value": "", - "name": "", - "id": "enw2hzm" - }, - { - "html": "

Offsite Impacted Property(ies) / Management Area Land Use

", - "label": "Content", - "refreshOnChange": false, - "key": "content16", - "type": "content", - "input": false, - "tableView": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "id": "er8zxoq" - }, - { - "label": "CSR Land Use - Current", - "optionsLabelPosition": "right", - "tableView": false, - "defaultValue": { - "industrialLandUseIl": false, - "commercialLandUseCl": false, - "residentialLandUseHighDensityRlhd": false, - "residentialLandUseLowDensityRlld": false, - "urbanParkLandUsePl": false, - "agriculturalLandUseAl": false, - "wildlandsNaturalLandUseWln": false, - "wildlandsRevertedLandUseWlr": false, - "other": false - }, - "values": [ - { - "label": "Industrial Land Use (IL)", - "value": "industrialLandUseIl", - "shortcut": "" - }, - { - "label": "Commercial Land Use (CL)", - "value": "commercialLandUseCl", - "shortcut": "" - }, - { - "label": "Residential Land Use High Density (RLHD)", - "value": "residentialLandUseHighDensityRlhd", - "shortcut": "" - }, - { - "label": "Residential Land Use Low Density (RLLD)", - "value": "residentialLandUseLowDensityRlld", - "shortcut": "" - }, - { - "label": "Urban Park Land Use (PL)", - "value": "urbanParkLandUsePl", - "shortcut": "" - }, - { - "label": "Agricultural Land Use (AL)", - "value": "agriculturalLandUseAl", - "shortcut": "" - }, - { - "label": "Wildlands Natural Land Use (WLN)", - "value": "wildlandsNaturalLandUseWln", - "shortcut": "" - }, - { - "label": "Wildlands Reverted Land Use (WLR)", - "value": "wildlandsRevertedLandUseWlr", - "shortcut": "" - }, - { - "label": "Other", - "value": "other", - "shortcut": "" - } - ], - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "onlyAvailableItems": false - }, - "key": "csrLandUseCurrentImpacted", - "type": "selectboxes", - "input": true, - "inputType": "checkbox", - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "fieldSet": false, - "inline": false, - "id": "e4z13y" - }, - { - "label": "If 'other' is specified above, please explain: (e.g. applicable or excluded guidance, protocols or policies specific to the site)", - "autoExpand": false, - "tableView": true, - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "", - "minWords": "", - "maxWords": "" - }, - "key": "ifOtherIsSpecifiedAbovePleaseExplainEGApplicableOrExcludedGuidanceProtocolsOrPoliciesSpecificToTheSite2", - "conditional": { - "show": true, - "when": "csrLandUseCurrentImpacted", - "eq": "other" - }, - "type": "textarea", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "html", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "rows": 3, - "wysiwyg": false, - "editor": "", - "fixedSize": true, - "id": "esytwkl" - }, - { - "label": "Notes: provide rationale for why a typical standard does not apply", - "autoExpand": false, - "tableView": true, - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "", - "minWords": "", - "maxWords": "" - }, - "key": "ifOtherIsSpecifiedAbovePleaseExplainEGApplicableOrExcludedGuidanceProtocolsOrPoliciesSpecificToTheSite3", - "conditional": { - "show": true, - "when": "csrLandUseCurrentImpacted", - "eq": "other" - }, - "type": "textarea", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "html", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "rows": 3, - "wysiwyg": false, - "editor": "", - "fixedSize": true, - "id": "ey5bxu7" - }, - { - "label": "Have Protocol 2 site-specific standards been applied?", - "optionsLabelPosition": "right", - "inline": false, - "tableView": false, - "values": [ - { - "label": "Yes", - "value": "yes", - "shortcut": "" - }, - { - "label": "No", - "value": "no", - "shortcut": "" - } - ], - "key": "haveProtocol2SiteSpecificStandardsBeenApplied2", - "type": "radio", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "onlyAvailableItems": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "inputType": "radio", - "fieldSet": false, - "id": "eks5u89" - }, - { - "label": "Note: If P2 site-specific numerical standards selected above, identify the substance and provide rationale for application of the site-specific numerical standard.", - "autoExpand": false, - "tableView": true, - "key": "noteIfP2SiteSpecificNumericalStandardsSelectedAboveIdentifyTheSubstanceAndProvideRationaleForApplicationOfTheSiteSpecificNumericalStandard2", - "type": "textarea", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "", - "minWords": "", - "maxWords": "" - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "html", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "rows": 3, - "wysiwyg": false, - "editor": "", - "fixedSize": true, - "id": "eveexvi" - }, - { - "label": "Have Protocol 4 site-specific standards been applied?", - "optionsLabelPosition": "right", - "inline": false, - "tableView": false, - "values": [ - { - "label": "Yes", - "value": "yes", - "shortcut": "" - }, - { - "label": "No", - "value": "no", - "shortcut": "" - } - ], - "key": "haveProtocol4SiteSpecificStandardsBeenApplied4", - "type": "radio", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "onlyAvailableItems": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "inputType": "radio", - "fieldSet": false, - "id": "ecl4kdi" - }, - { - "label": "Note: If P4 background selected above, provide rationale for why the background concentration applies.", - "autoExpand": false, - "tableView": true, - "key": "noteIfP4BackgroundSelectedAboveProvideRationaleForWhyTheBackgroundConcentrationApplies2", - "type": "textarea", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "", - "minWords": "", - "maxWords": "" - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "html", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "rows": 3, - "wysiwyg": false, - "editor": "", - "fixedSize": true, - "id": "e1vwxs" - }, - { - "html": "

Groundwater (CSR Schedule 3.2)

", - "label": "Content", - "refreshOnChange": false, - "key": "content17", - "type": "content", - "input": false, - "tableView": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "id": "e47bqcv" - }, - { - "label": "Do groundwater standards apply at your site?", - "optionsLabelPosition": "right", - "inline": false, - "tableView": false, - "values": [ - { - "label": "Yes", - "value": "yes", - "shortcut": "" - }, - { - "label": "No", - "value": "no", - "shortcut": "" - } - ], - "key": "doGroundwaterStandardsApplyAtYourSite", - "type": "radio", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "onlyAvailableItems": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "inputType": "radio", - "fieldSet": false, - "id": "eh13wx" - }, - { - "html": "

Groundwater

", - "label": "Content", - "refreshOnChange": false, - "key": "content18", - "type": "content", - "input": false, - "tableView": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "id": "eqg5o7" - }, - { - "label": "Select all that apply ", - "optionsLabelPosition": "right", - "tableView": false, - "values": [ - { - "label": "Aquatic Life (AW) Fresh", - "value": "aquaticLifeAwFresh", - "shortcut": "" - }, - { - "label": "Aquatic Life (AW) Marine", - "value": "aquaticLifeAwMarine", - "shortcut": "" - }, - { - "label": "Irrigation (IW)", - "value": "irrigationIw", - "shortcut": "" - }, - { - "label": "Livestock (LW)", - "value": "livestockLw", - "shortcut": "" - }, - { - "label": "Drinking Water (DW)", - "value": "drinkingWaterDw", - "shortcut": "" - }, - { - "label": "No Water Use", - "value": "noWaterUse", - "shortcut": "" - } - ], - "key": "selectAllThatApply", - "type": "selectboxes", - "input": true, - "inputType": "checkbox", - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "onlyAvailableItems": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "fieldSet": false, - "inline": false, - "id": "en2a4pq" - }, - { - "label": "Has a Protocol 9 background concentration been applied? ", - "optionsLabelPosition": "right", - "inline": false, - "tableView": false, - "values": [ - { - "label": "Yes", - "value": "yes", - "shortcut": "" - }, - { - "label": "No", - "value": "no", - "shortcut": "" - } - ], - "key": "hasAProtocol9BackgroundConcentrationBeenApplied", - "type": "radio", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "onlyAvailableItems": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "inputType": "radio", - "fieldSet": false, - "id": "eimpdh" - }, - { - "label": "Notes: If Protocol 9 background concentration selected, provide rationale for why the background concentration applies.", - "autoExpand": false, - "tableView": true, - "key": "notesIfProtocol9BackgroundConcentrationSelectedProvideRationaleForWhyTheBackgroundConcentrationApplies", - "type": "textarea", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "", - "minWords": "", - "maxWords": "" - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "html", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "rows": 3, - "wysiwyg": false, - "editor": "", - "fixedSize": true, - "id": "e5tilj" - }, - { - "html": "

Surface water (BC Approved Water Quality Guidelines) 

", - "label": "Content", - "refreshOnChange": false, - "key": "content19", - "type": "content", - "input": false, - "tableView": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "id": "eja0cs8" - }, - { - "label": "Do surface water guidelines apply at your site? ", - "optionsLabelPosition": "right", - "inline": false, - "tableView": false, - "values": [ - { - "label": "Yes", - "value": "yes", - "shortcut": "" - }, - { - "label": "No", - "value": "no", - "shortcut": "" - } - ], - "key": "surfaceWaterGuidelinesApply", - "type": "radio", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "onlyAvailableItems": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "inputType": "radio", - "fieldSet": false, - "id": "e6ew7lk" - }, - { - "label": "Select all that apply", - "optionsLabelPosition": "right", - "tableView": false, - "values": [ - { - "label": "Ambient freshwater", - "value": "ambientFreshwater", - "shortcut": "" - }, - { - "label": "Ambient marine", - "value": "ambientMarine", - "shortcut": "" - }, - { - "label": "Not Applicable", - "value": "notApplicable", - "shortcut": "" - } - ], - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "onlyAvailableItems": false - }, - "key": "selectAllThatApply1", - "type": "selectboxes", - "input": true, - "inputType": "checkbox", - "defaultValue": { - "ambientFreshwater": false, - "ambientMarine": false, - "notApplicable": false - }, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "fieldSet": false, - "inline": false, - "id": "el4jtnu" - }, - { - "html": "

Vapour (CSR Schedule 3.3)

", - "label": "Content", - "refreshOnChange": false, - "key": "content20", - "type": "content", - "input": false, - "tableView": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "id": "ek320f" - }, - { - "label": "Do vapour standards apply at your site?", - "optionsLabelPosition": "right", - "inline": false, - "tableView": false, - "values": [ - { - "label": "Yes", - "value": "yes", - "shortcut": "" - }, - { - "label": "No", - "value": "no", - "shortcut": "" - } - ], - "key": "vapourStandardsApply", - "type": "radio", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "onlyAvailableItems": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "inputType": "radio", - "fieldSet": false, - "id": "ehz6d3p" - }, - { - "label": "Please indicate all that apply:", - "optionsLabelPosition": "right", - "tableView": false, - "values": [ - { - "label": "Agricultural, Urban park, Residential use (AL, PL, RL)", - "value": "agriculturalUrbanParkResidentialUseAlPlRl", - "shortcut": "" - }, - { - "label": "Commercial use (CL)", - "value": "commercialUseCl", - "shortcut": "" - }, - { - "label": "Industrial use (IL)", - "value": "industrialUseIl", - "shortcut": "" - }, - { - "label": "Parkade", - "value": "parkade", - "shortcut": "" - }, - { - "label": "Other", - "value": "other", - "shortcut": "" - } - ], - "key": "pleaseIndicateAllThatApply", - "type": "selectboxes", - "input": true, - "inputType": "checkbox", - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "onlyAvailableItems": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "fieldSet": false, - "inline": false, - "id": "e2uphxt" - }, - { - "label": "Notes: if other is specified above, include description of assumptions for both current and future development of the site that the selected vapour attenuation factors are based on.", - "autoExpand": false, - "tableView": true, - "key": "notesIfOtherIsSpecifiedAboveIncludeDescriptionOfAssumptionsForBothCurrentAndFutureDevelopmentOfTheSiteThatTheSelectedVapourAttenuationFactorsAreBasedOn", - "type": "textarea", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "", - "minWords": "", - "maxWords": "" - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "html", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "rows": 3, - "wysiwyg": false, - "editor": "", - "fixedSize": true, - "id": "eapxfka" - }, - { - "html": "

Sediment (CSR Schedule 3.4)

", - "label": "Content", - "refreshOnChange": false, - "key": "content21", - "type": "content", - "input": false, - "tableView": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "id": "emfcc6" - }, - { - "label": "Do sediment standards apply at your site?", - "optionsLabelPosition": "right", - "inline": false, - "tableView": false, - "values": [ - { - "label": "Yes", - "value": "yes", - "shortcut": "" - }, - { - "label": "No", - "value": "no", - "shortcut": "" - } - ], - "key": "sedimentStandardsApply", - "type": "radio", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "onlyAvailableItems": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "inputType": "radio", - "fieldSet": false, - "id": "ep179tu" - }, - { - "html": "

Sediment

", - "label": "Content", - "refreshOnChange": false, - "key": "content25", - "type": "content", - "input": false, - "tableView": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "id": "eefkhsr" - }, - { - "html": "

Type of aquatic life:

", - "label": "Content", - "refreshOnChange": false, - "key": "content22", - "type": "content", - "input": false, - "tableView": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "id": "e3thv5" - }, - { - "label": "Freshwater", - "optionsLabelPosition": "right", - "inline": false, - "tableView": false, - "values": [ - { - "label": "Yes", - "value": "yes", - "shortcut": "" - }, - { - "label": "No", - "value": "no", - "shortcut": "" - } - ], - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "onlyAvailableItems": false - }, - "key": "aquaticLifeFreshwater", - "type": "radio", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "inputType": "radio", - "fieldSet": false, - "id": "eiorz7g" - }, - { - "label": "Marine/Estuarine", - "optionsLabelPosition": "right", - "inline": false, - "tableView": false, - "values": [ - { - "label": "Yes", - "value": "yes", - "shortcut": "" - }, - { - "label": "No", - "value": "no", - "shortcut": "" - } - ], - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "onlyAvailableItems": false - }, - "key": "aquaticLifeMarineEstuarine", - "type": "radio", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "inputType": "radio", - "fieldSet": false, - "id": "ejh5scg" - }, - { - "html": "

Type of Habitat:

", - "label": "Content", - "refreshOnChange": false, - "key": "content23", - "type": "content", - "input": false, - "tableView": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "id": "ep3ei0k" - }, - { - "label": "Sensitive", - "optionsLabelPosition": "right", - "inline": false, - "tableView": false, - "values": [ - { - "label": "Yes", - "value": "yes", - "shortcut": "" - }, - { - "label": "No", - "value": "no", - "shortcut": "" - } - ], - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "onlyAvailableItems": false - }, - "key": "sensitive", - "type": "radio", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "inputType": "radio", - "fieldSet": false, - "id": "ey1i3fk" - }, - { - "label": "Typical", - "optionsLabelPosition": "right", - "inline": false, - "tableView": false, - "values": [ - { - "label": "Yes", - "value": "yes", - "shortcut": "" - }, - { - "label": "No", - "value": "no", - "shortcut": "" - } - ], - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "onlyAvailableItems": false - }, - "key": "typical", - "type": "radio", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "inputType": "radio", - "fieldSet": false, - "id": "ehliufd" - } - ], - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "clearOnHide": false, - "refreshOn": "", - "redrawOn": "", - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "tree": false, - "lazyLoad": false, - "id": "ezpn8f" - }, - { - "title": "SECTION V - Areas of Potential Environmental Concern (APEC) and Potential Contaminants of Concern (PCOC) Summary", - "theme": "default", - "tooltip": "", - "customClass": "", - "collapsible": false, - "hidden": false, - "hideLabel": false, - "disabled": false, - "modalEdit": false, - "key": "sectionVAreasOfPotentialEnvironmentalConcernApecAndPotentialContaminantsOfConcernPcocSummary", - "tags": [], - "properties": {}, - "customConditional": "", - "conditional": { - "json": "", - "show": true, - "when": "hasAnApprovalInPrincipalAiPBeenIssuedForThisSite", - "eq": "false" - }, - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "panel", - "label": "Panel", - "breadcrumb": "default", - "tabindex": "", - "input": false, - "tableView": false, - "components": [ - { - "html": "

Provide reference to a figure showing onsite and offsite APECs and PCOCs associated with each APEC 

", - "label": "Content", - "refreshOnChange": false, - "key": "content24", - "type": "content", - "input": false, - "tableView": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "id": "ep4sdn" - }, - { - "label": "add additional entries as necessary:", - "reorder": false, - "addAnotherPosition": "bottom", - "layoutFixed": false, - "enableRowGroups": false, - "initEmpty": false, - "tableView": false, - "defaultValue": [ - { - "report": "", - "figure": "", - "page": "" - } - ], - "key": "dataGrid3", - "type": "datagrid", - "input": true, - "components": [ - { - "title": "References", - "collapsible": false, - "key": "references", - "type": "panel", - "label": "", - "input": false, - "tableView": false, - "components": [ - { - "label": "Report #", - "tableView": true, - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "key": "report", - "type": "textfield", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "e42c3ej" - }, - { - "label": "Figure #", - "tableView": true, - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "key": "figure", - "type": "textfield", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "e1sgs7i" - }, - { - "label": "Page #", - "tableView": true, - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "key": "page", - "type": "textfield", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "es5kcwo" - } - ], - "id": "egwgsw0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "hidden": false, - "clearOnHide": false, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "tree": false, - "lazyLoad": false, - "theme": "default", - "breadcrumb": "default" - } - ], - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "tree": true, - "lazyLoad": false, - "disableAddingRemovingRows": false, - "id": "e7yn7b9" - }, - { - "html": "

Attention:

Include reports listed above outlining APECs and PCOCs

", - "label": "Content", - "refreshOnChange": false, - "key": "content26", - "type": "content", - "input": false, - "tableView": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "id": "ek43j2" - }, - { - "label": "I acknowledge that I will include reports as listed above ", - "tableView": false, - "key": "iAcknowledgeThatIWillIncludeReportsAsListedAbove", - "type": "checkbox", - "input": true, - "defaultValue": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": true, - "labelPosition": "right", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "inputType": "checkbox", - "value": "", - "name": "", - "id": "e7orccq" - }, - { - "html": "

APEC and PCOC Summary

 

APEC Description: Describe location in relation to process source, waste, fill, land use or activity, etc., giving rise to APEC and if APEC is primarily due to soil or water contamination.

PCOC : Indicate products, chemicals, waste type, etc. and / or analytical parameter.

APEC and PCOC summary: List individual substances or groups of substances and their Chemical Abstract Service Numbers as they appear in the applicable schedule of the CSR. Attach lists or tables as needed.

", - "label": "Content", - "refreshOnChange": false, - "key": "content27", - "type": "content", - "input": false, - "tableView": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "id": "el9sxmn" - }, - { - "label": "", - "reorder": false, - "addAnotherPosition": "bottom", - "layoutFixed": false, - "enableRowGroups": false, - "initEmpty": false, - "tableView": false, - "defaultValue": [ - { - "apec": "", - "apecDescription": "", - "pcocS": "", - "pleaseIndicateWhereAnalysesCompleted": { - "soil": false, - "sediment": false, - "groundwater": false, - "surfaceWater": false, - "vapour": false, - "otherPleaseExplainBelow": false, - "other": false - } - } - ], - "key": "dataGrid4", - "type": "datagrid", - "input": true, - "components": [ - { - "title": "Summary", - "collapsible": false, - "key": "summary", - "type": "panel", - "label": "Summaries", - "input": false, - "tableView": false, - "components": [ - { - "label": "APEC #", - "tableView": true, - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "key": "apec", - "type": "textfield", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "ey16rue" - }, - { - "label": "APEC Description", - "autoExpand": false, - "tableView": true, - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "", - "minWords": "", - "maxWords": "" - }, - "key": "apecDescription", - "type": "textarea", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "html", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "rows": 3, - "wysiwyg": false, - "editor": "", - "fixedSize": true, - "id": "euv345s" - }, - { - "label": "PCOC(s)", - "tableView": true, - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "key": "pcocS", - "type": "textfield", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "e7sbcyi" - }, - { - "label": "Please indicate where analyses completed:", - "optionsLabelPosition": "right", - "tableView": false, - "values": [ - { - "label": "Soil", - "value": "soil", - "shortcut": "" - }, - { - "label": "Sediment", - "value": "sediment", - "shortcut": "" - }, - { - "label": "Groundwater", - "value": "groundwater", - "shortcut": "" - }, - { - "label": "Surface Water", - "value": "surfaceWater", - "shortcut": "" - }, - { - "label": "Vapour", - "value": "vapour", - "shortcut": "" - }, - { - "label": "Other (Please explain below)", - "value": "other", - "shortcut": "" - } - ], - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "onlyAvailableItems": false - }, - "key": "pleaseIndicateWhereAnalysesCompleted", - "type": "selectboxes", - "input": true, - "inputType": "checkbox", - "defaultValue": { - "soil": false, - "sediment": false, - "groundwater": false, - "surfaceWater": false, - "vapour": false, - "otherPleaseExplainBelow": false, - "other": false - }, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "fieldSet": false, - "inline": false, - "id": "eg618ak" - }, - { - "label": "'Other' explanation", - "autoExpand": false, - "tableView": true, - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "", - "minWords": "", - "maxWords": "" - }, - "key": "otherExplanation", - "conditional": { - "show": true, - "when": "pleaseIndicateWhereAnalysesCompleted", - "eq": "other" - }, - "type": "textarea", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "html", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "rows": 3, - "wysiwyg": false, - "editor": "", - "fixedSize": true, - "id": "erxxdli" - } - ], - "id": "e09khr20000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "hidden": false, - "clearOnHide": false, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "tree": false, - "lazyLoad": false, - "theme": "default", - "breadcrumb": "default" - } - ], - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "tree": true, - "lazyLoad": false, - "disableAddingRemovingRows": false, - "id": "ei568rj" - } - ], - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "clearOnHide": false, - "refreshOn": "", - "redrawOn": "", - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "tree": false, - "lazyLoad": false, - "id": "e7q3hil" - }, - { - "title": "SECTION VI - Areas of Environmental Concern (AEC) and Contaminants of Concern (COC) Summary", - "theme": "default", - "tooltip": "", - "customClass": "", - "collapsible": false, - "hidden": false, - "hideLabel": false, - "disabled": false, - "modalEdit": false, - "key": "sectionViAreasOfEnvironmentalConcernAecAndContaminantsOfConcernCocSummary", - "tags": [], - "properties": {}, - "customConditional": "", - "conditional": { - "json": "", - "show": true, - "when": "hasAnApprovalInPrincipalAiPBeenIssuedForThisSite", - "eq": "false" - }, - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "panel", - "label": "Panel", - "breadcrumb": "default", - "tabindex": "", - "input": false, - "tableView": false, - "components": [ - { - "html": "

Stage 2 Preliminary Site Investigation (PSI) 

Provide reference to figure(s) showing the AEC and COC associated with each AEC in onsite and offsite soil, water, sediment and/or vapour. Sample locations and corresponding analytical results shall be shown on each figure and in tabular form with reference to applicable standards:

", - "label": "Content", - "refreshOnChange": false, - "key": "content28", - "type": "content", - "input": false, - "tableView": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "id": "e348r8u" - }, - { - "label": "", - "reorder": false, - "addAnotherPosition": "bottom", - "layoutFixed": false, - "enableRowGroups": false, - "initEmpty": false, - "hideLabel": true, - "tableView": false, - "defaultValue": [ - { - "environmentalMedium": "", - "report": "", - "page": "", - "figure": "" - } - ], - "key": "dataGrid5", - "type": "datagrid", - "input": true, - "components": [ - { - "title": "Summary", - "collapsible": false, - "key": "summary", - "type": "panel", - "label": "AEC and COC Summary", - "input": false, - "tableView": false, - "components": [ - { - "label": "Environmental Medium", - "tableView": true, - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "key": "environmentalMedium", - "type": "textfield", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "emrnwt" - }, - { - "label": "Report #", - "tableView": true, - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "key": "report", - "type": "textfield", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "ezjgbqk" - }, - { - "label": "Page #", - "tableView": true, - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "key": "page", - "type": "textfield", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "e93qh3o" - }, - { - "label": "Figure #", - "tableView": true, - "key": "figure", - "type": "textfield", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "eu9o53q" - } - ], - "id": "eipn9d000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "hidden": false, - "clearOnHide": false, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "tree": false, - "lazyLoad": false, - "theme": "default", - "breadcrumb": "default" - } - ], - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "tree": true, - "lazyLoad": false, - "disableAddingRemovingRows": false, - "id": "enyqev" - }, - { - "html": "

Detailed Site Investigation (DSI) 

Provide references to figures (plan and section), with contours, showing the specific lateral and vertical distribution of each contaminant of concern in onsite and offsite soil, sediment, water and vapour. Sections shall be longitudinal and transverse with respect to groundwater flow and include physical conditions (e.g. stratigraphy, water table etc.). Sample locations with corresponding analytical results used to develop each figure shall be shown on the figure and in tabular form with reference to applicable standards:

", - "label": "Content", - "refreshOnChange": false, - "key": "content29", - "type": "content", - "input": false, - "tableView": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "id": "egzo5zb" - }, - { - "label": "", - "reorder": false, - "addAnotherPosition": "bottom", - "layoutFixed": false, - "enableRowGroups": false, - "initEmpty": false, - "hideLabel": true, - "tableView": false, - "defaultValue": [ - { - "environmentalMedium": "", - "report": "", - "page": "", - "figure": "" - } - ], - "key": "dataGrid6", - "type": "datagrid", - "input": true, - "components": [ - { - "title": "", - "collapsible": false, - "key": "summary", - "type": "panel", - "label": "AEC and COC Summary", - "input": false, - "tableView": false, - "components": [ - { - "label": "Environmental Medium", - "tableView": true, - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "key": "environmentalMedium", - "type": "textfield", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "edmm3sb" - }, - { - "label": "Report #", - "tableView": true, - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "key": "report", - "type": "textfield", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "e3mvybo" - }, - { - "label": "Page #", - "tableView": true, - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "key": "page", - "type": "textfield", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "eknllaa" - }, - { - "label": "Figure #", - "tableView": true, - "key": "figure", - "type": "textfield", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "ef617zf" - } - ], - "id": "ebh60il000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "hidden": false, - "clearOnHide": false, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "tree": false, - "lazyLoad": false, - "theme": "default", - "breadcrumb": "default" - } - ], - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "tree": true, - "lazyLoad": false, - "disableAddingRemovingRows": false, - "id": "e5mao0a" - }, - { - "html": "

AEC/APEC and COC Extent of Contamination

", - "label": "Content", - "refreshOnChange": false, - "key": "content30", - "type": "content", - "input": false, - "tableView": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "id": "e0havy" - }, - { - "label": "", - "reorder": false, - "addAnotherPosition": "bottom", - "layoutFixed": false, - "enableRowGroups": false, - "initEmpty": false, - "hideLabel": true, - "tableView": false, - "defaultValue": [ - { - "aecApecUseSameSAsForApeCsInTableAbove": "", - "coc": "", - "mediumEGSoilGroundwaterSedimentVapourSurfaceWaterOther": "", - "maxMeasuredConcentrationIndicateUnits": "", - "areaM": "", - "depthRangeM": "", - "notes1": "" - } - ], - "key": "dataGrid7", - "type": "datagrid", - "input": true, - "components": [ - { - "title": "", - "collapsible": false, - "key": "panel8", - "type": "panel", - "label": "", - "input": false, - "tableView": false, - "components": [ - { - "label": "AEC/APEC: Use same #s as for APECs in table above", - "tableView": true, - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "key": "aecApecUseSameSAsForApeCsInTableAbove", - "type": "textfield", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "e99tie4" - }, - { - "label": "COC", - "tableView": true, - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "key": "coc", - "type": "textfield", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "eo9g8ms" - }, - { - "label": "Medium", - "placeholder": "e.g. soil, groundwater, sediment, vapour, surface water, other", - "tableView": true, - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "key": "mediumEGSoilGroundwaterSedimentVapourSurfaceWaterOther", - "type": "textfield", - "input": true, - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "erqoauyy" - }, - { - "label": "Max Measured Concentration (indicate units)", - "tableView": true, - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "key": "maxMeasuredConcentrationIndicateUnits", - "type": "textfield", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "eqfcnt7" - }, - { - "label": "Area (m²)", - "tableView": true, - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "key": "areaM", - "type": "textfield", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "ecx8h8h" - }, - { - "label": "Depth Range (m)", - "tableView": true, - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "key": "depthRangeM", - "type": "textfield", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "evgae2q" - }, - { - "label": "Notes", - "placeholder": "e.g. site type, classification, relevant approvals, etc.", - "autoExpand": false, - "tableView": true, - "key": "notes2", - "type": "textarea", - "input": true, - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "", - "minWords": "", - "maxWords": "" - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "html", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "rows": 3, - "wysiwyg": false, - "editor": "", - "fixedSize": true, - "id": "eak2oy8" - } - ], - "id": "evgsijp000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "hidden": false, - "clearOnHide": false, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "tree": false, - "lazyLoad": false, - "theme": "default", - "breadcrumb": "default" - } - ], - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "tree": true, - "lazyLoad": false, - "disableAddingRemovingRows": false, - "id": "e3pfzbj" - } - ], - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "clearOnHide": false, - "refreshOn": "", - "redrawOn": "", - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "tree": false, - "lazyLoad": false, - "id": "e1tcxwk" - }, - { - "title": "SECTION VII - Offsite Migration", - "collapsible": false, - "key": "sectionViiOffsiteMigration", - "conditional": { - "show": true, - "when": "hasAnApprovalInPrincipalAiPBeenIssuedForThisSite", - "eq": "no" - }, - "type": "panel", - "label": "Panel", - "input": false, - "tableView": false, - "components": [ - { - "label": "Is there evidence that one or more substances has migrated or is likely to have migrated to a neighbouring site and is or is likely causing contamination of the neighbouring property?", - "optionsLabelPosition": "right", - "inline": false, - "tableView": false, - "values": [ - { - "label": "Yes", - "value": "yes", - "shortcut": "" - }, - { - "label": "No", - "value": "no", - "shortcut": "" - } - ], - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "onlyAvailableItems": false - }, - "key": "isThereEvidenceThatOneOrMoreSubstancesHasMigratedOrIsLikelyToHaveMigratedToANeighbouringSiteAndIsOrIsLikelyCausingContaminationOfTheNeighbouringProperty", - "type": "radio", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "inputType": "radio", - "fieldSet": false, - "id": "eyt9j6k" - }, - { - "label": "Has any sampling occurred offsite for PCOCs in any media?", - "optionsLabelPosition": "right", - "inline": false, - "tableView": false, - "values": [ - { - "label": "Yes", - "value": "yes", - "shortcut": "" - }, - { - "label": "No", - "value": "no", - "shortcut": "" - } - ], - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "onlyAvailableItems": false - }, - "key": "hasAnySamplingOccurredOffsiteForPcoCsInAnyMedia", - "type": "radio", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "inputType": "radio", - "fieldSet": false, - "id": "e5kz2pn" - }, - { - "label": "Have preferential pathways been assessed? (including assessment of all neighbouring underground utility rights-of-way)", - "optionsLabelPosition": "right", - "inline": false, - "tableView": false, - "values": [ - { - "label": "Yes", - "value": "yes", - "shortcut": "" - }, - { - "label": "No", - "value": "no", - "shortcut": "" - } - ], - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "onlyAvailableItems": false - }, - "key": "havePreferentialPathwaysBeenAssessedIncludingAssessmentOfAllNeighbouringUndergroundUtilityRightsOfWay", - "type": "radio", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "inputType": "radio", - "fieldSet": false, - "id": "e6fg35s" - }, - { - "title": "", - "collapsible": false, - "hideLabel": true, - "key": "panel3", - "conditional": { - "show": true, - "when": "isThereEvidenceThatOneOrMoreSubstancesHasMigratedOrIsLikelyToHaveMigratedToANeighbouringSiteAndIsOrIsLikelyCausingContaminationOfTheNeighbouringProperty", - "eq": "yes" - }, - "type": "panel", - "label": "Panel", - "input": false, - "tableView": false, - "components": [ - { - "label": "Current offsite transport of contaminants from the site", - "tableView": false, - "key": "currentOffsiteTransportOfContaminantsFromTheSite", - "type": "checkbox", - "input": true, - "defaultValue": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": true, - "labelPosition": "right", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "inputType": "checkbox", - "value": "", - "name": "", - "id": "e75y38c" - }, - { - "label": "Historical offsite transport of contaminants from the site", - "tableView": false, - "defaultValue": false, - "key": "currentOffsiteTransportOfContaminantsFromTheSite1", - "type": "checkbox", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": true, - "labelPosition": "right", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "inputType": "checkbox", - "value": "", - "name": "", - "id": "e2bknmb" - }, - { - "label": "Historical or Current offsite transport of contaminants from the site in:", - "optionsLabelPosition": "right", - "tableView": false, - "defaultValue": { - "groundwater": false, - "surfaceWater": false, - "vapour": false, - "otherExplainBelow": false - }, - "values": [ - { - "label": "Groundwater", - "value": "groundwater", - "shortcut": "" - }, - { - "label": "Surface Water", - "value": "surfaceWater", - "shortcut": "" - }, - { - "label": "Vapour", - "value": "vapour", - "shortcut": "" - }, - { - "label": "Other (explain below)", - "value": "otherExplainBelow", - "shortcut": "" - } - ], - "key": "in", - "type": "selectboxes", - "input": true, - "inputType": "checkbox", - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "onlyAvailableItems": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "fieldSet": false, - "inline": false, - "id": "eon7ijc" - }, - { - "label": "If other, describe environmental media:", - "autoExpand": false, - "tableView": true, - "key": "ifOtherDescribeEnvironmentalMedia", - "type": "textarea", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "", - "minWords": "", - "maxWords": "" - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "html", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "rows": 3, - "wysiwyg": false, - "editor": "", - "fixedSize": true, - "id": "e6tjnc8" - }, - { - "label": "Briefly describe the nature of and evidence for offsite migration (either known, suspected, or potential)", - "autoExpand": false, - "tableView": true, - "key": "brieflyDescribeTheNatureOfAndEvidenceForOffsiteMigrationEitherKnownSuspectedOrPotential", - "type": "textarea", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "", - "minWords": "", - "maxWords": "" - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "html", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "rows": 3, - "wysiwyg": false, - "editor": "", - "fixedSize": true, - "id": "er9735" - }, - { - "label": "The impacted offsite lands are categorized as:", - "optionsLabelPosition": "right", - "tableView": false, - "values": [ - { - "label": "Having a potable groundwater source", - "value": "havingAPotableGroundwaterSource", - "shortcut": "" - }, - { - "label": "Being aquatic habitat, as formally defined", - "value": "beingAquaticHabitatAsFormallyDefined", - "shortcut": "" - }, - { - "label": "Agricultural lands", - "value": "agriculturalLands", - "shortcut": "" - }, - { - "label": "Residential or Urban parklands", - "value": "residentialOrUrbanParklands", - "shortcut": "" - }, - { - "label": "Commercial land", - "value": "commercialLand", - "shortcut": "" - }, - { - "label": "Industrial land", - "value": "industrialLand", - "shortcut": "" - }, - { - "label": "Wildlands", - "value": "wildlands", - "shortcut": "" - } - ], - "key": "theImpactedOffsiteLandsAreCategorizedAs", - "type": "selectboxes", - "input": true, - "inputType": "checkbox", - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "onlyAvailableItems": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "fieldSet": false, - "inline": false, - "id": "e1stkrj" - } - ], - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "hidden": false, - "clearOnHide": false, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "tree": false, - "lazyLoad": false, - "theme": "default", - "breadcrumb": "default", - "id": "en99wz" - } - ], - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "hidden": false, - "clearOnHide": false, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "tree": false, - "lazyLoad": false, - "theme": "default", - "breadcrumb": "default", - "id": "edqxa27" - }, - { - "title": "SECTION VIII - Investigation or Interpretation Issues to be Adressed", - "theme": "default", - "tooltip": "", - "customClass": "", - "collapsible": false, - "hidden": false, - "hideLabel": false, - "disabled": false, - "modalEdit": false, - "key": "sectionViiiInvestigationOrInterpretationIssuesToBeAdressed", - "tags": [], - "properties": {}, - "customConditional": "", - "conditional": { - "json": "", - "show": true, - "when": "hasAnApprovalInPrincipalAiPBeenIssuedForThisSite", - "eq": "false" - }, - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "panel", - "label": "Panel", - "breadcrumb": "default", - "tabindex": "", - "input": false, - "tableView": false, - "components": [ - { - "label": "Identify any issues regarding investigations or interpretations if the PSI and DSI information may not satisfy the requirements of CSR Sections 58 and 59 and applicable protocols and guidance documents. Briefly describe how these deficiencies will be addressed. Enter n/a if not applicable.", - "autoExpand": false, - "tableView": true, - "key": "identifyAnyIssuesRegardingInvestigationsOrInterpretationsIfThePsiAndDsiInformationMayNotSatisfyTheRequirementsOfCsrSections58And59AndApplicableProtocolsAndGuidanceDocumentsBrieflyDescribeHowTheseDeficienciesWillBeAddressedEnterNAIfNotApplicable", - "type": "textarea", - "rows": 5, - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "", - "minWords": "", - "maxWords": "" - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "html", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "wysiwyg": false, - "editor": "", - "fixedSize": true, - "id": "ekbzgj" - } - ], - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "clearOnHide": false, - "refreshOn": "", - "redrawOn": "", - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "tree": false, - "lazyLoad": false, - "id": "edczfu" - }, - { - "html": "

Part 5 - Remediation Summary

", - "label": "Content", - "customClass": "", - "refreshOnChange": false, - "hidden": false, - "modalEdit": false, - "key": "content33", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "content", - "input": false, - "tableView": false, - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "id": "etcmt0o" - }, - { - "title": "SECTION I - Remediation Reporting Summary", - "theme": "default", - "tooltip": "", - "customClass": "", - "collapsible": false, - "hidden": false, - "hideLabel": false, - "disabled": false, - "modalEdit": false, - "key": "sectionIRemediationReportingSummary", - "tags": [], - "properties": {}, - "customConditional": "", - "conditional": { - "json": "", - "show": null, - "when": null, - "eq": "" - }, - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "panel", - "label": "Panel", - "breadcrumb": "default", - "tabindex": "", - "input": false, - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "clearOnHide": false, - "refreshOn": "", - "redrawOn": "", - "tableView": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "tree": false, - "lazyLoad": false, - "components": [ - { - "title": "Risk Assessment", - "theme": "default", - "tooltip": "", - "customClass": "", - "collapsible": false, - "hidden": false, - "hideLabel": false, - "disabled": false, - "modalEdit": false, - "key": "riskAssessment", - "tags": [], - "properties": {}, - "customConditional": "", - "conditional": { - "json": "", - "show": null, - "when": null, - "eq": "" - }, - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "panel", - "label": "Panel", - "breadcrumb": "default", - "tabindex": "", - "input": false, - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "clearOnHide": false, - "refreshOn": "", - "redrawOn": "", - "tableView": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "tree": false, - "lazyLoad": false, - "components": [ - { - "label": "Completed?", - "optionsLabelPosition": "right", - "tableView": false, - "values": [ - { - "label": "Yes", - "value": "yes", - "shortcut": "" - }, - { - "label": "No", - "value": "no", - "shortcut": "" - } - ], - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "onlyAvailableItems": false - }, - "key": "completed4", - "type": "radio", - "input": true, - "inputType": "radio", - "defaultValue": { - "yes": false, - "no": false - }, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "fieldSet": false, - "id": "e4gsdhh" - }, - { - "label": "Includes quantitative human health and ecological risk assessment report information or screening level risk assessment per EMA, CSR and current applicable ministry protocols, guidelines, checklists? ", - "optionsLabelPosition": "right", - "tableView": false, - "values": [ - { - "label": "Yes", - "value": "yes", - "shortcut": "" - }, - { - "label": "No", - "value": "no", - "shortcut": "" - }, - { - "label": "N/A", - "value": "nA", - "shortcut": "" - } - ], - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "onlyAvailableItems": false - }, - "key": "includesQuantitativeHumanHealthAndEcologicalRiskAssessmentReportInformationOrScreeningLevelRiskAssessmentPerEmaCsrAndCurrentApplicableMinistryProtocolsGuidelinesChecklists", - "type": "radio", - "input": true, - "inputType": "radio", - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "fieldSet": false, - "id": "ezw7671c" - } - ], - "id": "ejp45z9" - }, - { - "title": "Remediation Plan", - "theme": "default", - "tooltip": "", - "customClass": "", - "collapsible": false, - "hidden": false, - "hideLabel": false, - "disabled": false, - "modalEdit": false, - "key": "riskAssessment1", - "tags": [], - "properties": {}, - "customConditional": "", - "conditional": { - "json": "", - "show": null, - "when": null, - "eq": "" - }, - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "panel", - "label": "Panel", - "breadcrumb": "default", - "tabindex": "", - "input": false, - "tableView": false, - "components": [ - { - "label": "Completed?", - "optionsLabelPosition": "right", - "tableView": false, - "values": [ - { - "label": "Yes", - "value": "yes", - "shortcut": "" - }, - { - "label": "No", - "value": "no", - "shortcut": "" - } - ], - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "onlyAvailableItems": false - }, - "key": "completed5", - "type": "radio", - "input": true, - "inputType": "radio", - "defaultValue": { - "yes": false, - "no": false - }, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "fieldSet": false, - "id": "el5sg7" - }, - { - "label": "Includes CSR specified information for a Remediation Plan (see CSR S.1, 16, 47) and current applicable ministry protocols, guidelines, checklists, etc.?", - "optionsLabelPosition": "right", - "tableView": false, - "values": [ - { - "label": "Yes", - "value": "yes", - "shortcut": "" - }, - { - "label": "No", - "value": "no", - "shortcut": "" - }, - { - "label": "N/A", - "value": "nA", - "shortcut": "" - } - ], - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "onlyAvailableItems": false - }, - "key": "includesQuantitativeHumanHealthAndEcologicalRiskAssessmentReportInformationOrScreeningLevelRiskAssessmentPerEmaCsrAndCurrentApplicableMinistryProtocolsGuidelinesChecklists1", - "type": "radio", - "input": true, - "inputType": "radio", - "defaultValue": { - "yes": false, - "no": false, - "nA": false - }, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "fieldSet": false, - "id": "e8p4jr" - } - ], - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "clearOnHide": false, - "refreshOn": "", - "redrawOn": "", - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "tree": false, - "lazyLoad": false, - "id": "evp1obv" - }, - { - "title": "Confirmation of Remediation", - "theme": "default", - "tooltip": "", - "customClass": "", - "collapsible": false, - "hidden": false, - "hideLabel": false, - "disabled": false, - "modalEdit": false, - "key": "riskAssessment2", - "tags": [], - "properties": {}, - "customConditional": "", - "conditional": { - "json": "", - "show": null, - "when": null, - "eq": "" - }, - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "panel", - "label": "Panel", - "breadcrumb": "default", - "tabindex": "", - "input": false, - "tableView": false, - "components": [ - { - "label": "Completed?", - "optionsLabelPosition": "right", - "tableView": false, - "values": [ - { - "label": "Yes", - "value": "yes", - "shortcut": "" - }, - { - "label": "No", - "value": "no", - "shortcut": "" - } - ], - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "onlyAvailableItems": false - }, - "key": "completed6", - "type": "radio", - "input": true, - "inputType": "radio", - "defaultValue": { - "yes": false, - "no": false - }, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "fieldSet": false, - "id": "ejkw9fd" - }, - { - "label": "Includes CSR specified information (see CSR S.49) and any current applicable ministry protocols, guidelines, checklists for COR reports? ", - "optionsLabelPosition": "right", - "tableView": false, - "defaultValue": { - "yes": false, - "no": false, - "nA": false - }, - "values": [ - { - "label": "Yes", - "value": "yes", - "shortcut": "" - }, - { - "label": "No", - "value": "no", - "shortcut": "" - }, - { - "label": "N/A", - "value": "nA", - "shortcut": "" - } - ], - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "onlyAvailableItems": false - }, - "key": "includesQuantitativeHumanHealthAndEcologicalRiskAssessmentReportInformationOrScreeningLevelRiskAssessmentPerEmaCsrAndCurrentApplicableMinistryProtocolsGuidelinesChecklists2", - "type": "radio", - "input": true, - "inputType": "radio", - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "fieldSet": false, - "id": "ezc4bx5" - } - ], - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "clearOnHide": false, - "refreshOn": "", - "redrawOn": "", - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "tree": false, - "lazyLoad": false, - "id": "eg2f3g" - }, - { - "title": "Other Reports", - "theme": "default", - "tooltip": "", - "customClass": "", - "collapsible": false, - "hidden": false, - "hideLabel": false, - "disabled": false, - "modalEdit": false, - "key": "riskAssessment3", - "tags": [], - "properties": {}, - "customConditional": "", - "conditional": { - "json": "", - "show": null, - "when": null, - "eq": "" - }, - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "panel", - "label": "Panel", - "breadcrumb": "default", - "tabindex": "", - "input": false, - "tableView": false, - "components": [ - { - "label": "Completed?", - "optionsLabelPosition": "right", - "tableView": false, - "values": [ - { - "label": "Yes", - "value": "yes", - "shortcut": "" - }, - { - "label": "No", - "value": "no", - "shortcut": "" - } - ], - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "onlyAvailableItems": false - }, - "key": "completed7", - "type": "radio", - "input": true, - "inputType": "radio", - "defaultValue": { - "yes": false, - "no": false - }, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "fieldSet": false, - "id": "ew6b1fi" - }, - { - "label": "According to other guidelines? (Provide explanation in notes below. Indicate how reports assist understanding of conditions and/or remediation.) ", - "labelPosition": "top", - "optionsLabelPosition": "right", - "description": "", - "tooltip": "", - "customClass": "", - "tabindex": "", - "inline": false, - "hidden": false, - "hideLabel": false, - "autofocus": false, - "disabled": false, - "tableView": false, - "modalEdit": false, - "defaultValue": { - "yes": false, - "no": false, - "nA": false - }, - "values": [ - { - "label": "Yes", - "value": "yes", - "shortcut": "" - }, - { - "label": "No", - "value": "no", - "shortcut": "" - }, - { - "label": "N/A", - "value": "nA", - "shortcut": "" - } - ], - "dataType": "", - "persistent": true, - "protected": false, - "dbIndex": false, - "encrypted": false, - "redrawOn": "", - "clearOnHide": true, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "allowCalculateOverride": false, - "validate": { - "required": true, - "onlyAvailableItems": false, - "customMessage": "", - "custom": "", - "customPrivate": false, - "json": "", - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "errorLabel": "", - "errors": "", - "key": "includesQuantitativeHumanHealthAndEcologicalRiskAssessmentReportInformationOrScreeningLevelRiskAssessmentPerEmaCsrAndCurrentApplicableMinistryProtocolsGuidelinesChecklists3", - "tags": [], - "properties": {}, - "conditional": { - "show": true, - "when": "completed7", - "eq": "yes", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "radio", - "input": true, - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "unique": false, - "refreshOn": "", - "dataGridLabel": false, - "widget": null, - "validateOn": "change", - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "inputType": "radio", - "fieldSet": false, - "id": "e9z694e" - }, - { - "label": "Notes", - "labelPosition": "top", - "placeholder": "", - "description": "", - "tooltip": "", - "prefix": "", - "suffix": "", - "widget": { - "type": "input" - }, - "displayMask": "", - "editor": "", - "autoExpand": false, - "customClass": "", - "tabindex": "", - "autocomplete": "", - "hidden": false, - "hideLabel": false, - "showWordCount": false, - "showCharCount": false, - "autofocus": false, - "spellcheck": true, - "disabled": false, - "tableView": true, - "modalEdit": false, - "multiple": false, - "persistent": true, - "inputFormat": "html", - "protected": false, - "dbIndex": false, - "case": "", - "truncateMultipleSpaces": false, - "encrypted": false, - "redrawOn": "", - "clearOnHide": true, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "allowCalculateOverride": false, - "validateOn": "change", - "validate": { - "required": true, - "pattern": "", - "customMessage": "", - "custom": "", - "customPrivate": false, - "json": "", - "minLength": "", - "maxLength": "", - "minWords": "", - "maxWords": "", - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "unique": false, - "errorLabel": "", - "errors": "", - "key": "notes1", - "tags": [], - "properties": {}, - "conditional": { - "show": true, - "when": "completed7", - "eq": "yes", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "textarea", - "rows": 3, - "wysiwyg": false, - "input": true, - "refreshOn": "", - "dataGridLabel": false, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputMask": "", - "fixedSize": true, - "id": "eirkrzs", - "defaultValue": "" - } - ], - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "clearOnHide": false, - "refreshOn": "", - "redrawOn": "", - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "tree": false, - "lazyLoad": false, - "id": "en3xr0m" - }, - { - "html": "

If completed remediation reports are not adequate or if reports have a different scope than those listed above in accordance with the CSR complete Section 5.6 - Outstanding Remediation Issues.

", - "label": "Content", - "customClass": "", - "refreshOnChange": false, - "hidden": false, - "modalEdit": false, - "key": "content67", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "content", - "input": false, - "tableView": false, - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "id": "e4jq65" - } - ], - "id": "e8ipwk5" - }, - { - "title": "SECTION II - Proposed or Completed Remedial Activities", - "theme": "default", - "tooltip": "", - "customClass": "", - "collapsible": false, - "hidden": false, - "hideLabel": false, - "disabled": false, - "modalEdit": false, - "key": "sectionIiProposedOrCompletedRemedialActivities", - "tags": [], - "properties": {}, - "customConditional": "", - "conditional": { - "json": "", - "show": null, - "when": null, - "eq": "" - }, - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "panel", - "label": "Panel", - "breadcrumb": "default", - "tabindex": "", - "input": false, - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "clearOnHide": false, - "refreshOn": "", - "redrawOn": "", - "tableView": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "tree": false, - "lazyLoad": false, - "components": [ - { - "html": "

Describe all aspects of remediation including regulatory actions and activities to comply with numerical and/or risk-based standards

", - "label": "Content", - "customClass": "", - "refreshOnChange": false, - "hidden": false, - "modalEdit": false, - "key": "content35", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "content", - "input": false, - "tableView": false, - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "id": "e3pr3l7" - }, - { - "label": "Regulatory: Notification of Independent Remediation, Approval in Principle, Certificate of Compliance, Determination, Restrictive Covenant etc.", - "labelPosition": "top", - "placeholder": "", - "description": "", - "tooltip": "", - "prefix": "", - "suffix": "", - "widget": { - "type": "input" - }, - "displayMask": "", - "editor": "", - "autoExpand": false, - "customClass": "", - "tabindex": "", - "autocomplete": "", - "hidden": false, - "hideLabel": false, - "showWordCount": false, - "showCharCount": false, - "autofocus": false, - "spellcheck": true, - "disabled": false, - "tableView": true, - "modalEdit": false, - "multiple": false, - "persistent": true, - "inputFormat": "html", - "protected": false, - "dbIndex": false, - "case": "", - "truncateMultipleSpaces": false, - "encrypted": false, - "redrawOn": "", - "clearOnHide": true, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "allowCalculateOverride": false, - "validateOn": "change", - "validate": { - "required": true, - "pattern": "", - "customMessage": "", - "custom": "", - "customPrivate": false, - "json": "", - "minLength": "", - "maxLength": "", - "minWords": "", - "maxWords": "", - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "unique": false, - "errorLabel": "", - "errors": "", - "key": "regulatoryNotificationOfIndependentRemediationApprovalInPrincipleCertificateOfComplianceDeterminationRestrictiveCovenantEtc", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "textarea", - "rows": 3, - "wysiwyg": false, - "input": true, - "refreshOn": "", - "dataGridLabel": false, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputMask": "", - "fixedSize": true, - "id": "elmoc77", - "defaultValue": "" - }, - { - "label": "If commitments or conditions to be met are included in an Approval in Principle issued for the site, list these conditions and identify how they were met though remedial activities. ", - "labelPosition": "top", - "placeholder": "", - "description": "", - "tooltip": "", - "prefix": "", - "suffix": "", - "widget": { - "type": "input" - }, - "displayMask": "", - "editor": "", - "autoExpand": false, - "customClass": "", - "tabindex": "", - "autocomplete": "", - "hidden": false, - "hideLabel": false, - "showWordCount": false, - "showCharCount": false, - "autofocus": false, - "spellcheck": true, - "disabled": false, - "tableView": true, - "modalEdit": false, - "multiple": false, - "persistent": true, - "inputFormat": "html", - "protected": false, - "dbIndex": false, - "case": "", - "truncateMultipleSpaces": false, - "encrypted": false, - "redrawOn": "", - "clearOnHide": true, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "allowCalculateOverride": false, - "validateOn": "change", - "validate": { - "required": true, - "pattern": "", - "customMessage": "", - "custom": "", - "customPrivate": false, - "json": "", - "minLength": "", - "maxLength": "", - "minWords": "", - "maxWords": "", - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "unique": false, - "errorLabel": "", - "errors": "", - "key": "ifCommitmentsOrConditionsToBeMetAreIncludedInAnApprovalInPrincipleIssuedForTheSiteListTheseConditionsAndIdentifyHowTheyWereMetThoughRemedialActivities", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "textarea", - "rows": 3, - "wysiwyg": false, - "input": true, - "refreshOn": "", - "dataGridLabel": false, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputMask": "", - "fixedSize": true, - "id": "eg9hfx", - "defaultValue": "" - }, - { - "label": "Remediation to comply with numerical standards (Excavation / disposal of soil, Treatment of soil; Treatment of groundwater, etc.) ", - "labelPosition": "top", - "placeholder": "", - "description": "", - "tooltip": "", - "prefix": "", - "suffix": "", - "widget": { - "type": "input" - }, - "displayMask": "", - "editor": "", - "autoExpand": false, - "customClass": "", - "tabindex": "", - "autocomplete": "", - "hidden": false, - "hideLabel": false, - "showWordCount": false, - "showCharCount": false, - "autofocus": false, - "spellcheck": true, - "disabled": false, - "tableView": true, - "modalEdit": false, - "multiple": false, - "persistent": true, - "inputFormat": "html", - "protected": false, - "dbIndex": false, - "case": "", - "truncateMultipleSpaces": false, - "encrypted": false, - "redrawOn": "", - "clearOnHide": true, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "allowCalculateOverride": false, - "validateOn": "change", - "validate": { - "required": true, - "pattern": "", - "customMessage": "", - "custom": "", - "customPrivate": false, - "json": "", - "minLength": "", - "maxLength": "", - "minWords": "", - "maxWords": "", - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "unique": false, - "errorLabel": "", - "errors": "", - "key": "remediationToComplyWithNumericalStandardsExcavationDisposalOfSoilTreatmentOfSoilTreatmentOfGroundwaterEtc", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "textarea", - "rows": 3, - "wysiwyg": false, - "input": true, - "refreshOn": "", - "dataGridLabel": false, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputMask": "", - "fixedSize": true, - "id": "ed566qt", - "defaultValue": "" - }, - { - "html": "

Screening Level Risk Assessment

", - "label": "Content", - "customClass": "", - "refreshOnChange": false, - "hidden": false, - "modalEdit": false, - "key": "content36", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "content", - "input": false, - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "tableView": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "id": "enhsylu" - }, - { - "label": "Intended", - "labelPosition": "top", - "optionsLabelPosition": "right", - "description": "", - "tooltip": "", - "customClass": "", - "tabindex": "", - "inline": false, - "hidden": false, - "hideLabel": false, - "autofocus": false, - "disabled": false, - "tableView": false, - "modalEdit": false, - "values": [ - { - "label": "Yes", - "value": "yes", - "shortcut": "" - }, - { - "label": "No", - "value": "no", - "shortcut": "" - } - ], - "dataType": "", - "persistent": true, - "protected": false, - "dbIndex": false, - "encrypted": false, - "redrawOn": "", - "clearOnHide": true, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "allowCalculateOverride": false, - "validate": { - "required": true, - "onlyAvailableItems": false, - "customMessage": "", - "custom": "", - "customPrivate": false, - "json": "", - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "errorLabel": "", - "errors": "", - "key": "intended", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "radio", - "input": true, - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "unique": false, - "refreshOn": "", - "dataGridLabel": false, - "widget": null, - "validateOn": "change", - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "inputType": "radio", - "fieldSet": false, - "id": "egyizxi", - "defaultValue": "" - }, - { - "label": "Carried out", - "labelPosition": "top", - "optionsLabelPosition": "right", - "description": "", - "tooltip": "", - "customClass": "", - "tabindex": "", - "inline": false, - "hidden": false, - "hideLabel": false, - "autofocus": false, - "disabled": false, - "tableView": false, - "modalEdit": false, - "values": [ - { - "label": "Yes", - "value": "yes", - "shortcut": "" - }, - { - "label": "No", - "value": "no", - "shortcut": "" - } - ], - "dataType": "", - "persistent": true, - "protected": false, - "dbIndex": false, - "encrypted": false, - "redrawOn": "", - "clearOnHide": true, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "allowCalculateOverride": false, - "validate": { - "required": true, - "onlyAvailableItems": false, - "customMessage": "", - "custom": "", - "customPrivate": false, - "json": "", - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "errorLabel": "", - "errors": "", - "key": "intended1", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "radio", - "input": true, - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "unique": false, - "refreshOn": "", - "dataGridLabel": false, - "widget": null, - "validateOn": "change", - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "inputType": "radio", - "fieldSet": false, - "id": "efbt54b", - "defaultValue": "" - }, - { - "html": "

Quantitative Risk Assessment

", - "label": "Content", - "customClass": "", - "refreshOnChange": false, - "hidden": false, - "modalEdit": false, - "key": "content37", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "content", - "input": false, - "tableView": false, - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "id": "e7p5rjw" - }, - { - "label": "Intended", - "optionsLabelPosition": "right", - "inline": false, - "tableView": false, - "values": [ - { - "label": "Yes", - "value": "yes", - "shortcut": "" - }, - { - "label": "No", - "value": "no", - "shortcut": "" - } - ], - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "onlyAvailableItems": false - }, - "key": "intended2", - "type": "radio", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "inputType": "radio", - "fieldSet": false, - "id": "emo5xjg" - }, - { - "label": "Carried out", - "optionsLabelPosition": "right", - "inline": false, - "tableView": false, - "values": [ - { - "label": "Yes", - "value": "yes", - "shortcut": "" - }, - { - "label": "No", - "value": "no", - "shortcut": "" - } - ], - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "onlyAvailableItems": false - }, - "key": "intended3", - "type": "radio", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "inputType": "radio", - "fieldSet": false, - "id": "euhh0a4" - }, - { - "html": "

If yes for any above, complete Section 5.5 (Summary of Residual Contamination)

", - "label": "Content", - "customClass": "", - "refreshOnChange": false, - "hidden": false, - "modalEdit": false, - "key": "content38", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "content", - "input": false, - "tableView": false, - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "id": "ez6x9bq" - }, - { - "label": "Describe risk management / exposure reduction methods intended or implemented and indicate the status of any measures.", - "labelPosition": "top", - "placeholder": "e.g., Physical / engineering: monitoring, capping or barriers to exposure; Institutional: registration of restrictive covenants, financial security, etc.", - "description": "", - "tooltip": "", - "prefix": "", - "suffix": "", - "widget": { - "type": "input" - }, - "displayMask": "", - "editor": "", - "autoExpand": false, - "customClass": "", - "tabindex": "", - "autocomplete": "", - "hidden": false, - "hideLabel": false, - "showWordCount": false, - "showCharCount": false, - "autofocus": false, - "spellcheck": true, - "disabled": false, - "tableView": true, - "modalEdit": false, - "multiple": false, - "persistent": true, - "inputFormat": "html", - "protected": false, - "dbIndex": false, - "case": "", - "truncateMultipleSpaces": false, - "encrypted": false, - "redrawOn": "", - "clearOnHide": true, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "allowCalculateOverride": false, - "validateOn": "change", - "validate": { - "required": false, - "pattern": "", - "customMessage": "", - "custom": "", - "customPrivate": false, - "json": "", - "minLength": "", - "maxLength": "", - "minWords": "", - "maxWords": "", - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "unique": false, - "errorLabel": "", - "errors": "", - "key": "describeRiskManagementExposureReductionMethodsIntendedOrImplementedAndIndicateTheStatusOfAnyMeasures", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "textarea", - "rows": 6, - "wysiwyg": false, - "input": true, - "refreshOn": "", - "dataGridLabel": false, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputMask": "", - "fixedSize": true, - "id": "ew7umzp", - "defaultValue": "" - }, - { - "html": "

Provide a reference to signed and stamped design drawings provided by a professional engineer for works installed at site boundaries to prevent recontamination of a site.

", - "label": "Content", - "customClass": "", - "refreshOnChange": false, - "hidden": false, - "modalEdit": false, - "key": "content39", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "content", - "input": false, - "tableView": false, - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "id": "e8a6e6" - }, - { - "label": "", - "reorder": false, - "addAnotherPosition": "bottom", - "layoutFixed": false, - "enableRowGroups": false, - "initEmpty": false, - "tableView": false, - "defaultValue": [ - { - "report": "", - "page": "", - "orAppendix": "" - } - ], - "key": "references", - "type": "datagrid", - "input": true, - "components": [ - { - "title": "", - "collapsible": false, - "key": "panel4", - "type": "panel", - "label": "References", - "input": false, - "tableView": false, - "components": [ - { - "label": "Columns", - "columns": [ - { - "components": [ - { - "label": "Report #", - "tableView": true, - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "key": "report", - "type": "textfield", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "ev76fb" - } - ], - "width": 4, - "offset": 0, - "push": 0, - "pull": 0, - "size": "md", - "currentWidth": 4 - }, - { - "components": [ - { - "label": "Page #", - "tableView": true, - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "key": "page", - "type": "textfield", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "exu4dc8" - } - ], - "width": 4, - "offset": 0, - "push": 0, - "pull": 0, - "size": "md", - "currentWidth": 4 - }, - { - "components": [ - { - "label": "Appendix #", - "tableView": true, - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "key": "orAppendix", - "type": "textfield", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "e1a2r8o" - } - ], - "size": "md", - "width": 4, - "offset": 0, - "push": 0, - "pull": 0, - "currentWidth": 4 - } - ], - "key": "columns", - "type": "columns", - "input": false, - "tableView": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "hidden": false, - "clearOnHide": false, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "tree": false, - "lazyLoad": false, - "autoAdjust": false, - "id": "e9e5bm" - } - ], - "id": "e6l31cy0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "hidden": false, - "clearOnHide": false, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "tree": false, - "lazyLoad": false, - "theme": "default", - "breadcrumb": "default" - } - ], - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "tree": true, - "lazyLoad": false, - "disableAddingRemovingRows": false, - "id": "e2jy1yl" - } - ], - "id": "epn9oxk" - }, - { - "title": "SECTION III - Summary of Remediation Plan/Remediation", - "theme": "default", - "tooltip": "", - "customClass": "", - "collapsible": false, - "hidden": false, - "hideLabel": false, - "disabled": false, - "modalEdit": false, - "key": "sectionIiiSummaryOfRemediationPlanRemediation", - "tags": [], - "properties": {}, - "customConditional": "", - "conditional": { - "json": "", - "show": null, - "when": null, - "eq": "" - }, - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "panel", - "label": "Panel", - "breadcrumb": "default", - "tabindex": "", - "input": false, - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "clearOnHide": false, - "refreshOn": "", - "redrawOn": "", - "tableView": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "tree": false, - "lazyLoad": false, - "components": [ - { - "html": "

Remediation Standards and Schedule

", - "label": "Content", - "customClass": "", - "refreshOnChange": false, - "hidden": false, - "modalEdit": false, - "key": "content40", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "content", - "input": false, - "tableView": false, - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "id": "ep2zw9j" - }, - { - "label": "Environmental medium assessed. Select all that apply. (If this SOSC is to support a Negative Determination Application, select N/A)", - "labelPosition": "top", - "optionsLabelPosition": "right", - "description": "", - "tooltip": "", - "customClass": "", - "tabindex": "", - "inline": false, - "hidden": false, - "hideLabel": false, - "autofocus": false, - "disabled": false, - "tableView": false, - "modalEdit": false, - "defaultValue": { - "soil": false, - "groundwater": false, - "surfaceWater": false, - "sediment": false, - "nA": false, - "vapour": false - }, - "values": [ - { - "label": "Soil", - "value": "soil", - "shortcut": "" - }, - { - "label": "Groundwater", - "value": "groundwater", - "shortcut": "" - }, - { - "label": "Surface Water", - "value": "surfaceWater", - "shortcut": "" - }, - { - "label": "Vapour", - "value": "vapour", - "shortcut": "" - }, - { - "label": "Sediment", - "value": "sediment", - "shortcut": "" - }, - { - "label": "N/A", - "value": "nA", - "shortcut": "" - } - ], - "persistent": true, - "protected": false, - "dbIndex": false, - "encrypted": false, - "redrawOn": "", - "clearOnHide": true, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "allowCalculateOverride": false, - "validate": { - "required": true, - "onlyAvailableItems": false, - "customMessage": "", - "custom": "", - "customPrivate": false, - "json": "", - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "errorLabel": "", - "minSelectedCountMessage": "", - "maxSelectedCountMessage": "", - "errors": "", - "key": "environmentalMediumAssessedSelectAllThatApplyIfThisSoscIsToSupportANegativeDeterminationApplicationSelectNA", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "selectboxes", - "input": true, - "inputType": "checkbox", - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "unique": false, - "refreshOn": "", - "dataGridLabel": false, - "widget": null, - "validateOn": "change", - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "fieldSet": false, - "id": "e165oim" - }, - { - "label": "Soil", - "labelPosition": "top", - "description": "", - "tooltip": "", - "disableAddingRemovingRows": false, - "conditionalAddButton": "", - "reorder": false, - "addAnother": "", - "addAnotherPosition": "bottom", - "layoutFixed": false, - "enableRowGroups": false, - "initEmpty": false, - "customClass": "", - "tabindex": "", - "hidden": false, - "hideLabel": false, - "autofocus": false, - "disabled": false, - "tableView": false, - "modalEdit": false, - "defaultValue": [ - { - "aecUseTheSameAecAsForAeCsInSection46": "", - "coc": "", - "remediatedToTheFollowingStandardProposedOrCompleted": { - "numericalStandardGuidelineOrCriteria": false, - "siteSpecificNumericalStandard": false, - "backgroundConcentrationAttachProtocol4ApprovalIfApplicable": false, - "riskBased": false - }, - "remediationComplete": "", - "proposedOrActualCompletionDate": "00/00/0000" - } - ], - "persistent": true, - "protected": false, - "dbIndex": false, - "encrypted": false, - "redrawOn": "", - "clearOnHide": true, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "allowCalculateOverride": false, - "validateOn": "change", - "validate": { - "required": false, - "minLength": "", - "maxLength": "", - "customMessage": "", - "custom": "", - "customPrivate": false, - "json": "", - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "errorLabel": "", - "errors": "", - "key": "dataGrid8", - "tags": [], - "properties": {}, - "conditional": { - "show": true, - "when": "environmentalMediumAssessedSelectAllThatApplyIfThisSoscIsToSupportANegativeDeterminationApplicationSelectNA", - "eq": "soil", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "datagrid", - "input": true, - "components": [ - { - "title": "Soil", - "collapsible": false, - "hideLabel": true, - "key": "panel4", - "type": "panel", - "label": "", - "input": false, - "tableView": false, - "components": [ - { - "label": "AEC # (Use the same AEC# as for AECs in the table in Section 4.6)", - "tableView": true, - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "key": "aecUseTheSameAecAsForAeCsInSection46", - "type": "textfield", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "eaf7t1" - }, - { - "label": "COC", - "tableView": true, - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "key": "coc", - "type": "textfield", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "eoda2go" - }, - { - "label": "Remediated to the following standard (proposed or completed)", - "optionsLabelPosition": "right", - "tableView": false, - "values": [ - { - "label": "Numerical (standard, guideline or criteria)", - "value": "numericalStandardGuidelineOrCriteria", - "shortcut": "" - }, - { - "label": "Site-Specific numerical standard", - "value": "siteSpecificNumericalStandard", - "shortcut": "" - }, - { - "label": "Background concentration (attach protocol 4 approval if applicable)", - "value": "backgroundConcentrationAttachProtocol4ApprovalIfApplicable", - "shortcut": "" - }, - { - "label": "Risk-based", - "value": "riskBased", - "shortcut": "" - } - ], - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "onlyAvailableItems": false - }, - "key": "remediatedToTheFollowingStandardProposedOrCompleted", - "type": "selectboxes", - "input": true, - "inputType": "checkbox", - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "fieldSet": false, - "inline": false, - "id": "emv34m" - }, - { - "label": "Remediation complete", - "optionsLabelPosition": "right", - "inline": false, - "tableView": false, - "values": [ - { - "label": "Yes", - "value": "yes", - "shortcut": "" - }, - { - "label": "No", - "value": "no", - "shortcut": "" - }, - { - "label": "Remediation Planned", - "value": "remediationPlanned", - "shortcut": "" - } - ], - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "onlyAvailableItems": false - }, - "key": "remediationComplete", - "type": "radio", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "inputType": "radio", - "fieldSet": false, - "id": "ek8hrjd" - }, - { - "label": "Proposed or actual completion date", - "hideInputLabels": false, - "inputsLabelPosition": "top", - "useLocaleSettings": false, - "tableView": false, - "fields": { - "day": { - "hide": false, - "required": true, - "type": "number", - "placeholder": "" - }, - "month": { - "hide": false, - "required": true, - "type": "select", - "placeholder": "" - }, - "year": { - "hide": false, - "required": true, - "type": "number", - "placeholder": "" - } - }, - "defaultValue": "00/00/0000", - "key": "proposedOrActualCompletionDate", - "type": "day", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "dayFirst": false, - "id": "eb274z" - } - ], - "id": "eauzdys000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "hidden": false, - "clearOnHide": false, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "tree": false, - "lazyLoad": false, - "theme": "default", - "breadcrumb": "default" - } - ], - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "unique": false, - "refreshOn": "", - "dataGridLabel": false, - "widget": null, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "tree": true, - "lazyLoad": false, - "id": "eojass" - }, - { - "label": "Groundwater", - "labelPosition": "top", - "description": "", - "tooltip": "", - "disableAddingRemovingRows": false, - "conditionalAddButton": "", - "reorder": false, - "addAnother": "", - "addAnotherPosition": "bottom", - "layoutFixed": false, - "enableRowGroups": false, - "initEmpty": false, - "customClass": "", - "tabindex": "", - "hidden": false, - "hideLabel": false, - "autofocus": false, - "disabled": false, - "tableView": false, - "modalEdit": false, - "defaultValue": [ - { - "aecUseTheSameAecAsForAeCsInSection46": "", - "coc": "", - "remediatedToTheFollowingStandardProposedOrCompleted": { - "numericalStandardGuidelineOrCriteria": false, - "siteSpecificNumericalStandard": false, - "backgroundConcentrationAttachProtocol4ApprovalIfApplicable": false, - "riskBased": false - }, - "remediationComplete": "", - "proposedOrActualCompletionDate": "00/00/0000" - } - ], - "persistent": true, - "protected": false, - "dbIndex": false, - "encrypted": false, - "redrawOn": "", - "clearOnHide": true, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "allowCalculateOverride": false, - "validateOn": "change", - "validate": { - "required": false, - "minLength": "", - "maxLength": "", - "customMessage": "", - "custom": "", - "customPrivate": false, - "json": "", - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "errorLabel": "", - "errors": "", - "key": "dataGrid9", - "tags": [], - "properties": {}, - "conditional": { - "show": true, - "when": "environmentalMediumAssessedSelectAllThatApplyIfThisSoscIsToSupportANegativeDeterminationApplicationSelectNA", - "eq": "groundwater", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "datagrid", - "input": true, - "components": [ - { - "title": "Groundwater", - "collapsible": false, - "hideLabel": true, - "key": "groundwater", - "type": "panel", - "label": "", - "input": false, - "tableView": false, - "components": [ - { - "label": "AEC # (Use the same AEC# as for AECs in the table in Section 4.6)", - "tableView": true, - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "key": "aecUseTheSameAecAsForAeCsInSection46", - "type": "textfield", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "ej8l9ey" - }, - { - "label": "COC", - "tableView": true, - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "key": "coc", - "type": "textfield", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "e9w6crd" - }, - { - "label": "Remediated to the following standard (proposed or completed)", - "optionsLabelPosition": "right", - "tableView": false, - "values": [ - { - "label": "Numerical (standard, guideline or criteria)", - "value": "numericalStandardGuidelineOrCriteria", - "shortcut": "" - }, - { - "label": "Site-Specific numerical standard", - "value": "siteSpecificNumericalStandard", - "shortcut": "" - }, - { - "label": "Background concentration (attach protocol 4 approval if applicable)", - "value": "backgroundConcentrationAttachProtocol4ApprovalIfApplicable", - "shortcut": "" - }, - { - "label": "Risk-based", - "value": "riskBased", - "shortcut": "" - } - ], - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "onlyAvailableItems": false - }, - "key": "remediatedToTheFollowingStandardProposedOrCompleted", - "type": "selectboxes", - "input": true, - "inputType": "checkbox", - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "fieldSet": false, - "inline": false, - "id": "euyjc8g" - }, - { - "label": "Remediation complete", - "optionsLabelPosition": "right", - "inline": false, - "tableView": false, - "values": [ - { - "label": "Yes", - "value": "yes", - "shortcut": "" - }, - { - "label": "No", - "value": "no", - "shortcut": "" - }, - { - "label": "Remediation Planned", - "value": "remediationPlanned", - "shortcut": "" - } - ], - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "onlyAvailableItems": false - }, - "key": "remediationComplete", - "type": "radio", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "inputType": "radio", - "fieldSet": false, - "id": "ef329mn" - }, - { - "label": "Proposed or actual completion date", - "hideInputLabels": false, - "inputsLabelPosition": "top", - "useLocaleSettings": false, - "tableView": false, - "fields": { - "day": { - "hide": false, - "required": true, - "type": "number", - "placeholder": "" - }, - "month": { - "hide": false, - "required": true, - "type": "select", - "placeholder": "" - }, - "year": { - "hide": false, - "required": true, - "type": "number", - "placeholder": "" - } - }, - "defaultValue": "00/00/0000", - "key": "proposedOrActualCompletionDate", - "type": "day", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "dayFirst": false, - "id": "euj2r2l" - } - ], - "id": "ey0h0vl00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "hidden": false, - "clearOnHide": false, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "tree": false, - "lazyLoad": false, - "theme": "default", - "breadcrumb": "default" - } - ], - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "unique": false, - "refreshOn": "", - "dataGridLabel": false, - "widget": null, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "tree": true, - "lazyLoad": false, - "id": "ew0r1gt" - }, - { - "label": "Surface Water", - "labelPosition": "top", - "description": "", - "tooltip": "", - "disableAddingRemovingRows": false, - "conditionalAddButton": "", - "reorder": false, - "addAnother": "", - "addAnotherPosition": "bottom", - "layoutFixed": false, - "enableRowGroups": false, - "initEmpty": false, - "customClass": "", - "tabindex": "", - "hidden": false, - "hideLabel": false, - "autofocus": false, - "disabled": false, - "tableView": false, - "modalEdit": false, - "defaultValue": [ - { - "aecUseTheSameAecAsForAeCsInSection46": "", - "coc": "", - "remediatedToTheFollowingStandardProposedOrCompleted": { - "numericalStandardGuidelineOrCriteria": false, - "siteSpecificNumericalStandard": false, - "backgroundConcentrationAttachProtocol4ApprovalIfApplicable": false, - "riskBased": false - }, - "remediationComplete": "", - "proposedOrActualCompletionDate": "00/00/0000" - } - ], - "persistent": true, - "protected": false, - "dbIndex": false, - "encrypted": false, - "redrawOn": "", - "clearOnHide": true, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "allowCalculateOverride": false, - "validateOn": "change", - "validate": { - "required": false, - "minLength": "", - "maxLength": "", - "customMessage": "", - "custom": "", - "customPrivate": false, - "json": "", - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "errorLabel": "", - "errors": "", - "key": "dataGrid10", - "tags": [], - "properties": {}, - "conditional": { - "show": true, - "when": "environmentalMediumAssessedSelectAllThatApplyIfThisSoscIsToSupportANegativeDeterminationApplicationSelectNA", - "eq": "surfaceWater", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "datagrid", - "input": true, - "components": [ - { - "title": "Surface Water", - "collapsible": false, - "hideLabel": true, - "key": "surfaceWater", - "type": "panel", - "label": "", - "input": false, - "tableView": false, - "components": [ - { - "label": "AEC # (Use the same AEC# as for AECs in the table in Section 4.6)", - "tableView": true, - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "key": "aecUseTheSameAecAsForAeCsInSection46", - "type": "textfield", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "exhym4b" - }, - { - "label": "COC", - "tableView": true, - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "key": "coc", - "type": "textfield", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "edjxf9" - }, - { - "label": "Remediated to the following standard (proposed or completed)", - "optionsLabelPosition": "right", - "tableView": false, - "values": [ - { - "label": "Numerical (standard, guideline or criteria)", - "value": "numericalStandardGuidelineOrCriteria", - "shortcut": "" - }, - { - "label": "Site-Specific numerical standard", - "value": "siteSpecificNumericalStandard", - "shortcut": "" - }, - { - "label": "Background concentration (attach protocol 4 approval if applicable)", - "value": "backgroundConcentrationAttachProtocol4ApprovalIfApplicable", - "shortcut": "" - }, - { - "label": "Risk-based", - "value": "riskBased", - "shortcut": "" - } - ], - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "onlyAvailableItems": false - }, - "key": "remediatedToTheFollowingStandardProposedOrCompleted", - "type": "selectboxes", - "input": true, - "inputType": "checkbox", - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "fieldSet": false, - "inline": false, - "id": "eslf5sl" - }, - { - "label": "Remediation complete", - "optionsLabelPosition": "right", - "inline": false, - "tableView": false, - "values": [ - { - "label": "Yes", - "value": "yes", - "shortcut": "" - }, - { - "label": "No", - "value": "no", - "shortcut": "" - }, - { - "label": "Remediation Planned", - "value": "remediationPlanned", - "shortcut": "" - } - ], - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "onlyAvailableItems": false - }, - "key": "remediationComplete", - "type": "radio", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "inputType": "radio", - "fieldSet": false, - "id": "eyhnsyf" - }, - { - "label": "Proposed or actual completion date", - "hideInputLabels": false, - "inputsLabelPosition": "top", - "useLocaleSettings": false, - "tableView": false, - "fields": { - "day": { - "hide": false, - "required": true, - "type": "number", - "placeholder": "" - }, - "month": { - "hide": false, - "required": true, - "type": "select", - "placeholder": "" - }, - "year": { - "hide": false, - "required": true, - "type": "number", - "placeholder": "" - } - }, - "defaultValue": "00/00/0000", - "key": "proposedOrActualCompletionDate", - "type": "day", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "dayFirst": false, - "id": "ehez7s" - } - ], - "id": "el9aclo0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "hidden": false, - "clearOnHide": false, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "tree": false, - "lazyLoad": false, - "theme": "default", - "breadcrumb": "default" - } - ], - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "unique": false, - "refreshOn": "", - "dataGridLabel": false, - "widget": null, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "tree": true, - "lazyLoad": false, - "id": "eb6spa00000" - }, - { - "label": "Vapour", - "labelPosition": "top", - "description": "", - "tooltip": "", - "disableAddingRemovingRows": false, - "conditionalAddButton": "", - "reorder": false, - "addAnother": "", - "addAnotherPosition": "bottom", - "layoutFixed": false, - "enableRowGroups": false, - "initEmpty": false, - "customClass": "", - "tabindex": "", - "hidden": false, - "hideLabel": false, - "autofocus": false, - "disabled": false, - "tableView": false, - "modalEdit": false, - "defaultValue": [ - { - "aecUseTheSameAecAsForAeCsInSection46": "", - "coc": "", - "remediatedToTheFollowingStandardProposedOrCompleted": { - "numericalStandardGuidelineOrCriteria": false, - "siteSpecificNumericalStandard": false, - "backgroundConcentrationAttachProtocol4ApprovalIfApplicable": false, - "riskBased": false - }, - "remediationComplete": "", - "proposedOrActualCompletionDate": "00/00/0000" - } - ], - "persistent": true, - "protected": false, - "dbIndex": false, - "encrypted": false, - "redrawOn": "", - "clearOnHide": true, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "allowCalculateOverride": false, - "validateOn": "change", - "validate": { - "required": false, - "minLength": "", - "maxLength": "", - "customMessage": "", - "custom": "", - "customPrivate": false, - "json": "", - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "errorLabel": "", - "errors": "", - "key": "dataGrid11", - "tags": [], - "properties": {}, - "conditional": { - "show": true, - "when": "environmentalMediumAssessedSelectAllThatApplyIfThisSoscIsToSupportANegativeDeterminationApplicationSelectNA", - "eq": "vapour", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "datagrid", - "input": true, - "components": [ - { - "title": "Vapour", - "collapsible": false, - "hideLabel": true, - "key": "vapour", - "type": "panel", - "label": "", - "input": false, - "tableView": false, - "components": [ - { - "label": "AEC # (Use the same AEC# as for AECs in the table in Section 4.6)", - "tableView": true, - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "key": "aecUseTheSameAecAsForAeCsInSection46", - "type": "textfield", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "etqxeaii" - }, - { - "label": "COC", - "tableView": true, - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "key": "coc", - "type": "textfield", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "ec8vxle" - }, - { - "label": "Remediated to the following standard (proposed or completed)", - "optionsLabelPosition": "right", - "tableView": false, - "values": [ - { - "label": "Numerical (standard, guideline or criteria)", - "value": "numericalStandardGuidelineOrCriteria", - "shortcut": "" - }, - { - "label": "Site-Specific numerical standard", - "value": "siteSpecificNumericalStandard", - "shortcut": "" - }, - { - "label": "Background concentration (attach protocol 4 approval if applicable)", - "value": "backgroundConcentrationAttachProtocol4ApprovalIfApplicable", - "shortcut": "" - }, - { - "label": "Risk-based", - "value": "riskBased", - "shortcut": "" - } - ], - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "onlyAvailableItems": false - }, - "key": "remediatedToTheFollowingStandardProposedOrCompleted", - "type": "selectboxes", - "input": true, - "inputType": "checkbox", - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "fieldSet": false, - "inline": false, - "id": "exo08af" - }, - { - "label": "Remediation complete", - "optionsLabelPosition": "right", - "inline": false, - "tableView": false, - "values": [ - { - "label": "Yes", - "value": "yes", - "shortcut": "" - }, - { - "label": "No", - "value": "no", - "shortcut": "" - }, - { - "label": "Remediation Planned", - "value": "remediationPlanned", - "shortcut": "" - } - ], - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "onlyAvailableItems": false - }, - "key": "remediationComplete", - "type": "radio", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "inputType": "radio", - "fieldSet": false, - "id": "e86fmgcc" - }, - { - "label": "Proposed or actual completion date", - "hideInputLabels": false, - "inputsLabelPosition": "top", - "useLocaleSettings": false, - "tableView": false, - "fields": { - "day": { - "hide": false, - "required": true, - "type": "number", - "placeholder": "" - }, - "month": { - "hide": false, - "required": true, - "type": "select", - "placeholder": "" - }, - "year": { - "hide": false, - "required": true, - "type": "number", - "placeholder": "" - } - }, - "defaultValue": "00/00/0000", - "key": "proposedOrActualCompletionDate", - "type": "day", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "dayFirst": false, - "id": "et10s3fg" - } - ], - "id": "ehk7lsj000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "hidden": false, - "clearOnHide": false, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "tree": false, - "lazyLoad": false, - "theme": "default", - "breadcrumb": "default" - } - ], - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "unique": false, - "refreshOn": "", - "dataGridLabel": false, - "widget": null, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "tree": true, - "lazyLoad": false, - "id": "ec6dxnf" - }, - { - "label": "Sediment", - "labelPosition": "top", - "description": "", - "tooltip": "", - "disableAddingRemovingRows": false, - "conditionalAddButton": "", - "reorder": false, - "addAnother": "", - "addAnotherPosition": "bottom", - "layoutFixed": false, - "enableRowGroups": false, - "initEmpty": false, - "customClass": "", - "tabindex": "", - "hidden": false, - "hideLabel": false, - "autofocus": false, - "disabled": false, - "tableView": false, - "modalEdit": false, - "defaultValue": [ - { - "aecUseTheSameAecAsForAeCsInSection46": "", - "coc": "", - "remediatedToTheFollowingStandardProposedOrCompleted": { - "numericalStandardGuidelineOrCriteria": false, - "siteSpecificNumericalStandard": false, - "backgroundConcentrationAttachProtocol4ApprovalIfApplicable": false, - "riskBased": false - }, - "remediationComplete": "", - "proposedOrActualCompletionDate": "00/00/0000" - } - ], - "persistent": true, - "protected": false, - "dbIndex": false, - "encrypted": false, - "redrawOn": "", - "clearOnHide": true, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "allowCalculateOverride": false, - "validateOn": "change", - "validate": { - "required": false, - "minLength": "", - "maxLength": "", - "customMessage": "", - "custom": "", - "customPrivate": false, - "json": "", - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "errorLabel": "", - "errors": "", - "key": "dataGrid12", - "tags": [], - "properties": {}, - "conditional": { - "show": true, - "when": "environmentalMediumAssessedSelectAllThatApplyIfThisSoscIsToSupportANegativeDeterminationApplicationSelectNA", - "eq": "sediment", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "datagrid", - "input": true, - "components": [ - { - "title": "Sediment", - "collapsible": false, - "hideLabel": true, - "key": "sediment", - "type": "panel", - "label": "", - "input": false, - "tableView": false, - "components": [ - { - "label": "AEC # (Use the same AEC# as for AECs in the table in Section 4.6)", - "tableView": true, - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "key": "aecUseTheSameAecAsForAeCsInSection46", - "type": "textfield", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "e7jbx9j" - }, - { - "label": "COC", - "tableView": true, - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "key": "coc", - "type": "textfield", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "esfs5p" - }, - { - "label": "Remediated to the following standard (proposed or completed)", - "optionsLabelPosition": "right", - "tableView": false, - "values": [ - { - "label": "Numerical (standard, guideline or criteria)", - "value": "numericalStandardGuidelineOrCriteria", - "shortcut": "" - }, - { - "label": "Site-Specific numerical standard", - "value": "siteSpecificNumericalStandard", - "shortcut": "" - }, - { - "label": "Background concentration (attach protocol 4 approval if applicable)", - "value": "backgroundConcentrationAttachProtocol4ApprovalIfApplicable", - "shortcut": "" - }, - { - "label": "Risk-based", - "value": "riskBased", - "shortcut": "" - } - ], - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "onlyAvailableItems": false - }, - "key": "remediatedToTheFollowingStandardProposedOrCompleted1", - "type": "selectboxes", - "input": true, - "inputType": "checkbox", - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "fieldSet": false, - "inline": false, - "id": "euis3w" - }, - { - "label": "Remediation complete", - "optionsLabelPosition": "right", - "inline": false, - "tableView": false, - "values": [ - { - "label": "Yes", - "value": "yes", - "shortcut": "" - }, - { - "label": "No", - "value": "no", - "shortcut": "" - }, - { - "label": "Remediation Planned", - "value": "remediationPlanned", - "shortcut": "" - } - ], - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "onlyAvailableItems": false - }, - "key": "remediationComplete", - "type": "radio", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "inputType": "radio", - "fieldSet": false, - "id": "ek6jihq" - }, - { - "label": "Proposed or actual completion date", - "hideInputLabels": false, - "inputsLabelPosition": "top", - "useLocaleSettings": false, - "tableView": false, - "fields": { - "day": { - "hide": false, - "required": true, - "type": "number", - "placeholder": "" - }, - "month": { - "hide": false, - "required": true, - "type": "select", - "placeholder": "" - }, - "year": { - "hide": false, - "required": true, - "type": "number", - "placeholder": "" - } - }, - "defaultValue": "00/00/0000", - "key": "proposedOrActualCompletionDate", - "type": "day", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "dayFirst": false, - "id": "eu50tno" - } - ], - "id": "ejahpfm000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "hidden": false, - "clearOnHide": false, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "tree": false, - "lazyLoad": false, - "theme": "default", - "breadcrumb": "default" - } - ], - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "unique": false, - "refreshOn": "", - "dataGridLabel": false, - "widget": null, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "tree": true, - "lazyLoad": false, - "id": "exwpiia0" - } - ], - "id": "e3zicjv" - }, - { - "title": "SECTION IV - Summary of Contaminant Treatment or Removal", - "theme": "default", - "tooltip": "", - "customClass": "", - "collapsible": false, - "hidden": false, - "hideLabel": false, - "disabled": false, - "modalEdit": false, - "key": "sectionIvSummaryOfContaminantTreatmentOrRemoval", - "tags": [], - "properties": {}, - "customConditional": "", - "conditional": { - "json": "", - "show": null, - "when": null, - "eq": "" - }, - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "panel", - "label": "Panel", - "breadcrumb": "default", - "tabindex": "", - "input": false, - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "clearOnHide": false, - "refreshOn": "", - "redrawOn": "", - "tableView": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "tree": false, - "lazyLoad": false, - "components": [ - { - "html": "

 

Identify and describe all contamination removed from or treated on-site. Ensure Part 6 is completed regarding the relocation of waste and non-waste soil.

Provide references to figure(s) showing the lateral and vertical extent of any treated or removed contamination. Confirmatory sample locations and corresponding analytical results shall be shown on each figure and in tabular form with reference to applicable standards:

 

In the AEC column, specify as n/a (not applicable) if remediation or assessment is not required in this environmental medium.

", - "label": "Content", - "customClass": "", - "refreshOnChange": false, - "hidden": false, - "modalEdit": false, - "key": "content41", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "content", - "input": false, - "tableView": false, - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "id": "e12mm2s" - }, - { - "label": "Data Grid", - "reorder": false, - "addAnotherPosition": "bottom", - "layoutFixed": false, - "enableRowGroups": false, - "initEmpty": false, - "hideLabel": true, - "tableView": false, - "defaultValue": [ - {} - ], - "key": "dataGrid13", - "type": "datagrid", - "input": true, - "components": [ - { - "title": "", - "theme": "default", - "tooltip": "", - "customClass": "", - "collapsible": false, - "hidden": false, - "hideLabel": false, - "dataGridLabel": false, - "disabled": false, - "modalEdit": false, - "key": "panel", - "tags": [], - "properties": {}, - "customConditional": "", - "conditional": { - "json": "", - "show": null, - "when": null, - "eq": "" - }, - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "panel", - "label": "", - "breadcrumb": "default", - "tabindex": "", - "input": false, - "tableView": false, - "components": [ - { - "label": "AEC / APEC #", - "tableView": true, - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "key": "aecApec", - "type": "textfield", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "eqnfc6c" - }, - { - "label": "COC", - "tableView": true, - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "key": "coc", - "type": "textfield", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "ea1vh2f" - }, - { - "label": "Medium", - "placeholder": "(e.g. soil, groundwater, surface water, vapour, sediment, other)", - "tableView": true, - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "key": "medium", - "type": "textfield", - "input": true, - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "ekz1zpq" - }, - { - "label": "Material removed volume (m³ or L) ", - "tableView": true, - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "key": "materialRemovedVolumeMOrL", - "type": "textfield", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "e287y9a" - }, - { - "label": "Material removed disposal location (indicate if treated on- site)", - "tableView": true, - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "key": "textField", - "type": "textfield", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "enr29qh" - } - ], - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "clearOnHide": false, - "refreshOn": "", - "redrawOn": "", - "labelPosition": "top", - "description": "", - "errorLabel": "", - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "tree": false, - "lazyLoad": false, - "id": "etzpsl000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" - } - ], - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "tree": true, - "lazyLoad": false, - "disableAddingRemovingRows": false, - "id": "eiqygdt" - } - ], - "id": "ezlmejd" - }, - { - "title": "SECTION V - Summary of Residual Contamination After Remediation", - "theme": "default", - "tooltip": "", - "customClass": "", - "collapsible": false, - "hidden": false, - "hideLabel": false, - "disabled": false, - "modalEdit": false, - "key": "sectionVSummaryOfResidualContaminationAfterRemediation", - "tags": [], - "properties": {}, - "customConditional": "", - "conditional": { - "json": "", - "show": null, - "when": null, - "eq": "" - }, - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "panel", - "label": "Panel", - "breadcrumb": "default", - "tabindex": "", - "input": false, - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "clearOnHide": false, - "refreshOn": "", - "redrawOn": "", - "tableView": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "tree": false, - "lazyLoad": false, - "components": [ - { - "html": "

Identify and describe all contamination that exceeds CSR numerical standards, after the remediation described above has been implemented.

", - "label": "Content", - "customClass": "", - "refreshOnChange": false, - "hidden": false, - "modalEdit": false, - "key": "content42", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "content", - "input": false, - "tableView": false, - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "id": "evqw2d" - }, - { - "label": "Data Grid", - "reorder": false, - "addAnotherPosition": "bottom", - "layoutFixed": false, - "enableRowGroups": false, - "initEmpty": false, - "hideLabel": true, - "tableView": false, - "defaultValue": [ - {} - ], - "key": "dataGrid14", - "type": "datagrid", - "input": true, - "components": [ - { - "title": "", - "collapsible": false, - "key": "panel10", - "type": "panel", - "label": "", - "input": false, - "tableView": false, - "components": [ - { - "label": "AEC / APEC #", - "labelPosition": "top", - "placeholder": "Use same # as for APECS above", - "description": "", - "tooltip": "", - "prefix": "", - "suffix": "", - "widget": { - "type": "input" - }, - "inputMask": "", - "displayMask": "", - "allowMultipleMasks": false, - "customClass": "", - "tabindex": "", - "autocomplete": "", - "hidden": false, - "hideLabel": false, - "showWordCount": false, - "showCharCount": false, - "mask": false, - "autofocus": false, - "spellcheck": true, - "disabled": false, - "tableView": true, - "modalEdit": false, - "multiple": false, - "persistent": true, - "inputFormat": "plain", - "protected": false, - "dbIndex": false, - "case": "", - "truncateMultipleSpaces": false, - "encrypted": false, - "redrawOn": "", - "clearOnHide": true, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "allowCalculateOverride": false, - "validateOn": "change", - "validate": { - "required": true, - "pattern": "", - "customMessage": "", - "custom": "", - "customPrivate": false, - "json": "", - "minLength": "", - "maxLength": "", - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "unique": false, - "errorLabel": "", - "errors": "", - "key": "aecApec", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "textfield", - "input": true, - "refreshOn": "", - "dataGridLabel": false, - "addons": [], - "inputType": "text", - "id": "equan8wd", - "defaultValue": "" - }, - { - "label": "COC", - "tableView": true, - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "key": "coc", - "type": "textfield", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "e8l3z6" - }, - { - "label": "Medium", - "placeholder": "(e.g. soil, groundwater, surface water, vapour, sediment, other)", - "tableView": true, - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "key": "medium", - "type": "textfield", - "input": true, - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "e5nxmnx" - }, - { - "label": "Maximum measured concentration (indicate units)", - "labelPosition": "top", - "placeholder": "", - "description": "", - "tooltip": "", - "prefix": "", - "suffix": "", - "widget": { - "type": "input" - }, - "inputMask": "", - "displayMask": "", - "allowMultipleMasks": false, - "customClass": "", - "tabindex": "", - "autocomplete": "", - "hidden": false, - "hideLabel": false, - "showWordCount": false, - "showCharCount": false, - "mask": false, - "autofocus": false, - "spellcheck": true, - "disabled": false, - "tableView": true, - "modalEdit": false, - "multiple": false, - "persistent": true, - "inputFormat": "plain", - "protected": false, - "dbIndex": false, - "case": "", - "truncateMultipleSpaces": false, - "encrypted": false, - "redrawOn": "", - "clearOnHide": true, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "allowCalculateOverride": false, - "validateOn": "change", - "validate": { - "required": true, - "pattern": "", - "customMessage": "", - "custom": "", - "customPrivate": false, - "json": "", - "minLength": "", - "maxLength": "", - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "unique": false, - "errorLabel": "", - "errors": "", - "key": "materialRemovedVolumeMOrL", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "textfield", - "input": true, - "refreshOn": "", - "dataGridLabel": false, - "addons": [], - "inputType": "text", - "id": "eknlfdn", - "defaultValue": "" - }, - { - "label": "Extent of Contamination (area m²)", - "labelPosition": "top", - "placeholder": "", - "description": "", - "tooltip": "", - "prefix": "", - "suffix": "", - "widget": { - "type": "input" - }, - "inputMask": "", - "displayMask": "", - "allowMultipleMasks": false, - "customClass": "", - "tabindex": "", - "autocomplete": "", - "hidden": false, - "hideLabel": false, - "showWordCount": false, - "showCharCount": false, - "mask": false, - "autofocus": false, - "spellcheck": true, - "disabled": false, - "tableView": true, - "modalEdit": false, - "multiple": false, - "persistent": true, - "inputFormat": "plain", - "protected": false, - "dbIndex": false, - "case": "", - "truncateMultipleSpaces": false, - "encrypted": false, - "redrawOn": "", - "clearOnHide": true, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "allowCalculateOverride": false, - "validateOn": "change", - "validate": { - "required": true, - "pattern": "", - "customMessage": "", - "custom": "", - "customPrivate": false, - "json": "", - "minLength": "", - "maxLength": "", - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "unique": false, - "errorLabel": "", - "errors": "", - "key": "textField", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "textfield", - "input": true, - "refreshOn": "", - "dataGridLabel": false, - "addons": [], - "inputType": "text", - "id": "e64bv9p", - "defaultValue": "" - }, - { - "label": "Extent of contamination (depth range (m))", - "labelPosition": "top", - "placeholder": "", - "description": "", - "tooltip": "", - "prefix": "", - "suffix": "", - "widget": { - "type": "input" - }, - "inputMask": "", - "displayMask": "", - "allowMultipleMasks": false, - "customClass": "", - "tabindex": "", - "autocomplete": "", - "hidden": false, - "hideLabel": false, - "showWordCount": false, - "showCharCount": false, - "mask": false, - "autofocus": false, - "spellcheck": true, - "disabled": false, - "tableView": true, - "modalEdit": false, - "multiple": false, - "persistent": true, - "inputFormat": "plain", - "protected": false, - "dbIndex": false, - "case": "", - "truncateMultipleSpaces": false, - "encrypted": false, - "redrawOn": "", - "clearOnHide": true, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "allowCalculateOverride": false, - "validateOn": "change", - "validate": { - "required": true, - "pattern": "", - "customMessage": "", - "custom": "", - "customPrivate": false, - "json": "", - "minLength": "", - "maxLength": "", - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "unique": false, - "errorLabel": "", - "errors": "", - "key": "extentOfContaminationDepthRangeM", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "textfield", - "input": true, - "refreshOn": "", - "dataGridLabel": false, - "addons": [], - "inputType": "text", - "id": "exmk0l", - "defaultValue": "" - } - ], - "id": "esvz3la0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "hidden": false, - "clearOnHide": false, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "tree": false, - "lazyLoad": false, - "theme": "default", - "breadcrumb": "default" - } - ], - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "tree": true, - "lazyLoad": false, - "disableAddingRemovingRows": false, - "id": "eo9nnrn" - } - ], - "id": "er09bl" - }, - { - "html": "

 

5.6 Remediation Issues

 

", - "label": "Content", - "customClass": "", - "refreshOnChange": false, - "hidden": false, - "modalEdit": false, - "key": "content43", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "content", - "input": false, - "tableView": false, - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "id": "ehwovt" - }, - { - "label": "Identify any issues regarding investigations or interpretations if the PSI and DSI information may not satisfy the requirements of CSR Sections 58 and 59 and applicable protocols and guidance documents. Briefly describe how these deficiencies will be addressed (examples include destroyed wells, completion of detailed delineation following building demolition or other proposed work at a later stage of remediation). ", - "labelPosition": "top", - "placeholder": "", - "description": "", - "tooltip": "", - "prefix": "", - "suffix": "", - "widget": { - "type": "input" - }, - "displayMask": "", - "editor": "", - "autoExpand": false, - "customClass": "", - "tabindex": "", - "autocomplete": "", - "hidden": false, - "hideLabel": false, - "showWordCount": false, - "showCharCount": false, - "autofocus": false, - "spellcheck": true, - "disabled": false, - "tableView": true, - "modalEdit": false, - "multiple": false, - "persistent": true, - "inputFormat": "html", - "protected": false, - "dbIndex": false, - "case": "", - "truncateMultipleSpaces": false, - "encrypted": false, - "redrawOn": "", - "clearOnHide": true, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "allowCalculateOverride": false, - "validateOn": "change", - "validate": { - "required": false, - "pattern": "", - "customMessage": "", - "custom": "", - "customPrivate": false, - "json": "", - "minLength": "", - "maxLength": "", - "minWords": "", - "maxWords": "", - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "unique": false, - "errorLabel": "", - "errors": "", - "key": "textArea", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "textarea", - "rows": 12, - "wysiwyg": false, - "input": true, - "refreshOn": "", - "dataGridLabel": false, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputMask": "", - "fixedSize": true, - "id": "e3l2fgh", - "defaultValue": "" - }, - { - "html": "

Part 6 - Summary of Soil Management

", - "label": "Content", - "customClass": "", - "refreshOnChange": false, - "hidden": false, - "modalEdit": false, - "key": "content44", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "content", - "input": false, - "tableView": false, - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "id": "e80swfv" - }, - { - "label": "Was soil relocated from the source site?", - "labelPosition": "top", - "optionsLabelPosition": "right", - "description": "", - "tooltip": "", - "customClass": "", - "tabindex": "", - "inline": false, - "hidden": false, - "hideLabel": false, - "autofocus": false, - "disabled": false, - "tableView": false, - "modalEdit": false, - "values": [ - { - "label": "Yes", - "value": "yes", - "shortcut": "" - }, - { - "label": "No", - "value": "no", - "shortcut": "" - } - ], - "dataType": "", - "persistent": true, - "protected": false, - "dbIndex": false, - "encrypted": false, - "redrawOn": "", - "clearOnHide": true, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "allowCalculateOverride": false, - "validate": { - "required": true, - "onlyAvailableItems": false, - "customMessage": "", - "custom": "", - "customPrivate": false, - "json": "", - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "errorLabel": "", - "errors": "", - "key": "wasSoilRelocatedFromTheSourceSite", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "radio", - "input": true, - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "unique": false, - "refreshOn": "", - "dataGridLabel": false, - "widget": null, - "validateOn": "change", - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "inputType": "radio", - "fieldSet": false, - "id": "em6ei1p", - "defaultValue": "" - }, - { - "title": "Panel", - "theme": "default", - "tooltip": "", - "customClass": "", - "collapsible": false, - "hidden": false, - "hideLabel": true, - "disabled": false, - "modalEdit": false, - "key": "panel4", - "tags": [], - "properties": {}, - "customConditional": "", - "conditional": { - "json": "", - "show": true, - "when": "wasSoilRelocatedFromTheSourceSite", - "eq": "yes" - }, - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "panel", - "label": "Panel", - "breadcrumb": "default", - "tabindex": "", - "input": false, - "tableView": false, - "components": [ - { - "html": "

6.1 Waste Soil Management

", - "label": "Content", - "refreshOnChange": false, - "key": "content45", - "type": "content", - "input": false, - "tableView": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "id": "eubtd7o" - }, - { - "label": "Was waste soil relocated to a site authorized under Part 2 of the Environmental Management Act or an Approval in Principle to receive waste soil?", - "optionsLabelPosition": "right", - "inline": false, - "tableView": false, - "values": [ - { - "label": "Yes", - "value": "yes", - "shortcut": "" - }, - { - "label": "No", - "value": "no", - "shortcut": "" - } - ], - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "onlyAvailableItems": false - }, - "key": "wasWasteSoilRelocatedToASiteAuthorizedUnderPart2OfTheEnvironmentalManagementActOrAnApprovalInPrincipleToReceiveWasteSoil", - "type": "radio", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "inputType": "radio", - "fieldSet": false, - "id": "eioxo4w" - }, - { - "html": "

6.2 Non-Waste Soil Relocation

", - "label": "Content", - "refreshOnChange": false, - "key": "content46", - "type": "content", - "input": false, - "tableView": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "id": "efcqmu3" - }, - { - "label": "Was non-waste soil relocated to a receiving site?", - "optionsLabelPosition": "right", - "inline": false, - "tableView": false, - "values": [ - { - "label": "Yes", - "value": "yes", - "shortcut": "" - }, - { - "label": "No", - "value": "no", - "shortcut": "" - } - ], - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "onlyAvailableItems": false - }, - "key": "wasNonWasteSoilRelocatedToAReceivingSite", - "type": "radio", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "inputType": "radio", - "fieldSet": false, - "id": "e7iq2oh" - }, - { - "label": "Was notification provided according to section 55 (1.1) of the Environmental Management Act? ", - "optionsLabelPosition": "right", - "inline": false, - "tableView": false, - "values": [ - { - "label": "Yes", - "value": "yes", - "shortcut": "" - }, - { - "label": "No", - "value": "no", - "shortcut": "" - } - ], - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "onlyAvailableItems": false - }, - "key": "wasNotificationProvidedAccordingToSection5511OfTheEnvironmentalManagementAct", - "type": "radio", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "inputType": "radio", - "fieldSet": false, - "id": "ewp4le7" - }, - { - "label": "If no, indicate which exemption applies (see CSR section 42) (Please select all that apply)", - "optionsLabelPosition": "right", - "tableView": false, - "defaultValue": { - "siteHasNotBeenUsedForASpecifiedIndustrialOrCommercialUse": false, - "forNonHighRiskSitesTheAmountOfSoilRemovedIsLessThan30CubicMetres": false, - "soilWasRelocatedToASiteWhereTheDepositIsAuthorizedByPermitApprovalOrderWasteManagementPlanAndOperationalCertificate": false, - "receivingSiteIsOutsideOfBritishColumbia": false, - "receivingSiteIsOnFederalLandOtherThanAReserveWithinTheMeaningOfTheIndianActCanada": false, - "sourceSiteHasNotBeenUsedOtherThanForALowImpactLandUseOrMiningOfMarlEarthSoilPeatSandGravelDimensionStoneRockOrAnyNaturalSubstanceThatIsUsedForAConstructionPurposeOnLandAndTheSoilWasIExtractedInAccordanceWithAPermitUnderTheMinesActAndIiTransportedDirectlyToTheReceivingSite": false, - "soilIsPreload": false, - "soilIsWinterMaintenanceSand": false - }, - "values": [ - { - "label": "Site has not been used for a specified industrial or commercial use", - "value": "siteHasNotBeenUsedForASpecifiedIndustrialOrCommercialUse", - "shortcut": "" - }, - { - "label": "For non-high risk sites, the amount of soil removed is less than 30 cubic metres", - "value": "forNonHighRiskSitesTheAmountOfSoilRemovedIsLessThan30CubicMetres", - "shortcut": "" - }, - { - "label": "Soil was relocated to a site where the deposit is authorized by permit, approval, order, waste management plan and operational certificate", - "value": "soilWasRelocatedToASiteWhereTheDepositIsAuthorizedByPermitApprovalOrderWasteManagementPlanAndOperationalCertificate", - "shortcut": "" - }, - { - "label": "Receiving site is outside of British Columbia", - "value": "receivingSiteIsOutsideOfBritishColumbia", - "shortcut": "" - }, - { - "label": "Receiving site is on federal land, other than a reserve within the meaning of the Indian Act (Canada)", - "value": "receivingSiteIsOnFederalLandOtherThanAReserveWithinTheMeaningOfTheIndianActCanada", - "shortcut": "" - }, - { - "label": "Source site has not been used other than for a low-impact land use or mining of marl, earth, soil, peat, sand, gravel, dimension stone, rock or any natural substance that is used for a construction purpose on land and the soil was: (i) extracted in accordance with a permit under the Mines Act, and (ii) transported directly to the receiving site", - "value": "sourceSiteHasNotBeenUsedOtherThanForALowImpactLandUseOrMiningOfMarlEarthSoilPeatSandGravelDimensionStoneRockOrAnyNaturalSubstanceThatIsUsedForAConstructionPurposeOnLandAndTheSoilWasIExtractedInAccordanceWithAPermitUnderTheMinesActAndIiTransportedDirectlyToTheReceivingSite", - "shortcut": "" - }, - { - "label": "Soil is preload", - "value": "soilIsPreload", - "shortcut": "" - }, - { - "label": "Soil is winter-maintenance sand", - "value": "soilIsWinterMaintenanceSand", - "shortcut": "" - } - ], - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "onlyAvailableItems": false - }, - "key": "ifNoIndicateWhichExemptionAppliesSeeCsrSection42PleaseSelectAllThatApply", - "conditional": { - "show": true, - "when": "wasNotificationProvidedAccordingToSection5511OfTheEnvironmentalManagementAct", - "eq": "no" - }, - "type": "selectboxes", - "input": true, - "inputType": "checkbox", - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "fieldSet": false, - "inline": false, - "id": "ey50ioo" - } - ], - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "clearOnHide": false, - "refreshOn": "", - "redrawOn": "", - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "tree": false, - "lazyLoad": false, - "id": "en97uhj" - }, - { - "html": "

Part 7 - Recomendation of Approved Professionals

", - "label": "Content", - "customClass": "", - "refreshOnChange": false, - "hidden": false, - "modalEdit": false, - "key": "content47", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "content", - "input": false, - "tableView": false, - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "id": "ep2pdaq" - }, - { - "label": "Recommendation under Protocol 6", - "labelPosition": "top", - "optionsLabelPosition": "right", - "description": "", - "tooltip": "", - "customClass": "", - "tabindex": "", - "inline": false, - "hidden": false, - "hideLabel": false, - "autofocus": false, - "disabled": false, - "tableView": false, - "modalEdit": false, - "values": [ - { - "label": "Yes", - "value": "yes", - "shortcut": "" - }, - { - "label": "No", - "value": "no", - "shortcut": "" - } - ], - "dataType": "", - "persistent": true, - "protected": false, - "dbIndex": false, - "encrypted": false, - "redrawOn": "", - "clearOnHide": true, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "allowCalculateOverride": false, - "validate": { - "required": false, - "onlyAvailableItems": false, - "customMessage": "", - "custom": "", - "customPrivate": false, - "json": "", - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "errorLabel": "", - "errors": "", - "key": "recommendationUnderProtocol6", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "radio", - "input": true, - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "unique": false, - "refreshOn": "", - "dataGridLabel": false, - "widget": null, - "validateOn": "change", - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "inputType": "radio", - "fieldSet": false, - "id": "e6idi1p", - "defaultValue": "" - }, - { - "label": "Direct to ministry application?", - "optionsLabelPosition": "right", - "inline": false, - "tableView": false, - "values": [ - { - "label": "Yes", - "value": "true", - "shortcut": "" - }, - { - "label": "No", - "value": "false", - "shortcut": "" - } - ], - "key": "directToMinistryApplication", - "type": "radio", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "onlyAvailableItems": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "inputType": "radio", - "fieldSet": false, - "id": "e7lksy9" - }, - { - "title": "SECTION I - Certification Document and Summary Recommendation", - "theme": "default", - "tooltip": "", - "customClass": "", - "collapsible": false, - "hidden": false, - "hideLabel": false, - "disabled": false, - "modalEdit": false, - "key": "panel9", - "tags": [], - "properties": {}, - "customConditional": "", - "conditional": { - "json": "", - "show": null, - "when": null, - "eq": "" - }, - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "panel", - "label": "Panel", - "breadcrumb": "default", - "tabindex": "", - "input": false, - "tableView": false, - "components": [ - { - "html": "

Based on the detailed technical information available for the site, as summarized in this Summary of Site Condition, I recommend that the following certification document be issued for the subject site.

", - "label": "Content", - "customClass": "", - "refreshOnChange": false, - "hidden": false, - "modalEdit": false, - "key": "content49", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "content", - "input": false, - "tableView": false, - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "id": "e1y6n5q" - }, - { - "label": "Approved Professional Name", - "labelPosition": "top", - "placeholder": "", - "description": "", - "tooltip": "", - "prefix": "", - "suffix": "", - "widget": { - "type": "input" - }, - "inputMask": "", - "displayMask": "", - "allowMultipleMasks": false, - "customClass": "", - "tabindex": "", - "autocomplete": "", - "hidden": false, - "hideLabel": false, - "showWordCount": false, - "showCharCount": false, - "mask": false, - "autofocus": false, - "spellcheck": true, - "disabled": false, - "tableView": true, - "modalEdit": false, - "multiple": false, - "persistent": true, - "inputFormat": "plain", - "protected": false, - "dbIndex": false, - "case": "", - "truncateMultipleSpaces": false, - "encrypted": false, - "redrawOn": "", - "clearOnHide": true, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "allowCalculateOverride": false, - "validateOn": "change", - "validate": { - "required": true, - "pattern": "", - "customMessage": "", - "custom": "", - "customPrivate": false, - "json": "", - "minLength": "", - "maxLength": "", - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "unique": false, - "errorLabel": "", - "errors": "", - "key": "approvedProfessionalName", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "textfield", - "input": true, - "refreshOn": "", - "dataGridLabel": false, - "addons": [], - "inputType": "text", - "id": "evgk94d", - "defaultValue": "" - }, - { - "label": "Please select those that apply", - "labelPosition": "top", - "optionsLabelPosition": "right", - "description": "", - "tooltip": "", - "customClass": "", - "tabindex": "", - "inline": false, - "hidden": false, - "hideLabel": false, - "autofocus": false, - "disabled": false, - "tableView": false, - "modalEdit": false, - "defaultValue": { - "aDeterminationUnderSection44OfEma": false, - "anAiPUnderSection531OfEma": false, - "aCoCUnderSection533OfEma": false, - "aSiteRiskReclassification": false, - "other": false - }, - "values": [ - { - "label": "A Determination under section 44 of EMA", - "value": "aDeterminationUnderSection44OfEma", - "shortcut": "" - }, - { - "label": "An AiP under section 53 (1) of EMA", - "value": "anAiPUnderSection531OfEma", - "shortcut": "" - }, - { - "label": "A CoC under section 53(3) of EMA ", - "value": "aCoCUnderSection533OfEma", - "shortcut": "" - }, - { - "label": "A Site Risk Reclassification", - "value": "aSiteRiskReclassification", - "shortcut": "" - }, - { - "label": "Other", - "value": "other", - "shortcut": "" - } - ], - "persistent": true, - "protected": false, - "dbIndex": false, - "encrypted": false, - "redrawOn": "", - "clearOnHide": true, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "allowCalculateOverride": false, - "validate": { - "required": true, - "onlyAvailableItems": false, - "customMessage": "", - "custom": "", - "customPrivate": false, - "json": "", - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "errorLabel": "", - "minSelectedCountMessage": "", - "maxSelectedCountMessage": "", - "errors": "", - "key": "recommendationCheckbox", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "selectboxes", - "input": true, - "inputType": "checkbox", - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "unique": false, - "refreshOn": "", - "dataGridLabel": false, - "widget": null, - "validateOn": "change", - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "fieldSet": false, - "id": "egkjvv6" - }, - { - "label": "Describe:", - "labelPosition": "top", - "placeholder": "", - "description": "", - "tooltip": "", - "prefix": "", - "suffix": "", - "widget": { - "type": "input" - }, - "displayMask": "", - "editor": "", - "autoExpand": false, - "customClass": "", - "tabindex": "", - "autocomplete": "", - "hidden": false, - "hideLabel": false, - "showWordCount": false, - "showCharCount": false, - "autofocus": false, - "spellcheck": true, - "disabled": false, - "tableView": true, - "modalEdit": false, - "multiple": false, - "persistent": true, - "inputFormat": "html", - "protected": false, - "dbIndex": false, - "case": "", - "truncateMultipleSpaces": false, - "encrypted": false, - "redrawOn": "", - "clearOnHide": true, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "allowCalculateOverride": false, - "validateOn": "change", - "validate": { - "required": true, - "pattern": "", - "customMessage": "", - "custom": "", - "customPrivate": false, - "json": "", - "minLength": "", - "maxLength": "", - "minWords": "", - "maxWords": "", - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "unique": false, - "errorLabel": "", - "errors": "", - "key": "describe1", - "tags": [], - "properties": {}, - "conditional": { - "show": "", - "when": "", - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "textarea", - "rows": 3, - "wysiwyg": false, - "input": true, - "refreshOn": "", - "dataGridLabel": false, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputMask": "", - "fixedSize": true, - "id": "e6u9cg", - "defaultValue": "" - }, - { - "html": "

Although I understand that the basis of such recommendations should only be formally evaluated by reference to detailed technical guidance, the primary basis of this recommendation or these recommendations is as follows:

", - "label": "Content", - "customClass": "", - "refreshOnChange": false, - "hidden": false, - "modalEdit": false, - "key": "content50", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "content", - "input": false, - "tableView": false, - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "id": "e2cnv1r" - }, - { - "html": "

 

Approved Professional Recommendation

", - "label": "Content", - "customClass": "", - "refreshOnChange": false, - "hidden": false, - "modalEdit": false, - "key": "content51", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "content", - "input": false, - "tableView": false, - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "id": "ehkcebn" - }, - { - "label": "For a recommendation for a Determination", - "optionsLabelPosition": "right", - "inline": false, - "tableView": false, - "values": [ - { - "label": "Yes", - "value": "yes", - "shortcut": "" - }, - { - "label": "No", - "value": "no", - "shortcut": "" - } - ], - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "onlyAvailableItems": false - }, - "key": "forARecommendationForADetermination", - "type": "radio", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "inputType": "radio", - "fieldSet": false, - "id": "e6m3fu" - }, - { - "label": "For a recommendation for an Approval in Principle and for a Certificate of Compliance", - "optionsLabelPosition": "right", - "inline": false, - "tableView": false, - "values": [ - { - "label": "Yes", - "value": "yes", - "shortcut": "" - }, - { - "label": "No", - "value": "no", - "shortcut": "" - } - ], - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "onlyAvailableItems": false - }, - "key": "forARecommendationForanApprovalInPrinciple", - "type": "radio", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "inputType": "radio", - "fieldSet": false, - "id": "es27vr8" - }, - { - "label": "For a recommendation for a Site Risk Reclassification", - "labelPosition": "top", - "optionsLabelPosition": "right", - "description": "", - "tooltip": "", - "customClass": "", - "tabindex": "", - "inline": false, - "hidden": false, - "hideLabel": false, - "autofocus": false, - "disabled": false, - "tableView": false, - "modalEdit": false, - "values": [ - { - "label": "Yes", - "value": "true", - "shortcut": "" - }, - { - "label": "No", - "value": "false", - "shortcut": "" - } - ], - "dataType": "", - "persistent": true, - "protected": false, - "dbIndex": false, - "encrypted": false, - "redrawOn": "", - "clearOnHide": true, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "allowCalculateOverride": false, - "validate": { - "required": true, - "onlyAvailableItems": false, - "customMessage": "", - "custom": "", - "customPrivate": false, - "json": "", - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "errorLabel": "", - "errors": "", - "key": "siteRiskReclassification", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "radio", - "input": true, - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "unique": false, - "refreshOn": "", - "dataGridLabel": false, - "widget": null, - "validateOn": "change", - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "inputType": "radio", - "fieldSet": false, - "id": "el2mw07", - "defaultValue": "" - }, - { - "title": "Panel", - "theme": "default", - "tooltip": "", - "customClass": "", - "collapsible": false, - "hidden": false, - "hideLabel": true, - "disabled": false, - "modalEdit": false, - "key": "panel5", - "tags": [], - "properties": {}, - "customConditional": "", - "conditional": { - "json": "", - "show": true, - "when": "forARecommendationForADetermination", - "eq": "yes" - }, - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "panel", - "label": "Panel", - "breadcrumb": "default", - "tabindex": "", - "input": false, - "tableView": false, - "components": [ - { - "html": "

For a Recommendation for a Determination

", - "label": "Content", - "refreshOnChange": false, - "key": "content52", - "type": "content", - "input": false, - "tableView": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "id": "ep5zkki" - }, - { - "label": "Please select those that apply:", - "optionsLabelPosition": "right", - "inline": false, - "tableView": false, - "values": [ - { - "label": "On the basis of information provided and reviewed, it is my opinion that no CSR Schedule 2 activities have occurred at the subject site.", - "value": "onTheBasisOfInformationProvidedAndReviewedItIsMyOpinionThatNoCsrSchedule2ActivitiesHaveOccurredAtTheSubjectSite", - "shortcut": "" - }, - { - "label": "CSR Schedule 2 activities are known or suspected to have occurred at the subject site, therefore in my opinion contaminants may have been released onto the subject site so that the site would be classified as a contaminated site in accordance with the CSR.", - "value": "csrSchedule2ActivitiesAreKnownOrSuspectedToHaveOccurredAtTheSubjectSiteThereforeInMyOpinionContaminantsMayHaveBeenReleasedOntoTheSubjectSiteSoThatTheSiteWouldBeClassifiedAsAContaminatedSiteInAccordanceWithTheCsr", - "shortcut": "" - }, - { - "label": "CSR Schedule 2 activities are known or suspected to have occurred at the subject site, but it is my opinion that the specific nature of such activities would not result in contamination so that the site would be classified as a contaminated site in accordance with the CSR", - "value": "csrSchedule2ActivitiesAreKnownOrSuspectedToHaveOccurredAtTheSubjectSiteButItIsMyOpinionThatTheSpecificNatureOfSuchActivitiesWouldNotResultInContaminationSoThatTheSiteWouldBeClassifiedAsAContaminatedSiteInAccordanceWithTheCsr", - "shortcut": "" - } - ], - "key": "pleaseSelectThoseThatApply1", - "type": "radio", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "onlyAvailableItems": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "inputType": "radio", - "fieldSet": false, - "id": "eax6pvb" - }, - { - "label": "Preliminary Site Investigation addressing all identified areas of potential environmental concern (APECs) and potential contaminants of concern (PCOCs) was completed. No substances were identified in concentrations exceeding those identified in BC CSR Schedules 3.1, 3.2, 3.3 or 3.4, as applicable. All PCOCs have been listed in Schedule B of the draft Determination.", - "tableView": false, - "key": "preliminarySiteInvestigationAddressingAllIdentifiedAreasOfPotentialEnvironmentalConcernApeCsAndPotentialContaminantsOfConcernPcoCsWasCompletedNoSubstancesWereIdentifiedInConcentrationsExceedingThoseIdentifiedInBcCsrSchedules313233Or34AsApplicableAllPcoCsHaveBeenListedInScheduleBOfTheDraftDetermination", - "type": "checkbox", - "input": true, - "defaultValue": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": true, - "labelPosition": "right", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "inputType": "checkbox", - "value": "", - "name": "", - "id": "emb80v" - } - ], - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "clearOnHide": false, - "refreshOn": "", - "redrawOn": "", - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "tree": false, - "lazyLoad": false, - "id": "emq5me" - }, - { - "title": "Panel", - "theme": "default", - "tooltip": "", - "customClass": "", - "collapsible": false, - "hidden": false, - "hideLabel": true, - "disabled": false, - "modalEdit": false, - "key": "panel6", - "tags": [], - "properties": {}, - "customConditional": "", - "conditional": { - "json": "", - "show": true, - "when": "forARecommendationForanApprovalInPrinciple", - "eq": "yes" - }, - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "panel", - "label": "Panel", - "breadcrumb": "default", - "tabindex": "", - "input": false, - "tableView": false, - "components": [ - { - "html": "

For a recommendation for an Approval in Principle and for a Certificate of Compliance

", - "label": "Content", - "refreshOnChange": false, - "key": "content53", - "type": "content", - "input": false, - "tableView": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "id": "eht7ie" - }, - { - "label": "A Preliminary Site Investigation addressing all identified areas of potential environmental concern (APECs) and potential contaminants of concern (PCOCs) was completed. One or more substances were identified at concentrations exceeding applicable standards or criteria in CSR Schedules 3.1, 3.2, 3.3 or 3.4", - "tableView": false, - "key": "aPreliminarySiteInvestigationAddressingAllIdentifiedAreasOfPotentialEnvironmentalConcernApeCsAndPotentialContaminantsOfConcernPcoCsWasCompletedOneOrMoreSubstancesWereIdentifiedAtConcentrationsExceedingApplicableStandardsOrCriteriaInCsrSchedules313233Or34", - "type": "checkbox", - "input": true, - "defaultValue": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": true, - "labelPosition": "right", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "inputType": "checkbox", - "value": "", - "name": "", - "id": "e83hcb" - }, - { - "label": "A Detailed Site Investigation addressing the locations and extent of all identified areas of environmental concern (AECs) and contaminants of concern (COCs) was completed ", - "tableView": false, - "defaultValue": false, - "key": "aDetailedSiteInvestigationAddressingTheLocationsAndExtentOfAllIdentifiedAreasOfEnvironmentalConcernAeCsAndContaminantsOfConcernCoCsWasCompletedAnd", - "type": "checkbox", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": true, - "labelPosition": "right", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "inputType": "checkbox", - "value": "", - "name": "", - "id": "eife04m" - }, - { - "label": "And:", - "optionsLabelPosition": "right", - "tableView": false, - "values": [ - { - "label": "Forms the basis of a remediation plan or risk assessment", - "value": "formsTheBasisOfARemediationPlanOrRiskAssessment", - "shortcut": "" - }, - { - "label": "Was the basis for remediation of the site", - "value": "wasTheBasisForRemediationOfTheSite", - "shortcut": "" - }, - { - "label": "The site is classified as non-high risk under Protocol 12", - "value": "theSiteIsClassifiedAsNonHighRiskUnderProtocol12", - "shortcut": "" - } - ], - "key": "and", - "conditional": { - "show": true, - "when": "aDetailedSiteInvestigationAddressingTheLocationsAndExtentOfAllIdentifiedAreasOfEnvironmentalConcernAeCsAndContaminantsOfConcernCoCsWasCompletedAnd", - "eq": "true" - }, - "type": "selectboxes", - "input": true, - "inputType": "checkbox", - "defaultValue": { - "formsTheBasisOfARemediationPlanOrRiskAssessment": false, - "wasTheBasisForRemediationOfTheSite": false, - "theSiteIsClassifiedAsNonHighRiskUnderProtocol12": false - }, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "onlyAvailableItems": false - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "fieldSet": false, - "inline": false, - "id": "ecf28xg" - }, - { - "label": "When this Summary of Site Condition was prepared", - "optionsLabelPosition": "right", - "inline": false, - "tableView": false, - "values": [ - { - "label": "Remediation plan had been prepared that provides for remediating all identified locations and respective extent of all contaminants to either CSR numerical or risk-based standards.", - "value": "remediationPlanHadBeenPreparedThatProvidesForRemediatingAllIdentifiedLocationsAndRespectiveExtentOfAllContaminantsToEitherCsrNumericalOrRiskBasedStandards", - "shortcut": "" - }, - { - "label": "All contaminants and their respective locations and extent as identified in investigation and risk assessment reports had been remediated to CSR numerical concentration or risk-based standards.", - "value": "allContaminantsAndTheirRespectiveLocationsAndExtentAsIdentifiedInInvestigationAndRiskAssessmentReportsHadBeenRemediatedToCsrNumericalConcentrationOrRiskBasedStandards", - "shortcut": "" - } - ], - "key": "whenThisSummaryOfSiteConditionWasPrepared", - "type": "radio", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "onlyAvailableItems": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "inputType": "radio", - "fieldSet": false, - "id": "e4himt9" - } - ], - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "clearOnHide": false, - "refreshOn": "", - "redrawOn": "", - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "tree": false, - "lazyLoad": false, - "id": "ecumlo6" - }, - { - "title": "Panel", - "theme": "default", - "tooltip": "", - "customClass": "", - "collapsible": false, - "hidden": false, - "hideLabel": true, - "disabled": false, - "modalEdit": false, - "key": "panel7", - "tags": [], - "properties": {}, - "customConditional": "", - "conditional": { - "json": "", - "show": true, - "when": "siteRiskReclassification", - "eq": "true" - }, - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "panel", - "label": "Panel", - "breadcrumb": "default", - "tabindex": "", - "input": false, - "tableView": false, - "components": [ - { - "html": "

For a recommendation for a Site Risk Reclassification

", - "label": "Content", - "refreshOnChange": false, - "key": "content54", - "type": "content", - "input": false, - "tableView": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "id": "ekdiwsi" - }, - { - "label": "Please select", - "optionsLabelPosition": "right", - "inline": false, - "tableView": false, - "values": [ - { - "label": "The site is classified as risk-managed high risk under Protocol 12.", - "value": "theSiteIsClassifiedAsRiskManagedHighRiskUnderProtocol12", - "shortcut": "" - }, - { - "label": "The site is classified as non-high risk under Protocol 12.", - "value": "theSiteIsClassifiedAsNonHighRiskUnderProtocol12", - "shortcut": "" - } - ], - "key": "pleaseSelect", - "type": "radio", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "onlyAvailableItems": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "inputType": "radio", - "fieldSet": false, - "id": "eiohx6i" - } - ], - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "clearOnHide": false, - "refreshOn": "", - "redrawOn": "", - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "tree": false, - "lazyLoad": false, - "id": "e3y0rp9" - } - ], - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "clearOnHide": false, - "refreshOn": "", - "redrawOn": "", - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "tree": false, - "lazyLoad": false, - "id": "exfhnl" - }, - { - "title": "SECTION II - Substances Remediated or Standards or Criteria Applied", - "theme": "default", - "tooltip": "", - "customClass": "", - "collapsible": false, - "hidden": false, - "hideLabel": false, - "disabled": false, - "modalEdit": false, - "key": "sectionIiSubstancesRemediatedOrStandardsOrCriteriaApplied", - "tags": [], - "properties": {}, - "customConditional": "", - "conditional": { - "json": "", - "show": null, - "when": null, - "eq": "" - }, - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "panel", - "label": "Panel", - "breadcrumb": "default", - "tabindex": "", - "input": false, - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "clearOnHide": false, - "refreshOn": "", - "redrawOn": "", - "tableView": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "tree": false, - "lazyLoad": false, - "components": [ - { - "html": "

7.2 Substances remediated and standards or criteria applied

 

Contaminants have been remediated to comply with standards or criteria listed in the following table: (If the site required remediation and has been remediated.) 

", - "label": "Content", - "customClass": "", - "refreshOnChange": false, - "hidden": false, - "modalEdit": false, - "key": "content55", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "content", - "input": false, - "tableView": false, - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "id": "egplxle" - }, - { - "label": "Substances Remediated", - "labelPosition": "top", - "optionsLabelPosition": "right", - "description": "", - "tooltip": "", - "customClass": "", - "tabindex": "", - "inline": false, - "hidden": false, - "hideLabel": false, - "autofocus": false, - "disabled": false, - "tableView": false, - "modalEdit": false, - "values": [ - { - "label": "N/A", - "value": "nA", - "shortcut": "" - }, - { - "label": "Soil", - "value": "soil", - "shortcut": "" - }, - { - "label": "Water", - "value": "water", - "shortcut": "" - }, - { - "label": "Vapour", - "value": "vapour", - "shortcut": "" - }, - { - "label": "Sediment", - "value": "sediment", - "shortcut": "" - }, - { - "label": "Other", - "value": "other", - "shortcut": "" - } - ], - "persistent": true, - "protected": false, - "dbIndex": false, - "encrypted": false, - "redrawOn": "", - "clearOnHide": true, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "allowCalculateOverride": false, - "validate": { - "required": false, - "onlyAvailableItems": false, - "customMessage": "", - "custom": "", - "customPrivate": false, - "json": "", - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "errorLabel": "", - "minSelectedCountMessage": "", - "maxSelectedCountMessage": "", - "errors": "", - "key": "substancesRemediated", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "selectboxes", - "input": true, - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "unique": false, - "refreshOn": "", - "dataGridLabel": false, - "widget": null, - "validateOn": "change", - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "inputType": "checkbox", - "fieldSet": false, - "id": "ec3tb", - "defaultValue": {} - }, - { - "html": "

Use specific compound names as listed in the Contaminated Sites Regulation Schedules. Please list compounds in columns to aid review.

", - "label": "Content", - "customClass": "", - "refreshOnChange": false, - "hidden": false, - "modalEdit": false, - "key": "content56", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "content", - "input": false, - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "tableView": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "id": "ep1zcdl" - }, - { - "label": "Soil", - "labelPosition": "top", - "description": "", - "tooltip": "", - "disableAddingRemovingRows": false, - "conditionalAddButton": "", - "reorder": false, - "addAnother": "", - "addAnotherPosition": "bottom", - "layoutFixed": false, - "enableRowGroups": false, - "initEmpty": false, - "customClass": "", - "tabindex": "", - "hidden": false, - "hideLabel": false, - "autofocus": false, - "disabled": false, - "tableView": false, - "modalEdit": false, - "defaultValue": [ - { - "numericalStandards": "", - "riskBasedStandards": "", - "p2SiteSpecificNumericalStandards": "", - "p4BackgroundConcentrations": "", - "whatLandUseHasTheSubstanceBeenRemediatedToInSoilPleaseSelectAllThatApply": { - "il": false, - "cl": false, - "rlhd": false, - "rlld": false, - "pl": false, - "al": false, - "wln": false, - "wlr": false - } - } - ], - "persistent": true, - "protected": false, - "dbIndex": false, - "encrypted": false, - "redrawOn": "", - "clearOnHide": true, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "allowCalculateOverride": false, - "validateOn": "change", - "validate": { - "required": false, - "minLength": "", - "maxLength": "", - "customMessage": "", - "custom": "", - "customPrivate": false, - "json": "", - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "errorLabel": "", - "errors": "", - "key": "soil", - "tags": [], - "properties": {}, - "conditional": { - "show": true, - "when": "substancesRemediated", - "eq": "soil", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "datagrid", - "input": true, - "components": [ - { - "title": "Soil", - "collapsible": false, - "hideLabel": true, - "key": "soil1", - "type": "panel", - "label": "Panel", - "input": false, - "tableView": false, - "components": [ - { - "label": "Numerical Standards", - "tableView": true, - "key": "numericalStandards", - "type": "textfield", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "emlo7p" - }, - { - "label": "Risk-based standards", - "tableView": true, - "key": "riskBasedStandards", - "type": "textfield", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "en9kpdt" - }, - { - "label": "P2 site specific numerical standards", - "tableView": true, - "key": "p2SiteSpecificNumericalStandards", - "type": "textfield", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "emstd8s" - }, - { - "label": "P4 Background concentrations", - "tableView": true, - "key": "p4BackgroundConcentrations", - "type": "textfield", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "ez67mug" - }, - { - "label": "What land use has the substance been remediated to in soil? (Please select all that apply)", - "optionsLabelPosition": "right", - "tableView": false, - "values": [ - { - "label": "IL", - "value": "il", - "shortcut": "" - }, - { - "label": "CL", - "value": "cl", - "shortcut": "" - }, - { - "label": "RLHD", - "value": "rlhd", - "shortcut": "" - }, - { - "label": "RLLD", - "value": "rlld", - "shortcut": "" - }, - { - "label": "PL", - "value": "pl", - "shortcut": "" - }, - { - "label": "AL", - "value": "al", - "shortcut": "" - }, - { - "label": "WLN", - "value": "wln", - "shortcut": "" - }, - { - "label": "WLR", - "value": "wlr", - "shortcut": "" - } - ], - "key": "whatLandUseHasTheSubstanceBeenRemediatedToInSoilPleaseSelectAllThatApply", - "type": "selectboxes", - "input": true, - "inputType": "checkbox", - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "onlyAvailableItems": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "fieldSet": false, - "inline": false, - "id": "estazfs" - } - ], - "id": "ef5nwt0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "hidden": false, - "clearOnHide": false, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "tree": false, - "lazyLoad": false, - "theme": "default", - "breadcrumb": "default" - } - ], - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "unique": false, - "refreshOn": "", - "dataGridLabel": false, - "widget": null, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "tree": true, - "lazyLoad": false, - "id": "edy1cum" - }, - { - "label": "Water", - "labelPosition": "top", - "description": "", - "tooltip": "", - "disableAddingRemovingRows": false, - "conditionalAddButton": "", - "reorder": false, - "addAnother": "", - "addAnotherPosition": "bottom", - "layoutFixed": false, - "enableRowGroups": false, - "initEmpty": false, - "customClass": "", - "tabindex": "", - "hidden": false, - "hideLabel": false, - "autofocus": false, - "disabled": false, - "tableView": false, - "modalEdit": false, - "defaultValue": [ - { - "numericalStandards": "", - "riskBasedStandards": "", - "p9BackgroundConcentration": "", - "whatWaterUseHasTheSubstanceBeenRemediatedToPleaseSelectAllThatApply": { - "aquaticLifeAwFresh": false, - "aquaticLifeAwMarine": false, - "irrigationIw": false, - "livestockLw": false, - "drinkingWaterDw": false, - "noWaterUse": false - } - } - ], - "persistent": true, - "protected": false, - "dbIndex": false, - "encrypted": false, - "redrawOn": "", - "clearOnHide": true, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "allowCalculateOverride": false, - "validateOn": "change", - "validate": { - "required": false, - "minLength": "", - "maxLength": "", - "customMessage": "", - "custom": "", - "customPrivate": false, - "json": "", - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "errorLabel": "", - "errors": "", - "key": "water", - "tags": [], - "properties": {}, - "conditional": { - "show": true, - "when": "substancesRemediated", - "eq": "water", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "datagrid", - "input": true, - "components": [ - { - "collapsible": false, - "hideLabel": true, - "key": "panel", - "type": "panel", - "label": "Panel", - "input": false, - "tableView": false, - "components": [ - { - "label": "Numerical Standards", - "tableView": true, - "key": "numericalStandards", - "type": "textfield", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "ehpkhqe" - }, - { - "label": "Risk-based standards", - "tableView": true, - "key": "riskBasedStandards", - "type": "textfield", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "ebrjb1o" - }, - { - "label": "P9 Background concentration", - "tableView": true, - "key": "p9BackgroundConcentration", - "type": "textfield", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "ee4f77p" - }, - { - "label": "What water use has the substance been remediated to? (Please select all that apply)", - "optionsLabelPosition": "right", - "tableView": false, - "values": [ - { - "label": "Aquatic Life (AW) Fresh", - "value": "aquaticLifeAwFresh", - "shortcut": "" - }, - { - "label": "Aquatic Life (AW) Marine", - "value": "aquaticLifeAwMarine", - "shortcut": "" - }, - { - "label": "Irrigation (IW)", - "value": "irrigationIw", - "shortcut": "" - }, - { - "label": "Livestock (LW)", - "value": "livestockLw", - "shortcut": "" - }, - { - "label": "Drinking Water (DW)", - "value": "drinkingWaterDw", - "shortcut": "" - }, - { - "label": "No Water Use", - "value": "noWaterUse", - "shortcut": "" - } - ], - "key": "whatWaterUseHasTheSubstanceBeenRemediatedToPleaseSelectAllThatApply", - "type": "selectboxes", - "input": true, - "inputType": "checkbox", - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "onlyAvailableItems": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "fieldSet": false, - "inline": false, - "id": "eq5jxk" - } - ], - "id": "eoq12ev000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "hidden": false, - "clearOnHide": false, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "tree": false, - "lazyLoad": false, - "title": "Panel", - "theme": "default", - "breadcrumb": "default" - } - ], - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "unique": false, - "refreshOn": "", - "dataGridLabel": false, - "widget": null, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "tree": true, - "lazyLoad": false, - "id": "e7or7bq" - }, - { - "label": "Vapour", - "labelPosition": "top", - "description": "", - "tooltip": "", - "disableAddingRemovingRows": false, - "conditionalAddButton": "", - "reorder": false, - "addAnother": "", - "addAnotherPosition": "bottom", - "layoutFixed": false, - "enableRowGroups": false, - "initEmpty": false, - "customClass": "", - "tabindex": "", - "hidden": false, - "hideLabel": false, - "autofocus": false, - "disabled": false, - "tableView": false, - "modalEdit": false, - "defaultValue": [ - { - "numericalStandards": "", - "riskBasedStandards": "" - } - ], - "persistent": true, - "protected": false, - "dbIndex": false, - "encrypted": false, - "redrawOn": "", - "clearOnHide": true, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "allowCalculateOverride": false, - "validateOn": "change", - "validate": { - "required": false, - "minLength": "", - "maxLength": "", - "customMessage": "", - "custom": "", - "customPrivate": false, - "json": "", - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "errorLabel": "", - "errors": "", - "key": "vapour", - "tags": [], - "properties": {}, - "conditional": { - "show": true, - "when": "substancesRemediated", - "eq": "vapour", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "datagrid", - "input": true, - "components": [ - { - "collapsible": false, - "hideLabel": true, - "key": "panel", - "type": "panel", - "label": "Panel", - "input": false, - "tableView": false, - "components": [ - { - "label": "Numerical Standards", - "tableView": true, - "key": "numericalStandards", - "type": "textfield", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "ecjqd2" - }, - { - "label": "Risk-based standards", - "tableView": true, - "key": "riskBasedStandards", - "type": "textfield", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "enjn8bkh" - } - ], - "id": "ett43n0j00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "hidden": false, - "clearOnHide": false, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "tree": false, - "lazyLoad": false, - "title": "Panel", - "theme": "default", - "breadcrumb": "default" - } - ], - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "unique": false, - "refreshOn": "", - "dataGridLabel": false, - "widget": null, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "tree": true, - "lazyLoad": false, - "id": "eghuf8" - }, - { - "label": "Sediment", - "labelPosition": "top", - "description": "", - "tooltip": "", - "disableAddingRemovingRows": false, - "conditionalAddButton": "", - "reorder": false, - "addAnother": "", - "addAnotherPosition": "bottom", - "layoutFixed": false, - "enableRowGroups": false, - "initEmpty": false, - "customClass": "", - "tabindex": "", - "hidden": false, - "hideLabel": false, - "autofocus": false, - "disabled": false, - "tableView": false, - "modalEdit": false, - "defaultValue": [ - { - "numericalStandards": "", - "riskBasedStandards": "" - } - ], - "persistent": true, - "protected": false, - "dbIndex": false, - "encrypted": false, - "redrawOn": "", - "clearOnHide": true, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "allowCalculateOverride": false, - "validateOn": "change", - "validate": { - "required": false, - "minLength": "", - "maxLength": "", - "customMessage": "", - "custom": "", - "customPrivate": false, - "json": "", - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "errorLabel": "", - "errors": "", - "key": "sediment", - "tags": [], - "properties": {}, - "conditional": { - "show": true, - "when": "substancesRemediated", - "eq": "sediment", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "datagrid", - "input": true, - "components": [ - { - "collapsible": false, - "hideLabel": true, - "key": "panel8", - "type": "panel", - "label": "Panel", - "input": false, - "tableView": false, - "components": [ - { - "label": "Numerical Standards", - "tableView": true, - "key": "numericalStandards", - "type": "textfield", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "esi48dn" - }, - { - "label": "Risk-based standards", - "tableView": true, - "key": "riskBasedStandards", - "type": "textfield", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "ee9w9ok" - } - ], - "id": "euuaaa0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "hidden": false, - "clearOnHide": false, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "tree": false, - "lazyLoad": false, - "title": "Panel", - "theme": "default", - "breadcrumb": "default" - } - ], - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "unique": false, - "refreshOn": "", - "dataGridLabel": false, - "widget": null, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "tree": true, - "lazyLoad": false, - "id": "ecd1ylh" - }, - { - "label": "Other", - "labelPosition": "top", - "description": "", - "tooltip": "", - "disableAddingRemovingRows": false, - "conditionalAddButton": "", - "reorder": false, - "addAnother": "", - "addAnotherPosition": "bottom", - "layoutFixed": false, - "enableRowGroups": false, - "initEmpty": false, - "customClass": "", - "tabindex": "", - "hidden": false, - "hideLabel": false, - "autofocus": false, - "disabled": false, - "tableView": false, - "modalEdit": false, - "defaultValue": [ - { - "numericalStandards": "", - "riskBasedStandards": "" - } - ], - "persistent": true, - "protected": false, - "dbIndex": false, - "encrypted": false, - "redrawOn": "", - "clearOnHide": true, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "allowCalculateOverride": false, - "validateOn": "change", - "validate": { - "required": false, - "minLength": "", - "maxLength": "", - "customMessage": "", - "custom": "", - "customPrivate": false, - "json": "", - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "errorLabel": "", - "errors": "", - "key": "other", - "tags": [], - "properties": {}, - "conditional": { - "show": true, - "when": "substancesRemediated", - "eq": "other", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "datagrid", - "input": true, - "components": [ - { - "collapsible": false, - "hideLabel": true, - "key": "panel8", - "type": "panel", - "label": "Panel", - "input": false, - "tableView": false, - "components": [ - { - "label": "Numerical Standards", - "tableView": true, - "key": "numericalStandards", - "type": "textfield", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "e5cfjgb" - }, - { - "label": "Risk-based standards", - "tableView": true, - "key": "riskBasedStandards", - "type": "textfield", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "e6efm7o" - } - ], - "id": "edr4h05000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "hidden": false, - "clearOnHide": false, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "tree": false, - "lazyLoad": false, - "title": "Panel", - "theme": "default", - "breadcrumb": "default" - } - ], - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "unique": false, - "refreshOn": "", - "dataGridLabel": false, - "widget": null, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "tree": true, - "lazyLoad": false, - "id": "efz782r" - }, - { - "title": "", - "theme": "default", - "tooltip": "", - "customClass": "", - "collapsible": false, - "hidden": false, - "hideLabel": false, - "disabled": false, - "modalEdit": false, - "key": "panel11", - "tags": [], - "properties": {}, - "customConditional": "", - "conditional": { - "json": "", - "show": null, - "when": null, - "eq": "" - }, - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "panel", - "label": "Panel", - "breadcrumb": "default", - "tabindex": "", - "input": false, - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "clearOnHide": false, - "refreshOn": "", - "redrawOn": "", - "tableView": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "tree": false, - "lazyLoad": false, - "components": [ - { - "html": "

The Director may accept the recommendations of an Approved Professional(s) involved in the review and submission of investigation, risk assessment or remediation reports based in part on the understanding that

", - "label": "Content", - "customClass": "", - "refreshOnChange": false, - "hidden": false, - "modalEdit": false, - "key": "content57", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "content", - "input": false, - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "tableView": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "id": "e8rd8qj" - }, - { - "label": "As of the date of signing of this report the approved professional, or approved professionals if more than one, is/are member(s) in good standing of the Roster of Approved Professionals, as maintained by the ministry, and member(s) of the Contaminated Sites Approved Professionals Society (CSAP Society)", - "description": "", - "tooltip": "", - "shortcut": "", - "inputType": "checkbox", - "customClass": "", - "tabindex": "", - "hidden": false, - "hideLabel": false, - "autofocus": false, - "disabled": false, - "tableView": false, - "modalEdit": false, - "persistent": true, - "protected": false, - "dbIndex": false, - "encrypted": false, - "redrawOn": "", - "clearOnHide": true, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "allowCalculateOverride": false, - "validate": { - "required": true, - "customMessage": "", - "custom": "", - "customPrivate": false, - "json": "", - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "errorLabel": "", - "errors": "", - "key": "asOfTheDateOfSigningOfThisReportTheApprovedProfessionalOrApprovedProfessionalsIfMoreThanOneIsAreMemberSInGoodStandingOfTheRosterOfApprovedProfessionalsAsMaintainedByTheMinistryAndMemberSOfTheContaminatedSitesApprovedProfessionalsSocietyCsapSociety", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "checkbox", - "name": "", - "value": "", - "input": true, - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "unique": false, - "refreshOn": "", - "dataGridLabel": true, - "labelPosition": "right", - "widget": null, - "validateOn": "change", - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "id": "espd59k", - "defaultValue": false - }, - { - "label": "The approved professionals signing this Summary of Site Condition have reviewed Table 1, Protocol 6 for Contaminated Sites (Eligibility of Applications for Review by Approved Professionals) and confirm that the Application for Contaminated Sites Services may be processed in the manner for non-high risk sites under the Roster of Approved Professionals process", - "description": "", - "tooltip": "", - "shortcut": "", - "inputType": "checkbox", - "customClass": "", - "tabindex": "", - "hidden": false, - "hideLabel": false, - "autofocus": false, - "disabled": false, - "tableView": false, - "modalEdit": false, - "persistent": true, - "protected": false, - "dbIndex": false, - "encrypted": false, - "redrawOn": "", - "clearOnHide": true, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "allowCalculateOverride": false, - "validate": { - "required": true, - "customMessage": "", - "custom": "", - "customPrivate": false, - "json": "", - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "errorLabel": "", - "errors": "", - "key": "theApprovedProfessionalsSigningThisSummaryOfSiteConditionHaveReviewedTable1Protocol6ForContaminatedSitesEligibilityOfApplicationsForReviewByApprovedProfessionalsAndConfirmThatTheApplicationForContaminatedSitesServicesMayBeProcessedInTheMannerForNonHighRiskSitesUnderTheRosterOfApprovedProfessionalsProcess", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "checkbox", - "name": "", - "value": "", - "input": true, - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "unique": false, - "refreshOn": "", - "dataGridLabel": true, - "labelPosition": "right", - "widget": null, - "validateOn": "change", - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "id": "eso2ic", - "defaultValue": false - }, - { - "label": "The reviewer has no obligation to undertake any inquiry into the validity, accuracy or precision of what is reported in the documents reviewed, beyond that which there is reasonable cause to believe that there could be errors or oversights in those reports", - "description": "", - "tooltip": "", - "shortcut": "", - "inputType": "checkbox", - "customClass": "", - "tabindex": "", - "hidden": false, - "hideLabel": false, - "autofocus": false, - "disabled": false, - "tableView": false, - "modalEdit": false, - "persistent": true, - "protected": false, - "dbIndex": false, - "encrypted": false, - "redrawOn": "", - "clearOnHide": true, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "allowCalculateOverride": false, - "validate": { - "required": true, - "customMessage": "", - "custom": "", - "customPrivate": false, - "json": "", - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "errorLabel": "", - "errors": "", - "key": "theReviewerHasNoObligationToUndertakeAnyInquiryIntoTheValidityAccuracyOrPrecisionOfWhatIsReportedInTheDocumentsReviewedBeyondThatWhichThereIsReasonableCauseToBelieveThatThereCouldBeErrorsOrOversightsInThoseReports", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "checkbox", - "name": "", - "value": "", - "input": true, - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "unique": false, - "refreshOn": "", - "dataGridLabel": true, - "labelPosition": "right", - "widget": null, - "validateOn": "change", - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "id": "ei6b2fp", - "defaultValue": false - }, - { - "label": "(as appropriate) The source site has been satisfactorily investigated for all areas of (potential) environmental concern and (potential) contaminants of concern to determine the lateral and vertical extents of contamination with due regard to EMA, the CSR, and the HWR;", - "description": "", - "tooltip": "", - "shortcut": "", - "inputType": "checkbox", - "customClass": "", - "tabindex": "", - "hidden": false, - "hideLabel": false, - "autofocus": false, - "disabled": false, - "tableView": false, - "modalEdit": false, - "persistent": true, - "protected": false, - "dbIndex": false, - "encrypted": false, - "redrawOn": "", - "clearOnHide": true, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "allowCalculateOverride": false, - "validate": { - "required": false, - "customMessage": "", - "custom": "", - "customPrivate": false, - "json": "", - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "errorLabel": "", - "errors": "", - "key": "asAppropriateTheSourceSiteHasBeenSatisfactorilyInvestigatedForAllAreasOfPotentialEnvironmentalConcernAndPotentialContaminantsOfConcernToDetermineTheLateralAndVerticalExtentsOfContaminationWithDueRegardToEmaTheCsrAndTheHwr", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "checkbox", - "name": "", - "value": "", - "input": true, - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "unique": false, - "refreshOn": "", - "dataGridLabel": true, - "labelPosition": "right", - "widget": null, - "validateOn": "change", - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "id": "e2whe88", - "defaultValue": false - }, - { - "label": "(as appropriate) The submitted documentation meets the requirements of Sections 1, 47, 49, 58 and 59 of the CSR;", - "description": "", - "tooltip": "", - "shortcut": "", - "inputType": "checkbox", - "customClass": "", - "tabindex": "", - "hidden": false, - "hideLabel": false, - "autofocus": false, - "disabled": false, - "tableView": false, - "modalEdit": false, - "persistent": true, - "protected": false, - "dbIndex": false, - "encrypted": false, - "redrawOn": "", - "clearOnHide": true, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "allowCalculateOverride": false, - "validate": { - "required": false, - "customMessage": "", - "custom": "", - "customPrivate": false, - "json": "", - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "errorLabel": "", - "errors": "", - "key": "asAppropriateTheSubmittedDocumentationMeetsTheRequirementsOfSections1474958And59OfTheCsr", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "checkbox", - "name": "", - "value": "", - "input": true, - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "unique": false, - "refreshOn": "", - "dataGridLabel": true, - "labelPosition": "right", - "widget": null, - "validateOn": "change", - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "id": "eyeklkd", - "defaultValue": false - }, - { - "label": "(as appropriate) The Screening Level Risk Assessment meets the requirements of Protocol 13;", - "description": "", - "tooltip": "", - "shortcut": "", - "inputType": "checkbox", - "customClass": "", - "tabindex": "", - "hidden": false, - "hideLabel": false, - "autofocus": false, - "disabled": false, - "tableView": false, - "modalEdit": false, - "persistent": true, - "protected": false, - "dbIndex": false, - "encrypted": false, - "redrawOn": "", - "clearOnHide": true, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "allowCalculateOverride": false, - "validate": { - "required": false, - "customMessage": "", - "custom": "", - "customPrivate": false, - "json": "", - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "errorLabel": "", - "errors": "", - "key": "asAppropriateTheScreeningLevelRiskAssessmentMeetsTheRequirementsOfProtocol13", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "checkbox", - "name": "", - "value": "", - "input": true, - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "unique": false, - "refreshOn": "", - "dataGridLabel": true, - "labelPosition": "right", - "widget": null, - "validateOn": "change", - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "id": "ewud17", - "defaultValue": false - } - ], - "id": "e2kqn9c" - }, - { - "title": "", - "theme": "default", - "tooltip": "", - "customClass": "", - "collapsible": false, - "hidden": false, - "hideLabel": false, - "disabled": false, - "modalEdit": false, - "key": "panel12", - "tags": [], - "properties": {}, - "customConditional": "", - "conditional": { - "json": "", - "show": null, - "when": null, - "eq": "" - }, - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "panel", - "label": "Panel", - "breadcrumb": "default", - "tabindex": "", - "input": false, - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "clearOnHide": false, - "refreshOn": "", - "redrawOn": "", - "tableView": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "tree": false, - "lazyLoad": false, - "components": [ - { - "html": "

 

Additional for AIPs, Determination, CoC

", - "label": "Content", - "customClass": "", - "refreshOnChange": false, - "hidden": false, - "modalEdit": false, - "key": "content58", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "content", - "input": false, - "tableView": false, - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "id": "e3om77a" - }, - { - "label": "(for AiPs) The submitted remediation plan, if implemented in accordance with the specified conditions imposed in its draft Schedule 'B' of the AIP, will result in the source site being remediated in accordance with the applicable standards of the CSR and the HWR;", - "description": "", - "tooltip": "", - "shortcut": "", - "inputType": "checkbox", - "customClass": "", - "tabindex": "", - "hidden": false, - "hideLabel": false, - "autofocus": false, - "disabled": false, - "tableView": false, - "modalEdit": false, - "persistent": true, - "protected": false, - "dbIndex": false, - "encrypted": false, - "redrawOn": "", - "clearOnHide": true, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "allowCalculateOverride": false, - "validate": { - "required": false, - "customMessage": "", - "custom": "", - "customPrivate": false, - "json": "", - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "errorLabel": "", - "errors": "", - "key": "forAiPsTheSubmittedRemediationPlanIfImplementedInAccordanceWithTheSpecifiedConditionsImposedInItsDraftScheduleBOfTheAipWillResultInTheSourceSiteBeingRemediatedInAccordanceWithTheApplicableStandardsOfTheCsrAndTheHwr", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "checkbox", - "name": "", - "value": "", - "input": true, - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "unique": false, - "refreshOn": "", - "dataGridLabel": true, - "labelPosition": "right", - "widget": null, - "validateOn": "change", - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "id": "em40f0m", - "defaultValue": false - }, - { - "label": "(for AiPs) It is feasible to implement all provisions of the Remediation Plan and to achieve its objectives and the conditions of the AIP within 5 years of issuance of the AIP", - "description": "", - "tooltip": "", - "shortcut": "", - "inputType": "checkbox", - "customClass": "", - "tabindex": "", - "hidden": false, - "hideLabel": false, - "autofocus": false, - "disabled": false, - "tableView": false, - "modalEdit": false, - "persistent": true, - "protected": false, - "dbIndex": false, - "encrypted": false, - "redrawOn": "", - "clearOnHide": true, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "allowCalculateOverride": false, - "validate": { - "required": false, - "customMessage": "", - "custom": "", - "customPrivate": false, - "json": "", - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "errorLabel": "", - "errors": "", - "key": "forAiPsItIsFeasibleToImplementAllProvisionsOfTheRemediationPlanAndToAchieveItsObjectivesAndTheConditionsOfTheAipWithin5YearsOfIssuanceOfTheAip", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "checkbox", - "name": "", - "value": "", - "input": true, - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "unique": false, - "refreshOn": "", - "dataGridLabel": true, - "labelPosition": "right", - "widget": null, - "validateOn": "change", - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "id": "eko8qoe", - "defaultValue": false - }, - { - "label": "(for AiPs) The confirmation of remediation report meets the requirements of section 49(2) of the CSR;", - "description": "", - "tooltip": "", - "shortcut": "", - "inputType": "checkbox", - "customClass": "", - "tabindex": "", - "hidden": false, - "hideLabel": false, - "autofocus": false, - "disabled": false, - "tableView": false, - "modalEdit": false, - "persistent": true, - "protected": false, - "dbIndex": false, - "encrypted": false, - "redrawOn": "", - "clearOnHide": true, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "allowCalculateOverride": false, - "validate": { - "required": false, - "customMessage": "", - "custom": "", - "customPrivate": false, - "json": "", - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "errorLabel": "", - "errors": "", - "key": "forAiPsTheConfirmationOfRemediationReportMeetsTheRequirementsOfSection492OfTheCsr", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "checkbox", - "name": "", - "value": "", - "input": true, - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "unique": false, - "refreshOn": "", - "dataGridLabel": true, - "labelPosition": "right", - "widget": null, - "validateOn": "change", - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "id": "e1z4cw", - "defaultValue": false - }, - { - "label": "(for CoCs) The confirmation of remediation report meets the requirements of section 49 (2) of the CSR", - "description": "", - "tooltip": "", - "shortcut": "", - "inputType": "checkbox", - "customClass": "", - "tabindex": "", - "hidden": false, - "hideLabel": false, - "autofocus": false, - "disabled": false, - "tableView": false, - "modalEdit": false, - "persistent": true, - "protected": false, - "dbIndex": false, - "encrypted": false, - "redrawOn": "", - "clearOnHide": true, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "allowCalculateOverride": false, - "validate": { - "required": false, - "customMessage": "", - "custom": "", - "customPrivate": false, - "json": "", - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "errorLabel": "", - "errors": "", - "key": "forCoCsTheConfirmationOfRemediationReportMeetsTheRequirementsOfSection492OfTheCsr", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "checkbox", - "name": "", - "value": "", - "input": true, - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "unique": false, - "refreshOn": "", - "dataGridLabel": true, - "labelPosition": "right", - "widget": null, - "validateOn": "change", - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "id": "ebhel0f", - "defaultValue": false - }, - { - "label": "(for CoCs) The onsite management area(s) has/have been satisfactorily remediated in accordance with section 53 (3) of the EMA and section 49(2) of the CSR in accordance with applicable standards as identified in the draft COC;", - "description": "", - "tooltip": "", - "shortcut": "", - "inputType": "checkbox", - "customClass": "", - "tabindex": "", - "hidden": false, - "hideLabel": false, - "autofocus": false, - "disabled": false, - "tableView": false, - "modalEdit": false, - "persistent": true, - "protected": false, - "dbIndex": false, - "encrypted": false, - "redrawOn": "", - "clearOnHide": true, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "allowCalculateOverride": false, - "validate": { - "required": false, - "customMessage": "", - "custom": "", - "customPrivate": false, - "json": "", - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "errorLabel": "", - "errors": "", - "key": "forCoCsTheOnsiteManagementAreaSHasHaveBeenSatisfactorilyRemediatedInAccordanceWithSection533OfTheEmaAndSection492OfTheCsrInAccordanceWithApplicableStandardsAsIdentifiedInTheDraftCoc", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "checkbox", - "name": "", - "value": "", - "input": true, - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "unique": false, - "refreshOn": "", - "dataGridLabel": true, - "labelPosition": "right", - "widget": null, - "validateOn": "change", - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "id": "e5sr4p4", - "defaultValue": false - }, - { - "label": "For CoCs where contamination exists beyond the legal lot boundaries", - "labelPosition": "top", - "optionsLabelPosition": "right", - "description": "", - "tooltip": "", - "customClass": "", - "tabindex": "", - "inline": false, - "hidden": false, - "hideLabel": false, - "autofocus": false, - "disabled": false, - "tableView": false, - "modalEdit": false, - "values": [ - { - "label": "The off-site portion(s) of the site has/have been satisfactorily remediated in accordance with section 53 (3) of the EMA and section 49(2) of the CSR and makes up part of this application", - "value": "theOffSitePortionSOfTheSiteHasHaveBeenSatisfactorilyRemediatedInAccordanceWithSection533OfTheEmaAndSection492OfTheCsrAndMakesUpPartOfThisApplication", - "shortcut": "" - }, - { - "label": "a Remediation Plan in accordance with requirements of the the CSR, sections 1 and 47 has/have been prepared and application has been made for AIP for the off-site portions", - "value": "aRemediationPlanInAccordanceWithRequirementsOfTheTheCsrSections1And47HasHaveBeenPreparedAndApplicationHasBeenMadeForAipForTheOffSitePortions", - "shortcut": "" - } - ], - "dataType": "", - "persistent": true, - "protected": false, - "dbIndex": false, - "encrypted": false, - "redrawOn": "", - "clearOnHide": true, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "allowCalculateOverride": false, - "validate": { - "required": false, - "onlyAvailableItems": false, - "customMessage": "", - "custom": "", - "customPrivate": false, - "json": "", - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "errorLabel": "", - "errors": "", - "key": "forCoCsWhereContaminationExistsBeyondTheLegalLotBoundaries", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "radio", - "input": true, - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "unique": false, - "refreshOn": "", - "dataGridLabel": false, - "widget": null, - "validateOn": "change", - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "inputType": "radio", - "fieldSet": false, - "id": "e2vnfbod", - "defaultValue": "" - }, - { - "label": "(for CoCs where contamination exists beyond the legal lot boundaries and engineered works are required to prevent recontamination of the site) A signed and stamped design drawing has been provided by a professional engineer for works installed at site boundaries to prevent recontamination of the site. The signatory need not be the Approved Professional signing below.", - "description": "", - "tooltip": "", - "shortcut": "", - "inputType": "checkbox", - "customClass": "", - "tabindex": "", - "hidden": false, - "hideLabel": false, - "autofocus": false, - "disabled": false, - "tableView": false, - "modalEdit": false, - "persistent": true, - "protected": false, - "dbIndex": false, - "encrypted": false, - "redrawOn": "", - "clearOnHide": true, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "allowCalculateOverride": false, - "validate": { - "required": false, - "customMessage": "", - "custom": "", - "customPrivate": false, - "json": "", - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "errorLabel": "", - "errors": "", - "key": "forCoCsWhereContaminationExistsBeyondTheLegalLotBoundariesAndEngineeredWorksAreRequiredToPreventRecontaminationOfTheSiteASignedAndStampedDesignDrawingHasBeenProvidedByAProfessionalEngineerForWorksInstalledAtSiteBoundariesToPreventRecontaminationOfTheSiteTheSignatoryNeedNotBeTheApprovedProfessionalSigningBelow", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "checkbox", - "name": "", - "value": "", - "input": true, - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "unique": false, - "refreshOn": "", - "dataGridLabel": true, - "labelPosition": "right", - "widget": null, - "validateOn": "change", - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "id": "equjrfb", - "defaultValue": false - }, - { - "label": "(for Determination) In accordance with section 15 (5) of the CSR, the source site a contaminated site under section 44(1) of the Environmental Management Act;", - "description": "", - "tooltip": "", - "shortcut": "", - "inputType": "checkbox", - "customClass": "", - "tabindex": "", - "hidden": false, - "hideLabel": false, - "autofocus": false, - "disabled": false, - "tableView": false, - "modalEdit": false, - "persistent": true, - "protected": false, - "dbIndex": false, - "encrypted": false, - "redrawOn": "", - "clearOnHide": true, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "allowCalculateOverride": false, - "validate": { - "required": false, - "customMessage": "", - "custom": "", - "customPrivate": false, - "json": "", - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "errorLabel": "", - "errors": "", - "key": "forDeterminationInAccordanceWithSection155OfTheCsrTheSourceSiteAContaminatedSiteUnderSection441OfTheEnvironmentalManagementAct", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "checkbox", - "name": "", - "value": "", - "input": true, - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "unique": false, - "refreshOn": "", - "dataGridLabel": true, - "labelPosition": "right", - "widget": null, - "validateOn": "change", - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "id": "ekx5xzp", - "defaultValue": false - }, - { - "label": "(if a 'direct' final determination) In accordance with section 15 (5) of the CSR, the source site is a contaminated site under section 44 (3) of EMA", - "description": "", - "tooltip": "", - "shortcut": "", - "inputType": "checkbox", - "customClass": "", - "tabindex": "", - "hidden": false, - "hideLabel": false, - "autofocus": false, - "disabled": false, - "tableView": false, - "modalEdit": false, - "persistent": true, - "protected": false, - "dbIndex": false, - "encrypted": false, - "redrawOn": "", - "clearOnHide": true, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "allowCalculateOverride": false, - "validate": { - "required": false, - "customMessage": "", - "custom": "", - "customPrivate": false, - "json": "", - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "errorLabel": "", - "errors": "", - "key": "ifADirectFinalDeterminationInAccordanceWithSection155OfTheCsrTheSourceSiteIsAContaminatedSiteUnderSection443OfEma", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "checkbox", - "name": "", - "value": "", - "input": true, - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "unique": false, - "refreshOn": "", - "dataGridLabel": true, - "labelPosition": "right", - "widget": null, - "validateOn": "change", - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "id": "e617ge", - "defaultValue": false - } - ], - "id": "ec7vbrl" - }, - { - "html": "

The opinions, advice and recommendations expressed in this Summary of Site Condition are made in accordance with generally accepted principles and practices as recognized by members of the applicable profession or discipline practicing at the same time and in the same or similar locations. This Summary of Site Condition does not provide a legal opinion or guarantee regarding compliance with applicable laws.

", - "label": "Content", - "customClass": "", - "refreshOnChange": false, - "hidden": false, - "modalEdit": false, - "key": "content59", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "content", - "input": false, - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "tableView": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "id": "eg6vc" - }, - { - "label": "Data Grid", - "labelPosition": "top", - "description": "", - "tooltip": "", - "disableAddingRemovingRows": false, - "conditionalAddButton": "", - "reorder": false, - "addAnother": "", - "addAnotherPosition": "bottom", - "layoutFixed": false, - "enableRowGroups": false, - "initEmpty": false, - "customClass": "", - "tabindex": "", - "hidden": false, - "hideLabel": true, - "autofocus": false, - "disabled": false, - "tableView": false, - "modalEdit": false, - "defaultValue": [ - { - "signatureOfApprovedProfessional": "", - "firstName": "", - "lastName": "", - "dateSigned": "00/00/0000" - } - ], - "persistent": true, - "protected": false, - "dbIndex": false, - "encrypted": false, - "redrawOn": "", - "clearOnHide": true, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "allowCalculateOverride": false, - "validateOn": "change", - "validate": { - "required": false, - "minLength": "", - "maxLength": "", - "customMessage": "", - "custom": "", - "customPrivate": false, - "json": "", - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "errorLabel": "", - "errors": "", - "key": "dataGrid15", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "datagrid", - "input": true, - "components": [ - { - "label": "Approved Professional Signatures", - "columns": [ - { - "components": [ - { - "label": "Signature of Approved Professional", - "tableView": false, - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "key": "signatureOfApprovedProfessional", - "type": "signature", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "footer": "Sign above", - "width": "100%", - "height": "150px", - "penColor": "black", - "backgroundColor": "rgb(245,245,235)", - "minWidth": "0.5", - "maxWidth": "2.5", - "keepOverlayRatio": true, - "id": "eufhqc8" - } - ], - "width": 6, - "offset": 0, - "push": 0, - "pull": 0, - "size": "md", - "currentWidth": 6 - }, - { - "components": [ - { - "label": "First Name", - "tableView": true, - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "key": "firstName", - "type": "textfield", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "e459o2u" - }, - { - "label": "Last Name", - "labelPosition": "top", - "placeholder": "", - "description": "", - "tooltip": "", - "prefix": "", - "suffix": "", - "widget": { - "type": "input" - }, - "inputMask": "", - "displayMask": "", - "allowMultipleMasks": false, - "customClass": "", - "tabindex": "", - "autocomplete": "", - "hidden": false, - "hideLabel": false, - "showWordCount": false, - "showCharCount": false, - "mask": false, - "autofocus": false, - "spellcheck": true, - "disabled": false, - "tableView": true, - "modalEdit": false, - "multiple": false, - "persistent": true, - "inputFormat": "plain", - "protected": false, - "dbIndex": false, - "case": "", - "truncateMultipleSpaces": false, - "encrypted": false, - "redrawOn": "", - "clearOnHide": true, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "allowCalculateOverride": false, - "validateOn": "change", - "validate": { - "required": true, - "pattern": "", - "customMessage": "", - "custom": "", - "customPrivate": false, - "json": "", - "minLength": "", - "maxLength": "", - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "unique": false, - "errorLabel": "", - "errors": "", - "key": "lastName", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "textfield", - "input": true, - "refreshOn": "", - "dataGridLabel": false, - "addons": [], - "inputType": "text", - "id": "ewkt9qr", - "defaultValue": "" - }, - { - "label": "Date", - "labelPosition": "top", - "displayInTimezone": "viewer", - "useLocaleSettings": false, - "allowInput": true, - "format": "yyyy-MM-dd hh:mm a", - "placeholder": "", - "description": "", - "tooltip": "", - "customClass": "", - "tabindex": "", - "hidden": false, - "hideLabel": false, - "autofocus": false, - "disabled": false, - "tableView": false, - "modalEdit": false, - "shortcutButtons": [], - "enableDate": true, - "datePicker": { - "disable": "", - "disableFunction": "", - "disableWeekends": false, - "disableWeekdays": false, - "minDate": null, - "maxDate": null, - "showWeeks": true, - "startingDay": 0, - "initDate": "", - "minMode": "day", - "maxMode": "year", - "yearRows": 4, - "yearColumns": 5 - }, - "enableTime": true, - "timePicker": { - "showMeridian": true, - "hourStep": 1, - "minuteStep": 1, - "readonlyInput": false, - "mousewheel": true, - "arrowkeys": true - }, - "multiple": false, - "defaultValue": "", - "defaultDate": "", - "customOptions": {}, - "persistent": true, - "protected": false, - "dbIndex": false, - "encrypted": false, - "redrawOn": "", - "clearOnHide": true, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "allowCalculateOverride": false, - "validateOn": "change", - "validate": { - "required": false, - "customMessage": "", - "custom": "", - "customPrivate": false, - "json": "", - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "enableMinDateInput": false, - "enableMaxDateInput": false, - "unique": false, - "errorLabel": "", - "errors": "", - "key": "dateTime", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "datetime", - "timezone": "", - "input": true, - "widget": { - "type": "calendar", - "displayInTimezone": "viewer", - "locale": "en", - "useLocaleSettings": false, - "allowInput": true, - "mode": "single", - "enableTime": true, - "noCalendar": false, - "format": "yyyy-MM-dd hh:mm a", - "hourIncrement": 1, - "minuteIncrement": 1, - "time_24hr": false, - "minDate": null, - "disabledDates": "", - "disableWeekends": false, - "disableWeekdays": false, - "disableFunction": "", - "maxDate": null - }, - "prefix": "", - "suffix": "", - "refreshOn": "", - "dataGridLabel": false, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "datepickerMode": "day", - "id": "eucmj7" - } - ], - "width": 6, - "offset": 0, - "push": 0, - "pull": 0, - "size": "md", - "currentWidth": 6 - } - ], - "key": "approvedProfessionalSignature", - "type": "columns", - "input": false, - "tableView": false, - "id": "ev4kpmc00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "hidden": false, - "clearOnHide": false, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "tree": false, - "lazyLoad": false, - "autoAdjust": false - } - ], - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "unique": false, - "refreshOn": "", - "dataGridLabel": false, - "widget": null, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "tree": true, - "lazyLoad": false, - "id": "eizst9" - } - ], - "id": "efpt8i" - }, - { - "title": "SECTION III - Arm's Length Review", - "theme": "default", - "tooltip": "", - "customClass": "", - "collapsible": false, - "hidden": false, - "hideLabel": false, - "disabled": false, - "modalEdit": false, - "key": "sectionIiiArmsLengthReview", - "tags": [], - "properties": {}, - "customConditional": "", - "conditional": { - "json": "", - "show": null, - "when": null, - "eq": "" - }, - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "panel", - "label": "Panel", - "breadcrumb": "default", - "tabindex": "", - "input": false, - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "clearOnHide": false, - "refreshOn": "", - "redrawOn": "", - "tableView": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "tree": false, - "lazyLoad": false, - "components": [ - { - "html": "

There may have been an arm’s length review of one or more of the following recommendations to the Director of Waste Management:

 

1. Making a recommendation to a Director in support of an application for an Approval in Principle based on remediation to numerical standards or a screening level risk assessment where there is offsite migration at the site.

2. Making a recommendation to a Director in support of an application for an Approval in Principle based on a risk assessment (other than a screening level risk assessment) and remediation to risk-based standards.

3. Making a recommendation to a Director in support of an application for a Certificate of Compliance based on remediation to numerical standards or a screening level risk assessment where there is offsite migration at the site.

4. Making a recommendation to a Director in support of an application for a Certificate of Compliance based on a risk assessment (other than a screening level risk assessment) and remediation to risk-based standards.

5. Making a recommendation to a Director in support of an application for site risk classification/reclassification.

6. Making a recommendation to a Director in support of any other application based on risk assessment or risk management (other than a screening level risk assessment) not otherwise described in any other row in this list, as required under a protocol signed by a Director.

If this is the case please have the Approved Professional who carried out the arm’s length review to sign below, specifying the type of arm’s length review done for the site.

", - "label": "Content", - "customClass": "", - "refreshOnChange": false, - "hidden": false, - "modalEdit": false, - "key": "content60", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "content", - "input": false, - "tableView": false, - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "id": "elcdtyx" - }, - { - "label": "Data Grid", - "labelPosition": "top", - "description": "", - "tooltip": "", - "disableAddingRemovingRows": false, - "conditionalAddButton": "", - "reorder": false, - "addAnother": "", - "addAnotherPosition": "bottom", - "layoutFixed": false, - "enableRowGroups": false, - "initEmpty": false, - "customClass": "", - "tabindex": "", - "hidden": false, - "hideLabel": true, - "autofocus": false, - "disabled": false, - "tableView": false, - "modalEdit": false, - "defaultValue": [ - { - "typeOfArmsLengthReview": "", - "signatureOfApprovedProfessional": "", - "firstName": "", - "lastName": "", - "dateSigned": "00/00/0000" - } - ], - "persistent": true, - "protected": false, - "dbIndex": false, - "encrypted": false, - "redrawOn": "", - "clearOnHide": true, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "allowCalculateOverride": false, - "validateOn": "change", - "validate": { - "required": false, - "minLength": "", - "maxLength": "", - "customMessage": "", - "custom": "", - "customPrivate": false, - "json": "", - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "errorLabel": "", - "errors": "", - "key": "dataGrid16", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "datagrid", - "input": true, - "components": [ - { - "label": "Approved Professional Signatures", - "columns": [ - { - "components": [ - { - "label": "Type of Arm's length Review", - "placeholder": "Enter number from list above", - "tableView": true, - "key": "typeOfArmsLengthReview", - "type": "textfield", - "input": true, - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "eqgxg2q" - }, - { - "label": "Signature of Approved Professional", - "tableView": false, - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "key": "signatureOfApprovedProfessional", - "type": "signature", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "footer": "Sign above", - "width": "100%", - "height": "150px", - "penColor": "black", - "backgroundColor": "rgb(245,245,235)", - "minWidth": "0.5", - "maxWidth": "2.5", - "keepOverlayRatio": true, - "id": "egps3u" - } - ], - "width": 6, - "offset": 0, - "push": 0, - "pull": 0, - "size": "md", - "currentWidth": 6 - }, - { - "components": [ - { - "label": "First Name", - "tableView": true, - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "key": "firstName", - "type": "textfield", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "ehbl8ry" - }, - { - "label": "Last Name", - "labelPosition": "top", - "placeholder": "", - "description": "", - "tooltip": "", - "prefix": "", - "suffix": "", - "widget": { - "type": "input" - }, - "inputMask": "", - "displayMask": "", - "allowMultipleMasks": false, - "customClass": "", - "tabindex": "", - "autocomplete": "", - "hidden": false, - "hideLabel": false, - "showWordCount": false, - "showCharCount": false, - "mask": false, - "autofocus": false, - "spellcheck": true, - "disabled": false, - "tableView": true, - "modalEdit": false, - "multiple": false, - "persistent": true, - "inputFormat": "plain", - "protected": false, - "dbIndex": false, - "case": "", - "truncateMultipleSpaces": false, - "encrypted": false, - "redrawOn": "", - "clearOnHide": true, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "allowCalculateOverride": false, - "validateOn": "change", - "validate": { - "required": true, - "pattern": "", - "customMessage": "", - "custom": "", - "customPrivate": false, - "json": "", - "minLength": "", - "maxLength": "", - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "unique": false, - "errorLabel": "", - "errors": "", - "key": "lastName", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "textfield", - "input": true, - "refreshOn": "", - "dataGridLabel": false, - "addons": [], - "inputType": "text", - "id": "ew4j73", - "defaultValue": "" - }, - { - "label": "Date", - "labelPosition": "top", - "displayInTimezone": "viewer", - "useLocaleSettings": false, - "allowInput": true, - "format": "yyyy-MM-dd hh:mm a", - "placeholder": "", - "description": "", - "tooltip": "", - "customClass": "", - "tabindex": "", - "hidden": false, - "hideLabel": false, - "autofocus": false, - "disabled": false, - "tableView": false, - "modalEdit": false, - "shortcutButtons": [], - "enableDate": true, - "datePicker": { - "disable": "", - "disableFunction": "", - "disableWeekends": false, - "disableWeekdays": false, - "minDate": null, - "maxDate": null, - "showWeeks": true, - "startingDay": 0, - "initDate": "", - "minMode": "day", - "maxMode": "year", - "yearRows": 4, - "yearColumns": 5 - }, - "enableTime": true, - "timePicker": { - "showMeridian": true, - "hourStep": 1, - "minuteStep": 1, - "readonlyInput": false, - "mousewheel": true, - "arrowkeys": true - }, - "multiple": false, - "defaultValue": "", - "defaultDate": "", - "customOptions": {}, - "persistent": true, - "protected": false, - "dbIndex": false, - "encrypted": false, - "redrawOn": "", - "clearOnHide": true, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "allowCalculateOverride": false, - "validateOn": "change", - "validate": { - "required": false, - "customMessage": "", - "custom": "", - "customPrivate": false, - "json": "", - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "enableMinDateInput": false, - "enableMaxDateInput": false, - "unique": false, - "errorLabel": "", - "errors": "", - "key": "date", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "datetime", - "timezone": "", - "input": true, - "prefix": "", - "suffix": "", - "refreshOn": "", - "dataGridLabel": false, - "widget": { - "type": "calendar", - "displayInTimezone": "viewer", - "locale": "en", - "useLocaleSettings": false, - "allowInput": true, - "mode": "single", - "enableTime": true, - "noCalendar": false, - "format": "yyyy-MM-dd hh:mm a", - "hourIncrement": 1, - "minuteIncrement": 1, - "time_24hr": false, - "minDate": null, - "disabledDates": "", - "disableWeekends": false, - "disableWeekdays": false, - "disableFunction": "", - "maxDate": null - }, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "datepickerMode": "day", - "id": "ewqskd" - } - ], - "width": 6, - "offset": 0, - "push": 0, - "pull": 0, - "size": "md", - "currentWidth": 6 - } - ], - "key": "approvedProfessionalSignature", - "type": "columns", - "input": false, - "tableView": false, - "id": "ehbime0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "hidden": false, - "clearOnHide": false, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "tree": false, - "lazyLoad": false, - "autoAdjust": false - } - ], - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "unique": false, - "refreshOn": "", - "dataGridLabel": false, - "widget": null, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "tree": true, - "lazyLoad": false, - "id": "et2496k" - } - ], - "id": "ew977y" - }, - { - "html": "

Part 8 - Statement of Site Owner / Agent / Lessee

 

8.1 Offsite Migration Notification

", - "label": "Content", - "customClass": "", - "refreshOnChange": false, - "hidden": false, - "modalEdit": false, - "key": "content61", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "content", - "input": false, - "tableView": false, - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "id": "e31mug" - }, - { - "title": "SECTION I - Offsite Migration Notification", - "theme": "default", - "tooltip": "", - "customClass": "", - "collapsible": false, - "hidden": false, - "hideLabel": false, - "disabled": false, - "modalEdit": false, - "key": "sectionIOffsiteMigration", - "tags": [], - "properties": {}, - "customConditional": "", - "conditional": { - "json": "", - "show": null, - "when": null, - "eq": "" - }, - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "panel", - "label": "Panel", - "breadcrumb": "default", - "tabindex": "", - "input": false, - "tableView": false, - "components": [ - { - "label": "Not Applicable", - "tableView": false, - "key": "notApplicable", - "type": "checkbox", - "input": true, - "defaultValue": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": true, - "labelPosition": "right", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "inputType": "checkbox", - "value": "", - "name": "", - "id": "e3tubmm" - }, - { - "html": "

If it is known that one or more substances has migrated or is likely to have migrated to a neighbouring site and is or is likely causing contamination of the neighbouring site, have notifications been given?

See CSR Sec. 57 and 60.1 for requirements.

", - "label": "Content", - "customClass": "", - "refreshOnChange": false, - "hidden": false, - "modalEdit": false, - "key": "content62", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "content", - "input": false, - "tableView": false, - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "id": "ei2pshc" - }, - { - "label": "Have owners of impacted offsite properties been formally notified?", - "labelPosition": "top", - "optionsLabelPosition": "right", - "description": "", - "tooltip": "", - "customClass": "", - "tabindex": "", - "inline": false, - "hidden": false, - "hideLabel": false, - "autofocus": false, - "disabled": false, - "tableView": false, - "modalEdit": false, - "values": [ - { - "label": "Yes", - "value": "yes", - "shortcut": "" - }, - { - "label": "No", - "value": "no", - "shortcut": "" - } - ], - "dataType": "", - "persistent": true, - "protected": false, - "dbIndex": false, - "encrypted": false, - "redrawOn": "", - "clearOnHide": true, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "allowCalculateOverride": false, - "validate": { - "required": false, - "onlyAvailableItems": false, - "customMessage": "", - "custom": "", - "customPrivate": false, - "json": "", - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "errorLabel": "", - "errors": "", - "key": "haveOwnersOfImpactedOffsitePropertiesBeenFormallyNotified", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "radio", - "input": true, - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "unique": false, - "refreshOn": "", - "dataGridLabel": false, - "widget": null, - "validateOn": "change", - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "inputType": "radio", - "fieldSet": false, - "id": "e5x4165", - "defaultValue": "" - }, - { - "label": "Has the ministry been formally notified?", - "labelPosition": "top", - "optionsLabelPosition": "right", - "description": "", - "tooltip": "", - "customClass": "", - "tabindex": "", - "inline": false, - "hidden": false, - "hideLabel": false, - "autofocus": false, - "disabled": false, - "tableView": false, - "modalEdit": false, - "values": [ - { - "label": "Yes", - "value": "yes", - "shortcut": "" - }, - { - "label": "No", - "value": "no", - "shortcut": "" - } - ], - "dataType": "", - "persistent": true, - "protected": false, - "dbIndex": false, - "encrypted": false, - "redrawOn": "", - "clearOnHide": true, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "allowCalculateOverride": false, - "validate": { - "required": false, - "onlyAvailableItems": false, - "customMessage": "", - "custom": "", - "customPrivate": false, - "json": "", - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "errorLabel": "", - "errors": "", - "key": "hasTheMinistryBeenFormallyNotified", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "radio", - "input": true, - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "unique": false, - "refreshOn": "", - "dataGridLabel": false, - "widget": null, - "validateOn": "change", - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "inputType": "radio", - "fieldSet": false, - "id": "ert8af", - "defaultValue": "" - } - ], - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "clearOnHide": false, - "refreshOn": "", - "redrawOn": "", - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "tree": false, - "lazyLoad": false, - "id": "egmyibh" - }, - { - "title": "SECTION II - Confirmations by Owner/Agent/Lessee Regarding Approved Professional", - "theme": "default", - "tooltip": "", - "customClass": "", - "collapsible": false, - "hidden": false, - "hideLabel": false, - "disabled": false, - "modalEdit": false, - "key": "sectionIiConfirmationsByOwnerAgentLesseeRegardingApprovedProfessional", - "tags": [], - "properties": {}, - "customConditional": "", - "conditional": { - "json": "", - "show": null, - "when": null, - "eq": "" - }, - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "panel", - "label": "Panel", - "breadcrumb": "default", - "tabindex": "", - "input": false, - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "clearOnHide": false, - "refreshOn": "", - "redrawOn": "", - "tableView": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "tree": false, - "lazyLoad": false, - "components": [ - { - "label": "This is to acknowledge that as:", - "labelPosition": "top", - "optionsLabelPosition": "right", - "description": "", - "tooltip": "", - "customClass": "", - "tabindex": "", - "inline": false, - "hidden": false, - "hideLabel": false, - "autofocus": false, - "disabled": false, - "tableView": false, - "modalEdit": false, - "values": [ - { - "label": "The Owner", - "value": "theOwner", - "shortcut": "" - }, - { - "label": "The Agent on behalf of the owner", - "value": "theAgentOnBehalfOfTheOwner", - "shortcut": "" - }, - { - "label": "Lessee", - "value": "lessee", - "shortcut": "" - }, - { - "label": "The agent on behalf of the responsible party", - "value": "theAgentOnBehalfOfTheResponsibleParty", - "shortcut": "" - } - ], - "persistent": true, - "protected": false, - "dbIndex": false, - "encrypted": false, - "redrawOn": "", - "clearOnHide": true, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "allowCalculateOverride": false, - "validate": { - "required": true, - "onlyAvailableItems": false, - "customMessage": "", - "custom": "", - "customPrivate": false, - "json": "", - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "errorLabel": "", - "minSelectedCountMessage": "", - "maxSelectedCountMessage": "", - "errors": "", - "key": "thisIsToAcknowledgeThatAs", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "selectboxes", - "input": true, - "inputType": "checkbox", - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "unique": false, - "refreshOn": "", - "dataGridLabel": false, - "widget": null, - "validateOn": "change", - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "fieldSet": false, - "id": "e7tj2m", - "defaultValue": { - "theOwner": false, - "theAgentOnBehalfOfTheOwner": false, - "lessee": false, - "theAgentOnBehalfOfTheResponsibleParty": false - } - }, - { - "html": "

Of the site, I have engaged

", - "label": "Content", - "customClass": "", - "refreshOnChange": false, - "hidden": false, - "modalEdit": false, - "key": "content64", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "content", - "input": false, - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "tableView": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "id": "ezlflsn" - }, - { - "label": "Data Grid", - "reorder": false, - "addAnotherPosition": "bottom", - "layoutFixed": false, - "enableRowGroups": false, - "initEmpty": false, - "hideLabel": true, - "tableView": false, - "defaultValue": [ - {} - ], - "key": "dataGrid17", - "type": "datagrid", - "input": true, - "components": [ - { - "label": "Name(s) of Approved Professional(s)", - "labelPosition": "top", - "placeholder": "", - "description": "", - "tooltip": "", - "prefix": "", - "suffix": "", - "widget": { - "type": "input" - }, - "inputMask": "", - "displayMask": "", - "allowMultipleMasks": false, - "customClass": "", - "tabindex": "", - "autocomplete": "", - "hidden": false, - "hideLabel": false, - "showWordCount": false, - "showCharCount": false, - "mask": false, - "autofocus": false, - "spellcheck": true, - "dataGridLabel": false, - "disabled": false, - "tableView": true, - "modalEdit": false, - "multiple": false, - "persistent": true, - "inputFormat": "plain", - "protected": false, - "dbIndex": false, - "case": "", - "truncateMultipleSpaces": false, - "encrypted": false, - "redrawOn": "", - "clearOnHide": true, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "allowCalculateOverride": false, - "validateOn": "change", - "validate": { - "required": true, - "pattern": "", - "customMessage": "", - "custom": "", - "customPrivate": false, - "json": "", - "minLength": "", - "maxLength": "", - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "unique": false, - "errorLabel": "", - "errors": "", - "key": "approvedProfessionalFullName", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "textfield", - "input": true, - "refreshOn": "", - "addons": [], - "inputType": "text", - "id": "errpqaf00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", - "defaultValue": "" - } - ], - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "tree": true, - "lazyLoad": false, - "disableAddingRemovingRows": false, - "id": "ezfplf" - }, - { - "html": "

as the Approved Professional(s) to review site investigation, risk assessment and remediation reports and to make submission and application with recommendations, if applicable, for the regulatory instrument(s) as indicated in this Summary of Site Condition.

If signing as the agent of the owner or lessee, written consent from the owner or lessee authorizing signature of this Summary of Site Condition must be attached

", - "label": "Content", - "customClass": "", - "refreshOnChange": false, - "hidden": false, - "modalEdit": false, - "key": "content65", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "content", - "input": false, - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "tableView": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "id": "eelhteh" - }, - { - "label": "I agree to comply with any requirements on the site regarding monitoring and maintenance of works as documented in schedule B of the draft contaminated sites legal instrument", - "description": "", - "tooltip": "", - "shortcut": "", - "inputType": "checkbox", - "customClass": "", - "tabindex": "", - "hidden": false, - "hideLabel": false, - "autofocus": false, - "disabled": false, - "tableView": false, - "modalEdit": false, - "persistent": true, - "protected": false, - "dbIndex": false, - "encrypted": false, - "redrawOn": "", - "clearOnHide": true, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "allowCalculateOverride": false, - "validate": { - "required": true, - "customMessage": "", - "custom": "", - "customPrivate": false, - "json": "", - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "errorLabel": "", - "errors": "", - "key": "checkbox", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "checkbox", - "name": "", - "value": "", - "input": true, - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "unique": false, - "refreshOn": "", - "dataGridLabel": true, - "labelPosition": "right", - "widget": null, - "validateOn": "change", - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "id": "eldkgns", - "defaultValue": false - }, - { - "label": "I accept that if a risk assessment has been applied at the site, that the risk assessment is only valid as long as conditions at the site do not change.", - "description": "", - "tooltip": "", - "shortcut": "", - "inputType": "checkbox", - "customClass": "", - "tabindex": "", - "hidden": false, - "hideLabel": false, - "autofocus": false, - "disabled": false, - "tableView": false, - "modalEdit": false, - "persistent": true, - "protected": false, - "dbIndex": false, - "encrypted": false, - "redrawOn": "", - "clearOnHide": true, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "allowCalculateOverride": false, - "validate": { - "required": true, - "customMessage": "", - "custom": "", - "customPrivate": false, - "json": "", - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "errorLabel": "", - "errors": "", - "key": "iAcceptThatIfARiskAssessmentHasBeenAppliedAtTheSiteThatTheRiskAssessmentIsOnlyValidAsLongAsConditionsAtTheSiteDoNotChange", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "checkbox", - "name": "", - "value": "", - "input": true, - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "unique": false, - "refreshOn": "", - "dataGridLabel": true, - "labelPosition": "right", - "widget": null, - "validateOn": "change", - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "id": "eogtso", - "defaultValue": false - }, - { - "label": "I have undertaken reasonable inquiry into the previous ownership and uses of the property and to the best of my knowledge I have provided to the Approved Professional, information relevant to the investigation and remediation of the environmental condition of the site, in the preparation of this document.", - "description": "", - "tooltip": "", - "shortcut": "", - "inputType": "checkbox", - "customClass": "", - "tabindex": "", - "hidden": false, - "hideLabel": false, - "autofocus": false, - "disabled": false, - "tableView": false, - "modalEdit": false, - "persistent": true, - "protected": false, - "dbIndex": false, - "encrypted": false, - "redrawOn": "", - "clearOnHide": true, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "allowCalculateOverride": false, - "validate": { - "required": true, - "customMessage": "", - "custom": "", - "customPrivate": false, - "json": "", - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "errorLabel": "", - "errors": "", - "key": "iHaveUndertakenReasonableInquiryIntoThePreviousOwnershipAndUsesOfThePropertyAndToTheBestOfMyKnowledgeIHaveProvidedToTheApprovedProfessionalInformationRelevantToTheInvestigationAndRemediationOfTheEnvironmentalConditionOfTheSiteInThePreparationOfThisDocument", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "checkbox", - "name": "", - "value": "", - "input": true, - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "unique": false, - "refreshOn": "", - "dataGridLabel": true, - "labelPosition": "right", - "widget": null, - "validateOn": "change", - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "id": "etmpgu", - "defaultValue": false - }, - { - "label": "I acknowledge that this Summary of Site Condition becomes a public document after it has been received and acknowledged by the Director of Waste Management. Any party intending to purchase, lease, take a security interest in, or occupy the site may review this document and any supporting documents to satisfy themselves with respect to the environmental condition of the site, and the extent of responsibility and liability that may arise from taking ownership, taking a security interest, or occupying the site. ", - "description": "", - "tooltip": "", - "shortcut": "", - "inputType": "checkbox", - "customClass": "", - "tabindex": "", - "hidden": false, - "hideLabel": false, - "autofocus": false, - "disabled": false, - "tableView": false, - "modalEdit": false, - "defaultValue": false, - "persistent": true, - "protected": false, - "dbIndex": false, - "encrypted": false, - "redrawOn": "", - "clearOnHide": true, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "allowCalculateOverride": false, - "validate": { - "required": true, - "customMessage": "", - "custom": "", - "customPrivate": false, - "json": "", - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "errorLabel": "", - "errors": "", - "key": "iAcknowledgeThatThisSummaryOfSiteConditionBecomesAPublicDocumentAfterItHasBeenReceivedAndAcknowledgedByTheDirectorOfWasteManagementAnyPartyIntendingToPurchaseLeaseTakeASecurityInterestInOrOccupyTheSiteMayReviewThisDocumentAndAnySupportingDocumentsToSatisfyThemselvesWithRespectToTheEnvironmentalConditionOfTheSiteAndTheExtentOfResponsibilityAndLiabilityThatMayAriseFromTakingOwnershipTakingASecurityInterestOrOccupyingTheSite", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "checkbox", - "name": "", - "value": "", - "input": true, - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "unique": false, - "refreshOn": "", - "dataGridLabel": true, - "labelPosition": "right", - "widget": null, - "validateOn": "change", - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "id": "e57l23" - }, - { - "label": "Approved Professional Signatures", - "columns": [ - { - "components": [ - { - "label": "I have made no modifications to this document except as allowed by the form", - "description": "", - "tooltip": "", - "shortcut": "", - "inputType": "checkbox", - "customClass": "", - "tabindex": "", - "hidden": false, - "hideLabel": false, - "autofocus": false, - "disabled": false, - "tableView": false, - "modalEdit": false, - "defaultValue": false, - "persistent": true, - "protected": false, - "dbIndex": false, - "encrypted": false, - "redrawOn": "", - "clearOnHide": true, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "allowCalculateOverride": false, - "validate": { - "required": true, - "customMessage": "", - "custom": "", - "customPrivate": false, - "json": "", - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "errorLabel": "", - "errors": "", - "key": "iHaveMadeNoModificationsToThisDocumentExceptAsAllowedByTheForm", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "checkbox", - "name": "", - "value": "", - "input": true, - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "unique": false, - "refreshOn": "", - "dataGridLabel": true, - "labelPosition": "right", - "widget": null, - "validateOn": "change", - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "id": "ed8psb" - }, - { - "label": "First Name", - "tableView": true, - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "key": "firstName", - "type": "textfield", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "et5ljp" - }, - { - "label": "Last Name", - "tableView": true, - "key": "lastName", - "type": "textfield", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "eq5xc5d" - }, - { - "label": "Signature of Owner/Agent/Lessee", - "footer": "Sign above", - "labelPosition": "top", - "width": "100%", - "height": "150px", - "backgroundColor": "rgb(245,245,235)", - "penColor": "black", - "description": "", - "tooltip": "", - "customClass": "", - "tabindex": "", - "hidden": false, - "hideLabel": false, - "disabled": false, - "tableView": false, - "modalEdit": false, - "persistent": true, - "protected": false, - "encrypted": false, - "redrawOn": "", - "clearOnHide": true, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "allowCalculateOverride": false, - "validate": { - "required": true, - "customMessage": "", - "custom": "", - "customPrivate": false, - "json": "", - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "errorLabel": "", - "errors": "", - "key": "signatureOfApprovedProfessional", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "signature", - "input": true, - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "unique": false, - "refreshOn": "", - "dataGridLabel": false, - "autofocus": false, - "dbIndex": false, - "widget": { - "type": "input" - }, - "validateOn": "change", - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "minWidth": "0.5", - "maxWidth": "2.5", - "keepOverlayRatio": true, - "id": "ehazy0p" - }, - { - "label": "Date", - "labelPosition": "top", - "displayInTimezone": "viewer", - "useLocaleSettings": false, - "allowInput": true, - "format": "yyyy-MM-dd hh:mm a", - "placeholder": "", - "description": "", - "tooltip": "", - "customClass": "", - "tabindex": "", - "hidden": false, - "hideLabel": false, - "autofocus": false, - "disabled": false, - "tableView": false, - "modalEdit": false, - "shortcutButtons": [], - "enableDate": true, - "datePicker": { - "disable": "", - "disableFunction": "", - "disableWeekends": false, - "disableWeekdays": false, - "minDate": null, - "maxDate": null, - "showWeeks": true, - "startingDay": 0, - "initDate": "", - "minMode": "day", - "maxMode": "year", - "yearRows": 4, - "yearColumns": 5 - }, - "enableTime": true, - "timePicker": { - "showMeridian": true, - "hourStep": 1, - "minuteStep": 1, - "readonlyInput": false, - "mousewheel": true, - "arrowkeys": true - }, - "multiple": false, - "defaultValue": "", - "defaultDate": "", - "customOptions": {}, - "persistent": true, - "protected": false, - "dbIndex": false, - "encrypted": false, - "redrawOn": "", - "clearOnHide": true, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "allowCalculateOverride": false, - "validateOn": "change", - "validate": { - "required": false, - "customMessage": "", - "custom": "", - "customPrivate": false, - "json": "", - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "enableMinDateInput": false, - "enableMaxDateInput": false, - "unique": false, - "errorLabel": "", - "errors": "", - "key": "dateTime", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "datetime", - "timezone": "", - "input": true, - "widget": { - "type": "calendar", - "displayInTimezone": "viewer", - "locale": "en", - "useLocaleSettings": false, - "allowInput": true, - "mode": "single", - "enableTime": true, - "noCalendar": false, - "format": "yyyy-MM-dd hh:mm a", - "hourIncrement": 1, - "minuteIncrement": 1, - "time_24hr": false, - "minDate": null, - "disabledDates": "", - "disableWeekends": false, - "disableWeekdays": false, - "disableFunction": "", - "maxDate": null - }, - "prefix": "", - "suffix": "", - "refreshOn": "", - "dataGridLabel": false, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "datepickerMode": "day", - "id": "etjv8wm" - } - ], - "width": 6, - "offset": 0, - "push": 0, - "pull": 0, - "size": "md", - "currentWidth": 6 - }, - { - "components": [ - { - "label": "Address", - "labelPosition": "top", - "placeholder": "", - "description": "", - "tooltip": "", - "prefix": "", - "suffix": "", - "widget": { - "type": "input" - }, - "inputMask": "", - "displayMask": "", - "allowMultipleMasks": false, - "customClass": "", - "tabindex": "", - "autocomplete": "", - "hidden": false, - "hideLabel": false, - "showWordCount": false, - "showCharCount": false, - "mask": false, - "autofocus": false, - "spellcheck": true, - "disabled": false, - "tableView": true, - "modalEdit": false, - "multiple": false, - "persistent": true, - "inputFormat": "plain", - "protected": false, - "dbIndex": false, - "case": "", - "truncateMultipleSpaces": false, - "encrypted": false, - "redrawOn": "", - "clearOnHide": true, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "allowCalculateOverride": false, - "validateOn": "change", - "validate": { - "required": true, - "pattern": "", - "customMessage": "", - "custom": "", - "customPrivate": false, - "json": "", - "minLength": "", - "maxLength": "", - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "unique": false, - "errorLabel": "", - "errors": "", - "key": "address", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "textfield", - "input": true, - "refreshOn": "", - "dataGridLabel": false, - "addons": [], - "inputType": "text", - "id": "ehvzv6o", - "defaultValue": "" - }, - { - "input": false, - "key": "columns1", - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "hidden": false, - "clearOnHide": false, - "refreshOn": "", - "redrawOn": "", - "tableView": false, - "modalEdit": false, - "label": "Columns", - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "tree": false, - "lazyLoad": false, - "type": "columns", - "columns": [ - { - "components": [ - { - "label": "City", - "labelPosition": "top", - "placeholder": "", - "description": "", - "tooltip": "", - "prefix": "", - "suffix": "", - "widget": { - "type": "input" - }, - "inputMask": "", - "displayMask": "", - "allowMultipleMasks": false, - "customClass": "", - "tabindex": "", - "autocomplete": "", - "hidden": false, - "hideLabel": false, - "showWordCount": false, - "showCharCount": false, - "mask": false, - "autofocus": false, - "spellcheck": true, - "disabled": false, - "tableView": true, - "modalEdit": false, - "multiple": false, - "persistent": true, - "inputFormat": "plain", - "protected": false, - "dbIndex": false, - "case": "", - "truncateMultipleSpaces": false, - "encrypted": false, - "redrawOn": "", - "clearOnHide": true, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "allowCalculateOverride": false, - "validateOn": "change", - "validate": { - "required": true, - "pattern": "", - "customMessage": "", - "custom": "", - "customPrivate": false, - "json": "", - "minLength": "", - "maxLength": "", - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "unique": false, - "errorLabel": "", - "errors": "", - "key": "city", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "textfield", - "input": true, - "refreshOn": "", - "dataGridLabel": false, - "addons": [], - "inputType": "text", - "id": "e1koxeg", - "defaultValue": "" - }, - { - "label": "Postal Code", - "labelPosition": "top", - "placeholder": "", - "description": "", - "tooltip": "", - "prefix": "", - "suffix": "", - "widget": { - "type": "input" - }, - "inputMask": "", - "displayMask": "", - "allowMultipleMasks": false, - "customClass": "", - "tabindex": "", - "autocomplete": "", - "hidden": false, - "hideLabel": false, - "showWordCount": false, - "showCharCount": false, - "mask": false, - "autofocus": false, - "spellcheck": true, - "disabled": false, - "tableView": true, - "modalEdit": false, - "multiple": false, - "persistent": true, - "inputFormat": "plain", - "protected": false, - "dbIndex": false, - "case": "", - "truncateMultipleSpaces": false, - "encrypted": false, - "redrawOn": "", - "clearOnHide": true, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "allowCalculateOverride": false, - "validateOn": "change", - "validate": { - "required": true, - "pattern": "", - "customMessage": "", - "custom": "", - "customPrivate": false, - "json": "", - "minLength": "", - "maxLength": "", - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "unique": false, - "errorLabel": "", - "errors": "", - "key": "postalCode1", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "textfield", - "input": true, - "refreshOn": "", - "dataGridLabel": false, - "addons": [], - "inputType": "text", - "id": "eiw0krr", - "defaultValue": "" - } - ], - "width": 6, - "offset": 0, - "push": 0, - "pull": 0, - "size": "md", - "currentWidth": 6 - }, - { - "components": [ - { - "label": "Province", - "labelPosition": "top", - "placeholder": "", - "description": "", - "tooltip": "", - "prefix": "", - "suffix": "", - "widget": { - "type": "input" - }, - "inputMask": "", - "displayMask": "", - "allowMultipleMasks": false, - "customClass": "", - "tabindex": "", - "autocomplete": "", - "hidden": false, - "hideLabel": false, - "showWordCount": false, - "showCharCount": false, - "mask": false, - "autofocus": false, - "spellcheck": true, - "disabled": false, - "tableView": true, - "modalEdit": false, - "multiple": false, - "persistent": true, - "inputFormat": "plain", - "protected": false, - "dbIndex": false, - "case": "", - "truncateMultipleSpaces": false, - "encrypted": false, - "redrawOn": "", - "clearOnHide": true, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "allowCalculateOverride": false, - "validateOn": "change", - "validate": { - "required": true, - "pattern": "", - "customMessage": "", - "custom": "", - "customPrivate": false, - "json": "", - "minLength": "", - "maxLength": "", - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "unique": false, - "errorLabel": "", - "errors": "", - "key": "province", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "textfield", - "input": true, - "refreshOn": "", - "dataGridLabel": false, - "addons": [], - "inputType": "text", - "id": "es4bja", - "defaultValue": "" - }, - { - "label": "Country", - "labelPosition": "top", - "placeholder": "", - "description": "", - "tooltip": "", - "prefix": "", - "suffix": "", - "widget": { - "type": "input" - }, - "inputMask": "", - "displayMask": "", - "allowMultipleMasks": false, - "customClass": "", - "tabindex": "", - "autocomplete": "", - "hidden": false, - "hideLabel": false, - "showWordCount": false, - "showCharCount": false, - "mask": false, - "autofocus": false, - "spellcheck": true, - "disabled": false, - "tableView": true, - "modalEdit": false, - "multiple": false, - "persistent": true, - "inputFormat": "plain", - "protected": false, - "dbIndex": false, - "case": "", - "truncateMultipleSpaces": false, - "encrypted": false, - "redrawOn": "", - "clearOnHide": true, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "allowCalculateOverride": false, - "validateOn": "change", - "validate": { - "required": true, - "pattern": "", - "customMessage": "", - "custom": "", - "customPrivate": false, - "json": "", - "minLength": "", - "maxLength": "", - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "unique": false, - "errorLabel": "", - "errors": "", - "key": "country", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "textfield", - "input": true, - "refreshOn": "", - "dataGridLabel": false, - "addons": [], - "inputType": "text", - "id": "e893hnl", - "defaultValue": "" - } - ], - "width": 6, - "offset": 0, - "push": 0, - "pull": 0, - "size": "md", - "currentWidth": 6 - } - ], - "autoAdjust": false, - "id": "ergznb" - } - ], - "width": 6, - "offset": 0, - "push": 0, - "pull": 0, - "size": "md", - "currentWidth": 6 - } - ], - "key": "approvedProfessionalSignature", - "type": "columns", - "input": false, - "tableView": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "hidden": false, - "clearOnHide": false, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "tree": false, - "lazyLoad": false, - "autoAdjust": false, - "id": "e18pyfg" - } - ], - "id": "e3jlek" - }, - { - "type": "button", - "label": "Submit", - "key": "submit", - "size": "md", - "block": false, - "action": "submit", - "disableOnInvalid": true, - "theme": "primary", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "tableView": false, - "modalEdit": false, - "dataGridLabel": true, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "leftIcon": "", - "rightIcon": "", - "id": "emkrxp" - }, - { - "label": "bundleStatus", - "customClass": "", - "modalEdit": false, - "defaultValue": null, - "persistent": true, - "protected": false, - "dbIndex": false, - "encrypted": false, - "redrawOn": "", - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "key": "bundleStatus", - "tags": [], - "properties": {}, - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "hidden", - "input": true, - "tableView": false, - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "unique": false, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "widget": { - "type": "input" - }, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "allowCalculateOverride": false, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "inputType": "hidden", - "id": "eryzjur" - }, - { - "label": "soscUtilKeys", - "customDefaultValue": "const soscKeys = Object.keys(\n      utils.flattenComponents(form.components, false)\n    );\n\nvalue = soscKeys;", - "key": "soscUtilKeys", - "type": "hidden", - "input": true, - "tableView": false, - "keyModified": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "inputType": "hidden", - "id": "e6did" - }, - { - "label": "soscStatus", - "customClass": "", - "modalEdit": false, - "defaultValue": null, - "persistent": true, - "protected": false, - "dbIndex": false, - "encrypted": false, - "redrawOn": "", - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "key": "soscBundleStatus", - "tags": [], - "properties": {}, - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "hidden", - "input": true, - "tableView": false, - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "unique": false, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "widget": { - "type": "input" - }, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "allowCalculateOverride": false, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "inputType": "hidden", - "id": "epy41s4" - }, - { - "label": "applicationId", - "customClass": "", - "addons": [], - "modalEdit": false, - "persistent": true, - "protected": false, - "dbIndex": false, - "encrypted": false, - "redrawOn": "", - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "key": "applicationId", - "tags": [], - "properties": {}, - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "hidden", - "input": true, - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "unique": false, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "tableView": false, - "labelPosition": "top", - "Description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "widget": { - "type": "input" - }, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "allowCalculateOverride": false, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "inputType": "hidden", - "id": "em1y8gd", - "defaultValue": "", - "dataGridLabel": false, - "description": "" - }, - { - "label": "applicationStatus", - "addons": [], - "customClass": "", - "modalEdit": false, - "defaultValue": null, - "persistent": true, - "protected": false, - "dbIndex": false, - "encrypted": false, - "redrawOn": "", - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "key": "applicationStatus", - "tags": [], - "properties": {}, - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "hidden", - "input": true, - "tableView": false, - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "unique": false, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "dataGridLabel": false, - "labelPosition": "top", - "Description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "widget": { - "type": "input" - }, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "allowCalculateOverride": false, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "inputType": "hidden", - "id": "e6z1qd9", - "description": "" - } - ] - } - ] -} \ No newline at end of file diff --git a/forms-flow-ai/epd-forms/test-forms/test api submission auth-2023-01-25T22_52_33.564Z.json b/forms-flow-ai/epd-forms/test-forms/test api submission auth-2023-01-25T22_52_33.564Z.json deleted file mode 100644 index 0cd1a533..00000000 --- a/forms-flow-ai/epd-forms/test-forms/test api submission auth-2023-01-25T22_52_33.564Z.json +++ /dev/null @@ -1 +0,0 @@ -{"forms":[{"title":"test api submission auth","display":"form","type":"form","name":"testApiSubmissionAuth","path":"testapisubmissionauth","tags":["common"],"components":[{"label":"Text Field","labelPosition":"top","placeholder":"","description":"","tooltip":"","prefix":"","suffix":"","widget":{"type":"input"},"inputMask":"","displayMask":"","allowMultipleMasks":false,"customClass":"","tabindex":"","autocomplete":"","hidden":false,"hideLabel":false,"showWordCount":false,"showCharCount":false,"mask":false,"autofocus":false,"spellcheck":true,"disabled":false,"tableView":true,"modalEdit":false,"multiple":false,"persistent":true,"inputFormat":"plain","protected":false,"dbIndex":false,"case":"","truncateMultipleSpaces":false,"encrypted":false,"redrawOn":"","clearOnHide":true,"customDefaultValue":"","calculateValue":"","calculateServer":false,"allowCalculateOverride":false,"validateOn":"change","validate":{"required":false,"pattern":"","customMessage":"","custom":"","customPrivate":false,"json":"","minLength":"","maxLength":"","strictDateValidation":false,"multiple":false,"unique":false},"unique":false,"errorLabel":"","errors":"","key":"textField","tags":[],"properties":{},"conditional":{"show":null,"when":null,"eq":"","json":""},"customConditional":"","logic":[],"attributes":{},"overlay":{"style":"","page":"","left":"","top":"","width":"","height":""},"type":"textfield","input":true,"refreshOn":"","dataGridLabel":false,"addons":[],"inputType":"text","id":"ee8cqmy","defaultValue":null},{"label":"Submit","action":"custom","showValidations":false,"theme":"primary","size":"md","block":false,"leftIcon":"","rightIcon":"","shortcut":"","description":"","tooltip":"","customClass":"","tabindex":"","disableOnInvalid":true,"hidden":false,"autofocus":false,"disabled":false,"tableView":false,"modalEdit":false,"key":"submit","tags":[],"properties":{},"conditional":{"show":null,"when":null,"eq":"","json":""},"customConditional":"","logic":[],"attributes":{},"overlay":{"style":"","page":"","left":"","top":"","width":"","height":""},"type":"button","custom":"const authToken = localStorage.getItem(\"authToken\")\r\nconst applicationURL = \"https://7568-2001-569-7d93-6000-6845-3b98-5df7-4224.ngrok.io\"\r\n\r\nconsole.log(data)\r\n\r\nasync function postData(url, data){\r\n console.log(JSON.stringify(data))\r\n const response = await fetch(url, {\r\n method: 'POST',\r\n headers:{\r\n 'Access-Control-Allow-Origin': '*',\r\n 'Content-Type': 'application/json',\r\n 'Authorization': 'Bearer '+authToken\r\n },\r\n body: JSON.stringify(data)\r\n })\r\n return await response.json()\r\n}\r\n\r\n\r\npostData(applicationURL, data)\r\n.then(response =>{\r\n console.log(response)\r\n})","input":true,"placeholder":"","prefix":"","suffix":"","multiple":false,"defaultValue":null,"protected":false,"unique":false,"persistent":false,"clearOnHide":true,"refreshOn":"","redrawOn":"","dataGridLabel":true,"labelPosition":"top","errorLabel":"","hideLabel":false,"dbIndex":false,"customDefaultValue":"","calculateValue":"","calculateServer":false,"widget":{"type":"input"},"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false},"allowCalculateOverride":false,"encrypted":false,"showCharCount":false,"showWordCount":false,"allowMultipleMasks":false,"addons":[],"id":"e5qte7i"},{"label":"applicationId","customClass":"","modalEdit":false,"persistent":true,"protected":false,"dbIndex":false,"encrypted":false,"redrawOn":"","customDefaultValue":"","calculateValue":"","calculateServer":false,"key":"applicationId","tags":[],"properties":{},"logic":[],"attributes":{},"overlay":{"style":"","page":"","left":"","top":"","width":"","height":""},"type":"hidden","input":true,"placeholder":"","prefix":"","suffix":"","multiple":false,"unique":false,"hidden":false,"clearOnHide":true,"refreshOn":"","tableView":false,"labelPosition":"top","Description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"widget":{"type":"input"},"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false},"conditional":{"show":null,"when":null,"eq":""},"allowCalculateOverride":false,"showCharCount":false,"showWordCount":false,"allowMultipleMasks":false,"inputType":"hidden","id":"em1y8gd","defaultValue":"","dataGridLabel":false,"description":"","addons":[]},{"label":"applicationStatus","customClass":"","modalEdit":false,"defaultValue":null,"persistent":true,"protected":false,"dbIndex":false,"encrypted":false,"redrawOn":"","customDefaultValue":"","calculateValue":"","calculateServer":false,"key":"applicationStatus","tags":[],"properties":{},"logic":[],"attributes":{},"overlay":{"style":"","page":"","left":"","top":"","width":"","height":""},"type":"hidden","input":true,"tableView":false,"placeholder":"","prefix":"","suffix":"","multiple":false,"unique":false,"hidden":false,"clearOnHide":true,"refreshOn":"","dataGridLabel":false,"labelPosition":"top","Description":"","errorLabel":"","tooltip":"","hideLabel":false,"tabindex":"","disabled":false,"autofocus":false,"widget":{"type":"input"},"validateOn":"change","validate":{"required":false,"custom":"","customPrivate":false,"strictDateValidation":false,"multiple":false,"unique":false},"conditional":{"show":null,"when":null,"eq":""},"allowCalculateOverride":false,"showCharCount":false,"showWordCount":false,"allowMultipleMasks":false,"inputType":"hidden","id":"e6z1qd9","description":"","addons":[]}]}]} \ No newline at end of file diff --git a/forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/processes/Bundling/subProcess/SOSCBundleWorklow.bpmn b/forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/processes/SoSC/SOSCBundleWorklow.bpmn similarity index 100% rename from forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/processes/Bundling/subProcess/SOSCBundleWorklow.bpmn rename to forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/processes/SoSC/SOSCBundleWorklow.bpmn From af39a0403c7455b2f46e8efba50b0df39fdc13a2 Mon Sep 17 00:00:00 2001 From: nikhila-aot Date: Fri, 13 Oct 2023 12:31:28 -0700 Subject: [PATCH 158/194] added name variable --- .../processes/SoSC/SOSCBundleWorklow.bpmn | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) diff --git a/forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/processes/SoSC/SOSCBundleWorklow.bpmn b/forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/processes/SoSC/SOSCBundleWorklow.bpmn index 78d57db1..e83cc5ab 100644 --- a/forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/processes/SoSC/SOSCBundleWorklow.bpmn +++ b/forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/processes/SoSC/SOSCBundleWorklow.bpmn @@ -303,6 +303,8 @@ execution.setVariable('returnedBy', "cssaTeam"); Flow_05pndkl var system = java.lang.System; +execution.setVariable('name','User'); + execution.setVariable('riskclassification','required'); system.out.println ("riskclassification"+ execution.getVariable('riskclassification')); @@ -573,6 +575,14 @@ task.execution.setVariable('deleteReason', "completed"); + + + + + + + + @@ -592,14 +602,6 @@ task.execution.setVariable('deleteReason', "completed"); - - - - - - - - From 832da07e72db1e11a6b8885c1292fad92424ff3c Mon Sep 17 00:00:00 2001 From: midhun-aot Date: Fri, 13 Oct 2023 13:19:45 -0700 Subject: [PATCH 159/194] added the required space after the text content --- ... Ecological Risk Assessment Checklist.json | 2318 ++++++++--------- 1 file changed, 1159 insertions(+), 1159 deletions(-) diff --git a/forms-flow-ai/epd-forms/bundling/Detailed Ecological Risk Assessment Checklist.json b/forms-flow-ai/epd-forms/bundling/Detailed Ecological Risk Assessment Checklist.json index f12b7159..10c8178f 100644 --- a/forms-flow-ai/epd-forms/bundling/Detailed Ecological Risk Assessment Checklist.json +++ b/forms-flow-ai/epd-forms/bundling/Detailed Ecological Risk Assessment Checklist.json @@ -5488,7 +5488,7 @@ "attributes": {}, "components": [ { - "id": "eh8z2bfa000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "id": "eh8z2bfa000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", "key": "panel", "tags": [], "tree": false, @@ -8222,71 +8222,71 @@ "offset": 0, "components": [ { - "id": "e8vcua", "key": "four", - "html": "

1.4 If ministry preapprovals apply to the DERA, has all required preapproval documentation been provided with the risk assessment? 

", + "html": "

1.4 If ministry preapprovals apply to the DERA, has all required preapproval documentation been provided with the risk assessment? 


", "type": "content", "input": false, "label": "Text/Images", - "hidden": false, + "tableView": false, + "hideOnChildrenHidden": false, + "placeholder": "", "prefix": "", + "customClass": "", "suffix": "", - "unique": false, - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", "validate": { - "custom": "", - "unique": false, - "multiple": false, "required": false, + "custom": "", "customPrivate": false, - "strictDateValidation": false + "strictDateValidation": false, + "multiple": false, + "unique": false }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, "conditional": { - "eq": "", "show": null, - "when": null + "when": null, + "eq": "" }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, "showCharCount": false, "showWordCount": false, - "calculateValue": "", - "calculateServer": false, + "properties": {}, "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "allowCalculateOverride": false, - "addons": [] + "addons": [], + "id": "e042f9" } ], "currentWidth": 4 @@ -8694,71 +8694,71 @@ "offset": 0, "components": [ { - "id": "eez7jmp", "key": "five", - "html": "

1.5 Does the report make it clear what conditions are required (if any) for the instrument being applied for (e.g., Schedule B conditions for a Certificate of Compliance)?

", + "html": "

1.5 Does the report make it clear what conditions are required (if any) for the instrument being applied for (e.g., Schedule B conditions for a Certificate of Compliance)?


", "type": "content", "input": false, "label": "Text/Images", - "hidden": false, + "tableView": false, + "hideOnChildrenHidden": false, + "placeholder": "", "prefix": "", + "customClass": "", "suffix": "", - "unique": false, - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", "validate": { - "custom": "", - "unique": false, - "multiple": false, "required": false, + "custom": "", "customPrivate": false, - "strictDateValidation": false + "strictDateValidation": false, + "multiple": false, + "unique": false }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, "conditional": { - "eq": "", "show": null, - "when": null + "when": null, + "eq": "" }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, "showCharCount": false, "showWordCount": false, - "calculateValue": "", - "calculateServer": false, + "properties": {}, "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "allowCalculateOverride": false, - "addons": [] + "addons": [], + "id": "e5jafue" } ], "currentWidth": 4 @@ -10721,86 +10721,86 @@ "offset": 0, "components": [ { - "id": "etyjrjk", "key": "twotwo", - "html": "

2.2 Were assessment and measurement endpoints for operative exposure pathways warranting further assessment defined? (See footnote 1)

", - "type": "content", - "input": false, - "label": "Text/Images", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "allowCalculateOverride": false, - "addons": [] - } - ], - "currentWidth": 4 - }, - { - "pull": 0, - "push": 0, - "size": "md", - "width": 2, - "offset": 0, - "components": [ - { - "id": "ew09m5k", - "key": "simplecontentfivetwo", - "html": "

Response

", + "html": "

2.2 Were assessment and measurement endpoints for operative exposure pathways warranting further assessment defined? (See footnote 1)


", + "type": "content", + "input": false, + "label": "Text/Images", + "tableView": false, + "hideOnChildrenHidden": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "id": "exkzvir" + } + ], + "currentWidth": 4 + }, + { + "pull": 0, + "push": 0, + "size": "md", + "width": 2, + "offset": 0, + "components": [ + { + "id": "ew09m5k", + "key": "simplecontentfivetwo", + "html": "

Response

", "type": "content", "input": false, "label": "Text/Images", @@ -11657,71 +11657,71 @@ "offset": 0, "components": [ { - "id": "es6mwqn", "key": "twofour", - "html": "

2.4 Were all current and reasonable potential future land, water and sediment uses identified in the problem formulation and considered in screening for chemical exceedances?

", + "html": "

2.4 Were all current and reasonable potential future land, water and sediment uses identified in the problem formulation and considered in screening for chemical exceedances?


", "type": "content", "input": false, "label": "Text/Images", - "hidden": false, + "tableView": false, + "hideOnChildrenHidden": false, + "placeholder": "", "prefix": "", + "customClass": "", "suffix": "", - "unique": false, - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", "validate": { - "custom": "", - "unique": false, - "multiple": false, "required": false, + "custom": "", "customPrivate": false, - "strictDateValidation": false + "strictDateValidation": false, + "multiple": false, + "unique": false }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, "conditional": { - "eq": "", "show": null, - "when": null + "when": null, + "eq": "" }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, "showCharCount": false, "showWordCount": false, - "calculateValue": "", - "calculateServer": false, + "properties": {}, "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "allowCalculateOverride": false, - "addons": [] + "addons": [], + "id": "e2bmszm" } ], "currentWidth": 4 @@ -12125,71 +12125,71 @@ "offset": 0, "components": [ { - "id": "eula1d", "key": "twofive", - "html": "

2.5 Were assumptions associated with current and future land use documented and rationale provided (e.g., development scenario)?

", + "html": "

2.5 Were assumptions associated with current and future land use documented and rationale provided (e.g., development scenario)?


", "type": "content", "input": false, "label": "Text/Images", - "hidden": false, + "tableView": false, + "hideOnChildrenHidden": false, + "placeholder": "", "prefix": "", + "customClass": "", "suffix": "", - "unique": false, - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", "validate": { - "custom": "", - "unique": false, - "multiple": false, "required": false, + "custom": "", "customPrivate": false, - "strictDateValidation": false + "strictDateValidation": false, + "multiple": false, + "unique": false }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, "conditional": { - "eq": "", "show": null, - "when": null + "when": null, + "eq": "" }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, "showCharCount": false, "showWordCount": false, - "calculateValue": "", - "calculateServer": false, + "properties": {}, "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "allowCalculateOverride": false, - "addons": [] + "addons": [], + "id": "eguu76i" } ], "currentWidth": 4 @@ -14933,71 +14933,71 @@ "offset": 0, "components": [ { - "id": "e20owe7", "key": "twoeleven", - "html": "

2.11 Was a rationale provided for any exclusion of contaminants that exceed applicable standards, criteria, or guidelines? (See footnote 3)

", + "html": "

2.11 Was a rationale provided for any exclusion of contaminants that exceed applicable standards, criteria, or guidelines? (See footnote 3)


", "type": "content", "input": false, "label": "Text/Images", - "hidden": false, + "tableView": false, + "hideOnChildrenHidden": false, + "placeholder": "", "prefix": "", + "customClass": "", "suffix": "", - "unique": false, - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", "validate": { - "custom": "", - "unique": false, - "multiple": false, "required": false, + "custom": "", "customPrivate": false, - "strictDateValidation": false + "strictDateValidation": false, + "multiple": false, + "unique": false }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, "conditional": { - "eq": "", "show": null, - "when": null + "when": null, + "eq": "" }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, "showCharCount": false, "showWordCount": false, - "calculateValue": "", - "calculateServer": false, + "properties": {}, "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "allowCalculateOverride": false, - "addons": [] + "addons": [], + "id": "e79lvtsq" } ], "currentWidth": 4 @@ -17273,71 +17273,71 @@ "offset": 0, "components": [ { - "id": "e6anrbp", "key": "twosixteen", - "html": "

2.16 If contaminant-pathway-receptor combinations were excluded from further assessment, was a rationale for the exclusion provided?

", + "html": "

2.16 If contaminant-pathway-receptor combinations were excluded from further assessment, was a rationale for the exclusion provided?


", "type": "content", "input": false, "label": "Text/Images", - "hidden": false, + "tableView": false, + "hideOnChildrenHidden": false, + "placeholder": "", "prefix": "", + "customClass": "", "suffix": "", - "unique": false, - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", "validate": { - "custom": "", - "unique": false, - "multiple": false, "required": false, + "custom": "", "customPrivate": false, - "strictDateValidation": false + "strictDateValidation": false, + "multiple": false, + "unique": false }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, "conditional": { - "eq": "", "show": null, - "when": null + "when": null, + "eq": "" }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, "showCharCount": false, "showWordCount": false, - "calculateValue": "", - "calculateServer": false, + "properties": {}, "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "allowCalculateOverride": false, - "addons": [] + "addons": [], + "id": "e87ibgb" } ], "currentWidth": 4 @@ -21163,86 +21163,86 @@ "offset": 0, "components": [ { - "id": "e1vsfz5", "key": "threefive", - "html": "

3.5 If an exposure model was used, were equations and the input data provided to support an independent quality assurance check for each exposure route in the risk assessment?

", - "type": "content", - "input": false, - "label": "Text/Images", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "allowCalculateOverride": false, - "addons": [] - } - ], - "currentWidth": 4 - }, - { - "pull": 0, - "push": 0, - "size": "md", - "width": 2, - "offset": 0, - "components": [ - { - "id": "e04mm6o", - "key": "simplecontentnineone", - "html": "

Response

", + "html": "

3.5 If an exposure model was used, were equations and the input data provided to support an independent quality assurance check for each exposure route in the risk assessment?


", + "type": "content", + "input": false, + "label": "Text/Images", + "tableView": false, + "hideOnChildrenHidden": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "id": "eh3g18f" + } + ], + "currentWidth": 4 + }, + { + "pull": 0, + "push": 0, + "size": "md", + "width": 2, + "offset": 0, + "components": [ + { + "id": "e04mm6o", + "key": "simplecontentnineone", + "html": "

Response

", "type": "content", "input": false, "label": "Text/Images", @@ -21631,71 +21631,71 @@ "offset": 0, "components": [ { - "id": "exssfl", "key": "threesix", - "html": "

3.6 Were all exposure model parameters defined and was rationale provided for all exposure model parameter values (with references where applicable)?

", + "html": "

3.6 Were all exposure model parameters defined and was rationale provided for all exposure model parameter values (with references where applicable)?


", "type": "content", "input": false, "label": "Text/Images", - "hidden": false, + "tableView": false, + "hideOnChildrenHidden": false, + "placeholder": "", "prefix": "", + "customClass": "", "suffix": "", - "unique": false, - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", "validate": { - "custom": "", - "unique": false, - "multiple": false, "required": false, + "custom": "", "customPrivate": false, - "strictDateValidation": false + "strictDateValidation": false, + "multiple": false, + "unique": false }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, "conditional": { - "eq": "", "show": null, - "when": null + "when": null, + "eq": "" }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, "showCharCount": false, "showWordCount": false, - "calculateValue": "", - "calculateServer": false, + "properties": {}, "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "allowCalculateOverride": false, - "addons": [] + "addons": [], + "id": "eiflm48" } ], "currentWidth": 4 @@ -24056,71 +24056,71 @@ "offset": 0, "components": [ { - "id": "et1jlry", "key": "fourone", - "html": "

4.1 If ecological surveys (e.g., plant, soil invertebrate, bird, fish, or benthic communities) were conducted, was the survey methodology used (including sampling locations and seasons) documented?

", + "html": "

4.1 If ecological surveys (e.g., plant, soil invertebrate, bird, fish, or benthic communities) were conducted, was the survey methodology used (including sampling locations and seasons) documented?


", "type": "content", "input": false, "label": "Text/Images", - "hidden": false, + "tableView": false, + "hideOnChildrenHidden": false, + "placeholder": "", "prefix": "", + "customClass": "", "suffix": "", - "unique": false, - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", "validate": { - "custom": "", - "unique": false, - "multiple": false, "required": false, + "custom": "", "customPrivate": false, - "strictDateValidation": false + "strictDateValidation": false, + "multiple": false, + "unique": false }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, "conditional": { - "eq": "", "show": null, - "when": null + "when": null, + "eq": "" }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, "showCharCount": false, "showWordCount": false, - "calculateValue": "", - "calculateServer": false, + "properties": {}, "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "allowCalculateOverride": false, - "addons": [] + "addons": [], + "id": "eg2zyuq" } ], "currentWidth": 4 @@ -24998,71 +24998,71 @@ "offset": 0, "components": [ { - "id": "edwvn4", "key": "trvs", - "html": "

4.3 If TRVs were used, was the source of the TRVs referenced? If TRVs were developed de novo, was their derivation documented?

", + "html": "

4.3 If TRVs were used, was the source of the TRVs referenced? If TRVs were developed de novo, was their derivation documented?


", "type": "content", "input": false, "label": "Text/Images", - "hidden": false, + "tableView": false, + "hideOnChildrenHidden": false, + "placeholder": "", "prefix": "", + "customClass": "", "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, "unique": false, - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", "validate": { - "custom": "", - "unique": false, - "multiple": false, "required": false, + "custom": "", "customPrivate": false, - "strictDateValidation": false + "strictDateValidation": false, + "multiple": false, + "unique": false }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, "conditional": { - "eq": "", "show": null, - "when": null + "when": null, + "eq": "" }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, "showCharCount": false, "showWordCount": false, - "calculateValue": "", - "calculateServer": false, + "properties": {}, "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "allowCalculateOverride": false, - "addons": [] + "addons": [], + "id": "epz42vg" } ], "currentWidth": 4 @@ -25937,71 +25937,71 @@ "offset": 0, "components": [ { - "id": "el9nuoj", "key": "fourfive", - "html": "

4.5 Did the level of protection used in the DERA comply with the level specified in the ministry ecological risk assessment policy summary6 for the applicable land use or media?

", + "html": "

4.5 Did the level of protection used in the DERA comply with the level specified in the ministry ecological risk assessment policy summary6 for the applicable land use or media?


", "type": "content", "input": false, "label": "Text/Images", - "hidden": false, + "tableView": false, + "hideOnChildrenHidden": false, + "placeholder": "", "prefix": "", + "customClass": "", "suffix": "", - "unique": false, - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", "validate": { - "custom": "", - "unique": false, - "multiple": false, "required": false, + "custom": "", "customPrivate": false, - "strictDateValidation": false + "strictDateValidation": false, + "multiple": false, + "unique": false }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, "conditional": { - "eq": "", "show": null, - "when": null + "when": null, + "eq": "" }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, "showCharCount": false, "showWordCount": false, - "calculateValue": "", - "calculateServer": false, + "properties": {}, "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "allowCalculateOverride": false, - "addons": [] + "addons": [], + "id": "e6je384" } ], "currentWidth": 4 @@ -26873,71 +26873,71 @@ "offset": 0, "components": [ { - "id": "eiw3m7l", "key": "fourseven", - "html": "

4.7 If site-specific toxicity testing was conducted, did the test method(s) used meet the quality standards of Environment Canada (See footnote 7), ASTM (See footnote 8) or another recognized government agency?

", + "html": "

4.7 If site-specific toxicity testing was conducted, did the test method(s) used meet the quality standards of Environment Canada (See footnote 7), ASTM (See footnote 8) or another recognized government agency?


", "type": "content", "input": false, "label": "Text/Images", - "hidden": false, + "tableView": false, + "hideOnChildrenHidden": false, + "placeholder": "", "prefix": "", + "customClass": "", "suffix": "", - "unique": false, - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", "validate": { - "custom": "", - "unique": false, - "multiple": false, "required": false, + "custom": "", "customPrivate": false, - "strictDateValidation": false + "strictDateValidation": false, + "multiple": false, + "unique": false }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, "conditional": { - "eq": "", "show": null, - "when": null + "when": null, + "eq": "" }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, "showCharCount": false, "showWordCount": false, - "calculateValue": "", - "calculateServer": false, + "properties": {}, "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "allowCalculateOverride": false, - "addons": [] + "addons": [], + "id": "ecmqit8" } ], "currentWidth": 4 @@ -27341,71 +27341,71 @@ "offset": 0, "components": [ { - "id": "evcyuj5", "key": "foureight", - "html": "

4.8 If site-specific toxicity tests were conducted, did the tests include samples from the most contaminated area of the site?

", + "html": "

4.8 If site-specific toxicity tests were conducted, did the tests include samples from the most contaminated area of the site?


", "type": "content", "input": false, "label": "Text/Images", - "hidden": false, + "tableView": false, + "hideOnChildrenHidden": false, + "placeholder": "", "prefix": "", + "customClass": "", "suffix": "", - "unique": false, - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", "validate": { - "custom": "", - "unique": false, - "multiple": false, "required": false, + "custom": "", "customPrivate": false, - "strictDateValidation": false + "strictDateValidation": false, + "multiple": false, + "unique": false }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, "conditional": { - "eq": "", "show": null, - "when": null + "when": null, + "eq": "" }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, "showCharCount": false, "showWordCount": false, - "calculateValue": "", - "calculateServer": false, + "properties": {}, "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "allowCalculateOverride": false, - "addons": [] + "addons": [], + "id": "e5sbu5" } ], "currentWidth": 4 @@ -27809,71 +27809,71 @@ "offset": 0, "components": [ { - "id": "emdof2v", "key": "fournine", - "html": "

4.9 Were potential toxicological interactions (e.g., synergistic or antagonistic effects) between potential contaminants of concern discussed?

", + "html": "

4.9 Were potential toxicological interactions (e.g., synergistic or antagonistic effects) between potential contaminants of concern discussed?


", "type": "content", "input": false, "label": "Text/Images", - "hidden": false, + "tableView": false, + "hideOnChildrenHidden": false, + "placeholder": "", "prefix": "", + "customClass": "", "suffix": "", - "unique": false, - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", "validate": { - "custom": "", - "unique": false, - "multiple": false, "required": false, + "custom": "", "customPrivate": false, - "strictDateValidation": false + "strictDateValidation": false, + "multiple": false, + "unique": false }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, "conditional": { - "eq": "", "show": null, - "when": null + "when": null, + "eq": "" }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, "showCharCount": false, "showWordCount": false, - "calculateValue": "", - "calculateServer": false, + "properties": {}, "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "allowCalculateOverride": false, - "addons": [] + "addons": [], + "id": "enwywm8" } ], "currentWidth": 4 @@ -28827,86 +28827,86 @@ "offset": 0, "components": [ { - "id": "ehzftk", "key": "fiveone", - "html": "

5.1 Was sufficient detail provided for equations used to calculate numeric risk estimates so that it is clear how the estimates were derived?

", - "type": "content", - "input": false, - "label": "Text/Images", - "hidden": false, - "prefix": "", - "suffix": "", - "unique": false, - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, - "redrawOn": "", - "tabindex": "", - "validate": { - "custom": "", - "unique": false, - "multiple": false, - "required": false, - "customPrivate": false, - "strictDateValidation": false - }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, - "conditional": { - "eq": "", - "show": null, - "when": null - }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", - "showCharCount": false, - "showWordCount": false, - "calculateValue": "", - "calculateServer": false, - "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "allowCalculateOverride": false, - "addons": [] - } - ], - "currentWidth": 4 - }, - { - "pull": 0, - "push": 0, - "size": "md", - "width": 2, - "offset": 0, - "components": [ - { - "id": "e9tbwg", - "key": "simplecontenttwelveone", - "html": "

Response

", + "html": "

5.1 Was sufficient detail provided for equations used to calculate numeric risk estimates so that it is clear how the estimates were derived?


", + "type": "content", + "input": false, + "label": "Text/Images", + "tableView": false, + "hideOnChildrenHidden": false, + "placeholder": "", + "prefix": "", + "customClass": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, + "addons": [], + "id": "ex96h95" + } + ], + "currentWidth": 4 + }, + { + "pull": 0, + "push": 0, + "size": "md", + "width": 2, + "offset": 0, + "components": [ + { + "id": "e9tbwg", + "key": "simplecontenttwelveone", + "html": "

Response

", "type": "content", "input": false, "label": "Text/Images", @@ -29763,71 +29763,71 @@ "offset": 0, "components": [ { - "id": "etlnijl", "key": "fivethree", - "html": "

5.3 If hazard quotients were calculated, were they documented for each complete contaminant-receptor-pathway combination (as identified in the Problem Formulation)?

", + "html": "

5.3 If hazard quotients were calculated, were they documented for each complete contaminant-receptor-pathway combination (as identified in the Problem Formulation)?


", "type": "content", "input": false, "label": "Text/Images", - "hidden": false, + "tableView": false, + "hideOnChildrenHidden": false, + "placeholder": "", "prefix": "", + "customClass": "", "suffix": "", - "unique": false, - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", "validate": { - "custom": "", - "unique": false, - "multiple": false, "required": false, + "custom": "", "customPrivate": false, - "strictDateValidation": false + "strictDateValidation": false, + "multiple": false, + "unique": false }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, "conditional": { - "eq": "", "show": null, - "when": null + "when": null, + "eq": "" }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, "showCharCount": false, "showWordCount": false, - "calculateValue": "", - "calculateServer": false, + "properties": {}, "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "allowCalculateOverride": false, - "addons": [] + "addons": [], + "id": "e3a5cw" } ], "currentWidth": 4 @@ -30231,71 +30231,71 @@ "offset": 0, "components": [ { - "id": "e28w7eq", "key": "fivefour", - "html": "

5.4 If hazard quotients were not calculated, was rationale provided for using a different approach (e.g., site observations or plotting exposure with dose-response data)?

", + "html": "

5.4 If hazard quotients were not calculated, was rationale provided for using a different approach (e.g., site observations or plotting exposure with dose-response data)?


", "type": "content", "input": false, "label": "Text/Images", - "hidden": false, + "tableView": false, + "hideOnChildrenHidden": false, + "placeholder": "", "prefix": "", + "customClass": "", "suffix": "", - "unique": false, - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", "validate": { - "custom": "", - "unique": false, - "multiple": false, "required": false, + "custom": "", "customPrivate": false, - "strictDateValidation": false + "strictDateValidation": false, + "multiple": false, + "unique": false }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, "conditional": { - "eq": "", "show": null, - "when": null + "when": null, + "eq": "" }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, "showCharCount": false, "showWordCount": false, - "calculateValue": "", - "calculateServer": false, + "properties": {}, "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "allowCalculateOverride": false, - "addons": [] + "addons": [], + "id": "e0kx6jc" } ], "currentWidth": 4 @@ -30699,71 +30699,71 @@ "offset": 0, "components": [ { - "id": "ezfvuk7", "key": "fivefive", - "html": "

5.5 If an ecological hazard quotient exceeded unity, but the level of risk was considered acceptable, was a rationale provided?

", + "html": "

5.5 If an ecological hazard quotient exceeded unity, but the level of risk was considered acceptable, was a rationale provided?


", "type": "content", "input": false, "label": "Text/Images", - "hidden": false, + "tableView": false, + "hideOnChildrenHidden": false, + "placeholder": "", "prefix": "", + "customClass": "", "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, "unique": false, - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, - "multiple": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", "validate": { - "custom": "", - "unique": false, - "multiple": false, "required": false, + "custom": "", "customPrivate": false, - "strictDateValidation": false + "strictDateValidation": false, + "multiple": false, + "unique": false }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, "conditional": { - "eq": "", "show": null, - "when": null + "when": null, + "eq": "" }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, "showCharCount": false, "showWordCount": false, - "calculateValue": "", - "calculateServer": false, + "properties": {}, "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "allowCalculateOverride": false, - "addons": [] + "addons": [], + "id": "ep5ir6h" } ], "currentWidth": 4 @@ -31167,71 +31167,71 @@ "offset": 0, "components": [ { - "id": "egu0x", "key": "fivesix", - "html": "

5.6 Were risks for all operative contaminant-receptor-pathways detailed in the problem formulation assessed and categorized as acceptable or unacceptable?

", + "html": "

5.6 Were risks for all operative contaminant-receptor-pathways detailed in the problem formulation assessed and categorized as acceptable or unacceptable?


", "type": "content", "input": false, "label": "Text/Images", - "hidden": false, + "tableView": false, + "hideOnChildrenHidden": false, + "placeholder": "", "prefix": "", + "customClass": "", "suffix": "", - "unique": false, - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", "validate": { - "custom": "", - "unique": false, - "multiple": false, "required": false, + "custom": "", "customPrivate": false, - "strictDateValidation": false + "strictDateValidation": false, + "multiple": false, + "unique": false }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, "conditional": { - "eq": "", "show": null, - "when": null + "when": null, + "eq": "" }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, "showCharCount": false, "showWordCount": false, - "calculateValue": "", - "calculateServer": false, + "properties": {}, "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "allowCalculateOverride": false, - "addons": [] + "addons": [], + "id": "eay585s" } ], "currentWidth": 4 @@ -32647,71 +32647,71 @@ "offset": 0, "components": [ { - "id": "eivr0mg", "key": "sixone", - "html": "

6.1 Were uncertainties (e.g., measurement uncertainty, random variations, conceptual uncertainty and ignorance) explicitly evaluated and stated, including their implications on risk conclusions?

", + "html": "

6.1 Were uncertainties (e.g., measurement uncertainty, random variations, conceptual uncertainty and ignorance) explicitly evaluated and stated, including their implications on risk conclusions?


", "type": "content", "input": false, "label": "Text/Images", - "hidden": false, + "tableView": false, + "hideOnChildrenHidden": false, + "placeholder": "", "prefix": "", + "customClass": "", "suffix": "", - "unique": false, - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", "validate": { - "custom": "", - "unique": false, - "multiple": false, "required": false, + "custom": "", "customPrivate": false, - "strictDateValidation": false + "strictDateValidation": false, + "multiple": false, + "unique": false }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, "conditional": { - "eq": "", "show": null, - "when": null + "when": null, + "eq": "" }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, "showCharCount": false, "showWordCount": false, - "calculateValue": "", - "calculateServer": false, + "properties": {}, "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "allowCalculateOverride": false, - "addons": [] + "addons": [], + "id": "eiowd22" } ], "currentWidth": 4 @@ -33115,71 +33115,71 @@ "offset": 0, "components": [ { - "id": "efvh06", "key": "sixtwo", - "html": "

6.2 If a weight-of-evidence approach was used, was preference given to assigning quantifiable, a priori weightings to weighted aspects of the DERA?

", + "html": "

6.2 If a weight-of-evidence approach was used, was preference given to assigning quantifiable, a priori weightings to weighted aspects of the DERA?


", "type": "content", "input": false, "label": "Text/Images", - "hidden": false, + "tableView": false, + "hideOnChildrenHidden": false, + "placeholder": "", "prefix": "", + "customClass": "", "suffix": "", - "unique": false, - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", "validate": { - "custom": "", - "unique": false, - "multiple": false, "required": false, + "custom": "", "customPrivate": false, - "strictDateValidation": false + "strictDateValidation": false, + "multiple": false, + "unique": false }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, "conditional": { - "eq": "", "show": null, - "when": null + "when": null, + "eq": "" }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, "showCharCount": false, "showWordCount": false, - "calculateValue": "", - "calculateServer": false, + "properties": {}, "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "allowCalculateOverride": false, - "addons": [] + "addons": [], + "id": "e700mrh" } ], "currentWidth": 4 @@ -33583,71 +33583,71 @@ "offset": 0, "components": [ { - "id": "eeh8c76", "key": "sixthree", - "html": "

6.3 If a weight-of-evidence approach was used, were the weight-of-evidence conclusions determined in a manner consistent with the approach laid out in the problem formulation?

", + "html": "

6.3 If a weight-of-evidence approach was used, were the weight-of-evidence conclusions determined in a manner consistent with the approach laid out in the problem formulation?


", "type": "content", "input": false, "label": "Text/Images", - "hidden": false, + "tableView": false, + "hideOnChildrenHidden": false, + "placeholder": "", "prefix": "", + "customClass": "", "suffix": "", - "unique": false, - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", "validate": { - "custom": "", - "unique": false, - "multiple": false, "required": false, + "custom": "", "customPrivate": false, - "strictDateValidation": false + "strictDateValidation": false, + "multiple": false, + "unique": false }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, "conditional": { - "eq": "", "show": null, - "when": null + "when": null, + "eq": "" }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, "showCharCount": false, "showWordCount": false, - "calculateValue": "", - "calculateServer": false, + "properties": {}, "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "allowCalculateOverride": false, - "addons": [] + "addons": [], + "id": "ekridp" } ], "currentWidth": 4 @@ -36017,7 +36017,7 @@ } ], "collapsible": false, - "id": "eof7940000000000000000000000000000000000000000000000000000000000000000000000000000", + "id": "eof7940000000000000000000000000000000000000000000000000000000000000000000000000000000000", "placeholder": "", "prefix": "", "customClass": "", From be1dbd209afb1d3c6068f9a9df7d1f749010a778 Mon Sep 17 00:00:00 2001 From: Adam Coard Date: Mon, 16 Oct 2023 09:06:34 -0700 Subject: [PATCH 160/194] Added new Documents data and page --- .../src/api/dummy-data.tsx | 35 +- .../site-search-frontend/src/api/sites.ts | 19 + .../src/features/site-details/documents.tsx | 81 + .../src/scripts/dummy-data.sites.json | 114737 ++++++++------- 4 files changed, 65684 insertions(+), 49188 deletions(-) diff --git a/frontend/site-search-frontend/src/api/dummy-data.tsx b/frontend/site-search-frontend/src/api/dummy-data.tsx index e7ec0d74..cbe37aff 100644 --- a/frontend/site-search-frontend/src/api/dummy-data.tsx +++ b/frontend/site-search-frontend/src/api/dummy-data.tsx @@ -1,5 +1,5 @@ import { faker } from '@faker-js/faker'; -import { SiteParticipant, type Notation, type Site, AssociatedSite, SuspectLandUse, SiteDisclosure, ActivityLogItem, SiteDisclosurePurpose, ParcelDescription } from './sites' +import { SiteParticipant, type Notation, type Site, AssociatedSite, SuspectLandUse, SiteDisclosure, ActivityLogItem, SiteDisclosurePurpose, ParcelDescription, SiteDocument, DocumentParticipant } from './sites' // import formatDateToString from '@/helpers/formatDateToString'; import formatDateToString from '../helpers/formatDateToString.ts' @@ -33,6 +33,7 @@ export function createRandomSite(): Site { notations: createAndPopulateArray({ min: 2, max: 5, generator: randomNotation }), participants: createAndPopulateArray({ min: 2, max: 5, generator: randomSiteParticipant }), + documents: createAndPopulateArray({min: 1, max: 5, generator: randomDocument}), suspectLandUses: createAndPopulateArray({ min: 2, max: 5, generator: randomSuspectLandUse }), parcelDescriptions: createAndPopulateArray({ min: 2, max: 5, generator: randomParcelDescription }), siteDisclosures: createAndPopulateArray({ min: 1, max: 2, generator: randomSiteDisclosure }), @@ -40,7 +41,6 @@ export function createRandomSite(): Site { // Associated Sites is generated after site generation with `createSiteAssociations()`, as we need siteIDs already gen'd. associatedSites: [] - } } @@ -198,4 +198,33 @@ function randomParcelDescription(): ParcelDescription { crownLandFileNumber: faker.number.int({ min: 15192, max: 20999 }).toString(), landDescription: `LOT ${lot} OF LOT ${secondLot} BLOCK ${block} DISTRICT LOT ${district} PLAN ${plan}` } -} \ No newline at end of file +} + +function randomDocument(): SiteDocument { + + + return { + uuid: faker.string.uuid(), + siteRegistry: faker.datatype.boolean(), + documentDate: formatDateToString(faker.date.past({ years: 10 })), + receivedDate: formatDateToString(faker.date.past({ years: 10 })), + uploadedDate: formatDateToString(faker.date.past({ years: 10 })), + title: faker.helpers.arrayElement([ + 'Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)', + 'Summary of Site Conditions, 1537 W 41st Avenue, Vancouver', + 'Preliminary Site Investigation, Detailed Site Investigation and Remedial Plan for the Management Area adjacent to the Shell Site at 1503 West 41st Ave', + ]), + participants: createAndPopulateArray({min: 1, max: 3, generator: randomDocumentParticipant}) + } +} + +function randomDocumentParticipant(): DocumentParticipant { + + return { + uuid: faker.string.uuid(), + name: faker.helpers.arrayElement(['SHELL CANADA PRODUCTS', 'SNC-LAVALIN ENVIRONMENT INC', 'IPSUM', 'AMET, DOLOR SIT']), + siteRegistry: faker.datatype.boolean(), + role: 'AUTHOR' + } +} + diff --git a/frontend/site-search-frontend/src/api/sites.ts b/frontend/site-search-frontend/src/api/sites.ts index 721472dc..7f481d14 100644 --- a/frontend/site-search-frontend/src/api/sites.ts +++ b/frontend/site-search-frontend/src/api/sites.ts @@ -30,6 +30,8 @@ export class Site { siteDisclosures: SiteDisclosure[]; activityLog: ActivityLogItem[]; + documents: SiteDocument[]; + } @@ -115,4 +117,21 @@ export class ActivityLogItem implements canBeOnSiteRegistry, hasUUID { activity: string; user: string; timestamp: string; +} + +export class SiteDocument implements canBeOnSiteRegistry, hasUUID { + uuid: string; + siteRegistry: boolean; + documentDate: string; + receivedDate: string; + uploadedDate: string; + title: string; + participants: DocumentParticipant[]; +} + +export class DocumentParticipant implements canBeOnSiteRegistry, hasUUID { + uuid: string; + siteRegistry: boolean; + name: string; + role: string; } \ No newline at end of file diff --git a/frontend/site-search-frontend/src/features/site-details/documents.tsx b/frontend/site-search-frontend/src/features/site-details/documents.tsx index 4ae88554..b016ef87 100644 --- a/frontend/site-search-frontend/src/features/site-details/documents.tsx +++ b/frontend/site-search-frontend/src/features/site-details/documents.tsx @@ -1,9 +1,90 @@ +import { Site, SiteDocument } from "@/api/sites"; +import { RootState } from "@/store"; +import { useSelector, useDispatch } from "react-redux"; +import { useParams } from "react-router-dom"; +import SubSearch from "./sub-search/SubSearch"; +import styles from './css/siteDetails.module.css' +import { Button } from "react-bootstrap"; +import SiteRegistryIcon from "@/components/SiteRegistryIcon"; +import siteDetailsStyles from '@/pages/site-details.module.css' +import SiteGridItem from "./SiteGridItem"; +import SiteDetailsTable from "./table/SiteDetailsTable"; export default function Documents() { + const { siteID } = useParams(); + const siteIDNum = parseInt(siteID); + const site: Site = useSelector((state: RootState) => state.site.value.find(searchedSite => searchedSite.siteID === siteIDNum)); + const editMode = useSelector((state: RootState) => state.edit.editMode) + const dispatch = useDispatch(); + + function newDocument(){ + console.log('todo'); + } + return (

Documents go here

+ + + {editMode && } + + {site.documents.map((siteDocumentData, index) => { + // return + // return + return + })}
) +} + +interface DocumentItemProps { + index: number; + document: SiteDocument; +} + +function DocumentItem({document, index}: DocumentItemProps) { + + const editMode = useSelector((state: RootState) => state.edit.editMode) + const isMinistry = useSelector((state: RootState) => state.user.isMinistry); + + return ( + <> + +
+
+
+
+

Notation {index + 1}

+ {isMinistry &&

Uploaded: {document.uploadedDate}

} +
+ {editMode &&
+ + + +
} +
+ +
+ + + + +
+ + + +
+ + + + ) + } \ No newline at end of file diff --git a/frontend/site-search-frontend/src/scripts/dummy-data.sites.json b/frontend/site-search-frontend/src/scripts/dummy-data.sites.json index 3bc68d88..9579074a 100644 --- a/frontend/site-search-frontend/src/scripts/dummy-data.sites.json +++ b/frontend/site-search-frontend/src/scripts/dummy-data.sites.json @@ -1,30 +1,30 @@ [ { - "uuid": "85f167c2-d06f-4fcc-bf33-08463add054b", - "siteID": 16202, - "address": "9250 Cristobal Courts", - "latitude": 57.3726, - "longitude": -122.7921, - "lastUpdated": "2019-11-02", - "city": "Fort Lyda", - "region": " North Coast", - "victoriaFile": "26250-20/12638", + "uuid": "117ea594-9800-492c-98f1-d6c560f520a5", + "siteID": 20010, + "address": "275 Rogahn Landing", + "latitude": 52.5573, + "longitude": -127.592, + "lastUpdated": "2015-11-04", + "city": "Fort Colby", + "region": "Thompson-Okanagan", + "victoriaFile": "26250-20/9401", "regionalFile": "N/A", "parcelIDs": [ - 1347964, - 258927, - 8028220, - 1331511, - 7711839 + 2576211, + 1716992, + 1984778, + 254363, + 9710486 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "c6c0d99c-1d32-412e-8141-499209622ca6", - "createdAt": "2016-10-18", - "completed": "2019-07-17", - "initiated": "2020-02-01", - "ministryContact": "SCHMIDT IDELLA", + "uuid": "adc8e49c-2dfb-473d-8daa-3fa798a1a824", + "createdAt": "2014-10-16", + "completed": "2016-04-16", + "initiated": "2020-07-07", + "ministryContact": "LARSON PAULA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -33,78 +33,44 @@ ], "notationParticipants": [ { - "uuid": "ec418237-8435-4fa4-a88f-165d24a4efbb", + "uuid": "d3d7a0ad-3e3b-440e-957e-f7cf220c587a", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "uuid": "0b45f2d6-7ddb-4584-94ea-6081ac3b5abe", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", "siteRegistry": false }, { - "uuid": "ebba8f3b-a282-46fd-8f4d-2abed2679f5e", - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "9b4fcb2f-57d7-4e2d-9c28-533c51e9b4dc", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "dd50d95a-c8d7-41c9-a8d9-1ef8a96d8cd0", + "uuid": "e8687253-6b32-4c4f-b524-e03a02c3750c", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true - } - ], - "siteRegistry": false - }, - { - "uuid": "88ce108f-3c93-4feb-98a5-8d15e4eb1ba1", - "createdAt": "2016-09-17", - "completed": "2021-04-18", - "initiated": "2016-08-31", - "ministryContact": "BREKKE MERTIE", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ + }, { - "uuid": "7612bb12-f91c-4809-9deb-58683bc4441f", + "uuid": "33acd410-bd31-4370-bda7-6a814c0fbb91", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "uuid": "17d83ae1-330b-4fda-acb5-f7b8693bf91b", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "2d97c4ca-d575-4819-822b-1e17b549a538", + "uuid": "96f4ee43-b8fa-4c62-a38b-9b8bcf1b8d92", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "uuid": "959652d3-c959-46e2-9d76-69116f74fbd8", - "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "2463ce3a-7ae1-4215-a105-077393c4cd6a", - "createdAt": "2014-11-28", - "completed": "2023-02-02", - "initiated": "2022-03-18", - "ministryContact": "HETTINGER JOSUE", + "uuid": "30dda6f0-c69b-46f1-86c8-b7d9894ed612", + "createdAt": "2022-01-23", + "completed": "2020-08-30", + "initiated": "2021-06-30", + "ministryContact": "BOGAN DREW", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -113,33 +79,27 @@ ], "notationParticipants": [ { - "uuid": "b9c442bb-2dfb-4357-8e3b-673ce4ed94cf", + "uuid": "df97a3a8-3002-4ad1-bc9f-022071fe7ac2", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "6dab34b9-8e9d-4e07-97b1-80cc4563e464", - "name": "SHELL CANADA PRODUCTS", + "uuid": "d8e50668-711a-4796-956f-1c5f71a0af7c", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "uuid": "987de94c-ea5b-4c62-a5f6-f92292ca3fee", - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false } ], "participants": [ { - "uuid": "1b02dd62-bc16-40a1-876c-472ac5401bf8", - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2023-02-25", - "startDate": "2022-08-08", + "uuid": "1f18b67e-47f5-4002-94cd-077e5236872d", + "name": "IPSUM", + "endDate": "2017-04-20", + "startDate": "2022-12-15", "notes": "", "roles": [ "EMPLOYEE" @@ -147,291 +107,232 @@ "siteRegistry": true }, { - "uuid": "d85ad8f8-6462-4115-aeb4-29cc917b07e9", - "name": "SHELL CANADA PRODUCTS", - "endDate": "2019-04-12", - "startDate": "2020-05-24", + "uuid": "a4a17ddf-de6b-4d8e-a88f-512dc37208ae", + "name": "IPSUM", + "endDate": "2021-03-11", + "startDate": "2021-08-06", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": false - }, - { - "uuid": "09cb202f-0953-40ed-9b23-68c2740b1844", - "name": "SHELL CANADA PRODUCTS", - "endDate": "2017-03-13", - "startDate": "2016-10-08", - "notes": "", - "roles": [ - "EMPLOYEE" - ], "siteRegistry": true }, { - "uuid": "340d4551-7374-4498-afa5-5134e3ad0b4a", - "name": "SHELL CANADA PRODUCTS", - "endDate": "2015-12-10", - "startDate": "2016-03-03", + "uuid": "3a48bed6-c53b-4be5-80e2-945a457f89e8", + "name": "AMET, DOLOR SIT", + "endDate": "2021-06-17", + "startDate": "2015-04-03", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], - "siteRegistry": true - }, + "siteRegistry": false + } + ], + "documents": [ { - "uuid": "69a435fa-c7fc-45ec-9c08-aae9f8a776b3", - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2014-12-01", - "startDate": "2022-01-05", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": true + "uuid": "06c31ec6-a172-4b75-8b61-1e1e4f53f5a5", + "siteRegistry": true, + "documentDate": "2020-11-09", + "receivedDate": "2018-10-13", + "uploadedDate": "2016-02-08", + "title": "Summary of Site Conditions, 1537 W 41st Avenue, Vancouver", + "participants": [ + { + "uuid": "ad8c6c8c-6d56-40b1-ab44-fd9a0afb9f40", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "22fb5b18-50cd-4998-a5c1-81264a205014", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": true, + "role": "AUTHOR" + } + ] } ], "suspectLandUses": [ { - "uuid": "a5fac4da-2176-441a-af5d-2d04418f0455", + "uuid": "d041ba1f-3b51-44f8-b9ee-355af4a5d0fd", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-04-14 (described on Site Profile dated 2021-04-14)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "notes": "INSERTED FOR SITE PROFILE DATED 2023-03-12 (described on Site Profile dated 2023-03-12)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "uuid": "29aae894-3d98-4f7d-9c80-98dc2dcff483", - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-11-25 (described on Site Profile dated 2018-11-25)", + "uuid": "dbfd1e28-b6f4-4907-8bd1-1fde6a0c63cc", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2015-01-01 (described on Site Profile dated 2015-01-01)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "uuid": "75698560-8f13-49ce-a816-66e84810210f", + "uuid": "9f56eb4d-4d6a-4193-9b4c-f12874d53dc7", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-12-07 (described on Site Profile dated 2016-12-07)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "notes": "INSERTED FOR SITE PROFILE DATED 2023-09-11 (described on Site Profile dated 2023-09-11)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "uuid": "95b1cf24-8a9b-448d-bc50-d496e73c21e5", - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-03-16 (described on Site Profile dated 2022-03-16)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "uuid": "b0152105-583c-449d-bc58-f28a6b81ba26", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2019-06-02 (described on Site Profile dated 2019-06-02)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], "parcelDescriptions": [ { - "uuid": "0a926354-4e47-4369-8a3d-5f2551623a50", - "siteRegistry": false, - "dateNoted": "2016-08-16", - "parcelID": "19292", - "crownLandUsePIN": "17539", - "crownLandFileNumber": "15638", - "landDescription": "LOT 1 OF LOT 5 BLOCK 5 DISTRICT LOT 1 PLAN 3245" + "uuid": "b98588d1-7183-461a-bfe8-a6beb482056b", + "siteRegistry": true, + "dateNoted": "2018-06-13", + "parcelID": "15614", + "crownLandUsePIN": "15245", + "crownLandFileNumber": "15953", + "landDescription": "LOT 4 OF LOT 2 BLOCK 4 DISTRICT LOT 3 PLAN 5380" }, { - "uuid": "676ec601-a004-446d-9208-8b6bc64cb9c0", - "siteRegistry": false, - "dateNoted": "2014-03-28", - "parcelID": "20600", - "crownLandUsePIN": "18697", - "crownLandFileNumber": "16588", - "landDescription": "LOT 1 OF LOT 2 BLOCK 3 DISTRICT LOT 3 PLAN 3693" + "uuid": "6ff5ee1f-0301-42c6-9db3-cc508074a9da", + "siteRegistry": true, + "dateNoted": "2017-08-09", + "parcelID": "17401", + "crownLandUsePIN": "15347", + "crownLandFileNumber": "16694", + "landDescription": "LOT 4 OF LOT 1 BLOCK 1 DISTRICT LOT 3 PLAN 7632" }, { - "uuid": "fde3421d-764a-4c8b-9b06-0734d06afae5", + "uuid": "0034d74e-1094-42bc-b3b5-a8cb6b2314b1", "siteRegistry": false, - "dateNoted": "2015-11-27", - "parcelID": "17229", - "crownLandUsePIN": "17321", - "crownLandFileNumber": "16637", - "landDescription": "LOT 4 OF LOT 5 BLOCK 3 DISTRICT LOT 2 PLAN 6125" + "dateNoted": "2022-03-24", + "parcelID": "16000", + "crownLandUsePIN": "17582", + "crownLandFileNumber": "17180", + "landDescription": "LOT 1 OF LOT 3 BLOCK 4 DISTRICT LOT 1 PLAN 7435" }, { - "uuid": "301fd6b2-5b3c-4299-a9bb-f71faf776422", + "uuid": "5af124d1-5927-4654-ab6b-257791c62675", "siteRegistry": true, - "dateNoted": "2020-07-14", - "parcelID": "15354", - "crownLandUsePIN": "16248", - "crownLandFileNumber": "15505", - "landDescription": "LOT 4 OF LOT 2 BLOCK 1 DISTRICT LOT 1 PLAN 8416" + "dateNoted": "2016-02-20", + "parcelID": "18742", + "crownLandUsePIN": "18180", + "crownLandFileNumber": "15338", + "landDescription": "LOT 1 OF LOT 1 BLOCK 5 DISTRICT LOT 3 PLAN 8795" } ], "siteDisclosures": [ { - "uuid": "b901a6cf-3b64-4d28-9067-8f0053ca5d3e", + "uuid": "6da09904-f1ec-4e45-9fc3-c41b1ca5f745", "siteRegistry": false, - "dateReceived": "2021-07-08", - "dateCompleted": "2018-05-16", - "dateEntered": "2014-02-15", - "dateRegistrar": "2019-12-18", - "dateLocalAuthorityReceived": "2018-08-30", - "summary": "Cupiditate nisi deleniti amet dolores vitae delectus asperiores aspernatur.\nMinus excepturi ab commodi eveniet voluptatibus quaerat quos blanditiis.\nVitae et distinctio molestiae.", - "informationUsed": "Culpa totam vel quidem consectetur hic.\nOdio ducimus tempora dolorum ut voluptate neque.\nFuga autem quasi ab cum aut saepe ad quis.\nSequi sapiente excepturi beatae delectus sed sint.\nVoluptates nemo cupiditate repellat nam dolor quo pariatur reprehenderit eaque.", - "pastOrPresentOrders": "Iste repellat soluta eos vero fugiat at minima.", + "dateReceived": "2015-10-11", + "dateCompleted": "2022-05-12", + "dateEntered": "2020-12-21", + "dateRegistrar": "2021-06-12", + "dateLocalAuthorityReceived": "2018-11-06", + "summary": "Voluptas quasi recusandae velit numquam quasi veritatis praesentium.", + "informationUsed": "Sed recusandae dolorem minima ducimus ut delectus voluptatum velit.\nReiciendis quos aspernatur.\nSuscipit laudantium voluptate.", + "pastOrPresentOrders": "Consequuntur vero dolorem architecto optio sunt fugiat.", "commercialAndIndustrialPurposes": [ { - "uuid": "8a5aa77f-8022-418f-9376-98d99eab180a", - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false - }, - { - "uuid": "f0b9edf5-6dca-40fa-be6e-4b518077e2fb", + "uuid": "ab663cca-989f-426a-a671-2a4a673306f0", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { - "uuid": "5c2d8500-1367-4e65-bf8d-07d4a6e8470a", + "uuid": "20e03c4f-0c43-4281-b2b9-4dc385471a56", "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false - } - ] - }, - { - "uuid": "b2de66ea-ec45-4176-882c-fb16b41e7bfc", - "siteRegistry": false, - "dateReceived": "2022-12-26", - "dateCompleted": "2016-05-11", - "dateEntered": "2022-04-17", - "dateRegistrar": "2017-06-03", - "dateLocalAuthorityReceived": "2014-06-22", - "summary": "Voluptas totam repellat veritatis accusantium harum.\nQuia aliquid perspiciatis.", - "informationUsed": "Quia consequatur modi.\nNulla fuga molestiae minima autem at dolorem.\nNam quam impedit sapiente incidunt eveniet eligendi nisi.\nNostrum quaerat sapiente necessitatibus laudantium sunt occaecati vero.\nUnde perspiciatis ratione similique repellendus doloribus ut possimus.", - "pastOrPresentOrders": "Amet officiis nam at.\nCommodi temporibus soluta animi at possimus excepturi.\nReiciendis natus tempora ea placeat est assumenda.", - "commercialAndIndustrialPurposes": [ - { - "uuid": "2f432800-742e-4ce7-9ca9-3d52dc2909ae", - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true - }, - { - "uuid": "7bb87b04-637b-426f-9106-8d11a245cb65", - "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, { - "uuid": "00677392-153f-4700-b632-81ba9500f3a0", + "uuid": "ccb3d0e2-205e-44a6-967e-69b86b755f75", "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true } ] } ], "activityLog": [ { - "uuid": "1de9b8b2-e843-4ad4-ab2e-f02b22c7fcc9", - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "RAYNOR TRE", - "timestamp": "2015-04-06" - }, - { - "uuid": "ec9d1790-5614-4f8d-8af5-f7455c570353", - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "FRIESEN JOVAN", - "timestamp": "2018-07-29" - }, - { - "uuid": "1317194a-c278-461b-8995-fe79a1d15da7", + "uuid": "ba3f3e90-b520-4ac2-8f3a-7ae50213052f", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "STEHR DEJON", - "timestamp": "2014-02-23" + "user": "BAYER DALLIN", + "timestamp": "2017-07-02" }, { - "uuid": "858926ed-c14b-49f3-892d-987afec4f0fa", + "uuid": "389b18f5-f948-460c-b996-26e4945836c1", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "BOGAN ALIYA", - "timestamp": "2018-03-17" + "user": "HUELS HUNTER", + "timestamp": "2014-10-15" }, { - "uuid": "88cbd092-6268-4718-ba7f-66b1d9a984d9", - "siteRegistry": true, + "uuid": "c1a81318-33fd-4406-ba94-945ae57aa87d", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "WILDERMAN AMPARO", - "timestamp": "2021-02-28" + "user": "GUTKOWSKI TAUREAN", + "timestamp": "2014-09-19" }, { - "uuid": "b765f636-7179-4005-8a8e-20017d6320e1", + "uuid": "9bfda6a3-4834-47f5-b960-7348579d94b1", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "BAHRINGER ELI", - "timestamp": "2021-10-19" - }, - { - "uuid": "3eeb8e9f-e73d-44d5-82ae-3187a839dd08", - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "PFANNERSTILL FREDY", - "timestamp": "2017-02-12" + "user": "SCHINNER ADOLPH", + "timestamp": "2021-12-09" }, { - "uuid": "0700e613-2a21-4fab-b840-a859bd70fe29", + "uuid": "16c376b1-e19f-4561-8437-12d6747a24ba", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "TORPHY JARVIS", - "timestamp": "2019-08-24" + "user": "JOHNSON KRISTOFER", + "timestamp": "2021-12-18" } ], "associatedSites": [ { - "uuid": "2aba5ca3-5c21-4fa7-8b01-416791b0ddf8", - "dateNoted": "2018-06-10", - "notes": "", - "parcelID": "15833", - "siteID": "20193", - "siteRegistry": true - }, - { - "uuid": "e46e61a5-10a9-4009-822a-5afe14c73224", - "dateNoted": "2018-01-12", + "uuid": "b200b1a1-c95b-4c4f-b435-1321d6f5c0ba", + "dateNoted": "2022-11-17", "notes": "", - "parcelID": "16989", - "siteID": "16254", - "siteRegistry": true + "parcelID": "18488", + "siteID": "17114", + "siteRegistry": false }, { - "uuid": "e209dbfa-bc54-4ca1-b3d5-ff10be826559", - "dateNoted": "2022-11-08", + "uuid": "0d0f151b-6201-43f6-bf7a-65306a9f05fc", + "dateNoted": "2019-06-06", "notes": "", - "parcelID": "15306", - "siteID": "19196", + "parcelID": "17794", + "siteID": "17285", "siteRegistry": false } ] }, { - "uuid": "5cf1c791-a00d-42a6-bc65-d3887fe5dffb", - "siteID": 20378, - "address": "40522 Marcelino Valleys", - "latitude": 55.4533, - "longitude": -118.8382, - "lastUpdated": "2015-09-10", - "city": "West Tadfort", - "region": "Kootenay", - "victoriaFile": "26250-20/10180", + "uuid": "cef9d97e-c9a1-4b12-bf6a-fb28be15ef77", + "siteID": 20762, + "address": "8862 Rhea Divide", + "latitude": 49.9834, + "longitude": -131.7523, + "lastUpdated": "2016-07-03", + "city": "San Leandro", + "region": "Thompson-Okanagan", + "victoriaFile": "26250-20/8118", "regionalFile": "N/A", "parcelIDs": [ - 9533731, - 1852199, - 4772569, - 7335371, - 6078686 + 7962390, + 1609216, + 150650, + 4776196, + 8873283 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "a3266e94-ce63-405f-811a-ced67bd0bdd1", - "createdAt": "2020-04-28", - "completed": "2015-01-11", - "initiated": "2020-05-30", - "ministryContact": "LEHNER MYRIAM", + "uuid": "a4767084-06c9-4614-9594-44231cb22145", + "createdAt": "2014-10-22", + "completed": "2021-01-08", + "initiated": "2022-02-06", + "ministryContact": "KUHN KIMBERLY", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -440,38 +341,84 @@ ], "notationParticipants": [ { - "uuid": "3765f7b7-1141-464d-89a4-96b3aa467333", + "uuid": "a32c9160-1fd6-4120-8b83-2d94fcee3980", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "b2d402b8-0792-43ed-86bb-fc858e2ff253", + "uuid": "40a871cc-1abe-4353-8fa1-9fa76ec7ce86", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true + }, + { + "uuid": "03968d71-e6c4-4135-b390-31e21a7409fa", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true }, { - "uuid": "e60012ac-2e64-4865-adea-24bb848081e0", + "uuid": "148d7869-dcfd-44c9-b1da-cff57dd1c326", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "370ee5b9-e4be-4b8f-ad20-e27355e61e6a", + "uuid": "4550f8e5-5f8f-4d0d-8234-928afb5dbfee", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "uuid": "230aabd9-7916-417c-81e0-9b307f87144f", + "createdAt": "2015-08-27", + "completed": "2015-12-17", + "initiated": "2023-07-12", + "ministryContact": "WAELCHI IVORY", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "uuid": "73a22513-5e24-42df-a406-1c35d1a9af30", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", "siteRegistry": true + }, + { + "uuid": "2d996ae6-08a1-45d6-9b58-b737d5d8231f", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "3e1d9084-2a80-40fd-836c-131dcfed427a", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "uuid": "8f552889-d600-4fad-a730-e9daab42eee6", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false } ], "siteRegistry": true }, { - "uuid": "60c5cda7-97c1-4c3e-9ee3-029c337a48cb", - "createdAt": "2023-01-25", - "completed": "2014-03-22", - "initiated": "2018-08-02", - "ministryContact": "GIBSON SABRYNA", + "uuid": "ad19c09e-45bc-4aff-b160-37b07514b711", + "createdAt": "2022-09-26", + "completed": "2018-12-19", + "initiated": "2018-04-30", + "ministryContact": "LITTLE BRUCE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -480,45 +427,119 @@ ], "notationParticipants": [ { - "uuid": "76efa083-17fd-4f1c-9c44-1c613f0d756d", + "uuid": "c467a3de-2f1b-4bbd-ade5-9aae0ddab48a", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "uuid": "d2ecbae8-4031-4a1e-b15c-7c3a5dddb91a", "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "uuid": "33f40590-078a-42ad-8832-3facb10c586d", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "uuid": "4c602c78-e93c-4e99-ad8d-f2d4e2e76660", + "createdAt": "2013-10-23", + "completed": "2022-12-09", + "initiated": "2022-05-02", + "ministryContact": "BOYLE ILA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "uuid": "916ad2b4-be9a-45a4-8451-f7bac973968f", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "uuid": "bfe0a9ad-ec1d-4622-8581-9ae0b6a8ce39", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "cae0edc2-5819-4df7-b37b-64bf4868fbc2", - "name": "SHELL CANADA PRODUCTS", + "uuid": "ef7b25e5-5ba4-4e3f-b24f-6c918722198d", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "b0427f0c-af4a-46a1-b7f5-535698b590e8", + "uuid": "a2a19cbe-8b7a-4a29-b7df-049113baa3ca", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "0cb7c763-81db-4099-9f72-bbfc6f0f5dcb", + "uuid": "67dec1bc-6668-4cbe-bac5-b8a269d97368", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "uuid": "99468872-5b08-4ca3-b876-3cf93c134d9c", + "createdAt": "2023-02-22", + "completed": "2022-01-10", + "initiated": "2014-05-05", + "ministryContact": "HERMISTON-BOGAN TIA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "uuid": "b0e79ad7-3858-43c7-96fe-51af5a5dcb2f", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "uuid": "099d74a5-67b1-489d-b49d-c698bc1e44c7", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true }, { - "uuid": "a4a6390a-f3c3-4646-bc29-e21fdd6d6708", + "uuid": "1cacf265-63e8-4616-b931-38d9dbb70c3b", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "uuid": "6cf472df-197b-4541-9ec9-6b91de04f580", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true } ], "participants": [ { - "uuid": "b900035d-46c9-460b-b14c-dc4c0be1955b", + "uuid": "b8da6864-57df-4eaf-9be9-60bb75a95f8f", "name": "IPSUM", - "endDate": "2020-07-10", - "startDate": "2017-11-09", + "endDate": "2014-02-17", + "startDate": "2017-04-09", "notes": "", "roles": [ "EMPLOYEE" @@ -526,268 +547,223 @@ "siteRegistry": false }, { - "uuid": "0d31715e-e8a2-44d0-8ed3-ac727fa1b6cc", + "uuid": "0a9506b3-c78d-4b70-a55d-f01f1f9b7690", "name": "AMET, DOLOR SIT", - "endDate": "2022-03-22", - "startDate": "2023-04-28", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": false - }, - { - "uuid": "42c45c37-1e50-4c62-8857-6a684bc9e45b", - "name": "SHELL CANADA PRODUCTS", - "endDate": "2015-05-30", - "startDate": "2022-09-12", + "endDate": "2021-12-20", + "startDate": "2014-08-07", "notes": "", "roles": [ "ORGANIZATION" ], "siteRegistry": true - }, + } + ], + "documents": [ { - "uuid": "155317a1-fa3c-4fed-be6d-9d277876959e", - "name": "SHELL CANADA PRODUCTS", - "endDate": "2023-03-31", - "startDate": "2016-06-26", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": false + "uuid": "741380b2-a41e-4947-9789-cf578ba1febd", + "siteRegistry": false, + "documentDate": "2020-04-15", + "receivedDate": "2022-12-18", + "uploadedDate": "2022-04-11", + "title": "Preliminary Site Investigation, Detailed Site Investigation and Remedial Plan for the Management Area adjacent to the Shell Site at 1503 West 41st Ave", + "participants": [ + { + "uuid": "62eeb5ab-f3d7-4e5f-9c2e-f8f837d4ea84", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "3714c3f8-a805-48c4-85ec-037f3cda9654", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": true, + "role": "AUTHOR" + } + ] } ], "suspectLandUses": [ { - "uuid": "0d20ffa9-4e7c-42d7-adf2-c12818a787f2", - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-07-08 (described on Site Profile dated 2016-07-08)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "uuid": "0c80188c-4985-47ff-8853-3d82e0951b8a", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2016-03-09 (described on Site Profile dated 2016-03-09)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "uuid": "8d67a607-700b-4429-a694-bf4117b9484c", + "uuid": "82114f68-1b62-4f30-8777-888fbb2d5d66", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-10-14 (described on Site Profile dated 2015-10-14)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "notes": "INSERTED FOR SITE PROFILE DATED 2021-07-17 (described on Site Profile dated 2021-07-17)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "uuid": "61292435-f485-4381-9561-f23861fd726e", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2020-09-13 (described on Site Profile dated 2020-09-13)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "uuid": "fdb918f5-22f7-40be-ab5b-3697f135315b", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2014-11-19 (described on Site Profile dated 2014-11-19)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], "parcelDescriptions": [ { - "uuid": "b8567994-22bd-48e5-8cd8-be80908daeea", + "uuid": "dd0717a8-3eaa-4c7d-8e0c-0ff0bf66f9df", "siteRegistry": true, - "dateNoted": "2019-07-19", - "parcelID": "15806", - "crownLandUsePIN": "20534", - "crownLandFileNumber": "18105", - "landDescription": "LOT 3 OF LOT 1 BLOCK 4 DISTRICT LOT 3 PLAN 3877" - }, - { - "uuid": "fcb48cce-3828-4ef9-8f11-6b24917e9121", - "siteRegistry": false, - "dateNoted": "2013-11-22", - "parcelID": "19075", - "crownLandUsePIN": "19762", - "crownLandFileNumber": "19952", - "landDescription": "LOT 1 OF LOT 5 BLOCK 4 DISTRICT LOT 4 PLAN 8990" + "dateNoted": "2015-03-11", + "parcelID": "20824", + "crownLandUsePIN": "16886", + "crownLandFileNumber": "16162", + "landDescription": "LOT 5 OF LOT 2 BLOCK 2 DISTRICT LOT 3 PLAN 3383" }, { - "uuid": "89a02798-6528-45b4-9508-f4535aae9714", + "uuid": "6132a7e8-8e1d-4c86-982c-b814939a769a", "siteRegistry": true, - "dateNoted": "2021-09-17", - "parcelID": "16036", - "crownLandUsePIN": "16414", - "crownLandFileNumber": "17300", - "landDescription": "LOT 1 OF LOT 4 BLOCK 2 DISTRICT LOT 5 PLAN 4046" + "dateNoted": "2014-11-19", + "parcelID": "19683", + "crownLandUsePIN": "16574", + "crownLandFileNumber": "17963", + "landDescription": "LOT 3 OF LOT 4 BLOCK 2 DISTRICT LOT 3 PLAN 5913" }, { - "uuid": "36314705-3633-4747-a094-6c0e047f1c10", + "uuid": "7a57bfeb-f046-4918-a5b0-28c1bd63f9fb", "siteRegistry": false, - "dateNoted": "2018-10-28", - "parcelID": "17542", - "crownLandUsePIN": "20981", - "crownLandFileNumber": "17129", - "landDescription": "LOT 1 OF LOT 5 BLOCK 5 DISTRICT LOT 5 PLAN 8492" + "dateNoted": "2014-12-10", + "parcelID": "15926", + "crownLandUsePIN": "20286", + "crownLandFileNumber": "18357", + "landDescription": "LOT 2 OF LOT 3 BLOCK 5 DISTRICT LOT 5 PLAN 6384" }, { - "uuid": "19dc3834-f6ac-46a3-92a1-b90084bd9aac", + "uuid": "b41864a6-7374-4f8c-a960-703370d667fa", "siteRegistry": true, - "dateNoted": "2018-11-03", - "parcelID": "20003", - "crownLandUsePIN": "17382", - "crownLandFileNumber": "16374", - "landDescription": "LOT 1 OF LOT 3 BLOCK 2 DISTRICT LOT 4 PLAN 8944" + "dateNoted": "2018-01-06", + "parcelID": "15630", + "crownLandUsePIN": "20810", + "crownLandFileNumber": "17660", + "landDescription": "LOT 5 OF LOT 3 BLOCK 2 DISTRICT LOT 1 PLAN 7093" } ], "siteDisclosures": [ { - "uuid": "cbfe6fd0-bd98-4134-923a-2cfc7f9d2604", - "siteRegistry": true, - "dateReceived": "2020-02-19", - "dateCompleted": "2018-09-16", - "dateEntered": "2014-09-29", - "dateRegistrar": "2017-05-12", - "dateLocalAuthorityReceived": "2015-03-17", - "summary": "Voluptas corrupti rerum.", - "informationUsed": "Perspiciatis nam iusto.\nQuaerat enim consequuntur quae dolorem dolorum distinctio aliquam id.\nIste possimus error eveniet ab.", - "pastOrPresentOrders": "At iusto ex accusantium iure eaque vel necessitatibus.\nSoluta magni ex asperiores cupiditate.", + "uuid": "5063bd29-a6d4-48e0-b4b9-8230e3bf3fb6", + "siteRegistry": false, + "dateReceived": "2020-03-22", + "dateCompleted": "2020-05-27", + "dateEntered": "2018-05-26", + "dateRegistrar": "2021-07-02", + "dateLocalAuthorityReceived": "2021-01-21", + "summary": "Ipsam facilis commodi rerum unde occaecati et quidem debitis.\nOptio sed corporis illo cum dolor ducimus.\nOptio odio recusandae facilis.", + "informationUsed": "Ad dignissimos placeat voluptate.\nMolestiae illo dicta sit animi fugiat suscipit mollitia.\nMinus ex occaecati velit.\nNobis possimus iste quas dolores amet.\nIllum animi laborum rerum error minima iste corrupti quaerat molestiae.", + "pastOrPresentOrders": "Nam ullam molestiae libero incidunt modi optio tempora.\nExcepturi deserunt quos quod cupiditate eum a possimus eligendi blanditiis.\nEum excepturi deserunt accusantium qui.", "commercialAndIndustrialPurposes": [ { - "uuid": "217950fe-cdee-4111-ba1c-ee853fe8ed63", - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false - }, - { - "uuid": "3f4c9dcd-7c15-4421-beac-f7e54fdbe616", + "uuid": "9f409c3e-7373-48b2-975b-5775851572d2", "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true - } - ] - }, - { - "uuid": "2b140afd-5826-4e18-8155-7996e9f5e00d", - "siteRegistry": true, - "dateReceived": "2019-04-22", - "dateCompleted": "2020-11-13", - "dateEntered": "2021-03-13", - "dateRegistrar": "2014-02-10", - "dateLocalAuthorityReceived": "2018-04-27", - "summary": "Ipsa ex adipisci.\nVoluptatem nam mollitia quae.", - "informationUsed": "Minima nisi dolores saepe sit.\nQui aspernatur minus blanditiis reiciendis vitae impedit dignissimos ipsa.\nDebitis asperiores pariatur voluptatem doloribus at dicta.\nSed nobis officia quam ullam repellat.\nAsperiores animi eligendi voluptatum nostrum harum eos esse aliquid.", - "pastOrPresentOrders": "Eveniet cupiditate nobis ratione adipisci.\nAperiam hic dolorem hic harum tenetur laborum quae.\nHarum aliquid sapiente enim numquam consectetur.", - "commercialAndIndustrialPurposes": [ - { - "uuid": "296067f2-c0c7-4048-8750-84ae3a564665", - "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "e954e008-caa3-432f-8583-b6c6f3304a01", + "uuid": "65946151-fe1c-4c70-bdcb-f50190b4da1d", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true - }, - { - "uuid": "3fd1fcf4-e594-42bc-91d3-5a5639176660", - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true - }, - { - "uuid": "4f125829-d95b-45e9-8dbf-cc8153a315b4", - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true } ] } ], "activityLog": [ { - "uuid": "f91361c7-b8ca-485c-ae5f-2221d9d2a8a7", - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "BECHTELAR JAVON", - "timestamp": "2014-05-08" - }, - { - "uuid": "3f851763-b297-46e3-ad8b-94b86ce96023", - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "DICKENS CORDELIA", - "timestamp": "2021-09-20" - }, - { - "uuid": "8a290a1a-626c-403c-a9c3-5185b5d63893", - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "SKILES KRYSTEL", - "timestamp": "2023-09-05" - }, - { - "uuid": "b28c997b-cef0-435f-89bd-db42a6d19591", + "uuid": "2440bf50-15c7-4314-ad8c-99ffb73acc45", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "SCHIMMEL GOLDEN", - "timestamp": "2014-11-12" + "user": "BARTELL NEVA", + "timestamp": "2022-05-28" }, { - "uuid": "7b83216f-6b30-46a2-98b4-4a71fec35374", + "uuid": "6d452a46-b659-4ad8-b3ef-3a039868f67f", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "RATKE DONAVON", - "timestamp": "2019-01-27" + "user": "MOHR LUCINDA", + "timestamp": "2019-11-29" }, { - "uuid": "15ffcd13-2682-4b5e-b3d4-79080b5e1567", + "uuid": "ca77af27-f713-489a-ab20-4e4a68acbfa0", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "KIEHN CECELIA", - "timestamp": "2017-04-21" - }, - { - "uuid": "ce21418f-0882-4cbc-88f9-6753244fbab0", - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "SIPES KARINA", - "timestamp": "2017-08-02" + "user": "BEER GERMAN", + "timestamp": "2021-11-28" }, { - "uuid": "3e36fd51-bae8-4f6e-8940-9fc2c1266c5d", + "uuid": "1221f7cd-05c7-4f99-9b10-b13a15468386", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "EMMERICH SCARLETT", - "timestamp": "2021-07-08" + "user": "DENESIK JOVANI", + "timestamp": "2015-10-31" }, { - "uuid": "c88bfefc-9a54-44e8-b48d-a6a2a196ed14", + "uuid": "31062892-04a3-4db8-8d79-e76ddb5438b7", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "MEDHURST KENDRICK", - "timestamp": "2020-02-20" + "user": "HUEL-SPINKA ADOLFO", + "timestamp": "2016-02-03" } ], "associatedSites": [ { - "uuid": "41df3eac-2609-4c4e-8f97-81897b4c39e3", - "dateNoted": "2022-01-06", + "uuid": "97dae437-1a72-4719-a092-7667f7fabfd8", + "dateNoted": "2018-10-22", + "notes": "", + "parcelID": "19668", + "siteID": "16978", + "siteRegistry": false + }, + { + "uuid": "bada746f-4acd-476b-913a-c1d47cce6aac", + "dateNoted": "2014-09-24", "notes": "", - "parcelID": "20835", - "siteID": "15979", + "parcelID": "20277", + "siteID": "15917", "siteRegistry": false + }, + { + "uuid": "5d7ccebf-8095-49a4-8d38-f55476a17a8c", + "dateNoted": "2019-11-26", + "notes": "", + "parcelID": "17474", + "siteID": "16137", + "siteRegistry": true } ] }, { - "uuid": "e18fdbe8-7edb-4bc1-8cc9-0264077fb770", - "siteID": 18483, - "address": "37101 Ernestina Causeway", - "latitude": 55.9423, - "longitude": -118.8172, - "lastUpdated": "2020-06-29", - "city": "East Florine", - "region": "Vancouver Island/Coast", - "victoriaFile": "26250-20/13306", + "uuid": "6154fc69-bdec-42b6-b502-4a7b5467d657", + "siteID": 20343, + "address": "1829 Nicklaus Underpass", + "latitude": 55.2006, + "longitude": -123.3901, + "lastUpdated": "2018-06-24", + "city": "Halvorsontown", + "region": "Thompson-Okanagan", + "victoriaFile": "26250-20/6700", "regionalFile": "N/A", "parcelIDs": [ - 4626012, - 4069956, - 7702147, - 9755494, - 4228235 + 6999050, + 9198808, + 8320720, + 8189424, + 2388756 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "783b9f90-bfb1-4486-8d9b-f90e1083641a", - "createdAt": "2016-12-04", - "completed": "2015-10-26", - "initiated": "2021-04-07", - "ministryContact": "HOWE DASIA", + "uuid": "470b4e16-5225-49b3-8cd3-77d6c964ce00", + "createdAt": "2015-01-09", + "completed": "2015-03-12", + "initiated": "2019-11-04", + "ministryContact": "KLING NELLIE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -796,26 +772,32 @@ ], "notationParticipants": [ { - "uuid": "e896d5e0-6108-483c-ba9a-71897adc98da", + "uuid": "175a59ef-586b-4eb6-a720-cada72f3d372", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "0e05faee-e31e-4c1d-a13d-358df0b1d9ca", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "9b78c390-52cb-4d97-a33f-5403696382de", + "uuid": "05c80fdb-a753-4713-b58b-a6148bf6b9be", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false } ], "siteRegistry": false }, { - "uuid": "4b5cb13c-84d0-4399-89cf-01d09ecb0c27", - "createdAt": "2020-07-27", - "completed": "2023-02-17", - "initiated": "2022-05-18", - "ministryContact": "MCCULLOUGH MADDISON", + "uuid": "d1c40ef8-0503-432b-ad9c-da93904b064b", + "createdAt": "2022-09-08", + "completed": "2014-09-08", + "initiated": "2019-09-22", + "ministryContact": "ZEMLAK BRIANA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -824,155 +806,231 @@ ], "notationParticipants": [ { - "uuid": "9bd44095-3490-4815-afe6-d76af086f986", + "uuid": "4ed667ae-39c2-4049-9dd3-2f5b9c97d3fe", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "99604f0c-ff34-4048-a0a6-38bbe70b84d1", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "f6671669-87f3-4f43-a20d-4cd911ea24a3", + "uuid": "6231570e-9a25-476a-acbb-eece6075db02", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false + "role": "SUBMITTED BY", + "siteRegistry": true } ], "siteRegistry": true - } - ], - "participants": [ + }, { - "uuid": "a3351621-e66a-4560-8e4a-cab113438d21", - "name": "SHELL CANADA PRODUCTS", - "endDate": "2017-10-31", - "startDate": "2018-09-18", - "notes": "", - "roles": [ - "ORGANIZATION" + "uuid": "b2f85c62-62f2-4bdb-8b78-9386e3cb8498", + "createdAt": "2021-11-18", + "completed": "2021-05-25", + "initiated": "2023-04-23", + "ministryContact": "UPTON TRACEY", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "uuid": "8a0f4cdf-6e10-4343-aa71-11af171da263", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "uuid": "74e5c70e-82e1-432c-a943-715f5d86c5f2", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + } ], "siteRegistry": false - }, + } + ], + "participants": [ { - "uuid": "c26a8a94-7b46-482e-ab31-ef444fee3859", - "name": "IPSUM", - "endDate": "2014-11-26", - "startDate": "2020-05-23", + "uuid": "a15f49da-a971-448f-9e1f-51233e649ca4", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2018-08-06", + "startDate": "2017-05-19", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": false }, { - "uuid": "53621630-5d9b-4dd8-ba0e-d54168084ec6", + "uuid": "1b59f2cb-4a4d-4580-9905-0d98990555a1", "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2016-03-22", - "startDate": "2017-09-11", + "endDate": "2019-10-04", + "startDate": "2021-10-21", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "3d435eed-fa72-471b-862c-fbc36b29e593", + "uuid": "871052c8-55b6-4539-932c-9ca61cbea6ad", "name": "SHELL CANADA PRODUCTS", - "endDate": "2023-02-18", - "startDate": "2021-05-18", + "endDate": "2022-03-20", + "startDate": "2019-12-09", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true + } + ], + "documents": [ + { + "uuid": "3a028fc6-1772-4bc7-928f-bf303a2ac842", + "siteRegistry": false, + "documentDate": "2019-10-06", + "receivedDate": "2022-06-24", + "uploadedDate": "2017-06-06", + "title": "Preliminary Site Investigation, Detailed Site Investigation and Remedial Plan for the Management Area adjacent to the Shell Site at 1503 West 41st Ave", + "participants": [ + { + "uuid": "4ab701d9-f1b7-4ad1-9f92-0e0892037031", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "2ce46aa7-921e-46ec-a936-b6d19ceace28", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": true, + "role": "AUTHOR" + } + ] }, { - "uuid": "1e5ad395-011d-4ec2-ac68-268078c6859a", - "name": "SHELL CANADA PRODUCTS", - "endDate": "2016-12-28", - "startDate": "2016-12-01", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": false + "uuid": "6f2deea1-ccca-4e25-8af8-e384e1a7fd9f", + "siteRegistry": true, + "documentDate": "2020-11-03", + "receivedDate": "2020-10-03", + "uploadedDate": "2020-01-09", + "title": "Preliminary Site Investigation, Detailed Site Investigation and Remedial Plan for the Management Area adjacent to the Shell Site at 1503 West 41st Ave", + "participants": [ + { + "uuid": "d8b46b82-ae37-4410-9e89-d3d037625ad7", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "6af31472-d04a-4665-b1a7-13874037516c", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": true, + "role": "AUTHOR" + } + ] } ], "suspectLandUses": [ { - "uuid": "8e71a187-e66d-49c2-9ac2-aa1c42419c79", - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-11-06 (described on Site Profile dated 2019-11-06)", + "uuid": "254572f3-f233-49e0-9dc1-865b2e5fb6ce", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2016-03-06 (described on Site Profile dated 2016-03-06)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "uuid": "753998db-5177-4b40-a4cd-df9d68e35a60", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2022-06-09 (described on Site Profile dated 2022-06-09)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "uuid": "75efbb04-8b8a-4928-9928-3bb20469ce35", + "uuid": "9e356623-185c-460d-88b7-631e9a40882d", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2013-11-01 (described on Site Profile dated 2013-11-01)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "notes": "INSERTED FOR SITE PROFILE DATED 2013-12-07 (described on Site Profile dated 2013-12-07)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], "parcelDescriptions": [ { - "uuid": "dbc76436-12a3-4b02-b904-b9876413442f", + "uuid": "2f51a3eb-a1bd-4800-bce1-df913ec2504f", "siteRegistry": true, - "dateNoted": "2018-04-07", - "parcelID": "20224", - "crownLandUsePIN": "20133", - "crownLandFileNumber": "15471", - "landDescription": "LOT 2 OF LOT 4 BLOCK 4 DISTRICT LOT 1 PLAN 8381" + "dateNoted": "2021-10-06", + "parcelID": "17541", + "crownLandUsePIN": "20401", + "crownLandFileNumber": "19485", + "landDescription": "LOT 4 OF LOT 2 BLOCK 4 DISTRICT LOT 3 PLAN 5385" }, { - "uuid": "c19183a0-e656-4528-8797-c269e11a5be0", - "siteRegistry": false, - "dateNoted": "2019-10-18", - "parcelID": "15466", - "crownLandUsePIN": "16783", - "crownLandFileNumber": "20828", - "landDescription": "LOT 3 OF LOT 1 BLOCK 4 DISTRICT LOT 4 PLAN 3713" + "uuid": "069974a2-27ef-4ce0-b5d6-db1d574f3080", + "siteRegistry": true, + "dateNoted": "2014-02-24", + "parcelID": "15927", + "crownLandUsePIN": "17869", + "crownLandFileNumber": "20403", + "landDescription": "LOT 5 OF LOT 5 BLOCK 3 DISTRICT LOT 4 PLAN 3897" }, { - "uuid": "cd92880e-59b6-46b1-9a3f-066d392ecbad", - "siteRegistry": false, - "dateNoted": "2017-11-11", - "parcelID": "18851", - "crownLandUsePIN": "16026", - "crownLandFileNumber": "19305", - "landDescription": "LOT 4 OF LOT 5 BLOCK 4 DISTRICT LOT 1 PLAN 3574" + "uuid": "af0d55a9-b67a-4688-855e-4542031eadde", + "siteRegistry": true, + "dateNoted": "2016-03-11", + "parcelID": "19887", + "crownLandUsePIN": "18058", + "crownLandFileNumber": "17757", + "landDescription": "LOT 4 OF LOT 1 BLOCK 5 DISTRICT LOT 2 PLAN 4622" + }, + { + "uuid": "9163c04d-e415-4608-9320-9a701171075f", + "siteRegistry": true, + "dateNoted": "2017-10-14", + "parcelID": "20299", + "crownLandUsePIN": "15219", + "crownLandFileNumber": "17253", + "landDescription": "LOT 3 OF LOT 1 BLOCK 3 DISTRICT LOT 2 PLAN 3409" + }, + { + "uuid": "8f3f09e7-98e4-4d31-8ab0-ddb39d946b79", + "siteRegistry": true, + "dateNoted": "2023-09-12", + "parcelID": "20296", + "crownLandUsePIN": "19281", + "crownLandFileNumber": "16603", + "landDescription": "LOT 3 OF LOT 1 BLOCK 4 DISTRICT LOT 1 PLAN 5165" } ], "siteDisclosures": [ { - "uuid": "79601634-70cd-4278-ae27-e5b6f3083c02", - "siteRegistry": false, - "dateReceived": "2015-06-01", - "dateCompleted": "2013-10-21", - "dateEntered": "2015-07-26", - "dateRegistrar": "2016-12-19", - "dateLocalAuthorityReceived": "2016-11-14", - "summary": "Enim tenetur optio.\nPerspiciatis distinctio repudiandae velit illum occaecati iusto amet.", - "informationUsed": "Et voluptatum aliquid ex laborum.\nVoluptatum expedita iusto aperiam dolore omnis quas.\nPerferendis sit similique perferendis.", - "pastOrPresentOrders": "Veritatis quia consectetur officiis.\nId iste debitis similique aliquam et tempore maxime perferendis.\nTotam cupiditate veritatis voluptatibus deserunt odio perferendis laudantium minima.", + "uuid": "6276987e-2ee3-4c78-929d-fd8aa2303799", + "siteRegistry": true, + "dateReceived": "2019-04-11", + "dateCompleted": "2021-07-31", + "dateEntered": "2020-10-18", + "dateRegistrar": "2022-11-11", + "dateLocalAuthorityReceived": "2022-04-18", + "summary": "Aliquam rerum iure.", + "informationUsed": "Reprehenderit incidunt nihil repellat dicta exercitationem blanditiis sapiente deleniti eius.\nAtque voluptatum earum distinctio.\nQuam omnis magnam aliquam dolores sapiente rem numquam.", + "pastOrPresentOrders": "Nostrum fuga vitae facilis alias.\nVoluptate eius dicta voluptates doloribus nihil incidunt vel.", "commercialAndIndustrialPurposes": [ { - "uuid": "7c008c4b-4904-4cf5-835f-615167832a72", - "scheduleReference": "F1*", + "uuid": "f34af72a-d84e-469e-b981-2301413c6f0d", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "2b221f62-8cf5-44b1-afe4-8d5386981fb7", + "uuid": "f9b5ca4d-5316-4fa2-81d9-f9509f8719c7", "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true - }, - { - "uuid": "93fed952-4e3a-40f7-894c-3eac2d0c4b82", - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { - "uuid": "85b20bca-dd4e-4e45-8b1f-b2d37fe01477", - "scheduleReference": "F1*", + "uuid": "c76fee11-0a88-48ed-8045-ddd1bfdcb21d", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false } @@ -981,107 +1039,106 @@ ], "activityLog": [ { - "uuid": "0f6d7ea1-3781-489c-abd9-62f273396f39", - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "CORMIER HALLIE", - "timestamp": "2019-03-27" - }, - { - "uuid": "eb2a5203-0e16-4fc8-b72d-fdc5a2d790af", + "uuid": "afe43a48-ce92-4b17-ac2c-78936aa0cdbe", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "JOHNSON QUINTON", - "timestamp": "2017-06-19" + "user": "WEBER SEDRICK", + "timestamp": "2021-04-05" }, { - "uuid": "ab7386a8-6130-4a6c-815e-77d6a875eabb", + "uuid": "d19f67a8-8d6f-4a5e-af41-b74d64323da5", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "BERGSTROM KRYSTEL", - "timestamp": "2018-07-21" + "user": "KULAS RAQUEL", + "timestamp": "2015-04-13" }, { - "uuid": "e3b6b2a1-6cf3-4ad0-9acd-1fda0c9616c9", - "siteRegistry": true, + "uuid": "d1c24588-1741-4a55-971d-9c480493d788", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "CONNELLY RUBYE", - "timestamp": "2023-01-18" + "user": "MAGGIO JENIFER", + "timestamp": "2017-12-26" }, { - "uuid": "25c85e32-8367-4a26-a919-1bd7baaf0acb", + "uuid": "ffd3b430-4fba-4f9b-b5b2-238342110ead", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "BAILEY LISA", - "timestamp": "2019-03-25" + "user": "PROSACCO LUCIUS", + "timestamp": "2018-07-15" }, { - "uuid": "fc6b7b44-0913-40d9-ad5d-a95147eec422", + "uuid": "7804f305-1123-479d-9fb8-bd999e9edb11", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "DOYLE ARNO", - "timestamp": "2022-04-20" + "user": "RUNOLFSSON STEPHEN", + "timestamp": "2014-04-09" + }, + { + "uuid": "4de376e0-38ed-40c3-9979-64d12d9fb893", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "PARKER RAHEEM", + "timestamp": "2017-07-12" }, { - "uuid": "dbe18dd2-f990-48e0-af8a-5dfa7abd0320", + "uuid": "83ae45a9-18b7-4041-a2d7-dca705d7be49", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "SCHAEFER JOANA", - "timestamp": "2016-02-14" + "user": "FRANECKI ZENA", + "timestamp": "2022-05-21" }, { - "uuid": "4153e4a5-11dc-42db-ac95-74a9712de632", + "uuid": "884a2f16-8acc-4c58-8540-a0c853154a33", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "WISOKY JUSTON", - "timestamp": "2016-06-22" + "user": "LOCKMAN VELDA", + "timestamp": "2019-03-24" + }, + { + "uuid": "aec6d932-b675-4e2c-9887-edec393cf2c8", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "SATTERFIELD KEN", + "timestamp": "2015-08-26" } ], "associatedSites": [ { - "uuid": "ed79ee22-a2d8-4d0a-b7b1-fed11080a618", - "dateNoted": "2021-03-25", - "notes": "", - "parcelID": "16828", - "siteID": "17834", - "siteRegistry": true - }, - { - "uuid": "8e647ae2-2caf-4f4b-b7ef-9bf90ad44fec", - "dateNoted": "2014-12-09", + "uuid": "3fd4b875-3558-4048-85ca-8c7e3ab22397", + "dateNoted": "2023-05-28", "notes": "", - "parcelID": "20113", - "siteID": "16807", - "siteRegistry": true + "parcelID": "19820", + "siteID": "20870", + "siteRegistry": false } ] }, { - "uuid": "153a02ae-c688-42e4-81b8-e8d3a3ab2ef4", - "siteID": 15585, - "address": "903 Marcelle Throughway", - "latitude": 50.6351, - "longitude": -130.1986, - "lastUpdated": "2017-07-06", - "city": "East Laurianneview", - "region": "Cariboo", - "victoriaFile": "26250-20/15283", + "uuid": "88ca4611-99b3-4862-b554-4721116115c6", + "siteID": 16253, + "address": "356 Corkery Fork", + "latitude": 48.8499, + "longitude": -129.2633, + "lastUpdated": "2014-06-06", + "city": "Wyoming", + "region": "Thompson-Okanagan", + "victoriaFile": "26250-20/9918", "regionalFile": "N/A", "parcelIDs": [ - 4539575, - 6855999, - 3138340, - 9294657, - 1946093 + 3737006, + 9640962, + 3450499, + 7079655, + 164112 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "2b1d57b8-6bae-4108-bbe2-a283a38f0402", - "createdAt": "2018-08-19", - "completed": "2018-11-19", - "initiated": "2014-12-21", - "ministryContact": "LUBOWITZ ANTOINETTE", + "uuid": "3690150d-5f3e-460d-890f-f1b389fb093f", + "createdAt": "2020-03-19", + "completed": "2019-08-22", + "initiated": "2015-07-04", + "ministryContact": "MACEJKOVIC FOSTER", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -1090,72 +1147,38 @@ ], "notationParticipants": [ { - "uuid": "a2b61718-5e84-44f8-892d-1e662c637053", - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "uuid": "db4695e9-3c6a-43b3-88d4-68e17008f260", - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "uuid": "54ecfb9f-5220-4d7a-9621-75d293191a7d", + "uuid": "606e3223-f0ed-4f58-b202-dc2242e12bb2", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "b3241b84-f2f8-42b5-93ff-ba2f93bbf5d0", + "uuid": "1c9535c1-f5c1-486e-9486-ecddfca93c1f", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "8ac19219-e9b8-4b35-b841-58b1064a291d", + "uuid": "8daeb04c-2812-4df5-b406-260961a9792b", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - } - ], - "siteRegistry": true - }, - { - "uuid": "bba8338d-2a27-474e-8687-b891c718ced0", - "createdAt": "2020-10-02", - "completed": "2023-09-11", - "initiated": "2018-08-29", - "ministryContact": "KRIS TEAGAN", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "uuid": "2d0ee829-b335-40f3-ac3d-3939df131a39", - "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true }, { - "uuid": "b14fafd0-b70b-4140-a415-5b7344b39a38", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false + "uuid": "335206f6-22af-42e5-9103-367ec1f0ede6", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true } ], "siteRegistry": true }, { - "uuid": "04334c7c-c6ac-450f-ba21-0ec13f6c87c5", - "createdAt": "2019-09-27", - "completed": "2019-09-20", - "initiated": "2021-12-10", - "ministryContact": "SANFORD LEONEL", + "uuid": "a35b35f6-3cde-4d2c-80ee-ad44f4103ea9", + "createdAt": "2020-08-02", + "completed": "2017-08-18", + "initiated": "2020-06-06", + "ministryContact": "FAHEY JOE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -1164,85 +1187,45 @@ ], "notationParticipants": [ { - "uuid": "9c52dfd0-ed6b-4762-8387-631a864ddf28", + "uuid": "474b832f-8fcd-4799-9631-d3cc53a530cc", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true }, { - "uuid": "7d6243a2-0381-4b2a-8a08-6495389594b2", + "uuid": "4e5ec807-5afe-4477-8f36-49e7c12753d7", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false }, { - "uuid": "2dad53da-7d15-4598-9a1d-3be13f85de16", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "uuid": "73aad98e-e241-466a-bdfd-7b58bbd146ba", - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "uuid": "6230977e-7c4f-4884-b155-6dff00a09f65", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - } - ], - "siteRegistry": false - }, - { - "uuid": "511c81ff-8d70-4c83-bb51-fc698a67cc21", - "createdAt": "2016-09-04", - "completed": "2020-09-09", - "initiated": "2021-08-15", - "ministryContact": "GREENFELDER-SCHAMBERGER ROCKY", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "uuid": "ac5435de-4b77-4e16-8eb1-a39b40211fff", + "uuid": "6cb2bd04-dba3-4ef4-9c7b-b4babe34d12a", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true }, { - "uuid": "5ba5eb31-0a46-49c0-bdbe-294789fb9280", + "uuid": "a352cc93-4d8a-4e74-8593-1b2046293015", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false }, { - "uuid": "132e5366-ccec-4d74-9d88-3d4ee586d89c", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "uuid": "f575d2cb-3d74-4e24-b497-7a88313b752d", - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "2aa9fefd-7d28-41ee-a4a4-31d50d18811b", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false } ], "participants": [ { - "uuid": "d70322fd-9cfe-471a-bf54-ceb533e8b473", + "uuid": "95c21a53-4b85-4652-8862-a317a544aa70", "name": "IPSUM", - "endDate": "2014-06-19", - "startDate": "2014-04-11", + "endDate": "2014-09-20", + "startDate": "2019-09-22", "notes": "", "roles": [ "ORGANIZATION" @@ -1250,128 +1233,190 @@ "siteRegistry": true }, { - "uuid": "4cf41375-dcc5-4ecd-83e9-f83830464d92", + "uuid": "9ed707cd-f352-492f-9d1b-903d0a8ab71a", "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2022-12-25", - "startDate": "2023-08-08", + "endDate": "2021-02-11", + "startDate": "2018-06-08", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true + } + ], + "documents": [ + { + "uuid": "3797de42-31cb-4164-8986-1964712e8231", + "siteRegistry": true, + "documentDate": "2023-01-22", + "receivedDate": "2018-11-27", + "uploadedDate": "2014-06-08", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "4ea6d5e8-67a4-4438-9cc9-61861e0c9a4a", + "name": "IPSUM", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "14a6f3be-f1f9-40c1-9186-8b758bba6a4a", + "name": "AMET, DOLOR SIT", + "siteRegistry": true, + "role": "AUTHOR" + } + ] + }, + { + "uuid": "ea60939f-3742-4fd9-a8c4-03ed5d65ecfa", + "siteRegistry": false, + "documentDate": "2018-11-27", + "receivedDate": "2015-09-29", + "uploadedDate": "2021-08-26", + "title": "Preliminary Site Investigation, Detailed Site Investigation and Remedial Plan for the Management Area adjacent to the Shell Site at 1503 West 41st Ave", + "participants": [ + { + "uuid": "c78dd09b-6919-44a7-a077-3d2df23bd770", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": false, + "role": "AUTHOR" + } + ] + }, + { + "uuid": "d91ef96c-874f-4221-831a-793bfc68b8a2", + "siteRegistry": true, + "documentDate": "2014-07-07", + "receivedDate": "2015-07-17", + "uploadedDate": "2023-09-20", + "title": "Preliminary Site Investigation, Detailed Site Investigation and Remedial Plan for the Management Area adjacent to the Shell Site at 1503 West 41st Ave", + "participants": [ + { + "uuid": "cd226257-e13d-44b7-8dad-1df65d18d7d5", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "25047c04-0bda-4914-ab58-d62a2df32dde", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": false, + "role": "AUTHOR" + } + ] } ], "suspectLandUses": [ { - "uuid": "a7633f41-7274-463d-8c8b-2e2f7bb10794", + "uuid": "3fcb0ef5-057a-49ae-a746-1e2006c5a93c", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-08-26 (described on Site Profile dated 2021-08-26)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "notes": "INSERTED FOR SITE PROFILE DATED 2021-07-18 (described on Site Profile dated 2021-07-18)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "uuid": "6844ff84-338b-4bf0-8dbc-ae1c142735d4", + "uuid": "b356e6f9-c193-4301-9c58-e7552283fed8", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-08-06 (described on Site Profile dated 2016-08-06)", + "notes": "INSERTED FOR SITE PROFILE DATED 2020-07-10 (described on Site Profile dated 2020-07-10)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" - } - ], - "parcelDescriptions": [ + }, { - "uuid": "d84f8b73-9c65-4210-ac78-d80dda21f587", + "uuid": "c248571f-e81f-49eb-9d6c-5c944feb32f6", "siteRegistry": true, - "dateNoted": "2016-04-17", - "parcelID": "15697", - "crownLandUsePIN": "17645", - "crownLandFileNumber": "20917", - "landDescription": "LOT 1 OF LOT 5 BLOCK 4 DISTRICT LOT 2 PLAN 5532" + "notes": "INSERTED FOR SITE PROFILE DATED 2017-06-30 (described on Site Profile dated 2017-06-30)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "uuid": "9f1dbfb7-d381-49b0-a057-809a665ea3ad", + "uuid": "05426b5f-c808-4a60-ab51-63582379ebdf", "siteRegistry": true, - "dateNoted": "2022-11-28", - "parcelID": "16893", - "crownLandUsePIN": "16987", - "crownLandFileNumber": "17815", - "landDescription": "LOT 1 OF LOT 1 BLOCK 1 DISTRICT LOT 2 PLAN 4064" - }, + "notes": "INSERTED FOR SITE PROFILE DATED 2020-09-23 (described on Site Profile dated 2020-09-23)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + } + ], + "parcelDescriptions": [ { - "uuid": "bf3b340e-8484-4865-8806-52bdc04c5860", + "uuid": "adb2b959-2172-4e2c-840b-52ac797ba886", "siteRegistry": false, - "dateNoted": "2015-04-16", - "parcelID": "16677", - "crownLandUsePIN": "19544", - "crownLandFileNumber": "18371", - "landDescription": "LOT 1 OF LOT 1 BLOCK 2 DISTRICT LOT 1 PLAN 9333" + "dateNoted": "2018-08-04", + "parcelID": "19947", + "crownLandUsePIN": "20666", + "crownLandFileNumber": "16404", + "landDescription": "LOT 3 OF LOT 2 BLOCK 2 DISTRICT LOT 2 PLAN 7297" }, { - "uuid": "10938559-a03d-41db-b40e-28ee1320e520", + "uuid": "83551c88-52ac-4072-a990-e040cf199e75", "siteRegistry": true, - "dateNoted": "2021-10-05", - "parcelID": "19711", - "crownLandUsePIN": "17170", - "crownLandFileNumber": "17180", - "landDescription": "LOT 3 OF LOT 3 BLOCK 3 DISTRICT LOT 5 PLAN 6117" + "dateNoted": "2018-07-19", + "parcelID": "15578", + "crownLandUsePIN": "15401", + "crownLandFileNumber": "18829", + "landDescription": "LOT 3 OF LOT 5 BLOCK 4 DISTRICT LOT 4 PLAN 8989" } ], "siteDisclosures": [ { - "uuid": "c2438845-7a08-488b-8da2-005dd0cc9528", + "uuid": "17b4359a-5bbb-469a-a8d7-7e665d26caf4", "siteRegistry": true, - "dateReceived": "2023-05-12", - "dateCompleted": "2022-12-03", - "dateEntered": "2015-01-02", - "dateRegistrar": "2018-05-17", - "dateLocalAuthorityReceived": "2019-08-31", - "summary": "Dignissimos explicabo et animi ea.", - "informationUsed": "Laudantium ab iure animi aliquam tenetur illum.\nOccaecati voluptate officia adipisci saepe maiores a.\nIpsam reiciendis numquam in praesentium debitis porro voluptate.\nEligendi reprehenderit pariatur libero occaecati impedit consequuntur autem cum.", - "pastOrPresentOrders": "Odio adipisci est maiores nemo.", + "dateReceived": "2016-05-05", + "dateCompleted": "2017-01-06", + "dateEntered": "2015-07-07", + "dateRegistrar": "2022-10-02", + "dateLocalAuthorityReceived": "2014-09-18", + "summary": "Numquam deleniti dicta tenetur atque eligendi nemo odio.", + "informationUsed": "Ex quibusdam iste aperiam tempora ipsam.\nQuibusdam quibusdam ullam a est culpa nostrum totam minus voluptatum.\nDebitis est dolorem.", + "pastOrPresentOrders": "Dolores veniam veniam et maiores quia rem incidunt facilis.\nOccaecati error recusandae amet totam.\nRepudiandae aperiam nostrum magnam veritatis id velit.", "commercialAndIndustrialPurposes": [ { - "uuid": "8cbb0fcf-77b7-4360-93d1-1dcc6ebe119a", - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false - }, - { - "uuid": "39e93a73-a97a-4bc6-b1dd-65751a93efeb", + "uuid": "c426b93f-d30f-424f-a78e-6f75f90bf1a3", "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { - "uuid": "4c0031ed-db62-4642-93b1-feb7d30aba27", + "uuid": "8f333504-57b1-4823-86bb-f2fb93c78596", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, { - "uuid": "bb42ed1e-c9b4-4028-89e9-9e06fe545de4", - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "uuid": "31ab168c-4cd1-4ada-bb49-03eb8d0f5941", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false } ] }, { - "uuid": "061675bf-0e0d-4d50-84aa-e969f9db1e0b", + "uuid": "6a4154b3-d165-4561-8ff6-e18b829d577c", "siteRegistry": true, - "dateReceived": "2014-08-21", - "dateCompleted": "2019-09-17", - "dateEntered": "2014-04-10", - "dateRegistrar": "2020-11-15", - "dateLocalAuthorityReceived": "2020-11-10", - "summary": "Adipisci vitae in totam laborum maxime molestias nostrum animi provident.\nEx earum nam mollitia nemo eaque quidem minus temporibus temporibus.", - "informationUsed": "Harum laboriosam voluptatibus asperiores deleniti optio quae iste.\nVitae eius dolore earum corrupti.\nQuia laudantium perferendis provident facere amet amet.\nEum impedit cumque a soluta sequi asperiores quas.\nHic magni illo nobis animi dolorem ullam inventore nam.", - "pastOrPresentOrders": "Non sint architecto earum quibusdam.\nSaepe sit nemo ducimus.", + "dateReceived": "2023-06-12", + "dateCompleted": "2015-04-29", + "dateEntered": "2022-01-12", + "dateRegistrar": "2021-08-18", + "dateLocalAuthorityReceived": "2018-12-14", + "summary": "Eius qui nostrum enim vitae necessitatibus impedit officia iste quaerat.", + "informationUsed": "Reiciendis veritatis ad praesentium deserunt rerum ratione minima inventore esse.\nNumquam veniam dolor officiis ab.\nOmnis aut nesciunt sit laborum in iste.\nCorporis ab quidem ea perferendis.", + "pastOrPresentOrders": "Accusamus distinctio amet rerum dignissimos in.\nEaque doloremque explicabo labore consequuntur optio unde nisi impedit cum.\nNecessitatibus perspiciatis corrupti delectus impedit alias unde repellendus.", "commercialAndIndustrialPurposes": [ { - "uuid": "702a8fa1-414c-43c4-9957-17aeee6cfdcd", + "uuid": "6708dfa4-a5bb-4df5-8ac4-11ca528c5a44", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "uuid": "f660193d-9d77-48aa-aad3-2a5c0591f86d", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { - "uuid": "ff9acbca-041e-4575-8936-f4624b666894", + "uuid": "3899121d-fa78-41ad-a66b-ebc4109a7e97", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "uuid": "5ed0fbfd-eadb-4a55-b129-a2dd88f80bc8", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false @@ -1381,115 +1426,107 @@ ], "activityLog": [ { - "uuid": "27ec7bfb-964e-4196-8ef3-901a83dc5532", + "uuid": "14c2428b-7119-4d21-9dbe-88bd512338c1", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "SMITHAM CAMILLE", - "timestamp": "2015-01-30" + "user": "GLEICHNER JORDY", + "timestamp": "2016-07-22" }, { - "uuid": "891a4338-7fca-4618-b926-9d7828ed0010", + "uuid": "e1afb5be-3994-4511-b61d-7b1405276126", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "FLATLEY CLAUDINE", - "timestamp": "2020-01-15" + "user": "MURPHY-KUHLMAN MADALYN", + "timestamp": "2018-01-16" }, { - "uuid": "0a13fdb2-6bb1-4766-b0dc-82aa698576c7", + "uuid": "328c218e-ffba-48de-b11e-13e4cbf6ec8a", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "HAMILL LAURIANNE", - "timestamp": "2014-04-28" + "user": "DECKOW CRAWFORD", + "timestamp": "2014-10-03" }, { - "uuid": "37f886da-f65b-4dc3-9702-2ace69ccfaeb", + "uuid": "b824123f-251d-4eb4-9fc9-2f1da9008ea1", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "KOSS CORA", - "timestamp": "2019-11-17" + "user": "YUNDT-HARRIS CAMILLE", + "timestamp": "2016-05-30" }, { - "uuid": "c1b32cc5-e732-486a-99cd-4966f1c0c63b", + "uuid": "0b817067-32a2-49f4-a4bc-438fe59f4d8d", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "SKILES KEVEN", - "timestamp": "2020-08-24" + "user": "SIPES CHANELLE", + "timestamp": "2019-03-12" }, { - "uuid": "597de9b6-5362-4d8c-aeff-d6d1eacbaed5", + "uuid": "130a3243-e3ac-4fac-becb-915a5d20389d", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "KRIS ALLY", - "timestamp": "2013-11-11" + "user": "NIKOLAUS DIAMOND", + "timestamp": "2018-07-31" }, { - "uuid": "4aca974f-bdc2-477f-b4a4-08b4b1c2870d", + "uuid": "80aa1b60-b7d9-45b6-811c-8e864987c7c5", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "WISOZK GEORGIANA", - "timestamp": "2023-01-24" + "user": "ROBERTS BRITNEY", + "timestamp": "2020-02-05" }, { - "uuid": "bfec571b-8e9e-4ef7-90f9-2eb84ecbd391", + "uuid": "9fb619a2-7a7d-4a4e-9059-1b9da730d9e7", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "PAUCEK EMILIO", - "timestamp": "2014-03-06" + "user": "ROOB TRYCIA", + "timestamp": "2023-05-01" } ], "associatedSites": [ { - "uuid": "4b22bc2b-25d2-4841-b82c-2b3ef9aeb34b", - "dateNoted": "2017-03-22", + "uuid": "d595d804-1bad-4ff7-9443-59e680fcbe12", + "dateNoted": "2018-05-08", "notes": "", - "parcelID": "16833", - "siteID": "15264", + "parcelID": "19246", + "siteID": "16177", "siteRegistry": false }, { - "uuid": "d24b2913-3153-4108-a2d9-9233fbcae2de", - "dateNoted": "2019-09-07", - "notes": "", - "parcelID": "18261", - "siteID": "17896", - "siteRegistry": true - }, - { - "uuid": "be60d0e6-b748-47f5-922c-13b96ebb5d6a", - "dateNoted": "2021-08-26", + "uuid": "a236202b-0a75-4e93-a34f-97f0a77b2513", + "dateNoted": "2020-02-04", "notes": "", - "parcelID": "15354", - "siteID": "17261", + "parcelID": "15527", + "siteID": "18407", "siteRegistry": false } ] }, { - "uuid": "863c87be-99c8-4f94-84f5-6bdb592a577d", - "siteID": 17858, - "address": "20990 Mohamed Pass", - "latitude": 56.3142, - "longitude": -125.1488, - "lastUpdated": "2019-11-15", - "city": "North Katrina", - "region": "Cariboo", - "victoriaFile": "26250-20/15560", + "uuid": "c57dfdfd-1beb-469a-adbc-eb64e28aafc4", + "siteID": 19630, + "address": "6995 Esperanza Valleys", + "latitude": 57.2626, + "longitude": -137.7749, + "lastUpdated": "2023-06-22", + "city": "North Jacklyn", + "region": "Thompson-Okanagan", + "victoriaFile": "26250-20/12896", "regionalFile": "N/A", "parcelIDs": [ - 833727, - 1793027, - 8713705, - 8797654, - 7593633 + 6906645, + 5417849, + 7318678, + 6185649, + 157425 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "8a992651-ab17-4161-b945-2d12b6476771", - "createdAt": "2015-01-22", - "completed": "2023-08-17", - "initiated": "2014-07-08", - "ministryContact": "JASKOLSKI KENTON", + "uuid": "7ee4b50b-cf97-4371-9c2e-4480be9bd187", + "createdAt": "2014-10-09", + "completed": "2015-03-17", + "initiated": "2016-07-31", + "ministryContact": "KUHN MARQUES", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -1498,26 +1535,26 @@ ], "notationParticipants": [ { - "uuid": "8d481a37-09b0-4ee5-b61f-2aeef2bfb386", - "name": "SHELL CANADA PRODUCTS", + "uuid": "1f0c4f41-dfbf-4406-9270-bffded3d269d", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false }, { - "uuid": "a0ba2c51-3352-4243-a024-a2d264f7592c", + "uuid": "1402d1f3-15c4-465a-a0bd-37f27234d833", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "f704adba-cbb0-45e5-a42b-4f0a77c8575f", - "createdAt": "2016-12-07", - "completed": "2019-04-13", - "initiated": "2015-06-23", - "ministryContact": "STRACKE ELLIOT", + "uuid": "cfc1318f-d8f8-485c-b7b7-d9b28be91162", + "createdAt": "2015-05-06", + "completed": "2016-07-08", + "initiated": "2017-12-18", + "ministryContact": "RAYNOR BETTY", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -1526,96 +1563,22 @@ ], "notationParticipants": [ { - "uuid": "9a1a01b0-500d-430e-95f9-ed2bf25392e1", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "uuid": "f60848bb-ba8e-4603-bc77-1dd454294bdb", + "uuid": "3d267078-29f8-4faa-9161-dca02e947169", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "c54d2db5-6f36-4f32-ab9e-94205051237a", + "uuid": "8b33696c-01ba-4aef-b81c-526142caf48f", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - } - ], - "siteRegistry": true - }, - { - "uuid": "8a6426d1-d049-4e9d-becb-41b5e4825119", - "createdAt": "2016-08-03", - "completed": "2017-10-29", - "initiated": "2020-08-06", - "ministryContact": "FARRELL JEFFEREY", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "uuid": "f9597811-6756-4f00-80e8-a79d2d925527", - "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false }, { - "uuid": "10b55761-8ccf-4b08-90f1-898c3be57ebd", + "uuid": "ec38900e-7870-4997-a365-fe01e084c170", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "uuid": "f8fa4179-f04a-466b-bbe6-2301e755acd6", - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "uuid": "b643570a-328d-4abf-947e-2f3550ef3765", - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - } - ], - "siteRegistry": true - }, - { - "uuid": "903a4e1c-7b89-4fd8-903d-35b43c386448", - "createdAt": "2016-03-26", - "completed": "2016-05-06", - "initiated": "2022-01-15", - "ministryContact": "MILLER GAIL", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "uuid": "eb64c518-f720-459c-94fa-3c42782facb4", - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", "siteRegistry": true - }, - { - "uuid": "f867b8d9-501d-43c7-b532-02035f70af57", - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "uuid": "1c317b2b-504a-46ce-a755-3ca4aab8d29d", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false } ], "siteRegistry": false @@ -1623,103 +1586,170 @@ ], "participants": [ { - "uuid": "9a9bf19b-c78d-4d66-8dec-f194a715d1da", - "name": "AMET, DOLOR SIT", - "endDate": "2022-11-26", - "startDate": "2023-06-17", + "uuid": "cf287738-dc53-44bf-84ac-5b0ec936f95b", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2015-04-29", + "startDate": "2021-05-16", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "8870d295-089e-4939-8d56-226317ffefae", - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2018-12-16", - "startDate": "2022-09-29", + "uuid": "db1bade1-bda2-4dd2-b127-f21e5208d549", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2018-08-07", + "startDate": "2017-07-01", "notes": "", "roles": [ "ORGANIZATION" ], + "siteRegistry": true + }, + { + "uuid": "7cfc77b0-5eaf-4f1c-9652-f562c93764b7", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2020-12-04", + "startDate": "2016-10-17", + "notes": "", + "roles": [ + "EMPLOYEE" + ], "siteRegistry": false }, { - "uuid": "6524bdd8-9044-41d7-9c61-7a8a067346f8", - "name": "IPSUM", - "endDate": "2016-01-23", - "startDate": "2019-01-31", + "uuid": "9cc69eaf-a5a5-4697-8d6e-167d63f7774e", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2023-06-09", + "startDate": "2020-01-12", "notes": "", "roles": [ "ORGANIZATION" ], "siteRegistry": true + }, + { + "uuid": "701b0b40-249a-4e71-bc6a-6927a361abf9", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2023-02-21", + "startDate": "2017-05-12", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + } + ], + "documents": [ + { + "uuid": "50a85d77-b45c-4ed2-973c-90dbbdaee06a", + "siteRegistry": true, + "documentDate": "2017-05-18", + "receivedDate": "2021-12-23", + "uploadedDate": "2015-08-03", + "title": "Summary of Site Conditions, 1537 W 41st Avenue, Vancouver", + "participants": [ + { + "uuid": "3610733a-77e9-4571-ac1a-88f00abbf052", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": false, + "role": "AUTHOR" + } + ] } ], "suspectLandUses": [ { - "uuid": "d12d6c42-90c4-41bf-9e1f-76b281856575", - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-08-26 (described on Site Profile dated 2014-08-26)", + "uuid": "bc968880-9b4f-4f8e-8c75-790b7df893ab", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2020-04-30 (described on Site Profile dated 2020-04-30)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "uuid": "db5d4832-2dad-4b6b-93af-ef0946afb491", + "uuid": "5c0b7159-48bc-412a-b57d-f2219a128abd", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2023-06-05 (described on Site Profile dated 2023-06-05)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "uuid": "e97cd47c-e3ba-463b-9bf5-85fb3ae87671", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-10-15 (described on Site Profile dated 2019-10-15)", + "notes": "INSERTED FOR SITE PROFILE DATED 2018-07-13 (described on Site Profile dated 2018-07-13)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "uuid": "dbdcd91f-d1d6-4091-af53-3baf2795ea38", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2022-03-18 (described on Site Profile dated 2022-03-18)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], "parcelDescriptions": [ { - "uuid": "1cd71265-ce3a-48bc-8762-bc57d25020a2", - "siteRegistry": false, - "dateNoted": "2020-06-25", - "parcelID": "19582", - "crownLandUsePIN": "18784", - "crownLandFileNumber": "17695", - "landDescription": "LOT 3 OF LOT 2 BLOCK 1 DISTRICT LOT 4 PLAN 3286" + "uuid": "646106fe-85cb-456b-b7ab-743526dd6e25", + "siteRegistry": true, + "dateNoted": "2021-10-06", + "parcelID": "19199", + "crownLandUsePIN": "18217", + "crownLandFileNumber": "17637", + "landDescription": "LOT 1 OF LOT 5 BLOCK 1 DISTRICT LOT 1 PLAN 7748" + }, + { + "uuid": "dcd82834-243a-427a-9730-f85f1e1106aa", + "siteRegistry": true, + "dateNoted": "2016-05-26", + "parcelID": "19728", + "crownLandUsePIN": "19941", + "crownLandFileNumber": "16401", + "landDescription": "LOT 1 OF LOT 4 BLOCK 2 DISTRICT LOT 5 PLAN 6068" }, { - "uuid": "10291d3c-c6f1-4fa2-9b7b-c77006eb6f8f", + "uuid": "45b6d3c3-dedf-4f4f-ac1f-f10eec900a7e", "siteRegistry": false, - "dateNoted": "2016-07-06", - "parcelID": "19505", - "crownLandUsePIN": "20780", - "crownLandFileNumber": "20698", - "landDescription": "LOT 4 OF LOT 2 BLOCK 2 DISTRICT LOT 1 PLAN 7633" + "dateNoted": "2017-11-30", + "parcelID": "16036", + "crownLandUsePIN": "17282", + "crownLandFileNumber": "18670", + "landDescription": "LOT 3 OF LOT 2 BLOCK 1 DISTRICT LOT 3 PLAN 4244" }, { - "uuid": "9a0fb5a6-979b-4398-99ce-a287ea32f30c", - "siteRegistry": true, - "dateNoted": "2018-05-07", - "parcelID": "20935", - "crownLandUsePIN": "17576", - "crownLandFileNumber": "19575", - "landDescription": "LOT 5 OF LOT 5 BLOCK 5 DISTRICT LOT 1 PLAN 7961" + "uuid": "d25f753a-9973-4f9e-b556-b9ac435787cd", + "siteRegistry": false, + "dateNoted": "2019-04-23", + "parcelID": "20372", + "crownLandUsePIN": "19094", + "crownLandFileNumber": "18594", + "landDescription": "LOT 2 OF LOT 1 BLOCK 2 DISTRICT LOT 4 PLAN 2990" } ], "siteDisclosures": [ { - "uuid": "3c11bfbf-9456-4d1c-bef3-133debc34e8c", + "uuid": "0a6fa76a-4206-4054-9e6e-3d50ba164882", "siteRegistry": false, - "dateReceived": "2014-04-22", - "dateCompleted": "2022-04-03", - "dateEntered": "2019-06-11", - "dateRegistrar": "2023-09-14", - "dateLocalAuthorityReceived": "2023-10-01", - "summary": "Odio id possimus quam adipisci iste vitae aliquam corrupti.\nSimilique laudantium assumenda.\nNulla voluptatibus accusamus eius repellendus corrupti.", - "informationUsed": "Eos nihil harum hic sit in delectus consequuntur.\nNostrum rem ut dicta.\nAdipisci nemo debitis deserunt reprehenderit velit.", - "pastOrPresentOrders": "Vero aperiam magnam.\nSed quod vel est doloribus iste aspernatur.\nQuae quis suscipit sit.", + "dateReceived": "2021-10-01", + "dateCompleted": "2016-10-14", + "dateEntered": "2014-02-27", + "dateRegistrar": "2021-11-14", + "dateLocalAuthorityReceived": "2019-06-07", + "summary": "Atque incidunt laboriosam.\nPossimus temporibus saepe.", + "informationUsed": "Repellendus magnam magnam accusamus consequuntur assumenda quia dolorem.\nEarum facere illo et excepturi aliquid eius.\nDebitis nostrum veritatis delectus vel.", + "pastOrPresentOrders": "Soluta accusantium nulla consequatur.\nDucimus cum ad.", "commercialAndIndustrialPurposes": [ { - "uuid": "da5f740f-0053-4568-8dc7-b132ce9ad3ab", + "uuid": "fb8b26c0-04f9-4f1d-b7f1-249b298dc051", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "uuid": "ae166e93-121c-495d-ac40-03ff3f164789", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { - "uuid": "cf15de75-09f0-4a3b-acea-ade81040b602", + "uuid": "7a4d2db1-cc6e-4e80-a7c4-34c4411a678c", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true @@ -1727,142 +1757,121 @@ ] }, { - "uuid": "dc8d1587-b574-44c1-8b72-3f286b7f1107", + "uuid": "e6b48320-b8cf-4b7e-8233-c5a4069e4c3e", "siteRegistry": false, - "dateReceived": "2017-06-11", - "dateCompleted": "2023-02-07", - "dateEntered": "2015-05-28", - "dateRegistrar": "2017-05-01", - "dateLocalAuthorityReceived": "2014-01-22", - "summary": "Ea aliquid ullam.\nQuas labore culpa repellendus sunt harum consectetur quam quasi.\nItaque excepturi vitae nobis fugiat doloribus laboriosam sed.", - "informationUsed": "Aliquid soluta iure enim sapiente.\nConsectetur esse accusamus minus mollitia eaque quas autem nobis.\nEum consequatur suscipit nisi eveniet atque eligendi similique.\nNesciunt voluptatem at dolore deleniti.", - "pastOrPresentOrders": "Magni eius odit officia voluptatem voluptatibus.\nAlias fuga neque occaecati fugiat alias dolor pariatur officia sapiente.\nVero atque nam illo quasi quae rem ipsum nostrum nesciunt.", + "dateReceived": "2020-01-01", + "dateCompleted": "2018-01-06", + "dateEntered": "2013-11-01", + "dateRegistrar": "2015-05-29", + "dateLocalAuthorityReceived": "2015-08-19", + "summary": "Ab suscipit hic et asperiores asperiores alias.\nVoluptate quia ex quo.", + "informationUsed": "A omnis eum amet ipsum.\nMagni maiores incidunt quibusdam officia atque mollitia nobis.\nQuisquam odit dolorem vel magni nisi repellat pariatur.", + "pastOrPresentOrders": "Minus tempore iste nobis suscipit numquam officiis non voluptas rerum.\nPorro sapiente maxime corporis ad sequi.", "commercialAndIndustrialPurposes": [ { - "uuid": "4b91869f-eab7-48fc-91ec-3747cb0c283c", - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true - }, - { - "uuid": "f5e2aac3-fd71-4833-91ca-c9604b03fb94", + "uuid": "a831b589-471a-4a34-9b1f-67793fae35e9", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "b5de6750-973e-4691-9220-0cf26edb9e3b", - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true + "uuid": "5ea50313-58cb-4921-b7f2-56500c78936c", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false } ] } ], "activityLog": [ { - "uuid": "3f338957-086b-4893-b92a-261d6421746b", - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "STARK DAWN", - "timestamp": "2020-10-13" - }, - { - "uuid": "826b1193-4ff0-4d2f-b02d-f99a78b93950", - "siteRegistry": true, + "uuid": "8701aa9e-ffa1-45c5-91a0-e36fcc570b76", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "STOKES CLIFTON", - "timestamp": "2016-04-26" + "user": "ZIEME CONCEPCION", + "timestamp": "2014-01-17" }, { - "uuid": "b006b1a3-233c-464b-b2c8-0997a221d433", - "siteRegistry": true, + "uuid": "2cbf0420-6c54-4134-8e85-ece2a26dda87", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "HOWE AMAYA", - "timestamp": "2023-07-29" + "user": "DIETRICH YASMEEN", + "timestamp": "2019-01-21" }, { - "uuid": "edb6c561-0ac0-470c-b90b-89d4de633994", + "uuid": "d678c9a6-e0fe-400d-8eca-61ea18650b85", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "HEATHCOTE HILLARY", - "timestamp": "2014-10-15" + "user": "HANSEN AGUSTIN", + "timestamp": "2022-03-08" }, { - "uuid": "bbbd0693-50ce-4740-ac41-afe428c0a5eb", - "siteRegistry": true, + "uuid": "61acc9f9-80aa-4023-ada7-cf6ad6900521", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "BERNHARD-DAUGHERTY CARMEN", - "timestamp": "2015-11-03" + "user": "SCHILLER LORNA", + "timestamp": "2018-04-17" }, { - "uuid": "81b6d2a4-5d04-413e-be8a-facda4de408b", - "siteRegistry": true, + "uuid": "c868ea91-e01a-4ad3-98f5-12f00ccef3bd", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "SCHIMMEL LOY", - "timestamp": "2020-01-06" + "user": "DOYLE RICARDO", + "timestamp": "2014-04-25" }, { - "uuid": "d292eaba-e75a-4e89-bc26-706267a76b55", + "uuid": "fc053be1-edbc-44df-921b-f6bfcc813e33", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "LEBSACK VIVIAN", - "timestamp": "2021-04-02" + "user": "FUNK JESSICA", + "timestamp": "2017-07-08" } ], "associatedSites": [ { - "uuid": "32535dea-eda1-444c-87cc-01d79b36af76", - "dateNoted": "2019-08-16", - "notes": "", - "parcelID": "16687", - "siteID": "16986", - "siteRegistry": false - }, - { - "uuid": "90be4f55-5889-44ee-a127-e5bf4386b8b2", - "dateNoted": "2015-09-02", + "uuid": "657e4975-6582-45ff-a074-0d6e2adfd065", + "dateNoted": "2021-07-06", "notes": "", - "parcelID": "20997", - "siteID": "16878", + "parcelID": "18307", + "siteID": "20571", "siteRegistry": false }, { - "uuid": "f6a30adf-baed-46ce-b630-f1f95a567769", - "dateNoted": "2014-09-10", + "uuid": "06c13e6f-7eb8-4b00-91d4-810da05c33d9", + "dateNoted": "2014-06-06", "notes": "", - "parcelID": "18216", - "siteID": "17437", - "siteRegistry": false + "parcelID": "19388", + "siteID": "17100", + "siteRegistry": true } ] }, { - "uuid": "80cf6df8-ab40-43fc-b88f-dd44d7936193", - "siteID": 18426, - "address": "74412 Leanne Ports", - "latitude": 51.3047, - "longitude": -135.8537, - "lastUpdated": "2019-08-14", - "city": "Callieworth", - "region": "Cariboo", - "victoriaFile": "26250-20/15103", + "uuid": "602a04a2-f9f0-4bb1-8df5-f5b06379fc00", + "siteID": 19485, + "address": "4940 Alysa Valleys", + "latitude": 48.1086, + "longitude": -134.5774, + "lastUpdated": "2019-09-24", + "city": "Aracelystead", + "region": "Kootenay", + "victoriaFile": "26250-20/16691", "regionalFile": "N/A", "parcelIDs": [ - 9930427, - 428058, - 8476714, - 446547, - 4320945 + 4980671, + 9086091, + 6643913, + 5879354, + 6823070 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "6cfb3181-7b8f-4615-976d-f6d0f3c5a586", - "createdAt": "2017-09-27", - "completed": "2020-08-12", - "initiated": "2020-08-15", - "ministryContact": "O'CONNELL FRANCISCA", + "uuid": "8ebff2bc-ffc5-4ca9-9661-723bbd735a38", + "createdAt": "2021-12-19", + "completed": "2018-12-15", + "initiated": "2022-04-08", + "ministryContact": "KUTCH RAFAEL", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -1871,60 +1880,38 @@ ], "notationParticipants": [ { - "uuid": "ee074299-56c6-4592-8527-d969c669fa54", - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "uuid": "5626b132-b512-4cf4-8df7-d7bd948213c7", - "name": "SHELL CANADA PRODUCTS", + "uuid": "4a44f2cf-b137-478c-8d3e-5fb2d060d332", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false - } - ], - "siteRegistry": true - }, - { - "uuid": "29853833-ad94-4d41-90ae-eeedeaa8973f", - "createdAt": "2013-12-31", - "completed": "2020-02-21", - "initiated": "2018-04-02", - "ministryContact": "WINDLER EUGENIA", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ + }, { - "uuid": "8e580307-67f7-4618-9abd-91cd85791712", - "name": "SHELL CANADA PRODUCTS", + "uuid": "26975543-2364-4850-b779-2558cad4f177", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true }, { - "uuid": "6863a265-3f36-4c38-8fb0-671e21dda95d", + "uuid": "5aab0d5b-51e8-432f-bfce-5d210f06d9fa", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false }, { - "uuid": "3cf9fd63-796d-424d-8255-81966d4968ff", + "uuid": "506d0792-8605-43b9-adeb-172fdf82618f", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "112f85d9-54d4-4259-982a-d1340393c0ba", - "createdAt": "2019-01-17", - "completed": "2021-04-22", - "initiated": "2017-12-08", - "ministryContact": "DICKI HARLEY", + "uuid": "724e93fb-9e87-4a7e-a5ef-f0e23d346f3e", + "createdAt": "2021-03-03", + "completed": "2018-10-27", + "initiated": "2023-04-09", + "ministryContact": "BROWN REYNOLD", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -1933,45 +1920,33 @@ ], "notationParticipants": [ { - "uuid": "cf4aec4c-2f55-4f1b-a7e5-f4fca3e88218", - "name": "SHELL CANADA PRODUCTS", + "uuid": "f135a372-1eca-4f47-b76d-34db0aa4e12e", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false }, { - "uuid": "a0a7e423-78a7-4fbc-b8cb-73fe8a344c2e", + "uuid": "81bc2ca1-ee22-424c-8095-daa8c4ef29ab", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false }, { - "uuid": "f7fc3aa3-0b51-400a-9c44-b5ecabbc0b0f", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "uuid": "4e90038b-e82f-4fb4-a292-3b2eee542844", + "uuid": "31cdaed4-7bd5-42d3-b4bf-254d85f69db1", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true - }, - { - "uuid": "07a685fa-fc03-4ac1-9c4f-cff139182ae6", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false } ], "participants": [ { - "uuid": "16659ba5-07e4-46d9-9133-acf70d51d558", + "uuid": "bacb3e11-a6e3-40fd-bb21-a7be01ecd506", "name": "AMET, DOLOR SIT", - "endDate": "2022-02-22", - "startDate": "2021-10-25", + "endDate": "2016-11-24", + "startDate": "2020-12-19", "notes": "", "roles": [ "EMPLOYEE" @@ -1979,256 +1954,369 @@ "siteRegistry": false }, { - "uuid": "9c568f9c-0a85-4ee3-9dcb-bec7f8b4da31", - "name": "IPSUM", - "endDate": "2023-05-08", - "startDate": "2015-07-17", + "uuid": "a18670f2-afe5-4cb5-a979-44168ebf989e", + "name": "AMET, DOLOR SIT", + "endDate": "2017-10-09", + "startDate": "2016-04-30", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": true - } - ], - "suspectLandUses": [ - { - "uuid": "6174e1ee-555c-473d-b777-3b169304f036", - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-03-01 (described on Site Profile dated 2014-03-01)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" - }, - { - "uuid": "702c3629-4fd5-45b5-baf9-856953939bdc", - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2023-09-16 (described on Site Profile dated 2023-09-16)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "uuid": "d8fdc72c-cd13-49d7-bfa3-d117084ad5ba", - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-05-11 (described on Site Profile dated 2019-05-11)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" - } - ], - "parcelDescriptions": [ - { - "uuid": "ed5ab75e-663d-44ff-9242-0b882417e109", - "siteRegistry": false, - "dateNoted": "2017-04-20", - "parcelID": "18551", - "crownLandUsePIN": "18660", - "crownLandFileNumber": "19307", - "landDescription": "LOT 1 OF LOT 4 BLOCK 4 DISTRICT LOT 1 PLAN 6184" + "uuid": "2fa72307-a208-4cb5-9078-c47cb352cf04", + "name": "IPSUM", + "endDate": "2018-03-29", + "startDate": "2022-04-05", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false }, { - "uuid": "0ac04302-570c-43d8-a835-6b5093727b4f", - "siteRegistry": true, - "dateNoted": "2017-05-28", - "parcelID": "15922", - "crownLandUsePIN": "17725", - "crownLandFileNumber": "15202", - "landDescription": "LOT 4 OF LOT 4 BLOCK 4 DISTRICT LOT 2 PLAN 9374" + "uuid": "f7062d46-cfa5-4986-ba35-ab846606f834", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2022-02-21", + "startDate": "2022-10-18", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true }, { - "uuid": "7330df6f-0409-4108-8789-b54b6c3c3c94", - "siteRegistry": false, - "dateNoted": "2018-01-31", - "parcelID": "16248", - "crownLandUsePIN": "20255", - "crownLandFileNumber": "20531", - "landDescription": "LOT 3 OF LOT 5 BLOCK 4 DISTRICT LOT 1 PLAN 9092" + "uuid": "fcbd4e96-5427-4f3b-8d56-9ad81636ddf1", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2014-03-02", + "startDate": "2022-07-21", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true } ], - "siteDisclosures": [ + "documents": [ { - "uuid": "3f204059-1fdd-4584-a5f5-c0b65e2c76fd", + "uuid": "e5e5e92a-0b76-49a3-a0e3-d9516cf31e09", "siteRegistry": true, - "dateReceived": "2014-06-28", - "dateCompleted": "2022-12-28", - "dateEntered": "2019-01-23", - "dateRegistrar": "2017-11-23", - "dateLocalAuthorityReceived": "2020-06-23", - "summary": "Libero assumenda aliquid porro.", - "informationUsed": "Itaque recusandae molestias dolor.\nOfficiis optio a accusamus labore.\nNulla quia aut facere harum voluptate explicabo.", - "pastOrPresentOrders": "Iure corporis modi enim non repellat reprehenderit.", - "commercialAndIndustrialPurposes": [ - { - "uuid": "a80be384-b8c9-462a-9c6c-7ae350767f2a", - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false - }, + "documentDate": "2020-01-02", + "receivedDate": "2023-08-22", + "uploadedDate": "2022-11-28", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ { - "uuid": "93516990-96c5-41bc-9969-93a08cbf4311", - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false + "uuid": "d7188ba9-f6a9-4832-9068-6d7ba1cfd9a3", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": true, + "role": "AUTHOR" }, { - "uuid": "42d3150e-4286-43f2-a75c-fce078a65a35", - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false + "uuid": "b1415b34-01c6-47ce-9281-fa3a9b1f58a7", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": true, + "role": "AUTHOR" }, { - "uuid": "b40500f6-a46c-490b-9e4c-393cf3bcdc09", - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true + "uuid": "7dda3f66-39c1-4236-acce-c5b3e82934c1", + "name": "IPSUM", + "siteRegistry": false, + "role": "AUTHOR" } ] }, { - "uuid": "3bd3404c-99ad-427e-b7e1-6c129fec7fb5", + "uuid": "d58199d1-a9e9-4990-b580-68590b1cd378", "siteRegistry": true, - "dateReceived": "2020-11-14", - "dateCompleted": "2022-08-13", - "dateEntered": "2018-12-25", - "dateRegistrar": "2020-08-30", - "dateLocalAuthorityReceived": "2018-08-04", - "summary": "Ab perspiciatis harum non at.", - "informationUsed": "Repellat sint veniam libero iure iusto voluptate.\nId non adipisci architecto at.\nIpsam culpa doloremque minima facere harum asperiores totam nostrum.", - "pastOrPresentOrders": "Itaque temporibus vero quae saepe illo enim.\nDistinctio velit maxime modi aut delectus perspiciatis totam quam sunt.", - "commercialAndIndustrialPurposes": [ + "documentDate": "2019-11-20", + "receivedDate": "2021-04-11", + "uploadedDate": "2018-01-12", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ { - "uuid": "b14d4f99-57de-4024-8a7c-4e475f595752", - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false + "uuid": "35887b11-8716-4bb9-9de6-a33a1c9f1de0", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": false, + "role": "AUTHOR" }, { - "uuid": "ca863c06-9ee2-4d0f-b046-966bb708719c", - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false + "uuid": "67b46f09-1157-4aba-a9a7-46a1577ec667", + "name": "AMET, DOLOR SIT", + "siteRegistry": true, + "role": "AUTHOR" }, { - "uuid": "d697f829-ca62-411b-8c15-3d7e612ac295", - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false + "uuid": "9d062303-3732-43b8-9e37-d3e2965f39af", + "name": "AMET, DOLOR SIT", + "siteRegistry": true, + "role": "AUTHOR" } ] - } - ], - "activityLog": [ - { - "uuid": "1f553132-7a83-47d9-b612-2543a28b037b", - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "LEFFLER DEJUAN", - "timestamp": "2013-10-21" - }, - { - "uuid": "8e854d9e-be50-468c-a8ed-b9820ff97563", - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "HOWELL MADDISON", - "timestamp": "2018-09-16" }, { - "uuid": "d141320b-641d-4184-b7d6-c901b0f8085b", + "uuid": "9ce955ad-199b-4d0e-a8d3-aa7f5a29f014", "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "CONROY LEOLA", - "timestamp": "2017-06-19" + "documentDate": "2017-04-26", + "receivedDate": "2018-04-23", + "uploadedDate": "2016-05-02", + "title": "Preliminary Site Investigation, Detailed Site Investigation and Remedial Plan for the Management Area adjacent to the Shell Site at 1503 West 41st Ave", + "participants": [ + { + "uuid": "723f7256-ec08-43b0-8b11-d441e4c4f576", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "f00f2cdd-c486-4de1-a49c-42f241d62952", + "name": "AMET, DOLOR SIT", + "siteRegistry": true, + "role": "AUTHOR" + } + ] }, { - "uuid": "9b8b4aea-4628-4a99-b4b3-57f49d87587c", + "uuid": "839f205b-7e59-4e25-8935-f42a19767f13", + "siteRegistry": true, + "documentDate": "2015-11-08", + "receivedDate": "2021-11-24", + "uploadedDate": "2023-01-02", + "title": "Preliminary Site Investigation, Detailed Site Investigation and Remedial Plan for the Management Area adjacent to the Shell Site at 1503 West 41st Ave", + "participants": [ + { + "uuid": "4ebc39fe-0bde-4639-bc3f-6bc6af8bd3e8", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "c86a6d5e-51f7-40e3-99a3-754c976f6836", + "name": "IPSUM", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "4ba9b909-e6be-4c78-aca3-1c6998502c3a", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": true, + "role": "AUTHOR" + } + ] + }, + { + "uuid": "6e1d60f4-0f34-4bde-b918-b66a72c2ddf0", "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "YUNDT ROSELYN", - "timestamp": "2018-02-08" + "documentDate": "2016-05-20", + "receivedDate": "2015-01-16", + "uploadedDate": "2015-02-08", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "c31385e7-7b23-477b-b1f9-14175cd67710", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": true, + "role": "AUTHOR" + } + ] + } + ], + "suspectLandUses": [ + { + "uuid": "88bc9a47-63cf-4448-9571-9b8d12313617", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2022-08-26 (described on Site Profile dated 2022-08-26)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "uuid": "6c5c4625-dae4-46f2-8b2b-c61113be4f8a", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2019-01-27 (described on Site Profile dated 2019-01-27)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "uuid": "8a794dd5-c288-42ed-b019-3f976150a0a1", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2023-01-21 (described on Site Profile dated 2023-01-21)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "uuid": "8580b0a8-acae-446a-a95c-088a61a4cabe", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2019-11-20 (described on Site Profile dated 2019-11-20)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + } + ], + "parcelDescriptions": [ + { + "uuid": "705372dd-52c2-4342-9082-fcda3355ace4", + "siteRegistry": false, + "dateNoted": "2014-12-01", + "parcelID": "19522", + "crownLandUsePIN": "16518", + "crownLandFileNumber": "19494", + "landDescription": "LOT 1 OF LOT 5 BLOCK 2 DISTRICT LOT 3 PLAN 3745" + }, + { + "uuid": "27db7c8a-d914-4697-8302-0b1b781a8b89", + "siteRegistry": false, + "dateNoted": "2022-03-31", + "parcelID": "16374", + "crownLandUsePIN": "18833", + "crownLandFileNumber": "19254", + "landDescription": "LOT 1 OF LOT 1 BLOCK 3 DISTRICT LOT 4 PLAN 8178" + }, + { + "uuid": "ecdb4b9d-b17f-484b-bba1-ae063364aa53", + "siteRegistry": true, + "dateNoted": "2023-03-11", + "parcelID": "19142", + "crownLandUsePIN": "19327", + "crownLandFileNumber": "20276", + "landDescription": "LOT 5 OF LOT 5 BLOCK 5 DISTRICT LOT 3 PLAN 7147" }, { - "uuid": "ba46dbe5-5aa7-4c35-9640-69dfe3d77279", + "uuid": "353c2c42-fc02-410a-af0b-c8f56e7ad801", + "siteRegistry": true, + "dateNoted": "2020-05-18", + "parcelID": "18659", + "crownLandUsePIN": "20951", + "crownLandFileNumber": "16248", + "landDescription": "LOT 1 OF LOT 4 BLOCK 3 DISTRICT LOT 5 PLAN 4300" + } + ], + "siteDisclosures": [ + { + "uuid": "8e391efd-6704-43a2-85cd-223c9c86fd97", + "siteRegistry": false, + "dateReceived": "2015-05-18", + "dateCompleted": "2019-02-28", + "dateEntered": "2019-06-21", + "dateRegistrar": "2023-06-29", + "dateLocalAuthorityReceived": "2018-01-07", + "summary": "At voluptas adipisci.", + "informationUsed": "Similique non molestiae corporis asperiores accusantium quibusdam nulla molestiae quasi.\nQuidem corporis deleniti nulla cumque.\nQuam non harum sit autem ut quasi quam cumque.\nHarum est aliquid atque inventore id iusto qui saepe.", + "pastOrPresentOrders": "Optio rem earum.\nRepellendus sint iusto doloremque.\nEa reprehenderit et ex placeat dolores sed.", + "commercialAndIndustrialPurposes": [ + { + "uuid": "ed339d57-fc82-41bf-915f-a89f05c28693", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "uuid": "76feef29-6006-4b51-afdd-0029255ea1ee", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + } + ] + } + ], + "activityLog": [ + { + "uuid": "d79c9039-c5be-4b24-88ab-aa48d6530995", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "DACH CAROLYNE", - "timestamp": "2019-01-08" + "user": "FEIL LOIS", + "timestamp": "2018-05-09" }, { - "uuid": "039a7140-c66c-4928-897d-50bd4c7c64de", + "uuid": "04a755bb-c94f-4f56-a07f-02cb832c4409", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "MARQUARDT YESENIA", - "timestamp": "2013-12-31" + "user": "FEIL CADEN", + "timestamp": "2019-11-03" + }, + { + "uuid": "df26980d-5f42-47f5-811b-66966beee318", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "GREEN HIRAM", + "timestamp": "2021-08-25" }, { - "uuid": "34897805-e973-43bf-bb7c-51d5a431cba0", + "uuid": "cf02ff65-70be-4e78-905b-9ddac9c4f25b", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "KLOCKO LIZETH", - "timestamp": "2019-10-19" + "user": "ZIEME CLEVELAND", + "timestamp": "2019-11-13" + }, + { + "uuid": "f9a3e504-5dd2-471e-926d-ab8446880cda", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "WILL JULIO", + "timestamp": "2017-03-20" }, { - "uuid": "a7f83510-584f-4efb-8496-f0cb11906c32", + "uuid": "ce01993f-6d50-4fea-8f07-6c95d1466f12", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "MURRAY SKYE", - "timestamp": "2020-06-15" + "user": "HODKIEWICZ SABRINA", + "timestamp": "2016-04-05" }, { - "uuid": "9d8e57c4-0bbe-4879-a4db-5c8cd26e6684", + "uuid": "1de813ac-5f47-476f-9541-b32c207ca07d", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "HAYES TYRA", - "timestamp": "2020-11-02" + "user": "DECKOW NIGEL", + "timestamp": "2019-09-21" + }, + { + "uuid": "cb43356a-0bae-47e5-acc0-ac03be1fe3f3", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "CARTWRIGHT CARLEE", + "timestamp": "2013-12-10" } ], "associatedSites": [ { - "uuid": "1e832822-1676-4b53-8405-9a9a931ca8a6", - "dateNoted": "2019-01-06", - "notes": "", - "parcelID": "16221", - "siteID": "16913", - "siteRegistry": true - }, - { - "uuid": "a826d10e-4446-4d15-8b2f-a2e09c655ba5", - "dateNoted": "2021-11-24", + "uuid": "d78da471-c25e-45b6-833b-8b7b598d8f55", + "dateNoted": "2019-03-30", "notes": "", - "parcelID": "19806", - "siteID": "16895", + "parcelID": "18190", + "siteID": "17141", "siteRegistry": true }, { - "uuid": "23352b3e-fcdb-41b7-bed9-3b07a062ba5c", - "dateNoted": "2013-11-13", + "uuid": "32839492-e9b6-474f-87e6-1babba00cb32", + "dateNoted": "2015-05-31", "notes": "", - "parcelID": "17520", - "siteID": "19196", + "parcelID": "16335", + "siteID": "15917", "siteRegistry": true } ] }, { - "uuid": "f6ac9981-baba-41be-bb07-b39edb1c2712", - "siteID": 19481, - "address": "625 Ernser Cliffs", - "latitude": 48.7486, - "longitude": -130.5168, - "lastUpdated": "2017-03-16", - "city": "Fort Coltencester", - "region": "Mainland/Southwest", - "victoriaFile": "26250-20/3212", + "uuid": "aed14380-a242-4d9e-898a-cdf6abefacee", + "siteID": 16874, + "address": "7544 Annie Mount", + "latitude": 55.808, + "longitude": -121.1631, + "lastUpdated": "2016-09-14", + "city": "Connellyfield", + "region": " North Coast", + "victoriaFile": "26250-20/19744", "regionalFile": "N/A", "parcelIDs": [ - 8067538, - 2115509, - 6538771, - 4025349, - 1529970 + 2674036, + 840475, + 3665867, + 2541695, + 7248799 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "434c3378-242b-457f-a5b1-b42f173ec870", - "createdAt": "2019-10-25", - "completed": "2013-11-18", - "initiated": "2017-10-27", - "ministryContact": "CHRISTIANSEN VERGIE", + "uuid": "473d27e9-86c2-44fe-8f0f-c239508c0e94", + "createdAt": "2021-04-29", + "completed": "2019-11-11", + "initiated": "2023-06-04", + "ministryContact": "WYMAN ALISON", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -2237,44 +2325,38 @@ ], "notationParticipants": [ { - "uuid": "627dde9c-9a7f-4849-91d3-1ccce01385a8", + "uuid": "ae5438de-420a-41e3-b41f-b64e6819f8ca", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false + "role": "SUBMITTED BY", + "siteRegistry": true }, { - "uuid": "8fe9b30f-5525-44d0-b4f1-68783ae01821", + "uuid": "94751a13-b53d-4b85-bfa8-f4a04a262752", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true }, { - "uuid": "5fefd3e6-3816-4e8c-8576-f2f587953853", + "uuid": "47bb405d-37a8-4347-a5c2-55d6a57546b2", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "uuid": "f63323e1-baff-47d2-802b-c306952fdaf9", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "25151398-00c9-4600-9a81-d63033d483f4", - "name": "SHELL CANADA PRODUCTS", + "uuid": "074429f3-1b06-40ee-a340-806ef3da0bec", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "bd009eec-6c55-48b3-8754-feb6979f57ca", - "createdAt": "2015-05-02", - "completed": "2015-05-01", - "initiated": "2016-09-29", - "ministryContact": "FRANEY MCKENZIE", + "uuid": "c17d392e-a7f0-4f64-8433-ac9a0083c592", + "createdAt": "2023-04-04", + "completed": "2014-01-03", + "initiated": "2016-03-05", + "ministryContact": "CORWIN TANYA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -2283,14 +2365,14 @@ ], "notationParticipants": [ { - "uuid": "de95e7ca-7708-4043-be93-2dfb1b43d6da", + "uuid": "ed3dcb80-c3e8-4655-935a-fbb804f966b5", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "7bdd768f-4351-4576-8fcf-79f366fc4e92", - "name": "SHELL CANADA PRODUCTS", + "uuid": "4234033f-b5e6-4450-8ac2-335862ce1777", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false } @@ -2298,11 +2380,11 @@ "siteRegistry": false }, { - "uuid": "79a7063c-7624-43a5-aaf2-ce456c96c597", - "createdAt": "2014-10-17", - "completed": "2021-09-13", - "initiated": "2015-02-21", - "ministryContact": "FRAMI OTILIA", + "uuid": "31834d0f-db2e-4a17-ad80-a020b02b84f3", + "createdAt": "2015-02-09", + "completed": "2019-05-28", + "initiated": "2015-04-29", + "ministryContact": "OKUNEVA THORA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -2311,44 +2393,38 @@ ], "notationParticipants": [ { - "uuid": "f4eb74c1-7b0e-438e-9255-039259429bdc", + "uuid": "0705a8f4-59db-4692-9936-ed798eb126b3", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true }, { - "uuid": "d0d048e0-c38f-4e85-891a-a90dd0cd2f7a", + "uuid": "2dc15bb2-a3b9-4234-8e45-f23d85e20ac5", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "29d3bc92-bd29-4237-9f3c-f128bfbf1843", - "name": "SHELL CANADA PRODUCTS", + "uuid": "503fde1c-6f43-4fdf-9abe-cf905d27ad61", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true }, { - "uuid": "4c7664b4-49dd-45a2-ae45-00f622127882", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "uuid": "7a0f436d-62fd-42a0-9004-e7790d759f66", + "uuid": "f1f49797-f63d-44e6-8502-8c9191345bc7", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "3265e31b-5ae7-4a4e-9117-ef700fd45980", - "createdAt": "2023-04-26", - "completed": "2014-05-13", - "initiated": "2015-05-11", - "ministryContact": "JACOBSON WAVA", + "uuid": "c521c500-9e0f-48cb-9d4c-fc9b34975393", + "createdAt": "2022-08-24", + "completed": "2022-12-22", + "initiated": "2019-07-23", + "ministryContact": "LEUSCHKE CHARLEY", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -2357,22 +2433,34 @@ ], "notationParticipants": [ { - "uuid": "1d14bf15-45be-4782-8a48-d8dd368b4d33", + "uuid": "31252b5c-8ed5-4ca2-b575-17c9abdd0431", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "d550793a-c501-4082-8c3d-aedc38fc180b", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "uuid": "21e390e7-c87f-461c-a090-3134d2675305", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "4fba2292-0b31-46f7-9c87-9afdc57d2ca2", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "ecd6859f-c116-4de6-9970-64e6cf9120a0", + "uuid": "af17e455-83fc-4648-9640-d44d86b3225a", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true + }, + { + "uuid": "12c0540d-881a-4a93-a890-3391f9166ea2", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false } ], "siteRegistry": true @@ -2380,43 +2468,43 @@ ], "participants": [ { - "uuid": "308c3464-df37-4c8b-8d76-300607e176e9", + "uuid": "be670e22-4e4e-4985-9de5-8ebb21ed0f39", "name": "SHELL CANADA PRODUCTS", - "endDate": "2019-08-02", - "startDate": "2016-01-29", + "endDate": "2020-02-09", + "startDate": "2021-11-22", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "33588095-6b37-4b07-9c6a-b2f3b3927fda", - "name": "IPSUM", - "endDate": "2019-02-07", - "startDate": "2014-05-29", + "uuid": "587b69a2-e436-4ee4-95dd-c5370a59185a", + "name": "AMET, DOLOR SIT", + "endDate": "2020-06-01", + "startDate": "2021-06-11", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "abb79793-c70d-40b7-b94f-f70c03a02d02", - "name": "AMET, DOLOR SIT", - "endDate": "2016-12-15", - "startDate": "2022-06-25", + "uuid": "d3f7f295-b7b5-4394-904e-8c9a62accdf7", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2022-04-22", + "startDate": "2022-06-01", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "a2867f47-6d85-4208-904b-2b712b489a91", - "name": "IPSUM", - "endDate": "2020-01-18", - "startDate": "2019-12-11", + "uuid": "b135bbb5-a3ca-4cc1-9f84-ac69f3caecaf", + "name": "AMET, DOLOR SIT", + "endDate": "2021-05-28", + "startDate": "2018-07-06", "notes": "", "roles": [ "EMPLOYEE" @@ -2424,232 +2512,360 @@ "siteRegistry": false }, { - "uuid": "a887ff8c-dd11-4d72-8c86-1924348aa1bf", - "name": "AMET, DOLOR SIT", - "endDate": "2015-04-12", - "startDate": "2018-01-02", + "uuid": "2c09e1d5-e7a0-46fe-80a1-8260d985e26d", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2016-05-29", + "startDate": "2014-07-12", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": false } ], - "suspectLandUses": [ + "documents": [ + { + "uuid": "5a183919-23cf-412f-bc43-5c17756d870f", + "siteRegistry": false, + "documentDate": "2014-10-20", + "receivedDate": "2018-11-24", + "uploadedDate": "2017-08-13", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "b395b403-2a1e-40e4-88e3-43737b633e22", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": false, + "role": "AUTHOR" + } + ] + }, + { + "uuid": "c01032ad-a44d-4d85-b9d3-605fc301109a", + "siteRegistry": true, + "documentDate": "2021-02-28", + "receivedDate": "2021-12-28", + "uploadedDate": "2018-09-12", + "title": "Summary of Site Conditions, 1537 W 41st Avenue, Vancouver", + "participants": [ + { + "uuid": "06e916de-5fdb-4614-b389-2d8291557748", + "name": "IPSUM", + "siteRegistry": true, + "role": "AUTHOR" + } + ] + }, + { + "uuid": "62296864-0c36-49d1-aee2-14f462b0c55c", + "siteRegistry": true, + "documentDate": "2019-03-19", + "receivedDate": "2021-07-03", + "uploadedDate": "2018-02-28", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "851153d8-7c5b-40bb-9ab5-d7952f3138c5", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": true, + "role": "AUTHOR" + } + ] + }, { - "uuid": "52231709-7bb2-479e-8146-7b03eefb4d02", + "uuid": "485a4eaa-dc37-4af8-9e48-12fd09ae0a96", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-02-21 (described on Site Profile dated 2014-02-21)", + "documentDate": "2018-03-23", + "receivedDate": "2019-12-06", + "uploadedDate": "2014-01-18", + "title": "Summary of Site Conditions, 1537 W 41st Avenue, Vancouver", + "participants": [ + { + "uuid": "d08b6cd7-f6ad-4d40-94d4-6e22ec8dd835", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "06d31f42-69d4-4388-a615-0d8263519252", + "name": "AMET, DOLOR SIT", + "siteRegistry": true, + "role": "AUTHOR" + } + ] + }, + { + "uuid": "e36c203e-5877-4ac5-ab73-81270a131612", + "siteRegistry": false, + "documentDate": "2023-07-25", + "receivedDate": "2019-10-28", + "uploadedDate": "2018-03-20", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "c64c9e91-0737-43aa-b85f-9995764422bf", + "name": "IPSUM", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "824f4179-6bdb-4079-be18-fd5ae3cb27df", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": true, + "role": "AUTHOR" + } + ] + } + ], + "suspectLandUses": [ + { + "uuid": "27ee2117-5940-41fd-b2ec-67bf8653c788", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2018-09-25 (described on Site Profile dated 2018-09-25)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "uuid": "49a68767-5dec-4ecf-8a07-a0e03faddcae", + "uuid": "44d0eeb1-8508-41c8-8ad2-dea86cbf27d4", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2019-12-31 (described on Site Profile dated 2019-12-31)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "uuid": "d281fd94-1544-427f-8126-e5911393b2d4", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-05-01 (described on Site Profile dated 2021-05-01)", + "notes": "INSERTED FOR SITE PROFILE DATED 2022-02-25 (described on Site Profile dated 2022-02-25)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], "parcelDescriptions": [ { - "uuid": "9293e161-64e0-4a59-b502-a7958616e458", - "siteRegistry": false, - "dateNoted": "2023-06-10", - "parcelID": "19260", - "crownLandUsePIN": "15802", - "crownLandFileNumber": "19784", - "landDescription": "LOT 1 OF LOT 1 BLOCK 2 DISTRICT LOT 5 PLAN 6182" + "uuid": "a844d551-3bd6-47c7-a444-18ea5bd024ef", + "siteRegistry": true, + "dateNoted": "2023-04-27", + "parcelID": "16121", + "crownLandUsePIN": "15816", + "crownLandFileNumber": "16382", + "landDescription": "LOT 4 OF LOT 1 BLOCK 2 DISTRICT LOT 3 PLAN 5679" }, { - "uuid": "bcaf1632-fbe1-4abc-bccc-f03e6ed5e0f6", - "siteRegistry": true, - "dateNoted": "2014-05-11", - "parcelID": "16349", - "crownLandUsePIN": "17079", - "crownLandFileNumber": "16320", - "landDescription": "LOT 2 OF LOT 2 BLOCK 5 DISTRICT LOT 3 PLAN 5961" + "uuid": "2d0038cd-bffd-403f-8d3c-a7f5d6112269", + "siteRegistry": false, + "dateNoted": "2014-06-22", + "parcelID": "17587", + "crownLandUsePIN": "15596", + "crownLandFileNumber": "17275", + "landDescription": "LOT 1 OF LOT 2 BLOCK 3 DISTRICT LOT 1 PLAN 6885" }, { - "uuid": "363720f0-670e-4f8a-b619-28212c78582f", + "uuid": "6d2ad36f-6277-4d83-9158-f7d61a84787a", "siteRegistry": true, - "dateNoted": "2016-09-05", - "parcelID": "17542", - "crownLandUsePIN": "15500", - "crownLandFileNumber": "19596", - "landDescription": "LOT 4 OF LOT 3 BLOCK 2 DISTRICT LOT 1 PLAN 3520" + "dateNoted": "2017-04-27", + "parcelID": "15279", + "crownLandUsePIN": "19894", + "crownLandFileNumber": "19699", + "landDescription": "LOT 4 OF LOT 1 BLOCK 5 DISTRICT LOT 2 PLAN 5399" }, { - "uuid": "5fcf5449-c208-473a-a56b-082461cfe47b", + "uuid": "20e7c435-374e-4843-b042-001e450bcd66", "siteRegistry": false, - "dateNoted": "2017-10-06", - "parcelID": "20536", - "crownLandUsePIN": "16189", - "crownLandFileNumber": "20042", - "landDescription": "LOT 5 OF LOT 1 BLOCK 4 DISTRICT LOT 2 PLAN 7773" + "dateNoted": "2017-11-26", + "parcelID": "16118", + "crownLandUsePIN": "16660", + "crownLandFileNumber": "20072", + "landDescription": "LOT 2 OF LOT 4 BLOCK 4 DISTRICT LOT 5 PLAN 8288" + }, + { + "uuid": "c579192f-7c17-4ad5-825d-b7ded3faaf81", + "siteRegistry": true, + "dateNoted": "2023-04-05", + "parcelID": "16590", + "crownLandUsePIN": "20832", + "crownLandFileNumber": "16603", + "landDescription": "LOT 1 OF LOT 3 BLOCK 2 DISTRICT LOT 2 PLAN 7395" } ], "siteDisclosures": [ { - "uuid": "6ea7f289-e868-4a04-936b-1aa72cfc4fe3", - "siteRegistry": false, - "dateReceived": "2022-08-26", - "dateCompleted": "2014-03-05", - "dateEntered": "2015-11-26", - "dateRegistrar": "2018-04-21", - "dateLocalAuthorityReceived": "2015-03-23", - "summary": "Cum ea nulla repellat recusandae.", - "informationUsed": "Blanditiis nam magnam numquam.\nRepellat rerum doloremque eveniet sint voluptatum aliquid.\nEligendi placeat ab voluptates accusantium repellat odio.\nImpedit ut rem.\nRem distinctio ipsam velit necessitatibus atque nemo asperiores voluptate.", - "pastOrPresentOrders": "Nam totam cumque excepturi animi eius.\nOdit dolore repellat hic quasi vitae.\nEst facere excepturi eum consequuntur facilis officiis provident sed.", + "uuid": "2836d9d1-e0df-4162-b8eb-21b9775da432", + "siteRegistry": true, + "dateReceived": "2017-09-28", + "dateCompleted": "2017-02-19", + "dateEntered": "2023-06-20", + "dateRegistrar": "2015-10-22", + "dateLocalAuthorityReceived": "2015-07-26", + "summary": "Aperiam tenetur illo sapiente repudiandae voluptatum quod officia.\nNulla ut temporibus sunt.\nNeque tempore consequatur quia voluptatem cum sit atque corrupti.", + "informationUsed": "Ipsa dolore praesentium corrupti sequi accusantium est dignissimos.\nAperiam nobis repellendus.\nEst ut aut.\nOdit est aliquid.\nModi soluta officiis occaecati cupiditate commodi sed consequatur.", + "pastOrPresentOrders": "Quibusdam libero exercitationem possimus unde rerum itaque.", "commercialAndIndustrialPurposes": [ { - "uuid": "da27f5d9-c120-4ea3-8431-cb8c411c2b70", + "uuid": "362d3890-9f6e-4bf2-9d19-d1e1cad58739", "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false }, { - "uuid": "d58ff06a-c189-479c-a6f4-c25e118ff78a", - "scheduleReference": "F2*", + "uuid": "6d9f6e05-9780-40a3-9810-620dfeb710e9", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true + }, + { + "uuid": "39c89f29-aad7-4e82-a7a6-f3812fe73dab", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true } ] }, { - "uuid": "46cd3d5f-8cc1-4a9f-9d7a-5ae26578300d", + "uuid": "85305087-443b-4dde-9556-20a044e4d9ca", "siteRegistry": false, - "dateReceived": "2018-01-21", - "dateCompleted": "2020-10-09", - "dateEntered": "2018-06-14", - "dateRegistrar": "2014-12-28", - "dateLocalAuthorityReceived": "2018-10-07", - "summary": "Ipsam ut culpa et quo omnis.\nExplicabo ipsa deserunt placeat mollitia ab dolore sequi est consectetur.", - "informationUsed": "Maiores iusto asperiores perferendis labore unde excepturi aut sed.\nEveniet laboriosam sed doloribus placeat minus sit tempore.\nFacilis quos voluptatem iure quidem repudiandae.\nMaiores provident suscipit corrupti deleniti eligendi voluptate.", - "pastOrPresentOrders": "Quos nemo magni reprehenderit.\nDoloribus quasi non asperiores mollitia veritatis ipsa.", + "dateReceived": "2014-01-19", + "dateCompleted": "2016-08-20", + "dateEntered": "2021-08-29", + "dateRegistrar": "2016-10-15", + "dateLocalAuthorityReceived": "2015-06-28", + "summary": "Maiores minima quasi sed laboriosam praesentium iusto veniam quibusdam quidem.", + "informationUsed": "Architecto sequi nemo sequi optio.\nIusto vel molestias laborum soluta asperiores dicta totam quae blanditiis.\nVeritatis corporis soluta deserunt itaque necessitatibus totam libero quasi.\nDolorem necessitatibus iusto mollitia voluptatibus.", + "pastOrPresentOrders": "Molestiae recusandae molestiae explicabo ducimus.\nAlias debitis et perferendis.", "commercialAndIndustrialPurposes": [ { - "uuid": "3f2fa4d0-67b0-405d-9051-615218569563", + "uuid": "36657b79-ae14-46b8-8e78-93bbabc90c3a", "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false }, { - "uuid": "20d3e75b-98eb-4034-92f5-9f222af334f8", + "uuid": "bc8d8ed9-7bd2-4bcb-996e-da0f2b649690", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true + }, + { + "uuid": "3473febf-c2e6-48cd-9dd9-32d0e40800a9", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "uuid": "eea66277-b9a9-47cd-a7dc-a077688a6e8b", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false } ] } ], "activityLog": [ { - "uuid": "f43267b7-1680-4060-8103-f92b031b0563", + "uuid": "e98bc93f-f40a-471f-be25-0954e3988a3c", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "BERGNAUM MYRIAM", - "timestamp": "2015-03-21" + "user": "LANGOSH TIFFANY", + "timestamp": "2021-01-24" }, { - "uuid": "99d427a8-7581-4c34-827b-c1b7ea832697", + "uuid": "bbe2a28c-2dd2-4068-b449-76d415ec93a6", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "HUEL-THIEL SIGRID", - "timestamp": "2014-03-05" + "user": "GREEN ALLY", + "timestamp": "2016-08-28" }, { - "uuid": "9a5db15a-38b9-4761-b00e-0094db6d0ea4", + "uuid": "e2a15ca8-13d0-4cc7-8858-258f0a141331", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "NIENOW VINCE", - "timestamp": "2021-03-15" + "user": "VONRUEDEN-POWLOWSKI ANNAMARIE", + "timestamp": "2023-10-03" }, { - "uuid": "7a4e709f-8940-4aa8-86ec-f0dc3899c484", + "uuid": "27977ee3-c4c9-4b32-87ed-11e52fe84ccd", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "CONROY-WISOKY NELS", - "timestamp": "2021-03-24" + "user": "KOHLER ALYSA", + "timestamp": "2023-09-16" }, { - "uuid": "2a966498-7732-4114-abc6-b27d305214e6", + "uuid": "a7f467cf-dcdf-4a6c-9691-1911b9163626", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "KUNDE AYDEN", - "timestamp": "2015-08-11" - }, - { - "uuid": "5d53df98-a430-4b81-a6a7-6b6ca9840b4f", - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "SCHNEIDER JEDIDIAH", - "timestamp": "2017-05-05" + "user": "RUECKER MAVERICK", + "timestamp": "2023-02-21" }, { - "uuid": "3762169b-e8e0-4e45-97dc-83136911c4e8", + "uuid": "3772ef9d-8372-4778-acd1-311727fea926", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "WALKER TREVA", - "timestamp": "2014-09-22" + "user": "LEUSCHKE BERENICE", + "timestamp": "2019-11-09" }, { - "uuid": "008d1c26-9763-47bd-b8b7-ffdb52b8f9f4", - "siteRegistry": true, + "uuid": "973b2e36-20e3-43a7-8101-ce5ac1c63e8d", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "PROSACCO MAYBELL", - "timestamp": "2022-11-24" + "user": "BOGAN STEPHANIE", + "timestamp": "2015-12-29" }, { - "uuid": "0a206684-bdd1-438f-8684-c03cd3064baf", - "siteRegistry": true, + "uuid": "4f1317ed-d2fa-47db-8c88-425ce449bfd8", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "SHIELDS ROZELLA", - "timestamp": "2016-08-19" + "user": "JOHNSON ELVA", + "timestamp": "2014-12-31" }, { - "uuid": "86467c76-9722-4c87-bd88-ac8539be5e4d", + "uuid": "1d548b68-2dfb-45b5-b39d-29743df46c63", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "ABBOTT JUWAN", - "timestamp": "2016-08-07" + "user": "CHAMPLIN RAFAELA", + "timestamp": "2019-03-31" } ], "associatedSites": [ { - "uuid": "86b1b467-9cfd-43f9-bd85-dd7596e40035", - "dateNoted": "2016-10-09", + "uuid": "728e90d1-367b-4606-9d43-cbddccae9ea4", + "dateNoted": "2014-06-18", "notes": "", - "parcelID": "15228", - "siteID": "20433", + "parcelID": "17728", + "siteID": "20562", "siteRegistry": true + }, + { + "uuid": "eb3899c2-e621-4c4e-a479-87147e7dec98", + "dateNoted": "2015-12-23", + "notes": "", + "parcelID": "20591", + "siteID": "19262", + "siteRegistry": false } ] }, { - "uuid": "c76393ad-81ae-49da-a46e-a796b69fec02", - "siteID": 15332, - "address": "4053 Rowe Land", - "latitude": 57.2038, - "longitude": -130.0311, - "lastUpdated": "2021-08-12", - "city": "North Magdalen", - "region": " North Coast", - "victoriaFile": "26250-20/3812", + "uuid": "e5ae7e15-9871-4a25-a6ee-19983e07cb4c", + "siteID": 16144, + "address": "6157 Bailey Summit", + "latitude": 51.0687, + "longitude": -124.5646, + "lastUpdated": "2023-02-27", + "city": "Tempe", + "region": "Thompson-Okanagan", + "victoriaFile": "26250-20/8384", "regionalFile": "N/A", "parcelIDs": [ - 4503189, - 3593896, - 8855214, - 6579005, - 8666610 + 8108616, + 1885067, + 6207397, + 980462, + 3805334 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "5c08c9c7-713b-4dd4-bc53-78185aa812a2", - "createdAt": "2021-10-26", - "completed": "2015-02-27", - "initiated": "2016-02-19", - "ministryContact": "HIRTHE-KILBACK BRADLEY", + "uuid": "bdb15f22-585c-46fd-bc6b-cfda800e9884", + "createdAt": "2018-12-16", + "completed": "2014-06-17", + "initiated": "2018-08-02", + "ministryContact": "DECKOW COLT", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -2658,38 +2874,38 @@ ], "notationParticipants": [ { - "uuid": "fc8726ba-0c24-4e45-887a-63cf84d3bb6d", + "uuid": "221f4bb0-1988-4bde-bc94-ad65b591c1b7", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true }, { - "uuid": "76066e25-e6fa-4d22-a371-823c5a5643a6", - "name": "SHELL CANADA PRODUCTS", + "uuid": "895cfae6-9971-4ac3-a8ef-bd09f3a1ffef", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "33e96d06-70bb-4580-a5d2-6d7d7dc1b2ae", + "uuid": "c1f73edb-7571-4084-a227-38dac3a2079c", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true }, { - "uuid": "98220dc9-c5b9-4749-a49a-9d668f11f0d0", + "uuid": "1715dd2a-58dd-447e-9f11-0a0b69c6da81", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true } ], "siteRegistry": true }, { - "uuid": "af0f6a7f-a7fe-400f-9b29-b457ee68764c", - "createdAt": "2015-08-06", - "completed": "2020-05-22", - "initiated": "2020-07-16", - "ministryContact": "HAND STEPHANY", + "uuid": "152855f6-0b95-4e31-8d18-80411165c900", + "createdAt": "2016-03-14", + "completed": "2017-06-05", + "initiated": "2021-09-03", + "ministryContact": "WEST ALENE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -2698,129 +2914,266 @@ ], "notationParticipants": [ { - "uuid": "81c0dda5-73df-45bc-b8bd-49051cb2ee96", - "name": "SHELL CANADA PRODUCTS", + "uuid": "308443de-1d61-40a7-9656-2ecfc5ed915b", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true }, { - "uuid": "17a27c3d-fee0-4751-8e6c-df125c4728f0", + "uuid": "cb776b16-3fa9-4dbd-92ae-cd65a058d31b", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "c6c14c15-a867-456f-a2cf-0e67e474d151", + "uuid": "52972e2e-9c9a-47ad-a092-792af5830c76", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "uuid": "ad261a02-3f1b-40d0-8d9f-b337d17cf400", + "createdAt": "2017-10-29", + "completed": "2020-03-23", + "initiated": "2017-10-18", + "ministryContact": "MACEJKOVIC CLEMENS", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "uuid": "372edcb0-af5b-47ca-ab1d-3e06fc7ce990", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true + }, + { + "uuid": "66b1a5df-3029-4d7c-bd27-8731732b61fb", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "894c351a-88f6-4182-a8bf-59cc63af5fca", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true } ], "siteRegistry": false + }, + { + "uuid": "b8878dae-2351-4971-9515-eafd50009395", + "createdAt": "2015-07-21", + "completed": "2019-04-21", + "initiated": "2020-05-16", + "ministryContact": "BATZ RICKY", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "uuid": "ad4442b2-4209-4b42-a5ed-0790dfc32e2a", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "643067b7-4b80-48f0-ae7e-27a8db5cbd97", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "uuid": "5dadaac6-6605-466c-baa6-4d1ab38275ef", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "488d1c04-81ea-4255-b8a6-6b29302ec3a5", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true } ], "participants": [ { - "uuid": "23ab3e38-3293-4834-9c3a-606990557488", - "name": "IPSUM", - "endDate": "2023-06-10", - "startDate": "2018-05-01", + "uuid": "e3839dac-cf2d-4a7d-9732-005786fdaf52", + "name": "AMET, DOLOR SIT", + "endDate": "2022-08-22", + "startDate": "2014-09-12", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "900c8988-7c3b-4939-a229-1c41c68b54fa", - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2021-02-06", - "startDate": "2014-09-02", + "uuid": "3405291e-1256-4204-9829-cd52524214ef", + "name": "IPSUM", + "endDate": "2020-11-25", + "startDate": "2022-06-24", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false + } + ], + "documents": [ + { + "uuid": "97a97c84-3639-4ecb-8c52-e3d171013f05", + "siteRegistry": false, + "documentDate": "2020-02-01", + "receivedDate": "2013-12-25", + "uploadedDate": "2023-04-13", + "title": "Preliminary Site Investigation, Detailed Site Investigation and Remedial Plan for the Management Area adjacent to the Shell Site at 1503 West 41st Ave", + "participants": [ + { + "uuid": "2051821a-a41b-48f8-9613-92898d90ee13", + "name": "IPSUM", + "siteRegistry": false, + "role": "AUTHOR" + } + ] + }, + { + "uuid": "a20b8907-fd30-43d6-91ae-70c815db49d2", + "siteRegistry": true, + "documentDate": "2018-02-06", + "receivedDate": "2015-01-09", + "uploadedDate": "2017-09-11", + "title": "Summary of Site Conditions, 1537 W 41st Avenue, Vancouver", + "participants": [ + { + "uuid": "2f50a854-408b-46c2-8269-a1484f12ad94", + "name": "AMET, DOLOR SIT", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "fc01264f-9349-48b7-81e8-b1ec293f1885", + "name": "IPSUM", + "siteRegistry": false, + "role": "AUTHOR" + } + ] } ], "suspectLandUses": [ { - "uuid": "abcbc5f0-2522-4945-81f6-60398b853b24", + "uuid": "c28faee4-e0c0-437f-bdaa-be2e0bc13d9d", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-12-08 (described on Site Profile dated 2019-12-08)", + "notes": "INSERTED FOR SITE PROFILE DATED 2015-11-30 (described on Site Profile dated 2015-11-30)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "uuid": "44558f45-3522-4aec-b365-d3169585cb0f", - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-01-19 (described on Site Profile dated 2016-01-19)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "uuid": "7533ab7a-ecde-4ded-9a5e-0025f068e53e", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2015-06-19 (described on Site Profile dated 2015-06-19)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], "parcelDescriptions": [ { - "uuid": "b099c644-209f-4474-83ac-bd9343e173c4", - "siteRegistry": false, - "dateNoted": "2020-08-29", - "parcelID": "19643", - "crownLandUsePIN": "18567", - "crownLandFileNumber": "16529", - "landDescription": "LOT 3 OF LOT 1 BLOCK 5 DISTRICT LOT 1 PLAN 9453" + "uuid": "4cab7a54-35b6-46df-bfa0-c1369a53dc68", + "siteRegistry": true, + "dateNoted": "2021-01-01", + "parcelID": "19890", + "crownLandUsePIN": "16678", + "crownLandFileNumber": "20050", + "landDescription": "LOT 5 OF LOT 4 BLOCK 2 DISTRICT LOT 4 PLAN 5509" }, { - "uuid": "19a6f28b-8e3b-4f50-bb80-2218348fcf2d", + "uuid": "1fe52947-9b5b-4def-891a-079fdff0e6df", "siteRegistry": false, - "dateNoted": "2021-02-02", - "parcelID": "16293", - "crownLandUsePIN": "20300", - "crownLandFileNumber": "16736", - "landDescription": "LOT 1 OF LOT 1 BLOCK 5 DISTRICT LOT 2 PLAN 6568" + "dateNoted": "2014-01-25", + "parcelID": "15908", + "crownLandUsePIN": "18879", + "crownLandFileNumber": "19675", + "landDescription": "LOT 2 OF LOT 3 BLOCK 3 DISTRICT LOT 1 PLAN 8820" }, { - "uuid": "06d97d81-9576-434f-8011-90fa27487702", - "siteRegistry": false, - "dateNoted": "2018-03-19", - "parcelID": "19158", - "crownLandUsePIN": "17920", - "crownLandFileNumber": "20158", - "landDescription": "LOT 4 OF LOT 5 BLOCK 5 DISTRICT LOT 3 PLAN 7260" + "uuid": "dbe35bab-4358-4bc5-9cc8-3dac0ee9a08e", + "siteRegistry": true, + "dateNoted": "2022-07-28", + "parcelID": "17222", + "crownLandUsePIN": "16247", + "crownLandFileNumber": "18314", + "landDescription": "LOT 2 OF LOT 2 BLOCK 1 DISTRICT LOT 4 PLAN 9375" + }, + { + "uuid": "a2603c30-d612-4fe7-8068-c70e09754a8b", + "siteRegistry": true, + "dateNoted": "2018-08-18", + "parcelID": "17586", + "crownLandUsePIN": "17343", + "crownLandFileNumber": "17707", + "landDescription": "LOT 3 OF LOT 5 BLOCK 1 DISTRICT LOT 3 PLAN 3085" } ], "siteDisclosures": [ { - "uuid": "6ead4b32-14b3-432e-84f1-2df8ad3dfe74", - "siteRegistry": false, - "dateReceived": "2021-08-01", - "dateCompleted": "2022-04-03", - "dateEntered": "2020-05-04", - "dateRegistrar": "2023-07-12", - "dateLocalAuthorityReceived": "2019-05-20", - "summary": "Iure deserunt velit consequuntur optio explicabo sed consequatur eum aliquam.\nAssumenda sunt sequi.\nSaepe repellat soluta.", - "informationUsed": "Assumenda neque at et praesentium repellendus.\nDicta quia voluptatem labore.\nDicta quam saepe rem modi recusandae distinctio accusantium sapiente.", - "pastOrPresentOrders": "Repellendus eum aliquid pariatur commodi distinctio unde porro.\nPossimus numquam dicta minima perspiciatis labore.", + "uuid": "635be92d-9090-49a6-8314-c791c53c3dc1", + "siteRegistry": true, + "dateReceived": "2014-11-02", + "dateCompleted": "2017-03-24", + "dateEntered": "2016-08-14", + "dateRegistrar": "2019-06-14", + "dateLocalAuthorityReceived": "2021-02-24", + "summary": "Tempore in necessitatibus nisi veritatis provident quaerat placeat impedit tempora.", + "informationUsed": "Eum nemo dicta ex incidunt incidunt hic animi vel reiciendis.\nQuae reiciendis nulla temporibus quos neque aspernatur in.\nQuas nobis minima iste velit.", + "pastOrPresentOrders": "Repudiandae dignissimos veritatis sapiente a omnis vel.\nEx eveniet eligendi reiciendis assumenda.\nFacere rerum at hic at.", "commercialAndIndustrialPurposes": [ { - "uuid": "30b10735-b5d2-44f2-97a4-4e59bda77738", - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false - }, - { - "uuid": "20df7a14-5614-4a03-8f36-3f6ba7d35d7a", + "uuid": "af7ab978-7376-497e-be76-669f78b18588", "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false }, { - "uuid": "f7ff1c55-b250-4084-8730-6cc18277d4a4", + "uuid": "122d03f0-7953-4c0b-94ab-a62ace280b77", "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + } + ] + }, + { + "uuid": "30622226-6f89-4a7d-97e6-82a7d1c9056f", + "siteRegistry": true, + "dateReceived": "2018-02-11", + "dateCompleted": "2021-12-02", + "dateEntered": "2014-12-16", + "dateRegistrar": "2015-06-23", + "dateLocalAuthorityReceived": "2018-03-01", + "summary": "Recusandae maiores vel delectus at praesentium suscipit voluptatibus.", + "informationUsed": "Quibusdam nulla repudiandae soluta totam nisi sapiente ad esse modi.\nSaepe modi vel voluptates quo quidem.\nNemo laborum laudantium eum ex.", + "pastOrPresentOrders": "Eligendi nemo at blanditiis impedit similique rerum provident sint.\nQuae incidunt odio.\nUllam maxime ullam.", + "commercialAndIndustrialPurposes": [ + { + "uuid": "05c013de-84d2-4c6f-82e9-ea18352a7277", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, { - "uuid": "fafd653a-be65-4ee9-8089-fe40b494435f", - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "uuid": "f83e6b39-31e4-45ab-a76c-4e5d7ef20d2b", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false } ] @@ -2828,107 +3181,86 @@ ], "activityLog": [ { - "uuid": "816ed03d-0684-45e2-807b-4cda4e9c28f6", - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "SCHAMBERGER LUCILE", - "timestamp": "2016-04-06" - }, - { - "uuid": "e30c3c70-bf82-4293-aa5f-f4922653bdce", + "uuid": "47baed42-52f4-4e51-a0a5-e8ea7abfd4d0", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "HARTMANN KAREN", - "timestamp": "2017-01-12" - }, - { - "uuid": "77efb1e1-9c79-4d2d-a1ad-adf3406c20e5", - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "REYNOLDS NEIL", - "timestamp": "2023-08-03" - }, - { - "uuid": "738ca770-1e21-429d-929f-ffd05b5022a2", - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "KERLUKE DOMINIQUE", - "timestamp": "2019-01-16" + "user": "BEIER PERRY", + "timestamp": "2022-08-15" }, { - "uuid": "54ccb924-a080-4786-9c5d-daa4a430955f", + "uuid": "72b73011-1589-4572-bb98-4772336e5e6d", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "ROHAN MCKENNA", - "timestamp": "2020-10-14" + "user": "SENGER REBEKAH", + "timestamp": "2019-04-25" }, { - "uuid": "0969a73c-4f3f-4451-8e5f-d27a96ff6017", + "uuid": "4bafe505-68cb-4e02-b6e9-7d381b6f432e", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "GREENFELDER UNIQUE", - "timestamp": "2017-09-30" + "user": "KOVACEK CAROLINA", + "timestamp": "2018-07-01" }, { - "uuid": "450f4d3c-20c0-4209-976e-9f2ba4f27989", + "uuid": "172ebde2-334a-4bab-94d4-b157085dcae1", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "HAYES ANTHONY", - "timestamp": "2020-04-13" + "user": "SCHMIDT IMANI", + "timestamp": "2019-01-24" }, { - "uuid": "1c0cf105-a401-43a0-ac4c-5183272d600a", + "uuid": "3a2a3551-8d4d-443f-b3a6-5ca32524b24f", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "OBERBRUNNER RAFAEL", - "timestamp": "2016-01-27" + "user": "BEER VIRGINIE", + "timestamp": "2021-12-20" } ], "associatedSites": [ { - "uuid": "955776d4-b7c5-4658-97a7-fcc2f27bac80", - "dateNoted": "2014-05-26", + "uuid": "3eb491ae-1438-474a-8c73-5119bea94d96", + "dateNoted": "2021-11-05", "notes": "", - "parcelID": "18982", - "siteID": "16560", - "siteRegistry": false + "parcelID": "18409", + "siteID": "16733", + "siteRegistry": true }, { - "uuid": "1c1f1cb3-1af3-4c0f-a803-185fc065fedb", - "dateNoted": "2019-09-03", + "uuid": "c7bea417-52bb-4ca2-ba21-9b7d6033fbd5", + "dateNoted": "2016-10-06", "notes": "", - "parcelID": "16702", - "siteID": "18717", + "parcelID": "18890", + "siteID": "18756", "siteRegistry": true } ] }, { - "uuid": "0c10f7a1-5312-4972-951c-f75f78943793", - "siteID": 19897, - "address": "5814 Schinner Fork", - "latitude": 57.7555, - "longitude": -130.7, - "lastUpdated": "2021-08-14", - "city": "New York", - "region": "Vancouver Island/Coast", - "victoriaFile": "26250-20/17631", + "uuid": "af449ff6-376c-4790-a835-a1817297c21d", + "siteID": 18797, + "address": "701 Zoila Cove", + "latitude": 55.4939, + "longitude": -121.8115, + "lastUpdated": "2022-10-14", + "city": "East Ellis", + "region": "Kootenay", + "victoriaFile": "26250-20/15500", "regionalFile": "N/A", "parcelIDs": [ - 2978451, - 6143238, - 633419, - 730420, - 5101589 + 2204107, + 2272213, + 5373897, + 9831588, + 5465293 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "5de2932f-f9d2-4dd7-9d29-f270ede05304", - "createdAt": "2015-01-24", - "completed": "2020-09-23", - "initiated": "2019-07-13", - "ministryContact": "JERDE ROSELLA", + "uuid": "26693f26-59af-40ee-b1eb-ced2be8505b1", + "createdAt": "2017-12-24", + "completed": "2014-10-25", + "initiated": "2016-04-04", + "ministryContact": "TORP OCEANE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -2937,38 +3269,78 @@ ], "notationParticipants": [ { - "uuid": "1bb90f77-d79c-4035-bc9f-fb91b2e6ecbf", - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false + "uuid": "d0d9dd6a-fb26-44ca-934f-8c2f42c9cee4", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true }, { - "uuid": "8c376b4e-a62b-4b4a-a9a8-8579bf37b923", - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "7325ba35-100f-4afa-920e-e3d3a3f86aad", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "769c4d31-abea-46fb-ab5a-38ab6a2a1dee", + "uuid": "0b800648-a4e8-49c0-b7a9-3060d0087e01", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true }, { - "uuid": "8a70ff1e-d8b4-475d-ac92-4c6cdfd30a20", + "uuid": "ce79a88e-976f-4916-b36d-bf88b2dec340", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "648b237a-09ed-4dd0-ba7d-02b2346e9dbc", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "uuid": "3100d65e-5508-4953-a46b-a37aaece70b2", + "createdAt": "2013-10-22", + "completed": "2021-01-20", + "initiated": "2020-02-18", + "ministryContact": "AUFDERHAR ERIKA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "uuid": "1fa1e970-075e-479d-9eb6-5c91d9daeddb", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "uuid": "f6ce2062-3100-4f38-9679-b1f99931f5dd", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true + }, + { + "uuid": "b145db03-ed6f-4b73-baec-4d7fbc20f5a3", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false } ], "siteRegistry": true }, { - "uuid": "d6f573fc-4021-43e1-93b3-f183360437ee", - "createdAt": "2013-10-19", - "completed": "2020-10-03", - "initiated": "2022-03-04", - "ministryContact": "HETTINGER SAMANTA", + "uuid": "b53b6b5e-7661-4d72-94e9-e534df4d46cf", + "createdAt": "2022-11-23", + "completed": "2019-01-14", + "initiated": "2019-01-20", + "ministryContact": "CARTWRIGHT CAREY", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -2977,44 +3349,38 @@ ], "notationParticipants": [ { - "uuid": "a76cf652-1b56-4e97-a464-053a13dc7af7", + "uuid": "feec95e1-82ba-49be-b45c-f1f995add9ee", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "9088f901-c36e-4627-b1e1-2187ca7c3b8f", + "uuid": "a909b504-5c10-47db-8890-68d21370c7e3", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "99523378-2956-46c1-9e06-b133a7863f16", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "uuid": "b62679dc-64fc-49da-9f10-cdc7e59bc36a", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "57aeb9d9-497b-46ef-8cf2-6f53802d8cc9", + "uuid": "3c51d0f5-7921-427f-adf7-0a1bc8d0d133", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false - }, - { - "uuid": "991373de-5232-4e95-aec3-6056afd0009c", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "948e49ec-063c-428a-a731-daebe19ec8b8", - "createdAt": "2022-12-22", - "completed": "2018-09-16", - "initiated": "2019-12-14", - "ministryContact": "KRIS CLARK", + "uuid": "43d1f346-eb22-4b6d-97a2-4491ca1267b4", + "createdAt": "2020-02-07", + "completed": "2022-06-06", + "initiated": "2015-06-28", + "ministryContact": "WIEGAND HUMBERTO", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -3023,34 +3389,28 @@ ], "notationParticipants": [ { - "uuid": "83ebb88b-dcb3-4311-ac88-8a9745191c46", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "uuid": "17bc3335-3bd9-4f52-9e2f-3d37e60ea7b3", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "uuid": "dc4da7b4-4efe-40b8-bf82-440cb80d6471", + "uuid": "e6c8ade8-8bf4-4f0b-9335-f163ab6ec97f", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "b1f57201-c3ff-475d-8943-eb441e066673", + "uuid": "9afc44d6-ed8a-46f5-bcea-2cdb8efefce9", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false }, { - "uuid": "de087ff5-4c61-4681-a2a3-b8fbe528eb16", + "uuid": "93e767e4-13b0-4190-8d1d-dff70efa77d0", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true + }, + { + "uuid": "6a1afe74-6390-4c0a-be5f-84386b4b1605", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false } ], "siteRegistry": true @@ -3058,10 +3418,10 @@ ], "participants": [ { - "uuid": "880504a7-756b-43b8-9c58-1d8463cb93ad", - "name": "IPSUM", - "endDate": "2023-01-01", - "startDate": "2019-10-21", + "uuid": "1146bc50-a40e-41fc-a049-03ce85dd7ca8", + "name": "AMET, DOLOR SIT", + "endDate": "2019-04-08", + "startDate": "2018-05-13", "notes": "", "roles": [ "ORGANIZATION" @@ -3069,21 +3429,32 @@ "siteRegistry": true }, { - "uuid": "8feb0e19-20e9-4711-aa9b-89228b1c5426", - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2022-02-01", - "startDate": "2015-08-02", + "uuid": "b1bca61a-27a6-4a5e-9559-6c3a1e147969", + "name": "IPSUM", + "endDate": "2019-08-01", + "startDate": "2019-06-16", "notes": "", "roles": [ "EMPLOYEE" ], + "siteRegistry": false + }, + { + "uuid": "dcd6e931-7b58-4a9e-91fb-9040bf39f658", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2018-07-27", + "startDate": "2015-05-25", + "notes": "", + "roles": [ + "ORGANIZATION" + ], "siteRegistry": true }, { - "uuid": "cdbdd67e-e1dd-4f49-b890-9de1492716f3", + "uuid": "436a968f-33f4-4839-bd58-a13de7caacc4", "name": "IPSUM", - "endDate": "2018-09-20", - "startDate": "2022-07-21", + "endDate": "2018-03-09", + "startDate": "2019-09-20", "notes": "", "roles": [ "ORGANIZATION" @@ -3091,113 +3462,173 @@ "siteRegistry": false }, { - "uuid": "95532296-d4c4-4498-92a9-e47e6763dc2f", + "uuid": "440031e8-c9d2-448f-88f0-273c3c667e68", "name": "SHELL CANADA PRODUCTS", - "endDate": "2014-10-26", - "startDate": "2019-03-07", + "endDate": "2022-04-23", + "startDate": "2018-09-12", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": false } ], - "suspectLandUses": [ + "documents": [ { - "uuid": "142425df-a0ff-40c5-81e1-e8511649584a", + "uuid": "ece2f8b5-0886-4da6-adb2-4d962ad0b54c", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-03-03 (described on Site Profile dated 2018-03-03)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "documentDate": "2020-01-17", + "receivedDate": "2019-06-25", + "uploadedDate": "2017-01-17", + "title": "Preliminary Site Investigation, Detailed Site Investigation and Remedial Plan for the Management Area adjacent to the Shell Site at 1503 West 41st Ave", + "participants": [ + { + "uuid": "4b7fbea3-fb9b-45b8-b816-dc3c71e6f559", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": false, + "role": "AUTHOR" + } + ] }, { - "uuid": "b5d48310-0f17-4a4a-8911-4269b6c0d80f", + "uuid": "27b63808-e26e-401a-bacc-9630c9a2a83a", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-01-02 (described on Site Profile dated 2017-01-02)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "documentDate": "2017-12-30", + "receivedDate": "2019-12-31", + "uploadedDate": "2020-12-17", + "title": "Preliminary Site Investigation, Detailed Site Investigation and Remedial Plan for the Management Area adjacent to the Shell Site at 1503 West 41st Ave", + "participants": [ + { + "uuid": "91ef62b8-a05d-45ed-8b40-2b4a746697f7", + "name": "IPSUM", + "siteRegistry": false, + "role": "AUTHOR" + } + ] }, { - "uuid": "099d9924-92e2-470f-96d9-786c41a6198d", + "uuid": "a2c4199b-6893-4e8c-b836-f5d72779a5ea", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-08-02 (described on Site Profile dated 2022-08-02)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "documentDate": "2018-04-08", + "receivedDate": "2022-12-04", + "uploadedDate": "2018-04-20", + "title": "Preliminary Site Investigation, Detailed Site Investigation and Remedial Plan for the Management Area adjacent to the Shell Site at 1503 West 41st Ave", + "participants": [ + { + "uuid": "59a02198-e6a4-49e0-85dd-387899d98ba2", + "name": "IPSUM", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "7f771686-58fc-44cb-b2fe-d6a7d45179b2", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "41f5f43d-f3ee-423d-8b0b-1c1ff7122618", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": false, + "role": "AUTHOR" + } + ] }, { - "uuid": "12304594-a497-42a9-9f02-07713913e7b1", + "uuid": "4b46790d-99cc-4239-a037-38ce1d1072a1", + "siteRegistry": true, + "documentDate": "2018-12-08", + "receivedDate": "2020-04-07", + "uploadedDate": "2020-05-30", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "525e5269-0241-4e44-85b1-3568abf6083d", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": true, + "role": "AUTHOR" + } + ] + } + ], + "suspectLandUses": [ + { + "uuid": "a5b07959-d435-419c-b0b2-ebf6cfc4ae08", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2023-06-07 (described on Site Profile dated 2023-06-07)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "notes": "INSERTED FOR SITE PROFILE DATED 2016-01-10 (described on Site Profile dated 2016-01-10)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "uuid": "b279f07a-27e0-4c87-a1f9-a137920d8678", + "uuid": "9463a1e5-bf6a-40bc-942e-d7f9d495ab3d", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-03-08 (described on Site Profile dated 2021-03-08)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "notes": "INSERTED FOR SITE PROFILE DATED 2014-06-10 (described on Site Profile dated 2014-06-10)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], "parcelDescriptions": [ { - "uuid": "9032c64c-1b75-4437-9724-36db137a2be0", - "siteRegistry": true, - "dateNoted": "2022-11-26", - "parcelID": "19143", - "crownLandUsePIN": "19353", - "crownLandFileNumber": "15991", - "landDescription": "LOT 5 OF LOT 2 BLOCK 3 DISTRICT LOT 5 PLAN 5020" + "uuid": "8e52bdb6-d94f-41c5-b4e8-9b3654aa7a9c", + "siteRegistry": false, + "dateNoted": "2017-08-31", + "parcelID": "17420", + "crownLandUsePIN": "15929", + "crownLandFileNumber": "16963", + "landDescription": "LOT 5 OF LOT 3 BLOCK 2 DISTRICT LOT 4 PLAN 7268" }, { - "uuid": "00b5ce19-0186-421b-b339-8f9c340425a9", - "siteRegistry": false, - "dateNoted": "2021-11-06", - "parcelID": "19589", - "crownLandUsePIN": "20161", - "crownLandFileNumber": "17298", - "landDescription": "LOT 5 OF LOT 3 BLOCK 2 DISTRICT LOT 5 PLAN 8989" + "uuid": "f12645c5-6d27-4d10-863f-e2dbee6973b8", + "siteRegistry": true, + "dateNoted": "2015-04-19", + "parcelID": "15924", + "crownLandUsePIN": "19259", + "crownLandFileNumber": "19128", + "landDescription": "LOT 4 OF LOT 5 BLOCK 1 DISTRICT LOT 3 PLAN 4894" }, { - "uuid": "f033b246-6df6-4e3c-8213-efac8404a506", + "uuid": "69297391-3663-4dcb-9af2-23fc61d4068a", "siteRegistry": false, - "dateNoted": "2019-10-22", - "parcelID": "18633", - "crownLandUsePIN": "17088", - "crownLandFileNumber": "15528", - "landDescription": "LOT 5 OF LOT 4 BLOCK 1 DISTRICT LOT 2 PLAN 5977" + "dateNoted": "2020-07-28", + "parcelID": "18330", + "crownLandUsePIN": "16393", + "crownLandFileNumber": "20481", + "landDescription": "LOT 1 OF LOT 2 BLOCK 2 DISTRICT LOT 2 PLAN 9374" } ], "siteDisclosures": [ { - "uuid": "0e5ec213-0a1f-443f-85e6-bfc03118ee78", + "uuid": "c98a7950-d088-4f12-9f26-93df1a6723fd", "siteRegistry": false, - "dateReceived": "2017-10-07", - "dateCompleted": "2016-02-12", - "dateEntered": "2019-08-30", - "dateRegistrar": "2019-07-22", - "dateLocalAuthorityReceived": "2014-09-12", - "summary": "Deleniti eos veritatis molestias illum illum veritatis.", - "informationUsed": "Cum expedita dolorum magnam esse quo quam.\nRatione eligendi quam.\nAt facere dolore id dolorem.\nMolestiae provident nobis maxime distinctio earum.\nEaque expedita veniam nam occaecati quibusdam.", - "pastOrPresentOrders": "Neque vel vero recusandae sapiente exercitationem iure laudantium.", + "dateReceived": "2022-10-24", + "dateCompleted": "2021-05-19", + "dateEntered": "2016-05-20", + "dateRegistrar": "2021-05-27", + "dateLocalAuthorityReceived": "2023-08-10", + "summary": "Totam ex excepturi.\nNulla voluptatem nihil et at similique eveniet tenetur.\nSaepe optio assumenda nostrum corporis odio fugit.", + "informationUsed": "Minus veniam perferendis quaerat excepturi eligendi deleniti.\nVelit sit sequi odio voluptas.\nTenetur praesentium quaerat tenetur quia ratione distinctio perferendis incidunt ex.", + "pastOrPresentOrders": "Facere quod libero.\nVoluptatum iste delectus optio consequuntur.\nMaiores nemo id at et hic aut ex.", "commercialAndIndustrialPurposes": [ { - "uuid": "d34836e0-f521-44ef-bb6d-ceed595c5956", - "scheduleReference": "F1*", + "uuid": "3b8de137-dfec-4db7-825f-ad59b659baf6", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "5589091b-55cd-474a-bb9d-f8332035da79", - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true + "uuid": "607aecb6-49a1-422d-85ea-d40c269a8940", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false }, { - "uuid": "b37707e4-55df-4668-9db1-e90d41d5e526", - "scheduleReference": "F1*", + "uuid": "538a2fd5-03d6-41f7-a0ac-620c97c5a170", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "87c88b66-b24f-410d-86ca-d84fa65c7cf4", + "uuid": "1e80f7cc-66ab-4355-aaea-96e146cb825d", "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false } ] @@ -3205,100 +3636,101 @@ ], "activityLog": [ { - "uuid": "747e2ea2-34d9-4a6a-8f24-dd892517c18d", - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "MURRAY BERTA", - "timestamp": "2014-09-28" - }, - { - "uuid": "b33c2d31-7866-4c7e-827b-c3f5a0772348", - "siteRegistry": true, + "uuid": "188f13f9-ed12-4b16-a192-c6e67f13824d", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "KERTZMANN KYLEE", - "timestamp": "2021-10-29" + "user": "KUHIC JONATAN", + "timestamp": "2015-04-14" }, { - "uuid": "a1a42a51-0ad9-4425-ada5-2c633181aa9b", + "uuid": "c37a6003-ef0f-4c39-8cb9-974744a04cab", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "WYMAN GROVER", - "timestamp": "2015-03-19" + "user": "HAMILL JESUS", + "timestamp": "2018-06-02" }, { - "uuid": "7fc44756-e3a4-442f-ae4f-7ba7e8522291", + "uuid": "fb0d1c54-52bc-4bf6-bc02-84664c369af1", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "MCKENZIE LEONARDO", - "timestamp": "2017-04-07" + "user": "BATZ MONROE", + "timestamp": "2023-09-10" }, { - "uuid": "097295f6-50ae-4e2b-8038-567be36128d0", - "siteRegistry": true, + "uuid": "d1ead8ba-1c3f-4f25-bea9-5e5490725502", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "ABBOTT MARLEY", - "timestamp": "2023-08-27" + "user": "BAILEY-GUTKOWSKI WALKER", + "timestamp": "2022-04-20" }, { - "uuid": "1c2e4257-d234-433d-9dd0-f3a4e228bdff", + "uuid": "7d740cdb-1aa1-4a2b-b003-d4d2d6cdc914", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "FRAMI ONIE", - "timestamp": "2020-07-12" + "user": "SCHAEFER GRAHAM", + "timestamp": "2017-06-12" }, { - "uuid": "a1c06e5a-f874-4d2a-9626-39b51aa580e7", - "siteRegistry": true, + "uuid": "9d216e42-54f5-44ed-8495-cd310c667f84", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "MACGYVER YADIRA", - "timestamp": "2015-05-29" + "user": "PADBERG JILLIAN", + "timestamp": "2019-03-01" } ], "associatedSites": [ { - "uuid": "50b3cbfa-51a5-4674-b2ec-3ce5c0377ddc", - "dateNoted": "2022-04-10", + "uuid": "bede7da4-0a0c-4178-ab6f-5f4be918667e", + "dateNoted": "2022-01-21", + "notes": "", + "parcelID": "17436", + "siteID": "19175", + "siteRegistry": true + }, + { + "uuid": "87d22e38-5537-4196-a5b4-c494f67ffb94", + "dateNoted": "2018-11-30", "notes": "", - "parcelID": "18469", - "siteID": "19716", + "parcelID": "16895", + "siteID": "18080", "siteRegistry": false }, { - "uuid": "b0b3cb4b-4f52-42e4-8767-36f2f2ee2e80", - "dateNoted": "2018-04-27", + "uuid": "252a1327-ab1f-4afd-bc9c-f290f927c870", + "dateNoted": "2018-01-17", "notes": "", - "parcelID": "20002", - "siteID": "20682", + "parcelID": "15421", + "siteID": "19065", "siteRegistry": false } ] }, { - "uuid": "f9528bee-c511-4f57-8bd9-0518e9efd7e2", - "siteID": 20193, - "address": "326 Cecil Extensions", - "latitude": 58.9691, - "longitude": -136.5956, - "lastUpdated": "2018-06-21", - "city": "New Milestown", + "uuid": "9f95d735-90e4-4044-b99e-46a87f07e0aa", + "siteID": 17743, + "address": "4373 Kenneth Path", + "latitude": 58.3193, + "longitude": -125.6231, + "lastUpdated": "2014-02-14", + "city": "West Vivianne", "region": "Kootenay", - "victoriaFile": "26250-20/9715", + "victoriaFile": "26250-20/11838", "regionalFile": "N/A", "parcelIDs": [ - 8738648, - 9823260, - 857197, - 7323199, - 2477029 + 1562157, + 3176888, + 1159479, + 6960301, + 1834182 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "a284ead5-7209-4bad-841f-9936303f712c", - "createdAt": "2021-01-18", - "completed": "2022-12-03", - "initiated": "2020-03-23", - "ministryContact": "COLLINS NIKOLAS", + "uuid": "5347608c-4032-47e2-94fe-4ab59ce4a2aa", + "createdAt": "2014-12-17", + "completed": "2017-03-30", + "initiated": "2023-04-14", + "ministryContact": "KUNZE-STANTON ANITA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -3307,60 +3739,44 @@ ], "notationParticipants": [ { - "uuid": "b858d7c4-4d3f-411b-ad78-e61aea6d43ea", + "uuid": "9f7d6165-57cb-4729-a488-c7ee3db7cc4e", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true }, { - "uuid": "3f6ae2ea-7af2-4fd9-8fd0-44dd042e680f", + "uuid": "f01a4faf-c33b-443b-a355-917b82e4e655", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "96e5d0a4-c55c-4454-a32d-ae9a1f24c9b5", + "uuid": "32f4dc3c-05b8-4c0a-9e5c-d2d946d8e6c6", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - } - ], - "siteRegistry": true - }, - { - "uuid": "999cae78-bb09-46f1-877b-8f7f5bc924ba", - "createdAt": "2020-03-22", - "completed": "2014-12-15", - "initiated": "2023-09-05", - "ministryContact": "CRUICKSHANK RUBIE", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ + "role": "REQUESTED BY", + "siteRegistry": false + }, { - "uuid": "07a5af51-1a11-44ee-b619-ea4d028a9c54", + "uuid": "7f6db1a6-7552-47fd-ac34-ed3bb6dfaac2", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true }, { - "uuid": "408f5115-fcc4-4248-95e6-8203ee86b5c6", + "uuid": "ef2fdd77-ef66-4a53-907c-f81e544fb8f1", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "1224e281-5d60-4d8a-b9e4-74e0f4f27dd0", - "createdAt": "2017-07-25", - "completed": "2019-07-14", - "initiated": "2018-07-07", - "ministryContact": "KIRLIN GLADYS", + "uuid": "75503aad-c245-47fb-bdcb-a5dfd6c875ff", + "createdAt": "2023-06-28", + "completed": "2013-12-01", + "initiated": "2020-06-18", + "ministryContact": "SCHULTZ ALVINA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -3369,32 +3785,38 @@ ], "notationParticipants": [ { - "uuid": "aba4ee3e-6f8f-45dd-ad3f-a510cd10c28d", + "uuid": "ec0f646f-d548-4681-8c83-abda523cffae", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true }, { - "uuid": "b88c75c9-d4d8-4a33-8016-a9a15414d5e7", + "uuid": "53132f70-4f4d-49f3-b931-cc2cc1ac291d", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "dc1dd7c9-6f5e-41a7-9879-b2f7312c5f50", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "3e39f1a9-34ad-4779-ada9-ba431bf4703f", + "uuid": "5a9cc700-4dbc-48c3-b341-0356eb2182bd", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "4b3fa7d1-19bf-4a8a-8c0e-e28a0f8a14db", - "createdAt": "2020-12-30", - "completed": "2014-06-09", - "initiated": "2022-02-14", - "ministryContact": "RITCHIE SUMMER", + "uuid": "030634a4-4b95-4a34-a444-6bbd6dff7e58", + "createdAt": "2017-04-20", + "completed": "2019-12-18", + "initiated": "2016-05-29", + "ministryContact": "GUTMANN WALTON", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -3403,39 +3825,33 @@ ], "notationParticipants": [ { - "uuid": "882d14c3-4732-4e7e-913f-de25d99b767c", - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "3a05f4ab-8ee6-484e-9307-2299e8be0550", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false }, { - "uuid": "fd2b4a72-d6ab-4aab-b6ee-be26bef0abfe", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "uuid": "fe6afdcd-0e65-4291-9360-c4d737b532e6", + "uuid": "2925498c-5d96-4a3b-af3a-a42a8d257079", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "59ea8b00-33a6-42f6-b77e-c1198769b43b", + "uuid": "ab5c6e32-1334-43a2-8722-062bf3cb513e", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true } ], "participants": [ { - "uuid": "bc2e4803-0619-4294-b29d-85f30555bc70", - "name": "IPSUM", - "endDate": "2014-07-11", - "startDate": "2016-06-26", + "uuid": "702cf04e-ce19-4098-8963-0b2a23eb6d51", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2022-10-22", + "startDate": "2016-10-29", "notes": "", "roles": [ "ORGANIZATION" @@ -3443,101 +3859,206 @@ "siteRegistry": true }, { - "uuid": "27fb25ac-d3f8-435a-a860-f0e55f645690", + "uuid": "f5952e90-a228-4809-8c3e-2c167cdb6424", "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2020-03-18", - "startDate": "2016-01-28", + "endDate": "2021-08-30", + "startDate": "2015-05-13", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "uuid": "e69a57ad-ea3a-47d9-bd7f-8882c2d8b455", + "name": "AMET, DOLOR SIT", + "endDate": "2023-01-28", + "startDate": "2018-03-16", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "uuid": "5980f6e0-a729-4985-b5a9-e81e886838bc", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2016-06-04", + "startDate": "2021-07-21", "notes": "", "roles": [ "ORGANIZATION" ], "siteRegistry": true + }, + { + "uuid": "8083581a-9b42-4804-966c-250a9ad626fe", + "name": "AMET, DOLOR SIT", + "endDate": "2018-11-22", + "startDate": "2018-01-13", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + } + ], + "documents": [ + { + "uuid": "839f9ec0-f112-42fe-93dd-d175d6885db1", + "siteRegistry": true, + "documentDate": "2015-12-27", + "receivedDate": "2016-06-24", + "uploadedDate": "2018-04-08", + "title": "Summary of Site Conditions, 1537 W 41st Avenue, Vancouver", + "participants": [ + { + "uuid": "d9b23dac-6452-4116-9003-e8e5b43d5b9d", + "name": "AMET, DOLOR SIT", + "siteRegistry": false, + "role": "AUTHOR" + } + ] + }, + { + "uuid": "4fbacac0-754f-4cc1-8016-44e0438d64cb", + "siteRegistry": true, + "documentDate": "2021-01-05", + "receivedDate": "2016-05-09", + "uploadedDate": "2021-07-04", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "3eb797e0-b3a3-4545-8d24-6695d50228c4", + "name": "AMET, DOLOR SIT", + "siteRegistry": false, + "role": "AUTHOR" + } + ] + }, + { + "uuid": "f8c56f03-b9b3-4c42-9e83-5a1d5c00c941", + "siteRegistry": false, + "documentDate": "2016-05-25", + "receivedDate": "2021-09-19", + "uploadedDate": "2018-04-13", + "title": "Summary of Site Conditions, 1537 W 41st Avenue, Vancouver", + "participants": [ + { + "uuid": "37879595-8d23-4b46-b668-cb14cf35ced8", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "48c2ab1c-06b1-4802-948f-2cbffc9b3c38", + "name": "AMET, DOLOR SIT", + "siteRegistry": false, + "role": "AUTHOR" + } + ] + }, + { + "uuid": "67d37e52-7915-4ec8-b553-65505c8ddc9b", + "siteRegistry": false, + "documentDate": "2019-04-20", + "receivedDate": "2016-06-04", + "uploadedDate": "2019-08-17", + "title": "Preliminary Site Investigation, Detailed Site Investigation and Remedial Plan for the Management Area adjacent to the Shell Site at 1503 West 41st Ave", + "participants": [ + { + "uuid": "1ffc62b7-e166-4631-a7ef-f304655af512", + "name": "IPSUM", + "siteRegistry": true, + "role": "AUTHOR" + } + ] } ], "suspectLandUses": [ { - "uuid": "83867dd8-946f-4d29-b8b0-988dda2f24d7", + "uuid": "018a15eb-7d52-4c59-a13c-5c9b4797f7a5", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-07-15 (described on Site Profile dated 2014-07-15)", + "notes": "INSERTED FOR SITE PROFILE DATED 2023-02-10 (described on Site Profile dated 2023-02-10)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "uuid": "93b9a92d-095b-4d07-a139-0ebff7835ede", - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-09-22 (described on Site Profile dated 2017-09-22)", + "uuid": "bf6af2af-d037-43b0-919e-e36ffcd8ca90", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2018-01-07 (described on Site Profile dated 2018-01-07)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "uuid": "6d52c309-6d48-48ad-b686-49708f103abb", + "uuid": "ff096783-466b-4d5f-95dd-5c56e2ed7c66", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-03-23 (described on Site Profile dated 2021-03-23)", + "notes": "INSERTED FOR SITE PROFILE DATED 2023-06-02 (described on Site Profile dated 2023-06-02)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "uuid": "7df9dff4-c9a0-48a6-bfba-f9bc96b40835", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2022-12-09 (described on Site Profile dated 2022-12-09)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "uuid": "ba9d7a9f-a300-4fdf-bfbd-1cbca0c8877e", + "uuid": "43067b16-658c-4551-a532-434af0d36f78", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-03-11 (described on Site Profile dated 2021-03-11)", + "notes": "INSERTED FOR SITE PROFILE DATED 2014-01-20 (described on Site Profile dated 2014-01-20)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], "parcelDescriptions": [ { - "uuid": "ac84aadb-67c6-477e-ac88-f658aa9b7537", + "uuid": "30c93ab9-433f-4fb6-b1d9-343ecf6526b4", "siteRegistry": false, - "dateNoted": "2013-11-12", - "parcelID": "19222", - "crownLandUsePIN": "15267", - "crownLandFileNumber": "16340", - "landDescription": "LOT 3 OF LOT 3 BLOCK 1 DISTRICT LOT 1 PLAN 3102" + "dateNoted": "2015-02-02", + "parcelID": "16877", + "crownLandUsePIN": "19864", + "crownLandFileNumber": "17229", + "landDescription": "LOT 2 OF LOT 5 BLOCK 2 DISTRICT LOT 3 PLAN 9144" }, { - "uuid": "1543e53c-23a2-4a7a-b457-8325902ca65c", - "siteRegistry": false, - "dateNoted": "2018-03-21", - "parcelID": "19742", - "crownLandUsePIN": "19966", - "crownLandFileNumber": "19846", - "landDescription": "LOT 1 OF LOT 5 BLOCK 3 DISTRICT LOT 3 PLAN 4724" + "uuid": "48726e54-b535-48a6-a10c-3716948c35f3", + "siteRegistry": true, + "dateNoted": "2023-09-05", + "parcelID": "15700", + "crownLandUsePIN": "17018", + "crownLandFileNumber": "18375", + "landDescription": "LOT 4 OF LOT 3 BLOCK 3 DISTRICT LOT 2 PLAN 2960" }, { - "uuid": "00e6de04-57aa-4855-b7e7-e19a2ba5d8da", + "uuid": "ca28060b-7cbb-4a17-9491-d09843ac1d23", "siteRegistry": false, - "dateNoted": "2022-12-13", - "parcelID": "19445", - "crownLandUsePIN": "20927", - "crownLandFileNumber": "18966", - "landDescription": "LOT 2 OF LOT 2 BLOCK 1 DISTRICT LOT 5 PLAN 5745" + "dateNoted": "2018-01-03", + "parcelID": "15405", + "crownLandUsePIN": "16594", + "crownLandFileNumber": "16862", + "landDescription": "LOT 4 OF LOT 1 BLOCK 1 DISTRICT LOT 3 PLAN 7983" } ], "siteDisclosures": [ { - "uuid": "4657b807-4b25-4e41-ba63-d8d19bc993c8", + "uuid": "ab666c6a-2fa7-4b0b-b332-e2cb9ab0bd70", "siteRegistry": false, - "dateReceived": "2016-01-10", - "dateCompleted": "2016-09-29", - "dateEntered": "2022-04-20", - "dateRegistrar": "2021-07-13", - "dateLocalAuthorityReceived": "2019-12-10", - "summary": "Reprehenderit sint adipisci ipsum ipsa asperiores.\nMaxime delectus maxime ducimus blanditiis explicabo sapiente ratione.", - "informationUsed": "Itaque at quidem nisi earum consequatur earum cum.\nTempora numquam facere dolorem perferendis nostrum beatae distinctio nulla soluta.\nLaborum nobis ad id nostrum.\nNostrum culpa nobis fuga adipisci dolore ad recusandae sit harum.", - "pastOrPresentOrders": "Asperiores repellat assumenda dolor odit quasi.\nAb placeat ipsa illum quasi corrupti porro maiores.\nEx nihil unde omnis voluptate.", + "dateReceived": "2019-08-06", + "dateCompleted": "2021-11-06", + "dateEntered": "2013-10-19", + "dateRegistrar": "2016-09-29", + "dateLocalAuthorityReceived": "2019-03-16", + "summary": "Ut atque minus accusamus molestiae nihil esse.", + "informationUsed": "Rerum inventore quis laborum voluptas vitae officiis aperiam.\nEarum quis minus hic eius pariatur quidem perspiciatis natus laboriosam.\nAliquam reiciendis itaque enim alias exercitationem.", + "pastOrPresentOrders": "Fugit hic fugiat reprehenderit vel voluptates consectetur possimus occaecati vitae.\nFugit vero enim laborum repellat sint repellendus occaecati.", "commercialAndIndustrialPurposes": [ { - "uuid": "53f74cae-4f85-47d8-9590-aeaf9ce71c5f", - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "uuid": "330248a4-6b02-4901-a566-beddd19eda1e", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { - "uuid": "9254db36-72a6-4f9a-9546-9fc5b68a1ef7", + "uuid": "ff65d051-9e0a-4416-98f4-f32d2711ada6", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false - }, - { - "uuid": "73a9ec00-b83e-4d0f-b9dc-7cf2be16a516", - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true } ] @@ -3545,121 +4066,115 @@ ], "activityLog": [ { - "uuid": "8f1d3e8e-57c0-4d05-b8f6-11dac5430e92", - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "SCHADEN ISADORE", - "timestamp": "2014-10-11" - }, - { - "uuid": "965c30bb-b7b9-49a2-b6c1-764efe2f958a", + "uuid": "acd9cf9a-f6d9-4452-ac61-14667af9ffd6", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "REYNOLDS ALBIN", - "timestamp": "2016-11-19" + "user": "WILLIAMSON MAYA", + "timestamp": "2015-03-07" }, { - "uuid": "f00fb94c-97f4-4c93-8b9a-4f7b6b161a11", + "uuid": "7a345dbb-673f-42df-a291-a9cf1362998a", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "DURGAN CORBIN", - "timestamp": "2021-03-19" + "user": "REYNOLDS GUNNAR", + "timestamp": "2014-07-31" }, { - "uuid": "737b4bdc-e7d5-4ef8-a9ca-727a70613763", + "uuid": "d909cc52-ea2a-41bb-acf5-acd0337478f6", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "DICKENS ELMIRA", - "timestamp": "2021-10-14" + "user": "LARSON JOAN", + "timestamp": "2017-03-31" }, { - "uuid": "d11bb557-7629-4942-8135-ea7eae740eae", + "uuid": "8b2c0a4b-e945-4a95-9025-a8d07e0f6d36", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "RENNER SIGRID", - "timestamp": "2019-06-23" + "user": "HOEGER LEMPI", + "timestamp": "2019-04-05" }, { - "uuid": "8392062e-f709-46f6-ac94-252907e045be", + "uuid": "b3bdc284-b2c1-46c7-8c12-f72b676f9b3d", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "TRANTOW-DIETRICH LENORE", - "timestamp": "2017-03-31" - }, - { - "uuid": "ccd82d1a-2e10-4189-abeb-a483a51e9d6c", - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "WYMAN JADYN", - "timestamp": "2021-05-19" + "user": "MCDERMOTT WILHELM", + "timestamp": "2021-10-12" }, { - "uuid": "182ae049-90da-4526-8add-538d2aaa02bd", + "uuid": "f60f90eb-a555-4946-aa1e-3bd2200825f6", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "KOZEY AUBREE", - "timestamp": "2018-10-25" + "user": "HEIDENREICH REGINALD", + "timestamp": "2019-01-26" }, { - "uuid": "b4908451-b66c-4ad8-9b76-eb0c700f9b59", + "uuid": "52ce1318-b547-4d02-b4d7-206abe83be62", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "JOHNS NAOMI", - "timestamp": "2018-07-01" + "user": "BATZ-BROWN KEVEN", + "timestamp": "2015-04-07" }, { - "uuid": "971c5a60-56cb-4dbc-8f36-42196f0162f0", + "uuid": "2ed31f61-b8f4-4532-91b9-c68471b5abee", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "LUETTGEN MARLEY", - "timestamp": "2019-01-04" + "user": "HESSEL JAMIR", + "timestamp": "2021-05-02" } ], "associatedSites": [ { - "uuid": "df8ad193-946b-494d-8747-dc1eb1a51763", - "dateNoted": "2023-08-11", + "uuid": "de2dca00-6fd6-4b65-a26d-cb200eec42df", + "dateNoted": "2021-03-29", "notes": "", - "parcelID": "16044", - "siteID": "20607", + "parcelID": "19663", + "siteID": "20744", "siteRegistry": false }, { - "uuid": "53b8bd4f-9254-4b47-a1ca-ff4bbc9499c2", - "dateNoted": "2018-06-27", + "uuid": "b7825cc4-65e7-4f1b-a6d4-e024a1728ca0", + "dateNoted": "2017-11-09", "notes": "", - "parcelID": "17113", - "siteID": "15580", - "siteRegistry": false + "parcelID": "20074", + "siteID": "19903", + "siteRegistry": true + }, + { + "uuid": "4213d802-233c-445b-ba84-60a66c85a547", + "dateNoted": "2014-03-15", + "notes": "", + "parcelID": "17828", + "siteID": "20786", + "siteRegistry": true } ] }, { - "uuid": "9a950baf-3af5-400d-b315-e6d8ab869c97", - "siteID": 17082, - "address": "38054 Hegmann Estates", - "latitude": 53.7953, - "longitude": -126.2063, - "lastUpdated": "2015-09-30", - "city": "Merritttown", - "region": "Vancouver Island/Coast", - "victoriaFile": "26250-20/17206", + "uuid": "1aa8d34b-4c49-4362-ab2b-4088cacc3f6a", + "siteID": 18756, + "address": "1319 Thora Roads", + "latitude": 55.1387, + "longitude": -125.3032, + "lastUpdated": "2015-06-16", + "city": "Cotymouth", + "region": "Kootenay", + "victoriaFile": "26250-20/9393", "regionalFile": "N/A", "parcelIDs": [ - 8679381, - 4882938, - 6814160, - 5335802, - 1387872 + 3360474, + 5557995, + 4408091, + 8146227, + 5179151 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "a2edc59e-2357-4bb9-8051-5aae3a90b6ea", - "createdAt": "2015-08-25", - "completed": "2022-08-07", - "initiated": "2019-08-19", - "ministryContact": "LEANNON RANDI", + "uuid": "471fc99f-2b3a-497e-b6fa-079ece8742db", + "createdAt": "2014-04-02", + "completed": "2016-09-08", + "initiated": "2021-07-06", + "ministryContact": "HERZOG REANNA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -3668,54 +4183,44 @@ ], "notationParticipants": [ { - "uuid": "a85fff15-8069-479c-8f8f-c2f0ee4ceb7d", - "name": "SHELL CANADA PRODUCTS", + "uuid": "83b0c100-8d5f-4dc0-8ce8-67f80fcf9d2c", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "6a547811-6197-4094-aad8-467ef8299e29", - "name": "SHELL CANADA PRODUCTS", + "uuid": "e14cc86f-3e43-467d-ba00-0fb98c1e4f2c", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "uuid": "2502a2d7-d8d1-449a-87d7-64fe814d9754", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true - } - ], - "siteRegistry": false - }, - { - "uuid": "7edc99fe-706f-47cb-8e65-ee131be9b65e", - "createdAt": "2016-09-30", - "completed": "2017-01-23", - "initiated": "2023-08-25", - "ministryContact": "REILLY CAITLYN", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ + }, { - "uuid": "72c226a6-941c-41d9-a9cf-ee08b06c512b", + "uuid": "1521fc2a-8956-4128-80d6-1c32adf3d2f4", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false + "role": "REQUESTED BY", + "siteRegistry": true }, { - "uuid": "74663295-1fae-49eb-9710-b09630b8c3e5", + "uuid": "a5cda014-d278-4096-acbb-30363b0a880f", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false + "role": "SUBMITTED BY", + "siteRegistry": true } ], "siteRegistry": true }, { - "uuid": "8ce2399d-708c-4046-b1ba-39b585f9b6fc", - "createdAt": "2015-10-24", - "completed": "2020-05-14", - "initiated": "2022-06-28", - "ministryContact": "BEDNAR ABIGAIL", + "uuid": "3d5889d9-264d-4694-bf89-32e52c1a6dc0", + "createdAt": "2021-10-01", + "completed": "2014-05-30", + "initiated": "2019-05-25", + "ministryContact": "MULLER ROSA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -3724,27 +4229,27 @@ ], "notationParticipants": [ { - "uuid": "b9bfaef1-0854-4813-b725-fadbb5d08fc1", + "uuid": "cfd28d7f-7ff8-469b-92a1-91035bc9b810", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false }, { - "uuid": "3977d839-1c32-46b3-8bd1-ecaabb27d9da", + "uuid": "45c43e69-0bcc-43b7-96a1-b2e8a92f71eb", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true } ], "participants": [ { - "uuid": "721e4489-c979-44c5-b78c-dbafffa05b12", - "name": "SHELL CANADA PRODUCTS", - "endDate": "2019-01-28", - "startDate": "2021-12-29", + "uuid": "fa95a78e-c089-4aa3-9574-6e3759dc0d69", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2020-11-03", + "startDate": "2022-10-31", "notes": "", "roles": [ "ORGANIZATION" @@ -3752,275 +4257,278 @@ "siteRegistry": true }, { - "uuid": "45f00fb8-a938-43b8-9616-1626885d7226", + "uuid": "d3360d11-9530-4c14-b5c4-e2a181e46dee", "name": "AMET, DOLOR SIT", - "endDate": "2018-05-21", - "startDate": "2016-03-22", + "endDate": "2018-04-03", + "startDate": "2020-12-20", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "b1e01b82-f91d-486f-85e4-5fef5c5a92ea", - "name": "IPSUM", - "endDate": "2016-06-25", - "startDate": "2019-09-12", + "uuid": "e9b80544-efc9-400a-a50e-4b7b12172411", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2022-03-05", + "startDate": "2018-12-01", "notes": "", "roles": [ "EMPLOYEE" ], "siteRegistry": false - }, + } + ], + "documents": [ { - "uuid": "70cecc9c-9821-444a-9884-7d09fe52ad19", - "name": "IPSUM", - "endDate": "2022-05-24", - "startDate": "2017-12-04", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": false + "uuid": "3a50064f-39db-4313-9090-94442aefb051", + "siteRegistry": false, + "documentDate": "2016-12-05", + "receivedDate": "2020-02-13", + "uploadedDate": "2019-10-21", + "title": "Preliminary Site Investigation, Detailed Site Investigation and Remedial Plan for the Management Area adjacent to the Shell Site at 1503 West 41st Ave", + "participants": [ + { + "uuid": "c30d0b46-6a5e-4512-a1f0-041bba83d7b8", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "2d0ca1cb-477c-4eb3-8c13-8ca4233792c1", + "name": "IPSUM", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "ce1ec3e8-43bc-4753-b91b-e548761eb139", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": true, + "role": "AUTHOR" + } + ] } ], "suspectLandUses": [ { - "uuid": "7e3dc59c-4b3f-43e7-bfdc-923bb992520d", + "uuid": "eb11bf64-bc67-4176-a28f-cf82dbb22b14", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-05-07 (described on Site Profile dated 2022-05-07)", + "notes": "INSERTED FOR SITE PROFILE DATED 2016-11-29 (described on Site Profile dated 2016-11-29)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "uuid": "c0215ff3-ff8d-4853-8c6b-22d5b00984a6", - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-07-29 (described on Site Profile dated 2018-07-29)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" - }, - { - "uuid": "e6a0cc4b-9e82-49ee-883b-fc48cc4084c9", + "uuid": "0933eb6a-e827-472b-88e5-4b71c602c3ff", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-02-11 (described on Site Profile dated 2018-02-11)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "notes": "INSERTED FOR SITE PROFILE DATED 2020-07-26 (described on Site Profile dated 2020-07-26)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], "parcelDescriptions": [ { - "uuid": "71f4d325-ac74-436b-9277-5a0535a32d1d", + "uuid": "ff361df9-19a8-489c-ad83-3b4e690e1aef", "siteRegistry": false, - "dateNoted": "2015-03-15", - "parcelID": "20801", - "crownLandUsePIN": "19212", - "crownLandFileNumber": "20826", - "landDescription": "LOT 3 OF LOT 3 BLOCK 2 DISTRICT LOT 1 PLAN 8325" + "dateNoted": "2020-08-05", + "parcelID": "15782", + "crownLandUsePIN": "18163", + "crownLandFileNumber": "19468", + "landDescription": "LOT 2 OF LOT 4 BLOCK 4 DISTRICT LOT 3 PLAN 5968" }, { - "uuid": "d8787d79-8e10-4dd7-9d76-64786b09a5e8", + "uuid": "4dd6a5de-b183-4c78-897b-7acad0c6ffc4", "siteRegistry": false, - "dateNoted": "2018-02-25", - "parcelID": "18211", - "crownLandUsePIN": "15905", - "crownLandFileNumber": "17299", - "landDescription": "LOT 5 OF LOT 4 BLOCK 2 DISTRICT LOT 1 PLAN 4575" + "dateNoted": "2014-05-05", + "parcelID": "20040", + "crownLandUsePIN": "20301", + "crownLandFileNumber": "18715", + "landDescription": "LOT 4 OF LOT 1 BLOCK 3 DISTRICT LOT 4 PLAN 3442" }, { - "uuid": "918091fe-8d22-4caa-9ef1-33531ce4e5e2", + "uuid": "a3331e29-6feb-4320-ae1e-5fd781ff562d", "siteRegistry": true, - "dateNoted": "2015-07-16", - "parcelID": "20832", - "crownLandUsePIN": "15935", - "crownLandFileNumber": "17245", - "landDescription": "LOT 2 OF LOT 4 BLOCK 3 DISTRICT LOT 2 PLAN 4029" - }, - { - "uuid": "9bb276eb-ec5b-402b-8ec6-9e1b64977d3f", - "siteRegistry": false, - "dateNoted": "2021-07-12", - "parcelID": "15251", - "crownLandUsePIN": "16751", - "crownLandFileNumber": "17607", - "landDescription": "LOT 2 OF LOT 1 BLOCK 3 DISTRICT LOT 2 PLAN 9352" + "dateNoted": "2019-01-29", + "parcelID": "19225", + "crownLandUsePIN": "16387", + "crownLandFileNumber": "18458", + "landDescription": "LOT 2 OF LOT 3 BLOCK 2 DISTRICT LOT 3 PLAN 5164" }, { - "uuid": "f1d8aa08-968d-48d9-8a10-99dc944ebbe2", + "uuid": "f077400c-b366-4f95-93bd-d6859283d82e", "siteRegistry": true, - "dateNoted": "2016-05-24", - "parcelID": "16911", - "crownLandUsePIN": "18344", - "crownLandFileNumber": "15398", - "landDescription": "LOT 5 OF LOT 1 BLOCK 4 DISTRICT LOT 2 PLAN 3550" + "dateNoted": "2016-01-01", + "parcelID": "19348", + "crownLandUsePIN": "18462", + "crownLandFileNumber": "17471", + "landDescription": "LOT 2 OF LOT 5 BLOCK 3 DISTRICT LOT 3 PLAN 9103" } ], "siteDisclosures": [ { - "uuid": "fca5ecfb-88e7-422d-a37d-74c58d8002cf", - "siteRegistry": true, - "dateReceived": "2021-07-31", - "dateCompleted": "2019-06-11", - "dateEntered": "2020-03-08", - "dateRegistrar": "2021-02-10", - "dateLocalAuthorityReceived": "2019-07-27", - "summary": "Praesentium consequuntur amet debitis commodi non.", - "informationUsed": "Eius sit inventore libero quaerat.\nExpedita fugiat consequuntur harum unde cupiditate dicta quasi.\nMinus in non porro id aperiam aut itaque labore repudiandae.", - "pastOrPresentOrders": "At minima molestias officiis nemo vero pariatur.\nAssumenda ad excepturi cupiditate a corporis architecto.\nEx voluptas minima reiciendis quod minima rerum.", + "uuid": "0ee6cf69-4e2e-44d9-bf11-2c7a251acc74", + "siteRegistry": false, + "dateReceived": "2021-04-10", + "dateCompleted": "2018-09-20", + "dateEntered": "2015-02-19", + "dateRegistrar": "2014-12-25", + "dateLocalAuthorityReceived": "2022-07-11", + "summary": "Vitae corporis sit pariatur eligendi laboriosam asperiores ipsam enim.\nCum aperiam molestiae earum culpa expedita.\nIure doloremque repudiandae quis quae neque.", + "informationUsed": "Laudantium culpa doloremque cum quam quos illum.\nAccusantium soluta doloribus tempore temporibus saepe.\nCulpa beatae ducimus non.\nReprehenderit facere labore provident alias occaecati beatae voluptatibus.\nEarum repellendus porro et.", + "pastOrPresentOrders": "Minima excepturi quaerat sapiente.\nPlaceat minus quisquam.\nEos reprehenderit beatae vero.", "commercialAndIndustrialPurposes": [ { - "uuid": "d756fa71-f4cc-47c4-bf95-5ec9d5105855", - "scheduleReference": "F2*", + "uuid": "bbf7841b-7a4f-477f-884e-cac708a2ffba", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { - "uuid": "d893dc3d-e055-4956-a964-9ea56f06b824", - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "uuid": "580adef9-6abe-43c2-b47b-26954ae00633", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { - "uuid": "337ca4c1-722b-4a11-a5e8-6b2ace6cce00", - "scheduleReference": "F2*", + "uuid": "354af194-e8a0-4f86-afef-edbadd6d1298", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "4856b032-0363-4b9d-a0ae-e66eb2ab86ee", - "scheduleReference": "F1*", + "uuid": "4c4152a3-9596-4048-8a9a-2c96d3555c79", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false } ] }, { - "uuid": "90c6290a-2b8c-4378-9f78-7d283e5b7a4e", - "siteRegistry": false, - "dateReceived": "2015-06-02", - "dateCompleted": "2022-09-17", - "dateEntered": "2014-12-20", - "dateRegistrar": "2021-05-26", - "dateLocalAuthorityReceived": "2019-03-25", - "summary": "Dolorem earum repellat.\nVoluptatibus asperiores architecto molestiae vel eos odio architecto fugit.", - "informationUsed": "Facere odit cum officia minima rerum.\nQuasi eaque illum asperiores fugit quasi aspernatur sapiente quae ipsum.\nAspernatur magni voluptatibus facere.\nAsperiores totam quos nisi sapiente ullam veritatis ab repudiandae numquam.", - "pastOrPresentOrders": "Libero maiores magnam blanditiis et aspernatur temporibus doloribus.\nDelectus quidem exercitationem numquam ex debitis ducimus.\nReprehenderit quaerat cum nulla provident dolorem iste molestiae harum.", + "uuid": "e03b6a98-8cf7-4917-b87b-dc5406b91748", + "siteRegistry": true, + "dateReceived": "2015-01-10", + "dateCompleted": "2018-07-01", + "dateEntered": "2021-10-30", + "dateRegistrar": "2020-05-05", + "dateLocalAuthorityReceived": "2018-08-31", + "summary": "Nam rem tempora vel inventore.\nMaxime ea soluta provident ipsa adipisci nobis perferendis corporis.", + "informationUsed": "Saepe molestiae blanditiis est quod vitae.\nNemo necessitatibus expedita quisquam magni debitis recusandae quam.\nTemporibus laboriosam provident explicabo assumenda omnis eligendi.", + "pastOrPresentOrders": "Ab non repellendus ex adipisci officia inventore laboriosam.\nPorro consectetur beatae cupiditate sed inventore dolorum necessitatibus libero.\nMagni eius at ullam enim incidunt unde incidunt officia sed.", "commercialAndIndustrialPurposes": [ { - "uuid": "eb0ea5e2-d1b9-4544-a5a8-20778239f805", + "uuid": "7a5a7af5-e2b5-44d3-a9be-e34578089015", "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, { - "uuid": "31e2dfab-81cc-4e73-a80d-2ee991fb7ec3", - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "uuid": "aadd8ec5-95ac-4b54-b9c2-80800f185154", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true + }, + { + "uuid": "bdc745f8-1f12-4bd0-b8fa-17e7c11c4b2c", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false } ] } ], "activityLog": [ { - "uuid": "992a338a-2d49-415a-9c67-dbd4a2c20434", - "siteRegistry": false, + "uuid": "7c232ae6-ba77-496c-9586-74c38999bf96", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "ROBEL JUVENAL", - "timestamp": "2015-02-04" + "user": "LITTEL PHILIP", + "timestamp": "2014-01-27" }, { - "uuid": "35a99af2-3922-4623-b74c-d5417a134026", + "uuid": "45e592a4-fbd8-4992-9761-fcdf6c9bd796", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "MARKS JAYDA", - "timestamp": "2021-01-06" + "user": "MARKS KARLIE", + "timestamp": "2022-06-27" }, { - "uuid": "5d0c2a17-934a-4af2-9288-8b9b87f2e282", + "uuid": "db5832f9-8db3-45f9-b3db-b09a7d9ee195", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "LEFFLER STEPHON", - "timestamp": "2017-11-30" - }, - { - "uuid": "553afd3a-e83b-4c08-94b3-ede62e75f711", - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "GULGOWSKI SYLVIA", - "timestamp": "2016-05-23" + "user": "FRITSCH-DAVIS DEJA", + "timestamp": "2015-06-16" }, { - "uuid": "2aea1833-349e-4c17-8192-e2766bc474fe", + "uuid": "05d3d2f7-45c0-4a45-b888-33fce5ebcb44", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "FRANEY ELIZABETH", - "timestamp": "2014-02-07" + "user": "BINS-DICKENS MARIO", + "timestamp": "2013-11-22" }, { - "uuid": "5cc638e2-2cc4-4e3a-96b3-ef47621b38ff", + "uuid": "855780aa-0bdc-470f-9e9a-b15629cc7675", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "BARTELL VERDIE", - "timestamp": "2019-05-27" + "user": "SANFORD-WEST SHYANN", + "timestamp": "2019-11-09" }, { - "uuid": "b2a2a1ab-78b2-4824-87d3-cd1cd57b7a03", + "uuid": "66705f91-18bc-4b21-9995-dc7c93199284", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "BOYER ADONIS", - "timestamp": "2019-02-19" + "user": "RUSSEL LUCILE", + "timestamp": "2018-01-19" }, { - "uuid": "e4ed5049-4068-428b-9845-389b7554d5a7", - "siteRegistry": true, + "uuid": "ac229993-de4c-4d4d-9b0e-df48a9a00b15", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "CHAMPLIN GREYSON", - "timestamp": "2014-08-06" + "user": "BOGAN QUENTIN", + "timestamp": "2023-09-05" } ], "associatedSites": [ { - "uuid": "47a7f416-d381-4986-9d35-2799f4cf6dee", - "dateNoted": "2023-10-08", + "uuid": "273c5387-fe92-4122-b9dd-3400c695cb69", + "dateNoted": "2015-06-08", "notes": "", - "parcelID": "15604", - "siteID": "18505", + "parcelID": "20872", + "siteID": "19745", "siteRegistry": false }, { - "uuid": "75dc39da-3811-4607-a01a-d40f6b5c912f", - "dateNoted": "2020-10-09", + "uuid": "fc62c342-1c59-45cb-aaa5-d6b4c0312f15", + "dateNoted": "2014-06-06", "notes": "", - "parcelID": "15633", - "siteID": "20778", + "parcelID": "20785", + "siteID": "17392", "siteRegistry": false } ] }, { - "uuid": "20b1c5c0-de24-4355-82b6-0125f0fe10a4", - "siteID": 15893, - "address": "1930 Hertha Causeway", - "latitude": 49.6302, - "longitude": -134.863, - "lastUpdated": "2019-04-15", - "city": "Noeliaworth", + "uuid": "aafe9b1b-1d3e-4d7e-a6a0-863ed005e239", + "siteID": 15979, + "address": "421 Carol Estates", + "latitude": 49.4795, + "longitude": -120.2397, + "lastUpdated": "2017-07-03", + "city": "South Mara", "region": "Vancouver Island/Coast", - "victoriaFile": "26250-20/897", + "victoriaFile": "26250-20/5552", "regionalFile": "N/A", "parcelIDs": [ - 8404665, - 5922416, - 3574582, - 2408990, - 5856124 + 7991418, + 9035790, + 2272663, + 3406328, + 673929 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "78f1e3c1-09fd-49ef-86b0-07020f7d93c4", - "createdAt": "2015-12-13", - "completed": "2020-07-09", - "initiated": "2017-02-14", - "ministryContact": "ROLFSON ILIANA", + "uuid": "32d30b1f-0158-4895-bd65-0682346292d9", + "createdAt": "2023-06-01", + "completed": "2015-01-11", + "initiated": "2021-08-19", + "ministryContact": "DURGAN AILEEN", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -4029,38 +4537,44 @@ ], "notationParticipants": [ { - "uuid": "6326064c-0c83-4070-8727-7f22c08643e2", + "uuid": "7fc0d2ab-3a08-42a0-8a74-a38c31d4a06e", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false }, { - "uuid": "22f014fc-a5ae-4758-be53-bc6ba5f5b710", + "uuid": "57b147d9-2560-452d-9009-a4ac9f7c675e", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "862152d1-1de8-44ed-9b05-1cf6f3d62ffa", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false }, { - "uuid": "d7bcfad0-778f-4b09-b7d6-29287fa51483", + "uuid": "5632b890-938c-4ece-a738-b6450114a54d", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "29f46c9a-b4ae-466d-8212-a9d19bf22140", - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "uuid": "9f2e02c2-a2ee-42a4-b525-aded81c04924", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "9f895aa7-87da-4c90-8e3f-59eb48fd1650", - "createdAt": "2014-02-07", - "completed": "2019-06-22", - "initiated": "2018-03-08", - "ministryContact": "GERHOLD FELICIA", + "uuid": "cc7549f9-28ed-4f39-8964-bb35175fc7fe", + "createdAt": "2017-10-06", + "completed": "2015-08-04", + "initiated": "2020-01-05", + "ministryContact": "STOLTENBERG JOHATHAN", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -4069,67 +4583,61 @@ ], "notationParticipants": [ { - "uuid": "81b0225e-6b55-4d7a-afc8-26d849305728", - "name": "SHELL CANADA PRODUCTS", + "uuid": "f6e455bc-4340-401b-9fde-011bba554cba", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "68c3cd21-ec82-4711-a44e-fbed158f2c4a", + "uuid": "ca628ee2-6a8d-49ee-8568-3714f485611a", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false - }, + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "uuid": "648e4236-b2c2-453b-89ef-51848443cecb", + "createdAt": "2016-02-15", + "completed": "2019-06-21", + "initiated": "2022-04-13", + "ministryContact": "DAUGHERTY BRODERICK", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ { - "uuid": "4864388c-20ec-4643-9d32-c8a8d1018545", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "uuid": "f0e6af7f-892c-48f3-9afe-5eedd4d7f67b", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "097f30f6-9c98-4182-8207-8f4e9d8f7fb4", - "name": "SHELL CANADA PRODUCTS", + "uuid": "d183e83e-9927-4b4c-b8e5-aa8a529194e4", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "17d4b6de-f23a-456d-bb1b-b36154bb6499", - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true + "uuid": "c8660d30-75f4-49b2-a65e-34bb3f5bec1b", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true } ], "participants": [ { - "uuid": "39bfc8b5-cd15-4e7e-958a-651646f6e35c", - "name": "AMET, DOLOR SIT", - "endDate": "2015-09-21", - "startDate": "2017-03-07", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": false - }, - { - "uuid": "5635dffb-0ea8-45d7-ae61-a9ba56475c7b", + "uuid": "49cefc61-7fbc-4339-881f-88274112afc8", "name": "IPSUM", - "endDate": "2015-07-04", - "startDate": "2020-01-08", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": false - }, - { - "uuid": "4eb4cd5e-aa3c-4fec-b2c5-b5ac9ba5b7a0", - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2014-09-10", - "startDate": "2021-12-30", + "endDate": "2020-08-26", + "startDate": "2015-02-10", "notes": "", "roles": [ "ORGANIZATION" @@ -4137,10 +4645,10 @@ "siteRegistry": false }, { - "uuid": "1edf9f19-9180-4498-8d8d-275e88c33263", - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2020-05-24", - "startDate": "2017-01-24", + "uuid": "16798b65-64f4-44b9-ac78-50fe7a3d52e4", + "name": "IPSUM", + "endDate": "2016-11-28", + "startDate": "2017-03-05", "notes": "", "roles": [ "ORGANIZATION" @@ -4148,226 +4656,261 @@ "siteRegistry": true } ], - "suspectLandUses": [ + "documents": [ { - "uuid": "14b1c54b-b15e-4deb-80a3-b18f7f238680", + "uuid": "f177101d-550a-480c-a333-501c5a75cc58", + "siteRegistry": true, + "documentDate": "2017-01-24", + "receivedDate": "2021-07-12", + "uploadedDate": "2016-05-18", + "title": "Preliminary Site Investigation, Detailed Site Investigation and Remedial Plan for the Management Area adjacent to the Shell Site at 1503 West 41st Ave", + "participants": [ + { + "uuid": "cc8d55db-fa08-4fbb-9a00-a0901e108119", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": false, + "role": "AUTHOR" + } + ] + }, + { + "uuid": "93ec8454-1740-479d-a1ed-faf1b1473a25", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-08-22 (described on Site Profile dated 2017-08-22)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "documentDate": "2016-11-07", + "receivedDate": "2019-12-29", + "uploadedDate": "2023-07-03", + "title": "Preliminary Site Investigation, Detailed Site Investigation and Remedial Plan for the Management Area adjacent to the Shell Site at 1503 West 41st Ave", + "participants": [ + { + "uuid": "55081de0-295f-4444-8e8e-4d415d117e0c", + "name": "IPSUM", + "siteRegistry": true, + "role": "AUTHOR" + } + ] }, { - "uuid": "6d0f2750-e1bd-4147-85d0-b4ecf50e32d6", + "uuid": "ba0d9991-d81c-4558-a218-19c7d996aadb", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-04-05 (described on Site Profile dated 2015-04-05)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "documentDate": "2017-02-15", + "receivedDate": "2015-01-07", + "uploadedDate": "2017-06-15", + "title": "Preliminary Site Investigation, Detailed Site Investigation and Remedial Plan for the Management Area adjacent to the Shell Site at 1503 West 41st Ave", + "participants": [ + { + "uuid": "28fa2f21-446d-42cb-82d7-9ae360a7b5bd", + "name": "AMET, DOLOR SIT", + "siteRegistry": false, + "role": "AUTHOR" + } + ] } ], - "parcelDescriptions": [ + "suspectLandUses": [ { - "uuid": "bb290ef3-96bf-4782-97ed-375ba060e4b5", - "siteRegistry": true, - "dateNoted": "2016-07-03", - "parcelID": "18097", - "crownLandUsePIN": "19490", - "crownLandFileNumber": "20206", - "landDescription": "LOT 2 OF LOT 3 BLOCK 3 DISTRICT LOT 1 PLAN 7479" + "uuid": "634ceeb9-c229-41d0-a0ac-7671836cdaeb", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2016-04-03 (described on Site Profile dated 2016-04-03)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "uuid": "e0577367-f756-46fe-8490-b89648cf1f4f", + "uuid": "15597f25-a214-49cb-8d4f-ecd58a19e55b", "siteRegistry": true, - "dateNoted": "2020-02-19", - "parcelID": "19416", - "crownLandUsePIN": "15214", - "crownLandFileNumber": "18551", - "landDescription": "LOT 4 OF LOT 1 BLOCK 5 DISTRICT LOT 2 PLAN 8739" + "notes": "INSERTED FOR SITE PROFILE DATED 2023-10-11 (described on Site Profile dated 2023-10-11)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "uuid": "566d714b-16b9-45e8-bf05-14ad5dee09c1", + "uuid": "2b6f7324-7ba1-460c-ae90-54398bda6386", "siteRegistry": false, - "dateNoted": "2017-10-10", - "parcelID": "18013", - "crownLandUsePIN": "16885", - "crownLandFileNumber": "16186", - "landDescription": "LOT 1 OF LOT 1 BLOCK 4 DISTRICT LOT 1 PLAN 8092" + "notes": "INSERTED FOR SITE PROFILE DATED 2013-11-11 (described on Site Profile dated 2013-11-11)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "uuid": "6a78e780-aaa4-49cf-ba00-9541e27191aa", + "uuid": "68275084-369a-43bf-abbd-5e251028645b", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2015-06-21 (described on Site Profile dated 2015-06-21)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + } + ], + "parcelDescriptions": [ + { + "uuid": "03f3cf81-f5e2-4148-85ea-7f5e586845c6", "siteRegistry": true, - "dateNoted": "2023-09-06", - "parcelID": "20237", - "crownLandUsePIN": "16665", - "crownLandFileNumber": "19694", - "landDescription": "LOT 4 OF LOT 5 BLOCK 1 DISTRICT LOT 4 PLAN 5387" + "dateNoted": "2016-06-02", + "parcelID": "16051", + "crownLandUsePIN": "20562", + "crownLandFileNumber": "18382", + "landDescription": "LOT 5 OF LOT 2 BLOCK 5 DISTRICT LOT 4 PLAN 6166" }, { - "uuid": "adc73da3-08f3-4c77-bdbd-d38db56ff99f", - "siteRegistry": true, - "dateNoted": "2021-07-13", - "parcelID": "20220", - "crownLandUsePIN": "20844", - "crownLandFileNumber": "18205", - "landDescription": "LOT 4 OF LOT 3 BLOCK 3 DISTRICT LOT 4 PLAN 5764" + "uuid": "ea5cce54-b296-4b11-92f2-cb8b42e5775d", + "siteRegistry": false, + "dateNoted": "2023-02-08", + "parcelID": "18314", + "crownLandUsePIN": "19605", + "crownLandFileNumber": "20712", + "landDescription": "LOT 5 OF LOT 1 BLOCK 4 DISTRICT LOT 3 PLAN 6981" + }, + { + "uuid": "109988a8-7a43-4510-a7e8-030a20f49327", + "siteRegistry": false, + "dateNoted": "2023-02-18", + "parcelID": "18448", + "crownLandUsePIN": "19344", + "crownLandFileNumber": "19953", + "landDescription": "LOT 4 OF LOT 2 BLOCK 4 DISTRICT LOT 5 PLAN 8821" } ], "siteDisclosures": [ { - "uuid": "0d8f791d-2926-4d81-a637-8befd426a237", - "siteRegistry": false, - "dateReceived": "2017-08-05", - "dateCompleted": "2023-08-26", - "dateEntered": "2018-10-28", - "dateRegistrar": "2018-12-02", - "dateLocalAuthorityReceived": "2013-11-30", - "summary": "Velit ipsa vitae perspiciatis aspernatur laboriosam earum.\nDebitis ratione odit repudiandae eaque earum eum.", - "informationUsed": "Recusandae explicabo assumenda nesciunt unde iusto culpa natus dicta beatae.\nAnimi ducimus beatae aut.\nVitae voluptatem adipisci quasi earum illo.\nAlias officiis dolores velit totam unde veniam qui magnam fugiat.\nOdit fugit suscipit architecto id nesciunt.", - "pastOrPresentOrders": "Non nisi debitis fugit omnis blanditiis repellat optio vel.\nRepudiandae dolor repellendus labore et velit suscipit aperiam.\nQuasi sapiente iure quo rerum fuga.", + "uuid": "d256616f-d9c4-4fa9-a803-c52948ac2be8", + "siteRegistry": true, + "dateReceived": "2018-12-08", + "dateCompleted": "2016-12-14", + "dateEntered": "2014-03-03", + "dateRegistrar": "2014-06-02", + "dateLocalAuthorityReceived": "2016-05-22", + "summary": "Ut reiciendis fuga doloribus nobis est dolor hic aut.\nDolorum voluptas ullam quasi voluptas.", + "informationUsed": "Nesciunt quidem aperiam dignissimos accusantium inventore numquam.\nQuibusdam quidem dignissimos est molestias.\nSed animi est fugit sit assumenda magnam aut molestias.\nRepudiandae saepe adipisci omnis minus magnam quisquam voluptatibus atque.", + "pastOrPresentOrders": "Animi maxime nobis quia dignissimos inventore quas itaque.", "commercialAndIndustrialPurposes": [ { - "uuid": "2385ec04-a95d-4f44-923a-abd83b4f75d4", + "uuid": "6f574628-ee17-4bc5-a74b-955521783c72", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "2a412ae6-1646-4a9f-880a-de61585b9f17", - "scheduleReference": "F1*", + "uuid": "9f62c957-95f7-4959-8b31-7616c70cd0d2", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { - "uuid": "5440a9f8-c2d9-4f72-9e52-2164d8274587", - "scheduleReference": "F2*", + "uuid": "49764ec2-fb00-44c5-8959-1dec4fc6049b", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true } ] - } - ], - "activityLog": [ - { - "uuid": "ccce94bd-9508-43d9-a00a-50268d0a484f", - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "TOWNE JOSEFINA", - "timestamp": "2021-07-30" - }, - { - "uuid": "11cae752-79c7-4f98-829b-9935cbb78ceb", - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "ANKUNDING CARLI", - "timestamp": "2021-07-05" - }, - { - "uuid": "db0e3295-5103-40aa-8299-ad7ae0694f03", - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "SCHADEN ROZELLA", - "timestamp": "2018-01-20" - }, - { - "uuid": "f9a88f52-9574-485a-aaca-f8c5f11af066", - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "WALKER MARIAM", - "timestamp": "2020-12-13" }, { - "uuid": "c820fd13-d727-41e0-9a03-1a33b071cd68", + "uuid": "ae64655a-1551-4f96-a131-d95883fc6686", "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "KLOCKO ELVIS", - "timestamp": "2017-02-07" - }, + "dateReceived": "2017-06-18", + "dateCompleted": "2015-11-21", + "dateEntered": "2016-09-16", + "dateRegistrar": "2017-07-20", + "dateLocalAuthorityReceived": "2017-01-02", + "summary": "A velit nulla eos repudiandae nemo.\nNemo neque corrupti alias officia animi earum officiis quam.", + "informationUsed": "Labore distinctio quae natus perferendis aliquid similique magni.\nOptio iusto laudantium ex voluptates eius.\nFugiat quas voluptate consectetur.", + "pastOrPresentOrders": "Fugit veritatis sed sequi voluptatum.\nDelectus dignissimos veniam delectus magni sequi repudiandae atque.", + "commercialAndIndustrialPurposes": [ + { + "uuid": "6a44e760-2a40-4547-80a3-13ddba66cb9b", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "uuid": "571591c3-1ac4-493f-af7b-3fb1d83ff87c", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + } + ] + } + ], + "activityLog": [ { - "uuid": "413f56ed-55ea-450f-84f3-e7f0532c83c2", + "uuid": "f90d7f46-d0f7-4fa7-8722-6c097e7284c4", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "REICHEL AUTUMN", - "timestamp": "2018-05-23" + "user": "ONDRICKA ELEANORA", + "timestamp": "2016-06-20" }, { - "uuid": "bb701631-59aa-46e0-894f-794c709288a8", + "uuid": "8726e26c-4e76-448b-8ee7-13d57ed3f08b", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "GOLDNER HUNTER", - "timestamp": "2017-09-18" + "user": "BROWN SONNY", + "timestamp": "2014-07-04" }, { - "uuid": "030d45a2-446c-484c-8c5b-b31c5203a034", + "uuid": "786b2362-5d2f-4fa6-a330-38b5ce576bf4", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "BRUEN KAILYN", - "timestamp": "2015-11-05" + "user": "ERNSER NORWOOD", + "timestamp": "2015-01-27" }, { - "uuid": "d221e6db-f5ee-40f7-86b1-acf051986aec", + "uuid": "00035cf1-21ca-4ec4-8b17-2f7fbab29b60", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "LAKIN BARBARA", - "timestamp": "2014-05-14" + "user": "POWLOWSKI-O'REILLY JANELLE", + "timestamp": "2020-04-28" }, { - "uuid": "2e76d673-4f0d-4342-810b-17e116be56de", + "uuid": "ed8abe03-5854-4d74-911c-364ab8e64d02", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "SPENCER JANAE", - "timestamp": "2018-04-22" + "user": "HOMENICK SCARLETT", + "timestamp": "2018-12-12" } ], "associatedSites": [ { - "uuid": "ffde2ee7-fd46-4f06-bfa2-a568b2c29146", - "dateNoted": "2016-04-22", + "uuid": "405dee08-47e6-4b58-8bdf-7fefffa0afe7", + "dateNoted": "2015-05-05", "notes": "", - "parcelID": "17268", - "siteID": "16267", + "parcelID": "18644", + "siteID": "19563", "siteRegistry": false }, { - "uuid": "abed7dd7-f1c3-456c-84aa-12ce23053ed1", - "dateNoted": "2022-09-20", + "uuid": "dc878fc1-597c-4652-9c12-8544d6201f6b", + "dateNoted": "2020-09-06", "notes": "", - "parcelID": "18575", - "siteID": "17604", - "siteRegistry": false + "parcelID": "16417", + "siteID": "18536", + "siteRegistry": true }, { - "uuid": "f73b47e0-6f42-44c1-a003-0495bff5bbe5", - "dateNoted": "2020-08-13", + "uuid": "4302c0a3-e6f3-4f90-9e18-4856e5a1d5f8", + "dateNoted": "2016-05-13", "notes": "", - "parcelID": "20677", - "siteID": "18583", - "siteRegistry": true + "parcelID": "18694", + "siteID": "20206", + "siteRegistry": false } ] }, { - "uuid": "a4f5c0a4-fb65-4742-9672-b6ee2c64e613", - "siteID": 16254, - "address": "43578 Carol Haven", - "latitude": 54.5667, - "longitude": -134.9603, - "lastUpdated": "2016-09-24", - "city": "Rossiechester", - "region": "Cariboo", - "victoriaFile": "26250-20/19256", + "uuid": "34a18bbe-ff5f-434f-aaa6-f52e736aa170", + "siteID": 19619, + "address": "5245 Gerlach Ports", + "latitude": 48.6588, + "longitude": -136.1686, + "lastUpdated": "2017-01-06", + "city": "Port Audreyton", + "region": "Mainland/Southwest", + "victoriaFile": "26250-20/6373", "regionalFile": "N/A", "parcelIDs": [ - 3085116, - 2392081, - 565645, - 4874849, - 9538670 + 7040891, + 7703432, + 1137673, + 3356087, + 6627637 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "f1e640f9-529f-400f-b9ff-b2af80b8d65b", - "createdAt": "2020-07-20", - "completed": "2019-12-17", - "initiated": "2015-10-22", - "ministryContact": "BERGSTROM SHERWOOD", + "uuid": "f221cd4e-0bd8-492f-958a-493ca956f840", + "createdAt": "2014-10-11", + "completed": "2015-03-11", + "initiated": "2018-01-08", + "ministryContact": "VANDERVORT MILAN", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -4376,124 +4919,26 @@ ], "notationParticipants": [ { - "uuid": "e5ed60c3-373c-43f1-9e35-b80d1e9e39bd", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "uuid": "be706723-9d87-45f6-8e0b-68eceef43979", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "uuid": "72e6de88-5045-4ca2-87de-97843e159eeb", + "uuid": "932f5bad-ebdd-4705-a44c-a7104568c1d3", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "57c00d8a-2e90-487e-b173-4d2246978aa7", - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "uuid": "4b5021ae-f030-47e9-9734-4523ee8ef239", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - } - ], - "siteRegistry": false - }, - { - "uuid": "726abef8-f833-457b-b223-7c9cff34ad4f", - "createdAt": "2014-09-06", - "completed": "2017-12-08", - "initiated": "2013-11-06", - "ministryContact": "CARTWRIGHT KATHERYN", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "uuid": "d5300165-78b1-4cd9-b974-cf3a634d9c7a", + "uuid": "54cc781b-6eec-462e-bdde-a3bb125d2480", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "uuid": "41d35aa3-f8d7-4bb1-8df5-467ae40340d2", - "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "uuid": "7d645209-f561-424d-a68d-3f08aae9977d", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", "siteRegistry": false - }, - { - "uuid": "5ebd8842-3bd4-4ea3-a1aa-3d5294104b8c", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - } - ], - "siteRegistry": true - }, - { - "uuid": "ae4e93d1-a507-4de4-9d36-7ee027a7484f", - "createdAt": "2018-01-06", - "completed": "2020-05-21", - "initiated": "2021-06-19", - "ministryContact": "TURCOTTE ETHA", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "uuid": "558534a1-3fb7-4300-9601-d5f801439fe5", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "uuid": "ee65afda-b04e-4fdf-9c4a-7ea8f5480cf7", - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "uuid": "5023e23d-c629-4493-bb2f-d7d356c7d385", - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "uuid": "71449a20-4a2e-4a23-8924-39552ffa7022", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true } ], "siteRegistry": false }, { - "uuid": "05af866b-5db3-4fab-9d57-4562602ddc84", - "createdAt": "2018-02-13", - "completed": "2016-03-03", - "initiated": "2022-03-18", - "ministryContact": "REICHERT ALLENE", + "uuid": "dce0c011-c617-4ff8-af19-53bf3ae05e66", + "createdAt": "2020-01-31", + "completed": "2019-01-25", + "initiated": "2018-08-20", + "ministryContact": "BOEHM TIANA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -4502,44 +4947,32 @@ ], "notationParticipants": [ { - "uuid": "0c37e930-84ef-47a5-b319-1bae8523877f", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "uuid": "64c43c70-c6c0-4361-b80b-a5746fcdeef9", + "uuid": "e8d534d5-de69-41b7-a031-29398f362c47", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "e82d037c-3b09-42bf-a45a-3ac44972b87a", + "uuid": "4db88386-fa87-4bd7-9824-072dabbcb961", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "uuid": "4899a9a2-58d6-4b7c-8709-114fcbdc723e", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "5fd2bd48-8fff-4ce7-94e3-db2190f9864f", - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "d5b550b1-c034-4a4f-85ef-1d01e5ec5059", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "dd1ddfcd-98cc-4506-87a2-d03724b33587", - "createdAt": "2019-02-18", - "completed": "2019-07-17", - "initiated": "2021-09-10", - "ministryContact": "MOORE NANNIE", + "uuid": "7f81bc0f-44fe-4529-89be-7a102040fa2a", + "createdAt": "2014-06-11", + "completed": "2014-11-19", + "initiated": "2023-09-05", + "ministryContact": "DAUGHERTY DARION", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -4548,56 +4981,38 @@ ], "notationParticipants": [ { - "uuid": "1c6f9ede-fcc3-4fc7-b8b9-5d11d7755172", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "uuid": "811bbfb9-9d66-467e-b5f4-d0cabadf3b0e", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "uuid": "bcb97fa7-5075-43b7-8b95-c5681d3e164e", - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "uuid": "42df2830-9541-4cc3-bcb5-08dd8d8f4ca5", + "uuid": "8f62e3dd-46cd-47d5-a0a3-c6f8601a2e4e", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false }, { - "uuid": "1f89712d-c072-45db-8fd0-47b9d779b7d0", + "uuid": "e18d0b27-3797-4049-9fa9-83457cc88abd", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false } ], "participants": [ { - "uuid": "88b886e3-0be4-4bb2-b9bc-a8a1cd62d7ff", - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2022-08-03", - "startDate": "2017-03-25", + "uuid": "af33954e-009f-4ce3-8669-6d8496fb2989", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2014-04-29", + "startDate": "2023-08-22", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "0b823aab-d713-4bf3-9386-e2fc1b34feb9", + "uuid": "a363dd38-7a66-45c0-8604-70fd34c5007f", "name": "SHELL CANADA PRODUCTS", - "endDate": "2016-02-14", - "startDate": "2014-06-26", + "endDate": "2019-01-25", + "startDate": "2017-10-04", "notes": "", "roles": [ "ORGANIZATION" @@ -4605,10 +5020,10 @@ "siteRegistry": false }, { - "uuid": "ac9b7190-4295-4607-816e-6e6bb2a99fc1", - "name": "SHELL CANADA PRODUCTS", - "endDate": "2022-03-12", - "startDate": "2015-08-25", + "uuid": "e02aeb4f-cf5d-438e-b963-466c7b27fcad", + "name": "IPSUM", + "endDate": "2020-02-03", + "startDate": "2014-08-18", "notes": "", "roles": [ "ORGANIZATION" @@ -4616,232 +5031,323 @@ "siteRegistry": false }, { - "uuid": "ece0df5c-62c9-4102-90b4-a6510166fe45", - "name": "SHELL CANADA PRODUCTS", - "endDate": "2017-01-02", - "startDate": "2022-08-09", + "uuid": "7d0c17be-2f8a-4798-8c04-41ce8ca50abd", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2022-10-11", + "startDate": "2021-01-27", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": true + } + ], + "documents": [ + { + "uuid": "0f5b8276-9c99-4d0d-9a62-b8c314d5004b", + "siteRegistry": true, + "documentDate": "2019-10-04", + "receivedDate": "2014-04-28", + "uploadedDate": "2022-05-05", + "title": "Summary of Site Conditions, 1537 W 41st Avenue, Vancouver", + "participants": [ + { + "uuid": "ff239892-b1be-4621-a9e2-edeb8be72a77", + "name": "IPSUM", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "d202c72b-add5-4711-898b-762efb782cc7", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": true, + "role": "AUTHOR" + } + ] }, { - "uuid": "ccc5c3a2-337b-4131-a54d-8bfedd70874b", - "name": "IPSUM", - "endDate": "2019-08-19", - "startDate": "2013-11-12", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": true + "uuid": "26bad52d-0186-49c0-89b5-11748fc1a8f3", + "siteRegistry": false, + "documentDate": "2013-12-23", + "receivedDate": "2020-06-08", + "uploadedDate": "2023-02-05", + "title": "Preliminary Site Investigation, Detailed Site Investigation and Remedial Plan for the Management Area adjacent to the Shell Site at 1503 West 41st Ave", + "participants": [ + { + "uuid": "c7d458be-87cb-4431-b2ac-ffefeaf375de", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "84b54e0e-4650-4cf4-85a9-c1202f570597", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "83c6417a-9cae-4955-a94e-e4ccb5243df4", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": true, + "role": "AUTHOR" + } + ] } ], "suspectLandUses": [ { - "uuid": "c3b8930f-5aae-422a-b018-207485a6547e", + "uuid": "394b7357-da5b-432a-adb8-adab59dc290f", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-03-29 (described on Site Profile dated 2022-03-29)", + "notes": "INSERTED FOR SITE PROFILE DATED 2017-10-22 (described on Site Profile dated 2017-10-22)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "uuid": "8a60e037-101e-4af6-9b9e-2661cf0cfa48", + "uuid": "b369f08d-a2fc-4602-8e44-602bd7d63ce2", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-03-30 (described on Site Profile dated 2017-03-30)", + "notes": "INSERTED FOR SITE PROFILE DATED 2021-07-04 (described on Site Profile dated 2021-07-04)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "uuid": "d9053690-375f-4f04-ac13-afa4effd9b09", + "uuid": "1ff83902-85d6-4cdc-a711-f528b179c8b1", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-10-09 (described on Site Profile dated 2014-10-09)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "notes": "INSERTED FOR SITE PROFILE DATED 2022-10-24 (described on Site Profile dated 2022-10-24)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "uuid": "bae9562c-f52a-463a-b338-3b323dd015eb", - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2023-08-14 (described on Site Profile dated 2023-08-14)", + "uuid": "f47aa939-1a0b-4448-b7f3-92b7bb1d7df6", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2016-11-06 (described on Site Profile dated 2016-11-06)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], "parcelDescriptions": [ { - "uuid": "8b379971-ac46-452f-ac85-9b7a4b78433b", - "siteRegistry": false, - "dateNoted": "2020-08-15", - "parcelID": "20626", - "crownLandUsePIN": "19769", - "crownLandFileNumber": "16202", - "landDescription": "LOT 2 OF LOT 3 BLOCK 2 DISTRICT LOT 2 PLAN 7091" + "uuid": "2fc2ddc3-d65a-46a3-bce3-8dc620159fd5", + "siteRegistry": true, + "dateNoted": "2018-08-30", + "parcelID": "16255", + "crownLandUsePIN": "16867", + "crownLandFileNumber": "15325", + "landDescription": "LOT 4 OF LOT 2 BLOCK 1 DISTRICT LOT 1 PLAN 8950" + }, + { + "uuid": "c490d5c5-5af2-4e31-b19e-9b3befba354b", + "siteRegistry": true, + "dateNoted": "2021-04-05", + "parcelID": "20175", + "crownLandUsePIN": "16508", + "crownLandFileNumber": "15943", + "landDescription": "LOT 2 OF LOT 3 BLOCK 1 DISTRICT LOT 2 PLAN 7365" + }, + { + "uuid": "cbbda6d0-a210-458d-94c7-76d4b692e02e", + "siteRegistry": true, + "dateNoted": "2016-08-07", + "parcelID": "20016", + "crownLandUsePIN": "19870", + "crownLandFileNumber": "18360", + "landDescription": "LOT 2 OF LOT 5 BLOCK 2 DISTRICT LOT 2 PLAN 6547" }, { - "uuid": "5c542335-4b2e-44ab-ae24-a5c8f247d6de", + "uuid": "498c8630-3e56-44d6-a278-0702df063ad5", "siteRegistry": false, - "dateNoted": "2021-09-18", - "parcelID": "17832", - "crownLandUsePIN": "16046", - "crownLandFileNumber": "19756", - "landDescription": "LOT 2 OF LOT 5 BLOCK 1 DISTRICT LOT 2 PLAN 4032" + "dateNoted": "2016-06-14", + "parcelID": "19386", + "crownLandUsePIN": "16482", + "crownLandFileNumber": "17301", + "landDescription": "LOT 2 OF LOT 4 BLOCK 5 DISTRICT LOT 4 PLAN 3790" }, { - "uuid": "44f37590-72fd-4ce9-9a1f-e36516f13045", + "uuid": "7432f3dc-5527-41cf-9ea1-5d9a9eb2a45c", "siteRegistry": false, - "dateNoted": "2016-06-05", - "parcelID": "18182", - "crownLandUsePIN": "17518", - "crownLandFileNumber": "16907", - "landDescription": "LOT 2 OF LOT 2 BLOCK 5 DISTRICT LOT 2 PLAN 5382" + "dateNoted": "2017-08-06", + "parcelID": "18251", + "crownLandUsePIN": "18190", + "crownLandFileNumber": "18077", + "landDescription": "LOT 1 OF LOT 1 BLOCK 3 DISTRICT LOT 3 PLAN 5958" } ], "siteDisclosures": [ { - "uuid": "1f949310-4623-4a68-9397-680fe8316bd3", + "uuid": "276b5496-71dc-4915-a25d-4696b51df683", "siteRegistry": false, - "dateReceived": "2016-09-16", - "dateCompleted": "2021-01-21", - "dateEntered": "2022-06-30", - "dateRegistrar": "2019-12-04", - "dateLocalAuthorityReceived": "2017-12-25", - "summary": "Laboriosam exercitationem necessitatibus deleniti amet.\nAspernatur voluptatum veniam voluptas dolorem et deserunt officiis nostrum error.\nAut veritatis ducimus atque architecto libero suscipit beatae voluptatibus dignissimos.", - "informationUsed": "Blanditiis ipsa tempore eos explicabo dolorum.\nMaxime deleniti enim libero quaerat odio.\nEius qui rerum.", - "pastOrPresentOrders": "Error accusamus impedit accusamus aliquid.\nIllum consequuntur sunt natus debitis eum alias rerum.", + "dateReceived": "2016-10-04", + "dateCompleted": "2014-10-04", + "dateEntered": "2022-07-14", + "dateRegistrar": "2016-08-31", + "dateLocalAuthorityReceived": "2013-12-07", + "summary": "Ipsam maxime sunt.\nReprehenderit nam blanditiis corporis vero reprehenderit autem harum.", + "informationUsed": "Ad odit dolore cupiditate vero cum error.\nNemo itaque aliquam consectetur temporibus alias dignissimos id ipsum repellendus.\nRepellendus illum id voluptatibus odit recusandae culpa dignissimos consectetur error.", + "pastOrPresentOrders": "Debitis aliquam corporis illo iste.\nEa doloribus praesentium libero vel earum.\nQuaerat cumque velit nulla impedit libero eligendi laboriosam cumque provident.", "commercialAndIndustrialPurposes": [ { - "uuid": "3318a971-4799-45e4-8fa7-774fdaa77efb", - "scheduleReference": "F2*", + "uuid": "d5a11fe5-15d3-469f-9cb3-d05f84303d86", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, { - "uuid": "01a7eec9-eaf9-497c-b370-fb29d6d9eb83", + "uuid": "7ff53a73-1545-4836-851c-4bd35a06ccd6", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "uuid": "d1da82c3-5340-470c-8255-fd791546dddf", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + } + ] + }, + { + "uuid": "cc1e5ee2-0972-44b9-ac3b-370d71370d6f", + "siteRegistry": true, + "dateReceived": "2021-03-21", + "dateCompleted": "2015-10-29", + "dateEntered": "2020-05-14", + "dateRegistrar": "2022-12-31", + "dateLocalAuthorityReceived": "2018-04-05", + "summary": "Ab veritatis tempore voluptatum ratione iure doloribus quam est.\nSimilique sed voluptates officia.", + "informationUsed": "Impedit placeat sint molestiae at placeat labore alias.\nEos nobis id at recusandae deserunt alias.\nAtque sapiente corporis provident.\nEos modi sit deserunt consequatur.", + "pastOrPresentOrders": "Perferendis consequuntur nihil explicabo consectetur aliquid neque recusandae reprehenderit cum.\nAliquam quaerat et maxime ipsum quam blanditiis perspiciatis minima.\nVoluptate molestias aut molestias iste voluptatum ipsum labore fugiat.", + "commercialAndIndustrialPurposes": [ + { + "uuid": "bca2b6bc-cdff-4b34-aafa-8a51ad7a9cc2", "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "uuid": "1495f04f-8e6c-4582-b104-344115cdebfa", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { - "uuid": "8447615e-d9d4-42e0-a160-b2bdb2b4fc8a", + "uuid": "082d25bf-2116-41d1-b606-3677a73b3b0f", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { - "uuid": "61f340db-996a-4a0c-b78a-bbda7bb4f080", + "uuid": "4565bd61-ae8f-4e10-8775-98f31a0530f7", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false + "siteRegistry": true } ] } ], "activityLog": [ { - "uuid": "4df8707f-2a41-40ec-a3de-cb245ad97867", - "siteRegistry": false, + "uuid": "2ba8b5a2-2508-4b6f-9013-d1a14c3d8d46", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "PURDY MAC", - "timestamp": "2018-11-28" + "user": "CONN D'ANGELO", + "timestamp": "2018-03-20" }, { - "uuid": "a9cbad3d-3756-4df6-91f0-47424246053c", - "siteRegistry": false, + "uuid": "5101b9f1-59c9-4d8c-8aab-456d8e990f3e", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "CHAMPLIN TRYSTAN", - "timestamp": "2016-12-02" + "user": "KUPHAL JO", + "timestamp": "2016-10-08" }, { - "uuid": "41824a20-bd5c-4fd9-b2e5-35cfa40a482d", + "uuid": "ac3f4ea2-4d93-469a-9e6f-4d8595bec294", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "SMITHAM MYRA", - "timestamp": "2021-02-18" + "user": "HUELS ISABELLE", + "timestamp": "2020-10-04" }, { - "uuid": "abd5fdfe-49d6-4ab9-a96f-96526a73b468", - "siteRegistry": true, + "uuid": "b19076ab-a534-4263-aac4-fdd533b1dad8", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "RUSSEL PAULA", - "timestamp": "2018-01-29" + "user": "GREENHOLT HELEN", + "timestamp": "2016-05-23" }, { - "uuid": "dbdaa567-459c-4e55-b569-138ce56ea116", - "siteRegistry": true, + "uuid": "ca1bdd0e-da64-4853-89e1-c67eb1d329fe", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "DAVIS VINCE", - "timestamp": "2019-07-31" + "user": "LANGWORTH HEAVEN", + "timestamp": "2014-11-29" }, { - "uuid": "49856bf9-5d66-4589-87db-f8038d5ac8c1", + "uuid": "bdb25830-8984-4ef7-bcb1-a9b50bd30341", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "KULAS-MANN ROBERTO", - "timestamp": "2017-07-06" + "user": "RIPPIN TRINITY", + "timestamp": "2013-12-31" }, { - "uuid": "3c81002c-e601-41a1-8cf3-c9bfd8fe2a60", + "uuid": "a3c7388a-1fa7-4e98-9919-5d6b56db117d", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "SIMONIS JOHNNIE", - "timestamp": "2015-07-02" + "user": "O'CONNELL ELENORA", + "timestamp": "2014-10-24" }, { - "uuid": "850421d0-6fa4-4e70-9804-2bf731736882", + "uuid": "803accd9-cc62-4042-be36-3f68cedbdba7", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "DAUGHERTY MARGOT", - "timestamp": "2022-03-23" + "user": "LARKIN FAVIAN", + "timestamp": "2020-04-07" }, { - "uuid": "535cf9c3-26d5-4133-8af0-79501edbf75d", - "siteRegistry": true, + "uuid": "0df18058-e0f4-4621-ba42-5de70b8721d5", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "HOMENICK BONNIE", - "timestamp": "2021-04-13" + "user": "GERHOLD WALKER", + "timestamp": "2021-07-16" }, { - "uuid": "b776f9d1-678a-4924-9f67-5000f22eba03", + "uuid": "a4340599-0c27-446c-a2cc-d8060f11c132", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "DIBBERT NICOLE", - "timestamp": "2019-08-14" + "user": "O'KON BREANA", + "timestamp": "2016-10-16" } ], "associatedSites": [ { - "uuid": "8ebce77d-b48c-497e-a30c-3b96bc36470d", - "dateNoted": "2023-08-29", + "uuid": "379b0929-4275-4caa-b659-280dbd16d4ea", + "dateNoted": "2018-05-05", "notes": "", - "parcelID": "19441", - "siteID": "15573", + "parcelID": "17923", + "siteID": "17275", "siteRegistry": true } ] }, { - "uuid": "fa2e395c-5042-4f10-827e-c4f3a872b25b", - "siteID": 20013, - "address": "9323 Kunde Curve", - "latitude": 58.4599, - "longitude": -129.4425, - "lastUpdated": "2021-04-09", - "city": "Port Haley", - "region": "Thompson-Okanagan", - "victoriaFile": "26250-20/11224", + "uuid": "356ced73-cf86-4ade-b3e1-bec33c4d8fce", + "siteID": 16250, + "address": "7018 Kunde Lights", + "latitude": 52.0717, + "longitude": -132.7616, + "lastUpdated": "2015-05-25", + "city": "Fort Gabriel", + "region": "Vancouver Island/Coast", + "victoriaFile": "26250-20/6161", "regionalFile": "N/A", "parcelIDs": [ - 7865143, - 3085164, - 4017234, - 3979700, - 3547831 + 2981139, + 8974175, + 3915751, + 224726, + 1277734 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "d76772a8-f8b9-46a7-8f3b-dca048a0f760", - "createdAt": "2022-10-13", - "completed": "2021-02-22", - "initiated": "2016-05-30", - "ministryContact": "GOYETTE ALBERTHA", + "uuid": "26d61b8f-d732-4620-9416-abe1aa11cf3e", + "createdAt": "2019-10-15", + "completed": "2017-09-24", + "initiated": "2015-01-30", + "ministryContact": "SAWAYN FLOYD", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -4850,44 +5356,32 @@ ], "notationParticipants": [ { - "uuid": "d003d23e-47dd-4b4b-a6a5-4dac12ad13fc", - "name": "SHELL CANADA PRODUCTS", + "uuid": "4b27d76e-6a2e-436f-a695-d81128479054", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "d74b0d24-b02d-4cb2-aa6a-7180595bb8b8", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "uuid": "69092e9b-fd02-45b1-924b-763815d43997", + "uuid": "45848575-1297-47e2-bfa1-3d4f2296cc32", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "7a2169f9-33ef-48fa-b720-aed434cb5249", + "uuid": "8e6788ba-e101-407b-b3db-794885b5be39", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "uuid": "bf8e6481-2edc-41d2-b3fe-1b134bf69010", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "cf1f6f5c-93c9-42a4-869f-5ff38bf4e0b1", - "createdAt": "2021-06-07", - "completed": "2023-03-02", - "initiated": "2017-07-01", - "ministryContact": "WITTING CAYLA", + "uuid": "4e48d187-40d5-4529-82a1-11a5602fa4c0", + "createdAt": "2021-10-23", + "completed": "2014-01-13", + "initiated": "2017-06-03", + "ministryContact": "PREDOVIC VINCENT", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -4896,202 +5390,219 @@ ], "notationParticipants": [ { - "uuid": "264b19e4-4ee9-401b-a212-a6e37b6c1b4f", + "uuid": "eed9c85c-ba2b-4ba8-9715-c3648235dd51", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "3007533d-1f12-4664-b7ab-4f96b83027ab", + "uuid": "f621401d-a05e-4073-9904-dbd2850addbc", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "b4e474cd-2e0b-4d2b-9fcf-fad26e40aec7", "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "uuid": "500a87c8-bae9-4960-bc65-c8f898f8a268", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false }, { - "uuid": "b1c87f3b-29cf-4977-a3d0-265efad82100", - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "cd882409-a290-4529-8979-4d8d017ba0fc", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true - }, + } + ], + "siteRegistry": false + }, + { + "uuid": "97fb1ff0-1f66-4f58-9015-8b014ff840f3", + "createdAt": "2017-04-14", + "completed": "2018-09-19", + "initiated": "2017-03-02", + "ministryContact": "HARRIS TONEY", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ { - "uuid": "cc426a7e-4eb3-4ff1-ac18-51084221f86a", + "uuid": "2df543d8-4e71-44f7-963c-759e7a329c9f", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "359e3a17-5fd2-4061-a549-b8ade7f8cad6", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false + "uuid": "c2d87e6f-9273-4bb9-a626-bdb4fa68637f", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false } ], "participants": [ { - "uuid": "d5a2c2eb-af52-443a-9e3e-684eaa2cd5e5", - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2017-06-03", - "startDate": "2020-08-15", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": false - }, - { - "uuid": "c2572ad7-dcab-4f73-a343-dd15210772ff", + "uuid": "78bbb73d-0b3f-4cad-ae25-7e62d119e742", "name": "IPSUM", - "endDate": "2022-10-07", - "startDate": "2014-10-19", + "endDate": "2019-04-22", + "startDate": "2016-11-27", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": false }, { - "uuid": "77289fe4-6a04-4cd7-ae99-306aab5e4236", - "name": "AMET, DOLOR SIT", - "endDate": "2020-04-23", - "startDate": "2016-04-16", + "uuid": "c6af3bf7-7b36-4fa2-bd9a-f3bc739f0885", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2020-07-10", + "startDate": "2014-12-13", "notes": "", "roles": [ "EMPLOYEE" ], "siteRegistry": true - }, + } + ], + "documents": [ { - "uuid": "0fb65bb5-6225-48a3-bce6-cab5bf391163", - "name": "SHELL CANADA PRODUCTS", - "endDate": "2022-04-28", - "startDate": "2021-02-03", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": false + "uuid": "adf99f59-5a21-424d-af1f-52f1d8547959", + "siteRegistry": false, + "documentDate": "2019-09-07", + "receivedDate": "2019-12-23", + "uploadedDate": "2020-03-13", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "68dc9b3f-c39f-447b-ba45-f20d404d2488", + "name": "IPSUM", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "9475fa51-7038-415d-a6b4-9f06bc8f3290", + "name": "AMET, DOLOR SIT", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "ced0f4da-c0dd-469b-b51e-a42e2e2dcd05", + "name": "AMET, DOLOR SIT", + "siteRegistry": false, + "role": "AUTHOR" + } + ] }, { - "uuid": "59a28a4a-934a-436e-9baa-7343a2205875", - "name": "AMET, DOLOR SIT", - "endDate": "2017-03-15", - "startDate": "2014-01-09", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": true + "uuid": "eb49afbd-e0ba-4a1a-b4e7-2425d0800e87", + "siteRegistry": true, + "documentDate": "2019-08-18", + "receivedDate": "2019-04-13", + "uploadedDate": "2017-02-25", + "title": "Summary of Site Conditions, 1537 W 41st Avenue, Vancouver", + "participants": [ + { + "uuid": "19c2c727-6971-40f9-8a78-cf35fd979e00", + "name": "IPSUM", + "siteRegistry": false, + "role": "AUTHOR" + } + ] } ], "suspectLandUses": [ { - "uuid": "339bae9e-d925-4841-acbd-c18cb56b7934", + "uuid": "c1f97886-164e-4198-822b-437df9b3c39d", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-11-29 (described on Site Profile dated 2022-11-29)", + "notes": "INSERTED FOR SITE PROFILE DATED 2019-04-20 (described on Site Profile dated 2019-04-20)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "uuid": "4d455184-874a-4ec8-b9a8-3fb8c83b1703", - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-04-09 (described on Site Profile dated 2021-04-09)", + "uuid": "fe535321-ef71-4a77-bd5d-73b408b66970", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2022-05-08 (described on Site Profile dated 2022-05-08)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "uuid": "5fd5f7e4-712b-4cd1-80c5-7033a3596c62", + "uuid": "5e7e05e9-e03a-45da-9835-987a26ebf946", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2017-11-03 (described on Site Profile dated 2017-11-03)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "uuid": "7027961a-9b3d-4613-b00f-273a195fd078", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-01-02 (described on Site Profile dated 2015-01-02)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "notes": "INSERTED FOR SITE PROFILE DATED 2016-08-19 (described on Site Profile dated 2016-08-19)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "uuid": "b7c56147-159f-49a0-b1fd-c0b79b7cabca", + "uuid": "722ed966-359e-43b3-9c5c-73438e768238", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2023-05-25 (described on Site Profile dated 2023-05-25)", + "notes": "INSERTED FOR SITE PROFILE DATED 2019-10-08 (described on Site Profile dated 2019-10-08)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], "parcelDescriptions": [ { - "uuid": "893bfa31-1bd6-4f56-84fd-55832ce00d0f", - "siteRegistry": true, - "dateNoted": "2014-02-03", - "parcelID": "17833", - "crownLandUsePIN": "19121", - "crownLandFileNumber": "18539", - "landDescription": "LOT 2 OF LOT 1 BLOCK 3 DISTRICT LOT 2 PLAN 8959" - }, - { - "uuid": "2de7bf19-f1b4-4c17-b371-83c0e7dfb4cb", + "uuid": "1627eee8-d8d5-4ab4-a806-acff5ce13941", "siteRegistry": false, - "dateNoted": "2018-02-27", - "parcelID": "20056", - "crownLandUsePIN": "18493", - "crownLandFileNumber": "19623", - "landDescription": "LOT 1 OF LOT 2 BLOCK 5 DISTRICT LOT 5 PLAN 4089" + "dateNoted": "2017-04-04", + "parcelID": "19145", + "crownLandUsePIN": "19767", + "crownLandFileNumber": "17369", + "landDescription": "LOT 3 OF LOT 2 BLOCK 4 DISTRICT LOT 2 PLAN 8712" }, { - "uuid": "e32df7b1-4d21-40db-a107-1c5c7b2fb780", + "uuid": "9de09e92-7832-4896-8e10-b14e1c9591f2", "siteRegistry": false, - "dateNoted": "2014-01-02", - "parcelID": "20031", - "crownLandUsePIN": "18298", - "crownLandFileNumber": "15260", - "landDescription": "LOT 4 OF LOT 1 BLOCK 5 DISTRICT LOT 3 PLAN 7461" - }, - { - "uuid": "b19cd9a7-90a6-49d6-b161-707a78d1e1c0", - "siteRegistry": true, - "dateNoted": "2017-05-24", - "parcelID": "18927", - "crownLandUsePIN": "15219", - "crownLandFileNumber": "15610", - "landDescription": "LOT 1 OF LOT 1 BLOCK 4 DISTRICT LOT 5 PLAN 5804" + "dateNoted": "2018-07-28", + "parcelID": "15945", + "crownLandUsePIN": "19315", + "crownLandFileNumber": "16344", + "landDescription": "LOT 5 OF LOT 5 BLOCK 5 DISTRICT LOT 5 PLAN 8006" }, { - "uuid": "d09afdd8-caaf-4e12-a77e-708049c1c019", + "uuid": "24dd05c7-1bc6-48af-8105-651494914e6d", "siteRegistry": false, - "dateNoted": "2016-01-04", - "parcelID": "20048", - "crownLandUsePIN": "18467", - "crownLandFileNumber": "17802", - "landDescription": "LOT 1 OF LOT 2 BLOCK 2 DISTRICT LOT 4 PLAN 5488" + "dateNoted": "2015-11-17", + "parcelID": "15701", + "crownLandUsePIN": "16809", + "crownLandFileNumber": "18933", + "landDescription": "LOT 3 OF LOT 4 BLOCK 5 DISTRICT LOT 4 PLAN 7296" } ], "siteDisclosures": [ { - "uuid": "5ddd14af-086d-42ae-8b32-72d1e0b320e6", + "uuid": "3b0b2191-0c71-45a0-a520-aafbd65302d8", "siteRegistry": false, - "dateReceived": "2021-04-12", - "dateCompleted": "2014-05-12", - "dateEntered": "2016-09-29", - "dateRegistrar": "2019-05-30", - "dateLocalAuthorityReceived": "2017-10-11", - "summary": "Quisquam voluptatibus dolor tenetur dolor incidunt.", - "informationUsed": "Minima eaque occaecati quas.\nSuscipit debitis necessitatibus repellat fugiat.\nCumque dolore quibusdam voluptas eaque non commodi debitis voluptatibus molestias.", - "pastOrPresentOrders": "Accusamus suscipit quis quam.", + "dateReceived": "2022-02-14", + "dateCompleted": "2015-05-23", + "dateEntered": "2016-02-20", + "dateRegistrar": "2018-03-31", + "dateLocalAuthorityReceived": "2021-11-07", + "summary": "Recusandae ea consequatur aut iusto sed quos.", + "informationUsed": "Aspernatur amet consequuntur.\nLabore veniam fuga dignissimos aut ab magnam reiciendis fuga labore.\nQuae dignissimos cumque asperiores eaque minus blanditiis soluta fugit.\nVitae iste necessitatibus.", + "pastOrPresentOrders": "Officiis sed dolorem.\nNisi at necessitatibus.", "commercialAndIndustrialPurposes": [ { - "uuid": "c019380a-5095-4505-bc62-ec13c3d4e21c", - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true - }, - { - "uuid": "9665aeb4-1d1d-4a3d-abd9-20244da3df86", - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true - }, - { - "uuid": "84e2de8b-756d-4616-9ffe-c8324399a0d8", + "uuid": "2fac46c8-5d7e-4e61-b60a-a31a92f2f487", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { - "uuid": "772d54be-8200-4b16-91ba-9a74ce2a8adc", + "uuid": "86e67433-5816-4048-b749-e123bebb40f7", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false @@ -5101,94 +5612,99 @@ ], "activityLog": [ { - "uuid": "6b83c980-f78b-420d-8d15-8d09f9db3ec9", + "uuid": "d287ed46-fc3a-4983-88fe-58dd602ec2f9", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "HICKLE JENNIFER", + "timestamp": "2019-10-04" + }, + { + "uuid": "d7e14f73-d893-45e0-b94f-c7dbe3a41129", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "KLEIN IDA", + "timestamp": "2017-02-10" + }, + { + "uuid": "03cc4a90-ae4f-41b2-8673-3c3588d33e32", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "PFEFFER JOEY", - "timestamp": "2022-09-09" + "user": "CRUICKSHANK PAUL", + "timestamp": "2015-03-05" }, { - "uuid": "ad40b317-ca49-459f-9206-6da38ba8b88d", + "uuid": "7e599f70-2c48-4a78-bd59-ccc3bd9e1155", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "GREENHOLT HEBER", - "timestamp": "2020-12-13" + "user": "LANG THERON", + "timestamp": "2018-04-26" }, { - "uuid": "7b4a0210-62a4-405c-a3d8-3ee70729d988", + "uuid": "53d2666d-544f-48cf-a9c8-c4631d4f0dbf", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "BOYER SHAINA", - "timestamp": "2019-12-11" + "user": "PARISIAN KIRSTEN", + "timestamp": "2020-10-15" }, { - "uuid": "e263ae40-9eb0-434b-9b46-ca9b74868a9c", + "uuid": "2baeb31a-0645-4e18-becf-b1264ce846c6", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "FEEST-HICKLE SHANIA", - "timestamp": "2014-10-02" + "user": "KLEIN MAIDA", + "timestamp": "2018-08-28" + }, + { + "uuid": "e93f00b6-0ac6-424f-a6c3-a07640a40c49", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "BASHIRIAN VERGIE", + "timestamp": "2023-09-12" }, { - "uuid": "b052ee02-f773-42e1-8d70-9b4da8ccb215", + "uuid": "473c68ec-e7a2-481d-b40c-53b3d9d4cb97", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "KULAS CAROLE", - "timestamp": "2021-04-22" + "user": "BARTON JERRELL", + "timestamp": "2021-06-27" } ], "associatedSites": [ { - "uuid": "f83aedd1-425a-4fde-949a-80755580538d", - "dateNoted": "2015-04-13", - "notes": "", - "parcelID": "17175", - "siteID": "16807", - "siteRegistry": true - }, - { - "uuid": "4beb2267-baf3-48be-bcc8-71366cfc84df", - "dateNoted": "2016-02-16", + "uuid": "d8fa2a16-bbed-419d-864a-c4dcaa57b268", + "dateNoted": "2019-11-24", "notes": "", - "parcelID": "20297", - "siteID": "16254", + "parcelID": "18553", + "siteID": "15998", "siteRegistry": true - }, - { - "uuid": "96244327-3064-4974-acbb-29dee9e386d3", - "dateNoted": "2018-06-30", - "notes": "", - "parcelID": "20640", - "siteID": "15844", - "siteRegistry": false } ] }, { - "uuid": "fcd0299a-c8d7-4634-8357-cf8283b739cc", - "siteID": 17612, - "address": "277 Sanford Point", - "latitude": 57.1888, - "longitude": -127.7085, - "lastUpdated": "2014-03-28", - "city": "Keelington", - "region": " North Coast", - "victoriaFile": "26250-20/3711", + "uuid": "ae48426b-7c13-48b5-8667-0908400d8367", + "siteID": 15422, + "address": "341 Torp Corner", + "latitude": 55.6536, + "longitude": -120.7226, + "lastUpdated": "2014-08-27", + "city": "Fort Dewayne", + "region": "Thompson-Okanagan", + "victoriaFile": "26250-20/11509", "regionalFile": "N/A", "parcelIDs": [ - 2519814, - 5391308, - 2678615, - 5729819, - 6649143 + 7522661, + 4236958, + 595045, + 4332483, + 1133022 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "6f1a325b-63a8-4d4f-aa9f-98dfdd40d72b", - "createdAt": "2017-11-26", - "completed": "2018-07-24", - "initiated": "2019-09-10", - "ministryContact": "REICHEL GABRIELLA", + "uuid": "3867d800-a2db-45e9-8735-991fad04712c", + "createdAt": "2014-03-07", + "completed": "2016-12-23", + "initiated": "2016-07-22", + "ministryContact": "WELCH JOSEFINA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -5197,32 +5713,38 @@ ], "notationParticipants": [ { - "uuid": "06deb56e-8b48-40f2-b413-c46a0dd404e2", + "uuid": "9e542d23-b5d2-4835-be1f-c152e0ae5cfe", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true }, { - "uuid": "853b970c-a48b-4f2c-84e2-0ea22e04cc50", - "name": "SHELL CANADA PRODUCTS", + "uuid": "c4963e1c-5aa2-4815-a40e-12ea7be209fc", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "0585e9eb-3d2d-49b0-a773-2f5e565eada4", + "uuid": "13f5fa9a-f6bf-41ba-a276-5f7fb854c191", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "2205da55-b009-4500-a51b-e8395ed834c0", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": true } ], "siteRegistry": false }, { - "uuid": "07439d9a-dc32-4408-bae2-ecd6990fad21", - "createdAt": "2020-01-04", - "completed": "2018-05-14", - "initiated": "2022-12-23", - "ministryContact": "LUEILWITZ NONA", + "uuid": "a19c7c3e-e337-4051-8629-c427a87a84ca", + "createdAt": "2016-07-23", + "completed": "2023-04-29", + "initiated": "2015-10-23", + "ministryContact": "KUPHAL TOMASA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -5231,44 +5753,38 @@ ], "notationParticipants": [ { - "uuid": "d21792fb-aa5c-4c8e-a094-40de22f15c09", - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "uuid": "72d2ca35-ce7b-4e4f-8868-423949dc8b11", + "uuid": "ec00485b-465b-483b-81c0-4eb53c337922", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false }, { - "uuid": "a19233eb-10c2-4759-9afa-24537b340135", + "uuid": "f33d8a74-0ce4-4978-809b-757c8143726b", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true }, { - "uuid": "d4b39bb0-eabf-4454-ac5e-39c31e4da4a3", - "name": "SHELL CANADA PRODUCTS", + "uuid": "5bac5218-0bb0-4bf2-a659-e8e017acba82", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "e5ba543a-bb2b-4b41-8a6b-fd3b73496b2d", + "uuid": "af683735-a7be-40aa-847d-48c656dda725", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false } ], "siteRegistry": false }, { - "uuid": "880b5800-6dae-44cc-b7bb-f2ec82a69fd7", - "createdAt": "2019-08-07", - "completed": "2022-07-17", - "initiated": "2022-12-18", - "ministryContact": "STROMAN CRISTOPHER", + "uuid": "1a61bcec-b15b-4177-a0be-90fac5beb9d1", + "createdAt": "2020-04-17", + "completed": "2015-03-30", + "initiated": "2020-01-14", + "ministryContact": "STRACKE DESHAWN", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -5277,31 +5793,25 @@ ], "notationParticipants": [ { - "uuid": "59dbddb8-765d-4acf-9f3a-4708f310fd8d", - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "be3db355-1d37-4b44-b1db-1cfc777450c9", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "918a7cb1-5d6c-465e-9e5b-b28ffe23b318", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "uuid": "44d8d15a-75cc-4ca8-9fb0-d75671e730d2", - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "81701594-3f39-49ba-8615-34af9f3b140d", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "3bdaea93-14e0-4c1f-bedc-73f04674d11e", - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "6d43d484-3ccc-4b51-867a-44ce537061a6", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "34bf4bd4-611e-4534-9b73-288b2aef9986", + "uuid": "297eeb83-3cb9-4d50-81b3-26fd134ccfde", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false @@ -5310,11 +5820,11 @@ "siteRegistry": true }, { - "uuid": "ac9e8483-aa72-48a9-abcd-dcd8add84d13", - "createdAt": "2013-12-08", - "completed": "2021-11-07", - "initiated": "2021-11-17", - "ministryContact": "GLEICHNER JEREMIE", + "uuid": "62fe3952-32d1-4af1-8037-b36d8197dc7f", + "createdAt": "2014-07-24", + "completed": "2020-11-05", + "initiated": "2020-04-20", + "ministryContact": "LOWE MAYMIE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -5323,56 +5833,33 @@ ], "notationParticipants": [ { - "uuid": "eafb991f-c4c6-450a-b78f-815ef2923919", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "uuid": "bcd75973-fd70-48f4-8c34-58843f369f30", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "uuid": "369feb7f-fedc-49ff-9d28-dd66a6529ce0", + "uuid": "be3c169b-8f95-40b2-a782-776b527fca8a", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true + "role": "REQUESTED BY", + "siteRegistry": false }, { - "uuid": "c0895c50-68e4-451a-8157-0fc3acbbcdbd", + "uuid": "1ded6c74-5e05-4b62-958e-8a34ab03bc8d", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "4b36ce70-17a4-4898-b953-2e01a6fd3620", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "uuid": "5ac5cc68-916f-4bf5-be66-6680c3f95f69", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true } ], "participants": [ { - "uuid": "c55a4fb5-1ef8-47f6-8af5-cd6fd2bdf947", - "name": "AMET, DOLOR SIT", - "endDate": "2014-11-21", - "startDate": "2021-12-08", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": false - }, - { - "uuid": "12d531b7-c856-427a-aa22-52ba72ac74a8", - "name": "AMET, DOLOR SIT", - "endDate": "2022-05-26", - "startDate": "2019-07-12", + "uuid": "1159a34f-3b9c-4d7d-85b2-2ebeb9f39f4b", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2017-08-18", + "startDate": "2016-07-29", "notes": "", "roles": [ "ORGANIZATION" @@ -5380,110 +5867,195 @@ "siteRegistry": true }, { - "uuid": "a1c9d2f9-8c4e-4e54-8b8f-3f3c42b5cf1d", - "name": "AMET, DOLOR SIT", - "endDate": "2015-06-10", - "startDate": "2018-03-28", + "uuid": "94fa2045-9d44-4d67-b22c-52cda9b188db", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2014-06-11", + "startDate": "2015-02-06", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": true - }, + } + ], + "documents": [ { - "uuid": "5e5740d8-a8d9-47b7-a21f-1ed37dd4011a", - "name": "SHELL CANADA PRODUCTS", - "endDate": "2019-06-06", - "startDate": "2021-02-22", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": true + "uuid": "33f892d5-18c7-4367-855e-ac741b36fedd", + "siteRegistry": false, + "documentDate": "2014-03-11", + "receivedDate": "2021-04-02", + "uploadedDate": "2022-12-29", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "13f7bf25-7459-4859-8e8f-279302758b81", + "name": "IPSUM", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "f6ab2dc4-e073-4da4-8a97-c6d32f0091b3", + "name": "AMET, DOLOR SIT", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "25f48b9a-175a-46e4-8a4c-6e53e08bab80", + "name": "IPSUM", + "siteRegistry": true, + "role": "AUTHOR" + } + ] + }, + { + "uuid": "db3127ae-1ab2-4639-90a6-57c59ab4baf7", + "siteRegistry": true, + "documentDate": "2015-11-18", + "receivedDate": "2015-08-14", + "uploadedDate": "2022-04-23", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "e1d195e1-cebf-4cd6-9560-fe4e8c43beb5", + "name": "IPSUM", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "d38d288f-2da8-4b63-a333-b138d7ed5eed", + "name": "AMET, DOLOR SIT", + "siteRegistry": false, + "role": "AUTHOR" + } + ] + }, + { + "uuid": "ae434559-00ae-4135-bc1f-92b0a243fd44", + "siteRegistry": true, + "documentDate": "2021-10-17", + "receivedDate": "2013-12-16", + "uploadedDate": "2021-07-29", + "title": "Preliminary Site Investigation, Detailed Site Investigation and Remedial Plan for the Management Area adjacent to the Shell Site at 1503 West 41st Ave", + "participants": [ + { + "uuid": "58c23974-0939-4843-a005-53e16ad88c2f", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": true, + "role": "AUTHOR" + } + ] + }, + { + "uuid": "df027a6e-9202-4af8-b00d-18f32aaf739a", + "siteRegistry": true, + "documentDate": "2021-12-27", + "receivedDate": "2020-05-18", + "uploadedDate": "2017-08-03", + "title": "Summary of Site Conditions, 1537 W 41st Avenue, Vancouver", + "participants": [ + { + "uuid": "cbc6f2ca-7074-4522-9ac2-a639ad8c5a68", + "name": "AMET, DOLOR SIT", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "020be22e-bb62-4508-8174-fb1d99c5bb7c", + "name": "IPSUM", + "siteRegistry": true, + "role": "AUTHOR" + } + ] } ], "suspectLandUses": [ { - "uuid": "8c54ca8c-3f08-4dc8-9799-7acd34252c00", + "uuid": "e84faa95-b16b-47b1-9bd3-50e96119d644", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-05-23 (described on Site Profile dated 2014-05-23)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "notes": "INSERTED FOR SITE PROFILE DATED 2021-10-11 (described on Site Profile dated 2021-10-11)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "uuid": "6fa43bb8-b6b7-4237-9830-4ef5ab64fb87", + "uuid": "80cc5461-0e61-4cea-a063-d2444f019de5", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-02-11 (described on Site Profile dated 2015-02-11)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "notes": "INSERTED FOR SITE PROFILE DATED 2016-12-20 (described on Site Profile dated 2016-12-20)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "uuid": "2ed7cb9a-f0fb-4a19-b7a5-45bc79a0ea35", + "uuid": "ccd6123f-2f94-421e-83ab-16555c74bb9a", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-07-22 (described on Site Profile dated 2018-07-22)", + "notes": "INSERTED FOR SITE PROFILE DATED 2017-12-29 (described on Site Profile dated 2017-12-29)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" - }, - { - "uuid": "06fbf7ad-3934-423d-a3ea-28df3c62d7cf", - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-07-24 (described on Site Profile dated 2022-07-24)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], "parcelDescriptions": [ { - "uuid": "749cf443-6b56-4c82-8254-f00d4b2a437c", - "siteRegistry": false, - "dateNoted": "2015-06-12", - "parcelID": "18185", - "crownLandUsePIN": "15823", - "crownLandFileNumber": "19696", - "landDescription": "LOT 5 OF LOT 3 BLOCK 2 DISTRICT LOT 5 PLAN 4842" + "uuid": "5cb70a26-b5a4-453c-9e56-3d8b14299d87", + "siteRegistry": true, + "dateNoted": "2020-02-22", + "parcelID": "17243", + "crownLandUsePIN": "20045", + "crownLandFileNumber": "16389", + "landDescription": "LOT 3 OF LOT 5 BLOCK 5 DISTRICT LOT 5 PLAN 5996" }, { - "uuid": "6e75dbe3-459a-4904-a5ea-9aa8142439da", + "uuid": "c1345955-6092-4e7a-9be9-fc790693c31b", "siteRegistry": true, - "dateNoted": "2015-05-05", - "parcelID": "19691", - "crownLandUsePIN": "16734", - "crownLandFileNumber": "20462", - "landDescription": "LOT 1 OF LOT 4 BLOCK 1 DISTRICT LOT 3 PLAN 3191" + "dateNoted": "2022-01-04", + "parcelID": "18946", + "crownLandUsePIN": "17410", + "crownLandFileNumber": "15418", + "landDescription": "LOT 3 OF LOT 2 BLOCK 5 DISTRICT LOT 1 PLAN 4346" }, { - "uuid": "7c99c637-ad51-4c83-92bd-dea5b57217d8", + "uuid": "f6b949aa-d0ad-4b7d-91a0-873326a65c2b", "siteRegistry": true, - "dateNoted": "2023-05-16", - "parcelID": "16259", - "crownLandUsePIN": "16136", - "crownLandFileNumber": "17080", - "landDescription": "LOT 2 OF LOT 1 BLOCK 4 DISTRICT LOT 4 PLAN 9652" + "dateNoted": "2017-12-28", + "parcelID": "20604", + "crownLandUsePIN": "17510", + "crownLandFileNumber": "18827", + "landDescription": "LOT 2 OF LOT 2 BLOCK 3 DISTRICT LOT 5 PLAN 3995" + }, + { + "uuid": "e37bb1d5-542b-4c2b-a6b4-885e2bf02eee", + "siteRegistry": true, + "dateNoted": "2022-12-23", + "parcelID": "20170", + "crownLandUsePIN": "20445", + "crownLandFileNumber": "16510", + "landDescription": "LOT 5 OF LOT 1 BLOCK 5 DISTRICT LOT 5 PLAN 6065" + }, + { + "uuid": "b50bec99-5ceb-4007-b208-17a9995846a1", + "siteRegistry": true, + "dateNoted": "2018-07-27", + "parcelID": "19761", + "crownLandUsePIN": "16567", + "crownLandFileNumber": "16729", + "landDescription": "LOT 2 OF LOT 2 BLOCK 1 DISTRICT LOT 1 PLAN 3486" } ], "siteDisclosures": [ { - "uuid": "4480d509-61a2-4943-8eab-04db8b3e56f1", + "uuid": "37945b1b-cf51-4b35-a13e-689e94d00968", "siteRegistry": false, - "dateReceived": "2014-07-31", - "dateCompleted": "2023-08-14", - "dateEntered": "2018-03-23", - "dateRegistrar": "2020-10-12", - "dateLocalAuthorityReceived": "2020-06-30", - "summary": "Dolorem quos accusamus nostrum illum facilis inventore asperiores reprehenderit.\nRepellendus quibusdam quas exercitationem.\nOdit voluptatem quibusdam optio blanditiis.", - "informationUsed": "Earum architecto nemo et facere consequatur.\nExcepturi reprehenderit iure incidunt.\nReiciendis eius nisi incidunt maiores.", - "pastOrPresentOrders": "Recusandae excepturi fugit enim ipsam voluptatem mollitia.\nVoluptate sapiente praesentium facilis voluptas.", + "dateReceived": "2022-05-06", + "dateCompleted": "2013-11-23", + "dateEntered": "2013-12-01", + "dateRegistrar": "2018-03-25", + "dateLocalAuthorityReceived": "2020-10-21", + "summary": "Sunt magnam at mollitia laudantium incidunt voluptate sapiente deleniti.\nQuo dolor quasi hic veritatis.", + "informationUsed": "Sapiente culpa quos nostrum occaecati est.\nTemporibus natus alias esse autem quae.\nVoluptates placeat porro.\nPraesentium exercitationem facere consequatur beatae doloribus.\nMagnam earum debitis dicta asperiores labore velit nisi.", + "pastOrPresentOrders": "Nobis dicta animi ipsam.\nHarum cupiditate ipsum hic voluptates nisi facilis voluptates voluptatum iure.\nIllo rerum voluptates.", "commercialAndIndustrialPurposes": [ { - "uuid": "8875dbff-5b8f-4389-b571-3d19c92e0aa2", - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false - }, - { - "uuid": "521c30db-9743-4128-a14a-ec919743ac59", + "uuid": "70b9abc2-07b8-442f-a1c4-44fc3be2e9b1", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "96cb3396-d974-4efd-8041-04d2dcceee78", + "uuid": "28236f49-e013-4af1-9659-c77a00b864d9", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true @@ -5493,114 +6065,85 @@ ], "activityLog": [ { - "uuid": "d74791f2-5af1-4ab9-8fb6-44a7e0dbab07", - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "SCHULIST LEONORA", - "timestamp": "2019-01-25" - }, - { - "uuid": "85cda907-0dd4-4391-b23c-6031b8f2a830", + "uuid": "2ede4c16-0ea8-4ef1-a71f-c7002a619731", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "SAWAYN VERONA", - "timestamp": "2020-06-09" + "user": "OKUNEVA LUKAS", + "timestamp": "2020-05-13" }, { - "uuid": "1048a34b-52bf-4985-98a4-2efdb2ad1ff4", + "uuid": "4473771a-a68f-4b1a-bc8d-d98b3821753b", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "FEIL FELICITY", - "timestamp": "2018-01-09" + "user": "VONRUEDEN NORWOOD", + "timestamp": "2015-08-16" }, { - "uuid": "d57b5db8-4a21-4647-93ee-63b852d71a59", + "uuid": "bc5781d7-04c4-4f3d-aa7a-401e1a897c66", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "JERDE WILFRED", - "timestamp": "2020-05-11" - }, - { - "uuid": "8faebdd4-9a90-4a3c-a329-36bfb90b130a", - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "RUECKER PRICE", - "timestamp": "2019-02-23" + "user": "GREENHOLT SUSANA", + "timestamp": "2019-08-12" }, { - "uuid": "96cefa42-0e21-42f4-9fca-9b04b528b4f3", - "siteRegistry": false, + "uuid": "112b8643-1810-47db-8105-d9a57e42a16d", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "GUTKOWSKI GRANVILLE", - "timestamp": "2019-08-31" + "user": "TILLMAN GEORGIANNA", + "timestamp": "2017-02-13" }, { - "uuid": "087100c9-694e-4f7b-88f1-0d3a3722a25f", + "uuid": "3153d2ae-464a-41d6-8dcc-71911df60ecd", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "WALKER JULIET", - "timestamp": "2015-11-22" - }, - { - "uuid": "057ea846-299b-464e-800f-3169fbcd600a", - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "LEHNER DIANNA", - "timestamp": "2017-11-24" + "user": "WILL TABITHA", + "timestamp": "2017-06-20" }, { - "uuid": "c1dd3a14-e43f-47f3-bda0-431fc6d22969", + "uuid": "daeee435-37bb-485e-a784-30ea088a083d", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "GIBSON GILLIAN", - "timestamp": "2013-12-22" + "user": "HARRIS MAURINE", + "timestamp": "2014-10-02" } ], "associatedSites": [ { - "uuid": "3eae35d8-db0a-4c0a-9eaf-5e5072953c7e", - "dateNoted": "2023-06-03", - "notes": "", - "parcelID": "16482", - "siteID": "18336", - "siteRegistry": true - }, - { - "uuid": "5171bb47-558f-44ab-8e86-c5bc2e493146", - "dateNoted": "2021-06-24", + "uuid": "0672efc1-07fc-4343-ae08-3a1a8eec1989", + "dateNoted": "2015-04-26", "notes": "", - "parcelID": "16119", - "siteID": "16895", - "siteRegistry": true + "parcelID": "16997", + "siteID": "18007", + "siteRegistry": false } ] }, { - "uuid": "d9cd85a0-cdbf-4847-8adf-aaf0ccdb49ff", - "siteID": 15485, - "address": "606 Maia Lights", - "latitude": 52.5817, - "longitude": -119.7322, - "lastUpdated": "2014-11-30", - "city": "Conniebury", - "region": " North Coast", - "victoriaFile": "26250-20/6173", + "uuid": "01effa37-9064-4ed2-b9e3-f7e2975009e0", + "siteID": 20492, + "address": "4925 Blanda Extensions", + "latitude": 51.5979, + "longitude": -137.9477, + "lastUpdated": "2014-01-31", + "city": "Romagueratown", + "region": "Thompson-Okanagan", + "victoriaFile": "26250-20/7219", "regionalFile": "N/A", "parcelIDs": [ - 142981, - 1232740, - 2325821, - 8055218, - 8906638 + 4180302, + 4656546, + 7201001, + 546731, + 3695780 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "863a3f37-9151-400a-9db7-9180c104ad7f", - "createdAt": "2015-06-26", - "completed": "2017-08-24", - "initiated": "2017-10-23", - "ministryContact": "CONN VELMA", + "uuid": "ce3e26e8-4d9f-46b5-81c3-de317a53cb3e", + "createdAt": "2013-10-30", + "completed": "2016-01-04", + "initiated": "2020-08-13", + "ministryContact": "HUELS ROSAMOND", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -5609,44 +6152,118 @@ ], "notationParticipants": [ { - "uuid": "37687544-9cb2-4b34-9fe6-6cdaa3c1d3c4", + "uuid": "ca04ed7f-cb2d-4236-94b4-92e4858a9879", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "3facabf5-8eca-4992-8807-79ab864cf8d3", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true }, { - "uuid": "4bd38c92-199a-4151-8122-3ec5e815d5fd", + "uuid": "a8d15dad-dc86-40da-b214-2a2de6c123b3", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "uuid": "0d7ed397-dfd0-48d1-835f-495dc792b9cd", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "uuid": "309fb6ea-b538-4181-888b-97fdcf1da283", + "createdAt": "2023-07-26", + "completed": "2014-12-17", + "initiated": "2017-05-08", + "ministryContact": "HERZOG HILMA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "uuid": "6131a8d8-45a3-4111-afcf-9ce8ac353748", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "351bb9b9-20ce-4fe3-8f33-bd424b33c835", + "uuid": "cede45ff-f813-44a3-a203-e8e4219cc261", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "9b3829b0-a147-49b9-bcba-96e17338e0cf", + "uuid": "fcd7ff7b-475f-493e-8f70-ce843dba3a53", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "uuid": "adb00d4f-e8c1-470b-b30e-af2699bfbdf0", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "uuid": "c857a786-e314-4ea2-87bf-8b98f26ed28c", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "uuid": "d64eb32c-1f14-4a87-bdd3-6c04017b78ba", + "createdAt": "2021-08-22", + "completed": "2019-11-26", + "initiated": "2015-04-26", + "ministryContact": "O'CONNELL WILL", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "uuid": "e358790d-0398-49a7-9b95-3ef0e74814e7", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "c0d5a4a3-996e-4508-ba89-16b0e1919750", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": true }, { - "uuid": "955e04d5-09a9-4a6c-949a-e3d5df6a2385", + "uuid": "1ce63c0d-660a-4cb6-949a-4ee0b33037db", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "7fce8c97-482a-48d8-9fa4-c3afc248ffce", - "createdAt": "2021-07-18", - "completed": "2023-04-16", - "initiated": "2023-02-23", - "ministryContact": "BUCKRIDGE MAXIMO", + "uuid": "b3400a91-2dd5-43d5-aeb9-d45a019646b1", + "createdAt": "2016-03-23", + "completed": "2016-02-08", + "initiated": "2022-03-16", + "ministryContact": "KUHIC WILTON", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -5655,26 +6272,32 @@ ], "notationParticipants": [ { - "uuid": "8c03c26f-a153-43de-9911-c35243496e2c", + "uuid": "f26f2202-fb40-4437-b7cc-50c9a5a94a5a", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "d051919b-9fd6-4a36-96fe-345f0fb9557c", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true + "uuid": "2d92068b-a6fe-4097-8b88-70db1a024df6", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false }, { - "uuid": "aa33b556-23b1-4512-a424-a1d03e371cf7", + "uuid": "2a96edd6-acd1-4b94-bb6c-e2b3ee3f0c6d", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "ff474e5e-fb71-43fd-9865-26ff08ec06f4", - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "de25c79d-efd6-434a-a81a-e726b04c5556", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "7faab93c-1d56-4634-8ec0-90c475ebf43d", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false } @@ -5684,10 +6307,10 @@ ], "participants": [ { - "uuid": "3ef7f256-521b-45ca-8d2c-021081514bcd", + "uuid": "3748d8db-cdeb-4797-88c7-4835a4b3811b", "name": "SHELL CANADA PRODUCTS", - "endDate": "2016-09-08", - "startDate": "2023-08-03", + "endDate": "2023-03-15", + "startDate": "2016-09-03", "notes": "", "roles": [ "ORGANIZATION" @@ -5695,237 +6318,307 @@ "siteRegistry": false }, { - "uuid": "a8cbe4f1-c3be-45c3-ad8e-ecbbf2ac68ba", + "uuid": "d5d73341-ece7-4745-ba15-6f5e3e10e197", + "name": "AMET, DOLOR SIT", + "endDate": "2020-10-23", + "startDate": "2015-12-19", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "uuid": "08495556-cd98-49f3-b658-f9afcabf6445", "name": "IPSUM", - "endDate": "2021-03-07", - "startDate": "2022-03-12", + "endDate": "2021-12-19", + "startDate": "2014-12-20", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "uuid": "28b57ed4-85a3-44ca-aadc-df2118bb76a5", + "name": "AMET, DOLOR SIT", + "endDate": "2018-02-18", + "startDate": "2019-03-20", "notes": "", "roles": [ "EMPLOYEE" ], "siteRegistry": true + }, + { + "uuid": "00bcc202-53be-4f85-b7b6-315a60630180", + "name": "AMET, DOLOR SIT", + "endDate": "2015-05-02", + "startDate": "2015-05-28", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true } ], - "suspectLandUses": [ + "documents": [ { - "uuid": "76306d8f-e1fc-4f32-8aa9-c0d605f51865", + "uuid": "db75839d-7505-4fa4-a733-c3142bf423bd", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-08-15 (described on Site Profile dated 2021-08-15)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "documentDate": "2018-03-22", + "receivedDate": "2021-05-09", + "uploadedDate": "2015-01-14", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "82c97b8b-ecd4-43e1-902c-8d526bbb79d7", + "name": "AMET, DOLOR SIT", + "siteRegistry": true, + "role": "AUTHOR" + } + ] }, { - "uuid": "759eaad2-2fca-4e0a-ab15-0acf0413d5f2", + "uuid": "fdefc43b-f782-4fad-b7b9-b706b501ed98", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-11-02 (described on Site Profile dated 2015-11-02)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "documentDate": "2016-02-28", + "receivedDate": "2017-04-11", + "uploadedDate": "2020-07-31", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "2511e2e3-ca02-4633-a4f9-10003053b756", + "name": "IPSUM", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "de3601b9-3ad3-44c7-8fd1-7afa4b14df7f", + "name": "IPSUM", + "siteRegistry": true, + "role": "AUTHOR" + } + ] }, { - "uuid": "f8c7cbad-72c2-4e43-8253-9af28b86f94a", + "uuid": "46e39707-dcf3-456d-b6c8-11637841cf95", + "siteRegistry": false, + "documentDate": "2019-05-28", + "receivedDate": "2016-06-15", + "uploadedDate": "2019-04-28", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "772fc5a5-559b-42a4-a9de-7aa40a7ce910", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": false, + "role": "AUTHOR" + } + ] + } + ], + "suspectLandUses": [ + { + "uuid": "90555639-c40e-44bc-a87b-bc111aa3f74c", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2020-09-01 (described on Site Profile dated 2020-09-01)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "notes": "INSERTED FOR SITE PROFILE DATED 2019-02-14 (described on Site Profile dated 2019-02-14)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "uuid": "91d580d4-cb90-4f8e-b510-34ec969b59b9", - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-10-18 (described on Site Profile dated 2021-10-18)", + "uuid": "2d3833c4-dcb5-40c7-a5b0-12dea34f3665", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2020-11-16 (described on Site Profile dated 2020-11-16)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "uuid": "ff097434-52a2-46d2-aead-913238d11778", - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-11-15 (described on Site Profile dated 2017-11-15)", + "uuid": "f801621f-ebbf-4b5e-a94c-566442a1adfb", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2022-01-22 (described on Site Profile dated 2022-01-22)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "uuid": "3ec8b4ef-07af-4724-9a13-3317147777ac", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2016-04-02 (described on Site Profile dated 2016-04-02)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], "parcelDescriptions": [ { - "uuid": "c650b5c1-419e-40e3-afe3-d0760a9ccc72", - "siteRegistry": false, - "dateNoted": "2022-03-26", - "parcelID": "16649", - "crownLandUsePIN": "18853", - "crownLandFileNumber": "17380", - "landDescription": "LOT 3 OF LOT 5 BLOCK 5 DISTRICT LOT 5 PLAN 3903" - }, - { - "uuid": "f30b5300-03ba-43ea-acc5-53c2b30b2b50", + "uuid": "dcdf01ab-ceab-46ad-9dda-d2fc85fee904", "siteRegistry": true, - "dateNoted": "2021-05-02", - "parcelID": "16539", - "crownLandUsePIN": "15300", - "crownLandFileNumber": "18446", - "landDescription": "LOT 4 OF LOT 1 BLOCK 3 DISTRICT LOT 3 PLAN 5414" + "dateNoted": "2015-03-23", + "parcelID": "20249", + "crownLandUsePIN": "16148", + "crownLandFileNumber": "20390", + "landDescription": "LOT 2 OF LOT 5 BLOCK 1 DISTRICT LOT 1 PLAN 7219" }, { - "uuid": "d698f978-6aa8-473d-b24d-737f24d35515", + "uuid": "34cfa73f-e591-4a59-a809-a4e5f670f4cd", "siteRegistry": false, - "dateNoted": "2020-04-17", - "parcelID": "15723", - "crownLandUsePIN": "20667", - "crownLandFileNumber": "15646", - "landDescription": "LOT 5 OF LOT 5 BLOCK 4 DISTRICT LOT 5 PLAN 4114" + "dateNoted": "2015-07-19", + "parcelID": "16857", + "crownLandUsePIN": "20315", + "crownLandFileNumber": "19404", + "landDescription": "LOT 4 OF LOT 1 BLOCK 3 DISTRICT LOT 4 PLAN 7478" + }, + { + "uuid": "00b54863-afac-434d-803d-4db15befa0ec", + "siteRegistry": true, + "dateNoted": "2017-05-02", + "parcelID": "19847", + "crownLandUsePIN": "18276", + "crownLandFileNumber": "15263", + "landDescription": "LOT 3 OF LOT 1 BLOCK 4 DISTRICT LOT 3 PLAN 6105" }, { - "uuid": "a280a928-5046-4217-bab9-cdb80f9f9a1e", + "uuid": "4067acba-6b3a-4749-a7f7-47f2af6d83ed", "siteRegistry": false, - "dateNoted": "2018-07-28", - "parcelID": "20112", - "crownLandUsePIN": "18386", - "crownLandFileNumber": "19277", - "landDescription": "LOT 4 OF LOT 3 BLOCK 2 DISTRICT LOT 1 PLAN 3390" + "dateNoted": "2019-03-23", + "parcelID": "20858", + "crownLandUsePIN": "19176", + "crownLandFileNumber": "20015", + "landDescription": "LOT 3 OF LOT 1 BLOCK 5 DISTRICT LOT 2 PLAN 3233" } ], "siteDisclosures": [ { - "uuid": "56dfca97-a44c-426b-ba40-a473541e5dc8", - "siteRegistry": true, - "dateReceived": "2017-06-11", - "dateCompleted": "2014-04-20", - "dateEntered": "2023-05-13", - "dateRegistrar": "2021-11-02", - "dateLocalAuthorityReceived": "2017-07-28", - "summary": "Excepturi nostrum ut corrupti eum fugit.\nMolestias placeat sed accusantium.\nUnde cupiditate labore quidem.", - "informationUsed": "Harum odit vel est minima.\nDoloribus id aliquam libero quasi commodi voluptate inventore vel.\nSaepe laudantium nesciunt reprehenderit corrupti voluptate ducimus pariatur.", - "pastOrPresentOrders": "Voluptates repellendus ducimus et culpa.\nSoluta ipsam modi magnam hic velit modi necessitatibus iure.", + "uuid": "9044017f-96fa-47b4-82ce-bb3a59eb975d", + "siteRegistry": false, + "dateReceived": "2019-05-17", + "dateCompleted": "2013-12-10", + "dateEntered": "2022-08-04", + "dateRegistrar": "2018-09-28", + "dateLocalAuthorityReceived": "2022-09-20", + "summary": "Nesciunt voluptatibus reiciendis et ullam quae aliquid dolorum est.", + "informationUsed": "Pariatur dolore voluptate commodi veniam laboriosam totam tempora est.\nReiciendis animi recusandae officiis ex cupiditate totam quibusdam harum deleniti.\nAd occaecati suscipit labore aliquam assumenda vero repellendus aperiam id.", + "pastOrPresentOrders": "Cupiditate officia mollitia ad optio error.", "commercialAndIndustrialPurposes": [ { - "uuid": "a64dd77c-7bfd-4e4d-92a4-f5be8681d2b8", + "uuid": "20b0a537-058b-41fa-a993-d468c623915b", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true - }, - { - "uuid": "15995f66-56e9-4e7f-a4a6-97fe47bf301d", - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false - } - ] - }, - { - "uuid": "5378763d-2377-4f24-864f-867049d516f8", - "siteRegistry": true, - "dateReceived": "2019-09-04", - "dateCompleted": "2014-01-17", - "dateEntered": "2022-03-16", - "dateRegistrar": "2022-12-06", - "dateLocalAuthorityReceived": "2019-05-19", - "summary": "Aspernatur numquam qui dicta nulla voluptatibus repellendus voluptatibus iusto nulla.\nTemporibus labore debitis illo et quas.\nEx ad at illum cumque fugiat.", - "informationUsed": "Accusantium ipsa quaerat ab eos ut voluptas.\nNecessitatibus odit corrupti.\nMollitia labore incidunt numquam hic ut recusandae magni error.\nRem corrupti aliquam eligendi autem veritatis dolore mollitia repudiandae recusandae.\nEos quas voluptatem laborum.", - "pastOrPresentOrders": "Eaque ut quasi odio laudantium eligendi eius.\nMaxime deleniti magnam voluptates accusamus dignissimos.\nIpsam non commodi.", - "commercialAndIndustrialPurposes": [ + }, { - "uuid": "7d42c8bc-d483-4081-a2f2-70cb985df9ff", + "uuid": "c55b9e6b-fc92-4556-a70f-92a59dde2848", "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true }, { - "uuid": "8129eb82-be6f-4642-a3f0-a0b298ac876c", + "uuid": "fb48accc-f463-481e-ae27-2f88613d5e58", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "31690567-8d60-4e7c-be66-3bd50fea88ee", + "uuid": "dcd11ed6-8d26-4d04-9721-1f4bbfcc51b5", "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false } ] } ], "activityLog": [ { - "uuid": "ff270bf3-7d98-4e47-8224-c972de8158f8", + "uuid": "f04ef6d1-44b6-4891-9fe8-bda738bf9398", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "WOLFF ADOLFO", + "timestamp": "2020-03-12" + }, + { + "uuid": "219ee4af-981f-4240-851d-23fec96eb69c", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "O'KON JANA", - "timestamp": "2020-10-23" + "user": "HAAG TOBIN", + "timestamp": "2018-12-23" }, { - "uuid": "ab603374-f2d8-4e14-8647-e48e2a583485", + "uuid": "c69fb121-aa9d-41ba-bf46-071b79f273da", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "SCHMIDT FRANCESCA", - "timestamp": "2023-10-08" + "user": "BRAKUS BERNIE", + "timestamp": "2023-05-04" }, { - "uuid": "17598243-8e98-40fd-8f9b-b6df242c8b1c", + "uuid": "daed74a4-9af7-4039-a909-cda4dc05be78", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "WALSH OCTAVIA", - "timestamp": "2019-01-29" + "user": "SMITH DAYANA", + "timestamp": "2023-03-21" }, { - "uuid": "bed9fd5d-f072-4184-b67c-15f5d0104e94", + "uuid": "263b59f6-87c9-4b5e-8f1d-313d8dd0b36f", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "KOCH ANGUS", - "timestamp": "2020-09-01" + "user": "ROLFSON SID", + "timestamp": "2020-06-28" }, { - "uuid": "f2f2a0da-5670-4f67-bf95-bfebfe73a89e", + "uuid": "4b083901-862a-44e9-a508-33f76a6a2dab", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "TORPHY ELIJAH", - "timestamp": "2019-01-18" + "user": "TRANTOW-ABBOTT MARGOT", + "timestamp": "2014-01-18" } ], "associatedSites": [ { - "uuid": "5aff0e40-8e60-4d62-9300-ba9601b2e7ec", - "dateNoted": "2022-11-20", + "uuid": "30582b73-f3aa-44f1-9013-a70c3debaa9b", + "dateNoted": "2021-04-10", "notes": "", - "parcelID": "18504", - "siteID": "17604", + "parcelID": "20660", + "siteID": "20622", "siteRegistry": false }, { - "uuid": "0b338543-c0b8-42f4-a015-7380cc586cf3", - "dateNoted": "2023-09-14", + "uuid": "4f1b2f68-2ad8-46f1-aeb2-5f74095f0ef4", + "dateNoted": "2016-12-09", "notes": "", - "parcelID": "15833", - "siteID": "18927", + "parcelID": "20700", + "siteID": "19360", "siteRegistry": false }, { - "uuid": "6358c182-af12-440b-b5c3-2df26f893f79", - "dateNoted": "2015-07-28", + "uuid": "8e1dbc41-2680-44c0-8dbb-0c0ef552d8a2", + "dateNoted": "2021-12-29", "notes": "", - "parcelID": "16761", - "siteID": "16560", + "parcelID": "20173", + "siteID": "19921", "siteRegistry": false } ] }, { - "uuid": "7e9ed47a-f16a-43fd-8a92-a207515b1b64", - "siteID": 18583, - "address": "742 Gutmann Parkway", - "latitude": 50.7391, - "longitude": -125.9775, - "lastUpdated": "2020-10-17", - "city": "Vernaborough", - "region": "Mainland/Southwest", - "victoriaFile": "26250-20/12136", + "uuid": "7c0e2ead-4256-4693-bfc5-5d4adde39d13", + "siteID": 16251, + "address": "135 Daniel Harbor", + "latitude": 54.1477, + "longitude": -118.6843, + "lastUpdated": "2022-07-12", + "city": "Nolanstead", + "region": "Cariboo", + "victoriaFile": "26250-20/8578", "regionalFile": "N/A", "parcelIDs": [ - 7627552, - 4956667, - 1740933, - 1165552, - 4109169 + 375979, + 3066759, + 9789165, + 9610952, + 1491953 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "c6055666-303b-4217-8bb2-ff414fe159f8", - "createdAt": "2022-05-31", - "completed": "2023-06-27", - "initiated": "2019-05-08", - "ministryContact": "RUNOLFSSON CASSANDRA", + "uuid": "1e0a163d-f561-44ef-ae84-04bfff753464", + "createdAt": "2020-05-22", + "completed": "2018-02-13", + "initiated": "2014-01-29", + "ministryContact": "KUHLMAN ERYN", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -5934,32 +6627,32 @@ ], "notationParticipants": [ { - "uuid": "a54c1a5b-1303-46de-9077-fbf8bae477dd", - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "1d2f7865-7ddf-4ad6-94c3-7a852a2803c6", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "8fd05235-ddb1-4fbf-9327-4a81996d3229", - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "a8ee7c0f-5bbf-4ced-8ab6-5fbb011ed623", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "7f7b628f-990d-41a7-bd9c-85989409b2e0", - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false + "uuid": "b1258856-dca8-4fc2-9b73-bdb44715c934", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true } ], "siteRegistry": false }, { - "uuid": "4492ff5f-eed9-4938-9cd5-e25fbdcb71a1", - "createdAt": "2017-08-25", - "completed": "2015-12-22", - "initiated": "2021-07-01", - "ministryContact": "FLATLEY MARJORY", + "uuid": "66a93845-3f2f-429b-ba92-d009d8b54c9c", + "createdAt": "2020-12-24", + "completed": "2017-08-05", + "initiated": "2014-05-10", + "ministryContact": "WUNSCH SIGURD", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -5968,44 +6661,72 @@ ], "notationParticipants": [ { - "uuid": "46a007f6-7cf7-40a0-ba19-4f0eaf28c51c", + "uuid": "7efddde2-01f7-4920-87b0-c682dd256d32", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "1c8ff0a2-0658-485c-8154-6bc82735cc00", + "uuid": "9078e294-219a-4fcf-bd37-6634d28cf035", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "uuid": "851f3b30-ad35-4474-ae61-85f7740d62e3", + "createdAt": "2020-08-06", + "completed": "2021-07-12", + "initiated": "2020-04-28", + "ministryContact": "LANGWORTH CLAUDIE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "uuid": "1d029d70-5e79-46ca-81b6-f7569e820b64", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "39b0f77a-a829-42d0-bba5-dfa9339ba10a", + "uuid": "70194a9a-379c-4c04-acaf-ec957e02c398", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "uuid": "47efd876-3950-4e51-9b7f-a4a4f592fe05", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "7f0b5817-b757-4f48-bba1-e4e6e597a80f", + "uuid": "ea2e0cc0-7129-4410-89e8-56f3cf302ef4", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "0cfb17cb-3ff6-4c80-aad4-4a8aadb83ad5", - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "6479fc94-a545-48ca-b9c0-5f59040b00d7", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "44214147-973d-40cb-9a0d-2cae1aae80d5", - "createdAt": "2013-12-03", - "completed": "2021-11-06", - "initiated": "2019-04-30", - "ministryContact": "LITTEL ADRIEL", + "uuid": "29a8d880-a1c2-4e85-8d4f-f952e1abf9a8", + "createdAt": "2017-05-20", + "completed": "2016-01-02", + "initiated": "2020-06-03", + "ministryContact": "HUEL PETE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -6014,26 +6735,38 @@ ], "notationParticipants": [ { - "uuid": "5825170b-2b9f-46ec-80e5-96f0662cddd7", - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "uuid": "487e9cd5-1030-45e4-beee-3b8ad97ddb3f", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", "siteRegistry": false }, { - "uuid": "e28a4312-9722-4428-bf92-0656b4f69bc6", - "name": "SHELL CANADA PRODUCTS", + "uuid": "44563a0b-1487-43a9-a262-d40711613f20", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "1b691ea3-1421-4933-9a4b-e00cc79c6456", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true + }, + { + "uuid": "0ede7833-5563-44eb-a29e-72d78e5fd8a1", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "86f4d7e6-f6c5-451d-a720-da4285b85faa", - "createdAt": "2018-06-15", - "completed": "2021-12-08", - "initiated": "2022-04-04", - "ministryContact": "KIHN VALLIE", + "uuid": "e66b342b-a492-4d1f-8a54-5875580856e0", + "createdAt": "2020-12-07", + "completed": "2016-01-25", + "initiated": "2014-12-26", + "ministryContact": "DOUGLAS MARYAM", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -6042,33 +6775,33 @@ ], "notationParticipants": [ { - "uuid": "7f275d5b-29e7-4b5f-ba0b-8a19b0bef591", - "name": "SHELL CANADA PRODUCTS", + "uuid": "1f86e67a-4e0b-4252-a5ac-6b635effeacb", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false }, { - "uuid": "8bc9191c-7260-4fb6-9829-f8587ce4aecc", - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "uuid": "fae3467d-ae5e-4d04-9caa-c9246c832d12", - "name": "SHELL CANADA PRODUCTS", + "uuid": "0d8554d0-ecd1-411e-b695-d79914d74371", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false + }, + { + "uuid": "5eced97e-7634-4d86-9819-a39cde0832b4", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true } ], "participants": [ { - "uuid": "1b6e3d8f-ad5f-4bda-8813-ba819d59943f", - "name": "AMET, DOLOR SIT", - "endDate": "2020-06-19", - "startDate": "2020-10-02", + "uuid": "9bc94452-2de7-49a4-bc55-e3397feea926", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2017-06-28", + "startDate": "2016-01-14", "notes": "", "roles": [ "EMPLOYEE" @@ -6076,10 +6809,21 @@ "siteRegistry": true }, { - "uuid": "dc899fb2-92cd-4520-8fe4-2c74391ff016", - "name": "AMET, DOLOR SIT", - "endDate": "2015-07-08", - "startDate": "2020-06-28", + "uuid": "57fa5e37-b563-4a79-bbd9-6a011113e4b8", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2021-12-10", + "startDate": "2015-04-18", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "uuid": "43f7b2d7-cc95-46f0-ab87-d32063d82625", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2019-05-23", + "startDate": "2020-11-02", "notes": "", "roles": [ "ORGANIZATION" @@ -6087,122 +6831,242 @@ "siteRegistry": false } ], - "suspectLandUses": [ + "documents": [ + { + "uuid": "d840ece9-61d9-421b-b832-d668d904048f", + "siteRegistry": true, + "documentDate": "2022-08-19", + "receivedDate": "2023-06-22", + "uploadedDate": "2015-08-05", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "dd7c7e73-32a7-4a8c-baa6-1181308bd9d4", + "name": "AMET, DOLOR SIT", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "a87e8fe2-ddb3-419c-bf28-c560b4aa1abc", + "name": "IPSUM", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "2d10dbea-7e13-46dc-9557-8e90b010dc42", + "name": "IPSUM", + "siteRegistry": false, + "role": "AUTHOR" + } + ] + }, { - "uuid": "af9c89e6-b06f-42d6-b698-f843ff0b51e5", + "uuid": "3ab4c4ed-fcf7-4d3d-911f-b7d53eddd6cd", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-11-02 (described on Site Profile dated 2018-11-02)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "documentDate": "2014-01-19", + "receivedDate": "2018-03-29", + "uploadedDate": "2021-08-02", + "title": "Preliminary Site Investigation, Detailed Site Investigation and Remedial Plan for the Management Area adjacent to the Shell Site at 1503 West 41st Ave", + "participants": [ + { + "uuid": "91552a82-d0a5-4434-8ac0-bf4b28e4552f", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "e90422f0-12bb-4b18-972f-5f06539f58da", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": false, + "role": "AUTHOR" + } + ] + }, + { + "uuid": "4e69be0d-ccc5-49da-97b9-70d2641cc751", + "siteRegistry": true, + "documentDate": "2013-12-08", + "receivedDate": "2021-08-21", + "uploadedDate": "2021-11-02", + "title": "Summary of Site Conditions, 1537 W 41st Avenue, Vancouver", + "participants": [ + { + "uuid": "f51ee436-94e9-4d95-a1fe-de517c328fcd", + "name": "IPSUM", + "siteRegistry": true, + "role": "AUTHOR" + } + ] }, { - "uuid": "1d36d01c-a164-4005-a526-5f532c2ebdf2", + "uuid": "39f11529-132b-481e-8e77-b8c0f77f9fcb", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-09-08 (described on Site Profile dated 2017-09-08)", + "documentDate": "2022-04-17", + "receivedDate": "2020-06-21", + "uploadedDate": "2018-06-18", + "title": "Preliminary Site Investigation, Detailed Site Investigation and Remedial Plan for the Management Area adjacent to the Shell Site at 1503 West 41st Ave", + "participants": [ + { + "uuid": "6876b98d-a779-4e05-ac93-2b0c37d94728", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "0140e43d-3b2a-4717-86f3-ecac0ba4e748", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "b24d3cdc-f0a6-4b0f-be20-275058bef706", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": true, + "role": "AUTHOR" + } + ] + } + ], + "suspectLandUses": [ + { + "uuid": "57fcb364-7319-43ad-8b67-8b518656524f", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2015-05-17 (described on Site Profile dated 2015-05-17)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "uuid": "1e115be0-7191-4dbc-933f-4d9e1b97487b", - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-03-19 (described on Site Profile dated 2016-03-19)", + "uuid": "00724f0d-cdb3-4a80-b396-4e31c929a1a3", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2023-06-04 (described on Site Profile dated 2023-06-04)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "uuid": "c8999819-a4f2-4d80-81dc-692e804822dd", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2014-09-02 (described on Site Profile dated 2014-09-02)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "uuid": "5cc793b3-bfcc-4704-b50a-703a41062630", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2016-07-28 (described on Site Profile dated 2016-07-28)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], "parcelDescriptions": [ { - "uuid": "12cafd38-70c0-40ed-9b50-ba1932ecd275", + "uuid": "7d8730e9-010b-4124-90a7-c0be0b6ab908", "siteRegistry": false, - "dateNoted": "2015-04-07", - "parcelID": "17095", - "crownLandUsePIN": "20587", - "crownLandFileNumber": "18943", - "landDescription": "LOT 4 OF LOT 4 BLOCK 3 DISTRICT LOT 3 PLAN 4445" + "dateNoted": "2023-02-18", + "parcelID": "16115", + "crownLandUsePIN": "18361", + "crownLandFileNumber": "17268", + "landDescription": "LOT 2 OF LOT 2 BLOCK 4 DISTRICT LOT 5 PLAN 9376" + }, + { + "uuid": "90660701-b407-4e8e-a9ab-88ea098da037", + "siteRegistry": true, + "dateNoted": "2016-07-04", + "parcelID": "16229", + "crownLandUsePIN": "20207", + "crownLandFileNumber": "18950", + "landDescription": "LOT 4 OF LOT 3 BLOCK 3 DISTRICT LOT 4 PLAN 3407" + }, + { + "uuid": "ec27a3ec-184d-4fab-8f21-1c7cc603eae5", + "siteRegistry": true, + "dateNoted": "2015-03-03", + "parcelID": "18384", + "crownLandUsePIN": "15490", + "crownLandFileNumber": "15921", + "landDescription": "LOT 1 OF LOT 4 BLOCK 4 DISTRICT LOT 2 PLAN 7291" }, { - "uuid": "3450ed38-19b9-40e5-a5bc-7e20c04212cf", + "uuid": "79f12852-ffa0-49df-9251-c55a33684e67", "siteRegistry": false, - "dateNoted": "2021-05-31", - "parcelID": "16245", - "crownLandUsePIN": "17514", - "crownLandFileNumber": "18752", - "landDescription": "LOT 1 OF LOT 4 BLOCK 1 DISTRICT LOT 5 PLAN 7012" + "dateNoted": "2015-03-27", + "parcelID": "15312", + "crownLandUsePIN": "16681", + "crownLandFileNumber": "17755", + "landDescription": "LOT 2 OF LOT 3 BLOCK 5 DISTRICT LOT 4 PLAN 3785" }, { - "uuid": "6030b8a4-30ff-4f8a-92e2-01c065218f12", + "uuid": "cded928d-cd76-47f4-8bdd-7165cb0a7489", "siteRegistry": true, - "dateNoted": "2020-08-16", - "parcelID": "20259", - "crownLandUsePIN": "15719", - "crownLandFileNumber": "15302", - "landDescription": "LOT 1 OF LOT 5 BLOCK 3 DISTRICT LOT 2 PLAN 4870" + "dateNoted": "2023-03-11", + "parcelID": "15647", + "crownLandUsePIN": "17973", + "crownLandFileNumber": "19652", + "landDescription": "LOT 4 OF LOT 3 BLOCK 4 DISTRICT LOT 5 PLAN 5714" } ], "siteDisclosures": [ { - "uuid": "d7db208f-e9ac-4eb7-a56c-d16df7a77adb", - "siteRegistry": true, - "dateReceived": "2015-07-18", - "dateCompleted": "2017-06-19", - "dateEntered": "2015-05-21", - "dateRegistrar": "2015-04-29", - "dateLocalAuthorityReceived": "2019-02-10", - "summary": "Error dignissimos aliquid eveniet vitae quos libero occaecati.\nMagni totam animi nostrum fugit provident quaerat dolorem non laborum.\nAnimi consequuntur fuga perspiciatis.", - "informationUsed": "Similique aliquid commodi excepturi officiis ab tempora aut.\nEnim quam quam odio quo.\nEos aliquam debitis similique cum facere voluptas magni autem perferendis.\nNemo necessitatibus odit iure quia quisquam neque facere sapiente velit.\nEst reprehenderit reiciendis.", - "pastOrPresentOrders": "Architecto incidunt error.", + "uuid": "9a9548f0-e58d-4be0-9f5c-a6e3ebb75012", + "siteRegistry": false, + "dateReceived": "2015-07-12", + "dateCompleted": "2021-01-01", + "dateEntered": "2014-03-28", + "dateRegistrar": "2020-04-17", + "dateLocalAuthorityReceived": "2018-12-29", + "summary": "Numquam debitis tempora nesciunt recusandae ipsam doloribus tempora.\nDucimus dicta dolor non.", + "informationUsed": "Culpa expedita tempora reiciendis illo deserunt rem similique minima.\nMinima quas deleniti reprehenderit quibusdam inventore quas.\nA animi cupiditate iste sint tempora doloribus.", + "pastOrPresentOrders": "Nihil ipsum minus maxime voluptate dolorem sed autem inventore.", "commercialAndIndustrialPurposes": [ { - "uuid": "dc9a998c-5710-43e0-a218-bce1c698ecee", + "uuid": "fef736ff-5b7e-4e4e-b8eb-577dbb7abccb", "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false }, { - "uuid": "d0043ea2-3683-47b6-9f3a-4ac597eccea7", + "uuid": "3da43b4b-3b96-48de-bf76-5a51fd1bb88d", "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false }, { - "uuid": "df2df838-bb5f-40ce-9d28-a42229d113bc", - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "uuid": "b36a7f30-c0cf-4085-8bc6-c1b3af025efa", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true } ] }, { - "uuid": "927b1f35-5c6b-4654-880d-855be0bf7f9e", + "uuid": "01239508-23e6-4a71-8f57-4ca9f1db5c03", "siteRegistry": false, - "dateReceived": "2016-04-08", - "dateCompleted": "2023-07-24", - "dateEntered": "2018-04-08", - "dateRegistrar": "2015-08-03", - "dateLocalAuthorityReceived": "2022-11-07", - "summary": "Nulla illo maiores temporibus possimus dolorem beatae repudiandae accusamus itaque.", - "informationUsed": "Omnis exercitationem repellat nobis saepe earum voluptas esse.\nRepellendus eaque numquam quisquam iure.\nDoloribus ducimus provident vel quaerat natus similique rerum sit architecto.", - "pastOrPresentOrders": "Officiis repellat quam placeat.\nEaque corrupti veniam temporibus dignissimos qui numquam.", + "dateReceived": "2014-11-30", + "dateCompleted": "2021-02-13", + "dateEntered": "2022-12-20", + "dateRegistrar": "2014-05-16", + "dateLocalAuthorityReceived": "2016-08-21", + "summary": "Recusandae optio minima eos provident similique odio ipsa.\nLabore vel recusandae ex quibusdam quo architecto impedit nobis est.\nVel saepe dolores eum corporis placeat in ab repellat dolore.", + "informationUsed": "Ut mollitia nostrum dolorum cumque consequuntur.\nLaboriosam velit laboriosam facilis eveniet tempore suscipit.\nDucimus voluptatibus hic.", + "pastOrPresentOrders": "Placeat sunt fugiat nulla saepe hic.\nNisi officia officia distinctio voluptate neque ut voluptatum eaque veniam.", "commercialAndIndustrialPurposes": [ { - "uuid": "5391db5f-b4c7-4062-9cc7-b7da22f14a2d", - "scheduleReference": "F1*", + "uuid": "3e0cfabd-3aec-49f5-aecc-3002606a08fe", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, { - "uuid": "6bf6eac9-d7cc-4d89-9728-7f55a5633220", + "uuid": "a20df67b-bc4c-4f1c-a613-57047b4c0c4e", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { - "uuid": "8f564f31-9e7c-476a-b23c-6df70780e174", - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "uuid": "42137eb6-c0da-4e8b-9fc7-5fea15aba1c5", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { - "uuid": "1342a18a-b241-4c66-b0dc-452821b18797", + "uuid": "d3fb46af-d59c-47df-85f7-b329600f3c5e", "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true } ] @@ -6210,92 +7074,129 @@ ], "activityLog": [ { - "uuid": "d87fe66b-9326-43c0-80b4-2e293eec3c5a", + "uuid": "b2deccbb-4002-46b1-a4de-5eba9c717e0f", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "TOWNE JOHANNA", - "timestamp": "2020-09-14" + "user": "PRICE VINNIE", + "timestamp": "2021-08-18" + }, + { + "uuid": "f836f0fc-c34f-4c7e-bc8b-a336291ad11b", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "KUB GRAYSON", + "timestamp": "2015-11-06" }, { - "uuid": "6d683bef-3b22-480c-b477-93601dce71e2", + "uuid": "63c2d18c-2946-41b7-b3e8-718795164135", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "SCHROEDER-ERNSER MARGE", - "timestamp": "2022-07-13" + "user": "MEDHURST BLAZE", + "timestamp": "2021-02-08" }, { - "uuid": "7d0ec5dd-38e7-4449-800a-e502c2da6726", + "uuid": "cd9104da-a620-4887-b3dd-dfedab0af34a", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "VON-ROGAHN THEODORA", - "timestamp": "2020-05-05" + "user": "BAUMBACH JULIANA", + "timestamp": "2021-05-28" + }, + { + "uuid": "41c2fbc5-88d3-4eb5-a231-794554cb9b8f", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "YUNDT EVELYN", + "timestamp": "2016-05-10" }, { - "uuid": "ea554030-3989-46b2-9beb-b38c80b7edb4", + "uuid": "44ecfc2d-895b-4222-8017-cd816db305dc", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "VANDERVORT EMERY", - "timestamp": "2022-09-04" + "user": "KUNZE JIMMY", + "timestamp": "2022-10-02" }, { - "uuid": "48187958-fe1a-4376-9f3c-af702064ad33", + "uuid": "f81408dd-42d5-4ef9-9918-d3538e73551c", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "SCHMITT MATILDE", - "timestamp": "2016-12-13" + "user": "HOWE SAMMIE", + "timestamp": "2022-05-26" }, { - "uuid": "6b9d3434-8e39-4881-8997-4bf267333023", + "uuid": "0b2e6adf-3313-45c1-9ae3-d03c6011cb8a", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "ULLRICH TYREL", - "timestamp": "2019-02-02" + "user": "KUVALIS ETHYL", + "timestamp": "2015-12-23" }, { - "uuid": "2fcd95eb-e647-4e59-b97c-0a4c3ea7fb14", - "siteRegistry": true, + "uuid": "98ebd4b9-2f39-4870-971a-428a3ecdf80b", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "STREICH RAFAELA", + "timestamp": "2020-07-20" + }, + { + "uuid": "745a4b2e-0051-453c-a22e-d79aa1a856b3", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "STEHR FREEDA", - "timestamp": "2016-02-19" + "user": "CONROY CITLALLI", + "timestamp": "2020-10-25" } ], "associatedSites": [ { - "uuid": "c00eebef-8f81-41c6-9a1a-376fc878eab0", - "dateNoted": "2022-02-26", + "uuid": "cd1d5f23-827d-4e46-89dc-6b79fcecfd2b", + "dateNoted": "2016-02-07", "notes": "", - "parcelID": "17005", - "siteID": "20304", - "siteRegistry": true + "parcelID": "20289", + "siteID": "18365", + "siteRegistry": false + }, + { + "uuid": "076d8f92-2db8-4c3b-b36a-167c01b0660d", + "dateNoted": "2018-02-09", + "notes": "", + "parcelID": "18827", + "siteID": "18686", + "siteRegistry": false + }, + { + "uuid": "71c29c85-7bef-4f33-9ae8-7dcac502d323", + "dateNoted": "2013-12-08", + "notes": "", + "parcelID": "15830", + "siteID": "19986", + "siteRegistry": false } ] }, { - "uuid": "9e486f6e-4888-4ec7-a017-a91872205156", - "siteID": 17688, - "address": "52826 Hane Burg", - "latitude": 58.7075, - "longitude": -134.8737, - "lastUpdated": "2015-12-21", - "city": "Port Dale", + "uuid": "89516582-dea2-4c10-9dc6-e358cecf4c87", + "siteID": 18588, + "address": "9143 Kris Extension", + "latitude": 53.3407, + "longitude": -132.7214, + "lastUpdated": "2014-08-03", + "city": "Reillyport", "region": "Thompson-Okanagan", - "victoriaFile": "26250-20/4109", + "victoriaFile": "26250-20/4181", "regionalFile": "N/A", "parcelIDs": [ - 3116870, - 4762043, - 3917506, - 8698739, - 3602742 + 3814486, + 6752899, + 4612458, + 8796963, + 3241396 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "aaf15891-596e-4d03-861f-a148ec11c6ac", - "createdAt": "2019-02-05", - "completed": "2021-03-03", - "initiated": "2017-02-07", - "ministryContact": "BEATTY AUBREY", + "uuid": "6f53f190-8ec7-47f6-b859-d57185ac0c98", + "createdAt": "2019-05-08", + "completed": "2015-08-22", + "initiated": "2023-02-14", + "ministryContact": "PREDOVIC LEOPOLD", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -6304,38 +7205,44 @@ ], "notationParticipants": [ { - "uuid": "62242a1a-ff58-4e46-97c1-62cb38cb5b5e", - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "998f65ff-f0cb-43d7-bf30-ec43fe009938", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "cf4784ec-151c-4e1f-b4d3-6c0b07717ec3", - "name": "SHELL CANADA PRODUCTS", + "uuid": "677fe931-1f89-4171-939f-2131b723e9a6", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "14a087b9-d676-401a-bf7d-7dc7fdc24e93", + "uuid": "ed53d032-110c-4c30-9baa-10175ca35b39", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "03744ca0-b681-4521-937f-03cc592d6bf7", - "name": "SHELL CANADA PRODUCTS", + "uuid": "c1d4f43d-0296-4949-9861-c1842025ec20", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true - } - ], - "siteRegistry": true + }, + { + "uuid": "520a5510-8f61-424f-9f03-3b596b103d89", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false }, { - "uuid": "8337fe94-47e2-4c50-83e7-38f131989710", - "createdAt": "2022-04-06", - "completed": "2017-11-11", - "initiated": "2023-06-26", - "ministryContact": "CRONIN FRIEDA", + "uuid": "cf5cadaa-811a-461d-b405-f0453784470f", + "createdAt": "2020-10-27", + "completed": "2018-08-17", + "initiated": "2019-09-05", + "ministryContact": "BODE SHELDON", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -6344,306 +7251,358 @@ ], "notationParticipants": [ { - "uuid": "81b8c902-66cb-4b14-8927-a9885189ff72", + "uuid": "a6eae0b2-3627-4828-a9bb-eae8d5332c6f", "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "0d0d08ad-85c9-41ec-bc53-e320b0954e90", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true }, { - "uuid": "fb55e0e8-096c-49a6-8d4c-40b4e779f36f", + "uuid": "fa16c85a-92a9-4c73-9b94-32b719ab620a", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false }, { - "uuid": "b5d867eb-6a01-4df9-ab55-84b035d17ebc", + "uuid": "4525779c-7638-4d00-abd8-26d89fdb1c39", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true - }, + } + ], + "siteRegistry": true + }, + { + "uuid": "fda78e9d-890b-454b-b509-fe2e3a197af7", + "createdAt": "2021-12-07", + "completed": "2020-12-14", + "initiated": "2021-06-14", + "ministryContact": "WUNSCH ALBERTHA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ { - "uuid": "f75c5933-2594-40ef-bc17-caedfc9b3f9b", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true + "uuid": "04d95839-ff11-4106-9a86-29b0bde6c8ca", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false }, { - "uuid": "dfff5994-bef4-457c-b758-fb1f09a6319a", + "uuid": "ddf7ccbf-d894-4b9d-9689-5478c77e01d5", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false + }, + { + "uuid": "8bcfcfb7-a7c2-454b-b6b0-5fffe2501216", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true } ], "participants": [ { - "uuid": "e3f68d97-6cbf-4783-9689-41f40f6cf948", - "name": "SHELL CANADA PRODUCTS", - "endDate": "2018-02-12", - "startDate": "2016-11-11", + "uuid": "5bc226f5-6556-4eba-a49e-c50ac4b811cb", + "name": "AMET, DOLOR SIT", + "endDate": "2023-06-13", + "startDate": "2020-10-22", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "dcd89d69-949e-46f2-8b51-0fefb88c5e23", + "uuid": "11901892-cb44-472f-80c0-a35a0ae1a104", "name": "SHELL CANADA PRODUCTS", - "endDate": "2020-04-08", - "startDate": "2019-12-21", + "endDate": "2015-11-09", + "startDate": "2014-07-31", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": false }, { - "uuid": "b0a5409f-01b4-49ac-ab17-307e04320684", - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2020-06-04", - "startDate": "2022-03-16", + "uuid": "ffdf3d30-f7eb-4fd7-9c64-5828d23dd2a5", + "name": "IPSUM", + "endDate": "2018-01-23", + "startDate": "2022-12-12", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "e9de8ad5-54ab-4344-b034-2951ddaf153c", - "name": "IPSUM", - "endDate": "2022-10-31", - "startDate": "2021-07-30", + "uuid": "fde326dc-413a-4bcf-8884-d72b88868e39", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2023-10-04", + "startDate": "2020-08-24", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "5a85e15f-470d-4855-9436-db54e1bd7c01", - "name": "IPSUM", - "endDate": "2022-04-16", - "startDate": "2019-11-27", + "uuid": "a59a8548-9eee-4a99-99c1-12f188a6434d", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2015-10-24", + "startDate": "2017-03-24", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": true + "siteRegistry": false + } + ], + "documents": [ + { + "uuid": "89b99892-b985-4527-a209-bd8145ee5d7a", + "siteRegistry": true, + "documentDate": "2015-01-28", + "receivedDate": "2023-03-13", + "uploadedDate": "2017-01-21", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "b86c7c17-75c1-42f8-ab47-83bf3dd113a0", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "bb38afd0-af8c-40df-a87e-67e407c0f1fc", + "name": "AMET, DOLOR SIT", + "siteRegistry": false, + "role": "AUTHOR" + } + ] } ], "suspectLandUses": [ { - "uuid": "b10c8287-58fd-4457-9f36-9d015521595f", - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2020-03-15 (described on Site Profile dated 2020-03-15)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "uuid": "251bec34-50ee-4b09-ad3e-4c2294cfc64c", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2013-11-10 (described on Site Profile dated 2013-11-10)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "uuid": "1480acf7-b307-43ad-b667-17cba73599cb", + "uuid": "9cf78694-ad95-4a72-a7b4-d600f1ffe071", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2020-03-10 (described on Site Profile dated 2020-03-10)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "notes": "INSERTED FOR SITE PROFILE DATED 2021-07-22 (described on Site Profile dated 2021-07-22)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "uuid": "ec586c60-28d3-46ef-b23d-8af6859c6199", - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-10-20 (described on Site Profile dated 2022-10-20)", + "uuid": "5f90efda-17cc-48a0-ba71-4b79bdde94d4", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2017-06-15 (described on Site Profile dated 2017-06-15)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "uuid": "4f0eb44f-f539-4c26-8c7b-7adda8efb0de", + "uuid": "7b540aac-2762-4bcd-8003-24a2e97c5a38", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-03-12 (described on Site Profile dated 2022-03-12)", + "notes": "INSERTED FOR SITE PROFILE DATED 2017-03-08 (described on Site Profile dated 2017-03-08)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" - }, - { - "uuid": "785464f2-1053-4a75-b759-96a0cd2a0cf6", - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-03-13 (described on Site Profile dated 2016-03-13)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], "parcelDescriptions": [ { - "uuid": "efbee82b-8bcf-4d44-893c-1ec58b924b06", + "uuid": "44923c50-bee8-4fd8-9694-eae195c9aac3", "siteRegistry": false, - "dateNoted": "2017-07-21", - "parcelID": "16495", - "crownLandUsePIN": "18380", - "crownLandFileNumber": "17755", - "landDescription": "LOT 4 OF LOT 3 BLOCK 5 DISTRICT LOT 2 PLAN 4748" + "dateNoted": "2020-02-09", + "parcelID": "20271", + "crownLandUsePIN": "20248", + "crownLandFileNumber": "16615", + "landDescription": "LOT 3 OF LOT 2 BLOCK 2 DISTRICT LOT 1 PLAN 9208" }, { - "uuid": "3c393309-4b17-4600-9c22-86b4583d6ee1", + "uuid": "89851992-779d-4848-9c64-8a58ee260267", "siteRegistry": true, - "dateNoted": "2021-01-06", - "parcelID": "20026", - "crownLandUsePIN": "16659", - "crownLandFileNumber": "18970", - "landDescription": "LOT 3 OF LOT 5 BLOCK 5 DISTRICT LOT 3 PLAN 6334" + "dateNoted": "2020-10-22", + "parcelID": "17855", + "crownLandUsePIN": "17409", + "crownLandFileNumber": "18842", + "landDescription": "LOT 3 OF LOT 3 BLOCK 3 DISTRICT LOT 3 PLAN 3002" }, { - "uuid": "f908c293-4e05-4eb3-b950-19cf2c0ee34c", - "siteRegistry": true, - "dateNoted": "2016-08-21", - "parcelID": "18263", - "crownLandUsePIN": "16786", - "crownLandFileNumber": "16314", - "landDescription": "LOT 1 OF LOT 2 BLOCK 4 DISTRICT LOT 2 PLAN 3244" + "uuid": "f4d612d7-4fed-45c9-b6dc-60c5a42363b7", + "siteRegistry": false, + "dateNoted": "2017-04-24", + "parcelID": "17549", + "crownLandUsePIN": "18019", + "crownLandFileNumber": "20706", + "landDescription": "LOT 1 OF LOT 2 BLOCK 3 DISTRICT LOT 4 PLAN 7663" + }, + { + "uuid": "2460a378-6f2c-4552-8d3b-7153a6eaaa19", + "siteRegistry": false, + "dateNoted": "2019-02-06", + "parcelID": "17038", + "crownLandUsePIN": "20145", + "crownLandFileNumber": "19864", + "landDescription": "LOT 1 OF LOT 5 BLOCK 5 DISTRICT LOT 2 PLAN 7897" } ], "siteDisclosures": [ { - "uuid": "b472c212-57b0-4b13-8681-99b0520443dd", - "siteRegistry": false, - "dateReceived": "2015-01-15", - "dateCompleted": "2015-02-22", - "dateEntered": "2016-02-23", - "dateRegistrar": "2022-09-11", - "dateLocalAuthorityReceived": "2020-01-23", - "summary": "Omnis earum accusamus sequi.\nMolestias impedit vel iusto voluptatum.\nMagnam velit accusantium consequuntur.", - "informationUsed": "Repudiandae beatae quos pariatur non a dicta dicta alias.\nAt enim quasi placeat facilis accusamus iste voluptatem ex.\nRem sapiente aliquam nemo velit corporis.", - "pastOrPresentOrders": "Eum voluptatibus quidem nostrum corporis tempora.", + "uuid": "77d7c794-772e-401b-bc0d-568221c1873f", + "siteRegistry": true, + "dateReceived": "2015-10-23", + "dateCompleted": "2016-12-02", + "dateEntered": "2018-11-22", + "dateRegistrar": "2013-11-24", + "dateLocalAuthorityReceived": "2019-06-02", + "summary": "Explicabo tempora qui.\nVel reprehenderit aspernatur dolore nostrum voluptas.", + "informationUsed": "Ipsum mollitia dolor libero aperiam ea repellat nihil repellendus.\nAperiam aliquid aut doloremque quibusdam aliquid modi asperiores labore.\nLaboriosam ipsam omnis nam consectetur veritatis est veritatis.\nQuaerat iure voluptatibus aperiam similique.\nLaudantium ea labore praesentium.", + "pastOrPresentOrders": "Eaque magni totam quaerat praesentium vel quas.\nTenetur facilis quisquam inventore totam hic.", "commercialAndIndustrialPurposes": [ { - "uuid": "e7121457-a43e-4328-bb8d-3cc982255786", + "uuid": "60e8cbdc-b0fb-4e16-a63c-1917626296a7", "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false }, { - "uuid": "64172bf1-71e2-4c21-b4a1-4b4f0a929f0a", + "uuid": "8f4243d1-fc39-4b87-aa93-fa0a2310d153", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true - }, - { - "uuid": "bfcabba2-92ec-4001-8b77-4db72ef3012b", - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true - }, - { - "uuid": "9e0e6ecd-3d72-468b-8a4b-73ba7ecb6d1e", - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true + "siteRegistry": false } ] } ], "activityLog": [ { - "uuid": "d41c710b-a108-482e-8b91-947de268fdfe", - "siteRegistry": false, + "uuid": "2f1ad366-329d-4971-ba51-db54f1df1cb9", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "CONN REY", - "timestamp": "2019-11-06" + "user": "SCHILLER NORWOOD", + "timestamp": "2019-01-08" }, { - "uuid": "536f1b63-1ff4-49dc-9290-30117ac9425b", + "uuid": "267141ed-9aab-436b-a1c8-49f9ec3c5c01", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "ORTIZ OMARI", - "timestamp": "2022-04-23" + "user": "RYAN PIPER", + "timestamp": "2018-04-08" }, { - "uuid": "a71b734c-c592-4780-a2a9-8abd08eb0ce5", - "siteRegistry": true, + "uuid": "817fda34-55e9-47cc-a7a7-98e91327b9df", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "DIETRICH KEON", - "timestamp": "2019-09-10" + "user": "BARTOLETTI ERICK", + "timestamp": "2020-12-27" }, { - "uuid": "8ad040fa-0e74-4b57-a4f1-2d1c79f81f62", - "siteRegistry": true, + "uuid": "77f6ae77-5064-4564-be57-2a75f73a271f", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "JAKUBOWSKI JARRELL", - "timestamp": "2020-09-03" + "user": "ZIEME DESSIE", + "timestamp": "2018-07-09" }, { - "uuid": "857c303c-11d7-4aef-88d9-1dc5524bf808", - "siteRegistry": true, + "uuid": "76c7d719-f06c-4ed7-9d9c-83840e2606e0", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "RIPPIN JETTIE", - "timestamp": "2020-03-29" + "user": "KULAS LAURINE", + "timestamp": "2017-08-14" }, { - "uuid": "d20b5832-2cb6-483f-aca8-a95843f441bc", + "uuid": "27cf4d4e-bd89-4afa-8d9a-597c228de9f7", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "FRIESEN GRANVILLE", - "timestamp": "2017-05-10" - }, - { - "uuid": "e13f212b-baed-4b78-86d1-33b3071067db", - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "LEGROS DEVONTE", - "timestamp": "2017-01-24" + "user": "DACH LUKAS", + "timestamp": "2021-01-30" }, { - "uuid": "3f6939ca-32ac-4606-bd5d-1b2416526c24", - "siteRegistry": false, + "uuid": "4119026a-ed8b-44b8-ae82-ef7da33fbf81", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "LOWE KIANA", - "timestamp": "2016-07-28" + "user": "SMITHAM CORY", + "timestamp": "2013-11-03" }, { - "uuid": "1fcca0e9-82e7-4421-b8a7-63ce8cecb5f0", + "uuid": "da3f92b5-0301-4fa6-871a-f5eb2cb7ab7b", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "SCHULTZ ANDERSON", - "timestamp": "2016-03-15" + "user": "GRANT DUSTIN", + "timestamp": "2015-11-27" }, { - "uuid": "b6cf5ee3-3243-43b1-9ab6-2c5f65b436ff", - "siteRegistry": true, + "uuid": "2dffe284-660a-409f-b914-94feb4afc11b", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "WILLIAMSON JAYCEE", - "timestamp": "2019-03-31" + "user": "TURNER EFREN", + "timestamp": "2018-09-08" } ], "associatedSites": [ { - "uuid": "36fe43a0-658c-4d45-b4b2-5db654a03c74", - "dateNoted": "2015-10-14", + "uuid": "a89dc327-e374-4c51-b381-ac0f30590d2c", + "dateNoted": "2015-04-06", + "notes": "", + "parcelID": "15276", + "siteID": "20767", + "siteRegistry": false + }, + { + "uuid": "3dcdbb91-91b0-4210-b30b-d9473d69fb38", + "dateNoted": "2018-07-15", "notes": "", - "parcelID": "15899", - "siteID": "15575", + "parcelID": "20979", + "siteID": "16344", "siteRegistry": false + }, + { + "uuid": "508861b4-c613-4b26-a1fa-90df78aad745", + "dateNoted": "2022-08-12", + "notes": "", + "parcelID": "20570", + "siteID": "17053", + "siteRegistry": true } ] }, { - "uuid": "eace6939-d714-43fb-b213-e2b1779d83ec", - "siteID": 17701, - "address": "1886 Prosacco Trafficway", - "latitude": 58.9678, - "longitude": -130.026, - "lastUpdated": "2017-10-03", - "city": "McKinney", - "region": " North Coast", - "victoriaFile": "26250-20/2512", + "uuid": "12327a97-04a7-4413-9ff2-ae5df7037db0", + "siteID": 19497, + "address": "389 Brekke Park", + "latitude": 48.2867, + "longitude": -134.3256, + "lastUpdated": "2014-02-11", + "city": "East Ramonabury", + "region": "Vancouver Island/Coast", + "victoriaFile": "26250-20/10640", "regionalFile": "N/A", "parcelIDs": [ - 178749, - 4895027, - 1914989, - 4114328, - 3081065 + 9033363, + 6810218, + 9654277, + 7427806, + 9014380 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "6da2cbaa-8520-4c1f-8197-0c79b9b576a1", - "createdAt": "2014-12-15", - "completed": "2018-01-21", - "initiated": "2020-04-25", - "ministryContact": "O'KEEFE TANIA", + "uuid": "4150d291-d037-4491-ad5f-627dd9a834d2", + "createdAt": "2022-10-19", + "completed": "2020-04-09", + "initiated": "2023-03-18", + "ministryContact": "MAGGIO ANNETTE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -6652,32 +7611,26 @@ ], "notationParticipants": [ { - "uuid": "e190f056-2bbf-4807-9978-0c0773540d71", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "uuid": "190a7318-aa4b-4b4f-9714-3a031005a832", - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "cd9d2e78-bebe-40ab-994c-4f73c18aa1be", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "951f1278-df4e-478e-b2d4-358338058678", + "uuid": "91022abb-4c74-4c6f-8ecd-8c6523126ab7", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false }, { - "uuid": "05695c46-2e3a-49b9-a9ec-0f708cd60909", + "uuid": "2f2e237f-b7b3-4a9f-aa80-2864b20161a2", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true }, { - "uuid": "e4839ba0-a82b-4c3f-a6dc-2786498d6c2d", - "name": "SHELL CANADA PRODUCTS", + "uuid": "5d6887f8-5e78-40f5-bca9-0f1089101f81", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true } @@ -6685,11 +7638,11 @@ "siteRegistry": true }, { - "uuid": "62b89d64-23ac-48c0-9795-1b763299646a", - "createdAt": "2014-11-27", - "completed": "2017-04-13", - "initiated": "2018-05-17", - "ministryContact": "KOCH WILL", + "uuid": "4cf4c547-e095-48d8-8307-17c952f0f585", + "createdAt": "2020-11-25", + "completed": "2023-10-03", + "initiated": "2022-03-29", + "ministryContact": "ROBERTS FELICIA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -6698,44 +7651,38 @@ ], "notationParticipants": [ { - "uuid": "74758e01-fddb-46e3-a1c9-18ebf440b0f4", + "uuid": "a27a3691-53d5-4a67-a7a2-1bbd463c48e1", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "44baca63-1f5d-4dd7-9fa1-b028537c3ac5", + "uuid": "432ed08a-a0d0-49ee-9c91-64b5179b774e", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "ce3c3d83-51ab-4f4f-8452-32d018e2d002", + "uuid": "d541de6c-ce6b-4dbe-a7cc-8afef619a50d", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false + "role": "SUBMITTED BY", + "siteRegistry": true }, { - "uuid": "46be32af-2e1d-4141-b227-5989a12c5eba", + "uuid": "27260192-6539-4ce3-be01-817ed760070d", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "uuid": "60178074-144d-40f5-b31c-508f8508cbd7", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "785222d1-1084-4816-9812-4d11eb6e182e", - "createdAt": "2020-11-25", - "completed": "2021-01-17", - "initiated": "2023-03-27", - "ministryContact": "WALKER RONALDO", + "uuid": "1963166a-db1f-4a14-a18e-fd547e59e2f6", + "createdAt": "2021-04-25", + "completed": "2014-09-25", + "initiated": "2019-01-05", + "ministryContact": "HUELS WILEY", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -6744,32 +7691,38 @@ ], "notationParticipants": [ { - "uuid": "b121ad0f-d6e7-44e7-b486-724629bb3b90", - "name": "SHELL CANADA PRODUCTS", + "uuid": "8b0b0279-060e-41b8-88d7-ee62003cfb9e", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "f65df6c7-2c52-412f-aabc-b80174732ff8", + "uuid": "7906d255-931f-481f-a593-ef5dd522f559", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "66cb80d7-aa01-40b8-8fb2-8cc679eb0cde", + "uuid": "7fb0e356-03eb-459b-9b4d-79e8d93ac9ba", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false + }, + { + "uuid": "f96c9cbd-4539-4336-994e-e997048be2f6", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "42480af5-1f3a-42f8-a83e-85d98b3e5737", - "createdAt": "2015-08-31", - "completed": "2018-02-17", - "initiated": "2018-03-07", - "ministryContact": "ROGAHN KAYLEY", + "uuid": "dbb4684f-43b2-4c1a-a1ad-f4b866ec2ff7", + "createdAt": "2019-08-17", + "completed": "2022-02-04", + "initiated": "2021-08-26", + "ministryContact": "RATKE MORTON", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -6778,50 +7731,61 @@ ], "notationParticipants": [ { - "uuid": "e2e41314-14c4-4bba-a4eb-4b7145ce6a2a", + "uuid": "4a89a2a0-30d7-4b5f-991e-372f0be6f968", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "d6df69c5-5463-4225-993e-43dcc4768e31", - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "f5f660c4-888a-41bd-9c17-e86954e3aee5", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "c8b9015c-fe74-4e7f-9e75-cde2a4209667", - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "uuid": "47741d53-4585-4a25-9598-6f5ce185d7f3", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", "siteRegistry": false }, { - "uuid": "b54c45d4-6dc1-4ab3-8db1-57cd697a5cd7", + "uuid": "e3deae3a-26b4-4028-a439-2d0354756f34", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false + "role": "SUBMITTED BY", + "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false } ], "participants": [ { - "uuid": "70012a42-0232-4df4-9eb5-69dd5dfcb288", - "name": "SHELL CANADA PRODUCTS", - "endDate": "2016-07-02", - "startDate": "2015-03-15", + "uuid": "58aafba6-b10f-4d0a-a853-d1ce32051ae9", + "name": "AMET, DOLOR SIT", + "endDate": "2022-09-02", + "startDate": "2014-07-16", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "uuid": "1e5dd548-e196-4fa5-9f41-30c96d7c57f1", + "name": "AMET, DOLOR SIT", + "endDate": "2023-03-18", + "startDate": "2015-07-03", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "4e370c1c-0735-4278-9e9c-55e4341caf4f", + "uuid": "92137fe0-e958-437d-b744-ff2ccffdbfd0", "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2016-04-22", - "startDate": "2020-04-06", + "endDate": "2017-10-21", + "startDate": "2022-10-03", "notes": "", "roles": [ "ORGANIZATION" @@ -6829,116 +7793,281 @@ "siteRegistry": true }, { - "uuid": "7ddec204-4d64-40fc-934e-db302ffc0a69", - "name": "SHELL CANADA PRODUCTS", - "endDate": "2014-11-12", - "startDate": "2019-06-04", + "uuid": "4b57e04e-b06f-496f-b300-5ccc703f70a6", + "name": "AMET, DOLOR SIT", + "endDate": "2014-04-23", + "startDate": "2015-02-19", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": true } ], + "documents": [ + { + "uuid": "dfa0fd5d-dcb3-4ff4-8121-525d69807ac5", + "siteRegistry": false, + "documentDate": "2016-12-26", + "receivedDate": "2015-09-26", + "uploadedDate": "2016-11-29", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "bf82362b-8138-44cc-9fbf-1ad867f47db9", + "name": "AMET, DOLOR SIT", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "ba2753bc-c51d-4ac6-b656-14409371a32b", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "17479052-7d8c-44c9-8ff7-f54b7369ed33", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": true, + "role": "AUTHOR" + } + ] + }, + { + "uuid": "6881c2f8-10d2-46f7-a5e8-3c65cd880704", + "siteRegistry": true, + "documentDate": "2016-01-16", + "receivedDate": "2018-04-22", + "uploadedDate": "2015-06-30", + "title": "Summary of Site Conditions, 1537 W 41st Avenue, Vancouver", + "participants": [ + { + "uuid": "5039e564-f10d-40c4-a1ab-b5325b92ed72", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "3b6de303-a800-470c-b732-0ac13777c4c5", + "name": "IPSUM", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "ba150ad9-029a-4706-b5d0-2c9dc2ad7eea", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": false, + "role": "AUTHOR" + } + ] + }, + { + "uuid": "f8033de6-2d9d-4bb0-956e-fb0fba0be4bd", + "siteRegistry": true, + "documentDate": "2020-02-23", + "receivedDate": "2017-09-01", + "uploadedDate": "2023-02-27", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "0cbf4914-336b-4164-b4dd-d093dc7f6ac8", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "053a3a9c-b53a-4f42-8d4d-98f21132e737", + "name": "IPSUM", + "siteRegistry": true, + "role": "AUTHOR" + } + ] + }, + { + "uuid": "f483a6f8-4bff-4ecb-9e1e-40d182cb40b9", + "siteRegistry": false, + "documentDate": "2016-04-03", + "receivedDate": "2015-07-09", + "uploadedDate": "2022-01-06", + "title": "Preliminary Site Investigation, Detailed Site Investigation and Remedial Plan for the Management Area adjacent to the Shell Site at 1503 West 41st Ave", + "participants": [ + { + "uuid": "e4c7855f-bc0d-4d0f-84e6-40b0a2c441bc", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "085ea5ce-7956-445a-a8ff-7d2633545102", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "46a990fc-01f0-43d5-be6d-7c706164f928", + "name": "AMET, DOLOR SIT", + "siteRegistry": true, + "role": "AUTHOR" + } + ] + }, + { + "uuid": "b640b9b0-4505-4768-99d3-d4757d38ac34", + "siteRegistry": false, + "documentDate": "2015-03-02", + "receivedDate": "2019-05-15", + "uploadedDate": "2019-11-26", + "title": "Summary of Site Conditions, 1537 W 41st Avenue, Vancouver", + "participants": [ + { + "uuid": "bc7d0cfd-62be-49ce-8c57-ca9c67efd57e", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": true, + "role": "AUTHOR" + } + ] + } + ], "suspectLandUses": [ { - "uuid": "7eb87921-dfec-430d-86fa-d042d113eee8", + "uuid": "c7438cc6-077d-4c5e-a93b-05f6c864e73e", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-11-24 (described on Site Profile dated 2022-11-24)", + "notes": "INSERTED FOR SITE PROFILE DATED 2018-02-19 (described on Site Profile dated 2018-02-19)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "uuid": "55805788-0444-4808-aad1-5c4d44d03d70", + "uuid": "c2ac3300-b0f9-41cb-ac4a-03c52f01602d", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-07-05 (described on Site Profile dated 2018-07-05)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "notes": "INSERTED FOR SITE PROFILE DATED 2020-04-04 (described on Site Profile dated 2020-04-04)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "uuid": "3a7c7216-33d0-4a59-9161-37fe611bb3fc", + "uuid": "053a4424-0834-47f1-9716-99182868f3bd", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-08-01 (described on Site Profile dated 2014-08-01)", + "notes": "INSERTED FOR SITE PROFILE DATED 2020-11-09 (described on Site Profile dated 2020-11-09)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "uuid": "86c2e03b-965d-4374-a126-291a665ab4c7", - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-07-26 (described on Site Profile dated 2022-07-26)", + "uuid": "562d1b95-f005-4d96-b62c-9bb2053a9741", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2017-01-01 (described on Site Profile dated 2017-01-01)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "uuid": "236f84e9-7357-430a-97e0-dc3f87d7c663", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2014-02-26 (described on Site Profile dated 2014-02-26)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], "parcelDescriptions": [ { - "uuid": "5552b22d-a792-43a2-ab41-4c18a71e684b", - "siteRegistry": false, - "dateNoted": "2020-09-19", - "parcelID": "20298", - "crownLandUsePIN": "16234", - "crownLandFileNumber": "18485", - "landDescription": "LOT 5 OF LOT 3 BLOCK 5 DISTRICT LOT 4 PLAN 8094" + "uuid": "9430d895-454a-4f44-a4d6-7d132f7e3d99", + "siteRegistry": true, + "dateNoted": "2023-04-24", + "parcelID": "20162", + "crownLandUsePIN": "16194", + "crownLandFileNumber": "20069", + "landDescription": "LOT 3 OF LOT 2 BLOCK 2 DISTRICT LOT 1 PLAN 6678" }, { - "uuid": "8825d7d5-a136-419e-8132-ce9032992770", + "uuid": "6b4b55d8-9489-4a49-a253-6f4157376a72", "siteRegistry": true, - "dateNoted": "2022-04-09", - "parcelID": "17456", - "crownLandUsePIN": "19669", - "crownLandFileNumber": "16805", - "landDescription": "LOT 4 OF LOT 1 BLOCK 3 DISTRICT LOT 3 PLAN 8441" + "dateNoted": "2014-11-07", + "parcelID": "18383", + "crownLandUsePIN": "17477", + "crownLandFileNumber": "19122", + "landDescription": "LOT 5 OF LOT 5 BLOCK 4 DISTRICT LOT 5 PLAN 7274" + }, + { + "uuid": "f6f8c2e0-50b8-484a-8aa4-d3cd3e54dc12", + "siteRegistry": false, + "dateNoted": "2020-07-18", + "parcelID": "18277", + "crownLandUsePIN": "20400", + "crownLandFileNumber": "17205", + "landDescription": "LOT 2 OF LOT 2 BLOCK 4 DISTRICT LOT 4 PLAN 6482" }, { - "uuid": "dc3d1f80-44c0-4901-ab37-3096d02921ab", + "uuid": "f74261de-3ddb-4ad2-b574-87b6ed30ea38", "siteRegistry": true, - "dateNoted": "2014-03-24", - "parcelID": "19234", - "crownLandUsePIN": "18061", - "crownLandFileNumber": "16403", - "landDescription": "LOT 2 OF LOT 2 BLOCK 1 DISTRICT LOT 1 PLAN 9405" + "dateNoted": "2018-03-13", + "parcelID": "15883", + "crownLandUsePIN": "19170", + "crownLandFileNumber": "15321", + "landDescription": "LOT 5 OF LOT 5 BLOCK 2 DISTRICT LOT 2 PLAN 6993" }, { - "uuid": "2c4aaf5f-bbb1-456e-82d2-5e0aa1c618af", + "uuid": "d0115757-a8c7-4b22-a114-e4ccc76713df", "siteRegistry": false, - "dateNoted": "2022-02-20", - "parcelID": "16841", - "crownLandUsePIN": "16442", - "crownLandFileNumber": "15812", - "landDescription": "LOT 3 OF LOT 1 BLOCK 4 DISTRICT LOT 3 PLAN 5256" + "dateNoted": "2018-05-23", + "parcelID": "15314", + "crownLandUsePIN": "18700", + "crownLandFileNumber": "20341", + "landDescription": "LOT 1 OF LOT 2 BLOCK 2 DISTRICT LOT 3 PLAN 9053" } ], "siteDisclosures": [ { - "uuid": "3a208369-97ad-4b2c-8559-ef4d2cf207e8", + "uuid": "a6425646-78b2-493a-831a-688b945996d2", "siteRegistry": true, - "dateReceived": "2022-10-22", - "dateCompleted": "2020-10-20", - "dateEntered": "2015-07-21", - "dateRegistrar": "2017-08-14", - "dateLocalAuthorityReceived": "2016-11-29", - "summary": "Atque error molestias.\nVeritatis maiores ullam quia ipsam sequi optio nemo.\nMinus asperiores repudiandae.", - "informationUsed": "Cumque possimus similique veritatis.\nSoluta consequatur nisi.\nDeleniti earum modi aspernatur odit nihil fugiat aut consequuntur rerum.\nOdio at voluptatem asperiores.\nConsequatur repellendus ad eius illo laboriosam nesciunt.", - "pastOrPresentOrders": "Quas corrupti nobis incidunt.\nOdio eum illo illum doloremque ipsam similique similique.", + "dateReceived": "2016-11-16", + "dateCompleted": "2016-07-14", + "dateEntered": "2015-03-22", + "dateRegistrar": "2017-06-27", + "dateLocalAuthorityReceived": "2014-11-02", + "summary": "Cumque unde molestiae nesciunt provident sequi sunt illum numquam.\nQuaerat quos accusamus debitis illum autem delectus.\nLaborum ratione nihil necessitatibus iusto perspiciatis reprehenderit maiores suscipit beatae.", + "informationUsed": "Aspernatur aperiam excepturi necessitatibus dolore amet.\nAperiam perferendis dolorum vitae quos molestiae id.\nPariatur fugit debitis ipsum ipsa.\nOptio consectetur assumenda amet consectetur quas.\nMaxime dolorum necessitatibus eligendi quaerat architecto.", + "pastOrPresentOrders": "Veniam officia minima dicta quasi voluptatum et odio natus.\nSapiente saepe minus velit ipsum natus facere voluptatem.", "commercialAndIndustrialPurposes": [ { - "uuid": "e4885dbc-8fa8-47bc-8264-188547b8518e", - "scheduleReference": "F1*", + "uuid": "e22251d0-4656-4f58-9e64-508c9bedf42e", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "uuid": "308f2c7c-b2fa-410e-80d5-28d4316a4dbe", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "uuid": "a0b40dd8-6eae-4930-85a1-7c62a9a396a1", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false }, { - "uuid": "cbfa294a-eade-4325-99d5-c70e75edf97c", + "uuid": "9ce531d1-2223-4630-b4b3-f6bd417ed31e", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true - }, + } + ] + }, + { + "uuid": "f6ac4716-0811-4b95-ba1d-f8517cd93cd6", + "siteRegistry": true, + "dateReceived": "2023-08-14", + "dateCompleted": "2023-08-17", + "dateEntered": "2018-10-16", + "dateRegistrar": "2018-05-02", + "dateLocalAuthorityReceived": "2016-07-29", + "summary": "Ab facilis amet minus magnam autem.\nRepellat dolor quibusdam odit.\nIllo perferendis voluptas mollitia architecto laudantium.", + "informationUsed": "Ut ducimus hic omnis at.\nIpsam architecto non.\nAdipisci nostrum nobis quo quia maxime non mollitia.\nNumquam ipsam nobis quis at.", + "pastOrPresentOrders": "Nihil iusto praesentium ut.", + "commercialAndIndustrialPurposes": [ { - "uuid": "6922c3b5-9091-4967-9a50-36b6727244ee", + "uuid": "cfcc5952-7f72-45be-a629-dd212b70da3b", "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { - "uuid": "dcc32d7f-d37b-4324-8de5-e3bc147739fc", + "uuid": "1ecc16fb-aa54-47f0-bd51-9040b115ca33", "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false } ] @@ -6946,94 +8075,115 @@ ], "activityLog": [ { - "uuid": "e9f248fc-aeb4-48bc-883b-db44268def33", + "uuid": "ba8c5beb-4446-43eb-bc7b-f2268b5253d1", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "BREITENBERG QUEENIE", - "timestamp": "2015-03-05" + "user": "LUEILWITZ MARIE", + "timestamp": "2014-11-20" + }, + { + "uuid": "c9c6373d-239a-4795-991c-9e53b189e4a0", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "MORAR ELWIN", + "timestamp": "2017-10-24" }, { - "uuid": "fb9e6ef9-0d1c-4c84-b466-b0c5204067db", + "uuid": "b294439f-9de5-4f7b-9d59-bb508d874e13", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "GUTKOWSKI MAXIMUS", - "timestamp": "2016-02-19" + "user": "WILLMS ERIC", + "timestamp": "2021-12-14" }, { - "uuid": "5df4ae11-64b5-4b5c-ae88-fe43c213fa3e", + "uuid": "f033ce19-c793-4c33-97d7-fb7b8c2bd3c7", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "BAILEY LORENZA", - "timestamp": "2020-11-14" + "user": "LESCH EINO", + "timestamp": "2022-06-13" }, { - "uuid": "2fbf21cc-010b-4cad-b24f-f9577c321216", + "uuid": "1ab78307-f7d3-46a8-bad2-7b9fec6690a4", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "DECKOW HILLARY", - "timestamp": "2020-04-12" + "user": "LEUSCHKE ALIYA", + "timestamp": "2022-01-06" + }, + { + "uuid": "d5de3aa2-2d45-4f32-9b56-f5683fcf8ef4", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "HAHN IVORY", + "timestamp": "2013-12-11" + }, + { + "uuid": "51f4b336-466f-48ad-9e67-855bb8b2e01e", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "SPENCER ANTONIETTA", + "timestamp": "2018-07-28" }, { - "uuid": "ea73bdf9-4f5a-45dd-91be-e1ef7f5ac8df", + "uuid": "d6f30c42-c458-49e3-9269-05f668be373a", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "HINTZ ASHTON", - "timestamp": "2014-10-04" + "user": "HEANEY EDYTHE", + "timestamp": "2017-08-31" } ], "associatedSites": [ { - "uuid": "d98aa318-999a-4a70-b36e-286b343d891c", - "dateNoted": "2013-12-12", + "uuid": "8b90cc9b-c39d-4a54-a6f1-13b483ad9988", + "dateNoted": "2014-04-14", "notes": "", - "parcelID": "17655", - "siteID": "19897", - "siteRegistry": false + "parcelID": "18449", + "siteID": "15776", + "siteRegistry": true }, { - "uuid": "73f06d0f-4b87-4ab3-96a9-4caf380a4ef5", - "dateNoted": "2021-01-26", + "uuid": "8da3e75f-60d8-40a9-9ce8-0c893b73d609", + "dateNoted": "2022-03-13", "notes": "", - "parcelID": "18931", - "siteID": "20699", - "siteRegistry": true + "parcelID": "15264", + "siteID": "18797", + "siteRegistry": false }, { - "uuid": "76bb6874-647d-4cab-99d1-5d4b41ef1746", - "dateNoted": "2021-06-22", + "uuid": "94718b08-9b0a-4cbb-9255-df91bf18222a", + "dateNoted": "2016-05-03", "notes": "", - "parcelID": "15786", - "siteID": "17920", + "parcelID": "20315", + "siteID": "16834", "siteRegistry": true } ] }, { - "uuid": "418726ac-017a-4cd2-bbb6-ab0bd749de83", - "siteID": 18504, - "address": "156 Wintheiser Turnpike", - "latitude": 56.8343, - "longitude": -129.159, - "lastUpdated": "2018-11-27", - "city": "Fort Aiden", - "region": "Kootenay", - "victoriaFile": "26250-20/6259", + "uuid": "16836029-54a6-48a2-a255-0e26a56f346e", + "siteID": 20206, + "address": "69723 Carroll Parks", + "latitude": 57.8249, + "longitude": -121.9701, + "lastUpdated": "2017-08-29", + "city": "Littleton", + "region": "Thompson-Okanagan", + "victoriaFile": "26250-20/5667", "regionalFile": "N/A", "parcelIDs": [ - 2620905, - 3276629, - 2461501, - 1816631, - 3210000 + 3790630, + 874552, + 9892853, + 7910701, + 4328946 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "4357edbc-1b7c-4e81-ac6f-42fe59ad356a", - "createdAt": "2021-05-16", - "completed": "2018-09-15", - "initiated": "2021-03-25", - "ministryContact": "TILLMAN DEWAYNE", + "uuid": "c64aff68-638f-4921-8f4d-1c4281745696", + "createdAt": "2023-08-02", + "completed": "2022-06-24", + "initiated": "2014-02-05", + "ministryContact": "ONDRICKA LAURIANNE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -7042,32 +8192,38 @@ ], "notationParticipants": [ { - "uuid": "a29b9eed-3fb5-4e01-8a75-80fb014899fb", + "uuid": "298b13c2-ff04-4ada-9d48-db684f3dff63", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true }, { - "uuid": "7d07f3db-9a58-4f05-98a2-c2962c0889ca", + "uuid": "5b94c2ba-6e37-46cb-a4fc-e4c0aea99cde", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true }, { - "uuid": "7c69bd6a-aab5-48ab-82ce-9a99d3a5d230", + "uuid": "68957d00-1a37-4f7b-96b9-1f2b065391f9", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "d6599426-2902-4334-a150-0bcd5befe54a", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false } ], "siteRegistry": false }, { - "uuid": "88ac32c0-a8c8-474a-894e-4aa59ac40570", - "createdAt": "2018-05-01", - "completed": "2016-01-02", - "initiated": "2014-04-23", - "ministryContact": "WIEGAND KRYSTINA", + "uuid": "9ea5a2b1-3049-45e9-9f7d-8f61bdd1e1ca", + "createdAt": "2020-07-04", + "completed": "2014-02-10", + "initiated": "2023-09-24", + "ministryContact": "BRAKUS MORTIMER", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -7076,72 +8232,44 @@ ], "notationParticipants": [ { - "uuid": "2a3133dd-99b0-407b-a234-2454e12e2d90", + "uuid": "65ecbed0-5b7e-4bc5-ad49-51cb08190d48", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "uuid": "f74fa66d-cce9-454a-b35e-7c408c91f37e", - "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "dcefcafa-724f-4130-a8c6-17a876c0af07", - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "8233b469-5238-4722-9a71-d6cc8e9d41f5", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "53804f61-1ded-4dec-969b-f13e3bd82521", + "uuid": "fdbb5090-310a-40c4-bd95-dd5e409dc07b", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "b4223b19-838a-4ae9-b251-c4d9544d5b26", + "uuid": "0b2e2515-3f8c-4859-a31f-4f1efe5f0dd0", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true - } - ], - "siteRegistry": false - }, - { - "uuid": "e788db50-3762-44c2-be8f-a4475d6ea86d", - "createdAt": "2015-11-20", - "completed": "2017-08-30", - "initiated": "2014-02-25", - "ministryContact": "WILLMS MIA", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "uuid": "5f17f878-f8a3-4ab0-8b5f-fb6fefa1ea52", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false }, { - "uuid": "11c8fae2-6711-4760-a60c-c8250720ffc4", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "uuid": "14c3cdd0-7502-477b-bf46-4ad6c45e25ed", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "0b79c28b-90a9-4646-b4d0-7f3329bfb7b9", - "createdAt": "2017-01-04", - "completed": "2017-10-24", - "initiated": "2022-08-28", - "ministryContact": "LEDNER TRENT", + "uuid": "175d4321-ccb4-4687-b18b-a8728955e9f3", + "createdAt": "2020-04-21", + "completed": "2016-11-07", + "initiated": "2014-06-21", + "ministryContact": "PFANNERSTILL KENDALL", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -7150,56 +8278,33 @@ ], "notationParticipants": [ { - "uuid": "758ae79d-e8b5-4823-9fa3-1f90eb4f2649", + "uuid": "9f4d55b8-29a1-41e2-822c-663caea72946", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false }, { - "uuid": "5925f371-be76-4d22-b45b-d2a50913577b", + "uuid": "87a38166-e430-4042-856a-d9ff701b0b3f", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "uuid": "c2242941-7b8b-41ed-8def-d4e75a235f42", - "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "uuid": "161ea38f-3ed1-49d1-8537-41cf71a71289", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "d25f6a7f-f83f-4394-94ed-66beaeebf9b7", + "uuid": "cbeb2925-70b7-4c6f-bc99-8685e599943b", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true } ], "participants": [ { - "uuid": "12fd7bed-951b-46cd-9f97-e6a98ea91293", - "name": "SHELL CANADA PRODUCTS", - "endDate": "2022-07-23", - "startDate": "2017-04-10", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": false - }, - { - "uuid": "320bfcf9-50f0-49ea-8ee9-5c7abc6999d6", + "uuid": "e2f8cf98-5ccf-4006-82d8-66e7b81d1849", "name": "AMET, DOLOR SIT", - "endDate": "2014-01-30", - "startDate": "2015-05-31", + "endDate": "2019-01-06", + "startDate": "2015-02-11", "notes": "", "roles": [ "ORGANIZATION" @@ -7207,107 +8312,119 @@ "siteRegistry": false }, { - "uuid": "18aea9a1-b78b-446c-98f4-a12dcc9bee46", - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2015-09-12", - "startDate": "2020-11-29", + "uuid": "f3551a35-7da9-4db5-a3f9-470e88733aef", + "name": "IPSUM", + "endDate": "2016-09-04", + "startDate": "2023-04-08", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": false }, { - "uuid": "1f8f291a-eeee-4991-903d-c9d62bb505ca", - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2016-06-25", - "startDate": "2020-10-27", + "uuid": "ad0ecbe7-8805-48ff-97e3-8f5e433a1b8c", + "name": "IPSUM", + "endDate": "2013-12-16", + "startDate": "2013-10-21", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": true } ], + "documents": [ + { + "uuid": "391fe618-2e5f-4712-8a09-4b7299fca51f", + "siteRegistry": false, + "documentDate": "2015-08-23", + "receivedDate": "2017-11-28", + "uploadedDate": "2014-06-17", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "759b2ed4-7467-45f5-80ea-8f96c1251ee7", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "c7caf275-481b-48db-8f27-cf07e1acd7e2", + "name": "AMET, DOLOR SIT", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "673d9efd-82c3-4c46-87a0-ce2ebb02f193", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": false, + "role": "AUTHOR" + } + ] + } + ], "suspectLandUses": [ { - "uuid": "126d40b0-bc60-4055-9d81-c811df9777a2", - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-06-05 (described on Site Profile dated 2015-06-05)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "uuid": "381518e6-f9d8-4ec3-8fcc-6aed5b39f3f3", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2017-12-29 (described on Site Profile dated 2017-12-29)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "uuid": "ba15aaea-8f3e-40ca-a84c-8625b2abebd1", + "uuid": "d0958f42-9223-4cab-9660-dde3b00ebf90", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-02-23 (described on Site Profile dated 2019-02-23)", + "notes": "INSERTED FOR SITE PROFILE DATED 2017-06-16 (described on Site Profile dated 2017-06-16)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "uuid": "7bf905b5-a4e3-4c01-99b0-289bcbcb1716", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2016-05-27 (described on Site Profile dated 2016-05-27)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], "parcelDescriptions": [ { - "uuid": "7aa5fb41-8aeb-4430-924a-e74dc3d870ff", + "uuid": "5e6666f8-af00-4ace-9105-fe8d60562de9", "siteRegistry": false, - "dateNoted": "2014-03-23", - "parcelID": "15263", - "crownLandUsePIN": "18163", - "crownLandFileNumber": "16104", - "landDescription": "LOT 1 OF LOT 4 BLOCK 3 DISTRICT LOT 4 PLAN 3519" - }, - { - "uuid": "9e9acb84-dfd1-47d9-9391-99ac0dcd6b04", - "siteRegistry": true, - "dateNoted": "2019-12-25", - "parcelID": "19908", - "crownLandUsePIN": "17107", - "crownLandFileNumber": "18250", - "landDescription": "LOT 2 OF LOT 5 BLOCK 4 DISTRICT LOT 5 PLAN 8925" + "dateNoted": "2022-02-10", + "parcelID": "16818", + "crownLandUsePIN": "15666", + "crownLandFileNumber": "16440", + "landDescription": "LOT 2 OF LOT 4 BLOCK 4 DISTRICT LOT 5 PLAN 7531" }, { - "uuid": "64a2e918-9b6e-48b6-ada7-9820f712f840", + "uuid": "c80b662b-fba8-4d17-a5f3-8f3c27118d11", "siteRegistry": false, - "dateNoted": "2015-03-28", - "parcelID": "15343", - "crownLandUsePIN": "18080", - "crownLandFileNumber": "17869", - "landDescription": "LOT 5 OF LOT 3 BLOCK 5 DISTRICT LOT 3 PLAN 6844" - }, - { - "uuid": "b5c52082-d2f8-4337-905b-078aff90b9d3", - "siteRegistry": true, - "dateNoted": "2014-01-17", - "parcelID": "17905", - "crownLandUsePIN": "18231", - "crownLandFileNumber": "19501", - "landDescription": "LOT 3 OF LOT 5 BLOCK 4 DISTRICT LOT 3 PLAN 8058" + "dateNoted": "2017-07-18", + "parcelID": "18462", + "crownLandUsePIN": "19194", + "crownLandFileNumber": "17041", + "landDescription": "LOT 4 OF LOT 5 BLOCK 2 DISTRICT LOT 1 PLAN 9774" } ], "siteDisclosures": [ { - "uuid": "35473474-e71e-4d7c-b41f-590a65e3edf9", - "siteRegistry": false, - "dateReceived": "2021-02-22", - "dateCompleted": "2017-04-23", - "dateEntered": "2016-02-06", - "dateRegistrar": "2020-06-08", - "dateLocalAuthorityReceived": "2017-01-30", - "summary": "Ducimus aliquam commodi.\nHarum aut dolor.\nQuaerat ex voluptates delectus vel similique quas praesentium porro accusantium.", - "informationUsed": "Ad rem est natus.\nAut quidem labore velit.\nConsequatur sequi error libero officia animi.\nAdipisci id amet recusandae tempora rem nesciunt laboriosam repellendus corporis.\nEaque rerum officiis consequatur sunt commodi quisquam necessitatibus distinctio.", - "pastOrPresentOrders": "Totam magni animi iusto magnam vel deserunt in.\nQuidem iure reiciendis excepturi optio porro occaecati atque.", + "uuid": "5dc1c770-ce4d-48bf-a652-3a13e3a36bae", + "siteRegistry": true, + "dateReceived": "2016-06-02", + "dateCompleted": "2014-08-23", + "dateEntered": "2015-04-09", + "dateRegistrar": "2015-05-05", + "dateLocalAuthorityReceived": "2019-07-25", + "summary": "Quos recusandae quos exercitationem sequi facilis expedita.\nQuibusdam delectus nemo magnam natus ipsum eveniet quo.\nEaque eius assumenda veritatis.", + "informationUsed": "Minus velit accusamus labore harum nobis necessitatibus autem reiciendis.\nPlaceat aperiam porro accusantium rerum quasi repellendus.\nEnim deserunt harum nemo.", + "pastOrPresentOrders": "Repudiandae maiores voluptatum voluptatem dignissimos non iusto animi aperiam deleniti.", "commercialAndIndustrialPurposes": [ { - "uuid": "2f39aea9-4d75-40a2-babf-f30b56fc4f64", + "uuid": "cca7da01-abf2-40a1-b472-36e9b86308c9", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false }, { - "uuid": "b78434a9-861c-46b9-ab0c-be6da833c52b", - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true - }, - { - "uuid": "4011d75c-6e6a-47d2-9bf0-e11745127a07", + "uuid": "0ae75b8c-32fe-4d98-8c8f-f296857a5e14", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true @@ -7315,37 +8432,25 @@ ] }, { - "uuid": "01ca98cd-7476-46f8-8ead-a05abe257a3f", - "siteRegistry": true, - "dateReceived": "2014-05-22", - "dateCompleted": "2017-02-09", - "dateEntered": "2017-04-01", - "dateRegistrar": "2018-10-02", - "dateLocalAuthorityReceived": "2022-02-12", - "summary": "Eius culpa totam culpa laudantium dolor ut reprehenderit iure.\nQuo maxime iste.\nNecessitatibus et hic consectetur.", - "informationUsed": "Ducimus enim aut quo delectus nisi molestias voluptate earum.\nDolorem earum magnam totam aut nam cupiditate odio tempore molestiae.\nTotam dolore blanditiis.", - "pastOrPresentOrders": "Corrupti accusantium reiciendis non.\nVoluptatibus odit dolore.", + "uuid": "8438bb1f-cf00-4aa0-89ac-99bd2fc88d8e", + "siteRegistry": false, + "dateReceived": "2018-05-30", + "dateCompleted": "2017-02-02", + "dateEntered": "2018-08-07", + "dateRegistrar": "2014-11-28", + "dateLocalAuthorityReceived": "2017-05-03", + "summary": "Provident reprehenderit voluptatibus error itaque iusto perspiciatis.\nQuos reprehenderit aperiam.", + "informationUsed": "Facere dolores quos placeat eum accusamus.\nTotam accusantium ex aut.\nAt suscipit deserunt facere magni placeat inventore quasi.", + "pastOrPresentOrders": "Illum eos nam velit deserunt blanditiis delectus.\nOdit sint ipsam molestias ipsam praesentium debitis recusandae dolorem natus.\nNulla non magnam.", "commercialAndIndustrialPurposes": [ { - "uuid": "e0c76db6-14b5-44ea-a238-9e55d33e1ac5", + "uuid": "3481ebbb-d023-4083-9277-b8558b2f4586", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false }, { - "uuid": "18471869-69a6-47d2-ab9b-8ef4a0297ebf", - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true - }, - { - "uuid": "3ae4efdd-6bb8-4eb0-a2d3-afa757b9f6f5", - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false - }, - { - "uuid": "5e84433f-9b56-4deb-884b-c2fe94f3ca21", + "uuid": "9d1b15e3-dd3e-4da8-94d3-fa5383d14889", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true @@ -7355,92 +8460,107 @@ ], "activityLog": [ { - "uuid": "82bd2e40-fe7b-442c-999e-eea1a167ea3d", + "uuid": "833c1d74-9efa-455f-8eca-f7e65491a0fb", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "ROHAN ELMER", - "timestamp": "2018-09-08" + "user": "SMITH ESTEVAN", + "timestamp": "2014-05-08" }, { - "uuid": "5729880a-269f-4f58-8ddb-2e72db61b939", + "uuid": "2993ba62-fc5a-4c06-94e5-8a621dc79931", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "KRIS EMILY", - "timestamp": "2023-09-08" + "user": "LUBOWITZ HADLEY", + "timestamp": "2021-01-04" }, { - "uuid": "23c19098-a36c-4077-b8b1-f17a63a74c08", + "uuid": "a54b09db-31d7-4541-bc2e-cf19e3e0b755", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "JASKOLSKI MAURICE", - "timestamp": "2021-12-23" + "user": "YUNDT JAZMYN", + "timestamp": "2016-03-07" + }, + { + "uuid": "533c79a0-50da-4fdf-9fbb-830f1c2853d2", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "WUCKERT PETRA", + "timestamp": "2021-01-03" }, { - "uuid": "1d324705-5d8e-40f1-8b1d-5101b4d1db36", + "uuid": "2226141f-9f18-4071-9c19-94952da8a7c3", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "HUEL MCKENZIE", - "timestamp": "2017-02-03" + "user": "WINDLER DARRYL", + "timestamp": "2020-11-10" }, { - "uuid": "130af291-a8c4-4c31-ad6f-0bda5eb51e66", + "uuid": "3fe4fa2e-3377-424e-95cd-4e9410a463b7", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "ABERNATHY DEE", - "timestamp": "2014-12-25" + "user": "FAY MEGANE", + "timestamp": "2017-10-03" }, { - "uuid": "2648dd5a-380d-40ae-b323-3443015a1f78", - "siteRegistry": false, + "uuid": "753b2e20-0663-4c03-8347-8866e1e1dca6", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "RATH ALI", - "timestamp": "2016-02-09" + "user": "CORWIN DOMENICO", + "timestamp": "2019-08-24" }, { - "uuid": "88745ce2-3428-4379-a670-36f499cae51b", + "uuid": "b48df771-7221-4b07-91b6-38ca2e4fc66f", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "FADEL JOHNNY", - "timestamp": "2013-12-22" + "user": "HALVORSON DESSIE", + "timestamp": "2022-11-22" } ], "associatedSites": [ { - "uuid": "2be45b9e-9add-4c06-9c9f-daead184779a", - "dateNoted": "2019-10-19", + "uuid": "316330b1-4b44-43c7-a2a6-9a6910b332f4", + "dateNoted": "2018-06-23", "notes": "", - "parcelID": "18057", - "siteID": "15396", + "parcelID": "16183", + "siteID": "20039", "siteRegistry": false + }, + { + "uuid": "74719de4-6980-47ed-94d8-da1133f8fe30", + "dateNoted": "2015-01-05", + "notes": "", + "parcelID": "16912", + "siteID": "16457", + "siteRegistry": true } ] }, { - "uuid": "8255d046-b0f4-4e54-a8e8-5402864fd0b7", - "siteID": 18833, - "address": "6816 Barrows Underpass", - "latitude": 53.6733, - "longitude": -138.2908, - "lastUpdated": "2021-03-23", - "city": "Akron", - "region": "Mainland/Southwest", - "victoriaFile": "26250-20/12376", + "uuid": "7bc64f73-3684-4967-9e91-60b19fa0533f", + "siteID": 20484, + "address": "55724 Conn Mountains", + "latitude": 54.1862, + "longitude": -119.0729, + "lastUpdated": "2019-07-23", + "city": "North Shadhaven", + "region": "Thompson-Okanagan", + "victoriaFile": "26250-20/1819", "regionalFile": "N/A", "parcelIDs": [ - 1907899, - 7511308, - 3727636, - 4377263, - 9666098 + 2772411, + 2047181, + 6768213, + 8750563, + 2950770 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "42c48e4b-9190-4629-821c-81df428c2f2d", - "createdAt": "2014-11-03", - "completed": "2016-04-10", - "initiated": "2022-11-02", - "ministryContact": "DANIEL-KILBACK MYRTICE", + "uuid": "12edd4f8-be8a-453a-a94e-236e34172762", + "createdAt": "2021-11-09", + "completed": "2016-01-16", + "initiated": "2019-09-23", + "ministryContact": "MURPHY ONIE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -7449,26 +8569,38 @@ ], "notationParticipants": [ { - "uuid": "80d9168f-7bbd-4105-b75f-a8d016e399ec", - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "b285e96f-fef5-4b84-84c9-0362e1066025", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false }, { - "uuid": "175d0152-8aba-4956-bcde-08c5076bceae", - "name": "SHELL CANADA PRODUCTS", + "uuid": "8070c673-9025-439a-990d-2dbbae3237f2", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "uuid": "48008472-7326-466a-b708-510a09383260", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "2a10caa5-4bda-43c9-8b3f-56f76a9b2dc2", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "ae3ee2bc-a6c5-414d-8463-7a59d50c1282", - "createdAt": "2023-07-12", - "completed": "2018-04-26", - "initiated": "2016-06-11", - "ministryContact": "RICE EUGENE", + "uuid": "e35decd4-f490-4a21-9682-5dc9dec6815a", + "createdAt": "2017-02-11", + "completed": "2022-06-12", + "initiated": "2014-12-03", + "ministryContact": "JACOBSON LACEY", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -7477,38 +8609,38 @@ ], "notationParticipants": [ { - "uuid": "46ddcec3-6ea2-4c97-9262-139d1e9af6d9", - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "45a21a6d-27e0-4d08-902c-e898fc6bb98d", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "2f363d8b-ab2f-4838-8071-32fe0d9b6dbf", + "uuid": "bb96db15-fd8e-4970-b396-623352065de7", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "b6935479-826f-4648-9236-26543725256c", - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "9d06e05f-7952-4d3a-be34-a72f200049c6", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false }, { - "uuid": "8555a799-01d9-44e7-9d97-d551421d7c11", + "uuid": "80c01048-cd0f-4f58-b557-68fbe037a701", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "1cd95bcf-4954-4479-8e45-8f236350ddc3", - "createdAt": "2023-01-04", - "completed": "2017-04-01", - "initiated": "2022-09-28", - "ministryContact": "MURPHY ANABEL", + "uuid": "a4611e3b-a2ed-444f-afe7-c87872cd2a3c", + "createdAt": "2019-10-22", + "completed": "2022-05-26", + "initiated": "2020-05-13", + "ministryContact": "OLSON JONATHON", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -7517,27 +8649,67 @@ ], "notationParticipants": [ { - "uuid": "6f294285-eeeb-4607-8e6f-1ffc9de9a978", - "name": "SHELL CANADA PRODUCTS", + "uuid": "768f423e-f86c-4330-90c7-b2e724b603ec", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "78009d68-a6ee-494c-bb5d-3c73d51d299d", + "uuid": "6b374921-0d8f-4a58-8e56-c38addacefd9", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true } ], "siteRegistry": true + }, + { + "uuid": "52974e42-8737-4ee5-8abf-4871df408b86", + "createdAt": "2016-08-08", + "completed": "2017-08-24", + "initiated": "2015-06-13", + "ministryContact": "BEIER MAKENZIE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "uuid": "d308cf49-042e-455c-a42a-db3d81d4525a", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "c488c2f2-cea8-4317-a8f8-24d6b4649846", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "6fa3413c-8a49-4064-a0de-df83f19775b1", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "e3dfb268-e539-46fb-86c7-f25b8970e634", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false } ], "participants": [ { - "uuid": "3d011b1d-8d42-4b3e-8abf-4766595b3e74", - "name": "AMET, DOLOR SIT", - "endDate": "2016-06-05", - "startDate": "2022-07-19", + "uuid": "5020f2d4-c694-4f6d-8436-8f65ca62ff23", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2020-04-07", + "startDate": "2019-04-17", "notes": "", "roles": [ "ORGANIZATION" @@ -7545,121 +8717,250 @@ "siteRegistry": true }, { - "uuid": "3003ab44-00e7-4c1b-bc53-57fae15a0c48", - "name": "SHELL CANADA PRODUCTS", - "endDate": "2019-12-20", - "startDate": "2013-12-07", + "uuid": "f2908549-dd55-489c-949c-325423394ef1", + "name": "AMET, DOLOR SIT", + "endDate": "2022-10-03", + "startDate": "2018-05-23", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "d4b3b7bd-9446-430a-aa6e-596b0b304aff", - "name": "IPSUM", - "endDate": "2018-11-25", - "startDate": "2014-12-13", + "uuid": "262928fd-d622-4040-be49-716479856d6b", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2017-09-10", + "startDate": "2021-01-14", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": false + }, + { + "uuid": "cee53e21-adfd-4eaa-b978-9d8502b36dec", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2020-06-13", + "startDate": "2018-10-21", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true } ], - "suspectLandUses": [ + "documents": [ { - "uuid": "d5a0708b-4706-415e-9f60-58752998e657", + "uuid": "8728e1f4-06c4-45ed-ae3a-0f32081ace5d", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-11-29 (described on Site Profile dated 2019-11-29)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "documentDate": "2021-12-10", + "receivedDate": "2019-01-10", + "uploadedDate": "2016-01-11", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "a4503593-05f4-4f8a-8a54-87972e0d17f9", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "bb52d163-baab-4388-86a1-c1bc40c0c2a2", + "name": "AMET, DOLOR SIT", + "siteRegistry": false, + "role": "AUTHOR" + } + ] }, { - "uuid": "b0f01e2c-8ce5-4ddc-b6d4-88c43b3a3a5e", + "uuid": "8cf8b30e-0ccf-4c04-9a43-f3e93a39eac7", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2020-08-15 (described on Site Profile dated 2020-08-15)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "documentDate": "2016-07-10", + "receivedDate": "2014-08-13", + "uploadedDate": "2017-02-25", + "title": "Preliminary Site Investigation, Detailed Site Investigation and Remedial Plan for the Management Area adjacent to the Shell Site at 1503 West 41st Ave", + "participants": [ + { + "uuid": "82aa6fce-5dc4-48c3-bebf-7620c3fbb3dc", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "095b5c8f-03ef-4804-8493-1f56df33426e", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "b0184cf6-d1b0-491d-814c-ff9cb739594a", + "name": "IPSUM", + "siteRegistry": false, + "role": "AUTHOR" + } + ] }, { - "uuid": "3e09c590-e99c-4f19-96b1-0b0ed5364394", + "uuid": "4405efd4-d2ec-4cd3-9331-cc2a3dc1148a", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-01-11 (described on Site Profile dated 2021-01-11)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "documentDate": "2016-03-29", + "receivedDate": "2020-07-18", + "uploadedDate": "2022-05-15", + "title": "Preliminary Site Investigation, Detailed Site Investigation and Remedial Plan for the Management Area adjacent to the Shell Site at 1503 West 41st Ave", + "participants": [ + { + "uuid": "25e8bfd4-cab1-4b21-9d90-98774f654164", + "name": "AMET, DOLOR SIT", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "3625b756-77b8-44e5-bf6e-428e4602ad0e", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": true, + "role": "AUTHOR" + } + ] }, { - "uuid": "4e1f9c25-eebe-43fd-837f-127ee30e6a17", - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2023-02-04 (described on Site Profile dated 2023-02-04)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "uuid": "b90425db-6e90-4b31-afd5-84b86db129f3", + "siteRegistry": false, + "documentDate": "2022-05-24", + "receivedDate": "2015-12-09", + "uploadedDate": "2014-08-24", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "3fbfa873-1d5b-4c93-820e-6a37c2d06156", + "name": "IPSUM", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "86b52978-78ca-4833-b3b3-fd78952cf30f", + "name": "IPSUM", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "dd5ba6d8-48b5-48bc-ace2-72ae448f95c5", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": true, + "role": "AUTHOR" + } + ] }, { - "uuid": "dff4951f-1aca-4854-a142-b7c5bc7c46e2", - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-03-14 (described on Site Profile dated 2017-03-14)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "uuid": "80b5a2f5-9cb3-4a38-85ba-424778044463", + "siteRegistry": false, + "documentDate": "2019-12-04", + "receivedDate": "2017-06-05", + "uploadedDate": "2014-11-21", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "52c9e9a5-45f6-436b-845f-848476205212", + "name": "AMET, DOLOR SIT", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "731d93e0-9325-4ce0-a23f-d9b6ad938798", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "fde6b829-1300-4ab4-a53d-5f629c7748b6", + "name": "AMET, DOLOR SIT", + "siteRegistry": true, + "role": "AUTHOR" + } + ] } ], - "parcelDescriptions": [ + "suspectLandUses": [ { - "uuid": "da8dc81f-132c-4c17-8b8e-b0010d246822", - "siteRegistry": false, - "dateNoted": "2016-04-04", - "parcelID": "16186", - "crownLandUsePIN": "17218", - "crownLandFileNumber": "18308", - "landDescription": "LOT 1 OF LOT 2 BLOCK 1 DISTRICT LOT 5 PLAN 5468" + "uuid": "0d4b6181-de05-43f7-92a2-498d95b2f223", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2015-11-18 (described on Site Profile dated 2015-11-18)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "uuid": "795c1124-88a6-42af-84ed-043e50d387c8", + "uuid": "d664135f-8564-4721-a43c-413bdecc2285", "siteRegistry": true, - "dateNoted": "2020-05-04", - "parcelID": "18803", - "crownLandUsePIN": "17654", - "crownLandFileNumber": "20616", - "landDescription": "LOT 5 OF LOT 2 BLOCK 2 DISTRICT LOT 5 PLAN 3326" + "notes": "INSERTED FOR SITE PROFILE DATED 2019-07-17 (described on Site Profile dated 2019-07-17)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "uuid": "fffff2e5-0a80-4e07-8cbc-c824486fdfc8", + "uuid": "03fe12e5-a64c-4af4-8eaa-7df53c909e02", "siteRegistry": true, - "dateNoted": "2014-02-09", - "parcelID": "17624", - "crownLandUsePIN": "18345", - "crownLandFileNumber": "16028", - "landDescription": "LOT 2 OF LOT 2 BLOCK 2 DISTRICT LOT 2 PLAN 3138" + "notes": "INSERTED FOR SITE PROFILE DATED 2014-11-17 (described on Site Profile dated 2014-11-17)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "uuid": "4af47603-a564-49da-a180-ec5d95220888", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2020-12-26 (described on Site Profile dated 2020-12-26)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + } + ], + "parcelDescriptions": [ + { + "uuid": "7684b53e-fede-49ed-9cdd-0c0baadbe8be", + "siteRegistry": false, + "dateNoted": "2020-11-01", + "parcelID": "19046", + "crownLandUsePIN": "20289", + "crownLandFileNumber": "16442", + "landDescription": "LOT 2 OF LOT 5 BLOCK 4 DISTRICT LOT 2 PLAN 9483" }, { - "uuid": "ffa394d0-f860-44c2-938b-f8e90b39368c", + "uuid": "13453a81-c362-4c1f-8048-4e850a07bca5", "siteRegistry": false, - "dateNoted": "2016-01-31", - "parcelID": "16824", - "crownLandUsePIN": "19450", - "crownLandFileNumber": "16801", - "landDescription": "LOT 4 OF LOT 4 BLOCK 5 DISTRICT LOT 3 PLAN 5876" + "dateNoted": "2019-01-31", + "parcelID": "17952", + "crownLandUsePIN": "20046", + "crownLandFileNumber": "19221", + "landDescription": "LOT 5 OF LOT 5 BLOCK 5 DISTRICT LOT 2 PLAN 4733" } ], "siteDisclosures": [ { - "uuid": "626117d7-8a36-4a73-9289-206ec28267ff", + "uuid": "79b1f1b8-5627-482d-95c5-121312f6b373", "siteRegistry": true, - "dateReceived": "2021-09-03", - "dateCompleted": "2022-07-07", - "dateEntered": "2018-05-19", - "dateRegistrar": "2020-03-31", - "dateLocalAuthorityReceived": "2021-07-05", - "summary": "Officia sint ullam repudiandae.\nSoluta deleniti eligendi aliquam.\nRepellat esse tempore facere consectetur soluta libero aliquid magni quo.", - "informationUsed": "Pariatur accusamus illum.\nQuas at praesentium nostrum iure.\nInventore nemo ut.", - "pastOrPresentOrders": "Accusamus quos vero.\nNumquam est iste ullam saepe illo.", + "dateReceived": "2021-05-10", + "dateCompleted": "2023-04-09", + "dateEntered": "2020-12-12", + "dateRegistrar": "2021-04-30", + "dateLocalAuthorityReceived": "2014-07-07", + "summary": "Et magnam possimus quis autem iure id.\nConsequatur iusto voluptas velit dicta tempora esse voluptatibus doloribus.", + "informationUsed": "Tempore voluptates officiis alias eius expedita natus illo.\nQuaerat quasi possimus quasi nemo quae.\nCorrupti dolore at ipsum.\nIn id adipisci omnis fugiat ipsum at.\nAb facilis amet iure.", + "pastOrPresentOrders": "Quo nobis quod ratione voluptate doloribus.\nCupiditate laudantium tempora nobis.", "commercialAndIndustrialPurposes": [ { - "uuid": "2abbee61-1df1-40c7-b648-0a741c884016", + "uuid": "95398263-cde5-4e99-9e8f-71e1fbcf792d", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "uuid": "d54790ff-110b-437f-b469-8bfee3437344", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false }, { - "uuid": "f128faee-cc38-42ac-854f-a0246dbc786f", + "uuid": "23f8f990-7417-4c55-be9d-dba14f32b88d", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "uuid": "1292562d-47de-42a6-9b3e-c918d4633c38", "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false } ] @@ -7667,106 +8968,85 @@ ], "activityLog": [ { - "uuid": "08de02e2-62e4-4aee-ae44-d5b15dbc3953", - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "PFEFFER ADRIANNA", - "timestamp": "2017-11-09" - }, - { - "uuid": "195bdbcb-704a-4852-a519-dd34bcebc6c8", - "siteRegistry": false, + "uuid": "aa3907d9-ce4c-4f8b-89a5-e608af4ba8d9", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "JERDE OWEN", - "timestamp": "2014-12-08" + "user": "KUHLMAN ESTEFANIA", + "timestamp": "2014-02-07" }, { - "uuid": "7c71678c-e740-42dc-9d79-3d5a64283513", - "siteRegistry": false, + "uuid": "e6756803-a2c0-4921-b607-69aee6fb5b81", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "SPORER HYMAN", - "timestamp": "2019-01-21" + "user": "LEBSACK DOMENICK", + "timestamp": "2016-05-24" }, { - "uuid": "df188e5b-ba0c-4f93-8451-99bd23c030fe", + "uuid": "91fe2412-76c9-4859-8ef3-528eb88bb3fc", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "HOMENICK JOHNATHAN", - "timestamp": "2021-07-09" + "user": "SIPES RYLEIGH", + "timestamp": "2018-02-18" }, { - "uuid": "851f20df-428a-406c-b56e-d40ed60a0538", + "uuid": "1851dc58-80b7-4726-9141-095c35cb67d4", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "ULLRICH OVA", - "timestamp": "2016-05-19" + "user": "LANGOSH AUGUST", + "timestamp": "2019-03-03" }, { - "uuid": "3e71fbd2-6603-4ac1-a0fa-61feec711c8b", + "uuid": "eec198a0-9602-48f2-949d-66214b9ac5d0", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "SHANAHAN CHANEL", - "timestamp": "2017-12-05" - }, - { - "uuid": "c5285ecf-8998-46c1-b3ee-d0e7d428c667", - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "WEISSNAT JUSTINA", - "timestamp": "2018-07-16" + "user": "WILKINSON CATHARINE", + "timestamp": "2014-07-30" }, { - "uuid": "b895ee81-28aa-4d72-b547-314e1c629ccf", + "uuid": "2112599f-6376-4f07-8f1e-07f7617db226", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "ABERNATHY DARIO", - "timestamp": "2017-04-19" - }, - { - "uuid": "b7a05c4c-8453-4eaf-ad43-08eeb2f66104", - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "CHRISTIANSEN BRANSON", - "timestamp": "2015-04-22" + "user": "HOMENICK ALTHEA", + "timestamp": "2022-01-21" } ], "associatedSites": [ { - "uuid": "02060ea4-d0e6-4561-9437-368bb587c184", - "dateNoted": "2017-01-22", + "uuid": "19e59433-5c41-4b49-91f5-b303d54e5b6f", + "dateNoted": "2018-02-01", "notes": "", - "parcelID": "19796", - "siteID": "15852", - "siteRegistry": false + "parcelID": "17684", + "siteID": "17104", + "siteRegistry": true } ] }, { - "uuid": "cba19489-2da9-4b33-a838-fa7f20358055", - "siteID": 16560, - "address": "40785 Murphy Bridge", - "latitude": 50.2757, - "longitude": -119.1716, - "lastUpdated": "2015-05-04", - "city": "Lake Icieland", - "region": "Thompson-Okanagan", - "victoriaFile": "26250-20/7747", + "uuid": "abcf4f18-dbd1-446a-9d9b-3155d0adfcac", + "siteID": 18858, + "address": "86671 Hammes Islands", + "latitude": 48.8191, + "longitude": -129.4038, + "lastUpdated": "2019-10-03", + "city": "Port Kacie", + "region": " North Coast", + "victoriaFile": "26250-20/2699", "regionalFile": "N/A", "parcelIDs": [ - 5262984, - 6584064, - 1545460, - 2745327, - 3952706 + 4488174, + 6740793, + 4191491, + 9321574, + 4104663 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "2e03d2b4-3356-42c3-baab-75fce03aa79a", - "createdAt": "2017-11-25", - "completed": "2017-02-02", - "initiated": "2023-03-03", - "ministryContact": "PARKER MAYBELL", + "uuid": "a8e82b3e-38e9-4a9c-8bdf-2b4c0cb6e307", + "createdAt": "2021-01-07", + "completed": "2018-05-31", + "initiated": "2015-03-16", + "ministryContact": "COLLINS SHANNA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -7775,26 +9055,66 @@ ], "notationParticipants": [ { - "uuid": "e4d9d917-40ff-45fa-ba2c-cd804d5eac81", + "uuid": "a4588963-ad8b-42be-b710-f898660457e6", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "6e227e17-3608-48a9-810d-6e257a5fcf55", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "16b34169-052c-4d38-9255-c3bffabd790d", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "5bd86c5f-1d39-4521-a48e-a7225ee19f10", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "uuid": "464390f2-6725-4b52-be4e-8b0d0831af03", + "createdAt": "2023-05-02", + "completed": "2017-12-06", + "initiated": "2021-05-21", + "ministryContact": "ROBEL VAN", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "uuid": "1bd1a0b4-75c4-473e-bbad-9ffe8d0db09e", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true }, { - "uuid": "a9a879b3-551e-40ae-8426-9914f504b98b", + "uuid": "ea4e4a40-0241-46bb-a75d-50292f5f95d4", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true } ], "siteRegistry": false }, { - "uuid": "397b40ce-eaca-431c-a68a-94c86d117a2e", - "createdAt": "2014-07-31", - "completed": "2015-05-05", - "initiated": "2022-05-10", - "ministryContact": "HICKLE BRADLY", + "uuid": "19d77e48-c25c-45f2-b4c8-245693d49fc1", + "createdAt": "2018-10-15", + "completed": "2017-04-30", + "initiated": "2017-04-02", + "ministryContact": "JONES ESTHER", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -7803,26 +9123,54 @@ ], "notationParticipants": [ { - "uuid": "e664e233-047a-400a-9969-780f43e9ebaa", + "uuid": "a92af393-d2e3-4c17-bcfe-e84f66d244ce", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "6fb1f8b4-3266-4662-93bf-4fa69acee5a6", + "uuid": "e2a89463-7f66-408d-b2c7-8c908d70b6b2", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "03730bb5-e9ac-47e7-8917-2dd305259033", + "uuid": "07f8462f-5ca4-4e11-a878-b3f4b4ac7ccb", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true }, { - "uuid": "fa524b0a-5c3b-4560-9bd0-a5f804e9ccf2", - "name": "SHELL CANADA PRODUCTS", + "uuid": "3d2b34a6-77cf-4144-9a46-b4ceb4449f92", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "uuid": "fdd5e735-ef81-4cc1-ad80-52c6b23e182e", + "createdAt": "2019-08-18", + "completed": "2017-07-01", + "initiated": "2022-05-23", + "ministryContact": "WISOZK JAEDEN", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "uuid": "c20c4f6a-92cd-4390-a5b4-78d39f41f888", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "uuid": "d0c893db-23d9-4fe3-8a2e-3256dd06e523", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false } @@ -7832,21 +9180,21 @@ ], "participants": [ { - "uuid": "504a3c0a-f7be-4ed0-b9c7-61b032d67d85", - "name": "IPSUM", - "endDate": "2022-03-18", - "startDate": "2015-02-10", + "uuid": "fed492f2-2e8b-413e-8ec0-15e6e10b58f1", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2022-09-20", + "startDate": "2013-11-06", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "7886bd34-7777-4269-9b40-1b4a7e356e56", - "name": "SHELL CANADA PRODUCTS", - "endDate": "2020-05-25", - "startDate": "2020-05-11", + "uuid": "340b4e98-3001-4d25-b5e6-5c9f54e1da07", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2021-08-04", + "startDate": "2016-04-12", "notes": "", "roles": [ "ORGANIZATION" @@ -7854,192 +9202,187 @@ "siteRegistry": false } ], - "suspectLandUses": [ + "documents": [ { - "uuid": "f2b6fe14-813f-4a9a-bd92-5c0ae7239cb4", + "uuid": "46c47ea7-5c25-4959-af01-b7017e96f176", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-01-22 (described on Site Profile dated 2014-01-22)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" - }, + "documentDate": "2016-09-22", + "receivedDate": "2019-01-02", + "uploadedDate": "2019-04-10", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "f7bbf81b-1683-47b0-850b-98e2b1ef72c9", + "name": "IPSUM", + "siteRegistry": false, + "role": "AUTHOR" + } + ] + } + ], + "suspectLandUses": [ { - "uuid": "460aedd4-386b-4188-94f4-f86520621815", - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-02-26 (described on Site Profile dated 2016-02-26)", + "uuid": "f8d4a9c1-21b0-4f0f-8f4a-cd701baa8b35", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2019-02-15 (described on Site Profile dated 2019-02-15)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "uuid": "59ca5b86-d306-43a6-abcf-8df241f563e0", - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-05-24 (described on Site Profile dated 2014-05-24)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "uuid": "97ecd84d-baf0-47c1-925d-3878560319e3", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2017-08-18 (described on Site Profile dated 2017-08-18)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "uuid": "72206ca6-6bb4-4153-8cca-f2ce67e598c1", + "uuid": "66edbe50-7e33-4ebf-b334-83901b7b86ec", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-03-07 (described on Site Profile dated 2014-03-07)", + "notes": "INSERTED FOR SITE PROFILE DATED 2019-12-07 (described on Site Profile dated 2019-12-07)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "uuid": "f7fe13a3-084e-409e-bb95-64966cd42664", + "uuid": "cb31b651-00f5-4226-9fef-1756ee78bbbf", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-10-14 (described on Site Profile dated 2018-10-14)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "notes": "INSERTED FOR SITE PROFILE DATED 2016-08-10 (described on Site Profile dated 2016-08-10)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], "parcelDescriptions": [ { - "uuid": "2acde174-72b2-4cfb-9733-a883c10f90dc", + "uuid": "5439422b-1865-4a39-ac26-c91b0913c342", "siteRegistry": true, - "dateNoted": "2023-05-24", - "parcelID": "20465", - "crownLandUsePIN": "18949", - "crownLandFileNumber": "19129", - "landDescription": "LOT 2 OF LOT 1 BLOCK 2 DISTRICT LOT 3 PLAN 6402" + "dateNoted": "2022-09-26", + "parcelID": "15500", + "crownLandUsePIN": "15948", + "crownLandFileNumber": "16467", + "landDescription": "LOT 1 OF LOT 4 BLOCK 4 DISTRICT LOT 3 PLAN 3713" }, { - "uuid": "f0bad00a-89e6-4157-a7bb-99fd69729d8e", + "uuid": "ddf72de8-2254-48ad-bf7b-4494815fbb07", "siteRegistry": false, - "dateNoted": "2022-11-14", - "parcelID": "15264", - "crownLandUsePIN": "17112", - "crownLandFileNumber": "16514", - "landDescription": "LOT 2 OF LOT 3 BLOCK 4 DISTRICT LOT 1 PLAN 5830" + "dateNoted": "2017-07-11", + "parcelID": "17940", + "crownLandUsePIN": "19893", + "crownLandFileNumber": "20361", + "landDescription": "LOT 1 OF LOT 5 BLOCK 5 DISTRICT LOT 5 PLAN 6780" }, { - "uuid": "a1b33c82-b8a4-43d7-b170-00ea4b90f695", + "uuid": "1f2d36de-7ac6-4dc1-b90a-2ef831576f7c", "siteRegistry": true, - "dateNoted": "2016-11-13", - "parcelID": "15748", - "crownLandUsePIN": "18606", - "crownLandFileNumber": "16818", - "landDescription": "LOT 3 OF LOT 5 BLOCK 3 DISTRICT LOT 4 PLAN 4619" + "dateNoted": "2021-08-31", + "parcelID": "18676", + "crownLandUsePIN": "19165", + "crownLandFileNumber": "17643", + "landDescription": "LOT 4 OF LOT 5 BLOCK 3 DISTRICT LOT 4 PLAN 5539" } ], "siteDisclosures": [ { - "uuid": "ea264da5-a681-4c8d-9e2f-7441d3ad97c3", - "siteRegistry": true, - "dateReceived": "2015-12-05", - "dateCompleted": "2015-03-12", - "dateEntered": "2017-06-23", - "dateRegistrar": "2020-12-30", - "dateLocalAuthorityReceived": "2022-03-14", - "summary": "Eos nam dolorem eligendi vel.", - "informationUsed": "Corrupti assumenda praesentium qui consectetur illum beatae ab quod.\nAb odio quos quaerat.\nFacilis incidunt numquam hic natus.\nIusto iure cum magni.\nQuam et modi sequi harum cumque facere modi.", - "pastOrPresentOrders": "Tempora maiores ab voluptate perferendis alias sequi ex laboriosam maiores.\nEnim laudantium accusamus totam omnis.", + "uuid": "280fb04d-992c-4917-b270-4ef8d0b9605f", + "siteRegistry": false, + "dateReceived": "2015-11-18", + "dateCompleted": "2015-03-15", + "dateEntered": "2014-09-15", + "dateRegistrar": "2015-03-04", + "dateLocalAuthorityReceived": "2023-09-11", + "summary": "Labore voluptatibus qui iusto vel rem itaque quaerat.\nEum autem dicta aut est expedita nobis commodi vel.\nNon magni voluptatem nam illum et maiores voluptatibus at asperiores.", + "informationUsed": "Id consectetur explicabo explicabo eos esse vel excepturi repudiandae consequatur.\nQuae incidunt impedit ea impedit asperiores.\nProvident aspernatur eveniet.\nDignissimos beatae vel consectetur cum maiores exercitationem.\nCupiditate assumenda non voluptates nesciunt delectus omnis sunt.", + "pastOrPresentOrders": "Veniam quisquam repellat.\nLabore id soluta excepturi rem inventore qui voluptas tempora quod.\nEnim dolor impedit eum autem id deserunt.", "commercialAndIndustrialPurposes": [ { - "uuid": "4c5dbdba-3335-4753-b238-b7809645877d", - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false + "uuid": "2e11f9d4-a6c9-48d2-9e0c-fdcfd3a7103e", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true }, { - "uuid": "0d47b7c7-c56d-4324-96ab-2ce9d0d58554", - "scheduleReference": "F2*", + "uuid": "5a2228af-bad1-427f-afe7-5ecf81786469", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true + }, + { + "uuid": "78b191db-459e-4ea2-a921-20c8db472438", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true } ] } ], "activityLog": [ { - "uuid": "b4d63466-08bc-41d8-8eb0-b45b2714a618", - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "PAGAC LINNEA", - "timestamp": "2019-07-19" - }, - { - "uuid": "cd51b9eb-6a90-4489-b87a-3976fa443afe", + "uuid": "f2bd3661-f97c-4bdc-b391-dde913f10691", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "COLLINS MOSE", - "timestamp": "2023-09-24" + "user": "DAUGHERTY-ROOB COLE", + "timestamp": "2021-09-07" }, { - "uuid": "2f316818-8019-4159-9916-02e9d221478b", - "siteRegistry": false, + "uuid": "5ca81294-9bd1-4ded-b26d-36089da1a375", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "BASHIRIAN ZOIE", - "timestamp": "2016-08-02" + "user": "DUBUQUE MONICA", + "timestamp": "2015-07-08" }, { - "uuid": "47088b5e-b952-48ce-8e45-e67d22f43f59", + "uuid": "2d24c20a-d107-4066-ade4-9c364f32d921", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "PACOCHA CHARITY", - "timestamp": "2022-08-09" + "user": "SWANIAWSKI ENOCH", + "timestamp": "2019-02-25" }, { - "uuid": "85ec6c30-eafb-44eb-bfdb-e1251b6e3be2", + "uuid": "b50d7e85-35de-4ec4-a7c1-96638ab2b5cc", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "REYNOLDS ENOCH", - "timestamp": "2020-02-29" + "user": "WARD-REICHERT QUINN", + "timestamp": "2023-06-03" }, { - "uuid": "bcc3ece5-d23c-4767-99bf-9e73b67e2a51", - "siteRegistry": true, + "uuid": "1c665f3b-63be-4dc3-bb15-f90474b131f3", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "O'KEEFE LEORA", - "timestamp": "2019-06-09" + "user": "WEHNER MARCO", + "timestamp": "2023-04-27" } ], "associatedSites": [ { - "uuid": "a4349c7b-ee4a-40db-b2da-82255fc3c99c", - "dateNoted": "2020-01-22", - "notes": "", - "parcelID": "15914", - "siteID": "18986", - "siteRegistry": true - }, - { - "uuid": "3455e74b-567d-49d1-9bd3-5e5657f87ef9", - "dateNoted": "2015-03-14", + "uuid": "26a45107-4934-41a7-b03d-44ebc7abd175", + "dateNoted": "2015-12-02", "notes": "", - "parcelID": "20317", - "siteID": "18069", + "parcelID": "19221", + "siteID": "15957", "siteRegistry": true - }, - { - "uuid": "97a6279c-ff8f-4265-b22a-d1c461c80dd1", - "dateNoted": "2016-07-26", - "notes": "", - "parcelID": "20235", - "siteID": "16364", - "siteRegistry": false } ] }, { - "uuid": "d063a641-6d40-479c-8a62-6ba462702b50", - "siteID": 15514, - "address": "15102 Ratke Stravenue", - "latitude": 52.5704, - "longitude": -127.6131, - "lastUpdated": "2020-02-03", - "city": "North Concepcionfort", - "region": "Vancouver Island/Coast", - "victoriaFile": "26250-20/2124", + "uuid": "20aa3402-05fb-4b30-9702-b4aa83e60f3b", + "siteID": 19330, + "address": "2470 Oceane Branch", + "latitude": 55.5124, + "longitude": -127.8098, + "lastUpdated": "2021-05-20", + "city": "Troy", + "region": "Thompson-Okanagan", + "victoriaFile": "26250-20/12177", "regionalFile": "N/A", "parcelIDs": [ - 4252611, - 7983471, - 3749776, - 1136570, - 4325881 + 883310, + 993235, + 3554858, + 3836802, + 7969600 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "b778a548-f8be-4f6f-ab03-e4cebe9b49f1", - "createdAt": "2019-03-11", - "completed": "2013-11-25", - "initiated": "2016-05-06", - "ministryContact": "LEUSCHKE VIVIANE", + "uuid": "6f3054e3-fe03-4a12-9cc4-71b004134893", + "createdAt": "2017-05-27", + "completed": "2018-09-04", + "initiated": "2015-10-05", + "ministryContact": "ONDRICKA ELYSSA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -8048,54 +9391,26 @@ ], "notationParticipants": [ { - "uuid": "2856bb8d-8131-4e86-84cf-a516326439d5", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "uuid": "d2a1da7b-6f9f-42ef-b922-3a08808e216f", - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "uuid": "5db3b912-9f4f-4554-a2f2-177a4c86fdca", + "uuid": "24c59e73-f8af-4d5a-874a-fd9c1c5ce557", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "9680e848-6374-4b90-898a-e00e96b75b44", + "uuid": "2cb5d2fa-4a52-4067-aa47-69660005de5b", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true - } - ], - "siteRegistry": true - }, - { - "uuid": "5c010bf8-7a41-461e-b00e-6da64f085a8f", - "createdAt": "2017-04-25", - "completed": "2014-08-10", - "initiated": "2020-03-02", - "ministryContact": "WALKER GAIL", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ + }, { - "uuid": "50190c50-9471-4e49-b23b-cb65d3004a6a", + "uuid": "58bbec07-3147-43aa-9ade-34ebf33a0698", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false + "role": "SUBMITTED BY", + "siteRegistry": true }, { - "uuid": "8b97c2d0-d5eb-4955-9611-6d555a603e3c", - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "543cbdf5-b7e4-44a2-a90f-ca3ff8d8e1b2", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false } @@ -8103,11 +9418,11 @@ "siteRegistry": false }, { - "uuid": "ec5d349d-07e6-46f9-a66d-21356432347e", - "createdAt": "2014-08-07", - "completed": "2022-11-13", - "initiated": "2020-06-26", - "ministryContact": "CARROLL GIOVANI", + "uuid": "2d8c2e3d-47f7-4c63-a48a-b00c07003ab5", + "createdAt": "2017-03-07", + "completed": "2023-05-02", + "initiated": "2016-09-21", + "ministryContact": "ROHAN MARGARETT", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -8116,32 +9431,26 @@ ], "notationParticipants": [ { - "uuid": "bf5e5431-3df3-4486-9366-dd3923917e89", - "name": "SHELL CANADA PRODUCTS", + "uuid": "f90a14bc-1f2c-4f56-beed-a51f218b0466", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "ec3349b4-39c2-4a90-9a59-ad642d44935d", + "uuid": "474f327a-07f8-48b8-b58e-95b2cedd51fa", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "uuid": "d637c923-cdd5-4418-ba4b-2a88858fc3d6", - "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "44683915-11ef-47c0-a71b-f143da955bdc", - "createdAt": "2019-01-05", - "completed": "2021-06-06", - "initiated": "2014-03-22", - "ministryContact": "CORKERY LAVERNE", + "uuid": "f218498c-f5c0-490e-8cf4-b1841342b7cb", + "createdAt": "2023-04-19", + "completed": "2015-01-17", + "initiated": "2019-01-25", + "ministryContact": "HACKETT JESUS", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -8150,73 +9459,45 @@ ], "notationParticipants": [ { - "uuid": "ed1907ba-c58e-46a6-be65-841a90b6efe9", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "uuid": "c9496086-6aa8-4b19-93c7-9976e6537772", + "uuid": "a4d8126e-900f-434f-9b61-50edfcab346a", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "2cc85928-e4fd-42cc-aca0-8e343135888b", + "uuid": "c91cfd9a-db04-4626-9934-17f232692400", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "0cf31bef-e845-406a-b41a-8ddb1f664f2e", + "uuid": "bfe5a27b-3c1b-4931-a6d4-cb26d88996c8", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true - } - ], - "siteRegistry": false - }, - { - "uuid": "c21c7d26-ec26-43eb-a51e-3ea9204f8d13", - "createdAt": "2019-02-16", - "completed": "2018-02-07", - "initiated": "2021-03-19", - "ministryContact": "DOOLEY SHAYNE", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "uuid": "dfd155dc-0131-4d6b-a98f-d60ca48bbf3e", - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "801ba13b-144c-44f8-baa5-baaebeba83b9", - "name": "SHELL CANADA PRODUCTS", + "uuid": "11c43bdf-0530-4847-8bd1-fd6f18e0c287", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "6342b517-c0ac-461d-b83d-b4305f76c216", - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "uuid": "f98e800b-6427-4c9b-947b-400bcf04b927", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false } ], "participants": [ { - "uuid": "988ba885-fe8b-4904-b674-a27755069904", - "name": "IPSUM", - "endDate": "2022-07-23", - "startDate": "2023-05-30", + "uuid": "69aa6c19-dd42-44d4-baff-b54d3c97c587", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2014-08-26", + "startDate": "2016-07-13", "notes": "", "roles": [ "ORGANIZATION" @@ -8224,21 +9505,10 @@ "siteRegistry": true }, { - "uuid": "866327b8-dcf7-4ad8-9cda-adf962d0ec37", - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2021-12-04", - "startDate": "2021-03-06", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": true - }, - { - "uuid": "faed5b59-fe67-4985-afc3-66ed09dbfed6", + "uuid": "031ed7f6-8077-4444-a616-06b09089a5f4", "name": "AMET, DOLOR SIT", - "endDate": "2017-10-31", - "startDate": "2014-07-07", + "endDate": "2018-03-30", + "startDate": "2017-11-13", "notes": "", "roles": [ "EMPLOYEE" @@ -8246,212 +9516,365 @@ "siteRegistry": false }, { - "uuid": "9102ede4-3239-4897-8e85-9e7060490897", + "uuid": "6189c2bd-95a1-48c0-8b7e-01d2f05ef26c", "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2018-01-31", - "startDate": "2019-06-15", + "endDate": "2018-07-30", + "startDate": "2020-10-23", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": false - }, - { - "uuid": "12e9a6a6-1c4c-476a-a5af-75e44d3d2421", - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2016-03-05", - "startDate": "2017-09-14", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": true } ], - "suspectLandUses": [ + "documents": [ { - "uuid": "cded62fe-718d-4a81-bc3e-fa08a7985fb5", - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-12-11 (described on Site Profile dated 2018-12-11)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "uuid": "0d2b4c8d-39bd-43fb-9385-211cfab3392f", + "siteRegistry": false, + "documentDate": "2020-03-19", + "receivedDate": "2018-11-12", + "uploadedDate": "2020-01-27", + "title": "Summary of Site Conditions, 1537 W 41st Avenue, Vancouver", + "participants": [ + { + "uuid": "f6a16c66-b33d-4e4e-9a67-4437b91ba8b2", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "c4ef50ed-c6e4-402e-b0b4-0ef91a447d69", + "name": "AMET, DOLOR SIT", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "e057d0ba-fa84-4451-8950-5e90e18aeb31", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": true, + "role": "AUTHOR" + } + ] }, { - "uuid": "2373778c-ee81-4507-b8c5-b1cac079252b", + "uuid": "5d6523f5-1a37-45cd-a985-1904b873c7dc", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-05-09 (described on Site Profile dated 2015-05-09)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "documentDate": "2016-04-24", + "receivedDate": "2014-01-18", + "uploadedDate": "2013-11-10", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "4bd54dc5-c754-4ad4-a32e-c3bf1386a391", + "name": "AMET, DOLOR SIT", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "37f1895d-486a-4a0d-97b3-6843aa3a4513", + "name": "AMET, DOLOR SIT", + "siteRegistry": true, + "role": "AUTHOR" + } + ] }, { - "uuid": "0e0e16b4-da5e-415a-92f7-aaaeb16ee0b1", + "uuid": "37189ab1-59fe-4be3-95ea-d2e5e9b109e3", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-09-01 (described on Site Profile dated 2019-09-01)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "documentDate": "2015-08-06", + "receivedDate": "2017-07-05", + "uploadedDate": "2019-12-22", + "title": "Summary of Site Conditions, 1537 W 41st Avenue, Vancouver", + "participants": [ + { + "uuid": "71b5a1da-adf8-4c16-98d1-10477e7851d2", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "5442d97b-873b-447d-a52d-0e8c851e5571", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": false, + "role": "AUTHOR" + } + ] }, { - "uuid": "5588acc1-3b5b-4b84-83a2-f8e58f394eef", + "uuid": "b35f947c-2fab-42a3-aeba-e84eed09325e", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-09-15 (described on Site Profile dated 2019-09-15)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "documentDate": "2017-02-17", + "receivedDate": "2022-02-23", + "uploadedDate": "2018-11-25", + "title": "Preliminary Site Investigation, Detailed Site Investigation and Remedial Plan for the Management Area adjacent to the Shell Site at 1503 West 41st Ave", + "participants": [ + { + "uuid": "e5759a33-a3f2-4915-bd02-2c54b481b0f4", + "name": "IPSUM", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "67e5214f-d6f7-4305-8b5e-c553f1d6aa42", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": true, + "role": "AUTHOR" + } + ] }, { - "uuid": "16c5ced6-33b8-4e59-afbc-f7dd3d270515", + "uuid": "d822d535-7133-4873-b7d2-755c7ad42c00", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-01-28 (described on Site Profile dated 2021-01-28)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "documentDate": "2019-06-26", + "receivedDate": "2022-09-28", + "uploadedDate": "2020-12-30", + "title": "Summary of Site Conditions, 1537 W 41st Avenue, Vancouver", + "participants": [ + { + "uuid": "dc9c6b5e-5417-4902-802c-e228fe62030f", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": false, + "role": "AUTHOR" + } + ] } ], - "parcelDescriptions": [ + "suspectLandUses": [ + { + "uuid": "15bae7db-c8ca-4481-9ca5-8d48cfb499c9", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2014-10-08 (described on Site Profile dated 2014-10-08)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, { - "uuid": "1105abe4-3e93-4a40-a4a1-7614e448146a", + "uuid": "8cd14255-39a3-4ea3-b8d7-1ae7e7842f48", "siteRegistry": true, - "dateNoted": "2021-06-09", - "parcelID": "20208", - "crownLandUsePIN": "17204", - "crownLandFileNumber": "18406", - "landDescription": "LOT 4 OF LOT 3 BLOCK 1 DISTRICT LOT 3 PLAN 5757" + "notes": "INSERTED FOR SITE PROFILE DATED 2018-08-01 (described on Site Profile dated 2018-08-01)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "uuid": "55d79d9b-cb1c-4744-8257-77c1d4f19fe9", + "uuid": "1310665c-c3a9-42a2-ac47-3e0c2e51b923", "siteRegistry": true, - "dateNoted": "2017-09-21", - "parcelID": "20626", - "crownLandUsePIN": "20778", - "crownLandFileNumber": "18134", - "landDescription": "LOT 3 OF LOT 3 BLOCK 2 DISTRICT LOT 4 PLAN 9503" + "notes": "INSERTED FOR SITE PROFILE DATED 2021-05-31 (described on Site Profile dated 2021-05-31)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "uuid": "d96faa4b-ff18-429b-9d8d-df1f21eee681", + "uuid": "cade2906-f184-4ca4-b9a6-76628d04f104", "siteRegistry": false, - "dateNoted": "2023-02-01", - "parcelID": "17769", - "crownLandUsePIN": "16810", - "crownLandFileNumber": "17441", - "landDescription": "LOT 5 OF LOT 4 BLOCK 2 DISTRICT LOT 1 PLAN 4241" + "notes": "INSERTED FOR SITE PROFILE DATED 2013-12-02 (described on Site Profile dated 2013-12-02)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + } + ], + "parcelDescriptions": [ + { + "uuid": "d395c3ca-dce8-45e8-9f63-307b25e388a4", + "siteRegistry": false, + "dateNoted": "2021-05-15", + "parcelID": "19234", + "crownLandUsePIN": "19498", + "crownLandFileNumber": "16146", + "landDescription": "LOT 2 OF LOT 4 BLOCK 4 DISTRICT LOT 5 PLAN 4055" }, { - "uuid": "0bba5cec-7a41-4438-9476-984ce76b5969", + "uuid": "dd439c11-a8c9-4421-aa30-f9f38ba15a3c", "siteRegistry": true, - "dateNoted": "2014-03-10", - "parcelID": "18054", - "crownLandUsePIN": "15976", - "crownLandFileNumber": "16377", - "landDescription": "LOT 3 OF LOT 4 BLOCK 1 DISTRICT LOT 1 PLAN 5241" + "dateNoted": "2015-07-18", + "parcelID": "19885", + "crownLandUsePIN": "19610", + "crownLandFileNumber": "17265", + "landDescription": "LOT 4 OF LOT 2 BLOCK 1 DISTRICT LOT 5 PLAN 3539" } ], "siteDisclosures": [ { - "uuid": "f69cd60c-37dc-47e6-8a00-3dd1d38c9f19", + "uuid": "f8022f42-a8d3-49af-beab-7d4492725078", "siteRegistry": true, - "dateReceived": "2020-08-22", - "dateCompleted": "2019-09-17", - "dateEntered": "2013-11-03", - "dateRegistrar": "2020-11-26", - "dateLocalAuthorityReceived": "2023-07-30", - "summary": "Consequuntur laboriosam nemo soluta minima rem consequatur omnis.\nDoloribus quidem perspiciatis.", - "informationUsed": "Neque nihil aliquam.\nTemporibus quo iure dolore eveniet repudiandae.\nMollitia possimus accusamus eius odit maxime aspernatur.", - "pastOrPresentOrders": "Laborum dolore occaecati.\nDolorum veritatis quo.", + "dateReceived": "2020-10-27", + "dateCompleted": "2016-04-26", + "dateEntered": "2023-09-06", + "dateRegistrar": "2018-08-29", + "dateLocalAuthorityReceived": "2018-03-20", + "summary": "Sunt enim eveniet et hic hic tempore qui.\nDicta vitae delectus ea voluptatem.", + "informationUsed": "Occaecati aspernatur dolore ea quibusdam fuga libero vitae.\nQuos assumenda repudiandae optio possimus ad perferendis dolor aliquid.\nAnimi soluta alias numquam.\nOmnis quidem molestias vero cupiditate in facere et et vel.", + "pastOrPresentOrders": "Pariatur vel veritatis aspernatur quaerat perferendis dolorem ipsum laudantium.\nPerspiciatis provident architecto.", "commercialAndIndustrialPurposes": [ { - "uuid": "081de6b5-78b0-4277-b96a-e42d6c7a0a48", + "uuid": "d633d1cc-76b4-4112-b717-7afaa50d2b61", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, { - "uuid": "d8c6ba23-4c0d-496a-8420-643e1a39f937", - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "uuid": "063078d5-c889-4bcb-8f4e-cd55b4c99908", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { - "uuid": "722f23fa-21ac-4c72-b254-b1e7c3633c6a", + "uuid": "18534a97-9c87-4504-80f0-a639e9b7a545", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + } + ] + }, + { + "uuid": "ef5dbd33-5e9b-4ee6-aba8-d63c5d127eb8", + "siteRegistry": false, + "dateReceived": "2014-01-02", + "dateCompleted": "2017-11-03", + "dateEntered": "2022-10-31", + "dateRegistrar": "2020-08-22", + "dateLocalAuthorityReceived": "2020-08-28", + "summary": "Fugiat libero ad cum natus atque veritatis.", + "informationUsed": "Dolore est temporibus voluptate temporibus quasi incidunt exercitationem.\nVeniam repellat dolore.\nIllum quam dolorem suscipit provident amet eligendi veritatis nostrum.", + "pastOrPresentOrders": "Fugiat voluptatibus unde.\nAutem consequuntur sunt fugit.\nReprehenderit enim qui explicabo assumenda.", + "commercialAndIndustrialPurposes": [ + { + "uuid": "68973438-65c1-4764-9fa0-b67f3ffc9b76", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false }, { - "uuid": "90ef8306-01e9-4616-b958-9f54ca4c829d", + "uuid": "73354366-6e71-44c4-90c1-c7fb41293978", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false + }, + { + "uuid": "d70a5352-0af1-4c5c-bfb9-b809ba0b5122", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "uuid": "b0a7b644-5fad-47d1-8ef8-04e322db9397", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true } ] } ], "activityLog": [ { - "uuid": "ccf9ef29-96b1-487f-b856-ee31f0f94698", + "uuid": "3a64fb12-95fd-4aeb-b93c-2d7b3530f667", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "BERGE RACHELLE", + "timestamp": "2022-09-05" + }, + { + "uuid": "b18d6050-e8b8-41a3-a484-8280cb6df6e9", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "WITTING KOLE", - "timestamp": "2022-08-30" + "user": "CRUICKSHANK ELOISA", + "timestamp": "2018-09-19" + }, + { + "uuid": "a5bf27e7-79b5-45ce-ae31-0664c98f0730", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "SCHULIST FERN", + "timestamp": "2015-12-20" + }, + { + "uuid": "119a1353-0bc1-4bc1-ac56-415b3543ee48", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "LEHNER LETA", + "timestamp": "2017-02-13" }, { - "uuid": "5592a65c-756a-4a98-be1c-948099124361", + "uuid": "8bc7cd3f-4bad-4863-8643-7fdbb5ffe648", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "VOLKMAN GABRIELLE", - "timestamp": "2019-12-29" + "user": "LITTEL REYES", + "timestamp": "2020-05-03" }, { - "uuid": "8f8589f5-8ef7-4bdf-889e-0186a593144e", + "uuid": "c744d4f7-f15d-479e-add1-b2181ae29120", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "WILLIAMSON JORDANE", - "timestamp": "2016-05-14" + "user": "CORWIN PEARLINE", + "timestamp": "2016-01-13" }, { - "uuid": "82114c9e-c6f8-468a-8eca-a2d775591f86", + "uuid": "07274709-db25-45b8-be72-966bfa498784", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "MOEN ASA", - "timestamp": "2014-04-15" + "user": "KOZEY AURELIE", + "timestamp": "2018-04-04" }, { - "uuid": "0140e15d-5e47-44c4-ab90-37d5b6ba4e36", + "uuid": "2466aa28-8c11-4b9f-a893-b9a1094bf0b3", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "LUETTGEN RUBEN", - "timestamp": "2021-11-16" + "user": "SCHAEFER RUDY", + "timestamp": "2015-10-04" + }, + { + "uuid": "c1a2188f-27ab-4e2b-b260-adf1bf7c020f", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "DECKOW EMELY", + "timestamp": "2022-04-29" } ], "associatedSites": [ { - "uuid": "03a79a13-360c-4d30-a73d-b0e15925f339", - "dateNoted": "2020-07-25", + "uuid": "a7826cc3-4e69-494c-a7d0-83ac09f3cd41", + "dateNoted": "2020-07-06", + "notes": "", + "parcelID": "20881", + "siteID": "15352", + "siteRegistry": true + }, + { + "uuid": "9561eed0-2fb9-4117-8052-97c911933811", + "dateNoted": "2014-01-20", + "notes": "", + "parcelID": "20899", + "siteID": "19619", + "siteRegistry": false + }, + { + "uuid": "b7ef8e10-30b7-4d34-ba8f-784c6b0927e4", + "dateNoted": "2021-07-20", "notes": "", - "parcelID": "18421", - "siteID": "15690", + "parcelID": "17751", + "siteID": "17562", "siteRegistry": false } ] }, { - "uuid": "634801fa-c6d8-49b3-bbf7-f6b04bcf0f51", - "siteID": 20921, - "address": "8383 Borer Mountains", - "latitude": 50.848, - "longitude": -132.8403, - "lastUpdated": "2023-06-24", - "city": "Arcadia", + "uuid": "653d92e2-9bc9-429c-b75f-0f14f5d12647", + "siteID": 19506, + "address": "35007 Harris Via", + "latitude": 49.4323, + "longitude": -131.4038, + "lastUpdated": "2015-07-13", + "city": "Lake Emmanuelle", "region": "Mainland/Southwest", - "victoriaFile": "26250-20/11626", + "victoriaFile": "26250-20/16403", "regionalFile": "N/A", "parcelIDs": [ - 3661417, - 5286588, - 5778043, - 5601773, - 6410238 + 5180533, + 6432397, + 3772914, + 5900814, + 7889932 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "503722a1-7a73-403d-b915-a98dfda9675a", - "createdAt": "2022-01-16", - "completed": "2015-10-08", - "initiated": "2017-02-07", - "ministryContact": "FAHEY DENIS", + "uuid": "62ea35bc-8f80-4d5e-a807-21e35c309374", + "createdAt": "2023-06-10", + "completed": "2014-06-18", + "initiated": "2015-09-14", + "ministryContact": "WATERS CIELO", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -8460,44 +9883,66 @@ ], "notationParticipants": [ { - "uuid": "a7563fe4-4b97-40b5-aab1-c966fb182a42", + "uuid": "07dd7d37-5b58-4075-9f14-02060c664954", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true }, { - "uuid": "283b0e4d-dc05-4818-8c1d-0e7016e17094", + "uuid": "6089ac13-2810-4366-b9b5-206788d97086", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "uuid": "7a1f8209-d0ff-4afc-b5ed-6570dbc3fbcd", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "40cf9f3e-0a93-4833-97c0-34f8efec63f8", + "uuid": "2b191c44-5f92-4e5a-9b2a-d45dacaee66b", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false - }, + } + ], + "siteRegistry": true + }, + { + "uuid": "3ad47ae0-17a9-4457-99bd-d8a7bf6610ff", + "createdAt": "2022-09-29", + "completed": "2015-04-14", + "initiated": "2018-09-06", + "ministryContact": "MURPHY MARIAN", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ { - "uuid": "c906babf-10a8-4201-bfc3-1bc5a2093416", + "uuid": "3be70de6-6975-479b-882a-b280bc58eea6", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "uuid": "f435a3fc-e1a9-433a-a787-bd418cd66278", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "6c85f36a-c835-4e7b-8708-cb0f67502453", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": true } ], "siteRegistry": false }, { - "uuid": "767c465a-778d-40f8-bb50-a16972940e1f", - "createdAt": "2016-03-24", - "completed": "2017-01-07", - "initiated": "2017-12-18", - "ministryContact": "CRONIN EDNA", + "uuid": "0135aa11-cfd3-4ff9-8394-b8a68fc2405c", + "createdAt": "2015-11-06", + "completed": "2021-11-03", + "initiated": "2015-02-14", + "ministryContact": "O'KON KALEB", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -8506,32 +9951,32 @@ ], "notationParticipants": [ { - "uuid": "59af0b33-a418-41b7-82b1-519c4f43ebe5", + "uuid": "d1dcd2f4-cd65-4e7e-baa3-f8816c791885", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true + "role": "REQUESTED BY", + "siteRegistry": false }, { - "uuid": "436c60e2-d34f-4154-bd25-95b0d5cae329", + "uuid": "5111bf8c-b9c0-4a73-94b5-49af0bbc54f1", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true }, { - "uuid": "78ddcc74-c23e-4bae-8c82-b4b4bf821d03", + "uuid": "045f74e0-e91c-47d2-b752-b09b8d68e24f", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "d3b957fd-3f7b-457c-8bd7-22d77e7d8a04", - "createdAt": "2019-12-18", - "completed": "2020-12-09", - "initiated": "2016-11-18", - "ministryContact": "STRACKE LARISSA", + "uuid": "23bfe87a-9ba0-438a-a164-f10d867124c0", + "createdAt": "2014-07-11", + "completed": "2017-06-15", + "initiated": "2020-04-26", + "ministryContact": "BOSCO MYRA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -8540,22 +9985,22 @@ ], "notationParticipants": [ { - "uuid": "73a61cd8-91f5-4789-aba4-7319dfe0fd44", + "uuid": "f3edf2f3-4578-4690-9b3e-caa74bd89d64", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false }, { - "uuid": "b49bf7b9-b3be-4fd3-a894-36dcc2709e24", + "uuid": "e5dcd36a-bbae-47ed-bf2b-73d4a74ebe67", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "45e28c0b-a671-4a87-9ab8-cadb731ff04b", + "uuid": "b52bcfcd-b2fd-41ce-8e56-dacbedc14b83", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false + "role": "REQUESTED BY", + "siteRegistry": true } ], "siteRegistry": true @@ -8563,32 +10008,21 @@ ], "participants": [ { - "uuid": "0f73fec9-dc94-453b-84d7-062f5f672e2b", - "name": "SHELL CANADA PRODUCTS", - "endDate": "2015-06-27", - "startDate": "2022-01-10", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": false - }, - { - "uuid": "4193f9cc-c518-422b-907e-8f00a9149f34", - "name": "IPSUM", - "endDate": "2018-04-18", - "startDate": "2019-06-21", + "uuid": "26b8c262-24b7-41b8-8edc-d3d07edd7d9d", + "name": "AMET, DOLOR SIT", + "endDate": "2020-11-16", + "startDate": "2018-04-23", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "a8b61e4b-d6e6-4600-a39c-408f860b5e2f", - "name": "SHELL CANADA PRODUCTS", - "endDate": "2018-01-19", - "startDate": "2021-09-18", + "uuid": "13b84bf9-51be-4df0-9271-bbf10b787fe8", + "name": "AMET, DOLOR SIT", + "endDate": "2016-11-19", + "startDate": "2016-08-15", "notes": "", "roles": [ "EMPLOYEE" @@ -8596,233 +10030,273 @@ "siteRegistry": true }, { - "uuid": "09b32f1f-656c-473b-978d-c88e4fcc4f72", + "uuid": "29572884-2574-498f-a93e-4c383485ff1c", "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2020-10-14", - "startDate": "2019-08-03", + "endDate": "2015-02-01", + "startDate": "2016-03-11", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": true + "siteRegistry": false + } + ], + "documents": [ + { + "uuid": "81260fec-6d6a-4e66-b1a0-e443f28eb637", + "siteRegistry": false, + "documentDate": "2021-05-25", + "receivedDate": "2016-06-19", + "uploadedDate": "2019-11-03", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "fbb2b2ec-9d4e-423c-a58b-39d5a3187e88", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": false, + "role": "AUTHOR" + } + ] }, { - "uuid": "5fcee9ff-0634-46e2-9282-85f9cda9822a", - "name": "AMET, DOLOR SIT", - "endDate": "2019-09-30", - "startDate": "2019-02-02", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": true + "uuid": "220f9cd5-f1e9-4e69-864c-ddf1fc97169c", + "siteRegistry": false, + "documentDate": "2017-06-18", + "receivedDate": "2016-06-20", + "uploadedDate": "2020-03-27", + "title": "Summary of Site Conditions, 1537 W 41st Avenue, Vancouver", + "participants": [ + { + "uuid": "5c30c2ff-8825-44d7-81da-c27aca868510", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "4e2a3513-8c71-4c84-9af4-e1e8ff775f8c", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "96badc1c-2e72-4b4f-bf38-c5a945e305c2", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": true, + "role": "AUTHOR" + } + ] + }, + { + "uuid": "706e2ae7-2a1d-4d2b-b1e3-41d924af3056", + "siteRegistry": false, + "documentDate": "2023-03-11", + "receivedDate": "2016-06-09", + "uploadedDate": "2021-04-24", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "6b290fe1-059e-4184-ac4a-c9f405eec6f3", + "name": "AMET, DOLOR SIT", + "siteRegistry": true, + "role": "AUTHOR" + } + ] } ], "suspectLandUses": [ { - "uuid": "82843f18-ba9d-4179-9833-a9c4a10ddd42", + "uuid": "0482e6a1-4086-4995-b3a5-46f85c67d903", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-12-22 (described on Site Profile dated 2015-12-22)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "notes": "INSERTED FOR SITE PROFILE DATED 2020-12-18 (described on Site Profile dated 2020-12-18)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "uuid": "fbb1ef64-db51-4592-9a0f-6cffb1b919bb", + "uuid": "b7019f10-db1c-467e-8baf-0d0bd78ca2dc", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-06-29 (described on Site Profile dated 2015-06-29)", + "notes": "INSERTED FOR SITE PROFILE DATED 2017-06-14 (described on Site Profile dated 2017-06-14)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "uuid": "4a91115e-a3de-425f-bbe5-4328d3bf08ed", + "uuid": "c1ef9c39-8774-4ee0-af1f-8372acaeaea8", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-11-03 (described on Site Profile dated 2019-11-03)", + "notes": "INSERTED FOR SITE PROFILE DATED 2021-06-21 (described on Site Profile dated 2021-06-21)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "uuid": "ca4dff0b-3cf9-48ca-8aa4-6ef061e030a5", - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2013-10-16 (described on Site Profile dated 2013-10-16)", + "uuid": "6dd3ef03-fafb-492e-ac1e-150bf8567487", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2019-04-21 (described on Site Profile dated 2019-04-21)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "uuid": "584a1711-6a43-4c04-b499-b0f050cd1295", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2021-11-03 (described on Site Profile dated 2021-11-03)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], "parcelDescriptions": [ { - "uuid": "7a0adb8a-f874-4e54-8e31-8b62a55feb43", - "siteRegistry": false, - "dateNoted": "2014-12-26", - "parcelID": "19878", - "crownLandUsePIN": "18006", - "crownLandFileNumber": "19677", - "landDescription": "LOT 5 OF LOT 1 BLOCK 4 DISTRICT LOT 4 PLAN 9507" + "uuid": "c9a485e1-495f-4363-96f2-f39df36c1766", + "siteRegistry": true, + "dateNoted": "2017-03-20", + "parcelID": "15889", + "crownLandUsePIN": "17173", + "crownLandFileNumber": "18678", + "landDescription": "LOT 3 OF LOT 4 BLOCK 2 DISTRICT LOT 2 PLAN 6797" }, { - "uuid": "a12fadd7-76e4-4315-a0c6-f99170e57038", + "uuid": "2289a8b4-1c8a-4be5-871b-d2da38aa9e95", "siteRegistry": false, - "dateNoted": "2022-11-11", - "parcelID": "17119", - "crownLandUsePIN": "15937", - "crownLandFileNumber": "17729", - "landDescription": "LOT 3 OF LOT 2 BLOCK 3 DISTRICT LOT 5 PLAN 3698" - }, - { - "uuid": "847b62e1-b64c-4a04-80f8-56be2e1d4582", - "siteRegistry": true, - "dateNoted": "2015-10-09", - "parcelID": "19838", - "crownLandUsePIN": "17171", - "crownLandFileNumber": "20721", - "landDescription": "LOT 4 OF LOT 2 BLOCK 5 DISTRICT LOT 5 PLAN 4872" + "dateNoted": "2019-02-28", + "parcelID": "17475", + "crownLandUsePIN": "19441", + "crownLandFileNumber": "17914", + "landDescription": "LOT 4 OF LOT 4 BLOCK 4 DISTRICT LOT 3 PLAN 9667" }, { - "uuid": "c019bdd3-75b4-4557-b693-b797b582346f", - "siteRegistry": true, - "dateNoted": "2022-03-19", - "parcelID": "15483", - "crownLandUsePIN": "15479", - "crownLandFileNumber": "16323", - "landDescription": "LOT 4 OF LOT 1 BLOCK 5 DISTRICT LOT 4 PLAN 6760" + "uuid": "9e3bd7b3-e2df-4068-b602-e8f87e679266", + "siteRegistry": false, + "dateNoted": "2017-03-27", + "parcelID": "18367", + "crownLandUsePIN": "20791", + "crownLandFileNumber": "19210", + "landDescription": "LOT 1 OF LOT 4 BLOCK 3 DISTRICT LOT 4 PLAN 9738" }, { - "uuid": "84f7af69-5a1c-4e88-9b39-ecdc7ce5844e", - "siteRegistry": true, - "dateNoted": "2016-12-14", - "parcelID": "19257", - "crownLandUsePIN": "20510", - "crownLandFileNumber": "16010", - "landDescription": "LOT 5 OF LOT 1 BLOCK 3 DISTRICT LOT 3 PLAN 2938" + "uuid": "ffd83da8-59c0-4740-9e9b-7e7e2cab2055", + "siteRegistry": false, + "dateNoted": "2023-09-29", + "parcelID": "15228", + "crownLandUsePIN": "17233", + "crownLandFileNumber": "19994", + "landDescription": "LOT 2 OF LOT 2 BLOCK 1 DISTRICT LOT 3 PLAN 3326" } ], "siteDisclosures": [ { - "uuid": "da8fc02a-5d08-450f-911e-d18d91ebf1e7", + "uuid": "c5e14000-2a87-4282-8aff-27825604173e", "siteRegistry": false, - "dateReceived": "2017-07-29", - "dateCompleted": "2023-08-27", - "dateEntered": "2022-03-14", - "dateRegistrar": "2019-06-14", - "dateLocalAuthorityReceived": "2020-10-24", - "summary": "Minus ipsa repellat veniam explicabo.\nSunt exercitationem iste iusto cupiditate accusamus.", - "informationUsed": "Quisquam voluptate quibusdam voluptate ducimus ducimus deleniti quo.\nMagnam temporibus vero molestias perspiciatis.\nA occaecati sunt quae.", - "pastOrPresentOrders": "Perspiciatis praesentium quos maiores architecto voluptas.\nEsse harum quod id sint.\nFugiat enim in corrupti incidunt tenetur.", + "dateReceived": "2019-03-10", + "dateCompleted": "2022-10-07", + "dateEntered": "2023-09-17", + "dateRegistrar": "2022-01-10", + "dateLocalAuthorityReceived": "2015-04-04", + "summary": "Quibusdam repellendus animi tenetur.", + "informationUsed": "Quasi veritatis inventore ipsum in nostrum nulla molestias repellendus voluptatum.\nAccusamus sint fuga sunt.\nFacere nemo repudiandae eum.\nEsse voluptates saepe sed saepe fugiat.", + "pastOrPresentOrders": "Expedita ducimus consectetur similique illo veritatis.", "commercialAndIndustrialPurposes": [ { - "uuid": "d77c21ab-09c0-4ad4-b67f-6d75553135bc", - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false + "uuid": "66909b8f-d91b-47fe-bcee-998221beba11", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true }, { - "uuid": "9c5abf7c-693f-4b2d-b146-e27a87e65dc8", + "uuid": "c7e4c1d8-16c5-4efb-9db9-fd427620133d", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false + }, + { + "uuid": "ac18fbf2-10a5-4270-ab51-2a00b705730f", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false } ] } ], "activityLog": [ { - "uuid": "4c266d65-79f2-4aeb-9fb3-3725331fe496", - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "AUER JAIDEN", - "timestamp": "2014-11-30" - }, - { - "uuid": "ae949fd9-1caa-43e2-b6fc-34a964ee7865", + "uuid": "e98ec8ac-4442-4db0-9c05-9772fac97e48", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "KOVACEK PRICE", - "timestamp": "2023-05-18" + "user": "LEDNER KEARA", + "timestamp": "2017-07-02" }, { - "uuid": "3cb8821c-7d97-4288-80fc-6436e9fff121", + "uuid": "05c98b7d-ec21-4a07-9fc2-87d16d56376d", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "SCHOEN KATELYN", - "timestamp": "2021-12-13" + "user": "SKILES LLEWELLYN", + "timestamp": "2015-11-23" }, { - "uuid": "d700e095-064c-45ae-98ef-d0d89181a05f", + "uuid": "44f39709-2f67-48da-be8c-23be781ac718", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "SCHINNER-AUER ROSE", - "timestamp": "2017-07-26" - }, - { - "uuid": "b1d021bd-4bed-407f-80a4-b6f1aca912b0", - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "BERGSTROM CADE", - "timestamp": "2016-09-30" + "user": "LEHNER SAMMIE", + "timestamp": "2021-12-12" }, { - "uuid": "a79b3641-95e7-4bc7-bfab-c2a5e90a4b0f", - "siteRegistry": false, + "uuid": "d6ded052-b12d-494e-a100-5f3818f0edae", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "BARTELL NATHANIEL", - "timestamp": "2016-12-28" + "user": "WISOKY DANA", + "timestamp": "2020-05-27" }, { - "uuid": "e736ed6b-c758-4f7b-a717-ce6d2c9a0af9", - "siteRegistry": false, + "uuid": "c01a2cc6-2e02-4afd-9c37-031de80e673a", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "LINDGREN-FEENEY JOCELYN", - "timestamp": "2022-08-18" + "user": "HALEY LUE", + "timestamp": "2017-11-07" } ], "associatedSites": [ { - "uuid": "c0dd9ed0-4bbb-48ce-8e67-e086721d53d1", - "dateNoted": "2019-11-12", + "uuid": "cddfa8d7-dbcd-477d-ae8f-00464823002c", + "dateNoted": "2015-12-15", "notes": "", - "parcelID": "15767", - "siteID": "19730", - "siteRegistry": false + "parcelID": "17644", + "siteID": "15402", + "siteRegistry": true }, { - "uuid": "253d616f-2b04-418a-93ff-fceac356c987", - "dateNoted": "2016-12-16", + "uuid": "d8594657-9be2-44b5-a532-614abdc1418a", + "dateNoted": "2014-12-03", "notes": "", - "parcelID": "18517", - "siteID": "17261", + "parcelID": "18096", + "siteID": "15218", "siteRegistry": true }, { - "uuid": "ee0b55ca-d88e-42f3-9906-9e037ce05e1d", - "dateNoted": "2016-07-18", + "uuid": "a52e1f7c-60ee-49ab-8d7a-6b5e61989fab", + "dateNoted": "2020-01-06", "notes": "", - "parcelID": "20882", - "siteID": "20221", + "parcelID": "19236", + "siteID": "19065", "siteRegistry": true } ] }, { - "uuid": "403a3c5d-3d69-4d9d-bab5-d7b57afc5e07", - "siteID": 15852, - "address": "19569 Ratke Valleys", - "latitude": 51.3534, - "longitude": -138.0529, - "lastUpdated": "2022-08-31", - "city": "Hauckfort", + "uuid": "3e114e4e-c4ea-42ff-9345-fefa4a40290d", + "siteID": 19360, + "address": "5597 MacGyver Ville", + "latitude": 48.7072, + "longitude": -134.8463, + "lastUpdated": "2014-02-07", + "city": "Fort Tremaine", "region": "Mainland/Southwest", - "victoriaFile": "26250-20/16886", + "victoriaFile": "26250-20/5572", "regionalFile": "N/A", "parcelIDs": [ - 8201648, - 1590910, - 547192, - 8625407, - 2631117 + 7964896, + 7775535, + 3845030, + 5203852, + 7691139 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "92a0e5d1-3920-4cae-9229-8b66abe12172", - "createdAt": "2021-06-22", - "completed": "2023-04-19", - "initiated": "2023-05-31", - "ministryContact": "SCHOEN NOVA", + "uuid": "d50a59a5-fcb9-4741-829a-b197656ffa1e", + "createdAt": "2019-05-03", + "completed": "2019-07-31", + "initiated": "2021-12-29", + "ministryContact": "LAKIN JO", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -8831,26 +10305,26 @@ ], "notationParticipants": [ { - "uuid": "2677cd89-206b-4320-8c98-3cc86b52a163", - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "3848e440-fd7e-4d47-943a-34dab8b8ac8e", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "8e4254e9-c340-4abe-982a-0f85a65d885a", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "uuid": "bbbb79a4-5e7a-4731-873c-27214cd79e07", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": false } ], "siteRegistry": false }, { - "uuid": "55dd850a-f421-498c-945e-d1fe0322b663", - "createdAt": "2015-08-01", - "completed": "2020-07-06", - "initiated": "2022-10-25", - "ministryContact": "TREMBLAY CRISTOPHER", + "uuid": "0d1b8e3f-8a1b-4f67-85af-58e9e1c68f30", + "createdAt": "2014-12-04", + "completed": "2017-06-13", + "initiated": "2015-10-13", + "ministryContact": "WOLFF BARRETT", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -8859,185 +10333,170 @@ ], "notationParticipants": [ { - "uuid": "2d063136-fdda-4e5d-8385-f224f4ca7826", - "name": "SHELL CANADA PRODUCTS", + "uuid": "7ea35489-73f3-423d-aee4-c1590d397c41", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "811c692e-4bf9-49c3-9d86-e08140dc66e3", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "uuid": "3d13e5de-3d14-4ca9-bbf3-bdf7916ee2bd", + "uuid": "8008d03a-dddb-4c44-8ed7-6ddf8c4a4ed0", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false } ], "siteRegistry": true - }, - { - "uuid": "3d896d76-628c-4428-96af-94fa4f9da190", - "createdAt": "2016-12-14", - "completed": "2018-03-01", - "initiated": "2015-07-23", - "ministryContact": "MILLER ETHEL", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "uuid": "c5cc46b9-483d-429a-9f12-55d28edc693d", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "uuid": "acdcf03b-d1bc-42ff-889f-b41d7d4f2700", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - } - ], - "siteRegistry": false } ], "participants": [ { - "uuid": "590e1e38-6deb-459a-9227-b8e248fdba08", - "name": "IPSUM", - "endDate": "2018-11-13", - "startDate": "2021-04-15", + "uuid": "c330f3ce-efd5-4fd1-9552-1de8f795c17f", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2015-12-21", + "startDate": "2021-07-30", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "9cb5ff82-87ca-496b-9a4e-a3b3ffb4034f", + "uuid": "33d100aa-0061-49ca-b46d-4e0576e9bd5b", "name": "IPSUM", - "endDate": "2014-09-17", - "startDate": "2018-03-16", + "endDate": "2017-06-11", + "startDate": "2017-04-06", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "8a9f800e-2d46-42cd-805c-39aebcab174d", - "name": "SHELL CANADA PRODUCTS", - "endDate": "2021-07-01", - "startDate": "2015-07-25", + "uuid": "dd28ca3c-416a-4ea1-a8e1-f36b38a701e9", + "name": "AMET, DOLOR SIT", + "endDate": "2021-03-27", + "startDate": "2017-10-06", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": false } ], + "documents": [ + { + "uuid": "123a38ff-0f75-4fd4-8ba3-e7170b9162ce", + "siteRegistry": false, + "documentDate": "2014-04-13", + "receivedDate": "2021-09-15", + "uploadedDate": "2017-12-31", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "c551f3be-9f40-4119-b3e3-855a0aaf8bf5", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "7a763a18-1cb3-4544-802c-df08de9e2416", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": false, + "role": "AUTHOR" + } + ] + } + ], "suspectLandUses": [ { - "uuid": "396ac86d-46fb-4143-aa4f-60cba665a44f", + "uuid": "790d0359-0558-44ea-b671-d71f57631ddd", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2021-10-09 (described on Site Profile dated 2021-10-09)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "uuid": "514755a2-0404-418e-9377-745ac43c1ee2", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-06-15 (described on Site Profile dated 2016-06-15)", + "notes": "INSERTED FOR SITE PROFILE DATED 2015-05-08 (described on Site Profile dated 2015-05-08)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "uuid": "a46853cf-3053-4a96-a6a8-975d8b9b682e", + "uuid": "abb0cda5-b8a2-44b3-aff3-3964cec6f8c2", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-07-15 (described on Site Profile dated 2018-07-15)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "notes": "INSERTED FOR SITE PROFILE DATED 2021-06-15 (described on Site Profile dated 2021-06-15)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "uuid": "fa46ba1b-db11-4494-b4b5-24389d87f5e4", - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2023-09-23 (described on Site Profile dated 2023-09-23)", + "uuid": "24d97f5e-810b-49e8-9a42-677d81d29a4b", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2016-10-04 (described on Site Profile dated 2016-10-04)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], "parcelDescriptions": [ { - "uuid": "2420bd22-d707-4bb1-86f9-1c89cbf33550", + "uuid": "c662dbab-816f-408f-b877-e523363fa00d", "siteRegistry": false, - "dateNoted": "2017-10-20", - "parcelID": "16537", - "crownLandUsePIN": "18029", - "crownLandFileNumber": "17198", - "landDescription": "LOT 5 OF LOT 5 BLOCK 3 DISTRICT LOT 2 PLAN 7465" + "dateNoted": "2019-11-22", + "parcelID": "20788", + "crownLandUsePIN": "18298", + "crownLandFileNumber": "18628", + "landDescription": "LOT 1 OF LOT 2 BLOCK 5 DISTRICT LOT 5 PLAN 7502" }, { - "uuid": "a3fec97a-7c9f-44b2-a3c1-8568f60dd374", + "uuid": "50edff6e-abc8-4153-b99e-5e78d6bf5d1e", "siteRegistry": false, - "dateNoted": "2014-10-19", - "parcelID": "17475", - "crownLandUsePIN": "18855", - "crownLandFileNumber": "15879", - "landDescription": "LOT 4 OF LOT 1 BLOCK 5 DISTRICT LOT 2 PLAN 6772" + "dateNoted": "2018-10-23", + "parcelID": "16980", + "crownLandUsePIN": "19836", + "crownLandFileNumber": "18445", + "landDescription": "LOT 2 OF LOT 4 BLOCK 2 DISTRICT LOT 1 PLAN 6500" + }, + { + "uuid": "553c08bb-732b-4d52-a5ac-58b08e8d5e83", + "siteRegistry": false, + "dateNoted": "2023-01-31", + "parcelID": "19028", + "crownLandUsePIN": "15239", + "crownLandFileNumber": "15279", + "landDescription": "LOT 5 OF LOT 4 BLOCK 5 DISTRICT LOT 4 PLAN 8640" } ], "siteDisclosures": [ { - "uuid": "89b1938d-1c50-414d-85c5-9ef42c71bc44", + "uuid": "eeeaf083-187d-455e-8318-911813870c5f", "siteRegistry": true, - "dateReceived": "2020-06-02", - "dateCompleted": "2014-03-24", - "dateEntered": "2021-07-22", - "dateRegistrar": "2020-10-14", - "dateLocalAuthorityReceived": "2023-07-02", - "summary": "Nobis nesciunt harum adipisci laboriosam sequi quia.", - "informationUsed": "Ullam dolor ipsa eveniet dolores quas magni.\nUt explicabo ducimus.\nOptio accusantium repudiandae pariatur.\nConsequuntur animi quia doloremque excepturi rerum nostrum id vel occaecati.\nOdit tenetur quidem iste distinctio reprehenderit magni eveniet esse tempora.", - "pastOrPresentOrders": "Vel qui repellat.\nLaboriosam repellendus nostrum aspernatur deleniti.\nAssumenda adipisci esse iusto.", + "dateReceived": "2020-06-19", + "dateCompleted": "2015-07-23", + "dateEntered": "2016-12-19", + "dateRegistrar": "2023-01-07", + "dateLocalAuthorityReceived": "2017-06-02", + "summary": "Veritatis nulla adipisci expedita.\nExplicabo iure labore unde.", + "informationUsed": "Dolor cupiditate labore cupiditate.\nPariatur sed in nisi temporibus sit corrupti quos.\nRepudiandae tenetur similique earum iure natus necessitatibus ex.", + "pastOrPresentOrders": "Tempore at rerum at ab dolor repellat voluptatum iste quae.\nAtque eos architecto illo.", "commercialAndIndustrialPurposes": [ { - "uuid": "5281909b-9a77-4b83-a1bb-6f7ece514f1f", + "uuid": "7588eb49-872b-43d1-9635-8f16a97ac3af", "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false }, { - "uuid": "9d54194b-0f95-4d6d-bf3a-abf3e999a64e", - "scheduleReference": "F2*", + "uuid": "2b8445c3-01a0-4556-beef-3fc54da0a230", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true - } - ] - }, - { - "uuid": "6cd741a7-1661-4514-93f1-71be9cb372f9", - "siteRegistry": false, - "dateReceived": "2023-01-10", - "dateCompleted": "2015-08-03", - "dateEntered": "2023-07-17", - "dateRegistrar": "2018-10-29", - "dateLocalAuthorityReceived": "2019-04-21", - "summary": "Porro temporibus distinctio corrupti eveniet assumenda totam nesciunt.\nQui tempora vitae natus numquam reprehenderit.\nDolorum odit fugiat ipsa recusandae nostrum eaque nam saepe.", - "informationUsed": "Aspernatur quas unde et doloremque asperiores ratione maiores iure.\nDolor doloribus expedita est sapiente quasi deserunt.\nMinima laudantium nobis magnam.\nNesciunt accusantium hic.\nPorro soluta itaque inventore est doloribus voluptates nam.", - "pastOrPresentOrders": "Quod dolore minus facilis sit saepe minima aut.\nNobis adipisci minus omnis deleniti veniam aut.\nOptio non incidunt numquam nemo repellat veritatis blanditiis odit id.", - "commercialAndIndustrialPurposes": [ + "siteRegistry": false + }, { - "uuid": "0240d0fa-be9b-4d0d-9d13-56f692c502b5", + "uuid": "2c3c7549-08ae-4c6c-9958-781a2c03113f", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "9f0abf8b-1d64-447f-8fba-6bfa03621e1c", + "uuid": "c9b880f0-7e24-4c62-a161-80f50bd4cbc8", "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true - }, - { - "uuid": "5715491c-adbc-42f2-86a3-ee4229bd1a77", - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false } ] @@ -9045,107 +10504,101 @@ ], "activityLog": [ { - "uuid": "accfc126-5976-4522-83b7-dd8843aa03af", + "uuid": "27a22f03-e32b-4d47-93db-316c75b250c0", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "O'CONNELL ASHLY", - "timestamp": "2020-02-15" - }, - { - "uuid": "b6c43388-07bd-477a-b6f9-524d27f7e5d8", - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "KRAJCIK GISSELLE", - "timestamp": "2019-09-25" + "user": "WUNSCH TERESA", + "timestamp": "2017-08-29" }, { - "uuid": "4089d02b-4c33-42be-900d-5ca0eaad3674", + "uuid": "eb8f49e4-fc65-4488-b62e-b3f54b5800f5", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "WILLIAMSON MAKENNA", - "timestamp": "2022-05-11" + "user": "EFFERTZ TAUREAN", + "timestamp": "2018-06-11" }, { - "uuid": "33204c5e-bd97-48c9-a443-5e987c96a3b2", + "uuid": "2374d3da-4e01-471e-9f1c-52366881b900", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "SCHUSTER VELMA", - "timestamp": "2018-12-28" + "user": "ROOB KYRA", + "timestamp": "2015-08-01" }, { - "uuid": "151fe9e8-af1d-45b9-8de8-e93897bf2410", + "uuid": "ea587c98-d274-4459-a656-9bd476372b72", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "LESCH AMAYA", - "timestamp": "2022-08-29" + "user": "BRAUN DAVE", + "timestamp": "2021-12-03" }, { - "uuid": "2b3f1c5a-7a28-4383-b644-93361e968d90", + "uuid": "192d4cc1-f365-4dda-b130-cc7ed0f5f44f", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "CHAMPLIN STELLA", - "timestamp": "2016-08-21" - }, - { - "uuid": "343927e4-b93b-4618-9873-c2198d187139", - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "EBERT CATERINA", - "timestamp": "2018-10-21" + "user": "BOGAN AUTUMN", + "timestamp": "2020-06-29" }, { - "uuid": "43d48f15-a467-48a3-9308-da54bbda5000", + "uuid": "30e3d240-e02e-4f95-a99a-2b2792c0fad5", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "ROLFSON HAZLE", - "timestamp": "2017-08-20" + "user": "HODKIEWICZ DEREK", + "timestamp": "2020-03-04" } ], "associatedSites": [ { - "uuid": "84e022d2-56db-4637-ab52-78d76574fdb2", - "dateNoted": "2023-02-24", + "uuid": "fda9f5f6-3132-41ca-bddd-6f80f76c5b56", + "dateNoted": "2015-01-27", "notes": "", - "parcelID": "15359", - "siteID": "17920", + "parcelID": "16197", + "siteID": "15499", "siteRegistry": true }, { - "uuid": "38ce45ec-ab50-47f9-a915-774f91bd6e78", - "dateNoted": "2016-01-01", + "uuid": "2c8ab9b3-50f1-470e-bb9d-4b78b9996445", + "dateNoted": "2017-09-22", "notes": "", - "parcelID": "17254", - "siteID": "20872", + "parcelID": "20158", + "siteID": "19056", + "siteRegistry": false + }, + { + "uuid": "b5a09864-fe5d-43aa-816c-febe8ba95cda", + "dateNoted": "2023-08-14", + "notes": "", + "parcelID": "19608", + "siteID": "19619", "siteRegistry": false } ] }, { - "uuid": "946ccbd0-7745-49a9-9158-73d766af4d98", - "siteID": 16077, - "address": "5029 Roberts Forest", - "latitude": 56.9409, - "longitude": -135.1478, - "lastUpdated": "2020-05-11", - "city": "New Audieshire", - "region": "Mainland/Southwest", - "victoriaFile": "26250-20/2273", + "uuid": "b6d17dd9-a06b-43fc-89b4-b0c11efa1e57", + "siteID": 20880, + "address": "859 Turcotte Brooks", + "latitude": 53.8512, + "longitude": -134.068, + "lastUpdated": "2021-10-17", + "city": "Hyattchester", + "region": "Cariboo", + "victoriaFile": "26250-20/14566", "regionalFile": "N/A", "parcelIDs": [ - 9727721, - 7116828, - 1969159, - 5357410, - 7840215 + 1708254, + 6258036, + 9484763, + 4678620, + 5345269 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "5ed58c14-be62-41d9-a831-3cdcdad4d0d1", - "createdAt": "2019-08-24", - "completed": "2018-05-18", - "initiated": "2023-05-01", - "ministryContact": "SIMONIS FREDERIQUE", + "uuid": "80ff3b0b-1051-4618-8cbb-0a1955fade0c", + "createdAt": "2021-03-30", + "completed": "2018-06-20", + "initiated": "2017-07-18", + "ministryContact": "HUDSON ISABELL", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -9154,44 +10607,72 @@ ], "notationParticipants": [ { - "uuid": "597c0ce2-1528-47b2-a8f7-42da26ba2de7", + "uuid": "697f5937-7c10-417b-823f-e48d6712ddb3", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "uuid": "e323a5cc-c4fa-4635-8072-4613208d5015", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "468515e7-6a74-4fbf-aa46-05863619252b", - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "1e732b02-3c62-4549-aa42-e710be718005", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "394157b7-15e9-4321-a79e-42e85cd622f7", + "uuid": "246a965f-46eb-4920-8ed5-445f6f12bb0f", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true }, { - "uuid": "85f3bc82-8da2-4ddc-a5e1-ac3566c87144", + "uuid": "2eda3102-f471-4ef6-9cf8-5e06849ded91", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false - }, + } + ], + "siteRegistry": false + }, + { + "uuid": "3f9eda31-3123-489e-87db-9f0e0160e4ae", + "createdAt": "2023-08-26", + "completed": "2015-08-31", + "initiated": "2014-01-20", + "ministryContact": "GUTKOWSKI FLO", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ { - "uuid": "5fd9e26a-9f20-480a-bcbf-ed07490920f1", + "uuid": "088237d8-798f-40da-b5f6-db45fcf04c0d", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "932b7f89-cac1-4e29-8897-1d8708b94f39", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false } ], "siteRegistry": false }, { - "uuid": "34822400-5738-4b5b-a6e4-16d7289a67f5", - "createdAt": "2015-12-23", - "completed": "2014-12-25", - "initiated": "2019-09-01", - "ministryContact": "BLICK DENNIS", + "uuid": "f4f48795-1dd7-403c-be4a-f9872c381947", + "createdAt": "2017-11-15", + "completed": "2021-04-02", + "initiated": "2022-11-27", + "ministryContact": "JONES HELENE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -9200,31 +10681,19 @@ ], "notationParticipants": [ { - "uuid": "ff56e968-c7dc-4bd9-ae94-fe122938fc9a", + "uuid": "3d75bedb-fcd7-4d7a-ba60-3f5f3cea2f31", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "uuid": "9ce8e046-9a48-461c-8ad5-0f5643c26c85", - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "0a3f8ae2-9854-4f3d-856d-f0ced471e5ec", - "name": "SHELL CANADA PRODUCTS", + "uuid": "ffd171fb-b035-4d68-8d58-92b01c1ffb3c", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "63071310-2b9e-451e-bf3c-2bb69b0aae7a", - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "uuid": "9be4074f-6edb-4ef8-b8e0-28b418a2165a", + "uuid": "bfdd4b72-1d45-4f95-bf04-fcf1a328d52d", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false @@ -9233,11 +10702,11 @@ "siteRegistry": true }, { - "uuid": "965828be-a591-439f-94db-73965fb27955", - "createdAt": "2021-12-15", - "completed": "2015-07-06", - "initiated": "2016-06-02", - "ministryContact": "RUECKER ORA", + "uuid": "46b2bed0-9ee1-4cbd-b108-104b3ba0df33", + "createdAt": "2013-12-14", + "completed": "2020-11-28", + "initiated": "2014-03-16", + "ministryContact": "MCDERMOTT NEDRA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -9246,27 +10715,21 @@ ], "notationParticipants": [ { - "uuid": "150f9203-8322-4238-bc81-89677d8fda58", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "uuid": "be3390ef-7800-496a-87c7-010228c41796", + "uuid": "ce428d95-7e07-463c-b346-fe9b69786d7b", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "2ccc83bb-468f-4279-97c4-3266a9e9f22e", - "name": "SHELL CANADA PRODUCTS", + "uuid": "70cd83f3-327a-41c4-93f8-22dbaebe6d7e", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "5719e681-182b-4686-a428-9ad115a2dad5", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "uuid": "c59503c3-ecee-4dc0-b6c0-7c37164a5bf8", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": false } ], @@ -9275,141 +10738,194 @@ ], "participants": [ { - "uuid": "9e1a9d4a-b5cf-4c5f-9143-f1a9fbb93173", - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2019-03-02", - "startDate": "2014-05-08", + "uuid": "fd7ea9da-04e9-4443-82af-5b03fcbb6af3", + "name": "IPSUM", + "endDate": "2020-09-20", + "startDate": "2022-04-28", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "ed08e115-148a-4f80-bf38-43fe4814db5f", - "name": "AMET, DOLOR SIT", - "endDate": "2019-01-16", - "startDate": "2020-05-19", + "uuid": "96b792ac-9e23-4d4e-b8fb-d7b9683b0de7", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2014-07-08", + "startDate": "2020-01-29", "notes": "", "roles": [ "EMPLOYEE" ], "siteRegistry": false + }, + { + "uuid": "fa01eef2-029c-4c05-ac62-50aeba6e6cd1", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2018-08-01", + "startDate": "2022-06-20", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true } ], - "suspectLandUses": [ + "documents": [ { - "uuid": "781bd726-ad38-4604-bc9a-e24f62bf0722", + "uuid": "bc67e4a2-4432-431b-b5b4-19037b00ae23", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-01-04 (described on Site Profile dated 2015-01-04)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "documentDate": "2023-04-15", + "receivedDate": "2017-01-25", + "uploadedDate": "2017-02-28", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "dccb63cd-46af-424a-9c15-0a1aa55523f4", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "426d0e77-563e-4f3d-aba3-6423b249226d", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": false, + "role": "AUTHOR" + } + ] }, { - "uuid": "ad63a6ac-2726-4ac0-b626-6c8a1e97850f", + "uuid": "185736f7-ed2d-4d5d-bc5e-167e72f85b69", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2013-11-15 (described on Site Profile dated 2013-11-15)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "documentDate": "2022-03-29", + "receivedDate": "2020-06-02", + "uploadedDate": "2019-08-24", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "0c43840c-9668-4850-bb83-02a42dcf88db", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "4564719f-6fc1-4035-b5d2-65297bacac93", + "name": "AMET, DOLOR SIT", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "220fe8ae-85c6-43f4-b185-0987a169f928", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": true, + "role": "AUTHOR" + } + ] }, { - "uuid": "fa433c7c-8efa-4eed-91f1-a56e5cde7188", - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-04-29 (described on Site Profile dated 2022-04-29)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" - }, + "uuid": "5384faba-7b85-4fe6-b6af-394d1e439e2e", + "siteRegistry": false, + "documentDate": "2014-07-22", + "receivedDate": "2020-12-20", + "uploadedDate": "2014-11-09", + "title": "Summary of Site Conditions, 1537 W 41st Avenue, Vancouver", + "participants": [ + { + "uuid": "151c3622-6f84-4c38-b99f-cfe81f206582", + "name": "IPSUM", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "a0abfb1c-109f-4311-9922-5deb1d5196c8", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "39755a37-0c65-4a52-b2bb-b0a1a3a9c5bc", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": false, + "role": "AUTHOR" + } + ] + } + ], + "suspectLandUses": [ { - "uuid": "a13530ec-5a61-412e-b4e2-9ebe08b63aa8", + "uuid": "a4560264-3496-4198-b4ee-beae54a7dbe9", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-04-07 (described on Site Profile dated 2019-04-07)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "notes": "INSERTED FOR SITE PROFILE DATED 2016-02-18 (described on Site Profile dated 2016-02-18)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "uuid": "f1e2d4bc-8130-4290-8dc0-1c404dc96164", + "uuid": "2568f0ee-7f33-4de1-8a03-515ff29e9ec7", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-02-02 (described on Site Profile dated 2018-02-02)", + "notes": "INSERTED FOR SITE PROFILE DATED 2019-11-27 (described on Site Profile dated 2019-11-27)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "uuid": "4d1d734d-5e85-424a-9de3-3a028651c190", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2020-04-15 (described on Site Profile dated 2020-04-15)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], "parcelDescriptions": [ { - "uuid": "03bfc1f6-32e8-4794-8747-d95977dffd0a", - "siteRegistry": true, - "dateNoted": "2013-12-18", - "parcelID": "16526", - "crownLandUsePIN": "15888", - "crownLandFileNumber": "18569", - "landDescription": "LOT 2 OF LOT 2 BLOCK 2 DISTRICT LOT 1 PLAN 4142" + "uuid": "f880323f-2ae5-4534-847f-acfdc9c13b7b", + "siteRegistry": false, + "dateNoted": "2017-02-27", + "parcelID": "17440", + "crownLandUsePIN": "15785", + "crownLandFileNumber": "17551", + "landDescription": "LOT 2 OF LOT 5 BLOCK 5 DISTRICT LOT 1 PLAN 8069" }, { - "uuid": "6e1715af-4c2f-4ab1-94b3-546f5831e70f", - "siteRegistry": false, - "dateNoted": "2014-10-15", - "parcelID": "19564", - "crownLandUsePIN": "20323", - "crownLandFileNumber": "19092", - "landDescription": "LOT 5 OF LOT 3 BLOCK 3 DISTRICT LOT 5 PLAN 4518" + "uuid": "7f3e5d0f-7a6a-4beb-8687-48dd8077a58f", + "siteRegistry": true, + "dateNoted": "2022-09-27", + "parcelID": "19959", + "crownLandUsePIN": "16389", + "crownLandFileNumber": "19914", + "landDescription": "LOT 2 OF LOT 1 BLOCK 5 DISTRICT LOT 4 PLAN 7078" } ], "siteDisclosures": [ { - "uuid": "f283792e-a283-47c4-8738-5f29c68276ce", - "siteRegistry": false, - "dateReceived": "2019-08-09", - "dateCompleted": "2021-05-15", - "dateEntered": "2016-09-21", - "dateRegistrar": "2017-10-06", - "dateLocalAuthorityReceived": "2014-07-31", - "summary": "Architecto at sint dolorum suscipit consectetur.\nFuga debitis omnis at dicta.", - "informationUsed": "Nostrum numquam ex nobis.\nIpsa fuga deleniti enim nesciunt.\nQuaerat fugiat porro vitae iure.\nExpedita nam enim dignissimos ad accusamus doloribus nesciunt.\nPossimus nesciunt atque corporis perspiciatis quaerat distinctio.", - "pastOrPresentOrders": "Quod veniam incidunt.\nQuo quaerat in porro cumque commodi reprehenderit.", + "uuid": "88fa3cdf-ba99-4991-979d-44f08f36cf9c", + "siteRegistry": true, + "dateReceived": "2018-04-16", + "dateCompleted": "2022-12-19", + "dateEntered": "2019-12-26", + "dateRegistrar": "2022-09-08", + "dateLocalAuthorityReceived": "2014-09-27", + "summary": "Voluptates reprehenderit molestiae fugit explicabo esse animi.\nMinus tempore rem fugit.", + "informationUsed": "Consectetur labore in labore incidunt consequatur rem.\nIn aut aliquid nihil beatae velit.\nDebitis tempore iure quidem iure voluptates recusandae dicta cupiditate.\nNobis nam consequatur sed commodi excepturi ullam explicabo.", + "pastOrPresentOrders": "Exercitationem quis ea vitae.\nTotam error optio fuga quos molestiae.", "commercialAndIndustrialPurposes": [ { - "uuid": "39e8cc04-951c-4524-99b1-46106cf4a444", - "scheduleReference": "F1*", + "uuid": "3946d9a5-5cf3-4c2a-b8eb-da2ccdd79760", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false }, { - "uuid": "f63b5be1-2a6e-4b43-bd4c-c1eef3957dc2", - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true + "uuid": "39042e2f-5643-43de-b843-55f0cc109105", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false }, { - "uuid": "d9eaa122-9140-4db5-8db9-6f031fba60da", + "uuid": "38dcdc4b-1255-413d-916e-266ebb856525", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, { - "uuid": "c92d2050-2dd2-493d-b796-719938aab5b5", - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true - } - ] - }, - { - "uuid": "fc88235d-0025-419c-8122-eeca0a528986", - "siteRegistry": true, - "dateReceived": "2019-03-15", - "dateCompleted": "2023-08-26", - "dateEntered": "2016-01-12", - "dateRegistrar": "2020-08-01", - "dateLocalAuthorityReceived": "2017-05-16", - "summary": "Dignissimos ut impedit.\nSint ipsum nisi dolorem.", - "informationUsed": "Quas dignissimos incidunt libero animi perferendis vel.\nAmet tempora ipsa beatae omnis eius culpa sunt quo recusandae.\nAliquam harum sed repudiandae a dolores soluta necessitatibus.\nAperiam nihil delectus deserunt.\nVelit perspiciatis laboriosam quam harum.", - "pastOrPresentOrders": "Dolor asperiores distinctio quaerat voluptas.\nEx mollitia velit asperiores delectus saepe.", - "commercialAndIndustrialPurposes": [ - { - "uuid": "278eba6f-6779-46f8-b0f9-b11f2d355c64", - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true - }, - { - "uuid": "b4332540-0b28-4a1f-9c31-58004b85a851", + "uuid": "907b3ffa-edd9-43fa-815e-4145535788a8", "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true } ] @@ -9417,106 +10933,113 @@ ], "activityLog": [ { - "uuid": "e5fef7d9-d6b8-4e0d-9f3d-fc8fd70aa04e", - "siteRegistry": false, + "uuid": "23a14e0b-7fdb-4ea7-8f3f-c57b0b955c2a", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "LANGWORTH ARNO", - "timestamp": "2019-02-02" + "user": "NIENOW IMMANUEL", + "timestamp": "2020-01-14" }, { - "uuid": "34f7a031-2ead-4bd3-8f70-77b3536c074a", - "siteRegistry": true, + "uuid": "6e09053d-b14b-42ca-972a-f336e048e2be", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "HARRIS ARNOLDO", - "timestamp": "2022-03-19" + "user": "BEER EVERT", + "timestamp": "2015-08-27" }, { - "uuid": "754a9152-672f-4310-8775-d54dd53e209b", + "uuid": "bd350244-a142-4659-b936-08cd1d6c5de8", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "NADER MAUDIE", - "timestamp": "2020-10-19" + "user": "NICOLAS MALACHI", + "timestamp": "2016-08-25" }, { - "uuid": "d7a24b4b-913f-4331-8519-ff23aa2b430d", + "uuid": "eb6f5a0d-2663-4874-9583-1c524a636a8f", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "CONSIDINE JEANETTE", - "timestamp": "2019-09-02" + "user": "WEST DANYKA", + "timestamp": "2021-04-23" }, { - "uuid": "77b4c74f-86f0-4b60-a1d1-777a492cba01", - "siteRegistry": false, + "uuid": "c281b111-1a0a-403e-a319-788d8376e289", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "GERLACH LIONEL", - "timestamp": "2022-02-27" + "user": "SPENCER LILLA", + "timestamp": "2023-03-09" }, { - "uuid": "d0974aae-b144-4cbb-8e33-7d03d683c5c0", - "siteRegistry": false, + "uuid": "a90e7b29-d646-4c36-83d4-93c78864413f", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "CASSIN SHANELLE", - "timestamp": "2022-10-12" + "user": "SCHUSTER ELISA", + "timestamp": "2017-03-03" }, { - "uuid": "df8a6a20-415f-418f-a03f-1bd03377e71b", - "siteRegistry": false, + "uuid": "ef3c24ef-82c3-46c4-b50d-0d43e457bf1a", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "HOWELL MARCOS", - "timestamp": "2020-12-05" + "user": "TURCOTTE TIERRA", + "timestamp": "2018-06-26" }, { - "uuid": "648124fd-dc35-4a69-8db9-6e793d9df53b", + "uuid": "5d78b0d2-6ad8-4d70-97c8-217b45b3935c", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "STROMAN MANLEY", - "timestamp": "2020-06-28" + "user": "MANN-KERLUKE MAUREEN", + "timestamp": "2016-10-21" + }, + { + "uuid": "97d36994-67a7-44f0-864c-cde4b66318a5", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "BERNIER ARA", + "timestamp": "2023-07-19" }, { - "uuid": "a71056f8-bcc4-4578-86d1-6fb3183ec70a", + "uuid": "2dfc3fa8-f010-4d34-acde-959b5c3d8d51", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "VONRUEDEN HUMBERTO", - "timestamp": "2021-09-14" + "user": "MACGYVER AKEEM", + "timestamp": "2018-03-28" } ], "associatedSites": [ { - "uuid": "101272c5-ec58-4ad2-86ae-7f5e0bbb71b1", - "dateNoted": "2023-08-10", + "uuid": "3996da26-e765-4357-9e16-f236e627d11d", + "dateNoted": "2017-03-11", "notes": "", - "parcelID": "17000", - "siteID": "15493", - "siteRegistry": false + "parcelID": "18809", + "siteID": "19485", + "siteRegistry": true } ] }, { - "uuid": "416b5365-cfb4-494d-b3d7-cb6896edf40c", - "siteID": 17427, - "address": "975 Chadd Fork", - "latitude": 51.5164, - "longitude": -138.2075, - "lastUpdated": "2019-10-06", - "city": "Smithamhaven", - "region": "Kootenay", - "victoriaFile": "26250-20/1039", + "uuid": "4f9df3a2-bb69-484a-bbf5-546a2c029848", + "siteID": 18354, + "address": "7203 Homenick Wall", + "latitude": 52.9514, + "longitude": -121.8936, + "lastUpdated": "2017-10-18", + "city": "North Alysa", + "region": "Cariboo", + "victoriaFile": "26250-20/7842", "regionalFile": "N/A", "parcelIDs": [ - 7970145, - 9391621, - 984763, - 7233582, - 4576856 + 2920400, + 1326518, + 3367986, + 6697545, + 9478259 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "b2fbb30b-e989-46cd-9d46-801597926dfb", - "createdAt": "2020-04-07", - "completed": "2023-06-15", - "initiated": "2017-11-19", - "ministryContact": "TERRY NINA", + "uuid": "9b088ab0-e2ad-4514-96ab-fe53de56afe2", + "createdAt": "2021-10-13", + "completed": "2017-05-02", + "initiated": "2021-04-02", + "ministryContact": "TREUTEL ARACELY", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -9525,38 +11048,38 @@ ], "notationParticipants": [ { - "uuid": "4e75907c-3eb2-4c8c-8441-316b24a85655", - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true + "uuid": "8f9c454d-b162-45c8-8e0f-2c9b346f8c07", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false }, { - "uuid": "3d3791d8-8f51-4a94-959d-ddcc2697923c", + "uuid": "92f7c5fd-ad93-45de-aa8f-0382a7dcf330", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "0de9dc77-0aba-4f71-89b1-f19f300a1974", + "uuid": "4c46091c-9fd5-457f-9ad8-50e6ce4a39b0", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true }, { - "uuid": "be5f7df3-761f-4f12-ab34-cf294b3fb00b", + "uuid": "83ea6290-e691-4acf-94c9-68d0949bacc1", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "5bc61aa4-9c3c-44e5-9e6b-264f58d360f6", - "createdAt": "2016-09-12", - "completed": "2016-09-01", - "initiated": "2014-02-08", - "ministryContact": "SCHROEDER TREMAYNE", + "uuid": "8255370f-3965-491d-a291-644ea84611e0", + "createdAt": "2017-09-22", + "completed": "2023-05-09", + "initiated": "2019-07-19", + "ministryContact": "VANDERVORT FATIMA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -9565,26 +11088,26 @@ ], "notationParticipants": [ { - "uuid": "a609d6f0-138a-4a2a-9185-9ac9c4e8725f", - "name": "SHELL CANADA PRODUCTS", + "uuid": "66fb9388-970a-4495-b0f3-34f2ce574e16", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "7ab9ddb2-6e5b-4d79-bd90-db89eefb654d", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "uuid": "a36e507f-ab9c-456a-8ad1-3ce76e6b6858", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": false } ], "siteRegistry": true }, { - "uuid": "0d60318d-f924-4509-9b8b-896aef9dc8d4", - "createdAt": "2019-02-12", - "completed": "2016-04-16", - "initiated": "2023-06-26", - "ministryContact": "WUNSCH ENID", + "uuid": "f23cc7d6-d05a-4f36-87c2-b14bf0241e53", + "createdAt": "2017-05-25", + "completed": "2018-04-07", + "initiated": "2020-02-25", + "ministryContact": "FEEST ADAH", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -9593,25 +11116,19 @@ ], "notationParticipants": [ { - "uuid": "e2ade6e3-e59f-499a-914b-02b4205e06e3", + "uuid": "3108e23e-eafa-43ef-a555-bb32c1eab092", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "uuid": "97d91ff0-d6ff-4588-817c-6732c0050486", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "4fd303dd-9043-406a-b330-f81767270e02", - "name": "SHELL CANADA PRODUCTS", + "uuid": "00031411-67cb-450f-b6ca-1601a5df2207", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "98eebaca-1c2d-4f0a-828d-e13efb27f025", + "uuid": "c72395e9-8fe9-483c-a5ca-fc0099021e35", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true @@ -9620,11 +11137,11 @@ "siteRegistry": false }, { - "uuid": "d11f05da-369c-4cc2-b5d5-fffc1999fd2b", - "createdAt": "2020-05-01", - "completed": "2019-03-06", - "initiated": "2019-02-25", - "ministryContact": "HARVEY PRESTON", + "uuid": "b6bce2cf-1dea-4396-9b35-bf6ea2fe6db0", + "createdAt": "2023-08-14", + "completed": "2021-08-23", + "initiated": "2016-09-03", + "ministryContact": "POWLOWSKI REBEKAH", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -9633,26 +11150,20 @@ ], "notationParticipants": [ { - "uuid": "5cd66362-4983-4056-81d2-fb16971ff83f", + "uuid": "1c019627-1383-41d0-be40-2762da5370ad", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "88763a99-862e-4f43-b69a-e41411a7c516", + "uuid": "36922a93-600f-4856-8392-0eabfbc5fb69", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "uuid": "3677726e-f6b7-4103-8068-d0d888a45bf3", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "34cb3a68-aaad-46ad-8e91-5729b37f652c", - "name": "SHELL CANADA PRODUCTS", + "uuid": "5d8a8222-7f38-4721-a4d4-33f595d45ca7", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false } @@ -9662,21 +11173,10 @@ ], "participants": [ { - "uuid": "9fd5134e-8c09-496d-86e8-95acd23ff4b4", - "name": "SHELL CANADA PRODUCTS", - "endDate": "2018-08-18", - "startDate": "2015-06-20", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": true - }, - { - "uuid": "6ce2612a-85da-42a0-9717-90445ab94f53", - "name": "IPSUM", - "endDate": "2016-01-17", - "startDate": "2014-05-10", + "uuid": "e6ea4b0a-42dd-4c39-83c0-dbc0bfd9e4ec", + "name": "AMET, DOLOR SIT", + "endDate": "2014-04-30", + "startDate": "2015-05-26", "notes": "", "roles": [ "EMPLOYEE" @@ -9684,290 +11184,295 @@ "siteRegistry": false }, { - "uuid": "c3a9530d-2285-4b29-b4af-da1903ec1a1d", - "name": "AMET, DOLOR SIT", - "endDate": "2015-09-20", - "startDate": "2019-04-21", + "uuid": "b065245d-1fad-46ba-807c-6d2c860d9413", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2022-03-18", + "startDate": "2022-09-02", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": false + "siteRegistry": true + } + ], + "documents": [ + { + "uuid": "a30ab30f-453f-4222-96b5-3fe449de1bcc", + "siteRegistry": false, + "documentDate": "2016-03-02", + "receivedDate": "2018-10-06", + "uploadedDate": "2016-11-22", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "3a1b3838-7018-4c46-86d7-b3528dd28da7", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "cc398ce3-2160-403c-bd43-4ab60c405db8", + "name": "AMET, DOLOR SIT", + "siteRegistry": true, + "role": "AUTHOR" + } + ] }, { - "uuid": "017f9d4b-0f37-42f4-8acb-77abe2fc909d", - "name": "SHELL CANADA PRODUCTS", - "endDate": "2020-06-16", - "startDate": "2023-03-15", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": false + "uuid": "fd9a03e1-489c-495d-b80d-a86a7b2cf83a", + "siteRegistry": true, + "documentDate": "2017-06-24", + "receivedDate": "2019-12-30", + "uploadedDate": "2021-11-21", + "title": "Preliminary Site Investigation, Detailed Site Investigation and Remedial Plan for the Management Area adjacent to the Shell Site at 1503 West 41st Ave", + "participants": [ + { + "uuid": "0d9e0121-2994-47c7-af4b-05065580de3b", + "name": "IPSUM", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "6e3eae9e-4610-45b6-ba6b-283f9087d5d4", + "name": "IPSUM", + "siteRegistry": false, + "role": "AUTHOR" + } + ] + }, + { + "uuid": "75283d64-6bc5-40bc-a838-550023f0f1ff", + "siteRegistry": true, + "documentDate": "2020-08-02", + "receivedDate": "2022-09-30", + "uploadedDate": "2020-09-24", + "title": "Preliminary Site Investigation, Detailed Site Investigation and Remedial Plan for the Management Area adjacent to the Shell Site at 1503 West 41st Ave", + "participants": [ + { + "uuid": "8df84743-8215-4d4f-ad83-aa1ce2500db5", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "e1a3c8b9-2e4f-4135-9f95-8c19cf6d3f05", + "name": "AMET, DOLOR SIT", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "b6c08971-6248-4861-b690-92150a292d76", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": false, + "role": "AUTHOR" + } + ] } ], "suspectLandUses": [ { - "uuid": "0759f140-84ee-4073-bcdd-e823ebda1df7", - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-07-20 (described on Site Profile dated 2017-07-20)", + "uuid": "b79061ad-e6d4-4222-aa1e-222de9b1de6b", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2016-03-06 (described on Site Profile dated 2016-03-06)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "uuid": "5e26f35a-58e3-4db6-91ad-2cc22abb03b3", + "uuid": "f9418ec4-5e46-4f37-a32c-fca0f7b6d465", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-07-15 (described on Site Profile dated 2017-07-15)", + "notes": "INSERTED FOR SITE PROFILE DATED 2019-05-02 (described on Site Profile dated 2019-05-02)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "uuid": "d211525a-6c24-4699-acc1-83af93843802", + "uuid": "43f471e2-81ec-497b-81c8-ef830e7f5844", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-08-08 (described on Site Profile dated 2021-08-08)", + "notes": "INSERTED FOR SITE PROFILE DATED 2017-08-08 (described on Site Profile dated 2017-08-08)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" - }, - { - "uuid": "d33c6778-dc12-4b30-9fce-c95c2a0a092a", - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-07-03 (described on Site Profile dated 2018-07-03)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], "parcelDescriptions": [ { - "uuid": "fb4b2927-2760-4a74-838b-5416fabb1409", + "uuid": "f13cd671-ab72-4a3b-a9b2-aa409173209a", "siteRegistry": true, - "dateNoted": "2018-01-24", - "parcelID": "15712", - "crownLandUsePIN": "19488", - "crownLandFileNumber": "20275", - "landDescription": "LOT 2 OF LOT 2 BLOCK 4 DISTRICT LOT 1 PLAN 9680" + "dateNoted": "2015-06-24", + "parcelID": "16557", + "crownLandUsePIN": "16273", + "crownLandFileNumber": "20492", + "landDescription": "LOT 1 OF LOT 2 BLOCK 3 DISTRICT LOT 4 PLAN 8070" }, { - "uuid": "0a80a4c8-b999-4f95-a70e-f62913676ecb", - "siteRegistry": true, - "dateNoted": "2023-03-10", - "parcelID": "18366", - "crownLandUsePIN": "17625", - "crownLandFileNumber": "16152", - "landDescription": "LOT 3 OF LOT 2 BLOCK 3 DISTRICT LOT 2 PLAN 9323" + "uuid": "83231691-62e4-48c9-a453-f7507adf8d27", + "siteRegistry": false, + "dateNoted": "2017-03-18", + "parcelID": "18651", + "crownLandUsePIN": "20153", + "crownLandFileNumber": "20478", + "landDescription": "LOT 1 OF LOT 3 BLOCK 5 DISTRICT LOT 1 PLAN 5902" }, { - "uuid": "c2a03c3f-2f97-4972-bfa1-4d8949d4b529", + "uuid": "4fdcc213-84d9-4b0d-9c15-629db3c68b02", "siteRegistry": false, - "dateNoted": "2017-05-22", - "parcelID": "15303", - "crownLandUsePIN": "15704", - "crownLandFileNumber": "17432", - "landDescription": "LOT 5 OF LOT 4 BLOCK 5 DISTRICT LOT 5 PLAN 6975" + "dateNoted": "2016-01-10", + "parcelID": "19822", + "crownLandUsePIN": "18470", + "crownLandFileNumber": "18992", + "landDescription": "LOT 3 OF LOT 5 BLOCK 1 DISTRICT LOT 1 PLAN 4063" }, { - "uuid": "8f288a57-7b7e-48e1-9626-1f9202c723ff", - "siteRegistry": true, - "dateNoted": "2018-06-28", - "parcelID": "20061", - "crownLandUsePIN": "18076", - "crownLandFileNumber": "20548", - "landDescription": "LOT 3 OF LOT 3 BLOCK 1 DISTRICT LOT 1 PLAN 3624" + "uuid": "dcfb3aaf-5031-4c3b-8d94-17f242cdfaee", + "siteRegistry": false, + "dateNoted": "2022-01-16", + "parcelID": "20771", + "crownLandUsePIN": "16308", + "crownLandFileNumber": "16308", + "landDescription": "LOT 5 OF LOT 2 BLOCK 5 DISTRICT LOT 3 PLAN 5554" }, { - "uuid": "c302e843-59cc-4df4-a5d6-8b00b264c53f", + "uuid": "7c43a1fe-f34e-4e1c-9dfe-b854b5d928d5", "siteRegistry": true, - "dateNoted": "2018-03-07", - "parcelID": "15405", - "crownLandUsePIN": "20596", - "crownLandFileNumber": "16717", - "landDescription": "LOT 4 OF LOT 2 BLOCK 4 DISTRICT LOT 1 PLAN 5365" + "dateNoted": "2016-12-11", + "parcelID": "17072", + "crownLandUsePIN": "17076", + "crownLandFileNumber": "17451", + "landDescription": "LOT 5 OF LOT 5 BLOCK 3 DISTRICT LOT 4 PLAN 6344" } ], "siteDisclosures": [ { - "uuid": "62611b31-6cfb-4041-8871-176dc7cbb841", - "siteRegistry": false, - "dateReceived": "2015-04-12", - "dateCompleted": "2017-03-28", - "dateEntered": "2023-03-11", - "dateRegistrar": "2020-01-06", - "dateLocalAuthorityReceived": "2020-12-04", - "summary": "Error necessitatibus cum praesentium temporibus earum.", - "informationUsed": "Eligendi molestias ut explicabo delectus repellendus.\nAtque occaecati ut consectetur veritatis vel.\nPlaceat pariatur veniam blanditiis vitae reiciendis architecto nobis quaerat.", - "pastOrPresentOrders": "Fugit praesentium eos praesentium suscipit molestiae expedita.\nEx unde perferendis accusamus deserunt reprehenderit consectetur.\nQuis adipisci perferendis ex soluta aliquam omnis velit.", + "uuid": "1a024c20-c9d7-41a2-a5bb-f89ce75d3990", + "siteRegistry": true, + "dateReceived": "2017-06-21", + "dateCompleted": "2019-11-18", + "dateEntered": "2021-01-10", + "dateRegistrar": "2023-02-02", + "dateLocalAuthorityReceived": "2016-12-09", + "summary": "Unde ipsum corporis perferendis assumenda repellendus culpa magnam laboriosam.", + "informationUsed": "Architecto earum odio ratione necessitatibus corporis ducimus eaque.\nNostrum error dolorem laudantium eveniet ipsam repellat et.\nQuam fuga in reprehenderit fugit esse dolorum possimus.\nVeniam quam laborum nesciunt nihil ipsum incidunt.", + "pastOrPresentOrders": "Asperiores commodi molestiae nobis debitis dicta possimus.\nAsperiores aperiam vero id suscipit officiis aut suscipit sint.\nDoloribus nostrum dolorum consequatur similique rem exercitationem magnam perferendis.", "commercialAndIndustrialPurposes": [ { - "uuid": "d15c886b-268a-4d02-82fc-81212478e0fb", - "scheduleReference": "F1*", + "uuid": "feab09c5-400a-4267-9a09-ebf7d40cd22b", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false }, { - "uuid": "2e126028-8653-4e21-ab1c-0c33f1f68d66", - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true - }, - { - "uuid": "1863b0d9-ddd1-433a-8973-67126ac04d7a", - "scheduleReference": "F1*", + "uuid": "39713a4e-b3ac-40be-afda-5ceae14f86e7", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true - } - ] - }, - { - "uuid": "2a909a6b-571f-4ef6-bc24-e3e287b68a52", - "siteRegistry": false, - "dateReceived": "2019-04-04", - "dateCompleted": "2015-01-27", - "dateEntered": "2018-08-24", - "dateRegistrar": "2018-03-29", - "dateLocalAuthorityReceived": "2014-12-16", - "summary": "Enim possimus nulla soluta labore sint recusandae voluptatem vel.\nIncidunt sint architecto iste id reprehenderit.", - "informationUsed": "Nulla sapiente ut a modi quis necessitatibus nobis animi.\nPraesentium iure vel illum aliquam veniam corrupti sint possimus.\nCorrupti blanditiis veritatis.\nDolorem tempora adipisci quidem ea.", - "pastOrPresentOrders": "Debitis expedita sunt omnis quae eius cum cum qui laudantium.\nRepellendus provident repellat corporis ipsa.", - "commercialAndIndustrialPurposes": [ - { - "uuid": "7d451827-9159-47ac-bf85-8c4a33bf976a", - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true - }, - { - "uuid": "cfa3e45a-36de-4630-9363-4d3518538491", - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false - }, - { - "uuid": "ff1e624d-84dc-45bd-af0d-0e719bd461c9", - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true - }, - { - "uuid": "41f89fd9-98d1-482b-9288-87ccd9a81acc", - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true } ] } ], "activityLog": [ { - "uuid": "30512167-536b-4c5c-b2ca-c583422a8111", + "uuid": "9b582292-8906-442a-8166-a0a75371b0db", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "BOSCO SUSANNA", - "timestamp": "2014-06-22" + "user": "HAMMES CAROLINE", + "timestamp": "2020-01-23" }, { - "uuid": "6084fddd-6a6d-4903-ba82-d1a4011f1d07", - "siteRegistry": true, + "uuid": "bd988d1d-3029-4e6a-bbb1-3df6920803ac", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "BOGISICH JODY", - "timestamp": "2017-08-18" + "user": "SWIFT GIOVANNA", + "timestamp": "2013-12-06" }, { - "uuid": "dce8bfd7-59c7-40ce-af38-6423eaf8dbae", + "uuid": "54c0a3ba-8ece-4ee2-8703-9a737d01899e", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "CARTER ALBIN", - "timestamp": "2022-10-28" + "user": "SCHUMM DION", + "timestamp": "2020-04-12" }, { - "uuid": "16180da6-b2a4-4e04-bdd4-4e9b20aa904c", + "uuid": "11571c18-cc42-406e-98e7-d32b1d673bfa", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "DICKENS ABBY", - "timestamp": "2021-01-18" + "user": "KOELPIN MARTINE", + "timestamp": "2016-08-22" }, { - "uuid": "b8b5255f-7db2-4565-9f95-07f23e55e1ef", - "siteRegistry": true, + "uuid": "2240a185-7408-4042-ab38-438c4938b19a", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "WELCH JANAE", - "timestamp": "2020-04-09" + "user": "GERHOLD LAWSON", + "timestamp": "2016-03-04" }, { - "uuid": "bfa2e538-e15e-4bab-95cf-37b9ec3d8b7d", - "siteRegistry": false, + "uuid": "b83ea912-7c39-4322-87b2-43cb065d546d", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "HERMAN LEXUS", - "timestamp": "2020-01-24" + "user": "MEDHURST CECELIA", + "timestamp": "2015-04-25" }, { - "uuid": "8516783a-29a3-49b6-a6fe-2be548cfa88d", + "uuid": "e5dff480-2daf-42eb-aeca-af8782047170", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "FRAMI WILL", - "timestamp": "2017-11-10" + "user": "KLEIN LORENA", + "timestamp": "2017-04-29" }, { - "uuid": "a18b6d5c-3608-405f-9169-5811ef1e3ee3", + "uuid": "cdccf5a8-6239-4bac-9a80-36ac92e993b2", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "CASPER LANEY", - "timestamp": "2016-04-15" + "user": "HOWE JADA", + "timestamp": "2021-12-27" }, { - "uuid": "e7c3d60e-8f5c-4d25-919b-b23d2e64ed92", - "siteRegistry": true, + "uuid": "8d365792-e571-444e-bb6a-a2aec99607fc", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "BARTELL THERESE", - "timestamp": "2020-05-29" + "user": "NADER ORLAND", + "timestamp": "2023-07-24" }, { - "uuid": "c92b2cbc-3bd4-496e-94e2-f78f42c7666d", - "siteRegistry": true, + "uuid": "50892b4a-358f-4085-a5a9-c5baa840b2a4", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "MULLER ERIC", - "timestamp": "2022-03-01" + "user": "LEANNON-DUBUQUE HOLLIE", + "timestamp": "2022-04-11" } ], "associatedSites": [ { - "uuid": "721c8625-6c06-44ac-991a-3cf6bf690e44", - "dateNoted": "2021-09-25", - "notes": "", - "parcelID": "17237", - "siteID": "18806", - "siteRegistry": false - }, - { - "uuid": "35fc80ee-1d67-4315-a382-d738036fb621", - "dateNoted": "2022-09-04", + "uuid": "6f36e90a-0ff0-47ad-890b-53f63ad96f67", + "dateNoted": "2017-10-12", "notes": "", - "parcelID": "17668", - "siteID": "17769", - "siteRegistry": false + "parcelID": "18153", + "siteID": "15218", + "siteRegistry": true } ] }, { - "uuid": "7ba7f0e0-6b36-4e04-a5dc-61e2d2abb924", - "siteID": 15264, - "address": "6307 Hickle Way", - "latitude": 53.3911, - "longitude": -130.146, - "lastUpdated": "2022-04-06", - "city": "Bahringerland", + "uuid": "05f47b73-41ea-4423-b68d-7d184ae461a5", + "siteID": 20786, + "address": "102 Balistreri Hill", + "latitude": 49.497, + "longitude": -122.8709, + "lastUpdated": "2018-04-08", + "city": "Missouristead", "region": " North Coast", - "victoriaFile": "26250-20/8226", + "victoriaFile": "26250-20/10970", "regionalFile": "N/A", "parcelIDs": [ - 2709501, - 6070575, - 4284554, - 1956643, - 9954895 + 8236580, + 4516832, + 2135872, + 5739581, + 5858297 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "286d7141-1aeb-49ed-a089-4d15169f94cb", - "createdAt": "2018-10-14", - "completed": "2015-11-06", - "initiated": "2015-08-02", - "ministryContact": "BOGAN MARIANNE", + "uuid": "a29a69bf-23f8-448a-bd36-04ca16919cbc", + "createdAt": "2019-04-05", + "completed": "2015-06-23", + "initiated": "2017-11-04", + "ministryContact": "ZBONCAK CLARABELLE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -9976,112 +11481,44 @@ ], "notationParticipants": [ { - "uuid": "7fd979b9-a7ac-44b8-a991-29051af1328e", + "uuid": "20fbfe97-e864-4f5d-8449-3c6879d01dd7", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "04ce4cf8-3ab1-4562-8afb-ed12c6356ecb", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "uuid": "20c22442-16c7-4ce8-a5b2-e89297fe4bff", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - } - ], - "siteRegistry": false - }, - { - "uuid": "403945d3-0608-4280-a464-af0c0ea76e04", - "createdAt": "2019-06-06", - "completed": "2015-03-11", - "initiated": "2013-12-04", - "ministryContact": "UPTON-FRIESEN SOLEDAD", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "uuid": "88af780c-5d2e-4266-a195-2fc26fb9b387", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "uuid": "983792e4-543f-40b5-83c2-50112f90c30a", + "uuid": "662f4dc0-7118-4d2c-9e22-2f1399f5e0e1", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "8c9e8517-5321-41f7-ae18-6f6c5486dc96", - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - } - ], - "siteRegistry": true - }, - { - "uuid": "54442cdd-adf0-4634-ba00-527fa250694b", - "createdAt": "2020-06-30", - "completed": "2022-08-23", - "initiated": "2013-12-23", - "ministryContact": "ROOB MARIAH", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "uuid": "0d5d7c62-ecca-4382-9770-d32ce5be070c", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "uuid": "6a342bca-3e4a-4a6d-bb61-0ba76bc22149", + "uuid": "5106312a-c9b6-4fd4-b318-e38320dfcc56", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "uuid": "102caaa2-6390-4935-a7dc-b5bc88ac8a27", - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", "siteRegistry": true }, { - "uuid": "c00edf36-a50a-4ed9-9d27-d18a6e04e2ef", + "uuid": "54beacb0-75a6-4894-a2b9-966f56710a4a", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false }, { - "uuid": "0bf7a311-3769-4271-844b-35298b2f602d", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "uuid": "382454cf-92d6-4e3b-97e6-4ca41d8a7998", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "6d933143-4f2e-4fb1-9b4e-19d75de2c8fe", - "createdAt": "2016-05-09", - "completed": "2019-09-13", - "initiated": "2016-06-08", - "ministryContact": "KSHLERIN DEE", + "uuid": "14908b26-f814-4c23-bf09-0ba96fbaf000", + "createdAt": "2020-10-11", + "completed": "2023-03-06", + "initiated": "2015-03-30", + "ministryContact": "ROBERTS FREEDA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -10090,54 +11527,32 @@ ], "notationParticipants": [ { - "uuid": "4477e1a5-72de-4be5-ba6a-9dd492058de7", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "uuid": "7eb79c39-3881-4a0f-ac54-110dcd7250fc", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": true }, { - "uuid": "e3928b57-6cd6-4033-b70d-065dd93dee80", - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "098ac59f-5d7b-4614-9a14-94f821a20d96", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true - } - ], - "siteRegistry": true - }, - { - "uuid": "671bd7ca-e099-42c3-aa44-46e503b6bd80", - "createdAt": "2017-04-17", - "completed": "2015-10-09", - "initiated": "2016-12-05", - "ministryContact": "WILLIAMSON PAUL", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "uuid": "616b0351-a92f-4d18-a525-80036990793f", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false }, { - "uuid": "1c5870d2-133f-4599-a7f7-c966eaac7146", + "uuid": "d425bbb4-ef7c-4581-9ab8-11981f101095", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "b9db26f0-b497-40ff-9f20-b88498c24e1e", + "uuid": "29734e64-ba9d-4bef-b592-1741ae7fb3ca", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false + "role": "SUBMITTED BY", + "siteRegistry": true }, { - "uuid": "9e51f0a1-7a67-4d2e-a2a7-5f0c44625fcf", - "name": "SHELL CANADA PRODUCTS", + "uuid": "c9ecc585-b945-49e0-aff6-704b779f0a0f", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true } @@ -10147,139 +11562,199 @@ ], "participants": [ { - "uuid": "515c8bcc-0cc9-4635-b6b0-8f17a9b2b822", + "uuid": "c35f8372-548c-4539-b0eb-ab2e61f956cd", "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2023-05-01", - "startDate": "2014-09-07", + "endDate": "2023-05-29", + "startDate": "2016-09-02", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "415174ed-cf5b-4846-bf54-c673d54c01bc", - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2021-01-07", - "startDate": "2021-10-09", + "uuid": "3290ba66-2760-4737-bac7-9eb124515a69", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2015-07-24", + "startDate": "2018-06-15", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "8491e47f-ddcf-4fcd-b3ab-e3f17c5a6046", + "uuid": "c5031a30-7c96-48c1-9829-94a7475d6640", "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2018-11-03", - "startDate": "2018-07-21", + "endDate": "2022-11-02", + "startDate": "2023-09-26", "notes": "", "roles": [ "EMPLOYEE" ], "siteRegistry": false + }, + { + "uuid": "b8ba5891-b288-4939-99fc-ca6ebf7302b0", + "name": "IPSUM", + "endDate": "2014-01-30", + "startDate": "2016-08-19", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "uuid": "79c4e94e-fb68-4ff6-8366-bf1fada500ff", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2023-08-07", + "startDate": "2017-02-16", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true } ], - "suspectLandUses": [ + "documents": [ { - "uuid": "5bf82a0d-ebae-41bc-b460-d04a665dba90", + "uuid": "8be31972-de41-4eaa-b920-b13992ab9ce7", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2023-02-19 (described on Site Profile dated 2023-02-19)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" - }, + "documentDate": "2013-10-20", + "receivedDate": "2023-01-25", + "uploadedDate": "2023-01-08", + "title": "Summary of Site Conditions, 1537 W 41st Avenue, Vancouver", + "participants": [ + { + "uuid": "5900d6f8-4a9f-42ad-ba02-6909e1f9ee5b", + "name": "AMET, DOLOR SIT", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "44064709-f9f7-47a7-bbea-26b40d107b68", + "name": "AMET, DOLOR SIT", + "siteRegistry": false, + "role": "AUTHOR" + } + ] + } + ], + "suspectLandUses": [ { - "uuid": "9fcc0f30-647a-4fcb-ad65-2364d41955cf", + "uuid": "7e524b7e-3f74-41d2-8701-70693a10c8fc", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2020-02-09 (described on Site Profile dated 2020-02-09)", + "notes": "INSERTED FOR SITE PROFILE DATED 2023-04-06 (described on Site Profile dated 2023-04-06)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "uuid": "245ff198-9f9e-4f11-8730-a610b95a00d6", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2023-10-10 (described on Site Profile dated 2023-10-10)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "uuid": "2db1a18a-c15d-4def-a6d8-b6450db3beca", - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-06-01 (described on Site Profile dated 2018-06-01)", + "uuid": "4c7d1dc5-b0c3-484e-81ff-9b4063cb574d", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2014-11-24 (described on Site Profile dated 2014-11-24)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "uuid": "965f4bee-7128-48c2-9db5-aca834bcab17", - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-04-23 (described on Site Profile dated 2021-04-23)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "uuid": "8b4cf325-ad95-4ce2-9cde-6a9889403a4f", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2013-12-27 (described on Site Profile dated 2013-12-27)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], "parcelDescriptions": [ { - "uuid": "9b8d5dd4-d8c3-4dc1-bb4c-a1237501f7c9", - "siteRegistry": true, - "dateNoted": "2016-06-09", - "parcelID": "15838", - "crownLandUsePIN": "17172", - "crownLandFileNumber": "16162", - "landDescription": "LOT 5 OF LOT 4 BLOCK 5 DISTRICT LOT 4 PLAN 4709" - }, - { - "uuid": "1d367697-869f-45c7-b038-bfff4d23a8bf", - "siteRegistry": true, - "dateNoted": "2018-12-29", - "parcelID": "19354", - "crownLandUsePIN": "16338", - "crownLandFileNumber": "19240", - "landDescription": "LOT 2 OF LOT 3 BLOCK 5 DISTRICT LOT 4 PLAN 4558" - }, - { - "uuid": "0cbe5a29-6162-46ea-8ce1-1072df2ccf85", + "uuid": "4b4d980b-5d12-453d-98e7-7b30c8d84af0", "siteRegistry": false, - "dateNoted": "2021-04-09", - "parcelID": "20019", - "crownLandUsePIN": "19962", - "crownLandFileNumber": "18020", - "landDescription": "LOT 3 OF LOT 3 BLOCK 3 DISTRICT LOT 3 PLAN 6470" + "dateNoted": "2014-06-05", + "parcelID": "16257", + "crownLandUsePIN": "19013", + "crownLandFileNumber": "20537", + "landDescription": "LOT 1 OF LOT 2 BLOCK 1 DISTRICT LOT 4 PLAN 8742" }, { - "uuid": "cb795c5c-601a-4c64-ab91-e1f152f56bb1", - "siteRegistry": true, - "dateNoted": "2018-07-06", - "parcelID": "15872", - "crownLandUsePIN": "19575", - "crownLandFileNumber": "20273", - "landDescription": "LOT 2 OF LOT 4 BLOCK 3 DISTRICT LOT 3 PLAN 3585" + "uuid": "e6603bd4-bb06-4eef-b1a2-777ee60ff8d0", + "siteRegistry": false, + "dateNoted": "2015-03-18", + "parcelID": "15397", + "crownLandUsePIN": "20868", + "crownLandFileNumber": "20021", + "landDescription": "LOT 1 OF LOT 1 BLOCK 2 DISTRICT LOT 5 PLAN 4417" }, { - "uuid": "d185e50b-e6be-4a3c-8e44-4aace2c4a7c4", + "uuid": "75ce1517-4633-4af9-99b1-88753e12aac4", "siteRegistry": false, - "dateNoted": "2023-04-02", - "parcelID": "16777", - "crownLandUsePIN": "18251", - "crownLandFileNumber": "18187", - "landDescription": "LOT 1 OF LOT 5 BLOCK 4 DISTRICT LOT 4 PLAN 6874" + "dateNoted": "2016-10-29", + "parcelID": "17737", + "crownLandUsePIN": "18269", + "crownLandFileNumber": "19082", + "landDescription": "LOT 3 OF LOT 5 BLOCK 1 DISTRICT LOT 2 PLAN 9763" } ], "siteDisclosures": [ { - "uuid": "6c0bdb6f-3606-449d-a27a-b7edde6cda6b", + "uuid": "18d75c7f-e213-494e-91e8-b97edb9cd844", "siteRegistry": false, - "dateReceived": "2019-07-13", - "dateCompleted": "2021-11-24", - "dateEntered": "2022-01-03", - "dateRegistrar": "2018-04-28", - "dateLocalAuthorityReceived": "2014-07-20", - "summary": "Unde impedit neque modi porro molestiae doloribus suscipit ea.\nQuo eius dolores possimus corrupti error dolorem doloribus nihil.", - "informationUsed": "Reprehenderit cum iure fuga mollitia minus voluptatum asperiores.\nAutem suscipit nam cumque illo consequuntur.\nSit nisi ipsa.", - "pastOrPresentOrders": "Blanditiis eveniet natus officiis libero perspiciatis quo at.", + "dateReceived": "2021-05-12", + "dateCompleted": "2021-02-27", + "dateEntered": "2019-06-21", + "dateRegistrar": "2014-06-14", + "dateLocalAuthorityReceived": "2014-03-19", + "summary": "Esse facere ratione iste aut laborum minima dolorum.\nEligendi exercitationem veniam est tempore amet a praesentium.\nQui exercitationem itaque incidunt distinctio eveniet dolor in.", + "informationUsed": "Similique iusto quod sunt ex placeat iste modi corrupti aperiam.\nNon nulla iste harum aliquid voluptatum voluptate laboriosam quas neque.\nAtque earum sapiente ipsa.", + "pastOrPresentOrders": "Mollitia culpa minima voluptatem molestias rerum voluptatibus facere molestias.", "commercialAndIndustrialPurposes": [ { - "uuid": "6a0a6515-b2f3-470b-a535-29f16002054f", + "uuid": "c6543f72-d5f9-41ce-bc0f-62a4ef8e174a", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "f7d39aec-9b63-4d67-9e01-3573c12b3b2d", + "uuid": "7e9d7a79-4ca5-4609-b1a5-afa64f5446d6", "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + } + ] + }, + { + "uuid": "00aa4006-b085-43bf-b396-3ae7508c3d66", + "siteRegistry": false, + "dateReceived": "2022-06-02", + "dateCompleted": "2022-11-13", + "dateEntered": "2020-05-27", + "dateRegistrar": "2021-12-12", + "dateLocalAuthorityReceived": "2014-11-13", + "summary": "Possimus voluptate corporis maiores facilis dolores deserunt accusantium modi.", + "informationUsed": "Assumenda quis laborum ad vel alias.\nDignissimos perspiciatis est culpa omnis explicabo beatae eaque voluptas fuga.\nPlaceat laborum temporibus ullam vel a sapiente esse.\nRepellendus nihil maiores commodi quam eum excepturi numquam quae.", + "pastOrPresentOrders": "Modi consequatur quia harum laborum quaerat eius ex quod temporibus.\nSequi voluptates perferendis nihil mollitia omnis consequuntur.\nVeniam inventore labore perspiciatis expedita sequi saepe.", + "commercialAndIndustrialPurposes": [ + { + "uuid": "d52ef5c8-1eaf-4544-9b06-1f4efdf67e73", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "uuid": "76e9eac8-408b-4073-92df-630c343a33c9", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "uuid": "cf7ca8b2-55c2-479b-8a3b-96f6286c832d", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { - "uuid": "2193d5dd-f449-4c52-9e38-c3da9788258e", + "uuid": "8820e4c1-75e1-4dca-968d-6be9d9256b0a", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false @@ -10289,107 +11764,122 @@ ], "activityLog": [ { - "uuid": "c4489099-c467-4a29-9d31-e7190a7043a2", + "uuid": "f95c3491-551b-40a5-a13a-e6d7be986ad6", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "ABSHIRE FELIX", - "timestamp": "2020-10-15" + "user": "EMMERICH JENSEN", + "timestamp": "2015-02-03" }, { - "uuid": "58ee91f3-acf3-40e5-a40e-8fce92723da9", - "siteRegistry": true, + "uuid": "b658b217-e31c-4ac9-902b-d08efc1d1962", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "HAAG OTHO", - "timestamp": "2017-12-22" + "user": "MITCHELL ASA", + "timestamp": "2018-10-12" + }, + { + "uuid": "842f87e6-a5eb-4675-8a69-7af3a6df1b78", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "HAHN GIUSEPPE", + "timestamp": "2018-06-15" }, { - "uuid": "735b5443-3df8-4ebb-93ac-69b56f0a6869", + "uuid": "d1d4c5ed-f04b-4e0d-8bb5-27a59962d6f9", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "MCCULLOUGH-CRUICKSHANK DAVION", - "timestamp": "2018-06-24" + "user": "SATTERFIELD GLADYCE", + "timestamp": "2014-07-23" }, { - "uuid": "7841e32f-b4d6-41ac-8608-120208252328", - "siteRegistry": false, + "uuid": "b9bf85ed-4220-4678-842c-ce5dbf78a536", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "POWLOWSKI BIANKA", - "timestamp": "2023-01-13" + "user": "KUHN GEORGE", + "timestamp": "2018-08-15" }, { - "uuid": "2db932dd-c180-4512-b08b-9d2b971720be", + "uuid": "91501e34-7f52-4325-8c9e-2fde06e83095", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "BLOCK VERONA", - "timestamp": "2017-11-25" + "user": "TORP ETHAN", + "timestamp": "2021-12-22" }, { - "uuid": "beb412f6-2ca0-481f-b181-eba80a4ed6c1", + "uuid": "554ea49f-9e1d-46ce-a6d6-8d5abc43fb9a", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "FRIESEN HALEY", - "timestamp": "2021-03-07" + "user": "FADEL ELISA", + "timestamp": "2014-10-04" }, { - "uuid": "30c7423c-7c4e-4f39-8ee2-3b36a5620dbd", + "uuid": "40e26ddc-c1d5-4ff7-8b9d-73b77d95e211", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "KUTCH DAKOTA", - "timestamp": "2014-10-04" + "user": "MITCHELL SPENCER", + "timestamp": "2017-06-11" }, { - "uuid": "97ab6565-cc5f-408b-a940-c84f6a356e4b", + "uuid": "ea997adf-cbf5-40a3-9c1d-25090c71d7f2", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "HESSEL LUCIE", - "timestamp": "2019-01-12" + "user": "HETTINGER CLEMENS", + "timestamp": "2021-03-29" } ], "associatedSites": [ { - "uuid": "6d30f23f-b92e-436e-a42e-3559bfb87664", - "dateNoted": "2019-02-14", + "uuid": "3afaff3f-697f-421d-8221-6b00a41e686b", + "dateNoted": "2020-08-22", + "notes": "", + "parcelID": "18558", + "siteID": "16454", + "siteRegistry": true + }, + { + "uuid": "aace19ab-821f-47d6-b5ae-1999c38300f4", + "dateNoted": "2022-04-06", "notes": "", - "parcelID": "16005", - "siteID": "20573", + "parcelID": "17011", + "siteID": "16129", "siteRegistry": true }, { - "uuid": "2271ac6e-2f11-451c-84a6-440d9428d8d6", - "dateNoted": "2022-01-05", + "uuid": "fa511eab-a552-445a-9fe5-8711ddfd18ff", + "dateNoted": "2020-01-30", "notes": "", - "parcelID": "19270", - "siteID": "20381", + "parcelID": "16981", + "siteID": "17686", "siteRegistry": true } ] }, { - "uuid": "45b3b50e-fc67-43b7-bcab-99663415efb4", - "siteID": 18496, - "address": "85851 Garnett Mountain", - "latitude": 57.0668, - "longitude": -124.8432, - "lastUpdated": "2021-05-08", - "city": "Carterfort", - "region": "Cariboo", - "victoriaFile": "26250-20/1113", + "uuid": "529242d2-dcab-4645-9086-862cc63e701b", + "siteID": 17033, + "address": "77824 Edmund Trail", + "latitude": 53.8353, + "longitude": -121.9409, + "lastUpdated": "2017-04-03", + "city": "East Kasey", + "region": "Thompson-Okanagan", + "victoriaFile": "26250-20/7908", "regionalFile": "N/A", "parcelIDs": [ - 3785696, - 2979156, - 2852721, - 4170077, - 5722187 + 8717147, + 2428833, + 1513827, + 6623363, + 7052324 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "2268142d-13eb-40d4-9352-411ea330bae7", - "createdAt": "2023-05-30", - "completed": "2019-03-23", - "initiated": "2016-11-15", - "ministryContact": "WISOKY ABIGALE", + "uuid": "50bfb32d-095c-4c0f-a37d-b1bb7d7c7e24", + "createdAt": "2022-07-24", + "completed": "2022-05-26", + "initiated": "2021-04-01", + "ministryContact": "DOUGLAS FREDERIQUE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -10398,44 +11888,32 @@ ], "notationParticipants": [ { - "uuid": "1e10913c-ab2e-4653-a95d-c9cbca3dc21c", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "uuid": "54711cd3-5325-440a-9e6c-6db8e17b21d4", + "uuid": "423440e3-80bc-4e00-bd1f-3efef33cc8fe", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true }, { - "uuid": "f34064f7-9967-40b2-9184-e4441285e1b0", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "uuid": "51b17e28-a35a-45a9-9c9d-9d31f76fc436", - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "6a6e2f28-3500-46cd-86d2-624869634cf0", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true }, { - "uuid": "09dc725c-33d4-409d-bf45-24bdb4cab08b", + "uuid": "0942620f-8a31-420d-9319-1903190e79e7", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "55983821-85c4-431d-a7cd-4c190e1d4675", - "createdAt": "2015-02-15", - "completed": "2014-08-04", - "initiated": "2018-06-24", - "ministryContact": "O'KEEFE SAMMIE", + "uuid": "ed99ae93-aa2d-4616-9857-24d5b320ed19", + "createdAt": "2016-01-03", + "completed": "2014-06-12", + "initiated": "2016-10-28", + "ministryContact": "BOGISICH CHRISTOPHE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -10444,44 +11922,44 @@ ], "notationParticipants": [ { - "uuid": "c1474ce3-6829-4916-874e-fdd53069c36f", + "uuid": "98af994c-435e-4cc3-94ed-175695139901", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true + "role": "SUBMITTED BY", + "siteRegistry": false }, { - "uuid": "03062163-4d4d-449c-a29c-e801f35bc3d3", + "uuid": "a0af7222-b49f-4752-b4e0-df777a8a4f45", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "153c2d60-fc26-4f5f-a165-3fff53165084", - "name": "SHELL CANADA PRODUCTS", + "uuid": "b95b9107-eee9-4137-8545-65b15b170e42", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "1ade8308-7b2a-4d3f-8025-a1d96bd4247b", + "uuid": "e3bea89c-8893-4b97-bb2e-b2dc0c5bc0d1", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "9b09195b-4521-4b7d-a03c-b1c39709df75", + "uuid": "27dec895-97f8-487a-81ca-5f9f88d2f027", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false + "role": "REQUESTED BY", + "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "e109762d-cc37-4348-8c16-7f739654c17c", - "createdAt": "2020-12-18", - "completed": "2015-01-21", - "initiated": "2018-01-19", - "ministryContact": "JACOBSON ASHLEY", + "uuid": "2d5afbaa-ae81-4006-8691-282482a89072", + "createdAt": "2015-08-23", + "completed": "2016-09-16", + "initiated": "2014-06-13", + "ministryContact": "LITTEL VANESSA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -10490,38 +11968,44 @@ ], "notationParticipants": [ { - "uuid": "e0109c96-8638-4591-bf72-c7c54ac02549", - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "e2815fcf-50e9-458c-8b2a-4fa1d8ac4877", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "4a41f72a-bd9a-4a5a-b233-22332f5e9cd4", + "uuid": "866f3ee8-a605-48c1-a94a-028b936d9f62", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "72b16053-fca2-4cb2-b880-e49c7d7975d9", + "uuid": "ee8cc81f-38c0-4dac-88dd-28a71e3fa186", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false }, { - "uuid": "9abd96a9-ccae-417d-8afb-d7d0f6ca75f1", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false + "uuid": "d2856ed8-55ed-4f46-b838-65586cf4446e", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "uuid": "a631d7d9-5a28-420b-85ad-3d73b3ffc5c9", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "faa05e9a-6a49-4872-9234-9c10347ded4e", - "createdAt": "2018-03-15", - "completed": "2014-05-04", - "initiated": "2021-07-19", - "ministryContact": "DICKENS LEXI", + "uuid": "7c0ac098-ecff-4df7-8d7c-803e01f39fbc", + "createdAt": "2015-01-13", + "completed": "2018-10-03", + "initiated": "2014-04-20", + "ministryContact": "RAYNOR AURELIO", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -10530,34 +12014,56 @@ ], "notationParticipants": [ { - "uuid": "39707336-5931-4701-834f-3ab817cae06c", - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "b681562a-f5c4-43d3-a210-c9026b8a90ea", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false }, { - "uuid": "518c6142-5ff6-4e76-96b6-304b9a6536ed", + "uuid": "008777bf-65cd-4554-a121-cd5de9999213", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false - }, + } + ], + "siteRegistry": false + }, + { + "uuid": "d8044f2b-df70-498c-8b70-23c926b6a862", + "createdAt": "2019-11-10", + "completed": "2015-04-08", + "initiated": "2019-10-06", + "ministryContact": "SCHULIST NAPOLEON", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ { - "uuid": "66437784-35e1-49c7-88de-c8924a56f5f3", - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "uuid": "60786bcb-8401-4ff0-88d8-e559d74da310", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "54513ef7-8f51-44d2-8ad5-23f5387c7110", - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "3083cf08-842d-4ee0-a223-cda3deafdccf", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "6f0bb195-e50a-43dc-aac0-f155c3f4fec0", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "uuid": "471b3968-a78c-4f93-8411-bcc64c1ac738", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": true + }, + { + "uuid": "163ffde1-1d9e-4c97-8a8d-d6ee82dc14e2", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false } ], "siteRegistry": false @@ -10565,10 +12071,10 @@ ], "participants": [ { - "uuid": "d1e17a02-da38-45be-8bac-a5510f019b9d", + "uuid": "621059c9-5f38-47fa-8481-c57513d6e737", "name": "SHELL CANADA PRODUCTS", - "endDate": "2016-07-07", - "startDate": "2017-06-29", + "endDate": "2018-07-31", + "startDate": "2022-06-20", "notes": "", "roles": [ "EMPLOYEE" @@ -10576,43 +12082,32 @@ "siteRegistry": true }, { - "uuid": "ea9a1f4f-bb5f-488d-aadf-0fa111545a15", - "name": "IPSUM", - "endDate": "2014-07-26", - "startDate": "2023-07-21", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": false - }, - { - "uuid": "06ec389c-45ae-48e2-9a46-5ab6d1b70fc8", - "name": "IPSUM", - "endDate": "2014-02-18", - "startDate": "2021-11-06", + "uuid": "82f79581-6898-4d8c-b24e-99ce5c14f63c", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2020-07-30", + "startDate": "2019-08-22", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "7ee092ac-34fb-4a6a-bef1-6dd48b4c041c", + "uuid": "26bfff8e-575e-4fd1-8d27-a26313085bf3", "name": "IPSUM", - "endDate": "2023-08-09", - "startDate": "2014-12-10", + "endDate": "2016-01-13", + "startDate": "2016-04-15", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": true }, { - "uuid": "f98989c8-d5db-4eea-a91c-d92d9249324d", - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2017-05-26", - "startDate": "2015-06-23", + "uuid": "bbbf1b9a-0ef1-4b78-bb65-a3c589d71e47", + "name": "IPSUM", + "endDate": "2014-07-21", + "startDate": "2017-03-17", "notes": "", "roles": [ "EMPLOYEE" @@ -10620,140 +12115,180 @@ "siteRegistry": false } ], - "suspectLandUses": [ + "documents": [ { - "uuid": "99f12916-3013-404d-8248-e1faa9816b64", + "uuid": "47f6063a-a4f0-4f80-b960-1c40e883b99b", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-04-22 (described on Site Profile dated 2022-04-22)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "documentDate": "2015-01-19", + "receivedDate": "2020-11-06", + "uploadedDate": "2019-05-11", + "title": "Preliminary Site Investigation, Detailed Site Investigation and Remedial Plan for the Management Area adjacent to the Shell Site at 1503 West 41st Ave", + "participants": [ + { + "uuid": "a8551f68-11f9-4245-806e-6bc1f4a8f92a", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "b0b8ad57-1f90-4232-b1eb-fa8bab6d218f", + "name": "IPSUM", + "siteRegistry": true, + "role": "AUTHOR" + } + ] }, { - "uuid": "38d52207-cfcb-4d88-ab20-2a2e1dd30b58", - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-10-15 (described on Site Profile dated 2018-10-15)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "uuid": "08eb2462-14b3-4afa-b924-027303ce02ff", + "siteRegistry": false, + "documentDate": "2019-06-04", + "receivedDate": "2015-06-09", + "uploadedDate": "2019-10-16", + "title": "Summary of Site Conditions, 1537 W 41st Avenue, Vancouver", + "participants": [ + { + "uuid": "dbdc2986-83b9-4521-bd69-b35bdca80406", + "name": "IPSUM", + "siteRegistry": false, + "role": "AUTHOR" + } + ] } ], - "parcelDescriptions": [ + "suspectLandUses": [ { - "uuid": "73e09c3c-2784-4b32-9fb6-d33b41eba7a4", + "uuid": "4c248422-308a-4967-bdcc-ddd4abcf127c", "siteRegistry": true, - "dateNoted": "2022-12-25", - "parcelID": "17068", - "crownLandUsePIN": "20512", - "crownLandFileNumber": "15881", - "landDescription": "LOT 5 OF LOT 1 BLOCK 2 DISTRICT LOT 5 PLAN 8863" + "notes": "INSERTED FOR SITE PROFILE DATED 2018-05-29 (described on Site Profile dated 2018-05-29)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "uuid": "d63a2bf2-838a-4aa6-be6a-3c8e2ebe7b62", + "uuid": "b05bb6ef-672e-468d-9e58-d1e780c11319", "siteRegistry": false, - "dateNoted": "2022-04-17", - "parcelID": "17565", - "crownLandUsePIN": "20740", - "crownLandFileNumber": "18408", - "landDescription": "LOT 4 OF LOT 5 BLOCK 3 DISTRICT LOT 4 PLAN 5586" + "notes": "INSERTED FOR SITE PROFILE DATED 2015-10-26 (described on Site Profile dated 2015-10-26)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "uuid": "4d429d73-c5e4-4257-955d-06e38a34f85e", - "siteRegistry": false, - "dateNoted": "2023-01-12", - "parcelID": "18439", - "crownLandUsePIN": "17703", - "crownLandFileNumber": "17842", - "landDescription": "LOT 3 OF LOT 2 BLOCK 1 DISTRICT LOT 3 PLAN 5641" + "uuid": "e3e63614-0cd5-41e9-8735-33a3629ba285", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2023-08-03 (described on Site Profile dated 2023-08-03)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "uuid": "b00205bb-f240-4a6a-8ffe-ad7f2956c063", + "uuid": "883ebd7b-b868-41a3-8743-e7a215861b97", "siteRegistry": false, - "dateNoted": "2021-08-07", - "parcelID": "20159", - "crownLandUsePIN": "18528", - "crownLandFileNumber": "17893", - "landDescription": "LOT 1 OF LOT 4 BLOCK 5 DISTRICT LOT 5 PLAN 3374" + "notes": "INSERTED FOR SITE PROFILE DATED 2023-05-07 (described on Site Profile dated 2023-05-07)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "uuid": "24edf4b8-cb28-499e-bda1-0102a02329eb", - "siteRegistry": true, - "dateNoted": "2015-12-05", - "parcelID": "15487", - "crownLandUsePIN": "17217", - "crownLandFileNumber": "20881", - "landDescription": "LOT 4 OF LOT 2 BLOCK 1 DISTRICT LOT 1 PLAN 4708" + "uuid": "bb5be6d4-63a0-4208-a72c-9ccba43ffc4c", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2019-04-09 (described on Site Profile dated 2019-04-09)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], - "siteDisclosures": [ + "parcelDescriptions": [ + { + "uuid": "b488c4cd-df9d-4760-a15f-a34601bc81d9", + "siteRegistry": false, + "dateNoted": "2019-09-20", + "parcelID": "17215", + "crownLandUsePIN": "17080", + "crownLandFileNumber": "20866", + "landDescription": "LOT 4 OF LOT 2 BLOCK 2 DISTRICT LOT 4 PLAN 9336" + }, { - "uuid": "b3f661e4-7a02-45a9-8fc7-39025eddf8d8", + "uuid": "ceae148e-5176-4f36-91d0-979721f61189", "siteRegistry": true, - "dateReceived": "2022-01-24", - "dateCompleted": "2016-03-11", - "dateEntered": "2014-03-18", - "dateRegistrar": "2021-11-24", - "dateLocalAuthorityReceived": "2021-08-16", - "summary": "Magni maiores amet.\nDolorem mollitia molestiae minus similique.\nIpsam possimus facere rem excepturi maiores distinctio porro ipsa minus.", - "informationUsed": "Asperiores debitis corrupti repellendus facilis totam facere.\nDolor aliquam numquam repellendus ipsa eius sequi suscipit.\nSed magnam omnis voluptatem fugiat alias vero impedit minus.", - "pastOrPresentOrders": "Id quam magnam perferendis architecto totam sunt nulla ex.\nA illum deleniti esse voluptatem quae.\nRem tenetur provident maxime error quaerat corporis quos voluptas eaque.", - "commercialAndIndustrialPurposes": [ - { - "uuid": "8585d9b9-51fb-40ef-a430-72d65a42266d", - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true - }, - { - "uuid": "4b3f317f-dacb-4305-bbf9-0d0fddea9799", - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false - }, + "dateNoted": "2021-05-03", + "parcelID": "18448", + "crownLandUsePIN": "18078", + "crownLandFileNumber": "19161", + "landDescription": "LOT 1 OF LOT 3 BLOCK 5 DISTRICT LOT 1 PLAN 5426" + }, + { + "uuid": "e6c97d63-180b-4ce1-bd68-05072488d18f", + "siteRegistry": true, + "dateNoted": "2016-11-16", + "parcelID": "19686", + "crownLandUsePIN": "17712", + "crownLandFileNumber": "18951", + "landDescription": "LOT 3 OF LOT 5 BLOCK 1 DISTRICT LOT 1 PLAN 6058" + }, + { + "uuid": "42a7ab3c-eb55-44ee-abde-204e4b2f1e7c", + "siteRegistry": false, + "dateNoted": "2018-11-12", + "parcelID": "20567", + "crownLandUsePIN": "20613", + "crownLandFileNumber": "17285", + "landDescription": "LOT 2 OF LOT 1 BLOCK 2 DISTRICT LOT 3 PLAN 5745" + }, + { + "uuid": "5e93e96d-965f-4d85-94f8-8d55246f67fc", + "siteRegistry": false, + "dateNoted": "2021-05-26", + "parcelID": "18771", + "crownLandUsePIN": "18664", + "crownLandFileNumber": "19670", + "landDescription": "LOT 3 OF LOT 3 BLOCK 3 DISTRICT LOT 4 PLAN 4847" + } + ], + "siteDisclosures": [ + { + "uuid": "604a86da-c182-4c27-81a2-32d387088c1f", + "siteRegistry": false, + "dateReceived": "2022-08-28", + "dateCompleted": "2017-12-18", + "dateEntered": "2022-01-25", + "dateRegistrar": "2014-01-27", + "dateLocalAuthorityReceived": "2015-12-05", + "summary": "Impedit amet iure deleniti ullam impedit.", + "informationUsed": "Fugit quaerat quam.\nRerum deserunt laudantium.\nVelit vero deleniti dolorem unde adipisci ut ab possimus animi.\nQuod nemo corporis impedit incidunt facere.\nDolorum iusto ea in doloribus culpa ut blanditiis rem.", + "pastOrPresentOrders": "Aperiam suscipit suscipit sint velit odit.\nSit hic quae id ullam eligendi alias.\nVelit eius voluptatem.", + "commercialAndIndustrialPurposes": [ { - "uuid": "3c19c758-effb-486d-8524-4e7075fe5e2d", + "uuid": "331f7283-8d93-48c4-8a3d-dc9f98063b53", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "91dbf5ff-3581-4ad9-a11e-aff074d22eac", + "uuid": "83fe2fe9-2ad2-40d4-b00f-d8276682f4c6", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false + }, + { + "uuid": "c75b43b3-9f96-439a-b96f-38a91e0a772d", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true } ] }, { - "uuid": "6f3b44f1-b654-412b-85ff-1bd73c908efb", - "siteRegistry": false, - "dateReceived": "2017-04-14", - "dateCompleted": "2021-10-05", - "dateEntered": "2019-10-27", - "dateRegistrar": "2018-03-01", - "dateLocalAuthorityReceived": "2023-03-12", - "summary": "Quibusdam cumque maiores.\nQuibusdam sint nesciunt repellat.\nIllum harum amet optio quis dolores possimus suscipit unde dolorum.", - "informationUsed": "Fuga minima deserunt culpa.\nEarum modi fugit qui non rem modi fugiat blanditiis.\nAlias blanditiis facilis ea impedit consectetur.\nDignissimos alias recusandae architecto nobis quis.\nIste cum illum omnis.", - "pastOrPresentOrders": "Odio ex sapiente nulla occaecati autem tempora neque nihil.\nDignissimos amet fugit enim quibusdam.", + "uuid": "89bbd736-b855-4809-8378-8039fadd749f", + "siteRegistry": true, + "dateReceived": "2022-12-13", + "dateCompleted": "2018-09-20", + "dateEntered": "2021-06-18", + "dateRegistrar": "2021-07-01", + "dateLocalAuthorityReceived": "2019-02-16", + "summary": "Dolor maxime nulla nulla occaecati rem odio.", + "informationUsed": "Assumenda deleniti id distinctio sequi ullam.\nDelectus iste repellat minima excepturi architecto.\nAb doloremque expedita.\nQuis veniam dicta provident nesciunt reprehenderit reiciendis.", + "pastOrPresentOrders": "Ab cum distinctio cum laboriosam praesentium est natus magnam quos.\nIpsa et sunt ipsam asperiores illo porro laborum neque eos.", "commercialAndIndustrialPurposes": [ { - "uuid": "7c06b58e-2a1f-43c0-957b-8a82a3a793d2", - "scheduleReference": "F1*", + "uuid": "27c81eab-2e9f-40f1-8b80-f47de3a207a7", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "7f8fc969-6308-4612-a109-9700915a0e16", + "uuid": "ce43d4db-949b-409d-981d-8a31ed468a23", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false - }, - { - "uuid": "058dc088-feea-4975-8ac0-16a0b14854d5", - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false - }, - { - "uuid": "1b51fe7b-b33a-401c-9917-51142d519b05", - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true } ] @@ -10761,92 +12296,107 @@ ], "activityLog": [ { - "uuid": "d83dd2cf-4d69-430b-8236-d25dda7e7795", - "siteRegistry": true, + "uuid": "73ba1d0c-0f55-40d1-8eab-1a8ffb785961", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "PFEFFER ELISSA", - "timestamp": "2018-10-14" + "user": "SWIFT ESTRELLA", + "timestamp": "2014-03-23" }, { - "uuid": "04f01bad-1d79-4dee-a971-9364d07a0b08", - "siteRegistry": true, + "uuid": "9388acfd-ad6f-41aa-83e9-397e86d0064a", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "LINDGREN RAEGAN", - "timestamp": "2016-01-25" + "user": "ZULAUF LAVONNE", + "timestamp": "2019-11-24" }, { - "uuid": "76dd3e14-d9bd-429e-ad4f-b5484d3636d1", + "uuid": "bb9f8c46-7675-487c-afec-433ab75b153b", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "KSHLERIN NOEL", - "timestamp": "2014-01-18" + "user": "KILBACK VERONA", + "timestamp": "2014-08-27" }, { - "uuid": "e29c5a12-520e-48e2-a8d4-9c42a8ac6b5e", + "uuid": "f36a980d-00ee-4add-b11b-924a0a6a3d9c", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "O'REILLY HALEY", - "timestamp": "2020-04-02" + "user": "RUTHERFORD RUSSELL", + "timestamp": "2015-03-23" + }, + { + "uuid": "913f12e4-0bd5-4ceb-a0f2-566bfa910dfa", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "HESSEL ANIYAH", + "timestamp": "2019-04-08" }, { - "uuid": "ef97f2e6-bf1a-47b9-80b1-49a144a7c3b5", + "uuid": "82a6c7f0-d39b-4fe4-8dd0-ba8931d1ffc2", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "WINTHEISER GERSON", - "timestamp": "2017-12-16" + "user": "HILLS CAMRON", + "timestamp": "2020-04-02" }, { - "uuid": "bd755fb0-75e3-4312-82bf-16f9ea8b22e6", + "uuid": "b2a750de-b22a-419f-a760-98f26da017df", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "MERTZ EMELY", - "timestamp": "2023-09-08" + "user": "DIBBERT MACI", + "timestamp": "2014-03-11" }, { - "uuid": "1489944f-def2-414f-b173-76e1cfce2efa", + "uuid": "12739ff1-26e9-41a1-a34b-aedaaf76f555", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "GULGOWSKI COLTON", - "timestamp": "2014-03-20" + "user": "O'KON AMYA", + "timestamp": "2020-06-14" } ], "associatedSites": [ { - "uuid": "91d1cced-0da0-43bc-935d-59cde5204187", - "dateNoted": "2021-08-16", + "uuid": "cb3f23a8-98db-4179-8ad1-48b785f6d152", + "dateNoted": "2019-01-11", "notes": "", - "parcelID": "16411", - "siteID": "20526", - "siteRegistry": true + "parcelID": "18230", + "siteID": "16403", + "siteRegistry": false + }, + { + "uuid": "848e4a41-a99a-48f2-98f1-bf9942b6970e", + "dateNoted": "2020-10-02", + "notes": "", + "parcelID": "18494", + "siteID": "18736", + "siteRegistry": false } ] }, { - "uuid": "90a6044c-4d92-4f67-b9f0-fc9e429841b6", - "siteID": 20687, - "address": "310 Rolfson Harbor", - "latitude": 49.565, - "longitude": -130.0795, - "lastUpdated": "2022-05-13", - "city": "Funkside", - "region": "Thompson-Okanagan", - "victoriaFile": "26250-20/15198", + "uuid": "e2ecf1fa-4754-4a53-acd8-af6527ddbb28", + "siteID": 18351, + "address": "88530 Fern Burg", + "latitude": 58.1648, + "longitude": -122.8178, + "lastUpdated": "2021-05-19", + "city": "Narcisostead", + "region": "Mainland/Southwest", + "victoriaFile": "26250-20/14241", "regionalFile": "N/A", "parcelIDs": [ - 6081931, - 4388416, - 5417078, - 9110306, - 7286348 + 4847241, + 8418056, + 8804351, + 3165717, + 8654268 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "aadd6324-2e42-426e-b8c9-6d17f72bc450", - "createdAt": "2020-03-02", - "completed": "2019-09-18", - "initiated": "2020-11-22", - "ministryContact": "KASSULKE ARNE", + "uuid": "a9a930f7-d163-4f9c-bfc2-26a2aa6b5517", + "createdAt": "2019-05-10", + "completed": "2017-08-24", + "initiated": "2023-04-10", + "ministryContact": "KRIS DEON", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -10855,118 +12405,44 @@ ], "notationParticipants": [ { - "uuid": "4e4679e4-68b9-4181-81d4-066e982c22e0", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "uuid": "a6d6c809-3e0a-4d52-be81-e19340bd3095", + "uuid": "a97bd880-06cf-4a69-8823-a2245c2fd4f2", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "uuid": "d2d59d63-b326-42a8-9e95-e06d1e890699", - "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false }, { - "uuid": "184cf062-926f-422d-9cc4-66b01f7320db", - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - } - ], - "siteRegistry": true - }, - { - "uuid": "a1f04cfe-886f-4d71-a4cc-35b0a65a0ac2", - "createdAt": "2019-02-14", - "completed": "2022-07-19", - "initiated": "2023-10-11", - "ministryContact": "FADEL EVERETTE", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "uuid": "1666c3f2-9c2d-4865-b7ea-6d87f078c196", - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "uuid": "1479160b-7339-4006-ac0c-cc674ae59d9d", - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "uuid": "7f98695e-ffc4-4256-9a34-a089ebbcb6c2", - "name": "SHELL CANADA PRODUCTS", + "uuid": "8c2dc58a-911b-40fa-bb74-e167244470ee", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false - } - ], - "siteRegistry": true - }, - { - "uuid": "5d0447f4-9a14-4e9c-94ef-70f2bfb9702a", - "createdAt": "2016-03-12", - "completed": "2017-12-08", - "initiated": "2023-10-09", - "ministryContact": "WAELCHI JERRELL", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "uuid": "52003c5e-1a52-41c2-aec3-f6a9e4075f82", - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", "siteRegistry": true }, { - "uuid": "ba4e77b1-887e-498a-b230-b878795da2ad", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "uuid": "a9f78358-d040-4374-9191-baa0a418bcd3", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": false }, { - "uuid": "09c23ded-9c99-42e3-993f-09bcb48815d4", + "uuid": "ab58f109-cbde-4b76-bb48-a176c8bf61a8", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false }, { - "uuid": "e80c7f61-78b9-4975-a39e-0ee2918a974b", + "uuid": "fbc033cb-0aa4-49d9-8ce9-98b39733fd5d", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "uuid": "80d6b257-d672-4a4f-8481-2f20a6302857", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "940e75c9-94f9-4105-bc0d-ea48f87bc2dd", - "createdAt": "2015-07-17", - "completed": "2023-04-21", - "initiated": "2019-01-31", - "ministryContact": "HUELS DAPHNEY", + "uuid": "7d82133d-2a62-44ad-b770-2e404d24e4c4", + "createdAt": "2017-05-01", + "completed": "2017-12-04", + "initiated": "2020-01-13", + "ministryContact": "FEENEY WILFORD", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -10975,200 +12451,273 @@ ], "notationParticipants": [ { - "uuid": "566cb98d-ca49-4b17-9107-2a6faa8bf27b", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "uuid": "e007c4f0-0537-4af5-870e-12ddb8e36138", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "uuid": "75f09331-6291-4095-b0db-f51005c36922", + "uuid": "de8b8d01-ddbc-42dd-9202-83baacee1e57", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "uuid": "b76277da-0080-4346-9831-bc8b4de10d78", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false }, { - "uuid": "ea201a17-beaa-43a6-b880-c85803092083", + "uuid": "be8d1623-377e-48da-a16c-f668c5196dea", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false } ], "participants": [ { - "uuid": "2c8a5614-c540-4c2e-a7b0-524af2d53a54", - "name": "IPSUM", - "endDate": "2023-08-20", - "startDate": "2020-10-20", + "uuid": "9816fe04-a2b7-4127-9084-165a8f6529af", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2022-01-10", + "startDate": "2018-05-07", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "3bf3e258-6af3-4d1e-8bbb-99a555cd637c", - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2015-08-04", - "startDate": "2022-03-25", + "uuid": "1f50790a-3da8-4ba7-88b9-d07b92c78a53", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2019-04-24", + "startDate": "2018-04-16", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false } ], - "suspectLandUses": [ + "documents": [ { - "uuid": "48dc558c-8219-4e05-a5e4-d533c7aaec00", + "uuid": "b2e95cbb-0c87-4856-bc56-385a7d6160d2", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-04-11 (described on Site Profile dated 2019-04-11)", + "documentDate": "2018-04-21", + "receivedDate": "2017-04-05", + "uploadedDate": "2017-05-04", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "6eb2f8ed-4584-43b1-ac36-8f73b3b99f58", + "name": "AMET, DOLOR SIT", + "siteRegistry": false, + "role": "AUTHOR" + } + ] + }, + { + "uuid": "4672b754-fc80-42ea-88b6-9928641c9557", + "siteRegistry": false, + "documentDate": "2015-08-06", + "receivedDate": "2014-09-16", + "uploadedDate": "2022-02-09", + "title": "Summary of Site Conditions, 1537 W 41st Avenue, Vancouver", + "participants": [ + { + "uuid": "93bb1a56-6e6f-4a25-8a4e-6b3121760dad", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": false, + "role": "AUTHOR" + } + ] + }, + { + "uuid": "86cfb165-08e9-4913-8a63-3d284c8b0c86", + "siteRegistry": true, + "documentDate": "2018-09-03", + "receivedDate": "2023-03-09", + "uploadedDate": "2021-07-10", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "a4b802d2-cc58-42b3-96d6-73cccec9dccd", + "name": "AMET, DOLOR SIT", + "siteRegistry": false, + "role": "AUTHOR" + } + ] + }, + { + "uuid": "16105733-f529-4697-a47a-48d6ae381852", + "siteRegistry": false, + "documentDate": "2021-10-07", + "receivedDate": "2014-09-21", + "uploadedDate": "2021-08-03", + "title": "Preliminary Site Investigation, Detailed Site Investigation and Remedial Plan for the Management Area adjacent to the Shell Site at 1503 West 41st Ave", + "participants": [ + { + "uuid": "1543535c-12c5-4cc3-beb5-574410b5ea79", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": true, + "role": "AUTHOR" + } + ] + }, + { + "uuid": "ea3eb464-7e82-4277-823b-8fce375d654c", + "siteRegistry": false, + "documentDate": "2022-12-07", + "receivedDate": "2016-02-11", + "uploadedDate": "2023-04-23", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "72d1a505-ec0d-456a-b09e-f2e061074d8e", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": false, + "role": "AUTHOR" + } + ] + } + ], + "suspectLandUses": [ + { + "uuid": "6e761ec0-ddfb-450d-a02b-4c5038c0d2e7", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2017-07-28 (described on Site Profile dated 2017-07-28)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "uuid": "15341af6-25d5-498f-b31f-51caee927241", + "uuid": "8f61bc01-eda3-4f6c-9971-aef43dc9639c", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-02-17 (described on Site Profile dated 2017-02-17)", + "notes": "INSERTED FOR SITE PROFILE DATED 2021-01-14 (described on Site Profile dated 2021-01-14)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "uuid": "8d569b59-8b9f-4be8-ade2-e15a9d54880f", + "uuid": "e3168258-b3ea-409e-89ca-9b2d9e739bfc", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-03-22 (described on Site Profile dated 2014-03-22)", + "notes": "INSERTED FOR SITE PROFILE DATED 2018-06-05 (described on Site Profile dated 2018-06-05)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "uuid": "c6d2aa59-d1f9-4c76-9ba2-8c9f7f8fc40a", + "uuid": "2aa09e30-a738-43d4-96c0-41639ba5b878", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2023-05-04 (described on Site Profile dated 2023-05-04)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "notes": "INSERTED FOR SITE PROFILE DATED 2023-07-05 (described on Site Profile dated 2023-07-05)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "uuid": "0ad5a287-4a4f-41cf-998a-ee6043cdf5c5", - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-07-05 (described on Site Profile dated 2015-07-05)", + "uuid": "530444ec-6b03-4c29-9ab0-f48cc3e2c117", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2019-07-25 (described on Site Profile dated 2019-07-25)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], "parcelDescriptions": [ { - "uuid": "db044cca-4463-4d8f-8ad9-ad0add44bdd3", + "uuid": "8a46a7a6-66b7-46c3-8aa8-1de388906483", "siteRegistry": false, - "dateNoted": "2020-06-10", - "parcelID": "16005", - "crownLandUsePIN": "20114", - "crownLandFileNumber": "18241", - "landDescription": "LOT 5 OF LOT 2 BLOCK 4 DISTRICT LOT 5 PLAN 4506" + "dateNoted": "2017-03-05", + "parcelID": "15256", + "crownLandUsePIN": "17288", + "crownLandFileNumber": "17239", + "landDescription": "LOT 3 OF LOT 5 BLOCK 2 DISTRICT LOT 4 PLAN 8898" }, { - "uuid": "9bf9f1ff-bd1f-409a-b7d4-55a3226e2e46", - "siteRegistry": true, - "dateNoted": "2014-05-10", - "parcelID": "18227", - "crownLandUsePIN": "15220", - "crownLandFileNumber": "18383", - "landDescription": "LOT 3 OF LOT 2 BLOCK 1 DISTRICT LOT 5 PLAN 5008" + "uuid": "604b40ac-9cea-45cd-85c7-1ca2f1be1f5c", + "siteRegistry": false, + "dateNoted": "2022-02-20", + "parcelID": "15670", + "crownLandUsePIN": "15381", + "crownLandFileNumber": "18382", + "landDescription": "LOT 2 OF LOT 5 BLOCK 5 DISTRICT LOT 2 PLAN 3674" }, { - "uuid": "417325be-a9f9-438f-97df-c24e71a97105", + "uuid": "209e01c6-6192-45f9-870a-a4c0f66c678d", "siteRegistry": false, - "dateNoted": "2016-08-16", - "parcelID": "19868", - "crownLandUsePIN": "20232", - "crownLandFileNumber": "20181", - "landDescription": "LOT 3 OF LOT 5 BLOCK 4 DISTRICT LOT 3 PLAN 3042" + "dateNoted": "2015-11-05", + "parcelID": "18832", + "crownLandUsePIN": "17115", + "crownLandFileNumber": "16392", + "landDescription": "LOT 1 OF LOT 4 BLOCK 3 DISTRICT LOT 5 PLAN 5741" + }, + { + "uuid": "353744c5-f6b9-4080-8a2b-ebca7f47bb30", + "siteRegistry": true, + "dateNoted": "2017-02-16", + "parcelID": "20163", + "crownLandUsePIN": "16446", + "crownLandFileNumber": "17504", + "landDescription": "LOT 4 OF LOT 4 BLOCK 4 DISTRICT LOT 4 PLAN 3355" }, { - "uuid": "56f9bdd1-bfcb-4624-ab49-6d21f92857c4", + "uuid": "fa0106d4-3b78-4df8-ab46-39eccf9c1458", "siteRegistry": true, - "dateNoted": "2015-01-18", - "parcelID": "15444", - "crownLandUsePIN": "16667", - "crownLandFileNumber": "15241", - "landDescription": "LOT 2 OF LOT 1 BLOCK 2 DISTRICT LOT 3 PLAN 4301" + "dateNoted": "2014-07-11", + "parcelID": "20045", + "crownLandUsePIN": "18940", + "crownLandFileNumber": "20821", + "landDescription": "LOT 1 OF LOT 3 BLOCK 2 DISTRICT LOT 3 PLAN 6946" } ], "siteDisclosures": [ { - "uuid": "1bfbf596-3805-4e19-bfe4-6116f2ccdaa8", + "uuid": "847fbbcc-b2fd-4a69-8c54-ff659838f37f", "siteRegistry": true, - "dateReceived": "2015-02-19", - "dateCompleted": "2017-01-17", - "dateEntered": "2021-04-16", - "dateRegistrar": "2017-05-24", - "dateLocalAuthorityReceived": "2017-04-06", - "summary": "Laborum iusto animi magnam delectus quod rerum nisi.\nMolestias impedit aperiam nemo odit.\nIste illum itaque numquam ullam omnis.", - "informationUsed": "Dignissimos voluptas veritatis accusamus ab fugit sequi animi ex.\nVeritatis esse occaecati doloribus aut laborum impedit iste.\nInventore optio delectus dolorum vel neque dolorum sit assumenda excepturi.", - "pastOrPresentOrders": "Saepe omnis earum mollitia.", + "dateReceived": "2016-04-22", + "dateCompleted": "2017-05-20", + "dateEntered": "2018-05-03", + "dateRegistrar": "2014-03-07", + "dateLocalAuthorityReceived": "2017-06-08", + "summary": "Possimus officia eius quasi commodi eveniet ex placeat nam.\nVoluptates corporis accusantium quidem alias inventore.\nQuasi blanditiis ipsa quam officia rerum praesentium omnis vero.", + "informationUsed": "Laudantium tenetur excepturi aut.\nRatione amet accusantium iste.\nIllo tenetur magnam tempore.", + "pastOrPresentOrders": "Maiores rem quisquam quidem nesciunt nulla.", "commercialAndIndustrialPurposes": [ { - "uuid": "6091b5c0-5fb1-4766-bb3f-5ef4caaf08fd", + "uuid": "2f04ee57-a1a4-4ccf-9ed2-995c6d85a12b", "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false }, { - "uuid": "1b0de366-d7b4-4be4-9eb1-da83e432367e", - "scheduleReference": "F2*", + "uuid": "5d742dd1-1d12-40b0-8fae-708e44912217", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, { - "uuid": "1fbf3c76-9fab-4b46-ba1f-2fa5851ce42c", + "uuid": "5ee8a42f-87ae-4498-974d-52e90ded5acc", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { - "uuid": "776f5f95-8511-481d-aafd-5f10d7b53490", - "scheduleReference": "F1*", + "uuid": "4c15f845-5733-4c33-a86a-06bfacc405f3", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false + "siteRegistry": true } ] }, { - "uuid": "1b48ed18-5e2b-4505-a876-fce02285d64b", + "uuid": "22513a56-d3de-4280-8fde-f7627c4039e8", "siteRegistry": true, - "dateReceived": "2014-10-03", - "dateCompleted": "2021-05-12", - "dateEntered": "2014-11-13", - "dateRegistrar": "2014-05-07", - "dateLocalAuthorityReceived": "2018-11-01", - "summary": "Officiis modi dolore cum reiciendis.\nMaiores necessitatibus neque reprehenderit praesentium quidem hic totam tenetur saepe.", - "informationUsed": "Reiciendis non laudantium odio similique.\nMagni eius dicta nesciunt quis excepturi.\nCommodi exercitationem adipisci.", - "pastOrPresentOrders": "Explicabo impedit omnis velit ut reprehenderit quibusdam aperiam itaque voluptatum.", + "dateReceived": "2015-12-02", + "dateCompleted": "2014-09-30", + "dateEntered": "2021-12-01", + "dateRegistrar": "2018-04-12", + "dateLocalAuthorityReceived": "2018-09-20", + "summary": "Perferendis recusandae neque ullam autem facere.\nAlias eveniet officiis quasi.\nMagnam natus est.", + "informationUsed": "Doloremque ut neque veritatis ad pariatur deserunt.\nDolore odit corrupti sapiente est officiis.\nFuga sint architecto nisi ratione illo odit.\nHarum ut a.\nArchitecto tempore dolorum.", + "pastOrPresentOrders": "Est tenetur modi mollitia.\nPerferendis velit quis aliquam quia laudantium labore natus.\nEarum ipsum non excepturi reiciendis quidem nesciunt.", "commercialAndIndustrialPurposes": [ { - "uuid": "5615c737-9c0d-4599-a3b8-76e52ee3c608", + "uuid": "391a859e-8a3c-44c4-9360-7de331734cb9", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { - "uuid": "fbeb15f8-3451-4d48-9c58-066ff16925e7", + "uuid": "a9546ce6-a9c6-4d97-8fd5-69e22e9f72b0", "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { - "uuid": "5fe44262-f8fe-4ccd-a722-4048148f6742", + "uuid": "5600a3ba-7931-49e1-90f8-f9b8a277b90b", "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true } ] @@ -11176,92 +12725,94 @@ ], "activityLog": [ { - "uuid": "205be29a-7d37-4698-b159-2915dba936e2", + "uuid": "0c912f13-426e-4b46-8d9d-199c6ec7b127", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "TORPHY LEOPOLD", - "timestamp": "2021-04-16" - }, - { - "uuid": "740c12a4-3796-468e-bb68-baaea7b5d701", - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "HEIDENREICH ZENA", - "timestamp": "2021-05-10" - }, - { - "uuid": "c79eb4cb-ec63-4d3d-b36b-0b16b4e9705a", - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "HEIDENREICH LEONARD", - "timestamp": "2022-05-31" + "user": "PROSACCO JAQUELINE", + "timestamp": "2021-12-28" }, { - "uuid": "86d3eee4-7a90-4756-9f89-fa8d4af88332", + "uuid": "bd7f2628-0653-4cdc-a91b-fcdf4af43eef", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "GOODWIN RICHARD", - "timestamp": "2023-04-17" + "user": "HARVEY DEVON", + "timestamp": "2021-04-26" }, { - "uuid": "5191d1bf-39b7-475e-ac34-cee5174e38f1", + "uuid": "c3ca309e-05ca-4f3e-af45-a5062b9211da", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "SMITH ASTRID", - "timestamp": "2017-06-01" + "user": "WILDERMAN HILLARY", + "timestamp": "2016-01-27" }, { - "uuid": "a162034e-b11c-486c-a502-7835cf52102c", + "uuid": "4876ed8b-b4d3-4ca2-95f6-f261f861360a", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "ROBERTS-SATTERFIELD ARMANDO", - "timestamp": "2021-12-06" + "user": "DAUGHERTY JAROD", + "timestamp": "2023-10-13" }, { - "uuid": "ba268d7d-9291-427b-b41f-f82ba9d7b8c8", + "uuid": "2bc99e73-f48d-47e0-96c5-fd9c0a4fca1a", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "HILLS ANTONIO", - "timestamp": "2016-09-13" + "user": "BECHTELAR AARON", + "timestamp": "2021-10-11" } ], "associatedSites": [ { - "uuid": "3556a496-65c8-4b9b-bcb1-6ee9d4bd7112", - "dateNoted": "2014-04-30", + "uuid": "aa6acd54-4ea6-43bc-a117-efaf032f8e66", + "dateNoted": "2021-02-23", "notes": "", - "parcelID": "18405", - "siteID": "18294", + "parcelID": "16527", + "siteID": "17053", "siteRegistry": false + }, + { + "uuid": "d5ac2963-2863-485b-aa3d-c6dfd2c86eba", + "dateNoted": "2017-11-10", + "notes": "", + "parcelID": "17382", + "siteID": "20562", + "siteRegistry": true + }, + { + "uuid": "4db86d2b-313a-4656-8a0d-0dc81c78d28f", + "dateNoted": "2019-06-06", + "notes": "", + "parcelID": "19211", + "siteID": "18494", + "siteRegistry": true } ] }, { - "uuid": "3384e6f4-3010-4e68-84aa-5cf8128f0442", - "siteID": 19730, - "address": "681 Towne Court", - "latitude": 50.1902, - "longitude": -134.5733, - "lastUpdated": "2018-11-26", - "city": "New Laishacester", + "uuid": "098697b1-9866-4cfc-a8ec-9cb66467c5a9", + "siteID": 15218, + "address": "9231 Rachael Wells", + "latitude": 48.3281, + "longitude": -133.5165, + "lastUpdated": "2017-04-22", + "city": "Floriantown", "region": "Mainland/Southwest", - "victoriaFile": "26250-20/19349", + "victoriaFile": "26250-20/16401", "regionalFile": "N/A", "parcelIDs": [ - 1331551, - 5351880, - 2790650, - 7312844, - 9557507 + 3472863, + 9367042, + 1678483, + 8492653, + 3726881 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "bc4f552d-dde2-4ce8-ab9e-d2659a4c84a7", - "createdAt": "2018-04-21", - "completed": "2016-04-12", - "initiated": "2020-07-14", - "ministryContact": "LEHNER ALIYA", + "uuid": "d7f1269e-b179-4e2d-8d4e-cf3ef724ea4a", + "createdAt": "2023-06-21", + "completed": "2022-06-05", + "initiated": "2020-07-01", + "ministryContact": "BARTELL-FUNK RUTHIE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -11270,38 +12821,60 @@ ], "notationParticipants": [ { - "uuid": "fb1d2218-2f4e-476e-adae-c89f26ebe39d", + "uuid": "8175e2f6-c882-4f4c-82d2-f463edd56464", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true }, { - "uuid": "ccd87243-b90f-46bc-9bab-8bd2708253c2", + "uuid": "dbbc5b65-9fb0-406d-86e7-941bb3b70b84", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "uuid": "19386445-d6e6-4db8-870f-57d01ff66cbf", + "createdAt": "2015-10-25", + "completed": "2018-12-05", + "initiated": "2014-08-12", + "ministryContact": "AUER KARL", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "uuid": "4aee73d7-66c7-4cbb-89e7-33f95b3b13d8", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "8681d705-e272-4813-a570-c3d44e12524d", + "uuid": "4257f19a-2183-48ad-b71e-09af9908bec8", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "b9a4ae0c-701a-4860-b038-8beb20a96fbf", + "uuid": "b0e83012-1b50-48ad-a812-f4f39d409176", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false } ], "siteRegistry": false }, { - "uuid": "67a49043-eb70-48c8-9e04-47ced7e5d9d5", - "createdAt": "2022-05-29", - "completed": "2021-03-03", - "initiated": "2017-12-23", - "ministryContact": "JOHNSON BERRY", + "uuid": "ff91ff4b-4997-4d50-8d9a-68b7c510610a", + "createdAt": "2023-03-12", + "completed": "2014-03-23", + "initiated": "2020-04-07", + "ministryContact": "FEENEY ADAN", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -11310,25 +12883,19 @@ ], "notationParticipants": [ { - "uuid": "afd2e802-9aae-42de-98db-7d65edb2b604", + "uuid": "50f7e3a8-55f5-4f59-b6ff-ea61dd49c9ca", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "4ee88633-e0c8-46bd-b387-ce53bb6584fe", - "name": "SHELL CANADA PRODUCTS", + "uuid": "b5d23e2e-1038-40e0-9acd-04dd1e704ddc", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true }, { - "uuid": "10f2db5d-21a8-4704-b17c-3c0b856aa5b5", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "uuid": "ec4e97de-d2c4-45a1-9d4b-c7f77ea722f4", + "uuid": "0ded1f49-b7f3-402b-bb71-e93558a03c70", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true @@ -11337,11 +12904,11 @@ "siteRegistry": true }, { - "uuid": "784b119e-7497-4144-a6e0-ff02dffe18a4", - "createdAt": "2019-01-12", - "completed": "2023-10-06", - "initiated": "2021-09-17", - "ministryContact": "ABSHIRE MADELYN", + "uuid": "7c0a35e5-5f9b-4ee8-87c4-062c46d2e801", + "createdAt": "2021-07-23", + "completed": "2016-08-10", + "initiated": "2016-12-09", + "ministryContact": "GORCZANY NYASIA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -11350,33 +12917,33 @@ ], "notationParticipants": [ { - "uuid": "aa7d82f9-08db-43c2-8e69-4976b312cf84", - "name": "SHELL CANADA PRODUCTS", + "uuid": "f65ebd8f-afd8-4a55-94bc-2a2859c98ce8", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "f1cc580b-0313-43f5-afe2-d1e0348f5c3d", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "uuid": "2c75c4c2-fa5c-4bf7-b3a2-c28fd0277a59", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "6cad8e0e-6524-4959-b8c3-4951ad0c2e7a", + "uuid": "e7d5d792-3884-4bdd-be1c-9f1b1d452717", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false }, { - "uuid": "73b6ff45-50a3-4bc7-a20d-c308e895d634", + "uuid": "1c47c07d-6934-4e81-b67e-69daa291fc71", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "f1f4ca71-2e0f-4dd6-9e89-aecae1d69be9", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "uuid": "c374f7a7-9806-4ec6-b663-87377732ec7b", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": false } ], @@ -11385,10 +12952,10 @@ ], "participants": [ { - "uuid": "3b61e662-d12c-4702-a740-275421c04ca8", - "name": "SHELL CANADA PRODUCTS", - "endDate": "2015-04-26", - "startDate": "2023-04-27", + "uuid": "9755b100-10ba-4307-9865-3b06e7e06c32", + "name": "AMET, DOLOR SIT", + "endDate": "2015-08-17", + "startDate": "2018-11-21", "notes": "", "roles": [ "ORGANIZATION" @@ -11396,259 +12963,364 @@ "siteRegistry": false }, { - "uuid": "669b9584-4e70-4472-824e-55c9b4862bba", - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2022-12-03", - "startDate": "2022-04-09", + "uuid": "1988aad0-fbf5-4944-95ba-fedc57d4a1d6", + "name": "AMET, DOLOR SIT", + "endDate": "2018-09-04", + "startDate": "2015-08-07", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": false }, { - "uuid": "5c934413-d097-4ec9-8675-40f3c8d79e66", + "uuid": "bbc0596a-d04c-419e-a0c0-73c1b32b825c", "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2018-10-30", - "startDate": "2014-10-24", + "endDate": "2020-12-02", + "startDate": "2014-10-26", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "432026f6-0b5c-4cfe-845e-d4e54eb8eb88", - "name": "AMET, DOLOR SIT", - "endDate": "2022-02-15", - "startDate": "2019-02-28", + "uuid": "751517b0-308f-48bd-a71b-54af6ba3fb04", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2022-02-21", + "startDate": "2017-04-22", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "befb4872-6c10-4a11-93f5-0e800db7d9fb", + "uuid": "38240f01-f1e2-4a56-9816-2fdcde1fefe9", "name": "AMET, DOLOR SIT", - "endDate": "2022-12-04", - "startDate": "2018-08-04", + "endDate": "2021-03-29", + "startDate": "2017-11-22", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], - "siteRegistry": true + "siteRegistry": false } ], - "suspectLandUses": [ + "documents": [ { - "uuid": "78f29bc9-e663-4bb9-b3f3-771ee2c88887", - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-05-27 (described on Site Profile dated 2014-05-27)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "uuid": "6761364f-ceb8-4129-afc1-c23d4b1b9b5d", + "siteRegistry": true, + "documentDate": "2022-02-27", + "receivedDate": "2015-12-13", + "uploadedDate": "2014-04-08", + "title": "Preliminary Site Investigation, Detailed Site Investigation and Remedial Plan for the Management Area adjacent to the Shell Site at 1503 West 41st Ave", + "participants": [ + { + "uuid": "c1a3f3b3-044b-47bc-b4c5-0c60620d1ebb", + "name": "IPSUM", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "11ff3d5a-2ce4-4cb2-a909-2d4ea754277d", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": true, + "role": "AUTHOR" + } + ] }, { - "uuid": "7958e36c-d94f-42e1-94d2-27bc183ed9ec", - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-12-28 (described on Site Profile dated 2021-12-28)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "uuid": "a83e9b1f-0a2a-4a14-b50c-78906150dcc1", + "siteRegistry": true, + "documentDate": "2016-08-15", + "receivedDate": "2018-07-07", + "uploadedDate": "2019-07-20", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "041ccc49-dbf0-4714-9448-76082496b95a", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "9305e582-60be-499f-9a69-ed0b9fee84d1", + "name": "AMET, DOLOR SIT", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "5eed9866-098b-4bb5-bff7-5149ee158e5f", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": true, + "role": "AUTHOR" + } + ] }, { - "uuid": "164dfbb0-2c85-491c-a723-0f3d7c139ba6", + "uuid": "db969eb8-a8c7-4199-b2c6-33a3fb39966d", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-07-15 (described on Site Profile dated 2014-07-15)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "documentDate": "2018-09-18", + "receivedDate": "2021-09-11", + "uploadedDate": "2019-10-26", + "title": "Summary of Site Conditions, 1537 W 41st Avenue, Vancouver", + "participants": [ + { + "uuid": "797cca20-709e-4ecd-91ec-c2c8bbdf01fc", + "name": "AMET, DOLOR SIT", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "63f67b08-5ded-4bd3-b6c5-31120a8b3da4", + "name": "IPSUM", + "siteRegistry": true, + "role": "AUTHOR" + } + ] + } + ], + "suspectLandUses": [ + { + "uuid": "6406d516-9098-4094-a857-d585a53d33f6", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2019-06-03 (described on Site Profile dated 2019-06-03)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "uuid": "79c640e4-2e9e-49e9-833f-b3eca1fcf4de", + "uuid": "98ba1678-1183-43f7-8e96-c24377fd69e9", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-07-01 (described on Site Profile dated 2022-07-01)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "notes": "INSERTED FOR SITE PROFILE DATED 2022-06-01 (described on Site Profile dated 2022-06-01)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "uuid": "1bcfb2f7-9fc4-472d-a58e-387b4aa166da", + "uuid": "ce1523de-ed12-4445-89b8-f71e469a7ee0", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-11-22 (described on Site Profile dated 2019-11-22)", + "notes": "INSERTED FOR SITE PROFILE DATED 2022-09-17 (described on Site Profile dated 2022-09-17)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], "parcelDescriptions": [ { - "uuid": "9d9dc500-e66c-4c53-ba79-d679b94dde40", - "siteRegistry": true, - "dateNoted": "2015-08-18", - "parcelID": "19724", - "crownLandUsePIN": "16618", - "crownLandFileNumber": "16344", - "landDescription": "LOT 1 OF LOT 2 BLOCK 5 DISTRICT LOT 2 PLAN 9305" - }, - { - "uuid": "64727def-0892-4636-b1de-af0572d36cae", + "uuid": "7b5a493e-646f-40aa-a944-4f6b59450edc", "siteRegistry": false, - "dateNoted": "2013-11-14", - "parcelID": "19266", - "crownLandUsePIN": "18479", - "crownLandFileNumber": "19922", - "landDescription": "LOT 4 OF LOT 1 BLOCK 4 DISTRICT LOT 4 PLAN 4544" + "dateNoted": "2015-04-11", + "parcelID": "16186", + "crownLandUsePIN": "20198", + "crownLandFileNumber": "16808", + "landDescription": "LOT 2 OF LOT 5 BLOCK 2 DISTRICT LOT 3 PLAN 6265" }, { - "uuid": "dfaf9c7b-6bd3-4c69-bcf2-43914888b8f2", + "uuid": "311ba966-9e7e-4c51-8b4c-88154b073d6a", "siteRegistry": false, - "dateNoted": "2018-10-13", - "parcelID": "17960", - "crownLandUsePIN": "19579", - "crownLandFileNumber": "18225", - "landDescription": "LOT 3 OF LOT 1 BLOCK 1 DISTRICT LOT 5 PLAN 7852" - }, - { - "uuid": "989d76b3-de41-41cb-8c2e-6d07898727a7", - "siteRegistry": true, - "dateNoted": "2023-03-06", - "parcelID": "16365", - "crownLandUsePIN": "18123", - "crownLandFileNumber": "15791", - "landDescription": "LOT 1 OF LOT 3 BLOCK 4 DISTRICT LOT 4 PLAN 2981" + "dateNoted": "2015-11-19", + "parcelID": "18667", + "crownLandUsePIN": "20651", + "crownLandFileNumber": "17226", + "landDescription": "LOT 3 OF LOT 4 BLOCK 5 DISTRICT LOT 4 PLAN 4606" }, { - "uuid": "f67a8d45-d9aa-45e5-b2a5-3db9c05ec55f", + "uuid": "95580979-de7f-4ca8-bc25-d69ce1a0a687", "siteRegistry": true, - "dateNoted": "2017-03-31", - "parcelID": "15771", - "crownLandUsePIN": "17831", - "crownLandFileNumber": "16748", - "landDescription": "LOT 2 OF LOT 3 BLOCK 1 DISTRICT LOT 1 PLAN 4218" + "dateNoted": "2016-03-22", + "parcelID": "15277", + "crownLandUsePIN": "19669", + "crownLandFileNumber": "17843", + "landDescription": "LOT 2 OF LOT 3 BLOCK 5 DISTRICT LOT 2 PLAN 8389" } ], "siteDisclosures": [ { - "uuid": "3474b4d7-8792-48c1-83c6-c7f80be5b93d", + "uuid": "eb5898b8-18e2-496b-a43a-9dc51faffbd5", "siteRegistry": true, - "dateReceived": "2021-11-29", - "dateCompleted": "2017-04-23", - "dateEntered": "2015-02-23", - "dateRegistrar": "2017-08-02", - "dateLocalAuthorityReceived": "2023-01-17", - "summary": "Saepe velit ipsa perferendis dicta officiis.\nHic cumque dolor minima dicta facere exercitationem laborum.", - "informationUsed": "Quia consectetur in libero laudantium aliquam voluptates.\nFugiat quasi impedit dolorum ut optio vel quia.\nTenetur eum facere sunt quaerat magni ipsa molestiae ratione.\nVeritatis enim cum nesciunt eius ex laboriosam.", - "pastOrPresentOrders": "Explicabo adipisci beatae occaecati officiis.\nBeatae quas quae eveniet ratione.", + "dateReceived": "2023-10-12", + "dateCompleted": "2018-11-23", + "dateEntered": "2017-12-30", + "dateRegistrar": "2023-03-23", + "dateLocalAuthorityReceived": "2022-08-17", + "summary": "Aut quis libero quaerat.", + "informationUsed": "Qui tempora praesentium.\nCum maiores voluptatem.\nAb architecto corrupti ex est et corporis voluptatibus illo illo.", + "pastOrPresentOrders": "Quas omnis autem excepturi et perferendis modi atque officiis nisi.\nNam quisquam repellendus.", "commercialAndIndustrialPurposes": [ { - "uuid": "cf31e811-ca98-427f-8266-844ec0f168db", + "uuid": "846c35e7-479f-440b-84aa-4e40bc42fd0d", "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "uuid": "b5beef94-fda0-4354-a23b-be36fca43fe2", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + } + ] + }, + { + "uuid": "3a8482fb-15c0-446f-9583-d022b5784df5", + "siteRegistry": true, + "dateReceived": "2013-12-18", + "dateCompleted": "2021-10-23", + "dateEntered": "2016-04-01", + "dateRegistrar": "2020-07-13", + "dateLocalAuthorityReceived": "2015-02-15", + "summary": "Quo ducimus itaque aliquam.\nExcepturi et nesciunt.", + "informationUsed": "Quibusdam doloremque eaque eaque eius occaecati voluptatibus accusamus.\nSequi delectus blanditiis quisquam.\nEligendi tenetur repellendus.", + "pastOrPresentOrders": "Consequuntur repellat qui adipisci tempore iure laudantium nemo repellendus.\nMinus alias ipsam voluptatibus quasi praesentium autem.\nOmnis error nesciunt doloribus aut veniam reprehenderit ab commodi.", + "commercialAndIndustrialPurposes": [ + { + "uuid": "f82c3d87-0aee-4d37-b6e6-b7282383e336", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, { - "uuid": "41a9d0c2-2eb4-43ee-9403-9a498e4d50a0", + "uuid": "cd167293-fa6a-4b38-b462-c47b995e5e56", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "uuid": "918e624b-65f9-4bed-af39-5cb568fbddc7", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false + }, + { + "uuid": "88fd35c8-d211-4afe-a0ae-6b974822d1da", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true } ] } ], "activityLog": [ { - "uuid": "9647e323-f14a-429f-bd4a-bdb641f874ca", + "uuid": "a11e6c4c-cfcf-4ec9-82ad-f8a1498a03bb", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "WATSICA RENEE", - "timestamp": "2016-10-26" + "user": "JASKOLSKI MEREDITH", + "timestamp": "2019-03-11" }, { - "uuid": "d14ef598-5a0d-44ef-a155-cb72a4b1483d", - "siteRegistry": false, + "uuid": "0fc73363-92e1-4549-b141-07c7641cf248", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "CHRISTIANSEN KAITLIN", - "timestamp": "2023-06-26" + "user": "AUER JEANNE", + "timestamp": "2021-03-18" }, { - "uuid": "cd951382-bc49-4974-b275-ca6ebd592309", - "siteRegistry": false, + "uuid": "5ae67cdf-51a8-48e3-a4d2-2c8666592bf7", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "REINGER DORRIS", - "timestamp": "2022-06-09" + "user": "BALISTRERI EDMUND", + "timestamp": "2016-12-19" }, { - "uuid": "4916ec6f-9281-473e-971d-ee156f31265e", - "siteRegistry": false, + "uuid": "be01b539-a0be-4feb-bac2-f9f3e62d3aa4", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "MAYER MOSE", - "timestamp": "2016-05-10" + "user": "MITCHELL-BARROWS CLARISSA", + "timestamp": "2022-09-17" }, { - "uuid": "22f140a6-5120-4c0c-ac34-a7bacd691faf", + "uuid": "bfb6f01c-0edf-4e21-8e3c-cb12a5ef6007", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "SAUER CONCEPCION", - "timestamp": "2019-04-18" + "user": "HINTZ ARIANE", + "timestamp": "2019-01-12" }, { - "uuid": "c26de85e-cb29-4ce1-a698-0d46a2a1a128", - "siteRegistry": false, + "uuid": "b0410be1-b191-41d3-9ae5-443dd3cfa76f", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "FRIESEN ADOLPHUS", - "timestamp": "2014-08-28" + "user": "NIKOLAUS KARLEE", + "timestamp": "2018-09-27" }, { - "uuid": "2a15ef1c-fcd3-41b7-95a7-5d4342c6ee54", + "uuid": "260462d2-e6ce-4b4f-9a63-41c6a9b96871", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "FUNK GRACIE", - "timestamp": "2022-07-15" + "user": "CARTWRIGHT MAVIS", + "timestamp": "2023-01-12" }, { - "uuid": "1b30d59f-c278-4f31-b641-e33213242fc9", - "siteRegistry": false, + "uuid": "ad073cf3-8120-4155-a5b9-ba429fe5c241", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "LESCH LAVADA", - "timestamp": "2014-01-07" + "user": "ROLFSON JANY", + "timestamp": "2018-12-22" }, { - "uuid": "0bce86cb-583d-4fb7-b79d-ed88652d5d53", + "uuid": "e532a4e2-86db-4eeb-b3f1-01c362a6d21c", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "DICKI RASHAD", - "timestamp": "2019-06-17" + "user": "GERLACH ALBERTHA", + "timestamp": "2021-10-16" + }, + { + "uuid": "a24c9d10-3c4e-4842-8537-907de674bbb2", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "KOEPP MONSERRATE", + "timestamp": "2014-01-19" } ], "associatedSites": [ { - "uuid": "3578b425-4898-49fd-908e-e908396dda05", - "dateNoted": "2020-04-30", + "uuid": "4d0ee75f-a30c-4e57-9752-fe8795a0a453", + "dateNoted": "2020-05-12", + "notes": "", + "parcelID": "18477", + "siteID": "16251", + "siteRegistry": false + }, + { + "uuid": "8d15d26b-407d-4621-b8ff-6d6890127ab7", + "dateNoted": "2020-10-28", + "notes": "", + "parcelID": "17365", + "siteID": "16177", + "siteRegistry": false + }, + { + "uuid": "605199f6-2015-467d-9c6c-f08cf16b2523", + "dateNoted": "2022-11-01", "notes": "", - "parcelID": "17415", - "siteID": "18687", + "parcelID": "20854", + "siteID": "17392", "siteRegistry": false } ] }, { - "uuid": "d3939df8-e6cb-4adc-b491-421027bb482e", - "siteID": 19122, - "address": "933 Kreiger Flats", - "latitude": 49.3065, - "longitude": -135.8924, - "lastUpdated": "2020-03-31", - "city": "Pueblo", - "region": "Thompson-Okanagan", - "victoriaFile": "26250-20/5614", + "uuid": "f938c6e3-04e5-4de3-bfdd-b1befdb96980", + "siteID": 17664, + "address": "25014 Jaqueline Shoal", + "latitude": 48.503, + "longitude": -138.9002, + "lastUpdated": "2022-01-09", + "city": "Powlowskiworth", + "region": "Kootenay", + "victoriaFile": "26250-20/10748", "regionalFile": "N/A", "parcelIDs": [ - 4393055, - 787349, - 8310271, - 6722294, - 8306228 + 5234899, + 1932865, + 2257028, + 3896623, + 8070369 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "8f63f06b-77b7-4b6b-8c34-cd1c6edc3b38", - "createdAt": "2015-10-07", - "completed": "2021-11-16", - "initiated": "2017-05-03", - "ministryContact": "KUHLMAN YASMEEN", + "uuid": "0b551348-91db-419a-bc9c-ff4ab50942c6", + "createdAt": "2016-12-06", + "completed": "2014-03-15", + "initiated": "2017-06-09", + "ministryContact": "TROMP FELICITY", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -11657,44 +13329,32 @@ ], "notationParticipants": [ { - "uuid": "e141f73e-74b0-41f0-801d-6e333d3b1429", + "uuid": "16f81933-1291-4404-a70f-9f7c44692dad", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false }, { - "uuid": "a19b6f95-9147-40f9-a120-3cfa6fd7260e", + "uuid": "47f0a181-28be-403d-9f1c-b99ed21a9b8b", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "uuid": "9f9373de-2284-4631-b35a-42e51888c70e", - "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false }, { - "uuid": "d5ba844a-8786-4f11-bb80-e62d5e70d485", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "uuid": "e72587ae-45d6-43b1-9c0a-a1aec7c43607", - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "85cb409e-afa0-4383-b992-eeea13d8e235", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "1d2a8141-6c0c-4188-8824-8a8eb725a1b1", - "createdAt": "2019-06-05", - "completed": "2019-08-17", - "initiated": "2019-03-31", - "ministryContact": "LANGWORTH INES", + "uuid": "5ca44691-8bd7-4bac-abc2-c70a2fd71b8a", + "createdAt": "2023-03-17", + "completed": "2015-08-25", + "initiated": "2017-08-15", + "ministryContact": "NITZSCHE COLTEN", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -11703,19 +13363,31 @@ ], "notationParticipants": [ { - "uuid": "4c6918fd-d55f-4de4-b43e-b9c081483c28", - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "a46e411d-cc48-48da-9595-d70e250f0509", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "9328d602-450b-455b-beb0-c2cd087f6851", + "uuid": "8199b9a4-f81c-4548-98f8-a3ab557d7031", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "uuid": "af47b068-4681-459b-9382-1539dc0a0f9b", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "uuid": "f561ed1a-9f92-430e-8d14-a899e47417fb", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "c7119967-c642-4e75-bf2f-e9aeae05241c", + "uuid": "21b6035e-6887-456e-b40a-e9cc83db0de3", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false @@ -11724,11 +13396,11 @@ "siteRegistry": false }, { - "uuid": "78a44c5f-2d36-4bba-bb95-c9bfb431997f", - "createdAt": "2021-08-12", - "completed": "2021-12-18", - "initiated": "2018-06-04", - "ministryContact": "LUBOWITZ LINDA", + "uuid": "3dee90a1-0fe0-4efc-bb23-e3b455ca91a2", + "createdAt": "2022-03-15", + "completed": "2017-11-13", + "initiated": "2019-05-01", + "ministryContact": "MURPHY-JERDE MADISEN", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -11737,44 +13409,44 @@ ], "notationParticipants": [ { - "uuid": "bebd5e6f-12d4-4fd3-bd00-21bd19b8bc25", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "uuid": "04bb6bf4-dd35-4378-85ce-f51cbfd1be74", + "uuid": "90826332-f198-4581-9b11-c630ee2a314a", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "b5da60db-1fe5-4b04-82e4-7f239f02fff3", - "name": "SHELL CANADA PRODUCTS", + "uuid": "700907e1-e5f4-4e1e-8c33-66b30a4747c7", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "dc7dccd5-70f5-4ab9-9679-23045684c2f1", + "uuid": "b1709690-0910-4154-919b-ea54371b1ad8", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "1b1607f6-c7b2-491b-b36a-de7f6c47765f", + "uuid": "d392fb83-1fdc-4ecd-93f7-27c6824c116d", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": true + }, + { + "uuid": "e8d41592-124e-4418-ba96-c66afe90cc44", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false } ], "siteRegistry": false }, { - "uuid": "07c7a0de-848c-4533-b6c9-d5febdf8b48c", - "createdAt": "2018-12-12", - "completed": "2015-08-26", - "initiated": "2017-06-04", - "ministryContact": "VANDERVORT ANNALISE", + "uuid": "af41d47d-545a-43ef-bc78-7cb9e4b209cd", + "createdAt": "2016-11-17", + "completed": "2015-04-04", + "initiated": "2018-03-09", + "ministryContact": "MILLS LORENZA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -11783,33 +13455,73 @@ ], "notationParticipants": [ { - "uuid": "ac184ac7-6f4b-48e6-91fd-9c78b3c99141", - "name": "SHELL CANADA PRODUCTS", + "uuid": "da9c2a78-60f4-42a9-ade1-1a7f32e31c7e", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "591e27d3-b6bd-4cf2-b558-394412339994", + "uuid": "e23b1104-d486-45fc-8d99-6029533ebe85", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true }, { - "uuid": "7b858e79-d34d-402a-bfcd-31367d84115e", + "uuid": "59484b1d-68f7-4154-bfa6-f5e72d376cda", "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "uuid": "430f4b11-f354-4e5d-be47-3db8bbd6b512", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true } ], "siteRegistry": false - } - ], - "participants": [ + }, { - "uuid": "34d2015a-65da-4175-aef9-090945a85d6e", - "name": "AMET, DOLOR SIT", - "endDate": "2020-05-15", - "startDate": "2023-06-21", + "uuid": "70fd65a8-d30a-437e-8fd4-daf3e99f04ac", + "createdAt": "2019-02-16", + "completed": "2014-08-24", + "initiated": "2018-06-10", + "ministryContact": "SATTERFIELD SEDRICK", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "uuid": "d33da7b8-3175-4e7d-b93a-e34c46f84865", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "uuid": "3bd6b61a-85b9-420d-9663-3de822f635ed", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "uuid": "c56eb9a2-19c1-41da-b725-06fe80815768", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + } + ], + "participants": [ + { + "uuid": "34dd0f27-5d21-46d3-98c9-5109b1c83654", + "name": "AMET, DOLOR SIT", + "endDate": "2014-12-08", + "startDate": "2013-12-17", "notes": "", "roles": [ "EMPLOYEE" @@ -11817,269 +13529,369 @@ "siteRegistry": false }, { - "uuid": "de38e0c5-458d-41e4-918d-98ba593f00bd", - "name": "SHELL CANADA PRODUCTS", - "endDate": "2017-08-07", - "startDate": "2014-09-15", + "uuid": "979d7747-1aa8-4508-8431-57ff11ce396a", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2015-10-05", + "startDate": "2022-12-01", "notes": "", "roles": [ "ORGANIZATION" ], "siteRegistry": true + } + ], + "documents": [ + { + "uuid": "369de704-f912-498c-bcdc-b6d66eb83c86", + "siteRegistry": false, + "documentDate": "2021-10-27", + "receivedDate": "2017-04-19", + "uploadedDate": "2017-10-16", + "title": "Preliminary Site Investigation, Detailed Site Investigation and Remedial Plan for the Management Area adjacent to the Shell Site at 1503 West 41st Ave", + "participants": [ + { + "uuid": "c2c8149f-8591-45a9-b49a-c65eede0089b", + "name": "IPSUM", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "24b728d5-774d-44bf-ab54-b65583af74f1", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "40e4cb8c-73de-493e-80f3-edc6b61d8afa", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": true, + "role": "AUTHOR" + } + ] }, { - "uuid": "ca78b2d6-4e1d-4b7c-8b4e-bfaa45c40101", - "name": "IPSUM", - "endDate": "2017-01-30", - "startDate": "2022-02-27", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": true + "uuid": "cc46b036-71e1-4953-aa16-2c632c74afcf", + "siteRegistry": false, + "documentDate": "2017-04-15", + "receivedDate": "2020-08-20", + "uploadedDate": "2017-02-04", + "title": "Preliminary Site Investigation, Detailed Site Investigation and Remedial Plan for the Management Area adjacent to the Shell Site at 1503 West 41st Ave", + "participants": [ + { + "uuid": "03a0a06a-5553-4aa0-939c-e07bc640efbe", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": true, + "role": "AUTHOR" + } + ] }, { - "uuid": "1995fa95-f647-4f46-b4fc-3e49d63ce435", - "name": "IPSUM", - "endDate": "2013-11-24", - "startDate": "2015-06-18", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": false + "uuid": "f88870d1-731f-4c26-b184-292fd2369db1", + "siteRegistry": true, + "documentDate": "2019-12-25", + "receivedDate": "2019-07-13", + "uploadedDate": "2020-06-24", + "title": "Preliminary Site Investigation, Detailed Site Investigation and Remedial Plan for the Management Area adjacent to the Shell Site at 1503 West 41st Ave", + "participants": [ + { + "uuid": "ade25c7b-70de-4abb-ad86-38cfa1260133", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "20b67f98-e127-4b6d-b774-a0e1552f3bd7", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": true, + "role": "AUTHOR" + } + ] + }, + { + "uuid": "9924459a-6c9c-43ae-a001-1f1fe592b53d", + "siteRegistry": true, + "documentDate": "2017-12-13", + "receivedDate": "2016-07-03", + "uploadedDate": "2016-05-08", + "title": "Preliminary Site Investigation, Detailed Site Investigation and Remedial Plan for the Management Area adjacent to the Shell Site at 1503 West 41st Ave", + "participants": [ + { + "uuid": "1d222223-b5c0-4ee6-a44d-1eb9790f55b5", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "c40de423-4865-4dbc-81a2-94e3b4c49a9f", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "87e4469f-f8d1-47fd-a621-65e039949169", + "name": "AMET, DOLOR SIT", + "siteRegistry": false, + "role": "AUTHOR" + } + ] } ], "suspectLandUses": [ { - "uuid": "c590e2ee-8a5f-40aa-81ae-0b8d1f1775bd", - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-01-20 (described on Site Profile dated 2015-01-20)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" - }, - { - "uuid": "9821e804-78f2-444e-8d61-c8246389a30c", + "uuid": "0c724553-1078-4aef-a5b9-500242e93a8d", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-03-01 (described on Site Profile dated 2015-03-01)", + "notes": "INSERTED FOR SITE PROFILE DATED 2018-12-18 (described on Site Profile dated 2018-12-18)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "uuid": "24517fa0-99d1-4a0b-9ff2-f2098179c273", - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-04-14 (described on Site Profile dated 2016-04-14)", + "uuid": "aba7b1fd-5776-49ce-bf8c-76e5851b0df3", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2018-03-13 (described on Site Profile dated 2018-03-13)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "uuid": "d36d3286-ce48-4fda-849b-416b639f5f7f", + "uuid": "75c1ba99-6f1a-4ada-ab4a-3d9fa4b9c3ea", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-09-30 (described on Site Profile dated 2019-09-30)", + "notes": "INSERTED FOR SITE PROFILE DATED 2017-05-04 (described on Site Profile dated 2017-05-04)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "uuid": "f54b703e-0e80-4b22-94bf-25f6625edc0d", - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-02-05 (described on Site Profile dated 2016-02-05)", + "uuid": "f9ad4c4b-e3ae-4493-85ef-c18bdf496499", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2016-12-09 (described on Site Profile dated 2016-12-09)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], "parcelDescriptions": [ { - "uuid": "2521185b-7b94-415e-a10f-3bb358b1920d", - "siteRegistry": false, - "dateNoted": "2022-03-28", - "parcelID": "15611", - "crownLandUsePIN": "18181", - "crownLandFileNumber": "19954", - "landDescription": "LOT 4 OF LOT 4 BLOCK 4 DISTRICT LOT 2 PLAN 5747" + "uuid": "d62f9097-7217-4b06-b17b-b016d9d673a3", + "siteRegistry": true, + "dateNoted": "2017-03-17", + "parcelID": "16514", + "crownLandUsePIN": "20257", + "crownLandFileNumber": "16405", + "landDescription": "LOT 3 OF LOT 2 BLOCK 2 DISTRICT LOT 4 PLAN 8357" }, { - "uuid": "d42f98be-071d-47ec-a3ee-f403ad07d338", - "siteRegistry": false, - "dateNoted": "2017-06-05", - "parcelID": "20237", - "crownLandUsePIN": "16076", - "crownLandFileNumber": "20887", - "landDescription": "LOT 2 OF LOT 5 BLOCK 2 DISTRICT LOT 4 PLAN 5517" + "uuid": "d93764df-5e39-4b9e-b317-2e73140ee0a9", + "siteRegistry": true, + "dateNoted": "2017-07-13", + "parcelID": "17961", + "crownLandUsePIN": "16436", + "crownLandFileNumber": "19213", + "landDescription": "LOT 5 OF LOT 2 BLOCK 4 DISTRICT LOT 2 PLAN 4258" }, { - "uuid": "2ddaf071-c8be-48aa-9afb-43e29e970a25", - "siteRegistry": true, - "dateNoted": "2020-03-14", - "parcelID": "16961", - "crownLandUsePIN": "20689", - "crownLandFileNumber": "16043", - "landDescription": "LOT 3 OF LOT 5 BLOCK 5 DISTRICT LOT 1 PLAN 5764" + "uuid": "69c2927e-de7c-4795-87af-1f9138096600", + "siteRegistry": false, + "dateNoted": "2016-09-05", + "parcelID": "15607", + "crownLandUsePIN": "18358", + "crownLandFileNumber": "18848", + "landDescription": "LOT 2 OF LOT 5 BLOCK 1 DISTRICT LOT 5 PLAN 4462" }, { - "uuid": "35fc4270-4d9b-4d37-a5f4-846c9032a098", + "uuid": "014a7156-bd35-480a-8357-2190d6509fc8", "siteRegistry": false, - "dateNoted": "2020-05-02", - "parcelID": "17411", - "crownLandUsePIN": "17706", - "crownLandFileNumber": "15726", - "landDescription": "LOT 4 OF LOT 3 BLOCK 5 DISTRICT LOT 2 PLAN 9635" + "dateNoted": "2018-03-01", + "parcelID": "17975", + "crownLandUsePIN": "17751", + "crownLandFileNumber": "16868", + "landDescription": "LOT 1 OF LOT 2 BLOCK 1 DISTRICT LOT 4 PLAN 5429" }, { - "uuid": "b04149f1-7486-484a-bd22-68fb1703b33a", - "siteRegistry": true, - "dateNoted": "2016-02-17", - "parcelID": "16672", - "crownLandUsePIN": "17016", - "crownLandFileNumber": "19288", - "landDescription": "LOT 5 OF LOT 4 BLOCK 4 DISTRICT LOT 5 PLAN 5500" + "uuid": "6076d97b-e9ce-4e3f-8190-88d79bb28dc5", + "siteRegistry": false, + "dateNoted": "2020-07-19", + "parcelID": "18846", + "crownLandUsePIN": "18691", + "crownLandFileNumber": "19797", + "landDescription": "LOT 1 OF LOT 5 BLOCK 3 DISTRICT LOT 1 PLAN 8671" } ], "siteDisclosures": [ { - "uuid": "9540f214-bd76-47c6-9e20-09ab00028423", + "uuid": "30f0aa26-4c30-4749-b034-83a20726148c", "siteRegistry": true, - "dateReceived": "2014-08-09", - "dateCompleted": "2015-05-12", - "dateEntered": "2021-05-26", - "dateRegistrar": "2023-05-29", - "dateLocalAuthorityReceived": "2017-08-25", - "summary": "Qui reprehenderit ducimus fugiat eveniet quas.\nDolores deserunt impedit est ex rerum.\nArchitecto vitae non.", - "informationUsed": "Rerum ratione mollitia provident deserunt rerum ipsum beatae explicabo.\nRepudiandae architecto nesciunt odit cum exercitationem voluptates.\nVel facere quam voluptatum maxime nesciunt blanditiis doloremque sit.\nExpedita dolorum eligendi magni commodi quas fugit debitis.", - "pastOrPresentOrders": "Tempore neque similique.", + "dateReceived": "2021-03-24", + "dateCompleted": "2014-04-30", + "dateEntered": "2020-10-06", + "dateRegistrar": "2019-02-23", + "dateLocalAuthorityReceived": "2016-11-19", + "summary": "Inventore hic necessitatibus modi eos.\nSunt nam perferendis animi in quae numquam laboriosam.", + "informationUsed": "Voluptas corporis labore eveniet.\nNatus quasi voluptates autem vel et.\nError quam sunt molestiae porro doloremque sunt error amet.\nDolore consequatur officiis nemo.", + "pastOrPresentOrders": "Aperiam perspiciatis necessitatibus magnam voluptatum.\nProvident atque possimus fuga quidem.\nQuis modi quibusdam quibusdam consectetur aliquid nulla.", "commercialAndIndustrialPurposes": [ { - "uuid": "2bbfe222-6a32-4e5a-a76b-8e7018620e90", + "uuid": "4f744341-68d8-4209-b87f-fbeccbc7fd6b", "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { - "uuid": "dcaacf30-e59e-4015-a516-0b1f3b9ae103", - "scheduleReference": "F2*", + "uuid": "1dd404f1-c49f-4f7f-b114-61c3caf5a575", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "506f14a0-1677-4831-90bb-77aa1a0bb412", + "uuid": "55175ea8-46f3-4fd7-970e-02c444ad9e18", "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + } + ] + }, + { + "uuid": "03738f07-4fca-41ac-b1c0-fb53414b2704", + "siteRegistry": true, + "dateReceived": "2015-11-04", + "dateCompleted": "2021-07-12", + "dateEntered": "2022-06-10", + "dateRegistrar": "2019-03-26", + "dateLocalAuthorityReceived": "2020-05-04", + "summary": "Quas quis quasi sequi maiores soluta impedit.", + "informationUsed": "Atque ratione sit tempore.\nMaiores labore aut illum voluptas.\nOdio reiciendis quo aliquam dicta fugit.\nVeritatis dolore cupiditate deleniti doloremque.\nDolorum nulla eos architecto sunt quisquam.", + "pastOrPresentOrders": "Architecto magni impedit atque pariatur.\nHarum impedit quisquam.\nEius perferendis corporis autem laudantium aliquam illo.", + "commercialAndIndustrialPurposes": [ + { + "uuid": "4aa822e1-7b58-49e1-9e8c-832c7b983fac", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "uuid": "e7c0d2f5-53b4-449e-af41-27f5e8f092f7", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "bc1b8980-576d-45f3-9942-9df004ce1a00", + "uuid": "034457cc-9d52-4176-9dfc-22c66c55ad9b", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true + }, + { + "uuid": "34216604-2312-40ac-81b9-8b3aa760c904", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false } ] } ], "activityLog": [ { - "uuid": "c6d2ce8b-2927-4a5c-98bf-444c329ddd24", + "uuid": "911f397e-8e90-441c-b3e7-20e7e749096b", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "JOHNS ADRIENNE", - "timestamp": "2019-06-05" + "user": "RICE ART", + "timestamp": "2022-12-21" }, { - "uuid": "5e30ee8f-270a-48be-8d61-e532c11db252", + "uuid": "399de5ea-8f43-4881-a01b-eb5fd732b9fe", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "WALSH BRENT", - "timestamp": "2020-09-21" + "user": "STREICH DARWIN", + "timestamp": "2019-12-24" }, { - "uuid": "bda6fa5b-3ef0-4de2-ad07-6c301f985e23", - "siteRegistry": true, + "uuid": "d8d0b3e1-d713-4f35-9f65-dafbc482c970", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "WYMAN OLETA", - "timestamp": "2015-03-12" + "user": "HAGENES CATHY", + "timestamp": "2015-06-06" }, { - "uuid": "7cb8cbf8-800e-4599-8c6c-d0269c9a7af3", + "uuid": "08625cbd-2d4f-4f55-a63d-2c675c17253f", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "BREKKE JACE", - "timestamp": "2019-02-05" + "user": "KEEBLER HERMINIA", + "timestamp": "2019-01-12" }, { - "uuid": "461c0ed6-317b-4866-ba32-181ff9a6420c", + "uuid": "fc6d0e4d-81db-46e6-a2f8-54a1fedc0402", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "SCHNEIDER GIOVANNI", - "timestamp": "2016-07-03" + "user": "D'AMORE EWELL", + "timestamp": "2014-11-27" }, { - "uuid": "385ec9b2-697b-4399-96c5-98dbc55f6a38", + "uuid": "9c97f3f7-2294-460d-a6b4-7e67c3464859", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "RUNOLFSSON MARILOU", - "timestamp": "2018-10-14" + "user": "STANTON JANELLE", + "timestamp": "2016-03-22" }, { - "uuid": "71c86599-9ce9-4c0a-966e-feef69eb24c1", - "siteRegistry": true, + "uuid": "55850729-4e0e-4fa8-b3a3-d5906215e453", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "O'HARA KAMRYN", - "timestamp": "2014-10-03" + "user": "O'CONNELL ELNA", + "timestamp": "2016-12-29" }, { - "uuid": "9b613295-d696-4912-be41-225a87e79534", - "siteRegistry": true, + "uuid": "4339f469-fb7c-48ef-a2cc-67586337d91a", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "REILLY ENA", - "timestamp": "2019-03-08" + "user": "FAY FOSTER", + "timestamp": "2017-02-23" } ], "associatedSites": [ { - "uuid": "2ec8405d-b622-41ae-9c77-f644d7a532f3", - "dateNoted": "2022-06-14", + "uuid": "059f8669-9789-455d-8d5f-8b5b32103512", + "dateNoted": "2018-04-07", "notes": "", - "parcelID": "17943", - "siteID": "18294", + "parcelID": "19581", + "siteID": "18080", "siteRegistry": true }, { - "uuid": "ce2b2504-387b-415f-872c-61e8dcbf3ede", - "dateNoted": "2016-11-22", + "uuid": "ad4c2885-ef5c-48e0-bbc6-d8cf9331df3a", + "dateNoted": "2017-12-05", "notes": "", - "parcelID": "17234", - "siteID": "19713", - "siteRegistry": false + "parcelID": "18858", + "siteID": "18981", + "siteRegistry": true }, { - "uuid": "3b298f95-c9d7-4cb5-a22e-23c0094e880d", - "dateNoted": "2016-11-21", + "uuid": "5e7f02b2-9cf2-4545-97d1-9158987a8a9f", + "dateNoted": "2019-09-07", "notes": "", - "parcelID": "16133", - "siteID": "18717", - "siteRegistry": true + "parcelID": "16898", + "siteID": "16182", + "siteRegistry": false } ] }, { - "uuid": "b82b39f2-5c2e-45ef-b158-89d2b915cb24", - "siteID": 16569, - "address": "54878 Brekke Walk", - "latitude": 58.7904, - "longitude": -121.7263, - "lastUpdated": "2019-10-04", - "city": "South Mandy", - "region": " North Coast", - "victoriaFile": "26250-20/13665", + "uuid": "48f2188c-bbc6-4397-a111-1aeb3fbaa90b", + "siteID": 16270, + "address": "93356 Kautzer Courts", + "latitude": 56.8302, + "longitude": -128.6996, + "lastUpdated": "2019-04-03", + "city": "East Giovannaside", + "region": "Thompson-Okanagan", + "victoriaFile": "26250-20/2759", "regionalFile": "N/A", "parcelIDs": [ - 5797495, - 7969594, - 748426, - 2824376, - 5126674 + 8298369, + 3567775, + 7964204, + 6977005, + 2341052 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "5b63c20c-a9df-42f4-ab62-7af7ea288f5e", - "createdAt": "2017-02-12", - "completed": "2019-08-14", - "initiated": "2019-07-15", - "ministryContact": "BECKER SEAMUS", + "uuid": "a22800f1-c0f1-49b4-96c3-47ec51e94a62", + "createdAt": "2020-10-05", + "completed": "2020-09-17", + "initiated": "2014-10-23", + "ministryContact": "HAND TREVER", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -12088,54 +13900,38 @@ ], "notationParticipants": [ { - "uuid": "028f3c09-3119-4074-917e-b8563f78afb3", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "uuid": "4de683e1-a212-4588-9a50-ec2a57e0c767", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "78d38fdc-8522-485a-95f1-e46b4752451c", + "uuid": "a66880ac-1abe-43ce-bc48-28d054a2a211", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true - } - ], - "siteRegistry": true - }, - { - "uuid": "a9c5e3db-c1d3-4c85-a75b-f34c0fa23a34", - "createdAt": "2021-01-24", - "completed": "2023-05-24", - "initiated": "2021-07-28", - "ministryContact": "LINDGREN JAQUAN", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ + }, { - "uuid": "0bc17593-5971-46cc-bf0a-c132b9e04739", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "uuid": "18c36edc-93cc-4f51-ad0b-6a53f1e203cc", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "5ac65e91-5fed-4b35-8f21-fded5358b61b", - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "0386d659-e0da-4b59-ac8f-c061e50db771", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "bb0851ce-d42f-42f3-9099-1a11c5a7a1cd", - "createdAt": "2018-04-06", - "completed": "2015-09-29", - "initiated": "2017-12-13", - "ministryContact": "BRAUN JON", + "uuid": "6dcd4fc7-f943-43ba-b8e0-0781b1c974b7", + "createdAt": "2021-10-10", + "completed": "2015-09-04", + "initiated": "2019-03-24", + "ministryContact": "KERLUKE LUCIENNE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -12144,38 +13940,38 @@ ], "notationParticipants": [ { - "uuid": "20f66da2-a714-4694-af58-bd6767b77293", + "uuid": "91b98eaa-8f0f-4502-9c04-687565ed49df", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "07ae5b92-154d-409d-b7ad-a4c6f7f1bd16", + "uuid": "089009f1-0823-4e1f-9a26-9f48c7bcb04e", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "f254e648-3417-4384-9854-fdcf25b104d5", + "uuid": "3a74bb37-a30e-4fc7-9316-d4e9115ffcc0", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false + "role": "REQUESTED BY", + "siteRegistry": true }, { - "uuid": "4bdae530-4583-4986-9ecc-2cab03042898", - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "2aab5600-58fd-4e03-b9dd-37a80921db92", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false } ], "siteRegistry": true }, { - "uuid": "7c702486-6e71-4451-aee6-9641f1390f84", - "createdAt": "2021-10-23", - "completed": "2022-05-02", - "initiated": "2022-11-06", - "ministryContact": "BERGE GLORIA", + "uuid": "c4ae1298-691d-4bca-ab84-842496afbafd", + "createdAt": "2016-02-08", + "completed": "2018-05-22", + "initiated": "2020-08-08", + "ministryContact": "HACKETT LEIF", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -12184,78 +13980,61 @@ ], "notationParticipants": [ { - "uuid": "a46e5f85-fc7b-49d9-bb02-0cd2e330bbaf", + "uuid": "58542648-498a-47ec-9fd7-118f9ce7f59b", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true }, { - "uuid": "64dfa90f-5583-4bec-86b1-23e7a71538e2", - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "uuid": "913f292c-4bac-456a-8bec-cf2da12759b6", - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - } - ], - "siteRegistry": true - }, - { - "uuid": "2cbcb325-00aa-4638-92ce-185594c6390d", - "createdAt": "2016-11-01", - "completed": "2019-01-08", - "initiated": "2018-02-20", - "ministryContact": "JONES BLAISE", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "uuid": "2053f968-3d59-4a3d-99d4-d180c90e5580", + "uuid": "99e33485-49eb-4776-b654-e8f2fe537766", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false + "role": "REQUESTED BY", + "siteRegistry": true }, { - "uuid": "e553d045-9c1c-403b-a8bf-0ac0de75ce4b", - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false + "uuid": "61e04284-dc2e-463f-96c2-1d4b00bbb651", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true }, { - "uuid": "7408c4cc-e133-4637-a61d-03a1343fc11e", + "uuid": "c6a420ec-65aa-4eff-ac69-7427cf3de2f8", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false } ], "participants": [ { - "uuid": "997712f8-7678-4f07-b941-716b3dc34919", - "name": "IPSUM", - "endDate": "2023-08-01", - "startDate": "2014-09-11", + "uuid": "205eac46-46cc-408d-88fa-7c497f510a39", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2018-08-26", + "startDate": "2022-03-12", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": true }, { - "uuid": "c1c23b76-ad33-4fae-b9f8-5fceaad988a3", - "name": "AMET, DOLOR SIT", - "endDate": "2023-07-14", - "startDate": "2016-06-25", + "uuid": "cc5868d8-195e-43e3-8691-8a2e2abaf9df", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2020-11-07", + "startDate": "2018-08-09", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "uuid": "9b518530-b7da-4231-a6a0-5e1dd1516497", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2023-09-12", + "startDate": "2017-08-22", "notes": "", "roles": [ "EMPLOYEE" @@ -12263,79 +14042,193 @@ "siteRegistry": false } ], - "suspectLandUses": [ + "documents": [ { - "uuid": "34e6908e-8288-4925-b557-25db5264d9b3", + "uuid": "38b52531-ad7d-49ec-9829-7ce8d98b7724", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2020-02-11 (described on Site Profile dated 2020-02-11)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "documentDate": "2019-12-27", + "receivedDate": "2016-11-14", + "uploadedDate": "2017-02-28", + "title": "Preliminary Site Investigation, Detailed Site Investigation and Remedial Plan for the Management Area adjacent to the Shell Site at 1503 West 41st Ave", + "participants": [ + { + "uuid": "ba4bfe55-de94-4c5b-9eaa-50a2bbba6efa", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": true, + "role": "AUTHOR" + } + ] }, { - "uuid": "4340d252-59c2-4e29-9303-15b20f45e061", + "uuid": "271b85f9-676d-497a-a5fd-de53ad346966", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2020-09-28 (described on Site Profile dated 2020-09-28)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "documentDate": "2018-12-28", + "receivedDate": "2018-03-13", + "uploadedDate": "2022-08-23", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "b31df549-234a-45d1-aff5-73db89706bb6", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "7d516132-83f8-4d4f-94ed-aca245030584", + "name": "IPSUM", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "b90207ed-add4-4f97-97a9-9182e426d157", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": false, + "role": "AUTHOR" + } + ] + }, + { + "uuid": "afda94c6-cc9e-42ca-9c02-355f1d60ea5e", + "siteRegistry": true, + "documentDate": "2014-03-23", + "receivedDate": "2022-10-09", + "uploadedDate": "2016-07-10", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "f41259bc-b287-4e5e-b7e1-760b364e1458", + "name": "IPSUM", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "06f51277-f9e0-4ae3-8d84-603a68211cda", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "da01b606-d77d-4105-8a82-22109224b32e", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": false, + "role": "AUTHOR" + } + ] + }, + { + "uuid": "8480932c-8821-40f5-8e55-d15961d60cff", + "siteRegistry": true, + "documentDate": "2013-11-22", + "receivedDate": "2019-11-28", + "uploadedDate": "2019-12-15", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "dcd41307-997a-46cb-a783-4b2b970cec2a", + "name": "AMET, DOLOR SIT", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "920ab8ec-3ed5-45e8-b8b2-49a893088163", + "name": "AMET, DOLOR SIT", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "791c4781-1af4-4f46-bd82-45cd10192435", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": false, + "role": "AUTHOR" + } + ] } ], - "parcelDescriptions": [ + "suspectLandUses": [ + { + "uuid": "87b1da28-05e3-405f-b7e7-f8fbf80d7e9c", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2021-09-07 (described on Site Profile dated 2021-09-07)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, { - "uuid": "1f492fe9-43f3-466b-90cc-0c40fbcd3549", + "uuid": "198bfbe8-d8e5-4791-815b-5bc56a416014", "siteRegistry": true, - "dateNoted": "2022-09-04", - "parcelID": "17700", - "crownLandUsePIN": "16527", - "crownLandFileNumber": "17692", - "landDescription": "LOT 4 OF LOT 2 BLOCK 5 DISTRICT LOT 3 PLAN 8210" + "notes": "INSERTED FOR SITE PROFILE DATED 2022-09-09 (described on Site Profile dated 2022-09-09)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "uuid": "11e7887f-0304-42e5-897f-a1d91fad8645", + "uuid": "9ca964f3-1b15-4b36-8d08-e56c46080ebb", "siteRegistry": true, - "dateNoted": "2019-11-04", - "parcelID": "18869", - "crownLandUsePIN": "20927", - "crownLandFileNumber": "16954", - "landDescription": "LOT 5 OF LOT 1 BLOCK 4 DISTRICT LOT 2 PLAN 4088" + "notes": "INSERTED FOR SITE PROFILE DATED 2021-09-21 (described on Site Profile dated 2021-09-21)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "uuid": "5d835569-717a-43bc-9dfd-a79a8ba48257", + "uuid": "7cdd0a30-e14c-4468-898d-45033657811d", "siteRegistry": true, - "dateNoted": "2014-07-16", - "parcelID": "20975", - "crownLandUsePIN": "18523", - "crownLandFileNumber": "20735", - "landDescription": "LOT 2 OF LOT 5 BLOCK 2 DISTRICT LOT 5 PLAN 5711" + "notes": "INSERTED FOR SITE PROFILE DATED 2020-05-21 (described on Site Profile dated 2020-05-21)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "uuid": "dd39c543-f840-4ce1-a945-fea68a17f8e6", + "uuid": "f6472fde-7023-4c7b-b4b9-e0e9c72e66ad", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2015-02-12 (described on Site Profile dated 2015-02-12)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + } + ], + "parcelDescriptions": [ + { + "uuid": "11593f4b-e862-4b4f-abc7-77845ea7a5f0", "siteRegistry": false, - "dateNoted": "2020-03-02", - "parcelID": "19478", - "crownLandUsePIN": "20441", - "crownLandFileNumber": "16927", - "landDescription": "LOT 3 OF LOT 2 BLOCK 4 DISTRICT LOT 1 PLAN 8712" + "dateNoted": "2020-10-05", + "parcelID": "15790", + "crownLandUsePIN": "20450", + "crownLandFileNumber": "15221", + "landDescription": "LOT 5 OF LOT 4 BLOCK 2 DISTRICT LOT 1 PLAN 5012" + }, + { + "uuid": "8c6d453b-623a-4afa-84a8-50e03656b87b", + "siteRegistry": true, + "dateNoted": "2018-05-16", + "parcelID": "18038", + "crownLandUsePIN": "17351", + "crownLandFileNumber": "16857", + "landDescription": "LOT 5 OF LOT 2 BLOCK 1 DISTRICT LOT 2 PLAN 4221" } ], "siteDisclosures": [ { - "uuid": "fbe25178-fc71-48ab-b2d8-4ceebe080272", + "uuid": "52918cf1-cdd3-4b52-92ab-fad9a79ca7c1", "siteRegistry": true, - "dateReceived": "2018-01-28", - "dateCompleted": "2014-08-03", - "dateEntered": "2014-02-09", - "dateRegistrar": "2018-06-24", - "dateLocalAuthorityReceived": "2022-12-23", - "summary": "Iste veniam quis eos provident.", - "informationUsed": "Veniam soluta sint.\nCum perferendis itaque voluptas.\nSapiente iusto nemo repellendus sint ducimus odio ut alias.", - "pastOrPresentOrders": "Accusantium quam asperiores necessitatibus.\nExcepturi reiciendis quo autem.\nVeritatis mollitia unde nihil dicta.", + "dateReceived": "2021-07-24", + "dateCompleted": "2017-07-15", + "dateEntered": "2020-05-22", + "dateRegistrar": "2018-05-23", + "dateLocalAuthorityReceived": "2015-11-21", + "summary": "Omnis ea reiciendis.\nConsequatur delectus a iste officia at corporis temporibus.", + "informationUsed": "Nihil ab quod incidunt inventore vero illum dicta reprehenderit harum.\nUt officia non ab optio id quidem aperiam facilis provident.\nOfficia vel accusantium rerum eveniet nisi incidunt.", + "pastOrPresentOrders": "Voluptas saepe ipsa.\nOccaecati recusandae facere nostrum optio nobis quidem repellendus dolorem.\nDebitis repudiandae libero.", "commercialAndIndustrialPurposes": [ { - "uuid": "0c1dd4e5-7cac-4a5b-af9d-6d932484d533", - "scheduleReference": "F2*", + "uuid": "870dd3e6-d4a0-4d34-8b66-0787d52106b6", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { - "uuid": "11676203-8b6f-4b8d-a640-8f541ba068f8", + "uuid": "3ddfb8b3-79d1-4cd6-868a-ea5aab68ac5f", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "uuid": "9ff1827a-f594-4b2a-b1a7-2cdb6159ba37", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "uuid": "647df021-294d-4d84-a3e7-160a1ca003ed", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true @@ -12343,122 +14236,141 @@ ] }, { - "uuid": "776f217f-356d-4273-8b5a-830164328aaa", - "siteRegistry": true, - "dateReceived": "2017-10-04", - "dateCompleted": "2023-03-02", - "dateEntered": "2022-10-25", - "dateRegistrar": "2014-11-03", - "dateLocalAuthorityReceived": "2018-10-02", - "summary": "Deserunt assumenda dolor asperiores.\nOmnis quasi incidunt quibusdam dolor assumenda ipsum dolore sint.\nIure tempora recusandae optio asperiores voluptatibus veniam.", - "informationUsed": "Nostrum ipsa quisquam.\nReiciendis inventore saepe harum maxime facere ipsa nesciunt ipsum aspernatur.\nOdit dolores accusantium culpa voluptate placeat aliquam.", - "pastOrPresentOrders": "Deleniti quam nemo molestias suscipit.", + "uuid": "21156e9f-cb64-49c1-bb0a-bf72922cfaea", + "siteRegistry": false, + "dateReceived": "2022-04-28", + "dateCompleted": "2018-11-20", + "dateEntered": "2013-10-27", + "dateRegistrar": "2015-10-12", + "dateLocalAuthorityReceived": "2015-12-04", + "summary": "Corporis ipsam voluptatibus magnam totam explicabo.\nQuasi corporis quod fuga.\nTempore ea cupiditate aut voluptatibus repudiandae velit.", + "informationUsed": "Reiciendis libero minus accusamus minus.\nInventore aliquid voluptatum soluta similique tenetur blanditiis.\nAperiam deserunt quisquam delectus.\nAutem reprehenderit aperiam laudantium.", + "pastOrPresentOrders": "Dignissimos animi dolor totam perspiciatis neque porro voluptatibus quod.\nHic quasi possimus omnis.", "commercialAndIndustrialPurposes": [ { - "uuid": "6ee0870e-8820-4850-a037-1a966a38cc40", + "uuid": "e41d1c1f-9d7c-4a33-abb7-46fb72a6fe43", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "uuid": "585fd2a9-2933-44b1-9039-e1387c1a2692", "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, { - "uuid": "2e1e6adf-939b-4fb9-9615-37f29476f53f", + "uuid": "30406fe6-d6c0-4f16-94c1-ab84642b550d", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "uuid": "26650574-85ae-4fb1-a130-99c95e184029", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true + "siteRegistry": false } ] } ], "activityLog": [ { - "uuid": "89778a84-38ff-43d2-9c6f-6f5dad84f8c4", - "siteRegistry": true, + "uuid": "3869eda4-e4e1-4d75-b651-8ab01510506a", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "PADBERG MADILYN", - "timestamp": "2021-11-21" + "user": "VOLKMAN MORTIMER", + "timestamp": "2016-04-14" }, { - "uuid": "d0f2e770-c775-4ef6-be2b-d0263d46a7d1", + "uuid": "6fa53222-152f-4516-a818-98186d19089f", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "OLSON GLEN", - "timestamp": "2015-02-01" + "user": "OKUNEVA OPAL", + "timestamp": "2017-08-28" + }, + { + "uuid": "dcf8cb0c-b70b-44d6-bfe0-674bd5a099ae", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "JONES ODA", + "timestamp": "2016-11-06" }, { - "uuid": "01105901-0137-4074-a0bf-628148f54fa9", + "uuid": "fec6743a-51b4-4150-95f1-6562d556c475", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "ZEMLAK CAMERON", - "timestamp": "2020-01-23" + "user": "FISHER DEMOND", + "timestamp": "2019-08-09" }, { - "uuid": "fdfbb003-1bcb-4dd2-9c13-20ac54cb76a8", + "uuid": "f3c4e3d7-4bff-4d64-b219-5e90efe81da0", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "VEUM MAYNARD", - "timestamp": "2023-08-30" + "user": "SCHAMBERGER JEVON", + "timestamp": "2018-04-27" }, { - "uuid": "aec6a2cb-c21c-442b-a4e0-9bc1689d037c", - "siteRegistry": false, + "uuid": "cab52736-c1cb-4390-a336-f3b20a4b37c1", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "BOGISICH JADYN", - "timestamp": "2020-02-12" + "user": "LOWE GERDA", + "timestamp": "2021-01-02" } ], "associatedSites": [ { - "uuid": "f356d11e-c2e0-4ff5-ba4d-be95c9970232", - "dateNoted": "2014-08-16", + "uuid": "fa435107-d5f5-4b06-871a-680e13c9b45e", + "dateNoted": "2022-05-07", "notes": "", - "parcelID": "19427", - "siteID": "18294", - "siteRegistry": false + "parcelID": "17369", + "siteID": "17404", + "siteRegistry": true }, { - "uuid": "fec0ce7a-6356-4780-8e11-6569fd1255e2", - "dateNoted": "2015-05-21", + "uuid": "a0431ffe-7932-4d78-a50b-3a5d1ff2ceec", + "dateNoted": "2017-05-23", "notes": "", - "parcelID": "15393", - "siteID": "18504", - "siteRegistry": false + "parcelID": "20515", + "siteID": "15352", + "siteRegistry": true }, { - "uuid": "efe8b3b8-17cb-42d2-9399-50e035be33ac", - "dateNoted": "2018-10-22", + "uuid": "9d82ab36-34b2-4125-b8ae-1f176af3007d", + "dateNoted": "2015-07-24", "notes": "", - "parcelID": "18414", - "siteID": "17082", + "parcelID": "17676", + "siteID": "20698", "siteRegistry": true } ] }, { - "uuid": "c6729ae1-e127-4009-9362-997c04991b8b", - "siteID": 16270, - "address": "793 Bartholome Drive", - "latitude": 58.0994, - "longitude": -131.9011, - "lastUpdated": "2018-12-06", - "city": "Lake Sheridanborough", - "region": "Cariboo", - "victoriaFile": "26250-20/9622", + "uuid": "3b2fc856-0172-4a6c-96e7-5842e1fe5708", + "siteID": 18484, + "address": "775 Arch Lock", + "latitude": 53.5514, + "longitude": -120.3031, + "lastUpdated": "2016-05-10", + "city": "Gracielastead", + "region": "Mainland/Southwest", + "victoriaFile": "26250-20/6593", "regionalFile": "N/A", "parcelIDs": [ - 9262486, - 966798, - 8624258, - 2114360, - 7237804 + 8008092, + 6267037, + 3134348, + 4762627, + 850473 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "70391db2-e915-4e95-8be9-828929405162", - "createdAt": "2021-04-17", - "completed": "2015-12-01", - "initiated": "2020-07-17", - "ministryContact": "KOHLER CLEVE", + "uuid": "a4396f84-e4bd-4e90-a5c2-b8f48575d768", + "createdAt": "2018-07-09", + "completed": "2021-12-02", + "initiated": "2019-01-24", + "ministryContact": "ANKUNDING QUENTIN", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -12467,26 +14379,44 @@ ], "notationParticipants": [ { - "uuid": "5949a986-ae00-498f-b172-4f8708b35e98", + "uuid": "26e68559-ae8f-4ae2-b3f9-347c289faa8a", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "aa2ff515-5418-4419-8c7a-9f9b979a682f", - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "383725bf-cf4d-4869-b264-f4306115ede3", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "2f98cf40-3ee1-44d2-90b2-44f246defb6a", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false + }, + { + "uuid": "df3c139e-412e-4380-b049-b77b9b1ee539", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "uuid": "66ac0748-cb5f-4a37-b89f-8d92058b6c68", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true } ], "siteRegistry": true }, { - "uuid": "9fe1128a-6a06-4227-9175-b6f19b5b0d53", - "createdAt": "2020-08-19", - "completed": "2020-04-22", - "initiated": "2023-03-01", - "ministryContact": "EFFERTZ ROSINA", + "uuid": "a5461bfa-9786-4511-bbe4-ae4183a3b655", + "createdAt": "2014-04-01", + "completed": "2022-06-12", + "initiated": "2018-02-11", + "ministryContact": "TROMP VALLIE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -12495,34 +14425,50 @@ ], "notationParticipants": [ { - "uuid": "af8e7ce6-6258-4d87-9abc-ab10c8a65db7", + "uuid": "42ee115c-74d8-4232-b19f-912985a1e6a5", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true + "role": "SUBMITTED BY", + "siteRegistry": false }, { - "uuid": "bee0abc7-dd50-464f-bc6e-da380b8ba044", + "uuid": "5482d50c-1a0a-4fc4-9f3b-106f8c6b8693", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "1e2ddaae-fa96-4f2a-8d11-d2f5ff56cd31", - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, + "uuid": "9111fdb2-8716-496c-aa95-742087097c07", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "uuid": "4bf1e540-d97f-4606-bdd5-bfeebe0f77fd", + "createdAt": "2022-08-31", + "completed": "2015-08-16", + "initiated": "2020-02-29", + "ministryContact": "CONROY MELLIE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ { - "uuid": "732679e8-e3eb-4af9-970b-5279dd815f1c", - "name": "SHELL CANADA PRODUCTS", + "uuid": "a30c5f2a-1e24-4101-90b9-03f80f56f6f3", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "42d6c84d-812e-4068-a43f-9d171e28b70e", - "name": "SHELL CANADA PRODUCTS", + "uuid": "30c817d2-64e9-4be3-924b-e58d780fb91d", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true } ], "siteRegistry": true @@ -12530,21 +14476,10 @@ ], "participants": [ { - "uuid": "7e69645b-0adf-43cc-99d9-fddbb2b20dc9", - "name": "AMET, DOLOR SIT", - "endDate": "2022-06-11", - "startDate": "2022-04-04", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": false - }, - { - "uuid": "12d93888-729d-4fce-a938-cc4641311ea7", - "name": "SHELL CANADA PRODUCTS", - "endDate": "2015-02-13", - "startDate": "2018-07-16", + "uuid": "5093bf0e-f86c-465a-9cf0-e5728b2c9890", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2019-05-17", + "startDate": "2020-11-08", "notes": "", "roles": [ "EMPLOYEE" @@ -12552,32 +14487,32 @@ "siteRegistry": true }, { - "uuid": "2c99c259-ebbc-4717-9184-a65231a26a08", + "uuid": "f6a79de9-5aff-4e3e-8e11-103478a3ba36", "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2018-10-03", - "startDate": "2023-04-12", + "endDate": "2023-06-23", + "startDate": "2022-04-20", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": false }, { - "uuid": "faba3ea3-43af-4e61-b67c-f06a0aa4cb96", + "uuid": "a081d8e4-40e2-4700-872c-cc26355a5817", "name": "SHELL CANADA PRODUCTS", - "endDate": "2020-07-30", - "startDate": "2017-08-25", + "endDate": "2016-12-04", + "startDate": "2016-11-13", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": false }, { - "uuid": "4851809b-ab8f-4119-a3b2-dc3e908c6320", + "uuid": "63568a96-976c-4545-ae73-3ed2c97d1bbf", "name": "IPSUM", - "endDate": "2014-09-04", - "startDate": "2020-12-27", + "endDate": "2023-08-19", + "startDate": "2015-10-12", "notes": "", "roles": [ "EMPLOYEE" @@ -12585,215 +14520,302 @@ "siteRegistry": false } ], - "suspectLandUses": [ + "documents": [ { - "uuid": "93111492-dcf6-4e92-a5f5-8243aaa20c94", + "uuid": "2fc72278-7b6c-433a-a641-d3a72789a965", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-02-07 (described on Site Profile dated 2015-02-07)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "documentDate": "2016-02-22", + "receivedDate": "2023-06-30", + "uploadedDate": "2020-04-30", + "title": "Summary of Site Conditions, 1537 W 41st Avenue, Vancouver", + "participants": [ + { + "uuid": "91e3b2fa-b648-4fe2-b312-4445401d040e", + "name": "IPSUM", + "siteRegistry": false, + "role": "AUTHOR" + } + ] }, { - "uuid": "8c4ea326-658b-4153-bdca-867539737952", - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-03-25 (described on Site Profile dated 2021-03-25)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "uuid": "a80c4d5c-bb81-4a2e-953a-41db2375cdc9", + "siteRegistry": false, + "documentDate": "2016-03-15", + "receivedDate": "2022-08-19", + "uploadedDate": "2020-01-13", + "title": "Preliminary Site Investigation, Detailed Site Investigation and Remedial Plan for the Management Area adjacent to the Shell Site at 1503 West 41st Ave", + "participants": [ + { + "uuid": "7883e22b-d6f9-44eb-801b-2bd16b115c22", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "8870382d-c075-4869-a53f-1679372a03c2", + "name": "IPSUM", + "siteRegistry": false, + "role": "AUTHOR" + } + ] }, { - "uuid": "a17c9b6b-b14f-4d7e-9604-1bb424dbfe2c", + "uuid": "c9b4e357-7aaa-4d57-a30b-4d6e6974d97e", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-08-07 (described on Site Profile dated 2014-08-07)", + "documentDate": "2020-12-18", + "receivedDate": "2016-12-26", + "uploadedDate": "2018-06-18", + "title": "Preliminary Site Investigation, Detailed Site Investigation and Remedial Plan for the Management Area adjacent to the Shell Site at 1503 West 41st Ave", + "participants": [ + { + "uuid": "effd0417-8a4d-4cd7-8bf2-7014b478bda3", + "name": "IPSUM", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "5abe9a21-9312-4c71-a111-b059500a32c7", + "name": "AMET, DOLOR SIT", + "siteRegistry": false, + "role": "AUTHOR" + } + ] + }, + { + "uuid": "00584065-c6ac-4378-97ca-e6b3db7223ab", + "siteRegistry": true, + "documentDate": "2015-01-01", + "receivedDate": "2016-05-08", + "uploadedDate": "2020-02-16", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "ad957921-ffcb-4468-8bcf-e87f090d22d0", + "name": "IPSUM", + "siteRegistry": true, + "role": "AUTHOR" + } + ] + }, + { + "uuid": "5f6959b0-4cc6-4f44-821a-40a8aa858cb6", + "siteRegistry": true, + "documentDate": "2021-03-13", + "receivedDate": "2021-08-20", + "uploadedDate": "2016-12-22", + "title": "Preliminary Site Investigation, Detailed Site Investigation and Remedial Plan for the Management Area adjacent to the Shell Site at 1503 West 41st Ave", + "participants": [ + { + "uuid": "2cc33770-0b47-4158-8592-3fcd544f375a", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "92265a4b-d374-4274-b864-73a5e2a6ae1c", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": false, + "role": "AUTHOR" + } + ] + } + ], + "suspectLandUses": [ + { + "uuid": "08bdf470-100c-44bc-91e2-38f608fada6e", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2021-05-25 (described on Site Profile dated 2021-05-25)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "uuid": "90cd57da-22ef-40aa-a574-7a4b622300b6", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2016-12-01 (described on Site Profile dated 2016-12-01)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "uuid": "80af21e1-2399-4cc9-979a-c7dd35e02f60", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2019-07-09 (described on Site Profile dated 2019-07-09)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], "parcelDescriptions": [ { - "uuid": "f627cd6f-3202-4fa6-9844-00e1993f4e98", + "uuid": "35d943e7-3eaf-47f1-9b41-8127ab944c36", "siteRegistry": true, - "dateNoted": "2018-01-19", - "parcelID": "16905", - "crownLandUsePIN": "20343", - "crownLandFileNumber": "20033", - "landDescription": "LOT 2 OF LOT 2 BLOCK 3 DISTRICT LOT 1 PLAN 8458" + "dateNoted": "2017-07-10", + "parcelID": "16292", + "crownLandUsePIN": "20976", + "crownLandFileNumber": "18281", + "landDescription": "LOT 1 OF LOT 4 BLOCK 3 DISTRICT LOT 2 PLAN 6105" }, { - "uuid": "bd546f4a-f84a-4a9c-b121-1e9d5aa75395", + "uuid": "890c5d44-6fb8-4a30-965e-268abea9de2c", "siteRegistry": false, - "dateNoted": "2016-06-15", - "parcelID": "15908", - "crownLandUsePIN": "18205", - "crownLandFileNumber": "19394", - "landDescription": "LOT 4 OF LOT 5 BLOCK 2 DISTRICT LOT 1 PLAN 6430" + "dateNoted": "2019-10-11", + "parcelID": "20918", + "crownLandUsePIN": "17829", + "crownLandFileNumber": "16873", + "landDescription": "LOT 2 OF LOT 3 BLOCK 1 DISTRICT LOT 5 PLAN 9499" }, { - "uuid": "957c7120-8049-42e4-9a13-e89b526d8a23", - "siteRegistry": false, - "dateNoted": "2016-12-21", - "parcelID": "15528", - "crownLandUsePIN": "17070", - "crownLandFileNumber": "19748", - "landDescription": "LOT 1 OF LOT 1 BLOCK 3 DISTRICT LOT 2 PLAN 7061" + "uuid": "b38843b3-a88c-400d-9e20-7b6595c50f15", + "siteRegistry": true, + "dateNoted": "2014-08-15", + "parcelID": "15912", + "crownLandUsePIN": "17586", + "crownLandFileNumber": "19361", + "landDescription": "LOT 4 OF LOT 2 BLOCK 2 DISTRICT LOT 2 PLAN 3560" }, { - "uuid": "519e2c5b-5837-4e7d-b9e5-8df7cccc16f4", + "uuid": "94795fbc-31b0-4aa7-bf4f-37eca14cd759", "siteRegistry": false, - "dateNoted": "2014-06-02", - "parcelID": "20055", - "crownLandUsePIN": "16040", - "crownLandFileNumber": "19633", - "landDescription": "LOT 5 OF LOT 5 BLOCK 2 DISTRICT LOT 5 PLAN 6473" + "dateNoted": "2014-01-13", + "parcelID": "19976", + "crownLandUsePIN": "18868", + "crownLandFileNumber": "20085", + "landDescription": "LOT 3 OF LOT 3 BLOCK 2 DISTRICT LOT 4 PLAN 3136" }, { - "uuid": "45a17c58-1db3-4400-83f1-c15f961711e7", - "siteRegistry": true, - "dateNoted": "2017-11-04", - "parcelID": "20533", - "crownLandUsePIN": "15291", - "crownLandFileNumber": "20740", - "landDescription": "LOT 5 OF LOT 1 BLOCK 4 DISTRICT LOT 2 PLAN 6693" + "uuid": "c68312ad-ac59-4826-85a7-b53f8a0178af", + "siteRegistry": false, + "dateNoted": "2017-12-12", + "parcelID": "18590", + "crownLandUsePIN": "20443", + "crownLandFileNumber": "19784", + "landDescription": "LOT 1 OF LOT 3 BLOCK 2 DISTRICT LOT 3 PLAN 5328" } ], "siteDisclosures": [ { - "uuid": "f7195b10-3e60-4c21-9180-ea5398cf0a8e", + "uuid": "ba3cc303-586a-46e5-9386-512227f548fd", "siteRegistry": false, - "dateReceived": "2021-08-15", - "dateCompleted": "2017-08-15", - "dateEntered": "2021-10-19", - "dateRegistrar": "2017-04-13", - "dateLocalAuthorityReceived": "2014-06-27", - "summary": "Numquam tempore saepe consectetur nulla.", - "informationUsed": "Veniam quaerat aliquam necessitatibus tenetur id.\nIusto corrupti explicabo cupiditate.\nNulla dolorum temporibus voluptatem rem excepturi.", - "pastOrPresentOrders": "Commodi quam porro.\nVoluptatum excepturi minima quas reprehenderit consequuntur quam enim ipsa ducimus.\nMaiores expedita non odit labore hic aspernatur inventore alias.", + "dateReceived": "2021-11-12", + "dateCompleted": "2017-02-21", + "dateEntered": "2013-12-27", + "dateRegistrar": "2021-10-16", + "dateLocalAuthorityReceived": "2022-07-11", + "summary": "Provident error temporibus.", + "informationUsed": "Quasi exercitationem accusamus.\nAdipisci tempora aut repellat expedita provident minima nesciunt maxime quas.\nTemporibus voluptates temporibus ducimus explicabo minus.\nAlias distinctio nostrum sunt.", + "pastOrPresentOrders": "Accusantium tempore cupiditate.\nVelit deserunt in vero.\nFacilis eos enim molestiae nobis alias.", "commercialAndIndustrialPurposes": [ { - "uuid": "77573b1e-e0ba-4d4d-99bb-af9b99dae0fe", - "scheduleReference": "F1*", + "uuid": "160cb3e3-a929-4990-b32c-9aac79623b1b", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { - "uuid": "d3703412-1ee0-4c1d-829c-ff8b9bc5947d", + "uuid": "b1a88568-8e52-4f35-a180-e52aff157a34", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true - } - ] - }, - { - "uuid": "1e3f259b-30d8-492d-8037-90c3e05a79f8", - "siteRegistry": true, - "dateReceived": "2016-12-26", - "dateCompleted": "2013-10-24", - "dateEntered": "2022-01-03", - "dateRegistrar": "2015-09-18", - "dateLocalAuthorityReceived": "2022-02-23", - "summary": "Voluptatum maxime minima voluptate distinctio possimus nemo itaque quam voluptas.\nIpsa iste reiciendis.", - "informationUsed": "Similique vitae doloribus rerum similique molestiae.\nIllo sed error quod distinctio corrupti quae voluptatum.\nTempore placeat eveniet eius porro sapiente vitae corporis maxime.\nAt optio a quis tempore dignissimos minus quae ullam.\nEsse vero blanditiis fugiat ex blanditiis animi molestiae rerum.", - "pastOrPresentOrders": "Est voluptas quibusdam laudantium repellendus odit eligendi voluptates.\nQuaerat quis rerum veniam atque qui fugit ipsam.\nPerferendis officia sapiente mollitia fuga facere.", - "commercialAndIndustrialPurposes": [ - { - "uuid": "8d65109f-34e6-4520-a68f-4a1603130d71", - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true - }, - { - "uuid": "89971eb8-7069-43af-913f-a11c4d170ad1", - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true + "siteRegistry": false + }, + { + "uuid": "df1e4fb4-5c16-4058-8df0-d09b7fa67752", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false } ] } ], "activityLog": [ { - "uuid": "4f8ee41e-de77-429b-bca5-55e0c70f6444", + "uuid": "ae210e80-a189-47fc-82a1-ba24b894d105", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "ANDERSON PRINCESS", - "timestamp": "2022-10-11" + "user": "BERGSTROM RASHEED", + "timestamp": "2014-04-28" }, { - "uuid": "e7a37505-0d6c-41ed-b6d4-abd34037be55", - "siteRegistry": false, + "uuid": "d6c0d4bc-672e-44b5-9cb1-c03e517d4b47", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "LUETTGEN HUDSON", - "timestamp": "2018-01-16" + "user": "ABBOTT BRYANA", + "timestamp": "2022-05-17" }, { - "uuid": "f425416f-ecc3-42c1-b5c9-c0c7da255aa2", + "uuid": "5857d54a-4d6a-4591-ba8b-2a6ec7af798c", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "PFEFFER CECELIA", - "timestamp": "2022-02-08" + "user": "HARBER WINSTON", + "timestamp": "2018-06-29" }, { - "uuid": "5fc269cd-2143-47e6-a9e5-182f9216161c", - "siteRegistry": true, + "uuid": "e1c03af2-2874-46b1-940e-7b3c02f11944", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "STRACKE BRIELLE", - "timestamp": "2015-02-09" + "user": "WIEGAND MAXIMILIAN", + "timestamp": "2020-06-03" }, { - "uuid": "d015b5cd-da51-42d4-84ca-5e2a54287504", + "uuid": "19180834-0885-4190-a2ff-214999704213", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "PARISIAN ARLO", - "timestamp": "2020-07-05" + "user": "TREUTEL STAN", + "timestamp": "2020-07-13" }, { - "uuid": "f026baa6-38e5-42c6-bff6-c1cce155f619", - "siteRegistry": true, + "uuid": "36e1bf51-dd64-4ecb-83ad-cc6989649931", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "GOODWIN AILEEN", - "timestamp": "2015-12-20" + "user": "LUETTGEN LINWOOD", + "timestamp": "2022-03-29" }, { - "uuid": "c6535081-bc69-48ab-9edd-7d2f13955ee7", + "uuid": "36ba16a0-0e02-432a-9235-9d1baa53024b", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "CORWIN-HACKETT ANGELITA", - "timestamp": "2017-11-18" + "user": "VANDERVORT TYLER", + "timestamp": "2015-08-06" + }, + { + "uuid": "f308ea02-fd75-4978-97c2-9a84925b0356", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "SAWAYN KRISTOFFER", + "timestamp": "2022-02-06" } ], "associatedSites": [ { - "uuid": "e601a438-dbe5-4f4b-861e-f937d3585a92", - "dateNoted": "2022-06-12", + "uuid": "149da776-3e39-44be-a603-0b4a364e02ce", + "dateNoted": "2017-10-20", "notes": "", - "parcelID": "15532", - "siteID": "16986", + "parcelID": "20086", + "siteID": "20206", "siteRegistry": true } ] }, { - "uuid": "613e8a04-6b15-4b6a-9876-90296b144fb5", - "siteID": 20024, - "address": "5570 William Lodge", - "latitude": 52.0159, - "longitude": -120.2014, - "lastUpdated": "2022-11-16", - "city": "Boganfield", - "region": "Mainland/Southwest", - "victoriaFile": "26250-20/19541", + "uuid": "b67e7dd4-4946-41f7-8403-a15e36474c8c", + "siteID": 20261, + "address": "617 Lockman Neck", + "latitude": 50.6553, + "longitude": -124.6911, + "lastUpdated": "2014-05-19", + "city": "Weymouth Town", + "region": "Vancouver Island/Coast", + "victoriaFile": "26250-20/16975", "regionalFile": "N/A", "parcelIDs": [ - 5765179, - 9467231, - 5534152, - 1677395, - 131822 + 5981601, + 4669002, + 1224236, + 8211378, + 8736012 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "b6ab553a-3cd3-4c1e-8bf0-0610500068a6", - "createdAt": "2016-01-17", - "completed": "2019-02-06", - "initiated": "2019-09-23", - "ministryContact": "ORN LARUE", + "uuid": "131a2433-5b4e-4de6-9f0a-08f19d680dd1", + "createdAt": "2022-02-02", + "completed": "2014-10-13", + "initiated": "2019-10-05", + "ministryContact": "GUTKOWSKI ELINOR", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -12802,78 +14824,26 @@ ], "notationParticipants": [ { - "uuid": "4f0b81dc-f500-4772-be6e-7f2bc6570bab", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "uuid": "1af65f49-7b6a-4135-89c5-9dd2c31cbb53", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "uuid": "4fcf85a2-ba2f-4139-ad0d-f0d82898b98d", - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "uuid": "cda930a9-6eb2-44d8-9bd5-b59a15926226", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "uuid": "63ef48df-03a9-46bb-9bad-380e74bfef44", + "uuid": "11f69fb5-f4a0-46e5-bba4-b59a02dc7efc", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true - } - ], - "siteRegistry": false - }, - { - "uuid": "d9624022-6c73-4dee-887a-37298eb9c921", - "createdAt": "2019-10-25", - "completed": "2023-06-24", - "initiated": "2017-06-11", - "ministryContact": "ARMSTRONG SABRINA", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "uuid": "8d8bd714-7555-43d7-b94f-1069e99670d0", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false }, { - "uuid": "432fdf96-4592-4f5d-a4fe-d49c2f857aa1", + "uuid": "2c8f3bdb-5c47-43e4-9da0-661803de3ad5", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "uuid": "8188c83f-3fdc-4ffc-89ab-1d5b6efc82c1", - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false } ], "siteRegistry": true }, { - "uuid": "b4c54128-967a-4b78-a704-a3daaa09a7d0", - "createdAt": "2015-01-14", - "completed": "2017-11-29", - "initiated": "2023-10-11", - "ministryContact": "BOTSFORD LAYLA", + "uuid": "03b9b5bc-761f-4ed4-ad5e-2be3c6c9150f", + "createdAt": "2018-08-11", + "completed": "2022-09-06", + "initiated": "2015-08-09", + "ministryContact": "ABSHIRE KAMERON", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -12882,44 +14852,26 @@ ], "notationParticipants": [ { - "uuid": "cc6c70e4-a780-4ac5-bfe7-50c49809d20c", - "name": "SHELL CANADA PRODUCTS", + "uuid": "497cb199-c5d0-4b14-8f70-a3ea552e6a4e", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false }, { - "uuid": "c3871352-7876-41b4-a610-fd6830c31a42", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "uuid": "0ff4b205-b533-482d-b9ca-084267a41957", + "uuid": "9f7fec1b-506e-40ea-8b37-2af3fc9af329", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true - }, - { - "uuid": "f72e4c61-aa6a-4f05-b072-49bea6af48c4", - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "uuid": "7d10f5e9-3b1d-40a7-a382-26782e5ad0c5", - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "4725fde5-aa58-4419-b39f-adda5851e10e", - "createdAt": "2015-06-15", - "completed": "2022-01-10", - "initiated": "2020-12-04", - "ministryContact": "ERDMAN ABBIGAIL", + "uuid": "8b55b4ad-30e8-428b-b00d-b3f33e46ecbc", + "createdAt": "2022-11-11", + "completed": "2014-04-13", + "initiated": "2019-08-18", + "ministryContact": "HINTZ VLADIMIR", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -12928,96 +14880,44 @@ ], "notationParticipants": [ { - "uuid": "65b627a7-16d7-4969-ac5e-5aab739b7598", + "uuid": "fc313e5b-00e3-4076-a8b8-a971ae5a3398", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true }, { - "uuid": "971323da-97b4-433d-afa8-4a624d547092", - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "uuid": "e4f6d9ec-62fa-4d01-931b-402a64507fff", - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "uuid": "22fe8a0e-8589-4e82-9a0f-07d88ebc13ba", + "uuid": "027c2cee-2f40-4e66-8ed3-651e0726ee58", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false }, { - "uuid": "5a3febbc-05d7-4b33-a10d-3c26428104bb", - "name": "SHELL CANADA PRODUCTS", + "uuid": "feb44298-a625-4223-a422-2931bbf54d4f", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true } ], "siteRegistry": false - }, - { - "uuid": "79bb17ce-552d-4ba3-91d2-9c2318a24730", - "createdAt": "2016-07-27", - "completed": "2018-04-25", - "initiated": "2016-01-04", - "ministryContact": "EBERT FLORENCE", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "uuid": "25dc9ef7-76e8-45b8-96a7-0f3393517de5", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "uuid": "835c8c03-0583-41dd-8f15-158e0bde3b17", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "uuid": "983f0188-c0d7-47dc-9718-453fd5d2dcbf", - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "uuid": "e2a5aa38-3b3b-4936-b3a8-0086c2688a9c", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - } - ], - "siteRegistry": true } ], "participants": [ { - "uuid": "852d18d0-52c2-4502-82c6-2bb4c526c88d", - "name": "AMET, DOLOR SIT", - "endDate": "2014-07-04", - "startDate": "2017-10-31", + "uuid": "a7b15d3c-bb8c-443c-aad8-59f249b2ee9a", + "name": "IPSUM", + "endDate": "2022-09-25", + "startDate": "2015-04-02", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "1b14f16b-0eec-4993-8032-5fd59b4656a3", + "uuid": "8bc76df9-0cd0-447d-a89d-305432b88473", "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2021-04-11", - "startDate": "2019-04-30", + "endDate": "2022-03-15", + "startDate": "2014-09-30", "notes": "", "roles": [ "EMPLOYEE" @@ -13025,21 +14925,21 @@ "siteRegistry": false }, { - "uuid": "9d20dd47-99f1-44a4-aa4f-d33f2d636a1c", + "uuid": "b3351e7b-be81-4696-b572-9d8290c7352a", "name": "IPSUM", - "endDate": "2021-03-16", - "startDate": "2020-03-04", + "endDate": "2018-05-10", + "startDate": "2020-07-10", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "b93f0ee9-bcb5-454c-84eb-a46914a3dbdf", + "uuid": "3cdeb3ba-2a7e-4740-961e-e9b9243b5a65", "name": "IPSUM", - "endDate": "2020-07-28", - "startDate": "2020-09-01", + "endDate": "2017-01-10", + "startDate": "2019-02-14", "notes": "", "roles": [ "ORGANIZATION" @@ -13047,218 +14947,311 @@ "siteRegistry": false }, { - "uuid": "24b9f88e-e86e-428b-a08f-937054176b62", - "name": "SHELL CANADA PRODUCTS", - "endDate": "2022-08-24", - "startDate": "2019-07-23", + "uuid": "6ef07e61-98e5-4877-92b7-44c01f79de36", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2018-06-05", + "startDate": "2022-03-05", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": false } ], - "suspectLandUses": [ + "documents": [ { - "uuid": "c7e09c75-5dfb-4cbb-b337-68d052f18a93", - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-07-04 (described on Site Profile dated 2018-07-04)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "uuid": "d629ec7b-7ef5-48aa-b1db-1e0f54205b78", + "siteRegistry": true, + "documentDate": "2021-08-07", + "receivedDate": "2016-12-24", + "uploadedDate": "2022-07-19", + "title": "Summary of Site Conditions, 1537 W 41st Avenue, Vancouver", + "participants": [ + { + "uuid": "9cd0ee95-3c57-4e55-8a56-580a426abd7c", + "name": "AMET, DOLOR SIT", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "dd1a1c91-b510-4659-a0e1-a2263d0ab508", + "name": "AMET, DOLOR SIT", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "44965c1e-29ab-40e7-b921-f76348cd60e4", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": true, + "role": "AUTHOR" + } + ] }, { - "uuid": "e2df761f-0242-480b-88a1-966871524f15", + "uuid": "608894eb-052c-4fc4-9469-75a78b95ab75", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-08-07 (described on Site Profile dated 2016-08-07)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "documentDate": "2022-05-05", + "receivedDate": "2020-06-14", + "uploadedDate": "2015-09-12", + "title": "Preliminary Site Investigation, Detailed Site Investigation and Remedial Plan for the Management Area adjacent to the Shell Site at 1503 West 41st Ave", + "participants": [ + { + "uuid": "9552423d-9153-443d-8d7f-03ca1e7fd626", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "9b2f16cc-87db-4ca9-a87d-2f1a4279e66e", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "2b7442fe-7487-4d48-adeb-400a0aad6377", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": true, + "role": "AUTHOR" + } + ] }, { - "uuid": "dee24f97-c311-40e2-9c89-7598036cd35d", + "uuid": "945024de-d98e-4169-b8d5-2584ca78cfe3", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-03-08 (described on Site Profile dated 2019-03-08)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "documentDate": "2015-12-27", + "receivedDate": "2022-08-20", + "uploadedDate": "2015-11-16", + "title": "Preliminary Site Investigation, Detailed Site Investigation and Remedial Plan for the Management Area adjacent to the Shell Site at 1503 West 41st Ave", + "participants": [ + { + "uuid": "c05d83be-6a05-482a-adea-36fd19d0d5ef", + "name": "AMET, DOLOR SIT", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "800c79e4-a28b-40be-a905-2636efbb6f06", + "name": "AMET, DOLOR SIT", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "873b1296-80fe-4ad2-8df5-e53697d1b1f4", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": true, + "role": "AUTHOR" + } + ] + }, + { + "uuid": "f715607d-c232-46b3-a1e5-9bc6b8a2495d", + "siteRegistry": false, + "documentDate": "2020-12-19", + "receivedDate": "2020-11-05", + "uploadedDate": "2018-04-25", + "title": "Summary of Site Conditions, 1537 W 41st Avenue, Vancouver", + "participants": [ + { + "uuid": "ce88a08d-feaf-44d6-89fb-a25923ca8859", + "name": "IPSUM", + "siteRegistry": true, + "role": "AUTHOR" + } + ] } ], - "parcelDescriptions": [ + "suspectLandUses": [ { - "uuid": "22b73a34-ef7f-4812-91e2-0a5325787552", + "uuid": "2964cfc8-c290-40dd-bd69-64100e509c2f", "siteRegistry": false, - "dateNoted": "2019-02-28", - "parcelID": "20792", - "crownLandUsePIN": "20592", - "crownLandFileNumber": "15481", - "landDescription": "LOT 4 OF LOT 2 BLOCK 3 DISTRICT LOT 5 PLAN 4522" + "notes": "INSERTED FOR SITE PROFILE DATED 2014-01-27 (described on Site Profile dated 2014-01-27)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "uuid": "7b35035c-d265-4154-b14d-0ed83e61df5f", - "siteRegistry": false, - "dateNoted": "2015-02-01", - "parcelID": "17862", - "crownLandUsePIN": "18943", - "crownLandFileNumber": "19187", - "landDescription": "LOT 5 OF LOT 5 BLOCK 1 DISTRICT LOT 2 PLAN 6899" + "uuid": "f85e1356-f2c3-4f02-95ba-be650a475ff1", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2014-10-05 (described on Site Profile dated 2014-10-05)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "uuid": "0e8bfd9c-ddd6-4140-a999-5e98df84d90c", + "uuid": "f816085f-ff2d-48d3-ae35-6d3f2b187c36", "siteRegistry": true, - "dateNoted": "2015-07-10", - "parcelID": "18950", - "crownLandUsePIN": "17882", - "crownLandFileNumber": "16802", - "landDescription": "LOT 3 OF LOT 3 BLOCK 1 DISTRICT LOT 2 PLAN 3145" + "notes": "INSERTED FOR SITE PROFILE DATED 2021-04-19 (described on Site Profile dated 2021-04-19)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "uuid": "8ec69b64-0f39-4ed8-890d-04b0121e4703", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2020-11-12 (described on Site Profile dated 2020-11-12)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], - "siteDisclosures": [ + "parcelDescriptions": [ { - "uuid": "aa659516-c042-4021-88ea-216a1ce43f20", + "uuid": "d5aaa4e6-0cac-4072-add6-5302151c350a", "siteRegistry": true, - "dateReceived": "2023-04-04", - "dateCompleted": "2023-05-02", - "dateEntered": "2022-04-29", - "dateRegistrar": "2016-11-21", - "dateLocalAuthorityReceived": "2018-07-26", - "summary": "Laudantium veritatis fuga totam placeat architecto et velit vitae.\nRecusandae beatae magni veritatis repudiandae.\nSit architecto est.", - "informationUsed": "Atque ipsum et aperiam.\nPlaceat esse iure.\nUt quaerat in.", - "pastOrPresentOrders": "Atque beatae amet animi.\nEius similique non.\nEarum illum ipsam nostrum voluptates.", - "commercialAndIndustrialPurposes": [ - { - "uuid": "d184547d-c683-4d3e-ab38-93d7d52bce72", - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true - }, - { - "uuid": "ac2306bb-04de-4f07-8e2f-635807646e67", - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false - }, - { - "uuid": "617ce3d7-1d70-42f0-9c17-a16507fde5c5", - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true - }, - { - "uuid": "e30e597c-787c-497c-a812-28664ac97940", - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true - } - ] + "dateNoted": "2019-05-20", + "parcelID": "18191", + "crownLandUsePIN": "17686", + "crownLandFileNumber": "18415", + "landDescription": "LOT 4 OF LOT 4 BLOCK 3 DISTRICT LOT 2 PLAN 7021" + }, + { + "uuid": "55fdcec1-eff0-4f82-b11d-620501d28bb1", + "siteRegistry": true, + "dateNoted": "2013-10-27", + "parcelID": "20200", + "crownLandUsePIN": "16353", + "crownLandFileNumber": "17927", + "landDescription": "LOT 2 OF LOT 5 BLOCK 1 DISTRICT LOT 2 PLAN 6275" }, { - "uuid": "94fcf570-9fab-43e1-9a27-782063cd1273", + "uuid": "76be6e6e-505c-4fe8-88ae-12e212fe582d", "siteRegistry": false, - "dateReceived": "2015-09-29", - "dateCompleted": "2015-04-03", - "dateEntered": "2018-06-14", - "dateRegistrar": "2020-06-19", - "dateLocalAuthorityReceived": "2021-04-22", - "summary": "Iusto esse soluta possimus minima consectetur placeat corrupti aut.", - "informationUsed": "Quidem quis ullam magni ullam culpa deleniti molestias.\nTempora aperiam reiciendis officia maiores nobis ipsum soluta vel ratione.\nIure est debitis.\nCupiditate eos consequatur et veritatis commodi nihil velit.\nDicta atque explicabo voluptatum deserunt.", - "pastOrPresentOrders": "Eaque facere dicta aut incidunt itaque.\nError numquam minima magni enim dolores autem ad dolorem veritatis.\nReprehenderit dolores autem laboriosam.", + "dateNoted": "2014-10-13", + "parcelID": "15380", + "crownLandUsePIN": "18709", + "crownLandFileNumber": "16249", + "landDescription": "LOT 1 OF LOT 5 BLOCK 5 DISTRICT LOT 2 PLAN 8550" + } + ], + "siteDisclosures": [ + { + "uuid": "719817db-568e-4e37-80ec-555d9042629c", + "siteRegistry": true, + "dateReceived": "2021-01-08", + "dateCompleted": "2016-05-25", + "dateEntered": "2017-06-10", + "dateRegistrar": "2020-01-25", + "dateLocalAuthorityReceived": "2019-12-13", + "summary": "Dolorem tenetur perspiciatis veniam doloremque voluptas.", + "informationUsed": "Accusantium voluptatibus possimus atque eveniet fuga dolorum.\nSunt reiciendis ratione vitae ex fugit.\nAperiam ab voluptatem nisi culpa magnam aliquid nam ut odio.", + "pastOrPresentOrders": "Atque in ipsum temporibus minima facere libero quasi fugit iure.", "commercialAndIndustrialPurposes": [ { - "uuid": "fc506791-71f2-4f6a-9da7-9fae8dafc280", - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false - }, - { - "uuid": "c61c0135-3b71-434e-814d-f9d82692c97c", + "uuid": "cef95ee7-aec0-4e0c-9b28-862c7d917d34", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false }, { - "uuid": "5beb0abc-07d7-482b-bb5a-ff3d3e865bed", - "scheduleReference": "F1*", + "uuid": "5b9ab1c3-a4ad-47d4-ba31-089b86fca436", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false - }, - { - "uuid": "4d933fe2-be1d-4a0c-85fe-c3cd5b2ded97", - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true } ] } ], "activityLog": [ { - "uuid": "c30c81c7-42a0-4528-befe-2356baf2da08", + "uuid": "0a015954-320a-4cfb-b3ad-2eab9cbde579", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "LEDNER DARRICK", - "timestamp": "2017-09-23" + "user": "KEMMER ELOISA", + "timestamp": "2016-01-11" }, { - "uuid": "d77b62e1-2717-477b-ba3e-c63f81319344", - "siteRegistry": false, + "uuid": "e3b00aa1-c7c2-4f33-a4b9-0bcd1c3ac793", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "REINGER CEASAR", - "timestamp": "2018-02-19" + "user": "RAU NAPOLEON", + "timestamp": "2019-08-28" + }, + { + "uuid": "8d74cdac-9cc2-408e-9b71-166da406c64a", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "ORN EZEKIEL", + "timestamp": "2022-04-15" }, { - "uuid": "aa23c907-6375-4e06-beec-a0e08e1e1f64", + "uuid": "99787a6c-87cd-4a9b-9a40-df607048e5de", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "ZULAUF JETT", - "timestamp": "2018-02-18" + "user": "HILPERT MARKUS", + "timestamp": "2019-01-29" }, { - "uuid": "87464c36-90a7-4742-aec6-0181b2fe8109", + "uuid": "0d358d52-f524-4729-929e-391dd88ebb6e", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "MCCLURE CHANCE", - "timestamp": "2023-09-19" + "user": "ALTENWERTH MCKENZIE", + "timestamp": "2013-11-11" }, { - "uuid": "622be3c1-7797-4302-b43f-4c90f58175cd", + "uuid": "4a789633-84d9-4507-9185-fe7c9c508341", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "BREKKE LAVON", - "timestamp": "2018-04-13" + "user": "MITCHELL ADOLFO", + "timestamp": "2020-02-06" + }, + { + "uuid": "641a58e9-3db0-4b95-a63d-8b4e42d06f9c", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "THOMPSON ANDREANNE", + "timestamp": "2018-09-25" + }, + { + "uuid": "183df87e-64e3-4d2e-9a93-66c3241852e8", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "MANN JEWELL", + "timestamp": "2015-08-18" + }, + { + "uuid": "06bba3e5-3677-4b46-a961-c94c97f7583b", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "MOEN YOLANDA", + "timestamp": "2022-10-31" + }, + { + "uuid": "0f5f1b76-54ee-45df-8456-49d12ffad068", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "MCLAUGHLIN KRAIG", + "timestamp": "2016-04-12" } ], "associatedSites": [ { - "uuid": "950ba0c8-dd7d-4c6d-8c5e-a4ef2a0deb00", - "dateNoted": "2022-03-06", + "uuid": "85b34353-ae1c-4ead-adc8-1ce09a309add", + "dateNoted": "2018-01-28", "notes": "", - "parcelID": "16686", - "siteID": "15374", - "siteRegistry": true + "parcelID": "18618", + "siteID": "17014", + "siteRegistry": false } ] }, { - "uuid": "5c44ff4a-da5f-4ad2-bef3-a41f52b1884c", - "siteID": 16353, - "address": "71555 Waters Isle", - "latitude": 48.2929, - "longitude": -126.4558, - "lastUpdated": "2019-03-02", - "city": "Arnulfocester", - "region": "Vancouver Island/Coast", - "victoriaFile": "26250-20/3255", + "uuid": "6b484d78-9edf-401f-b6fb-4cfdebb35625", + "siteID": 20039, + "address": "4554 Kieran Junctions", + "latitude": 58.6987, + "longitude": -134.0272, + "lastUpdated": "2014-02-08", + "city": "D'Amorefort", + "region": "Mainland/Southwest", + "victoriaFile": "26250-20/14275", "regionalFile": "N/A", "parcelIDs": [ - 5623871, - 981153, - 6357041, - 4890611, - 8455303 + 6838806, + 9807031, + 9252406, + 950943, + 334237 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "fdd4cbdf-f9b1-4f26-a655-dc89e1bf55df", - "createdAt": "2019-12-09", - "completed": "2018-01-15", - "initiated": "2023-01-19", - "ministryContact": "BREKKE JUSTEN", + "uuid": "f9b6d752-1917-4df5-a2a5-3fe5fd32e002", + "createdAt": "2015-11-19", + "completed": "2023-08-18", + "initiated": "2015-05-14", + "ministryContact": "LANG ALESSIA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -13267,38 +15260,38 @@ ], "notationParticipants": [ { - "uuid": "0de34b4b-7df9-4f91-a7cd-4afc7df5703f", + "uuid": "856dbf8b-5321-4424-bfd5-1b8a267c3776", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "65ed7f83-7226-457c-b275-fad3531a52bc", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "uuid": "b8be1a56-fb65-4056-ac35-358a988566fc", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": true }, { - "uuid": "344b16ae-6882-4dc9-acb4-779e15c3874c", + "uuid": "23c6773b-dff2-4725-a84b-299328ede5a8", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "450b6705-3fe3-446e-a637-473004ee50cc", - "name": "SHELL CANADA PRODUCTS", + "uuid": "a55ab263-920a-4d9b-9c06-578e6ad49f46", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "439d6577-1208-48fe-b3f9-f0bef097c3a0", - "createdAt": "2015-07-07", - "completed": "2017-08-22", - "initiated": "2019-08-08", - "ministryContact": "RUTHERFORD ARLENE", + "uuid": "8495166f-ba05-44a6-9169-a2b87479ab22", + "createdAt": "2021-08-07", + "completed": "2022-11-18", + "initiated": "2023-01-21", + "ministryContact": "KAUTZER JARROD", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -13307,181 +15300,258 @@ ], "notationParticipants": [ { - "uuid": "f59c5901-c33f-4e63-bcd6-cadb262ce4fb", - "name": "SHELL CANADA PRODUCTS", + "uuid": "5f0fd261-dd7a-4c3a-a92f-7006e6f665f4", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true }, { - "uuid": "3e5b8d60-52d3-4169-b943-18d4cb4164f4", - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "578d0fa4-3b41-4865-92da-f04905f1d363", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false + }, + { + "uuid": "ac9f285e-4556-4e50-b673-b44a77ee984c", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false } ], "participants": [ { - "uuid": "532454f8-be07-489f-8bc2-963473d94fe2", - "name": "AMET, DOLOR SIT", - "endDate": "2015-04-25", - "startDate": "2021-04-10", + "uuid": "b2c178a9-26fa-4a41-bcf9-4bb86215dfeb", + "name": "IPSUM", + "endDate": "2021-12-08", + "startDate": "2018-11-21", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "9bf72126-f225-49f1-a295-5709d6e438f1", - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2017-06-15", - "startDate": "2014-03-23", + "uuid": "eee57050-576a-4d24-9f4c-63aaa183ba6d", + "name": "AMET, DOLOR SIT", + "endDate": "2023-09-06", + "startDate": "2017-07-29", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "5e61fbfb-d8a9-4992-a8f3-0b96d3670342", + "uuid": "00cd694f-238c-490e-9214-0b756006a552", "name": "IPSUM", - "endDate": "2018-07-22", - "startDate": "2016-02-29", + "endDate": "2021-11-08", + "startDate": "2023-02-18", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "7db1add4-f177-4331-b6c0-fbe72269655b", - "name": "IPSUM", - "endDate": "2020-04-20", - "startDate": "2020-02-26", + "uuid": "8a846b54-6b6d-4503-84fb-15feb2960b78", + "name": "AMET, DOLOR SIT", + "endDate": "2021-01-09", + "startDate": "2022-05-11", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": true + "siteRegistry": false } ], - "suspectLandUses": [ + "documents": [ { - "uuid": "f96a34f4-79ec-4cab-a2c2-57b1372a8353", - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2023-01-17 (described on Site Profile dated 2023-01-17)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "uuid": "29bc9da8-5b6a-4db7-9784-66131cf83e7d", + "siteRegistry": true, + "documentDate": "2018-10-14", + "receivedDate": "2022-11-07", + "uploadedDate": "2020-08-17", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "44f18e4f-87f0-410f-8510-8c1b20934663", + "name": "AMET, DOLOR SIT", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "0a60b7a5-3c5d-45f3-927d-3a927c91143f", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": true, + "role": "AUTHOR" + } + ] }, { - "uuid": "c885bb18-6b5f-45e0-8b25-3a65c08bdd91", + "uuid": "4210326d-efb9-4b56-8a8b-61edd61e7f59", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-10-03 (described on Site Profile dated 2014-10-03)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "documentDate": "2019-03-08", + "receivedDate": "2021-09-03", + "uploadedDate": "2020-02-18", + "title": "Summary of Site Conditions, 1537 W 41st Avenue, Vancouver", + "participants": [ + { + "uuid": "2e3e8bfe-b254-4754-b82c-bc8e02b16703", + "name": "IPSUM", + "siteRegistry": true, + "role": "AUTHOR" + } + ] }, { - "uuid": "e2b2f4b8-cd34-4188-8cf5-62795760c90a", + "uuid": "9555dada-6ac3-4134-be8f-8de226639828", + "siteRegistry": false, + "documentDate": "2019-10-24", + "receivedDate": "2018-08-23", + "uploadedDate": "2021-05-07", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "b64392d6-c1f0-4a55-9887-8ed5a9a8b8bd", + "name": "AMET, DOLOR SIT", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "00e30f66-1436-4e58-b866-0f793114972c", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": false, + "role": "AUTHOR" + } + ] + } + ], + "suspectLandUses": [ + { + "uuid": "055a46c1-286b-466e-a9d0-1ec0e61d1f5c", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-08-10 (described on Site Profile dated 2014-08-10)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "notes": "INSERTED FOR SITE PROFILE DATED 2014-11-07 (described on Site Profile dated 2014-11-07)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "uuid": "d0172cff-0d85-462b-bb9b-55470b13af31", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2014-07-25 (described on Site Profile dated 2014-07-25)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "uuid": "fc2df0c8-8916-4253-b217-de017aa5ef9f", + "uuid": "052d2fef-b284-4942-a634-0e55f94c25e6", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2023-03-30 (described on Site Profile dated 2023-03-30)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "notes": "INSERTED FOR SITE PROFILE DATED 2017-04-30 (described on Site Profile dated 2017-04-30)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "uuid": "6aac0435-227a-46b0-b6cd-5f21501957a5", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2019-12-11 (described on Site Profile dated 2019-12-11)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "uuid": "c7f53d98-2918-41b1-befa-e9e7da979006", + "uuid": "d3aca323-212a-4420-b44d-6d7f11941607", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2023-05-11 (described on Site Profile dated 2023-05-11)", + "notes": "INSERTED FOR SITE PROFILE DATED 2013-12-29 (described on Site Profile dated 2013-12-29)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], "parcelDescriptions": [ { - "uuid": "953b1cd6-892d-40d0-bca5-8d8d5672a836", - "siteRegistry": true, - "dateNoted": "2022-07-20", - "parcelID": "19289", - "crownLandUsePIN": "19137", - "crownLandFileNumber": "19875", - "landDescription": "LOT 1 OF LOT 4 BLOCK 5 DISTRICT LOT 2 PLAN 3110" + "uuid": "bc17239b-c505-4e1a-918a-7658439fce9e", + "siteRegistry": false, + "dateNoted": "2023-07-15", + "parcelID": "18208", + "crownLandUsePIN": "17706", + "crownLandFileNumber": "19163", + "landDescription": "LOT 1 OF LOT 5 BLOCK 2 DISTRICT LOT 5 PLAN 5064" }, { - "uuid": "e0c7ecf8-b912-411d-ad1f-45b3b8e5c37b", - "siteRegistry": false, - "dateNoted": "2017-09-11", - "parcelID": "18430", - "crownLandUsePIN": "18396", - "crownLandFileNumber": "20515", - "landDescription": "LOT 5 OF LOT 2 BLOCK 5 DISTRICT LOT 5 PLAN 5175" + "uuid": "82f2d76f-9ba9-4ac0-bf06-d01707c5ab41", + "siteRegistry": true, + "dateNoted": "2021-08-14", + "parcelID": "20062", + "crownLandUsePIN": "15922", + "crownLandFileNumber": "16457", + "landDescription": "LOT 2 OF LOT 1 BLOCK 4 DISTRICT LOT 5 PLAN 6540" }, { - "uuid": "567b0ec7-e7eb-464d-9836-e23faf83fcf7", + "uuid": "9c5d8184-e36e-43c4-abc4-d8640354043f", "siteRegistry": true, - "dateNoted": "2018-12-01", - "parcelID": "18976", - "crownLandUsePIN": "18537", - "crownLandFileNumber": "16879", - "landDescription": "LOT 1 OF LOT 2 BLOCK 5 DISTRICT LOT 2 PLAN 4044" + "dateNoted": "2014-04-25", + "parcelID": "15670", + "crownLandUsePIN": "19728", + "crownLandFileNumber": "15320", + "landDescription": "LOT 5 OF LOT 2 BLOCK 2 DISTRICT LOT 1 PLAN 4151" + }, + { + "uuid": "a4f9dd10-affe-448f-aaeb-bda5cf0c4347", + "siteRegistry": false, + "dateNoted": "2022-06-12", + "parcelID": "17320", + "crownLandUsePIN": "18642", + "crownLandFileNumber": "17668", + "landDescription": "LOT 3 OF LOT 1 BLOCK 4 DISTRICT LOT 2 PLAN 3198" } ], "siteDisclosures": [ { - "uuid": "45347d0b-0570-4570-89f0-acb439efa2be", + "uuid": "b1cafe8f-1ee2-4bf3-8a77-cdf20987f105", "siteRegistry": false, - "dateReceived": "2014-05-22", - "dateCompleted": "2015-07-21", - "dateEntered": "2022-02-11", - "dateRegistrar": "2016-10-28", - "dateLocalAuthorityReceived": "2013-12-01", - "summary": "Ut nesciunt quae veniam voluptatem.\nAd quae saepe architecto asperiores nesciunt ipsum nisi soluta.\nTenetur delectus impedit laborum repudiandae.", - "informationUsed": "Itaque quis tempore consequuntur unde inventore.\nEt temporibus maxime.\nEx debitis fugit sequi illum aperiam amet.", - "pastOrPresentOrders": "Maiores molestias voluptatem excepturi quam voluptatem.\nId blanditiis doloremque sapiente fugiat vero.\nQui id expedita ipsam beatae asperiores ratione.", + "dateReceived": "2015-10-12", + "dateCompleted": "2021-10-01", + "dateEntered": "2014-03-19", + "dateRegistrar": "2022-01-02", + "dateLocalAuthorityReceived": "2018-08-07", + "summary": "Voluptates error repellat vero.\nQuos libero odit voluptate.", + "informationUsed": "Ratione possimus quidem atque.\nCorrupti sunt accusantium aliquid aperiam.\nQuae ratione itaque suscipit.\nNon ipsam beatae vitae.\nAutem eaque ratione repellendus eveniet iure.", + "pastOrPresentOrders": "Maxime cumque magnam numquam.", "commercialAndIndustrialPurposes": [ { - "uuid": "f705afaa-da88-47db-b65a-471c8e61aacc", + "uuid": "5478c9e9-dfd5-4806-81da-28ddce0004c9", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false }, { - "uuid": "e9a2498d-2928-4e6e-8016-f23cadb0bdc9", + "uuid": "06c78751-0a27-47ac-852f-236bfc2c4583", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "60b9e18d-e94e-42c5-bb15-6c391a22abe5", + "uuid": "f4d932c4-8d2d-44d8-8ba3-c89870242188", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false + "siteRegistry": true } ] }, { - "uuid": "b23cb7f9-2d21-4adf-9549-f42a4a79f9e1", + "uuid": "fddeb172-f0bd-47ed-99e0-07ba224daf50", "siteRegistry": true, - "dateReceived": "2016-10-12", - "dateCompleted": "2016-06-04", - "dateEntered": "2017-12-01", - "dateRegistrar": "2014-10-30", - "dateLocalAuthorityReceived": "2019-03-22", - "summary": "Necessitatibus maxime delectus quia ab explicabo fuga vel veniam.\nPorro ipsum blanditiis possimus cupiditate.\nNostrum rerum nobis repellat praesentium architecto rerum quae ex eum.", - "informationUsed": "Neque ipsa officiis dignissimos inventore quas.\nQuasi architecto minima sequi natus et odit.\nNam tenetur officia sapiente animi perspiciatis dignissimos.\nCorporis expedita pariatur.", - "pastOrPresentOrders": "Voluptatem debitis nisi sed voluptas.\nAssumenda rerum perspiciatis corrupti.", + "dateReceived": "2018-05-16", + "dateCompleted": "2019-04-23", + "dateEntered": "2018-02-02", + "dateRegistrar": "2018-02-18", + "dateLocalAuthorityReceived": "2018-07-19", + "summary": "Dolores nisi ipsam fugiat animi ex sit asperiores.\nInventore sed incidunt autem sit assumenda aliquam earum aspernatur.", + "informationUsed": "Similique saepe optio rerum quasi ipsam voluptas officiis.\nDeserunt rem molestiae modi optio aut inventore.\nOdio fugit neque harum eius.", + "pastOrPresentOrders": "Praesentium doloribus repellat fugit.\nDicta itaque veritatis nobis.\nCommodi praesentium vel a provident.", "commercialAndIndustrialPurposes": [ { - "uuid": "5057804a-bb58-43c8-b85b-66d2666948d8", + "uuid": "52185450-15b9-404f-bf14-490f51f77836", "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true }, { - "uuid": "6b1087a3-d1e5-4634-9c77-7bca64d8e014", + "uuid": "684bf995-1fa5-4902-85f2-a48aa5a4dd43", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true @@ -13491,93 +15561,121 @@ ], "activityLog": [ { - "uuid": "9fc2ace5-0668-48cd-b2f7-e3f4c0074aa0", + "uuid": "a7aba046-8d8a-4377-8490-f7f9994d373c", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "NOLAN TORRANCE", - "timestamp": "2022-11-15" + "user": "GIBSON SARAI", + "timestamp": "2019-04-07" }, { - "uuid": "918d7ea0-55e3-42b1-9d71-186a8c4dc243", + "uuid": "7cecfd65-a92c-404b-9e88-f8cb5e60f989", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "HUEL ANTOINETTE", - "timestamp": "2021-10-19" + "user": "CRIST BARTON", + "timestamp": "2015-09-17" }, { - "uuid": "cd363b4b-f1e5-433c-8015-617d6c2b51e8", + "uuid": "3dcadb9c-34f5-4f2e-a17e-f1f0b9cd6f5f", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "BALISTRERI KRYSTINA", - "timestamp": "2018-06-08" + "user": "SCHUPPE ABBY", + "timestamp": "2014-02-02" }, { - "uuid": "b4113d11-2e81-4e67-ae19-5e04273e64e1", + "uuid": "b8f92f14-8623-440c-8326-4c22b02a2675", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "ANKUNDING ERNIE", - "timestamp": "2019-03-15" + "user": "GERLACH JALEN", + "timestamp": "2020-05-06" + }, + { + "uuid": "c657df30-50ac-46a2-9382-33e04460e89e", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "KULAS KESHAUN", + "timestamp": "2020-09-14" }, { - "uuid": "7049f22d-78a9-4ea3-8da3-49ea2ba50b59", + "uuid": "03d36034-f782-4591-b2a1-6309e1121083", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "HEIDENREICH JACKELINE", - "timestamp": "2014-05-31" + "user": "BODE MITTIE", + "timestamp": "2014-11-14" }, { - "uuid": "3a494797-1b3e-42ca-a2ec-00c604269491", + "uuid": "b978ddc2-1871-4b72-b3ba-9e28f54a1539", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "GIBSON GARETT", - "timestamp": "2019-07-28" + "user": "MACEJKOVIC MALVINA", + "timestamp": "2018-03-10" + }, + { + "uuid": "cf33e2dd-6778-45e1-a3fd-0d62fda8c9a2", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "HERMISTON ANASTASIA", + "timestamp": "2014-08-15" + }, + { + "uuid": "57daa87c-0778-4d16-a39f-8537f94d2029", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "GLEASON BORIS", + "timestamp": "2018-12-18" + }, + { + "uuid": "b17364ee-98f8-4e59-a894-67ca575b47dd", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "JASKOLSKI ALTHEA", + "timestamp": "2019-01-10" } ], "associatedSites": [ { - "uuid": "daea55ca-c1a4-4ccd-8157-0bb3f344b883", - "dateNoted": "2020-04-04", + "uuid": "f31a9317-38c9-4369-b9aa-1b40874906f5", + "dateNoted": "2020-06-12", "notes": "", - "parcelID": "19285", - "siteID": "19620", - "siteRegistry": false + "parcelID": "20065", + "siteID": "16137", + "siteRegistry": true }, { - "uuid": "cbcb98e5-6f89-44db-bb17-d7b8f698f31a", - "dateNoted": "2021-09-29", + "uuid": "d3e36f49-f0a4-454f-8d4b-664a98d4bb1f", + "dateNoted": "2022-12-11", "notes": "", - "parcelID": "20269", - "siteID": "17427", - "siteRegistry": false + "parcelID": "17265", + "siteID": "15747", + "siteRegistry": true } ] }, { - "uuid": "9e4338f5-5ca2-469a-81f9-7d7a916d2f8e", - "siteID": 19769, - "address": "7600 Hansen Meadows", - "latitude": 48.7047, - "longitude": -124.6609, - "lastUpdated": "2018-09-24", - "city": "Sisterstad", - "region": "Kootenay", - "victoriaFile": "26250-20/4729", + "uuid": "991b465b-f2df-4a04-a758-a5cf8e77e102", + "siteID": 15997, + "address": "9029 Kutch Hollow", + "latitude": 48.2163, + "longitude": -130.5463, + "lastUpdated": "2017-12-12", + "city": "North Eugenia", + "region": "Mainland/Southwest", + "victoriaFile": "26250-20/4476", "regionalFile": "N/A", "parcelIDs": [ - 5242419, - 9269955, - 6778936, - 7315610, - 7591982 + 380232, + 6544010, + 2052479, + 792218, + 2191266 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "9fa58496-dc18-4fd8-a64b-b32ce7faac3f", - "createdAt": "2014-09-30", - "completed": "2016-09-26", - "initiated": "2014-04-27", - "ministryContact": "SPENCER EPHRAIM", + "uuid": "ab83f10c-386a-4108-ae4b-85f0ce4e64d3", + "createdAt": "2014-09-27", + "completed": "2022-09-15", + "initiated": "2019-05-06", + "ministryContact": "STAMM GUILLERMO", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -13586,26 +15684,60 @@ ], "notationParticipants": [ { - "uuid": "3fffa76e-b304-419a-9afd-0252c1a0dbe1", + "uuid": "a819cf83-a8cc-4f18-bbfb-559d0c923f1d", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "uuid": "be2b6901-188e-4591-aafa-87ceefc2c86f", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "f8b1a688-7c2b-4700-96be-fd117aaaddeb", + "uuid": "fe187a02-98a6-438f-9fa1-44c4fe16077b", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true - }, + } + ], + "siteRegistry": false + }, + { + "uuid": "8dae5a1c-7842-44e2-a798-0947f3335859", + "createdAt": "2017-12-16", + "completed": "2016-06-10", + "initiated": "2020-12-14", + "ministryContact": "BEDNAR JAYSON", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ { - "uuid": "c2053eb5-795c-48fe-ba09-e275af0731ed", + "uuid": "b30e753d-e845-40cd-8d07-4f9cd1f30544", "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "uuid": "b6bd1b65-6aea-4004-bbcf-d9527da456f0", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "31aaa368-6f26-4d79-85d4-b4339128c7de", + "uuid": "9309d8f0-abe1-4098-9e88-e1991a2bcf0f", "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "uuid": "7871a137-293d-437a-a8b6-f040db46794c", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true } @@ -13613,11 +15745,11 @@ "siteRegistry": false }, { - "uuid": "3531c954-91ed-4844-be82-23aa3e85ace9", - "createdAt": "2019-09-11", - "completed": "2015-03-29", - "initiated": "2018-12-22", - "ministryContact": "WILLIAMSON ABDULLAH", + "uuid": "eb551816-df74-4aca-bc5b-e260b6e29c30", + "createdAt": "2014-08-20", + "completed": "2015-10-26", + "initiated": "2015-09-12", + "ministryContact": "BORER-WOLFF JEANIE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -13626,264 +15758,410 @@ ], "notationParticipants": [ { - "uuid": "c4b0b4e8-4431-4be8-b61c-65d03bf53584", + "uuid": "25419b83-992d-4613-91d3-2ae3621e2b71", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "636c5b11-a2b9-4a6e-846d-c3c23b388a35", + "uuid": "ec8f6f80-2601-4a95-983d-f096e571ccae", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "uuid": "21134e87-cec0-44b8-bf42-42e0070765bf", + "createdAt": "2020-01-06", + "completed": "2014-11-29", + "initiated": "2018-04-04", + "ministryContact": "CONNELLY WINNIFRED", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "uuid": "637256e1-76da-4c4a-87d4-330d736934f2", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true + }, + { + "uuid": "2260e401-7970-4250-b102-459eb7cee695", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "7f8b3afb-72ca-4474-bbe3-eb9bd2f642af", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "5a60fcef-d446-476b-866a-49d91fd1191e", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "5cf72bb3-31aa-4199-a94b-3cfe82734de6", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true } ], "participants": [ { - "uuid": "a117b6e9-7073-42d9-94f2-94f251955234", - "name": "IPSUM", - "endDate": "2021-05-20", - "startDate": "2022-04-13", + "uuid": "0e6b0ec9-496b-49eb-b014-a4457b214ecb", + "name": "AMET, DOLOR SIT", + "endDate": "2015-01-10", + "startDate": "2023-08-02", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "65161451-cb4b-410e-8c2c-c4400891da40", + "uuid": "1395ffe1-6672-4738-807c-c54a7efbba77", "name": "IPSUM", - "endDate": "2022-11-22", - "startDate": "2014-01-16", + "endDate": "2016-03-06", + "startDate": "2020-06-10", "notes": "", "roles": [ "ORGANIZATION" ], + "siteRegistry": false + }, + { + "uuid": "e9885dda-4f95-42cb-92ef-7de552807b91", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2018-04-07", + "startDate": "2021-01-03", + "notes": "", + "roles": [ + "EMPLOYEE" + ], "siteRegistry": true }, { - "uuid": "f4c0246c-f280-4fdd-b3f3-9a2b1fa8fefd", + "uuid": "9b50d8a3-a547-4605-9344-b7c9d2514ad8", + "name": "AMET, DOLOR SIT", + "endDate": "2016-08-21", + "startDate": "2018-06-27", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "uuid": "87bcfe41-aca4-4e63-9c69-d5c949edfc86", "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2016-09-05", - "startDate": "2022-12-16", + "endDate": "2016-03-04", + "startDate": "2016-01-09", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true } ], - "suspectLandUses": [ + "documents": [ { - "uuid": "10fa112d-0730-463e-88e1-2e1fd7c8fb21", + "uuid": "fa55f771-41c8-4db2-bd92-40ca9e9cb862", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2023-04-29 (described on Site Profile dated 2023-04-29)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "documentDate": "2022-11-07", + "receivedDate": "2017-03-25", + "uploadedDate": "2017-11-12", + "title": "Summary of Site Conditions, 1537 W 41st Avenue, Vancouver", + "participants": [ + { + "uuid": "fc2ea460-bce8-4c9f-b35d-819047a4a9e8", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "0e68023b-1a2a-4b85-a214-a64dcec531ce", + "name": "AMET, DOLOR SIT", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "94e76c97-f257-499c-9ba5-71271b0e912a", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": true, + "role": "AUTHOR" + } + ] }, { - "uuid": "915dff4e-0c83-4d8c-aab0-1803cee87613", + "uuid": "da9e7d0a-0850-476d-b3c2-8598c7260dfa", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2020-08-26 (described on Site Profile dated 2020-08-26)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "documentDate": "2014-01-30", + "receivedDate": "2017-08-30", + "uploadedDate": "2022-08-14", + "title": "Summary of Site Conditions, 1537 W 41st Avenue, Vancouver", + "participants": [ + { + "uuid": "6deb84e1-f402-4e35-af7b-515f2de2724a", + "name": "AMET, DOLOR SIT", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "2f58b9c5-d79d-4c53-80ba-bb7bd57eac39", + "name": "IPSUM", + "siteRegistry": true, + "role": "AUTHOR" + } + ] + }, + { + "uuid": "cf2219c1-a294-42d4-aeff-a65dc2c98cf6", + "siteRegistry": false, + "documentDate": "2014-09-19", + "receivedDate": "2020-02-20", + "uploadedDate": "2019-02-15", + "title": "Summary of Site Conditions, 1537 W 41st Avenue, Vancouver", + "participants": [ + { + "uuid": "260307a0-507f-4a7f-85e6-a23c28e92f3e", + "name": "AMET, DOLOR SIT", + "siteRegistry": false, + "role": "AUTHOR" + } + ] + }, + { + "uuid": "6dd2444b-b625-462e-bf6e-77bfbd39e67b", + "siteRegistry": false, + "documentDate": "2021-09-29", + "receivedDate": "2015-05-04", + "uploadedDate": "2015-06-30", + "title": "Summary of Site Conditions, 1537 W 41st Avenue, Vancouver", + "participants": [ + { + "uuid": "9e760483-09cf-4b22-960b-f7fe6477d4e7", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": false, + "role": "AUTHOR" + } + ] } ], - "parcelDescriptions": [ + "suspectLandUses": [ { - "uuid": "745caf60-42b0-40e1-837a-fda52ae2e902", + "uuid": "10343e23-e0f0-473d-9b9a-f13c2f421680", "siteRegistry": false, - "dateNoted": "2019-04-07", - "parcelID": "18521", - "crownLandUsePIN": "16929", - "crownLandFileNumber": "18207", - "landDescription": "LOT 3 OF LOT 5 BLOCK 5 DISTRICT LOT 2 PLAN 7124" + "notes": "INSERTED FOR SITE PROFILE DATED 2018-12-29 (described on Site Profile dated 2018-12-29)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "uuid": "c8d28d88-a821-4bda-ae9f-c338b8d43642", - "siteRegistry": true, - "dateNoted": "2018-03-06", - "parcelID": "17741", - "crownLandUsePIN": "18906", - "crownLandFileNumber": "20610", - "landDescription": "LOT 3 OF LOT 2 BLOCK 4 DISTRICT LOT 2 PLAN 8592" + "uuid": "75a7ab5d-8a6b-4cd8-8b00-bcaa6e362c39", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2017-06-26 (described on Site Profile dated 2017-06-26)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "uuid": "820f08fa-028a-42ae-a3ce-1421d8e6a356", + "uuid": "b4544c16-a372-436d-8bce-fb97a5ded4ed", "siteRegistry": true, - "dateNoted": "2019-04-19", - "parcelID": "17709", - "crownLandUsePIN": "15797", - "crownLandFileNumber": "18615", - "landDescription": "LOT 2 OF LOT 3 BLOCK 1 DISTRICT LOT 3 PLAN 6080" - }, + "notes": "INSERTED FOR SITE PROFILE DATED 2023-03-06 (described on Site Profile dated 2023-03-06)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + } + ], + "parcelDescriptions": [ { - "uuid": "b47ea091-456c-42ad-9a7b-0d306aa905c4", + "uuid": "97029a84-032d-4ab0-9b73-66f9b4208eaa", "siteRegistry": false, - "dateNoted": "2022-10-08", - "parcelID": "19017", - "crownLandUsePIN": "18282", - "crownLandFileNumber": "16963", - "landDescription": "LOT 4 OF LOT 5 BLOCK 3 DISTRICT LOT 1 PLAN 6727" + "dateNoted": "2021-08-30", + "parcelID": "17331", + "crownLandUsePIN": "19683", + "crownLandFileNumber": "17910", + "landDescription": "LOT 5 OF LOT 4 BLOCK 3 DISTRICT LOT 5 PLAN 6371" + }, + { + "uuid": "adf35f3c-84b6-420d-bf65-b174615e494f", + "siteRegistry": true, + "dateNoted": "2020-11-30", + "parcelID": "18419", + "crownLandUsePIN": "19807", + "crownLandFileNumber": "18185", + "landDescription": "LOT 4 OF LOT 1 BLOCK 5 DISTRICT LOT 4 PLAN 8182" } ], "siteDisclosures": [ { - "uuid": "e28d7f6f-8a76-4d47-9c11-4051d954f35c", - "siteRegistry": true, - "dateReceived": "2020-09-12", - "dateCompleted": "2022-06-21", - "dateEntered": "2014-11-01", - "dateRegistrar": "2016-01-01", - "dateLocalAuthorityReceived": "2015-07-30", - "summary": "Repudiandae repellendus corrupti ad nam.\nAt quas quam maiores officiis.\nRepudiandae delectus at asperiores beatae.", - "informationUsed": "Totam vitae quod fugit aperiam cum consequuntur unde iste mollitia.\nQui quis reprehenderit harum.\nSed minima sapiente.\nFacilis odit iste repellat corporis deserunt hic doloribus voluptatibus.", - "pastOrPresentOrders": "Dolore hic occaecati sed accusantium odit unde deserunt culpa.", + "uuid": "98213dad-8b00-4c3f-9693-c1f52cc6e141", + "siteRegistry": false, + "dateReceived": "2021-10-25", + "dateCompleted": "2022-10-16", + "dateEntered": "2018-01-25", + "dateRegistrar": "2018-01-30", + "dateLocalAuthorityReceived": "2015-12-25", + "summary": "Reprehenderit facere similique possimus veniam saepe aliquid voluptatum optio.\nIpsa aliquid ut suscipit voluptatibus quaerat aliquam dicta quasi.\nAtque aliquam accusantium molestiae consequuntur illum.", + "informationUsed": "Eaque facere praesentium eligendi occaecati sed incidunt facere ullam assumenda.\nFugit nulla iusto sunt porro.\nHic officia excepturi illum totam vero beatae veniam cum.\nQuisquam laudantium illo dolores soluta est.\nExercitationem error doloremque reprehenderit animi.", + "pastOrPresentOrders": "Nostrum voluptate sapiente omnis.\nSuscipit inventore occaecati quia ea.\nMinima dolor aliquam.", "commercialAndIndustrialPurposes": [ { - "uuid": "00089ae0-41b1-4442-89ee-73750df10216", - "scheduleReference": "F1*", + "uuid": "5ba9a751-df1f-450d-9af9-6d65ee425cf3", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, { - "uuid": "07e857a4-bea8-47f8-9857-2ebb88c67b26", - "scheduleReference": "F1*", + "uuid": "d82894dd-1e29-45c4-8e0a-9b4c37093ef2", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "uuid": "93dd670c-89a1-4798-9285-e6971f2ba751", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true } ] }, { - "uuid": "bb0300a1-1a9c-42c4-85b0-cf01078f3d7f", + "uuid": "833a7dd8-9643-4602-b42f-b7b284bf9ae9", "siteRegistry": true, - "dateReceived": "2023-01-23", - "dateCompleted": "2019-04-07", - "dateEntered": "2021-07-04", - "dateRegistrar": "2015-07-16", - "dateLocalAuthorityReceived": "2015-04-07", - "summary": "Vel minus vitae nostrum saepe pariatur alias sint facere esse.\nNecessitatibus ipsa doloremque omnis.", - "informationUsed": "Accusamus iste magni voluptatibus quibusdam.\nAutem non vero autem officiis officia animi exercitationem recusandae.\nTempore a illo voluptate illum eligendi qui quis architecto.", - "pastOrPresentOrders": "Ipsum amet nemo alias.\nQuaerat officia cum.\nEsse tempore facilis magni odio eum nihil.", + "dateReceived": "2018-02-15", + "dateCompleted": "2019-03-05", + "dateEntered": "2016-03-17", + "dateRegistrar": "2016-09-06", + "dateLocalAuthorityReceived": "2016-01-19", + "summary": "Aliquam perspiciatis consequatur distinctio quidem laudantium ad esse numquam quos.\nA numquam quo distinctio aut similique et totam magnam.", + "informationUsed": "Recusandae fugiat ipsam ratione laboriosam numquam nesciunt.\nSapiente esse ratione reprehenderit nisi soluta omnis eveniet.\nAperiam dolores officia.\nVoluptates quis soluta.\nConsectetur consequatur voluptatum soluta minus quasi.", + "pastOrPresentOrders": "Consequatur consequuntur dolores autem ut accusamus ad quibusdam.\nQuidem eius reprehenderit.\nIllum quos atque id libero animi sed.", "commercialAndIndustrialPurposes": [ { - "uuid": "966d9a5f-0754-4974-a38d-7f7fd17b9276", - "scheduleReference": "F2*", + "uuid": "ce3a95f4-73ef-4e37-9624-95ab08d7cda7", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "3059200f-4f09-4217-b676-31c9c7976af0", + "uuid": "50da6710-c017-4a4f-981e-bcfc0fee72d4", "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { - "uuid": "6e5453cf-77ba-4a48-9b66-298537f93b5c", + "uuid": "9c4e359c-e846-43bf-9a72-d936001818fe", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false - }, - { - "uuid": "50572384-d960-4c0e-87a3-64d9ac90d839", - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false } ] } ], "activityLog": [ { - "uuid": "14f58e4a-f2c8-4203-aca8-e527b6ae36cc", - "siteRegistry": true, + "uuid": "11874906-696c-47ff-8f5f-379e72c61470", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "CRUICKSHANK ABDUL", - "timestamp": "2013-12-28" + "user": "LEDNER SYDNEE", + "timestamp": "2015-10-25" }, { - "uuid": "65b83e26-dc66-4916-811d-8e0e5f2c80f9", + "uuid": "3bbfdf4b-877d-4e9d-bc46-7e8ea1def153", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "BLICK AURELIE", - "timestamp": "2014-10-11" + "user": "STRACKE SHARON", + "timestamp": "2020-01-27" + }, + { + "uuid": "4773d647-7cac-4f44-8577-eccf668dba0c", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "DENESIK RANSOM", + "timestamp": "2017-04-14" }, { - "uuid": "26a59994-41b3-483c-8cef-cff7971e4568", + "uuid": "b5f96aa3-e605-4263-a2ec-a401219ae3f4", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "TRANTOW MANLEY", - "timestamp": "2020-01-10" + "user": "SCHUPPE VILMA", + "timestamp": "2021-10-06" }, { - "uuid": "c0c69384-81cd-478a-bf71-618d9cad4d27", - "siteRegistry": false, + "uuid": "387c5ed8-d0c8-40c7-9fe5-7200be7bdea1", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "AUFDERHAR AYLA", + "timestamp": "2019-08-16" + }, + { + "uuid": "a1a2a636-e7f6-4b24-b901-af67b93bd5c6", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "VANDERVORT NESTOR", - "timestamp": "2021-03-25" + "user": "GERLACH SHANA", + "timestamp": "2014-12-12" }, { - "uuid": "984305fa-277e-4d11-8393-7af5d9fa0ba2", + "uuid": "e3a8cbff-605a-477a-a38f-b149ad233ae2", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "WATERS JUDE", - "timestamp": "2016-08-27" + "user": "MANN ANGUS", + "timestamp": "2021-08-11" } ], "associatedSites": [ { - "uuid": "d5fc6beb-dd25-4c0e-9df9-c71dbd3ca0f4", - "dateNoted": "2019-08-31", - "notes": "", - "parcelID": "20645", - "siteID": "18893", - "siteRegistry": false - }, - { - "uuid": "0a243a79-f274-4205-9198-ead7bba96a12", - "dateNoted": "2021-06-03", + "uuid": "d7698d9a-7b3d-48e5-83ab-c60edddf561b", + "dateNoted": "2020-06-13", "notes": "", - "parcelID": "20145", - "siteID": "16277", + "parcelID": "20177", + "siteID": "16457", "siteRegistry": false }, { - "uuid": "aec535ac-1c9f-4a88-8ed2-8d4d366a715b", - "dateNoted": "2020-08-24", + "uuid": "b17cac5d-f17a-49b3-a146-84b79fcc9c8d", + "dateNoted": "2018-06-09", "notes": "", - "parcelID": "19240", - "siteID": "16044", + "parcelID": "17149", + "siteID": "16344", "siteRegistry": false } ] }, { - "uuid": "52f96bed-6995-4026-ac58-281882b5049e", - "siteID": 17972, - "address": "56284 Estefania Grove", - "latitude": 55.0559, - "longitude": -118.7327, - "lastUpdated": "2023-04-10", - "city": "Gusikowskishire", - "region": "Kootenay", - "victoriaFile": "26250-20/13855", + "uuid": "5f2dac04-fd6a-40d8-a436-651c34bb749d", + "siteID": 20625, + "address": "952 Shaniya Highway", + "latitude": 49.4047, + "longitude": -130.6908, + "lastUpdated": "2019-03-09", + "city": "Lake Koryton", + "region": "Mainland/Southwest", + "victoriaFile": "26250-20/18540", "regionalFile": "N/A", "parcelIDs": [ - 7115094, - 5448789, - 2581103, - 5172228, - 1362246 + 5333869, + 3517173, + 4775688, + 2926703, + 3473374 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "a5726add-cfc6-4aaa-97a9-be8939e1b1fb", - "createdAt": "2020-07-25", - "completed": "2021-03-05", - "initiated": "2016-02-03", - "ministryContact": "BOTSFORD CLEMENT", + "uuid": "66a6d6d6-8700-4039-a0e6-072c7eda8102", + "createdAt": "2020-06-04", + "completed": "2017-10-09", + "initiated": "2019-12-03", + "ministryContact": "O'KON-ANDERSON JERALD", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -13892,38 +16170,38 @@ ], "notationParticipants": [ { - "uuid": "097ba7d1-de19-4690-a5dc-c264133ebb44", + "uuid": "8eb6c172-8a53-42b8-ada6-7ff377b4837f", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false + "role": "REQUESTED BY", + "siteRegistry": true }, { - "uuid": "e2be0768-7ad8-4db2-b84b-0d82b86a0719", + "uuid": "cca6870e-fe1d-42f1-bed4-1dd0efe5416e", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true + "role": "SUBMITTED BY", + "siteRegistry": false }, { - "uuid": "ba98737e-c548-40dc-b0e3-b9b08daeb8f0", + "uuid": "90300571-3ff5-4395-be6b-1094dff38751", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "2f81b99b-a826-4fb7-8558-944817f501b6", + "uuid": "1bb7c61f-b59c-4921-be68-ccaeaaa278da", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "ebb5121a-3b68-4b69-88f2-a38cc10b7cc0", - "createdAt": "2019-07-11", - "completed": "2023-04-05", - "initiated": "2017-03-12", - "ministryContact": "LEFFLER SADIE", + "uuid": "284cbdaa-95e5-4847-bb42-5ac898ef0053", + "createdAt": "2021-10-08", + "completed": "2015-10-28", + "initiated": "2019-12-21", + "ministryContact": "MARKS DARIAN", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -13932,50 +16210,39 @@ ], "notationParticipants": [ { - "uuid": "ad00ad78-f490-4d31-8e0d-a7b2834c90ea", + "uuid": "1d00b2ef-2e05-4d33-8525-fdfc58c3207b", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "f88da71d-29ad-44c4-bf19-22d2c1fb0771", + "uuid": "cf34d93e-da65-418c-8893-374e178c2a63", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "ac18cb89-0f94-46e8-a6a9-302f159811c7", - "name": "SHELL CANADA PRODUCTS", + "uuid": "b6ab5ce5-58ab-49b4-9503-04e927e85b2d", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "470b9968-a95c-42b5-93d6-b47ded3fee34", + "uuid": "8d8786de-5a70-4a46-b98b-04417e217d96", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false } ], "participants": [ { - "uuid": "82828570-9841-438f-b722-fa6cc0ed451c", + "uuid": "3d361102-e4b2-435a-9e53-2e54c0290cd4", "name": "AMET, DOLOR SIT", - "endDate": "2018-10-21", - "startDate": "2016-06-08", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": true - }, - { - "uuid": "232b545f-0535-4c8f-8b35-18f6df37297b", - "name": "SHELL CANADA PRODUCTS", - "endDate": "2014-02-04", - "startDate": "2016-02-19", + "endDate": "2020-12-18", + "startDate": "2015-08-23", "notes": "", "roles": [ "ORGANIZATION" @@ -13983,221 +16250,311 @@ "siteRegistry": false }, { - "uuid": "e88e52d4-7bb1-417d-be8f-ecac06a28c40", - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2015-08-18", - "startDate": "2016-09-04", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": true - }, - { - "uuid": "ef7abb5d-38ae-46ce-8c1f-091c46469336", - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2020-11-05", - "startDate": "2016-05-20", + "uuid": "5958336c-a070-4102-9532-b60971a4f38f", + "name": "IPSUM", + "endDate": "2021-06-26", + "startDate": "2014-05-05", "notes": "", "roles": [ "EMPLOYEE" ], "siteRegistry": false + } + ], + "documents": [ + { + "uuid": "cb4a0d0a-42d8-4177-81ff-3ec21b0c1092", + "siteRegistry": false, + "documentDate": "2019-11-06", + "receivedDate": "2016-07-25", + "uploadedDate": "2015-08-28", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "a998e0b4-ec5f-409e-b0ad-6543175cde0a", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": true, + "role": "AUTHOR" + } + ] }, { - "uuid": "279bcdab-2dcb-4f84-8581-cfe76300e79a", - "name": "AMET, DOLOR SIT", - "endDate": "2014-03-07", - "startDate": "2019-08-05", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": true + "uuid": "14718f1d-ab54-4772-bbaa-8bef37d560b1", + "siteRegistry": false, + "documentDate": "2015-10-25", + "receivedDate": "2016-01-14", + "uploadedDate": "2022-04-13", + "title": "Summary of Site Conditions, 1537 W 41st Avenue, Vancouver", + "participants": [ + { + "uuid": "a4cf7170-8786-4949-9968-255a5a7f90be", + "name": "AMET, DOLOR SIT", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "65baf1b1-f9cf-4440-99d1-d45956fb69b4", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": false, + "role": "AUTHOR" + } + ] } ], "suspectLandUses": [ { - "uuid": "d4c3776d-292f-439e-ba32-7c8065176d8e", + "uuid": "e5983ddb-25d4-426f-acc5-e15d1c5b20c8", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-02-09 (described on Site Profile dated 2017-02-09)", + "notes": "INSERTED FOR SITE PROFILE DATED 2013-11-14 (described on Site Profile dated 2013-11-14)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "uuid": "96fe7c32-58bd-4336-bb7f-7006aed16f9f", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2021-02-05 (described on Site Profile dated 2021-02-05)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "uuid": "ba32807c-8309-4dd2-af55-a53314b4491c", + "uuid": "128648a5-0340-49bd-b8ad-d938564badb5", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2023-08-07 (described on Site Profile dated 2023-08-07)", + "notes": "INSERTED FOR SITE PROFILE DATED 2018-11-16 (described on Site Profile dated 2018-11-16)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "uuid": "59fdb5e1-a214-4137-92be-a5e55874136f", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2015-04-14 (described on Site Profile dated 2015-04-14)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "uuid": "e8a7f391-cf64-4705-b02f-185bbf5faecd", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2016-02-21 (described on Site Profile dated 2016-02-21)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], "parcelDescriptions": [ { - "uuid": "f3ae9b23-cf24-43fa-a106-a5b0186818d5", - "siteRegistry": false, - "dateNoted": "2021-03-21", - "parcelID": "17019", - "crownLandUsePIN": "18371", - "crownLandFileNumber": "17911", - "landDescription": "LOT 1 OF LOT 2 BLOCK 1 DISTRICT LOT 5 PLAN 5278" + "uuid": "9cbfd374-ae67-4fb8-8465-e628992ad837", + "siteRegistry": true, + "dateNoted": "2021-07-30", + "parcelID": "19417", + "crownLandUsePIN": "15926", + "crownLandFileNumber": "17396", + "landDescription": "LOT 2 OF LOT 2 BLOCK 4 DISTRICT LOT 1 PLAN 5871" }, { - "uuid": "3801dfc1-26c1-4760-8ddd-150f8afda818", + "uuid": "0cf4909f-7170-4758-b746-9bad2b3961f7", "siteRegistry": true, - "dateNoted": "2023-06-10", - "parcelID": "16853", - "crownLandUsePIN": "16273", - "crownLandFileNumber": "20733", - "landDescription": "LOT 5 OF LOT 1 BLOCK 5 DISTRICT LOT 2 PLAN 7793" + "dateNoted": "2022-02-11", + "parcelID": "16492", + "crownLandUsePIN": "15990", + "crownLandFileNumber": "20148", + "landDescription": "LOT 1 OF LOT 5 BLOCK 3 DISTRICT LOT 5 PLAN 4385" }, { - "uuid": "de7d8d76-cd9b-40ae-bd3a-93be9b203484", - "siteRegistry": false, - "dateNoted": "2014-05-13", - "parcelID": "16882", - "crownLandUsePIN": "17205", - "crownLandFileNumber": "18246", - "landDescription": "LOT 3 OF LOT 4 BLOCK 1 DISTRICT LOT 5 PLAN 6744" + "uuid": "4a5a7590-4838-4492-a4f2-a8918df80838", + "siteRegistry": true, + "dateNoted": "2017-10-22", + "parcelID": "20370", + "crownLandUsePIN": "16474", + "crownLandFileNumber": "17584", + "landDescription": "LOT 5 OF LOT 4 BLOCK 1 DISTRICT LOT 3 PLAN 6163" + }, + { + "uuid": "f424e90f-c3c8-46ef-9656-24cb16fc1f43", + "siteRegistry": true, + "dateNoted": "2018-12-18", + "parcelID": "18741", + "crownLandUsePIN": "16264", + "crownLandFileNumber": "15616", + "landDescription": "LOT 4 OF LOT 3 BLOCK 2 DISTRICT LOT 4 PLAN 4309" } ], "siteDisclosures": [ { - "uuid": "5d813665-e5e6-494f-9e79-5ad09be98d7f", - "siteRegistry": true, - "dateReceived": "2020-11-19", - "dateCompleted": "2020-02-23", - "dateEntered": "2015-10-22", - "dateRegistrar": "2016-03-27", - "dateLocalAuthorityReceived": "2022-09-08", - "summary": "Nostrum perferendis occaecati incidunt.", - "informationUsed": "Deserunt quasi vitae eos.\nLaborum itaque maxime facere.\nNam architecto similique explicabo quidem sunt eum.", - "pastOrPresentOrders": "Ducimus nulla atque libero soluta sit error totam natus.", + "uuid": "aa6b801e-221b-4885-ab22-5a7185bdcc6c", + "siteRegistry": false, + "dateReceived": "2016-02-04", + "dateCompleted": "2014-04-09", + "dateEntered": "2023-05-10", + "dateRegistrar": "2023-09-01", + "dateLocalAuthorityReceived": "2020-01-15", + "summary": "Quam cupiditate rerum aspernatur ratione aspernatur error eveniet.\nQui odio qui temporibus voluptas autem.\nDucimus repellat commodi ad consequuntur pariatur expedita eligendi odio sequi.", + "informationUsed": "Harum officia modi doloribus sed alias dolorem.\nIn similique ab.\nPlaceat distinctio mollitia et iure impedit.", + "pastOrPresentOrders": "Dolores excepturi excepturi distinctio repudiandae temporibus.\nId odio aut debitis aperiam labore sapiente exercitationem.\nEos repellat fugit sunt architecto ipsa beatae corporis nulla repellat.", "commercialAndIndustrialPurposes": [ { - "uuid": "6d744b1c-a2ca-48e0-8839-9399a1a081ab", + "uuid": "7e2c62e4-bd5a-4a7c-ac34-d0cd8cba3922", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "uuid": "5bb63ba2-638a-451a-bb38-c30b839f2c94", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { - "uuid": "1abf2da4-abfe-4a78-a07c-753e0f5109e4", + "uuid": "6d262198-0ea9-44fb-b78c-36a2e2fde32c", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "uuid": "3a5d4bea-0bf1-47d4-a9ba-0df8c1b21d40", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true } ] + }, + { + "uuid": "1d9d9056-33f1-433d-8302-2fac912bee2a", + "siteRegistry": true, + "dateReceived": "2015-12-04", + "dateCompleted": "2022-11-22", + "dateEntered": "2014-08-31", + "dateRegistrar": "2019-12-03", + "dateLocalAuthorityReceived": "2020-10-13", + "summary": "Corrupti amet occaecati cumque consequatur corporis iure quibusdam sequi.\nConsectetur odit alias iusto dignissimos.", + "informationUsed": "Distinctio deleniti nisi esse laboriosam ex debitis at.\nEum alias consectetur labore ad quaerat.\nIpsam aspernatur esse.\nEaque quasi quaerat consequuntur molestias adipisci cum molestiae occaecati.", + "pastOrPresentOrders": "Eum praesentium cupiditate consequuntur.", + "commercialAndIndustrialPurposes": [ + { + "uuid": "3b3d3d95-cec1-4af7-a92a-840cc79e0d73", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "uuid": "0b383c67-0742-4cc8-a302-4e21fe712242", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + } + ] } ], "activityLog": [ { - "uuid": "d5c6c151-33fc-4730-bf5a-572e566a1f31", + "uuid": "6767b6b4-9cff-4208-8cb5-04ca8ef8b9c1", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "TURNER EMILIANO", + "timestamp": "2016-06-18" + }, + { + "uuid": "3a887157-b95d-47a8-a7e9-0a88d60dad35", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "LEFFLER-ABBOTT EVIE", - "timestamp": "2022-09-12" + "user": "REICHEL NICOLA", + "timestamp": "2018-09-08" }, { - "uuid": "86978704-d222-4e21-889c-51ff863afde3", - "siteRegistry": false, + "uuid": "9379ae39-0337-484f-93d1-046d17ed3258", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "SCHNEIDER ABBIGAIL", - "timestamp": "2020-01-01" + "user": "RENNER ALFORD", + "timestamp": "2015-12-14" }, { - "uuid": "3f9d1404-ca80-4927-b8ca-f85caf07232f", + "uuid": "1fc2e42f-aced-44bf-ba5a-83707e52623d", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "MCKENZIE ROWENA", - "timestamp": "2023-03-01" + "user": "FRANECKI RAFAEL", + "timestamp": "2019-08-09" }, { - "uuid": "98ee7d1c-430d-4758-956a-ee5321b98eda", + "uuid": "6975f73b-7892-4e34-b848-296641a1491d", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "CHAMPLIN-BEDNAR KAYLIE", - "timestamp": "2020-11-06" + "user": "PRICE CLYDE", + "timestamp": "2019-01-01" }, { - "uuid": "2e9a5ce4-c44f-4338-8f47-ba2a90e6bf38", + "uuid": "d521183f-7fc5-4d94-9617-b29f26756266", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "STROSIN JERROLD", - "timestamp": "2017-09-08" + "user": "JOHNSTON TROY", + "timestamp": "2016-12-02" }, { - "uuid": "d8efc5cf-97b2-4b7b-ae1c-66b6f24f23b7", + "uuid": "a18c9943-f85c-4e4c-b768-e2ad537794c7", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "ARMSTRONG STELLA", - "timestamp": "2021-07-18" + "user": "REYNOLDS EMELY", + "timestamp": "2022-11-04" }, { - "uuid": "56612dc9-8b63-45e2-97e2-2a5be39fe3ce", - "siteRegistry": true, + "uuid": "98137a59-50cc-4cab-bb90-d1d9bc86ecda", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "RYAN DREW", - "timestamp": "2017-09-10" + "user": "LINDGREN DANYKA", + "timestamp": "2017-05-09" }, { - "uuid": "780304d8-2167-48be-a9d3-3b0e635599cb", + "uuid": "77e7d97a-6ed3-46e6-9be9-5803e1c3a9f6", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "LEHNER ADELBERT", - "timestamp": "2023-02-24" + "user": "HOWELL SIM", + "timestamp": "2019-01-28" } ], "associatedSites": [ { - "uuid": "d79bc2df-5909-4d12-97fa-5dd715cdba8d", - "dateNoted": "2019-08-08", + "uuid": "4c4f7fd1-b19c-4305-b165-6b2cf88a12b2", + "dateNoted": "2018-07-19", "notes": "", - "parcelID": "17127", - "siteID": "18865", - "siteRegistry": false + "parcelID": "19286", + "siteID": "20842", + "siteRegistry": true }, { - "uuid": "ff53d94f-a571-4a5e-a74f-41de639bbb27", - "dateNoted": "2014-10-27", + "uuid": "87e13f3f-9a4c-44a6-b946-02b0b5782eb9", + "dateNoted": "2016-02-15", "notes": "", - "parcelID": "19617", - "siteID": "19122", - "siteRegistry": false + "parcelID": "18557", + "siteID": "15747", + "siteRegistry": true }, { - "uuid": "e29d7d3d-4599-4fad-ac36-ff49d1850c2c", - "dateNoted": "2019-07-29", + "uuid": "f71c4a07-4186-4c72-b18a-b25312bac6f4", + "dateNoted": "2020-10-21", "notes": "", - "parcelID": "20581", - "siteID": "17170", - "siteRegistry": true + "parcelID": "19418", + "siteID": "18312", + "siteRegistry": false } ] }, { - "uuid": "3c8073ec-fe9e-44bb-a0cb-f9065d232191", - "siteID": 16538, - "address": "56374 Blick Camp", - "latitude": 51.4899, - "longitude": -135.6935, - "lastUpdated": "2015-01-20", - "city": "DuBuqueview", - "region": " North Coast", - "victoriaFile": "26250-20/3922", + "uuid": "6149f08c-a609-4b26-a4a7-9cbca4c70125", + "siteID": 17101, + "address": "598 Zulauf Roads", + "latitude": 51.2517, + "longitude": -132.8289, + "lastUpdated": "2014-09-04", + "city": "Dickinsonburgh", + "region": "Cariboo", + "victoriaFile": "26250-20/7662", "regionalFile": "N/A", "parcelIDs": [ - 4188119, - 1233797, - 5892727, - 6019832, - 2909223 + 810712, + 2602724, + 7843565, + 5036008, + 2294637 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "196cc660-8010-40bc-9d69-fb3d7d2b171f", - "createdAt": "2015-01-14", - "completed": "2015-01-11", - "initiated": "2016-05-28", - "ministryContact": "MONAHAN NAME", + "uuid": "20b4b3dc-3970-4931-8c13-1b6ac1de2b12", + "createdAt": "2017-09-12", + "completed": "2014-11-16", + "initiated": "2018-12-08", + "ministryContact": "CRIST-HEANEY CAROLYN", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -14206,26 +16563,38 @@ ], "notationParticipants": [ { - "uuid": "2cda2a5c-4137-4870-98c9-87ddc8290efb", + "uuid": "a8ccb6e9-4833-4dea-90e1-9ecff8261dea", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false }, { - "uuid": "66e89797-4357-4577-a4b2-d6c312183224", + "uuid": "00b15a7e-557b-41a5-ac4a-8f82d2b9456a", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "66c9ab7b-70c3-4051-a139-982b8ec9a338", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "uuid": "9e470785-e40e-402f-b535-9940c5038fa2", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", "siteRegistry": false } ], "siteRegistry": false }, { - "uuid": "78bfb1cb-8daa-4018-a17e-68b352a6a049", - "createdAt": "2014-09-10", - "completed": "2015-03-09", - "initiated": "2021-11-28", - "ministryContact": "LARKIN MATEO", + "uuid": "3e155630-4af7-4e80-ac17-1183fe240c02", + "createdAt": "2015-05-29", + "completed": "2017-01-04", + "initiated": "2021-08-08", + "ministryContact": "COLLINS BRANSON", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -14234,38 +16603,78 @@ ], "notationParticipants": [ { - "uuid": "a386c399-a884-4efb-ab49-035060087e84", - "name": "SHELL CANADA PRODUCTS", + "uuid": "78a679b3-93c5-486d-8781-d0717d086158", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true }, { - "uuid": "d6d25fc1-c623-4da0-8c72-216efc28cbe3", + "uuid": "eba90f81-c9da-4626-814e-4d6f16bd3deb", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false }, { - "uuid": "9d3e2d39-a446-425c-86da-da378a68212c", + "uuid": "b4a47dfc-fbf6-47bc-8cb5-57e78f1d2496", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "uuid": "9c2cfafb-6a53-431d-907d-4cc51dbf3116", + "createdAt": "2023-07-05", + "completed": "2014-12-17", + "initiated": "2017-05-17", + "ministryContact": "FEENEY AHMAD", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "uuid": "4b600507-49fe-4dd1-8c37-50da9c3857ab", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "4e084747-facd-43a4-8109-a48ce7348e80", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true }, { - "uuid": "ab245dc4-e989-4c1d-9169-14ecdbe32148", + "uuid": "40e50c2b-57f6-4ac3-bfe6-b2b6e91e7ae0", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false + }, + { + "uuid": "7da99b03-6627-478d-b14c-c6cf6af75175", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "5e2d21e5-fb39-4d4c-9335-6a8ddd8660e3", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true } ], "siteRegistry": false }, { - "uuid": "ac252da9-5531-4d60-b876-34fd6fbac77f", - "createdAt": "2017-07-10", - "completed": "2023-02-11", - "initiated": "2014-04-16", - "ministryContact": "YUNDT MINA", + "uuid": "f9c8054f-9747-442f-b554-d5622e124c79", + "createdAt": "2023-08-05", + "completed": "2021-10-16", + "initiated": "2020-11-16", + "ministryContact": "CREMIN JESSICA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -14274,33 +16683,39 @@ ], "notationParticipants": [ { - "uuid": "9a94a12e-cd03-4409-b649-78865ecdbeb6", - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "45346dcb-79ee-4315-adfa-2131b884c876", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false }, { - "uuid": "9c0cabd7-700e-4bbd-bf52-add12732d9a0", - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "e829db86-5408-4834-8f6e-2f36d085a8de", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "09fa03ee-5f60-4f2e-a9db-cf8543f8bcdc", - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "8d3c03d8-2d00-492e-ad34-37774dc7a533", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false + }, + { + "uuid": "66944cb7-5447-49f2-8dfc-d3c50ad7d271", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true } ], "participants": [ { - "uuid": "71325392-3140-4319-b837-28e4375576bb", - "name": "IPSUM", - "endDate": "2016-06-01", - "startDate": "2021-04-22", + "uuid": "058985aa-5baf-4575-a9d1-fa0f5b2bdc6e", + "name": "AMET, DOLOR SIT", + "endDate": "2014-11-29", + "startDate": "2016-09-12", "notes": "", "roles": [ "ORGANIZATION" @@ -14308,21 +16723,10 @@ "siteRegistry": false }, { - "uuid": "d7cfc73c-8ec9-4284-99cc-4e96cdba76af", + "uuid": "9a33d83b-a3bb-4222-affe-e4f6bdff344e", "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2019-09-02", - "startDate": "2019-07-05", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": false - }, - { - "uuid": "e7038e44-cfa3-4377-b859-6b5860980142", - "name": "AMET, DOLOR SIT", - "endDate": "2015-08-29", - "startDate": "2016-01-03", + "endDate": "2017-04-17", + "startDate": "2018-09-26", "notes": "", "roles": [ "ORGANIZATION" @@ -14330,210 +16734,311 @@ "siteRegistry": true } ], + "documents": [ + { + "uuid": "9897bb73-dcfd-42ff-8e92-3e5ce1644864", + "siteRegistry": true, + "documentDate": "2021-06-09", + "receivedDate": "2014-09-14", + "uploadedDate": "2020-04-24", + "title": "Summary of Site Conditions, 1537 W 41st Avenue, Vancouver", + "participants": [ + { + "uuid": "89c33d23-8dbd-4557-9878-a5bba76e69e2", + "name": "IPSUM", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "51fd9bda-0648-425d-abf0-07b67748a0f0", + "name": "IPSUM", + "siteRegistry": false, + "role": "AUTHOR" + } + ] + }, + { + "uuid": "ed599233-ad1a-4ea6-be2e-db17b793267b", + "siteRegistry": false, + "documentDate": "2018-10-24", + "receivedDate": "2020-02-27", + "uploadedDate": "2021-02-12", + "title": "Preliminary Site Investigation, Detailed Site Investigation and Remedial Plan for the Management Area adjacent to the Shell Site at 1503 West 41st Ave", + "participants": [ + { + "uuid": "2f7a5054-bdc0-4a62-a196-5590e3a07dc6", + "name": "IPSUM", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "1cf893e6-e31e-4812-ac0b-b4ce79fa74c4", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "4322c708-acbe-4d68-ae10-08b00bc96fa7", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": false, + "role": "AUTHOR" + } + ] + } + ], "suspectLandUses": [ { - "uuid": "8c5cefd6-8782-4530-8570-af42f0f815e1", + "uuid": "9f0f6d81-0e83-4aee-80da-39dfbf144ea0", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-08-09 (described on Site Profile dated 2015-08-09)", + "notes": "INSERTED FOR SITE PROFILE DATED 2019-07-10 (described on Site Profile dated 2019-07-10)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "uuid": "65c51a65-123f-4dfa-9468-e47a2ccebec0", + "uuid": "d312610e-c25d-434d-94d6-16fd9973c556", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-08-10 (described on Site Profile dated 2016-08-10)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "notes": "INSERTED FOR SITE PROFILE DATED 2022-05-18 (described on Site Profile dated 2022-05-18)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "uuid": "e7ad3eac-4219-49df-b5a7-f4d76b19d9f2", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2020-06-03 (described on Site Profile dated 2020-06-03)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "uuid": "6e01046c-cf44-496f-ab6f-af073cadd10b", + "uuid": "da7e1c91-a6d4-49a5-8825-32685da94522", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-12-11 (described on Site Profile dated 2021-12-11)", + "notes": "INSERTED FOR SITE PROFILE DATED 2014-11-18 (described on Site Profile dated 2014-11-18)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "uuid": "0e8d51d3-b404-464b-85de-6f8a88f1c5b2", + "uuid": "fa980a11-3dde-4a93-9ca8-76857ba9e8d5", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-12-09 (described on Site Profile dated 2021-12-09)", + "notes": "INSERTED FOR SITE PROFILE DATED 2013-12-12 (described on Site Profile dated 2013-12-12)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], "parcelDescriptions": [ { - "uuid": "a2f775bd-0c64-46b6-a059-860aa17f455f", + "uuid": "60922cf0-8481-4fe3-ba18-ccbe77329d6d", + "siteRegistry": true, + "dateNoted": "2021-01-12", + "parcelID": "17842", + "crownLandUsePIN": "17640", + "crownLandFileNumber": "19047", + "landDescription": "LOT 3 OF LOT 5 BLOCK 5 DISTRICT LOT 1 PLAN 5514" + }, + { + "uuid": "f019ff94-3c2c-452f-bfdc-5e6c4c62bc98", "siteRegistry": false, - "dateNoted": "2021-03-22", - "parcelID": "18853", - "crownLandUsePIN": "17081", - "crownLandFileNumber": "20903", - "landDescription": "LOT 3 OF LOT 2 BLOCK 3 DISTRICT LOT 5 PLAN 6000" + "dateNoted": "2019-12-25", + "parcelID": "19651", + "crownLandUsePIN": "20772", + "crownLandFileNumber": "18457", + "landDescription": "LOT 4 OF LOT 5 BLOCK 5 DISTRICT LOT 3 PLAN 7320" }, { - "uuid": "c5617372-17b9-41bd-8d9b-8c12d741651f", + "uuid": "6a99b090-6f68-483c-8439-a3331a38b996", "siteRegistry": false, - "dateNoted": "2014-11-15", - "parcelID": "19036", - "crownLandUsePIN": "16383", - "crownLandFileNumber": "17971", - "landDescription": "LOT 4 OF LOT 4 BLOCK 2 DISTRICT LOT 5 PLAN 3190" + "dateNoted": "2018-10-06", + "parcelID": "19741", + "crownLandUsePIN": "19598", + "crownLandFileNumber": "19351", + "landDescription": "LOT 4 OF LOT 1 BLOCK 1 DISTRICT LOT 2 PLAN 8760" + }, + { + "uuid": "0f210a93-3a02-4dbf-87ce-f35b1bbdfda4", + "siteRegistry": true, + "dateNoted": "2023-02-26", + "parcelID": "17035", + "crownLandUsePIN": "17055", + "crownLandFileNumber": "20694", + "landDescription": "LOT 5 OF LOT 2 BLOCK 3 DISTRICT LOT 3 PLAN 6721" } ], "siteDisclosures": [ { - "uuid": "b70304a4-ba54-4300-8399-077e4c4216cb", - "siteRegistry": true, - "dateReceived": "2014-11-08", - "dateCompleted": "2021-12-08", - "dateEntered": "2018-11-14", - "dateRegistrar": "2017-03-20", - "dateLocalAuthorityReceived": "2018-02-10", - "summary": "Ducimus ea vero recusandae exercitationem architecto ullam explicabo nam.\nEnim illo recusandae qui veritatis quis voluptatum ipsam.\nNostrum dolor exercitationem voluptate.", - "informationUsed": "Delectus doloribus aut aliquam facilis rem quibusdam ipsam incidunt ullam.\nSequi totam provident.\nRatione illum fugiat ducimus facilis.\nQuia accusantium qui magnam labore quasi nobis.", - "pastOrPresentOrders": "Expedita harum vitae quae numquam.\nLaboriosam ipsum quaerat non quas.", + "uuid": "3e933b9f-776b-4c3f-9991-4a69b3e52541", + "siteRegistry": false, + "dateReceived": "2023-06-03", + "dateCompleted": "2022-06-17", + "dateEntered": "2015-03-07", + "dateRegistrar": "2021-04-21", + "dateLocalAuthorityReceived": "2013-10-19", + "summary": "Quo doloremque dolorum tempora ut pariatur error accusantium.\nQuia eos exercitationem.\nAtque excepturi ratione voluptates labore.", + "informationUsed": "Hic rerum adipisci eveniet iste rem harum eos nam dolorem.\nIpsum quis placeat placeat cupiditate id.\nDolores eveniet inventore porro minus esse aliquid quas cupiditate.\nDebitis eaque aliquid magnam consectetur atque ea illo ipsum.\nDolorum quo facere aut tempora.", + "pastOrPresentOrders": "Maiores ut adipisci distinctio delectus earum voluptas error repudiandae.\nImpedit iste at eveniet vel.", "commercialAndIndustrialPurposes": [ { - "uuid": "7b72d276-ca55-4ba6-82fb-6677adfc5925", - "scheduleReference": "F1*", + "uuid": "50c52457-66ae-45d2-a47f-61810b6304bc", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { - "uuid": "73085cc6-5a2f-4166-a3a4-7f610cdf06ee", + "uuid": "8a8b18e1-aaab-4435-89ab-5ceb20351927", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "uuid": "919fe152-3b91-49f9-aecf-66d26e74a439", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false }, { - "uuid": "eb489cbb-8a04-422a-8200-9340009d7d72", + "uuid": "39a8c8eb-fa04-4177-804c-ccaa9ef5fff6", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true + "siteRegistry": false + } + ] + }, + { + "uuid": "8eb8a7c1-7a44-4030-b9d2-2ee4ede38d5d", + "siteRegistry": false, + "dateReceived": "2014-12-17", + "dateCompleted": "2018-03-21", + "dateEntered": "2018-01-22", + "dateRegistrar": "2022-04-03", + "dateLocalAuthorityReceived": "2019-10-20", + "summary": "Harum illo nostrum doloremque quasi dolores maxime quo dicta.", + "informationUsed": "Dignissimos saepe libero doloremque animi nemo veniam enim recusandae.\nQui animi repellat reprehenderit soluta recusandae ipsa atque saepe.\nSimilique aliquam consequatur provident reiciendis quae alias.", + "pastOrPresentOrders": "Soluta perspiciatis aperiam qui facere accusamus iusto eveniet.", + "commercialAndIndustrialPurposes": [ + { + "uuid": "efc5ba1b-4e82-444a-8630-1dd6d8c437bc", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false }, { - "uuid": "cd0b6cde-d6bb-42d7-bfde-20280a739479", - "scheduleReference": "F2*", + "uuid": "78761803-3644-451e-9622-d2fc1220cff9", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false + "siteRegistry": true } ] } ], "activityLog": [ { - "uuid": "d8cfaf10-4921-4fe1-ba22-b0b1dbd5968e", - "siteRegistry": false, + "uuid": "1503af52-03d8-4a3c-847b-15532c5beea3", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "QUIGLEY RHEA", + "timestamp": "2014-11-26" + }, + { + "uuid": "7cd18f68-ead1-4664-a1e4-87f0baa50da5", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "CASSIN GUIDO", - "timestamp": "2019-11-16" + "user": "LUBOWITZ MORRIS", + "timestamp": "2020-10-06" }, { - "uuid": "be49a4f5-22ed-455f-8dee-703437b7eb3b", + "uuid": "a468a313-fc0d-4656-a9ff-be163fca2c7e", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "KERLUKE JANESSA", - "timestamp": "2015-01-19" + "user": "KUHN JOLIE", + "timestamp": "2016-10-28" }, { - "uuid": "a4974da0-18be-4c3e-a2fd-4cb3842981dc", - "siteRegistry": true, + "uuid": "f7079985-523a-482f-8b9b-f0c26cc2374b", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "BOEHM COBY", - "timestamp": "2020-06-14" + "user": "CRIST SYDNIE", + "timestamp": "2017-07-04" }, { - "uuid": "eddf29a5-4c88-4713-9498-59f995bed57d", + "uuid": "dd4ac4b1-bd61-43ae-8df1-d878c347d5aa", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "VANDERVORT ESPERANZA", - "timestamp": "2015-01-12" + "user": "BLOCK ARVEL", + "timestamp": "2013-11-17" }, { - "uuid": "d94783a3-68ec-458a-855d-886a06a2d7fe", - "siteRegistry": false, + "uuid": "17d4bfd3-5ac1-46f2-a0b2-111fe44031e9", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "LESCH BERTRAM", - "timestamp": "2014-06-27" + "user": "WISOZK MADISON", + "timestamp": "2021-04-14" }, { - "uuid": "9737928e-c3ae-4ce3-97e3-d9a7266bf295", - "siteRegistry": true, + "uuid": "0246a478-a791-4bbf-a958-49d7e399aed5", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "ZIEME KELLEY", - "timestamp": "2014-06-12" + "user": "O'CONNER VERONA", + "timestamp": "2017-02-12" }, { - "uuid": "e9deea82-98be-4e74-aac5-895111acc562", + "uuid": "ed9d7e48-e31e-4d6b-8110-73a46b7eadd4", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "STEHR ASIA", - "timestamp": "2021-05-22" + "user": "HOEGER BUDDY", + "timestamp": "2016-11-14" }, { - "uuid": "d97c05dc-3e38-44e6-9803-a7cb52dd46b3", + "uuid": "ce27a7e1-7a97-4ee5-b382-da1153ec1410", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "MAGGIO MARIAN", - "timestamp": "2014-08-28" + "user": "SATTERFIELD TYRELL", + "timestamp": "2014-11-26" }, { - "uuid": "ff6536c7-eb34-4a71-98ef-4b04e7b276c7", + "uuid": "82645539-6770-4d70-9ff0-b49d24558623", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "BARTELL ANGELICA", - "timestamp": "2020-06-27" + "user": "WEST ADAH", + "timestamp": "2018-08-18" } ], "associatedSites": [ { - "uuid": "eafde4f5-9422-4af2-8ff4-88f005c4ec0a", - "dateNoted": "2022-05-16", - "notes": "", - "parcelID": "20955", - "siteID": "16415", - "siteRegistry": true - }, - { - "uuid": "c7e5041e-7389-411c-8478-f9b7935b155b", - "dateNoted": "2018-04-01", + "uuid": "fd782f85-860f-4fd6-a436-83a224fd1c62", + "dateNoted": "2017-12-24", "notes": "", - "parcelID": "15724", - "siteID": "16851", + "parcelID": "17100", + "siteID": "17392", "siteRegistry": true }, { - "uuid": "062f1a6d-6b75-4eb0-911b-a5b57047c680", - "dateNoted": "2018-12-06", + "uuid": "28ceb02a-8a4f-4a94-abec-ef5ee3467c11", + "dateNoted": "2020-03-31", "notes": "", - "parcelID": "15265", - "siteID": "15585", - "siteRegistry": true + "parcelID": "19542", + "siteID": "18465", + "siteRegistry": false } ] }, { - "uuid": "e98afbda-bc70-4d37-93bf-159cfe731240", - "siteID": 15580, - "address": "143 Lindsay Avenue", - "latitude": 54.3074, - "longitude": -126.1384, - "lastUpdated": "2022-01-12", - "city": "North Little Rock", - "region": "Vancouver Island/Coast", - "victoriaFile": "26250-20/19824", + "uuid": "f494b64e-021c-494b-8e6b-5d6406b2c179", + "siteID": 16055, + "address": "43599 Gulgowski Prairie", + "latitude": 56.8699, + "longitude": -129.5371, + "lastUpdated": "2016-10-02", + "city": "West Brainton", + "region": "Mainland/Southwest", + "victoriaFile": "26250-20/10484", "regionalFile": "N/A", "parcelIDs": [ - 3517220, - 3053744, - 1176376, - 1988183, - 5219084 + 3892436, + 6209520, + 1224521, + 9235668, + 4559461 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "21c92d2d-4d34-4803-993b-6b3c84f704aa", - "createdAt": "2016-07-12", - "completed": "2017-12-21", - "initiated": "2020-02-01", - "ministryContact": "LANGOSH JERMAIN", + "uuid": "226f3dd3-0a60-424f-a27c-507a79b205c7", + "createdAt": "2019-07-23", + "completed": "2022-09-03", + "initiated": "2022-10-20", + "ministryContact": "ANDERSON LEA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -14542,44 +17047,78 @@ ], "notationParticipants": [ { - "uuid": "9d7b490a-8ff6-4ec3-862f-792895f21119", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "uuid": "a1a431f7-85c9-43c9-8625-58789e26ac71", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": false }, { - "uuid": "cfbbb194-18bf-4723-a59a-8bfb2d895ea7", - "name": "SHELL CANADA PRODUCTS", + "uuid": "ea12e319-0a22-45d5-9fa0-0772ab83134e", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "22d1ca55-218d-44c1-bb50-a70de9a7fd58", - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "uuid": "14d5f6aa-3012-455a-93f6-84f2561af552", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "a748a29d-133c-4324-9bc1-15a10e015478", + "uuid": "27010b15-74dc-4589-9345-14a9ec6219e8", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "uuid": "316fba7c-b5c3-4192-9770-2fe3e8fa765e", + "createdAt": "2014-05-12", + "completed": "2023-05-03", + "initiated": "2014-09-22", + "ministryContact": "FARRELL DOMENIC", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "uuid": "09123d61-6f89-45e6-a132-35fb4ae94e0e", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "uuid": "9ac32110-1aa9-4a7f-a937-7124607d0551", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false }, { - "uuid": "11b66ab3-deb0-4a22-b871-6f3c2d2b6a14", - "name": "SHELL CANADA PRODUCTS", + "uuid": "d399e821-84fa-41db-b458-edb2e111cc16", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true + }, + { + "uuid": "1dd02d69-258a-4a2c-a9a5-05cfcfc1bf4c", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "5511f2a5-785a-46be-af18-117aadfd636b", - "createdAt": "2015-01-08", - "completed": "2014-12-13", - "initiated": "2014-07-13", - "ministryContact": "BERGNAUM CAROLINE", + "uuid": "498241a8-08e5-4e05-aa60-d70203a00f8a", + "createdAt": "2016-06-27", + "completed": "2018-04-03", + "initiated": "2022-04-27", + "ministryContact": "RUNTE MARCELLA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -14588,357 +17127,78 @@ ], "notationParticipants": [ { - "uuid": "9b3bf7b8-2d94-4bba-9db3-06be8f4a6047", + "uuid": "d04204c0-0074-4682-b66d-17df3e10f136", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "884772a3-5b51-4b4e-8d63-7121c5a772f2", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "ace30237-592e-43c2-bee5-44d49f291535", + "uuid": "1e99151a-648f-4c52-8470-6774820b1738", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "8e44cde9-a6f8-4c84-88f9-720c3bcc761a", - "name": "SHELL CANADA PRODUCTS", + "uuid": "ddc020c0-9a36-4a09-b165-ac8c83acfdc2", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "051775a4-1bbd-4d34-ab8f-4fdf4d106113", + "uuid": "30bef895-7c35-49d6-97d0-7b50ca9805cd", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false } ], "siteRegistry": true - } - ], - "participants": [ - { - "uuid": "f5c463bd-4641-4428-b4fa-1ced5cf6c79b", - "name": "SHELL CANADA PRODUCTS", - "endDate": "2017-05-08", - "startDate": "2016-10-07", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": false }, { - "uuid": "a8edbfd2-05b2-48d3-9639-b364bea399d8", - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2015-01-23", - "startDate": "2021-09-06", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": true - }, - { - "uuid": "3d8162ff-9f88-440d-9880-dfcb2911531c", - "name": "IPSUM", - "endDate": "2014-07-05", - "startDate": "2021-06-28", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": true - }, - { - "uuid": "9754929b-865f-42e3-8f24-f14c5cae7e4b", - "name": "SHELL CANADA PRODUCTS", - "endDate": "2013-11-22", - "startDate": "2018-08-16", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": true - } - ], - "suspectLandUses": [ - { - "uuid": "104e2611-b7c2-4edc-ae2c-5bdb951642e0", - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-08-10 (described on Site Profile dated 2016-08-10)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" - }, - { - "uuid": "cf0ec464-91a8-44e5-914d-8a7784fbaf94", - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2023-02-19 (described on Site Profile dated 2023-02-19)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" - }, - { - "uuid": "63269632-5097-498a-9895-3f45535e82a3", - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-03-06 (described on Site Profile dated 2019-03-06)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" - }, - { - "uuid": "2eb4e57c-e9d4-4296-954e-f49aa9f02022", - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-11-12 (described on Site Profile dated 2014-11-12)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" - }, - { - "uuid": "68a0a729-cb68-4c9a-993d-ae23c901cc1f", - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2020-03-09 (described on Site Profile dated 2020-03-09)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" - } - ], - "parcelDescriptions": [ - { - "uuid": "feef6c0a-1bd0-42e7-81e3-be2f96fbb468", - "siteRegistry": true, - "dateNoted": "2018-12-17", - "parcelID": "17121", - "crownLandUsePIN": "16159", - "crownLandFileNumber": "17292", - "landDescription": "LOT 5 OF LOT 5 BLOCK 5 DISTRICT LOT 1 PLAN 6027" - }, - { - "uuid": "aa8d1f8b-982a-4549-b5f9-76d4bd4128a5", - "siteRegistry": false, - "dateNoted": "2018-09-03", - "parcelID": "16890", - "crownLandUsePIN": "16510", - "crownLandFileNumber": "15363", - "landDescription": "LOT 5 OF LOT 1 BLOCK 2 DISTRICT LOT 1 PLAN 4091" - }, - { - "uuid": "6777d318-6348-4b0c-aac4-f90133bb227e", - "siteRegistry": true, - "dateNoted": "2016-12-18", - "parcelID": "17538", - "crownLandUsePIN": "17382", - "crownLandFileNumber": "17885", - "landDescription": "LOT 4 OF LOT 3 BLOCK 1 DISTRICT LOT 1 PLAN 5901" - } - ], - "siteDisclosures": [ - { - "uuid": "22a8ddf1-5822-4fee-b6d9-aa18afa137a1", - "siteRegistry": false, - "dateReceived": "2016-04-20", - "dateCompleted": "2021-10-14", - "dateEntered": "2018-01-21", - "dateRegistrar": "2015-01-24", - "dateLocalAuthorityReceived": "2019-12-16", - "summary": "In nulla recusandae consequuntur facilis aspernatur praesentium at.\nDolores accusamus quia accusantium voluptates nostrum voluptatem.", - "informationUsed": "Vel repellat error molestiae natus quasi explicabo perspiciatis quos repellendus.\nSoluta nobis ad illum voluptate animi nam iure ab.\nRepellendus repellat ullam accusantium expedita quas.", - "pastOrPresentOrders": "Beatae quidem ea ipsum.\nHarum quidem iure.", - "commercialAndIndustrialPurposes": [ - { - "uuid": "929987e2-e5fb-443d-820d-5b6acfb34e40", - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true - }, - { - "uuid": "bed99c66-1edb-4573-bb1b-bf92f040a731", - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true - }, - { - "uuid": "6048b47d-fd15-4c91-82a5-a2a756b254e2", - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true - }, - { - "uuid": "b3428d8b-62b6-4017-89f2-eddd6212d9af", - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false - } - ] - }, - { - "uuid": "75e0580f-ef80-4c9f-bbeb-bd121603954f", - "siteRegistry": false, - "dateReceived": "2018-02-08", - "dateCompleted": "2021-05-19", - "dateEntered": "2016-07-07", - "dateRegistrar": "2023-10-05", - "dateLocalAuthorityReceived": "2016-01-29", - "summary": "Repellat sit perferendis quod eaque quos consequatur quibusdam saepe amet.\nA dolorum accusantium expedita laudantium dolore delectus vero quaerat.", - "informationUsed": "Ullam atque quo.\nAccusamus nostrum rerum quo veritatis nulla dignissimos beatae fugiat maiores.\nInventore dolor nihil explicabo quasi.", - "pastOrPresentOrders": "Error nihil alias nostrum excepturi mollitia maxime quaerat.\nMolestias quas excepturi.", - "commercialAndIndustrialPurposes": [ - { - "uuid": "c71187e1-ff99-4b63-a937-671217fe24e9", - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false - }, - { - "uuid": "f69cd1c3-c76c-4e2e-b729-467b0a55db1e", - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false - } - ] - } - ], - "activityLog": [ - { - "uuid": "d8135d09-3309-4401-9f73-ce24d72deea6", - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "DAVIS EUGENE", - "timestamp": "2023-01-26" - }, - { - "uuid": "da7ac69e-6688-4d5b-b30d-f95f3cdfaa82", - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "THOMPSON KARIANNE", - "timestamp": "2016-12-06" - }, - { - "uuid": "75670ac1-937d-41ff-ba2e-724a45a1a96c", - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "BEER TREMAINE", - "timestamp": "2019-05-10" - }, - { - "uuid": "1d840803-a074-41cc-8c3d-8f8f368f1897", - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "ROWE ERNA", - "timestamp": "2015-04-27" - }, - { - "uuid": "a01e0c0d-9ae7-4762-bae4-a3ad1ed104f6", - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "GLEICHNER ELSE", - "timestamp": "2023-07-22" - }, - { - "uuid": "dc57ccfb-45f9-4936-a94a-b1f84b586bbf", - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "POUROS D'ANGELO", - "timestamp": "2021-10-01" - }, - { - "uuid": "a8d81bcc-8ce3-458e-933b-aa50bb8e0764", - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "ZULAUF IVA", - "timestamp": "2014-03-16" - }, - { - "uuid": "ee1d972f-b10b-4669-a3a6-7bac9bd1c2fc", - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "THOMPSON SANTINA", - "timestamp": "2016-03-12" - }, - { - "uuid": "6e5ca91d-8eb9-4c36-98cb-04f4adb62356", - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "WATSICA ANTONIA", - "timestamp": "2021-12-22" - }, - { - "uuid": "2e3978a2-6c7b-40ee-825a-5712a6e8cb2f", - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "CREMIN AUBREY", - "timestamp": "2020-11-28" - } - ], - "associatedSites": [ - { - "uuid": "26847bfa-3011-4bab-abdb-760e4d7b777d", - "dateNoted": "2019-07-18", - "notes": "", - "parcelID": "19251", - "siteID": "17458", - "siteRegistry": true - }, - { - "uuid": "a973601f-beda-41f4-81ca-957c33458323", - "dateNoted": "2020-09-11", - "notes": "", - "parcelID": "19988", - "siteID": "20314", - "siteRegistry": false - } - ] - }, - { - "uuid": "d73cd116-c843-4d37-83ae-23d469855e19", - "siteID": 16364, - "address": "459 Toy Key", - "latitude": 57.8342, - "longitude": -129.0345, - "lastUpdated": "2023-10-05", - "city": "Lake Germaine", - "region": "Vancouver Island/Coast", - "victoriaFile": "26250-20/7288", - "regionalFile": "N/A", - "parcelIDs": [ - 9263470, - 8587864, - 1305087, - 1518471, - 3106710 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "uuid": "336afaac-1adf-49ad-af64-9edf35213f0e", - "createdAt": "2023-09-11", - "completed": "2018-01-14", - "initiated": "2021-11-24", - "ministryContact": "KUHLMAN WILFREDO", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" + "uuid": "35c32396-de12-4946-a121-1ece13be3a61", + "createdAt": "2019-04-25", + "completed": "2021-07-08", + "initiated": "2021-10-18", + "ministryContact": "FISHER GEOVANNI", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" ], "notationParticipants": [ { - "uuid": "ab7c269d-6b20-4764-b99c-0d92a0cf52d0", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "uuid": "216e0575-d924-4227-8806-f36b870a366b", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": true }, { - "uuid": "2b2fc47b-0066-4caa-9721-4811fc50f916", + "uuid": "ef39ff3b-2f0f-4523-ae9e-76ea282d6611", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false }, { - "uuid": "51fefd2e-768b-4527-875e-2de4d29b659f", + "uuid": "7a52b437-b8e7-48e7-9759-4e7b2388b68a", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false } ], "siteRegistry": false }, { - "uuid": "fcf73da6-cd0f-4e4a-8926-69b87a2122be", - "createdAt": "2014-03-04", - "completed": "2018-07-12", - "initiated": "2013-11-23", - "ministryContact": "ARMSTRONG LAURINE", + "uuid": "8f01a584-0ebe-4e41-82cb-88801ff41612", + "createdAt": "2020-04-23", + "completed": "2015-02-28", + "initiated": "2019-07-15", + "ministryContact": "JACOBI FREDA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -14947,90 +17207,34 @@ ], "notationParticipants": [ { - "uuid": "a5b8a629-2e52-4187-9a48-ed66c41127d9", + "uuid": "74b1b1df-2615-4ec7-84aa-be66679ce138", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "uuid": "12aa6b6a-ba0d-41c2-a0ed-d823b320cc25", - "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "dd0f8701-1a25-48ab-b6ac-430fa9ba59ae", + "uuid": "e69f9ab1-feb4-4ebf-b68f-df90e7177069", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "da4b2d0b-d2cb-4b62-b29e-baa4607ddb78", + "uuid": "72f41834-59d6-4269-b870-bc6b185f427a", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false - } - ], - "siteRegistry": false - }, - { - "uuid": "5bbb254e-9cb7-427a-a257-d5ee195b70c0", - "createdAt": "2014-08-06", - "completed": "2016-04-27", - "initiated": "2018-10-28", - "ministryContact": "SCHIMMEL ALEXANNE", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ + }, { - "uuid": "51082e55-fb80-42cc-9f5b-30becd1a14a3", + "uuid": "2d62cacb-0013-4f23-8ceb-0ed557fab778", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "uuid": "29a47caf-7648-4e73-aa0a-ee83774e8778", - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "673f096b-5629-425a-9522-651259e1ba83", - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - } - ], - "siteRegistry": false - }, - { - "uuid": "b8c0681b-e1ec-4de7-abf0-3ada19f92f21", - "createdAt": "2015-06-26", - "completed": "2015-01-25", - "initiated": "2023-10-04", - "ministryContact": "ALTENWERTH ROSLYN", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "uuid": "46c0a91d-cda5-41c9-b449-b85e4bba3a90", - "name": "SHELL CANADA PRODUCTS", + "uuid": "56e0084b-9901-419d-b98a-85a57e6bce81", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "uuid": "e852be33-b3ee-421e-840c-a40838720fec", - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false } ], "siteRegistry": true @@ -15038,32 +17242,32 @@ ], "participants": [ { - "uuid": "1cdd64cb-c5c7-473b-a4af-253c97a5d371", + "uuid": "e0a96c36-5150-4d68-bd36-85c9d9a4da6c", "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2017-12-22", - "startDate": "2018-02-25", + "endDate": "2023-01-14", + "startDate": "2020-07-27", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": true }, { - "uuid": "750cad42-8444-4c95-adcf-8a9c481234fd", - "name": "IPSUM", - "endDate": "2021-04-16", - "startDate": "2014-11-17", + "uuid": "c610bd70-02e8-4f5c-8895-13b206d96055", + "name": "AMET, DOLOR SIT", + "endDate": "2016-12-09", + "startDate": "2022-07-23", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "d1893a43-97f6-4f54-9e58-ca08ffa26851", - "name": "IPSUM", - "endDate": "2017-04-28", - "startDate": "2023-01-12", + "uuid": "3a09a754-af63-44cd-ab37-8ea74d250b84", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2014-02-07", + "startDate": "2014-06-29", "notes": "", "roles": [ "EMPLOYEE" @@ -15071,111 +17275,235 @@ "siteRegistry": false }, { - "uuid": "eed0c12c-5347-4e3d-b1d7-897467418127", - "name": "SHELL CANADA PRODUCTS", - "endDate": "2020-07-17", - "startDate": "2021-07-29", + "uuid": "adfef6a4-2e36-4ab5-818a-94732e42a87d", + "name": "IPSUM", + "endDate": "2016-05-11", + "startDate": "2018-03-10", "notes": "", "roles": [ "ORGANIZATION" ], "siteRegistry": false + }, + { + "uuid": "aa128388-173a-4886-a3e2-8a3b05d8a19b", + "name": "IPSUM", + "endDate": "2020-07-09", + "startDate": "2017-02-24", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false } ], - "suspectLandUses": [ + "documents": [ + { + "uuid": "3d446a13-5232-4100-86de-a88e437ca22c", + "siteRegistry": true, + "documentDate": "2020-11-13", + "receivedDate": "2014-08-26", + "uploadedDate": "2017-10-02", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "b394e18b-af84-43a2-a25d-9a4d64149a80", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "2c92445b-b174-42d5-adf8-d7c4f3d981d3", + "name": "AMET, DOLOR SIT", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "88d10f0d-3953-4e6a-bf01-0be1a6aec41b", + "name": "IPSUM", + "siteRegistry": false, + "role": "AUTHOR" + } + ] + }, { - "uuid": "64727b2b-c153-4fe7-9da6-d02bacab19d9", + "uuid": "731a247f-ed53-45a5-9769-0483fa0cee0a", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2013-10-15 (described on Site Profile dated 2013-10-15)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "documentDate": "2022-01-19", + "receivedDate": "2016-01-13", + "uploadedDate": "2016-08-23", + "title": "Preliminary Site Investigation, Detailed Site Investigation and Remedial Plan for the Management Area adjacent to the Shell Site at 1503 West 41st Ave", + "participants": [ + { + "uuid": "e91ce0d8-692c-4c8a-bb29-948138825c7e", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "a4d1f2e9-dd79-4adc-8d60-79d83c84fbff", + "name": "IPSUM", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "eb1e3d1c-4280-478e-8cda-acea4738b2e4", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": true, + "role": "AUTHOR" + } + ] }, { - "uuid": "fce3ca31-596c-45a9-9bcc-93e016fd00b4", + "uuid": "84df6992-01f0-403c-8303-c273bd97d919", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2020-12-08 (described on Site Profile dated 2020-12-08)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" - }, + "documentDate": "2018-01-14", + "receivedDate": "2020-10-28", + "uploadedDate": "2017-12-24", + "title": "Preliminary Site Investigation, Detailed Site Investigation and Remedial Plan for the Management Area adjacent to the Shell Site at 1503 West 41st Ave", + "participants": [ + { + "uuid": "467d0a95-0475-4b7d-bca4-319a7a22f9e0", + "name": "AMET, DOLOR SIT", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "def4ea04-99ae-43ba-b7d7-a4ff507e63db", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "7bfaa88b-a770-4fab-9a4b-b7ae1d28ad94", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": true, + "role": "AUTHOR" + } + ] + } + ], + "suspectLandUses": [ { - "uuid": "231a985a-8f5b-47fb-a138-16078b99c003", + "uuid": "3e823750-56b1-4f2a-9ca6-86651d5b6962", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-03-13 (described on Site Profile dated 2016-03-13)", + "notes": "INSERTED FOR SITE PROFILE DATED 2017-05-19 (described on Site Profile dated 2017-05-19)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "uuid": "77ce788f-60d5-46a0-959b-0b4b339f0b5c", + "uuid": "c320d98a-bfd2-474f-9603-7e28ed6e55ef", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-06-27 (described on Site Profile dated 2019-06-27)", + "notes": "INSERTED FOR SITE PROFILE DATED 2021-06-30 (described on Site Profile dated 2021-06-30)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "uuid": "a0bd0ed6-4a0f-4bc6-b2a8-32fc3aeb314c", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2014-04-15 (described on Site Profile dated 2014-04-15)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], "parcelDescriptions": [ { - "uuid": "ea0ae986-655c-4111-b922-15d85ed4fa0d", - "siteRegistry": false, - "dateNoted": "2018-12-30", - "parcelID": "17418", - "crownLandUsePIN": "20010", - "crownLandFileNumber": "17268", - "landDescription": "LOT 5 OF LOT 3 BLOCK 3 DISTRICT LOT 3 PLAN 7969" + "uuid": "742bdbf7-10c2-4296-b898-99a05ed144d0", + "siteRegistry": true, + "dateNoted": "2015-06-06", + "parcelID": "20564", + "crownLandUsePIN": "18374", + "crownLandFileNumber": "20068", + "landDescription": "LOT 1 OF LOT 4 BLOCK 2 DISTRICT LOT 4 PLAN 3373" + }, + { + "uuid": "220ca9b2-4b89-4314-99ca-28893c3e0fa2", + "siteRegistry": true, + "dateNoted": "2020-06-16", + "parcelID": "18378", + "crownLandUsePIN": "19036", + "crownLandFileNumber": "20094", + "landDescription": "LOT 3 OF LOT 4 BLOCK 2 DISTRICT LOT 1 PLAN 3957" }, { - "uuid": "e115199f-b127-49a9-81c6-c330652a9dd6", + "uuid": "8da16600-da4c-42e5-9532-bfd1a1dd8f8e", "siteRegistry": false, - "dateNoted": "2019-11-17", - "parcelID": "16893", - "crownLandUsePIN": "20973", - "crownLandFileNumber": "20880", - "landDescription": "LOT 3 OF LOT 3 BLOCK 2 DISTRICT LOT 3 PLAN 7162" + "dateNoted": "2016-08-27", + "parcelID": "16303", + "crownLandUsePIN": "20990", + "crownLandFileNumber": "16666", + "landDescription": "LOT 4 OF LOT 4 BLOCK 2 DISTRICT LOT 2 PLAN 7668" } ], "siteDisclosures": [ { - "uuid": "8add4106-1abe-4ce5-9524-e2b76de63930", + "uuid": "46a3bac0-e928-419d-8d2c-387420622801", "siteRegistry": false, - "dateReceived": "2017-07-07", - "dateCompleted": "2018-11-01", - "dateEntered": "2017-10-22", - "dateRegistrar": "2015-11-07", - "dateLocalAuthorityReceived": "2022-04-20", - "summary": "Cupiditate quos iure excepturi nobis dolore odio deserunt tenetur nostrum.", - "informationUsed": "Delectus omnis suscipit soluta ex error odit.\nEst mollitia aliquid ipsam ex deleniti.\nSoluta totam magni labore ratione aut fugiat.\nVoluptatibus libero sunt numquam.\nOfficiis deleniti laborum nisi.", - "pastOrPresentOrders": "Nostrum quasi numquam.", + "dateReceived": "2014-12-13", + "dateCompleted": "2022-07-13", + "dateEntered": "2023-08-31", + "dateRegistrar": "2018-01-20", + "dateLocalAuthorityReceived": "2017-05-19", + "summary": "Minima vel officia corrupti error enim molestiae similique deleniti.", + "informationUsed": "Sequi hic aut fugit dolores.\nVoluptatum aut amet possimus eaque.\nQuas quaerat culpa neque quas.\nRecusandae expedita nihil incidunt at.\nExercitationem qui ipsum id et odio doloremque omnis doloribus repudiandae.", + "pastOrPresentOrders": "Perferendis iure sint aspernatur iste natus quia quibusdam sint.\nQuae officia nostrum.", "commercialAndIndustrialPurposes": [ { - "uuid": "4264753f-abbe-46e0-963f-d581204e3412", - "scheduleReference": "F1*", + "uuid": "63550dfe-1ac9-48f6-b7ee-b7fa5ad7d7e3", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, { - "uuid": "517e216a-f376-4985-97a2-08994091954a", + "uuid": "4ea44676-ddfa-4db2-9079-1048d597f8eb", "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "uuid": "c76d85f7-e286-419c-b4c0-3774712bbe72", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true + }, + { + "uuid": "39ae428a-4c9d-4108-9e38-484aaeb68f99", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false } ] }, { - "uuid": "8bb8b5af-77a4-468c-93d5-12fd1a1460da", + "uuid": "b4e1db9a-9979-4df9-b150-04cfb80404aa", "siteRegistry": true, - "dateReceived": "2016-12-26", - "dateCompleted": "2020-01-11", - "dateEntered": "2020-11-22", - "dateRegistrar": "2014-02-15", - "dateLocalAuthorityReceived": "2019-12-19", - "summary": "Quidem recusandae eaque optio modi officiis nisi.", - "informationUsed": "Sunt enim ut aspernatur aspernatur inventore.\nArchitecto dignissimos architecto quod alias aperiam deleniti enim.\nLabore distinctio reprehenderit.\nEius dolores autem voluptatem inventore officia voluptate voluptate quod.", - "pastOrPresentOrders": "Doloribus numquam vel quaerat porro id vitae vel.\nDeleniti commodi distinctio eos voluptates.\nQuae perferendis omnis magni ad consectetur dignissimos molestiae sed officiis.", + "dateReceived": "2016-11-18", + "dateCompleted": "2020-06-15", + "dateEntered": "2019-11-26", + "dateRegistrar": "2018-05-10", + "dateLocalAuthorityReceived": "2019-06-13", + "summary": "Nulla quo nesciunt.", + "informationUsed": "Sapiente occaecati velit error sequi non harum amet maxime.\nMaxime labore dolore laborum provident velit.\nAliquid dicta quas repellendus molestiae consequuntur.\nEt distinctio autem maiores autem praesentium perspiciatis alias neque similique.\nConsequuntur incidunt dolore enim.", + "pastOrPresentOrders": "Neque quis quos suscipit autem neque veniam eum quos.", "commercialAndIndustrialPurposes": [ { - "uuid": "c75fbb26-9120-44d8-82db-4ddb65b1cf88", + "uuid": "5a0394c3-150a-4dcc-b8c8-b1cdf60c3da0", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false }, { - "uuid": "0971c0a2-8b98-4e01-a77a-a5715478e028", + "uuid": "19d2c495-5337-4dc3-ba13-339f98d98c5e", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "uuid": "ef332f06-4840-43dd-96a7-c683dead3fa7", "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "uuid": "db62742b-d21f-4b6f-9a67-311d564f24c1", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true } @@ -15184,114 +17512,86 @@ ], "activityLog": [ { - "uuid": "1421a2b1-ee25-4e2e-bbe8-fb091673cc03", + "uuid": "f0bace06-015d-476a-b2aa-c56504b8f394", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "WALKER KAREN", - "timestamp": "2014-12-20" + "user": "MEDHURST AHMAD", + "timestamp": "2020-12-31" }, { - "uuid": "2c99fa40-65f4-4b8f-98f1-c33b104bbeca", + "uuid": "0e2e0984-04cf-4592-a48b-4d7d25998a86", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "WITTING KYLEE", - "timestamp": "2020-11-26" - }, - { - "uuid": "457e77f6-9d09-4152-a93b-7f7a5f1cc630", - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "WELCH ABE", - "timestamp": "2022-11-01" - }, - { - "uuid": "d37cf53b-53e3-4c36-b937-39b5c682bd72", - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "BALISTRERI WADE", - "timestamp": "2017-10-07" - }, - { - "uuid": "a7cdf63b-3177-4259-b83d-aa36b052ce33", - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "CASSIN GRIFFIN", - "timestamp": "2020-05-19" - }, - { - "uuid": "91a63365-277c-4237-b069-acc6f2be8cbd", - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "LUEILWITZ COLTON", - "timestamp": "2019-01-04" + "user": "OLSON GEORGIANNA", + "timestamp": "2018-02-19" }, { - "uuid": "aafa2ff8-17e0-48ae-b6c8-cef55249bae4", + "uuid": "3e5a638d-5328-4c85-b94c-63a3d2167886", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "LEHNER KING", - "timestamp": "2023-10-01" + "user": "PROSACCO DEJON", + "timestamp": "2017-11-28" }, { - "uuid": "d14eaf4b-50a6-423c-ab80-8cf6f906f307", - "siteRegistry": true, + "uuid": "26d77c79-dee3-4d08-bc93-ce73fd5235a6", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "WILKINSON ARNULFO", - "timestamp": "2018-05-16" + "user": "SCHIMMEL RYLEIGH", + "timestamp": "2018-12-26" }, { - "uuid": "e077c58f-e5ad-4f67-876c-8463ca8f19db", + "uuid": "bbd513b0-91ae-4689-9eb0-42941de2f55b", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "LYNCH ALEEN", - "timestamp": "2020-04-21" + "user": "DICKI JOSHUA", + "timestamp": "2022-12-27" } ], "associatedSites": [ { - "uuid": "9ae06daf-9ac8-4ce7-b562-5d11ef920d87", - "dateNoted": "2023-07-16", + "uuid": "513aca93-c94e-470b-a885-ec9bfc251e2e", + "dateNoted": "2022-02-13", "notes": "", - "parcelID": "18696", - "siteID": "18416", + "parcelID": "17786", + "siteID": "18436", "siteRegistry": true }, { - "uuid": "59d588b7-98a4-4053-a0c6-81c0286fece9", - "dateNoted": "2019-03-15", + "uuid": "529892b5-63d6-45a6-99a6-7ed92302e3fa", + "dateNoted": "2014-06-30", "notes": "", - "parcelID": "18994", - "siteID": "20313", + "parcelID": "20566", + "siteID": "20010", "siteRegistry": true } ] }, { - "uuid": "6d000e6c-4075-4ac7-83d0-03ce6d7e603c", - "siteID": 15716, - "address": "73859 Ratke Neck", - "latitude": 50.0664, - "longitude": -135.8275, - "lastUpdated": "2014-09-02", - "city": "Audreanneview", - "region": " North Coast", - "victoriaFile": "26250-20/3960", + "uuid": "f799c7b0-484a-4858-83a0-db05882021e4", + "siteID": 18674, + "address": "38958 Kshlerin Fords", + "latitude": 49.3177, + "longitude": -131.0814, + "lastUpdated": "2021-02-13", + "city": "Considineton", + "region": "Mainland/Southwest", + "victoriaFile": "26250-20/6098", "regionalFile": "N/A", "parcelIDs": [ - 1798542, - 8887460, - 5561713, - 5017434, - 8947624 + 4622125, + 5669050, + 2118014, + 8041699, + 5583335 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "15b3c15e-50b7-4169-b64b-b059c688cc4f", - "createdAt": "2021-10-08", - "completed": "2018-11-11", - "initiated": "2022-03-14", - "ministryContact": "JAKUBOWSKI BRYCEN", + "uuid": "91b84d3a-d454-4227-adeb-c724aa34c2d3", + "createdAt": "2016-06-24", + "completed": "2018-09-05", + "initiated": "2015-11-17", + "ministryContact": "ZULAUF GORDON", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -15300,32 +17600,38 @@ ], "notationParticipants": [ { - "uuid": "af4dc956-35e1-4e75-b48e-0438c44f6832", + "uuid": "8df04437-a903-48c4-8591-c4da083a54c0", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false }, { - "uuid": "c517dc92-7d05-4257-a5b4-29fdf8910bf9", + "uuid": "2d862be0-5443-4163-bb54-119e0a1ad849", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true }, { - "uuid": "0d73dbf0-21a4-44ab-84f7-25e849bc82a0", + "uuid": "9609d19a-4eb1-45b6-ab16-cef85946f944", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "6d5de782-1792-40f0-aedd-78cb0ea364ef", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "37b5880a-8203-4422-b20c-f54875c45504", - "createdAt": "2018-02-24", - "completed": "2016-02-16", - "initiated": "2018-09-24", - "ministryContact": "GERLACH ULICES", + "uuid": "b587641f-b3be-4650-b6bc-d1dabcb82c10", + "createdAt": "2016-02-06", + "completed": "2015-12-31", + "initiated": "2021-05-07", + "ministryContact": "FRIESEN REECE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -15334,27 +17640,15 @@ ], "notationParticipants": [ { - "uuid": "1f6a2382-bbbb-4a72-83f8-9ce2f55692e1", - "name": "SHELL CANADA PRODUCTS", + "uuid": "077c3f5b-99ba-494e-aca6-0495b3de53ac", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true }, { - "uuid": "fcd35463-6069-41bf-a1bf-f7e5a118ed7c", - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "uuid": "b8639f94-e7cd-483f-81bd-0eeac14f0a73", + "uuid": "985c06cb-cf72-4687-a750-d06a362be652", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "uuid": "3a3b5547-f350-40c3-a252-625536190789", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", "siteRegistry": false } ], @@ -15363,43 +17657,43 @@ ], "participants": [ { - "uuid": "af123c3c-663f-48de-b536-8ffa008400c8", + "uuid": "51d928b0-c967-4154-bafa-88afe467b97c", "name": "IPSUM", - "endDate": "2013-11-21", - "startDate": "2013-11-30", + "endDate": "2023-02-01", + "startDate": "2017-11-11", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "ab64fdf6-8c58-4f18-9ece-84e1708917b8", + "uuid": "2491b854-b92a-48b7-a93d-d715ae3bc2ff", "name": "AMET, DOLOR SIT", - "endDate": "2015-06-10", - "startDate": "2017-03-11", + "endDate": "2020-03-01", + "startDate": "2021-10-06", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": false }, { - "uuid": "bc444cb2-3cd8-4c4a-9e5d-7b72b62dba5b", - "name": "SHELL CANADA PRODUCTS", - "endDate": "2017-02-02", - "startDate": "2022-10-22", + "uuid": "51161660-19a6-4498-8051-a005f333bfce", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2021-03-28", + "startDate": "2019-12-31", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "cd9952d1-8485-4af9-b7f1-6a0fb6d75afd", - "name": "IPSUM", - "endDate": "2020-07-08", - "startDate": "2015-02-18", + "uuid": "07b3c741-2704-43ee-afac-e72a49e069de", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2016-12-08", + "startDate": "2015-10-24", "notes": "", "roles": [ "ORGANIZATION" @@ -15407,157 +17701,202 @@ "siteRegistry": false }, { - "uuid": "af255570-1189-4399-9da9-5d0587389cc8", + "uuid": "ef4dbc27-ba16-431f-8775-8f43d87e2427", "name": "AMET, DOLOR SIT", - "endDate": "2022-01-29", - "startDate": "2017-09-27", + "endDate": "2020-05-13", + "startDate": "2017-12-26", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true } ], - "suspectLandUses": [ + "documents": [ { - "uuid": "28c8b8e3-a78d-4c5a-ab91-f8a41cfe1a06", + "uuid": "f1acc0e1-5fe3-4000-866c-312022bdee00", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-10-23 (described on Site Profile dated 2017-10-23)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "documentDate": "2018-08-20", + "receivedDate": "2015-04-17", + "uploadedDate": "2015-03-05", + "title": "Summary of Site Conditions, 1537 W 41st Avenue, Vancouver", + "participants": [ + { + "uuid": "925845ad-fd61-4c7b-b4d7-7c6e9d6bc02a", + "name": "IPSUM", + "siteRegistry": false, + "role": "AUTHOR" + } + ] }, { - "uuid": "087e9e13-f803-4fea-a48b-bbac1a6846a2", + "uuid": "0880d13a-497f-4e87-8838-7c0979ed1233", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-03-26 (described on Site Profile dated 2015-03-26)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "documentDate": "2016-10-29", + "receivedDate": "2021-01-13", + "uploadedDate": "2018-01-26", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "fa272841-4481-4ca3-8ef4-c2fe1c2e4c66", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "901e45f6-9617-4512-906c-cefd563a9606", + "name": "IPSUM", + "siteRegistry": false, + "role": "AUTHOR" + } + ] }, { - "uuid": "423c0099-e629-4fd7-b1f5-f397306c0e94", + "uuid": "5721c193-dfdd-45a9-b4c9-a191a912a624", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-04-27 (described on Site Profile dated 2018-04-27)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "documentDate": "2016-02-09", + "receivedDate": "2020-12-31", + "uploadedDate": "2021-01-21", + "title": "Summary of Site Conditions, 1537 W 41st Avenue, Vancouver", + "participants": [ + { + "uuid": "280c1d6d-fc1b-4b2e-9b1e-97aa28391360", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "41ebcfe5-e844-4569-aaef-e76b7193c099", + "name": "IPSUM", + "siteRegistry": true, + "role": "AUTHOR" + } + ] }, { - "uuid": "d1781651-fb86-4c25-b34b-59901251a2a6", + "uuid": "cf5c2aa0-d2f0-4c67-8e9e-4d2997a8b1ac", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2013-12-01 (described on Site Profile dated 2013-12-01)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" - }, - { - "uuid": "173efd89-fc1c-493f-a6a1-7c536d0bde8d", - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-09-23 (described on Site Profile dated 2016-09-23)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "documentDate": "2023-02-25", + "receivedDate": "2014-12-27", + "uploadedDate": "2017-06-11", + "title": "Summary of Site Conditions, 1537 W 41st Avenue, Vancouver", + "participants": [ + { + "uuid": "f8941d2d-d8fd-4366-8a89-04894376511e", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": false, + "role": "AUTHOR" + } + ] } ], - "parcelDescriptions": [ + "suspectLandUses": [ { - "uuid": "53264bd8-683e-4aa9-9aba-38c4d62b4639", + "uuid": "a7cd3800-e872-41da-9c7b-80313d7b89c8", "siteRegistry": false, - "dateNoted": "2017-10-16", - "parcelID": "17803", - "crownLandUsePIN": "19893", - "crownLandFileNumber": "15377", - "landDescription": "LOT 3 OF LOT 5 BLOCK 2 DISTRICT LOT 5 PLAN 6373" + "notes": "INSERTED FOR SITE PROFILE DATED 2023-03-15 (described on Site Profile dated 2023-03-15)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "uuid": "d6762bef-7e13-43ca-902a-96b5cf8330d8", + "uuid": "babf5896-9a72-4011-9885-7b2770d50116", "siteRegistry": true, - "dateNoted": "2019-12-14", - "parcelID": "15982", - "crownLandUsePIN": "19251", - "crownLandFileNumber": "17615", - "landDescription": "LOT 4 OF LOT 4 BLOCK 2 DISTRICT LOT 4 PLAN 9248" + "notes": "INSERTED FOR SITE PROFILE DATED 2022-12-29 (described on Site Profile dated 2022-12-29)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "uuid": "0e9c5e14-dd1d-425c-8355-b18ea97850c7", + "uuid": "aca213c5-cb68-4b23-928d-6a7cf99925d8", "siteRegistry": true, - "dateNoted": "2015-11-21", - "parcelID": "15576", - "crownLandUsePIN": "19016", - "crownLandFileNumber": "20411", - "landDescription": "LOT 1 OF LOT 5 BLOCK 1 DISTRICT LOT 5 PLAN 5032" + "notes": "INSERTED FOR SITE PROFILE DATED 2021-03-19 (described on Site Profile dated 2021-03-19)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "uuid": "b93756a8-215c-43fb-8e59-130da14291f3", + "uuid": "43580ad7-2c97-4a7a-9eaa-8a63bdd0415a", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2019-06-10 (described on Site Profile dated 2019-06-10)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + } + ], + "parcelDescriptions": [ + { + "uuid": "4116d8d0-086e-47fc-8f25-7628ee57ada4", "siteRegistry": true, - "dateNoted": "2016-02-27", - "parcelID": "15312", - "crownLandUsePIN": "20618", - "crownLandFileNumber": "18572", - "landDescription": "LOT 2 OF LOT 2 BLOCK 2 DISTRICT LOT 2 PLAN 9062" + "dateNoted": "2020-06-28", + "parcelID": "16104", + "crownLandUsePIN": "17123", + "crownLandFileNumber": "20820", + "landDescription": "LOT 5 OF LOT 3 BLOCK 5 DISTRICT LOT 3 PLAN 8671" }, { - "uuid": "10f2e35b-8942-4178-9339-dd912241a378", + "uuid": "472448a7-ab46-4fe0-812f-00cffdefd7d6", "siteRegistry": false, - "dateNoted": "2019-03-23", - "parcelID": "17171", - "crownLandUsePIN": "19458", - "crownLandFileNumber": "17575", - "landDescription": "LOT 2 OF LOT 1 BLOCK 3 DISTRICT LOT 3 PLAN 9394" + "dateNoted": "2019-08-11", + "parcelID": "18297", + "crownLandUsePIN": "15926", + "crownLandFileNumber": "16440", + "landDescription": "LOT 4 OF LOT 5 BLOCK 5 DISTRICT LOT 3 PLAN 3733" } ], "siteDisclosures": [ { - "uuid": "e45c7152-854d-49e0-b5f9-a4a5f6c8ea50", - "siteRegistry": true, - "dateReceived": "2014-05-13", - "dateCompleted": "2015-03-31", - "dateEntered": "2016-06-20", - "dateRegistrar": "2020-02-04", - "dateLocalAuthorityReceived": "2023-04-09", - "summary": "Voluptate iure corporis eveniet.\nDignissimos nam consequatur officia itaque maxime.\nEsse veniam modi sed.", - "informationUsed": "Ex laborum atque deserunt.\nQuisquam laborum natus excepturi nihil atque laboriosam facere.\nProvident laborum nemo unde laboriosam.\nAliquid dolores eius voluptates dolore debitis nostrum molestiae nulla quibusdam.\nSit ex velit ipsam rerum.", - "pastOrPresentOrders": "Esse sint exercitationem.\nIure magnam minus at ab veniam.\nAccusamus sit praesentium fugit voluptatum voluptates rerum.", + "uuid": "eef1dd89-1c66-4943-93e9-0811e30f6011", + "siteRegistry": false, + "dateReceived": "2020-03-26", + "dateCompleted": "2016-09-23", + "dateEntered": "2017-04-25", + "dateRegistrar": "2015-02-05", + "dateLocalAuthorityReceived": "2020-08-01", + "summary": "Veritatis aperiam autem hic iusto sint possimus eius illo.\nCum incidunt ex.\nBlanditiis omnis quae earum nobis officiis facilis in incidunt.", + "informationUsed": "Labore fugit ratione repellat eius iste quo laborum aliquam sunt.\nDucimus iure maiores neque architecto.\nOmnis officia dignissimos in sunt ipsum vitae.\nPlaceat consequuntur esse dolor assumenda ducimus error.\nHarum rerum nulla.", + "pastOrPresentOrders": "Eveniet illo reiciendis non quam id commodi.\nDoloribus ab at laudantium quisquam accusantium quo quaerat occaecati aliquid.\nPossimus minus distinctio odit cumque sunt.", "commercialAndIndustrialPurposes": [ { - "uuid": "d234cf33-baf6-45ce-a11c-0ea17760381f", - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "uuid": "855f36cb-9c05-4e5c-beab-380aa172dd23", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false }, { - "uuid": "bc3220d9-6ecd-4ef2-aa1b-0eec68528508", + "uuid": "9f1b9e1f-c01b-416b-a959-c7298e03cac1", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, { - "uuid": "84888de2-dd76-42ae-9779-ebc1a72fd5b8", - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "uuid": "c6b330af-91c4-4993-8505-0d57024d8d33", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false } ] }, { - "uuid": "b74942a5-1165-41ec-8c77-c24694baac15", + "uuid": "a1cd9199-b994-4b7a-9705-62a5348e6b53", "siteRegistry": false, - "dateReceived": "2023-06-14", - "dateCompleted": "2018-11-15", - "dateEntered": "2019-11-07", - "dateRegistrar": "2017-03-11", - "dateLocalAuthorityReceived": "2016-01-15", - "summary": "Error eius quam est quaerat quisquam ipsum soluta soluta.", - "informationUsed": "Facilis odit quasi labore natus nostrum placeat.\nId nemo soluta corrupti itaque libero mollitia molestiae eaque harum.\nProvident et sapiente eaque minima reprehenderit assumenda.", - "pastOrPresentOrders": "Quidem autem laboriosam.\nQuo nesciunt culpa quasi dignissimos commodi maxime dolores tempore delectus.", + "dateReceived": "2021-05-13", + "dateCompleted": "2017-11-29", + "dateEntered": "2016-11-17", + "dateRegistrar": "2018-01-12", + "dateLocalAuthorityReceived": "2022-12-15", + "summary": "Commodi soluta impedit voluptatum mollitia animi quo explicabo.", + "informationUsed": "Distinctio ab unde tempore.\nAb inventore a.\nOptio velit error.\nLabore animi eum sapiente eius ut facilis.\nEx laborum dolorem dicta soluta accusamus ipsa quis.", + "pastOrPresentOrders": "Accusantium nisi sequi aliquam similique in.\nPariatur ex quaerat porro.", "commercialAndIndustrialPurposes": [ { - "uuid": "88ea4935-5a79-47ba-90ab-e892a93f51cd", - "scheduleReference": "F1*", + "uuid": "c9c716c2-77e7-4597-bc4a-ad632a66353b", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false }, { - "uuid": "d3b81de0-b9e8-4a8f-8c38-83e3f2bc1cc0", - "scheduleReference": "F1*", + "uuid": "479f268c-37b9-4cb2-a76e-94dbf6aacd03", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, { - "uuid": "5a723bab-1393-4a7e-b0bd-57e55bc94e23", + "uuid": "b9283969-c6a3-4171-b30c-3d3d9bc31235", "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true } ] @@ -15565,122 +17904,93 @@ ], "activityLog": [ { - "uuid": "b23919b3-9a79-4d94-8ae2-a62f8148c5a2", - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "DOYLE TWILA", - "timestamp": "2022-01-03" - }, - { - "uuid": "28fe16e3-d720-4b6a-9642-911b1a160a4d", - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "COLE SIERRA", - "timestamp": "2019-07-23" - }, - { - "uuid": "8b5511ae-860a-4ca6-8ca6-6890e594322b", - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "SCHMITT KAYLAH", - "timestamp": "2020-07-11" - }, - { - "uuid": "d5f6fdee-11f9-467b-b325-86ac6729645a", - "siteRegistry": false, + "uuid": "6040ed27-f320-4591-b39b-67ca49996f88", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "MANTE FURMAN", - "timestamp": "2020-06-03" + "user": "BERGSTROM-DAVIS HARDY", + "timestamp": "2022-11-05" }, { - "uuid": "5e0df7c4-967a-4716-ad54-c635bf7f235a", + "uuid": "6dc44732-6fdc-47d0-8ce4-9f68ad5f1167", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "LEMKE AYLIN", - "timestamp": "2014-05-14" + "user": "SCHAEFER WILLIS", + "timestamp": "2019-01-19" }, { - "uuid": "ac5e189c-772b-4ac6-8e49-566dec5f4658", + "uuid": "99a917c5-01b8-4a79-8c06-d370a42dd2b3", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "ERNSER HILDEGARD", - "timestamp": "2019-03-07" + "user": "BEATTY TOMMIE", + "timestamp": "2018-12-18" }, { - "uuid": "dc5e6e94-d0a9-4c36-81c9-2a92c2c15cf6", + "uuid": "77f41a9e-0725-4393-ac9d-c72f18bbd5c4", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "JOHNSON WILHELM", - "timestamp": "2019-04-14" + "user": "WARD ANNE", + "timestamp": "2021-05-30" }, { - "uuid": "53ba6a18-2d13-4f7e-8da2-ad555019310e", + "uuid": "e2361aa4-5dce-4bb6-a572-7372589e3d5d", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "LEFFLER MARCELLA", - "timestamp": "2015-09-15" + "user": "ROGAHN HOBART", + "timestamp": "2014-03-16" }, { - "uuid": "06cc847c-fb12-438d-8a5e-82d7169f6ba1", - "siteRegistry": false, + "uuid": "932d41ef-6422-483d-9690-1a3c4a47ae54", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "HALEY JOYCE", - "timestamp": "2014-08-13" + "user": "POWLOWSKI-O'CONNER JOSIANNE", + "timestamp": "2017-05-21" } ], "associatedSites": [ { - "uuid": "6acceea8-22ca-4297-99f8-7168b3c10c75", - "dateNoted": "2017-05-10", + "uuid": "1fa0945f-24cf-4bfe-8961-51d67aa957ee", + "dateNoted": "2019-04-11", "notes": "", - "parcelID": "20216", - "siteID": "18934", + "parcelID": "17758", + "siteID": "20556", "siteRegistry": false }, { - "uuid": "c4e0abbe-a525-49a6-a513-91f073ce174a", - "dateNoted": "2014-10-17", + "uuid": "3afe590d-4481-412c-80dc-57901bee1bc4", + "dateNoted": "2019-04-08", "notes": "", - "parcelID": "16679", - "siteID": "20469", + "parcelID": "18241", + "siteID": "19360", "siteRegistry": true - }, - { - "uuid": "fbabd7b0-b9d1-42ba-9ff3-910e7ea0fe34", - "dateNoted": "2017-04-02", - "notes": "", - "parcelID": "18143", - "siteID": "17688", - "siteRegistry": false } ] }, { - "uuid": "899790a7-9301-4453-9d3b-153a97e18876", - "siteID": 18806, - "address": "69015 Heidenreich Courts", - "latitude": 56.4587, - "longitude": -122.2045, - "lastUpdated": "2014-05-03", - "city": "Priceboro", - "region": "Mainland/Southwest", - "victoriaFile": "26250-20/17922", + "uuid": "6d680f70-7b24-49a3-86e9-233d38a8bae4", + "siteID": 16752, + "address": "1064 Lloyd Parkway", + "latitude": 52.755, + "longitude": -135.0817, + "lastUpdated": "2018-06-14", + "city": "San Luis Obispo", + "region": "Thompson-Okanagan", + "victoriaFile": "26250-20/2066", "regionalFile": "N/A", "parcelIDs": [ - 3306115, - 7139359, - 4471214, - 7591304, - 5727774 + 5101122, + 2346171, + 1666555, + 6310885, + 8943962 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "1a4156d5-b476-4039-ac30-939b01769536", - "createdAt": "2019-02-27", - "completed": "2019-01-19", - "initiated": "2020-07-16", - "ministryContact": "JOHNSTON ROSARIO", + "uuid": "458e884e-9d2b-4bd1-8d29-ca6b1a3338c1", + "createdAt": "2022-09-26", + "completed": "2020-03-29", + "initiated": "2014-03-01", + "ministryContact": "ROHAN ARMANI", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -15689,26 +17999,32 @@ ], "notationParticipants": [ { - "uuid": "764ce9da-5c99-45c1-b1f4-6085a1ae376e", - "name": "SHELL CANADA PRODUCTS", + "uuid": "4c709b00-3a8d-4602-9f4c-3c8167c2d84f", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false }, { - "uuid": "b387419d-0863-4d24-bf51-d6ad8944157a", - "name": "SHELL CANADA PRODUCTS", + "uuid": "cfeaf995-1903-45c5-9c8e-68b463238524", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "uuid": "6e7da2a5-012f-403f-99d5-e4a00e6fc931", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "f05db0ea-1909-4c41-b1ea-0ca0ffc131f2", - "createdAt": "2014-02-18", - "completed": "2018-10-24", - "initiated": "2014-11-02", - "ministryContact": "CREMIN KOLBY", + "uuid": "a42e198f-2ca4-41d6-89da-03a2cecf316d", + "createdAt": "2021-03-12", + "completed": "2014-11-04", + "initiated": "2014-06-01", + "ministryContact": "WEST ASHLEIGH", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -15717,44 +18033,32 @@ ], "notationParticipants": [ { - "uuid": "bf3417a3-6435-4d81-a693-659ee4284f07", + "uuid": "2b180b02-2a1e-48f2-8ad5-91b5380db202", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true }, { - "uuid": "bf7a0399-ca97-4f68-9743-fb76245aee92", + "uuid": "bd0aed76-e911-4c51-9ef1-1c46b64a5a48", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "uuid": "cfdfd5eb-4946-425a-b2d3-fdee75301d73", - "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "685b67d0-04f5-411d-9344-d310bc638718", + "uuid": "99b6da7b-b6d3-4104-8db6-af596025e415", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true - }, - { - "uuid": "cc5e8780-9170-41c1-b4a4-864a319106c5", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true } ], "siteRegistry": true }, { - "uuid": "15e26aa0-c5b5-4ff3-b550-372919ca96b8", - "createdAt": "2019-12-20", - "completed": "2018-06-27", - "initiated": "2022-10-28", - "ministryContact": "HYATT SETH", + "uuid": "9c26d46b-e964-416f-878a-efe0c92d8742", + "createdAt": "2021-02-07", + "completed": "2022-11-20", + "initiated": "2016-06-09", + "ministryContact": "DIBBERT RETTA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -15763,28 +18067,56 @@ ], "notationParticipants": [ { - "uuid": "2e16a579-dc14-4130-bff4-7cf9e570b9d9", + "uuid": "54526e51-e209-4945-8ca3-7dde3f717604", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "377384f4-d141-4d87-92dd-65a834284fea", + "uuid": "a84e18bf-3765-44dc-aa03-62542810691f", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false + }, + { + "uuid": "5b67bfff-0b0a-495e-84b5-f67352da3d9b", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false }, { - "uuid": "b7834718-77e6-488e-b4af-b1cc05d3f2bf", + "uuid": "3155d2a1-79c7-497c-9262-7835aaac124e", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "uuid": "1df6263e-25bf-43fd-8017-dbd6e247376b", + "createdAt": "2022-02-22", + "completed": "2014-03-18", + "initiated": "2019-11-14", + "ministryContact": "NIKOLAUS DORTHA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "uuid": "1fbbdc5a-05cc-40b9-9e11-25bbdd8a212f", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "79e9417d-cc77-4bd8-9976-c30c80e2377a", + "uuid": "4fe88b6f-0053-4f4b-9b9e-fd11bcfeb7a2", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true + "role": "SUBMITTED BY", + "siteRegistry": false } ], "siteRegistry": true @@ -15792,21 +18124,21 @@ ], "participants": [ { - "uuid": "b9a7559a-ed3b-40ae-94ed-bd3ea0a5fcea", - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2016-10-02", - "startDate": "2014-05-21", + "uuid": "9ccbeabe-17a3-4249-bbd6-f6d338ed7369", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2019-10-02", + "startDate": "2019-11-25", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "fb09a899-aa56-4473-9812-52ef579aefc8", - "name": "IPSUM", - "endDate": "2021-04-19", - "startDate": "2019-03-30", + "uuid": "e54653ef-0dce-4663-a005-60fe74753c0f", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2018-04-26", + "startDate": "2016-03-22", "notes": "", "roles": [ "EMPLOYEE" @@ -15814,10 +18146,10 @@ "siteRegistry": false }, { - "uuid": "dc3a6ea5-4a2a-41ee-af27-a60183e689e2", - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2018-10-17", - "startDate": "2020-12-01", + "uuid": "0f01782d-37cf-4f87-bbc2-beb6ad5042e5", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2019-04-06", + "startDate": "2022-06-11", "notes": "", "roles": [ "EMPLOYEE" @@ -15825,104 +18157,173 @@ "siteRegistry": false } ], - "suspectLandUses": [ - { - "uuid": "2d51b75c-ba72-4db9-a093-ce95e133e583", - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-12-28 (described on Site Profile dated 2014-12-28)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" - }, + "documents": [ { - "uuid": "a664c308-81d9-48fe-964d-477a701cc74b", - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-07-10 (described on Site Profile dated 2017-07-10)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "uuid": "0b9b7df3-d9a8-45c3-b27a-f4c93efd77d8", + "siteRegistry": true, + "documentDate": "2016-05-03", + "receivedDate": "2021-09-05", + "uploadedDate": "2021-05-22", + "title": "Preliminary Site Investigation, Detailed Site Investigation and Remedial Plan for the Management Area adjacent to the Shell Site at 1503 West 41st Ave", + "participants": [ + { + "uuid": "79d138be-4896-45df-af58-ff0f2c16718f", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "ff792d98-9ebe-41e3-bb77-698cceb58433", + "name": "IPSUM", + "siteRegistry": true, + "role": "AUTHOR" + } + ] }, { - "uuid": "516022de-7d9a-40d3-b3f3-27faa5402d65", + "uuid": "4a6179d0-7565-4734-b877-1919e395f4ae", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-08-04 (described on Site Profile dated 2018-08-04)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "documentDate": "2014-03-09", + "receivedDate": "2022-10-09", + "uploadedDate": "2022-03-17", + "title": "Preliminary Site Investigation, Detailed Site Investigation and Remedial Plan for the Management Area adjacent to the Shell Site at 1503 West 41st Ave", + "participants": [ + { + "uuid": "52a1a8c5-b46b-4821-8d6b-bab8c2f761d5", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "a721c7f0-d1c4-442b-b6e0-ab9a63344776", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "d3d2af4f-e748-44ae-921e-639ed53192eb", + "name": "IPSUM", + "siteRegistry": false, + "role": "AUTHOR" + } + ] }, { - "uuid": "16781193-aa48-4ca8-8a50-294ef31eb819", + "uuid": "b091738c-23b1-4976-b090-9b36133a5bfa", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-06-21 (described on Site Profile dated 2021-06-21)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "documentDate": "2021-10-28", + "receivedDate": "2014-02-25", + "uploadedDate": "2013-12-12", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "5bfb97d2-8b32-4807-b1c5-7d40578741b8", + "name": "AMET, DOLOR SIT", + "siteRegistry": false, + "role": "AUTHOR" + } + ] }, { - "uuid": "0499830a-49e8-4350-be38-a9e9678c5a2d", + "uuid": "8210155e-1dde-4f4e-9f97-3a495eb71522", + "siteRegistry": false, + "documentDate": "2021-04-08", + "receivedDate": "2013-10-21", + "uploadedDate": "2021-01-30", + "title": "Summary of Site Conditions, 1537 W 41st Avenue, Vancouver", + "participants": [ + { + "uuid": "08f27cc3-58fa-4ed2-83d2-d8c4fe3c518c", + "name": "IPSUM", + "siteRegistry": false, + "role": "AUTHOR" + } + ] + } + ], + "suspectLandUses": [ + { + "uuid": "40da4807-26ad-435b-aa68-152fe6e1ceaa", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-05-13 (described on Site Profile dated 2017-05-13)", + "notes": "INSERTED FOR SITE PROFILE DATED 2014-01-12 (described on Site Profile dated 2014-01-12)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "uuid": "48d2aa28-f9af-4e9b-8ec5-d99256b8574d", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2019-05-06 (described on Site Profile dated 2019-05-06)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], "parcelDescriptions": [ { - "uuid": "74798687-72cd-4847-85b7-10adb97b75e7", + "uuid": "c7a88eb2-ee03-4576-859a-a8c07fe5bea8", + "siteRegistry": false, + "dateNoted": "2014-11-23", + "parcelID": "17980", + "crownLandUsePIN": "18864", + "crownLandFileNumber": "16040", + "landDescription": "LOT 3 OF LOT 3 BLOCK 3 DISTRICT LOT 4 PLAN 5601" + }, + { + "uuid": "b8109e46-933a-484f-8965-32e5a59a18f7", "siteRegistry": true, - "dateNoted": "2022-10-02", - "parcelID": "16498", - "crownLandUsePIN": "20020", - "crownLandFileNumber": "16057", - "landDescription": "LOT 5 OF LOT 4 BLOCK 4 DISTRICT LOT 2 PLAN 9280" + "dateNoted": "2014-11-11", + "parcelID": "15462", + "crownLandUsePIN": "20503", + "crownLandFileNumber": "18514", + "landDescription": "LOT 4 OF LOT 1 BLOCK 2 DISTRICT LOT 4 PLAN 5696" }, { - "uuid": "05d30db0-c62a-4bff-97d2-cd630c2630f7", + "uuid": "c9793cc1-34f7-4b31-af69-5f45abc4cd91", "siteRegistry": false, - "dateNoted": "2022-03-31", - "parcelID": "16644", - "crownLandUsePIN": "19009", - "crownLandFileNumber": "18645", - "landDescription": "LOT 5 OF LOT 5 BLOCK 3 DISTRICT LOT 4 PLAN 9468" + "dateNoted": "2014-07-06", + "parcelID": "20159", + "crownLandUsePIN": "16521", + "crownLandFileNumber": "18172", + "landDescription": "LOT 2 OF LOT 5 BLOCK 4 DISTRICT LOT 2 PLAN 7399" }, { - "uuid": "b15f1c52-851a-4365-a5a0-cfe129ed37c2", - "siteRegistry": false, - "dateNoted": "2023-10-05", - "parcelID": "20727", - "crownLandUsePIN": "18916", - "crownLandFileNumber": "17432", - "landDescription": "LOT 4 OF LOT 3 BLOCK 3 DISTRICT LOT 5 PLAN 5747" + "uuid": "07040a02-1993-4319-a139-eda3ff593518", + "siteRegistry": true, + "dateNoted": "2019-05-14", + "parcelID": "19439", + "crownLandUsePIN": "20623", + "crownLandFileNumber": "16219", + "landDescription": "LOT 1 OF LOT 4 BLOCK 3 DISTRICT LOT 1 PLAN 8254" }, { - "uuid": "5c9dd2f6-ad70-4af1-8563-6d0a99487f62", - "siteRegistry": false, - "dateNoted": "2022-02-18", - "parcelID": "18110", - "crownLandUsePIN": "20443", - "crownLandFileNumber": "20664", - "landDescription": "LOT 5 OF LOT 2 BLOCK 3 DISTRICT LOT 2 PLAN 3209" + "uuid": "6e07ff9e-602e-4024-87ef-7e86b21b3847", + "siteRegistry": true, + "dateNoted": "2023-06-02", + "parcelID": "16268", + "crownLandUsePIN": "20947", + "crownLandFileNumber": "19205", + "landDescription": "LOT 2 OF LOT 1 BLOCK 2 DISTRICT LOT 5 PLAN 8599" } ], "siteDisclosures": [ { - "uuid": "06745b7b-e5bd-4fff-a46a-8c90154e9c4e", - "siteRegistry": true, - "dateReceived": "2015-05-19", - "dateCompleted": "2016-12-27", - "dateEntered": "2019-06-13", - "dateRegistrar": "2014-04-16", - "dateLocalAuthorityReceived": "2016-04-30", - "summary": "Dolorum facilis saepe.\nMollitia voluptas aspernatur magni itaque fugit sequi minima tenetur.", - "informationUsed": "Quaerat placeat deserunt reiciendis.\nQuae maxime quos commodi ipsa.\nEius et repellendus ratione labore explicabo eos culpa placeat ad.\nAccusantium voluptate incidunt reiciendis.\nVeniam voluptas repellendus unde consequatur ratione tempora impedit.", - "pastOrPresentOrders": "Hic dicta earum sequi esse numquam magni tempore explicabo.", + "uuid": "6ddeb031-b95f-4e65-b7e6-607b06043e2c", + "siteRegistry": false, + "dateReceived": "2020-01-06", + "dateCompleted": "2015-05-10", + "dateEntered": "2021-04-17", + "dateRegistrar": "2023-07-14", + "dateLocalAuthorityReceived": "2020-10-12", + "summary": "Eos expedita nemo.\nAliquam praesentium fugiat possimus aliquid beatae non.", + "informationUsed": "Vero esse porro fugiat reiciendis qui.\nCorporis atque dolorum necessitatibus.\nId quod hic cupiditate incidunt nobis.", + "pastOrPresentOrders": "Consequatur sequi eos recusandae amet eum vero odit quas.\nOptio ipsum accusamus ea qui porro reprehenderit fugit quo totam.", "commercialAndIndustrialPurposes": [ { - "uuid": "2774c584-61ef-40c7-8440-49f54d1db6c9", + "uuid": "074002f5-13e4-40d3-86ed-f9cedf4c41e2", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true - }, - { - "uuid": "ad2ecf35-836f-4dde-aea9-4a26732f6899", - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "f6dffc41-e226-4ede-b0c2-70819fc4f1b8", - "scheduleReference": "F2*", + "uuid": "f0ef4600-b63b-4142-b653-5e4f1534d906", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false } @@ -15931,106 +18332,78 @@ ], "activityLog": [ { - "uuid": "b23cb6a7-5a9e-49a7-96d0-dde238475778", - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "SCHROEDER OPHELIA", - "timestamp": "2016-03-26" - }, - { - "uuid": "fec8be69-53d7-47a2-9107-77c0f4bd8636", + "uuid": "43383020-073b-4db2-b9e2-43ea0aa39e89", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "CASSIN CHADRICK", - "timestamp": "2022-03-05" - }, - { - "uuid": "9b35be97-9206-4692-b895-e6a3fd060831", - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "RUNOLFSDOTTIR CRAIG", - "timestamp": "2021-10-26" + "user": "HAMILL LANEY", + "timestamp": "2014-07-24" }, { - "uuid": "f550e17a-9001-4050-ab35-07430df5fe79", + "uuid": "31e36e79-b3c4-4eec-879f-ce6e780c890f", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "MANTE LEORA", - "timestamp": "2020-08-26" + "user": "BOGISICH OTHA", + "timestamp": "2023-08-20" }, { - "uuid": "5ec2c222-fdcb-42b6-891f-77a56a8d5f0d", - "siteRegistry": true, + "uuid": "a4ef2e23-ab82-4902-90cd-ae58e0b6d60f", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "QUITZON PARIS", - "timestamp": "2020-06-03" + "user": "RUNOLFSDOTTIR MADIE", + "timestamp": "2015-11-06" }, { - "uuid": "0a7cf69f-4e0f-4f23-b5a1-678b8c16a0de", + "uuid": "fb4f0f08-3a29-4645-9f07-14e017e8d814", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "TORPHY RAY", - "timestamp": "2020-12-25" - }, - { - "uuid": "ffc1a39f-018b-416e-aadf-a019345d9217", - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "KUNDE EDWINA", - "timestamp": "2014-08-06" + "user": "O'HARA MELANY", + "timestamp": "2023-06-29" }, { - "uuid": "2918db27-f97e-4e1c-998d-226994bf2637", + "uuid": "1ef58a44-586a-44a8-82fc-a4043d61766f", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "HALEY JAYDE", - "timestamp": "2017-12-16" - }, - { - "uuid": "de1e5700-4da8-4a31-a003-39aa989166f7", - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "MCDERMOTT SABRYNA", - "timestamp": "2016-05-08" + "user": "D'AMORE GIOVANNI", + "timestamp": "2014-11-24" } ], "associatedSites": [ { - "uuid": "0fa6ae5b-6eeb-4892-b3c4-a78cca9381e9", - "dateNoted": "2015-08-26", + "uuid": "48ff4945-09b8-48d2-9310-69ea9e28fb6a", + "dateNoted": "2018-03-08", "notes": "", - "parcelID": "17270", - "siteID": "19973", + "parcelID": "15201", + "siteID": "18407", "siteRegistry": false } ] }, { - "uuid": "10817e74-1878-4371-a37f-920113dfe082", - "siteID": 18927, - "address": "559 Ludwig Lock", - "latitude": 51.9329, - "longitude": -128.4474, - "lastUpdated": "2022-08-12", - "city": "Lorainemouth", - "region": "Kootenay", - "victoriaFile": "26250-20/13395", + "uuid": "fde235a1-333c-4d10-a40e-f888a899c409", + "siteID": 17562, + "address": "4441 Jolie Plaza", + "latitude": 52.6351, + "longitude": -119.0139, + "lastUpdated": "2016-03-21", + "city": "North Cole", + "region": " North Coast", + "victoriaFile": "26250-20/8253", "regionalFile": "N/A", "parcelIDs": [ - 2412028, - 9298532, - 4150126, - 9113654, - 4352837 + 7461491, + 563039, + 2668520, + 7754331, + 4464006 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "65252589-5a7d-48dc-8181-20b2912e9d21", - "createdAt": "2014-10-07", - "completed": "2021-12-30", - "initiated": "2018-12-28", - "ministryContact": "WEHNER NELLE", + "uuid": "2d5e501e-277e-4140-89ad-163805a52182", + "createdAt": "2017-08-23", + "completed": "2020-02-05", + "initiated": "2015-08-27", + "ministryContact": "GOODWIN MICHEL", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -16039,25 +18412,41 @@ ], "notationParticipants": [ { - "uuid": "1c4557be-868d-4a90-9529-01a2dfeb3d58", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "uuid": "8f1ce9f0-943e-4d36-82c3-c6af9d6a8e97", + "uuid": "b65bad1c-1816-4af5-be9c-125662827c8a", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false + "role": "REQUESTED BY", + "siteRegistry": true }, { - "uuid": "80e912f5-2741-42e5-9af7-2dd50063e6d7", + "uuid": "5b09a39d-1b55-4ad7-a05b-2b545b3dd79e", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "uuid": "20b1d4be-3166-46a3-8386-f126d5704019", + "createdAt": "2021-06-18", + "completed": "2019-01-04", + "initiated": "2016-08-27", + "ministryContact": "SMITHAM AMIR", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "uuid": "ad2d2488-e049-434d-8381-7999804a64d8", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true }, { - "uuid": "5761f9c0-3db5-4512-a0c5-0c441be41a56", + "uuid": "4519e51b-47db-408f-99c4-f89a45bf43c1", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false @@ -16066,11 +18455,11 @@ "siteRegistry": false }, { - "uuid": "d68d4b9b-7a6c-4391-bc90-e8ee634d30f9", - "createdAt": "2017-11-13", - "completed": "2023-02-27", - "initiated": "2021-12-19", - "ministryContact": "KSHLERIN HATTIE", + "uuid": "4b26b60a-b3e5-4d77-bb71-89f7c09de7c3", + "createdAt": "2023-10-12", + "completed": "2021-03-07", + "initiated": "2020-07-04", + "ministryContact": "CRONA KATHARINA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -16079,26 +18468,32 @@ ], "notationParticipants": [ { - "uuid": "1cd31f47-d882-4af6-bde1-32026af5e1e2", + "uuid": "f7868b2f-8ae2-4178-ad70-0cdb306963b0", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "abdeafb8-506b-4628-837b-19c504ae3a18", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false }, { - "uuid": "2e321043-978c-445b-bc46-70559febfe72", + "uuid": "968cff24-061a-45f6-9c1c-90630d8c674c", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false } ], "siteRegistry": true }, { - "uuid": "2563bad0-2c6b-4658-9ada-992780b1c75c", - "createdAt": "2015-01-09", - "completed": "2019-06-06", - "initiated": "2022-05-12", - "ministryContact": "KAUTZER ELLIOTT", + "uuid": "675f8bdf-d7f1-45d2-adf6-cdd1bbcdb0a6", + "createdAt": "2014-12-26", + "completed": "2015-02-06", + "initiated": "2014-08-08", + "ministryContact": "KOSS HILMA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -16107,34 +18502,28 @@ ], "notationParticipants": [ { - "uuid": "1b5c4bb0-b5a9-4975-84ae-5609c958bd2f", + "uuid": "c9749d0f-b90e-4b57-9786-d6ea9d840ee6", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "0e807858-ce87-48db-b3f8-8f09a1b0d552", + "uuid": "f3bbbc31-fbd2-46b6-a2bb-d640bdf65efb", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false }, { - "uuid": "d517455f-7677-4133-b03e-a619afaf8559", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "uuid": "72163f4c-8ef0-4b9a-b8fd-922db3d18050", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "b3e54139-5368-4e95-ad5d-e467e738b1c2", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "uuid": "c1ca18e5-e909-40b1-a3e0-dd8498b13d34", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": true - }, - { - "uuid": "b440d420-e778-4bfa-b374-b097e02a8c23", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false } ], "siteRegistry": true @@ -16142,21 +18531,54 @@ ], "participants": [ { - "uuid": "c467cfcb-a192-438c-a878-72d74672a4f5", - "name": "IPSUM", - "endDate": "2014-08-31", - "startDate": "2022-08-10", + "uuid": "ca832544-356d-483e-9e47-25ec9f7bd17a", + "name": "AMET, DOLOR SIT", + "endDate": "2016-08-22", + "startDate": "2022-06-12", "notes": "", "roles": [ "EMPLOYEE" ], + "siteRegistry": false + }, + { + "uuid": "443df503-a0e3-406b-b3bc-f936b7b553fb", + "name": "IPSUM", + "endDate": "2022-04-28", + "startDate": "2016-02-12", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "uuid": "7dc37aa5-e8da-485a-a571-73075d5699de", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2016-04-21", + "startDate": "2017-04-13", + "notes": "", + "roles": [ + "ORGANIZATION" + ], "siteRegistry": true }, { - "uuid": "03509552-a94f-4d06-b702-e6ec4a935550", + "uuid": "cc6a8d04-c8eb-4986-be4a-a4c1de4e1afc", "name": "AMET, DOLOR SIT", - "endDate": "2019-04-05", - "startDate": "2018-08-03", + "endDate": "2021-02-22", + "startDate": "2019-09-11", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "uuid": "0704ed2f-c91a-498c-af70-b6c833681e44", + "name": "IPSUM", + "endDate": "2019-05-11", + "startDate": "2022-06-11", "notes": "", "roles": [ "ORGANIZATION" @@ -16164,220 +18586,235 @@ "siteRegistry": false } ], + "documents": [ + { + "uuid": "4020f447-d314-461e-9561-da0584b04ccd", + "siteRegistry": false, + "documentDate": "2016-12-24", + "receivedDate": "2014-05-28", + "uploadedDate": "2014-04-27", + "title": "Preliminary Site Investigation, Detailed Site Investigation and Remedial Plan for the Management Area adjacent to the Shell Site at 1503 West 41st Ave", + "participants": [ + { + "uuid": "70502b64-ffee-4987-8ff5-e8d0b8c0229d", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "a590b72b-75b4-4471-8726-e6f6fe32a6ac", + "name": "AMET, DOLOR SIT", + "siteRegistry": false, + "role": "AUTHOR" + } + ] + }, + { + "uuid": "e0358d3f-f48b-4fd2-8974-af0a8725bf37", + "siteRegistry": false, + "documentDate": "2017-02-15", + "receivedDate": "2017-02-20", + "uploadedDate": "2019-02-16", + "title": "Preliminary Site Investigation, Detailed Site Investigation and Remedial Plan for the Management Area adjacent to the Shell Site at 1503 West 41st Ave", + "participants": [ + { + "uuid": "1602d4a1-df90-4108-9ce4-de1b78473259", + "name": "AMET, DOLOR SIT", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "5b9e8d13-01f0-4618-a4f9-3d88e99a0468", + "name": "AMET, DOLOR SIT", + "siteRegistry": false, + "role": "AUTHOR" + } + ] + } + ], "suspectLandUses": [ { - "uuid": "c10c19ce-56e9-4039-9e68-f908a8002b37", + "uuid": "6f002050-4ae9-43de-b7fc-d36dbd963739", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-03-06 (described on Site Profile dated 2014-03-06)", + "notes": "INSERTED FOR SITE PROFILE DATED 2016-02-28 (described on Site Profile dated 2016-02-28)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "uuid": "0da9f2e0-7951-4d82-9267-0eb8b678640a", + "uuid": "c248fca3-9f0e-45a8-9f2d-4bbfa1e284fb", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-02-28 (described on Site Profile dated 2018-02-28)", + "notes": "INSERTED FOR SITE PROFILE DATED 2015-01-01 (described on Site Profile dated 2015-01-01)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "uuid": "97d1d0ca-23e6-4a76-ac6d-e87e0e41446d", + "uuid": "3198696b-58dc-4e04-8a42-695d2523b2c8", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-04-18 (described on Site Profile dated 2015-04-18)", + "notes": "INSERTED FOR SITE PROFILE DATED 2023-08-18 (described on Site Profile dated 2023-08-18)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "uuid": "8a593aab-01b3-47d9-aebf-92845c9b6193", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2019-11-13 (described on Site Profile dated 2019-11-13)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], "parcelDescriptions": [ { - "uuid": "111f3aa0-d9db-493f-931c-ab23b3d8cdb2", - "siteRegistry": true, - "dateNoted": "2023-03-17", - "parcelID": "16235", - "crownLandUsePIN": "16154", - "crownLandFileNumber": "20863", - "landDescription": "LOT 4 OF LOT 1 BLOCK 4 DISTRICT LOT 5 PLAN 4736" - }, - { - "uuid": "f5b52fd5-dbab-4f73-8ffa-888ee97b03b8", + "uuid": "95f34af4-36f4-4330-aee2-e5c60a3fd528", "siteRegistry": true, - "dateNoted": "2021-06-26", - "parcelID": "17353", - "crownLandUsePIN": "17884", - "crownLandFileNumber": "18504", - "landDescription": "LOT 5 OF LOT 4 BLOCK 5 DISTRICT LOT 1 PLAN 8995" - }, - { - "uuid": "7d43c3db-2f69-4131-a75d-553a1d7513bc", - "siteRegistry": false, - "dateNoted": "2023-05-09", - "parcelID": "18871", - "crownLandUsePIN": "20551", - "crownLandFileNumber": "17616", - "landDescription": "LOT 3 OF LOT 3 BLOCK 3 DISTRICT LOT 3 PLAN 4255" + "dateNoted": "2020-01-20", + "parcelID": "16370", + "crownLandUsePIN": "15888", + "crownLandFileNumber": "18413", + "landDescription": "LOT 1 OF LOT 4 BLOCK 2 DISTRICT LOT 2 PLAN 4289" }, { - "uuid": "ae913fc3-8179-4882-80e4-680e31f80218", + "uuid": "41e4a024-ca5c-4e6a-9212-88f10c42acad", "siteRegistry": true, - "dateNoted": "2021-06-14", - "parcelID": "20577", - "crownLandUsePIN": "17449", - "crownLandFileNumber": "18387", - "landDescription": "LOT 2 OF LOT 2 BLOCK 5 DISTRICT LOT 1 PLAN 5621" + "dateNoted": "2015-05-04", + "parcelID": "17900", + "crownLandUsePIN": "19934", + "crownLandFileNumber": "17647", + "landDescription": "LOT 2 OF LOT 3 BLOCK 3 DISTRICT LOT 4 PLAN 8254" } ], "siteDisclosures": [ { - "uuid": "998e95be-a0c0-4aae-879d-02b85e5701fd", - "siteRegistry": false, - "dateReceived": "2020-05-02", - "dateCompleted": "2021-01-26", - "dateEntered": "2016-07-15", - "dateRegistrar": "2022-05-17", - "dateLocalAuthorityReceived": "2018-02-17", - "summary": "Porro ipsa iusto expedita molestias.\nIllum tenetur officiis.", - "informationUsed": "Facere exercitationem quod perferendis vel fugit.\nRecusandae commodi cumque veritatis consectetur sit repellendus optio eaque.\nMagnam tenetur commodi.\nAperiam consequuntur repudiandae doloremque consequuntur dolores sunt est ullam distinctio.\nBeatae voluptates laborum.", - "pastOrPresentOrders": "Eligendi quisquam ipsum numquam corrupti maxime a cumque eum.\nDucimus unde magni aperiam quasi.", + "uuid": "ca3350f9-c26c-49ef-a54d-570ac3c1e184", + "siteRegistry": true, + "dateReceived": "2020-09-10", + "dateCompleted": "2021-04-21", + "dateEntered": "2018-02-09", + "dateRegistrar": "2016-12-01", + "dateLocalAuthorityReceived": "2022-10-28", + "summary": "At ad magni tempora sit ex ipsum eum.\nEa iure dolores adipisci dolorum tempore magnam voluptatibus dolorem.\nCulpa sint ipsum dicta nulla magni vero non aliquam.", + "informationUsed": "Ad quis fugiat ipsam laudantium saepe quaerat perferendis numquam aliquam.\nVitae eius pariatur.\nConsectetur adipisci nostrum aliquam impedit amet error dolore veniam.", + "pastOrPresentOrders": "Ad nobis vitae.", "commercialAndIndustrialPurposes": [ { - "uuid": "97ba93da-a25f-4559-a326-0a6ef4eab674", - "scheduleReference": "F1*", + "uuid": "b6640ea1-5e7c-46bd-8037-533375ad02ac", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, { - "uuid": "0faf4e24-3866-4c5b-a8ad-b7d27657b297", + "uuid": "7983487e-dab8-4f07-a14e-d524f4cb526f", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true - }, - { - "uuid": "f84a35c2-af25-4868-89ba-de44a3cf6f98", - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false - } - ] - }, - { - "uuid": "b18cc930-3153-44b0-a9cd-b3cee40fffae", - "siteRegistry": true, - "dateReceived": "2020-01-13", - "dateCompleted": "2022-03-13", - "dateEntered": "2019-08-08", - "dateRegistrar": "2023-05-21", - "dateLocalAuthorityReceived": "2017-08-24", - "summary": "Itaque ex pariatur velit doloremque fugiat similique.\nRecusandae corrupti aliquid voluptate repellendus magni itaque praesentium omnis quo.", - "informationUsed": "Aspernatur quis eum.\nUnde quae nobis libero pariatur rerum rem facere.\nTempora culpa nam tempora numquam et.\nTemporibus dolorem minus.", - "pastOrPresentOrders": "Quidem sequi accusantium quidem alias.\nDoloremque nam voluptatum qui adipisci quia.", - "commercialAndIndustrialPurposes": [ - { - "uuid": "595f8711-1fc7-4eac-8e9d-9ff66d50945b", - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true }, { - "uuid": "1e3d0946-1701-467a-97d8-f74e3ed23953", + "uuid": "29ba582c-a4dc-48b9-bdb7-be83c022bcd9", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "b47b7660-f423-4cd7-b5bd-b6c7f015e0d0", + "uuid": "d7a92a5a-57a2-4d31-8e96-1eb99fa78ae8", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false + "siteRegistry": true } ] } ], "activityLog": [ { - "uuid": "9e2d8bb2-e7ab-4abb-a26d-17b323779514", + "uuid": "eeaaa399-83ae-4600-bf2a-1b269f6b3334", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "O'CONNER GENNARO", + "timestamp": "2016-08-01" + }, + { + "uuid": "c4932612-0e26-4863-b393-25fb57d21d3e", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "DACH MYLES", - "timestamp": "2021-09-26" + "user": "MARVIN GEORGIANA", + "timestamp": "2016-08-07" }, { - "uuid": "2bba8d71-9974-4cb4-963e-70373c97ac7b", - "siteRegistry": true, + "uuid": "d231288b-9fc2-4420-bd42-7c8a915ac39c", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "HANSEN JOHAN", - "timestamp": "2017-06-23" + "user": "RITCHIE ESTEL", + "timestamp": "2020-03-12" }, { - "uuid": "2f8c7e27-f36e-4bb4-9453-6158764d0250", + "uuid": "e9c1751f-ba5b-4e0a-aa92-33a8502d865e", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "MURPHY DEMETRIS", - "timestamp": "2017-10-02" + "user": "STOLTENBERG MAIA", + "timestamp": "2017-08-21" }, { - "uuid": "834f24c3-5d72-4d97-a973-45142b4f942d", - "siteRegistry": true, + "uuid": "26189089-4738-4231-a3b4-c247b54d1a2e", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "BARTOLETTI FRANCO", - "timestamp": "2019-03-07" + "user": "STEHR BEAU", + "timestamp": "2018-12-21" }, { - "uuid": "b4bb7df7-686d-4a03-bd2c-47394fe68d22", + "uuid": "b93e784a-cfa8-4a85-b26b-74446bb7c4ff", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "ZIEME ARNOLDO", - "timestamp": "2019-08-06" + "user": "POUROS BRADLEY", + "timestamp": "2020-01-08" } ], "associatedSites": [ { - "uuid": "a5a9faf8-5538-4ce5-b396-76f34aebe306", - "dateNoted": "2020-09-11", + "uuid": "0fddafc1-3754-4b44-b048-e8d2310ab05c", + "dateNoted": "2022-04-29", "notes": "", - "parcelID": "15681", - "siteID": "17161", - "siteRegistry": false + "parcelID": "19418", + "siteID": "17033", + "siteRegistry": true }, { - "uuid": "482bd5e1-6426-4302-af37-cd1de4015c49", - "dateNoted": "2018-04-01", + "uuid": "ff999dd7-c2a5-498a-ae0b-aef4612e9e6e", + "dateNoted": "2018-11-10", "notes": "", - "parcelID": "19362", - "siteID": "16189", + "parcelID": "17795", + "siteID": "16877", "siteRegistry": true }, { - "uuid": "949d9a8d-5e72-4090-b2d8-25a2812f4e0d", - "dateNoted": "2019-05-19", + "uuid": "6ec9380f-4f43-4760-8a01-a536776561ad", + "dateNoted": "2020-08-04", "notes": "", - "parcelID": "20397", - "siteID": "19479", - "siteRegistry": true + "parcelID": "15827", + "siteID": "18030", + "siteRegistry": false } ] }, { - "uuid": "eb27f831-8de7-4217-a3db-5353461c3c95", - "siteID": 20626, - "address": "252 Karina Lakes", - "latitude": 49.6049, - "longitude": -130.1329, - "lastUpdated": "2023-03-27", - "city": "Konopelskicester", - "region": "Mainland/Southwest", - "victoriaFile": "26250-20/967", + "uuid": "0f694418-f99e-4210-abe6-54bff95397a0", + "siteID": 15747, + "address": "43845 Durgan Manors", + "latitude": 58.5725, + "longitude": -131.731, + "lastUpdated": "2014-03-04", + "city": "Schmittbury", + "region": " North Coast", + "victoriaFile": "26250-20/8168", "regionalFile": "N/A", "parcelIDs": [ - 9097320, - 5120656, - 3082926, - 2761509, - 859778 + 3739889, + 7157251, + 3158319, + 6972930, + 1685298 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "bba3dd4a-507b-455f-9c8e-dc54347a66ee", - "createdAt": "2015-04-20", - "completed": "2021-05-17", - "initiated": "2020-03-18", - "ministryContact": "ROWE CARLEE", + "uuid": "e412f8dc-cfab-4fb9-a40a-cba968935977", + "createdAt": "2022-12-11", + "completed": "2023-05-30", + "initiated": "2015-03-06", + "ministryContact": "HARRIS-WILLMS SHANELLE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -16386,44 +18823,60 @@ ], "notationParticipants": [ { - "uuid": "6162cb44-274a-4a03-ad02-8d08f5cac15f", + "uuid": "1f56e272-ff28-4e75-9816-ddba45370e96", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "92662868-4f9b-4332-b8ab-cfe2defeffbf", - "name": "SHELL CANADA PRODUCTS", + "uuid": "8d999a2b-793e-410e-8bda-4e7385a38f9f", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false - }, + } + ], + "siteRegistry": false + }, + { + "uuid": "6d9df743-cf7a-4533-9c9e-b76194480af5", + "createdAt": "2019-04-17", + "completed": "2018-06-24", + "initiated": "2022-12-13", + "ministryContact": "HARBER DALTON", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ { - "uuid": "44048c1a-2f0e-4ef8-9abb-8e872c08302a", + "uuid": "25125cdf-c6c3-484e-a0a7-ea3392365d3d", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true }, { - "uuid": "7aba95cb-6535-43cc-97de-520caa42a783", - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "uuid": "8a9c20e0-06e5-4fa8-b055-3ab957ddbdb7", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", "siteRegistry": false }, { - "uuid": "dab040db-9ddc-4d8b-9ded-85c2082a28b7", - "name": "SHELL CANADA PRODUCTS", + "uuid": "f7b4efb2-83d2-4406-9ba9-261d51f54961", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "e9620861-cf72-4f25-b352-7ccd637b1ccb", - "createdAt": "2019-11-14", - "completed": "2018-11-07", - "initiated": "2015-03-26", - "ministryContact": "SCHROEDER JAQUELINE", + "uuid": "63f33ffe-bc2d-4479-a2b2-bf345cb9fd7a", + "createdAt": "2014-09-01", + "completed": "2018-01-24", + "initiated": "2016-09-27", + "ministryContact": "FERRY DEONTE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -16432,32 +18885,44 @@ ], "notationParticipants": [ { - "uuid": "393a8ca1-0c39-417b-8fdd-91ffc6c124e0", + "uuid": "ca01cf3b-9de3-49d3-b000-48d3e7f1f300", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false }, { - "uuid": "557deb78-656f-4651-a5f2-1366a731f4a4", + "uuid": "2ad920ed-7a15-4cbb-8bdb-0dc3a24e338c", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "410a7e8a-48eb-445c-bc21-67bd1b27577e", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "d6838318-e06a-40e6-9f94-840ab3bedc3a", + "uuid": "1762be62-e040-4466-90b8-4bce2ca3ca5a", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true + }, + { + "uuid": "c718a5ea-ecc5-4903-961d-302ec6afdb75", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false } ], "siteRegistry": false }, { - "uuid": "0b4e1e1a-e48a-4864-b552-338d5774ba5b", - "createdAt": "2021-04-24", - "completed": "2018-07-11", - "initiated": "2018-08-20", - "ministryContact": "HALEY LEANN", + "uuid": "a0bb79a2-2a44-4339-bad4-d3190e9345c5", + "createdAt": "2023-05-28", + "completed": "2016-06-07", + "initiated": "2018-04-04", + "ministryContact": "KUHLMAN-BRUEN CLETA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -16466,56 +18931,77 @@ ], "notationParticipants": [ { - "uuid": "071f61f0-ba62-4fd1-9adf-18f6ab08f59e", - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "78fb1f3e-0d21-4ad7-b9b4-bcc06e71f6e5", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "385e43a6-af51-4d71-975e-4c7f29514e7d", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "uuid": "d2121294-5267-4133-968f-c9238227a0ac", + "uuid": "93e22f10-1a6b-41ec-bf71-6a84332bd7cc", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true - }, + } + ], + "siteRegistry": false + }, + { + "uuid": "bd4abfe2-35b2-4fae-b91e-238a98bbda8f", + "createdAt": "2016-07-15", + "completed": "2018-02-28", + "initiated": "2022-01-07", + "ministryContact": "ONDRICKA JACEY", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ { - "uuid": "0be035e9-01b4-4544-9a01-82ccc0e9ebbd", + "uuid": "3d8fcdb5-a1ba-4963-8ae6-f377bbb99c78", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "bafa9e59-c64f-44f1-8c67-7705c45af997", + "uuid": "55d03aab-2061-4b6f-b218-5ccc1facc0b3", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false + "role": "SUBMITTED BY", + "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false } ], "participants": [ { - "uuid": "745bbd39-6575-4530-8ecb-1de96f628637", - "name": "IPSUM", - "endDate": "2020-12-08", - "startDate": "2014-06-12", + "uuid": "b0253d5a-d3db-47f1-9362-db8f729bb3dd", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2021-12-09", + "startDate": "2016-01-13", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "uuid": "7b9f1715-6c50-40d9-9d6d-37412384181d", + "name": "AMET, DOLOR SIT", + "endDate": "2015-04-09", + "startDate": "2014-11-21", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "89c31508-6198-4e55-8aa5-ebc394d8c319", - "name": "IPSUM", - "endDate": "2020-09-28", - "startDate": "2021-04-28", + "uuid": "7aed5ac8-b44b-4380-b384-77f93aafc210", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2019-04-16", + "startDate": "2019-11-28", "notes": "", "roles": [ "EMPLOYEE" @@ -16523,10 +19009,21 @@ "siteRegistry": true }, { - "uuid": "4fec9b2a-af93-4bef-bda3-aaa9c1c8dfe6", - "name": "IPSUM", - "endDate": "2022-11-30", - "startDate": "2018-08-08", + "uuid": "e9a924ae-eaa2-4dcb-906f-da9b5057c983", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2023-06-13", + "startDate": "2018-03-31", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "uuid": "b1ed0353-b639-46d8-b152-eeb1d5777d72", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2023-06-16", + "startDate": "2014-08-28", "notes": "", "roles": [ "EMPLOYEE" @@ -16534,151 +19031,131 @@ "siteRegistry": false } ], - "suspectLandUses": [ + "documents": [ { - "uuid": "0b38eef6-2c52-42dd-8e92-b37caf127fca", + "uuid": "e23052da-a1c7-4f05-b2f2-0629e863fa4c", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-04-21 (described on Site Profile dated 2018-04-21)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" - }, + "documentDate": "2020-08-08", + "receivedDate": "2015-10-13", + "uploadedDate": "2013-11-07", + "title": "Summary of Site Conditions, 1537 W 41st Avenue, Vancouver", + "participants": [ + { + "uuid": "9b628145-482d-4a6c-bc01-7bee3bb3ce0a", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": true, + "role": "AUTHOR" + } + ] + } + ], + "suspectLandUses": [ { - "uuid": "5f5e2fa5-a648-4e66-8619-6508d39723f8", + "uuid": "f5fdbac8-d5bb-40cc-a8be-29282a1840e1", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2020-01-20 (described on Site Profile dated 2020-01-20)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "notes": "INSERTED FOR SITE PROFILE DATED 2017-05-30 (described on Site Profile dated 2017-05-30)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "uuid": "08317f7e-7a89-4aaf-bbb0-3f7d46a923d3", + "uuid": "492c5ebd-50b7-475f-9d48-0b7c9aed4979", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-01-26 (described on Site Profile dated 2018-01-26)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "notes": "INSERTED FOR SITE PROFILE DATED 2021-03-23 (described on Site Profile dated 2021-03-23)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "uuid": "3eb401fb-7210-44ec-ba61-ee8588708bc6", + "uuid": "cd228dbf-9ce5-417a-b070-6bfee312d851", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2023-09-09 (described on Site Profile dated 2023-09-09)", + "notes": "INSERTED FOR SITE PROFILE DATED 2019-11-23 (described on Site Profile dated 2019-11-23)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "uuid": "6dc14c72-952c-46f0-8d2e-c015b67bd690", + "uuid": "116ae668-ea8e-46da-853f-c02d5ff07da9", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-02-10 (described on Site Profile dated 2014-02-10)", + "notes": "INSERTED FOR SITE PROFILE DATED 2018-05-06 (described on Site Profile dated 2018-05-06)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], "parcelDescriptions": [ { - "uuid": "10b117c9-2171-4cee-876d-00f035da8ac0", - "siteRegistry": true, - "dateNoted": "2018-11-01", - "parcelID": "15277", - "crownLandUsePIN": "16424", - "crownLandFileNumber": "19165", - "landDescription": "LOT 4 OF LOT 1 BLOCK 3 DISTRICT LOT 5 PLAN 3309" + "uuid": "44eadaf2-dc53-4a35-9420-bffdfd776dd9", + "siteRegistry": false, + "dateNoted": "2018-02-16", + "parcelID": "19262", + "crownLandUsePIN": "15470", + "crownLandFileNumber": "17831", + "landDescription": "LOT 2 OF LOT 1 BLOCK 4 DISTRICT LOT 2 PLAN 5173" }, { - "uuid": "f6ae1e44-1ed8-433f-94b7-dcbff8e07382", - "siteRegistry": false, - "dateNoted": "2019-09-29", - "parcelID": "16182", - "crownLandUsePIN": "20863", - "crownLandFileNumber": "16012", - "landDescription": "LOT 3 OF LOT 5 BLOCK 2 DISTRICT LOT 3 PLAN 8719" + "uuid": "11c46042-c488-4576-be37-6679bb042b71", + "siteRegistry": true, + "dateNoted": "2018-12-14", + "parcelID": "19743", + "crownLandUsePIN": "15561", + "crownLandFileNumber": "15723", + "landDescription": "LOT 3 OF LOT 2 BLOCK 5 DISTRICT LOT 2 PLAN 9430" }, { - "uuid": "87552528-ba4d-4e70-921a-8d0f6bd16bb4", + "uuid": "911ddc8c-5393-41a7-96ed-48b9201915b9", "siteRegistry": false, - "dateNoted": "2017-07-13", - "parcelID": "19804", - "crownLandUsePIN": "20815", - "crownLandFileNumber": "15558", - "landDescription": "LOT 5 OF LOT 4 BLOCK 2 DISTRICT LOT 3 PLAN 5361" + "dateNoted": "2021-02-07", + "parcelID": "15642", + "crownLandUsePIN": "17588", + "crownLandFileNumber": "19681", + "landDescription": "LOT 1 OF LOT 3 BLOCK 2 DISTRICT LOT 3 PLAN 8838" }, { - "uuid": "e4efb423-b572-459e-91db-2c022d15c6a8", - "siteRegistry": true, - "dateNoted": "2022-09-13", - "parcelID": "15393", - "crownLandUsePIN": "17672", - "crownLandFileNumber": "20562", - "landDescription": "LOT 4 OF LOT 1 BLOCK 4 DISTRICT LOT 5 PLAN 3733" + "uuid": "7dbd9726-cc05-4749-a476-347763daf53e", + "siteRegistry": false, + "dateNoted": "2021-12-30", + "parcelID": "20398", + "crownLandUsePIN": "19804", + "crownLandFileNumber": "19396", + "landDescription": "LOT 4 OF LOT 4 BLOCK 3 DISTRICT LOT 4 PLAN 5375" }, { - "uuid": "10af9918-b477-4692-907b-6bde705b0744", - "siteRegistry": true, - "dateNoted": "2018-11-27", - "parcelID": "20850", - "crownLandUsePIN": "18005", - "crownLandFileNumber": "19575", - "landDescription": "LOT 2 OF LOT 2 BLOCK 1 DISTRICT LOT 3 PLAN 8381" + "uuid": "15107af2-bbf2-4187-b0ac-5d41b94eb1e6", + "siteRegistry": false, + "dateNoted": "2015-07-30", + "parcelID": "16893", + "crownLandUsePIN": "15219", + "crownLandFileNumber": "15878", + "landDescription": "LOT 1 OF LOT 2 BLOCK 2 DISTRICT LOT 3 PLAN 3343" } ], "siteDisclosures": [ { - "uuid": "f4560927-886b-43f6-a397-8dc6d6b682af", - "siteRegistry": false, - "dateReceived": "2017-05-25", - "dateCompleted": "2014-04-13", - "dateEntered": "2020-04-18", - "dateRegistrar": "2021-11-24", - "dateLocalAuthorityReceived": "2023-01-08", - "summary": "Perspiciatis officia laborum magnam voluptates corrupti vel fugiat corporis quibusdam.", - "informationUsed": "Odit dolore velit ipsum voluptates sed soluta officia quod.\nArchitecto quisquam aliquid amet tempore similique.\nCumque unde maiores veniam dicta itaque aliquam officiis.\nLaboriosam inventore nesciunt at.", - "pastOrPresentOrders": "Itaque velit cum.\nQuidem quis dolorem eligendi a earum.", + "uuid": "1475a970-6382-4f65-b672-f7ac044136f1", + "siteRegistry": true, + "dateReceived": "2016-07-16", + "dateCompleted": "2022-12-20", + "dateEntered": "2019-05-16", + "dateRegistrar": "2019-12-17", + "dateLocalAuthorityReceived": "2016-12-23", + "summary": "Placeat at illum magni veritatis iste quasi ducimus blanditiis pariatur.", + "informationUsed": "Earum quis architecto dolorem sed quaerat ipsa minus odio quas.\nPraesentium repudiandae sed aliquid id excepturi voluptatibus.\nTenetur magni neque ea ab qui deserunt.\nQuo quod at.", + "pastOrPresentOrders": "Occaecati eligendi totam laudantium et itaque pariatur laboriosam repudiandae ducimus.", "commercialAndIndustrialPurposes": [ { - "uuid": "11f4958d-c464-4612-b2a3-1005713d7caf", + "uuid": "544b055b-5c91-492c-bacb-40109bd90906", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { - "uuid": "f943deb1-b106-4d2f-9ac7-e677f17d827a", - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true - }, - { - "uuid": "55602e79-005b-4b14-9a2e-ebd75faa837f", - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true - }, - { - "uuid": "28a9bf32-809c-4a1b-9943-52d9478d7f14", + "uuid": "28f40f6e-80e4-450f-b94f-de9028af2910", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false - } - ] - }, - { - "uuid": "0ea5087a-2254-45b7-a2f1-8c4ea09cacca", - "siteRegistry": true, - "dateReceived": "2016-05-01", - "dateCompleted": "2016-06-19", - "dateEntered": "2013-12-07", - "dateRegistrar": "2020-09-30", - "dateLocalAuthorityReceived": "2019-02-01", - "summary": "Voluptate et delectus temporibus distinctio nulla fugit est atque.\nMinima aliquid voluptatum quae fuga perferendis optio architecto perspiciatis dolorem.\nOfficiis alias aspernatur nesciunt aspernatur beatae blanditiis.", - "informationUsed": "Eum voluptas debitis fuga delectus praesentium.\nVoluptates cumque beatae fuga nostrum iure delectus praesentium modi.\nExercitationem sapiente sunt in distinctio nostrum molestiae accusantium dolorem doloribus.\nQuas dicta ea ea voluptatibus delectus.", - "pastOrPresentOrders": "Recusandae autem aliquid suscipit culpa necessitatibus delectus.\nExcepturi iusto ipsam vel enim iste ipsam dolorum.", - "commercialAndIndustrialPurposes": [ - { - "uuid": "37dbe60c-e897-42d3-8a00-fd83f30f34a2", - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false }, { - "uuid": "0ada9b39-6e95-40f7-9770-14d39e34d843", - "scheduleReference": "F1*", + "uuid": "640524f6-c140-460d-9f44-f92058b46f7b", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "1f369c93-ab47-4487-8a7c-8c2dc17d7e3e", - "scheduleReference": "F1*", + "uuid": "d3b1fa95-e5df-4869-8e63-f8be12f87e1b", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true } @@ -16687,78 +19164,121 @@ ], "activityLog": [ { - "uuid": "2707c901-222a-432f-b7cf-e3fd68b09dea", - "siteRegistry": true, + "uuid": "99fe5438-3a44-47e7-bdb5-e183eb27fe24", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "OLSON KOLE", - "timestamp": "2017-12-29" + "user": "BARROWS MARCELINO", + "timestamp": "2013-10-21" + }, + { + "uuid": "a4cc6337-cdc7-4092-836a-10ff92d74161", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "BAHRINGER BLAKE", + "timestamp": "2015-04-10" }, { - "uuid": "b2c22156-1bcd-41e5-a361-b960d878912d", + "uuid": "a6338a57-0fed-4983-ab61-0b3788a9aead", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "HODKIEWICZ LUCIUS", - "timestamp": "2018-01-06" + "user": "WEBER MARCELLA", + "timestamp": "2013-11-13" }, { - "uuid": "de32994b-b17f-41e5-a559-683d37df58d5", + "uuid": "2d6cffee-7da9-446a-9847-5d1cc9bd07c4", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "WILLIAMSON PARKER", - "timestamp": "2014-05-12" + "user": "PFEFFER MURIEL", + "timestamp": "2019-01-20" + }, + { + "uuid": "bfafaa4c-d4ce-4ef9-8ed5-a726bea24793", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "KLOCKO GREYSON", + "timestamp": "2016-05-08" + }, + { + "uuid": "2c86afca-7ba4-4d3c-95b6-0d68562a1cef", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "MCCULLOUGH GREGG", + "timestamp": "2014-04-09" + }, + { + "uuid": "0b5b51af-437a-42e5-a4e0-c481ae332b29", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "SATTERFIELD LONDON", + "timestamp": "2014-04-18" + }, + { + "uuid": "39a76e17-b05b-4736-af93-1eb9bbec1048", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "TORPHY JANICK", + "timestamp": "2014-04-15" }, { - "uuid": "67e30e70-3736-43b4-ac17-dcdde14868e6", + "uuid": "7617a66e-f512-460d-a081-cd41a9764c95", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "WILDERMAN PENELOPE", - "timestamp": "2021-03-08" + "user": "PROSACCO CADEN", + "timestamp": "2020-06-09" }, { - "uuid": "d66df943-a05f-4cf6-bae7-0a1dc96fbf15", + "uuid": "5caf1852-244f-461c-ae37-1bee2a2e369d", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "ERDMAN JERAD", - "timestamp": "2016-12-12" + "user": "BERNHARD-CARTWRIGHT EDDIE", + "timestamp": "2017-08-01" } ], "associatedSites": [ { - "uuid": "444c7a30-0210-4bdf-ada9-0e45b87ae1eb", - "dateNoted": "2015-04-03", + "uuid": "5cc0a600-596d-42fb-85cf-7316abef7588", + "dateNoted": "2017-06-17", "notes": "", - "parcelID": "20909", - "siteID": "16044", + "parcelID": "19895", + "siteID": "17404", "siteRegistry": true + }, + { + "uuid": "c11e77b7-5585-4cdf-8f27-44ed6e2c9d22", + "dateNoted": "2015-10-12", + "notes": "", + "parcelID": "20367", + "siteID": "18132", + "siteRegistry": false } ] }, { - "uuid": "0cd605b0-378e-4c9f-a16c-6d330ce28ff4", - "siteID": 18428, - "address": "91293 Skiles Ways", - "latitude": 51.1478, - "longitude": -128.1011, - "lastUpdated": "2018-03-23", - "city": "East Horaceside", - "region": "Vancouver Island/Coast", - "victoriaFile": "26250-20/16748", + "uuid": "0a72c6a5-b8e0-4b54-825f-729089bf6d50", + "siteID": 15488, + "address": "482 Schaden Branch", + "latitude": 56.0655, + "longitude": -132.172, + "lastUpdated": "2017-06-11", + "city": "Kearny", + "region": "Mainland/Southwest", + "victoriaFile": "26250-20/11405", "regionalFile": "N/A", "parcelIDs": [ - 3089122, - 9147817, - 2975598, - 1797193, - 2976210 + 4348033, + 7343710, + 7591534, + 1578774, + 3035111 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "09cb1e7c-afc0-4a4c-a94c-7871c161caba", - "createdAt": "2021-03-11", - "completed": "2017-10-27", - "initiated": "2014-01-13", - "ministryContact": "LEFFLER WILFORD", + "uuid": "0e3ade77-2a6a-40fa-9d65-f18f9d9529f4", + "createdAt": "2020-11-14", + "completed": "2015-05-24", + "initiated": "2022-02-12", + "ministryContact": "BAHRINGER IRMA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -16767,26 +19287,44 @@ ], "notationParticipants": [ { - "uuid": "41b150b2-32b6-48ca-8ebe-35da1892476e", + "uuid": "21e3571e-ba94-4a5c-96d6-241b1effa365", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "65308273-5b40-4abd-a7c4-279002c90f2f", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false }, { - "uuid": "3ebf42fd-1927-4716-b710-6bfdde910c10", + "uuid": "3472b671-2b2c-4483-a6c1-2114947a033d", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "3c27ee0a-13a3-47c9-8494-6ff0489c4ee0", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "d36d47bd-f9db-4e35-af07-8dabd58af730", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", "siteRegistry": true } ], "siteRegistry": true }, { - "uuid": "4a7929ac-798f-4370-b57d-622e2428caeb", - "createdAt": "2021-02-05", - "completed": "2022-08-18", - "initiated": "2019-01-10", - "ministryContact": "POWLOWSKI MARCELLE", + "uuid": "b388377b-39fc-49f7-a4c3-526e7d900641", + "createdAt": "2016-06-10", + "completed": "2015-07-02", + "initiated": "2023-07-13", + "ministryContact": "LOWE-BOGAN LILLIE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -16795,26 +19333,32 @@ ], "notationParticipants": [ { - "uuid": "4b7b342e-34e4-49da-9878-997e98255532", - "name": "SHELL CANADA PRODUCTS", + "uuid": "c936cc6b-bf4b-45fa-a477-0ddca4f37251", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true }, { - "uuid": "c0bfe933-13d1-4a5f-afe0-d30e90a6e0dc", + "uuid": "756f4e0e-2fb8-40fe-9d74-1625c0fd4479", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "30fdec10-6737-4259-8864-c37d077ac1c2", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false } ], "siteRegistry": false }, { - "uuid": "08ecdbab-d52a-4bc1-bb20-d30210a0dd2b", - "createdAt": "2019-08-03", - "completed": "2019-01-27", - "initiated": "2018-11-08", - "ministryContact": "VON REED", + "uuid": "b3f4a170-2c12-4119-8057-dcbb18d41e23", + "createdAt": "2021-09-11", + "completed": "2023-07-30", + "initiated": "2017-06-16", + "ministryContact": "STANTON SHANNA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -16823,67 +19367,56 @@ ], "notationParticipants": [ { - "uuid": "1c59927f-eaae-4736-bcc2-033f4e9b8200", - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "3f9e16e4-878f-496e-a60a-c07053d6c243", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "uuid": "03cdeea5-26fb-45f0-b756-98170722009b", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "33c848bf-a4f3-4b9e-8241-b250977f5347", + "uuid": "90c37beb-711b-4aac-9efd-ccbe0473eb44", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "6bd9c3d4-112d-44dd-b04b-46bfd9a8ce72", + "uuid": "a1e2d2e0-4d4b-4608-9943-7ae549b50654", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "a8af6ff2-f623-4030-bde5-5676dd4e4463", + "uuid": "6e9e8632-3f46-4a23-bbe5-a940af37bdcb", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "9116d730-b07d-498f-bbb4-b2a56294a98c", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true } ], "participants": [ { - "uuid": "112a8eef-f5e7-46d9-81ad-6c81e696156b", - "name": "IPSUM", - "endDate": "2014-11-08", - "startDate": "2019-12-04", + "uuid": "e76e3c46-108d-47d5-94a9-690b100649b7", + "name": "AMET, DOLOR SIT", + "endDate": "2022-12-02", + "startDate": "2018-06-07", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "3ef394ec-e40e-41cf-982c-50c67bf05ee2", + "uuid": "5fdb004b-b170-43d0-b569-cccebb28a93f", "name": "IPSUM", - "endDate": "2015-08-02", - "startDate": "2023-05-06", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": true - }, - { - "uuid": "fb695fdf-98cf-49d4-a224-0eb208ed3ce5", - "name": "SHELL CANADA PRODUCTS", - "endDate": "2018-09-01", - "startDate": "2017-12-30", + "endDate": "2021-12-14", + "startDate": "2014-05-27", "notes": "", "roles": [ "ORGANIZATION" @@ -16891,107 +19424,150 @@ "siteRegistry": true }, { - "uuid": "b7a449b5-0df2-4d8c-ad34-a94e048b6d4a", - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2021-06-14", - "startDate": "2021-02-11", + "uuid": "4640baf0-af04-46f6-8f25-c6a574566b9c", + "name": "IPSUM", + "endDate": "2020-12-02", + "startDate": "2019-08-03", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": false } ], - "suspectLandUses": [ + "documents": [ { - "uuid": "2cb4b39b-fc7e-45a1-b7e2-5f0c0161ce9d", + "uuid": "b873f2bd-ee15-4b2f-a9fd-47b52310b056", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-01-27 (described on Site Profile dated 2014-01-27)", + "documentDate": "2015-03-31", + "receivedDate": "2017-10-15", + "uploadedDate": "2020-01-28", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "0e656439-0405-48e6-bf08-3039db5e5834", + "name": "IPSUM", + "siteRegistry": false, + "role": "AUTHOR" + } + ] + }, + { + "uuid": "ca6a0afd-8174-4648-9abe-da074bf1fb4b", + "siteRegistry": true, + "documentDate": "2021-03-26", + "receivedDate": "2015-01-02", + "uploadedDate": "2017-12-12", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "5d46a1ef-0515-4901-b702-134c59463b58", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "1f9bda0c-7b4b-4a57-94a2-8d788b504fe0", + "name": "IPSUM", + "siteRegistry": true, + "role": "AUTHOR" + } + ] + } + ], + "suspectLandUses": [ + { + "uuid": "83ed951f-1173-4d81-9199-8e7e696a2760", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2023-06-18 (described on Site Profile dated 2023-06-18)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "uuid": "e3d4b36f-5812-44cc-8017-253eaf3ac91a", + "uuid": "3c89a85d-6298-4625-88ed-481fa8225640", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2023-08-10 (described on Site Profile dated 2023-08-10)", + "notes": "INSERTED FOR SITE PROFILE DATED 2016-10-21 (described on Site Profile dated 2016-10-21)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "uuid": "0c25720d-8502-46b8-9705-a916198ebd4b", + "uuid": "e70137d6-1d11-47c7-8fb8-57b69280e1a2", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2020-09-06 (described on Site Profile dated 2020-09-06)", + "notes": "INSERTED FOR SITE PROFILE DATED 2023-07-27 (described on Site Profile dated 2023-07-27)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" - } - ], - "parcelDescriptions": [ + }, { - "uuid": "1f32e4e0-5ea2-4b8d-98f5-b360960a96d9", + "uuid": "bdddedb0-3c0d-4d62-8b1b-a74804f2946d", "siteRegistry": true, - "dateNoted": "2022-05-12", - "parcelID": "17589", - "crownLandUsePIN": "17080", - "crownLandFileNumber": "16568", - "landDescription": "LOT 5 OF LOT 1 BLOCK 3 DISTRICT LOT 5 PLAN 9033" + "notes": "INSERTED FOR SITE PROFILE DATED 2017-05-24 (described on Site Profile dated 2017-05-24)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "uuid": "e10a0e15-9c07-4515-b8fe-dd96f123ca97", - "siteRegistry": false, - "dateNoted": "2023-08-10", - "parcelID": "20190", - "crownLandUsePIN": "19626", - "crownLandFileNumber": "19375", - "landDescription": "LOT 4 OF LOT 3 BLOCK 4 DISTRICT LOT 4 PLAN 9074" - }, + "uuid": "672e806e-fcc7-4ff4-9b71-995b55cf6ff4", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2017-11-16 (described on Site Profile dated 2017-11-16)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + } + ], + "parcelDescriptions": [ { - "uuid": "080b891a-68d1-443e-96dc-e91fdf1542fb", + "uuid": "d0103f8b-8711-4b7c-b3c3-24a9144dd459", "siteRegistry": false, - "dateNoted": "2023-02-25", - "parcelID": "18624", - "crownLandUsePIN": "18831", - "crownLandFileNumber": "20578", - "landDescription": "LOT 2 OF LOT 2 BLOCK 5 DISTRICT LOT 3 PLAN 6768" + "dateNoted": "2023-04-06", + "parcelID": "15674", + "crownLandUsePIN": "15831", + "crownLandFileNumber": "15598", + "landDescription": "LOT 4 OF LOT 1 BLOCK 3 DISTRICT LOT 1 PLAN 8401" }, { - "uuid": "312588ea-7d34-424e-a499-0c46cd6f2399", - "siteRegistry": false, - "dateNoted": "2018-10-01", - "parcelID": "19491", - "crownLandUsePIN": "19937", - "crownLandFileNumber": "20908", - "landDescription": "LOT 3 OF LOT 5 BLOCK 1 DISTRICT LOT 4 PLAN 4567" + "uuid": "dca840d1-e8a1-4690-97af-114abce08ceb", + "siteRegistry": true, + "dateNoted": "2021-05-08", + "parcelID": "18117", + "crownLandUsePIN": "15771", + "crownLandFileNumber": "16428", + "landDescription": "LOT 4 OF LOT 2 BLOCK 3 DISTRICT LOT 5 PLAN 6517" }, { - "uuid": "dd63c1ad-b5e2-4c9f-b973-e6b2aa4fd880", + "uuid": "0bf3b1d8-d0cd-44df-b6f9-434cf24116df", "siteRegistry": true, - "dateNoted": "2019-06-23", - "parcelID": "15977", - "crownLandUsePIN": "17966", - "crownLandFileNumber": "15658", - "landDescription": "LOT 4 OF LOT 3 BLOCK 2 DISTRICT LOT 1 PLAN 7241" + "dateNoted": "2019-06-16", + "parcelID": "16007", + "crownLandUsePIN": "17864", + "crownLandFileNumber": "16770", + "landDescription": "LOT 2 OF LOT 2 BLOCK 3 DISTRICT LOT 3 PLAN 4343" + }, + { + "uuid": "9e138911-142d-4bb6-8dcd-2cb428b5ffc6", + "siteRegistry": false, + "dateNoted": "2018-10-15", + "parcelID": "16256", + "crownLandUsePIN": "19378", + "crownLandFileNumber": "17255", + "landDescription": "LOT 2 OF LOT 2 BLOCK 3 DISTRICT LOT 5 PLAN 5092" } ], "siteDisclosures": [ { - "uuid": "727abebd-a544-4a0f-8732-12c9e0465143", + "uuid": "50f0e3ab-58cd-4d6b-9425-2b1dad7ed20f", "siteRegistry": true, - "dateReceived": "2019-01-11", - "dateCompleted": "2016-11-09", - "dateEntered": "2016-08-26", - "dateRegistrar": "2020-11-07", - "dateLocalAuthorityReceived": "2015-05-21", - "summary": "Ex ut consequatur voluptate dolores rerum aliquid rem.\nIn eum occaecati aperiam voluptatem.\nAd exercitationem deleniti vel delectus libero minima tempora assumenda.", - "informationUsed": "Voluptatum dignissimos suscipit eius quae sit consectetur.\nOdit ea in ad consequuntur.\nIpsam quam explicabo laboriosam voluptate aliquam id minima.", - "pastOrPresentOrders": "Recusandae vero eius quia aspernatur facere ea ipsum blanditiis.\nLaboriosam adipisci mollitia facilis animi repellendus in ipsam optio.", + "dateReceived": "2018-09-07", + "dateCompleted": "2017-07-17", + "dateEntered": "2023-10-15", + "dateRegistrar": "2013-12-01", + "dateLocalAuthorityReceived": "2016-01-11", + "summary": "Facere non facere.\nOptio placeat voluptates quisquam ut rerum perferendis dolores mollitia aliquid.", + "informationUsed": "Nulla aperiam soluta dolore sunt impedit.\nConsectetur optio delectus nesciunt tempore quidem debitis exercitationem nemo.\nQuo repellendus veritatis mollitia porro.\nLaborum impedit rerum ea assumenda enim.\nQuibusdam soluta quisquam labore nam nihil eum modi.", + "pastOrPresentOrders": "Officiis iusto itaque placeat praesentium quos.\nLaboriosam sint at veritatis harum nobis aspernatur sunt ex distinctio.", "commercialAndIndustrialPurposes": [ { - "uuid": "eb0509e3-7049-4321-9aa4-b3d8c07887b6", - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "uuid": "bde65f0d-a32b-4490-8d47-5837686b3b26", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { - "uuid": "ddd8b15f-0d81-4353-acc9-a5e74410918c", + "uuid": "2cca6c15-c008-4d41-a070-e08fdc62d61a", "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true } ] @@ -16999,99 +19575,85 @@ ], "activityLog": [ { - "uuid": "c4979c34-f62c-447d-b091-b47f28c9704c", - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "STIEDEMANN KRAIG", - "timestamp": "2015-10-16" - }, - { - "uuid": "b6bca067-0a44-4a45-82b0-92b0e11c08ff", + "uuid": "4a395880-6c0b-45a8-8f74-296814dbe22e", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "ABERNATHY-FRAMI AMERICA", - "timestamp": "2022-08-16" - }, - { - "uuid": "c7241d04-16a0-4d21-a8bf-a1e391cb417c", - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "SKILES LAVERN", - "timestamp": "2016-07-14" + "user": "RATH ALYCIA", + "timestamp": "2023-06-01" }, { - "uuid": "88170437-98e8-4478-a06a-37e5b890cb0d", - "siteRegistry": true, + "uuid": "5b9cd98f-dd8a-4bb8-b534-80e7cd9fa10f", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "HAYES CATALINA", - "timestamp": "2023-02-11" + "user": "SCHUPPE FURMAN", + "timestamp": "2016-04-07" }, { - "uuid": "a5b2e1f4-b243-4c8c-9e9d-9a06eda9a03d", + "uuid": "26726e38-7082-4e6a-99a3-179204d860ee", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "O'KON SHYANN", - "timestamp": "2019-02-01" + "user": "GOTTLIEB-BOEHM JENNYFER", + "timestamp": "2023-05-26" }, { - "uuid": "41de8b8c-efd1-4737-88da-b3060fbced36", + "uuid": "557c3321-6a45-454d-a64e-b854f42f936c", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "KUPHAL EMILIO", - "timestamp": "2020-10-10" + "user": "REILLY EMIL", + "timestamp": "2014-10-19" }, { - "uuid": "2e0e0e2d-9a53-4628-ba58-28aaed0fa9a3", - "siteRegistry": false, + "uuid": "bfb8f724-9d27-478c-af52-e76e0956765b", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "METZ FEDERICO", - "timestamp": "2017-10-21" + "user": "HOWELL AMANDA", + "timestamp": "2018-09-22" }, { - "uuid": "ce4ba6ef-9468-424f-98ad-364661f8272d", + "uuid": "ed7b4053-fd23-4231-9a18-5f03060246f7", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "STREICH ALVINA", - "timestamp": "2020-05-20" + "user": "KOHLER DELPHIA", + "timestamp": "2020-03-03" } ], "associatedSites": [ { - "uuid": "9819809d-3099-49be-b024-fc6dc240830e", - "dateNoted": "2020-09-11", + "uuid": "7b5b5771-7aa7-4a6d-949c-f6be473e3529", + "dateNoted": "2013-10-24", "notes": "", - "parcelID": "19777", - "siteID": "16323", + "parcelID": "17283", + "siteID": "20718", "siteRegistry": false } ] }, { - "uuid": "a849c407-dccb-4e9f-945b-157c57bd4e50", - "siteID": 16062, - "address": "97839 Quitzon Mall", - "latitude": 50.75, - "longitude": -131.0697, - "lastUpdated": "2019-08-26", - "city": "Lake Niatown", - "region": "Vancouver Island/Coast", - "victoriaFile": "26250-20/4562", + "uuid": "616daac8-741d-41f3-8c65-a3ffaabab03f", + "siteID": 15998, + "address": "839 Pouros Run", + "latitude": 48.5046, + "longitude": -122.8375, + "lastUpdated": "2015-08-21", + "city": "Port Elijahland", + "region": "Kootenay", + "victoriaFile": "26250-20/18446", "regionalFile": "N/A", "parcelIDs": [ - 7806154, - 1592729, - 8178159, - 2154714, - 6042485 + 6254518, + 8494325, + 6596654, + 6505588, + 1211055 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "98bfa619-ffb3-4937-ab11-b2bbce55b9f6", - "createdAt": "2018-05-10", - "completed": "2023-02-25", - "initiated": "2013-12-30", - "ministryContact": "MCKENZIE ELIJAH", + "uuid": "14cc5bac-0b63-408f-93cd-c2312a859ba1", + "createdAt": "2023-06-11", + "completed": "2015-03-11", + "initiated": "2021-06-21", + "ministryContact": "NIENOW JODY", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -17100,13 +19662,31 @@ ], "notationParticipants": [ { - "uuid": "59bdfa53-ffeb-4b0f-902d-b562d85678e0", + "uuid": "fce99bd7-6901-4982-9885-5039a32348a1", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "uuid": "f09d8c38-afb5-4c3b-8ed4-28ad54e5a4a5", "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "8509c69c-affe-4187-801b-bc2b5fbb35ba", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "2661e28f-5a18-4a75-9c4e-540973565884", + "uuid": "61957549-99e4-490d-bb68-797fe686c216", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "7ecf39f7-e009-44b0-b34b-5848e12f247c", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false @@ -17115,11 +19695,45 @@ "siteRegistry": false }, { - "uuid": "73138c09-68fb-41ed-8b94-8fcc304d38db", - "createdAt": "2016-10-15", - "completed": "2021-03-12", - "initiated": "2017-11-20", - "ministryContact": "ERDMAN DEDRIC", + "uuid": "9ce4f66a-7bef-4118-915e-c3b11d9b9bc1", + "createdAt": "2014-03-24", + "completed": "2023-02-10", + "initiated": "2020-01-06", + "ministryContact": "KIRLIN MAYNARD", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "uuid": "8868638c-0e36-4916-b973-d5af61644b06", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "uuid": "cf431028-3307-466b-930f-ad6d109b033b", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "6b3c43dd-fc91-433c-9c31-5a822d517355", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "uuid": "ddee698d-8d12-4dc4-8459-9c36c401c030", + "createdAt": "2020-12-20", + "completed": "2022-11-12", + "initiated": "2021-10-26", + "ministryContact": "ABSHIRE JAIRO", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -17128,44 +19742,72 @@ ], "notationParticipants": [ { - "uuid": "577c0423-6ddc-48cd-9c27-d0ec75047556", + "uuid": "e0021f7d-df47-4b07-81fd-ab5b394ae275", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true }, { - "uuid": "557fd3fb-4e02-4fd6-a77a-16fa79708b62", + "uuid": "5e651d3a-38cc-45cd-8460-aabbb29983c4", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true }, { - "uuid": "c6a80dcd-11a2-4b7b-9daf-4affb72be240", + "uuid": "2b592670-05f3-430a-8c6c-2d78ca6754cb", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "9d9d0675-2055-44e3-a0cb-d9397fb4451a", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true - }, + } + ], + "siteRegistry": true + }, + { + "uuid": "76dada25-087c-42b4-96d7-e07d2c8d3e51", + "createdAt": "2018-08-06", + "completed": "2013-11-12", + "initiated": "2017-09-21", + "ministryContact": "KUNZE ROSA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ { - "uuid": "bbc75913-a2b5-492f-a61b-2c1c05dac50d", + "uuid": "3ae8bca7-1212-48d4-aecb-d64a2e94eb29", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false }, { - "uuid": "8ea79f4b-cf95-4ff5-8757-e187f7964c1f", + "uuid": "7ccd83d9-6986-402c-aa8b-389f0ca69d5d", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "uuid": "d32d4032-094e-433e-8f42-c98f3421d3b7", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "dbbc63e7-93ff-49e8-bc97-c54a911bf984", - "createdAt": "2022-11-29", - "completed": "2017-02-02", - "initiated": "2018-09-28", - "ministryContact": "HOMENICK JENNYFER", + "uuid": "25d98128-9229-49c9-af9b-ffc2e4384044", + "createdAt": "2021-12-30", + "completed": "2018-10-16", + "initiated": "2017-10-22", + "ministryContact": "WEHNER CATHARINE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -17174,254 +19816,345 @@ ], "notationParticipants": [ { - "uuid": "727115a2-e6e7-4342-be10-431f19275407", + "uuid": "707b123e-962a-4756-b085-367058af91ab", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "6e316f13-e04b-4766-b9ba-f10cc69ecade", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "uuid": "e47ae5fc-35eb-451f-b655-c3bae1de9184", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": false }, { - "uuid": "67a9c760-b550-4ba2-8b2d-343c97e826d2", + "uuid": "21655048-504f-4746-b8b5-d4ec61b28ac1", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true + "role": "REQUESTED BY", + "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false } ], "participants": [ { - "uuid": "4ef55782-8860-410e-b03b-5d98c71f44ae", + "uuid": "2b904aaa-f3d9-4e5f-b9d9-ba593d880fc5", "name": "SHELL CANADA PRODUCTS", - "endDate": "2015-03-01", - "startDate": "2015-08-13", + "endDate": "2019-08-22", + "startDate": "2017-08-02", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": true }, { - "uuid": "7a9576b4-231c-4e30-b60e-517eaa427d05", - "name": "SHELL CANADA PRODUCTS", - "endDate": "2022-05-24", - "startDate": "2021-08-31", + "uuid": "de848bf4-45b9-40ff-9ffb-414f74f500c5", + "name": "AMET, DOLOR SIT", + "endDate": "2017-08-12", + "startDate": "2015-12-10", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": false }, { - "uuid": "30ff0a81-ea7d-43d8-a5d9-1e10765e92b7", - "name": "SHELL CANADA PRODUCTS", - "endDate": "2018-12-23", - "startDate": "2016-02-29", + "uuid": "38c65117-af9c-4f99-8fda-bfc1af3adb07", + "name": "IPSUM", + "endDate": "2017-05-17", + "startDate": "2015-05-16", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true + } + ], + "documents": [ + { + "uuid": "a3811450-0ffb-46c2-b364-d33f23a1a7eb", + "siteRegistry": false, + "documentDate": "2023-09-23", + "receivedDate": "2017-09-14", + "uploadedDate": "2020-01-25", + "title": "Summary of Site Conditions, 1537 W 41st Avenue, Vancouver", + "participants": [ + { + "uuid": "f973fe00-c769-44b7-97c0-dd6997ed6e8c", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "76c9f65e-5c31-4d20-9575-81b51ea81dc0", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "9836f2dc-a5a5-4ac3-9bfc-0b0567d80a3c", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": true, + "role": "AUTHOR" + } + ] }, { - "uuid": "d1bac9a7-4e31-4a21-9115-0f5a128aaf1a", - "name": "SHELL CANADA PRODUCTS", - "endDate": "2015-04-22", - "startDate": "2020-08-07", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": true + "uuid": "5fef9511-8e28-48a7-8ab0-61f248d4ea02", + "siteRegistry": true, + "documentDate": "2020-10-29", + "receivedDate": "2021-10-31", + "uploadedDate": "2022-04-22", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "3420ea23-702f-4f7e-9fad-5201efb759e7", + "name": "IPSUM", + "siteRegistry": true, + "role": "AUTHOR" + } + ] }, { - "uuid": "4d00e69c-1560-4625-a894-a6d308cb1345", - "name": "SHELL CANADA PRODUCTS", - "endDate": "2019-12-01", - "startDate": "2017-02-13", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": false + "uuid": "56094cfb-3fb8-4c3c-905b-d09b61205ca8", + "siteRegistry": true, + "documentDate": "2013-12-16", + "receivedDate": "2016-09-02", + "uploadedDate": "2022-08-24", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "0a2452d8-3e70-4e73-a251-3a28a2857b0d", + "name": "AMET, DOLOR SIT", + "siteRegistry": true, + "role": "AUTHOR" + } + ] + }, + { + "uuid": "09ca6147-6e7c-417d-bf8c-8dee3287fce1", + "siteRegistry": false, + "documentDate": "2018-02-08", + "receivedDate": "2021-06-16", + "uploadedDate": "2019-12-28", + "title": "Preliminary Site Investigation, Detailed Site Investigation and Remedial Plan for the Management Area adjacent to the Shell Site at 1503 West 41st Ave", + "participants": [ + { + "uuid": "65199b56-bd7f-4f4a-b3c5-379c61eb2f0d", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": false, + "role": "AUTHOR" + } + ] + }, + { + "uuid": "09b28ed9-a862-4e7a-8e00-ea5d20c4df4a", + "siteRegistry": true, + "documentDate": "2022-12-29", + "receivedDate": "2022-01-02", + "uploadedDate": "2021-10-02", + "title": "Preliminary Site Investigation, Detailed Site Investigation and Remedial Plan for the Management Area adjacent to the Shell Site at 1503 West 41st Ave", + "participants": [ + { + "uuid": "d7ddfda5-80c8-424c-a13e-b5f87f197a3d", + "name": "IPSUM", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "d86f701a-beb4-454a-9835-bedc13a0ec0c", + "name": "IPSUM", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "232dc7be-f34d-43b7-a0e1-ea9f7e068244", + "name": "IPSUM", + "siteRegistry": true, + "role": "AUTHOR" + } + ] } ], "suspectLandUses": [ { - "uuid": "0391d371-9b4a-444b-8d80-e0e66a7062ad", - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-09-22 (described on Site Profile dated 2018-09-22)", + "uuid": "44da2ea0-013b-47d9-9064-70698adbb8be", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2023-03-14 (described on Site Profile dated 2023-03-14)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "uuid": "f1dddea3-badc-4cea-bf1b-f36c939e4994", + "uuid": "fb826d60-78c8-4df8-9c0d-2f49c6bff6a1", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2020-04-09 (described on Site Profile dated 2020-04-09)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "uuid": "79718749-8321-4204-9dd6-17a53780f607", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-09-15 (described on Site Profile dated 2022-09-15)", + "notes": "INSERTED FOR SITE PROFILE DATED 2020-10-26 (described on Site Profile dated 2020-10-26)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "uuid": "ff8e5e55-0323-4cd8-9582-82e5c9eda85f", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2014-01-19 (described on Site Profile dated 2014-01-19)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], "parcelDescriptions": [ { - "uuid": "340a65a5-0f51-4a84-b4b0-5de05b3725ef", + "uuid": "6285d357-7524-4ce2-866b-e0a3db636844", "siteRegistry": true, - "dateNoted": "2018-02-13", - "parcelID": "17590", - "crownLandUsePIN": "20042", - "crownLandFileNumber": "20697", - "landDescription": "LOT 1 OF LOT 5 BLOCK 1 DISTRICT LOT 3 PLAN 7478" + "dateNoted": "2015-11-05", + "parcelID": "16530", + "crownLandUsePIN": "16132", + "crownLandFileNumber": "17808", + "landDescription": "LOT 1 OF LOT 5 BLOCK 2 DISTRICT LOT 3 PLAN 7471" }, { - "uuid": "9895a521-840a-48db-9ebf-1f6a06ae3212", + "uuid": "ba79dbe8-6ba5-493e-955d-53e146f19fd9", "siteRegistry": false, - "dateNoted": "2023-08-03", - "parcelID": "17401", - "crownLandUsePIN": "17172", - "crownLandFileNumber": "20941", - "landDescription": "LOT 4 OF LOT 4 BLOCK 1 DISTRICT LOT 5 PLAN 5996" + "dateNoted": "2022-05-13", + "parcelID": "17814", + "crownLandUsePIN": "17044", + "crownLandFileNumber": "18505", + "landDescription": "LOT 5 OF LOT 4 BLOCK 4 DISTRICT LOT 2 PLAN 9285" } ], "siteDisclosures": [ { - "uuid": "43b948a1-be1d-4851-a509-fda1f242a93d", + "uuid": "7cc4c29e-3dbf-4a15-95a7-0ee9c20c99b9", "siteRegistry": true, - "dateReceived": "2018-11-21", - "dateCompleted": "2017-10-05", - "dateEntered": "2021-02-20", - "dateRegistrar": "2020-10-04", - "dateLocalAuthorityReceived": "2014-01-25", - "summary": "Sapiente molestiae laborum sapiente magnam inventore vel sapiente.\nEnim libero tempora neque facilis fugiat.\nLaboriosam dolorum eveniet facilis accusantium quibusdam.", - "informationUsed": "Sint minima quidem distinctio soluta eaque.\nTenetur impedit molestiae.\nDolorem dolorum tempora ullam ullam doloremque.", - "pastOrPresentOrders": "Voluptate harum neque quasi ducimus quaerat cum impedit ab culpa.\nVel sit nulla illum totam repellendus eaque soluta.", + "dateReceived": "2020-10-05", + "dateCompleted": "2022-10-04", + "dateEntered": "2021-07-01", + "dateRegistrar": "2020-09-20", + "dateLocalAuthorityReceived": "2022-11-01", + "summary": "Asperiores tempore corrupti molestiae eos illum itaque consectetur quaerat.", + "informationUsed": "Totam quis at perferendis.\nEsse numquam quisquam minima beatae magni delectus commodi cupiditate eos.\nMaxime necessitatibus culpa.", + "pastOrPresentOrders": "Veniam molestias repudiandae esse sint molestias laudantium alias consectetur.\nRatione illum assumenda vero deserunt animi asperiores nam.\nAliquam sed temporibus pariatur.", "commercialAndIndustrialPurposes": [ { - "uuid": "78e5f0aa-4377-4045-abb2-701b7a6cfb93", + "uuid": "f9e3082a-8923-4924-985c-5fffd6567193", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, { - "uuid": "dd4f39a8-347b-4dd0-8b87-9e795ffff27b", + "uuid": "aa5950e0-5694-446b-86c1-0638f0e3ce46", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true } ] - }, - { - "uuid": "fca182ed-416a-43b1-890c-2719365f78a4", - "siteRegistry": false, - "dateReceived": "2022-03-19", - "dateCompleted": "2017-10-04", - "dateEntered": "2016-05-05", - "dateRegistrar": "2020-03-05", - "dateLocalAuthorityReceived": "2018-04-12", - "summary": "Laudantium libero nostrum quidem ipsum sequi voluptatem unde.", - "informationUsed": "Quibusdam enim quam cum voluptatem facere ut doloremque cumque commodi.\nMinima provident animi occaecati nobis.\nReiciendis earum quas.", - "pastOrPresentOrders": "Reprehenderit nulla eveniet ducimus enim optio reiciendis.\nNisi quia eaque.", - "commercialAndIndustrialPurposes": [ - { - "uuid": "94541315-c4dc-4238-bca0-c60203b06c61", - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false - }, - { - "uuid": "1d06d5be-7620-4497-895f-4e4813995402", - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false - } - ] } ], "activityLog": [ { - "uuid": "3d2d822a-f020-47fe-9a44-a5797277283e", + "uuid": "6495243d-73b7-4077-8c81-5874b63e8aee", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "CARTWRIGHT VIVIAN", - "timestamp": "2019-03-24" + "user": "WINTHEISER FANNIE", + "timestamp": "2014-04-14" }, { - "uuid": "475ba01b-1599-45dc-b0a7-fe4a50f2dfbf", - "siteRegistry": false, + "uuid": "31d0d2c9-ec5f-4c91-b2c3-05f679add575", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "DURGAN KRISTOPHER", - "timestamp": "2020-12-07" + "user": "BECKER LIZETH", + "timestamp": "2022-06-23" + }, + { + "uuid": "320aeb0a-5aaf-4b30-8ce4-f2a069aae8be", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "BEDNAR AURORE", + "timestamp": "2016-06-06" }, { - "uuid": "8081b53c-eaa2-4357-8790-153d237ab53a", + "uuid": "35645478-3470-434f-a444-18ae8562eb25", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "FRITSCH ALEXANDREA", - "timestamp": "2020-12-03" + "user": "ROSENBAUM CARMEL", + "timestamp": "2018-12-19" }, { - "uuid": "43251dcb-16d9-439d-8eb8-3409b349d811", + "uuid": "d2cdece2-d922-4ea7-80e7-a98a647692a3", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "HUELS LUELLA", - "timestamp": "2020-08-09" + "user": "FRITSCH SETH", + "timestamp": "2023-09-09" }, { - "uuid": "1e8a78de-86de-43c9-8b9b-9daa3437b615", + "uuid": "94570f04-1aab-49ce-9e50-c18504e93765", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "POLLICH-LEDNER ALISHA", - "timestamp": "2014-11-29" + "user": "LABADIE KYLIE", + "timestamp": "2016-09-25" + }, + { + "uuid": "5d984d89-284e-4b6b-bcb0-7bd98096a52e", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "SHIELDS JUSTON", + "timestamp": "2015-11-10" + }, + { + "uuid": "b785592d-5a15-4481-8764-3e909340fdc5", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "CREMIN RILEY", + "timestamp": "2019-06-13" } ], "associatedSites": [ { - "uuid": "adab9d7f-da58-4c6f-82df-e69bfae8d28b", - "dateNoted": "2023-08-21", + "uuid": "d05fbd68-b8c5-4348-86ed-0f57099a9ee0", + "dateNoted": "2022-06-28", "notes": "", - "parcelID": "19568", - "siteID": "18426", + "parcelID": "19802", + "siteID": "20622", "siteRegistry": true }, { - "uuid": "4439f9f7-6224-45ef-921d-da0534ec4e4e", - "dateNoted": "2018-03-07", + "uuid": "66b881d7-46b5-4d81-a3e9-7c4dcfbf94a8", + "dateNoted": "2019-04-07", "notes": "", - "parcelID": "16563", - "siteID": "17327", - "siteRegistry": true + "parcelID": "15634", + "siteID": "20625", + "siteRegistry": false } ] }, { - "uuid": "1e81de72-d0b5-4a39-9867-a54f23bb3ade", - "siteID": 20536, - "address": "516 Ritchie Place", - "latitude": 49.6378, - "longitude": -118.5385, - "lastUpdated": "2014-03-08", - "city": "Alexanestead", + "uuid": "5a46348e-8b98-4c4e-aac3-000ba1099916", + "siteID": 19623, + "address": "71115 Hayes Mountains", + "latitude": 51.0952, + "longitude": -120.2574, + "lastUpdated": "2016-04-05", + "city": "Stoltenbergcester", "region": "Kootenay", - "victoriaFile": "26250-20/3328", + "victoriaFile": "26250-20/3506", "regionalFile": "N/A", "parcelIDs": [ - 8055201, - 3987611, - 1085150, - 9586668, - 6205271 + 8522249, + 1125798, + 2777541, + 1058209, + 1634980 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "e7427543-3d2e-4cd0-8a74-f47830dfeded", - "createdAt": "2016-11-05", - "completed": "2015-04-05", - "initiated": "2022-10-02", - "ministryContact": "WINTHEISER RICHARD", + "uuid": "dd9907ec-f1c8-44bc-8d10-381f28aac7ef", + "createdAt": "2016-03-02", + "completed": "2023-01-23", + "initiated": "2019-06-21", + "ministryContact": "KRAJCIK FREDERIQUE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -17430,38 +20163,32 @@ ], "notationParticipants": [ { - "uuid": "f7f0cc76-e96c-47fa-8976-71536437f219", - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "uuid": "fd93b8c1-118f-40b4-af0b-8ed6a5ec0ea1", + "uuid": "4a94b8c2-85ea-4b27-9795-48d0bddc4c08", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true }, { - "uuid": "b6c8464a-4672-413e-92d6-4313e81aaf90", + "uuid": "00c046bb-4928-4fe6-8c9d-dd1d246be228", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true + "role": "REQUESTED BY", + "siteRegistry": false }, { - "uuid": "af78ca10-3670-44fa-bb00-6ceb5f9d0198", + "uuid": "1966bd5d-ccb8-4d56-add0-9d695a45a56a", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false + "role": "REQUESTED BY", + "siteRegistry": true } ], "siteRegistry": false }, { - "uuid": "690e9f93-3bb2-4bc2-9ba9-04e54d4902e1", - "createdAt": "2016-10-30", - "completed": "2014-03-03", - "initiated": "2016-10-29", - "ministryContact": "WITTING-WITTING CARLEY", + "uuid": "b72fe768-eb93-48e7-999c-22256481fe16", + "createdAt": "2020-01-23", + "completed": "2023-08-26", + "initiated": "2022-05-30", + "ministryContact": "GLEICHNER ANYA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -17470,44 +20197,60 @@ ], "notationParticipants": [ { - "uuid": "0d1bc66c-bf28-4355-8f46-521d13175fbe", - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "8e26a3c8-1963-4adf-802e-dbed90ae433e", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "bf90dc45-16be-4dc9-a5dd-61400eb37190", - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "6d452483-dd23-451e-ab5b-a6956fcfd9ee", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true - }, + "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "uuid": "b659bb2f-9084-4b79-8ba5-63c73bce09b1", + "createdAt": "2018-03-15", + "completed": "2023-01-29", + "initiated": "2014-05-28", + "ministryContact": "TURCOTTE OMARI", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ { - "uuid": "708294de-856a-4582-830e-2b4c50135273", - "name": "SHELL CANADA PRODUCTS", + "uuid": "cbf2c38a-ac35-4e3b-9d81-4adc46672c20", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "0854fdad-4f41-4287-adf2-661edd09cc41", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "uuid": "f069a824-1820-4e30-9fc2-c0abfd301c28", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": true }, { - "uuid": "1d8a4988-4553-460f-a2e9-6558faeb18e6", + "uuid": "8e57ee37-d0de-46a8-b4dd-2311700fb183", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "340c0a32-23cb-4cda-bda8-034f0500b991", - "createdAt": "2023-05-13", - "completed": "2020-04-25", - "initiated": "2014-07-08", - "ministryContact": "CREMIN JACKIE", + "uuid": "899b2f9d-9f49-4fa5-81fe-e419c243e0e7", + "createdAt": "2017-12-26", + "completed": "2022-10-24", + "initiated": "2015-10-22", + "ministryContact": "SCHILLER FLORINE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -17516,371 +20259,380 @@ ], "notationParticipants": [ { - "uuid": "705b515d-32aa-4eff-ae38-66120dacb74b", + "uuid": "5b67dee4-f953-4e88-9ca4-9bc1e551be44", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false }, { - "uuid": "cb3dbd40-dddf-4f25-9e77-57c795a46d54", - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "uuid": "8d07e24a-efbf-4980-a889-b628018cd24d", - "name": "SHELL CANADA PRODUCTS", + "uuid": "42b7f2d8-ed3b-463b-938d-802babdf7d6f", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "83662eb2-37d4-4b9f-9571-667e151fcdda", + "uuid": "b6d76147-7016-4553-9c85-46d78cfd9cc2", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false - }, - { - "uuid": "1b3653f6-211c-4ecc-ba27-f071aa08ff9b", - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false } ], "participants": [ { - "uuid": "bb9e8645-d88e-4199-aaf7-7ac577062f03", - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2015-02-24", - "startDate": "2021-01-14", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": false - }, - { - "uuid": "00076e46-4a6d-4310-8c1f-0939f9d4b8d1", + "uuid": "2099e879-bcfc-49a0-b8e7-4f465af1fb4d", "name": "SHELL CANADA PRODUCTS", - "endDate": "2019-02-05", - "startDate": "2023-07-02", + "endDate": "2020-05-24", + "startDate": "2018-10-22", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": false }, { - "uuid": "e1a65060-76fd-4171-a34c-69562962624f", + "uuid": "4450d6e5-1f32-4554-86c8-fb1a17b1a07d", "name": "IPSUM", - "endDate": "2019-03-15", - "startDate": "2018-12-01", + "endDate": "2014-04-04", + "startDate": "2020-07-18", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": true }, { - "uuid": "1dcb5655-e607-4e8c-8694-d5546f4ae881", - "name": "SHELL CANADA PRODUCTS", - "endDate": "2017-07-18", - "startDate": "2016-09-27", + "uuid": "49eb6e71-b631-4178-b529-44450304f0ae", + "name": "IPSUM", + "endDate": "2015-12-08", + "startDate": "2014-03-16", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": false }, { - "uuid": "32485872-7a33-4117-934b-a64c2c89bb6a", + "uuid": "a523673c-2f8e-466b-9cf7-149fcebd4216", "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2019-12-28", - "startDate": "2021-12-17", + "endDate": "2016-12-11", + "startDate": "2019-11-18", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true } ], - "suspectLandUses": [ + "documents": [ + { + "uuid": "dd423232-0378-4270-9b01-8479f0624b8f", + "siteRegistry": false, + "documentDate": "2015-12-13", + "receivedDate": "2016-10-27", + "uploadedDate": "2022-02-14", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "c985e6f7-a417-4fd1-96c1-b7bca42525f5", + "name": "IPSUM", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "9236413b-5c53-422e-97c2-566ad9f84ce3", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": false, + "role": "AUTHOR" + } + ] + }, { - "uuid": "9080c9c4-3247-4c5b-95fb-bcf7006a7ab6", + "uuid": "335a840c-4594-46be-ac01-591813175707", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-05-03 (described on Site Profile dated 2015-05-03)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "documentDate": "2016-11-13", + "receivedDate": "2020-09-10", + "uploadedDate": "2020-03-12", + "title": "Summary of Site Conditions, 1537 W 41st Avenue, Vancouver", + "participants": [ + { + "uuid": "287939a0-6cf0-4791-8a56-cf5bc938f778", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "fed5269e-eefb-4eed-8bdf-618631e6e32d", + "name": "IPSUM", + "siteRegistry": true, + "role": "AUTHOR" + } + ] }, { - "uuid": "b1065f87-bdce-419c-9e9e-9f2f92325a2c", - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-06-18 (described on Site Profile dated 2015-06-18)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "uuid": "c0b0884d-882d-4f24-8721-64743acf55be", + "siteRegistry": true, + "documentDate": "2020-09-18", + "receivedDate": "2019-06-13", + "uploadedDate": "2017-05-07", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "13854c6f-fc6d-4819-959e-80d35570852a", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "5a268da1-42e1-4b4f-b84c-f0cea055a26c", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": false, + "role": "AUTHOR" + } + ] }, { - "uuid": "bee24c44-138b-46fb-a131-d45720270fe2", - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-08-18 (described on Site Profile dated 2015-08-18)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "uuid": "e74503ce-6a27-4e9f-b714-b29adc4258ec", + "siteRegistry": true, + "documentDate": "2020-04-11", + "receivedDate": "2015-03-20", + "uploadedDate": "2020-03-04", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "ecb7eead-328c-46b3-a0cf-7afd8ad6d3f7", + "name": "IPSUM", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "ce720263-c0de-4888-91c4-7cc69369bd4d", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "3dbce296-48d7-4f2b-8f58-8a45174279d2", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": false, + "role": "AUTHOR" + } + ] }, { - "uuid": "6f61e963-1dad-45c7-b2d7-14103d64f580", + "uuid": "4ad7707c-d37e-4299-8895-801bfbaa8365", + "siteRegistry": false, + "documentDate": "2023-09-22", + "receivedDate": "2014-10-16", + "uploadedDate": "2019-04-03", + "title": "Preliminary Site Investigation, Detailed Site Investigation and Remedial Plan for the Management Area adjacent to the Shell Site at 1503 West 41st Ave", + "participants": [ + { + "uuid": "cf7e86cf-8c20-4eb2-8788-72018fb0457c", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "c224918a-5d31-4a68-b4f4-ca3abebd8fd1", + "name": "AMET, DOLOR SIT", + "siteRegistry": true, + "role": "AUTHOR" + } + ] + } + ], + "suspectLandUses": [ + { + "uuid": "5ddc2de9-c13c-45e1-bce4-28804e7b8ae8", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-04-14 (described on Site Profile dated 2019-04-14)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "notes": "INSERTED FOR SITE PROFILE DATED 2021-07-04 (described on Site Profile dated 2021-07-04)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "uuid": "296b7373-f171-41e0-9f55-755def036477", + "uuid": "57249450-aa7a-40c9-9dd4-e2a90f75f648", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-11-17 (described on Site Profile dated 2016-11-17)", + "notes": "INSERTED FOR SITE PROFILE DATED 2017-10-15 (described on Site Profile dated 2017-10-15)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], "parcelDescriptions": [ { - "uuid": "4634d33f-9921-429e-8482-d0e70894a717", - "siteRegistry": false, - "dateNoted": "2014-11-13", - "parcelID": "20032", - "crownLandUsePIN": "15455", - "crownLandFileNumber": "20239", - "landDescription": "LOT 4 OF LOT 1 BLOCK 1 DISTRICT LOT 2 PLAN 9783" - }, - { - "uuid": "0ca4957a-1ee2-4491-977b-a4e80a2fe4bf", + "uuid": "f340212c-3bc3-47fa-9ffc-55c14b85e208", "siteRegistry": false, - "dateNoted": "2015-02-23", - "parcelID": "20187", - "crownLandUsePIN": "16661", - "crownLandFileNumber": "15871", - "landDescription": "LOT 1 OF LOT 1 BLOCK 3 DISTRICT LOT 3 PLAN 4084" + "dateNoted": "2018-11-18", + "parcelID": "16929", + "crownLandUsePIN": "17437", + "crownLandFileNumber": "19514", + "landDescription": "LOT 1 OF LOT 5 BLOCK 5 DISTRICT LOT 4 PLAN 3544" }, { - "uuid": "b63f73e7-16e9-4bff-89f7-f515e98a5a0e", - "siteRegistry": false, - "dateNoted": "2015-04-30", - "parcelID": "18603", - "crownLandUsePIN": "18763", - "crownLandFileNumber": "20508", - "landDescription": "LOT 5 OF LOT 5 BLOCK 1 DISTRICT LOT 3 PLAN 6248" + "uuid": "9ebf0112-d8be-4b07-b02a-8d5bae6bd6d8", + "siteRegistry": true, + "dateNoted": "2019-04-27", + "parcelID": "17567", + "crownLandUsePIN": "18254", + "crownLandFileNumber": "16767", + "landDescription": "LOT 1 OF LOT 1 BLOCK 2 DISTRICT LOT 2 PLAN 7332" }, { - "uuid": "cc61b21f-705f-4a79-b483-b9aee1be8a07", - "siteRegistry": false, - "dateNoted": "2021-07-19", - "parcelID": "16062", - "crownLandUsePIN": "19770", - "crownLandFileNumber": "15740", - "landDescription": "LOT 2 OF LOT 1 BLOCK 5 DISTRICT LOT 3 PLAN 6448" + "uuid": "19532dd0-5bb1-4fff-ac0c-6e596ca58975", + "siteRegistry": true, + "dateNoted": "2020-03-07", + "parcelID": "16088", + "crownLandUsePIN": "18326", + "crownLandFileNumber": "20965", + "landDescription": "LOT 2 OF LOT 5 BLOCK 3 DISTRICT LOT 1 PLAN 5228" }, { - "uuid": "d3f1f52a-df89-41cc-9b09-8aee93a706f8", + "uuid": "385ea3dd-c68b-4be6-b39a-a5ae2f014f4f", "siteRegistry": false, - "dateNoted": "2014-02-07", - "parcelID": "17650", - "crownLandUsePIN": "18985", - "crownLandFileNumber": "19005", - "landDescription": "LOT 1 OF LOT 3 BLOCK 1 DISTRICT LOT 1 PLAN 4502" + "dateNoted": "2018-09-12", + "parcelID": "15299", + "crownLandUsePIN": "15931", + "crownLandFileNumber": "18381", + "landDescription": "LOT 5 OF LOT 1 BLOCK 2 DISTRICT LOT 2 PLAN 9188" } ], "siteDisclosures": [ { - "uuid": "4bc1315a-f753-42db-baa2-e72f0aa77a5c", + "uuid": "6b04a594-5991-4830-ba8e-c66b7d271374", "siteRegistry": false, - "dateReceived": "2014-07-15", - "dateCompleted": "2019-11-16", - "dateEntered": "2023-09-15", - "dateRegistrar": "2014-04-26", - "dateLocalAuthorityReceived": "2023-06-23", - "summary": "Voluptas inventore nulla fugiat nisi alias.", - "informationUsed": "Maiores nemo excepturi dolore harum dignissimos iure voluptatum.\nIpsam non odio deserunt facere beatae quisquam laborum.\nFuga quo eveniet aliquid tempora nobis harum autem adipisci quo.", - "pastOrPresentOrders": "Beatae quidem nihil voluptatem voluptas.\nCorporis corrupti distinctio cumque.\nIure dignissimos quidem necessitatibus tempore.", + "dateReceived": "2023-02-03", + "dateCompleted": "2023-07-29", + "dateEntered": "2018-05-08", + "dateRegistrar": "2017-01-18", + "dateLocalAuthorityReceived": "2022-02-22", + "summary": "Aut suscipit neque molestias cum eaque.\nFacere ducimus laudantium molestiae cum libero excepturi sed ipsa eius.", + "informationUsed": "Hic nihil alias facilis eveniet perferendis occaecati ea itaque.\nConsectetur delectus corporis neque amet nisi velit quis amet magni.\nEnim quo quia.\nAccusamus asperiores vitae quia culpa.\nDignissimos veniam doloribus illo quas quibusdam minus ducimus.", + "pastOrPresentOrders": "Odio amet corporis minima minima earum mollitia sunt quam repellendus.\nRepudiandae debitis nemo repellendus voluptatum laboriosam dolores dolor quos doloribus.\nMinus eos repudiandae voluptatibus accusantium accusamus illo ipsa commodi exercitationem.", "commercialAndIndustrialPurposes": [ { - "uuid": "c7a69ad1-3b4b-4880-b733-0da0ba1b3198", + "uuid": "d4a812ee-d369-49a6-b2af-8fb1c90e1c3d", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true - }, - { - "uuid": "34685b2b-05f0-481c-b515-4a48a30e4b90", - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false }, { - "uuid": "d1fafea1-8c69-4c03-823b-81cdd3790e09", + "uuid": "9df52827-a27d-4caa-9cbd-3dad1f973e72", "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true - }, - { - "uuid": "180c841f-0098-46e7-93cb-0af116d2652b", - "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true } ] + } + ], + "activityLog": [ + { + "uuid": "d948fa0c-9df2-4128-8945-bc448e432a20", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "MANTE PIERCE", + "timestamp": "2014-10-15" + }, + { + "uuid": "07834dd6-1569-437b-8da2-8c8f656ab9ee", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "RENNER JULIO", + "timestamp": "2017-06-06" }, { - "uuid": "ab61e146-a63a-42c9-b900-c06a63d77614", + "uuid": "d58fad14-e6f5-4dfd-a403-099381ad77d5", "siteRegistry": false, - "dateReceived": "2016-08-27", - "dateCompleted": "2016-02-13", - "dateEntered": "2022-07-29", - "dateRegistrar": "2016-09-14", - "dateLocalAuthorityReceived": "2020-05-24", - "summary": "Et cum cupiditate minus omnis blanditiis in similique.\nIure reiciendis incidunt est dolore ducimus repellat commodi.\nUt cumque ratione deleniti blanditiis.", - "informationUsed": "Voluptatum possimus atque nesciunt.\nNemo quas expedita eveniet accusamus quidem vitae repudiandae cum.\nCumque modi ad numquam eos deserunt animi maiores.", - "pastOrPresentOrders": "Quos eius quibusdam vitae nobis culpa sapiente.\nAutem harum magni blanditiis.\nInventore alias quia qui eos et eum molestiae.", - "commercialAndIndustrialPurposes": [ - { - "uuid": "b04a70af-55c6-4188-a75e-881f61635457", - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true - }, - { - "uuid": "bfd346a9-bcd2-48c5-ae07-950a90d8c6de", - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false - }, - { - "uuid": "a0d968d0-ba59-4743-9176-a0e20a191f3c", - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false - }, - { - "uuid": "ede0bf14-ab65-42a4-8d01-a017065559cb", - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false - } - ] - } - ], - "activityLog": [ - { - "uuid": "9ad9ede6-beb2-4dcf-b7de-3f80dc768343", - "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "HOWE TESS", - "timestamp": "2023-01-17" + "user": "WILLIAMSON DOMINIC", + "timestamp": "2015-01-29" }, { - "uuid": "9d70daa4-a6d9-4ca4-8b21-0612a223addf", - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "LOCKMAN MOLLIE", - "timestamp": "2022-03-29" - }, - { - "uuid": "93345bb5-ce0e-4911-856d-6121506dcb38", - "siteRegistry": false, + "uuid": "2f633dee-2fae-42bc-a947-c42ed1d29afb", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "PURDY ELEONORE", - "timestamp": "2022-11-17" + "user": "RATKE-GERLACH LYNN", + "timestamp": "2021-08-17" }, { - "uuid": "c390864a-ffaf-4383-83f5-fa7ff730c83c", + "uuid": "8be3852c-9b17-4351-adde-8398d9c02b5c", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "PADBERG DANYKA", - "timestamp": "2018-05-29" + "user": "HARTMANN GREGORY", + "timestamp": "2014-01-11" }, { - "uuid": "4fdc676c-ac5f-4530-9e5c-bea5877a8adf", - "siteRegistry": false, + "uuid": "3d913670-9b61-4838-a3dc-be1a40589ff6", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "KLEIN MYRIAM", - "timestamp": "2021-02-18" + "user": "HEIDENREICH JOSEPHINE", + "timestamp": "2015-11-13" }, { - "uuid": "470f7be5-d25c-4f92-beb2-b2e89f4c17a5", + "uuid": "f1f71928-0fbd-4606-a273-7879511ebcbd", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "NICOLAS KARI", - "timestamp": "2016-02-28" + "user": "BARROWS HOSEA", + "timestamp": "2017-01-13" }, { - "uuid": "643f759a-9859-4a4b-b23f-ea9787d6ca40", + "uuid": "ad33e953-5d34-4da0-86bb-fee64debecc5", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "CRONIN GIANNI", - "timestamp": "2023-01-31" + "user": "KIRLIN ALYCE", + "timestamp": "2016-05-17" }, { - "uuid": "9b631a14-1f9e-49ad-8e88-6d5fb918ca24", + "uuid": "cb36741b-e035-4d3e-b9c3-9fb7fcce4f87", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "OLSON KAYLIN", - "timestamp": "2023-05-17" + "user": "PAGAC-CONROY LOY", + "timestamp": "2018-08-13" }, { - "uuid": "75853ae1-a54a-4faa-aea3-27217f77fd7f", - "siteRegistry": false, + "uuid": "bc1347ca-3dbb-48c4-9f96-6110cf98a7ec", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "WILKINSON ALVERA", - "timestamp": "2020-08-23" + "user": "CRONA CELESTINE", + "timestamp": "2022-11-06" } ], "associatedSites": [ { - "uuid": "a77ce27d-bd00-456c-b046-99b28aa74251", - "dateNoted": "2017-12-18", - "notes": "", - "parcelID": "17582", - "siteID": "15573", - "siteRegistry": true - }, - { - "uuid": "4eba853a-956b-4444-8377-b68f3f8c7261", - "dateNoted": "2015-04-23", - "notes": "", - "parcelID": "18935", - "siteID": "15493", - "siteRegistry": true - }, - { - "uuid": "38713cdc-2f05-4228-8e82-e5e7f1959ccc", - "dateNoted": "2014-04-07", + "uuid": "80fbb907-10ba-4419-b3df-cfb5462aae0d", + "dateNoted": "2016-11-28", "notes": "", - "parcelID": "20893", - "siteID": "16470", + "parcelID": "16587", + "siteID": "17101", "siteRegistry": false } ] }, { - "uuid": "8c6f3b99-65ad-499f-8b1c-ad6289dc470e", - "siteID": 16651, - "address": "3431 VonRueden Meadow", - "latitude": 54.8134, - "longitude": -121.9222, - "lastUpdated": "2022-10-19", - "city": "East Laverna", + "uuid": "f6fa080d-a88f-4060-9858-24f56542626a", + "siteID": 19084, + "address": "58360 Homenick Freeway", + "latitude": 50.5962, + "longitude": -130.7912, + "lastUpdated": "2018-10-20", + "city": "Eltamouth", "region": "Thompson-Okanagan", - "victoriaFile": "26250-20/7351", + "victoriaFile": "26250-20/18010", "regionalFile": "N/A", "parcelIDs": [ - 4287217, - 6487545, - 4617304, - 2800722, - 6475167 + 4892780, + 6186171, + 3310615, + 6969082, + 5834315 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "de767df8-b057-45e0-9429-9dbec345fd1d", - "createdAt": "2014-05-31", - "completed": "2017-03-09", - "initiated": "2015-12-07", - "ministryContact": "DICKI DARIANA", + "uuid": "589b6179-eb10-4614-8fc2-c9dfda8d22d6", + "createdAt": "2014-02-02", + "completed": "2019-11-19", + "initiated": "2021-07-30", + "ministryContact": "BEDNAR LIA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -17889,26 +20641,32 @@ ], "notationParticipants": [ { - "uuid": "94f06958-2572-4141-909c-3fc3cf18465c", + "uuid": "7b4fedbf-c032-4140-ba8e-226454a72dd7", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true }, { - "uuid": "d2b96166-f126-4d88-a5c8-63c8ec87114e", - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "b97467a2-9040-4909-b1b5-33755276acaf", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false + }, + { + "uuid": "7ae4c138-1b11-4401-83e3-eff34bcefbba", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false } ], "siteRegistry": false }, { - "uuid": "7464edeb-25e2-4dc1-b523-27618d3353c5", - "createdAt": "2014-08-19", - "completed": "2016-08-16", - "initiated": "2022-07-18", - "ministryContact": "KSHLERIN TERRILL", + "uuid": "1f461b13-31f5-4283-a128-ba9885f494b1", + "createdAt": "2015-07-13", + "completed": "2016-10-19", + "initiated": "2015-04-13", + "ministryContact": "GERLACH KRYSTEL", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -17917,26 +20675,38 @@ ], "notationParticipants": [ { - "uuid": "d527cc82-d334-408f-94a0-278fc3b0ea27", - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "9fa1a495-984a-43ae-bfd8-ff2674e97aec", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false }, { - "uuid": "37d3944f-1707-469a-a486-d980744f2887", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "uuid": "0304b409-3f77-4207-8f46-135b2a8f850c", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "uuid": "cd717d2a-3a2d-48da-ae52-022162f4452a", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": false + }, + { + "uuid": "a32a74d4-25e5-4526-ac53-81c507cd3b89", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true } ], "siteRegistry": false }, { - "uuid": "54d779e7-110c-4a0d-8562-e1f83122f89b", - "createdAt": "2017-05-21", - "completed": "2015-06-13", - "initiated": "2022-04-26", - "ministryContact": "BERGSTROM FREDERICK", + "uuid": "342ddbac-a8f8-4aa1-9f58-f5ac8695c34f", + "createdAt": "2019-01-29", + "completed": "2019-11-21", + "initiated": "2023-01-17", + "ministryContact": "HAUCK FRANCESCA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -17945,33 +20715,27 @@ ], "notationParticipants": [ { - "uuid": "09707847-e58d-4f5a-8398-aa7be8435d40", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "uuid": "d18b57ff-7709-4760-ab48-4f9c310d1108", + "uuid": "56c5f760-d3ba-4307-84c8-f69b16adda43", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "754ad96c-9714-4d7a-acf5-3a9067d9558c", + "uuid": "1018129b-0add-4009-8be7-07285ee61fc0", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false + "role": "SUBMITTED BY", + "siteRegistry": true }, { - "uuid": "f6c5d40a-418e-4d37-905f-6d3a9167d1a9", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "uuid": "8c1da2ec-b6d1-4a0d-b89a-6b4525f5f2c0", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": true }, { - "uuid": "efadf639-5422-4f5b-af84-5f7a655f0e82", + "uuid": "6d6f2d0a-1767-4f8c-9bd3-4e1e74890093", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false } ], @@ -17980,127 +20744,221 @@ ], "participants": [ { - "uuid": "3cf3adbb-fcfe-44e0-8849-c60f8eb62342", - "name": "SHELL CANADA PRODUCTS", - "endDate": "2020-03-05", - "startDate": "2023-08-04", + "uuid": "722414de-d08e-41b8-8c12-63de8bbb72d8", + "name": "AMET, DOLOR SIT", + "endDate": "2019-12-18", + "startDate": "2023-05-23", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "7c9667c4-745d-43ce-aa59-66cc311f75c4", - "name": "AMET, DOLOR SIT", - "endDate": "2019-08-02", - "startDate": "2019-07-29", + "uuid": "2e0f44c3-fbf4-4915-8198-2d2bec27531e", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2022-01-18", + "startDate": "2020-10-24", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": true }, { - "uuid": "8a4e3fdf-16b8-42cd-a55f-6fde9748fff4", - "name": "IPSUM", - "endDate": "2014-12-18", - "startDate": "2014-07-27", + "uuid": "02b1b6a4-3c54-4d1d-9817-a021325372d5", + "name": "AMET, DOLOR SIT", + "endDate": "2016-05-25", + "startDate": "2019-04-08", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true } ], - "suspectLandUses": [ + "documents": [ { - "uuid": "3e10870e-ccab-400f-8f7d-f367b3c8f901", + "uuid": "83d31eb8-edde-4483-bf12-e8feed5a1eaf", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-03-16 (described on Site Profile dated 2018-03-16)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "documentDate": "2017-08-14", + "receivedDate": "2023-02-07", + "uploadedDate": "2019-09-13", + "title": "Preliminary Site Investigation, Detailed Site Investigation and Remedial Plan for the Management Area adjacent to the Shell Site at 1503 West 41st Ave", + "participants": [ + { + "uuid": "f0978069-19af-4f4e-a55e-eb4d4b64bf48", + "name": "IPSUM", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "bdeb957c-1fed-4e8d-a53d-2bf0818869a6", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": true, + "role": "AUTHOR" + } + ] }, { - "uuid": "6289037e-27ca-4d1c-a762-78a0c9e9175d", + "uuid": "d49923e8-627c-432d-a59f-a40701c39fb0", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-11-23 (described on Site Profile dated 2019-11-23)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "documentDate": "2023-03-23", + "receivedDate": "2017-01-03", + "uploadedDate": "2014-11-15", + "title": "Summary of Site Conditions, 1537 W 41st Avenue, Vancouver", + "participants": [ + { + "uuid": "0fabc2fd-23d9-4f3f-9459-972d71302b26", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "0b6efbcd-77f4-42c6-b6c6-9729079a1cd2", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": false, + "role": "AUTHOR" + } + ] }, { - "uuid": "633905a0-81b5-4670-a675-a63b24ef10fa", - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-08-16 (described on Site Profile dated 2017-08-16)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "uuid": "10bf538c-c79c-4aa7-a723-2436e40850b4", + "siteRegistry": false, + "documentDate": "2015-02-13", + "receivedDate": "2014-03-13", + "uploadedDate": "2019-07-15", + "title": "Summary of Site Conditions, 1537 W 41st Avenue, Vancouver", + "participants": [ + { + "uuid": "a4a94bb6-3526-4525-a8ae-fb10897516f6", + "name": "IPSUM", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "98b18930-5ca2-49fe-91da-b14d40734a16", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "0fb3790a-8837-4e9f-88ca-cfa2dae0a04c", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": true, + "role": "AUTHOR" + } + ] } ], - "parcelDescriptions": [ + "suspectLandUses": [ { - "uuid": "4e2e0aad-8626-45a4-bbd1-860b267acec5", - "siteRegistry": true, - "dateNoted": "2014-01-23", - "parcelID": "18421", - "crownLandUsePIN": "16875", - "crownLandFileNumber": "15817", - "landDescription": "LOT 2 OF LOT 5 BLOCK 1 DISTRICT LOT 2 PLAN 3716" + "uuid": "caeb1cbc-7559-4b06-9780-2260d4aa48f5", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2015-03-10 (described on Site Profile dated 2015-03-10)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "uuid": "f099edc2-d55e-44a5-bdec-64ea6dc29653", - "siteRegistry": false, - "dateNoted": "2023-07-06", - "parcelID": "16687", - "crownLandUsePIN": "19910", - "crownLandFileNumber": "18610", - "landDescription": "LOT 1 OF LOT 5 BLOCK 2 DISTRICT LOT 2 PLAN 9553" + "uuid": "1bdd86d4-14b9-4c2d-9f9c-202fe635bc6e", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2016-03-24 (described on Site Profile dated 2016-03-24)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "uuid": "40751748-9c07-4a29-9b7a-c1ff517fff7f", + "uuid": "fbde1cd9-e861-4e80-a13f-c3b71cc79d0b", "siteRegistry": true, - "dateNoted": "2014-03-10", - "parcelID": "20123", - "crownLandUsePIN": "17353", - "crownLandFileNumber": "20350", - "landDescription": "LOT 1 OF LOT 3 BLOCK 2 DISTRICT LOT 5 PLAN 6034" + "notes": "INSERTED FOR SITE PROFILE DATED 2015-05-12 (described on Site Profile dated 2015-05-12)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "uuid": "6499814f-127f-4d18-9c78-0dd6f2ac1852", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2019-06-27 (described on Site Profile dated 2019-06-27)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + } + ], + "parcelDescriptions": [ + { + "uuid": "3adc1019-02b9-45f4-8e5b-ef8744d3205e", + "siteRegistry": false, + "dateNoted": "2023-10-15", + "parcelID": "20865", + "crownLandUsePIN": "16372", + "crownLandFileNumber": "20145", + "landDescription": "LOT 2 OF LOT 2 BLOCK 1 DISTRICT LOT 3 PLAN 6417" }, { - "uuid": "2240403e-1b95-484f-a417-64186e8e3741", + "uuid": "a495ed1b-5a2e-4279-b90d-2ba1d0dfcba8", "siteRegistry": true, - "dateNoted": "2013-10-22", - "parcelID": "17958", - "crownLandUsePIN": "20161", - "crownLandFileNumber": "15517", - "landDescription": "LOT 2 OF LOT 5 BLOCK 3 DISTRICT LOT 2 PLAN 8032" + "dateNoted": "2019-09-16", + "parcelID": "20624", + "crownLandUsePIN": "16895", + "crownLandFileNumber": "17992", + "landDescription": "LOT 3 OF LOT 2 BLOCK 4 DISTRICT LOT 2 PLAN 6972" }, { - "uuid": "22582736-22c1-48c8-ad9b-03502579add4", + "uuid": "39f81f04-b00b-4a6d-b71d-cc85ea54377c", "siteRegistry": true, - "dateNoted": "2020-06-24", - "parcelID": "19696", - "crownLandUsePIN": "18093", - "crownLandFileNumber": "19050", - "landDescription": "LOT 3 OF LOT 2 BLOCK 3 DISTRICT LOT 2 PLAN 9342" + "dateNoted": "2023-05-26", + "parcelID": "15754", + "crownLandUsePIN": "19832", + "crownLandFileNumber": "18064", + "landDescription": "LOT 3 OF LOT 1 BLOCK 2 DISTRICT LOT 1 PLAN 8628" } ], "siteDisclosures": [ { - "uuid": "d60b3b70-bca0-46da-b8c4-a2630689adbd", + "uuid": "63b9fb5c-8949-4b5d-8581-ce45946a3a34", "siteRegistry": true, - "dateReceived": "2022-01-20", - "dateCompleted": "2018-02-14", - "dateEntered": "2015-02-25", - "dateRegistrar": "2015-08-23", - "dateLocalAuthorityReceived": "2014-09-06", - "summary": "Laboriosam placeat alias aut neque voluptatum.\nEa labore fuga nihil.", - "informationUsed": "Qui sequi deleniti ipsum libero iusto molestiae officia exercitationem.\nVoluptas voluptatibus repellendus ea saepe est vero tempore nulla facilis.\nOptio cupiditate porro omnis rem placeat debitis consequatur corrupti ab.\nQuam consequatur tenetur odit.", - "pastOrPresentOrders": "Possimus unde suscipit.\nAd doloribus doloribus dignissimos fugiat.", + "dateReceived": "2020-09-11", + "dateCompleted": "2017-10-09", + "dateEntered": "2018-02-18", + "dateRegistrar": "2016-12-17", + "dateLocalAuthorityReceived": "2014-07-08", + "summary": "Dolorem in beatae exercitationem.\nQuod architecto autem alias quis rerum iure perspiciatis laborum labore.\nOdit est blanditiis exercitationem autem.", + "informationUsed": "Alias quas fuga dignissimos quibusdam quidem earum omnis.\nPerspiciatis id blanditiis recusandae ab esse voluptatem eos.\nPariatur quaerat nam nobis.\nAnimi eius quod quibusdam odit nobis quod.", + "pastOrPresentOrders": "Est saepe enim quas dolore officiis at eveniet.", "commercialAndIndustrialPurposes": [ { - "uuid": "c8e9e5f3-63d6-48e8-98ef-fc7c6907fab8", + "uuid": "7a6dfdc9-92a7-416f-b739-ecf604b106bd", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false }, { - "uuid": "bed9e3ba-94ab-4c92-895a-bef926d6ca8d", + "uuid": "5eb44b4b-6e28-4a76-9846-599fe50456e1", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "uuid": "82973a4f-8180-4b18-9588-4cc44aa3ddec", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + } + ] + }, + { + "uuid": "c5f19f48-7861-4b93-bbc5-f12fed766db1", + "siteRegistry": false, + "dateReceived": "2019-11-27", + "dateCompleted": "2017-12-17", + "dateEntered": "2015-03-02", + "dateRegistrar": "2019-12-03", + "dateLocalAuthorityReceived": "2020-10-11", + "summary": "Illum labore modi architecto.\nQui odio esse ratione distinctio voluptatem repellendus ab molestias nemo.", + "informationUsed": "Possimus numquam nihil maiores voluptas eligendi voluptatum blanditiis.\nNatus nobis molestiae.\nMaxime mollitia vel animi corporis.", + "pastOrPresentOrders": "Dignissimos sit omnis aut quo impedit vel expedita.\nInventore quisquam magni fuga.\nAlias earum autem sed dolorum reiciendis ullam nesciunt.", + "commercialAndIndustrialPurposes": [ + { + "uuid": "355a7b04-6ad3-4b78-a453-31889dd8db2d", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "uuid": "0736db9c-578e-4ed7-971a-5f13cef83187", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true @@ -18110,99 +20968,99 @@ ], "activityLog": [ { - "uuid": "1f4f156b-b221-4e5c-963a-cee2b26a937a", + "uuid": "05fa05d8-73d4-4475-a4d7-f5c196ecaeba", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "GRANT GERARDO", - "timestamp": "2017-08-17" + "user": "RUSSEL ARMANDO", + "timestamp": "2018-09-05" }, { - "uuid": "8c9ff1a0-8733-4997-9862-9812671ff2b4", + "uuid": "b11c1671-ba86-44d5-be77-432e59ef6294", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "WIEGAND ROD", - "timestamp": "2017-07-23" + "user": "GULGOWSKI NORBERT", + "timestamp": "2022-05-20" }, { - "uuid": "8fbe94cb-6c82-417c-9b14-f1f7bb221aba", - "siteRegistry": false, + "uuid": "a6f57702-613f-4b6a-ab03-dd0fd0603733", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "FERRY MACY", - "timestamp": "2017-06-07" + "user": "REICHEL-TORP KENNETH", + "timestamp": "2018-01-30" }, { - "uuid": "d90e59fb-1558-4790-9076-5f9643dfe450", + "uuid": "a75089b2-2efc-444e-b4c6-ee3f6161b541", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "EMMERICH ERICK", - "timestamp": "2015-10-11" + "user": "TERRY-DANIEL CLARK", + "timestamp": "2017-07-04" }, { - "uuid": "8e450b9d-edff-4bc1-a416-34093f23cbc6", - "siteRegistry": true, + "uuid": "6906d5a6-4d25-468c-957a-61c30f9e7ef9", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "TURNER CARLIE", - "timestamp": "2016-02-03" + "user": "SCHULTZ LOUISA", + "timestamp": "2017-07-10" }, { - "uuid": "1bed96f0-5001-41ea-aa9f-1c805a17c1d4", - "siteRegistry": true, + "uuid": "2920f1c4-d3b2-43d1-93e7-128b11bd5351", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "HOEGER CLARK", - "timestamp": "2022-06-14" + "user": "KEELING AYDEN", + "timestamp": "2015-07-25" }, { - "uuid": "462a6163-ae69-4b34-a3ba-3ce4be64ec1f", + "uuid": "747625cd-00c1-4245-b4ea-22070b83104f", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "BLICK ALYSA", - "timestamp": "2023-01-12" + "user": "RENNER ADELIA", + "timestamp": "2020-10-04" }, { - "uuid": "ddf05604-0dd6-44b7-a279-d7a08c18fadd", + "uuid": "09ba11fb-cf6b-47b5-9598-f49115e5c9d6", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "BOGAN ELIZABETH", - "timestamp": "2016-03-16" + "user": "HEGMANN ABEL", + "timestamp": "2021-02-13" } ], "associatedSites": [ { - "uuid": "5174e639-8611-4877-973c-3d5371474bf8", - "dateNoted": "2019-06-20", + "uuid": "7285a7fe-37b6-4162-9f06-7f15c860add9", + "dateNoted": "2020-05-04", "notes": "", - "parcelID": "19745", - "siteID": "15345", + "parcelID": "15507", + "siteID": "20571", "siteRegistry": false } ] }, { - "uuid": "3c33e012-ddc1-46d5-94bd-759f0da165d1", - "siteID": 15525, - "address": "2493 Champlin Pines", - "latitude": 56.8761, - "longitude": -118.2743, - "lastUpdated": "2017-04-26", - "city": "Thurmanhaven", - "region": "Cariboo", - "victoriaFile": "26250-20/17151", + "uuid": "21fc5c16-ec9d-4128-a6a2-059fcddced79", + "siteID": 18407, + "address": "20137 Bode Glens", + "latitude": 51.6012, + "longitude": -123.7152, + "lastUpdated": "2017-07-04", + "city": "New Elmira", + "region": "Thompson-Okanagan", + "victoriaFile": "26250-20/7093", "regionalFile": "N/A", "parcelIDs": [ - 5882746, - 9242129, - 4484420, - 9654312, - 5589343 + 7847177, + 2161498, + 1490681, + 8519472, + 9989491 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "f98f5c44-e361-4a34-962f-3d028709a33a", - "createdAt": "2014-11-06", - "completed": "2017-06-17", - "initiated": "2023-06-14", - "ministryContact": "WALSH GERALDINE", + "uuid": "2531ae54-b3a0-46d1-8b03-774b2781801c", + "createdAt": "2017-01-14", + "completed": "2016-02-03", + "initiated": "2017-12-17", + "ministryContact": "BAUCH MACK", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -18211,44 +21069,26 @@ ], "notationParticipants": [ { - "uuid": "7c2458e1-fd9a-4629-9556-f2574827e65f", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "uuid": "ba3ffb47-a26d-4ad7-9342-d510dd6801d4", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "uuid": "98378f9b-420e-418a-82c3-8ee1b81352d5", - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "uuid": "8c608cd6-df79-44d5-be81-a272dbcf1ae5", + "uuid": "e683fa7a-c453-47b3-89b3-20481055889c", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false }, { - "uuid": "b798b1a2-01ce-434e-97f6-348cf3808940", + "uuid": "a2b0585b-f0fe-495e-a0c0-c59c4d6d750c", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false } ], "siteRegistry": true }, { - "uuid": "268bc799-5188-4076-85c8-78822fee50a3", - "createdAt": "2017-04-02", - "completed": "2019-08-05", - "initiated": "2022-06-03", - "ministryContact": "OKUNEVA COLE", + "uuid": "9f1c38dc-b8c5-4d05-b7f2-7e4d306af595", + "createdAt": "2020-08-13", + "completed": "2023-01-01", + "initiated": "2023-01-07", + "ministryContact": "GOODWIN AUDREANNE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -18257,148 +21097,22 @@ ], "notationParticipants": [ { - "uuid": "2c8f0053-3326-4157-b93f-adb25ec15d92", - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "uuid": "6a3bbb1e-2c2e-49f2-9259-f11f260ab4b0", + "uuid": "292735ee-b090-4267-b6aa-e19ba3a055d3", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "uuid": "445e6965-623b-4438-9b30-3fe84e50d213", - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - } - ], - "siteRegistry": false - }, - { - "uuid": "b2d1913a-ad55-4ee1-9fe5-51b2822615a0", - "createdAt": "2020-03-10", - "completed": "2014-03-21", - "initiated": "2022-03-23", - "ministryContact": "ROBEL JONATHON", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "uuid": "467ec3fc-a71b-4bdd-9a7b-da4ec8a15043", - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "uuid": "a4bd012f-9861-4035-adc5-051faab7e853", - "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "uuid": "dbef2609-a3df-4474-b70a-33033b3c246e", - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "uuid": "22f1c140-0493-419b-9166-d2e1da0629a7", - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - } - ], - "siteRegistry": false - }, - { - "uuid": "f81025a8-d4d6-4545-a7aa-5e6335f75249", - "createdAt": "2014-10-17", - "completed": "2021-08-06", - "initiated": "2022-02-06", - "ministryContact": "FADEL NIKKO", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "uuid": "56ae933f-b190-450a-8a60-7ad858c1c951", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "uuid": "04b28510-4551-4e4b-8ebd-1e081fc88a34", - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "uuid": "c7cc9969-4a77-49f9-a6c9-cf44fa1ab696", - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "uuid": "b91ea381-e3fe-4cd3-b104-d4d47d76dd7b", - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "5cf1a3c9-7c83-4a31-8fdc-105c5726bf1f", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - } - ], - "siteRegistry": false - }, - { - "uuid": "e53e5be4-4a6b-4a0f-a77e-5fe5c655e66a", - "createdAt": "2021-01-13", - "completed": "2016-05-21", - "initiated": "2017-04-20", - "ministryContact": "BOYLE-YOST KYLA", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "uuid": "d6bd938a-8c3d-486f-a4fe-9c1aeba07b7d", + "uuid": "b6438475-5f78-4bff-a0df-e2e443074bc3", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "uuid": "abdc34a2-2e10-4d9a-b760-a9730ba72e44", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", "siteRegistry": true }, { - "uuid": "ec4172fb-9a50-4e05-b093-154c054ff6f3", + "uuid": "63bd0727-1b7d-43b4-afaf-8688a5f71653", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false - }, - { - "uuid": "85ab8656-27a2-426d-bccd-c2ef3756f361", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true } ], "siteRegistry": false @@ -18406,137 +21120,191 @@ ], "participants": [ { - "uuid": "719cfb97-4932-476a-9b9f-6a7abaef9973", - "name": "SHELL CANADA PRODUCTS", - "endDate": "2017-02-14", - "startDate": "2015-04-17", + "uuid": "0784aaf7-77c5-4f90-abfe-44b3efdecac7", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2021-03-23", + "startDate": "2020-10-05", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": false }, { - "uuid": "c5f5ee2f-10e1-41d0-9883-8562e83094e9", - "name": "IPSUM", - "endDate": "2015-09-26", - "startDate": "2017-05-31", + "uuid": "f5655776-6208-495b-8455-6f1c42cb0467", + "name": "AMET, DOLOR SIT", + "endDate": "2016-05-14", + "startDate": "2020-12-14", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": true }, { - "uuid": "5d0d0729-b924-42f9-94ff-4e5901e7762b", + "uuid": "12086d01-a1df-496b-9dbb-6b562eee7c85", "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2021-09-28", - "startDate": "2014-11-23", + "endDate": "2019-07-18", + "startDate": "2018-04-11", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": true - }, - { - "uuid": "260d2ee1-b1d3-4bce-ada2-5a57caca7cbf", - "name": "AMET, DOLOR SIT", - "endDate": "2014-10-15", - "startDate": "2018-09-14", - "notes": "", - "roles": [ - "EMPLOYEE" - ], "siteRegistry": false } ], + "documents": [ + { + "uuid": "d9c11714-2bfc-4cc7-b4ef-1f0d604132e3", + "siteRegistry": false, + "documentDate": "2022-12-06", + "receivedDate": "2019-02-05", + "uploadedDate": "2015-07-10", + "title": "Summary of Site Conditions, 1537 W 41st Avenue, Vancouver", + "participants": [ + { + "uuid": "8f55baff-57a7-423b-8c67-79aa7bf47f29", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "18690744-2947-40a7-b099-652ce12733fa", + "name": "IPSUM", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "3cb4de1c-3bbd-4e8f-a12a-46976e9dee7c", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": false, + "role": "AUTHOR" + } + ] + } + ], "suspectLandUses": [ { - "uuid": "a39dec95-f87d-402e-84e3-79112882b84f", + "uuid": "6a81f636-4cdf-47f9-8a7a-df099cadb494", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-09-30 (described on Site Profile dated 2018-09-30)", + "notes": "INSERTED FOR SITE PROFILE DATED 2014-11-15 (described on Site Profile dated 2014-11-15)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "uuid": "0251dc51-a74a-4a22-87cc-f71ee91af9fd", - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-06-03 (described on Site Profile dated 2022-06-03)", + "uuid": "23a5aaa2-b1c7-4bd5-be0e-8695cefe2198", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2019-07-05 (described on Site Profile dated 2019-07-05)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "uuid": "70466476-939a-41fd-9e43-94727defd9b7", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2020-05-26 (described on Site Profile dated 2020-05-26)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "uuid": "d9b0c5aa-bdd0-4065-96e7-181f191a09e0", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2019-07-31 (described on Site Profile dated 2019-07-31)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "uuid": "920d4c4a-f747-4595-ae36-b196a02860c7", + "uuid": "f75099b9-2078-4c3c-ab58-45ad7a396ef7", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2020-12-17 (described on Site Profile dated 2020-12-17)", + "notes": "INSERTED FOR SITE PROFILE DATED 2015-12-24 (described on Site Profile dated 2015-12-24)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], "parcelDescriptions": [ { - "uuid": "56cfecd3-f626-4e2d-b451-a5dd443f6db6", + "uuid": "3a181a59-82a9-46c2-ad9d-34067f889fb7", "siteRegistry": true, - "dateNoted": "2015-11-23", - "parcelID": "20193", - "crownLandUsePIN": "15936", - "crownLandFileNumber": "16547", - "landDescription": "LOT 1 OF LOT 5 BLOCK 5 DISTRICT LOT 1 PLAN 8091" + "dateNoted": "2018-02-21", + "parcelID": "17346", + "crownLandUsePIN": "17403", + "crownLandFileNumber": "19957", + "landDescription": "LOT 3 OF LOT 4 BLOCK 2 DISTRICT LOT 4 PLAN 7195" }, { - "uuid": "8b998865-5fab-4c1d-9b39-1f34a2dbaa9a", + "uuid": "67dee844-ca4f-41be-86e1-832964a73120", "siteRegistry": true, - "dateNoted": "2019-10-27", - "parcelID": "17261", - "crownLandUsePIN": "16261", - "crownLandFileNumber": "18587", - "landDescription": "LOT 4 OF LOT 2 BLOCK 1 DISTRICT LOT 3 PLAN 3310" - }, - { - "uuid": "5664ca0f-9f08-4cc9-811b-838bd412aaf8", - "siteRegistry": false, - "dateNoted": "2014-07-24", - "parcelID": "17908", - "crownLandUsePIN": "19707", - "crownLandFileNumber": "16315", - "landDescription": "LOT 5 OF LOT 1 BLOCK 3 DISTRICT LOT 2 PLAN 2973" + "dateNoted": "2014-08-28", + "parcelID": "18231", + "crownLandUsePIN": "16936", + "crownLandFileNumber": "18864", + "landDescription": "LOT 4 OF LOT 5 BLOCK 4 DISTRICT LOT 5 PLAN 9612" }, { - "uuid": "cba6db56-476d-4459-b2fa-414fc224b2b6", + "uuid": "b835002a-3a51-4a50-8ade-627c82f74f44", "siteRegistry": true, - "dateNoted": "2015-04-27", - "parcelID": "18054", - "crownLandUsePIN": "20254", - "crownLandFileNumber": "19641", - "landDescription": "LOT 5 OF LOT 4 BLOCK 5 DISTRICT LOT 3 PLAN 8359" + "dateNoted": "2019-06-11", + "parcelID": "20119", + "crownLandUsePIN": "16934", + "crownLandFileNumber": "19325", + "landDescription": "LOT 4 OF LOT 2 BLOCK 5 DISTRICT LOT 3 PLAN 8719" } ], "siteDisclosures": [ { - "uuid": "707dcba6-7add-4005-abb1-155fc779e264", + "uuid": "9e1257d0-0252-4529-9d03-6d77dd342318", "siteRegistry": false, - "dateReceived": "2017-05-03", - "dateCompleted": "2017-07-31", - "dateEntered": "2017-04-24", - "dateRegistrar": "2018-08-30", - "dateLocalAuthorityReceived": "2022-10-23", - "summary": "Dolorem quod minus tempore iure ab.\nVero tenetur illum explicabo nisi reprehenderit atque ea fuga maxime.", - "informationUsed": "Assumenda nemo odit aut mollitia distinctio fugit.\nImpedit facilis praesentium laudantium minus repudiandae sequi nam.\nAd veniam laudantium tempora quas at incidunt.\nDolores nesciunt quibusdam accusamus reiciendis.", - "pastOrPresentOrders": "Amet sunt alias occaecati numquam et similique repudiandae eos magnam.\nSed aut cumque amet laudantium odio facere.\nDicta dignissimos odio blanditiis nobis pariatur.", + "dateReceived": "2023-09-10", + "dateCompleted": "2020-04-16", + "dateEntered": "2021-06-17", + "dateRegistrar": "2017-07-20", + "dateLocalAuthorityReceived": "2022-04-13", + "summary": "Laudantium provident delectus asperiores exercitationem maxime inventore expedita eligendi voluptatum.", + "informationUsed": "Quibusdam veniam necessitatibus odio quos odit sed.\nPorro inventore ipsum deserunt quae vel.\nAliquid laborum porro nesciunt aliquid exercitationem atque ducimus consequatur consectetur.\nDolores quaerat maiores alias dicta cum corrupti illo.\nAmet voluptatem corporis dolor eius sed.", + "pastOrPresentOrders": "Eaque quam ducimus atque aperiam.\nDolorum praesentium temporibus molestias ratione laudantium nam veniam explicabo voluptas.\nIllum perspiciatis sint vero libero.", "commercialAndIndustrialPurposes": [ { - "uuid": "46931b4f-4223-4e6a-8713-bb4c19c380c6", + "uuid": "288fd8a0-b3e0-4802-8103-25311db91dd2", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, { - "uuid": "48235e1d-a9a9-4513-bc7e-5917dfa73aab", + "uuid": "bad8b262-9f9d-48ab-bd65-2640d9b32ea3", "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false }, { - "uuid": "741550b1-ab93-4a4b-a0a0-4eb97636186b", - "scheduleReference": "F2*", + "uuid": "d0979c4b-f51c-4671-a68c-69831d01b44b", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "uuid": "e2e9a244-368a-465d-9b14-7c0ec33ff58d", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + } + ] + }, + { + "uuid": "4f862d1b-0bf5-4ae9-889b-97d2368ac58e", + "siteRegistry": true, + "dateReceived": "2014-09-09", + "dateCompleted": "2016-07-12", + "dateEntered": "2018-03-27", + "dateRegistrar": "2021-11-17", + "dateLocalAuthorityReceived": "2021-01-11", + "summary": "Veniam quae pariatur.\nEsse quae dolorum praesentium tempore mollitia perferendis error ducimus vitae.", + "informationUsed": "Deserunt quae error corporis blanditiis unde adipisci aspernatur.\nIure nulla quas minus.\nCommodi possimus dolorum iure.\nCommodi fugiat perferendis ducimus dolor tempore ea.", + "pastOrPresentOrders": "Quia architecto quia reiciendis eos aliquid dolorum.", + "commercialAndIndustrialPurposes": [ + { + "uuid": "b78f22b3-769c-4200-a6eb-68c658e50992", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "uuid": "ce28ada0-a8e3-4e46-ae74-018ef8bee30e", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true } ] @@ -18544,106 +21312,85 @@ ], "activityLog": [ { - "uuid": "fd9513a1-1553-430c-905a-bbb6ad56b702", + "uuid": "8921e7c7-6c09-4c64-857b-997e58d20b61", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "PARKER TRAVON", - "timestamp": "2016-01-21" + "user": "REMPEL LON", + "timestamp": "2017-12-28" }, { - "uuid": "e499e97a-59af-4c9b-beac-e01706628459", + "uuid": "e0c15d3f-312e-4267-8d82-334584752737", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "RATKE EDGAR", - "timestamp": "2015-07-27" + "user": "DOUGLAS YADIRA", + "timestamp": "2014-04-27" }, { - "uuid": "cf66a5ac-be25-4ca7-be2e-3eab244495dd", + "uuid": "96c6956c-45d6-4760-8029-3a5cbdb8f1bb", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "WITTING PETE", - "timestamp": "2017-06-08" - }, - { - "uuid": "f97005f8-5ea4-4662-b8bc-3c9b7a2f8e63", - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "CRIST ABBIE", - "timestamp": "2019-03-25" + "user": "DAVIS JACKSON", + "timestamp": "2018-05-06" }, { - "uuid": "2577ced5-00df-4caf-b4dd-1d3ff619eb46", + "uuid": "73ee01d2-aa8a-4dee-8183-d1a56e361cb7", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "AUFDERHAR UNIQUE", - "timestamp": "2016-10-24" + "user": "PACOCHA FOREST", + "timestamp": "2016-07-07" }, { - "uuid": "f1d870e8-570f-4d74-a655-29d356274dd4", + "uuid": "4c0d7e47-3f86-452b-9c8f-46d3117cfc91", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "PARISIAN FRITZ", - "timestamp": "2020-03-10" - }, - { - "uuid": "03f04ebc-d688-44cc-ab6e-60b83d450002", - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "YOST VERNER", - "timestamp": "2020-03-16" - }, - { - "uuid": "3a6ee1c2-34ab-4800-90a2-efb5ca73c9b6", - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "RAYNOR CHELSEY", - "timestamp": "2018-11-24" + "user": "SWIFT JALEN", + "timestamp": "2020-09-20" }, { - "uuid": "53a41683-110b-434b-98db-21e2460a3ac2", + "uuid": "0938bbcd-0217-4968-81fd-bba9a043a300", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "SPORER EMILIO", - "timestamp": "2023-02-19" + "user": "HILLL MARGOT", + "timestamp": "2015-01-23" } ], "associatedSites": [ { - "uuid": "7b6b9076-b706-40ca-ba39-0363eb844265", - "dateNoted": "2016-07-13", + "uuid": "f230d77e-d843-4dae-829d-4dc8bab44734", + "dateNoted": "2021-01-29", "notes": "", - "parcelID": "19964", - "siteID": "17062", - "siteRegistry": true + "parcelID": "15690", + "siteID": "20260", + "siteRegistry": false } ] }, { - "uuid": "1d5f4084-7aa4-4402-a60d-8921dcd20480", - "siteID": 17528, - "address": "97750 Lynch Dale", - "latitude": 53.5081, - "longitude": -118.0984, - "lastUpdated": "2016-09-04", - "city": "Zanefort", - "region": "Kootenay", - "victoriaFile": "26250-20/19346", + "uuid": "6d60fcd8-20b1-48e3-a7d7-66134c25c1fd", + "siteID": 19175, + "address": "521 Powlowski Loaf", + "latitude": 56.3974, + "longitude": -123.42, + "lastUpdated": "2016-04-19", + "city": "Lake Quentinberg", + "region": "Cariboo", + "victoriaFile": "26250-20/19126", "regionalFile": "N/A", "parcelIDs": [ - 6390842, - 1638146, - 8596689, - 6340287, - 1467842 + 1020135, + 1064569, + 6473733, + 3542084, + 243536 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "d47b910f-f0c4-4de8-adfa-d0c84ebce478", - "createdAt": "2020-03-05", - "completed": "2018-07-08", - "initiated": "2023-06-25", - "ministryContact": "O'REILLY-STROMAN MERL", + "uuid": "3d66244f-fd7d-473e-b427-78bd984999bb", + "createdAt": "2018-01-03", + "completed": "2021-09-16", + "initiated": "2020-04-07", + "ministryContact": "FAY FREDDIE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -18652,32 +21399,26 @@ ], "notationParticipants": [ { - "uuid": "ec5a8ca8-be90-431b-b78c-d9e257934357", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "uuid": "03b8eb40-32a4-403a-a8c8-357e40284393", + "uuid": "87bc165b-97bc-4249-be3b-ccef706ce65c", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true + "role": "REQUESTED BY", + "siteRegistry": false }, { - "uuid": "5a79e167-9ba1-47c3-81af-a4b739d3bf6b", + "uuid": "2a5cc34f-f509-4e23-959a-71a0a0840c4c", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "97f50f96-165b-462e-8b4c-f48843f9cdc0", - "createdAt": "2023-02-17", - "completed": "2018-03-13", - "initiated": "2016-11-29", - "ministryContact": "HEGMANN WATSON", + "uuid": "2789e768-db54-411d-83d8-34188006d793", + "createdAt": "2016-11-09", + "completed": "2019-05-16", + "initiated": "2015-06-26", + "ministryContact": "SCHMITT DEION", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -18686,399 +21427,343 @@ ], "notationParticipants": [ { - "uuid": "d8e19c52-e59e-4269-abd6-d3acc522b674", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "uuid": "c844ed46-9904-48d2-84d4-406636ac1d6f", - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "2a51763a-705d-42dc-bd0e-f447968ea157", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false }, { - "uuid": "6af86a67-ee93-4cbd-a73b-43399d8056d5", + "uuid": "54450f8c-4d73-46bc-b3f6-8cf3765abb5c", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false - } - ], - "siteRegistry": false - }, - { - "uuid": "d0726931-8e22-4132-9145-3e41547ee6f5", - "createdAt": "2016-01-19", - "completed": "2015-09-04", - "initiated": "2022-05-14", - "ministryContact": "LANGOSH ELIJAH", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "uuid": "42ea6de4-bd04-4fa5-b5ae-e79a9e9005db", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "aa21e331-7b51-4c42-af42-998e60c17c41", + "uuid": "7db14a1f-50ab-4392-83ce-8a4a5628a4f8", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "e05b15e6-7e3e-427d-8fb9-3a493c2da671", + "uuid": "6b2f140a-dfa7-4682-8cbe-3bc2a3f12a14", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false - }, - { - "uuid": "db117be7-5cf6-4552-b94d-d40dd62e8032", - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true } ], "siteRegistry": false + } + ], + "participants": [ + { + "uuid": "46108454-519c-4719-9aa5-9a14e23e79b9", + "name": "IPSUM", + "endDate": "2016-09-22", + "startDate": "2017-08-12", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "uuid": "f8acc5a3-a413-46de-ae7d-eaef6223c2ad", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2013-12-29", + "startDate": "2018-02-01", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false }, { - "uuid": "1a8e79b1-038b-464d-b6a5-a21b8b0b17d2", - "createdAt": "2020-05-30", - "completed": "2021-03-01", - "initiated": "2019-11-19", - "ministryContact": "KUHN GARRY", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" + "uuid": "327563b6-050a-43a8-94c4-4571b19b0e72", + "name": "IPSUM", + "endDate": "2013-10-20", + "startDate": "2020-03-20", + "notes": "", + "roles": [ + "ORGANIZATION" ], - "notationParticipants": [ + "siteRegistry": true + } + ], + "documents": [ + { + "uuid": "66218726-0fef-4097-bc3b-9c2d08f9d62e", + "siteRegistry": false, + "documentDate": "2022-12-23", + "receivedDate": "2018-03-12", + "uploadedDate": "2015-09-27", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ { - "uuid": "5a9eb830-1784-47d0-97a3-2b25f4db4bfa", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true + "uuid": "fbbcd419-b767-40c2-8d48-33265776886b", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": false, + "role": "AUTHOR" }, { - "uuid": "ef7e6a21-0ef4-4950-ba60-89d64a0c6b25", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "uuid": "1331ab25-66fa-4f9a-b727-b75511609232", - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "uuid": "1391406e-a94b-4903-a16c-c7572389c165", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "uuid": "0d7bae80-bf49-4024-bb1a-294ce9ae5282", + "uuid": "d738648a-b54a-4102-8f26-dffbdeee9b36", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - } - ], - "siteRegistry": true - }, - { - "uuid": "ecf0f3fc-e4bc-4a72-9ac0-de5cf31e78a0", - "createdAt": "2015-09-23", - "completed": "2018-07-20", - "initiated": "2020-02-22", - "ministryContact": "HAMILL AFTON", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "uuid": "f7b306d3-9dac-44ce-9aea-6f270e3f7be8", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "uuid": "ee20abf7-2b2b-4244-83ad-89fc5bd346c2", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "uuid": "1f988931-f497-4651-aa02-ed38fcdd4a7f", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true, + "role": "AUTHOR" } - ], - "siteRegistry": false + ] } ], - "participants": [ - { - "uuid": "6fd56778-3500-4a70-a0a5-9a8976c36a49", - "name": "SHELL CANADA PRODUCTS", - "endDate": "2022-08-04", - "startDate": "2022-03-04", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": false - }, + "suspectLandUses": [ { - "uuid": "85c266ad-cb9b-480f-a62f-2f1e9040d3b2", - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2014-11-09", - "startDate": "2023-03-13", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": false + "uuid": "902be633-b2f3-4c75-9f55-cb993a64e18a", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2023-04-25 (described on Site Profile dated 2023-04-25)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "uuid": "f86b4fd0-aeef-429c-ae79-75988e7469f1", - "name": "SHELL CANADA PRODUCTS", - "endDate": "2022-06-29", - "startDate": "2017-02-12", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": true + "uuid": "73cef5a1-23ae-4064-a33d-c68202f0978b", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2020-12-29 (described on Site Profile dated 2020-12-29)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], - "suspectLandUses": [ + "parcelDescriptions": [ { - "uuid": "48f1be4b-fcc2-4a01-9b05-c27fc8bf6cba", + "uuid": "c9585ac6-9ef7-4ff5-8937-5d47440ccac5", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-02-03 (described on Site Profile dated 2015-02-03)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "dateNoted": "2020-03-11", + "parcelID": "15236", + "crownLandUsePIN": "17486", + "crownLandFileNumber": "17723", + "landDescription": "LOT 1 OF LOT 5 BLOCK 3 DISTRICT LOT 2 PLAN 3644" }, { - "uuid": "cf9d3557-8b27-4130-99c1-5a79aa2d93c9", + "uuid": "02fe5e10-a796-41d2-9202-a1636871077d", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-02-09 (described on Site Profile dated 2015-02-09)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "dateNoted": "2016-12-20", + "parcelID": "18749", + "crownLandUsePIN": "20456", + "crownLandFileNumber": "15872", + "landDescription": "LOT 1 OF LOT 2 BLOCK 2 DISTRICT LOT 2 PLAN 8948" }, { - "uuid": "c7f80cba-b8b7-4c95-85da-bde012d80556", - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-08-14 (described on Site Profile dated 2019-08-14)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" - } - ], - "parcelDescriptions": [ - { - "uuid": "21018934-9519-451b-b070-8e67569e8438", + "uuid": "075a3679-15c5-4493-8967-951cb7d4e521", "siteRegistry": true, - "dateNoted": "2016-04-14", - "parcelID": "16956", - "crownLandUsePIN": "16708", - "crownLandFileNumber": "20583", - "landDescription": "LOT 1 OF LOT 1 BLOCK 1 DISTRICT LOT 3 PLAN 6815" + "dateNoted": "2019-05-05", + "parcelID": "16582", + "crownLandUsePIN": "18562", + "crownLandFileNumber": "16992", + "landDescription": "LOT 4 OF LOT 1 BLOCK 1 DISTRICT LOT 5 PLAN 8923" }, { - "uuid": "2428de9e-0dbf-4c40-9220-8192d6c6bf30", - "siteRegistry": false, - "dateNoted": "2019-02-08", - "parcelID": "15282", - "crownLandUsePIN": "20261", - "crownLandFileNumber": "18336", - "landDescription": "LOT 1 OF LOT 5 BLOCK 5 DISTRICT LOT 5 PLAN 4259" + "uuid": "5e48b9bc-a8d3-49af-85d3-e05a470c03ed", + "siteRegistry": true, + "dateNoted": "2021-09-14", + "parcelID": "20516", + "crownLandUsePIN": "20513", + "crownLandFileNumber": "19519", + "landDescription": "LOT 4 OF LOT 4 BLOCK 5 DISTRICT LOT 2 PLAN 7550" }, { - "uuid": "6cd42d17-66fb-41aa-bf00-082301eeebc2", + "uuid": "d3e4ca46-0fcb-4b9d-b255-c3160a550fbe", "siteRegistry": false, - "dateNoted": "2019-02-03", - "parcelID": "20285", - "crownLandUsePIN": "18192", - "crownLandFileNumber": "17967", - "landDescription": "LOT 1 OF LOT 2 BLOCK 5 DISTRICT LOT 4 PLAN 5872" + "dateNoted": "2015-10-30", + "parcelID": "17058", + "crownLandUsePIN": "16605", + "crownLandFileNumber": "15459", + "landDescription": "LOT 1 OF LOT 1 BLOCK 5 DISTRICT LOT 1 PLAN 4085" } ], "siteDisclosures": [ { - "uuid": "be2e8f50-676b-40c0-a467-3aefafef444f", + "uuid": "bec69774-ff08-48a8-9bde-52d940902bcf", "siteRegistry": false, - "dateReceived": "2017-08-26", - "dateCompleted": "2015-12-06", - "dateEntered": "2014-10-18", - "dateRegistrar": "2021-03-02", - "dateLocalAuthorityReceived": "2022-11-04", - "summary": "Quisquam doloribus aliquam veritatis incidunt provident assumenda nostrum quas.", - "informationUsed": "Adipisci expedita saepe aut eius earum id libero illo quas.\nAtque cumque explicabo suscipit maiores fugiat odit fugiat aperiam.\nVoluptatem asperiores quia doloribus distinctio quod perferendis nobis error dolorum.\nNulla reprehenderit eaque nesciunt culpa porro consequatur dignissimos nobis aliquid.\nOccaecati fugit occaecati.", - "pastOrPresentOrders": "Non repellendus harum omnis consequuntur praesentium id perspiciatis voluptatum sapiente.\nNeque impedit vel quasi doloremque quam tempore.", + "dateReceived": "2020-01-21", + "dateCompleted": "2017-12-28", + "dateEntered": "2016-10-04", + "dateRegistrar": "2014-10-01", + "dateLocalAuthorityReceived": "2019-09-13", + "summary": "Eligendi iure non reprehenderit quidem similique provident ullam laboriosam alias.\nNesciunt sequi occaecati.\nAccusantium at deleniti.", + "informationUsed": "Magni tenetur tenetur.\nNam vitae ipsum odio aperiam maiores quidem nesciunt.\nUnde ipsam possimus.\nIllo repellat recusandae adipisci necessitatibus odit.", + "pastOrPresentOrders": "Eaque voluptates eum error autem qui neque labore.\nMolestiae ullam blanditiis aliquam culpa eum voluptatem.\nExercitationem accusantium nulla.", "commercialAndIndustrialPurposes": [ { - "uuid": "92d8e37f-b1b7-437f-9726-dd28d968a7c4", - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false + "uuid": "9828bd10-ca8b-4a8d-879e-3d2061de9d62", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true }, { - "uuid": "77bfb15e-0e91-4953-9524-334697422ea5", + "uuid": "9b29ace6-d434-4b45-9e82-d79470851355", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { - "uuid": "41cfbb57-7538-4086-9e34-4348d8eea929", - "scheduleReference": "F2*", + "uuid": "9a557802-11d1-4ad9-900a-fdab4a3bdbe3", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false }, { - "uuid": "6e1803a5-50de-4974-933a-aa2f72fd704d", + "uuid": "47e7c823-8a02-4f70-a6ba-72393c9fdf82", "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false } ] }, { - "uuid": "4bde4858-290b-4288-b34a-ff02cb530722", - "siteRegistry": false, - "dateReceived": "2019-03-15", - "dateCompleted": "2020-02-28", - "dateEntered": "2023-05-19", - "dateRegistrar": "2014-04-27", - "dateLocalAuthorityReceived": "2023-02-21", - "summary": "Modi aliquid quo.\nVel ut nam officia.\nAlias ducimus facere aspernatur necessitatibus quidem doloremque corrupti rerum.", - "informationUsed": "Vero dignissimos quaerat cupiditate quae repudiandae animi minima minus.\nDolores praesentium odio doloribus earum sequi deleniti architecto.\nQuidem deleniti quos nemo architecto autem numquam beatae asperiores.\nMinima porro quibusdam corrupti porro tempora molestias consectetur consectetur similique.\nNisi nulla amet impedit sequi blanditiis.", - "pastOrPresentOrders": "Tempora corporis quia iure laborum harum voluptate quia sed.", + "uuid": "3b9faae0-8815-45ed-af36-656b78e4c347", + "siteRegistry": true, + "dateReceived": "2015-03-31", + "dateCompleted": "2019-04-07", + "dateEntered": "2020-05-02", + "dateRegistrar": "2023-08-09", + "dateLocalAuthorityReceived": "2016-06-13", + "summary": "Necessitatibus nobis dignissimos quibusdam cupiditate distinctio unde voluptatibus impedit.", + "informationUsed": "Dolore quae dignissimos temporibus officiis nam.\nQui libero occaecati recusandae velit incidunt corrupti.\nOmnis cum incidunt veniam aspernatur.", + "pastOrPresentOrders": "Nostrum mollitia iure eos nihil architecto veniam nesciunt.\nLaboriosam quam quis.\nPossimus atque asperiores deserunt tempora illo error consequatur ex.", "commercialAndIndustrialPurposes": [ { - "uuid": "2ef94280-18cd-4e4f-8a49-b305300ba9be", + "uuid": "a412bff6-5773-424f-a987-31577fc82d28", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { - "uuid": "76a55a13-a1c4-4877-9e24-32f2f549ce52", + "uuid": "ed6a0954-9ec0-462a-93ec-04b76b9b0eb3", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "uuid": "a3f72820-2d98-4cb2-b37e-da5bafe94e1c", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true + "siteRegistry": false } ] } ], "activityLog": [ { - "uuid": "8acae33b-fdb0-4e3b-bffc-fbe2b9073285", - "siteRegistry": true, + "uuid": "a13dc38f-0c2c-4b10-92da-0c3178002728", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "LYNCH SHAUN", - "timestamp": "2021-10-05" + "user": "METZ TAMARA", + "timestamp": "2014-01-04" }, { - "uuid": "d97c2286-eafc-49ed-ac70-b330a5046886", + "uuid": "5fa17c02-06dd-40e2-b1b6-61e537f4c5a6", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "DENESIK NATHAN", - "timestamp": "2017-08-29" + "user": "HAUCK GLEN", + "timestamp": "2015-09-09" }, { - "uuid": "1bc0b2be-c403-416b-8827-7b295b8b8807", + "uuid": "d77a6f93-b5e3-4d60-9b3b-bac7f3a5ef1b", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "MACEJKOVIC MERCEDES", - "timestamp": "2014-02-03" + "user": "TURCOTTE DORIS", + "timestamp": "2014-12-15" }, { - "uuid": "b8122b36-e18b-420a-9e84-244f7f45c169", + "uuid": "051d283a-4e7e-415f-9b92-2238c6690d66", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "BALISTRERI LESSIE", - "timestamp": "2016-03-01" + "user": "WARD KIRA", + "timestamp": "2020-04-23" }, { - "uuid": "3e5ce9c6-2659-4e19-adad-fe8a9832dcd5", + "uuid": "f4d5d452-ccff-488b-8030-7000433a4744", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "GRANT DOMENICK", - "timestamp": "2023-05-06" + "user": "MUELLER ADOLF", + "timestamp": "2021-07-15" }, { - "uuid": "bf24d899-c3c2-45df-a3e1-6de30619f60b", + "uuid": "68d6eee2-665e-47f6-823d-a672e1e75769", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "MERTZ TATUM", - "timestamp": "2023-02-27" + "user": "SWIFT SABRYNA", + "timestamp": "2019-08-06" }, { - "uuid": "66b468d0-cabe-44d8-9c9a-70e17be834f3", - "siteRegistry": false, + "uuid": "173a5dc4-d011-47ab-81a6-21702af46882", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "SCHINNER GENERAL", - "timestamp": "2014-03-27" + "user": "GUTMANN TEVIN", + "timestamp": "2021-07-08" }, { - "uuid": "5a57a728-229b-425c-ac5c-da243ca05ede", - "siteRegistry": true, + "uuid": "77c09cb9-4f80-464e-bcc5-617c7092baaa", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "MOHR ZACHARIAH", - "timestamp": "2017-10-19" + "user": "REICHEL OLE", + "timestamp": "2022-06-30" }, { - "uuid": "a40a15d2-ec04-42c0-b751-7eb19695eb16", + "uuid": "7820d10f-66cd-4ad8-97f2-804f89251586", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "SENGER SEDRICK", - "timestamp": "2021-12-01" + "user": "RODRIGUEZ KRYSTEL", + "timestamp": "2020-08-13" } ], "associatedSites": [ { - "uuid": "5ba67a69-27aa-4097-830f-fd417ae2b607", - "dateNoted": "2018-11-29", + "uuid": "0f721ab7-b011-4e58-b096-c341c5c133ab", + "dateNoted": "2014-11-30", "notes": "", - "parcelID": "18890", - "siteID": "20429", + "parcelID": "16790", + "siteID": "16137", + "siteRegistry": true + }, + { + "uuid": "b4efe327-0b60-4183-8236-b46677ee329c", + "dateNoted": "2022-01-30", + "notes": "", + "parcelID": "18113", + "siteID": "20343", "siteRegistry": true + }, + { + "uuid": "5999eabd-e395-407b-94c7-eef0bb571286", + "dateNoted": "2019-01-02", + "notes": "", + "parcelID": "16895", + "siteID": "18674", + "siteRegistry": false } ] }, { - "uuid": "d8dee980-c101-4f70-a421-325bc6982a63", - "siteID": 19716, - "address": "39156 Bruen Mount", - "latitude": 50.9702, - "longitude": -121.1627, - "lastUpdated": "2014-05-28", - "city": "Bodeport", - "region": "Cariboo", - "victoriaFile": "26250-20/987", + "uuid": "d98c3c89-8164-4fa9-be2e-cc3f7f43d811", + "siteID": 20095, + "address": "5517 Mitchell Extension", + "latitude": 52.1113, + "longitude": -129.9932, + "lastUpdated": "2018-05-21", + "city": "South Bonnie", + "region": "Thompson-Okanagan", + "victoriaFile": "26250-20/14429", "regionalFile": "N/A", "parcelIDs": [ - 9828848, - 2874504, - 1360662, - 7479421, - 9000149 + 4751228, + 208914, + 4986211, + 5540432, + 7852264 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "234207c9-6b09-49e6-854e-40d371122b00", - "createdAt": "2018-06-23", - "completed": "2018-06-27", - "initiated": "2022-06-22", - "ministryContact": "GOLDNER CLOVIS", + "uuid": "0b6e3736-91d5-4bc8-bc92-c330e64ff8c9", + "createdAt": "2016-10-14", + "completed": "2021-01-03", + "initiated": "2018-12-26", + "ministryContact": "HILLL ELODY", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -19087,26 +21772,26 @@ ], "notationParticipants": [ { - "uuid": "2c7d91d8-45bc-42fe-9cda-35011ab8680d", - "name": "SHELL CANADA PRODUCTS", + "uuid": "e4281db0-9d07-47ec-98f2-df9af76d79fa", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "5a21ba23-0e5d-4d39-960b-a4c71ca32f4c", + "uuid": "3177c782-9eef-4da9-8178-764ba4988ae9", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "0c3425cc-e7c1-4550-9ccd-991ef5658fef", - "createdAt": "2014-02-10", - "completed": "2018-05-16", - "initiated": "2020-07-14", - "ministryContact": "KEELING MARGARETT", + "uuid": "3792aae4-cabc-4e10-9352-2431882a5165", + "createdAt": "2014-12-31", + "completed": "2021-10-26", + "initiated": "2014-11-12", + "ministryContact": "MURRAY GENESIS", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -19115,38 +21800,38 @@ ], "notationParticipants": [ { - "uuid": "34e9aa75-4554-48e6-b840-6a2076284bc7", + "uuid": "4fb37d50-14c3-44e8-b840-a1ee00c8ba57", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "32375b32-2778-478e-8ccb-3d308a7cf2cb", + "uuid": "cc790197-7d83-497a-8773-02466ce8767c", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "73a790cb-a9c9-451c-9ec2-bfca9dcb290d", - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "d35bda96-665f-4fb9-b6ef-b480f08b34e4", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true }, { - "uuid": "29ef5808-5c7a-421c-b36f-cd3dc2fb190d", - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "uuid": "20b5c2ec-c854-4b09-a5cc-9fbcae3c5736", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", "siteRegistry": true } ], "siteRegistry": false }, { - "uuid": "20a39fde-5aa9-4cb3-8f00-b2095245345c", - "createdAt": "2021-11-20", - "completed": "2022-10-31", - "initiated": "2016-04-24", - "ministryContact": "MANN GLENNIE", + "uuid": "81d1842d-989f-4cc3-8a62-29ba1c430f61", + "createdAt": "2016-08-25", + "completed": "2014-10-27", + "initiated": "2020-05-02", + "ministryContact": "POUROS HERMAN", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -19155,26 +21840,26 @@ ], "notationParticipants": [ { - "uuid": "a0646e09-fa46-45cb-8cc7-8556a29733d3", + "uuid": "b63e136d-812e-4e5d-bcae-c09e15aefe5d", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "32c61746-02cf-4341-afd6-c39ec23a7ff0", + "uuid": "7b12c29e-e198-4049-8055-aaa8fa6579ea", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": true } ], "siteRegistry": false }, { - "uuid": "1eba9932-85f9-4faa-a52d-b551b5922ea2", - "createdAt": "2021-09-15", - "completed": "2016-10-14", - "initiated": "2019-12-21", - "ministryContact": "HUEL JALON", + "uuid": "a81e3815-d3a3-4186-a18e-d413c4f90fa8", + "createdAt": "2019-07-21", + "completed": "2015-08-28", + "initiated": "2015-04-24", + "ministryContact": "MCGLYNN FLORENCE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -19183,22 +21868,62 @@ ], "notationParticipants": [ { - "uuid": "ef380b0b-cfbf-4153-a28d-13d4fa434854", + "uuid": "70eb618a-4bc6-4817-aaed-55dce02f2bb7", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true }, { - "uuid": "12d94cec-1d37-4d05-9584-882ea4226139", + "uuid": "9b352646-280f-4b49-813d-e5b513aa3bd0", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "6234cf4d-30f1-44a7-9d2c-df7346324bcd", - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "3ea5678c-5501-41d7-b2a3-6c802cfe4772", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "uuid": "88634d26-5bbc-41fc-9356-790623339d2d", + "createdAt": "2017-05-06", + "completed": "2017-05-05", + "initiated": "2015-02-27", + "ministryContact": "WEST URIAH", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "uuid": "c6a5e50b-619f-4a3c-9616-d9d6d1060205", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true + }, + { + "uuid": "3255dca3-77ad-41f6-9031-26da3e571eb6", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "e864d6f9-ef63-48b9-87c2-6f937d569e95", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "26ef3d27-2215-48f9-9168-e4b318916c35", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false } ], "siteRegistry": false @@ -19206,180 +21931,177 @@ ], "participants": [ { - "uuid": "9f734772-b9d9-475a-9f67-3d0208a7c7c7", - "name": "SHELL CANADA PRODUCTS", - "endDate": "2019-04-28", - "startDate": "2015-04-05", + "uuid": "6c99e604-87cc-494f-b8b9-f91a58c9681d", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2019-06-24", + "startDate": "2014-09-29", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "6de6d1b4-caab-406f-ab60-22efffe85363", - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2020-09-19", - "startDate": "2022-01-26", + "uuid": "e8ffac14-84f4-4467-bce4-08f36bf652ca", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2015-11-14", + "startDate": "2020-09-08", "notes": "", "roles": [ "EMPLOYEE" ], "siteRegistry": false - }, + } + ], + "documents": [ { - "uuid": "047106c9-859c-4e97-bda4-d72fb85973c5", - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2017-02-18", - "startDate": "2022-06-17", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": true + "uuid": "885902a8-286f-49c4-bf7a-eb52da44d359", + "siteRegistry": true, + "documentDate": "2020-11-27", + "receivedDate": "2022-02-16", + "uploadedDate": "2016-02-25", + "title": "Preliminary Site Investigation, Detailed Site Investigation and Remedial Plan for the Management Area adjacent to the Shell Site at 1503 West 41st Ave", + "participants": [ + { + "uuid": "46495e24-8bdd-4052-8d84-743dcd9f202f", + "name": "IPSUM", + "siteRegistry": false, + "role": "AUTHOR" + } + ] }, { - "uuid": "093b25a1-e334-4689-bf91-6791b9ad1b29", - "name": "IPSUM", - "endDate": "2020-01-22", - "startDate": "2022-02-21", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": true + "uuid": "ffcc6e03-ce52-41c7-8443-96e26f3bf803", + "siteRegistry": false, + "documentDate": "2023-05-30", + "receivedDate": "2021-03-06", + "uploadedDate": "2022-10-01", + "title": "Summary of Site Conditions, 1537 W 41st Avenue, Vancouver", + "participants": [ + { + "uuid": "7c709c61-46a5-46af-ae2a-a305126183ab", + "name": "AMET, DOLOR SIT", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "20402c3f-13ae-44de-8542-a680dbd24b50", + "name": "IPSUM", + "siteRegistry": true, + "role": "AUTHOR" + } + ] } ], "suspectLandUses": [ { - "uuid": "4114c6ee-401b-4b3d-bf47-fea2626b3945", - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2020-11-26 (described on Site Profile dated 2020-11-26)", + "uuid": "14643e02-2aeb-4c80-bd12-c51a2e09805b", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2021-02-04 (described on Site Profile dated 2021-02-04)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "uuid": "3cb02b90-8d39-4388-b259-570f5fc3851c", - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-07-08 (described on Site Profile dated 2014-07-08)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "uuid": "c3611d30-a720-44fa-a930-afa9f1b66c09", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2017-08-27 (described on Site Profile dated 2017-08-27)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "uuid": "4adebc4f-82de-4adb-bdb9-858f231a4089", - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-02-27 (described on Site Profile dated 2017-02-27)", + "uuid": "67904695-f0b9-4c5f-b20f-784b37c29f37", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2016-12-13 (described on Site Profile dated 2016-12-13)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "uuid": "487a8798-079c-44ce-a2cb-f009fab250e0", + "uuid": "00149759-c8c1-45bc-a051-5c72fc61456b", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-02-29 (described on Site Profile dated 2016-02-29)", + "notes": "INSERTED FOR SITE PROFILE DATED 2018-11-09 (described on Site Profile dated 2018-11-09)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], "parcelDescriptions": [ { - "uuid": "4feb73b5-b2d2-4b18-980a-ec8226224336", + "uuid": "7376a807-cce0-4f47-8a3e-92b95a2658b2", "siteRegistry": false, - "dateNoted": "2015-11-15", - "parcelID": "16110", - "crownLandUsePIN": "17554", - "crownLandFileNumber": "19486", - "landDescription": "LOT 5 OF LOT 3 BLOCK 2 DISTRICT LOT 1 PLAN 9660" - }, - { - "uuid": "9adf0cdb-a57d-4a4a-9ad2-5864f8e901dd", - "siteRegistry": true, - "dateNoted": "2014-09-06", - "parcelID": "19373", - "crownLandUsePIN": "19899", - "crownLandFileNumber": "20969", - "landDescription": "LOT 5 OF LOT 4 BLOCK 4 DISTRICT LOT 1 PLAN 7203" + "dateNoted": "2016-07-04", + "parcelID": "16422", + "crownLandUsePIN": "19625", + "crownLandFileNumber": "20311", + "landDescription": "LOT 5 OF LOT 4 BLOCK 3 DISTRICT LOT 4 PLAN 7704" }, { - "uuid": "5ee15000-e8b1-4fab-ab4a-4630d6e5a293", + "uuid": "b00669d6-b24f-4e0c-9bde-209d7b856dad", "siteRegistry": true, - "dateNoted": "2018-12-02", - "parcelID": "19499", - "crownLandUsePIN": "15325", - "crownLandFileNumber": "20116", - "landDescription": "LOT 3 OF LOT 2 BLOCK 1 DISTRICT LOT 3 PLAN 6146" + "dateNoted": "2021-02-01", + "parcelID": "20493", + "crownLandUsePIN": "16303", + "crownLandFileNumber": "20938", + "landDescription": "LOT 5 OF LOT 2 BLOCK 1 DISTRICT LOT 2 PLAN 4280" }, { - "uuid": "e119fc65-b784-4a64-a7ca-cf06da6a7056", + "uuid": "f6b127fc-bc9a-47e6-81c6-eda94c58c646", "siteRegistry": false, - "dateNoted": "2023-06-09", - "parcelID": "18219", - "crownLandUsePIN": "18719", - "crownLandFileNumber": "15246", - "landDescription": "LOT 1 OF LOT 5 BLOCK 2 DISTRICT LOT 3 PLAN 4465" + "dateNoted": "2015-07-22", + "parcelID": "20553", + "crownLandUsePIN": "20623", + "crownLandFileNumber": "20990", + "landDescription": "LOT 5 OF LOT 2 BLOCK 2 DISTRICT LOT 1 PLAN 4324" } ], "siteDisclosures": [ { - "uuid": "069fe525-3bd9-473a-a1ab-55b38a9863c9", + "uuid": "b752fa0c-310a-438f-82e5-bccf48280805", "siteRegistry": true, - "dateReceived": "2023-03-23", - "dateCompleted": "2013-10-29", - "dateEntered": "2020-09-23", - "dateRegistrar": "2020-10-13", - "dateLocalAuthorityReceived": "2015-10-12", - "summary": "Esse non autem temporibus quos.\nCumque sit animi.", - "informationUsed": "Quo beatae debitis.\nCorrupti iure autem est quaerat aliquam nobis.\nImpedit eveniet officiis beatae optio.", - "pastOrPresentOrders": "Reprehenderit libero placeat dolores molestiae.\nEarum nostrum qui repellendus quasi voluptates quibusdam labore et.\nFugit maxime sapiente officia sequi pariatur debitis doloribus.", + "dateReceived": "2021-02-05", + "dateCompleted": "2023-08-20", + "dateEntered": "2018-05-07", + "dateRegistrar": "2020-10-27", + "dateLocalAuthorityReceived": "2020-07-17", + "summary": "Sequi quaerat eaque laborum.", + "informationUsed": "Animi debitis eos sint non sed facilis minus itaque deserunt.\nModi occaecati itaque optio explicabo quisquam suscipit nulla labore culpa.\nOmnis quaerat ut.\nFuga perspiciatis autem iure earum officiis tempore.", + "pastOrPresentOrders": "Deserunt velit voluptatibus vel.", "commercialAndIndustrialPurposes": [ { - "uuid": "ddff557b-8de0-4e32-93a2-2ca0fbb1653d", - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "uuid": "687f43c2-e121-49b7-9ae6-9516f9a6bc29", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { - "uuid": "706ffb4b-364d-4d9a-9b46-c22845ff42cc", + "uuid": "556f6139-9ef8-47fc-82fc-c69b390db9b2", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true - }, - { - "uuid": "86a15648-c725-43b0-b40c-b142f1a0ca0d", - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false } ] }, { - "uuid": "c4cdf0bd-8d46-4d90-9f30-84c4865fd6a2", - "siteRegistry": false, - "dateReceived": "2016-05-18", - "dateCompleted": "2014-10-07", - "dateEntered": "2015-09-28", - "dateRegistrar": "2021-11-27", - "dateLocalAuthorityReceived": "2016-10-19", - "summary": "Officiis blanditiis velit repellendus perferendis earum.\nItaque commodi delectus quis officiis blanditiis.", - "informationUsed": "Ratione dicta fugiat perspiciatis nostrum illum corporis fuga.\nIpsam eos porro molestiae reiciendis animi suscipit.\nExpedita blanditiis eum nostrum quibusdam magnam nemo libero veritatis quae.\nDoloribus nemo enim culpa voluptatem.\nLaboriosam voluptas quaerat vero.", - "pastOrPresentOrders": "Eum quibusdam aliquam quo nam nam accusamus.\nEarum et similique reprehenderit provident quidem fugiat.", + "uuid": "be2dec45-5595-4a57-b7ee-c29be7060036", + "siteRegistry": true, + "dateReceived": "2022-02-08", + "dateCompleted": "2016-12-21", + "dateEntered": "2016-11-07", + "dateRegistrar": "2019-08-17", + "dateLocalAuthorityReceived": "2017-05-20", + "summary": "Ipsum explicabo omnis eius ut amet numquam quos.\nNemo et modi alias consectetur nisi libero similique error.", + "informationUsed": "Consequuntur repellendus consequuntur.\nRerum sequi rem molestiae.\nMaxime velit ratione magnam ab.", + "pastOrPresentOrders": "Eum est voluptatem veniam.\nIpsa voluptate nulla non harum odit accusantium natus occaecati.\nIn repellendus ipsum aut excepturi.", "commercialAndIndustrialPurposes": [ { - "uuid": "9baff3af-3569-46f9-b6f4-c19d50d9c93b", - "scheduleReference": "F1*", + "uuid": "a6f55f14-0b2f-4577-84b0-ce0d79b753dc", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { - "uuid": "25e14491-3a86-406f-a9c8-53b540a2bda0", - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false - }, - { - "uuid": "fcdc8ce0-ef2e-4764-a38d-a0bf8e5f9f4f", + "uuid": "1e39b824-c929-4919-b3a4-928667f70ffc", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "b569953f-fbec-4520-ba8f-c35360b3ba64", - "scheduleReference": "F2*", + "uuid": "adff04f9-ef40-4c0e-86aa-4174f95a4e61", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true } @@ -19388,92 +22110,121 @@ ], "activityLog": [ { - "uuid": "10ed62ac-b250-4959-ba8b-68d12547b7d7", + "uuid": "59f0c328-c864-4f26-9913-7103503c3596", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "MCCLURE COLUMBUS", - "timestamp": "2018-05-25" + "user": "KUHLMAN GONZALO", + "timestamp": "2020-10-17" + }, + { + "uuid": "c5567fb9-5148-464a-a45c-ca3c35d83183", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "WILLMS PHILIP", + "timestamp": "2015-12-17" }, { - "uuid": "d2062a25-22be-4732-8384-aa1a2e6fd1f2", + "uuid": "2e9af3d2-14e4-4c1e-ab0c-927a575184d5", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "GORCZANY ISADORE", - "timestamp": "2014-04-22" + "user": "MOSCISKI KAYLI", + "timestamp": "2018-05-02" }, { - "uuid": "34c474a6-e60e-45a0-a719-181a49206fef", + "uuid": "c20cb3c7-7236-4188-9593-8b4f465ad42f", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "STIEDEMANN BRANDT", - "timestamp": "2018-01-12" + "user": "GRANT ROSALYN", + "timestamp": "2021-04-05" + }, + { + "uuid": "4e298c8c-d5ea-4999-8db4-d6a8fd805576", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "O'CONNELL JOHNATHAN", + "timestamp": "2016-12-18" }, { - "uuid": "3041654c-d644-40e5-ba8f-13460217f8e4", + "uuid": "b611aa3e-ad57-4bb4-a759-7c1ac677e962", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "THIEL ALVERA", - "timestamp": "2022-09-12" + "user": "ONDRICKA DONNA", + "timestamp": "2019-10-13" }, { - "uuid": "e5092877-c590-4cda-9124-65aaee8a118c", + "uuid": "b69261d8-3900-4f87-8ff4-2b1fc716011d", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "LARSON DAMEON", - "timestamp": "2019-01-13" + "user": "HACKETT ARCHIBALD", + "timestamp": "2015-03-15" }, { - "uuid": "190707e5-139c-4441-add1-e36f7c84f8bb", + "uuid": "286a02ca-1165-417e-8c51-e8e2bd821bb8", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "GRADY ADONIS", - "timestamp": "2021-05-30" + "user": "DICKENS-ABSHIRE UNA", + "timestamp": "2020-11-02" + }, + { + "uuid": "9376fc84-551d-4f9a-97ac-f52813bbed31", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "CARTER-SIMONIS ELLA", + "timestamp": "2019-03-04" }, { - "uuid": "6eb70dec-ee29-4977-9af7-b02c1645868a", + "uuid": "c2617cb6-eda1-45b0-9356-661aa0898f2d", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "CASSIN JONAS", - "timestamp": "2022-03-28" + "user": "NIENOW WINSTON", + "timestamp": "2023-01-06" } ], "associatedSites": [ { - "uuid": "098a8ed6-6634-4c53-8bc2-d7e54f715cb2", - "dateNoted": "2015-02-06", + "uuid": "6e1fe099-14fc-47a8-bc50-7dc9797f81fa", + "dateNoted": "2023-04-23", "notes": "", - "parcelID": "19829", - "siteID": "19481", - "siteRegistry": true + "parcelID": "19538", + "siteID": "20744", + "siteRegistry": false + }, + { + "uuid": "e9987774-3af9-4da9-8155-bc408db77e8b", + "dateNoted": "2014-05-10", + "notes": "", + "parcelID": "18342", + "siteID": "20010", + "siteRegistry": false } ] }, { - "uuid": "53e31d07-54f6-4096-b84c-0743c208017d", - "siteID": 18395, - "address": "802 Deckow Islands", - "latitude": 49.9203, - "longitude": -123.5499, - "lastUpdated": "2020-11-30", - "city": "Hudsonmouth", - "region": "Thompson-Okanagan", - "victoriaFile": "26250-20/8310", + "uuid": "e73fed47-9116-4c63-9cd5-6a7a07c0fd8c", + "siteID": 15499, + "address": "863 Murray Meadow", + "latitude": 56.4681, + "longitude": -122.5021, + "lastUpdated": "2015-07-26", + "city": "West Chelsie", + "region": " North Coast", + "victoriaFile": "26250-20/10069", "regionalFile": "N/A", "parcelIDs": [ - 940665, - 2895900, - 3926952, - 5177751, - 7965400 + 8539717, + 4442022, + 6466906, + 2982339, + 8193716 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "5736d59f-8037-4d08-b673-a40a753f16a6", - "createdAt": "2021-05-19", - "completed": "2021-08-30", - "initiated": "2015-09-25", - "ministryContact": "PAUCEK MAUREEN", + "uuid": "90381a31-d8d4-4c9f-8e82-9d9d33d5740a", + "createdAt": "2023-01-16", + "completed": "2019-01-20", + "initiated": "2021-02-22", + "ministryContact": "SIPES DARIEN", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -19482,72 +22233,32 @@ ], "notationParticipants": [ { - "uuid": "288ed172-475c-475a-9688-24a46d7bdebe", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "uuid": "86c8301c-6c4b-4a1d-8f15-c1d02a0c7949", + "uuid": "10ff9420-a9ec-4e20-9dda-0daa430ddafc", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true - } - ], - "siteRegistry": true - }, - { - "uuid": "a8286a1b-ee7a-402b-b691-c35688360acf", - "createdAt": "2022-10-07", - "completed": "2018-01-24", - "initiated": "2016-01-12", - "ministryContact": "KEEBLER JAIDEN", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ + }, { - "uuid": "d4b38de4-844c-46e5-b164-5696422e3842", + "uuid": "36dbc940-bb17-414a-b7c0-92b59b5d18b4", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "d8f91491-5190-46c5-bd32-bd2aba3790a7", + "uuid": "786f491b-fdfe-45d4-832c-4185df2f3b48", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true - }, - { - "uuid": "89fe7753-b725-4dee-9c23-0006b5c6a19b", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "uuid": "72ec9d30-5df9-46ec-9f2e-8a5634f87c7b", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "uuid": "fb3cb0f7-d69e-41d1-b0a3-c1dd1eb0b2c3", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false } ], "siteRegistry": false }, { - "uuid": "56452a42-3224-4b09-80c3-f55e6bcf5049", - "createdAt": "2016-10-26", - "completed": "2022-01-15", - "initiated": "2022-03-02", - "ministryContact": "DARE DEJON", + "uuid": "5d72d036-0e91-4850-bae4-ba293444db63", + "createdAt": "2017-02-11", + "completed": "2021-09-23", + "initiated": "2013-10-26", + "ministryContact": "SCHMELER GRACIELA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -19556,372 +22267,345 @@ ], "notationParticipants": [ { - "uuid": "feefba0a-edf1-429f-a4d5-7477574565c3", - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "c79245f2-c921-435a-9478-8a97783715dd", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "uuid": "0a725750-c521-4174-8b48-d84cb8bad4cc", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "uuid": "075a4b6c-d6f1-4ab6-8501-1331cdf9b9c7", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - } - ], - "siteRegistry": true - }, - { - "uuid": "62261ded-8ab4-4c88-9f51-ef7d0faca553", - "createdAt": "2018-10-14", - "completed": "2018-10-25", - "initiated": "2019-10-10", - "ministryContact": "PROHASKA COLTEN", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "uuid": "13d2c644-3379-4133-8212-e22ecd5b1aa0", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "def1266b-248a-418e-a76e-27efb70b92ad", + "uuid": "944dee4a-fb83-4d74-b86b-58959bfecb91", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "586d1c93-e675-48b8-9215-a8e62c2bac48", - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "uuid": "3b85d34a-0075-41a2-8842-4a76bee2c443", + "uuid": "d399393e-ada7-4053-aa0a-3199b5d8d417", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - } - ], - "siteRegistry": false - }, - { - "uuid": "8af5339b-7f6c-4666-8419-26b45c7b4bd9", - "createdAt": "2017-10-08", - "completed": "2016-01-13", - "initiated": "2023-08-20", - "ministryContact": "LEANNON MOLLIE", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "uuid": "9a8eb41a-06bf-4986-a681-2d9b12f734cc", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "uuid": "fc3be6aa-54ab-4dd2-b802-d9c164fef6b8", - "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false }, { - "uuid": "8fe17001-8b74-408a-9777-8ce2993deca5", + "uuid": "145acf5e-d649-4226-b031-00768323077c", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false }, { - "uuid": "48a7393a-8c82-4771-a4a9-61675828920a", + "uuid": "2272a6bc-fe2b-4bdd-a4b1-b33018c46a0e", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true } ], "participants": [ { - "uuid": "9b134ac8-c8ce-4034-8d7d-58fcd4d2ab77", - "name": "IPSUM", - "endDate": "2015-12-30", - "startDate": "2015-12-04", + "uuid": "2c46aab0-d33f-4c58-bcaf-3877d7bd28c2", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2018-02-08", + "startDate": "2021-01-03", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": true }, { - "uuid": "52ce0dd8-acba-4203-8cdd-2d110af9b8d0", - "name": "SHELL CANADA PRODUCTS", - "endDate": "2019-08-04", - "startDate": "2017-03-05", + "uuid": "1847d7e0-0c6c-4abd-a345-eee89beb7fa9", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2014-07-07", + "startDate": "2020-11-03", "notes": "", "roles": [ "ORGANIZATION" ], "siteRegistry": true + }, + { + "uuid": "7a83b759-3354-4cb4-9de5-57f8fb50738c", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2023-07-11", + "startDate": "2017-12-26", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false } ], - "suspectLandUses": [ + "documents": [ + { + "uuid": "bee14086-b4ca-4500-91cf-b499672e65f0", + "siteRegistry": true, + "documentDate": "2020-04-25", + "receivedDate": "2018-11-03", + "uploadedDate": "2017-10-21", + "title": "Preliminary Site Investigation, Detailed Site Investigation and Remedial Plan for the Management Area adjacent to the Shell Site at 1503 West 41st Ave", + "participants": [ + { + "uuid": "442cf0c2-b907-495e-8923-7c67224c58ef", + "name": "IPSUM", + "siteRegistry": true, + "role": "AUTHOR" + } + ] + }, + { + "uuid": "862b267b-edd4-4f44-96c7-b23018a58f5b", + "siteRegistry": true, + "documentDate": "2020-07-18", + "receivedDate": "2014-05-17", + "uploadedDate": "2022-05-15", + "title": "Summary of Site Conditions, 1537 W 41st Avenue, Vancouver", + "participants": [ + { + "uuid": "b09b4516-31d4-4f87-a1e0-9022e25e1e37", + "name": "IPSUM", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "0318f9cc-f9d3-48fc-888f-7b6c0bc5d0e9", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "eec0e7ce-c105-40a6-bbc5-f29520dbf6fe", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": false, + "role": "AUTHOR" + } + ] + }, { - "uuid": "779d2fb5-466f-4f6e-b6b2-b80af2cda2f1", + "uuid": "8ea8ddf8-9562-45dd-a647-4cccb71c84b5", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-11-05 (described on Site Profile dated 2019-11-05)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "documentDate": "2017-01-25", + "receivedDate": "2014-05-31", + "uploadedDate": "2019-08-25", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "d94e0733-e687-4839-a6e1-855cc33cd78a", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": false, + "role": "AUTHOR" + } + ] }, { - "uuid": "fd8e2f70-fb07-450e-8ecd-780d1b44a2ab", + "uuid": "2113933a-c483-4ca2-b691-56191ca5afa5", + "siteRegistry": false, + "documentDate": "2022-11-27", + "receivedDate": "2023-01-06", + "uploadedDate": "2017-12-16", + "title": "Preliminary Site Investigation, Detailed Site Investigation and Remedial Plan for the Management Area adjacent to the Shell Site at 1503 West 41st Ave", + "participants": [ + { + "uuid": "4a7d5403-3f10-42e4-ade5-ceb748876ac1", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "5d25653c-73b0-4e44-b429-4dc82f39066a", + "name": "IPSUM", + "siteRegistry": false, + "role": "AUTHOR" + } + ] + } + ], + "suspectLandUses": [ + { + "uuid": "0522fd80-bc3a-45ea-8856-f4cb9cf254ec", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-03-24 (described on Site Profile dated 2018-03-24)", + "notes": "INSERTED FOR SITE PROFILE DATED 2023-07-10 (described on Site Profile dated 2023-07-10)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "uuid": "a525a789-5db0-47c4-802b-9b562e861d4a", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2014-05-10 (described on Site Profile dated 2014-05-10)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "uuid": "4c9c4265-e863-4ff6-8d0e-f2e9df9df194", - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-12-17 (described on Site Profile dated 2017-12-17)", + "uuid": "f5f49f7a-7cb6-41ca-8591-0f72518c5544", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2019-06-04 (described on Site Profile dated 2019-06-04)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "uuid": "5a382535-3bb5-4411-8df8-937a3cb5dd65", + "uuid": "4041bec5-9097-46e1-914b-43b1579920f3", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-05-11 (described on Site Profile dated 2016-05-11)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "notes": "INSERTED FOR SITE PROFILE DATED 2019-06-04 (described on Site Profile dated 2019-06-04)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], "parcelDescriptions": [ { - "uuid": "faa7ec3f-47d3-45bf-9109-65ea5a898be4", - "siteRegistry": true, - "dateNoted": "2019-03-05", - "parcelID": "19142", - "crownLandUsePIN": "19129", - "crownLandFileNumber": "16013", - "landDescription": "LOT 2 OF LOT 4 BLOCK 1 DISTRICT LOT 4 PLAN 6687" - }, - { - "uuid": "9a8d7be9-3c1e-4f66-bae0-59e52b8b2b13", + "uuid": "33df2278-2be2-47bd-9298-3125884ed74f", "siteRegistry": false, - "dateNoted": "2019-06-08", - "parcelID": "17967", - "crownLandUsePIN": "19769", - "crownLandFileNumber": "16204", - "landDescription": "LOT 2 OF LOT 4 BLOCK 4 DISTRICT LOT 1 PLAN 5758" + "dateNoted": "2022-08-13", + "parcelID": "15978", + "crownLandUsePIN": "18826", + "crownLandFileNumber": "15628", + "landDescription": "LOT 4 OF LOT 1 BLOCK 3 DISTRICT LOT 3 PLAN 3829" }, { - "uuid": "3ade9020-38da-48cc-968a-3c6086d9e428", - "siteRegistry": false, - "dateNoted": "2014-03-30", - "parcelID": "16580", - "crownLandUsePIN": "18892", - "crownLandFileNumber": "17857", - "landDescription": "LOT 5 OF LOT 4 BLOCK 3 DISTRICT LOT 5 PLAN 5800" + "uuid": "26b404da-cd83-49c4-acc8-52dce5088ace", + "siteRegistry": true, + "dateNoted": "2021-06-07", + "parcelID": "18326", + "crownLandUsePIN": "15860", + "crownLandFileNumber": "15320", + "landDescription": "LOT 3 OF LOT 3 BLOCK 5 DISTRICT LOT 2 PLAN 7130" }, { - "uuid": "2a52c4b2-48f5-469f-afea-9720e9651c4c", - "siteRegistry": false, - "dateNoted": "2014-12-19", - "parcelID": "18583", - "crownLandUsePIN": "15333", - "crownLandFileNumber": "16595", - "landDescription": "LOT 5 OF LOT 5 BLOCK 1 DISTRICT LOT 3 PLAN 3532" + "uuid": "65f29ff6-9265-4def-b127-72b75216feb6", + "siteRegistry": true, + "dateNoted": "2021-04-13", + "parcelID": "18202", + "crownLandUsePIN": "19017", + "crownLandFileNumber": "15623", + "landDescription": "LOT 2 OF LOT 5 BLOCK 3 DISTRICT LOT 2 PLAN 7159" } ], "siteDisclosures": [ { - "uuid": "198413b8-e857-4502-a53d-74fdd106ef4d", + "uuid": "8f4740ca-aa97-4c09-a416-6e0457bdd19f", "siteRegistry": true, - "dateReceived": "2018-03-26", - "dateCompleted": "2018-11-21", - "dateEntered": "2016-10-07", - "dateRegistrar": "2020-01-30", - "dateLocalAuthorityReceived": "2015-01-28", - "summary": "Reprehenderit doloremque nobis officia.", - "informationUsed": "Eos possimus accusamus excepturi commodi alias voluptate at non eius.\nAutem beatae quasi exercitationem tempore quasi sint corporis temporibus quibusdam.\nIpsum quae consequatur id maiores provident quis perspiciatis perferendis.\nEnim repellendus sunt numquam occaecati enim.\nVoluptas quos quasi omnis quasi aliquid sit assumenda enim.", - "pastOrPresentOrders": "Praesentium sequi dolorum modi dolor.\nLibero sint vel iure provident ex.\nAt nesciunt deserunt.", + "dateReceived": "2021-01-10", + "dateCompleted": "2020-06-10", + "dateEntered": "2015-06-25", + "dateRegistrar": "2021-12-04", + "dateLocalAuthorityReceived": "2015-12-20", + "summary": "Laborum nam officia nisi consectetur temporibus placeat dolor officiis.", + "informationUsed": "Laboriosam vel quo illum.\nTempore blanditiis sit voluptates.\nCupiditate impedit placeat corrupti esse nobis distinctio sed.\nVel molestiae veritatis vel aspernatur.\nNatus deleniti autem officia facere iste dolorum labore.", + "pastOrPresentOrders": "Saepe veniam nisi.\nIllum rem neque eius.", "commercialAndIndustrialPurposes": [ { - "uuid": "39bb2720-b809-4b8c-a3b5-8218193e85e5", - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false - }, - { - "uuid": "e05adb88-e789-4e2e-874c-f32fe1e88336", + "uuid": "b9dfc083-b31f-4c07-88e1-5048d793774e", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { - "uuid": "4770c5ba-1a45-43ab-8509-19fb3c24e036", - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true - }, - { - "uuid": "a77e8fe5-01aa-4db2-abb2-ad43f367d287", + "uuid": "de9fed00-61a4-40f6-9b25-b3931c891c29", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true } ] - }, - { - "uuid": "97b03ef7-b86c-42e3-a020-1432e5781ed3", - "siteRegistry": false, - "dateReceived": "2016-02-26", - "dateCompleted": "2023-02-08", - "dateEntered": "2019-11-07", - "dateRegistrar": "2016-12-24", - "dateLocalAuthorityReceived": "2021-04-25", - "summary": "Quis ex quibusdam accusamus ex facere.\nTenetur modi fugit soluta illum nulla earum perspiciatis dicta enim.", - "informationUsed": "Nesciunt eaque aliquid totam assumenda at doloremque.\nEveniet corrupti voluptatum expedita ut modi.\nEaque beatae dolor ullam quibusdam ex a blanditiis.", - "pastOrPresentOrders": "Ut ipsa tempore officiis soluta soluta nobis.", - "commercialAndIndustrialPurposes": [ - { - "uuid": "abb32ff2-f0f0-4665-bb4f-9cfdcfe356a8", - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true - }, - { - "uuid": "e6aef90b-889d-48a1-b49c-c541dbc980bf", - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true - } - ] } ], "activityLog": [ { - "uuid": "b186ef57-2d4a-4028-b498-be4d8d828c4c", - "siteRegistry": false, + "uuid": "99f10677-9380-4f01-b3e0-06ac47f21b59", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "SWIFT-DIBBERT BRYANA", - "timestamp": "2018-06-08" + "user": "ROBEL SANTINO", + "timestamp": "2023-09-07" }, { - "uuid": "5b44ccaf-8ea0-45dc-a2bf-6872bbfd00a9", + "uuid": "f12a6fa0-d98d-43ba-a95b-6b3c90b01eda", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "KOSS-GLEICHNER JOSEFA", - "timestamp": "2015-08-31" + "user": "ABSHIRE FRIEDA", + "timestamp": "2017-12-27" }, { - "uuid": "ce772a8f-d4b7-46aa-ac6c-87382610482f", - "siteRegistry": true, + "uuid": "9118cd2d-9580-4fb8-b341-4bd0c835b7bc", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "RAU BRANNON", - "timestamp": "2022-11-24" + "user": "HOWE KEITH", + "timestamp": "2020-01-30" }, { - "uuid": "0cad316b-1ccb-4e93-a812-8373ac1549ff", + "uuid": "f098f85e-fc28-4c79-a907-2bcf1176f4db", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "NIENOW HUMBERTO", - "timestamp": "2021-05-27" - }, - { - "uuid": "f8d7f6b4-d105-4617-a811-754fe23d51b9", - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "KOCH ANTONIETTA", - "timestamp": "2021-04-15" + "user": "ABERNATHY TRYCIA", + "timestamp": "2022-09-19" }, { - "uuid": "35392e61-6366-45e7-b0d3-ccfe55ebb0f3", + "uuid": "3673b030-57b5-4728-9b6f-4d9704d9ffb6", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "EFFERTZ CLAIRE", - "timestamp": "2021-02-06" + "user": "HAAG LEORA", + "timestamp": "2021-05-23" }, { - "uuid": "350a6232-ce5d-425d-a2d1-055c9601094f", + "uuid": "a3cbeab8-a938-40d7-abbe-10c76f03172e", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "DACH LACY", - "timestamp": "2017-08-21" + "user": "LEFFLER MARIA", + "timestamp": "2015-07-23" }, { - "uuid": "d91a78f3-345f-451d-904e-c250c7c9a531", - "siteRegistry": true, + "uuid": "74a98d14-da44-458a-ae71-2e81ad738a4d", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "KASSULKE BENTON", - "timestamp": "2018-12-04" + "user": "VEUM VICTORIA", + "timestamp": "2017-11-23" } ], "associatedSites": [ { - "uuid": "4eae5ab2-d1e0-4243-b686-75c3a76577a3", - "dateNoted": "2014-11-24", + "uuid": "86cf4eaa-2c9e-4156-ae1d-5d2d7bcd1963", + "dateNoted": "2020-06-02", "notes": "", - "parcelID": "15696", - "siteID": "17528", - "siteRegistry": false + "parcelID": "20312", + "siteID": "19202", + "siteRegistry": true }, { - "uuid": "f1275d35-f683-4958-9363-597e33e4e879", - "dateNoted": "2020-01-16", + "uuid": "b036f7f8-653e-4393-8b3f-0dc2bf419004", + "dateNoted": "2019-01-07", "notes": "", - "parcelID": "20546", - "siteID": "16202", - "siteRegistry": false + "parcelID": "16034", + "siteID": "20744", + "siteRegistry": true }, { - "uuid": "6e72f00f-8f45-437c-aad9-e7b27bd33aa4", - "dateNoted": "2021-06-03", + "uuid": "2b6d58c7-cf92-43d9-8f3d-73c8cb52cec0", + "dateNoted": "2015-11-12", "notes": "", - "parcelID": "15469", - "siteID": "18428", - "siteRegistry": false + "parcelID": "19935", + "siteID": "17757", + "siteRegistry": true } ] }, { - "uuid": "17c72677-ef8e-4837-9af2-e265ec1a713f", - "siteID": 19884, - "address": "3615 Kozey Mall", - "latitude": 49.8384, - "longitude": -123.8233, - "lastUpdated": "2019-01-11", - "city": "South Rylanport", - "region": "Vancouver Island/Coast", - "victoriaFile": "26250-20/16173", + "uuid": "c9d1e903-4470-4dd2-bf23-8afa478c97f5", + "siteID": 19141, + "address": "186 Terry Stream", + "latitude": 55.3041, + "longitude": -132.3301, + "lastUpdated": "2014-10-24", + "city": "Ontario", + "region": "Mainland/Southwest", + "victoriaFile": "26250-20/11238", "regionalFile": "N/A", "parcelIDs": [ - 718861, - 2634258, - 7872742, - 9480711, - 5986227 + 8698961, + 5602614, + 2185699, + 9112528, + 2645102 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "fd8c3ceb-9354-4ee4-82df-47cf69a21c17", - "createdAt": "2022-01-15", - "completed": "2017-10-29", - "initiated": "2020-10-27", - "ministryContact": "BINS JOSIANE", + "uuid": "92daad42-8a56-44dc-87a2-796b76b5d452", + "createdAt": "2016-01-11", + "completed": "2022-02-24", + "initiated": "2022-07-16", + "ministryContact": "KOCH HAYLIE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -19930,26 +22614,38 @@ ], "notationParticipants": [ { - "uuid": "a92ce659-d051-4945-9574-127c8b8c899c", + "uuid": "44bff667-5106-42d6-a4b9-8fe965af290c", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "a2eb19f5-5bd3-4d92-bdc9-a6800dca51b3", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "b401add9-76da-49bf-bab3-09a60ae91526", + "uuid": "74737b8e-f6b5-4328-8fe4-001ff6ccfbf1", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false + }, + { + "uuid": "7d5d560a-5784-4713-b095-96f4ca8ccf78", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true } ], "siteRegistry": false }, { - "uuid": "3826b1dd-ef1d-4038-bd49-ea3af1052c8f", - "createdAt": "2016-08-25", - "completed": "2022-02-12", - "initiated": "2017-12-26", - "ministryContact": "TURCOTTE DELPHA", + "uuid": "5bc6b31d-7b82-4d49-a56d-6f15eebbee64", + "createdAt": "2016-09-30", + "completed": "2018-10-06", + "initiated": "2019-08-16", + "ministryContact": "HILLS DEJA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -19958,32 +22654,32 @@ ], "notationParticipants": [ { - "uuid": "ef750185-b2c3-4e68-9ebe-293889e01257", + "uuid": "e5fccedd-4892-4e2c-800c-0c9219170a1b", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "00b877f1-f96d-4880-b8ac-18d282e253e6", + "uuid": "bedb8bd0-5f18-47bb-b461-83a6e5321631", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false }, { - "uuid": "a11c8fcf-d350-4364-b55e-c4d133d1159c", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true + "uuid": "44cd2424-216f-4558-a3c6-943000f30287", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false } ], "siteRegistry": false }, { - "uuid": "38d889bb-42eb-4096-8000-169a05d140b5", - "createdAt": "2019-01-15", - "completed": "2015-05-12", - "initiated": "2020-12-19", - "ministryContact": "EMARD CAESAR", + "uuid": "6aed9feb-e0af-41c1-94b5-972d6d317cd0", + "createdAt": "2022-11-18", + "completed": "2015-05-22", + "initiated": "2014-09-08", + "ministryContact": "PREDOVIC TEVIN", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -19992,32 +22688,26 @@ ], "notationParticipants": [ { - "uuid": "876dd6de-cff8-4a73-9878-13615b9b7c93", - "name": "SHELL CANADA PRODUCTS", + "uuid": "793bc9e3-c232-4599-adcc-6b06d34d35cc", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "2c10ae26-bbf5-4d83-8d68-fa032368b8ab", + "uuid": "fe5cffaf-e09a-4586-97e9-08ddfd3b80c3", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false - }, - { - "uuid": "5c576904-786f-4545-945e-6a59c93dc66d", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false } ], "siteRegistry": true }, { - "uuid": "8d1bac00-afb7-41b6-a3f1-85f4cf5c46ea", - "createdAt": "2022-03-18", - "completed": "2018-12-09", - "initiated": "2023-06-07", - "ministryContact": "LANGOSH MARIELA", + "uuid": "1b609e72-4622-49a1-ad77-da49828a1584", + "createdAt": "2014-12-05", + "completed": "2014-01-21", + "initiated": "2014-02-07", + "ministryContact": "MCDERMOTT GRETCHEN", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -20026,45 +22716,45 @@ ], "notationParticipants": [ { - "uuid": "8704c6ad-0b07-4717-945f-823c158d85d9", + "uuid": "6329a840-2968-4bcb-aaa1-bd2d7b04b354", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "0dea082a-3ded-4b29-941a-24e6ec13c347", - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "212eb5ba-5e6c-4727-99a5-63fc352ee1b4", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "26a2abb0-d101-497a-b20f-4b5575ee0e67", - "name": "SHELL CANADA PRODUCTS", + "uuid": "727dfc7a-d5bd-4315-931b-cb7c6c2c07ca", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "61afac9c-ae98-4142-a3da-0f59ee018cc8", + "uuid": "de7de1bc-7f4f-49fd-9870-6c355dd90930", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "8e4fe267-6686-457e-84e5-3b9884105cb2", - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false + "uuid": "96370bbd-a1f8-4624-9793-09861efb14f4", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true } ], "participants": [ { - "uuid": "0ed6a780-4e18-4e21-9f9c-c3c98282ff9f", - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2017-04-05", - "startDate": "2015-03-15", + "uuid": "b1f3cddf-b6b2-4c19-8ee5-20b81e3be162", + "name": "AMET, DOLOR SIT", + "endDate": "2015-07-17", + "startDate": "2018-07-29", "notes": "", "roles": [ "EMPLOYEE" @@ -20072,10 +22762,10 @@ "siteRegistry": false }, { - "uuid": "f287b666-5a3e-4b5b-8ced-bdfa842656fe", - "name": "SHELL CANADA PRODUCTS", - "endDate": "2023-09-12", - "startDate": "2021-12-24", + "uuid": "0f498e0e-cc76-4660-b8ff-8f26e85fb93b", + "name": "AMET, DOLOR SIT", + "endDate": "2019-09-30", + "startDate": "2018-06-01", "notes": "", "roles": [ "EMPLOYEE" @@ -20083,136 +22773,251 @@ "siteRegistry": true }, { - "uuid": "91912d44-d52e-43dc-8f6b-fa05f07f8e5e", - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2020-08-12", - "startDate": "2023-04-16", + "uuid": "3795fd60-7eb6-4480-8689-4e5f6eee9a15", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2022-03-25", + "startDate": "2019-08-12", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "c851bd9f-4a61-45e7-b98c-81e34e7cc270", + "uuid": "98a3b4f2-0f26-4506-a6cd-a38b41159dbb", "name": "IPSUM", - "endDate": "2014-12-06", - "startDate": "2017-08-18", + "endDate": "2016-02-04", + "startDate": "2018-01-23", "notes": "", "roles": [ "ORGANIZATION" ], "siteRegistry": true + }, + { + "uuid": "f8be58e1-1a78-4566-9c82-a79d67e2bcb8", + "name": "IPSUM", + "endDate": "2022-11-04", + "startDate": "2019-07-04", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + } + ], + "documents": [ + { + "uuid": "46bfa6a6-b556-4330-94f0-8f3e8304f975", + "siteRegistry": true, + "documentDate": "2019-02-11", + "receivedDate": "2015-06-02", + "uploadedDate": "2023-04-15", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "7788038b-d36d-441f-a79f-b5367ecacfd7", + "name": "IPSUM", + "siteRegistry": false, + "role": "AUTHOR" + } + ] + }, + { + "uuid": "d5db9410-c144-488c-a0d3-25db9a66f2e2", + "siteRegistry": false, + "documentDate": "2022-09-14", + "receivedDate": "2018-04-18", + "uploadedDate": "2016-03-08", + "title": "Summary of Site Conditions, 1537 W 41st Avenue, Vancouver", + "participants": [ + { + "uuid": "2c7c13d2-6c48-4bee-84cc-1bfb6a4b19b7", + "name": "IPSUM", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "b5042691-5936-4f26-8bb7-1ab119ae88f9", + "name": "IPSUM", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "7e825e14-0eb5-4283-bbb5-9926776d0676", + "name": "IPSUM", + "siteRegistry": false, + "role": "AUTHOR" + } + ] + }, + { + "uuid": "0923d020-c843-47eb-89ff-9f64ba617536", + "siteRegistry": true, + "documentDate": "2019-05-05", + "receivedDate": "2016-11-14", + "uploadedDate": "2018-03-18", + "title": "Summary of Site Conditions, 1537 W 41st Avenue, Vancouver", + "participants": [ + { + "uuid": "aa2a757c-be52-42e3-abb3-3cc6764a5bb5", + "name": "AMET, DOLOR SIT", + "siteRegistry": true, + "role": "AUTHOR" + } + ] + }, + { + "uuid": "213f5454-c46d-4a04-8cfc-d518c7be3720", + "siteRegistry": true, + "documentDate": "2017-03-25", + "receivedDate": "2023-03-16", + "uploadedDate": "2017-03-19", + "title": "Preliminary Site Investigation, Detailed Site Investigation and Remedial Plan for the Management Area adjacent to the Shell Site at 1503 West 41st Ave", + "participants": [ + { + "uuid": "63cca096-633a-4fa8-b436-342d72198548", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "13a6616d-7d2a-4062-847e-d2985e03d764", + "name": "IPSUM", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "e4723e13-1080-4cbf-98db-531a2ba4230e", + "name": "IPSUM", + "siteRegistry": true, + "role": "AUTHOR" + } + ] + }, + { + "uuid": "fb521f3b-cf98-40f0-a729-6dc3f2559518", + "siteRegistry": false, + "documentDate": "2019-01-31", + "receivedDate": "2015-11-28", + "uploadedDate": "2021-08-03", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "899707d7-3efd-47e0-87a5-f4c335af2ef9", + "name": "AMET, DOLOR SIT", + "siteRegistry": true, + "role": "AUTHOR" + } + ] } ], "suspectLandUses": [ { - "uuid": "6ba60039-7080-475f-b390-fa2771a1edfb", + "uuid": "e33e8a75-7b8f-4f02-b3bd-4d947146ae0a", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-12-12 (described on Site Profile dated 2022-12-12)", + "notes": "INSERTED FOR SITE PROFILE DATED 2016-11-26 (described on Site Profile dated 2016-11-26)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "uuid": "1132bdfd-5048-4ab9-b8c0-b42c2ec1a417", + "uuid": "b5f7dca2-9248-4f24-879a-9b2742b7eefa", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2016-08-07 (described on Site Profile dated 2016-08-07)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "uuid": "73f86b54-1d88-40fa-a334-adaac2f10595", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2013-11-08 (described on Site Profile dated 2013-11-08)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "notes": "INSERTED FOR SITE PROFILE DATED 2022-01-10 (described on Site Profile dated 2022-01-10)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "uuid": "0427eeaa-4036-4d5e-bb31-03c2c75a86c1", + "uuid": "cf916dc0-3058-4f1d-ab97-35d6c952022e", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-11-18 (described on Site Profile dated 2014-11-18)", + "notes": "INSERTED FOR SITE PROFILE DATED 2021-01-17 (described on Site Profile dated 2021-01-17)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "uuid": "83ce45d8-10ac-47f3-95c2-948f1cc663b9", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2016-02-16 (described on Site Profile dated 2016-02-16)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], "parcelDescriptions": [ { - "uuid": "4dcfc670-b0c9-4140-a3af-4126fa5bece8", + "uuid": "688d6b13-3ebc-422f-91f5-d43fb72f2318", "siteRegistry": false, - "dateNoted": "2022-09-27", - "parcelID": "15855", - "crownLandUsePIN": "17898", - "crownLandFileNumber": "19276", - "landDescription": "LOT 1 OF LOT 3 BLOCK 3 DISTRICT LOT 2 PLAN 8297" + "dateNoted": "2015-10-07", + "parcelID": "17468", + "crownLandUsePIN": "18751", + "crownLandFileNumber": "15795", + "landDescription": "LOT 1 OF LOT 2 BLOCK 1 DISTRICT LOT 5 PLAN 9024" }, { - "uuid": "7443340d-c099-4628-a8ca-e4837a3784bc", - "siteRegistry": false, - "dateNoted": "2023-08-16", - "parcelID": "17983", - "crownLandUsePIN": "15878", - "crownLandFileNumber": "20260", - "landDescription": "LOT 4 OF LOT 1 BLOCK 2 DISTRICT LOT 2 PLAN 7052" + "uuid": "bc19c189-f3f1-4559-93f6-e302e699c37e", + "siteRegistry": true, + "dateNoted": "2023-02-06", + "parcelID": "15683", + "crownLandUsePIN": "18324", + "crownLandFileNumber": "16202", + "landDescription": "LOT 3 OF LOT 3 BLOCK 5 DISTRICT LOT 2 PLAN 9415" }, { - "uuid": "716a3b38-6c6d-452e-85e5-57f2a304dda7", - "siteRegistry": false, - "dateNoted": "2019-06-29", - "parcelID": "18143", - "crownLandUsePIN": "20588", - "crownLandFileNumber": "17979", - "landDescription": "LOT 5 OF LOT 3 BLOCK 4 DISTRICT LOT 2 PLAN 8946" + "uuid": "7d4c1e72-9543-4c60-906e-33230c0f4790", + "siteRegistry": true, + "dateNoted": "2016-07-25", + "parcelID": "16197", + "crownLandUsePIN": "19592", + "crownLandFileNumber": "20889", + "landDescription": "LOT 1 OF LOT 1 BLOCK 5 DISTRICT LOT 3 PLAN 7503" + }, + { + "uuid": "e80b1179-0254-4d69-a82e-2e184b0e2563", + "siteRegistry": true, + "dateNoted": "2019-05-07", + "parcelID": "17819", + "crownLandUsePIN": "19157", + "crownLandFileNumber": "18103", + "landDescription": "LOT 4 OF LOT 2 BLOCK 3 DISTRICT LOT 3 PLAN 9409" + }, + { + "uuid": "badba1c4-6f58-4f06-9a51-94652b5d5a90", + "siteRegistry": true, + "dateNoted": "2014-06-23", + "parcelID": "16557", + "crownLandUsePIN": "17064", + "crownLandFileNumber": "19471", + "landDescription": "LOT 2 OF LOT 1 BLOCK 4 DISTRICT LOT 4 PLAN 9639" } ], "siteDisclosures": [ { - "uuid": "9b7bb562-2c17-4579-835c-eadd95a361a7", - "siteRegistry": true, - "dateReceived": "2017-06-29", - "dateCompleted": "2019-04-23", - "dateEntered": "2017-01-15", - "dateRegistrar": "2019-08-20", - "dateLocalAuthorityReceived": "2020-04-18", - "summary": "Vel delectus ea sint eveniet quaerat.\nEos occaecati libero voluptate.\nAtque adipisci illum sapiente animi cupiditate laudantium.", - "informationUsed": "Ea magnam fuga vero expedita iusto enim id.\nNisi enim voluptate cum officiis.\nNemo perferendis odit eligendi corporis.\nSaepe sed unde est possimus in quas ratione quo inventore.\nMinima minus modi nihil animi voluptate voluptate harum alias.", - "pastOrPresentOrders": "Tempora modi quod doloremque animi necessitatibus maxime.", + "uuid": "62718290-bcab-47e4-b891-725f94a19e21", + "siteRegistry": false, + "dateReceived": "2020-04-20", + "dateCompleted": "2021-07-10", + "dateEntered": "2023-09-03", + "dateRegistrar": "2018-12-23", + "dateLocalAuthorityReceived": "2017-03-29", + "summary": "Perferendis sequi sit magni perspiciatis ipsa.\nQuis provident recusandae quia voluptatum libero debitis tempora.", + "informationUsed": "Perferendis enim maxime voluptas debitis dolore sed pariatur.\nNisi deserunt ullam eum earum hic similique tenetur velit soluta.\nDistinctio omnis totam nobis tenetur.\nMinus placeat molestias culpa.", + "pastOrPresentOrders": "Exercitationem exercitationem quod repellendus deleniti odit.\nExpedita eligendi commodi provident maiores nulla earum maiores ad esse.\nAb temporibus placeat quaerat eos perspiciatis.", "commercialAndIndustrialPurposes": [ { - "uuid": "a57eabeb-c829-4723-b56f-b930aabcc9e8", + "uuid": "040e1d16-5879-4ea2-9075-f3161073a935", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false }, { - "uuid": "434159bd-9d4b-494d-88b8-999d243cb5b3", + "uuid": "c7f71024-c7c4-49de-a8ba-003020767a67", "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false - }, - { - "uuid": "3580aca1-2f4a-4edb-b7bc-b25811da9c7d", - "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true - } - ] - }, - { - "uuid": "1efc26dd-3ebb-4281-ab3d-3f5e8b3f6a93", - "siteRegistry": false, - "dateReceived": "2019-01-28", - "dateCompleted": "2017-09-24", - "dateEntered": "2014-07-31", - "dateRegistrar": "2018-04-10", - "dateLocalAuthorityReceived": "2014-05-31", - "summary": "Commodi voluptate reiciendis fugit beatae blanditiis sunt ad doloribus.", - "informationUsed": "Cupiditate facilis ipsa.\nMinima veniam at distinctio in sunt et alias.\nAd dolorem dolorem facere voluptatem aliquam ea esse eius.\nAsperiores ut velit ab recusandae voluptatibus.\nAb earum optio.", - "pastOrPresentOrders": "Molestias eaque culpa nulla doloremque.", - "commercialAndIndustrialPurposes": [ - { - "uuid": "b21fc0c1-747b-49cf-8ba7-2efd96fc193a", - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true - }, - { - "uuid": "f916a4ae-9cc4-4afd-94f5-21a419a06923", - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false }, { - "uuid": "5f76b618-a606-4a73-95e5-f337169102ea", + "uuid": "fa2164aa-4448-4691-a47e-89c8379c55f4", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false @@ -20222,85 +23027,101 @@ ], "activityLog": [ { - "uuid": "69a87b0e-008f-495e-bb98-7a44ff8a6441", - "siteRegistry": false, + "uuid": "d8911578-ac73-40e9-b30a-b57244741857", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "RYAN WHITNEY", - "timestamp": "2023-02-22" + "user": "CONROY ALAYNA", + "timestamp": "2019-05-15" }, { - "uuid": "40b0b42a-0d17-4a96-86b4-d6daad103cbb", - "siteRegistry": false, + "uuid": "121a2e9b-4470-452a-bb90-b6fb0ea882b2", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "WINDLER GODFREY", - "timestamp": "2019-11-15" + "user": "BODE DELIA", + "timestamp": "2015-01-02" }, { - "uuid": "b06159c1-d789-4c66-8ead-a6c95f7bc2d1", - "siteRegistry": true, + "uuid": "6be6eb58-2417-4d2f-84b4-c3a16b13d9ed", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "BOTSFORD ILIANA", - "timestamp": "2015-11-12" + "user": "NICOLAS JARRETT", + "timestamp": "2017-11-06" }, { - "uuid": "ff27eb5c-f6e5-4457-b1c2-4a47258ea612", + "uuid": "c1c7d34b-93e1-430d-8142-c2d4e6332b72", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "BARTOLETTI ZOEY", - "timestamp": "2013-11-11" + "user": "JONES GARRET", + "timestamp": "2014-05-04" }, { - "uuid": "755655a7-3b12-435f-a064-5d1ad3c37e30", + "uuid": "c6344b60-65ff-46e5-9707-44a170136394", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "STROMAN JEFFRY", - "timestamp": "2020-12-15" + "user": "ZIEME PEDRO", + "timestamp": "2014-04-08" }, { - "uuid": "cbf4ae7d-f050-406b-be78-09f80d29e830", - "siteRegistry": false, + "uuid": "607c0400-4aeb-470e-b355-677dc5bc4906", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "STROMAN KARIANE", - "timestamp": "2021-01-24" + "user": "WUNSCH SHANA", + "timestamp": "2015-12-29" } ], "associatedSites": [ { - "uuid": "142916e6-ae53-4d0a-8306-860e88076347", - "dateNoted": "2023-04-06", + "uuid": "10d83268-4b13-44f1-adb5-c3ace8b6f484", + "dateNoted": "2015-02-17", "notes": "", - "parcelID": "19252", - "siteID": "15766", + "parcelID": "20790", + "siteID": "16918", + "siteRegistry": false + }, + { + "uuid": "fff790ac-3c1d-42fd-a2ea-b8dd31d1f631", + "dateNoted": "2021-09-25", + "notes": "", + "parcelID": "19546", + "siteID": "17785", + "siteRegistry": false + }, + { + "uuid": "256a9c31-f129-4891-bc51-ba8e6678fc89", + "dateNoted": "2021-07-17", + "notes": "", + "parcelID": "19078", + "siteID": "15483", "siteRegistry": false } ] }, { - "uuid": "23a72ef2-1712-4b9b-9893-caf0d66f12a3", - "siteID": 16044, - "address": "146 D'Amore Rapids", - "latitude": 57.6347, - "longitude": -137.5903, - "lastUpdated": "2020-07-18", - "city": "Javonstead", - "region": "Vancouver Island/Coast", - "victoriaFile": "26250-20/4822", + "uuid": "bc3e8ba5-fc8d-48f2-ab0f-1f72e5b1f16c", + "siteID": 15931, + "address": "35960 Shanie Highway", + "latitude": 54.5076, + "longitude": -138.2134, + "lastUpdated": "2020-03-08", + "city": "West Allis", + "region": "Cariboo", + "victoriaFile": "26250-20/8878", "regionalFile": "N/A", "parcelIDs": [ - 6435146, - 261587, - 4391199, - 874208, - 9221115 + 9266721, + 4883662, + 8708652, + 8152008, + 4374241 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "bc01da8d-7592-4597-aaf5-a40bb2e88118", - "createdAt": "2016-12-01", - "completed": "2015-02-15", - "initiated": "2023-05-07", - "ministryContact": "RUNOLFSSON DESTINY", + "uuid": "d81de36b-bb13-482d-aac4-21203644bdd6", + "createdAt": "2021-07-26", + "completed": "2015-05-04", + "initiated": "2015-01-21", + "ministryContact": "KEEBLER BARTON", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -20309,60 +23130,32 @@ ], "notationParticipants": [ { - "uuid": "50fab57f-016f-48e8-88a1-9d6844b241c7", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "uuid": "911f6baf-fc4a-4f46-90cd-71476e324788", + "uuid": "7966601e-fa43-4148-82d6-cebf427ff159", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "2f4bdeb7-98e4-43b9-b3c2-361e9c50de20", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - } - ], - "siteRegistry": true - }, - { - "uuid": "f3fb3c20-29ea-4135-b6d0-e56800c7cb4d", - "createdAt": "2018-07-17", - "completed": "2015-11-11", - "initiated": "2016-09-09", - "ministryContact": "JACOBI MARLENE", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "uuid": "49b3533e-12fe-43a6-9aee-65f2fb5bb035", + "uuid": "c1cb3897-099b-4148-9a82-800e6ea05aa3", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "9eda49aa-d377-465b-8a47-25fb0118008a", + "uuid": "92539cc2-3b28-40f5-9e65-2782e8202c9c", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "9567ae4c-cbdd-4e55-823f-23db0dcea1b6", - "createdAt": "2021-05-02", - "completed": "2014-07-16", - "initiated": "2020-06-29", - "ministryContact": "POLLICH ELSIE", + "uuid": "a9564dc4-257b-43f8-bb2d-72bec0a934a0", + "createdAt": "2016-08-18", + "completed": "2022-05-05", + "initiated": "2018-12-08", + "ministryContact": "FAHEY ELENOR", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -20371,32 +23164,38 @@ ], "notationParticipants": [ { - "uuid": "8accb2e8-2872-4da6-9e81-4b7465ddd237", + "uuid": "2efcee0e-d082-49f6-a544-37b4891f2a5f", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false }, { - "uuid": "7e6de07f-1b54-4778-9876-f580dde12872", - "name": "SHELL CANADA PRODUCTS", + "uuid": "14c39d21-325e-4fae-a3d6-d6bb91ff1a4b", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "uuid": "2eac81cf-05fb-45d0-8012-480978fa1a80", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "0d7063b9-4fe7-4dfd-9dd4-75cb19c312fa", + "uuid": "2af9f9fb-689a-461e-a778-d1198cb8bc06", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false + "role": "REQUESTED BY", + "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "7cca8ecb-9181-4d5b-97c6-e1e0e9d1538a", - "createdAt": "2014-01-20", - "completed": "2016-10-03", - "initiated": "2019-10-19", - "ministryContact": "CONNELLY KENNEDI", + "uuid": "4ef0eea0-7c8d-4c60-b24c-64cd517db136", + "createdAt": "2023-02-26", + "completed": "2017-04-23", + "initiated": "2017-11-08", + "ministryContact": "BALISTRERI NEVA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -20405,44 +23204,38 @@ ], "notationParticipants": [ { - "uuid": "fd288968-b637-4fd0-b7a4-2bae09454835", + "uuid": "827b583e-64ef-4c1e-9976-2231028bf60e", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false }, { - "uuid": "3c318db2-db54-4659-846c-511db3924a68", - "name": "SHELL CANADA PRODUCTS", + "uuid": "999b71a9-0d1c-492b-bc8d-dfd0fd5f0fbb", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false }, { - "uuid": "0f9a7a60-7346-4db1-b412-c73017e39fa7", + "uuid": "f49d963a-e3d2-4273-8bcb-4cc2a6396dee", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "uuid": "3240d831-9229-46bc-8532-680239b8d38e", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", "siteRegistry": true }, { - "uuid": "a27ebd75-45c9-4c2b-b9f7-8adb26e19f6e", + "uuid": "4e3ce47a-b7a3-47bc-af95-f2746407c08b", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true + "role": "REQUESTED BY", + "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "2ef47b46-838a-4cb9-8b3e-de13e4c872fe", - "createdAt": "2017-06-10", - "completed": "2020-04-06", - "initiated": "2015-12-06", - "ministryContact": "GREENFELDER FRANCIS", + "uuid": "196a817f-3e35-4b50-9224-4f362f646c4f", + "createdAt": "2014-02-02", + "completed": "2021-03-05", + "initiated": "2019-09-02", + "ministryContact": "HERZOG CARLOTTA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -20451,33 +23244,45 @@ ], "notationParticipants": [ { - "uuid": "57355a89-f4d6-4681-a993-29ac32ecdb8b", + "uuid": "da99cad8-e019-4e73-8b47-00aab3b0723e", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false }, { - "uuid": "597efa3a-3a0e-499a-a67f-2e27e53f5a8c", - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "d18f31e1-8a04-4da2-91a0-60631d8740ed", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "1ec0037a-854f-4f57-8eca-693d4cd0fd86", - "name": "SHELL CANADA PRODUCTS", + "uuid": "3e59993b-1726-4e6e-87e0-546712cc667d", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true + }, + { + "uuid": "2b301126-0c7d-42fd-939a-b64c6266269e", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "b78b5fde-9d36-4d5a-8084-8d74528449e2", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true } ], "participants": [ { - "uuid": "70f41118-31ee-4d96-97fe-1fbf4b9d1120", + "uuid": "7a684e4b-2c55-4500-98f6-58747575a509", "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2014-03-18", - "startDate": "2018-11-19", + "endDate": "2023-05-04", + "startDate": "2017-08-06", "notes": "", "roles": [ "EMPLOYEE" @@ -20485,254 +23290,281 @@ "siteRegistry": true }, { - "uuid": "58191d9a-85b0-4d86-8111-115d61998702", - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2014-09-16", - "startDate": "2019-09-01", + "uuid": "2924938b-a3f0-41c9-9f91-319fcba47cde", + "name": "IPSUM", + "endDate": "2023-08-25", + "startDate": "2014-08-27", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "uuid": "86b495b0-a433-4171-bf73-f0548bb3b8ae", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2016-12-18", + "startDate": "2016-10-30", + "notes": "", + "roles": [ + "ORGANIZATION" ], "siteRegistry": false } ], + "documents": [ + { + "uuid": "5040ff49-c1f2-499d-862f-07c288ff7e00", + "siteRegistry": true, + "documentDate": "2016-06-01", + "receivedDate": "2016-11-23", + "uploadedDate": "2018-03-29", + "title": "Preliminary Site Investigation, Detailed Site Investigation and Remedial Plan for the Management Area adjacent to the Shell Site at 1503 West 41st Ave", + "participants": [ + { + "uuid": "5fe0d6eb-2d83-47b3-9241-06dc3c77bbea", + "name": "IPSUM", + "siteRegistry": true, + "role": "AUTHOR" + } + ] + }, + { + "uuid": "614f5021-618f-4be7-867a-9ab113eca8a8", + "siteRegistry": true, + "documentDate": "2022-06-04", + "receivedDate": "2015-04-29", + "uploadedDate": "2022-10-13", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "477b0b91-813d-4df3-b500-498d563c8230", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": false, + "role": "AUTHOR" + } + ] + } + ], "suspectLandUses": [ { - "uuid": "7d02a8a6-ef3e-440f-bce5-8154c012b726", - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-06-29 (described on Site Profile dated 2022-06-29)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "uuid": "6b7dc3a0-0286-40fd-909c-2c44480b851c", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2021-12-04 (described on Site Profile dated 2021-12-04)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "uuid": "d115fc48-99f0-4b7c-8f9e-1e2d8add245b", + "uuid": "cd2fe3b1-26b6-4423-9ea1-8f1513653487", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-10-26 (described on Site Profile dated 2015-10-26)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "notes": "INSERTED FOR SITE PROFILE DATED 2018-01-02 (described on Site Profile dated 2018-01-02)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "uuid": "54c67543-6e25-48fc-af80-7ab49e263e53", - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-03-27 (described on Site Profile dated 2016-03-27)", + "uuid": "501eb841-efb7-44b0-a543-42c143383a6f", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2016-07-04 (described on Site Profile dated 2016-07-04)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "uuid": "061c9efd-addb-4ebc-8955-10cc4a08eea6", - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-06-13 (described on Site Profile dated 2016-06-13)", + "uuid": "308d3eb8-aa63-484d-99fc-e09f48ff19aa", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2022-02-15 (described on Site Profile dated 2022-02-15)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "uuid": "0a9c5c0d-52e4-45de-aae3-82bdcd9c13df", + "uuid": "9ca68aeb-fabf-4779-9cd1-f328aa8b12ec", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2023-08-20 (described on Site Profile dated 2023-08-20)", + "notes": "INSERTED FOR SITE PROFILE DATED 2015-06-28 (described on Site Profile dated 2015-06-28)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], "parcelDescriptions": [ { - "uuid": "14ebf6bb-4aa0-480b-8eee-cea2849a46dd", + "uuid": "a82b7afe-6f76-4d7c-9136-7d11292f8351", "siteRegistry": true, - "dateNoted": "2018-05-09", - "parcelID": "17865", - "crownLandUsePIN": "15450", - "crownLandFileNumber": "15257", - "landDescription": "LOT 4 OF LOT 1 BLOCK 1 DISTRICT LOT 1 PLAN 6052" + "dateNoted": "2015-10-14", + "parcelID": "18262", + "crownLandUsePIN": "16594", + "crownLandFileNumber": "18538", + "landDescription": "LOT 3 OF LOT 2 BLOCK 4 DISTRICT LOT 5 PLAN 6569" }, { - "uuid": "f555c5b5-0864-4bf8-ada5-2195a5101ec0", - "siteRegistry": true, - "dateNoted": "2020-06-02", - "parcelID": "20419", - "crownLandUsePIN": "15700", - "crownLandFileNumber": "19530", - "landDescription": "LOT 1 OF LOT 1 BLOCK 2 DISTRICT LOT 4 PLAN 8564" + "uuid": "b7ffb6f0-e25f-4999-9565-9b46c66888a0", + "siteRegistry": false, + "dateNoted": "2017-01-20", + "parcelID": "19796", + "crownLandUsePIN": "15233", + "crownLandFileNumber": "16369", + "landDescription": "LOT 4 OF LOT 4 BLOCK 5 DISTRICT LOT 4 PLAN 7897" + }, + { + "uuid": "822b735e-52e5-4d77-9a14-71b012a6f601", + "siteRegistry": false, + "dateNoted": "2023-05-13", + "parcelID": "18250", + "crownLandUsePIN": "16096", + "crownLandFileNumber": "16615", + "landDescription": "LOT 5 OF LOT 3 BLOCK 2 DISTRICT LOT 2 PLAN 2903" + }, + { + "uuid": "01256edc-0613-420c-9475-23017e428df4", + "siteRegistry": false, + "dateNoted": "2018-12-03", + "parcelID": "15698", + "crownLandUsePIN": "16464", + "crownLandFileNumber": "20656", + "landDescription": "LOT 4 OF LOT 5 BLOCK 1 DISTRICT LOT 1 PLAN 3447" + }, + { + "uuid": "9ae2b650-f5ff-4f3f-a3b9-2eeebf397c3b", + "siteRegistry": false, + "dateNoted": "2023-08-25", + "parcelID": "16064", + "crownLandUsePIN": "18759", + "crownLandFileNumber": "19764", + "landDescription": "LOT 1 OF LOT 4 BLOCK 3 DISTRICT LOT 4 PLAN 3897" } ], "siteDisclosures": [ { - "uuid": "bed85ae8-8ee7-450e-a08f-c3349eab55ba", - "siteRegistry": true, - "dateReceived": "2016-06-11", - "dateCompleted": "2017-06-02", - "dateEntered": "2015-08-16", - "dateRegistrar": "2018-10-18", - "dateLocalAuthorityReceived": "2021-11-07", - "summary": "Voluptates enim unde deserunt dolor amet nam explicabo.\nExcepturi ipsa aspernatur.\nEarum odio voluptatibus.", - "informationUsed": "Libero eos quae quia sint tenetur laudantium.\nSequi exercitationem aliquid cupiditate.\nRatione amet ut repellat.\nFugit officiis placeat consectetur.\nAccusantium neque neque illum suscipit.", - "pastOrPresentOrders": "Aspernatur qui iste occaecati est saepe.", + "uuid": "7b069b24-03cd-4d40-b877-9a92160c9ee8", + "siteRegistry": false, + "dateReceived": "2014-07-13", + "dateCompleted": "2022-11-05", + "dateEntered": "2018-08-29", + "dateRegistrar": "2014-05-09", + "dateLocalAuthorityReceived": "2015-10-02", + "summary": "Nostrum distinctio corrupti.\nAnimi dolorem maiores tenetur dolorum.\nVel odit explicabo laudantium pariatur sequi maxime.", + "informationUsed": "Rem corporis odio recusandae porro vitae porro ipsa.\nDolores similique et fugiat id consequatur officiis reprehenderit reiciendis.\nDoloribus ipsum quam inventore a molestiae rem provident labore unde.", + "pastOrPresentOrders": "Dolore magnam qui nihil qui accusantium praesentium.\nQuisquam veritatis odio sit veritatis modi dolores labore.\nExplicabo quaerat quos magni enim dolorum vero nam.", "commercialAndIndustrialPurposes": [ { - "uuid": "b77f70ea-cb72-4008-bc27-52387b12b9ce", - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false - }, - { - "uuid": "79c5bed8-05bc-42c7-bd75-21fb48586986", + "uuid": "731ead0c-c83f-4f61-a195-679835257367", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "uuid": "8423a6cf-a769-4b7d-bedf-cd2a7a2d39a4", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false } ] }, { - "uuid": "f7d5b34a-e786-4784-8f19-60fd288e6668", + "uuid": "d69cba63-061c-49c2-a609-a85ddf5bd34a", "siteRegistry": true, - "dateReceived": "2014-12-16", - "dateCompleted": "2013-12-09", - "dateEntered": "2019-04-01", - "dateRegistrar": "2019-03-31", - "dateLocalAuthorityReceived": "2022-05-21", - "summary": "Quas dolorem beatae perferendis vitae reprehenderit neque.\nPerspiciatis hic error sunt vero impedit laborum qui nam fugit.\nAb quasi distinctio corporis eius quidem atque.", - "informationUsed": "Recusandae quod reiciendis doloremque.\nRepellendus id itaque quas cum blanditiis quos quaerat.\nNostrum ab rerum quos error hic.\nHic eos in qui numquam repudiandae eius.", - "pastOrPresentOrders": "Rem qui voluptatem.\nAdipisci expedita ab aperiam at nostrum laudantium cum.\nPossimus illo reiciendis aperiam magnam nemo asperiores voluptatem pariatur ab.", + "dateReceived": "2015-01-28", + "dateCompleted": "2022-04-26", + "dateEntered": "2018-10-19", + "dateRegistrar": "2021-09-01", + "dateLocalAuthorityReceived": "2016-06-01", + "summary": "Odit sint quia repellendus dicta.\nSunt quis officiis quis fugiat ipsa distinctio cupiditate eum blanditiis.\nEos sint corporis unde voluptate quos voluptatum nisi quia.", + "informationUsed": "Quam neque hic autem doloremque magnam minima tempora fuga nam.\nEveniet quibusdam amet.\nDolores quibusdam voluptas aperiam eum quisquam velit dicta culpa.\nLaboriosam consequuntur magnam corporis qui cum.\nSit cum accusamus aut.", + "pastOrPresentOrders": "Placeat iste vel neque iure.", "commercialAndIndustrialPurposes": [ { - "uuid": "3d998fb4-f1ed-44ef-b2f6-c22d0c94118a", - "scheduleReference": "F2*", + "uuid": "208dec66-6e09-43fc-907c-8aabefea2780", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { - "uuid": "64d4c953-c3cd-4c53-b274-42bc4a41c2c6", - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "uuid": "5a60657d-c7b3-47fa-a16d-7edf17b98b02", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false }, { - "uuid": "22dd6d48-1921-4acc-b156-e8091dc63ab2", - "scheduleReference": "F2*", + "uuid": "acf27976-308a-4653-9bff-7ea588dd2816", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false + }, + { + "uuid": "5503d295-48dd-4584-a1f5-cba40d6f2643", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true } ] } ], "activityLog": [ { - "uuid": "cf32b748-6ff4-4e15-b766-d38b6ea4c1fd", - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "JOHNS MICHELLE", - "timestamp": "2020-12-06" - }, - { - "uuid": "1c000fde-357f-4a30-9cbc-ae252eceb601", - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "TREUTEL CRISTIAN", - "timestamp": "2015-01-24" - }, - { - "uuid": "1efb9e66-8166-486b-9df1-b572e3a68b4d", - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "HARTMANN-HAMILL MATHIAS", - "timestamp": "2018-02-01" - }, - { - "uuid": "dd724bb6-87e2-4054-b42d-f527c3ae4350", + "uuid": "403047f1-c3f7-4777-9bea-a2747ed9a512", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "SHIELDS VIDAL", - "timestamp": "2022-08-10" + "user": "MARKS MARIELLE", + "timestamp": "2019-11-27" }, { - "uuid": "d816dd91-d7fa-4842-9d48-750db0ef2975", + "uuid": "51dd93f9-3098-4b5e-a46d-c7ddfbe764dd", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "MOORE VALENTINA", - "timestamp": "2022-05-27" + "user": "BUCKRIDGE STEVE", + "timestamp": "2020-11-11" }, { - "uuid": "74b265e0-189c-4624-8792-19ddeb7f10e2", + "uuid": "2123065c-a03b-4617-8c21-83da5cee3131", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "POLLICH ADONIS", - "timestamp": "2015-09-25" + "user": "WISOKY ROSIE", + "timestamp": "2016-08-06" }, { - "uuid": "9f563ad7-b171-4058-a021-f853b005fd89", + "uuid": "c36ae6eb-90ba-4f6a-98c2-5327ffe517c7", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "KUHN RANDI", - "timestamp": "2017-12-19" - }, - { - "uuid": "b429d12e-33ef-4f6d-b64d-b34f78041806", - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "GOLDNER ZACKARY", - "timestamp": "2022-07-22" - }, - { - "uuid": "78599277-fe71-4388-a572-d61fa39cfb2d", - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "BECKER ELWYN", - "timestamp": "2018-07-21" + "user": "STEHR NATHAN", + "timestamp": "2013-12-25" }, { - "uuid": "61338d78-d263-4ff0-93dc-014b95f5e665", + "uuid": "6e505388-80ad-4f3e-9024-12e8bf55f683", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "CUMMINGS OLIVER", - "timestamp": "2017-11-30" + "user": "RUTHERFORD BLAISE", + "timestamp": "2021-05-20" } ], "associatedSites": [ { - "uuid": "f4dfabd0-6e7e-4468-9121-7283ddd5762d", - "dateNoted": "2017-08-29", - "notes": "", - "parcelID": "17535", - "siteID": "15261", - "siteRegistry": true - }, - { - "uuid": "504df096-7dff-470e-bda5-e9da3df7069f", - "dateNoted": "2017-05-03", + "uuid": "b73d75c5-b9a1-4ed5-b0b8-64c0e5fd6008", + "dateNoted": "2015-01-06", "notes": "", - "parcelID": "18010", - "siteID": "15585", + "parcelID": "16818", + "siteID": "15472", "siteRegistry": false - }, - { - "uuid": "f2d68378-0f69-4922-a021-a97a123f709c", - "dateNoted": "2020-10-09", - "notes": "", - "parcelID": "17546", - "siteID": "20818", - "siteRegistry": true } ] }, { - "uuid": "343f218e-3a17-46c2-b9a7-9f77ec83d6da", - "siteID": 20872, - "address": "928 Holden Fork", - "latitude": 54.4391, - "longitude": -127.3842, - "lastUpdated": "2019-12-13", - "city": "Gilbert", + "uuid": "2d2d5a43-5e21-48f3-b829-32ccae47038f", + "siteID": 17276, + "address": "7005 Lilian Plaza", + "latitude": 58.712, + "longitude": -130.9308, + "lastUpdated": "2016-08-05", + "city": "Broomfield", "region": "Mainland/Southwest", - "victoriaFile": "26250-20/15860", + "victoriaFile": "26250-20/11148", "regionalFile": "N/A", "parcelIDs": [ - 4757755, - 6784347, - 9907379, - 2609491, - 8527019 + 2792168, + 5264498, + 7586676, + 2190585, + 1127184 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "80cc15fe-8b88-4987-82fa-110d902acc58", - "createdAt": "2021-06-02", - "completed": "2020-08-18", - "initiated": "2016-03-18", - "ministryContact": "WILKINSON KATHARINA", + "uuid": "03827a01-f27d-4920-a454-ef5416476c1c", + "createdAt": "2022-08-20", + "completed": "2021-06-13", + "initiated": "2022-01-29", + "ministryContact": "MACEJKOVIC GRANT", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -20741,84 +23573,26 @@ ], "notationParticipants": [ { - "uuid": "21a986ce-a999-4267-99f5-442d44b41836", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "uuid": "d7f178cd-b933-4603-9c04-6e5a48f46340", - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "uuid": "27c07061-6e94-424d-b332-8b21d85ac210", + "uuid": "ff9fdc57-ce5d-4785-b63e-58e3a033e70a", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "uuid": "8b3c8063-29b8-4dcb-b5be-92fb9ecc9c0f", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "5f3e666e-0757-41f4-ab13-2ac55830547b", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - } - ], - "siteRegistry": false - }, - { - "uuid": "0af9396a-e0dc-4d3e-9c55-8ec3f43d550a", - "createdAt": "2023-06-26", - "completed": "2015-12-23", - "initiated": "2019-03-22", - "ministryContact": "BERNHARD BRENDAN", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "uuid": "ad271f18-8946-462e-a6bc-fe66d96c2d68", + "uuid": "c6376852-6517-4ccc-9f93-4e04900d94a2", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "uuid": "6209ceb9-21da-47b1-af6d-0279d5878fd9", - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "uuid": "e10dc78a-dae7-4e5d-8301-7808bff777bb", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "uuid": "ecf8db06-71a8-4196-8127-539bdf70f8d6", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "a1cb5622-f067-4a5c-a8da-76dacc1622ae", - "createdAt": "2017-08-24", - "completed": "2021-04-20", - "initiated": "2022-01-22", - "ministryContact": "RODRIGUEZ TALON", + "uuid": "31f307e9-30bb-4b21-9c9d-46c13ca59b29", + "createdAt": "2019-04-30", + "completed": "2021-08-02", + "initiated": "2014-12-01", + "ministryContact": "HAND GEORGE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -20827,68 +23601,28 @@ ], "notationParticipants": [ { - "uuid": "72673113-7a36-4a7d-9a2a-79baf0508397", + "uuid": "0e34fc7c-0815-4f59-824d-8f184326fe65", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "uuid": "df3cbc60-b34e-43ec-8d64-b345c036c6c6", - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "uuid": "6b6850b6-0021-47da-a4df-8c851fca3259", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "uuid": "d84c9f71-c4e0-4c01-a53b-6a061c1c08a3", - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - } - ], - "siteRegistry": true - }, - { - "uuid": "3b9b2a9d-603e-41d1-b717-82b61fffe8a3", - "createdAt": "2015-06-11", - "completed": "2019-11-20", - "initiated": "2015-08-15", - "ministryContact": "RODRIGUEZ GEOVANNI", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "uuid": "ec228406-4653-40c8-a603-deaf06497fea", - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", "siteRegistry": true }, { - "uuid": "9edc907b-ad93-49d0-b7ac-08ca25a47f14", + "uuid": "b86cb9cd-06ab-453c-a279-fe04a0791249", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false }, { - "uuid": "2b771ef7-fca5-41c0-ade4-70afe8794cf8", + "uuid": "af429c6a-aa4f-4216-b77b-3d0284107341", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false }, { - "uuid": "64913681-af6d-43e6-8ec5-1849326b4842", + "uuid": "ebba966a-9f27-454a-85a5-03937cff6b9f", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true } ], "siteRegistry": false @@ -20896,54 +23630,32 @@ ], "participants": [ { - "uuid": "6ad8ff16-fb70-427a-ac2d-f3019745b6e4", - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2017-09-28", - "startDate": "2023-07-18", + "uuid": "0af5f163-e5ba-45ad-959b-0cb47762f6fa", + "name": "IPSUM", + "endDate": "2019-04-03", + "startDate": "2019-02-22", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "9ca06bdc-63ac-41c5-8eb0-08dadb21a2ef", - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2019-10-24", - "startDate": "2016-11-08", + "uuid": "24835c0c-8462-41d4-aaf4-9dd58b725e22", + "name": "IPSUM", + "endDate": "2021-10-26", + "startDate": "2013-12-09", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": false - }, - { - "uuid": "b72d7b44-b8b8-4b33-a5cb-4d68a2d13bbd", - "name": "SHELL CANADA PRODUCTS", - "endDate": "2016-02-25", - "startDate": "2021-07-02", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": true - }, - { - "uuid": "0c4e4103-f16f-423e-af2d-579c40de40f8", - "name": "AMET, DOLOR SIT", - "endDate": "2019-04-24", - "startDate": "2023-08-17", - "notes": "", - "roles": [ - "EMPLOYEE" - ], "siteRegistry": true }, { - "uuid": "4276654a-9bc0-49cc-a7f7-01eb4a3facc8", + "uuid": "319a3f24-8b45-42b3-9e5e-b78b0308da57", "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2016-07-02", - "startDate": "2019-04-30", + "endDate": "2018-07-14", + "startDate": "2014-05-09", "notes": "", "roles": [ "ORGANIZATION" @@ -20951,126 +23663,181 @@ "siteRegistry": true } ], - "suspectLandUses": [ + "documents": [ { - "uuid": "0e8e9e31-a2cc-43fa-8788-bcb7443f2a40", + "uuid": "6d5bccc8-5184-47da-adde-1ed5adeeb045", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-09-15 (described on Site Profile dated 2019-09-15)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "documentDate": "2016-10-30", + "receivedDate": "2021-12-20", + "uploadedDate": "2019-03-11", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "d6db7607-ce57-4e24-92f8-244800b76bd6", + "name": "AMET, DOLOR SIT", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "b7e9061e-e8e7-4b3b-95c0-2daaaaa7fd99", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": true, + "role": "AUTHOR" + } + ] }, { - "uuid": "81b3ab72-0922-45cb-ae38-dbb67f35f152", - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-06-02 (described on Site Profile dated 2019-06-02)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "uuid": "22b347ff-89ff-43bd-8103-f29a3e44935f", + "siteRegistry": false, + "documentDate": "2014-05-15", + "receivedDate": "2019-01-16", + "uploadedDate": "2017-10-09", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "a8bd5604-b77a-40f8-a1ac-8c30f000c570", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": true, + "role": "AUTHOR" + } + ] } ], - "parcelDescriptions": [ + "suspectLandUses": [ { - "uuid": "5c5e0787-38c4-4bc3-9ea7-78a73d732022", - "siteRegistry": true, - "dateNoted": "2014-12-17", - "parcelID": "16366", - "crownLandUsePIN": "17148", - "crownLandFileNumber": "20343", - "landDescription": "LOT 2 OF LOT 1 BLOCK 2 DISTRICT LOT 4 PLAN 7222" + "uuid": "0a923437-d97b-4003-ac8d-fc020f03cd12", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2015-08-08 (described on Site Profile dated 2015-08-08)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "uuid": "decdcea3-20fe-4b0c-9464-eeaf6caa1906", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2015-05-16 (described on Site Profile dated 2015-05-16)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "uuid": "cb0262be-387a-429c-a202-9d29ad4efb79", + "uuid": "de3e69f3-b502-474d-8d65-4c79c8172ee2", "siteRegistry": true, - "dateNoted": "2021-11-06", - "parcelID": "15321", - "crownLandUsePIN": "18312", - "crownLandFileNumber": "17068", - "landDescription": "LOT 4 OF LOT 4 BLOCK 1 DISTRICT LOT 1 PLAN 4907" + "notes": "INSERTED FOR SITE PROFILE DATED 2020-03-24 (described on Site Profile dated 2020-03-24)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "uuid": "f005b437-6424-49dd-a818-bd35824220da", + "uuid": "6d77f7ed-b952-4204-9ae6-c9f8bebe866b", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2014-11-07 (described on Site Profile dated 2014-11-07)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + } + ], + "parcelDescriptions": [ + { + "uuid": "6cbd6d46-551b-48bd-ae44-bf00e4db81b7", "siteRegistry": false, - "dateNoted": "2020-09-14", - "parcelID": "18431", - "crownLandUsePIN": "19435", - "crownLandFileNumber": "17055", - "landDescription": "LOT 1 OF LOT 5 BLOCK 4 DISTRICT LOT 4 PLAN 9361" + "dateNoted": "2016-12-04", + "parcelID": "18765", + "crownLandUsePIN": "17528", + "crownLandFileNumber": "16230", + "landDescription": "LOT 2 OF LOT 4 BLOCK 1 DISTRICT LOT 4 PLAN 7765" }, { - "uuid": "d5e8f113-ce32-4a92-a495-e36e4e2cbdf8", + "uuid": "27e13605-29c2-4e8a-a03a-7842601eb730", "siteRegistry": false, - "dateNoted": "2015-05-23", - "parcelID": "16801", - "crownLandUsePIN": "16646", - "crownLandFileNumber": "19413", - "landDescription": "LOT 4 OF LOT 1 BLOCK 4 DISTRICT LOT 1 PLAN 5529" + "dateNoted": "2014-10-06", + "parcelID": "17271", + "crownLandUsePIN": "18302", + "crownLandFileNumber": "20037", + "landDescription": "LOT 2 OF LOT 1 BLOCK 4 DISTRICT LOT 3 PLAN 4103" }, { - "uuid": "d5cc745f-32fc-4f8b-a24c-2df77cba8125", + "uuid": "8fae64d5-af1d-4533-ac4b-881832e13e94", "siteRegistry": false, - "dateNoted": "2016-05-21", - "parcelID": "18579", - "crownLandUsePIN": "17125", - "crownLandFileNumber": "16022", - "landDescription": "LOT 3 OF LOT 5 BLOCK 3 DISTRICT LOT 2 PLAN 8018" + "dateNoted": "2018-07-21", + "parcelID": "15917", + "crownLandUsePIN": "19937", + "crownLandFileNumber": "15420", + "landDescription": "LOT 3 OF LOT 4 BLOCK 2 DISTRICT LOT 5 PLAN 6166" + }, + { + "uuid": "65a22e04-e52d-4f20-89bc-13207f4d2297", + "siteRegistry": true, + "dateNoted": "2015-12-12", + "parcelID": "15229", + "crownLandUsePIN": "20549", + "crownLandFileNumber": "17013", + "landDescription": "LOT 3 OF LOT 4 BLOCK 5 DISTRICT LOT 3 PLAN 5154" } ], "siteDisclosures": [ { - "uuid": "ea8c2659-7116-4a96-904c-2eb49175dae7", - "siteRegistry": true, - "dateReceived": "2016-09-04", - "dateCompleted": "2022-06-04", - "dateEntered": "2016-11-08", - "dateRegistrar": "2014-08-25", - "dateLocalAuthorityReceived": "2021-11-20", - "summary": "Rerum officiis aut.\nRerum corporis ea laboriosam.", - "informationUsed": "Consequuntur sunt saepe ex saepe nemo recusandae consequuntur dolorem tempore.\nNesciunt repudiandae maxime quos.\nQuisquam veniam dolor inventore laborum doloremque repellat commodi natus quia.\nEst velit veniam iusto aliquid numquam libero aliquam.", - "pastOrPresentOrders": "Cupiditate eos non id.\nAd odit nobis ipsam debitis ea quidem quasi quo.\nExpedita quam rem tempora voluptas.", + "uuid": "436d5315-5bc8-4ff4-8091-1f80925eeb3c", + "siteRegistry": false, + "dateReceived": "2022-06-10", + "dateCompleted": "2014-12-14", + "dateEntered": "2015-06-24", + "dateRegistrar": "2021-11-24", + "dateLocalAuthorityReceived": "2019-12-22", + "summary": "Ea temporibus non excepturi placeat eligendi cupiditate animi.\nOdit neque sint facilis culpa reiciendis iure.", + "informationUsed": "Possimus placeat excepturi in mollitia sit hic.\nRerum nam vel vitae ipsam architecto sed quod.\nIure eum officiis aperiam autem consequatur quia cumque quae.", + "pastOrPresentOrders": "Dolores a beatae consequatur reprehenderit nam id ab in velit.", "commercialAndIndustrialPurposes": [ { - "uuid": "28a1c73b-72a7-44d9-90ca-7746be994b98", + "uuid": "b31a0ced-18ae-46b0-92a6-3c980f4c51be", "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { - "uuid": "e95339d5-e7e5-4a53-b487-539c9d20dda3", - "scheduleReference": "F2*", + "uuid": "b3418190-0d21-4390-a50d-40a68dcf6976", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { - "uuid": "8a1f8fcb-dfec-4ea8-a6b4-7f6e6fc4cc93", - "scheduleReference": "F2*", + "uuid": "9f5287e1-c24a-42ef-a36e-4a5b22ba3a64", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false + }, + { + "uuid": "a46c51f8-4c3a-41a5-8884-d937e2651c71", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true } ] }, { - "uuid": "ff60fc38-04d9-479d-9b93-c35e9eed5551", - "siteRegistry": false, - "dateReceived": "2020-04-16", - "dateCompleted": "2014-01-16", - "dateEntered": "2019-09-08", - "dateRegistrar": "2016-05-30", - "dateLocalAuthorityReceived": "2018-09-27", - "summary": "Minus pariatur at.\nVoluptatem quis incidunt deleniti.\nConsequatur nostrum quos fuga quas officiis officia exercitationem quam asperiores.", - "informationUsed": "Quam voluptates deleniti perferendis minima eos culpa.\nHarum amet molestias voluptatibus dolorum voluptatibus labore iusto modi veritatis.\nVoluptatum impedit quibusdam doloribus necessitatibus adipisci.\nSoluta delectus perferendis quaerat libero accusamus.\nCumque dolor aspernatur voluptatem corporis vel.", - "pastOrPresentOrders": "Ullam non dolores sequi sint eos labore.\nPlaceat enim magnam et dignissimos rem.", + "uuid": "466df378-c8d3-420e-a50d-3618dd8ac396", + "siteRegistry": true, + "dateReceived": "2015-11-12", + "dateCompleted": "2022-09-24", + "dateEntered": "2018-07-01", + "dateRegistrar": "2014-03-10", + "dateLocalAuthorityReceived": "2023-06-29", + "summary": "Rerum molestiae minus atque enim.\nTotam impedit at ducimus impedit consequuntur amet cumque.\nLabore cum reprehenderit natus.", + "informationUsed": "Unde tenetur ab reiciendis reprehenderit repellat modi officiis nulla molestiae.\nDolorem deleniti vitae aspernatur delectus temporibus.\nExcepturi vel quo atque doloribus ex minus odit.\nVoluptatibus placeat corrupti unde incidunt tenetur.", + "pastOrPresentOrders": "Molestias minima ab quas autem reiciendis magni impedit.", "commercialAndIndustrialPurposes": [ { - "uuid": "1199c9ac-f436-4229-9237-caaeb3469fc1", + "uuid": "437f944f-dd55-4d93-9907-9073e6c643cc", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false }, { - "uuid": "b010d739-1b2c-4595-abc5-6bb1c8a4aa4a", + "uuid": "4e26d3c5-b56d-493b-b2af-011af4996b73", "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "uuid": "883d1d33-b514-422c-aac0-870c336a81ad", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { - "uuid": "cef995d2-154b-4a92-8f3f-1b2d3042a66d", + "uuid": "b8d9e879-e7b9-44b5-a0f0-4769dbac2098", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true @@ -21080,114 +23847,121 @@ ], "activityLog": [ { - "uuid": "193c59d1-d871-4507-8c55-6d8a2a0b44b2", + "uuid": "b3abfaec-844b-4b9d-9840-7d5a3c5ef4ce", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "PFEFFER HOLLIS", - "timestamp": "2017-08-21" + "user": "O'CONNER MILO", + "timestamp": "2021-07-30" }, { - "uuid": "a9c5c488-9d08-434e-9db2-8873840da708", + "uuid": "f221c8a0-8050-44f8-bf81-5ed603e4ffc4", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "CRIST CATHY", - "timestamp": "2021-10-31" + "user": "SCHMITT BENNETT", + "timestamp": "2019-06-11" }, { - "uuid": "38d8ff9c-12d6-4b27-8d87-3cae0bad8d5b", - "siteRegistry": true, + "uuid": "8097d8dd-c8d4-4112-9d4a-d9c664cd1d70", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "FEENEY FREEDA", - "timestamp": "2019-10-23" + "user": "CORMIER DONNY", + "timestamp": "2018-07-27" }, { - "uuid": "7f1289fa-c439-464c-b53a-776a96856d5d", + "uuid": "267bfe08-6e2d-4847-bd25-9758a2c02673", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "HERMANN ANNABEL", - "timestamp": "2015-02-05" + "user": "CHRISTIANSEN GENERAL", + "timestamp": "2017-08-23" }, { - "uuid": "f85a8a45-8347-4c98-abda-6fc2a45eb0ef", - "siteRegistry": true, + "uuid": "d7afe41f-bedd-438b-97aa-e8c561a24a12", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "MCKENZIE LEONARDO", + "timestamp": "2019-09-25" + }, + { + "uuid": "44d9efea-1172-49f2-b5ec-13e599ca01c5", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "FADEL LAURIANE", - "timestamp": "2021-02-23" + "user": "THOMPSON ANTONETTA", + "timestamp": "2014-04-06" }, { - "uuid": "a8098843-81b7-4d31-97a0-fc67d2c09f9a", + "uuid": "157ca24a-355f-47c2-9917-dc982554e873", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "NOLAN RUSSELL", - "timestamp": "2017-01-03" + "user": "MOHR JOE", + "timestamp": "2022-05-07" }, { - "uuid": "813b37c8-919a-4fd9-96f9-c7d34e0ddaea", + "uuid": "d0cbf834-c3ca-4d8d-8028-bd4bb5d5d278", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "RAYNOR ANSLEY", - "timestamp": "2022-06-12" + "user": "HOWE GILBERTO", + "timestamp": "2017-06-18" }, { - "uuid": "87f202c1-9289-49e5-81ec-b320cc265073", + "uuid": "414cc905-2f14-47b9-ba89-568c3585ffb1", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "LYNCH MCKENZIE", - "timestamp": "2014-08-08" + "user": "BOGISICH ELVIS", + "timestamp": "2019-10-07" }, { - "uuid": "4a2c2dd4-efbf-47b9-993a-004365f878c3", - "siteRegistry": true, + "uuid": "baf3eb87-868d-45ad-95c8-62251a3f1e74", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "BOGAN CLINT", - "timestamp": "2014-02-28" + "user": "ZEMLAK MURPHY", + "timestamp": "2017-06-09" } ], "associatedSites": [ { - "uuid": "b89221da-fbae-4f12-899a-ae86971dc786", - "dateNoted": "2015-08-14", + "uuid": "3087704a-2158-4126-9997-6b0d7c075495", + "dateNoted": "2016-06-17", "notes": "", - "parcelID": "17557", - "siteID": "16133", - "siteRegistry": false + "parcelID": "19135", + "siteID": "18132", + "siteRegistry": true }, { - "uuid": "e7b9c7a0-373a-47cd-aedd-ab8fdc1e816e", - "dateNoted": "2019-10-11", + "uuid": "5c178487-1d0c-469d-aa43-474fe813c0b4", + "dateNoted": "2021-06-22", "notes": "", - "parcelID": "16366", - "siteID": "17170", - "siteRegistry": false + "parcelID": "17222", + "siteID": "17404", + "siteRegistry": true } ] }, { - "uuid": "64d882aa-84e9-4f57-841e-d7c020317129", - "siteID": 18893, - "address": "92104 Shanahan Forest", - "latitude": 53.2337, - "longitude": -138.1792, - "lastUpdated": "2017-05-05", - "city": "Gordonfort", + "uuid": "0aee84ef-091e-4725-9525-8eaf406be11a", + "siteID": 18365, + "address": "711 Cassin Course", + "latitude": 53.1274, + "longitude": -122.8431, + "lastUpdated": "2017-02-07", + "city": "Menifee", "region": "Thompson-Okanagan", - "victoriaFile": "26250-20/15683", + "victoriaFile": "26250-20/5089", "regionalFile": "N/A", "parcelIDs": [ - 9666403, - 6712869, - 2642523, - 9326959, - 894962 + 8808372, + 9882593, + 8789895, + 7484581, + 4409996 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "c3b53ee3-e158-4141-8c33-a84df34f6968", - "createdAt": "2023-02-27", - "completed": "2023-08-04", - "initiated": "2018-10-05", - "ministryContact": "HELLER VICENTE", + "uuid": "18be6cf8-9f2e-44f5-bc7b-494453b9e116", + "createdAt": "2016-08-25", + "completed": "2023-03-16", + "initiated": "2019-02-19", + "ministryContact": "LESCH DANIKA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -21196,38 +23970,78 @@ ], "notationParticipants": [ { - "uuid": "4fd23e83-5329-4850-911b-eb83a6cbf13b", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "uuid": "88d36425-d848-46eb-b03f-3cd7a3d9bec6", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "0ce34dea-9922-4c7b-ba01-fd36df01aef9", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": false }, { - "uuid": "6d28ea0a-ec02-4579-a7cd-a0a873250242", + "uuid": "2f12dd48-681d-4275-a24c-970528e0b589", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "97b2bad7-835b-4f66-b318-d2096c057578", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "uuid": "900d8186-b386-48ca-9bcd-310aba7ab89b", + "createdAt": "2022-10-09", + "completed": "2016-12-17", + "initiated": "2019-09-20", + "ministryContact": "BAHRINGER CHAUNCEY", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "uuid": "618aa33e-dd57-4dd1-b871-bf4268f83571", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": true }, { - "uuid": "9ad4311d-e450-445c-9e56-6ef1fb9fbbcd", + "uuid": "82f38cf7-a9d5-4a3a-9d4c-690b029d4459", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true }, { - "uuid": "bf91ee06-2202-4dbb-804a-4cc608cc972d", + "uuid": "f2061f7e-9dc0-43c8-95a6-f54591d1850b", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false + }, + { + "uuid": "6c1c9fa6-f927-43a2-be0d-2d8c905bbb4a", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false } ], "siteRegistry": false }, { - "uuid": "3a09b036-daaa-4d43-bb16-ab1dcd6d9405", - "createdAt": "2013-10-27", - "completed": "2018-08-25", - "initiated": "2017-08-13", - "ministryContact": "HAUCK PRINCESS", + "uuid": "5675d46b-bfaf-4d54-b4c1-03d6ba6d12b4", + "createdAt": "2021-09-15", + "completed": "2023-07-02", + "initiated": "2013-12-23", + "ministryContact": "MURRAY CRISTIAN", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -21236,16 +24050,28 @@ ], "notationParticipants": [ { - "uuid": "46097462-bc29-431e-8b88-99970c10e75b", - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "403795d4-b27f-4891-8dd6-40c835695977", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false }, { - "uuid": "19b01118-c22e-40ab-a71f-27c69ff1e42f", + "uuid": "c536b248-95b9-48a9-b473-20f5746e621f", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "3f89175f-384d-4aa0-9680-4945d4d929f1", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": false + }, + { + "uuid": "5984b9eb-b1e0-45c4-a502-d1c93de9a7e2", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true } ], "siteRegistry": false @@ -21253,125 +24079,208 @@ ], "participants": [ { - "uuid": "306897af-5a58-4395-bbac-1e2cd2f472cd", - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2023-10-08", - "startDate": "2022-11-20", + "uuid": "fdc48e84-e8bf-4c95-a098-6cc995a77690", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2017-02-08", + "startDate": "2022-03-08", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "4b44d08e-1b05-46dd-90cb-55a2896a0f70", + "uuid": "e40386e9-fb1e-46ad-b7ea-2e80c24d34df", "name": "SHELL CANADA PRODUCTS", - "endDate": "2013-11-09", - "startDate": "2017-04-15", + "endDate": "2020-07-04", + "startDate": "2020-07-09", "notes": "", "roles": [ "EMPLOYEE" ], + "siteRegistry": true + }, + { + "uuid": "ad034720-9471-4ef2-91c3-5e943e1d4d97", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2023-05-07", + "startDate": "2021-11-22", + "notes": "", + "roles": [ + "ORGANIZATION" + ], "siteRegistry": false } ], - "suspectLandUses": [ + "documents": [ { - "uuid": "653ece3a-80ec-42ff-89ca-4671b2286dd4", - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-10-08 (described on Site Profile dated 2016-10-08)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "uuid": "9b95161f-ebef-45b3-8cfe-b06014490804", + "siteRegistry": true, + "documentDate": "2017-12-02", + "receivedDate": "2019-06-02", + "uploadedDate": "2019-06-10", + "title": "Preliminary Site Investigation, Detailed Site Investigation and Remedial Plan for the Management Area adjacent to the Shell Site at 1503 West 41st Ave", + "participants": [ + { + "uuid": "5f7c3dd4-562c-4cd6-b323-43390826409c", + "name": "AMET, DOLOR SIT", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "d76315bc-3b63-4929-bcce-bb634b9e6136", + "name": "IPSUM", + "siteRegistry": true, + "role": "AUTHOR" + } + ] }, { - "uuid": "48671d3b-a568-4a06-891a-5f8957622cd9", + "uuid": "b684b70f-fcdd-4772-a90f-773d60931525", + "siteRegistry": false, + "documentDate": "2018-07-08", + "receivedDate": "2021-07-24", + "uploadedDate": "2019-01-01", + "title": "Summary of Site Conditions, 1537 W 41st Avenue, Vancouver", + "participants": [ + { + "uuid": "8439cff9-2537-448f-bfae-f81df4b4a823", + "name": "IPSUM", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "c16da6e4-aa8b-442c-94e3-4c55ca07feb3", + "name": "IPSUM", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "0fff3140-41a0-4c5b-91a9-9fcbbcfe8c70", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": true, + "role": "AUTHOR" + } + ] + } + ], + "suspectLandUses": [ + { + "uuid": "ebef30f8-600d-46d4-a8ca-822cf8566960", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-08-27 (described on Site Profile dated 2018-08-27)", + "notes": "INSERTED FOR SITE PROFILE DATED 2023-09-14 (described on Site Profile dated 2023-09-14)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "uuid": "3247d4d0-805f-4c0f-b018-3744c887e04e", + "uuid": "f3011416-13ae-4e8f-a6d8-bc2d967d9968", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-07-09 (described on Site Profile dated 2016-07-09)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "notes": "INSERTED FOR SITE PROFILE DATED 2014-05-21 (described on Site Profile dated 2014-05-21)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "uuid": "40125363-54e5-4bc2-9e34-ba3e28bdfdf1", + "uuid": "c2cc6403-f199-4a8b-91dc-248043062f03", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2013-12-09 (described on Site Profile dated 2013-12-09)", + "notes": "INSERTED FOR SITE PROFILE DATED 2022-03-06 (described on Site Profile dated 2022-03-06)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" - }, - { - "uuid": "f5b9fc6c-cf9c-4ae4-9d6e-3428cf3670d6", - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-03-05 (described on Site Profile dated 2017-03-05)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], "parcelDescriptions": [ { - "uuid": "cc13fbc2-73d2-4feb-96be-7a08444ad2ec", + "uuid": "2b72372f-3df6-4153-9dd7-3d6b44187a35", "siteRegistry": true, - "dateNoted": "2014-12-09", - "parcelID": "19550", - "crownLandUsePIN": "18875", - "crownLandFileNumber": "15482", - "landDescription": "LOT 2 OF LOT 2 BLOCK 3 DISTRICT LOT 4 PLAN 9415" + "dateNoted": "2017-10-30", + "parcelID": "20340", + "crownLandUsePIN": "16749", + "crownLandFileNumber": "16029", + "landDescription": "LOT 1 OF LOT 1 BLOCK 3 DISTRICT LOT 5 PLAN 6079" }, { - "uuid": "e7841d68-d5b7-48ac-9d70-70b48ab09d76", + "uuid": "8cc81e47-564a-477f-866c-37cc1633c720", "siteRegistry": false, - "dateNoted": "2021-10-06", - "parcelID": "17922", - "crownLandUsePIN": "19755", - "crownLandFileNumber": "20386", - "landDescription": "LOT 5 OF LOT 2 BLOCK 5 DISTRICT LOT 4 PLAN 6562" + "dateNoted": "2017-08-30", + "parcelID": "17721", + "crownLandUsePIN": "16178", + "crownLandFileNumber": "16734", + "landDescription": "LOT 5 OF LOT 4 BLOCK 2 DISTRICT LOT 2 PLAN 4452" }, { - "uuid": "33feb9b0-2f56-4489-b171-d584fa7f76a5", - "siteRegistry": false, - "dateNoted": "2015-04-20", - "parcelID": "18199", - "crownLandUsePIN": "18304", - "crownLandFileNumber": "15669", - "landDescription": "LOT 1 OF LOT 1 BLOCK 1 DISTRICT LOT 1 PLAN 7006" + "uuid": "d8cede7d-141a-44c6-8025-0d558c1b3d17", + "siteRegistry": true, + "dateNoted": "2014-06-06", + "parcelID": "20736", + "crownLandUsePIN": "20986", + "crownLandFileNumber": "15403", + "landDescription": "LOT 2 OF LOT 2 BLOCK 4 DISTRICT LOT 2 PLAN 8226" }, { - "uuid": "f89dcc69-48f4-4674-8176-043b85e9ef2f", - "siteRegistry": false, - "dateNoted": "2018-05-28", - "parcelID": "16879", - "crownLandUsePIN": "19352", - "crownLandFileNumber": "15903", - "landDescription": "LOT 3 OF LOT 4 BLOCK 5 DISTRICT LOT 3 PLAN 3064" + "uuid": "f954aac1-8307-46b7-8d3b-7fc999227dd9", + "siteRegistry": true, + "dateNoted": "2016-12-09", + "parcelID": "19951", + "crownLandUsePIN": "18320", + "crownLandFileNumber": "20488", + "landDescription": "LOT 2 OF LOT 2 BLOCK 3 DISTRICT LOT 2 PLAN 7632" } ], "siteDisclosures": [ { - "uuid": "38eb074a-30b0-4079-9dce-acc8824036e3", - "siteRegistry": false, - "dateReceived": "2022-12-16", - "dateCompleted": "2018-12-01", - "dateEntered": "2016-08-24", - "dateRegistrar": "2017-11-02", - "dateLocalAuthorityReceived": "2023-07-27", - "summary": "Molestias nihil sint itaque doloremque quibusdam autem quidem quam eaque.\nQuae facere voluptate dolore reiciendis beatae labore qui expedita.\nEst repellendus quas laboriosam ex.", - "informationUsed": "Iste est sit ex explicabo corrupti odit.\nNulla impedit vel consectetur maxime.\nIncidunt qui blanditiis incidunt optio est sit autem odit doloremque.\nCupiditate recusandae in similique.\nPerspiciatis saepe nemo quo repudiandae ullam modi.", - "pastOrPresentOrders": "Veritatis ipsum vero qui.\nAb hic id ea veritatis.", + "uuid": "eb46aa16-9645-4ed3-9586-e7ac05c38828", + "siteRegistry": true, + "dateReceived": "2022-04-20", + "dateCompleted": "2014-04-15", + "dateEntered": "2022-10-12", + "dateRegistrar": "2019-02-12", + "dateLocalAuthorityReceived": "2016-04-24", + "summary": "Natus cupiditate facere nemo architecto ab recusandae debitis nobis aliquam.\nAperiam unde exercitationem optio aspernatur in recusandae consectetur qui vitae.\nMagnam molestiae nostrum ex est reiciendis vel vitae.", + "informationUsed": "Sequi iste similique voluptatem velit eveniet dicta corrupti rerum hic.\nDoloribus nisi labore facere.\nPorro modi saepe asperiores optio expedita neque officiis maxime ipsam.\nTempora quibusdam maxime.", + "pastOrPresentOrders": "Officiis omnis similique natus adipisci tempora maiores veniam veritatis perferendis.", "commercialAndIndustrialPurposes": [ { - "uuid": "d973b981-9bfa-43ef-a823-b04f57137af9", + "uuid": "6e7c8687-6fb9-4e09-9f45-3818cb516bfc", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "uuid": "467e0da4-5b81-4fc0-a46e-a366ba168e80", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "f18df5e2-6b5a-4305-9996-fb3b7f1d5e55", + "uuid": "a52811fd-2353-4209-ad13-4f6946e2f5c0", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + } + ] + }, + { + "uuid": "63436247-cc74-4a16-bcb9-711bef8a7ad4", + "siteRegistry": true, + "dateReceived": "2023-04-20", + "dateCompleted": "2020-06-03", + "dateEntered": "2015-07-18", + "dateRegistrar": "2022-08-03", + "dateLocalAuthorityReceived": "2019-09-11", + "summary": "Rerum atque voluptatibus.", + "informationUsed": "Alias animi veritatis tempore molestias voluptatem praesentium tempore.\nDolore reprehenderit suscipit sequi quas nesciunt possimus harum.\nUnde explicabo consectetur doloribus saepe voluptas.\nConsectetur corrupti cumque nihil vitae velit vero tempore.\nIn voluptatem quae similique exercitationem laborum qui adipisci assumenda blanditiis.", + "pastOrPresentOrders": "Qui error nihil dicta.\nConsectetur nemo nam nobis quas.\nOfficiis delectus occaecati dignissimos vero quasi distinctio consectetur et.", + "commercialAndIndustrialPurposes": [ + { + "uuid": "617250e1-0d94-49a1-8b77-e3edc575bc13", "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "uuid": "399ce656-76cc-4c93-809c-c43e812ac826", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false }, { - "uuid": "b9670c70-182b-45dc-8280-5113c0bfcf70", + "uuid": "bdee7cf4-6312-495d-958b-acb315313cb5", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false @@ -21381,108 +24290,121 @@ ], "activityLog": [ { - "uuid": "349c620a-73e6-48c7-89de-218f00c7fd36", + "uuid": "7d2a6fe2-4bd1-4023-86de-0f3932e9aca4", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "WOLF FREDDIE", + "timestamp": "2019-09-04" + }, + { + "uuid": "cc409275-e876-42e6-9035-e7a460d05032", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "LANG HASKELL", - "timestamp": "2022-04-08" + "user": "KLEIN TRENTON", + "timestamp": "2018-10-31" }, { - "uuid": "a4cdc1fe-b688-447e-a3bd-c3ad2763804d", + "uuid": "c8e04a9b-9a75-48a8-8d20-abd7799f3fc1", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "STROMAN GUSTAVE", - "timestamp": "2021-06-18" + "user": "SANFORD JOANA", + "timestamp": "2016-09-22" }, { - "uuid": "daf434ee-18ae-48e3-a57c-8e6a697bb0fa", + "uuid": "e13d1b54-a038-4d25-997e-cafcec82a2a4", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "HOMENICK MEAGAN", - "timestamp": "2015-04-12" + "user": "ERDMAN DARIANA", + "timestamp": "2020-04-09" + }, + { + "uuid": "30deb77a-16ec-4674-ab37-856155883dec", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "SHIELDS BERTHA", + "timestamp": "2023-03-12" }, { - "uuid": "d236c994-a245-4beb-b809-9020db65622b", - "siteRegistry": true, + "uuid": "6301dab1-bb6e-4ac4-b685-7ac7f3013838", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "MCKENZIE IMELDA", - "timestamp": "2017-03-30" + "user": "COLLIER SYLVIA", + "timestamp": "2016-12-22" }, { - "uuid": "a4d286f3-c855-4b3d-972d-929a872f64a0", + "uuid": "d2d80162-50d3-4571-be5f-19aef91e1bbd", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "SCHAEFER SUMMER", - "timestamp": "2022-11-25" + "user": "KOEPP TALIA", + "timestamp": "2021-01-04" }, { - "uuid": "fc5d1824-0199-4eaf-9c08-50e668a470a0", + "uuid": "25d9ef9d-26f3-4d4d-93ce-86db119cbdfb", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "KUNZE LORENZO", - "timestamp": "2017-07-17" + "user": "BECKER KEON", + "timestamp": "2022-08-02" }, { - "uuid": "01f19587-96f5-4d43-ab49-68fe7f2f9bdd", + "uuid": "e3478bc6-9469-4088-acae-fc40541c5eb5", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "WAELCHI WELDON", - "timestamp": "2017-02-21" + "user": "ULLRICH ARMANI", + "timestamp": "2014-02-16" + }, + { + "uuid": "d62f6a09-3393-40f0-8b8d-7660d9a64ceb", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "LEDNER AMERICA", + "timestamp": "2013-12-16" } ], "associatedSites": [ { - "uuid": "c44bf8a0-743f-461c-bb99-fe4a4ef83005", - "dateNoted": "2019-10-23", - "notes": "", - "parcelID": "20682", - "siteID": "17437", - "siteRegistry": false - }, - { - "uuid": "40a4872e-09c2-4e19-ac9a-1f70f15990f3", - "dateNoted": "2021-11-02", + "uuid": "6e85eb2b-9883-4e6b-b5ee-2351dbdb504b", + "dateNoted": "2017-12-21", "notes": "", - "parcelID": "19328", - "siteID": "17913", + "parcelID": "15887", + "siteID": "17053", "siteRegistry": false }, { - "uuid": "6ce15145-c38e-4605-9f0a-a862b5717221", - "dateNoted": "2020-11-02", + "uuid": "2386696e-e406-4554-90c7-904076c1250f", + "dateNoted": "2015-09-20", "notes": "", - "parcelID": "19228", - "siteID": "18183", + "parcelID": "15482", + "siteID": "20450", "siteRegistry": false } ] }, { - "uuid": "822fc962-e4d8-406d-a5d7-faf1e40016d8", - "siteID": 18040, - "address": "2655 Vilma Parkways", - "latitude": 48.8282, - "longitude": -138.4554, - "lastUpdated": "2022-05-09", - "city": "Willside", - "region": "Vancouver Island/Coast", - "victoriaFile": "26250-20/18610", + "uuid": "128a4fce-0a2e-45f3-b294-45d5ef5140b0", + "siteID": 17785, + "address": "32042 Colin Shores", + "latitude": 54.619, + "longitude": -123.3847, + "lastUpdated": "2016-09-12", + "city": "Fond du Lac", + "region": "Cariboo", + "victoriaFile": "26250-20/14580", "regionalFile": "N/A", "parcelIDs": [ - 4455055, - 5804194, - 1905430, - 3637485, - 6951705 + 6370660, + 3937477, + 3074490, + 378129, + 1758160 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "c7d4b7a8-a8d3-4798-9a7f-b72a45040879", - "createdAt": "2022-11-19", - "completed": "2019-10-17", - "initiated": "2017-03-09", - "ministryContact": "O'CONNER CARMELLA", + "uuid": "2ac0c01f-907b-4680-a25d-4e79acca090d", + "createdAt": "2019-08-11", + "completed": "2022-10-26", + "initiated": "2014-11-18", + "ministryContact": "CORMIER TRUDIE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -21491,38 +24413,72 @@ ], "notationParticipants": [ { - "uuid": "229f4ee8-96a2-4616-8280-0cd10bcfbeab", + "uuid": "01fcbc13-99be-4080-b2a1-3d34684cb1ea", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true + "role": "SUBMITTED BY", + "siteRegistry": false }, { - "uuid": "1590c2fd-0805-45be-b4e1-f9886b1ac246", + "uuid": "bd66888c-2a66-4d7b-b3d0-4e9aabbe75e0", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "uuid": "9b00efd6-bf3c-4d25-ac53-aace80b249b8", + "createdAt": "2015-09-19", + "completed": "2017-02-03", + "initiated": "2015-09-21", + "ministryContact": "TREMBLAY ASHTYN", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "uuid": "225ef277-edc7-4821-8b1d-1269f0295071", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "bed31572-3136-4dc6-83aa-763f5c14076e", - "name": "SHELL CANADA PRODUCTS", + "uuid": "de64f547-7270-4aa7-b653-8510f5d8fe65", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "6c4e2c06-7fe0-4db0-942c-7f8cd4cc9774", + "uuid": "cc5ffc2a-b289-4994-9740-f534a2feb74f", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "uuid": "c430a011-b5c0-44ce-991a-9f41442329a1", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true + }, + { + "uuid": "c4e7075c-9621-498f-988d-11d1c80eb9fd", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false } ], "siteRegistry": false }, { - "uuid": "52cc69a2-6e48-49db-97c6-443c527fc052", - "createdAt": "2016-02-14", - "completed": "2021-06-25", - "initiated": "2016-09-10", - "ministryContact": "GISLASON ISABELL", + "uuid": "6c9e42dd-8e93-436d-8446-f2ed32be284b", + "createdAt": "2015-10-21", + "completed": "2016-08-06", + "initiated": "2018-02-11", + "ministryContact": "GERLACH DOMINIC", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -21531,44 +24487,60 @@ ], "notationParticipants": [ { - "uuid": "ac25b9da-206b-402f-a9a4-1377406daa37", + "uuid": "6e5be8c1-0e82-4f7d-b86a-b0afb697987a", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false }, { - "uuid": "16c61ae1-4d9f-488c-9464-381b0a03e99b", + "uuid": "6c4d40cd-4c02-4915-9c1e-370c086367b7", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true }, { - "uuid": "06b00150-0aec-46ff-b5b7-4a15cf6534f8", - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "uuid": "1e0d794f-ae5d-4f0f-9652-227a615dacd2", + "uuid": "c371f803-1a94-4f5b-afa4-a1676fb79ec8", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true - }, + } + ], + "siteRegistry": false + }, + { + "uuid": "45e7b921-6ac2-47fe-9b88-2bbc6fdd6ddb", + "createdAt": "2022-01-10", + "completed": "2014-08-26", + "initiated": "2021-07-26", + "ministryContact": "BEIER ADRIEN", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ { - "uuid": "b5f27a57-b6fb-4d25-bcb5-22525e2fd4f2", + "uuid": "b998893a-2e4a-488c-bd93-ca3b5745953b", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false + }, + { + "uuid": "d339cd3c-a896-46aa-b64d-8b712542e976", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "0f466b17-8bda-4770-837d-d44076fdb062", - "createdAt": "2019-11-10", - "completed": "2014-10-30", - "initiated": "2019-01-06", - "ministryContact": "MACGYVER FERNANDO", + "uuid": "e535921b-b4c9-4f8a-b6e9-8b35ab15753d", + "createdAt": "2018-08-28", + "completed": "2020-10-17", + "initiated": "2019-03-14", + "ministryContact": "TREMBLAY GINA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -21577,256 +24549,295 @@ ], "notationParticipants": [ { - "uuid": "fca346b8-f463-468a-a0c6-f49421814de6", - "name": "SHELL CANADA PRODUCTS", + "uuid": "71862cd3-de88-4adc-9e79-b5db9c09b8c2", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true }, { - "uuid": "64c6fc79-3093-4069-beae-3297f29f0ab4", + "uuid": "543b2ae7-0e02-4436-9df7-5b50b259c573", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true }, { - "uuid": "fe63e4e2-9594-4338-8dbe-d482a9ffd004", + "uuid": "2b88b4f4-3361-4056-b7dc-45a9c20dbe30", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "330b9997-547b-4b6d-9be4-14e105a34dc4", - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "5b2f2834-d9d6-4ab4-8d47-13f7d587d1b5", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "f7e86e8a-eae4-4d00-959e-0d001875b961", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false + "uuid": "5718fb75-da97-4dee-9391-92f9cb86888a", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true } ], "participants": [ { - "uuid": "f900a2ba-6964-4c6f-b370-c460cca33c6c", - "name": "AMET, DOLOR SIT", - "endDate": "2015-01-20", - "startDate": "2018-10-12", + "uuid": "9a264956-8e4f-4343-b9ff-3d3ef0397425", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2018-07-31", + "startDate": "2016-01-18", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "8b7781fc-cfe8-4cc6-aaba-405ac33b604e", - "name": "AMET, DOLOR SIT", - "endDate": "2016-11-30", - "startDate": "2016-08-06", + "uuid": "ea944fdb-2a99-4401-a62e-0eba43cc3169", + "name": "IPSUM", + "endDate": "2023-09-06", + "startDate": "2019-05-08", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "e35a70a3-4145-40cd-afd4-fe8b64b0b009", - "name": "SHELL CANADA PRODUCTS", - "endDate": "2022-05-19", - "startDate": "2019-02-14", + "uuid": "e02b0ae0-70f1-446d-a610-7dfdb58d124f", + "name": "IPSUM", + "endDate": "2022-08-11", + "startDate": "2022-06-27", "notes": "", "roles": [ "ORGANIZATION" ], "siteRegistry": true + }, + { + "uuid": "a9ae61be-e2cd-4172-9242-1f15d92c3388", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2022-01-12", + "startDate": "2017-02-01", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false } ], - "suspectLandUses": [ + "documents": [ { - "uuid": "6c530746-c254-4d69-b9e9-8cdd954c0119", + "uuid": "1dec28fa-2f45-48f4-b0d0-d0002b1ce5c7", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-02-20 (described on Site Profile dated 2021-02-20)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" - }, - { - "uuid": "eda5f0c5-26d3-45df-b9d4-6bee3f5fa199", - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-11-15 (described on Site Profile dated 2022-11-15)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "documentDate": "2015-01-05", + "receivedDate": "2017-12-14", + "uploadedDate": "2021-04-26", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "765f7cc3-fa9c-4b1f-91d9-074809ff42e0", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "a31f66f8-97b6-4f79-8baf-d55deb0300a4", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": false, + "role": "AUTHOR" + } + ] }, { - "uuid": "c25935ee-ece4-42fd-9426-23794f5d0df5", + "uuid": "41b4ac1e-84a6-446d-9e92-9cfacb7c941e", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-01-31 (described on Site Profile dated 2022-01-31)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "documentDate": "2021-01-07", + "receivedDate": "2020-07-07", + "uploadedDate": "2018-04-23", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "2fed960b-10f9-4ceb-b826-085a29ef769b", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": false, + "role": "AUTHOR" + } + ] } ], - "parcelDescriptions": [ + "suspectLandUses": [ { - "uuid": "e3e0bac8-5181-42f6-bd36-fae74b8e7acb", + "uuid": "bedeef98-4466-4626-8741-7b70c0914ebb", "siteRegistry": true, - "dateNoted": "2020-11-05", - "parcelID": "16981", - "crownLandUsePIN": "16866", - "crownLandFileNumber": "19117", - "landDescription": "LOT 3 OF LOT 4 BLOCK 4 DISTRICT LOT 2 PLAN 3768" + "notes": "INSERTED FOR SITE PROFILE DATED 2015-12-23 (described on Site Profile dated 2015-12-23)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "uuid": "16ee3567-e89b-4161-a9d0-881989e4be33", + "uuid": "b9eafcb3-77c7-4d36-ac9d-41e9c6178ac2", "siteRegistry": true, - "dateNoted": "2021-05-01", - "parcelID": "19338", - "crownLandUsePIN": "16335", - "crownLandFileNumber": "16480", - "landDescription": "LOT 3 OF LOT 2 BLOCK 2 DISTRICT LOT 4 PLAN 3650" - }, + "notes": "INSERTED FOR SITE PROFILE DATED 2023-02-03 (described on Site Profile dated 2023-02-03)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + } + ], + "parcelDescriptions": [ { - "uuid": "29a7c9d7-d43b-4634-91de-40f80c10089a", + "uuid": "3392435e-1073-4a7e-9263-6439f20880ad", "siteRegistry": false, - "dateNoted": "2019-08-30", - "parcelID": "16225", - "crownLandUsePIN": "19153", - "crownLandFileNumber": "19724", - "landDescription": "LOT 3 OF LOT 4 BLOCK 4 DISTRICT LOT 2 PLAN 7336" - }, - { - "uuid": "2e323f06-751c-4234-ab8c-7c73a76d4c38", - "siteRegistry": true, - "dateNoted": "2019-06-01", - "parcelID": "18525", - "crownLandUsePIN": "18930", - "crownLandFileNumber": "17251", - "landDescription": "LOT 5 OF LOT 5 BLOCK 3 DISTRICT LOT 4 PLAN 4392" + "dateNoted": "2022-06-28", + "parcelID": "19825", + "crownLandUsePIN": "18301", + "crownLandFileNumber": "20683", + "landDescription": "LOT 5 OF LOT 3 BLOCK 1 DISTRICT LOT 3 PLAN 9313" }, { - "uuid": "27216adf-361f-4a86-a841-ef5839487e6f", + "uuid": "5af45418-b5cf-43fa-8a47-9c5f132ed559", "siteRegistry": true, - "dateNoted": "2023-03-21", - "parcelID": "15796", - "crownLandUsePIN": "17117", - "crownLandFileNumber": "17930", - "landDescription": "LOT 4 OF LOT 5 BLOCK 5 DISTRICT LOT 1 PLAN 3381" + "dateNoted": "2016-09-20", + "parcelID": "20773", + "crownLandUsePIN": "16714", + "crownLandFileNumber": "16036", + "landDescription": "LOT 1 OF LOT 5 BLOCK 5 DISTRICT LOT 4 PLAN 7544" } ], "siteDisclosures": [ { - "uuid": "1e24c211-a75a-4347-aa23-85e44e7ba720", + "uuid": "754a5ec1-5784-4bb3-91d2-b614be09fe55", "siteRegistry": true, - "dateReceived": "2020-12-11", - "dateCompleted": "2016-08-28", - "dateEntered": "2017-10-10", - "dateRegistrar": "2014-05-09", - "dateLocalAuthorityReceived": "2021-06-30", - "summary": "Itaque soluta odit fugit eum rem.\nVoluptates id excepturi velit ullam in excepturi.", - "informationUsed": "Odio natus debitis iste cum voluptatum praesentium ipsum quia explicabo.\nSint quia fugiat pariatur doloribus incidunt.\nVitae unde veritatis nobis incidunt accusamus eius.\nIure earum porro nisi quo occaecati molestias officia.", - "pastOrPresentOrders": "Debitis alias sit quos eos debitis.", + "dateReceived": "2020-10-23", + "dateCompleted": "2017-06-12", + "dateEntered": "2021-09-20", + "dateRegistrar": "2018-06-01", + "dateLocalAuthorityReceived": "2014-02-21", + "summary": "Consequuntur enim voluptatum architecto quia labore quia veniam cum consequatur.\nPraesentium temporibus velit quam vero voluptate odio.", + "informationUsed": "Enim maxime repellat.\nExcepturi aperiam perspiciatis facere mollitia.\nOptio accusamus hic.\nReiciendis quae magni beatae alias exercitationem.", + "pastOrPresentOrders": "Quam ratione nam tenetur consequuntur voluptatum repellat distinctio odit suscipit.\nReiciendis illum expedita error quisquam quod reprehenderit provident.\nDolore saepe officia consectetur.", "commercialAndIndustrialPurposes": [ { - "uuid": "d43384fa-5a6c-4592-9a7d-26f1bf53c84c", - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true + "uuid": "8f00a8b7-e690-46d4-a49a-4ef965c80377", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false }, { - "uuid": "599cb888-e7b1-4e0e-882f-44472540fbcf", + "uuid": "6ddfa407-9e5b-4e30-9b7b-b27e0f81755d", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "1957f3a6-61ff-47f0-9f48-a51472ed89b8", + "uuid": "78a23aa2-37d7-45b2-a97b-0c2798bf1fef", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false + "siteRegistry": true } ] } ], "activityLog": [ { - "uuid": "3d70a67a-79e1-478a-bacd-bb8d4f4139ce", + "uuid": "ed281489-b4e6-48df-ae21-4ec391173034", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "KEELING SKYLAR", - "timestamp": "2023-06-29" + "user": "LIND JESSICA", + "timestamp": "2014-12-10" }, { - "uuid": "4ab59d0f-1e68-4b34-9705-4857c3eb5232", + "uuid": "973134e0-2d05-46e8-bc03-990f1a360d73", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "SMITHAM ALFREDO", - "timestamp": "2018-01-29" + "user": "NIKOLAUS CARSON", + "timestamp": "2014-10-03" + }, + { + "uuid": "e4efd3bd-cd4f-401c-8d7b-4ead21104f6b", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "LESCH REGINALD", + "timestamp": "2020-04-20" }, { - "uuid": "a8b34f42-5f81-411b-90bd-5df23f346b44", + "uuid": "01a7b8ad-f97a-49bb-8c70-6030ae188214", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "MACGYVER GUNNAR", - "timestamp": "2017-02-14" + "user": "PAUCEK MOZELLE", + "timestamp": "2017-01-05" }, { - "uuid": "f506022b-367c-47e0-ae89-45404a9b06aa", + "uuid": "9aa20ac8-0e55-496e-b8c1-5d20c1b6acce", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "ROMAGUERA OCEANE", - "timestamp": "2014-12-24" + "user": "SCHUMM TALIA", + "timestamp": "2014-04-04" + }, + { + "uuid": "d2139ade-b36b-46ee-8cde-b0b46c56b03c", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "LITTLE BETTY", + "timestamp": "2018-12-27" }, { - "uuid": "c9f976a7-3b67-4bd6-b49a-780f3d77596e", + "uuid": "d515e22b-b171-467e-ac33-71a7068097e8", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "BREITENBERG JEANETTE", - "timestamp": "2020-01-29" + "user": "STAMM JUDY", + "timestamp": "2014-03-07" + }, + { + "uuid": "2b5929d3-4e2d-41aa-b25a-8132b62312e0", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "FRAMI BRIANNE", + "timestamp": "2022-03-16" }, { - "uuid": "fd35aa68-7a6d-432e-8a27-f3bd79b3119a", + "uuid": "3e595944-24f5-40d5-ad44-90ebb7ce9332", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "HAYES-REMPEL ABELARDO", - "timestamp": "2023-10-05" + "user": "FRAMI NIKO", + "timestamp": "2020-05-07" } ], "associatedSites": [ { - "uuid": "ef3735b0-00a8-4b27-b819-4d248f2b183d", - "dateNoted": "2021-12-14", + "uuid": "8476085a-483b-425a-9a28-3b36cbaf3df3", + "dateNoted": "2020-01-18", "notes": "", - "parcelID": "15215", - "siteID": "19479", - "siteRegistry": false + "parcelID": "20347", + "siteID": "16871", + "siteRegistry": true } ] }, { - "uuid": "30289872-30fc-4b5a-9ce8-e5ec493ab8a6", - "siteID": 20490, - "address": "1158 Ofelia Fall", - "latitude": 49.9092, - "longitude": -118.4026, - "lastUpdated": "2016-08-24", - "city": "Tacoma", - "region": "Kootenay", - "victoriaFile": "26250-20/13733", + "uuid": "64bb6eb9-fff3-4303-aaf4-cba34b3e279e", + "siteID": 20450, + "address": "76163 Upton Garden", + "latitude": 53.5599, + "longitude": -123.2624, + "lastUpdated": "2015-05-21", + "city": "Fort Ida", + "region": "Thompson-Okanagan", + "victoriaFile": "26250-20/10621", "regionalFile": "N/A", "parcelIDs": [ - 4691334, - 7556766, - 962841, - 2082082, - 2496005 + 2523740, + 1337172, + 4610032, + 4423484, + 4091534 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "1d3d8b2c-7887-4c54-9025-21cefc46084f", - "createdAt": "2020-11-04", - "completed": "2015-02-03", - "initiated": "2019-05-05", - "ministryContact": "KEELING LAURETTA", + "uuid": "51c5becb-1ef3-471f-aacd-8e50075e1674", + "createdAt": "2016-10-06", + "completed": "2014-11-17", + "initiated": "2016-03-02", + "ministryContact": "SCHADEN-ROBEL MERLIN", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -21835,38 +24846,78 @@ ], "notationParticipants": [ { - "uuid": "4e1e5925-dc4d-46ec-a327-68ff1bbe8779", + "uuid": "f204f1af-d073-4869-8692-bb97fa5b4096", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "7046e14b-db75-4f19-8567-c1e0542e6d2d", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "77014c96-7595-4bdf-88b4-62a59622a8a0", + "uuid": "a341c569-73c9-408e-8392-4792a938094a", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false }, { - "uuid": "fcc1c7f1-6de6-4f6b-9bae-8cf1d289b3bb", + "uuid": "99f430b9-faa7-4110-b548-87a254d1c462", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "uuid": "25a4434d-e687-4cb2-ae12-3f9969087364", + "createdAt": "2022-11-02", + "completed": "2019-05-07", + "initiated": "2021-09-03", + "ministryContact": "SCHULTZ JOHANNA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "uuid": "d6f00cac-034a-47f4-b5bf-aef1815cdc08", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false }, { - "uuid": "4483cf99-3637-4e8c-a1d7-29f7ee51b918", + "uuid": "428d1502-face-4641-b8c3-59fcb7b8286d", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "uuid": "ac917ba6-8c9e-47ec-bc0f-d542e5bbd03a", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "399e9a63-4a45-4e3f-8209-b1e4cb7806d3", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "25a96b9a-89cb-42c1-971b-6caad28269f1", - "createdAt": "2014-10-25", - "completed": "2023-08-01", - "initiated": "2020-06-28", - "ministryContact": "COLLINS QUINN", + "uuid": "6044d4a3-08df-4b5c-b1d7-4288e94f9846", + "createdAt": "2015-10-05", + "completed": "2022-06-21", + "initiated": "2018-03-14", + "ministryContact": "PREDOVIC MADALINE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -21875,56 +24926,145 @@ ], "notationParticipants": [ { - "uuid": "4a88a647-c220-4949-a9c6-43156944bf5f", - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "bde4cb8c-bb99-48b7-b34d-3c5d4b64f38d", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "ce37b245-bf37-4f85-aa97-b340e44d7e23", + "uuid": "29fa660f-ad59-4656-9bb7-46784a7e947f", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true }, { - "uuid": "d0ef447d-72d5-4790-aaed-02214b8ce42e", - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "641d6b6b-619e-42c7-927e-237b02875be1", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "uuid": "cce34b62-4e2a-49ee-9813-3e39ec9e902c", + "createdAt": "2017-06-23", + "completed": "2020-07-08", + "initiated": "2019-03-11", + "ministryContact": "GERLACH GRIFFIN", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "uuid": "69e94a26-ed7c-4193-989d-1c527f4532d0", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", "siteRegistry": false }, { - "uuid": "d70e1639-a106-48bf-b0e3-7cbb7154f078", + "uuid": "7aa62947-5c5a-4aa2-8c5b-8393b442884c", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "02aa72c5-dea8-4770-b128-d75c98815530", + "uuid": "f94e57ca-a940-4cfc-a792-cad0a9206ab3", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false } ], - "siteRegistry": false - } - ], - "participants": [ - { - "uuid": "18499079-bb95-48ad-a077-481142edb4a9", - "name": "AMET, DOLOR SIT", - "endDate": "2015-12-05", - "startDate": "2022-02-26", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "5e27bf4d-4cb5-4b9a-b3a6-6a0979d7dc19", + "uuid": "85ef2ee3-cff8-4ba3-a2f1-17541162674f", + "createdAt": "2022-02-27", + "completed": "2015-07-10", + "initiated": "2017-03-15", + "ministryContact": "HANSEN IGNATIUS", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "uuid": "e0730228-fdf3-484f-b4ee-f1868443a765", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "uuid": "803b2159-68f7-46e0-aee4-7644f86b6e9b", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "uuid": "f3338452-93d5-47c8-a2dc-29011201bc02", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + } + ], + "participants": [ + { + "uuid": "7709f6d8-9159-405b-a2d6-012da49bc771", + "name": "IPSUM", + "endDate": "2016-05-20", + "startDate": "2017-02-01", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "uuid": "55ac592c-86cb-429d-aac8-bddf2a4bf583", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2019-12-08", + "startDate": "2020-04-30", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "uuid": "5c3b0a0c-588f-45f3-a2ce-59cc9349c100", "name": "AMET, DOLOR SIT", - "endDate": "2019-08-21", - "startDate": "2014-05-03", + "endDate": "2022-11-09", + "startDate": "2018-09-05", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "uuid": "fbd2ae91-3ee4-4a9f-bead-3d3896571deb", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2019-12-22", + "startDate": "2014-07-07", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "uuid": "2f5f3f6b-5848-4bdc-bc9b-4ee7e7b97e39", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2018-12-07", + "startDate": "2023-08-12", "notes": "", "roles": [ "ORGANIZATION" @@ -21932,202 +25072,305 @@ "siteRegistry": false } ], - "suspectLandUses": [ + "documents": [ { - "uuid": "cb7b3f7c-da2a-462c-9aa1-a3233013f688", - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2020-04-07 (described on Site Profile dated 2020-04-07)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "uuid": "e5e3ac28-b40b-4bb5-9b02-20514258956e", + "siteRegistry": true, + "documentDate": "2019-06-17", + "receivedDate": "2022-08-27", + "uploadedDate": "2015-03-30", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "856823ed-3b29-423d-95a6-eda6039caadf", + "name": "IPSUM", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "5b3cd220-6be2-452f-8b67-2774ad62c335", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "54ebe5f0-7c9a-461d-ad21-a2689dce8f11", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": false, + "role": "AUTHOR" + } + ] }, { - "uuid": "aacad657-1e7d-429c-bc24-4164493cd5a9", + "uuid": "553f99ef-b14b-49be-ab9b-de1be8b41e1c", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-01-10 (described on Site Profile dated 2016-01-10)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "documentDate": "2022-02-01", + "receivedDate": "2019-02-19", + "uploadedDate": "2017-02-11", + "title": "Summary of Site Conditions, 1537 W 41st Avenue, Vancouver", + "participants": [ + { + "uuid": "82879d36-c786-4f79-9c41-9d96830ab590", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "4e8fcfad-3211-49e1-8d8b-29ef585cb504", + "name": "AMET, DOLOR SIT", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "f688c1f1-3ee9-49f8-996a-eec7a8c14dd2", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": false, + "role": "AUTHOR" + } + ] + }, + { + "uuid": "8f5d9cd0-4e03-486c-9292-2b754c16bd48", + "siteRegistry": false, + "documentDate": "2021-09-18", + "receivedDate": "2022-10-27", + "uploadedDate": "2018-03-12", + "title": "Summary of Site Conditions, 1537 W 41st Avenue, Vancouver", + "participants": [ + { + "uuid": "03469b9a-a3c2-497b-9907-f497cd0aa955", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": false, + "role": "AUTHOR" + } + ] }, { - "uuid": "37ad4c7a-a364-4219-b497-41fe759f8801", + "uuid": "b044c9f6-6a11-463f-a527-291d2508aeeb", + "siteRegistry": false, + "documentDate": "2023-09-23", + "receivedDate": "2021-08-11", + "uploadedDate": "2018-09-10", + "title": "Summary of Site Conditions, 1537 W 41st Avenue, Vancouver", + "participants": [ + { + "uuid": "cda33ada-d9a8-4613-b135-8eeed99715a9", + "name": "IPSUM", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "c728cef8-8dab-4a26-990b-2266eae802e7", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": true, + "role": "AUTHOR" + } + ] + } + ], + "suspectLandUses": [ + { + "uuid": "bfa9fdd5-e8d2-4a80-bc5c-7598681ce832", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-12-20 (described on Site Profile dated 2014-12-20)", + "notes": "INSERTED FOR SITE PROFILE DATED 2019-05-06 (described on Site Profile dated 2019-05-06)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "uuid": "ec1bb63b-19b5-4296-a7c3-31d644997a6f", + "uuid": "6169ee80-e401-45ad-94bf-9bbe70e90d87", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-04-05 (described on Site Profile dated 2017-04-05)", + "notes": "INSERTED FOR SITE PROFILE DATED 2014-07-12 (described on Site Profile dated 2014-07-12)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "uuid": "06b5706a-bb17-476c-9847-014f3eb85220", + "uuid": "159b484a-2f8a-42bd-9848-c566aa91117f", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2017-06-01 (described on Site Profile dated 2017-06-01)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "uuid": "d7651111-cd95-4117-9789-5f404892f245", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-04-13 (described on Site Profile dated 2016-04-13)", + "notes": "INSERTED FOR SITE PROFILE DATED 2016-07-28 (described on Site Profile dated 2016-07-28)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "uuid": "bb231bf9-39da-4977-9531-4e11ff60f3f1", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2020-04-12 (described on Site Profile dated 2020-04-12)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], "parcelDescriptions": [ { - "uuid": "4a89090c-2dde-4775-a1ca-7eaa22fc3db9", + "uuid": "d13f8035-0152-4b74-9048-32926ec651f9", + "siteRegistry": true, + "dateNoted": "2018-03-22", + "parcelID": "17632", + "crownLandUsePIN": "18877", + "crownLandFileNumber": "16089", + "landDescription": "LOT 2 OF LOT 5 BLOCK 3 DISTRICT LOT 5 PLAN 7876" + }, + { + "uuid": "80b6bc2a-f011-43b7-a4ab-69ab57f9221f", "siteRegistry": false, - "dateNoted": "2015-10-27", - "parcelID": "16404", - "crownLandUsePIN": "19113", - "crownLandFileNumber": "19697", - "landDescription": "LOT 5 OF LOT 4 BLOCK 4 DISTRICT LOT 1 PLAN 6744" + "dateNoted": "2020-02-08", + "parcelID": "19801", + "crownLandUsePIN": "19024", + "crownLandFileNumber": "17207", + "landDescription": "LOT 3 OF LOT 2 BLOCK 2 DISTRICT LOT 2 PLAN 5447" + }, + { + "uuid": "3ff7388b-f50d-4f49-aa5a-9ac7c75519b4", + "siteRegistry": true, + "dateNoted": "2018-10-27", + "parcelID": "19231", + "crownLandUsePIN": "16151", + "crownLandFileNumber": "20737", + "landDescription": "LOT 5 OF LOT 2 BLOCK 2 DISTRICT LOT 2 PLAN 7313" + }, + { + "uuid": "806ba51c-87f2-4230-ab05-9a32cbb18b59", + "siteRegistry": true, + "dateNoted": "2017-12-01", + "parcelID": "17649", + "crownLandUsePIN": "16790", + "crownLandFileNumber": "19529", + "landDescription": "LOT 5 OF LOT 5 BLOCK 2 DISTRICT LOT 1 PLAN 5991" }, { - "uuid": "56a61ab0-5986-4195-a0ec-6f8dc80b9d80", + "uuid": "14c175bb-c453-47ad-be37-0ad5ed3b154b", "siteRegistry": false, - "dateNoted": "2023-02-08", - "parcelID": "15865", - "crownLandUsePIN": "20669", - "crownLandFileNumber": "17383", - "landDescription": "LOT 2 OF LOT 2 BLOCK 2 DISTRICT LOT 1 PLAN 3257" + "dateNoted": "2021-11-30", + "parcelID": "20390", + "crownLandUsePIN": "16473", + "crownLandFileNumber": "18928", + "landDescription": "LOT 1 OF LOT 4 BLOCK 2 DISTRICT LOT 4 PLAN 5436" } ], "siteDisclosures": [ { - "uuid": "be43d2f6-881b-4cf7-9a37-b9f6062d1b06", - "siteRegistry": true, - "dateReceived": "2020-12-21", - "dateCompleted": "2017-11-30", - "dateEntered": "2013-11-01", - "dateRegistrar": "2014-08-15", - "dateLocalAuthorityReceived": "2015-04-24", - "summary": "Commodi est suscipit quaerat placeat.\nNemo facilis suscipit architecto.\nDolorum similique voluptas doloribus dolor itaque quos deleniti eum.", - "informationUsed": "Ea suscipit alias consequatur minima.\nBeatae fuga ut ratione molestiae saepe nisi adipisci quod eum.\nCommodi repudiandae nam necessitatibus dolorem.", - "pastOrPresentOrders": "Enim incidunt itaque architecto molestiae.", + "uuid": "95cd3a68-33cd-4e8e-b0f7-888f117d4aeb", + "siteRegistry": false, + "dateReceived": "2023-04-01", + "dateCompleted": "2018-03-24", + "dateEntered": "2022-10-26", + "dateRegistrar": "2020-03-24", + "dateLocalAuthorityReceived": "2021-01-22", + "summary": "Aliquam provident similique laborum occaecati fugit.", + "informationUsed": "Voluptas deserunt saepe.\nNulla saepe quo omnis fuga minima ipsum.\nSit repellendus impedit cumque veniam nulla molestias tempora.\nAliquid quaerat totam iure quasi laboriosam mollitia.\nNumquam quibusdam aut quo fuga illo fugit animi.", + "pastOrPresentOrders": "Ullam necessitatibus laboriosam aliquid vel voluptatibus quasi quos nesciunt odit.\nInventore possimus ullam nobis.", "commercialAndIndustrialPurposes": [ { - "uuid": "6750f370-f042-49e1-b00a-593f747fbd85", + "uuid": "f014eb3c-d069-4734-abb0-d06281f90c25", "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false }, { - "uuid": "380f8ba7-6a8b-47bb-9845-dd8ad5a5762e", - "scheduleReference": "F1*", + "uuid": "d5e36593-634c-42b2-9499-036443f9442d", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "4e98cfbd-ed97-4a0c-bf64-77f97d0e585b", + "uuid": "d2267b74-8108-413d-992f-9e1c04aca5bb", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true + "siteRegistry": false } ] } ], "activityLog": [ { - "uuid": "a5c0f916-a454-4d90-bc34-89cdb641b83a", + "uuid": "db8442d6-f08d-4b04-9d66-a708e3e2b39c", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "KUNZE-MOSCISKI DEION", - "timestamp": "2013-11-03" - }, - { - "uuid": "7512164e-fbca-48f2-8e94-acd3318e72c9", - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "GRIMES BROOKE", - "timestamp": "2018-05-12" - }, - { - "uuid": "56028d40-fff7-428e-9b45-416d30189a39", - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "REICHERT JO", - "timestamp": "2022-07-31" + "user": "HILLS-WELCH TIMMOTHY", + "timestamp": "2018-12-22" }, { - "uuid": "c1299a18-28ac-4f4a-a691-94c89f7b20c5", + "uuid": "406f2ffe-9505-4b02-a0d9-3b3bd45472ca", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "FAY MARQUISE", - "timestamp": "2017-07-20" - }, - { - "uuid": "5f20d931-781e-4a0f-8669-74e36d114960", - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "PARKER ADOLPH", - "timestamp": "2016-03-28" + "user": "STRACKE ANDRE", + "timestamp": "2022-11-18" }, { - "uuid": "656d0565-4530-4e7c-80cb-ae5c1d112208", + "uuid": "c72d234f-f029-4ed2-88b1-2a32ecedd15e", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "PFANNERSTILL GEOFFREY", - "timestamp": "2017-09-26" + "user": "MCCULLOUGH KATHRYN", + "timestamp": "2014-03-27" }, { - "uuid": "95b6ce11-0435-449f-a71f-51d7707b4f8c", + "uuid": "b9fbe838-d760-460b-9317-640ee15995fe", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "BRAUN RAMIRO", - "timestamp": "2023-01-25" + "user": "MULLER EDMOND", + "timestamp": "2015-01-24" }, { - "uuid": "3f74033e-f53a-4234-8e5e-79d31042e96b", + "uuid": "60f9a8c3-cf0e-4cbe-bd36-28da41f67b47", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "WIEGAND LEILA", - "timestamp": "2015-07-09" - }, - { - "uuid": "bec0ea77-ba6d-4094-babe-652d6019a3e3", - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "RAYNOR CRYSTAL", - "timestamp": "2022-09-21" + "user": "MOORE CECIL", + "timestamp": "2018-09-12" } ], "associatedSites": [ { - "uuid": "997a347f-5a9b-469b-8c7e-456a18de3654", - "dateNoted": "2023-04-29", + "uuid": "f3d767e8-cc82-4f75-9abb-61dfd17ecc6f", + "dateNoted": "2015-08-17", "notes": "", - "parcelID": "15666", - "siteID": "20470", - "siteRegistry": false + "parcelID": "15609", + "siteID": "19056", + "siteRegistry": true }, { - "uuid": "561a4828-2fa3-423d-85fd-e83cadb4fd06", - "dateNoted": "2018-06-28", + "uuid": "97e68f29-3ff1-47c7-b922-ebd355d87edd", + "dateNoted": "2021-06-14", "notes": "", - "parcelID": "16811", - "siteID": "20024", + "parcelID": "18609", + "siteID": "18756", "siteRegistry": false + }, + { + "uuid": "edd2c134-042d-4554-81b0-7938290224a0", + "dateNoted": "2022-07-20", + "notes": "", + "parcelID": "19087", + "siteID": "18312", + "siteRegistry": true } ] }, { - "uuid": "579f5bca-9b2c-4832-bc9a-1f5d2c4a9b5f", - "siteID": 17183, - "address": "571 Jaclyn Flat", - "latitude": 53.1571, - "longitude": -127.7996, - "lastUpdated": "2014-10-27", - "city": "Clairetown", - "region": "Cariboo", - "victoriaFile": "26250-20/3934", + "uuid": "880c5943-797a-4d99-b34f-6dda429997b3", + "siteID": 18180, + "address": "889 Kemmer Meadow", + "latitude": 52.5725, + "longitude": -125.4543, + "lastUpdated": "2015-02-13", + "city": "Shoreline", + "region": "Mainland/Southwest", + "victoriaFile": "26250-20/12882", "regionalFile": "N/A", "parcelIDs": [ - 4343389, - 236306, - 6869666, - 9270344, - 8141110 + 4438689, + 7246436, + 4507803, + 887434, + 7170447 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "a6c88726-be72-4940-bdba-7a8c6c0c95dc", - "createdAt": "2015-06-25", - "completed": "2022-03-16", - "initiated": "2015-06-25", - "ministryContact": "ZBONCAK BESSIE", + "uuid": "06f6a5a2-1b71-41c0-a7ac-4482494aa10c", + "createdAt": "2018-03-05", + "completed": "2014-06-27", + "initiated": "2014-01-12", + "ministryContact": "O'CONNER JULIE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -22136,13 +25379,19 @@ ], "notationParticipants": [ { - "uuid": "ae00358e-40cf-48a7-aa93-e7123e677bc2", + "uuid": "81bddbd9-1ef2-4f88-bfcb-81a0d917ff72", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "9a149cb3-70f7-4b87-8eb2-5a9f5b6fd3fe", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true }, { - "uuid": "21e4bfe2-a13f-47ce-9535-b4e4f5422398", + "uuid": "659ac5ed-d1a8-4adc-b4fe-9e108ea12441", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true @@ -22151,11 +25400,11 @@ "siteRegistry": false }, { - "uuid": "34efe562-420d-452c-816c-8a71a019a75a", - "createdAt": "2015-07-24", - "completed": "2017-05-05", - "initiated": "2019-03-22", - "ministryContact": "JACOBSON FLORIAN", + "uuid": "39313eda-5631-4d9f-9752-62faaca732d7", + "createdAt": "2019-12-03", + "completed": "2017-08-30", + "initiated": "2022-10-23", + "ministryContact": "RENNER-HARRIS LEDA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -22164,32 +25413,44 @@ ], "notationParticipants": [ { - "uuid": "598ea16f-d8db-4946-9ced-62527dc1a3fd", + "uuid": "5f386576-27ce-4780-9696-2baa83b8bd7d", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "5e66e7eb-d3a9-4df5-a9d2-3b81ac05e0e1", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "3be0206c-4957-47eb-8cff-174284254b7a", + "uuid": "2816a2de-bd57-4950-938f-41f584e98d1d", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false + "role": "REQUESTED BY", + "siteRegistry": true }, { - "uuid": "21b30b66-084a-4057-aabc-622766d4a8db", + "uuid": "81f37fa6-51be-4f8d-86f8-8ce06559b7b3", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true + }, + { + "uuid": "cc7d963e-361a-458b-9b65-dd6c335587ae", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "472543c5-462d-411b-98fb-6216ae05cc31", - "createdAt": "2021-07-10", - "completed": "2022-02-16", - "initiated": "2018-10-24", - "ministryContact": "NADER KORBIN", + "uuid": "1badcd3b-73b7-4917-86e3-2cf4e519f0cd", + "createdAt": "2023-08-11", + "completed": "2019-02-04", + "initiated": "2015-03-30", + "ministryContact": "WATSICA OPHELIA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -22198,61 +25459,79 @@ ], "notationParticipants": [ { - "uuid": "518c230c-3619-499d-b319-b5d372faa00c", + "uuid": "001e610d-b098-4609-8889-bd539dadc5cb", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "uuid": "b01b96b6-17ed-4900-9ec8-2d16db3de820", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "fbc3f82a-d340-4003-b461-86fc6e6929e2", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "8b884fa5-41a7-4dc5-8407-0c3bc273fd06", + "uuid": "f4a8fb73-7678-4b37-b214-74a06adf0735", "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "uuid": "9141b621-9945-4ab1-bee3-1ceab7452874", + "createdAt": "2023-09-09", + "completed": "2016-11-30", + "initiated": "2020-11-01", + "ministryContact": "TOWNE MARGE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "uuid": "e4730f91-de1d-4b0c-be40-7f8247c2e6a9", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true }, { - "uuid": "8a4fbd3f-09b6-4963-b84e-44423bea3d4e", + "uuid": "e174c45a-a204-4d50-9ff9-69f1d21cdda9", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "uuid": "1f080e11-c33f-4fa2-abab-433b6aadab9e", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "b63729eb-5e20-4c5a-bda3-2674a9ae545a", + "uuid": "3c33b736-5728-4e93-8f09-16ca39a1f0a5", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true + "role": "SUBMITTED BY", + "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false } ], "participants": [ { - "uuid": "2742716c-1a42-442f-95b5-74c55efaaafc", - "name": "SHELL CANADA PRODUCTS", - "endDate": "2022-11-05", - "startDate": "2019-08-18", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": true - }, - { - "uuid": "2034fd58-bb60-4696-bd02-0f972457f42d", - "name": "AMET, DOLOR SIT", - "endDate": "2015-12-09", - "startDate": "2018-07-21", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": true - }, - { - "uuid": "9a1b78c8-69ce-4f1d-894f-dd81e8cc672e", + "uuid": "e598bb23-5f57-4597-a2a3-e169eaa74fcc", "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2016-02-17", - "startDate": "2016-01-24", + "endDate": "2017-01-19", + "startDate": "2015-03-19", "notes": "", "roles": [ "EMPLOYEE" @@ -22260,167 +25539,195 @@ "siteRegistry": true }, { - "uuid": "49f1b641-34f1-4c1f-bdb3-a494b1cefb1f", - "name": "IPSUM", - "endDate": "2017-03-31", - "startDate": "2019-12-19", + "uuid": "2daf4080-cf7e-435b-9bf7-74289ad99d19", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2019-06-07", + "startDate": "2016-07-27", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": false }, { - "uuid": "023b20f3-a801-4c0c-bc93-cfdcd945e9c3", - "name": "AMET, DOLOR SIT", - "endDate": "2017-11-12", - "startDate": "2015-08-21", + "uuid": "b8d8cf18-3bdb-4fbf-ab80-634313c198cf", + "name": "IPSUM", + "endDate": "2016-03-18", + "startDate": "2019-09-18", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": true } ], - "suspectLandUses": [ + "documents": [ { - "uuid": "847e12c0-4ed8-47be-832f-2eff139a19a3", + "uuid": "be54a06d-fff5-476b-938b-bacefc3d3c2e", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-03-20 (described on Site Profile dated 2021-03-20)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "documentDate": "2019-04-21", + "receivedDate": "2017-08-17", + "uploadedDate": "2017-08-23", + "title": "Summary of Site Conditions, 1537 W 41st Avenue, Vancouver", + "participants": [ + { + "uuid": "8a5506ef-1f01-415a-b4f2-68ae285ef8b9", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "3af72d91-eadb-4b42-9b9d-6cd8dcb16a14", + "name": "AMET, DOLOR SIT", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "6f17fd1c-d9b5-4d47-9f57-3668a9ce176a", + "name": "AMET, DOLOR SIT", + "siteRegistry": false, + "role": "AUTHOR" + } + ] }, { - "uuid": "c0dba012-2bce-4f19-9b12-21c8586f00e0", + "uuid": "d2f1f902-0824-4179-a864-3b696deab0e8", + "siteRegistry": false, + "documentDate": "2023-04-05", + "receivedDate": "2020-09-15", + "uploadedDate": "2014-10-16", + "title": "Preliminary Site Investigation, Detailed Site Investigation and Remedial Plan for the Management Area adjacent to the Shell Site at 1503 West 41st Ave", + "participants": [ + { + "uuid": "edf307e3-567e-4201-8445-c29a802e6929", + "name": "AMET, DOLOR SIT", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "a1553696-098d-422e-8c41-af42312f9307", + "name": "IPSUM", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "0301dbfe-6815-482f-b053-2812e205d701", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": true, + "role": "AUTHOR" + } + ] + } + ], + "suspectLandUses": [ + { + "uuid": "971fa1de-e332-4d3c-84fb-e1045e7634b7", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2023-05-10 (described on Site Profile dated 2023-05-10)", + "notes": "INSERTED FOR SITE PROFILE DATED 2015-11-04 (described on Site Profile dated 2015-11-04)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "uuid": "07220c5b-0b65-4e9b-bac4-d86adbf438ab", - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-10-04 (described on Site Profile dated 2016-10-04)", + "uuid": "d5116478-1d91-4231-8542-5510536ef2b7", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2016-02-15 (described on Site Profile dated 2016-02-15)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "uuid": "321b102e-c5f2-4f27-b797-cf0c7e3a822f", - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-04-03 (described on Site Profile dated 2022-04-03)", + "uuid": "720fe3b3-6941-4905-85bd-64c4ae311ce8", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2020-07-17 (described on Site Profile dated 2020-07-17)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], "parcelDescriptions": [ { - "uuid": "d45c36c7-085f-4ef9-a9e5-38f91e59f63d", - "siteRegistry": true, - "dateNoted": "2020-12-29", - "parcelID": "20893", - "crownLandUsePIN": "18009", - "crownLandFileNumber": "20626", - "landDescription": "LOT 2 OF LOT 5 BLOCK 3 DISTRICT LOT 2 PLAN 5051" - }, - { - "uuid": "4c844138-16e8-46c1-a8f7-d32449364655", + "uuid": "67e8d7f8-9bb3-4f45-b1d0-696ed87dd7ea", "siteRegistry": true, - "dateNoted": "2014-06-19", - "parcelID": "15858", - "crownLandUsePIN": "18215", - "crownLandFileNumber": "18469", - "landDescription": "LOT 1 OF LOT 5 BLOCK 4 DISTRICT LOT 3 PLAN 6043" - }, - { - "uuid": "6a8f6f0f-6724-4543-8086-1de6e7293206", - "siteRegistry": false, - "dateNoted": "2016-11-29", - "parcelID": "15794", - "crownLandUsePIN": "18832", - "crownLandFileNumber": "15527", - "landDescription": "LOT 2 OF LOT 4 BLOCK 3 DISTRICT LOT 3 PLAN 5907" + "dateNoted": "2017-08-29", + "parcelID": "20678", + "crownLandUsePIN": "16122", + "crownLandFileNumber": "16118", + "landDescription": "LOT 2 OF LOT 1 BLOCK 2 DISTRICT LOT 3 PLAN 3935" }, { - "uuid": "e51c083c-87b3-4104-9e2c-182e4c4f3175", + "uuid": "e2794f50-2e25-4edf-b54d-2ccf44890400", "siteRegistry": true, - "dateNoted": "2014-01-06", - "parcelID": "17470", - "crownLandUsePIN": "17402", - "crownLandFileNumber": "15552", - "landDescription": "LOT 2 OF LOT 4 BLOCK 4 DISTRICT LOT 4 PLAN 3083" + "dateNoted": "2015-05-31", + "parcelID": "20183", + "crownLandUsePIN": "18640", + "crownLandFileNumber": "17018", + "landDescription": "LOT 4 OF LOT 3 BLOCK 4 DISTRICT LOT 3 PLAN 4211" }, { - "uuid": "f70ba1dc-38b5-4927-9f0f-96127c6dc977", + "uuid": "1650e019-02ea-459c-8702-40019cf70fdf", "siteRegistry": false, - "dateNoted": "2021-07-11", - "parcelID": "18123", - "crownLandUsePIN": "17842", - "crownLandFileNumber": "17134", - "landDescription": "LOT 4 OF LOT 1 BLOCK 3 DISTRICT LOT 1 PLAN 4705" + "dateNoted": "2022-03-20", + "parcelID": "20606", + "crownLandUsePIN": "15333", + "crownLandFileNumber": "16690", + "landDescription": "LOT 1 OF LOT 3 BLOCK 3 DISTRICT LOT 1 PLAN 3201" } ], "siteDisclosures": [ { - "uuid": "ea0cda87-0798-4f85-b8a3-c84857f8521c", - "siteRegistry": true, - "dateReceived": "2020-12-09", - "dateCompleted": "2014-02-21", - "dateEntered": "2015-05-29", - "dateRegistrar": "2015-04-30", - "dateLocalAuthorityReceived": "2022-01-31", - "summary": "Nesciunt explicabo voluptatum dicta at dolores mollitia laudantium eveniet.\nTemporibus officiis ipsum quidem porro dolorem.\nCorrupti debitis similique voluptatibus doloribus maiores quisquam quo.", - "informationUsed": "Sequi adipisci corrupti iusto.\nAut dolores tempora consectetur dolore.\nExercitationem illo ullam ut excepturi aliquid quis atque.\nQuis suscipit vero pariatur voluptas blanditiis nisi pariatur magni molestiae.", - "pastOrPresentOrders": "Aliquid deleniti corrupti facere voluptates.", + "uuid": "f33b6345-d3f7-4461-81a3-67c8f8b8075a", + "siteRegistry": false, + "dateReceived": "2017-03-16", + "dateCompleted": "2020-02-04", + "dateEntered": "2014-10-09", + "dateRegistrar": "2022-08-12", + "dateLocalAuthorityReceived": "2020-07-26", + "summary": "Doloribus itaque facilis repudiandae.\nVero voluptatum atque ipsum sed.\nVeritatis repellat voluptas voluptatum.", + "informationUsed": "A aut aspernatur harum quisquam saepe assumenda eveniet numquam.\nDolorum nisi dolor ea illum nobis.\nDignissimos animi cumque aliquam excepturi.\nOfficia voluptate ducimus necessitatibus quaerat.", + "pastOrPresentOrders": "Sunt culpa porro.\nBlanditiis enim ut doloribus saepe eos.", "commercialAndIndustrialPurposes": [ { - "uuid": "da22ad12-7487-4a8f-a360-a7ba77b05aff", - "scheduleReference": "F1*", + "uuid": "d0b9a8c5-9a65-4103-a5f6-d9687753e49e", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false - }, - { - "uuid": "d2289df2-263d-4e83-ac99-1f5abbbe8726", - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { - "uuid": "bf5783c6-864d-4784-b8b9-514968b4335c", + "uuid": "21caa27a-345c-4137-a5be-4b6c9a4332ea", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "c929a0ce-4ec8-4094-8773-48220d09a74e", - "scheduleReference": "F1*", + "uuid": "0e6a8254-c3bf-466b-b056-490d7f3d1962", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false } ] }, { - "uuid": "c1c594ed-bb2e-4d75-8e82-ea076ebc273c", + "uuid": "27302aa6-0146-4e28-86e1-44b6d8bf095d", "siteRegistry": false, - "dateReceived": "2016-07-16", - "dateCompleted": "2019-07-14", - "dateEntered": "2017-01-09", - "dateRegistrar": "2022-05-13", - "dateLocalAuthorityReceived": "2022-06-12", - "summary": "Minima odit eveniet pariatur similique.\nDoloribus libero quas blanditiis autem enim quaerat consequuntur quisquam quos.", - "informationUsed": "Omnis totam quod cum odio dolor et vel.\nDebitis accusantium commodi dolorum quibusdam laboriosam provident.\nPerspiciatis quaerat aliquid.", - "pastOrPresentOrders": "Quibusdam deleniti similique perferendis.\nCumque molestiae aliquid earum alias quibusdam quidem est labore voluptate.", + "dateReceived": "2022-11-21", + "dateCompleted": "2019-07-28", + "dateEntered": "2019-01-10", + "dateRegistrar": "2022-02-23", + "dateLocalAuthorityReceived": "2016-10-19", + "summary": "Mollitia nam quis ducimus ipsum labore.\nIpsa deserunt ex consectetur ut odit fuga quia soluta.\nAdipisci itaque alias non deleniti perspiciatis repudiandae temporibus.", + "informationUsed": "Eveniet ratione laboriosam illum saepe earum amet autem eaque.\nExcepturi optio inventore placeat quae quisquam beatae.\nAb sit inventore quo architecto.", + "pastOrPresentOrders": "Nihil ipsa praesentium laborum nihil earum nemo.\nNisi dignissimos cumque corrupti animi repellendus cumque quod cumque id.", "commercialAndIndustrialPurposes": [ { - "uuid": "4dce4cc6-77ac-418e-bca4-ac362f1e9d3a", + "uuid": "bb573abe-1694-4251-ba0a-36eccbcb2d90", "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { - "uuid": "8b12d842-aa7f-4a22-9d89-0937df804821", - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false + "uuid": "720f160f-4239-4b63-932b-9eae54139bb6", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true }, { - "uuid": "f407e553-ac8c-4759-858c-b83a195b23b3", - "scheduleReference": "F2*", + "uuid": "bdd76085-f73f-4425-965a-0251e4991af0", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false } @@ -22429,106 +25736,115 @@ ], "activityLog": [ { - "uuid": "c0f367cc-d551-4fbd-a66c-d0e250f86dd8", + "uuid": "a609180d-7f37-417d-8591-d18e1a8c821d", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "MAYER NEDRA", - "timestamp": "2022-10-17" + "user": "ERDMAN CARLETON", + "timestamp": "2014-06-05" }, { - "uuid": "910af1df-6911-43f1-8e47-d5328d79d8a9", + "uuid": "969961b2-a17b-49ce-ad7f-8e03b5417034", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "ROBERTS VINCENZA", - "timestamp": "2021-11-26" + "user": "HEIDENREICH RUBY", + "timestamp": "2019-07-30" }, { - "uuid": "6b2da5bb-ff9c-45aa-bee1-f48df3cc3adc", + "uuid": "86e6907f-b38a-4455-a4a1-6b3bba653a27", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "KING JORGE", - "timestamp": "2014-12-06" + "user": "DUBUQUE VEDA", + "timestamp": "2018-05-03" }, { - "uuid": "f9581da9-6bb9-4410-baa6-ae25f174ad51", - "siteRegistry": false, + "uuid": "dc2a5a07-ff38-49c5-8160-5d1ce5460bc3", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "HEATHCOTE STANTON", - "timestamp": "2016-07-19" + "user": "ERNSER GIOVANNY", + "timestamp": "2020-06-30" }, { - "uuid": "115eb39e-4a19-4f1d-84de-bc34e65a361e", - "siteRegistry": false, + "uuid": "257ec8c5-f0f4-4634-905d-de69d4d2d60a", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "BOTSFORD IGNACIO", - "timestamp": "2018-03-02" + "user": "MARKS ALEXANE", + "timestamp": "2022-10-17" }, { - "uuid": "e76349e7-c080-44f1-848a-56baa4878ef4", + "uuid": "c0905c08-0ba1-453c-ae43-edd65b46a19b", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "HEANEY DEMOND", - "timestamp": "2021-11-26" + "user": "ARMSTRONG WILLIS", + "timestamp": "2015-03-06" }, { - "uuid": "0d57c548-2315-45fc-9f2d-a5e3d57f6139", - "siteRegistry": false, + "uuid": "365fe578-8fe1-4406-85b3-fa0de82822a4", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "BARTOLETTI KEN", - "timestamp": "2017-11-15" + "user": "MCCLURE ARNOLD", + "timestamp": "2022-05-10" }, { - "uuid": "a101699e-eba7-4a6b-8911-48131511268a", + "uuid": "79e044a0-6828-4534-a267-11b2c7950a39", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "BRUEN MOZELLE", - "timestamp": "2016-02-20" - }, - { - "uuid": "5cde3490-d4b8-475d-8ba0-b482fba2685a", - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "SCHNEIDER LILIANE", - "timestamp": "2014-02-22" + "user": "TROMP SHAYNA", + "timestamp": "2018-07-31" } ], "associatedSites": [ { - "uuid": "c9dcb2a3-cff2-41d7-aa59-2ce1ad3e4a25", - "dateNoted": "2023-04-01", + "uuid": "4ffc1d4d-b835-4ac0-8bdb-7efa7e19ec00", + "dateNoted": "2021-03-17", "notes": "", - "parcelID": "18771", - "siteID": "18426", + "parcelID": "15201", + "siteID": "18354", + "siteRegistry": false + }, + { + "uuid": "ce90faa5-8f1a-4884-8b80-0e90dcb5f88a", + "dateNoted": "2017-11-28", + "notes": "", + "parcelID": "17803", + "siteID": "20833", "siteRegistry": true + }, + { + "uuid": "a2432922-304b-4df1-8f73-782621c4d228", + "dateNoted": "2019-11-30", + "notes": "", + "parcelID": "18392", + "siteID": "18007", + "siteRegistry": false } ] }, { - "uuid": "a9fdd6d0-8512-47f5-84ce-997af12bf991", - "siteID": 15273, - "address": "63839 Haag Burgs", - "latitude": 55.6879, - "longitude": -125.7286, - "lastUpdated": "2014-08-19", - "city": "Pourosport", + "uuid": "7c6630b6-4ac7-41b6-ab1b-d024875875b7", + "siteID": 15522, + "address": "576 Ashley Ranch", + "latitude": 49.3443, + "longitude": -126.9768, + "lastUpdated": "2015-07-14", + "city": "Gulgowskitown", "region": " North Coast", - "victoriaFile": "26250-20/1532", + "victoriaFile": "26250-20/11844", "regionalFile": "N/A", "parcelIDs": [ - 6125348, - 7395353, - 3463113, - 8152594, - 5569435 + 6507313, + 9832257, + 4913869, + 1451881, + 1635825 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "695d7c8e-5826-4c7e-bc70-818f0d582d9d", - "createdAt": "2020-01-12", - "completed": "2022-11-13", - "initiated": "2017-01-22", - "ministryContact": "STANTON NAME", + "uuid": "6c0c1299-28bb-4bbb-b93d-5797b95274af", + "createdAt": "2016-11-30", + "completed": "2023-02-08", + "initiated": "2017-09-11", + "ministryContact": "MCKENZIE-KUNZE IRMA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -22537,60 +25853,38 @@ ], "notationParticipants": [ { - "uuid": "053f5e70-d073-4f1a-a04b-d8c0ae821b7e", + "uuid": "fe5060a0-762b-4de4-8b11-4946ad4d388c", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "551ae7a4-2c3f-40df-9c4c-6021e92370ec", - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "d27bcb9d-4a03-44d8-b96f-7a1f7c778889", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "38307294-5403-4887-81d7-e57864062755", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - } - ], - "siteRegistry": true - }, - { - "uuid": "bd00571a-51b2-45e7-9b93-da108667d237", - "createdAt": "2023-01-27", - "completed": "2015-02-07", - "initiated": "2018-05-23", - "ministryContact": "AUFDERHAR FLORIDA", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "uuid": "4daa4a63-9a2a-4576-8040-b3f1f19b862f", + "uuid": "30b53e22-77bc-4902-9424-aa4c3b2abba9", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true }, { - "uuid": "ecc9cb82-8475-411e-bd6b-61443faf6fac", + "uuid": "9aa63237-83dc-4bab-967b-7980d900ae77", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true } ], "siteRegistry": false }, { - "uuid": "2945df34-d20f-4d5a-b8d4-24c5e8614535", - "createdAt": "2016-05-20", - "completed": "2016-10-27", - "initiated": "2022-12-12", - "ministryContact": "LABADIE MARCEL", + "uuid": "c292a7a8-fb91-4594-b675-5259b4b7e227", + "createdAt": "2015-05-09", + "completed": "2018-11-24", + "initiated": "2020-10-24", + "ministryContact": "FEIL GRANVILLE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -22599,44 +25893,32 @@ ], "notationParticipants": [ { - "uuid": "6e4796b7-5027-4238-81e6-52734f7326b8", + "uuid": "4baad612-118d-4f0e-bc20-95c25f314741", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true + "role": "REQUESTED BY", + "siteRegistry": false }, { - "uuid": "f2950754-fb91-49bc-9832-c8915122c2f2", + "uuid": "169e7a38-50f0-4f5e-8760-dd001f109e3d", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "uuid": "e7f74ec2-e416-4973-8a9e-cd8f9c5b32fa", - "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false }, { - "uuid": "b67d9d61-62d6-4c6b-834d-31c0f2de8d13", + "uuid": "a9808f0f-b20b-4344-b5d5-f30a9157deb9", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "uuid": "3cc8239d-aafd-47f3-834f-97b3be41a9c2", - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "1fc00954-2ba5-4087-abc8-adc044637d1f", - "createdAt": "2015-07-19", - "completed": "2022-09-04", - "initiated": "2022-04-23", - "ministryContact": "BARTON CAMILA", + "uuid": "f047be3c-5249-449f-b717-9f54f33948b1", + "createdAt": "2023-02-04", + "completed": "2019-09-16", + "initiated": "2019-11-25", + "ministryContact": "ORN HAZLE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -22645,60 +25927,26 @@ ], "notationParticipants": [ { - "uuid": "252eb406-ebbd-414b-a50a-49bcf34570b2", + "uuid": "9b85e7ac-9dc5-4418-b8f3-c458c45991c5", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "uuid": "a09a6a16-3dc4-48cc-8fba-cfdd469cfb59", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - } - ], - "siteRegistry": false - }, - { - "uuid": "3b42f68b-31b1-488a-b2d2-bcef64fb7657", - "createdAt": "2023-08-25", - "completed": "2016-12-19", - "initiated": "2019-10-15", - "ministryContact": "SCHIMMEL BROCK", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "uuid": "672279af-99c5-4dab-b36e-f92bf81b52a6", - "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "3881b49b-74a5-4989-8c04-fde527322b88", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "uuid": "7b5c873a-67f6-40a2-af7c-03634457e911", + "uuid": "ec2a16ce-77cf-4cfb-a523-aa14dede1605", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true }, { - "uuid": "bfd69618-b71f-452a-8dda-fc8ade4e2a0b", - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "10845f78-674e-4f27-8476-291eda23711f", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "d21e181c-3979-47ca-9a79-3f52ee73383e", - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "d7b53c56-67c5-415d-84fe-fe6da2398e4b", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false } @@ -22708,10 +25956,21 @@ ], "participants": [ { - "uuid": "cfe3029b-01ff-49f1-80a8-fcbe942ca2e8", + "uuid": "51a4d351-52f5-4a6f-842b-f8d1f1a0ec03", "name": "IPSUM", - "endDate": "2017-05-06", - "startDate": "2014-06-12", + "endDate": "2021-06-02", + "startDate": "2022-04-13", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "uuid": "454edf91-a627-4871-a683-a228f7e5b71a", + "name": "AMET, DOLOR SIT", + "endDate": "2018-01-02", + "startDate": "2023-09-09", "notes": "", "roles": [ "ORGANIZATION" @@ -22719,119 +25978,169 @@ "siteRegistry": true }, { - "uuid": "2819d3f4-fa2c-4386-a0f2-893c707fed9c", - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2021-03-11", - "startDate": "2018-01-03", + "uuid": "3ba8d173-598e-4d69-bcfd-309b4ffbd862", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2021-04-26", + "startDate": "2017-05-24", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true } ], - "suspectLandUses": [ + "documents": [ { - "uuid": "778124a8-9afb-45a6-977b-915d6f0d7a15", - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-03-08 (described on Site Profile dated 2021-03-08)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" - }, + "uuid": "918d79a2-2a37-42de-84b1-4573535444a5", + "siteRegistry": true, + "documentDate": "2014-12-01", + "receivedDate": "2016-06-27", + "uploadedDate": "2020-12-20", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "72f083bf-fd99-4e1e-909a-41a201afc470", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "eea59b62-e156-40c2-a3b7-8b91c035b900", + "name": "AMET, DOLOR SIT", + "siteRegistry": true, + "role": "AUTHOR" + } + ] + } + ], + "suspectLandUses": [ { - "uuid": "f36b34e3-ac85-47bd-8250-19985c5ba30e", + "uuid": "6cc9cd36-48ae-4c73-aba2-029cdbe57920", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-01-05 (described on Site Profile dated 2019-01-05)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "notes": "INSERTED FOR SITE PROFILE DATED 2015-11-06 (described on Site Profile dated 2015-11-06)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "uuid": "81841d88-c317-4b72-b6ce-81d6aa163347", - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2023-01-18 (described on Site Profile dated 2023-01-18)", + "uuid": "e3f67f9b-2af4-4190-9060-64f5f0cdf673", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2018-09-24 (described on Site Profile dated 2018-09-24)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "uuid": "b3ef7a3b-ee00-4de8-b364-0938b02a1290", + "uuid": "d0c8a5f2-c809-467e-97bb-43621713702c", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2023-09-05 (described on Site Profile dated 2023-09-05)", + "notes": "INSERTED FOR SITE PROFILE DATED 2016-10-20 (described on Site Profile dated 2016-10-20)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], "parcelDescriptions": [ { - "uuid": "af0c3cbc-e670-4e96-badc-22f07fead19f", - "siteRegistry": false, - "dateNoted": "2019-04-21", - "parcelID": "15691", - "crownLandUsePIN": "16274", - "crownLandFileNumber": "20705", - "landDescription": "LOT 4 OF LOT 1 BLOCK 1 DISTRICT LOT 2 PLAN 2999" - }, - { - "uuid": "732279ed-e777-4cc6-954c-2d2f0673f184", + "uuid": "c82bc35f-8907-495d-985e-9443df72a6f2", "siteRegistry": false, - "dateNoted": "2019-08-02", - "parcelID": "17999", - "crownLandUsePIN": "16227", - "crownLandFileNumber": "16210", - "landDescription": "LOT 2 OF LOT 2 BLOCK 3 DISTRICT LOT 1 PLAN 3758" + "dateNoted": "2019-02-06", + "parcelID": "20537", + "crownLandUsePIN": "17206", + "crownLandFileNumber": "16278", + "landDescription": "LOT 4 OF LOT 3 BLOCK 1 DISTRICT LOT 1 PLAN 4561" }, { - "uuid": "d7734635-f3e8-4c4a-a629-7222057c6ba0", + "uuid": "f3b3a09e-519c-417f-a00e-bfd229642f78", "siteRegistry": true, - "dateNoted": "2020-12-22", - "parcelID": "17527", - "crownLandUsePIN": "18394", - "crownLandFileNumber": "19489", - "landDescription": "LOT 3 OF LOT 5 BLOCK 1 DISTRICT LOT 3 PLAN 3974" + "dateNoted": "2018-03-21", + "parcelID": "18673", + "crownLandUsePIN": "18442", + "crownLandFileNumber": "20268", + "landDescription": "LOT 5 OF LOT 1 BLOCK 3 DISTRICT LOT 1 PLAN 6482" }, { - "uuid": "aa05473d-bbd5-4209-88d0-cdd23be2435a", - "siteRegistry": true, - "dateNoted": "2017-10-17", - "parcelID": "20979", - "crownLandUsePIN": "17475", - "crownLandFileNumber": "16542", - "landDescription": "LOT 5 OF LOT 2 BLOCK 2 DISTRICT LOT 2 PLAN 4987" + "uuid": "1681994e-0c0b-4c7a-bb9a-3d6e622cf05a", + "siteRegistry": false, + "dateNoted": "2014-03-16", + "parcelID": "19252", + "crownLandUsePIN": "18129", + "crownLandFileNumber": "16071", + "landDescription": "LOT 3 OF LOT 1 BLOCK 5 DISTRICT LOT 1 PLAN 5211" }, { - "uuid": "40bcc7b1-9e1a-499f-aa0f-596a791a5131", + "uuid": "901225bd-a6fa-4cff-9624-95c6da9e4096", "siteRegistry": false, - "dateNoted": "2021-11-15", - "parcelID": "16508", - "crownLandUsePIN": "16370", - "crownLandFileNumber": "18108", - "landDescription": "LOT 4 OF LOT 2 BLOCK 1 DISTRICT LOT 1 PLAN 7794" + "dateNoted": "2023-08-12", + "parcelID": "19994", + "crownLandUsePIN": "19782", + "crownLandFileNumber": "15622", + "landDescription": "LOT 1 OF LOT 3 BLOCK 2 DISTRICT LOT 4 PLAN 3944" + }, + { + "uuid": "f4a59148-9f5c-4736-a5f0-d9e07ecf48cb", + "siteRegistry": true, + "dateNoted": "2019-01-15", + "parcelID": "18641", + "crownLandUsePIN": "16966", + "crownLandFileNumber": "18478", + "landDescription": "LOT 1 OF LOT 2 BLOCK 3 DISTRICT LOT 2 PLAN 6287" } ], "siteDisclosures": [ { - "uuid": "d8e70586-930a-43c3-83fe-005d85b23780", - "siteRegistry": false, - "dateReceived": "2020-05-08", - "dateCompleted": "2022-11-17", - "dateEntered": "2015-10-16", - "dateRegistrar": "2019-04-10", - "dateLocalAuthorityReceived": "2015-03-18", - "summary": "Officiis sint molestiae accusamus vel.\nIn sint inventore culpa quam quas quis inventore asperiores vero.", - "informationUsed": "Ea nemo ea placeat.\nSunt recusandae minima.\nItaque blanditiis quibusdam.\nRecusandae nobis ad delectus quae eius neque culpa distinctio.\nDucimus ducimus vero maxime.", - "pastOrPresentOrders": "Tempore illum eveniet dolores eaque hic quod.", + "uuid": "dc11fb66-70cb-4368-9165-3e04ae862147", + "siteRegistry": true, + "dateReceived": "2020-03-18", + "dateCompleted": "2022-04-30", + "dateEntered": "2015-01-27", + "dateRegistrar": "2019-03-29", + "dateLocalAuthorityReceived": "2016-07-04", + "summary": "Neque iusto nam eligendi ab.\nOmnis soluta saepe molestiae corrupti aut illo eos.\nExcepturi odio distinctio.", + "informationUsed": "Sint necessitatibus laboriosam esse.\nRerum reprehenderit iusto ipsa.\nNecessitatibus quia modi dolor maxime.\nAd numquam quae officiis eligendi totam itaque a.", + "pastOrPresentOrders": "Praesentium quisquam odit minima assumenda et occaecati vitae odit.\nQuo quaerat vitae.", "commercialAndIndustrialPurposes": [ { - "uuid": "76d1c5e8-53a4-4f66-8c05-fdb3174eac31", + "uuid": "94b25fdc-4667-4577-b5c8-2ebfaa55a841", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "uuid": "402d1a26-f0b4-4e39-a92d-c089e1b58112", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { - "uuid": "24b1cc41-63f6-452e-a5ea-44afc4a41576", - "scheduleReference": "F2*", + "uuid": "02f4e4cd-b774-4e9b-8b58-46522ff50a68", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + } + ] + }, + { + "uuid": "03843a1a-95b8-4e7a-b590-16481892ac81", + "siteRegistry": true, + "dateReceived": "2021-02-05", + "dateCompleted": "2015-09-03", + "dateEntered": "2021-08-12", + "dateRegistrar": "2014-07-03", + "dateLocalAuthorityReceived": "2019-03-01", + "summary": "Impedit illo tempora ducimus eveniet perspiciatis ad cumque molestiae voluptates.\nOdio beatae rem illum perferendis soluta eos animi at deleniti.", + "informationUsed": "Porro nostrum nemo deserunt voluptatem in.\nAb commodi illo facilis maiores sequi excepturi.\nQuos explicabo iusto nulla cum eaque.\nIncidunt quis harum velit quasi praesentium incidunt nesciunt assumenda rem.", + "pastOrPresentOrders": "Similique illum assumenda dignissimos error inventore accusantium.\nAutem similique deleniti sequi vel quisquam quod veniam ad.\nRepellat debitis delectus deleniti commodi.", + "commercialAndIndustrialPurposes": [ + { + "uuid": "d8ea6ef2-db49-4a1d-99fd-191c7a074963", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { - "uuid": "dfa2824f-04e5-4887-9d57-f905923bdf5e", + "uuid": "ab8ddb3b-7a1b-4662-96f3-8c82323467b6", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "uuid": "c2909df1-f7a0-4d37-b1b6-851a63dbbe78", "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false } ] @@ -22839,107 +26148,122 @@ ], "activityLog": [ { - "uuid": "5aa75f46-502b-4aaa-944d-4141921282bf", + "uuid": "4789a28a-d922-4dac-916a-9e4e08895e88", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "KOZEY KELLI", - "timestamp": "2016-11-30" + "user": "BALISTRERI RHIANNA", + "timestamp": "2020-05-12" }, { - "uuid": "f4f1dbda-1d5a-420d-a9bf-0c5863117257", - "siteRegistry": true, + "uuid": "e5209a0b-f89b-4863-a20d-9a3e924e56b6", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "NOLAN EINO", - "timestamp": "2018-10-19" + "user": "CRUICKSHANK TIERRA", + "timestamp": "2015-09-03" }, { - "uuid": "660ecb35-631f-4648-925c-af1169f36008", - "siteRegistry": true, + "uuid": "87f75dec-540d-4281-b340-751a98b9ceca", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "GORCZANY DIEGO", - "timestamp": "2015-12-08" + "user": "BEAHAN TRISHA", + "timestamp": "2015-08-15" }, { - "uuid": "06fad9cd-53c4-4ff9-90c0-e1d3e39aed9f", + "uuid": "47b984b5-69d6-4d73-a475-578cf0a41b09", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "ROMAGUERA SHANE", - "timestamp": "2020-06-06" + "user": "RUECKER MIKE", + "timestamp": "2021-03-24" }, { - "uuid": "75ffd322-6541-4159-bfe9-10e3db376e91", + "uuid": "deda1e0f-e529-4e67-a240-306c0d12c5fa", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "BERGE-CHAMPLIN ZULA", - "timestamp": "2014-05-14" + "user": "CARROLL GERALDINE", + "timestamp": "2016-06-11" }, { - "uuid": "2f5534cc-be04-4b33-b591-1cf14eec0f7b", + "uuid": "c681027c-5a9e-49d5-bc74-ac6c72eed384", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "BAUCH CAROLANNE", - "timestamp": "2017-10-09" + "user": "CONNELLY MACKENZIE", + "timestamp": "2018-08-13" }, { - "uuid": "d43d4a50-6a4d-4cb8-b01e-af68b6165c7d", - "siteRegistry": false, + "uuid": "2860c1ac-23b1-4ced-8b96-156234758153", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "BROWN KEATON", - "timestamp": "2022-10-04" + "user": "SWIFT TED", + "timestamp": "2020-03-19" }, { - "uuid": "4f14bf9f-0e61-42d0-9126-e5ac6a56e3bf", + "uuid": "a846170f-72eb-4858-91b7-d25fc0a48410", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "MCLAUGHLIN ADELBERT", - "timestamp": "2017-01-14" + "user": "O'KEEFE CLARISSA", + "timestamp": "2017-09-22" + }, + { + "uuid": "28ec57ab-83f6-4fa7-9a23-5c88343f8002", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "KERLUKE DERON", + "timestamp": "2015-11-07" } ], "associatedSites": [ { - "uuid": "b0ed6503-1423-4633-95ac-1d96626ab955", - "dateNoted": "2023-03-27", + "uuid": "7758eb68-4ee4-46f7-b9fb-b75215f3bb72", + "dateNoted": "2014-05-07", + "notes": "", + "parcelID": "17863", + "siteID": "15499", + "siteRegistry": true + }, + { + "uuid": "0a6bd332-1538-4f49-b191-d578c2b6bac6", + "dateNoted": "2017-07-01", "notes": "", - "parcelID": "20933", - "siteID": "17688", + "parcelID": "19267", + "siteID": "20571", "siteRegistry": false }, { - "uuid": "c67da82e-7d01-4661-a8f1-f4437fc3b579", - "dateNoted": "2016-12-29", + "uuid": "22d55b25-8169-4557-a32a-31d51480decf", + "dateNoted": "2022-08-15", "notes": "", - "parcelID": "17473", - "siteID": "15525", + "parcelID": "19751", + "siteID": "18132", "siteRegistry": false } ] }, { - "uuid": "fcc99217-db5c-4deb-b1ef-f4cf88cbfa66", - "siteID": 16189, - "address": "37249 Leanne Dale", - "latitude": 50.1158, - "longitude": -119.9321, - "lastUpdated": "2021-07-05", - "city": "Wellington", + "uuid": "5673087c-45a0-46a6-bc52-1e4491eaa5f4", + "siteID": 18880, + "address": "7669 Schowalter Villages", + "latitude": 56.1208, + "longitude": -128.5243, + "lastUpdated": "2020-02-28", + "city": "Alexzanderberg", "region": " North Coast", - "victoriaFile": "26250-20/13795", + "victoriaFile": "26250-20/8108", "regionalFile": "N/A", "parcelIDs": [ - 7735826, - 3425908, - 1071213, - 2923666, - 7430555 + 1137418, + 7722094, + 1924145, + 6351930, + 5500998 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "2005981c-ea87-4185-9774-ef1b34e23ea0", - "createdAt": "2013-12-14", - "completed": "2013-12-31", - "initiated": "2020-07-07", - "ministryContact": "BARTON ELBERT", + "uuid": "34e234fb-9195-44be-9470-5bce2f1256a8", + "createdAt": "2014-10-15", + "completed": "2018-07-23", + "initiated": "2023-05-16", + "ministryContact": "HUDSON LESTER", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -22948,38 +26272,26 @@ ], "notationParticipants": [ { - "uuid": "b5ad1c82-b4c6-49a7-a214-f1dae00d8aa5", + "uuid": "ccb19fc8-ab09-43f5-a395-440955862c87", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "uuid": "360df247-7303-482e-bdc8-175f95fb9358", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "uuid": "27f9df85-9424-4eca-9379-edd141ee57ad", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", "siteRegistry": true }, { - "uuid": "66b17f21-0f6c-4e9b-8d86-b201ece9db27", + "uuid": "4eebc0c1-9bbf-4f22-8dc4-00bdca2349a0", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false } ], "siteRegistry": true }, { - "uuid": "d132b9ec-5f40-49de-82b7-49ab98c0ff7b", - "createdAt": "2014-09-29", - "completed": "2020-01-03", - "initiated": "2018-12-07", - "ministryContact": "JACOBSON ESTEL", + "uuid": "81fb503a-0918-41d6-bac6-2f2a5dd9a23f", + "createdAt": "2019-09-30", + "completed": "2018-11-14", + "initiated": "2014-10-29", + "ministryContact": "O'CONNELL CURTIS", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -22988,38 +26300,26 @@ ], "notationParticipants": [ { - "uuid": "709aace9-f771-4ad8-b5c1-854f19c48f41", + "uuid": "dab27f2b-a9f9-4e84-9daa-61b2b9b1f42a", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "24289a9c-6a1c-45a2-8c44-eac1039351f6", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "uuid": "2c08e107-63e7-4a65-948b-b68c89a86b0f", + "uuid": "2fcf4d75-9250-42af-9e81-ec0470002429", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true - }, - { - "uuid": "618d7fa5-ed24-4897-95fb-2b16f21bdcee", - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "21b04e28-a053-4812-94cd-0122f4057d8c", - "createdAt": "2015-01-05", - "completed": "2021-01-23", - "initiated": "2021-12-06", - "ministryContact": "MARVIN BERNARDO", + "uuid": "d2094a12-7387-4aab-9f22-cb9f564566f0", + "createdAt": "2019-12-26", + "completed": "2023-08-07", + "initiated": "2018-09-30", + "ministryContact": "GOYETTE CASSIE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -23028,26 +26328,44 @@ ], "notationParticipants": [ { - "uuid": "73ce9983-f4e0-474d-91b6-3f77e524e2be", + "uuid": "3127d7bd-9e5e-45d3-9e4e-498930da934f", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "01324f46-0e92-40a2-a750-0c5e31426acb", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "215f77db-d165-48a5-a543-36f3eee70128", + "uuid": "e22fa543-f0e1-49f9-beb4-d56ad5d8bfcf", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "f7e3ab8b-987a-4ca5-93ac-8125b93e5a46", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true + }, + { + "uuid": "1a6a99ac-1fb6-4a8f-8037-7d349dba532b", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false } ], "siteRegistry": false }, { - "uuid": "f0955607-4507-44f3-9f74-133744afa6a1", - "createdAt": "2014-01-14", - "completed": "2017-10-27", - "initiated": "2017-09-24", - "ministryContact": "BERNHARD MELLIE", + "uuid": "0dd3f4fa-741c-4c19-8621-c92469e171ff", + "createdAt": "2023-10-03", + "completed": "2021-02-22", + "initiated": "2017-01-03", + "ministryContact": "NIKOLAUS-MURAZIK CORDIA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -23056,33 +26374,45 @@ ], "notationParticipants": [ { - "uuid": "a52a8f13-5f4a-4abd-849b-030a6873cbbd", + "uuid": "ff137a18-3428-4fff-a700-e4e6f88235fc", "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "a44f5594-d070-4146-91eb-1ff833cf5ba7", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "uuid": "74667b84-d31e-475a-8f92-854dc6c7904d", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": false }, { - "uuid": "d0fe1fce-6a63-45b3-89e0-087bc5fd47ce", + "uuid": "f5fb1e10-3a60-4c46-a727-04eed3a45b6a", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "40e2d9e0-d260-41a2-9c0e-9674d7eb5be1", - "name": "SHELL CANADA PRODUCTS", + "uuid": "4d81fc56-b8e6-42c5-8455-f90be13c6164", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true } ], "participants": [ { - "uuid": "a0950a26-0ae9-47fa-9dc4-d3fb886ad9b1", - "name": "AMET, DOLOR SIT", - "endDate": "2023-07-25", - "startDate": "2014-11-05", + "uuid": "6d3d6e5c-9b80-4888-84c9-0884acaa455d", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2018-07-17", + "startDate": "2016-04-14", "notes": "", "roles": [ "ORGANIZATION" @@ -23090,241 +26420,250 @@ "siteRegistry": true }, { - "uuid": "bf890cf9-8f02-472d-9970-d34935f70ac9", - "name": "IPSUM", - "endDate": "2019-10-30", - "startDate": "2018-12-10", + "uuid": "b305fbcf-2a92-4aa0-a5ee-f0f03168a447", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2017-12-27", + "startDate": "2018-11-28", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": false }, { - "uuid": "a481d7d6-79b2-407d-a190-4e6107e06c4f", + "uuid": "a4176a2b-9fb6-4ede-94bf-303fb9f881c8", "name": "IPSUM", - "endDate": "2013-10-15", - "startDate": "2014-12-10", + "endDate": "2020-11-06", + "startDate": "2015-03-18", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "c99a1bc3-91d2-4eaf-ad21-997455498fb0", + "uuid": "c4ce2f0b-c304-4f3b-8e4a-46e9090abc4a", "name": "AMET, DOLOR SIT", - "endDate": "2023-05-18", - "startDate": "2018-12-30", + "endDate": "2014-08-30", + "startDate": "2015-07-14", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": false } ], + "documents": [ + { + "uuid": "026ffecf-0d9e-46c5-ab40-e0f38db608be", + "siteRegistry": false, + "documentDate": "2020-05-16", + "receivedDate": "2016-09-10", + "uploadedDate": "2017-07-31", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "86c2f112-adb6-4b32-9bec-496ceaca8744", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "e2239a5a-40a1-4244-9892-8d2865e38071", + "name": "AMET, DOLOR SIT", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "c0bcd5bc-862a-4256-8dbb-7d3f6a64f9d2", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": true, + "role": "AUTHOR" + } + ] + } + ], "suspectLandUses": [ { - "uuid": "de1ab1f4-f93c-44cc-81a8-d20a6ba1f850", + "uuid": "26ef542b-7384-421c-bc54-a7f5a24e0727", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2021-03-11 (described on Site Profile dated 2021-03-11)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "uuid": "4304c8e3-e228-43e6-9ed8-408a674b5149", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2023-10-13 (described on Site Profile dated 2023-10-13)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "uuid": "ea5c9e9b-a759-4b65-92fe-40ab8378eced", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-12-10 (described on Site Profile dated 2014-12-10)", + "notes": "INSERTED FOR SITE PROFILE DATED 2018-06-02 (described on Site Profile dated 2018-06-02)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "uuid": "558f5c1c-f1fc-4f5f-ab95-19428f9cb919", + "uuid": "5cdf9f2e-c097-49de-b15c-12e164167ad0", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-05-16 (described on Site Profile dated 2014-05-16)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "notes": "INSERTED FOR SITE PROFILE DATED 2022-06-05 (described on Site Profile dated 2022-06-05)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "uuid": "10e8eaad-6e69-4aac-95a3-395cfe57ada6", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2013-12-13 (described on Site Profile dated 2013-12-13)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], "parcelDescriptions": [ { - "uuid": "8984e18e-7581-4187-875e-b6d867e1c948", + "uuid": "bc6e682a-7e23-4d9c-9198-929aeb586b50", "siteRegistry": true, - "dateNoted": "2017-02-23", - "parcelID": "17118", - "crownLandUsePIN": "19005", - "crownLandFileNumber": "17190", - "landDescription": "LOT 3 OF LOT 2 BLOCK 1 DISTRICT LOT 1 PLAN 8416" + "dateNoted": "2019-05-16", + "parcelID": "19460", + "crownLandUsePIN": "17086", + "crownLandFileNumber": "20532", + "landDescription": "LOT 5 OF LOT 4 BLOCK 2 DISTRICT LOT 1 PLAN 6315" }, { - "uuid": "d96d0e6f-efa4-4d00-9b68-adadb7a012b0", - "siteRegistry": false, - "dateNoted": "2015-02-23", - "parcelID": "18714", - "crownLandUsePIN": "16334", - "crownLandFileNumber": "15452", - "landDescription": "LOT 5 OF LOT 3 BLOCK 4 DISTRICT LOT 4 PLAN 7015" + "uuid": "706c91ae-d511-4ff2-8f42-a419831e70e8", + "siteRegistry": true, + "dateNoted": "2018-05-23", + "parcelID": "20807", + "crownLandUsePIN": "20005", + "crownLandFileNumber": "15540", + "landDescription": "LOT 1 OF LOT 3 BLOCK 3 DISTRICT LOT 5 PLAN 9762" } ], "siteDisclosures": [ { - "uuid": "d03df731-fcef-4ae0-998b-7b3210ac3bf8", + "uuid": "d80c6af8-b8a2-43c9-a28c-84ea2b1849ce", "siteRegistry": false, - "dateReceived": "2016-02-29", - "dateCompleted": "2019-03-26", - "dateEntered": "2022-08-27", - "dateRegistrar": "2019-04-05", - "dateLocalAuthorityReceived": "2018-04-07", - "summary": "Quos ullam quasi veniam modi accusantium cum perferendis.\nIusto unde laudantium amet ipsam facere expedita.\nTempore aut commodi odit laboriosam facere possimus aut.", - "informationUsed": "Nemo natus temporibus unde nostrum exercitationem rem.\nIllo amet dicta aliquam molestias corporis ad dolore tenetur.\nAdipisci iste quia assumenda.", - "pastOrPresentOrders": "Ab magnam consequuntur.", + "dateReceived": "2014-02-02", + "dateCompleted": "2016-04-01", + "dateEntered": "2016-09-20", + "dateRegistrar": "2016-04-20", + "dateLocalAuthorityReceived": "2020-07-04", + "summary": "Quibusdam magni eos quasi.\nFugit animi corporis soluta tenetur.\nRepellat impedit et vitae atque quia animi ducimus.", + "informationUsed": "Laborum exercitationem ipsum nihil temporibus tenetur.\nDeserunt quia quasi totam quos.\nAutem laudantium et accusamus iusto iusto.\nIure maxime veniam dicta.", + "pastOrPresentOrders": "Qui quo aspernatur laudantium.\nIncidunt cumque quaerat pariatur nobis est ratione molestias atque.", "commercialAndIndustrialPurposes": [ { - "uuid": "56460e7f-015d-4877-b2f2-bc386973bfbb", + "uuid": "b3c68dfe-dd32-47b3-a301-114b6bf73170", "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true - }, - { - "uuid": "f8a6f00a-0421-402e-b824-70a4d586377b", - "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, { - "uuid": "97287479-9106-41dd-9671-5e7a57873f9c", - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true - }, - { - "uuid": "ef9ccf23-6538-4ee2-b001-c97a31bebbe1", - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true - } - ] - }, - { - "uuid": "281e255e-dbc6-4229-9ae6-5bf35b77751b", - "siteRegistry": true, - "dateReceived": "2020-07-11", - "dateCompleted": "2018-05-18", - "dateEntered": "2015-12-10", - "dateRegistrar": "2019-03-25", - "dateLocalAuthorityReceived": "2019-03-24", - "summary": "Quis tempora quaerat eius.\nDolores soluta esse porro animi.", - "informationUsed": "Consequuntur possimus eligendi facere molestiae odio culpa est.\nQuas possimus illum molestias fugit culpa omnis.\nLaboriosam quas officia eligendi neque.", - "pastOrPresentOrders": "Dolorum ipsum ipsum eaque consequuntur autem dolores numquam ipsa.\nAliquam architecto non voluptatum a magni laborum ipsa molestiae.\nAutem id eveniet ullam perferendis corporis quas placeat corporis.", - "commercialAndIndustrialPurposes": [ - { - "uuid": "1165e79f-423b-4258-9dd0-85b4fa457e4c", + "uuid": "7f9d61eb-6a31-4d56-8b72-3b47352f21b7", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { - "uuid": "ff09cade-f392-4bd2-9746-532f4602def5", + "uuid": "328a4c6d-39ff-48f9-9647-419e6ecfeb82", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true + "siteRegistry": false + }, + { + "uuid": "dca2cebf-7496-4f3d-b083-bb1d17e94530", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false } ] } ], "activityLog": [ { - "uuid": "8175471c-3c29-45dc-a209-165d3d0cb25d", + "uuid": "98da6010-27f4-4df1-bab8-545341b73a11", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "RUSSEL AVA", - "timestamp": "2016-06-23" + "user": "MAYERT WINFIELD", + "timestamp": "2019-04-30" }, { - "uuid": "f397750b-593c-4517-9990-0e00f0b09635", + "uuid": "dea122f9-06a0-4ac3-b215-f6863709cd41", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "CHAMPLIN-MAGGIO KRAIG", - "timestamp": "2018-11-27" + "user": "RUECKER KESHAWN", + "timestamp": "2022-02-27" }, { - "uuid": "f489f871-310a-4c22-a05c-7c2bc95675d9", + "uuid": "539d5cd2-ca4f-40cc-9565-b9b0eac82ab7", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "HOPPE FAYE", - "timestamp": "2015-08-16" - }, - { - "uuid": "5c89b5cb-f62e-4bbe-a48c-2d6dce55b51f", - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "VEUM JOSH", - "timestamp": "2019-05-25" - }, - { - "uuid": "51edbbc3-7dc8-421f-aa55-b54df09db08e", - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "KUNZE HOWARD", - "timestamp": "2022-11-01" - }, - { - "uuid": "83950cce-7407-4108-9e3e-ddff5f7f6c89", - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "BRADTKE JOHNATHAN", - "timestamp": "2021-01-21" + "user": "TORPHY BRIONNA", + "timestamp": "2014-11-11" }, { - "uuid": "204b3dee-5bed-40fe-a59f-089dd2db8d5d", - "siteRegistry": true, + "uuid": "2c34baf6-3755-4d80-9ada-555205901437", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "CONROY ALLY", - "timestamp": "2023-01-02" + "user": "WYMAN ISSAC", + "timestamp": "2023-02-19" }, { - "uuid": "7fec1dd0-ebac-4219-bd3a-62ff39990c6d", + "uuid": "4f89098b-cacb-48e9-8a2a-fd89e3983ec6", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "TOWNE IDELLA", - "timestamp": "2023-03-30" + "user": "REINGER DALE", + "timestamp": "2014-01-08" }, { - "uuid": "2fcb06bc-3d88-410f-9f1e-34edf488583e", + "uuid": "16b78ed6-8ed5-46ff-84b0-4c03ccd9f2bf", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "NOLAN MARGUERITE", - "timestamp": "2019-12-19" + "user": "OLSON ILIANA", + "timestamp": "2015-12-19" } ], "associatedSites": [ { - "uuid": "15076de9-c5f3-4efd-84f3-faf2476a9d14", - "dateNoted": "2021-08-17", + "uuid": "36407180-fd0c-4955-99c0-c6a9fa839d19", + "dateNoted": "2022-12-27", "notes": "", - "parcelID": "18319", - "siteID": "19383", + "parcelID": "16655", + "siteID": "16918", "siteRegistry": true + }, + { + "uuid": "f71e3824-9f9b-4977-9273-bc63acd0194f", + "dateNoted": "2022-12-25", + "notes": "", + "parcelID": "15766", + "siteID": "17785", + "siteRegistry": false } ] }, { - "uuid": "935c4a48-481e-4b6e-8c0f-56f9344c33bb", - "siteID": 18349, - "address": "84502 Julian Flats", - "latitude": 57.591, - "longitude": -136.0767, - "lastUpdated": "2021-04-12", - "city": "North Holliebury", + "uuid": "35f555ea-cafd-4886-a34b-8eeb3351b051", + "siteID": 16853, + "address": "723 Jan Cliff", + "latitude": 51.3626, + "longitude": -128.3005, + "lastUpdated": "2018-11-15", + "city": "Orinstad", "region": "Vancouver Island/Coast", - "victoriaFile": "26250-20/7444", + "victoriaFile": "26250-20/9981", "regionalFile": "N/A", "parcelIDs": [ - 5915632, - 1113866, - 9151602, - 894211, - 4325564 + 316088, + 1623188, + 2164284, + 3974642, + 2778427 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "7183a33e-04d3-4bdd-b275-f6edc8ff4144", - "createdAt": "2015-01-12", - "completed": "2022-10-17", - "initiated": "2021-03-14", - "ministryContact": "GLEICHNER ESTEL", + "uuid": "5535e62d-7079-4aeb-8360-5e7654ff5703", + "createdAt": "2022-02-03", + "completed": "2017-03-24", + "initiated": "2015-06-25", + "ministryContact": "STAMM JAMISON", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -23333,32 +26672,32 @@ ], "notationParticipants": [ { - "uuid": "8875c7c1-1bca-4758-b552-5b65b8f14d82", + "uuid": "84888b98-327c-420d-b5b2-69e81d2c06e1", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false + "role": "SUBMITTED BY", + "siteRegistry": true }, { - "uuid": "3d113037-b676-4699-91d5-719896c439ac", + "uuid": "641deda1-8203-4e91-bb0d-460162354dce", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "3e7ed24e-1905-4e1e-a1be-8b80e112929b", - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "c19c20f4-d860-4945-ac45-63d9d0a88aa8", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "4fb8a71d-ab47-4aca-a14d-51a83e48f4dc", - "createdAt": "2020-03-28", - "completed": "2018-03-27", - "initiated": "2015-08-31", - "ministryContact": "HERMAN KAMRON", + "uuid": "4cfeca3c-e3b9-40db-b602-4f2526a3947b", + "createdAt": "2023-06-01", + "completed": "2020-06-06", + "initiated": "2023-01-13", + "ministryContact": "SCHIMMEL MAURINE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -23367,26 +26706,26 @@ ], "notationParticipants": [ { - "uuid": "bb919dab-1759-4e59-b986-ee37c29bf06a", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true + "uuid": "0cce1d2f-a4c6-4f2c-be01-e0b06a203738", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false }, { - "uuid": "16582cd3-c4b1-498b-b28b-9c09bcd1102f", + "uuid": "7e882d13-e804-41a7-bebd-06b7f6bcab89", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true + "role": "SUBMITTED BY", + "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "6d985ef2-8f16-4c0f-bacc-b544c701d29e", - "createdAt": "2017-09-21", - "completed": "2020-08-15", - "initiated": "2021-04-30", - "ministryContact": "KUNDE AMELY", + "uuid": "59f36f7e-100a-4dda-ac16-076be7badbfe", + "createdAt": "2021-09-18", + "completed": "2017-03-07", + "initiated": "2023-08-18", + "ministryContact": "LANG DEANGELO", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -23395,44 +26734,26 @@ ], "notationParticipants": [ { - "uuid": "10e6b801-f47c-4071-ae8c-72073d68acff", + "uuid": "70b47db9-7c29-4719-8a4f-9fee2afc9828", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "uuid": "663924f4-578e-4a5d-b86a-b796760de4d0", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", "siteRegistry": false }, { - "uuid": "f6738708-5357-4959-955e-46d627a55fa4", + "uuid": "940beefb-ca42-4333-b5f9-4a495a570adb", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "uuid": "8f784f84-06c1-44e8-89cd-6e73190d0b36", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "uuid": "1c2d34e3-000f-4141-bc4d-ba36c70cd6c9", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "0565c568-8de2-4759-b3e9-5661c3143c1a", - "createdAt": "2017-07-09", - "completed": "2018-10-14", - "initiated": "2019-07-02", - "ministryContact": "HOWELL DIEGO", + "uuid": "f8870496-67aa-497b-b0c3-6690d354be3b", + "createdAt": "2017-05-07", + "completed": "2018-10-30", + "initiated": "2023-04-08", + "ministryContact": "HUELS JENNIE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -23441,32 +26762,26 @@ ], "notationParticipants": [ { - "uuid": "49f138a1-74ce-400c-817d-a37da82c0509", - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "uuid": "1e5078eb-6df5-4f12-b505-1860b8d6576a", + "uuid": "d54a4238-8876-438c-b227-7a86f59157cb", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true }, { - "uuid": "12ffd343-47ce-4c8d-8d7d-7dfebd90f7e7", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "uuid": "f69267c9-f188-4b51-9b61-acf0ab169aff", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "7cc86cbb-705d-485a-a71c-d0f926121ee5", - "createdAt": "2021-08-23", - "completed": "2017-06-13", - "initiated": "2021-07-21", - "ministryContact": "FERRY AVERY", + "uuid": "0359281b-26a5-498a-8aad-20acf11add2d", + "createdAt": "2015-11-30", + "completed": "2016-04-13", + "initiated": "2023-01-04", + "ministryContact": "MOORE MICHELLE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -23475,49 +26790,49 @@ ], "notationParticipants": [ { - "uuid": "c5246dce-8edc-41e2-bc17-28c48fb14ca0", + "uuid": "cc998591-a197-41a9-aacd-1ddb4bb169bc", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true }, { - "uuid": "48dd761c-0a4b-4567-98fe-e5ca8e0f21f8", - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "eed72dfa-05e8-4a18-8ae8-241002361a43", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true } ], "participants": [ { - "uuid": "bb18f675-3009-4c03-80eb-019aff87376b", - "name": "IPSUM", - "endDate": "2021-10-02", - "startDate": "2017-03-12", + "uuid": "301b7e41-245e-4021-9c12-79e3e2de79c4", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2017-05-15", + "startDate": "2019-03-28", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "aebd14c1-4584-4c35-b959-9f595fe2f297", - "name": "AMET, DOLOR SIT", - "endDate": "2021-01-10", - "startDate": "2023-04-27", + "uuid": "b5c9264a-c79b-43a2-826b-7ed3aa962a4e", + "name": "IPSUM", + "endDate": "2014-04-20", + "startDate": "2016-05-12", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "6aa76ea4-2bba-49ea-b751-8bee5dba6002", - "name": "SHELL CANADA PRODUCTS", - "endDate": "2014-06-11", - "startDate": "2014-04-07", + "uuid": "96952d19-ead6-44dc-9036-3cf718af3bee", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2019-05-08", + "startDate": "2023-10-11", "notes": "", "roles": [ "EMPLOYEE" @@ -23525,153 +26840,249 @@ "siteRegistry": true }, { - "uuid": "999abdde-9cfe-4dad-8073-9956f2359c6b", + "uuid": "2587becc-67a1-4ece-aded-59ccfc8fadc1", "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2023-07-16", - "startDate": "2016-01-02", + "endDate": "2018-09-19", + "startDate": "2015-02-11", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": true }, { - "uuid": "5ced456d-62da-45b4-9e21-c723ba1dc567", - "name": "IPSUM", - "endDate": "2021-05-03", - "startDate": "2019-09-26", + "uuid": "5de648ae-e580-4479-9e91-881eb409dbae", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2023-06-28", + "startDate": "2017-05-19", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], - "siteRegistry": true + "siteRegistry": false + } + ], + "documents": [ + { + "uuid": "f37ec2d7-b0f6-4c3d-9303-5eeae3400135", + "siteRegistry": true, + "documentDate": "2014-12-19", + "receivedDate": "2018-11-21", + "uploadedDate": "2018-06-07", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "8ab50014-72f3-462a-80bc-0dc55e71a8ec", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "74d83360-7a53-4146-b3f5-257fe95f2dff", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "44dd5273-303b-449a-826b-85b4cd92741e", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": true, + "role": "AUTHOR" + } + ] + }, + { + "uuid": "af1759c7-5c9b-46e0-8e55-1e544a44f77c", + "siteRegistry": true, + "documentDate": "2022-03-02", + "receivedDate": "2019-01-02", + "uploadedDate": "2014-09-08", + "title": "Preliminary Site Investigation, Detailed Site Investigation and Remedial Plan for the Management Area adjacent to the Shell Site at 1503 West 41st Ave", + "participants": [ + { + "uuid": "006ed3b9-3180-43bd-8b83-4de9bfe6a39a", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "c38cb964-03fa-4382-bed7-07e72c616575", + "name": "IPSUM", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "9169bc30-fe12-4485-a435-6d8a915beefe", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": true, + "role": "AUTHOR" + } + ] + }, + { + "uuid": "91671b78-f107-4d2b-a089-36e6a29af5a7", + "siteRegistry": true, + "documentDate": "2017-07-14", + "receivedDate": "2020-01-29", + "uploadedDate": "2019-10-04", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "76801cda-c42f-48af-824f-8bdbf01f4c7c", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "ded0f7ba-329a-4486-b319-7b5407c8daff", + "name": "IPSUM", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "a69714db-cb7d-4e36-bba5-4554403b972a", + "name": "IPSUM", + "siteRegistry": false, + "role": "AUTHOR" + } + ] + }, + { + "uuid": "11858940-07d5-4ecd-a15d-fa5053a2380e", + "siteRegistry": false, + "documentDate": "2022-03-10", + "receivedDate": "2014-01-07", + "uploadedDate": "2016-02-06", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "094f1f79-a720-4ab6-afb2-888390023616", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "f92c00a2-01d3-4639-ae08-578fe86fcf69", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": true, + "role": "AUTHOR" + } + ] } ], "suspectLandUses": [ { - "uuid": "88f16046-f63e-499b-b40a-fedf6c102f51", + "uuid": "da74bc88-9751-4a72-af6c-4a8694e2d19f", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-01-01 (described on Site Profile dated 2018-01-01)", + "notes": "INSERTED FOR SITE PROFILE DATED 2022-07-18 (described on Site Profile dated 2022-07-18)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "uuid": "f057cb5d-5542-4c47-96d9-c2d87a59e808", + "uuid": "eac96810-caf8-4a29-b5e7-ea5fa443bd8e", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-05-08 (described on Site Profile dated 2022-05-08)", + "notes": "INSERTED FOR SITE PROFILE DATED 2019-11-25 (described on Site Profile dated 2019-11-25)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "uuid": "9646e33f-e247-4b9d-ad60-5aa2169dfda8", + "uuid": "9381884d-92ba-450f-8dfe-8cbe28bc67fd", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-06-12 (described on Site Profile dated 2017-06-12)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "notes": "INSERTED FOR SITE PROFILE DATED 2020-07-10 (described on Site Profile dated 2020-07-10)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "uuid": "a1437720-078c-4f4e-9901-a6b4c905d150", + "uuid": "9a543bf4-42e0-49b5-baf0-cf0d929c8cdf", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-01-24 (described on Site Profile dated 2017-01-24)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" - } - ], - "parcelDescriptions": [ - { - "uuid": "a0e8c7f1-67b8-4cdf-ae3c-155b01fa50d4", - "siteRegistry": false, - "dateNoted": "2017-07-14", - "parcelID": "19256", - "crownLandUsePIN": "19755", - "crownLandFileNumber": "17529", - "landDescription": "LOT 3 OF LOT 2 BLOCK 3 DISTRICT LOT 1 PLAN 5902" + "notes": "INSERTED FOR SITE PROFILE DATED 2013-12-07 (described on Site Profile dated 2013-12-07)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "uuid": "07154857-dea6-4e04-bb09-baa07654bcf4", + "uuid": "c46c6f1b-2147-4eec-a8bf-990c7514c334", "siteRegistry": false, - "dateNoted": "2014-06-17", - "parcelID": "20879", - "crownLandUsePIN": "19594", - "crownLandFileNumber": "19837", - "landDescription": "LOT 1 OF LOT 1 BLOCK 4 DISTRICT LOT 2 PLAN 4551" - }, + "notes": "INSERTED FOR SITE PROFILE DATED 2020-08-29 (described on Site Profile dated 2020-08-29)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + } + ], + "parcelDescriptions": [ { - "uuid": "3498e418-f50f-47db-9cdf-55749c7294b1", + "uuid": "67f379f1-ebe8-4895-9c83-7e03fc37bc4c", "siteRegistry": false, - "dateNoted": "2022-01-07", - "parcelID": "18882", - "crownLandUsePIN": "18265", - "crownLandFileNumber": "18930", - "landDescription": "LOT 1 OF LOT 3 BLOCK 3 DISTRICT LOT 1 PLAN 6847" + "dateNoted": "2019-12-30", + "parcelID": "16742", + "crownLandUsePIN": "19335", + "crownLandFileNumber": "18126", + "landDescription": "LOT 3 OF LOT 5 BLOCK 2 DISTRICT LOT 2 PLAN 3853" }, { - "uuid": "cd016c5b-9098-4786-8a2d-b648869a83dd", + "uuid": "22ca3142-7f75-4a13-88f7-bf43416d6d9c", "siteRegistry": false, - "dateNoted": "2023-07-25", - "parcelID": "17570", - "crownLandUsePIN": "15676", - "crownLandFileNumber": "15213", - "landDescription": "LOT 5 OF LOT 4 BLOCK 5 DISTRICT LOT 1 PLAN 5912" + "dateNoted": "2016-08-16", + "parcelID": "19090", + "crownLandUsePIN": "20372", + "crownLandFileNumber": "19647", + "landDescription": "LOT 1 OF LOT 4 BLOCK 5 DISTRICT LOT 5 PLAN 4822" } ], "siteDisclosures": [ { - "uuid": "7b2f807d-d4f7-43db-96f5-c02f8cbdceca", + "uuid": "6ef3697b-9515-4386-a0e2-92414f3452ca", "siteRegistry": false, - "dateReceived": "2021-09-15", - "dateCompleted": "2013-12-14", - "dateEntered": "2023-09-18", - "dateRegistrar": "2019-09-06", - "dateLocalAuthorityReceived": "2022-04-18", - "summary": "Corrupti magni quod perspiciatis expedita architecto.", - "informationUsed": "Reprehenderit exercitationem asperiores temporibus tenetur.\nExcepturi animi fugiat animi nam expedita quam deserunt voluptatibus.\nTempora quam fugiat et error non totam nostrum.\nIusto ea magnam vero sint reprehenderit occaecati fugit.\nLaboriosam voluptates quas sint omnis incidunt accusamus.", - "pastOrPresentOrders": "Facere consequatur occaecati perferendis ea sunt aliquam.\nEx aspernatur exercitationem illum a corrupti beatae aspernatur facere error.\nBlanditiis quod optio repellendus nisi.", + "dateReceived": "2022-10-18", + "dateCompleted": "2019-07-16", + "dateEntered": "2016-05-07", + "dateRegistrar": "2017-01-16", + "dateLocalAuthorityReceived": "2018-08-09", + "summary": "Corrupti minima necessitatibus perferendis culpa nemo.\nDebitis dignissimos inventore molestias maxime corrupti quaerat voluptate.\nRatione tempora autem natus provident porro perferendis dolorum minus hic.", + "informationUsed": "Voluptatem iure doloribus quaerat.\nProvident fugit ea aliquam pariatur quos illum veritatis.\nMagni iusto quo officiis ad mollitia.", + "pastOrPresentOrders": "Placeat fugit modi odit minus porro porro voluptate minus dolor.\nRepellendus earum harum.", "commercialAndIndustrialPurposes": [ { - "uuid": "48e1c46a-efc6-4cab-8002-ec0c5e73cb6a", + "uuid": "bc51e0ef-e7c7-49f7-b610-839cdc4bc5b1", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true - }, - { - "uuid": "47ed2e09-9dd6-49ef-9c73-6c9d96aec675", - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "00081767-92ad-444b-9fc9-2d172e526adf", - "scheduleReference": "F2*", + "uuid": "037c7d78-4bab-406c-bdf6-bb6ec01098f3", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true } ] }, { - "uuid": "067ddfbd-5449-413b-8bc2-a74efadbab01", - "siteRegistry": true, - "dateReceived": "2019-11-14", - "dateCompleted": "2014-05-17", - "dateEntered": "2022-11-06", - "dateRegistrar": "2020-07-15", - "dateLocalAuthorityReceived": "2016-04-26", - "summary": "Architecto temporibus illum unde saepe temporibus ex nam perspiciatis placeat.\nCupiditate atque laboriosam nam officia assumenda hic corporis totam.", - "informationUsed": "Dolore harum molestias quos porro porro laudantium non distinctio expedita.\nAmet ex necessitatibus sequi molestias eum adipisci facere.\nNemo illo perferendis laborum.", - "pastOrPresentOrders": "Possimus cumque iste.\nOptio a esse numquam quibusdam error voluptate ad debitis inventore.", + "uuid": "132424a3-5b7f-454c-91b2-f537698b3102", + "siteRegistry": false, + "dateReceived": "2014-01-30", + "dateCompleted": "2020-11-16", + "dateEntered": "2022-01-23", + "dateRegistrar": "2014-08-12", + "dateLocalAuthorityReceived": "2018-03-09", + "summary": "Error voluptate maiores.\nMollitia quisquam dicta illum pariatur quo fugiat sint explicabo.\nNobis saepe dolores iusto perspiciatis delectus laboriosam fugit suscipit dignissimos.", + "informationUsed": "Odio autem fugit.\nIste temporibus ad aliquid ipsam inventore aspernatur aliquam dolorum.\nDistinctio optio odit praesentium veritatis ipsum in ut.\nQuo corrupti quo ipsa.\nAlias repellat numquam fugiat eaque id id facilis quo.", + "pastOrPresentOrders": "Aliquam voluptas sit ad odio.\nAdipisci voluptatum ipsa voluptas nulla nihil cum tempora aliquam.", "commercialAndIndustrialPurposes": [ { - "uuid": "596ed368-ae00-4182-a2c7-1f1e322c3d2e", + "uuid": "2b928cee-06b0-418e-95b9-a8dc983ef08e", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "9d76e9df-cc52-4967-b359-230dc0048574", + "uuid": "8d34709d-b259-4b0a-8dc0-d47b008543af", "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true }, { - "uuid": "01168168-1a8e-4349-8a37-840827ec643b", + "uuid": "03115bbc-cb82-4b48-8127-c968a9ea869f", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "uuid": "29c9afaa-298c-49d8-a49f-51dbd870aab3", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false } ] @@ -23679,113 +27090,114 @@ ], "activityLog": [ { - "uuid": "09f993d9-557a-40d6-9fab-70bea38537a5", + "uuid": "97a75427-1f1b-4a91-8037-789af2cc4c5d", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "BLICK ABDIEL", - "timestamp": "2017-01-11" + "user": "BOYER MAX", + "timestamp": "2015-06-03" }, { - "uuid": "54eb5d2f-c9b7-476b-becd-1490165a7fe6", - "siteRegistry": false, + "uuid": "b809f7f6-b8b4-470c-9c20-23c5377f347f", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "KOCH DEANGELO", - "timestamp": "2021-08-07" + "user": "SENGER DAPHNE", + "timestamp": "2023-08-20" }, { - "uuid": "8cdbb7c2-51a4-47cc-beb0-65c835f6dec7", - "siteRegistry": false, + "uuid": "21a2014b-7914-477d-a6a9-caab593cb72c", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "RATH MATHIAS", - "timestamp": "2019-12-05" + "user": "LUEILWITZ DULCE", + "timestamp": "2018-11-13" }, { - "uuid": "c4e13097-22d3-4986-9af5-68ac5f4cda7a", - "siteRegistry": false, + "uuid": "5628dafa-b2db-4914-a231-a18b6ebd9fc4", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "MCKENZIE EDD", - "timestamp": "2023-08-10" + "user": "GISLASON SALLIE", + "timestamp": "2020-04-23" }, { - "uuid": "2663b340-55a4-48c3-aa6f-2fd448336453", - "siteRegistry": false, + "uuid": "020f4e64-43ec-4a51-8e5c-84afdabaa938", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "ERDMAN CLAIRE", - "timestamp": "2016-03-22" + "user": "SCHUSTER MATTIE", + "timestamp": "2020-11-25" }, { - "uuid": "fb3bbf68-c5cc-47f5-bf91-eb139192a7ef", + "uuid": "0313c5eb-6c8b-407f-b4b0-52585f592d03", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "LEDNER RYLEY", - "timestamp": "2022-08-22" + "user": "WALKER MAE", + "timestamp": "2020-05-08" }, { - "uuid": "0a9d62ba-e1d6-453d-83ad-07f76edb46ba", + "uuid": "c5df9310-0d7e-45c3-9ee6-eece30b553e7", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "ABSHIRE ZACHARY", - "timestamp": "2022-08-31" - }, - { - "uuid": "bf0e7825-e31a-4ae9-b9cf-c10610e5d102", - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "RUNOLFSDOTTIR KIP", - "timestamp": "2022-02-12" + "user": "GREEN GREGORY", + "timestamp": "2020-11-10" }, { - "uuid": "97b5f910-0049-481e-9f7f-b2020cbae0d7", + "uuid": "95de9164-a2c6-4d25-a5aa-7d502b8bbf19", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "MOEN LINCOLN", - "timestamp": "2014-05-21" + "user": "BUCKRIDGE HALLE", + "timestamp": "2020-02-20" }, { - "uuid": "b472be88-36a7-4090-abea-2df6756e9dba", - "siteRegistry": false, + "uuid": "69279c48-507b-42f8-af0c-3c32a0489822", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "KILBACK AVERY", - "timestamp": "2017-11-03" + "user": "BEDNAR LOGAN", + "timestamp": "2023-08-02" } ], "associatedSites": [ { - "uuid": "d460ea25-c91f-42c9-b9fa-69db49f53a7c", - "dateNoted": "2015-05-01", + "uuid": "83307b1f-b347-4271-aa64-ec4b01f32a3c", + "dateNoted": "2020-11-02", "notes": "", - "parcelID": "17307", - "siteID": "20682", - "siteRegistry": false + "parcelID": "17700", + "siteID": "18588", + "siteRegistry": true + }, + { + "uuid": "2ff4acce-869c-4040-b784-6f9092c97fe8", + "dateNoted": "2022-12-02", + "notes": "", + "parcelID": "20702", + "siteID": "16084", + "siteRegistry": true } ] }, { - "uuid": "328cacc9-1466-4f49-8c17-2ac178ba336b", - "siteID": 17233, - "address": "755 Eda Ridges", - "latitude": 50.2714, - "longitude": -128.8775, - "lastUpdated": "2019-04-22", - "city": "Port Zellaland", - "region": "Cariboo", - "victoriaFile": "26250-20/11544", + "uuid": "d0502473-fdc2-46e5-a7e3-5b3562e6a46b", + "siteID": 20029, + "address": "1261 Dickinson Unions", + "latitude": 55.4641, + "longitude": -129.7965, + "lastUpdated": "2018-09-10", + "city": "West Lyla", + "region": " North Coast", + "victoriaFile": "26250-20/19012", "regionalFile": "N/A", "parcelIDs": [ - 5953847, - 3802299, - 2560029, - 3671892, - 5264079 + 8444160, + 1315483, + 6603402, + 8661711, + 3690523 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "71fd9663-13b4-4192-8334-ce49d6089468", - "createdAt": "2022-09-23", - "completed": "2017-04-06", - "initiated": "2015-01-25", - "ministryContact": "CORWIN ELDON", + "uuid": "55abbe8d-b96d-4663-86b2-285ba4d8007b", + "createdAt": "2018-01-10", + "completed": "2022-01-07", + "initiated": "2016-12-01", + "ministryContact": "WALTER GILBERTO", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -23794,38 +27206,60 @@ ], "notationParticipants": [ { - "uuid": "45a6a824-343e-4bd4-bfef-1104b8b4cce1", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "uuid": "a4403402-4643-4675-bcde-0bd47b041837", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": true }, { - "uuid": "7608e4ed-b949-4331-aa8b-328933a048f4", - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "0cb213f2-088a-42de-82c5-2cd1ed469461", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "uuid": "8da301eb-b5da-4297-ac91-708f5eb2522c", + "createdAt": "2016-03-04", + "completed": "2014-06-12", + "initiated": "2022-10-07", + "ministryContact": "KIRLIN JARRED", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "uuid": "60584b16-0802-4bf4-81ac-1a97090b8b00", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "9f988034-8b64-462a-91ab-af02226b6b19", + "uuid": "d84cd984-4d64-44c3-b6d5-df441b55e7c7", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true }, { - "uuid": "10003094-4533-4a65-a124-4c51674f9852", + "uuid": "3c0ff6e5-80ba-428b-9f84-52aed14895e7", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "7a3634be-3800-42f0-9446-4807ab84c756", - "createdAt": "2016-12-04", - "completed": "2017-01-26", - "initiated": "2017-01-18", - "ministryContact": "LITTLE ESTELLA", + "uuid": "9eb71341-e687-4bb5-870c-2dfbb30f0fcf", + "createdAt": "2014-10-21", + "completed": "2020-06-20", + "initiated": "2023-01-31", + "ministryContact": "KREIGER VELDA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -23834,38 +27268,38 @@ ], "notationParticipants": [ { - "uuid": "45a8baa5-9227-4062-88c8-44ff5dba7702", - "name": "SHELL CANADA PRODUCTS", + "uuid": "b8b01cfc-4902-4b79-8c13-15799867901d", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "4a09b45a-e47a-42db-b17d-e90aa63248a4", + "uuid": "e3dee8e7-5c49-49eb-816d-aa63f9d7b58c", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false + "role": "SUBMITTED BY", + "siteRegistry": true }, { - "uuid": "0f1f3957-400b-4064-9baf-02140d6ab7d0", - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "b99e2ae9-2aa3-4ce1-8e8a-878db8520850", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "d7e48f6c-55d3-44be-befd-a79370a5382f", + "uuid": "da446b89-ef56-4e82-b6d6-4648f43e226e", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "827b3d36-2408-441c-bb3d-9afd3d81eaa3", - "createdAt": "2019-06-10", - "completed": "2022-10-03", - "initiated": "2020-01-11", - "ministryContact": "STAMM BETH", + "uuid": "77feae2c-f479-43d0-8245-3da942f25b8f", + "createdAt": "2023-02-12", + "completed": "2022-10-06", + "initiated": "2021-03-09", + "ministryContact": "GREEN BEAULAH", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -23874,27 +27308,15 @@ ], "notationParticipants": [ { - "uuid": "f7cedae5-115c-4635-83b9-c0cdb9772e31", - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "uuid": "66699b12-6093-4290-b9dc-e09d06f4e977", - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "uuid": "9994500d-b8ee-404d-a8f7-4b364dc54627", + "uuid": "28a4057f-eda9-42b7-91fd-f0999452c5b6", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "0a96f896-5eb7-4050-a480-722d4bf412a6", + "uuid": "a6c66f63-f6e7-4b7d-9246-ef1eaf2335b5", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false } ], @@ -23903,168 +27325,207 @@ ], "participants": [ { - "uuid": "870ecbb8-8457-46f9-8bdb-55a9c7dcb358", + "uuid": "ac3a934f-9ae7-46c8-b5e3-4f88e12bac42", "name": "IPSUM", - "endDate": "2019-11-30", - "startDate": "2022-03-17", + "endDate": "2021-01-23", + "startDate": "2022-06-27", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "685e06a6-96e3-4308-bbf1-77d6dbb2a847", - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2018-01-10", - "startDate": "2021-11-17", + "uuid": "daea204b-7092-4691-b2dc-b9c0a72dc5af", + "name": "AMET, DOLOR SIT", + "endDate": "2017-11-19", + "startDate": "2014-12-11", "notes": "", "roles": [ "EMPLOYEE" ], "siteRegistry": true - }, + } + ], + "documents": [ { - "uuid": "26e3365f-30b2-4ba7-9d34-31b6db790c3d", - "name": "IPSUM", - "endDate": "2023-09-13", - "startDate": "2023-08-21", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": true + "uuid": "c1c39f24-105c-44a4-b922-454002ab2ad9", + "siteRegistry": false, + "documentDate": "2020-03-14", + "receivedDate": "2013-10-21", + "uploadedDate": "2020-08-11", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "8ff8cc14-c4e6-49a3-a428-171ff677feee", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "f88b45d6-f7f6-4977-956a-b898ec86ff7b", + "name": "AMET, DOLOR SIT", + "siteRegistry": true, + "role": "AUTHOR" + } + ] }, { - "uuid": "9f7a3e0b-edad-47d0-a449-7d3e9c4a5a87", - "name": "AMET, DOLOR SIT", - "endDate": "2014-11-05", - "startDate": "2021-07-10", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": false + "uuid": "27b96b5a-5ea7-479f-86fc-1b768e3a38bf", + "siteRegistry": true, + "documentDate": "2021-08-06", + "receivedDate": "2020-08-02", + "uploadedDate": "2014-01-29", + "title": "Summary of Site Conditions, 1537 W 41st Avenue, Vancouver", + "participants": [ + { + "uuid": "d67d56e1-27a3-4494-9904-364f6fdf223d", + "name": "AMET, DOLOR SIT", + "siteRegistry": false, + "role": "AUTHOR" + } + ] } ], "suspectLandUses": [ { - "uuid": "ca3b52dc-c953-48ec-99f6-e1a7ff4288df", - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-06-02 (described on Site Profile dated 2019-06-02)", + "uuid": "8c245114-eede-46f5-a815-95b9885d2780", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2014-01-17 (described on Site Profile dated 2014-01-17)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "uuid": "26a8c28f-26fb-470f-8187-9f96087314dc", + "uuid": "8a255dbe-c23d-4eaf-a6b9-50922a6ef853", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2023-07-14 (described on Site Profile dated 2023-07-14)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" - }, - { - "uuid": "3184b8cd-f124-49ef-91b2-ada1730a99d2", - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2013-11-23 (described on Site Profile dated 2013-11-23)", + "notes": "INSERTED FOR SITE PROFILE DATED 2014-11-23 (described on Site Profile dated 2014-11-23)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "uuid": "d29977a4-50d7-4908-8773-2c6cfbf51505", + "uuid": "c1af0347-9938-4f4e-8761-30ec2d9a6a9b", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-07-15 (described on Site Profile dated 2015-07-15)", + "notes": "INSERTED FOR SITE PROFILE DATED 2014-05-10 (described on Site Profile dated 2014-05-10)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], "parcelDescriptions": [ { - "uuid": "219b25db-527e-41e7-8572-270694fba2e4", + "uuid": "b85ebc09-0d4c-4c4c-b6bc-acf71c24c9b0", + "siteRegistry": true, + "dateNoted": "2014-03-28", + "parcelID": "18053", + "crownLandUsePIN": "19272", + "crownLandFileNumber": "16540", + "landDescription": "LOT 3 OF LOT 2 BLOCK 3 DISTRICT LOT 4 PLAN 7323" + }, + { + "uuid": "6188943c-86c6-436c-9b21-01c095a9f1a0", "siteRegistry": false, - "dateNoted": "2020-06-20", - "parcelID": "16012", - "crownLandUsePIN": "20507", - "crownLandFileNumber": "15724", - "landDescription": "LOT 4 OF LOT 5 BLOCK 1 DISTRICT LOT 3 PLAN 3249" + "dateNoted": "2016-08-20", + "parcelID": "20450", + "crownLandUsePIN": "19361", + "crownLandFileNumber": "20751", + "landDescription": "LOT 1 OF LOT 1 BLOCK 3 DISTRICT LOT 1 PLAN 4331" + }, + { + "uuid": "8c93321c-a844-4c9a-98b6-d88b6ce2727b", + "siteRegistry": false, + "dateNoted": "2021-11-28", + "parcelID": "18116", + "crownLandUsePIN": "19289", + "crownLandFileNumber": "20982", + "landDescription": "LOT 3 OF LOT 4 BLOCK 1 DISTRICT LOT 3 PLAN 6184" }, { - "uuid": "fd910582-f5ef-4c5d-b59e-9836084809d9", + "uuid": "34bdadc7-b6e5-45f2-bcee-2683f13426bc", + "siteRegistry": true, + "dateNoted": "2017-07-03", + "parcelID": "16930", + "crownLandUsePIN": "19535", + "crownLandFileNumber": "15872", + "landDescription": "LOT 5 OF LOT 1 BLOCK 4 DISTRICT LOT 5 PLAN 4745" + }, + { + "uuid": "28be60e6-ec14-4b19-b110-5c39c92140da", "siteRegistry": false, - "dateNoted": "2021-09-18", - "parcelID": "18009", - "crownLandUsePIN": "19655", - "crownLandFileNumber": "16433", - "landDescription": "LOT 4 OF LOT 1 BLOCK 5 DISTRICT LOT 4 PLAN 7809" + "dateNoted": "2023-08-04", + "parcelID": "16469", + "crownLandUsePIN": "18345", + "crownLandFileNumber": "17941", + "landDescription": "LOT 2 OF LOT 2 BLOCK 2 DISTRICT LOT 1 PLAN 6623" } ], "siteDisclosures": [ { - "uuid": "963a47d0-6f40-467a-8522-211e89ccf4db", + "uuid": "e1bf87e9-afc1-4f6a-b217-3b357eaf35c7", "siteRegistry": false, - "dateReceived": "2015-09-30", - "dateCompleted": "2019-03-22", - "dateEntered": "2018-07-27", - "dateRegistrar": "2015-01-21", - "dateLocalAuthorityReceived": "2023-09-09", - "summary": "Aliquid natus tempora reiciendis.\nDignissimos consectetur iure illo a corporis numquam aperiam.\nLaboriosam in possimus nemo deleniti quisquam quam.", - "informationUsed": "Modi consequuntur placeat.\nMinus cupiditate quas corporis voluptatem vero facilis beatae.\nNulla suscipit sed nobis.", - "pastOrPresentOrders": "Magnam dolorem aut.\nEt mollitia corporis autem ratione dignissimos provident quod aspernatur accusamus.\nExercitationem dolore corrupti distinctio nihil dolores natus temporibus.", + "dateReceived": "2016-06-22", + "dateCompleted": "2014-06-18", + "dateEntered": "2017-03-30", + "dateRegistrar": "2014-06-26", + "dateLocalAuthorityReceived": "2018-03-11", + "summary": "Quae incidunt voluptas esse veritatis ipsum assumenda.\nAnimi ipsa vero incidunt facilis libero assumenda et necessitatibus.\nQui aut iure suscipit aspernatur nemo quae asperiores.", + "informationUsed": "Blanditiis ex itaque rem ab culpa.\nDignissimos et perspiciatis magni vitae maxime reiciendis optio qui culpa.\nRepudiandae quibusdam necessitatibus minus quod temporibus enim expedita animi explicabo.\nSed aperiam a facere natus molestiae.\nMollitia alias nisi nulla reprehenderit cumque facere quia ratione.", + "pastOrPresentOrders": "Veniam doloribus voluptates est quam quas tempore odit eligendi.\nLaboriosam perspiciatis maxime.\nDoloribus sint adipisci.", "commercialAndIndustrialPurposes": [ { - "uuid": "d1991071-726b-4341-8ea4-39bff6a8decb", + "uuid": "a62c0b5d-4019-4ebe-af35-a3beff0ded02", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "05b5e998-0dfe-41d5-b08c-b6e5d46cd2da", - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "uuid": "3fc2bf7d-d328-4691-a44f-5a0e09f54acf", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { - "uuid": "95862edd-0284-49c2-9e11-15910d9f1cf1", + "uuid": "5e2c8dd9-8e91-4946-bd44-bd3ab6de57b8", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, { - "uuid": "16c04886-bca6-455d-b4c3-ecfda942bbb2", - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true + "uuid": "ae99b5d2-edc5-47ef-9264-73c25239a914", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false } ] }, { - "uuid": "554e1d2f-4e26-4725-930f-0caf2f6ef3be", + "uuid": "9530e2a2-f1f5-4e9b-9a39-38e78cbbb873", "siteRegistry": false, - "dateReceived": "2020-12-29", - "dateCompleted": "2018-11-29", - "dateEntered": "2023-08-04", - "dateRegistrar": "2019-04-03", - "dateLocalAuthorityReceived": "2016-01-05", - "summary": "Ab libero et praesentium vero et ullam.\nProvident corporis soluta culpa nemo occaecati libero.", - "informationUsed": "Exercitationem blanditiis ipsam a mollitia dolor natus fuga.\nConsectetur et molestias optio.\nUnde sunt sequi culpa molestiae ratione nostrum ipsa ipsa doloribus.\nQuidem laudantium sint quos aut blanditiis perferendis ipsam.", - "pastOrPresentOrders": "Ratione ducimus dignissimos.", + "dateReceived": "2017-03-22", + "dateCompleted": "2018-05-21", + "dateEntered": "2020-12-11", + "dateRegistrar": "2016-04-20", + "dateLocalAuthorityReceived": "2023-04-08", + "summary": "Deserunt non tenetur ipsum quae.\nVeniam sapiente quaerat commodi necessitatibus deserunt saepe sed.", + "informationUsed": "Eveniet illo ad iste nemo consequatur atque placeat laborum a.\nOccaecati consequuntur repellendus vel.\nPerferendis alias dolorum sequi unde occaecati ratione repellendus fugit itaque.\nVoluptatibus porro esse ratione consectetur adipisci porro similique nihil illo.", + "pastOrPresentOrders": "Impedit beatae soluta laudantium fugit adipisci expedita ex omnis officiis.\nDistinctio provident debitis ullam asperiores quia.\nAnimi quod harum.", "commercialAndIndustrialPurposes": [ { - "uuid": "ea0d190f-2a44-449a-ae09-e3f17446805c", + "uuid": "36a5a9e4-b0ac-4135-b80b-71134e58f646", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "0d8d042a-712e-4d44-ac25-2510e221ccd7", - "scheduleReference": "F2*", + "uuid": "fdda7dc6-ac30-437c-8e70-e8ef50398678", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "3748ec0c-2b52-4ef7-b5d3-923220331329", - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "uuid": "00079397-37bc-4657-b3e6-c8b06ca9882d", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { - "uuid": "0aef2916-d4a4-4ae6-90cc-f2c07523b318", - "scheduleReference": "F2*", + "uuid": "cbfa5235-2328-4406-8af7-f5ac9ee2437f", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false } @@ -24073,106 +27534,114 @@ ], "activityLog": [ { - "uuid": "d2236879-523c-4e85-bb2e-973a8558a11a", + "uuid": "41a37f5a-97dc-4712-b309-eb60dbee7149", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "O'HARA MAURICIO", - "timestamp": "2019-10-01" + "user": "WEBER CAMILLA", + "timestamp": "2018-11-21" }, { - "uuid": "51dddf36-8b4b-403f-94c6-c4188b477c1d", + "uuid": "3388f147-da1a-4b5c-9d4c-91894273431d", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "CRONA DORTHY", - "timestamp": "2018-05-04" + "user": "HERMANN CAMRYN", + "timestamp": "2021-07-20" }, { - "uuid": "269afea9-bc4b-4dbf-935f-b2849006658b", - "siteRegistry": true, + "uuid": "32f5c304-3861-4145-910a-1af126a7475b", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "KUNDE SOPHIA", - "timestamp": "2016-09-21" + "user": "MEDHURST RANDALL", + "timestamp": "2019-12-13" }, { - "uuid": "d3fba94d-7b30-4176-9313-ad1d1ac77cb7", + "uuid": "d1c8f564-9a57-43eb-9b16-8924cc668f7b", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "KOELPIN ADOLFO", - "timestamp": "2014-06-22" + "user": "SANFORD-GOLDNER GARRET", + "timestamp": "2015-07-13" }, { - "uuid": "35a98526-36bb-4554-9609-12bc7e9f0a1e", - "siteRegistry": false, + "uuid": "3a3504b7-d9bf-47e1-929e-2ac9484ce393", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "BAILEY NICHOLE", - "timestamp": "2020-05-08" + "user": "PROSACCO MAKENNA", + "timestamp": "2016-09-20" }, { - "uuid": "2fea0a95-6bcd-4a09-b29c-e483a757d795", + "uuid": "0f5e02df-d5b8-4803-a4e4-517f0f8f5251", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "LEANNON CHRISTINE", - "timestamp": "2020-10-05" + "user": "NOLAN BARRY", + "timestamp": "2020-03-10" }, { - "uuid": "8e1e02a9-3bba-4954-a34b-d7cd25a626cf", - "siteRegistry": true, + "uuid": "e3c03339-9ec2-4ae1-880f-971a21735f9c", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "ROHAN EDDIE", - "timestamp": "2022-12-15" + "user": "LEFFLER KEIRA", + "timestamp": "2015-03-08" }, { - "uuid": "a3329ede-d57a-407f-8455-c134351a5e7a", + "uuid": "a2ad1258-04f7-462d-99ed-fcf5632f56f7", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "ROBERTS VITA", - "timestamp": "2020-07-19" + "user": "OBERBRUNNER SADYE", + "timestamp": "2017-08-23" }, { - "uuid": "7bcfce3a-845d-4c71-920d-eaf75c8ba0ad", + "uuid": "251e8b2f-1653-47cb-abfa-47391e0d5afa", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "MORAR MELVIN", - "timestamp": "2023-04-21" + "user": "HEANEY LEONORA", + "timestamp": "2014-05-06" } ], "associatedSites": [ { - "uuid": "5d1e0d0d-ade2-45bd-9961-8a2611c94e49", - "dateNoted": "2021-02-10", + "uuid": "0c32a4ee-34aa-4a6b-be41-b95f7f70a5cd", + "dateNoted": "2017-01-17", "notes": "", - "parcelID": "19840", - "siteID": "17673", - "siteRegistry": false + "parcelID": "15213", + "siteID": "17993", + "siteRegistry": true + }, + { + "uuid": "be7781f1-662c-4827-9ee5-18cefcb7712b", + "dateNoted": "2018-07-09", + "notes": "", + "parcelID": "18341", + "siteID": "15253", + "siteRegistry": true } ] }, { - "uuid": "4130de63-4f83-4b3a-af35-57ee233190f5", - "siteID": 15432, - "address": "9201 Ryann Fields", - "latitude": 51.6351, - "longitude": -134.1387, - "lastUpdated": "2015-07-07", - "city": "Moline", - "region": "Kootenay", - "victoriaFile": "26250-20/8308", + "uuid": "73be9a04-2da0-4912-acd0-ba00b0e2c04a", + "siteID": 17697, + "address": "791 Ayana Dale", + "latitude": 48.4697, + "longitude": -127.6479, + "lastUpdated": "2020-06-09", + "city": "Woodbury", + "region": " North Coast", + "victoriaFile": "26250-20/9505", "regionalFile": "N/A", "parcelIDs": [ - 2170211, - 9712501, - 6319450, - 974129, - 2972703 + 4973517, + 597712, + 1156527, + 8357806, + 6541749 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "52eeb1cb-c40c-4714-a068-153cddde3b66", - "createdAt": "2022-08-03", - "completed": "2022-11-06", - "initiated": "2023-02-23", - "ministryContact": "LUBOWITZ CARMELLA", + "uuid": "319c76ac-a047-414a-af9e-a8fb6336f21a", + "createdAt": "2021-07-02", + "completed": "2016-01-13", + "initiated": "2014-07-02", + "ministryContact": "GERHOLD LYDIA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -24181,26 +27650,38 @@ ], "notationParticipants": [ { - "uuid": "94f7b545-c544-47f1-a8f8-87f23e6a2d42", + "uuid": "840f885b-24ad-49ea-9511-6c9d6c219922", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "e74d29c9-4984-4381-9ab3-7b4560acbb81", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "335c0d64-eb45-40ae-80f1-d9c5c6f844d6", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "ce668b8b-0815-42a2-81c2-167e5782eb1e", + "uuid": "f917bf18-02cf-40ad-9e05-f2e3c8d462ee", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "2e06d20a-0e49-4cbc-ab92-19b8528d2049", - "createdAt": "2016-04-19", - "completed": "2023-03-11", - "initiated": "2021-01-03", - "ministryContact": "RUTHERFORD-HERMISTON ROSEMARY", + "uuid": "be320406-f9e9-4196-ae8a-c863cace9854", + "createdAt": "2018-08-01", + "completed": "2014-01-20", + "initiated": "2020-07-06", + "ministryContact": "JAKUBOWSKI ADDISON", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -24209,33 +27690,73 @@ ], "notationParticipants": [ { - "uuid": "63f28b54-17ae-4fb8-90ee-f6735cb47af6", + "uuid": "d5609b29-8512-436d-9c41-d02fc3c92d69", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "uuid": "95ae6f95-8e0d-4342-8e50-176263878018", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "acec1d2e-8c99-492c-84ce-5982d40599d1", - "name": "SHELL CANADA PRODUCTS", + "uuid": "e19a1db9-4a2e-4ff9-91be-4e3321531cc0", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "uuid": "8a91b271-e161-4388-bad2-401cd9a2264f", + "createdAt": "2016-03-28", + "completed": "2023-03-08", + "initiated": "2019-03-11", + "ministryContact": "MULLER ALLENE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "uuid": "f14cf9b0-e77b-4242-98de-e54a5de690cc", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "c5bbb712-3fb1-4045-a0cd-9606664ebc3e", - "name": "SHELL CANADA PRODUCTS", + "uuid": "5b734780-21be-4cce-8e95-79073add3cb8", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true + }, + { + "uuid": "f111be16-1540-47f3-88fe-a9aa859cbc03", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "eb9ea4aa-b023-49a0-82fa-f89315941f9c", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true } ], "participants": [ { - "uuid": "4bc8f94d-9a7e-40cf-9347-92f48d161940", - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2014-10-10", - "startDate": "2014-06-11", + "uuid": "d2b8071b-b811-4f7b-a7be-e6f961049902", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2017-12-20", + "startDate": "2022-11-18", "notes": "", "roles": [ "ORGANIZATION" @@ -24243,10 +27764,10 @@ "siteRegistry": true }, { - "uuid": "50e501ec-cfdc-44db-995b-d9c56d237700", - "name": "AMET, DOLOR SIT", - "endDate": "2020-03-02", - "startDate": "2019-03-11", + "uuid": "cfdf6c65-7d4c-4189-a6a8-9dd70731e6f3", + "name": "IPSUM", + "endDate": "2014-03-04", + "startDate": "2017-12-12", "notes": "", "roles": [ "ORGANIZATION" @@ -24254,124 +27775,160 @@ "siteRegistry": true }, { - "uuid": "a5afcd39-7dc1-4de6-8fe4-30cbb4a398a9", - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2022-07-25", - "startDate": "2014-07-07", + "uuid": "92b30b79-eb88-44fb-ad39-1e991edb9ac8", + "name": "IPSUM", + "endDate": "2017-04-24", + "startDate": "2015-08-03", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "a7a84d33-5734-4aae-9ec4-c1fc3a95f411", + "uuid": "eaa562e9-6681-47af-8799-8355a218f11c", "name": "AMET, DOLOR SIT", - "endDate": "2017-07-23", - "startDate": "2023-01-02", + "endDate": "2019-06-11", + "startDate": "2016-07-23", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": true + "siteRegistry": false + }, + { + "uuid": "a9cf99f4-668e-4e67-a28d-089c27c27b94", + "name": "IPSUM", + "endDate": "2014-12-19", + "startDate": "2015-11-08", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false } ], - "suspectLandUses": [ - { - "uuid": "6761564b-9423-4fc9-a7ae-b168e359d3aa", - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-01-11 (described on Site Profile dated 2021-01-11)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" - }, + "documents": [ { - "uuid": "722641d5-4723-4804-b90c-a1ad33940560", + "uuid": "c1fec79b-96e3-4dbf-b0af-5c1907576027", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-12-07 (described on Site Profile dated 2022-12-07)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "documentDate": "2019-12-27", + "receivedDate": "2022-02-11", + "uploadedDate": "2017-03-06", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "c12e050c-bff9-4eaf-a91b-bf79929d59a0", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "66e6dd37-bd63-4548-a5dc-6b493b5e7f53", + "name": "IPSUM", + "siteRegistry": true, + "role": "AUTHOR" + } + ] }, { - "uuid": "90d32dcf-5043-4b02-8a0f-2e5884d69c17", - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-08-17 (described on Site Profile dated 2019-08-17)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "uuid": "04c2b4e2-c286-471b-9f75-6683602710cc", + "siteRegistry": true, + "documentDate": "2018-11-14", + "receivedDate": "2016-04-23", + "uploadedDate": "2014-02-15", + "title": "Preliminary Site Investigation, Detailed Site Investigation and Remedial Plan for the Management Area adjacent to the Shell Site at 1503 West 41st Ave", + "participants": [ + { + "uuid": "30ded2fd-460c-4e39-84b8-70ff0cd1bcde", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "5e87106e-9180-4090-a6a2-bc127d97b5a4", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "1de0e8f7-7222-40c7-8626-63f70fee3736", + "name": "IPSUM", + "siteRegistry": true, + "role": "AUTHOR" + } + ] } ], - "parcelDescriptions": [ + "suspectLandUses": [ { - "uuid": "d6ca8598-2fe6-4010-bd73-96601b4a9ef8", + "uuid": "06102116-34e2-43ea-bd6f-b8a75063cf5a", "siteRegistry": true, - "dateNoted": "2015-09-11", - "parcelID": "15640", - "crownLandUsePIN": "18784", - "crownLandFileNumber": "15565", - "landDescription": "LOT 2 OF LOT 3 BLOCK 3 DISTRICT LOT 2 PLAN 5504" - }, - { - "uuid": "bb151070-9c98-4c63-b9f4-6ad97f431453", - "siteRegistry": false, - "dateNoted": "2015-03-28", - "parcelID": "19797", - "crownLandUsePIN": "15355", - "crownLandFileNumber": "15979", - "landDescription": "LOT 4 OF LOT 5 BLOCK 3 DISTRICT LOT 2 PLAN 8454" + "notes": "INSERTED FOR SITE PROFILE DATED 2020-05-28 (described on Site Profile dated 2020-05-28)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "uuid": "0ad65e18-2202-4b06-8b05-0d6235f0a108", - "siteRegistry": false, - "dateNoted": "2015-11-03", - "parcelID": "20595", - "crownLandUsePIN": "17757", - "crownLandFileNumber": "18699", - "landDescription": "LOT 3 OF LOT 4 BLOCK 4 DISTRICT LOT 1 PLAN 4956" - }, + "uuid": "f42e665b-f916-44be-949e-a20711f1834a", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2021-12-21 (described on Site Profile dated 2021-12-21)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + } + ], + "parcelDescriptions": [ { - "uuid": "eea35ebe-aba2-4be7-a946-a9adba8bb94d", + "uuid": "65b8850b-8061-4010-a398-24a3f6e704af", "siteRegistry": false, - "dateNoted": "2022-09-04", - "parcelID": "20220", - "crownLandUsePIN": "20950", - "crownLandFileNumber": "17004", - "landDescription": "LOT 4 OF LOT 5 BLOCK 1 DISTRICT LOT 2 PLAN 5437" + "dateNoted": "2019-04-21", + "parcelID": "16883", + "crownLandUsePIN": "20523", + "crownLandFileNumber": "17817", + "landDescription": "LOT 1 OF LOT 5 BLOCK 4 DISTRICT LOT 5 PLAN 4139" }, { - "uuid": "f1d164e9-3ff6-4f5c-8130-2a5e89f201ea", + "uuid": "d53bc12e-07d8-472d-bc6f-9a076fe4ced3", "siteRegistry": true, - "dateNoted": "2016-03-26", - "parcelID": "16144", - "crownLandUsePIN": "16205", - "crownLandFileNumber": "20174", - "landDescription": "LOT 1 OF LOT 2 BLOCK 1 DISTRICT LOT 3 PLAN 3337" + "dateNoted": "2021-09-20", + "parcelID": "18867", + "crownLandUsePIN": "18884", + "crownLandFileNumber": "17621", + "landDescription": "LOT 3 OF LOT 3 BLOCK 4 DISTRICT LOT 2 PLAN 7835" } ], "siteDisclosures": [ { - "uuid": "6a0e5b83-66d8-4903-ad7f-4bc59f4fc487", - "siteRegistry": false, - "dateReceived": "2021-09-10", - "dateCompleted": "2021-06-07", - "dateEntered": "2017-08-19", - "dateRegistrar": "2019-07-04", - "dateLocalAuthorityReceived": "2017-07-26", - "summary": "Maiores quos iure labore quae provident.\nNobis ipsam modi eius omnis officiis.\nOfficiis rem unde cumque cum voluptate sit laborum quasi quisquam.", - "informationUsed": "Soluta et omnis error mollitia maiores culpa quia.\nRerum iusto ipsum deserunt officiis voluptatum molestias unde tempora.\nEst dicta magnam ea alias saepe.\nExcepturi corporis illo ipsa enim.", - "pastOrPresentOrders": "Consectetur veniam consequatur esse quibusdam.", + "uuid": "5942e54b-866d-4e07-99b7-3517fe6f910c", + "siteRegistry": true, + "dateReceived": "2015-11-11", + "dateCompleted": "2019-12-15", + "dateEntered": "2023-04-25", + "dateRegistrar": "2017-07-23", + "dateLocalAuthorityReceived": "2022-02-08", + "summary": "Eaque natus dolorem repellat culpa nam optio corporis.\nAdipisci aliquam nostrum sunt cumque corporis nostrum dolor nihil.\nRepellendus facilis dignissimos fuga repellendus blanditiis quisquam.", + "informationUsed": "Aliquid a aspernatur inventore quam asperiores.\nPossimus earum fugit nesciunt odio modi dolorem.\nAb quisquam maxime perferendis.\nEst ab sapiente temporibus provident aliquid praesentium occaecati ratione a.\nMinima temporibus vel dolore quas sed libero rerum.", + "pastOrPresentOrders": "Consequuntur commodi numquam.", "commercialAndIndustrialPurposes": [ { - "uuid": "fefad337-85fc-48f9-a8a0-6b7f8129f3cf", + "uuid": "add5af45-48d4-4dc6-9832-1b054daa6e47", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "uuid": "108292a7-d7a0-4bb4-af24-779b612758d0", "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { - "uuid": "0f22a611-5768-42c7-8ef4-93b86cb11733", + "uuid": "f82e91d7-9f9c-4a59-a0c5-a46fb9d1402e", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "cc0ba0ab-01bb-4ea8-aa40-757b3329bffe", + "uuid": "3bd39c10-4e8a-42cc-9743-1b430477f514", "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true } ] @@ -24379,121 +27936,122 @@ ], "activityLog": [ { - "uuid": "dc189bc5-8738-4af5-9f00-3983bd1fb32f", - "siteRegistry": false, + "uuid": "d434e105-73de-4779-b4d8-0cf5f89a63fa", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "LESCH MAVERICK", - "timestamp": "2019-05-26" + "user": "BARTELL AGLAE", + "timestamp": "2020-04-13" }, { - "uuid": "53ccbe5a-0be2-4b13-9fc9-e67a5496ab6c", + "uuid": "4b67c387-ba31-4544-a792-0fcebfe707d6", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "LEUSCHKE ARLO", - "timestamp": "2016-12-17" + "user": "BAYER JACINTO", + "timestamp": "2015-05-27" }, { - "uuid": "0cd82626-d75b-423e-858d-f7b393596409", + "uuid": "4bf763fc-c720-4e75-b3d9-44adb3600c74", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "CRONA EVERETT", - "timestamp": "2020-12-10" + "user": "TOY PASQUALE", + "timestamp": "2022-09-21" }, { - "uuid": "77c6e86e-a4c3-4f4e-ba19-66648ae5c19b", + "uuid": "380a5122-dec6-48f1-8a7f-e2611a83f135", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "MCGLYNN TURNER", - "timestamp": "2014-10-10" + "user": "LINDGREN OFELIA", + "timestamp": "2016-12-27" }, { - "uuid": "fc7827a5-b023-4617-b987-af91abe47092", + "uuid": "77d45b7f-8eeb-4ba6-91c0-a8367d770cf1", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "WISOZK JERAMIE", - "timestamp": "2022-05-27" - }, - { - "uuid": "c2f2023b-0350-4523-a80e-f929200c603f", - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "RAU IRWIN", - "timestamp": "2019-04-12" + "user": "HUEL NORRIS", + "timestamp": "2018-09-27" }, { - "uuid": "1327b418-563d-437f-a94b-7cc9a02b5195", - "siteRegistry": true, + "uuid": "ccce7f7e-0fcf-4340-954a-5526add035fb", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "HOWELL WERNER", - "timestamp": "2023-05-01" + "user": "STREICH RACHEL", + "timestamp": "2022-07-08" }, { - "uuid": "cd9720cd-0680-4946-9285-ae3b48e4174f", + "uuid": "48dae75b-064b-46c6-8f60-5c1b2dcbce50", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "HOWE DALE", - "timestamp": "2022-01-02" + "user": "KASSULKE JADE", + "timestamp": "2018-03-12" }, { - "uuid": "4307d9c3-4191-4a51-97b4-a89d0a6e2806", - "siteRegistry": false, + "uuid": "9df934fd-f720-46dc-8d82-8278fc77217a", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "LOCKMAN ALVENA", - "timestamp": "2019-10-07" + "user": "LUETTGEN LUCIENNE", + "timestamp": "2022-05-29" }, { - "uuid": "b230f6fa-083e-4b1f-b0fd-e9629cab2234", + "uuid": "4aa14c1a-1fb5-4382-96ee-b77ba66a2954", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "SANFORD ROMA", - "timestamp": "2023-09-27" + "user": "KONOPELSKI HULDA", + "timestamp": "2019-10-10" } ], "associatedSites": [ { - "uuid": "284fad88-778c-444c-9313-cbeb4a871fd8", - "dateNoted": "2022-03-25", + "uuid": "fc4bf41a-d9b2-43d7-aae4-3c5a93f75878", + "dateNoted": "2016-10-07", "notes": "", - "parcelID": "15513", - "siteID": "19122", + "parcelID": "15935", + "siteID": "19175", "siteRegistry": false }, { - "uuid": "40812678-caa1-4d5a-9672-e6c3e93e8762", - "dateNoted": "2019-10-22", + "uuid": "2cad309a-f9c3-4ac8-8b68-a8b7ddf35095", + "dateNoted": "2014-04-30", + "notes": "", + "parcelID": "19998", + "siteID": "19389", + "siteRegistry": true + }, + { + "uuid": "78a68734-de5e-453c-b9a9-e02784f8a718", + "dateNoted": "2018-02-06", "notes": "", - "parcelID": "20302", - "siteID": "17161", + "parcelID": "17242", + "siteID": "17443", "siteRegistry": true } ] }, { - "uuid": "68863473-43a8-407d-b618-427f23a896ea", - "siteID": 16535, - "address": "4902 Monique Streets", - "latitude": 56.6323, - "longitude": -131.7874, - "lastUpdated": "2020-08-20", - "city": "Lake Lazarobury", - "region": "Vancouver Island/Coast", - "victoriaFile": "26250-20/14173", + "uuid": "374ce64d-648c-4391-9250-dc023c8197d1", + "siteID": 18803, + "address": "576 Barton Cape", + "latitude": 50.447, + "longitude": -136.7345, + "lastUpdated": "2015-04-03", + "city": "Kozeyfurt", + "region": " North Coast", + "victoriaFile": "26250-20/10211", "regionalFile": "N/A", "parcelIDs": [ - 135404, - 342848, - 8995551, - 6583735, - 745026 + 9043317, + 6236391, + 8587253, + 4113773, + 1539352 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "2b4ec89a-2996-4854-a882-0f1f91243b5a", - "createdAt": "2022-09-25", - "completed": "2018-03-21", - "initiated": "2017-12-27", - "ministryContact": "DONNELLY DEONTE", + "uuid": "2b781f1f-8fb7-41da-bb2d-9f652bcc0ef7", + "createdAt": "2020-02-03", + "completed": "2018-06-18", + "initiated": "2021-08-16", + "ministryContact": "WILL JUSTON", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -24502,38 +28060,72 @@ ], "notationParticipants": [ { - "uuid": "2eac4cd6-def4-453c-aadd-e8afa76994a1", - "name": "SHELL CANADA PRODUCTS", + "uuid": "3fd8b5a5-5365-4067-90a3-89ebd6515dc8", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false }, { - "uuid": "0db7167b-db6d-4b30-921a-bb694f550abe", + "uuid": "500461d6-0fd3-4b73-ab2a-8f6ffe45d114", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "00b352bb-7e16-4ece-8cb7-09510eeaed7a", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "c69418ce-493b-4e2e-b061-965a49990965", + "uuid": "3d2f88d1-79a8-4ac5-a13a-4087b50034f7", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "uuid": "d0411884-6ae5-4b53-9849-6ffcc0b1bfe5", + "createdAt": "2021-05-16", + "completed": "2023-03-07", + "initiated": "2021-08-11", + "ministryContact": "TROMP CHARITY", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "uuid": "e5c5c8fd-02b3-4f82-ab9e-6901662f08c3", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "daa6ebb6-e349-4159-9453-6ea903cfb6b3", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": true }, { - "uuid": "ba391e07-042f-4cf8-a9bc-1aab4f1edde5", + "uuid": "59c74339-7414-4a23-bf3c-f1667a702122", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "185f20d0-477d-4bdd-b2bb-74b793ef0c80", - "createdAt": "2021-07-23", - "completed": "2016-05-31", - "initiated": "2019-11-17", - "ministryContact": "COLLINS SETH", + "uuid": "a0add072-ec45-47a7-85b1-ec265307d925", + "createdAt": "2022-07-25", + "completed": "2014-08-29", + "initiated": "2015-05-29", + "ministryContact": "BEATTY GEOFFREY", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -24542,16 +28134,56 @@ ], "notationParticipants": [ { - "uuid": "a5105517-4a56-45d5-bd57-bc2bcea2b103", - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "7ba0c253-97a2-4a6e-a1c8-fdef53089bfd", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "35395073-bc13-4e2a-848a-29fbb6dd4d7f", + "uuid": "2a2de2f1-18f9-477a-81fc-54547faa5ae8", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "uuid": "55a7e3ba-5fb1-4b0f-8659-411727a131f3", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "uuid": "4f0c562f-b2b1-4b1d-b0de-8a8e0dbd335c", + "createdAt": "2014-02-12", + "completed": "2020-09-08", + "initiated": "2021-12-29", + "ministryContact": "WINDLER STEFAN", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "uuid": "50fcb6ec-9f9e-4c99-83ca-6facdc812fde", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "uuid": "b14c7824-941d-4cb0-990f-65bc053e538c", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": false + }, + { + "uuid": "46ed6c5a-e6e6-416e-85fe-0f57c4a71e55", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true } ], "siteRegistry": false @@ -24559,147 +28191,193 @@ ], "participants": [ { - "uuid": "3a9791d2-4d5a-4137-9154-172f2ff7aba3", - "name": "AMET, DOLOR SIT", - "endDate": "2020-04-18", - "startDate": "2021-10-03", + "uuid": "1df64a3a-9f9d-4035-a1ef-09a0dfa389c3", + "name": "IPSUM", + "endDate": "2014-04-07", + "startDate": "2020-10-04", "notes": "", "roles": [ "EMPLOYEE" ], + "siteRegistry": false + }, + { + "uuid": "e6c59016-309b-4af5-b49f-e8bfc00acf83", + "name": "IPSUM", + "endDate": "2016-06-14", + "startDate": "2014-10-08", + "notes": "", + "roles": [ + "ORGANIZATION" + ], "siteRegistry": true }, { - "uuid": "efb2dbee-f8fc-4d1b-b0f0-d709c38a8e77", + "uuid": "653bfda3-89bc-471c-ac3a-db24702e2ee3", "name": "AMET, DOLOR SIT", - "endDate": "2015-11-15", - "startDate": "2018-01-16", + "endDate": "2022-12-14", + "startDate": "2016-04-27", "notes": "", "roles": [ "EMPLOYEE" ], "siteRegistry": true + }, + { + "uuid": "dc3aa0c8-04e5-4300-b415-97aa0e6074d4", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2020-02-13", + "startDate": "2021-01-05", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "uuid": "5e1cd457-0936-442f-b99e-f4f751850b4b", + "name": "IPSUM", + "endDate": "2018-05-15", + "startDate": "2017-01-17", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false } ], - "suspectLandUses": [ + "documents": [ { - "uuid": "4e418e88-b34c-4ad9-b5c5-080fa242ca38", + "uuid": "72cdf9f6-6a1f-4d16-9007-acb4481f97a0", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-03-05 (described on Site Profile dated 2017-03-05)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" - }, + "documentDate": "2020-04-22", + "receivedDate": "2021-02-03", + "uploadedDate": "2020-05-04", + "title": "Summary of Site Conditions, 1537 W 41st Avenue, Vancouver", + "participants": [ + { + "uuid": "71b141a9-8162-4a1f-9566-6303331daeb7", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "a5458183-295b-4391-a58d-bca3ae0ec7fc", + "name": "IPSUM", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "b56f09aa-6c2e-45c9-9e28-2a565b6d359d", + "name": "AMET, DOLOR SIT", + "siteRegistry": false, + "role": "AUTHOR" + } + ] + } + ], + "suspectLandUses": [ { - "uuid": "72c75d33-f6cd-47c0-9274-c899c82b7cec", - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-05-06 (described on Site Profile dated 2014-05-06)", + "uuid": "d35a2cd7-5c95-4cca-810a-779fbf81aab1", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2016-05-28 (described on Site Profile dated 2016-05-28)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "uuid": "d2a14e33-4eda-4509-a88a-75c0db08a283", + "uuid": "2f17211c-3e00-48e6-8b40-c79c7cc45750", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-06-12 (described on Site Profile dated 2018-06-12)", + "notes": "INSERTED FOR SITE PROFILE DATED 2022-04-24 (described on Site Profile dated 2022-04-24)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "uuid": "25c62778-4dc9-48f9-b309-bf9460eeb145", + "uuid": "6509951c-13f6-4c16-b098-406792c1e10c", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-10-21 (described on Site Profile dated 2017-10-21)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" - }, - { - "uuid": "303f151c-159b-4053-b5ea-d36e6a4448c3", - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2020-09-02 (described on Site Profile dated 2020-09-02)", + "notes": "INSERTED FOR SITE PROFILE DATED 2022-08-15 (described on Site Profile dated 2022-08-15)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], "parcelDescriptions": [ { - "uuid": "c17a2131-9bd7-4ae9-911f-d0d99ad2c959", - "siteRegistry": false, - "dateNoted": "2016-08-14", - "parcelID": "18242", - "crownLandUsePIN": "20489", - "crownLandFileNumber": "20090", - "landDescription": "LOT 5 OF LOT 3 BLOCK 4 DISTRICT LOT 1 PLAN 3770" + "uuid": "f4f0f975-8e84-45aa-9d97-1736b17b8c15", + "siteRegistry": true, + "dateNoted": "2017-11-30", + "parcelID": "17110", + "crownLandUsePIN": "18091", + "crownLandFileNumber": "15408", + "landDescription": "LOT 4 OF LOT 1 BLOCK 1 DISTRICT LOT 3 PLAN 4304" }, { - "uuid": "5bb41914-7488-4fff-ab0d-3a501d4d9752", + "uuid": "76bfa6a1-4b07-40ea-b6e4-d0eac04156f7", "siteRegistry": false, - "dateNoted": "2015-10-01", - "parcelID": "15371", - "crownLandUsePIN": "16506", - "crownLandFileNumber": "15519", - "landDescription": "LOT 1 OF LOT 4 BLOCK 2 DISTRICT LOT 2 PLAN 8533" + "dateNoted": "2023-10-05", + "parcelID": "19218", + "crownLandUsePIN": "15745", + "crownLandFileNumber": "20727", + "landDescription": "LOT 5 OF LOT 4 BLOCK 4 DISTRICT LOT 4 PLAN 5125" }, { - "uuid": "5abab12e-e492-41df-9ee7-6423cd49bd18", + "uuid": "f67dc2a2-46cc-4d0c-8ca7-962a3e6c200e", "siteRegistry": false, - "dateNoted": "2022-04-15", - "parcelID": "16826", - "crownLandUsePIN": "18952", - "crownLandFileNumber": "17198", - "landDescription": "LOT 3 OF LOT 2 BLOCK 2 DISTRICT LOT 2 PLAN 3883" + "dateNoted": "2019-01-10", + "parcelID": "19711", + "crownLandUsePIN": "15574", + "crownLandFileNumber": "20826", + "landDescription": "LOT 3 OF LOT 2 BLOCK 1 DISTRICT LOT 3 PLAN 6278" }, { - "uuid": "bef18bfa-5bf3-4c6d-b138-b169b82615bf", + "uuid": "50597908-badf-4e42-bdcb-4c41164a4a40", "siteRegistry": false, - "dateNoted": "2023-02-09", - "parcelID": "18211", - "crownLandUsePIN": "15374", - "crownLandFileNumber": "17332", - "landDescription": "LOT 5 OF LOT 3 BLOCK 1 DISTRICT LOT 1 PLAN 9327" + "dateNoted": "2016-10-14", + "parcelID": "16656", + "crownLandUsePIN": "20269", + "crownLandFileNumber": "19191", + "landDescription": "LOT 3 OF LOT 2 BLOCK 2 DISTRICT LOT 4 PLAN 4399" + }, + { + "uuid": "9aaa40ef-8301-4cde-aa76-f19d753c7b7f", + "siteRegistry": true, + "dateNoted": "2020-07-20", + "parcelID": "20193", + "crownLandUsePIN": "16877", + "crownLandFileNumber": "16767", + "landDescription": "LOT 3 OF LOT 5 BLOCK 2 DISTRICT LOT 3 PLAN 9330" } ], "siteDisclosures": [ { - "uuid": "b7033123-dffa-42d5-b993-9a8f141fe468", + "uuid": "158b3482-65e9-4581-b433-2fadf1c1488e", "siteRegistry": true, - "dateReceived": "2014-06-14", - "dateCompleted": "2021-02-01", - "dateEntered": "2021-10-06", - "dateRegistrar": "2014-07-19", - "dateLocalAuthorityReceived": "2018-03-11", - "summary": "At nemo sunt sint similique repellendus.\nUnde necessitatibus sapiente fugiat molestias deleniti eveniet quos.\nConsequatur quis asperiores esse commodi magni nam ad nemo adipisci.", - "informationUsed": "Earum deserunt molestiae minima.\nAnimi molestias corrupti nobis quisquam.\nRerum libero autem deserunt ea sint quasi.\nNumquam perferendis assumenda officiis adipisci cum voluptate consequatur.", - "pastOrPresentOrders": "Praesentium facere maxime laudantium accusantium distinctio eius.\nOdio voluptas nostrum tempore perferendis vero recusandae.\nSit occaecati error veniam recusandae officiis quos tempore labore maiores.", + "dateReceived": "2020-01-26", + "dateCompleted": "2015-09-26", + "dateEntered": "2016-06-20", + "dateRegistrar": "2017-07-01", + "dateLocalAuthorityReceived": "2019-08-18", + "summary": "Voluptas magni eos doloribus.\nA mollitia iste nobis.\nNisi vero exercitationem.", + "informationUsed": "Sunt vel velit vel laborum.\nBlanditiis quasi neque assumenda assumenda a totam illum suscipit.\nPariatur officiis suscipit aliquam iusto velit impedit vel.\nEveniet totam aspernatur nobis.", + "pastOrPresentOrders": "Ipsam eius quia hic ad cumque.\nAdipisci blanditiis nemo asperiores veritatis culpa dicta deserunt numquam debitis.\nQuidem ullam incidunt officiis vero inventore praesentium.", "commercialAndIndustrialPurposes": [ { - "uuid": "040443ba-1e2c-48ab-a855-c5021058358a", + "uuid": "6542d573-203f-48bd-9189-3de6f608dc0b", "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { - "uuid": "731c1cc5-4da3-462f-85c0-d960f4da2600", - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false - } - ] - }, - { - "uuid": "b47ec4fe-4625-4372-9b5e-94055fc20740", - "siteRegistry": true, - "dateReceived": "2014-05-28", - "dateCompleted": "2023-07-29", - "dateEntered": "2014-12-24", - "dateRegistrar": "2015-10-21", - "dateLocalAuthorityReceived": "2016-03-12", - "summary": "Non molestias odio deserunt debitis vel fuga natus deserunt.\nEsse laborum nisi occaecati.\nCorrupti praesentium mollitia officia.", - "informationUsed": "Maiores dignissimos laborum eum amet labore amet nihil occaecati.\nNon nisi rem dolores doloremque.\nQuia molestiae repudiandae eum praesentium sed reprehenderit ipsam laudantium libero.\nAccusantium dolor vitae reiciendis facere recusandae.", - "pastOrPresentOrders": "Possimus impedit consequuntur explicabo quibusdam rem cupiditate similique animi magnam.", - "commercialAndIndustrialPurposes": [ - { - "uuid": "b5c55b7a-bed5-44e2-81f6-be022c3e14fe", + "uuid": "6ea9b817-be6a-4b23-b3a4-7a390e9e8f67", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, { - "uuid": "da5fbd53-7a69-4625-b96b-02236aacc824", + "uuid": "95636d6f-ec2c-4aee-bdd3-be51dfb768c3", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "uuid": "636c9a0e-994e-4d78-9194-bf3a7b9e6239", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true } ] @@ -24707,78 +28385,121 @@ ], "activityLog": [ { - "uuid": "c7e5c978-ec48-4df0-b3a4-dec447c76688", + "uuid": "6d085657-c155-433c-ae03-71edf546effe", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "HEIDENREICH GREGORY", + "timestamp": "2021-08-12" + }, + { + "uuid": "d84b393b-f702-4746-b8f5-a59a430df045", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "LITTEL DEION", + "timestamp": "2019-01-09" + }, + { + "uuid": "5f2cbed5-71de-44ac-a037-c24f3435fc4a", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "KOZEY SHYANN", + "timestamp": "2019-11-22" + }, + { + "uuid": "eca6fcff-fb2e-454a-ac0f-7dcb62d6c485", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "MOEN HOLLIE", - "timestamp": "2015-02-12" + "user": "CRONIN JEAN", + "timestamp": "2022-02-28" + }, + { + "uuid": "c12080b5-b4be-48ab-bc2f-5c60f4651121", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "FRAMI JOHNATHON", + "timestamp": "2018-12-04" }, { - "uuid": "11c1ae1e-41e0-488b-b47f-788b47bb7ad8", + "uuid": "674436f0-3e3c-4eca-a395-51d31ff1f64a", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "STREICH PATIENCE", - "timestamp": "2015-07-04" + "user": "ROSENBAUM DARRELL", + "timestamp": "2018-12-09" }, { - "uuid": "a95de902-c641-4700-821a-c5d110396f61", + "uuid": "c1b71f14-cd6b-491a-a41c-748f7b205579", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "GOODWIN-WISOKY JUSTYN", - "timestamp": "2023-06-05" + "user": "ROSENBAUM ALIYA", + "timestamp": "2015-07-10" + }, + { + "uuid": "161dae78-f48c-452a-b1c0-4f1ba17aaf87", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "PFANNERSTILL JAQUELINE", + "timestamp": "2014-01-19" }, { - "uuid": "fbe0baab-750e-451c-ab28-468a3c1ff368", + "uuid": "bb0f14ab-6d42-42e7-bc9c-0cae0e97f395", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "TROMP NORBERT", - "timestamp": "2014-05-19" + "user": "ZBONCAK LEONE", + "timestamp": "2019-08-24" }, { - "uuid": "75209048-ac31-4a30-849b-910897cce658", + "uuid": "3bee8e89-0765-4591-96a7-17291ffaa8b2", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "O'CONNER DALE", - "timestamp": "2023-08-27" + "user": "KEMMER DIANA", + "timestamp": "2019-06-13" } ], "associatedSites": [ { - "uuid": "29f7c706-fd91-4da2-a548-e7e69a0f83d9", - "dateNoted": "2021-01-30", + "uuid": "3f46a3da-3cdd-475a-98cf-1b206294dc5e", + "dateNoted": "2021-07-06", "notes": "", - "parcelID": "20841", - "siteID": "16133", + "parcelID": "18976", + "siteID": "18063", + "siteRegistry": true + }, + { + "uuid": "4d8712e7-74b6-4caa-aa90-84910b00abbf", + "dateNoted": "2020-06-27", + "notes": "", + "parcelID": "16477", + "siteID": "18536", "siteRegistry": true } ] }, { - "uuid": "78cf9aa6-6322-4cb2-8b2c-d6c15af54da4", - "siteID": 19970, - "address": "76333 Lauretta Flat", - "latitude": 56.9418, - "longitude": -137.307, - "lastUpdated": "2021-07-23", - "city": "Aliso Viejo", - "region": " North Coast", - "victoriaFile": "26250-20/7309", + "uuid": "b5281c52-0f33-4c09-bdd6-5eaa59437c16", + "siteID": 20872, + "address": "485 Roob Way", + "latitude": 55.1411, + "longitude": -124.8086, + "lastUpdated": "2019-05-30", + "city": "Port Marlen", + "region": "Vancouver Island/Coast", + "victoriaFile": "26250-20/11631", "regionalFile": "N/A", "parcelIDs": [ - 5652625, - 3185990, - 6905942, - 7819743, - 5637733 + 7841761, + 3233507, + 2120901, + 7634201, + 4245586 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "d032f2a3-2329-42fc-865a-05f300cb7370", - "createdAt": "2021-12-01", - "completed": "2019-09-09", - "initiated": "2020-06-26", - "ministryContact": "SMITH BETTYE", + "uuid": "4d27db1d-af3d-42cb-aba0-6d0f243d8970", + "createdAt": "2020-02-10", + "completed": "2014-04-23", + "initiated": "2015-04-20", + "ministryContact": "MRAZ YVONNE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -24787,38 +28508,78 @@ ], "notationParticipants": [ { - "uuid": "4d4cf8a7-08af-4c09-9650-3f8c577db8e4", + "uuid": "bc52ee1e-09ec-4c4c-9f75-250b1a198c26", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true }, { - "uuid": "32393ac6-8940-479b-939b-ebed13b6517c", - "name": "SHELL CANADA PRODUCTS", + "uuid": "1afba8f1-032f-422f-ad0a-bbf1667f6a6d", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "uuid": "a47014c6-4514-4db6-9138-34d3a5e1e893", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "uuid": "4471c4c8-e06c-4f34-9eaf-3ecac2b78f29", + "createdAt": "2015-08-08", + "completed": "2021-05-25", + "initiated": "2016-09-25", + "ministryContact": "FAHEY RUPERT", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "uuid": "5c4f92dc-c264-4daa-861e-5cd42d912b87", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true }, { - "uuid": "d4ec5203-6ca4-4564-b7d4-59db7a17f0be", + "uuid": "4f171a1d-31aa-448e-9124-3d717efc9461", "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "uuid": "d6904ab7-a872-4192-a272-6067d647f4bd", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false }, { - "uuid": "50150eae-17fc-4f3b-8fb5-6986ce17cdec", + "uuid": "f8870984-7de7-4580-ab5c-6c03a393a113", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false + }, + { + "uuid": "5bbb91df-b318-4d47-8df0-6df3510d8c5f", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true } ], "siteRegistry": true }, { - "uuid": "026b829c-6d85-4356-855b-e2a6caf9e6b0", - "createdAt": "2016-06-21", - "completed": "2021-04-20", - "initiated": "2022-01-04", - "ministryContact": "HIRTHE SARINA", + "uuid": "db62c27c-5c6f-4d64-a5a7-83ea83487f5c", + "createdAt": "2014-03-11", + "completed": "2020-01-12", + "initiated": "2015-10-20", + "ministryContact": "SIMONIS-BOTSFORD JOVANNY", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -24827,44 +28588,78 @@ ], "notationParticipants": [ { - "uuid": "797cacd1-e7ca-49dc-a948-1fa490defbb1", + "uuid": "36749583-07b8-41e1-ae55-a22217758d84", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "cf8ec4b6-6320-43fe-bc46-f83cfba77f75", + "uuid": "d219eb6e-a44e-4728-a682-a63e00de579a", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "5906eede-5ab8-4f48-bdc7-cc4afe15b1e0", + "uuid": "8d5ea7f5-e75c-47d8-ad1a-29c8acd4a5ff", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "uuid": "84b78209-796f-49f2-aa79-8e59ef1ae002", + "createdAt": "2023-03-31", + "completed": "2014-11-30", + "initiated": "2014-06-25", + "ministryContact": "TERRY WILFORD", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "uuid": "216af8a1-4af5-4bed-87d6-159b6cf09a11", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "uuid": "784a37f6-3534-489e-940f-b34c53a0e8d1", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "9204c10b-9d7d-4da6-91ad-93bcb2c67007", + "uuid": "97ffcd10-e8c0-466f-b816-abc21d831ccc", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "714a0b7b-bb79-4150-8f4d-506d94ff254e", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": false }, { - "uuid": "c490f0d2-8bd8-400a-bd34-73df0348d6ee", + "uuid": "dfeb8291-56bb-4105-8ce3-7eb05d931343", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "cd8174d8-e233-4eaa-bd1d-aa51918893a9", - "createdAt": "2018-10-04", - "completed": "2017-09-09", - "initiated": "2018-05-21", - "ministryContact": "TILLMAN LYRIC", + "uuid": "4321f380-eb1c-4407-9eed-14b3b1bda956", + "createdAt": "2018-10-25", + "completed": "2016-01-28", + "initiated": "2021-06-27", + "ministryContact": "MOORE MAUDIE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -24873,33 +28668,33 @@ ], "notationParticipants": [ { - "uuid": "2194fe52-9e87-401d-9eab-7b0960275601", + "uuid": "40c2b481-3452-43a5-9df4-d5f6dee1d554", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false }, { - "uuid": "1ca45c70-4b8b-40d1-83ed-850169803bee", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "uuid": "5af9fef7-54c2-4759-845d-6a7cdff28495", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "76cc1ba5-315c-4e31-8894-637dbbc9ead1", + "uuid": "8acd2474-e0b9-4b8f-925c-f1c8599cc92e", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false } ], "participants": [ { - "uuid": "1207d5aa-5c57-458f-a7a7-684eb834b81d", - "name": "AMET, DOLOR SIT", - "endDate": "2023-08-15", - "startDate": "2017-07-26", + "uuid": "77349283-3d22-4613-a332-06b1c7a8ae76", + "name": "IPSUM", + "endDate": "2020-04-05", + "startDate": "2017-08-16", "notes": "", "roles": [ "ORGANIZATION" @@ -24907,216 +28702,341 @@ "siteRegistry": true }, { - "uuid": "719b1498-61e9-4b16-a89a-2547bba2520f", - "name": "IPSUM", - "endDate": "2016-12-06", - "startDate": "2016-01-20", + "uuid": "379826b5-daa6-49e4-80d4-ed0c92e4a549", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2019-06-08", + "startDate": "2023-07-01", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": false }, { - "uuid": "81960fbb-3f8b-4c58-9d20-8ccd58514c49", + "uuid": "c40381a9-a746-4e01-aa74-b8a0001d9d27", "name": "AMET, DOLOR SIT", - "endDate": "2016-12-25", - "startDate": "2022-11-22", + "endDate": "2021-03-14", + "startDate": "2018-05-19", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "7adba6f1-0691-4ac5-935e-3d443593042e", - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2020-03-15", - "startDate": "2015-08-17", + "uuid": "9e3dc679-6fa2-4389-96c2-94c32ed53040", + "name": "AMET, DOLOR SIT", + "endDate": "2019-03-30", + "startDate": "2020-08-10", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": false } ], - "suspectLandUses": [ - { - "uuid": "e30def4a-fd02-4e32-9b34-3d2cbde5d8a4", - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-05-15 (described on Site Profile dated 2016-05-15)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" - }, - { - "uuid": "f2de54c2-051c-445b-a9c1-e7df577f7a34", - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-08-13 (described on Site Profile dated 2019-08-13)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" - } - ], - "parcelDescriptions": [ + "documents": [ { - "uuid": "7a0bb14c-e275-4025-9fea-cfe4766a8e60", + "uuid": "480d8ff3-3283-4c8d-b42a-d3fcd73bc0d7", "siteRegistry": false, - "dateNoted": "2014-12-11", - "parcelID": "17970", - "crownLandUsePIN": "19531", - "crownLandFileNumber": "19890", - "landDescription": "LOT 3 OF LOT 2 BLOCK 4 DISTRICT LOT 4 PLAN 4220" + "documentDate": "2021-04-15", + "receivedDate": "2020-09-17", + "uploadedDate": "2017-08-20", + "title": "Preliminary Site Investigation, Detailed Site Investigation and Remedial Plan for the Management Area adjacent to the Shell Site at 1503 West 41st Ave", + "participants": [ + { + "uuid": "848d8026-8fc0-44e8-aae1-e0ccac512998", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "7cf0005c-0007-4540-a013-866638f45594", + "name": "AMET, DOLOR SIT", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "6a0ea15e-9f8c-4b1a-a7d7-df1c376e4930", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": true, + "role": "AUTHOR" + } + ] }, { - "uuid": "91d91b5f-4122-44ff-86dc-53e091622f11", + "uuid": "cff2dae5-449e-4527-9fcc-a9f1124744f9", + "siteRegistry": false, + "documentDate": "2022-04-29", + "receivedDate": "2021-10-05", + "uploadedDate": "2023-02-23", + "title": "Preliminary Site Investigation, Detailed Site Investigation and Remedial Plan for the Management Area adjacent to the Shell Site at 1503 West 41st Ave", + "participants": [ + { + "uuid": "4f1cca41-a102-45ff-b54e-4119a31961cf", + "name": "IPSUM", + "siteRegistry": true, + "role": "AUTHOR" + } + ] + }, + { + "uuid": "c18c406b-9606-4e20-a107-a69fcfee4844", + "siteRegistry": false, + "documentDate": "2016-02-01", + "receivedDate": "2016-10-12", + "uploadedDate": "2021-02-27", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "6c6651ec-7ed6-434b-a1e8-782b54ddd16e", + "name": "AMET, DOLOR SIT", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "dfbbacbb-90b2-4e46-9a84-0a9dd650517d", + "name": "IPSUM", + "siteRegistry": true, + "role": "AUTHOR" + } + ] + }, + { + "uuid": "bcc7fcfa-8883-4c00-a0e6-9f2512655f39", "siteRegistry": true, - "dateNoted": "2018-09-23", - "parcelID": "16604", - "crownLandUsePIN": "20525", - "crownLandFileNumber": "19808", - "landDescription": "LOT 5 OF LOT 2 BLOCK 2 DISTRICT LOT 1 PLAN 4301" + "documentDate": "2020-05-23", + "receivedDate": "2015-01-13", + "uploadedDate": "2022-07-23", + "title": "Summary of Site Conditions, 1537 W 41st Avenue, Vancouver", + "participants": [ + { + "uuid": "a8863140-c7f8-4aea-8836-38cb78d45450", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": true, + "role": "AUTHOR" + } + ] } ], - "siteDisclosures": [ + "suspectLandUses": [ + { + "uuid": "3076edfb-bb66-4d93-9677-44152666b399", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2018-12-20 (described on Site Profile dated 2018-12-20)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, { - "uuid": "e6f378b2-6408-4fdc-8ecf-d9ce95ba1267", + "uuid": "b027e010-339d-40ef-8727-8280e09217d2", "siteRegistry": true, - "dateReceived": "2022-03-06", - "dateCompleted": "2023-04-09", - "dateEntered": "2015-06-24", - "dateRegistrar": "2014-02-05", - "dateLocalAuthorityReceived": "2018-04-17", - "summary": "Laboriosam earum delectus harum quam optio veritatis rem.", - "informationUsed": "Rerum ducimus mollitia debitis esse qui rerum voluptate.\nIncidunt laboriosam voluptatum soluta tempora placeat debitis eius.\nQuas reiciendis quam ex enim earum dolor nesciunt eveniet.\nHic pariatur veritatis tempora neque.", - "pastOrPresentOrders": "Nisi cupiditate fuga cupiditate reiciendis alias.", + "notes": "INSERTED FOR SITE PROFILE DATED 2022-05-19 (described on Site Profile dated 2022-05-19)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "uuid": "7b6875a6-3fb2-4c7c-809d-e4ad6ad78571", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2021-08-04 (described on Site Profile dated 2021-08-04)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + } + ], + "parcelDescriptions": [ + { + "uuid": "600d63fe-9ef2-42f6-ab30-601d8738d2a7", + "siteRegistry": true, + "dateNoted": "2016-06-18", + "parcelID": "20823", + "crownLandUsePIN": "17927", + "crownLandFileNumber": "18080", + "landDescription": "LOT 5 OF LOT 3 BLOCK 3 DISTRICT LOT 1 PLAN 4519" + }, + { + "uuid": "a80e8025-360d-4244-b30a-959d71b7dfd7", + "siteRegistry": false, + "dateNoted": "2019-09-29", + "parcelID": "16829", + "crownLandUsePIN": "17349", + "crownLandFileNumber": "19307", + "landDescription": "LOT 1 OF LOT 5 BLOCK 3 DISTRICT LOT 1 PLAN 7930" + }, + { + "uuid": "4014f604-e315-4734-84bc-1a5742e6d618", + "siteRegistry": true, + "dateNoted": "2018-06-07", + "parcelID": "19547", + "crownLandUsePIN": "16383", + "crownLandFileNumber": "20291", + "landDescription": "LOT 4 OF LOT 2 BLOCK 5 DISTRICT LOT 3 PLAN 6371" + } + ], + "siteDisclosures": [ + { + "uuid": "e78bb005-cc72-4e62-a691-5955b65b4785", + "siteRegistry": false, + "dateReceived": "2021-04-21", + "dateCompleted": "2017-11-19", + "dateEntered": "2014-01-31", + "dateRegistrar": "2017-01-02", + "dateLocalAuthorityReceived": "2016-10-29", + "summary": "Corporis animi dolorum.", + "informationUsed": "Autem iste ut deserunt tempore blanditiis.\nPraesentium voluptatum vero facilis ipsam molestiae cumque facere repudiandae molestias.\nSapiente distinctio libero hic.\nQui ipsam iste commodi.\nOdio rerum quae harum dolores numquam ipsam.", + "pastOrPresentOrders": "Numquam at at deleniti rem veniam illum exercitationem quod.\nMinima omnis sequi.", "commercialAndIndustrialPurposes": [ { - "uuid": "9b5fed79-bc11-416e-8431-cab012007ef8", - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "uuid": "33c06cb7-b4c2-4284-a964-e21a4d3b9bca", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { - "uuid": "7612717a-4517-4245-aeaa-743cdf5602f3", + "uuid": "82351ae4-8241-4c46-9442-f9cb7aecf312", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { - "uuid": "0d221e93-df60-4c6d-88f2-64504182762f", + "uuid": "1b33636f-265a-4f90-bb5f-9cb520aea56f", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true + "siteRegistry": false + }, + { + "uuid": "647c9cd6-9bb3-46bb-8a68-e30e996580ee", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + } + ] + }, + { + "uuid": "7f186452-d05a-489e-9798-25614757a595", + "siteRegistry": true, + "dateReceived": "2016-09-23", + "dateCompleted": "2021-09-03", + "dateEntered": "2016-02-05", + "dateRegistrar": "2020-02-03", + "dateLocalAuthorityReceived": "2021-03-02", + "summary": "Iste velit quidem quod velit unde aut velit.\nSaepe animi corporis suscipit veritatis autem et aspernatur quibusdam.\nEveniet aspernatur ratione minus facilis velit et quas provident.", + "informationUsed": "Quasi qui neque fuga laboriosam.\nReprehenderit culpa nostrum magni fuga odio voluptates.\nLabore tempora debitis.\nModi consectetur voluptas.", + "pastOrPresentOrders": "Veniam non rem deleniti quam blanditiis reiciendis excepturi dolore.\nDolorum eius dolorum mollitia.\nEaque distinctio aliquid rem aspernatur quidem dignissimos.", + "commercialAndIndustrialPurposes": [ + { + "uuid": "ef01e4ab-be25-4d9a-804a-f2e3829939a4", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "uuid": "e8f3c495-d986-4a10-97a6-f3ac86168d44", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "uuid": "d49a8c9a-24df-437b-95d7-20ceb6b7bef6", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false } ] } ], "activityLog": [ { - "uuid": "d4492919-d6d2-4f26-8561-1aab824d48b5", - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "GUTKOWSKI ZANDER", - "timestamp": "2021-06-21" - }, - { - "uuid": "10d1db54-f492-402d-8da2-c55e733f7547", - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "LESCH SALLY", - "timestamp": "2022-03-26" - }, - { - "uuid": "bb3ae592-4743-4eac-826a-b2073b28ba42", + "uuid": "42bb4949-2c92-4911-bfd3-f5b0ea538215", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "CONROY VIVIENNE", - "timestamp": "2020-08-05" - }, - { - "uuid": "6b19a53f-5c19-48af-b155-04f50c5f90d4", - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "MANN MEDA", - "timestamp": "2014-06-27" + "user": "BERGSTROM KELTON", + "timestamp": "2021-05-27" }, { - "uuid": "1b16e738-3eab-46f7-847c-7d1a4e3c081b", + "uuid": "c690cfe3-7d7b-44d7-8862-d78866fa98de", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "HARRIS HILDEGARD", - "timestamp": "2015-04-04" + "user": "MORISSETTE BERTRAM", + "timestamp": "2022-07-06" }, { - "uuid": "8d693dcd-1bff-41e8-9881-86067f1ecad4", + "uuid": "3cde00de-684a-4af2-9e73-134b6c4a39d0", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "MCLAUGHLIN CARLIE", - "timestamp": "2019-11-05" + "user": "KOEPP RODRICK", + "timestamp": "2014-06-18" }, { - "uuid": "088addf3-dff4-438e-99c5-15f2f3a78f0a", + "uuid": "9630c3ee-3885-4a29-8243-ea0e24e06ecc", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "PFANNERSTILL MACK", - "timestamp": "2018-12-19" + "user": "O'REILLY FINN", + "timestamp": "2015-12-29" }, { - "uuid": "ffda3914-5a96-40d9-a380-e1fae1f9bab2", + "uuid": "ff4301bc-e517-4ffe-b79d-07127f7914b7", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "O'KON LORA", - "timestamp": "2014-11-01" - }, - { - "uuid": "1301bbc2-1a22-40a8-a68e-ff5fc01cd1be", - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "MURPHY ZOIE", - "timestamp": "2015-03-18" + "user": "HUELS LOLITA", + "timestamp": "2021-07-20" }, { - "uuid": "80bd5912-dc31-43b6-ab68-99824305aabb", + "uuid": "02959737-71e9-43d4-9575-8084c75f704e", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "LEBSACK IMMANUEL", - "timestamp": "2023-06-11" + "user": "DOOLEY GEORGIANA", + "timestamp": "2016-09-05" } ], "associatedSites": [ { - "uuid": "78e3c12f-d50a-4256-bf74-b0e3f45f3f60", - "dateNoted": "2022-12-10", + "uuid": "454568c9-bffd-45f9-8c6b-7278834db4bc", + "dateNoted": "2023-07-21", "notes": "", - "parcelID": "20110", - "siteID": "17161", + "parcelID": "15947", + "siteID": "20224", + "siteRegistry": false + }, + { + "uuid": "8ba71a4f-7179-4752-bc98-b109b3b440b8", + "dateNoted": "2014-06-27", + "notes": "", + "parcelID": "20457", + "siteID": "16531", + "siteRegistry": false + }, + { + "uuid": "73fd0de0-1b5a-41c9-b760-ce655ec7bf72", + "dateNoted": "2019-01-09", + "notes": "", + "parcelID": "18802", + "siteID": "18670", "siteRegistry": true } ] }, { - "uuid": "ea723873-79f1-4976-a063-2291cfc096ea", - "siteID": 16470, - "address": "961 Casper Highway", - "latitude": 52.9311, - "longitude": -127.1648, - "lastUpdated": "2016-01-27", - "city": "Janniemouth", - "region": "Kootenay", - "victoriaFile": "26250-20/11777", + "uuid": "aa76f243-6edb-4500-81fb-a1d3d34495ee", + "siteID": 16137, + "address": "43809 Skiles Shoals", + "latitude": 50.204, + "longitude": -121.2044, + "lastUpdated": "2014-03-11", + "city": "Sadieville", + "region": " North Coast", + "victoriaFile": "26250-20/6575", "regionalFile": "N/A", "parcelIDs": [ - 662306, - 7547030, - 8065336, - 6426923, - 6505818 + 5297856, + 5741077, + 8524287, + 3851665, + 4812333 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "8b82f6be-146e-41b1-8dbc-47053a26d32a", - "createdAt": "2017-03-21", - "completed": "2020-06-17", - "initiated": "2020-03-15", - "ministryContact": "PARKER MADALYN", + "uuid": "32efbab4-69e3-47ef-aaf4-3e0bf081e278", + "createdAt": "2019-09-26", + "completed": "2018-10-10", + "initiated": "2021-07-21", + "ministryContact": "BEAHAN ORAL", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -25125,72 +29045,38 @@ ], "notationParticipants": [ { - "uuid": "bbb87fbd-2127-4623-bc20-f183d4abcf1a", + "uuid": "356a53b7-77e4-4d33-9b0b-a2a035686c83", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "uuid": "552fdf2d-16fa-4174-85da-ec04e17bcaa3", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "uuid": "b394b4b6-16f6-442e-8636-fd96983b91b3", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "41756727-d847-4896-a611-0344d367d2ae", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - } - ], - "siteRegistry": false - }, - { - "uuid": "6c2149bc-a301-46c5-a269-c58d67f1e53e", - "createdAt": "2015-09-06", - "completed": "2022-07-06", - "initiated": "2016-12-30", - "ministryContact": "JOHNSON WANDA", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "uuid": "73eb883c-cd90-42a9-92f9-b0fffb3a0888", + "uuid": "aa00b1db-8e8e-49e6-8f57-91143f3b0324", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true }, { - "uuid": "f3b80f9e-638e-4ff7-abab-f8b1ac27735a", - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "1f1cee4e-1f48-442a-afb8-daebcff6c3a4", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true }, { - "uuid": "b74a4b69-b2f8-43b8-9448-727a28152ee0", - "name": "SHELL CANADA PRODUCTS", + "uuid": "c92a452c-22d1-4b9c-a2c4-6039058dc4dc", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false } ], "siteRegistry": true }, { - "uuid": "0bf91275-64d2-4e7e-8822-50a93faa7e13", - "createdAt": "2017-06-13", - "completed": "2015-09-29", - "initiated": "2015-07-24", - "ministryContact": "ABERNATHY BELL", + "uuid": "b731e0cb-37e8-42fe-b593-a35620a788ac", + "createdAt": "2014-04-20", + "completed": "2018-02-28", + "initiated": "2020-08-06", + "ministryContact": "FRANECKI CASPER", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -25199,44 +29085,38 @@ ], "notationParticipants": [ { - "uuid": "7c8cde41-3d46-4026-ae5c-4bb1259d6313", + "uuid": "be6182c8-6ea0-49bb-8727-ab00495b0c72", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "uuid": "4ceaec8e-5dcd-4ff3-8b73-7311965f13c9", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", "siteRegistry": false }, { - "uuid": "047a6dc9-c0e1-415a-882a-505e70a64aaf", + "uuid": "1c7f1803-1406-4cab-8e16-6b308ba99ad2", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "bbc92c62-97bf-461c-a3ee-630cb9483da3", + "uuid": "26359b8c-eec5-4e6a-9891-c900ee33808b", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "bd0fc72d-67da-4774-b30a-3b653ba14ef6", - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "uuid": "7568e0e9-8d28-48bc-838d-3af19ae72ada", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", "siteRegistry": false } ], "siteRegistry": true }, { - "uuid": "6cdde0a1-dd3e-414a-847a-9287b83c3a5b", - "createdAt": "2023-05-07", - "completed": "2020-05-28", - "initiated": "2019-07-12", - "ministryContact": "FUNK MILO", + "uuid": "ee9af67d-bb26-4ee5-9723-d9b89f25c34c", + "createdAt": "2022-04-22", + "completed": "2020-10-31", + "initiated": "2016-12-09", + "ministryContact": "POLLICH OKEY", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -25245,22 +29125,22 @@ ], "notationParticipants": [ { - "uuid": "ebf479ae-df3c-4bf9-979d-d46aa08d4577", + "uuid": "c3774260-1c44-46a1-ada8-43bf61f6189d", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true }, { - "uuid": "5001f575-fa4e-4029-91b4-a3ef9da63016", - "name": "SHELL CANADA PRODUCTS", + "uuid": "de2ad0a3-7008-4436-b3ee-30cf42e2df23", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "a4cd3d8b-42e5-4d1b-9a7e-b69b85dd51da", + "uuid": "19eeea86-c05b-497d-96cc-529e0495c897", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true + "role": "REQUESTED BY", + "siteRegistry": false } ], "siteRegistry": true @@ -25268,244 +29148,346 @@ ], "participants": [ { - "uuid": "c1846747-ba84-4199-827d-4976987e5957", - "name": "AMET, DOLOR SIT", - "endDate": "2023-04-20", - "startDate": "2019-11-11", + "uuid": "90ffa1cc-e659-4f7d-b75e-f8002b224351", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2019-08-12", + "startDate": "2016-12-16", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": false }, { - "uuid": "b0b9cafa-059c-4f72-b531-dc3b310b4e04", + "uuid": "33ab5ee3-0bc9-41a5-a321-ec64c5ca3d58", "name": "SHELL CANADA PRODUCTS", - "endDate": "2014-07-21", - "startDate": "2021-07-18", + "endDate": "2018-10-02", + "startDate": "2019-02-21", "notes": "", "roles": [ "ORGANIZATION" ], "siteRegistry": true + } + ], + "documents": [ + { + "uuid": "13eca172-d45c-4a1c-bed6-51574c59b93a", + "siteRegistry": false, + "documentDate": "2018-04-27", + "receivedDate": "2019-02-08", + "uploadedDate": "2015-06-29", + "title": "Preliminary Site Investigation, Detailed Site Investigation and Remedial Plan for the Management Area adjacent to the Shell Site at 1503 West 41st Ave", + "participants": [ + { + "uuid": "73a7957e-abbe-4f8b-9084-7a0c91a656b5", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "78f5f62a-4e80-4fdb-a226-a5639c081adb", + "name": "AMET, DOLOR SIT", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "a2546968-749e-40ed-b645-42bce1648e69", + "name": "IPSUM", + "siteRegistry": false, + "role": "AUTHOR" + } + ] }, { - "uuid": "65b69366-acb4-43a2-b036-27b7317e407d", - "name": "AMET, DOLOR SIT", - "endDate": "2021-10-06", - "startDate": "2020-03-28", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": true + "uuid": "7b53789f-c145-4a78-bb97-62cbc30e49b6", + "siteRegistry": true, + "documentDate": "2017-02-20", + "receivedDate": "2014-11-12", + "uploadedDate": "2022-10-28", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "c3e61002-b6a3-42f6-ac48-c2c30abfe888", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": true, + "role": "AUTHOR" + } + ] }, { - "uuid": "9dce1dde-34c6-489f-b89e-2e49e579a2b3", - "name": "AMET, DOLOR SIT", - "endDate": "2016-11-07", - "startDate": "2016-10-08", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": true + "uuid": "e8ee8e44-8fbf-46ec-a45a-f8c76dbe2a68", + "siteRegistry": false, + "documentDate": "2018-12-20", + "receivedDate": "2019-09-14", + "uploadedDate": "2014-09-23", + "title": "Preliminary Site Investigation, Detailed Site Investigation and Remedial Plan for the Management Area adjacent to the Shell Site at 1503 West 41st Ave", + "participants": [ + { + "uuid": "83c432b2-f41d-4a57-9d6f-8961d5a90023", + "name": "AMET, DOLOR SIT", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "6487e6d4-305c-4150-8652-e94328b713a5", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "d322ec1f-3dca-44b6-9709-f7582cfefe3b", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": false, + "role": "AUTHOR" + } + ] } ], "suspectLandUses": [ { - "uuid": "35fcf54f-b0cc-4b5d-be99-a0df7b6b9461", + "uuid": "9cf7997d-b811-4afe-a436-d842700eb91d", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2023-09-01 (described on Site Profile dated 2023-09-01)", + "notes": "INSERTED FOR SITE PROFILE DATED 2022-06-24 (described on Site Profile dated 2022-06-24)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "uuid": "65f99b20-9cba-4f53-8f1c-9dc1dc062876", - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-12-13 (described on Site Profile dated 2016-12-13)", + "uuid": "fb7088fc-5f1a-4115-8eab-2de5a4185b5b", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2022-07-08 (described on Site Profile dated 2022-07-08)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "uuid": "ba72951a-8e7b-43b7-811b-749f0270eebe", + "uuid": "6dbaecb2-d9b5-4226-977d-866dbd791502", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-01-16 (described on Site Profile dated 2014-01-16)", + "notes": "INSERTED FOR SITE PROFILE DATED 2020-05-28 (described on Site Profile dated 2020-05-28)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "uuid": "63ac65c3-40b3-4f0a-ac41-71dda814328e", + "uuid": "a0d1f42c-55a7-45d0-b205-74b79753202f", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-06-29 (described on Site Profile dated 2022-06-29)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "notes": "INSERTED FOR SITE PROFILE DATED 2022-09-13 (described on Site Profile dated 2022-09-13)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], "parcelDescriptions": [ { - "uuid": "54a4dfb0-ffc0-4c9c-8661-203657ef5194", + "uuid": "64c64d7d-9c65-4fe8-af9d-0a49a9493ff3", + "siteRegistry": true, + "dateNoted": "2017-10-27", + "parcelID": "18655", + "crownLandUsePIN": "20357", + "crownLandFileNumber": "19868", + "landDescription": "LOT 5 OF LOT 3 BLOCK 3 DISTRICT LOT 5 PLAN 5546" + }, + { + "uuid": "11f6fd75-093f-4149-99ff-7e29130f8923", "siteRegistry": false, - "dateNoted": "2014-04-22", - "parcelID": "17587", - "crownLandUsePIN": "17225", - "crownLandFileNumber": "20715", - "landDescription": "LOT 3 OF LOT 2 BLOCK 1 DISTRICT LOT 2 PLAN 9596" + "dateNoted": "2022-06-27", + "parcelID": "19129", + "crownLandUsePIN": "19602", + "crownLandFileNumber": "16148", + "landDescription": "LOT 4 OF LOT 2 BLOCK 3 DISTRICT LOT 5 PLAN 8831" }, { - "uuid": "ba18e18f-2420-47c4-abeb-7b40cfad93e1", + "uuid": "7d7a564e-6480-426e-a716-2912c455c228", "siteRegistry": false, - "dateNoted": "2023-03-12", - "parcelID": "19427", - "crownLandUsePIN": "18398", - "crownLandFileNumber": "17911", - "landDescription": "LOT 1 OF LOT 2 BLOCK 4 DISTRICT LOT 1 PLAN 8607" + "dateNoted": "2019-03-14", + "parcelID": "20970", + "crownLandUsePIN": "19849", + "crownLandFileNumber": "16572", + "landDescription": "LOT 3 OF LOT 3 BLOCK 2 DISTRICT LOT 2 PLAN 7017" + }, + { + "uuid": "ecca88da-7ae0-424f-b6d4-9154a96d2468", + "siteRegistry": false, + "dateNoted": "2016-04-04", + "parcelID": "18771", + "crownLandUsePIN": "16352", + "crownLandFileNumber": "15894", + "landDescription": "LOT 3 OF LOT 4 BLOCK 3 DISTRICT LOT 5 PLAN 5106" + }, + { + "uuid": "21395b81-cdef-4c6a-9828-b9f7702ed853", + "siteRegistry": true, + "dateNoted": "2020-04-15", + "parcelID": "17868", + "crownLandUsePIN": "20823", + "crownLandFileNumber": "19137", + "landDescription": "LOT 3 OF LOT 1 BLOCK 1 DISTRICT LOT 5 PLAN 8922" } ], "siteDisclosures": [ { - "uuid": "67efa127-b0df-4da5-8e0c-8cd8c75f8690", - "siteRegistry": false, - "dateReceived": "2020-01-24", - "dateCompleted": "2017-02-27", - "dateEntered": "2023-06-05", - "dateRegistrar": "2018-07-25", - "dateLocalAuthorityReceived": "2015-05-25", - "summary": "Repellat illo minus.\nNulla ipsam consectetur sed excepturi alias aspernatur id molestiae ipsum.", - "informationUsed": "Accusantium soluta quas quidem a quibusdam asperiores quasi.\nRecusandae aspernatur maiores impedit sint ab sit.\nConsequuntur sapiente cum.\nRem minus libero ipsam laudantium aperiam earum sit.", - "pastOrPresentOrders": "Ullam natus quidem dolore.", + "uuid": "c1a7b467-be97-42c2-aa90-22488f3e8a54", + "siteRegistry": true, + "dateReceived": "2015-11-01", + "dateCompleted": "2015-08-02", + "dateEntered": "2015-04-09", + "dateRegistrar": "2020-09-10", + "dateLocalAuthorityReceived": "2016-02-18", + "summary": "Quam similique ea velit aliquid.\nId voluptatem impedit cumque iste aliquid unde magnam in.\nRem sed ad velit velit autem reiciendis repudiandae cum.", + "informationUsed": "Saepe eum sapiente eveniet.\nDolore quod minima deserunt vitae pariatur cum eius similique.\nEum sunt debitis reprehenderit fugit.", + "pastOrPresentOrders": "Nihil aspernatur quae officiis iusto expedita ipsam.", "commercialAndIndustrialPurposes": [ { - "uuid": "30144804-5d70-4c50-b367-dfa4aabfcc2d", - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true - }, - { - "uuid": "cc9639e3-bac6-4045-af2b-78321eb6921a", + "uuid": "1388f587-d725-4a1a-b05c-789851f4d173", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { - "uuid": "840203c1-6faa-49a9-90d8-03308b316260", - "scheduleReference": "F1*", + "uuid": "1ddc7c46-9fcf-46a7-97d8-7c26df019465", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false } ] }, { - "uuid": "b2153ad9-466e-46ed-9828-cbd179d2503f", + "uuid": "b74e400a-0104-4f47-a832-a03fee59610d", "siteRegistry": true, - "dateReceived": "2018-11-30", - "dateCompleted": "2014-01-31", - "dateEntered": "2021-04-15", - "dateRegistrar": "2019-05-05", - "dateLocalAuthorityReceived": "2020-09-18", - "summary": "Commodi reiciendis minima quisquam harum.\nAssumenda neque reprehenderit perspiciatis dicta quia voluptatum natus.", - "informationUsed": "Modi aliquam odio ad minima corrupti.\nSuscipit odit at nesciunt ea quis tenetur similique ipsum.\nNatus vel distinctio aut iure ducimus amet quaerat et explicabo.\nOfficia occaecati sunt fuga temporibus at consequatur maiores ipsum.\nTotam pariatur labore quod cum eligendi.", - "pastOrPresentOrders": "Excepturi labore cupiditate sed molestiae nulla.\nNumquam laborum fugiat doloremque voluptatum optio quia.", + "dateReceived": "2021-08-10", + "dateCompleted": "2018-11-19", + "dateEntered": "2022-08-13", + "dateRegistrar": "2015-11-06", + "dateLocalAuthorityReceived": "2019-08-10", + "summary": "Nisi officia corporis optio tenetur voluptatibus recusandae aspernatur eveniet earum.\nOptio molestias alias unde.", + "informationUsed": "Qui neque at ullam non.\nPorro natus perspiciatis consequatur aspernatur excepturi modi accusantium fugit.\nCulpa ullam voluptate blanditiis laboriosam ipsum voluptatem ad.\nPorro sapiente animi.\nExercitationem enim eveniet optio occaecati incidunt.", + "pastOrPresentOrders": "Eligendi incidunt sed odio non.\nEligendi doloribus non voluptatum repellat error non magni.\nQuae culpa temporibus maxime sed.", "commercialAndIndustrialPurposes": [ { - "uuid": "4a3476e3-ebca-4845-a7f8-0d4d17c13c0a", - "scheduleReference": "F1*", + "uuid": "75aacc53-4c6c-46a0-a4b5-89167279f7d9", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "99fe12d6-1449-416f-a84c-9df4631d15c7", + "uuid": "b62dd654-b9ab-4d21-b606-e306e4aa4016", "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false } ] } ], "activityLog": [ { - "uuid": "f911461e-0631-4b91-a018-9e65320523d2", - "siteRegistry": false, + "uuid": "c53ba5c8-1b3f-48bd-9710-28c4dc1f34f4", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "HAAG DEJUAN", - "timestamp": "2013-12-01" + "user": "CASSIN-BARTOLETTI BENEDICT", + "timestamp": "2021-02-25" }, { - "uuid": "b5e2cccf-721f-4c2d-a075-5b862aa81b47", + "uuid": "292f2520-a876-4b31-8675-f290c81eb9e8", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "TERRY CONOR", - "timestamp": "2020-01-31" + "user": "CUMMERATA LEONIE", + "timestamp": "2015-06-28" + }, + { + "uuid": "fb770fc1-1c86-4267-92c9-f5e651c310b4", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "TROMP NELLE", + "timestamp": "2017-01-05" }, { - "uuid": "7bef6c77-2fcc-4530-bc8e-d5eb297107ed", + "uuid": "792d8656-3b4b-4475-9b04-ac9f2785d0e0", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "TREMBLAY NOAH", - "timestamp": "2020-03-12" + "user": "KEMMER KIRSTIN", + "timestamp": "2015-05-05" }, { - "uuid": "2d7648ae-fefb-4b7a-8f3a-602563eb7e08", - "siteRegistry": true, + "uuid": "c571a02c-fc93-4673-8a7f-851db24c5a45", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "KULAS SELINA", - "timestamp": "2020-10-21" + "user": "ANKUNDING PRESTON", + "timestamp": "2020-07-24" + }, + { + "uuid": "486f6e5b-5eaf-428b-b415-3ed8471e39d8", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "SHIELDS MAGNUS", + "timestamp": "2020-05-17" + }, + { + "uuid": "b66aba29-0b97-415d-9dbc-28d23034fa19", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "SCHUMM CLARABELLE", + "timestamp": "2018-04-15" }, { - "uuid": "bc509a40-0b33-4021-99b2-787813481286", + "uuid": "16e47507-1515-49e9-9347-3b3e511b8a64", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "CUMMINGS ERA", - "timestamp": "2015-08-16" + "user": "STEUBER JAMISON", + "timestamp": "2014-10-23" }, { - "uuid": "77530c7e-c69e-4515-9ce9-75b0a4c80893", + "uuid": "a732e40d-c647-461c-a465-8d51a979a80e", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "HAND ZANE", - "timestamp": "2020-04-29" + "user": "LITTLE BELL", + "timestamp": "2022-10-26" }, { - "uuid": "f0608e0b-bce7-418f-9e8d-bf01ff090c99", - "siteRegistry": false, + "uuid": "9a1c785a-10e8-43dd-a009-7c17b4259b59", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "TREMBLAY JUSTEN", - "timestamp": "2020-08-02" + "user": "ANKUNDING OREN", + "timestamp": "2014-09-19" } ], "associatedSites": [ { - "uuid": "d6e4a713-f80b-4a62-b5c0-48169783c22a", - "dateNoted": "2018-07-05", + "uuid": "87974e76-2149-43af-a003-b77e9b2e7766", + "dateNoted": "2015-01-12", "notes": "", - "parcelID": "19270", - "siteID": "17834", + "parcelID": "16852", + "siteID": "17114", "siteRegistry": true + }, + { + "uuid": "2722b2ff-f1bd-413c-aee5-84c810169aa5", + "dateNoted": "2022-09-07", + "notes": "", + "parcelID": "19504", + "siteID": "17845", + "siteRegistry": false } ] }, { - "uuid": "5bb3782b-3938-423b-943d-7656287dfc83", - "siteID": 17431, - "address": "71887 Quigley Freeway", - "latitude": 49.9995, - "longitude": -129.1732, - "lastUpdated": "2019-12-06", - "city": "South Jaylen", - "region": "Thompson-Okanagan", - "victoriaFile": "26250-20/5803", + "uuid": "9b3ec6d7-55bc-47ff-96d0-12011b0cda85", + "siteID": 16804, + "address": "715 Ferne Crossing", + "latitude": 50.1639, + "longitude": -126.9501, + "lastUpdated": "2019-02-05", + "city": "Vallejo", + "region": "Kootenay", + "victoriaFile": "26250-20/5216", "regionalFile": "N/A", "parcelIDs": [ - 5489918, - 929362, - 5917021, - 7431498, - 1057686 + 9179965, + 779496, + 9098111, + 7280819, + 7923051 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "70aff2e4-e481-4385-a8bc-8d556afc5f0d", - "createdAt": "2014-12-22", - "completed": "2016-04-07", - "initiated": "2020-12-20", - "ministryContact": "KRIS-BRADTKE CHASITY", + "uuid": "cb0b1532-c740-4843-9aae-4cf361693766", + "createdAt": "2022-03-21", + "completed": "2023-01-05", + "initiated": "2015-08-23", + "ministryContact": "HALEY BRITNEY", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -25514,118 +29496,44 @@ ], "notationParticipants": [ { - "uuid": "ab1d8440-b65a-4497-b3a4-7821471c1652", - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "uuid": "31732f1a-4811-419b-833e-3051077bbf3a", + "uuid": "db1aaf11-e19a-4869-b759-83693590802c", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false }, { - "uuid": "d2d8074d-4235-4d8b-8849-393957c85eae", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "uuid": "777c394d-1502-45eb-be1b-114126c0f2e3", + "uuid": "13adaf63-dcd9-4828-ae86-fce283088f7f", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "uuid": "46456cd2-0be9-4e8e-92d4-5addf6f1fdcc", - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - } - ], - "siteRegistry": true - }, - { - "uuid": "7fb04650-b21a-432a-8d2a-3ed769a4b82b", - "createdAt": "2016-10-15", - "completed": "2020-03-23", - "initiated": "2023-02-13", - "ministryContact": "TROMP HAYLIE", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "uuid": "050fd67d-d6aa-4356-adbe-7ae6673e6e9f", - "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "174c87f4-8265-4f9d-9976-7865fb0b7719", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "uuid": "0a8b859c-370b-49d5-8583-952c2e2ce593", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "uuid": "3bcec8c8-283a-416d-bb62-46de35529068", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - } - ], - "siteRegistry": false - }, - { - "uuid": "0549bddf-503c-431a-98ea-aaffe7d1bb9f", - "createdAt": "2020-10-14", - "completed": "2018-06-03", - "initiated": "2014-04-20", - "ministryContact": "WYMAN SCARLETT", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "uuid": "f30d2e14-26aa-4c85-b64b-798eb3ae55cc", + "uuid": "eecdbda9-de2a-4fa9-9dfe-23bb872641e5", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "b302159d-fe65-4872-9cc1-fd84325d6f6e", + "uuid": "0813d673-61f8-42b7-b075-388ad3ad3960", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "67c92d4c-a58c-418f-94cd-774e212fef12", + "uuid": "bb954aed-2b96-438d-946b-e675bfacc10b", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "735ba8ba-0968-413c-814f-53e2d9b7141c", - "createdAt": "2017-12-16", - "completed": "2019-05-21", - "initiated": "2021-04-19", - "ministryContact": "HAAG ALDA", + "uuid": "e46b4c47-ad7b-4eb2-8e6c-e4b5dfeda20e", + "createdAt": "2019-10-14", + "completed": "2016-05-21", + "initiated": "2022-03-20", + "ministryContact": "PFANNERSTILL KIRK", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -25634,65 +29542,25 @@ ], "notationParticipants": [ { - "uuid": "2ce71c0b-7fc1-4584-9861-f1c87bd4d323", - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "uuid": "6cd1515a-4341-4e5c-bf5c-9f9ab4dcc3ca", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "uuid": "a9c8a168-ca38-4d5d-a902-acd0e23e69c2", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "uuid": "d7a7c52c-39b6-4553-88ce-9127c8c46086", + "uuid": "ed962a42-30cc-4d38-8822-b605a650e348", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "8576ce03-d089-4a3a-8cbf-fa2c24ced24b", - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - } - ], - "siteRegistry": true - }, - { - "uuid": "7f790461-d7d6-4a1f-9959-bfde657c7a05", - "createdAt": "2014-01-02", - "completed": "2018-10-02", - "initiated": "2016-10-04", - "ministryContact": "BINS TYREL", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "uuid": "c7f2f3b6-16f8-4671-9377-c7396718b413", + "uuid": "2a6475ff-a798-4f69-a485-5a04a18e8675", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "21d71895-2708-4eb6-b019-974df65d877f", - "name": "SHELL CANADA PRODUCTS", + "uuid": "dce5cf52-5bf5-41b0-b0e6-03ec3846e1f9", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "bbefeb35-f1b6-493c-8396-9b41e2db812a", + "uuid": "10b83a8e-c2f1-4c6d-bb6e-728447aa05c9", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false @@ -25703,21 +29571,21 @@ ], "participants": [ { - "uuid": "2bf32a2d-76aa-4778-9a62-051967bbd986", - "name": "SHELL CANADA PRODUCTS", - "endDate": "2018-07-22", - "startDate": "2014-06-04", + "uuid": "3776ad3f-9a21-4e17-b0bc-df6e22fbff3e", + "name": "AMET, DOLOR SIT", + "endDate": "2021-07-29", + "startDate": "2018-08-21", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "38c0984a-60e4-447b-87ad-bd4981c4681e", - "name": "AMET, DOLOR SIT", - "endDate": "2022-08-11", - "startDate": "2019-09-24", + "uuid": "86212fa3-dad5-4640-ae27-91e1e11a52be", + "name": "IPSUM", + "endDate": "2018-01-18", + "startDate": "2023-06-25", "notes": "", "roles": [ "ORGANIZATION" @@ -25725,10 +29593,21 @@ "siteRegistry": true }, { - "uuid": "b619a4f2-5fcb-4a7b-b4eb-885841be7a5b", + "uuid": "f0ec0f3b-85a0-4b63-a1cc-3214deca12f8", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2014-11-16", + "startDate": "2020-09-03", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "uuid": "847133fd-e622-4e10-9b69-22c6c39c91bd", "name": "SHELL CANADA PRODUCTS", - "endDate": "2017-02-20", - "startDate": "2022-06-07", + "endDate": "2013-11-08", + "startDate": "2023-10-01", "notes": "", "roles": [ "ORGANIZATION" @@ -25736,179 +29615,265 @@ "siteRegistry": false } ], + "documents": [ + { + "uuid": "c99ae56a-65c3-475a-9082-40fdec067780", + "siteRegistry": false, + "documentDate": "2016-08-27", + "receivedDate": "2016-04-17", + "uploadedDate": "2018-11-08", + "title": "Preliminary Site Investigation, Detailed Site Investigation and Remedial Plan for the Management Area adjacent to the Shell Site at 1503 West 41st Ave", + "participants": [ + { + "uuid": "d8b4c99d-3e5d-4f62-aba5-8c7c39674cf0", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "3c4c8d1f-e2ba-4088-9c14-6dffd940b41a", + "name": "IPSUM", + "siteRegistry": true, + "role": "AUTHOR" + } + ] + } + ], "suspectLandUses": [ { - "uuid": "704f7b87-a919-4e01-8efa-92d0decb7197", + "uuid": "36c97b68-30e8-40ec-8732-93b134ea1cd6", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-04-05 (described on Site Profile dated 2018-04-05)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "notes": "INSERTED FOR SITE PROFILE DATED 2023-09-07 (described on Site Profile dated 2023-09-07)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "uuid": "3c125a75-9b93-4958-91ac-ef6168f0147e", - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-10-09 (described on Site Profile dated 2015-10-09)", + "uuid": "7edf63b9-085f-432a-beb6-d154d0a70a80", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2019-01-27 (described on Site Profile dated 2019-01-27)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "uuid": "37cffba3-b9b4-4131-893e-d54e41d4641c", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2015-07-19 (described on Site Profile dated 2015-07-19)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], "parcelDescriptions": [ { - "uuid": "5ab97dda-ac51-4b2b-a935-dd0f26ec41d7", + "uuid": "01a76aa8-4007-4759-be29-35f4aad6b221", "siteRegistry": true, - "dateNoted": "2017-07-29", - "parcelID": "16868", - "crownLandUsePIN": "19278", - "crownLandFileNumber": "15306", - "landDescription": "LOT 2 OF LOT 1 BLOCK 5 DISTRICT LOT 1 PLAN 6272" + "dateNoted": "2015-04-29", + "parcelID": "20177", + "crownLandUsePIN": "17981", + "crownLandFileNumber": "17007", + "landDescription": "LOT 5 OF LOT 3 BLOCK 2 DISTRICT LOT 5 PLAN 7343" }, { - "uuid": "11fe074f-eeee-47b3-852d-73c06e55afa9", - "siteRegistry": false, - "dateNoted": "2014-09-23", - "parcelID": "20127", - "crownLandUsePIN": "18212", - "crownLandFileNumber": "20247", - "landDescription": "LOT 5 OF LOT 3 BLOCK 2 DISTRICT LOT 5 PLAN 9461" + "uuid": "df474a17-643e-471d-9708-99608e259110", + "siteRegistry": true, + "dateNoted": "2021-05-18", + "parcelID": "18528", + "crownLandUsePIN": "17278", + "crownLandFileNumber": "19943", + "landDescription": "LOT 2 OF LOT 1 BLOCK 3 DISTRICT LOT 4 PLAN 7821" }, { - "uuid": "f6864479-e0b2-4913-a30e-18eda94cdcc5", + "uuid": "d14f425e-407d-4ecd-98ef-755078d9fddf", "siteRegistry": true, - "dateNoted": "2016-05-13", - "parcelID": "17231", - "crownLandUsePIN": "17790", - "crownLandFileNumber": "20453", - "landDescription": "LOT 2 OF LOT 4 BLOCK 3 DISTRICT LOT 4 PLAN 4556" + "dateNoted": "2023-04-17", + "parcelID": "16411", + "crownLandUsePIN": "19414", + "crownLandFileNumber": "16169", + "landDescription": "LOT 5 OF LOT 2 BLOCK 5 DISTRICT LOT 3 PLAN 6287" }, { - "uuid": "5715f09a-7488-4d18-bba7-7c711bc13909", + "uuid": "bfe90d2d-89d9-4569-9786-44eec01a282c", "siteRegistry": false, - "dateNoted": "2018-02-07", - "parcelID": "19791", - "crownLandUsePIN": "20804", - "crownLandFileNumber": "18017", - "landDescription": "LOT 1 OF LOT 5 BLOCK 2 DISTRICT LOT 3 PLAN 6067" + "dateNoted": "2018-06-12", + "parcelID": "16788", + "crownLandUsePIN": "17872", + "crownLandFileNumber": "20695", + "landDescription": "LOT 5 OF LOT 2 BLOCK 4 DISTRICT LOT 2 PLAN 7202" + }, + { + "uuid": "c18b8d4f-d14d-4061-8022-221606e2bc15", + "siteRegistry": true, + "dateNoted": "2015-01-15", + "parcelID": "20551", + "crownLandUsePIN": "18400", + "crownLandFileNumber": "19330", + "landDescription": "LOT 3 OF LOT 4 BLOCK 4 DISTRICT LOT 3 PLAN 5868" } ], "siteDisclosures": [ { - "uuid": "e25286aa-e91b-4b49-9657-6d49bd6806cf", + "uuid": "b3f4f503-05ab-48c3-bc48-a39685eb7d8b", "siteRegistry": true, - "dateReceived": "2017-10-27", - "dateCompleted": "2021-02-24", - "dateEntered": "2018-06-27", - "dateRegistrar": "2020-05-13", - "dateLocalAuthorityReceived": "2019-05-23", - "summary": "Odio veniam vero est quas minus dolore excepturi quasi.", - "informationUsed": "Ut consequuntur placeat.\nError corrupti veniam minus molestias alias.\nArchitecto quasi rerum perferendis.", - "pastOrPresentOrders": "Illo quibusdam animi nesciunt.", + "dateReceived": "2023-07-21", + "dateCompleted": "2014-04-05", + "dateEntered": "2017-02-08", + "dateRegistrar": "2016-03-03", + "dateLocalAuthorityReceived": "2019-04-18", + "summary": "Ad ut aliquid voluptatem sed consequatur explicabo.\nConsequuntur quod voluptas quisquam hic.\nDoloremque nulla quam.", + "informationUsed": "Delectus deleniti quia perspiciatis.\nVoluptas eius recusandae.\nQuam perspiciatis aut nam quam facilis.", + "pastOrPresentOrders": "Sed dolor repudiandae possimus sapiente reiciendis quis facilis.\nQuo cumque excepturi tempora illum cumque quaerat pariatur harum iusto.\nAsperiores velit nisi repellat aliquid sapiente inventore.", "commercialAndIndustrialPurposes": [ { - "uuid": "0430f318-de94-4a0e-806e-5e0c0c3723ff", + "uuid": "597826d6-cf72-4796-a426-a09e30bb65f0", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false }, { - "uuid": "1ffe308c-4fe4-4e71-af38-51e23c5873ec", + "uuid": "aa23b9d9-7b73-4342-b79a-d414ae73e865", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true + "siteRegistry": false + } + ] + }, + { + "uuid": "f7c55cc8-eb15-47ef-9943-fca11b8e2117", + "siteRegistry": false, + "dateReceived": "2018-06-08", + "dateCompleted": "2016-05-10", + "dateEntered": "2022-02-15", + "dateRegistrar": "2020-08-30", + "dateLocalAuthorityReceived": "2014-07-02", + "summary": "Delectus facilis aliquid voluptate perferendis cupiditate quas quasi.", + "informationUsed": "Optio eveniet corrupti in reprehenderit nisi eligendi.\nAmet cupiditate repellendus ab quos inventore nisi recusandae pariatur molestiae.\nCorrupti error dolores nostrum.\nAt assumenda facere autem ab inventore reprehenderit.", + "pastOrPresentOrders": "Molestiae hic fugit eligendi suscipit deleniti dolorum exercitationem.", + "commercialAndIndustrialPurposes": [ + { + "uuid": "7e02893e-1895-4303-aca6-63bbe578d73d", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false }, { - "uuid": "b6ac21bc-853b-405a-99e9-084515f14915", + "uuid": "f51b437e-827d-41cf-ad50-f53c814aa930", "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false }, { - "uuid": "fdbf8039-2fac-4a6a-995f-d2467de748f4", + "uuid": "315c71ce-9860-4820-abed-3746626c1ab3", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true + "siteRegistry": false + }, + { + "uuid": "ec273597-7091-48e3-9449-9970f9910f70", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false } ] } ], "activityLog": [ { - "uuid": "c1a95ddf-0173-4fa5-8665-709ae1b8001e", + "uuid": "0946af85-b814-48f7-baa3-4a52b6c23fd1", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "WEST LEILANI", + "timestamp": "2018-06-20" + }, + { + "uuid": "19fa38bc-3e3b-4420-b00e-3a6bb005949a", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "HELLER AMELIE", + "timestamp": "2019-01-28" + }, + { + "uuid": "b8b9eee0-7d9b-4f67-b207-9bcbc64401e5", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "KERLUKE SHERWOOD", - "timestamp": "2019-10-06" + "user": "JOHNSTON VIOLET", + "timestamp": "2019-11-26" }, { - "uuid": "915ace9d-6a90-4ba5-8fe3-401c36620ae2", + "uuid": "e4ce8425-a76a-479d-b86c-e98b643696fc", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "FRIESEN ASHLY", - "timestamp": "2022-02-05" + "user": "BROWN PETER", + "timestamp": "2022-03-29" }, { - "uuid": "b3ee2282-dcea-409d-959d-a30724fd99dc", + "uuid": "53a75850-b808-4420-a876-8eae8e9eaac2", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "EMMERICH LILLA", - "timestamp": "2018-03-22" + "user": "MARQUARDT RHETT", + "timestamp": "2016-09-18" + }, + { + "uuid": "659c84bc-8380-4777-b890-59c0d93ffdea", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "HOPPE PRINCE", + "timestamp": "2021-10-01" }, { - "uuid": "735dd8fc-61fb-4356-9117-9231db9364e2", + "uuid": "b1c58702-b01f-4bde-9e47-c71920eab056", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "ANKUNDING ERNA", - "timestamp": "2020-08-25" + "user": "SHIELDS ADOLF", + "timestamp": "2016-12-15" }, { - "uuid": "39be8eb7-30ff-4869-b905-66b193d94a98", - "siteRegistry": true, + "uuid": "ffb53fe4-a83b-409a-a551-e16a892fb2b1", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "TOY CORDIE", - "timestamp": "2022-09-12" + "user": "KASSULKE LELA", + "timestamp": "2019-01-24" }, { - "uuid": "d05a5ca7-0e50-4762-a4cf-7173f5fb0444", - "siteRegistry": true, + "uuid": "e68206e2-fae8-44e7-b76d-d07138c45cb3", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "BAHRINGER ORAL", - "timestamp": "2016-03-01" + "user": "PAGAC STELLA", + "timestamp": "2013-11-11" } ], "associatedSites": [ { - "uuid": "54ec66aa-a208-4dcd-92aa-1a8d6d8479e6", - "dateNoted": "2014-08-20", + "uuid": "32eaad30-cbce-4a80-9893-b1551b462cb4", + "dateNoted": "2014-12-07", "notes": "", - "parcelID": "19515", - "siteID": "20470", + "parcelID": "17207", + "siteID": "18676", "siteRegistry": true } ] }, { - "uuid": "b2d22bcd-c883-4485-8bad-9c20698e0250", - "siteID": 17362, - "address": "508 Janae Creek", - "latitude": 50.0509, - "longitude": -133.3534, - "lastUpdated": "2018-12-18", - "city": "South Einobury", - "region": " North Coast", - "victoriaFile": "26250-20/19612", + "uuid": "441517e2-827d-4516-a3a1-48775245698b", + "siteID": 18800, + "address": "84551 Alvah Harbors", + "latitude": 58.8004, + "longitude": -136.4539, + "lastUpdated": "2016-03-15", + "city": "South Elwinville", + "region": "Thompson-Okanagan", + "victoriaFile": "26250-20/11347", "regionalFile": "N/A", "parcelIDs": [ - 9110284, - 8816122, - 6390781, - 452842, - 7952173 + 1245688, + 3921089, + 8861545, + 7623560, + 8690852 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "a9c9158d-f982-457a-bf3b-73285b868cd3", - "createdAt": "2022-04-05", - "completed": "2018-06-06", - "initiated": "2018-12-22", - "ministryContact": "WARD BURNICE", + "uuid": "94989e04-cf62-4cc5-841c-1e7f3a3dafa9", + "createdAt": "2021-03-21", + "completed": "2017-02-27", + "initiated": "2014-01-28", + "ministryContact": "HOWE MARIAN", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -25917,26 +29882,38 @@ ], "notationParticipants": [ { - "uuid": "aec7cab8-c857-4db8-9317-83dd69036a16", + "uuid": "90400052-da5b-461f-a20c-d148d12f418c", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "uuid": "b61bee8d-74d5-4309-a87b-e81f3457bde1", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "uuid": "30e031d1-dc1a-41de-b91b-a79d50db17a6", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "84e852c9-893a-4cfe-9bdb-f2ff9baf006e", + "uuid": "8bd3c850-6992-4be5-ae36-8b418879cb7b", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true } ], "siteRegistry": false }, { - "uuid": "988b5d45-c2d4-4f03-b049-397e81e38d7c", - "createdAt": "2014-03-21", - "completed": "2018-07-20", - "initiated": "2019-10-06", - "ministryContact": "CHAMPLIN DARYL", + "uuid": "406ecd66-7b29-46cf-8713-a9284f15b7fb", + "createdAt": "2013-12-20", + "completed": "2020-12-09", + "initiated": "2021-09-23", + "ministryContact": "SPINKA HEATH", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -25945,32 +29922,84 @@ ], "notationParticipants": [ { - "uuid": "c3434d7a-a748-4be9-b9a3-8b9530dd3810", + "uuid": "905aa6a5-4cd3-438d-8c3b-426fb6b60bef", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "84192e5a-3692-42c2-8700-d3c4530b992a", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "uuid": "b8a9912e-f204-48b7-8113-92e6b26449e8", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": true }, { - "uuid": "d64c7aba-d524-4bbe-94e8-06a06afcf01a", + "uuid": "28b8df5a-23f7-4b69-b8ba-3f0e8c66b70b", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "uuid": "4b4534af-5cdb-4fce-9de7-bb19c258e839", + "createdAt": "2015-08-09", + "completed": "2018-08-16", + "initiated": "2016-06-23", + "ministryContact": "SPORER SANDY", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "uuid": "70be41bb-5878-4eae-a1ae-87825b48f8da", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "43017801-3cc3-4d48-88fb-615839565238", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "092666cd-d379-4d4e-a161-a096d6da6c78", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true }, { - "uuid": "cc472e2c-3596-458e-8efe-f2772a93ed16", + "uuid": "b4f8f626-c5a7-418f-86c3-af0cb0263878", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false + }, + { + "uuid": "448f86cd-bd56-41f0-8947-3e6760815df2", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "c31b1698-51ee-401f-b5ba-205535777a93", - "createdAt": "2017-03-20", - "completed": "2020-04-03", - "initiated": "2023-01-19", - "ministryContact": "BOTSFORD FRANKIE", + "uuid": "8c89fe83-c712-490f-80d1-1d4cc7f15e3b", + "createdAt": "2014-01-18", + "completed": "2014-07-20", + "initiated": "2016-10-11", + "ministryContact": "BERNIER RICKY", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -25979,28 +30008,80 @@ ], "notationParticipants": [ { - "uuid": "0564eadd-67c4-4174-805c-e299b6a49c43", + "uuid": "ea10e394-7f3e-4234-87e1-7dd14877830c", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "07939e9f-fab5-43a7-b041-a0b09ce2c1f5", + "uuid": "6a24e67f-2eff-4cc1-9293-e0b9d68293b0", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "uuid": "e5c75713-182d-45a7-8d5d-da0dfe8339c9", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "uuid": "9b5c4406-5e5b-45e0-a330-2098a9cddd71", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "f81f267d-0c1b-4ba0-bd30-e7d2c41d28dd", + "uuid": "e2570ae8-04b8-4fff-a75d-0450b4b9ee95", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "uuid": "a05533e6-b04c-4d16-9c85-38810cb1e403", + "createdAt": "2015-05-06", + "completed": "2023-01-24", + "initiated": "2019-06-07", + "ministryContact": "BOYLE GONZALO", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "uuid": "e436f399-d62a-4e82-b990-e5d7e0edf9a9", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "uuid": "c340a3c9-d647-4348-8cdf-e036a9a8c04f", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "1ab21e48-ec91-4540-a043-6c9afe7b35f2", + "uuid": "e313d2b5-2fec-4154-9d4c-af946c1eb0e7", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "uuid": "e61fca2b-18c0-46a7-b5a6-b389ff54d0d8", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true + }, + { + "uuid": "e4452bc3-3c29-4792-b1b1-a7abf5339b6d", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true } ], "siteRegistry": false @@ -26008,175 +30089,264 @@ ], "participants": [ { - "uuid": "10abec3a-1dae-4041-9a14-e5f7625903eb", + "uuid": "a16ed936-8b58-4205-8db4-a359d06aad85", "name": "AMET, DOLOR SIT", - "endDate": "2015-04-03", - "startDate": "2020-07-09", + "endDate": "2021-02-27", + "startDate": "2017-09-24", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "ea316a26-06c6-4f46-aa20-e88847bc2dc6", + "uuid": "2c3f75b3-54fa-40d2-8782-848fbf20d7f7", "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2022-08-18", - "startDate": "2018-07-11", + "endDate": "2020-05-24", + "startDate": "2017-08-30", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "a251b16f-97d8-4a3d-ab87-7a2a3b01e712", - "name": "IPSUM", - "endDate": "2019-12-10", - "startDate": "2023-02-04", + "uuid": "9163c5c9-3187-442f-8064-110f7aaa603d", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2014-01-10", + "startDate": "2013-11-23", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": false }, { - "uuid": "64c929ed-4a85-4d76-9e4b-5ebd931315d9", - "name": "AMET, DOLOR SIT", - "endDate": "2014-12-10", - "startDate": "2020-06-14", + "uuid": "ae6b8813-b2ed-4aab-9b07-0aa9391ffe6e", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2014-03-19", + "startDate": "2022-10-06", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": false } ], - "suspectLandUses": [ + "documents": [ + { + "uuid": "a0c129a3-e570-4dbe-aee5-e8a8c61db555", + "siteRegistry": false, + "documentDate": "2016-11-29", + "receivedDate": "2021-09-06", + "uploadedDate": "2018-06-03", + "title": "Preliminary Site Investigation, Detailed Site Investigation and Remedial Plan for the Management Area adjacent to the Shell Site at 1503 West 41st Ave", + "participants": [ + { + "uuid": "d5fb82df-2e53-4e8d-a562-fd77c2a0114f", + "name": "AMET, DOLOR SIT", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "2a22ba78-7f4b-4b6f-ac58-c0dc7698a220", + "name": "IPSUM", + "siteRegistry": true, + "role": "AUTHOR" + } + ] + }, { - "uuid": "6e1e9d5f-9a02-4ecd-bd50-4cfbdac5e5ce", + "uuid": "c421620c-c413-4458-b4cc-85a02a85ba7a", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-07-02 (described on Site Profile dated 2019-07-02)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "documentDate": "2021-09-18", + "receivedDate": "2017-08-12", + "uploadedDate": "2015-10-17", + "title": "Summary of Site Conditions, 1537 W 41st Avenue, Vancouver", + "participants": [ + { + "uuid": "88c9a16c-cfe5-428f-90d8-66101addd197", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": false, + "role": "AUTHOR" + } + ] + }, + { + "uuid": "b98ee928-0f2e-484a-9bb2-4f8f1798f461", + "siteRegistry": true, + "documentDate": "2023-07-26", + "receivedDate": "2021-06-08", + "uploadedDate": "2020-07-29", + "title": "Summary of Site Conditions, 1537 W 41st Avenue, Vancouver", + "participants": [ + { + "uuid": "c559a6f4-35e7-4708-8d89-2b9f5187460d", + "name": "AMET, DOLOR SIT", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "c508802c-a90a-4117-b74f-058a40b3bede", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "d6235234-3a54-41d9-8ad5-4f20d663be92", + "name": "AMET, DOLOR SIT", + "siteRegistry": false, + "role": "AUTHOR" + } + ] + }, + { + "uuid": "a934f350-bcf9-4448-a7bc-62de95f7590b", + "siteRegistry": false, + "documentDate": "2019-12-11", + "receivedDate": "2021-10-04", + "uploadedDate": "2020-07-16", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "d6b0ac27-a4ea-47e1-ab9e-b6bf66c970dc", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "0977abd7-7cf5-44fc-a92e-c19ffc1a85b1", + "name": "AMET, DOLOR SIT", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "903ee0ae-b33b-4bcf-b72e-17a5b776c3c3", + "name": "IPSUM", + "siteRegistry": false, + "role": "AUTHOR" + } + ] }, { - "uuid": "a4f5af7e-5e87-478b-94f5-c53d0e485e8b", + "uuid": "508c5a12-4f84-48d2-b2a5-9c30491390a0", + "siteRegistry": false, + "documentDate": "2014-11-12", + "receivedDate": "2022-09-03", + "uploadedDate": "2020-09-28", + "title": "Preliminary Site Investigation, Detailed Site Investigation and Remedial Plan for the Management Area adjacent to the Shell Site at 1503 West 41st Ave", + "participants": [ + { + "uuid": "9487a807-bc39-45cf-aa27-6eaa3b139864", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "4546bb23-c098-4eec-954f-07974a19b81b", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "814f493b-b658-4e16-a472-2b39a7fa4a26", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": false, + "role": "AUTHOR" + } + ] + } + ], + "suspectLandUses": [ + { + "uuid": "c5df5ae4-59f6-4a6e-9eef-968f5b739b18", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2013-11-07 (described on Site Profile dated 2013-11-07)", + "notes": "INSERTED FOR SITE PROFILE DATED 2019-03-26 (described on Site Profile dated 2019-03-26)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "uuid": "8b5b7116-4fe8-4534-a03a-46d2bf09a6dc", + "uuid": "da973caf-1aee-46da-915c-a757a283ed35", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-06-07 (described on Site Profile dated 2014-06-07)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "notes": "INSERTED FOR SITE PROFILE DATED 2017-08-28 (described on Site Profile dated 2017-08-28)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], "parcelDescriptions": [ { - "uuid": "2dc0de5c-3ad2-4c9c-9e64-75184616f452", + "uuid": "f79d10b1-105e-4c86-ba47-fefd0937abe0", "siteRegistry": true, - "dateNoted": "2017-09-03", - "parcelID": "19152", - "crownLandUsePIN": "18142", - "crownLandFileNumber": "19825", - "landDescription": "LOT 1 OF LOT 2 BLOCK 3 DISTRICT LOT 2 PLAN 3411" + "dateNoted": "2019-08-05", + "parcelID": "17219", + "crownLandUsePIN": "18163", + "crownLandFileNumber": "18314", + "landDescription": "LOT 2 OF LOT 4 BLOCK 4 DISTRICT LOT 1 PLAN 5340" }, { - "uuid": "76308135-12ab-4498-baf1-2b44cca38303", + "uuid": "eaba90b8-6ffe-4002-9eec-c4adfaf52112", "siteRegistry": true, - "dateNoted": "2014-09-06", - "parcelID": "18768", - "crownLandUsePIN": "16385", - "crownLandFileNumber": "15204", - "landDescription": "LOT 1 OF LOT 3 BLOCK 3 DISTRICT LOT 3 PLAN 5973" + "dateNoted": "2016-01-23", + "parcelID": "20506", + "crownLandUsePIN": "17983", + "crownLandFileNumber": "15425", + "landDescription": "LOT 2 OF LOT 2 BLOCK 4 DISTRICT LOT 2 PLAN 7878" }, { - "uuid": "7e1df2b1-7935-4f93-acf9-fde8d8fcd516", - "siteRegistry": true, - "dateNoted": "2019-11-21", - "parcelID": "15690", - "crownLandUsePIN": "18287", - "crownLandFileNumber": "19879", - "landDescription": "LOT 5 OF LOT 1 BLOCK 1 DISTRICT LOT 2 PLAN 5003" + "uuid": "a64e142b-90ca-4c52-a15c-c4982d0de5c3", + "siteRegistry": false, + "dateNoted": "2018-12-09", + "parcelID": "19377", + "crownLandUsePIN": "20878", + "crownLandFileNumber": "15582", + "landDescription": "LOT 3 OF LOT 3 BLOCK 3 DISTRICT LOT 5 PLAN 3293" }, { - "uuid": "0709522b-f69d-4be8-a75c-751d369b98ed", - "siteRegistry": true, - "dateNoted": "2023-03-11", - "parcelID": "18292", - "crownLandUsePIN": "20717", - "crownLandFileNumber": "17162", - "landDescription": "LOT 1 OF LOT 1 BLOCK 4 DISTRICT LOT 1 PLAN 9375" + "uuid": "aa0274b6-e167-4d40-a49f-dab2040c3560", + "siteRegistry": false, + "dateNoted": "2021-07-27", + "parcelID": "17091", + "crownLandUsePIN": "20519", + "crownLandFileNumber": "16226", + "landDescription": "LOT 2 OF LOT 4 BLOCK 2 DISTRICT LOT 1 PLAN 7963" + }, + { + "uuid": "bcef4b1c-4ac8-4975-928e-f7235086e677", + "siteRegistry": false, + "dateNoted": "2018-05-27", + "parcelID": "16355", + "crownLandUsePIN": "15579", + "crownLandFileNumber": "17864", + "landDescription": "LOT 3 OF LOT 2 BLOCK 5 DISTRICT LOT 1 PLAN 6619" } ], "siteDisclosures": [ { - "uuid": "46f3f9f3-3a0d-4540-8ba3-d60b759e4604", - "siteRegistry": false, - "dateReceived": "2019-07-02", - "dateCompleted": "2014-09-29", - "dateEntered": "2016-06-23", - "dateRegistrar": "2016-01-13", - "dateLocalAuthorityReceived": "2021-01-12", - "summary": "Aliquam cumque perspiciatis delectus et.\nAliquam cupiditate mollitia delectus debitis ex veniam optio dicta ea.", - "informationUsed": "Inventore id recusandae pariatur.\nOdit nobis excepturi mollitia natus ad ratione ratione illo doloribus.\nOptio sequi vel quisquam fugiat.\nArchitecto facilis illo temporibus quibusdam odit ut nulla.\nIllo iusto explicabo vel.", - "pastOrPresentOrders": "Facilis totam corrupti dolore quae voluptas.\nHic facilis quidem recusandae pariatur nostrum optio explicabo distinctio.\nOdio pariatur aperiam libero eum corporis incidunt.", - "commercialAndIndustrialPurposes": [ - { - "uuid": "eb63ad49-a678-4681-b33f-c9735036afa9", - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true - }, - { - "uuid": "38c369a9-f618-49e4-81fd-56f8e65b70bf", - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true - }, - { - "uuid": "4fcea613-2dd9-491e-b538-96ba492f36d3", - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true - }, - { - "uuid": "05353e9b-4c2b-4cd2-8ee3-e420836a5ba6", - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true - } - ] - }, - { - "uuid": "37ab3015-ade6-4bbf-988c-fb3e0ab51679", + "uuid": "26a9a0f3-cae6-40ed-9473-e1168a52752b", "siteRegistry": true, - "dateReceived": "2019-04-22", - "dateCompleted": "2015-11-06", - "dateEntered": "2015-07-28", - "dateRegistrar": "2017-01-25", - "dateLocalAuthorityReceived": "2020-04-26", - "summary": "Consequatur minus numquam sed.\nAccusamus autem dolorum eligendi.\nPraesentium numquam dignissimos laborum nostrum maiores non tenetur quaerat nostrum.", - "informationUsed": "Voluptatum facere numquam velit commodi accusantium iste necessitatibus.\nVoluptatum similique ab nam ipsam vitae quo.\nBeatae voluptas consequatur iste fugiat blanditiis nulla.\nMagnam quae maiores sequi quam exercitationem excepturi.", - "pastOrPresentOrders": "Ab ex dolor blanditiis fugiat reprehenderit magni.", + "dateReceived": "2016-06-03", + "dateCompleted": "2017-03-19", + "dateEntered": "2019-08-23", + "dateRegistrar": "2020-11-23", + "dateLocalAuthorityReceived": "2016-01-17", + "summary": "Doloremque dignissimos quo dolore praesentium eligendi perspiciatis dolorum.\nAperiam id doloribus.", + "informationUsed": "Itaque cupiditate quaerat mollitia nisi.\nNeque expedita laboriosam optio eaque voluptate nulla hic.\nSuscipit voluptates doloremque labore.\nA voluptatibus sequi assumenda.\nAut excepturi quis dicta necessitatibus eos nam commodi.", + "pastOrPresentOrders": "Sed odit vitae minus distinctio explicabo soluta.", "commercialAndIndustrialPurposes": [ { - "uuid": "dc10617c-0dbc-4879-8d35-424b2e728104", + "uuid": "b7459cf1-0970-4aae-8abe-de2d3fbb22f4", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, { - "uuid": "12fa5748-d52f-41e1-8dba-1449ffe74c04", + "uuid": "0bbdac9c-e6d7-4d96-95b5-9d9028d4073d", "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true }, { - "uuid": "1a19b524-7e65-421e-90bc-e5ab4d0f1c38", + "uuid": "e798d362-6ad6-4b00-99aa-bd8daa71adc0", "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true } ] @@ -26184,114 +30354,100 @@ ], "activityLog": [ { - "uuid": "f8de5d9e-4f0f-48c1-a5b7-22a81083ead8", + "uuid": "0b7b7678-8108-4070-aaab-991353bc91af", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "BASHIRIAN ENRICO", - "timestamp": "2020-08-23" + "user": "MILLS JAYLIN", + "timestamp": "2022-01-13" }, { - "uuid": "52fa2d36-2521-4326-8ada-ee0c29a47388", + "uuid": "5f24a96a-cfb9-404e-84b5-73fde3bd8cd8", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "MITCHELL HUGH", - "timestamp": "2019-12-14" + "user": "STEHR SEDRICK", + "timestamp": "2018-07-18" }, { - "uuid": "1a97c951-9b7e-4fa0-bac1-bc87f7f6dc40", + "uuid": "34422bff-3e94-4964-a67a-e5ceb45b3580", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "BATZ CORDELL", - "timestamp": "2014-03-29" - }, - { - "uuid": "38582eb5-4911-43cf-9a91-d7d9bd9bdada", - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "DONNELLY LIAM", - "timestamp": "2019-05-11" + "user": "DOOLEY TERENCE", + "timestamp": "2021-04-14" }, { - "uuid": "9702f905-0e6b-4dd2-929b-1d6660e69580", - "siteRegistry": true, + "uuid": "695a280e-9c69-43aa-9b0a-3d9b8e1f86d8", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "SCHIMMEL FAUSTINO", - "timestamp": "2021-06-27" + "user": "RENNER MITCHELL", + "timestamp": "2018-05-09" }, { - "uuid": "b937edce-28a9-43d1-ad9c-1e02bfa66b5c", - "siteRegistry": true, + "uuid": "28047a96-91a1-4315-9d2b-35d9f0a3c3d8", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "LUETTGEN PETE", - "timestamp": "2021-06-30" + "user": "NITZSCHE RYLAN", + "timestamp": "2018-10-21" }, { - "uuid": "922952a6-1145-45ce-a6b1-de419368b6e1", + "uuid": "99b8543f-5b8d-4230-9e0e-ff33f4de83ec", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "WARD ELECTA", - "timestamp": "2022-11-11" + "user": "TORPHY HANK", + "timestamp": "2016-03-31" }, { - "uuid": "6825d913-93dd-4372-917f-d4c62f4ed968", + "uuid": "3a74ff5d-d8bf-447f-b444-972fa12d949e", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "STARK JEVON", - "timestamp": "2014-09-30" - }, - { - "uuid": "11431651-40fd-427b-a239-b434ad15e4eb", - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "DICKI JAZLYN", - "timestamp": "2015-01-16" + "user": "MURRAY VERN", + "timestamp": "2018-07-08" } ], "associatedSites": [ { - "uuid": "67e28663-2002-4b46-8ddb-f27af305ccc8", - "dateNoted": "2022-09-26", + "uuid": "3d1cefd7-64cb-4471-932c-ba9ce648843b", + "dateNoted": "2015-10-07", "notes": "", - "parcelID": "18855", - "siteID": "19676", - "siteRegistry": true + "parcelID": "19248", + "siteID": "16804", + "siteRegistry": false }, { - "uuid": "b985dfae-ff3e-4f63-aa25-c6cf1fb8283b", - "dateNoted": "2019-09-17", + "uuid": "4baa024f-47d7-471a-8fba-735fa16bc313", + "dateNoted": "2016-10-06", "notes": "", - "parcelID": "17415", - "siteID": "19218", - "siteRegistry": true + "parcelID": "16108", + "siteID": "15561", + "siteRegistry": false } ] }, { - "uuid": "99a17145-e9a2-4910-8021-bfde52418b63", - "siteID": 15722, - "address": "70655 Jarret Manor", - "latitude": 58.5533, - "longitude": -132.8945, - "lastUpdated": "2018-03-04", - "city": "McGlynnboro", - "region": "Kootenay", - "victoriaFile": "26250-20/2592", + "uuid": "09302f24-9852-4e00-aa75-23bbddbc70aa", + "siteID": 18513, + "address": "505 Klocko Isle", + "latitude": 52.8904, + "longitude": -138.42, + "lastUpdated": "2015-07-16", + "city": "South Augustaborough", + "region": "Vancouver Island/Coast", + "victoriaFile": "26250-20/12116", "regionalFile": "N/A", "parcelIDs": [ - 6782129, - 4674453, - 9656440, - 2523330, - 2086547 + 4035059, + 1923119, + 2822124, + 3264733, + 3617738 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "bf227556-d45c-4cbe-a5fd-0473bd40b3a5", - "createdAt": "2013-12-14", - "completed": "2019-07-25", - "initiated": "2023-02-23", - "ministryContact": "STROMAN WINONA", + "uuid": "cd135eee-0636-4e9c-ab0d-4ccada3fb116", + "createdAt": "2015-07-11", + "completed": "2014-04-03", + "initiated": "2015-08-29", + "ministryContact": "CORKERY RENEE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -26300,44 +30456,72 @@ ], "notationParticipants": [ { - "uuid": "061f5041-294e-4a50-8c59-33780e119d93", + "uuid": "bba8f2ac-4d8c-44bc-99b9-27edae0bd227", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true + "role": "SUBMITTED BY", + "siteRegistry": false }, { - "uuid": "f493e287-995b-4f42-acc9-e77bad59effc", - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "a9a0cb77-c3c1-4f20-9251-290c51e59bac", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "89a9530c-932f-4a03-9813-65fb772a14cc", + "uuid": "b1ad9e7f-9acf-4d3c-b2dc-138c2379ce4e", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false - }, + } + ], + "siteRegistry": true + }, + { + "uuid": "96f40a88-b16b-4bb4-9633-56a66a77c89d", + "createdAt": "2019-05-24", + "completed": "2022-01-03", + "initiated": "2014-11-09", + "ministryContact": "LOCKMAN DONALD", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ { - "uuid": "e3ce3ab2-6f47-4546-bcac-c16e0b3c50c1", + "uuid": "618d0a64-e23e-41ba-a65a-aa96b4c14a5c", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false }, { - "uuid": "cb4dbaa2-9fdf-49dd-9f83-9a5414f970ec", + "uuid": "09908f57-aea4-44c5-95ff-2dd8e3374c8a", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "uuid": "acf67d10-6c30-44a0-b8b7-07a7fdd1f8ad", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "uuid": "2e4fe56b-ccf9-4a63-b3a1-ae0ff0eb2e86", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "d9af8d06-1109-4618-8709-07b3b7060a55", - "createdAt": "2019-08-29", - "completed": "2015-12-02", - "initiated": "2014-06-26", - "ministryContact": "JOHNSON CHEYENNE", + "uuid": "ccfaaa0c-165b-49b3-a411-f0fe413b01b0", + "createdAt": "2023-01-16", + "completed": "2020-01-24", + "initiated": "2019-05-25", + "ministryContact": "SWIFT LETA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -26346,44 +30530,44 @@ ], "notationParticipants": [ { - "uuid": "f3f0bb52-5e66-4001-ab07-34fbf7008155", + "uuid": "5e7ad960-318a-4009-b078-57a01083a54e", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true }, { - "uuid": "671058d1-25ab-44ab-959a-3c06735f0cb7", - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "6614f949-19c0-4c0b-80c0-23c32926596e", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true }, { - "uuid": "63eb8614-bc97-4f8c-b2a4-a081c45826d3", + "uuid": "7cb14091-413f-47b6-abcd-096c88c3d5cb", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false } ], "participants": [ { - "uuid": "491620bb-7bc6-47ee-b46a-cc075225a826", - "name": "SHELL CANADA PRODUCTS", - "endDate": "2016-01-10", - "startDate": "2018-06-27", + "uuid": "740cd93c-0878-4203-9fbb-de09da7cc992", + "name": "IPSUM", + "endDate": "2018-11-22", + "startDate": "2023-02-13", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": false }, { - "uuid": "754354c5-9fd6-43bd-9e62-ee1575a7abfe", - "name": "IPSUM", - "endDate": "2017-04-07", - "startDate": "2018-08-23", + "uuid": "c4127b3a-37f2-4dbc-aeff-615296608f1b", + "name": "AMET, DOLOR SIT", + "endDate": "2014-08-14", + "startDate": "2014-01-28", "notes": "", "roles": [ "EMPLOYEE" @@ -26391,209 +30575,319 @@ "siteRegistry": false } ], - "suspectLandUses": [ + "documents": [ { - "uuid": "81df17a1-68c7-4fd6-abe2-aff0f3e449af", + "uuid": "3513a314-001a-4c51-99d7-030af186b733", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-07-29 (described on Site Profile dated 2018-07-29)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "documentDate": "2014-06-12", + "receivedDate": "2023-08-24", + "uploadedDate": "2017-11-29", + "title": "Summary of Site Conditions, 1537 W 41st Avenue, Vancouver", + "participants": [ + { + "uuid": "1ce767e8-41b2-4aab-b7a2-be35441394ed", + "name": "IPSUM", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "20eb9923-db5e-457c-98aa-791d72742349", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "93eb05e2-2dc7-4818-9642-a959e46dbc41", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": true, + "role": "AUTHOR" + } + ] + }, + { + "uuid": "1ec0acb0-4b80-40d1-bf12-37a07a19361b", + "siteRegistry": false, + "documentDate": "2020-10-01", + "receivedDate": "2018-02-19", + "uploadedDate": "2023-04-03", + "title": "Preliminary Site Investigation, Detailed Site Investigation and Remedial Plan for the Management Area adjacent to the Shell Site at 1503 West 41st Ave", + "participants": [ + { + "uuid": "95847f02-4848-4275-8fb5-d92553a0c536", + "name": "AMET, DOLOR SIT", + "siteRegistry": false, + "role": "AUTHOR" + } + ] }, { - "uuid": "4eb2c0a5-0f0f-4df1-b209-83c2e5b75aaf", + "uuid": "531462e3-7b49-4d44-b0d1-4fb92dc9ed72", + "siteRegistry": false, + "documentDate": "2017-06-15", + "receivedDate": "2022-04-27", + "uploadedDate": "2016-07-28", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "b346c2a2-05a0-4dae-871b-5c800e66399d", + "name": "AMET, DOLOR SIT", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "75b64bac-2dd5-4ada-88c7-b5b2d497f34c", + "name": "IPSUM", + "siteRegistry": false, + "role": "AUTHOR" + } + ] + } + ], + "suspectLandUses": [ + { + "uuid": "e4a2ce5e-cb17-4696-9672-943f40808a37", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-04-11 (described on Site Profile dated 2022-04-11)", + "notes": "INSERTED FOR SITE PROFILE DATED 2018-07-25 (described on Site Profile dated 2018-07-25)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "uuid": "1490b58e-74fc-4577-9e35-2fcc2144956b", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2015-02-17 (described on Site Profile dated 2015-02-17)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "uuid": "1e970538-7a52-4f05-894a-68c8fcd11091", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2020-08-28 (described on Site Profile dated 2020-08-28)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], "parcelDescriptions": [ { - "uuid": "0b6927ea-b09c-475d-b472-c914c320efc2", - "siteRegistry": false, - "dateNoted": "2013-11-09", - "parcelID": "19870", - "crownLandUsePIN": "18832", - "crownLandFileNumber": "16187", - "landDescription": "LOT 2 OF LOT 4 BLOCK 3 DISTRICT LOT 4 PLAN 3669" + "uuid": "eb50fa54-d42d-46a3-9cae-f1cc98eb4215", + "siteRegistry": true, + "dateNoted": "2017-01-14", + "parcelID": "18374", + "crownLandUsePIN": "19203", + "crownLandFileNumber": "16085", + "landDescription": "LOT 3 OF LOT 2 BLOCK 3 DISTRICT LOT 2 PLAN 6141" }, { - "uuid": "5f730f2b-1913-49b6-b81a-34616f59c076", + "uuid": "4bd7ec7d-c30f-4d6a-b42f-59b613603fb8", "siteRegistry": true, - "dateNoted": "2018-09-12", - "parcelID": "17078", - "crownLandUsePIN": "17379", - "crownLandFileNumber": "17387", - "landDescription": "LOT 2 OF LOT 3 BLOCK 2 DISTRICT LOT 4 PLAN 8577" + "dateNoted": "2016-03-25", + "parcelID": "17292", + "crownLandUsePIN": "20690", + "crownLandFileNumber": "18767", + "landDescription": "LOT 4 OF LOT 1 BLOCK 1 DISTRICT LOT 3 PLAN 5811" }, { - "uuid": "06c76cfd-119e-4f0b-9e24-a3da661dcc45", + "uuid": "b93bfc52-154e-4705-b4f0-aca911956cca", "siteRegistry": false, - "dateNoted": "2016-10-08", - "parcelID": "15507", - "crownLandUsePIN": "20487", - "crownLandFileNumber": "17153", - "landDescription": "LOT 5 OF LOT 2 BLOCK 3 DISTRICT LOT 5 PLAN 6926" + "dateNoted": "2015-11-11", + "parcelID": "16400", + "crownLandUsePIN": "17362", + "crownLandFileNumber": "16239", + "landDescription": "LOT 5 OF LOT 2 BLOCK 5 DISTRICT LOT 3 PLAN 9727" }, { - "uuid": "2d10ed83-3b79-417f-a231-538635938733", - "siteRegistry": false, - "dateNoted": "2021-11-26", - "parcelID": "18555", - "crownLandUsePIN": "16080", - "crownLandFileNumber": "20236", - "landDescription": "LOT 5 OF LOT 3 BLOCK 4 DISTRICT LOT 4 PLAN 8145" + "uuid": "e79bf51b-9593-401f-a16e-766f5157c132", + "siteRegistry": true, + "dateNoted": "2021-04-22", + "parcelID": "17563", + "crownLandUsePIN": "17821", + "crownLandFileNumber": "15231", + "landDescription": "LOT 2 OF LOT 4 BLOCK 2 DISTRICT LOT 1 PLAN 8649" + }, + { + "uuid": "c5726a31-ac2e-4415-a802-f631088999b1", + "siteRegistry": true, + "dateNoted": "2018-11-18", + "parcelID": "20841", + "crownLandUsePIN": "20753", + "crownLandFileNumber": "17750", + "landDescription": "LOT 4 OF LOT 2 BLOCK 5 DISTRICT LOT 1 PLAN 9724" } ], "siteDisclosures": [ { - "uuid": "73d9e98c-4526-4ad0-b485-95b7ef5c6eae", + "uuid": "dfaa9577-1956-4d3d-b250-3d2bc78a77c9", "siteRegistry": true, - "dateReceived": "2016-07-11", - "dateCompleted": "2022-07-13", - "dateEntered": "2018-04-03", - "dateRegistrar": "2018-02-15", - "dateLocalAuthorityReceived": "2017-03-11", - "summary": "Laborum placeat repellat recusandae labore deleniti.\nPlaceat tenetur et quam alias earum debitis perferendis ipsam quibusdam.", - "informationUsed": "Quia tempora dolorum tempore.\nMaxime aliquid libero.\nNumquam reiciendis alias nobis architecto voluptatem totam natus quasi rerum.\nAb dolorem excepturi iste nobis ut praesentium deleniti quia.", - "pastOrPresentOrders": "Commodi itaque ullam eligendi.\nPorro repudiandae tempora ducimus esse vel.", + "dateReceived": "2021-05-19", + "dateCompleted": "2017-01-14", + "dateEntered": "2015-07-20", + "dateRegistrar": "2016-12-02", + "dateLocalAuthorityReceived": "2014-02-12", + "summary": "Error repellendus esse animi voluptas illo odio perferendis.", + "informationUsed": "Possimus repellendus autem vel.\nQuae placeat vel saepe.\nDeserunt unde ex magnam nulla quod eius soluta sapiente neque.\nAnimi occaecati quidem sint ut quos quae consectetur.", + "pastOrPresentOrders": "Accusamus nihil illum ipsum ipsam ipsa.", "commercialAndIndustrialPurposes": [ { - "uuid": "d14e0e86-bed0-499d-9bb7-49727568ae3c", - "scheduleReference": "F1*", + "uuid": "1679d753-aee4-4182-aba8-3bf3fbaf8bdb", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "6e10491e-529b-408d-91b0-e957fbbc8deb", + "uuid": "4dc49328-b71c-4f76-9c29-600293d9ad37", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + } + ] + }, + { + "uuid": "42827731-1920-46e2-a7a2-ae301ae65abc", + "siteRegistry": false, + "dateReceived": "2022-05-18", + "dateCompleted": "2021-05-07", + "dateEntered": "2014-12-21", + "dateRegistrar": "2023-05-22", + "dateLocalAuthorityReceived": "2013-12-23", + "summary": "Fuga nisi sunt quam saepe non maiores quae.\nReiciendis velit voluptatem molestiae facilis reprehenderit odio.\nProvident ducimus quibusdam nemo culpa inventore nihil.", + "informationUsed": "Assumenda atque distinctio.\nMollitia soluta eos quisquam voluptas sequi corporis ducimus soluta.\nEum ea aperiam nemo.", + "pastOrPresentOrders": "Nesciunt accusantium laboriosam deleniti quis alias dolore.\nAd veniam omnis totam.\nEsse magni fugit unde ea aspernatur.", + "commercialAndIndustrialPurposes": [ + { + "uuid": "674b3562-27f3-4df9-9f13-bdfdb3894929", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, { - "uuid": "61a11f36-31ff-4b47-9a5d-a6425746e0ac", + "uuid": "0b35f60f-119a-4f57-8918-02f9eb4f964a", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false + }, + { + "uuid": "da542e7f-ed5c-456e-a2a7-6b7f047e5299", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true } ] } ], "activityLog": [ { - "uuid": "54f82c0c-1800-407f-b253-069326ea6dfa", - "siteRegistry": false, + "uuid": "c2d16258-8066-4de1-887e-fe177817b7e0", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "GRADY-STIEDEMANN JANIS", - "timestamp": "2016-07-27" + "user": "KING DANNIE", + "timestamp": "2014-03-02" }, { - "uuid": "14c2912c-4ba5-42cc-adab-c0db826f7320", - "siteRegistry": false, + "uuid": "6315530b-9193-4893-8da0-caaf8a491121", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "HOWELL KELLEY", - "timestamp": "2017-07-05" + "user": "BERGSTROM WARD", + "timestamp": "2019-03-07" }, { - "uuid": "4b956955-087b-458e-9d4b-864be073546e", - "siteRegistry": true, + "uuid": "0947d0a0-156e-452f-bf10-29fb01f9a16b", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "KING GERARD", - "timestamp": "2018-05-13" + "user": "SMITH SHAD", + "timestamp": "2022-07-05" }, { - "uuid": "2a196b20-46c0-4ec9-b59d-5383e85a8a50", + "uuid": "310aac67-f5dc-45ad-8519-657acdf0cb71", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "JACOBI UBALDO", - "timestamp": "2018-06-24" + "user": "WITTING MORGAN", + "timestamp": "2016-09-10" }, { - "uuid": "4fe435af-fdc7-47df-8cfb-83ce86200178", - "siteRegistry": false, + "uuid": "37bd5772-c15e-4c10-b551-108ba1c61705", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "BOSCO LAVINIA", - "timestamp": "2014-08-10" + "user": "HAUCK TRE", + "timestamp": "2021-09-30" }, { - "uuid": "4e802d9e-9ab5-4e29-8f80-a8ff6c17eb9a", + "uuid": "02b53dec-6c2e-4a0d-bacb-4b62c18489af", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "KLEIN THOMAS", - "timestamp": "2018-09-02" + "user": "FLATLEY SELINA", + "timestamp": "2016-03-27" }, { - "uuid": "6e98911f-b2d1-4dd3-b869-5d767dbd037a", + "uuid": "8365b004-dc30-4dd6-a9c2-fe838ff089a9", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "MACEJKOVIC AXEL", - "timestamp": "2018-04-24" + "user": "SCHNEIDER ERA", + "timestamp": "2018-10-10" }, { - "uuid": "2b94710c-c1be-4979-b72b-b6132c6b0588", + "uuid": "73b27a4e-e805-4225-8581-fff436a57035", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "LIND ARACELI", - "timestamp": "2020-07-03" + "user": "KOHLER RHIANNON", + "timestamp": "2020-09-21" }, { - "uuid": "aedc0941-b1e5-4c11-9cde-31a6f6db2b32", + "uuid": "80893c35-4580-4075-bc4e-b6589b443db7", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "GISLASON AIDEN", - "timestamp": "2014-09-22" - }, - { - "uuid": "e3d1eb14-4d71-462f-9e94-25ed7985b5d3", - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "JONES-LEDNER NIKITA", - "timestamp": "2022-04-27" + "user": "HARRIS CHANCE", + "timestamp": "2018-06-08" } ], "associatedSites": [ { - "uuid": "6c9d24fb-a254-4b02-93e9-486c89c2f70b", - "dateNoted": "2015-10-18", + "uuid": "cffa983b-28cf-401d-b868-c8770322331b", + "dateNoted": "2015-11-02", "notes": "", - "parcelID": "19021", - "siteID": "20960", - "siteRegistry": true + "parcelID": "18403", + "siteID": "17503", + "siteRegistry": false }, { - "uuid": "90554d9c-c0db-44a6-8763-7f239ed69632", - "dateNoted": "2022-03-03", + "uuid": "e27ef097-6237-4c8c-b0e2-84970d7bbadd", + "dateNoted": "2017-10-22", "notes": "", - "parcelID": "15524", - "siteID": "18696", - "siteRegistry": true + "parcelID": "18280", + "siteID": "20416", + "siteRegistry": false + }, + { + "uuid": "96bc36d8-0eaf-4d23-a760-512d3bad0d1e", + "dateNoted": "2016-11-12", + "notes": "", + "parcelID": "15619", + "siteID": "20534", + "siteRegistry": false } ] }, { - "uuid": "a8eb994a-740a-4e67-92d2-c95cf14de115", - "siteID": 17458, - "address": "697 Legros River", - "latitude": 53.6014, - "longitude": -120.5236, - "lastUpdated": "2017-10-16", - "city": "New Gloria", - "region": "Cariboo", - "victoriaFile": "26250-20/11917", + "uuid": "a4b1c31d-95fd-4377-ad9e-71dc387e9344", + "siteID": 15917, + "address": "89458 Beth Plains", + "latitude": 55.2563, + "longitude": -132.9555, + "lastUpdated": "2014-09-01", + "city": "Schadenchester", + "region": "Mainland/Southwest", + "victoriaFile": "26250-20/6952", "regionalFile": "N/A", "parcelIDs": [ - 7931600, - 5256144, - 1706322, - 8598854, - 7993529 + 5417580, + 8840627, + 9943445, + 544082, + 9400633 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "5cdc1079-2e08-4075-868b-61a1cf5ed99d", - "createdAt": "2014-08-21", - "completed": "2022-06-26", - "initiated": "2021-03-20", - "ministryContact": "HICKLE NATASHA", + "uuid": "3df3f5f9-2616-4598-9cfe-7f1d8c573e19", + "createdAt": "2017-02-26", + "completed": "2017-02-19", + "initiated": "2015-07-09", + "ministryContact": "WEST LELAH", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -26602,38 +30896,72 @@ ], "notationParticipants": [ { - "uuid": "7c70c3bd-f2f2-40bf-8d90-3463c1987406", + "uuid": "2e5b8a16-0651-4f58-ad24-22350f01750c", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true + "role": "REQUESTED BY", + "siteRegistry": false }, { - "uuid": "59997caf-01da-457b-8430-dc9a04eb4df0", - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "01cde2d9-4165-4b20-876d-99f06765752f", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "f746a6d2-d57e-48d7-8e13-eba685f030a9", + "uuid": "040f9f55-017b-4c30-a967-2b0ee4bf72e8", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "uuid": "b668ab73-042e-45a4-93b1-533d10a039d7", + "createdAt": "2022-07-01", + "completed": "2021-01-28", + "initiated": "2022-11-04", + "ministryContact": "FEIL JAIDEN", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "uuid": "4bd859ab-5291-4686-b4d7-d86ef85e1e23", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "352f519c-6456-47c5-9077-1306f92cad43", + "uuid": "f1e478af-5e66-4550-a027-cbdd6ce675ce", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "30d00419-6f50-494f-946a-16e3ab8159b9", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "c6a3587c-56b6-4541-b8f4-fde33dfbf01b", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false } ], "siteRegistry": false }, { - "uuid": "38f1f8a2-5b16-456f-8bf6-3c355222d584", - "createdAt": "2019-02-07", - "completed": "2020-02-04", - "initiated": "2021-12-08", - "ministryContact": "HAYES MARGOT", + "uuid": "6989904a-2008-4274-a86d-1b101522c484", + "createdAt": "2016-11-11", + "completed": "2017-07-06", + "initiated": "2016-07-08", + "ministryContact": "GERLACH DARBY", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -26642,26 +30970,38 @@ ], "notationParticipants": [ { - "uuid": "c0e32f63-80e8-47dd-9cc2-de1030b5b339", + "uuid": "83bac650-4b23-46b0-9ec2-397a952aa27a", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true }, { - "uuid": "f4ad2bac-3ade-407f-b219-aefbd03ef375", + "uuid": "a000ca2c-405a-4a36-8be1-b96c8317befd", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "e08f2cba-a948-4f3c-896d-924b5833d35c", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "fcf82251-0111-4517-aed0-2bee2e7041d1", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "25130121-0299-4276-aea2-5f340e8b26a2", - "createdAt": "2022-07-15", - "completed": "2017-04-27", - "initiated": "2023-07-25", - "ministryContact": "HAGENES AKEEM", + "uuid": "e93beadd-031c-4bb1-b1b6-49d3686f81dc", + "createdAt": "2015-05-14", + "completed": "2014-08-17", + "initiated": "2018-10-04", + "ministryContact": "SPINKA LEONEL", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -26670,38 +31010,32 @@ ], "notationParticipants": [ { - "uuid": "09002751-92ad-45ee-97d4-0d46f5b5585a", + "uuid": "0243bdb9-dc7e-4f49-bb6e-f36b00e154ab", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "a0c08894-55db-46e7-a6bd-8eaf64fad188", + "uuid": "0fc0e6f6-f777-498d-96ae-ba71c19c255e", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true + "role": "SUBMITTED BY", + "siteRegistry": false }, { - "uuid": "9509f22f-b770-4e2c-88ec-190335007d36", + "uuid": "15574da5-66e5-4262-afb9-e8266e2ee421", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "uuid": "d047b7bd-b6e6-401a-8169-63a01d050391", - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "3af37bad-9ef1-4839-a49d-4c5590f77f9a", - "createdAt": "2018-03-06", - "completed": "2019-11-21", - "initiated": "2014-03-28", - "ministryContact": "WEBER REINHOLD", + "uuid": "d765d9a0-ca2a-446e-8fa6-de4c9e0fb2b9", + "createdAt": "2017-08-15", + "completed": "2022-03-17", + "initiated": "2019-10-11", + "ministryContact": "BARTELL BARRETT", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -26710,22 +31044,34 @@ ], "notationParticipants": [ { - "uuid": "71dfdfd2-7f0b-4d53-9766-0fd842b2ccb3", - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "1c773333-45b4-4711-938b-0fe68ab2ea16", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "uuid": "fcb6cc8d-6512-4859-a200-1bf0009d8ab5", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false }, { - "uuid": "c218b4e1-f7b3-455c-b20c-aebeb478e23e", + "uuid": "25c9ebd9-9080-47d0-b02e-f9b0d4fd9d22", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "7049da0d-bdd2-4c3f-8bf2-e658bc973c56", + "uuid": "0f85c576-8d58-4978-b647-3591b769883b", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true + }, + { + "uuid": "0755382f-7e11-474d-bc7c-fc60cdbeb776", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false } ], "siteRegistry": false @@ -26733,21 +31079,21 @@ ], "participants": [ { - "uuid": "7fdbc04c-304c-4161-8d3f-c5817382fde2", - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2019-04-15", - "startDate": "2017-03-28", + "uuid": "bea7254e-2546-41a5-b1dc-1a668826c93d", + "name": "IPSUM", + "endDate": "2020-06-02", + "startDate": "2023-02-22", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": true }, { - "uuid": "1c1a5e59-303b-42e5-ae84-e543151a5006", - "name": "SHELL CANADA PRODUCTS", - "endDate": "2014-08-08", - "startDate": "2019-08-21", + "uuid": "4ee5b921-d8ce-4478-ac0f-dd5d9c16152a", + "name": "AMET, DOLOR SIT", + "endDate": "2019-10-04", + "startDate": "2019-06-11", "notes": "", "roles": [ "ORGANIZATION" @@ -26755,219 +31101,253 @@ "siteRegistry": false }, { - "uuid": "ed349ff0-c3d8-487b-b07a-7429e0b039de", - "name": "SHELL CANADA PRODUCTS", - "endDate": "2017-04-26", - "startDate": "2021-08-30", + "uuid": "77751286-6d88-4d0c-a800-f769f944167e", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2017-10-16", + "startDate": "2017-04-18", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "f5b71591-25b5-4326-b5b6-b7e45df5abed", - "name": "SHELL CANADA PRODUCTS", - "endDate": "2022-08-31", - "startDate": "2022-06-01", + "uuid": "0c6517ab-67b8-4b59-a8c4-ca06f0ceb924", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2016-08-02", + "startDate": "2018-04-29", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": false + "siteRegistry": true } ], - "suspectLandUses": [ + "documents": [ { - "uuid": "0b401c50-ab17-4920-bd3c-582bd9737fc7", - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-05-18 (described on Site Profile dated 2019-05-18)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "uuid": "1306b2f6-e2af-431a-a110-b539484a3941", + "siteRegistry": false, + "documentDate": "2020-05-04", + "receivedDate": "2017-04-10", + "uploadedDate": "2017-05-21", + "title": "Preliminary Site Investigation, Detailed Site Investigation and Remedial Plan for the Management Area adjacent to the Shell Site at 1503 West 41st Ave", + "participants": [ + { + "uuid": "731783a5-fee4-43ac-9d5c-1ae4861ab2ec", + "name": "AMET, DOLOR SIT", + "siteRegistry": false, + "role": "AUTHOR" + } + ] }, { - "uuid": "5a0d8c6f-1460-4bbd-91c7-d5edbc32a441", - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-10-09 (described on Site Profile dated 2015-10-09)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "uuid": "8460e863-a678-47a5-b4ac-81e42ff8e53e", + "siteRegistry": false, + "documentDate": "2023-10-10", + "receivedDate": "2018-08-08", + "uploadedDate": "2023-07-01", + "title": "Preliminary Site Investigation, Detailed Site Investigation and Remedial Plan for the Management Area adjacent to the Shell Site at 1503 West 41st Ave", + "participants": [ + { + "uuid": "8f90d8cd-450e-44bc-a656-e413f4dc897d", + "name": "IPSUM", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "f8067b30-fa54-4e4c-b006-f3da509f3c83", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": true, + "role": "AUTHOR" + } + ] } ], - "parcelDescriptions": [ + "suspectLandUses": [ { - "uuid": "7775a33b-2f07-4e7d-bcb3-7a28341e20f9", + "uuid": "a7bfca1f-56c7-41c5-bd51-31194261f2e9", "siteRegistry": false, - "dateNoted": "2015-08-09", - "parcelID": "17124", - "crownLandUsePIN": "17082", - "crownLandFileNumber": "15547", - "landDescription": "LOT 5 OF LOT 1 BLOCK 3 DISTRICT LOT 5 PLAN 4701" + "notes": "INSERTED FOR SITE PROFILE DATED 2015-10-20 (described on Site Profile dated 2015-10-20)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "uuid": "b7444628-501f-40a7-a55a-504f6f252b24", + "uuid": "a41db4e8-b66f-4153-9293-e43e977e47df", "siteRegistry": true, - "dateNoted": "2021-01-04", - "parcelID": "19024", - "crownLandUsePIN": "17916", - "crownLandFileNumber": "20575", - "landDescription": "LOT 2 OF LOT 5 BLOCK 5 DISTRICT LOT 2 PLAN 9503" + "notes": "INSERTED FOR SITE PROFILE DATED 2016-03-15 (described on Site Profile dated 2016-03-15)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "uuid": "da4411cc-d1a2-4e06-ac12-9c5295f05ade", + "uuid": "b8093377-1105-4afe-94e8-f4969ce3387a", "siteRegistry": true, - "dateNoted": "2013-11-10", - "parcelID": "19659", - "crownLandUsePIN": "16566", - "crownLandFileNumber": "17235", - "landDescription": "LOT 5 OF LOT 5 BLOCK 5 DISTRICT LOT 4 PLAN 3220" - }, - { - "uuid": "c88a22af-5ab7-43ec-9f7e-22426ec2da45", - "siteRegistry": false, - "dateNoted": "2015-06-04", - "parcelID": "19504", - "crownLandUsePIN": "18516", - "crownLandFileNumber": "16171", - "landDescription": "LOT 4 OF LOT 1 BLOCK 4 DISTRICT LOT 2 PLAN 9255" + "notes": "INSERTED FOR SITE PROFILE DATED 2015-10-01 (described on Site Profile dated 2015-10-01)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "uuid": "c83bea31-74bc-46c6-867c-fdffd23dc823", + "uuid": "e46be877-ded7-4e9a-afab-3f3da330d7cb", "siteRegistry": false, - "dateNoted": "2019-07-28", - "parcelID": "17222", - "crownLandUsePIN": "20664", - "crownLandFileNumber": "16919", - "landDescription": "LOT 2 OF LOT 5 BLOCK 2 DISTRICT LOT 3 PLAN 3331" + "notes": "INSERTED FOR SITE PROFILE DATED 2023-03-03 (described on Site Profile dated 2023-03-03)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], - "siteDisclosures": [ + "parcelDescriptions": [ { - "uuid": "2ce396e9-6a8e-424a-bb15-8f01aa058eff", - "siteRegistry": false, - "dateReceived": "2020-05-09", - "dateCompleted": "2023-02-13", - "dateEntered": "2017-10-04", - "dateRegistrar": "2014-08-04", - "dateLocalAuthorityReceived": "2015-05-01", - "summary": "Quos quasi ex odit.\nMagnam maxime voluptas nihil.", - "informationUsed": "Eligendi molestias ducimus deleniti porro dolore accusantium dolore eos tempore.\nMagni mollitia totam asperiores ducimus libero.\nMaxime culpa iste.", - "pastOrPresentOrders": "Commodi vero ex neque aspernatur maxime fugit minima.\nVelit laborum magnam nam odio.", + "uuid": "099b9a0b-f2bc-4c14-b1f5-d0a8773159a9", + "siteRegistry": true, + "dateNoted": "2014-11-13", + "parcelID": "16020", + "crownLandUsePIN": "20543", + "crownLandFileNumber": "16218", + "landDescription": "LOT 4 OF LOT 1 BLOCK 4 DISTRICT LOT 2 PLAN 6946" + }, + { + "uuid": "10f9125e-2023-4618-b61d-497dd96f985b", + "siteRegistry": false, + "dateNoted": "2019-01-08", + "parcelID": "15377", + "crownLandUsePIN": "20674", + "crownLandFileNumber": "19234", + "landDescription": "LOT 1 OF LOT 3 BLOCK 1 DISTRICT LOT 2 PLAN 8788" + }, + { + "uuid": "38aa3f78-60a5-49b0-9a8b-5dd42b02ecb8", + "siteRegistry": true, + "dateNoted": "2018-02-21", + "parcelID": "16418", + "crownLandUsePIN": "20605", + "crownLandFileNumber": "16041", + "landDescription": "LOT 4 OF LOT 5 BLOCK 3 DISTRICT LOT 5 PLAN 4741" + } + ], + "siteDisclosures": [ + { + "uuid": "e3df79c7-807e-4660-b762-0a448949a876", + "siteRegistry": true, + "dateReceived": "2016-11-21", + "dateCompleted": "2015-08-07", + "dateEntered": "2022-04-05", + "dateRegistrar": "2016-05-30", + "dateLocalAuthorityReceived": "2015-10-08", + "summary": "A mollitia culpa provident quia maiores esse in nemo.", + "informationUsed": "Voluptates dolorum hic velit aspernatur est magnam quisquam.\nRem incidunt natus deserunt corporis necessitatibus.\nAtque enim tempora.\nPlaceat perferendis a deserunt cum eos sapiente.", + "pastOrPresentOrders": "Aut nobis numquam delectus maxime cumque nostrum.\nEt ipsum eius tenetur vero.\nVoluptates nemo ratione odio officiis molestiae dolorem unde.", "commercialAndIndustrialPurposes": [ { - "uuid": "77f89d09-c0d0-4776-8c45-6c86851163ec", + "uuid": "daa1d506-0aad-4b2e-9ad1-6b2c2b1c1633", "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { - "uuid": "bce23568-ede8-4c4e-9faf-4694ee18b79c", + "uuid": "f9c02ca8-7bd4-4a32-b0c3-3a18506dca04", "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { - "uuid": "7bb90244-be47-45fd-90db-319250c59eb7", + "uuid": "9275c4c4-32a5-4897-afda-b4d7f16130dc", "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true }, { - "uuid": "05001370-acc5-45a3-89f5-aadeade07b18", - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false + "uuid": "bc209e1c-11b3-4ed7-af12-fd82158ec3d3", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true } ] } ], "activityLog": [ { - "uuid": "095fb1c8-437b-4e6d-a67d-5b9a13cb2ac9", - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "HUELS DEREK", - "timestamp": "2021-11-24" - }, - { - "uuid": "6ae67919-f1b6-4331-b26e-193487c70e39", + "uuid": "5e785834-c868-494e-b51d-ab3fca01a893", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "CROOKS BRENNA", - "timestamp": "2013-12-14" + "user": "LEGROS JERROLD", + "timestamp": "2020-09-15" }, { - "uuid": "eb4e26a9-0ce9-4aba-ab41-9e9618179afd", + "uuid": "6dd20675-74f5-4c5b-95aa-4798e1d2a75b", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "REICHEL-HICKLE MARGARETTA", - "timestamp": "2021-12-20" + "user": "LITTEL-PROHASKA WARD", + "timestamp": "2020-04-16" }, { - "uuid": "68909e23-07e7-474d-a20c-dae974fc8cf5", + "uuid": "c611f3a8-2c08-4b6e-8da6-6c6ea11a1532", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "WEBER OMER", - "timestamp": "2014-03-13" + "user": "KRIS CLETA", + "timestamp": "2022-07-22" }, { - "uuid": "17f04467-fd4e-4bbf-82a4-af9689564a40", + "uuid": "c23fab24-2e93-4d93-850b-48e1f4a356f2", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "HAGENES CHEYENNE", - "timestamp": "2018-10-14" + "user": "ROBEL ADRIANNA", + "timestamp": "2018-05-22" + }, + { + "uuid": "6309712c-485d-4bad-a0f9-0876ab7e8120", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "STREICH SILAS", + "timestamp": "2016-04-10" } ], "associatedSites": [ { - "uuid": "9f0ff9ff-199a-4e6c-a2d7-3483edf0f981", - "dateNoted": "2020-10-11", + "uuid": "b8e772bc-8524-4d8f-a45d-374ab99ffcac", + "dateNoted": "2020-08-13", "notes": "", - "parcelID": "19447", - "siteID": "18934", - "siteRegistry": false + "parcelID": "16494", + "siteID": "20556", + "siteRegistry": true }, { - "uuid": "5c460e87-6950-4534-9942-90a3e060ed87", - "dateNoted": "2017-05-14", + "uuid": "d04bfa3c-d919-4dc3-9f5f-f192d54340ef", + "dateNoted": "2019-07-01", "notes": "", - "parcelID": "18977", - "siteID": "19995", - "siteRegistry": false + "parcelID": "19835", + "siteID": "18588", + "siteRegistry": true }, { - "uuid": "0d5562ae-0392-4066-a56c-847b8b518420", - "dateNoted": "2019-02-28", + "uuid": "ea751961-13f5-4fc0-8bf9-4bc9da56e5f4", + "dateNoted": "2017-07-19", "notes": "", - "parcelID": "17966", - "siteID": "15716", - "siteRegistry": false + "parcelID": "20437", + "siteID": "16804", + "siteRegistry": true } ] }, { - "uuid": "437d3355-e6a0-44ef-a1e9-53030806365e", - "siteID": 20960, - "address": "822 Elian Hills", - "latitude": 51.5975, - "longitude": -128.2248, - "lastUpdated": "2015-01-19", - "city": "East Lucasside", - "region": "Mainland/Southwest", - "victoriaFile": "26250-20/14849", + "uuid": "8507c897-3a37-4333-b565-3139e9c9b7fb", + "siteID": 20556, + "address": "5425 Isabel Court", + "latitude": 55.2296, + "longitude": -136.026, + "lastUpdated": "2019-01-09", + "city": "Murfreesboro", + "region": " North Coast", + "victoriaFile": "26250-20/12215", "regionalFile": "N/A", "parcelIDs": [ - 2781616, - 1132308, - 8204782, - 875576, - 709259 + 7963507, + 6253286, + 783926, + 9592755, + 4920569 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "11dbb356-a618-469d-819d-a35cc213d07a", - "createdAt": "2015-04-13", - "completed": "2023-04-15", - "initiated": "2023-09-14", - "ministryContact": "LITTLE ALYSON", + "uuid": "47fd05f8-7cd0-44c5-9a91-97715b3d1a4f", + "createdAt": "2020-08-30", + "completed": "2017-07-02", + "initiated": "2020-11-06", + "ministryContact": "LAKIN MOHAMMAD", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -26976,122 +31356,32 @@ ], "notationParticipants": [ { - "uuid": "23cb0af3-be1f-461a-abf1-dabbe9f0646e", + "uuid": "aa361b57-5143-4d63-819a-847d2c6cc5b0", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "72e34fdc-67a5-4700-87fa-2972aeb24b53", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "uuid": "4fe2a3fa-5e3f-4861-b892-2e76ef4ce75e", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - } - ], - "siteRegistry": true - }, - { - "uuid": "65ed8cdc-049b-4f6d-9fab-ab5412ee1d9e", - "createdAt": "2017-08-23", - "completed": "2019-10-10", - "initiated": "2020-06-23", - "ministryContact": "SCHNEIDER KATHERINE", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "uuid": "b9c0e9ad-609e-4d3a-a110-794e26f88e0f", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "uuid": "ef64f0d2-b263-465c-bc11-566b90795ab3", - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "33e5106d-72f1-4981-ba5b-1fda75d3618e", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true }, { - "uuid": "b12e7fc7-8f3e-477f-84f8-ebb4764ef52a", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - } - ], - "siteRegistry": true - }, - { - "uuid": "cf70ca3c-b83a-461f-9283-d8b8c8bd6d77", - "createdAt": "2023-10-06", - "completed": "2016-10-07", - "initiated": "2020-07-31", - "ministryContact": "POLLICH BARNEY", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "uuid": "6f440121-87e8-4abf-805c-e7b959e87997", - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "f8ca4eff-fbe4-492e-bb76-5337ee58d2bc", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "uuid": "71db1bc4-4965-43a1-9f1f-7372aff04e12", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - } - ], - "siteRegistry": true - }, - { - "uuid": "ef4f8ee6-ce77-4e32-9d35-e3283ce04c12", - "createdAt": "2021-02-10", - "completed": "2023-01-12", - "initiated": "2020-11-21", - "ministryContact": "CARTER EDYTHE", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "uuid": "65e84c63-c101-48ad-bb6a-a46e43c84fe9", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", "siteRegistry": true - }, - { - "uuid": "cb6f9576-bc99-4e26-b151-861ea0b17186", - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false } ], "siteRegistry": true }, { - "uuid": "8e4bd602-d543-4076-9d8b-251c2b073fb0", - "createdAt": "2018-10-20", - "completed": "2020-07-03", - "initiated": "2016-09-16", - "ministryContact": "MURPHY JANELLE", + "uuid": "88015260-ea2b-43b9-a66e-eb6e919489ac", + "createdAt": "2015-01-10", + "completed": "2023-06-05", + "initiated": "2019-05-14", + "ministryContact": "LITTEL DONNELL", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -27100,45 +31390,27 @@ ], "notationParticipants": [ { - "uuid": "b9b17db9-0ec7-42e3-9d78-7167eb55b5d2", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "uuid": "52ee92a2-df42-4bdf-b3b4-35973cc73ba5", + "uuid": "4e43e90d-2e70-4f63-80a1-fa21b0514ea6", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "3ee7a8fd-bc51-44e8-bce0-65b797702c16", + "uuid": "e6e95d35-65e9-4335-81c5-86e9b3c6b180", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true - }, - { - "uuid": "3d7a443a-43c0-41d4-b823-aa6cecb815e8", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "uuid": "04a73d46-ee58-4fe1-9c23-36f22a5ffe22", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true } ], "participants": [ { - "uuid": "92e32ed3-18a6-4fac-ae9d-c3a706bfdec3", - "name": "SHELL CANADA PRODUCTS", - "endDate": "2020-06-03", - "startDate": "2023-04-27", + "uuid": "33728434-b7c9-49e3-8d3e-b1969486b886", + "name": "IPSUM", + "endDate": "2018-11-25", + "startDate": "2014-01-30", "notes": "", "roles": [ "ORGANIZATION" @@ -27146,123 +31418,219 @@ "siteRegistry": true }, { - "uuid": "c96d1e8c-e780-409e-978c-85891a907d4c", - "name": "IPSUM", - "endDate": "2014-03-25", - "startDate": "2019-07-21", + "uuid": "e2fadc25-54f4-44ba-b794-f7be40670389", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2020-07-26", + "startDate": "2022-12-11", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": true }, { - "uuid": "a9b69aac-9a3e-4235-abc0-26e27d8f02a5", - "name": "AMET, DOLOR SIT", - "endDate": "2020-04-12", - "startDate": "2022-12-05", + "uuid": "787cff6d-f8e3-44db-a724-8f76eded68d5", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2015-07-13", + "startDate": "2015-11-29", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": false + "siteRegistry": true + } + ], + "documents": [ + { + "uuid": "67afc123-7524-4ed1-9f0d-ae5803d93e95", + "siteRegistry": false, + "documentDate": "2019-09-03", + "receivedDate": "2023-08-17", + "uploadedDate": "2020-10-30", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "9a55770b-c363-4d9d-9aa0-3744e47c21d5", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "06ce897d-c95f-4feb-9b95-587e3dc6fadd", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "b65c5a69-373b-4d9e-9292-9074d098e657", + "name": "AMET, DOLOR SIT", + "siteRegistry": true, + "role": "AUTHOR" + } + ] }, { - "uuid": "f4793086-e2f4-4855-b52e-60dc5722da40", - "name": "IPSUM", - "endDate": "2021-08-11", - "startDate": "2015-06-06", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": false + "uuid": "c512ca05-2013-495b-914a-1e826ca9b74f", + "siteRegistry": true, + "documentDate": "2022-04-17", + "receivedDate": "2022-01-25", + "uploadedDate": "2020-10-09", + "title": "Preliminary Site Investigation, Detailed Site Investigation and Remedial Plan for the Management Area adjacent to the Shell Site at 1503 West 41st Ave", + "participants": [ + { + "uuid": "71b60736-a067-445c-863b-2e5f84f104d2", + "name": "AMET, DOLOR SIT", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "8b1a958a-0ba1-4032-a798-504adb195484", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": true, + "role": "AUTHOR" + } + ] }, { - "uuid": "25a1b2b0-09fe-432a-99c2-043b33c9e406", - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2018-06-04", - "startDate": "2018-06-20", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": false - } - ], - "suspectLandUses": [ + "uuid": "373a0fa1-8ad4-4621-aef9-6f79e1326cc0", + "siteRegistry": false, + "documentDate": "2016-03-13", + "receivedDate": "2022-08-29", + "uploadedDate": "2017-01-19", + "title": "Summary of Site Conditions, 1537 W 41st Avenue, Vancouver", + "participants": [ + { + "uuid": "2a846cca-ec9c-4019-a5cc-593dc6d5d4bc", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "c1091da9-2c0f-416a-a358-bd39212fc1db", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": false, + "role": "AUTHOR" + } + ] + }, { - "uuid": "2da6e305-8384-4c96-9ac5-de4333a35a36", + "uuid": "d0735e26-ca61-43bf-bafb-40cdf37dd1e2", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2023-08-16 (described on Site Profile dated 2023-08-16)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "documentDate": "2020-11-05", + "receivedDate": "2015-06-24", + "uploadedDate": "2017-05-16", + "title": "Summary of Site Conditions, 1537 W 41st Avenue, Vancouver", + "participants": [ + { + "uuid": "c486a682-8180-4bbf-a28b-a176c68b57d0", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "52d80c0d-7116-42c6-b912-11030a85a66b", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": true, + "role": "AUTHOR" + } + ] }, { - "uuid": "248406fb-c4d9-448e-aedf-12259a049e4b", + "uuid": "9b9913fe-ab6f-446b-94fd-efeb8c9d579a", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-06-13 (described on Site Profile dated 2018-06-13)", + "documentDate": "2022-09-06", + "receivedDate": "2015-01-19", + "uploadedDate": "2017-10-21", + "title": "Preliminary Site Investigation, Detailed Site Investigation and Remedial Plan for the Management Area adjacent to the Shell Site at 1503 West 41st Ave", + "participants": [ + { + "uuid": "f3dddf75-7183-4cf8-b53b-4e43740e58fe", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": true, + "role": "AUTHOR" + } + ] + } + ], + "suspectLandUses": [ + { + "uuid": "e77b6096-5b51-4268-b5f7-56e6cac88310", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2016-07-06 (described on Site Profile dated 2016-07-06)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "uuid": "24930f00-01c7-41f9-8c11-671c7d655a8b", + "uuid": "d0948062-5045-4e64-9341-11b323572616", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-11-13 (described on Site Profile dated 2019-11-13)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "notes": "INSERTED FOR SITE PROFILE DATED 2019-10-02 (described on Site Profile dated 2019-10-02)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], "parcelDescriptions": [ { - "uuid": "2138bb99-e2b1-4dac-a7d4-5d6a740ad2ac", + "uuid": "e42de466-c24a-4ff3-8b80-c72283dc9fe5", + "siteRegistry": true, + "dateNoted": "2015-03-27", + "parcelID": "16031", + "crownLandUsePIN": "19117", + "crownLandFileNumber": "17088", + "landDescription": "LOT 3 OF LOT 2 BLOCK 2 DISTRICT LOT 4 PLAN 4236" + }, + { + "uuid": "9d3f38de-2929-4ed1-83b3-d41d1c92c2b0", "siteRegistry": false, - "dateNoted": "2014-12-25", - "parcelID": "19438", - "crownLandUsePIN": "16115", - "crownLandFileNumber": "19697", - "landDescription": "LOT 2 OF LOT 1 BLOCK 2 DISTRICT LOT 2 PLAN 3688" + "dateNoted": "2014-10-25", + "parcelID": "18703", + "crownLandUsePIN": "17512", + "crownLandFileNumber": "18340", + "landDescription": "LOT 4 OF LOT 1 BLOCK 1 DISTRICT LOT 5 PLAN 6818" }, { - "uuid": "652f7403-d6a9-4fe4-87cf-94c988b42125", + "uuid": "9e4ffa92-da67-4b0a-a065-73855e1517cf", "siteRegistry": false, - "dateNoted": "2023-08-11", - "parcelID": "15661", - "crownLandUsePIN": "15846", - "crownLandFileNumber": "18089", - "landDescription": "LOT 3 OF LOT 1 BLOCK 1 DISTRICT LOT 4 PLAN 7008" + "dateNoted": "2017-12-10", + "parcelID": "18958", + "crownLandUsePIN": "20899", + "crownLandFileNumber": "18332", + "landDescription": "LOT 5 OF LOT 2 BLOCK 3 DISTRICT LOT 3 PLAN 7763" + }, + { + "uuid": "62b50a0d-3905-477e-9b4e-b6d6d79c8f33", + "siteRegistry": true, + "dateNoted": "2016-09-21", + "parcelID": "16341", + "crownLandUsePIN": "17717", + "crownLandFileNumber": "17337", + "landDescription": "LOT 2 OF LOT 2 BLOCK 1 DISTRICT LOT 4 PLAN 3337" } ], "siteDisclosures": [ { - "uuid": "645d8cc6-dbc5-4fdf-8b84-4887f3950314", - "siteRegistry": false, - "dateReceived": "2022-10-26", - "dateCompleted": "2017-09-21", - "dateEntered": "2014-01-28", - "dateRegistrar": "2019-06-02", - "dateLocalAuthorityReceived": "2023-05-11", - "summary": "Nesciunt maiores debitis.", - "informationUsed": "Quos rem vel porro libero deserunt voluptatibus consequuntur impedit.\nEligendi architecto hic alias doloremque atque.\nQuidem sed commodi.\nItaque expedita natus cumque maxime ab.", - "pastOrPresentOrders": "Magni quibusdam optio quasi aut et consequatur inventore.", + "uuid": "c93b98f8-d235-4989-884a-7e5df7e081e5", + "siteRegistry": true, + "dateReceived": "2020-09-17", + "dateCompleted": "2021-09-12", + "dateEntered": "2018-03-01", + "dateRegistrar": "2018-06-13", + "dateLocalAuthorityReceived": "2015-09-08", + "summary": "Reprehenderit hic quia laborum a amet quaerat expedita.\nUnde amet sunt amet quas deleniti qui excepturi nulla nihil.", + "informationUsed": "Non odit dolores dolorem maxime quidem dolor deserunt fuga doloribus.\nSapiente voluptate adipisci asperiores natus dicta.\nTemporibus nulla sed excepturi sit quis quidem fugit.\nReprehenderit voluptatum mollitia facere beatae dignissimos.\nSint similique ab.", + "pastOrPresentOrders": "Iusto nesciunt quam suscipit numquam ipsa.", "commercialAndIndustrialPurposes": [ { - "uuid": "f787cdae-efd6-4d1d-8fb9-b6f761db6938", - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true - }, - { - "uuid": "41204721-68f1-44a1-b024-a49c43ae202b", - "scheduleReference": "F2*", + "uuid": "c3a8196a-e645-480f-b5f5-200f8242a0d7", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, { - "uuid": "64fe666e-1d39-4101-a5ec-7bf76c1d2840", + "uuid": "a633c568-3ef8-4033-a7b7-3c1a2812a6be", "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false }, { - "uuid": "958582ea-abb2-46ef-8ba4-6f9e0f385d29", + "uuid": "6f7cb225-6197-4861-b7e4-d6b2a2fcafbc", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true @@ -27272,113 +31640,78 @@ ], "activityLog": [ { - "uuid": "38e7c128-d353-4263-a2ff-dee9dbb8c81e", + "uuid": "4733b0f8-ed71-445f-9774-597298f5fc93", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "PURDY REAGAN", - "timestamp": "2022-03-24" + "user": "SHIELDS BENJAMIN", + "timestamp": "2016-06-12" }, { - "uuid": "99d0769a-2541-47ec-9640-c3278b7c441f", + "uuid": "e385e7a0-8d8e-4003-9f68-970652f958aa", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "JONES BRENT", - "timestamp": "2018-05-03" + "user": "FRAMI JOHN", + "timestamp": "2021-07-23" }, { - "uuid": "8629493d-8b7a-47e1-9a74-49dee3fb1493", + "uuid": "a90eda92-4696-415d-b2a4-95f4a192abf2", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "CASSIN GENNARO", - "timestamp": "2014-11-30" - }, - { - "uuid": "ff98a3e9-04b5-40d9-8cc2-472ec9612c9a", - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "FARRELL KYLIE", - "timestamp": "2021-06-01" - }, - { - "uuid": "ac01746a-cd57-4663-89d1-fa1f50cb73d7", - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "HEATHCOTE TEAGAN", - "timestamp": "2020-06-09" - }, - { - "uuid": "a850a662-26ea-414c-b8ce-8e79ceb6c3f8", - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "MITCHELL TRAVON", - "timestamp": "2017-04-15" + "user": "MCKENZIE ANAHI", + "timestamp": "2019-02-09" }, { - "uuid": "fdd58771-cdc9-464d-8510-7541d2d7e301", + "uuid": "d4f4a17e-35f3-471e-9c7a-09d50c4cd7df", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "ZEMLAK REMINGTON", - "timestamp": "2014-03-12" - }, - { - "uuid": "adc7ee10-9950-449b-a095-f83cf429c2b0", - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "HERMANN ROYCE", - "timestamp": "2020-02-18" + "user": "KERLUKE AUGUSTINE", + "timestamp": "2022-01-11" }, { - "uuid": "0c82c0a3-4d94-43cd-ad0f-ea3b0806541a", + "uuid": "224bff31-f9f0-43ee-b6ff-b1f0fc21d1cb", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "SWANIAWSKI ALISON", - "timestamp": "2020-02-22" - }, - { - "uuid": "8c09a0c2-81ee-4680-9495-8413c89aa573", - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "SMITHAM TAUREAN", - "timestamp": "2023-04-24" + "user": "QUITZON NOVA", + "timestamp": "2014-04-25" } ], "associatedSites": [ { - "uuid": "db3eeefb-8991-46fc-b119-65a4d09eff0a", - "dateNoted": "2022-07-23", + "uuid": "083606ef-6cba-4f5d-b87b-4f454baec109", + "dateNoted": "2022-06-26", "notes": "", - "parcelID": "16037", - "siteID": "16026", - "siteRegistry": true + "parcelID": "15528", + "siteID": "18600", + "siteRegistry": false } ] }, { - "uuid": "5e793a20-8b44-413c-bef6-b3ce3f654f4e", - "siteID": 20928, - "address": "2682 Mertie Pines", - "latitude": 55.7802, - "longitude": -130.4511, - "lastUpdated": "2022-05-14", - "city": "Ankundingmouth", + "uuid": "807c0ff1-26ba-4ed8-9407-4d7e04a8cbbd", + "siteID": 20744, + "address": "74703 Adrian Ways", + "latitude": 55.8783, + "longitude": -122.668, + "lastUpdated": "2016-08-18", + "city": "Fort Hazelberg", "region": "Vancouver Island/Coast", - "victoriaFile": "26250-20/3038", + "victoriaFile": "26250-20/19421", "regionalFile": "N/A", "parcelIDs": [ - 440867, - 6752404, - 6143161, - 2813916, - 6682046 + 5301057, + 2154240, + 2162397, + 8866946, + 2448923 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "b0aef482-e183-480f-8dca-51e3e5ce5895", - "createdAt": "2015-03-30", - "completed": "2016-03-22", - "initiated": "2023-06-18", - "ministryContact": "EFFERTZ EMMANUELLE", + "uuid": "735dd74d-84c6-430c-9cdf-7da19c60d50e", + "createdAt": "2017-02-01", + "completed": "2022-03-14", + "initiated": "2018-01-08", + "ministryContact": "BECHTELAR LOUIE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -27387,72 +31720,38 @@ ], "notationParticipants": [ { - "uuid": "67314100-ae1d-427c-8838-a03077ac7442", + "uuid": "f5305f92-42dc-4d30-b0e7-775370e1ccc0", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "uuid": "5287252f-25a3-4ecf-a367-a4cbebac81be", - "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true }, { - "uuid": "6d4e2972-7222-45a3-a26a-fcf6967d720a", + "uuid": "d24f6b06-b774-440d-91fe-17d7b56698ae", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "uuid": "ca22b127-8591-4204-a541-d50660403af8", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - } - ], - "siteRegistry": true - }, - { - "uuid": "6b12b3fe-96ba-4594-8b7b-4068949405e4", - "createdAt": "2020-01-21", - "completed": "2020-09-10", - "initiated": "2015-09-25", - "ministryContact": "VANDERVORT THEODORE", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "uuid": "0b93eff5-6c30-4943-b6d7-5c7d6497fce2", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", "siteRegistry": true }, { - "uuid": "f43a631c-9210-4012-8040-767eeff463f0", + "uuid": "a5cfc8b2-4d8f-4130-9d95-8cc1c8111dd5", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "c54ff134-6be9-4d1f-97d8-4d44d1913ec7", + "uuid": "fe3d835f-48a6-4510-8b3f-7fd4ff97c8ee", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "4c6f9a82-ae73-4fdb-90c2-bb5f58fe4cf7", - "createdAt": "2021-01-29", - "completed": "2015-11-22", - "initiated": "2015-05-23", - "ministryContact": "CARTER KENNEDY", + "uuid": "69ed3803-9320-41eb-81cb-289c9fa02388", + "createdAt": "2017-12-15", + "completed": "2020-12-21", + "initiated": "2014-10-30", + "ministryContact": "SCHMELER GENOVEVA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -27461,78 +31760,44 @@ ], "notationParticipants": [ { - "uuid": "586343c1-0388-4acb-baaf-e02542def69d", + "uuid": "d4b8fb78-ae7f-4e88-8f02-502aacef7901", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "185d454e-30e0-4fbd-b151-6de2c8131d5d", + "uuid": "b5f96952-b58b-4300-8ca6-8758f946d83d", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "49d138b2-ed4a-48d2-8441-69de0ab1c1de", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - } - ], - "siteRegistry": true - }, - { - "uuid": "5a741ec9-5ed0-4bbd-8a9c-9c5af14f0ac7", - "createdAt": "2022-12-08", - "completed": "2015-12-16", - "initiated": "2017-12-03", - "ministryContact": "HESSEL DEMETRIS", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "uuid": "2aeed063-3a65-4b0b-89a6-cd70a530845f", + "uuid": "5ea7da58-58eb-44a0-856f-9c26ccc53a8f", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "717d718c-d2ed-4095-b77e-3f23ec75c5d5", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "uuid": "ca0cbc06-7b31-4a3f-800e-00f5617dfbca", + "uuid": "e2c1de63-f083-4db8-93e8-892c3c9275bf", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "uuid": "f0e9f2ac-0f2e-442f-af4e-65c623dc6741", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", "siteRegistry": false }, { - "uuid": "3448b638-92a4-4a35-89b3-70316c96c122", + "uuid": "b4f88ddc-9f58-4410-bbff-120cd1af87ea", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false + "role": "REQUESTED BY", + "siteRegistry": true } ], "siteRegistry": true }, { - "uuid": "07d4a29e-36da-414e-9056-ebb37723941f", - "createdAt": "2023-08-30", - "completed": "2017-08-13", - "initiated": "2022-05-20", - "ministryContact": "STEUBER RODRIGO", + "uuid": "0e95b09d-a6a9-4e2c-aae7-046a718904d4", + "createdAt": "2016-12-23", + "completed": "2020-02-19", + "initiated": "2015-04-27", + "ministryContact": "PFEFFER JAQUELIN", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -27541,34 +31806,16 @@ ], "notationParticipants": [ { - "uuid": "865e0df7-8c01-453d-b2e1-063b3864f110", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "uuid": "d654e35a-1b61-4c10-aecd-c488f85059a7", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "uuid": "96c22353-b851-4eb7-8cd6-7442d52e66ce", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "uuid": "3b2f2d9d-196a-46fe-947c-4bf82630e72a", + "uuid": "72ba78df-ab64-4a1e-91b2-379179a754d6", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "ebe7924e-b23a-4f1a-99e7-222c8da80919", - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "6da4b63a-5ffb-4737-ae7d-e885ddd3d6ae", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true } ], "siteRegistry": true @@ -27576,10 +31823,10 @@ ], "participants": [ { - "uuid": "98a66c43-0fc6-461e-9a17-eb917a3d3fdd", + "uuid": "7e63bde6-e410-4d87-b7f3-f0e868c0af31", "name": "IPSUM", - "endDate": "2020-04-10", - "startDate": "2015-04-10", + "endDate": "2018-06-21", + "startDate": "2018-05-24", "notes": "", "roles": [ "EMPLOYEE" @@ -27587,43 +31834,43 @@ "siteRegistry": false }, { - "uuid": "250f0bf7-d552-47c0-9558-bf06565aea9e", - "name": "AMET, DOLOR SIT", - "endDate": "2018-08-14", - "startDate": "2022-04-07", + "uuid": "70e9e474-7b4d-42d8-9602-82a51b21cc5f", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2019-03-20", + "startDate": "2017-09-18", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "52e32466-5976-4479-81e1-ccaecfed80ab", + "uuid": "60c407b2-020b-4f82-8f2c-e7abc8ffa709", "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2023-07-13", - "startDate": "2019-03-22", + "endDate": "2023-05-07", + "startDate": "2023-07-09", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "e4ddda2c-d33e-45ed-9a26-ca47c20b0e43", - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2019-12-07", - "startDate": "2014-03-22", + "uuid": "943b040e-ede3-42a0-95ed-760346c31f00", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2016-05-25", + "startDate": "2017-02-10", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": true }, { - "uuid": "87825cb5-6293-4e57-8fa5-869c2e360a36", + "uuid": "9fa8f58c-33fe-47ba-9ef2-2a4807063ba1", "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2018-06-25", - "startDate": "2020-09-16", + "endDate": "2015-07-26", + "startDate": "2015-03-25", "notes": "", "roles": [ "EMPLOYEE" @@ -27631,90 +31878,183 @@ "siteRegistry": false } ], + "documents": [ + { + "uuid": "11daea8d-689e-4769-ac37-56ed20b261db", + "siteRegistry": true, + "documentDate": "2018-04-06", + "receivedDate": "2018-01-29", + "uploadedDate": "2016-10-12", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "9a00b813-ed54-426d-ac8c-c003a2680195", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "f1fc368a-6053-43fd-b614-de7822cea12a", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": true, + "role": "AUTHOR" + } + ] + }, + { + "uuid": "c7fe867f-8a16-426d-ad86-f79ce1f40ffb", + "siteRegistry": true, + "documentDate": "2015-05-31", + "receivedDate": "2013-12-22", + "uploadedDate": "2018-01-19", + "title": "Summary of Site Conditions, 1537 W 41st Avenue, Vancouver", + "participants": [ + { + "uuid": "1f7f96a8-5585-4599-8e2d-dbb2298fe977", + "name": "IPSUM", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "c2a328f4-e0fe-406a-9355-aebb67d8e6d1", + "name": "AMET, DOLOR SIT", + "siteRegistry": true, + "role": "AUTHOR" + } + ] + }, + { + "uuid": "4b58bc0b-4b8e-46fe-9bb3-a3b71de6b17c", + "siteRegistry": true, + "documentDate": "2022-07-02", + "receivedDate": "2015-09-21", + "uploadedDate": "2022-07-23", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "ab2e6908-31e9-4d86-b986-24e7a1158118", + "name": "IPSUM", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "56ba3994-982d-41da-868c-5dc0aae2d43c", + "name": "AMET, DOLOR SIT", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "8ff8458f-1988-49fa-9c30-e452fae0beee", + "name": "IPSUM", + "siteRegistry": true, + "role": "AUTHOR" + } + ] + }, + { + "uuid": "b4d56e68-ab04-4e48-b75e-bcc9ecd87f61", + "siteRegistry": true, + "documentDate": "2017-01-10", + "receivedDate": "2018-02-28", + "uploadedDate": "2013-12-14", + "title": "Preliminary Site Investigation, Detailed Site Investigation and Remedial Plan for the Management Area adjacent to the Shell Site at 1503 West 41st Ave", + "participants": [ + { + "uuid": "03bff11f-8291-413c-9c7d-f9812fa8bd3d", + "name": "AMET, DOLOR SIT", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "e1a995bb-96bc-4ba5-9442-aabb47b73d93", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": false, + "role": "AUTHOR" + } + ] + } + ], "suspectLandUses": [ { - "uuid": "272a470b-6593-4958-aba1-4752ec03af8a", + "uuid": "032eff12-db86-4164-856e-348a111e6557", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-06-21 (described on Site Profile dated 2016-06-21)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "notes": "INSERTED FOR SITE PROFILE DATED 2015-04-01 (described on Site Profile dated 2015-04-01)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "uuid": "f18ef5f5-2716-4246-9d49-0e227a160fc8", + "uuid": "f171d238-94d7-4bd5-999a-a8dccb23aad6", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-11-02 (described on Site Profile dated 2021-11-02)", + "notes": "INSERTED FOR SITE PROFILE DATED 2019-03-18 (described on Site Profile dated 2019-03-18)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "uuid": "7f7ea9e8-5a28-4b0c-a4a3-614acea96e0c", + "uuid": "49272240-b50d-4a83-9c07-d01cc8ebc4fc", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-05-02 (described on Site Profile dated 2019-05-02)", + "notes": "INSERTED FOR SITE PROFILE DATED 2020-06-15 (described on Site Profile dated 2020-06-15)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "uuid": "982b1a1b-014a-45e6-b00a-50d111237add", - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-05-30 (described on Site Profile dated 2019-05-30)", + "uuid": "f3637627-4c46-4cab-8a87-017c7639fdce", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2014-11-10 (described on Site Profile dated 2014-11-10)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], "parcelDescriptions": [ { - "uuid": "b5899ae6-d549-4be7-92b5-a545ee58e3da", - "siteRegistry": false, - "dateNoted": "2018-01-01", - "parcelID": "20823", - "crownLandUsePIN": "15619", - "crownLandFileNumber": "17895", - "landDescription": "LOT 4 OF LOT 4 BLOCK 4 DISTRICT LOT 5 PLAN 4468" - }, - { - "uuid": "01458248-77df-4c8c-9123-a87941c7edef", + "uuid": "6330b1e5-af80-4856-921b-2bc4c09b3cf1", "siteRegistry": false, - "dateNoted": "2017-02-13", - "parcelID": "16809", - "crownLandUsePIN": "15317", - "crownLandFileNumber": "17889", - "landDescription": "LOT 4 OF LOT 5 BLOCK 3 DISTRICT LOT 2 PLAN 6245" + "dateNoted": "2022-08-01", + "parcelID": "19580", + "crownLandUsePIN": "16085", + "crownLandFileNumber": "18107", + "landDescription": "LOT 3 OF LOT 4 BLOCK 4 DISTRICT LOT 3 PLAN 3700" }, { - "uuid": "8aebfb04-dfcf-4c2a-aa68-b56438a11a0f", + "uuid": "89b9cb2e-fbcc-43a5-b0b0-a9fdd1757f5c", "siteRegistry": true, - "dateNoted": "2023-01-19", - "parcelID": "17207", - "crownLandUsePIN": "20462", - "crownLandFileNumber": "15695", - "landDescription": "LOT 2 OF LOT 2 BLOCK 2 DISTRICT LOT 5 PLAN 9664" + "dateNoted": "2020-05-15", + "parcelID": "15653", + "crownLandUsePIN": "16931", + "crownLandFileNumber": "17894", + "landDescription": "LOT 2 OF LOT 1 BLOCK 2 DISTRICT LOT 4 PLAN 7241" } ], "siteDisclosures": [ { - "uuid": "61d97cfb-719c-4cbd-8bda-09099c04bfda", - "siteRegistry": true, - "dateReceived": "2020-11-27", - "dateCompleted": "2021-08-20", - "dateEntered": "2022-03-04", - "dateRegistrar": "2020-11-23", - "dateLocalAuthorityReceived": "2015-11-11", - "summary": "Accusamus labore voluptas illum mollitia explicabo non.", - "informationUsed": "Nemo consectetur voluptas perspiciatis.\nOfficiis molestias in laborum suscipit odit inventore.\nCorporis inventore atque iste alias iste maiores sint qui.\nAb aliquid laboriosam ducimus cumque est perspiciatis repellat.\nVitae provident explicabo eum.", - "pastOrPresentOrders": "Itaque mollitia sequi quas placeat perspiciatis.", + "uuid": "369f561e-fc8c-431f-b82c-bb212bf6fc31", + "siteRegistry": false, + "dateReceived": "2020-05-08", + "dateCompleted": "2023-05-12", + "dateEntered": "2017-10-22", + "dateRegistrar": "2021-05-04", + "dateLocalAuthorityReceived": "2014-11-29", + "summary": "Ratione suscipit vel doloremque.", + "informationUsed": "Laboriosam quas deserunt illo perferendis nemo.\nError accusantium reiciendis unde eveniet.\nAccusantium minus tempore deleniti recusandae sequi libero dicta eaque.", + "pastOrPresentOrders": "Perspiciatis aliquam iure incidunt atque fuga.\nAliquid inventore explicabo suscipit.\nIllum non molestias quibusdam quas dolores accusantium labore ad.", "commercialAndIndustrialPurposes": [ { - "uuid": "1a54db57-608a-41a7-b312-c4f95059b9fc", + "uuid": "11bc8608-2e0a-45d3-8bba-66aef39cd0b2", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false }, { - "uuid": "63817fa8-d64e-4aa1-ae71-38ee7f640796", + "uuid": "8ff35b7f-435f-4e59-a81b-93ef0739ae02", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "uuid": "08b0f7e4-d772-41e8-92d6-96d0fe6b2956", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false }, { - "uuid": "6c58ba57-98be-4ce5-b27e-4a25389aff4d", + "uuid": "5de018f2-b783-4b51-9e99-95672f067f13", "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false } ] @@ -27722,114 +32062,107 @@ ], "activityLog": [ { - "uuid": "9abd8475-b637-4136-9740-cce58e0c7057", + "uuid": "2b601781-811f-4e71-a3fa-c6aa319255eb", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "HANE JULIANNE", - "timestamp": "2020-02-25" - }, - { - "uuid": "5a8a0515-0c8b-4761-bafc-7f08b8c95705", - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "HUELS RODERICK", - "timestamp": "2019-09-14" + "user": "KERLUKE VINCENT", + "timestamp": "2019-08-06" }, { - "uuid": "16d69c9f-952f-4f67-96a0-35477073bfc2", + "uuid": "756d51d0-14f4-4e3d-969c-ade5b4bf33c7", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "SCHNEIDER HECTOR", - "timestamp": "2017-09-03" + "user": "FEENEY BRENDAN", + "timestamp": "2017-04-26" }, { - "uuid": "70db6930-6417-4b97-9aac-57df01f8fd0d", - "siteRegistry": false, + "uuid": "9fe39ae6-c690-4054-8b37-1ae8a684e1a0", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "MURAZIK KAYLEIGH", - "timestamp": "2014-06-09" + "user": "OSINSKI CLETUS", + "timestamp": "2016-08-10" }, { - "uuid": "ecf45c37-deab-4ff6-9a09-b6cdc10cf827", + "uuid": "d6ba6be0-2676-47fb-9c33-700117b1b5c7", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "JOHNS PRICE", - "timestamp": "2015-03-24" + "user": "REILLY RYLEIGH", + "timestamp": "2020-12-04" }, { - "uuid": "27a804de-f9d3-4e23-8b2a-7c9153bf51e6", - "siteRegistry": true, + "uuid": "f7ed157e-3bcf-46ae-ba3e-f7ef99d4bea5", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "SWIFT VICKIE", - "timestamp": "2018-12-16" + "user": "KUHIC PEGGIE", + "timestamp": "2018-03-21" }, { - "uuid": "4242fb21-2dd9-457f-8ab6-1a62245832c8", + "uuid": "7a7dbd8a-7eaf-406d-959b-f9e73ffd3ecd", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "KOVACEK-ABSHIRE TIMMY", - "timestamp": "2018-08-29" + "user": "MCLAUGHLIN SONYA", + "timestamp": "2022-04-15" }, { - "uuid": "dbd5a0ef-5a70-41bb-8bc5-3a8351f78409", + "uuid": "db6d3978-7447-441d-80f2-880e0ef18c37", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "PREDOVIC JOAQUIN", - "timestamp": "2020-03-27" + "user": "KOVACEK VELLA", + "timestamp": "2015-05-26" }, { - "uuid": "8cefe392-9c65-43d7-a2d4-b35603053825", + "uuid": "d1f6bc05-b1f0-41b1-96f8-84dfba51666a", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "STARK AFTON", - "timestamp": "2023-07-13" + "user": "PARKER TANIA", + "timestamp": "2017-06-23" } ], "associatedSites": [ { - "uuid": "a22dc99a-6977-4315-84c5-9f6e085123e3", - "dateNoted": "2021-12-30", + "uuid": "54ff568c-877e-47d5-b39b-f883c1eb86fe", + "dateNoted": "2020-07-02", "notes": "", - "parcelID": "19884", - "siteID": "18724", - "siteRegistry": false + "parcelID": "19629", + "siteID": "17014", + "siteRegistry": true }, { - "uuid": "9f1a4b17-64ec-4503-bf49-80ce2b4324ce", - "dateNoted": "2016-11-29", + "uuid": "faaa1429-a800-4b7a-a03d-34a9bb9eea73", + "dateNoted": "2021-11-10", "notes": "", - "parcelID": "16361", - "siteID": "19716", - "siteRegistry": false + "parcelID": "19123", + "siteID": "15422", + "siteRegistry": true } ] }, { - "uuid": "44bedafe-2c5f-42a5-83a3-8f71351634b4", - "siteID": 15597, - "address": "766 Dietrich Heights", - "latitude": 53.1411, - "longitude": -136.6347, - "lastUpdated": "2021-06-17", - "city": "Thompsonview", - "region": "Cariboo", - "victoriaFile": "26250-20/4915", + "uuid": "528cebd6-f4b9-4324-a04c-4186380c9ad3", + "siteID": 18864, + "address": "288 Darrel Trail", + "latitude": 56.3925, + "longitude": -122.8178, + "lastUpdated": "2022-01-26", + "city": "Stefanstad", + "region": "Vancouver Island/Coast", + "victoriaFile": "26250-20/1918", "regionalFile": "N/A", "parcelIDs": [ - 705604, - 8784917, - 1873845, - 521031, - 5999248 + 163269, + 9051187, + 7885534, + 1850662, + 5070276 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "663fbcd7-1e33-4666-ae95-61769b40fbb8", - "createdAt": "2019-04-01", - "completed": "2014-09-26", - "initiated": "2020-12-22", - "ministryContact": "DUBUQUE KATHERINE", + "uuid": "19c328d6-bf80-4e0e-b0b2-e9dbae85d597", + "createdAt": "2020-07-25", + "completed": "2019-10-23", + "initiated": "2021-02-08", + "ministryContact": "BEATTY SHAUN", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -27838,38 +32171,32 @@ ], "notationParticipants": [ { - "uuid": "3ecc301a-bcab-4b6d-b757-e9dec3c70b38", - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "uuid": "932f893d-8591-49eb-83e5-29753a1980a2", + "uuid": "623d877b-82a4-43f4-8563-ae2f4129f37d", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "d8698462-4837-4417-81fc-68d2c4417f55", - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "uuid": "ab916b31-4239-4c76-be27-359167cf5136", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "df693265-40db-4ef2-adcb-30b5393080d8", - "name": "SHELL CANADA PRODUCTS", + "uuid": "4d8b2dbe-5118-43b4-afad-8da98a4e4c11", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "815d0430-6c0e-49fa-8cea-76ba47bce1a8", - "createdAt": "2020-08-08", - "completed": "2023-10-09", - "initiated": "2019-06-26", - "ministryContact": "LANGOSH ENA", + "uuid": "c41a8baa-ca9f-4a44-961b-7db547001682", + "createdAt": "2023-03-12", + "completed": "2017-10-29", + "initiated": "2022-08-11", + "ministryContact": "ANDERSON REILLY", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -27878,355 +32205,380 @@ ], "notationParticipants": [ { - "uuid": "1d3eaf18-573f-4dee-b5a6-d8e89dda543c", - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "5d1ca062-9a11-40bc-b505-e4d7f944ecd4", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "e75bf6cc-208b-4452-af50-8920636037b0", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "uuid": "a8d74cd3-1dc6-4d82-9227-6416821c0b68", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "uuid": "dc0c3661-523d-4ca9-b9af-8f7d34f8a736", + "uuid": "6137771a-9d04-4d35-9b15-9be73f014d7d", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "25d2ca16-8cc0-46f1-9524-d75cf4f71984", - "name": "SHELL CANADA PRODUCTS", + "uuid": "f2abe476-eb83-43d8-9c4e-1bd8297f61f9", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true } ], "siteRegistry": true - }, + } + ], + "participants": [ { - "uuid": "969cbc0a-58aa-4ebe-b4d0-0cebe93aca5c", - "createdAt": "2017-02-20", - "completed": "2017-02-03", - "initiated": "2015-12-11", - "ministryContact": "LEGROS ELENOR", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" + "uuid": "f3cb99ad-e19b-4432-8197-a3420446760d", + "name": "AMET, DOLOR SIT", + "endDate": "2021-03-29", + "startDate": "2019-07-25", + "notes": "", + "roles": [ + "ORGANIZATION" ], - "notationParticipants": [ + "siteRegistry": false + }, + { + "uuid": "853c695a-b824-41cf-a96e-177002795b09", + "name": "IPSUM", + "endDate": "2015-09-03", + "startDate": "2020-04-01", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "uuid": "9e0ce75e-70d6-45c1-b08a-3020dd44d18d", + "name": "IPSUM", + "endDate": "2023-02-20", + "startDate": "2016-07-14", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + } + ], + "documents": [ + { + "uuid": "d2c93b77-bf6b-43fb-8dcf-e0f16ca5e86d", + "siteRegistry": true, + "documentDate": "2017-06-15", + "receivedDate": "2023-07-28", + "uploadedDate": "2022-02-27", + "title": "Summary of Site Conditions, 1537 W 41st Avenue, Vancouver", + "participants": [ { - "uuid": "75080bf3-4ad0-4f1c-b669-b4267e5d1a89", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false + "uuid": "019536bc-3319-4b65-88df-8a65918e6583", + "name": "IPSUM", + "siteRegistry": false, + "role": "AUTHOR" }, { - "uuid": "cc0ae4aa-963d-42fa-a575-67ff1a5d8fc9", + "uuid": "cdf81531-73b3-493e-802d-be43ea2be427", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "5ea05c69-5d39-40a3-a7a7-5c3b40f35cbb", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": false, + "role": "AUTHOR" } - ], - "siteRegistry": false + ] }, { - "uuid": "1e2d00fc-eecf-46e4-8cb6-dfd97fb219f8", - "createdAt": "2016-01-05", - "completed": "2018-07-10", - "initiated": "2018-11-22", - "ministryContact": "WEHNER ROSALEE", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ + "uuid": "67b4cb83-6777-4a2d-a7ca-e3eb521b5a3b", + "siteRegistry": true, + "documentDate": "2020-05-10", + "receivedDate": "2017-04-16", + "uploadedDate": "2022-08-11", + "title": "Preliminary Site Investigation, Detailed Site Investigation and Remedial Plan for the Management Area adjacent to the Shell Site at 1503 West 41st Ave", + "participants": [ { - "uuid": "9745bd8e-7131-45de-8507-95d77ee6338f", + "uuid": "e1cb3cd3-3ad5-436a-8689-755b7b06576f", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false, + "role": "AUTHOR" }, { - "uuid": "541d6fd9-5670-44b3-9d8b-d9c19e202914", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false + "uuid": "f16afad0-4e57-4539-88ae-926b7802b1d1", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": true, + "role": "AUTHOR" }, { - "uuid": "5cb85124-2245-452e-869d-33a5be4101ff", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false + "uuid": "cf4f552a-6f1d-4b2d-8ceb-eb89ae67185d", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": false, + "role": "AUTHOR" + } + ] + }, + { + "uuid": "5afbfe6f-cef4-4573-9200-d08a58dd35c8", + "siteRegistry": false, + "documentDate": "2015-03-02", + "receivedDate": "2016-07-05", + "uploadedDate": "2020-01-11", + "title": "Summary of Site Conditions, 1537 W 41st Avenue, Vancouver", + "participants": [ + { + "uuid": "76f34b90-1061-46e0-a950-f8d207348680", + "name": "AMET, DOLOR SIT", + "siteRegistry": true, + "role": "AUTHOR" }, { - "uuid": "5672e44c-fbb5-46a0-b327-d6b9a204c2e1", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true + "uuid": "5ecc16c9-8b98-4aeb-a595-7b5f99f800da", + "name": "AMET, DOLOR SIT", + "siteRegistry": false, + "role": "AUTHOR" } - ], - "siteRegistry": false + ] }, { - "uuid": "a26f2f7d-91b6-494e-a62a-cfb251cef9c2", - "createdAt": "2018-01-31", - "completed": "2019-04-26", - "initiated": "2019-07-02", - "ministryContact": "HINTZ JOSEPHINE", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ + "uuid": "03873260-7b58-46a9-ae9a-a8f51701a72f", + "siteRegistry": true, + "documentDate": "2017-10-06", + "receivedDate": "2017-10-12", + "uploadedDate": "2018-06-15", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ { - "uuid": "163c8ddc-d8a7-4cfa-a01e-60556349019e", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true + "uuid": "e3ba6586-fa70-4e53-a272-ea5acad331f5", + "name": "IPSUM", + "siteRegistry": false, + "role": "AUTHOR" }, { - "uuid": "b1523a42-132f-464a-83b1-4da207f7b97c", + "uuid": "dcf41bc4-c137-494e-ab8a-b5e776a8472a", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "uuid": "0b17d1b3-e307-494c-adad-63e19f79ae71", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": true, + "role": "AUTHOR" } - ], - "siteRegistry": true - } - ], - "participants": [ - { - "uuid": "a341a48f-ecbd-41e0-b8ca-915a4e68dee6", - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2019-08-26", - "startDate": "2015-10-08", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": true - }, - { - "uuid": "80302a26-45a7-45cc-9619-f5d3b3757c23", - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2020-03-29", - "startDate": "2015-11-14", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": true + ] } ], "suspectLandUses": [ { - "uuid": "1d00d9d6-afa4-4a99-b8f1-3a949800aee0", + "uuid": "26ef40cf-808d-4092-8efc-490015bac8be", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-04-04 (described on Site Profile dated 2017-04-04)", + "notes": "INSERTED FOR SITE PROFILE DATED 2016-08-10 (described on Site Profile dated 2016-08-10)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "uuid": "13e8d028-7733-49c5-8af8-159f6d231b06", - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-11-18 (described on Site Profile dated 2015-11-18)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "uuid": "fdbd1d4d-ff23-436d-a452-8ec6380317ca", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2013-11-11 (described on Site Profile dated 2013-11-11)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "uuid": "1de7d666-bf1d-473f-b35d-43c0e4724fd1", - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2013-12-28 (described on Site Profile dated 2013-12-28)", + "uuid": "fb0f6e60-cf69-444d-bedd-1ba4e3ed8667", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2021-03-04 (described on Site Profile dated 2021-03-04)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], "parcelDescriptions": [ { - "uuid": "ce1bdedd-e5a3-4230-86e9-9da715a71dab", - "siteRegistry": false, - "dateNoted": "2022-06-30", - "parcelID": "20581", - "crownLandUsePIN": "18430", - "crownLandFileNumber": "16893", - "landDescription": "LOT 2 OF LOT 5 BLOCK 3 DISTRICT LOT 3 PLAN 5714" - }, - { - "uuid": "d2d06e8e-4f9e-42a9-bfda-81b74c08eb74", + "uuid": "cdccc17b-a1fd-4362-bcd8-1b416dbf96e7", "siteRegistry": false, - "dateNoted": "2023-08-15", - "parcelID": "16890", - "crownLandUsePIN": "20868", - "crownLandFileNumber": "19124", - "landDescription": "LOT 3 OF LOT 4 BLOCK 4 DISTRICT LOT 4 PLAN 9287" + "dateNoted": "2014-06-04", + "parcelID": "19637", + "crownLandUsePIN": "18957", + "crownLandFileNumber": "15562", + "landDescription": "LOT 5 OF LOT 3 BLOCK 2 DISTRICT LOT 2 PLAN 5123" }, { - "uuid": "5de63052-fcf6-4416-aa0f-c00de311e021", + "uuid": "b836f222-9aba-4a77-bc5b-acca23b680d3", "siteRegistry": true, - "dateNoted": "2022-01-09", - "parcelID": "18793", - "crownLandUsePIN": "17129", - "crownLandFileNumber": "19751", - "landDescription": "LOT 5 OF LOT 1 BLOCK 2 DISTRICT LOT 1 PLAN 8514" + "dateNoted": "2017-03-04", + "parcelID": "18890", + "crownLandUsePIN": "17304", + "crownLandFileNumber": "17299", + "landDescription": "LOT 4 OF LOT 3 BLOCK 1 DISTRICT LOT 5 PLAN 3449" }, { - "uuid": "c099eed2-4813-4715-b355-b0f264981a4f", + "uuid": "c89071e2-7bac-42d8-9a45-5077e704143e", "siteRegistry": false, - "dateNoted": "2021-08-15", - "parcelID": "20530", - "crownLandUsePIN": "19329", - "crownLandFileNumber": "20265", - "landDescription": "LOT 3 OF LOT 1 BLOCK 4 DISTRICT LOT 5 PLAN 5312" + "dateNoted": "2014-08-10", + "parcelID": "16249", + "crownLandUsePIN": "20320", + "crownLandFileNumber": "16799", + "landDescription": "LOT 3 OF LOT 3 BLOCK 2 DISTRICT LOT 1 PLAN 9383" }, { - "uuid": "2a800fcf-e7e4-4a0b-a564-6b3c360113e2", + "uuid": "709bde70-5bba-4fb8-b597-cf6380475c4f", "siteRegistry": false, - "dateNoted": "2013-10-15", - "parcelID": "18905", - "crownLandUsePIN": "18348", - "crownLandFileNumber": "19017", - "landDescription": "LOT 3 OF LOT 3 BLOCK 4 DISTRICT LOT 2 PLAN 5356" + "dateNoted": "2021-08-02", + "parcelID": "19305", + "crownLandUsePIN": "17772", + "crownLandFileNumber": "16207", + "landDescription": "LOT 2 OF LOT 2 BLOCK 3 DISTRICT LOT 3 PLAN 9092" + }, + { + "uuid": "cb425249-c2c1-4477-a371-9cdf4059d41e", + "siteRegistry": true, + "dateNoted": "2017-02-20", + "parcelID": "17224", + "crownLandUsePIN": "16652", + "crownLandFileNumber": "19116", + "landDescription": "LOT 5 OF LOT 5 BLOCK 5 DISTRICT LOT 1 PLAN 8309" } ], "siteDisclosures": [ { - "uuid": "3b6b9f32-18b9-4e3a-b7a2-df381fda05e9", - "siteRegistry": false, - "dateReceived": "2023-09-10", - "dateCompleted": "2020-03-30", - "dateEntered": "2020-08-11", - "dateRegistrar": "2019-08-18", - "dateLocalAuthorityReceived": "2022-03-13", - "summary": "Nihil reprehenderit itaque laboriosam possimus consequatur ratione iure labore.", - "informationUsed": "Natus soluta nulla natus accusamus quod.\nLaudantium sunt deleniti fugit voluptatem provident mollitia cumque at animi.\nAliquam est recusandae nihil et.\nCulpa minus architecto et veniam et culpa unde.\nCorporis nesciunt illo cupiditate quam culpa soluta maiores numquam.", - "pastOrPresentOrders": "Reprehenderit ratione quisquam ipsum rem quia possimus magnam repellendus debitis.\nConsequuntur quae recusandae.\nMolestias aut sed beatae cumque reiciendis nisi.", + "uuid": "5011fd7d-2ecc-4926-b6db-e51d98b35309", + "siteRegistry": true, + "dateReceived": "2019-07-25", + "dateCompleted": "2018-06-26", + "dateEntered": "2018-10-16", + "dateRegistrar": "2018-03-01", + "dateLocalAuthorityReceived": "2016-02-04", + "summary": "Voluptate optio molestiae officiis assumenda labore error ex.", + "informationUsed": "Repellendus laudantium aspernatur quae officia nostrum harum nobis dignissimos incidunt.\nQuibusdam tempora optio aperiam tempore consequuntur eius.\nSit magni quae neque neque harum.", + "pastOrPresentOrders": "Eligendi officia quia.\nConsectetur est quaerat eos voluptates officia beatae sit.", "commercialAndIndustrialPurposes": [ { - "uuid": "b1d16251-d9ee-4965-9f87-644e62fd2987", + "uuid": "a292320d-7f60-4330-8a71-f2e5b3d57697", "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { - "uuid": "2f31a1cf-e6e4-44ec-8f3c-b9d3bc271711", + "uuid": "bcd2a3c5-ec6c-44f3-9930-a9dd4f9b61f2", "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "uuid": "6593b91d-a4ba-45f9-9289-db3a407c6e55", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "uuid": "d0425ebe-a0f9-4ccf-b07c-206f3322f02e", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true + "siteRegistry": false } ] } ], "activityLog": [ { - "uuid": "b0d69766-8086-40f1-9d30-4af3d5d240cf", + "uuid": "ee3e5dd7-6d07-4168-9682-f38607738002", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "OBERBRUNNER CARLOTTA", - "timestamp": "2015-12-30" + "user": "HESSEL BONNIE", + "timestamp": "2022-06-14" }, { - "uuid": "c6742cb9-8c29-4feb-a8eb-49d25abf1f6f", - "siteRegistry": false, + "uuid": "308ea1c6-ff8a-4b83-9c3b-65f028ba8ab6", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "KIHN BRADFORD", - "timestamp": "2015-02-16" + "user": "RAYNOR CASIMIR", + "timestamp": "2018-12-05" }, { - "uuid": "af6cc079-338b-4e12-9921-865014f1a1bc", + "uuid": "4cb7a690-94eb-4a86-9ab0-4561bb0897cf", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "MCLAUGHLIN CAITLYN", - "timestamp": "2019-03-29" + "user": "DURGAN-HUDSON OTIS", + "timestamp": "2018-10-04" }, { - "uuid": "52f798fe-c8e3-41cd-b08d-d0b32a3bccc6", + "uuid": "88cc2833-a241-44b6-982d-400a641853f2", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "HERMANN NEWELL", - "timestamp": "2020-02-04" + "user": "CROOKS CASPER", + "timestamp": "2018-04-22" }, { - "uuid": "da98bbb2-a6f6-4730-b324-5bf605f11335", + "uuid": "a74edd5a-e37c-4ef4-b41a-7be14d9fb0dd", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "MACEJKOVIC LUCY", - "timestamp": "2017-07-23" + "user": "TOWNE RHIANNA", + "timestamp": "2021-12-03" }, { - "uuid": "e4523e53-502a-4b0f-a15e-212d5c2825bf", - "siteRegistry": true, + "uuid": "fc3f6e3c-4d7f-4a9f-bb15-d8cff2377115", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "WEST ELOISE", - "timestamp": "2015-05-03" + "user": "SMITH LILIAN", + "timestamp": "2014-05-02" }, { - "uuid": "810d9ee5-8b82-4a29-8ae0-f09c25948f2c", + "uuid": "36951f25-6844-4e38-8f82-e3d725229a95", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "MACGYVER-SCHUPPE SALVADOR", - "timestamp": "2021-03-02" + "user": "BOSCO KARINA", + "timestamp": "2018-06-04" }, { - "uuid": "9896a16b-fc5c-4eb8-b00d-cecde79149b6", + "uuid": "d1b2af6c-419d-47b5-9c34-84a37658719a", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "BARROWS-KOCH JUNIOR", - "timestamp": "2023-01-29" + "user": "CARTWRIGHT WENDELL", + "timestamp": "2022-03-24" + }, + { + "uuid": "82e28cb9-df71-4fd3-9b00-916a202257f0", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "SCHROEDER ANSLEY", + "timestamp": "2015-12-31" + }, + { + "uuid": "b7933b40-88ee-40d2-9b32-8b00c56f7496", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "POLLICH KAMREN", + "timestamp": "2017-04-17" } ], "associatedSites": [ { - "uuid": "3761f13e-6401-4038-bef3-4574ec8aa37c", - "dateNoted": "2020-11-23", + "uuid": "29ab6b18-8a2b-4800-ba0f-fc4dd736dcfa", + "dateNoted": "2022-12-10", "notes": "", - "parcelID": "20489", - "siteID": "17437", - "siteRegistry": true + "parcelID": "17711", + "siteID": "17993", + "siteRegistry": false } ] }, { - "uuid": "9cf229ae-9424-4b49-906d-cfdcbff1d710", - "siteID": 17933, - "address": "18583 Kautzer Village", - "latitude": 52.4832, - "longitude": -119.1396, - "lastUpdated": "2021-10-23", - "city": "Port Abnerstad", - "region": "Mainland/Southwest", - "victoriaFile": "26250-20/4969", + "uuid": "a3236af3-3250-4cbd-b3ef-705086bfbf09", + "siteID": 19202, + "address": "856 Isabella Creek", + "latitude": 49.8749, + "longitude": -127.8779, + "lastUpdated": "2014-03-27", + "city": "St. Joseph", + "region": "Vancouver Island/Coast", + "victoriaFile": "26250-20/4197", "regionalFile": "N/A", "parcelIDs": [ - 6594520, - 1175871, - 609532, - 2378444, - 7560757 + 3753418, + 3411323, + 7286837, + 8305923, + 9988597 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "5390a8a3-2ef3-4b6b-b78f-963e98a8ea2c", - "createdAt": "2023-05-11", - "completed": "2021-08-31", - "initiated": "2018-04-10", - "ministryContact": "HOMENICK RIGOBERTO", + "uuid": "52ec9f01-f961-4032-8dca-7357f18280ae", + "createdAt": "2016-06-07", + "completed": "2022-05-14", + "initiated": "2015-04-23", + "ministryContact": "PARKER HERMINIO", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -28235,25 +32587,59 @@ ], "notationParticipants": [ { - "uuid": "908d3dad-0ce0-4b10-889e-f01572bebd9a", - "name": "SHELL CANADA PRODUCTS", + "uuid": "4ebd3cc0-64db-407e-93a0-c4e8d692c0b0", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true }, { - "uuid": "93f32827-6870-412e-8d28-86871e78f6e4", + "uuid": "e4ac5abf-048e-439a-a4f6-8f61a6a64002", "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "9dc45f28-a943-451e-9409-f18f1c1c6d0f", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "uuid": "166689ae-bca7-4d80-88d3-cd299b619128", + "createdAt": "2022-11-09", + "completed": "2016-10-29", + "initiated": "2020-07-24", + "ministryContact": "LAKIN WELLINGTON", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "uuid": "8d7785fd-710a-4a5c-ab8a-b41244a11dba", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "d4dbbe58-b13c-4a13-8652-9204514cefbe", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true }, { - "uuid": "b864ac46-3c0a-49ab-9706-feaf610435b9", + "uuid": "bc8a0bf1-c055-4ac8-ab0b-1aacbf6c56eb", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "586b6ee8-7ef0-4c43-a3c2-8bb42436bbff", + "uuid": "08baee45-0929-4ba0-ab89-502e677e4bb1", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false @@ -28262,11 +32648,11 @@ "siteRegistry": false }, { - "uuid": "bd6bd055-3352-4234-94dd-0bc82b103a0f", - "createdAt": "2016-08-24", - "completed": "2021-03-18", - "initiated": "2014-01-06", - "ministryContact": "SCHAMBERGER PAUL", + "uuid": "2b813187-fd9e-4a2e-bfa3-53fa62457a33", + "createdAt": "2017-04-10", + "completed": "2020-10-15", + "initiated": "2016-04-10", + "ministryContact": "BASHIRIAN VINNIE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -28275,33 +32661,45 @@ ], "notationParticipants": [ { - "uuid": "b1282738-fc88-4b6d-ac69-bbb05e6c56de", + "uuid": "36cfa2c0-0944-4280-a832-7739c29ed91a", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "d9238fd9-90a8-47ce-a27c-2882cc2e58d0", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true + }, + { + "uuid": "bba67ef8-b862-4168-83c8-4bf65b8a866e", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true }, { - "uuid": "d080b872-639c-45bb-8ff6-36e824cf11bb", + "uuid": "8bb9a526-4bfc-43a3-99c5-ba8de61c0023", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true }, { - "uuid": "a7887267-c30b-42a6-9e8d-c2f1803ce976", + "uuid": "f8b94790-12b3-43ae-aebe-c7146ec43503", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true } ], "participants": [ { - "uuid": "34c5f213-78f3-489c-8f8f-e14c5ac5b410", - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2016-04-24", - "startDate": "2019-04-16", + "uuid": "eebb450d-35af-4def-9523-aa22561bd949", + "name": "AMET, DOLOR SIT", + "endDate": "2023-07-30", + "startDate": "2018-05-25", "notes": "", "roles": [ "EMPLOYEE" @@ -28309,21 +32707,21 @@ "siteRegistry": false }, { - "uuid": "8eb9ba7c-55b3-4348-853a-a777bea8bca0", - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2018-01-10", - "startDate": "2018-10-09", + "uuid": "70a17d64-27f2-48ba-ac2f-6e65d1b68568", + "name": "IPSUM", + "endDate": "2022-11-26", + "startDate": "2017-08-11", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": false }, { - "uuid": "7ad48c20-088f-47e0-8ff5-be7a2d10f86a", - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2016-06-01", - "startDate": "2019-12-23", + "uuid": "4fbd61ea-e124-4846-a084-68149048ebc3", + "name": "AMET, DOLOR SIT", + "endDate": "2018-02-09", + "startDate": "2023-04-28", "notes": "", "roles": [ "EMPLOYEE" @@ -28331,123 +32729,256 @@ "siteRegistry": false }, { - "uuid": "1d1f4e0e-8cf3-4827-bcaf-1a09c970d036", + "uuid": "d544b7e0-9136-49d1-9617-833c8d92e784", "name": "IPSUM", - "endDate": "2019-07-15", - "startDate": "2020-07-20", + "endDate": "2021-07-03", + "startDate": "2019-08-16", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": true }, { - "uuid": "8ae0c072-72c3-40bd-a430-5385fcaf33df", - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2019-05-31", - "startDate": "2019-02-10", + "uuid": "24c4e5d3-d625-40d6-ba7e-14feeb298ba0", + "name": "AMET, DOLOR SIT", + "endDate": "2022-09-27", + "startDate": "2023-06-30", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": false } ], - "suspectLandUses": [ + "documents": [ { - "uuid": "eb016ded-d5e8-4068-90cc-70fb59012cb3", + "uuid": "2bb11a27-2845-4f24-8ff7-f4ec46d8f31b", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-03-04 (described on Site Profile dated 2021-03-04)", + "documentDate": "2023-05-20", + "receivedDate": "2021-04-17", + "uploadedDate": "2017-09-11", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "42f8c3a6-f55d-40c4-9ad2-e3e05c7d3cee", + "name": "AMET, DOLOR SIT", + "siteRegistry": true, + "role": "AUTHOR" + } + ] + }, + { + "uuid": "439b39a6-8993-466e-88e2-8616c8c33c01", + "siteRegistry": false, + "documentDate": "2020-09-06", + "receivedDate": "2023-04-05", + "uploadedDate": "2021-03-05", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "65f80651-5380-4fc1-9dec-cc3be315fc86", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "bdd08142-f867-4645-8816-c92c1d0d915e", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "c50906c2-e952-4041-8af1-fac9743ef1b1", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": true, + "role": "AUTHOR" + } + ] + }, + { + "uuid": "07a14ef4-6289-42af-ab56-ee38549d41ec", + "siteRegistry": true, + "documentDate": "2016-11-18", + "receivedDate": "2023-07-04", + "uploadedDate": "2022-06-22", + "title": "Summary of Site Conditions, 1537 W 41st Avenue, Vancouver", + "participants": [ + { + "uuid": "52a5a2c4-62ba-4888-847f-b4633e65a03f", + "name": "IPSUM", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "8efb5230-9276-4a32-ab32-bca55c265df6", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": false, + "role": "AUTHOR" + } + ] + }, + { + "uuid": "80a662cb-b7a9-4d16-a5de-9027db2842ae", + "siteRegistry": false, + "documentDate": "2018-04-21", + "receivedDate": "2018-10-03", + "uploadedDate": "2019-12-10", + "title": "Preliminary Site Investigation, Detailed Site Investigation and Remedial Plan for the Management Area adjacent to the Shell Site at 1503 West 41st Ave", + "participants": [ + { + "uuid": "814923a1-9e1d-470f-b5db-1a9c21d91a34", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "62a709a8-47e2-40ea-87f5-73a368875aa0", + "name": "IPSUM", + "siteRegistry": true, + "role": "AUTHOR" + } + ] + }, + { + "uuid": "2e1f2848-054f-4986-88ec-bbbb21affe4a", + "siteRegistry": false, + "documentDate": "2014-01-21", + "receivedDate": "2021-12-22", + "uploadedDate": "2017-12-15", + "title": "Summary of Site Conditions, 1537 W 41st Avenue, Vancouver", + "participants": [ + { + "uuid": "6f8d484d-0018-4ff1-ab94-43f8e97e1ee0", + "name": "AMET, DOLOR SIT", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "64a6c1ea-7b1e-426e-a08d-ba10d7174c6c", + "name": "AMET, DOLOR SIT", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "0e48818a-1e78-4ebc-b7bd-4c3342a796e5", + "name": "IPSUM", + "siteRegistry": false, + "role": "AUTHOR" + } + ] + } + ], + "suspectLandUses": [ + { + "uuid": "e975c0e5-54fd-4e53-971d-9da64df79d8b", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2023-06-11 (described on Site Profile dated 2023-06-11)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "uuid": "2ae591f0-7d14-48cc-abc2-215a61a1fcd0", + "uuid": "041592b3-dc65-4058-8905-a25a3cc740f6", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-11-28 (described on Site Profile dated 2021-11-28)", + "notes": "INSERTED FOR SITE PROFILE DATED 2020-09-24 (described on Site Profile dated 2020-09-24)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], "parcelDescriptions": [ { - "uuid": "a2e30870-fc0e-4695-9d12-4fe48a3cb50b", + "uuid": "64451856-b577-4456-9a8f-77e7f5835c36", + "siteRegistry": false, + "dateNoted": "2022-12-12", + "parcelID": "20600", + "crownLandUsePIN": "15633", + "crownLandFileNumber": "18318", + "landDescription": "LOT 1 OF LOT 2 BLOCK 1 DISTRICT LOT 5 PLAN 5894" + }, + { + "uuid": "7eb13b5b-638c-42e2-b6e3-4b525eb69128", "siteRegistry": true, - "dateNoted": "2021-02-25", - "parcelID": "18863", - "crownLandUsePIN": "17017", - "crownLandFileNumber": "19255", - "landDescription": "LOT 4 OF LOT 1 BLOCK 3 DISTRICT LOT 5 PLAN 3214" + "dateNoted": "2014-04-23", + "parcelID": "17514", + "crownLandUsePIN": "15366", + "crownLandFileNumber": "19495", + "landDescription": "LOT 4 OF LOT 2 BLOCK 5 DISTRICT LOT 3 PLAN 6099" }, { - "uuid": "6c9b4040-581c-49b0-b891-71bcdf931013", + "uuid": "3ee14abe-31cd-4ed1-9d2f-ea505447b38c", "siteRegistry": false, - "dateNoted": "2014-09-20", - "parcelID": "19803", - "crownLandUsePIN": "20180", - "crownLandFileNumber": "17484", - "landDescription": "LOT 3 OF LOT 4 BLOCK 1 DISTRICT LOT 3 PLAN 6788" + "dateNoted": "2023-09-17", + "parcelID": "20844", + "crownLandUsePIN": "15548", + "crownLandFileNumber": "20591", + "landDescription": "LOT 4 OF LOT 1 BLOCK 5 DISTRICT LOT 5 PLAN 5202" } ], "siteDisclosures": [ { - "uuid": "c7056237-6e9f-4888-ba32-3f987957c357", - "siteRegistry": false, - "dateReceived": "2020-01-21", - "dateCompleted": "2016-11-19", - "dateEntered": "2015-07-23", - "dateRegistrar": "2018-08-12", - "dateLocalAuthorityReceived": "2016-11-07", - "summary": "Accusamus facilis soluta.\nConsectetur cumque fugiat explicabo vero ipsam libero.", - "informationUsed": "Suscipit blanditiis fugiat voluptates.\nEligendi adipisci dolorem error consectetur incidunt itaque maiores.\nIpsum doloremque beatae autem mollitia neque.\nCumque perferendis facere laboriosam dolore corrupti neque iusto pariatur.\nDoloremque qui dolore reiciendis quo odio totam non odit.", - "pastOrPresentOrders": "Beatae numquam itaque doloremque vel quisquam laudantium hic.", + "uuid": "dc25cd46-6aa5-4cc9-bf50-c52d7c492dff", + "siteRegistry": true, + "dateReceived": "2013-11-23", + "dateCompleted": "2013-10-19", + "dateEntered": "2019-04-18", + "dateRegistrar": "2019-11-28", + "dateLocalAuthorityReceived": "2015-04-04", + "summary": "Eius consectetur explicabo mollitia.", + "informationUsed": "Odio sequi saepe.\nPorro magni corrupti modi facilis nisi earum ullam pariatur esse.\nCum assumenda consequatur sunt saepe iste ratione exercitationem fuga eaque.", + "pastOrPresentOrders": "Voluptatibus eos nemo sit provident harum repellat illo accusamus perferendis.\nNemo est numquam omnis aspernatur laudantium ad temporibus eveniet quis.", "commercialAndIndustrialPurposes": [ { - "uuid": "a5a45c74-a0d1-4fbb-8482-1f6db30d79b0", - "scheduleReference": "F2*", + "uuid": "700ded1e-dc0b-41cd-9475-94ac66870521", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "uuid": "4aba9fdb-d810-4c5c-86eb-1f5406c23147", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { - "uuid": "dcfa1287-f562-46c1-97b9-408d9bc8da49", + "uuid": "00fa22c4-e2e3-45ea-871f-5547f7c4d163", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false }, { - "uuid": "50695a90-80a4-4b46-a0d8-dd7520fe1959", - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true + "uuid": "9ee0e041-233e-481d-9e17-11d3e8e8bf8d", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false } ] }, { - "uuid": "a4eb1dd2-f812-4fe0-a58b-8010e29a143d", - "siteRegistry": false, - "dateReceived": "2020-10-18", - "dateCompleted": "2022-11-30", - "dateEntered": "2018-02-13", - "dateRegistrar": "2014-11-12", - "dateLocalAuthorityReceived": "2017-01-11", - "summary": "Error doloribus culpa adipisci voluptas inventore quibusdam ad minima.\nMagni expedita quasi quibusdam.\nSuscipit laborum quas sequi magni officia maxime earum.", - "informationUsed": "Perspiciatis quis minima perspiciatis ducimus recusandae distinctio maxime amet rem.\nArchitecto doloribus reprehenderit.\nPlaceat laboriosam earum adipisci.\nConsequatur reprehenderit iure excepturi commodi minus nisi cupiditate pariatur minus.", - "pastOrPresentOrders": "Possimus laboriosam sed odit magni iste eveniet.", + "uuid": "a7723236-a47b-4f25-aa88-2b4a622ce66f", + "siteRegistry": true, + "dateReceived": "2019-04-27", + "dateCompleted": "2017-08-21", + "dateEntered": "2019-05-18", + "dateRegistrar": "2016-05-02", + "dateLocalAuthorityReceived": "2018-12-17", + "summary": "Est odio perferendis quasi laborum vitae tempore nihil.\nConsequatur voluptatem unde.", + "informationUsed": "Et libero architecto architecto.\nCorrupti quidem nostrum nam beatae veniam optio asperiores quae.\nQuasi unde rem voluptatem ad repudiandae accusantium.\nMolestias necessitatibus quibusdam at et repellendus nesciunt.", + "pastOrPresentOrders": "Nam est accusantium natus dolorem tenetur repudiandae.\nDignissimos eligendi sequi ullam dolore laborum omnis a dolorem.\nA praesentium blanditiis placeat dignissimos est nobis ratione amet ex.", "commercialAndIndustrialPurposes": [ { - "uuid": "1faba96c-2982-4b79-a152-13c8376e53f0", - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "uuid": "70550130-04ab-477a-bb5c-b9d23adf321b", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { - "uuid": "ca5d6b67-8aa8-4404-a7d1-10a74de24e1e", - "scheduleReference": "F1*", + "uuid": "bdb44ec8-85fb-47a9-9199-f09ca517163a", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "543736d1-ece3-47c5-98ba-09f2ed9d14a9", + "uuid": "a8d2c92c-6924-48f6-bb4d-f4ab96317d43", "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true } ] @@ -28455,93 +32986,86 @@ ], "activityLog": [ { - "uuid": "5df92c32-66cc-416b-83bb-315fd643abcd", - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "WISOZK-CONN KRISTA", - "timestamp": "2014-02-11" - }, - { - "uuid": "661bd32e-0891-42b0-96ea-6cfacd11c3f0", + "uuid": "6cdbd39a-5b91-4e9c-aa12-6fd842a8e950", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "KOCH MACY", - "timestamp": "2016-06-12" + "user": "TREMBLAY NIKOLAS", + "timestamp": "2014-10-05" }, { - "uuid": "bb0e72a5-7af7-49cd-ba63-35adbd7ca7bb", - "siteRegistry": true, + "uuid": "49f5bfb1-c433-468f-a714-804f59b0b90a", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "HILPERT MEGANE", - "timestamp": "2020-05-08" + "user": "STOLTENBERG MCKAYLA", + "timestamp": "2023-01-24" }, { - "uuid": "ab19fc04-5e8e-4c8c-a04c-b88c0e1c97d2", + "uuid": "2c482318-4c0b-497b-877a-e4fbeeb3f11a", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "SCHMELER KASANDRA", - "timestamp": "2014-11-02" + "user": "DOYLE JOSEPH", + "timestamp": "2014-05-13" }, { - "uuid": "7c564519-f301-47c0-92d8-752641e1ae81", + "uuid": "38034134-6d3c-4648-9a45-cd3eb2cfc9e7", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "SMITH LOGAN", - "timestamp": "2023-06-11" + "user": "MOEN LARUE", + "timestamp": "2022-02-15" }, { - "uuid": "e9026f0a-4858-4bf4-937a-9d4daf791e23", - "siteRegistry": true, + "uuid": "bcbb3702-8c55-4cdd-ad5e-debe1cd8751b", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "KUNDE MAIDA", - "timestamp": "2017-03-30" + "user": "KIRLIN PRICE", + "timestamp": "2018-07-19" } ], "associatedSites": [ { - "uuid": "b8fee2f7-940e-4e9d-bc17-7f8a230e6ebe", - "dateNoted": "2015-11-02", + "uuid": "07e852e6-ee55-4296-82bf-744cd77f817a", + "dateNoted": "2017-05-19", "notes": "", - "parcelID": "15490", - "siteID": "16277", - "siteRegistry": true + "parcelID": "16871", + "siteID": "18811", + "siteRegistry": false }, { - "uuid": "5f3d1e36-d2ec-4690-9f1d-3c40fe295e17", - "dateNoted": "2015-03-02", + "uuid": "5f891fa4-24b7-4141-b999-62b57141f890", + "dateNoted": "2013-11-14", "notes": "", - "parcelID": "16336", - "siteID": "17528", - "siteRegistry": false + "parcelID": "15754", + "siteID": "19056", + "siteRegistry": true } ] }, { - "uuid": "a45774bc-0a6d-4eed-bd98-497db154bcf3", - "siteID": 17913, - "address": "4629 Hertha Spurs", - "latitude": 51.7247, - "longitude": -137.2316, - "lastUpdated": "2017-12-19", - "city": "North Bofurt", - "region": "Thompson-Okanagan", - "victoriaFile": "26250-20/3314", + "uuid": "88e73634-6f1a-4913-bd47-ab765c8b4229", + "siteID": 18406, + "address": "20566 Littel Trafficway", + "latitude": 50.5454, + "longitude": -135.3403, + "lastUpdated": "2023-09-16", + "city": "Rapid City", + "region": "Mainland/Southwest", + "victoriaFile": "26250-20/8457", "regionalFile": "N/A", "parcelIDs": [ - 4820376, - 4418710, - 8641269, - 4582289, - 1941058 + 673901, + 6731216, + 3266622, + 5114434, + 3793122 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "09dafddb-67ae-4a9b-a8b7-88dfca4880e5", - "createdAt": "2018-05-18", - "completed": "2016-12-12", - "initiated": "2019-11-23", - "ministryContact": "GLOVER KELSIE", + "uuid": "5d193a25-b2dc-4e78-a8b4-500392d1b79b", + "createdAt": "2020-11-22", + "completed": "2014-10-06", + "initiated": "2022-10-14", + "ministryContact": "UPTON-DOUGLAS BERNHARD", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -28550,38 +33074,94 @@ ], "notationParticipants": [ { - "uuid": "3c6f3ef2-6046-4a86-ac46-16410c5128e3", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "uuid": "6ffe3bc5-43f6-4332-98c3-1da93c5585e1", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "3485656f-dd36-48ca-b999-8e63b7ad5910", + "uuid": "c470dece-5313-4111-b00e-a0ad43182446", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "uuid": "16109bb0-1612-480f-8e69-95c075e86bae", + "createdAt": "2020-07-15", + "completed": "2014-03-19", + "initiated": "2016-02-29", + "ministryContact": "KOSS ERIKA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "uuid": "69727ac3-b17b-46d4-bd81-a30fdf787f40", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "uuid": "5aa42be5-3f28-45ee-8364-d97a610955e0", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "98f9ac1d-251e-46da-a6fc-e97727939c8c", + "uuid": "70d816b1-c1e9-4617-ab94-f70962c90225", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "uuid": "a0acb2f0-6cc3-4022-9cb6-1b11ae9f8da3", + "createdAt": "2014-09-29", + "completed": "2014-09-19", + "initiated": "2017-11-25", + "ministryContact": "JACOBI JULIUS", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "uuid": "97b28d62-371b-41dc-95cc-29e8355cf5dd", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true + }, + { + "uuid": "69502dcb-8388-4308-9f25-7f3b3e61de9e", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true }, { - "uuid": "c0b53fa3-6f21-4063-9722-2bcdc08762f8", + "uuid": "d7de3d25-b9aa-4391-9a71-ba3374eb38f4", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "7a8b7599-ad0d-4778-8ce1-afef1cbc4da2", - "createdAt": "2023-04-17", - "completed": "2022-10-31", - "initiated": "2013-10-28", - "ministryContact": "WARD HELENE", + "uuid": "7301029a-ad1f-48e7-a7b1-62a5f58a41d1", + "createdAt": "2014-12-31", + "completed": "2023-08-12", + "initiated": "2022-12-11", + "ministryContact": "HALVORSON KAYLAH", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -28590,26 +33170,32 @@ ], "notationParticipants": [ { - "uuid": "46450bcf-d28f-48e3-ada8-6615afd40ea8", - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "7f71c280-d2ed-4de6-8a1f-6a24a5651899", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "a1602278-1e83-4a66-a360-f6405878a832", - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "d1a7edd5-08df-4831-9c09-d33d54507713", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "7ed34386-9622-4574-a3c8-0b42fe19f48d", + "uuid": "8b8b056a-a819-4b6c-93ed-941da97c4dfd", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "57acf39e-f84b-4206-8650-9ae32011e399", + "uuid": "be36b36e-f363-481f-bc86-924fc6485b64", "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "8be9faf1-7271-403c-ab69-ee3e82f7da1d", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false } @@ -28617,11 +33203,11 @@ "siteRegistry": false }, { - "uuid": "442e3528-e100-4e39-b698-5994b8e10cf6", - "createdAt": "2016-03-31", - "completed": "2018-10-14", - "initiated": "2021-12-10", - "ministryContact": "WEHNER KIRK", + "uuid": "424b5e64-1f53-4988-b55a-84a66227c7d8", + "createdAt": "2022-10-27", + "completed": "2022-07-30", + "initiated": "2022-11-13", + "ministryContact": "KEELING MURL", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -28630,25 +33216,19 @@ ], "notationParticipants": [ { - "uuid": "c03a39bf-21a4-44fa-a622-2a002a6f90e7", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "uuid": "9b8717ce-7b56-403e-93eb-74f57ed049e8", + "uuid": "b0bed8f9-9f71-484d-8fc3-73cf7326a95a", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "9de6c2a5-0c5a-4007-afb5-a79cc80dc4ce", + "uuid": "063804c7-d3ba-4f29-9fcc-f73ac067b638", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "863d7bf6-af38-492b-a5f8-c484dcd8e692", + "uuid": "46a1c954-7d30-4db4-af49-abb7cb57451b", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false @@ -28659,252 +33239,319 @@ ], "participants": [ { - "uuid": "31a0d1c2-c3cb-4d4d-820f-379f4f0092bc", + "uuid": "0c38f0c6-53c5-4073-a766-4b7c236fc9ef", "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2018-09-03", - "startDate": "2019-03-02", + "endDate": "2014-12-18", + "startDate": "2016-08-01", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": true - }, - { - "uuid": "d93e0876-b6d8-4d85-973f-c1e1a5b9f4d2", - "name": "SHELL CANADA PRODUCTS", - "endDate": "2018-06-07", - "startDate": "2016-04-19", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": true - }, - { - "uuid": "f0f03e07-a260-4b6b-af03-c4e2ed71881b", - "name": "SHELL CANADA PRODUCTS", - "endDate": "2021-01-18", - "startDate": "2018-05-28", - "notes": "", - "roles": [ - "EMPLOYEE" - ], "siteRegistry": false }, { - "uuid": "3e634b91-94f1-4e3b-85bc-48aa5d7d1150", + "uuid": "75b73859-d400-495a-bf3b-6391a7d313c4", "name": "IPSUM", - "endDate": "2017-08-15", - "startDate": "2014-10-08", + "endDate": "2020-10-21", + "startDate": "2013-11-02", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": false + } + ], + "documents": [ + { + "uuid": "981dfb22-40db-4de4-b973-49a5cf05723a", + "siteRegistry": false, + "documentDate": "2014-03-10", + "receivedDate": "2015-07-27", + "uploadedDate": "2016-12-19", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "cbe1d801-1140-437f-bc65-3e4b96057909", + "name": "IPSUM", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "0091736e-b0e4-497a-861e-118308d39f3d", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "fd992071-63bd-470e-aa19-b42689215eb2", + "name": "AMET, DOLOR SIT", + "siteRegistry": true, + "role": "AUTHOR" + } + ] }, { - "uuid": "e801e9a7-66c4-467c-b962-25356b08fb95", - "name": "AMET, DOLOR SIT", - "endDate": "2016-06-24", - "startDate": "2015-09-28", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": false + "uuid": "7a0fc179-3344-48b1-97a8-53a50291617c", + "siteRegistry": true, + "documentDate": "2018-07-20", + "receivedDate": "2014-07-03", + "uploadedDate": "2021-07-29", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "9314dce6-4fca-4149-ad85-65887d3f866b", + "name": "IPSUM", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "2f0654d7-9276-4d92-975e-9e56d1c8b9b9", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "20c7c91d-bef3-44db-b87b-80807fe7ef52", + "name": "IPSUM", + "siteRegistry": true, + "role": "AUTHOR" + } + ] + }, + { + "uuid": "2cca1267-a09e-48ec-9761-c6c5a524da7d", + "siteRegistry": false, + "documentDate": "2021-07-13", + "receivedDate": "2023-09-07", + "uploadedDate": "2020-07-18", + "title": "Preliminary Site Investigation, Detailed Site Investigation and Remedial Plan for the Management Area adjacent to the Shell Site at 1503 West 41st Ave", + "participants": [ + { + "uuid": "d28d5c75-bd7f-4db7-90ff-e45eaec0560a", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "f51eec34-9165-4d65-abdf-557210c7082d", + "name": "IPSUM", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "51eec048-ed1b-4415-8d48-e36b73c34499", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": true, + "role": "AUTHOR" + } + ] } ], "suspectLandUses": [ { - "uuid": "f2cdd40b-128f-476f-bcd1-0664e13ebfc9", + "uuid": "73ecb893-aac8-450c-8050-5c8a4fa7d8a1", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-06-30 (described on Site Profile dated 2015-06-30)", + "notes": "INSERTED FOR SITE PROFILE DATED 2023-02-15 (described on Site Profile dated 2023-02-15)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "uuid": "8bf27281-708a-4db5-ab76-8da6f7c42a1d", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2016-04-03 (described on Site Profile dated 2016-04-03)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "uuid": "bf32f7ef-657f-4f97-a641-3c528d41a7d8", - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-03-08 (described on Site Profile dated 2018-03-08)", + "uuid": "01217caa-e303-47dc-ac78-cc0611f8e2de", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2021-10-11 (described on Site Profile dated 2021-10-11)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "uuid": "2bb93c0d-1050-4a8c-a89a-2de396979585", + "uuid": "fd4ae2cd-e52b-44ce-ac3c-bd06f1a9f841", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-08-06 (described on Site Profile dated 2019-08-06)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "notes": "INSERTED FOR SITE PROFILE DATED 2020-03-28 (described on Site Profile dated 2020-03-28)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], "parcelDescriptions": [ { - "uuid": "baf44e36-7184-45ba-b234-d8b134f5dcf8", - "siteRegistry": false, - "dateNoted": "2014-01-14", - "parcelID": "15870", - "crownLandUsePIN": "16647", - "crownLandFileNumber": "20660", - "landDescription": "LOT 1 OF LOT 5 BLOCK 4 DISTRICT LOT 2 PLAN 3684" + "uuid": "48c64258-5301-43e2-9359-f99a0c6233f1", + "siteRegistry": true, + "dateNoted": "2023-04-03", + "parcelID": "17539", + "crownLandUsePIN": "16409", + "crownLandFileNumber": "20021", + "landDescription": "LOT 1 OF LOT 5 BLOCK 3 DISTRICT LOT 3 PLAN 4448" }, { - "uuid": "2338540e-7c10-4728-993e-9b60abb4af6a", + "uuid": "c6ccffec-6846-4c64-b076-4138c6fd0294", "siteRegistry": true, - "dateNoted": "2016-08-06", - "parcelID": "17053", - "crownLandUsePIN": "16194", - "crownLandFileNumber": "15538", - "landDescription": "LOT 5 OF LOT 1 BLOCK 1 DISTRICT LOT 5 PLAN 5179" + "dateNoted": "2021-05-28", + "parcelID": "19755", + "crownLandUsePIN": "15822", + "crownLandFileNumber": "19754", + "landDescription": "LOT 4 OF LOT 4 BLOCK 5 DISTRICT LOT 4 PLAN 8371" }, { - "uuid": "a9c462c0-e882-4bac-9d22-442607732e2a", + "uuid": "a8680070-d032-47df-8411-8463e6162ab0", "siteRegistry": true, - "dateNoted": "2013-11-18", - "parcelID": "20927", - "crownLandUsePIN": "19147", - "crownLandFileNumber": "17611", - "landDescription": "LOT 2 OF LOT 4 BLOCK 4 DISTRICT LOT 5 PLAN 3995" + "dateNoted": "2021-06-02", + "parcelID": "20824", + "crownLandUsePIN": "16655", + "crownLandFileNumber": "17096", + "landDescription": "LOT 5 OF LOT 5 BLOCK 2 DISTRICT LOT 2 PLAN 7185" } ], "siteDisclosures": [ { - "uuid": "414a6881-7026-414b-99d5-d1863360821f", - "siteRegistry": false, - "dateReceived": "2014-01-18", - "dateCompleted": "2018-02-21", - "dateEntered": "2018-04-14", - "dateRegistrar": "2017-12-11", - "dateLocalAuthorityReceived": "2015-03-05", - "summary": "Minima harum dolores veniam voluptas dignissimos asperiores quos.\nLaborum dolor quod nihil consectetur vitae fugit cumque amet.\nTenetur dolorem quis nobis deleniti.", - "informationUsed": "Voluptatum modi ab molestias error quibusdam magni odit.\nRatione facilis iure iure qui.\nRepellendus recusandae amet pariatur accusantium.", - "pastOrPresentOrders": "Animi at expedita eligendi dignissimos tempora vero.\nQuod unde sed commodi in accusamus eaque eum.\nQuisquam aperiam nemo error culpa voluptatum repudiandae voluptatem quaerat.", + "uuid": "df02c17b-d5f5-44e7-9d9e-dbfca2398a9e", + "siteRegistry": true, + "dateReceived": "2015-10-30", + "dateCompleted": "2017-09-14", + "dateEntered": "2017-03-17", + "dateRegistrar": "2023-03-02", + "dateLocalAuthorityReceived": "2018-02-12", + "summary": "Impedit itaque et.\nDolore asperiores explicabo molestias.", + "informationUsed": "Delectus quis tempora porro suscipit blanditiis ipsa.\nNeque corrupti quo dignissimos eius.\nRerum laborum voluptate ea est minima ab beatae.\nVoluptatibus at animi iure temporibus.\nPerspiciatis tempore dolorem quaerat voluptas totam.", + "pastOrPresentOrders": "Tempora mollitia quos animi neque repudiandae.\nSapiente laborum eius at earum.\nQuidem molestias beatae maxime assumenda repellendus ipsum earum eveniet quidem.", "commercialAndIndustrialPurposes": [ { - "uuid": "a85c8fe6-263a-4b03-a209-3d854429f79e", + "uuid": "795dc54c-a866-4852-9449-80f0758083d2", "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { - "uuid": "480b062f-b8ba-4a50-9caa-78c63accf564", - "scheduleReference": "F1*", + "uuid": "1b82a39a-ea2b-42dd-b3c4-1e1e5fe57845", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true - }, + "siteRegistry": false + } + ] + }, + { + "uuid": "4158f099-a0b4-4d46-bda4-80d1d7f86b70", + "siteRegistry": false, + "dateReceived": "2019-07-27", + "dateCompleted": "2016-09-04", + "dateEntered": "2017-05-01", + "dateRegistrar": "2016-09-29", + "dateLocalAuthorityReceived": "2019-07-10", + "summary": "Accusamus consequatur quaerat laudantium nisi.\nDoloribus ducimus vitae reprehenderit optio nostrum temporibus inventore accusamus voluptas.\nSint vero deserunt accusantium consectetur.", + "informationUsed": "Nulla deleniti ducimus veritatis ad magni velit minima.\nMollitia illum praesentium numquam ipsa fugiat.\nMaxime excepturi provident voluptate sed at quibusdam.", + "pastOrPresentOrders": "Inventore architecto mollitia laborum incidunt velit sunt.", + "commercialAndIndustrialPurposes": [ { - "uuid": "4673dff1-69ca-4c4a-b591-c8fd78ea674e", - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true + "uuid": "caff8f3f-90b4-4fcf-a4d1-81d4eabc52c1", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false }, { - "uuid": "93101bf8-2315-45d8-9a88-09cb36ec9cb0", + "uuid": "0b1c1c37-3d8e-4765-865a-ca19886751a4", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false + "siteRegistry": true } ] } ], "activityLog": [ { - "uuid": "484e4cac-ddd0-4288-bf55-79f82b87cc55", - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "KEELING DAPHNEY", - "timestamp": "2022-03-29" - }, - { - "uuid": "39dca7fe-3f0a-458e-b3f1-1c94e3d294e6", - "siteRegistry": true, + "uuid": "d78b8ee6-acc8-4830-ad12-0dfb00e321f7", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "SCHAMBERGER STANLEY", - "timestamp": "2018-08-11" + "user": "DACH CHEYANNE", + "timestamp": "2015-06-09" }, { - "uuid": "794a4cfd-6d1a-4d3e-a1e3-3c0b92517c52", + "uuid": "f9df7bc3-7b12-4baf-8d4d-48a1772399a7", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "TORPHY ALEXANNE", - "timestamp": "2017-12-08" + "user": "SHIELDS WILFRED", + "timestamp": "2016-07-08" }, { - "uuid": "bba85648-e181-4542-8b9c-41abcfa480ce", + "uuid": "07d99eda-95ce-4169-bbad-e22670bf964c", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "CHRISTIANSEN JENNINGS", - "timestamp": "2022-03-01" + "user": "CARTER GAVIN", + "timestamp": "2020-01-13" }, { - "uuid": "0de0be82-2f31-4a86-89b3-ff8dd6b77d88", - "siteRegistry": false, + "uuid": "2189435c-43db-43be-84e0-ecfecff5c913", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "GOYETTE JALON", - "timestamp": "2022-11-28" + "user": "TORP HASKELL", + "timestamp": "2023-03-02" }, { - "uuid": "2c09ba1e-ea4c-43f9-aa78-617e314a0ec4", - "siteRegistry": false, + "uuid": "4b66d44c-a2c2-4139-b5c5-f5c48dc17a05", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "KUTCH EDGAR", - "timestamp": "2021-11-15" + "user": "JONES MADGE", + "timestamp": "2015-02-13" }, { - "uuid": "0db5e55e-698a-453e-9294-05ade0664d9c", + "uuid": "929544fb-34ce-4ec9-aa93-a019bfceb296", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "PAGAC FORREST", - "timestamp": "2019-09-27" + "user": "BASHIRIAN FRANCESCO", + "timestamp": "2022-09-05" }, { - "uuid": "c792ee3d-5164-4830-a4b5-4f0fb0324187", + "uuid": "290eaae0-f339-496e-9f11-b19c97c69aec", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "ROHAN FREDERIC", - "timestamp": "2019-07-24" - }, - { - "uuid": "55acc476-e21c-430f-b9cb-7ff2a7ee8b51", - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "WILKINSON DAMIAN", - "timestamp": "2015-04-12" + "user": "JACOBSON-BAUCH KIRSTEN", + "timestamp": "2020-07-28" } ], "associatedSites": [ { - "uuid": "e9ad7cee-3d87-4f99-9ac4-81b0c5e2f683", - "dateNoted": "2022-04-27", + "uuid": "d3a0fd34-4b44-46e9-85ed-a8c22e6a715f", + "dateNoted": "2020-09-18", "notes": "", - "parcelID": "20664", - "siteID": "20380", - "siteRegistry": false + "parcelID": "19917", + "siteID": "18686", + "siteRegistry": true + }, + { + "uuid": "6c25baa7-bbac-4319-a273-f1da32c6c1d6", + "dateNoted": "2019-10-25", + "notes": "", + "parcelID": "20429", + "siteID": "15676", + "siteRegistry": true } ] }, { - "uuid": "a7007ff7-aa38-42f0-8ede-69a29870f3d6", - "siteID": 15914, - "address": "555 Rau Neck", - "latitude": 50.2831, - "longitude": -125.2549, - "lastUpdated": "2023-05-23", - "city": "New Syble", - "region": "Mainland/Southwest", - "victoriaFile": "26250-20/16861", + "uuid": "09f49c17-6616-448c-9189-d9399cccb14f", + "siteID": 19065, + "address": "401 Loma Underpass", + "latitude": 56.0014, + "longitude": -129.752, + "lastUpdated": "2021-10-23", + "city": "Bentonville", + "region": "Cariboo", + "victoriaFile": "26250-20/9817", "regionalFile": "N/A", "parcelIDs": [ - 2681710, - 2373636, - 6140777, - 1386032, - 7627194 + 314120, + 6356349, + 468804, + 5847986, + 4369238 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "7acde7ab-c919-46d2-9d12-b28661af4276", - "createdAt": "2016-08-27", - "completed": "2022-08-11", - "initiated": "2022-03-07", - "ministryContact": "DOUGLAS-HICKLE JUWAN", + "uuid": "ec4740dd-ae67-4d9c-a97e-9ed8d72702ab", + "createdAt": "2020-10-07", + "completed": "2021-02-10", + "initiated": "2013-10-30", + "ministryContact": "KEEBLER-KOEPP CRAWFORD", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -28913,26 +33560,32 @@ ], "notationParticipants": [ { - "uuid": "993afe01-6351-447f-b98d-1f5811730679", + "uuid": "d22a792f-8396-4aee-b08f-0fdafdb4346f", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false + "role": "SUBMITTED BY", + "siteRegistry": true }, { - "uuid": "f13f6835-6c52-4a3b-af99-efe02d0d7526", + "uuid": "6f81f053-b0fd-4482-9e14-4fb77a490322", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true + }, + { + "uuid": "68c8628b-d570-4bfe-ad3d-f228f2b7e59e", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true } ], "siteRegistry": true }, { - "uuid": "ba01d90b-0913-42d4-b802-0f65b5308627", - "createdAt": "2021-11-19", - "completed": "2020-10-29", - "initiated": "2014-10-02", - "ministryContact": "KUVALIS MARLEN", + "uuid": "85bbc2c3-5853-4d89-b284-e21886b66206", + "createdAt": "2021-07-05", + "completed": "2022-09-20", + "initiated": "2020-12-04", + "ministryContact": "SCHAMBERGER ANAIS", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -28941,38 +33594,54 @@ ], "notationParticipants": [ { - "uuid": "1b7cb4f5-83f9-4f6d-b4ee-122a14845835", + "uuid": "4b928005-e2e3-495b-ad2d-70a5f1c8e630", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true + "role": "SUBMITTED BY", + "siteRegistry": false }, { - "uuid": "2a358110-0c33-4cc4-8bee-b7e541a55966", + "uuid": "0e4472a7-52bf-46f3-be83-90211da4942b", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true - }, + } + ], + "siteRegistry": false + }, + { + "uuid": "f5299bf9-456c-4d1e-aa56-2f36f6eed124", + "createdAt": "2014-12-13", + "completed": "2021-11-06", + "initiated": "2022-06-07", + "ministryContact": "GLEASON RAMIRO", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ { - "uuid": "1e6d77b4-37fc-4e92-acf4-6a22b7272e69", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "uuid": "5def83a2-993a-45e7-89ff-d458ac627b46", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": true }, { - "uuid": "38a4ee4c-3dfb-4814-8c59-82a7ae41c9ee", + "uuid": "00a827aa-8d18-4901-a82f-e9afed4f6b9e", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false + "role": "REQUESTED BY", + "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "0b3cb872-5226-4335-95f4-ecfd83811e07", - "createdAt": "2014-12-24", - "completed": "2020-07-14", - "initiated": "2017-10-29", - "ministryContact": "SCHULIST VERNON", + "uuid": "e433ac29-95db-4db7-92f4-357999fff0d7", + "createdAt": "2017-12-31", + "completed": "2019-02-18", + "initiated": "2018-12-17", + "ministryContact": "HEANEY-ABSHIRE GEORGIANA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -28981,34 +33650,28 @@ ], "notationParticipants": [ { - "uuid": "5a15880c-1897-4201-8ec1-0a6bf1a8342c", - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "7a68643a-ce2e-44a6-9454-44f578c0cf59", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "18294ab7-d06f-4365-a7b0-466483c45901", - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "uuid": "d99f3aaf-974f-40e3-87fc-26b8d9430161", + "uuid": "0a8d7928-281d-4705-914e-ee66e2c74b4f", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "da099571-413f-492d-99ff-8e04b0c462b5", - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "3f34231a-6c7d-4943-a23f-e77881869c3d", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "2a9e0b82-1e15-4d00-b9f6-eaf9a0607acf", - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "a1608f60-b1fc-4a74-bfe2-b475fe8dad31", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true } ], "siteRegistry": true @@ -29016,111 +33679,171 @@ ], "participants": [ { - "uuid": "39e59e5d-7fdc-4aa5-a341-e312682de07a", - "name": "IPSUM", - "endDate": "2016-08-20", - "startDate": "2018-07-30", + "uuid": "ae91607f-8f1f-4cd0-9fb1-16e94607266f", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2018-10-23", + "startDate": "2020-02-04", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "96a10e25-a8a5-4b18-97f8-486e3717007c", - "name": "SHELL CANADA PRODUCTS", - "endDate": "2022-09-20", - "startDate": "2014-06-17", + "uuid": "cc3ce889-c7f4-423f-b952-8f64a766c30d", + "name": "AMET, DOLOR SIT", + "endDate": "2017-06-23", + "startDate": "2017-11-10", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true + }, + { + "uuid": "1089402b-a362-4d89-9339-4e2324bfb733", + "name": "IPSUM", + "endDate": "2019-11-18", + "startDate": "2021-03-31", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true } ], - "suspectLandUses": [ + "documents": [ { - "uuid": "0c3cbb07-9eaa-43b1-b3e5-fc418f3128ef", + "uuid": "3809fa30-78ed-45b9-bc6f-f65b76f58d19", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-09-22 (described on Site Profile dated 2015-09-22)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "documentDate": "2014-09-09", + "receivedDate": "2019-09-29", + "uploadedDate": "2016-08-29", + "title": "Summary of Site Conditions, 1537 W 41st Avenue, Vancouver", + "participants": [ + { + "uuid": "231f7ff9-c5b0-4566-beb4-0f24987e7f6a", + "name": "AMET, DOLOR SIT", + "siteRegistry": true, + "role": "AUTHOR" + } + ] }, { - "uuid": "40e16925-1c43-4832-9d5d-bb25a9886cf4", + "uuid": "682305ed-f261-45f8-9959-c5c2008fb0d3", + "siteRegistry": false, + "documentDate": "2019-02-20", + "receivedDate": "2014-09-24", + "uploadedDate": "2014-05-02", + "title": "Preliminary Site Investigation, Detailed Site Investigation and Remedial Plan for the Management Area adjacent to the Shell Site at 1503 West 41st Ave", + "participants": [ + { + "uuid": "0873b58b-af24-4c23-8469-eeed76c9d2e6", + "name": "IPSUM", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "639d69df-4e2d-45cc-bc65-7a5534ea0335", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "2dd1716b-2bf3-4d94-8950-9f6d40dabff4", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": true, + "role": "AUTHOR" + } + ] + } + ], + "suspectLandUses": [ + { + "uuid": "bbfc780b-3cd6-4874-ac97-9294576ed8a6", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-12-05 (described on Site Profile dated 2019-12-05)", + "notes": "INSERTED FOR SITE PROFILE DATED 2021-07-28 (described on Site Profile dated 2021-07-28)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "uuid": "d3a24b13-5e86-43f9-96f3-d9121e39123d", + "uuid": "a68f0a39-a7e7-403e-a2c9-b4dfc095c4e2", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-06-10 (described on Site Profile dated 2015-06-10)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "notes": "INSERTED FOR SITE PROFILE DATED 2023-05-11 (described on Site Profile dated 2023-05-11)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "uuid": "0a454882-7053-4bf1-80f7-93e4de598da9", + "uuid": "17c52178-d784-479a-b242-de9827dac4f4", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-01-04 (described on Site Profile dated 2016-01-04)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "notes": "INSERTED FOR SITE PROFILE DATED 2013-11-19 (described on Site Profile dated 2013-11-19)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "uuid": "ff4511c4-a594-44c8-abfa-c00dcb3fc37b", + "uuid": "3ef9364d-91fb-4364-8687-368cf5e1266c", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-08-07 (described on Site Profile dated 2017-08-07)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "notes": "INSERTED FOR SITE PROFILE DATED 2016-02-12 (described on Site Profile dated 2016-02-12)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], "parcelDescriptions": [ { - "uuid": "e47ca6f4-d48c-482e-8acc-8776efaa63f7", + "uuid": "a571de67-f454-480b-9def-4ccf821ca7f0", "siteRegistry": false, - "dateNoted": "2017-02-18", - "parcelID": "20865", - "crownLandUsePIN": "15550", - "crownLandFileNumber": "18887", - "landDescription": "LOT 3 OF LOT 3 BLOCK 1 DISTRICT LOT 3 PLAN 5051" + "dateNoted": "2014-02-01", + "parcelID": "15793", + "crownLandUsePIN": "20619", + "crownLandFileNumber": "17877", + "landDescription": "LOT 3 OF LOT 1 BLOCK 2 DISTRICT LOT 4 PLAN 9197" }, { - "uuid": "b2421ca6-daa4-44b2-bc03-585d77eb1f84", - "siteRegistry": true, - "dateNoted": "2014-05-30", - "parcelID": "20300", - "crownLandUsePIN": "16936", - "crownLandFileNumber": "16126", - "landDescription": "LOT 2 OF LOT 4 BLOCK 3 DISTRICT LOT 1 PLAN 4522" + "uuid": "24d02281-fa55-480b-b206-e30e69402d5e", + "siteRegistry": false, + "dateNoted": "2021-12-01", + "parcelID": "19228", + "crownLandUsePIN": "15806", + "crownLandFileNumber": "19479", + "landDescription": "LOT 2 OF LOT 2 BLOCK 2 DISTRICT LOT 1 PLAN 5223" }, { - "uuid": "768bb26b-d06a-4ba5-b885-754c4bedc04a", + "uuid": "c7914a1d-ba0d-49ee-b2d6-8c38d168fbf7", + "siteRegistry": false, + "dateNoted": "2018-05-13", + "parcelID": "16844", + "crownLandUsePIN": "15726", + "crownLandFileNumber": "17266", + "landDescription": "LOT 5 OF LOT 3 BLOCK 2 DISTRICT LOT 4 PLAN 5483" + }, + { + "uuid": "a58df91c-3265-4b93-9fd1-09245edeee3f", "siteRegistry": true, - "dateNoted": "2016-08-30", - "parcelID": "19958", - "crownLandUsePIN": "15226", - "crownLandFileNumber": "17117", - "landDescription": "LOT 2 OF LOT 5 BLOCK 4 DISTRICT LOT 5 PLAN 9663" + "dateNoted": "2016-03-24", + "parcelID": "17617", + "crownLandUsePIN": "17211", + "crownLandFileNumber": "20916", + "landDescription": "LOT 1 OF LOT 5 BLOCK 1 DISTRICT LOT 4 PLAN 9546" } ], "siteDisclosures": [ { - "uuid": "41035106-7c8c-4b40-a052-d7be4bb59e23", - "siteRegistry": true, - "dateReceived": "2014-02-28", - "dateCompleted": "2015-05-26", - "dateEntered": "2015-12-16", - "dateRegistrar": "2015-12-01", - "dateLocalAuthorityReceived": "2018-01-26", - "summary": "Eius maxime quidem magni molestiae cumque hic.", - "informationUsed": "Consequuntur numquam dolorem.\nAliquam consectetur aliquam voluptatibus deleniti voluptatem iste.\nAt sapiente id porro vel necessitatibus error cum soluta.", - "pastOrPresentOrders": "Consequuntur mollitia quos maxime.\nTotam repudiandae expedita quis maiores itaque quis libero.\nNon molestias laudantium.", + "uuid": "f9e37b96-39aa-4d4f-8136-22768fc72312", + "siteRegistry": false, + "dateReceived": "2018-10-08", + "dateCompleted": "2017-11-16", + "dateEntered": "2015-03-29", + "dateRegistrar": "2023-10-04", + "dateLocalAuthorityReceived": "2016-03-24", + "summary": "Inventore doloribus eos commodi.\nSimilique fuga cum hic harum voluptates.", + "informationUsed": "Dolor atque reprehenderit placeat ab alias praesentium deleniti.\nMinima architecto adipisci.\nBlanditiis fugit magnam maxime libero quibusdam.\nOfficiis exercitationem laborum sapiente.", + "pastOrPresentOrders": "Eos earum dicta fuga sit expedita modi.\nAliquam illum molestias quia nisi.", "commercialAndIndustrialPurposes": [ { - "uuid": "773a9d46-ceec-4f7a-bd21-92d39ea0cf89", - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false + "uuid": "1565d678-eeec-43c0-a4ac-91352249319d", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true }, { - "uuid": "ed88c99b-501a-4b19-91eb-6a4813fdff66", - "scheduleReference": "F2*", + "uuid": "d9670e03-95ed-4746-8d4d-fc8e08142f60", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true } @@ -29129,93 +33852,92 @@ ], "activityLog": [ { - "uuid": "e30c332d-8c6b-4ac8-b99a-1f4e064bb1c7", + "uuid": "a82a6602-5df5-4544-95da-046eab8dfedf", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "OKUNEVA KADEN", + "timestamp": "2020-08-05" + }, + { + "uuid": "b5637dcb-7104-4b1f-ba1b-6023a38b8737", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "BECKER EVALYN", - "timestamp": "2018-05-05" + "user": "GUTKOWSKI SHAYNA", + "timestamp": "2014-05-13" }, { - "uuid": "0f7755bb-c81c-49da-a845-4e9e0cac51f1", + "uuid": "e8feb05f-739d-4322-97ec-b4bde3290e96", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "SPENCER-RYAN JOANA", - "timestamp": "2014-09-22" + "user": "KILBACK SIM", + "timestamp": "2016-11-26" }, { - "uuid": "358b17a8-670d-4be0-9a4b-4ecf77e64640", - "siteRegistry": true, + "uuid": "f2bec4c3-a3ed-4881-8613-ab5698ac3b28", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "WUCKERT JANIS", - "timestamp": "2016-03-29" + "user": "ARMSTRONG YASMEEN", + "timestamp": "2017-03-14" }, { - "uuid": "5fe1bf98-95bc-4d71-813f-7e4a60ecefd0", + "uuid": "c480e0e2-b62b-4fc3-83f6-2fe4ad15ef2d", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "MACGYVER MITTIE", - "timestamp": "2016-11-18" + "user": "HESSEL JAMARCUS", + "timestamp": "2020-12-07" }, { - "uuid": "bfc03b25-0e7b-42f9-a2ed-08dd397c65a0", + "uuid": "d5c74886-33aa-42cc-a4a3-e18421c9614c", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "BERGNAUM MICAH", - "timestamp": "2013-11-17" + "user": "LEBSACK ESTELL", + "timestamp": "2016-10-30" }, { - "uuid": "3b2a89b1-7532-488e-85c5-a03bb47e1067", + "uuid": "483952bc-76df-40b8-b88e-acab7c2f49da", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "HARBER GIDEON", - "timestamp": "2021-04-04" + "user": "WIEGAND IAN", + "timestamp": "2020-08-10" } ], "associatedSites": [ { - "uuid": "b60d602d-a8fc-40f0-a464-17e044d51dd5", - "dateNoted": "2022-07-09", - "notes": "", - "parcelID": "18190", - "siteID": "19893", - "siteRegistry": true - }, - { - "uuid": "3d828f9f-19ed-4171-aa81-5d0453abcd25", - "dateNoted": "2014-03-27", + "uuid": "2fcd93a2-0120-42fe-a033-89d422519baf", + "dateNoted": "2021-04-17", "notes": "", - "parcelID": "15970", - "siteID": "17483", - "siteRegistry": true + "parcelID": "15934", + "siteID": "15746", + "siteRegistry": false } ] }, { - "uuid": "d07a269f-403c-4eeb-8c2b-a1e818e5c322", - "siteID": 15433, - "address": "76579 Larson Turnpike", - "latitude": 55.6516, - "longitude": -137.3857, - "lastUpdated": "2018-12-17", - "city": "Wellingtonhaven", - "region": "Kootenay", - "victoriaFile": "26250-20/1092", + "uuid": "d43b702a-b5e6-48c5-985c-a0408cf372c3", + "siteID": 17053, + "address": "5268 Kiara Estates", + "latitude": 49.032, + "longitude": -124.8745, + "lastUpdated": "2021-08-11", + "city": "Ahmedside", + "region": "Thompson-Okanagan", + "victoriaFile": "26250-20/15086", "regionalFile": "N/A", "parcelIDs": [ - 4465644, - 5751224, - 9623451, - 6124651, - 3854729 + 639393, + 7710842, + 1910032, + 2930065, + 6571154 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "31ce07fa-32de-4c4d-9112-3948f6fd32fb", - "createdAt": "2018-06-06", - "completed": "2020-08-13", - "initiated": "2019-10-10", - "ministryContact": "YOST RYLEIGH", + "uuid": "26ea150c-400b-49ad-a022-446d86f22c89", + "createdAt": "2015-03-25", + "completed": "2018-08-24", + "initiated": "2022-12-18", + "ministryContact": "KULAS MARYAM", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -29224,26 +33946,20 @@ ], "notationParticipants": [ { - "uuid": "4d8cfe05-f333-4d6f-ac00-317cd75c1738", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "uuid": "23521c03-8830-46f9-a023-b6029959f573", - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "95132168-0cf0-40ba-beed-9ba789279228", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "9c4b289a-2897-42ee-95e9-39d5c467d9b2", + "uuid": "ac76e495-d195-4e4e-83d5-5508ef258262", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true }, { - "uuid": "575a7c91-7638-45e3-a4c6-c62a8871d976", - "name": "SHELL CANADA PRODUCTS", + "uuid": "d39ae30f-c993-42e7-845c-8d9897f1c1a6", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false } @@ -29251,11 +33967,11 @@ "siteRegistry": true }, { - "uuid": "d98f75c1-39e9-4bbb-b956-a0218e6d4ac2", - "createdAt": "2016-02-18", - "completed": "2015-08-17", - "initiated": "2016-10-24", - "ministryContact": "KIRLIN SHANIYA", + "uuid": "6133580a-196a-4e05-8a00-105ffd4af3cf", + "createdAt": "2023-04-12", + "completed": "2018-07-04", + "initiated": "2017-02-25", + "ministryContact": "LITTLE ALEXANDREA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -29264,38 +33980,100 @@ ], "notationParticipants": [ { - "uuid": "b568d783-a95d-4f3f-ba7a-18e3f5bbe995", + "uuid": "b545019e-7505-4cbd-9923-b0cbba07a64a", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false }, { - "uuid": "a805386e-a80c-400d-a0b2-b30fa3fd255c", + "uuid": "4d5a92d5-ffc2-4e3c-9e8c-4cc4a30d1aac", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "uuid": "972b1aec-4b61-4054-bb4b-5342143c1173", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", "siteRegistry": false }, { - "uuid": "43d62d8c-b78e-47cd-9c48-febdb38ab56e", + "uuid": "6a49661c-3a9c-41be-a75f-c54b2423538e", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "uuid": "8b1c46cf-bcdd-4324-acea-a9db054b0803", + "createdAt": "2017-05-12", + "completed": "2023-05-06", + "initiated": "2014-03-20", + "ministryContact": "DICKI EDA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "uuid": "de930ffe-f40d-4926-ae57-508a6138f56b", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "de5cf17d-75c0-49fa-adcd-c42dae49b428", + "uuid": "61e4ef93-3eb8-4636-b139-b835bd6d76e5", "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "uuid": "ca0eed32-ae3d-43f4-b2bb-21983ed78ed0", + "createdAt": "2022-07-27", + "completed": "2015-11-19", + "initiated": "2020-01-10", + "ministryContact": "FRIESEN HAYLEY", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "uuid": "a6e8004b-01f8-42a5-8647-f5836cad7f4a", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "5c72feaa-5621-4e96-af25-d3cf4bfc0d55", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false + }, + { + "uuid": "2ed2d45e-e469-460e-a18b-e0b60f749970", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "4d4f7b21-9498-4d88-a7c9-c161aceed2f9", - "createdAt": "2022-01-16", - "completed": "2017-08-02", - "initiated": "2015-10-08", - "ministryContact": "ZIEMANN ARVILLA", + "uuid": "d48b15a1-daa1-4c98-837e-6724ce432dfb", + "createdAt": "2023-01-01", + "completed": "2021-09-02", + "initiated": "2016-09-29", + "ministryContact": "JOHNSTON JENNIFER", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -29304,27 +34082,50 @@ ], "notationParticipants": [ { - "uuid": "bc9af4aa-ca63-4089-a89a-1c113c82f6ba", + "uuid": "6c18c99e-2594-4071-9730-974309e9e893", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "b598f82b-5c38-4745-b61d-2da8c0488e16", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false }, { - "uuid": "cf402b82-3033-4c3e-95a5-73a5d94dd4e7", + "uuid": "84b6bcf9-8db4-4265-9625-7d91c914c966", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "uuid": "fa65cc08-f438-4831-9f5e-1394639b7984", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false } ], "participants": [ { - "uuid": "9c548e45-de08-45d8-9cfc-3774b713950f", - "name": "AMET, DOLOR SIT", - "endDate": "2021-08-24", - "startDate": "2022-06-06", + "uuid": "63287f40-c274-430c-82b9-089bb32476e7", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2017-08-20", + "startDate": "2023-03-22", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "uuid": "b8a1fc82-172c-42b0-b420-c4f1a984bf99", + "name": "IPSUM", + "endDate": "2018-07-14", + "startDate": "2020-04-22", "notes": "", "roles": [ "ORGANIZATION" @@ -29332,148 +34133,228 @@ "siteRegistry": false }, { - "uuid": "19d1d553-630a-4ab0-8d54-e80ca9490555", - "name": "SHELL CANADA PRODUCTS", - "endDate": "2021-08-16", - "startDate": "2013-11-01", + "uuid": "d1b47391-ac35-43a0-a846-ce7fcd4a5a87", + "name": "AMET, DOLOR SIT", + "endDate": "2023-10-02", + "startDate": "2019-01-15", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], - "siteRegistry": true + "siteRegistry": false } ], - "suspectLandUses": [ + "documents": [ { - "uuid": "279466a2-7efb-4e8f-a1e1-fe076f06de9b", - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-08-22 (described on Site Profile dated 2017-08-22)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "uuid": "d16da947-7047-47d5-bfbf-fb02a39634c5", + "siteRegistry": false, + "documentDate": "2018-10-16", + "receivedDate": "2020-08-17", + "uploadedDate": "2022-09-03", + "title": "Preliminary Site Investigation, Detailed Site Investigation and Remedial Plan for the Management Area adjacent to the Shell Site at 1503 West 41st Ave", + "participants": [ + { + "uuid": "65aece09-a97a-4d42-a3a6-8d0b7ff1c1c9", + "name": "IPSUM", + "siteRegistry": true, + "role": "AUTHOR" + } + ] }, { - "uuid": "a990472f-20ff-4662-b46f-e5c26dccbcf1", - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-05-06 (described on Site Profile dated 2015-05-06)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "uuid": "2488e031-d13f-4652-ad39-ce00e6a13867", + "siteRegistry": false, + "documentDate": "2017-06-12", + "receivedDate": "2020-06-28", + "uploadedDate": "2021-03-07", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "88020e73-e6b8-4ab7-8eba-bf8ba17203e2", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "d588dbcc-16c7-44bf-96c9-cde6bf013858", + "name": "AMET, DOLOR SIT", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "f4b8b0e6-b5cf-44f9-9a10-4ef1ab454b9f", + "name": "AMET, DOLOR SIT", + "siteRegistry": true, + "role": "AUTHOR" + } + ] }, { - "uuid": "f05e4245-ea6e-443b-bc60-14148fd13c61", + "uuid": "ef2fcd65-fe53-4108-bf09-3ded526ef571", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-08-27 (described on Site Profile dated 2018-08-27)", + "documentDate": "2017-11-26", + "receivedDate": "2014-09-02", + "uploadedDate": "2022-04-12", + "title": "Summary of Site Conditions, 1537 W 41st Avenue, Vancouver", + "participants": [ + { + "uuid": "60472acf-e482-453d-9dd8-69e2fd5c280b", + "name": "IPSUM", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "acb7069b-7d91-4790-9dd8-c70ad9c6790d", + "name": "IPSUM", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "8b53b369-7ded-4f01-bc8d-e183a08d75a5", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": false, + "role": "AUTHOR" + } + ] + } + ], + "suspectLandUses": [ + { + "uuid": "4aacbc6f-827b-4c98-997c-94e9a061134c", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2019-01-20 (described on Site Profile dated 2019-01-20)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "uuid": "bb304997-8d69-4516-bd50-c6dcd0552ccb", + "uuid": "58faa183-9c9e-4e94-ba04-78cd4b033b6e", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-07-04 (described on Site Profile dated 2019-07-04)", + "notes": "INSERTED FOR SITE PROFILE DATED 2014-09-11 (described on Site Profile dated 2014-09-11)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "uuid": "fd00c5f5-e741-49f3-8d32-d25d01ad57f7", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2015-08-24 (described on Site Profile dated 2015-08-24)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "uuid": "736e1b65-887c-4434-8f13-87d936d66b35", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2019-07-03 (described on Site Profile dated 2019-07-03)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], "parcelDescriptions": [ { - "uuid": "47cde876-290e-437a-b928-77653cae67ef", - "siteRegistry": true, - "dateNoted": "2013-11-26", - "parcelID": "19809", - "crownLandUsePIN": "15808", - "crownLandFileNumber": "20830", - "landDescription": "LOT 2 OF LOT 5 BLOCK 3 DISTRICT LOT 1 PLAN 6346" - }, - { - "uuid": "61e561ca-3406-4734-8984-6c49baca914d", + "uuid": "70ee8bab-5efd-4e03-b612-04de3f186478", "siteRegistry": false, - "dateNoted": "2015-04-06", - "parcelID": "19638", - "crownLandUsePIN": "15442", - "crownLandFileNumber": "18999", - "landDescription": "LOT 2 OF LOT 5 BLOCK 1 DISTRICT LOT 2 PLAN 4552" + "dateNoted": "2015-03-10", + "parcelID": "16809", + "crownLandUsePIN": "19310", + "crownLandFileNumber": "16815", + "landDescription": "LOT 4 OF LOT 4 BLOCK 1 DISTRICT LOT 4 PLAN 4252" }, { - "uuid": "c5912c60-93e6-4cd1-aa54-2354c91ed86b", - "siteRegistry": false, - "dateNoted": "2013-12-01", - "parcelID": "19930", - "crownLandUsePIN": "16472", - "crownLandFileNumber": "19188", - "landDescription": "LOT 3 OF LOT 4 BLOCK 2 DISTRICT LOT 5 PLAN 4526" + "uuid": "6cc3a793-38e1-4399-8e8d-d58e7883ba6f", + "siteRegistry": true, + "dateNoted": "2020-09-12", + "parcelID": "18243", + "crownLandUsePIN": "18811", + "crownLandFileNumber": "17449", + "landDescription": "LOT 1 OF LOT 1 BLOCK 2 DISTRICT LOT 1 PLAN 6366" }, { - "uuid": "1b0abb45-1eae-40cd-9a99-78a47b9b5b55", + "uuid": "05363863-36b6-40e4-b486-f59f0cd5407a", "siteRegistry": true, - "dateNoted": "2021-08-06", - "parcelID": "17538", - "crownLandUsePIN": "17687", - "crownLandFileNumber": "19125", - "landDescription": "LOT 3 OF LOT 2 BLOCK 2 DISTRICT LOT 5 PLAN 6947" + "dateNoted": "2021-08-09", + "parcelID": "18659", + "crownLandUsePIN": "15317", + "crownLandFileNumber": "17225", + "landDescription": "LOT 4 OF LOT 1 BLOCK 2 DISTRICT LOT 1 PLAN 9606" + }, + { + "uuid": "612ac08d-fe36-4e31-a648-3a73a968cfe1", + "siteRegistry": false, + "dateNoted": "2020-08-13", + "parcelID": "17917", + "crownLandUsePIN": "20860", + "crownLandFileNumber": "17544", + "landDescription": "LOT 1 OF LOT 4 BLOCK 5 DISTRICT LOT 2 PLAN 4988" } ], "siteDisclosures": [ { - "uuid": "bccf9007-f981-4176-a4af-75b875ed9be2", + "uuid": "e376905c-41a4-4e41-8c6f-b450833c2707", "siteRegistry": true, - "dateReceived": "2015-11-29", - "dateCompleted": "2022-03-17", - "dateEntered": "2014-06-24", - "dateRegistrar": "2019-07-13", - "dateLocalAuthorityReceived": "2022-02-09", - "summary": "Reiciendis veritatis vero tempora beatae.\nPerferendis culpa illo esse aliquid dolorum in maiores corporis.\nNostrum id et.", - "informationUsed": "Vel minus cumque voluptatum excepturi excepturi laboriosam praesentium beatae quaerat.\nSaepe consectetur quod distinctio ducimus.\nNihil deleniti eaque.", - "pastOrPresentOrders": "Enim voluptatem quae alias vel.\nAperiam nisi corrupti accusamus.", + "dateReceived": "2020-11-30", + "dateCompleted": "2013-11-20", + "dateEntered": "2015-06-26", + "dateRegistrar": "2017-03-08", + "dateLocalAuthorityReceived": "2018-04-02", + "summary": "Natus perspiciatis adipisci autem reiciendis harum.\nEsse illum atque itaque aliquam culpa.", + "informationUsed": "Sint eaque reiciendis consectetur eum molestias.\nAssumenda dolor reprehenderit illum cum quos quis quibusdam.\nSed atque dolor tempora.\nIllo inventore quae.\nVoluptate sapiente non molestias explicabo aliquid mollitia facere.", + "pastOrPresentOrders": "Atque necessitatibus magni laborum quis quas enim laborum ex blanditiis.", "commercialAndIndustrialPurposes": [ { - "uuid": "b58665ec-4c87-4794-bd39-f34601aee983", + "uuid": "568b6c40-a517-4127-af77-4ae43200d776", "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true }, { - "uuid": "ae96eeff-2ab6-42b3-87b2-321594e93d23", + "uuid": "ce3c1394-e99c-479f-a8ab-58b793b62ed1", "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true }, { - "uuid": "71b045d6-c90a-4088-85a7-80e2c5457369", + "uuid": "f8064843-9be4-4574-a524-f5f0eaa4c70b", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "uuid": "1e4f2933-61df-477c-b151-aae52af0c000", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false } ] }, { - "uuid": "2fcb6abe-b401-44a8-adc4-b2ae8a94ec7d", - "siteRegistry": false, - "dateReceived": "2018-03-26", - "dateCompleted": "2017-10-04", - "dateEntered": "2016-08-07", - "dateRegistrar": "2017-10-16", - "dateLocalAuthorityReceived": "2018-12-31", - "summary": "Cumque animi quaerat ducimus.", - "informationUsed": "Nisi ea praesentium.\nOccaecati maxime aperiam vel doloremque ab.\nOdio ipsam corporis.", - "pastOrPresentOrders": "Illo nam numquam architecto maiores repudiandae nostrum.\nEveniet quae consequuntur provident minus.\nAspernatur libero alias vero expedita.", + "uuid": "15124ce3-9232-43db-9b7e-4d5efec11e44", + "siteRegistry": true, + "dateReceived": "2018-01-24", + "dateCompleted": "2016-11-06", + "dateEntered": "2018-01-14", + "dateRegistrar": "2014-05-04", + "dateLocalAuthorityReceived": "2019-11-08", + "summary": "At provident dicta deserunt.\nEligendi quo corporis esse.\nOdit ducimus ratione dignissimos ipsa nesciunt exercitationem.", + "informationUsed": "Aut voluptates pariatur quia exercitationem veritatis.\nUllam soluta nobis numquam corporis dolore cum est.\nA vero minus eligendi harum corporis.", + "pastOrPresentOrders": "Repellat fugit reiciendis mollitia cupiditate sint sunt nesciunt neque quo.\nQuas corporis impedit.\nError suscipit eveniet alias ipsa iste.", "commercialAndIndustrialPurposes": [ { - "uuid": "5122203f-f46e-4e9a-bc6c-7525c1192fcf", - "scheduleReference": "F2*", + "uuid": "196d16f7-2bb5-4fa8-ad13-323708bb83f4", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "878f174f-063e-49f3-8218-9e6160981239", - "scheduleReference": "F1*", + "uuid": "6560f072-1203-4210-81b8-9c96f948bc4a", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false }, { - "uuid": "9868d430-68ca-4416-b1e6-46cb16ffd771", - "scheduleReference": "F1*", + "uuid": "e32d137d-2a3d-4f43-b0f7-99b8922f64af", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "8a12c031-7a8d-438c-94bc-b2aae8b6fbac", + "uuid": "321d8627-b684-4801-b650-f1648c04942a", "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false } ] @@ -29481,122 +34362,93 @@ ], "activityLog": [ { - "uuid": "ede6f4cc-c8ac-4628-a75f-b039b79fc86b", - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "COLE ERIC", - "timestamp": "2020-09-21" - }, - { - "uuid": "5f1a5d90-475d-4ed9-8f6f-297f3313f8ca", - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "ERNSER ELISEO", - "timestamp": "2022-01-28" - }, - { - "uuid": "ab8067d1-cd7f-4670-8677-3c5fc9408f01", + "uuid": "991b498d-0aed-4306-9dc9-e364b873e305", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "LITTEL AGLAE", - "timestamp": "2021-07-07" + "user": "REINGER GIOVANNA", + "timestamp": "2014-02-08" }, { - "uuid": "f05af3b9-3b4d-40a3-badd-3d402ce01923", + "uuid": "a35b311a-4773-48d2-ab79-2f40efdf8c17", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "MILLER JOY", - "timestamp": "2022-04-20" + "user": "KOSS-RYAN JAIME", + "timestamp": "2018-10-11" }, { - "uuid": "4760b951-8d9c-4115-a310-8d24fb4a8da0", + "uuid": "e93cf59b-ea03-4636-8425-f0dec3d52de3", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "MEDHURST MUHAMMAD", - "timestamp": "2021-02-28" - }, - { - "uuid": "22309937-2b7d-41b2-8ea1-36a6357ff633", - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "SWANIAWSKI JONATAN", - "timestamp": "2015-01-11" + "user": "REINGER DAPHNEY", + "timestamp": "2022-04-21" }, { - "uuid": "e55fb31b-e775-4196-ba49-a1c46c22f228", + "uuid": "3983c1a9-8133-4499-bea8-7eb71502010c", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "RUNOLFSSON VERGIE", - "timestamp": "2018-07-16" + "user": "SHANAHAN-KEMMER HOYT", + "timestamp": "2019-12-28" }, { - "uuid": "77818bde-33b9-4933-b888-c0628fa8acb5", - "siteRegistry": true, + "uuid": "6d003018-c5ab-406c-a33f-37606bda093c", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "ABERNATHY KAILEY", - "timestamp": "2016-05-31" + "user": "LAKIN ALEX", + "timestamp": "2022-10-04" }, { - "uuid": "6c49903b-7967-4bf8-9746-5a804644f58f", + "uuid": "f224316d-50f8-45a5-8719-7e4d25e1fa2b", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "RYAN ADRIAN", - "timestamp": "2020-03-14" + "user": "HUDSON ELAINA", + "timestamp": "2019-10-19" } ], "associatedSites": [ { - "uuid": "00483893-d7cd-4d56-906b-5d868d318f13", - "dateNoted": "2023-01-11", + "uuid": "caa99c7f-5615-4cf5-ae3f-50d51b607028", + "dateNoted": "2021-11-06", "notes": "", - "parcelID": "20221", - "siteID": "18428", + "parcelID": "20632", + "siteID": "20842", "siteRegistry": true }, { - "uuid": "def83bdc-7fac-4d7b-aa7e-31168d5a3cb0", - "dateNoted": "2021-06-09", + "uuid": "d2f92bbf-ea3f-475d-af98-a234ef8fd78c", + "dateNoted": "2022-06-26", "notes": "", - "parcelID": "15290", - "siteID": "17933", + "parcelID": "16496", + "siteID": "16853", "siteRegistry": true - }, - { - "uuid": "7196881e-f5c7-4cce-a984-cc9ef768c85e", - "dateNoted": "2016-11-09", - "notes": "", - "parcelID": "20575", - "siteID": "19196", - "siteRegistry": false } ] }, { - "uuid": "73a76398-567d-47ea-bdaa-87bbb2a3e54e", - "siteID": 20683, - "address": "227 Marshall Extension", - "latitude": 55.711, - "longitude": -126.6417, - "lastUpdated": "2018-06-04", - "city": "South Eloise", - "region": " North Coast", - "victoriaFile": "26250-20/1968", + "uuid": "781871ea-4ce4-4ce6-9505-a49d96d7033b", + "siteID": 17060, + "address": "67759 Jana Ridge", + "latitude": 55.8757, + "longitude": -124.586, + "lastUpdated": "2015-12-20", + "city": "Schinnerfurt", + "region": "Thompson-Okanagan", + "victoriaFile": "26250-20/7109", "regionalFile": "N/A", "parcelIDs": [ - 5860218, - 6791177, - 9907152, - 7001947, - 4818324 + 6579164, + 6902208, + 411950, + 5111676, + 6666854 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "8146ebec-7e84-443b-8d57-c7a30e507722", - "createdAt": "2020-04-30", - "completed": "2018-04-09", - "initiated": "2019-09-29", - "ministryContact": "KUB BRENDAN", + "uuid": "b31a9224-282c-43ba-b4fb-dae2744f85c4", + "createdAt": "2017-08-21", + "completed": "2022-02-24", + "initiated": "2016-01-04", + "ministryContact": "ORTIZ HARRISON", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -29605,66 +34457,38 @@ ], "notationParticipants": [ { - "uuid": "a1927248-9956-4508-a562-ad76ee0eb413", - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "uuid": "869f7da6-e36e-4d64-b450-7f6ab724ee96", + "uuid": "7499d3fb-8055-41f3-8642-65b275009eac", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false }, { - "uuid": "8102f228-2789-4100-9ac0-31bbb2d9b7a6", + "uuid": "bbd0b508-c0ed-40c5-8a49-b73e551288bd", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false - } - ], - "siteRegistry": true - }, - { - "uuid": "1b7d7f80-c765-4a19-9545-793fa341662a", - "createdAt": "2020-06-13", - "completed": "2016-10-22", - "initiated": "2017-04-28", - "ministryContact": "RUSSEL JEFFRY", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ + }, { - "uuid": "e80ad627-9dc3-4545-830f-7c445695852d", + "uuid": "35996498-043d-4bd6-9801-edf92f724952", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "bf7738c4-1102-425f-8be3-385f3f218200", + "uuid": "4e41d540-c0af-4008-a200-c1f32d074249", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true - }, - { - "uuid": "6d80506b-f1ac-473b-8e9b-62638d3e2fd9", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "98fe7323-460f-4c60-8e9b-03d872cfe7bc", - "createdAt": "2023-04-14", - "completed": "2023-02-09", - "initiated": "2020-07-07", - "ministryContact": "LEDNER KARI", + "uuid": "563ee9a8-4f2d-4b87-9177-17024e1ec63f", + "createdAt": "2015-01-02", + "completed": "2015-05-26", + "initiated": "2015-09-08", + "ministryContact": "ONDRICKA FRANCIS", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -29673,140 +34497,205 @@ ], "notationParticipants": [ { - "uuid": "ae3df988-dfbc-4403-af88-37ab8793e7ab", - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "de545ada-388f-48fe-85ad-caa4d38e2a57", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "4ff87adc-f6ae-4f3a-8798-803b6d5ed984", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - } - ], - "siteRegistry": false - }, - { - "uuid": "7200eab0-5d34-4d14-805c-f8ca959d4577", - "createdAt": "2022-11-09", - "completed": "2017-04-08", - "initiated": "2019-01-30", - "ministryContact": "LOCKMAN ANAIS", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "uuid": "7e019541-3b4c-4f7f-8f80-370b954581b4", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true + "uuid": "e799adbc-b1e8-4c59-9645-4a5a93887d3a", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false }, { - "uuid": "700bf0cd-5b2a-4251-ab54-10e356a6795f", + "uuid": "60e78f11-655a-4098-af23-1b035908fd83", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false } ], "participants": [ { - "uuid": "4c15af76-c672-43fa-9432-17d783aee19b", - "name": "SHELL CANADA PRODUCTS", - "endDate": "2023-09-10", - "startDate": "2021-03-21", + "uuid": "94fda6dc-a7bc-4932-80c4-5d050f4d9545", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2019-04-30", + "startDate": "2015-11-02", "notes": "", "roles": [ "ORGANIZATION" ], + "siteRegistry": false + }, + { + "uuid": "205a692a-f27a-4931-9f4e-a644a34e52c1", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2014-03-09", + "startDate": "2018-07-20", + "notes": "", + "roles": [ + "EMPLOYEE" + ], "siteRegistry": true }, { - "uuid": "3983368c-7f7e-4543-be83-ea2bbff6c468", - "name": "AMET, DOLOR SIT", - "endDate": "2023-07-22", - "startDate": "2018-12-25", + "uuid": "65a7499b-c596-490b-9483-9039b334d1ba", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2020-08-26", + "startDate": "2019-07-07", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true + } + ], + "documents": [ + { + "uuid": "79548a3d-2bb2-4c94-8f7d-2c45c0cdb640", + "siteRegistry": true, + "documentDate": "2015-08-22", + "receivedDate": "2018-12-10", + "uploadedDate": "2016-08-06", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "9f1e1831-cfa4-4a46-ab5e-0e0f8f955c49", + "name": "IPSUM", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "5185aadd-09cc-4de4-9590-9f800bba96a5", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": true, + "role": "AUTHOR" + } + ] + }, + { + "uuid": "e3aa4921-aaae-4f6b-a212-98d890ed2674", + "siteRegistry": false, + "documentDate": "2023-05-21", + "receivedDate": "2021-03-12", + "uploadedDate": "2019-06-13", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "0c6dea43-ff04-438d-91a4-431ceaaa62e5", + "name": "IPSUM", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "47930889-d65e-4e62-91a4-2bae4cb775bc", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": false, + "role": "AUTHOR" + } + ] } ], "suspectLandUses": [ { - "uuid": "0dfc337b-633f-4475-a9fe-3b1eed61ade0", + "uuid": "8574ab51-e2ef-467e-8698-982d2f596f80", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-01-23 (described on Site Profile dated 2019-01-23)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "notes": "INSERTED FOR SITE PROFILE DATED 2022-10-31 (described on Site Profile dated 2022-10-31)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "uuid": "8186ec4d-23fb-4cab-9793-1c7a4a4b8c1c", + "uuid": "0d602300-a164-4f93-a35f-9a9045aaca07", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-12-12 (described on Site Profile dated 2015-12-12)", + "notes": "INSERTED FOR SITE PROFILE DATED 2018-08-03 (described on Site Profile dated 2018-08-03)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" - } - ], - "parcelDescriptions": [ + }, { - "uuid": "84ec5eee-376b-4548-af61-f0ec21de2602", + "uuid": "1f0337b8-54d8-4ad9-80a1-092378bd1bfa", "siteRegistry": false, - "dateNoted": "2022-02-01", - "parcelID": "19397", - "crownLandUsePIN": "16503", - "crownLandFileNumber": "17041", - "landDescription": "LOT 5 OF LOT 1 BLOCK 3 DISTRICT LOT 3 PLAN 3028" + "notes": "INSERTED FOR SITE PROFILE DATED 2020-08-31 (described on Site Profile dated 2020-08-31)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "uuid": "d37f87db-bf11-4dfd-8096-7f32c0cd2d2a", + "uuid": "ec2d201a-eb24-4480-bb57-5c8105b57116", "siteRegistry": false, - "dateNoted": "2015-09-17", - "parcelID": "18041", - "crownLandUsePIN": "19622", - "crownLandFileNumber": "17221", - "landDescription": "LOT 5 OF LOT 5 BLOCK 1 DISTRICT LOT 3 PLAN 2920" + "notes": "INSERTED FOR SITE PROFILE DATED 2017-07-26 (described on Site Profile dated 2017-07-26)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], - "siteDisclosures": [ + "parcelDescriptions": [ { - "uuid": "025abea9-d5a3-418d-9cd8-5c11a95fb7eb", + "uuid": "001332d7-1892-49ee-9aa6-16e38c190baf", + "siteRegistry": true, + "dateNoted": "2014-06-17", + "parcelID": "17947", + "crownLandUsePIN": "15232", + "crownLandFileNumber": "18215", + "landDescription": "LOT 1 OF LOT 5 BLOCK 1 DISTRICT LOT 5 PLAN 6768" + }, + { + "uuid": "688d56bf-7c26-4e09-939d-ca8f50bc8368", "siteRegistry": false, - "dateReceived": "2019-09-26", - "dateCompleted": "2023-02-01", - "dateEntered": "2014-01-03", - "dateRegistrar": "2017-06-22", - "dateLocalAuthorityReceived": "2018-11-08", - "summary": "Ullam ratione repudiandae ex magni ipsum quisquam.", - "informationUsed": "Culpa natus numquam recusandae.\nPariatur perspiciatis quae repellendus quae rerum provident.\nRatione possimus aliquam impedit porro corporis deserunt doloribus.\nRerum dolores inventore sed quidem nesciunt laudantium inventore facilis corporis.\nFugiat omnis magni dolores.", - "pastOrPresentOrders": "Laboriosam impedit enim eius quae sequi.\nOmnis eaque architecto iure reiciendis earum aut neque.", - "commercialAndIndustrialPurposes": [ - { - "uuid": "a87c815b-e08c-46e8-bf0b-5b6df3513349", - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true - }, + "dateNoted": "2017-06-01", + "parcelID": "17627", + "crownLandUsePIN": "16007", + "crownLandFileNumber": "18367", + "landDescription": "LOT 2 OF LOT 3 BLOCK 2 DISTRICT LOT 5 PLAN 8519" + }, + { + "uuid": "d0b620e7-a824-4b3c-9d9a-7d14fdabf615", + "siteRegistry": true, + "dateNoted": "2013-10-30", + "parcelID": "20742", + "crownLandUsePIN": "16543", + "crownLandFileNumber": "20423", + "landDescription": "LOT 4 OF LOT 2 BLOCK 3 DISTRICT LOT 2 PLAN 9238" + }, + { + "uuid": "7f21cd07-486e-485f-94ce-eb33381aedbb", + "siteRegistry": false, + "dateNoted": "2022-03-05", + "parcelID": "16754", + "crownLandUsePIN": "20466", + "crownLandFileNumber": "17949", + "landDescription": "LOT 5 OF LOT 3 BLOCK 3 DISTRICT LOT 3 PLAN 3740" + } + ], + "siteDisclosures": [ + { + "uuid": "5e3159e6-2821-4089-8250-78e3c199d3b2", + "siteRegistry": true, + "dateReceived": "2018-02-01", + "dateCompleted": "2022-05-22", + "dateEntered": "2018-12-16", + "dateRegistrar": "2015-10-24", + "dateLocalAuthorityReceived": "2021-05-20", + "summary": "Odio suscipit nulla nulla dolor officia inventore.\nRepudiandae ut animi nisi minima minima voluptas.\nA facilis vero quo iure.", + "informationUsed": "Qui reprehenderit consectetur repellat eius voluptatum.\nNumquam cumque eius voluptas.\nIure facere tempora.\nNulla est consequuntur quam omnis dicta quod.", + "pastOrPresentOrders": "A autem occaecati error.", + "commercialAndIndustrialPurposes": [ { - "uuid": "ad1a2040-478b-4afa-a886-8c897f74a464", + "uuid": "1ead0c7c-b612-425b-ae17-5ef44f7fab2e", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true + "siteRegistry": false + }, + { + "uuid": "210781eb-5f13-49f4-9e3d-fa349eece801", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false }, { - "uuid": "c0020d31-6ccd-4988-b7ab-04201f9e5d3c", + "uuid": "aec2aaa7-0b2e-429a-bf44-b1cfe60aa4b2", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, { - "uuid": "3d7e393a-2633-4a3e-9da4-8804b795a271", + "uuid": "7bdf6bea-80da-4f29-b898-7b3fcf2d2b17", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false @@ -29814,33 +34703,27 @@ ] }, { - "uuid": "ea2515cb-213c-4cb6-9d65-7981dc720e03", + "uuid": "a73e7728-4170-4143-bb75-d9143060d1fd", "siteRegistry": false, - "dateReceived": "2017-04-17", - "dateCompleted": "2015-08-01", - "dateEntered": "2021-08-29", - "dateRegistrar": "2017-01-08", - "dateLocalAuthorityReceived": "2020-03-19", - "summary": "Quae quos aut in tenetur voluptate.\nPerferendis dolores amet.\nReprehenderit eum minus perspiciatis.", - "informationUsed": "Id quas enim quis eos eos.\nOdio inventore excepturi error dolore tempora.\nMaiores ratione odio earum voluptates veritatis fugiat ut illum.\nEnim nam occaecati facilis quisquam.", - "pastOrPresentOrders": "Animi in eaque.\nRepudiandae doloribus rem et eligendi quas.\nHic dolorum quidem ipsum ea labore quae esse.", + "dateReceived": "2021-11-03", + "dateCompleted": "2019-04-22", + "dateEntered": "2023-03-19", + "dateRegistrar": "2019-04-17", + "dateLocalAuthorityReceived": "2013-11-03", + "summary": "Mollitia quod a.\nAnimi et adipisci incidunt quo tenetur.", + "informationUsed": "Cumque fugiat molestias accusamus totam.\nLaudantium molestiae commodi laudantium alias sequi distinctio distinctio praesentium.\nVero quidem id aspernatur.\nDicta itaque ab dolores nam cumque alias dolor.\nVoluptate facilis qui molestias animi laudantium sit dolor id.", + "pastOrPresentOrders": "Iure architecto iure possimus quis necessitatibus.", "commercialAndIndustrialPurposes": [ { - "uuid": "4276184a-5a8f-4c1b-af09-8286debaf4a2", - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "uuid": "413b5600-8e19-4880-86e7-3c82bb771cc8", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, { - "uuid": "d72961e5-3e16-4a1f-90ed-b49a74f66a7f", - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true - }, - { - "uuid": "23e78132-b207-4c40-98ec-be465ec23de4", + "uuid": "88d60fc4-9703-4edb-a08b-28c9efadd6c7", "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false } ] @@ -29848,99 +34731,107 @@ ], "activityLog": [ { - "uuid": "95cf6cd9-363b-4e88-83a7-d3a169de1bb5", - "siteRegistry": true, + "uuid": "c3efe9bf-891a-4d18-b4ef-db4ddfae00c8", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "TORP TIMMOTHY", - "timestamp": "2013-10-26" + "user": "CROOKS-MCDERMOTT MARION", + "timestamp": "2017-02-11" }, { - "uuid": "93a1e694-38ea-43d7-8a4d-d754e37508b6", + "uuid": "51cc6004-22c1-4e16-9327-12bda242b117", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "HANSEN ALDA", - "timestamp": "2021-04-11" + "user": "SCHROEDER BETSY", + "timestamp": "2015-11-02" }, { - "uuid": "287a6443-2634-4e36-a92e-e619b056ebb0", + "uuid": "4868fe2f-c3f7-40a8-b242-e8f7bd6c2bf6", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "WALSH ALDEN", - "timestamp": "2018-11-25" + "user": "CASPER LEONORA", + "timestamp": "2020-12-12" }, { - "uuid": "41a3a180-7e7f-428d-9698-f6914482f8cf", + "uuid": "97e31171-a2c6-4477-ba95-a7c0f351c173", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "SCHUPPE JUDGE", - "timestamp": "2020-05-06" + "user": "GOYETTE CASANDRA", + "timestamp": "2021-08-23" }, { - "uuid": "e3fd13c4-cfef-4f1d-bf3e-2cdbc2236868", - "siteRegistry": true, + "uuid": "6c0dcb95-56a9-4026-8fb9-aad01b5c1710", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "DOOLEY SANTOS", - "timestamp": "2016-06-26" + "user": "JOHNS ODIE", + "timestamp": "2021-02-12" }, { - "uuid": "4a416443-676f-4525-af28-6579b367605d", + "uuid": "3ccc62b1-0b26-4abc-8367-004c964306ae", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "SCHULIST ESTEFANIA", - "timestamp": "2021-04-18" + "user": "RUSSEL SONYA", + "timestamp": "2020-11-26" }, { - "uuid": "013b351f-2cbb-49c8-99a5-8ccc748282dd", + "uuid": "78ff4805-3618-486d-8613-3ef053330b40", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "SCHUMM HOLLIS", - "timestamp": "2019-02-17" + "user": "SCHNEIDER MAURICIO", + "timestamp": "2016-08-20" }, { - "uuid": "1f86f3d5-ab11-435a-91e6-ca9631e970f2", - "siteRegistry": true, + "uuid": "76afcc04-86fd-4be5-94fa-e68893816ec5", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "POUROS TREVER", - "timestamp": "2023-04-20" + "user": "LITTEL LAVINIA", + "timestamp": "2021-11-11" } ], "associatedSites": [ { - "uuid": "c022627d-2a3e-4477-9432-0d8f3a37305f", - "dateNoted": "2022-11-20", + "uuid": "9b31bfaf-9962-4cfd-a10a-55332a1ec0db", + "dateNoted": "2017-05-15", + "notes": "", + "parcelID": "20872", + "siteID": "18080", + "siteRegistry": false + }, + { + "uuid": "c2ee8987-7764-48a7-8293-acf36f95c0eb", + "dateNoted": "2017-11-06", "notes": "", - "parcelID": "18779", - "siteID": "20154", + "parcelID": "17342", + "siteID": "19389", "siteRegistry": true } ] }, { - "uuid": "a9591033-b8cb-47c6-95a9-a088c2cde8be", - "siteID": 20013, - "address": "990 Anabel Road", - "latitude": 51.5927, - "longitude": -125.4879, - "lastUpdated": "2019-01-07", - "city": "Huelsfield", - "region": "Vancouver Island/Coast", - "victoriaFile": "26250-20/10742", + "uuid": "d69f9718-80db-4ea0-9e66-5431fd8d14d6", + "siteID": 20542, + "address": "633 Witting Views", + "latitude": 49.4824, + "longitude": -130.6951, + "lastUpdated": "2021-06-14", + "city": "Bellevue", + "region": "Thompson-Okanagan", + "victoriaFile": "26250-20/8640", "regionalFile": "N/A", "parcelIDs": [ - 461706, - 511250, - 7538469, - 4999719, - 2439589 + 2401787, + 2515337, + 6756027, + 1976745, + 7511520 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "46eed5d6-5dab-4e15-b68f-265732328813", - "createdAt": "2017-04-16", - "completed": "2020-05-20", - "initiated": "2014-06-09", - "ministryContact": "MCCULLOUGH ROSSIE", + "uuid": "6caaa1ac-f37a-4ece-a6bb-0c4354832ea7", + "createdAt": "2018-08-10", + "completed": "2018-01-02", + "initiated": "2014-10-24", + "ministryContact": "CARTWRIGHT GILBERT", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -29949,38 +34840,44 @@ ], "notationParticipants": [ { - "uuid": "00eea0eb-3ef9-4dba-b2f1-5798940fd962", + "uuid": "147b3824-5972-4460-baea-1fc0265de829", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "f43841a7-58f7-444f-8b39-0350cef3b19f", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "87f59824-7c5a-478b-979a-41ca6b82d902", + "uuid": "43207852-4a0c-4ab2-bdde-0be6785c37be", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "ab87b208-84d8-4042-a264-c99fdd61f469", + "uuid": "e58e222d-281d-4419-ad84-ac8cd69f1b27", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "6a721ebd-7ac7-4958-b1be-4c4ab8a02eb6", + "uuid": "2e28a05b-3df3-4c1c-a065-40b456386ea1", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false + "role": "REQUESTED BY", + "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "5ac888ac-f896-42f9-b7f9-787762a05e71", - "createdAt": "2023-02-04", - "completed": "2014-10-06", - "initiated": "2018-03-12", - "ministryContact": "LARKIN FLOYD", + "uuid": "06362dfa-897e-4f2b-b80d-07ef33285e86", + "createdAt": "2020-08-11", + "completed": "2019-05-12", + "initiated": "2015-10-21", + "ministryContact": "JOHNSON BENNETT", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -29989,44 +34886,32 @@ ], "notationParticipants": [ { - "uuid": "04a21cdb-4578-4249-9f21-e7f3054f73c7", - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "uuid": "252436a6-565e-440d-b9f9-6fed22654913", + "uuid": "372a1d16-9383-462d-8a82-52c82a1f5d77", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "uuid": "3dbfc03e-d559-4366-8f7b-d97bdcbae52c", - "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "8d71900e-3cbb-46a6-82d4-277a8076ce04", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "uuid": "0782b12d-289a-4ec0-9225-9430a3c160d9", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": true }, { - "uuid": "ac6fdbab-a481-4bac-963f-d0741c303b64", - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "9a78f7f1-72a8-4279-9c7e-772465e04ca7", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "0a1bae8b-48f0-459a-9e67-65b05c36408f", - "createdAt": "2023-07-15", - "completed": "2020-07-11", - "initiated": "2014-02-25", - "ministryContact": "POUROS-LEFFLER TYLER", + "uuid": "4e7a5f0b-429e-47ef-a24c-7ba4783f469c", + "createdAt": "2021-05-18", + "completed": "2015-09-10", + "initiated": "2016-07-22", + "ministryContact": "BLANDA DIEGO", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -30035,27 +34920,27 @@ ], "notationParticipants": [ { - "uuid": "d8f4d55a-7cfc-49ba-a008-6c7f0f9652f0", + "uuid": "715d063a-7f89-4d76-bf47-957e0a1b2738", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true + "role": "REQUESTED BY", + "siteRegistry": false }, { - "uuid": "e6e32888-8c61-4081-acbe-dfe5d14bc76d", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "uuid": "cb9f3159-d1ef-4d14-afcb-dcd1680f6363", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false } ], "participants": [ { - "uuid": "f137d92b-ff36-4b6f-8679-82fce74e64a1", - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2023-09-09", - "startDate": "2023-04-16", + "uuid": "18e90f7e-ab47-4ddf-aac4-3ce531e46b25", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2023-09-15", + "startDate": "2014-02-04", "notes": "", "roles": [ "ORGANIZATION" @@ -30063,196 +34948,309 @@ "siteRegistry": false }, { - "uuid": "245d18b7-f13d-4407-81ce-f55461116725", + "uuid": "69324597-4b8c-4422-b5db-bcc0adacac1a", "name": "AMET, DOLOR SIT", - "endDate": "2020-03-14", - "startDate": "2020-09-27", + "endDate": "2016-04-07", + "startDate": "2016-03-04", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "uuid": "0169b189-71c3-497b-b9e7-b750aefcf298", + "name": "AMET, DOLOR SIT", + "endDate": "2016-11-30", + "startDate": "2020-05-02", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "uuid": "8e474998-d006-42e3-939b-931b9cfd105a", + "name": "AMET, DOLOR SIT", + "endDate": "2018-09-12", + "startDate": "2021-06-28", + "notes": "", + "roles": [ + "EMPLOYEE" ], "siteRegistry": false } ], + "documents": [ + { + "uuid": "2fb48b7c-d559-4799-b9fc-210293e4c8ee", + "siteRegistry": true, + "documentDate": "2022-02-11", + "receivedDate": "2022-05-16", + "uploadedDate": "2022-06-18", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "89b996f8-7c87-4533-ab1e-5da5cb5d578e", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "ccae3acc-371f-4ab3-a5a4-d3c20d621336", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "f26547d1-a2e3-4cba-9cf2-a67353434bc9", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": true, + "role": "AUTHOR" + } + ] + }, + { + "uuid": "0ca2270e-4a15-4d21-a18e-ec5d4af37d8d", + "siteRegistry": false, + "documentDate": "2018-11-27", + "receivedDate": "2018-03-28", + "uploadedDate": "2016-03-23", + "title": "Preliminary Site Investigation, Detailed Site Investigation and Remedial Plan for the Management Area adjacent to the Shell Site at 1503 West 41st Ave", + "participants": [ + { + "uuid": "4a6ff182-8fe2-41b0-9ca1-1c29461f81fa", + "name": "AMET, DOLOR SIT", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "4eb94cf7-e1d8-4e34-893c-6ebaef96b47f", + "name": "IPSUM", + "siteRegistry": true, + "role": "AUTHOR" + } + ] + } + ], "suspectLandUses": [ { - "uuid": "3f1f9f71-5ee7-4126-8702-e8a6de4931ea", + "uuid": "77e4938c-a4d6-4d73-8ae0-ffd863e6eb92", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2013-12-15 (described on Site Profile dated 2013-12-15)", + "notes": "INSERTED FOR SITE PROFILE DATED 2018-01-13 (described on Site Profile dated 2018-01-13)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "uuid": "401f835a-690f-41a7-8e20-249d57fde3b5", - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2023-05-15 (described on Site Profile dated 2023-05-15)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" - }, - { - "uuid": "d83e7c8f-6f7c-4d50-842b-3c19161fb68b", + "uuid": "8b3574b5-6d89-4d9c-b47f-9f5bad66629e", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2023-01-08 (described on Site Profile dated 2023-01-08)", + "notes": "INSERTED FOR SITE PROFILE DATED 2014-08-31 (described on Site Profile dated 2014-08-31)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], "parcelDescriptions": [ { - "uuid": "067d883e-37d1-4e01-a673-5334459ac496", - "siteRegistry": true, - "dateNoted": "2020-08-09", - "parcelID": "20280", - "crownLandUsePIN": "17716", - "crownLandFileNumber": "17831", - "landDescription": "LOT 2 OF LOT 4 BLOCK 3 DISTRICT LOT 1 PLAN 4940" - }, - { - "uuid": "a23af53f-daa2-4ca2-bc7b-62687699c262", - "siteRegistry": true, - "dateNoted": "2017-11-09", - "parcelID": "16873", - "crownLandUsePIN": "19019", - "crownLandFileNumber": "18276", - "landDescription": "LOT 2 OF LOT 5 BLOCK 1 DISTRICT LOT 1 PLAN 6742" + "uuid": "6d9da083-06b3-44c9-ab05-df0be1e3e38d", + "siteRegistry": false, + "dateNoted": "2020-09-21", + "parcelID": "18574", + "crownLandUsePIN": "17767", + "crownLandFileNumber": "15395", + "landDescription": "LOT 5 OF LOT 3 BLOCK 3 DISTRICT LOT 3 PLAN 3397" }, { - "uuid": "1748ce49-6f53-4aa2-ba48-db90689a2c7e", + "uuid": "c68ffde5-21e6-447f-aa11-3236fec1ec14", "siteRegistry": true, - "dateNoted": "2018-10-12", - "parcelID": "20109", - "crownLandUsePIN": "17890", - "crownLandFileNumber": "18151", - "landDescription": "LOT 1 OF LOT 4 BLOCK 5 DISTRICT LOT 4 PLAN 3296" + "dateNoted": "2016-03-21", + "parcelID": "16088", + "crownLandUsePIN": "18660", + "crownLandFileNumber": "15254", + "landDescription": "LOT 2 OF LOT 2 BLOCK 2 DISTRICT LOT 5 PLAN 7130" } ], "siteDisclosures": [ { - "uuid": "d0dcde5a-08d5-4804-ac44-30c650e8aac9", - "siteRegistry": false, - "dateReceived": "2017-08-23", - "dateCompleted": "2018-02-01", - "dateEntered": "2021-01-02", - "dateRegistrar": "2014-05-28", - "dateLocalAuthorityReceived": "2017-03-17", - "summary": "Autem animi est et consectetur inventore reprehenderit maiores eum.\nSapiente assumenda pariatur totam eius eaque consequuntur cumque doloribus unde.\nIste nemo architecto provident quidem consectetur cupiditate beatae.", - "informationUsed": "Minus pariatur dolores nesciunt sunt facilis odit molestiae.\nQuam delectus autem iure commodi laudantium facere voluptatum quaerat velit.\nItaque eligendi officiis.\nHarum cum corrupti blanditiis.", - "pastOrPresentOrders": "Cupiditate corrupti accusamus.", + "uuid": "3d62437b-784a-4fd4-92c1-82b3b5be5fa1", + "siteRegistry": true, + "dateReceived": "2017-02-02", + "dateCompleted": "2018-04-11", + "dateEntered": "2015-08-08", + "dateRegistrar": "2014-12-18", + "dateLocalAuthorityReceived": "2019-01-26", + "summary": "Praesentium harum occaecati.", + "informationUsed": "Perferendis tenetur numquam perferendis praesentium provident culpa voluptate accusamus fugiat.\nNeque eaque eveniet.\nPraesentium inventore a tempora.\nQuaerat quibusdam ab vel consequuntur tempora et doloremque molestias.", + "pastOrPresentOrders": "Molestias asperiores sunt ducimus rerum possimus natus.\nQuaerat magni dolore odit suscipit laudantium commodi atque.", "commercialAndIndustrialPurposes": [ { - "uuid": "4d12dca8-e2ce-4ab3-9859-dedbd0f8b55b", - "scheduleReference": "F2*", + "uuid": "fc8402db-4fdd-41f7-9474-8019c3039cf1", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "cf9bf556-3231-4d5d-bf0b-145423c0f535", + "uuid": "9ca54c8b-2086-426a-a66b-1a251f53d96a", "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "uuid": "c415574a-609c-44d6-afc4-e3bb82dc395e", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false + } + ] + }, + { + "uuid": "04f12819-9a33-4af7-afce-4907ff31f9b1", + "siteRegistry": true, + "dateReceived": "2019-09-16", + "dateCompleted": "2019-10-20", + "dateEntered": "2022-08-10", + "dateRegistrar": "2016-08-25", + "dateLocalAuthorityReceived": "2015-08-22", + "summary": "Repellendus et voluptates et praesentium itaque dolorum voluptatem nisi.", + "informationUsed": "Aliquam cupiditate in in magnam aut illum.\nIpsa doloribus ea nemo cumque.\nIn culpa hic.\nIpsam quasi expedita quae omnis.\nMinus exercitationem eveniet sequi mollitia.", + "pastOrPresentOrders": "Eum necessitatibus illo ipsa.\nTenetur earum ipsam deserunt.", + "commercialAndIndustrialPurposes": [ + { + "uuid": "44fc8907-ebec-4853-ab65-5be92ebccfb3", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true }, { - "uuid": "0ef20e0b-2989-4f06-877b-978114b5ad4b", + "uuid": "943b524b-4a4c-40b8-b0a7-2ae7dcc487a2", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "258ff403-f691-4ebb-92a5-a289ad1e7a1b", + "uuid": "4c29c1ab-8c49-4d78-80f7-cf4cd8b4f3e6", "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true } ] } ], "activityLog": [ { - "uuid": "f5a7372b-9b72-4546-b88c-63769a5cbc74", + "uuid": "77e1aa69-ea97-478b-8e41-a36f196b3b00", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "SCHOEN LAVINA", - "timestamp": "2022-02-28" + "user": "HERMANN ALIYAH", + "timestamp": "2014-04-09" + }, + { + "uuid": "0a31c1c3-289e-4c2b-a007-51e95a6509cd", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "PROSACCO MARILOU", + "timestamp": "2017-10-14" + }, + { + "uuid": "21258089-0fd1-426c-913f-dbb8f642b9fc", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "BINS LILLA", + "timestamp": "2015-09-13" }, { - "uuid": "1fb99452-a882-47e7-8e44-2ede543496ec", + "uuid": "67fcf55d-3596-4946-bbf1-311317e37eec", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "KIEHN VIVIENNE", - "timestamp": "2014-02-16" + "user": "TREMBLAY SELENA", + "timestamp": "2021-08-03" + }, + { + "uuid": "2635ca11-2b83-44d2-b920-e840ae25c999", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "KREIGER SHEMAR", + "timestamp": "2023-04-25" + }, + { + "uuid": "c116aa8e-40db-4493-a4a2-4ff335394727", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "FAHEY ADRIANNA", + "timestamp": "2016-01-14" }, { - "uuid": "9a69a88c-f3f7-4755-811c-bbf9e10548d7", + "uuid": "ef0e8ded-07d5-41b4-80e9-3c12243507a9", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "REINGER PIERCE", - "timestamp": "2018-12-28" + "user": "HILLS OBIE", + "timestamp": "2015-06-18" }, { - "uuid": "4e1d22ac-d46d-4404-97d9-819370a940ec", + "uuid": "e65176e7-6f25-43ee-9432-432aba888885", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "WYMAN ENRIQUE", - "timestamp": "2015-11-15" + "user": "BAHRINGER ADOLPH", + "timestamp": "2023-04-17" }, { - "uuid": "db4752e5-2882-44c5-b64d-156797af20f2", + "uuid": "0bcbd22b-97a7-4084-a072-1cd829348115", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "DAVIS KAILEE", - "timestamp": "2015-04-21" + "user": "MURRAY MICHEAL", + "timestamp": "2021-09-21" } ], "associatedSites": [ { - "uuid": "e9f08056-552e-4c35-ae55-3fca9b06997c", - "dateNoted": "2015-09-09", + "uuid": "613f8a04-c867-41b7-993b-c7b6e8ec3d9b", + "dateNoted": "2021-06-30", "notes": "", - "parcelID": "19828", - "siteID": "17362", + "parcelID": "20898", + "siteID": "20520", "siteRegistry": true }, { - "uuid": "d36de2c9-60c9-4e91-948e-7626e6280e02", - "dateNoted": "2015-04-03", + "uuid": "50bd6fc2-4eec-4c7b-87e2-1790e57de9c7", + "dateNoted": "2019-10-09", "notes": "", - "parcelID": "18731", - "siteID": "20112", + "parcelID": "16435", + "siteID": "19173", "siteRegistry": true }, { - "uuid": "d6912b62-2b6c-40ed-bcd5-b6bdeb363bf9", - "dateNoted": "2014-12-16", + "uuid": "3f441c87-44d7-4b89-9b9e-79f43827f75d", + "dateNoted": "2020-07-17", "notes": "", - "parcelID": "16789", - "siteID": "16913", - "siteRegistry": true + "parcelID": "16344", + "siteID": "20880", + "siteRegistry": false } ] }, { - "uuid": "e6cbedf4-feda-49eb-8a6a-451df67c9c63", - "siteID": 18410, - "address": "766 Georgiana Coves", - "latitude": 53.5156, - "longitude": -121.7182, - "lastUpdated": "2013-10-31", - "city": "Cronabury", - "region": "Mainland/Southwest", - "victoriaFile": "26250-20/19040", + "uuid": "091ddfaf-0ee4-475e-a4a9-d41ec39e88e6", + "siteID": 17498, + "address": "5514 Kirlin Rest", + "latitude": 55.5249, + "longitude": -137.2623, + "lastUpdated": "2017-09-06", + "city": "Strosinton", + "region": "Kootenay", + "victoriaFile": "26250-20/6639", "regionalFile": "N/A", "parcelIDs": [ - 6602030, - 9696139, - 8805609, - 9091151, - 395804 + 6342373, + 7309391, + 7403167, + 9311719, + 9157260 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "dcdc617d-f606-4c3c-80bf-0b65cbe19662", - "createdAt": "2016-04-15", - "completed": "2017-03-24", - "initiated": "2018-11-08", - "ministryContact": "MRAZ PRINCESS", + "uuid": "9cea410d-f844-4fe3-bd62-03c3665dd69c", + "createdAt": "2014-06-18", + "completed": "2015-01-08", + "initiated": "2022-09-02", + "ministryContact": "LEHNER ESTELLE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -30261,32 +35259,26 @@ ], "notationParticipants": [ { - "uuid": "90bd932f-2213-4756-bd51-73af968ac792", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "uuid": "bdcb877e-3a6a-4452-842b-59a966bc1f90", + "uuid": "991d176e-7146-4c65-aa65-5e7dc9dbfed5", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "2d8cd6a9-ce61-4ed5-9822-4c0fd58d4216", - "name": "SHELL CANADA PRODUCTS", + "uuid": "23561e71-c100-48e3-8932-2df2d6ff49bd", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "6dd1c39b-acb1-4037-b5fb-1ceadd61ebe5", - "createdAt": "2020-10-10", - "completed": "2014-08-15", - "initiated": "2017-05-15", - "ministryContact": "FRAMI JOSEFINA", + "uuid": "2837db11-6475-4a54-8b47-10bf157d545d", + "createdAt": "2022-11-24", + "completed": "2014-02-22", + "initiated": "2020-12-10", + "ministryContact": "FRAMI MARIANE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -30295,31 +35287,31 @@ ], "notationParticipants": [ { - "uuid": "491a8796-6716-4d30-a124-b271b7688602", + "uuid": "eb598f3d-e474-434b-ba1a-49281ed42d76", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "uuid": "21247870-fa3d-4f93-8cdc-c0f9dfbe1076", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "9e675c00-a4ff-48b3-974f-c6a66ee8b4ca", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false + "uuid": "eb706084-6771-4006-af7a-af71c3336c86", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true }, { - "uuid": "d8d192cf-62bb-4194-b3fb-2f58f3f8706b", - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "b26c4b16-2b00-4b2b-81fd-c7a373e84fec", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "7f08b2b5-49fb-4c7e-9cbe-90952e100ff1", + "uuid": "f67cf1b5-eec4-4aec-aefd-f2c528f5ddb3", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "uuid": "95b49f45-1f58-43f7-a3c0-a97bc14d9e37", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true @@ -30328,11 +35320,11 @@ "siteRegistry": true }, { - "uuid": "d5294c64-c327-474c-b0bf-dc922ef73c4f", - "createdAt": "2017-05-24", - "completed": "2017-07-22", - "initiated": "2019-03-17", - "ministryContact": "HIRTHE MAXIMUS", + "uuid": "c21a85c8-2dce-4109-9f28-2aad711d5939", + "createdAt": "2018-09-05", + "completed": "2018-10-24", + "initiated": "2016-06-23", + "ministryContact": "STOLTENBERG CLIFTON", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -30341,28 +35333,16 @@ ], "notationParticipants": [ { - "uuid": "920308a2-7a6a-4ba9-8df8-95a3a8a8f70e", + "uuid": "79c89f46-cc7d-4c0d-ac61-848b54a52040", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "uuid": "2d4c90c1-3b0e-426b-a560-edebf0600860", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "e6357c8e-8209-4b7e-8ab0-718f6fad92fe", + "uuid": "2650dcce-7b5b-43dc-bfe6-2b5eee103640", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true - }, - { - "uuid": "9468e718-d77f-4d19-944a-c3eb7ddc5f93", - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false } ], "siteRegistry": false @@ -30370,253 +35350,305 @@ ], "participants": [ { - "uuid": "114a9c3c-8bda-41b8-a76a-72278ce6df0b", - "name": "IPSUM", - "endDate": "2017-12-14", - "startDate": "2014-03-23", + "uuid": "82f5fa72-01d9-45b0-bdf1-1fab4c9b50c0", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2017-05-10", + "startDate": "2020-01-11", "notes": "", "roles": [ "ORGANIZATION" ], + "siteRegistry": true + }, + { + "uuid": "e2b40b03-233e-4083-a95a-8412bad049c1", + "name": "AMET, DOLOR SIT", + "endDate": "2019-04-12", + "startDate": "2022-05-12", + "notes": "", + "roles": [ + "EMPLOYEE" + ], "siteRegistry": false }, { - "uuid": "c338b941-7142-4ae4-b1b4-161da18ceb2f", + "uuid": "33679da5-f92c-43cb-9d6a-285e918ef8b8", "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2020-01-14", - "startDate": "2014-06-19", + "endDate": "2015-08-10", + "startDate": "2014-03-02", "notes": "", "roles": [ "EMPLOYEE" ], + "siteRegistry": true + }, + { + "uuid": "b48ce4cc-628f-48f4-8ac7-18f532151a59", + "name": "AMET, DOLOR SIT", + "endDate": "2015-08-24", + "startDate": "2021-06-08", + "notes": "", + "roles": [ + "ORGANIZATION" + ], "siteRegistry": false } ], - "suspectLandUses": [ + "documents": [ { - "uuid": "5c76e268-3310-4e35-a2aa-3e3d578e0051", + "uuid": "144083dc-ac07-4eff-a79c-28ec49f13e8d", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-08-17 (described on Site Profile dated 2017-08-17)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "documentDate": "2020-07-21", + "receivedDate": "2023-08-09", + "uploadedDate": "2021-11-04", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "176ce2ed-66e8-4090-b568-adbb241c6c7b", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "acccffa4-4e0a-4782-848f-87b3aaeb7a43", + "name": "IPSUM", + "siteRegistry": false, + "role": "AUTHOR" + } + ] }, { - "uuid": "ef1df433-2f5e-4f5e-afc6-64d4b2353a24", + "uuid": "075e0c8b-54c9-4d32-acce-e3d205ecbf56", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-10-29 (described on Site Profile dated 2015-10-29)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "documentDate": "2014-03-13", + "receivedDate": "2016-07-04", + "uploadedDate": "2023-08-30", + "title": "Summary of Site Conditions, 1537 W 41st Avenue, Vancouver", + "participants": [ + { + "uuid": "608850bb-2cd7-4b02-a11c-caefb5f2c42e", + "name": "IPSUM", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "5ca9ce12-cbd9-4607-91db-6407c2fb0ea7", + "name": "AMET, DOLOR SIT", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "2b273c0c-c243-4967-9c73-388c2228d186", + "name": "AMET, DOLOR SIT", + "siteRegistry": false, + "role": "AUTHOR" + } + ] }, { - "uuid": "a7e7efe0-e89e-49c1-9044-36a201c9112a", - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-11-14 (described on Site Profile dated 2017-11-14)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "uuid": "034d3ac0-7e7e-43d7-8e75-992ed6d92dbc", + "siteRegistry": false, + "documentDate": "2016-07-07", + "receivedDate": "2022-01-21", + "uploadedDate": "2018-02-08", + "title": "Preliminary Site Investigation, Detailed Site Investigation and Remedial Plan for the Management Area adjacent to the Shell Site at 1503 West 41st Ave", + "participants": [ + { + "uuid": "8c7bf352-2b7d-485d-b247-8e07eda589da", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": false, + "role": "AUTHOR" + } + ] + }, + { + "uuid": "08f3c164-a240-4d6b-a6e0-0dd772e23e51", + "siteRegistry": false, + "documentDate": "2022-02-02", + "receivedDate": "2018-04-18", + "uploadedDate": "2014-11-10", + "title": "Summary of Site Conditions, 1537 W 41st Avenue, Vancouver", + "participants": [ + { + "uuid": "0ea09d00-2e8e-4e58-be8d-d43df0e53f93", + "name": "AMET, DOLOR SIT", + "siteRegistry": true, + "role": "AUTHOR" + } + ] + }, + { + "uuid": "5add7856-2988-41eb-a453-02d79ef34799", + "siteRegistry": false, + "documentDate": "2020-01-10", + "receivedDate": "2021-08-16", + "uploadedDate": "2021-09-19", + "title": "Summary of Site Conditions, 1537 W 41st Avenue, Vancouver", + "participants": [ + { + "uuid": "fa8c3123-ea25-4998-bdad-bd4f05c6a8e0", + "name": "IPSUM", + "siteRegistry": true, + "role": "AUTHOR" + } + ] } ], - "parcelDescriptions": [ + "suspectLandUses": [ { - "uuid": "815933ad-f890-4cf2-9bf7-abbb2ec943e5", + "uuid": "f68dda1d-c2bb-40ea-a81b-b7fa2f21f31e", "siteRegistry": true, - "dateNoted": "2022-07-03", - "parcelID": "20397", - "crownLandUsePIN": "19844", - "crownLandFileNumber": "20079", - "landDescription": "LOT 1 OF LOT 5 BLOCK 1 DISTRICT LOT 1 PLAN 4169" + "notes": "INSERTED FOR SITE PROFILE DATED 2020-01-03 (described on Site Profile dated 2020-01-03)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "uuid": "3b65205f-e6f2-4ef7-93fb-1673c14e404e", + "uuid": "0f79bbc5-d24e-49d4-be9a-b2817d4e4b6f", "siteRegistry": false, - "dateNoted": "2016-10-25", - "parcelID": "19147", - "crownLandUsePIN": "16045", - "crownLandFileNumber": "17510", - "landDescription": "LOT 3 OF LOT 1 BLOCK 3 DISTRICT LOT 2 PLAN 7754" + "notes": "INSERTED FOR SITE PROFILE DATED 2021-05-19 (described on Site Profile dated 2021-05-19)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "uuid": "d7160078-28f6-4ead-80cc-f23e0229effd", - "siteRegistry": true, - "dateNoted": "2019-02-10", - "parcelID": "16484", - "crownLandUsePIN": "20649", - "crownLandFileNumber": "20721", - "landDescription": "LOT 4 OF LOT 1 BLOCK 3 DISTRICT LOT 3 PLAN 7214" + "uuid": "fc0ac9d5-eb64-4874-bde9-9d9b2fde9fdd", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2020-08-04 (described on Site Profile dated 2020-08-04)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], - "siteDisclosures": [ + "parcelDescriptions": [ { - "uuid": "fd1e7f87-f498-49fa-89a9-bc1eb439ca1e", + "uuid": "62f8cad4-b497-4930-9b0f-1b298749b420", "siteRegistry": true, - "dateReceived": "2021-11-21", - "dateCompleted": "2018-10-09", - "dateEntered": "2020-01-17", - "dateRegistrar": "2019-05-11", - "dateLocalAuthorityReceived": "2020-04-30", - "summary": "Rem adipisci dolores eos sit adipisci illum voluptates ipsum.\nDolore ea amet enim eveniet.\nOfficiis quae consequuntur quae tempore accusamus odio at.", - "informationUsed": "Consectetur cum atque vel odit cupiditate.\nNesciunt doloribus amet suscipit praesentium pariatur inventore dolorum facere dicta.\nVeritatis laudantium placeat debitis ipsum.\nConsequatur nobis ipsam hic distinctio a aliquam deserunt consequatur et.\nPerferendis eveniet facilis et aspernatur tempora.", - "pastOrPresentOrders": "Ipsa sunt ex nisi assumenda vitae veritatis debitis nulla.\nAdipisci delectus praesentium a deleniti aperiam consequatur exercitationem iusto totam.", - "commercialAndIndustrialPurposes": [ - { - "uuid": "30dc2cbb-3652-4b05-92aa-1bdafded3d2e", - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true - }, - { - "uuid": "3d88d7f1-f23f-4dd9-8f87-286311f10759", - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false - }, - { - "uuid": "f7cf794a-5dba-4c72-aa3f-35051b1104c2", - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false - }, - { - "uuid": "3e2bd2f1-05f7-407d-80bb-99706e01880d", - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true - } - ] + "dateNoted": "2015-11-18", + "parcelID": "19319", + "crownLandUsePIN": "17948", + "crownLandFileNumber": "20794", + "landDescription": "LOT 3 OF LOT 3 BLOCK 1 DISTRICT LOT 2 PLAN 7982" }, { - "uuid": "22c0f434-c7cb-49b1-bb67-be935aca3a7c", + "uuid": "b061a88d-f3a1-4683-89b1-f441c8332689", "siteRegistry": false, - "dateReceived": "2020-08-13", - "dateCompleted": "2017-01-07", - "dateEntered": "2019-11-13", - "dateRegistrar": "2013-10-24", - "dateLocalAuthorityReceived": "2016-05-24", - "summary": "Veritatis ipsa autem voluptatibus fugit necessitatibus.", - "informationUsed": "Perspiciatis et error quidem nostrum qui ea facere.\nCumque maiores necessitatibus.\nPorro voluptas dolores dignissimos commodi eos reprehenderit nihil autem.", - "pastOrPresentOrders": "Tempore consectetur veniam veniam occaecati at.\nExercitationem veritatis aut suscipit.\nAperiam doloribus eum.", + "dateNoted": "2023-02-12", + "parcelID": "18977", + "crownLandUsePIN": "15883", + "crownLandFileNumber": "17375", + "landDescription": "LOT 4 OF LOT 2 BLOCK 2 DISTRICT LOT 5 PLAN 3778" + } + ], + "siteDisclosures": [ + { + "uuid": "63a59c3c-4ee5-4b4d-bbc5-99154d97d049", + "siteRegistry": true, + "dateReceived": "2019-01-22", + "dateCompleted": "2018-11-23", + "dateEntered": "2014-04-25", + "dateRegistrar": "2018-04-27", + "dateLocalAuthorityReceived": "2018-01-29", + "summary": "Architecto minus quas.", + "informationUsed": "Incidunt nulla non nam.\nCum repellendus odio labore quisquam molestias assumenda.\nAdipisci maiores reprehenderit delectus repellendus.\nDucimus nemo facilis corporis.", + "pastOrPresentOrders": "Nemo veniam optio voluptatibus.", "commercialAndIndustrialPurposes": [ { - "uuid": "e7c6206c-adc8-46c7-8ce7-a8dc99815964", + "uuid": "13ddb3e9-2817-4caf-ae48-2b279e1e1eb2", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "8b5436c4-1455-4c3c-b061-e8c3b7a24d99", + "uuid": "96a67923-350d-4543-921d-2fbfd2fa7b44", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false }, { - "uuid": "b71fad3d-5647-4ab4-942d-58e083c40338", - "scheduleReference": "F2*", + "uuid": "eae03147-9c1c-474f-9695-b181e8652ed4", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true + "siteRegistry": false } ] } ], "activityLog": [ { - "uuid": "5944494e-0a20-4cc8-9562-b0ad823cd263", + "uuid": "0cdd048d-a0b6-4ad5-8d6d-eebe22a0e460", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "FRANECKI KRAIG", - "timestamp": "2020-02-04" + "user": "BEER DAWSON", + "timestamp": "2014-07-01" }, { - "uuid": "c1eaff50-dd95-476f-a1a9-d506c83fc998", + "uuid": "c81f2e42-95b5-464d-b09a-624162dd9add", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "SCHMELER JAZMYN", - "timestamp": "2014-09-15" + "user": "HEGMANN DEMOND", + "timestamp": "2022-01-05" }, { - "uuid": "63160a9f-03d4-4cad-889c-193db833c051", + "uuid": "cb9de6a0-ad05-41b6-ad95-a70c33b39dea", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "TRANTOW MAKAYLA", - "timestamp": "2016-01-14" + "user": "KOVACEK-CHRISTIANSEN MYRA", + "timestamp": "2022-08-30" }, { - "uuid": "d4a9b46c-97ee-4470-ac7e-dc7f79545d53", + "uuid": "9528dd3d-775c-437d-9e9d-484dead5ac6a", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "MORISSETTE DEXTER", - "timestamp": "2014-03-10" + "user": "PFANNERSTILL ROGERS", + "timestamp": "2017-09-23" }, { - "uuid": "b8d4b2fd-85f5-48b9-912a-452824240473", + "uuid": "0437df7e-13d5-4b90-904b-ed562847851d", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "CASPER ZACHARIAH", - "timestamp": "2014-11-29" - }, - { - "uuid": "d3d319ac-d91d-4eca-bc39-0031ccc3c723", - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "NITZSCHE CONOR", - "timestamp": "2016-11-16" + "user": "KLING ALEXANE", + "timestamp": "2014-03-05" }, { - "uuid": "33c22d95-3294-43a4-afba-53cf07e2535e", + "uuid": "82e494c4-662f-4e82-ae9d-d1824a65d569", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "TERRY RASHAWN", - "timestamp": "2018-05-31" + "user": "DANIEL OTTIS", + "timestamp": "2022-02-17" } ], "associatedSites": [ { - "uuid": "d8eeb3c3-8a28-447a-80af-9d26350ce205", - "dateNoted": "2021-08-03", - "notes": "", - "parcelID": "18812", - "siteID": "20013", - "siteRegistry": true - }, - { - "uuid": "6a0801c2-7d21-40c3-8045-faa278beb69c", - "dateNoted": "2019-04-01", + "uuid": "18abc6c7-44f4-42c7-a0d3-29c05f0c4a08", + "dateNoted": "2023-07-14", "notes": "", - "parcelID": "15986", - "siteID": "17172", + "parcelID": "20967", + "siteID": "18063", "siteRegistry": true - }, - { - "uuid": "8f3eb606-8a8e-40f4-96b6-54e4ebccb7e7", - "dateNoted": "2019-11-14", - "notes": "", - "parcelID": "19956", - "siteID": "17608", - "siteRegistry": false } ] }, { - "uuid": "cf0920ca-6940-4853-bd60-733e7c1dc774", - "siteID": 20304, - "address": "30779 Kelley Ridge", - "latitude": 54.8508, - "longitude": -126.1765, - "lastUpdated": "2022-11-26", - "city": "Cummingsland", - "region": "Thompson-Okanagan", - "victoriaFile": "26250-20/16754", + "uuid": "8f1da75e-1fb7-49a0-97c8-41c42fd1d74d", + "siteID": 16295, + "address": "32491 Teresa Run", + "latitude": 51.3486, + "longitude": -126.2465, + "lastUpdated": "2021-10-05", + "city": "Erlingborough", + "region": "Kootenay", + "victoriaFile": "26250-20/13792", "regionalFile": "N/A", "parcelIDs": [ - 7746708, - 9519704, - 1749292, - 6384739, - 4842822 + 6720537, + 847104, + 4699335, + 2783703, + 546442 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "28eebcad-f7e7-46f1-a1ae-b847fce5588a", - "createdAt": "2020-12-21", - "completed": "2019-06-01", - "initiated": "2022-09-01", - "ministryContact": "GERHOLD LEANNA", + "uuid": "fedc96dd-2d7c-4018-9a73-e2597c501625", + "createdAt": "2021-02-01", + "completed": "2016-05-22", + "initiated": "2020-11-22", + "ministryContact": "WINDLER FRIDA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -30625,38 +35657,26 @@ ], "notationParticipants": [ { - "uuid": "0a73fa93-dad2-49ae-810c-de04807066ba", + "uuid": "d6b27fee-bb4e-4679-9bbd-acff3f6c1ce3", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "2aee567e-f15f-4cfa-b69d-f78ab8226d12", + "uuid": "d218fdb9-400d-4b69-86ed-d6e3a4a03912", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "uuid": "14354521-970b-48b0-889d-f3892bd648c7", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "uuid": "dd018e36-7779-477e-94a9-401f4b0b9197", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", "siteRegistry": false } ], "siteRegistry": true }, { - "uuid": "5840190a-8ac9-4df2-b137-91770945a3c3", - "createdAt": "2021-06-19", - "completed": "2016-03-10", - "initiated": "2021-07-05", - "ministryContact": "PADBERG ELIAN", + "uuid": "d6341b65-1f87-4a4e-bf96-f6b7b9241517", + "createdAt": "2016-10-26", + "completed": "2022-11-18", + "initiated": "2017-05-01", + "ministryContact": "CRIST JOSH", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -30665,44 +35685,26 @@ ], "notationParticipants": [ { - "uuid": "11a79319-591f-4ad2-ac6e-6cf6b23e91e6", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "uuid": "4294cdf3-f95d-4d1c-a6b8-c19886349dac", + "uuid": "319b400f-db6a-49f1-ad11-c53404432f74", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "uuid": "035e1c5a-2e7c-4f0b-ae70-19706e6cabdd", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "3becda16-90ff-4263-ad38-87bae06272bb", + "uuid": "08c88995-a5b5-4e2d-9a7a-0173758d69ed", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "uuid": "d57cf3a2-c98f-450b-bbc4-6cf0d7e3d527", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "a3052e7f-2fe8-4d3b-b8ae-c77a6ecd319f", - "createdAt": "2023-03-10", - "completed": "2016-06-06", - "initiated": "2016-01-08", - "ministryContact": "WITTING FANNIE", + "uuid": "2b3d1892-95f6-4b34-a0e8-81ccf81f17ed", + "createdAt": "2022-12-20", + "completed": "2018-08-26", + "initiated": "2023-02-27", + "ministryContact": "GLEASON LIA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -30711,38 +35713,26 @@ ], "notationParticipants": [ { - "uuid": "6ad30122-936d-4051-816d-db08e59c1fda", - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "uuid": "91a9ad10-0024-4f2c-961f-6e8f3ed8ce4a", - "name": "SHELL CANADA PRODUCTS", + "uuid": "317d5f16-55b4-457f-9dc3-6ee1b53d742a", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false }, { - "uuid": "4e9ab6c4-a1bd-43a4-b465-56a7104ddcb0", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "uuid": "23b01ec2-701f-42cf-876e-afe0a8601a2b", + "uuid": "9bbc7f0d-965b-4a3d-a2fe-d84d9ce1c79f", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true + "role": "REQUESTED BY", + "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "6c14d9ca-8333-434f-ab7f-7987c202f192", - "createdAt": "2023-06-08", - "completed": "2019-05-20", - "initiated": "2016-05-01", - "ministryContact": "LEHNER-RATKE ALVAH", + "uuid": "9dc65de7-dc0c-4cd5-89b0-50a6a62c4921", + "createdAt": "2015-10-23", + "completed": "2018-08-26", + "initiated": "2020-11-11", + "ministryContact": "WIZA HANNAH", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -30751,38 +35741,44 @@ ], "notationParticipants": [ { - "uuid": "202481b5-d9fd-46dd-8afe-1e2476d4c080", + "uuid": "dd116035-690a-4032-aac6-1fc122551728", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "96cd3a50-9e70-4111-ac69-ec005feb0d5c", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true }, { - "uuid": "888895e9-068e-4e08-984a-fade8a4cc349", - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "e1b5cbec-c93b-43c7-bf50-969e711a7516", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "74b84c00-797e-427d-8f29-484ffe068a73", - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "38b0c8eb-3ca5-4c72-9fac-908bd7a084ce", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "f775f3e5-cac1-467f-a1f6-918967786f40", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "uuid": "1c65781d-990b-442c-acb3-d4fc7a6b3df9", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "dff23640-7a9e-4339-9f7d-8651e8b1507d", - "createdAt": "2016-02-12", - "completed": "2015-10-29", - "initiated": "2019-07-07", - "ministryContact": "PROSACCO ALEXANDRE", + "uuid": "c83df5b0-f031-44ad-817f-715fad048d28", + "createdAt": "2015-05-10", + "completed": "2023-01-22", + "initiated": "2020-09-24", + "ministryContact": "BECKER MABLE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -30791,22 +35787,22 @@ ], "notationParticipants": [ { - "uuid": "e2a1f67e-247a-437d-87f4-538b996b3cc7", + "uuid": "5e1de2ad-cf9b-4224-9172-9693613bb08a", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false }, { - "uuid": "e09a410a-1b08-4da4-892a-9db149a6f48c", - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "1331e54a-5c9c-4cf4-a53c-f7cfed2f8dae", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "7ddc6a5b-0e88-43ab-b18b-32574ed683b1", + "uuid": "aae43420-33d1-4cde-a7db-e40802742e45", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true } ], "siteRegistry": true @@ -30814,10 +35810,10 @@ ], "participants": [ { - "uuid": "916a13c5-a340-42f0-ac89-80c77b5d50a8", + "uuid": "03bb11c0-1381-42d8-b803-eb56c5186d4a", "name": "AMET, DOLOR SIT", - "endDate": "2018-05-31", - "startDate": "2019-02-12", + "endDate": "2014-10-14", + "startDate": "2019-10-08", "notes": "", "roles": [ "EMPLOYEE" @@ -30825,21 +35821,10 @@ "siteRegistry": false }, { - "uuid": "f2d25026-6b73-4743-9a7a-5336277cd8f9", - "name": "AMET, DOLOR SIT", - "endDate": "2014-01-21", - "startDate": "2019-05-19", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": false - }, - { - "uuid": "62cab748-21c7-4ce6-8950-a4b3dddac986", + "uuid": "cdd4b79e-2305-4553-a406-505769f6af1d", "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2016-05-29", - "startDate": "2015-12-10", + "endDate": "2013-11-01", + "startDate": "2014-05-11", "notes": "", "roles": [ "ORGANIZATION" @@ -30847,247 +35832,326 @@ "siteRegistry": true }, { - "uuid": "42351743-1332-4c15-9bd2-69464205efce", - "name": "AMET, DOLOR SIT", - "endDate": "2017-05-18", - "startDate": "2020-10-16", + "uuid": "8e4b4d7e-0504-4b40-a824-b93b6ca36d1b", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2015-01-16", + "startDate": "2023-04-19", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": true } ], - "suspectLandUses": [ + "documents": [ { - "uuid": "08bcf881-6e81-4fa0-870c-041f633a6ea7", + "uuid": "5b536423-76be-4c6d-b6f0-88d1c403c157", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-06-04 (described on Site Profile dated 2018-06-04)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "documentDate": "2018-01-14", + "receivedDate": "2022-12-05", + "uploadedDate": "2021-11-02", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "8fa1c905-79b0-466e-8de4-b1b5c5d71253", + "name": "IPSUM", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "6f8f959f-95df-4395-b56e-527f2bb48d35", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": false, + "role": "AUTHOR" + } + ] }, { - "uuid": "4bcf1bbb-6f4a-40a2-8851-bee85f904b86", + "uuid": "f06bf331-6c8d-4a05-8a77-26f75137bcac", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-08-04 (described on Site Profile dated 2016-08-04)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "documentDate": "2017-03-02", + "receivedDate": "2020-02-24", + "uploadedDate": "2021-04-28", + "title": "Summary of Site Conditions, 1537 W 41st Avenue, Vancouver", + "participants": [ + { + "uuid": "125012a5-7ff3-4422-9cc4-de0bd46b2370", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "7da6a791-585a-49ab-a215-2718bc5dbe2a", + "name": "AMET, DOLOR SIT", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "f3795b49-1241-4a52-8dc9-0ed198137d24", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": true, + "role": "AUTHOR" + } + ] }, { - "uuid": "dafb3af2-3cf5-44ba-915f-7dd30d2e5191", + "uuid": "f4eb0572-29a0-42c5-bb8f-52e639c1a57b", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-04-10 (described on Site Profile dated 2018-04-10)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "documentDate": "2019-09-11", + "receivedDate": "2018-09-19", + "uploadedDate": "2022-10-25", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "1270d6af-9c06-49d1-bb7f-99278f44d780", + "name": "AMET, DOLOR SIT", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "8963480f-8f76-4feb-afd2-182110afbfc3", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": true, + "role": "AUTHOR" + } + ] }, { - "uuid": "2ef7b301-c5a0-4103-9596-1110fbee36f6", + "uuid": "1aa5739e-61f9-4cec-a1d4-13a71d850632", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-10-03 (described on Site Profile dated 2018-10-03)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "documentDate": "2018-05-16", + "receivedDate": "2023-04-01", + "uploadedDate": "2021-11-24", + "title": "Summary of Site Conditions, 1537 W 41st Avenue, Vancouver", + "participants": [ + { + "uuid": "fbe8c385-3f19-49c4-8e66-d4112288a8ad", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": false, + "role": "AUTHOR" + } + ] + } + ], + "suspectLandUses": [ + { + "uuid": "0a60c081-7bb4-4cdb-80b2-6b58536eac29", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2014-02-15 (described on Site Profile dated 2014-02-15)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "uuid": "cd083420-6417-416b-a8b7-e11fa81b74d0", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2020-08-17 (described on Site Profile dated 2020-08-17)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], "parcelDescriptions": [ { - "uuid": "a6cbb48c-1bfa-479c-82a9-872ace1aa0b2", + "uuid": "82bde095-2909-4c26-92fb-2f93ee694ba3", "siteRegistry": true, - "dateNoted": "2023-01-12", - "parcelID": "19063", - "crownLandUsePIN": "15421", - "crownLandFileNumber": "17569", - "landDescription": "LOT 2 OF LOT 1 BLOCK 1 DISTRICT LOT 3 PLAN 8506" + "dateNoted": "2017-12-19", + "parcelID": "15738", + "crownLandUsePIN": "19486", + "crownLandFileNumber": "20529", + "landDescription": "LOT 2 OF LOT 1 BLOCK 3 DISTRICT LOT 1 PLAN 5997" + }, + { + "uuid": "ade7a4d3-6720-4008-bb55-c39394f4f1e3", + "siteRegistry": false, + "dateNoted": "2017-11-26", + "parcelID": "17848", + "crownLandUsePIN": "20912", + "crownLandFileNumber": "19846", + "landDescription": "LOT 4 OF LOT 2 BLOCK 5 DISTRICT LOT 3 PLAN 9187" }, { - "uuid": "a13a4c28-d882-4225-ae8c-2f5a27a89af2", + "uuid": "e3b94102-8f64-4fca-b788-62ee811e63c1", "siteRegistry": true, - "dateNoted": "2019-07-26", - "parcelID": "18853", - "crownLandUsePIN": "18194", - "crownLandFileNumber": "19832", - "landDescription": "LOT 3 OF LOT 4 BLOCK 4 DISTRICT LOT 5 PLAN 7230" + "dateNoted": "2016-02-27", + "parcelID": "19623", + "crownLandUsePIN": "16047", + "crownLandFileNumber": "17089", + "landDescription": "LOT 3 OF LOT 4 BLOCK 3 DISTRICT LOT 1 PLAN 8459" }, { - "uuid": "5c3cc30f-fd28-451f-8a12-3fa9a4529ad7", + "uuid": "a26e63af-03e8-476e-8522-d37f9c58f150", "siteRegistry": false, - "dateNoted": "2016-02-03", - "parcelID": "20401", - "crownLandUsePIN": "16965", - "crownLandFileNumber": "18887", - "landDescription": "LOT 3 OF LOT 3 BLOCK 3 DISTRICT LOT 4 PLAN 5778" + "dateNoted": "2021-08-09", + "parcelID": "17592", + "crownLandUsePIN": "18399", + "crownLandFileNumber": "20467", + "landDescription": "LOT 5 OF LOT 1 BLOCK 4 DISTRICT LOT 3 PLAN 3962" } ], "siteDisclosures": [ { - "uuid": "e47caba5-9afe-4da2-9871-de7daa8d1613", - "siteRegistry": true, - "dateReceived": "2015-04-09", - "dateCompleted": "2020-02-05", - "dateEntered": "2014-09-24", - "dateRegistrar": "2017-04-05", - "dateLocalAuthorityReceived": "2021-06-28", - "summary": "Natus recusandae at laudantium eaque officia nobis tempora.\nVeniam aliquid aperiam in accusamus.\nUt nulla sed ipsum itaque quaerat blanditiis asperiores blanditiis tempora.", - "informationUsed": "Rerum placeat corrupti voluptas tempora illo eius.\nAnimi tempora voluptates deleniti quod neque illum.\nNostrum non aliquam ut ipsum maiores a ex.", - "pastOrPresentOrders": "Ab eaque cumque doloribus qui delectus nesciunt sunt illum laudantium.\nAutem cum necessitatibus minus eveniet pariatur distinctio temporibus.", + "uuid": "df21fec7-7aca-456a-b533-19e12ad14d5f", + "siteRegistry": false, + "dateReceived": "2014-11-10", + "dateCompleted": "2016-05-29", + "dateEntered": "2023-09-28", + "dateRegistrar": "2018-03-17", + "dateLocalAuthorityReceived": "2023-01-29", + "summary": "Et magni repellendus velit atque.", + "informationUsed": "Sint nulla doloribus aperiam harum deleniti cum voluptate.\nDoloribus voluptate consequuntur consequuntur modi repellendus iure dolorum aliquam.\nDelectus aliquam atque iste possimus quisquam ipsam dolore aliquid pariatur.\nMolestiae est corrupti.", + "pastOrPresentOrders": "Repudiandae quam officiis alias nisi minima sapiente.\nIpsum laudantium eaque nesciunt suscipit.\nDicta numquam corrupti aut repellendus laboriosam.", "commercialAndIndustrialPurposes": [ { - "uuid": "7d6ba20f-de46-4fb1-b024-f57ca3c1512c", - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "uuid": "665888dc-01a8-422c-bc4e-1d9d1f122c6a", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false }, { - "uuid": "d18aa44e-0794-4740-8f8c-4a56382f25f3", + "uuid": "efe56409-53fb-4f2b-b493-99cb7d919e22", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "e8016889-a0d5-452d-88df-274082be42f0", + "uuid": "bdd7d15c-5415-4bcc-bed5-7186626b0094", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { - "uuid": "5df2c98b-3855-406d-ae07-0a7b7ad55b9a", - "scheduleReference": "F1*", + "uuid": "f739824d-eea8-44fb-9939-8fbd75638926", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false + "siteRegistry": true } ] }, { - "uuid": "450bf72a-80a0-41c1-b7ad-535c3d1138af", + "uuid": "93846e59-1055-4b7f-966b-ac083f1ea313", "siteRegistry": true, - "dateReceived": "2022-12-30", - "dateCompleted": "2018-10-31", - "dateEntered": "2017-01-11", - "dateRegistrar": "2021-05-09", - "dateLocalAuthorityReceived": "2022-10-25", - "summary": "Ut porro omnis architecto hic.\nRem ad consequuntur porro cumque.\nOfficia eos voluptatibus dolor earum at quibusdam omnis quidem adipisci.", - "informationUsed": "Porro reprehenderit repellendus expedita vero optio minus magni explicabo perspiciatis.\nMinus repellat nemo blanditiis tenetur eius.\nConsequatur voluptatem laboriosam.", - "pastOrPresentOrders": "Dolorem est ipsam itaque at corporis corporis reprehenderit quas tempore.\nTotam tenetur neque sapiente quia perspiciatis alias quidem.\nTempora sequi aliquam temporibus rem.", + "dateReceived": "2019-01-23", + "dateCompleted": "2014-07-05", + "dateEntered": "2014-07-08", + "dateRegistrar": "2014-10-18", + "dateLocalAuthorityReceived": "2020-06-24", + "summary": "Soluta aut mollitia.\nVoluptatum aut laboriosam sed ipsa eaque.", + "informationUsed": "Quisquam quidem cum impedit adipisci ex ipsum beatae placeat.\nAt voluptates cupiditate officia.\nDebitis quibusdam ut sint sit voluptates.\nSapiente tenetur quidem quod commodi quasi ducimus cum.", + "pastOrPresentOrders": "Veniam odit veritatis ex assumenda unde esse.\nAdipisci optio saepe hic perferendis dignissimos quibusdam sunt quod nihil.", "commercialAndIndustrialPurposes": [ { - "uuid": "ad80d0b2-ae8a-41de-b22b-e9fbbd017f6d", + "uuid": "52f826de-83c5-4179-982e-ec7a61e43b27", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "45ee6cf3-3b62-4ed6-8466-a09e74fe0731", + "uuid": "08f9f833-d839-4756-a1f4-ea6efd84e0ea", "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "uuid": "50e0ce7a-18c9-4146-ab69-4dfec639e710", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true } ] } ], "activityLog": [ { - "uuid": "95433dd4-4133-4400-ad6b-7623812eba55", + "uuid": "8a70df14-2a36-482a-bb9f-2ba3bc9aa120", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "ALTENWERTH MABLE", - "timestamp": "2023-08-07" - }, - { - "uuid": "8f3d0b35-4aa9-47c7-8b80-d65dd89e446c", - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "RATH ANDY", - "timestamp": "2014-11-28" + "user": "CONROY BRADFORD", + "timestamp": "2017-09-27" }, { - "uuid": "2f3b2050-5d28-4a9e-91ee-b6c676792499", + "uuid": "ffe57568-9ee4-43e5-a048-9c6c69b14416", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "BEAHAN ANNABEL", - "timestamp": "2021-11-04" - }, - { - "uuid": "497873b2-e714-48d2-a31d-882c0503f0c3", - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "DURGAN STEPHANY", - "timestamp": "2014-10-12" + "user": "MCGLYNN BRET", + "timestamp": "2015-05-23" }, { - "uuid": "cee81b7e-4b32-42dd-9593-d52f77f5f977", + "uuid": "65d8f8ae-b7f7-4f53-82a0-eb907e5ee7fb", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "EMMERICH TABITHA", - "timestamp": "2021-09-08" + "user": "LITTLE LEONE", + "timestamp": "2022-01-06" }, { - "uuid": "ffcac83d-5587-47ea-82ff-20fcde43ab3a", + "uuid": "64b783bb-c7a7-48ae-b6a3-dd97fc774dd3", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "SIPES BRENDAN", - "timestamp": "2023-09-24" + "user": "DICKINSON JULIANNE", + "timestamp": "2017-04-01" }, { - "uuid": "733ff763-77a1-400e-ba39-3a66461cd0ea", - "siteRegistry": true, + "uuid": "c167e062-4151-41fc-a053-8e16b90cf42a", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "HEIDENREICH MARIELA", - "timestamp": "2018-01-12" + "user": "MOORE SANTOS", + "timestamp": "2022-05-16" }, { - "uuid": "e559bbdb-23d5-4b12-aa4d-1861ed8d176f", + "uuid": "e1e12b4d-fa6f-4240-9985-377025b1968c", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "MURAZIK ERIN", - "timestamp": "2015-08-30" + "user": "KEMMER WILBER", + "timestamp": "2019-11-11" }, { - "uuid": "aa4abb87-9fc0-4b3d-9e6b-7a387fa66c27", - "siteRegistry": false, + "uuid": "f31c96af-8893-48da-b89e-b6a0f06a0dd1", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "CORKERY KAYLIE", - "timestamp": "2017-04-09" + "user": "TROMP PATIENCE", + "timestamp": "2022-02-14" }, { - "uuid": "025dc2a9-f9b9-413a-85a1-afd7d5247eb4", + "uuid": "1b5e0727-d0e9-4b9b-99a2-55c9d3f389fd", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "STEUBER ALEXANNE", - "timestamp": "2015-07-30" + "user": "WAELCHI ALFREDA", + "timestamp": "2021-09-26" } ], "associatedSites": [ { - "uuid": "356c628f-f30b-4beb-9f86-794c665cb883", - "dateNoted": "2020-04-05", + "uuid": "3e4f21b8-4755-4ba4-8db2-8eb11c64951f", + "dateNoted": "2022-12-10", "notes": "", - "parcelID": "16234", - "siteID": "18760", - "siteRegistry": true + "parcelID": "16793", + "siteID": "16834", + "siteRegistry": false } ] }, { - "uuid": "b0feb7a1-1f0f-4326-9d8d-e021a471afbc", - "siteID": 20660, - "address": "9984 Janie Crossing", - "latitude": 57.6949, - "longitude": -137.4664, - "lastUpdated": "2017-06-05", - "city": "South Alvena", + "uuid": "a3d903dd-6c05-4e95-ae5a-54f248a3683b", + "siteID": 20431, + "address": "38853 Yasmine Lane", + "latitude": 55.1658, + "longitude": -126.6422, + "lastUpdated": "2020-03-05", + "city": "Kurtchester", "region": " North Coast", - "victoriaFile": "26250-20/15241", + "victoriaFile": "26250-20/10379", "regionalFile": "N/A", "parcelIDs": [ - 9858571, - 780309, - 9821326, - 2105784, - 4666019 + 5371900, + 7067734, + 9148432, + 6819726, + 6499283 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "5f576522-3acd-4ca1-8555-2da10d4641c0", - "createdAt": "2019-10-29", - "completed": "2022-10-13", - "initiated": "2022-07-18", - "ministryContact": "BREITENBERG CORY", + "uuid": "ffb0ce34-9754-4a55-851f-f5298f1d41f1", + "createdAt": "2021-02-04", + "completed": "2021-03-07", + "initiated": "2015-03-20", + "ministryContact": "BARROWS RUBY", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -31096,44 +36160,32 @@ ], "notationParticipants": [ { - "uuid": "6f9dabec-2d31-4d31-b05f-e4a0c64afc00", - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "8cff934d-9150-459c-8007-fa9589c67125", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true }, { - "uuid": "c928cffb-f7c0-4605-990e-6ed86cf77486", + "uuid": "6be793c9-0539-4f78-964d-807d8f21ebc8", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "uuid": "0f1a20bf-b356-4840-9b63-e1e287a75efd", - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", "siteRegistry": true }, { - "uuid": "f76241ae-6849-480e-8c99-f603e417681f", - "name": "SHELL CANADA PRODUCTS", + "uuid": "5a98beec-2e53-418c-9bc8-c9f1e3d9f7c7", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false - }, - { - "uuid": "547ca889-bfca-479c-aa78-2f1529aeadfa", - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false } ], "siteRegistry": true }, { - "uuid": "3843bdae-55bd-4b35-a010-5080c50a7826", - "createdAt": "2023-09-16", - "completed": "2018-12-09", - "initiated": "2016-04-06", - "ministryContact": "CARROLL PALMA", + "uuid": "c3ab0cab-40e8-4a4a-abde-6b74b7176ca0", + "createdAt": "2015-09-24", + "completed": "2021-11-06", + "initiated": "2023-06-16", + "ministryContact": "KOCH CYRUS", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -31142,44 +36194,38 @@ ], "notationParticipants": [ { - "uuid": "93652712-202a-4250-94b5-4b64c6549895", + "uuid": "7e9c6b89-67ee-40b1-b85e-b7c32f27100b", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false + "role": "REQUESTED BY", + "siteRegistry": true }, { - "uuid": "fcbc30e8-6a39-4f8d-b9a7-9d8a80594ab2", + "uuid": "27ec9372-22bc-4518-960b-1105a7ac581c", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "315f669e-9bfb-40f7-af88-ed4ab31dfaa5", + "uuid": "04c13d62-112b-4eaa-83c6-b61913bf031a", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "a1be7457-099c-4e32-92f6-442b5ec1f85e", + "uuid": "aec4ff39-1e8f-48c7-ac42-91333c0bcb28", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false - }, - { - "uuid": "c2032d2f-3564-4235-8b6c-bbaeca30dfb8", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true } ], "siteRegistry": true }, { - "uuid": "645f80bd-8781-467e-81f6-952e626adab1", - "createdAt": "2016-09-01", - "completed": "2016-08-20", - "initiated": "2022-01-13", - "ministryContact": "COLLINS ASHLEIGH", + "uuid": "abeb54d1-0828-4c5d-834c-c5da3c2c0a20", + "createdAt": "2023-08-26", + "completed": "2016-03-06", + "initiated": "2017-04-14", + "ministryContact": "ONDRICKA BELLA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -31188,67 +36234,45 @@ ], "notationParticipants": [ { - "uuid": "83734771-c32c-4c0f-b7c6-61b31e9e9985", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "uuid": "d75b6483-91be-4a2b-a06b-6895a2d89bb3", + "uuid": "5f3f88dc-7e69-4eb3-9ca9-91875c45be9d", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "cc93e1a2-eae2-47fb-93a2-570d373d14fd", + "uuid": "769c2354-fc52-4b7f-ab43-8788e7b84949", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "972ccbe8-92d9-44e2-a8b4-b9750594db00", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "uuid": "8a82cba1-db22-4160-8390-bed0cd7df023", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "f9f1f576-9969-457f-8074-7eae6d508e16", + "uuid": "e32c9e10-83ad-49f7-aa18-c6ab7540b2a7", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "uuid": "77c59302-1587-4010-9ed5-aaa5e3f5ff7d", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false } ], "participants": [ { - "uuid": "b5e66a95-247f-47fa-9106-f7e7a996fe94", - "name": "SHELL CANADA PRODUCTS", - "endDate": "2018-06-26", - "startDate": "2021-12-27", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": false - }, - { - "uuid": "069197ee-539c-44de-a32e-c0b31f182b62", - "name": "AMET, DOLOR SIT", - "endDate": "2015-12-27", - "startDate": "2022-05-03", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": true - }, - { - "uuid": "1175e14f-0988-4abc-ab2b-029e80a8525d", + "uuid": "16a677d0-331f-40ec-9705-e07cce1fb05f", "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2021-01-24", - "startDate": "2020-03-25", + "endDate": "2021-09-20", + "startDate": "2017-07-17", "notes": "", "roles": [ "ORGANIZATION" @@ -31256,116 +36280,152 @@ "siteRegistry": true }, { - "uuid": "21d22f41-4d55-4d10-846b-cf17194d0d6b", + "uuid": "f130a865-3e7e-406c-a9fb-e3c90c537708", "name": "AMET, DOLOR SIT", - "endDate": "2021-11-17", - "startDate": "2018-10-15", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": false - }, - { - "uuid": "701be39f-33ff-48c9-8e46-58536a8e12fd", - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2018-10-13", - "startDate": "2013-12-30", + "endDate": "2022-02-09", + "startDate": "2014-02-14", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": false } ], - "suspectLandUses": [ + "documents": [ { - "uuid": "d9f96d38-8c18-4a46-a88b-79c634f5508b", - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-11-20 (described on Site Profile dated 2015-11-20)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "uuid": "8137f831-4eb3-4a3b-8be9-6b3d0d825455", + "siteRegistry": false, + "documentDate": "2023-04-18", + "receivedDate": "2022-07-14", + "uploadedDate": "2021-04-02", + "title": "Summary of Site Conditions, 1537 W 41st Avenue, Vancouver", + "participants": [ + { + "uuid": "45585dc4-22d9-45e9-a7e9-e86a807f7d3a", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "0bc267bc-b6fa-44f0-8112-28eb1f446056", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": true, + "role": "AUTHOR" + } + ] + }, + { + "uuid": "f34fe4a8-4cda-4ae0-a819-6b0597288feb", + "siteRegistry": false, + "documentDate": "2014-05-22", + "receivedDate": "2019-02-28", + "uploadedDate": "2016-02-13", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "8ef4cec6-11a6-4204-a481-f1a5762112a0", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "6bdfac44-9572-4d52-9293-4f8c0d72188c", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": false, + "role": "AUTHOR" + } + ] }, { - "uuid": "aaaf11a5-0858-4895-a3aa-78b10c0083ea", + "uuid": "12901f26-a2e9-4c61-8640-b2caae22383d", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-08-15 (described on Site Profile dated 2019-08-15)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "documentDate": "2017-03-21", + "receivedDate": "2021-08-04", + "uploadedDate": "2013-11-30", + "title": "Preliminary Site Investigation, Detailed Site Investigation and Remedial Plan for the Management Area adjacent to the Shell Site at 1503 West 41st Ave", + "participants": [ + { + "uuid": "488356fe-e25a-4150-a247-3a5df64fd567", + "name": "AMET, DOLOR SIT", + "siteRegistry": true, + "role": "AUTHOR" + } + ] } ], - "parcelDescriptions": [ + "suspectLandUses": [ { - "uuid": "765e93e5-97c7-4e2f-a29c-ef092d2b2395", + "uuid": "471b4dab-e5d0-45c1-9e29-87310ab96f8d", "siteRegistry": false, - "dateNoted": "2016-03-04", - "parcelID": "16794", - "crownLandUsePIN": "18690", - "crownLandFileNumber": "15374", - "landDescription": "LOT 2 OF LOT 3 BLOCK 3 DISTRICT LOT 5 PLAN 6287" - }, - { - "uuid": "a3e0fbad-1710-4877-b014-01241752d1cf", - "siteRegistry": true, - "dateNoted": "2016-08-12", - "parcelID": "17098", - "crownLandUsePIN": "19797", - "crownLandFileNumber": "17385", - "landDescription": "LOT 4 OF LOT 2 BLOCK 5 DISTRICT LOT 3 PLAN 6314" + "notes": "INSERTED FOR SITE PROFILE DATED 2021-01-25 (described on Site Profile dated 2021-01-25)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "uuid": "82f76e1a-9633-4c6d-aa43-2cd2e2689a9d", + "uuid": "e738e816-5b42-4c33-a19f-4def52f95a00", "siteRegistry": false, - "dateNoted": "2018-01-28", - "parcelID": "18998", - "crownLandUsePIN": "16083", - "crownLandFileNumber": "19460", - "landDescription": "LOT 2 OF LOT 5 BLOCK 4 DISTRICT LOT 1 PLAN 4781" + "notes": "INSERTED FOR SITE PROFILE DATED 2021-04-19 (described on Site Profile dated 2021-04-19)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "uuid": "6e703079-38c9-4b01-b348-98a8f71c7422", + "uuid": "2ea18440-8c92-4a4e-b8c6-b4e567d02eab", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2020-06-02 (described on Site Profile dated 2020-06-02)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + } + ], + "parcelDescriptions": [ + { + "uuid": "35a0dcf8-d4b0-4151-a4de-46187de70698", "siteRegistry": false, - "dateNoted": "2014-04-14", - "parcelID": "20033", - "crownLandUsePIN": "18803", - "crownLandFileNumber": "15718", - "landDescription": "LOT 4 OF LOT 5 BLOCK 5 DISTRICT LOT 3 PLAN 5503" + "dateNoted": "2016-12-13", + "parcelID": "17729", + "crownLandUsePIN": "17246", + "crownLandFileNumber": "20952", + "landDescription": "LOT 3 OF LOT 2 BLOCK 2 DISTRICT LOT 4 PLAN 3668" }, { - "uuid": "e94877a2-6aa4-45cf-a9ea-7f45f78e8d14", - "siteRegistry": false, - "dateNoted": "2019-02-28", - "parcelID": "17237", - "crownLandUsePIN": "20165", - "crownLandFileNumber": "17683", - "landDescription": "LOT 5 OF LOT 2 BLOCK 1 DISTRICT LOT 1 PLAN 9297" + "uuid": "94b811ca-0593-42a6-ab61-b1a42eb97cc9", + "siteRegistry": true, + "dateNoted": "2016-10-23", + "parcelID": "19574", + "crownLandUsePIN": "19466", + "crownLandFileNumber": "16749", + "landDescription": "LOT 1 OF LOT 4 BLOCK 4 DISTRICT LOT 2 PLAN 8790" } ], "siteDisclosures": [ { - "uuid": "1dbf4b53-13b3-489c-9ceb-88bebc46ac8d", + "uuid": "5d7ee0bd-8dd4-4017-9270-70df0310d774", "siteRegistry": true, - "dateReceived": "2021-04-29", - "dateCompleted": "2018-06-01", - "dateEntered": "2019-04-27", - "dateRegistrar": "2018-06-04", - "dateLocalAuthorityReceived": "2022-09-14", - "summary": "Beatae quibusdam ex ullam quisquam iusto earum minus autem minima.\nSunt architecto tempora at in non at vitae.\nA molestias dignissimos sed quis tempora labore.", - "informationUsed": "Quae ex corporis esse.\nConsectetur sed at.\nTotam enim recusandae.\nVeniam consequatur sunt impedit ea suscipit mollitia.\nExercitationem cumque aliquam totam.", - "pastOrPresentOrders": "Laboriosam commodi sed facilis officiis nostrum a voluptatum.", + "dateReceived": "2014-07-29", + "dateCompleted": "2020-08-02", + "dateEntered": "2022-07-13", + "dateRegistrar": "2018-12-16", + "dateLocalAuthorityReceived": "2021-07-05", + "summary": "Labore consequatur totam velit occaecati totam fugit.\nAd dolores enim tempore minus.", + "informationUsed": "Quibusdam nesciunt error in tempore laboriosam.\nQuisquam commodi quos quis laborum nostrum officia.\nPorro natus repellat iste quos error corporis amet explicabo est.\nLaboriosam fugiat atque soluta possimus in neque.", + "pastOrPresentOrders": "Dolorem doloribus eligendi eaque ad natus.\nFuga fugit ratione quibusdam beatae debitis.\nEx totam dicta esse.", "commercialAndIndustrialPurposes": [ { - "uuid": "2118d346-734b-4929-b88a-40c2b4d8bb28", - "scheduleReference": "F2*", + "uuid": "cf5305b4-affd-4f1c-97c5-77bb04a1a9d1", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { - "uuid": "f99f64a5-1a6b-45ef-95eb-8c51eedae687", - "scheduleReference": "F1*", + "uuid": "01936218-7aa3-47e5-8c40-56815d992133", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true + "siteRegistry": false + }, + { + "uuid": "1f6bda25-c69d-44d0-873d-30cb286a20f3", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false }, { - "uuid": "82b11057-6ab8-4831-be2b-5707d9d99c24", + "uuid": "5ea90b34-8726-4e9d-9172-b31ea9fc26ec", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true @@ -31373,26 +36433,26 @@ ] }, { - "uuid": "3eb033b3-75a6-4021-80eb-53d9352e2e2c", - "siteRegistry": false, - "dateReceived": "2015-03-02", - "dateCompleted": "2023-01-25", - "dateEntered": "2021-12-26", - "dateRegistrar": "2017-08-07", - "dateLocalAuthorityReceived": "2023-04-30", - "summary": "Adipisci labore voluptate distinctio possimus.\nHic nam quaerat.\nPariatur earum quidem.", - "informationUsed": "Omnis deleniti aspernatur quod eius quam.\nMolestiae beatae magnam quibusdam molestias dolorem vel recusandae autem maxime.\nRepudiandae amet ipsum.", - "pastOrPresentOrders": "Dolor libero ducimus veritatis fugiat nisi repellat error velit.", + "uuid": "e81053d1-e7d9-4044-81b2-2bf0c5290be9", + "siteRegistry": true, + "dateReceived": "2020-05-09", + "dateCompleted": "2018-09-17", + "dateEntered": "2017-09-23", + "dateRegistrar": "2014-06-26", + "dateLocalAuthorityReceived": "2020-12-14", + "summary": "Ullam facilis quibusdam totam voluptatibus officiis excepturi atque aperiam ipsum.\nUt repellat perspiciatis magnam aperiam possimus quia in.", + "informationUsed": "Ipsa iure beatae sit ut dignissimos eligendi quae.\nEveniet accusamus quaerat alias architecto omnis voluptate.\nEt accusantium temporibus omnis quas sequi.\nVoluptatibus ab vel illum ea facere voluptatum debitis.\nIncidunt porro repellendus delectus earum blanditiis consectetur omnis.", + "pastOrPresentOrders": "Dolor dolorum ipsam tempore qui nam eos.\nHic reiciendis perferendis unde.\nPorro atque fugiat inventore sapiente perferendis assumenda velit quod cum.", "commercialAndIndustrialPurposes": [ { - "uuid": "65c43309-3a86-444c-9016-566df625b325", + "uuid": "ba182c18-d313-4697-bcd5-41f463d5f759", "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false }, { - "uuid": "c72aa6c3-e6e8-4d0b-8020-371737fdeb7d", - "scheduleReference": "F2*", + "uuid": "ebd075d9-3182-4c9c-b500-42bf31637dec", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true } @@ -31401,129 +36461,115 @@ ], "activityLog": [ { - "uuid": "b8e67ddc-aa1f-4404-bc4a-f2d3bdf96845", + "uuid": "9a5fb0ed-5fcf-4a76-8a5c-2f55e97c4a04", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "ORTIZ PEYTON", - "timestamp": "2020-10-07" + "user": "HAUCK GARNETT", + "timestamp": "2018-07-20" }, { - "uuid": "11babdb9-3699-41c7-ad4f-8aa1b06e7e69", + "uuid": "4ec81023-75af-4230-af66-3d60b9ac17d2", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "MOHR-DAUGHERTY ETHA", - "timestamp": "2017-08-20" - }, - { - "uuid": "5d9d8a37-6430-4bb8-942d-de692af2822b", - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "WILLMS KENNA", - "timestamp": "2014-02-21" + "user": "VOLKMAN ELISABETH", + "timestamp": "2019-09-26" }, { - "uuid": "986364ac-9493-4e9e-bc23-7f04939e23e1", + "uuid": "83111813-3db5-4b78-9277-cd18ec920a97", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "PRICE LIBBY", - "timestamp": "2023-08-11" + "user": "BOYER ULICES", + "timestamp": "2014-02-13" }, { - "uuid": "0d44c3be-81f3-4756-bc57-1f672a8f32cf", - "siteRegistry": true, + "uuid": "e5ea9b9c-a573-4fa8-aadd-59ef5925181d", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "JAKUBOWSKI DAPHNEE", - "timestamp": "2017-07-09" + "user": "GISLASON MEGGIE", + "timestamp": "2021-12-09" }, { - "uuid": "37883c7d-2620-419a-a8a7-c2684f617510", + "uuid": "ee90d0e1-61a1-40f3-9bb2-3cf60efd3b02", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "KOZEY CAMREN", - "timestamp": "2016-04-14" + "user": "BEDNAR ELSA", + "timestamp": "2014-08-17" }, { - "uuid": "fa35e983-4079-4061-b3b1-677f1832acd4", - "siteRegistry": true, + "uuid": "761aff26-62a1-4c26-9771-2068a03beb1c", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "MEDHURST DERICK", - "timestamp": "2019-01-15" + "user": "CONROY D'ANGELO", + "timestamp": "2019-12-18" }, { - "uuid": "13f42e74-201d-4c94-a1cd-c34267141f2b", + "uuid": "15dff15a-dd59-418e-8e66-2541a80efd01", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "ROGAHN CLAUD", - "timestamp": "2019-04-18" + "user": "LITTLE LOWELL", + "timestamp": "2019-02-09" }, { - "uuid": "e8acdaff-da01-4857-a84c-e5f25e28d3d4", + "uuid": "53dbae05-6e67-4a4e-b276-d586c7981967", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "RODRIGUEZ GRAYSON", - "timestamp": "2015-07-27" - }, - { - "uuid": "0d829247-86f9-4f9e-9957-fde5df37ad8d", - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "LEMKE ERNESTO", - "timestamp": "2023-10-08" + "user": "BOSCO-LUETTGEN SHANELLE", + "timestamp": "2016-05-29" } ], "associatedSites": [ { - "uuid": "17018c22-f2d0-47ca-b4bf-c36af6fb2ffb", - "dateNoted": "2018-03-03", + "uuid": "3eb80496-81dd-4ce9-be1d-27425eb47c7e", + "dateNoted": "2020-05-15", "notes": "", - "parcelID": "18515", - "siteID": "15580", + "parcelID": "19833", + "siteID": "20880", "siteRegistry": false }, { - "uuid": "aed93995-5e76-4f9b-9be3-426332ad58d6", - "dateNoted": "2019-03-12", + "uuid": "d119505c-0d86-4431-a0ca-6aba744d109a", + "dateNoted": "2022-03-04", "notes": "", - "parcelID": "20304", - "siteID": "18096", + "parcelID": "19468", + "siteID": "20039", "siteRegistry": false }, { - "uuid": "3959f85f-4bab-4b3f-ab82-86e1a60a53c6", - "dateNoted": "2019-03-30", + "uuid": "a73d7889-652a-46b4-b5df-706ed7d17532", + "dateNoted": "2017-10-20", "notes": "", - "parcelID": "20635", - "siteID": "18254", + "parcelID": "15819", + "siteID": "19485", "siteRegistry": true } ] }, { - "uuid": "52d826dd-bee6-47fe-8ae7-92268787c829", - "siteID": 16285, - "address": "68744 Rau Dale", - "latitude": 49.0366, - "longitude": -119.778, - "lastUpdated": "2022-01-14", - "city": "East Daisy", - "region": "Cariboo", - "victoriaFile": "26250-20/3896", + "uuid": "68b6fe23-da47-48fb-8a5b-571aef7cc12f", + "siteID": 15607, + "address": "9028 Bode Street", + "latitude": 54.9188, + "longitude": -131.322, + "lastUpdated": "2016-09-28", + "city": "West Simeon", + "region": "Vancouver Island/Coast", + "victoriaFile": "26250-20/15928", "regionalFile": "N/A", "parcelIDs": [ - 3439989, - 2880589, - 7983246, - 6965352, - 5753216 + 6204819, + 6069810, + 2146472, + 7578165, + 566489 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "fb3ae21b-e89d-4177-8c4a-d7ce41380212", - "createdAt": "2020-03-14", - "completed": "2020-09-02", - "initiated": "2016-04-20", - "ministryContact": "REYNOLDS MITCHEL", + "uuid": "75581f43-649a-4e6b-9455-ca52813c272e", + "createdAt": "2019-07-14", + "completed": "2022-12-29", + "initiated": "2021-10-25", + "ministryContact": "TOY SERENA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -31532,26 +36578,32 @@ ], "notationParticipants": [ { - "uuid": "d0b25299-a694-41f6-ade2-d12f5dd16fe4", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true + "uuid": "2363dea9-fe9a-436f-a4b4-1bf803acf833", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false }, { - "uuid": "96682915-0386-4a96-9c93-287562bee630", - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "2181ab76-e988-4de5-8d7d-2dcc2852f989", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false }, { - "uuid": "ed36f689-9b3f-4972-b43b-af83b70a0eee", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "uuid": "9119a294-ee9f-491b-a360-f72c50e31f50", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "12dbf77f-ca63-4b45-9430-48adcd99ab87", + "uuid": "461a68dd-73bf-473a-a5f3-fb18f2ca9be7", "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "b6551735-8bc2-4ede-a91b-44dd9e58f9bb", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true } @@ -31559,11 +36611,11 @@ "siteRegistry": false }, { - "uuid": "f3adaf7d-2eaf-4a4d-9e79-b0d757ec283b", - "createdAt": "2017-04-22", - "completed": "2021-04-22", - "initiated": "2023-06-04", - "ministryContact": "MOSCISKI CORTEZ", + "uuid": "e4c3c781-a10d-4bc0-8a68-a6c1e2ad11ec", + "createdAt": "2018-09-02", + "completed": "2020-11-18", + "initiated": "2018-10-13", + "ministryContact": "PREDOVIC GARRETT", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -31572,34 +36624,16 @@ ], "notationParticipants": [ { - "uuid": "f72b2591-9d3f-4eeb-9678-2abbe20e32c1", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "uuid": "c3e753c0-b1d7-499a-b3d2-e26eabb17923", - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "uuid": "4da1e3d6-3cf3-4f71-8048-c602215a7397", + "uuid": "69021ccc-ccbf-42c6-858e-037f9f457976", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "9f914802-0c23-44b1-bae4-283337aa0807", + "uuid": "adc21ffe-af90-4cf2-9639-ab206f6db44f", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false - }, - { - "uuid": "1cf07be3-cd0c-4e47-8851-1d52a7704104", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true } ], "siteRegistry": true @@ -31607,32 +36641,10 @@ ], "participants": [ { - "uuid": "f94ac190-fd4d-4e9d-bc62-50df0f91a81f", - "name": "IPSUM", - "endDate": "2016-09-08", - "startDate": "2019-05-09", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": false - }, - { - "uuid": "c630f413-3088-4a61-b40a-85ed10eddf78", - "name": "IPSUM", - "endDate": "2021-06-23", - "startDate": "2021-09-15", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": true - }, - { - "uuid": "354bbb75-ed5f-43ff-be72-348213c00952", + "uuid": "d6730b0f-b623-40bc-b28c-6859f8101c2b", "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2020-10-16", - "startDate": "2013-12-10", + "endDate": "2022-02-28", + "startDate": "2018-02-10", "notes": "", "roles": [ "ORGANIZATION" @@ -31640,10 +36652,10 @@ "siteRegistry": false }, { - "uuid": "0c789a95-3772-4a4e-b6b9-ea25f5d6643c", - "name": "IPSUM", - "endDate": "2021-02-01", - "startDate": "2017-11-15", + "uuid": "9afd5cfe-adcb-4c35-872d-e6509d61a513", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2016-04-28", + "startDate": "2018-05-23", "notes": "", "roles": [ "ORGANIZATION" @@ -31651,260 +36663,280 @@ "siteRegistry": false }, { - "uuid": "b7eae372-0075-4d2f-955d-a3b02deaf664", - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2018-04-10", - "startDate": "2016-02-01", + "uuid": "963cd8fd-508e-4a2c-a3c0-b6ebf5df5ab8", + "name": "IPSUM", + "endDate": "2015-05-08", + "startDate": "2014-12-24", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": false } ], - "suspectLandUses": [ + "documents": [ { - "uuid": "9cc9e05e-186d-4cf1-84ee-5f6066051105", - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-11-09 (described on Site Profile dated 2022-11-09)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "uuid": "b58ba4f1-a1a6-4213-9e5a-a67753f25b4b", + "siteRegistry": true, + "documentDate": "2023-02-03", + "receivedDate": "2022-03-28", + "uploadedDate": "2018-10-29", + "title": "Summary of Site Conditions, 1537 W 41st Avenue, Vancouver", + "participants": [ + { + "uuid": "6866c284-2e6f-433d-8855-2a2b08dc50f2", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "d22556fc-81a3-4a43-a89f-4be35ace7469", + "name": "AMET, DOLOR SIT", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "169e12e8-acb8-45cc-9da7-eb0dba896c38", + "name": "IPSUM", + "siteRegistry": true, + "role": "AUTHOR" + } + ] }, { - "uuid": "39f02239-eaea-4d02-8363-0372141d173b", - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-05-09 (described on Site Profile dated 2014-05-09)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "uuid": "ac62a231-ee32-45b5-baec-8f1a9fc6a162", + "siteRegistry": true, + "documentDate": "2018-04-02", + "receivedDate": "2020-02-06", + "uploadedDate": "2014-02-25", + "title": "Preliminary Site Investigation, Detailed Site Investigation and Remedial Plan for the Management Area adjacent to the Shell Site at 1503 West 41st Ave", + "participants": [ + { + "uuid": "f806b748-7215-40c0-ba79-b261f1b6fafb", + "name": "AMET, DOLOR SIT", + "siteRegistry": false, + "role": "AUTHOR" + } + ] }, { - "uuid": "b2626eec-fb7a-4588-93dd-600c6a6791fc", + "uuid": "89f43bee-6209-464b-b1e4-f2b582abd4aa", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-06-27 (described on Site Profile dated 2019-06-27)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" - }, + "documentDate": "2014-03-19", + "receivedDate": "2023-07-15", + "uploadedDate": "2014-09-17", + "title": "Preliminary Site Investigation, Detailed Site Investigation and Remedial Plan for the Management Area adjacent to the Shell Site at 1503 West 41st Ave", + "participants": [ + { + "uuid": "b8023f3f-e0bc-46fb-8337-72a0079ec845", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "59a216a5-e718-41b2-aae3-b95ca020e5e7", + "name": "IPSUM", + "siteRegistry": true, + "role": "AUTHOR" + } + ] + } + ], + "suspectLandUses": [ { - "uuid": "5890a35e-d97e-4bee-ad6e-08df98046c5e", + "uuid": "6beaa765-5578-4101-87be-7d509eeca79e", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-09-28 (described on Site Profile dated 2022-09-28)", + "notes": "INSERTED FOR SITE PROFILE DATED 2021-02-05 (described on Site Profile dated 2021-02-05)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "uuid": "8d7cd2af-21b7-49c0-bb40-6bad37e0392c", + "uuid": "ad5bfa1c-9db1-4bb1-b82d-a786a18ff9fc", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-04-20 (described on Site Profile dated 2017-04-20)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "notes": "INSERTED FOR SITE PROFILE DATED 2018-09-23 (described on Site Profile dated 2018-09-23)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], "parcelDescriptions": [ { - "uuid": "daabb86a-143e-4892-9553-0a469269e214", - "siteRegistry": false, - "dateNoted": "2023-07-11", - "parcelID": "19348", - "crownLandUsePIN": "15803", - "crownLandFileNumber": "19258", - "landDescription": "LOT 2 OF LOT 1 BLOCK 5 DISTRICT LOT 3 PLAN 9023" - }, - { - "uuid": "e8b9f08c-1830-434c-9516-e314060eedde", - "siteRegistry": true, - "dateNoted": "2018-09-12", - "parcelID": "20311", - "crownLandUsePIN": "16736", - "crownLandFileNumber": "20611", - "landDescription": "LOT 4 OF LOT 4 BLOCK 3 DISTRICT LOT 2 PLAN 8691" - }, - { - "uuid": "42e58f64-72d0-4094-a175-c4780e0b4bd5", - "siteRegistry": false, - "dateNoted": "2014-05-10", - "parcelID": "16234", - "crownLandUsePIN": "19981", - "crownLandFileNumber": "18640", - "landDescription": "LOT 2 OF LOT 5 BLOCK 3 DISTRICT LOT 1 PLAN 3712" - }, - { - "uuid": "e67cb1f8-2ff7-49a8-8580-5b9726f32f8e", + "uuid": "26734d73-cc93-4269-94ad-3016a50ef047", "siteRegistry": false, - "dateNoted": "2016-02-26", - "parcelID": "19119", - "crownLandUsePIN": "15672", - "crownLandFileNumber": "18595", - "landDescription": "LOT 1 OF LOT 2 BLOCK 1 DISTRICT LOT 2 PLAN 8518" + "dateNoted": "2021-02-23", + "parcelID": "19227", + "crownLandUsePIN": "18378", + "crownLandFileNumber": "15503", + "landDescription": "LOT 5 OF LOT 2 BLOCK 4 DISTRICT LOT 3 PLAN 6141" }, { - "uuid": "6cda9ac9-bc81-4192-afaa-1c52c8a1e016", + "uuid": "07ca882d-074c-4b63-9aa3-e2b2ccb5c546", "siteRegistry": true, - "dateNoted": "2021-09-29", - "parcelID": "20854", - "crownLandUsePIN": "16122", - "crownLandFileNumber": "19868", - "landDescription": "LOT 5 OF LOT 1 BLOCK 2 DISTRICT LOT 3 PLAN 6030" + "dateNoted": "2016-07-23", + "parcelID": "20558", + "crownLandUsePIN": "16474", + "crownLandFileNumber": "16491", + "landDescription": "LOT 4 OF LOT 5 BLOCK 4 DISTRICT LOT 1 PLAN 6537" } ], "siteDisclosures": [ { - "uuid": "081fa24b-df70-4f5c-adce-dc8c99dfb6fc", - "siteRegistry": false, - "dateReceived": "2022-05-20", - "dateCompleted": "2017-01-07", - "dateEntered": "2020-12-29", - "dateRegistrar": "2019-05-15", - "dateLocalAuthorityReceived": "2018-09-04", - "summary": "Quo illum nam possimus incidunt.\nCupiditate quam pariatur illo nemo.", - "informationUsed": "Suscipit ducimus nulla fuga quisquam est cupiditate aspernatur beatae tenetur.\nDoloribus laborum itaque neque sapiente officiis minus natus accusantium.\nQuia esse aut modi corporis occaecati quam doloremque.\nQui pariatur ullam molestiae inventore delectus.\nPossimus porro qui laborum fuga ex laudantium excepturi.", - "pastOrPresentOrders": "Eos aut dignissimos.\nAnimi sed maiores eveniet et.\nQuidem incidunt quam dignissimos accusamus totam ducimus esse porro.", + "uuid": "2f43e29e-1670-460a-8993-5972064c5c10", + "siteRegistry": true, + "dateReceived": "2019-11-24", + "dateCompleted": "2014-06-28", + "dateEntered": "2013-11-18", + "dateRegistrar": "2018-08-29", + "dateLocalAuthorityReceived": "2014-10-08", + "summary": "Cum quo eum.\nEveniet quaerat quasi consequuntur ipsum.", + "informationUsed": "Veritatis harum architecto provident.\nAliquam sunt harum cupiditate delectus.\nTenetur quo voluptatibus vitae tempore voluptas natus deleniti dolorum.\nQuas eum nemo odio dolore.", + "pastOrPresentOrders": "Natus aliquam suscipit culpa molestiae veniam quae accusamus tempore.\nBeatae autem doloribus nemo qui iure.", "commercialAndIndustrialPurposes": [ { - "uuid": "c5193c64-be3d-440e-8378-c7128f56db35", + "uuid": "415e9929-896f-43c0-9b8a-42cd7ede8117", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true + "siteRegistry": false + }, + { + "uuid": "eff7795b-8187-4851-bc94-d9cc135220ac", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false }, { - "uuid": "6e865ee1-a9e0-44d8-9f60-b6e84342f999", + "uuid": "3cc972dc-2a10-4946-a62f-1758c42ea0ea", "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "uuid": "ca791808-def6-4f68-ac4e-754fc077f972", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false } ] }, { - "uuid": "1ecff330-63a9-48a3-bdc5-b57a4597def2", - "siteRegistry": true, - "dateReceived": "2018-10-02", - "dateCompleted": "2015-07-11", - "dateEntered": "2017-01-05", - "dateRegistrar": "2018-05-17", - "dateLocalAuthorityReceived": "2022-11-04", - "summary": "Assumenda eaque repellendus laboriosam itaque quibusdam quaerat expedita assumenda.\nMaiores quos deserunt natus fugit facere cumque.", - "informationUsed": "Quae hic nihil.\nAccusantium voluptate sunt facere a vel reiciendis repellendus quis hic.\nQuis autem corrupti eum nobis esse vero.", - "pastOrPresentOrders": "Necessitatibus ipsum exercitationem animi laudantium cupiditate ea.\nMagnam voluptatem dicta doloremque ipsam ex mollitia.", + "uuid": "04c596fc-2f52-4718-8712-069240689237", + "siteRegistry": false, + "dateReceived": "2016-09-28", + "dateCompleted": "2017-12-28", + "dateEntered": "2013-12-29", + "dateRegistrar": "2023-01-20", + "dateLocalAuthorityReceived": "2015-02-09", + "summary": "Expedita labore corrupti error distinctio architecto doloribus mollitia.", + "informationUsed": "Asperiores ut sequi id nisi iure.\nNam eum rem ipsam tempora facilis atque tenetur explicabo minus.\nUnde optio voluptatum a accusamus.", + "pastOrPresentOrders": "Ullam adipisci nihil nemo odio harum sunt.\nFacere aliquam velit facere quidem distinctio magnam pariatur.\nNostrum id ea consequuntur quae blanditiis harum.", "commercialAndIndustrialPurposes": [ { - "uuid": "23a70af5-97c5-4ee3-a9f6-a511acd708ca", + "uuid": "87c873ff-8b12-4b62-9df0-0647f5a5f3d5", "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { - "uuid": "0bc6d072-1b65-4651-8107-64a46a8e7610", + "uuid": "6d5d8739-ebeb-4a06-8135-8e01b4724e72", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false + }, + { + "uuid": "98086c29-1b44-4a8b-a288-2e180e2db983", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true } ] } ], "activityLog": [ { - "uuid": "f60428c0-47a5-47e5-b4b0-8f49ab2cb3ac", - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "ANDERSON-WALKER KAYLEE", - "timestamp": "2021-03-21" - }, - { - "uuid": "06962bb0-1bbd-453f-b218-b2396b81e675", - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "MACGYVER ARLO", - "timestamp": "2018-01-12" - }, - { - "uuid": "7ea35404-3ff1-41f3-b2e1-89cdc5f24266", + "uuid": "a19b237d-27ac-4d1f-9b68-7a5495af00fb", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "BAILEY DEMARCO", - "timestamp": "2016-11-12" - }, - { - "uuid": "20b266ba-d1e7-42b5-9481-9b30b20b972f", - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "GREENFELDER TIMMOTHY", - "timestamp": "2021-11-08" + "user": "BEIER OLAF", + "timestamp": "2015-06-10" }, { - "uuid": "2f0c8515-8596-4ded-9e9c-e32009854afe", - "siteRegistry": true, + "uuid": "40a137ce-f882-4561-af61-b579d2e05463", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "CHAMPLIN TOMAS", - "timestamp": "2020-07-08" + "user": "HAYES DASIA", + "timestamp": "2020-11-17" }, { - "uuid": "18eb03ed-9e93-416c-b632-c2ba0cc0ec74", - "siteRegistry": true, + "uuid": "7a437b05-c3ec-4276-8823-90ce3daa08f2", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "HARRIS DELTA", - "timestamp": "2021-06-23" + "user": "ERDMAN-BOGISICH ZACHARIAH", + "timestamp": "2020-08-28" }, { - "uuid": "e6854ceb-e7ad-4fcb-a7b2-a01aad79d396", + "uuid": "eff96935-3ab5-463e-947b-0f640353b932", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "STANTON SALLY", - "timestamp": "2022-08-08" + "user": "OKUNEVA HIRAM", + "timestamp": "2022-08-15" }, { - "uuid": "f0972515-e7eb-4d1d-8673-faec5f25ca0a", + "uuid": "09a69c41-cb28-42a3-a387-975fa116f48e", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "HACKETT YOLANDA", - "timestamp": "2019-11-22" + "user": "DOYLE OLIVER", + "timestamp": "2015-05-20" }, { - "uuid": "3b5f7813-fbac-4253-b8f5-8c973a2325e2", + "uuid": "8d7453f5-a2e3-4810-8711-7a04b35ee428", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "MANN GRACE", - "timestamp": "2016-08-26" + "user": "O'KON SUNNY", + "timestamp": "2022-09-17" } ], "associatedSites": [ { - "uuid": "b621baca-129b-4101-b402-7b3dbae25abe", - "dateNoted": "2019-06-18", + "uuid": "c7474052-dc32-45b5-8291-fc84351a0b05", + "dateNoted": "2020-01-19", "notes": "", - "parcelID": "19782", - "siteID": "19254", - "siteRegistry": false + "parcelID": "18652", + "siteID": "20224", + "siteRegistry": true }, { - "uuid": "8462856a-8325-475d-8576-7f7fe9598d57", - "dateNoted": "2015-02-07", + "uuid": "ee9e4372-dbac-4d5a-9d66-d356603ada5c", + "dateNoted": "2020-01-10", "notes": "", - "parcelID": "17388", - "siteID": "19893", - "siteRegistry": true + "parcelID": "16926", + "siteID": "20520", + "siteRegistry": false } ] }, { - "uuid": "29d66e00-8b54-4472-bdb2-5b2aabec7725", - "siteID": 20221, - "address": "6133 Hagenes Mount", - "latitude": 51.8137, - "longitude": -137.3931, - "lastUpdated": "2017-10-21", - "city": "Palm Desert", - "region": "Kootenay", - "victoriaFile": "26250-20/8015", + "uuid": "a55b4727-b124-48b3-a70f-2bc2ffb0c475", + "siteID": 18456, + "address": "623 Rahul Mountains", + "latitude": 51.1958, + "longitude": -135.794, + "lastUpdated": "2023-09-24", + "city": "Sadyemouth", + "region": "Vancouver Island/Coast", + "victoriaFile": "26250-20/6382", "regionalFile": "N/A", "parcelIDs": [ - 2352634, - 9727132, - 5792656, - 4070461, - 7113177 + 501923, + 9998945, + 6509412, + 145071, + 856718 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "24849176-5338-4291-b480-0a996cc727c6", - "createdAt": "2021-08-07", - "completed": "2018-08-25", - "initiated": "2022-10-10", - "ministryContact": "SENGER DEVANTE", + "uuid": "fe041ea1-3ce1-4f74-9d99-ae9dfd00c1cb", + "createdAt": "2021-12-23", + "completed": "2021-04-22", + "initiated": "2014-02-11", + "ministryContact": "O'REILLY-ERDMAN CYDNEY", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -31913,78 +36945,38 @@ ], "notationParticipants": [ { - "uuid": "8ecd7364-6eec-41ad-967e-1b0c6eada981", + "uuid": "ee018578-635b-412f-a5b2-16207842dc83", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false }, { - "uuid": "322a2226-eedd-49e2-9704-20c62cc0651b", - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "uuid": "da418958-e10c-4a8b-8083-eefa404214a3", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - } - ], - "siteRegistry": true - }, - { - "uuid": "1366b951-c5d8-4cdd-b97a-d973b33e7400", - "createdAt": "2022-11-09", - "completed": "2020-06-06", - "initiated": "2022-03-11", - "ministryContact": "FEEST CASSIE", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "uuid": "40cc72bb-b2ad-475f-b73d-07675be6ebdc", + "uuid": "55887213-a376-4e44-a73d-4591cb66fe21", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "uuid": "d4aeaf47-413b-44f4-9c1a-4aced182d6de", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", "siteRegistry": true }, { - "uuid": "d32c4a4d-eb7c-4070-b5c9-aa8303a9b87b", + "uuid": "d23e0152-0912-4859-9f09-d4b5f2c42a8e", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "uuid": "828fcee7-db49-4bc4-959c-917d5ef77646", - "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "5db2927e-c2bb-4649-9fc6-d19d3dcaebf5", - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "92a2a3ef-b06d-45ae-a21d-cdc5cdc70f32", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "fbd31f45-557f-4a81-8176-4007b6108bd4", - "createdAt": "2013-11-10", - "completed": "2018-08-13", - "initiated": "2014-05-16", - "ministryContact": "WILLMS JARVIS", + "uuid": "a4e37c87-156d-482b-ab76-bf7b3154f1f7", + "createdAt": "2021-07-10", + "completed": "2015-12-24", + "initiated": "2018-01-16", + "ministryContact": "FEEST LERA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -31993,44 +36985,32 @@ ], "notationParticipants": [ { - "uuid": "97d1a9f2-1260-448d-aba5-56d974903bed", - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "090d6485-74f2-4232-b221-1fea2e05563d", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "bbd96a99-875d-4af9-916f-2f4a10b9d093", + "uuid": "6771fea1-5a8c-4b16-a88b-eae19b79995a", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "0ae7f945-35e2-42e6-bdf8-87978ddddd35", + "uuid": "5cae1273-652b-4bc8-a2d3-963e5844c4ef", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "uuid": "bd682b85-d2d1-4bc9-9d85-72b7268820a3", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "uuid": "2c9970a2-3556-46d1-a2d5-654cbf6377fc", - "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "b6150850-ca6e-4f5c-9812-93383906246e", - "createdAt": "2018-09-08", - "completed": "2023-04-22", - "initiated": "2018-04-22", - "ministryContact": "UPTON DARYL", + "uuid": "7d59f87d-ad38-4a1a-8c0e-7251f0b20963", + "createdAt": "2018-01-23", + "completed": "2020-08-27", + "initiated": "2016-06-16", + "ministryContact": "SCHOWALTER EPHRAIM", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -32039,27 +37019,21 @@ ], "notationParticipants": [ { - "uuid": "7ad2d2f5-e5f7-4008-9fa9-017844e00fc8", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "uuid": "19f434e1-1174-4f0c-a3d3-672cad44895d", + "uuid": "cd5e43ea-30f0-43e3-ab18-89152f4a9783", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "b586409e-4457-4ba6-9d3f-d0a285545513", - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "b55ad077-a02e-47c6-b8ca-d9ebe52584f9", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "f164aaab-2e46-4345-bd8d-1c3f1a057768", + "uuid": "4ca5656b-8b15-4c68-a7a2-47a8f0ee4eb4", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true } ], @@ -32068,21 +37042,32 @@ ], "participants": [ { - "uuid": "17c5e0f1-4033-451a-b20f-ced424cbde8e", + "uuid": "922020e1-3470-4c99-9be6-c9c38a7a9d52", + "name": "IPSUM", + "endDate": "2019-10-12", + "startDate": "2015-10-19", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "uuid": "89ec5433-80dc-4e5d-9d83-7b23948cab2c", "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2016-06-24", - "startDate": "2018-07-28", + "endDate": "2023-03-12", + "startDate": "2020-10-17", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "9d100648-224e-4cb1-a84f-f5154ebd3da7", + "uuid": "60641b87-f41e-4f00-a6f1-7a4a630aedf3", "name": "IPSUM", - "endDate": "2016-11-09", - "startDate": "2019-05-04", + "endDate": "2019-03-03", + "startDate": "2016-05-08", "notes": "", "roles": [ "EMPLOYEE" @@ -32090,233 +37075,337 @@ "siteRegistry": true } ], - "suspectLandUses": [ + "documents": [ { - "uuid": "748c496c-da97-469a-aeab-2af64c6fb3df", + "uuid": "70cbb2dd-d4a7-4e13-9db9-49800ea4267f", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-08-07 (described on Site Profile dated 2016-08-07)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" - }, - { - "uuid": "8e0955f7-9ec0-49a1-8604-8f9cdf03721a", - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-04-07 (described on Site Profile dated 2017-04-07)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" - } - ], - "parcelDescriptions": [ - { - "uuid": "9df603bc-097c-4c09-8fa4-ee0bd1019925", - "siteRegistry": false, - "dateNoted": "2015-05-02", - "parcelID": "20936", - "crownLandUsePIN": "15817", - "crownLandFileNumber": "20847", - "landDescription": "LOT 5 OF LOT 3 BLOCK 1 DISTRICT LOT 2 PLAN 9705" + "documentDate": "2018-06-22", + "receivedDate": "2023-06-07", + "uploadedDate": "2018-04-04", + "title": "Preliminary Site Investigation, Detailed Site Investigation and Remedial Plan for the Management Area adjacent to the Shell Site at 1503 West 41st Ave", + "participants": [ + { + "uuid": "06c9e012-9efb-4f2a-9f5b-c43398345845", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": false, + "role": "AUTHOR" + } + ] }, { - "uuid": "665b79ab-96a9-41c1-a757-26bab3c1d173", + "uuid": "5e621ae3-3cce-4dec-8c2d-33aec7f21af0", "siteRegistry": false, - "dateNoted": "2013-12-11", - "parcelID": "18308", - "crownLandUsePIN": "16938", - "crownLandFileNumber": "15229", - "landDescription": "LOT 4 OF LOT 3 BLOCK 3 DISTRICT LOT 3 PLAN 8144" + "documentDate": "2018-12-05", + "receivedDate": "2013-12-28", + "uploadedDate": "2023-10-15", + "title": "Summary of Site Conditions, 1537 W 41st Avenue, Vancouver", + "participants": [ + { + "uuid": "83f17bc5-41e0-46b9-9b89-d3221552a6fb", + "name": "AMET, DOLOR SIT", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "10a5d2cd-2f38-4818-9060-5048fdaf80a5", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": false, + "role": "AUTHOR" + } + ] }, { - "uuid": "4745d21a-fced-47e6-80b9-21983b304648", + "uuid": "9899c3eb-c649-41ed-9945-6b1ae4be1a28", + "siteRegistry": true, + "documentDate": "2014-05-29", + "receivedDate": "2021-05-05", + "uploadedDate": "2023-06-07", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "824064ab-bddb-4667-99a1-09f0ea0f64b8", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": true, + "role": "AUTHOR" + } + ] + }, + { + "uuid": "2e35b83c-1cd0-4a37-8000-35c07fa923c0", + "siteRegistry": true, + "documentDate": "2018-01-31", + "receivedDate": "2020-02-09", + "uploadedDate": "2016-03-19", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "c096edad-f0c0-44b1-95e7-241286bfac51", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "4c97985f-399a-492a-88fa-8083fc96ba1c", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": false, + "role": "AUTHOR" + } + ] + }, + { + "uuid": "85917a2b-f490-4642-9b9f-3b9c0621b21b", "siteRegistry": false, - "dateNoted": "2017-11-10", - "parcelID": "17401", - "crownLandUsePIN": "20669", - "crownLandFileNumber": "17051", - "landDescription": "LOT 3 OF LOT 4 BLOCK 5 DISTRICT LOT 3 PLAN 4183" + "documentDate": "2020-06-14", + "receivedDate": "2021-12-01", + "uploadedDate": "2020-06-19", + "title": "Summary of Site Conditions, 1537 W 41st Avenue, Vancouver", + "participants": [ + { + "uuid": "15032a5e-5412-431a-ae5a-1fbe7b41aec3", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "567b0956-8724-4ac2-805a-49ffb94bdc5e", + "name": "AMET, DOLOR SIT", + "siteRegistry": true, + "role": "AUTHOR" + } + ] + } + ], + "suspectLandUses": [ + { + "uuid": "d86ff2d0-66ba-4bf9-b186-704c8f091bd8", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2021-09-02 (described on Site Profile dated 2021-09-02)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "uuid": "12037b57-0598-43ca-ba27-23f1e5e19eca", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2016-03-30 (described on Site Profile dated 2016-03-30)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "uuid": "008f4fba-2b49-4b9e-9fea-6bc8cd6d69be", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2018-10-17 (described on Site Profile dated 2018-10-17)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "uuid": "a89c5e34-e2ea-4c98-9df0-e25a7fa18d9d", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2019-03-02 (described on Site Profile dated 2019-03-02)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + } + ], + "parcelDescriptions": [ + { + "uuid": "c7e11052-2180-4161-b80a-c86865b6b04b", + "siteRegistry": true, + "dateNoted": "2017-03-17", + "parcelID": "19126", + "crownLandUsePIN": "20896", + "crownLandFileNumber": "19407", + "landDescription": "LOT 2 OF LOT 1 BLOCK 1 DISTRICT LOT 3 PLAN 6344" }, { - "uuid": "6e73363e-452c-4eee-bfd4-788ad8d4fa0c", + "uuid": "00d7f595-cc93-4198-8f1f-b6506e3b258f", "siteRegistry": false, - "dateNoted": "2020-04-20", - "parcelID": "15260", - "crownLandUsePIN": "17794", - "crownLandFileNumber": "18940", - "landDescription": "LOT 4 OF LOT 2 BLOCK 3 DISTRICT LOT 2 PLAN 3567" + "dateNoted": "2017-05-10", + "parcelID": "18646", + "crownLandUsePIN": "18866", + "crownLandFileNumber": "20172", + "landDescription": "LOT 4 OF LOT 3 BLOCK 1 DISTRICT LOT 1 PLAN 8354" + }, + { + "uuid": "4c5a2ed7-20bd-4f03-a625-21d745981dfd", + "siteRegistry": true, + "dateNoted": "2020-11-16", + "parcelID": "19273", + "crownLandUsePIN": "15532", + "crownLandFileNumber": "17712", + "landDescription": "LOT 5 OF LOT 5 BLOCK 5 DISTRICT LOT 5 PLAN 7004" } ], "siteDisclosures": [ { - "uuid": "01cbeba7-0146-4d4b-b131-aaff5ccec3ac", + "uuid": "2c1474ec-699b-4f01-865a-1bbf3e787c56", "siteRegistry": true, - "dateReceived": "2023-06-10", - "dateCompleted": "2018-03-07", - "dateEntered": "2022-02-17", - "dateRegistrar": "2018-03-10", - "dateLocalAuthorityReceived": "2020-07-17", - "summary": "Quo fuga unde inventore voluptatibus vitae cum labore optio sequi.\nDolorum asperiores nam doloribus accusamus nisi voluptatum voluptate debitis doloribus.\nDolorem harum amet cumque.", - "informationUsed": "Aut enim laborum laudantium facilis harum.\nFugit ipsa tenetur nobis sequi nostrum aliquid.\nQuae facilis cum.", - "pastOrPresentOrders": "Cupiditate ipsa ea distinctio doloremque neque ipsa ea nam.\nBeatae non voluptatem hic nesciunt numquam pariatur provident minima.\nTotam laudantium cumque architecto accusamus nemo temporibus eligendi voluptas.", + "dateReceived": "2016-02-25", + "dateCompleted": "2021-03-29", + "dateEntered": "2014-03-13", + "dateRegistrar": "2020-11-20", + "dateLocalAuthorityReceived": "2015-11-13", + "summary": "Consequatur ut laborum nemo accusantium illo assumenda.\nNeque distinctio laudantium sed.\nError assumenda vitae enim iste quia dolores corrupti itaque.", + "informationUsed": "Reiciendis aperiam officiis quia optio.\nEligendi adipisci quisquam ipsam voluptas itaque sequi mollitia eaque.\nNecessitatibus nemo facilis voluptate aliquam mollitia mollitia reprehenderit molestias repellendus.\nAliquam et nisi maxime inventore atque corporis.\nDolore dicta repellendus minus possimus sequi id.", + "pastOrPresentOrders": "Nostrum nobis quas repellat nulla assumenda iusto voluptates nihil debitis.\nOfficia autem tenetur dolorum explicabo doloribus.", "commercialAndIndustrialPurposes": [ { - "uuid": "3ec33484-3720-4aa7-a962-9c4e6fd8d776", - "scheduleReference": "F1*", + "uuid": "d68cd326-defe-422f-bd1a-40a6955485a4", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, { - "uuid": "9bcff9f7-52fb-4950-becb-294c4f767b0b", + "uuid": "c8d4e6cb-d55a-46a1-ad35-db6ab1807477", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true - }, - { - "uuid": "d2e5e6c3-46cf-4082-9b4a-67352336b831", - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, { - "uuid": "072db6bd-a50c-4f59-9881-eeb0676431e6", - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "uuid": "e020b7c9-8051-48df-9972-3749b7c48f7f", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false } ] }, { - "uuid": "b3e2f4f4-45ae-41a9-9cfc-18ed80288e44", - "siteRegistry": false, - "dateReceived": "2019-03-22", - "dateCompleted": "2014-12-31", - "dateEntered": "2014-09-17", - "dateRegistrar": "2021-11-05", - "dateLocalAuthorityReceived": "2014-02-27", - "summary": "Rem temporibus incidunt earum repellat dignissimos.", - "informationUsed": "Voluptate iste perferendis modi sint ea eveniet amet sapiente.\nMaiores quas blanditiis suscipit enim inventore ullam accusantium excepturi facere.\nCum odit adipisci aperiam ad aspernatur reiciendis.\nPossimus nisi optio illo voluptatem ipsa minus mollitia labore.", - "pastOrPresentOrders": "Fugiat fugiat maxime corrupti fugit labore quasi.\nSed doloremque quaerat possimus odit.\nQuibusdam corrupti natus.", + "uuid": "bb3fcba8-6d15-41e2-8d4a-86f9ffd38cc1", + "siteRegistry": true, + "dateReceived": "2015-07-18", + "dateCompleted": "2014-02-19", + "dateEntered": "2020-03-21", + "dateRegistrar": "2015-11-26", + "dateLocalAuthorityReceived": "2023-03-12", + "summary": "Error doloremque est quos minus.\nIpsam dignissimos maxime autem.\nNemo dolor delectus.", + "informationUsed": "Repellendus labore impedit asperiores aspernatur placeat.\nInventore et illo assumenda optio quidem eaque.\nFacilis occaecati minus asperiores.\nModi natus a pariatur ut ullam mollitia.", + "pastOrPresentOrders": "Possimus nihil sed.\nRem voluptate maiores nostrum quaerat.\nTempore animi voluptas sequi.", "commercialAndIndustrialPurposes": [ { - "uuid": "481f41fb-9264-4325-901e-593b93049b14", + "uuid": "00ded35a-e349-4c9a-a1a6-203dbeaa4364", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "279c7102-3005-4fad-ac19-9d3da482c322", + "uuid": "fb7c442f-8cfc-49d0-8677-f497c2b13374", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false + }, + { + "uuid": "e4a6d7b3-5529-49eb-b7b1-b00974d6dc8d", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true } ] } ], "activityLog": [ { - "uuid": "6a0b46ee-c5a7-4c99-a938-2478522045cc", + "uuid": "5fea264c-98ad-474e-b179-1a11c0f1ebb9", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "LITTLE OLGA", - "timestamp": "2014-11-29" + "user": "THOMPSON LOGAN", + "timestamp": "2022-03-16" }, { - "uuid": "7f5614c8-e064-49c7-8da4-952ff15439a4", + "uuid": "4ce3b4b4-343c-4bd2-ad0e-ead7da6392c2", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "RUNOLFSDOTTIR MYRTIS", - "timestamp": "2014-04-27" + "user": "RAYNOR ROSIE", + "timestamp": "2016-10-17" }, { - "uuid": "63e1e800-c8ba-48fb-ab75-b1fe0599f1b9", + "uuid": "af5cb40d-d41c-4cef-921e-d5353362c0a0", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "WALSH ESTA", - "timestamp": "2022-04-22" + "user": "KLEIN ARDEN", + "timestamp": "2018-10-05" }, { - "uuid": "55736294-da73-4c9e-a2f6-3f9b936edab0", + "uuid": "1a3078c7-40d1-4e38-8abf-cf74c760624f", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "CARROLL KAREN", - "timestamp": "2018-04-29" - }, - { - "uuid": "b5b479cf-9115-4338-9a11-e30e62d6353d", - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "ROHAN AMALIA", - "timestamp": "2015-02-20" + "user": "KREIGER JILLIAN", + "timestamp": "2021-12-17" }, { - "uuid": "a11b8548-2a75-4e37-bc9a-07d35a19ec3c", + "uuid": "79d999cf-d842-4e38-b287-4d9ede428063", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "EMARD BARTHOLOME", - "timestamp": "2022-02-03" + "user": "KERLUKE NARCISO", + "timestamp": "2015-11-13" }, { - "uuid": "bf128615-9f04-4f0e-9b3b-45137e6135b4", + "uuid": "35986d03-a62b-4963-90b9-6ae8c6d2f414", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "JASKOLSKI ABBIGAIL", - "timestamp": "2019-10-30" + "user": "SENGER CAMERON", + "timestamp": "2018-06-15" }, { - "uuid": "54b67e14-eaa9-465d-9f65-d88c76d6eaff", + "uuid": "f4d2e771-1179-4d58-8808-3b6176ebf577", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "FRITSCH-SCHMITT NED", - "timestamp": "2022-07-31" + "user": "SIPES DARRYL", + "timestamp": "2022-01-13" }, { - "uuid": "67432e47-bc3a-4a20-98d9-123c0db2310e", - "siteRegistry": true, + "uuid": "1874a1a4-a5d3-46d4-ad5f-ada7ff584690", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "BUCKRIDGE ESTEFANIA", - "timestamp": "2018-09-23" + "user": "CUMMINGS VIRGIL", + "timestamp": "2018-07-21" }, { - "uuid": "46224b3c-e768-49de-9c13-a6ab02befcee", + "uuid": "b098f1d3-fc13-4064-88f1-63f66e165616", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "SCHADEN YOSHIKO", - "timestamp": "2018-04-29" + "user": "HARTMANN-REICHERT MARIAM", + "timestamp": "2022-11-06" } ], "associatedSites": [ { - "uuid": "3384dd65-3961-4cde-b95b-864408981505", - "dateNoted": "2017-07-06", + "uuid": "5b75e0d4-ffe6-4c64-b499-6d638b923721", + "dateNoted": "2022-05-18", "notes": "", - "parcelID": "17320", - "siteID": "15852", - "siteRegistry": true + "parcelID": "18255", + "siteID": "18007", + "siteRegistry": false + }, + { + "uuid": "6c367893-d5da-48ec-a7aa-edcbd5be2c06", + "dateNoted": "2021-06-18", + "notes": "", + "parcelID": "17268", + "siteID": "20556", + "siteRegistry": false } ] }, { - "uuid": "05826f6d-29ef-418b-a886-1aff7289ba41", - "siteID": 15573, - "address": "879 Bergnaum Forks", - "latitude": 54.6539, - "longitude": -125.9769, - "lastUpdated": "2020-08-21", - "city": "Towson", - "region": " North Coast", - "victoriaFile": "26250-20/14334", + "uuid": "4bd74c2b-026d-43dc-a20c-e04ca93b972c", + "siteID": 20172, + "address": "784 Parker Vista", + "latitude": 53.1292, + "longitude": -123.9834, + "lastUpdated": "2020-12-13", + "city": "West Marcoscester", + "region": "Vancouver Island/Coast", + "victoriaFile": "26250-20/12498", "regionalFile": "N/A", "parcelIDs": [ - 9583483, - 4682563, - 4099718, - 6328332, - 3578688 + 4153121, + 8510595, + 9029910, + 5240407, + 6395311 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "a746b805-66c4-4a80-8423-607e93abeda0", - "createdAt": "2017-03-12", + "uuid": "c680fa55-52f6-4f57-91fe-1887e5ad83a1", + "createdAt": "2017-02-20", "completed": "2021-04-17", - "initiated": "2018-01-20", - "ministryContact": "RODRIGUEZ GODFREY", + "initiated": "2018-01-15", + "ministryContact": "HOWE ZITA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -32325,44 +37414,26 @@ ], "notationParticipants": [ { - "uuid": "2086d679-3fba-4597-b9c9-863fdf228efd", + "uuid": "94c4969d-4a7e-4eea-8667-718825136cf7", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "uuid": "487a9c86-1ea8-4aee-876b-10bd4192aed1", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "uuid": "6d1f26be-1c02-4af3-a6fa-b5a4add8e7dc", - "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "83e4b1d1-16dc-4e59-9f72-67bd0f0ceb41", + "uuid": "1a324411-49d2-45af-bbc8-3c018b33dabd", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "uuid": "109d3dad-ecb3-443b-8b08-354d3f743f72", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "3fd24fee-6efe-411d-a687-2b13cdc66cf7", - "createdAt": "2020-10-23", - "completed": "2020-02-10", - "initiated": "2023-02-13", - "ministryContact": "QUITZON LIBBIE", + "uuid": "8c61e174-d1a7-4239-a5ff-e9ccd3a50ee0", + "createdAt": "2019-07-07", + "completed": "2020-05-13", + "initiated": "2017-01-03", + "ministryContact": "SWIFT ANNETTE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -32371,44 +37442,44 @@ ], "notationParticipants": [ { - "uuid": "b350c188-f75b-4258-b0c4-656b366f327b", - "name": "SHELL CANADA PRODUCTS", + "uuid": "4786553f-f092-452d-a2d2-3db4c99afd40", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false }, { - "uuid": "727c9db5-5980-4755-b4de-144edd251578", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true + "uuid": "46c2c309-9e97-439c-a895-c0fe083bfb3e", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false }, { - "uuid": "95c7ce20-48ce-47c2-b8b4-d4d480801085", - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "uuid": "295ce822-8f19-4a5e-92d7-345ea85464ba", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", "siteRegistry": false }, { - "uuid": "3a6afd24-e793-4832-b317-05ff7f4e81bc", + "uuid": "39c0ecd5-12da-4c22-8fbb-b9dedc468b4a", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "311b5076-257b-415e-b7b9-8b1f937bab22", + "uuid": "ea437d64-7aad-4493-9d60-cd61cba22d70", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "4a6b136d-4922-433f-afb5-ee699a030834", - "createdAt": "2023-07-02", - "completed": "2020-05-13", - "initiated": "2018-12-18", - "ministryContact": "BOGAN VENA", + "uuid": "e7dd8e49-826b-4080-8a6a-b89ecad6a60a", + "createdAt": "2017-01-09", + "completed": "2023-10-02", + "initiated": "2016-04-01", + "ministryContact": "MOSCISKI MANUELA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -32417,26 +37488,26 @@ ], "notationParticipants": [ { - "uuid": "e93f18fc-a829-4455-8931-df29fe541eee", - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "7690f050-ac98-473a-9c60-ee0d3863ab7c", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false }, { - "uuid": "2b228701-43fc-4f79-bfd9-bd3612e233d2", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true + "uuid": "c2f1a28e-b426-4ada-8e70-ea2c3a83d201", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "91b0273c-7979-4e20-9f3d-1d416ef5f704", - "createdAt": "2019-12-04", - "completed": "2018-10-30", - "initiated": "2019-07-04", - "ministryContact": "BALISTRERI EMELIE", + "uuid": "9b81c296-1c13-412d-a92b-91f791bb0022", + "createdAt": "2015-08-01", + "completed": "2015-06-16", + "initiated": "2018-02-12", + "ministryContact": "KING-BAUMBACH KENNEDY", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -32445,44 +37516,38 @@ ], "notationParticipants": [ { - "uuid": "41d6e779-ae72-44e2-b469-3a8eef5a3c2d", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "uuid": "bad155ab-35f3-41b5-af1d-00e02940735f", + "uuid": "96ed97a6-82b4-4344-b657-e3725a245ef4", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true + "role": "SUBMITTED BY", + "siteRegistry": false }, { - "uuid": "d7899ca5-74da-4820-9a68-2897f1afbfd8", + "uuid": "507ad24c-b0c2-449a-878a-efde1090e407", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false } ], "participants": [ { - "uuid": "76e21122-8f51-4615-a12e-892075641911", - "name": "SHELL CANADA PRODUCTS", - "endDate": "2020-03-31", - "startDate": "2019-03-17", + "uuid": "b29791c1-1669-48cc-af7b-aead6772c12b", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2017-10-30", + "startDate": "2015-05-15", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "aecb3e20-adba-4a95-8cc1-6f33cd04f85f", - "name": "IPSUM", - "endDate": "2017-01-01", - "startDate": "2016-02-05", + "uuid": "493aa366-97a3-403a-b7eb-7bb211906785", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2021-10-06", + "startDate": "2019-07-14", "notes": "", "roles": [ "EMPLOYEE" @@ -32490,246 +37555,304 @@ "siteRegistry": true }, { - "uuid": "299dac36-85bb-433b-8f0c-44a710c558bb", - "name": "AMET, DOLOR SIT", - "endDate": "2022-12-02", - "startDate": "2015-03-10", + "uuid": "0fedaac9-40b5-4424-9051-83268f815ed2", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2015-03-05", + "startDate": "2014-07-12", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": true } ], - "suspectLandUses": [ + "documents": [ { - "uuid": "fc4bcb53-e18d-4d09-bdd2-e1961a1e3897", + "uuid": "380fb851-fc3c-49e8-8b02-d192f3911712", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2020-01-15 (described on Site Profile dated 2020-01-15)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "documentDate": "2015-11-06", + "receivedDate": "2017-09-05", + "uploadedDate": "2015-08-08", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "48bf7a2d-9b19-42d6-a48f-6394481e9058", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "2d1666e4-890a-4dba-85a4-7ac8e945acfb", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "1ffef289-a6ab-4480-b3c7-5352be35c408", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": false, + "role": "AUTHOR" + } + ] }, { - "uuid": "ad787713-afbb-45b0-889b-5f71772b4445", + "uuid": "1a435c81-5f1e-4491-a07c-7d490b918770", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-02-11 (described on Site Profile dated 2021-02-11)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "documentDate": "2020-06-30", + "receivedDate": "2017-06-29", + "uploadedDate": "2018-08-05", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "ddb040c1-984c-4c18-938e-b6a5287c55fa", + "name": "AMET, DOLOR SIT", + "siteRegistry": false, + "role": "AUTHOR" + } + ] }, { - "uuid": "0a2e9e46-cfb4-4a25-9a1d-5f1eb978dd20", + "uuid": "20bf478d-cfa3-4a5b-94e9-b83c539f6b94", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-08-19 (described on Site Profile dated 2022-08-19)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "documentDate": "2019-08-17", + "receivedDate": "2014-08-22", + "uploadedDate": "2019-04-04", + "title": "Preliminary Site Investigation, Detailed Site Investigation and Remedial Plan for the Management Area adjacent to the Shell Site at 1503 West 41st Ave", + "participants": [ + { + "uuid": "c4e14b6f-dd77-4d21-b417-7de61041928e", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "0e276c22-c43f-4be8-9322-ba8fe338a28b", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": false, + "role": "AUTHOR" + } + ] }, { - "uuid": "ab7aee2b-e3bd-41ad-b83a-c8039bfd0767", + "uuid": "d2041a2e-8a81-4f38-8767-ee0121be8630", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-10-09 (described on Site Profile dated 2021-10-09)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "documentDate": "2014-04-05", + "receivedDate": "2014-11-12", + "uploadedDate": "2022-08-05", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "2a806fd4-5f92-473d-8586-ee5b0fe35971", + "name": "IPSUM", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "8875d0a6-b4f8-4396-a7dd-29c63cc03f61", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": true, + "role": "AUTHOR" + } + ] } ], - "parcelDescriptions": [ + "suspectLandUses": [ { - "uuid": "739d0f72-1eae-4573-95ad-156dd5760545", + "uuid": "899bd79e-cfe1-424e-9e70-a9daac5b77ff", "siteRegistry": false, - "dateNoted": "2021-03-15", - "parcelID": "20903", - "crownLandUsePIN": "16336", - "crownLandFileNumber": "16627", - "landDescription": "LOT 3 OF LOT 2 BLOCK 1 DISTRICT LOT 5 PLAN 9543" + "notes": "INSERTED FOR SITE PROFILE DATED 2018-09-10 (described on Site Profile dated 2018-09-10)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "uuid": "68ea69f8-0a92-492e-a32c-d3b87233b18e", - "siteRegistry": false, - "dateNoted": "2021-05-14", - "parcelID": "20457", - "crownLandUsePIN": "20225", - "crownLandFileNumber": "17086", - "landDescription": "LOT 4 OF LOT 3 BLOCK 3 DISTRICT LOT 4 PLAN 3293" + "uuid": "2e63a11f-11ae-4cd8-b5ca-89dfd00144fe", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2016-04-14 (described on Site Profile dated 2016-04-14)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "uuid": "f9a236d8-e0d9-444d-a38f-9740f232f0f5", + "uuid": "1aa6a766-b8e6-4a83-8b04-60f0d8c64fb0", "siteRegistry": false, - "dateNoted": "2013-11-18", - "parcelID": "17924", - "crownLandUsePIN": "18769", - "crownLandFileNumber": "19273", - "landDescription": "LOT 3 OF LOT 5 BLOCK 4 DISTRICT LOT 4 PLAN 8276" + "notes": "INSERTED FOR SITE PROFILE DATED 2015-10-31 (described on Site Profile dated 2015-10-31)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], - "siteDisclosures": [ + "parcelDescriptions": [ { - "uuid": "abbb8d86-fce9-416b-b42f-b8ef2da6c314", + "uuid": "1651c978-3fec-48a2-bf5e-f0294fe56c7b", "siteRegistry": false, - "dateReceived": "2021-04-30", - "dateCompleted": "2020-05-05", - "dateEntered": "2018-05-24", - "dateRegistrar": "2016-03-14", - "dateLocalAuthorityReceived": "2018-05-10", - "summary": "Molestias fuga enim officiis assumenda.", - "informationUsed": "Rerum soluta molestias officiis molestiae aut illum.\nVero vel harum dignissimos natus impedit.\nIpsam rem deleniti magnam illum officia est.\nMollitia rem eius iusto incidunt eius officia.\nEaque quos a iure mollitia commodi.", - "pastOrPresentOrders": "Maiores voluptate nostrum dolore praesentium nam quos a.\nEum totam facere reiciendis amet.", + "dateNoted": "2015-11-27", + "parcelID": "18262", + "crownLandUsePIN": "20244", + "crownLandFileNumber": "19771", + "landDescription": "LOT 4 OF LOT 4 BLOCK 2 DISTRICT LOT 2 PLAN 3938" + }, + { + "uuid": "f445a649-80fb-4e43-8020-30a6e6b1fa17", + "siteRegistry": true, + "dateNoted": "2017-02-11", + "parcelID": "16623", + "crownLandUsePIN": "15356", + "crownLandFileNumber": "20047", + "landDescription": "LOT 5 OF LOT 2 BLOCK 1 DISTRICT LOT 1 PLAN 7502" + }, + { + "uuid": "42385bfa-0d52-47b6-854f-3b2e4203cbf0", + "siteRegistry": true, + "dateNoted": "2015-04-22", + "parcelID": "20493", + "crownLandUsePIN": "19869", + "crownLandFileNumber": "19064", + "landDescription": "LOT 4 OF LOT 4 BLOCK 3 DISTRICT LOT 4 PLAN 4354" + } + ], + "siteDisclosures": [ + { + "uuid": "4d448fff-af73-4920-ac5d-e6740332d289", + "siteRegistry": true, + "dateReceived": "2018-03-11", + "dateCompleted": "2016-02-17", + "dateEntered": "2023-09-17", + "dateRegistrar": "2022-03-28", + "dateLocalAuthorityReceived": "2018-06-13", + "summary": "Nisi quisquam necessitatibus esse.\nNostrum consectetur molestias itaque adipisci sunt animi nemo voluptatem.", + "informationUsed": "Iste perferendis dolorum recusandae quaerat omnis ipsam numquam quam.\nHarum voluptatibus voluptatibus.\nQuisquam velit omnis iste praesentium aut quisquam maxime.\nNatus necessitatibus minus amet mollitia non quos.\nAlias eveniet necessitatibus nesciunt delectus exercitationem blanditiis iusto eum ipsam.", + "pastOrPresentOrders": "Animi nesciunt eos soluta enim sint molestias voluptas.\nDolore facilis aut earum quia assumenda reprehenderit iusto consequuntur.\nPerferendis sapiente nostrum sunt quaerat.", "commercialAndIndustrialPurposes": [ { - "uuid": "c13057f6-58e2-4f66-98d3-647117d4a3e1", - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true + "uuid": "4cf4f846-6ee4-4a0f-85e0-ce2ad4a20a63", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false }, { - "uuid": "3fb0189b-50d6-498e-a9d0-bf294a64b490", + "uuid": "35d22bfb-c76e-42aa-a010-581497bce782", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, { - "uuid": "125805c0-6d09-4cbe-8c2c-34241e9d8c2f", + "uuid": "787764d5-b642-4e54-988f-300df25fab30", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true + "siteRegistry": false } ] }, { - "uuid": "40722856-5392-4923-b162-aaba9ef6e69e", + "uuid": "fc67dc7d-8bf2-456c-bf79-3b8c0b0cd502", "siteRegistry": false, - "dateReceived": "2022-02-09", - "dateCompleted": "2018-06-11", - "dateEntered": "2017-04-15", - "dateRegistrar": "2016-08-18", - "dateLocalAuthorityReceived": "2017-07-09", - "summary": "Nisi provident odit expedita enim suscipit cupiditate quo aspernatur.\nNeque amet amet aut deleniti.", - "informationUsed": "Explicabo ea vel.\nVoluptatibus iure doloribus laudantium expedita vel repudiandae.\nQuasi nulla occaecati consequuntur autem distinctio voluptates iusto consequuntur maiores.\nAmet aperiam dolore reprehenderit iure amet.\nA omnis eaque culpa totam earum dolorum.", - "pastOrPresentOrders": "Earum numquam labore ullam necessitatibus architecto debitis blanditiis.\nIusto suscipit alias dolores accusantium.", + "dateReceived": "2018-12-12", + "dateCompleted": "2021-06-05", + "dateEntered": "2015-08-31", + "dateRegistrar": "2014-12-14", + "dateLocalAuthorityReceived": "2022-01-21", + "summary": "Neque repellendus neque alias maiores quaerat suscipit quos expedita nisi.\nOfficia dignissimos illo expedita aliquid nostrum expedita laborum unde praesentium.\nReiciendis quia cum sapiente quia explicabo nemo inventore.", + "informationUsed": "Adipisci molestiae minima repudiandae assumenda velit quos dolore.\nMollitia ullam veritatis quibusdam nisi tenetur quaerat.\nNam ab voluptatibus mollitia.\nVeniam vero ab.", + "pastOrPresentOrders": "Dolorem voluptatum in.\nEos aliquam vero harum dolore maiores ipsum laboriosam voluptatum laboriosam.\nEt eos earum voluptates cum sequi beatae placeat veniam quam.", "commercialAndIndustrialPurposes": [ { - "uuid": "3bc46ddb-04c2-4cdf-8547-5ab5951e5ec3", + "uuid": "bb9740ed-a161-4bde-965f-854cbd57ab7b", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false }, { - "uuid": "eb3d365a-fbd6-402f-b3d5-8be8df4b068c", + "uuid": "ab0d9f9f-4fdb-4fc3-be3c-62f4ec0b595f", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { - "uuid": "0f762ac2-5d02-46d1-b689-243397b37da4", + "uuid": "245ab9f7-465d-4b87-9d1f-cad6a05a1cc1", "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false - }, - { - "uuid": "5b6f87fb-14ca-439f-a22a-8165d71d0c92", - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true } ] } ], "activityLog": [ { - "uuid": "00dffbc9-483f-4c43-b1fb-11f81b2c8d23", - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "BEATTY CORA", - "timestamp": "2014-06-22" - }, - { - "uuid": "0016ef88-89d5-41c8-9b6d-b9fdadb95af7", - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "STEHR MICHELE", - "timestamp": "2020-04-16" - }, - { - "uuid": "d14c3100-72bd-483f-8edd-536f32feadfa", + "uuid": "fc5543d6-ce66-4273-9820-1eca1ce6c8e1", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "WITTING KATHLYN", - "timestamp": "2015-12-03" + "user": "PURDY DAN", + "timestamp": "2019-12-21" }, { - "uuid": "553a1581-40ac-46f2-9ee5-76d9bdf4f286", + "uuid": "66c4114f-f384-4f7b-b119-005e994a1829", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "TREMBLAY ROXANE", - "timestamp": "2016-02-24" + "user": "MORAR BRET", + "timestamp": "2017-09-07" }, { - "uuid": "6cf4178a-e14b-4536-b1b9-2900610cb74a", + "uuid": "a8b8dab2-900a-4b2a-98ad-72d47947651f", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "GOODWIN ISAC", - "timestamp": "2022-04-06" + "user": "HAMMES GRAYSON", + "timestamp": "2018-06-15" }, { - "uuid": "8b4c01d2-a588-4051-97ec-91d6610b8a03", + "uuid": "259f84e8-a30f-4b83-81c7-a9afecb996a3", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "MCDERMOTT GIOVANNA", - "timestamp": "2016-12-03" - }, - { - "uuid": "afcd285a-bac6-46da-8369-8eade751de93", - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "NITZSCHE RYAN", - "timestamp": "2016-12-24" + "user": "D'AMORE ELFRIEDA", + "timestamp": "2020-03-03" }, { - "uuid": "1cf8b9eb-94a2-4f2f-b365-71ac0ba89e8b", + "uuid": "07904ca8-8f7d-4e73-906c-7e66034c91d9", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "LEDNER MOSSIE", - "timestamp": "2023-08-14" - }, - { - "uuid": "67d1e2cc-5e5b-4069-a49b-373e01b1764b", - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "LEANNON TATUM", - "timestamp": "2017-04-07" + "user": "EMARD RYAN", + "timestamp": "2019-06-17" } ], "associatedSites": [ { - "uuid": "7f9918ba-aeee-4ced-b787-255f3a0cb3bb", - "dateNoted": "2020-02-01", + "uuid": "28dba2d7-b8a6-4360-b40d-c94bc6b633e4", + "dateNoted": "2023-05-03", + "notes": "", + "parcelID": "16855", + "siteID": "18600", + "siteRegistry": false + }, + { + "uuid": "234f08b2-6ea7-4c60-b7bf-5fea2368b612", + "dateNoted": "2021-04-03", "notes": "", - "parcelID": "18556", - "siteID": "16026", + "parcelID": "16086", + "siteID": "19141", "siteRegistry": true } ] }, { - "uuid": "94ee00b5-7adc-429b-a9bd-6d50330e2cf3", - "siteID": 19927, - "address": "152 Conroy Road", - "latitude": 50.4579, - "longitude": -133.6263, - "lastUpdated": "2021-01-25", - "city": "North Isidroworth", - "region": "Thompson-Okanagan", - "victoriaFile": "26250-20/3939", + "uuid": "67d043b1-24cb-47ef-8a65-bd9806683ae8", + "siteID": 18132, + "address": "3700 Eleazar Extension", + "latitude": 50.818, + "longitude": -124.6836, + "lastUpdated": "2015-02-06", + "city": "New Danny", + "region": "Mainland/Southwest", + "victoriaFile": "26250-20/5328", "regionalFile": "N/A", "parcelIDs": [ - 5931548, - 171153, - 8610097, - 143352, - 8583667 + 8529176, + 6738792, + 888054, + 8910358, + 3456334 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "05fcce83-9a3c-4c7c-88b0-d12ccfe4611a", - "createdAt": "2020-06-13", - "completed": "2021-10-09", - "initiated": "2021-03-31", - "ministryContact": "BECHTELAR JOSHUA", + "uuid": "3567c19d-10b0-4915-91fa-a942574c9c10", + "createdAt": "2018-12-24", + "completed": "2017-11-24", + "initiated": "2023-05-08", + "ministryContact": "LANGWORTH NAOMI", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -32738,116 +37861,26 @@ ], "notationParticipants": [ { - "uuid": "eda12202-e2e8-4b7c-a3e0-589266fb3cc5", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "uuid": "7ca3da41-af55-4881-b2cb-7cc8cbb574f1", + "uuid": "5e460fb8-a63f-4473-bfaa-9e95535cc00a", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - } - ], - "siteRegistry": true - }, - { - "uuid": "32a48425-aa6f-4ddf-8c1c-5ab5fc90a7ad", - "createdAt": "2019-09-11", - "completed": "2023-07-05", - "initiated": "2020-12-12", - "ministryContact": "STANTON CONNOR", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "uuid": "67020948-8fb9-46a9-8c23-86de8130f1cf", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "uuid": "d58c5bbf-15f1-4436-a7d5-d11fabf597da", - "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "e088c990-ea3d-4fbd-8133-54a586a3e508", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "uuid": "f5886da8-b3d3-4711-875c-0b725b09e688", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - } - ], - "siteRegistry": true - }, - { - "uuid": "798447e7-dd7f-4647-8892-14abf5f2dede", - "createdAt": "2021-12-30", - "completed": "2017-09-26", - "initiated": "2020-06-04", - "ministryContact": "WINDLER ANIBAL", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "uuid": "0b133b25-31d9-4c52-922f-9c881ce5e200", + "uuid": "4039aa44-f0ad-4d95-9245-a32ab19eabe6", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false }, { - "uuid": "b375b3fa-306c-4ddb-8073-539dab57a06e", - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - } - ], - "siteRegistry": true - }, - { - "uuid": "92572830-88f2-4baa-ab6c-44d463ba9acd", - "createdAt": "2023-04-26", - "completed": "2014-11-24", - "initiated": "2021-06-04", - "ministryContact": "NOLAN JANNIE", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "uuid": "1d541b0d-6630-4f53-a20a-23b3a76f744e", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "uuid": "8775902e-a900-4092-9b24-35a67572973b", + "uuid": "21ea419a-e1c3-412f-a0da-56fa7025b76b", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "cff439e3-60a7-4cf9-bbd5-db3e50ec0c27", - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "4fdc65b2-3927-4c6d-8458-f1475b517e30", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true } @@ -32855,11 +37888,11 @@ "siteRegistry": false }, { - "uuid": "bd76d818-4133-4f0f-ac8a-2360db043280", - "createdAt": "2020-03-04", - "completed": "2017-06-25", - "initiated": "2014-07-07", - "ministryContact": "STREICH FLETA", + "uuid": "7c06f821-61bc-46dd-9468-1b06db17b715", + "createdAt": "2014-04-08", + "completed": "2015-10-26", + "initiated": "2019-04-13", + "ministryContact": "CORWIN RANSOM", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -32868,61 +37901,50 @@ ], "notationParticipants": [ { - "uuid": "7fdd7e52-7338-4cd0-b8ee-46d1b35070ba", + "uuid": "d77d9eb3-3b4f-42b5-bd04-859222dae7fb", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false + "role": "SUBMITTED BY", + "siteRegistry": true }, { - "uuid": "de912b51-ae05-4083-88ca-0cfedf94927f", + "uuid": "c9ae4791-fbc5-42c2-9e02-f96eaf7c5cac", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "2db23626-2b3e-4eb2-8b09-4d1d8f3b70ab", - "name": "SHELL CANADA PRODUCTS", + "uuid": "56562be6-60e7-4ff3-84f6-cac9842f87b8", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "68fb44da-de92-43f9-bbc4-6343d4d4a750", + "uuid": "cdb613c7-2612-4eb9-bd59-bad32eaeb06e", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true } ], "participants": [ { - "uuid": "4c4afd8f-1604-4605-a863-ce92c2c768a9", - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2016-09-10", - "startDate": "2021-04-27", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": false - }, - { - "uuid": "245bc221-5e3e-4f93-a692-69c1fc353b9f", - "name": "IPSUM", - "endDate": "2017-10-28", - "startDate": "2014-03-28", + "uuid": "a680d087-b854-4e2c-8463-6d663bc33351", + "name": "AMET, DOLOR SIT", + "endDate": "2021-07-28", + "startDate": "2017-10-22", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "261e0bd6-8f16-43d2-ab55-24d7c014ff64", - "name": "AMET, DOLOR SIT", - "endDate": "2016-08-15", - "startDate": "2023-06-20", + "uuid": "951c218c-3d42-4d58-a25a-43900dd91470", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2017-08-22", + "startDate": "2018-12-22", "notes": "", "roles": [ "ORGANIZATION" @@ -32930,234 +37952,296 @@ "siteRegistry": true } ], - "suspectLandUses": [ + "documents": [ { - "uuid": "d3bd2af9-a8c6-49af-9e21-b03862388fd7", + "uuid": "680ed97b-b9ea-4c68-8090-02d738cdc684", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-08-28 (described on Site Profile dated 2016-08-28)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "documentDate": "2018-04-14", + "receivedDate": "2019-06-20", + "uploadedDate": "2022-08-26", + "title": "Preliminary Site Investigation, Detailed Site Investigation and Remedial Plan for the Management Area adjacent to the Shell Site at 1503 West 41st Ave", + "participants": [ + { + "uuid": "d77ffdc3-a289-40c6-8fc9-8db23dad3e69", + "name": "AMET, DOLOR SIT", + "siteRegistry": false, + "role": "AUTHOR" + } + ] }, { - "uuid": "91bc1d1e-9268-4a9c-a2eb-2af11d31dfad", + "uuid": "931df152-74f7-4afe-a2c7-974bedac0fdc", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2023-08-15 (described on Site Profile dated 2023-08-15)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "documentDate": "2018-04-24", + "receivedDate": "2016-01-04", + "uploadedDate": "2018-07-16", + "title": "Preliminary Site Investigation, Detailed Site Investigation and Remedial Plan for the Management Area adjacent to the Shell Site at 1503 West 41st Ave", + "participants": [ + { + "uuid": "a61c4955-dedd-43d5-b705-7fa1a4487002", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "2e39faf5-7c2e-4c1e-bdd6-4ef9f7f692f1", + "name": "IPSUM", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "9111844b-3361-4e93-bacf-05c4ca6c467f", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": true, + "role": "AUTHOR" + } + ] }, { - "uuid": "48b09767-a78d-4070-8031-efe323a54223", - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-02-21 (described on Site Profile dated 2021-02-21)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "uuid": "82de6133-dfe4-4386-ab46-b785cf296e46", + "siteRegistry": false, + "documentDate": "2015-01-19", + "receivedDate": "2014-02-13", + "uploadedDate": "2018-07-30", + "title": "Preliminary Site Investigation, Detailed Site Investigation and Remedial Plan for the Management Area adjacent to the Shell Site at 1503 West 41st Ave", + "participants": [ + { + "uuid": "3fdf232b-6c5c-4336-91e0-a47132370158", + "name": "AMET, DOLOR SIT", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "57486459-1b82-42c6-8169-e2de7196d213", + "name": "IPSUM", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "24dbd4ae-e152-4e4b-9d9a-f20d2bfd0ed6", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": true, + "role": "AUTHOR" + } + ] } ], - "parcelDescriptions": [ + "suspectLandUses": [ { - "uuid": "bb910abd-d065-48f5-afb5-469f9e7e6f17", + "uuid": "48f3530a-91d8-435f-80d9-db583a2264b8", "siteRegistry": true, - "dateNoted": "2017-02-13", - "parcelID": "18700", - "crownLandUsePIN": "20530", - "crownLandFileNumber": "20023", - "landDescription": "LOT 5 OF LOT 4 BLOCK 3 DISTRICT LOT 4 PLAN 6005" + "notes": "INSERTED FOR SITE PROFILE DATED 2019-12-19 (described on Site Profile dated 2019-12-19)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "uuid": "58fc4199-295e-44ca-9c20-5ff75b4af75a", + "uuid": "fa4219d3-d540-4d72-9da7-896918fdc58a", "siteRegistry": true, - "dateNoted": "2019-04-07", - "parcelID": "19534", - "crownLandUsePIN": "17806", - "crownLandFileNumber": "17700", - "landDescription": "LOT 4 OF LOT 5 BLOCK 4 DISTRICT LOT 2 PLAN 9644" - }, + "notes": "INSERTED FOR SITE PROFILE DATED 2018-03-01 (described on Site Profile dated 2018-03-01)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + } + ], + "parcelDescriptions": [ { - "uuid": "68185434-3e7d-46a0-a956-812e9fa0d7df", + "uuid": "3d2d37da-0e7b-49b2-b976-dd91b0be9f9f", "siteRegistry": false, - "dateNoted": "2017-02-20", - "parcelID": "19461", - "crownLandUsePIN": "18797", - "crownLandFileNumber": "20443", - "landDescription": "LOT 2 OF LOT 2 BLOCK 1 DISTRICT LOT 3 PLAN 8398" + "dateNoted": "2021-08-05", + "parcelID": "16315", + "crownLandUsePIN": "16146", + "crownLandFileNumber": "17418", + "landDescription": "LOT 4 OF LOT 2 BLOCK 5 DISTRICT LOT 3 PLAN 8340" }, { - "uuid": "acee711d-9e62-4d71-9c02-0ff241b8e7f6", + "uuid": "0da53c46-6989-45f4-8e0d-045737a80374", "siteRegistry": true, - "dateNoted": "2021-07-09", - "parcelID": "15338", - "crownLandUsePIN": "18436", - "crownLandFileNumber": "18643", - "landDescription": "LOT 2 OF LOT 5 BLOCK 2 DISTRICT LOT 1 PLAN 6935" + "dateNoted": "2022-02-25", + "parcelID": "16888", + "crownLandUsePIN": "16002", + "crownLandFileNumber": "15476", + "landDescription": "LOT 1 OF LOT 4 BLOCK 1 DISTRICT LOT 5 PLAN 9265" } ], "siteDisclosures": [ { - "uuid": "fc55f918-3148-4f58-a74a-0f5af49e5bdb", - "siteRegistry": true, - "dateReceived": "2018-03-07", - "dateCompleted": "2018-10-15", - "dateEntered": "2016-05-19", - "dateRegistrar": "2023-07-10", - "dateLocalAuthorityReceived": "2015-11-20", - "summary": "Nemo error veniam iusto.\nPariatur laboriosam adipisci hic vel porro dolores.", - "informationUsed": "Magnam quisquam deserunt enim soluta maxime ab magnam velit.\nConsequatur beatae distinctio suscipit eveniet necessitatibus.\nMinima exercitationem ad officiis voluptas eaque iusto qui temporibus optio.\nTotam asperiores laborum omnis.", - "pastOrPresentOrders": "Facilis laborum temporibus tenetur quae.", + "uuid": "4a69f392-94bd-44b4-bc40-db9778cfca02", + "siteRegistry": false, + "dateReceived": "2017-08-22", + "dateCompleted": "2016-11-22", + "dateEntered": "2022-03-15", + "dateRegistrar": "2017-07-08", + "dateLocalAuthorityReceived": "2017-09-26", + "summary": "Ipsam temporibus aspernatur autem.", + "informationUsed": "Nostrum sint nobis labore architecto nobis.\nSunt est eum ipsum a commodi.\nCulpa quidem voluptate magni sed aspernatur.", + "pastOrPresentOrders": "Quisquam nihil assumenda officia.\nSimilique delectus facere et.", "commercialAndIndustrialPurposes": [ { - "uuid": "25778a6d-1ed9-4afa-9b1c-e920900596f8", - "scheduleReference": "F1*", + "uuid": "cb5734a8-6449-43b3-9bc2-925d9dee5807", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, { - "uuid": "6d34c669-2450-4a0d-9f35-ed3dac0e716a", - "scheduleReference": "F1*", + "uuid": "f9e20988-c919-4690-9339-f4ccbd01c615", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "uuid": "8f22f301-06c9-4cdf-a606-f05063831f2f", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false + "siteRegistry": true + }, + { + "uuid": "6f3b256f-ad0e-4256-8284-4c383577bfdb", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true } ] }, { - "uuid": "a70a02da-b4c6-4120-b9ba-515c04935ebb", + "uuid": "f2501332-8403-4ec8-99dd-7ccd29380b4b", "siteRegistry": true, - "dateReceived": "2017-02-12", - "dateCompleted": "2017-03-22", - "dateEntered": "2016-08-03", - "dateRegistrar": "2018-12-31", - "dateLocalAuthorityReceived": "2016-11-12", - "summary": "Quis modi quam dicta quasi eligendi aliquam illo.", - "informationUsed": "Commodi harum nulla beatae tenetur iusto debitis veniam.\nEaque molestiae vero inventore commodi neque natus.\nMagni voluptatem exercitationem.", - "pastOrPresentOrders": "Omnis quod quod at nesciunt libero.\nCommodi animi laborum odit illo optio quasi maiores.\nAut nam sunt.", + "dateReceived": "2022-03-10", + "dateCompleted": "2022-04-18", + "dateEntered": "2019-02-04", + "dateRegistrar": "2018-03-02", + "dateLocalAuthorityReceived": "2021-10-20", + "summary": "Nihil placeat tenetur ipsa ipsa omnis.\nIllum quibusdam corrupti quia aliquam earum dolore perspiciatis debitis deleniti.", + "informationUsed": "Accusantium maiores adipisci aspernatur accusamus blanditiis molestiae fugit illo.\nMagnam magni veniam aut itaque officiis excepturi.\nAutem cum laboriosam iste voluptas placeat.\nCorporis reiciendis quas voluptates delectus excepturi nisi aut tempora.\nTemporibus pariatur asperiores assumenda dignissimos eligendi hic magni nisi.", + "pastOrPresentOrders": "Mollitia vitae in amet libero ad dolorum incidunt ipsa ut.\nAtque quam consequatur tenetur ipsam consectetur accusantium.", "commercialAndIndustrialPurposes": [ { - "uuid": "e479b42d-fd9a-406a-9b2a-422dcc93fd12", - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true - }, - { - "uuid": "407a7a5c-34c0-4f17-943d-8637aee1998c", - "scheduleReference": "F2*", + "uuid": "1c422676-2708-4e24-91f4-4bcef06ea053", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false }, { - "uuid": "5072ba53-b75a-46d0-b0de-e918553805f5", + "uuid": "d366c401-6a07-40ee-b072-d6f6f67e76bf", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "uuid": "c9f63d6d-936c-4ba9-adcc-9bcf8146dfd1", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false }, { - "uuid": "b2d8758b-3874-4537-80eb-e3d57302f117", - "scheduleReference": "F2*", + "uuid": "d6b04e1c-d29e-4eff-af13-d5975f71dd79", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true + "siteRegistry": false } ] } ], "activityLog": [ { - "uuid": "0f3fc51e-0cdf-40e4-afb3-c378d9a07656", - "siteRegistry": true, + "uuid": "7086b24c-2eb6-4f8d-9fcc-fb5f39bb829c", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "BARROWS NETTIE", - "timestamp": "2014-04-19" + "user": "REINGER GILBERTO", + "timestamp": "2014-12-01" }, { - "uuid": "b319837d-7296-4a10-a3e3-f3c6c726fda3", - "siteRegistry": false, + "uuid": "336c4757-cb05-4401-8638-54d7d5ec1bf8", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "CROOKS MISAEL", - "timestamp": "2018-11-01" + "user": "BLOCK MYRTICE", + "timestamp": "2020-04-18" }, { - "uuid": "77ffe1e0-f2f1-4925-a81a-dc9abbddc78d", + "uuid": "be3bf891-d9e4-44e6-8ae1-9e41914a7d96", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "ANDERSON CHARLENE", - "timestamp": "2014-09-10" + "user": "LESCH ASIA", + "timestamp": "2021-07-09" }, { - "uuid": "a093a138-3adb-4f27-8c9a-ea41a0e6e3ff", + "uuid": "c2b83694-3744-4441-bea9-9166b668832c", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "GISLASON PERCY", - "timestamp": "2021-10-02" + "user": "LUBOWITZ NANNIE", + "timestamp": "2018-07-08" }, { - "uuid": "985bbddf-0445-40f1-ace0-0649eb992b54", - "siteRegistry": false, + "uuid": "05994671-a8b2-4706-a686-e6ca7f94d831", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "SCHAMBERGER KAMERON", - "timestamp": "2023-02-14" + "user": "SCHUPPE PERCY", + "timestamp": "2016-09-23" }, { - "uuid": "e115f00f-62b2-4a0d-8a79-45a605e58d1f", - "siteRegistry": false, + "uuid": "d8f46afc-e77d-45e4-a4ca-aae315609f37", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "BOTSFORD TRENT", - "timestamp": "2013-12-24" + "user": "HETTINGER-REINGER MYRTICE", + "timestamp": "2016-10-22" }, { - "uuid": "9922b236-9244-49ae-abcb-d707bcedece3", + "uuid": "c4beee71-ef8a-4430-9902-43cc906469aa", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "KUNDE DANIELLE", - "timestamp": "2016-05-30" + "user": "TORP KASSANDRA", + "timestamp": "2023-01-30" } ], "associatedSites": [ { - "uuid": "be85f00c-3f0c-4aed-ac99-fbed21e0a8ab", - "dateNoted": "2020-02-26", + "uuid": "1565d334-3e39-4ec0-ae39-bb1c876b3070", + "dateNoted": "2019-04-02", "notes": "", - "parcelID": "16649", - "siteID": "18583", - "siteRegistry": false + "parcelID": "18010", + "siteID": "17697", + "siteRegistry": true }, { - "uuid": "8b861ce5-4422-4ea3-b624-799b1f500e04", - "dateNoted": "2017-05-10", + "uuid": "498b01bf-df3d-48b0-be0a-a50058df83b8", + "dateNoted": "2018-09-06", "notes": "", - "parcelID": "20763", - "siteID": "15722", - "siteRegistry": false + "parcelID": "19439", + "siteID": "16457", + "siteRegistry": true }, { - "uuid": "f198d647-9c9b-4963-a092-402145acab46", - "dateNoted": "2020-07-07", + "uuid": "9447712b-6185-4e97-8419-5f04ff6aa66f", + "dateNoted": "2019-07-21", "notes": "", - "parcelID": "19768", - "siteID": "19481", - "siteRegistry": false + "parcelID": "15579", + "siteID": "18803", + "siteRegistry": true } ] }, { - "uuid": "a7c3f495-3ac3-4706-b742-a213a18fcba1", - "siteID": 18021, - "address": "811 Treutel Cape", - "latitude": 50.9473, - "longitude": -133.5551, - "lastUpdated": "2021-10-12", - "city": "South Kari", + "uuid": "468cb87d-402a-462d-a953-9419b7d6d539", + "siteID": 18670, + "address": "4998 Brown Parks", + "latitude": 49.9678, + "longitude": -122.7709, + "lastUpdated": "2015-04-07", + "city": "East Marianoside", "region": "Kootenay", - "victoriaFile": "26250-20/15278", + "victoriaFile": "26250-20/14921", "regionalFile": "N/A", "parcelIDs": [ - 9706538, - 8959900, - 3434412, - 4703417, - 7643178 + 3931418, + 3273626, + 6540192, + 7389130, + 4607495 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "822dee67-f065-47bb-8b15-5a5593836bf6", - "createdAt": "2019-11-06", - "completed": "2019-04-19", - "initiated": "2013-12-30", - "ministryContact": "BEDNAR WARD", + "uuid": "af264e7e-21b7-4d02-aaab-172bed46b5cd", + "createdAt": "2021-05-06", + "completed": "2018-04-11", + "initiated": "2020-12-05", + "ministryContact": "HAYES ALBINA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -33166,38 +38250,38 @@ ], "notationParticipants": [ { - "uuid": "090be348-4511-42a1-90cc-578e526e4afc", + "uuid": "7a7e4358-679a-4f96-ac5c-fcb12f0f5254", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false }, { - "uuid": "2bff7593-cb83-4b0b-8245-f9e7d3ee1b83", - "name": "SHELL CANADA PRODUCTS", + "uuid": "d74ed172-1881-49fb-b32b-19be68d93866", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "0cb4f629-3254-4bf9-a98a-c05a715968fa", - "name": "SHELL CANADA PRODUCTS", + "uuid": "44648c02-a924-4b54-912f-730d9f03c0c3", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "63670a7e-5ee0-40ab-b581-2cd2c4ee7dcd", + "uuid": "32b8bd82-99b8-43bb-b882-b9223cf9ee43", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "606722e3-5103-4831-bb8f-8202e0ea5530", - "createdAt": "2018-08-08", - "completed": "2022-08-19", - "initiated": "2023-04-06", - "ministryContact": "LEANNON KEVIN", + "uuid": "80d9a77a-16d7-4cb2-808c-8872e0963c09", + "createdAt": "2020-02-23", + "completed": "2022-10-10", + "initiated": "2018-06-24", + "ministryContact": "SCHOWALTER MARION", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -33206,45 +38290,39 @@ ], "notationParticipants": [ { - "uuid": "96471956-26e9-4b1b-a739-4c40bfa93c98", + "uuid": "364cd066-6090-4e0a-b2a5-7f911770365f", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false }, { - "uuid": "16b80ddf-c923-4357-84fc-d2646f5a5be0", - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "04d30fed-5351-4489-9baa-baa962b1fc20", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "uuid": "628e31aa-d30a-4776-820b-8b48eeb7c92a", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "a18518cb-4439-41bd-9878-c00f0a8d8a5d", + "uuid": "6fd22fbc-b50a-484d-b4c3-543f1990d4f9", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true + "role": "SUBMITTED BY", + "siteRegistry": false }, { - "uuid": "9209b131-32a1-4747-acff-f149b96f036f", + "uuid": "5ae9be0a-7f67-44d5-a0f3-c53697be3db5", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "4564bece-cbbe-40ac-8825-6e71563e5a2f", - "createdAt": "2014-07-19", - "completed": "2014-03-14", - "initiated": "2023-06-22", - "ministryContact": "KOSS REINA", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "uuid": "3548528f-8372-4ec9-8de8-3589e94c3826", + "createdAt": "2014-03-21", + "completed": "2021-11-12", + "initiated": "2019-05-31", + "ministryContact": "DOOLEY BRENNA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", "requestedActions": [ @@ -33252,50 +38330,95 @@ ], "notationParticipants": [ { - "uuid": "f7696a18-9dfd-4a5a-b486-b88423ac1a9d", + "uuid": "ef1eefa2-5ba8-4924-818d-961f1bc0ac58", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true }, { - "uuid": "7710f449-5073-49c9-b45a-a36b601c119c", - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "e5e91542-aeac-46b8-bfbd-7919be0f6637", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "9a60678c-7cd8-4098-a86e-1805946828f4", + "uuid": "1d8a0db4-8ac4-4282-833f-f9a6c3de0cb7", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false }, { - "uuid": "0356280a-f529-4b61-b985-02edd949fdeb", + "uuid": "efeef0d5-2cac-4f9f-9ecb-4513b033c2c1", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "uuid": "419898f6-ab32-4e12-ab87-1f8100b1b9dd", + "createdAt": "2018-10-05", + "completed": "2016-11-15", + "initiated": "2019-05-11", + "ministryContact": "PARKER LEONIE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "uuid": "504adb18-a35b-4717-9538-ac7dec940e7b", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "ec427537-368a-49cb-b855-70220367b326", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", "siteRegistry": false + }, + { + "uuid": "a5a92c4f-be8f-401e-aaa4-c5e08065658f", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true } ], "participants": [ { - "uuid": "6f9551a7-3b03-48dd-9ad6-fb57de7df08c", + "uuid": "ffae1e99-4993-4daa-9f84-51d0f6eef07b", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2023-02-07", + "startDate": "2016-07-09", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "uuid": "a3caa906-0ee3-4956-a562-f59e39589e60", "name": "IPSUM", - "endDate": "2019-03-24", - "startDate": "2022-07-01", + "endDate": "2017-10-02", + "startDate": "2018-09-10", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "c9d34f5b-8ac2-40ab-b7fd-b9e628c8a857", - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2014-04-21", - "startDate": "2016-03-15", + "uuid": "7d72fc80-5dbf-4dd5-9772-821315661cb6", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2018-09-23", + "startDate": "2015-02-25", "notes": "", "roles": [ "EMPLOYEE" @@ -33303,10 +38426,21 @@ "siteRegistry": false }, { - "uuid": "aa12eb2b-c02c-478a-ac62-321bb54a9e6f", + "uuid": "143e18d8-e54a-4d2c-bc88-542139e5054c", "name": "IPSUM", - "endDate": "2014-01-19", - "startDate": "2018-09-17", + "endDate": "2013-12-04", + "startDate": "2014-10-22", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "uuid": "65fd38e2-d411-45cb-9ab5-9fb5717ab5ed", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2015-03-17", + "startDate": "2016-02-23", "notes": "", "roles": [ "EMPLOYEE" @@ -33314,88 +38448,166 @@ "siteRegistry": false } ], + "documents": [ + { + "uuid": "b3d46f27-c325-4bdf-a21b-dc265459c4f9", + "siteRegistry": true, + "documentDate": "2021-07-29", + "receivedDate": "2023-03-01", + "uploadedDate": "2015-10-30", + "title": "Preliminary Site Investigation, Detailed Site Investigation and Remedial Plan for the Management Area adjacent to the Shell Site at 1503 West 41st Ave", + "participants": [ + { + "uuid": "86a83be9-e8ae-4c4e-b3dc-8e22d4c2197d", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": true, + "role": "AUTHOR" + } + ] + }, + { + "uuid": "9708854b-d2fb-42db-8a20-22b05aeadbcc", + "siteRegistry": true, + "documentDate": "2018-02-20", + "receivedDate": "2020-06-16", + "uploadedDate": "2017-04-09", + "title": "Preliminary Site Investigation, Detailed Site Investigation and Remedial Plan for the Management Area adjacent to the Shell Site at 1503 West 41st Ave", + "participants": [ + { + "uuid": "4a06c972-2e7f-4042-bb04-eff63591fecd", + "name": "AMET, DOLOR SIT", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "918a2cd5-4ab1-4a0d-bcb7-8199c2d953c2", + "name": "IPSUM", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "533caa9a-d1ce-489f-9698-fe6f0641a09b", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": true, + "role": "AUTHOR" + } + ] + }, + { + "uuid": "dd5c4cc6-5769-4acd-bca1-c1579dbbe148", + "siteRegistry": true, + "documentDate": "2016-06-19", + "receivedDate": "2016-01-14", + "uploadedDate": "2019-06-03", + "title": "Preliminary Site Investigation, Detailed Site Investigation and Remedial Plan for the Management Area adjacent to the Shell Site at 1503 West 41st Ave", + "participants": [ + { + "uuid": "84c8846f-31f6-4da1-b01e-bd123296622d", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": true, + "role": "AUTHOR" + } + ] + }, + { + "uuid": "e035f2f3-040c-4005-b0f6-aea24c29058c", + "siteRegistry": true, + "documentDate": "2017-08-01", + "receivedDate": "2021-04-01", + "uploadedDate": "2020-01-15", + "title": "Preliminary Site Investigation, Detailed Site Investigation and Remedial Plan for the Management Area adjacent to the Shell Site at 1503 West 41st Ave", + "participants": [ + { + "uuid": "682bba2d-c75f-42d1-9e42-d72406a99bba", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": true, + "role": "AUTHOR" + } + ] + } + ], "suspectLandUses": [ { - "uuid": "1b574ef6-79e0-4ff3-97d7-39951c12984d", - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-08-22 (described on Site Profile dated 2022-08-22)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "uuid": "309d3ed9-6df6-4286-bfb8-c699d67574eb", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2016-11-20 (described on Site Profile dated 2016-11-20)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "uuid": "ba72fcaa-2770-4f14-baed-4632ab0f0a2f", + "uuid": "30b308c1-b8b5-469c-8858-f3be414cecc7", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-03-15 (described on Site Profile dated 2019-03-15)", + "notes": "INSERTED FOR SITE PROFILE DATED 2018-04-04 (described on Site Profile dated 2018-04-04)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "uuid": "57432399-04e6-4606-ba38-990f15672925", - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-04-21 (described on Site Profile dated 2018-04-21)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "uuid": "3aad515a-f503-40ec-a4d7-88b8af8908d9", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2017-10-02 (described on Site Profile dated 2017-10-02)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "uuid": "acd2e8ed-39e2-4de6-bf9d-5ec344f3b164", + "uuid": "8a1ed39a-99af-44f2-b98a-3fedf5e5ce73", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-03-18 (described on Site Profile dated 2019-03-18)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "notes": "INSERTED FOR SITE PROFILE DATED 2015-11-07 (described on Site Profile dated 2015-11-07)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], "parcelDescriptions": [ { - "uuid": "933c8915-6433-454a-9b22-bd3c1cd6e601", - "siteRegistry": false, - "dateNoted": "2015-08-31", - "parcelID": "17184", - "crownLandUsePIN": "20954", - "crownLandFileNumber": "17487", - "landDescription": "LOT 3 OF LOT 3 BLOCK 2 DISTRICT LOT 2 PLAN 5186" + "uuid": "8208a081-a41d-47c2-a715-7dfb6f889596", + "siteRegistry": true, + "dateNoted": "2016-02-19", + "parcelID": "20553", + "crownLandUsePIN": "15499", + "crownLandFileNumber": "20417", + "landDescription": "LOT 4 OF LOT 2 BLOCK 3 DISTRICT LOT 4 PLAN 9259" }, { - "uuid": "d3d7c4c2-0b81-4672-9915-66d9718ce730", - "siteRegistry": false, - "dateNoted": "2015-01-27", - "parcelID": "17321", - "crownLandUsePIN": "15282", - "crownLandFileNumber": "16782", - "landDescription": "LOT 3 OF LOT 3 BLOCK 2 DISTRICT LOT 5 PLAN 3882" + "uuid": "4dd1a6b1-6974-4b8e-9124-d4f2651274a4", + "siteRegistry": true, + "dateNoted": "2014-09-18", + "parcelID": "17845", + "crownLandUsePIN": "18566", + "crownLandFileNumber": "18947", + "landDescription": "LOT 1 OF LOT 4 BLOCK 2 DISTRICT LOT 5 PLAN 9417" }, { - "uuid": "518c1154-cf0f-4c34-9754-d92db2a4afa4", - "siteRegistry": false, - "dateNoted": "2023-04-17", - "parcelID": "20931", - "crownLandUsePIN": "17497", - "crownLandFileNumber": "20525", - "landDescription": "LOT 3 OF LOT 1 BLOCK 2 DISTRICT LOT 3 PLAN 3636" + "uuid": "585be49c-dee6-43d6-9ddd-539bd7a6a722", + "siteRegistry": true, + "dateNoted": "2022-04-11", + "parcelID": "18436", + "crownLandUsePIN": "20988", + "crownLandFileNumber": "20703", + "landDescription": "LOT 5 OF LOT 3 BLOCK 1 DISTRICT LOT 4 PLAN 7989" } ], "siteDisclosures": [ { - "uuid": "c11722c8-5032-439f-8cf3-6f02800d71dd", - "siteRegistry": true, - "dateReceived": "2023-03-15", - "dateCompleted": "2014-11-27", - "dateEntered": "2020-07-13", - "dateRegistrar": "2020-10-29", - "dateLocalAuthorityReceived": "2015-05-04", - "summary": "Minus quis quo vero reiciendis voluptatibus quisquam provident quaerat.\nBlanditiis nisi exercitationem eos.\nIure sit consectetur ipsum ipsam ipsum.", - "informationUsed": "Similique magnam necessitatibus aperiam.\nFugiat earum cumque deserunt aliquam.\nVeritatis voluptas vero aliquam quisquam quis rem.", - "pastOrPresentOrders": "Ut animi molestias distinctio soluta ipsam sit nulla voluptas.", + "uuid": "3a5ababb-5b85-49c7-8563-25b075b637c7", + "siteRegistry": false, + "dateReceived": "2022-08-09", + "dateCompleted": "2021-08-15", + "dateEntered": "2018-07-02", + "dateRegistrar": "2019-12-27", + "dateLocalAuthorityReceived": "2017-08-24", + "summary": "Officia consequuntur quia eum in asperiores.\nQuidem nam enim optio ipsa ea unde cupiditate.\nLaboriosam quidem cupiditate quibusdam animi.", + "informationUsed": "Officia tempore consequuntur aspernatur voluptatem nobis.\nMaiores ullam voluptatem molestiae voluptatum dolorum sequi unde reiciendis.\nLaboriosam totam officiis reiciendis id deserunt.", + "pastOrPresentOrders": "Corporis tempora atque quibusdam praesentium architecto voluptate.", "commercialAndIndustrialPurposes": [ { - "uuid": "07794884-4828-43e4-a534-0573012d65c1", + "uuid": "8868a0d4-a140-4ce4-bacd-3a6444b45b20", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, { - "uuid": "6af0f326-27e2-4483-bf82-7201372dbfe1", + "uuid": "de2281b3-d645-4ddc-a9ca-4d5004f67e42", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { - "uuid": "b3038cc2-c8df-43ec-92c5-9ffcea670bae", + "uuid": "ae2e6da2-f969-49c6-b125-dbe56d36f860", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false @@ -33403,133 +38615,126 @@ ] }, { - "uuid": "7097536e-593f-4d22-8f41-3321933e9d0a", + "uuid": "ce2b61d7-21df-4224-90d0-f74aa1e56ac3", "siteRegistry": true, - "dateReceived": "2020-01-11", - "dateCompleted": "2022-02-20", - "dateEntered": "2021-10-05", - "dateRegistrar": "2014-11-08", - "dateLocalAuthorityReceived": "2021-02-26", - "summary": "Animi perferendis repellat.\nConsequatur quidem deleniti aliquid consequuntur in sapiente ipsum accusantium tempora.", - "informationUsed": "Nulla rerum atque laboriosam illo accusamus dolor.\nIpsam facilis assumenda impedit modi dolores aliquam natus.\nNecessitatibus ad dicta quos architecto harum nobis optio nulla error.", - "pastOrPresentOrders": "Nam voluptate nihil harum deleniti.\nAt exercitationem sit mollitia.\nOccaecati quidem provident error.", + "dateReceived": "2015-07-24", + "dateCompleted": "2023-01-18", + "dateEntered": "2018-12-16", + "dateRegistrar": "2016-12-21", + "dateLocalAuthorityReceived": "2017-03-07", + "summary": "Est iure aut quod.\nQuidem enim aliquid architecto similique ex.\nPraesentium reprehenderit quis id.", + "informationUsed": "Ut exercitationem dolore harum consequuntur ut hic.\nAut enim quo.\nNon saepe maiores nemo.", + "pastOrPresentOrders": "Maiores possimus perferendis totam assumenda necessitatibus saepe.", "commercialAndIndustrialPurposes": [ { - "uuid": "1e5f380c-1bb1-4a9a-b564-fd105e2b9c57", - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false - }, - { - "uuid": "2f61614a-49f2-46fd-975d-d02c9eff84c2", + "uuid": "d2d2e482-abf9-464c-a85c-eb30493bac43", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, { - "uuid": "2b2641e3-4704-4110-8e93-e3348df504b0", + "uuid": "53cc87c7-bd4b-4807-8a85-dac24fd149d6", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "705cf68c-4d29-464b-a525-329ffafd1674", - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true + "uuid": "cf807e48-de95-43a7-8552-5af43c70801c", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false } ] } ], "activityLog": [ { - "uuid": "1355d302-1cf3-4f26-a75f-1a0fefd7bc49", + "uuid": "1c141d95-f202-4a6e-94c7-9a5230400bc7", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "DIBBERT COLTON", - "timestamp": "2014-03-11" + "user": "D'AMORE JAIRO", + "timestamp": "2023-07-12" }, { - "uuid": "551e9166-fdfb-4480-a35f-6750246a950b", - "siteRegistry": true, + "uuid": "dd160089-6de3-4c61-abfe-069107303984", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "BARTELL ROSALEE", - "timestamp": "2021-08-17" + "user": "MONAHAN LEMPI", + "timestamp": "2015-09-10" }, { - "uuid": "8989ab3f-f56e-4611-8929-ca8bb6e6875f", + "uuid": "2e59d35e-444d-4f2d-ad83-73b97b28e2fb", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "MCCULLOUGH ANDRES", - "timestamp": "2023-05-15" + "user": "HUEL FLETCHER", + "timestamp": "2019-01-24" }, { - "uuid": "17f2cdd5-8744-441a-b9ad-a2773379908e", - "siteRegistry": true, + "uuid": "d0873d62-9364-40d6-9ee8-a6157dbf783b", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "WISOKY BERNADINE", - "timestamp": "2021-01-06" + "user": "DAVIS GEORGETTE", + "timestamp": "2015-05-30" }, { - "uuid": "b6fd4909-262f-489a-a1a9-410d5b278936", + "uuid": "8fe522b3-c5ea-4aff-80c1-88566dfa2bb4", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "CONSIDINE KATLYNN", - "timestamp": "2022-10-12" + "user": "BAUCH BUSTER", + "timestamp": "2016-08-09" + }, + { + "uuid": "7bf32320-c2de-4683-98c5-01c25b99a64c", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "RAU ROSINA", + "timestamp": "2018-06-25" }, { - "uuid": "899f378a-9b30-4b59-a90e-3c73c9c4c2a8", + "uuid": "239c3383-a718-4c90-b926-2a98d0b096e5", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "WILKINSON ELNORA", - "timestamp": "2023-02-25" + "user": "GRADY AKEEM", + "timestamp": "2022-01-05" } ], "associatedSites": [ { - "uuid": "04b493ac-c8ea-4093-944e-025490ea5e82", - "dateNoted": "2020-09-30", + "uuid": "fdf97db7-d442-4bef-81f4-30abd7dd184d", + "dateNoted": "2016-09-12", "notes": "", - "parcelID": "15371", - "siteID": "16419", + "parcelID": "15275", + "siteID": "19298", "siteRegistry": false - }, - { - "uuid": "43b46707-72a8-4e8c-bbd3-3bd6827e5187", - "dateNoted": "2015-02-04", - "notes": "", - "parcelID": "20482", - "siteID": "18069", - "siteRegistry": true } ] }, { - "uuid": "b9a19aef-6c26-4bb4-82b5-9e3aa6bbdf0c", - "siteID": 18505, - "address": "26115 Lyric View", - "latitude": 58.1535, - "longitude": -130.5233, - "lastUpdated": "2021-05-08", - "city": "Fort Alexis", - "region": "Vancouver Island/Coast", - "victoriaFile": "26250-20/8632", + "uuid": "7702d1d8-1a13-49c0-895b-a031129bc2dc", + "siteID": 18904, + "address": "42560 Aaron Terrace", + "latitude": 58.8219, + "longitude": -123.4181, + "lastUpdated": "2016-01-25", + "city": "Lake Murl", + "region": "Mainland/Southwest", + "victoriaFile": "26250-20/9503", "regionalFile": "N/A", "parcelIDs": [ - 2742973, - 9971444, - 6368537, - 1647248, - 7120547 + 1766525, + 1004412, + 3254155, + 1176563, + 2272252 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "20f1fc19-3224-4b35-9339-4bd6b4db0c58", - "createdAt": "2017-10-04", - "completed": "2022-05-18", - "initiated": "2015-11-30", - "ministryContact": "HARBER KAREEM", + "uuid": "7ccc27f6-174c-4838-973c-8e9841653431", + "createdAt": "2014-04-14", + "completed": "2017-12-23", + "initiated": "2014-06-25", + "ministryContact": "HOPPE REECE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -33538,72 +38743,44 @@ ], "notationParticipants": [ { - "uuid": "beba0185-ea11-45f2-a719-d3c66ee5aadc", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "uuid": "d8b36cc5-95b1-48a5-b000-d2b2987e44e9", + "uuid": "e76490e7-6194-44bc-88e4-62765831a31d", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "dc299a55-6dfa-4b59-8195-5035902c167b", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "uuid": "8847d9e4-c91b-4bb4-b702-af00f6de8115", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": false - } - ], - "siteRegistry": false - }, - { - "uuid": "99e180d4-9d3b-4cef-8e90-208e60e91da4", - "createdAt": "2020-05-09", - "completed": "2019-08-13", - "initiated": "2023-01-22", - "ministryContact": "ORN ASTRID", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ + }, { - "uuid": "58b8c1d1-8072-42e3-80ff-9474d06dbecd", + "uuid": "1ff90036-6c68-42e1-a4f8-58ec79dca693", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "2ec7a9c9-934c-488f-aeb6-da8a2bde11a9", - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "bc2ebb9b-cdf0-4949-b099-0b906112f65a", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true }, { - "uuid": "43ff0c9f-2bfb-4f96-8752-80aa6fa24143", + "uuid": "256c97bb-7bc1-4856-ae08-bc2dd90d97b0", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false - }, - { - "uuid": "885bc7e5-a29b-4dc6-ae8f-6e7b8930da49", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "0339d28d-38bb-4eb8-b27e-0c4ba6e56702", - "createdAt": "2017-12-03", - "completed": "2016-06-11", - "initiated": "2017-12-10", - "ministryContact": "NICOLAS IGNACIO", + "uuid": "7d9b3d12-ebe0-41b6-bded-a4121eb3321e", + "createdAt": "2014-02-16", + "completed": "2023-03-13", + "initiated": "2019-02-22", + "ministryContact": "PFANNERSTILL HENRY", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -33612,66 +38789,32 @@ ], "notationParticipants": [ { - "uuid": "da370896-e3ba-49e4-947b-1cfa5371548a", - "name": "SHELL CANADA PRODUCTS", + "uuid": "52ce8d23-8f97-4e7e-a533-0a876460dd86", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false }, { - "uuid": "1a2cda13-6b4a-47a9-b05a-fe3f5d64b1dc", + "uuid": "b82d3525-5a29-4748-ab9f-ccf5ff1f2bbf", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "uuid": "7cad26a6-0712-431e-a669-3d2eeb36973a", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", "siteRegistry": false - } - ], - "siteRegistry": true - }, - { - "uuid": "7d9bb57a-a987-4edb-9297-9b053980e147", - "createdAt": "2016-01-24", - "completed": "2017-05-24", - "initiated": "2023-08-02", - "ministryContact": "MOHR MYRIAM", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "uuid": "54a11584-c51a-489d-9b18-77f8ac42586d", - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true }, { - "uuid": "0cbb5534-1b7a-41b3-9d98-1ae213f09dc5", - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "f6010a6d-e057-4a8c-bb65-b9a04898dd8b", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false - }, - { - "uuid": "5a581bfc-e39a-41ff-82f4-3189979baf82", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false } ], "siteRegistry": false }, { - "uuid": "6bd99450-ae8e-4583-8521-d24d8431b505", - "createdAt": "2014-09-16", - "completed": "2018-04-10", - "initiated": "2023-06-13", - "ministryContact": "RICE-RAYNOR MARCUS", + "uuid": "ea85e839-9e73-438e-b4d3-70af020f87f8", + "createdAt": "2020-06-02", + "completed": "2020-05-31", + "initiated": "2016-06-20", + "ministryContact": "SCHULIST LON", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -33680,39 +38823,33 @@ ], "notationParticipants": [ { - "uuid": "69881edf-d70b-4695-8be0-5b2da3a6560f", - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "uuid": "6eb2a99a-ccda-4cb1-9ce4-b2cb80b78da9", + "uuid": "bfa3f231-4268-4671-9456-f9113492a999", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "1c658e77-6a81-4a5b-afc7-523dc90d96f0", + "uuid": "c4b7f2c5-fb5f-4e32-b59a-0fc359df1142", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "51bfbc4c-41f5-490f-b0de-39e74e810f47", + "uuid": "cf836417-8792-4719-8107-0c2ec097e8c5", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false + "role": "SUBMITTED BY", + "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true } ], "participants": [ { - "uuid": "47d7747c-f98f-457b-82a8-478c953fd1de", - "name": "SHELL CANADA PRODUCTS", - "endDate": "2021-11-13", - "startDate": "2022-07-11", + "uuid": "5f3aa334-f17c-4066-b88d-5c98ed98bb01", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2020-07-29", + "startDate": "2014-07-03", "notes": "", "roles": [ "EMPLOYEE" @@ -33720,145 +38857,185 @@ "siteRegistry": true }, { - "uuid": "441b11ee-5690-411e-bd75-2dae082f7b65", + "uuid": "46d11edb-2275-41a7-9cfe-e325404fd0aa", "name": "IPSUM", - "endDate": "2019-08-12", - "startDate": "2013-11-21", + "endDate": "2022-01-02", + "startDate": "2021-10-03", "notes": "", "roles": [ "ORGANIZATION" ], + "siteRegistry": false + }, + { + "uuid": "6e3b1153-f54f-4038-93fc-60123acdd29e", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2022-01-25", + "startDate": "2016-04-04", + "notes": "", + "roles": [ + "EMPLOYEE" + ], "siteRegistry": true + }, + { + "uuid": "6cbd5ed2-3277-4ccf-912f-f61ca2698a36", + "name": "AMET, DOLOR SIT", + "endDate": "2015-08-08", + "startDate": "2023-04-25", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false } ], - "suspectLandUses": [ + "documents": [ { - "uuid": "260f5ced-23b3-43be-9ae2-cc9a22329d41", + "uuid": "e16ee90c-52b3-4ddb-bbcf-0bcbe9fd908b", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-03-05 (described on Site Profile dated 2019-03-05)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" - }, + "documentDate": "2019-11-13", + "receivedDate": "2017-06-09", + "uploadedDate": "2019-03-15", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "38b7a068-2e1d-4edb-98c3-c4d04cd5c755", + "name": "IPSUM", + "siteRegistry": false, + "role": "AUTHOR" + } + ] + } + ], + "suspectLandUses": [ { - "uuid": "8067e203-9cdb-4fd8-8742-f24b6c197c30", + "uuid": "61cab111-96eb-4842-8ea6-a2fc63b25823", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-05-02 (described on Site Profile dated 2015-05-02)", + "notes": "INSERTED FOR SITE PROFILE DATED 2020-10-07 (described on Site Profile dated 2020-10-07)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "uuid": "7737ca96-803c-4e3a-957f-697c33eceee1", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2020-12-14 (described on Site Profile dated 2020-12-14)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" - } - ], - "parcelDescriptions": [ + }, { - "uuid": "bff41dfd-5d9a-41e3-bb2f-fe29a5582489", + "uuid": "ae8410b1-66b6-4df0-ab62-a6302576876a", "siteRegistry": false, - "dateNoted": "2022-05-09", - "parcelID": "19326", - "crownLandUsePIN": "16179", - "crownLandFileNumber": "20767", - "landDescription": "LOT 1 OF LOT 4 BLOCK 5 DISTRICT LOT 3 PLAN 7938" + "notes": "INSERTED FOR SITE PROFILE DATED 2023-03-16 (described on Site Profile dated 2023-03-16)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "uuid": "e7f0a707-4fc1-4662-b4fc-cb684672c886", + "uuid": "ad901e31-dc1f-451b-9bbd-9bead60e134e", "siteRegistry": true, - "dateNoted": "2023-07-28", - "parcelID": "20587", - "crownLandUsePIN": "15284", - "crownLandFileNumber": "15263", - "landDescription": "LOT 2 OF LOT 3 BLOCK 4 DISTRICT LOT 3 PLAN 7015" + "notes": "INSERTED FOR SITE PROFILE DATED 2017-07-26 (described on Site Profile dated 2017-07-26)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "uuid": "d8780863-7055-412b-9459-889d3029a73e", + "uuid": "c787d7ea-8c6e-409f-85db-31a27d9d1d33", "siteRegistry": true, - "dateNoted": "2023-05-12", - "parcelID": "20780", - "crownLandUsePIN": "19083", - "crownLandFileNumber": "18994", - "landDescription": "LOT 1 OF LOT 2 BLOCK 5 DISTRICT LOT 1 PLAN 7962" + "notes": "INSERTED FOR SITE PROFILE DATED 2020-10-22 (described on Site Profile dated 2020-10-22)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + } + ], + "parcelDescriptions": [ + { + "uuid": "b65ff424-9559-463b-9d85-740ac66d65f5", + "siteRegistry": true, + "dateNoted": "2016-02-26", + "parcelID": "18049", + "crownLandUsePIN": "19745", + "crownLandFileNumber": "17054", + "landDescription": "LOT 2 OF LOT 3 BLOCK 5 DISTRICT LOT 1 PLAN 9432" }, { - "uuid": "233ccbca-8b47-427f-b685-2a7815d66992", + "uuid": "58612bf7-ab7d-4d32-aa97-2d1668713455", "siteRegistry": true, - "dateNoted": "2015-07-03", - "parcelID": "18553", - "crownLandUsePIN": "18041", - "crownLandFileNumber": "18914", - "landDescription": "LOT 4 OF LOT 5 BLOCK 4 DISTRICT LOT 5 PLAN 2961" + "dateNoted": "2015-12-10", + "parcelID": "17039", + "crownLandUsePIN": "18666", + "crownLandFileNumber": "19022", + "landDescription": "LOT 2 OF LOT 3 BLOCK 1 DISTRICT LOT 5 PLAN 6392" }, { - "uuid": "16e41c9f-fec3-4db9-97fa-e4291c36c2bd", + "uuid": "640de5c7-c0f5-47c7-bf16-59a07adf506c", "siteRegistry": true, - "dateNoted": "2017-04-24", - "parcelID": "18876", - "crownLandUsePIN": "16706", - "crownLandFileNumber": "17860", - "landDescription": "LOT 4 OF LOT 1 BLOCK 4 DISTRICT LOT 1 PLAN 5688" + "dateNoted": "2015-05-01", + "parcelID": "18013", + "crownLandUsePIN": "17988", + "crownLandFileNumber": "20522", + "landDescription": "LOT 2 OF LOT 1 BLOCK 3 DISTRICT LOT 1 PLAN 8369" } ], "siteDisclosures": [ { - "uuid": "72590880-e0df-4dcd-a80d-7d44038b569e", - "siteRegistry": true, - "dateReceived": "2023-09-25", - "dateCompleted": "2014-08-02", - "dateEntered": "2020-04-23", - "dateRegistrar": "2022-06-27", - "dateLocalAuthorityReceived": "2014-06-05", - "summary": "Omnis magnam magnam repellendus numquam aliquid.\nMaiores est delectus quis inventore laboriosam eaque.", - "informationUsed": "Nostrum quas soluta beatae aperiam veniam laudantium earum sit.\nA quod maiores odit.\nCommodi fugiat maxime.\nVeritatis iure consequatur.", - "pastOrPresentOrders": "Qui dicta repellat architecto ipsum tenetur temporibus.", + "uuid": "21caaf57-ae2f-4e5d-8d0f-b444f0b4f48c", + "siteRegistry": false, + "dateReceived": "2016-09-12", + "dateCompleted": "2019-02-28", + "dateEntered": "2023-02-11", + "dateRegistrar": "2021-05-18", + "dateLocalAuthorityReceived": "2014-09-05", + "summary": "Quidem qui recusandae aut incidunt veritatis doloribus sit voluptatem voluptas.\nRerum deserunt sequi.", + "informationUsed": "Doloribus unde harum recusandae tempora id atque eveniet inventore iure.\nSunt commodi consectetur repudiandae dolorum accusamus sequi consectetur.\nOdio quia natus nemo nobis nesciunt.", + "pastOrPresentOrders": "Dolorem molestiae voluptatum ut ut eum fuga.", "commercialAndIndustrialPurposes": [ { - "uuid": "f1f099e9-2579-46ab-a340-308c5b4a471a", + "uuid": "e9734ead-8081-4a93-85f1-ee6a05d9b967", "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { - "uuid": "c9f1a8ba-e991-4d99-9401-e2e704ec6785", - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false - }, - { - "uuid": "ec942736-66b8-4bff-a615-893f8823ca72", - "scheduleReference": "F2*", + "uuid": "c773d407-7ab6-4c99-bff0-a2e4fdb127cc", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, { - "uuid": "37fa928d-6297-448b-8de6-9765ca7fdc4a", - "scheduleReference": "F2*", + "uuid": "fc0dc9ca-97a1-4a48-99e0-027cb1bf7837", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true } ] }, { - "uuid": "b349d913-4163-467c-a753-6e161cffabab", + "uuid": "67c7ae54-26c3-479f-9fd6-cc66661a833f", "siteRegistry": true, - "dateReceived": "2020-06-06", - "dateCompleted": "2019-11-19", - "dateEntered": "2019-11-02", - "dateRegistrar": "2018-12-26", - "dateLocalAuthorityReceived": "2016-12-26", - "summary": "Eius earum expedita asperiores.\nCum reiciendis quisquam ad laboriosam ut quas ducimus ab.\nOccaecati soluta quo.", - "informationUsed": "Necessitatibus velit laborum inventore.\nAdipisci dolores expedita nam veniam pariatur error esse dolorum est.\nSaepe sunt ea.\nIpsa id eligendi.", - "pastOrPresentOrders": "Aut est illo eius.\nAsperiores deleniti iusto odio aperiam adipisci est alias voluptatibus.", + "dateReceived": "2019-07-04", + "dateCompleted": "2023-09-20", + "dateEntered": "2020-11-01", + "dateRegistrar": "2022-09-17", + "dateLocalAuthorityReceived": "2016-06-09", + "summary": "Consequatur vitae dolorem ullam dicta nulla aspernatur repellat cum cupiditate.\nEt temporibus ipsum eos vitae.\nQuo modi dolorem earum inventore eligendi neque libero reprehenderit aut.", + "informationUsed": "Rerum eligendi totam quam similique molestias.\nMaxime fugiat et minus id repellat minima fugit nulla dolorem.\nEveniet ratione doloribus eum facilis cumque temporibus quos accusantium.\nReprehenderit provident repellat.\nSoluta voluptatum fugit.", + "pastOrPresentOrders": "Excepturi nihil necessitatibus modi magni sunt delectus consequuntur culpa consectetur.\nNam placeat fugit itaque cumque esse necessitatibus.", "commercialAndIndustrialPurposes": [ { - "uuid": "5a1bd273-d7f5-4666-a6d6-8f3972b33d01", - "scheduleReference": "F1*", + "uuid": "16b8e0e7-8ac8-40c3-abd5-97e53f9359f8", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { - "uuid": "cdfadb57-c02f-438a-bdeb-9db4492127aa", + "uuid": "0c73ab02-62fd-4ac0-99bf-2ed25d0b3c83", "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "uuid": "7c9b05b8-1489-4624-ab9a-16ff894f90da", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false }, { - "uuid": "fbcc1d16-d6b1-4e90-8e5d-6e3c750d6a89", + "uuid": "2c9f2d38-d6ce-4c60-b39f-b535a6b13aa9", "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false } ] @@ -33866,78 +39043,122 @@ ], "activityLog": [ { - "uuid": "e9cb23e2-5328-47e1-b877-15483c3c10ce", + "uuid": "50bc58d5-fe0f-49d9-b7cb-3cc6e7a89ad9", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "WISOKY HAYLEE", + "timestamp": "2015-11-23" + }, + { + "uuid": "0243a006-c987-4291-8648-852729015f2d", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "DENESIK ALEXIS", - "timestamp": "2018-10-28" + "user": "MEDHURST-SCHULTZ DEANNA", + "timestamp": "2014-11-22" }, { - "uuid": "760921bf-b109-47b7-b2a5-0e03d87bfa56", + "uuid": "aa555851-37c6-4cc8-854c-966362f8ad9b", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "SCHULTZ PRINCESS", + "user": "CHRISTIANSEN CAROLINE", + "timestamp": "2019-01-23" + }, + { + "uuid": "b0cef9af-8db1-40ce-8410-cf099d33a17b", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "DURGAN AMBER", "timestamp": "2015-11-18" }, { - "uuid": "d54a4e50-0e06-42e6-acbd-d448be60a3b6", + "uuid": "12e18ecd-6a47-40d9-b44a-0cd7c2e9ca7e", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "LOWE DARION", + "timestamp": "2019-01-06" + }, + { + "uuid": "b568de26-48a1-4946-806a-09074bb665e6", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "LEBSACK TITO", - "timestamp": "2014-04-28" + "user": "VONRUEDEN-O'CONNELL BERENICE", + "timestamp": "2019-07-01" }, { - "uuid": "bbcd5270-05ee-48e2-b8aa-1082e5884202", - "siteRegistry": true, + "uuid": "5100fca8-ff08-4d12-a759-added2b54048", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "HUDSON AMELY", - "timestamp": "2019-08-29" + "user": "MACEJKOVIC MATTEO", + "timestamp": "2023-09-07" }, { - "uuid": "8234d77c-3d7d-494f-863d-4b760687fc2c", - "siteRegistry": true, + "uuid": "88ed71db-b49f-46c7-afa4-872cfba097f8", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "WALTER KAYDEN", - "timestamp": "2015-10-25" + "user": "LEUSCHKE DINA", + "timestamp": "2021-03-22" + }, + { + "uuid": "0e49edb2-6b49-451a-a663-acc3f0ac2695", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "MARKS KENNEDY", + "timestamp": "2017-07-08" } ], "associatedSites": [ { - "uuid": "af25e4a9-cacd-4820-b12f-a239cab2b836", - "dateNoted": "2023-02-04", + "uuid": "c8762185-cc05-4946-9ac2-eefd5e6c775c", + "dateNoted": "2023-01-01", + "notes": "", + "parcelID": "19844", + "siteID": "15231", + "siteRegistry": false + }, + { + "uuid": "8b378b9a-f62c-45b1-8dff-cf0fa98d3597", + "dateNoted": "2023-08-04", + "notes": "", + "parcelID": "19946", + "siteID": "17031", + "siteRegistry": true + }, + { + "uuid": "15d1617b-f05c-4043-b7bb-4c85fbf91c03", + "dateNoted": "2016-08-22", "notes": "", - "parcelID": "15311", - "siteID": "19383", + "parcelID": "16618", + "siteID": "15218", "siteRegistry": false } ] }, { - "uuid": "a431b846-1ce8-4bb1-b1f2-a775668d4e61", - "siteID": 16851, - "address": "279 Darius Lodge", - "latitude": 49.5927, - "longitude": -135.8457, - "lastUpdated": "2018-10-03", - "city": "Hectorboro", + "uuid": "ea7ab054-fd7a-48f0-a5c4-32e5e4b0b51e", + "siteID": 19762, + "address": "37459 Elvie Skyway", + "latitude": 49.3691, + "longitude": -123.3178, + "lastUpdated": "2014-07-08", + "city": "Garland", "region": "Thompson-Okanagan", - "victoriaFile": "26250-20/17312", + "victoriaFile": "26250-20/1215", "regionalFile": "N/A", "parcelIDs": [ - 3182138, - 3353139, - 4816657, - 4722938, - 3854672 + 289938, + 2697311, + 5748280, + 7142935, + 6888954 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "9b14e49e-7d7b-430e-83a6-a6a80630355b", - "createdAt": "2014-03-29", - "completed": "2015-05-25", - "initiated": "2017-01-19", - "ministryContact": "KRIS ELNA", + "uuid": "97c2d7ac-b6c2-48df-8960-d56461502db5", + "createdAt": "2017-01-14", + "completed": "2022-05-19", + "initiated": "2020-10-29", + "ministryContact": "MCKENZIE EUNA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -33946,26 +39167,32 @@ ], "notationParticipants": [ { - "uuid": "1284039e-e985-48b2-ae3c-7b603388cd77", + "uuid": "58e570b0-cc39-4e60-8e40-6fb598bae5b3", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "7834f185-7347-4c24-b046-b0a93372ed04", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false }, { - "uuid": "8f68aff3-b4f3-4724-addf-4b80d68b080f", + "uuid": "0ad82b6a-e448-4a1f-b03a-d4ae08201fde", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "a08d7be5-6729-4525-a2a4-9b17df39afe4", - "createdAt": "2023-01-10", - "completed": "2017-12-02", - "initiated": "2018-04-01", - "ministryContact": "BAHRINGER VERONICA", + "uuid": "7a77c2de-0751-44ea-9a45-49ccdeb9d678", + "createdAt": "2016-09-08", + "completed": "2015-11-13", + "initiated": "2019-01-11", + "ministryContact": "PROSACCO ELLIE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -33974,26 +39201,32 @@ ], "notationParticipants": [ { - "uuid": "513fdcbc-a1b7-4dd5-9317-11742b78f94c", + "uuid": "379050ae-34ec-492e-98d5-ff70ca202818", "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "uuid": "5f8006eb-cc8c-464e-a3e7-d509ca547d59", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "ac9c8df5-535b-4b18-ba65-66a60a44f39f", + "uuid": "a89b9dd8-ebed-46d5-892e-94e8ff6ab12a", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true } ], "siteRegistry": false }, { - "uuid": "b41981cb-740c-4b65-94a9-be78314b3d6b", - "createdAt": "2018-04-24", - "completed": "2018-03-24", - "initiated": "2018-09-19", - "ministryContact": "HELLER JAMISON", + "uuid": "fb1f3ad7-48fd-42c3-982f-569a720cf1e3", + "createdAt": "2023-05-04", + "completed": "2018-01-13", + "initiated": "2017-02-12", + "ministryContact": "JASKOLSKI KURTIS", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -34002,32 +39235,44 @@ ], "notationParticipants": [ { - "uuid": "42b07427-7fcf-4281-bbbb-eb93262643d6", + "uuid": "57d2e0ca-4018-4dd9-b52b-b3779cf87f98", "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "uuid": "8211e69d-b8b1-43a2-8e0c-136012a846ce", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "7afd7e13-ac54-44d6-955f-01ccd69320d3", + "uuid": "6ba57d81-f605-4add-aff6-2617e13b6b39", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "c5c53038-2163-40ba-b6f2-d94752953e89", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false }, { - "uuid": "aee05dd3-10d7-4c66-90ea-4b96b82ad0b0", - "name": "SHELL CANADA PRODUCTS", + "uuid": "b60092a7-8fcd-4fcd-a10d-afa24104ec30", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "ec9ee9f8-b285-4748-96e8-e98fd798a72c", - "createdAt": "2021-08-24", - "completed": "2022-01-07", - "initiated": "2016-02-06", - "ministryContact": "ANDERSON ABRAHAM", + "uuid": "76c7d156-c50a-4134-b834-54184600fe99", + "createdAt": "2015-04-16", + "completed": "2016-09-04", + "initiated": "2020-07-06", + "ministryContact": "MOORE REGAN", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -34036,28 +39281,22 @@ ], "notationParticipants": [ { - "uuid": "8d7bc24c-6af1-4f3e-88ad-ad4d7799db92", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "uuid": "f4f38394-712a-429e-88f0-5bf1a71b83f6", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": false }, { - "uuid": "9a38149f-e3b2-413f-aaa6-e6fb079db8e3", + "uuid": "0f8afb71-74df-48db-8af6-0c0ea7a36044", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true }, { - "uuid": "aae93503-d75d-44e6-a701-95b8bb5b1274", + "uuid": "eede2f0a-29a3-4117-ae11-fcac21d9c989", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true - }, - { - "uuid": "771461bf-1be9-4a33-a2df-cea6743bd7df", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false } ], "siteRegistry": true @@ -34065,10 +39304,10 @@ ], "participants": [ { - "uuid": "6df2584a-13ae-4153-857b-f8fdc3958c2e", - "name": "AMET, DOLOR SIT", - "endDate": "2018-11-23", - "startDate": "2023-07-10", + "uuid": "6330b373-92a9-42d1-8da3-8a93400ddb77", + "name": "IPSUM", + "endDate": "2017-08-17", + "startDate": "2019-05-29", "notes": "", "roles": [ "ORGANIZATION" @@ -34076,10 +39315,10 @@ "siteRegistry": true }, { - "uuid": "529e2822-5e44-41bc-b6ae-245e52beec9c", - "name": "AMET, DOLOR SIT", - "endDate": "2020-08-07", - "startDate": "2020-07-20", + "uuid": "24ac3e31-f614-41af-9025-e7cbd5d946c8", + "name": "IPSUM", + "endDate": "2019-07-13", + "startDate": "2016-08-23", "notes": "", "roles": [ "EMPLOYEE" @@ -34087,102 +39326,237 @@ "siteRegistry": true }, { - "uuid": "44edf43f-b3f5-494b-8064-9d9b43edf453", + "uuid": "fe8b8e7e-8b89-4f3c-87cd-4006260a8d64", "name": "IPSUM", - "endDate": "2016-01-05", - "startDate": "2019-03-04", + "endDate": "2022-08-21", + "startDate": "2020-12-27", "notes": "", "roles": [ "ORGANIZATION" ], "siteRegistry": true + }, + { + "uuid": "71ede159-2324-4cde-9f78-309fd8e69bef", + "name": "AMET, DOLOR SIT", + "endDate": "2018-05-15", + "startDate": "2016-06-02", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "uuid": "9acf23c4-9779-4981-9b32-ccfb75616f86", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2016-05-12", + "startDate": "2018-07-25", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true } ], - "suspectLandUses": [ + "documents": [ + { + "uuid": "1b8d8a5e-a171-4680-abdc-7d0ea8097055", + "siteRegistry": false, + "documentDate": "2014-03-05", + "receivedDate": "2020-09-19", + "uploadedDate": "2014-03-04", + "title": "Summary of Site Conditions, 1537 W 41st Avenue, Vancouver", + "participants": [ + { + "uuid": "6f0bbc6b-380d-4d16-963e-29a366ac4b9b", + "name": "IPSUM", + "siteRegistry": false, + "role": "AUTHOR" + } + ] + }, { - "uuid": "cdab9b7e-09e4-47b1-9fb8-e60fc06f2f85", + "uuid": "9dcecf73-346f-4543-bfa1-69f5ceaa9c6b", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-11-19 (described on Site Profile dated 2016-11-19)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "documentDate": "2023-07-24", + "receivedDate": "2016-10-22", + "uploadedDate": "2016-01-27", + "title": "Preliminary Site Investigation, Detailed Site Investigation and Remedial Plan for the Management Area adjacent to the Shell Site at 1503 West 41st Ave", + "participants": [ + { + "uuid": "87b1d917-9a00-4782-9b4a-52ff407a60ce", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "23daf02e-a7c0-4101-b15b-b505668c6557", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "564b6619-89bc-4447-b83d-4392a375e7f9", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": false, + "role": "AUTHOR" + } + ] }, { - "uuid": "ef5a7b2c-d535-49e4-81eb-5dd5593864b2", + "uuid": "85a92b21-9260-478e-a0e1-7f33e6f9a9ac", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-04-17 (described on Site Profile dated 2022-04-17)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "documentDate": "2013-11-19", + "receivedDate": "2022-03-26", + "uploadedDate": "2022-11-16", + "title": "Preliminary Site Investigation, Detailed Site Investigation and Remedial Plan for the Management Area adjacent to the Shell Site at 1503 West 41st Ave", + "participants": [ + { + "uuid": "27ece020-bb21-479c-946a-fdeaf16d635f", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "b115435f-ca61-4835-a0ec-72c1def13b79", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": true, + "role": "AUTHOR" + } + ] }, { - "uuid": "2dacbb5b-b7c9-4307-b44e-fcce46db8230", + "uuid": "3697228a-31bc-4f57-8ef5-c164f63fc2d2", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-08-17 (described on Site Profile dated 2018-08-17)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" - }, + "documentDate": "2022-04-05", + "receivedDate": "2023-06-23", + "uploadedDate": "2016-08-31", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "01d64bcb-7aa6-476d-8c27-a28725694013", + "name": "IPSUM", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "96ad7e5d-d539-417c-9c7e-7c448f39989e", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "16bac1a2-9e6b-460a-b417-764c0b1c0058", + "name": "IPSUM", + "siteRegistry": false, + "role": "AUTHOR" + } + ] + } + ], + "suspectLandUses": [ { - "uuid": "5894eb32-4bfb-43cc-8928-d4c73f3fc6ef", + "uuid": "11e76b36-803a-4849-b20f-434b082fa1ea", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-11-04 (described on Site Profile dated 2019-11-04)", + "notes": "INSERTED FOR SITE PROFILE DATED 2019-10-21 (described on Site Profile dated 2019-10-21)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "uuid": "4733f6e9-30fa-47bb-865d-58eacceb7e90", + "uuid": "60359631-7c1b-4191-b6c4-6eb7e23fbfe3", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-11-26 (described on Site Profile dated 2018-11-26)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "notes": "INSERTED FOR SITE PROFILE DATED 2016-08-18 (described on Site Profile dated 2016-08-18)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], "parcelDescriptions": [ { - "uuid": "4e1c278f-d399-456a-abf4-9f89242552e8", - "siteRegistry": false, - "dateNoted": "2016-01-30", - "parcelID": "16390", - "crownLandUsePIN": "18046", - "crownLandFileNumber": "19985", - "landDescription": "LOT 1 OF LOT 2 BLOCK 4 DISTRICT LOT 2 PLAN 4477" + "uuid": "118da06d-bb14-4678-8ec8-f9de59acbcb4", + "siteRegistry": true, + "dateNoted": "2020-11-30", + "parcelID": "15588", + "crownLandUsePIN": "19255", + "crownLandFileNumber": "17571", + "landDescription": "LOT 1 OF LOT 2 BLOCK 4 DISTRICT LOT 2 PLAN 5359" }, { - "uuid": "8d1b125f-fd96-4705-91b2-9750cdf9df06", + "uuid": "2ff207ea-7445-4e98-9d73-94ef61a9057c", + "siteRegistry": true, + "dateNoted": "2017-12-25", + "parcelID": "16825", + "crownLandUsePIN": "16316", + "crownLandFileNumber": "15651", + "landDescription": "LOT 5 OF LOT 1 BLOCK 2 DISTRICT LOT 4 PLAN 7807" + }, + { + "uuid": "5938a4eb-0f2f-44ce-bec4-aba07d087216", "siteRegistry": false, - "dateNoted": "2018-08-04", - "parcelID": "15361", - "crownLandUsePIN": "18150", - "crownLandFileNumber": "16159", - "landDescription": "LOT 3 OF LOT 4 BLOCK 1 DISTRICT LOT 1 PLAN 6486" + "dateNoted": "2020-04-29", + "parcelID": "19549", + "crownLandUsePIN": "15319", + "crownLandFileNumber": "19913", + "landDescription": "LOT 3 OF LOT 3 BLOCK 1 DISTRICT LOT 2 PLAN 7826" } ], "siteDisclosures": [ { - "uuid": "82713f09-aeb6-48cf-a6bb-9ad650b3d951", + "uuid": "9c40ba6a-e4d2-4438-8295-e1c540eaaa3c", "siteRegistry": true, - "dateReceived": "2018-04-21", - "dateCompleted": "2015-08-16", - "dateEntered": "2017-04-22", - "dateRegistrar": "2017-07-31", - "dateLocalAuthorityReceived": "2019-05-19", - "summary": "Hic occaecati voluptatem nostrum.", - "informationUsed": "Blanditiis commodi est fuga aliquid necessitatibus ducimus.\nQuis debitis quidem qui adipisci aut nulla dicta vero repellat.\nDistinctio provident optio.\nDucimus fugit hic eum neque cumque sapiente sapiente reiciendis.\nQuia dignissimos quasi.", - "pastOrPresentOrders": "Quis corrupti eius aperiam.\nVoluptatum culpa eos.\nPorro numquam assumenda magnam laudantium maiores inventore adipisci doloribus.", + "dateReceived": "2020-03-04", + "dateCompleted": "2016-09-28", + "dateEntered": "2016-08-07", + "dateRegistrar": "2015-07-19", + "dateLocalAuthorityReceived": "2018-11-15", + "summary": "Molestiae magni nulla aperiam similique numquam inventore id iusto eum.\nEa minima alias occaecati quibusdam sed delectus.", + "informationUsed": "Aspernatur sunt non distinctio doloribus aliquam hic.\nQuia sapiente aut nemo veniam eius amet possimus suscipit.\nEligendi explicabo quo cupiditate esse inventore.\nExercitationem beatae perferendis.", + "pastOrPresentOrders": "Fugit neque sed odit iste sunt explicabo assumenda vel fugiat.\nNon aut alias illo inventore accusamus optio similique dolorum animi.", "commercialAndIndustrialPurposes": [ { - "uuid": "5d3c71bd-1709-40a9-897a-f17ec8756a9c", - "scheduleReference": "F1*", + "uuid": "20f1ff41-135c-4fc1-913b-ab94b6e44b72", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "uuid": "42f63842-82d8-4108-85ab-c0e2d5e68609", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, { - "uuid": "21412117-0575-4c99-a0c3-6977f8c70d36", - "scheduleReference": "F1*", + "uuid": "b07fa5f2-857c-4982-b1b1-454b1f5a23e5", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { - "uuid": "c8763457-9b25-4649-8b61-bac881c72147", + "uuid": "d42c60fa-f8ac-4f8c-9822-dd7def4584a5", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false + "siteRegistry": true + } + ] + }, + { + "uuid": "c01a3bee-624e-43d2-8377-fb78a1072d6c", + "siteRegistry": false, + "dateReceived": "2021-11-25", + "dateCompleted": "2017-02-23", + "dateEntered": "2015-12-21", + "dateRegistrar": "2019-02-26", + "dateLocalAuthorityReceived": "2014-05-13", + "summary": "Magnam officia quae libero voluptates.", + "informationUsed": "Esse quam laboriosam quibusdam iusto necessitatibus laboriosam harum incidunt porro.\nSaepe ut exercitationem quia reiciendis dolores illo eum quas nemo.\nAssumenda nihil voluptas mollitia optio quod dolorum earum et.", + "pastOrPresentOrders": "Ipsa non quos vero repellat nisi mollitia.\nLaboriosam laborum dignissimos dignissimos velit dolor nostrum labore magni.", + "commercialAndIndustrialPurposes": [ + { + "uuid": "dabf60a1-620a-4a57-87c0-d26375f02383", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true }, { - "uuid": "dd528ad3-3587-477e-b7d7-f59c0e0e2b6c", + "uuid": "7162b4b4-2a88-4ca5-8860-214dde03e331", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false @@ -34192,113 +39566,101 @@ ], "activityLog": [ { - "uuid": "54521e20-5162-456c-8792-33a7e9c8b895", - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "MILLER NYA", - "timestamp": "2016-10-28" - }, - { - "uuid": "9b145ef3-587c-4e8a-a42f-b8ef3f5a5cab", - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "TOWNE DAHLIA", - "timestamp": "2022-11-11" - }, - { - "uuid": "6a2bd5ba-804b-4362-acea-ff987ca06e7f", + "uuid": "255d593b-2bba-436b-be6b-3b83c262b7eb", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "CHAMPLIN EMELIE", - "timestamp": "2021-04-10" - }, - { - "uuid": "4743f48b-298c-41e0-b2c6-7e4ede4ff1ce", - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "ORN HELENE", - "timestamp": "2015-03-05" + "user": "MULLER IAN", + "timestamp": "2018-10-01" }, { - "uuid": "68e00421-cb04-49d1-86e1-99064e5eafa9", + "uuid": "3f8c733d-a27e-4ccc-a722-0ed31cfa40ec", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "GIBSON TAUREAN", - "timestamp": "2020-07-01" + "user": "HESSEL ROMA", + "timestamp": "2018-12-01" }, { - "uuid": "8f967d01-de46-484e-8ece-79272333db2b", + "uuid": "ec53b2b2-8b55-468b-bde3-3e29c81ed978", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "KING VENA", - "timestamp": "2022-12-23" - }, - { - "uuid": "fa202bb3-ada7-4df3-898d-1ca3d1d3736a", - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "STOLTENBERG ROLLIN", - "timestamp": "2020-09-02" + "user": "RUTHERFORD ALESSIA", + "timestamp": "2023-05-11" }, { - "uuid": "5ef09dff-8f21-4d91-a841-d98f687ca050", - "siteRegistry": false, + "uuid": "d555d9c4-bf7b-44a4-92ac-107eec663420", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "KEMMER-WYMAN ALEXANE", - "timestamp": "2020-10-19" + "user": "HOMENICK DARRELL", + "timestamp": "2020-05-21" }, { - "uuid": "fbeb77a8-363d-41f7-9b65-b6822a85a8f5", + "uuid": "8f52e8d1-08e7-4bd2-87c4-e3d8f2aa669e", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "SCHIMMEL SYDNIE", - "timestamp": "2013-10-19" + "user": "STANTON TAYA", + "timestamp": "2017-07-22" }, { - "uuid": "9aecd4e9-5b6e-4002-aca6-10b12aee6018", - "siteRegistry": true, + "uuid": "362d70f5-d0c7-4df8-8efd-1aaea6a72abc", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "KOSS-CASSIN HUGH", - "timestamp": "2016-08-12" + "user": "HAHN NICHOLAUS", + "timestamp": "2014-10-09" } ], "associatedSites": [ { - "uuid": "1a8bb407-c1b9-4dd7-852d-6d13e57fedcb", - "dateNoted": "2023-08-21", + "uuid": "3747c68b-8cef-4477-aaf1-bb59fb7fee58", + "dateNoted": "2022-08-12", "notes": "", - "parcelID": "19539", - "siteID": "18583", + "parcelID": "20353", + "siteID": "17060", "siteRegistry": true - } + }, + { + "uuid": "f84591ef-95ec-4268-8697-a66c6f00c50d", + "dateNoted": "2018-07-11", + "notes": "", + "parcelID": "17339", + "siteID": "16055", + "siteRegistry": false + }, + { + "uuid": "416dd3e7-3d27-4825-a595-9f78f1adbee0", + "dateNoted": "2021-01-09", + "notes": "", + "parcelID": "17090", + "siteID": "18736", + "siteRegistry": false + } ] }, { - "uuid": "1d04d0eb-ec6c-4f2b-b10b-f8c8758e818b", - "siteID": 15493, - "address": "7081 Gardner Oval", - "latitude": 50.8854, - "longitude": -130.0916, - "lastUpdated": "2022-03-20", - "city": "Beauville", - "region": " North Coast", - "victoriaFile": "26250-20/8942", + "uuid": "01669c64-1b86-4a6c-8130-6c176e622122", + "siteID": 15352, + "address": "14005 Jeff Estate", + "latitude": 49.8891, + "longitude": -124.3901, + "lastUpdated": "2020-05-02", + "city": "Fort Doraland", + "region": "Cariboo", + "victoriaFile": "26250-20/7935", "regionalFile": "N/A", "parcelIDs": [ - 1122388, - 4679826, - 2399705, - 9959296, - 8053447 + 1669027, + 1504501, + 8375826, + 2656041, + 4938340 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "971f4076-2458-487b-b589-4ea35e938b92", - "createdAt": "2019-08-15", - "completed": "2022-09-11", - "initiated": "2015-08-16", - "ministryContact": "WUCKERT ZANE", + "uuid": "7d9e191b-3548-4be3-a78d-6f7984855f6e", + "createdAt": "2021-04-02", + "completed": "2021-05-27", + "initiated": "2020-09-14", + "ministryContact": "WATERS WILL", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -34307,26 +39669,66 @@ ], "notationParticipants": [ { - "uuid": "39a87717-f64e-4c13-8c05-9ea5f2c53b12", - "name": "SHELL CANADA PRODUCTS", + "uuid": "ae7c6a1d-cc68-4039-893f-080af341ebe5", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false + }, + { + "uuid": "4aa421c6-e45c-43f7-833f-e15cefd9d41d", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false }, { - "uuid": "ffc8e892-2e51-4387-ab67-a7c3be3d37a5", + "uuid": "8b88bc9b-1c96-444e-a8ce-434f795cf1ad", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false + }, + { + "uuid": "1a735a74-9e6e-400b-9fa2-f42dc7d720eb", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false } ], "siteRegistry": false }, { - "uuid": "e676da6b-dae4-4dc2-876d-5b0bdba5069d", - "createdAt": "2013-11-10", - "completed": "2023-09-20", - "initiated": "2021-02-04", - "ministryContact": "HAGENES NATHEN", + "uuid": "43644acc-2aa3-47ab-b03c-a23b51097ec8", + "createdAt": "2017-02-01", + "completed": "2016-03-05", + "initiated": "2017-01-18", + "ministryContact": "WEHNER FREDDIE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "uuid": "0d98a02a-ae76-4d51-9c1e-0840b1a624e1", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "461902bf-679f-48d9-bee1-403f74a25461", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "uuid": "9536318f-3c98-4695-bb76-1703369e59be", + "createdAt": "2023-08-06", + "completed": "2022-08-02", + "initiated": "2017-10-08", + "ministryContact": "LIND DIANNA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -34335,306 +39737,445 @@ ], "notationParticipants": [ { - "uuid": "78fd8e46-e39e-4ecd-91ff-7518fd506e6e", + "uuid": "95c6b9be-3b9a-42ea-adfc-360eb63a9f7e", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "a569fca9-121f-413e-b42c-28cad5232ed6", + "uuid": "98c9006f-7705-432a-97d3-d0851791c57f", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "uuid": "67fc9efc-c06b-4a30-8b1b-4c2bb70e8a7d", + "createdAt": "2020-11-08", + "completed": "2019-09-22", + "initiated": "2019-01-21", + "ministryContact": "NIENOW WILBERT", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "uuid": "06629168-5619-48a7-ab46-b22cf458262e", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "471812c0-b3ba-4d87-af82-568794c8e74e", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "157f6813-570a-4b4a-ac83-93dc0467c709", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "c7e3b03d-b544-4bb5-92fd-1bf1de32b989", + "uuid": "a5f76762-b00f-436d-a056-5536be9c7332", "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "uuid": "d3b05e05-217e-411f-b1b4-519057d5e99f", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false } ], "participants": [ { - "uuid": "f625c80b-7a7e-45bb-93b9-e1ce61792a7c", - "name": "SHELL CANADA PRODUCTS", - "endDate": "2019-06-17", - "startDate": "2017-02-11", + "uuid": "06d7063c-df79-4bf7-8c99-8b309fcb6dce", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2020-04-29", + "startDate": "2016-07-25", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": true }, { - "uuid": "cee1172c-09ca-4418-85c3-18f0a49d91cf", - "name": "IPSUM", - "endDate": "2019-12-18", - "startDate": "2020-10-04", + "uuid": "090559b6-3bb5-4ea2-947c-de4a159a4607", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2015-11-24", + "startDate": "2015-09-09", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": true }, { - "uuid": "ea0e237c-635e-4762-9130-34f2aab89dd1", - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2022-05-25", - "startDate": "2015-02-28", + "uuid": "f4c275b0-ae3f-452d-90ff-5137bba6f7cc", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2019-04-07", + "startDate": "2022-01-22", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "305c8e7a-d8f1-46bc-a857-26b586a3104b", + "uuid": "e6f95c3d-d739-4285-9ae6-61fdefca9003", "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2020-11-15", - "startDate": "2022-03-31", + "endDate": "2019-10-05", + "startDate": "2016-05-13", "notes": "", "roles": [ "EMPLOYEE" ], "siteRegistry": false + } + ], + "documents": [ + { + "uuid": "7563ac94-030d-4a21-8a5b-32976c1f2bf6", + "siteRegistry": true, + "documentDate": "2016-03-04", + "receivedDate": "2023-03-13", + "uploadedDate": "2021-01-26", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "2ee416de-7adf-4753-bab8-4be3c4c6c703", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "a07dc7fa-3540-49e5-9738-f040b12fcecf", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "931bcb08-2a29-4847-a2df-0450dba58554", + "name": "IPSUM", + "siteRegistry": false, + "role": "AUTHOR" + } + ] }, { - "uuid": "fb4d828e-b7c5-4694-95c6-5614f85b5bc4", - "name": "SHELL CANADA PRODUCTS", - "endDate": "2020-04-11", - "startDate": "2015-07-11", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": false + "uuid": "47c25ddb-aa93-4dea-809b-6705d8fb9f5c", + "siteRegistry": false, + "documentDate": "2019-02-01", + "receivedDate": "2014-06-28", + "uploadedDate": "2017-01-06", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "7b95235e-9f6d-4de7-bd2c-3dc50cfb1613", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": false, + "role": "AUTHOR" + } + ] + }, + { + "uuid": "4ee8e381-a6d4-4a80-bb6b-952ccc244ea4", + "siteRegistry": true, + "documentDate": "2023-08-24", + "receivedDate": "2021-12-24", + "uploadedDate": "2022-11-12", + "title": "Summary of Site Conditions, 1537 W 41st Avenue, Vancouver", + "participants": [ + { + "uuid": "89a2d44e-d0ae-461f-b893-0ea2ca9a3321", + "name": "IPSUM", + "siteRegistry": true, + "role": "AUTHOR" + } + ] + }, + { + "uuid": "6c759403-15cf-4078-830a-3202503b0228", + "siteRegistry": true, + "documentDate": "2014-06-17", + "receivedDate": "2018-04-23", + "uploadedDate": "2023-05-18", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "0ab92efe-895d-4f5e-a995-f5629f7b045e", + "name": "IPSUM", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "7b991e88-e6b8-4722-b7fd-401b5f74b82c", + "name": "IPSUM", + "siteRegistry": true, + "role": "AUTHOR" + } + ] + }, + { + "uuid": "c397ac88-38be-4d07-8bdf-da47447a7e69", + "siteRegistry": false, + "documentDate": "2020-03-01", + "receivedDate": "2016-10-31", + "uploadedDate": "2014-11-04", + "title": "Preliminary Site Investigation, Detailed Site Investigation and Remedial Plan for the Management Area adjacent to the Shell Site at 1503 West 41st Ave", + "participants": [ + { + "uuid": "58ddd274-cc92-4577-81da-333f460dd3a1", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "6b96abd9-33e3-4691-8f55-bb9e6d67266b", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": false, + "role": "AUTHOR" + } + ] } ], "suspectLandUses": [ { - "uuid": "94e5eda5-f576-4a5f-b31c-10295ad82a5f", + "uuid": "55846d3c-7ebb-41e5-835c-d64eeb526a59", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-08-28 (described on Site Profile dated 2021-08-28)", + "notes": "INSERTED FOR SITE PROFILE DATED 2014-12-22 (described on Site Profile dated 2014-12-22)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "uuid": "b47365cf-62b5-483a-90d6-45bf5c4a5648", - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-12-07 (described on Site Profile dated 2016-12-07)", + "uuid": "611dbab4-d897-4c07-9d7c-06fff1df32b0", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2020-03-22 (described on Site Profile dated 2020-03-22)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "uuid": "bf1be9a0-dcf2-42cb-9f98-87784a5fd71a", - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-04-03 (described on Site Profile dated 2015-04-03)", + "uuid": "a2768f6a-a7f9-4647-aa5f-217e65df954e", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2019-09-18 (described on Site Profile dated 2019-09-18)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "uuid": "acf2035e-70a4-42ee-9a69-5b0e88d7de0b", + "uuid": "0ced501e-a2ee-456a-87ce-2f30574e9669", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-05-03 (described on Site Profile dated 2016-05-03)", + "notes": "INSERTED FOR SITE PROFILE DATED 2015-12-09 (described on Site Profile dated 2015-12-09)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], "parcelDescriptions": [ { - "uuid": "994062c9-6890-4fb8-8da5-2b21f4b85593", + "uuid": "92640aa0-6b0a-4635-89a2-f6474f3eed0d", "siteRegistry": false, - "dateNoted": "2020-12-21", - "parcelID": "16794", - "crownLandUsePIN": "16122", - "crownLandFileNumber": "19885", - "landDescription": "LOT 4 OF LOT 5 BLOCK 4 DISTRICT LOT 5 PLAN 6409" + "dateNoted": "2018-10-02", + "parcelID": "16701", + "crownLandUsePIN": "16265", + "crownLandFileNumber": "20030", + "landDescription": "LOT 5 OF LOT 2 BLOCK 5 DISTRICT LOT 2 PLAN 3650" }, { - "uuid": "2f374980-b8bb-4ec7-a8c0-ef9c2d2c3b88", - "siteRegistry": false, - "dateNoted": "2021-03-30", - "parcelID": "17155", - "crownLandUsePIN": "18072", - "crownLandFileNumber": "19648", - "landDescription": "LOT 5 OF LOT 3 BLOCK 2 DISTRICT LOT 3 PLAN 4165" + "uuid": "4949d16b-2457-4f85-b992-d7a6cd8ff8c3", + "siteRegistry": true, + "dateNoted": "2019-07-27", + "parcelID": "20959", + "crownLandUsePIN": "16752", + "crownLandFileNumber": "15250", + "landDescription": "LOT 3 OF LOT 4 BLOCK 2 DISTRICT LOT 2 PLAN 9382" }, { - "uuid": "969fef60-2450-4124-a9da-fc00b352c5dd", + "uuid": "784728a9-6d0b-4f27-aa03-b2e2a48eff09", "siteRegistry": true, - "dateNoted": "2022-02-08", - "parcelID": "18823", - "crownLandUsePIN": "20284", - "crownLandFileNumber": "15542", - "landDescription": "LOT 4 OF LOT 3 BLOCK 3 DISTRICT LOT 2 PLAN 3269" + "dateNoted": "2019-03-08", + "parcelID": "15813", + "crownLandUsePIN": "16558", + "crownLandFileNumber": "19207", + "landDescription": "LOT 2 OF LOT 4 BLOCK 4 DISTRICT LOT 4 PLAN 4314" }, { - "uuid": "ee69b47d-b09c-4b22-8ae2-2bf59e386636", + "uuid": "cb65c80b-0c50-4d75-a799-afeece8764a1", "siteRegistry": true, - "dateNoted": "2017-05-11", - "parcelID": "16765", - "crownLandUsePIN": "15340", - "crownLandFileNumber": "17761", - "landDescription": "LOT 1 OF LOT 3 BLOCK 2 DISTRICT LOT 5 PLAN 9000" + "dateNoted": "2023-10-13", + "parcelID": "19355", + "crownLandUsePIN": "20742", + "crownLandFileNumber": "18122", + "landDescription": "LOT 2 OF LOT 5 BLOCK 5 DISTRICT LOT 1 PLAN 5036" + }, + { + "uuid": "5367cc07-cfa1-4336-b136-89be7f963cb5", + "siteRegistry": true, + "dateNoted": "2022-02-22", + "parcelID": "20039", + "crownLandUsePIN": "20280", + "crownLandFileNumber": "16557", + "landDescription": "LOT 1 OF LOT 2 BLOCK 4 DISTRICT LOT 2 PLAN 9035" } ], "siteDisclosures": [ { - "uuid": "69ee9db7-5ff3-463c-8bb2-8de1ebf2e802", + "uuid": "0ea5a0c7-5336-4e70-a555-c0f36e4ca073", "siteRegistry": false, - "dateReceived": "2020-04-26", - "dateCompleted": "2021-03-07", - "dateEntered": "2019-07-09", - "dateRegistrar": "2018-11-11", - "dateLocalAuthorityReceived": "2018-08-21", - "summary": "Fugit aperiam incidunt iste quisquam facere quae dignissimos ex maiores.\nRem aperiam tenetur soluta.\nDicta dicta maiores eos optio at veritatis quos.", - "informationUsed": "Eaque molestiae repudiandae velit quasi magni quos pariatur praesentium sed.\nCorrupti deleniti in.\nEnim eum accusantium possimus quod tempora quibusdam.\nQuisquam temporibus fugiat tempore.\nItaque quasi doloremque recusandae aspernatur perferendis.", - "pastOrPresentOrders": "Iste praesentium iusto.", + "dateReceived": "2019-01-18", + "dateCompleted": "2019-11-27", + "dateEntered": "2023-05-07", + "dateRegistrar": "2013-10-30", + "dateLocalAuthorityReceived": "2016-03-26", + "summary": "Mollitia velit doloremque illum vel excepturi.\nNatus voluptas vel officia omnis iusto.", + "informationUsed": "A quam deserunt distinctio explicabo hic.\nDoloremque quisquam odit assumenda blanditiis ipsum quam.\nVeritatis mollitia nulla praesentium porro nisi dignissimos minima dignissimos.\nProvident repudiandae dignissimos omnis repellat ducimus.\nVelit blanditiis eius odit dolorum minima praesentium facere eius.", + "pastOrPresentOrders": "Sed placeat eius neque nesciunt modi ea voluptates repellat natus.", "commercialAndIndustrialPurposes": [ { - "uuid": "b0b1fc7d-917f-4d58-9e5f-b3e1e7e0d2d3", - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false - }, - { - "uuid": "18fc0848-9962-426f-b3f1-eb02d4b99726", - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false - }, - { - "uuid": "523f2647-b57f-4f24-9cd0-8a8b4b697710", - "scheduleReference": "F1*", + "uuid": "87cf5282-4711-4044-a3cc-2b01bed79504", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false }, { - "uuid": "11332728-1c7b-419e-8584-5c91fefc7906", + "uuid": "2ce316c5-3094-4416-926b-b68009243e0b", "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true } ] } ], "activityLog": [ { - "uuid": "b37ea9a0-0ee0-4091-a3fe-a4cf7e5e4ea6", - "siteRegistry": true, + "uuid": "b164668a-d928-4614-b9d7-7c0e690ea082", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "DOOLEY-SCHILLER JAMAR", - "timestamp": "2018-06-02" + "user": "HUEL ANTONETTA", + "timestamp": "2019-02-15" }, { - "uuid": "c8f514f2-30af-444d-ae5c-8067a4f25ad1", + "uuid": "4e23a3cc-638a-4ae7-9ef4-336dcfd2aeb0", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "CRUICKSHANK EMMET", - "timestamp": "2018-12-23" + "user": "JONES CLEMENTINE", + "timestamp": "2018-02-23" }, { - "uuid": "cde0a532-293b-486e-aec8-46f1ce1776b7", + "uuid": "efdd9ed9-7288-46e3-9d45-a0b5260a047d", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "LANGOSH ZOE", - "timestamp": "2018-06-25" + "user": "WIZA ISRAEL", + "timestamp": "2014-06-29" }, { - "uuid": "ced4fb13-1e67-4ee8-b709-3578eb578a49", + "uuid": "8cb55c6e-d8ed-4c9a-aded-7a6d145bb3f0", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "WINDLER HAILIE", - "timestamp": "2020-04-22" + "user": "ROBEL RUBIE", + "timestamp": "2013-10-31" }, { - "uuid": "c0ab73ba-dead-4e1d-9a27-4691628d4d70", + "uuid": "8a040f6a-eea5-4e4e-8fe7-85c2c7b548c9", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "EMMERICH LIA", - "timestamp": "2023-04-14" + "user": "CONSIDINE WILLIE", + "timestamp": "2019-07-23" }, { - "uuid": "2e9759d7-ab39-41ea-a19c-57376040398f", + "uuid": "744dc084-4025-4352-8a89-893bc4c64ca2", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "BINS KENNETH", - "timestamp": "2016-01-30" + "user": "LYNCH GIA", + "timestamp": "2015-02-04" }, { - "uuid": "10c84853-39ec-4bde-83c5-3a5c3852507d", - "siteRegistry": false, + "uuid": "dddbecf0-ceda-49a5-9c8a-15b028d565aa", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "JACOBSON FREDY", - "timestamp": "2020-11-14" + "user": "RAYNOR GILLIAN", + "timestamp": "2014-08-12" }, { - "uuid": "b7b1dd27-749a-4c9b-aec7-6a44202a89cd", + "uuid": "36fc7e1f-7ebf-4714-b369-705498364c18", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "D'AMORE EMORY", - "timestamp": "2021-11-09" + "user": "WALTER YVONNE", + "timestamp": "2016-02-27" }, { - "uuid": "ff1ae14a-957d-4ce6-a802-63aeac2e3703", + "uuid": "b5e1d5f3-f191-4f2c-b7a8-f54a6c2670da", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "BREKKE WARREN", - "timestamp": "2020-01-28" + "user": "VONRUEDEN CASSANDRA", + "timestamp": "2018-03-17" + }, + { + "uuid": "ca7784b2-8f64-40e4-a204-1dafe4c952ed", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "WINTHEISER GENOVEVA", + "timestamp": "2019-04-12" } ], "associatedSites": [ { - "uuid": "fc1ea061-0cba-467f-9d37-9f0357e3483b", - "dateNoted": "2019-06-21", + "uuid": "d2ff0b9d-ecbc-42cf-8d50-a7f13819b461", + "dateNoted": "2022-09-28", "notes": "", - "parcelID": "16743", - "siteID": "15332", - "siteRegistry": true + "parcelID": "18662", + "siteID": "16877", + "siteRegistry": false }, { - "uuid": "333f971f-6892-4d89-a494-623f92eb3cd8", - "dateNoted": "2022-11-23", + "uuid": "5fb76b6a-4232-4f81-a8d9-3ce71d80eff4", + "dateNoted": "2019-04-25", "notes": "", - "parcelID": "19940", - "siteID": "18483", + "parcelID": "16296", + "siteID": "15607", "siteRegistry": false }, { - "uuid": "6bdaefd2-ef39-42ba-b7d1-e8104476a4b5", - "dateNoted": "2014-08-12", + "uuid": "d37b47db-0520-4a91-beb7-df6e3c3c4ea9", + "dateNoted": "2016-04-15", "notes": "", - "parcelID": "19926", - "siteID": "19254", - "siteRegistry": false + "parcelID": "17272", + "siteID": "19111", + "siteRegistry": true } ] }, { - "uuid": "0367d199-a118-4d2c-a9f4-0fd98df7b01c", - "siteID": 17834, - "address": "130 Marvin Loop", - "latitude": 52.3086, - "longitude": -137.754, - "lastUpdated": "2020-01-17", - "city": "Hannachester", - "region": "Kootenay", - "victoriaFile": "26250-20/18698", + "uuid": "a8613bfb-1a57-4dd5-9723-a643bc582069", + "siteID": 15402, + "address": "25521 Baumbach Views", + "latitude": 58.5868, + "longitude": -123.1284, + "lastUpdated": "2019-10-26", + "city": "Port Jaymefort", + "region": "Mainland/Southwest", + "victoriaFile": "26250-20/1756", "regionalFile": "N/A", "parcelIDs": [ - 5197380, - 9983488, - 808298, - 7414701, - 9117510 + 8932175, + 4986212, + 3987363, + 9410404, + 8257422 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "5781326b-44df-4e20-8a19-7f316e6e9220", - "createdAt": "2021-12-09", - "completed": "2014-04-12", - "initiated": "2014-09-21", - "ministryContact": "KUHLMAN CYDNEY", + "uuid": "e8a362be-00a9-4b3f-abb8-d6c75e85f65d", + "createdAt": "2023-04-04", + "completed": "2022-08-30", + "initiated": "2015-06-20", + "ministryContact": "LABADIE VERDA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -34643,38 +40184,44 @@ ], "notationParticipants": [ { - "uuid": "0d85073d-128a-4dd9-85bb-32770c8eb198", + "uuid": "842a80e7-447b-4bfb-bef7-1c07e58d93f9", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "1ed94a4a-d1c2-45c7-9b38-699ce0d1d448", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "ff36021c-901c-4547-8bdb-e545222c107c", + "uuid": "9d3778d9-c4dd-424d-926b-75469160800b", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false + "role": "REQUESTED BY", + "siteRegistry": true }, { - "uuid": "eed5d53d-094b-44d0-8475-e149f4345699", - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "uuid": "246e7dd0-c816-429a-b4ac-d4f1c728fd47", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", "siteRegistry": false }, { - "uuid": "d48da9db-90a3-4e08-bfe2-e773e69f1e28", - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "uuid": "8b9b08fe-4ec3-4e81-bce2-1da39acfc001", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", "siteRegistry": true } ], "siteRegistry": false }, { - "uuid": "c2442aef-d8f3-4883-8a07-baaca117ff99", - "createdAt": "2023-04-10", - "completed": "2015-09-25", - "initiated": "2014-01-28", - "ministryContact": "JASKOLSKI SHANELLE", + "uuid": "109c14ae-2fd7-4812-a4b8-0e678b5b5a9d", + "createdAt": "2016-09-26", + "completed": "2014-04-08", + "initiated": "2020-06-25", + "ministryContact": "GLOVER PRISCILLA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -34683,44 +40230,32 @@ ], "notationParticipants": [ { - "uuid": "1388dea9-a15a-49a9-9f8e-e2bb77c185a5", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "uuid": "3a423fe3-e315-44d4-8820-b66aeb921804", - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "uuid": "c3ec03df-d322-4e1a-97e8-ea79f9d9c5f9", + "uuid": "86460da2-a75f-474b-8981-404fd5c35191", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "uuid": "b7fadeed-5fbd-42d2-a778-7a4b561cfeaf", - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "d0df88e7-4e2b-418a-a674-620cf0bfff13", + "uuid": "5a91e93f-89db-465c-8e46-a972837dff53", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false + }, + { + "uuid": "800ee749-ab78-4a4d-b3ea-de818ba197b2", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true } ], "siteRegistry": true }, { - "uuid": "60a77b69-9eb7-48f3-80de-cb19a6feb0af", - "createdAt": "2020-11-20", - "completed": "2015-05-10", - "initiated": "2020-06-23", - "ministryContact": "LARSON HENRIETTE", + "uuid": "b709cfdf-70f8-4232-8929-5550e739314c", + "createdAt": "2020-05-02", + "completed": "2019-05-02", + "initiated": "2015-09-09", + "ministryContact": "CONSIDINE TYREL", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -34729,32 +40264,26 @@ ], "notationParticipants": [ { - "uuid": "6101b075-ef4a-47de-950a-de65b17cf139", + "uuid": "36cdf3e2-cad3-48f3-8954-a5ff3421ef82", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false }, { - "uuid": "b2d93dfa-c6d3-4e1b-9d64-ac31bcbcca74", - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "7aa04e7c-3db3-441d-8f15-ad2554811042", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true - }, - { - "uuid": "3eb173f8-7a13-4528-8caf-c781352d008d", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false } ], "siteRegistry": false }, { - "uuid": "b1b1d6a1-e4f0-4b6d-9764-d0ccffbf4b9e", - "createdAt": "2019-03-25", - "completed": "2015-11-26", - "initiated": "2019-06-07", - "ministryContact": "KLING ABELARDO", + "uuid": "5c3e5ef3-d142-4e01-81ca-895f7045ee23", + "createdAt": "2016-09-18", + "completed": "2017-06-14", + "initiated": "2022-01-22", + "ministryContact": "LEFFLER RICHARD", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -34763,38 +40292,26 @@ ], "notationParticipants": [ { - "uuid": "0bd4d670-13bf-4eaa-b035-c8ef03cb752f", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "uuid": "9003da10-1e3e-43e8-b4d6-bd3fc3b88152", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "3ab0ac32-d899-4b85-97c6-8166c1f7079e", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "uuid": "61cc2a60-88cd-4485-b708-fc5f2791570a", + "uuid": "7af3cc33-f8ab-4e85-81ad-2077dad0c6b4", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "uuid": "e912a872-dbc4-480b-ba0c-d122a2167203", - "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "8719f8da-6c4d-45ea-a1a2-067823addc07", - "createdAt": "2019-07-10", - "completed": "2021-06-22", - "initiated": "2016-09-10", - "ministryContact": "TROMP GAGE", + "uuid": "776dee07-396a-47cb-93a7-a4c171dd0cf7", + "createdAt": "2022-03-31", + "completed": "2021-04-22", + "initiated": "2021-09-27", + "ministryContact": "ERDMAN ZOLA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -34803,152 +40320,270 @@ ], "notationParticipants": [ { - "uuid": "5688554e-22c2-41f6-81ad-a487cc7acb54", + "uuid": "27a7381e-ed03-464e-ad99-f2bb2c8d28f4", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "c7bbc52a-2e2d-4bce-b0ed-8d1d15c2208f", + "uuid": "a166dd07-b7b9-4c76-a800-1eff9daef7cc", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "35f6334e-398d-49be-985a-e0058e87ff65", - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "uuid": "e856dc2e-f908-468d-a9fe-37061e9397ed", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", "siteRegistry": false - }, - { - "uuid": "8d3ae6c2-ea2b-44e6-81d0-9df79dcdfb47", - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false } ], "participants": [ { - "uuid": "03507c13-0560-478d-9b5d-dd2a2eb6a8c0", - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2018-07-03", - "startDate": "2014-10-06", + "uuid": "fdf04989-16db-43b5-8696-091c83e15c97", + "name": "AMET, DOLOR SIT", + "endDate": "2020-10-22", + "startDate": "2020-12-26", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "d2e81b30-c3fc-4617-96a1-87acf15ffa8f", - "name": "SHELL CANADA PRODUCTS", - "endDate": "2018-10-19", - "startDate": "2023-02-14", + "uuid": "86602f37-d786-432a-88ce-8fa8909902c2", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2014-05-19", + "startDate": "2020-11-21", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false + } + ], + "documents": [ + { + "uuid": "74eb5e80-14a8-486a-be83-1eddfbc484d9", + "siteRegistry": false, + "documentDate": "2013-11-18", + "receivedDate": "2016-05-21", + "uploadedDate": "2019-02-05", + "title": "Summary of Site Conditions, 1537 W 41st Avenue, Vancouver", + "participants": [ + { + "uuid": "d4868853-6f7d-4d8e-b13f-9e26034af1d8", + "name": "IPSUM", + "siteRegistry": true, + "role": "AUTHOR" + } + ] }, { - "uuid": "972adb29-2e56-4c24-a7cd-f120157cf54a", - "name": "IPSUM", - "endDate": "2016-04-28", - "startDate": "2021-01-05", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": true + "uuid": "a8caf4cb-0218-4def-bd10-730e6eca1f73", + "siteRegistry": false, + "documentDate": "2022-09-26", + "receivedDate": "2015-11-24", + "uploadedDate": "2016-07-02", + "title": "Summary of Site Conditions, 1537 W 41st Avenue, Vancouver", + "participants": [ + { + "uuid": "fecde1d0-6fde-4cfe-8386-c17a79c80eee", + "name": "IPSUM", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "f5257b8b-a15b-49dc-900f-773cb2cd5275", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "4ebb4994-fb38-4185-baab-1952aa0ce24c", + "name": "AMET, DOLOR SIT", + "siteRegistry": false, + "role": "AUTHOR" + } + ] }, { - "uuid": "53b85fdd-2eaf-4b1f-b288-347a7fb689db", - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2018-07-20", - "startDate": "2021-12-17", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": true + "uuid": "60fb815b-823f-496d-81c0-3adb6a9d84dc", + "siteRegistry": false, + "documentDate": "2015-03-06", + "receivedDate": "2021-03-13", + "uploadedDate": "2014-09-12", + "title": "Preliminary Site Investigation, Detailed Site Investigation and Remedial Plan for the Management Area adjacent to the Shell Site at 1503 West 41st Ave", + "participants": [ + { + "uuid": "f71837c0-c3d3-4b0c-8d9c-718710acb1fb", + "name": "IPSUM", + "siteRegistry": true, + "role": "AUTHOR" + } + ] + }, + { + "uuid": "dcd23d8c-0901-4266-a0ca-1acd76defd95", + "siteRegistry": true, + "documentDate": "2014-01-31", + "receivedDate": "2014-02-24", + "uploadedDate": "2014-12-06", + "title": "Preliminary Site Investigation, Detailed Site Investigation and Remedial Plan for the Management Area adjacent to the Shell Site at 1503 West 41st Ave", + "participants": [ + { + "uuid": "087db75c-cbed-4f38-bfcf-7d5c5aa469cd", + "name": "AMET, DOLOR SIT", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "e08fefbd-6bc2-4eda-b395-5652713777e2", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "cf0777a6-8017-44f0-827a-39d5b64ecea5", + "name": "IPSUM", + "siteRegistry": false, + "role": "AUTHOR" + } + ] } ], "suspectLandUses": [ { - "uuid": "7b0316bc-0595-46bc-bded-ee1fab17cee2", + "uuid": "cdfac4ca-dac8-4639-b501-5305f21addf8", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-02-27 (described on Site Profile dated 2019-02-27)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "notes": "INSERTED FOR SITE PROFILE DATED 2015-04-29 (described on Site Profile dated 2015-04-29)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "uuid": "b2404be3-a94f-4339-ada1-4668fdfdc809", + "uuid": "33e71696-7e8b-48a1-b59e-9e2778294ed7", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-06-25 (described on Site Profile dated 2017-06-25)", + "notes": "INSERTED FOR SITE PROFILE DATED 2023-02-06 (described on Site Profile dated 2023-02-06)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "uuid": "b562c0b2-4c4d-4d65-a5d0-3a963f18b936", - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-02-02 (described on Site Profile dated 2014-02-02)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "uuid": "69c12018-e508-4c4a-963b-e1e23b89f64b", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2020-05-09 (described on Site Profile dated 2020-05-09)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "uuid": "ddaf7170-5619-4d1a-8d83-b9c9a42ba5bc", - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-01-14 (described on Site Profile dated 2016-01-14)", + "uuid": "63010f07-da84-44fc-81cb-20ac46189a8b", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2020-05-03 (described on Site Profile dated 2020-05-03)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "uuid": "33a4a9eb-5de6-438d-9e36-be3a758809ff", - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-11-20 (described on Site Profile dated 2019-11-20)", + "uuid": "4efc7b19-b773-4e94-ba9e-7f4604e912f9", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2016-04-05 (described on Site Profile dated 2016-04-05)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], "parcelDescriptions": [ { - "uuid": "1ad3c6eb-833f-4455-95a9-5f4eb4c62b47", - "siteRegistry": false, - "dateNoted": "2016-10-01", - "parcelID": "20398", - "crownLandUsePIN": "17509", - "crownLandFileNumber": "20541", - "landDescription": "LOT 2 OF LOT 5 BLOCK 1 DISTRICT LOT 4 PLAN 5416" + "uuid": "08507534-374e-452a-9e19-d126c15e5782", + "siteRegistry": true, + "dateNoted": "2019-06-29", + "parcelID": "16153", + "crownLandUsePIN": "17476", + "crownLandFileNumber": "17974", + "landDescription": "LOT 3 OF LOT 5 BLOCK 1 DISTRICT LOT 1 PLAN 7959" }, { - "uuid": "19a3372f-bec1-4260-80fe-f00ed3711cdf", + "uuid": "e17f1693-65f8-4813-b741-bb9554414861", "siteRegistry": true, - "dateNoted": "2015-08-25", - "parcelID": "18407", - "crownLandUsePIN": "16696", - "crownLandFileNumber": "17728", - "landDescription": "LOT 1 OF LOT 5 BLOCK 3 DISTRICT LOT 1 PLAN 3008" + "dateNoted": "2023-10-07", + "parcelID": "18522", + "crownLandUsePIN": "15579", + "crownLandFileNumber": "16696", + "landDescription": "LOT 4 OF LOT 3 BLOCK 4 DISTRICT LOT 5 PLAN 8453" + }, + { + "uuid": "9b8cfa06-b0a7-4d83-9c8a-274d7d9266ed", + "siteRegistry": false, + "dateNoted": "2020-08-03", + "parcelID": "20940", + "crownLandUsePIN": "19082", + "crownLandFileNumber": "17157", + "landDescription": "LOT 5 OF LOT 2 BLOCK 5 DISTRICT LOT 4 PLAN 8085" + }, + { + "uuid": "63d195ab-0b7c-48dc-ad46-5b2539975ff2", + "siteRegistry": false, + "dateNoted": "2021-08-16", + "parcelID": "19173", + "crownLandUsePIN": "20692", + "crownLandFileNumber": "19475", + "landDescription": "LOT 2 OF LOT 2 BLOCK 2 DISTRICT LOT 2 PLAN 6640" } ], "siteDisclosures": [ { - "uuid": "f78d472a-defb-4e7e-a115-8fb7983e7f4c", + "uuid": "561d4001-47a2-4778-b5ea-b753a6b6dbb5", "siteRegistry": true, - "dateReceived": "2020-12-27", - "dateCompleted": "2019-07-06", - "dateEntered": "2021-01-11", - "dateRegistrar": "2013-11-29", - "dateLocalAuthorityReceived": "2016-04-08", - "summary": "Ratione est iure excepturi.\nPorro reprehenderit quasi.", - "informationUsed": "Sequi quis quos inventore adipisci beatae illo nobis.\nLibero expedita deleniti modi tenetur natus velit beatae voluptatibus et.\nInventore repellat amet atque hic officiis nostrum.\nMinima ad reprehenderit ipsam iure totam reiciendis sit error.", - "pastOrPresentOrders": "Delectus enim quam magnam eum veritatis labore deserunt.\nQuae error aut.\nOccaecati nobis quas officia molestias perferendis odio.", + "dateReceived": "2017-10-14", + "dateCompleted": "2019-07-09", + "dateEntered": "2017-10-26", + "dateRegistrar": "2014-09-21", + "dateLocalAuthorityReceived": "2017-12-25", + "summary": "Similique accusantium consequatur.", + "informationUsed": "Voluptates nesciunt aperiam deserunt molestiae placeat voluptate occaecati amet molestiae.\nCulpa numquam accusantium provident praesentium amet nulla aperiam.\nVeritatis iusto sequi sed praesentium nihil.", + "pastOrPresentOrders": "Praesentium vitae eveniet totam.\nNulla dolore sint ea quasi id expedita officiis.\nVoluptatum fugiat eaque id ipsam molestiae sequi optio.", "commercialAndIndustrialPurposes": [ { - "uuid": "ee967a23-3cbc-4e97-9b9b-39e62b0fa7eb", + "uuid": "8d0b5bd3-fec5-42bc-acb0-a2474e90f2fe", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "uuid": "4ffefa19-79dd-49e7-9535-dd066a5524ca", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false + } + ] + }, + { + "uuid": "be33e9e0-f1f3-4348-8ba2-4bf802a91536", + "siteRegistry": false, + "dateReceived": "2023-04-18", + "dateCompleted": "2017-08-12", + "dateEntered": "2020-11-19", + "dateRegistrar": "2020-06-06", + "dateLocalAuthorityReceived": "2014-10-21", + "summary": "Facilis quam laudantium iure occaecati modi adipisci similique libero.\nAsperiores ad ratione aperiam blanditiis nisi explicabo laudantium autem.", + "informationUsed": "Incidunt consequuntur aperiam.\nQuisquam quis iusto eius at aut quae quaerat minus tempora.\nSuscipit eos doloribus qui quas quas.\nAut sed illo placeat esse repellendus.\nIusto quis praesentium temporibus voluptatum.", + "pastOrPresentOrders": "Quis vitae animi illum.\nEveniet corporis laudantium quasi.\nPlaceat fugit excepturi dignissimos doloribus voluptates dolorem labore.", + "commercialAndIndustrialPurposes": [ + { + "uuid": "c550ae08-d5ad-49dd-9893-d5d508bed7a3", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true }, { - "uuid": "30bfa5af-1ee3-46c6-ab1b-a35993768549", + "uuid": "986a7b93-2541-4e00-97f8-a65dd82837cd", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "uuid": "e13d22f7-bddf-4824-aef1-6c5da4167c6d", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "uuid": "077f7d5c-6694-479a-8ac4-b6ffcc70473d", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true @@ -34958,86 +40593,108 @@ ], "activityLog": [ { - "uuid": "a338ae11-35fc-4904-99ae-9c7ff67ccc39", + "uuid": "1f521aee-b963-49ec-a657-5d0cb4ce7f33", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "LEHNER ICIE", - "timestamp": "2023-05-24" + "user": "GULGOWSKI NATHANIEL", + "timestamp": "2015-11-03" }, { - "uuid": "2abacb79-0e4c-4eb9-9d33-9bb98bb3ffdd", - "siteRegistry": true, + "uuid": "119816c0-9b1d-4e49-9e62-240b47e97fc9", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "HINTZ AURELIO", - "timestamp": "2023-09-28" + "user": "KUHLMAN DELPHA", + "timestamp": "2018-11-03" }, { - "uuid": "5a4da132-16ab-4bb4-ae45-beee7baf050e", - "siteRegistry": true, + "uuid": "3ce59dba-d35b-497a-8f7a-943e375e6407", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "WALKER SANDY", - "timestamp": "2016-06-10" + "user": "STEUBER KENDRA", + "timestamp": "2014-04-07" }, { - "uuid": "bf5f5992-8933-449b-aabd-f1fa48e32dea", + "uuid": "dfbe85fe-18cb-4113-bd90-92496da17314", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "JAKUBOWSKI CEASAR", - "timestamp": "2020-06-22" + "user": "BAUMBACH HAROLD", + "timestamp": "2018-12-17" }, { - "uuid": "efb63f40-4c47-4e40-a1ae-e875738dc692", + "uuid": "147dac59-72eb-44fb-804d-a70ee45fd4a5", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "BEDNAR JAYME", - "timestamp": "2019-08-21" + "user": "DOUGLAS EDWINA", + "timestamp": "2015-02-19" + }, + { + "uuid": "f93d61b5-cdbb-4f59-9ebb-15fdc20cfc3a", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "MEDHURST AUGUSTA", + "timestamp": "2014-03-25" + }, + { + "uuid": "c7166484-1389-409e-bb74-9b23c64cc352", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "JOHNSON MADELYNN", + "timestamp": "2020-07-28" } ], "associatedSites": [ { - "uuid": "7839337d-8621-4b9f-8199-05efac298db8", - "dateNoted": "2022-02-19", + "uuid": "eadf9691-3256-477a-be22-d9519a6b79bb", + "dateNoted": "2015-05-03", "notes": "", - "parcelID": "20447", - "siteID": "18496", + "parcelID": "17788", + "siteID": "19202", "siteRegistry": true }, { - "uuid": "5d8ec1b8-76b3-488f-be55-62e61d731614", - "dateNoted": "2019-03-26", + "uuid": "664bbdcc-8535-40be-8f97-ac3b417588e4", + "dateNoted": "2019-09-30", "notes": "", - "parcelID": "18513", - "siteID": "17277", - "siteRegistry": false + "parcelID": "20951", + "siteID": "15746", + "siteRegistry": true + }, + { + "uuid": "2e23c887-8f6f-4ee5-a2f6-22e0b7205e1f", + "dateNoted": "2022-01-11", + "notes": "", + "parcelID": "19562", + "siteID": "18465", + "siteRegistry": true } ] }, { - "uuid": "57572603-d245-49af-8b89-9f1f38db7704", - "siteID": 17116, - "address": "19917 Gottlieb Grove", - "latitude": 55.5171, - "longitude": -120.0668, - "lastUpdated": "2020-01-09", - "city": "Aufderharstad", - "region": "Cariboo", - "victoriaFile": "26250-20/8907", + "uuid": "d7030dc6-1f63-44f0-b7b9-1f5620691975", + "siteID": 17993, + "address": "45498 Wava Park", + "latitude": 57.8291, + "longitude": -133.0103, + "lastUpdated": "2015-11-09", + "city": "North Nasirside", + "region": " North Coast", + "victoriaFile": "26250-20/12402", "regionalFile": "N/A", "parcelIDs": [ - 7502226, - 1237449, - 3590462, - 7467178, - 9452744 + 7066922, + 4076595, + 7409151, + 7918673, + 4245963 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "79c2921c-363b-4169-85d5-d621e1621f02", - "createdAt": "2017-04-23", - "completed": "2014-04-12", - "initiated": "2014-04-28", - "ministryContact": "WOLF ROMA", + "uuid": "6fc9e135-161a-439f-bac9-4d783fca8c80", + "createdAt": "2014-10-18", + "completed": "2018-09-18", + "initiated": "2014-04-30", + "ministryContact": "HICKLE ABIGAYLE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -35046,26 +40703,32 @@ ], "notationParticipants": [ { - "uuid": "b25232ca-c976-454c-bf8a-1b0675b8800b", + "uuid": "e93d39ef-8598-49c3-83ab-be0415f7716e", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "uuid": "8866da76-a51a-4364-8b43-164204fc1546", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true }, { - "uuid": "c86136ec-c093-46ee-a231-5ca85e0a7aee", + "uuid": "4b21b1de-8596-4c54-8ae2-98e9c995180f", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true + "role": "REQUESTED BY", + "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "cf01139b-233e-4a6d-ab85-a794fdba4f74", - "createdAt": "2020-11-09", - "completed": "2016-05-28", - "initiated": "2013-12-11", - "ministryContact": "BOSCO SYLVIA", + "uuid": "14bf6e64-6756-4efc-a56f-308f9f4a712f", + "createdAt": "2016-12-24", + "completed": "2019-02-16", + "initiated": "2015-04-17", + "ministryContact": "MACEJKOVIC EASTON", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -35074,66 +40737,429 @@ ], "notationParticipants": [ { - "uuid": "51c771d3-a14a-4623-bebe-06c0a7dfd0ef", + "uuid": "37737146-fe60-4d3c-bad8-8bbf52ae82e4", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false }, { - "uuid": "b74ec2e2-eb22-4f23-9f73-140b0f57c8e7", + "uuid": "8bfdc89e-e590-417d-ab1c-b5118520775a", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true }, { - "uuid": "9e8b54b4-6197-4779-a483-3a52e74c8aae", - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "a9255332-ad4e-4ea3-8c12-655c04d3a0e9", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "3294a870-ad5e-404a-b45a-440a2a1acea8", + "uuid": "4c4c4914-fb25-461a-a484-9cd0032308e3", "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "a6c3d8ff-d433-49e2-aec2-f98ff7cb5bd6", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false } ], "siteRegistry": false + } + ], + "participants": [ + { + "uuid": "49fc76cd-c247-4103-ad05-d1e5b95b0dac", + "name": "IPSUM", + "endDate": "2014-10-15", + "startDate": "2015-08-29", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false }, { - "uuid": "d6e5314c-f84e-46f2-bac3-231953dea8ec", - "createdAt": "2015-01-16", - "completed": "2014-10-31", - "initiated": "2020-04-27", - "ministryContact": "CUMMINGS MELANY", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" + "uuid": "4fe39775-5109-4622-93af-bcf9d5723b8a", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2021-11-01", + "startDate": "2017-09-26", + "notes": "", + "roles": [ + "EMPLOYEE" ], - "notationParticipants": [ + "siteRegistry": true + } + ], + "documents": [ + { + "uuid": "8a40f9e7-b79b-499e-9feb-385c579232c0", + "siteRegistry": false, + "documentDate": "2020-06-19", + "receivedDate": "2018-12-30", + "uploadedDate": "2018-03-21", + "title": "Preliminary Site Investigation, Detailed Site Investigation and Remedial Plan for the Management Area adjacent to the Shell Site at 1503 West 41st Ave", + "participants": [ { - "uuid": "5dbdbd0b-847b-4829-889a-5105065be7ae", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true + "uuid": "a6193dc4-b3b5-4ae9-9db8-dd4ac3f03cba", + "name": "AMET, DOLOR SIT", + "siteRegistry": false, + "role": "AUTHOR" }, { - "uuid": "1e219b9a-be22-43a4-8de1-9b4fd5ef4bad", + "uuid": "7684e521-f4df-4641-b756-4e276b1f2e4f", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": false, + "role": "AUTHOR" + } + ] + }, + { + "uuid": "8da9f93c-0ec1-4e8a-a6e9-5a8e6c2ea4ba", + "siteRegistry": false, + "documentDate": "2021-11-08", + "receivedDate": "2022-09-17", + "uploadedDate": "2022-01-05", + "title": "Preliminary Site Investigation, Detailed Site Investigation and Remedial Plan for the Management Area adjacent to the Shell Site at 1503 West 41st Ave", + "participants": [ + { + "uuid": "1e517fc6-c0e8-45f2-b1ca-caee01153d70", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "576631a5-723c-44b3-848f-30b25e34113d", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": false, + "role": "AUTHOR" + } + ] + }, + { + "uuid": "d745f3be-6935-42f3-8c31-667234b04362", + "siteRegistry": true, + "documentDate": "2021-03-30", + "receivedDate": "2022-02-26", + "uploadedDate": "2017-08-12", + "title": "Preliminary Site Investigation, Detailed Site Investigation and Remedial Plan for the Management Area adjacent to the Shell Site at 1503 West 41st Ave", + "participants": [ + { + "uuid": "515d56d3-fae9-49e4-9fa1-8695973608aa", + "name": "IPSUM", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "5f0846ee-9c6f-404e-a2ba-db545d3de380", + "name": "IPSUM", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "91e2cd5d-d4a1-4aae-8a41-0011cc1b865a", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "siteRegistry": false, + "role": "AUTHOR" + } + ] + }, + { + "uuid": "aca72781-19b3-45fb-a796-9e0125e60e72", + "siteRegistry": true, + "documentDate": "2015-12-22", + "receivedDate": "2017-05-22", + "uploadedDate": "2016-10-24", + "title": "Preliminary Site Investigation, Detailed Site Investigation and Remedial Plan for the Management Area adjacent to the Shell Site at 1503 West 41st Ave", + "participants": [ + { + "uuid": "d7ecda31-dd54-4816-a9aa-68ca73bb3a2d", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "afc10f00-77bf-4844-bed8-2f746629d4da", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "85fa2c2b-f16d-4eda-a802-79d74e47aaa8", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": true, + "role": "AUTHOR" + } + ] + } + ], + "suspectLandUses": [ + { + "uuid": "15436ae5-94ed-42eb-8966-167f48b7ddd5", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2018-04-22 (described on Site Profile dated 2018-04-22)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "uuid": "0bb9a9b5-a364-4461-9774-76d8332cc61d", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2023-02-24 (described on Site Profile dated 2023-02-24)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + } + ], + "parcelDescriptions": [ + { + "uuid": "bfdc5328-5e53-4fbb-8aca-b1ad2da475af", + "siteRegistry": true, + "dateNoted": "2020-12-24", + "parcelID": "18008", + "crownLandUsePIN": "20508", + "crownLandFileNumber": "15978", + "landDescription": "LOT 1 OF LOT 4 BLOCK 3 DISTRICT LOT 3 PLAN 9127" + }, + { + "uuid": "e21791e1-0715-44da-af78-f7a825c49d75", + "siteRegistry": true, + "dateNoted": "2022-12-27", + "parcelID": "18122", + "crownLandUsePIN": "17329", + "crownLandFileNumber": "19280", + "landDescription": "LOT 1 OF LOT 2 BLOCK 3 DISTRICT LOT 5 PLAN 4850" + }, + { + "uuid": "cdd69cdf-06db-4dbd-936d-4330bcdc2e79", + "siteRegistry": true, + "dateNoted": "2020-05-06", + "parcelID": "18717", + "crownLandUsePIN": "17724", + "crownLandFileNumber": "17904", + "landDescription": "LOT 3 OF LOT 2 BLOCK 1 DISTRICT LOT 1 PLAN 7216" + }, + { + "uuid": "2d9a04a0-491e-417b-9a72-84aa7f7f0eff", + "siteRegistry": true, + "dateNoted": "2020-02-02", + "parcelID": "20003", + "crownLandUsePIN": "17544", + "crownLandFileNumber": "16206", + "landDescription": "LOT 3 OF LOT 3 BLOCK 4 DISTRICT LOT 3 PLAN 8600" + }, + { + "uuid": "b67e2b8c-637e-4c7f-aaa4-4bed73f4a17a", + "siteRegistry": false, + "dateNoted": "2016-05-05", + "parcelID": "18778", + "crownLandUsePIN": "17873", + "crownLandFileNumber": "19214", + "landDescription": "LOT 1 OF LOT 3 BLOCK 1 DISTRICT LOT 2 PLAN 6434" + } + ], + "siteDisclosures": [ + { + "uuid": "cd9536c9-30a5-4b25-9390-8c570b63b6d8", + "siteRegistry": false, + "dateReceived": "2020-07-12", + "dateCompleted": "2023-04-09", + "dateEntered": "2015-05-19", + "dateRegistrar": "2014-04-02", + "dateLocalAuthorityReceived": "2022-08-20", + "summary": "Iste eaque provident est ullam saepe aliquam.", + "informationUsed": "Sapiente laboriosam magni expedita similique tempora quasi iste maxime id.\nUllam fuga nemo.\nMollitia quia cupiditate repudiandae.\nQui culpa ipsam assumenda quas aliquid quibusdam quae dignissimos amet.\nDolores consectetur hic dicta doloremque magnam et ea tenetur.", + "pastOrPresentOrders": "Ratione modi corrupti velit sapiente reiciendis deserunt.\nMolestiae alias harum ab numquam.", + "commercialAndIndustrialPurposes": [ + { + "uuid": "86f662da-0142-4bb8-927f-769727b08873", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "uuid": "c7634476-1f57-4c6a-94f6-2fb1ef819780", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "uuid": "2f0902ec-7abf-4fdd-8ea7-dc698eac5e13", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "uuid": "611d8d28-324a-4b5a-8ed0-8d2a9b07ce93", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false } - ], - "siteRegistry": false + ] + }, + { + "uuid": "ce7ac17e-56d0-4b7f-97fa-869901522580", + "siteRegistry": false, + "dateReceived": "2015-02-21", + "dateCompleted": "2020-12-14", + "dateEntered": "2014-10-28", + "dateRegistrar": "2013-12-04", + "dateLocalAuthorityReceived": "2022-05-17", + "summary": "Quo nobis saepe perspiciatis voluptates architecto eum non.\nConsequatur amet veritatis blanditiis voluptates.", + "informationUsed": "Modi eos consectetur nam hic.\nAlias facere enim tempora corporis neque velit.\nItaque delectus iure earum.\nRerum accusantium delectus totam mollitia repellendus molestias deleniti deserunt.", + "pastOrPresentOrders": "Ipsam porro magni expedita vel laborum.", + "commercialAndIndustrialPurposes": [ + { + "uuid": "5182d4f3-e4e8-483f-a2b7-a4bff62bfa11", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "uuid": "3661fee8-b03f-40e4-b5af-aeca90ff1c45", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "uuid": "adb449cd-b03d-4783-bb62-e2af6e5606fd", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "uuid": "6ef3b2d6-d29b-4fd1-ad90-3483071e93ed", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + } + ] + } + ], + "activityLog": [ + { + "uuid": "333e84c3-0e5c-4ef4-86d3-5073e8cc7d9c", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "FADEL VINNIE", + "timestamp": "2014-08-29" + }, + { + "uuid": "0bb27874-5339-4035-967e-c9ca7b10e940", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "CARROLL CHEYANNE", + "timestamp": "2017-04-29" }, { - "uuid": "871e7a30-7655-46e9-a6de-f077c6b2f95b", - "createdAt": "2018-06-29", - "completed": "2017-01-13", - "initiated": "2022-09-25", - "ministryContact": "GIBSON VELVA", + "uuid": "32cf1188-a89b-427e-99db-d2ea11dc80d1", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "OSINSKI CORALIE", + "timestamp": "2022-08-08" + }, + { + "uuid": "12ed41e9-8921-4e8e-801c-b9942b7cb3b2", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "HOWE GENNARO", + "timestamp": "2014-08-20" + }, + { + "uuid": "48e1b4c4-407a-4b76-941e-e03481fca1a5", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "RIPPIN DILLON", + "timestamp": "2021-04-21" + }, + { + "uuid": "5f4bb690-3740-4b76-8928-6a3766295045", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "ADAMS GASTON", + "timestamp": "2019-07-23" + }, + { + "uuid": "4b31f08b-5a0b-4165-aa2d-27c30c728a8a", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "KLEIN ETHA", + "timestamp": "2014-10-09" + }, + { + "uuid": "2012877b-1fe6-42ad-9f7f-71d3766bd71a", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "HARRIS MALVINA", + "timestamp": "2022-02-21" + }, + { + "uuid": "43216462-335d-4fe0-8ace-f50be69a8c25", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "WINTHEISER ZORA", + "timestamp": "2014-12-14" + }, + { + "uuid": "29db3495-42ed-44fd-9a6a-cf65f586e84c", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "PREDOVIC KAMREN", + "timestamp": "2022-02-14" + } + ], + "associatedSites": [ + { + "uuid": "ebbf8c62-c9af-434f-8dd4-e476eef022c0", + "dateNoted": "2018-03-14", + "notes": "", + "parcelID": "15249", + "siteID": "15676", + "siteRegistry": true + }, + { + "uuid": "423d84bd-803c-45c0-b7a8-e90430ad8a90", + "dateNoted": "2021-04-27", + "notes": "", + "parcelID": "16932", + "siteID": "16012", + "siteRegistry": true + }, + { + "uuid": "d7245f53-3d17-4e0a-839e-c0d6aa4fc1f0", + "dateNoted": "2021-03-29", + "notes": "", + "parcelID": "20793", + "siteID": "17033", + "siteRegistry": true + } + ] + }, + { + "uuid": "81ab7f8b-5bb7-4804-b048-ee1f5beee902", + "siteID": 16531, + "address": "471 Lexus Park", + "latitude": 56.3192, + "longitude": -118.1897, + "lastUpdated": "2022-04-10", + "city": "Runolfsdottirfort", + "region": " North Coast", + "victoriaFile": "26250-20/18290", + "regionalFile": "N/A", + "parcelIDs": [ + 9110939, + 8032059, + 4131375, + 9775373, + 5306441 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "uuid": "938448c3-c4a2-4b2a-a165-74fe27fcdd74", + "createdAt": "2019-01-24", + "completed": "2017-12-24", + "initiated": "2022-05-17", + "ministryContact": "STAMM BROOKS", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -35142,32 +41168,32 @@ ], "notationParticipants": [ { - "uuid": "48a320f9-4456-46f8-86dc-8a986c2d2a82", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "uuid": "91df7fc9-d252-40fb-b246-51291cf9ba13", + "uuid": "927e0a8b-0c80-4a89-ad30-56e329922cf3", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "e37e1d7d-b390-4d1e-b130-5a448f86e135", + "uuid": "aca6b64c-3fa5-4e01-8b4a-3cd06dd4a1dc", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "8a5fbb25-45be-4203-acc4-ef9961d850f6", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": true } ], "siteRegistry": true }, { - "uuid": "ce4ca57a-44a1-4a01-8823-98c63e58b5be", - "createdAt": "2022-07-06", - "completed": "2020-10-06", - "initiated": "2013-11-02", - "ministryContact": "GLEASON RAUL", + "uuid": "a2515173-927a-4681-8036-41768c6ffef2", + "createdAt": "2022-09-26", + "completed": "2020-06-03", + "initiated": "2016-12-24", + "ministryContact": "KUNZE JEFFERY", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -35176,33 +41202,27 @@ ], "notationParticipants": [ { - "uuid": "d5f4d010-4ee4-4dfa-9371-2d30fc8d0114", + "uuid": "a5a2482f-8fad-4cd9-9694-a73fcd73af90", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "a880f5a1-733d-42fe-9482-d4a5d86a0e8e", + "uuid": "c7284da1-c318-454b-85c6-5d5299324b6a", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false + "role": "SUBMITTED BY", + "siteRegistry": true }, { - "uuid": "e4257eae-3f0e-4492-a47e-1840b7ea5ec5", + "uuid": "586ea5bb-f109-4feb-80ff-fd072e82651e", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false }, { - "uuid": "f3050986-4916-4013-b3ad-99effa26147c", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "uuid": "35881423-d2dc-4877-9b60-e39495e86ceb", + "uuid": "47d77ade-7db1-4d76-a968-dda9489bc24c", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false } ], @@ -35211,10 +41231,10 @@ ], "participants": [ { - "uuid": "b04ad025-f456-4738-9cfe-0a78a4b8a8c4", + "uuid": "ded2b371-27d9-4e90-af42-f1ea9d7599a8", "name": "AMET, DOLOR SIT", - "endDate": "2023-04-01", - "startDate": "2016-04-22", + "endDate": "2018-09-07", + "startDate": "2023-07-06", "notes": "", "roles": [ "ORGANIZATION" @@ -35222,233 +41242,229 @@ "siteRegistry": true }, { - "uuid": "f19ba0e6-e327-4a34-9dcd-d77ec556695f", - "name": "AMET, DOLOR SIT", - "endDate": "2014-11-02", - "startDate": "2019-09-20", + "uuid": "f12595a2-da8e-4f11-9370-dad2fc5715aa", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2015-11-21", + "startDate": "2013-11-02", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": false - }, - { - "uuid": "5be0cf49-ea99-46fe-8242-84d9475481a1", - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2014-01-06", - "startDate": "2019-07-13", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": true - }, - { - "uuid": "7bb65395-71fe-43d8-8b76-389d19680f23", - "name": "IPSUM", - "endDate": "2023-09-03", - "startDate": "2017-07-22", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": true - }, + } + ], + "documents": [ { - "uuid": "898d39ea-1b9b-4e90-9afb-c35c41001c18", - "name": "SHELL CANADA PRODUCTS", - "endDate": "2021-12-26", - "startDate": "2021-01-15", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": true + "uuid": "36e99792-4679-4c92-a096-4ba2e8a59a00", + "siteRegistry": true, + "documentDate": "2022-07-25", + "receivedDate": "2019-11-16", + "uploadedDate": "2022-03-21", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "02ecc59b-cd74-47bb-88d8-ea3153d6adff", + "name": "AMET, DOLOR SIT", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "e770a2e5-84d5-4f13-a76f-143ce0cbab08", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "f25edf60-034d-4442-a47a-5d7cf1dc013f", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": true, + "role": "AUTHOR" + } + ] } ], "suspectLandUses": [ { - "uuid": "32bc510c-54a8-42a6-baa1-1d045540845f", + "uuid": "c72016d2-11a6-4778-8346-21185ae9151f", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2022-07-17 (described on Site Profile dated 2022-07-17)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "uuid": "77511133-af58-4c67-97e6-77ee359b8d4d", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-12-17 (described on Site Profile dated 2018-12-17)", + "notes": "INSERTED FOR SITE PROFILE DATED 2014-03-10 (described on Site Profile dated 2014-03-10)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "uuid": "7db5cb5a-ab06-4ca7-bebe-fbcd9fbd7f1f", + "uuid": "546b53b0-5147-400f-8d5e-d2ae11a3eba5", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-09-19 (described on Site Profile dated 2022-09-19)", + "notes": "INSERTED FOR SITE PROFILE DATED 2015-01-08 (described on Site Profile dated 2015-01-08)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "uuid": "5039f65a-97e8-4939-9148-936841d8a977", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2021-05-28 (described on Site Profile dated 2021-05-28)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "uuid": "5c6b4c91-827e-44c5-95f7-5a2c5c04d25e", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2023-08-10 (described on Site Profile dated 2023-08-10)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], "parcelDescriptions": [ { - "uuid": "2f6d216b-a007-4f9f-b549-52b913ff4178", + "uuid": "8782f318-bdc6-4250-9aaf-b19146d0e196", "siteRegistry": true, - "dateNoted": "2017-09-19", - "parcelID": "17379", - "crownLandUsePIN": "19365", - "crownLandFileNumber": "20794", - "landDescription": "LOT 5 OF LOT 4 BLOCK 4 DISTRICT LOT 4 PLAN 6287" + "dateNoted": "2018-03-26", + "parcelID": "20305", + "crownLandUsePIN": "17148", + "crownLandFileNumber": "19098", + "landDescription": "LOT 4 OF LOT 3 BLOCK 2 DISTRICT LOT 1 PLAN 4833" }, { - "uuid": "1a487de7-3096-45c6-824e-3d1d415432ef", + "uuid": "3b67716e-7bd2-4d3f-9459-8362ffba4b84", "siteRegistry": true, - "dateNoted": "2016-01-31", - "parcelID": "17335", - "crownLandUsePIN": "20293", - "crownLandFileNumber": "16399", - "landDescription": "LOT 5 OF LOT 1 BLOCK 3 DISTRICT LOT 2 PLAN 3869" + "dateNoted": "2017-02-02", + "parcelID": "18709", + "crownLandUsePIN": "19334", + "crownLandFileNumber": "16566", + "landDescription": "LOT 5 OF LOT 5 BLOCK 1 DISTRICT LOT 5 PLAN 9261" } ], "siteDisclosures": [ { - "uuid": "69f7a549-f2ae-45eb-8366-62cf7b2e1c60", - "siteRegistry": true, - "dateReceived": "2022-09-12", - "dateCompleted": "2020-05-28", - "dateEntered": "2016-10-04", - "dateRegistrar": "2018-12-18", - "dateLocalAuthorityReceived": "2020-01-26", - "summary": "Officiis earum nostrum.\nAutem molestias consequatur et odit autem dolor.\nFugit sit tempore itaque non.", - "informationUsed": "Omnis aliquid reiciendis quos veniam quasi est aut.\nMolestiae nam debitis officia earum fugit suscipit vel iusto occaecati.\nAsperiores iure tempora id excepturi est eos error id est.\nEligendi tenetur dolorum blanditiis atque nobis optio.", - "pastOrPresentOrders": "Totam accusamus illum.\nNeque iure pariatur esse numquam atque qui expedita.", + "uuid": "2206b222-3b7a-49ea-a968-69d39d441679", + "siteRegistry": false, + "dateReceived": "2019-04-15", + "dateCompleted": "2018-01-29", + "dateEntered": "2014-07-25", + "dateRegistrar": "2023-06-02", + "dateLocalAuthorityReceived": "2014-08-03", + "summary": "Veniam sint deserunt quasi quam laboriosam quibusdam ducimus pariatur.\nUllam praesentium illo fuga tempore earum adipisci.", + "informationUsed": "Ea delectus assumenda.\nSed voluptatem sint occaecati occaecati excepturi ipsum vel incidunt.\nEligendi sit qui dolorum perferendis ratione ut alias minima.", + "pastOrPresentOrders": "Molestias alias eius sapiente quos laudantium culpa.", "commercialAndIndustrialPurposes": [ { - "uuid": "98fdc704-cbcb-4eb4-a14f-2490cdb8a537", + "uuid": "6aa74307-4bbc-4c82-bdaf-b1cae5da1050", "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true - }, - { - "uuid": "c90d6e68-cfd8-434d-a5d0-f1dfdaf66324", - "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "080e8880-ebf8-4631-8546-2d1404f89669", + "uuid": "d5638152-6a74-4e8f-88ca-23c6e4ba5a12", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false - }, - { - "uuid": "76e0a1d9-360a-49e6-898a-903e3a1f857a", - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false + "siteRegistry": true } ] } ], "activityLog": [ { - "uuid": "75220a18-17e8-46f3-9ae1-cbf1da9a9484", - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "SKILES MAJOR", - "timestamp": "2015-01-14" - }, - { - "uuid": "c7d5871f-4dd4-4dd8-8ded-259340273d7f", - "siteRegistry": true, + "uuid": "c0b54e47-c93e-49dd-9cc5-eb758c4bd251", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "REINGER MINNIE", - "timestamp": "2018-12-30" + "user": "BREITENBERG EDMOND", + "timestamp": "2016-08-08" }, { - "uuid": "da2609d8-e437-45d0-9ba5-f215fb4b30fe", + "uuid": "02e465e5-db03-45b0-8eb2-a02f76f30d4c", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "BUCKRIDGE RHEA", - "timestamp": "2023-03-25" + "user": "RIPPIN KIARA", + "timestamp": "2020-03-21" }, { - "uuid": "a9da3acc-7607-414f-9e8f-7d9b40e3da51", + "uuid": "af1bbb08-708c-45f3-94ff-a2493c11a722", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "WAELCHI MARTA", - "timestamp": "2020-10-04" + "user": "LEFFLER AMY", + "timestamp": "2020-10-07" }, { - "uuid": "e3251959-3093-4815-9b01-4ff46b83e238", + "uuid": "fe332d63-0f37-4474-9fa3-c3604f97b4fc", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "BRADTKE ALISHA", - "timestamp": "2023-09-20" + "user": "WEST PENELOPE", + "timestamp": "2015-08-12" }, { - "uuid": "ef3673c8-a283-4e86-ae4e-3faf951e9ff3", + "uuid": "97d6e10a-44b2-4bff-83a9-a69fa0f301eb", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "KOVACEK WADE", - "timestamp": "2014-01-05" + "user": "YUNDT CATALINA", + "timestamp": "2015-12-16" }, { - "uuid": "567eab91-c802-448b-a5ed-501906537096", - "siteRegistry": false, + "uuid": "3220e982-7d31-4625-a52b-8d9ea1fc033b", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "CUMMERATA KARIANNE", - "timestamp": "2022-05-15" + "user": "VEUM JACEY", + "timestamp": "2013-12-11" }, { - "uuid": "fd6cceab-55e0-458c-a0aa-8700231875f0", + "uuid": "6e2c7d32-e880-4b78-bf08-e230ba94998f", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "STRACKE MARIANA", - "timestamp": "2017-01-06" + "user": "RATH GILES", + "timestamp": "2018-08-14" }, { - "uuid": "4fe0df03-65f1-4d46-96a8-ea42899779bf", - "siteRegistry": true, + "uuid": "b41de54f-6ce8-489f-8153-e13d59ce9ed8", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "ROOB KIRSTEN", - "timestamp": "2014-11-29" + "user": "FEIL KRISTA", + "timestamp": "2022-09-16" }, { - "uuid": "c2c9d64d-b79d-4443-b1a0-0e023b990df7", - "siteRegistry": false, + "uuid": "e59b3df4-9d7f-4b67-b2f8-ad6314352a6d", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "BINS VANESSA", - "timestamp": "2021-05-28" + "user": "LITTEL ANNALISE", + "timestamp": "2020-10-03" } ], "associatedSites": [ { - "uuid": "626b2e2d-0b3d-4212-88e7-e932717f0a6b", - "dateNoted": "2015-11-13", + "uuid": "7c1f91d5-37ad-419f-9da2-7dbc02a5e2da", + "dateNoted": "2016-06-22", "notes": "", - "parcelID": "17255", - "siteID": "20221", + "parcelID": "17331", + "siteID": "18406", "siteRegistry": false } ] }, { - "uuid": "9d4c6e00-093f-4556-8322-9a3e1c189900", - "siteID": 17062, - "address": "904 Armstrong Turnpike", - "latitude": 58.8506, - "longitude": -138.2046, - "lastUpdated": "2019-12-16", - "city": "Lelaside", - "region": " North Coast", - "victoriaFile": "26250-20/11324", + "uuid": "a4e8e16e-133f-4b83-b1e2-955044bff7eb", + "siteID": 16918, + "address": "202 Mertie Greens", + "latitude": 49.9244, + "longitude": -125.1793, + "lastUpdated": "2017-08-08", + "city": "New Jabari", + "region": "Vancouver Island/Coast", + "victoriaFile": "26250-20/14328", "regionalFile": "N/A", "parcelIDs": [ - 1690433, - 8220617, - 254814, - 7013553, - 4209196 + 9677129, + 4412184, + 6628039, + 1600873, + 6359779 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "14e55672-7175-4103-af9e-647da5413728", - "createdAt": "2021-12-15", - "completed": "2022-10-28", - "initiated": "2017-08-18", - "ministryContact": "KUHN HALIE", + "uuid": "bc5a41f3-0c18-48c0-affb-8c85af37f704", + "createdAt": "2019-01-22", + "completed": "2019-07-28", + "initiated": "2014-08-01", + "ministryContact": "FRIESEN TAMARA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -35457,84 +41473,26 @@ ], "notationParticipants": [ { - "uuid": "727b7ee0-481e-45e5-820c-b988729ecda5", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "uuid": "5540cba0-fe72-46b1-a510-44a13138c315", + "uuid": "a730b693-f29f-47b1-a127-7991339f06d7", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "bb54f7f0-a129-42d0-bbb3-3c509aa433ed", - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "uuid": "45ea9390-e7aa-48f8-af54-5aa49ea09bce", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "uuid": "4cf210cf-050c-496c-b345-604a4fcc2b05", + "uuid": "9c7e344c-8887-4491-8942-999f443658b1", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - } - ], - "siteRegistry": false - }, - { - "uuid": "2b077100-b067-433d-a72f-be97916dbcae", - "createdAt": "2019-10-04", - "completed": "2018-11-21", - "initiated": "2022-08-01", - "ministryContact": "OSINSKI TONEY", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "uuid": "238e96c5-5f43-46f6-abb6-5499bbcd4b46", - "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "uuid": "05f83083-8255-4de3-9449-c1ce1b109bbf", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "uuid": "99ab3d72-ebb6-4ccb-b147-a6d5d5d19f29", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", "siteRegistry": false - }, - { - "uuid": "dc1de273-4690-4cde-98c8-295fe4718182", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true } ], "siteRegistry": true }, { - "uuid": "b6cc1ea3-013f-42d8-96a0-dd578d22dea6", - "createdAt": "2022-02-04", - "completed": "2018-09-09", - "initiated": "2015-08-02", - "ministryContact": "REINGER LOY", + "uuid": "c0e0c7ea-418d-4f7e-a0b8-79d3c36083ea", + "createdAt": "2022-12-06", + "completed": "2019-01-19", + "initiated": "2016-06-29", + "ministryContact": "FADEL JUSTINE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -35543,77 +41501,27 @@ ], "notationParticipants": [ { - "uuid": "05f8a1ff-fc05-4657-92c1-e82f51d685bf", + "uuid": "c840ce50-cc98-4ed2-b7ba-62413c560513", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false }, { - "uuid": "7c8a659b-4718-46d8-89d5-266d07065740", + "uuid": "4aad5d09-8515-4970-9d11-fb7a0d32fc42", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false }, { - "uuid": "3e48254d-d124-42bc-a4b6-efc23162aef2", + "uuid": "7d7b6308-ef41-4570-83e1-c1ef54d63498", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false - } - ], - "siteRegistry": true - }, - { - "uuid": "d23fa22b-b1ae-4c56-96b3-5c403a21b348", - "createdAt": "2016-10-31", - "completed": "2023-08-18", - "initiated": "2013-12-23", - "ministryContact": "LEUSCHKE DREW", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "uuid": "635b609b-849e-4653-8d0c-7adf138a3416", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true }, { - "uuid": "fb6284cc-c3e8-4cab-9c2e-22265c8d990f", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - } - ], - "siteRegistry": true - }, - { - "uuid": "05447e31-ca22-48c5-9154-a851c983fcea", - "createdAt": "2019-07-08", - "completed": "2022-05-23", - "initiated": "2020-10-08", - "ministryContact": "SCHIMMEL LEONIE", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "uuid": "2c0b4c5f-2171-424d-8183-b189de53f3e3", + "uuid": "4ff4130d-8047-4b64-bef0-a2741599dbe3", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "uuid": "5e937254-0292-43e0-9259-c11451cc7cea", - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false } ], @@ -35622,10 +41530,10 @@ ], "participants": [ { - "uuid": "9580df9c-29bc-4dfb-a4bf-aba967f8c944", - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2019-05-13", - "startDate": "2018-09-03", + "uuid": "b0255fa1-9468-4b72-acc7-10511079b172", + "name": "AMET, DOLOR SIT", + "endDate": "2015-03-01", + "startDate": "2020-04-02", "notes": "", "roles": [ "EMPLOYEE" @@ -35633,217 +41541,265 @@ "siteRegistry": true }, { - "uuid": "685ed078-c672-40f5-a047-170c873e646f", + "uuid": "8f989b18-3879-4e23-8d0e-059edbe6a826", "name": "IPSUM", - "endDate": "2014-09-15", - "startDate": "2016-02-21", + "endDate": "2023-02-02", + "startDate": "2017-05-11", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "377b3088-4b88-4f63-9554-e8cbe01fcaa2", - "name": "IPSUM", - "endDate": "2018-10-02", - "startDate": "2023-01-03", + "uuid": "a0e88711-8200-4b9c-8394-ed62d1b5e17e", + "name": "AMET, DOLOR SIT", + "endDate": "2014-03-03", + "startDate": "2017-05-14", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": true } ], + "documents": [ + { + "uuid": "2a528474-44cc-41fb-a026-bb98318dd646", + "siteRegistry": true, + "documentDate": "2020-07-06", + "receivedDate": "2015-11-30", + "uploadedDate": "2017-04-17", + "title": "Summary of Site Conditions, 1537 W 41st Avenue, Vancouver", + "participants": [ + { + "uuid": "da1df1b7-860e-45a4-9199-f72af648ac44", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": false, + "role": "AUTHOR" + } + ] + } + ], "suspectLandUses": [ { - "uuid": "f63e2ca4-6300-4c02-8434-61a755139ea9", + "uuid": "3ee861d6-142d-442a-ba71-8388bfec301c", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-09-25 (described on Site Profile dated 2015-09-25)", + "notes": "INSERTED FOR SITE PROFILE DATED 2019-05-02 (described on Site Profile dated 2019-05-02)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "uuid": "e920efbc-2ef3-4dc6-b1d3-6552e81abb03", + "uuid": "c8ef9303-8b1b-4933-8c79-48741d424cf9", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-11-07 (described on Site Profile dated 2017-11-07)", + "notes": "INSERTED FOR SITE PROFILE DATED 2015-05-04 (described on Site Profile dated 2015-05-04)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" - } - ], - "parcelDescriptions": [ - { - "uuid": "bfe99378-d6e3-4dba-863e-d3f09eb612fc", - "siteRegistry": true, - "dateNoted": "2015-08-30", - "parcelID": "18242", - "crownLandUsePIN": "19520", - "crownLandFileNumber": "19890", - "landDescription": "LOT 3 OF LOT 2 BLOCK 3 DISTRICT LOT 4 PLAN 5315" }, { - "uuid": "9a729963-fee9-4a9a-b685-7327b4e05871", + "uuid": "4a32428a-d081-4790-afc1-03999cb7ad56", "siteRegistry": false, - "dateNoted": "2022-07-14", - "parcelID": "20558", - "crownLandUsePIN": "18218", - "crownLandFileNumber": "18874", - "landDescription": "LOT 1 OF LOT 5 BLOCK 1 DISTRICT LOT 5 PLAN 8957" + "notes": "INSERTED FOR SITE PROFILE DATED 2019-05-25 (described on Site Profile dated 2019-05-25)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "uuid": "08e967b1-0493-4944-a7c4-9a34f19ef718", - "siteRegistry": false, - "dateNoted": "2020-05-15", - "parcelID": "20280", - "crownLandUsePIN": "20304", - "crownLandFileNumber": "16596", - "landDescription": "LOT 5 OF LOT 3 BLOCK 1 DISTRICT LOT 2 PLAN 5811" + "uuid": "17c403dd-4dbc-4c26-948c-70c4540230c8", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2020-05-22 (described on Site Profile dated 2020-05-22)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "uuid": "e391aeef-0b53-433b-9c59-f7dd0a868e31", + "uuid": "8aa6c850-59ae-408c-9c93-31ec562357e0", "siteRegistry": true, - "dateNoted": "2022-06-14", - "parcelID": "20007", - "crownLandUsePIN": "17020", - "crownLandFileNumber": "19847", - "landDescription": "LOT 4 OF LOT 2 BLOCK 1 DISTRICT LOT 5 PLAN 6732" + "notes": "INSERTED FOR SITE PROFILE DATED 2022-04-03 (described on Site Profile dated 2022-04-03)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + } + ], + "parcelDescriptions": [ + { + "uuid": "3f4bbb81-f842-44b4-bc6e-8b943e694005", + "siteRegistry": false, + "dateNoted": "2015-12-30", + "parcelID": "16493", + "crownLandUsePIN": "19797", + "crownLandFileNumber": "18535", + "landDescription": "LOT 5 OF LOT 1 BLOCK 5 DISTRICT LOT 1 PLAN 8075" + }, + { + "uuid": "eaf9f34b-6083-486c-8dfe-980d1d888a53", + "siteRegistry": false, + "dateNoted": "2021-08-15", + "parcelID": "16079", + "crownLandUsePIN": "16812", + "crownLandFileNumber": "20341", + "landDescription": "LOT 2 OF LOT 1 BLOCK 5 DISTRICT LOT 2 PLAN 6948" } ], "siteDisclosures": [ { - "uuid": "e85986cf-18da-4e6a-8009-611b7de0e8ce", - "siteRegistry": true, - "dateReceived": "2016-10-28", - "dateCompleted": "2021-10-14", - "dateEntered": "2017-02-17", - "dateRegistrar": "2021-02-26", - "dateLocalAuthorityReceived": "2014-02-28", - "summary": "Quos recusandae nostrum doloribus sequi.\nQuidem iure ex officia possimus id vero dignissimos.", - "informationUsed": "Est sit qui alias enim asperiores fugit voluptatibus nisi.\nFugit fugit beatae eos quod dolores asperiores quidem excepturi magni.\nAspernatur vel distinctio porro ex voluptatibus officiis dolore magni.\nQuas modi dolore magni iusto aliquid quos labore.", - "pastOrPresentOrders": "Quae nam similique fuga maiores suscipit quae maxime reprehenderit.\nFugiat ea corporis ea temporibus pariatur sint iste vitae.", + "uuid": "fbefe885-0200-4aae-b772-919a8db3b1c2", + "siteRegistry": false, + "dateReceived": "2020-07-16", + "dateCompleted": "2016-12-28", + "dateEntered": "2014-02-08", + "dateRegistrar": "2018-06-07", + "dateLocalAuthorityReceived": "2023-08-28", + "summary": "Velit placeat mollitia ex praesentium est.\nDolorem magnam officiis inventore aliquam.\nAt tempore tempora sit maiores deleniti.", + "informationUsed": "Modi adipisci numquam.\nLaboriosam dolorum saepe deleniti.\nEius minus nostrum ipsa minus.", + "pastOrPresentOrders": "Aut corporis modi nihil consequatur inventore doloremque laudantium.", "commercialAndIndustrialPurposes": [ { - "uuid": "49c168ec-da87-4b4e-9207-06c43aa273e9", + "uuid": "7095f61c-281d-4849-868b-8dc7fb26685d", "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "uuid": "27028dcf-9107-4174-846a-3b7f10073cf9", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { - "uuid": "f44f9403-d041-429c-a279-2855cedc1f1a", + "uuid": "9ca78cc7-1b1f-4dde-b22e-702d229b33e5", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true + "siteRegistry": false + }, + { + "uuid": "56fb56e7-b02b-47b2-b019-30a1bbfd7fe9", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + } + ] + }, + { + "uuid": "5f31018a-2daa-43ec-b9ce-1b8a793f4799", + "siteRegistry": true, + "dateReceived": "2020-12-03", + "dateCompleted": "2023-06-23", + "dateEntered": "2020-05-02", + "dateRegistrar": "2023-08-26", + "dateLocalAuthorityReceived": "2013-11-15", + "summary": "Quidem excepturi itaque doloremque tenetur nam vel dignissimos.", + "informationUsed": "In tempora quae totam dolor possimus in eius.\nDignissimos veniam mollitia sequi eligendi quidem voluptatem aliquam voluptatem ab.\nReprehenderit laudantium aliquam illum quis consectetur excepturi.\nAssumenda quibusdam vel ad animi at deserunt.\nReprehenderit voluptatem dolores dolores rem in.", + "pastOrPresentOrders": "Minima occaecati voluptates repellat nobis optio error.\nNumquam aut porro.", + "commercialAndIndustrialPurposes": [ + { + "uuid": "72eb37d4-5060-44f8-8903-ea9b433d826e", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false }, { - "uuid": "4cd16aa6-b40c-426d-8011-2929e4bd6752", + "uuid": "4657b1bd-835c-4e52-b7ed-6fd263e9a118", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, { - "uuid": "58d4543f-0eea-4e52-8a8b-94fce8f673b0", + "uuid": "458f8111-63db-4133-81f1-86e2bef18130", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true + "siteRegistry": false } ] } ], "activityLog": [ { - "uuid": "1aa10a0f-b326-44e0-bd36-fe65373e5727", - "siteRegistry": true, + "uuid": "7b00dd43-6505-448a-8fe1-c02c9a8eb26c", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "KERLUKE ELADIO", + "timestamp": "2014-10-24" + }, + { + "uuid": "4e04265a-f3b4-4383-833c-6d9e6338e319", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "SCHINNER ROXANE", - "timestamp": "2014-03-24" + "user": "VONRUEDEN-JACOBS WILL", + "timestamp": "2021-05-06" }, { - "uuid": "6ec57574-3a05-4e12-b439-571a424c5fc7", + "uuid": "e9027ed3-3fa7-47ce-b827-86a32cb25aef", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "SCHNEIDER CARMELO", - "timestamp": "2021-11-06" + "user": "BERGSTROM AVIS", + "timestamp": "2020-04-22" }, { - "uuid": "c2f85e00-c71a-4501-bfe4-0a2754de365b", + "uuid": "9b265529-cd4a-4177-a81a-b0560b534233", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "BATZ CREOLA", - "timestamp": "2014-05-29" + "user": "WILL JADYN", + "timestamp": "2020-09-14" }, { - "uuid": "5704f161-35b3-4fae-907e-a474e8b493f9", + "uuid": "4bf588e8-8aa2-48e5-b447-3df1767cac60", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "BLANDA MADELINE", - "timestamp": "2017-04-25" + "user": "GRADY ANNABEL", + "timestamp": "2021-08-07" + }, + { + "uuid": "8c1ef5a2-97d7-47ca-bd8c-6434c3d71274", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "MCLAUGHLIN MYRTIS", + "timestamp": "2015-12-20" }, { - "uuid": "905a8789-7f0f-4071-b1ac-3a565120e5f6", + "uuid": "069e71ea-29e7-4f1b-838f-d15f60133e79", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "COLE FLO", - "timestamp": "2022-08-06" + "user": "RITCHIE CURT", + "timestamp": "2014-02-02" }, { - "uuid": "6ef4bf74-b778-4648-b78e-9712a3f92b4b", + "uuid": "98030ca1-92df-4eee-be8c-4b307df68a6a", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "GLOVER WILMER", - "timestamp": "2022-06-08" + "user": "BOSCO JARROD", + "timestamp": "2018-01-04" } ], "associatedSites": [ { - "uuid": "0a6e7a92-0fff-45a3-bf1f-c6030d5f67c6", - "dateNoted": "2019-08-26", - "notes": "", - "parcelID": "17020", - "siteID": "18182", - "siteRegistry": false - }, - { - "uuid": "72e14c82-2d27-47c0-a540-fe997564f24c", - "dateNoted": "2022-03-11", - "notes": "", - "parcelID": "19832", - "siteID": "19893", - "siteRegistry": false - }, - { - "uuid": "c56753e3-231e-4518-a359-43053ae1587c", - "dateNoted": "2021-04-20", + "uuid": "9f842fab-3a62-4174-83ac-d802c726a933", + "dateNoted": "2021-07-09", "notes": "", - "parcelID": "16866", - "siteID": "16026", - "siteRegistry": false + "parcelID": "20800", + "siteID": "19202", + "siteRegistry": true } ] }, { - "uuid": "a715cab2-6c1c-40a4-95e9-fa4c26fcfb85", - "siteID": 19620, - "address": "40335 Balistreri Rue", - "latitude": 54.6231, - "longitude": -124.1079, - "lastUpdated": "2013-12-29", - "city": "Kihnmouth", - "region": " North Coast", - "victoriaFile": "26250-20/18656", + "uuid": "34e5693a-7254-4196-ad19-dacfcb11cdf8", + "siteID": 18775, + "address": "4221 Schuppe Fords", + "latitude": 57.1818, + "longitude": -125.3616, + "lastUpdated": "2017-12-01", + "city": "New Jedidiahboro", + "region": "Mainland/Southwest", + "victoriaFile": "26250-20/16335", "regionalFile": "N/A", "parcelIDs": [ - 8932829, - 5139370, - 6179939, - 2407525, - 9498784 + 1861681, + 126240, + 1543423, + 7083568, + 6509547 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "879e4d36-4bce-4f71-bf16-33567bfa5fb1", - "createdAt": "2022-01-16", - "completed": "2016-12-23", - "initiated": "2022-10-19", - "ministryContact": "FADEL REBEKA", + "uuid": "713e064d-cd93-46d1-bf75-3f6d7a7c0861", + "createdAt": "2021-02-22", + "completed": "2013-12-25", + "initiated": "2019-06-16", + "ministryContact": "VONRUEDEN MAGNUS", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -35852,32 +41808,32 @@ ], "notationParticipants": [ { - "uuid": "bd2caf64-d259-42d4-948d-26cf45e02b1f", + "uuid": "8370d051-2aeb-40f5-93e5-3ed32942d76f", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "uuid": "a6c03bb8-16ad-4bdf-9664-9123acb30f11", - "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "29f881cb-d7eb-4e91-b422-a9c4695f8b04", + "uuid": "0584e659-c655-4eae-816e-b331ad7a77fb", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "d24ac69d-d905-4242-8788-8e9dc9f03169", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "11db42f5-6c8d-4cb8-bd52-08ceeeb74b00", - "createdAt": "2018-07-19", - "completed": "2015-06-22", - "initiated": "2015-03-29", - "ministryContact": "OLSON AALIYAH", + "uuid": "1b6896d2-5f36-4b03-8677-b6c25839045c", + "createdAt": "2019-03-21", + "completed": "2018-10-13", + "initiated": "2017-10-12", + "ministryContact": "DUBUQUE CAROLINA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -35886,21 +41842,27 @@ ], "notationParticipants": [ { - "uuid": "b0557d8d-f866-4921-b2cd-d44d9eab1624", + "uuid": "79542165-b48f-41f2-8e7a-4032ed33f475", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "uuid": "cac006d3-f100-4870-8da3-6cf1b1e3513c", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": true }, { - "uuid": "63e6b40b-6dbf-4178-8a8c-75a7381da1ee", + "uuid": "ddebba36-f82e-4181-998e-5a8d5f39d8db", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true }, { - "uuid": "0de9503c-4115-4bea-9c96-e405cc39cf92", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "uuid": "c43dd05a-ce8a-489a-ab59-049f34a14202", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": true } ], @@ -35909,133 +41871,119 @@ ], "participants": [ { - "uuid": "50e8b138-5605-4614-a588-032061ecb06c", - "name": "AMET, DOLOR SIT", - "endDate": "2018-07-30", - "startDate": "2018-03-01", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": true - }, - { - "uuid": "a3945d32-8817-41f1-a3f9-7d22c60e30ff", - "name": "SHELL CANADA PRODUCTS", - "endDate": "2016-10-24", - "startDate": "2015-10-05", + "uuid": "7099728c-6a6c-4109-b482-140a111c0bf0", + "name": "IPSUM", + "endDate": "2018-03-01", + "startDate": "2017-11-26", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "ae92cfe2-8004-4856-8653-72cecf5629c4", + "uuid": "c552c3c8-a9be-49e5-83e1-82f8270a1d5c", "name": "AMET, DOLOR SIT", - "endDate": "2020-05-17", - "startDate": "2014-10-12", + "endDate": "2016-05-13", + "startDate": "2013-10-26", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": true + "siteRegistry": false } ], - "suspectLandUses": [ - { - "uuid": "8af5ef25-fcba-43ef-8d36-b0de003f956f", - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2020-04-30 (described on Site Profile dated 2020-04-30)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" - }, + "documents": [ { - "uuid": "86e49f1e-ef41-410e-a7b8-d13000bab9e1", + "uuid": "a44c78a4-1b4f-4a52-8768-423beb76c183", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-09-20 (described on Site Profile dated 2014-09-20)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" - }, - { - "uuid": "24d25cc3-dc00-406d-bcfd-7402a075ef5b", - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-01-16 (described on Site Profile dated 2019-01-16)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" - }, + "documentDate": "2019-08-11", + "receivedDate": "2017-05-16", + "uploadedDate": "2017-03-18", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "5a684fac-cd79-4477-87d6-b1ae2c53057c", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": false, + "role": "AUTHOR" + } + ] + } + ], + "suspectLandUses": [ { - "uuid": "b738c0ab-06d8-40d1-babd-754edc48b9d2", + "uuid": "6ca1cf4c-d692-4a3a-9ad3-c7f49cccb06a", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-02-11 (described on Site Profile dated 2021-02-11)", + "notes": "INSERTED FOR SITE PROFILE DATED 2017-05-11 (described on Site Profile dated 2017-05-11)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "uuid": "8176a068-63d4-4db6-a5e9-dc59db46f9af", - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-09-22 (described on Site Profile dated 2014-09-22)", + "uuid": "544d86b4-686f-4ccd-845b-4348a3a62ef6", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2020-09-21 (described on Site Profile dated 2020-09-21)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], "parcelDescriptions": [ { - "uuid": "f5a5aec5-8ee6-487f-908e-39ef5c015fda", - "siteRegistry": false, - "dateNoted": "2023-02-25", - "parcelID": "16749", - "crownLandUsePIN": "16540", - "crownLandFileNumber": "15704", - "landDescription": "LOT 2 OF LOT 5 BLOCK 4 DISTRICT LOT 1 PLAN 3285" + "uuid": "35cd279a-9c81-4fad-8dff-800bad280957", + "siteRegistry": true, + "dateNoted": "2015-03-08", + "parcelID": "18432", + "crownLandUsePIN": "16968", + "crownLandFileNumber": "19149", + "landDescription": "LOT 5 OF LOT 4 BLOCK 4 DISTRICT LOT 1 PLAN 3406" }, { - "uuid": "f970519e-1358-4755-8371-9c6afe23d065", - "siteRegistry": false, - "dateNoted": "2016-05-19", - "parcelID": "16890", - "crownLandUsePIN": "15570", - "crownLandFileNumber": "20851", - "landDescription": "LOT 2 OF LOT 4 BLOCK 5 DISTRICT LOT 2 PLAN 9237" + "uuid": "fde7cd0b-bbb2-489f-a0e4-557ef4a0c74e", + "siteRegistry": true, + "dateNoted": "2019-03-13", + "parcelID": "20355", + "crownLandUsePIN": "16785", + "crownLandFileNumber": "19771", + "landDescription": "LOT 2 OF LOT 2 BLOCK 2 DISTRICT LOT 3 PLAN 7864" }, { - "uuid": "40c7535d-40c9-4b1d-8f7b-6998c1529933", + "uuid": "94f999b1-71be-49db-84a5-a5f5591d0011", "siteRegistry": true, - "dateNoted": "2015-04-21", - "parcelID": "18808", - "crownLandUsePIN": "15810", - "crownLandFileNumber": "15368", - "landDescription": "LOT 5 OF LOT 5 BLOCK 1 DISTRICT LOT 4 PLAN 3655" + "dateNoted": "2021-06-28", + "parcelID": "15510", + "crownLandUsePIN": "17202", + "crownLandFileNumber": "18271", + "landDescription": "LOT 4 OF LOT 5 BLOCK 2 DISTRICT LOT 5 PLAN 6039" + }, + { + "uuid": "dbe456a2-2f45-44fe-a82b-6c24e7cc5d3d", + "siteRegistry": true, + "dateNoted": "2023-09-05", + "parcelID": "20509", + "crownLandUsePIN": "18727", + "crownLandFileNumber": "19517", + "landDescription": "LOT 4 OF LOT 5 BLOCK 2 DISTRICT LOT 3 PLAN 5406" } ], "siteDisclosures": [ { - "uuid": "e31c9326-36fd-49bb-8be4-bf79c394dfd8", - "siteRegistry": true, - "dateReceived": "2018-12-07", - "dateCompleted": "2022-02-23", - "dateEntered": "2016-07-15", - "dateRegistrar": "2020-11-18", - "dateLocalAuthorityReceived": "2020-07-21", - "summary": "Laudantium maxime sapiente culpa tempore veritatis architecto tenetur.\nIncidunt voluptates similique voluptatum excepturi ad fuga occaecati alias.", - "informationUsed": "Minus quis voluptatibus ut corrupti tenetur soluta dolorem.\nQuaerat necessitatibus ex ut.\nLaborum nesciunt iure facilis quis veritatis illo minus magnam exercitationem.\nEt suscipit libero repellendus enim reiciendis rerum assumenda maiores voluptatibus.\nAccusamus aspernatur commodi.", - "pastOrPresentOrders": "Ipsum temporibus rem molestiae distinctio rerum impedit.", + "uuid": "d2300698-a13a-4bee-a98f-355bf305f6b8", + "siteRegistry": false, + "dateReceived": "2015-02-24", + "dateCompleted": "2020-03-16", + "dateEntered": "2020-09-14", + "dateRegistrar": "2017-05-07", + "dateLocalAuthorityReceived": "2018-11-28", + "summary": "Occaecati rerum exercitationem veritatis suscipit facilis quidem autem.\nPlaceat quia nisi illum possimus distinctio facere.\nQuia fugiat mollitia aliquid.", + "informationUsed": "Vel iusto atque eligendi.\nNemo quas blanditiis consequuntur velit omnis repudiandae autem temporibus.\nOfficia nihil fuga iure.\nInventore architecto officiis velit ipsum.", + "pastOrPresentOrders": "Quis suscipit repudiandae saepe nulla.", "commercialAndIndustrialPurposes": [ { - "uuid": "b30c8c94-56da-49d1-b036-7f83b5db76c5", + "uuid": "e73400b4-13f8-4a3c-9785-d84eb071ca3b", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { - "uuid": "1197f1dc-c173-4594-b188-fd610ad9fdb6", - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true - }, - { - "uuid": "1d191e22-c7c0-4523-94ba-5bb8887ef70e", - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false - }, - { - "uuid": "e6d3bdc9-ae0b-44de-b7b6-ac437b8dad97", + "uuid": "345b1269-05a1-424f-86ea-04d9459802db", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true @@ -36045,92 +41993,129 @@ ], "activityLog": [ { - "uuid": "6f1b00d4-ff91-4924-acb4-d2460c99dc2a", + "uuid": "5775fa76-b748-4c67-8a85-2d96f3637b66", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "WINDLER ELMIRA", + "timestamp": "2018-02-27" + }, + { + "uuid": "2d270641-9e84-4608-8bc3-f35fee2eab59", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "MACEJKOVIC KIANA", + "timestamp": "2021-09-09" + }, + { + "uuid": "dedf4d46-7569-4db9-b99d-ad629425e706", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "OSINSKI JACINTO", - "timestamp": "2016-10-02" + "user": "METZ JONATAN", + "timestamp": "2022-11-09" }, { - "uuid": "82b91fcd-9b3f-4b5b-9a40-906962fccbde", + "uuid": "7c29a603-327a-4126-b4a7-ff583962503e", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "GRADY CRAWFORD", - "timestamp": "2023-06-10" + "user": "BEDNAR DARIANA", + "timestamp": "2021-12-02" }, { - "uuid": "ebbf7883-a95b-4d24-ab9d-cf3efcd57a66", + "uuid": "c944c289-e045-4898-bfcb-0bfb78752e4a", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "ALTENWERTH DEBORAH", - "timestamp": "2017-01-31" + "user": "STROMAN TAYA", + "timestamp": "2016-07-11" }, { - "uuid": "6a2a1198-c549-4c2e-830c-d5e907601eb2", + "uuid": "0b7275a2-afea-4183-aead-1ad4050aa390", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "HARBER KESHAWN", - "timestamp": "2023-07-18" + "user": "MILLER STEPHAN", + "timestamp": "2021-06-06" }, { - "uuid": "6a427681-e5c3-4461-af55-e5aa059eca60", + "uuid": "760d68c9-4e4a-4270-b198-114301337efc", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "VONRUEDEN ORLO", - "timestamp": "2016-12-10" + "user": "KING SYDNI", + "timestamp": "2014-03-07" + }, + { + "uuid": "2d825fe7-a482-49d3-8dfd-437ff728208c", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "LEANNON MUSTAFA", + "timestamp": "2021-04-18" }, { - "uuid": "bd2d7a2a-bd84-4d00-af86-a44cab0bb918", + "uuid": "1e14b8e1-bd76-4018-8b4b-e9dd70be9757", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "SPENCER GUDRUN", - "timestamp": "2015-10-07" + "user": "BRUEN ROSE", + "timestamp": "2022-03-05" }, { - "uuid": "61a5b3a8-c988-46ea-a8c6-4e90d523c01f", + "uuid": "b4ef7647-e449-4266-a816-c1b397508909", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "HAYES DEJAH", - "timestamp": "2016-09-07" + "user": "KIRLIN LAMONT", + "timestamp": "2014-07-11" } ], "associatedSites": [ { - "uuid": "37860943-5311-491c-8190-16f60a19ef22", - "dateNoted": "2016-12-03", + "uuid": "55e1763d-a549-4f77-bfbe-4f82d02ac6a1", + "dateNoted": "2015-05-17", + "notes": "", + "parcelID": "20528", + "siteID": "17686", + "siteRegistry": true + }, + { + "uuid": "cd6125c4-6dd8-4532-8b87-c6f58216352a", + "dateNoted": "2015-01-22", "notes": "", - "parcelID": "15602", - "siteID": "18724", + "parcelID": "15802", + "siteID": "17582", "siteRegistry": true + }, + { + "uuid": "6fa5da17-cc79-4ab4-bae5-d55904a36194", + "dateNoted": "2016-07-15", + "notes": "", + "parcelID": "16030", + "siteID": "17454", + "siteRegistry": false } ] }, { - "uuid": "79c9b26c-0aa1-4b45-9716-09df510e08fc", - "siteID": 20146, - "address": "4804 Chyna Locks", - "latitude": 52.0402, - "longitude": -131.1058, - "lastUpdated": "2022-07-20", - "city": "North Dedrick", - "region": "Vancouver Island/Coast", - "victoriaFile": "26250-20/6228", + "uuid": "0ff790e5-5134-43ed-a2a8-8749fc58997e", + "siteID": 20693, + "address": "16754 Kerluke Ways", + "latitude": 58.016, + "longitude": -125.8139, + "lastUpdated": "2016-07-15", + "city": "O'Haraland", + "region": "Mainland/Southwest", + "victoriaFile": "26250-20/8759", "regionalFile": "N/A", "parcelIDs": [ - 3852606, - 7301445, - 5189871, - 2941941, - 3260247 + 6488734, + 8884145, + 4880596, + 9340453, + 6141852 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "603ebfc2-695c-43f3-8d03-9723c6c82513", - "createdAt": "2019-07-22", - "completed": "2021-08-10", - "initiated": "2017-12-11", - "ministryContact": "FUNK GWENDOLYN", + "uuid": "c9e10698-7af2-49e4-b854-f3144f1aa0dd", + "createdAt": "2016-12-10", + "completed": "2022-10-22", + "initiated": "2020-01-02", + "ministryContact": "HINTZ MODESTA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -36139,38 +42124,26 @@ ], "notationParticipants": [ { - "uuid": "ec5c8894-4454-4459-81c3-a940cb28a818", + "uuid": "f5d28648-3547-45cd-adae-81d7cb2d180a", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true }, { - "uuid": "507243c9-77be-44ce-864b-9f9d154d529c", + "uuid": "42e43e04-894e-4bd4-9647-5495b112ce68", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false - }, - { - "uuid": "3944fd1b-3de8-4b7c-8666-817e1c09b64b", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "uuid": "3cbc84b7-9d74-4b9f-8f57-20777dfcf743", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "20e51ff3-e593-4ac6-9293-4fff792027e9", - "createdAt": "2017-09-04", - "completed": "2018-02-28", - "initiated": "2016-01-14", - "ministryContact": "BARTOLETTI SCOTTIE", + "uuid": "0bedbc8c-be63-4a60-b09b-cfd69cbcee3f", + "createdAt": "2014-03-04", + "completed": "2019-10-03", + "initiated": "2018-06-01", + "ministryContact": "KIHN KHALIL", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -36179,26 +42152,32 @@ ], "notationParticipants": [ { - "uuid": "dffc4689-668e-4bd7-b563-617e8130753b", + "uuid": "d6d9783e-0f84-4af5-be16-4f2e4ec055b8", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "43a231cd-e673-45d7-975b-347e54b1700b", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false + "role": "REQUESTED BY", + "siteRegistry": true }, { - "uuid": "7aef5d91-9f7b-433a-a51e-0f06e742a61d", + "uuid": "655ecd4d-07a9-439c-a1e6-17ec9e4fa84c", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false }, { - "uuid": "32510e08-3b42-48df-94aa-4fccaf742791", - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "d6b3d994-d6c6-4b4e-8482-3bbee8244532", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "8c2c210a-9c06-4069-841f-f8b64a7553bb", - "name": "SHELL CANADA PRODUCTS", + "uuid": "b576a1b5-29ca-4517-818b-828ffcf154f5", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false } @@ -36206,11 +42185,11 @@ "siteRegistry": true }, { - "uuid": "08a474a6-25a6-45e5-bba2-47d20ef1b8f3", - "createdAt": "2017-11-15", - "completed": "2019-09-11", - "initiated": "2023-07-23", - "ministryContact": "ROLFSON GIOVANNY", + "uuid": "e32babbf-6dd2-4121-b423-412001b295c9", + "createdAt": "2019-04-08", + "completed": "2021-12-23", + "initiated": "2020-02-14", + "ministryContact": "GOLDNER NORVAL", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -36219,26 +42198,32 @@ ], "notationParticipants": [ { - "uuid": "b1ee668c-74b3-4187-adb6-49cf35ddfa80", - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "08b9341e-af41-4690-8ee6-21629a2389d4", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "a93d9a0a-ec5e-4172-a57c-2aff63ce6c8e", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": true }, { - "uuid": "6822c53d-d1bc-4bc8-a949-bf04b50370d2", + "uuid": "2119850c-013c-483f-a094-02e2336dd5d9", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false + "role": "REQUESTED BY", + "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "d3f2810d-fea0-4fc6-8bb7-ce76769de5fa", - "createdAt": "2022-08-29", - "completed": "2021-12-26", - "initiated": "2021-10-07", - "ministryContact": "BEDNAR ESTELL", + "uuid": "81b3e9de-baf8-44f4-ba94-b78231a7f3ec", + "createdAt": "2018-06-15", + "completed": "2021-10-18", + "initiated": "2015-10-11", + "ministryContact": "KERLUKE NYA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -36247,33 +42232,15 @@ ], "notationParticipants": [ { - "uuid": "297a4fb2-42b4-4cca-8ed5-6848227d53e5", + "uuid": "91e8b144-45a6-4006-a001-b12e5fe41fb9", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "uuid": "23cdaaa2-c34b-4f9d-84f5-2402a22cb815", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "uuid": "a9132446-4cde-4b4a-88fe-503dc098d7f3", - "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "d3f5c25e-6f55-44ae-b714-bde5887ca189", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "uuid": "4bc3a232-693f-40ab-9d37-488b10987cab", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "uuid": "dfe02c03-51f4-4909-9e94-5377c01a0075", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": true } ], @@ -36282,32 +42249,43 @@ ], "participants": [ { - "uuid": "e5890b8e-8c0e-4327-9dfa-832c8a31f017", - "name": "SHELL CANADA PRODUCTS", - "endDate": "2019-02-20", - "startDate": "2014-06-13", + "uuid": "1bf2c3f6-f500-4e74-be3a-f5528000d468", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2016-10-14", + "startDate": "2019-01-20", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "ed0c4593-ba75-44cc-871f-6ea858e3a367", - "name": "SHELL CANADA PRODUCTS", - "endDate": "2014-02-16", - "startDate": "2019-09-07", + "uuid": "24687b0a-2ca0-4d89-a7f4-d63f467daa47", + "name": "IPSUM", + "endDate": "2019-12-18", + "startDate": "2015-12-01", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": false }, { - "uuid": "9897f208-32b5-4975-9070-e55124cb04fe", + "uuid": "565588bf-fc1c-4ca4-8693-cce6f3663e1a", + "name": "IPSUM", + "endDate": "2019-07-15", + "startDate": "2018-04-30", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "uuid": "72210d03-35f7-434d-bd02-aacf962a3918", "name": "IPSUM", - "endDate": "2017-04-25", - "startDate": "2017-02-07", + "endDate": "2014-05-11", + "startDate": "2017-12-21", "notes": "", "roles": [ "ORGANIZATION" @@ -36315,69 +42293,126 @@ "siteRegistry": true } ], + "documents": [ + { + "uuid": "f513d3be-caaa-4b0c-bc49-9e4288e43bc0", + "siteRegistry": false, + "documentDate": "2018-07-24", + "receivedDate": "2020-06-10", + "uploadedDate": "2019-02-20", + "title": "Preliminary Site Investigation, Detailed Site Investigation and Remedial Plan for the Management Area adjacent to the Shell Site at 1503 West 41st Ave", + "participants": [ + { + "uuid": "a92f9e6d-6caf-4598-8a45-4775f814187c", + "name": "AMET, DOLOR SIT", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "9407e367-8f4a-4880-858e-0efa9d2891a4", + "name": "IPSUM", + "siteRegistry": true, + "role": "AUTHOR" + } + ] + } + ], "suspectLandUses": [ { - "uuid": "266a4081-ec11-4be7-9708-fc60ac5e4b5b", + "uuid": "fc993c07-a7aa-430d-8dfa-d12bd2b54338", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-06-15 (described on Site Profile dated 2014-06-15)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "notes": "INSERTED FOR SITE PROFILE DATED 2019-06-17 (described on Site Profile dated 2019-06-17)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "uuid": "e78f6820-91c3-41b9-8ab9-6a4deae566bc", + "uuid": "807fe298-5c54-4e3c-b637-c2b85a6a433b", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-03-26 (described on Site Profile dated 2015-03-26)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "notes": "INSERTED FOR SITE PROFILE DATED 2021-05-22 (described on Site Profile dated 2021-05-22)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "uuid": "8186aaac-9269-4257-b4f7-6f8f7bcec327", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2022-12-27 (described on Site Profile dated 2022-12-27)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], "parcelDescriptions": [ { - "uuid": "31dea676-73cd-4920-b000-f2fbe249675b", + "uuid": "a25ed0ae-ce6e-48dc-a19d-690e95c46bba", "siteRegistry": false, - "dateNoted": "2022-02-27", - "parcelID": "20184", - "crownLandUsePIN": "18010", - "crownLandFileNumber": "15645", - "landDescription": "LOT 1 OF LOT 1 BLOCK 3 DISTRICT LOT 3 PLAN 6549" + "dateNoted": "2021-10-19", + "parcelID": "16455", + "crownLandUsePIN": "20278", + "crownLandFileNumber": "15554", + "landDescription": "LOT 3 OF LOT 2 BLOCK 3 DISTRICT LOT 4 PLAN 4607" }, { - "uuid": "0ca03690-9b42-45e9-a87d-f24180428067", - "siteRegistry": false, - "dateNoted": "2017-12-14", - "parcelID": "18696", - "crownLandUsePIN": "16095", - "crownLandFileNumber": "20304", - "landDescription": "LOT 5 OF LOT 5 BLOCK 3 DISTRICT LOT 4 PLAN 9723" + "uuid": "8c4cda93-7516-4ad7-9940-ac34a2d7852b", + "siteRegistry": true, + "dateNoted": "2015-11-13", + "parcelID": "15860", + "crownLandUsePIN": "18893", + "crownLandFileNumber": "17254", + "landDescription": "LOT 1 OF LOT 5 BLOCK 4 DISTRICT LOT 1 PLAN 4640" + }, + { + "uuid": "250e33da-a623-4795-8ddd-a0934e88f85d", + "siteRegistry": true, + "dateNoted": "2015-06-20", + "parcelID": "20556", + "crownLandUsePIN": "16180", + "crownLandFileNumber": "16901", + "landDescription": "LOT 3 OF LOT 4 BLOCK 1 DISTRICT LOT 2 PLAN 9005" + }, + { + "uuid": "40d7f58f-c0df-44dd-8123-473a5df626c8", + "siteRegistry": true, + "dateNoted": "2022-06-25", + "parcelID": "20022", + "crownLandUsePIN": "18076", + "crownLandFileNumber": "19469", + "landDescription": "LOT 2 OF LOT 3 BLOCK 1 DISTRICT LOT 1 PLAN 6548" + }, + { + "uuid": "9a19dea6-422f-4a58-8009-50ed4c9d9604", + "siteRegistry": true, + "dateNoted": "2013-11-16", + "parcelID": "18251", + "crownLandUsePIN": "20160", + "crownLandFileNumber": "19124", + "landDescription": "LOT 4 OF LOT 1 BLOCK 3 DISTRICT LOT 1 PLAN 7489" } ], "siteDisclosures": [ { - "uuid": "98d866e7-3891-482c-9519-6833d5945aa7", + "uuid": "4af4c784-b971-498f-b40c-2c2342b1caa5", "siteRegistry": true, - "dateReceived": "2016-06-19", - "dateCompleted": "2018-07-23", - "dateEntered": "2017-07-25", - "dateRegistrar": "2019-01-06", - "dateLocalAuthorityReceived": "2017-04-29", - "summary": "Harum iure debitis quidem quis illo error.\nEveniet facere consequuntur animi illo itaque impedit rerum.", - "informationUsed": "Placeat voluptates culpa ullam consequuntur libero quam.\nExpedita quia rem recusandae debitis deserunt assumenda neque.\nEsse neque illo nostrum corporis ab deserunt hic ad.", - "pastOrPresentOrders": "Minima fugit dolorem.", + "dateReceived": "2018-11-14", + "dateCompleted": "2014-12-16", + "dateEntered": "2019-12-16", + "dateRegistrar": "2015-08-19", + "dateLocalAuthorityReceived": "2020-04-14", + "summary": "Iure eum adipisci nesciunt debitis unde aperiam perspiciatis ut.\nBeatae error modi mollitia odio rem id placeat facilis.\nA molestias assumenda quisquam laborum.", + "informationUsed": "Placeat itaque rem modi quidem voluptatum quisquam consectetur nostrum.\nMollitia delectus suscipit reprehenderit.\nOptio earum ipsam dolorum recusandae.", + "pastOrPresentOrders": "Sint sint non omnis vel aliquid soluta.\nOfficiis numquam veniam cumque dolorem nemo.", "commercialAndIndustrialPurposes": [ { - "uuid": "e17aa8f1-7fc7-4dfc-96cf-a7750ed6cd2a", + "uuid": "ce60bb41-bdb0-4f34-870f-aab0d0e3a645", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { - "uuid": "6c2f64f3-2561-443c-b96f-00282e27887a", + "uuid": "bcb4df08-7903-4954-9953-5e8584941cf3", "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true }, { - "uuid": "984eae4c-fb0e-47fa-8b08-1591f481940d", + "uuid": "cf16ac6a-c4a3-456d-a67f-bac7c86937fb", "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true } ] @@ -36385,121 +42420,99 @@ ], "activityLog": [ { - "uuid": "25dd079a-eb8d-4479-a9fa-dbb35956d64d", + "uuid": "9ad250e1-d744-448b-9f30-8e5e36abe191", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "CUMMERATA VADA", - "timestamp": "2016-07-02" + "user": "HOWELL CHAD", + "timestamp": "2023-10-06" }, { - "uuid": "e17bd699-37c7-415f-93ba-975d2e37f760", - "siteRegistry": true, + "uuid": "633c615d-9e99-4582-8730-b50051cbcb05", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "GOTTLIEB-O'REILLY JAKAYLA", - "timestamp": "2020-02-22" + "user": "HEATHCOTE BERNARDO", + "timestamp": "2017-11-18" }, { - "uuid": "5a198154-b18c-413e-ba16-f387c1d3f3ef", + "uuid": "556e0f1e-0302-4a22-8cf5-f8a0e64cea50", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "NIKOLAUS MAGGIE", - "timestamp": "2015-12-03" + "user": "MOHR DAMION", + "timestamp": "2015-08-07" }, { - "uuid": "8d611865-fb6a-475b-bb99-18e9ab273222", + "uuid": "83c5dd43-384d-45cb-8860-2d893649bef3", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "PAUCEK GARRISON", - "timestamp": "2019-12-25" + "user": "SPORER ROSALINDA", + "timestamp": "2018-05-04" }, { - "uuid": "34033931-e844-414b-bda1-712158024715", - "siteRegistry": true, + "uuid": "0a8ec310-b02f-4528-a307-4a93a13e5235", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "SCHAEFER NIKITA", - "timestamp": "2020-05-27" + "user": "DICKENS PAULA", + "timestamp": "2021-04-27" }, { - "uuid": "3fdf4564-5e21-4fc3-b6d4-0fb467cbf2d4", - "siteRegistry": true, + "uuid": "faa36cd6-e8a3-45e4-beb2-81f5f9b712e6", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "WILDERMAN DANYKA", - "timestamp": "2017-08-20" + "user": "CUMMERATA EMMALEE", + "timestamp": "2020-04-22" }, { - "uuid": "e98d5d79-2d04-4510-b3be-9f20754755d4", + "uuid": "48f97219-caa6-44f5-97ba-b341209ad134", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "KREIGER JERROLD", - "timestamp": "2015-04-20" - }, - { - "uuid": "38b92635-2e3e-46bf-8c1e-9e9f42a2253a", - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "JOHNS FREEMAN", - "timestamp": "2016-06-09" + "user": "JENKINS QUENTIN", + "timestamp": "2023-05-04" }, { - "uuid": "e2d36d08-f4de-481a-8d45-392dc55f846f", + "uuid": "4a1e913a-ae59-46f0-b0ad-97755a6701f0", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "KUB AARON", - "timestamp": "2023-01-14" - }, - { - "uuid": "1dddc984-93e9-4534-8831-103ae17a3191", - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "TOWNE KARL", - "timestamp": "2017-07-23" + "user": "GULGOWSKI ANTHONY", + "timestamp": "2022-09-13" } ], "associatedSites": [ { - "uuid": "ec3186a4-9ff5-4ada-89c1-9947a14290b1", - "dateNoted": "2014-03-18", - "notes": "", - "parcelID": "15538", - "siteID": "18934", - "siteRegistry": true - }, - { - "uuid": "537a5538-7a9f-4e93-8a79-8cafb4f95595", - "dateNoted": "2021-03-01", + "uuid": "0ecc29ab-79bc-4311-82cf-329ab86fbcb3", + "dateNoted": "2021-12-22", "notes": "", - "parcelID": "19504", - "siteID": "20193", - "siteRegistry": true + "parcelID": "17110", + "siteID": "20172", + "siteRegistry": false } ] }, { - "uuid": "aae97e76-f379-4ba0-8a3d-57a5931f2772", - "siteID": 19113, - "address": "83168 Weissnat Wall", - "latitude": 58.0997, - "longitude": -134.8261, - "lastUpdated": "2022-03-19", - "city": "Laishashire", + "uuid": "6098ae18-fe2b-4078-a3c3-1960ca478643", + "siteID": 19298, + "address": "2382 Ervin Harbor", + "latitude": 52.6931, + "longitude": -120.16, + "lastUpdated": "2016-11-26", + "city": "New Leonel", "region": "Kootenay", - "victoriaFile": "26250-20/1294", + "victoriaFile": "26250-20/14562", "regionalFile": "N/A", "parcelIDs": [ - 6868969, - 9242672, - 7179145, - 3175556, - 9446519 + 4745497, + 8203123, + 295484, + 5608317, + 8796362 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "f256cbf2-787c-4630-9e45-00649e8a9b73", - "createdAt": "2018-06-22", - "completed": "2019-06-08", - "initiated": "2020-05-11", - "ministryContact": "HEANEY LEILA", + "uuid": "ba587493-94e4-4104-89a3-145dcd8cc272", + "createdAt": "2018-07-13", + "completed": "2017-01-19", + "initiated": "2018-08-29", + "ministryContact": "PACOCHA CHRIS", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -36508,26 +42521,38 @@ ], "notationParticipants": [ { - "uuid": "101991fa-47f5-4a52-8b81-9cc4dd224165", + "uuid": "91904692-a717-4425-ab12-3373d54419a7", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "de8a4006-8af4-47f2-9c3d-d62c3e7c97de", - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "18b5e249-d4a5-4dac-a154-e0e6d8ccdbe1", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true + }, + { + "uuid": "d7ac5a45-3180-4cc3-aac0-e89a626e63f4", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "uuid": "1940ae85-d0ca-496a-a15b-a7054deb90fd", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true } ], "siteRegistry": false }, { - "uuid": "75f13ddd-7892-4f2b-ad54-6fe743d3cfab", - "createdAt": "2021-09-12", - "completed": "2014-09-07", - "initiated": "2017-03-08", - "ministryContact": "DOUGLAS GUNNAR", + "uuid": "fb0e4bc5-6bca-43df-95bd-036bbd4b7f08", + "createdAt": "2019-04-10", + "completed": "2016-12-15", + "initiated": "2015-01-05", + "ministryContact": "EMARD HESTER", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -36536,38 +42561,44 @@ ], "notationParticipants": [ { - "uuid": "604f9e2e-c97c-4555-8659-cf2eb2bc20de", + "uuid": "ed2e01bd-6a25-4812-9f7b-5bf47f9bbe51", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true + "role": "SUBMITTED BY", + "siteRegistry": false }, { - "uuid": "96ead0c2-84d3-469f-b42c-f63423befc50", + "uuid": "63839783-5cad-4208-b8fb-0d7073212522", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "d19d2135-95d2-490a-9c32-868177dee9e6", + "uuid": "98c70715-0ba7-4149-bdf3-64da1d758dc1", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "13390f2b-4220-40a5-8623-9d708db82a88", + "uuid": "e528c0cb-5da7-4360-93d3-b48ec8bd260e", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false + }, + { + "uuid": "9792a04c-999c-464b-b56b-56b9dadd40b5", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false } ], "siteRegistry": true }, { - "uuid": "a259ee03-80a6-42b3-b4a9-5bde14df0699", - "createdAt": "2015-06-25", - "completed": "2021-01-26", - "initiated": "2023-02-05", - "ministryContact": "BROWN EDDIE", + "uuid": "66cf6720-39c4-410b-9457-c914064beb1c", + "createdAt": "2018-04-05", + "completed": "2020-05-31", + "initiated": "2014-02-04", + "ministryContact": "HETTINGER SISTER", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -36576,32 +42607,32 @@ ], "notationParticipants": [ { - "uuid": "e47f2d71-a1eb-4075-bab0-10f213c646ea", + "uuid": "95ce08f3-dbc5-4511-9afc-2d1d1ebb1e88", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true }, { - "uuid": "799420fe-1814-4588-86da-a0f4d527a462", + "uuid": "d21f6ec0-1035-4004-9a43-714406ef7a59", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "5e00faf8-cfe8-4a96-bb1d-cbab7a3e1781", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "uuid": "502829b0-48ef-4814-8a98-f78216a067b8", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": false } ], "siteRegistry": false }, { - "uuid": "74b1854d-a2b7-4901-9018-54fcd107406a", - "createdAt": "2016-08-15", - "completed": "2017-09-02", - "initiated": "2019-02-24", - "ministryContact": "FLATLEY PINKIE", + "uuid": "53955415-6980-419c-b512-af43e8eda1cf", + "createdAt": "2017-11-05", + "completed": "2015-04-07", + "initiated": "2019-05-18", + "ministryContact": "PAUCEK IMANI", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -36610,44 +42641,32 @@ ], "notationParticipants": [ { - "uuid": "23c387d2-e85f-4819-964a-045f48116fab", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "uuid": "e4b859bb-d6a1-4c50-9730-3dcd60c300a5", - "name": "SHELL CANADA PRODUCTS", + "uuid": "91835cbd-9f57-48ef-b3cb-f0d0d3568217", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false }, { - "uuid": "6e7244c6-bf6d-4fef-ae22-9d16dcfb6c04", - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "uuid": "1e787926-0e58-4cb1-97d5-634474eeb25d", - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "uuid": "421abdd8-d480-4c64-b137-6225cade096a", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", "siteRegistry": false }, { - "uuid": "7b0d31c9-fe74-426b-9f81-05f3f8d06205", + "uuid": "87e04c56-26b8-4821-9ae3-9916e963a879", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false + "role": "REQUESTED BY", + "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "1982e718-cc72-4c07-afdc-0a2f9f400c6e", - "createdAt": "2017-06-06", - "completed": "2017-02-04", - "initiated": "2017-04-17", - "ministryContact": "VANDERVORT CHARLES", + "uuid": "8510c2a3-b93f-47ae-a05a-a340e8b50189", + "createdAt": "2021-11-14", + "completed": "2022-04-13", + "initiated": "2014-10-07", + "ministryContact": "CHRISTIANSEN KASANDRA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -36656,16 +42675,34 @@ ], "notationParticipants": [ { - "uuid": "5bd5edb8-8da6-4658-b919-8deda16bb210", + "uuid": "1e620095-6b41-49c8-b740-358e4b70156b", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "9b621a81-c807-4ed4-beca-5a9d70413427", + "uuid": "90f2c4db-b469-4053-a2ed-0bd3c566bb1a", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "9150df81-550b-4dd9-8d9f-671a2b4c97ad", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true + }, + { + "uuid": "9a6ead00-959b-4fc3-9260-ef3ff5442665", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "a2fc7364-2d38-4569-89e1-ceab6d0ecb93", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false } ], "siteRegistry": true @@ -36673,266 +42710,321 @@ ], "participants": [ { - "uuid": "06dda0fd-dd94-4088-b9cc-30721656a977", - "name": "SHELL CANADA PRODUCTS", - "endDate": "2021-05-03", - "startDate": "2014-10-22", + "uuid": "34b062c7-e888-48b7-ba96-9fad79357d2d", + "name": "IPSUM", + "endDate": "2020-04-07", + "startDate": "2021-03-19", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "7d032f08-208d-4341-9a18-0b0b8c6486da", + "uuid": "fb444cc1-0d7f-4ee5-9c74-2893b1524eea", "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2021-10-25", - "startDate": "2017-03-20", + "endDate": "2017-07-13", + "startDate": "2023-04-11", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": false }, { - "uuid": "c2762468-5156-4c3d-8d85-1c4ec4ff9801", - "name": "AMET, DOLOR SIT", - "endDate": "2018-08-07", - "startDate": "2014-02-18", + "uuid": "95ecf38d-8620-4077-a3af-a1a1c4903518", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2019-05-24", + "startDate": "2016-03-20", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "6db852ef-68bc-4ea5-8b28-4213516fd13f", - "name": "AMET, DOLOR SIT", - "endDate": "2015-02-14", - "startDate": "2018-06-13", + "uuid": "62371078-6caa-4938-9a4f-3ea8f481f77e", + "name": "IPSUM", + "endDate": "2019-12-29", + "startDate": "2013-12-22", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": true } ], - "suspectLandUses": [ + "documents": [ + { + "uuid": "1aa1511b-68c5-41e4-bd58-2b2894a3aeeb", + "siteRegistry": false, + "documentDate": "2020-08-07", + "receivedDate": "2015-03-25", + "uploadedDate": "2021-07-03", + "title": "Summary of Site Conditions, 1537 W 41st Avenue, Vancouver", + "participants": [ + { + "uuid": "805c259d-fa08-49b9-b349-e07dd7d61477", + "name": "IPSUM", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "bb7e96c3-c336-4bed-86b2-240930d28948", + "name": "IPSUM", + "siteRegistry": false, + "role": "AUTHOR" + } + ] + }, + { + "uuid": "0df5e8bd-56dd-41d7-b3e5-69d0784dc2ff", + "siteRegistry": false, + "documentDate": "2021-08-26", + "receivedDate": "2014-11-18", + "uploadedDate": "2021-07-13", + "title": "Summary of Site Conditions, 1537 W 41st Avenue, Vancouver", + "participants": [ + { + "uuid": "d5a5c444-ddf0-4a20-95ec-78131c0ba499", + "name": "IPSUM", + "siteRegistry": true, + "role": "AUTHOR" + } + ] + }, { - "uuid": "1cfd277e-001f-4eaa-a7f3-2e9fac1cdde5", + "uuid": "ba264125-03bf-418a-a712-5995f9f4dda5", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-04-17 (described on Site Profile dated 2021-04-17)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "documentDate": "2021-06-28", + "receivedDate": "2017-06-05", + "uploadedDate": "2016-07-04", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "a0dd6944-72f8-40e0-a13d-66ba03b0e0d3", + "name": "IPSUM", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "1831586b-5924-4cb8-ad08-611da25e2fbc", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": true, + "role": "AUTHOR" + } + ] + } + ], + "suspectLandUses": [ + { + "uuid": "765c1eac-c71b-4d3c-abe1-41e1ad7e7008", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2014-11-03 (described on Site Profile dated 2014-11-03)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "uuid": "768558fe-6d16-41f4-b342-08923cbcd38c", + "uuid": "3a34bdc6-8d0f-4036-b301-bea83ec322bd", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-09-30 (described on Site Profile dated 2021-09-30)", + "notes": "INSERTED FOR SITE PROFILE DATED 2014-09-12 (described on Site Profile dated 2014-09-12)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "uuid": "7ec1a23b-554a-4e27-828e-056c8652bcf3", + "uuid": "8d1bb0b5-ce27-419c-a5b3-83bb9b3f4326", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-11-20 (described on Site Profile dated 2021-11-20)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "notes": "INSERTED FOR SITE PROFILE DATED 2018-12-09 (described on Site Profile dated 2018-12-09)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "uuid": "39c7a36a-a1ae-40bf-93df-7a397a441569", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2017-01-14 (described on Site Profile dated 2017-01-14)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], "parcelDescriptions": [ { - "uuid": "4001bcf0-8a3e-418f-b0ef-9216c07a0206", + "uuid": "c3dfb750-5299-46fa-9829-b37500355887", "siteRegistry": false, - "dateNoted": "2018-10-04", - "parcelID": "20591", - "crownLandUsePIN": "20381", - "crownLandFileNumber": "20149", - "landDescription": "LOT 4 OF LOT 5 BLOCK 5 DISTRICT LOT 1 PLAN 3467" + "dateNoted": "2018-07-13", + "parcelID": "19221", + "crownLandUsePIN": "15359", + "crownLandFileNumber": "15831", + "landDescription": "LOT 2 OF LOT 1 BLOCK 4 DISTRICT LOT 2 PLAN 9693" + }, + { + "uuid": "0062b829-4900-47ff-b8d0-39daa2cdab98", + "siteRegistry": false, + "dateNoted": "2020-12-13", + "parcelID": "18623", + "crownLandUsePIN": "16977", + "crownLandFileNumber": "15278", + "landDescription": "LOT 4 OF LOT 3 BLOCK 5 DISTRICT LOT 1 PLAN 3639" }, { - "uuid": "512236af-5962-4685-ab55-c4f2858ba646", + "uuid": "7590ca19-135f-43c6-a8d9-e8af40f040cf", "siteRegistry": true, - "dateNoted": "2020-01-02", - "parcelID": "16362", - "crownLandUsePIN": "17099", - "crownLandFileNumber": "16721", - "landDescription": "LOT 5 OF LOT 5 BLOCK 4 DISTRICT LOT 5 PLAN 5786" + "dateNoted": "2017-10-10", + "parcelID": "19197", + "crownLandUsePIN": "16499", + "crownLandFileNumber": "15613", + "landDescription": "LOT 4 OF LOT 4 BLOCK 5 DISTRICT LOT 4 PLAN 7278" }, { - "uuid": "a844388f-4b2a-4dd9-98e1-c8348d9f3441", + "uuid": "692dc7bf-fbf1-4abf-ae48-06db76f7baad", "siteRegistry": false, - "dateNoted": "2020-07-06", - "parcelID": "16491", - "crownLandUsePIN": "16896", - "crownLandFileNumber": "16677", - "landDescription": "LOT 2 OF LOT 2 BLOCK 5 DISTRICT LOT 1 PLAN 9461" + "dateNoted": "2017-11-08", + "parcelID": "17086", + "crownLandUsePIN": "19748", + "crownLandFileNumber": "20618", + "landDescription": "LOT 5 OF LOT 5 BLOCK 2 DISTRICT LOT 2 PLAN 6722" + }, + { + "uuid": "b4e1381a-7f53-4edd-979f-6ad067b4a016", + "siteRegistry": false, + "dateNoted": "2021-09-27", + "parcelID": "16258", + "crownLandUsePIN": "18178", + "crownLandFileNumber": "15614", + "landDescription": "LOT 2 OF LOT 1 BLOCK 2 DISTRICT LOT 2 PLAN 6410" } ], "siteDisclosures": [ { - "uuid": "dc5f24a9-48a2-4ca4-b85a-93404d4e5324", + "uuid": "2307124d-a146-4e10-bcc0-43f950d75c11", "siteRegistry": false, - "dateReceived": "2018-12-02", - "dateCompleted": "2021-08-01", - "dateEntered": "2017-03-26", - "dateRegistrar": "2022-07-16", - "dateLocalAuthorityReceived": "2014-09-25", - "summary": "Nam recusandae id iure nostrum labore quis minima.\nAliquid molestias quod cumque.\nExcepturi blanditiis rem tenetur qui quasi.", - "informationUsed": "Ea at aperiam ex architecto esse.\nDucimus deserunt officia aliquid ea nemo dolores voluptatum nihil vitae.\nVoluptate eligendi ab.", - "pastOrPresentOrders": "Illo consequuntur corrupti qui dicta qui.\nMaiores aperiam officia at sit fugit eaque expedita eaque.\nQuos libero maxime exercitationem.", + "dateReceived": "2018-08-31", + "dateCompleted": "2016-12-17", + "dateEntered": "2013-12-19", + "dateRegistrar": "2018-08-15", + "dateLocalAuthorityReceived": "2022-10-16", + "summary": "Quo ipsa explicabo ex iure.", + "informationUsed": "Ipsum dolorum non.\nError adipisci asperiores perferendis sed quibusdam unde.\nError alias optio repudiandae quae.", + "pastOrPresentOrders": "Illo magnam asperiores ipsum facere vitae porro animi.", "commercialAndIndustrialPurposes": [ { - "uuid": "c2fcb952-7d26-4020-b163-a5ad7535d631", - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true - }, - { - "uuid": "d9719927-d8c7-49e5-8209-4a13d24e2a2d", - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false - }, - { - "uuid": "8a447d1f-778f-43c2-b985-3a4641dbc0f5", + "uuid": "9b3a39aa-f826-42ae-823d-921bb2696cdd", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true - } - ] - }, - { - "uuid": "e5666dd6-703d-4ed6-8674-4d87dfa9a61f", - "siteRegistry": true, - "dateReceived": "2021-12-27", - "dateCompleted": "2015-07-07", - "dateEntered": "2018-03-11", - "dateRegistrar": "2016-08-05", - "dateLocalAuthorityReceived": "2018-08-26", - "summary": "Eos quos aspernatur quod voluptate ullam sequi nesciunt.", - "informationUsed": "Ducimus nisi possimus sint architecto libero hic.\nOfficia necessitatibus ex reiciendis blanditiis earum quam aliquid fuga.\nFugit dolorem omnis quidem vitae quam reiciendis beatae recusandae.\nId voluptates eum ex dignissimos nam accusantium.", - "pastOrPresentOrders": "Repellendus aliquid sit quam voluptate veritatis id.", - "commercialAndIndustrialPurposes": [ - { - "uuid": "2b2f4121-86e2-4728-b359-93e85b940ffc", - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "2ce75627-ed77-4309-ad4c-e94d4166418d", - "scheduleReference": "F1*", + "uuid": "c2c32000-abe5-4016-9f6d-8fd3087f9a60", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, { - "uuid": "a793cf12-3c34-483c-a560-958b26c94e7a", + "uuid": "3eb5c728-0257-4bc0-80f9-50c31de17d74", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "838d441f-b5a4-4a26-a880-06d8bfd8e5fd", + "uuid": "75853753-d2f8-4721-81a5-ab85a73d04b7", "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true } ] } ], "activityLog": [ { - "uuid": "2fac60e7-1560-4c0a-926a-be67ec4b8546", - "siteRegistry": true, + "uuid": "ab235881-2036-4133-8ae1-fea5fd11932e", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "TREUTEL MAEVE", - "timestamp": "2023-04-25" + "user": "ZIEMANN SARAI", + "timestamp": "2017-06-30" }, { - "uuid": "872ba7e9-4e53-456d-829d-1eb780f985a9", - "siteRegistry": true, + "uuid": "023a4c27-2b07-4183-9562-581edf20fa2f", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "KEEBLER EMMALEE", - "timestamp": "2015-12-12" + "user": "BREITENBERG KIRK", + "timestamp": "2014-12-05" }, { - "uuid": "4af25031-5070-45ed-b078-a2c54e89d35a", - "siteRegistry": false, + "uuid": "f0b39a65-1822-47a2-aa35-26e7329371f4", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "WATERS DEMOND", - "timestamp": "2021-02-16" + "user": "STROSIN NAOMIE", + "timestamp": "2015-07-18" }, { - "uuid": "6d0fe9ec-c1cb-4c00-a13c-5574a6c708bf", + "uuid": "6a7520b9-139a-4e18-bf6f-0ea21dff20d5", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "GIBSON-FERRY SHANNY", - "timestamp": "2016-02-02" + "user": "WYMAN ELTA", + "timestamp": "2021-01-22" }, { - "uuid": "99c85ecb-95b2-44a7-9a94-9013c75c13c6", - "siteRegistry": false, + "uuid": "2b81a899-f848-4b98-9106-98a5dd4fad5f", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "SCHILLER-MERTZ MARJOLAINE", - "timestamp": "2019-12-22" + "user": "KUVALIS BERNADINE", + "timestamp": "2019-07-21" }, { - "uuid": "20f4db95-ef33-4169-b8f7-c283ae24f8e1", + "uuid": "90f10486-4a28-402f-b552-de41d82c2511", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "WEHNER MYRTLE", - "timestamp": "2014-07-07" + "user": "CRIST MACKENZIE", + "timestamp": "2018-03-02" }, { - "uuid": "894e7684-54c5-490d-bd85-e96a066bd252", + "uuid": "15100787-be37-4035-8ab0-b9d0c6dab140", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "SCHMITT DEAN", - "timestamp": "2021-03-04" - }, - { - "uuid": "52777bce-b538-444b-9975-2ec4a1898530", - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "VOLKMAN BRANDO", - "timestamp": "2023-03-05" + "user": "O'REILLY ETHELYN", + "timestamp": "2018-11-12" } ], "associatedSites": [ { - "uuid": "b4f3af9f-35ae-4935-bc05-23fd66c6bf75", - "dateNoted": "2022-05-31", + "uuid": "46a5b288-0416-4412-8b64-06712e761ce8", + "dateNoted": "2021-06-24", + "notes": "", + "parcelID": "17040", + "siteID": "16978", + "siteRegistry": false + }, + { + "uuid": "52e43bc4-84aa-48a0-b688-3f23eba07a31", + "dateNoted": "2023-09-18", "notes": "", - "parcelID": "20613", - "siteID": "20112", + "parcelID": "15403", + "siteID": "17471", "siteRegistry": true } ] }, { - "uuid": "c5237ad0-436e-4459-959c-37c1608bdae0", - "siteID": 15209, - "address": "36606 Amy Island", - "latitude": 52.9889, - "longitude": -128.3397, - "lastUpdated": "2018-05-12", - "city": "Krisville", - "region": "Thompson-Okanagan", - "victoriaFile": "26250-20/1049", + "uuid": "ffb36863-ba8b-4798-bc4b-fbb852708cd8", + "siteID": 18748, + "address": "3043 Lauriane Field", + "latitude": 57.6247, + "longitude": -138.8048, + "lastUpdated": "2017-10-07", + "city": "Tillmanton", + "region": "Kootenay", + "victoriaFile": "26250-20/9845", "regionalFile": "N/A", "parcelIDs": [ - 1751221, - 5825869, - 7265461, - 242820, - 337566 + 4852447, + 5406235, + 7721210, + 8702090, + 2299852 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "9dc6f032-803d-47ce-9fa1-877efeb5e5c3", - "createdAt": "2020-06-21", - "completed": "2014-09-20", - "initiated": "2017-06-09", - "ministryContact": "BORER HORTENSE", + "uuid": "1896dc49-9873-43e2-bc92-41ecb3de79c2", + "createdAt": "2021-04-21", + "completed": "2014-04-27", + "initiated": "2021-01-01", + "ministryContact": "DUBUQUE GRACIE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -36941,66 +43033,38 @@ ], "notationParticipants": [ { - "uuid": "6278a43b-0547-4a94-9128-97bf2c019b75", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "uuid": "4c36dec4-88a5-4526-9639-6316a43146de", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": false }, { - "uuid": "7959bea5-5e10-4e3f-ba66-d8ce3063fe9a", + "uuid": "e7e47665-8644-4d10-8eba-71a19c217b9d", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "uuid": "008fd712-4925-4dfd-9644-7cc54b351c42", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", "siteRegistry": false }, { - "uuid": "00539d00-5140-453d-bf59-b755fd69e238", + "uuid": "082facd3-6094-4719-9639-550812df020a", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - } - ], - "siteRegistry": false - }, - { - "uuid": "a16d8259-11c0-4e53-b2f0-243cd123e6b6", - "createdAt": "2017-06-29", - "completed": "2017-11-15", - "initiated": "2023-05-22", - "ministryContact": "PARKER QUINTEN", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "uuid": "cd0c23ab-3caf-42b1-a227-7a3f4759c2e6", - "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "d42a4dfb-79e3-4285-ac90-00b19a2678e6", + "uuid": "42887b9f-2202-4927-9d2f-8f72abf48736", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false + "role": "SUBMITTED BY", + "siteRegistry": true } ], "siteRegistry": true }, { - "uuid": "de33cd5a-9b20-4942-9ad2-210e7ab95f0d", - "createdAt": "2023-02-17", - "completed": "2023-06-18", - "initiated": "2016-08-10", - "ministryContact": "SCHIMMEL CARMEN", + "uuid": "78903c7f-9e4b-4681-8dde-a4286dc75aa2", + "createdAt": "2020-02-25", + "completed": "2022-07-04", + "initiated": "2014-05-14", + "ministryContact": "BLOCK NORBERT", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -37009,44 +43073,26 @@ ], "notationParticipants": [ { - "uuid": "74f5237d-cc56-4158-97f5-381625b1a313", - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "uuid": "db9a8d35-3f3c-4c55-bc38-db9c9f318551", + "uuid": "dedb447a-a7cb-4a8d-a4ee-653d8c8e5f05", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "uuid": "a8c18bc3-19b1-4bd6-9328-38a14fe98aa3", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true }, { - "uuid": "b29f9b71-da1d-44ee-aaf8-5e29b3d70b5e", + "uuid": "64005112-0eee-4db9-9d55-318760ccfbe4", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false - }, - { - "uuid": "f01c6bcb-b721-491b-a887-58c987bbc921", - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "28835d31-3aa4-4130-bdf4-7b5db69f0166", - "createdAt": "2015-06-17", - "completed": "2022-09-23", - "initiated": "2015-01-21", - "ministryContact": "STROMAN YVETTE", + "uuid": "7cc5662b-ac9e-4f24-bf5c-eaff922304dd", + "createdAt": "2018-09-22", + "completed": "2015-10-27", + "initiated": "2016-01-11", + "ministryContact": "MORISSETTE GENESIS", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -37055,34 +43101,34 @@ ], "notationParticipants": [ { - "uuid": "7100c6b2-d97c-4716-a7ba-296177eee937", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "uuid": "bcb8064f-c179-409f-b1f5-51d3ea052da8", + "uuid": "663b48ad-3f9f-4ebb-8773-c9aacad5633e", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "b3314ba1-ebfa-46bd-9c8e-895e58f76013", + "uuid": "befa7d08-5b15-4bff-a120-488cea1709ac", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false }, { - "uuid": "457b0552-c3b9-4e5e-80be-260b656b02e9", + "uuid": "223a21c0-8ada-4645-95b7-8c2765745fb4", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true }, { - "uuid": "f0b608b6-4c5c-4889-bbb9-b26ad08d644a", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "uuid": "8e84c7fb-71e6-455d-9c20-ff441a017380", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": true + }, + { + "uuid": "8e281e96-4201-49f0-ad63-70a3e3a0da46", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false } ], "siteRegistry": true @@ -37090,21 +43136,21 @@ ], "participants": [ { - "uuid": "468c3736-1e8d-45b0-8121-b0d0ee332139", - "name": "IPSUM", - "endDate": "2018-08-16", - "startDate": "2017-10-07", + "uuid": "b9148de5-6905-49a9-9a49-7b8168feddca", + "name": "AMET, DOLOR SIT", + "endDate": "2020-10-19", + "startDate": "2021-11-11", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "02f7ddd0-bc84-4742-b658-92d181389b62", + "uuid": "7214b7bd-0c29-49ed-8f6f-9e15e41b51f2", "name": "AMET, DOLOR SIT", - "endDate": "2015-07-18", - "startDate": "2016-01-29", + "endDate": "2021-04-04", + "startDate": "2017-05-27", "notes": "", "roles": [ "ORGANIZATION" @@ -37112,171 +43158,303 @@ "siteRegistry": false } ], + "documents": [ + { + "uuid": "5d4b38f9-6c21-49d7-b171-45edf08bbeab", + "siteRegistry": false, + "documentDate": "2015-04-18", + "receivedDate": "2023-07-18", + "uploadedDate": "2021-03-19", + "title": "Preliminary Site Investigation, Detailed Site Investigation and Remedial Plan for the Management Area adjacent to the Shell Site at 1503 West 41st Ave", + "participants": [ + { + "uuid": "983fc023-f3a1-41cc-80e3-dd203c65ffed", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "8a284d36-de98-4f0e-ae43-d647238a3a25", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": true, + "role": "AUTHOR" + } + ] + }, + { + "uuid": "7bdff15d-8dd7-41bc-b12e-04af34c07547", + "siteRegistry": true, + "documentDate": "2021-03-16", + "receivedDate": "2015-06-21", + "uploadedDate": "2015-10-30", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "f6fb50a3-1354-4d6d-b3cf-73a33fffdd47", + "name": "IPSUM", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "1a507f90-1a41-42ba-8aed-3fc9a2f75312", + "name": "AMET, DOLOR SIT", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "e0e89b43-8dde-40a1-9262-635521a8cd9c", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": false, + "role": "AUTHOR" + } + ] + }, + { + "uuid": "d33a5c3b-47ae-4a19-9e91-2adf194860ef", + "siteRegistry": true, + "documentDate": "2016-06-20", + "receivedDate": "2016-10-24", + "uploadedDate": "2016-04-26", + "title": "Preliminary Site Investigation, Detailed Site Investigation and Remedial Plan for the Management Area adjacent to the Shell Site at 1503 West 41st Ave", + "participants": [ + { + "uuid": "4de52369-086e-427b-a6a7-09d3298aebca", + "name": "IPSUM", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "43ce670a-da66-41ea-8d60-d9486511811c", + "name": "AMET, DOLOR SIT", + "siteRegistry": false, + "role": "AUTHOR" + } + ] + } + ], "suspectLandUses": [ { - "uuid": "921c09e0-a1f2-4023-9079-2c23a7c13091", + "uuid": "f66dfc24-dcb2-49ce-b442-31b6ffc7d75d", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-08-05 (described on Site Profile dated 2017-08-05)", + "notes": "INSERTED FOR SITE PROFILE DATED 2021-08-21 (described on Site Profile dated 2021-08-21)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "uuid": "5a3afd8b-5b8b-4465-bb46-27a7394f072e", + "uuid": "afdc9d39-e360-41a9-b1d4-317a1cb5f098", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-09-06 (described on Site Profile dated 2019-09-06)", + "notes": "INSERTED FOR SITE PROFILE DATED 2020-03-05 (described on Site Profile dated 2020-03-05)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "uuid": "262ee7b3-f005-47bd-8a22-a8e6e7fb9ce8", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2023-02-19 (described on Site Profile dated 2023-02-19)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "uuid": "7a8d0f6e-0f4a-469f-a20d-5c65b2cdb152", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2020-03-22 (described on Site Profile dated 2020-03-22)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "uuid": "3b7c52df-facd-40d6-ae65-75dd80361e2a", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2014-08-17 (described on Site Profile dated 2014-08-17)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], "parcelDescriptions": [ { - "uuid": "09517388-c7e1-4937-b763-4036412858ab", + "uuid": "45b882f0-40a2-4b07-a224-7d221a6eb8ab", + "siteRegistry": false, + "dateNoted": "2016-04-10", + "parcelID": "20742", + "crownLandUsePIN": "17800", + "crownLandFileNumber": "18114", + "landDescription": "LOT 1 OF LOT 4 BLOCK 4 DISTRICT LOT 2 PLAN 8822" + }, + { + "uuid": "2df3d896-d2a6-4323-8478-94890c60acfa", + "siteRegistry": false, + "dateNoted": "2015-08-03", + "parcelID": "16553", + "crownLandUsePIN": "19901", + "crownLandFileNumber": "15779", + "landDescription": "LOT 2 OF LOT 3 BLOCK 1 DISTRICT LOT 4 PLAN 7136" + }, + { + "uuid": "3c861c76-ec30-4bde-a3a3-701ca89c1867", "siteRegistry": true, - "dateNoted": "2022-12-15", - "parcelID": "18600", - "crownLandUsePIN": "16967", - "crownLandFileNumber": "15949", - "landDescription": "LOT 2 OF LOT 4 BLOCK 2 DISTRICT LOT 3 PLAN 6815" + "dateNoted": "2015-04-28", + "parcelID": "16184", + "crownLandUsePIN": "16362", + "crownLandFileNumber": "20616", + "landDescription": "LOT 5 OF LOT 3 BLOCK 4 DISTRICT LOT 1 PLAN 7425" }, { - "uuid": "78bdab88-d9ab-48f8-a046-fefef7b67743", + "uuid": "1ad373a6-0c4b-4bfa-93c0-dbdd5fcc8ca3", "siteRegistry": true, - "dateNoted": "2016-12-25", - "parcelID": "20253", - "crownLandUsePIN": "20532", - "crownLandFileNumber": "17198", - "landDescription": "LOT 3 OF LOT 4 BLOCK 1 DISTRICT LOT 4 PLAN 8894" + "dateNoted": "2023-05-22", + "parcelID": "19462", + "crownLandUsePIN": "17559", + "crownLandFileNumber": "17215", + "landDescription": "LOT 5 OF LOT 4 BLOCK 3 DISTRICT LOT 5 PLAN 9021" } ], "siteDisclosures": [ { - "uuid": "9fc5d0fa-d834-49fc-a126-b6d4e4e2ceea", + "uuid": "7b11c05c-974b-4f6a-95d7-626471a23e34", "siteRegistry": false, - "dateReceived": "2020-05-30", - "dateCompleted": "2022-11-18", - "dateEntered": "2021-08-31", - "dateRegistrar": "2021-03-16", - "dateLocalAuthorityReceived": "2017-11-23", - "summary": "Provident molestias similique commodi.", - "informationUsed": "Aliquid necessitatibus similique praesentium repellat asperiores deleniti.\nNumquam aspernatur doloribus.\nSequi quo a atque.\nRepellendus similique itaque corrupti placeat quos.\nCumque eos cumque soluta occaecati dolorem inventore facere repellendus saepe.", - "pastOrPresentOrders": "Fugiat beatae nulla quod possimus eum blanditiis saepe tempore.\nAssumenda eveniet molestias aut.\nVeniam quam numquam animi eaque nam perferendis molestias.", + "dateReceived": "2022-03-19", + "dateCompleted": "2016-01-27", + "dateEntered": "2018-05-31", + "dateRegistrar": "2022-07-05", + "dateLocalAuthorityReceived": "2019-12-05", + "summary": "Magnam est optio occaecati quod.\nRem nulla modi eaque.", + "informationUsed": "Ducimus ratione laboriosam eligendi quasi hic.\nNulla tempore repellat cumque.\nDignissimos voluptates aut alias.\nNostrum facere hic.", + "pastOrPresentOrders": "Dignissimos blanditiis vero impedit.", "commercialAndIndustrialPurposes": [ { - "uuid": "4c475d51-c3a7-445f-b0f4-27910a206483", + "uuid": "fa1d23dc-8338-4c8a-9ad4-59d9e3783c08", "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "uuid": "640be23f-319e-491c-8f60-10611a13e603", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "uuid": "25a715d3-4d31-4393-945e-d28df615068e", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { - "uuid": "cfcaf67b-b6fc-4336-b96e-372421d135f3", + "uuid": "39be2318-0190-4410-9718-6691ed3f4ad0", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true + } + ] + }, + { + "uuid": "8f5beee5-fea3-41c3-8fdc-8655408e1f76", + "siteRegistry": true, + "dateReceived": "2023-01-14", + "dateCompleted": "2020-03-31", + "dateEntered": "2015-09-24", + "dateRegistrar": "2020-02-05", + "dateLocalAuthorityReceived": "2019-03-30", + "summary": "Quidem omnis maxime alias deleniti molestias alias placeat est.", + "informationUsed": "Possimus rerum error quia vel quo corrupti pariatur voluptatibus laboriosam.\nPariatur sapiente nam nesciunt fuga quos labore officiis.\nAliquam adipisci praesentium facere quidem rem.\nQuod non enim nobis amet.", + "pastOrPresentOrders": "Nesciunt error cumque laborum iusto nisi facilis enim.", + "commercialAndIndustrialPurposes": [ + { + "uuid": "0b944e63-b192-42d3-b7c5-3c123026c756", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false }, { - "uuid": "6a10258b-61c6-4ff9-8fd3-5c0503ef6c3b", + "uuid": "586f145c-a87d-46b1-b1a3-aaa18c2373e3", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true + }, + { + "uuid": "36340de7-cb9d-4047-b9d9-fc7ea4763830", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false } ] } ], "activityLog": [ { - "uuid": "bc61eb32-4050-405f-a8ed-4d4eb0a6e18f", + "uuid": "23096b8c-ae4d-4039-be48-f620dc46d297", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "DOYLE OKEY", - "timestamp": "2021-05-09" + "user": "YUNDT VERONA", + "timestamp": "2020-02-24" }, { - "uuid": "ce2c98ab-c975-4066-a770-cd20dd6af6f3", + "uuid": "d3a3a825-f8da-4043-b41e-c55f3b321279", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "HARRIS BENNETT", - "timestamp": "2021-03-03" + "user": "HERMAN CRAWFORD", + "timestamp": "2017-04-06" }, { - "uuid": "8ae65f37-8450-4081-850e-6f3c3835a9b2", + "uuid": "3b9283f7-abc7-4875-9d90-2a24dd411346", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "BRADTKE LETHA", - "timestamp": "2020-11-11" + "user": "STROSIN DAISHA", + "timestamp": "2013-11-25" }, { - "uuid": "962b28d9-b75e-4684-815b-9df4702146b9", - "siteRegistry": false, + "uuid": "4f321429-dfe1-41b0-88bb-f9cbd31674f4", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "GOYETTE KAREEM", - "timestamp": "2023-08-06" + "user": "RYAN JAY", + "timestamp": "2022-08-26" }, { - "uuid": "dc0b50c3-9e7d-45ae-9a6c-871eb3b05e74", - "siteRegistry": false, + "uuid": "c3731257-a81e-4c00-80c4-a8e811197d6b", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "REICHEL TATE", - "timestamp": "2017-06-03" + "user": "KOEPP ZECHARIAH", + "timestamp": "2017-05-27" }, { - "uuid": "c5aea041-6e78-4568-9875-0a58a60158c7", - "siteRegistry": false, + "uuid": "aa00402e-5cce-4628-b4d6-dd8c08feee1a", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "COLLIER ULICES", - "timestamp": "2018-03-08" + "user": "ABBOTT ORIE", + "timestamp": "2016-08-28" } ], "associatedSites": [ { - "uuid": "93bdef39-3538-4591-8bc3-b3a55f81c7a6", - "dateNoted": "2014-09-17", - "notes": "", - "parcelID": "15698", - "siteID": "20362", - "siteRegistry": true - }, - { - "uuid": "5c8c145c-a857-42e5-904f-8c5875b6a8ba", - "dateNoted": "2017-11-26", + "uuid": "eeb8eb61-fbf3-4552-9ece-243b82dcab5e", + "dateNoted": "2016-07-28", "notes": "", - "parcelID": "18718", - "siteID": "17170", + "parcelID": "16791", + "siteID": "18456", "siteRegistry": true - }, - { - "uuid": "d5e62762-0f01-4c96-93bc-1160bb030d5b", - "dateNoted": "2018-06-07", - "notes": "", - "parcelID": "17682", - "siteID": "17858", - "siteRegistry": false } ] }, { - "uuid": "0fdf44e0-0bb1-4c91-8479-47e4e83e0a21", - "siteID": 19383, - "address": "97800 Jo Well", - "latitude": 54.6669, - "longitude": -119.0725, - "lastUpdated": "2015-02-09", - "city": "Grimesboro", + "uuid": "7b5f8c4c-68e9-4a98-bc08-2a73a184683a", + "siteID": 18435, + "address": "902 Hartmann Villages", + "latitude": 48.0244, + "longitude": -119.3939, + "lastUpdated": "2023-05-18", + "city": "Fort Leannabury", "region": "Thompson-Okanagan", - "victoriaFile": "26250-20/5037", + "victoriaFile": "26250-20/15477", "regionalFile": "N/A", "parcelIDs": [ - 1826886, - 2549586, - 637458, - 2528434, - 3743194 + 5251685, + 4874427, + 9818470, + 6532096, + 8366361 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "da17df99-fdf5-4d7d-9534-c8cd3812928a", - "createdAt": "2021-07-08", - "completed": "2017-06-29", - "initiated": "2016-12-23", - "ministryContact": "ROLFSON DORCAS", + "uuid": "fd02f1d4-5bf3-4ca5-ab02-fc6771b71b13", + "createdAt": "2015-03-05", + "completed": "2019-07-01", + "initiated": "2016-05-19", + "ministryContact": "BOTSFORD WINFIELD", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -37285,38 +43463,66 @@ ], "notationParticipants": [ { - "uuid": "15d468db-dc5b-4203-80ec-40c2d80c7efe", + "uuid": "6180bbb7-3ee6-4a73-8550-9d6200268b92", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true + "role": "REQUESTED BY", + "siteRegistry": false }, { - "uuid": "10c0994b-4554-4479-b457-f7827d250586", - "name": "SHELL CANADA PRODUCTS", + "uuid": "8ed28fce-43ba-4137-ba3b-bceae5af061f", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "3dbf043b-68d4-4fef-a41c-04f76d6aec28", + "uuid": "890eb8f6-9211-43b2-baa4-eb1dfb3bf38b", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "uuid": "07815659-10ee-44ac-80bf-ad59175322ed", + "createdAt": "2020-07-11", + "completed": "2021-12-03", + "initiated": "2017-12-24", + "ministryContact": "REICHERT ADELLE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "uuid": "c7817460-1bbc-40fd-b1bd-cf16361b801c", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "86d586b5-8380-4da5-9b1f-cf8bd01eff08", + "uuid": "6087ce9d-f4a4-41c7-ba8d-9f8774727f72", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false + }, + { + "uuid": "222fd549-178f-4374-8f2b-a8428b17e2dc", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true } ], "siteRegistry": false }, { - "uuid": "31ef23f5-2e41-4416-90ec-2c494c03a1e6", - "createdAt": "2018-03-21", - "completed": "2019-09-15", - "initiated": "2021-11-02", - "ministryContact": "KOSS EILEEN", + "uuid": "06a9ce97-74fc-42bc-a090-8c9ac194041c", + "createdAt": "2019-01-06", + "completed": "2021-10-17", + "initiated": "2019-05-02", + "ministryContact": "HANE BURDETTE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -37325,49 +43531,66 @@ ], "notationParticipants": [ { - "uuid": "149e5b30-cd82-4a7b-b69e-c993067dffac", + "uuid": "2757bb07-c203-4c00-99cb-a45680e68e57", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "0aaf9203-a64a-40e8-a0a8-4241957c93d5", - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "f89caa29-c44d-4857-aa81-7d40c3f4c501", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false + }, + { + "uuid": "800d460f-ac83-45ec-86dc-cb9eac9e3c6c", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true } ], "participants": [ { - "uuid": "770f5898-ceba-4e2b-987d-b76a33195f4c", - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2022-01-21", - "startDate": "2015-02-08", + "uuid": "00b1581d-4217-417c-bcf7-305ce42e561b", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2015-06-07", + "startDate": "2017-08-22", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "c0d21534-594c-4bdf-90c3-3b43b870db7f", - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2018-02-13", - "startDate": "2018-10-18", + "uuid": "845f989f-f742-4a13-8b6b-a825d612670e", + "name": "AMET, DOLOR SIT", + "endDate": "2021-02-08", + "startDate": "2020-09-30", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "fb3af985-d235-4443-ac24-3af2323d1641", + "uuid": "433b98d0-8688-4173-b599-073730a9b7d8", "name": "IPSUM", - "endDate": "2016-12-11", - "startDate": "2013-10-30", + "endDate": "2016-08-02", + "startDate": "2017-07-20", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "uuid": "58cc0aa9-c0f7-4491-9330-8f6a52ea8fa1", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2021-09-10", + "startDate": "2023-06-12", "notes": "", "roles": [ "EMPLOYEE" @@ -37375,10 +43598,10 @@ "siteRegistry": false }, { - "uuid": "1a4335d8-4469-4357-bcae-27b0faa3b03e", + "uuid": "f113b309-8902-4d64-913d-5c773b138c2f", "name": "SHELL CANADA PRODUCTS", - "endDate": "2018-07-26", - "startDate": "2022-04-17", + "endDate": "2021-10-29", + "startDate": "2014-12-13", "notes": "", "roles": [ "EMPLOYEE" @@ -37386,198 +43609,293 @@ "siteRegistry": true } ], - "suspectLandUses": [ + "documents": [ { - "uuid": "79737abd-a68f-4187-b58d-0d89251fbabb", + "uuid": "338b51d8-626e-406e-a729-231d51199094", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-09-08 (described on Site Profile dated 2021-09-08)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "documentDate": "2015-08-04", + "receivedDate": "2017-01-05", + "uploadedDate": "2017-06-22", + "title": "Summary of Site Conditions, 1537 W 41st Avenue, Vancouver", + "participants": [ + { + "uuid": "c235b50f-60b7-460f-be86-32366efec1d4", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "b592d9d6-427f-47f4-b6d7-ec9cc999b17d", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "147e8130-ec94-431e-891d-b12f94f86687", + "name": "AMET, DOLOR SIT", + "siteRegistry": false, + "role": "AUTHOR" + } + ] }, { - "uuid": "65609a2e-4279-4bf6-9a6d-63a1e3399c0d", + "uuid": "55f76c44-0246-4d92-8c5b-b511a4328246", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-10-07 (described on Site Profile dated 2018-10-07)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "documentDate": "2016-12-16", + "receivedDate": "2022-08-02", + "uploadedDate": "2022-07-12", + "title": "Summary of Site Conditions, 1537 W 41st Avenue, Vancouver", + "participants": [ + { + "uuid": "81a80798-71d6-4ebe-a6a3-561b51b85dd1", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "eb56b8b0-dc4d-4882-9155-6f549af499e4", + "name": "AMET, DOLOR SIT", + "siteRegistry": false, + "role": "AUTHOR" + } + ] }, { - "uuid": "b0795ece-52a0-4410-9eb4-0df8d0f6a973", + "uuid": "77a2d7f8-5206-44c8-8408-388bc4695602", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-05-17 (described on Site Profile dated 2016-05-17)", + "documentDate": "2014-04-28", + "receivedDate": "2019-02-23", + "uploadedDate": "2018-01-12", + "title": "Summary of Site Conditions, 1537 W 41st Avenue, Vancouver", + "participants": [ + { + "uuid": "18cd184d-c6d4-457a-98d4-cc7e954495cb", + "name": "AMET, DOLOR SIT", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "ec1c1209-ccbe-4a30-bfdb-6c3490757b4f", + "name": "IPSUM", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "d9b58c79-39b6-4ff6-ae34-1b74ff1ac729", + "name": "AMET, DOLOR SIT", + "siteRegistry": true, + "role": "AUTHOR" + } + ] + } + ], + "suspectLandUses": [ + { + "uuid": "4376ce7f-c7bf-4711-b1a7-d905b889856f", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2014-12-22 (described on Site Profile dated 2014-12-22)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "uuid": "67b54272-05af-4e3e-a5ab-d81998e462aa", - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-03-21 (described on Site Profile dated 2019-03-21)", + "uuid": "1289f0cf-64ad-4215-894e-a28d8458581e", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2018-03-01 (described on Site Profile dated 2018-03-01)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "uuid": "5e1e415f-9193-41de-a5d3-41d258d2cf3d", + "uuid": "fea85206-c260-4201-9d2b-7c8f88c87fc1", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2013-11-09 (described on Site Profile dated 2013-11-09)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "notes": "INSERTED FOR SITE PROFILE DATED 2022-03-24 (described on Site Profile dated 2022-03-24)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], "parcelDescriptions": [ { - "uuid": "8689179b-7884-45f8-8a53-74563f9732cd", + "uuid": "3dcd090a-78a9-46c5-b562-6c14361c505f", "siteRegistry": true, - "dateNoted": "2016-03-31", - "parcelID": "17279", - "crownLandUsePIN": "20442", - "crownLandFileNumber": "18825", - "landDescription": "LOT 3 OF LOT 2 BLOCK 3 DISTRICT LOT 5 PLAN 9523" - }, - { - "uuid": "e269595d-7061-455d-9fad-9b3686144443", - "siteRegistry": false, - "dateNoted": "2021-03-31", - "parcelID": "17068", - "crownLandUsePIN": "16910", - "crownLandFileNumber": "17260", - "landDescription": "LOT 4 OF LOT 4 BLOCK 2 DISTRICT LOT 1 PLAN 6395" + "dateNoted": "2022-09-08", + "parcelID": "16473", + "crownLandUsePIN": "18798", + "crownLandFileNumber": "15333", + "landDescription": "LOT 2 OF LOT 5 BLOCK 2 DISTRICT LOT 1 PLAN 7496" }, { - "uuid": "b2e0af8c-f3f4-48a5-8862-fdc1ad8ea503", + "uuid": "d1a2cd45-099b-4a61-a4de-c1b697960eeb", "siteRegistry": false, - "dateNoted": "2017-12-28", - "parcelID": "20379", - "crownLandUsePIN": "20500", - "crownLandFileNumber": "19152", - "landDescription": "LOT 2 OF LOT 2 BLOCK 4 DISTRICT LOT 3 PLAN 8196" - }, - { - "uuid": "8a71654b-da4b-49f4-8988-f0f8e05f23a9", - "siteRegistry": true, - "dateNoted": "2023-01-28", - "parcelID": "18752", - "crownLandUsePIN": "16516", - "crownLandFileNumber": "15579", - "landDescription": "LOT 1 OF LOT 3 BLOCK 5 DISTRICT LOT 2 PLAN 3384" + "dateNoted": "2019-06-06", + "parcelID": "20162", + "crownLandUsePIN": "20246", + "crownLandFileNumber": "19383", + "landDescription": "LOT 5 OF LOT 3 BLOCK 2 DISTRICT LOT 5 PLAN 8087" } ], "siteDisclosures": [ { - "uuid": "ba225c9b-a35b-4014-8451-532484df99be", - "siteRegistry": false, - "dateReceived": "2014-01-06", - "dateCompleted": "2015-11-20", - "dateEntered": "2019-06-30", - "dateRegistrar": "2021-09-15", - "dateLocalAuthorityReceived": "2019-11-27", - "summary": "Tenetur occaecati quia cum voluptate corporis atque.\nTemporibus officiis rerum impedit quasi expedita.", - "informationUsed": "Aliquid earum ea modi eos qui dolores earum provident.\nDeleniti atque quibusdam at nihil eos quas nisi harum rem.\nExcepturi natus soluta unde inventore explicabo.", - "pastOrPresentOrders": "Veniam asperiores asperiores quibusdam necessitatibus perspiciatis nisi delectus aperiam quas.\nLaborum praesentium maxime dignissimos impedit rerum.", + "uuid": "7db2e821-a8b3-45b5-82cd-bb3d18a174ec", + "siteRegistry": true, + "dateReceived": "2021-04-02", + "dateCompleted": "2014-04-06", + "dateEntered": "2021-09-08", + "dateRegistrar": "2017-01-14", + "dateLocalAuthorityReceived": "2019-04-11", + "summary": "Unde numquam consectetur ea repudiandae at quod illo repellat nihil.\nRecusandae explicabo sit sed qui.\nNihil quae occaecati magnam quis saepe magni aliquid iste.", + "informationUsed": "Quae quam saepe laborum explicabo maxime deleniti odit corporis ipsam.\nAssumenda adipisci autem doloribus doloribus ratione.\nNemo reiciendis corporis consectetur accusantium asperiores.\nRepudiandae error quos iste ipsa voluptatibus dolor ex laudantium consectetur.\nEt sapiente nostrum sed sunt natus numquam.", + "pastOrPresentOrders": "Ut optio libero debitis sint facilis consectetur quam excepturi magnam.", "commercialAndIndustrialPurposes": [ { - "uuid": "467a5e15-11ee-4f86-ab24-6e1581f08f4c", + "uuid": "c6ad3da8-0072-47a2-80f6-51d7db133b7e", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "uuid": "d6f4418e-e84b-40fb-bac3-ccfa038368cc", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, { - "uuid": "9ee4a3c7-8895-4af7-af7b-50fe6ce6606a", + "uuid": "b2cbbfa1-aa21-419f-b521-8d7fc77bc8a7", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true + } + ] + }, + { + "uuid": "bf03b253-8dc7-4885-b012-835b36498866", + "siteRegistry": false, + "dateReceived": "2021-04-03", + "dateCompleted": "2013-12-02", + "dateEntered": "2023-05-04", + "dateRegistrar": "2014-01-31", + "dateLocalAuthorityReceived": "2015-04-22", + "summary": "Esse architecto praesentium distinctio vel culpa consectetur quidem dicta.\nAlias a voluptate cum sint ut.", + "informationUsed": "Voluptate nulla cumque non quam neque in dolorum.\nSequi vitae ut quae omnis aperiam.\nEius sapiente fugiat commodi enim.", + "pastOrPresentOrders": "Officiis adipisci aut repudiandae.", + "commercialAndIndustrialPurposes": [ + { + "uuid": "4980a9ca-9e9e-4f5d-ab88-6e3d68e5865b", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false }, { - "uuid": "1707df65-1ee6-4749-97c5-342f3dbcd039", + "uuid": "6bafb558-9fe2-4ca3-85cd-05d44af50293", "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { - "uuid": "9eea682e-afc4-43fc-9033-6df1699bba07", + "uuid": "0c0a09ad-59a9-47ae-aa17-9f41f1ee7240", "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false + }, + { + "uuid": "2f14768e-f43a-408d-9ac9-f8528eca4ba1", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true } ] } ], "activityLog": [ { - "uuid": "3297fbe9-4344-4bd8-8179-0664cc2b1adc", + "uuid": "4e8f64c8-c69f-484a-b328-2e577e015f22", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "WALSH XZAVIER", + "timestamp": "2018-12-21" + }, + { + "uuid": "febe639d-f2d6-4542-a63f-d9fad09174d1", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "KERLUKE GASTON", - "timestamp": "2016-01-30" + "user": "WEIMANN SHANNON", + "timestamp": "2018-09-18" }, { - "uuid": "9753896c-79ba-49ea-93d6-78c4a03bf5d0", + "uuid": "b104327c-83c0-4e81-8433-59ec544747e4", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "DOUGLAS ELI", - "timestamp": "2021-11-17" + "user": "LEUSCHKE HEAVEN", + "timestamp": "2017-01-11" }, { - "uuid": "d7f9475f-507f-4584-9d26-3d7f3d11b530", + "uuid": "c8bf8bcf-c0f4-4185-b8db-32e65a3a35e3", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "GULGOWSKI LISETTE", - "timestamp": "2015-05-20" + "user": "CRIST ORAN", + "timestamp": "2022-10-24" + }, + { + "uuid": "fb4778c3-ed0b-4aa3-b951-71e4fb5cc361", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "WALSH GAETANO", + "timestamp": "2017-03-28" }, { - "uuid": "12d6eabe-064f-4dda-a67d-a4026cff5230", + "uuid": "ec46a4f1-2f5f-44af-a825-c6ca0bc2d215", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "SCHILLER FELIX", - "timestamp": "2023-01-06" + "user": "KRIS RHEA", + "timestamp": "2023-08-28" }, { - "uuid": "dcebd698-7561-4a88-a660-0a4104bc69d9", + "uuid": "933324c5-03e4-43ac-ba0c-76bef960ae99", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "FRAMI JACLYN", - "timestamp": "2018-08-29" + "user": "DANIEL BERNICE", + "timestamp": "2021-10-16" + }, + { + "uuid": "4ff05b27-d7e7-4d26-8eb4-7a1fc2762a7b", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "RUECKER VINCENZO", + "timestamp": "2022-02-15" } ], "associatedSites": [ { - "uuid": "b7bafc89-b4ff-4b95-9589-c960ed4ddee3", - "dateNoted": "2015-11-07", - "notes": "", - "parcelID": "19995", - "siteID": "15979", - "siteRegistry": true - }, - { - "uuid": "d128c602-890e-4cc2-8ed8-d77c2e1f4202", - "dateNoted": "2018-06-27", + "uuid": "476d641a-ece5-4b35-b900-1388f2777873", + "dateNoted": "2018-01-12", "notes": "", - "parcelID": "17875", - "siteID": "16208", + "parcelID": "18429", + "siteID": "20625", "siteRegistry": false } ] }, { - "uuid": "fadb5681-1ddf-4822-8351-f9b11c4dede0", - "siteID": 17327, - "address": "3408 Fermin Lakes", - "latitude": 56.0434, - "longitude": -138.6215, - "lastUpdated": "2015-07-10", - "city": "North Dewitt", - "region": "Vancouver Island/Coast", - "victoriaFile": "26250-20/19712", + "uuid": "71ac99b5-f455-4a96-924a-3201b627e2bc", + "siteID": 20146, + "address": "6696 Dayne River", + "latitude": 58.1675, + "longitude": -128.1361, + "lastUpdated": "2017-04-06", + "city": "West Christopher", + "region": "Mainland/Southwest", + "victoriaFile": "26250-20/9089", "regionalFile": "N/A", "parcelIDs": [ - 8251601, - 6896013, - 6900307, - 840632, - 8407635 + 4001749, + 606020, + 9917470, + 2843418, + 6167405 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "d1537716-66f0-4a74-9187-4ac126f0b9cd", - "createdAt": "2016-11-18", - "completed": "2017-03-01", - "initiated": "2019-07-21", - "ministryContact": "JOHNSON HERMAN", + "uuid": "d46ab1b8-c304-401d-9590-99722891e410", + "createdAt": "2022-06-16", + "completed": "2020-01-15", + "initiated": "2019-02-15", + "ministryContact": "HOWELL ZETTA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -37586,90 +43904,26 @@ ], "notationParticipants": [ { - "uuid": "f5135a29-60c7-4ac6-ba5c-aa045b224e52", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "uuid": "7694842d-77aa-4153-8d71-1f9cefdf6c5d", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "uuid": "b01bcee2-9ada-4211-a61c-83632b293f3c", + "uuid": "ffac4ea1-ceac-4b67-8278-5c38fc499aa2", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "3d31ed00-edaa-4861-a9e3-f4329f8e112a", - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "uuid": "b2f1d3e2-98fb-4c44-9c4f-422fa30cd563", - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - } - ], - "siteRegistry": true - }, - { - "uuid": "3946e8b9-227f-49cc-9967-08594ab38fbc", - "createdAt": "2022-08-09", - "completed": "2014-05-04", - "initiated": "2019-09-28", - "ministryContact": "ORN ZION", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "uuid": "ce45dfe8-e625-49e1-8cd7-62fe7d724552", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "uuid": "1b58817c-8121-4824-9fd2-d63b93b69334", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "uuid": "4b985358-a93b-4cda-b880-d01127515d7d", + "uuid": "e031d231-06be-4073-b698-7a6899d29d8e", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "uuid": "219fecf3-0dd8-4197-9b0f-aee8d6321e59", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "uuid": "94db0a60-345b-4e54-9dca-69d8ab6d88c0", - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "9dc680bf-4a72-407a-8f76-602c10fb6288", - "createdAt": "2013-11-08", - "completed": "2016-09-15", - "initiated": "2022-09-23", - "ministryContact": "LOCKMAN ADAM", + "uuid": "2b7a621a-447a-45bc-819f-5f793b017585", + "createdAt": "2022-05-17", + "completed": "2015-10-18", + "initiated": "2014-03-26", + "ministryContact": "SCHUMM DANDRE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -37678,72 +43932,26 @@ ], "notationParticipants": [ { - "uuid": "153e0ac7-0d5b-4ee4-861e-d7e8e58ab233", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "uuid": "dc3c62f4-760b-4f3e-bd2c-c003a6998668", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "uuid": "b9b425ee-0e90-4685-8c45-b078d50385d7", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "uuid": "c94766dd-91b8-49e9-a34a-dcb46dca2296", + "uuid": "0c43ad1e-fdce-428e-82dd-74455610bc87", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - } - ], - "siteRegistry": true - }, - { - "uuid": "774c9d82-696c-4302-af75-d7968b2cf1cd", - "createdAt": "2019-04-21", - "completed": "2020-10-23", - "initiated": "2015-05-10", - "ministryContact": "LANG JADA", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "uuid": "a05f3b10-fee0-4798-9921-d9fdb5b11e23", - "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "f2e7cb05-5f0d-4758-9118-602c05eb0b4d", + "uuid": "257ede53-61ef-4de9-ac04-c7c8d28889b8", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false - }, - { - "uuid": "6a20586a-8acc-4947-9798-dd2c917029e9", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true } ], "siteRegistry": true }, { - "uuid": "53e5ed61-9693-4342-bfe4-7d8cf4ec27d2", - "createdAt": "2020-08-30", - "completed": "2020-01-22", - "initiated": "2015-09-17", - "ministryContact": "KULAS FREDERIQUE", + "uuid": "04c60396-6828-4212-8d76-5babee344d84", + "createdAt": "2021-08-22", + "completed": "2019-03-13", + "initiated": "2018-08-28", + "ministryContact": "JOHNSON OTTILIE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -37752,33 +43960,33 @@ ], "notationParticipants": [ { - "uuid": "3810d0a8-e38e-4329-9f12-9fdd24b39937", - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "912dd8bd-a4f8-4367-beb8-7615cf740634", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "8c4760b4-80aa-4a56-b993-39ed6e3fb4c7", - "name": "SHELL CANADA PRODUCTS", + "uuid": "6809b268-bf90-453f-9a64-564f86c38773", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true }, { - "uuid": "0cb426ee-531d-4d8d-b77a-bf8129cfea97", + "uuid": "24653c27-35b0-4a11-875a-09e057ff496d", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false } ], "participants": [ { - "uuid": "cad3c072-d3cd-47e8-a39a-4dcfa74a5ba9", - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2017-07-29", - "startDate": "2021-01-22", + "uuid": "70b29e02-9b29-4d1b-a0bd-4fd8ae1f9ee3", + "name": "IPSUM", + "endDate": "2017-05-18", + "startDate": "2021-10-26", "notes": "", "roles": [ "ORGANIZATION" @@ -37786,241 +43994,358 @@ "siteRegistry": true }, { - "uuid": "fa9be4ad-2f8e-408c-b7e0-7a2e4acf502b", + "uuid": "bc2c0507-250e-48bd-b933-42618968564e", "name": "SHELL CANADA PRODUCTS", - "endDate": "2021-05-03", - "startDate": "2019-11-25", + "endDate": "2022-06-15", + "startDate": "2022-11-14", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": true - }, - { - "uuid": "08a187e0-95d0-4466-a29c-f0349d16cbec", - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2017-05-29", - "startDate": "2020-08-21", - "notes": "", - "roles": [ - "ORGANIZATION" - ], "siteRegistry": false }, { - "uuid": "3b1b8cc5-abae-4288-9e7d-2be15b5d0d7c", - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2020-04-01", - "startDate": "2023-06-21", + "uuid": "4105bf27-a3e5-45b1-9eb5-704b7092bc3e", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2014-04-25", + "startDate": "2023-07-10", "notes": "", "roles": [ "ORGANIZATION" ], "siteRegistry": true + } + ], + "documents": [ + { + "uuid": "7713fd95-aa95-4489-99f2-683003506370", + "siteRegistry": true, + "documentDate": "2015-04-02", + "receivedDate": "2020-12-17", + "uploadedDate": "2020-03-31", + "title": "Preliminary Site Investigation, Detailed Site Investigation and Remedial Plan for the Management Area adjacent to the Shell Site at 1503 West 41st Ave", + "participants": [ + { + "uuid": "31647f62-3058-4cb0-8634-b3e1189b781f", + "name": "AMET, DOLOR SIT", + "siteRegistry": false, + "role": "AUTHOR" + } + ] }, { - "uuid": "bbfa6b04-15ef-4a8b-84c8-63323944bd21", - "name": "IPSUM", - "endDate": "2022-06-21", - "startDate": "2023-10-10", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": true + "uuid": "4401f4fe-d931-41d4-b0f2-a19a2755c395", + "siteRegistry": true, + "documentDate": "2018-10-14", + "receivedDate": "2019-02-20", + "uploadedDate": "2015-07-21", + "title": "Summary of Site Conditions, 1537 W 41st Avenue, Vancouver", + "participants": [ + { + "uuid": "c19dbfac-228f-44bc-b91d-df966ac024d7", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "88c58e43-a845-45d4-95e9-7614a01192b7", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "92896b0e-e9c6-4499-b196-46decea1fd83", + "name": "AMET, DOLOR SIT", + "siteRegistry": false, + "role": "AUTHOR" + } + ] + }, + { + "uuid": "5a8227eb-928e-4150-bd3a-32ad8b3c2562", + "siteRegistry": false, + "documentDate": "2017-10-15", + "receivedDate": "2017-01-06", + "uploadedDate": "2015-06-26", + "title": "Summary of Site Conditions, 1537 W 41st Avenue, Vancouver", + "participants": [ + { + "uuid": "f13e6a2d-792a-484f-8d5e-2426c7d37539", + "name": "IPSUM", + "siteRegistry": true, + "role": "AUTHOR" + } + ] + }, + { + "uuid": "fa768e7e-997a-4823-9a6c-71d15670eac9", + "siteRegistry": true, + "documentDate": "2022-11-08", + "receivedDate": "2020-03-14", + "uploadedDate": "2023-03-27", + "title": "Summary of Site Conditions, 1537 W 41st Avenue, Vancouver", + "participants": [ + { + "uuid": "ef151825-2e3f-4741-8e0b-33ae35efa35c", + "name": "IPSUM", + "siteRegistry": true, + "role": "AUTHOR" + } + ] + }, + { + "uuid": "97f52c6a-f4ca-4d6a-8a2e-fc033c0497ef", + "siteRegistry": false, + "documentDate": "2016-08-13", + "receivedDate": "2016-05-21", + "uploadedDate": "2015-05-30", + "title": "Summary of Site Conditions, 1537 W 41st Avenue, Vancouver", + "participants": [ + { + "uuid": "005ad170-9e0a-4d5e-b330-00f2ec36e17b", + "name": "IPSUM", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "a240ee56-6aaa-454e-8456-a9ed7ba072fa", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": true, + "role": "AUTHOR" + } + ] } ], "suspectLandUses": [ { - "uuid": "83ed6c46-ecbe-4fb5-a150-eaf03cbf5463", + "uuid": "77f4a16d-8265-4837-832a-9fd3eece487a", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2017-03-21 (described on Site Profile dated 2017-03-21)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "uuid": "d1db7fdd-2bd9-490c-ba21-5884d8b87dfe", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-08-17 (described on Site Profile dated 2017-08-17)", + "notes": "INSERTED FOR SITE PROFILE DATED 2017-03-02 (described on Site Profile dated 2017-03-02)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "uuid": "b04800a5-dc7a-4031-bbed-298cebf37bf5", + "uuid": "5301f6c2-a191-4afd-8d2e-2817c6b6aaf4", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-01-24 (described on Site Profile dated 2018-01-24)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "notes": "INSERTED FOR SITE PROFILE DATED 2019-07-08 (described on Site Profile dated 2019-07-08)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "uuid": "9e67372c-1bfe-400e-9506-6a6477831786", + "uuid": "c5c6ab11-1688-45e5-b4c4-7df8b63e3f47", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2023-01-20 (described on Site Profile dated 2023-01-20)", + "notes": "INSERTED FOR SITE PROFILE DATED 2015-09-20 (described on Site Profile dated 2015-09-20)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "uuid": "2322c44b-863d-4ffa-a0e4-1e11ac445a17", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2014-05-16 (described on Site Profile dated 2014-05-16)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], "parcelDescriptions": [ { - "uuid": "392db2bd-d976-48f5-a5e1-d2c7af794899", + "uuid": "0c355c23-f73a-42d5-8915-b45a578cccbb", "siteRegistry": true, - "dateNoted": "2020-04-21", - "parcelID": "17582", - "crownLandUsePIN": "18654", - "crownLandFileNumber": "17566", - "landDescription": "LOT 3 OF LOT 5 BLOCK 3 DISTRICT LOT 1 PLAN 6263" - }, - { - "uuid": "73c92dde-4f23-4882-b423-acea6ae5279b", - "siteRegistry": false, - "dateNoted": "2019-01-28", - "parcelID": "17073", - "crownLandUsePIN": "19456", - "crownLandFileNumber": "15229", - "landDescription": "LOT 2 OF LOT 4 BLOCK 3 DISTRICT LOT 3 PLAN 6478" + "dateNoted": "2019-05-11", + "parcelID": "16987", + "crownLandUsePIN": "16871", + "crownLandFileNumber": "17563", + "landDescription": "LOT 1 OF LOT 5 BLOCK 3 DISTRICT LOT 3 PLAN 3206" }, { - "uuid": "27bd1555-615c-48ea-866f-6179fe7d9e86", + "uuid": "5b81fd05-259f-4b79-aceb-0b35d370d54b", "siteRegistry": false, - "dateNoted": "2020-10-13", - "parcelID": "19090", - "crownLandUsePIN": "19710", - "crownLandFileNumber": "17207", - "landDescription": "LOT 2 OF LOT 3 BLOCK 1 DISTRICT LOT 2 PLAN 7387" + "dateNoted": "2018-06-19", + "parcelID": "20264", + "crownLandUsePIN": "18936", + "crownLandFileNumber": "15517", + "landDescription": "LOT 2 OF LOT 5 BLOCK 2 DISTRICT LOT 2 PLAN 5187" }, { - "uuid": "552761be-eb28-4383-80ca-e5e42d3b13e8", + "uuid": "dd3a74d2-effc-417c-a47e-4755ae53dbf0", "siteRegistry": true, - "dateNoted": "2016-07-16", - "parcelID": "17388", - "crownLandUsePIN": "19438", - "crownLandFileNumber": "18911", - "landDescription": "LOT 1 OF LOT 4 BLOCK 4 DISTRICT LOT 2 PLAN 5448" - }, - { - "uuid": "ae233e38-007d-40c7-84e0-63c733e28092", - "siteRegistry": false, - "dateNoted": "2014-03-10", - "parcelID": "15648", - "crownLandUsePIN": "16865", - "crownLandFileNumber": "18655", - "landDescription": "LOT 5 OF LOT 3 BLOCK 2 DISTRICT LOT 4 PLAN 8886" + "dateNoted": "2017-11-05", + "parcelID": "15918", + "crownLandUsePIN": "17752", + "crownLandFileNumber": "19854", + "landDescription": "LOT 1 OF LOT 1 BLOCK 1 DISTRICT LOT 2 PLAN 4871" } ], "siteDisclosures": [ { - "uuid": "64fd0dbe-bb41-4c25-97da-8a3ad3257b3f", + "uuid": "b090a35a-eeab-488f-8516-d59a763cd928", "siteRegistry": false, - "dateReceived": "2020-02-12", - "dateCompleted": "2017-01-01", - "dateEntered": "2014-03-13", - "dateRegistrar": "2016-12-10", - "dateLocalAuthorityReceived": "2014-12-08", - "summary": "Atque vero occaecati fugit exercitationem.\nRepellat architecto unde sequi temporibus quam sed vel quaerat reiciendis.", - "informationUsed": "Repellat unde dolore magni officia aspernatur quaerat id aliquam.\nProvident dolore facilis illum atque quasi rem eligendi dicta dicta.\nSit repellat provident maiores odio ut reiciendis.\nNesciunt officiis molestias mollitia quam.\nVeniam dolore amet fuga soluta eligendi dolores nostrum.", - "pastOrPresentOrders": "Corrupti exercitationem odit dolore illo.", + "dateReceived": "2020-08-24", + "dateCompleted": "2015-09-17", + "dateEntered": "2015-02-26", + "dateRegistrar": "2015-07-29", + "dateLocalAuthorityReceived": "2018-12-17", + "summary": "Voluptatem ea quidem tempore.\nOmnis fuga soluta consequuntur hic odio perferendis est consequatur.\nEx eius facilis ipsa alias in itaque officia.", + "informationUsed": "Reprehenderit itaque doloremque at velit quas eveniet illum.\nPorro dolorem vero architecto praesentium impedit cupiditate velit.\nReprehenderit cumque dolorem ducimus accusantium recusandae.\nEsse dicta accusantium nemo neque molestiae.", + "pastOrPresentOrders": "Possimus expedita magnam facilis facere nisi mollitia.", "commercialAndIndustrialPurposes": [ { - "uuid": "45939bfa-7477-4d10-b9f0-6989bc3c3a6f", + "uuid": "25a03716-f632-4946-acc6-7eb271841869", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "uuid": "a2156b5a-9de6-42f8-a720-fc1b270623d0", "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, { - "uuid": "e777264e-8ebb-425b-9415-ffe4301190a9", + "uuid": "2049854b-75f0-48ec-8fb1-2df2f7d4c27e", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "uuid": "09fc86c0-441b-4d36-83e7-0d804e3c7355", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true } ] + }, + { + "uuid": "d59298b5-63bb-4a93-aab4-3c19075192ab", + "siteRegistry": false, + "dateReceived": "2021-02-09", + "dateCompleted": "2023-06-10", + "dateEntered": "2016-09-18", + "dateRegistrar": "2015-09-22", + "dateLocalAuthorityReceived": "2017-05-15", + "summary": "Harum temporibus repellendus fugiat autem quas id consequuntur doloremque quam.\nNobis ad voluptas ratione.\nNon aperiam minus.", + "informationUsed": "Corrupti doloremque eveniet vel.\nAccusamus dolores quos.\nDebitis rem vel quas neque non placeat provident rem amet.\nSunt atque ducimus soluta enim repellat doloremque explicabo excepturi sapiente.\nCommodi ipsum ab.", + "pastOrPresentOrders": "Facere ducimus reprehenderit.\nVero sapiente maiores nulla nihil.\nConsectetur veniam reiciendis quas enim qui ducimus a harum atque.", + "commercialAndIndustrialPurposes": [ + { + "uuid": "3e7df35e-1239-40d9-9bc3-d0faaa21c8a4", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "uuid": "31857265-ad85-49ea-abed-f7943e9fa956", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + } + ] } ], "activityLog": [ { - "uuid": "c49c1691-56ab-4b20-9602-6ac5e77a06bf", - "siteRegistry": false, + "uuid": "7e7279cc-fc5d-4219-b06f-67191bf43e67", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "CARTWRIGHT JENNIFER", - "timestamp": "2015-11-06" + "user": "MCGLYNN ARMANDO", + "timestamp": "2017-10-21" }, { - "uuid": "5b53a523-32fe-4ec5-b895-46c04b4a90de", - "siteRegistry": false, + "uuid": "531cf340-8238-4852-b241-dcbde7fccb49", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "RICE FAUSTINO", - "timestamp": "2019-11-14" + "user": "KUVALIS BRENNON", + "timestamp": "2016-09-20" }, { - "uuid": "09a0a314-b866-4aa9-bda1-f7f1b3e82df8", + "uuid": "f8c4b6ce-6435-4356-9d52-00da939f3f0b", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "FLATLEY SKYLA", - "timestamp": "2020-03-21" + "user": "ORN MERLIN", + "timestamp": "2022-01-12" }, { - "uuid": "e08d3550-b0dc-427f-896c-bf8c6380bc9d", + "uuid": "c815518a-8aa6-49ae-9897-6c7c86b50cea", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "HILLS DELMER", - "timestamp": "2017-10-11" + "user": "LANGWORTH CHRISTIAN", + "timestamp": "2019-12-12" + }, + { + "uuid": "2f1d1230-0500-4d4b-939d-c7cff2d067bc", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "ROBERTS ELENORA", + "timestamp": "2018-10-17" }, { - "uuid": "8e5ad3eb-f15a-40a5-9f7f-15f017fe8751", + "uuid": "687c8eb2-70ef-4f55-ab8a-ea00d5f323c0", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "RUNTE DOYLE", - "timestamp": "2016-08-13" + "user": "BARTON NOE", + "timestamp": "2018-11-21" }, { - "uuid": "95e392f3-64b4-4778-bb0b-84d51b6d0849", + "uuid": "6de72030-be83-4e8e-a3a2-4e9b10e71a16", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "KULAS-BAILEY ARDELLA", - "timestamp": "2022-11-21" + "user": "HERMISTON KRISTA", + "timestamp": "2023-02-20" }, { - "uuid": "21ce3b04-8426-40fa-ba5b-83bb3b75d2c3", + "uuid": "582ec8fd-cc97-44b9-a2b7-400070654f96", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "SWANIAWSKI WALTER", - "timestamp": "2014-03-05" + "user": "LUEILWITZ BRODERICK", + "timestamp": "2020-05-14" } ], "associatedSites": [ { - "uuid": "3c2aae9d-be29-4779-ab46-d7a0035754b8", - "dateNoted": "2020-11-28", + "uuid": "c31acfad-0a73-4584-9d04-10d1d6144730", + "dateNoted": "2015-12-02", "notes": "", - "parcelID": "17863", - "siteID": "18395", + "parcelID": "18122", + "siteID": "17014", "siteRegistry": false }, { - "uuid": "daf2ca95-a2eb-435d-b89d-0c6e4ab93226", - "dateNoted": "2020-05-29", + "uuid": "658dff59-0099-4c67-aee6-90ddb032eca4", + "dateNoted": "2020-11-26", "notes": "", - "parcelID": "20018", - "siteID": "16569", - "siteRegistry": true + "parcelID": "15977", + "siteID": "20172", + "siteRegistry": false } ] }, { - "uuid": "7a36a55b-b090-454f-a22f-f8c7afc50ae6", - "siteID": 20362, - "address": "816 Rosalee Locks", - "latitude": 53.193, - "longitude": -138.7856, - "lastUpdated": "2018-03-30", - "city": "Conntown", - "region": "Vancouver Island/Coast", - "victoriaFile": "26250-20/18780", + "uuid": "751df1ef-ebd4-4752-ac2c-52ebea590ea4", + "siteID": 18600, + "address": "348 Brenna Unions", + "latitude": 48.5681, + "longitude": -120.0219, + "lastUpdated": "2016-04-04", + "city": "Miaton", + "region": "Cariboo", + "victoriaFile": "26250-20/16521", "regionalFile": "N/A", "parcelIDs": [ - 1428564, - 5292508, - 576739, - 4681162, - 8714003 + 1482082, + 5117319, + 4298597, + 6070170, + 2161369 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "550e27a7-3e2e-43a9-a5d9-4eccca04c094", - "createdAt": "2015-07-26", - "completed": "2018-12-08", - "initiated": "2017-06-30", - "ministryContact": "LEUSCHKE CHRISTIANA", + "uuid": "fbb6e5b3-a2be-4322-a26e-f91b4cf40aec", + "createdAt": "2022-02-24", + "completed": "2021-08-18", + "initiated": "2022-06-27", + "ministryContact": "GULGOWSKI JAYSON", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -38029,44 +44354,26 @@ ], "notationParticipants": [ { - "uuid": "776a50c3-cf1b-4b84-8716-7ffc3b47ba18", + "uuid": "841795c9-b6d6-4d2e-8413-46a129d8e5c5", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "uuid": "354b47fe-5ab3-4e8f-b089-aa5e9d13b8b6", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "uuid": "7daa6267-78ef-4415-b43b-bc53aba1ce12", - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "uuid": "850c3585-75a1-4269-882b-590064311add", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", "siteRegistry": false }, { - "uuid": "687b8625-3565-4fcc-9c60-fe464a70a1ee", - "name": "SHELL CANADA PRODUCTS", + "uuid": "84a54dc8-9123-4965-9d91-9b4b5323a959", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true } ], "siteRegistry": true }, { - "uuid": "2a388d17-677c-4ee5-b14b-96a99e788ce5", - "createdAt": "2016-01-05", - "completed": "2017-11-10", - "initiated": "2023-03-26", - "ministryContact": "MULLER KIRSTIN", + "uuid": "26cd6229-0bd8-43be-9ffa-67447c42be4b", + "createdAt": "2018-01-02", + "completed": "2021-05-13", + "initiated": "2022-08-03", + "ministryContact": "WEBER ALENE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -38075,90 +44382,38 @@ ], "notationParticipants": [ { - "uuid": "a559eacb-e550-4444-9aac-16e104f4be68", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "uuid": "c7e5b5a3-b173-4fd8-b98e-3be7aee50f09", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "e99fa9cf-12ae-42a7-b1ad-9a27e84a9d84", + "uuid": "5240d100-e867-42a4-ae33-90d1310041e3", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "9f78b2c2-c7a4-4f59-b2ab-e86c8597d6d3", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "uuid": "eec36d49-da85-4be7-a4ae-3c7b29cf8efa", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "uuid": "2182443b-49c0-4d2e-a698-21f56990cfa5", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - } - ], - "siteRegistry": false - }, - { - "uuid": "c015388d-7c5d-4e95-9984-1f4c37bb6504", - "createdAt": "2015-11-06", - "completed": "2018-09-29", - "initiated": "2020-01-10", - "ministryContact": "WILLIAMSON-ROHAN ESTRELLA", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "uuid": "8e446b2b-4a2a-4cf8-9d5b-9764e177a894", + "uuid": "8f55d3a7-6864-447a-9fc5-d40a3af26f03", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "9370247d-e7b6-4e89-b17b-9fb341db7b54", + "uuid": "a28a6b4a-5e2f-4988-8c1f-d4860aa6b93f", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false - }, - { - "uuid": "0100fa0a-2719-49cb-984e-8d323bef7ef1", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "uuid": "9cee5e32-636a-4b1d-8268-7970775d737c", - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "uuid": "15d63e72-0e00-4b2e-b855-e9a9d7b0a9c0", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true } ], "siteRegistry": true }, { - "uuid": "5a11ac1f-3c22-46e1-b132-8870cea3019e", - "createdAt": "2021-12-08", - "completed": "2014-06-11", - "initiated": "2017-02-07", - "ministryContact": "CONNELLY BROOK", + "uuid": "74ad70af-88c0-4caa-a87c-2e64870c94fd", + "createdAt": "2017-02-06", + "completed": "2021-09-27", + "initiated": "2020-07-26", + "ministryContact": "REICHEL GUST", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -38167,44 +44422,26 @@ ], "notationParticipants": [ { - "uuid": "8eb68d01-2ccf-42f4-bb6c-a14a8f8d3cc2", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "uuid": "2394a189-ac4d-49f5-81d2-ffbcd83fccd7", + "uuid": "dfe25b26-b4b5-4e9d-870e-65047dd39fd3", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "uuid": "67470014-2bfb-442d-9f10-6efb79906595", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "4c7e6958-e7fb-4ff4-af78-aebe88ebe1f4", + "uuid": "d5318546-e892-440e-baf2-b4baa8957515", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true - }, - { - "uuid": "93bb8e20-6478-4e22-98ad-657786966b67", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true } ], "siteRegistry": true }, { - "uuid": "a618b7d7-67a0-4eaf-9436-9d037c027765", - "createdAt": "2017-01-04", - "completed": "2020-09-05", - "initiated": "2016-06-06", - "ministryContact": "KASSULKE REBA", + "uuid": "f58f40e3-e61b-483f-8ca7-60ef956feb8f", + "createdAt": "2015-01-23", + "completed": "2017-02-02", + "initiated": "2016-07-18", + "ministryContact": "PADBERG AMBER", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -38213,34 +44450,16 @@ ], "notationParticipants": [ { - "uuid": "5815a542-1578-4a6f-88a3-f3f941cfb012", + "uuid": "e8c6f3e7-2c3a-43d5-bfb4-53c6c447c4e1", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "262e49a3-98b5-4ad7-99d5-2911cf07b2a2", + "uuid": "9129bb96-eba6-41c4-aeac-e6ff30cad862", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true - }, - { - "uuid": "7d14b128-8a52-4fc4-8e2c-04121971f443", - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "uuid": "bd70ca75-c9bb-4c12-a58a-30d16faaa1c1", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "uuid": "f6d8b05c-353b-425c-879d-3828951661ad", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true } ], "siteRegistry": true @@ -38248,154 +44467,282 @@ ], "participants": [ { - "uuid": "7d4a71d3-74f5-4cc0-ad38-6138a8f3cdf0", - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2014-08-25", - "startDate": "2021-10-14", + "uuid": "bf849c65-86a7-4056-929e-7b113906dc59", + "name": "IPSUM", + "endDate": "2021-11-21", + "startDate": "2022-12-23", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": false }, { - "uuid": "ef290f0b-868c-4cfc-bfd4-0cc6339bc201", - "name": "IPSUM", - "endDate": "2018-08-05", - "startDate": "2014-03-29", + "uuid": "0e8bd134-4117-4318-9fa9-31b2c749dd7d", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2021-06-29", + "startDate": "2016-08-11", "notes": "", "roles": [ "ORGANIZATION" ], + "siteRegistry": true + }, + { + "uuid": "1607c671-104d-46fe-956e-1b53e6e7ec33", + "name": "IPSUM", + "endDate": "2015-06-15", + "startDate": "2017-04-05", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "uuid": "663325d5-88fc-4e29-8588-1abc21dab838", + "name": "AMET, DOLOR SIT", + "endDate": "2022-01-04", + "startDate": "2019-12-28", + "notes": "", + "roles": [ + "EMPLOYEE" + ], "siteRegistry": false } ], - "suspectLandUses": [ + "documents": [ { - "uuid": "7c0aa490-cfc6-46bf-b51a-7667d0e1fe28", + "uuid": "3e7b8e8a-ee51-4495-84c0-3b8139b07ae9", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-04-13 (described on Site Profile dated 2021-04-13)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "documentDate": "2017-05-14", + "receivedDate": "2019-05-13", + "uploadedDate": "2018-07-16", + "title": "Preliminary Site Investigation, Detailed Site Investigation and Remedial Plan for the Management Area adjacent to the Shell Site at 1503 West 41st Ave", + "participants": [ + { + "uuid": "48c2b2c6-616c-40db-ae5b-154b3b03b179", + "name": "IPSUM", + "siteRegistry": true, + "role": "AUTHOR" + } + ] + }, + { + "uuid": "eaf8ef5a-f9a1-4ee1-991a-cf1963b1492b", + "siteRegistry": false, + "documentDate": "2015-01-17", + "receivedDate": "2017-01-27", + "uploadedDate": "2019-06-22", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "d702bd86-dc85-40b6-925e-f5d8199f68f1", + "name": "AMET, DOLOR SIT", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "668a4a05-a7ae-4c1b-aaa8-c31081d6ee4b", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "a614640f-4307-4a9a-8aba-b67d2f0cb0f1", + "name": "AMET, DOLOR SIT", + "siteRegistry": false, + "role": "AUTHOR" + } + ] }, { - "uuid": "3be7345e-65b3-4032-a043-4c1da5725160", + "uuid": "d5e345f7-a06b-49b7-80d3-23c63e32d23f", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2020-12-22 (described on Site Profile dated 2020-12-22)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "documentDate": "2021-09-18", + "receivedDate": "2018-06-28", + "uploadedDate": "2014-10-31", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "3db9ce61-eecc-4fe0-a5cf-1158b2812ba7", + "name": "IPSUM", + "siteRegistry": false, + "role": "AUTHOR" + } + ] + }, + { + "uuid": "88bd59b7-9482-43f3-8b21-a8277051ea8e", + "siteRegistry": false, + "documentDate": "2023-04-25", + "receivedDate": "2015-10-04", + "uploadedDate": "2015-03-27", + "title": "Preliminary Site Investigation, Detailed Site Investigation and Remedial Plan for the Management Area adjacent to the Shell Site at 1503 West 41st Ave", + "participants": [ + { + "uuid": "4513bf79-aa2d-468d-9c06-ecf37bc99790", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": true, + "role": "AUTHOR" + } + ] }, { - "uuid": "c7144f67-1146-4104-8b7d-09179ace7e53", + "uuid": "26c0570e-bfc0-49d3-9b63-86e55191cd09", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-01-08 (described on Site Profile dated 2019-01-08)", + "documentDate": "2018-02-14", + "receivedDate": "2015-11-30", + "uploadedDate": "2022-01-02", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "bd6543f5-eaa0-4ef8-8fc1-4eba5bad852f", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": false, + "role": "AUTHOR" + } + ] + } + ], + "suspectLandUses": [ + { + "uuid": "5dfdf6b2-e5fb-454a-b6a0-2a34f9665907", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2013-12-12 (described on Site Profile dated 2013-12-12)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "uuid": "83612e0f-a967-4b34-8c2b-e3ef87a586a3", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2021-04-24 (described on Site Profile dated 2021-04-24)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "uuid": "f5c09f65-87c4-4ab3-9d08-da5c3517cee7", + "uuid": "5e90805f-1463-45c2-87c8-da2fd9b26752", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-04-15 (described on Site Profile dated 2017-04-15)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "notes": "INSERTED FOR SITE PROFILE DATED 2014-10-15 (described on Site Profile dated 2014-10-15)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], "parcelDescriptions": [ { - "uuid": "58ffb753-6332-4c24-946c-480296cc70cd", - "siteRegistry": false, - "dateNoted": "2022-01-31", - "parcelID": "16543", - "crownLandUsePIN": "17034", - "crownLandFileNumber": "20579", - "landDescription": "LOT 2 OF LOT 3 BLOCK 4 DISTRICT LOT 1 PLAN 9674" + "uuid": "ee83c1ce-80c7-40e6-ac98-465e4feb8044", + "siteRegistry": true, + "dateNoted": "2020-11-26", + "parcelID": "20553", + "crownLandUsePIN": "16181", + "crownLandFileNumber": "16355", + "landDescription": "LOT 3 OF LOT 4 BLOCK 4 DISTRICT LOT 2 PLAN 9521" }, { - "uuid": "adc5ab90-db7e-4eee-86e7-0a02fcdc3b6d", + "uuid": "7946ecb4-1ba1-457c-bbf7-6d46cdeb01f3", "siteRegistry": true, - "dateNoted": "2019-03-15", - "parcelID": "16133", - "crownLandUsePIN": "16227", - "crownLandFileNumber": "15531", - "landDescription": "LOT 5 OF LOT 2 BLOCK 2 DISTRICT LOT 5 PLAN 5811" + "dateNoted": "2016-08-21", + "parcelID": "19123", + "crownLandUsePIN": "19288", + "crownLandFileNumber": "20057", + "landDescription": "LOT 1 OF LOT 1 BLOCK 2 DISTRICT LOT 3 PLAN 4755" }, { - "uuid": "57a603fc-bc93-4926-8fdc-78aa08ef8430", + "uuid": "51b38a41-5b08-4b56-a347-298e088f107d", "siteRegistry": false, - "dateNoted": "2019-04-11", - "parcelID": "20485", - "crownLandUsePIN": "15568", - "crownLandFileNumber": "16697", - "landDescription": "LOT 1 OF LOT 3 BLOCK 1 DISTRICT LOT 4 PLAN 7777" + "dateNoted": "2018-07-03", + "parcelID": "16573", + "crownLandUsePIN": "20250", + "crownLandFileNumber": "20171", + "landDescription": "LOT 5 OF LOT 2 BLOCK 3 DISTRICT LOT 5 PLAN 3619" }, { - "uuid": "b2ffda37-6929-4a0e-89c1-57f957f1f98f", - "siteRegistry": false, - "dateNoted": "2016-05-27", - "parcelID": "19420", - "crownLandUsePIN": "17253", - "crownLandFileNumber": "20388", - "landDescription": "LOT 3 OF LOT 1 BLOCK 3 DISTRICT LOT 3 PLAN 6186" + "uuid": "1bfaf0f5-ccff-48da-8269-1472b579804e", + "siteRegistry": true, + "dateNoted": "2023-08-02", + "parcelID": "19515", + "crownLandUsePIN": "17685", + "crownLandFileNumber": "19712", + "landDescription": "LOT 2 OF LOT 1 BLOCK 4 DISTRICT LOT 2 PLAN 3912" }, { - "uuid": "3992e2bc-dc67-4463-99d4-19064d1026dc", - "siteRegistry": false, - "dateNoted": "2022-09-24", - "parcelID": "18139", - "crownLandUsePIN": "17734", - "crownLandFileNumber": "16528", - "landDescription": "LOT 5 OF LOT 3 BLOCK 2 DISTRICT LOT 3 PLAN 9323" + "uuid": "b7dad802-3036-493d-9b88-9086a9f89c68", + "siteRegistry": true, + "dateNoted": "2017-01-14", + "parcelID": "16820", + "crownLandUsePIN": "20813", + "crownLandFileNumber": "15474", + "landDescription": "LOT 5 OF LOT 3 BLOCK 3 DISTRICT LOT 5 PLAN 3068" } ], "siteDisclosures": [ { - "uuid": "950cf234-909b-486d-84a3-41ef66494ee8", - "siteRegistry": false, - "dateReceived": "2014-06-07", - "dateCompleted": "2014-04-21", - "dateEntered": "2022-07-09", - "dateRegistrar": "2021-12-10", - "dateLocalAuthorityReceived": "2016-05-12", - "summary": "Consequatur alias amet architecto rerum saepe.\nDelectus consequuntur excepturi facilis explicabo quidem voluptate quia.", - "informationUsed": "Rerum perspiciatis voluptatem quidem alias sint quo.\nEum cum ad est rem.\nSed incidunt nulla repellat ipsum magni.\nNecessitatibus quis ut atque error asperiores.\nVero libero quia sit praesentium.", - "pastOrPresentOrders": "Nulla nesciunt exercitationem.\nId ipsam iusto aliquid perspiciatis debitis ipsam.\nHarum neque culpa repudiandae voluptas quas qui cupiditate quis.", + "uuid": "4ceaa39d-3961-4f6b-8aa4-e1371233c78b", + "siteRegistry": true, + "dateReceived": "2014-12-04", + "dateCompleted": "2023-05-16", + "dateEntered": "2019-10-20", + "dateRegistrar": "2015-09-14", + "dateLocalAuthorityReceived": "2022-07-14", + "summary": "Ipsa modi voluptatum iure.\nDeserunt dolorum harum iste facere exercitationem nulla ex.", + "informationUsed": "Explicabo distinctio cumque temporibus.\nMolestiae impedit similique possimus itaque veniam natus aliquid.\nDicta a vel vel soluta eos.\nDoloribus omnis recusandae harum beatae quas vel fugit sit.", + "pastOrPresentOrders": "Praesentium aspernatur maiores similique quae dolor ea.\nQuis temporibus sit repellat vero voluptate dolore molestiae.", "commercialAndIndustrialPurposes": [ { - "uuid": "3c50b2c5-b6fd-4887-8c0e-6319858adb03", + "uuid": "cd19db43-03b8-43a9-9a72-96bea230a28d", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { - "uuid": "97085ff3-be7d-4778-967d-950aef9fdfe0", + "uuid": "1659c5c9-bbe3-4a59-abed-2abbb00a5b2a", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "uuid": "e34574d2-bec5-40e1-bb94-dc696c6b4ba6", "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false }, { - "uuid": "ec7fd0ad-b67a-4d46-83ca-259009826877", - "scheduleReference": "F1*", + "uuid": "45d91067-d75f-4d42-bf7f-8b221bdcea21", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false + "siteRegistry": true } ] }, { - "uuid": "05828736-bd3e-4228-b5bc-c25f33a8de60", - "siteRegistry": true, - "dateReceived": "2016-07-23", - "dateCompleted": "2016-02-25", - "dateEntered": "2015-04-01", - "dateRegistrar": "2017-01-25", - "dateLocalAuthorityReceived": "2015-11-02", - "summary": "Odio iusto atque nostrum magnam ullam.\nAd veritatis iusto.", - "informationUsed": "Nostrum officia enim eaque harum voluptatum.\nAb in nesciunt quas placeat laboriosam tempore.\nOccaecati ipsam consequuntur ratione natus.\nIllum impedit distinctio illo distinctio corrupti ipsam.", - "pastOrPresentOrders": "Sint vero dolores deleniti laborum explicabo voluptas pariatur.\nDoloribus eaque eveniet perferendis repellendus aspernatur perferendis perspiciatis.", + "uuid": "4786945c-374b-4062-9e00-3124544183c9", + "siteRegistry": false, + "dateReceived": "2017-10-26", + "dateCompleted": "2022-05-18", + "dateEntered": "2017-09-18", + "dateRegistrar": "2019-12-18", + "dateLocalAuthorityReceived": "2014-01-02", + "summary": "Tempora voluptatem ad.\nAspernatur veritatis suscipit laudantium hic nihil iusto rem nostrum alias.", + "informationUsed": "Omnis ducimus dolores sapiente molestiae dolor.\nRecusandae est pariatur perspiciatis asperiores qui cumque iste rerum voluptates.\nAccusamus similique nulla nesciunt.\nTempore accusantium autem reprehenderit velit aperiam ad neque assumenda.", + "pastOrPresentOrders": "Blanditiis maiores incidunt rem laborum dolores amet quas ipsam error.", "commercialAndIndustrialPurposes": [ { - "uuid": "2f043a96-cf4d-4632-bc0a-e4b4992f57d3", + "uuid": "7673be7c-d4d3-4768-8c7a-e649658d5901", "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "uuid": "93c6b661-81e2-44cb-ae5c-62da9d9e127b", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { - "uuid": "4d59ed1b-da22-40a0-aa82-c72561732dcb", + "uuid": "25b0fc82-7595-4125-a670-91c8e04fe4d2", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "uuid": "98dd3396-e179-40a5-9eb2-be7f134b3595", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true @@ -38405,114 +44752,100 @@ ], "activityLog": [ { - "uuid": "b0f0c64e-77a3-4b88-9d8a-3598f994ba7a", - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "KUPHAL ALFREDO", - "timestamp": "2019-04-12" - }, - { - "uuid": "2372a0cc-ce6d-49f6-a791-10697621fd71", + "uuid": "42fbfe24-9a57-4fba-addd-ddebd7b4dd2b", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "WALTER DEVEN", - "timestamp": "2017-03-21" - }, - { - "uuid": "f58b70d1-d936-43bc-8cce-7c2c3148bad8", - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "ALTENWERTH MAYA", - "timestamp": "2017-12-09" + "user": "MCCULLOUGH-TOY ARNO", + "timestamp": "2021-12-25" }, { - "uuid": "b001bd56-dae2-4572-8cf2-a43349768d14", + "uuid": "13c3cbcf-d839-4d22-99aa-bc0eaa2e16a0", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "KUHLMAN CAMREN", - "timestamp": "2013-11-14" + "user": "LUBOWITZ JAMEY", + "timestamp": "2018-09-09" }, { - "uuid": "c4650794-4b8a-4894-b1b7-acc7e6e6b3fc", + "uuid": "e7577c25-f8c2-489c-9754-4688b6e6de0d", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "COLLIER JULIEN", - "timestamp": "2021-12-27" + "user": "MILLER NASH", + "timestamp": "2022-06-29" }, { - "uuid": "71cf6861-be98-4df2-bfc2-37042d11c97c", + "uuid": "2ba35f39-0b86-4c7a-89bc-070a88fa813c", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "RUECKER CIERRA", - "timestamp": "2014-05-08" + "user": "BORER RITA", + "timestamp": "2015-11-23" }, { - "uuid": "2a735648-d367-4c1f-96a8-56cb1ed23fda", - "siteRegistry": true, + "uuid": "b90b155c-f1c9-4a05-8c33-4bbce8d8c9d0", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "DOYLE-REINGER CORINE", - "timestamp": "2016-12-11" + "user": "BRAUN EMILIO", + "timestamp": "2021-02-22" }, { - "uuid": "e91958f9-4362-45ce-b3d0-24a870c8598c", + "uuid": "e3e3e3c5-d440-4aec-b5ad-7885fbdb6a6e", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "SMITH CAROLYNE", - "timestamp": "2019-08-03" + "user": "ORTIZ CLINT", + "timestamp": "2022-07-27" }, { - "uuid": "dfc2b8fb-57d5-43ea-84ca-5d687a8bd886", + "uuid": "de53afc7-c4ca-48cf-9a78-5bcf8b63ffc0", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "GLEICHNER DESHAUN", - "timestamp": "2018-07-19" + "user": "SCHOEN KENDALL", + "timestamp": "2016-03-18" } ], "associatedSites": [ { - "uuid": "1810053c-b956-452f-92f6-348c70a39a49", - "dateNoted": "2021-05-04", + "uuid": "d7aa2787-7e34-43a0-be4c-fc0d11a46bc1", + "dateNoted": "2020-07-10", "notes": "", - "parcelID": "17683", - "siteID": "16807", + "parcelID": "19680", + "siteID": "18484", "siteRegistry": false }, { - "uuid": "12871804-a776-42a3-87cd-3ff85f97a7cb", - "dateNoted": "2017-12-27", + "uuid": "3505c6bd-970c-417b-87cd-11a1a6016cbb", + "dateNoted": "2023-09-10", "notes": "", - "parcelID": "15562", - "siteID": "16651", - "siteRegistry": true + "parcelID": "18509", + "siteID": "18436", + "siteRegistry": false } ] }, { - "uuid": "3ecb0a43-8b1d-4f09-a5a7-d06a3545af61", - "siteID": 20942, - "address": "3828 Davis Fork", - "latitude": 50.0524, - "longitude": -131.1825, - "lastUpdated": "2018-12-10", - "city": "Celestinefurt", - "region": "Cariboo", - "victoriaFile": "26250-20/13009", + "uuid": "11a4c605-0dbd-45e9-b759-7ba6811f5154", + "siteID": 17100, + "address": "1774 Jenkins Motorway", + "latitude": 50.8248, + "longitude": -129.1743, + "lastUpdated": "2017-06-01", + "city": "Kansas City", + "region": "Mainland/Southwest", + "victoriaFile": "26250-20/13313", "regionalFile": "N/A", "parcelIDs": [ - 8566954, - 447691, - 1832961, - 9911172, - 4976136 + 3792327, + 8442852, + 230747, + 8357057, + 7651493 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "a5415cc8-c29f-4cfc-be95-37274bed6629", - "createdAt": "2022-08-11", - "completed": "2022-07-06", - "initiated": "2015-01-06", - "ministryContact": "KSHLERIN SONIA", + "uuid": "d733232a-d31b-4a3c-9a99-f5b8614a5c7a", + "createdAt": "2021-07-14", + "completed": "2018-02-03", + "initiated": "2020-10-20", + "ministryContact": "TURNER REUBEN", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -38521,32 +44854,32 @@ ], "notationParticipants": [ { - "uuid": "4ccb79b0-7a79-47ea-aa6d-2641242d5a4b", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "uuid": "42889839-e78e-4f99-8e41-1bccf377d392", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "da415762-a1ea-4546-a146-3e28b46b311d", - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "9567d87e-ad55-40f6-ae52-8ec2e3d0fedb", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "b25e1645-88cd-4c11-aa26-26ba29417ff8", - "name": "SHELL CANADA PRODUCTS", + "uuid": "b3f3a0c4-f6f1-405c-a50f-efd19cc14084", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false } ], "siteRegistry": false }, { - "uuid": "a3627a7f-ee71-4711-bdaa-b5287dcf21a4", - "createdAt": "2015-01-19", - "completed": "2017-01-20", - "initiated": "2014-08-11", - "ministryContact": "DAUGHERTY CRAIG", + "uuid": "a8a6aa1b-746a-44c1-91c4-79b0c6f4807b", + "createdAt": "2014-10-03", + "completed": "2022-10-01", + "initiated": "2014-09-17", + "ministryContact": "BEIER KYLE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -38555,38 +44888,32 @@ ], "notationParticipants": [ { - "uuid": "3c4d8695-014a-4755-a871-85fd01123f88", - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "uuid": "6e1d9655-e942-4068-9da7-36548beba89d", + "uuid": "249e1e4a-3a08-4105-b3c8-4577df777667", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "c84586ab-a3a6-41d8-a42b-2ac50db2cda1", - "name": "SHELL CANADA PRODUCTS", + "uuid": "44adfe07-54b7-42d4-8191-66567b4b726e", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "2c320d06-1e64-45a9-8277-22ca1e60192e", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false + "uuid": "c4dac91c-12e3-4c52-84ba-7bf14b56f921", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "562a22a5-3dcb-478e-9976-d73d95a3c838", - "createdAt": "2014-02-09", - "completed": "2014-08-01", - "initiated": "2015-12-16", - "ministryContact": "HANSEN SALLY", + "uuid": "15397530-c7a3-4433-a718-9a7c36f41582", + "createdAt": "2017-02-17", + "completed": "2023-05-04", + "initiated": "2020-12-27", + "ministryContact": "BARTELL RAHSAAN", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -38595,38 +44922,26 @@ ], "notationParticipants": [ { - "uuid": "09a668c3-f752-4fd5-85ad-b8dbc2df8c8f", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "uuid": "ae7873fb-19e0-4b5b-8fc6-1c18d5f50956", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "uuid": "163dcb5c-e7e8-4e5f-8f12-39d538a5b389", + "uuid": "e3373201-8783-4c59-81e7-91fec857ceef", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true }, { - "uuid": "a2b0403f-ce9e-490a-b45c-9d9814ab2845", + "uuid": "8fe049aa-5a17-49d1-b7e5-46e0aa4ee771", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": true } ], "siteRegistry": true }, { - "uuid": "c4251668-658a-4fda-9f6b-61338620356f", - "createdAt": "2015-05-04", - "completed": "2014-08-02", - "initiated": "2018-03-16", - "ministryContact": "CONN SHANNON", + "uuid": "bd45bdaf-6657-4231-8abf-3fc5e7d54a75", + "createdAt": "2018-04-06", + "completed": "2020-05-25", + "initiated": "2018-03-30", + "ministryContact": "LANGOSH KAMILLE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -38635,26 +44950,26 @@ ], "notationParticipants": [ { - "uuid": "7026341a-8a3c-47b2-893c-dc47b328c286", - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "75c0abbc-e430-41a7-a902-8799c0ea23ec", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false }, { - "uuid": "14f2e154-804e-4d31-96ff-dde1a492612a", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true + "uuid": "5eb7355f-303a-4d8a-9edc-5c2a15a6041c", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false } ], "siteRegistry": true }, { - "uuid": "dc3b042c-4794-49c3-9a95-6192eb992200", - "createdAt": "2017-10-31", - "completed": "2023-08-30", - "initiated": "2022-05-23", - "ministryContact": "ORN JACKLYN", + "uuid": "596352ad-1a94-40f8-b8bc-8f4f78878fd7", + "createdAt": "2014-07-03", + "completed": "2020-06-26", + "initiated": "2014-03-22", + "ministryContact": "LEFFLER ORA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -38663,26 +44978,20 @@ ], "notationParticipants": [ { - "uuid": "0188c9a0-d267-4c4a-8ce1-c0d17b23a0fc", - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "uuid": "b6ad2829-b361-4a2e-9878-9a679d8f35e9", - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "uuid": "3b916da2-7fe0-4167-a1f7-2b7333e2e48e", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "0bc5ed5c-9808-412a-9cc6-dae3d2449daa", + "uuid": "a1c25203-5b63-4ef6-88f9-e48361ce3ba4", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true }, { - "uuid": "b6f7f231-5718-4cd3-a16e-e7dd1def0286", - "name": "SHELL CANADA PRODUCTS", + "uuid": "fea6f1b6-76ba-4d43-9664-ad7468a727e9", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true } @@ -38692,229 +45001,285 @@ ], "participants": [ { - "uuid": "90fb295d-fb75-44d4-95a8-39d3cbd25f78", - "name": "AMET, DOLOR SIT", - "endDate": "2022-08-06", - "startDate": "2019-04-15", + "uuid": "710b4a12-7c99-4110-aa18-7c00e3beb038", + "name": "IPSUM", + "endDate": "2014-06-24", + "startDate": "2018-03-10", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "605dd458-da44-4b3a-a1b1-69cb3d55b57a", - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2015-07-12", - "startDate": "2022-02-16", + "uuid": "6995fd22-c185-4043-b465-d6be3fd8aa2e", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2019-10-14", + "startDate": "2020-12-03", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": false + "siteRegistry": true + } + ], + "documents": [ + { + "uuid": "15dba2e3-7114-4e69-bf56-5a203e675cff", + "siteRegistry": false, + "documentDate": "2023-02-21", + "receivedDate": "2016-02-06", + "uploadedDate": "2016-02-05", + "title": "Preliminary Site Investigation, Detailed Site Investigation and Remedial Plan for the Management Area adjacent to the Shell Site at 1503 West 41st Ave", + "participants": [ + { + "uuid": "944201cd-dac7-43da-8806-d3b81af85d4a", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "a0b9a605-9129-45fb-8afa-351c25871b79", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "9c0498df-a550-4e0c-a9a9-ff33c91477a3", + "name": "AMET, DOLOR SIT", + "siteRegistry": false, + "role": "AUTHOR" + } + ] }, { - "uuid": "00e8f13f-7fa1-4bdf-831f-39363bb01cae", - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2018-02-23", - "startDate": "2019-08-29", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": false + "uuid": "5bebaaaa-5b39-4176-8469-b785ca65e1d9", + "siteRegistry": true, + "documentDate": "2017-05-13", + "receivedDate": "2020-05-13", + "uploadedDate": "2022-07-11", + "title": "Summary of Site Conditions, 1537 W 41st Avenue, Vancouver", + "participants": [ + { + "uuid": "5131b1fa-792c-45c6-a80d-8020548dae18", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": false, + "role": "AUTHOR" + } + ] } ], "suspectLandUses": [ { - "uuid": "80df6a38-56d6-452c-a3a2-49ab8a2ca53f", - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-09-24 (described on Site Profile dated 2018-09-24)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "uuid": "5163c83c-cc1e-4d48-a4f1-08c6389cc782", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2015-08-13 (described on Site Profile dated 2015-08-13)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "uuid": "9eb1d245-2530-40ad-8436-331f1c17741d", - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-02-16 (described on Site Profile dated 2021-02-16)", + "uuid": "cd2a740a-2596-4c81-82e9-a276b10f88e9", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2019-12-15 (described on Site Profile dated 2019-12-15)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "uuid": "ace78072-48b1-455c-a859-c4e3b85b0028", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2019-05-16 (described on Site Profile dated 2019-05-16)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "uuid": "346258dd-4f4e-41e5-81d8-69f4d65ef990", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2016-06-15 (described on Site Profile dated 2016-06-15)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "uuid": "5bc2dfce-8fcb-4745-bd8b-bab0400a3831", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2018-01-04 (described on Site Profile dated 2018-01-04)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], "parcelDescriptions": [ { - "uuid": "10c01753-1fd5-4b72-b956-bd6e07eecb0a", + "uuid": "6428deec-e72f-4338-b277-a0e3acab62e9", "siteRegistry": true, - "dateNoted": "2020-08-22", - "parcelID": "20799", - "crownLandUsePIN": "17833", - "crownLandFileNumber": "19285", - "landDescription": "LOT 3 OF LOT 3 BLOCK 1 DISTRICT LOT 4 PLAN 5852" - }, - { - "uuid": "961943da-e267-4682-b50f-190bf2f965b0", - "siteRegistry": false, - "dateNoted": "2023-06-16", - "parcelID": "20519", - "crownLandUsePIN": "18190", - "crownLandFileNumber": "19491", - "landDescription": "LOT 5 OF LOT 4 BLOCK 4 DISTRICT LOT 2 PLAN 7883" + "dateNoted": "2022-02-06", + "parcelID": "16608", + "crownLandUsePIN": "20551", + "crownLandFileNumber": "17023", + "landDescription": "LOT 4 OF LOT 5 BLOCK 3 DISTRICT LOT 1 PLAN 9252" }, { - "uuid": "d8a8f953-18c3-442e-9809-cfec5a936b19", + "uuid": "bf35ee9f-9f4d-41a1-9dd6-c9a89869421c", "siteRegistry": false, - "dateNoted": "2023-04-02", - "parcelID": "16476", - "crownLandUsePIN": "16826", - "crownLandFileNumber": "15652", - "landDescription": "LOT 3 OF LOT 3 BLOCK 5 DISTRICT LOT 3 PLAN 6156" + "dateNoted": "2017-01-29", + "parcelID": "18703", + "crownLandUsePIN": "17444", + "crownLandFileNumber": "16259", + "landDescription": "LOT 3 OF LOT 2 BLOCK 3 DISTRICT LOT 4 PLAN 3682" }, { - "uuid": "7b4b1d94-d121-4098-886a-d402b9a25c3e", + "uuid": "a5eda4ce-e094-4671-b6db-ea71425ab3f1", "siteRegistry": true, - "dateNoted": "2017-06-03", - "parcelID": "20983", - "crownLandUsePIN": "17367", - "crownLandFileNumber": "19745", - "landDescription": "LOT 4 OF LOT 4 BLOCK 1 DISTRICT LOT 3 PLAN 4776" + "dateNoted": "2019-09-14", + "parcelID": "17615", + "crownLandUsePIN": "18598", + "crownLandFileNumber": "17155", + "landDescription": "LOT 4 OF LOT 3 BLOCK 4 DISTRICT LOT 2 PLAN 9358" } ], "siteDisclosures": [ { - "uuid": "38b30737-b5e9-4701-a069-a76d79d715a9", - "siteRegistry": true, - "dateReceived": "2020-03-02", - "dateCompleted": "2018-06-26", - "dateEntered": "2019-02-10", - "dateRegistrar": "2022-07-02", - "dateLocalAuthorityReceived": "2023-09-17", - "summary": "Excepturi omnis nisi quaerat accusantium ea incidunt culpa fuga.\nA repudiandae aspernatur ad.\nMolestias ipsum ex aspernatur aperiam a mollitia nemo omnis.", - "informationUsed": "Enim placeat dolore atque.\nSequi in ea saepe provident totam.\nA sequi pariatur at mollitia.\nSint placeat illum ab error.\nAccusantium quos sed veniam quasi.", - "pastOrPresentOrders": "Voluptatem tempore autem sit doloribus debitis quibusdam.\nOccaecati dolore voluptatem error explicabo alias repellat voluptates.", + "uuid": "e20e208f-7abe-4b39-8997-57750314ff66", + "siteRegistry": false, + "dateReceived": "2017-11-01", + "dateCompleted": "2021-10-16", + "dateEntered": "2022-06-18", + "dateRegistrar": "2019-03-02", + "dateLocalAuthorityReceived": "2022-04-06", + "summary": "Voluptates necessitatibus aliquid reiciendis enim accusamus consequatur fugiat excepturi sunt.\nLabore eius quidem recusandae sequi.", + "informationUsed": "Neque esse illum molestiae architecto.\nDistinctio amet voluptate quos quod iusto voluptatum quam.\nVero architecto laudantium nulla nesciunt culpa quae repudiandae.\nHarum consequatur omnis modi dolore repellat porro maiores veritatis fugit.", + "pastOrPresentOrders": "Aperiam dolorum corrupti.", "commercialAndIndustrialPurposes": [ { - "uuid": "21fe6680-8627-4b15-ba10-f7d971f2844b", + "uuid": "7484bfcc-c1ab-48ed-8bda-7c86940e4676", "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "uuid": "afb6e698-79db-4512-999c-6c601100c91b", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false }, { - "uuid": "67bbb6ae-9b92-4e56-9220-7be46c7e9ad3", + "uuid": "0f40f240-42e3-4ce4-8d72-21a9b5286ab5", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false }, { - "uuid": "23b81dc8-7f66-4b4a-a6ea-83e07ee42be8", + "uuid": "6032a7c0-17ea-4bc9-92d4-2ac620c8814d", "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true } ] } ], "activityLog": [ { - "uuid": "d06df037-c64a-4978-b013-d93a7213ab00", + "uuid": "d43fde60-6fd5-4fb8-bd24-e84d3b743e7c", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "HAYES ARTURO", - "timestamp": "2020-03-21" + "user": "KOELPIN NOELIA", + "timestamp": "2017-03-12" + }, + { + "uuid": "c56bf586-a9a3-4e90-8992-fc79c0c222ef", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "MARKS BERTRAND", + "timestamp": "2020-08-28" }, { - "uuid": "6bbcf255-d5a5-4271-974c-5f16a17ca6d7", + "uuid": "14d48af0-fb8b-4afd-9e42-2bed9bf98df5", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "PFEFFER CAMDEN", - "timestamp": "2023-02-20" + "user": "BOYLE SONYA", + "timestamp": "2021-02-19" }, { - "uuid": "dcd28f10-1063-4c78-ad60-c8fec5c70c1c", + "uuid": "83b199f3-3def-4d9f-8b4e-8bf322c8d6f6", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "BASHIRIAN VELDA", - "timestamp": "2019-07-28" + "user": "HUELS WALKER", + "timestamp": "2023-02-07" }, { - "uuid": "3f393466-7863-4480-ad03-8a8edb4efb68", + "uuid": "82a0764c-10cf-4fad-9e42-d27fc94592dc", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "WEBER BONITA", - "timestamp": "2015-09-19" + "user": "BRADTKE IMELDA", + "timestamp": "2015-04-06" }, { - "uuid": "17528478-8a90-4dfc-a9f9-283f2beb932e", - "siteRegistry": true, + "uuid": "685c3193-494d-4a3a-b532-8bbe0b7f2785", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "BARTON CAREY", - "timestamp": "2020-11-21" + "user": "NADER-O'CONNER HAYLEY", + "timestamp": "2014-08-14" }, { - "uuid": "bb530dc7-f1ce-4356-8b3e-4f46a60553a8", - "siteRegistry": true, + "uuid": "7309ed4b-2824-42a0-9888-872bbaafa41a", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "LEBSACK AYANA", + "timestamp": "2015-02-16" + }, + { + "uuid": "52d94139-3eac-4469-9bdb-a5d0827c3b6b", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "DANIEL WERNER", - "timestamp": "2020-03-09" + "user": "O'KEEFE-DICKINSON IAN", + "timestamp": "2015-01-08" }, { - "uuid": "39dbdfd1-ab28-44ba-83bd-03f4a96635cd", + "uuid": "033d124b-11d5-4570-9267-007ec4fc3416", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "GLOVER DANGELO", - "timestamp": "2014-06-28" + "user": "TREUTEL JAZMIN", + "timestamp": "2015-12-17" } ], "associatedSites": [ { - "uuid": "978e4d14-9640-4352-8c70-f119b4ef316f", - "dateNoted": "2023-07-22", + "uuid": "e894fcc5-1183-4e11-8bca-7a10b268803c", + "dateNoted": "2017-12-27", "notes": "", - "parcelID": "18281", - "siteID": "20687", + "parcelID": "16144", + "siteID": "20450", "siteRegistry": true }, { - "uuid": "96742b23-fb59-4eab-9176-ed18996d71e8", - "dateNoted": "2022-02-02", + "uuid": "b002868f-5119-4f11-bc9a-6343289c5203", + "dateNoted": "2015-10-07", "notes": "", - "parcelID": "16284", - "siteID": "17062", + "parcelID": "17356", + "siteID": "18513", "siteRegistry": true - }, - { - "uuid": "382a5aba-1337-4e1b-b8e7-2d31d91fd1ff", - "dateNoted": "2017-07-17", - "notes": "", - "parcelID": "20822", - "siteID": "17608", - "siteRegistry": false } ] }, { - "uuid": "2199ed74-24c9-46d2-aae4-5408e2b570ef", - "siteID": 17277, - "address": "40783 Spencer Club", - "latitude": 49.4712, - "longitude": -126.5368, - "lastUpdated": "2014-04-10", - "city": "West Leta", - "region": " North Coast", - "victoriaFile": "26250-20/14420", + "uuid": "b4779fad-baf9-4eb8-aea0-e7c3b669471c", + "siteID": 17141, + "address": "951 Werner Crescent", + "latitude": 55.6724, + "longitude": -128.931, + "lastUpdated": "2022-09-19", + "city": "Fort Elsieport", + "region": "Mainland/Southwest", + "victoriaFile": "26250-20/8649", "regionalFile": "N/A", "parcelIDs": [ - 9570924, - 6718077, - 575200, - 4579511, - 155398 + 6976694, + 1407002, + 8988427, + 8459848, + 1925425 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "a7c35375-b6ac-42d6-aaa9-48964e1ee265", - "createdAt": "2015-04-17", - "completed": "2022-07-01", - "initiated": "2021-05-19", - "ministryContact": "KERTZMANN MAVIS", + "uuid": "ed331364-69d4-4a71-85e5-97957b7ae033", + "createdAt": "2020-01-01", + "completed": "2018-02-20", + "initiated": "2014-11-09", + "ministryContact": "SPENCER AMANI", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -38923,38 +45288,38 @@ ], "notationParticipants": [ { - "uuid": "9385afbb-a9df-42b7-930d-73e6c9c2df5f", + "uuid": "cc90260a-9392-4ea9-a42d-1fa728b49372", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "f63c492e-c139-46b1-a40c-eb58b4393008", + "uuid": "26ca38f8-2fb3-4d5c-b623-795e9c1a96a0", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "7da1ddd8-691e-4161-8fe7-278d2b50a5d5", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "uuid": "d2b88f91-3843-4fac-a062-d1147483b4e8", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "1130cf6c-e66b-4b0a-bedd-d7e917e7dd3e", + "uuid": "9896b2fd-917e-4efc-a06e-c6c68d5f2a73", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "ce5165c3-3f7d-4048-a26c-d11ff8498d46", - "createdAt": "2022-06-12", - "completed": "2017-07-22", - "initiated": "2019-08-07", - "ministryContact": "WIEGAND RIGOBERTO", + "uuid": "ef26e09e-f2f2-4d92-b453-1cf514d01ca6", + "createdAt": "2015-04-04", + "completed": "2018-10-23", + "initiated": "2020-10-01", + "ministryContact": "WILLIAMSON MARYJANE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -38963,130 +45328,34 @@ ], "notationParticipants": [ { - "uuid": "ecc8f231-7d17-4a0b-93e7-85ed98af38a6", - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "uuid": "78b3b83d-6954-40f9-989c-9401f32713ed", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "uuid": "741424aa-302a-4c4a-be60-9b48b972257b", + "uuid": "ad2feb81-c22e-472d-8c06-e8720a4b307b", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false }, { - "uuid": "dfa3372f-7aa8-4d17-93b3-9e874726eb7d", + "uuid": "bfe2af8a-4962-48c2-a170-a1357457bc09", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "uuid": "c73f2ed4-3a75-41ae-814d-a88611446c81", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false - } - ], - "siteRegistry": false - }, - { - "uuid": "c8ff79d1-5328-4e97-b4e0-3629974acbd9", - "createdAt": "2019-12-08", - "completed": "2014-07-31", - "initiated": "2014-03-20", - "ministryContact": "HOWE LANEY", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "uuid": "ffe72b1b-4e49-428a-915f-daa1a4733190", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true }, { - "uuid": "849ac5ca-6827-4f86-a2c9-d2c2ee554b47", + "uuid": "e2d89f1a-a367-41b6-b25f-3dd804548050", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "7982d98c-fc3e-4519-8871-377cd860653c", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - } - ], - "siteRegistry": true - }, - { - "uuid": "56b09273-0fd4-49c2-8f58-7542abcd4c65", - "createdAt": "2016-03-25", - "completed": "2021-03-20", - "initiated": "2022-03-03", - "ministryContact": "ADAMS PRECIOUS", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "uuid": "1f17fc88-8481-48e1-8a9e-e78bb80f768a", + "uuid": "c6893751-f496-4853-b33d-036d51cd91f7", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "75a032fa-def7-44d8-99f7-09d67a5ec8bf", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - } - ], - "siteRegistry": true - }, - { - "uuid": "39fc9f66-afca-4427-94b8-3192a95d4c25", - "createdAt": "2017-06-23", - "completed": "2017-12-17", - "initiated": "2015-03-30", - "ministryContact": "RUTHERFORD GARETT", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "uuid": "0f57367e-1719-4d0c-b895-e18cf00068ea", + "uuid": "d7cf40c6-7900-42c6-9574-c4d7449b83d1", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "uuid": "9952eee1-ed6c-437f-8c8b-230035eb1098", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", "siteRegistry": true - }, - { - "uuid": "75f4a8ab-d02d-466c-82be-694dbe0195a9", - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false } ], "siteRegistry": false @@ -39094,21 +45363,32 @@ ], "participants": [ { - "uuid": "cf3dd654-d475-463b-90bf-d2b30786cad7", + "uuid": "2cbdb06f-4eb5-4d4d-bc8a-a6741e3ec3f1", "name": "SHELL CANADA PRODUCTS", - "endDate": "2020-02-13", - "startDate": "2014-08-22", + "endDate": "2021-05-11", + "startDate": "2014-01-24", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": false + "siteRegistry": true + }, + { + "uuid": "b0846dc2-ed35-4ea0-94c4-cc5bfe687875", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2016-01-06", + "startDate": "2016-10-15", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true }, { - "uuid": "6ad65e8e-4f8f-46f5-92f7-28fa26eb028e", + "uuid": "56d8fcb7-16f8-4aed-ad38-168841212598", "name": "SHELL CANADA PRODUCTS", - "endDate": "2019-03-12", - "startDate": "2021-04-30", + "endDate": "2023-09-26", + "startDate": "2019-12-18", "notes": "", "roles": [ "ORGANIZATION" @@ -39116,235 +45396,332 @@ "siteRegistry": false } ], + "documents": [ + { + "uuid": "f7ba8c64-b768-4aca-aa46-d1c9770c779d", + "siteRegistry": false, + "documentDate": "2022-05-12", + "receivedDate": "2016-04-03", + "uploadedDate": "2019-01-18", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "669af7e0-36a2-41ae-af38-50bb2b472257", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "595fa663-8f66-468f-87e6-6df5d10caf36", + "name": "AMET, DOLOR SIT", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "89481888-9cde-4476-b0d4-cae6cc87fc59", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": true, + "role": "AUTHOR" + } + ] + }, + { + "uuid": "d35eae1a-e6be-4dae-9486-2726a69b373d", + "siteRegistry": false, + "documentDate": "2014-01-28", + "receivedDate": "2016-11-20", + "uploadedDate": "2018-07-27", + "title": "Preliminary Site Investigation, Detailed Site Investigation and Remedial Plan for the Management Area adjacent to the Shell Site at 1503 West 41st Ave", + "participants": [ + { + "uuid": "583a5ffd-d989-41b1-a3b0-f2818abfdf1b", + "name": "AMET, DOLOR SIT", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "719393e6-868a-42a1-b7cb-ea4a05dfc192", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": false, + "role": "AUTHOR" + } + ] + }, + { + "uuid": "41023429-2d2f-474b-a4c2-55967ab220b7", + "siteRegistry": false, + "documentDate": "2021-07-04", + "receivedDate": "2021-11-04", + "uploadedDate": "2014-09-07", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "fe2915a4-501e-46cc-ab54-c93ddbe90d8b", + "name": "AMET, DOLOR SIT", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "46c4ee72-170f-42ed-a009-c4e7f204c988", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "b4080fda-9500-4550-ad80-cc6ee1be2d39", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": false, + "role": "AUTHOR" + } + ] + } + ], "suspectLandUses": [ { - "uuid": "7bf9664e-0864-46ae-9170-e3061d292f5b", + "uuid": "c19dddfe-869a-4083-8558-a9b38d6e726d", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-12-27 (described on Site Profile dated 2021-12-27)", + "notes": "INSERTED FOR SITE PROFILE DATED 2022-12-24 (described on Site Profile dated 2022-12-24)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "uuid": "321e9418-4b41-4b56-8b4b-8c78780516a0", + "uuid": "4ca16c87-18c0-4855-8200-5f9f13162bd7", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2017-03-23 (described on Site Profile dated 2017-03-23)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "uuid": "5ec4b04d-7039-40a7-a33d-ac6449468715", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2023-06-17 (described on Site Profile dated 2023-06-17)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "notes": "INSERTED FOR SITE PROFILE DATED 2019-07-19 (described on Site Profile dated 2019-07-19)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], "parcelDescriptions": [ { - "uuid": "d7e0ab04-99bc-4e45-a804-d2930ba8ae75", + "uuid": "a3f1b1e3-f2fe-4b72-b7ef-21b0d683af20", "siteRegistry": false, - "dateNoted": "2016-05-10", - "parcelID": "17671", - "crownLandUsePIN": "20833", - "crownLandFileNumber": "18107", - "landDescription": "LOT 1 OF LOT 1 BLOCK 3 DISTRICT LOT 4 PLAN 5634" + "dateNoted": "2018-10-26", + "parcelID": "16526", + "crownLandUsePIN": "17780", + "crownLandFileNumber": "17074", + "landDescription": "LOT 5 OF LOT 1 BLOCK 4 DISTRICT LOT 2 PLAN 4846" + }, + { + "uuid": "ccae68ca-a6e1-4323-bf8a-95bbb7e5d16c", + "siteRegistry": false, + "dateNoted": "2014-02-27", + "parcelID": "17451", + "crownLandUsePIN": "20641", + "crownLandFileNumber": "18056", + "landDescription": "LOT 3 OF LOT 2 BLOCK 5 DISTRICT LOT 4 PLAN 9580" }, { - "uuid": "98897a2f-08be-4b71-b7a6-7dae1d8aa56f", + "uuid": "975c6dc9-1a65-4dc0-a77a-199813527c3c", "siteRegistry": false, - "dateNoted": "2014-11-16", - "parcelID": "18959", - "crownLandUsePIN": "18898", - "crownLandFileNumber": "20387", - "landDescription": "LOT 3 OF LOT 5 BLOCK 3 DISTRICT LOT 2 PLAN 8447" + "dateNoted": "2015-03-31", + "parcelID": "18752", + "crownLandUsePIN": "19651", + "crownLandFileNumber": "15939", + "landDescription": "LOT 3 OF LOT 2 BLOCK 2 DISTRICT LOT 1 PLAN 4126" } ], "siteDisclosures": [ { - "uuid": "b29010a2-1856-4d0d-b544-1a7c95ce2097", - "siteRegistry": false, - "dateReceived": "2021-10-10", - "dateCompleted": "2016-06-15", - "dateEntered": "2021-03-12", - "dateRegistrar": "2019-03-15", - "dateLocalAuthorityReceived": "2020-11-09", - "summary": "Commodi saepe iusto voluptatem facilis.", - "informationUsed": "Dignissimos et ipsum cupiditate quam maiores eos est natus quod.\nMinima ex assumenda.\nDignissimos aspernatur quas.", - "pastOrPresentOrders": "Perferendis deserunt culpa labore.\nNon sequi excepturi et dolorem doloribus vel temporibus quisquam sapiente.\nDolor voluptatum asperiores suscipit ipsum natus necessitatibus sint impedit ratione.", + "uuid": "dc67868f-0260-4821-839d-af1ef693addd", + "siteRegistry": true, + "dateReceived": "2016-09-04", + "dateCompleted": "2018-04-24", + "dateEntered": "2015-01-22", + "dateRegistrar": "2022-01-26", + "dateLocalAuthorityReceived": "2014-11-24", + "summary": "Corporis ad molestiae reprehenderit ea delectus magnam ipsam vero magni.", + "informationUsed": "Non vero ipsam error nisi at.\nPlaceat praesentium molestias eius illum impedit.\nNobis assumenda ut soluta fuga.\nDolores possimus cum sed ut voluptas doloremque.\nNulla consequuntur architecto voluptates aliquam numquam veniam ipsa.", + "pastOrPresentOrders": "Provident nihil voluptas rem deserunt.\nIncidunt mollitia possimus magnam consequatur adipisci officia mollitia.", "commercialAndIndustrialPurposes": [ { - "uuid": "e2680013-a350-401b-8563-ea5e804af003", - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true - }, - { - "uuid": "88de4dad-fc19-4590-8aea-fa3ffd9f2c11", + "uuid": "325be340-77cc-41e4-a659-67fe085038a5", "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { - "uuid": "2be174ab-14f4-446c-8605-f2f8500c80de", + "uuid": "d535d666-a261-4f99-9b97-ed75f2188b4c", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { - "uuid": "91997bc6-3449-4140-a2ef-e101e27d0e6e", - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true + "uuid": "df310c32-945d-417d-8143-0d7e7087f323", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false } ] }, { - "uuid": "d2b4e2f5-818a-4be1-9e46-9a92376e6cef", - "siteRegistry": false, - "dateReceived": "2017-05-06", - "dateCompleted": "2016-04-22", - "dateEntered": "2018-12-25", - "dateRegistrar": "2016-07-18", - "dateLocalAuthorityReceived": "2023-04-03", - "summary": "Porro magni quas hic amet nam quas quos eligendi molestias.", - "informationUsed": "Aliquid voluptatibus ea voluptate eaque reiciendis.\nId dicta aut aliquid harum modi.\nLaborum inventore ullam dolor commodi nulla.\nPerspiciatis quas dolorum animi et fuga accusamus.", - "pastOrPresentOrders": "Maiores iure voluptates quo laudantium.\nUt atque perferendis reprehenderit repudiandae voluptate labore.", + "uuid": "60bda256-8973-43ae-955c-69129ad1375b", + "siteRegistry": true, + "dateReceived": "2015-05-05", + "dateCompleted": "2021-07-08", + "dateEntered": "2021-08-17", + "dateRegistrar": "2021-10-25", + "dateLocalAuthorityReceived": "2014-01-13", + "summary": "Non mollitia totam distinctio enim tempore eius totam.\nRepudiandae nemo repellendus laborum veniam.", + "informationUsed": "Quasi dolore ea adipisci voluptas.\nFugiat iure ipsam.\nMinima deserunt magnam odio dolore ut neque.\nAt iusto facere similique hic praesentium.\nQuidem ut voluptatibus consectetur eveniet eum.", + "pastOrPresentOrders": "Tempore maxime blanditiis nesciunt temporibus tempore fugit cumque.", "commercialAndIndustrialPurposes": [ { - "uuid": "a154ad4d-a2bb-417d-aad3-628746172e35", - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true + "uuid": "4e5799b0-6246-4697-a828-1a2371bd5058", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false }, { - "uuid": "f96b8a59-5708-434e-b896-9af9421b41b8", - "scheduleReference": "F1*", + "uuid": "2d3a0838-dd96-41e0-af39-507f775f9614", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { - "uuid": "e0d3cd8e-6efb-46e4-8006-a961b044644a", - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "uuid": "5b7bcf27-9a79-4503-b533-561155e9c4b2", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false }, { - "uuid": "e8b0c2ee-fec4-4329-ae08-4c62cc8c173c", + "uuid": "2cbd0d12-23f5-40fc-8d5c-ddde9c26057e", "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true } ] } ], "activityLog": [ { - "uuid": "28f211fe-900b-43f7-aea6-2f5186bbc5d6", + "uuid": "049d79c3-e1ee-4072-a4d2-5391eba553a1", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "JACOBSON ANTOINETTE", - "timestamp": "2014-10-21" + "user": "KUNZE-FERRY JENIFER", + "timestamp": "2021-07-07" }, { - "uuid": "5694fe19-1e18-4757-9f0e-436069ac842a", - "siteRegistry": true, + "uuid": "241e6128-0003-4140-a24d-b82ec03af57e", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "WISOZK META", - "timestamp": "2019-03-25" + "user": "DAUGHERTY ABDIEL", + "timestamp": "2014-09-15" }, { - "uuid": "b82eb21b-06ae-40d3-a728-a00d56618c02", - "siteRegistry": false, + "uuid": "2b36d2ec-f776-4850-9732-57912e09dd71", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "JONES BILL", - "timestamp": "2014-10-26" + "user": "LITTLE WILL", + "timestamp": "2015-07-16" }, { - "uuid": "a55d4a19-1cbb-454a-9927-45e07789e799", - "siteRegistry": false, + "uuid": "39ccfc61-9fff-46dc-a5fb-6ecb91b332b8", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "RODRIGUEZ JEANNE", - "timestamp": "2020-06-26" + "user": "MANN POLLY", + "timestamp": "2021-03-13" }, { - "uuid": "db14a693-befb-404f-bf85-2814c6490570", - "siteRegistry": false, + "uuid": "14348a63-a0e3-4cd4-a186-3aedc7846634", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "ROLFSON ZOLA", - "timestamp": "2021-01-25" + "user": "CORMIER KAVON", + "timestamp": "2017-07-22" }, { - "uuid": "edce602f-fe79-4f85-9c79-69e05545ce93", - "siteRegistry": true, + "uuid": "cddb43c6-b328-4b52-ad19-a6a85ec3d2ba", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "O'KEEFE KYLIE", - "timestamp": "2020-10-19" + "user": "KUB QUINN", + "timestamp": "2016-05-25" }, { - "uuid": "86c8c511-61f0-4459-a0b6-bfa6d2630ccd", + "uuid": "6f46da4a-0764-4965-83d7-4bfd5c5342de", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "SCHOWALTER DANNIE", - "timestamp": "2019-10-20" + "user": "HODKIEWICZ GIUSEPPE", + "timestamp": "2021-02-14" }, { - "uuid": "09a70061-1d68-4cde-9dae-66df849b8a08", + "uuid": "cca0e8da-93ef-4bff-b8ce-36083516f474", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "GOYETTE CLARA", - "timestamp": "2019-06-13" + "user": "BERGSTROM MANDY", + "timestamp": "2016-07-16" }, { - "uuid": "20bf09cf-7935-45c4-b830-c0a85af63498", + "uuid": "fc7ba362-c38c-4969-b16a-29a951a9f158", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "MOSCISKI DENNIS", - "timestamp": "2019-02-17" + "user": "MUELLER REYMUNDO", + "timestamp": "2022-04-25" }, { - "uuid": "9762daad-b56a-4ad5-9f22-61dbb18968fa", + "uuid": "90ab9628-5caa-4bb1-abd9-1d5d8f01580b", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "MCCLURE NEWTON", - "timestamp": "2017-06-22" + "user": "BOYLE FREDERIQUE", + "timestamp": "2021-10-11" } ], "associatedSites": [ { - "uuid": "e8175cbe-2f25-47a1-9a9a-529aa91d0879", - "dateNoted": "2014-12-17", + "uuid": "d811f171-b170-439a-8d55-4476fd0a1293", + "dateNoted": "2022-06-27", "notes": "", - "parcelID": "17274", - "siteID": "17834", + "parcelID": "20150", + "siteID": "18484", + "siteRegistry": true + }, + { + "uuid": "7f7b1b41-1d89-4830-a913-10fe984a00db", + "dateNoted": "2014-07-30", + "notes": "", + "parcelID": "20703", + "siteID": "20206", "siteRegistry": false }, { - "uuid": "2e62251a-d29c-40ad-8a83-1d55ee905662", - "dateNoted": "2017-03-23", + "uuid": "7683e79c-501c-4a5f-a4e2-065c0583f3f4", + "dateNoted": "2023-07-14", "notes": "", - "parcelID": "19688", - "siteID": "16353", + "parcelID": "18324", + "siteID": "19298", "siteRegistry": true } ] }, { - "uuid": "672a595a-5b4f-4afa-9b32-0a7629e1c501", - "siteID": 19196, - "address": "4677 Kennedi Way", - "latitude": 55.0154, - "longitude": -127.8257, - "lastUpdated": "2022-02-17", - "city": "Huelberg", - "region": "Vancouver Island/Coast", - "victoriaFile": "26250-20/13434", + "uuid": "bddc5449-80a3-48f8-976f-8ffc47b53e77", + "siteID": 17592, + "address": "645 Brando Route", + "latitude": 49.1984, + "longitude": -127.2095, + "lastUpdated": "2014-04-21", + "city": "Borerstad", + "region": "Kootenay", + "victoriaFile": "26250-20/5278", "regionalFile": "N/A", "parcelIDs": [ - 7456029, - 1701972, - 5860749, - 3557880, - 2354816 + 4445722, + 7628197, + 3715458, + 1729600, + 6071703 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "034a2e32-b6f7-46d3-8195-91e771b11e2a", - "createdAt": "2018-05-07", - "completed": "2013-12-04", - "initiated": "2022-02-14", - "ministryContact": "HACKETT TORRANCE", + "uuid": "8840a533-2bc2-43f1-8b7a-4efe0eadbd56", + "createdAt": "2016-11-02", + "completed": "2019-06-06", + "initiated": "2018-12-14", + "ministryContact": "JACOBSON ABBIGAIL", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -39353,38 +45730,106 @@ ], "notationParticipants": [ { - "uuid": "c932b524-ee5b-4380-bc83-daa39bbd3b89", + "uuid": "e269b67f-6051-4a7b-9325-a127362cfe9c", "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "fde291b0-a656-49be-b8a5-504c006cc23f", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "195b03ee-b6e0-4023-9bf7-b033edf557ac", + "uuid": "f1534c57-6a05-49ff-b3d1-74fe0dc1040b", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "uuid": "14b9e15f-681b-49e7-b5b4-348be93e8f6f", + "createdAt": "2014-09-13", + "completed": "2023-04-06", + "initiated": "2017-08-06", + "ministryContact": "DAUGHERTY CORTEZ", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "uuid": "204f5e5a-b4f9-495d-b0a3-ec19bd1ec27a", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "uuid": "65db9c3b-3724-4f68-93d3-081e9fe949c3", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "72aaa2ea-5a60-4982-bda4-0fbc31a604e3", + "uuid": "2b801873-7b03-4f1b-b4f5-a5f1e4b52d4e", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "uuid": "584241e9-5f32-41c6-8777-726cdfcc14cf", + "createdAt": "2014-10-13", + "completed": "2023-07-19", + "initiated": "2017-10-29", + "ministryContact": "MRAZ AYLIN", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "uuid": "2acde38e-6070-419c-a71b-3b3c517236d9", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": true }, { - "uuid": "6d23a47d-d777-41fb-adfc-a04a9cbc3c25", + "uuid": "35a9df73-d9c0-4d23-bf3e-30658328c76d", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "uuid": "9b9513e5-803d-4132-a0c4-fb9aa84acbdb", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "uuid": "18cd7e8a-21e1-428e-b1dc-80ac33e8cffc", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": true } ], "siteRegistry": false }, { - "uuid": "54acd1df-346e-4118-9b29-6235e5138a6b", - "createdAt": "2022-03-26", - "completed": "2019-05-13", - "initiated": "2021-09-29", - "ministryContact": "REINGER JETTIE", + "uuid": "08e4afd6-afa0-453f-bd1b-0a9483f3e3e5", + "createdAt": "2023-06-22", + "completed": "2017-03-30", + "initiated": "2013-10-25", + "ministryContact": "LOWE ERICK", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -39393,26 +45838,26 @@ ], "notationParticipants": [ { - "uuid": "9d84a3d4-85e2-4bdb-b729-aba8ee6af983", + "uuid": "3c84d47e-8fe3-4b7f-b07e-3ee94b25a01f", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false }, { - "uuid": "a195227d-2612-487e-882c-6a9f5643a441", - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true + "uuid": "113e63ba-0c2f-4b03-b18c-80fa56260732", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false } ], "siteRegistry": true }, { - "uuid": "fa730752-695e-4311-b20c-7f8ee5675cf0", - "createdAt": "2021-07-27", - "completed": "2022-12-18", - "initiated": "2019-11-18", - "ministryContact": "HUDSON GAETANO", + "uuid": "1552663c-d6fe-4a4d-99ea-c614a6e63d76", + "createdAt": "2021-10-09", + "completed": "2022-04-12", + "initiated": "2022-07-04", + "ministryContact": "GISLASON EMILIANO", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -39421,280 +45866,372 @@ ], "notationParticipants": [ { - "uuid": "42fefe2a-446b-4e33-8b83-677df5e7adac", + "uuid": "f4c69edc-46c1-471c-9ac7-8d2475322495", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false + "role": "REQUESTED BY", + "siteRegistry": true }, { - "uuid": "b6e36dca-8531-4750-a27d-de1e11c3310c", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "uuid": "b3ff3b3c-c9ce-4e14-bf97-2bc3bd3c3364", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": false }, { - "uuid": "cc50f7cc-3c71-4cf7-9801-e43507864ad2", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true + "uuid": "4d3ee42f-fa95-42d6-ac05-03b7d0d4961c", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false }, { - "uuid": "4f049304-ed58-4bae-a15f-1efefffc729e", + "uuid": "a423e31d-daf4-4787-b1ed-a9c699a6aefe", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true } ], "participants": [ { - "uuid": "e8d35261-9a67-4abd-9001-e2d536b3f1f5", + "uuid": "9756880c-dd8f-45cc-955a-49e01f7d23f4", + "name": "AMET, DOLOR SIT", + "endDate": "2017-09-04", + "startDate": "2022-08-15", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "uuid": "ce9a9b6e-8692-4cf3-bdef-b13266d8ef5b", "name": "IPSUM", - "endDate": "2022-09-12", - "startDate": "2015-05-13", + "endDate": "2016-01-08", + "startDate": "2015-03-16", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "af5e036d-a0f6-4675-8202-e3b35938b466", - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2020-02-26", - "startDate": "2013-12-02", + "uuid": "a1df4c9e-c765-4219-8da8-34d307f0c4f4", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2015-07-24", + "startDate": "2014-08-26", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": true }, { - "uuid": "11007c6d-f9d0-4ae0-869e-b8f58fd3a2d8", + "uuid": "6b5d2e51-8f31-4e43-824e-ebc11ca2af92", "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2016-02-04", - "startDate": "2019-01-04", + "endDate": "2014-02-23", + "startDate": "2014-05-19", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": true } ], - "suspectLandUses": [ + "documents": [ { - "uuid": "bbdf6aa4-26c7-4f8a-924f-7bb556e53a87", + "uuid": "82118787-bdac-4bad-ac27-d7c1492f0671", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2013-11-26 (described on Site Profile dated 2013-11-26)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "documentDate": "2015-12-07", + "receivedDate": "2020-09-28", + "uploadedDate": "2018-07-13", + "title": "Summary of Site Conditions, 1537 W 41st Avenue, Vancouver", + "participants": [ + { + "uuid": "666232d0-3e45-4d8b-9d08-a36d1293e0ea", + "name": "AMET, DOLOR SIT", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "67808b1d-6a28-45d3-aa59-3cc74c9736c0", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": false, + "role": "AUTHOR" + } + ] }, { - "uuid": "498921d1-f86b-47e7-8cbd-09353d05795d", + "uuid": "0d3522da-5311-4e12-ae70-647ee4cfb1fc", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-03-18 (described on Site Profile dated 2017-03-18)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "documentDate": "2014-01-23", + "receivedDate": "2021-01-08", + "uploadedDate": "2014-03-19", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "02e5be6b-3953-4efa-969b-fe84965e27a6", + "name": "IPSUM", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "c33a9eb4-0830-41b1-8921-a6ebbeebf993", + "name": "AMET, DOLOR SIT", + "siteRegistry": false, + "role": "AUTHOR" + } + ] }, { - "uuid": "a598dece-440a-4097-999e-54d7971e6ad4", + "uuid": "d6fff02d-8f07-4b98-889a-10513e24bc6e", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-06-24 (described on Site Profile dated 2021-06-24)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "documentDate": "2017-12-27", + "receivedDate": "2014-07-27", + "uploadedDate": "2022-06-20", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "4b26222d-d4d9-48f1-b9d3-d82270776ce5", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": false, + "role": "AUTHOR" + } + ] } ], - "parcelDescriptions": [ + "suspectLandUses": [ { - "uuid": "5c1365b9-0706-49b6-affd-6e4cd93d98ef", + "uuid": "6ab24915-32a5-4fe7-97b4-2cc977478c68", "siteRegistry": false, - "dateNoted": "2015-07-16", - "parcelID": "17667", - "crownLandUsePIN": "17070", - "crownLandFileNumber": "17090", - "landDescription": "LOT 3 OF LOT 5 BLOCK 3 DISTRICT LOT 3 PLAN 8041" + "notes": "INSERTED FOR SITE PROFILE DATED 2016-07-20 (described on Site Profile dated 2016-07-20)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "uuid": "c3198b11-83d9-4acd-906a-d656fa9d614c", - "siteRegistry": false, - "dateNoted": "2019-07-29", - "parcelID": "17817", - "crownLandUsePIN": "16410", - "crownLandFileNumber": "20426", - "landDescription": "LOT 1 OF LOT 1 BLOCK 4 DISTRICT LOT 3 PLAN 7614" + "uuid": "fb6eab43-3c22-4794-aecf-b269320cd0a7", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2014-05-12 (described on Site Profile dated 2014-05-12)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "uuid": "3702b7e3-917a-46cf-8f86-1d9a77f5ef14", + "uuid": "222eaa09-a5de-41ad-988a-f2d0032da4cc", "siteRegistry": true, - "dateNoted": "2018-10-31", - "parcelID": "16146", - "crownLandUsePIN": "15697", - "crownLandFileNumber": "18064", - "landDescription": "LOT 4 OF LOT 4 BLOCK 2 DISTRICT LOT 3 PLAN 6916" + "notes": "INSERTED FOR SITE PROFILE DATED 2022-03-08 (described on Site Profile dated 2022-03-08)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + } + ], + "parcelDescriptions": [ + { + "uuid": "7809ea57-cd51-47e4-85d3-213f22507d21", + "siteRegistry": true, + "dateNoted": "2017-04-07", + "parcelID": "20863", + "crownLandUsePIN": "15569", + "crownLandFileNumber": "15834", + "landDescription": "LOT 4 OF LOT 4 BLOCK 4 DISTRICT LOT 5 PLAN 5570" + }, + { + "uuid": "0717c266-b994-40e0-bbb8-dcddbb352a2e", + "siteRegistry": true, + "dateNoted": "2020-11-14", + "parcelID": "20804", + "crownLandUsePIN": "16716", + "crownLandFileNumber": "20018", + "landDescription": "LOT 1 OF LOT 4 BLOCK 2 DISTRICT LOT 3 PLAN 6970" }, { - "uuid": "7eb5cfe8-c61a-4596-9fb3-7efaef9176b7", + "uuid": "8434a769-41bb-4285-b6e2-89e0c50e454e", "siteRegistry": false, - "dateNoted": "2023-06-30", - "parcelID": "15355", - "crownLandUsePIN": "19543", - "crownLandFileNumber": "15295", - "landDescription": "LOT 1 OF LOT 1 BLOCK 3 DISTRICT LOT 3 PLAN 8196" + "dateNoted": "2020-06-14", + "parcelID": "17869", + "crownLandUsePIN": "17274", + "crownLandFileNumber": "19162", + "landDescription": "LOT 2 OF LOT 2 BLOCK 5 DISTRICT LOT 1 PLAN 4183" } ], "siteDisclosures": [ { - "uuid": "3a88a3ae-450d-4b83-ae43-6a4641ee6fb7", - "siteRegistry": true, - "dateReceived": "2019-01-05", - "dateCompleted": "2023-05-22", - "dateEntered": "2018-12-09", - "dateRegistrar": "2016-03-12", - "dateLocalAuthorityReceived": "2016-08-13", - "summary": "Debitis nisi illum unde ex.", - "informationUsed": "Illum saepe fugiat odio ipsam velit aperiam impedit veniam.\nLaboriosam sequi natus.\nPossimus veritatis doloribus explicabo velit officiis.", - "pastOrPresentOrders": "Ratione vel magni cum aperiam amet ipsum alias quod.\nIncidunt eos esse voluptates corrupti.", + "uuid": "c06b1104-f6ae-425e-ba6d-695d6bc80cfb", + "siteRegistry": false, + "dateReceived": "2016-10-20", + "dateCompleted": "2022-03-14", + "dateEntered": "2021-06-15", + "dateRegistrar": "2014-08-07", + "dateLocalAuthorityReceived": "2014-02-19", + "summary": "Atque omnis fugiat praesentium ullam fugit.\nNobis culpa perferendis labore ullam quisquam facere aliquid.", + "informationUsed": "Deleniti enim itaque tempore harum odit quaerat quis itaque corrupti.\nEsse architecto et esse.\nAssumenda odit enim autem veritatis possimus repudiandae consequuntur.\nArchitecto autem quisquam nihil nesciunt.", + "pastOrPresentOrders": "Animi eum dolorem repudiandae.\nDucimus omnis quasi adipisci quisquam beatae deserunt ut.", "commercialAndIndustrialPurposes": [ { - "uuid": "ecff0dad-8953-4df2-bc14-022c0d9ed396", + "uuid": "ede073d6-04b0-4480-9f60-1cca37004b8d", "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "uuid": "9558b7db-c708-4b5e-aa03-6cecfcdc1668", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "645c3bd3-088b-4471-b17e-75aa01d66eea", + "uuid": "f0095ca7-2b2a-465d-8b0d-f53450417914", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true + }, + { + "uuid": "bbe79e70-8289-4217-9298-98e7af2719ae", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false } ] }, { - "uuid": "c9d0475c-9aeb-4e04-9ac2-eb2d70b98ac9", - "siteRegistry": true, - "dateReceived": "2016-01-17", - "dateCompleted": "2023-06-03", - "dateEntered": "2017-04-06", - "dateRegistrar": "2019-07-17", - "dateLocalAuthorityReceived": "2016-08-09", - "summary": "Dolores voluptatibus voluptate.\nAd officiis optio.", - "informationUsed": "Ducimus quos sunt maxime nobis ipsum unde impedit totam.\nVoluptates incidunt dolor ratione doloremque a inventore maiores voluptatum natus.\nOdit soluta consequuntur ad saepe.\nEum molestias facere itaque dolores eveniet itaque.", - "pastOrPresentOrders": "Iste nesciunt aspernatur aperiam iste voluptates.\nConsequuntur aut reiciendis assumenda dignissimos aliquid quibusdam reprehenderit nihil.", + "uuid": "42009a68-07e8-4793-951a-ef809905de98", + "siteRegistry": false, + "dateReceived": "2021-05-07", + "dateCompleted": "2022-10-02", + "dateEntered": "2017-07-30", + "dateRegistrar": "2022-01-05", + "dateLocalAuthorityReceived": "2017-10-18", + "summary": "Nam blanditiis beatae.\nAliquam alias vel.\nQuia explicabo commodi iusto atque repudiandae magnam.", + "informationUsed": "Occaecati totam ducimus quisquam asperiores officiis exercitationem quasi.\nTotam odio perferendis quaerat dolores aliquid autem explicabo id.\nBeatae illo blanditiis facere.\nIure deserunt sequi magni consequuntur deserunt quidem provident ab autem.", + "pastOrPresentOrders": "Consequuntur eligendi velit.\nReprehenderit quas quam necessitatibus delectus.\nQuam sapiente sequi quo pariatur laborum sit repellendus est tenetur.", "commercialAndIndustrialPurposes": [ { - "uuid": "5f285111-d48a-4dcd-a029-e07810ef5d04", - "scheduleReference": "F2*", + "uuid": "79de268e-ed3e-4248-81f9-ba3a16589207", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, { - "uuid": "1833b3f6-e1f0-4255-b799-fa0a2fe9e0ba", + "uuid": "38382efc-6fae-4671-92ab-0fe63fe7212b", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "e112b752-d2aa-4c83-9817-2553d8874e14", + "uuid": "4d14c489-2565-4524-baff-0bf4aa778c47", "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false }, { - "uuid": "218c30ab-4615-4761-9326-af68fcdf92bc", - "scheduleReference": "F2*", + "uuid": "f881481b-2186-408a-b873-20cce08ff49c", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false + "siteRegistry": true } ] } ], "activityLog": [ { - "uuid": "23515563-3a02-4c4b-be2d-8b0df6c6f20d", + "uuid": "4f2d33b2-8378-40fb-901b-cee4bd02efde", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "KUNZE JUSTON", - "timestamp": "2023-09-30" + "user": "TREMBLAY MONTANA", + "timestamp": "2014-02-18" }, { - "uuid": "ed8a12f9-c2ad-4f2d-ac28-e8bd7b255f60", - "siteRegistry": true, + "uuid": "71fc88d0-a240-4ff0-9372-e27ac598c759", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "TREMBLAY WILTON", - "timestamp": "2016-09-02" + "user": "KLING DIXIE", + "timestamp": "2014-08-31" }, { - "uuid": "ca83d589-7504-4a53-abed-bd897b3a7007", - "siteRegistry": true, + "uuid": "e295a98c-aecc-4c14-995a-0ef7e79a93b3", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "KOZEY ROXANNE", - "timestamp": "2015-07-23" + "user": "CRIST ICIE", + "timestamp": "2023-07-28" }, { - "uuid": "b4fb63a6-0f87-4edc-b212-ac2fc99088e2", - "siteRegistry": true, + "uuid": "fc66c9af-f465-4d36-ad2d-d8516af018b8", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "MCDERMOTT THALIA", - "timestamp": "2016-04-08" + "user": "MACEJKOVIC HELENA", + "timestamp": "2021-08-17" }, { - "uuid": "aba40a72-54f3-4e3c-b312-3dbd11ae25cb", - "siteRegistry": true, + "uuid": "92d3e990-148a-4bdc-8162-6412664fba0e", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "DUBUQUE-DIETRICH LOY", - "timestamp": "2014-01-05" + "user": "CONROY XANDER", + "timestamp": "2019-08-06" }, { - "uuid": "0b35f6ea-3af2-4b10-9a36-2a51d5b433a9", - "siteRegistry": false, + "uuid": "835decbf-fc79-48a4-9dc6-6c8a3262040d", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "CHRISTIANSEN ALBERTO", - "timestamp": "2018-10-02" + "user": "FRANEY MEGGIE", + "timestamp": "2018-05-19" }, { - "uuid": "c520f056-7d47-49a8-a098-01745a75d04e", + "uuid": "a8914c5d-d8fb-4420-9964-3f0cfb494922", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "STIEDEMANN TRACEY", - "timestamp": "2022-04-24" + "user": "BEATTY DARRELL", + "timestamp": "2020-05-31" } ], "associatedSites": [ { - "uuid": "64556d57-045b-4bb1-861c-8e4ac4413a18", - "dateNoted": "2023-01-09", + "uuid": "68285d0b-3309-4b14-9f05-a54ba8a5921a", + "dateNoted": "2018-03-10", "notes": "", - "parcelID": "18701", - "siteID": "16804", + "parcelID": "15541", + "siteID": "19903", "siteRegistry": false + }, + { + "uuid": "38424161-8a1a-4c50-9e6f-db79dc256dda", + "dateNoted": "2023-03-22", + "notes": "", + "parcelID": "19683", + "siteID": "17503", + "siteRegistry": true + }, + { + "uuid": "599e7167-1775-4317-ab2b-50b7765de3b3", + "dateNoted": "2019-10-07", + "notes": "", + "parcelID": "17418", + "siteID": "16890", + "siteRegistry": true } ] }, { - "uuid": "eb400f8b-68a5-4607-bc6d-a26836fc3fb6", - "siteID": 18050, - "address": "28900 Zieme Lights", - "latitude": 52.5136, - "longitude": -121.7426, - "lastUpdated": "2023-02-10", - "city": "Beahanborough", - "region": " North Coast", - "victoriaFile": "26250-20/17137", + "uuid": "48135aa1-e3dc-4fd3-9f05-11241319c3a6", + "siteID": 17989, + "address": "90447 Wilton Canyon", + "latitude": 55.0293, + "longitude": -128.7773, + "lastUpdated": "2023-06-24", + "city": "Pollyworth", + "region": "Cariboo", + "victoriaFile": "26250-20/16645", "regionalFile": "N/A", "parcelIDs": [ - 5467273, - 801029, - 4103987, - 2707596, - 2709402 + 7653315, + 1553539, + 5497461, + 9914332, + 1222169 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "515865ab-bc02-480e-947b-2c06a7ac6248", - "createdAt": "2019-08-28", - "completed": "2022-09-26", - "initiated": "2014-04-21", - "ministryContact": "DICKI ROCIO", + "uuid": "89d21b87-a2cd-4910-a806-267d50594dbe", + "createdAt": "2022-09-19", + "completed": "2021-11-04", + "initiated": "2014-04-19", + "ministryContact": "SCHAMBERGER KOLE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -39703,32 +46240,60 @@ ], "notationParticipants": [ { - "uuid": "b449b59f-c9da-4fac-85f8-ba91a726a601", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "uuid": "a62c6fef-6399-497d-b1cf-a674893c1928", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": true }, { - "uuid": "150a95f8-942c-423f-888d-efa2e82b7ef1", - "name": "SHELL CANADA PRODUCTS", + "uuid": "9eb005d3-0691-4bf7-8341-094d91b54e7e", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "978a2c87-5643-4480-bf62-197c2883491d", + "uuid": "74a8fbad-9278-46e2-99e7-c756afe91934", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "61423541-8c25-4a33-afd3-69961eaf0f78", - "createdAt": "2020-12-17", - "completed": "2022-10-07", - "initiated": "2016-08-09", - "ministryContact": "JASKOLSKI DONATO", + "uuid": "83a8ebf1-95fa-4871-8b94-32d87f30b12f", + "createdAt": "2023-05-14", + "completed": "2021-02-11", + "initiated": "2019-06-02", + "ministryContact": "KOELPIN CARLOS", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "uuid": "0c12dcae-ed55-45fd-a6cd-a3353e7ab095", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "uuid": "a50ee9ff-f8a1-4d10-9ff4-188690c2d1d1", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "uuid": "35c64639-a7cc-4ae5-b62f-e6a4428b1b66", + "createdAt": "2015-08-04", + "completed": "2019-08-02", + "initiated": "2014-04-13", + "ministryContact": "SKILES STEPHANY", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -39737,31 +46302,31 @@ ], "notationParticipants": [ { - "uuid": "f2307483-8ef8-4672-a9b0-9f88b645f9e9", + "uuid": "7fe7c736-ded2-4135-9f66-9797b7302584", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true }, { - "uuid": "2015cfde-e265-447e-8e42-a85e46970956", + "uuid": "810eebb4-1a98-4e45-9cbf-bf15132641b5", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false }, { - "uuid": "d70fb39e-cdc6-4b09-95ed-5bc71fde1541", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "uuid": "649a4781-5c67-4e6d-bbf1-3cd9b4f6efa0", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": true }, { - "uuid": "580cb000-1b3e-408f-8bbd-5ec2ef522297", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "uuid": "c3173281-ebe6-4558-9cac-fc2f32063a1f", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "b97fb855-2443-42c8-80b5-2e2b9e6b3e53", + "uuid": "4b5bac45-1cde-4f6a-bcab-0153b06a6e91", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false @@ -39770,11 +46335,11 @@ "siteRegistry": true }, { - "uuid": "04be8f5a-7787-4940-a848-a801de6a02e2", - "createdAt": "2016-06-03", - "completed": "2020-02-24", - "initiated": "2020-08-30", - "ministryContact": "KRAJCIK EASTON", + "uuid": "21d7cb0e-b1ea-4614-a6fe-a058bc55afc8", + "createdAt": "2016-01-16", + "completed": "2014-06-27", + "initiated": "2019-11-15", + "ministryContact": "MACEJKOVIC PETE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -39783,27 +46348,45 @@ ], "notationParticipants": [ { - "uuid": "115d7663-2826-4b0f-b2ac-6028e78ea8ad", + "uuid": "57fc2a23-d27d-4d53-ab8b-8ec0b28a28f5", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "29574129-35a2-4b4c-b8a1-aa4cb448a1b5", + "uuid": "4a870560-d764-4ddd-9956-6a77b8827b35", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true + }, + { + "uuid": "d9943c89-2757-42c3-9273-1257134d436a", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "7a129b26-0d05-4ec3-b8b0-b13bc450837e", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "uuid": "1a83e2d9-c30b-4aa8-8bae-dffb2167b692", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true } ], "participants": [ { - "uuid": "504c2f0c-1ee9-4780-9b01-fcc9a052dcad", + "uuid": "1562ca54-9361-4690-9b97-cc1fa157c32b", "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2020-06-03", - "startDate": "2023-03-13", + "endDate": "2018-04-20", + "startDate": "2017-10-20", "notes": "", "roles": [ "EMPLOYEE" @@ -39811,10 +46394,10 @@ "siteRegistry": false }, { - "uuid": "1f78a2b2-1ca6-462f-805f-1a5898265f49", - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2023-07-22", - "startDate": "2021-02-21", + "uuid": "8d1ef889-2750-45e1-9354-ef5fa4d7932b", + "name": "IPSUM", + "endDate": "2023-06-03", + "startDate": "2022-07-04", "notes": "", "roles": [ "EMPLOYEE" @@ -39822,10 +46405,10 @@ "siteRegistry": true }, { - "uuid": "3c885dc8-0204-4a07-90d4-013815d58204", - "name": "IPSUM", - "endDate": "2017-11-13", - "startDate": "2014-10-03", + "uuid": "b03f4e8c-98ad-48f4-af9a-85c0718be0cd", + "name": "AMET, DOLOR SIT", + "endDate": "2018-08-17", + "startDate": "2017-08-03", "notes": "", "roles": [ "EMPLOYEE" @@ -39833,128 +46416,165 @@ "siteRegistry": false }, { - "uuid": "b5f2f790-a3a5-4c5e-af6b-4d1211f6112c", + "uuid": "59caa7e0-a85a-4baa-993c-45cae155eb8b", "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2014-06-29", - "startDate": "2022-03-28", + "endDate": "2019-05-22", + "startDate": "2015-02-08", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "f47d6141-266f-4f95-849c-26d58d7ac49e", - "name": "AMET, DOLOR SIT", - "endDate": "2016-07-17", - "startDate": "2021-07-22", + "uuid": "4b04daff-a934-44db-b5e8-e175e2d5b857", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2016-10-15", + "startDate": "2015-10-01", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true } ], - "suspectLandUses": [ + "documents": [ { - "uuid": "9deec474-183e-4931-8a59-3e33c6253e06", - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-04-05 (described on Site Profile dated 2014-04-05)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "uuid": "7a754df4-4686-42bb-bc56-22e38b96d041", + "siteRegistry": true, + "documentDate": "2023-06-19", + "receivedDate": "2013-11-26", + "uploadedDate": "2015-09-08", + "title": "Preliminary Site Investigation, Detailed Site Investigation and Remedial Plan for the Management Area adjacent to the Shell Site at 1503 West 41st Ave", + "participants": [ + { + "uuid": "d691950e-891c-4d19-924d-8dc7dce628a4", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "3517ada5-882c-421a-a600-3f91dba67d04", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": false, + "role": "AUTHOR" + } + ] }, { - "uuid": "39606aec-4539-4f0d-9956-254b2225c593", + "uuid": "d1724fa6-2152-4e73-bdb4-d6c07f0c785d", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2020-05-11 (described on Site Profile dated 2020-05-11)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" - }, + "documentDate": "2020-04-23", + "receivedDate": "2017-01-05", + "uploadedDate": "2014-10-15", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "bf6d8deb-da7a-470c-850e-16b0a6a7e7f0", + "name": "IPSUM", + "siteRegistry": true, + "role": "AUTHOR" + } + ] + } + ], + "suspectLandUses": [ { - "uuid": "61c7e77d-b71b-484c-875f-5e83379253ae", + "uuid": "c4fdcecc-51f4-49b3-a71d-0d51e6e3375a", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-06-01 (described on Site Profile dated 2016-06-01)", + "notes": "INSERTED FOR SITE PROFILE DATED 2022-06-01 (described on Site Profile dated 2022-06-01)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "uuid": "6a416646-f332-4469-9299-7a20244e30dc", - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-03-30 (described on Site Profile dated 2016-03-30)", + "uuid": "dfccf247-a934-4d37-b065-7b511c1ea536", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2018-07-27 (described on Site Profile dated 2018-07-27)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], "parcelDescriptions": [ { - "uuid": "f8ad7c47-eebe-4ce5-b1a8-f6d7f17b1f6d", + "uuid": "df3fe81e-ced0-474f-a090-a919cb0c8759", + "siteRegistry": true, + "dateNoted": "2021-02-25", + "parcelID": "17969", + "crownLandUsePIN": "18474", + "crownLandFileNumber": "16630", + "landDescription": "LOT 2 OF LOT 2 BLOCK 4 DISTRICT LOT 4 PLAN 6497" + }, + { + "uuid": "3a1d2a4d-1b9f-4199-8b0b-c7ef32cd4d62", "siteRegistry": false, - "dateNoted": "2015-10-15", - "parcelID": "16889", - "crownLandUsePIN": "16608", - "crownLandFileNumber": "17750", - "landDescription": "LOT 2 OF LOT 2 BLOCK 3 DISTRICT LOT 4 PLAN 6923" + "dateNoted": "2020-10-05", + "parcelID": "16314", + "crownLandUsePIN": "17274", + "crownLandFileNumber": "17216", + "landDescription": "LOT 5 OF LOT 2 BLOCK 4 DISTRICT LOT 3 PLAN 8010" }, { - "uuid": "cb8cb636-5dce-4c32-8358-0d91a0295834", + "uuid": "95112dd1-da5b-41da-95c2-0d637fba33e0", "siteRegistry": false, - "dateNoted": "2023-05-02", - "parcelID": "20836", - "crownLandUsePIN": "20831", - "crownLandFileNumber": "16689", - "landDescription": "LOT 4 OF LOT 4 BLOCK 3 DISTRICT LOT 5 PLAN 7721" + "dateNoted": "2016-05-09", + "parcelID": "17760", + "crownLandUsePIN": "19194", + "crownLandFileNumber": "16043", + "landDescription": "LOT 5 OF LOT 1 BLOCK 4 DISTRICT LOT 1 PLAN 8084" } ], "siteDisclosures": [ { - "uuid": "f8e02220-7f5f-4a50-aecc-6300aa0ff203", - "siteRegistry": false, - "dateReceived": "2021-05-08", - "dateCompleted": "2018-03-28", - "dateEntered": "2015-01-03", - "dateRegistrar": "2015-02-26", - "dateLocalAuthorityReceived": "2021-07-07", - "summary": "Praesentium doloribus adipisci culpa dolores voluptate officiis inventore.\nOdio illo eum ab earum tempore.\nVero voluptatibus beatae temporibus ipsa cupiditate illum facilis veritatis.", - "informationUsed": "Vitae pariatur eos nulla vero non quae reiciendis.\nIllo dolor impedit vitae pariatur quos libero.\nEnim blanditiis possimus distinctio.\nIllum maxime fuga.\nConsequuntur atque excepturi dolor adipisci.", - "pastOrPresentOrders": "Cum rerum facilis quasi voluptates repellat assumenda.", + "uuid": "b5adf227-c7f4-492a-9370-3715222c9070", + "siteRegistry": true, + "dateReceived": "2022-11-28", + "dateCompleted": "2014-03-31", + "dateEntered": "2014-12-01", + "dateRegistrar": "2014-12-22", + "dateLocalAuthorityReceived": "2019-11-10", + "summary": "Eligendi possimus ex doloribus laudantium corporis odio vero consequuntur rerum.\nEius rem perferendis.\nVoluptas culpa labore exercitationem.", + "informationUsed": "Assumenda labore sed tenetur quas beatae debitis.\nRem aliquid perspiciatis perferendis in.\nIpsa quae nemo consequuntur veritatis.", + "pastOrPresentOrders": "Enim eius quas impedit.\nAspernatur excepturi quo a culpa.\nEt provident itaque.", "commercialAndIndustrialPurposes": [ { - "uuid": "f9bee9b4-c951-4606-bb49-4b7b571d1ead", + "uuid": "1828a51c-c5a5-457b-8ea1-3c40b51f05c5", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false - }, - { - "uuid": "0523bd9d-6768-4d95-9bac-fec88c53d2b1", - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { - "uuid": "e31ae4f8-26d7-421b-8092-786688ba1d24", + "uuid": "7fcbfb92-3cb4-48bc-8410-4a072f9825ee", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true + "siteRegistry": false } ] }, { - "uuid": "dcb18cff-48c1-411e-b77e-97dc06e2904d", + "uuid": "b3c8bdac-dca6-40c6-ac49-1ff477180bb2", "siteRegistry": true, - "dateReceived": "2014-02-28", - "dateCompleted": "2017-01-28", - "dateEntered": "2016-05-11", - "dateRegistrar": "2019-08-10", - "dateLocalAuthorityReceived": "2016-11-19", - "summary": "Dignissimos velit nisi.", - "informationUsed": "Quidem incidunt illum esse maiores modi dicta corrupti.\nVoluptas facere deleniti temporibus.\nUt similique fugit provident enim praesentium maiores eos tempora.\nCumque veniam assumenda nihil culpa.", - "pastOrPresentOrders": "Porro id consequatur.\nTenetur hic ad aut accusamus voluptas ab.", + "dateReceived": "2015-09-04", + "dateCompleted": "2016-07-25", + "dateEntered": "2018-07-05", + "dateRegistrar": "2021-11-11", + "dateLocalAuthorityReceived": "2020-10-18", + "summary": "Pariatur aperiam laborum earum optio consequatur rerum ullam illum.\nId debitis enim similique ducimus ex.\nQuas eaque placeat.", + "informationUsed": "Enim laudantium mollitia.\nFuga magnam explicabo aspernatur.\nConsequuntur ratione reiciendis optio magni.\nQuas sit aperiam sapiente sed eligendi doloremque voluptas.", + "pastOrPresentOrders": "Assumenda perspiciatis omnis animi tenetur atque doloribus.\nHarum voluptatem quibusdam voluptatibus debitis qui.", "commercialAndIndustrialPurposes": [ { - "uuid": "56798e03-e412-42d1-9810-3bce7c8a5a29", + "uuid": "bad507d4-d839-4053-afd2-bc44d9ea047a", "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "uuid": "e76c294c-a8f1-4548-90b1-ad3d7f965bae", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "7b7c6970-b283-4d21-a7e8-82391e374216", - "scheduleReference": "F2*", + "uuid": "ec7676a6-2a24-4579-bea3-2e7cebbc9ff7", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false } @@ -39963,86 +46583,115 @@ ], "activityLog": [ { - "uuid": "f2cf1f15-e508-42a3-8e8a-f861781e7391", + "uuid": "941a9d0f-8954-4826-b7cb-98abcb387e69", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "KOHLER SEDRICK", + "timestamp": "2022-03-16" + }, + { + "uuid": "5801a7d4-4f68-4964-a679-eb72b3892a85", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "HODKIEWICZ PEGGIE", - "timestamp": "2016-06-10" + "user": "MURAZIK OREN", + "timestamp": "2018-12-03" }, { - "uuid": "04707458-a2fe-4bd7-9cf9-7ac97d0a0718", + "uuid": "c1e0533d-c6af-47bf-abba-be28360b14ee", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "PROHASKA CEASAR", - "timestamp": "2020-02-06" + "user": "JACOBI DEMETRIUS", + "timestamp": "2016-10-09" }, { - "uuid": "1262f966-8005-4bba-b2d0-421efc232076", + "uuid": "3a92427b-ad47-450f-aeaf-c8fbba341930", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "ROOB LARRY", - "timestamp": "2015-08-16" + "user": "WILLMS TAMIA", + "timestamp": "2021-06-02" }, { - "uuid": "e3c5303a-925b-4ece-8b3f-ed9d05191b3f", + "uuid": "5c93aae6-6df1-4b82-b540-165a7f0aba6e", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "BERGNAUM KAYLEIGH", - "timestamp": "2020-11-28" + "user": "GUSIKOWSKI JESSIE", + "timestamp": "2017-05-07" + }, + { + "uuid": "85d9f447-cb0f-402b-85b4-aed6a5dcdfa4", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "SKILES EVELYN", + "timestamp": "2022-03-13" }, { - "uuid": "ab4a6bef-d328-402d-bb52-804fff0d776a", + "uuid": "b6847902-9065-4e84-bc59-630667fe3f86", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "KOHLER JUSTINE", - "timestamp": "2014-12-06" + "user": "SMITH REYES", + "timestamp": "2015-08-11" + }, + { + "uuid": "9d54e815-b6de-4546-95ec-5cfd8bf04568", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "ANDERSON COY", + "timestamp": "2021-04-03" } ], "associatedSites": [ { - "uuid": "4bb90b8d-1631-4659-a6f1-fa295e08ebb9", - "dateNoted": "2016-02-14", + "uuid": "7fcd8720-dd48-42d8-a8aa-da55d2f2aa9b", + "dateNoted": "2017-06-10", "notes": "", - "parcelID": "15470", - "siteID": "20482", + "parcelID": "16518", + "siteID": "16871", "siteRegistry": true }, { - "uuid": "8eca961b-7c70-4893-9850-92a046231bf1", - "dateNoted": "2020-06-11", + "uuid": "dc356a61-fb7c-4476-b3df-0f8284804867", + "dateNoted": "2019-09-01", + "notes": "", + "parcelID": "16102", + "siteID": "20123", + "siteRegistry": false + }, + { + "uuid": "e6495f48-2822-4a4b-9d56-0f7fcbaa51a3", + "dateNoted": "2021-02-01", "notes": "", - "parcelID": "20628", - "siteID": "17390", + "parcelID": "18370", + "siteID": "19506", "siteRegistry": true } ] }, { - "uuid": "bac181c9-58d1-4109-8a8a-e1dd91b237f0", - "siteID": 18467, - "address": "5151 Heathcote Center", - "latitude": 50.3107, - "longitude": -124.8269, - "lastUpdated": "2019-02-04", - "city": "Rocklin", + "uuid": "bbd05d8c-bb31-4bc3-a90b-aae3d0f0799d", + "siteID": 17443, + "address": "685 Lakin Field", + "latitude": 54.18, + "longitude": -128.3562, + "lastUpdated": "2019-11-08", + "city": "Rio Rancho", "region": " North Coast", - "victoriaFile": "26250-20/14753", + "victoriaFile": "26250-20/13122", "regionalFile": "N/A", "parcelIDs": [ - 8594849, - 7342341, - 114113, - 4282675, - 3473096 + 7609394, + 9814449, + 1876045, + 4506292, + 4687778 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "1571c077-d3ce-49f9-a724-d71900575248", - "createdAt": "2020-01-22", - "completed": "2023-05-13", - "initiated": "2019-01-02", - "ministryContact": "RUNOLFSSON LIAM", + "uuid": "b68b63c2-86c6-420f-9e98-193cd345c387", + "createdAt": "2018-09-07", + "completed": "2019-06-18", + "initiated": "2017-12-04", + "ministryContact": "CRONA KEN", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -40051,44 +46700,32 @@ ], "notationParticipants": [ { - "uuid": "e15dc52d-7499-4dcc-a13e-76367582fbad", + "uuid": "d97c9279-62dd-487e-8f71-7dd0bd5fd863", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "65bfadf8-4040-41ea-a996-602960d0cf8c", + "uuid": "b339e2e3-bbb7-46ef-bf92-d5ccd4de6ea6", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "0c7423c4-682c-43ea-93f1-baa6da134dfe", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "uuid": "63b34db2-3a25-4e1e-ba92-2f3db2c46d03", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "uuid": "8dfc70d1-cf23-4299-817b-b24f1a2c06bc", + "uuid": "b2ac410a-8c13-4d76-8757-0e03779dd9e6", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "f7ca7fc8-86dc-49a7-a697-9a20d560e8c4", - "createdAt": "2021-11-24", - "completed": "2022-01-04", - "initiated": "2018-05-17", - "ministryContact": "TURNER RAHSAAN", + "uuid": "6d398a34-3824-436a-929b-375a95e1743c", + "createdAt": "2017-01-04", + "completed": "2020-04-28", + "initiated": "2015-07-30", + "ministryContact": "HANSEN DIANA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -40097,114 +46734,34 @@ ], "notationParticipants": [ { - "uuid": "e963ca08-9f64-42e2-8235-9420452c8f99", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "uuid": "25499e02-857f-4db4-af61-371e84d3b2d1", - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "uuid": "b827f83a-08f8-49fd-96dc-c329e54f678a", + "uuid": "bb3638a9-e213-4040-8d12-f4dcd4f07f36", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "uuid": "0e492218-6b8d-4b35-baf3-0ce02f60c306", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", "siteRegistry": true - } - ], - "siteRegistry": true - }, - { - "uuid": "d3e64e8f-6c6d-423d-9ec8-d9900477ff2f", - "createdAt": "2014-11-13", - "completed": "2017-11-12", - "initiated": "2016-03-07", - "ministryContact": "DANIEL NEVA", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "uuid": "8a28d67e-ab90-47e0-80ef-17eead5345b2", - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false }, { - "uuid": "76bbf0d1-28c4-4429-92f2-979617fe336d", + "uuid": "43d40478-25cb-4136-b667-fe90c29941d7", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false }, { - "uuid": "b107ebd6-0553-4448-bd71-5ccdd298c1ef", + "uuid": "beb4d6d8-f3cd-4b5f-9dd8-c11fb98ef763", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true }, { - "uuid": "5796f3dc-879d-4084-b487-68b24aaf311f", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - } - ], - "siteRegistry": false - }, - { - "uuid": "e85d8b0c-223e-42b8-8bac-983ed16fba59", - "createdAt": "2022-07-02", - "completed": "2020-12-18", - "initiated": "2017-02-26", - "ministryContact": "STAMM ALESSIA", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "uuid": "f14ffde6-1f82-4fa3-a455-85f480ed17ad", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "uuid": "dca13444-a991-4732-bb20-155a6b518b5f", + "uuid": "02456244-e021-46cf-9b06-15cf5723f449", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "ec0b47b1-3d19-4cfc-a6b6-faf6f194b5dd", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "uuid": "b287b2f3-59c1-4e15-a7a5-2c42b20e8136", + "uuid": "d29488c1-38bd-4f8e-a5fd-98391f54cd4d", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true - }, - { - "uuid": "c99f440b-51df-4423-8596-435404786385", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false } ], "siteRegistry": false @@ -40212,32 +46769,10 @@ ], "participants": [ { - "uuid": "3accedb2-b7e1-4434-aed7-03a68239b816", - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2019-03-27", - "startDate": "2019-07-25", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": true - }, - { - "uuid": "12e77172-0b1b-4ca5-803e-ce211fc964ef", + "uuid": "a0217680-2388-4eb0-8083-0615c932c781", "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2016-12-26", - "startDate": "2019-09-09", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": true - }, - { - "uuid": "ff19c127-eb2d-485f-8b8c-115b0f29283d", - "name": "SHELL CANADA PRODUCTS", - "endDate": "2018-11-02", - "startDate": "2020-04-05", + "endDate": "2016-01-01", + "startDate": "2020-02-16", "notes": "", "roles": [ "EMPLOYEE" @@ -40245,220 +46780,282 @@ "siteRegistry": false }, { - "uuid": "f69eaf92-6b77-4241-ace6-118292b74b6b", + "uuid": "5cd7da2f-7be3-4a50-bbc0-7773b721dd3f", "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2022-06-30", - "startDate": "2018-02-18", + "endDate": "2020-08-12", + "startDate": "2020-02-21", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": true } ], - "suspectLandUses": [ + "documents": [ { - "uuid": "fb3a7a75-dbec-4934-8516-3bfc69997a48", + "uuid": "840cd37a-4ee2-4a98-a2d5-26cff8051244", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-06-09 (described on Site Profile dated 2019-06-09)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" - }, + "documentDate": "2019-12-19", + "receivedDate": "2015-07-24", + "uploadedDate": "2020-11-21", + "title": "Preliminary Site Investigation, Detailed Site Investigation and Remedial Plan for the Management Area adjacent to the Shell Site at 1503 West 41st Ave", + "participants": [ + { + "uuid": "906e5c9b-33a6-4df5-afb3-2f39d6ac0c8c", + "name": "IPSUM", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "45000b8d-f386-4daf-a13e-0fcf8d01e842", + "name": "IPSUM", + "siteRegistry": true, + "role": "AUTHOR" + } + ] + } + ], + "suspectLandUses": [ { - "uuid": "5e95d269-3011-4583-80a2-efe94ea682fa", - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-07-12 (described on Site Profile dated 2019-07-12)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "uuid": "4ac83e52-612f-461f-a01c-440f27f2b3c8", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2023-08-23 (described on Site Profile dated 2023-08-23)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "uuid": "36d183e2-2b74-4cac-b879-eff94b51e357", + "uuid": "daf2a2a1-9d75-421c-aaed-cd60cdd1597d", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-01-04 (described on Site Profile dated 2016-01-04)", + "notes": "INSERTED FOR SITE PROFILE DATED 2015-08-04 (described on Site Profile dated 2015-08-04)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], "parcelDescriptions": [ { - "uuid": "b71eba07-64a4-4806-adc3-f5b32da6e91e", - "siteRegistry": true, - "dateNoted": "2018-08-26", - "parcelID": "17096", - "crownLandUsePIN": "18932", - "crownLandFileNumber": "20432", - "landDescription": "LOT 3 OF LOT 4 BLOCK 2 DISTRICT LOT 4 PLAN 8889" + "uuid": "db4c4324-649c-4f40-a4f3-8825628cbe53", + "siteRegistry": false, + "dateNoted": "2015-04-23", + "parcelID": "19800", + "crownLandUsePIN": "16158", + "crownLandFileNumber": "20675", + "landDescription": "LOT 4 OF LOT 3 BLOCK 4 DISTRICT LOT 4 PLAN 3931" }, { - "uuid": "3eb32a29-3c54-428d-80cf-ac2cdca5da53", - "siteRegistry": false, - "dateNoted": "2019-08-21", - "parcelID": "20818", - "crownLandUsePIN": "17151", - "crownLandFileNumber": "18177", - "landDescription": "LOT 3 OF LOT 3 BLOCK 1 DISTRICT LOT 2 PLAN 4650" + "uuid": "19e23139-747d-4379-b313-f26c4584ddb6", + "siteRegistry": true, + "dateNoted": "2023-04-28", + "parcelID": "17333", + "crownLandUsePIN": "16488", + "crownLandFileNumber": "16854", + "landDescription": "LOT 5 OF LOT 1 BLOCK 2 DISTRICT LOT 3 PLAN 3071" }, { - "uuid": "12be880b-ab57-4116-8e91-89bb6116ac43", + "uuid": "3ac64212-ed3e-4a50-846e-7e527926d417", "siteRegistry": true, - "dateNoted": "2018-11-21", - "parcelID": "18914", - "crownLandUsePIN": "18608", - "crownLandFileNumber": "20068", - "landDescription": "LOT 1 OF LOT 3 BLOCK 3 DISTRICT LOT 5 PLAN 7132" + "dateNoted": "2022-05-24", + "parcelID": "18604", + "crownLandUsePIN": "16689", + "crownLandFileNumber": "15566", + "landDescription": "LOT 5 OF LOT 3 BLOCK 1 DISTRICT LOT 5 PLAN 9054" + }, + { + "uuid": "91d14aec-bee8-4f8a-a8fd-a1943a0cdd0c", + "siteRegistry": false, + "dateNoted": "2017-04-09", + "parcelID": "18251", + "crownLandUsePIN": "18645", + "crownLandFileNumber": "17938", + "landDescription": "LOT 5 OF LOT 5 BLOCK 4 DISTRICT LOT 1 PLAN 7476" } ], "siteDisclosures": [ { - "uuid": "ca6c59ad-aa37-4d38-af9f-3b854b294c1b", - "siteRegistry": true, - "dateReceived": "2018-05-21", - "dateCompleted": "2023-05-12", - "dateEntered": "2019-06-12", - "dateRegistrar": "2015-12-24", - "dateLocalAuthorityReceived": "2021-12-26", - "summary": "Architecto alias officia fugit autem.\nNobis possimus quidem possimus blanditiis minus.\nNam reiciendis porro maiores quasi ipsam odio illo magnam architecto.", - "informationUsed": "Libero libero dolor minima unde voluptatibus molestias suscipit voluptatibus.\nMinus culpa at saepe aliquid voluptatem doloribus.\nTempora aliquid omnis quam similique architecto odio quod.\nQuo quisquam reprehenderit facilis est accusamus adipisci adipisci.\nTenetur tenetur quidem facere veritatis culpa libero.", - "pastOrPresentOrders": "Magnam repudiandae deserunt nulla sapiente.\nConsequuntur sint at vero aliquid hic similique quo ea.", + "uuid": "8410f48f-69ab-4194-abe1-0874e79593db", + "siteRegistry": false, + "dateReceived": "2014-12-08", + "dateCompleted": "2017-12-18", + "dateEntered": "2016-09-21", + "dateRegistrar": "2015-04-12", + "dateLocalAuthorityReceived": "2016-01-15", + "summary": "Voluptates optio et.", + "informationUsed": "Quae veritatis recusandae fuga.\nTenetur ratione dolorum nam quam tenetur.\nEum possimus similique sed ipsam ab voluptas animi nobis omnis.", + "pastOrPresentOrders": "Eum labore voluptatem natus aliquid cumque qui vel distinctio quaerat.\nQuisquam repudiandae non autem.\nEum tempora corrupti perspiciatis architecto officia magni esse laborum aspernatur.", "commercialAndIndustrialPurposes": [ { - "uuid": "2b4d5879-ab3f-4f58-b020-e9973ce1b569", + "uuid": "e919fd09-67e1-48fb-863d-559d09b0cbc6", "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false }, { - "uuid": "b658eca2-e51d-4f30-894a-b91d07e1348d", + "uuid": "0d71748f-191b-4e03-8426-4f16549a7c0f", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "8607c4de-94e2-4b12-90a0-40f631923312", - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true + "uuid": "9e87d600-b969-4c6e-9f1a-d68aa71f64a2", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false } ] }, { - "uuid": "74b656f8-fcb0-4fe2-bb4e-8c06cde77b10", + "uuid": "1cd7f37e-3989-40bc-b836-c8fcaa7df664", "siteRegistry": false, - "dateReceived": "2019-06-02", - "dateCompleted": "2022-05-18", - "dateEntered": "2014-08-02", - "dateRegistrar": "2018-04-14", - "dateLocalAuthorityReceived": "2022-11-29", - "summary": "Quaerat quisquam nesciunt.\nPerspiciatis aut ullam libero.\nLaborum maxime ullam esse porro beatae qui temporibus.", - "informationUsed": "Aperiam quaerat aliquid ipsa iste eos.\nCorrupti quos deleniti tenetur amet molestias quaerat dolores.\nIusto officia corrupti.", - "pastOrPresentOrders": "Fugit cum tenetur rerum fuga aperiam nostrum.\nVeritatis suscipit maxime enim nihil ad dolore culpa quas.\nTempore in sequi enim optio minima molestias magni ipsam cum.", + "dateReceived": "2017-11-20", + "dateCompleted": "2021-03-14", + "dateEntered": "2017-04-05", + "dateRegistrar": "2021-11-26", + "dateLocalAuthorityReceived": "2018-01-10", + "summary": "Sapiente ipsa laboriosam porro ab ad nemo sapiente reprehenderit recusandae.\nVoluptatum dolore ea natus.\nLaborum adipisci corrupti velit laudantium laborum vitae dicta aperiam.", + "informationUsed": "Eos illo labore.\nEius ducimus velit laudantium nobis amet natus accusamus nisi sint.\nId iusto quam optio mollitia asperiores necessitatibus.\nRepellat excepturi modi aut quo eum doloribus numquam.", + "pastOrPresentOrders": "Ipsa dolorum odio ullam minus repellendus vitae quibusdam blanditiis modi.\nNisi quis repudiandae hic.\nSaepe maxime adipisci deserunt reprehenderit.", "commercialAndIndustrialPurposes": [ { - "uuid": "71602b18-0469-48c8-8cbe-44129faa30d8", + "uuid": "5db22ca7-97c8-463b-83b8-842e1e26c3b4", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "uuid": "d3c412e2-db68-49db-adeb-5c727a836aee", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, { - "uuid": "2fbb944a-2da7-4841-bc6a-1e17d6c34314", + "uuid": "45153458-de7b-4270-a0d0-dd1330cce515", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { - "uuid": "922da113-a22e-4da9-a093-5cd727e5dd8e", + "uuid": "ba671bd2-7420-4371-ad74-7d099eb7d5e4", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true + "siteRegistry": false } ] } ], "activityLog": [ { - "uuid": "c5f9602d-46a3-4f1e-b409-0c7171f10bb7", + "uuid": "b3065a5a-5324-4a80-a42c-fc03c42d2eb9", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "SENGER CRAIG", + "timestamp": "2019-05-08" + }, + { + "uuid": "808245c5-cd2a-4ca0-8fb1-7cd9994fb1b7", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "QUIGLEY LURLINE", + "timestamp": "2018-05-02" + }, + { + "uuid": "b545fb21-6a5e-4078-b434-576c1d568451", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "HARTMANN LOWELL", + "timestamp": "2013-11-19" + }, + { + "uuid": "99bd5db5-b8e3-4fe5-b09f-79bcd22fd7c7", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "RICE ABBIGAIL", - "timestamp": "2019-08-11" + "user": "LARSON JOANNIE", + "timestamp": "2018-03-09" }, { - "uuid": "04890620-1d69-4a9d-802b-d572d809da90", + "uuid": "57a5c264-bf5d-4a8b-bcd6-27cb50f5c786", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "DIETRICH ANTONINA", - "timestamp": "2014-12-12" + "user": "HEIDENREICH MUHAMMAD", + "timestamp": "2014-01-14" }, { - "uuid": "1eb9e706-b89c-4097-872c-87f307185250", - "siteRegistry": true, + "uuid": "ed50ee0e-0230-4e8e-9e81-71410f371473", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "SKILES CARLEE", - "timestamp": "2022-01-07" + "user": "MCGLYNN-BASHIRIAN HULDA", + "timestamp": "2018-12-29" }, { - "uuid": "83b25828-1ff8-4444-bb75-a78976ddd692", + "uuid": "6f2df7af-3f37-46b4-a866-60a0f60d387e", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "KOELPIN MARILIE", - "timestamp": "2016-03-06" + "user": "WEIMANN GEOVANY", + "timestamp": "2016-04-10" }, { - "uuid": "d7118ad8-7553-4780-aed3-93faf4d73842", + "uuid": "2bc33933-2c82-44b3-a313-d3f08cd2fb12", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "KERTZMANN KAROLANN", - "timestamp": "2020-08-01" + "user": "BOGAN DARIANA", + "timestamp": "2022-09-27" }, { - "uuid": "2e5256ff-1239-4b59-9da9-80b10a11558c", + "uuid": "1455e928-66fd-4c84-a9cb-94e1af071efb", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "MURAZIK MYRTIE", - "timestamp": "2023-06-14" + "user": "HOPPE MARCELLE", + "timestamp": "2021-03-19" }, { - "uuid": "3e239a91-f169-4cce-9633-ba1cbcf0bc50", + "uuid": "32030f47-3706-4217-8363-311d8d5637be", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "DANIEL JACYNTHE", - "timestamp": "2020-12-25" + "user": "SCHMIDT-KLING CALI", + "timestamp": "2015-06-07" } ], "associatedSites": [ { - "uuid": "c1c403d0-1a65-4285-b65e-daf7de1b493c", - "dateNoted": "2021-10-08", + "uuid": "fe46228f-b51a-4b61-833d-0ed3a17e42bf", + "dateNoted": "2022-10-01", + "notes": "", + "parcelID": "16069", + "siteID": "19692", + "siteRegistry": false + }, + { + "uuid": "b8be5c2b-17b2-4a9a-9b4c-663fdc5957cf", + "dateNoted": "2023-09-14", "notes": "", - "parcelID": "20525", - "siteID": "16323", + "parcelID": "16204", + "siteID": "17584", "siteRegistry": true } ] }, { - "uuid": "14d3e549-f721-4f19-8f0d-40b453a30e56", - "siteID": 15844, - "address": "485 White Hill", - "latitude": 52.07, - "longitude": -125.0606, - "lastUpdated": "2013-11-17", - "city": "Gottliebfield", - "region": "Thompson-Okanagan", - "victoriaFile": "26250-20/1590", + "uuid": "bf95f563-35d0-4717-bfab-dd8f51d724bf", + "siteID": 20534, + "address": "9843 Malika Lights", + "latitude": 52.9083, + "longitude": -120.2735, + "lastUpdated": "2021-02-04", + "city": "Eladioworth", + "region": "Kootenay", + "victoriaFile": "26250-20/10624", "regionalFile": "N/A", "parcelIDs": [ - 8134947, - 9198909, - 8954156, - 3308759, - 9287882 + 5742692, + 1000174, + 222734, + 8568804, + 3855810 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "d56ff08d-a6b6-4ac1-be09-c3779a768b2a", - "createdAt": "2018-01-12", - "completed": "2016-08-27", - "initiated": "2021-04-06", - "ministryContact": "ERNSER SOPHIE", + "uuid": "84d44a3f-f5d2-4fb5-bb33-0134e64e9f21", + "createdAt": "2017-12-10", + "completed": "2022-07-29", + "initiated": "2014-02-02", + "ministryContact": "PFANNERSTILL CECILE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -40467,32 +47064,78 @@ ], "notationParticipants": [ { - "uuid": "47c74423-9e5e-4563-800f-a86886222b19", + "uuid": "f9603bfe-fd81-4541-85c6-f56160afb086", "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "uuid": "88fe7bcf-d6a7-4792-ab22-4dca2d133881", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false }, { - "uuid": "c2ef8300-75da-48e0-a6a2-c0a6e96731ef", - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "b9974c1b-af25-4dab-8105-8fe2ce7837fb", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "uuid": "76bb7db4-3c21-4801-aa79-ab1de20d6353", + "createdAt": "2014-03-14", + "completed": "2020-03-22", + "initiated": "2016-08-30", + "ministryContact": "RITCHIE TONI", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "uuid": "f09bc663-ffc6-4c0d-9f71-81ab0b426e5e", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "5ce40866-ccc0-43ca-b605-f10a8186f5ae", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "3109dec8-aa52-4521-9032-fd2afabc0783", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true }, { - "uuid": "a0d70c76-d5e5-430e-ad33-8e9ff147388f", + "uuid": "ee436bff-29e9-401b-9fec-1d2244108e36", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true + }, + { + "uuid": "dde4e1ae-fc63-4c4a-9789-ed6fbc776cc3", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "83a42178-0f5d-4ad3-9418-5b22b3a18cf8", - "createdAt": "2022-08-26", - "completed": "2015-04-03", - "initiated": "2021-11-04", - "ministryContact": "DICKINSON PRESTON", + "uuid": "7ab22bc7-0761-4783-9036-7e2962ad4266", + "createdAt": "2017-01-26", + "completed": "2021-04-13", + "initiated": "2015-12-22", + "ministryContact": "HERMISTON YASMIN", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -40501,16 +47144,28 @@ ], "notationParticipants": [ { - "uuid": "0238e8a4-dcc2-464a-bdc8-70a14a174791", + "uuid": "d1adb86d-2e65-4503-ae1b-b49073765a0b", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true }, { - "uuid": "6df2522f-c19a-4e6c-8c84-16fae5f69ce0", + "uuid": "dcd794c7-091e-43b1-ab2c-a2bacfb09094", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "5cde7d7f-3eb6-4851-b5b3-b641df0cb5c8", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "33b11860-3e4d-4972-8f4e-71331be3fdcd", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true } ], "siteRegistry": false @@ -40518,10 +47173,21 @@ ], "participants": [ { - "uuid": "4bfc3557-3a34-4b1c-a4f0-7d616547447e", - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2015-01-15", - "startDate": "2017-01-07", + "uuid": "75cf57ab-e9fe-4b7b-a4a6-0f1486802954", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2021-07-17", + "startDate": "2020-07-27", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "uuid": "d06c67a1-7d59-4550-b0a4-356abcdb3b77", + "name": "AMET, DOLOR SIT", + "endDate": "2019-08-04", + "startDate": "2018-05-12", "notes": "", "roles": [ "ORGANIZATION" @@ -40529,10 +47195,10 @@ "siteRegistry": false }, { - "uuid": "bbd224ab-c7e7-4b88-b4e1-215d48758116", - "name": "SHELL CANADA PRODUCTS", - "endDate": "2016-02-05", - "startDate": "2022-06-10", + "uuid": "153e4711-ab35-41e4-b92b-b0d2e51d0e37", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2017-02-22", + "startDate": "2017-07-07", "notes": "", "roles": [ "ORGANIZATION" @@ -40540,223 +47206,254 @@ "siteRegistry": true }, { - "uuid": "60858a3a-53e7-47b5-9c82-93a1ea4c6f4e", - "name": "AMET, DOLOR SIT", - "endDate": "2020-01-22", - "startDate": "2021-05-02", + "uuid": "62621e15-5381-49fb-bb0b-eaa48e03dda2", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2021-10-13", + "startDate": "2016-08-08", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], - "siteRegistry": false + "siteRegistry": true + } + ], + "documents": [ + { + "uuid": "ee40405a-d2a8-4476-a13b-66352fa939c1", + "siteRegistry": false, + "documentDate": "2021-08-29", + "receivedDate": "2022-06-22", + "uploadedDate": "2018-10-01", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "af56f254-9dc8-4ba4-a543-d6639b99f84f", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": false, + "role": "AUTHOR" + } + ] } ], "suspectLandUses": [ { - "uuid": "80ab3f44-8182-488d-9803-063d7f2638f5", + "uuid": "97918ede-5f9f-4f27-a5ac-e40a33acff8c", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-05-12 (described on Site Profile dated 2019-05-12)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" - }, - { - "uuid": "297c194d-1b4b-4166-9ddc-46afec15ca28", - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-12-27 (described on Site Profile dated 2018-12-27)", + "notes": "INSERTED FOR SITE PROFILE DATED 2014-01-14 (described on Site Profile dated 2014-01-14)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "uuid": "eee66658-439d-4cd3-b0d8-1451c872ce07", - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-07-29 (described on Site Profile dated 2017-07-29)", + "uuid": "95be00e5-fecf-4d7f-9988-a0dfae505225", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2018-05-26 (described on Site Profile dated 2018-05-26)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "uuid": "e7159bde-b6dc-4580-8e7b-50d761ffaaa7", - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-11-03 (described on Site Profile dated 2018-11-03)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" - }, - { - "uuid": "4f310edf-c590-44f7-acbb-0c1e1a1d0880", + "uuid": "c8501a3b-bf9e-4748-bcd3-07b65ebde400", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-02-08 (described on Site Profile dated 2016-02-08)", + "notes": "INSERTED FOR SITE PROFILE DATED 2019-04-29 (described on Site Profile dated 2019-04-29)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], "parcelDescriptions": [ { - "uuid": "2706bf96-c7a0-44a3-b944-d2f150aa30ff", + "uuid": "98f41aaf-42db-45d3-8c68-7dee4f6f71ed", "siteRegistry": false, - "dateNoted": "2014-11-22", - "parcelID": "20519", - "crownLandUsePIN": "15673", - "crownLandFileNumber": "16433", - "landDescription": "LOT 1 OF LOT 5 BLOCK 1 DISTRICT LOT 2 PLAN 2948" + "dateNoted": "2021-06-19", + "parcelID": "18014", + "crownLandUsePIN": "19179", + "crownLandFileNumber": "18599", + "landDescription": "LOT 3 OF LOT 1 BLOCK 1 DISTRICT LOT 1 PLAN 5307" }, { - "uuid": "06ed933c-4ded-4b4e-a1ae-48716aef08b7", + "uuid": "a5aba904-0663-4240-a1c5-1ab6a1e30625", "siteRegistry": true, - "dateNoted": "2016-10-10", - "parcelID": "18783", - "crownLandUsePIN": "19265", - "crownLandFileNumber": "18203", - "landDescription": "LOT 2 OF LOT 1 BLOCK 5 DISTRICT LOT 3 PLAN 5641" + "dateNoted": "2013-10-27", + "parcelID": "17336", + "crownLandUsePIN": "18258", + "crownLandFileNumber": "19490", + "landDescription": "LOT 2 OF LOT 3 BLOCK 2 DISTRICT LOT 2 PLAN 6040" }, { - "uuid": "4057dc61-874e-49ae-8226-c38663d74192", + "uuid": "b765e1f8-9733-461f-8674-4366e1d56fe0", "siteRegistry": false, - "dateNoted": "2022-11-19", - "parcelID": "15929", - "crownLandUsePIN": "20982", - "crownLandFileNumber": "15337", - "landDescription": "LOT 4 OF LOT 1 BLOCK 2 DISTRICT LOT 2 PLAN 9702" + "dateNoted": "2017-10-27", + "parcelID": "18487", + "crownLandUsePIN": "17998", + "crownLandFileNumber": "17606", + "landDescription": "LOT 3 OF LOT 1 BLOCK 3 DISTRICT LOT 3 PLAN 7440" } ], "siteDisclosures": [ { - "uuid": "74120d5c-b1cb-4544-9055-fa1f4fe4b3ca", - "siteRegistry": false, - "dateReceived": "2023-03-18", - "dateCompleted": "2017-09-30", - "dateEntered": "2015-01-24", - "dateRegistrar": "2015-08-23", - "dateLocalAuthorityReceived": "2020-10-23", - "summary": "Molestias doloremque dolores veritatis.", - "informationUsed": "Dolore modi veniam iste adipisci.\nVelit exercitationem similique.\nQuos saepe sapiente ipsam vero labore incidunt officiis vitae culpa.\nPerspiciatis sed neque molestiae voluptate perspiciatis ducimus est aperiam iusto.\nConsectetur ullam laboriosam corporis vero illo saepe numquam architecto molestiae.", - "pastOrPresentOrders": "Est consequuntur hic dignissimos sapiente nihil fugit magnam veniam.", + "uuid": "f2c5aee2-cc9e-4420-91f5-49f415dbd7e2", + "siteRegistry": true, + "dateReceived": "2016-12-18", + "dateCompleted": "2022-01-28", + "dateEntered": "2022-11-12", + "dateRegistrar": "2016-07-31", + "dateLocalAuthorityReceived": "2022-09-01", + "summary": "Eos esse reprehenderit harum harum dolorem nobis tenetur reprehenderit.\nMollitia esse nulla reiciendis sequi quidem itaque voluptatum.\nPossimus iste quam asperiores dicta numquam tempore.", + "informationUsed": "Pariatur minus eligendi debitis repellat ad corporis dolor ullam.\nAt quas expedita.\nA quibusdam veniam alias porro assumenda minima expedita.", + "pastOrPresentOrders": "Nostrum tenetur debitis iure.\nConsequatur atque cum.\nModi maxime voluptates excepturi tempora atque.", "commercialAndIndustrialPurposes": [ { - "uuid": "c7c559c0-0773-4277-ae8a-33431f0ea5df", - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "uuid": "058cc31e-c59c-40ce-a001-a4c180060d7c", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { - "uuid": "10fa01b8-5bd2-4b48-9edd-7aec8f6a65d8", + "uuid": "4a76c3e8-5220-4ead-9f0d-dd21fc26a840", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "b7fb7182-7735-45fc-ac60-76a4cecb1cb9", + "uuid": "053adc7b-fb6a-4b6e-a746-b7dc99147047", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + } + ] + }, + { + "uuid": "1f3cba52-a958-4bcc-8e12-399f37692eb5", + "siteRegistry": true, + "dateReceived": "2018-08-15", + "dateCompleted": "2023-06-02", + "dateEntered": "2021-08-19", + "dateRegistrar": "2019-02-10", + "dateLocalAuthorityReceived": "2021-12-31", + "summary": "Corporis aperiam distinctio recusandae eius ratione veritatis.\nRecusandae esse iusto error ipsum.", + "informationUsed": "Reiciendis est odit nobis.\nQuod incidunt nam molestias est.\nSunt eligendi ab dolor dolore iste.", + "pastOrPresentOrders": "Ducimus adipisci blanditiis aperiam accusantium magni error ducimus qui officiis.", + "commercialAndIndustrialPurposes": [ + { + "uuid": "ecc32082-3974-402f-8cc7-1e2d11784623", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false + "siteRegistry": true + }, + { + "uuid": "ed8ec898-d547-421a-994b-501027e056e8", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true } ] } ], "activityLog": [ { - "uuid": "e261ff67-3100-4031-9573-f21035373975", - "siteRegistry": true, + "uuid": "6e7def24-7a13-4928-88bf-ff44b2de4ba6", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "PAGAC MYRTLE", - "timestamp": "2014-06-14" + "user": "GREENHOLT DALTON", + "timestamp": "2016-04-02" }, { - "uuid": "df02f704-d8d6-4a04-acd5-42289cff4b41", - "siteRegistry": true, + "uuid": "f6b738c5-6c1f-4d70-980f-7db9d1ede4af", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "KOELPIN THEODORA", - "timestamp": "2019-06-14" + "user": "DENESIK CLEVELAND", + "timestamp": "2021-10-19" }, { - "uuid": "acfd0b0f-7d37-4673-96bd-72b6d0006bf1", + "uuid": "c92ea9d7-4720-4d39-a3fc-c761bec89e43", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "HACKETT SUZANNE", - "timestamp": "2017-04-28" + "user": "RODRIGUEZ ALVA", + "timestamp": "2014-08-12" }, { - "uuid": "b1f4e7a4-6afd-4238-8151-12bd00c08ded", + "uuid": "eb2a51c5-7026-4ab8-92fe-44a6f28b9569", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "ABERNATHY-JENKINS GENESIS", - "timestamp": "2019-05-04" + "user": "MAYER AUGUSTINE", + "timestamp": "2022-02-27" }, { - "uuid": "f69a001f-6e79-4a13-a63f-f4f2a740ed83", + "uuid": "e114c2ee-f13a-45ea-a102-bfb7eed68364", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "KEMMER JOSIANNE", - "timestamp": "2023-08-28" + "user": "O'REILLY ELLA", + "timestamp": "2016-03-21" }, { - "uuid": "6a64072d-67f9-4dc7-ab7c-29ce0f032851", + "uuid": "4b383de2-f5c3-4610-a4a2-53e0267560fe", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "SCHMIDT ALBINA", - "timestamp": "2016-02-22" + "user": "LESCH EWELL", + "timestamp": "2019-07-21" + }, + { + "uuid": "c58658e9-1095-44da-b45d-a85e8ad20a79", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "MARKS STANLEY", + "timestamp": "2017-09-06" }, { - "uuid": "0c4257a7-a945-4ba4-8d31-be15f90d9321", + "uuid": "f84bbb46-40b3-4d43-97d5-ceb6a99a9402", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "JENKINS MAIYA", - "timestamp": "2021-12-15" + "user": "PAUCEK ESPERANZA", + "timestamp": "2014-05-20" }, { - "uuid": "3b82953a-4a36-4c2c-a3a1-fdeba2935771", + "uuid": "ed40fbd5-b651-4e05-956f-f74f3c2d8d48", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "SANFORD RYLEE", - "timestamp": "2022-02-28" + "user": "ORN ELISABETH", + "timestamp": "2022-03-30" } ], "associatedSites": [ { - "uuid": "aa787517-22dd-4ebd-a5c6-d1d6d711c2d5", - "dateNoted": "2021-11-15", - "notes": "", - "parcelID": "20540", - "siteID": "16017", - "siteRegistry": false - }, - { - "uuid": "b719fab3-93e3-4d26-8f0e-e9bde11aaaf0", - "dateNoted": "2014-08-03", + "uuid": "95116ae6-8159-44ac-aec2-7744afea9ec0", + "dateNoted": "2020-01-24", "notes": "", - "parcelID": "15403", - "siteID": "17062", + "parcelID": "16422", + "siteID": "20261", "siteRegistry": false }, { - "uuid": "cb2c799d-3cb2-49cd-a5a9-a117d198dcbb", - "dateNoted": "2018-12-20", + "uuid": "25e99307-f898-41c4-a16f-4f1a39972eed", + "dateNoted": "2015-01-10", "notes": "", - "parcelID": "17954", - "siteID": "16026", - "siteRegistry": false + "parcelID": "15458", + "siteID": "17033", + "siteRegistry": true } ] }, { - "uuid": "129b5a88-ff8f-4ac2-8f85-b0b7588c96a0", - "siteID": 20892, - "address": "62510 Little Row", - "latitude": 51.7769, - "longitude": -130.3846, - "lastUpdated": "2023-05-31", - "city": "Vernaworth", - "region": " North Coast", - "victoriaFile": "26250-20/18198", + "uuid": "b9bd80de-4849-4441-8a9c-3321a8d19588", + "siteID": 20630, + "address": "8352 Sadie Vista", + "latitude": 48.7266, + "longitude": -131.0691, + "lastUpdated": "2014-08-10", + "city": "Lake Virginie", + "region": "Mainland/Southwest", + "victoriaFile": "26250-20/17945", "regionalFile": "N/A", "parcelIDs": [ - 8548305, - 9840801, - 1573324, - 766261, - 3531069 + 7271382, + 2178200, + 796972, + 967507, + 8270006 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "9fb7d8fe-b27a-4769-9c73-ee640ffc60cf", - "createdAt": "2013-12-20", - "completed": "2015-04-10", - "initiated": "2013-12-08", - "ministryContact": "HAMMES BILLIE", + "uuid": "4fb12b5c-8904-453f-ba3a-02ad15823c49", + "createdAt": "2018-12-21", + "completed": "2018-01-21", + "initiated": "2016-07-19", + "ministryContact": "RENNER ANNIE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -40765,44 +47462,44 @@ ], "notationParticipants": [ { - "uuid": "7d7da586-e1f7-4a05-9366-e10bfd3e2efd", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false + "uuid": "72fc3b28-8c4f-4197-b4bc-98a01cbc2fc4", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true }, { - "uuid": "e7a1d8aa-8ef1-4865-af18-f8ca50758bbd", + "uuid": "e22b10c0-f9c4-4b18-9690-29906605e9ff", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false }, { - "uuid": "2ca19bb3-aaab-40d6-ba11-00bfb41db26e", + "uuid": "6a8a7999-d691-4ddc-bb7d-4a2e5530b28b", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "5e7ebff4-1156-453b-9a80-fc295544f303", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "uuid": "cae41e80-6ff4-4155-8376-5596c6d6bb1b", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": false }, { - "uuid": "56190f2f-bc29-44f3-a250-f9ef3f2a856f", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "uuid": "7737e3ef-3e23-4c4f-bbbe-c71925782e25", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "f74eb6f6-9cd1-4c84-8e5b-c151db0482a1", - "createdAt": "2019-02-01", - "completed": "2021-08-23", - "initiated": "2022-08-07", - "ministryContact": "MULLER TANNER", + "uuid": "d69c2644-6e8a-4842-8562-4c5315fdd362", + "createdAt": "2015-09-28", + "completed": "2021-08-06", + "initiated": "2023-07-14", + "ministryContact": "LANGWORTH-LEUSCHKE SALLIE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -40811,21 +47508,15 @@ ], "notationParticipants": [ { - "uuid": "8771110b-92d9-4e8f-947a-b9f61622c6c8", + "uuid": "ec03fede-4d69-43a9-af55-a4d0218fc7dd", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "uuid": "3dd2f935-dc9c-4deb-8347-6c1aaf786c8d", - "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false }, { - "uuid": "acedc091-1b42-4fb5-b558-92fa072884cb", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "uuid": "3ffd4a7e-52ab-478f-8736-658546c2005d", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": true } ], @@ -40834,116 +47525,230 @@ ], "participants": [ { - "uuid": "e6d678b8-df10-4ac9-9df5-6c2e6b65a4c4", - "name": "SHELL CANADA PRODUCTS", - "endDate": "2015-03-02", - "startDate": "2015-10-04", + "uuid": "c93c05f9-485f-4012-969f-239fb5caadf6", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2016-02-11", + "startDate": "2015-09-26", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "uuid": "588483ba-9755-45d6-a0c9-26b0ac8ca445", + "name": "AMET, DOLOR SIT", + "endDate": "2014-04-21", + "startDate": "2019-01-27", + "notes": "", + "roles": [ + "EMPLOYEE" ], "siteRegistry": true }, { - "uuid": "27199627-7847-455d-aebd-275f480aa306", + "uuid": "295a801e-6b6a-459d-af03-28d1d1fda42a", "name": "IPSUM", - "endDate": "2020-10-13", - "startDate": "2016-11-16", + "endDate": "2023-05-01", + "startDate": "2019-11-25", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false } ], - "suspectLandUses": [ + "documents": [ { - "uuid": "ada81984-ad60-4208-b855-7acde4d255f0", + "uuid": "7568537f-7591-4d1e-94ec-761adea079c5", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-06-14 (described on Site Profile dated 2022-06-14)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "documentDate": "2020-10-22", + "receivedDate": "2021-11-07", + "uploadedDate": "2023-07-19", + "title": "Preliminary Site Investigation, Detailed Site Investigation and Remedial Plan for the Management Area adjacent to the Shell Site at 1503 West 41st Ave", + "participants": [ + { + "uuid": "1be92804-09f8-4d12-95b3-470581261744", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": true, + "role": "AUTHOR" + } + ] }, { - "uuid": "bf22dd5e-96db-457d-a8b0-c9580664e9ac", + "uuid": "6f3e5d28-320e-4eb2-968e-930205391046", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2023-04-07 (described on Site Profile dated 2023-04-07)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "documentDate": "2017-04-28", + "receivedDate": "2019-02-26", + "uploadedDate": "2017-08-24", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "72bd239f-1a5c-4fef-9a51-a57c23ab529e", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "9c9961f6-af80-49d8-bb0d-9585271ed3ff", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "83a97442-b5dc-4735-b17e-f12bf7af12bc", + "name": "IPSUM", + "siteRegistry": true, + "role": "AUTHOR" + } + ] }, { - "uuid": "75758671-e9c7-4a7e-a9d8-d0e6a2ee6ff0", + "uuid": "832836b4-3984-4b47-be12-c9dfcb3862cf", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-06-29 (described on Site Profile dated 2022-06-29)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "documentDate": "2016-04-05", + "receivedDate": "2017-12-03", + "uploadedDate": "2015-02-25", + "title": "Summary of Site Conditions, 1537 W 41st Avenue, Vancouver", + "participants": [ + { + "uuid": "11c4b3ec-8e95-4a47-8c64-47b76cbf1bba", + "name": "AMET, DOLOR SIT", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "7dcd36be-a624-4214-924f-066df0ff75aa", + "name": "IPSUM", + "siteRegistry": false, + "role": "AUTHOR" + } + ] + }, + { + "uuid": "ab28af36-c56b-48de-b0d1-9ed8b6fe2fae", + "siteRegistry": false, + "documentDate": "2019-09-14", + "receivedDate": "2017-12-27", + "uploadedDate": "2017-08-13", + "title": "Preliminary Site Investigation, Detailed Site Investigation and Remedial Plan for the Management Area adjacent to the Shell Site at 1503 West 41st Ave", + "participants": [ + { + "uuid": "53dc0e88-1e61-4996-bf02-19478929cb1d", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "ba1e07c8-28e5-4ce3-984b-861f408b09d8", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "c4e66496-bea2-47da-878c-a68d6f539c5f", + "name": "IPSUM", + "siteRegistry": true, + "role": "AUTHOR" + } + ] + }, + { + "uuid": "d063409c-4856-437b-9df0-12ede87a1422", + "siteRegistry": false, + "documentDate": "2023-09-16", + "receivedDate": "2022-08-17", + "uploadedDate": "2017-09-09", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "92ee79c4-53d6-45f9-8750-91fbaec4dbdf", + "name": "IPSUM", + "siteRegistry": false, + "role": "AUTHOR" + } + ] } ], - "parcelDescriptions": [ + "suspectLandUses": [ { - "uuid": "1f475543-a1e4-404a-8f56-63c87336fda6", + "uuid": "1afd7b55-d164-4811-8821-59b560ff134c", "siteRegistry": true, - "dateNoted": "2017-07-23", - "parcelID": "15233", - "crownLandUsePIN": "16754", - "crownLandFileNumber": "16712", - "landDescription": "LOT 5 OF LOT 4 BLOCK 1 DISTRICT LOT 3 PLAN 7267" + "notes": "INSERTED FOR SITE PROFILE DATED 2019-12-23 (described on Site Profile dated 2019-12-23)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "uuid": "ebaea0c7-5328-4dd2-8c29-15fe422ec5e5", - "siteRegistry": false, - "dateNoted": "2019-06-18", - "parcelID": "15552", - "crownLandUsePIN": "16331", - "crownLandFileNumber": "20320", - "landDescription": "LOT 4 OF LOT 3 BLOCK 2 DISTRICT LOT 1 PLAN 5721" + "uuid": "4fc4286b-601d-4786-9d17-7af33da9e5fd", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2017-11-09 (described on Site Profile dated 2017-11-09)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "uuid": "21296b9f-20b2-4cf6-8754-8f5fa6349934", + "uuid": "5fd0e136-9bed-4ca4-86ad-2f3e64b6a183", "siteRegistry": false, - "dateNoted": "2020-10-26", - "parcelID": "18443", - "crownLandUsePIN": "17723", - "crownLandFileNumber": "15222", - "landDescription": "LOT 2 OF LOT 5 BLOCK 3 DISTRICT LOT 3 PLAN 7324" + "notes": "INSERTED FOR SITE PROFILE DATED 2021-09-16 (described on Site Profile dated 2021-09-16)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "uuid": "99705ba6-d9c0-484e-b058-626b2af86054", + "uuid": "cfe9191e-7f88-4010-94fb-f338771dcdbd", "siteRegistry": true, - "dateNoted": "2022-12-25", - "parcelID": "17266", - "crownLandUsePIN": "17000", - "crownLandFileNumber": "17674", - "landDescription": "LOT 5 OF LOT 1 BLOCK 2 DISTRICT LOT 1 PLAN 8777" + "notes": "INSERTED FOR SITE PROFILE DATED 2016-08-01 (described on Site Profile dated 2016-08-01)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "uuid": "debf32fd-80fc-469b-935f-c9b7eb52b144", - "siteRegistry": false, - "dateNoted": "2017-02-04", - "parcelID": "18525", - "crownLandUsePIN": "18940", - "crownLandFileNumber": "16474", - "landDescription": "LOT 1 OF LOT 3 BLOCK 5 DISTRICT LOT 2 PLAN 7072" + "uuid": "0f5a4214-893d-4209-81ac-589f9119e348", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2016-02-25 (described on Site Profile dated 2016-02-25)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], - "siteDisclosures": [ + "parcelDescriptions": [ + { + "uuid": "7afcd5c3-3337-434c-9cdd-7746b0756568", + "siteRegistry": true, + "dateNoted": "2014-02-13", + "parcelID": "16607", + "crownLandUsePIN": "16383", + "crownLandFileNumber": "18178", + "landDescription": "LOT 3 OF LOT 5 BLOCK 1 DISTRICT LOT 4 PLAN 6112" + }, { - "uuid": "b56f6784-e4dc-443d-aa05-96fa9447327e", + "uuid": "feb2c6f3-9e15-4aa0-9d5a-c8f484dd2adc", "siteRegistry": true, - "dateReceived": "2017-06-13", - "dateCompleted": "2020-03-01", - "dateEntered": "2019-07-26", - "dateRegistrar": "2022-10-29", - "dateLocalAuthorityReceived": "2014-10-05", - "summary": "Dolorem vero iure dolorem tempora adipisci at laborum qui ratione.\nAdipisci tempora laborum fugit laborum fugiat iusto.", - "informationUsed": "Nobis corporis earum.\nVitae occaecati sapiente quis architecto laboriosam repudiandae explicabo.\nEsse dolores possimus repellat delectus eaque.\nAccusamus deleniti architecto neque maiores ratione occaecati illo architecto labore.\nItaque possimus provident accusamus aliquam.", - "pastOrPresentOrders": "Odit ratione vitae autem modi beatae laudantium quae corrupti.", + "dateNoted": "2020-06-27", + "parcelID": "16695", + "crownLandUsePIN": "18373", + "crownLandFileNumber": "20047", + "landDescription": "LOT 2 OF LOT 5 BLOCK 1 DISTRICT LOT 4 PLAN 7264" + } + ], + "siteDisclosures": [ + { + "uuid": "4361c30b-9e95-4e85-951a-3f0eb0b68de6", + "siteRegistry": false, + "dateReceived": "2015-11-07", + "dateCompleted": "2016-03-01", + "dateEntered": "2023-04-13", + "dateRegistrar": "2020-03-08", + "dateLocalAuthorityReceived": "2017-08-10", + "summary": "Esse ullam fugit harum asperiores aspernatur sint vel minima aspernatur.\nDignissimos eum id vitae quisquam alias culpa iusto.", + "informationUsed": "Repellat cum quae itaque aliquid.\nQuisquam quae odit saepe modi aperiam placeat.\nAperiam adipisci reiciendis.\nAnimi temporibus vero molestiae consectetur eius incidunt sit voluptatem culpa.\nAspernatur delectus deserunt fugiat corrupti recusandae odio.", + "pastOrPresentOrders": "Deleniti quos possimus.\nDoloremque omnis illum rerum quisquam nobis deleniti sunt corrupti eligendi.\nRem suscipit eligendi impedit esse saepe consequatur iusto.", "commercialAndIndustrialPurposes": [ { - "uuid": "3dbcd21b-e398-407a-a8a0-705a66530639", + "uuid": "9d537f36-2f1f-4e63-aad3-3bb65d5205d7", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { - "uuid": "ff997bd5-6c9f-47e6-8f4a-69a8a93e592f", + "uuid": "04039230-f449-496e-b3cb-f3aa66226d5e", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "uuid": "1712c869-2657-4807-b393-c4b5c92d5e12", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false @@ -40951,120 +47756,134 @@ ] }, { - "uuid": "4e9d8555-c1b6-4d3e-af0c-e34121791a98", + "uuid": "e5ac0b45-a811-4237-b74f-68cfebf62dc6", "siteRegistry": false, - "dateReceived": "2018-09-19", - "dateCompleted": "2016-04-14", - "dateEntered": "2022-06-20", - "dateRegistrar": "2017-03-24", - "dateLocalAuthorityReceived": "2018-06-21", - "summary": "Aut aliquam itaque qui.\nConsequuntur eveniet delectus mollitia sunt sapiente excepturi saepe.", - "informationUsed": "Accusantium doloremque corrupti ab.\nExplicabo perferendis itaque iure quisquam ex eius suscipit mollitia.\nNemo minima eveniet quibusdam.", - "pastOrPresentOrders": "Minus odit dolores rerum expedita officia molestias.", + "dateReceived": "2023-08-26", + "dateCompleted": "2016-03-21", + "dateEntered": "2015-09-25", + "dateRegistrar": "2018-07-23", + "dateLocalAuthorityReceived": "2023-10-06", + "summary": "Architecto repellat eius itaque est cum mollitia commodi eaque.\nCorrupti veniam illum laudantium ullam.", + "informationUsed": "Facere fugiat velit totam eos blanditiis delectus tempora debitis.\nRepellat sequi expedita dolorum delectus quo quasi.\nRerum eveniet earum sequi quia sapiente provident enim dolore officiis.\nNatus debitis temporibus voluptatum commodi.\nCum corporis quasi officiis.", + "pastOrPresentOrders": "Laudantium ipsum accusantium illo consequatur non nulla.\nNihil ad suscipit itaque.\nImpedit rerum omnis suscipit cum molestias atque.", "commercialAndIndustrialPurposes": [ { - "uuid": "1a7267f2-c455-4682-b2cd-800ec3ce03d1", + "uuid": "b3d43742-2c3f-48e2-93bc-c8fece102a5c", "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true }, { - "uuid": "67537e18-9157-457d-b948-4753404de74a", - "scheduleReference": "F1*", + "uuid": "9fe1adb3-3c49-4bc0-9514-484256098121", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { - "uuid": "9d296afe-4c8d-4c30-8a6c-4dc5558262b1", + "uuid": "930da3fa-9b56-4cad-8f28-a97ee4424f35", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "uuid": "95e42ac5-b302-4fc6-a6f6-026d2ea6cbd0", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true + "siteRegistry": false } ] } ], "activityLog": [ { - "uuid": "0040e2f6-e8ea-4b14-9539-61aa5d4035eb", + "uuid": "33831a8e-d1e2-4cfa-b830-dccfb5ad6836", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "WITTING BRAD", - "timestamp": "2020-01-16" + "user": "SHANAHAN DILLON", + "timestamp": "2016-04-09" }, { - "uuid": "42925383-b913-45de-aaaf-483528ab0002", + "uuid": "eb001564-deec-4f0a-82e4-36577eec42c7", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "MONAHAN LINDA", - "timestamp": "2021-02-09" + "user": "WATSICA ANDRES", + "timestamp": "2017-01-24" }, { - "uuid": "99b93ec5-a1f4-4b3a-a952-cdbc149916a7", + "uuid": "4ba86406-3b3f-47f8-9b01-1ba7b7716490", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "HERZOG MACK", - "timestamp": "2017-04-13" + "user": "LEUSCHKE RYLAN", + "timestamp": "2023-10-08" }, { - "uuid": "7f320c5b-49a9-4b43-acae-f33825130b30", + "uuid": "e29ba97a-6c52-4f64-843b-ae9a51987bda", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "BASHIRIAN OWEN", - "timestamp": "2020-12-14" + "user": "BODE FERMIN", + "timestamp": "2018-05-21" }, { - "uuid": "8a27ce2a-de6a-43f2-86b4-95c8badaf42c", + "uuid": "419d6355-2c40-4d00-b550-f61b8bb2f5e1", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "HARBER ARIANE", - "timestamp": "2023-08-21" + "user": "BARROWS ROXANE", + "timestamp": "2015-02-11" } ], "associatedSites": [ { - "uuid": "6a67c507-0e01-4dba-9f9e-d7daba62696a", - "dateNoted": "2022-06-01", + "uuid": "6cac19c8-78c3-47ea-81ce-4fa99302d0ff", + "dateNoted": "2020-02-24", "notes": "", - "parcelID": "19654", - "siteID": "19122", - "siteRegistry": false + "parcelID": "16533", + "siteID": "15607", + "siteRegistry": true + }, + { + "uuid": "4c499d32-f7f5-4e7c-a456-358805df22c5", + "dateNoted": "2016-01-21", + "notes": "", + "parcelID": "20810", + "siteID": "17433", + "siteRegistry": true }, { - "uuid": "7c8b5cf6-e8d4-4d3f-b0d0-6673dc25bac9", - "dateNoted": "2019-03-31", + "uuid": "e808aff7-0910-4f25-bd6b-e16315db142b", + "dateNoted": "2020-06-09", "notes": "", - "parcelID": "16831", - "siteID": "16986", + "parcelID": "18058", + "siteID": "20978", "siteRegistry": false } ] }, { - "uuid": "408b8dc1-1161-44ff-a27a-4a8094ff898e", - "siteID": 20381, - "address": "173 Silas Plains", - "latitude": 48.774, - "longitude": -118.2796, - "lastUpdated": "2014-10-14", - "city": "South Annabellmouth", - "region": "Kootenay", - "victoriaFile": "26250-20/18386", + "uuid": "6eadbfa2-a9fb-4b8f-a7e1-04fc1b739256", + "siteID": 15676, + "address": "234 Luettgen Course", + "latitude": 54.7722, + "longitude": -133.7063, + "lastUpdated": "2021-01-21", + "city": "Hoegerton", + "region": "Vancouver Island/Coast", + "victoriaFile": "26250-20/1229", "regionalFile": "N/A", "parcelIDs": [ - 4835246, - 4256657, - 8301859, - 4263141, - 5808998 + 5564984, + 4318909, + 6933426, + 4253093, + 4218843 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "34aa4f9d-1765-47ba-999a-53bd254ba15e", - "createdAt": "2014-06-13", - "completed": "2015-07-21", - "initiated": "2018-04-22", - "ministryContact": "GLEICHNER JACKIE", + "uuid": "b13af6b5-ebd3-4fad-b86e-80e9253e5609", + "createdAt": "2017-10-25", + "completed": "2021-09-08", + "initiated": "2015-06-20", + "ministryContact": "PREDOVIC LUCILE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -41073,32 +47892,72 @@ ], "notationParticipants": [ { - "uuid": "7113f039-b1a0-44a1-97e9-ab9d31142b9a", + "uuid": "9350b15d-5d1a-45f4-afd9-e51c45509b28", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "64e96aa6-5ac4-4a93-b034-e43523ac7a51", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "240a9492-9d69-419e-8241-74f6257103f0", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": true }, { - "uuid": "e7113754-2c59-435c-bef7-25cfae867389", - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "aa7e2441-4ba4-4fae-b86f-ab350cd7da4b", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false }, { - "uuid": "2d2f6df0-0e30-4431-a520-a17c897fa94b", + "uuid": "63b7ca5c-d5a5-44bd-a9ca-c4a4f7c81503", "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "uuid": "a5f65668-3129-44df-bd2f-69ba269a6a70", + "createdAt": "2016-06-05", + "completed": "2018-01-28", + "initiated": "2022-01-31", + "ministryContact": "BOEHM MOSHE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "uuid": "c4933228-28a6-4f19-93a6-b8ffacc7cc63", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "uuid": "d169bed1-9166-4ce1-b3f6-7d20cd87de6b", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": false } ], "siteRegistry": true }, { - "uuid": "8b82e81a-5c3d-4468-bec4-6a5ae5857a85", - "createdAt": "2017-03-19", - "completed": "2023-09-02", - "initiated": "2014-08-31", - "ministryContact": "KREIGER RAMON", + "uuid": "be812af7-26fc-4530-b78a-ab08cba97b83", + "createdAt": "2016-09-23", + "completed": "2014-01-01", + "initiated": "2021-06-28", + "ministryContact": "ROSENBAUM PHILIP", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -41107,290 +47966,359 @@ ], "notationParticipants": [ { - "uuid": "87b81313-901c-4b54-8fd4-c8d56641d80d", + "uuid": "12ad394d-ba4a-4155-8bdb-e22658d7064a", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "8f63c8d2-cfde-4e59-9793-2b9df5052f5b", + "uuid": "09789a43-ef57-40c5-b997-4cd04be9f650", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false + }, + { + "uuid": "772031e6-8550-409a-84db-587ee93a670f", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false } ], "siteRegistry": false + }, + { + "uuid": "c63be40f-7ea4-4035-839b-f0819f9a2fcc", + "createdAt": "2022-02-10", + "completed": "2013-11-02", + "initiated": "2019-11-15", + "ministryContact": "HALEY TORREY", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "uuid": "687fe748-c7eb-4483-8e29-228ded1a3ca6", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "69d80442-6f34-4644-a4d5-491ec9bad082", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true } ], "participants": [ { - "uuid": "7abc4898-c73d-45b4-8030-021c65ede61e", + "uuid": "1bcb53b3-2edf-490a-b4b3-0fd0b42d8b4f", "name": "IPSUM", - "endDate": "2014-08-02", - "startDate": "2015-10-28", + "endDate": "2013-11-01", + "startDate": "2018-04-28", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "33f63b89-c9cf-4996-b36e-e3a71af40a4e", - "name": "SHELL CANADA PRODUCTS", - "endDate": "2020-11-02", - "startDate": "2014-08-08", + "uuid": "2517571e-aead-4bf7-b72a-79771ee9aa50", + "name": "AMET, DOLOR SIT", + "endDate": "2017-03-31", + "startDate": "2023-03-13", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "e09bf9e6-43d2-4eb9-854e-22e34a5cf7f6", - "name": "SHELL CANADA PRODUCTS", - "endDate": "2016-04-01", - "startDate": "2020-10-07", + "uuid": "cf8e7362-6aad-4e5a-b63d-a873872b0c25", + "name": "IPSUM", + "endDate": "2019-07-23", + "startDate": "2021-09-19", "notes": "", "roles": [ "EMPLOYEE" ], "siteRegistry": false + } + ], + "documents": [ + { + "uuid": "0cac6e85-c57a-4d08-be5d-95915a355aa3", + "siteRegistry": false, + "documentDate": "2020-07-08", + "receivedDate": "2017-02-09", + "uploadedDate": "2022-07-13", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "51b49652-429b-44ce-8d8d-91d36ea5bd84", + "name": "IPSUM", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "7a0d8496-3936-4857-897e-ce75da3c131f", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "5e37aaef-0169-4c36-bd52-3b1f6128c6d4", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": false, + "role": "AUTHOR" + } + ] }, { - "uuid": "db642e68-6a55-4916-b1f1-dfffc6e9a2ce", - "name": "SHELL CANADA PRODUCTS", - "endDate": "2013-12-06", - "startDate": "2021-06-08", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": true + "uuid": "0702e19e-464b-4162-9fae-15ed1e804524", + "siteRegistry": true, + "documentDate": "2022-03-04", + "receivedDate": "2014-06-16", + "uploadedDate": "2017-05-16", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "65e2fa45-fef5-4456-86bf-38f7a4e79848", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": false, + "role": "AUTHOR" + } + ] } ], "suspectLandUses": [ { - "uuid": "1fa856e1-2883-48c1-a056-3ed40c11ee66", + "uuid": "993bc604-e547-480d-a891-48f4e6364357", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-04-30 (described on Site Profile dated 2017-04-30)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "notes": "INSERTED FOR SITE PROFILE DATED 2017-11-26 (described on Site Profile dated 2017-11-26)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "uuid": "c6bbced0-e2e0-4fb2-9675-77551278a27d", - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-09-01 (described on Site Profile dated 2022-09-01)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "uuid": "c8b2634f-e17e-4553-8f26-d11efdec58b9", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2020-03-21 (described on Site Profile dated 2020-03-21)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "uuid": "6253167c-ef41-400c-a48a-d0dc557aefad", + "uuid": "35beeb4d-c6e1-412b-903a-14b516ebdef5", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2020-10-01 (described on Site Profile dated 2020-10-01)", + "notes": "INSERTED FOR SITE PROFILE DATED 2015-04-09 (described on Site Profile dated 2015-04-09)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], "parcelDescriptions": [ { - "uuid": "9c085cfe-3716-419a-a27e-cf22aa66a49e", + "uuid": "188925e7-55fa-40b8-b02f-3cb0a0e16cfb", "siteRegistry": true, - "dateNoted": "2021-12-29", - "parcelID": "15687", - "crownLandUsePIN": "20761", - "crownLandFileNumber": "15776", - "landDescription": "LOT 2 OF LOT 2 BLOCK 2 DISTRICT LOT 1 PLAN 6793" + "dateNoted": "2017-06-13", + "parcelID": "15941", + "crownLandUsePIN": "15828", + "crownLandFileNumber": "16466", + "landDescription": "LOT 2 OF LOT 5 BLOCK 2 DISTRICT LOT 5 PLAN 6830" }, { - "uuid": "e12f40dc-e1da-4dd2-b3c9-9d1897db1c12", - "siteRegistry": false, - "dateNoted": "2017-08-03", - "parcelID": "20934", - "crownLandUsePIN": "15831", - "crownLandFileNumber": "15886", - "landDescription": "LOT 4 OF LOT 1 BLOCK 4 DISTRICT LOT 4 PLAN 7351" + "uuid": "2ea1b5ec-e2b9-422c-a65e-c0605dfe44d5", + "siteRegistry": true, + "dateNoted": "2016-07-11", + "parcelID": "20283", + "crownLandUsePIN": "20898", + "crownLandFileNumber": "15953", + "landDescription": "LOT 3 OF LOT 3 BLOCK 5 DISTRICT LOT 1 PLAN 9313" }, { - "uuid": "dd1ddc46-4f1f-41ac-8f7f-73c122999e4c", + "uuid": "d6ca6676-31ae-457d-b896-844ed07b0b25", "siteRegistry": false, - "dateNoted": "2019-05-09", - "parcelID": "16660", - "crownLandUsePIN": "19681", - "crownLandFileNumber": "15646", - "landDescription": "LOT 2 OF LOT 1 BLOCK 5 DISTRICT LOT 4 PLAN 6293" + "dateNoted": "2015-12-25", + "parcelID": "20480", + "crownLandUsePIN": "18889", + "crownLandFileNumber": "19267", + "landDescription": "LOT 2 OF LOT 3 BLOCK 3 DISTRICT LOT 3 PLAN 6373" }, { - "uuid": "c7492133-4a3e-4217-8821-6e341acab581", + "uuid": "492dc669-dc3e-4bd2-8b73-b2fe970003d0", "siteRegistry": true, - "dateNoted": "2014-01-26", - "parcelID": "19744", - "crownLandUsePIN": "17125", - "crownLandFileNumber": "15363", - "landDescription": "LOT 3 OF LOT 1 BLOCK 3 DISTRICT LOT 2 PLAN 4530" + "dateNoted": "2019-11-13", + "parcelID": "19589", + "crownLandUsePIN": "18074", + "crownLandFileNumber": "19783", + "landDescription": "LOT 2 OF LOT 5 BLOCK 4 DISTRICT LOT 5 PLAN 7393" } ], "siteDisclosures": [ { - "uuid": "cc6a05b0-22c1-4f29-8cdc-b424a62a2ee2", + "uuid": "ce9d7d47-a35b-4fc5-a333-becd650ab6cf", "siteRegistry": false, - "dateReceived": "2015-08-14", - "dateCompleted": "2016-10-26", - "dateEntered": "2021-10-09", - "dateRegistrar": "2017-03-29", - "dateLocalAuthorityReceived": "2014-10-24", - "summary": "Ab animi eaque adipisci id laborum placeat inventore.", - "informationUsed": "Accusantium alias itaque delectus accusamus quisquam soluta ex eaque.\nAdipisci blanditiis cum cupiditate.\nConsequuntur beatae eligendi tempore.\nConsequuntur nesciunt neque cumque placeat.", - "pastOrPresentOrders": "Perspiciatis cum odit nemo.\nMaxime itaque accusamus sunt dolores.\nEum minus saepe.", + "dateReceived": "2017-03-13", + "dateCompleted": "2016-08-13", + "dateEntered": "2020-11-10", + "dateRegistrar": "2018-08-31", + "dateLocalAuthorityReceived": "2014-12-15", + "summary": "Doloremque iste quidem cumque deserunt.\nDolorem quibusdam consequatur corporis occaecati.\nVeniam eum soluta.", + "informationUsed": "Quasi accusantium veniam blanditiis enim odit mollitia.\nBeatae esse tenetur.\nIusto reprehenderit deleniti ratione architecto.", + "pastOrPresentOrders": "Unde voluptatum sint.", "commercialAndIndustrialPurposes": [ { - "uuid": "dc635602-bec3-45bf-afa9-0c15d96204f4", + "uuid": "9d2bf7e7-111c-4e75-87dd-97f5d1266528", "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { - "uuid": "1d7dbc7a-13dd-4616-b4b5-8f63d14bb645", + "uuid": "1de8a05d-7029-409f-bcfc-2eafc1f087d2", "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "uuid": "0948d107-8ee4-47df-ac36-aaddd19d4cf8", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true + }, + { + "uuid": "a6a28082-ddf9-4d58-9420-50466dd268d9", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false } ] } ], "activityLog": [ { - "uuid": "84c5bf3d-2454-4176-8276-778f5acee8c6", + "uuid": "6772f1b6-b9e9-4bec-b8a2-eb7fbf759b34", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "RUNTE ETHEL", - "timestamp": "2019-04-23" + "user": "KUNZE LILLY", + "timestamp": "2019-04-10" }, { - "uuid": "ab518c8d-fd45-43de-8801-f5dab812085f", + "uuid": "b8527901-2586-4ad0-9232-20e78a86d074", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "SMITHAM DAVE", - "timestamp": "2022-09-18" + "user": "LARSON JANIYA", + "timestamp": "2022-08-23" }, { - "uuid": "5c4b3843-914e-4859-bf94-1f4d7342aab3", - "siteRegistry": false, + "uuid": "aecede0c-98e3-4647-9861-590f89bdd222", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "HAND FREDERICK", - "timestamp": "2016-09-25" + "user": "MOORE ASHTYN", + "timestamp": "2022-08-20" }, { - "uuid": "6882c0ee-7337-4d6c-90d3-6b61b04dd1c5", - "siteRegistry": true, + "uuid": "79b99366-7982-4383-a9ca-0be934b48701", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "MARQUARDT FAUSTINO", - "timestamp": "2014-06-22" + "user": "JACOBI TABITHA", + "timestamp": "2021-06-01" }, { - "uuid": "e6ea4b01-54f8-4ace-a9ef-6b780aaad8b1", - "siteRegistry": false, + "uuid": "906a9cac-d6c7-47c2-b4b8-ddcfdd420da6", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "CORMIER BELL", - "timestamp": "2015-08-25" + "user": "SPORER VIDA", + "timestamp": "2016-05-05" }, { - "uuid": "383e8fa3-a146-4b67-b3bb-adfa53ecfc9c", + "uuid": "b6c7d3ce-824d-4b61-9532-970d81a54ed0", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "ARMSTRONG LANEY", - "timestamp": "2014-03-17" + "user": "BLICK VILMA", + "timestamp": "2021-12-30" }, { - "uuid": "b5be0dc4-2818-427f-ad79-c1a4267210e1", - "siteRegistry": true, + "uuid": "652fe330-ab8b-43be-aad2-a1dd45c5e88c", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "RUECKER-MILLS SUZANNE", - "timestamp": "2015-07-25" + "user": "COLE ANAIS", + "timestamp": "2015-12-31" }, { - "uuid": "c3f7f829-f891-4dbc-b710-53bb4b62f84a", + "uuid": "a0dce402-eb5e-4d1f-98da-7f6e2ba296b0", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "BECHTELAR DARRIN", - "timestamp": "2017-02-27" + "user": "DICKI HELMER", + "timestamp": "2022-11-22" }, { - "uuid": "e50d3f38-6edb-44dd-81e0-5e645adcb738", + "uuid": "bd397d0c-431c-4d97-bf18-1383db38cafc", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "PADBERG KEELY", - "timestamp": "2017-05-20" + "user": "WOLFF JERMAINE", + "timestamp": "2017-12-13" }, { - "uuid": "b6cb3685-ad54-452c-bdb8-109f129d36af", + "uuid": "c10479bf-8de0-4933-b396-540bdc623118", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "WUCKERT INES", - "timestamp": "2018-01-29" + "user": "SCHUPPE OSBALDO", + "timestamp": "2020-09-18" } ], "associatedSites": [ { - "uuid": "d4046d70-9938-4ea6-90bc-50428e5fc31f", - "dateNoted": "2014-10-27", + "uuid": "99710fab-fe41-42b3-b875-e8fc0ee556fc", + "dateNoted": "2023-06-27", + "notes": "", + "parcelID": "18430", + "siteID": "15488", + "siteRegistry": true + }, + { + "uuid": "04e02125-7db4-4bb6-bfa9-6a7262dd2f67", + "dateNoted": "2023-08-23", "notes": "", - "parcelID": "19128", - "siteID": "19122", + "parcelID": "17204", + "siteID": "16579", + "siteRegistry": true + }, + { + "uuid": "1e9a51cb-0f7e-4e84-93ce-1c707c12a589", + "dateNoted": "2017-10-30", + "notes": "", + "parcelID": "18465", + "siteID": "17088", "siteRegistry": true } ] }, { - "uuid": "b4f037b4-56f6-4a91-be36-23376f151bab", - "siteID": 15261, - "address": "9298 Nikolaus Crossing", - "latitude": 48.4077, - "longitude": -119.0796, - "lastUpdated": "2015-05-14", - "city": "South Aniyahside", - "region": "Cariboo", - "victoriaFile": "26250-20/16303", + "uuid": "e926ebc1-4691-4fcf-9f8b-b29d06613458", + "siteID": 18872, + "address": "2712 Huels Parkways", + "latitude": 52.7675, + "longitude": -128.4093, + "lastUpdated": "2015-01-23", + "city": "Giovanifurt", + "region": "Mainland/Southwest", + "victoriaFile": "26250-20/12662", "regionalFile": "N/A", "parcelIDs": [ - 9002739, - 7767416, - 5585901, - 1686136, - 4365017 + 3489513, + 8353830, + 780956, + 3093428, + 8422202 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "a8cf3cf0-e4e2-4883-83a9-0ccff1eb400d", - "createdAt": "2017-02-21", - "completed": "2015-12-23", - "initiated": "2015-11-12", - "ministryContact": "KIHN ALICE", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "uuid": "5a33d4d8-ec0d-42ad-8886-d1c9ab666c58", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "uuid": "4f7ce3ac-fc75-487d-8dd8-9510fd4bec2b", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - } - ], - "siteRegistry": false - }, - { - "uuid": "ac48c0de-d41b-46a1-b94a-dc1ec070aa90", - "createdAt": "2018-10-06", - "completed": "2021-01-27", - "initiated": "2022-11-20", - "ministryContact": "SCHMELER MAGNUS", + "uuid": "58b0c397-40fa-4d89-add9-15bdaa00a78f", + "createdAt": "2013-10-27", + "completed": "2016-01-25", + "initiated": "2023-01-01", + "ministryContact": "HILLL SARAH", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -41399,65 +48327,25 @@ ], "notationParticipants": [ { - "uuid": "dea6c229-2dfe-4e5d-b3e0-b35cd0d46ddc", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "uuid": "a59d754c-711d-49d5-9978-6db5c4bfb528", + "uuid": "5a139043-24fd-4999-8861-9abee71382d5", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false }, { - "uuid": "12b127d5-a145-4f55-b851-3e2c1b66abcf", + "uuid": "54f90f57-0c22-44d1-b59f-ef5f163baa01", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - } - ], - "siteRegistry": true - }, - { - "uuid": "78439362-47f2-44b3-9216-01092a45a99f", - "createdAt": "2023-07-12", - "completed": "2021-04-09", - "initiated": "2022-01-24", - "ministryContact": "ALTENWERTH GRANT", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "uuid": "42d18320-a53c-48b5-b2f1-3f7f05bc04b4", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "uuid": "7f09f961-e5dd-49d5-b975-c34cec898e59", - "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "cb9ee2e3-8fda-4e14-84e1-a6be06a8bf94", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "uuid": "eda9f878-1b5d-4e71-a6c2-215816df6046", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "903f8c01-a335-4fdd-98eb-015fd538826e", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "uuid": "3037ae78-9c8b-421f-a7b0-b84819ca18c7", + "uuid": "183aecec-7e3a-479d-bd11-f1eacddc2ddf", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true @@ -41466,11 +48354,11 @@ "siteRegistry": false }, { - "uuid": "97b6c2a6-22d1-4877-b38f-82bd8d170bd6", - "createdAt": "2015-01-26", - "completed": "2017-01-16", - "initiated": "2018-10-11", - "ministryContact": "DICKENS MELISA", + "uuid": "270ee667-8aa6-4e77-8cad-064c27d6012a", + "createdAt": "2014-05-10", + "completed": "2019-11-02", + "initiated": "2021-08-19", + "ministryContact": "PARISIAN LAVADA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -41479,25 +48367,13 @@ ], "notationParticipants": [ { - "uuid": "0eed02fd-3704-454f-8de1-ad085ca6789b", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "uuid": "60b5cf71-fc0e-4eb7-82b9-ba80a2065270", + "uuid": "d35a74ac-2018-4982-8420-d85098aca442", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "uuid": "5bcab563-6e6f-4174-96fb-ba46b7990b7f", - "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "e474373f-e2fd-478c-9436-337a7c8dd75c", + "uuid": "cdd992f2-ec71-4558-a37a-8203d7c401b9", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true @@ -41506,11 +48382,11 @@ "siteRegistry": true }, { - "uuid": "83628a30-e2db-4ec7-851f-429a729dab23", - "createdAt": "2021-09-18", - "completed": "2015-05-14", - "initiated": "2015-02-04", - "ministryContact": "ZIEMANN KEARA", + "uuid": "b7940811-59fb-4afe-9d02-1d3ab52b69e0", + "createdAt": "2021-11-03", + "completed": "2023-01-18", + "initiated": "2019-09-01", + "ministryContact": "FAHEY ALEXA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -41519,26 +48395,20 @@ ], "notationParticipants": [ { - "uuid": "0674d522-ff6c-4d4e-bfca-32c1fe0bc96c", + "uuid": "aabd8a28-8075-431d-b700-bb4f57addfa7", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "uuid": "616f3739-c0cf-4b4e-81b5-765d4c9dc1e1", - "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "d0058482-c718-45b7-a4c4-1c706371aabf", - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "caa303d6-10f2-4fb0-904d-eeaf606d83fa", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "436a7cd5-9729-4951-a7ec-87b404cdb1ac", - "name": "SHELL CANADA PRODUCTS", + "uuid": "9f5b1f80-8ba0-4816-b8b2-c01568d50305", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true } @@ -41548,147 +48418,214 @@ ], "participants": [ { - "uuid": "81b50933-fbce-45d0-8abe-8aaaea856eab", + "uuid": "1043ca8b-6aeb-426d-8475-da008244d319", "name": "SHELL CANADA PRODUCTS", - "endDate": "2023-02-09", - "startDate": "2021-09-23", + "endDate": "2017-11-11", + "startDate": "2022-04-11", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "37d8da6a-4527-4308-8abc-0880ad6ba78b", + "uuid": "0c03edbc-fcab-4e00-8dae-a3724485826b", "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2022-11-20", - "startDate": "2018-03-11", + "endDate": "2021-12-13", + "startDate": "2013-12-15", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "uuid": "c22d88e3-ad7b-40cb-bf17-2dd234da70f0", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2016-02-04", + "startDate": "2018-05-01", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "uuid": "b4833bdb-18de-4dbb-bb66-b713c31245e1", + "name": "IPSUM", + "endDate": "2017-02-04", + "startDate": "2020-04-16", + "notes": "", + "roles": [ + "EMPLOYEE" ], "siteRegistry": true } ], + "documents": [ + { + "uuid": "af30d0c8-f203-4892-9886-34a26e0225c9", + "siteRegistry": false, + "documentDate": "2017-11-26", + "receivedDate": "2016-06-05", + "uploadedDate": "2014-07-31", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "f9b3be71-16e3-408f-8469-6b75412d51e7", + "name": "AMET, DOLOR SIT", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "8effc3e9-6bb3-48ff-b90d-d600157831b8", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "7225251b-4beb-4cbd-adb1-a0c296226b03", + "name": "IPSUM", + "siteRegistry": false, + "role": "AUTHOR" + } + ] + }, + { + "uuid": "3824efb3-38fc-4150-a755-6a56651ae6d9", + "siteRegistry": false, + "documentDate": "2016-02-15", + "receivedDate": "2023-05-21", + "uploadedDate": "2018-07-07", + "title": "Preliminary Site Investigation, Detailed Site Investigation and Remedial Plan for the Management Area adjacent to the Shell Site at 1503 West 41st Ave", + "participants": [ + { + "uuid": "781d76b0-d980-45fb-9a24-df48053abc88", + "name": "IPSUM", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "4ce6e8fd-10be-44a2-aa2b-9d6c2f4433fc", + "name": "IPSUM", + "siteRegistry": false, + "role": "AUTHOR" + } + ] + }, + { + "uuid": "3b3968a9-7767-4381-a3cc-d67dea6d282f", + "siteRegistry": true, + "documentDate": "2013-12-02", + "receivedDate": "2018-04-19", + "uploadedDate": "2017-11-25", + "title": "Summary of Site Conditions, 1537 W 41st Avenue, Vancouver", + "participants": [ + { + "uuid": "f45a4693-478a-4a75-a2f1-94058739bf8b", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "28fb3070-efdc-4698-911b-db5fc6068f49", + "name": "AMET, DOLOR SIT", + "siteRegistry": false, + "role": "AUTHOR" + } + ] + } + ], "suspectLandUses": [ { - "uuid": "d02eb3d6-787c-490b-a6d8-15e4aa27d8a7", + "uuid": "239518fb-da99-4e32-a573-0494c469b5e8", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-12-29 (described on Site Profile dated 2021-12-29)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "notes": "INSERTED FOR SITE PROFILE DATED 2022-02-23 (described on Site Profile dated 2022-02-23)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "uuid": "57e2cd61-732b-4788-954e-003c1837032b", - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-11-18 (described on Site Profile dated 2019-11-18)", + "uuid": "a0589a2d-b110-4371-a567-8634374df349", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2020-09-22 (described on Site Profile dated 2020-09-22)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "uuid": "127f2ac0-9a99-45fc-a0f4-f4d3ede414a5", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2023-05-22 (described on Site Profile dated 2023-05-22)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], "parcelDescriptions": [ { - "uuid": "a7709afa-289a-44e0-9fb5-3c898d3367ab", - "siteRegistry": true, - "dateNoted": "2014-08-29", - "parcelID": "17747", - "crownLandUsePIN": "17670", - "crownLandFileNumber": "17085", - "landDescription": "LOT 4 OF LOT 3 BLOCK 5 DISTRICT LOT 2 PLAN 9651" + "uuid": "01cb10af-54c5-4536-b9cb-f8cde20067a7", + "siteRegistry": false, + "dateNoted": "2018-09-16", + "parcelID": "18760", + "crownLandUsePIN": "20871", + "crownLandFileNumber": "17946", + "landDescription": "LOT 4 OF LOT 5 BLOCK 5 DISTRICT LOT 4 PLAN 5898" }, { - "uuid": "37ffa36e-e9ca-48b8-b844-61f058f2ec69", - "siteRegistry": false, - "dateNoted": "2021-04-22", - "parcelID": "18364", - "crownLandUsePIN": "16351", - "crownLandFileNumber": "18454", - "landDescription": "LOT 3 OF LOT 3 BLOCK 1 DISTRICT LOT 4 PLAN 6389" + "uuid": "d9279aa9-d643-4f9a-90a0-e6a25273a585", + "siteRegistry": true, + "dateNoted": "2021-03-27", + "parcelID": "19517", + "crownLandUsePIN": "17769", + "crownLandFileNumber": "16142", + "landDescription": "LOT 1 OF LOT 5 BLOCK 3 DISTRICT LOT 1 PLAN 7247" }, { - "uuid": "e2feafab-bc15-46de-8357-1845245c3210", + "uuid": "3a6366e6-97e7-4330-ac57-0956da00d9e2", "siteRegistry": true, - "dateNoted": "2019-03-09", - "parcelID": "15477", - "crownLandUsePIN": "19411", - "crownLandFileNumber": "18846", - "landDescription": "LOT 3 OF LOT 2 BLOCK 5 DISTRICT LOT 2 PLAN 3338" + "dateNoted": "2014-12-21", + "parcelID": "15805", + "crownLandUsePIN": "17375", + "crownLandFileNumber": "17131", + "landDescription": "LOT 4 OF LOT 5 BLOCK 1 DISTRICT LOT 5 PLAN 7180" }, { - "uuid": "4a85a69d-cb68-46b8-8a8b-ff3a8298a9b0", + "uuid": "7c72750b-7453-4663-bcc7-e0b5c2076f6c", "siteRegistry": false, - "dateNoted": "2020-05-20", - "parcelID": "19437", - "crownLandUsePIN": "18425", - "crownLandFileNumber": "18286", - "landDescription": "LOT 1 OF LOT 4 BLOCK 2 DISTRICT LOT 2 PLAN 6166" + "dateNoted": "2021-10-14", + "parcelID": "19091", + "crownLandUsePIN": "17614", + "crownLandFileNumber": "18858", + "landDescription": "LOT 5 OF LOT 3 BLOCK 5 DISTRICT LOT 3 PLAN 5397" + }, + { + "uuid": "26f58ee6-a8fe-41e5-ab32-c120c071824e", + "siteRegistry": false, + "dateNoted": "2017-12-02", + "parcelID": "17202", + "crownLandUsePIN": "19641", + "crownLandFileNumber": "17659", + "landDescription": "LOT 5 OF LOT 2 BLOCK 3 DISTRICT LOT 5 PLAN 8800" } ], "siteDisclosures": [ { - "uuid": "2de7b01e-8bd8-4017-8fb8-a6f0aa452ce0", - "siteRegistry": true, - "dateReceived": "2023-02-26", - "dateCompleted": "2017-04-06", - "dateEntered": "2016-09-12", - "dateRegistrar": "2020-04-27", - "dateLocalAuthorityReceived": "2023-09-17", - "summary": "Fuga ipsam itaque sit accusantium hic.\nNihil nemo tempore.\nExercitationem labore illo harum assumenda modi numquam non.", - "informationUsed": "Consequuntur veniam harum sint quaerat esse quisquam.\nSequi quam et quidem minus officiis iusto eligendi.\nRem odio tempora autem voluptatum saepe.", - "pastOrPresentOrders": "Omnis voluptatibus voluptatum nostrum provident nemo.\nEnim reiciendis necessitatibus perspiciatis quia amet eveniet.", - "commercialAndIndustrialPurposes": [ - { - "uuid": "a5302f33-a3d7-47cb-90f5-e95342bd18ed", - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true - }, - { - "uuid": "75bcf032-be28-4810-94d8-203a47f52ead", - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true - }, - { - "uuid": "b6150058-44e6-4ee3-ac88-1f13b0ee77bb", - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true - }, - { - "uuid": "10fb8680-39a3-49c9-99e8-e694e6670392", - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true - } - ] - }, - { - "uuid": "2bb1cfb0-aac0-4cbe-8704-daffa2c738da", + "uuid": "f884a2af-0a10-4b84-ab66-e91b430d8bc0", "siteRegistry": false, - "dateReceived": "2014-08-25", - "dateCompleted": "2019-09-17", - "dateEntered": "2019-08-27", - "dateRegistrar": "2023-08-22", - "dateLocalAuthorityReceived": "2013-10-17", - "summary": "Odio tempora maiores cupiditate delectus nobis error vel magni culpa.\nOmnis voluptates aut.\nVel nostrum temporibus.", - "informationUsed": "Dicta quod quod quam repellat minus.\nDistinctio modi quod.\nQui voluptatum ratione pariatur at occaecati voluptatibus facilis magnam illum.\nDeserunt tenetur dolorum voluptatum labore deleniti quos.", - "pastOrPresentOrders": "Nulla fuga aliquid modi molestias eligendi suscipit tempora.", + "dateReceived": "2014-10-10", + "dateCompleted": "2014-06-04", + "dateEntered": "2016-11-27", + "dateRegistrar": "2022-07-29", + "dateLocalAuthorityReceived": "2016-05-10", + "summary": "Ut itaque praesentium iure repellat.", + "informationUsed": "Nemo exercitationem velit optio blanditiis eveniet accusantium vero eius.\nQuaerat optio debitis enim similique fugiat architecto repellendus facere mollitia.\nQuaerat ipsum nam a aspernatur odio earum eum atque.\nAccusantium assumenda asperiores quisquam ipsam veniam.\nRem nisi facilis rem nam praesentium vel.", + "pastOrPresentOrders": "Exercitationem et pariatur.\nPraesentium voluptatum delectus nobis quia sunt earum est laboriosam.", "commercialAndIndustrialPurposes": [ { - "uuid": "34d5564c-8e68-45a5-b692-59eb7506b3bb", + "uuid": "a80fe683-da47-4a22-a506-46b00e171fc5", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { - "uuid": "50e66088-90b6-4487-a8ae-2e87f656a677", + "uuid": "32f3bf46-35a3-4c51-a98d-44b0008f1ced", "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false - }, - { - "uuid": "37ba0d5f-a119-4336-b83a-baa91e8b0194", - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true } ] @@ -41696,94 +48633,129 @@ ], "activityLog": [ { - "uuid": "5d27d6e4-b686-4ef9-9335-7b25eaaf0267", - "siteRegistry": true, + "uuid": "7056a03a-5805-4b5c-9bf7-1541c756befd", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "BODE RAFAEL", + "timestamp": "2015-03-05" + }, + { + "uuid": "4161711d-ed8e-4fd8-9afa-36fb58c83b35", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "NOLAN JUANA", + "timestamp": "2019-11-10" + }, + { + "uuid": "ac95b0fc-7801-47b5-89bc-377306e2e312", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "CONROY DINA", + "timestamp": "2021-06-20" + }, + { + "uuid": "99b4ae7d-3cce-42aa-9b33-6f4d48379a15", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "BOYER DERON", - "timestamp": "2015-08-17" + "user": "WOLFF BIRDIE", + "timestamp": "2013-10-20" }, { - "uuid": "94b2a20a-2775-4f48-bfb3-795470655418", + "uuid": "2ada13a2-b698-4b67-990e-e6a5c27ad4b7", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "ONDRICKA ELAINA", - "timestamp": "2022-01-21" + "user": "ARMSTRONG-STANTON STEPHON", + "timestamp": "2021-05-14" + }, + { + "uuid": "b065d6b3-e1aa-490b-89c9-c8fc2f21e5d6", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "WARD JUNIUS", + "timestamp": "2018-06-07" + }, + { + "uuid": "61ec6542-4f03-4528-bb6a-78473257cdc7", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "FRITSCH HOSEA", + "timestamp": "2020-08-10" }, { - "uuid": "484439f1-9d03-47ea-a249-dd0d28d07b32", + "uuid": "4c8f6c55-b56c-4bb1-99e3-3cc84f4566ed", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "WYMAN IMA", - "timestamp": "2016-03-25" + "user": "LEMKE ELDRED", + "timestamp": "2016-01-14" }, { - "uuid": "abab71ee-9e46-4246-83d0-851f81c877ca", + "uuid": "3f1b9291-4f86-4c38-acc9-d6aaa7e289b3", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "RENNER FOREST", - "timestamp": "2022-10-27" + "user": "GRANT SHANIE", + "timestamp": "2016-10-14" }, { - "uuid": "ffc10351-63d2-46fc-a9bd-7fb2296280c4", + "uuid": "e60f9fe4-5d2d-46d5-8fe4-ebc7f6f3fc05", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "MUELLER DEONDRE", - "timestamp": "2018-01-11" + "user": "QUITZON CARMEN", + "timestamp": "2021-01-11" } ], "associatedSites": [ { - "uuid": "590fce12-a40a-4196-b40e-0a6007e1dbd9", - "dateNoted": "2018-04-21", + "uuid": "c06f8bff-9784-49cf-9ea4-c94bf32a0dc3", + "dateNoted": "2021-08-03", "notes": "", - "parcelID": "20024", - "siteID": "16267", + "parcelID": "18547", + "siteID": "18536", "siteRegistry": true }, { - "uuid": "1d6639d7-03b3-4249-a146-4c452e8b85ad", - "dateNoted": "2017-10-19", + "uuid": "b963d764-955b-4c1d-a91c-4ca817c4895d", + "dateNoted": "2020-01-02", "notes": "", - "parcelID": "20193", - "siteID": "15722", + "parcelID": "19709", + "siteID": "17276", "siteRegistry": true }, { - "uuid": "ef743318-c24b-4876-9941-4a5653ae8a0a", - "dateNoted": "2019-04-01", + "uuid": "89e9c0b3-2399-4c0d-8615-33cb16acf9ac", + "dateNoted": "2016-08-21", "notes": "", - "parcelID": "16216", - "siteID": "16682", + "parcelID": "18471", + "siteID": "18435", "siteRegistry": false } ] }, { - "uuid": "ea1b98db-f5df-4e0d-9482-0074e638cac5", - "siteID": 19839, - "address": "597 Hettinger Stravenue", - "latitude": 51.8791, - "longitude": -124.7247, - "lastUpdated": "2015-03-05", - "city": "Port Nat", - "region": "Vancouver Island/Coast", - "victoriaFile": "26250-20/5796", + "uuid": "fe5a4ede-1b7d-4ab4-ba38-8b9c5ab9bc6c", + "siteID": 15519, + "address": "5935 Shanelle Key", + "latitude": 56.2756, + "longitude": -130.4647, + "lastUpdated": "2015-11-23", + "city": "Monterey Park", + "region": "Kootenay", + "victoriaFile": "26250-20/8993", "regionalFile": "N/A", "parcelIDs": [ - 3574102, - 1000443, - 2573894, - 674002, - 1958114 + 7276144, + 7179858, + 1912967, + 237259, + 8261513 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "6ccf8121-fed6-427c-8b6b-dc8d78398b90", - "createdAt": "2020-07-04", - "completed": "2014-04-26", - "initiated": "2022-01-30", - "ministryContact": "PACOCHA GARRY", + "uuid": "43942299-413e-4f18-9ed5-9155f1e6526a", + "createdAt": "2023-04-13", + "completed": "2013-11-25", + "initiated": "2018-07-28", + "ministryContact": "HALEY GERALD", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -41792,38 +48764,26 @@ ], "notationParticipants": [ { - "uuid": "24710f75-958d-40ad-ba09-a6fb7618792e", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "uuid": "da91fe53-a4ca-4a9a-8ef0-4cf44522cef3", + "uuid": "e745ed2b-4154-4937-873c-085ca423a502", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "e86bf99a-dd37-4fbf-8338-eaf003db5fcf", + "uuid": "6e561bc0-b789-4dce-a911-57fd5085a3a6", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true - }, - { - "uuid": "95b79631-75a8-4eac-8c38-4bcd396f6ca5", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "fc48c279-50a0-4a1d-9eed-295d6882c8dc", - "createdAt": "2022-07-01", - "completed": "2023-06-16", - "initiated": "2014-03-28", - "ministryContact": "HOPPE HORACE", + "uuid": "d9da725b-aeb5-468c-b73e-5389c0088dbe", + "createdAt": "2016-05-17", + "completed": "2022-03-09", + "initiated": "2016-11-08", + "ministryContact": "GUTKOWSKI KODY", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -41832,130 +48792,28 @@ ], "notationParticipants": [ { - "uuid": "64a69b80-86be-4645-ac83-ab8d74ed9f58", + "uuid": "f5aa3f8e-f56f-4755-a377-c95e503e369a", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "uuid": "6181a5fa-b12c-43f2-bd41-9015c8eee941", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "uuid": "77221c16-1bbc-4824-a95e-4ae49eff62b7", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", "siteRegistry": false - } - ], - "siteRegistry": false - }, - { - "uuid": "f3944035-ce73-4569-949f-a3bd5b1f3edf", - "createdAt": "2016-08-20", - "completed": "2016-10-23", - "initiated": "2014-10-11", - "ministryContact": "KSHLERIN MANLEY", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "uuid": "d951de85-3172-4f59-9e0c-805d6f0d5a29", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true }, { - "uuid": "03b80d7c-e1e5-4a11-8c4b-b0480708a5be", + "uuid": "698f7367-5340-450c-93eb-a4fe40422401", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "uuid": "b5146ded-c721-4980-9d9e-9a0250d56b75", - "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "f1eb31bd-7219-49b7-beae-cad02d5bbea9", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "uuid": "86e1c0f6-4bd3-4fbc-b239-c9b4c901a064", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - } - ], - "siteRegistry": false - }, - { - "uuid": "0927e4f4-736f-4a91-93cc-73b9fd6ef6ed", - "createdAt": "2020-05-13", - "completed": "2014-08-11", - "initiated": "2022-12-23", - "ministryContact": "BREKKE LARUE", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "uuid": "8e8bcbc3-90ce-4470-81d0-d63f59932478", + "uuid": "b0d0e742-8e71-441b-a87c-ab53a1abd601", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false }, { - "uuid": "7894deeb-113f-4cb5-9751-1c410ef7fecf", - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - } - ], - "siteRegistry": false - }, - { - "uuid": "105f3e5e-f044-418c-b25c-7a3461374530", - "createdAt": "2017-11-22", - "completed": "2017-12-17", - "initiated": "2020-05-07", - "ministryContact": "KIHN ERIBERTO", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "uuid": "cdf959ba-5e83-4eef-a356-7afde83cdfde", + "uuid": "cfee1f9d-d120-45ff-9fc4-5d6da80f8108", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true - }, - { - "uuid": "e518fa61-7c47-4ee7-9bc2-7bf57361f326", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "uuid": "2b99bc21-06c7-40af-a990-f8f8ff2aa110", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false } ], "siteRegistry": true @@ -41963,124 +48821,147 @@ ], "participants": [ { - "uuid": "d281065d-9f3e-468d-9bde-e526e17c2df6", - "name": "SHELL CANADA PRODUCTS", - "endDate": "2017-11-20", - "startDate": "2018-08-02", + "uuid": "bdba54d5-ae2c-43b0-a4cf-2de8633f43f9", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2018-11-24", + "startDate": "2014-07-18", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "29144be5-b663-4259-9a3a-936f2d90a8e8", - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2023-03-21", - "startDate": "2014-07-30", + "uuid": "df40fb26-2380-4f8f-8a14-654ad078428c", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2020-11-13", + "startDate": "2018-01-21", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false + } + ], + "documents": [ + { + "uuid": "a1b06a8c-1e54-4bea-823d-531eac44fa84", + "siteRegistry": false, + "documentDate": "2022-06-23", + "receivedDate": "2018-08-04", + "uploadedDate": "2017-05-18", + "title": "Preliminary Site Investigation, Detailed Site Investigation and Remedial Plan for the Management Area adjacent to the Shell Site at 1503 West 41st Ave", + "participants": [ + { + "uuid": "a6dc589d-6763-45c2-8891-60e65d6c4dc0", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": true, + "role": "AUTHOR" + } + ] }, { - "uuid": "f6b8fe1d-39c8-4460-8b51-62ed6c725753", - "name": "IPSUM", - "endDate": "2016-09-15", - "startDate": "2019-05-01", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": true + "uuid": "8eeacd10-3f77-408f-8c31-152e6e2a54a5", + "siteRegistry": false, + "documentDate": "2021-02-10", + "receivedDate": "2016-01-11", + "uploadedDate": "2016-10-30", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "697c0b57-d817-4644-ab78-b770f63c4011", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": true, + "role": "AUTHOR" + } + ] } ], "suspectLandUses": [ { - "uuid": "c6f6979e-1dba-4689-84f1-07100a78b1a1", + "uuid": "1ed31a5c-8035-4ea4-bffd-3d399a4ce2cb", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-03-17 (described on Site Profile dated 2022-03-17)", + "notes": "INSERTED FOR SITE PROFILE DATED 2017-03-07 (described on Site Profile dated 2017-03-07)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "uuid": "b4775ade-15f7-441d-b483-02c43681fc23", + "uuid": "fe90010d-952d-479c-9e80-75646959ead3", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2022-09-03 (described on Site Profile dated 2022-09-03)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "uuid": "d897b1cf-a5cb-4c7f-ace0-87372235b9e0", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-03-21 (described on Site Profile dated 2015-03-21)", + "notes": "INSERTED FOR SITE PROFILE DATED 2019-02-10 (described on Site Profile dated 2019-02-10)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "uuid": "67c15005-0bf7-4db5-9bf7-297527dd79f7", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2014-08-30 (described on Site Profile dated 2014-08-30)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], "parcelDescriptions": [ { - "uuid": "f21f89b8-48ad-419e-840a-4f88f6e64512", - "siteRegistry": false, - "dateNoted": "2014-06-10", - "parcelID": "15685", - "crownLandUsePIN": "18343", - "crownLandFileNumber": "19927", - "landDescription": "LOT 4 OF LOT 5 BLOCK 5 DISTRICT LOT 3 PLAN 3608" + "uuid": "00c76073-2a80-459d-8834-2ca69da765cf", + "siteRegistry": true, + "dateNoted": "2023-09-18", + "parcelID": "16713", + "crownLandUsePIN": "15693", + "crownLandFileNumber": "17556", + "landDescription": "LOT 5 OF LOT 1 BLOCK 2 DISTRICT LOT 5 PLAN 4613" }, { - "uuid": "9d847c13-2ad2-446f-a32a-661c25c8ea6f", - "siteRegistry": true, - "dateNoted": "2014-11-11", - "parcelID": "18284", - "crownLandUsePIN": "15695", - "crownLandFileNumber": "19801", - "landDescription": "LOT 5 OF LOT 1 BLOCK 3 DISTRICT LOT 3 PLAN 8348" + "uuid": "0a7338a9-bdc1-448b-b711-a9431053ee68", + "siteRegistry": false, + "dateNoted": "2014-08-15", + "parcelID": "17402", + "crownLandUsePIN": "17158", + "crownLandFileNumber": "17878", + "landDescription": "LOT 5 OF LOT 3 BLOCK 4 DISTRICT LOT 2 PLAN 6897" }, { - "uuid": "544e1b3e-4c3a-45af-b29a-7ac95a38185f", + "uuid": "889b7485-953a-4e85-9db9-1bf72150d751", "siteRegistry": false, - "dateNoted": "2015-02-07", - "parcelID": "20074", - "crownLandUsePIN": "17569", - "crownLandFileNumber": "20649", - "landDescription": "LOT 3 OF LOT 2 BLOCK 3 DISTRICT LOT 4 PLAN 5076" + "dateNoted": "2015-09-21", + "parcelID": "20870", + "crownLandUsePIN": "17551", + "crownLandFileNumber": "18208", + "landDescription": "LOT 5 OF LOT 1 BLOCK 4 DISTRICT LOT 1 PLAN 5349" }, { - "uuid": "e56febb7-e729-4ca4-badf-86d1c4565fbe", + "uuid": "ed6f45e8-a12b-48b6-9351-2f1e28a1682c", "siteRegistry": false, - "dateNoted": "2021-01-15", - "parcelID": "15229", - "crownLandUsePIN": "20474", - "crownLandFileNumber": "16002", - "landDescription": "LOT 4 OF LOT 1 BLOCK 1 DISTRICT LOT 5 PLAN 4944" + "dateNoted": "2019-02-24", + "parcelID": "18008", + "crownLandUsePIN": "19799", + "crownLandFileNumber": "16572", + "landDescription": "LOT 4 OF LOT 4 BLOCK 3 DISTRICT LOT 2 PLAN 6720" } ], "siteDisclosures": [ { - "uuid": "0ff38467-3b70-4de5-86ed-f3ea8ef95930", + "uuid": "45ba1578-fcde-48c5-9bfc-72efc85c0a07", "siteRegistry": true, - "dateReceived": "2014-07-21", - "dateCompleted": "2014-04-15", - "dateEntered": "2018-04-10", - "dateRegistrar": "2023-05-14", - "dateLocalAuthorityReceived": "2023-09-01", - "summary": "Inventore maxime assumenda ipsa.", - "informationUsed": "Voluptates fugit similique quaerat.\nEos sint rerum quo itaque cumque.\nNisi sunt commodi.", - "pastOrPresentOrders": "Nulla laboriosam dolores fugiat.\nUllam dolorum quae ducimus recusandae accusamus ad.", + "dateReceived": "2016-02-02", + "dateCompleted": "2018-02-04", + "dateEntered": "2015-03-27", + "dateRegistrar": "2021-01-28", + "dateLocalAuthorityReceived": "2018-02-23", + "summary": "Eum animi error esse sed nisi doloremque omnis delectus fugit.", + "informationUsed": "Quod cum ducimus quibusdam facere.\nOptio hic officiis maxime similique quibusdam molestiae quidem.\nVoluptates magni odit officiis porro repellat omnis.", + "pastOrPresentOrders": "Ipsam dolorum quae debitis id ab eos magnam.\nNemo impedit tempora error aspernatur nisi consectetur unde numquam.", "commercialAndIndustrialPurposes": [ { - "uuid": "09427c35-cce0-4fb4-9c28-d7a8a2c7c424", - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true - }, - { - "uuid": "663f4263-7470-4ac7-b567-f14bea407fa7", - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true - }, - { - "uuid": "423ea5c6-da81-4cd5-afc9-d647623e3e41", + "uuid": "32c5874c-1b0e-4358-9a03-70194855bb9c", "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false }, { - "uuid": "93a98a80-0ed2-4045-a6d8-ba7bdb375482", + "uuid": "b1031296-c378-4c1d-8319-d60a4af29bbe", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true @@ -42090,115 +48971,94 @@ ], "activityLog": [ { - "uuid": "9f60dc1f-abe4-440e-be9e-c67b60d51a65", - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "LEANNON BREANNE", - "timestamp": "2020-04-15" - }, - { - "uuid": "f19ded6c-8352-46ac-939a-080b3e7f2870", - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "THIEL ELSE", - "timestamp": "2015-02-20" - }, - { - "uuid": "f4bc3dca-a99a-42be-96f3-da87cc3802c7", - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "BATZ MAXINE", - "timestamp": "2023-05-17" - }, - { - "uuid": "5d38c456-4212-427c-8cbf-051d23a88db8", + "uuid": "c0e110db-34e1-4f10-96ea-ee093a04db4b", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "HALEY CALE", - "timestamp": "2016-04-27" + "user": "EFFERTZ TWILA", + "timestamp": "2023-08-31" }, { - "uuid": "4544900b-867f-4a00-9689-3d3b81332509", + "uuid": "95354785-cc01-44a3-b7e6-028fbb2a4cb8", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "DIBBERT TONEY", - "timestamp": "2014-02-10" + "user": "ABBOTT ALAN", + "timestamp": "2021-05-23" }, { - "uuid": "add17a25-8e38-4226-bff8-750ea2fec1c6", + "uuid": "b47800fa-26e3-43fb-9b63-40716c325850", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "STAMM TYREE", - "timestamp": "2022-09-07" + "user": "SCHUPPE MARQUES", + "timestamp": "2016-10-15" }, { - "uuid": "a4d2e1f9-f4a1-48b4-b10a-8dd1e481b06f", + "uuid": "01a22371-67ee-4573-8b48-56e5be7dd94b", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "WILLMS RYLEE", - "timestamp": "2017-10-27" + "user": "YUNDT-DENESIK DEVANTE", + "timestamp": "2023-10-14" }, { - "uuid": "fa1efcbe-232f-49a0-9752-f1c02cb9cce6", - "siteRegistry": false, + "uuid": "6cb90cf6-79c8-4d38-8dbb-69b599ae960c", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "WATSICA JORDYN", - "timestamp": "2013-11-18" + "user": "ROLFSON ANSEL", + "timestamp": "2018-06-13" } ], "associatedSites": [ { - "uuid": "2fecf86a-cdf6-4e17-a467-d5e55efa89f3", - "dateNoted": "2014-10-14", + "uuid": "82911b9d-2794-4621-b154-aaebb3ec919d", + "dateNoted": "2014-03-05", "notes": "", - "parcelID": "16881", - "siteID": "16682", - "siteRegistry": true + "parcelID": "17278", + "siteID": "16978", + "siteRegistry": false }, { - "uuid": "973f8868-5e1f-48ae-a8b8-fd228b69ecbf", - "dateNoted": "2018-03-10", + "uuid": "d127f00c-9ce1-4a0b-af40-49b20b8d62cb", + "dateNoted": "2023-04-14", "notes": "", - "parcelID": "15236", - "siteID": "16062", - "siteRegistry": false + "parcelID": "18903", + "siteID": "18063", + "siteRegistry": true }, { - "uuid": "98edae03-bae3-484d-9151-a9381bfa358f", - "dateNoted": "2016-03-18", + "uuid": "477aaa82-a1bf-43d3-a044-6f8e0111bff7", + "dateNoted": "2016-01-23", "notes": "", - "parcelID": "17841", - "siteID": "16202", + "parcelID": "19670", + "siteID": "17454", "siteRegistry": true } ] }, { - "uuid": "cbce66c8-16bc-485d-af6e-e4bd4a6e50d0", - "siteID": 19174, - "address": "813 Larissa Villages", - "latitude": 58.9015, - "longitude": -122.741, - "lastUpdated": "2016-06-30", - "city": "Bismarck", - "region": "Cariboo", - "victoriaFile": "26250-20/10778", + "uuid": "f0b891cb-e003-4ff1-b8dd-f784eb2f5e59", + "siteID": 17088, + "address": "6935 Elmer Oval", + "latitude": 50.4261, + "longitude": -126.6187, + "lastUpdated": "2019-01-31", + "city": "South Alda", + "region": " North Coast", + "victoriaFile": "26250-20/13273", "regionalFile": "N/A", "parcelIDs": [ - 5102753, - 631556, - 7348122, - 2631299, - 9748217 + 6952324, + 6676962, + 2603908, + 1191110, + 7785671 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "2778bb0e-0f96-4326-9388-f075e4c7460b", - "createdAt": "2017-03-09", - "completed": "2015-05-01", - "initiated": "2017-09-13", - "ministryContact": "WEIMANN-GLOVER ROBERTA", + "uuid": "e31d79b0-9c6c-482e-a786-99445afbcc22", + "createdAt": "2022-06-08", + "completed": "2021-05-15", + "initiated": "2017-10-02", + "ministryContact": "BARTELL-HIRTHE CLARA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -42207,38 +49067,66 @@ ], "notationParticipants": [ { - "uuid": "2ab0de87-603a-4b9a-a6a8-b945ec9ea11d", + "uuid": "b6093883-815c-4e9d-b8a8-c1d15fe6cc60", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "014b6fea-4993-41dc-aa23-d2014e8caa0b", - "name": "SHELL CANADA PRODUCTS", + "uuid": "0f0cc22d-ffab-410d-a265-f8903500bced", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false - }, + } + ], + "siteRegistry": false + }, + { + "uuid": "6cfb087d-0f04-4199-8080-83584d6bffb6", + "createdAt": "2021-04-08", + "completed": "2020-01-27", + "initiated": "2014-02-23", + "ministryContact": "KSHLERIN LILLA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ { - "uuid": "67e37bdb-f576-4b51-bbb1-f47c8543a613", - "name": "SHELL CANADA PRODUCTS", + "uuid": "eb396fc4-8c93-4332-b925-4b91541224e6", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false }, { - "uuid": "272f2f94-9144-48b2-b72d-f5cf1a3dc5c8", + "uuid": "e714fae6-4f82-45e1-8e58-66dab1033f86", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true + }, + { + "uuid": "133b3220-2896-4c76-84e3-51e95b224e98", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "46c4bf4c-e298-4590-a037-2487a06f9b99", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false } ], "siteRegistry": true }, { - "uuid": "51cae5cc-54c2-4b0c-a5c4-9da666f3f928", - "createdAt": "2016-07-06", - "completed": "2020-04-27", - "initiated": "2014-01-04", - "ministryContact": "PRICE EARLENE", + "uuid": "0438583e-c3ca-4abc-a852-de3966ece7b4", + "createdAt": "2022-05-04", + "completed": "2014-05-07", + "initiated": "2014-08-07", + "ministryContact": "WILL MAYA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -42247,44 +49135,44 @@ ], "notationParticipants": [ { - "uuid": "0b9fb03c-80ee-4424-a84e-e80ac3257762", + "uuid": "652d6e9c-edee-44d0-babf-a980a7be9a26", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false + "role": "SUBMITTED BY", + "siteRegistry": true }, { - "uuid": "941b6f39-5412-42e4-b9d1-6899364cdcba", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false + "uuid": "8fc5c0f5-824e-4650-8452-7c453b4b0d2b", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true }, { - "uuid": "6eaac499-8f86-4f0a-ae50-f3f50b03d73e", + "uuid": "168802ed-3156-4e5a-8571-e53c7d6f2a84", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "5c83953b-2da0-4ca4-b54e-29e5efb3743b", + "uuid": "62d5385f-3751-4ce8-86f9-6e0d1f635804", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "234670f0-71d3-496c-8bcc-159c6931be09", + "uuid": "484f14a7-c339-448b-8024-d7e99c192041", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true + "role": "REQUESTED BY", + "siteRegistry": false } ], "siteRegistry": false }, { - "uuid": "60323ecf-b7c3-41ce-9410-740af7bbbe1a", - "createdAt": "2019-09-18", - "completed": "2021-10-20", - "initiated": "2019-09-30", - "ministryContact": "KUHLMAN OLLIE", + "uuid": "aa71f6a7-884d-4a49-a21c-2cfbdf269bd6", + "createdAt": "2022-12-06", + "completed": "2023-05-31", + "initiated": "2021-11-14", + "ministryContact": "WIEGAND TORRANCE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -42293,33 +49181,55 @@ ], "notationParticipants": [ { - "uuid": "ae603489-7fef-4d69-ac57-ff3ed12c000e", + "uuid": "cd949731-8a41-4385-b48e-2d20ba7fea70", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "a5610a20-9858-42a4-8ad8-6d3a933a6963", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true }, { - "uuid": "98a1e96b-0658-4a5e-af9d-a7da7adf9fc8", + "uuid": "07e0288d-4a66-4d11-a8b9-981f73905830", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false - }, + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "uuid": "5e5ffe13-94ad-4c9f-964c-d50f3ef2d02c", + "createdAt": "2017-01-31", + "completed": "2021-04-07", + "initiated": "2016-07-23", + "ministryContact": "CHRISTIANSEN ERICKA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ { - "uuid": "0c7b9475-26a7-4ed5-bdb1-bb8c86d4ae97", - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false + "uuid": "8e829aef-a098-4c97-be70-c3a608800547", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true }, { - "uuid": "1b17876c-5aea-4913-bda8-4de9b20d1d2c", + "uuid": "2fb8ae96-f252-4b1d-880b-22b34061016e", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true + "role": "REQUESTED BY", + "siteRegistry": false }, { - "uuid": "d5a1a6e3-f3e1-4a77-9686-496da6a54026", - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "uuid": "4bdeb1cb-0d6b-47d0-9086-832afaf1a15c", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", "siteRegistry": false } ], @@ -42328,178 +49238,153 @@ ], "participants": [ { - "uuid": "c9ac9f1b-d771-42e6-a55d-ac51ec973077", - "name": "AMET, DOLOR SIT", - "endDate": "2016-10-15", - "startDate": "2014-06-15", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": true - }, - { - "uuid": "fc2fd653-6516-4058-8e66-045835697217", + "uuid": "abdec954-f878-4e4f-af97-0856966bb0ac", "name": "SHELL CANADA PRODUCTS", - "endDate": "2017-12-01", - "startDate": "2019-06-24", + "endDate": "2014-11-29", + "startDate": "2022-09-16", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "1ba4b633-2114-479b-9335-7644cb922a3d", + "uuid": "9723f5a4-5500-464d-98a3-d27685b10816", "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2014-10-13", - "startDate": "2020-10-10", + "endDate": "2023-07-24", + "startDate": "2014-07-10", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "cf4364ae-f3bc-466b-92eb-6ac768a43024", + "uuid": "75dbc955-8cbc-436d-8b38-6fd343d70f28", "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2020-04-28", - "startDate": "2019-05-11", + "endDate": "2018-09-06", + "startDate": "2015-06-03", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": true }, { - "uuid": "59cbe387-6efb-4c02-b18c-01c9737d34ba", + "uuid": "e2fc45f4-9338-40a8-9434-bd4014b44cc4", "name": "SHELL CANADA PRODUCTS", - "endDate": "2017-04-06", - "startDate": "2022-12-21", + "endDate": "2021-01-26", + "startDate": "2022-05-19", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], - "siteRegistry": true + "siteRegistry": false + } + ], + "documents": [ + { + "uuid": "2cec238b-4f3a-4f33-a681-2c4f50312f2d", + "siteRegistry": false, + "documentDate": "2019-03-17", + "receivedDate": "2020-03-04", + "uploadedDate": "2022-11-26", + "title": "Summary of Site Conditions, 1537 W 41st Avenue, Vancouver", + "participants": [ + { + "uuid": "885636fc-7973-41d4-98da-34aa92785c67", + "name": "IPSUM", + "siteRegistry": false, + "role": "AUTHOR" + } + ] } ], "suspectLandUses": [ { - "uuid": "4c33fad7-287e-4099-b1f9-334f18447a04", + "uuid": "37eef502-ff16-4dd9-bde9-013ed16a1476", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2020-06-15 (described on Site Profile dated 2020-06-15)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "notes": "INSERTED FOR SITE PROFILE DATED 2015-10-19 (described on Site Profile dated 2015-10-19)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "uuid": "45c36520-333a-44d5-bc61-16f00f5531c9", + "uuid": "ced62e2a-b382-4fc9-9c4d-77637be6c6d2", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-04-28 (described on Site Profile dated 2018-04-28)", + "notes": "INSERTED FOR SITE PROFILE DATED 2021-12-15 (described on Site Profile dated 2021-12-15)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" - } - ], - "parcelDescriptions": [ - { - "uuid": "67875fe2-e67d-4ba0-a147-28f269c550f0", - "siteRegistry": false, - "dateNoted": "2017-04-05", - "parcelID": "16913", - "crownLandUsePIN": "16842", - "crownLandFileNumber": "18364", - "landDescription": "LOT 1 OF LOT 3 BLOCK 1 DISTRICT LOT 4 PLAN 6704" }, { - "uuid": "92cf3bac-5448-44f0-8639-a211f2d7ad46", + "uuid": "d3bc6ed0-4cae-46a1-b4fd-82ac64638741", "siteRegistry": false, - "dateNoted": "2018-06-27", - "parcelID": "19471", - "crownLandUsePIN": "20137", - "crownLandFileNumber": "18048", - "landDescription": "LOT 4 OF LOT 4 BLOCK 1 DISTRICT LOT 4 PLAN 5987" + "notes": "INSERTED FOR SITE PROFILE DATED 2013-10-24 (described on Site Profile dated 2013-10-24)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "uuid": "d896b760-27c0-4fa4-ad40-d6f3fd6c03d5", - "siteRegistry": false, - "dateNoted": "2022-05-23", - "parcelID": "18880", - "crownLandUsePIN": "20836", - "crownLandFileNumber": "18194", - "landDescription": "LOT 2 OF LOT 5 BLOCK 5 DISTRICT LOT 4 PLAN 8874" + "uuid": "c96da8c7-9565-4dc9-b39d-174b1991b7a8", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2015-07-19 (described on Site Profile dated 2015-07-19)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "uuid": "c2ee2b1d-b244-496f-821f-4a584507cb7a", + "uuid": "18ea0662-48b7-4aef-bd4b-475cd5e61056", "siteRegistry": false, - "dateNoted": "2017-07-30", - "parcelID": "20275", - "crownLandUsePIN": "17771", - "crownLandFileNumber": "19744", - "landDescription": "LOT 3 OF LOT 5 BLOCK 1 DISTRICT LOT 2 PLAN 8909" + "notes": "INSERTED FOR SITE PROFILE DATED 2019-09-30 (described on Site Profile dated 2019-09-30)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], - "siteDisclosures": [ + "parcelDescriptions": [ { - "uuid": "2de9715f-818a-4714-a8b0-2e883c2f5e56", + "uuid": "0ca8c064-ede0-4bbc-868d-c79d08932f4a", "siteRegistry": false, - "dateReceived": "2013-12-26", - "dateCompleted": "2020-10-06", - "dateEntered": "2021-01-30", - "dateRegistrar": "2015-02-02", - "dateLocalAuthorityReceived": "2021-11-17", - "summary": "Libero doloremque debitis repudiandae aperiam laudantium consectetur omnis modi quia.\nAccusamus sequi repudiandae sunt neque mollitia culpa porro veniam temporibus.", - "informationUsed": "Reiciendis officiis omnis quod voluptatem recusandae laborum.\nTemporibus mollitia maxime quisquam maiores rerum blanditiis officia earum.\nDeleniti delectus eveniet ab doloribus.", - "pastOrPresentOrders": "Commodi unde nesciunt quo distinctio laudantium voluptatum.\nExcepturi culpa perspiciatis error quidem excepturi vero.\nOccaecati nihil laboriosam fugit voluptate eius.", - "commercialAndIndustrialPurposes": [ - { - "uuid": "3721dac4-0199-49ff-b077-a0f91c68700c", - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true - }, - { - "uuid": "fb175526-fec1-4cfe-a439-664924297812", - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false - }, - { - "uuid": "25e8d271-3817-4622-82cb-e99ff617e10a", - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false - } - ] + "dateNoted": "2017-11-17", + "parcelID": "17101", + "crownLandUsePIN": "19934", + "crownLandFileNumber": "20529", + "landDescription": "LOT 4 OF LOT 3 BLOCK 4 DISTRICT LOT 3 PLAN 8927" }, { - "uuid": "348ba47f-a405-48dd-bbb2-2148ee05f838", - "siteRegistry": false, - "dateReceived": "2014-01-20", - "dateCompleted": "2018-06-09", - "dateEntered": "2017-05-22", - "dateRegistrar": "2017-09-17", - "dateLocalAuthorityReceived": "2018-02-24", - "summary": "Soluta nostrum nemo aliquid reprehenderit.\nCorporis quidem vero qui.", - "informationUsed": "Maxime amet laborum modi inventore.\nNihil atque autem quae enim ea sed vel hic cupiditate.\nNecessitatibus quasi voluptate ipsum incidunt adipisci suscipit aperiam quia suscipit.\nVitae tenetur sed perspiciatis sunt.\nMolestias tenetur ipsam sit pariatur cum dolorum.", - "pastOrPresentOrders": "Ut totam velit.\nAtque nihil eaque.\nNostrum sunt deleniti quisquam exercitationem aspernatur exercitationem mollitia quaerat distinctio.", + "uuid": "edcb441d-aede-4e25-af45-1c0758998efe", + "siteRegistry": true, + "dateNoted": "2018-08-09", + "parcelID": "19728", + "crownLandUsePIN": "18243", + "crownLandFileNumber": "19828", + "landDescription": "LOT 5 OF LOT 2 BLOCK 3 DISTRICT LOT 4 PLAN 8953" + } + ], + "siteDisclosures": [ + { + "uuid": "fbc07c28-5309-4b5a-b0ac-81a09d572a89", + "siteRegistry": true, + "dateReceived": "2023-01-06", + "dateCompleted": "2015-04-30", + "dateEntered": "2017-01-22", + "dateRegistrar": "2017-05-26", + "dateLocalAuthorityReceived": "2018-07-28", + "summary": "Inventore commodi occaecati praesentium officia quae excepturi.\nAssumenda quod magni sit.", + "informationUsed": "Cupiditate maxime corporis.\nFuga nam accusamus molestiae nesciunt perferendis id rerum cupiditate.\nQuibusdam suscipit distinctio velit.\nOmnis molestias sit architecto iste.\nDoloremque sapiente tempore id accusantium animi sapiente velit.", + "pastOrPresentOrders": "Molestias recusandae libero excepturi sint magnam expedita odio deserunt commodi.\nNam dicta eos atque voluptatem ipsam eos vitae.", "commercialAndIndustrialPurposes": [ { - "uuid": "b39262f2-0da4-4195-a8f3-c7ecf7d9c906", + "uuid": "01c75a98-796f-4c16-97bb-28ea51967fd8", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "9c3e5678-a5c1-45b6-be07-0714d0eab0fb", - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "uuid": "7a2c1f28-6518-4bad-8bf8-bd80370ae8b2", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { - "uuid": "b78e275c-96bd-43f0-825a-0d9b924516f7", + "uuid": "de5e538f-9046-4e8e-a153-310a6bc8aa7e", "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, { - "uuid": "08e19677-7c35-4654-9016-c32c202f6abe", + "uuid": "716ee259-44cd-41c1-93cb-3923d61edd7b", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false @@ -42509,92 +49394,85 @@ ], "activityLog": [ { - "uuid": "226570c5-ce88-4aa7-95b9-e5de05150464", + "uuid": "a102d0f2-4670-4bcc-865c-a02ca77dddc9", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "TILLMAN GOLDA", - "timestamp": "2017-04-09" + "user": "LEHNER HOWARD", + "timestamp": "2017-01-10" }, { - "uuid": "0d86a757-3031-49c9-a966-5f9374d2fb75", + "uuid": "cf03ac98-5480-49d7-9fa3-35807a6c21e2", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "KUHLMAN VLADIMIR", - "timestamp": "2021-12-11" + "user": "ROLFSON ANTONIETTA", + "timestamp": "2019-03-27" }, { - "uuid": "9fd67590-6596-4b81-a6be-45a3e7ba9801", + "uuid": "b3307d7f-f2bd-4a79-86d4-1114c6835422", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "MORAR LAURETTA", - "timestamp": "2018-11-25" + "user": "SAWAYN BRANDO", + "timestamp": "2021-10-02" }, { - "uuid": "409aa726-758b-4963-b538-067537a35693", + "uuid": "5d5e2d9e-e9ca-48c7-8795-fca3afb0482f", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "PROSACCO OBIE", - "timestamp": "2021-08-15" + "user": "GORCZANY ALEXYS", + "timestamp": "2018-02-27" }, { - "uuid": "0677e472-6941-4384-bb7c-715a69ab8344", + "uuid": "7ac60576-ffb2-47da-9b46-3ad460e3d1f7", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "HEGMANN DARYL", - "timestamp": "2023-03-18" + "user": "O'CONNELL MARLEY", + "timestamp": "2019-12-04" }, { - "uuid": "1669abed-8c65-462f-9a59-5721241095dc", + "uuid": "e6636b6d-d84e-4cbd-bb15-94998f53f820", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "OLSON MARLEY", - "timestamp": "2018-03-08" - }, - { - "uuid": "77148f90-352a-4744-80c8-97d26aff7853", - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "WHITE KAROLANN", - "timestamp": "2021-04-13" + "user": "MURPHY GWEN", + "timestamp": "2016-11-19" } ], "associatedSites": [ { - "uuid": "c4ca746a-d352-43e7-b250-c0ab80812ee3", - "dateNoted": "2015-01-30", + "uuid": "bc59eab2-c785-4ae0-be30-b212fa6300e7", + "dateNoted": "2016-02-07", "notes": "", - "parcelID": "18311", - "siteID": "20154", - "siteRegistry": true + "parcelID": "16699", + "siteID": "15352", + "siteRegistry": false } ] }, { - "uuid": "c766deb8-13ba-4a23-8b9f-68c8f1ad0351", - "siteID": 17604, - "address": "8183 Marianna Mountains", - "latitude": 54.7902, - "longitude": -125.3734, - "lastUpdated": "2015-01-27", - "city": "Hyattcester", - "region": "Thompson-Okanagan", - "victoriaFile": "26250-20/10108", + "uuid": "9fd0e541-03ec-46da-aef0-5635ab88748e", + "siteID": 19119, + "address": "2740 Naomi Groves", + "latitude": 51.5948, + "longitude": -124.6307, + "lastUpdated": "2021-03-17", + "city": "Port Mollieside", + "region": "Vancouver Island/Coast", + "victoriaFile": "26250-20/14964", "regionalFile": "N/A", "parcelIDs": [ - 6663161, - 6831888, - 5223264, - 8706514, - 4542192 + 8006331, + 7370001, + 1360668, + 1290515, + 5301604 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "9e628797-ca25-469a-a4bd-32ddfb71bf23", - "createdAt": "2015-11-12", - "completed": "2020-05-28", - "initiated": "2022-07-25", - "ministryContact": "GREENFELDER STANTON", + "uuid": "5cb097b8-6e69-4ca9-b7fe-e8d34d4b5ea6", + "createdAt": "2020-08-18", + "completed": "2023-03-08", + "initiated": "2019-01-06", + "ministryContact": "BARTOLETTI NAOMIE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -42603,38 +49481,38 @@ ], "notationParticipants": [ { - "uuid": "546a99a9-0864-4445-8cc3-be108770a5fe", - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "uuid": "942c8309-3d5a-454d-831b-6cf4678a7231", + "uuid": "b78be8b5-ad32-4493-9b15-b4246198e358", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "365b2c7a-43e4-42cb-98b2-828d5d8d360d", + "uuid": "fcec5018-d7a3-40b1-be3b-83afad9c4156", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "e07bc10d-9384-45f5-9f6e-3e9d298028a9", + "uuid": "ff939db8-95a1-4bb1-86f7-a94f983147a6", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true + }, + { + "uuid": "f9c7ea9a-563b-4adc-b3f9-2590a7e5718d", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false } ], "siteRegistry": true }, { - "uuid": "f77dc5f0-c004-4288-9d8c-d33dd9f3ea7c", - "createdAt": "2020-02-04", - "completed": "2019-11-13", - "initiated": "2016-04-19", - "ministryContact": "ADAMS BOBBIE", + "uuid": "e3c72bbc-6f5d-491c-8d16-f6b77e493714", + "createdAt": "2014-02-03", + "completed": "2016-06-19", + "initiated": "2015-10-10", + "ministryContact": "SCHAMBERGER KRYSTINA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -42643,38 +49521,32 @@ ], "notationParticipants": [ { - "uuid": "9956ca7f-8a24-49c2-95b9-8a002a0e9668", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "uuid": "423d8efc-d39a-4d25-b1c9-2b80391ab90b", + "uuid": "ecaec019-3faa-4360-bc5a-e3f64b31eacf", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "4ce4e1ae-44bb-440d-969c-840b4d0b8c75", + "uuid": "11f1f353-7f5c-47fd-97fd-2e698d1fa9bf", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "8ca3a692-90b0-4840-8b50-559a6c70d843", + "uuid": "b3fbc44b-65f2-4481-b280-d82801972c67", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": true } ], "siteRegistry": true }, { - "uuid": "07e5b3db-c44c-4528-801c-465ba201b528", - "createdAt": "2019-08-15", - "completed": "2014-07-01", - "initiated": "2021-08-01", - "ministryContact": "STROMAN JENSEN", + "uuid": "95f332ce-6460-49d4-aa74-8b43ea773bbe", + "createdAt": "2023-05-26", + "completed": "2017-09-07", + "initiated": "2019-03-03", + "ministryContact": "TREUTEL PATRICK", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -42683,38 +49555,32 @@ ], "notationParticipants": [ { - "uuid": "a59c7fd9-c110-4d61-bd63-7dc7b63b6af0", + "uuid": "e6b2d6e5-0bd5-476f-b625-e9208a4bb048", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "uuid": "4b42f184-fc8b-4a27-bf98-fdd3f1164837", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", "siteRegistry": false }, { - "uuid": "d982cd45-f88f-41b3-839b-0beb95df1765", + "uuid": "f4d2efc2-8c2c-418d-b337-393dea2eeb05", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true }, { - "uuid": "0ffa63b6-6134-4820-8b81-4af8a3278b19", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false + "uuid": "d1ec6637-bb5e-42f2-bc1b-57ab2088374e", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "9d8e6f4a-6055-48d6-9ad7-9a93f7875f26", - "createdAt": "2023-04-12", - "completed": "2016-10-09", - "initiated": "2018-05-30", - "ministryContact": "PACOCHA MADONNA", + "uuid": "8632d66d-2e5e-43b8-9d6a-555d80cd8328", + "createdAt": "2020-12-16", + "completed": "2022-07-15", + "initiated": "2021-04-08", + "ministryContact": "MCCLURE LARON", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -42723,34 +49589,44 @@ ], "notationParticipants": [ { - "uuid": "2039e1e2-55c1-4f01-b2f8-e13a98c3bcca", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "uuid": "62b1600e-7829-40c7-b0bb-6dc6ad7f079a", + "uuid": "bd5f9457-4ddb-4e14-a6e7-532bcf47f89e", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true }, { - "uuid": "8e3b6d1f-bdfd-4277-baba-3f502705fd3a", + "uuid": "90821102-64c8-49fb-841e-dcc1564c54e8", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "uuid": "e90027cd-3931-4617-ba66-098e25b18a8f", + "createdAt": "2018-07-20", + "completed": "2013-12-20", + "initiated": "2016-12-10", + "ministryContact": "BOSCO ANDRES", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ { - "uuid": "2ec7fe91-bbeb-459d-9fa1-ce4fdc808659", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "uuid": "b9511451-2720-4532-b093-b894b3495339", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": true }, { - "uuid": "8c5e52cb-05ce-45d2-aca7-4196c35a54fe", + "uuid": "abc57962-afc3-44a6-938e-971bc19af26d", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true + "role": "REQUESTED BY", + "siteRegistry": false } ], "siteRegistry": true @@ -42758,288 +49634,330 @@ ], "participants": [ { - "uuid": "49e9fee3-fdab-46fc-a67d-28d024f099fd", - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2020-03-25", - "startDate": "2016-01-30", + "uuid": "1304c0c7-63eb-4925-98ae-ca651e190397", + "name": "IPSUM", + "endDate": "2015-12-14", + "startDate": "2014-02-13", "notes": "", "roles": [ "ORGANIZATION" ], + "siteRegistry": false + }, + { + "uuid": "08b19ad9-9c01-4a6b-8357-8afaf7f1e87f", + "name": "AMET, DOLOR SIT", + "endDate": "2022-11-07", + "startDate": "2016-10-24", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "uuid": "5db139e2-1542-46c7-8c39-67c9aa96d7f4", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2021-08-15", + "startDate": "2022-09-12", + "notes": "", + "roles": [ + "EMPLOYEE" + ], "siteRegistry": true }, { - "uuid": "7507b825-94f6-4435-89e0-caae0358927f", + "uuid": "832d603e-24af-4955-bd27-d93ff15504a9", "name": "SHELL CANADA PRODUCTS", - "endDate": "2019-12-25", - "startDate": "2015-05-02", + "endDate": "2022-04-08", + "startDate": "2022-09-20", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true + } + ], + "documents": [ + { + "uuid": "00f548c3-5734-47cd-8e4a-ff860664eff6", + "siteRegistry": true, + "documentDate": "2022-09-03", + "receivedDate": "2022-02-05", + "uploadedDate": "2019-01-11", + "title": "Summary of Site Conditions, 1537 W 41st Avenue, Vancouver", + "participants": [ + { + "uuid": "78633dea-4e3d-485e-b032-2a2500eff410", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "f57d0dff-9a15-43e0-be73-998000048723", + "name": "IPSUM", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "88335452-3789-4b48-bb7a-024def7a1b70", + "name": "AMET, DOLOR SIT", + "siteRegistry": false, + "role": "AUTHOR" + } + ] + }, + { + "uuid": "9b034e2a-96d6-4b2f-b481-9305b1714664", + "siteRegistry": false, + "documentDate": "2023-01-14", + "receivedDate": "2019-07-02", + "uploadedDate": "2014-07-04", + "title": "Summary of Site Conditions, 1537 W 41st Avenue, Vancouver", + "participants": [ + { + "uuid": "2c3198cf-ab0b-43b4-aa91-7fc138957a7f", + "name": "IPSUM", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "bf7f7a41-a723-4542-9899-5bbf7be0d62c", + "name": "AMET, DOLOR SIT", + "siteRegistry": false, + "role": "AUTHOR" + } + ] + }, + { + "uuid": "0c35f3aa-6d4e-456b-a838-7b3ac13b7047", + "siteRegistry": false, + "documentDate": "2019-12-06", + "receivedDate": "2018-08-08", + "uploadedDate": "2017-12-05", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "96b6e34f-07fe-4885-bab3-32c1f7205ff2", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "e5b0ba39-9f48-4b60-b221-db56fdceadbd", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": true, + "role": "AUTHOR" + } + ] } ], "suspectLandUses": [ { - "uuid": "0535e615-6aff-433e-8bcd-63f245eadade", - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-09-30 (described on Site Profile dated 2015-09-30)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" - }, - { - "uuid": "2d2bbe7a-b840-48e5-a7ac-3d30a979e3db", + "uuid": "f0fe5923-a1fb-4214-83e5-695f5ce2f06f", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-02-19 (described on Site Profile dated 2018-02-19)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "notes": "INSERTED FOR SITE PROFILE DATED 2015-07-23 (described on Site Profile dated 2015-07-23)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "uuid": "fc83f311-cae7-4943-ac3e-58d23a6eaad8", - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2023-06-02 (described on Site Profile dated 2023-06-02)", + "uuid": "6ee7f16e-c6e8-4f84-b320-39f7c8d14918", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2020-05-04 (described on Site Profile dated 2020-05-04)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" - }, - { - "uuid": "20211015-7b7c-47dc-ab94-344eed2e2917", - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-02-08 (described on Site Profile dated 2022-02-08)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], "parcelDescriptions": [ { - "uuid": "c3c1a913-755d-4957-a40d-99861fee8faa", - "siteRegistry": true, - "dateNoted": "2019-05-21", - "parcelID": "15444", - "crownLandUsePIN": "18309", - "crownLandFileNumber": "20193", - "landDescription": "LOT 2 OF LOT 2 BLOCK 1 DISTRICT LOT 5 PLAN 9792" + "uuid": "88306d99-f2a1-40dc-bebb-54a5696582eb", + "siteRegistry": false, + "dateNoted": "2019-06-21", + "parcelID": "20158", + "crownLandUsePIN": "15686", + "crownLandFileNumber": "17838", + "landDescription": "LOT 1 OF LOT 5 BLOCK 2 DISTRICT LOT 3 PLAN 5858" }, { - "uuid": "5c6a5774-0df8-499a-aacd-fe50fe7195d3", - "siteRegistry": true, - "dateNoted": "2016-09-20", - "parcelID": "19274", - "crownLandUsePIN": "16419", - "crownLandFileNumber": "15810", - "landDescription": "LOT 2 OF LOT 4 BLOCK 2 DISTRICT LOT 1 PLAN 4276" + "uuid": "b1c59b8a-08e4-419e-9ed9-36312dffcd4a", + "siteRegistry": false, + "dateNoted": "2018-03-01", + "parcelID": "18924", + "crownLandUsePIN": "17437", + "crownLandFileNumber": "16866", + "landDescription": "LOT 5 OF LOT 5 BLOCK 5 DISTRICT LOT 3 PLAN 5474" }, { - "uuid": "46539ced-e989-4fe2-be4f-41c57a7ae1b7", - "siteRegistry": false, - "dateNoted": "2016-09-11", - "parcelID": "15300", - "crownLandUsePIN": "19484", - "crownLandFileNumber": "16978", - "landDescription": "LOT 2 OF LOT 2 BLOCK 4 DISTRICT LOT 1 PLAN 9409" + "uuid": "f00ced8e-3585-4726-876f-acdfd37548c5", + "siteRegistry": true, + "dateNoted": "2019-05-20", + "parcelID": "20549", + "crownLandUsePIN": "16191", + "crownLandFileNumber": "19327", + "landDescription": "LOT 3 OF LOT 5 BLOCK 3 DISTRICT LOT 4 PLAN 7561" }, { - "uuid": "27265ee9-e88f-41ca-9e67-56ae83679f6d", + "uuid": "b7dc4981-7f89-47f3-9d0c-fca01673beec", "siteRegistry": false, - "dateNoted": "2021-02-08", - "parcelID": "16549", - "crownLandUsePIN": "20410", - "crownLandFileNumber": "15675", - "landDescription": "LOT 4 OF LOT 2 BLOCK 1 DISTRICT LOT 5 PLAN 8214" + "dateNoted": "2015-10-27", + "parcelID": "18258", + "crownLandUsePIN": "18104", + "crownLandFileNumber": "18158", + "landDescription": "LOT 2 OF LOT 5 BLOCK 2 DISTRICT LOT 3 PLAN 2941" } ], "siteDisclosures": [ { - "uuid": "a8c0a4c2-0e5a-4854-a198-7f6cc51b2000", + "uuid": "29b576ee-9385-401c-950e-321af43f66d8", "siteRegistry": false, - "dateReceived": "2020-10-10", - "dateCompleted": "2013-12-17", - "dateEntered": "2015-09-13", - "dateRegistrar": "2015-05-21", - "dateLocalAuthorityReceived": "2016-01-29", - "summary": "Iste officiis odio sapiente maiores.\nTempore labore optio mollitia nobis eligendi dolore ratione rem.\nPariatur commodi fugiat molestias ducimus rem laudantium.", - "informationUsed": "Placeat exercitationem itaque incidunt porro.\nOmnis quaerat incidunt omnis corporis vitae est accusamus.\nDicta tempore non nihil suscipit libero expedita ipsa.\nImpedit iste reiciendis eaque ut earum dolores saepe.", - "pastOrPresentOrders": "Labore fugiat facere.\nDolores inventore quae omnis reprehenderit explicabo quis eveniet labore maiores.\nMaiores temporibus voluptatibus explicabo minus quasi voluptas dignissimos.", + "dateReceived": "2018-02-22", + "dateCompleted": "2015-08-13", + "dateEntered": "2016-05-14", + "dateRegistrar": "2014-12-25", + "dateLocalAuthorityReceived": "2014-11-24", + "summary": "Deserunt assumenda quod unde.", + "informationUsed": "Repellendus nihil saepe saepe eligendi voluptate aut aliquam perferendis.\nOdit quos fugiat molestiae vitae saepe eaque odit.\nAlias dolorem fugiat placeat voluptatum nostrum.\nNatus eveniet perspiciatis provident consequuntur cumque non adipisci aliquam.\nVelit reprehenderit corporis fugit reiciendis unde perspiciatis laudantium reiciendis.", + "pastOrPresentOrders": "Velit autem itaque.\nQuia hic modi qui quaerat dolores sint.", "commercialAndIndustrialPurposes": [ { - "uuid": "48ff7d8c-fb12-40e7-a7f5-1dbf32f77284", - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true - }, - { - "uuid": "4d3b3d87-6a23-4c76-b643-a81e4e2393e2", - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false - }, - { - "uuid": "baa9407d-9a8e-4899-960f-2082759f9113", + "uuid": "4cbf8598-f61f-4790-9acc-13566484b83c", "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false }, { - "uuid": "3749bcf0-2aec-457c-b407-d0a61ca4cfed", + "uuid": "6f68e393-c5f7-4fb5-ac47-f4a81792d472", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false + "siteRegistry": true } ] }, { - "uuid": "03ef786c-ba2c-436b-ae9d-488f39a22d22", - "siteRegistry": false, - "dateReceived": "2020-10-28", - "dateCompleted": "2015-10-11", - "dateEntered": "2022-07-24", - "dateRegistrar": "2021-08-22", - "dateLocalAuthorityReceived": "2015-01-09", - "summary": "Aliquid aut quisquam.\nFacilis error occaecati perspiciatis non ipsa.\nEligendi beatae commodi quibusdam et laudantium.", - "informationUsed": "Doloremque ex a ad unde animi.\nDolores commodi alias quia distinctio.\nMagnam dolore deleniti accusantium iste atque.\nFacere quam eaque perferendis doloribus enim repudiandae ea explicabo.\nVitae reprehenderit illo dignissimos minus error quidem autem.", - "pastOrPresentOrders": "Omnis odio enim ducimus eius unde suscipit.", + "uuid": "22432135-1fcb-40fc-a3fe-7d8838c6e2a8", + "siteRegistry": true, + "dateReceived": "2021-09-28", + "dateCompleted": "2019-05-08", + "dateEntered": "2019-07-28", + "dateRegistrar": "2017-03-31", + "dateLocalAuthorityReceived": "2020-05-08", + "summary": "Quibusdam illum necessitatibus velit tenetur similique rerum beatae odit sint.\nVoluptatum consectetur porro ex.", + "informationUsed": "Quia odio repudiandae asperiores corrupti nesciunt nulla nostrum sunt nam.\nIllo dolorem voluptates odio sunt debitis quos dolorum dolorum.\nVoluptatum praesentium cumque architecto maxime optio voluptatem tempora quia quibusdam.", + "pastOrPresentOrders": "Nihil placeat adipisci inventore laboriosam velit nihil error labore.", "commercialAndIndustrialPurposes": [ { - "uuid": "64c6f11f-143b-4987-a084-f60278c82979", + "uuid": "b7e832a5-2f46-4dd9-b803-4f890d0baba8", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { - "uuid": "5f613685-76e0-4dda-9945-697ecdd7e1ac", - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false + "uuid": "93ec3d1b-638a-41e8-b011-98ea7aaac37e", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true }, { - "uuid": "1a326874-709e-4874-bf19-04eb2c440807", + "uuid": "b52474d8-9008-4962-944f-fdc33169e875", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { - "uuid": "c3711ab3-1fea-4512-ad2f-3976768392bc", + "uuid": "c1ebaa54-94c2-4456-a126-0940bd974662", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true + "siteRegistry": false } ] } ], "activityLog": [ { - "uuid": "499bbff4-d00a-49af-ae42-eef92eb30ea9", - "siteRegistry": true, + "uuid": "3dc29e90-3fe1-4c09-a7e2-0ba1e067657d", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "HYATT AVIS", - "timestamp": "2014-01-10" + "user": "O'CONNELL EWELL", + "timestamp": "2017-09-16" }, { - "uuid": "714e022e-693b-42ac-931e-98839787fd74", + "uuid": "eae4cc2b-ec8f-40a5-9c5e-4c6136a8a0de", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "KOZEY PAMELA", - "timestamp": "2019-03-21" - }, - { - "uuid": "05cb5c37-ff25-42b3-ab77-1ae5c71d3548", - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "LUETTGEN KAYLA", - "timestamp": "2022-05-31" + "user": "TROMP KARELLE", + "timestamp": "2016-03-18" }, { - "uuid": "e0381609-b7fd-42c6-926e-c635f72aeb1a", + "uuid": "7c9e6e52-c309-4d7a-a6d0-e34f2a871984", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "BRUEN DARRON", - "timestamp": "2021-12-22" + "user": "SCHUSTER EARNESTINE", + "timestamp": "2019-03-16" }, { - "uuid": "1000c699-81c3-4fb7-a090-43fbbb46c51b", + "uuid": "392306c6-3dc5-4c60-9e60-cd3366ec4e1b", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "HUEL NELS", - "timestamp": "2020-10-17" + "user": "ROBERTS ZANE", + "timestamp": "2021-09-21" }, { - "uuid": "d963a526-256a-4099-9f51-6f81bdbd54c2", + "uuid": "ae140420-486d-4488-9a3a-078385a2248f", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "SCHOEN ARLENE", - "timestamp": "2017-01-27" - }, - { - "uuid": "f5ce78de-12a7-4c9f-bccb-afeeb5ac654a", - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "STEHR HAROLD", - "timestamp": "2020-09-07" + "user": "DANIEL ANTONE", + "timestamp": "2018-10-26" }, { - "uuid": "3cdb9064-836d-4cc9-9bcf-d3497794fec7", - "siteRegistry": true, + "uuid": "36b87e30-a963-42c6-a2e0-6182ca8b2085", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "THOMPSON CLETUS", - "timestamp": "2018-07-11" + "user": "WAELCHI BRISA", + "timestamp": "2023-04-02" }, { - "uuid": "be25a050-95b2-484e-99db-b7e42b51d8e9", + "uuid": "46d5ed58-990f-4fbe-935f-e1deb074c12a", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "SIMONIS ALBIN", - "timestamp": "2016-07-20" + "user": "HAYES SAMARA", + "timestamp": "2023-01-11" } ], "associatedSites": [ { - "uuid": "ca8531ee-0ccc-46b9-81cc-5aeb219ce040", - "dateNoted": "2022-10-26", - "notes": "", - "parcelID": "20692", - "siteID": "15979", - "siteRegistry": false - }, - { - "uuid": "06ca6622-b2b2-4d00-a4fd-98bce3fb87ed", - "dateNoted": "2022-09-23", - "notes": "", - "parcelID": "19786", - "siteID": "16560", - "siteRegistry": true - }, - { - "uuid": "1de501af-7263-4c7a-9e85-8b840401bcef", - "dateNoted": "2022-01-16", + "uuid": "70a68709-6491-4b12-94ef-dce18233f8a1", + "dateNoted": "2015-08-26", "notes": "", - "parcelID": "19289", - "siteID": "15690", + "parcelID": "18757", + "siteID": "19588", "siteRegistry": false } ] }, { - "uuid": "07725fd9-8120-41c3-b74d-54809246aece", - "siteID": 17571, - "address": "2028 Bashirian Villages", - "latitude": 49.494, - "longitude": -118.4704, - "lastUpdated": "2016-12-19", - "city": "Gracieton", - "region": "Thompson-Okanagan", - "victoriaFile": "26250-20/16666", + "uuid": "76af2418-7920-4e68-9e6a-053e20d32436", + "siteID": 16344, + "address": "110 Stehr Land", + "latitude": 48.6346, + "longitude": -121.889, + "lastUpdated": "2015-01-29", + "city": "Evangelineport", + "region": "Vancouver Island/Coast", + "victoriaFile": "26250-20/2853", "regionalFile": "N/A", "parcelIDs": [ - 2352075, - 858397, - 2491899, - 4663175, - 8901369 + 118805, + 4497946, + 5684901, + 9082724, + 4308316 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "5ed06f03-6788-4cc3-b5ea-7dc8b4640c2a", - "createdAt": "2021-06-13", - "completed": "2016-04-15", - "initiated": "2014-08-30", - "ministryContact": "TOY MAVIS", + "uuid": "21240ae9-2a53-4fb1-bc42-328fd35e6efa", + "createdAt": "2021-07-28", + "completed": "2019-03-18", + "initiated": "2018-02-20", + "ministryContact": "MAGGIO ART", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -43048,54 +49966,38 @@ ], "notationParticipants": [ { - "uuid": "bb987244-7211-43b6-8725-20df9adc1a20", - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "uuid": "30f4601a-5489-4719-be72-f6ac72bdb646", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "0d9dc8ab-6392-4665-a269-a6f1ae47db46", - "name": "SHELL CANADA PRODUCTS", + "uuid": "e60d0aef-8580-45ed-8802-623e186ca54b", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true - } - ], - "siteRegistry": true - }, - { - "uuid": "d8a57fe6-6c1c-409c-b564-c5b9eb4d6092", - "createdAt": "2018-01-03", - "completed": "2018-01-21", - "initiated": "2016-08-08", - "ministryContact": "LEGROS TERRENCE", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ + "siteRegistry": false + }, { - "uuid": "cf39d3c2-4f33-46f3-8cab-ac96dfcef2ba", + "uuid": "b099be65-eaba-4679-88f8-0d4fc509ccf1", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "23ce43f9-5ad1-49c4-a376-f305a68523f3", - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true + "uuid": "04cc4e43-edc2-47ab-80e3-8c4ccda60ff0", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "4859c434-def1-46d9-8b39-d76f558ec452", - "createdAt": "2018-07-27", - "completed": "2021-03-08", - "initiated": "2019-04-13", - "ministryContact": "CORMIER OCTAVIA", + "uuid": "d4d0b1ea-bc8f-46bc-9e2d-11cacc6de2f5", + "createdAt": "2018-06-18", + "completed": "2020-06-10", + "initiated": "2017-12-21", + "ministryContact": "GOLDNER AGUSTIN", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -43104,78 +50006,44 @@ ], "notationParticipants": [ { - "uuid": "f7a39407-a163-4380-859a-737a26a117b2", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "uuid": "77772490-9ea3-4b8b-bf5a-6e28e0f9e54d", + "uuid": "eaf82c4b-9119-432e-beba-591dd0fc8fb9", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "uuid": "14dbed8d-cd81-4af5-bb44-a7842997e2bb", - "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false }, { - "uuid": "a58652c8-fe07-4707-b8db-b45835ecae10", + "uuid": "1b9da4fe-cb7c-4c44-9f0c-8ff8e32853be", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true + "role": "REQUESTED BY", + "siteRegistry": false }, { - "uuid": "cdf8737a-3768-4ede-bbd4-839cfb930714", + "uuid": "3113dbce-63d8-4b23-8aa2-477aee8b1a02", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": true - } - ], - "siteRegistry": false - }, - { - "uuid": "572d807f-f5b7-4fa7-a57a-4200e4d47923", - "createdAt": "2020-07-14", - "completed": "2017-11-20", - "initiated": "2020-05-21", - "ministryContact": "ZIEME TONEY", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ + }, { - "uuid": "3284c78b-57a2-47f7-8689-5274e35efa73", + "uuid": "761f9cf9-540f-4f4e-b24f-4d9d6cd82986", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true }, { - "uuid": "672a1dee-da18-470c-9a14-868aedef9479", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "uuid": "0c69046b-a0d1-452a-ba89-ce446c677e2d", + "uuid": "4bb6d653-2821-4fcd-abd3-176223e5d510", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true } ], "siteRegistry": true }, { - "uuid": "32e2953a-2229-402b-bc15-d254bf4c6ddc", - "createdAt": "2015-04-24", - "completed": "2016-05-08", - "initiated": "2021-02-24", - "ministryContact": "WIZA ZACHARY", + "uuid": "4e058a02-1ac3-4072-972d-e4e15ebfaddc", + "createdAt": "2021-02-01", + "completed": "2016-08-18", + "initiated": "2021-07-26", + "ministryContact": "D'AMORE MARA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -43184,21 +50052,15 @@ ], "notationParticipants": [ { - "uuid": "9532c432-0ca5-49db-8471-a7e47a3d9b59", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "uuid": "9eb31548-ec3a-43dd-82c7-d87f8deeab24", - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "bc6fbb64-6942-4bf8-8ee7-28ae18243e91", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true }, { - "uuid": "7c2af4e1-6387-4ff8-9a7f-12d1d80679c6", + "uuid": "9d62c697-c349-48dc-9063-ab5d2b2747d0", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false } ], @@ -43207,239 +50069,278 @@ ], "participants": [ { - "uuid": "37b7fc58-ee45-4b0f-aa6a-0ecd1c99a7ea", - "name": "SHELL CANADA PRODUCTS", - "endDate": "2014-04-04", - "startDate": "2021-07-23", + "uuid": "f953a109-8b83-4f45-a307-972b41b731a9", + "name": "IPSUM", + "endDate": "2020-08-11", + "startDate": "2014-03-10", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": false }, { - "uuid": "213c76ef-91f9-41a4-8fe5-f97502dda2cb", - "name": "AMET, DOLOR SIT", - "endDate": "2018-10-24", - "startDate": "2015-04-17", + "uuid": "482a2f65-1d0b-4268-899d-1406def9c319", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2018-04-04", + "startDate": "2018-09-11", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": false } ], + "documents": [ + { + "uuid": "380927fc-740e-4a9b-ae23-bf900f8c2db1", + "siteRegistry": true, + "documentDate": "2018-03-16", + "receivedDate": "2022-10-21", + "uploadedDate": "2022-05-04", + "title": "Preliminary Site Investigation, Detailed Site Investigation and Remedial Plan for the Management Area adjacent to the Shell Site at 1503 West 41st Ave", + "participants": [ + { + "uuid": "6eabd0a9-d88e-4cc9-a538-cc890d2af0cd", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "730620b9-fc5b-417b-883e-b18faee7b5f8", + "name": "IPSUM", + "siteRegistry": true, + "role": "AUTHOR" + } + ] + }, + { + "uuid": "e2bc7f77-d532-435b-af56-955b908bde1a", + "siteRegistry": true, + "documentDate": "2015-08-28", + "receivedDate": "2016-12-09", + "uploadedDate": "2022-10-22", + "title": "Summary of Site Conditions, 1537 W 41st Avenue, Vancouver", + "participants": [ + { + "uuid": "f296e37c-4eaf-4141-bf9c-1239f06317a3", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "146410f6-5e0d-469b-a1d3-715ec30a4ffd", + "name": "IPSUM", + "siteRegistry": false, + "role": "AUTHOR" + } + ] + } + ], "suspectLandUses": [ { - "uuid": "231546a0-81e4-464f-9df6-4aa14a29537c", + "uuid": "82ed75a0-dc01-4476-8e78-538313e88255", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2018-06-22 (described on Site Profile dated 2018-06-22)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "uuid": "3e72eee7-5cc7-4faf-92a4-41caafb3a8b2", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2023-03-25 (described on Site Profile dated 2023-03-25)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "notes": "INSERTED FOR SITE PROFILE DATED 2018-08-05 (described on Site Profile dated 2018-08-05)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "uuid": "54d39024-05e9-463b-ad28-ed7a8ea344c2", + "uuid": "073543b8-67b2-4a08-adbc-39a6f2a88a5f", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-02-18 (described on Site Profile dated 2014-02-18)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "notes": "INSERTED FOR SITE PROFILE DATED 2019-04-02 (described on Site Profile dated 2019-04-02)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "uuid": "5d91f879-5d20-4577-9b2b-5a4acc2daf9b", - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2013-12-09 (described on Site Profile dated 2013-12-09)", + "uuid": "2bbf9312-3a72-43e1-add7-017797b49e94", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2022-07-10 (described on Site Profile dated 2022-07-10)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "uuid": "5dedce3c-5061-4423-aacd-e9ff9b1b9c17", + "uuid": "04977d2e-d906-4e54-a66c-256d4306bf48", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-05-11 (described on Site Profile dated 2015-05-11)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "notes": "INSERTED FOR SITE PROFILE DATED 2020-10-18 (described on Site Profile dated 2020-10-18)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], "parcelDescriptions": [ { - "uuid": "4480b6fd-8077-46a5-9dd1-8b4b0179e30f", - "siteRegistry": false, - "dateNoted": "2016-02-16", - "parcelID": "19265", - "crownLandUsePIN": "20804", - "crownLandFileNumber": "17973", - "landDescription": "LOT 5 OF LOT 2 BLOCK 2 DISTRICT LOT 2 PLAN 6190" + "uuid": "4dd4422c-75ef-440c-97da-9ccbc3813ea8", + "siteRegistry": true, + "dateNoted": "2015-01-14", + "parcelID": "20430", + "crownLandUsePIN": "17419", + "crownLandFileNumber": "15954", + "landDescription": "LOT 1 OF LOT 1 BLOCK 5 DISTRICT LOT 2 PLAN 9572" }, { - "uuid": "ab556ace-e862-4396-9ad7-14dc8f768631", - "siteRegistry": false, - "dateNoted": "2014-11-21", - "parcelID": "17489", - "crownLandUsePIN": "15592", - "crownLandFileNumber": "16599", - "landDescription": "LOT 5 OF LOT 1 BLOCK 3 DISTRICT LOT 1 PLAN 3408" + "uuid": "66898cd6-f670-40d9-bd3d-d56c5dbf343a", + "siteRegistry": true, + "dateNoted": "2020-04-10", + "parcelID": "15738", + "crownLandUsePIN": "18113", + "crownLandFileNumber": "17613", + "landDescription": "LOT 2 OF LOT 1 BLOCK 3 DISTRICT LOT 1 PLAN 5809" + }, + { + "uuid": "1b32a4b5-15ca-434d-b205-cabe7dbf1175", + "siteRegistry": true, + "dateNoted": "2014-06-07", + "parcelID": "18200", + "crownLandUsePIN": "20861", + "crownLandFileNumber": "16538", + "landDescription": "LOT 3 OF LOT 4 BLOCK 5 DISTRICT LOT 4 PLAN 3221" } ], "siteDisclosures": [ { - "uuid": "a15fcf7e-865b-468c-8148-a2aafa2c6db6", + "uuid": "7fc674ee-629c-486a-8878-a5108b8f8028", "siteRegistry": true, - "dateReceived": "2015-02-27", - "dateCompleted": "2016-06-03", - "dateEntered": "2020-05-25", - "dateRegistrar": "2017-07-26", - "dateLocalAuthorityReceived": "2019-11-19", - "summary": "Tempore facere sunt voluptatem culpa repellat rem modi.\nVero nisi fugit voluptate veniam dolorum.", - "informationUsed": "Dolor tenetur repellat autem labore quibusdam reiciendis autem ipsum itaque.\nDelectus animi perferendis repellat ratione sunt quasi.\nIpsa quas veniam.\nSoluta aut rerum quae eius laudantium delectus illo.\nCupiditate magnam ratione assumenda ipsam aspernatur.", - "pastOrPresentOrders": "Laudantium perspiciatis velit fugit.\nRem pariatur officiis unde itaque voluptatem soluta.", + "dateReceived": "2022-12-28", + "dateCompleted": "2018-07-05", + "dateEntered": "2017-07-30", + "dateRegistrar": "2022-12-26", + "dateLocalAuthorityReceived": "2023-04-29", + "summary": "Esse nam excepturi porro quasi nihil.", + "informationUsed": "Officiis veniam earum nulla assumenda natus fugiat ut ratione.\nEaque deleniti consequuntur accusantium eius deleniti.\nNulla ea vel laudantium sapiente voluptates temporibus quidem animi.\nAsperiores fugiat dolor at.", + "pastOrPresentOrders": "Eligendi aliquid delectus sunt vel neque.\nAsperiores exercitationem mollitia impedit recusandae saepe ipsa possimus commodi dolorem.\nVoluptates quos vel neque.", "commercialAndIndustrialPurposes": [ { - "uuid": "31519a22-4277-41bc-9a31-5d40b9c5126d", + "uuid": "c19e11d7-33b3-4272-931f-58d321231edc", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false }, { - "uuid": "419b5f7e-fd03-4ce6-9186-bc5559b6ece2", - "scheduleReference": "F2*", + "uuid": "f0198cde-6f27-42a9-857c-3d71459acd59", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "fea9a355-c133-47bc-a12b-f76cb0f59c17", + "uuid": "f472f2aa-1434-4b69-9141-04defe9e8c7e", "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false }, { - "uuid": "e8fa1ed0-3838-4a34-b7b1-09090b781cdb", - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true + "uuid": "332a1ae8-1911-4dd0-a18e-77d5320dc4a4", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false } ] } ], "activityLog": [ { - "uuid": "494f4fe3-937e-420f-8fc8-32f37b8c1afe", - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "HARBER FRITZ", - "timestamp": "2016-09-19" - }, - { - "uuid": "83d999b2-2f35-4955-87e0-33ca4ef8cbe8", + "uuid": "841fb8b9-4860-47c5-9c9c-705eca4ea547", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "WISOKY ELROY", - "timestamp": "2015-04-23" + "user": "GULGOWSKI ALTA", + "timestamp": "2018-03-14" }, { - "uuid": "31e3d537-d8a1-4d2f-abe8-f3815f9546d8", - "siteRegistry": false, + "uuid": "4352b01d-e16c-4b06-890e-1f84e1d59864", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "KILBACK WAYLON", - "timestamp": "2018-09-27" + "user": "MANTE WYATT", + "timestamp": "2019-12-14" }, { - "uuid": "363ec8f7-2730-45bf-9737-97b7710e0c08", + "uuid": "5bbbdd79-d55a-4fa7-861e-dd0d28fb5439", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "MCGLYNN JERROLD", - "timestamp": "2014-02-06" + "user": "FAHEY JEROME", + "timestamp": "2018-08-24" }, { - "uuid": "316d72ce-8598-4efe-8739-3399ccde5dbd", - "siteRegistry": true, + "uuid": "d9c39a89-53e0-4074-9c6e-81b7afadd5f3", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "KUTCH TRYSTAN", - "timestamp": "2015-08-04" + "user": "CRONA ARACELY", + "timestamp": "2023-08-07" }, { - "uuid": "fc96062e-e201-4391-959e-c2844b31403d", + "uuid": "51da138a-8f86-4b16-a76f-4e655f5e42f6", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "KIEHN BRENT", - "timestamp": "2017-04-27" + "user": "COLE ISABEL", + "timestamp": "2015-02-22" }, { - "uuid": "ed45f4f9-24f2-4ba1-b177-0fa3743cdb11", + "uuid": "bbe8ed80-2a61-4945-b70b-faef0a36bc6b", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "JACOBS RHETT", - "timestamp": "2017-05-20" + "user": "GRAHAM NORWOOD", + "timestamp": "2023-05-02" }, { - "uuid": "320f0d9a-af95-447c-96a6-3bf49a031f4f", + "uuid": "87af9b01-4cb9-460c-80d7-12afd861693a", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "BEIER IMMANUEL", - "timestamp": "2020-12-12" + "user": "HANE LINWOOD", + "timestamp": "2017-08-03" }, { - "uuid": "29085504-3f73-4019-92fe-95750e819cd2", + "uuid": "a40e4ecd-b493-4012-9459-191b8d64848e", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "KOELPIN CALEB", - "timestamp": "2022-12-03" - }, - { - "uuid": "34803c8f-d3fd-4171-a455-c9b698e62bf8", - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "SCHOWALTER STANFORD", - "timestamp": "2022-01-19" + "user": "KLEIN BRANDT", + "timestamp": "2015-02-19" } ], "associatedSites": [ { - "uuid": "e01123c2-a965-45a6-a4ea-b477328418db", - "dateNoted": "2022-11-29", + "uuid": "5c963118-84ee-4a13-b1bd-9fa8a1d420d0", + "dateNoted": "2022-11-16", "notes": "", - "parcelID": "19799", - "siteID": "16277", + "parcelID": "20905", + "siteID": "20786", "siteRegistry": true }, { - "uuid": "373a97ed-d04a-47d2-84f4-541d0beb219d", - "dateNoted": "2019-12-24", + "uuid": "29946053-e9bd-42e1-b5aa-fecbd6494273", + "dateNoted": "2022-02-02", "notes": "", - "parcelID": "20544", - "siteID": "17082", + "parcelID": "16937", + "siteID": "18229", "siteRegistry": false - }, - { - "uuid": "b9ea2054-b3d3-4be1-8e8b-917ba8e0076f", - "dateNoted": "2013-11-25", - "notes": "", - "parcelID": "16466", - "siteID": "20960", - "siteRegistry": true } ] }, { - "uuid": "dc048941-0736-41c3-85c8-a60ec82929cf", - "siteID": 20313, - "address": "11247 Matt Circles", - "latitude": 50.8449, - "longitude": -125.062, - "lastUpdated": "2016-08-03", - "city": "East Orval", - "region": "Thompson-Okanagan", - "victoriaFile": "26250-20/3650", + "uuid": "465aa68a-5537-427d-a779-6c4f888fe75c", + "siteID": 16834, + "address": "59225 Willms Parkway", + "latitude": 49.7849, + "longitude": -124.2027, + "lastUpdated": "2019-07-22", + "city": "Spencerstead", + "region": "Kootenay", + "victoriaFile": "26250-20/3125", "regionalFile": "N/A", "parcelIDs": [ - 5780143, - 439843, - 5536872, - 1091553, - 8845806 + 2363548, + 2336776, + 7187990, + 9723917, + 2479146 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "ad45de03-a21a-4854-9fb0-44b7f7afb87d", - "createdAt": "2021-08-05", - "completed": "2019-01-27", - "initiated": "2022-10-02", - "ministryContact": "MCCLURE NATALIE", + "uuid": "d6c54598-6329-4104-90ca-078f2ca52a9f", + "createdAt": "2014-10-17", + "completed": "2023-09-06", + "initiated": "2021-11-03", + "ministryContact": "KOEPP FRIEDA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -43448,32 +50349,26 @@ ], "notationParticipants": [ { - "uuid": "8ae9ab53-ce32-45ce-8cbe-a23c5f32e5dd", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "uuid": "9dca2e7c-9fe3-4667-8630-62d90fe1327f", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "6a087815-3d9b-4b12-88c3-4fcbc844a52b", + "uuid": "e7172b93-974a-4104-a265-ff0c1edfe1ef", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "uuid": "15365ec4-c350-4e5f-8adb-5c8d789591d0", - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "ca6babfc-ccd6-4eea-ab03-d3a1f469f78a", - "createdAt": "2018-04-03", - "completed": "2015-07-26", - "initiated": "2023-06-01", - "ministryContact": "MILLER SAMARA", + "uuid": "f17a47d7-2410-4f5f-9de1-2fd0409d1198", + "createdAt": "2019-02-01", + "completed": "2020-10-12", + "initiated": "2018-02-19", + "ministryContact": "SCHUSTER ZION", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -43482,26 +50377,26 @@ ], "notationParticipants": [ { - "uuid": "4a45226e-2e91-4a1d-bfb9-ed40e88c1b62", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "uuid": "1d842b4a-97a1-4e67-a5bd-0137ef4b329d", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "94c7c685-b9a5-40a7-a6c4-8bc3d593346b", + "uuid": "178bede5-bbec-4229-8f70-505a1d69af79", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false } ], "siteRegistry": false }, { - "uuid": "b3607617-ead4-4e85-84b8-05dcb58c3a9e", - "createdAt": "2017-02-24", - "completed": "2015-06-21", - "initiated": "2016-06-08", - "ministryContact": "ABBOTT MYRTICE", + "uuid": "79323f92-b5ac-4224-9bd5-0682402afb82", + "createdAt": "2018-04-23", + "completed": "2018-04-02", + "initiated": "2016-08-09", + "ministryContact": "WINTHEISER ROSS", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -43510,44 +50405,26 @@ ], "notationParticipants": [ { - "uuid": "f4c1a9ef-c5ac-48a3-912e-44c2b5e43e02", - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "uuid": "3604dd59-c854-4f91-9185-0681410490db", + "uuid": "db3ca00b-6af9-4f4f-9e7f-6af339047a20", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "71aedb23-a396-43fa-aa6f-7d16f8ba1eb9", - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "uuid": "699d8173-560e-4d4b-9083-0d9380ea814a", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "uuid": "05fd73db-873b-4655-a5e5-726c9dea19bf", + "uuid": "b7c2af64-8a67-4681-a93f-ce17357dcc2d", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "06691a61-18fd-465b-aeac-1fbc97a9ada9", - "createdAt": "2014-07-31", - "completed": "2023-03-22", - "initiated": "2018-03-30", - "ministryContact": "MAYERT BRODERICK", + "uuid": "1ef59571-d4dd-4290-9c80-09b4c5bfc33d", + "createdAt": "2018-12-06", + "completed": "2020-10-22", + "initiated": "2014-05-20", + "ministryContact": "DUBUQUE-LEFFLER ENOLA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -43556,38 +50433,26 @@ ], "notationParticipants": [ { - "uuid": "78826cf2-46f2-4071-ad19-0a9ca5cf0000", - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "05a95811-6dc8-4354-955a-3228ef2d5c85", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false }, { - "uuid": "603dda94-874e-4581-a8bc-296ee927d57b", + "uuid": "e1274508-709d-48f6-8158-4c7682a8b64d", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "uuid": "5068a749-6159-49af-b4cf-f3ffdd1ef7d4", - "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false - }, - { - "uuid": "87488b8c-6ced-4dcc-b0e7-b3870afcb981", - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true } ], "siteRegistry": false }, { - "uuid": "0d1cf4a6-9cfa-4a23-8da5-22933ddff5f0", - "createdAt": "2023-09-03", - "completed": "2021-12-02", - "initiated": "2021-09-14", - "ministryContact": "LEDNER DERICK", + "uuid": "965baba0-a240-476a-9fce-55b28fe4e64b", + "createdAt": "2022-02-03", + "completed": "2019-08-31", + "initiated": "2017-03-12", + "ministryContact": "LOCKMAN NYA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -43596,56 +50461,56 @@ ], "notationParticipants": [ { - "uuid": "e724bfa5-7a47-4ebe-9801-bbff1d26889b", + "uuid": "870432b1-8de1-4092-8108-ae806fa1dcd3", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true + "role": "SUBMITTED BY", + "siteRegistry": false }, { - "uuid": "550cfeba-61d4-4b0a-b1be-98fd23d423d7", - "name": "SHELL CANADA PRODUCTS", + "uuid": "10fdbf6f-dc73-48a4-bab7-c6fba80bf925", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "5703bb98-fec8-40b1-903f-2a011add6c58", - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "uuid": "263568f3-2b94-46c0-8589-4d7b8758b468", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "1a48dcb8-f394-4d62-a1ac-a43e5940ee7a", + "uuid": "c005926e-9893-49f1-9db2-4c2cb5f67901", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "5691409c-690b-4d76-affa-80245cffbc54", + "uuid": "0613aad7-9bc4-48e5-9272-f50535319030", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false } ], "participants": [ { - "uuid": "a6f0bab5-019f-441c-a76f-bd5ca2c4f400", - "name": "AMET, DOLOR SIT", - "endDate": "2022-07-03", - "startDate": "2023-03-22", + "uuid": "6dc8d373-658b-4fac-8309-5e1713382b89", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2017-05-24", + "startDate": "2022-09-07", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": true }, { - "uuid": "15a548fd-a366-4149-975c-9a59ee9b8d7e", + "uuid": "87fe3eff-b62d-440c-bdff-1bdc07f3b0cc", "name": "IPSUM", - "endDate": "2020-08-28", - "startDate": "2021-12-12", + "endDate": "2020-04-10", + "startDate": "2018-03-11", "notes": "", "roles": [ "EMPLOYEE" @@ -43653,276 +50518,395 @@ "siteRegistry": true }, { - "uuid": "3582ea2b-96ac-475f-964f-1d6ed6a5c044", - "name": "SHELL CANADA PRODUCTS", - "endDate": "2022-09-25", - "startDate": "2015-08-26", + "uuid": "23afd976-7f74-449f-b194-4dfd7b647044", + "name": "AMET, DOLOR SIT", + "endDate": "2015-11-01", + "startDate": "2023-09-05", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "uuid": "35b72ff6-552e-4d2c-8085-8dea9bade9c5", + "name": "IPSUM", + "endDate": "2017-02-15", + "startDate": "2020-12-21", + "notes": "", + "roles": [ + "EMPLOYEE" ], "siteRegistry": true } ], - "suspectLandUses": [ + "documents": [ { - "uuid": "dc0987dc-f93f-436c-8d1e-36f42224c87c", + "uuid": "5839466e-f315-4f64-8e21-e4e04362f4b0", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2023-07-23 (described on Site Profile dated 2023-07-23)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "documentDate": "2015-02-18", + "receivedDate": "2018-08-25", + "uploadedDate": "2019-08-18", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "b93181f2-c2c0-4c4a-804c-b5f4d302f4cb", + "name": "IPSUM", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "d4977a6e-eb84-4ffe-a23f-063cb88a0b6f", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "aefaaa38-ba66-48bd-b136-3af58e64c8a6", + "name": "IPSUM", + "siteRegistry": false, + "role": "AUTHOR" + } + ] }, { - "uuid": "4dfcff45-66ee-4a50-b3c0-8fc9ff3c39b0", - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-03-24 (described on Site Profile dated 2014-03-24)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "uuid": "45cc7f10-2a88-4b23-8434-079d4b81b772", + "siteRegistry": false, + "documentDate": "2021-06-02", + "receivedDate": "2016-02-15", + "uploadedDate": "2022-10-24", + "title": "Summary of Site Conditions, 1537 W 41st Avenue, Vancouver", + "participants": [ + { + "uuid": "30be4316-3eb4-4d1a-b994-8c8731531b11", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": true, + "role": "AUTHOR" + } + ] }, { - "uuid": "2d0162d8-f870-47e1-89b8-13bbbe8d65e7", - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-03-17 (described on Site Profile dated 2021-03-17)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "uuid": "40803635-f591-42c5-ac8a-abd0885968b6", + "siteRegistry": false, + "documentDate": "2015-09-15", + "receivedDate": "2017-05-01", + "uploadedDate": "2019-01-14", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "d2352640-66ad-4c62-848c-6b78ad273390", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": true, + "role": "AUTHOR" + } + ] }, { - "uuid": "0c136db6-5c89-4bfc-9ac3-829a0bc11915", + "uuid": "c34d5f28-80c9-4a41-b030-ab597e658e93", + "siteRegistry": true, + "documentDate": "2015-03-05", + "receivedDate": "2015-06-29", + "uploadedDate": "2019-11-17", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "61025b6c-d469-416e-8996-b179a78c4b46", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": false, + "role": "AUTHOR" + } + ] + } + ], + "suspectLandUses": [ + { + "uuid": "d4bbf037-1569-422b-9c91-7a5b161644be", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-01-26 (described on Site Profile dated 2017-01-26)", + "notes": "INSERTED FOR SITE PROFILE DATED 2018-12-23 (described on Site Profile dated 2018-12-23)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "uuid": "abcd6b43-4af7-46e0-b8fa-b8db0a4fadcc", - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-11-26 (described on Site Profile dated 2018-11-26)", + "uuid": "bf9cc00d-a6f4-48cc-af5d-0987d7dc376d", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2018-03-21 (described on Site Profile dated 2018-03-21)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], "parcelDescriptions": [ { - "uuid": "9ec2547f-59ab-47ff-a907-96055fa33aa8", - "siteRegistry": true, - "dateNoted": "2017-08-22", - "parcelID": "17465", - "crownLandUsePIN": "17823", - "crownLandFileNumber": "17756", - "landDescription": "LOT 4 OF LOT 1 BLOCK 3 DISTRICT LOT 3 PLAN 4641" - }, - { - "uuid": "3fda299f-ead0-46c6-a638-cd76d482cc26", - "siteRegistry": true, - "dateNoted": "2015-10-30", - "parcelID": "18277", - "crownLandUsePIN": "16265", - "crownLandFileNumber": "20121", - "landDescription": "LOT 3 OF LOT 1 BLOCK 2 DISTRICT LOT 2 PLAN 8401" + "uuid": "9cf8208c-b73e-4eca-b844-4c45eb9ffe37", + "siteRegistry": false, + "dateNoted": "2014-09-17", + "parcelID": "19167", + "crownLandUsePIN": "20242", + "crownLandFileNumber": "20837", + "landDescription": "LOT 3 OF LOT 1 BLOCK 3 DISTRICT LOT 4 PLAN 9511" }, { - "uuid": "7a3f1383-3f85-4c48-9590-caf52fe716f9", + "uuid": "34e2256d-a021-4d4e-bc2b-7e0ad5a5f637", "siteRegistry": false, - "dateNoted": "2014-03-11", - "parcelID": "17030", - "crownLandUsePIN": "18855", - "crownLandFileNumber": "15205", - "landDescription": "LOT 5 OF LOT 2 BLOCK 1 DISTRICT LOT 5 PLAN 9505" + "dateNoted": "2021-06-30", + "parcelID": "18329", + "crownLandUsePIN": "20983", + "crownLandFileNumber": "18427", + "landDescription": "LOT 4 OF LOT 1 BLOCK 3 DISTRICT LOT 3 PLAN 7244" }, { - "uuid": "04a9c525-7860-4308-898f-a3383e03f1f8", - "siteRegistry": true, - "dateNoted": "2015-08-31", - "parcelID": "18543", - "crownLandUsePIN": "16249", - "crownLandFileNumber": "19001", - "landDescription": "LOT 4 OF LOT 2 BLOCK 5 DISTRICT LOT 4 PLAN 3513" + "uuid": "9d7994ba-9c6a-4f2d-859f-e24aa024a7dd", + "siteRegistry": false, + "dateNoted": "2022-01-08", + "parcelID": "15216", + "crownLandUsePIN": "17750", + "crownLandFileNumber": "18832", + "landDescription": "LOT 1 OF LOT 4 BLOCK 5 DISTRICT LOT 3 PLAN 6893" } ], "siteDisclosures": [ { - "uuid": "f6efb57e-adeb-4b63-848a-b4e87a4673fa", + "uuid": "1edf2082-95e8-448f-b6ff-65a6989a9ea1", "siteRegistry": false, - "dateReceived": "2016-05-06", - "dateCompleted": "2020-04-15", - "dateEntered": "2023-10-06", - "dateRegistrar": "2016-04-30", - "dateLocalAuthorityReceived": "2014-04-26", - "summary": "Tempore consequatur perferendis expedita sunt ex.\nQuasi voluptatum consectetur amet deserunt vitae atque vel.\nUt occaecati saepe esse a quos ducimus ab.", - "informationUsed": "Quae tempore recusandae eaque consectetur vel et mollitia libero.\nTotam quo quibusdam.\nA neque eligendi assumenda corporis.\nQuibusdam magnam tenetur eum maiores dolores ex.\nNon provident maxime soluta beatae ad a consectetur.", - "pastOrPresentOrders": "Neque eaque nesciunt qui dicta nesciunt.", + "dateReceived": "2020-08-28", + "dateCompleted": "2021-05-15", + "dateEntered": "2014-07-20", + "dateRegistrar": "2017-12-02", + "dateLocalAuthorityReceived": "2022-09-07", + "summary": "Doloremque aperiam facilis quam.\nCulpa libero assumenda et reprehenderit delectus ipsa.\nEius eaque animi fuga.", + "informationUsed": "Exercitationem omnis nemo quisquam atque perspiciatis saepe veritatis.\nNisi suscipit placeat officiis autem atque quibusdam veritatis molestiae nam.\nIpsum optio modi.", + "pastOrPresentOrders": "Facilis ex quo impedit in aliquid atque voluptatum enim.\nQuisquam consequuntur enim quia occaecati illo.\nReiciendis eos modi earum ab odit ducimus culpa distinctio.", "commercialAndIndustrialPurposes": [ { - "uuid": "6e3311b9-52c5-4d4b-9806-3d40f7a768ab", - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true - }, - { - "uuid": "df1cad72-77e7-4276-9df2-912f33db41fa", + "uuid": "5bf7b670-c88f-422e-bae9-e2ca6ca80b09", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { - "uuid": "6a20c7b3-7189-40f8-ad5e-d6105802bc99", + "uuid": "af4638c8-f4e9-493a-9975-14e064084889", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true - }, - { - "uuid": "9318a36a-2fe5-4d33-a22c-71fbffad5349", - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false - } - ] - }, - { - "uuid": "9f0ab0d7-5294-416d-b982-a1f413938026", - "siteRegistry": true, - "dateReceived": "2015-12-18", - "dateCompleted": "2017-03-16", - "dateEntered": "2016-05-13", - "dateRegistrar": "2022-03-16", - "dateLocalAuthorityReceived": "2018-12-14", - "summary": "Placeat cumque amet et quaerat dolore labore ut ipsa nulla.\nAliquid voluptatum maxime quaerat.", - "informationUsed": "Magni placeat ullam.\nTenetur doloribus debitis deleniti repudiandae maxime saepe.\nVoluptatum sequi nam rerum minus.\nNostrum eos tenetur esse.\nImpedit mollitia sed consequatur minima error debitis.", - "pastOrPresentOrders": "Incidunt nemo fugit iure ipsum asperiores molestias quisquam iste fuga.\nConsequatur porro voluptatibus repellendus odio beatae.", - "commercialAndIndustrialPurposes": [ - { - "uuid": "a94881a7-f011-4a74-9820-27e420269762", - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false }, { - "uuid": "ae42d6a9-5588-486f-8063-cf5c728c858e", - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true - }, - { - "uuid": "f24d2545-ffb4-4fab-a5ad-69edd9131468", + "uuid": "89a9ec62-8b35-46ee-8fa1-a3fd5ea2f449", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false - }, - { - "uuid": "d1c99445-d87b-4e0a-83d0-7c180828c011", - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true } ] } ], "activityLog": [ { - "uuid": "c93f8fa9-bb1f-4684-b59d-795642d7b1d7", + "uuid": "93a4b83a-2744-4643-933f-7b5a82779e3c", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "HOPPE ROOSEVELT", - "timestamp": "2020-08-01" + "user": "KUVALIS LUCIENNE", + "timestamp": "2015-01-31" }, { - "uuid": "f87ef630-a987-44f0-b821-5f4833ffea5e", + "uuid": "64cea53e-310a-40ed-bda5-0b4ebe1d0419", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "STEHR DELPHA", - "timestamp": "2021-12-09" + "user": "VEUM SCOTTY", + "timestamp": "2018-10-10" }, { - "uuid": "93606c23-d9c6-4787-b7fb-e8cfb83a4d6c", + "uuid": "b07ef364-4db4-467c-a278-47966e0b80e4", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "JACOBSON HERSHEL", - "timestamp": "2014-11-10" + "user": "TORPHY JOANIE", + "timestamp": "2022-06-26" }, { - "uuid": "bdcd29e3-d14b-4eb1-8989-23a8387f703b", + "uuid": "f35380f3-1616-4da2-b07f-9737e573e774", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "ZBONCAK ROWENA", - "timestamp": "2017-01-13" + "user": "CUMMINGS VELVA", + "timestamp": "2018-12-02" }, { - "uuid": "91f8f4ba-b1d7-4d97-a4dd-9b48d139b642", + "uuid": "336ddfda-9285-4e1c-bd71-aaf84db07d4f", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "BOSCO MARIO", - "timestamp": "2021-01-07" + "user": "MURRAY ANGELITA", + "timestamp": "2018-01-14" }, { - "uuid": "ea374187-0dc4-41a8-a90c-c4e3061859a2", - "siteRegistry": false, + "uuid": "28285930-86a9-43e0-950c-d8a07e80b52a", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "ALTENWERTH VIDA", - "timestamp": "2020-08-30" + "user": "HILLL JUNIOR", + "timestamp": "2015-07-23" }, { - "uuid": "37c76f5c-24dd-4235-8666-a969674f22d4", - "siteRegistry": false, + "uuid": "235b7e99-26c1-4f1e-a928-4586f3eb1da7", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "SAWAYN MARIETTA", + "timestamp": "2015-03-10" + }, + { + "uuid": "77ac0e77-f8da-4913-a2fa-a8b380f33384", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "FEIL STANLEY", - "timestamp": "2021-08-08" + "user": "SATTERFIELD PIERCE", + "timestamp": "2020-12-16" }, { - "uuid": "68f59d96-8e23-480d-b075-162e2ca3b267", + "uuid": "6fc72113-a8ad-4aa0-9cd0-21d4f0d31f76", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "GISLASON KAREN", - "timestamp": "2017-04-08" + "user": "COLE MAKAYLA", + "timestamp": "2017-09-21" } ], "associatedSites": [ { - "uuid": "4d9f1db1-24bd-4446-a047-531600c4b8e1", - "dateNoted": "2020-11-07", + "uuid": "68989fc9-753f-4316-bd9f-4c1e7676bff0", + "dateNoted": "2013-10-29", + "notes": "", + "parcelID": "20667", + "siteID": "15587", + "siteRegistry": true + }, + { + "uuid": "a9fd4f8d-3212-4df4-bc05-75f2d7918a24", + "dateNoted": "2015-06-24", "notes": "", - "parcelID": "19084", - "siteID": "20778", + "parcelID": "19507", + "siteID": "20343", + "siteRegistry": true + } + ] + }, + { + "uuid": "99de5272-3fa3-40b1-8ccf-f97e9200ddac", + "siteID": 20234, + "address": "849 Gregoria Throughway", + "latitude": 50.0978, + "longitude": -128.8016, + "lastUpdated": "2018-08-16", + "city": "West Mckenna", + "region": "Vancouver Island/Coast", + "victoriaFile": "26250-20/19892", + "regionalFile": "N/A", + "parcelIDs": [ + 4737010, + 9674465, + 7152655, + 892251, + 4396861 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ + { + "uuid": "75d799ff-1d94-44a2-859c-b0f6b636b811", + "createdAt": "2015-01-31", + "completed": "2019-08-29", + "initiated": "2020-10-10", + "ministryContact": "DARE ARDELLA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "uuid": "61f35393-d8ce-4a1e-81fb-3ebd14356771", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "uuid": "8687ef9c-6d72-4c7e-a549-38314802f4cb", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "7bf8ed71-697c-4e99-9f03-639a1c232eb3", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "uuid": "570bc32d-f08d-4e2a-9658-6e16a7511cf5", + "createdAt": "2018-10-28", + "completed": "2015-02-17", + "initiated": "2014-01-19", + "ministryContact": "MUELLER BRIAN", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "uuid": "ef5b55e1-9d93-43a9-9ad8-a68adbe8bb06", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "uuid": "ea55a9c2-2ada-4d35-8bcd-d426ca9a321d", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], "siteRegistry": false }, { - "uuid": "234d7b21-b764-42fc-b37b-51003669e434", - "dateNoted": "2020-10-18", - "notes": "", - "parcelID": "19000", - "siteID": "20112", + "uuid": "12f9dafd-8a51-49e8-a050-afc5d5ea8e15", + "createdAt": "2014-07-02", + "completed": "2022-02-11", + "initiated": "2020-02-04", + "ministryContact": "RYAN GIA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "uuid": "e6eac458-c2b4-420b-8e6a-fb310667ed6a", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "uuid": "623867d5-1957-4c77-ade2-5f533c236664", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "1ac8ffcb-105c-4df1-8480-e09ff5592ae4", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "uuid": "ac38df03-8888-4ab5-87a3-8b5d8f85d7d0", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], "siteRegistry": false }, { - "uuid": "67cd893c-f0be-4bf8-a8a1-458954530e78", - "dateNoted": "2020-11-16", - "notes": "", - "parcelID": "16603", - "siteID": "16323", - "siteRegistry": true - } - ] - }, - { - "uuid": "7b72ed12-a92b-427a-8903-c662b785a7d8", - "siteID": 20470, - "address": "8582 Buckridge Shores", - "latitude": 53.6414, - "longitude": -133.2307, - "lastUpdated": "2022-07-16", - "city": "New Johnnyshire", - "region": "Cariboo", - "victoriaFile": "26250-20/14262", - "regionalFile": "N/A", - "parcelIDs": [ - 2151268, - 4755655, - 8344573, - 7078375, - 786053 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "uuid": "badf876a-71a0-4ec2-87bc-ef537116fbea", - "createdAt": "2016-09-11", - "completed": "2015-07-16", - "initiated": "2017-10-20", - "ministryContact": "BALISTRERI ALEXANDER", + "uuid": "fe4f151c-36a0-493c-b4f1-84580aea1651", + "createdAt": "2023-05-12", + "completed": "2021-09-22", + "initiated": "2018-10-28", + "ministryContact": "GRANT ALISON", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -43931,26 +50915,44 @@ ], "notationParticipants": [ { - "uuid": "8930deec-06a3-4d60-b206-b7df9e9492e0", + "uuid": "c90a97c8-161a-44a4-96f4-052ca407f25a", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "uuid": "8440196b-3743-4e80-a32c-9e37462bc7ec", "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "uuid": "da378230-a209-4717-8052-a6200e788a18", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false }, { - "uuid": "bf975cac-70a6-4ab4-b09e-1fe9a28974d7", + "uuid": "2e78a425-d378-4e86-a8d5-ee3e3c459c6c", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false + }, + { + "uuid": "2edd7aec-21d6-4606-bd4f-b596755e601f", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "81297b60-8147-4cc9-b236-5db5f61d2822", - "createdAt": "2019-03-18", - "completed": "2016-02-25", - "initiated": "2022-07-22", - "ministryContact": "HAHN GARRICK", + "uuid": "d272e408-484a-46b3-bc94-1985d882a652", + "createdAt": "2016-01-23", + "completed": "2015-03-02", + "initiated": "2021-02-01", + "ministryContact": "BRUEN RAINA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -43959,302 +50961,411 @@ ], "notationParticipants": [ { - "uuid": "6ec3fed6-81a0-4585-86da-41ca8e6829f9", + "uuid": "e17a9d06-1600-4495-a542-204fcebc9800", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "460cd6fd-9d30-46a6-96c9-641194c4030f", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "e09664bc-a4df-4d05-a296-febe10ba30bb", + "uuid": "ca4a9563-4c5b-4794-86b6-25e9400fa462", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true } ], "participants": [ { - "uuid": "314c0397-1fb2-44e8-abaa-ef520e9a9f5a", - "name": "SHELL CANADA PRODUCTS", - "endDate": "2018-09-11", - "startDate": "2014-01-21", + "uuid": "0682f11f-354e-4b5c-bdf6-9ed9ef91d7fd", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2016-07-28", + "startDate": "2014-08-04", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": true }, { - "uuid": "60eb8aa7-f6aa-44e8-ae58-71316e2d4a6b", - "name": "IPSUM", - "endDate": "2021-12-28", - "startDate": "2023-08-03", + "uuid": "058cbafd-a206-41ad-b8b6-9bdb8769d9c8", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2021-03-22", + "startDate": "2020-11-05", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "b75f1d53-8954-4f24-95fa-21bb75cf3221", - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2018-01-07", - "startDate": "2015-10-21", + "uuid": "4bdf8041-6193-40a9-9e84-644827091657", + "name": "IPSUM", + "endDate": "2017-07-13", + "startDate": "2019-07-29", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "5667a73c-42a6-4c22-83a8-c94f620c918c", - "name": "SHELL CANADA PRODUCTS", - "endDate": "2019-02-04", - "startDate": "2021-05-03", + "uuid": "61ad211e-4b1b-4e59-b08b-020465c03b13", + "name": "AMET, DOLOR SIT", + "endDate": "2019-09-09", + "startDate": "2016-05-04", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "ee41074f-b9b6-428c-afcc-f58fee223f20", - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2022-08-15", - "startDate": "2022-04-23", + "uuid": "4cb598f7-f517-4df2-a2e3-774c50ed0a57", + "name": "AMET, DOLOR SIT", + "endDate": "2023-01-05", + "startDate": "2015-07-12", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": true } ], + "documents": [ + { + "uuid": "9f51d49b-f0bd-46f9-a9e4-186db589431a", + "siteRegistry": false, + "documentDate": "2021-07-08", + "receivedDate": "2014-09-18", + "uploadedDate": "2021-03-16", + "title": "Preliminary Site Investigation, Detailed Site Investigation and Remedial Plan for the Management Area adjacent to the Shell Site at 1503 West 41st Ave", + "participants": [ + { + "uuid": "cafd0e48-bd2a-42fd-b69d-fd47eaaf4fb4", + "name": "IPSUM", + "siteRegistry": false, + "role": "AUTHOR" + } + ] + }, + { + "uuid": "79afa443-94c3-45ae-be4f-e1918460ec1b", + "siteRegistry": true, + "documentDate": "2014-06-08", + "receivedDate": "2018-01-09", + "uploadedDate": "2017-08-26", + "title": "Preliminary Site Investigation, Detailed Site Investigation and Remedial Plan for the Management Area adjacent to the Shell Site at 1503 West 41st Ave", + "participants": [ + { + "uuid": "f06729a3-c6df-4f69-bbd9-ff6e8da5d476", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "b9ae3bdf-370c-4f15-ad62-4119c7002903", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": false, + "role": "AUTHOR" + } + ] + } + ], "suspectLandUses": [ { - "uuid": "8f9e9f41-56e4-45f9-bc3d-17b997bc34bc", + "uuid": "1f691b16-b553-40a3-b9fe-750f96bf982c", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2023-09-28 (described on Site Profile dated 2023-09-28)", + "notes": "INSERTED FOR SITE PROFILE DATED 2019-07-03 (described on Site Profile dated 2019-07-03)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "uuid": "64db3cef-4f06-444a-8477-2c8a512d9967", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2021-03-26 (described on Site Profile dated 2021-03-26)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "uuid": "abfa788a-c2f3-4597-ba6c-840ef99dc6ba", + "uuid": "8ec2f6f0-841f-4c60-ac88-38d084d3ac8f", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-11-06 (described on Site Profile dated 2016-11-06)", + "notes": "INSERTED FOR SITE PROFILE DATED 2021-11-26 (described on Site Profile dated 2021-11-26)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "uuid": "137a891b-6b3a-4c18-9616-e07fc7a74fd9", + "uuid": "28af77b8-5859-4b40-9845-4f0c72b0902d", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2013-11-09 (described on Site Profile dated 2013-11-09)", + "notes": "INSERTED FOR SITE PROFILE DATED 2018-11-13 (described on Site Profile dated 2018-11-13)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "uuid": "fb2d3a05-30cf-4e21-85d1-ce91f1e3c84d", + "uuid": "e53f427b-57d3-49ea-8d50-6c8be062efee", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-01-25 (described on Site Profile dated 2019-01-25)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "notes": "INSERTED FOR SITE PROFILE DATED 2014-07-20 (described on Site Profile dated 2014-07-20)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], "parcelDescriptions": [ { - "uuid": "ce173eb9-b85d-43d9-9512-121705ca9140", + "uuid": "d3b9e408-44eb-4a4f-b029-83de27eb6ec6", "siteRegistry": false, - "dateNoted": "2023-05-08", - "parcelID": "20828", - "crownLandUsePIN": "16913", - "crownLandFileNumber": "19566", - "landDescription": "LOT 2 OF LOT 2 BLOCK 4 DISTRICT LOT 1 PLAN 7496" + "dateNoted": "2015-06-19", + "parcelID": "20519", + "crownLandUsePIN": "17612", + "crownLandFileNumber": "18255", + "landDescription": "LOT 4 OF LOT 2 BLOCK 3 DISTRICT LOT 1 PLAN 3077" }, { - "uuid": "5c950599-d791-4053-9b7c-e58acdb57a5c", + "uuid": "7e7f96ea-eb4a-4389-ac15-e284f5fbf96e", "siteRegistry": true, - "dateNoted": "2016-08-24", - "parcelID": "15214", - "crownLandUsePIN": "15505", - "crownLandFileNumber": "17622", - "landDescription": "LOT 4 OF LOT 1 BLOCK 1 DISTRICT LOT 1 PLAN 5331" + "dateNoted": "2014-10-08", + "parcelID": "17970", + "crownLandUsePIN": "17880", + "crownLandFileNumber": "20474", + "landDescription": "LOT 5 OF LOT 3 BLOCK 3 DISTRICT LOT 2 PLAN 6487" }, { - "uuid": "0cd1f10f-946a-4a1a-b302-527b6aaea0c4", + "uuid": "e9db7753-fb59-43c6-9986-bf5f5ffee31f", "siteRegistry": true, - "dateNoted": "2022-09-10", - "parcelID": "16834", - "crownLandUsePIN": "20821", - "crownLandFileNumber": "16712", - "landDescription": "LOT 1 OF LOT 2 BLOCK 2 DISTRICT LOT 3 PLAN 8446" + "dateNoted": "2015-02-06", + "parcelID": "18707", + "crownLandUsePIN": "20286", + "crownLandFileNumber": "16145", + "landDescription": "LOT 5 OF LOT 4 BLOCK 4 DISTRICT LOT 3 PLAN 6006" }, { - "uuid": "ae967ef3-cbae-40b8-a34d-a552bad5e643", - "siteRegistry": false, - "dateNoted": "2020-05-18", - "parcelID": "20413", - "crownLandUsePIN": "15799", - "crownLandFileNumber": "15970", - "landDescription": "LOT 4 OF LOT 2 BLOCK 5 DISTRICT LOT 4 PLAN 3703" + "uuid": "44e45354-0906-4b6a-8093-a5a58b80577c", + "siteRegistry": true, + "dateNoted": "2017-09-22", + "parcelID": "17695", + "crownLandUsePIN": "19664", + "crownLandFileNumber": "19757", + "landDescription": "LOT 4 OF LOT 5 BLOCK 5 DISTRICT LOT 5 PLAN 4677" }, { - "uuid": "ec2b5da7-75f9-435a-8916-22eb96f791be", - "siteRegistry": false, - "dateNoted": "2020-04-24", - "parcelID": "17432", - "crownLandUsePIN": "15201", - "crownLandFileNumber": "15349", - "landDescription": "LOT 2 OF LOT 3 BLOCK 2 DISTRICT LOT 5 PLAN 9659" + "uuid": "c21ffaa9-84b3-4026-9657-aa3e083260b9", + "siteRegistry": true, + "dateNoted": "2017-09-22", + "parcelID": "15911", + "crownLandUsePIN": "20160", + "crownLandFileNumber": "19341", + "landDescription": "LOT 5 OF LOT 5 BLOCK 3 DISTRICT LOT 3 PLAN 7606" } ], "siteDisclosures": [ { - "uuid": "65dee797-6cd7-42c8-863a-16b057b9be6f", + "uuid": "b4586f5a-823d-40c2-8f15-9a7b97675530", "siteRegistry": true, - "dateReceived": "2017-09-01", - "dateCompleted": "2017-03-21", - "dateEntered": "2018-03-06", - "dateRegistrar": "2021-02-27", - "dateLocalAuthorityReceived": "2023-06-06", - "summary": "Maxime vitae ducimus quo.\nEligendi animi esse modi voluptates ea ullam possimus laboriosam inventore.\nOfficiis aliquid natus quisquam officia sapiente ullam perferendis beatae.", - "informationUsed": "Officiis deleniti rerum error vero recusandae saepe numquam.\nRepellat inventore quasi cum at.\nDolorum sint nisi aliquam a voluptatibus perspiciatis aliquam.\nQuos quisquam dolorum ab voluptatem illo asperiores dolorum.\nOccaecati natus sed.", - "pastOrPresentOrders": "Rerum officiis repellat voluptatibus quis ullam enim ullam.\nMinima modi atque dolore quasi debitis omnis.\nItaque optio eius modi ipsa tempore quae optio aspernatur odio.", + "dateReceived": "2018-01-04", + "dateCompleted": "2018-01-19", + "dateEntered": "2020-05-01", + "dateRegistrar": "2021-11-26", + "dateLocalAuthorityReceived": "2021-02-09", + "summary": "Eum eveniet dicta qui corrupti esse ullam molestias ipsa.\nDolorem ipsa exercitationem id iusto voluptatem perferendis magni minima.", + "informationUsed": "Nemo asperiores vero mollitia perspiciatis fuga aut voluptates eveniet eligendi.\nLaborum velit assumenda reprehenderit libero minima ad quos maiores dignissimos.\nNobis ut autem aliquam rerum.\nNam quam quaerat aut aspernatur repellendus.", + "pastOrPresentOrders": "Deleniti voluptatem quia.", "commercialAndIndustrialPurposes": [ { - "uuid": "bc66f518-c7aa-4da1-b643-b39aafa5e4cc", - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "uuid": "57310edb-becb-43a7-8031-0ca8e30b0f59", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false }, { - "uuid": "c20a856d-55b3-4e1b-b1c1-64395bd62f27", + "uuid": "daa20f27-0858-4c53-9113-5def37aa4952", "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { - "uuid": "a683b427-0206-4ab0-bbe6-63e3e9b9062f", + "uuid": "d21632b1-b029-4220-b161-aa5ac5d2f9df", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false + } + ] + }, + { + "uuid": "86ccec86-247e-45e7-8e08-179d617f457e", + "siteRegistry": true, + "dateReceived": "2019-07-09", + "dateCompleted": "2014-06-05", + "dateEntered": "2019-11-21", + "dateRegistrar": "2017-07-23", + "dateLocalAuthorityReceived": "2019-09-30", + "summary": "Inventore vel similique recusandae amet soluta.", + "informationUsed": "Ullam corrupti aut at quia.\nFugiat fugiat sed quas ab rem nostrum.\nQuo pariatur sint reiciendis.", + "pastOrPresentOrders": "Ratione exercitationem harum expedita nihil dolor molestiae repellendus.\nIpsam non nostrum veniam odit.\nVoluptatem occaecati tempore soluta nihil adipisci.", + "commercialAndIndustrialPurposes": [ + { + "uuid": "addacaf6-7802-4443-a86d-7f2000f6a687", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false }, { - "uuid": "254a17b9-dbb1-4bd8-bd36-ef3b7361c852", - "scheduleReference": "F1*", + "uuid": "8bd69d3a-7ce4-42dd-a844-799e035365c2", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false + }, + { + "uuid": "70eedc1a-8cd4-4f8f-badb-b515d5510bee", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true } ] } ], "activityLog": [ { - "uuid": "7bd1d310-117e-45ae-87e9-b45f6717248b", - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "PROHASKA MAUDE", - "timestamp": "2021-01-06" - }, - { - "uuid": "1d69a042-896d-4f1e-a959-15ed2e4a8f0b", + "uuid": "7c5f54e8-cd82-4275-8f71-2595fe9297fc", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "WELCH ABEL", - "timestamp": "2020-12-02" + "user": "CHRISTIANSEN MADYSON", + "timestamp": "2019-12-27" }, { - "uuid": "899a98a9-acf1-4be0-834b-10884d94b1c2", + "uuid": "2fdf45d8-6d12-49bd-8d1e-e535bae37d3d", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "CARTWRIGHT MEDA", - "timestamp": "2015-01-15" + "user": "FEENEY THURMAN", + "timestamp": "2019-01-09" }, { - "uuid": "e6d1e977-8f35-4286-99aa-ab5a387a6d4d", - "siteRegistry": false, + "uuid": "01366160-cf1b-44e2-94dc-0a4e7bcf650b", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "PRICE DEANGELO", - "timestamp": "2017-06-28" + "user": "CROOKS OREN", + "timestamp": "2019-10-20" }, { - "uuid": "b3900e71-c6b2-41ca-a8ba-2c5e5df4c5ea", + "uuid": "803ee2ee-f853-4c5b-9568-1df6418e09b1", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "WUCKERT-NIENOW ELZA", - "timestamp": "2016-11-20" + "user": "ADAMS ALBERTA", + "timestamp": "2020-10-21" }, { - "uuid": "0a5896f2-c158-4c46-bf6c-16ac345cf4bd", + "uuid": "9929ecbe-0ffa-4420-acce-ae7ef2779439", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "SPENCER JAIDA", - "timestamp": "2017-12-15" + "user": "SPINKA EMERSON", + "timestamp": "2017-06-08" }, { - "uuid": "0316127a-2911-4003-a83b-e2a7b1befdad", - "siteRegistry": true, + "uuid": "07ae6512-9cbf-4d20-a9a7-110fc30eef1c", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "BAILEY ALEK", - "timestamp": "2016-07-03" + "user": "ANKUNDING BRYCE", + "timestamp": "2019-11-30" }, { - "uuid": "57aad8a3-7295-4dd6-99e5-9d57326dd63d", - "siteRegistry": false, + "uuid": "8d42e26c-69bf-49fd-a6a6-bfac0c5afd82", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "HOMENICK-ROWE LAYLA", - "timestamp": "2020-10-05" + "user": "NADER MAGALI", + "timestamp": "2016-04-15" } ], "associatedSites": [ { - "uuid": "a2d609de-ec6b-4955-8f42-4b71289d065b", - "dateNoted": "2014-02-06", - "notes": "", - "parcelID": "19239", - "siteID": "20687", - "siteRegistry": true - }, - { - "uuid": "ad64259e-816a-4554-978b-25bffd157b56", - "dateNoted": "2017-05-04", + "uuid": "2540896a-2992-4681-a615-857538b71ee7", + "dateNoted": "2018-01-15", "notes": "", - "parcelID": "20085", - "siteID": "16267", - "siteRegistry": true + "parcelID": "20421", + "siteID": "15519", + "siteRegistry": false }, { - "uuid": "db8d01bd-77d9-40a2-957d-42b2e4200f47", - "dateNoted": "2018-08-30", + "uuid": "5b0ef365-0eb5-4b97-b249-bc453b5dc405", + "dateNoted": "2021-11-21", "notes": "", - "parcelID": "15636", - "siteID": "16569", + "parcelID": "19382", + "siteID": "19921", "siteRegistry": false } ] }, { - "uuid": "b7e4e6b5-c685-4c18-b03f-2ffc3f2ab8f0", - "siteID": 17834, - "address": "456 Rubye Course", - "latitude": 55.9646, - "longitude": -128.7834, - "lastUpdated": "2023-09-27", - "city": "Kiehnland", - "region": "Cariboo", - "victoriaFile": "26250-20/1488", + "uuid": "ec75c2c3-b7f0-4448-b4d1-9fe82461149f", + "siteID": 17114, + "address": "61728 Vivianne Cove", + "latitude": 49.9698, + "longitude": -127.6364, + "lastUpdated": "2016-01-02", + "city": "Gulgowskimouth", + "region": " North Coast", + "victoriaFile": "26250-20/3224", "regionalFile": "N/A", "parcelIDs": [ - 763238, - 3507469, - 5312474, - 4913527, - 5821667 + 944703, + 3118434, + 6424990, + 5164242, + 3908696 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "99a0d4e1-9dc3-4fff-87dc-7053c42d4a83", - "createdAt": "2015-11-23", - "completed": "2017-02-02", - "initiated": "2022-10-29", - "ministryContact": "VOLKMAN NELDA", + "uuid": "5e283913-bfa0-4d77-9059-2176c24713a0", + "createdAt": "2015-12-12", + "completed": "2017-12-13", + "initiated": "2021-12-02", + "ministryContact": "O'CONNELL VERN", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "uuid": "d2488ffa-f8f8-4686-b047-139072876d59", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "uuid": "5299af78-d30a-45b8-8858-28d561f54714", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "uuid": "103fb526-b916-4cac-8e82-e229012f57ee", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "1e83044b-80a4-40b8-a18c-1b921fe09c0f", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "43baa69e-5e1b-4e0c-b6de-0f065db6f00f", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "uuid": "11851352-d239-4a3a-a124-d570cc15c412", + "createdAt": "2019-06-11", + "completed": "2018-07-08", + "initiated": "2021-01-03", + "ministryContact": "REILLY FLORENCE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -44263,14 +51374,20 @@ ], "notationParticipants": [ { - "uuid": "5ff0362e-e00d-4067-8d54-dabc9e07df8b", + "uuid": "49ee3128-74b5-41b8-8bd5-f3771f9eb065", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "096308eb-d51f-48c5-b216-bd8fe065dc19", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "74e5059a-f21c-4ecb-a323-acb95fd5c178", - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "14eb9116-aa38-4d8c-b82c-6ef5d44d2d43", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true } @@ -44278,11 +51395,11 @@ "siteRegistry": false }, { - "uuid": "6e980d2e-2962-4e64-a943-99baea6957c3", - "createdAt": "2015-12-19", - "completed": "2016-04-15", - "initiated": "2016-01-22", - "ministryContact": "BRAUN DAN", + "uuid": "cc904e63-a7a5-461c-b3bc-9490327cb28a", + "createdAt": "2021-05-14", + "completed": "2023-03-27", + "initiated": "2021-01-08", + "ministryContact": "JACOBSON LOWELL", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -44291,33 +51408,85 @@ ], "notationParticipants": [ { - "uuid": "f8412817-9319-4e0e-8760-fcdbf8b2e069", + "uuid": "d2dcf77e-0384-438c-929b-e751e6dc5c28", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "uuid": "c9bcde0c-b8c9-4518-b0b5-f065c8d62275", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "uuid": "37dfa95b-8f8a-4aac-ad9b-e45f4bdc4285", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "9418fe77-cb7d-45ea-979e-35f221772ec9", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "9913890f-b712-4b36-bb5a-4ade5a62ca84", + "uuid": "24e45f02-f19a-4163-af20-52620245bd2d", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "uuid": "0410dc14-ad2d-4237-a8ac-639173505170", + "createdAt": "2014-02-02", + "completed": "2015-11-03", + "initiated": "2019-01-21", + "ministryContact": "KRAJCIK BERNADETTE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "uuid": "0c466e97-a17f-4764-8c9d-ca3f3699340d", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "b1e3927b-ece4-4eb3-bcd9-9e80f8773335", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true }, { - "uuid": "22955b51-1da2-4c02-beef-2e4b3787e338", + "uuid": "db5a522a-7cec-4f3b-9db5-20301f5df8c7", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false + }, + { + "uuid": "a632b9ef-174b-44a9-a011-e5f6d1cefaef", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false } ], "participants": [ { - "uuid": "73ff9d77-7c86-4080-8a65-db1ff98e2146", - "name": "SHELL CANADA PRODUCTS", - "endDate": "2016-02-10", - "startDate": "2014-12-26", + "uuid": "d8590181-d556-4f26-991b-65f5f4f84806", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2021-08-22", + "startDate": "2023-07-02", "notes": "", "roles": [ "EMPLOYEE" @@ -44325,74 +51494,168 @@ "siteRegistry": false }, { - "uuid": "64381d58-8d35-4f70-ab06-a9f800fe0c53", + "uuid": "107e3db9-136e-487f-94e4-26fdf6dc23f1", "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2019-12-21", - "startDate": "2021-06-25", + "endDate": "2014-06-18", + "startDate": "2022-04-20", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false + }, + { + "uuid": "ca8b8cd1-2751-44d3-b1fe-a5f3f7fdb1cd", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2019-08-05", + "startDate": "2014-07-01", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + } + ], + "documents": [ + { + "uuid": "5cd580fc-b17f-4f4d-a266-5d48558aaa6d", + "siteRegistry": false, + "documentDate": "2022-04-21", + "receivedDate": "2019-01-09", + "uploadedDate": "2017-03-21", + "title": "Preliminary Site Investigation, Detailed Site Investigation and Remedial Plan for the Management Area adjacent to the Shell Site at 1503 West 41st Ave", + "participants": [ + { + "uuid": "4f5d3c86-cf9a-4fcf-b096-90325bdfb587", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "3a256fc9-7b22-411c-88d3-a79b2b04316a", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": true, + "role": "AUTHOR" + } + ] + }, + { + "uuid": "d09f491d-4bd7-440d-96cb-739855692ea7", + "siteRegistry": true, + "documentDate": "2016-08-24", + "receivedDate": "2021-03-03", + "uploadedDate": "2017-03-07", + "title": "Preliminary Site Investigation, Detailed Site Investigation and Remedial Plan for the Management Area adjacent to the Shell Site at 1503 West 41st Ave", + "participants": [ + { + "uuid": "f8742a55-6b07-4303-afe8-aea3604ff189", + "name": "AMET, DOLOR SIT", + "siteRegistry": false, + "role": "AUTHOR" + } + ] + }, + { + "uuid": "5c1d327d-b731-4a35-bf79-33e72cf68584", + "siteRegistry": true, + "documentDate": "2018-12-03", + "receivedDate": "2014-01-21", + "uploadedDate": "2019-02-16", + "title": "Preliminary Site Investigation, Detailed Site Investigation and Remedial Plan for the Management Area adjacent to the Shell Site at 1503 West 41st Ave", + "participants": [ + { + "uuid": "bd0c2ccd-c182-453f-8756-e96ac60b8081", + "name": "IPSUM", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "edaf33fa-fa76-4737-bcbb-9e91d8032744", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": false, + "role": "AUTHOR" + } + ] } ], "suspectLandUses": [ { - "uuid": "c141207b-382a-4098-b4e8-c9d72737928e", + "uuid": "bee5d8cd-162c-4e35-aca4-69b33c73f0cf", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-07-12 (described on Site Profile dated 2019-07-12)", + "notes": "INSERTED FOR SITE PROFILE DATED 2019-11-18 (described on Site Profile dated 2019-11-18)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "uuid": "bea691f7-a607-46d4-a619-5df51d7cff7f", + "uuid": "5823b0df-d6a4-4b53-8343-72d6415eeea2", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2020-02-22 (described on Site Profile dated 2020-02-22)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "uuid": "8be4a0be-6600-445f-ae6e-4b639a2d59d9", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2015-02-03 (described on Site Profile dated 2015-02-03)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "uuid": "afa2bbde-7808-4ab0-9076-8863fb5e5573", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-02-23 (described on Site Profile dated 2017-02-23)", + "notes": "INSERTED FOR SITE PROFILE DATED 2019-07-23 (described on Site Profile dated 2019-07-23)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], "parcelDescriptions": [ { - "uuid": "4bbea6e7-d4f3-4dca-8e2a-a20da9b135e5", - "siteRegistry": false, - "dateNoted": "2014-06-13", - "parcelID": "17002", - "crownLandUsePIN": "15610", - "crownLandFileNumber": "19281", - "landDescription": "LOT 4 OF LOT 5 BLOCK 3 DISTRICT LOT 5 PLAN 9056" + "uuid": "c7df87d0-4b00-4d6c-b06f-882eec942395", + "siteRegistry": true, + "dateNoted": "2023-05-11", + "parcelID": "20263", + "crownLandUsePIN": "20709", + "crownLandFileNumber": "15245", + "landDescription": "LOT 2 OF LOT 3 BLOCK 5 DISTRICT LOT 5 PLAN 3699" }, { - "uuid": "f7b5aee8-1822-4bf0-b1dc-af279b4b0277", + "uuid": "2ff3a085-7170-45e1-a11c-9e4e51754d4f", "siteRegistry": true, - "dateNoted": "2022-09-04", - "parcelID": "20998", - "crownLandUsePIN": "17076", - "crownLandFileNumber": "16879", - "landDescription": "LOT 1 OF LOT 2 BLOCK 4 DISTRICT LOT 5 PLAN 6221" + "dateNoted": "2019-12-06", + "parcelID": "15695", + "crownLandUsePIN": "20065", + "crownLandFileNumber": "15944", + "landDescription": "LOT 3 OF LOT 3 BLOCK 4 DISTRICT LOT 5 PLAN 9598" + }, + { + "uuid": "c125c3e0-0d6c-444b-9200-10bbffd447ac", + "siteRegistry": true, + "dateNoted": "2015-08-12", + "parcelID": "15790", + "crownLandUsePIN": "17746", + "crownLandFileNumber": "17808", + "landDescription": "LOT 5 OF LOT 1 BLOCK 2 DISTRICT LOT 5 PLAN 4386" } ], "siteDisclosures": [ { - "uuid": "0c3f0d3b-7d9b-465b-b8dc-0599bc43ac2e", - "siteRegistry": false, - "dateReceived": "2019-02-15", - "dateCompleted": "2023-02-24", - "dateEntered": "2015-09-14", - "dateRegistrar": "2019-09-24", - "dateLocalAuthorityReceived": "2022-10-07", - "summary": "Temporibus itaque reprehenderit sit enim saepe quod minima totam quis.\nPerspiciatis debitis et repellat architecto voluptatibus voluptatem quisquam.", - "informationUsed": "Sed doloremque mollitia doloribus aperiam.\nCulpa aut dolorum.\nMolestias nobis reprehenderit repudiandae ducimus optio alias quis modi.\nPossimus nam dolor commodi quod ipsum ratione perspiciatis architecto.\nTotam delectus earum neque.", - "pastOrPresentOrders": "Quod amet explicabo.\nPorro asperiores at et.\nIusto recusandae fugit culpa quae laudantium quaerat quia perspiciatis.", + "uuid": "42321116-5e7f-4217-aa91-3a7755097d0b", + "siteRegistry": true, + "dateReceived": "2016-04-01", + "dateCompleted": "2023-06-02", + "dateEntered": "2017-08-01", + "dateRegistrar": "2019-07-02", + "dateLocalAuthorityReceived": "2020-11-26", + "summary": "Rem rem quisquam accusamus optio aspernatur accusamus consequatur.\nDolore earum esse similique optio earum repellat amet.", + "informationUsed": "Praesentium impedit quae nisi provident.\nPlaceat reiciendis dignissimos.\nAccusamus sunt culpa suscipit quo consectetur aspernatur provident.", + "pastOrPresentOrders": "Dicta laboriosam temporibus reprehenderit iusto cum.", "commercialAndIndustrialPurposes": [ { - "uuid": "6a04c86a-339d-4dde-8b89-be76ef6e460f", + "uuid": "1ed755a9-434d-455e-8604-98a5e78186fc", "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true }, { - "uuid": "a70d333e-1559-439c-aef1-ea392a7c83fe", + "uuid": "40cf3cac-7fc5-46b4-b228-ca424f06565a", "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true } ] @@ -44400,114 +51663,115 @@ ], "activityLog": [ { - "uuid": "58ce2294-8b08-4d69-a2bf-3731ae3767a6", - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "SCHUMM DREW", - "timestamp": "2020-11-07" - }, - { - "uuid": "ef30bcf4-4964-4bcf-8af2-99c631f50a1a", + "uuid": "e4d4c487-e965-4e36-a9fc-a448119c5e22", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "PARISIAN TRISTIN", - "timestamp": "2017-09-22" + "user": "PACOCHA LEDA", + "timestamp": "2020-12-04" }, { - "uuid": "0007045f-c067-464a-af74-97ea7046d892", - "siteRegistry": false, + "uuid": "d55f64d8-d46c-4c6a-8f9e-489b833a8023", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "MCCULLOUGH NYAH", - "timestamp": "2019-11-17" + "user": "KONOPELSKI MARGARITA", + "timestamp": "2023-01-23" }, { - "uuid": "42ab8cb0-a838-4c8b-aae4-5c7274d40f75", + "uuid": "c584d937-07ff-4cd4-a70f-8bcd2f67c6d6", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "TURNER PATTIE", - "timestamp": "2017-11-09" + "user": "WISOKY MADDISON", + "timestamp": "2014-04-20" }, { - "uuid": "08c174fc-57b1-494d-8fd9-887cb2e814ea", - "siteRegistry": true, + "uuid": "5df0b247-5f1d-4989-91de-2c77af4940ed", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "SCHUSTER DIANA", - "timestamp": "2017-07-13" + "user": "SMITHAM LUCIANO", + "timestamp": "2020-09-19" }, { - "uuid": "6b565d24-2660-47a6-a710-9d966c36e799", - "siteRegistry": false, + "uuid": "ef982a54-d2c8-4f8b-8654-9d20b83759c2", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "O'HARA CRYSTAL", - "timestamp": "2016-01-09" + "user": "MACGYVER RAYMOND", + "timestamp": "2016-04-05" }, { - "uuid": "45849f0a-247f-4f16-a4b9-809da1930924", + "uuid": "bc44b049-0b50-4201-bf25-990587d39c5f", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "BEDNAR ALISON", - "timestamp": "2017-01-29" + "user": "KUHIC MONA", + "timestamp": "2022-11-30" }, { - "uuid": "884f3fa0-68e9-45e7-82eb-1f549eb68476", - "siteRegistry": false, + "uuid": "05b6d8b3-51b9-4e1c-800f-f4344de1bfed", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "PAUCEK MARGIE", - "timestamp": "2019-03-03" + "user": "SCHIMMEL MATTEO", + "timestamp": "2020-10-13" }, { - "uuid": "967c205e-96c3-4efe-a1d1-ebb5889897da", + "uuid": "96a5fd22-8dba-4746-b2ae-6fc5ef5588a9", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "BERGSTROM KARA", - "timestamp": "2020-09-21" + "user": "VOLKMAN TREVION", + "timestamp": "2019-01-06" } ], "associatedSites": [ { - "uuid": "142ac9d3-be44-4ca5-817b-ff09a2b58d16", - "dateNoted": "2023-05-28", + "uuid": "35e8db5f-93e1-4bed-a151-30839943a7e6", + "dateNoted": "2015-04-17", "notes": "", - "parcelID": "16776", - "siteID": "19730", + "parcelID": "18907", + "siteID": "15587", + "siteRegistry": false + }, + { + "uuid": "744b93ff-a04e-4495-9142-34130d261e2d", + "dateNoted": "2014-09-09", + "notes": "", + "parcelID": "18379", + "siteID": "17060", "siteRegistry": true }, { - "uuid": "0988e227-2850-416c-88be-0a09147ddd8b", - "dateNoted": "2016-09-15", + "uuid": "d3bb4a85-cdf7-474c-a39a-28cfa400441c", + "dateNoted": "2022-07-23", "notes": "", - "parcelID": "19129", - "siteID": "18934", + "parcelID": "15995", + "siteID": "16012", "siteRegistry": false } ] }, { - "uuid": "590003ce-87d2-45c3-85af-e028eeef1838", - "siteID": 19050, - "address": "455 Lucienne Canyon", - "latitude": 55.4766, - "longitude": -120.8242, - "lastUpdated": "2017-05-22", - "city": "Redmond", - "region": "Thompson-Okanagan", - "victoriaFile": "26250-20/2651", + "uuid": "01a97263-cd9e-4638-912f-defe78f0769e", + "siteID": 19262, + "address": "87533 Cameron Mall", + "latitude": 57.2517, + "longitude": -132.5926, + "lastUpdated": "2019-09-29", + "city": "Dorothychester", + "region": " North Coast", + "victoriaFile": "26250-20/5344", "regionalFile": "N/A", "parcelIDs": [ - 6604101, - 4150190, - 9685811, - 6800004, - 5359879 + 9817586, + 7924105, + 9489081, + 6886932, + 335030 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "f54d8f59-886d-41f7-ac3f-b2f6f3494003", - "createdAt": "2020-01-21", - "completed": "2014-06-23", - "initiated": "2016-03-20", - "ministryContact": "RICE ALDA", + "uuid": "894bba27-e25a-4d63-924b-bfc7e3d4e25b", + "createdAt": "2020-05-23", + "completed": "2019-08-20", + "initiated": "2018-01-14", + "ministryContact": "BOGISICH MABLE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -44516,32 +51780,26 @@ ], "notationParticipants": [ { - "uuid": "c48e0339-c4b9-4aae-86d0-c28ee913bcb1", + "uuid": "80dfefe4-d61b-41f2-a350-62575cd267f4", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false + "role": "REQUESTED BY", + "siteRegistry": true }, { - "uuid": "e1875ffb-c0cc-4c69-a9ca-c8a0ee60505a", + "uuid": "94aead88-c8f6-44ad-a5de-048e4bb24258", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false - }, - { - "uuid": "97c0097b-c88c-44ff-b844-6ac29fd4a0ab", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "b99c75d0-9eae-4d5e-98d1-0d429158739c", - "createdAt": "2014-08-10", - "completed": "2023-04-13", - "initiated": "2021-05-23", - "ministryContact": "BLANDA ELDRIDGE", + "uuid": "d8ddcd49-50bc-4af5-8e5c-f1f5d27ae489", + "createdAt": "2019-06-20", + "completed": "2016-06-30", + "initiated": "2020-08-07", + "ministryContact": "POUROS SADIE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -44550,55 +51808,39 @@ ], "notationParticipants": [ { - "uuid": "d1ff90db-989a-473f-9db0-b515bc744f31", + "uuid": "3cd53a5f-8d17-4a3d-9f61-164e78f6f977", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "uuid": "ad4a89f3-ce9c-4ba9-8a9b-23afd8cbb97e", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false }, { - "uuid": "3f142c97-a5c3-4e89-9bc2-5b21b92ea56b", - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "uuid": "fb9bbc28-f80d-457c-88f8-748565d08a62", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "4c0d879d-a196-4863-b203-daf04b5efc21", + "uuid": "e5cfde9a-f722-47e5-a082-3efcb9af0984", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true } ], "participants": [ { - "uuid": "22128a28-1a69-444f-9e0c-2adc09a0d5b5", - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2016-10-16", - "startDate": "2020-10-07", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": true - }, - { - "uuid": "1bd493f1-327b-41cd-a9d2-0cc49a9ce7ec", - "name": "IPSUM", - "endDate": "2018-11-15", - "startDate": "2019-07-04", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": true - }, - { - "uuid": "3447bc33-25da-44f3-ad4a-e15af25a2f3f", + "uuid": "f305f668-efc6-4b87-8433-85b48bb61f79", "name": "SHELL CANADA PRODUCTS", - "endDate": "2021-05-21", - "startDate": "2015-09-25", + "endDate": "2017-02-21", + "startDate": "2015-10-27", "notes": "", "roles": [ "EMPLOYEE" @@ -44606,246 +51848,317 @@ "siteRegistry": false }, { - "uuid": "480067f2-3f1f-4bb4-ba76-c58eae2c1dff", - "name": "IPSUM", - "endDate": "2016-10-01", - "startDate": "2022-05-22", + "uuid": "bca87f48-c0ce-49ec-acef-21a154e182e6", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2019-08-15", + "startDate": "2020-07-15", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], - "siteRegistry": false + "siteRegistry": true } ], - "suspectLandUses": [ + "documents": [ { - "uuid": "6491e6d8-f4de-4673-8359-ba5504abccef", + "uuid": "68729c5e-9ceb-4bb1-94ec-12bfde02e71a", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-11-21 (described on Site Profile dated 2017-11-21)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "documentDate": "2017-04-29", + "receivedDate": "2018-03-14", + "uploadedDate": "2016-02-29", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "860a8944-eb93-4bb9-b4d8-63f507ab6747", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": false, + "role": "AUTHOR" + } + ] }, { - "uuid": "9aad14c1-717d-4d1d-9717-fec54da2589b", + "uuid": "a4f862b1-d800-4d12-8d75-cfa57c19cf38", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-11-16 (described on Site Profile dated 2021-11-16)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "documentDate": "2015-08-24", + "receivedDate": "2019-03-21", + "uploadedDate": "2021-02-24", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "76012f50-414a-4b2b-9d65-aa622f8278a5", + "name": "AMET, DOLOR SIT", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "052a2dfe-17e4-4c10-80d7-eedb49decf00", + "name": "AMET, DOLOR SIT", + "siteRegistry": true, + "role": "AUTHOR" + } + ] }, { - "uuid": "b76a13e5-a7c6-48da-9f1f-967d66086ba9", - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-09-23 (described on Site Profile dated 2019-09-23)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "uuid": "854b76a5-2ff7-41e6-a932-0bd4286fd9bb", + "siteRegistry": false, + "documentDate": "2016-04-20", + "receivedDate": "2017-12-29", + "uploadedDate": "2021-03-16", + "title": "Summary of Site Conditions, 1537 W 41st Avenue, Vancouver", + "participants": [ + { + "uuid": "5ad06a7a-1aab-45c4-8b44-ec05097d77de", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "0ea002b3-56c4-4f12-b695-2949007fe9c0", + "name": "IPSUM", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "5ab04082-9b7f-414b-ac3b-84918864f7ac", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": true, + "role": "AUTHOR" + } + ] }, { - "uuid": "84b19a1f-01df-4974-9e68-139d74299840", - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2023-01-25 (described on Site Profile dated 2023-01-25)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "uuid": "0849b97b-b70d-4280-9d3d-b6e75afe6901", + "siteRegistry": true, + "documentDate": "2019-06-04", + "receivedDate": "2022-12-04", + "uploadedDate": "2023-01-26", + "title": "Preliminary Site Investigation, Detailed Site Investigation and Remedial Plan for the Management Area adjacent to the Shell Site at 1503 West 41st Ave", + "participants": [ + { + "uuid": "bf9fdc4f-5b14-4951-b0fb-e7bfd6d75ddf", + "name": "IPSUM", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "cc92691c-44e5-4ed9-94fb-5cccdb8d76b8", + "name": "IPSUM", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "c65f6c3f-e53d-42de-894e-1ed1e8670d23", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": false, + "role": "AUTHOR" + } + ] }, { - "uuid": "60566565-cbda-4c91-bde1-391bb95fea84", + "uuid": "4333a678-d6d0-47a8-86fd-c578f3592152", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-07-14 (described on Site Profile dated 2014-07-14)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "documentDate": "2017-12-12", + "receivedDate": "2020-05-30", + "uploadedDate": "2017-01-19", + "title": "Preliminary Site Investigation, Detailed Site Investigation and Remedial Plan for the Management Area adjacent to the Shell Site at 1503 West 41st Ave", + "participants": [ + { + "uuid": "0e1449e5-63d1-43ff-ab34-33c1ffa1d702", + "name": "IPSUM", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "db116c24-f9b4-40f6-ab16-ade99b8b5e82", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": false, + "role": "AUTHOR" + } + ] } ], - "parcelDescriptions": [ + "suspectLandUses": [ { - "uuid": "ea86fb0b-5c85-4738-98e5-354987b2da18", + "uuid": "84949bc4-cf6a-4c3e-95f6-bc94e3b2cd05", "siteRegistry": false, - "dateNoted": "2019-08-29", - "parcelID": "19683", - "crownLandUsePIN": "17464", - "crownLandFileNumber": "18229", - "landDescription": "LOT 4 OF LOT 2 BLOCK 1 DISTRICT LOT 5 PLAN 3100" + "notes": "INSERTED FOR SITE PROFILE DATED 2015-01-31 (described on Site Profile dated 2015-01-31)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "uuid": "742b4448-122e-4219-b4ab-9fb62a87c1de", + "uuid": "15fa65f0-86f7-4962-8b41-0638518e3ad2", "siteRegistry": false, - "dateNoted": "2016-12-12", - "parcelID": "17002", - "crownLandUsePIN": "20172", - "crownLandFileNumber": "18913", - "landDescription": "LOT 2 OF LOT 5 BLOCK 2 DISTRICT LOT 5 PLAN 9600" + "notes": "INSERTED FOR SITE PROFILE DATED 2017-10-10 (described on Site Profile dated 2017-10-10)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + } + ], + "parcelDescriptions": [ + { + "uuid": "3f3bc109-7ff1-4a5f-9ed5-edfb8e1d3e1b", + "siteRegistry": false, + "dateNoted": "2020-01-22", + "parcelID": "17253", + "crownLandUsePIN": "17242", + "crownLandFileNumber": "19656", + "landDescription": "LOT 4 OF LOT 4 BLOCK 3 DISTRICT LOT 1 PLAN 7470" }, { - "uuid": "abf56f26-132a-490d-843d-9079f0e259d3", + "uuid": "b87a2783-e885-4f06-b38f-d766d2c2135e", "siteRegistry": true, - "dateNoted": "2018-08-14", - "parcelID": "17716", - "crownLandUsePIN": "16749", - "crownLandFileNumber": "20847", - "landDescription": "LOT 5 OF LOT 3 BLOCK 2 DISTRICT LOT 5 PLAN 7023" + "dateNoted": "2018-10-29", + "parcelID": "17475", + "crownLandUsePIN": "17925", + "crownLandFileNumber": "18926", + "landDescription": "LOT 1 OF LOT 1 BLOCK 4 DISTRICT LOT 2 PLAN 7281" } ], "siteDisclosures": [ { - "uuid": "e21c04c1-db9e-404d-a008-e689cf8c61a1", + "uuid": "e8463e23-8338-4d7b-8b90-f8ababbaee3a", "siteRegistry": true, - "dateReceived": "2015-02-04", - "dateCompleted": "2018-07-31", - "dateEntered": "2015-06-24", - "dateRegistrar": "2015-01-21", - "dateLocalAuthorityReceived": "2020-07-19", - "summary": "Nostrum dicta quia harum consequuntur.\nConsectetur natus corrupti provident tempora vero delectus recusandae quibusdam.\nMinus mollitia adipisci numquam blanditiis veniam.", - "informationUsed": "Quia fugiat voluptas placeat tempore odit et sed sapiente similique.\nIste saepe dicta possimus consequuntur accusamus nemo illum debitis.\nEaque dolorum laudantium fugiat nesciunt eius dolorum.\nEarum reiciendis optio aliquid ex aspernatur ex quia dolore vitae.", - "pastOrPresentOrders": "Aut ipsam distinctio repellat ipsum fugit dolor.\nOptio asperiores recusandae quas suscipit nesciunt suscipit repellat.\nSint omnis incidunt corrupti sequi aspernatur explicabo iusto temporibus.", + "dateReceived": "2014-06-12", + "dateCompleted": "2017-12-05", + "dateEntered": "2017-07-20", + "dateRegistrar": "2014-10-30", + "dateLocalAuthorityReceived": "2016-08-21", + "summary": "Nostrum doloribus voluptates.\nRepellendus totam maxime cupiditate dolor.", + "informationUsed": "Culpa quaerat mollitia laborum sequi magnam nemo incidunt minima itaque.\nEligendi autem mollitia quia magni amet.\nQuis optio consequatur repudiandae.", + "pastOrPresentOrders": "Vitae quis ipsam.", "commercialAndIndustrialPurposes": [ { - "uuid": "db553c06-1c13-432a-b7e8-ad93072894a9", - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false - }, - { - "uuid": "8f6b111c-c752-4075-9313-5c4347e72541", + "uuid": "42a055ab-0dbc-47a1-864f-a144df537446", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { - "uuid": "adaa5557-7a4b-4164-9e0e-e142fd6701a7", + "uuid": "79fe3a43-9302-4981-be1f-4cc75cd5062b", "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { - "uuid": "2c31d6c1-5753-4809-96b1-8ac4f7dab1a3", + "uuid": "b2e680a2-d231-4c88-aa76-91ad924dcdfe", "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true } ] }, { - "uuid": "de78bf4a-ee26-4c0c-bf13-6b01e4e43dcc", + "uuid": "503701dd-422e-44ca-828d-d4199ef272ed", "siteRegistry": true, - "dateReceived": "2020-12-15", - "dateCompleted": "2019-04-22", - "dateEntered": "2014-10-30", - "dateRegistrar": "2017-12-03", - "dateLocalAuthorityReceived": "2018-09-21", - "summary": "Ipsa praesentium facere delectus itaque at itaque pariatur.", - "informationUsed": "Laudantium nam voluptatum soluta culpa modi architecto cupiditate molestiae.\nSed placeat dolorum quam sed dolorum tenetur vero sit voluptas.\nOdio unde sit.\nQuidem adipisci similique at corporis quibusdam a.", - "pastOrPresentOrders": "Provident nam est corrupti blanditiis officia iusto.", + "dateReceived": "2017-09-27", + "dateCompleted": "2022-04-23", + "dateEntered": "2017-03-01", + "dateRegistrar": "2019-02-18", + "dateLocalAuthorityReceived": "2019-07-21", + "summary": "Sunt sint ducimus enim commodi excepturi.\nUt nostrum beatae harum.", + "informationUsed": "Vitae inventore rem enim totam.\nAut hic fuga architecto aspernatur praesentium sed dolorem dicta minima.\nOmnis eum veritatis.", + "pastOrPresentOrders": "Ducimus animi ipsa.", "commercialAndIndustrialPurposes": [ { - "uuid": "abf80d23-436a-4c9f-bbde-a807d0b60511", + "uuid": "4552b569-15e1-4c19-ad3f-639669e5c5f4", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "35e00ff2-38a5-4809-9631-8b503bc6f31c", - "scheduleReference": "F2*", + "uuid": "a7341f24-164f-402d-94e8-145363b1f97a", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { - "uuid": "a4fc0eea-84c6-4c2a-a951-ba3e07a2aad6", + "uuid": "f1678df9-3d95-4f27-94b5-5d465baccff9", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true - } - ] - } - ], - "activityLog": [ - { - "uuid": "12e0d274-c991-493a-97dd-35eebcc506b0", - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "BAUCH DESHAUN", - "timestamp": "2022-07-25" - }, - { - "uuid": "14f31035-4582-4c6b-bb9e-435790eef095", - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "BODE MARIANNE", - "timestamp": "2014-05-15" - }, + } + ] + } + ], + "activityLog": [ { - "uuid": "cef181ce-c2d7-4514-b5e6-de74b537c356", + "uuid": "59e49cf9-2c63-4b28-a6d2-bc059ec5d64b", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "MILLER WILLOW", - "timestamp": "2017-06-05" + "user": "CRONA TRENTON", + "timestamp": "2019-11-08" }, { - "uuid": "3794784d-cc0b-4811-ab51-94688cea42f6", - "siteRegistry": false, + "uuid": "cef3e38a-1381-4e98-9ebe-e70051f80d6d", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "HACKETT KENNITH", - "timestamp": "2015-06-17" + "user": "HICKLE DELANEY", + "timestamp": "2017-11-12" }, { - "uuid": "652565ec-5f0b-41ca-8ceb-21de791e7619", + "uuid": "5a814a7b-bed2-4f3f-94c2-0f7b315f15cd", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "BREKKE-QUIGLEY BROOK", - "timestamp": "2020-08-14" + "user": "GERHOLD ZACHARY", + "timestamp": "2016-06-23" }, { - "uuid": "223f541b-b4a4-498f-8a7c-d3106b8bfd63", + "uuid": "011c8fd7-65ec-41e8-8a75-1b13727e4b69", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "BOGISICH DARRIN", - "timestamp": "2016-09-11" + "user": "PROSACCO ELIJAH", + "timestamp": "2020-04-08" }, { - "uuid": "04bc9637-8ef4-4edb-a2d0-4ed94d0fe7a2", + "uuid": "3b1c9a32-a61e-4105-a4bb-2022272865d5", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "JACOBI CHRISTELLE", - "timestamp": "2022-08-15" + "user": "PROHASKA JAMIE", + "timestamp": "2021-09-09" } ], "associatedSites": [ { - "uuid": "3728dd59-ff10-4615-a7bf-c8a492fe595a", - "dateNoted": "2015-03-03", + "uuid": "3f54cef9-9e67-414c-9fd9-cd182c8e3d2f", + "dateNoted": "2022-05-21", "notes": "", - "parcelID": "15502", - "siteID": "19769", + "parcelID": "16318", + "siteID": "19745", "siteRegistry": true }, { - "uuid": "371bfcdf-86fd-47f4-952e-89f36f54b703", - "dateNoted": "2022-03-20", + "uuid": "193229fc-c5fc-4643-b3da-1e437065f538", + "dateNoted": "2018-03-26", "notes": "", - "parcelID": "20472", - "siteID": "19893", + "parcelID": "18780", + "siteID": "19399", "siteRegistry": false } ] }, { - "uuid": "dfe0e8fa-449b-421c-8b83-fbf572f0a46c", - "siteID": 19218, - "address": "59751 Ansel Plains", - "latitude": 55.108, - "longitude": -119.5739, - "lastUpdated": "2023-10-05", - "city": "Yorba Linda", - "region": " North Coast", - "victoriaFile": "26250-20/14760", + "uuid": "d831a04a-1b50-4b79-9b1c-294c3d377d90", + "siteID": 19453, + "address": "956 Desmond Square", + "latitude": 55.2052, + "longitude": -128.1063, + "lastUpdated": "2019-05-27", + "city": "Littelshire", + "region": "Kootenay", + "victoriaFile": "26250-20/7939", "regionalFile": "N/A", "parcelIDs": [ - 2618022, - 5792981, - 7799845, - 6399338, - 4527071 + 6931922, + 3905902, + 586093, + 7996482, + 2698764 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "5665a19f-fe31-44ee-b301-bfc32e3f423e", - "createdAt": "2019-08-05", - "completed": "2019-01-17", - "initiated": "2016-12-29", - "ministryContact": "MAGGIO NATALIA", + "uuid": "603bf6cf-9580-4208-aa17-08eddfe9f04a", + "createdAt": "2015-12-29", + "completed": "2022-01-15", + "initiated": "2022-12-13", + "ministryContact": "STAMM SHAKIRA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -44854,25 +52167,19 @@ ], "notationParticipants": [ { - "uuid": "39f88575-f1aa-48c3-880c-9e19dde5aa8b", - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "uuid": "7d787554-cacd-4ae2-95cf-ae305f2f0bd0", + "uuid": "5d984c8b-e308-4d6b-8e1c-ad671487e8df", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true }, { - "uuid": "5cc9cb12-2dc5-4bbe-abb6-d3afe4cc829c", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true + "uuid": "486a093f-bf41-43d9-ba5e-f4aa33924767", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false }, { - "uuid": "bda67f5f-d89e-40a6-bc5f-ef86c8506d3b", + "uuid": "17c9f8bc-cc2d-47d3-9a19-9f8eb355debc", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false @@ -44881,11 +52188,11 @@ "siteRegistry": true }, { - "uuid": "7b3cfc5a-3a1c-41ba-9c45-0fa7bcf6a0cd", - "createdAt": "2017-07-03", - "completed": "2015-02-22", - "initiated": "2019-01-21", - "ministryContact": "OBERBRUNNER BARBARA", + "uuid": "6bb7a570-bb38-406c-8f6d-700259079de8", + "createdAt": "2017-10-04", + "completed": "2017-04-12", + "initiated": "2021-09-13", + "ministryContact": "DOYLE CHRISTINE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -44894,72 +52201,32 @@ ], "notationParticipants": [ { - "uuid": "3449dbea-e204-4b71-8aeb-a5f82a27cb56", + "uuid": "5311e0ae-3c53-415a-a95b-30139a9971b7", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "uuid": "1dc2a071-28d4-457b-9558-daed07ca4fff", - "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true - } - ], - "siteRegistry": false - }, - { - "uuid": "1cee8416-c598-4774-a65d-2b8eb2afc766", - "createdAt": "2013-11-01", - "completed": "2014-07-16", - "initiated": "2023-05-19", - "ministryContact": "HOEGER JOLIE", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "uuid": "eb356412-8f05-487c-b2c9-b849f3eeb806", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false }, { - "uuid": "542aa6fc-9d87-44c3-b8a1-f3cf353596ce", + "uuid": "f2e92500-683d-4fb5-aa03-daf0c9664aae", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "e78aaa1e-a3fa-44fd-a77c-cc380f799ed7", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "uuid": "d4301005-a4f5-4f8d-bb7f-e50e5c86ed57", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "uuid": "f7f89a85-dd37-44fb-b2e5-e0299b00c1f5", + "uuid": "1735ce25-eb43-4c0b-9899-2a8a1028f0a5", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "210dd779-2c5b-496a-a064-369370862b8a", - "createdAt": "2020-08-27", - "completed": "2018-06-18", - "initiated": "2023-08-24", - "ministryContact": "AUER STEPHEN", + "uuid": "8fb3872e-11ba-4dc4-a201-ca55edc41141", + "createdAt": "2018-11-12", + "completed": "2017-12-05", + "initiated": "2013-11-02", + "ministryContact": "ZIEMANN VESTA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -44968,321 +52235,291 @@ ], "notationParticipants": [ { - "uuid": "5a47adaa-e9cf-4822-b362-8966ee51bef8", - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "2f4753cf-f1d7-4184-8bee-04023ab8dbee", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "8dc12420-192e-4c9b-999a-70c06a064c0c", - "name": "SHELL CANADA PRODUCTS", + "uuid": "71005eb6-09d5-4ffa-b870-b8c2dadcaea8", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "dbb931fa-2068-4542-a088-7debc9ce5ee0", + "uuid": "d4b032ad-4715-4dcc-a77f-676a488625a1", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true } ], "participants": [ { - "uuid": "20b69e30-3a7a-4c80-8b90-b7177def4c28", - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2019-05-06", - "startDate": "2018-10-12", + "uuid": "a4915eef-5c4a-40bb-ae65-e9208d84ec05", + "name": "AMET, DOLOR SIT", + "endDate": "2021-07-06", + "startDate": "2015-06-08", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "308904ac-90d7-438f-be5d-dd1f2052b9f3", + "uuid": "e5d22f54-c1c9-48ab-a20c-f6dc243ebed4", "name": "SHELL CANADA PRODUCTS", - "endDate": "2016-11-05", - "startDate": "2015-01-17", + "endDate": "2019-08-24", + "startDate": "2014-11-06", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "891a37a6-108b-4fd3-b377-c0ce6535df2f", + "uuid": "0383a54b-5df9-4910-87e3-5fd512ea95bf", "name": "IPSUM", - "endDate": "2020-04-08", - "startDate": "2023-07-29", + "endDate": "2016-11-19", + "startDate": "2022-07-21", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": false }, { - "uuid": "8136a70b-5add-423f-8c06-9331b87391b4", + "uuid": "ab8a952c-8f65-4642-b834-ac93e48e51f0", "name": "IPSUM", - "endDate": "2022-01-12", - "startDate": "2022-10-12", + "endDate": "2015-01-17", + "startDate": "2022-03-01", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true + }, + { + "uuid": "e6c71df4-8a79-4c57-bfbd-eac70e1743ee", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2015-01-04", + "startDate": "2020-02-17", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true } ], - "suspectLandUses": [ + "documents": [ { - "uuid": "ea554981-9ff6-431e-baa3-1b06459fa3a4", + "uuid": "aa07d073-5e05-43b4-9c56-9d2975488741", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-11-01 (described on Site Profile dated 2016-11-01)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" - }, + "documentDate": "2015-12-28", + "receivedDate": "2014-01-17", + "uploadedDate": "2018-09-19", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "4b53a7bc-1089-4583-af39-d916947a2c7c", + "name": "AMET, DOLOR SIT", + "siteRegistry": true, + "role": "AUTHOR" + } + ] + } + ], + "suspectLandUses": [ { - "uuid": "e0462f43-0c3a-4f06-8a61-e64b5933a38c", + "uuid": "742692d4-4fbd-4cda-aede-dd206af0a81b", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-11-22 (described on Site Profile dated 2014-11-22)", + "notes": "INSERTED FOR SITE PROFILE DATED 2018-04-16 (described on Site Profile dated 2018-04-16)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "uuid": "7841ca2a-e2c8-4c9e-8e09-040dd4b2c273", + "uuid": "a3f763ed-2f95-4662-8c1a-0f7e3b117ca3", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-04-06 (described on Site Profile dated 2019-04-06)", + "notes": "INSERTED FOR SITE PROFILE DATED 2021-11-03 (described on Site Profile dated 2021-11-03)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], "parcelDescriptions": [ { - "uuid": "d717bcc8-83d9-4e26-a033-dc97586c9473", + "uuid": "21d7284d-cb70-4834-8f31-24776483bee8", "siteRegistry": true, - "dateNoted": "2013-12-27", - "parcelID": "15837", - "crownLandUsePIN": "19276", - "crownLandFileNumber": "16529", - "landDescription": "LOT 1 OF LOT 5 BLOCK 2 DISTRICT LOT 5 PLAN 8552" + "dateNoted": "2017-01-25", + "parcelID": "19959", + "crownLandUsePIN": "18953", + "crownLandFileNumber": "19073", + "landDescription": "LOT 4 OF LOT 3 BLOCK 3 DISTRICT LOT 1 PLAN 9493" }, { - "uuid": "27f3accf-82b9-4d8c-af7d-bdc69f9d2b2d", + "uuid": "65b359a3-ba59-4a9e-bcb1-b4b1c41a759f", "siteRegistry": false, - "dateNoted": "2018-12-05", - "parcelID": "18031", - "crownLandUsePIN": "18207", - "crownLandFileNumber": "16033", - "landDescription": "LOT 3 OF LOT 4 BLOCK 2 DISTRICT LOT 5 PLAN 3380" + "dateNoted": "2015-08-02", + "parcelID": "17811", + "crownLandUsePIN": "20859", + "crownLandFileNumber": "15906", + "landDescription": "LOT 4 OF LOT 3 BLOCK 2 DISTRICT LOT 5 PLAN 3959" }, { - "uuid": "4e7d901a-98b7-4da4-aedc-13abc824d75e", + "uuid": "d0974f1b-a1c1-4cb0-85f0-8d179e4b7be6", "siteRegistry": true, - "dateNoted": "2020-08-03", - "parcelID": "15446", - "crownLandUsePIN": "18787", - "crownLandFileNumber": "19024", - "landDescription": "LOT 3 OF LOT 5 BLOCK 4 DISTRICT LOT 5 PLAN 3910" + "dateNoted": "2020-11-13", + "parcelID": "16846", + "crownLandUsePIN": "17833", + "crownLandFileNumber": "19567", + "landDescription": "LOT 4 OF LOT 1 BLOCK 1 DISTRICT LOT 2 PLAN 3902" }, { - "uuid": "6126b3dd-66c3-42e5-8751-0e2470a9622b", + "uuid": "578ca452-2652-4d7c-a263-0b0fce52588a", "siteRegistry": true, - "dateNoted": "2023-06-19", - "parcelID": "17425", - "crownLandUsePIN": "20227", - "crownLandFileNumber": "16758", - "landDescription": "LOT 1 OF LOT 5 BLOCK 4 DISTRICT LOT 4 PLAN 7202" + "dateNoted": "2023-08-25", + "parcelID": "16966", + "crownLandUsePIN": "18602", + "crownLandFileNumber": "15476", + "landDescription": "LOT 2 OF LOT 5 BLOCK 4 DISTRICT LOT 4 PLAN 9261" } ], "siteDisclosures": [ { - "uuid": "fb4acd04-808f-4b11-8d98-08eb96c57584", + "uuid": "50cdd3c7-a566-4c39-8a2d-9d792a0084ab", "siteRegistry": true, - "dateReceived": "2023-07-28", - "dateCompleted": "2016-09-09", - "dateEntered": "2021-08-10", - "dateRegistrar": "2023-04-15", - "dateLocalAuthorityReceived": "2021-02-27", - "summary": "Qui molestias ipsa laborum ducimus recusandae.\nOdio porro nesciunt explicabo aut quasi.", - "informationUsed": "Officiis ducimus delectus hic ad quibusdam voluptas cupiditate.\nIusto voluptatem aut sed sit corporis nam assumenda pariatur voluptatem.\nAlias sapiente itaque corrupti architecto mollitia ullam deserunt ipsum eum.\nExcepturi soluta ipsam quam quae sequi molestiae ratione aut optio.\nConsectetur illo veniam dignissimos itaque delectus quis fuga.", - "pastOrPresentOrders": "Nostrum sit repudiandae reprehenderit ratione.\nInventore sint natus.", + "dateReceived": "2022-07-02", + "dateCompleted": "2019-02-08", + "dateEntered": "2020-12-15", + "dateRegistrar": "2019-04-12", + "dateLocalAuthorityReceived": "2017-12-31", + "summary": "Maxime eligendi soluta adipisci fuga sunt.\nLabore eveniet animi cupiditate.", + "informationUsed": "Perferendis molestias dolorem reprehenderit maiores fugiat dolorum.\nQuisquam magni saepe distinctio numquam dignissimos nesciunt similique.\nId magnam corporis labore quam qui.\nOdit earum molestiae odio illo sit pariatur tenetur assumenda eveniet.\nArchitecto voluptas odio.", + "pastOrPresentOrders": "Iure sequi ex praesentium reiciendis nemo.\nIpsam quaerat officia harum.\nPerferendis dolores repellat ipsum.", "commercialAndIndustrialPurposes": [ { - "uuid": "6f9c0c15-97ea-40d3-9475-5c414c442796", + "uuid": "dcefa5b1-06d4-4b63-b3f6-0a45df5be544", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "357a7d3d-18c4-4f80-b560-66df81e5e986", + "uuid": "a937299a-60e3-48d9-b070-6f409a9643a1", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "0121e100-58de-449e-8ec4-161f35ea2981", + "uuid": "3d606f24-9ee8-4be8-ab8f-15a5a5fcde90", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { - "uuid": "4bc5371c-9f11-4937-9a3c-7c472c2840cd", + "uuid": "e8e1b6e0-1ac3-48f9-be14-f1432f3243ef", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true } ] - }, - { - "uuid": "2e23810c-d90a-4561-a4a1-16923c4dbae0", - "siteRegistry": false, - "dateReceived": "2020-11-28", - "dateCompleted": "2019-09-01", - "dateEntered": "2014-06-09", - "dateRegistrar": "2021-05-23", - "dateLocalAuthorityReceived": "2022-07-17", - "summary": "Minus et quibusdam neque id dolores ut officia.", - "informationUsed": "Assumenda corporis earum illo repudiandae.\nCum expedita voluptates excepturi perspiciatis officia.\nVoluptate sapiente labore aliquid eius pariatur eius sint.", - "pastOrPresentOrders": "Mollitia laboriosam quibusdam accusantium.\nUllam natus nesciunt aperiam voluptatum eaque libero eveniet.\nCorrupti eum dolorem dolore aperiam.", - "commercialAndIndustrialPurposes": [ - { - "uuid": "ba0a8d75-23c3-4ad7-b275-b46cc5ce800d", - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false - }, - { - "uuid": "1539c50a-32dd-494d-b375-1af5226201b6", - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false - }, - { - "uuid": "2c6a166e-1cb2-4774-8ff8-b6e177c1f041", - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false - } - ] } ], "activityLog": [ { - "uuid": "397a18da-f969-4972-8ec5-23fa7cf7cd8c", - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "MEDHURST VLADIMIR", - "timestamp": "2022-05-21" - }, - { - "uuid": "201b8d80-793c-44f5-b1b5-0cdb9b29d4a8", - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "LEGROS SYLVIA", - "timestamp": "2021-10-26" - }, - { - "uuid": "6fd4134c-2be3-41fb-9b10-fce6d82f59c0", - "siteRegistry": true, + "uuid": "336f211a-bc1a-493b-86f0-c85d78f1c4de", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "NADER JOSHUA", - "timestamp": "2015-05-18" + "user": "LUETTGEN BRANT", + "timestamp": "2017-04-17" }, { - "uuid": "6aefe06a-7edf-4eaf-be31-b6f583fa055f", + "uuid": "5aebc668-3c91-4690-bd73-e38f6c908d59", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "REINGER PATRICK", - "timestamp": "2015-10-09" - }, - { - "uuid": "70a19aad-84a0-4fe4-85a8-7f9caa7d4c2a", - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "TOY JAVONTE", - "timestamp": "2016-04-18" + "user": "KSHLERIN GILBERT", + "timestamp": "2018-02-16" }, { - "uuid": "397a3211-0f40-4110-82d3-79e621e4621d", + "uuid": "cb23dc36-2c8d-4d8d-be0a-479a2b19c2cc", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "GUTMANN KAREEM", - "timestamp": "2020-05-03" + "user": "DAVIS ZACKARY", + "timestamp": "2016-09-08" }, { - "uuid": "1b382698-849d-44c2-819b-77b5b3547dd2", - "siteRegistry": false, + "uuid": "ecbfdf54-d60b-4068-8b47-e9128c1a19e8", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "MAYER KENYA", - "timestamp": "2023-07-02" + "user": "BOGAN MISAEL", + "timestamp": "2015-11-21" }, { - "uuid": "e2815151-123f-417e-9bf0-08da5c9ac30e", - "siteRegistry": false, + "uuid": "f7c7a069-2708-46d8-80a4-82639ab388c5", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "LAKIN JAMARCUS", - "timestamp": "2018-03-18" + "user": "WISOZK ABDUL", + "timestamp": "2022-04-14" }, { - "uuid": "6b5096d2-3636-4c4b-9355-4352a7d02fd5", + "uuid": "54279bee-9883-4ad8-808b-be998a99c833", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "BROWN HOYT", - "timestamp": "2015-01-14" + "user": "CRUICKSHANK WYMAN", + "timestamp": "2016-10-03" } ], "associatedSites": [ { - "uuid": "68354cab-a47e-4acb-a0f6-5e0bb0c03bd4", - "dateNoted": "2019-08-04", + "uuid": "8d7b8390-8bea-4f04-92f1-747f66f89a73", + "dateNoted": "2020-06-22", "notes": "", - "parcelID": "19359", - "siteID": "20059", + "parcelID": "20984", + "siteID": "20880", "siteRegistry": false }, { - "uuid": "fd85c589-9776-4a97-be09-3d8018d8eb98", - "dateNoted": "2020-12-15", + "uuid": "28754cc7-875a-44b4-8463-f45a63c91f23", + "dateNoted": "2021-03-24", "notes": "", - "parcelID": "20941", - "siteID": "18183", + "parcelID": "19936", + "siteID": "19262", "siteRegistry": true }, { - "uuid": "d99ac1b0-06ec-49b1-8c77-f67f3a5f42dc", - "dateNoted": "2018-12-19", + "uuid": "92524016-5e94-417a-b503-5f2ec8b0dfd9", + "dateNoted": "2022-11-02", "notes": "", - "parcelID": "17102", - "siteID": "20059", - "siteRegistry": false + "parcelID": "16376", + "siteID": "17443", + "siteRegistry": true } ] }, { - "uuid": "4c8f72f1-c28f-48ae-a57d-7b61200b2b3d", - "siteID": 16186, - "address": "16958 Mante Tunnel", - "latitude": 48.3209, - "longitude": -125.8071, - "lastUpdated": "2018-05-27", - "city": "Florianmouth", - "region": " North Coast", - "victoriaFile": "26250-20/3593", + "uuid": "09bceb7f-9603-4d6a-9b2a-ec1f80165b30", + "siteID": 16877, + "address": "7494 Baby Knolls", + "latitude": 56.6259, + "longitude": -123.9698, + "lastUpdated": "2017-08-03", + "city": "Port Amanichester", + "region": "Mainland/Southwest", + "victoriaFile": "26250-20/4839", "regionalFile": "N/A", "parcelIDs": [ - 1891256, - 9723101, - 2344993, - 1993849, - 4341595 + 8337835, + 3632235, + 4043999, + 3621566, + 6313207 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "ff5d9baa-9d08-46a1-ba81-960c2f13b1f3", - "createdAt": "2019-12-04", - "completed": "2021-02-06", - "initiated": "2023-05-20", - "ministryContact": "JASKOLSKI ARTURO", + "uuid": "7c48f0e2-962c-4c7c-9473-8d88f266e888", + "createdAt": "2015-07-02", + "completed": "2021-01-16", + "initiated": "2023-07-28", + "ministryContact": "MCCULLOUGH FLETCHER", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -45291,26 +52528,72 @@ ], "notationParticipants": [ { - "uuid": "1b4ba3d3-bd00-4f7d-9b65-64823f2f4144", - "name": "SHELL CANADA PRODUCTS", + "uuid": "99fe1f13-cde8-42fc-b682-f8b6221eb716", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "uuid": "9d2265e0-4128-4104-9cf1-a6f4644ddc6b", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "6d528ea2-3860-4733-81e2-3ce0d5fe8679", + "uuid": "b2e8324b-6de8-4ea9-8450-fe246c6928b4", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true + }, + { + "uuid": "b118aa2f-9ebe-4d8c-a4ff-8d53e0c3a9b5", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "uuid": "3f05d0b8-206c-491b-b4fe-1c454cca5664", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "uuid": "edd0277a-819e-474b-9220-14732a0628a9", + "createdAt": "2019-02-02", + "completed": "2022-02-21", + "initiated": "2022-03-10", + "ministryContact": "MOEN VERDA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "uuid": "5ffef475-82c7-4327-b5d5-d1303b17bbf4", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "8a7531cb-3760-4804-ad03-dbde40feb131", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false } ], "siteRegistry": true }, { - "uuid": "39341ab8-f592-4128-bd60-583b9f70a142", - "createdAt": "2018-06-07", - "completed": "2021-02-08", - "initiated": "2020-06-12", - "ministryContact": "JOHNSON STEVE", + "uuid": "6783c6e7-02a2-4724-ba17-6dd798b53945", + "createdAt": "2020-07-20", + "completed": "2022-02-18", + "initiated": "2017-04-18", + "ministryContact": "BERNIER RYLEE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -45319,45 +52602,118 @@ ], "notationParticipants": [ { - "uuid": "ad6ac084-dfc7-4f15-82da-b59e9be169cd", + "uuid": "15ae8dfc-86e4-4437-9139-9dafbd8f9699", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "d7da425a-daa8-4317-aeee-a556eb41d2ac", + "uuid": "bf431859-5e0c-4d81-b199-2caf51344a17", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "8b3ef259-bdd1-4d3c-8bf4-b591597fc43c", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "7693fb86-99c1-445e-8e99-96bf4b3f4111", + "uuid": "4d89b5ac-503e-45a7-81f6-4b0828641e12", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "uuid": "e89e7318-ff87-4dc7-9c97-5b19901070dc", + "createdAt": "2018-10-04", + "completed": "2023-08-12", + "initiated": "2014-01-24", + "ministryContact": "KOHLER HOWELL", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "uuid": "8e7dcd51-acf8-4c00-be0c-ed69a1cadd56", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "dc0eda3b-5b67-4a67-8c75-0d938ee339b9", + "uuid": "d7a35d6c-0d33-4502-9136-37cd4a4f5c86", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "d5ae93b0-934f-4244-9c85-5b8e9937567c", + "uuid": "252856e3-aefd-4d8f-8ade-71f948839d33", "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "uuid": "fab7ba47-e3a4-4fa5-ad53-c7627ed17fef", + "createdAt": "2020-03-07", + "completed": "2019-03-07", + "initiated": "2019-04-19", + "ministryContact": "WUCKERT HASKELL", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "uuid": "10f4d2b7-f7e2-42f0-91fc-3261b5fefd78", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "uuid": "3536df85-5a44-43ac-a2cf-70375576b7b9", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true + }, + { + "uuid": "394f66b3-5498-4d50-a6f4-bf2c7a4fc123", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false } ], "participants": [ { - "uuid": "2c2be844-19de-4570-8af9-62fcbed24739", - "name": "AMET, DOLOR SIT", - "endDate": "2022-09-29", - "startDate": "2014-06-14", + "uuid": "ce4fc5ca-591d-4187-9fd0-ed2ad35383d5", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2016-09-27", + "startDate": "2021-05-04", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "uuid": "a8ff22d5-862f-41da-842e-5a6fb1c63b9b", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2019-12-31", + "startDate": "2017-09-27", "notes": "", "roles": [ "ORGANIZATION" @@ -45365,303 +52721,349 @@ "siteRegistry": true }, { - "uuid": "185d2ce0-fb12-4d1a-9147-b44f0a1e6ae6", - "name": "AMET, DOLOR SIT", - "endDate": "2017-08-31", - "startDate": "2022-08-27", + "uuid": "112c94ff-05c8-4432-add8-bb4f505d4df5", + "name": "IPSUM", + "endDate": "2019-03-08", + "startDate": "2016-03-31", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": true }, { - "uuid": "0ff19e4d-6320-4b09-8aae-e3578467ba0f", + "uuid": "23e11545-74c5-47e4-8071-c61cbd09a314", "name": "SHELL CANADA PRODUCTS", - "endDate": "2015-10-19", - "startDate": "2014-07-30", + "endDate": "2020-03-04", + "startDate": "2020-08-03", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": false }, { - "uuid": "61ff5828-67f1-4ed1-b1f0-d6fc79144007", - "name": "AMET, DOLOR SIT", - "endDate": "2017-07-03", - "startDate": "2019-01-05", + "uuid": "54222b5c-390e-4b57-acd4-1e111995b62f", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2022-07-24", + "startDate": "2017-04-14", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false } ], - "suspectLandUses": [ + "documents": [ { - "uuid": "cf496826-639c-44f5-9bd5-7e48a2a58720", + "uuid": "13aa3fab-178e-41ab-9504-6eba92973486", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-04-25 (described on Site Profile dated 2017-04-25)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "documentDate": "2014-02-02", + "receivedDate": "2020-05-01", + "uploadedDate": "2019-04-03", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "151c3cec-2969-416f-8a37-a679493e0d32", + "name": "AMET, DOLOR SIT", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "feedccc0-4cb8-4545-af3d-4ac6fabd44dd", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "7b52b76c-c0f3-4faa-8bfb-50a76b6e0145", + "name": "AMET, DOLOR SIT", + "siteRegistry": false, + "role": "AUTHOR" + } + ] }, { - "uuid": "09a14826-6299-49c9-8db2-8b5c079b8e6e", + "uuid": "da2d0dcf-3fba-4965-9533-0e0b810f1545", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-02-04 (described on Site Profile dated 2022-02-04)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "documentDate": "2022-05-28", + "receivedDate": "2020-07-27", + "uploadedDate": "2020-10-19", + "title": "Preliminary Site Investigation, Detailed Site Investigation and Remedial Plan for the Management Area adjacent to the Shell Site at 1503 West 41st Ave", + "participants": [ + { + "uuid": "6878a2cf-7704-4c5f-bcf3-72a1aac77adb", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "0710e006-d7f8-4f95-87d1-1192a0460ca5", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "54380fc9-6bc3-4c11-bc78-7bd21b8fc623", + "name": "AMET, DOLOR SIT", + "siteRegistry": false, + "role": "AUTHOR" + } + ] + }, + { + "uuid": "d6b02c02-7ec0-4d29-9133-29ae9472d19e", + "siteRegistry": true, + "documentDate": "2022-11-30", + "receivedDate": "2021-05-17", + "uploadedDate": "2017-04-04", + "title": "Preliminary Site Investigation, Detailed Site Investigation and Remedial Plan for the Management Area adjacent to the Shell Site at 1503 West 41st Ave", + "participants": [ + { + "uuid": "15347eaa-288e-4884-92bb-8cfacc95d412", + "name": "IPSUM", + "siteRegistry": false, + "role": "AUTHOR" + } + ] + }, + { + "uuid": "702cbf7a-7bae-4e77-8f0d-7593b144d5b9", + "siteRegistry": true, + "documentDate": "2023-05-24", + "receivedDate": "2022-08-03", + "uploadedDate": "2018-06-15", + "title": "Summary of Site Conditions, 1537 W 41st Avenue, Vancouver", + "participants": [ + { + "uuid": "b00ba00d-b4da-43e0-a10d-95a11c4f26c3", + "name": "IPSUM", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "e49cbe57-0372-40c8-a155-f1dd63596c6f", + "name": "AMET, DOLOR SIT", + "siteRegistry": false, + "role": "AUTHOR" + } + ] } ], - "parcelDescriptions": [ + "suspectLandUses": [ { - "uuid": "feb07064-53d2-43a6-9892-2be1a68fbd91", + "uuid": "6d0a6cce-6a17-4506-b7c9-7269dc9336ae", "siteRegistry": false, - "dateNoted": "2019-09-13", - "parcelID": "15204", - "crownLandUsePIN": "18545", - "crownLandFileNumber": "15329", - "landDescription": "LOT 2 OF LOT 1 BLOCK 1 DISTRICT LOT 4 PLAN 4316" + "notes": "INSERTED FOR SITE PROFILE DATED 2016-06-21 (described on Site Profile dated 2016-06-21)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "uuid": "59b8881e-51e2-48a8-8ce6-d4cb815a0e7d", + "uuid": "65f84162-b0b9-41c7-8205-1db75f77fa22", "siteRegistry": true, - "dateNoted": "2018-09-03", - "parcelID": "16145", - "crownLandUsePIN": "18688", - "crownLandFileNumber": "18268", - "landDescription": "LOT 5 OF LOT 5 BLOCK 4 DISTRICT LOT 4 PLAN 5387" - }, + "notes": "INSERTED FOR SITE PROFILE DATED 2016-10-24 (described on Site Profile dated 2016-10-24)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + } + ], + "parcelDescriptions": [ { - "uuid": "fa1a962e-10bc-461e-946e-d803c54e9400", + "uuid": "672b7dd7-38fc-4f06-b5a0-91d9e4e4fdb7", "siteRegistry": true, - "dateNoted": "2016-02-26", - "parcelID": "17039", - "crownLandUsePIN": "20113", - "crownLandFileNumber": "15530", - "landDescription": "LOT 5 OF LOT 1 BLOCK 4 DISTRICT LOT 2 PLAN 9711" + "dateNoted": "2017-08-14", + "parcelID": "18577", + "crownLandUsePIN": "15524", + "crownLandFileNumber": "18858", + "landDescription": "LOT 4 OF LOT 2 BLOCK 1 DISTRICT LOT 5 PLAN 6279" }, { - "uuid": "fb9bf95f-29d1-4674-862d-9af0683c0856", - "siteRegistry": true, - "dateNoted": "2017-11-07", - "parcelID": "18219", - "crownLandUsePIN": "17576", - "crownLandFileNumber": "18304", - "landDescription": "LOT 4 OF LOT 1 BLOCK 5 DISTRICT LOT 3 PLAN 8954" + "uuid": "f6773223-d472-4da0-89d1-4e0558e41ce3", + "siteRegistry": false, + "dateNoted": "2017-12-20", + "parcelID": "17784", + "crownLandUsePIN": "20114", + "crownLandFileNumber": "19983", + "landDescription": "LOT 5 OF LOT 2 BLOCK 4 DISTRICT LOT 1 PLAN 3114" }, { - "uuid": "2517f105-1e08-408a-98e0-b5f4d3d1b33d", + "uuid": "a3f81ba9-d34f-418a-988b-593c18023e6c", "siteRegistry": true, - "dateNoted": "2018-03-08", - "parcelID": "20365", - "crownLandUsePIN": "17246", - "crownLandFileNumber": "20483", - "landDescription": "LOT 2 OF LOT 2 BLOCK 5 DISTRICT LOT 2 PLAN 5097" + "dateNoted": "2022-10-03", + "parcelID": "18101", + "crownLandUsePIN": "16207", + "crownLandFileNumber": "20242", + "landDescription": "LOT 5 OF LOT 2 BLOCK 3 DISTRICT LOT 3 PLAN 5942" + }, + { + "uuid": "43d6f97f-cadc-4711-8fbd-e2d2d34b6103", + "siteRegistry": false, + "dateNoted": "2022-06-28", + "parcelID": "18908", + "crownLandUsePIN": "15771", + "crownLandFileNumber": "20327", + "landDescription": "LOT 3 OF LOT 3 BLOCK 1 DISTRICT LOT 5 PLAN 9236" } ], "siteDisclosures": [ { - "uuid": "7db7e484-8a39-412b-a432-6858e191f738", + "uuid": "86fe4d05-1862-4769-9bcf-9a381f8b6ffb", "siteRegistry": true, - "dateReceived": "2019-12-12", - "dateCompleted": "2014-07-21", - "dateEntered": "2021-03-10", - "dateRegistrar": "2019-10-16", - "dateLocalAuthorityReceived": "2017-05-01", - "summary": "Ea expedita nemo.", - "informationUsed": "Qui placeat repellendus voluptate alias dolorum repellat error velit vero.\nPorro libero reprehenderit aut saepe rerum distinctio.\nQuos ipsam tempora inventore rerum.\nPossimus earum deserunt magnam repellat.", - "pastOrPresentOrders": "Sint error facere totam.\nNihil eaque provident recusandae deleniti quibusdam placeat molestias perspiciatis.", + "dateReceived": "2020-12-10", + "dateCompleted": "2015-09-19", + "dateEntered": "2015-09-09", + "dateRegistrar": "2017-10-31", + "dateLocalAuthorityReceived": "2018-12-07", + "summary": "Neque laudantium dolorum laudantium consequatur enim iste.\nDolorum itaque expedita quam voluptatibus libero quae officia est.\nImpedit pariatur sit aperiam praesentium dolore sapiente officiis debitis minima.", + "informationUsed": "Necessitatibus voluptatibus dolorum repellat.\nFugit similique harum dolor est qui facere.\nAspernatur nesciunt animi omnis error veritatis modi.\nAccusamus tenetur hic.\nCommodi modi exercitationem.", + "pastOrPresentOrders": "Minima cum eveniet debitis nam ex.\nNatus optio labore vel.\nAd voluptate modi veritatis iusto ut ut optio.", "commercialAndIndustrialPurposes": [ { - "uuid": "b184c9c5-315a-4df5-9862-e750dc3d1b19", - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false + "uuid": "c355fa0b-3c0f-4eab-9505-2d4e865951da", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true }, { - "uuid": "130be439-41df-4224-aceb-b842364f386c", + "uuid": "f214878b-1c26-4f66-baf7-140fc9618dd9", "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true }, { - "uuid": "d919d641-bcb3-4ef9-8f6c-2d557a319852", + "uuid": "4ff9bc2d-2406-41eb-867c-8e7d884603da", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false }, { - "uuid": "f25e3f8a-2571-4b91-8335-a7757ac7ddde", + "uuid": "e20145ba-7c3d-4dcf-9a00-f842dc82715a", "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true } ] }, { - "uuid": "a3d02b44-064e-4b6b-8798-109cd74bc287", + "uuid": "24ff4e82-6941-4163-8713-0ca10e14d7e7", "siteRegistry": false, - "dateReceived": "2020-09-15", - "dateCompleted": "2023-07-31", - "dateEntered": "2016-07-13", - "dateRegistrar": "2016-10-17", - "dateLocalAuthorityReceived": "2019-05-27", - "summary": "Expedita magnam repellat error iure.", - "informationUsed": "Sequi voluptatibus veritatis ipsum totam adipisci.\nNam numquam mollitia recusandae enim assumenda omnis impedit nisi odio.\nAb debitis ducimus assumenda architecto asperiores.", - "pastOrPresentOrders": "Facere dignissimos laudantium.\nNumquam quasi recusandae quibusdam delectus est facilis totam.", + "dateReceived": "2022-11-14", + "dateCompleted": "2016-06-10", + "dateEntered": "2016-08-03", + "dateRegistrar": "2014-11-25", + "dateLocalAuthorityReceived": "2018-10-26", + "summary": "Aspernatur rerum error.\nOfficiis necessitatibus eligendi eum dolores maiores fuga cumque.", + "informationUsed": "Deleniti assumenda optio nesciunt pariatur repellat iste totam nisi.\nOdit quisquam quis cupiditate modi occaecati.\nIpsum ex in molestiae voluptatem eius.\nId esse iusto sequi cum ducimus repudiandae laboriosam asperiores.", + "pastOrPresentOrders": "Ex quae provident sequi iure quis assumenda deleniti.\nLabore cupiditate ratione necessitatibus inventore nesciunt nobis suscipit architecto.", "commercialAndIndustrialPurposes": [ { - "uuid": "8397027a-eef9-4d6a-94f4-ce11350c7ef0", - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true - }, - { - "uuid": "a9c07ac7-4570-4cfd-84a3-1911ee0aa9cf", - "scheduleReference": "F2*", + "uuid": "9dece62d-1101-4a8e-b9fc-386cb839395d", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { - "uuid": "b199a5c3-6c91-4596-b9c3-d28d6ff63eb1", + "uuid": "cfc268ef-aef8-4258-866b-5f86df555240", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { - "uuid": "2655aa14-3cb0-46ea-b15d-22d6770599a0", + "uuid": "44614e7d-f1d6-4338-8cc9-6ddec39c471d", "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true } ] } ], "activityLog": [ { - "uuid": "e5e3fd53-70f3-446c-8e14-e8af498b7c92", - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "ZIEME MILES", - "timestamp": "2019-12-01" - }, - { - "uuid": "62817fda-f5f7-4fdc-ba72-af6498375a8e", - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "KUHIC EVELINE", - "timestamp": "2023-03-28" - }, - { - "uuid": "26ff091b-641e-4f7d-8376-96e11869b95c", - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "KEMMER ALIYAH", - "timestamp": "2021-09-13" - }, - { - "uuid": "18a167a5-b6b3-4218-966c-3ff5e52b0927", + "uuid": "1b73888d-9ac7-492e-ac55-578b402c0fc0", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "REILLY DANA", - "timestamp": "2013-12-22" + "user": "CRONIN SAIGE", + "timestamp": "2021-11-15" }, { - "uuid": "cad18969-da61-422d-8011-3de42d8ad8b6", + "uuid": "64ae47d5-733e-4c58-9421-c66dc52b9daa", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "ABERNATHY MYRTIS", - "timestamp": "2020-07-03" - }, - { - "uuid": "e1139830-ba22-4d13-b2ad-deb965cb9e73", - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "WILLMS JESSE", - "timestamp": "2015-05-16" - }, - { - "uuid": "7f84a626-719c-44a6-8c3f-9cb1620f5683", - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "FLATLEY BRIELLE", - "timestamp": "2023-08-15" + "user": "KIHN ANGELINE", + "timestamp": "2019-08-11" }, { - "uuid": "967f6e22-b001-4597-a094-9b64909cc0f5", + "uuid": "3264f6ca-3d48-4e73-9510-9adf57d39f39", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "DECKOW FOREST", - "timestamp": "2017-09-16" + "user": "JACOBI REYNA", + "timestamp": "2018-05-10" }, { - "uuid": "9d27f561-8a69-4f22-92df-491bedb33cd1", + "uuid": "1b8e5768-cb37-47a5-b453-167d8e2b77b7", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "STREICH BRYON", - "timestamp": "2015-04-07" + "user": "PADBERG PRINCE", + "timestamp": "2015-08-05" }, { - "uuid": "7cbb411a-9175-4f48-930f-fbc4e5b0e090", + "uuid": "016319c6-9124-4e5a-a13f-64099a88ea83", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "ULLRICH DEMARCUS", - "timestamp": "2016-12-01" + "user": "LUEILWITZ JUNE", + "timestamp": "2016-05-13" } ], "associatedSites": [ { - "uuid": "606e723c-6df6-42c4-a6b7-b30702cc9e47", - "dateNoted": "2020-06-02", + "uuid": "7ba93db9-db48-4880-a998-d21935ca3fe7", + "dateNoted": "2020-05-17", "notes": "", - "parcelID": "16126", - "siteID": "16071", + "parcelID": "18271", + "siteID": "18872", "siteRegistry": false }, { - "uuid": "5cd4099e-4a89-401c-bc51-02c409519bcb", - "dateNoted": "2014-08-08", + "uuid": "30c871fb-8c32-4878-8988-562931fd4fcf", + "dateNoted": "2016-12-14", "notes": "", - "parcelID": "20614", - "siteID": "16154", - "siteRegistry": false + "parcelID": "16416", + "siteID": "15747", + "siteRegistry": true }, { - "uuid": "d16baf63-4d16-42bb-b086-437f8afa1494", - "dateNoted": "2014-04-12", + "uuid": "f8c62f08-b0b4-4d22-955b-d4020f57c30e", + "dateNoted": "2014-08-24", "notes": "", - "parcelID": "16905", - "siteID": "17371", + "parcelID": "19545", + "siteID": "19111", "siteRegistry": false } ] }, { - "uuid": "622f848f-017e-49d1-9fc7-712f7a367caa", - "siteID": 20607, - "address": "552 Cassin Heights", - "latitude": 51.6901, - "longitude": -128.7784, - "lastUpdated": "2016-11-27", - "city": "Arvada", - "region": "Cariboo", - "victoriaFile": "26250-20/13628", + "uuid": "bf2bf548-caf2-4e8f-b988-a8211f4dcd0d", + "siteID": 17454, + "address": "450 Morissette Junction", + "latitude": 48.6966, + "longitude": -125.8011, + "lastUpdated": "2021-08-31", + "city": "New Efrain", + "region": "Mainland/Southwest", + "victoriaFile": "26250-20/6104", "regionalFile": "N/A", "parcelIDs": [ - 311745, - 1174191, - 3443807, - 9596125, - 9363176 + 7871564, + 7999463, + 7736518, + 418643, + 5076594 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "20017b23-106c-44ba-b4ba-78ba53e6b419", - "createdAt": "2016-09-10", - "completed": "2018-07-04", - "initiated": "2020-05-17", - "ministryContact": "OKUNEVA JUSTUS", + "uuid": "ba5965a7-bcd2-4ea5-b6c0-3f9fe445c217", + "createdAt": "2017-11-08", + "completed": "2021-08-24", + "initiated": "2021-11-24", + "ministryContact": "LAKIN ANNIE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -45670,44 +53072,176 @@ ], "notationParticipants": [ { - "uuid": "0408b79d-2015-4cd1-a357-967b6aaf0d02", + "uuid": "b167fe48-e21d-4510-9ded-96dd0aa6b2e7", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "uuid": "347d4073-7f79-4cd4-98ce-fa946a6bc79f", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "74f30f77-cce7-4e90-a8e0-3bf32c53f77e", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "3cd62391-fc71-4c5b-af42-024cf2af2ac2", + "uuid": "97911b63-1a1a-42c0-a4ed-ea3a7d29db57", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "uuid": "2c797978-4e0e-4d8a-bb63-c6fe2f333c57", + "createdAt": "2015-03-10", + "completed": "2022-10-02", + "initiated": "2021-09-16", + "ministryContact": "MRAZ LEMPI", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "uuid": "34bc9f15-377f-4d73-8e9f-aa8c35dd50bc", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "60acd584-11b0-4b35-ba19-a9242509ae36", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "d00957da-15e8-4045-a64c-b0f46124f32d", "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "ad75f8c8-a0f8-49fc-80e3-c117103cf48d", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "03546563-5aaa-4ba9-bfcc-5416bb4204a3", + "uuid": "3b225208-ec44-4b54-878f-140af3ee9a7a", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "uuid": "d7df6497-1b98-464f-aa88-31adb3f7fa36", + "createdAt": "2015-11-26", + "completed": "2019-08-26", + "initiated": "2021-02-24", + "ministryContact": "HERZOG PETER", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "uuid": "bebc17f2-3d55-4fac-9372-6cad30cdd843", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "ad080efe-e5dc-4303-8bd8-7ac11338fd3f", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "1ead0079-ab38-4215-a020-47be7e756b37", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "92fbe217-b577-48c6-8af5-32a390cebe1e", "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "uuid": "72222a18-a931-4a76-a9a2-2224ef346506", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "uuid": "785ee1ab-6ad6-45d4-948d-29e3c9b54772", + "createdAt": "2023-03-16", + "completed": "2023-09-22", + "initiated": "2021-11-24", + "ministryContact": "ZIEME ROXANNE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "uuid": "c268bf61-611b-490a-885f-228ab4e4aa3b", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": true }, { - "uuid": "9342ab76-d8a6-4e27-8815-42b2e56e00da", + "uuid": "cc921e8c-4440-4c7b-a047-3dcb1a90d819", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "1f04a6fa-e626-4bca-8b7a-e429e8c03bc5", + "uuid": "74c0448e-729a-4e84-9921-07deb8eb71b3", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "uuid": "d7d23f2f-5061-4a9f-bcd9-b08a25026aea", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "uuid": "80e39f66-361b-449f-a118-ec18e9cf16cd", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "a234b011-8754-4050-9ff4-03e5851b368e", - "createdAt": "2015-07-15", - "completed": "2017-07-05", - "initiated": "2014-08-07", - "ministryContact": "DICKI KAYLEY", + "uuid": "2501f715-a2d4-4e6b-abf7-4b1bbcd370b4", + "createdAt": "2022-03-28", + "completed": "2020-11-30", + "initiated": "2015-09-20", + "ministryContact": "BARTELL EMMITT", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -45716,16 +53250,34 @@ ], "notationParticipants": [ { - "uuid": "d9b231de-01e8-4ac4-a709-5251170cc821", - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "7fc3f7f8-6774-4b3f-86ed-80e3cb9435ca", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "uuid": "ee66588a-1e55-40f5-9f38-8a9ee4e92a68", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "7e18b041-8f83-4553-bfc3-984a2505f75f", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "4015d513-c8da-4eba-803f-4d10c93760be", + "uuid": "fdccf62f-7686-484b-8ea8-6e50e5611148", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false + }, + { + "uuid": "18cf7637-7c03-4d52-8ab4-fa24476e745c", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true } ], "siteRegistry": false @@ -45733,10 +53285,10 @@ ], "participants": [ { - "uuid": "e481b797-266d-46d7-a7e8-a0b5583ec624", - "name": "SHELL CANADA PRODUCTS", - "endDate": "2016-05-24", - "startDate": "2014-05-25", + "uuid": "91159b9f-1e2e-458e-970a-f6b145464932", + "name": "AMET, DOLOR SIT", + "endDate": "2018-06-04", + "startDate": "2014-03-06", "notes": "", "roles": [ "EMPLOYEE" @@ -45744,155 +53296,181 @@ "siteRegistry": true }, { - "uuid": "e6178e52-8713-4e9c-b955-80e2e8f059a9", + "uuid": "9064503d-c141-4743-8ccc-0aa686bac0ae", "name": "IPSUM", - "endDate": "2015-08-10", - "startDate": "2017-08-18", + "endDate": "2023-03-26", + "startDate": "2014-08-06", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false + } + ], + "documents": [ + { + "uuid": "b65af844-31ad-4ec5-a829-318c05beb8bd", + "siteRegistry": false, + "documentDate": "2015-11-05", + "receivedDate": "2019-02-19", + "uploadedDate": "2014-05-28", + "title": "Summary of Site Conditions, 1537 W 41st Avenue, Vancouver", + "participants": [ + { + "uuid": "0566b2b3-4f40-486b-ba3b-278be66b828e", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": true, + "role": "AUTHOR" + } + ] }, { - "uuid": "7b4f7ceb-a8cb-42bc-a740-b975e5b7a111", - "name": "IPSUM", - "endDate": "2017-07-11", - "startDate": "2016-06-23", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": false + "uuid": "9bf40581-b151-4255-b30b-c30fbf960687", + "siteRegistry": true, + "documentDate": "2015-10-08", + "receivedDate": "2023-08-30", + "uploadedDate": "2021-01-30", + "title": "Preliminary Site Investigation, Detailed Site Investigation and Remedial Plan for the Management Area adjacent to the Shell Site at 1503 West 41st Ave", + "participants": [ + { + "uuid": "335949e5-c979-4597-8032-ae7a0b627954", + "name": "AMET, DOLOR SIT", + "siteRegistry": false, + "role": "AUTHOR" + } + ] }, { - "uuid": "7c3589ef-7901-41cf-ac10-720d98e75c2e", - "name": "IPSUM", - "endDate": "2019-06-14", - "startDate": "2022-07-19", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": false + "uuid": "f69469e1-f0a8-48d9-b597-4b0d46b92e32", + "siteRegistry": true, + "documentDate": "2019-08-18", + "receivedDate": "2015-11-14", + "uploadedDate": "2019-11-28", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "37bb9ab9-f66a-4ab6-a926-c7c1dd5c5e88", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "b37fe368-f759-4acd-8472-a1d5143adc03", + "name": "AMET, DOLOR SIT", + "siteRegistry": false, + "role": "AUTHOR" + } + ] }, { - "uuid": "7fccb9ae-384b-4d5e-9177-1988d7892cb8", - "name": "AMET, DOLOR SIT", - "endDate": "2015-01-15", - "startDate": "2022-06-23", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": true + "uuid": "22857bfa-b176-41d4-aa3f-2134ceb0c5f0", + "siteRegistry": false, + "documentDate": "2018-10-21", + "receivedDate": "2015-08-12", + "uploadedDate": "2023-04-15", + "title": "Summary of Site Conditions, 1537 W 41st Avenue, Vancouver", + "participants": [ + { + "uuid": "a34a1458-37cd-4af3-9868-4cc7a4d73070", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": true, + "role": "AUTHOR" + } + ] + }, + { + "uuid": "0cd482d8-c840-4f73-9118-c986436172ac", + "siteRegistry": true, + "documentDate": "2019-12-18", + "receivedDate": "2022-12-17", + "uploadedDate": "2020-10-23", + "title": "Preliminary Site Investigation, Detailed Site Investigation and Remedial Plan for the Management Area adjacent to the Shell Site at 1503 West 41st Ave", + "participants": [ + { + "uuid": "db714663-b801-4ec1-a5bb-f750224762ee", + "name": "AMET, DOLOR SIT", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "3cfb0c47-9a5c-4ab6-8ac3-a60b79116bbe", + "name": "AMET, DOLOR SIT", + "siteRegistry": true, + "role": "AUTHOR" + } + ] } ], "suspectLandUses": [ { - "uuid": "d0ff3c0d-7a5f-4f6c-8e2c-2f2dfbde0fbd", - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-10-09 (described on Site Profile dated 2019-10-09)", + "uuid": "6cdfbe22-05ad-40f7-be84-da7f430fdef6", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2016-05-30 (described on Site Profile dated 2016-05-30)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "uuid": "3fedaa11-2566-4fe9-bbab-41f0a0e71e6f", + "uuid": "ced99a75-0eb5-4f68-967b-f34a64fc5ebe", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-08-04 (described on Site Profile dated 2021-08-04)", + "notes": "INSERTED FOR SITE PROFILE DATED 2022-08-17 (described on Site Profile dated 2022-08-17)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "uuid": "b1b15620-9e70-4748-b480-4d80e31be3a2", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2019-07-31 (described on Site Profile dated 2019-07-31)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], "parcelDescriptions": [ { - "uuid": "4209c623-6106-45a4-9e68-e0a792208deb", + "uuid": "03c48eea-a563-40d5-ac62-f7a1ca85ae78", + "siteRegistry": false, + "dateNoted": "2017-08-21", + "parcelID": "16267", + "crownLandUsePIN": "17515", + "crownLandFileNumber": "20328", + "landDescription": "LOT 3 OF LOT 2 BLOCK 5 DISTRICT LOT 4 PLAN 9101" + }, + { + "uuid": "5ffe73ea-fdcf-438c-bcca-907c9930ad9f", "siteRegistry": true, - "dateNoted": "2023-06-29", - "parcelID": "17756", - "crownLandUsePIN": "17672", - "crownLandFileNumber": "17875", - "landDescription": "LOT 1 OF LOT 4 BLOCK 2 DISTRICT LOT 2 PLAN 7504" + "dateNoted": "2023-04-20", + "parcelID": "17294", + "crownLandUsePIN": "18009", + "crownLandFileNumber": "20427", + "landDescription": "LOT 3 OF LOT 1 BLOCK 2 DISTRICT LOT 5 PLAN 6175" }, { - "uuid": "343caa01-f6f2-40ec-8860-6a9e10724d21", - "siteRegistry": false, - "dateNoted": "2016-09-21", - "parcelID": "19254", - "crownLandUsePIN": "18283", - "crownLandFileNumber": "18979", - "landDescription": "LOT 1 OF LOT 4 BLOCK 1 DISTRICT LOT 3 PLAN 8563" + "uuid": "5be2fc21-ee8e-4948-a357-ea34375abd92", + "siteRegistry": true, + "dateNoted": "2018-11-26", + "parcelID": "20487", + "crownLandUsePIN": "19168", + "crownLandFileNumber": "16707", + "landDescription": "LOT 5 OF LOT 5 BLOCK 4 DISTRICT LOT 5 PLAN 3207" } ], "siteDisclosures": [ { - "uuid": "b9ac311f-80f4-4674-af36-6470cdd10c29", - "siteRegistry": false, - "dateReceived": "2022-01-04", - "dateCompleted": "2014-11-05", - "dateEntered": "2018-02-02", - "dateRegistrar": "2021-08-07", - "dateLocalAuthorityReceived": "2015-07-04", - "summary": "Suscipit accusantium laborum illo error.\nUt cupiditate tempore accusamus voluptas nesciunt aut quod mollitia.", - "informationUsed": "Eaque distinctio deleniti.\nHarum rerum libero fugit corporis.\nFacere corporis id impedit perferendis repellendus accusamus asperiores temporibus.\nTempora nisi maiores inventore deserunt fuga eveniet optio voluptatem nulla.\nIpsum repellat fugiat est impedit veniam officiis illum.", - "pastOrPresentOrders": "Tenetur exercitationem enim nulla facilis ducimus.\nExplicabo temporibus odio magni officia temporibus odit.\nDolorum dignissimos tenetur voluptate provident maiores odit reprehenderit ullam quis.", + "uuid": "06df0a5c-44ca-42b4-8c5c-cc766d18626b", + "siteRegistry": true, + "dateReceived": "2021-11-13", + "dateCompleted": "2016-11-01", + "dateEntered": "2017-11-03", + "dateRegistrar": "2015-08-17", + "dateLocalAuthorityReceived": "2020-02-02", + "summary": "Praesentium sit fuga iure quaerat soluta molestiae autem quibusdam mollitia.\nAnimi voluptatem sunt doloremque dolores eum nisi.", + "informationUsed": "Quas ipsa natus a natus totam pariatur ducimus.\nConsequatur eos error repudiandae recusandae perspiciatis eligendi hic officia.\nEnim nostrum unde laborum sequi explicabo.", + "pastOrPresentOrders": "Ipsa incidunt voluptatum.\nFugit earum omnis totam sequi ad cumque.", "commercialAndIndustrialPurposes": [ { - "uuid": "57621dd0-a8a1-40dd-84e5-072f9757bd42", - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false - }, - { - "uuid": "c44d1bb1-b5a8-4a6a-8b96-11dbd3388d43", - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false - }, - { - "uuid": "40ea6628-a20e-45fd-8559-fc719a50a02a", - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false - }, - { - "uuid": "4a936217-e7a6-4484-821b-d4ec390ea889", + "uuid": "878d539d-3c9a-4fa6-93fe-b067a047c2f3", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true - } - ] - }, - { - "uuid": "e4b6855c-2017-46cc-bde1-4497a7aac731", - "siteRegistry": false, - "dateReceived": "2016-03-02", - "dateCompleted": "2016-05-31", - "dateEntered": "2018-05-24", - "dateRegistrar": "2018-01-02", - "dateLocalAuthorityReceived": "2014-09-09", - "summary": "Nesciunt quia repellat.\nTemporibus assumenda commodi.\nIusto quaerat fuga beatae labore sint incidunt esse.", - "informationUsed": "Mollitia nemo similique harum facilis.\nIllum rem quia asperiores excepturi ad quo.\nAlias id nulla doloremque corporis molestiae numquam adipisci ad.\nFuga assumenda quae.", - "pastOrPresentOrders": "Iure recusandae saepe facilis aliquam aut quas unde voluptatem.", - "commercialAndIndustrialPurposes": [ - { - "uuid": "d58df700-1018-40dc-a6a3-110b64ae96c9", - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true - }, - { - "uuid": "7399070b-6296-4299-89ec-37027a008d17", - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false - }, - { - "uuid": "c2c1369b-3438-43d0-8d4b-1e47d6d7bc0c", - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false }, { - "uuid": "b6b5600f-7de6-4288-afc8-a459bef4039f", + "uuid": "35bcce20-2cb3-44a5-8b8b-27d4740aeb59", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false @@ -45902,86 +53480,85 @@ ], "activityLog": [ { - "uuid": "2fb9646b-5ead-49c5-aada-de0aacfa5027", + "uuid": "bee5e83d-2b51-4ddc-a3e6-83c9aeee0512", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "KILBACK GERALD", - "timestamp": "2018-07-17" + "user": "SCHILLER MAGDALEN", + "timestamp": "2021-10-23" + }, + { + "uuid": "994223b6-7199-46a1-a50e-c6dd417b51df", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "LEBSACK SANTINA", + "timestamp": "2017-08-05" }, { - "uuid": "ee64c265-0d05-413d-9a44-2b311d289ced", + "uuid": "62df9b58-97e9-46bf-897b-71a1c0b332ec", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "MILLS JAVON", - "timestamp": "2016-05-30" + "user": "KOSS EULAH", + "timestamp": "2023-04-09" }, { - "uuid": "b2381368-ad6e-4637-9e52-c51ba7e7a29e", + "uuid": "b428c052-699c-479f-b6fc-32b1d067d5da", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "HARRIS JACKY", - "timestamp": "2015-06-11" + "user": "HAGENES KORY", + "timestamp": "2023-10-15" }, { - "uuid": "5fc8c8ae-c605-406c-87b8-813710a26211", + "uuid": "666ba1f6-706b-498c-8e82-f66d4be8dc1b", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "PFANNERSTILL LEONARDO", - "timestamp": "2020-09-24" + "user": "ROHAN MARKUS", + "timestamp": "2017-02-23" }, { - "uuid": "5b3cef8f-fe97-4f99-9f3a-a0d761226401", - "siteRegistry": false, + "uuid": "bdea055a-cc1d-4fd7-86b7-8cdd46d418a3", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "PFANNERSTILL GEORGIANA", - "timestamp": "2020-07-07" + "user": "BUCKRIDGE IVAH", + "timestamp": "2013-11-17" } ], "associatedSites": [ { - "uuid": "ca011975-7df0-497f-8102-bf7b30eeb6f5", - "dateNoted": "2021-08-26", + "uuid": "16deaf43-2927-41f4-82b0-2a5aae01281b", + "dateNoted": "2017-12-17", "notes": "", - "parcelID": "16325", - "siteID": "16656", + "parcelID": "18114", + "siteID": "15231", "siteRegistry": false - }, - { - "uuid": "13a4ab4e-06e6-467d-8bc7-8dff825b46a3", - "dateNoted": "2015-09-01", - "notes": "", - "parcelID": "19362", - "siteID": "17528", - "siteRegistry": true } ] }, { - "uuid": "0e098a5b-a87e-4277-bf2d-1dd21af27ae0", - "siteID": 18696, - "address": "731 Monahan Lakes", - "latitude": 56.1651, - "longitude": -136.8109, - "lastUpdated": "2018-11-13", - "city": "Appleton", - "region": "Mainland/Southwest", - "victoriaFile": "26250-20/19338", + "uuid": "b76ca81e-597d-4a70-8619-66fe66ed0561", + "siteID": 19173, + "address": "8585 Monahan Extensions", + "latitude": 52.9488, + "longitude": -123.4484, + "lastUpdated": "2022-03-12", + "city": "South Andreanneside", + "region": " North Coast", + "victoriaFile": "26250-20/13542", "regionalFile": "N/A", "parcelIDs": [ - 9766337, - 2111043, - 2266059, - 7187394, - 2388871 + 3086107, + 1967181, + 5433066, + 4352389, + 3190042 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "a95e1b3b-66cb-4f35-ab2c-ad4575aa7e45", - "createdAt": "2017-02-18", - "completed": "2020-06-14", - "initiated": "2020-05-18", - "ministryContact": "BOGAN AMINA", + "uuid": "ba4f89b8-4dba-4ce1-af50-a320715be110", + "createdAt": "2014-09-18", + "completed": "2017-09-29", + "initiated": "2015-08-03", + "ministryContact": "RODRIGUEZ EVANGELINE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -45990,44 +53567,94 @@ ], "notationParticipants": [ { - "uuid": "9187820a-c884-42f5-8798-5cc9c800866e", - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "32acabb0-f08b-42ef-99b9-a459b4b81226", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "2c2a66e0-ad77-4899-ba20-66b90a6c1c1c", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "d804cb93-9478-4976-b0e5-077b565a842a", - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "45065ead-b45f-4bcb-9371-ff5b4eae9d1e", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "uuid": "225912cd-2650-44f8-b780-ff4bac19e0d0", + "createdAt": "2023-01-03", + "completed": "2014-05-11", + "initiated": "2015-04-11", + "ministryContact": "BEIER ALYSA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "uuid": "486f8e8f-401e-47b0-a7cf-d85305900024", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "ee126f0d-c840-4c46-b4f3-07a716192e1b", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "uuid": "c77e9598-486c-4a42-8e32-5233af99d2b8", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": true - }, + } + ], + "siteRegistry": true + }, + { + "uuid": "4eec061f-caeb-4875-9ad8-68030a30af1b", + "createdAt": "2017-07-14", + "completed": "2016-04-16", + "initiated": "2019-11-29", + "ministryContact": "RITCHIE VICENTA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ { - "uuid": "694893c3-0b64-49d0-8be7-4e0d5283dc10", - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "ebd41051-0261-416e-a529-b690269e2c1e", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false }, { - "uuid": "01465d5f-0028-4b4c-bae9-4e1178e27254", - "name": "SHELL CANADA PRODUCTS", + "uuid": "629c45db-0038-45e0-9737-c9640490e99a", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false + }, + { + "uuid": "f1c3942f-3fbb-4a9d-8aac-98c90b74c2f2", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false } ], "siteRegistry": false }, { - "uuid": "31988a75-058b-4896-aea5-6aa5e5b607b3", - "createdAt": "2022-07-13", - "completed": "2018-06-04", - "initiated": "2017-01-15", - "ministryContact": "JACOBSON OTHA", + "uuid": "1cbf1de2-4e9c-4eda-a1db-5f19a3026c43", + "createdAt": "2019-09-06", + "completed": "2023-04-10", + "initiated": "2015-02-13", + "ministryContact": "SPENCER OTTIS", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -46036,33 +53663,33 @@ ], "notationParticipants": [ { - "uuid": "1681a7b0-34df-4e99-a046-d94559fd6367", - "name": "SHELL CANADA PRODUCTS", + "uuid": "2a52630d-4ee4-4c3f-b646-4611150d306a", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false }, { - "uuid": "9872f854-1fc1-4396-8316-fc23aff2355e", + "uuid": "502e1e77-998d-45f8-9b92-39a47c9cb5fa", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "93055587-aa89-4467-b474-8bda936805bd", + "uuid": "64d0aab4-14ae-42e7-bc28-713f51e5d8ee", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true }, { - "uuid": "c9a8bf48-e4d4-4b51-8fd8-5043cd4f158c", + "uuid": "7695d0c4-618a-4a12-8ee8-ca709e4f3e3a", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "9d9ad1b7-41be-49cd-a2f7-c559946b8a69", + "uuid": "b77fe865-3ea3-4300-a243-8a9613652945", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false } ], @@ -46071,162 +53698,214 @@ ], "participants": [ { - "uuid": "2e2e7a31-2781-4057-882b-b98a8c068673", - "name": "IPSUM", - "endDate": "2018-06-09", - "startDate": "2023-06-28", + "uuid": "27c898fe-191d-4d35-9723-5f96176fa98f", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2022-09-07", + "startDate": "2020-10-02", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": true }, { - "uuid": "44a579d3-289e-4727-8e72-e3c996843d80", + "uuid": "44d98f77-2d50-431d-9b5d-b3d1b28d5e7c", "name": "AMET, DOLOR SIT", - "endDate": "2018-03-06", - "startDate": "2018-07-18", + "endDate": "2022-07-07", + "startDate": "2014-05-21", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "uuid": "50127c2d-f3ad-40ae-b80e-67a090fa100e", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2022-05-30", + "startDate": "2020-12-18", + "notes": "", + "roles": [ + "ORGANIZATION" ], "siteRegistry": false } ], - "suspectLandUses": [ + "documents": [ { - "uuid": "fbbfdc47-dd33-49ba-8484-a53cb442cb0b", + "uuid": "1817e8de-5fdf-4d4e-a78e-f9a6579bdeb7", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-07-23 (described on Site Profile dated 2018-07-23)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" - }, - { - "uuid": "70e12bf8-791a-43cc-8072-0ad563469955", - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-09-07 (described on Site Profile dated 2016-09-07)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "documentDate": "2013-11-22", + "receivedDate": "2018-02-07", + "uploadedDate": "2021-09-17", + "title": "Summary of Site Conditions, 1537 W 41st Avenue, Vancouver", + "participants": [ + { + "uuid": "8628bf8d-9e68-4346-97f2-47e52f01d74a", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "4e30f8da-8ce5-4264-91af-699adf1644a2", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": true, + "role": "AUTHOR" + } + ] }, { - "uuid": "030fc834-ee77-48cf-8530-87a967329711", + "uuid": "acc639b2-3373-427c-8da4-be835909a96d", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-06-15 (described on Site Profile dated 2014-06-15)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "documentDate": "2020-03-16", + "receivedDate": "2018-08-02", + "uploadedDate": "2022-12-27", + "title": "Summary of Site Conditions, 1537 W 41st Avenue, Vancouver", + "participants": [ + { + "uuid": "39a1cbb5-8184-4e56-ab5d-aaee170b5d47", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "221fd585-052c-49cd-80e4-3d73ce390ca6", + "name": "IPSUM", + "siteRegistry": true, + "role": "AUTHOR" + } + ] }, { - "uuid": "74238d3d-aec0-4d7c-a28f-8918bb3d91ea", - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-06-26 (described on Site Profile dated 2015-06-26)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "uuid": "4534707d-3bde-4ed2-9829-0e352425dfc1", + "siteRegistry": false, + "documentDate": "2013-12-17", + "receivedDate": "2014-12-02", + "uploadedDate": "2015-06-24", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "631b914a-e46d-4772-ad30-5d813005e07b", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "93d6067f-dc9a-400c-8966-7a46acc4af61", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": true, + "role": "AUTHOR" + } + ] } ], - "parcelDescriptions": [ + "suspectLandUses": [ { - "uuid": "81709392-cc9d-4528-b483-589094ed064c", + "uuid": "e3e53de6-a275-44b8-b926-b613eaff499d", "siteRegistry": false, - "dateNoted": "2018-02-07", - "parcelID": "17704", - "crownLandUsePIN": "16954", - "crownLandFileNumber": "19041", - "landDescription": "LOT 1 OF LOT 4 BLOCK 3 DISTRICT LOT 2 PLAN 6889" + "notes": "INSERTED FOR SITE PROFILE DATED 2020-12-03 (described on Site Profile dated 2020-12-03)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "uuid": "444eee4e-bd89-40c0-807a-325ecac7641b", + "uuid": "92f51022-0509-4c75-be0c-975dcb5160cf", "siteRegistry": true, - "dateNoted": "2019-07-17", - "parcelID": "17598", - "crownLandUsePIN": "19913", - "crownLandFileNumber": "17531", - "landDescription": "LOT 2 OF LOT 5 BLOCK 4 DISTRICT LOT 2 PLAN 4202" + "notes": "INSERTED FOR SITE PROFILE DATED 2019-10-17 (described on Site Profile dated 2019-10-17)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "uuid": "352d0d32-0619-4291-86cc-41b2f05d6c43", + "uuid": "e928c02c-4bca-45d6-b229-35ff3e5adeb4", "siteRegistry": false, - "dateNoted": "2018-05-24", - "parcelID": "18985", - "crownLandUsePIN": "15961", - "crownLandFileNumber": "18936", - "landDescription": "LOT 1 OF LOT 5 BLOCK 3 DISTRICT LOT 2 PLAN 4329" + "notes": "INSERTED FOR SITE PROFILE DATED 2020-12-08 (described on Site Profile dated 2020-12-08)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "uuid": "c2cf4074-f14f-4c32-8c42-f269460df65a", - "siteRegistry": true, - "dateNoted": "2023-04-17", - "parcelID": "17700", - "crownLandUsePIN": "19242", - "crownLandFileNumber": "18376", - "landDescription": "LOT 1 OF LOT 4 BLOCK 5 DISTRICT LOT 5 PLAN 3892" + "uuid": "ba52d616-fce6-43b7-9145-dbd83ea9dad5", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2023-09-20 (described on Site Profile dated 2023-09-20)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "uuid": "8e139cc4-60f8-4ae9-9a2c-c3c09aa3329a", + "uuid": "f01be246-19ed-43fb-b9e1-88c3466c3b78", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2019-11-05 (described on Site Profile dated 2019-11-05)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + } + ], + "parcelDescriptions": [ + { + "uuid": "5b214892-d137-4169-8fd4-c6102b244f8b", "siteRegistry": true, - "dateNoted": "2018-03-08", - "parcelID": "16891", - "crownLandUsePIN": "18169", - "crownLandFileNumber": "18153", - "landDescription": "LOT 1 OF LOT 1 BLOCK 4 DISTRICT LOT 5 PLAN 8953" + "dateNoted": "2015-05-29", + "parcelID": "20177", + "crownLandUsePIN": "18683", + "crownLandFileNumber": "19537", + "landDescription": "LOT 2 OF LOT 1 BLOCK 1 DISTRICT LOT 1 PLAN 3166" + }, + { + "uuid": "66605f95-28ab-4900-8235-1a164dbabc1f", + "siteRegistry": false, + "dateNoted": "2021-12-10", + "parcelID": "17892", + "crownLandUsePIN": "15548", + "crownLandFileNumber": "16101", + "landDescription": "LOT 1 OF LOT 2 BLOCK 1 DISTRICT LOT 4 PLAN 7620" } ], "siteDisclosures": [ { - "uuid": "b5487775-5cc5-421a-8917-f28a1910edb9", + "uuid": "3dd421e4-66c6-4c88-814e-8b69f1f64d1f", "siteRegistry": true, - "dateReceived": "2015-05-03", - "dateCompleted": "2018-01-07", - "dateEntered": "2018-09-26", - "dateRegistrar": "2022-02-01", - "dateLocalAuthorityReceived": "2016-10-24", - "summary": "Veniam ex officia itaque vitae.\nOfficiis error blanditiis vitae nulla velit maiores.\nVeritatis accusantium illo quisquam alias temporibus dolores necessitatibus eligendi atque.", - "informationUsed": "Itaque voluptate rerum animi temporibus sapiente consequatur velit.\nQuae itaque tempora assumenda omnis similique inventore exercitationem.\nBeatae commodi eveniet vitae accusantium quod natus doloremque alias eius.\nNobis iure doloremque pariatur deserunt minus perferendis earum ipsa magnam.", - "pastOrPresentOrders": "Iste doloremque saepe a praesentium mollitia odio dicta ut.", + "dateReceived": "2020-10-02", + "dateCompleted": "2014-12-10", + "dateEntered": "2020-08-29", + "dateRegistrar": "2017-05-21", + "dateLocalAuthorityReceived": "2016-05-20", + "summary": "Ad dolorum cum nulla.\nHarum aut delectus.\nMinus quae ipsam dolorem quam perferendis debitis corrupti.", + "informationUsed": "Voluptatibus nobis ex beatae.\nSed impedit assumenda quis nesciunt reiciendis id.\nDelectus sint illum nobis veritatis iste sapiente.\nUt temporibus natus neque occaecati aperiam natus.", + "pastOrPresentOrders": "Maxime nesciunt nostrum voluptas magni.\nQuos laudantium aperiam eveniet laboriosam reprehenderit recusandae impedit.", "commercialAndIndustrialPurposes": [ { - "uuid": "16f24a18-10cf-492a-bdfd-f8a79b606140", - "scheduleReference": "F1*", + "uuid": "4739f0e3-844d-4dfd-bfef-1f796d13a7b0", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, { - "uuid": "3096b79b-8c32-44b3-ba74-05139d1db1c9", + "uuid": "8442cd9b-27d8-4526-8b0a-59177a1d990c", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false - }, - { - "uuid": "538cecdc-53e0-4d7e-a300-8fb37383acdb", - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true } ] }, { - "uuid": "5a29fa49-82c7-4d31-bc45-9aafef257c51", + "uuid": "65d35d18-8524-4b74-b950-713b7aa214ca", "siteRegistry": true, - "dateReceived": "2018-06-17", - "dateCompleted": "2015-12-16", - "dateEntered": "2016-12-25", - "dateRegistrar": "2017-11-01", - "dateLocalAuthorityReceived": "2015-07-22", - "summary": "Velit vel possimus.\nA asperiores et esse ipsam.", - "informationUsed": "Consequatur deserunt autem tenetur accusamus amet eius repudiandae animi eum.\nExercitationem ducimus ad adipisci quam enim.\nNeque magni deleniti repellat maiores.\nDolor exercitationem eos minima amet distinctio iure commodi.\nEnim a aspernatur.", - "pastOrPresentOrders": "Sapiente similique quos.\nRatione accusantium accusantium eaque ea eligendi commodi illo quo.", + "dateReceived": "2018-02-13", + "dateCompleted": "2014-09-15", + "dateEntered": "2023-04-25", + "dateRegistrar": "2020-02-22", + "dateLocalAuthorityReceived": "2017-03-24", + "summary": "Eos vero suscipit et distinctio voluptas.\nModi animi repellat dolore aspernatur.", + "informationUsed": "Rerum impedit quidem asperiores aliquid tenetur nobis non.\nEx quae iusto quas aliquid ducimus tempore.\nAt modi adipisci.\nCumque maiores itaque ducimus.\nExpedita ipsam inventore aperiam hic quo qui commodi corrupti omnis.", + "pastOrPresentOrders": "Expedita soluta unde amet maiores accusamus quia.", "commercialAndIndustrialPurposes": [ { - "uuid": "5bc5f93c-3596-4950-9a15-18fe32ef5de1", - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true + "uuid": "a38302c1-5a07-40af-9e63-c67bbd1a826e", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false }, { - "uuid": "7287c4d9-e89f-48c5-a14f-4d8ca5340b8f", + "uuid": "253910d2-f58e-4851-a1c8-13705d2c37b5", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false }, { - "uuid": "e918519f-8257-44e9-8d2f-f9dab3d67c4a", + "uuid": "c6e8dec9-4e31-4ecd-9479-aaa9a1dcc368", "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false } ] @@ -46234,122 +53913,129 @@ ], "activityLog": [ { - "uuid": "1fcd351a-599f-4e9c-8ab3-73426da08a83", + "uuid": "0b95bcad-b983-4f9e-b91d-3eb8214d6701", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "MANTE TRACE", - "timestamp": "2015-03-08" + "user": "KUNDE MADISEN", + "timestamp": "2018-03-17" + }, + { + "uuid": "374b32b3-d938-42cc-9314-edb43bd0abf1", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "SCHADEN WARD", + "timestamp": "2015-09-11" }, { - "uuid": "36212b4c-52f8-4611-a5ee-082ab053d13d", + "uuid": "a080de4e-74bc-44da-b84a-a52683b1c4c1", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "ABERNATHY ADELBERT", - "timestamp": "2021-12-03" + "user": "HAAG LEONARD", + "timestamp": "2017-09-11" }, { - "uuid": "267a7625-0dc3-4dbd-abaf-3360df374298", + "uuid": "ecdc1eb5-f7a6-4941-957f-a6afee285d39", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "KUHIC MERCEDES", - "timestamp": "2020-05-03" + "user": "HILLL DESMOND", + "timestamp": "2014-03-11" }, { - "uuid": "5d53ee90-2248-4ccb-9359-15888440d3ee", + "uuid": "35914a2b-e506-4e1d-9a91-9adcd8fa3b44", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "LARKIN ELIAS", - "timestamp": "2021-05-20" + "user": "BROWN KAILEE", + "timestamp": "2014-06-30" }, { - "uuid": "309967ca-002c-4918-a525-7adb305f3fae", + "uuid": "9bd689bc-9a1e-453f-bb8d-824357134bbe", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "WEIMANN JARRED", - "timestamp": "2018-11-21" + "user": "LUETTGEN MANUEL", + "timestamp": "2018-12-02" }, { - "uuid": "03e0a1b2-dac6-42a4-84ca-5592c6f4c798", + "uuid": "dc5645c5-500e-4d4a-bd7f-d4a3119b1b30", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "CRONA NOEMI", - "timestamp": "2019-10-27" + "user": "LEANNON DELILAH", + "timestamp": "2016-10-27" }, { - "uuid": "abfaccb9-850f-4a0f-99eb-cdae9f8369e6", + "uuid": "e9604567-d621-4ec8-af0b-f33068845c61", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "HODKIEWICZ MARYSE", - "timestamp": "2016-07-05" + "user": "HINTZ BRENNON", + "timestamp": "2023-02-24" }, { - "uuid": "7830e1d9-0974-414d-b3f9-c881ea5257e0", - "siteRegistry": false, + "uuid": "174ea463-a2d4-4301-9618-41204b70542a", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "FRANEY ELINOR", - "timestamp": "2021-10-04" + "user": "SPINKA ELROY", + "timestamp": "2021-11-17" }, { - "uuid": "9ad18887-f29c-4eed-ab35-a4602e402e10", - "siteRegistry": false, + "uuid": "3f16544f-a2b6-4b1c-866a-9ba2b354b150", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "O'KEEFE ROSSIE", - "timestamp": "2021-09-14" + "user": "HARVEY SETH", + "timestamp": "2016-03-22" } ], "associatedSites": [ { - "uuid": "c01ebaba-e29d-460d-9d91-d4eb80bd952e", - "dateNoted": "2021-02-25", + "uuid": "0364565d-5e40-4dac-93ed-e18dee660e58", + "dateNoted": "2014-10-03", "notes": "", - "parcelID": "20439", - "siteID": "20378", - "siteRegistry": true + "parcelID": "17977", + "siteID": "17845", + "siteRegistry": false }, { - "uuid": "89a44722-00b3-4fdc-999f-2f6981561f5a", - "dateNoted": "2016-09-11", + "uuid": "597a77ee-490d-409d-9cb9-e4a62cda2900", + "dateNoted": "2022-08-24", "notes": "", - "parcelID": "19816", - "siteID": "16415", - "siteRegistry": false + "parcelID": "20162", + "siteID": "19512", + "siteRegistry": true }, { - "uuid": "de894eac-2950-48ce-b498-a14411754635", - "dateNoted": "2023-03-18", + "uuid": "e3f99b76-6e46-41e6-b2e1-174636d6d468", + "dateNoted": "2015-02-20", "notes": "", - "parcelID": "18444", - "siteID": "15815", + "parcelID": "20143", + "siteID": "18824", "siteRegistry": true } ] }, { - "uuid": "37a25e94-b7cc-4d02-b236-2e09c4f23c86", - "siteID": 20933, - "address": "25088 Roberts Tunnel", - "latitude": 57.7083, - "longitude": -138.7785, - "lastUpdated": "2020-11-23", - "city": "North Linamouth", - "region": "Thompson-Okanagan", - "victoriaFile": "26250-20/18799", + "uuid": "c1dafe23-47df-497c-addf-1a24b74e72dd", + "siteID": 15971, + "address": "9478 Leannon Inlet", + "latitude": 55.7918, + "longitude": -124.6736, + "lastUpdated": "2020-02-09", + "city": "Judyville", + "region": " North Coast", + "victoriaFile": "26250-20/13950", "regionalFile": "N/A", "parcelIDs": [ - 5865933, - 9023854, - 686681, - 1794009, - 5109801 + 3110022, + 3021752, + 5799274, + 9771516, + 4193664 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "9aa99f89-40cd-4944-b547-ff6d93e7437b", - "createdAt": "2017-03-02", - "completed": "2018-04-28", - "initiated": "2018-04-09", - "ministryContact": "SCHUMM PASCALE", + "uuid": "3ab84981-6e83-46b5-93c4-d8ca1a3eb2ae", + "createdAt": "2015-07-21", + "completed": "2020-11-09", + "initiated": "2023-02-25", + "ministryContact": "ABERNATHY OLIVER", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -46358,26 +54044,32 @@ ], "notationParticipants": [ { - "uuid": "9261085a-599f-4cc5-b47d-b43db99a7e01", + "uuid": "90f6f271-ce9a-41a7-bfd7-79f0674da981", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "a2a1099b-77d9-44fc-b44d-4abcfd6ff9a6", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true }, { - "uuid": "0ec16387-3906-4e71-8d40-b52e2c6d97fc", + "uuid": "e9c57e7b-a40c-489f-b531-27152538bb73", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false + "role": "REQUESTED BY", + "siteRegistry": true } ], "siteRegistry": true }, { - "uuid": "b62979cd-c3ed-4799-be34-2b29b38e4724", - "createdAt": "2020-12-20", - "completed": "2014-07-07", - "initiated": "2016-09-11", - "ministryContact": "ANDERSON ABNER", + "uuid": "700a6f11-be24-454a-a391-e367f7cac2ff", + "createdAt": "2019-09-14", + "completed": "2017-05-16", + "initiated": "2020-11-05", + "ministryContact": "BLICK JAMIR", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -46386,31 +54078,105 @@ ], "notationParticipants": [ { - "uuid": "c52385be-c351-4556-80ed-2edfa41021d4", + "uuid": "cbafa44b-c33a-454d-99a1-0eb6f0a73e34", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "0a30fd75-327f-418c-8876-f437e9ddde8a", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "uuid": "9a6703a4-117b-47d7-9285-002f3b1f0cee", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "1e23ca73-8b0b-4cd1-8525-a2268b7b6df3", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "uuid": "a2378508-6c24-47d2-bf6f-fdf5d41452e6", + "createdAt": "2023-06-18", + "completed": "2023-05-09", + "initiated": "2019-11-03", + "ministryContact": "SMITH RASHEED", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "uuid": "59cf2558-b677-4f41-be7c-e6428e2b4a0a", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false }, { - "uuid": "dc5e8fc5-c1c1-43ce-a2dd-a99237000c99", + "uuid": "d464b61a-d0e5-4824-8f80-6f95ac748d1a", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "9dabd02b-59f2-4da2-8b04-5f2b809f1bee", + "uuid": "753b7ae1-4193-4775-994c-5c7b8fa4f296", "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "uuid": "3c23a7c3-654d-45e8-bed8-75b777616a92", + "createdAt": "2023-04-10", + "completed": "2019-03-16", + "initiated": "2022-06-21", + "ministryContact": "TURCOTTE DARWIN", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "uuid": "8bc49dc6-29f0-4506-a22f-8c1897748553", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "uuid": "8184e9ac-d87e-487f-97e2-c7991c9eae10", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "uuid": "7b7b2593-166f-4ceb-a3da-caed497c3cf1", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "d3c767cc-175b-46a9-a333-2b3fd0016f85", + "uuid": "1ed0f77f-9a39-4dc1-ba5f-b7d9b46f5404", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "203cc0ec-d276-4028-90b5-adfe84ad7006", + "uuid": "f65eb799-01dc-4b43-a701-3fc9f0b2c610", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true @@ -46419,11 +54185,11 @@ "siteRegistry": false }, { - "uuid": "7fc13215-2078-409d-a4c0-c134e8215b2d", - "createdAt": "2013-12-02", - "completed": "2015-03-08", - "initiated": "2019-02-04", - "ministryContact": "CARROLL TATUM", + "uuid": "e9620dd1-d746-4e51-a175-53ea39735414", + "createdAt": "2022-09-16", + "completed": "2023-06-02", + "initiated": "2021-08-26", + "ministryContact": "BLANDA CELESTINO", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -46432,44 +54198,50 @@ ], "notationParticipants": [ { - "uuid": "30c33e47-cf7d-404c-a216-6c638a7889ee", + "uuid": "61f915b6-2284-4052-afe7-836ee4ceb080", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "cdb22276-725e-47a9-92c6-a5bc8af9ecf3", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "346959e1-91a7-4df4-b59c-37cd54c7807d", + "uuid": "d0fcd06f-f8aa-4aee-b470-5bd3641c8496", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "a2d6b313-4d6d-484f-b7f4-b27ba6e95218", - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "7caec105-6c00-4f00-988c-4f4ab8b45508", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true } ], "participants": [ { - "uuid": "7b549cdf-aac3-45a7-9c2e-50ab47763f04", - "name": "AMET, DOLOR SIT", - "endDate": "2019-01-21", - "startDate": "2014-09-29", + "uuid": "c743fcbe-24e4-4166-a875-8501da7b8658", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2021-12-02", + "startDate": "2021-06-28", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": false }, { - "uuid": "efcb34ee-c566-4da6-afef-32c2bfb0ccee", - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2020-11-09", - "startDate": "2022-10-22", + "uuid": "95880495-2a2d-463f-8b67-15100eab1ff4", + "name": "IPSUM", + "endDate": "2017-09-30", + "startDate": "2013-10-25", "notes": "", "roles": [ "ORGANIZATION" @@ -46477,10 +54249,10 @@ "siteRegistry": true }, { - "uuid": "9a206e87-e42a-40d4-8c5f-44266c7c2522", + "uuid": "d9c5fbf2-b961-4abc-80bc-1f0b87ff2d49", "name": "AMET, DOLOR SIT", - "endDate": "2023-06-24", - "startDate": "2019-01-17", + "endDate": "2017-09-03", + "startDate": "2018-06-26", "notes": "", "roles": [ "ORGANIZATION" @@ -46488,97 +54260,153 @@ "siteRegistry": false }, { - "uuid": "ee96e582-1255-443c-9358-1faee64c8db6", - "name": "AMET, DOLOR SIT", - "endDate": "2021-10-02", - "startDate": "2017-03-29", + "uuid": "8f6aaf53-3cbe-48cc-8d1c-db0da460b62b", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2022-07-01", + "startDate": "2017-05-15", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": false + "siteRegistry": true } ], - "suspectLandUses": [ - { - "uuid": "efc8c9e7-de6a-4407-ad8b-611aa016b458", - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-03-19 (described on Site Profile dated 2022-03-19)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" - }, + "documents": [ { - "uuid": "77321b85-912a-4ed4-ad75-dccb3161dfff", + "uuid": "26e3ec43-afbf-4204-a72c-da571ab01f9d", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-09-18 (described on Site Profile dated 2021-09-18)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" - }, + "documentDate": "2014-03-31", + "receivedDate": "2019-03-12", + "uploadedDate": "2023-05-11", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "16d20bdf-c472-4365-a8c0-d9defff5160c", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "472e78b7-bdfb-4b7c-8386-3a9b1a3040e9", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": true, + "role": "AUTHOR" + } + ] + } + ], + "suspectLandUses": [ { - "uuid": "2ecdedb6-9eff-4452-9fe6-84a12a5c6a29", + "uuid": "bc97f89c-1812-43b7-a416-28a543fa572f", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-06-27 (described on Site Profile dated 2021-06-27)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "notes": "INSERTED FOR SITE PROFILE DATED 2014-11-22 (described on Site Profile dated 2014-11-22)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "uuid": "0e1ee008-0086-4f76-9965-2f1c293cfccd", + "uuid": "a91708ac-aef7-43f5-9c49-a9eb5ab31daf", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2023-04-06 (described on Site Profile dated 2023-04-06)", + "notes": "INSERTED FOR SITE PROFILE DATED 2018-06-21 (described on Site Profile dated 2018-06-21)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], "parcelDescriptions": [ { - "uuid": "7ca5eacd-c70f-4e9e-8727-c90bf911b678", + "uuid": "49d3d345-35af-459a-a889-04e1ce861787", + "siteRegistry": false, + "dateNoted": "2018-11-24", + "parcelID": "19467", + "crownLandUsePIN": "20590", + "crownLandFileNumber": "15928", + "landDescription": "LOT 1 OF LOT 1 BLOCK 3 DISTRICT LOT 2 PLAN 9243" + }, + { + "uuid": "554c0bf0-d0ee-4e3b-b53d-6cae9773bd0e", + "siteRegistry": false, + "dateNoted": "2016-01-22", + "parcelID": "19417", + "crownLandUsePIN": "20624", + "crownLandFileNumber": "16850", + "landDescription": "LOT 1 OF LOT 1 BLOCK 3 DISTRICT LOT 3 PLAN 9732" + }, + { + "uuid": "d63519e3-feff-434a-9284-5a5918dce019", "siteRegistry": true, - "dateNoted": "2018-11-30", - "parcelID": "20328", - "crownLandUsePIN": "18826", - "crownLandFileNumber": "17611", - "landDescription": "LOT 5 OF LOT 3 BLOCK 5 DISTRICT LOT 5 PLAN 4972" + "dateNoted": "2018-07-17", + "parcelID": "19671", + "crownLandUsePIN": "18025", + "crownLandFileNumber": "20349", + "landDescription": "LOT 4 OF LOT 2 BLOCK 4 DISTRICT LOT 2 PLAN 5029" }, { - "uuid": "9a0faa8b-3b9c-44cb-9454-176ad6ac0dab", + "uuid": "b2465b29-1c43-49b1-893b-b771ac96dd7a", "siteRegistry": false, - "dateNoted": "2019-08-06", - "parcelID": "16369", - "crownLandUsePIN": "20558", - "crownLandFileNumber": "19706", - "landDescription": "LOT 4 OF LOT 5 BLOCK 2 DISTRICT LOT 2 PLAN 4058" + "dateNoted": "2016-10-14", + "parcelID": "16882", + "crownLandUsePIN": "16897", + "crownLandFileNumber": "20986", + "landDescription": "LOT 2 OF LOT 3 BLOCK 4 DISTRICT LOT 5 PLAN 8971" } ], "siteDisclosures": [ { - "uuid": "7ff6db3d-7f18-4655-a729-e24565f9297f", + "uuid": "3cf01c00-8eed-4a79-977d-deb0eccf9ac0", "siteRegistry": true, - "dateReceived": "2019-06-29", - "dateCompleted": "2021-05-11", - "dateEntered": "2021-06-22", - "dateRegistrar": "2022-02-14", - "dateLocalAuthorityReceived": "2014-10-25", - "summary": "Nam ratione consequatur reiciendis voluptatibus veniam sed.", - "informationUsed": "Ex ratione maxime neque molestiae vitae eum.\nEaque cupiditate molestias illo quasi labore.\nVoluptates quae temporibus odio autem.\nAnimi odio soluta iste suscipit quam.", - "pastOrPresentOrders": "Accusantium iusto qui.\nFacere excepturi amet.\nOfficia occaecati molestiae.", + "dateReceived": "2021-06-18", + "dateCompleted": "2017-08-04", + "dateEntered": "2016-01-01", + "dateRegistrar": "2015-03-19", + "dateLocalAuthorityReceived": "2022-11-05", + "summary": "Exercitationem commodi sint iure odit.\nAliquid excepturi ad nesciunt accusantium nemo numquam voluptatem eveniet laudantium.", + "informationUsed": "Iure enim libero.\nDolores possimus sed iste enim occaecati.\nUllam aliquam odit.\nNisi dolores maiores.", + "pastOrPresentOrders": "Eaque eos totam odit tenetur tempore quo at officiis.\nBeatae consequatur veniam recusandae expedita aliquid.\nError nihil consectetur earum.", "commercialAndIndustrialPurposes": [ { - "uuid": "fa7b2d2f-07fd-49d0-9bb1-9db5a867c14f", + "uuid": "2787e659-202e-4ffc-acf7-dde2a7563264", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "769c17a1-aac0-4216-8e12-a8774df07266", - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "uuid": "2bafb4fe-3be7-48b9-a264-f57274be1079", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { - "uuid": "2d90a680-c0f4-443a-a2de-45e263b4450f", + "uuid": "eeff789d-5af8-49ce-8bb4-f900310eb164", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + } + ] + }, + { + "uuid": "388d4c1a-31df-4986-b4c8-af385fb5952f", + "siteRegistry": true, + "dateReceived": "2014-05-25", + "dateCompleted": "2021-05-31", + "dateEntered": "2019-12-14", + "dateRegistrar": "2022-08-06", + "dateLocalAuthorityReceived": "2020-09-06", + "summary": "Odit debitis odit porro qui deserunt non ratione.", + "informationUsed": "Aspernatur hic saepe ipsum suscipit minus sapiente ratione repudiandae minima.\nOccaecati dolores qui.\nEt quaerat corporis autem est magnam ab.\nEos aperiam reprehenderit magnam ipsa ipsa earum.", + "pastOrPresentOrders": "Laboriosam minus doloremque officia architecto totam.\nCorrupti quibusdam odio voluptates quisquam ipsam nihil iste corrupti rem.", + "commercialAndIndustrialPurposes": [ + { + "uuid": "54a5aaba-b6ae-42c2-b4b1-e42e34d7a840", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { - "uuid": "b88a7e50-94bf-4c64-bdbf-7e7d7190389b", - "scheduleReference": "F1*", + "uuid": "fb47e161-943f-4b6e-9ecd-b18c627b644c", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "uuid": "3df8361d-dd76-400c-966a-8c0be018b963", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true } @@ -46587,119 +54415,100 @@ ], "activityLog": [ { - "uuid": "da63dd7f-71ba-4c10-b09c-513ac01e6b3b", - "siteRegistry": false, + "uuid": "b8712a89-369f-46e7-abc8-6fe07015bb66", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "CRUICKSHANK MARIELLE", - "timestamp": "2014-11-06" + "user": "HELLER MARVIN", + "timestamp": "2022-01-20" }, { - "uuid": "8bd2cbc6-0b4f-4a24-be1b-fc0f7aff0c64", + "uuid": "39ced4a6-cc74-4742-96f8-224dc35fabf7", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "FRAMI MAURICIO", - "timestamp": "2018-10-07" + "user": "LARSON ANTONETTA", + "timestamp": "2017-08-15" }, { - "uuid": "83a2c1de-5ee5-46f7-8825-55fae806dbbb", + "uuid": "49865332-58ee-43d5-85df-4388aefced78", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "WIZA KEITH", - "timestamp": "2018-04-12" + "user": "LAKIN ELEAZAR", + "timestamp": "2021-05-26" }, { - "uuid": "6a226fb0-e9a1-4921-86a6-6e42a580142e", + "uuid": "d7151dfb-11da-4a17-8f12-b8f439c6bf2c", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "GRADY OSCAR", - "timestamp": "2020-03-20" + "user": "PFEFFER WILTON", + "timestamp": "2014-10-01" }, { - "uuid": "0fcf25e7-e0e5-43db-9f50-53814b6d4eda", + "uuid": "4826fd81-b291-4311-a3db-3295687d4248", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "CARROLL DEMARIO", - "timestamp": "2020-02-25" + "user": "RUECKER JONATHON", + "timestamp": "2017-03-06" + }, + { + "uuid": "c8569fb9-04cc-4fb3-8809-bca0022d35c1", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "GLOVER DESTIN", + "timestamp": "2023-01-22" }, { - "uuid": "a333857e-cfe6-44bc-80fe-84ec43121e3d", + "uuid": "da0b7c85-9395-452c-b2e2-676ef711db7a", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "O'HARA DEION", - "timestamp": "2015-12-11" + "user": "PREDOVIC MARLENE", + "timestamp": "2018-03-21" } ], "associatedSites": [ { - "uuid": "9faad376-4478-44be-a8d2-e2186511cc76", - "dateNoted": "2017-08-10", + "uuid": "53a4b6a0-b7c0-4f88-bdb6-ec16b1d1fc8d", + "dateNoted": "2019-11-10", + "notes": "", + "parcelID": "16535", + "siteID": "17114", + "siteRegistry": true + }, + { + "uuid": "31a10ab3-7a2d-452a-ab3f-8a50145e895e", + "dateNoted": "2019-04-28", "notes": "", - "parcelID": "17519", - "siteID": "19995", + "parcelID": "17298", + "siteID": "15519", "siteRegistry": false } ] }, { - "uuid": "b72c1c98-5069-43e1-b8fe-51af7f27ae63", - "siteID": 15345, - "address": "158 Leannon Unions", - "latitude": 56.2983, - "longitude": -138.2086, - "lastUpdated": "2019-02-16", - "city": "Ullrichfort", - "region": "Thompson-Okanagan", - "victoriaFile": "26250-20/15301", - "regionalFile": "N/A", - "parcelIDs": [ - 773538, - 9178530, - 4955006, - 4312993, - 9693838 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "uuid": "dc2e29bf-104e-4f16-bbf8-e725c16fc042", - "createdAt": "2017-11-10", - "completed": "2021-11-12", - "initiated": "2015-11-28", - "ministryContact": "WILLIAMSON TOBY", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "uuid": "7bfe16df-6d07-424e-952f-f65674026e15", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "uuid": "a1e7dfdb-8484-4f19-abef-1cb64619dd7b", - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "uuid": "0c1e34db-ac42-4350-9904-4363fb5637e6", - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - } - ], - "siteRegistry": false - }, + "uuid": "723da2ba-36c8-4c9f-a55e-04a13bcf3f05", + "siteID": 20039, + "address": "16308 Aidan Street", + "latitude": 51.3709, + "longitude": -119.7407, + "lastUpdated": "2019-03-26", + "city": "Angelafield", + "region": "Cariboo", + "victoriaFile": "26250-20/17195", + "regionalFile": "N/A", + "parcelIDs": [ + 3366248, + 9080728, + 9764555, + 2565044, + 6873627 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ { - "uuid": "e458f724-1087-4d48-a6df-54481c3f4aaa", - "createdAt": "2023-09-30", - "completed": "2021-10-02", - "initiated": "2014-02-25", - "ministryContact": "GREENFELDER SINCERE", + "uuid": "73d4cd5e-dd3a-4aae-9a9b-2e36bee32e49", + "createdAt": "2018-11-03", + "completed": "2019-10-14", + "initiated": "2015-05-02", + "ministryContact": "FLATLEY MUSTAFA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -46708,32 +54517,32 @@ ], "notationParticipants": [ { - "uuid": "efcbbefa-6449-464c-8054-d985d478038e", + "uuid": "6dba3814-0b0c-486e-bfdb-fd784ee644ba", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "uuid": "18dbee32-5ff2-4209-be8f-43844e552f21", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "e3316594-5591-4290-89c5-d813236c51d3", + "uuid": "9fddb626-4318-4981-a655-e877df172672", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true - }, - { - "uuid": "e2c9dd5b-dcbe-4f7c-9312-3775e3e2bf0e", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false } ], "siteRegistry": true }, { - "uuid": "78eee788-5000-444c-982a-70418a5c9ff9", - "createdAt": "2015-04-11", - "completed": "2017-11-30", - "initiated": "2022-12-17", - "ministryContact": "RODRIGUEZ MURIEL", + "uuid": "e3324612-8db7-4284-b77d-d710c3372715", + "createdAt": "2022-03-25", + "completed": "2018-11-10", + "initiated": "2023-03-19", + "ministryContact": "POUROS NATHANIAL", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -46742,31 +54551,13 @@ ], "notationParticipants": [ { - "uuid": "521e2890-a6e9-4d0c-bb09-379be07a2e3a", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "uuid": "ec173d0b-6edd-4f45-bd1d-bbd6f84496be", - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "uuid": "9442c82a-ada3-4ea3-81cb-49c3dbfd4611", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "uuid": "bf0b257f-cc65-4aae-8721-f1f84cc73ffe", + "uuid": "6557b41a-6ec9-41bb-b3c9-67d8028d67a6", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true }, { - "uuid": "34606713-c44d-422d-8c9f-9f529f918ded", + "uuid": "d4b160d0-8c28-4975-b131-180fea9e23e8", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false @@ -46775,11 +54566,11 @@ "siteRegistry": true }, { - "uuid": "d892ad21-6ca7-4bd3-babd-fdede9e4ff4d", - "createdAt": "2015-02-10", - "completed": "2014-05-17", - "initiated": "2019-08-07", - "ministryContact": "KEELING MADILYN", + "uuid": "4eb3cffb-75fc-4f0d-9a32-ea04d99fd974", + "createdAt": "2016-09-21", + "completed": "2018-06-21", + "initiated": "2022-02-19", + "ministryContact": "THOMPSON ORIN", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -46788,254 +54579,334 @@ ], "notationParticipants": [ { - "uuid": "ba16a0ca-3e4e-45cc-ad95-541cf290d27e", + "uuid": "d4f8b43b-8fc9-42b6-b4ba-aefb7c891fb8", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true }, { - "uuid": "f8ada29d-bd8b-4824-a972-442966cd1f3b", - "name": "SHELL CANADA PRODUCTS", + "uuid": "0e993887-affc-40e8-931d-3c0839f63778", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "80f46441-3fd9-4ffe-87b0-99a2ac740b42", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true } ], "participants": [ { - "uuid": "d3dae4ed-38b5-4bce-9d0c-6726341db342", - "name": "SHELL CANADA PRODUCTS", - "endDate": "2020-02-21", - "startDate": "2019-04-12", + "uuid": "5382066d-9e09-4891-b9fe-84b57db3e391", + "name": "AMET, DOLOR SIT", + "endDate": "2020-02-20", + "startDate": "2018-05-18", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": true }, { - "uuid": "d365518e-03bb-47db-9477-339ccd650ede", - "name": "IPSUM", - "endDate": "2018-08-17", - "startDate": "2013-11-10", + "uuid": "6a7508dd-a184-468f-a66a-ea1d3ec6b228", + "name": "AMET, DOLOR SIT", + "endDate": "2019-10-08", + "startDate": "2013-12-04", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false + } + ], + "documents": [ + { + "uuid": "9f5a416d-fa4d-4df7-b5c1-cc96c200d396", + "siteRegistry": true, + "documentDate": "2021-08-22", + "receivedDate": "2018-01-06", + "uploadedDate": "2013-12-17", + "title": "Summary of Site Conditions, 1537 W 41st Avenue, Vancouver", + "participants": [ + { + "uuid": "cb4ac03a-e17b-489e-b2cc-4242e399fdd3", + "name": "AMET, DOLOR SIT", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "52e15cd6-a8ad-4aa3-9080-2146d304f130", + "name": "IPSUM", + "siteRegistry": true, + "role": "AUTHOR" + } + ] }, { - "uuid": "a0a09562-3f78-4e25-8430-1cc587beaaf6", - "name": "IPSUM", - "endDate": "2021-08-07", - "startDate": "2014-07-22", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": false + "uuid": "39122ada-f958-418b-8578-8df86f659fcd", + "siteRegistry": true, + "documentDate": "2020-09-03", + "receivedDate": "2016-02-28", + "uploadedDate": "2019-06-17", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "5003d4d2-97eb-4348-9cc7-b554d877c354", + "name": "IPSUM", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "39d0eb65-fa7e-4d6f-b274-6d026f019abc", + "name": "AMET, DOLOR SIT", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "9875567b-d360-4f8d-8444-4d13c0cc3ead", + "name": "AMET, DOLOR SIT", + "siteRegistry": true, + "role": "AUTHOR" + } + ] }, { - "uuid": "3dcc2b70-46a4-47a4-96d2-66d06b8e9b15", - "name": "IPSUM", - "endDate": "2019-04-16", - "startDate": "2020-04-19", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": false + "uuid": "05abdf27-6f65-4e7d-a3d5-e8ec09c784e3", + "siteRegistry": false, + "documentDate": "2018-07-26", + "receivedDate": "2022-07-19", + "uploadedDate": "2023-02-06", + "title": "Summary of Site Conditions, 1537 W 41st Avenue, Vancouver", + "participants": [ + { + "uuid": "6860a6f7-f16e-4781-9c0a-89edce6d8006", + "name": "IPSUM", + "siteRegistry": false, + "role": "AUTHOR" + } + ] + }, + { + "uuid": "28c7b24d-85a8-4aa2-9952-90c275baa58e", + "siteRegistry": false, + "documentDate": "2019-02-23", + "receivedDate": "2023-08-10", + "uploadedDate": "2014-06-27", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "43e0c98f-d32f-4853-a099-9a780094c75f", + "name": "AMET, DOLOR SIT", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "df4a6d74-15f3-4d6c-96bd-1286c4d1ffa8", + "name": "IPSUM", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "9e97edbc-4753-4d29-bc41-8060faf2ab1f", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": true, + "role": "AUTHOR" + } + ] + }, + { + "uuid": "6e140dc8-1308-487f-9f68-c23ec662a48b", + "siteRegistry": true, + "documentDate": "2021-12-28", + "receivedDate": "2018-11-21", + "uploadedDate": "2015-02-01", + "title": "Summary of Site Conditions, 1537 W 41st Avenue, Vancouver", + "participants": [ + { + "uuid": "eea7a938-9394-475c-b196-119d36e4dcc0", + "name": "IPSUM", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "6eb08753-b4fd-4c61-886f-696676bed632", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": true, + "role": "AUTHOR" + } + ] } ], "suspectLandUses": [ { - "uuid": "9a3b771a-9aec-42df-9e8e-9ae991c72afc", + "uuid": "31b3b89c-6a3e-4a62-8653-f565206d5a85", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-05-17 (described on Site Profile dated 2022-05-17)", + "notes": "INSERTED FOR SITE PROFILE DATED 2016-01-17 (described on Site Profile dated 2016-01-17)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "uuid": "9d4810e4-e5b9-4eca-8aeb-85727cf609ab", - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2020-09-12 (described on Site Profile dated 2020-09-12)", + "uuid": "9890b177-9e0a-45ba-afb7-cabd9db07552", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2015-12-24 (described on Site Profile dated 2015-12-24)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "uuid": "190e7c58-b27b-45f2-8a26-6962df4301b9", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2020-07-11 (described on Site Profile dated 2020-07-11)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "uuid": "1d82119b-8e70-45b9-8c26-7463dc002e7e", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2018-09-29 (described on Site Profile dated 2018-09-29)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], "parcelDescriptions": [ { - "uuid": "a7fe777e-7d28-43ae-89bb-2bebe2fec1a6", + "uuid": "3c6b1f77-7b8a-441e-b8e5-a87835d30801", + "siteRegistry": false, + "dateNoted": "2016-12-08", + "parcelID": "19156", + "crownLandUsePIN": "17155", + "crownLandFileNumber": "18874", + "landDescription": "LOT 4 OF LOT 4 BLOCK 2 DISTRICT LOT 3 PLAN 8360" + }, + { + "uuid": "9612d22a-c5c0-4c5d-b045-ddee6f725a02", "siteRegistry": false, - "dateNoted": "2023-02-23", - "parcelID": "15679", - "crownLandUsePIN": "17912", - "crownLandFileNumber": "19852", - "landDescription": "LOT 3 OF LOT 3 BLOCK 2 DISTRICT LOT 3 PLAN 9122" + "dateNoted": "2022-07-15", + "parcelID": "15637", + "crownLandUsePIN": "19706", + "crownLandFileNumber": "16586", + "landDescription": "LOT 1 OF LOT 2 BLOCK 5 DISTRICT LOT 5 PLAN 2995" }, { - "uuid": "8d700d82-19fc-42b7-99b2-1ab5a8708fb9", + "uuid": "4eea9040-5446-4ee9-83ff-473a324c5d83", "siteRegistry": false, - "dateNoted": "2014-04-03", - "parcelID": "19928", - "crownLandUsePIN": "20948", - "crownLandFileNumber": "20031", - "landDescription": "LOT 4 OF LOT 1 BLOCK 1 DISTRICT LOT 5 PLAN 7770" + "dateNoted": "2015-03-30", + "parcelID": "20374", + "crownLandUsePIN": "19182", + "crownLandFileNumber": "20754", + "landDescription": "LOT 5 OF LOT 1 BLOCK 1 DISTRICT LOT 4 PLAN 7020" } ], "siteDisclosures": [ { - "uuid": "5c4e8466-93bf-4524-9517-8f5548b5f405", + "uuid": "b7e7718b-ef59-4c7e-9d6f-afd152008c2c", "siteRegistry": true, - "dateReceived": "2022-06-02", - "dateCompleted": "2022-03-31", - "dateEntered": "2020-04-19", - "dateRegistrar": "2023-03-19", - "dateLocalAuthorityReceived": "2022-12-03", - "summary": "Sequi incidunt consequatur nostrum voluptate doloribus debitis sunt voluptatem.\nVoluptatibus illum neque.\nVitae similique consequuntur aliquam nesciunt.", - "informationUsed": "Provident cumque excepturi dolor fuga laborum at voluptatem.\nFugiat a culpa repellendus architecto.\nCumque sequi beatae atque repudiandae facilis accusamus non magni.", - "pastOrPresentOrders": "Autem ullam accusamus corporis aliquid autem officia.\nAlias minima dignissimos vitae tempora iure sunt.\nIste aliquid laboriosam minima natus impedit totam mollitia esse eaque.", + "dateReceived": "2023-06-01", + "dateCompleted": "2016-10-27", + "dateEntered": "2020-09-26", + "dateRegistrar": "2022-12-30", + "dateLocalAuthorityReceived": "2019-08-02", + "summary": "Officiis quam debitis quibusdam odio molestiae amet.", + "informationUsed": "Fugit porro corporis dolore praesentium magni commodi labore minima.\nOccaecati adipisci atque eos a dignissimos.\nTotam consectetur illum necessitatibus.", + "pastOrPresentOrders": "Quam atque exercitationem.", "commercialAndIndustrialPurposes": [ { - "uuid": "a6f98a6b-672e-4b16-a7c4-f2e1a90a15a7", - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false - }, - { - "uuid": "8a046056-967f-4e61-abc5-906819bc5860", - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false - }, - { - "uuid": "78dc4a11-fe53-4633-afcb-6e98c68be2c3", + "uuid": "9d4e68e0-3f2c-4bfc-93c8-72377bf6e241", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { - "uuid": "a160a206-4cca-4351-b2c2-c7475ee545a3", + "uuid": "38e775f3-6cd0-47ae-b8e5-504bd1a62cea", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true - } - ] - }, - { - "uuid": "70de7b7e-5972-40b3-b818-fd9a516fcf71", - "siteRegistry": false, - "dateReceived": "2022-03-28", - "dateCompleted": "2016-01-27", - "dateEntered": "2015-02-26", - "dateRegistrar": "2020-02-20", - "dateLocalAuthorityReceived": "2020-01-08", - "summary": "A ab excepturi omnis qui.\nConsequatur voluptatum iusto qui.\nAsperiores voluptatibus atque dolor aperiam ab voluptate aperiam dolor qui.", - "informationUsed": "Placeat voluptatum eaque numquam dolorum ipsam aperiam.\nDolore eveniet architecto dolores facilis consectetur vel laborum numquam.\nTenetur quis at esse.\nIllum nihil corrupti aperiam blanditiis labore.\nExcepturi voluptatum iure inventore.", - "pastOrPresentOrders": "Ab reiciendis aliquid sunt amet praesentium.", - "commercialAndIndustrialPurposes": [ - { - "uuid": "2e5770b7-dabe-4888-8d27-49a523ed3f11", - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false - }, - { - "uuid": "1a6abc7b-14cc-4ebf-9ff7-a749fd38e438", - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true - }, - { - "uuid": "cfba7b82-1257-4f34-83a0-0e9621ea7229", - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true } ] } ], "activityLog": [ { - "uuid": "41ea9830-7200-4054-870c-30f8145bb2af", - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "JACOBS REBEKAH", - "timestamp": "2021-12-15" - }, - { - "uuid": "fe08bc0a-f26b-4f74-8b34-279c434f0afa", + "uuid": "421b6666-b1fd-4ffa-ab8b-ad159ef423eb", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "LANGOSH CARLI", - "timestamp": "2022-06-10" + "user": "HEATHCOTE WILBERT", + "timestamp": "2021-10-05" }, { - "uuid": "8574d050-d798-4809-9d5d-da6161f6d45a", - "siteRegistry": true, + "uuid": "356a8b7a-77a6-401c-9b64-066a9ad7762d", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "JAKUBOWSKI ELWYN", - "timestamp": "2023-05-02" + "user": "TERRY JACQUES", + "timestamp": "2019-02-14" }, { - "uuid": "b2051a08-eba0-4b35-9c78-82173c347963", + "uuid": "779f9eab-0b63-4a92-b85e-3a21dd9781af", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "FEIL BAILEE", - "timestamp": "2023-03-11" + "user": "LUETTGEN SHERMAN", + "timestamp": "2020-02-05" }, { - "uuid": "ec64c5c6-5a62-43e1-afbf-8df5c8f300a8", - "siteRegistry": true, + "uuid": "a9607045-8e12-49c4-9e43-69e350fdeae6", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "MORISSETTE ALYSON", - "timestamp": "2021-01-18" + "user": "CRIST JUNIUS", + "timestamp": "2021-08-03" }, { - "uuid": "e6fb0715-0d57-433e-8efc-94e83559e761", - "siteRegistry": false, + "uuid": "48e60efd-69c4-4115-b218-8d9ae654bb59", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "TURNER CARMELA", - "timestamp": "2014-03-05" + "user": "RUNOLFSSON-TURNER FELICIA", + "timestamp": "2022-06-04" } ], "associatedSites": [ { - "uuid": "971012da-83d3-43c5-96aa-850a707b9658", - "dateNoted": "2020-08-12", + "uuid": "0d6311cb-9236-463d-9b47-4c552708ae8e", + "dateNoted": "2015-08-28", "notes": "", - "parcelID": "19225", - "siteID": "19481", - "siteRegistry": true + "parcelID": "20360", + "siteID": "19173", + "siteRegistry": false + }, + { + "uuid": "197710c3-d0d2-413c-9d68-b3397f4d5150", + "dateNoted": "2014-01-19", + "notes": "", + "parcelID": "18561", + "siteID": "20224", + "siteRegistry": false } ] }, { - "uuid": "0215e1b7-b0f6-45f2-a8ec-0d1b048bc743", - "siteID": 20429, - "address": "27583 Mohr Drives", - "latitude": 50.7244, - "longitude": -134.5277, - "lastUpdated": "2018-06-10", - "city": "Fort Emmanuellestad", + "uuid": "9de1cdef-96c7-4726-a1d1-73ce581645e8", + "siteID": 16084, + "address": "648 Reichert Haven", + "latitude": 51.7917, + "longitude": -129.2403, + "lastUpdated": "2015-04-24", + "city": "Lake Anne", "region": "Vancouver Island/Coast", - "victoriaFile": "26250-20/15392", + "victoriaFile": "26250-20/2547", "regionalFile": "N/A", "parcelIDs": [ - 8605727, - 5999802, - 3806005, - 6745793, - 9608911 + 6943272, + 9759670, + 5395237, + 8245064, + 5212151 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "33fef08c-81f7-44ae-a333-30acb3e7c90d", - "createdAt": "2018-08-18", - "completed": "2013-11-03", - "initiated": "2020-07-23", - "ministryContact": "ERDMAN HASKELL", + "uuid": "b1227741-41a5-4510-b4e7-a4df11a3480c", + "createdAt": "2022-06-14", + "completed": "2017-09-01", + "initiated": "2022-10-30", + "ministryContact": "CONROY SAVION", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -47044,26 +54915,32 @@ ], "notationParticipants": [ { - "uuid": "38ef0c5b-ebc3-4276-b1cd-45cf5e0a7071", + "uuid": "773ca052-7129-45e4-a755-cbf3f66771f9", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "08cb419c-dce3-44ad-ab22-382633280c7c", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "aaefbd07-390b-4109-8ab5-e21caff34eb8", + "uuid": "ac217d01-bf64-4e50-8352-69e1a9c6bd3b", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true } ], "siteRegistry": true }, { - "uuid": "3e51eeae-864d-48c0-93be-5698ec070b08", - "createdAt": "2017-08-15", - "completed": "2019-06-18", - "initiated": "2018-03-19", - "ministryContact": "BLICK MARIELLE", + "uuid": "bf5e4f43-c949-4178-a87e-fe74fb3a3b47", + "createdAt": "2016-01-05", + "completed": "2017-10-15", + "initiated": "2014-08-12", + "ministryContact": "FEENEY ADA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -47072,296 +54949,364 @@ ], "notationParticipants": [ { - "uuid": "f1e8944c-6e32-452f-b7fe-e8fdf96cf636", - "name": "SHELL CANADA PRODUCTS", + "uuid": "008b0a0e-01c4-4d7a-8eaf-ba863e70168f", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false }, { - "uuid": "b079f1de-1889-4078-b79e-8d666d07043e", + "uuid": "bbc0b03d-615c-445b-971d-bac02ae1be61", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "113cf492-cfcd-4b53-8f70-5e92b0223ec7", + "uuid": "d8244e62-dbb7-48f5-a2eb-c7f3776fbd32", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "uuid": "c1c5873b-44b5-4dc3-9e49-75ef916f9adf", + "createdAt": "2015-07-02", + "completed": "2022-10-03", + "initiated": "2023-03-09", + "ministryContact": "HOMENICK JUANA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "uuid": "994377cc-c1ad-40bd-bd0f-aae59890580c", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "uuid": "cc7a0d1d-d502-4fed-8caa-d36e939e32d9", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false }, { - "uuid": "af05a74c-5790-4cf9-be73-eb01634cf603", + "uuid": "c5654ee2-90ce-414f-a7a0-8f1545613a7d", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "e5d159c2-786c-4345-b0e9-a5730a29d529", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "uuid": "f19964c5-fa47-4239-a279-3e6eb929338b", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true } ], "participants": [ { - "uuid": "9f943528-462e-4f2a-9a7e-a92e62565bc3", - "name": "SHELL CANADA PRODUCTS", - "endDate": "2019-02-03", - "startDate": "2020-04-02", + "uuid": "61794ea1-f97f-4d4e-a030-945770f39fb1", + "name": "AMET, DOLOR SIT", + "endDate": "2019-02-27", + "startDate": "2019-12-13", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "uuid": "c3bfb7ff-eee5-4be9-b20f-ca9c9b10ed9c", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2020-06-06", + "startDate": "2015-01-01", + "notes": "", + "roles": [ + "ORGANIZATION" ], "siteRegistry": false }, { - "uuid": "0170ca96-405a-460f-86f0-57d0f3bd7078", + "uuid": "39d5ea08-4d79-4604-94cd-52b113cdcd1b", "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2023-04-19", - "startDate": "2020-06-24", + "endDate": "2020-02-18", + "startDate": "2019-09-14", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "13c4f480-5f1d-4b8f-816b-c56708d95aac", + "uuid": "6be42de6-c75d-4264-bb18-dad7e9405b45", "name": "SHELL CANADA PRODUCTS", - "endDate": "2019-10-30", - "startDate": "2014-10-27", + "endDate": "2019-06-19", + "startDate": "2018-06-30", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false + } + ], + "documents": [ + { + "uuid": "6afc822d-b21d-4ddc-9800-4ea2eba258d7", + "siteRegistry": false, + "documentDate": "2014-03-15", + "receivedDate": "2016-01-01", + "uploadedDate": "2019-10-10", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "2e09b732-a8fd-422f-9caa-51ff0b46b58c", + "name": "AMET, DOLOR SIT", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "0b0eac69-77e8-44c5-88b8-23721e06d650", + "name": "AMET, DOLOR SIT", + "siteRegistry": true, + "role": "AUTHOR" + } + ] + }, + { + "uuid": "0b676a93-690b-4909-a477-a66771761f75", + "siteRegistry": true, + "documentDate": "2022-01-30", + "receivedDate": "2015-12-06", + "uploadedDate": "2016-04-04", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "db8f47f2-a47a-42c1-9a7d-6f14156f0de6", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": true, + "role": "AUTHOR" + } + ] + }, + { + "uuid": "ed6c8b7c-6091-4713-9542-47ab1d5cff74", + "siteRegistry": true, + "documentDate": "2023-05-19", + "receivedDate": "2018-11-05", + "uploadedDate": "2019-06-09", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "838031f7-9faa-4274-8c63-107456a5d88e", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": false, + "role": "AUTHOR" + } + ] } ], "suspectLandUses": [ { - "uuid": "0d015882-1328-45f3-bd15-6d3b0465ad82", + "uuid": "30e09a3c-65de-41c9-ae1c-c809b2d392cc", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2023-03-03 (described on Site Profile dated 2023-03-03)", + "notes": "INSERTED FOR SITE PROFILE DATED 2019-03-22 (described on Site Profile dated 2019-03-22)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "uuid": "ad3f32e1-8549-4efb-a5dd-48832a54c49f", + "uuid": "741ea211-2842-4cef-9a56-b6595b219ce0", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-01-19 (described on Site Profile dated 2017-01-19)", + "notes": "INSERTED FOR SITE PROFILE DATED 2022-08-18 (described on Site Profile dated 2022-08-18)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "uuid": "b477bee1-13e1-4658-a997-c855a5e73754", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2015-08-03 (described on Site Profile dated 2015-08-03)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], "parcelDescriptions": [ { - "uuid": "049aa155-873f-4050-b50b-a0b1fc12d6b3", + "uuid": "56c770b1-8eab-4d53-9fd6-71d2af2100af", "siteRegistry": false, - "dateNoted": "2021-12-10", - "parcelID": "17188", - "crownLandUsePIN": "20052", - "crownLandFileNumber": "19495", - "landDescription": "LOT 1 OF LOT 3 BLOCK 4 DISTRICT LOT 3 PLAN 5926" + "dateNoted": "2022-06-27", + "parcelID": "15420", + "crownLandUsePIN": "18679", + "crownLandFileNumber": "19026", + "landDescription": "LOT 2 OF LOT 3 BLOCK 5 DISTRICT LOT 1 PLAN 7235" }, { - "uuid": "673a7fc0-77a8-4876-a0cd-77ef41695616", - "siteRegistry": false, - "dateNoted": "2018-03-08", - "parcelID": "19925", - "crownLandUsePIN": "18710", - "crownLandFileNumber": "15789", - "landDescription": "LOT 1 OF LOT 2 BLOCK 4 DISTRICT LOT 1 PLAN 8533" + "uuid": "93cf0516-d56a-4b23-aab0-7005d7a3ace7", + "siteRegistry": true, + "dateNoted": "2014-08-12", + "parcelID": "19440", + "crownLandUsePIN": "15630", + "crownLandFileNumber": "20929", + "landDescription": "LOT 5 OF LOT 5 BLOCK 1 DISTRICT LOT 1 PLAN 7318" }, { - "uuid": "980fc4bb-4034-4c38-a813-081784f1b161", - "siteRegistry": false, - "dateNoted": "2021-09-30", - "parcelID": "19038", - "crownLandUsePIN": "17074", - "crownLandFileNumber": "17908", - "landDescription": "LOT 2 OF LOT 3 BLOCK 4 DISTRICT LOT 3 PLAN 4681" + "uuid": "b79bdff0-b467-4b4d-a033-a43b30f47c67", + "siteRegistry": true, + "dateNoted": "2018-01-16", + "parcelID": "17291", + "crownLandUsePIN": "16392", + "crownLandFileNumber": "17690", + "landDescription": "LOT 2 OF LOT 3 BLOCK 1 DISTRICT LOT 4 PLAN 6136" }, { - "uuid": "e56d41ee-ecc1-4232-a3bd-9780564b7e30", - "siteRegistry": true, - "dateNoted": "2016-08-24", - "parcelID": "18804", - "crownLandUsePIN": "15810", - "crownLandFileNumber": "19148", - "landDescription": "LOT 5 OF LOT 4 BLOCK 1 DISTRICT LOT 5 PLAN 5038" + "uuid": "ffaba3cd-1d66-4649-a4c8-c93b44376daf", + "siteRegistry": false, + "dateNoted": "2014-07-01", + "parcelID": "18440", + "crownLandUsePIN": "19842", + "crownLandFileNumber": "19443", + "landDescription": "LOT 4 OF LOT 3 BLOCK 3 DISTRICT LOT 1 PLAN 9416" } ], "siteDisclosures": [ { - "uuid": "f260bcd0-f769-475d-bdea-537e57e9c77b", + "uuid": "eabd19b6-3fbc-4ae8-bf5e-fb6d99e46b4f", "siteRegistry": true, - "dateReceived": "2014-09-19", - "dateCompleted": "2014-08-25", - "dateEntered": "2021-12-26", - "dateRegistrar": "2020-10-23", - "dateLocalAuthorityReceived": "2018-07-15", - "summary": "Ea recusandae tenetur quibusdam assumenda temporibus dolores ipsum reiciendis.", - "informationUsed": "Eius deleniti maxime porro aspernatur quaerat.\nNobis quos praesentium tenetur neque necessitatibus voluptates.\nNatus laborum delectus earum.\nOfficia ad ratione.\nFacere dicta autem.", - "pastOrPresentOrders": "Consequuntur quos aspernatur provident eveniet.", + "dateReceived": "2021-10-02", + "dateCompleted": "2020-04-22", + "dateEntered": "2017-11-25", + "dateRegistrar": "2018-12-13", + "dateLocalAuthorityReceived": "2021-12-03", + "summary": "Ex architecto et doloribus harum.\nAmet natus quae vero ea blanditiis mollitia.", + "informationUsed": "Sequi iure harum voluptates optio non ullam aliquid.\nTotam ullam officiis officia voluptas.\nQuae distinctio corrupti ratione.\nAt dignissimos veniam minima molestias aut velit eveniet.\nDoloribus error blanditiis sapiente impedit.", + "pastOrPresentOrders": "Rerum natus reiciendis iure totam occaecati voluptatem fugiat dicta inventore.\nIncidunt repudiandae quas debitis hic quasi tempore.\nFacere officia vero harum aliquam ratione est cupiditate illum.", "commercialAndIndustrialPurposes": [ { - "uuid": "739e80e0-0594-448b-bdd1-e813b82a2740", - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true - }, - { - "uuid": "2f163266-33f2-44f4-a50e-d1394994e89c", - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true - }, - { - "uuid": "c3c03013-0e45-4306-89ba-c6074156aafe", + "uuid": "64d73e79-dcc7-494d-b33e-a0398653c805", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false }, { - "uuid": "ca3ae5e3-b0e3-4cd6-94a0-647d8f4fade0", + "uuid": "4db4d811-b58a-4144-8512-922dd7b9c0cb", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false } ] - }, - { - "uuid": "d79807c4-aaf0-4a54-9f32-eef15fe9e63b", - "siteRegistry": false, - "dateReceived": "2018-02-11", - "dateCompleted": "2015-03-23", - "dateEntered": "2017-02-16", - "dateRegistrar": "2017-03-09", - "dateLocalAuthorityReceived": "2023-10-10", - "summary": "Atque voluptas necessitatibus minus tempora nesciunt non nostrum impedit.", - "informationUsed": "Porro iure amet ipsa distinctio architecto nesciunt architecto.\nTotam odio magnam corporis.\nId molestias veritatis et rerum.\nOmnis doloribus ducimus adipisci dolore rerum totam corporis.", - "pastOrPresentOrders": "Doloremque placeat esse repellendus nihil laborum ipsa magni.\nOptio minima praesentium fuga recusandae voluptates ea fugiat earum.\nIncidunt ipsa ratione.", - "commercialAndIndustrialPurposes": [ - { - "uuid": "1d6e9e10-9d70-447c-bf4d-01b9c5b78566", - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false - }, - { - "uuid": "34e5b95d-6f15-47ed-807c-6cc19b2800b6", - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false - } - ] } ], "activityLog": [ { - "uuid": "72873b5c-1702-4e52-9fa2-b5e253a6b8e2", + "uuid": "92dff260-1164-40c8-870b-7cd69cc23e84", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "HUEL PAUL", + "timestamp": "2020-07-31" + }, + { + "uuid": "966ac6db-fd91-4b5b-85f5-d6751be29448", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "RIPPIN CONSUELO", + "timestamp": "2018-09-17" + }, + { + "uuid": "8f0cc8b8-4fe6-4738-926d-d819f1aaec46", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "LOCKMAN MICHELLE", - "timestamp": "2019-09-18" + "user": "BINS CAMYLLE", + "timestamp": "2015-05-31" }, { - "uuid": "84c1e5db-0d59-4885-bd64-567a3a7775a5", + "uuid": "6da71492-cdc9-4f07-85af-6c55c0f32189", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "BAHRINGER ESTRELLA", - "timestamp": "2020-10-08" + "user": "COLLIER TRESSA", + "timestamp": "2021-10-24" }, { - "uuid": "0bb5dd14-ec6a-49b5-805f-62ced4d8599b", + "uuid": "9ddffac1-63a4-4557-8f27-b64e14484d87", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "CREMIN SHAWNA", - "timestamp": "2019-07-20" + "user": "FEENEY DEANNA", + "timestamp": "2021-03-06" }, { - "uuid": "4ae62057-4103-430a-af7d-21423cf06842", + "uuid": "46655156-ff5d-42ea-adb0-e9f6fcc2ab85", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "KUHIC DARON", - "timestamp": "2018-09-25" + "user": "SCHROEDER CHRISTIAN", + "timestamp": "2020-12-21" }, { - "uuid": "5dd61f1f-65ab-48d7-8e0c-4cba1e8ccb94", - "siteRegistry": true, + "uuid": "c4755d9b-24d2-48c8-b966-6f0ee51e1192", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "BORER STEPHEN", - "timestamp": "2021-05-09" + "user": "HALVORSON MELVIN", + "timestamp": "2018-06-08" }, { - "uuid": "92d95342-93b8-47a7-9d5c-b7016a77437d", + "uuid": "1a54f608-ab51-4361-97be-7d3f3b86a26f", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "WELCH HADLEY", - "timestamp": "2022-03-31" + "user": "STREICH SOLON", + "timestamp": "2021-03-16" }, { - "uuid": "c49eff23-933a-4b40-bf13-ab4492ba0640", + "uuid": "363f7824-1a79-48aa-a189-336dc84c2a39", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "HEGMANN HANNA", - "timestamp": "2016-09-13" + "user": "POWLOWSKI BRANT", + "timestamp": "2018-09-25" + }, + { + "uuid": "d2c1e804-889b-4214-965a-7c58727555aa", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "PAUCEK BARBARA", + "timestamp": "2021-01-04" } ], "associatedSites": [ { - "uuid": "ec594576-418f-458d-8178-07e4decba1b9", - "dateNoted": "2014-08-17", - "notes": "", - "parcelID": "19688", - "siteID": "18395", - "siteRegistry": true - }, - { - "uuid": "0efa87ae-c8ec-45ac-a7e4-8b8af2b0f2d1", - "dateNoted": "2023-04-26", - "notes": "", - "parcelID": "17313", - "siteID": "16364", - "siteRegistry": false - }, - { - "uuid": "c15046a7-c245-4f30-8653-40772cc8088c", - "dateNoted": "2019-02-14", + "uuid": "b7ca91fb-ab56-4fa7-b7a8-67b708604b41", + "dateNoted": "2019-10-24", "notes": "", - "parcelID": "18557", - "siteID": "15432", + "parcelID": "18209", + "siteID": "18351", "siteRegistry": true } ] }, { - "uuid": "0f3e50d5-3f68-4e4b-a003-885566fd30fc", - "siteID": 19995, - "address": "42607 Hessel Flats", - "latitude": 51.1376, - "longitude": -136.2537, - "lastUpdated": "2013-12-24", - "city": "Longmont", - "region": "Kootenay", - "victoriaFile": "26250-20/5665", + "uuid": "1d146d9c-8252-46b2-ae48-afa2962b359a", + "siteID": 18229, + "address": "481 Scot Green", + "latitude": 54.3496, + "longitude": -127.5704, + "lastUpdated": "2022-01-23", + "city": "Satterfieldmouth", + "region": "Cariboo", + "victoriaFile": "26250-20/16675", "regionalFile": "N/A", "parcelIDs": [ - 1237349, - 9177098, - 574110, - 4068671, - 6177624 + 931301, + 3274962, + 3905196, + 6205684, + 7313932 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "4dd7933f-1df6-49df-93be-87851cdc0519", - "createdAt": "2021-02-03", - "completed": "2017-04-12", - "initiated": "2014-04-17", - "ministryContact": "PFANNERSTILL HILARIO", + "uuid": "4fca5cc1-553d-4277-8254-704abe0442ba", + "createdAt": "2023-01-09", + "completed": "2021-12-09", + "initiated": "2020-06-14", + "ministryContact": "BLANDA MIKE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -47370,47 +55315,13 @@ ], "notationParticipants": [ { - "uuid": "5434ebb4-2ccd-40e3-a261-29e718f04f65", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "uuid": "ca0886fe-269e-4012-8a8d-321f1d8045c7", + "uuid": "7fe7d3d2-d5ea-4678-b022-a1c540f79e1d", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "f2ceb073-4a89-4794-a319-acb52b35b2fd", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - } - ], - "siteRegistry": false - }, - { - "uuid": "1fe1a1fa-1f4f-4ff9-bfb3-fe3c7c8b4e76", - "createdAt": "2021-04-08", - "completed": "2022-10-21", - "initiated": "2014-12-15", - "ministryContact": "WEBER JOHATHAN", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "uuid": "9ea32eae-05de-488a-aae4-b2c901bca43d", - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "uuid": "d783a0f7-fa85-419c-b7fc-bdccbe7b26d5", + "uuid": "52d70e1d-2cb7-440d-9b66-c2183744c8f4", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false @@ -47419,11 +55330,11 @@ "siteRegistry": true }, { - "uuid": "1523ce47-4997-44f3-8e19-0ffbd3445b76", - "createdAt": "2022-06-26", - "completed": "2019-06-04", - "initiated": "2022-01-11", - "ministryContact": "REICHEL ZECHARIAH", + "uuid": "0ea2788b-77ac-406e-b97b-935714bab7e8", + "createdAt": "2022-11-22", + "completed": "2015-11-29", + "initiated": "2014-10-27", + "ministryContact": "KERLUKE MERRITT", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -47432,59 +55343,13 @@ ], "notationParticipants": [ { - "uuid": "e02ec13c-7f36-43a4-ab8d-2e953d917642", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "uuid": "e7a38a0e-08eb-488a-8c08-a5c99854b088", - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "uuid": "b07df638-3b0c-4073-b466-02121a740481", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "uuid": "28d339d7-7051-4c0e-af7c-b5e3fcb2ae76", - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "uuid": "77154509-a061-4ccb-a053-4565b0a56bb0", + "uuid": "68253e6d-01cd-4c3b-afde-29262af4bd27", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - } - ], - "siteRegistry": false - }, - { - "uuid": "be106ffa-d680-4fc5-96b0-c23d9655f547", - "createdAt": "2015-01-18", - "completed": "2018-10-17", - "initiated": "2014-11-07", - "ministryContact": "PAUCEK MAY", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "uuid": "274f79a3-f216-4efd-a501-4786d63b3684", - "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "e101a48f-6164-441b-b3d2-27c7c3b0b63e", + "uuid": "fe29e533-9769-4c86-b5df-9572509041f7", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true @@ -47493,11 +55358,11 @@ "siteRegistry": true }, { - "uuid": "e88cf42e-c747-4eaa-9846-ef2c1337b69a", - "createdAt": "2017-02-17", - "completed": "2017-04-13", - "initiated": "2021-06-15", - "ministryContact": "HILLS MARIBEL", + "uuid": "02eb11cb-81a7-4c60-9459-9c341999e961", + "createdAt": "2020-04-08", + "completed": "2020-02-29", + "initiated": "2020-04-11", + "ministryContact": "MERTZ ANGIE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -47506,34 +55371,34 @@ ], "notationParticipants": [ { - "uuid": "d07a4087-7064-46a6-a3ef-894bf6cf6e67", + "uuid": "ac78daa3-b9b6-4d30-95f8-c78379d728df", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "uuid": "37f13f74-109d-41a3-b8bd-41238a2741d5", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "7dc5e739-ca5e-4101-8c13-e2a91746d7cd", - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "58d32edf-9ce0-42d2-a66a-03ad2733d595", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "cf165e6c-beeb-44fd-b464-521084456933", + "uuid": "c744bec2-886e-4740-bcef-d3df4bea0f45", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "f16c4b67-8b87-4036-861b-9fb9d44d46a9", + "uuid": "bc6aa790-4982-4f5d-829e-3a4aae4e984a", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false + }, + { + "uuid": "03c83c82-f9f6-42c1-b519-a49814722f9d", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true } ], "siteRegistry": true @@ -47541,231 +55406,264 @@ ], "participants": [ { - "uuid": "8c5db168-19fa-4668-8892-058d8b581d9e", + "uuid": "37a8d293-f156-4585-9dc5-826631a805c5", "name": "IPSUM", - "endDate": "2023-07-16", - "startDate": "2015-04-21", + "endDate": "2017-11-30", + "startDate": "2019-06-19", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": false - }, - { - "uuid": "f0edbd52-2db7-4b4e-b528-70f50b6eeb5a", - "name": "AMET, DOLOR SIT", - "endDate": "2023-06-24", - "startDate": "2017-11-03", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "5d9e0e68-a789-4444-a295-3ef030110d56", + "uuid": "3ae8ab89-1093-457c-a4ae-897ae2c9bab1", "name": "IPSUM", - "endDate": "2017-04-08", - "startDate": "2023-05-10", + "endDate": "2018-06-20", + "startDate": "2020-03-26", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], - "siteRegistry": false - }, + "siteRegistry": true + } + ], + "documents": [ { - "uuid": "db934b60-332c-4913-9d7a-2cef3878cd51", - "name": "SHELL CANADA PRODUCTS", - "endDate": "2020-08-06", - "startDate": "2016-06-30", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": false + "uuid": "cf0a0614-9a83-48ef-ace3-67719b10deb2", + "siteRegistry": false, + "documentDate": "2015-11-04", + "receivedDate": "2015-02-01", + "uploadedDate": "2014-03-15", + "title": "Summary of Site Conditions, 1537 W 41st Avenue, Vancouver", + "participants": [ + { + "uuid": "c4cdcafd-d84f-43c4-9060-2f3269300071", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": false, + "role": "AUTHOR" + } + ] }, { - "uuid": "474c4324-bc3a-4401-b36d-f19926807387", - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2013-11-24", - "startDate": "2018-07-31", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": false + "uuid": "a65ad094-9e81-4cbc-b1e4-d9857f3f3cc1", + "siteRegistry": false, + "documentDate": "2017-11-29", + "receivedDate": "2022-02-05", + "uploadedDate": "2022-04-18", + "title": "Summary of Site Conditions, 1537 W 41st Avenue, Vancouver", + "participants": [ + { + "uuid": "958de0be-e142-4900-9557-732821d95cd3", + "name": "IPSUM", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "1e62abb3-04dd-4345-baf2-96139540abaf", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": false, + "role": "AUTHOR" + } + ] } ], "suspectLandUses": [ { - "uuid": "2b780fb7-4a59-4874-9ed8-39c5bab62c4a", + "uuid": "a931ce43-149f-4f4a-97be-fd178d29d306", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-06-15 (described on Site Profile dated 2019-06-15)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "notes": "INSERTED FOR SITE PROFILE DATED 2020-03-30 (described on Site Profile dated 2020-03-30)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "uuid": "6a0c30e8-c01c-4cd6-a364-a9fcf64b29a3", + "uuid": "04a84378-7ba2-46f7-b8a7-8b14bc7c3fb3", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-12-24 (described on Site Profile dated 2022-12-24)", + "notes": "INSERTED FOR SITE PROFILE DATED 2018-07-08 (described on Site Profile dated 2018-07-08)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], "parcelDescriptions": [ { - "uuid": "07c945d4-e7ba-4040-89b3-f8c4d89e6dec", - "siteRegistry": false, - "dateNoted": "2014-12-15", - "parcelID": "16924", - "crownLandUsePIN": "15767", - "crownLandFileNumber": "18319", - "landDescription": "LOT 2 OF LOT 3 BLOCK 2 DISTRICT LOT 4 PLAN 8038" + "uuid": "b1d060a6-1801-4846-92f2-28978a901cca", + "siteRegistry": true, + "dateNoted": "2021-01-09", + "parcelID": "15996", + "crownLandUsePIN": "17821", + "crownLandFileNumber": "17117", + "landDescription": "LOT 4 OF LOT 2 BLOCK 3 DISTRICT LOT 5 PLAN 9424" }, { - "uuid": "58c3520e-79e8-48d6-82a9-0d56b47d0d14", + "uuid": "37146295-370c-4ed6-a033-b09ddc91e067", "siteRegistry": true, - "dateNoted": "2014-11-27", - "parcelID": "16608", - "crownLandUsePIN": "16121", - "crownLandFileNumber": "18602", - "landDescription": "LOT 2 OF LOT 4 BLOCK 4 DISTRICT LOT 3 PLAN 6756" + "dateNoted": "2014-11-21", + "parcelID": "17266", + "crownLandUsePIN": "19178", + "crownLandFileNumber": "16672", + "landDescription": "LOT 3 OF LOT 5 BLOCK 1 DISTRICT LOT 5 PLAN 4082" + }, + { + "uuid": "d02ca5d0-d60b-480b-89b1-f13ead698fc8", + "siteRegistry": false, + "dateNoted": "2022-07-09", + "parcelID": "18578", + "crownLandUsePIN": "16796", + "crownLandFileNumber": "19093", + "landDescription": "LOT 4 OF LOT 1 BLOCK 4 DISTRICT LOT 5 PLAN 5832" } ], "siteDisclosures": [ { - "uuid": "b8a6fbc3-8126-4fcc-8a38-4ffa556dff67", + "uuid": "98df30d5-28fe-4658-9ad9-e172325c2d82", "siteRegistry": false, - "dateReceived": "2014-02-05", - "dateCompleted": "2014-11-04", - "dateEntered": "2018-01-15", - "dateRegistrar": "2016-11-17", - "dateLocalAuthorityReceived": "2019-04-16", - "summary": "Iste adipisci id eligendi labore recusandae quasi molestiae aperiam.\nDolore officiis autem libero ipsa mollitia voluptatum laudantium pariatur.\nQuisquam accusantium nobis sint officia mollitia.", - "informationUsed": "Reprehenderit reiciendis molestiae enim voluptatibus at.\nQuam modi quam.\nCommodi blanditiis voluptate nulla dolor architecto fugiat.", - "pastOrPresentOrders": "Aut sunt enim a.\nDistinctio voluptatem voluptates ullam soluta modi at quos asperiores hic.\nEnim expedita nesciunt earum assumenda.", + "dateReceived": "2017-04-09", + "dateCompleted": "2022-12-10", + "dateEntered": "2016-01-23", + "dateRegistrar": "2021-03-25", + "dateLocalAuthorityReceived": "2023-08-05", + "summary": "Libero vitae placeat aliquid vitae nihil.", + "informationUsed": "At necessitatibus aliquam esse quis eos voluptatum molestiae.\nVelit illum doloremque hic iure facere.\nNeque maxime voluptatibus et culpa cumque tempora quo eos quidem.", + "pastOrPresentOrders": "Placeat magni fugit sed fugit odit iste.", "commercialAndIndustrialPurposes": [ { - "uuid": "4f44ca7b-4847-4b5f-a3c1-00a1ad0302f6", + "uuid": "b05c4e0b-8fda-4a72-a569-5125a1fee5ed", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "uuid": "dc6a973b-6b02-4dad-a061-594e15baf325", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { - "uuid": "30e0f75a-32b7-4d90-b335-0de36a0f84cd", - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "uuid": "822643e7-5094-4795-be89-5e5b1fb2eaa4", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true } ] }, { - "uuid": "96dfa189-b36d-4f5a-be69-87deb2a6422d", - "siteRegistry": true, - "dateReceived": "2020-05-26", - "dateCompleted": "2014-02-22", - "dateEntered": "2021-08-07", - "dateRegistrar": "2022-06-26", - "dateLocalAuthorityReceived": "2022-12-02", - "summary": "Ad consequatur doloribus a recusandae.\nUt minima vel aperiam.\nOdit facilis debitis omnis ab ea exercitationem iste ex iusto.", - "informationUsed": "Praesentium ea doloribus autem aliquam nobis.\nDebitis incidunt excepturi nihil reprehenderit ut ipsa.\nFacere dolorum quos illum voluptatum temporibus vero.", - "pastOrPresentOrders": "Et veniam minima rerum alias consectetur harum distinctio.\nInventore quod quae.", + "uuid": "e04ebd3e-e9c7-4f8b-b249-a5183affd851", + "siteRegistry": false, + "dateReceived": "2016-10-20", + "dateCompleted": "2014-08-23", + "dateEntered": "2021-12-11", + "dateRegistrar": "2019-06-06", + "dateLocalAuthorityReceived": "2022-09-06", + "summary": "Ullam unde nobis nostrum iusto ipsam atque.\nOdio reiciendis dolores minima.", + "informationUsed": "Nam omnis tenetur blanditiis suscipit minima facere.\nEligendi id ipsum quam accusamus autem sit animi consequuntur.\nRem nemo exercitationem.\nTenetur amet voluptates ratione eos.", + "pastOrPresentOrders": "Praesentium neque alias illo voluptates eius quae autem nostrum.", "commercialAndIndustrialPurposes": [ { - "uuid": "660ce9fb-1ae0-4e1c-88a2-5683f01241eb", - "scheduleReference": "F1*", + "uuid": "5d7fb335-cc90-41d1-9224-2ff44a9d1fd4", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "b34c2298-54e0-4a19-9082-cd1a71f9bab5", - "scheduleReference": "F1*", + "uuid": "bb59b2df-5a9b-4fe5-b53b-50e76c9a10b1", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false + "siteRegistry": true + }, + { + "uuid": "93f61c1d-e553-4dfe-8669-090465b693ff", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "uuid": "61e6abdf-b3f3-44b5-885a-f33ac22caacf", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true } ] } ], "activityLog": [ { - "uuid": "fbb65219-de02-4eb7-bbb4-68bd3678687f", + "uuid": "b3a4e13c-e08f-49a0-985d-80f2ec9834f7", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "WOLFF AUBREE", + "timestamp": "2014-07-29" + }, + { + "uuid": "6fbd0e65-774f-4a5c-ba8c-cf5e14ee3d8c", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "BARTOLETTI CASEY", - "timestamp": "2020-05-31" + "user": "STEHR MAURINE", + "timestamp": "2016-08-28" }, { - "uuid": "ddc1bdfc-8775-4d6b-b42e-245df3134a8d", + "uuid": "41ab0f33-aaeb-4273-961c-9a7bc8f91909", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "ROGAHN CHRISTA", - "timestamp": "2019-01-23" + "user": "WARD MAUREEN", + "timestamp": "2020-06-25" }, { - "uuid": "3c69255c-2eda-484d-b3ea-d29e21e81be3", - "siteRegistry": false, + "uuid": "51b2b28f-2f35-43e0-aeb1-e42381c96a9d", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "RAYNOR-HAAG PERCIVAL", - "timestamp": "2019-07-31" + "user": "WISOZK PEARL", + "timestamp": "2015-04-30" }, { - "uuid": "2e5deab4-e278-4f80-a583-28bb0e91193c", + "uuid": "0736f340-a098-43b7-9ba0-edd814fe49a7", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "KOELPIN ELENA", - "timestamp": "2014-12-25" + "user": "KASSULKE MELANY", + "timestamp": "2019-11-24" }, { - "uuid": "4c2da16f-7ab0-4583-bf24-3bc3d2f0909f", - "siteRegistry": false, + "uuid": "a2febb02-249a-4c8e-b7a6-d1b2eadab220", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "BERGSTROM JEDIDIAH", - "timestamp": "2014-03-22" + "user": "ORN BERTA", + "timestamp": "2017-06-03" } ], "associatedSites": [ { - "uuid": "e869eeea-aec8-4401-ada6-47a8142aa8de", - "dateNoted": "2018-05-21", - "notes": "", - "parcelID": "16156", - "siteID": "18311", - "siteRegistry": true - }, - { - "uuid": "b462cb6b-b570-42ac-ab7c-64ce788c3dfd", - "dateNoted": "2016-08-02", + "uuid": "bc5837b3-0398-4398-b1ff-7dc33cc2943b", + "dateNoted": "2019-07-08", "notes": "", - "parcelID": "15629", - "siteID": "20626", + "parcelID": "20181", + "siteID": "16012", "siteRegistry": true } ] }, { - "uuid": "21a28d3a-6187-4b47-81e0-25568c38e2d3", - "siteID": 16017, - "address": "451 Tate Fall", - "latitude": 52.3354, - "longitude": -127.5588, - "lastUpdated": "2022-06-14", - "city": "Lake Daytonboro", - "region": "Cariboo", - "victoriaFile": "26250-20/6160", + "uuid": "f9109635-ee4c-4053-a406-e378251efc50", + "siteID": 20698, + "address": "872 Velda Corner", + "latitude": 53.7155, + "longitude": -136.0524, + "lastUpdated": "2022-05-02", + "city": "Fort Briana", + "region": "Thompson-Okanagan", + "victoriaFile": "26250-20/12506", "regionalFile": "N/A", "parcelIDs": [ - 3151156, - 4673688, - 1455326, - 5254544, - 7930094 + 1946081, + 3603877, + 5864567, + 6416987, + 5482208 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "9be9cf02-1ad0-40e6-b826-9c2e463fb873", - "createdAt": "2018-10-15", - "completed": "2022-08-19", - "initiated": "2016-06-01", - "ministryContact": "QUIGLEY CATALINA", + "uuid": "611e8b09-ca1a-4bbb-a419-1920d91e876c", + "createdAt": "2018-09-08", + "completed": "2022-03-15", + "initiated": "2016-01-11", + "ministryContact": "MARKS TANIA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -47774,42 +55672,20 @@ ], "notationParticipants": [ { - "uuid": "7b6b39a2-6f32-4049-8ea5-2c2ac3ab1f4b", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "uuid": "b87bd35e-bd83-450a-8a6f-30f8e778b08b", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "9a2c8fb9-804f-4da3-8f76-606e28bab9a3", + "uuid": "a2f8a12c-ac7e-47c1-a0d9-2e1a5b262aed", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false - } - ], - "siteRegistry": false - }, - { - "uuid": "bd993e0e-1211-4455-baf0-fa55a1a9b4f4", - "createdAt": "2023-03-11", - "completed": "2023-01-13", - "initiated": "2016-02-21", - "ministryContact": "BOGISICH TITO", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "uuid": "970cbee3-5ee9-43f3-a114-1e60cbae6c2a", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true }, { - "uuid": "1461d583-a9d2-40f0-aff9-93b0cb5b97fe", - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "a2b87e56-6a51-4786-ba66-b7fdb5e2d6f0", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true } @@ -47817,11 +55693,11 @@ "siteRegistry": true }, { - "uuid": "f57b4023-f8d5-4007-88b6-98b8b4fc3481", - "createdAt": "2014-09-20", - "completed": "2018-03-02", - "initiated": "2018-08-11", - "ministryContact": "LUETTGEN POLLY", + "uuid": "aecc496b-7340-4890-8a72-a38fda8ded3f", + "createdAt": "2020-05-28", + "completed": "2017-06-18", + "initiated": "2022-04-30", + "ministryContact": "STOKES LARUE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -47830,55 +55706,66 @@ ], "notationParticipants": [ { - "uuid": "b2fbef81-cea0-4d48-8bd2-63a806825d34", + "uuid": "1874a2ad-95a0-49bb-8852-0f506ac12311", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "cacf931f-0e68-4c79-bebd-62644ad365cc", + "uuid": "fbaac8be-6be2-434f-a6a5-48747510aefd", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "6b2e59d9-9a3c-4daf-ad82-34a4e76dcd29", + "uuid": "b9806d16-fb3e-4e6a-aced-3c3448dee8cc", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false } ], "participants": [ { - "uuid": "4dad9da6-376f-4902-80d0-dd3597ad635c", + "uuid": "f1ca377d-51fb-4b9b-b71e-cc983ec3aaad", "name": "IPSUM", - "endDate": "2014-06-04", - "startDate": "2018-01-05", + "endDate": "2015-02-27", + "startDate": "2018-01-24", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "9d71ce5e-42df-430e-8abc-821297a79d03", + "uuid": "7654e6c5-abc5-4d70-a42f-5a93e5ebe9a2", "name": "IPSUM", - "endDate": "2019-06-17", - "startDate": "2022-07-16", + "endDate": "2022-10-19", + "startDate": "2018-12-05", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "uuid": "1a2e2532-25b8-48c6-8591-7295578d1e59", + "name": "AMET, DOLOR SIT", + "endDate": "2020-08-15", + "startDate": "2014-08-16", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "478f3bf9-8aff-4c6b-964b-b530cbb2123e", + "uuid": "0fc4eb4c-8401-4bbd-9b17-34ecc7647b26", "name": "IPSUM", - "endDate": "2022-08-05", - "startDate": "2017-03-13", + "endDate": "2018-11-11", + "startDate": "2015-03-03", "notes": "", "roles": [ "ORGANIZATION" @@ -47886,210 +55773,253 @@ "siteRegistry": true } ], + "documents": [ + { + "uuid": "0ba83ada-7516-4748-a8b1-3e1efe555eb9", + "siteRegistry": false, + "documentDate": "2020-05-05", + "receivedDate": "2015-10-30", + "uploadedDate": "2017-01-15", + "title": "Preliminary Site Investigation, Detailed Site Investigation and Remedial Plan for the Management Area adjacent to the Shell Site at 1503 West 41st Ave", + "participants": [ + { + "uuid": "01077a00-667a-45a9-bbc2-1c5119dc3ad6", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "74ba94bf-58b4-457b-81dc-63d3419ab654", + "name": "IPSUM", + "siteRegistry": false, + "role": "AUTHOR" + } + ] + }, + { + "uuid": "161b8880-4b04-43c7-97d1-cc7cf586a353", + "siteRegistry": false, + "documentDate": "2023-09-27", + "receivedDate": "2021-11-01", + "uploadedDate": "2016-09-02", + "title": "Summary of Site Conditions, 1537 W 41st Avenue, Vancouver", + "participants": [ + { + "uuid": "26d6fbf2-0c1b-43d5-980a-2422f29794cc", + "name": "AMET, DOLOR SIT", + "siteRegistry": false, + "role": "AUTHOR" + } + ] + }, + { + "uuid": "c34df91c-57af-42e8-8375-50cc6c3dc5b4", + "siteRegistry": true, + "documentDate": "2021-08-23", + "receivedDate": "2015-05-28", + "uploadedDate": "2020-11-26", + "title": "Preliminary Site Investigation, Detailed Site Investigation and Remedial Plan for the Management Area adjacent to the Shell Site at 1503 West 41st Ave", + "participants": [ + { + "uuid": "114312c2-8643-4d8a-815b-1a269b2e8eb3", + "name": "IPSUM", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "392fd7e4-b9f3-4f7c-9c6a-c61b744ee22b", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": false, + "role": "AUTHOR" + } + ] + } + ], "suspectLandUses": [ { - "uuid": "6a5f9e2c-788e-4f76-90d2-3c63de67d3aa", + "uuid": "9b017808-4906-4cad-9de6-37945d9eaca7", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2020-04-28 (described on Site Profile dated 2020-04-28)", + "notes": "INSERTED FOR SITE PROFILE DATED 2019-11-01 (described on Site Profile dated 2019-11-01)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "uuid": "ceae6218-d6cb-4b26-bc75-d7059e1c357f", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2020-10-09 (described on Site Profile dated 2020-10-09)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "uuid": "a1190019-edf8-4683-a0a2-550468e7360e", + "uuid": "0c0fb4cb-d182-4388-9bbb-57f3d167f360", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-04-18 (described on Site Profile dated 2022-04-18)", + "notes": "INSERTED FOR SITE PROFILE DATED 2014-07-31 (described on Site Profile dated 2014-07-31)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "uuid": "cbfce622-bbb4-4583-9451-250b52168f0a", + "uuid": "313e88a1-0e91-4002-9210-76fad53dee27", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-09-10 (described on Site Profile dated 2016-09-10)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "notes": "INSERTED FOR SITE PROFILE DATED 2017-01-10 (described on Site Profile dated 2017-01-10)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "uuid": "a80b4dee-0d69-4deb-8951-5127598bf1a2", + "uuid": "3daf6a30-e0c3-46a4-8f62-4b55df390f22", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-02-20 (described on Site Profile dated 2021-02-20)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "notes": "INSERTED FOR SITE PROFILE DATED 2019-03-19 (described on Site Profile dated 2019-03-19)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], "parcelDescriptions": [ { - "uuid": "0234071e-9649-4f85-873a-26e461a63c2a", + "uuid": "27a5a1c5-08cc-4f6a-9307-4be3ada91d84", "siteRegistry": false, - "dateNoted": "2020-07-30", - "parcelID": "19629", - "crownLandUsePIN": "16692", - "crownLandFileNumber": "16428", - "landDescription": "LOT 2 OF LOT 3 BLOCK 5 DISTRICT LOT 5 PLAN 9370" + "dateNoted": "2019-09-08", + "parcelID": "17307", + "crownLandUsePIN": "19095", + "crownLandFileNumber": "16976", + "landDescription": "LOT 4 OF LOT 4 BLOCK 3 DISTRICT LOT 2 PLAN 4292" + }, + { + "uuid": "d19dfc87-ee00-41ad-9a32-bd1a2dc07d31", + "siteRegistry": false, + "dateNoted": "2020-04-17", + "parcelID": "20029", + "crownLandUsePIN": "19907", + "crownLandFileNumber": "18413", + "landDescription": "LOT 2 OF LOT 2 BLOCK 5 DISTRICT LOT 3 PLAN 6976" }, { - "uuid": "77738675-1676-4214-9c1b-c87efc73ad7c", + "uuid": "003b2ba3-4b7e-4953-9b79-2601cf479c61", "siteRegistry": true, - "dateNoted": "2017-10-23", - "parcelID": "15242", - "crownLandUsePIN": "20201", - "crownLandFileNumber": "19864", - "landDescription": "LOT 4 OF LOT 3 BLOCK 2 DISTRICT LOT 5 PLAN 6332" + "dateNoted": "2023-06-01", + "parcelID": "16047", + "crownLandUsePIN": "20076", + "crownLandFileNumber": "16794", + "landDescription": "LOT 1 OF LOT 5 BLOCK 5 DISTRICT LOT 3 PLAN 5437" }, { - "uuid": "6349d223-9e3c-4786-986b-9f4b2410cfb3", + "uuid": "24d90d0a-6209-481b-a112-33e0e3ce3f7e", "siteRegistry": false, - "dateNoted": "2018-04-26", - "parcelID": "17459", - "crownLandUsePIN": "18478", - "crownLandFileNumber": "17036", - "landDescription": "LOT 2 OF LOT 5 BLOCK 2 DISTRICT LOT 5 PLAN 7913" + "dateNoted": "2016-02-25", + "parcelID": "15446", + "crownLandUsePIN": "17048", + "crownLandFileNumber": "20559", + "landDescription": "LOT 2 OF LOT 1 BLOCK 2 DISTRICT LOT 3 PLAN 9748" } ], "siteDisclosures": [ { - "uuid": "dd00a50d-ea35-439e-a5df-c70be3e33797", - "siteRegistry": false, - "dateReceived": "2023-04-15", - "dateCompleted": "2015-04-19", - "dateEntered": "2014-06-24", - "dateRegistrar": "2014-08-11", - "dateLocalAuthorityReceived": "2020-05-03", - "summary": "Magnam quae exercitationem adipisci architecto et.\nNam necessitatibus dolorem.\nOptio assumenda reprehenderit iusto ipsam expedita suscipit aliquid impedit nulla.", - "informationUsed": "Quos atque neque quis aut velit rem eligendi ipsa vitae.\nCumque totam aut ut.\nMaxime fugiat saepe reiciendis alias voluptate fugit corrupti.", - "pastOrPresentOrders": "Dolore magnam suscipit facere provident possimus delectus est iste.\nCulpa rem corrupti labore quod.", + "uuid": "42c9e32b-cf79-4a32-b5f3-a4177355941c", + "siteRegistry": true, + "dateReceived": "2018-12-03", + "dateCompleted": "2023-05-19", + "dateEntered": "2018-07-25", + "dateRegistrar": "2019-09-27", + "dateLocalAuthorityReceived": "2016-08-11", + "summary": "Vero repellat eos optio dolores.\nOptio ut quidem et eos officia.\nPerferendis temporibus corrupti rerum reprehenderit sequi delectus.", + "informationUsed": "Unde in excepturi.\nConsequatur laborum nulla corporis ea consectetur fuga.\nDolore dolorum assumenda exercitationem commodi laudantium.", + "pastOrPresentOrders": "Animi commodi ab quos quo voluptatem expedita qui.\nEius ipsum iure nam asperiores dolorum.\nEius dolorum tenetur possimus quidem debitis porro officia nesciunt sit.", "commercialAndIndustrialPurposes": [ { - "uuid": "cba4ed54-4500-473a-a25d-63592f7d656c", + "uuid": "e435970b-d00b-438a-9623-bce481afc486", "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, { - "uuid": "4781f22c-ec57-4a7e-833b-f34032fad3f0", - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "uuid": "dec1be9b-42af-4633-b75d-301f0d673ab3", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { - "uuid": "5f74c82b-4079-43f4-8868-503d86dd6fa0", + "uuid": "9c304ae3-3502-4fc4-83bc-1c246f7f9aab", "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false - }, - { - "uuid": "07ec0680-919c-4350-8edc-88f54d174e71", - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true } ] } ], "activityLog": [ { - "uuid": "c80fc434-1cd0-4e94-bbf3-e4c3f73b704d", + "uuid": "4e8f81eb-9517-468a-82f6-608ef10cb96e", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "BOGAN MILAN", - "timestamp": "2019-09-10" - }, - { - "uuid": "c8459225-0b5f-49b0-8bbd-5101e099dece", - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "BERNHARD ELNORA", - "timestamp": "2023-01-17" + "user": "METZ BRISA", + "timestamp": "2017-05-01" }, { - "uuid": "f986ae97-2a79-4153-b738-feece3991645", + "uuid": "63426af6-6a38-4876-ad13-c9f1ad1347bf", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "LEDNER-BRAKUS FABIAN", - "timestamp": "2018-04-05" - }, - { - "uuid": "d57168df-6be7-4c31-953a-3e66615cdb32", - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "HANE VITO", - "timestamp": "2013-12-15" + "user": "PURDY RALPH", + "timestamp": "2016-11-06" }, { - "uuid": "805a7229-30c3-4113-b2dd-b0db757ef635", + "uuid": "1d5901c5-92c7-4182-a526-8bf3323aa792", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "BASHIRIAN ANAHI", - "timestamp": "2021-06-09" - }, - { - "uuid": "de489e56-93db-4d69-a7ad-6120a71aff83", - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "WUNSCH ALEK", - "timestamp": "2017-11-03" + "user": "TOWNE CORINE", + "timestamp": "2021-06-26" }, { - "uuid": "d3baab9a-a9c4-4335-b5e7-dfd9d7e4221f", + "uuid": "1e48cb20-5d17-42d1-beb1-7174505214a1", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "FISHER AVIS", - "timestamp": "2023-07-28" - }, - { - "uuid": "9cff013a-8ec5-454e-84f0-661f1bc79c30", - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "WILL TERENCE", - "timestamp": "2016-10-31" + "user": "NIKOLAUS-VEUM GAYLE", + "timestamp": "2017-12-19" }, { - "uuid": "0620da38-0337-416d-90b9-dcfda8af6b4d", + "uuid": "e396d695-5da4-4554-8c9c-7fec01c77aba", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "KERTZMANN SHANY", - "timestamp": "2017-01-28" + "user": "FAHEY LULA", + "timestamp": "2022-04-16" }, { - "uuid": "41e4774f-8f17-4cc5-8f3c-ccf5d81c5024", + "uuid": "1a0743ed-9479-47e6-a484-942d787655a8", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "DOYLE JUDD", - "timestamp": "2023-06-25" + "user": "BEER CHAD", + "timestamp": "2016-05-10" } ], "associatedSites": [ { - "uuid": "942184ad-b15b-487e-9b1e-bc02179cb7ec", - "dateNoted": "2022-08-04", + "uuid": "6223d77f-a725-4bb1-8565-4c2ec8ed7787", + "dateNoted": "2014-02-05", "notes": "", - "parcelID": "16257", - "siteID": "20536", - "siteRegistry": false + "parcelID": "18941", + "siteID": "19330", + "siteRegistry": true } ] }, { - "uuid": "4f77cf8e-09a9-4f53-8248-96f04e95b2a1", - "siteID": 15212, - "address": "541 Nikolaus Junction", - "latitude": 57.5079, - "longitude": -136.7904, - "lastUpdated": "2021-07-31", - "city": "Gastonia", - "region": "Mainland/Southwest", - "victoriaFile": "26250-20/7966", + "uuid": "dcae3983-4568-42c4-8c83-b58332f69a34", + "siteID": 19149, + "address": "330 Lauren Path", + "latitude": 50.6818, + "longitude": -126.5109, + "lastUpdated": "2023-05-14", + "city": "West Madgeside", + "region": "Kootenay", + "victoriaFile": "26250-20/16963", "regionalFile": "N/A", "parcelIDs": [ - 4951660, - 4461934, - 1688213, - 9670690, - 8614450 + 977410, + 520103, + 2337012, + 9693579, + 8832651 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "9ffcc903-e57c-468d-a7ee-4f7ec21bbf07", - "createdAt": "2014-08-27", - "completed": "2022-03-12", - "initiated": "2020-03-22", - "ministryContact": "NITZSCHE HALEY", + "uuid": "8e2031ab-fbfd-4708-aab4-0ab977201abe", + "createdAt": "2020-05-17", + "completed": "2021-05-14", + "initiated": "2018-01-22", + "ministryContact": "FRANECKI MARA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -48098,44 +56028,66 @@ ], "notationParticipants": [ { - "uuid": "d86dae3c-28f8-46f4-bda5-21e83c95a7b1", + "uuid": "7dcb7cf5-45f4-42ab-b593-b80e9cbcbfbf", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "3faff3cc-a1e5-4043-a217-8d47ae161980", - "name": "SHELL CANADA PRODUCTS", + "uuid": "5e0ffa70-1dcb-4658-8091-57ddf23f5b81", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true - }, + } + ], + "siteRegistry": true + }, + { + "uuid": "8bfc319a-ab63-4ea6-b367-9921da136a5b", + "createdAt": "2019-07-24", + "completed": "2016-12-10", + "initiated": "2021-06-23", + "ministryContact": "LAKIN KENNY", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ { - "uuid": "b2d4bff6-4aad-43d0-b205-595b305d21a3", + "uuid": "f93054e4-2623-4fe1-971e-8605fa312eed", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "01cf7e4b-6319-4efc-9f5f-fd20ebd13df2", + "uuid": "20611dc1-62a9-4f0f-999c-555e2b38739c", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "8a4add04-3a88-480d-9891-9a40200b6dcc", - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "5efc2f07-263f-4191-bc4e-a6301d7d7479", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false + }, + { + "uuid": "ccc00ddd-b889-449c-aeb7-855afedf52ed", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false } ], "siteRegistry": true }, { - "uuid": "c82a6526-f6bb-4ab7-af01-6613948719a4", - "createdAt": "2016-04-11", - "completed": "2019-08-20", - "initiated": "2014-12-27", - "ministryContact": "NIENOW-CRONA ZORA", + "uuid": "8ec29d1e-ed03-440c-8cee-212ff04fb474", + "createdAt": "2016-01-05", + "completed": "2017-11-25", + "initiated": "2020-07-14", + "ministryContact": "KONOPELSKI MADDISON", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -48144,32 +56096,44 @@ ], "notationParticipants": [ { - "uuid": "4d877168-9a69-41d4-b3be-4cabd7c638fd", - "name": "SHELL CANADA PRODUCTS", + "uuid": "57140b9a-538d-4fe6-8ce8-f88f17733677", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "971ace4a-e760-4336-b087-0b356f060ca8", + "uuid": "ad1d8a2c-a09d-4c52-82b5-aa42bbeca550", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "c82d2b9a-a970-463a-81ee-c81414e8bda4", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "4cbd66b4-86ab-4ec1-8b41-727c1344e4a9", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "7279af83-e0b9-4e79-88be-09b681fca826", + "uuid": "97b821e8-f84a-4db9-aa26-025ade626130", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "5a3e2f22-2c69-40cc-8fdb-7ab84bb8e596", - "createdAt": "2020-11-09", - "completed": "2021-04-11", - "initiated": "2020-06-19", - "ministryContact": "DICKENS NEDRA", + "uuid": "acb93ceb-38c7-44c9-95e2-2fcc371e8007", + "createdAt": "2021-04-04", + "completed": "2016-03-10", + "initiated": "2017-01-02", + "ministryContact": "THIEL COLBY", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -48178,27 +56142,73 @@ ], "notationParticipants": [ { - "uuid": "e2c6b487-a858-41b7-b77a-4980016f9e36", - "name": "SHELL CANADA PRODUCTS", + "uuid": "06b10b2f-c586-46ef-8b98-a10f2fed8bba", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "cb5f2c78-f437-46ac-bdc6-1bc77a2194bc", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "uuid": "ea70b697-d186-4723-805b-b953b2a27698", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "uuid": "4830b200-5c82-48f6-b2b4-ae3a0c2094a3", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": true }, { - "uuid": "93e3e9d7-21ec-45c7-b9c9-67350bea06de", + "uuid": "7f28b9ef-7551-45c6-93e6-041a2122229d", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true } ], "siteRegistry": false + }, + { + "uuid": "de485b7d-cc36-43fe-8cc2-3b786e511986", + "createdAt": "2017-01-17", + "completed": "2019-12-16", + "initiated": "2019-03-06", + "ministryContact": "KUHIC KIRSTEN", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "uuid": "67ab08df-a4e5-478e-a88e-df811793839e", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "94df4ec0-53ca-4020-afff-d0a3c6131450", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true } ], "participants": [ { - "uuid": "8dd0f3a8-d7b8-468b-9525-9f04babaad32", - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2016-02-24", - "startDate": "2015-01-21", + "uuid": "620f81cc-24af-4dd3-a5c0-e3c7375172c0", + "name": "IPSUM", + "endDate": "2020-09-06", + "startDate": "2014-10-08", "notes": "", "roles": [ "ORGANIZATION" @@ -48206,244 +56216,315 @@ "siteRegistry": true }, { - "uuid": "455e8b89-a778-4788-8a74-4cd38641fe53", - "name": "AMET, DOLOR SIT", - "endDate": "2014-12-15", - "startDate": "2020-11-30", + "uuid": "fff6e1de-9677-4424-b186-b35960b9c135", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2018-11-22", + "startDate": "2021-07-26", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": false + }, + { + "uuid": "9816974a-7ed7-4daa-8b6b-dd9cabf770e5", + "name": "IPSUM", + "endDate": "2019-02-02", + "startDate": "2020-07-16", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + } + ], + "documents": [ + { + "uuid": "98613bb6-6bd6-4a8d-880e-8542c2f3575c", + "siteRegistry": true, + "documentDate": "2019-08-05", + "receivedDate": "2018-07-21", + "uploadedDate": "2016-09-14", + "title": "Preliminary Site Investigation, Detailed Site Investigation and Remedial Plan for the Management Area adjacent to the Shell Site at 1503 West 41st Ave", + "participants": [ + { + "uuid": "b1c9c2c6-47bc-4998-8160-07cb3a513898", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "981cd136-655a-4a0a-b072-10e0bc88e20e", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": false, + "role": "AUTHOR" + } + ] + }, + { + "uuid": "6c7448e7-b714-4d50-ba24-364503942f31", + "siteRegistry": true, + "documentDate": "2019-07-28", + "receivedDate": "2020-05-06", + "uploadedDate": "2023-03-08", + "title": "Summary of Site Conditions, 1537 W 41st Avenue, Vancouver", + "participants": [ + { + "uuid": "293e4780-81e5-431d-99fc-1926c3c20357", + "name": "IPSUM", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "a767bd5c-f572-4641-bf53-979bd71eedc7", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": true, + "role": "AUTHOR" + } + ] } ], "suspectLandUses": [ { - "uuid": "89b02154-9217-409e-b5f8-197aa3c6429e", + "uuid": "adfd936e-f4df-4211-b352-705832542d3d", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2020-05-06 (described on Site Profile dated 2020-05-06)", + "notes": "INSERTED FOR SITE PROFILE DATED 2019-09-03 (described on Site Profile dated 2019-09-03)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "uuid": "4e24b684-5d0d-44dc-b885-0c35d1316ca6", + "uuid": "1a38879f-62ce-4e71-89f2-0d8b97453565", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2020-12-01 (described on Site Profile dated 2020-12-01)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "uuid": "56d30f51-2c0c-497f-a079-8ea30880ed8f", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-09-30 (described on Site Profile dated 2015-09-30)", + "notes": "INSERTED FOR SITE PROFILE DATED 2017-11-07 (described on Site Profile dated 2017-11-07)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "uuid": "12f08598-47ff-46c1-9c38-2db1794122c9", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2023-01-27 (described on Site Profile dated 2023-01-27)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], "parcelDescriptions": [ { - "uuid": "72579ff6-8b62-4397-9e9f-dab80cb4efa9", - "siteRegistry": true, - "dateNoted": "2021-10-31", - "parcelID": "18149", - "crownLandUsePIN": "17547", - "crownLandFileNumber": "15527", - "landDescription": "LOT 3 OF LOT 3 BLOCK 3 DISTRICT LOT 4 PLAN 7843" + "uuid": "210a0470-3c65-4ffe-897d-388cf63f3ddb", + "siteRegistry": false, + "dateNoted": "2018-09-04", + "parcelID": "19835", + "crownLandUsePIN": "17536", + "crownLandFileNumber": "18443", + "landDescription": "LOT 1 OF LOT 2 BLOCK 3 DISTRICT LOT 5 PLAN 6553" }, { - "uuid": "293f393f-a831-4b07-b16e-dea3529fe2e4", - "siteRegistry": false, - "dateNoted": "2014-02-02", - "parcelID": "16512", - "crownLandUsePIN": "19954", - "crownLandFileNumber": "19128", - "landDescription": "LOT 2 OF LOT 4 BLOCK 3 DISTRICT LOT 4 PLAN 7553" + "uuid": "f27e4a5d-dde0-467a-a7a4-ab10ce855471", + "siteRegistry": true, + "dateNoted": "2016-02-09", + "parcelID": "19004", + "crownLandUsePIN": "16028", + "crownLandFileNumber": "19801", + "landDescription": "LOT 4 OF LOT 5 BLOCK 5 DISTRICT LOT 1 PLAN 7556" }, { - "uuid": "0f21d30e-7cb2-4156-bef4-2e167cdc605b", + "uuid": "07d49ed3-5c00-4917-bac7-cf64b9b85dad", "siteRegistry": false, - "dateNoted": "2021-04-21", - "parcelID": "18498", - "crownLandUsePIN": "20429", - "crownLandFileNumber": "18925", - "landDescription": "LOT 5 OF LOT 3 BLOCK 1 DISTRICT LOT 4 PLAN 6310" + "dateNoted": "2017-09-10", + "parcelID": "15653", + "crownLandUsePIN": "17334", + "crownLandFileNumber": "16425", + "landDescription": "LOT 4 OF LOT 5 BLOCK 5 DISTRICT LOT 3 PLAN 5088" }, { - "uuid": "7a906026-fdd1-4e4b-a0c7-8439474ea29d", - "siteRegistry": false, - "dateNoted": "2023-04-09", - "parcelID": "16248", - "crownLandUsePIN": "19058", - "crownLandFileNumber": "19365", - "landDescription": "LOT 1 OF LOT 3 BLOCK 4 DISTRICT LOT 1 PLAN 5818" + "uuid": "034eabdf-76b8-43a5-9380-1d79fd7546b0", + "siteRegistry": true, + "dateNoted": "2016-02-28", + "parcelID": "19605", + "crownLandUsePIN": "16271", + "crownLandFileNumber": "17214", + "landDescription": "LOT 2 OF LOT 4 BLOCK 5 DISTRICT LOT 5 PLAN 6451" } ], "siteDisclosures": [ { - "uuid": "19f04313-106b-47bb-8f2e-26ce0c9f6713", + "uuid": "8e1e1e3d-44cf-4c8a-85a8-9dfe0d7b14df", "siteRegistry": true, - "dateReceived": "2016-08-13", - "dateCompleted": "2023-01-22", - "dateEntered": "2015-12-20", - "dateRegistrar": "2022-03-28", - "dateLocalAuthorityReceived": "2014-03-14", - "summary": "Veritatis voluptas non ex laborum consequuntur architecto cum.\nQuas saepe quo vel ipsam.", - "informationUsed": "Repellat non delectus corrupti.\nPariatur dolor placeat facere iusto dicta rerum.\nBlanditiis nemo ipsum laboriosam eos alias saepe sunt.", - "pastOrPresentOrders": "Officia beatae eligendi magni est tempore.\nInventore laudantium aliquam.", + "dateReceived": "2019-10-15", + "dateCompleted": "2019-05-21", + "dateEntered": "2022-09-09", + "dateRegistrar": "2018-11-30", + "dateLocalAuthorityReceived": "2020-09-11", + "summary": "Laborum quam optio maxime voluptas.\nCorporis beatae earum laborum quo assumenda maiores error rem dignissimos.\nAmet tempore sint animi voluptatem.", + "informationUsed": "Eveniet quod libero necessitatibus illum deserunt.\nFacere culpa omnis ipsa minus odio magni fugit.\nAutem pariatur asperiores incidunt omnis sapiente.\nNatus voluptate incidunt deleniti laborum nisi corporis.", + "pastOrPresentOrders": "Adipisci quis quaerat fugit esse deleniti deserunt autem id fugiat.\nVoluptate repellendus delectus quae est iure atque libero cumque.\nBlanditiis vitae minima debitis fugit sit ipsum.", "commercialAndIndustrialPurposes": [ { - "uuid": "0413c690-082f-467d-83e5-2577074bde3d", + "uuid": "be467934-836b-4887-a571-8f08d6dfb25f", "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false - }, - { - "uuid": "8132ed4c-2ab4-4738-8269-e19c1c138ddf", - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { - "uuid": "f69806f4-047c-46ae-aa26-1a533d1f2c5f", - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "uuid": "b197fa66-7c8f-47b8-aafe-6f0afb0fa51f", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false }, { - "uuid": "5600599d-5284-4e97-8af4-dd0499a956ff", + "uuid": "8656c9c7-9050-4490-bc18-27fd81ccf44e", "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true } ] }, { - "uuid": "4b418223-6670-4ed5-b958-dc8c9b1f6f60", + "uuid": "7cffc96f-bcb3-4e79-9e7b-bf907512c7cb", "siteRegistry": true, - "dateReceived": "2017-08-28", - "dateCompleted": "2020-04-10", - "dateEntered": "2018-04-14", - "dateRegistrar": "2018-01-08", - "dateLocalAuthorityReceived": "2022-12-17", - "summary": "Nesciunt exercitationem quisquam fuga nisi suscipit consequuntur a temporibus.\nDolorum excepturi ipsa.", - "informationUsed": "Beatae illo cum sequi ipsam distinctio tenetur.\nQuam sunt minus eum.\nEaque cupiditate minima alias optio impedit nemo mollitia deleniti.\nAtque dignissimos animi velit molestiae.", - "pastOrPresentOrders": "Incidunt numquam asperiores ipsa.\nExplicabo et animi hic ipsa exercitationem voluptate fuga voluptate.\nFacilis corporis corporis ut laborum voluptatum explicabo nam deleniti porro.", + "dateReceived": "2014-12-20", + "dateCompleted": "2020-02-26", + "dateEntered": "2013-10-27", + "dateRegistrar": "2018-09-17", + "dateLocalAuthorityReceived": "2021-11-07", + "summary": "Similique ipsa esse dolores quam nesciunt.\nNulla autem non optio minus.", + "informationUsed": "Quos quos quaerat blanditiis libero eum ratione natus.\nTenetur occaecati corrupti tenetur.\nConsequuntur cupiditate repellat optio eum rerum saepe laborum.", + "pastOrPresentOrders": "Eius est temporibus.", "commercialAndIndustrialPurposes": [ { - "uuid": "01fd8462-35f3-4947-b2e6-d2b47cf9874c", + "uuid": "b382183f-63f1-4ba3-a763-f877a4ef6dea", "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { - "uuid": "43068b81-f5dc-4775-9bd1-73dd301f905b", - "scheduleReference": "F1*", + "uuid": "abaa0d9a-13c2-4352-870a-2b34cab52c24", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { - "uuid": "325bd203-74a4-4122-ad0f-e93f60fcb9ef", + "uuid": "d1f4f4e9-2cd3-4bef-88bc-dda1b0a8f20c", "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false } ] } ], "activityLog": [ { - "uuid": "86391b7d-6b46-40b6-9a4b-202141f82b7b", + "uuid": "10ba96d9-5822-4151-abc9-aa5e5e6592e2", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "ARMSTRONG-LEUSCHKE DONALD", - "timestamp": "2014-09-15" + "user": "BEER NATHANAEL", + "timestamp": "2021-02-13" }, { - "uuid": "71247c27-1bfb-4b80-85fe-32cb21ec3db7", - "siteRegistry": true, + "uuid": "55a5164a-44d2-4051-8177-9ffb5bbb7022", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "KESSLER CRYSTEL", - "timestamp": "2020-06-27" + "user": "BROWN THALIA", + "timestamp": "2017-06-23" }, { - "uuid": "c78a3f90-ce94-4ce9-bd78-fbb1c1f6c517", - "siteRegistry": false, + "uuid": "86dd18e0-5336-4290-8dfa-2fb35fdba8dc", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "BEIER SOLEDAD", - "timestamp": "2017-06-11" + "user": "LEANNON ZION", + "timestamp": "2023-05-05" }, { - "uuid": "87598dd6-0b60-4e2d-8d7b-7d2bb932beb7", + "uuid": "905fa03a-d334-4362-98f3-1d63aeb389b7", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "BARTOLETTI DEVIN", - "timestamp": "2016-11-08" + "user": "MAGGIO HASSIE", + "timestamp": "2023-06-10" }, { - "uuid": "11500e14-35ca-4f33-b04a-06a27cd91427", + "uuid": "5eac1bab-3f9e-4ab4-9f6d-4a1bb503ab84", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "MARVIN ADRAIN", - "timestamp": "2017-09-05" + "user": "SAUER CLOVIS", + "timestamp": "2023-05-11" }, { - "uuid": "a1fc24b9-e7fa-4f82-b756-08dbb430acc4", - "siteRegistry": true, + "uuid": "125ce6da-a47d-4679-a7bb-47a49e86c339", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "RAYNOR GASTON", - "timestamp": "2023-10-01" + "user": "LOCKMAN LAUREL", + "timestamp": "2015-01-22" }, { - "uuid": "453121b8-989d-4874-a5be-07455f40c634", - "siteRegistry": true, + "uuid": "28cc74e3-8d82-4ceb-996f-723d4e0443de", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "NICOLAS SYDNI", - "timestamp": "2014-08-30" + "user": "CRONA HAILIE", + "timestamp": "2015-01-25" }, { - "uuid": "bddfaf70-e5bc-455f-b68c-82b31d004cda", + "uuid": "e9d74cd9-7c52-426c-90f5-44c541de32bd", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "KREIGER DUNCAN", - "timestamp": "2019-04-16" + "user": "RUSSEL GLADYS", + "timestamp": "2014-05-27" } ], "associatedSites": [ { - "uuid": "087f7fba-9c7b-4e44-987e-3a8bea228044", - "dateNoted": "2014-10-31", + "uuid": "96846f39-9aad-4ad2-80d6-624cd2bde086", + "dateNoted": "2018-10-05", + "notes": "", + "parcelID": "19115", + "siteID": "18981", + "siteRegistry": false + }, + { + "uuid": "12263cb0-fab4-4ea1-9708-7ed711eace89", + "dateNoted": "2014-03-15", "notes": "", - "parcelID": "18497", - "siteID": "17371", + "parcelID": "18293", + "siteID": "18365", "siteRegistry": true }, { - "uuid": "23f04491-d336-49b2-8e5f-feabca2328ea", - "dateNoted": "2017-01-15", + "uuid": "546ab45e-6a62-4b3e-a876-6fbfe9d1fadb", + "dateNoted": "2021-12-12", "notes": "", - "parcelID": "17379", - "siteID": "20942", + "parcelID": "16716", + "siteID": "18824", "siteRegistry": false } ] }, { - "uuid": "24e219c5-3c03-482b-bc52-55c17ad13619", - "siteID": 20154, - "address": "18017 Fadel Mountain", - "latitude": 54.0723, - "longitude": -136.4067, - "lastUpdated": "2014-09-22", - "city": "East Cleve", - "region": "Mainland/Southwest", - "victoriaFile": "26250-20/1853", + "uuid": "c410bfcf-3959-4e98-9ce2-ba93dca4ee7a", + "siteID": 19619, + "address": "37954 Israel Place", + "latitude": 58.9302, + "longitude": -136.0838, + "lastUpdated": "2014-07-26", + "city": "Brekketon", + "region": "Kootenay", + "victoriaFile": "26250-20/5453", "regionalFile": "N/A", "parcelIDs": [ - 3988489, - 7009346, - 2104810, - 6063292, - 145484 + 6553799, + 7440620, + 4774490, + 3747746, + 3696741 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "3e4b2a5f-a78b-4cc8-889e-90ae21b6f08e", - "createdAt": "2023-02-14", - "completed": "2015-03-19", - "initiated": "2020-09-19", - "ministryContact": "BERGE ASHTYN", + "uuid": "24d6025a-9855-4cbf-9dce-7cd95dc5d173", + "createdAt": "2023-03-31", + "completed": "2015-05-03", + "initiated": "2023-05-18", + "ministryContact": "WITTING TREMAYNE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -48452,32 +56533,72 @@ ], "notationParticipants": [ { - "uuid": "cdf9eb01-a6ab-4eaa-bc11-5e1d37b4cc5c", + "uuid": "e11a3795-d554-4af0-a7f4-d455a805e737", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false }, { - "uuid": "3b6e0e41-dd47-4d53-b6ca-627b0b0d7ec2", + "uuid": "815a5d7c-8e1d-420c-98a9-c91105b99156", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "uuid": "8c9e76dd-c940-4c53-bdaa-157a3e716dd4", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "6a7e4649-1b45-4be6-b864-f729044a759f", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": false }, { - "uuid": "d32c93ac-875a-4502-8893-e6c3d6ca3151", + "uuid": "a8d6c419-32d6-4809-b8fc-9609201e888b", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "uuid": "4a1d0de6-da4f-482c-bee4-4e31b1f75a6c", + "createdAt": "2019-11-11", + "completed": "2018-02-21", + "initiated": "2021-12-21", + "ministryContact": "HEGMANN GEORGIANNA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "uuid": "e7ff3835-a9de-4f6b-ad4f-c6de164ac8e9", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true + }, + { + "uuid": "c4a9fedf-9081-4564-9e6f-032640074111", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true } ], "siteRegistry": true }, { - "uuid": "cd2e5ebf-5e27-4119-aeb4-e38314c98c37", - "createdAt": "2013-11-26", - "completed": "2022-08-03", - "initiated": "2020-12-16", - "ministryContact": "MUELLER SAMMIE", + "uuid": "59288350-19e0-49a5-8f16-e05c8df3e758", + "createdAt": "2023-01-21", + "completed": "2020-11-10", + "initiated": "2021-10-06", + "ministryContact": "RENNER CATALINA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -48486,28 +56607,74 @@ ], "notationParticipants": [ { - "uuid": "796afda4-6749-4f52-a082-b1447f69def2", + "uuid": "c054bc62-2c3a-4d4d-b906-047a2147fff2", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "35bb09a9-fcb2-4756-85cf-1304e5a75a7b", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "uuid": "267d4539-63c8-4add-bb9c-821dff41c379", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "5a309493-d9c9-4c5d-8038-35db51ffa77e", + "uuid": "31137587-1901-4c7a-bb59-e446850c2d0d", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true - }, + } + ], + "siteRegistry": false + }, + { + "uuid": "6b21c1a1-a3f4-4521-ae5e-7e9eaeba001b", + "createdAt": "2017-11-06", + "completed": "2015-07-03", + "initiated": "2019-11-05", + "ministryContact": "SWANIAWSKI ERVIN", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ { - "uuid": "6c6f8a6e-5b1c-48f1-8ae5-c287a90bbcaf", + "uuid": "7fe2e2d8-f6d6-4c74-8d7f-01451158db3a", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false }, { - "uuid": "ed8abf29-c03a-451e-9d9b-8e2fddc77688", + "uuid": "52a557e6-ad99-4073-9e48-074a4e7dc9f0", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "1d743919-84d0-4b8b-bdc9-4123fa7c86de", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false + }, + { + "uuid": "72f9251a-12e2-4534-b4f2-c7a76f7604e5", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "8ef5cddb-11dc-4e70-8aa9-7e6d8207186f", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false } ], "siteRegistry": false @@ -48515,154 +56682,188 @@ ], "participants": [ { - "uuid": "5bf73f2f-85dc-495a-b017-4c55ae223b7f", - "name": "SHELL CANADA PRODUCTS", - "endDate": "2015-10-18", - "startDate": "2023-04-09", + "uuid": "023fef47-beef-4c43-be78-88ab63f48e55", + "name": "AMET, DOLOR SIT", + "endDate": "2020-06-22", + "startDate": "2019-04-13", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": true }, { - "uuid": "a71fc5e9-5a10-40d0-8efa-2872af2c4249", + "uuid": "626dfd87-f15c-4f5b-a18a-bce75e833ccc", "name": "IPSUM", - "endDate": "2021-08-04", - "startDate": "2017-03-19", + "endDate": "2021-11-14", + "startDate": "2022-06-07", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": false }, { - "uuid": "4627a41c-27a5-4aae-b46f-5b8d101c1a01", - "name": "SHELL CANADA PRODUCTS", - "endDate": "2017-04-26", - "startDate": "2014-12-12", + "uuid": "b145969e-df02-496a-b0dc-d7f369a9685a", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2021-06-05", + "startDate": "2023-08-05", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "6cbf71b9-ad13-469a-840f-05e1ae28ccc4", - "name": "SHELL CANADA PRODUCTS", - "endDate": "2015-03-31", - "startDate": "2022-07-03", + "uuid": "881fa44c-b615-4f0d-a110-7001de5fd46e", + "name": "IPSUM", + "endDate": "2017-02-11", + "startDate": "2015-07-23", "notes": "", "roles": [ "ORGANIZATION" ], "siteRegistry": false + }, + { + "uuid": "48a77cb3-e643-480a-83ba-6ba16db46ad0", + "name": "IPSUM", + "endDate": "2021-11-11", + "startDate": "2019-03-01", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false } ], - "suspectLandUses": [ + "documents": [ { - "uuid": "67dd9f02-5bb1-4dae-ac53-d1261985c3c3", - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2023-03-18 (described on Site Profile dated 2023-03-18)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "uuid": "63df3ae6-9af8-43c5-8deb-27b38c5f7d46", + "siteRegistry": true, + "documentDate": "2021-12-11", + "receivedDate": "2016-09-05", + "uploadedDate": "2020-09-06", + "title": "Preliminary Site Investigation, Detailed Site Investigation and Remedial Plan for the Management Area adjacent to the Shell Site at 1503 West 41st Ave", + "participants": [ + { + "uuid": "13358e44-e064-4786-bb2d-c6b203f8c240", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "ef6220fc-0c6c-417f-8e36-8e2a0c36393b", + "name": "IPSUM", + "siteRegistry": true, + "role": "AUTHOR" + } + ] }, { - "uuid": "e58802a5-a07d-4ec0-aa74-bffb2c357aa9", + "uuid": "433d7709-b390-49cc-b5b2-7e04f28aa140", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2023-02-15 (described on Site Profile dated 2023-02-15)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "documentDate": "2023-10-07", + "receivedDate": "2023-06-24", + "uploadedDate": "2017-06-03", + "title": "Preliminary Site Investigation, Detailed Site Investigation and Remedial Plan for the Management Area adjacent to the Shell Site at 1503 West 41st Ave", + "participants": [ + { + "uuid": "a9739e35-5d36-498b-8028-ae79b45280da", + "name": "AMET, DOLOR SIT", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "723087be-9e10-4bfb-8b35-5e5013622619", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "93d4ba5c-0474-4f92-8872-232324c1a3e4", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": false, + "role": "AUTHOR" + } + ] + } + ], + "suspectLandUses": [ + { + "uuid": "304af015-b77d-43fc-936d-6ee071a121aa", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2021-03-26 (described on Site Profile dated 2021-03-26)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "uuid": "a6cac033-262a-4108-9587-94bb970a5697", + "uuid": "bc53dd62-fe17-4b35-bb0a-f57fe71fe8a6", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-10-04 (described on Site Profile dated 2016-10-04)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "notes": "INSERTED FOR SITE PROFILE DATED 2017-01-14 (described on Site Profile dated 2017-01-14)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "uuid": "85aec1f6-70f0-4efd-b9a1-b432b28ea031", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2015-02-27 (described on Site Profile dated 2015-02-27)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], "parcelDescriptions": [ { - "uuid": "1e82f2b7-28b4-498a-b94f-0f2345dab45f", - "siteRegistry": false, - "dateNoted": "2022-03-20", - "parcelID": "19175", - "crownLandUsePIN": "20441", - "crownLandFileNumber": "20233", - "landDescription": "LOT 5 OF LOT 4 BLOCK 5 DISTRICT LOT 5 PLAN 6319" - }, - { - "uuid": "3760b4e3-b205-475e-9844-2aed95e4f9b1", + "uuid": "6cd3ddab-89d2-4ccf-9cfd-6f9d2c205ebe", "siteRegistry": true, - "dateNoted": "2014-03-31", - "parcelID": "19462", - "crownLandUsePIN": "18493", - "crownLandFileNumber": "19120", - "landDescription": "LOT 3 OF LOT 4 BLOCK 1 DISTRICT LOT 1 PLAN 7448" + "dateNoted": "2021-07-31", + "parcelID": "19926", + "crownLandUsePIN": "20387", + "crownLandFileNumber": "20315", + "landDescription": "LOT 2 OF LOT 1 BLOCK 1 DISTRICT LOT 5 PLAN 5536" }, { - "uuid": "4e4e42e1-7d7a-4b4d-a50b-d725b6103179", + "uuid": "2cde1a20-8f54-483b-984f-ab8b232cb12f", "siteRegistry": false, - "dateNoted": "2022-03-15", - "parcelID": "20400", - "crownLandUsePIN": "17133", - "crownLandFileNumber": "19333", - "landDescription": "LOT 5 OF LOT 5 BLOCK 4 DISTRICT LOT 4 PLAN 7229" + "dateNoted": "2014-11-30", + "parcelID": "19431", + "crownLandUsePIN": "19538", + "crownLandFileNumber": "16207", + "landDescription": "LOT 4 OF LOT 2 BLOCK 3 DISTRICT LOT 5 PLAN 3937" } ], "siteDisclosures": [ { - "uuid": "d549831c-164d-4ffe-b874-dcbce93c5042", + "uuid": "60a7f4d7-892c-43da-8af3-b6446154b7e2", "siteRegistry": true, - "dateReceived": "2015-09-17", - "dateCompleted": "2018-08-28", - "dateEntered": "2022-08-20", - "dateRegistrar": "2015-08-26", - "dateLocalAuthorityReceived": "2018-05-01", - "summary": "Ut minus dicta corporis repellat eveniet.\nRatione numquam neque nemo error quas repellendus.", - "informationUsed": "Dolorem minima odit libero.\nAt minus quisquam reprehenderit.\nQuidem soluta ab possimus amet saepe.\nCumque soluta odit explicabo totam harum.\nTenetur commodi ducimus distinctio nesciunt perferendis repellendus voluptatum iusto.", - "pastOrPresentOrders": "Doloremque dicta praesentium rerum dolore earum dolore architecto adipisci tempore.\nFugit tempore asperiores tempora molestias.", + "dateReceived": "2021-07-05", + "dateCompleted": "2014-08-21", + "dateEntered": "2020-08-03", + "dateRegistrar": "2017-04-09", + "dateLocalAuthorityReceived": "2014-09-28", + "summary": "Alias numquam distinctio maxime culpa nihil amet quod.", + "informationUsed": "Aperiam eos eos voluptatem iure ex quo.\nQuae autem id quam ab.\nSuscipit omnis aut hic ratione.", + "pastOrPresentOrders": "Minus error velit omnis quibusdam optio sapiente ipsam iusto.\nTempore odit velit consequatur.", "commercialAndIndustrialPurposes": [ { - "uuid": "f64aa2e3-dc8f-40b9-b857-d06796fbe649", + "uuid": "7412e136-f688-4050-b63f-5a7a1ed2d12c", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "6d0a5e4c-c0d1-4048-9931-541b32d099e1", + "uuid": "abc1244e-456e-4c6b-96a9-caf2b427ad04", "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, { - "uuid": "1bccaea8-8529-4646-ae04-b675fbb66e88", - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true - } - ] - }, - { - "uuid": "21b7eee9-d786-4654-97d7-ad6d508e2149", - "siteRegistry": false, - "dateReceived": "2017-08-26", - "dateCompleted": "2022-02-17", - "dateEntered": "2014-10-14", - "dateRegistrar": "2015-03-20", - "dateLocalAuthorityReceived": "2016-01-07", - "summary": "Iste earum voluptatibus atque vero debitis odit perferendis.\nModi minus tenetur.\nOfficiis optio expedita accusamus.", - "informationUsed": "Quis atque provident ad.\nLaudantium quo perferendis inventore illo odit id.\nInventore earum fugit voluptates sapiente ducimus ad nihil eum illum.\nDolorem quibusdam repellat perferendis.", - "pastOrPresentOrders": "Cumque voluptatum aperiam debitis maiores tempora et.\nModi nulla cumque dolorum odio exercitationem consectetur.\nRepellendus non cupiditate ullam ducimus atque.", - "commercialAndIndustrialPurposes": [ - { - "uuid": "bcc506cf-74f3-4341-a94d-ad430fba215e", + "uuid": "b45a93f9-20c4-4a38-b8e3-bd7382701d6e", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "26716469-c630-4acc-879c-eb08a8d866ba", - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "uuid": "aa0bbeb3-5c1d-4c0d-9d10-e62950d227d8", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true } ] @@ -48670,100 +56871,114 @@ ], "activityLog": [ { - "uuid": "e81b3439-16b0-4d23-ab94-560750a5c378", + "uuid": "de261c95-11ff-4dfe-9bf1-15141448c997", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "GLEICHNER ROSLYN", + "timestamp": "2022-02-21" + }, + { + "uuid": "9f479d26-f5f6-496f-97e9-01603f52a8a7", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "HINTZ DARIEN", + "timestamp": "2015-07-20" + }, + { + "uuid": "03593644-4f4c-4ea1-a8e6-0a4ef3ee3f3f", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "LOWE CARMEN", - "timestamp": "2021-05-21" + "user": "SIMONIS GUST", + "timestamp": "2018-05-16" }, { - "uuid": "f2073189-9a70-4988-aba1-cfa628cec0a0", + "uuid": "e1ad72f2-25f7-4c6d-b607-9859f41408ec", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "LOWE DESTINEY", - "timestamp": "2016-12-04" + "user": "BERGSTROM ROBIN", + "timestamp": "2019-10-09" }, { - "uuid": "66bfd604-b2c6-4068-88d6-b9700ed093d5", - "siteRegistry": true, + "uuid": "4b069b12-3b35-4b48-94e9-2f5808d2cc26", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "MUELLER FLETCHER", - "timestamp": "2018-01-29" + "user": "HERMAN VEDA", + "timestamp": "2018-11-30" }, { - "uuid": "a12ab3dd-9959-4ee5-92bf-9afd47178c76", + "uuid": "33b9f4e9-8da9-43a9-b960-b3c1113dcef7", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "ROMAGUERA LAURIANE", - "timestamp": "2018-07-05" + "user": "NADER JAMAAL", + "timestamp": "2015-03-21" }, { - "uuid": "4b2a4b41-6dbf-4536-ac74-418fe723dab9", - "siteRegistry": true, + "uuid": "04e82a7f-3cde-407e-98e7-39081e09f698", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "CROOKS FRIDA", - "timestamp": "2021-02-18" + "user": "FRITSCH BLAZE", + "timestamp": "2021-10-07" }, { - "uuid": "39a0a985-db14-4b63-9a20-a09c624c2432", + "uuid": "f492e860-af1e-458b-b66c-0c23b5e071e1", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "GRADY NOVELLA", - "timestamp": "2019-09-14" + "user": "BORER COY", + "timestamp": "2023-01-24" }, { - "uuid": "ddb1edc9-ab21-4367-9352-9797b378dd7a", + "uuid": "565013fd-f2fe-477d-aefa-672f8672f603", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "BOGAN CLEMENTINA", - "timestamp": "2020-09-24" + "user": "WOLF HERBERT", + "timestamp": "2016-08-03" } ], "associatedSites": [ { - "uuid": "69f99c3e-1427-4d73-a126-36a4bc2d04d0", - "dateNoted": "2014-08-15", + "uuid": "89cb8664-4fa5-4892-8473-949358a0e02a", + "dateNoted": "2016-12-02", "notes": "", - "parcelID": "19856", - "siteID": "16538", + "parcelID": "16749", + "siteID": "18436", "siteRegistry": true }, { - "uuid": "10478abb-92a1-4a34-b065-fcd133f128e3", - "dateNoted": "2015-03-15", + "uuid": "8014fcef-2124-42ff-9ef5-76fd0437d471", + "dateNoted": "2019-08-15", "notes": "", - "parcelID": "16588", - "siteID": "20872", - "siteRegistry": true + "parcelID": "18599", + "siteID": "15931", + "siteRegistry": false } ] }, { - "uuid": "f2e45540-6141-421a-8c58-ed5996c3f0e0", - "siteID": 17483, - "address": "772 Breitenberg Terrace", - "latitude": 54.4863, - "longitude": -128.1123, - "lastUpdated": "2017-08-16", - "city": "Hackettcester", + "uuid": "26fa93b7-2fac-4260-9824-5fd1978d5b16", + "siteID": 16579, + "address": "25628 Eleanora Green", + "latitude": 55.6118, + "longitude": -126.3908, + "lastUpdated": "2015-02-05", + "city": "North Jessy", "region": "Cariboo", - "victoriaFile": "26250-20/10910", + "victoriaFile": "26250-20/1378", "regionalFile": "N/A", "parcelIDs": [ - 1821343, - 2180631, - 1325299, - 813981, - 282526 + 6162684, + 3082909, + 8473154, + 1223108, + 9502743 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "9d3b4fa9-6b39-483e-a5ec-92699d856a62", - "createdAt": "2018-05-08", - "completed": "2022-03-08", - "initiated": "2017-10-07", - "ministryContact": "CARROLL CHARLEY", + "uuid": "d07a7b5c-5af2-47e1-8cc2-4380414098bb", + "createdAt": "2020-02-27", + "completed": "2021-01-02", + "initiated": "2018-09-20", + "ministryContact": "MOEN OLA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -48772,26 +56987,38 @@ ], "notationParticipants": [ { - "uuid": "0b0fa727-6e1f-48e7-abf4-878a37f0f288", + "uuid": "cde095ff-9980-488e-b145-c25afa0f033a", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true }, { - "uuid": "1aca4eb6-e28a-4fda-8fc9-7a26ab1b5c82", + "uuid": "17a2dbd7-a372-4097-81df-53c757506656", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true + }, + { + "uuid": "0a406211-3596-4752-9795-e053e61d0fcc", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "de98d002-01e7-467f-82f9-a14db97f7d44", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false } ], "siteRegistry": false }, { - "uuid": "634d3e64-a1d7-4993-b9a9-21c7f733e52f", - "createdAt": "2022-03-26", - "completed": "2015-05-11", - "initiated": "2021-04-23", - "ministryContact": "BRAUN JAKE", + "uuid": "f4c40251-499b-4193-b527-cdff374807ba", + "createdAt": "2017-02-01", + "completed": "2019-11-09", + "initiated": "2023-09-12", + "ministryContact": "MORISSETTE ERLING", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -48800,26 +57027,66 @@ ], "notationParticipants": [ { - "uuid": "4dbef52d-f67b-4bb6-8baa-7e8c4634ff58", + "uuid": "a69157e7-19ad-4504-9034-dbf5a6b86e53", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "uuid": "fb5c0142-6b9b-46ff-95a6-8adc493f050a", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "2b0a9f8c-8cec-477c-bf5a-4ede3fb6542d", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "uuid": "1cdd1934-b308-4e93-b00f-2e326a9246ab", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "uuid": "a4f9afca-ccc8-4916-b350-5bc98a314920", + "createdAt": "2015-11-16", + "completed": "2022-05-31", + "initiated": "2016-09-27", + "ministryContact": "TILLMAN KRISTOFFER", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "uuid": "d2651813-1cf9-4015-8bb4-9d1e9de815bb", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false }, { - "uuid": "b653eb6b-4b20-42be-b9f5-6d965a898762", + "uuid": "33da9eb1-d753-4c02-9ee4-fa53397d5bea", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "553c85ab-c41d-4bdb-a634-d051b0414e85", + "uuid": "1e4c38e6-7ff0-460c-b99a-33b41119ba2d", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true }, { - "uuid": "ac845a8e-2a74-4135-8229-178bed12d0df", - "name": "SHELL CANADA PRODUCTS", + "uuid": "c38ccc0d-6aa0-4e64-a774-179905267318", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false } @@ -48829,10 +57096,10 @@ ], "participants": [ { - "uuid": "1529922a-a935-4ae9-80a9-584a484077ec", + "uuid": "4aea2255-accb-4614-8481-568951fc6ceb", "name": "AMET, DOLOR SIT", - "endDate": "2020-11-06", - "startDate": "2020-11-30", + "endDate": "2019-12-16", + "startDate": "2019-08-24", "notes": "", "roles": [ "ORGANIZATION" @@ -48840,21 +57107,10 @@ "siteRegistry": false }, { - "uuid": "bc2e6e0d-a941-49fa-ab11-6c117f277d8a", - "name": "SHELL CANADA PRODUCTS", - "endDate": "2016-01-21", - "startDate": "2017-03-25", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": true - }, - { - "uuid": "e74cb394-6e30-4774-9c76-d4780a9401be", + "uuid": "f2305749-8651-43a1-b82f-a5135e9390d4", "name": "SHELL CANADA PRODUCTS", - "endDate": "2020-02-06", - "startDate": "2021-06-27", + "endDate": "2017-07-12", + "startDate": "2017-08-24", "notes": "", "roles": [ "EMPLOYEE" @@ -48862,140 +57118,211 @@ "siteRegistry": true }, { - "uuid": "dd877da5-d6d1-41f4-bc6a-fd36bc4d3482", + "uuid": "a6a2a8be-096e-4f9a-befb-7cd3253a309d", "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2023-03-30", - "startDate": "2016-07-24", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": false - }, - { - "uuid": "440f6b3b-1cc0-4222-abb7-e8356246dcd4", - "name": "SHELL CANADA PRODUCTS", - "endDate": "2021-03-10", - "startDate": "2015-10-09", + "endDate": "2018-06-28", + "startDate": "2017-12-19", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": false + "siteRegistry": true } ], - "suspectLandUses": [ + "documents": [ { - "uuid": "844175a0-f10a-4b46-8b15-8e2a5bce7287", - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2013-10-19 (described on Site Profile dated 2013-10-19)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "uuid": "b94ec7d9-8f9a-4dc7-be33-0c5917528365", + "siteRegistry": true, + "documentDate": "2019-05-27", + "receivedDate": "2016-01-10", + "uploadedDate": "2019-10-31", + "title": "Preliminary Site Investigation, Detailed Site Investigation and Remedial Plan for the Management Area adjacent to the Shell Site at 1503 West 41st Ave", + "participants": [ + { + "uuid": "bed769a7-66ca-436d-9347-e5a60960a0a1", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "819174fa-2ea4-4ffe-bfbf-14394477a495", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": false, + "role": "AUTHOR" + } + ] }, { - "uuid": "82a70bf4-4790-4b9e-ae15-b74c0b1c6bd2", + "uuid": "5384893c-bae5-4ae9-a13d-96940c88b28a", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-12-01 (described on Site Profile dated 2022-12-01)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "documentDate": "2014-02-06", + "receivedDate": "2019-02-10", + "uploadedDate": "2018-08-18", + "title": "Preliminary Site Investigation, Detailed Site Investigation and Remedial Plan for the Management Area adjacent to the Shell Site at 1503 West 41st Ave", + "participants": [ + { + "uuid": "4914d81e-a5fe-440d-8c19-fca2e0571e8b", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": true, + "role": "AUTHOR" + } + ] }, { - "uuid": "51adea7a-47fe-4288-9a0c-968175328a8c", + "uuid": "6f81b8ef-5356-4b39-a6fc-7a98c858edcd", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2013-12-25 (described on Site Profile dated 2013-12-25)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "documentDate": "2015-07-27", + "receivedDate": "2020-10-27", + "uploadedDate": "2021-02-22", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "93bd4088-2cf3-41ff-803d-9b05e4167aa4", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "ec0b64d5-771a-494b-917d-9b8f5a010bbe", + "name": "IPSUM", + "siteRegistry": false, + "role": "AUTHOR" + } + ] }, { - "uuid": "bc0b032b-653c-4d55-b895-d5b695ef1b8f", + "uuid": "564a5e3c-89bc-485c-b888-cbe9fac67870", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-03-01 (described on Site Profile dated 2016-03-01)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "documentDate": "2019-09-22", + "receivedDate": "2023-08-04", + "uploadedDate": "2022-11-11", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "37093203-e607-4628-9eab-fba83a8678b3", + "name": "IPSUM", + "siteRegistry": false, + "role": "AUTHOR" + } + ] + }, + { + "uuid": "c3a78cb0-14e6-4546-8601-14a407b7809c", + "siteRegistry": true, + "documentDate": "2019-10-11", + "receivedDate": "2020-09-15", + "uploadedDate": "2016-02-27", + "title": "Summary of Site Conditions, 1537 W 41st Avenue, Vancouver", + "participants": [ + { + "uuid": "aec08144-3594-4de9-81d5-527f8f7ea954", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "a5de2bbf-106a-4c39-b0ab-a47e66ebf7d4", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": false, + "role": "AUTHOR" + } + ] + } + ], + "suspectLandUses": [ + { + "uuid": "1423a44a-b558-4d10-a667-b1a3ae29c4f0", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2021-06-11 (described on Site Profile dated 2021-06-11)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "uuid": "e2051ff6-c74e-4f84-8b90-e67e46c552c6", + "uuid": "3b1ac380-fda3-46f8-bd56-ddddfd54d336", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-10-08 (described on Site Profile dated 2021-10-08)", + "notes": "INSERTED FOR SITE PROFILE DATED 2019-07-04 (described on Site Profile dated 2019-07-04)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "uuid": "a1aff66a-fb4e-4036-b3c9-85f6084d08fb", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2017-05-01 (described on Site Profile dated 2017-05-01)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], "parcelDescriptions": [ { - "uuid": "57facb88-296f-496d-af2c-e9c725c7e706", - "siteRegistry": true, - "dateNoted": "2022-11-01", - "parcelID": "18126", - "crownLandUsePIN": "19401", - "crownLandFileNumber": "17696", - "landDescription": "LOT 3 OF LOT 4 BLOCK 2 DISTRICT LOT 3 PLAN 4128" + "uuid": "6c804701-0e0a-4a8e-9b09-d00ea10df90e", + "siteRegistry": false, + "dateNoted": "2019-06-17", + "parcelID": "19454", + "crownLandUsePIN": "18377", + "crownLandFileNumber": "15881", + "landDescription": "LOT 2 OF LOT 5 BLOCK 2 DISTRICT LOT 2 PLAN 7243" }, { - "uuid": "76b427ec-01ad-4546-bcc3-f468397d2444", - "siteRegistry": false, - "dateNoted": "2016-03-23", - "parcelID": "16754", - "crownLandUsePIN": "18481", - "crownLandFileNumber": "17065", - "landDescription": "LOT 3 OF LOT 1 BLOCK 2 DISTRICT LOT 3 PLAN 3270" + "uuid": "0c25fc63-d028-4ae8-a7fe-51edd2333f8c", + "siteRegistry": true, + "dateNoted": "2020-10-24", + "parcelID": "18898", + "crownLandUsePIN": "18070", + "crownLandFileNumber": "16616", + "landDescription": "LOT 3 OF LOT 4 BLOCK 3 DISTRICT LOT 1 PLAN 4517" }, { - "uuid": "fb491c79-c5b8-4867-bf78-5d64dbfe406d", + "uuid": "ac89af34-cc16-4f2b-b039-8b89a4b7082a", "siteRegistry": true, - "dateNoted": "2019-07-12", - "parcelID": "18477", - "crownLandUsePIN": "19814", - "crownLandFileNumber": "17632", - "landDescription": "LOT 4 OF LOT 4 BLOCK 5 DISTRICT LOT 2 PLAN 4302" + "dateNoted": "2014-04-20", + "parcelID": "20125", + "crownLandUsePIN": "20771", + "crownLandFileNumber": "19558", + "landDescription": "LOT 1 OF LOT 3 BLOCK 4 DISTRICT LOT 3 PLAN 8361" }, { - "uuid": "39234979-e3d3-4bff-b446-af0919ef372d", + "uuid": "f5efd05d-8b99-4d3a-8611-c1fc7f781e60", "siteRegistry": true, - "dateNoted": "2022-05-28", - "parcelID": "15407", - "crownLandUsePIN": "18836", - "crownLandFileNumber": "17301", - "landDescription": "LOT 3 OF LOT 2 BLOCK 4 DISTRICT LOT 4 PLAN 5982" + "dateNoted": "2018-03-25", + "parcelID": "15272", + "crownLandUsePIN": "17057", + "crownLandFileNumber": "16617", + "landDescription": "LOT 2 OF LOT 2 BLOCK 3 DISTRICT LOT 1 PLAN 9247" }, { - "uuid": "0e69bf1c-6429-4579-8bfb-93d3c9fd08a6", + "uuid": "20546d09-2d38-448c-b033-7663bfe8c2b6", "siteRegistry": true, - "dateNoted": "2019-05-08", - "parcelID": "15607", - "crownLandUsePIN": "18273", - "crownLandFileNumber": "19730", - "landDescription": "LOT 3 OF LOT 2 BLOCK 4 DISTRICT LOT 5 PLAN 3071" + "dateNoted": "2019-07-23", + "parcelID": "17871", + "crownLandUsePIN": "20580", + "crownLandFileNumber": "17768", + "landDescription": "LOT 1 OF LOT 2 BLOCK 2 DISTRICT LOT 5 PLAN 6526" } ], "siteDisclosures": [ { - "uuid": "84edc230-d838-4bc6-b2bf-8582f253455e", - "siteRegistry": false, - "dateReceived": "2014-09-28", - "dateCompleted": "2022-01-25", - "dateEntered": "2015-09-14", - "dateRegistrar": "2017-10-16", - "dateLocalAuthorityReceived": "2019-11-13", - "summary": "Nostrum natus nostrum dignissimos.\nNostrum unde mollitia doloremque ducimus qui quae reprehenderit.\nSint praesentium nisi sunt facilis consequatur.", - "informationUsed": "Animi provident distinctio.\nVel quae suscipit velit maiores est dolorum reiciendis quia quis.\nSint enim saepe repellendus necessitatibus corporis.", - "pastOrPresentOrders": "Maiores ad odit voluptates corrupti.\nId ipsam iste quia nobis nisi voluptate explicabo corrupti.", + "uuid": "b89815de-2f76-4a61-a1a2-ea561ed933ea", + "siteRegistry": true, + "dateReceived": "2020-02-08", + "dateCompleted": "2018-08-28", + "dateEntered": "2015-11-03", + "dateRegistrar": "2014-07-05", + "dateLocalAuthorityReceived": "2019-05-19", + "summary": "Cum quo alias pariatur necessitatibus quidem sunt libero.\nOfficiis dignissimos aspernatur aspernatur repellendus laboriosam harum sint officiis.\nSed soluta eos.", + "informationUsed": "Repellendus tempora ab distinctio.\nDistinctio quam nulla illum rem aperiam excepturi in voluptatibus.\nIllum sapiente perspiciatis.\nVelit rem fugit veritatis qui rem voluptates sapiente.", + "pastOrPresentOrders": "Rerum error aliquam impedit aliquam eos dolorem totam consequuntur.\nMollitia voluptas quo doloribus sed asperiores labore.\nInventore sequi magnam accusamus excepturi itaque repellat voluptatibus consequatur.", "commercialAndIndustrialPurposes": [ { - "uuid": "1a5720e4-05dc-4b2f-a0aa-233f323ede19", - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true - }, - { - "uuid": "8d9bb8f9-ab72-4603-9dcd-781a7a527c16", + "uuid": "b8ae77ed-7b1f-4abf-a3bb-a29d069d60c7", "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false }, { - "uuid": "d26f74fd-0ec6-4244-9c54-e9f210e7c595", - "scheduleReference": "F1*", + "uuid": "f838097f-fc87-46dc-8d3e-918313149d6a", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false }, { - "uuid": "443d7591-84dc-4c21-9d81-e6338d7b6674", + "uuid": "4b80bd41-3551-46af-9560-3859ab3b775f", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true @@ -49003,129 +57330,134 @@ ] }, { - "uuid": "7f13b335-8ef9-49f5-9676-ea6b5f1165b6", - "siteRegistry": true, - "dateReceived": "2021-03-10", - "dateCompleted": "2019-03-21", - "dateEntered": "2021-01-01", - "dateRegistrar": "2016-05-25", - "dateLocalAuthorityReceived": "2019-05-16", - "summary": "Enim illo iste architecto sit praesentium itaque officia dignissimos.", - "informationUsed": "Quaerat fuga consectetur illum quae corrupti illum pariatur.\nNecessitatibus reiciendis dolorum nesciunt suscipit.\nUllam culpa tenetur enim pariatur.\nSuscipit dolore assumenda nostrum ipsum.", - "pastOrPresentOrders": "Quos culpa tempora.", + "uuid": "5dec07d5-ceb9-4fee-aae3-1451d3d4f2cd", + "siteRegistry": false, + "dateReceived": "2020-11-03", + "dateCompleted": "2018-10-21", + "dateEntered": "2017-04-23", + "dateRegistrar": "2021-10-04", + "dateLocalAuthorityReceived": "2017-07-17", + "summary": "Accusantium dolorum ab maxime hic doloremque ullam.\nEst quo voluptatem expedita consectetur veniam minima et esse expedita.\nQuae unde laboriosam dolorem optio alias hic.", + "informationUsed": "Consequuntur quos deleniti laborum.\nNon eaque quas molestiae quis.\nPerspiciatis nobis quis enim dolores sunt perspiciatis.\nMolestias inventore repudiandae vitae totam mollitia sed.", + "pastOrPresentOrders": "Libero blanditiis labore id provident vitae laudantium earum sunt aspernatur.\nVeniam dolorem sit totam dolorem.\nEx quis iure tempora.", "commercialAndIndustrialPurposes": [ { - "uuid": "f22ea164-2936-4afe-82dd-878b97b182d8", + "uuid": "f1d4c211-0970-4b61-bdc7-122798b3ba50", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "uuid": "b2ab7b31-c106-40c3-aed7-d4ff1b636c31", "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true }, { - "uuid": "f233f508-0ca9-4e76-88aa-8d647d5108f9", + "uuid": "2164b762-6ed8-437c-be13-12f5cb96d831", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false + "siteRegistry": true } ] } ], "activityLog": [ { - "uuid": "bff0d0cc-a1a1-4e7e-b0ec-862089afa0de", - "siteRegistry": false, + "uuid": "9092521f-5f1d-4db7-bf63-2341f52f6430", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "ONDRICKA KRISTA", - "timestamp": "2018-05-01" + "user": "CRONA FEDERICO", + "timestamp": "2022-05-05" }, { - "uuid": "1007bc3b-7939-4712-8646-eadd91de0894", - "siteRegistry": false, + "uuid": "f6324526-ea5f-46b9-90c6-3746aa4633f9", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "MOHR ROMAINE", - "timestamp": "2019-11-02" + "user": "BECHTELAR CALE", + "timestamp": "2014-10-18" }, { - "uuid": "ce5d82f3-0730-4a59-a0fa-1dad5ce90897", + "uuid": "4dba31b8-ca7c-4f0a-87be-ad403952e2ae", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "SKILES PRECIOUS", - "timestamp": "2017-01-21" + "user": "DICKINSON EMELIA", + "timestamp": "2016-10-16" }, { - "uuid": "2f004c70-f850-448a-b7d6-aacd46b10361", - "siteRegistry": true, + "uuid": "061310ad-adf1-4847-9ef3-635088f546a8", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "HILPERT EZRA", - "timestamp": "2014-12-02" + "user": "CRUICKSHANK ABEL", + "timestamp": "2019-04-23" + }, + { + "uuid": "7f156d69-39c2-4676-9615-be495c348228", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "SAWAYN WILHELM", + "timestamp": "2019-11-13" }, { - "uuid": "5fc50217-dce9-412e-a0da-3fff2d7e65fb", + "uuid": "627b980e-cf60-4b53-bf74-5632788dd3f5", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "MARKS CARTER", - "timestamp": "2017-07-13" + "user": "MAYER OPAL", + "timestamp": "2015-07-30" }, { - "uuid": "fbf9bab2-6e9b-46ff-9a9d-cbd42bf9f3db", - "siteRegistry": false, + "uuid": "d413d705-ec44-48c5-94c1-8a5f58a90132", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "BINS MADYSON", - "timestamp": "2020-11-24" + "user": "ABBOTT CANDIDO", + "timestamp": "2015-09-18" } ], "associatedSites": [ { - "uuid": "2fa55c3f-fcca-4598-a36f-7aae3c7cc2d5", - "dateNoted": "2019-07-16", + "uuid": "78a089dc-6408-430b-a403-bd23e389ab9f", + "dateNoted": "2021-08-22", "notes": "", - "parcelID": "18504", - "siteID": "20203", + "parcelID": "19577", + "siteID": "20045", "siteRegistry": false }, { - "uuid": "08f316f0-a37f-4913-a657-e2de0d85eb99", - "dateNoted": "2020-09-28", - "notes": "", - "parcelID": "17668", - "siteID": "20146", - "siteRegistry": true - }, - { - "uuid": "22a04ab2-e4a1-4819-b400-f6c571c2f97e", - "dateNoted": "2017-06-21", + "uuid": "fdeef5f4-d24a-4af6-9c0a-33b96411e336", + "dateNoted": "2017-02-02", "notes": "", - "parcelID": "20638", - "siteID": "17183", - "siteRegistry": true + "parcelID": "16457", + "siteID": "17031", + "siteRegistry": false } ] }, { - "uuid": "21033622-974c-4dcf-a4a7-f7e999136654", - "siteID": 17161, - "address": "5149 Corkery Haven", - "latitude": 51.8937, - "longitude": -121.8151, - "lastUpdated": "2018-03-10", - "city": "Heidenreichview", - "region": "Vancouver Island/Coast", - "victoriaFile": "26250-20/11643", + "uuid": "586cd72e-6413-4bd5-bb0a-4bb68452bf0f", + "siteID": 20833, + "address": "1592 Rolfson Burg", + "latitude": 57.0998, + "longitude": -123.5466, + "lastUpdated": "2022-03-07", + "city": "East Vivienview", + "region": "Mainland/Southwest", + "victoriaFile": "26250-20/19471", "regionalFile": "N/A", "parcelIDs": [ - 9833779, - 4608311, - 381459, - 4823017, - 648584 + 4669982, + 4925559, + 5468299, + 4464965, + 4508510 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "9a38637e-32ef-491c-9a03-860046e4c1dd", - "createdAt": "2014-09-19", - "completed": "2014-05-13", - "initiated": "2019-07-14", - "ministryContact": "DACH JUVENAL", + "uuid": "df915fb7-f787-42a9-a9a9-fa8afd4ef9a0", + "createdAt": "2022-06-03", + "completed": "2014-03-02", + "initiated": "2020-08-29", + "ministryContact": "REILLY ESMERALDA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -49134,26 +57466,38 @@ ], "notationParticipants": [ { - "uuid": "809c7878-b698-428f-8ce2-87af573d6832", - "name": "SHELL CANADA PRODUCTS", + "uuid": "8fcb5207-f972-4e1f-b33d-0da2819cb393", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false + }, + { + "uuid": "5bfdd06b-0a3c-4828-bfad-d6040c970756", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false }, { - "uuid": "4f2ff7f4-71fb-4f85-90a9-898f6aa395a3", + "uuid": "92837345-5d02-4303-bdfa-b08ca69fe851", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "uuid": "a9087070-5e1a-49e9-9886-3ef06903b3e5", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "c59e3341-796a-4b47-b8a0-bca3e6fbacbf", - "createdAt": "2017-01-21", - "completed": "2015-07-10", - "initiated": "2014-10-06", - "ministryContact": "JAKUBOWSKI CASIMIR", + "uuid": "1c1b3325-cdb4-47de-9be4-3c27324f68ba", + "createdAt": "2021-09-21", + "completed": "2017-05-26", + "initiated": "2023-10-05", + "ministryContact": "HESSEL THERON", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -49162,26 +57506,26 @@ ], "notationParticipants": [ { - "uuid": "08175b5d-5c1d-4ad5-a501-8d4cfcd51389", + "uuid": "ace8c664-06d4-4854-8d7a-2870bb915e4e", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "5fd33454-3904-4a67-a973-84aebbac412a", + "uuid": "c2d367ea-3d8c-4704-a0b2-17800fd09063", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "eda7449f-0420-4f97-bf47-a6991d4e3862", - "createdAt": "2017-05-23", - "completed": "2015-12-19", - "initiated": "2020-03-10", - "ministryContact": "PADBERG LAMONT", + "uuid": "897422e5-3833-45e1-b436-5d96abb26982", + "createdAt": "2013-11-02", + "completed": "2020-01-31", + "initiated": "2017-10-18", + "ministryContact": "DENESIK OREN", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -49190,13 +57534,13 @@ ], "notationParticipants": [ { - "uuid": "daaa7d47-1296-4701-9843-59addb9e5529", - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "92af8513-38cc-4e78-a597-e06b5fd52360", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true }, { - "uuid": "5bf75248-c891-4277-9d79-b69e7f33e68f", + "uuid": "e4d42d40-d3fc-43e6-9f58-9228044a656f", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true @@ -49207,21 +57551,10 @@ ], "participants": [ { - "uuid": "1bc86319-bf9e-41b5-bfa4-b1d15baa0fe5", - "name": "IPSUM", - "endDate": "2015-07-15", - "startDate": "2022-04-14", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": false - }, - { - "uuid": "4e9d14ec-6689-4866-8f87-1a30a771e578", + "uuid": "ad087444-a4ae-458c-a8a0-96758b6b8554", "name": "SHELL CANADA PRODUCTS", - "endDate": "2014-08-16", - "startDate": "2016-10-24", + "endDate": "2014-12-24", + "startDate": "2023-05-22", "notes": "", "roles": [ "EMPLOYEE" @@ -49229,132 +57562,183 @@ "siteRegistry": true }, { - "uuid": "2c6ee5af-9598-4da3-a7de-83694f9182a2", - "name": "IPSUM", - "endDate": "2017-01-03", - "startDate": "2022-08-07", + "uuid": "1080a6e8-7076-4c4b-9dd3-77f83b298224", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2017-06-18", + "startDate": "2017-06-29", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "5896a24a-b7fe-488a-acce-db0314b8ff8f", - "name": "SHELL CANADA PRODUCTS", - "endDate": "2017-10-17", - "startDate": "2022-02-09", + "uuid": "3c897129-9ed4-4f00-a937-abf87d0937d2", + "name": "IPSUM", + "endDate": "2021-06-28", + "startDate": "2019-06-13", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": true + } + ], + "documents": [ + { + "uuid": "b982daf7-2006-467e-8160-64648b7c81a3", + "siteRegistry": true, + "documentDate": "2015-04-20", + "receivedDate": "2017-11-06", + "uploadedDate": "2016-01-25", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "73d1467e-e56b-45b6-8390-f1fcd4558202", + "name": "IPSUM", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "27c3ee7e-ac14-4784-a9b1-9033e412147b", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": true, + "role": "AUTHOR" + } + ] }, { - "uuid": "6a70d4ea-9a5c-4cab-a39e-742a2b9afa97", - "name": "SHELL CANADA PRODUCTS", - "endDate": "2014-03-20", - "startDate": "2020-07-12", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": false + "uuid": "b8a82bc3-efa1-476c-909a-04e52bf59f73", + "siteRegistry": true, + "documentDate": "2015-06-01", + "receivedDate": "2021-09-18", + "uploadedDate": "2019-12-01", + "title": "Summary of Site Conditions, 1537 W 41st Avenue, Vancouver", + "participants": [ + { + "uuid": "9a733922-172b-4f73-9752-1c1fc8834688", + "name": "IPSUM", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "d295e562-ecb2-470e-bdaf-cf337284562a", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": true, + "role": "AUTHOR" + } + ] + }, + { + "uuid": "13d2fb66-8b26-47ba-bf1d-2bedc4cbe8bc", + "siteRegistry": true, + "documentDate": "2019-06-16", + "receivedDate": "2017-04-19", + "uploadedDate": "2014-09-22", + "title": "Summary of Site Conditions, 1537 W 41st Avenue, Vancouver", + "participants": [ + { + "uuid": "933fcd26-1a5c-42f8-8910-df5fc08bca19", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "0ae0f60f-d2dc-42b8-a1a4-29ae452745e4", + "name": "IPSUM", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "fdcd2966-b8bf-47ce-ad61-5ae4bc213094", + "name": "AMET, DOLOR SIT", + "siteRegistry": false, + "role": "AUTHOR" + } + ] } ], "suspectLandUses": [ { - "uuid": "dd50c673-a428-4908-91b5-cf074d0443fb", - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-04-27 (described on Site Profile dated 2021-04-27)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "uuid": "d074d3fd-f1cd-4797-a6f8-ca101d30d464", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2014-08-09 (described on Site Profile dated 2014-08-09)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "uuid": "1e7ba66f-22a0-4049-9438-35c0bb872592", - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-02-21 (described on Site Profile dated 2018-02-21)", + "uuid": "63919a4e-1d93-4dd0-9df2-261b337332c9", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2018-12-06 (described on Site Profile dated 2018-12-06)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "uuid": "445d06b3-dadd-4bd5-970c-b9647d996a89", + "uuid": "c2f5538c-ed0e-4597-ba86-7ce37895e406", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-10-25 (described on Site Profile dated 2022-10-25)", + "notes": "INSERTED FOR SITE PROFILE DATED 2017-10-31 (described on Site Profile dated 2017-10-31)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "uuid": "f98a7187-8f34-4026-abc3-62d35298d511", + "uuid": "bff3f310-9819-4326-8ced-826fcdff7f6b", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-05-17 (described on Site Profile dated 2021-05-17)", + "notes": "INSERTED FOR SITE PROFILE DATED 2015-01-11 (described on Site Profile dated 2015-01-11)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "uuid": "737f3672-d58e-4750-9475-b6563be14bff", + "uuid": "34245307-e4bd-4161-93b5-dd7a6ec6646c", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-12-16 (described on Site Profile dated 2022-12-16)", + "notes": "INSERTED FOR SITE PROFILE DATED 2020-10-23 (described on Site Profile dated 2020-10-23)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], "parcelDescriptions": [ { - "uuid": "a46027ae-3f7a-4f8e-bea6-453b122766aa", - "siteRegistry": true, - "dateNoted": "2018-12-03", - "parcelID": "19852", - "crownLandUsePIN": "15767", - "crownLandFileNumber": "17447", - "landDescription": "LOT 1 OF LOT 5 BLOCK 4 DISTRICT LOT 2 PLAN 8169" - }, - { - "uuid": "926da217-c3c3-4cfd-b800-84317ce2c979", + "uuid": "cdba3b50-1cbc-482d-92a5-5204ae00b4ca", "siteRegistry": false, - "dateNoted": "2023-06-09", - "parcelID": "18518", - "crownLandUsePIN": "19469", - "crownLandFileNumber": "16658", - "landDescription": "LOT 4 OF LOT 2 BLOCK 1 DISTRICT LOT 2 PLAN 8363" + "dateNoted": "2019-03-04", + "parcelID": "15629", + "crownLandUsePIN": "17450", + "crownLandFileNumber": "16354", + "landDescription": "LOT 4 OF LOT 1 BLOCK 3 DISTRICT LOT 3 PLAN 3799" }, { - "uuid": "91c0766f-96f1-434a-b2bc-105abe48cdb1", + "uuid": "3af04ade-ace2-4e1e-a1f8-10a839e7cca2", "siteRegistry": true, - "dateNoted": "2021-11-06", - "parcelID": "18519", - "crownLandUsePIN": "20763", - "crownLandFileNumber": "20320", - "landDescription": "LOT 3 OF LOT 2 BLOCK 3 DISTRICT LOT 2 PLAN 4080" - }, - { - "uuid": "368518b4-fb8b-41f7-ae70-525ff90da36d", - "siteRegistry": false, - "dateNoted": "2014-10-30", - "parcelID": "16813", - "crownLandUsePIN": "16248", - "crownLandFileNumber": "19632", - "landDescription": "LOT 4 OF LOT 1 BLOCK 4 DISTRICT LOT 5 PLAN 8097" + "dateNoted": "2016-04-17", + "parcelID": "20026", + "crownLandUsePIN": "16035", + "crownLandFileNumber": "16530", + "landDescription": "LOT 3 OF LOT 4 BLOCK 3 DISTRICT LOT 2 PLAN 7824" } ], "siteDisclosures": [ { - "uuid": "b9eacf50-e585-4f5c-8c60-6932a9db2c04", + "uuid": "9e0f9aea-89aa-48bf-9f7b-dab2d9752812", "siteRegistry": false, - "dateReceived": "2018-09-18", - "dateCompleted": "2016-09-22", - "dateEntered": "2020-05-16", - "dateRegistrar": "2022-08-05", - "dateLocalAuthorityReceived": "2018-12-29", - "summary": "Nam voluptatum deleniti voluptatum.", - "informationUsed": "Optio esse cumque tenetur accusantium quasi nam aliquid consectetur suscipit.\nAdipisci quas magnam laudantium autem nemo porro maiores.\nQuidem dolore quas consequuntur natus facilis voluptatem laudantium ratione.", - "pastOrPresentOrders": "Est suscipit sequi.\nHarum iusto iusto commodi corrupti cumque ab sit.", + "dateReceived": "2014-07-04", + "dateCompleted": "2019-02-01", + "dateEntered": "2018-05-31", + "dateRegistrar": "2018-04-27", + "dateLocalAuthorityReceived": "2020-05-06", + "summary": "Dicta suscipit natus consequuntur sit error ut laudantium optio doloremque.", + "informationUsed": "A unde placeat ipsum ad blanditiis beatae ipsa cupiditate recusandae.\nCum natus autem.\nOptio nam quisquam inventore reprehenderit saepe sapiente.\nMagnam laudantium repudiandae necessitatibus numquam eius animi possimus quibusdam.\nImpedit aliquid corporis ratione ullam quae odit consequuntur corporis.", + "pastOrPresentOrders": "Eos hic occaecati exercitationem laudantium eveniet.", "commercialAndIndustrialPurposes": [ { - "uuid": "c2890d6c-fd8c-43e5-993b-4d741e3a10ed", + "uuid": "127f1a41-a16a-43de-829e-950d59147a80", "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { - "uuid": "30345b5b-0a8e-48f9-833d-fbaee4a0f8c6", + "uuid": "b323fc26-d4cd-4076-8fa3-f62e1a8e6ab1", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "uuid": "170d1f96-1417-426e-983e-6387f3ce78fd", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true } ] @@ -49362,175 +57746,108 @@ ], "activityLog": [ { - "uuid": "d59059f1-850b-4ee4-afec-29a0956ecd27", - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "HODKIEWICZ MOSSIE", - "timestamp": "2022-02-25" - }, - { - "uuid": "08ee8842-4c3c-4a71-bcc5-56e8bb13b334", + "uuid": "3278b5d4-e8c8-4c9f-a786-8105972563f5", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "HANSEN MITCHEL", - "timestamp": "2020-08-02" + "user": "HAND PIETRO", + "timestamp": "2014-09-17" }, { - "uuid": "614c4211-4609-4308-b6c7-3f0d7b3b8e27", + "uuid": "2c54d47a-70f2-41c5-8d06-f789ec983840", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "FADEL VIOLA", - "timestamp": "2022-06-12" - }, - { - "uuid": "e5f5c63a-d277-4aeb-8815-bcbaef740a64", - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "KONOPELSKI ENOCH", - "timestamp": "2018-03-04" - }, - { - "uuid": "4b2698f4-7042-425e-a3b7-4c26a01e612b", - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "WHITE ARIELLE", - "timestamp": "2020-04-20" + "user": "FRANECKI MINERVA", + "timestamp": "2017-10-12" }, { - "uuid": "28b24b3c-fc55-429b-a9c9-4f03bdf121a0", + "uuid": "a1210384-d94d-45a0-b9a7-3784456bcf53", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "BREITENBERG GAYLE", - "timestamp": "2017-06-27" + "user": "GIBSON PASQUALE", + "timestamp": "2016-08-17" }, { - "uuid": "be5a888c-fc93-436d-99ff-59b030ae9ff3", + "uuid": "53493d77-6cfc-4ea4-bcc1-ce8d63a9a9d4", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "O'CONNER LITZY", - "timestamp": "2021-01-30" + "user": "GLEASON ADELINE", + "timestamp": "2019-05-13" }, { - "uuid": "cff62eb0-6eba-45e5-b867-3618d5c5bb17", - "siteRegistry": true, + "uuid": "d25a9933-8e94-4575-bc37-53e792030c60", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "RIPPIN FREDERICK", - "timestamp": "2017-05-15" + "user": "NADER BREANNA", + "timestamp": "2014-05-14" }, { - "uuid": "3b2adfa8-a81d-42fa-a711-af615d9da2b5", - "siteRegistry": true, + "uuid": "d56c3389-8ebc-4ca3-bd32-b9d86aeb75ed", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "WEBER JOCELYN", - "timestamp": "2014-10-10" + "user": "HILLS BRADLEY", + "timestamp": "2018-03-24" }, { - "uuid": "9b710b3a-b8ef-48b6-889f-b58d0eeaf134", + "uuid": "059cbfc6-2856-48fa-949d-5f8253eae383", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "JOHNSON LEXUS", - "timestamp": "2020-12-06" + "user": "CASPER BREANNA", + "timestamp": "2017-05-23" } ], "associatedSites": [ { - "uuid": "65061ff5-826e-413b-a723-c2f836fbf121", - "dateNoted": "2020-04-23", + "uuid": "aac7fd6d-4383-4c7d-bb13-4fee74f7a39f", + "dateNoted": "2018-09-25", "notes": "", - "parcelID": "18735", - "siteID": "16682", - "siteRegistry": false + "parcelID": "16812", + "siteID": "15231", + "siteRegistry": true }, { - "uuid": "2e9aba80-00e7-4934-bf4c-ee7971fc0e71", - "dateNoted": "2022-09-19", + "uuid": "a569c2e2-3e9f-408f-97ff-51fa5b5270c6", + "dateNoted": "2018-03-12", "notes": "", - "parcelID": "19221", - "siteID": "17685", + "parcelID": "15496", + "siteID": "20842", "siteRegistry": true }, { - "uuid": "88da5ed6-e26f-4dd3-92b6-5aaa36164d5b", - "dateNoted": "2014-07-21", + "uuid": "69e2361d-3cb7-4030-bca6-9f305c319801", + "dateNoted": "2015-09-08", "notes": "", - "parcelID": "16832", - "siteID": "17431", + "parcelID": "19029", + "siteID": "19497", "siteRegistry": true } ] }, { - "uuid": "8eb323c9-0e0f-486d-af99-df830eb75816", - "siteID": 20573, - "address": "57645 Jordane Ramp", - "latitude": 51.0247, - "longitude": -137.6872, - "lastUpdated": "2023-07-10", - "city": "Maricopa", - "region": "Kootenay", - "victoriaFile": "26250-20/19312", + "uuid": "c0fd3ff2-2f6c-402d-ba15-a6d2b065f2d9", + "siteID": 18080, + "address": "60261 Ariane Road", + "latitude": 50.8662, + "longitude": -128.8205, + "lastUpdated": "2016-10-21", + "city": "Herzogshire", + "region": "Thompson-Okanagan", + "victoriaFile": "26250-20/15798", "regionalFile": "N/A", "parcelIDs": [ - 6638817, - 4216514, - 7461372, - 388836, - 1860791 + 3526424, + 177644, + 5419084, + 8637955, + 3014611 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "a79d1a1f-a474-4050-8213-d02f88b70b76", - "createdAt": "2015-10-15", - "completed": "2014-03-11", - "initiated": "2020-10-09", - "ministryContact": "ZBONCAK JEFFERY", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "uuid": "a9e28f46-81c4-4960-ba2a-826abd721bbf", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "uuid": "cf39835e-fe0b-4264-81c2-81b5bb085503", - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "uuid": "b2a18927-b893-4e3a-96e9-897d4fc67b3e", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "uuid": "9e465d11-714b-4102-b740-f224de25b987", - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "uuid": "fe76af5b-10e6-401e-9fab-505eb0e07a0a", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - } - ], - "siteRegistry": true - }, - { - "uuid": "db56eda3-98ca-462d-9958-8adb9570c4bb", - "createdAt": "2018-04-15", - "completed": "2020-03-11", - "initiated": "2022-02-11", - "ministryContact": "SWIFT ADELIA", + "uuid": "b389f213-9229-4232-8779-5c21bef9f782", + "createdAt": "2018-11-01", + "completed": "2020-08-26", + "initiated": "2021-06-07", + "ministryContact": "ROBERTS GLENDA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -49539,32 +57856,14 @@ ], "notationParticipants": [ { - "uuid": "fd0e34c4-e0d5-48ef-926a-7f73d211e4b7", - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "uuid": "9bc7c868-6fb6-4034-8835-8cb0838a3af7", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "uuid": "ee7158ae-c86a-4987-89b0-2312060abec4", + "uuid": "a46cce2c-d3a8-449d-a373-f4803bf1e658", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "8f6d1643-1fa4-4f88-bda2-4523a540562d", + "uuid": "c9fec8e5-99ed-43b4-b068-948a33168dca", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "uuid": "bc8039ce-f4a3-4167-9cbe-db744c785e3d", - "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true } @@ -49572,11 +57871,11 @@ "siteRegistry": false }, { - "uuid": "57d67c60-1e21-4575-8be8-7ba2b31c26a2", - "createdAt": "2014-09-28", - "completed": "2014-11-18", - "initiated": "2015-11-15", - "ministryContact": "KREIGER MURIEL", + "uuid": "ebd8bbb6-9ab5-4f3a-bbb2-3dbce14aecb2", + "createdAt": "2020-03-09", + "completed": "2013-12-13", + "initiated": "2013-12-29", + "ministryContact": "KESSLER ELYSSA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -49585,78 +57884,38 @@ ], "notationParticipants": [ { - "uuid": "8951f4bf-e9ff-41db-a7b3-0be045d1def4", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "uuid": "824b696f-0ed3-42db-8637-c12db5ea398c", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "uuid": "9db65ac8-d97a-41cd-a0f0-ed640451966e", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "uuid": "d4bc5ba3-ec50-4be9-bd6b-79c43649e461", + "uuid": "bcb601d8-b88d-4688-ad3f-3b4b7d40b95f", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false }, { - "uuid": "d16481d0-f8a6-4294-9467-e0cf865b5c35", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - } - ], - "siteRegistry": false - }, - { - "uuid": "260c4490-73d2-4cb8-a47b-78d68d27f90b", - "createdAt": "2018-05-24", - "completed": "2021-04-22", - "initiated": "2017-05-05", - "ministryContact": "LUBOWITZ ALEXANE", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "uuid": "b1ded3e7-644c-429d-bbc2-48518d311df0", + "uuid": "c3897615-43a8-405b-a9f6-f208c81247e2", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false }, { - "uuid": "2841ecb5-379c-423e-aa35-3c70bb56ea0f", + "uuid": "1fd70b18-bc97-4689-89a9-5682a2ebbf35", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "392ebef5-ff5d-4c33-9622-c4ed1fcda5f9", + "uuid": "b3a90260-411a-429b-aa5f-5f1f1d21cca2", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false } ], "siteRegistry": true }, { - "uuid": "7e97c063-31b3-428f-8e70-2e31d1bc198f", - "createdAt": "2019-05-12", - "completed": "2019-09-29", - "initiated": "2016-05-28", - "ministryContact": "VEUM MAYBELL", + "uuid": "be07b2e5-4298-4281-8a37-278e0551a73f", + "createdAt": "2023-04-15", + "completed": "2015-01-17", + "initiated": "2018-07-22", + "ministryContact": "WEHNER BURDETTE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -49665,50 +57924,55 @@ ], "notationParticipants": [ { - "uuid": "812d5eb2-d337-49df-8784-85df900f0bcb", - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "f19841f6-0a14-4553-8589-b6f2018b4e5a", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "uuid": "73ff64e6-c7a2-4e62-a772-7813cb9be291", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "b99f27c7-bfa5-487a-8901-d275a07bbfd3", + "uuid": "d94484df-925e-482e-a405-f8806b445702", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false }, { - "uuid": "ceb8b411-a3b1-4168-a338-b95ae7889759", + "uuid": "049f911d-7910-4d93-bd82-d22007cf2a4f", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true } ], "participants": [ { - "uuid": "c1bb81a6-8441-400b-9d21-33c5627d2913", - "name": "AMET, DOLOR SIT", - "endDate": "2022-04-30", - "startDate": "2022-04-26", + "uuid": "c321f942-96e9-48c9-8958-6cb8ad169407", + "name": "IPSUM", + "endDate": "2020-03-14", + "startDate": "2021-08-31", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "uuid": "7aafa947-76af-4659-ac5a-89510829e459", + "name": "IPSUM", + "endDate": "2023-06-28", + "startDate": "2020-09-18", + "notes": "", + "roles": [ + "ORGANIZATION" ], "siteRegistry": false }, { - "uuid": "d2900183-a87f-413a-93ac-e635849aaac5", + "uuid": "6b142f73-549b-4f2d-b878-c94d8aad806c", "name": "SHELL CANADA PRODUCTS", - "endDate": "2021-03-29", - "startDate": "2017-01-02", + "endDate": "2015-05-06", + "startDate": "2018-08-16", "notes": "", "roles": [ "ORGANIZATION" @@ -49716,145 +57980,148 @@ "siteRegistry": true }, { - "uuid": "3192fff5-058d-44a1-91a5-72c11fbb3415", - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2017-10-05", - "startDate": "2014-01-22", + "uuid": "b1aeb8a8-6f43-4e0f-934a-f22d82427aa6", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2019-12-04", + "startDate": "2023-10-11", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "uuid": "f6eca611-2659-49b2-aa55-b947904adab5", + "name": "AMET, DOLOR SIT", + "endDate": "2018-12-02", + "startDate": "2016-06-02", + "notes": "", + "roles": [ + "EMPLOYEE" ], "siteRegistry": false } ], + "documents": [ + { + "uuid": "65a33757-6e1f-4ac0-8698-3f2161000dad", + "siteRegistry": false, + "documentDate": "2015-04-02", + "receivedDate": "2019-05-02", + "uploadedDate": "2014-03-01", + "title": "Preliminary Site Investigation, Detailed Site Investigation and Remedial Plan for the Management Area adjacent to the Shell Site at 1503 West 41st Ave", + "participants": [ + { + "uuid": "d7402ffa-70eb-4a7e-8f0d-198d6a681d55", + "name": "AMET, DOLOR SIT", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "9a9ad60a-30e4-4f86-8b02-3fc22ee392bc", + "name": "IPSUM", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "7e75557f-3488-4d7d-866d-84178cbfc206", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": true, + "role": "AUTHOR" + } + ] + } + ], "suspectLandUses": [ { - "uuid": "58190c78-e544-461e-bc05-74d206132ee3", + "uuid": "d0a6c65c-5845-4cb5-a5ea-e3698a4956b2", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-04-08 (described on Site Profile dated 2018-04-08)", + "notes": "INSERTED FOR SITE PROFILE DATED 2018-04-17 (described on Site Profile dated 2018-04-17)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "uuid": "bd742b39-339c-4f41-a093-72f21db16589", + "uuid": "f68f2cda-f70c-491d-8469-552dc72924e7", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2023-09-30 (described on Site Profile dated 2023-09-30)", + "notes": "INSERTED FOR SITE PROFILE DATED 2015-02-09 (described on Site Profile dated 2015-02-09)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "uuid": "403236d9-b9b5-457e-a278-51dc2f6b5744", + "uuid": "639d4a85-bb04-40dd-9c2c-52c5439e2e6a", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-09-15 (described on Site Profile dated 2022-09-15)", + "notes": "INSERTED FOR SITE PROFILE DATED 2016-06-30 (described on Site Profile dated 2016-06-30)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" - }, - { - "uuid": "a496aa69-7585-48d2-856d-6d0544e65399", - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2020-10-31 (described on Site Profile dated 2020-10-31)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" - }, - { - "uuid": "4ced450b-a0ab-47f4-b5a0-cce8bcb251d0", - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-05-10 (described on Site Profile dated 2019-05-10)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], "parcelDescriptions": [ { - "uuid": "9326892c-4f94-4381-a7e4-7ad0aa0e455c", + "uuid": "adae9e5b-51d5-447d-afa3-cc42699ab37d", "siteRegistry": false, - "dateNoted": "2014-08-24", - "parcelID": "19355", - "crownLandUsePIN": "17705", - "crownLandFileNumber": "17588", - "landDescription": "LOT 3 OF LOT 5 BLOCK 4 DISTRICT LOT 4 PLAN 6619" + "dateNoted": "2023-03-02", + "parcelID": "16121", + "crownLandUsePIN": "15281", + "crownLandFileNumber": "20212", + "landDescription": "LOT 5 OF LOT 5 BLOCK 3 DISTRICT LOT 3 PLAN 3536" }, { - "uuid": "e983ed5b-2c44-4a37-adff-71610da4156c", - "siteRegistry": true, - "dateNoted": "2015-02-15", - "parcelID": "20173", - "crownLandUsePIN": "16601", - "crownLandFileNumber": "16842", - "landDescription": "LOT 2 OF LOT 4 BLOCK 4 DISTRICT LOT 3 PLAN 7411" + "uuid": "e068eb4d-d9bd-4ca7-b2d5-a81491fb656a", + "siteRegistry": false, + "dateNoted": "2013-12-31", + "parcelID": "17774", + "crownLandUsePIN": "19915", + "crownLandFileNumber": "18891", + "landDescription": "LOT 2 OF LOT 1 BLOCK 5 DISTRICT LOT 2 PLAN 4036" }, { - "uuid": "ce5a477c-e4fd-4380-bdb4-942169823089", + "uuid": "f884f590-2159-432d-b895-49f18d233015", "siteRegistry": false, - "dateNoted": "2023-07-28", - "parcelID": "19903", - "crownLandUsePIN": "18071", - "crownLandFileNumber": "18761", - "landDescription": "LOT 3 OF LOT 5 BLOCK 2 DISTRICT LOT 2 PLAN 4213" + "dateNoted": "2014-09-05", + "parcelID": "19066", + "crownLandUsePIN": "20207", + "crownLandFileNumber": "19724", + "landDescription": "LOT 2 OF LOT 3 BLOCK 2 DISTRICT LOT 3 PLAN 4872" }, { - "uuid": "7e64952d-3c90-46cb-a6d1-17a9464c6913", - "siteRegistry": true, - "dateNoted": "2020-12-26", - "parcelID": "16977", - "crownLandUsePIN": "20335", - "crownLandFileNumber": "18635", - "landDescription": "LOT 4 OF LOT 2 BLOCK 5 DISTRICT LOT 1 PLAN 3082" + "uuid": "7349aadb-82ab-4f53-83c6-9ed89917130c", + "siteRegistry": false, + "dateNoted": "2015-07-24", + "parcelID": "17826", + "crownLandUsePIN": "16617", + "crownLandFileNumber": "17501", + "landDescription": "LOT 5 OF LOT 2 BLOCK 3 DISTRICT LOT 5 PLAN 3026" }, { - "uuid": "39355b7e-5108-4582-8da4-854d6b42ba4b", + "uuid": "bee497aa-ee56-4764-ac5c-1e8cf32bdbf6", "siteRegistry": false, - "dateNoted": "2013-10-26", - "parcelID": "15435", - "crownLandUsePIN": "20612", - "crownLandFileNumber": "20343", - "landDescription": "LOT 3 OF LOT 4 BLOCK 2 DISTRICT LOT 4 PLAN 6123" + "dateNoted": "2015-07-19", + "parcelID": "19293", + "crownLandUsePIN": "17118", + "crownLandFileNumber": "17457", + "landDescription": "LOT 4 OF LOT 3 BLOCK 2 DISTRICT LOT 3 PLAN 8958" } ], "siteDisclosures": [ { - "uuid": "6b52287e-20b4-424f-995a-555a2be55d47", + "uuid": "889fe09e-9af2-4ade-9097-a93fd8b6a8a3", "siteRegistry": true, - "dateReceived": "2021-02-23", - "dateCompleted": "2022-10-01", - "dateEntered": "2016-05-10", - "dateRegistrar": "2015-06-09", - "dateLocalAuthorityReceived": "2015-04-09", - "summary": "Excepturi dolor unde animi.\nSunt necessitatibus quidem id dolore possimus aliquid.", - "informationUsed": "Nulla debitis corporis voluptatibus.\nAd odio a incidunt.\nDignissimos error odio ab.\nAliquam cupiditate sapiente.", - "pastOrPresentOrders": "Architecto possimus aut et excepturi blanditiis harum consectetur.", - "commercialAndIndustrialPurposes": [ - { - "uuid": "b8240645-5d3f-4a67-9a74-74289fcf848d", - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false - }, - { - "uuid": "a0fa07ea-c48c-4819-9a94-43919db03757", - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true - } - ] - }, - { - "uuid": "59a1af58-2da6-4cc9-b6a1-696bd024b0ba", - "siteRegistry": false, - "dateReceived": "2021-01-24", - "dateCompleted": "2018-02-28", - "dateEntered": "2016-10-22", - "dateRegistrar": "2019-04-01", - "dateLocalAuthorityReceived": "2016-11-25", - "summary": "Suscipit totam dolores excepturi necessitatibus soluta dolores optio velit voluptatibus.", - "informationUsed": "Consectetur tenetur explicabo.\nTempora tenetur maiores quia veritatis accusantium perferendis quod.\nCorrupti excepturi nam autem repellendus ea enim ullam numquam.\nAlias unde ipsum nulla explicabo occaecati ab.", - "pastOrPresentOrders": "Explicabo nesciunt dolore molestiae corrupti sit ipsam aspernatur accusantium recusandae.", + "dateReceived": "2015-12-08", + "dateCompleted": "2014-06-21", + "dateEntered": "2019-09-01", + "dateRegistrar": "2021-02-08", + "dateLocalAuthorityReceived": "2022-01-22", + "summary": "Vero nesciunt ipsum autem ad sapiente provident.\nFacilis voluptates velit vitae.", + "informationUsed": "Asperiores veniam explicabo quod perferendis odio blanditiis cumque et repellendus.\nNisi sunt nemo fugit quae repellendus commodi eius harum.\nSuscipit quibusdam reprehenderit quas.\nFacere ad beatae.", + "pastOrPresentOrders": "Sapiente labore quos assumenda deserunt soluta laudantium qui sunt.", "commercialAndIndustrialPurposes": [ { - "uuid": "6b912522-7d40-4c6d-bdb6-c7f9b529ca43", + "uuid": "96cfa982-d7e1-4199-9731-e68ab9850ca2", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, - { - "uuid": "c5a9d7c6-0aef-441b-aa78-7daba39e4da0", - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + { + "uuid": "ee7d0934-1e64-476f-93b6-f8a8b46e3240", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true } ] @@ -49862,113 +58129,92 @@ ], "activityLog": [ { - "uuid": "960db291-44a2-4b1b-b993-1c70929f1690", - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "OKUNEVA NELS", - "timestamp": "2020-06-01" - }, - { - "uuid": "7dc8ebf3-c9c5-4761-9cd7-7b1e80d7daf6", + "uuid": "6c46df55-4d92-4f16-8918-c06639156f2c", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "HEATHCOTE BRANDI", - "timestamp": "2023-07-02" + "user": "DURGAN CLINT", + "timestamp": "2016-07-17" }, { - "uuid": "53c98d9f-b215-40cd-baee-b63ddd28a737", + "uuid": "2ae8ee84-308e-4d2f-a74d-35937fa1bb06", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "COLE BELLA", - "timestamp": "2020-09-07" + "user": "GULGOWSKI MANLEY", + "timestamp": "2014-07-05" }, { - "uuid": "5f3f2970-ad2d-40b4-a783-c2283def8ab4", - "siteRegistry": false, + "uuid": "1001de7b-2d9b-480e-8b4f-d627ffca66db", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "WUNSCH DESSIE", - "timestamp": "2018-08-22" + "user": "LARKIN JULIET", + "timestamp": "2023-07-10" }, { - "uuid": "1d2eec3b-c29c-498f-9e3c-28ed72e60c72", + "uuid": "8999a9f6-199e-46c5-b2ab-7b548f938d83", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "HERMAN LAZARO", - "timestamp": "2015-12-23" + "user": "KOSS ADITYA", + "timestamp": "2023-04-14" }, { - "uuid": "95bc10d1-3e38-4839-bbe7-75018ff30555", + "uuid": "f508f743-25bc-4a37-8296-2ed82dc8d4af", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "REICHEL SELINA", - "timestamp": "2016-02-24" + "user": "JACOBS COBY", + "timestamp": "2023-05-03" }, { - "uuid": "8d6d8ffc-c8e3-4f2f-ab24-4df2c7f852c6", + "uuid": "919799ab-01a5-413a-9a0d-2fd5d7f9a0a4", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "SAWAYN KOLBY", - "timestamp": "2021-07-07" - }, - { - "uuid": "af24ab71-d046-4db9-aec4-1be3516cb47e", - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "DECKOW TRACY", - "timestamp": "2018-02-21" + "user": "MAYERT LESTER", + "timestamp": "2018-11-18" }, { - "uuid": "6fae6231-0405-4a30-bd08-1d02f20fa791", - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "KERLUKE HUDSON", - "timestamp": "2019-01-01" - }, - { - "uuid": "a47dea11-45d9-43f0-a270-c068f417c466", - "siteRegistry": true, + "uuid": "6795b086-d9a1-46d3-86c9-803687c4de44", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "KOELPIN ENOS", - "timestamp": "2015-02-24" + "user": "LANG MARGIE", + "timestamp": "2020-05-05" } ], "associatedSites": [ { - "uuid": "dafe88e7-de94-4f63-9fd1-6186c2ca5b2a", - "dateNoted": "2018-12-16", + "uuid": "64c7db7b-b40f-44df-b7d6-4f913100c799", + "dateNoted": "2021-06-25", "notes": "", - "parcelID": "17535", - "siteID": "18096", - "siteRegistry": false + "parcelID": "20714", + "siteID": "18797", + "siteRegistry": true } ] }, { - "uuid": "3fc904a1-1da2-474a-a81c-870bba32fca1", - "siteID": 16154, - "address": "16334 Reina Radial", - "latitude": 56.0845, - "longitude": -127.354, - "lastUpdated": "2023-07-30", - "city": "Port Claudinestad", - "region": "Vancouver Island/Coast", - "victoriaFile": "26250-20/15568", + "uuid": "90569dbd-d54a-4980-92cd-02366a7f68cb", + "siteID": 16871, + "address": "528 America Branch", + "latitude": 48.6785, + "longitude": -123.2163, + "lastUpdated": "2023-07-23", + "city": "Stoltenbergview", + "region": "Cariboo", + "victoriaFile": "26250-20/9475", "regionalFile": "N/A", "parcelIDs": [ - 8793026, - 6834465, - 1625226, - 2721627, - 4983428 + 2216827, + 7798933, + 9038923, + 7125427, + 3698313 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "1a414808-a4e1-4988-a50f-5a7acbe9f9ec", - "createdAt": "2023-01-28", - "completed": "2017-05-18", - "initiated": "2017-01-15", - "ministryContact": "BASHIRIAN FLOY", + "uuid": "210a7f2b-a4fb-4460-acef-ed23115b3624", + "createdAt": "2014-03-23", + "completed": "2021-07-03", + "initiated": "2015-09-22", + "ministryContact": "CREMIN LESLEY", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -49977,32 +58223,32 @@ ], "notationParticipants": [ { - "uuid": "d56f7255-bce7-41de-9ca4-3ceced173479", + "uuid": "ca14855e-65a9-4d90-aed8-77e6cdd01ab8", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true + "role": "REQUESTED BY", + "siteRegistry": false }, { - "uuid": "778f47e8-ffdc-4f3b-b438-f01718ff0eaa", - "name": "SHELL CANADA PRODUCTS", + "uuid": "b81794b1-c353-4423-b6d0-4777e5122a0b", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "3768770e-9894-4827-8b12-b0102eca1c16", + "uuid": "ec328410-a1aa-4e48-a223-56d3c17b11d8", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "11c549cf-d5ea-4e93-a660-7eaa4b692cf9", + "uuid": "9d01d695-167b-4163-a55a-2991a0473d50", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "f0c687b9-f710-43dc-8fb8-9c183a76843a", - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "171fbc08-b5ad-49d0-a36a-970521c26c41", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false } @@ -50010,11 +58256,11 @@ "siteRegistry": true }, { - "uuid": "a533ec0e-0371-4901-b786-de6dad36aba8", - "createdAt": "2017-10-30", - "completed": "2015-12-06", - "initiated": "2022-08-12", - "ministryContact": "MAYER MEAGAN", + "uuid": "cec4fd77-0bb0-48ea-86ca-f0ae4888d8df", + "createdAt": "2014-08-01", + "completed": "2019-12-08", + "initiated": "2018-05-07", + "ministryContact": "ROWE EDWIN", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -50023,28 +58269,28 @@ ], "notationParticipants": [ { - "uuid": "f472329a-525d-4864-a0fc-6c72fea964f0", + "uuid": "da2b46b4-32ca-4a86-809a-0492a1964eb5", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false + "role": "REQUESTED BY", + "siteRegistry": true }, { - "uuid": "d4be706c-cbc0-40b9-8cca-cc9a5c85eaab", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false + "uuid": "bdbad4b2-7c5b-4dd6-841a-9e1b73e364dc", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true }, { - "uuid": "151a6047-e199-4484-ae29-603793029280", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false + "uuid": "762a061b-01d0-4440-a77f-a37a182ceab8", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true }, { - "uuid": "dbe06520-47a9-4ae6-add6-4bc6dc870fb2", - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "d7fc6ae5-d252-438f-a871-7f1a3755309c", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false } ], "siteRegistry": false @@ -50052,43 +58298,43 @@ ], "participants": [ { - "uuid": "b59ec944-d48e-45ae-b997-84b8d4ea3959", - "name": "IPSUM", - "endDate": "2017-12-21", - "startDate": "2020-05-10", + "uuid": "8840f796-7c0c-4b7e-8e64-e85b41dbc29e", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2015-08-04", + "startDate": "2021-01-30", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "25b1d916-f656-4310-88f0-00a901d6970c", - "name": "SHELL CANADA PRODUCTS", - "endDate": "2015-12-06", - "startDate": "2021-07-18", + "uuid": "dc807352-2e0a-43f3-aecb-347ef07b26c9", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2017-08-03", + "startDate": "2022-01-24", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": true }, { - "uuid": "2fa47856-7a03-4c9b-847d-b8b5e77c6e15", + "uuid": "b00f6670-8b18-4ea0-998a-825180856825", "name": "IPSUM", - "endDate": "2017-01-21", - "startDate": "2023-03-16", + "endDate": "2023-03-20", + "startDate": "2017-03-28", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "e45e213a-c0ff-40d2-b0b3-114c12d6c6a9", - "name": "AMET, DOLOR SIT", - "endDate": "2019-05-04", - "startDate": "2015-11-22", + "uuid": "27a4eae4-df81-4b14-908f-ed81c03a140b", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2020-08-20", + "startDate": "2018-08-03", "notes": "", "roles": [ "EMPLOYEE" @@ -50096,240 +58342,275 @@ "siteRegistry": true } ], - "suspectLandUses": [ + "documents": [ { - "uuid": "70d37739-fcd4-41b6-84be-45862746f406", + "uuid": "3d4986bc-5016-4306-8bb4-999ba8c27a25", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-07-18 (described on Site Profile dated 2021-07-18)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "documentDate": "2015-05-04", + "receivedDate": "2015-05-26", + "uploadedDate": "2021-08-29", + "title": "Summary of Site Conditions, 1537 W 41st Avenue, Vancouver", + "participants": [ + { + "uuid": "10f875a1-8b73-4a2c-bf6d-526ac38b5895", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": true, + "role": "AUTHOR" + } + ] }, { - "uuid": "d3e1afb7-c5fc-40d0-b4a6-9ce32ac1b7b3", + "uuid": "b1e26fc5-3b5d-417d-bc8c-7b7bea7cfa60", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2023-06-19 (described on Site Profile dated 2023-06-19)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "documentDate": "2018-11-20", + "receivedDate": "2020-08-21", + "uploadedDate": "2014-07-07", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "3ade4127-1e7f-40f0-a21e-d9cafdd7e972", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "45570aec-f2a0-42ba-b7d3-47d3620ae2ab", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "89f2e4ac-8b8f-4d27-9f06-c192a6d0f71e", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": false, + "role": "AUTHOR" + } + ] }, { - "uuid": "289c9f81-ac46-4be0-b54e-ec595515ef15", + "uuid": "0b97837b-cd3a-46d4-a7d9-f7365a658c8b", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2023-03-26 (described on Site Profile dated 2023-03-26)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "documentDate": "2020-09-21", + "receivedDate": "2021-12-11", + "uploadedDate": "2015-07-21", + "title": "Summary of Site Conditions, 1537 W 41st Avenue, Vancouver", + "participants": [ + { + "uuid": "4ab6f8c5-a091-4b40-95a2-cd4094e17414", + "name": "AMET, DOLOR SIT", + "siteRegistry": false, + "role": "AUTHOR" + } + ] + }, + { + "uuid": "2875f6f3-2311-4942-90d8-895f346c1e96", + "siteRegistry": false, + "documentDate": "2022-03-30", + "receivedDate": "2019-12-15", + "uploadedDate": "2022-06-13", + "title": "Preliminary Site Investigation, Detailed Site Investigation and Remedial Plan for the Management Area adjacent to the Shell Site at 1503 West 41st Ave", + "participants": [ + { + "uuid": "28512da7-08d6-4652-9cc1-f19336a0946d", + "name": "IPSUM", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "ca19f063-9668-41b3-ace4-0af9b93f37a5", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "eccf2d21-2bc1-476f-801a-92278f703dc1", + "name": "IPSUM", + "siteRegistry": true, + "role": "AUTHOR" + } + ] + }, + { + "uuid": "fa8e2d12-11f2-4ebc-8c8f-cef884e0357c", + "siteRegistry": false, + "documentDate": "2023-03-17", + "receivedDate": "2023-03-09", + "uploadedDate": "2016-04-04", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "3accaa85-bb38-472f-92cb-069ead3dee39", + "name": "AMET, DOLOR SIT", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "baed7a07-6643-4d7c-9d15-e97070c650fc", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": false, + "role": "AUTHOR" + } + ] } ], - "parcelDescriptions": [ + "suspectLandUses": [ { - "uuid": "63647833-ee96-4535-91b5-2f1bd3cab3f9", - "siteRegistry": true, - "dateNoted": "2022-06-20", - "parcelID": "20726", - "crownLandUsePIN": "16625", - "crownLandFileNumber": "16289", - "landDescription": "LOT 5 OF LOT 2 BLOCK 5 DISTRICT LOT 3 PLAN 6224" + "uuid": "56dd3dc4-b7e2-4568-95af-fe932fb50211", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2017-04-16 (described on Site Profile dated 2017-04-16)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "uuid": "fa2a3441-d989-4a37-9da6-83bf9e11591b", + "uuid": "f5157c88-793b-42a4-ad29-5fd9359d0611", "siteRegistry": true, - "dateNoted": "2020-09-03", - "parcelID": "17334", - "crownLandUsePIN": "20911", - "crownLandFileNumber": "16311", - "landDescription": "LOT 3 OF LOT 3 BLOCK 4 DISTRICT LOT 2 PLAN 8174" - }, + "notes": "INSERTED FOR SITE PROFILE DATED 2021-12-27 (described on Site Profile dated 2021-12-27)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + } + ], + "parcelDescriptions": [ { - "uuid": "8a8a02f1-a2ae-4ca6-a32b-c9f147914ef2", - "siteRegistry": false, - "dateNoted": "2016-09-29", - "parcelID": "17794", - "crownLandUsePIN": "20217", - "crownLandFileNumber": "17592", - "landDescription": "LOT 4 OF LOT 3 BLOCK 5 DISTRICT LOT 5 PLAN 4479" + "uuid": "6fda4291-f021-4ce6-8409-d15d4d29bc7b", + "siteRegistry": true, + "dateNoted": "2015-12-05", + "parcelID": "17528", + "crownLandUsePIN": "20003", + "crownLandFileNumber": "17628", + "landDescription": "LOT 3 OF LOT 5 BLOCK 5 DISTRICT LOT 2 PLAN 7799" }, { - "uuid": "b591d9cf-7704-4413-a65c-5be5464961e2", - "siteRegistry": false, - "dateNoted": "2015-07-18", - "parcelID": "18517", - "crownLandUsePIN": "19372", - "crownLandFileNumber": "17628", - "landDescription": "LOT 3 OF LOT 4 BLOCK 4 DISTRICT LOT 3 PLAN 3528" + "uuid": "06b1f58d-0bca-46a7-98cf-76b8b8889d8f", + "siteRegistry": true, + "dateNoted": "2014-02-08", + "parcelID": "18258", + "crownLandUsePIN": "15347", + "crownLandFileNumber": "20620", + "landDescription": "LOT 4 OF LOT 3 BLOCK 1 DISTRICT LOT 3 PLAN 5894" }, { - "uuid": "08bf56da-8495-446c-b817-abfe1cc3e197", - "siteRegistry": false, - "dateNoted": "2019-07-13", - "parcelID": "15546", - "crownLandUsePIN": "19180", - "crownLandFileNumber": "19481", - "landDescription": "LOT 1 OF LOT 4 BLOCK 1 DISTRICT LOT 1 PLAN 3022" + "uuid": "c1809bae-0580-4a77-b646-3193315eead9", + "siteRegistry": true, + "dateNoted": "2021-10-24", + "parcelID": "18190", + "crownLandUsePIN": "18105", + "crownLandFileNumber": "15343", + "landDescription": "LOT 3 OF LOT 1 BLOCK 1 DISTRICT LOT 4 PLAN 8153" } ], "siteDisclosures": [ { - "uuid": "efd52be6-a9d9-4809-91c2-5dff46ca5723", - "siteRegistry": false, - "dateReceived": "2015-04-27", - "dateCompleted": "2022-03-20", - "dateEntered": "2022-02-14", - "dateRegistrar": "2017-07-17", - "dateLocalAuthorityReceived": "2015-10-06", - "summary": "Facilis et porro debitis eaque vero quia nemo voluptates aspernatur.\nTotam vero enim aperiam quo.", - "informationUsed": "Non quo quo a unde.\nInventore autem aliquam corporis.\nExpedita aspernatur numquam alias facere.\nIpsam nisi hic voluptatum assumenda.\nTotam itaque possimus.", - "pastOrPresentOrders": "Minima modi dolorem pariatur saepe laudantium beatae ipsa quis.\nRepellat impedit accusantium explicabo doloremque facilis dolorum adipisci tempore.", + "uuid": "40acd8da-f6b0-435f-8b41-a9ea04c3e025", + "siteRegistry": true, + "dateReceived": "2020-06-05", + "dateCompleted": "2014-01-17", + "dateEntered": "2019-12-01", + "dateRegistrar": "2020-10-30", + "dateLocalAuthorityReceived": "2019-12-22", + "summary": "Dolore maiores aperiam.", + "informationUsed": "Voluptate quaerat itaque inventore ipsam fuga officiis sequi.\nAperiam ullam soluta quas vero ipsum unde consequuntur asperiores.\nQuia accusantium recusandae eos nesciunt vel officia ducimus facere enim.", + "pastOrPresentOrders": "Architecto et ipsam molestias.\nOmnis nesciunt doloremque maiores error vel neque pariatur.\nNostrum eum vero blanditiis beatae perferendis molestiae dolorem.", "commercialAndIndustrialPurposes": [ { - "uuid": "e9bff18d-fbf2-4889-bc3f-3cd0265d45b6", - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false - }, - { - "uuid": "d78ddea7-8632-4350-b3ce-2f78be30128c", - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false - }, - { - "uuid": "913100a4-5234-4a80-b625-e529bbc63fd2", + "uuid": "ed2b863d-b9d3-4b52-8a38-2a83f788e566", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { - "uuid": "96592ed0-3f7c-4a84-9795-e7e049549c16", - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false - } - ] - }, - { - "uuid": "03648d57-f3c1-4995-9a6d-8882f1641042", - "siteRegistry": true, - "dateReceived": "2017-02-02", - "dateCompleted": "2019-02-07", - "dateEntered": "2018-11-30", - "dateRegistrar": "2016-06-25", - "dateLocalAuthorityReceived": "2023-01-04", - "summary": "Modi eaque veniam deleniti error eum error.\nAliquid earum a mollitia placeat rerum velit.", - "informationUsed": "Voluptate nihil enim suscipit nam et.\nMinima facere officia delectus temporibus animi exercitationem.\nOfficia sapiente in quo recusandae id sunt possimus.", - "pastOrPresentOrders": "Exercitationem tempora nam.", - "commercialAndIndustrialPurposes": [ - { - "uuid": "26296d14-3091-4139-9c1d-eb480a3b71b1", + "uuid": "945629c1-207f-420d-889b-cf9822c4e5f9", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { - "uuid": "14b3c678-2709-4d19-afdb-86640890e29c", + "uuid": "174ca856-411f-4b4d-b735-59a9548c7862", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { - "uuid": "39436805-65fb-4f4f-8290-cbd58eccac5f", + "uuid": "a8843362-3f39-412d-a244-316ef45a430f", "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false - }, - { - "uuid": "3a9eb814-942b-49f9-b3e5-f2a313da9d44", - "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false + "siteRegistry": true } ] } ], "activityLog": [ { - "uuid": "d24a126b-37a4-4b9b-996f-042ba58bef19", - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "HOEGER KATELIN", - "timestamp": "2023-01-12" - }, - { - "uuid": "75d37423-b868-4ecf-972e-f84ee41d1590", - "siteRegistry": false, + "uuid": "475aae04-9fcc-477a-ac3d-abc2827dc815", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "SCHMIDT BARRETT", - "timestamp": "2019-01-15" + "user": "BOGISICH ELEANORE", + "timestamp": "2017-07-05" }, { - "uuid": "e3e16b2f-b893-4f93-925e-f428a962d506", + "uuid": "ef2df911-84b8-42f9-8c7e-f13a838c6733", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "HOWE LIAM", - "timestamp": "2022-05-12" + "user": "DAUGHERTY ADELINE", + "timestamp": "2021-04-26" }, { - "uuid": "a4aec6b4-36c1-44c7-bf0f-b5111679e84c", + "uuid": "a71341a8-2f94-43c2-8172-f8334d69ecbd", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "GREENFELDER DAMIEN", - "timestamp": "2014-08-26" + "user": "SCHAEFER GERMAN", + "timestamp": "2020-02-29" }, { - "uuid": "89045d34-77c5-4aca-858f-31d3d5116115", - "siteRegistry": true, + "uuid": "4d6cecea-f6ec-4c38-829d-dc957a0aefb8", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "MACGYVER AILEEN", - "timestamp": "2014-08-22" + "user": "LARKIN WENDELL", + "timestamp": "2019-09-29" }, { - "uuid": "767f95b4-8b53-4464-88b8-8ee2f7cf61bf", + "uuid": "1607fb6b-57ae-4302-a51e-7f5a03fb658a", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "RUTHERFORD MADYSON", - "timestamp": "2016-10-30" + "user": "ROBERTS MARLENE", + "timestamp": "2017-12-13" } ], "associatedSites": [ { - "uuid": "98e54e1e-fbfc-4c89-ac11-4b0b41ca2928", - "dateNoted": "2020-06-27", - "notes": "", - "parcelID": "17031", - "siteID": "19113", - "siteRegistry": true - }, - { - "uuid": "af4ee5a6-16ef-4d00-8e5c-d213d535e235", - "dateNoted": "2022-06-23", + "uuid": "06123d63-5ee5-4e17-adae-352ffc15de1a", + "dateNoted": "2014-10-12", "notes": "", - "parcelID": "15861", - "siteID": "15732", + "parcelID": "19442", + "siteID": "18676", "siteRegistry": true } ] }, { - "uuid": "1719a9e5-727d-47fe-af6b-b319dea098c7", - "siteID": 15732, - "address": "52929 Meda Green", - "latitude": 51.2494, - "longitude": -134.761, - "lastUpdated": "2021-02-12", - "city": "Greenfelderstead", - "region": "Cariboo", - "victoriaFile": "26250-20/10502", + "uuid": "17d5aa87-dd5e-4402-9fa3-64c491c3edd7", + "siteID": 18228, + "address": "791 Witting Pine", + "latitude": 57.8358, + "longitude": -129.8806, + "lastUpdated": "2017-08-22", + "city": "Conroyport", + "region": "Thompson-Okanagan", + "victoriaFile": "26250-20/13725", "regionalFile": "N/A", "parcelIDs": [ - 8629289, - 1445213, - 7737297, - 4749209, - 2275030 + 342572, + 3093834, + 6160824, + 6042429, + 1720486 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "a50ae2f4-9268-4b70-b550-4452f681bb54", - "createdAt": "2022-08-14", - "completed": "2015-04-01", - "initiated": "2016-07-02", - "ministryContact": "WALSH NOEMY", + "uuid": "67bb9b5a-f00a-4a86-a026-1f81d81eba8c", + "createdAt": "2017-08-09", + "completed": "2019-06-06", + "initiated": "2023-06-19", + "ministryContact": "POLLICH KEVON", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -50338,26 +58619,38 @@ ], "notationParticipants": [ { - "uuid": "c93c055f-e4b7-474d-b6bd-db73e3c7bfc1", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "uuid": "ad0d8790-84ad-4b44-b3ea-4c0ec5edd083", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "uuid": "27137139-73a7-4c82-b814-df3d6966c791", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": true }, { - "uuid": "cec2f03c-418d-4a6b-a717-6ed1836a51a1", + "uuid": "4262ea7a-6096-41bb-9636-ef5f2f54fa65", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true + }, + { + "uuid": "2b8be8ea-9c31-4c9d-af88-76cd91bda2b7", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false } ], "siteRegistry": true }, { - "uuid": "5a1297f7-7726-42ab-8a1b-4d0d97ad45be", - "createdAt": "2022-06-16", - "completed": "2019-05-05", - "initiated": "2020-12-10", - "ministryContact": "KUHIC GAGE", + "uuid": "d0b4c7b8-1785-430d-9dc2-a4d205a0d8c7", + "createdAt": "2023-08-27", + "completed": "2014-09-08", + "initiated": "2014-09-29", + "ministryContact": "LARSON DAREN", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -50366,38 +58659,44 @@ ], "notationParticipants": [ { - "uuid": "9d3ce41c-6214-4dbd-b71b-9e440471ad70", - "name": "SHELL CANADA PRODUCTS", + "uuid": "8f3c51cf-1b3f-47d2-b91d-0c3b389bfd83", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "9b40a7a7-bd1a-41e6-a57f-3da00391c9b6", + "uuid": "9a5beacc-0b16-4f7d-ab6a-c92cc189688b", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "cdeb9d8a-152a-4346-b1fe-8cade452994f", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "c007e81f-e67e-43b0-9a3a-9b406d0fefa7", + "uuid": "96916a1c-6064-4050-a8ed-82360d1dd7d4", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true }, { - "uuid": "76d73ca3-1f1a-47e5-9591-7728136f7d32", + "uuid": "00e615e7-7e1e-489c-9e13-66d71af8f518", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "828ec343-7b24-4d7b-a14b-e1f24cab8dca", - "createdAt": "2017-05-17", - "completed": "2017-01-06", - "initiated": "2023-03-01", - "ministryContact": "BAUCH MAIYA", + "uuid": "a8423193-9859-492b-837d-ded971c30b67", + "createdAt": "2018-11-09", + "completed": "2019-01-13", + "initiated": "2016-07-28", + "ministryContact": "BAHRINGER-LITTEL DORA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -50406,191 +58705,327 @@ ], "notationParticipants": [ { - "uuid": "d24a3fc3-b21b-4c57-a5ba-837b870371f4", - "name": "SHELL CANADA PRODUCTS", + "uuid": "0ade596a-05a8-40c6-afc9-9c6cf65a3bca", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "087631c7-217c-474c-9d68-807f4d5112ce", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "98219775-f1d8-4d0d-8206-05006d82e173", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "3a57255e-26be-486a-a7c5-da47fcc6ea64", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "c1eb3196-008d-47d4-a8fa-d3ad4e508a94", + "uuid": "a1dbcd14-0ac3-4b75-9524-5fe8aea03090", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "uuid": "67475bff-b51e-45c0-8439-379248ef92fb", + "createdAt": "2022-07-16", + "completed": "2020-07-06", + "initiated": "2015-11-21", + "ministryContact": "BOSCO CATHRINE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "uuid": "a6af6c14-c09f-48ca-84b2-fe7d79aaeab3", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false }, { - "uuid": "8d57dc04-86b5-42d9-9c07-35acdf2dc974", + "uuid": "3d620cdd-f905-416b-8635-f3b81bab6083", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "602fcb1a-fe01-4f49-96f2-6e3a17955e91", + "uuid": "e05fe323-348e-4af6-a753-52a204061ce2", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "b48e8ea3-b7db-4a1d-bc7d-e0c6640fba36", + "uuid": "1e964206-c21a-4964-9582-44e1da03dfa5", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false } ], "participants": [ { - "uuid": "0bb7c2c3-08a1-450b-951e-d5747c70b142", + "uuid": "897eab0c-3737-4e44-b079-5c23b761d575", "name": "IPSUM", - "endDate": "2022-01-10", - "startDate": "2018-06-25", + "endDate": "2017-10-06", + "startDate": "2020-06-29", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": false - }, - { - "uuid": "8c47afcb-8697-4b33-8a9b-2c1c82463cf4", - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2013-12-25", - "startDate": "2018-02-14", - "notes": "", - "roles": [ - "ORGANIZATION" - ], "siteRegistry": true }, { - "uuid": "cc26185c-bea0-4bc1-bb92-7aac3d4fd10c", - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2015-06-24", - "startDate": "2015-11-30", + "uuid": "6f082dc1-4fbf-40b1-be8c-9b25d33d79d6", + "name": "IPSUM", + "endDate": "2017-03-25", + "startDate": "2021-12-30", "notes": "", "roles": [ "EMPLOYEE" ], "siteRegistry": false + } + ], + "documents": [ + { + "uuid": "658ba276-48a3-40f3-b480-3f1358131adc", + "siteRegistry": true, + "documentDate": "2021-09-17", + "receivedDate": "2019-03-10", + "uploadedDate": "2014-09-15", + "title": "Summary of Site Conditions, 1537 W 41st Avenue, Vancouver", + "participants": [ + { + "uuid": "68fd3691-7244-438e-b9bd-4a4d3a680818", + "name": "AMET, DOLOR SIT", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "22f7e625-5697-417a-ad74-6f0177a6cc42", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "5bcade94-a55d-4635-9aae-222204f8fa75", + "name": "IPSUM", + "siteRegistry": true, + "role": "AUTHOR" + } + ] }, { - "uuid": "fd8f4bef-2f0c-4913-b3cf-ec051c26bc96", - "name": "AMET, DOLOR SIT", - "endDate": "2015-04-30", - "startDate": "2023-04-07", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": false + "uuid": "e07ad245-7045-44ef-a7a1-c5a834aa7896", + "siteRegistry": false, + "documentDate": "2016-04-08", + "receivedDate": "2020-01-24", + "uploadedDate": "2021-02-28", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "737d17b2-85c3-430c-84ee-73abdf721a23", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": true, + "role": "AUTHOR" + } + ] }, { - "uuid": "7c17eed4-0f09-4055-9dfd-b46377715bc2", - "name": "AMET, DOLOR SIT", - "endDate": "2018-02-02", - "startDate": "2015-03-03", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": true + "uuid": "2413f557-c228-4055-86f9-ef357126abea", + "siteRegistry": false, + "documentDate": "2015-01-23", + "receivedDate": "2014-07-31", + "uploadedDate": "2018-12-28", + "title": "Summary of Site Conditions, 1537 W 41st Avenue, Vancouver", + "participants": [ + { + "uuid": "b8f67077-a228-4f6f-af6c-67291fdbaaeb", + "name": "AMET, DOLOR SIT", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "48e53317-2cd1-4727-ac79-7e55a47ffab2", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "fd153525-15d0-4c8b-ae39-87de0834a298", + "name": "IPSUM", + "siteRegistry": true, + "role": "AUTHOR" + } + ] + }, + { + "uuid": "8723656e-f6f0-46ff-81ab-8271af6cc1df", + "siteRegistry": true, + "documentDate": "2013-10-23", + "receivedDate": "2015-08-09", + "uploadedDate": "2015-10-14", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "205d76ec-c065-4a7f-8070-8ff4759313bf", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": true, + "role": "AUTHOR" + } + ] } ], "suspectLandUses": [ { - "uuid": "d1776346-b65f-42aa-ba5c-2ae072f557bc", + "uuid": "967c344f-dd60-4ad5-8e69-9e7778a1c3f1", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-06-22 (described on Site Profile dated 2022-06-22)", + "notes": "INSERTED FOR SITE PROFILE DATED 2021-12-04 (described on Site Profile dated 2021-12-04)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "uuid": "0f1586b0-03d9-4584-ba0e-d06e0b9edb62", - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2020-06-01 (described on Site Profile dated 2020-06-01)", + "uuid": "6c520e47-9a8a-43b9-9603-4a00f145b813", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2020-01-03 (described on Site Profile dated 2020-01-03)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "uuid": "ecd5fc13-6120-4ad5-915e-e5c6b0448570", - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-12-22 (described on Site Profile dated 2022-12-22)", + "uuid": "0ef82e1c-2236-48fc-9ad1-d9ffedda86ea", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2022-01-23 (described on Site Profile dated 2022-01-23)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "uuid": "e53a4fd2-773b-430f-af08-2b2f1b85e173", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2021-07-11 (described on Site Profile dated 2021-07-11)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], "parcelDescriptions": [ { - "uuid": "c392ad57-8df9-40ec-9de8-10fb4993784d", + "uuid": "a20300dc-abb1-4344-8eed-463e9e4db63b", "siteRegistry": true, - "dateNoted": "2020-02-18", - "parcelID": "17132", - "crownLandUsePIN": "17843", - "crownLandFileNumber": "18500", - "landDescription": "LOT 5 OF LOT 1 BLOCK 3 DISTRICT LOT 1 PLAN 5603" + "dateNoted": "2018-02-13", + "parcelID": "17786", + "crownLandUsePIN": "15366", + "crownLandFileNumber": "18127", + "landDescription": "LOT 3 OF LOT 3 BLOCK 4 DISTRICT LOT 4 PLAN 8774" + }, + { + "uuid": "b763eb69-46f1-4f7c-9798-40204640ea48", + "siteRegistry": false, + "dateNoted": "2015-03-16", + "parcelID": "19690", + "crownLandUsePIN": "20942", + "crownLandFileNumber": "17727", + "landDescription": "LOT 5 OF LOT 2 BLOCK 2 DISTRICT LOT 1 PLAN 3401" + }, + { + "uuid": "9e03106a-0317-4f65-b3a2-717ec1aec895", + "siteRegistry": true, + "dateNoted": "2014-12-18", + "parcelID": "17004", + "crownLandUsePIN": "15435", + "crownLandFileNumber": "20660", + "landDescription": "LOT 5 OF LOT 2 BLOCK 1 DISTRICT LOT 1 PLAN 5722" + }, + { + "uuid": "598379f8-35b9-4869-bc0f-b2d1fadc3e78", + "siteRegistry": false, + "dateNoted": "2017-05-30", + "parcelID": "20842", + "crownLandUsePIN": "17415", + "crownLandFileNumber": "16013", + "landDescription": "LOT 1 OF LOT 5 BLOCK 3 DISTRICT LOT 4 PLAN 3528" }, { - "uuid": "e2e456a1-4b0e-452c-8097-5569016c22ae", + "uuid": "f9f312fb-0281-4278-84ae-f6908c95af38", "siteRegistry": false, - "dateNoted": "2019-04-03", - "parcelID": "20781", - "crownLandUsePIN": "18672", - "crownLandFileNumber": "16122", - "landDescription": "LOT 4 OF LOT 5 BLOCK 3 DISTRICT LOT 2 PLAN 9108" + "dateNoted": "2023-01-30", + "parcelID": "20805", + "crownLandUsePIN": "17438", + "crownLandFileNumber": "15333", + "landDescription": "LOT 3 OF LOT 1 BLOCK 5 DISTRICT LOT 2 PLAN 6436" } ], "siteDisclosures": [ { - "uuid": "3875628d-6539-4328-a045-6ecafc39ad34", + "uuid": "6b48f2ce-5bc4-4dd4-8a14-130e4915307c", "siteRegistry": false, - "dateReceived": "2016-03-08", - "dateCompleted": "2020-04-19", - "dateEntered": "2016-07-24", - "dateRegistrar": "2022-03-14", - "dateLocalAuthorityReceived": "2016-08-21", - "summary": "Accusantium optio cumque maiores explicabo.\nQuibusdam esse debitis.", - "informationUsed": "Sint ab consequatur.\nDucimus labore mollitia praesentium minus excepturi magni repudiandae.\nExplicabo ipsam laboriosam a nulla nam rem vitae.\nPorro quae ut magnam.", - "pastOrPresentOrders": "Exercitationem nesciunt deserunt odit dicta.\nSed veritatis dolorum id repellendus labore ratione.", + "dateReceived": "2020-01-26", + "dateCompleted": "2023-02-02", + "dateEntered": "2017-06-08", + "dateRegistrar": "2020-04-18", + "dateLocalAuthorityReceived": "2019-02-14", + "summary": "Voluptatibus reiciendis ipsam facilis architecto magnam.\nMaxime aut vel ut accusamus doloribus repudiandae unde repellat.", + "informationUsed": "Optio alias distinctio voluptatum aliquam illum.\nConsectetur corporis ab.\nQuisquam dolores voluptatem ex quibusdam eius fugit aliquid quo molestias.", + "pastOrPresentOrders": "Natus illo exercitationem consectetur cupiditate delectus.", "commercialAndIndustrialPurposes": [ { - "uuid": "2dab77bf-5d9f-467c-9dac-c63786d0d572", + "uuid": "cb2affb2-41c4-43ef-a15e-701e98231896", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "uuid": "ab9626f1-aaab-43a4-a1c0-ba062653c54d", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "uuid": "e41b87d7-7f22-480b-856f-c11508b55bc7", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { - "uuid": "5885bc78-b501-4fbc-9f39-11d72e1ec31e", + "uuid": "b3217afd-1791-4f27-a120-7186457df4b6", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false + "siteRegistry": true } ] }, { - "uuid": "b2934fa3-b0ca-426f-aaab-1e691437ab26", + "uuid": "65102a0a-208f-4347-8470-98adff2e78cc", "siteRegistry": false, - "dateReceived": "2016-03-11", - "dateCompleted": "2020-01-21", - "dateEntered": "2019-09-17", - "dateRegistrar": "2016-12-21", - "dateLocalAuthorityReceived": "2017-07-30", - "summary": "Laborum sapiente cum quo totam.\nEveniet deleniti maxime laboriosam ipsa aliquid voluptate.\nOdit ad quisquam ipsum possimus harum fugiat vel maiores ratione.", - "informationUsed": "Ratione temporibus sequi inventore.\nAt ratione est.\nEaque assumenda est.\nPorro eum excepturi dolores placeat sunt.", - "pastOrPresentOrders": "Nisi sequi aliquid doloribus officia.", + "dateReceived": "2014-05-11", + "dateCompleted": "2014-09-14", + "dateEntered": "2020-05-26", + "dateRegistrar": "2013-11-22", + "dateLocalAuthorityReceived": "2020-04-24", + "summary": "Eaque possimus nulla nobis nisi praesentium cumque.", + "informationUsed": "Quia vel sint.\nDeserunt eveniet provident accusamus a.\nAtque id molestiae in dolorum quisquam occaecati esse.\nCulpa itaque possimus eveniet maiores fugit atque illo.", + "pastOrPresentOrders": "Nulla voluptates eaque ratione eveniet cupiditate delectus earum deleniti repellendus.", "commercialAndIndustrialPurposes": [ { - "uuid": "ea63e9e4-5934-4e81-b55c-884249c504f0", - "scheduleReference": "F2*", + "uuid": "fe28b9a7-9ac2-416c-ba79-4983db1a48f9", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, { - "uuid": "51ec74ed-14f3-402b-8bf0-f3a62f370c34", - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false - }, - { - "uuid": "ff967088-fe19-4bff-a13e-2ca1ebde9b57", + "uuid": "e21b5785-e43c-4820-9ace-c24810dec89d", "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true } ] @@ -50598,107 +59033,101 @@ ], "activityLog": [ { - "uuid": "523cd4f4-6190-4809-ae02-20395d6e11b7", - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "MCCLURE BULAH", - "timestamp": "2021-12-25" - }, - { - "uuid": "5c832b8d-2373-4bcd-a180-6d21e7cbac89", - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "SMITHAM BRISA", - "timestamp": "2016-11-01" - }, - { - "uuid": "b4f57679-6a05-43cd-b12f-95ca30db9c2a", - "siteRegistry": false, + "uuid": "c4c67e40-5911-4682-b05e-9233e44e7bfa", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "HARVEY DELMER", - "timestamp": "2021-02-25" + "user": "TORP MARTINA", + "timestamp": "2014-11-15" }, { - "uuid": "19b3ac22-cab6-484d-8e81-6506be8b7706", + "uuid": "945137f2-e793-448d-8ca8-d36249548fb9", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "O'CONNER ABE", - "timestamp": "2020-08-10" + "user": "WEHNER ALTHEA", + "timestamp": "2014-05-10" }, { - "uuid": "174af389-f542-4a4d-a3d4-5f1001ba1d54", + "uuid": "71bc6074-12b7-485b-8726-8dac0d26821f", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "BOSCO CHANELLE", - "timestamp": "2014-06-16" + "user": "BAUMBACH WILBER", + "timestamp": "2018-03-07" }, { - "uuid": "60eb8c9d-69ad-4b7d-8225-d07209233195", - "siteRegistry": true, + "uuid": "40953451-9f29-476b-b942-f8ae7a81f46c", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "SCHMITT AURELIA", - "timestamp": "2017-08-15" + "user": "WHITE OSCAR", + "timestamp": "2014-06-09" }, { - "uuid": "d84a313c-b952-418a-a2a7-f408197545a4", - "siteRegistry": true, + "uuid": "362e0165-94ef-4209-a64e-8b7b3089b6b5", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "NITZSCHE COLTON", - "timestamp": "2016-08-15" + "user": "KLING AALIYAH", + "timestamp": "2023-04-26" }, { - "uuid": "a74756ab-40a9-433a-b05a-97363110eabe", - "siteRegistry": true, + "uuid": "61103445-c1c9-4ab8-a789-2e008bb8c28e", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "HOMENICK-HAHN JAMAAL", - "timestamp": "2014-11-13" + "user": "RUSSEL ANYA", + "timestamp": "2021-06-11" } ], "associatedSites": [ { - "uuid": "73aa5357-32d8-493a-96b6-3caa5a78d572", - "dateNoted": "2023-01-29", + "uuid": "86c39e81-a7f4-4779-b932-84d17d3d76e3", + "dateNoted": "2020-09-02", "notes": "", - "parcelID": "19131", - "siteID": "17418", + "parcelID": "20236", + "siteID": "15587", "siteRegistry": false }, { - "uuid": "f1396140-6f3c-48d4-9b09-1d6aab73dddd", - "dateNoted": "2023-03-12", + "uuid": "78d7b8cd-c5e7-430f-841a-28e09d9adc04", + "dateNoted": "2016-06-26", "notes": "", - "parcelID": "15674", - "siteID": "17896", - "siteRegistry": false + "parcelID": "20582", + "siteID": "18756", + "siteRegistry": true + }, + { + "uuid": "ba665d13-df77-4063-a39c-5f6124677a07", + "dateNoted": "2017-11-09", + "notes": "", + "parcelID": "16205", + "siteID": "16978", + "siteRegistry": true } ] }, { - "uuid": "86732fb8-c80b-453c-a11e-f3e163b73874", - "siteID": 16277, - "address": "964 Buddy Trace", - "latitude": 54.7737, - "longitude": -132.5943, - "lastUpdated": "2016-03-08", - "city": "Lakeland", - "region": "Thompson-Okanagan", - "victoriaFile": "26250-20/16988", + "uuid": "1891d4f3-29a9-4ef2-abe6-0792f6917b13", + "siteID": 19056, + "address": "627 Leone Falls", + "latitude": 51.1538, + "longitude": -128.931, + "lastUpdated": "2019-07-21", + "city": "West Jaime", + "region": " North Coast", + "victoriaFile": "26250-20/19102", "regionalFile": "N/A", "parcelIDs": [ - 5452003, - 743749, - 6148699, - 8188609, - 1745258 + 1588075, + 6761577, + 5600131, + 4481930, + 6185647 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "7c29e1e7-6a37-4b53-9372-2780c7a539f9", - "createdAt": "2018-10-25", - "completed": "2014-10-15", - "initiated": "2020-06-20", - "ministryContact": "KESSLER KAMILLE", + "uuid": "6cc343ce-1cc9-4f78-8d17-64ccda26d526", + "createdAt": "2015-11-01", + "completed": "2018-02-06", + "initiated": "2023-07-12", + "ministryContact": "RENNER URIAH", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -50707,44 +59136,78 @@ ], "notationParticipants": [ { - "uuid": "9c2c4792-7005-47f5-8a24-5dca5eeb8821", + "uuid": "042168e9-1ed1-48fe-af12-816e4ba0f452", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "6af74aca-9476-4cb8-9980-01bfe1e8c2ae", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true + "uuid": "d41012c5-75c9-4ec9-a9b3-4097a2f2ebd9", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false }, { - "uuid": "ae87dbc4-e907-4228-924c-36df9da58227", + "uuid": "a5095d26-b3ad-4c23-b1cf-64ea06064557", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "uuid": "63277ae7-6c6a-4a5c-841a-1763d6b3b70f", + "createdAt": "2018-02-11", + "completed": "2022-08-06", + "initiated": "2018-01-12", + "ministryContact": "KUNDE JEDEDIAH", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "uuid": "134625f5-21cf-4ad3-9b47-43040f4af136", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": true }, { - "uuid": "438ea4d6-956e-444d-8ed6-3cf5b768ff1a", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "uuid": "6d570ffa-8518-4ab1-aceb-286c06c02528", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "fd05dc82-543a-4e64-8213-6e40fe193e63", + "uuid": "8f5fef59-76bd-4052-b32e-df4a601ef436", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "uuid": "f59da088-6826-4a3e-ac5b-b582735a9ff0", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "db6bc70c-c58b-49c2-85b1-ca42d5b7f870", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "cad0b825-8cba-48eb-849f-7431e2d6dac7", - "createdAt": "2023-03-19", - "completed": "2018-04-06", - "initiated": "2020-01-07", - "ministryContact": "JOHNSON ORION", + "uuid": "3bb91666-ffe6-4bcd-9b18-e7fca0828dc1", + "createdAt": "2021-11-25", + "completed": "2022-08-29", + "initiated": "2018-05-26", + "ministryContact": "SMITHAM ROSETTA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -50753,155 +59216,392 @@ ], "notationParticipants": [ { - "uuid": "590898ac-f09c-47ee-af69-16bfafcf88e0", + "uuid": "1861c958-12a4-463d-91af-1a267e412490", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "uuid": "546fbb81-3ee3-455b-ade8-4b0d6a3c008c", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true }, { - "uuid": "523ac83e-9a5e-4a81-8909-7b26c8d4fb07", + "uuid": "4ccc1d3a-d693-462f-aeac-3ca8c771bee0", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "uuid": "bc91c870-834b-43c2-ab93-ff75e05475cc", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "8d49bfd2-af89-4cb4-9546-a6a001210708", - "name": "SHELL CANADA PRODUCTS", + "uuid": "0982f77c-378b-43de-b3db-dadd16250f12", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "uuid": "40d25504-949f-4b73-aa0f-bba9320cdd6b", + "createdAt": "2016-10-22", + "completed": "2014-04-04", + "initiated": "2015-03-24", + "ministryContact": "RAU MAXIMILIAN", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "uuid": "a51233bc-6551-41c5-b410-393be74fa3b0", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "d5a17ff7-873d-4816-87b3-84021964f595", + "uuid": "5bc78c82-2b84-4209-9c78-f99fbdd0118b", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "uuid": "6eaf0021-3be1-4932-9ae8-56cb3f37fe66", + "createdAt": "2023-10-07", + "completed": "2013-12-15", + "initiated": "2014-12-30", + "ministryContact": "CONSIDINE CHRISTIANA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "uuid": "f7986c9c-a1e4-44b6-810e-233f06bb04eb", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "88c5aae5-a759-4e78-9a88-d23e976ade95", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "5ddb7f06-5d9a-47a0-a780-fb98eb0596fe", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false }, { - "uuid": "01bc76ea-db3f-4044-a484-d85ed401e85d", + "uuid": "c61b33e4-893a-44ae-90a2-103b41a40cd7", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false } ], "participants": [ { - "uuid": "39dfc8f1-6846-428c-bb43-1c796d1eba74", + "uuid": "d9bc368a-665b-4e04-8eb1-60981030be43", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2014-09-29", + "startDate": "2021-09-14", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "uuid": "e63f7b32-d2cb-4c84-bbc9-5736483f6796", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2015-02-02", + "startDate": "2021-03-01", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "uuid": "141cb08d-1d59-4baf-bbf0-de22bcae993d", "name": "IPSUM", - "endDate": "2015-02-11", - "startDate": "2021-07-25", + "endDate": "2016-03-11", + "startDate": "2017-05-26", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "d3c549db-4537-41a6-ae6e-92acd226ae87", + "uuid": "3d2decbb-0d86-4606-b74e-ad64b51b0be6", "name": "AMET, DOLOR SIT", - "endDate": "2015-12-06", - "startDate": "2014-10-19", + "endDate": "2019-12-07", + "startDate": "2016-04-24", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "a3530347-e45c-4622-b0d9-6a2283949c16", - "name": "SHELL CANADA PRODUCTS", - "endDate": "2016-03-02", - "startDate": "2014-07-09", + "uuid": "6f65486b-d37d-45ba-be05-83ca47b9ddc9", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2019-12-02", + "startDate": "2015-07-19", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": false } ], - "suspectLandUses": [ + "documents": [ + { + "uuid": "81ba3141-4e7b-43ba-a1fa-8cf15b3a0b67", + "siteRegistry": true, + "documentDate": "2014-09-28", + "receivedDate": "2014-09-05", + "uploadedDate": "2021-03-01", + "title": "Preliminary Site Investigation, Detailed Site Investigation and Remedial Plan for the Management Area adjacent to the Shell Site at 1503 West 41st Ave", + "participants": [ + { + "uuid": "c6114827-7647-4ec4-97b9-ebd8643fe138", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "4e24e8e4-8b9a-48ca-8d25-c1813b92b352", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": false, + "role": "AUTHOR" + } + ] + }, { - "uuid": "62d0fb6e-7223-47e2-bcb6-8fb8c02a9256", + "uuid": "ca6d5213-eae7-4592-958d-33460e0ee286", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-12-04 (described on Site Profile dated 2015-12-04)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "documentDate": "2018-08-06", + "receivedDate": "2023-02-20", + "uploadedDate": "2022-05-07", + "title": "Preliminary Site Investigation, Detailed Site Investigation and Remedial Plan for the Management Area adjacent to the Shell Site at 1503 West 41st Ave", + "participants": [ + { + "uuid": "6b8b989a-fdb4-4474-a39b-71653a6a739d", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": false, + "role": "AUTHOR" + } + ] }, { - "uuid": "19050144-95c2-46a8-8f03-f1e51c648222", + "uuid": "80023187-e348-49f3-8780-4b512e539cc2", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-07-02 (described on Site Profile dated 2015-07-02)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "documentDate": "2020-07-27", + "receivedDate": "2021-04-06", + "uploadedDate": "2014-11-16", + "title": "Preliminary Site Investigation, Detailed Site Investigation and Remedial Plan for the Management Area adjacent to the Shell Site at 1503 West 41st Ave", + "participants": [ + { + "uuid": "6b851cd4-fd68-464d-8cdb-c54b401208b0", + "name": "AMET, DOLOR SIT", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "bdadadd1-bed7-4d34-a6b6-9a6f7f5523e9", + "name": "AMET, DOLOR SIT", + "siteRegistry": true, + "role": "AUTHOR" + } + ] + }, + { + "uuid": "785ac9a5-b52f-47b3-8734-9d652ce5fa28", + "siteRegistry": false, + "documentDate": "2014-11-23", + "receivedDate": "2016-09-24", + "uploadedDate": "2015-05-25", + "title": "Preliminary Site Investigation, Detailed Site Investigation and Remedial Plan for the Management Area adjacent to the Shell Site at 1503 West 41st Ave", + "participants": [ + { + "uuid": "c4584726-4649-4121-b3ab-215f5bcdfa7b", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "c71a208d-50a9-4504-8c84-2b644c3be41c", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": true, + "role": "AUTHOR" + } + ] + }, + { + "uuid": "43924dd6-4b97-44f1-82c4-18ec2e964396", + "siteRegistry": false, + "documentDate": "2023-01-09", + "receivedDate": "2017-06-14", + "uploadedDate": "2014-12-05", + "title": "Summary of Site Conditions, 1537 W 41st Avenue, Vancouver", + "participants": [ + { + "uuid": "4d53a657-bd53-414c-be41-945b5bf17551", + "name": "AMET, DOLOR SIT", + "siteRegistry": false, + "role": "AUTHOR" + } + ] + } + ], + "suspectLandUses": [ + { + "uuid": "354ad0c3-094c-4494-8d1c-5658f51566e6", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2023-02-14 (described on Site Profile dated 2023-02-14)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "uuid": "f79f68df-9bdf-4c62-a8cf-a219d64d64d2", + "uuid": "a8a4dbf6-05fb-4cf0-b729-eebaa5eee964", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-06-15 (described on Site Profile dated 2014-06-15)", + "notes": "INSERTED FOR SITE PROFILE DATED 2016-01-30 (described on Site Profile dated 2016-01-30)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "uuid": "1c8a7577-5468-4ebd-afdd-66fa5d728172", + "uuid": "20c611eb-7888-47e3-9911-b5a2b56b63f3", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-11-04 (described on Site Profile dated 2022-11-04)", + "notes": "INSERTED FOR SITE PROFILE DATED 2020-12-03 (described on Site Profile dated 2020-12-03)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "uuid": "cb84e4ac-6bc9-4a0b-bb35-0eb613fdd700", + "uuid": "0836903a-8dbd-4041-882f-7984858ebe28", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-06-22 (described on Site Profile dated 2022-06-22)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "notes": "INSERTED FOR SITE PROFILE DATED 2014-03-06 (described on Site Profile dated 2014-03-06)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], "parcelDescriptions": [ { - "uuid": "d4bfe1d4-d928-4d5a-a3f1-4f6331cdeb5a", - "siteRegistry": true, - "dateNoted": "2015-05-14", - "parcelID": "16292", - "crownLandUsePIN": "16719", - "crownLandFileNumber": "15730", - "landDescription": "LOT 1 OF LOT 5 BLOCK 1 DISTRICT LOT 4 PLAN 4573" + "uuid": "640bb570-bee8-44e3-943b-255bd8843503", + "siteRegistry": false, + "dateNoted": "2017-05-31", + "parcelID": "17634", + "crownLandUsePIN": "18937", + "crownLandFileNumber": "16586", + "landDescription": "LOT 4 OF LOT 1 BLOCK 2 DISTRICT LOT 1 PLAN 9653" }, { - "uuid": "618cfabb-b2dc-4e1e-8613-6daab29dd598", + "uuid": "31ac03a1-25dc-4041-b3aa-27abffb78e55", "siteRegistry": false, - "dateNoted": "2022-04-08", - "parcelID": "20489", - "crownLandUsePIN": "17025", - "crownLandFileNumber": "17098", - "landDescription": "LOT 4 OF LOT 3 BLOCK 5 DISTRICT LOT 1 PLAN 7969" + "dateNoted": "2022-12-14", + "parcelID": "15319", + "crownLandUsePIN": "17192", + "crownLandFileNumber": "20984", + "landDescription": "LOT 4 OF LOT 3 BLOCK 3 DISTRICT LOT 2 PLAN 6094" + }, + { + "uuid": "6801a6cf-26f7-46be-a543-c63d81d33ea3", + "siteRegistry": false, + "dateNoted": "2023-07-17", + "parcelID": "19095", + "crownLandUsePIN": "19696", + "crownLandFileNumber": "17148", + "landDescription": "LOT 3 OF LOT 2 BLOCK 5 DISTRICT LOT 2 PLAN 9417" + }, + { + "uuid": "f16c9199-9282-4b49-a589-d1847e46a80a", + "siteRegistry": false, + "dateNoted": "2019-09-03", + "parcelID": "17753", + "crownLandUsePIN": "19986", + "crownLandFileNumber": "20964", + "landDescription": "LOT 5 OF LOT 4 BLOCK 1 DISTRICT LOT 5 PLAN 8651" + }, + { + "uuid": "e3f9d390-afdb-47c8-9fad-ad8c68b2b84d", + "siteRegistry": true, + "dateNoted": "2022-09-15", + "parcelID": "15489", + "crownLandUsePIN": "15931", + "crownLandFileNumber": "16485", + "landDescription": "LOT 2 OF LOT 1 BLOCK 5 DISTRICT LOT 5 PLAN 5276" } ], "siteDisclosures": [ { - "uuid": "4df7b168-f69c-4d6b-bb5e-68e9ac6c2e83", + "uuid": "fb73a470-1c49-4241-89cb-a740f75801c3", "siteRegistry": true, - "dateReceived": "2013-11-18", - "dateCompleted": "2014-08-13", - "dateEntered": "2023-06-06", - "dateRegistrar": "2016-12-09", - "dateLocalAuthorityReceived": "2020-03-22", - "summary": "Quo magnam consequuntur perspiciatis sunt suscipit autem veritatis.", - "informationUsed": "Quo facere fugit repellat dolores repellat maiores.\nConsequatur maxime tempore quo alias optio adipisci animi ea a.\nLaborum sint facilis esse omnis atque accusantium.\nAlias incidunt minima voluptates commodi quis voluptates ipsa ad.\nRepudiandae quae perferendis eos placeat.", - "pastOrPresentOrders": "Laboriosam impedit quibusdam molestiae ab rem tempore modi voluptatum maiores.\nEligendi a atque sunt doloremque.", + "dateReceived": "2020-05-20", + "dateCompleted": "2017-04-09", + "dateEntered": "2020-08-24", + "dateRegistrar": "2017-01-19", + "dateLocalAuthorityReceived": "2022-03-28", + "summary": "At in optio a expedita autem.\nMolestias eos harum id laborum.", + "informationUsed": "Illum magni aspernatur perspiciatis aut mollitia nam id vel.\nEaque doloribus expedita.\nOfficiis illum dolorum consectetur ut eaque.\nPlaceat at impedit eius ducimus.", + "pastOrPresentOrders": "Sit asperiores nesciunt est.\nPorro eius ex.\nQuisquam ipsam quisquam quod facere.", "commercialAndIndustrialPurposes": [ { - "uuid": "b209ec12-641c-43c0-b14a-1a089c8dcfd9", + "uuid": "d216a062-6d5d-4066-a854-b1531a40dae7", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "95885b97-3098-4ceb-b6d3-37cf8d68c34f", + "uuid": "bb6ae6d3-ccae-4e17-8200-fc2c5ae04f3e", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false + } + ] + }, + { + "uuid": "579454bd-53ab-4540-8e66-0096d1a4d5f0", + "siteRegistry": false, + "dateReceived": "2022-03-11", + "dateCompleted": "2014-07-02", + "dateEntered": "2022-01-19", + "dateRegistrar": "2021-04-29", + "dateLocalAuthorityReceived": "2020-08-12", + "summary": "In rerum rerum omnis.\nSoluta blanditiis in autem iste.", + "informationUsed": "Est soluta tenetur aspernatur voluptatum omnis sequi in nesciunt expedita.\nBlanditiis eius reprehenderit totam velit.\nEx alias tempora ullam molestiae.", + "pastOrPresentOrders": "Totam libero cum tempore provident.\nVeniam sequi eligendi non.\nReiciendis consequuntur inventore iure eum.", + "commercialAndIndustrialPurposes": [ + { + "uuid": "e69faf1f-0f09-4bf8-a3ff-dbb7c44952ff", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "uuid": "2ba2708f-ec67-495c-ab5c-2249b527a09b", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false }, { - "uuid": "eb554b75-c33f-41d4-8a12-08afd992b862", + "uuid": "14a28754-5d2d-4f4c-a96c-e3a946bd5280", "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true } ] @@ -50909,122 +59609,93 @@ ], "activityLog": [ { - "uuid": "63367a7c-2ae2-4037-8344-3da661a32d73", - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "KLOCKO SIM", - "timestamp": "2020-11-11" - }, - { - "uuid": "ada410b5-dfd1-44ac-acd6-fb80da9f0540", - "siteRegistry": true, + "uuid": "c19fa30e-e9f2-4637-a140-67096b21cee6", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "HYATT ROSEMARY", - "timestamp": "2014-10-31" + "user": "STROMAN MARIAN", + "timestamp": "2020-12-29" }, { - "uuid": "b379d7fe-64f7-4229-b9b1-ee2f7d176609", + "uuid": "06cb0877-8d32-4041-b86d-df69474d5473", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "BARROWS PERCY", - "timestamp": "2018-11-21" + "user": "DICKINSON HAVEN", + "timestamp": "2015-12-07" }, { - "uuid": "6b5d09fd-6966-43e6-b899-7e49fe686658", + "uuid": "0d709282-1a04-46c3-99f4-28179a4ec5b0", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "GRADY RETHA", - "timestamp": "2021-11-16" + "user": "MCLAUGHLIN-ADAMS ICIE", + "timestamp": "2017-05-25" }, { - "uuid": "08073435-6d08-41c3-a207-64c0c36bf6ee", + "uuid": "6e348c56-3382-4f13-87cc-8b5421b74b01", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "EMARD AVIS", - "timestamp": "2017-11-11" - }, - { - "uuid": "9944fe52-8666-4599-a71a-820098695680", - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "ABERNATHY MAGDALENA", - "timestamp": "2020-03-02" + "user": "MILLER NIKOLAS", + "timestamp": "2013-12-09" }, { - "uuid": "0c9b7838-1c06-4a49-b82b-d86a35b84441", + "uuid": "22957bb0-e368-4b6b-b378-e048da89ea9d", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "O'HARA JUWAN", - "timestamp": "2020-11-13" + "user": "KASSULKE EARNESTINE", + "timestamp": "2015-10-20" }, { - "uuid": "7e02e0b6-08c0-47e3-afec-4abdf6331ac3", - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "WUCKERT LONIE", - "timestamp": "2019-12-11" - }, - { - "uuid": "0bd62aca-1788-4c52-8f68-060a1351d91c", + "uuid": "8049c5ec-db6c-4bd4-bf3a-e3eaeba704d4", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "STROSIN DAIJA", - "timestamp": "2021-06-20" + "user": "FADEL ANNE", + "timestamp": "2014-03-08" } ], "associatedSites": [ { - "uuid": "f2b3f240-dfce-4338-9d02-1e4b8f3c383c", - "dateNoted": "2023-09-26", - "notes": "", - "parcelID": "15592", - "siteID": "19620", - "siteRegistry": false - }, - { - "uuid": "c2b7d894-e25d-4aca-83b2-eee3fd2c1dd2", - "dateNoted": "2021-10-10", + "uuid": "6aa9f9ea-3ccf-45e4-93f8-b2ad319120da", + "dateNoted": "2020-04-09", "notes": "", - "parcelID": "17740", - "siteID": "18021", + "parcelID": "16265", + "siteID": "20718", "siteRegistry": false }, { - "uuid": "78176239-8d9e-4ccd-922d-5b7e9889775e", - "dateNoted": "2020-01-23", + "uuid": "91562306-d4e2-43ce-95f4-21ac18457ebd", + "dateNoted": "2023-03-23", "notes": "", - "parcelID": "17386", - "siteID": "15852", + "parcelID": "16023", + "siteID": "15579", "siteRegistry": false } ] }, { - "uuid": "a60968ae-be3d-477d-baac-df769af2a0ab", - "siteID": 17727, - "address": "729 Crist Spur", - "latitude": 58.3895, - "longitude": -122.9879, - "lastUpdated": "2016-02-18", - "city": "O'Fallon", - "region": "Thompson-Okanagan", - "victoriaFile": "26250-20/6464", + "uuid": "e579a5e5-a359-45dd-bb4a-c08e771a6820", + "siteID": 17584, + "address": "1267 Crist Plain", + "latitude": 58.6508, + "longitude": -131.6222, + "lastUpdated": "2019-08-24", + "city": "Charlotte", + "region": " North Coast", + "victoriaFile": "26250-20/18527", "regionalFile": "N/A", "parcelIDs": [ - 9700834, - 1756713, - 1366536, - 7932857, - 5618408 + 7689953, + 2420448, + 1244324, + 3000187, + 4091999 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "fe6d5b81-6f1b-40e8-a150-c2a489317a08", - "createdAt": "2014-08-20", - "completed": "2017-01-12", - "initiated": "2014-07-04", - "ministryContact": "DAVIS LORINE", + "uuid": "ff7b6fbe-1998-4103-9c12-da9bf984e9d9", + "createdAt": "2020-11-07", + "completed": "2022-09-23", + "initiated": "2019-01-16", + "ministryContact": "LINDGREN RONNY", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -51033,44 +59704,38 @@ ], "notationParticipants": [ { - "uuid": "b6d7f761-ed39-40df-b196-c157b5f7357d", - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "e01656c2-fa60-4afe-9617-6a1d4dc7abf5", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "70457dfe-b3ea-4163-9a9e-c3b1bfdcb6c7", - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "568534d5-a491-4ca5-89f6-5281a39dfd1f", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true }, { - "uuid": "7dd165ef-5602-4b46-ba19-d868a240729d", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "uuid": "060193e8-ab27-4145-8597-8394f792409f", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "70c9cd0e-239d-492f-a72a-360948cb2395", - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "231445f2-0559-474c-9223-4d093df9cc32", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "uuid": "1adbd0f8-8200-4ea9-91a2-6bee7e252d73", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "606de55c-2d50-44e1-95de-5396d9c8360a", - "createdAt": "2020-11-09", - "completed": "2022-06-03", - "initiated": "2015-04-13", - "ministryContact": "DICKINSON JALYN", + "uuid": "1b1c2030-54c0-4be5-b7c8-3f7be346b0f1", + "createdAt": "2022-03-15", + "completed": "2014-09-10", + "initiated": "2016-02-08", + "ministryContact": "O'CONNER ISAI", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -51079,44 +59744,88 @@ ], "notationParticipants": [ { - "uuid": "6e18e003-31ae-45dd-9519-0ee8f7d1b3cf", + "uuid": "673f191a-d944-4cb2-86c3-7df2ee1adea5", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "76b71066-a171-4094-8e46-9c48b15f5670", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "965c454b-6f20-4be0-8a6d-d4c1b10f7d9a", - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "bacf39a1-229e-4358-91db-e20d7afe300a", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false - }, + } + ], + "siteRegistry": false + }, + { + "uuid": "e5569697-168b-48d0-b3fc-d2f2a6e73d8d", + "createdAt": "2021-08-14", + "completed": "2017-09-12", + "initiated": "2015-11-12", + "ministryContact": "TROMP FREDERIC", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ { - "uuid": "1b8c8487-576c-46a8-b29d-0e9770e05e98", + "uuid": "aadaa898-b827-428c-b8f9-60ff2e9b640d", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false }, { - "uuid": "8b500616-eb03-4392-a402-206ef53611fe", + "uuid": "21c79f8a-7f73-4b8c-a6a5-f0bd04f5a066", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "uuid": "43da59d1-3e44-4e8c-bb89-e02d9a6d32b2", + "createdAt": "2015-10-08", + "completed": "2015-06-18", + "initiated": "2022-02-24", + "ministryContact": "KUNDE ISIDRO", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "uuid": "c7055ce2-9139-47c6-a2cb-99edbe1d72bf", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false }, { - "uuid": "d4fa3c54-bffc-4abe-8b39-7ef1e3a58753", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "uuid": "32c8f293-59b3-4fd0-a8a4-e9484b8568f5", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": false } ], "siteRegistry": false }, { - "uuid": "a55f5cb2-d898-40e9-9930-ee4a2b57afd5", - "createdAt": "2022-10-31", - "completed": "2022-01-24", - "initiated": "2018-02-02", - "ministryContact": "SCHMELER RODERICK", + "uuid": "747560b1-15c6-4657-9608-ffd112d8f7eb", + "createdAt": "2013-11-16", + "completed": "2022-03-30", + "initiated": "2021-07-17", + "ministryContact": "PREDOVIC BERYL", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -51125,50 +59834,39 @@ ], "notationParticipants": [ { - "uuid": "218d9f12-06f2-425f-b894-83e5e5a55e8f", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "uuid": "c08936ac-484f-4bd0-8091-638586d83b80", + "uuid": "6e58ba26-5c71-46a6-b145-652f0aa4d32b", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true + "role": "REQUESTED BY", + "siteRegistry": false }, { - "uuid": "c71c6967-0451-46b0-be13-ee3960d558f6", + "uuid": "f907fe75-9009-46a5-ab60-41a584871906", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false }, { - "uuid": "5776d60b-c6d5-4fd7-9c6f-76a584deebf5", + "uuid": "08942b4e-a466-4e43-8599-b42876018c39", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "uuid": "66222ad8-aa24-407e-b2e2-1b7d4c31fa38", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true } ], "participants": [ { - "uuid": "730fbfe1-ba33-4146-a926-e9125e56d75e", - "name": "AMET, DOLOR SIT", - "endDate": "2020-10-02", - "startDate": "2017-05-14", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": false - }, - { - "uuid": "1c6af3c7-d94d-4a6a-a1c9-cd473f377c78", - "name": "AMET, DOLOR SIT", - "endDate": "2015-07-28", - "startDate": "2017-08-24", + "uuid": "87b815bf-6a3d-4e60-afa4-148eac6a0d98", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2023-08-18", + "startDate": "2015-06-28", "notes": "", "roles": [ "EMPLOYEE" @@ -51176,10 +59874,10 @@ "siteRegistry": false }, { - "uuid": "adb2e38c-7f41-4abd-9ce2-1496e07c9dba", - "name": "AMET, DOLOR SIT", - "endDate": "2014-10-23", - "startDate": "2018-06-26", + "uuid": "779d99ba-2890-486b-bbfd-26a939d98fed", + "name": "IPSUM", + "endDate": "2022-11-02", + "startDate": "2016-09-01", "notes": "", "roles": [ "ORGANIZATION" @@ -51187,204 +59885,286 @@ "siteRegistry": true }, { - "uuid": "2dbbea1a-73e7-442d-a672-cbed2190a240", + "uuid": "744eb044-b4a0-423d-b127-4e9cc660d830", "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2015-09-06", - "startDate": "2023-02-01", + "endDate": "2016-09-22", + "startDate": "2015-06-29", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true + } + ], + "documents": [ + { + "uuid": "6d312202-7ee9-49bd-83fa-815099c2e917", + "siteRegistry": true, + "documentDate": "2015-08-26", + "receivedDate": "2020-04-28", + "uploadedDate": "2023-07-04", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "8807beb8-abd8-426c-a0ba-a751a2837bd3", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "b44520ac-81e7-4b30-842f-f9fa2c46c9a5", + "name": "IPSUM", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "210ca64f-aedf-4b65-a599-1f0fc03ddaaf", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": true, + "role": "AUTHOR" + } + ] }, { - "uuid": "391915be-3824-4cee-a003-1d1a1ad3b9b8", - "name": "AMET, DOLOR SIT", - "endDate": "2018-03-12", - "startDate": "2015-11-30", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": false + "uuid": "aeb769ae-1134-4f0f-b068-c22b6f8923e2", + "siteRegistry": false, + "documentDate": "2015-11-18", + "receivedDate": "2018-10-19", + "uploadedDate": "2015-03-29", + "title": "Preliminary Site Investigation, Detailed Site Investigation and Remedial Plan for the Management Area adjacent to the Shell Site at 1503 West 41st Ave", + "participants": [ + { + "uuid": "2213740d-9515-424b-9425-b7bdec368c3b", + "name": "IPSUM", + "siteRegistry": true, + "role": "AUTHOR" + } + ] + }, + { + "uuid": "870b5f58-e631-4330-8764-4d7033532ec4", + "siteRegistry": true, + "documentDate": "2017-12-12", + "receivedDate": "2019-11-11", + "uploadedDate": "2023-08-07", + "title": "Summary of Site Conditions, 1537 W 41st Avenue, Vancouver", + "participants": [ + { + "uuid": "4e9a6841-1830-449c-8fc5-df559c6d5f29", + "name": "IPSUM", + "siteRegistry": false, + "role": "AUTHOR" + } + ] + }, + { + "uuid": "a14c2ec3-3ebc-4c2a-a3f9-f28bbc8bdca3", + "siteRegistry": true, + "documentDate": "2023-01-05", + "receivedDate": "2023-04-07", + "uploadedDate": "2018-06-21", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "2d6f8979-bbf6-4836-9333-8e2b3e68617a", + "name": "AMET, DOLOR SIT", + "siteRegistry": false, + "role": "AUTHOR" + } + ] } ], "suspectLandUses": [ { - "uuid": "6024cb30-66c7-4bd0-a912-0bdc76a7e722", + "uuid": "67380dc7-e4ed-4539-aeb3-e8d8acc33f6b", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2013-12-23 (described on Site Profile dated 2013-12-23)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "uuid": "ac307e3c-6c41-4e6a-af50-0c6ffab90e3f", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-08-18 (described on Site Profile dated 2018-08-18)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "notes": "INSERTED FOR SITE PROFILE DATED 2021-08-24 (described on Site Profile dated 2021-08-24)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "uuid": "1c3cfec3-6552-4608-8399-6cc9db93dd6c", + "uuid": "7ac6d971-3d48-43e5-9677-151ae70f4c98", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-06-07 (described on Site Profile dated 2015-06-07)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "notes": "INSERTED FOR SITE PROFILE DATED 2014-07-06 (described on Site Profile dated 2014-07-06)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], "parcelDescriptions": [ { - "uuid": "42363022-46ce-4e11-b2bf-7ab9439fd904", - "siteRegistry": true, - "dateNoted": "2020-05-06", - "parcelID": "15610", - "crownLandUsePIN": "17854", - "crownLandFileNumber": "20250", - "landDescription": "LOT 3 OF LOT 4 BLOCK 5 DISTRICT LOT 2 PLAN 6002" + "uuid": "517e93a3-4ba5-4aab-875e-8cca789777a6", + "siteRegistry": false, + "dateNoted": "2022-08-06", + "parcelID": "20099", + "crownLandUsePIN": "19461", + "crownLandFileNumber": "17161", + "landDescription": "LOT 1 OF LOT 4 BLOCK 2 DISTRICT LOT 2 PLAN 6822" }, { - "uuid": "df330a47-1c07-480c-80ee-47e2c464a860", + "uuid": "bf2ddadc-af6e-48be-b850-da9cbf97ffbd", "siteRegistry": true, - "dateNoted": "2014-09-29", - "parcelID": "16866", - "crownLandUsePIN": "20769", - "crownLandFileNumber": "16738", - "landDescription": "LOT 3 OF LOT 3 BLOCK 2 DISTRICT LOT 5 PLAN 3098" + "dateNoted": "2020-05-03", + "parcelID": "16889", + "crownLandUsePIN": "15832", + "crownLandFileNumber": "17045", + "landDescription": "LOT 4 OF LOT 4 BLOCK 5 DISTRICT LOT 5 PLAN 6078" }, { - "uuid": "289ecf49-a13a-4254-85f8-ecb8418bd708", + "uuid": "78d3298c-011a-4c9a-862e-962b94593384", "siteRegistry": true, - "dateNoted": "2023-01-31", - "parcelID": "20613", - "crownLandUsePIN": "17987", - "crownLandFileNumber": "20965", - "landDescription": "LOT 1 OF LOT 1 BLOCK 1 DISTRICT LOT 2 PLAN 7642" + "dateNoted": "2014-08-25", + "parcelID": "17777", + "crownLandUsePIN": "17466", + "crownLandFileNumber": "16922", + "landDescription": "LOT 1 OF LOT 5 BLOCK 3 DISTRICT LOT 1 PLAN 5667" }, { - "uuid": "d12c9519-eb98-4ba7-a7d5-562fc568791d", - "siteRegistry": true, - "dateNoted": "2021-11-08", - "parcelID": "18554", - "crownLandUsePIN": "17920", - "crownLandFileNumber": "20955", - "landDescription": "LOT 2 OF LOT 3 BLOCK 3 DISTRICT LOT 5 PLAN 3090" + "uuid": "320f14e0-41a5-4814-8d78-d9afebe646f8", + "siteRegistry": false, + "dateNoted": "2021-10-14", + "parcelID": "19013", + "crownLandUsePIN": "19319", + "crownLandFileNumber": "20165", + "landDescription": "LOT 2 OF LOT 2 BLOCK 2 DISTRICT LOT 1 PLAN 9079" + }, + { + "uuid": "02b62b5e-dbb7-48a3-82f1-780892791c19", + "siteRegistry": false, + "dateNoted": "2023-03-19", + "parcelID": "20728", + "crownLandUsePIN": "18888", + "crownLandFileNumber": "19945", + "landDescription": "LOT 5 OF LOT 3 BLOCK 2 DISTRICT LOT 4 PLAN 5680" } ], "siteDisclosures": [ { - "uuid": "565f8530-153f-4226-bc62-636addf2cdf6", + "uuid": "105a4140-150b-4f07-81e8-aab871d93889", "siteRegistry": true, - "dateReceived": "2015-09-30", - "dateCompleted": "2020-08-28", - "dateEntered": "2019-11-13", - "dateRegistrar": "2014-03-27", - "dateLocalAuthorityReceived": "2016-12-09", - "summary": "Ab repudiandae quibusdam ut.\nMinima ad dolore.", - "informationUsed": "Consequatur deleniti ut minus animi repellat ipsa.\nRem quis eligendi nihil sit unde eius excepturi.\nEaque facilis repellendus.\nTenetur doloribus quis.\nPossimus cum quibusdam quas debitis nulla cupiditate ratione.", - "pastOrPresentOrders": "Amet asperiores soluta dolor asperiores deserunt nam nisi reprehenderit.\nHarum magnam culpa commodi voluptates neque quasi.\nHarum quia quaerat cum eveniet voluptatum nesciunt facere similique.", + "dateReceived": "2017-10-28", + "dateCompleted": "2021-03-18", + "dateEntered": "2018-12-10", + "dateRegistrar": "2021-03-16", + "dateLocalAuthorityReceived": "2017-05-28", + "summary": "Consequatur iure maiores eius vitae.\nRepellat consectetur voluptatum magni sapiente ad odit.\nSint ea architecto error.", + "informationUsed": "Veniam cum aliquid eius quis totam laboriosam quae.\nVeritatis alias repellat explicabo recusandae.\nError impedit aut nihil tempore veritatis a aut.\nQuod ab ipsum ut.", + "pastOrPresentOrders": "Laudantium fugit velit consequatur beatae.", "commercialAndIndustrialPurposes": [ { - "uuid": "7380c42f-ea0e-4403-8438-90e3311fdb43", - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true + "uuid": "9b8893cf-ad0e-4995-ada3-023373bcc0bb", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false }, { - "uuid": "18f074c4-09ab-4c8e-8f6e-394714bc3941", - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true + "uuid": "292057e7-073a-439d-83a8-524951ab5aa4", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false } ] } ], "activityLog": [ { - "uuid": "b1dcbc0b-95c3-4eb0-9f62-2f0016346d27", + "uuid": "c581f91a-307e-4ae4-bb75-771f877b5ddc", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "MAGGIO BETTY", - "timestamp": "2021-07-13" + "user": "BERNIER CARMEN", + "timestamp": "2021-12-12" }, { - "uuid": "dc518c20-461f-4359-a791-910af6eda907", - "siteRegistry": false, + "uuid": "06ea5bcd-0da4-445c-9112-9e602c32a3dd", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "KSHLERIN JANAE", - "timestamp": "2021-06-27" + "user": "BAHRINGER BERNIE", + "timestamp": "2017-07-14" }, { - "uuid": "fd77dbab-a022-416f-bdd7-704ed658d93b", - "siteRegistry": false, + "uuid": "7231cb91-06e2-4065-af67-5f8135d23a2c", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "MURRAY RIVER", - "timestamp": "2019-04-22" + "user": "KIRLIN CATHY", + "timestamp": "2017-03-01" }, { - "uuid": "72c6cfff-ca1c-4dfc-b6e8-d6006a15ccfc", - "siteRegistry": true, + "uuid": "9179d320-f2e8-4c10-8282-266fa487e82e", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "MCGLYNN ELIJAH", - "timestamp": "2019-04-10" + "user": "LINDGREN ANABELLE", + "timestamp": "2021-05-08" }, { - "uuid": "9bcfede9-ef6a-4cb9-b214-23b72772bb6d", + "uuid": "a9362e0c-71bf-4963-b189-9cfbb4b93d88", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "GOODWIN DELBERT", - "timestamp": "2013-10-28" + "user": "KLEIN BERNADINE", + "timestamp": "2020-04-16" }, { - "uuid": "f472bfc4-4838-456a-8863-7bd28f4d3057", + "uuid": "8a847fbc-2b05-4e6b-96df-4bb2c59f74e3", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "SCHINNER DEVYN", - "timestamp": "2022-01-14" + "user": "SCHMITT ISABELLE", + "timestamp": "2017-08-05" }, { - "uuid": "98337abd-ef4d-417b-9614-54b663dfb849", - "siteRegistry": false, + "uuid": "beb77d82-7ffe-4152-ab16-8d682f2ea0a6", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "KOCH CLAUDIA", - "timestamp": "2020-07-14" + "user": "KUTCH ISRAEL", + "timestamp": "2022-02-15" } ], "associatedSites": [ { - "uuid": "747a90ca-8ae0-46e1-8b79-d67e32ad2645", - "dateNoted": "2018-06-14", + "uuid": "144f0c4b-70ce-4346-b34b-3ba5021ba057", + "dateNoted": "2020-03-01", "notes": "", - "parcelID": "17373", - "siteID": "17858", + "parcelID": "19723", + "siteID": "15676", "siteRegistry": true }, { - "uuid": "43131614-c608-474b-ab3c-13b99834bb08", - "dateNoted": "2015-01-21", + "uuid": "3e0777b3-c231-4c58-b6eb-b70a6b6ecd23", + "dateNoted": "2019-12-05", "notes": "", - "parcelID": "19207", - "siteID": "17571", + "parcelID": "20852", + "siteID": "20095", "siteRegistry": true } ] }, { - "uuid": "ca0a41a1-d5d9-4190-a82f-8ea6b63b1c44", - "siteID": 19713, - "address": "50866 Veum Spring", - "latitude": 56.7632, - "longitude": -119.2787, - "lastUpdated": "2019-03-05", - "city": "New Napoleontown", - "region": "Cariboo", - "victoriaFile": "26250-20/9883", + "uuid": "eee4b7d1-594d-45cb-ba5d-2d6dc85d41d3", + "siteID": 16129, + "address": "8802 Cummerata Way", + "latitude": 54.1912, + "longitude": -128.6388, + "lastUpdated": "2023-05-11", + "city": "New Daren", + "region": "Vancouver Island/Coast", + "victoriaFile": "26250-20/16334", "regionalFile": "N/A", "parcelIDs": [ - 9429607, - 2435092, - 396723, - 3533405, - 5541908 + 4963201, + 1377741, + 3391430, + 9714511, + 1796857 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "3fb0cf14-9ec3-484c-8c1e-b81d3954f959", - "createdAt": "2022-04-14", - "completed": "2021-04-29", - "initiated": "2018-08-21", - "ministryContact": "KLOCKO KARLEE", + "uuid": "c594c37c-f5a5-4da2-9b3a-2f082c558c24", + "createdAt": "2023-01-18", + "completed": "2016-12-23", + "initiated": "2015-05-09", + "ministryContact": "HACKETT LEXIE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -51393,66 +60173,38 @@ ], "notationParticipants": [ { - "uuid": "68ccd679-719c-49e6-b7ff-8ca0bcf2c62e", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "uuid": "045722ff-13ee-4602-b745-b0b33742da0d", + "uuid": "b5e78f3f-42a9-458e-9aff-dbd808c029d9", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "aa7ca617-2784-42a0-96f2-e808bd0dc87a", + "uuid": "f6ad676a-7b1b-49b2-9cfa-84e2ec41a370", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true + "role": "SUBMITTED BY", + "siteRegistry": false }, { - "uuid": "371594fb-4c66-49cb-a47a-5b214b3af286", + "uuid": "baad6e74-f1a4-45e8-b6f8-d302764e8465", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - } - ], - "siteRegistry": false - }, - { - "uuid": "8963e5dc-d4b5-43f0-aa8a-5c27d5859560", - "createdAt": "2018-04-14", - "completed": "2014-05-27", - "initiated": "2013-12-28", - "ministryContact": "HEANEY KAELA", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "uuid": "a37c5b9a-989b-4d74-a21a-fdefef5dfb01", - "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "3ffdf8be-2bb3-4e86-98a8-016814e66964", + "uuid": "101c7473-c1d2-424b-b697-ce8a5b99aa41", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "59798dbd-0736-4e67-9082-62101b712ff8", - "createdAt": "2014-10-15", - "completed": "2022-01-20", - "initiated": "2020-09-08", - "ministryContact": "SAWAYN CONNER", + "uuid": "b7967008-5f54-4fc3-9f7d-4dc9c6ef9ae1", + "createdAt": "2020-09-05", + "completed": "2022-02-06", + "initiated": "2014-01-27", + "ministryContact": "CORWIN VELLA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -51461,66 +60213,44 @@ ], "notationParticipants": [ { - "uuid": "aac48031-8c1d-4a4e-b968-377a92c7e507", - "name": "SHELL CANADA PRODUCTS", + "uuid": "79bbe372-8229-40ab-8ed6-27902ce55672", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "e90ecda8-dffc-44fe-b9a6-3950195b18c8", - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "uuid": "9503a523-53d7-4532-84a7-a77dd171a6bc", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "ceab69e5-af3b-4f40-a8c4-beefabf3ab6d", + "uuid": "c6b0dff2-f945-4475-8ce9-1c29b5e9b7f2", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "16c943f2-dbbc-4a40-b427-6930fa03d318", + "uuid": "67b46129-9baf-4079-b0e7-789a7d348a47", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true - } - ], - "siteRegistry": true - }, - { - "uuid": "342d7aaa-e4ce-4700-9ff0-4b27734f6fa2", - "createdAt": "2016-04-17", - "completed": "2017-02-16", - "initiated": "2022-12-30", - "ministryContact": "GLOVER DORTHY", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "uuid": "fc34a6ce-e49b-4df3-8f8f-e077f623199d", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "39df2cf8-a930-46b2-a666-7e1032477472", + "uuid": "f252a6b1-eec9-4e31-b5c5-4cbed6fd91d3", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true + "role": "SUBMITTED BY", + "siteRegistry": false } ], "siteRegistry": false }, { - "uuid": "11d72852-c040-440f-8691-4b7136e87205", - "createdAt": "2018-11-08", - "completed": "2021-09-07", - "initiated": "2014-02-02", - "ministryContact": "LEGROS FRANCO", + "uuid": "88258ca3-2896-46c6-b44d-c1309c89dff2", + "createdAt": "2021-08-07", + "completed": "2022-05-22", + "initiated": "2016-08-01", + "ministryContact": "SCHMELER CRUZ", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -51529,16 +60259,16 @@ ], "notationParticipants": [ { - "uuid": "381a528e-9a52-4447-8483-90b18805815e", + "uuid": "f0c031f7-0822-4802-a6ad-1ecd876d571a", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "243aa2b1-1224-44af-a515-93f28a986a46", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true + "uuid": "3f159455-0158-4aed-9740-d1ae3b327f0c", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false } ], "siteRegistry": true @@ -51546,131 +60276,274 @@ ], "participants": [ { - "uuid": "64664fed-1a6a-4acb-99cd-a8ec14e725a8", - "name": "IPSUM", - "endDate": "2023-06-03", - "startDate": "2018-06-15", + "uuid": "847a6377-ae4e-4d70-a925-13ea60865901", + "name": "AMET, DOLOR SIT", + "endDate": "2019-06-10", + "startDate": "2023-03-09", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": false }, { - "uuid": "65cae325-772b-4569-be39-54564dd9e949", - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2019-07-27", - "startDate": "2016-07-08", + "uuid": "b37092f0-2b0e-4af9-aef4-4a697bdc2038", + "name": "IPSUM", + "endDate": "2021-09-12", + "startDate": "2019-07-19", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "2abc3a57-0eb9-4c2d-bbd7-fd2b92109246", - "name": "SHELL CANADA PRODUCTS", - "endDate": "2022-07-23", - "startDate": "2019-11-28", + "uuid": "e9b5dce8-a215-40c3-8933-270d1c36f584", + "name": "AMET, DOLOR SIT", + "endDate": "2018-02-27", + "startDate": "2014-10-29", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": true + }, + { + "uuid": "fe59683f-f8e9-4c16-9e88-aaab5eaa3339", + "name": "IPSUM", + "endDate": "2019-06-05", + "startDate": "2014-08-13", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false } ], - "suspectLandUses": [ + "documents": [ { - "uuid": "30400ed4-03ab-4b48-a787-dcec55089083", - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-06-26 (described on Site Profile dated 2018-06-26)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "uuid": "d4c6b90b-e193-4438-b5b9-48df5d6031ca", + "siteRegistry": false, + "documentDate": "2016-03-16", + "receivedDate": "2023-01-05", + "uploadedDate": "2022-12-04", + "title": "Summary of Site Conditions, 1537 W 41st Avenue, Vancouver", + "participants": [ + { + "uuid": "ed7d6756-564a-42b3-b31d-de2048f14e22", + "name": "AMET, DOLOR SIT", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "28bf5071-4dd7-40fb-a746-8714d536bf0f", + "name": "IPSUM", + "siteRegistry": true, + "role": "AUTHOR" + } + ] }, { - "uuid": "9359df86-cebc-4403-9398-7a7975db9634", + "uuid": "35225ef3-6539-4794-927d-ea163dbd3b39", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2020-07-02 (described on Site Profile dated 2020-07-02)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "documentDate": "2021-12-15", + "receivedDate": "2020-08-22", + "uploadedDate": "2017-12-15", + "title": "Summary of Site Conditions, 1537 W 41st Avenue, Vancouver", + "participants": [ + { + "uuid": "63df90d5-d10b-4bf8-bcd6-5f2dd1bde7a2", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "e14a0c5c-eedc-4bea-b066-f944998cfc49", + "name": "IPSUM", + "siteRegistry": true, + "role": "AUTHOR" + } + ] + }, + { + "uuid": "ed9b6558-c58e-448c-9868-1d491d3c75fe", + "siteRegistry": false, + "documentDate": "2021-05-18", + "receivedDate": "2015-02-08", + "uploadedDate": "2017-01-27", + "title": "Preliminary Site Investigation, Detailed Site Investigation and Remedial Plan for the Management Area adjacent to the Shell Site at 1503 West 41st Ave", + "participants": [ + { + "uuid": "964234e5-13c3-4b30-b23d-d7531cb9b851", + "name": "IPSUM", + "siteRegistry": true, + "role": "AUTHOR" + } + ] + }, + { + "uuid": "0c5958ce-48db-4e64-8f7c-46b490ab7f29", + "siteRegistry": false, + "documentDate": "2022-03-21", + "receivedDate": "2014-01-18", + "uploadedDate": "2013-11-17", + "title": "Preliminary Site Investigation, Detailed Site Investigation and Remedial Plan for the Management Area adjacent to the Shell Site at 1503 West 41st Ave", + "participants": [ + { + "uuid": "90e6084f-7cac-4b94-bdf5-ffd04dd5c0fd", + "name": "IPSUM", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "60b22c1d-ab1b-49d6-b81c-9ad0d3f78b59", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": false, + "role": "AUTHOR" + } + ] }, { - "uuid": "28f7c1c4-bed3-4c5d-873b-ca3f40b430fd", + "uuid": "3169e233-c537-4a93-b42e-a32ad649f6e7", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-11-06 (described on Site Profile dated 2022-11-06)", + "documentDate": "2020-03-11", + "receivedDate": "2016-05-25", + "uploadedDate": "2016-12-05", + "title": "Summary of Site Conditions, 1537 W 41st Avenue, Vancouver", + "participants": [ + { + "uuid": "830c6f41-f4f9-49bd-b186-7e1f0c1dc53c", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "1a488711-6f12-4b00-8792-d93099f3d5b0", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "0591f35d-4521-4a2d-bd5e-09da9c82b7ae", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": false, + "role": "AUTHOR" + } + ] + } + ], + "suspectLandUses": [ + { + "uuid": "c092398a-04e8-42ac-8c64-f78ca6e4b541", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2017-06-23 (described on Site Profile dated 2017-06-23)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "uuid": "1f251986-b838-4cbd-bf59-c21534d884fb", + "uuid": "5465a793-441c-4d3f-b378-aa22bae05794", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-03-15 (described on Site Profile dated 2018-03-15)", + "notes": "INSERTED FOR SITE PROFILE DATED 2016-02-09 (described on Site Profile dated 2016-02-09)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], "parcelDescriptions": [ { - "uuid": "60b2eb53-bef7-4c48-955a-8d2c1ea750ec", + "uuid": "ed3d67ed-2c80-4833-9c96-444494638fdf", + "siteRegistry": true, + "dateNoted": "2015-03-09", + "parcelID": "17344", + "crownLandUsePIN": "20338", + "crownLandFileNumber": "15676", + "landDescription": "LOT 3 OF LOT 2 BLOCK 3 DISTRICT LOT 4 PLAN 9345" + }, + { + "uuid": "fd44f724-72f3-4dfe-987c-59b6c04ce7fb", "siteRegistry": false, - "dateNoted": "2017-04-14", - "parcelID": "17362", - "crownLandUsePIN": "16832", - "crownLandFileNumber": "17218", - "landDescription": "LOT 3 OF LOT 2 BLOCK 4 DISTRICT LOT 4 PLAN 9203" + "dateNoted": "2021-11-13", + "parcelID": "15252", + "crownLandUsePIN": "19978", + "crownLandFileNumber": "19025", + "landDescription": "LOT 2 OF LOT 2 BLOCK 3 DISTRICT LOT 1 PLAN 3483" }, { - "uuid": "876e3780-e78c-4a14-88ec-9bbeb65b0921", + "uuid": "fa4079c9-b9e1-42e9-b12c-1aef85eb2931", "siteRegistry": true, - "dateNoted": "2022-02-18", - "parcelID": "15849", - "crownLandUsePIN": "16932", - "crownLandFileNumber": "18203", - "landDescription": "LOT 3 OF LOT 2 BLOCK 5 DISTRICT LOT 4 PLAN 3082" + "dateNoted": "2014-07-30", + "parcelID": "15655", + "crownLandUsePIN": "18789", + "crownLandFileNumber": "19308", + "landDescription": "LOT 5 OF LOT 4 BLOCK 1 DISTRICT LOT 1 PLAN 7453" }, { - "uuid": "916f3e1f-6daf-4971-9227-b4ccd55c93ce", - "siteRegistry": false, - "dateNoted": "2019-04-15", - "parcelID": "15493", - "crownLandUsePIN": "20391", - "crownLandFileNumber": "20306", - "landDescription": "LOT 4 OF LOT 1 BLOCK 2 DISTRICT LOT 3 PLAN 4738" + "uuid": "2ed6a85a-3a5c-48bf-9d5e-7bda84089f6e", + "siteRegistry": true, + "dateNoted": "2014-08-08", + "parcelID": "16170", + "crownLandUsePIN": "20638", + "crownLandFileNumber": "20114", + "landDescription": "LOT 1 OF LOT 3 BLOCK 1 DISTRICT LOT 4 PLAN 7664" + } + ], + "siteDisclosures": [ + { + "uuid": "bcaa1a5d-cda6-4c0c-bef6-53a24d45c854", + "siteRegistry": true, + "dateReceived": "2017-01-21", + "dateCompleted": "2020-06-15", + "dateEntered": "2016-07-29", + "dateRegistrar": "2021-01-12", + "dateLocalAuthorityReceived": "2018-08-06", + "summary": "Odit blanditiis velit commodi.\nLaborum alias a maiores eum.\nEos eligendi ipsa.", + "informationUsed": "Vel laboriosam nostrum animi similique veritatis perspiciatis exercitationem nesciunt.\nMolestias placeat fuga asperiores iste cum.\nCommodi voluptate ex enim ab veniam consequuntur.\nLaudantium accusamus id dolorem.", + "pastOrPresentOrders": "Delectus minus quis beatae.\nEnim consequuntur natus excepturi nesciunt.", + "commercialAndIndustrialPurposes": [ + { + "uuid": "51bf0b6e-4b3e-4141-92e6-4ee14c842897", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "uuid": "b1567259-84fb-4159-ac61-22588622b6f6", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "uuid": "aa7ec05b-6a94-4c63-a924-f3c05832c00d", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + } + ] }, { - "uuid": "f36d9501-8e58-4dda-b3c6-19b01f14adfe", + "uuid": "5a607c7d-12ba-4f84-8cfd-e758fa256a92", "siteRegistry": true, - "dateNoted": "2019-05-22", - "parcelID": "18637", - "crownLandUsePIN": "20930", - "crownLandFileNumber": "16222", - "landDescription": "LOT 3 OF LOT 3 BLOCK 2 DISTRICT LOT 2 PLAN 6073" - } - ], - "siteDisclosures": [ - { - "uuid": "30c1f6ae-cbea-492a-bac8-442e27db4bfb", - "siteRegistry": false, - "dateReceived": "2014-07-17", - "dateCompleted": "2017-06-04", - "dateEntered": "2015-03-02", - "dateRegistrar": "2021-04-05", - "dateLocalAuthorityReceived": "2017-12-11", - "summary": "Earum placeat enim consectetur sunt ipsum consequuntur ratione esse.", - "informationUsed": "Sed possimus mollitia quia fugiat fuga ut a.\nEa quos ad animi ipsum ea.\nEt aliquam qui quisquam dolore minus consequuntur labore magni velit.", - "pastOrPresentOrders": "Ducimus a commodi nulla nobis recusandae optio.", + "dateReceived": "2019-06-21", + "dateCompleted": "2016-10-04", + "dateEntered": "2013-11-18", + "dateRegistrar": "2022-02-23", + "dateLocalAuthorityReceived": "2018-03-12", + "summary": "Perspiciatis dolorum quibusdam.", + "informationUsed": "Illo tempora iusto praesentium cupiditate atque vero occaecati quo.\nReprehenderit delectus voluptatem nihil.\nReprehenderit consequatur id neque dolore debitis ad voluptatem.\nNulla aut nihil quis culpa.\nSuscipit sint pariatur quo ea.", + "pastOrPresentOrders": "Architecto distinctio qui ducimus quisquam consectetur.\nArchitecto dolorum ea eligendi fuga.\nTotam error excepturi sapiente labore exercitationem.", "commercialAndIndustrialPurposes": [ { - "uuid": "8b0ea62e-6535-4809-ab26-326d3e31a03d", - "scheduleReference": "F1*", + "uuid": "4e8e1303-2eab-4f2d-8a1f-cdfa46cac63f", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false }, { - "uuid": "b761e101-ca71-4ecb-8ab2-2b44a4606d96", - "scheduleReference": "F1*", + "uuid": "98ec668d-3bee-476b-bcc2-8ff28671e218", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "baf5eb40-7d92-4100-ac48-6ff7eed9d3d3", - "scheduleReference": "F2*", + "uuid": "211cc370-552c-4683-b9e5-856e6f0ef7ce", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false } @@ -51679,108 +60552,129 @@ ], "activityLog": [ { - "uuid": "f85f6a00-6256-4353-9e92-fce3a8d7bc76", + "uuid": "4478085c-83a9-4c6a-8051-c70dcaacbc45", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "HESSEL LAURY", + "timestamp": "2015-08-30" + }, + { + "uuid": "e2cbdb11-efe5-4e29-97b5-5fec6aedcf47", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "HALEY AIYANA", + "timestamp": "2020-07-26" + }, + { + "uuid": "bf734db5-d2a3-42ae-9ccf-d4e69c80eb39", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "TREMBLAY BRODERICK", - "timestamp": "2017-05-28" + "user": "BARTON FREDERIC", + "timestamp": "2018-08-30" }, { - "uuid": "5876373e-47f7-482d-a04f-0ccecaed2c2d", + "uuid": "d83c5268-05cc-4c37-a033-6ffb9723bfdf", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "FRANEY KRYSTAL", - "timestamp": "2020-06-11" + "user": "SCHADEN STACEY", + "timestamp": "2021-02-07" }, { - "uuid": "5cb1df59-e248-4725-b684-ad96a287d294", + "uuid": "2c840a44-5510-42ed-a09e-a59065c8a94a", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "HODKIEWICZ MICHELLE", - "timestamp": "2019-11-07" + "user": "KIRLIN TAYA", + "timestamp": "2019-07-04" }, { - "uuid": "bfea328f-185f-4413-bec6-c40b46e8846e", + "uuid": "7ffd4ecd-f318-4d40-81ca-4f65c59b3e2d", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "VONRUEDEN MOSES", - "timestamp": "2022-06-23" + "user": "TORP TARA", + "timestamp": "2014-06-27" }, { - "uuid": "e9b8642b-710d-4410-9a99-ab23bdd94c1e", - "siteRegistry": false, + "uuid": "0ddd091d-2afa-4c28-af5a-0c376225477f", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "LITTLE CRAIG", - "timestamp": "2014-03-14" + "user": "MURAZIK VILMA", + "timestamp": "2019-03-29" }, { - "uuid": "5f4382ac-14e2-46d2-90d8-e85c35621c98", + "uuid": "b3b134f3-cedc-40f9-9776-398a78b4986d", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "KUHLMAN ROOSEVELT", - "timestamp": "2014-02-22" + "user": "HARVEY CHRIS", + "timestamp": "2022-08-31" + }, + { + "uuid": "0622c620-ddd6-42e1-a54b-6c7e29a2f5b3", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "SPORER TRISTON", + "timestamp": "2019-02-08" }, { - "uuid": "ee7670db-1b48-42b6-b4e7-d4f1690b812b", + "uuid": "77d3f58c-a459-4b59-a1dd-d89f42d30332", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "SAWAYN CONSTANCE", - "timestamp": "2020-09-03" + "user": "ROLFSON FLETA", + "timestamp": "2022-03-22" } ], "associatedSites": [ { - "uuid": "8cd98efa-30c6-46ae-8863-3c3843a373ef", - "dateNoted": "2023-06-18", + "uuid": "14943e97-8d1d-4d60-a78b-8880255f51b4", + "dateNoted": "2020-12-15", "notes": "", - "parcelID": "16485", - "siteID": "17082", + "parcelID": "19951", + "siteID": "19569", "siteRegistry": false }, { - "uuid": "1b49cc4b-66c9-4ffd-8447-bf7c9c70ace1", - "dateNoted": "2022-08-11", + "uuid": "92d17c4a-af75-4ab8-a50b-dcff97a98845", + "dateNoted": "2018-10-09", "notes": "", - "parcelID": "17487", - "siteID": "18410", - "siteRegistry": false + "parcelID": "18674", + "siteID": "15579", + "siteRegistry": true }, { - "uuid": "afb0f100-e641-4af6-aa3e-5baf1829daee", - "dateNoted": "2022-08-23", + "uuid": "b2524341-c8a8-467f-b614-72921858f1fb", + "dateNoted": "2018-04-16", "notes": "", - "parcelID": "18752", - "siteID": "19479", - "siteRegistry": false + "parcelID": "16582", + "siteID": "17404", + "siteRegistry": true } ] }, { - "uuid": "c9947b0d-645a-47a4-8af1-c27d38069e3f", - "siteID": 19300, - "address": "10618 Yvonne Fork", - "latitude": 58.5936, - "longitude": -127.2763, - "lastUpdated": "2023-07-10", - "city": "Fort Viviane", + "uuid": "41969a1c-e3fb-47f8-89ef-cefe2196c067", + "siteID": 17326, + "address": "2526 Abner Route", + "latitude": 54.3884, + "longitude": -128.9787, + "lastUpdated": "2023-01-27", + "city": "Candicestad", "region": "Mainland/Southwest", - "victoriaFile": "26250-20/16055", + "victoriaFile": "26250-20/7115", "regionalFile": "N/A", "parcelIDs": [ - 5632895, - 5808916, - 9514601, - 3719069, - 4309510 + 7673323, + 9407622, + 7683498, + 8550987, + 5500167 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "a3226bbe-9ec9-4f58-918f-18a3b0752a71", - "createdAt": "2015-08-27", - "completed": "2021-04-12", - "initiated": "2017-08-16", - "ministryContact": "JOHNSTON DEJUAN", + "uuid": "94a4e4d5-da52-4dbf-9702-31e267d39649", + "createdAt": "2017-07-15", + "completed": "2014-03-03", + "initiated": "2019-12-23", + "ministryContact": "TERRY JADEN", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -51789,32 +60683,72 @@ ], "notationParticipants": [ { - "uuid": "da323341-705e-4282-bdf1-d6f2381a8acf", + "uuid": "3c3dc4a0-9524-4710-bd2d-177e4ed6930c", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "07c6036c-7638-41a7-be5e-29f106ad165b", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "uuid": "14c1b63f-bc69-4230-bd5f-0cd6daeb6db5", + "createdAt": "2017-07-06", + "completed": "2015-04-30", + "initiated": "2022-01-17", + "ministryContact": "WAELCHI JACKLYN", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "uuid": "8baeb3a8-bfaf-4cb2-8f70-ee60909ce05c", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false }, { - "uuid": "8d922431-b7bb-4adc-9135-2fb0952a5415", + "uuid": "1ecc491f-400d-4896-916a-1b14dc39408c", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true }, { - "uuid": "293429b4-63ea-44f8-a7f7-dd0d289e593e", + "uuid": "64e38f59-19be-478a-a54a-3863c526292d", "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "688a9356-ce67-4223-8e38-024d43bcb4b0", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "uuid": "18e3e3b4-4e72-44a2-be3a-d51b1c20a705", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "a1cfd6eb-fb40-467b-8798-87426a50f4bd", - "createdAt": "2018-12-17", - "completed": "2020-02-28", - "initiated": "2022-11-23", - "ministryContact": "GERHOLD VITO", + "uuid": "58d6a365-13ef-4bf3-84a9-5ec72ef0a2cb", + "createdAt": "2020-08-21", + "completed": "2019-08-28", + "initiated": "2022-08-18", + "ministryContact": "RUNOLFSSON TEVIN", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -51823,32 +60757,60 @@ ], "notationParticipants": [ { - "uuid": "795b92a1-76d1-4d7f-8e53-2463f2d883ec", + "uuid": "2869bea2-cc2c-4924-9901-3dd23a257825", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false }, { - "uuid": "cd456ffd-9968-4ae3-a3fd-ed532aef36fa", + "uuid": "2f39dec4-adb0-4792-96c5-341aae10cf40", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "4a4101b3-5409-4665-92dd-b2be5f97dbfa", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "uuid": "0d940ef2-a671-430d-8979-ab678b03c1aa", + "createdAt": "2015-04-14", + "completed": "2017-11-23", + "initiated": "2016-10-27", + "ministryContact": "HAMMES SHANNON", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "uuid": "cf6ff22e-04da-4f93-8a64-ff6eb60729d2", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true }, { - "uuid": "b58204f0-d9c6-43a4-934f-a33fb830cf50", + "uuid": "5198ecdd-9461-4eeb-aacb-a537797f0953", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true } ], "siteRegistry": false }, { - "uuid": "e9525f71-a897-4564-a614-b117a9bb7612", - "createdAt": "2018-03-14", - "completed": "2015-03-28", - "initiated": "2016-01-04", - "ministryContact": "YUNDT-CORKERY EMMA", + "uuid": "0d1e1661-7144-4bcc-b47b-06af82f5677d", + "createdAt": "2016-06-14", + "completed": "2021-02-20", + "initiated": "2013-12-11", + "ministryContact": "DONNELLY JERAMIE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -51857,13 +60819,19 @@ ], "notationParticipants": [ { - "uuid": "35e6a367-8627-42c8-8015-a914d9e010e3", + "uuid": "34a9dc48-869f-47a1-9b69-c7b316234b0e", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false + }, + { + "uuid": "362b98c9-186b-4e55-b663-913ad0a20759", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false }, { - "uuid": "f518651e-db9e-4a66-8f26-5ea9c1bb6725", + "uuid": "a7ffb1a8-a7a3-4022-8e76-8469155d62b9", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false @@ -51874,43 +60842,43 @@ ], "participants": [ { - "uuid": "c1eeccec-1e1c-4874-803f-696f7e013d61", - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2019-07-07", - "startDate": "2018-12-13", + "uuid": "e361c77a-e72f-4cf6-af61-b953965cb939", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2021-02-08", + "startDate": "2019-11-01", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "12ab64bf-09e6-4c7e-a613-e0c7eb0fff20", + "uuid": "19353eec-0c73-4a73-972b-d902e4d1d15b", "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2023-09-10", - "startDate": "2017-09-23", + "endDate": "2021-03-03", + "startDate": "2022-04-25", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "fffc9566-f9dc-4451-bb47-99a0b39abfea", - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2016-04-25", - "startDate": "2018-05-18", + "uuid": "e3c1b1c6-0a89-43b7-b379-8bd956764b59", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2018-02-09", + "startDate": "2013-10-27", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": true }, { - "uuid": "c3446c5f-3ad0-4585-8e0f-8b2c5fb88708", - "name": "SHELL CANADA PRODUCTS", - "endDate": "2023-07-06", - "startDate": "2023-06-03", + "uuid": "8241f170-208a-4683-be94-71f6c9dec329", + "name": "AMET, DOLOR SIT", + "endDate": "2021-09-22", + "startDate": "2019-08-12", "notes": "", "roles": [ "EMPLOYEE" @@ -51918,135 +60886,193 @@ "siteRegistry": true } ], + "documents": [ + { + "uuid": "748481f9-4efc-4b0c-b402-5b20a82ecf0f", + "siteRegistry": true, + "documentDate": "2016-11-02", + "receivedDate": "2014-05-01", + "uploadedDate": "2023-04-01", + "title": "Summary of Site Conditions, 1537 W 41st Avenue, Vancouver", + "participants": [ + { + "uuid": "d5b37924-bcee-43e1-ab9a-b59d3c8ebabf", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": false, + "role": "AUTHOR" + } + ] + }, + { + "uuid": "21bed5b2-4e5e-43d4-9b27-c985cf101e2a", + "siteRegistry": false, + "documentDate": "2016-07-04", + "receivedDate": "2013-12-08", + "uploadedDate": "2016-05-22", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "6a822090-a7f1-4274-90d6-5d24c7338347", + "name": "IPSUM", + "siteRegistry": true, + "role": "AUTHOR" + } + ] + }, + { + "uuid": "3a3e98f1-fc30-4d0b-ac79-7e62ce9baf9d", + "siteRegistry": false, + "documentDate": "2020-08-10", + "receivedDate": "2021-09-24", + "uploadedDate": "2018-03-19", + "title": "Summary of Site Conditions, 1537 W 41st Avenue, Vancouver", + "participants": [ + { + "uuid": "05ac299c-2bf6-44f0-9664-dbbd64866399", + "name": "IPSUM", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "b9e75a36-bab6-4f66-b421-db217121714b", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "bf10772d-e46a-4081-abf2-73e60e291a68", + "name": "AMET, DOLOR SIT", + "siteRegistry": true, + "role": "AUTHOR" + } + ] + }, + { + "uuid": "efb29e97-65c2-4882-a269-8a0838351335", + "siteRegistry": false, + "documentDate": "2016-01-01", + "receivedDate": "2015-08-02", + "uploadedDate": "2023-01-08", + "title": "Preliminary Site Investigation, Detailed Site Investigation and Remedial Plan for the Management Area adjacent to the Shell Site at 1503 West 41st Ave", + "participants": [ + { + "uuid": "9631f181-a8b0-46f5-9e35-60bcb981dc2b", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "cea4b5a9-01b1-457b-9881-8213cb022002", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "419ddc31-6d50-4f63-bba6-a73d3ebaa9f9", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": true, + "role": "AUTHOR" + } + ] + } + ], "suspectLandUses": [ { - "uuid": "9a2ca976-d31e-4ef1-b3bd-f1e8ad802a14", + "uuid": "55d26de9-f239-4634-b6cd-93aae28e6cd6", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-12-05 (described on Site Profile dated 2014-12-05)", + "notes": "INSERTED FOR SITE PROFILE DATED 2018-06-27 (described on Site Profile dated 2018-06-27)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "uuid": "6a63b812-b5a3-4878-8319-cf7776e54f07", + "uuid": "f6187954-e726-4633-930a-8fb8755fc283", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-11-16 (described on Site Profile dated 2019-11-16)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "notes": "INSERTED FOR SITE PROFILE DATED 2021-06-07 (described on Site Profile dated 2021-06-07)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "uuid": "30ddd15b-b1ae-4f64-b28f-838626b9947c", - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2013-12-31 (described on Site Profile dated 2013-12-31)", + "uuid": "fa92841a-53b4-4f58-b0de-335b3518ae25", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2020-05-25 (described on Site Profile dated 2020-05-25)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "uuid": "e46f45ee-747a-47e8-9d08-da2f970ecf75", + "uuid": "553830e6-0967-496b-bd24-24165d303e0a", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-07-13 (described on Site Profile dated 2021-07-13)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "notes": "INSERTED FOR SITE PROFILE DATED 2015-09-13 (described on Site Profile dated 2015-09-13)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], "parcelDescriptions": [ { - "uuid": "97a86a51-522f-4640-b766-52975c11b576", - "siteRegistry": false, - "dateNoted": "2015-08-10", - "parcelID": "15742", - "crownLandUsePIN": "19173", - "crownLandFileNumber": "19475", - "landDescription": "LOT 1 OF LOT 3 BLOCK 5 DISTRICT LOT 5 PLAN 4313" + "uuid": "305ef150-01d9-42af-90a3-deb0d77f99ff", + "siteRegistry": true, + "dateNoted": "2017-03-04", + "parcelID": "17843", + "crownLandUsePIN": "17281", + "crownLandFileNumber": "18203", + "landDescription": "LOT 1 OF LOT 3 BLOCK 4 DISTRICT LOT 4 PLAN 4886" }, { - "uuid": "1b699fbb-46b9-4a1d-9f75-5a2ab359d16e", + "uuid": "9b342f7e-6036-41a1-998a-015362cfcfa0", "siteRegistry": false, - "dateNoted": "2016-10-13", - "parcelID": "16093", - "crownLandUsePIN": "19065", - "crownLandFileNumber": "17716", - "landDescription": "LOT 4 OF LOT 1 BLOCK 5 DISTRICT LOT 3 PLAN 4199" + "dateNoted": "2021-09-10", + "parcelID": "17073", + "crownLandUsePIN": "18093", + "crownLandFileNumber": "17581", + "landDescription": "LOT 5 OF LOT 5 BLOCK 1 DISTRICT LOT 3 PLAN 5644" }, { - "uuid": "67ecf23a-4ae7-4b54-83f8-b8e8ef33655c", + "uuid": "cfc96399-4b64-475c-a5de-db5ecdd80181", "siteRegistry": false, - "dateNoted": "2021-06-10", - "parcelID": "20961", - "crownLandUsePIN": "16107", - "crownLandFileNumber": "17118", - "landDescription": "LOT 3 OF LOT 1 BLOCK 3 DISTRICT LOT 1 PLAN 4636" + "dateNoted": "2023-01-04", + "parcelID": "18691", + "crownLandUsePIN": "17195", + "crownLandFileNumber": "20609", + "landDescription": "LOT 1 OF LOT 5 BLOCK 4 DISTRICT LOT 2 PLAN 4509" }, { - "uuid": "49f4d725-2d33-4368-8174-cadc6df88672", + "uuid": "aff98540-2b1d-4a1b-ae66-c89b66575241", "siteRegistry": false, - "dateNoted": "2018-09-28", - "parcelID": "15954", - "crownLandUsePIN": "20275", - "crownLandFileNumber": "16979", - "landDescription": "LOT 4 OF LOT 1 BLOCK 1 DISTRICT LOT 5 PLAN 4343" + "dateNoted": "2017-11-03", + "parcelID": "16018", + "crownLandUsePIN": "18067", + "crownLandFileNumber": "19810", + "landDescription": "LOT 3 OF LOT 4 BLOCK 2 DISTRICT LOT 3 PLAN 4799" } ], "siteDisclosures": [ { - "uuid": "4cc1c8b0-1c3a-430d-86aa-ce6e49ff30f8", - "siteRegistry": false, - "dateReceived": "2017-04-08", - "dateCompleted": "2019-03-20", - "dateEntered": "2021-10-10", - "dateRegistrar": "2021-09-05", - "dateLocalAuthorityReceived": "2021-03-07", - "summary": "Nihil maiores facere a facere praesentium quia.\nPerferendis error magni aspernatur.", - "informationUsed": "Consequuntur animi maxime beatae ipsum.\nFacilis facere dolorum debitis est ullam.\nTemporibus vero accusantium ea nostrum iste non dolor.\nNobis iste delectus necessitatibus maxime praesentium facere.\nAmet iure labore sapiente est cum praesentium architecto.", - "pastOrPresentOrders": "Ducimus dolorem veritatis rem occaecati pariatur itaque deserunt quis.\nNobis quibusdam laborum minus ratione et nostrum placeat.\nAssumenda beatae modi doloremque eaque illum voluptatem commodi sapiente nam.", + "uuid": "267a7a3b-296e-4a5d-b44e-cfc27e6d6a75", + "siteRegistry": true, + "dateReceived": "2014-10-19", + "dateCompleted": "2020-03-09", + "dateEntered": "2018-06-13", + "dateRegistrar": "2021-01-08", + "dateLocalAuthorityReceived": "2020-12-08", + "summary": "Accusamus tenetur quo rerum suscipit rerum deserunt corrupti quam.", + "informationUsed": "Explicabo magni ad nihil.\nArchitecto provident error earum numquam laborum.\nQuisquam a facere modi magnam accusantium veniam.\nError voluptatibus nemo fugit corrupti non culpa.\nVoluptate sit rem saepe vero facilis recusandae assumenda rem.", + "pastOrPresentOrders": "Iste delectus asperiores nisi id optio.", "commercialAndIndustrialPurposes": [ { - "uuid": "c4276057-f15f-4d13-9bb9-26ed094f4c90", - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false - }, - { - "uuid": "ec643b16-2677-44b5-9f25-1cdd57fe2c01", + "uuid": "2b659eeb-6b49-4af4-b065-7edb50e37b28", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { - "uuid": "d3cb46f8-8c0f-4945-9afe-bb34db303673", + "uuid": "42ae4e4e-af78-433d-b097-1360666e61b4", "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true - } - ] - }, - { - "uuid": "9df46b15-f586-4516-b669-0bd42ca12fac", - "siteRegistry": true, - "dateReceived": "2017-08-04", - "dateCompleted": "2018-12-17", - "dateEntered": "2015-05-27", - "dateRegistrar": "2018-06-11", - "dateLocalAuthorityReceived": "2014-09-06", - "summary": "Occaecati eius eligendi perspiciatis.", - "informationUsed": "Quidem dicta reiciendis laboriosam nisi occaecati ab possimus quae optio.\nOccaecati libero reprehenderit rem fuga enim.\nAnimi sunt ratione praesentium.\nIpsam qui aspernatur beatae aperiam nemo.\nQuibusdam quae minus architecto id eligendi nisi.", - "pastOrPresentOrders": "Nemo maxime id ut reprehenderit adipisci vel.\nPlaceat quisquam hic.", - "commercialAndIndustrialPurposes": [ - { - "uuid": "3aadeecf-a7fc-413f-8f56-f1a2d76312f3", - "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { - "uuid": "a4b755f0-7a6f-4e5e-b2b0-d1edaed70c37", + "uuid": "b42a6543-541e-45de-bb76-5831dc19fbfa", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false }, { - "uuid": "9e4a097a-c403-4f14-b597-617d733f015d", - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true - }, - { - "uuid": "4a923e37-6cc6-46ae-ad07-e17604ff44e1", + "uuid": "de9729f4-c950-4a1a-82bb-2b5bf4ada924", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true @@ -52056,121 +61082,92 @@ ], "activityLog": [ { - "uuid": "af5c8e18-c8e0-49bc-b2d0-cc8681dae9d7", + "uuid": "6a1b7137-4dcf-41d3-a41e-6d629d2f1e8c", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "BOGISICH CASSANDRA", - "timestamp": "2021-11-10" + "user": "DAUGHERTY LINWOOD", + "timestamp": "2017-11-21" }, { - "uuid": "4c988458-900f-4748-8cf9-7b1f08519cbd", + "uuid": "a364f470-3eb7-4e83-9df9-92dc18df77d4", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "HILLL JENNYFER", - "timestamp": "2017-12-07" + "user": "KAUTZER MARKUS", + "timestamp": "2019-03-23" }, { - "uuid": "599f37fb-30de-45b1-8a39-4b370a5668ad", + "uuid": "76d43580-50ee-4fdd-9f9e-09266943e462", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "SCHUMM ALDA", - "timestamp": "2023-04-25" + "user": "ZIEMANN ALVERTA", + "timestamp": "2018-03-06" }, { - "uuid": "0be323a3-d845-4caf-ac4f-16a2327d4a33", + "uuid": "3a4363e0-b08a-4ed4-a011-40a75928ea93", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "GRADY FELIPE", - "timestamp": "2017-06-26" - }, - { - "uuid": "8c5dadd3-9d37-4e93-8827-f26390e24ce4", - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "HEANEY ENOS", - "timestamp": "2016-02-22" + "user": "KUHN BETTY", + "timestamp": "2022-08-12" }, { - "uuid": "b8e2895b-2f7f-496b-a682-916867838e44", + "uuid": "c290eb71-9f2e-4b22-a7be-7ee779f4e2a7", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "WITTING EUSEBIO", - "timestamp": "2023-09-24" + "user": "SKILES DERECK", + "timestamp": "2014-07-08" }, { - "uuid": "89917b1b-2012-409a-84ff-80e313d981b4", + "uuid": "28af4eef-7e97-4d1e-a5cc-2cdf0069a3a7", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "ABBOTT-BERNHARD IBRAHIM", - "timestamp": "2022-06-13" + "user": "GOTTLIEB JACINTO", + "timestamp": "2015-10-30" }, { - "uuid": "9f4068fe-9a2b-4aad-85b3-60e5957e41c6", + "uuid": "cd71a47f-c72c-433c-b6ce-9c5124f8d5c8", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "BERGSTROM LAISHA", - "timestamp": "2022-10-12" - }, - { - "uuid": "cb903022-6e9c-4dc7-8a52-cc86ba814a26", - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "MOHR GRANT", - "timestamp": "2017-04-02" - }, - { - "uuid": "c9a733fd-c3f9-40e7-92a8-3f6e8c004894", - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "VEUM MAYBELL", - "timestamp": "2017-08-25" + "user": "PADBERG KEELY", + "timestamp": "2023-09-29" } ], "associatedSites": [ { - "uuid": "39c01759-c3ca-4572-bbb7-d36dded0b413", - "dateNoted": "2014-08-20", - "notes": "", - "parcelID": "19271", - "siteID": "18395", - "siteRegistry": false - }, - { - "uuid": "388858d4-a345-4984-b902-723ad6ff5e0c", - "dateNoted": "2019-12-13", + "uuid": "4e1c8f5d-48ae-488b-90e8-a87cc7f8f264", + "dateNoted": "2014-12-25", "notes": "", - "parcelID": "17277", - "siteID": "15525", + "parcelID": "15902", + "siteID": "20693", "siteRegistry": false } ] }, { - "uuid": "1705085d-fb7b-494c-90a9-b0ef6da3c102", - "siteID": 17666, - "address": "918 Henry Estates", - "latitude": 49.5166, - "longitude": -127.8402, - "lastUpdated": "2014-09-24", - "city": "Jadastad", - "region": "Vancouver Island/Coast", - "victoriaFile": "26250-20/18125", + "uuid": "98de0576-1cc9-4d12-a604-9b0cef5f403f", + "siteID": 19341, + "address": "94370 Greenfelder Key", + "latitude": 56.9587, + "longitude": -121.5767, + "lastUpdated": "2014-12-17", + "city": "Runtecester", + "region": "Cariboo", + "victoriaFile": "26250-20/11586", "regionalFile": "N/A", "parcelIDs": [ - 4266023, - 3453566, - 462248, - 4289165, - 831411 + 9562248, + 7363974, + 1295215, + 8456594, + 6543213 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "f7559c9e-fe9b-4a8f-b047-0903afe3a89b", - "createdAt": "2018-11-15", - "completed": "2017-05-17", - "initiated": "2018-12-14", - "ministryContact": "BERNIER NEDRA", + "uuid": "d5cb6230-c97a-4bb7-a07d-6726f9533186", + "createdAt": "2018-06-27", + "completed": "2018-12-23", + "initiated": "2015-07-15", + "ministryContact": "KUHIC JERROD", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -52179,130 +61176,44 @@ ], "notationParticipants": [ { - "uuid": "1c09367a-e083-486f-b538-50c6143f1d2c", + "uuid": "ece1c22b-4ed0-4e00-bdf8-a0b08c2f83e0", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "uuid": "063ae131-426a-4aaa-bfcc-1fd9648c11d7", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "uuid": "8fb77d96-b929-489e-850f-2b7d82914715", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "c46d9347-90ed-41b0-8f20-24f4df64d969", + "uuid": "1a1e0916-980d-403a-8636-61951d0981f3", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false }, { - "uuid": "65bd285e-34b6-429f-a742-589e6ff2b370", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - } - ], - "siteRegistry": false - }, - { - "uuid": "6e2cf697-5991-4b4f-974a-6860ac66423c", - "createdAt": "2019-12-15", - "completed": "2016-07-18", - "initiated": "2017-10-23", - "ministryContact": "HUEL CARY", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "uuid": "e3461fa0-6029-49ae-bda9-044c34628bad", + "uuid": "62cc67c9-9962-46f6-a787-9aa3ebc748b7", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "b4b9d419-68e4-4df0-b09b-076d361ccbe8", + "uuid": "df12e5ae-ddd2-4856-b812-e3b827e782c0", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "uuid": "4ab28524-e466-42b3-906d-a9f7c6a18ea5", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "ee68ac12-938c-434c-b844-22c0aacb18a0", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "uuid": "b0de7a5a-1ec1-414f-825d-c514cd5dfa37", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - } - ], - "siteRegistry": false - }, - { - "uuid": "cd862194-bab8-4518-8575-a74c00632c19", - "createdAt": "2014-10-23", - "completed": "2022-02-25", - "initiated": "2022-03-11", - "ministryContact": "HELLER GERMAN", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "uuid": "7a097b92-1e81-45c4-a0bc-113ff7dbbf74", + "uuid": "3df2ca68-ae0c-4f8b-a09a-0b5ec9fb5a0e", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false - }, - { - "uuid": "98e921fb-6ef6-47da-afed-8b01649e5d99", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "uuid": "ef48ca52-1946-4fee-9c17-c155a6899061", - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "uuid": "a364ca71-172d-49ee-a481-b40b68505527", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true } ], "siteRegistry": false }, { - "uuid": "c97d068e-972b-49a2-8d4d-319180f2a0ba", - "createdAt": "2021-07-27", - "completed": "2017-04-01", - "initiated": "2013-12-26", - "ministryContact": "WYMAN ALEXYS", + "uuid": "5dbf66f4-d109-4a27-b72c-e90b0a9ea7d1", + "createdAt": "2015-12-24", + "completed": "2017-05-10", + "initiated": "2015-08-16", + "ministryContact": "GRAHAM DAVID", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -52311,26 +61222,26 @@ ], "notationParticipants": [ { - "uuid": "ea864865-4de2-4e3d-a993-fa78eb14599e", - "name": "SHELL CANADA PRODUCTS", + "uuid": "1dde3b21-b4f8-4092-ae96-b02e18828b3f", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false }, { - "uuid": "a671ee37-f2d3-43eb-974d-bb2705f581e2", - "name": "SHELL CANADA PRODUCTS", + "uuid": "0a3d03b1-f1d7-43d4-ba41-5f4426215d23", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "474d3b0d-0428-443b-9fc2-6b7e8e05c5de", - "createdAt": "2015-02-11", - "completed": "2018-12-27", - "initiated": "2023-07-12", - "ministryContact": "JENKINS LURLINE", + "uuid": "676dc1b5-38e8-4e7e-bfc9-111b8a63567e", + "createdAt": "2022-08-21", + "completed": "2020-01-27", + "initiated": "2022-08-16", + "ministryContact": "BUCKRIDGE CRYSTAL", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -52339,172 +61250,220 @@ ], "notationParticipants": [ { - "uuid": "161835bc-fd5d-45d8-a766-652600edf27b", + "uuid": "ed18e47d-e88c-4296-bbe8-6b9f69269662", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false + "role": "SUBMITTED BY", + "siteRegistry": true }, { - "uuid": "7275ac7f-a811-42d2-b0a3-587dfe894c67", + "uuid": "9ee2bc4d-49bd-43f6-afac-d6a2df8bd05a", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "41c84233-c12a-4763-b29e-22076a3d3b88", + "uuid": "aff9fc46-95b9-466a-8ddb-92dd188ab7a0", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false } ], "participants": [ { - "uuid": "b1a7f1ac-eb6b-4a0b-be54-6b497381520e", - "name": "AMET, DOLOR SIT", - "endDate": "2023-06-02", - "startDate": "2023-07-29", + "uuid": "29bac4ae-eb26-4951-ad9c-92b1697326f5", + "name": "IPSUM", + "endDate": "2022-07-27", + "startDate": "2023-02-03", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "e7fc38d7-c49f-4908-8ac0-272c20de3a1e", + "uuid": "1f568980-d58f-4434-b83f-3630c98842a8", "name": "SHELL CANADA PRODUCTS", - "endDate": "2022-02-27", - "startDate": "2021-02-14", + "endDate": "2016-03-26", + "startDate": "2014-05-02", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true + } + ], + "documents": [ + { + "uuid": "7be6208d-9ee6-4fde-85bc-accd0cf46589", + "siteRegistry": false, + "documentDate": "2014-06-10", + "receivedDate": "2017-02-26", + "uploadedDate": "2020-09-04", + "title": "Preliminary Site Investigation, Detailed Site Investigation and Remedial Plan for the Management Area adjacent to the Shell Site at 1503 West 41st Ave", + "participants": [ + { + "uuid": "7bd817c0-b957-49fa-a2db-a6f7b0e7aaef", + "name": "AMET, DOLOR SIT", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "76051399-f4fb-47bd-9202-ba4f7e2ccbfd", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": false, + "role": "AUTHOR" + } + ] }, { - "uuid": "0a0edc01-fb0c-43b0-b5e2-1dd5ad8fb349", - "name": "SHELL CANADA PRODUCTS", - "endDate": "2020-10-18", - "startDate": "2019-11-18", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": true + "uuid": "4ba907b7-3cce-44ce-bd03-7af9dec21fd4", + "siteRegistry": true, + "documentDate": "2023-03-12", + "receivedDate": "2019-11-28", + "uploadedDate": "2017-11-15", + "title": "Preliminary Site Investigation, Detailed Site Investigation and Remedial Plan for the Management Area adjacent to the Shell Site at 1503 West 41st Ave", + "participants": [ + { + "uuid": "5b3f10ec-67a7-4464-8ca6-fd33a117ce7f", + "name": "AMET, DOLOR SIT", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "b39d8bf1-984b-43be-a0d4-062ca55b61ed", + "name": "IPSUM", + "siteRegistry": true, + "role": "AUTHOR" + } + ] }, { - "uuid": "eb854beb-6a3c-4fd3-b9ab-543165b377cf", - "name": "IPSUM", - "endDate": "2019-03-06", - "startDate": "2021-03-16", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": false + "uuid": "e968cf43-87bf-4051-98a6-a0d697b6ed69", + "siteRegistry": true, + "documentDate": "2021-11-06", + "receivedDate": "2023-04-30", + "uploadedDate": "2018-07-03", + "title": "Summary of Site Conditions, 1537 W 41st Avenue, Vancouver", + "participants": [ + { + "uuid": "437bcc32-f05c-40ac-88b9-4886dd988a75", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "ed044bf5-9a6f-442b-9289-4539887a15d3", + "name": "AMET, DOLOR SIT", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "39ecb047-3ee0-403f-a6cf-124fee8678d1", + "name": "AMET, DOLOR SIT", + "siteRegistry": false, + "role": "AUTHOR" + } + ] }, { - "uuid": "b37e0102-6f33-426a-847a-78b9125bb006", - "name": "SHELL CANADA PRODUCTS", - "endDate": "2021-05-05", - "startDate": "2018-02-08", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": true + "uuid": "d64b2ab1-7b03-4be5-9fba-3e6e7dbd6f9d", + "siteRegistry": true, + "documentDate": "2016-10-04", + "receivedDate": "2020-12-15", + "uploadedDate": "2021-11-16", + "title": "Summary of Site Conditions, 1537 W 41st Avenue, Vancouver", + "participants": [ + { + "uuid": "5969d424-9b3b-4864-88f5-f09dc96edf2f", + "name": "AMET, DOLOR SIT", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "c3bcd18a-d905-427c-b95f-fd64e3eb562c", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": false, + "role": "AUTHOR" + } + ] } ], "suspectLandUses": [ { - "uuid": "c4c0fb9d-f4ed-468f-a70a-c9f4ff04ebb5", - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2023-06-08 (described on Site Profile dated 2023-06-08)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "uuid": "382591c3-1340-43f2-a9f5-54cfb063f2b2", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2016-01-13 (described on Site Profile dated 2016-01-13)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "uuid": "0629de01-1bbf-47d4-a522-66b99a5f9001", + "uuid": "3b58de1f-68a9-46be-a8b1-a0b619292e04", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-01-07 (described on Site Profile dated 2019-01-07)", + "notes": "INSERTED FOR SITE PROFILE DATED 2022-11-04 (described on Site Profile dated 2022-11-04)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "uuid": "b1d7ee86-274b-45e4-8ca4-27863f33b88f", + "uuid": "5e9fd991-089b-4c5e-b64f-dcfa559019f0", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-06-01 (described on Site Profile dated 2014-06-01)", + "notes": "INSERTED FOR SITE PROFILE DATED 2022-03-03 (described on Site Profile dated 2022-03-03)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" - }, - { - "uuid": "69d89c88-61ef-492f-80a9-fc87aa4b0b21", - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-01-09 (described on Site Profile dated 2015-01-09)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], "parcelDescriptions": [ { - "uuid": "49153989-00e5-430d-8264-055e75d5a1da", + "uuid": "4a8bac72-8573-4132-8e05-17d73076ee97", "siteRegistry": true, - "dateNoted": "2020-04-30", - "parcelID": "20481", - "crownLandUsePIN": "20529", - "crownLandFileNumber": "15776", - "landDescription": "LOT 4 OF LOT 1 BLOCK 4 DISTRICT LOT 4 PLAN 7534" + "dateNoted": "2016-07-22", + "parcelID": "17865", + "crownLandUsePIN": "16976", + "crownLandFileNumber": "16503", + "landDescription": "LOT 2 OF LOT 4 BLOCK 4 DISTRICT LOT 1 PLAN 8398" }, { - "uuid": "d2e7c24d-ff19-4228-b9d7-d8514691efbf", + "uuid": "f0c02263-da9b-485b-9928-e400a008db6b", "siteRegistry": false, - "dateNoted": "2017-09-12", - "parcelID": "19342", - "crownLandUsePIN": "20140", - "crownLandFileNumber": "15652", - "landDescription": "LOT 5 OF LOT 4 BLOCK 5 DISTRICT LOT 1 PLAN 6752" - }, - { - "uuid": "22292777-897a-4b56-a747-6bac593c0256", - "siteRegistry": true, - "dateNoted": "2019-03-28", - "parcelID": "16406", - "crownLandUsePIN": "17635", - "crownLandFileNumber": "15528", - "landDescription": "LOT 1 OF LOT 5 BLOCK 5 DISTRICT LOT 1 PLAN 8844" + "dateNoted": "2017-10-04", + "parcelID": "18488", + "crownLandUsePIN": "18070", + "crownLandFileNumber": "16490", + "landDescription": "LOT 2 OF LOT 1 BLOCK 1 DISTRICT LOT 5 PLAN 8114" } ], "siteDisclosures": [ { - "uuid": "ada116d7-a288-4da0-a2f0-408101e6331b", + "uuid": "55f8608d-c5ca-4150-98c2-ba766898ca6c", "siteRegistry": false, - "dateReceived": "2015-04-09", - "dateCompleted": "2020-02-07", - "dateEntered": "2018-02-19", - "dateRegistrar": "2023-03-25", - "dateLocalAuthorityReceived": "2018-10-15", - "summary": "Deleniti repudiandae animi quas neque repellat porro atque.\nModi eos voluptates aperiam amet debitis officiis suscipit.", - "informationUsed": "Ex earum voluptatem voluptatibus voluptas suscipit impedit ipsa.\nVeniam rem totam aliquid optio voluptatibus.\nFacere quae pariatur hic assumenda similique facere.\nQuia ad atque quis illo.", - "pastOrPresentOrders": "Unde repudiandae optio esse earum temporibus voluptates cumque a id.\nDolorem rem vero officia sapiente beatae necessitatibus at nisi.", + "dateReceived": "2018-11-25", + "dateCompleted": "2016-08-30", + "dateEntered": "2017-08-04", + "dateRegistrar": "2015-05-16", + "dateLocalAuthorityReceived": "2015-08-02", + "summary": "Dolorum error ullam dolore molestiae pariatur at quidem.", + "informationUsed": "Magnam in vel doloribus id quas.\nAsperiores sint totam voluptates explicabo veniam similique ut mollitia.\nMagni magni neque totam.\nDucimus cumque natus.", + "pastOrPresentOrders": "Dignissimos iusto veritatis dolorum.\nOfficiis rerum voluptate suscipit iste repudiandae facilis doloremque.\nCorrupti magni quibusdam at dolore.", "commercialAndIndustrialPurposes": [ { - "uuid": "040fd652-b9ea-4acc-bf2f-ae10f4228aa0", - "scheduleReference": "F2*", + "uuid": "a6bbe91f-1e5c-48bb-b099-4677257a7e9e", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "b6ceb341-7324-4ff0-89e3-6bdcce9909a5", - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false + "uuid": "65b35b1a-5a10-42f1-a798-88a6d99b86f3", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true }, { - "uuid": "682aaed1-6d88-4ba2-aa8e-bc35861f25ec", - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "uuid": "4470fd12-e8f5-4078-bd0e-250e37651c1a", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false }, { - "uuid": "a102436a-1863-4422-acb5-1917b5e6a526", + "uuid": "6b49f25c-f6b4-42d8-8e73-00ff6429db81", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false @@ -52512,120 +61471,120 @@ ] }, { - "uuid": "58974912-b466-4d1c-b58c-4c3d74691567", - "siteRegistry": false, - "dateReceived": "2021-09-07", - "dateCompleted": "2021-08-08", - "dateEntered": "2015-04-24", - "dateRegistrar": "2018-08-22", - "dateLocalAuthorityReceived": "2021-09-23", - "summary": "Tempora aut cum ex laudantium.\nOmnis non natus quidem voluptatibus.\nVoluptatem nostrum at aperiam temporibus animi ab.", - "informationUsed": "Eligendi officia excepturi error amet explicabo quibusdam distinctio.\nNesciunt modi molestias deleniti doloribus sed eum.\nNon sed laborum corporis nobis cumque deserunt et quam.\nEum ullam optio libero vero.", - "pastOrPresentOrders": "Culpa accusantium ratione hic assumenda labore eos perspiciatis.\nSimilique voluptatem molestias tempora deleniti voluptatibus impedit eos illum.\nEnim totam officiis natus recusandae.", + "uuid": "1073173e-c552-4632-be14-19de81c579ca", + "siteRegistry": true, + "dateReceived": "2023-06-23", + "dateCompleted": "2021-07-08", + "dateEntered": "2022-08-02", + "dateRegistrar": "2020-05-17", + "dateLocalAuthorityReceived": "2015-11-16", + "summary": "Temporibus dolores cum.\nFacilis assumenda veritatis ut voluptate dicta at excepturi similique consectetur.\nVoluptas voluptate amet.", + "informationUsed": "Inventore earum rem aut quibusdam veniam sed vel facilis.\nVoluptatibus non maiores odio deleniti impedit quam beatae vitae incidunt.\nSunt recusandae quia quaerat temporibus.", + "pastOrPresentOrders": "Quia debitis quia consequatur nemo magnam.\nInventore repudiandae eius alias.", "commercialAndIndustrialPurposes": [ { - "uuid": "f14a6d1b-203e-45b5-ba88-874d27cc7dff", - "scheduleReference": "F2*", + "uuid": "52950885-c9d1-474c-8271-d5dc00040546", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "65b1dff8-741d-4de7-a116-a4202b8043c8", + "uuid": "fc47fdc8-9ce1-4a83-92ae-4be21e2d9f0c", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true + "siteRegistry": false } ] } ], "activityLog": [ { - "uuid": "12bbaad7-8693-44a6-8f93-569ca3b20559", - "siteRegistry": false, + "uuid": "70788e99-86ec-4866-b08e-085beaeb77f1", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "KERLUKE NAME", - "timestamp": "2014-10-09" + "user": "TREUTEL BETTY", + "timestamp": "2014-11-27" }, { - "uuid": "24b3b7a7-e83d-429d-a252-b18340fa7deb", + "uuid": "650c8209-48b5-46dd-ab54-7661ea7ba269", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "BRAKUS MARA", - "timestamp": "2015-06-01" + "user": "FRANECKI DUNCAN", + "timestamp": "2021-05-16" }, { - "uuid": "2b2e0df5-0add-4200-b3b5-cdf42154ce67", + "uuid": "360884ab-c2c4-4210-9bd2-881ce55ea22d", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "SPINKA LORENZ", - "timestamp": "2014-03-23" + "user": "ABERNATHY AISHA", + "timestamp": "2015-10-08" }, { - "uuid": "8da92728-c912-46fa-92bb-0c8f0db79fc9", + "uuid": "44fdf2ad-2b1b-4c98-b99a-b63e2fa99492", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "KUHN CALISTA", - "timestamp": "2020-09-05" + "user": "BRAUN LEOLA", + "timestamp": "2022-11-14" }, { - "uuid": "35ef12f6-cb74-4a6a-87e9-4ff4ba519984", - "siteRegistry": false, + "uuid": "47f6d12b-6fa1-49a0-b0cc-7a4786f16ab1", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "UPTON WHITNEY", - "timestamp": "2016-09-12" + "user": "RIPPIN-SPORER GINO", + "timestamp": "2019-04-27" }, { - "uuid": "2cac2458-6df8-4d88-a7e7-8be28b03eec2", + "uuid": "d627da62-2f83-439a-bd51-6c23ed824cd3", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "GERHOLD ORLAND", - "timestamp": "2021-08-21" + "user": "WINTHEISER FREIDA", + "timestamp": "2017-03-07" }, { - "uuid": "862b473f-125c-489e-85e5-acf97afd1197", + "uuid": "a76eb494-aebc-4c26-b42a-01b10fbc87f9", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "O'KON GUY", - "timestamp": "2018-11-03" + "user": "CHRISTIANSEN KATHERYN", + "timestamp": "2014-02-13" } ], "associatedSites": [ { - "uuid": "083a0802-9d30-49b8-9854-20b94f8e3b64", - "dateNoted": "2018-04-09", + "uuid": "01d35916-92f0-43e6-8d04-fcb682656154", + "dateNoted": "2016-02-16", "notes": "", - "parcelID": "20696", - "siteID": "16078", + "parcelID": "18748", + "siteID": "18582", "siteRegistry": true } ] }, { - "uuid": "a7572108-f557-4dc8-93bd-7e74d670cf09", - "siteID": 15766, - "address": "4269 Gusikowski Lock", - "latitude": 58.7509, - "longitude": -133.1236, - "lastUpdated": "2023-07-20", - "city": "South Eliside", - "region": "Thompson-Okanagan", - "victoriaFile": "26250-20/8054", + "uuid": "1e2eef6a-8b94-41c4-b469-22e1b0ec6147", + "siteID": 17404, + "address": "703 Georgianna Lakes", + "latitude": 54.4829, + "longitude": -134.3967, + "lastUpdated": "2022-05-09", + "city": "Fort Herbertville", + "region": "Mainland/Southwest", + "victoriaFile": "26250-20/10257", "regionalFile": "N/A", "parcelIDs": [ - 6151631, - 8246092, - 162387, - 6298318, - 7329047 + 3313518, + 3637493, + 4515317, + 9616662, + 4559831 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "12eaf94a-ccf0-4a78-8dc9-a8f2cdbebd7e", - "createdAt": "2022-01-31", - "completed": "2022-02-13", - "initiated": "2021-08-09", - "ministryContact": "SAUER GRIFFIN", + "uuid": "0eb0c5be-141e-497e-947e-33e7b9354909", + "createdAt": "2022-08-21", + "completed": "2023-09-01", + "initiated": "2019-11-21", + "ministryContact": "KUVALIS GUADALUPE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -52634,32 +61593,26 @@ ], "notationParticipants": [ { - "uuid": "f4138458-aee9-4f92-a469-e4bac8066a6c", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "uuid": "cb17c3ac-afd3-4005-846e-7f402fe94514", - "name": "SHELL CANADA PRODUCTS", + "uuid": "3984d860-4d8d-495d-9460-20e957d4e612", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "db2f8b49-b344-4024-8865-d7c0607ad518", + "uuid": "bbaf4672-1962-423b-b1ee-a7af951e5453", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "624e85bc-bb64-438c-9e3a-1ed6bd60fca5", - "createdAt": "2020-01-01", - "completed": "2016-03-29", - "initiated": "2021-08-26", - "ministryContact": "ROBERTS ZETTA", + "uuid": "72fd0dc6-54b0-4d1c-b346-32bd60b42788", + "createdAt": "2017-11-22", + "completed": "2016-01-21", + "initiated": "2019-05-27", + "ministryContact": "ROMAGUERA CLIFTON", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -52668,19 +61621,25 @@ ], "notationParticipants": [ { - "uuid": "ed35d209-2e16-45ec-a5e4-cdcb978bee36", + "uuid": "50ce4cf5-b2fc-4877-908e-e728ed42b5bc", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true + "role": "SUBMITTED BY", + "siteRegistry": false }, { - "uuid": "be4605e3-0699-4eb1-8b71-a6ba7b9973ab", - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "35528926-d1f7-4008-9e82-1b1bd73da259", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true }, { - "uuid": "8cdf89fc-8bf7-4d45-ae56-64c796aeeb2f", + "uuid": "c1d355b5-1096-4a32-a632-ae63685112f6", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "d7a1e8c8-90b4-4b9b-a669-3f1aef0c37cd", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false @@ -52689,11 +61648,11 @@ "siteRegistry": true }, { - "uuid": "0d008612-0bdf-4940-931b-619885839ba2", - "createdAt": "2018-01-03", - "completed": "2023-02-28", - "initiated": "2014-04-12", - "ministryContact": "DENESIK ZARIA", + "uuid": "131485b4-2d72-4e03-9bbc-fbb717f52fb7", + "createdAt": "2016-04-22", + "completed": "2016-09-21", + "initiated": "2015-09-25", + "ministryContact": "KASSULKE CORNELL", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -52702,44 +61661,26 @@ ], "notationParticipants": [ { - "uuid": "3cd94b94-5d86-4d7f-91c0-26a393f1576c", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "uuid": "a750fe53-1c41-4805-9700-0e3513125567", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "uuid": "7221140e-9e0e-453a-b2f3-18977a5f2930", + "uuid": "671eb4ee-70c4-4418-9d33-d97d0a0042d2", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "13169aec-643a-4b5c-bbde-09fa97a5f7ab", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "uuid": "e84f097e-069e-4b4d-bf02-4186802e714b", + "uuid": "e7e0f79b-2ef6-4d9a-b000-1f7e94d019c3", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "6101c484-af49-419e-b4b6-4870cd893e1b", - "createdAt": "2019-01-14", - "completed": "2023-06-28", - "initiated": "2020-12-19", - "ministryContact": "WUCKERT RONNY", + "uuid": "784fea3c-956a-4eae-804e-6e3da99d0927", + "createdAt": "2017-03-20", + "completed": "2019-01-15", + "initiated": "2019-02-21", + "ministryContact": "HARTMANN BLANCA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -52748,26 +61689,32 @@ ], "notationParticipants": [ { - "uuid": "7d2ab078-8e75-479c-969a-ece4b27cea2c", - "name": "SHELL CANADA PRODUCTS", + "uuid": "f609fa0e-ae0b-4310-b3cc-0952af318879", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "efd7644c-277c-480c-ba30-dda66f315eaf", + "uuid": "501e7df1-3458-46c8-ab1d-317edeae6462", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "6750237f-fe70-43de-a9d5-d022830a7423", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": true } ], "siteRegistry": true }, { - "uuid": "90ece7f3-3923-4238-9aef-7b060ecfb782", - "createdAt": "2018-04-19", - "completed": "2015-12-12", - "initiated": "2017-03-26", - "ministryContact": "WEST LIZZIE", + "uuid": "4f38e163-0dfd-4e51-bba1-17459396501b", + "createdAt": "2021-01-17", + "completed": "2016-04-09", + "initiated": "2019-12-17", + "ministryContact": "HEANEY KRISTA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -52776,183 +61723,207 @@ ], "notationParticipants": [ { - "uuid": "13aab0da-9e39-45d4-bded-0d258bba46ba", + "uuid": "ca91842d-a541-4ab8-922a-7c3b22ba9cb4", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true }, { - "uuid": "a5916593-f598-417d-989b-dacb0f69e905", - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "dc9840a9-f199-422f-8f2d-e971aed6b48c", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "c4925d38-b82d-4563-bd97-8830580ab44e", + "uuid": "1854c792-7056-4b0c-9843-e5b447812aa4", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "e69688f2-7d46-44d5-bb75-71d9358c7d1c", + "uuid": "be82c9a0-5b8a-4016-8936-5e89d294e6b3", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false - } - ], - "siteRegistry": true - } - ], - "participants": [ - { - "uuid": "a8b30b0a-fe1a-49d2-b3a8-35197d04fb30", - "name": "AMET, DOLOR SIT", - "endDate": "2015-07-13", - "startDate": "2014-02-13", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": true - }, - { - "uuid": "c34c3675-bf6c-4d01-a03e-f6297b001b90", - "name": "IPSUM", - "endDate": "2023-04-15", - "startDate": "2022-02-13", - "notes": "", - "roles": [ - "EMPLOYEE" + } ], - "siteRegistry": true - }, + "siteRegistry": false + } + ], + "participants": [ { - "uuid": "c627aa4b-fbe2-415a-a34e-705dd4fe659a", - "name": "IPSUM", - "endDate": "2021-08-30", - "startDate": "2018-06-28", + "uuid": "af495842-b175-4eb4-93c9-023e399f7baf", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2021-06-13", + "startDate": "2018-03-31", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": true }, { - "uuid": "379e9446-9f1e-49b6-8576-e3b3cf22d517", - "name": "AMET, DOLOR SIT", - "endDate": "2017-04-12", - "startDate": "2022-02-10", + "uuid": "c499a975-04d4-4ed0-bf14-870494330851", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2021-05-05", + "startDate": "2017-11-21", "notes": "", "roles": [ "ORGANIZATION" ], "siteRegistry": false + } + ], + "documents": [ + { + "uuid": "9fe0a945-e322-4930-85c4-4f7a2181fc1c", + "siteRegistry": true, + "documentDate": "2018-01-02", + "receivedDate": "2016-09-28", + "uploadedDate": "2020-03-03", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "1f0eb06d-e41f-4a48-89a0-458002845124", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "e72cdd51-8387-4fbd-bc8c-0365e4a06082", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": true, + "role": "AUTHOR" + } + ] }, { - "uuid": "81c3e51c-12e2-42e6-b618-6f5edd0f4423", - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2016-10-15", - "startDate": "2021-12-21", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": true + "uuid": "8093cc8a-95c2-4f6e-8bdf-b6b68373cd08", + "siteRegistry": true, + "documentDate": "2015-03-28", + "receivedDate": "2022-09-20", + "uploadedDate": "2022-07-05", + "title": "Summary of Site Conditions, 1537 W 41st Avenue, Vancouver", + "participants": [ + { + "uuid": "a59b7b98-b922-40c1-824f-6cbb0b639ebc", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": false, + "role": "AUTHOR" + } + ] } ], "suspectLandUses": [ { - "uuid": "a4986db0-8dab-4422-b33a-dcfbaee46086", + "uuid": "28443391-6dab-4f73-b7ad-189ddb945e07", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-08-23 (described on Site Profile dated 2016-08-23)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "notes": "INSERTED FOR SITE PROFILE DATED 2019-05-04 (described on Site Profile dated 2019-05-04)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "uuid": "751ddc60-1076-4990-ad26-67377e2c91f7", - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-05-09 (described on Site Profile dated 2014-05-09)", + "uuid": "b4798a15-28d3-4726-9385-09df6295ccfd", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2017-06-05 (described on Site Profile dated 2017-06-05)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "uuid": "3ae4b1da-cc26-478c-8bf9-38ba2f773c99", + "uuid": "91d56b77-97e5-4403-8ff8-8a43948937f0", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2023-03-06 (described on Site Profile dated 2023-03-06)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "notes": "INSERTED FOR SITE PROFILE DATED 2014-05-06 (described on Site Profile dated 2014-05-06)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], "parcelDescriptions": [ { - "uuid": "593ecfd9-c22c-43a9-9876-05aedf23267e", + "uuid": "06c27790-79c7-4d96-8a93-331e851acb45", "siteRegistry": true, - "dateNoted": "2021-05-18", - "parcelID": "20094", - "crownLandUsePIN": "19643", - "crownLandFileNumber": "20558", - "landDescription": "LOT 3 OF LOT 5 BLOCK 3 DISTRICT LOT 5 PLAN 3653" + "dateNoted": "2020-07-27", + "parcelID": "15751", + "crownLandUsePIN": "20218", + "crownLandFileNumber": "18163", + "landDescription": "LOT 5 OF LOT 1 BLOCK 1 DISTRICT LOT 1 PLAN 4325" }, { - "uuid": "8675f918-9b63-495e-bc19-e25f927df435", + "uuid": "d57d8b47-b686-434c-ae49-8a5129be2c8d", "siteRegistry": true, - "dateNoted": "2017-02-18", - "parcelID": "17880", - "crownLandUsePIN": "15566", - "crownLandFileNumber": "20357", - "landDescription": "LOT 1 OF LOT 2 BLOCK 1 DISTRICT LOT 1 PLAN 3006" + "dateNoted": "2022-09-02", + "parcelID": "20383", + "crownLandUsePIN": "19357", + "crownLandFileNumber": "17003", + "landDescription": "LOT 4 OF LOT 3 BLOCK 5 DISTRICT LOT 1 PLAN 6168" }, { - "uuid": "3f8bd8f9-d090-4385-9420-2ce24aab888a", + "uuid": "f749dc32-961a-4b7b-bd74-8d78189be6bb", "siteRegistry": false, - "dateNoted": "2019-12-05", - "parcelID": "19215", - "crownLandUsePIN": "15839", - "crownLandFileNumber": "18795", - "landDescription": "LOT 5 OF LOT 1 BLOCK 1 DISTRICT LOT 4 PLAN 7680" - }, - { - "uuid": "8db52bc4-647c-48a5-a1d3-7378380df50e", - "siteRegistry": true, - "dateNoted": "2020-04-07", - "parcelID": "15685", - "crownLandUsePIN": "15478", - "crownLandFileNumber": "18919", - "landDescription": "LOT 2 OF LOT 4 BLOCK 2 DISTRICT LOT 2 PLAN 9288" + "dateNoted": "2020-07-09", + "parcelID": "20462", + "crownLandUsePIN": "17936", + "crownLandFileNumber": "18046", + "landDescription": "LOT 3 OF LOT 1 BLOCK 5 DISTRICT LOT 3 PLAN 7103" } ], "siteDisclosures": [ { - "uuid": "3cef9310-1ecf-41ff-89e1-7f7150e1b1a8", + "uuid": "e9ed33b6-7c27-4cbe-b910-fcfde9a842b1", "siteRegistry": false, - "dateReceived": "2022-06-05", - "dateCompleted": "2022-10-19", - "dateEntered": "2014-05-04", - "dateRegistrar": "2020-09-01", - "dateLocalAuthorityReceived": "2022-11-01", - "summary": "Accusantium exercitationem repudiandae hic omnis debitis libero alias.\nEx autem vel doloremque quod minima molestias qui suscipit ullam.", - "informationUsed": "Placeat soluta nemo ratione aliquam optio.\nVoluptas ad ipsum tempora quia sequi eveniet minus.\nEum rem ipsa nulla.", - "pastOrPresentOrders": "Ex dicta ea nostrum nam quam.", + "dateReceived": "2022-01-19", + "dateCompleted": "2019-01-15", + "dateEntered": "2014-06-18", + "dateRegistrar": "2016-10-18", + "dateLocalAuthorityReceived": "2017-03-22", + "summary": "Delectus nihil recusandae repellat rem fugiat.\nReiciendis repellendus quidem aliquid a voluptatibus ratione cumque nemo nobis.", + "informationUsed": "Dicta facilis molestiae quae molestias nemo.\nAsperiores pariatur vitae maiores similique impedit qui quisquam.\nQuasi autem incidunt repellendus id iusto assumenda sunt tenetur illo.\nIpsum odit voluptatem saepe possimus at quo est quae.\nEt et eaque quaerat fuga molestiae.", + "pastOrPresentOrders": "Veritatis et incidunt temporibus ipsa dolores fuga ex libero.\nQuasi expedita culpa itaque.", "commercialAndIndustrialPurposes": [ { - "uuid": "4c7faec9-cac9-4487-a035-d553f1607e96", - "scheduleReference": "F2*", + "uuid": "a7e1354d-58fe-4b18-8c9e-c404753cf1f5", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "uuid": "e9daae2a-e867-4787-b9f4-3e78ec0c2084", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false }, { - "uuid": "e2ce13f8-9e5f-4133-aa14-b8d00256c4e0", - "scheduleReference": "F2*", + "uuid": "c42b8d35-4bb1-4635-bbd1-6f070c07f58a", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false }, { - "uuid": "22c5e753-e530-4478-965a-006a291b022b", + "uuid": "47b2ae81-012b-4946-9adf-18f9c4882c0e", "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + } + ] + }, + { + "uuid": "45a53033-1520-4983-8fa8-c35b8770d39c", + "siteRegistry": true, + "dateReceived": "2014-12-31", + "dateCompleted": "2015-05-23", + "dateEntered": "2015-10-21", + "dateRegistrar": "2013-11-27", + "dateLocalAuthorityReceived": "2022-11-21", + "summary": "Eius sunt molestias adipisci.", + "informationUsed": "Error architecto labore.\nPerferendis atque praesentium rem tenetur reiciendis minus.\nVeritatis maxime recusandae laboriosam ut et.\nNam saepe animi aut totam recusandae fugit.", + "pastOrPresentOrders": "Laudantium nisi odit.\nSunt eum voluptatem explicabo consequatur excepturi asperiores eum quas illo.\nOmnis nulla facere possimus quae dicta quae.", + "commercialAndIndustrialPurposes": [ + { + "uuid": "86d93427-63a0-4e8d-be4a-9f718bc7e3e5", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false }, { - "uuid": "05df16a3-687d-4774-bff7-a756686419b0", + "uuid": "bed21100-6ca9-430b-a2ad-86574040cd3c", "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true } ] @@ -52960,101 +61931,108 @@ ], "activityLog": [ { - "uuid": "42a2779f-24e4-4b30-b082-1c91ed8ad2f3", + "uuid": "6d10183b-1d67-4702-a32d-1d86f6a8007a", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "DAUGHERTY MARGE", - "timestamp": "2020-02-15" + "user": "MARKS ASHLEY", + "timestamp": "2016-08-16" }, { - "uuid": "4faacd88-3f12-4054-a051-f1739751c798", - "siteRegistry": true, + "uuid": "e6370568-81d4-47ae-9050-88877d52adfe", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "ULLRICH BILL", - "timestamp": "2019-12-14" + "user": "GRANT JANIYA", + "timestamp": "2018-02-08" }, { - "uuid": "0ac29f4f-d625-4ec8-a795-7d1ddb592ade", + "uuid": "95e97cd6-ed46-4f83-a9a8-0a54c359506c", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "SHIELDS VEDA", - "timestamp": "2016-12-26" + "user": "VONRUEDEN ANDREW", + "timestamp": "2020-05-09" }, { - "uuid": "e2208cc0-0bf2-4530-bf08-09011632540c", + "uuid": "93df184b-af72-4db1-bb03-0199ed798c89", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "DARE MARCOS", - "timestamp": "2020-10-14" + "user": "BAYER LOTTIE", + "timestamp": "2022-02-10" }, { - "uuid": "62b97bd5-34be-41cb-8484-1d38111e585b", + "uuid": "8e0ba742-961b-4ff1-9f1f-64d5275a4e0f", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "RUSSEL NAYELI", - "timestamp": "2022-03-09" + "user": "REYNOLDS CIERRA", + "timestamp": "2021-08-14" }, { - "uuid": "81f31d8e-7634-4289-88f9-c49f90c7eefc", + "uuid": "5d32136f-d706-4f28-a40b-b80ac12b4353", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "HICKLE TERENCE", - "timestamp": "2017-04-18" + "user": "HAMMES ELINOR", + "timestamp": "2020-12-19" + }, + { + "uuid": "b1a2995b-3c23-4a6a-b9b2-5c5137211359", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "KASSULKE TITUS", + "timestamp": "2023-06-25" } ], "associatedSites": [ { - "uuid": "d741a5ad-b2fc-4695-bb8b-3938f8c700ca", - "dateNoted": "2015-08-20", + "uuid": "41155daf-f866-4873-a4e2-e6a4bf4ced6a", + "dateNoted": "2023-08-18", "notes": "", - "parcelID": "17829", - "siteID": "15493", - "siteRegistry": true + "parcelID": "15275", + "siteID": "15676", + "siteRegistry": false }, { - "uuid": "4b4a6c8f-ee06-40db-a0ea-54137519ca4b", - "dateNoted": "2016-07-02", + "uuid": "2dfd104c-3b22-4a98-987c-d03cb47d5e3a", + "dateNoted": "2023-09-01", "notes": "", - "parcelID": "15327", - "siteID": "17913", - "siteRegistry": true + "parcelID": "18943", + "siteID": "20880", + "siteRegistry": false }, { - "uuid": "6b718b9a-bd0e-41b0-b317-7abe6bf5d359", - "dateNoted": "2017-01-23", + "uuid": "8a6575a3-8687-453e-b1f1-421ea1eb0b08", + "dateNoted": "2019-10-16", "notes": "", - "parcelID": "16133", - "siteID": "17701", + "parcelID": "19394", + "siteID": "15422", "siteRegistry": false } ] }, { - "uuid": "87f0d555-ef88-46ca-84ae-8e1ffd0867be", - "siteID": 16913, - "address": "16327 West Skyway", - "latitude": 55.6585, - "longitude": -129.9947, - "lastUpdated": "2022-02-15", - "city": "Brendaview", - "region": "Cariboo", - "victoriaFile": "26250-20/10542", + "uuid": "3bf808db-e3f9-4f11-bc1f-cdb9c015565b", + "siteID": 18152, + "address": "2944 Hammes Centers", + "latitude": 49.3451, + "longitude": -132.524, + "lastUpdated": "2016-12-11", + "city": "West Augustaport", + "region": "Mainland/Southwest", + "victoriaFile": "26250-20/18572", "regionalFile": "N/A", "parcelIDs": [ - 1045622, - 8095549, - 7418497, - 4156011, - 4636792 + 1723177, + 9894188, + 7372160, + 8631434, + 4077856 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "6cd0eb0c-af2b-462f-af37-6ee7771eef05", - "createdAt": "2016-02-24", - "completed": "2019-10-26", - "initiated": "2016-06-11", - "ministryContact": "ZULAUF DAMIAN", + "uuid": "46124371-6469-411b-804f-e563c27e750a", + "createdAt": "2014-06-15", + "completed": "2022-12-30", + "initiated": "2016-06-30", + "ministryContact": "MORAR WILBERT", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -53063,54 +62041,44 @@ ], "notationParticipants": [ { - "uuid": "9880bff6-4d03-48df-9643-6dcb614d2e3e", + "uuid": "92916f23-fb48-4bea-9764-09b6c69d9a03", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "281de042-03f7-4862-afc3-6aa855b2489b", + "uuid": "d63c188c-b6cf-4ad4-845c-a7123656bff3", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false - } - ], - "siteRegistry": true - }, - { - "uuid": "d2f299db-c13c-458d-8470-f0300b5f2f00", - "createdAt": "2020-11-15", - "completed": "2019-07-01", - "initiated": "2014-07-08", - "ministryContact": "BUCKRIDGE MIGUEL", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ + }, { - "uuid": "25064f8d-c076-459c-9021-2c0784d9556f", + "uuid": "ea3de9ff-9e80-44a0-b446-975b2997c07e", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true }, { - "uuid": "7b12d7e8-e736-4996-ac54-ac71d78a6cb1", - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "1fd665ba-b841-44bc-b270-7307a2433647", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false + }, + { + "uuid": "18814727-4616-410e-b063-c13d678536fa", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "d54e73a8-a1af-489b-8686-0f9f3c03d641", - "createdAt": "2019-12-17", - "completed": "2022-05-05", - "initiated": "2014-09-12", - "ministryContact": "WALKER DAPHNE", + "uuid": "550bc755-a1f0-47a6-a274-279289826c61", + "createdAt": "2014-11-14", + "completed": "2021-08-13", + "initiated": "2022-05-02", + "ministryContact": "EMMERICH CHANDLER", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -53119,54 +62087,38 @@ ], "notationParticipants": [ { - "uuid": "b7f70543-0990-4066-b7ef-7c8012ef9b33", + "uuid": "79404c36-f9ab-4386-a49f-1900bf4f6f4e", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "806b5562-ae72-41f3-a148-c821761541ba", - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "e1a3b6aa-5712-4a26-bf12-1641237dfe13", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true - } - ], - "siteRegistry": false - }, - { - "uuid": "99fb40d8-86db-4363-9f5d-c427d5358e20", - "createdAt": "2014-08-12", - "completed": "2016-10-05", - "initiated": "2022-08-25", - "ministryContact": "BARTELL FELICITY", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ + "siteRegistry": false + }, { - "uuid": "67f7e047-d9d4-415a-afb6-136dc3cbb6e4", + "uuid": "c5ee2c44-71f7-4c00-962c-06c3dcf712dc", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "4c328d20-dad0-4067-95ff-99d1bbc72192", + "uuid": "9b9ff492-f86a-40d7-82f3-8ff78410068c", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true } ], "siteRegistry": true }, { - "uuid": "bad39fa6-e220-4cc5-b7c0-684aa48f7998", - "createdAt": "2020-06-28", - "completed": "2014-07-03", - "initiated": "2021-07-01", - "ministryContact": "WISOZK VINCE", + "uuid": "36729eb5-262f-4c20-97c0-8cb27d033a33", + "createdAt": "2021-06-28", + "completed": "2016-01-13", + "initiated": "2019-09-17", + "ministryContact": "ULLRICH CHRISTY", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -53175,34 +62127,62 @@ ], "notationParticipants": [ { - "uuid": "eb36363b-87ac-4061-bf3f-b621b78f7488", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "uuid": "36fc9530-9698-415e-a4d3-cf01ac252ecb", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "b8b20181-472c-4b22-b5bc-834d591b808a", + "uuid": "8d8286cb-8edf-48e4-a864-aa0c9dd14970", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true }, { - "uuid": "9fe5ea5c-d3fc-43ff-be6e-0def2bcac8eb", - "name": "SHELL CANADA PRODUCTS", + "uuid": "4e33c6a5-4268-4722-82eb-735cb8a76565", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false }, { - "uuid": "ab929f1a-453d-41e4-8b7b-1c6f09cc1ea7", + "uuid": "d9f8c15f-a90b-4be9-b4ed-a51e03ac73a9", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "e2999cbb-eeef-49a4-87ab-1f30d44f9b3a", - "name": "SHELL CANADA PRODUCTS", + "uuid": "6cda6201-0fe0-48fb-b906-1a896a152204", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "uuid": "6f24a34f-9d31-437a-8fad-f5eb3b611e3a", + "createdAt": "2015-01-02", + "completed": "2014-08-12", + "initiated": "2013-10-22", + "ministryContact": "BOSCO ARA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "uuid": "1b620661-9563-4aa5-ac76-2dc4d0a4d04e", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false + }, + { + "uuid": "4c89620c-8c55-4a38-9350-73c208bec4ae", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true } ], "siteRegistry": true @@ -53210,10 +62190,21 @@ ], "participants": [ { - "uuid": "5674d032-3bb1-42ce-9975-9b170ccd4ee4", + "uuid": "abf19fbb-7e59-4699-9b19-b8b8950d27fe", "name": "SHELL CANADA PRODUCTS", - "endDate": "2016-01-25", - "startDate": "2022-10-21", + "endDate": "2020-09-08", + "startDate": "2022-10-17", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "uuid": "508b179c-66e0-4f59-b577-1f7ea2be844e", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2016-08-12", + "startDate": "2020-07-26", "notes": "", "roles": [ "ORGANIZATION" @@ -53221,141 +62212,129 @@ "siteRegistry": true }, { - "uuid": "e7fa529d-faea-4f43-bb9b-848ce11ef718", + "uuid": "f4df9897-e369-459d-b749-ea46c45105e9", "name": "IPSUM", - "endDate": "2023-03-20", - "startDate": "2019-12-27", + "endDate": "2017-08-20", + "startDate": "2022-03-29", "notes": "", "roles": [ "ORGANIZATION" ], "siteRegistry": false + }, + { + "uuid": "6da993ec-61ef-4594-aff8-bc1936ee516a", + "name": "AMET, DOLOR SIT", + "endDate": "2016-09-16", + "startDate": "2014-11-30", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true } ], - "suspectLandUses": [ + "documents": [ { - "uuid": "9025b3df-d699-4e76-9cd8-5a0290563985", - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-10-31 (described on Site Profile dated 2016-10-31)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" - }, + "uuid": "8db9430b-d848-4fdb-b090-bd2aebc6617a", + "siteRegistry": false, + "documentDate": "2017-01-27", + "receivedDate": "2018-11-19", + "uploadedDate": "2015-12-12", + "title": "Preliminary Site Investigation, Detailed Site Investigation and Remedial Plan for the Management Area adjacent to the Shell Site at 1503 West 41st Ave", + "participants": [ + { + "uuid": "4e914514-c526-453d-b3b3-9653edea9194", + "name": "IPSUM", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "d3ac02a1-887e-494e-b8dc-a06e013e6891", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": true, + "role": "AUTHOR" + } + ] + } + ], + "suspectLandUses": [ { - "uuid": "1c875d08-618a-480d-b04b-95550f4db1db", + "uuid": "88ee187a-75fd-4513-bc50-92bc0913bb59", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-06-06 (described on Site Profile dated 2018-06-06)", + "notes": "INSERTED FOR SITE PROFILE DATED 2020-12-24 (described on Site Profile dated 2020-12-24)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "uuid": "73aa30dc-c2b6-4e54-b70b-8a2cc3bb7c9d", + "uuid": "c37d4c13-0729-43df-90c2-eff66922abc4", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-06-21 (described on Site Profile dated 2015-06-21)", + "notes": "INSERTED FOR SITE PROFILE DATED 2022-02-19 (described on Site Profile dated 2022-02-19)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" - }, - { - "uuid": "4bfc1aac-795d-4803-94bf-9579176db37d", - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-01-22 (described on Site Profile dated 2017-01-22)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], "parcelDescriptions": [ { - "uuid": "4659c1aa-c6ac-466f-9cff-738f7611b899", + "uuid": "3e4ffbc8-6146-4ae5-b63c-6a5397f3ccbf", "siteRegistry": true, - "dateNoted": "2015-03-25", - "parcelID": "17207", - "crownLandUsePIN": "20452", - "crownLandFileNumber": "19630", - "landDescription": "LOT 2 OF LOT 4 BLOCK 4 DISTRICT LOT 1 PLAN 9013" + "dateNoted": "2023-10-13", + "parcelID": "15211", + "crownLandUsePIN": "18717", + "crownLandFileNumber": "15350", + "landDescription": "LOT 5 OF LOT 1 BLOCK 3 DISTRICT LOT 2 PLAN 3955" }, { - "uuid": "b4d6e3bc-cd53-4875-aaae-3307c4ea57d0", + "uuid": "84ce0914-30c7-40a3-bb3d-85d455965e03", "siteRegistry": true, - "dateNoted": "2016-11-27", - "parcelID": "17936", - "crownLandUsePIN": "20075", - "crownLandFileNumber": "20431", - "landDescription": "LOT 4 OF LOT 3 BLOCK 5 DISTRICT LOT 3 PLAN 8611" + "dateNoted": "2022-03-10", + "parcelID": "15654", + "crownLandUsePIN": "20271", + "crownLandFileNumber": "20073", + "landDescription": "LOT 3 OF LOT 3 BLOCK 5 DISTRICT LOT 5 PLAN 9744" }, { - "uuid": "96edde4b-a99f-44fa-8fa8-1ccd6f372240", + "uuid": "b175409b-5806-4d2d-852d-f2fec45e65c4", "siteRegistry": false, - "dateNoted": "2014-04-25", - "parcelID": "20475", - "crownLandUsePIN": "19256", - "crownLandFileNumber": "17340", - "landDescription": "LOT 5 OF LOT 3 BLOCK 5 DISTRICT LOT 4 PLAN 7344" - }, - { - "uuid": "d3a647f6-0110-4e36-a74e-185a4f8270d9", - "siteRegistry": true, - "dateNoted": "2017-06-27", - "parcelID": "18529", - "crownLandUsePIN": "16559", - "crownLandFileNumber": "19479", - "landDescription": "LOT 2 OF LOT 1 BLOCK 3 DISTRICT LOT 4 PLAN 4151" + "dateNoted": "2020-08-12", + "parcelID": "20990", + "crownLandUsePIN": "20909", + "crownLandFileNumber": "19151", + "landDescription": "LOT 3 OF LOT 5 BLOCK 4 DISTRICT LOT 3 PLAN 5585" } ], "siteDisclosures": [ { - "uuid": "3efb26fd-100f-43ae-baf8-ceb9e4d8e840", - "siteRegistry": true, - "dateReceived": "2022-05-03", - "dateCompleted": "2014-04-18", - "dateEntered": "2017-07-19", - "dateRegistrar": "2016-02-19", - "dateLocalAuthorityReceived": "2018-04-11", - "summary": "Amet quia iusto quis consequatur mollitia debitis.\nCumque doloribus dolor beatae.\nMinima at soluta quis voluptate.", - "informationUsed": "Doloribus nostrum neque ratione commodi repudiandae.\nSaepe veniam occaecati cum soluta nihil veniam excepturi cum.\nCulpa ab ipsum harum laudantium.", - "pastOrPresentOrders": "Molestiae a quasi minima libero.\nRepellat distinctio magni.\nSapiente consequatur asperiores natus deserunt architecto.", + "uuid": "7d29501c-c011-4c7e-8487-154f83a8962c", + "siteRegistry": false, + "dateReceived": "2017-08-28", + "dateCompleted": "2023-04-29", + "dateEntered": "2016-12-16", + "dateRegistrar": "2023-09-18", + "dateLocalAuthorityReceived": "2023-08-07", + "summary": "Eos autem animi est libero modi velit culpa.\nQuo odit odio sit odio.\nIusto harum inventore amet nesciunt debitis deserunt autem.", + "informationUsed": "Voluptatem fugit eum quaerat numquam facere voluptatibus nihil error.\nQuos pariatur quidem voluptatibus.\nSoluta voluptates facilis animi eos minima cumque nesciunt.", + "pastOrPresentOrders": "Fugit numquam asperiores iusto at dignissimos.", "commercialAndIndustrialPurposes": [ { - "uuid": "436cbf9e-7d70-4db6-b409-20cf2c6d6367", - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "uuid": "4598453d-e6dc-4bf4-bf1a-5e39ec1ae239", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { - "uuid": "f5b43b8d-ce75-4bb5-be63-a25230ece4fb", - "scheduleReference": "F2*", + "uuid": "ecb7922c-39b2-4935-a7cd-5882f4cc4b11", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { - "uuid": "6e39327e-6c08-4e87-babb-45eed7516089", - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false - }, - { - "uuid": "54ae3597-e3f7-43bf-8837-eaa1202398eb", - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false - } - ] - }, - { - "uuid": "929e6aca-d302-4a20-b479-a7a0b8543766", - "siteRegistry": false, - "dateReceived": "2023-08-19", - "dateCompleted": "2019-10-27", - "dateEntered": "2019-01-26", - "dateRegistrar": "2018-07-03", - "dateLocalAuthorityReceived": "2020-07-16", - "summary": "Alias iste natus mollitia pariatur maxime nihil vitae.\nVitae doloremque saepe dignissimos ab quod sequi officia.\nVoluptatibus possimus a doloribus.", - "informationUsed": "Quas pariatur repudiandae placeat commodi molestiae architecto ex eos sequi.\nOfficia quas laudantium dolorem.\nPossimus quos quidem accusantium distinctio ipsa.\nExcepturi dolorum deleniti quasi iusto cupiditate nobis repellat.\nSimilique labore vitae quibusdam optio minima.", - "pastOrPresentOrders": "Placeat possimus ex in quibusdam.", - "commercialAndIndustrialPurposes": [ - { - "uuid": "0f8a6ad0-175e-45c7-a8f1-3b946e502477", + "uuid": "70f7092d-cd55-4733-a652-bbdd9ddd8743", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { - "uuid": "17cabc4e-b22d-42d3-b56e-98c84ab83279", - "scheduleReference": "F1*", + "uuid": "60ad99f9-3824-4aae-85f0-867f777acc86", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true } @@ -53364,92 +62343,99 @@ ], "activityLog": [ { - "uuid": "534d66d9-865f-4801-9cf7-d3c9ed522d72", + "uuid": "a8511700-3cef-4912-b59a-c67dd37bf740", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "GISLASON SHANIYA", - "timestamp": "2019-01-27" + "user": "STARK ELVIE", + "timestamp": "2020-07-04" }, { - "uuid": "a8f70a81-14ba-4dd8-8d7e-29b18a6b7edc", - "siteRegistry": false, + "uuid": "6352a467-731f-47f3-b8ae-d9330dd5b5b8", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "KOEPP DESTIN", - "timestamp": "2015-10-30" + "user": "LEUSCHKE RAUL", + "timestamp": "2014-11-17" }, { - "uuid": "06e6e364-645b-4879-92cf-8954ef10c755", - "siteRegistry": true, + "uuid": "37497ec0-3a11-46b9-bf2d-efa83095420e", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "MRAZ ADELL", - "timestamp": "2019-10-18" + "user": "NIENOW PHOEBE", + "timestamp": "2016-08-24" }, { - "uuid": "80169a01-346c-4ab0-93e8-8b50893b9bc0", + "uuid": "f8d3b538-ed9c-45b5-bcd5-f74347a576e3", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "EBERT ISABELL", - "timestamp": "2014-01-13" + "user": "STOKES CLEO", + "timestamp": "2021-08-21" + }, + { + "uuid": "da56d714-2fb2-483a-af0f-bcfcecad2985", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "PAUCEK ALVERTA", + "timestamp": "2018-07-24" }, { - "uuid": "c8dfa6cd-07b6-4ba1-be45-c28ca1922c7e", + "uuid": "04a3ed9d-e648-4494-ab1b-cf8643f92a10", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "KEEBLER LETITIA", - "timestamp": "2022-09-20" + "user": "ARMSTRONG ELDON", + "timestamp": "2022-07-18" }, { - "uuid": "7064cec1-871a-4135-bcd4-79fe8fdb7a18", - "siteRegistry": true, + "uuid": "d178119b-b8bc-433d-9708-065a998f3c95", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "HAYES DEE", - "timestamp": "2020-07-15" + "user": "MURAZIK LAYNE", + "timestamp": "2022-02-08" }, { - "uuid": "fb04f288-2c6c-4b23-8e8b-f007591176e4", + "uuid": "4d4a60f7-f230-47f5-9a83-468bf0db1e18", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "VON HASKELL", - "timestamp": "2014-09-22" + "user": "GULGOWSKI FRANCESCA", + "timestamp": "2021-10-27" } ], "associatedSites": [ { - "uuid": "9bb04475-eba7-463a-a7af-b8fe9cc32e7f", - "dateNoted": "2021-09-02", + "uuid": "d8739485-0a4b-4b3c-b71d-1abb1fa76bb1", + "dateNoted": "2015-09-20", "notes": "", - "parcelID": "18596", - "siteID": "16986", + "parcelID": "20132", + "siteID": "19630", "siteRegistry": false } ] }, { - "uuid": "e8df3e23-5bb2-4a0c-826b-e8a0b660ee9c", - "siteID": 15676, - "address": "45614 Merl Shoal", - "latitude": 50.8547, - "longitude": -138.4433, - "lastUpdated": "2022-01-10", - "city": "West Crystelhaven", - "region": "Vancouver Island/Coast", - "victoriaFile": "26250-20/8575", + "uuid": "edba4442-dca3-4860-9135-0e4918f0ee1f", + "siteID": 16454, + "address": "66644 Jerde Forge", + "latitude": 58.9759, + "longitude": -125.0115, + "lastUpdated": "2019-04-28", + "city": "Ortizbury", + "region": " North Coast", + "victoriaFile": "26250-20/1356", "regionalFile": "N/A", "parcelIDs": [ - 7313557, - 7944740, - 7172609, - 2786347, - 387789 + 4282307, + 6030044, + 7739847, + 3521939, + 3466976 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "de5d3639-8804-4500-91e4-3653b13f8f18", - "createdAt": "2015-02-10", - "completed": "2023-03-27", - "initiated": "2020-11-11", - "ministryContact": "GERLACH WILTON", + "uuid": "6a0e50c6-1366-4e76-ac00-49313deac7a0", + "createdAt": "2019-10-27", + "completed": "2017-12-12", + "initiated": "2019-05-18", + "ministryContact": "KOCH LOGAN", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -53458,44 +62444,44 @@ ], "notationParticipants": [ { - "uuid": "096170c0-7126-459a-8062-34893ead89c2", + "uuid": "f9a8c86b-45a0-4276-98a3-d98140180025", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false }, { - "uuid": "4c274b58-730d-4ecc-8c9a-815454c23e8f", + "uuid": "356f7fc2-1cba-4da1-9b84-b5e9e4580c12", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true }, { - "uuid": "1daf7bef-ed35-43d8-ab20-beebdf2d3ccd", + "uuid": "f5bdf4fb-f71f-490b-a25f-e3b53d72f82f", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "649b2ba5-bed5-4fab-975a-862dd82c9e79", + "uuid": "078f4eeb-bcd7-4d94-836e-b41560932ead", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true }, { - "uuid": "3968008f-0026-4dd4-a4db-c249686bec98", + "uuid": "ebd2e994-44bc-46b1-8cc6-65daf00ee36b", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true } ], "siteRegistry": false }, { - "uuid": "6e3fd992-da40-4610-b48a-6d08863a50e8", - "createdAt": "2021-11-06", - "completed": "2019-12-20", - "initiated": "2013-11-08", - "ministryContact": "LANG GEOVANNI", + "uuid": "45d84103-a485-48f1-bec4-6e809540941e", + "createdAt": "2018-06-18", + "completed": "2020-11-12", + "initiated": "2015-07-03", + "ministryContact": "CROOKS TATUM", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -53504,78 +62490,44 @@ ], "notationParticipants": [ { - "uuid": "d15f0238-432a-418f-8186-686c339a7aa9", + "uuid": "a478d5b3-ab95-438e-bb85-a905fa119335", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "ed3154a9-b16b-4639-acc7-ab8058f5e0b6", + "uuid": "adfdd4e2-8764-41d1-9ee0-b59d4dfa2851", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "uuid": "cbdf0495-f166-4a2f-ad7a-5c4571812205", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "35f54147-f764-47a9-8bf6-ff0ef4c421e8", - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - } - ], - "siteRegistry": true - }, - { - "uuid": "58de3911-3521-4395-a36b-d7f8ac84f02c", - "createdAt": "2022-08-16", - "completed": "2017-08-05", - "initiated": "2014-12-29", - "ministryContact": "HOEGER VELDA", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "uuid": "34a8028b-3bb2-4596-a2e6-9b9b183e07c4", + "uuid": "2065c155-f797-47e7-a25c-0e692505c236", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false }, { - "uuid": "d4f6b76b-5317-4a3d-a9af-be342cf5b6e1", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "uuid": "94ac521e-8fdb-407f-b49c-baa3370adfbd", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": true }, { - "uuid": "10d28965-f5dd-478f-8e58-37d44b82d209", + "uuid": "d036947f-bbb7-4c35-827c-b3e15d42b9fc", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false - }, - { - "uuid": "7f6b9bd6-88be-42a2-a974-7e5ba397a871", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true } ], "siteRegistry": true }, { - "uuid": "85ae2d60-19e8-41cb-85a0-b3d2ca55c8a3", - "createdAt": "2017-07-22", - "completed": "2019-10-24", - "initiated": "2023-10-05", - "ministryContact": "BOGAN MICHEAL", + "uuid": "a190d0aa-295c-434d-a56e-35e329de2b8d", + "createdAt": "2014-03-20", + "completed": "2022-08-25", + "initiated": "2017-04-11", + "ministryContact": "TRANTOW FOREST", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -53584,61 +62536,44 @@ ], "notationParticipants": [ { - "uuid": "cb8051c1-7c3a-4eb0-9d4b-b228c3bd62ce", + "uuid": "e4177717-9137-439a-afbe-a459515988bc", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "166d28ab-67de-4e41-bbe4-c63d5a15df78", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "uuid": "bc2725b3-bf8a-4be4-87d5-743e4bd1f58e", + "uuid": "510c1119-745f-4aa9-b146-6d97bb655966", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true + "role": "REQUESTED BY", + "siteRegistry": false }, { - "uuid": "3d67bcbc-b3b9-4a12-bff5-4d488ee0d017", - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true + "uuid": "dc4e173c-271a-4350-af02-3add8bbdff61", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true } ], "participants": [ { - "uuid": "807b251a-6127-4089-984f-e9f30964e11e", + "uuid": "d8007e0e-47c0-40d1-b9a9-ebde7335210b", "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2022-08-13", - "startDate": "2015-12-26", + "endDate": "2015-07-20", + "startDate": "2018-06-09", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": true - }, - { - "uuid": "8d0c3f12-ee56-46e9-90fe-00a43d883d05", - "name": "IPSUM", - "endDate": "2018-11-23", - "startDate": "2014-10-06", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "7da7da4a-d1da-4bb6-9f1d-050498d5f29b", + "uuid": "48925418-5ebd-4aa2-8551-5c6c05afcd89", "name": "AMET, DOLOR SIT", - "endDate": "2013-10-24", - "startDate": "2017-01-28", + "endDate": "2014-08-07", + "startDate": "2021-09-23", "notes": "", "roles": [ "ORGANIZATION" @@ -53646,142 +62581,170 @@ "siteRegistry": false }, { - "uuid": "79b87406-0f39-43d0-9db3-27a305370f0a", + "uuid": "f65fa2d2-a36d-4800-810e-54e5ba048ef8", "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2014-09-21", - "startDate": "2018-07-11", + "endDate": "2016-11-22", + "startDate": "2021-01-20", "notes": "", "roles": [ "ORGANIZATION" ], "siteRegistry": true + } + ], + "documents": [ + { + "uuid": "4dac9392-03ac-4954-ad3c-6854ef1b6030", + "siteRegistry": true, + "documentDate": "2021-07-03", + "receivedDate": "2015-11-21", + "uploadedDate": "2015-02-24", + "title": "Summary of Site Conditions, 1537 W 41st Avenue, Vancouver", + "participants": [ + { + "uuid": "4128d429-330c-4128-af8e-c62324068b68", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "e08b448c-567f-4548-a38f-fe721ff70144", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "d0a13c8e-c574-4185-94ef-a968e0cdfc2e", + "name": "AMET, DOLOR SIT", + "siteRegistry": true, + "role": "AUTHOR" + } + ] }, { - "uuid": "7a3c9670-f77a-408a-aed0-c75f95f7bbd8", - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2015-10-29", - "startDate": "2015-10-16", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": false + "uuid": "4bbc34af-60a5-4a20-ada2-629a8f825227", + "siteRegistry": true, + "documentDate": "2020-10-22", + "receivedDate": "2016-03-03", + "uploadedDate": "2019-05-05", + "title": "Preliminary Site Investigation, Detailed Site Investigation and Remedial Plan for the Management Area adjacent to the Shell Site at 1503 West 41st Ave", + "participants": [ + { + "uuid": "7a6259cc-97fc-4a14-b601-41060412ef77", + "name": "IPSUM", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "85bfcf9d-df1f-47ff-9898-f615e02b4be9", + "name": "IPSUM", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "b674b967-6dc9-4ca7-a6e7-d2938ed2770b", + "name": "IPSUM", + "siteRegistry": false, + "role": "AUTHOR" + } + ] } ], "suspectLandUses": [ { - "uuid": "bf9b852c-d7be-4165-bc22-45275094e933", + "uuid": "931d61a7-008e-4a69-9ccb-1acbb2615176", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-11-15 (described on Site Profile dated 2016-11-15)", + "notes": "INSERTED FOR SITE PROFILE DATED 2021-12-23 (described on Site Profile dated 2021-12-23)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "uuid": "3ddeedc5-8483-48e9-914a-469c3244d834", - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-01-17 (described on Site Profile dated 2017-01-17)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" - }, - { - "uuid": "e281e978-bfbf-4cfc-815b-96d6414742c0", + "uuid": "5aef6bdf-867d-4ea5-b33c-50d79a4eb2d6", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-08-28 (described on Site Profile dated 2021-08-28)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "notes": "INSERTED FOR SITE PROFILE DATED 2014-09-20 (described on Site Profile dated 2014-09-20)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "uuid": "b83a1e74-8d5f-490b-ae15-6ebfcba0bf4f", - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-11-08 (described on Site Profile dated 2015-11-08)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "uuid": "8040afe2-c96b-422d-81a3-2290e8b5911c", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2016-10-12 (described on Site Profile dated 2016-10-12)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "uuid": "69dfd68b-13b7-43b7-9764-24c6d46efaa5", + "uuid": "3124a113-67d7-47b2-b45f-68c8ece308d7", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2023-06-02 (described on Site Profile dated 2023-06-02)", + "notes": "INSERTED FOR SITE PROFILE DATED 2020-06-24 (described on Site Profile dated 2020-06-24)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], "parcelDescriptions": [ { - "uuid": "9123837b-b383-4d66-a2f3-79fdf3f2d9c6", - "siteRegistry": true, - "dateNoted": "2019-03-18", - "parcelID": "18045", - "crownLandUsePIN": "19558", - "crownLandFileNumber": "19481", - "landDescription": "LOT 1 OF LOT 4 BLOCK 1 DISTRICT LOT 5 PLAN 5741" - }, - { - "uuid": "7c7b48e2-c23f-4669-ac18-a680dca4a7d9", - "siteRegistry": true, - "dateNoted": "2014-04-26", - "parcelID": "16415", - "crownLandUsePIN": "19600", - "crownLandFileNumber": "16004", - "landDescription": "LOT 3 OF LOT 3 BLOCK 4 DISTRICT LOT 5 PLAN 9653" - }, - { - "uuid": "e6a5be2a-99cd-45f0-8782-4a6f799a74a9", + "uuid": "d2f8a656-d83f-4e64-9e85-0e465206947a", "siteRegistry": true, - "dateNoted": "2019-03-04", - "parcelID": "17551", - "crownLandUsePIN": "17902", - "crownLandFileNumber": "19429", - "landDescription": "LOT 5 OF LOT 2 BLOCK 4 DISTRICT LOT 4 PLAN 3298" - }, - { - "uuid": "49175eb3-3a16-408e-9ea5-2f1dc76d336b", - "siteRegistry": true, - "dateNoted": "2020-06-07", - "parcelID": "17799", - "crownLandUsePIN": "17851", - "crownLandFileNumber": "20881", - "landDescription": "LOT 5 OF LOT 3 BLOCK 2 DISTRICT LOT 4 PLAN 5732" + "dateNoted": "2018-12-07", + "parcelID": "17522", + "crownLandUsePIN": "20637", + "crownLandFileNumber": "15333", + "landDescription": "LOT 2 OF LOT 2 BLOCK 1 DISTRICT LOT 1 PLAN 6249" }, { - "uuid": "e921f492-665d-4ba0-bf8d-e93d51b362bb", + "uuid": "832a6817-b17f-4537-8e6d-c72cbbcbb610", "siteRegistry": true, - "dateNoted": "2017-03-16", - "parcelID": "16831", - "crownLandUsePIN": "16671", - "crownLandFileNumber": "17452", - "landDescription": "LOT 2 OF LOT 3 BLOCK 5 DISTRICT LOT 1 PLAN 8857" + "dateNoted": "2018-03-21", + "parcelID": "20438", + "crownLandUsePIN": "19907", + "crownLandFileNumber": "20360", + "landDescription": "LOT 2 OF LOT 3 BLOCK 4 DISTRICT LOT 2 PLAN 7489" } ], "siteDisclosures": [ { - "uuid": "8c633e28-d6bb-4167-b76e-f8bb361ef0fc", + "uuid": "0043342b-6c8c-480e-84c5-417fe2c8e813", "siteRegistry": true, - "dateReceived": "2015-02-10", - "dateCompleted": "2023-08-02", - "dateEntered": "2018-03-11", - "dateRegistrar": "2018-05-09", - "dateLocalAuthorityReceived": "2022-12-26", - "summary": "Consequuntur magnam totam odit ducimus aliquid.\nMaxime eveniet necessitatibus a laudantium facilis provident corporis beatae corrupti.\nSaepe quisquam ut delectus error magnam ipsum architecto sed.", - "informationUsed": "Vero ea nam consectetur fugiat molestias voluptatum laudantium.\nDolore id nulla tempora eos nostrum.\nQui eligendi blanditiis.\nUt ullam consequuntur exercitationem aperiam necessitatibus.", - "pastOrPresentOrders": "Quas ex alias dicta.\nQuae quas ipsa quis iusto ut ipsam quibusdam alias quod.", + "dateReceived": "2016-09-25", + "dateCompleted": "2023-01-19", + "dateEntered": "2016-04-11", + "dateRegistrar": "2019-06-30", + "dateLocalAuthorityReceived": "2022-09-26", + "summary": "Itaque est deserunt beatae et aliquam libero.\nEarum dolorum a facere est.\nDolores repellat illum sequi ea in maiores.", + "informationUsed": "Accusamus magni eveniet sed molestias nobis repellendus neque dignissimos a.\nUllam rem blanditiis culpa deleniti doloribus dolorem mollitia labore.\nQuaerat velit magni ab voluptate quo culpa delectus perferendis rem.", + "pastOrPresentOrders": "Quo tempora eos fugit.\nCupiditate odio nisi.\nIllum cum blanditiis autem dolore neque quis veritatis sequi.", "commercialAndIndustrialPurposes": [ { - "uuid": "0c4b3f4c-e8cc-4928-9bbc-a71bec89ed0e", - "scheduleReference": "F2*", + "uuid": "caa9ade9-2d88-43f0-9058-784a7e3234b5", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "39d0ce1e-e6a2-4ce9-ad58-cdae0ea2fcea", - "scheduleReference": "F2*", + "uuid": "7690ef85-4dd1-4fd9-8858-95babad48cd0", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false - }, + } + ] + }, + { + "uuid": "fa0025be-b27e-46ac-8680-5085233bf0a9", + "siteRegistry": true, + "dateReceived": "2018-01-06", + "dateCompleted": "2013-11-30", + "dateEntered": "2014-01-22", + "dateRegistrar": "2019-05-15", + "dateLocalAuthorityReceived": "2017-01-18", + "summary": "Cupiditate nemo modi quam incidunt dolorem impedit ea.", + "informationUsed": "Nam accusantium eius iure perspiciatis nam aperiam cumque vel.\nIste enim tempora quidem numquam.\nVero saepe dolor doloremque voluptatem error molestias praesentium impedit minima.\nOfficiis quia quibusdam accusamus voluptates ut sit asperiores.", + "pastOrPresentOrders": "Animi unde culpa dicta maiores quo nobis quos aliquid.\nOptio eos magni.\nPorro veritatis dolore.", + "commercialAndIndustrialPurposes": [ { - "uuid": "d77a4285-9e1c-4579-b3a2-534c9f5d328e", - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "uuid": "da1c23f3-4398-45e4-8113-6312a6e0652b", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, { - "uuid": "e30d72ee-170f-4a6a-bd1e-4540fbf7b8af", - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "uuid": "1e82cb0c-966e-4b1f-8852-1ed25a2a0b35", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false } ] @@ -53789,141 +62752,94 @@ ], "activityLog": [ { - "uuid": "85a5822e-0845-4633-9ca8-207c9b3cd8ad", + "uuid": "b21befa0-f166-4539-afbd-4fbe21a0ff52", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "RITCHIE FRED", - "timestamp": "2023-02-15" + "user": "HALEY OLGA", + "timestamp": "2023-10-06" }, { - "uuid": "8f3a84fc-e9f6-410d-b03d-8ab056da56fb", + "uuid": "6e311da4-a9aa-4ddd-af8d-fc7eb5fefd94", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "BERNHARD JASMIN", - "timestamp": "2016-02-03" + "user": "BAUCH ORLAND", + "timestamp": "2018-08-15" }, { - "uuid": "5604d64d-8dec-451c-a28e-a70995fd2f57", + "uuid": "f1216e77-d46f-4a3e-b6df-dae253ee1733", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "RENNER MARYSE", - "timestamp": "2014-12-04" + "user": "LEFFLER JOANNY", + "timestamp": "2020-08-20" }, { - "uuid": "aa69d41a-d192-4805-9999-40c74904fdd8", - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "SCHMELER ADAM", - "timestamp": "2018-12-01" - }, - { - "uuid": "f4e7df94-3e00-4219-bc2d-12bd732bcdd4", + "uuid": "e684103f-e735-4c05-ac0d-66a39d61982a", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "HYATT TATUM", - "timestamp": "2015-03-27" - }, - { - "uuid": "4f328d2c-6bc2-49da-8b58-66530c1aed3d", - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "GIBSON KRYSTAL", - "timestamp": "2015-01-23" - }, - { - "uuid": "3140cfec-e099-43db-a8d7-d35cbd9ea31d", - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "KIHN XANDER", - "timestamp": "2014-09-15" + "user": "KRAJCIK BRIONNA", + "timestamp": "2022-10-13" }, { - "uuid": "6c44285e-ff4e-4285-9558-eec390a61d18", + "uuid": "c9325c88-fef6-4d77-8530-69b92a5269d4", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "ROBEL THAD", - "timestamp": "2022-11-23" + "user": "PADBERG KEON", + "timestamp": "2019-07-16" } ], "associatedSites": [ { - "uuid": "413a78f3-f31f-4673-9c9d-93ac8bd95662", - "dateNoted": "2013-11-06", + "uuid": "37ca183b-a310-46ba-9eaf-928bf2be6c2e", + "dateNoted": "2016-06-29", "notes": "", - "parcelID": "15372", - "siteID": "15580", + "parcelID": "16950", + "siteID": "17664", "siteRegistry": false }, { - "uuid": "d7906c9b-d36d-453f-aa2e-161c006b3e73", - "dateNoted": "2018-11-06", + "uuid": "6b564e67-5e37-4f5b-89d7-1a56bc2c6da5", + "dateNoted": "2021-08-06", "notes": "", - "parcelID": "18422", - "siteID": "16202", - "siteRegistry": true + "parcelID": "20500", + "siteID": "15253", + "siteRegistry": false + }, + { + "uuid": "783005e9-a8ea-425c-a404-62bdd768a663", + "dateNoted": "2020-06-01", + "notes": "", + "parcelID": "16356", + "siteID": "16222", + "siteRegistry": false } ] }, { - "uuid": "e05f18af-11a4-4e76-b08d-b3ab8dfc2cf0", - "siteID": 17920, - "address": "18357 Lacey Shoal", - "latitude": 54.8404, - "longitude": -137.4287, - "lastUpdated": "2019-02-16", - "city": "North Aronton", - "region": "Vancouver Island/Coast", - "victoriaFile": "26250-20/4071", + "uuid": "bfadf4b8-27dd-43f2-9d4b-36a05fa8dc10", + "siteID": 18465, + "address": "70525 Schinner Haven", + "latitude": 51.4092, + "longitude": -135.8374, + "lastUpdated": "2015-12-08", + "city": "Darianbury", + "region": "Mainland/Southwest", + "victoriaFile": "26250-20/13076", "regionalFile": "N/A", "parcelIDs": [ - 2057899, - 4413079, - 9686094, - 1110172, - 105352 + 969798, + 5423667, + 1439220, + 7462019, + 9199046 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "88e8cf40-5ef9-40fd-bd5d-ac3d7ecc6dbd", - "createdAt": "2016-09-26", - "completed": "2017-12-27", - "initiated": "2021-07-15", - "ministryContact": "OKUNEVA TALIA", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "uuid": "54f797dd-de55-48a0-a1a2-910e1fefb1da", - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "uuid": "2bd33143-43ff-4e07-a2cc-fb750b3cb5d3", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "uuid": "602f3917-fc66-4bb7-be86-1d37ca0ec0a7", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - } - ], - "siteRegistry": false - }, - { - "uuid": "5b14d597-17a8-4429-9847-cdc17fa7ea7f", - "createdAt": "2015-03-18", - "completed": "2022-11-05", - "initiated": "2017-12-23", - "ministryContact": "HAMILL ADRAIN", + "uuid": "a48364b5-cb9c-4032-bd23-886c99ddd2cf", + "createdAt": "2015-12-09", + "completed": "2018-05-14", + "initiated": "2019-06-21", + "ministryContact": "MILLER-SMITH KAIA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -53932,44 +62848,38 @@ ], "notationParticipants": [ { - "uuid": "969b3eb8-cbc3-474c-aa29-0561a4523548", + "uuid": "95bac10b-6104-4606-acab-94fb37b5b8be", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "uuid": "8bb16235-2319-4ef4-95f7-da11db8eeae3", - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false }, { - "uuid": "14677759-93dc-4aec-88f6-3029940c50da", + "uuid": "04c03a22-d7b6-4925-ba57-61fe3ae72db7", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "d0598f64-af01-4515-8057-989021fec4c9", + "uuid": "a949e84d-6395-4bf1-aefc-3a5bd453d182", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false }, { - "uuid": "823830b9-26a9-4c46-b210-e75f2eefe7f7", - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "uuid": "b9fb7306-ef8b-42aa-9fa9-43a84f3f28e3", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", "siteRegistry": false } ], "siteRegistry": true }, { - "uuid": "a2dfeef4-0de7-427d-8f90-8c4c6e835037", - "createdAt": "2021-10-27", - "completed": "2016-07-01", - "initiated": "2021-03-08", - "ministryContact": "BUCKRIDGE MARYSE", + "uuid": "3744c205-c911-4e8d-86b0-5b2578aca610", + "createdAt": "2018-06-22", + "completed": "2015-01-14", + "initiated": "2023-08-28", + "ministryContact": "STRACKE-JONES KYLA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -53978,72 +62888,72 @@ ], "notationParticipants": [ { - "uuid": "314d1b9a-781e-42a8-b97e-5135a5f8a8f4", + "uuid": "fc3a4062-b494-47c9-b17e-a12b10f62148", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false }, { - "uuid": "b34c501f-a10b-48fc-afeb-6f4ca209a30f", + "uuid": "aa451c8e-9025-47a1-9cfb-636a32e46325", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "613a7d71-2fa6-4731-864d-c903d3eafc00", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "uuid": "03c31606-5cb4-4075-af1a-6f627ec1267a", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": true - } - ], - "siteRegistry": true - }, - { - "uuid": "66c9c0b1-7c0e-43de-9e8b-eccf72e07e7e", - "createdAt": "2018-01-01", - "completed": "2019-10-26", - "initiated": "2021-02-20", - "ministryContact": "HALVORSON WINONA", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "uuid": "7ef52ab4-d397-46f7-8bfa-cefdb83544d2", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false }, { - "uuid": "b2349f51-4b0d-4172-bb85-f4c639adee3e", + "uuid": "db8d2ee3-7b17-40d3-8861-042b94a8d470", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false + "role": "SUBMITTED BY", + "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false } ], "participants": [ { - "uuid": "d362cabc-81fa-4e8f-8912-1da5fedb93c7", + "uuid": "ebbaa0ac-bf8a-4b3e-b621-cc022fca447e", "name": "AMET, DOLOR SIT", - "endDate": "2021-10-20", - "startDate": "2018-06-05", + "endDate": "2016-02-26", + "startDate": "2013-11-18", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "uuid": "7d1e29bc-6571-46a0-a043-be42fb971167", + "name": "IPSUM", + "endDate": "2017-01-15", + "startDate": "2019-02-22", "notes": "", "roles": [ "ORGANIZATION" ], + "siteRegistry": false + }, + { + "uuid": "656adaba-c83b-474d-bb04-eae5135d7c45", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2016-04-15", + "startDate": "2015-05-17", + "notes": "", + "roles": [ + "EMPLOYEE" + ], "siteRegistry": true }, { - "uuid": "f0b1b605-d2a6-4a69-bde0-c02f038109fe", - "name": "SHELL CANADA PRODUCTS", - "endDate": "2018-03-14", - "startDate": "2020-05-28", + "uuid": "0cd33217-0635-4e5e-a2ae-b49c2fd5b2c1", + "name": "IPSUM", + "endDate": "2022-09-30", + "startDate": "2019-04-28", "notes": "", "roles": [ "ORGANIZATION" @@ -54051,10 +62961,10 @@ "siteRegistry": true }, { - "uuid": "80abdbe7-8ceb-483e-9aa1-ceb1b6594925", + "uuid": "ee023f8b-c1a7-4fda-b8d9-42de3944a2a9", "name": "SHELL CANADA PRODUCTS", - "endDate": "2022-08-29", - "startDate": "2020-05-14", + "endDate": "2018-04-21", + "startDate": "2016-03-11", "notes": "", "roles": [ "EMPLOYEE" @@ -54062,171 +62972,262 @@ "siteRegistry": false } ], + "documents": [ + { + "uuid": "7f419d92-b2e0-4e70-8829-9c98802ea1c4", + "siteRegistry": false, + "documentDate": "2018-05-03", + "receivedDate": "2018-04-13", + "uploadedDate": "2013-10-23", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "9f71c93d-57d9-4f31-858e-147ed8bd0039", + "name": "IPSUM", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "61992198-59a1-424d-8210-3a673301037d", + "name": "IPSUM", + "siteRegistry": true, + "role": "AUTHOR" + } + ] + } + ], "suspectLandUses": [ { - "uuid": "32544481-7e5b-4aac-80cb-1acbdaba3634", + "uuid": "076e820b-b684-495b-afab-d54b50d94527", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2016-02-14 (described on Site Profile dated 2016-02-14)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "uuid": "a76a87a4-aaad-4919-8674-5a8cd9ea4f2a", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2023-03-19 (described on Site Profile dated 2023-03-19)", + "notes": "INSERTED FOR SITE PROFILE DATED 2017-05-01 (described on Site Profile dated 2017-05-01)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "uuid": "c3a44cca-db31-4243-9fa5-1d9ac0c9411b", + "uuid": "5256d5c1-8b12-447f-902a-5de12d14f53e", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2023-07-24 (described on Site Profile dated 2023-07-24)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "uuid": "d5c7a8c3-f43d-4d6c-9486-9695dd5a52cb", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-05-30 (described on Site Profile dated 2015-05-30)", + "notes": "INSERTED FOR SITE PROFILE DATED 2023-04-03 (described on Site Profile dated 2023-04-03)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "uuid": "88271d34-3ffd-4198-8d4d-5f7b630b92d7", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2014-02-16 (described on Site Profile dated 2014-02-16)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], "parcelDescriptions": [ { - "uuid": "b28662ef-1b6f-427a-9f1a-bf0eb888d56c", + "uuid": "cad44cfe-a842-44ac-a2ab-1096a4784789", "siteRegistry": true, - "dateNoted": "2015-07-14", - "parcelID": "20841", - "crownLandUsePIN": "18875", - "crownLandFileNumber": "17184", - "landDescription": "LOT 4 OF LOT 5 BLOCK 3 DISTRICT LOT 1 PLAN 3582" + "dateNoted": "2021-10-09", + "parcelID": "19829", + "crownLandUsePIN": "20069", + "crownLandFileNumber": "18966", + "landDescription": "LOT 2 OF LOT 2 BLOCK 5 DISTRICT LOT 5 PLAN 7065" }, { - "uuid": "80bbf0d6-46be-4bb0-b0da-8162ebe16f8a", - "siteRegistry": true, - "dateNoted": "2022-01-03", - "parcelID": "17055", - "crownLandUsePIN": "20236", - "crownLandFileNumber": "15939", - "landDescription": "LOT 1 OF LOT 4 BLOCK 3 DISTRICT LOT 5 PLAN 3728" + "uuid": "2b545278-0f7f-47de-b090-15f92e9704c3", + "siteRegistry": false, + "dateNoted": "2014-01-12", + "parcelID": "17002", + "crownLandUsePIN": "20309", + "crownLandFileNumber": "15197", + "landDescription": "LOT 4 OF LOT 3 BLOCK 1 DISTRICT LOT 4 PLAN 8895" + }, + { + "uuid": "768990be-656f-42ea-be44-ff3ebeaed2fb", + "siteRegistry": false, + "dateNoted": "2023-03-13", + "parcelID": "19168", + "crownLandUsePIN": "17543", + "crownLandFileNumber": "15333", + "landDescription": "LOT 5 OF LOT 5 BLOCK 2 DISTRICT LOT 5 PLAN 4026" } ], "siteDisclosures": [ { - "uuid": "28205f82-5e3a-4ff7-bde5-8d3ce150acfe", - "siteRegistry": false, - "dateReceived": "2017-10-16", - "dateCompleted": "2018-05-13", - "dateEntered": "2019-03-12", - "dateRegistrar": "2016-08-01", - "dateLocalAuthorityReceived": "2014-06-11", - "summary": "Soluta ea ut inventore magni quibusdam recusandae et saepe distinctio.", - "informationUsed": "Eum distinctio modi sapiente iste reprehenderit aut fugiat.\nDolores dolores eveniet voluptate consequuntur.\nFugit minus possimus reprehenderit nemo.\nExercitationem doloribus necessitatibus delectus eum fugit maiores totam.\nDucimus quod reprehenderit atque voluptatibus nobis delectus voluptas earum velit.", - "pastOrPresentOrders": "Cumque minus rerum hic maiores saepe placeat quasi a dignissimos.\nLaudantium totam quae deserunt eveniet repudiandae.\nSint eaque quis.", + "uuid": "49de2ab9-c65b-48ae-b1c3-e611763b94dc", + "siteRegistry": true, + "dateReceived": "2019-07-21", + "dateCompleted": "2014-09-12", + "dateEntered": "2015-11-21", + "dateRegistrar": "2020-12-25", + "dateLocalAuthorityReceived": "2021-10-16", + "summary": "Aperiam dolore eligendi et facere est autem placeat illum.", + "informationUsed": "Provident delectus expedita aspernatur necessitatibus earum saepe ab commodi.\nIste doloribus architecto.\nRem quisquam cum delectus possimus illo sed nesciunt dolorum omnis.\nIpsam alias inventore facilis molestias exercitationem officia accusamus molestiae.\nVeritatis natus quidem molestias voluptatem.", + "pastOrPresentOrders": "Harum veniam sapiente et.", "commercialAndIndustrialPurposes": [ { - "uuid": "ad4f2e97-1dd5-426e-971a-3ca0d6195f3f", + "uuid": "e10e3537-2761-474c-ba1f-128ac2d8ca78", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "uuid": "87c0dc21-79c3-45c9-81fe-19c1bfed4b03", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true + } + ] + }, + { + "uuid": "0170a61b-4bc4-4f0e-ae3b-54ba07fbecbb", + "siteRegistry": false, + "dateReceived": "2018-01-27", + "dateCompleted": "2019-01-06", + "dateEntered": "2023-04-22", + "dateRegistrar": "2023-03-10", + "dateLocalAuthorityReceived": "2021-12-04", + "summary": "Sed veritatis iste velit quas voluptate voluptatem repudiandae corrupti.\nRem cupiditate maxime placeat dolorem magnam blanditiis.\nVoluptatum ipsa nisi ratione tempore.", + "informationUsed": "Quibusdam sed animi.\nNecessitatibus aut ipsum iste.\nFacere unde eaque eum laudantium quae pariatur eligendi.", + "pastOrPresentOrders": "Minima quis rem iusto perferendis repudiandae est.", + "commercialAndIndustrialPurposes": [ + { + "uuid": "fcc67060-e148-4b2f-9d6c-2e8161f98dde", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true }, { - "uuid": "007068d6-40ad-4d95-a1d4-9059162cbce0", + "uuid": "e6f01af9-99e6-4071-a2c7-6a0fa8f439ef", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false + "siteRegistry": true } ] } ], "activityLog": [ { - "uuid": "52099ca2-c8d7-45cb-b423-1acbf9d7ea53", + "uuid": "bd9869e9-844a-42ea-83c8-4a1ee29e7f46", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "WINDLER NELS", + "timestamp": "2015-03-18" + }, + { + "uuid": "da37bf90-f2e9-4aea-a11d-0c1b48b172b0", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "MCLAUGHLIN ALBERTHA", - "timestamp": "2016-08-08" + "user": "RUECKER SETH", + "timestamp": "2019-06-14" }, { - "uuid": "c27267c0-f4b0-4c89-a7f7-fa179c0cacaf", - "siteRegistry": true, + "uuid": "859a5387-6bd4-454b-b4f0-5457a05dba77", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "PREDOVIC CARLEY", - "timestamp": "2018-08-22" + "user": "CASPER DERICK", + "timestamp": "2014-12-02" }, { - "uuid": "d0447093-e235-422b-9a04-60764f5a439d", + "uuid": "9d58278d-4bf7-4b05-8537-f31518cab81e", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "BERNHARD SKYLA", - "timestamp": "2014-11-12" + "user": "BROWN JAN", + "timestamp": "2017-11-03" }, { - "uuid": "8c8610a5-a0e0-4ee1-8e4a-27f352fac6ca", + "uuid": "f51727d2-d943-4f30-8aa8-9d3afd90f6fd", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "ANKUNDING STANTON", - "timestamp": "2022-05-12" + "user": "OKUNEVA BRIDGETTE", + "timestamp": "2016-09-12" + }, + { + "uuid": "a3906593-1062-4a9c-b337-b18ad47ec78b", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "HETTINGER NETTIE", + "timestamp": "2016-05-10" }, { - "uuid": "821f080f-6959-4ed4-8b3c-f7ad5e6d158f", + "uuid": "062cd85a-8651-477c-88de-02cb65068abb", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "O'CONNER JAMIE", - "timestamp": "2016-06-05" + "user": "SCHOEN ABBY", + "timestamp": "2021-10-12" }, { - "uuid": "8af21c25-e32f-425d-8f30-616180286bee", + "uuid": "79f21644-e1be-45bd-83fd-5885f7c23e41", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "DICKENS CORENE", - "timestamp": "2021-04-30" + "user": "UPTON ADOLPH", + "timestamp": "2019-09-27" }, { - "uuid": "4dc1525d-1422-4f8d-808f-b617910d6d7c", + "uuid": "cd67411f-3845-4e70-ad2b-618dfe322b07", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "LUEILWITZ-BERNHARD JOEY", - "timestamp": "2020-10-16" + "user": "MACEJKOVIC JAKE", + "timestamp": "2017-01-31" }, { - "uuid": "00d4cccd-11d8-443d-8697-e92d2e7099a2", - "siteRegistry": false, + "uuid": "3f3cc365-29ef-4795-9d91-2d39ce0461bc", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "REMPEL ISAI", - "timestamp": "2014-08-21" + "user": "NICOLAS LOREN", + "timestamp": "2015-04-13" } ], "associatedSites": [ { - "uuid": "d6995f36-015f-4820-926e-372b6714c03b", - "dateNoted": "2015-06-12", + "uuid": "02ac547f-0e81-462b-9fb1-16a93a48e27c", + "dateNoted": "2020-02-29", "notes": "", - "parcelID": "15294", - "siteID": "16186", - "siteRegistry": false + "parcelID": "17823", + "siteID": "19762", + "siteRegistry": true }, { - "uuid": "f6ba9477-5965-43a3-9e6d-aafdbb164989", - "dateNoted": "2015-11-02", + "uuid": "6e557129-0470-4877-9a22-dc0b7ef52295", + "dateNoted": "2022-10-11", "notes": "", - "parcelID": "16711", - "siteID": "18893", - "siteRegistry": true + "parcelID": "20204", + "siteID": "18080", + "siteRegistry": false } ] }, { - "uuid": "9f5b4aec-5200-4432-8da5-d79592b0fa98", - "siteID": 17676, - "address": "38973 Hayes Circles", - "latitude": 55.8281, - "longitude": -123.6032, - "lastUpdated": "2021-09-16", - "city": "West Gertrude", - "region": "Kootenay", - "victoriaFile": "26250-20/6044", + "uuid": "060427c0-5834-441a-bb76-d02668cfb2be", + "siteID": 18262, + "address": "9461 Upton Flat", + "latitude": 56.5761, + "longitude": -130.5253, + "lastUpdated": "2022-09-07", + "city": "West Baylee", + "region": "Mainland/Southwest", + "victoriaFile": "26250-20/3847", "regionalFile": "N/A", "parcelIDs": [ - 2136546, - 5443638, - 3826950, - 6627145, - 3443907 + 7606817, + 6837795, + 6946943, + 3106025, + 1819395 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "641ac7bc-236d-4926-9047-f5f50c71b6f8", - "createdAt": "2018-10-25", - "completed": "2018-10-11", - "initiated": "2019-09-19", - "ministryContact": "HERMAN LISETTE", + "uuid": "982ccae7-57d3-441d-a98f-7ab070f1e012", + "createdAt": "2016-04-29", + "completed": "2019-10-29", + "initiated": "2022-06-07", + "ministryContact": "LEDNER BRODY", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -54235,19 +63236,19 @@ ], "notationParticipants": [ { - "uuid": "cc045465-d2e6-4130-a25b-a8ef5a27deb3", + "uuid": "f49b07bb-d1e7-4fd2-8b28-01b774f70ccc", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false }, { - "uuid": "c8e49917-97c4-4265-b80f-aee0ded40c4f", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true + "uuid": "8c356f61-07dd-4ea7-8793-c54ba2454da6", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false }, { - "uuid": "6e69321f-2357-47df-b378-382751668d40", + "uuid": "837b1584-f42a-49b2-a5d3-57235f2fd3be", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true @@ -54256,11 +63257,11 @@ "siteRegistry": true }, { - "uuid": "6dd17e13-5472-4602-bf64-7117f698806b", - "createdAt": "2018-11-16", - "completed": "2020-10-20", - "initiated": "2022-10-15", - "ministryContact": "KLING SYLVESTER", + "uuid": "f3d15c6c-ebbf-4270-a120-c09ae92e20c8", + "createdAt": "2016-11-27", + "completed": "2019-11-17", + "initiated": "2013-10-23", + "ministryContact": "MURAZIK LUE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -54269,45 +63270,33 @@ ], "notationParticipants": [ { - "uuid": "41882d89-1ba8-4532-b2dc-d4ae0ec257db", + "uuid": "f5f49419-2fa5-41aa-b95a-0387de60ba13", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "f7195918-6d36-4425-98ab-69b40cdf59b3", + "uuid": "f73d510e-5c00-41bb-a18e-44f97d593ac3", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "uuid": "cc9b174d-6d4a-412d-b510-26a2d3f089bf", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "f1a03904-83d6-4a63-89b3-9edc4730790e", + "uuid": "6dad8519-58ac-4560-ac5e-7e98d5ddda69", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "uuid": "3304faf3-f6da-4d49-9330-54ebecae4259", - "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false } ], "participants": [ { - "uuid": "43ff60e1-cbeb-4b21-8f63-949920d73dde", - "name": "SHELL CANADA PRODUCTS", - "endDate": "2019-04-27", - "startDate": "2014-01-26", + "uuid": "45f752ed-0dc5-433f-b781-f3e7f0aba718", + "name": "AMET, DOLOR SIT", + "endDate": "2015-03-22", + "startDate": "2019-12-15", "notes": "", "roles": [ "ORGANIZATION" @@ -54315,10 +63304,10 @@ "siteRegistry": false }, { - "uuid": "f36ce133-b5ff-477d-8315-fafcda91c24f", - "name": "IPSUM", - "endDate": "2019-10-06", - "startDate": "2022-06-22", + "uuid": "c885849f-0edf-47e1-9664-f920d044461d", + "name": "AMET, DOLOR SIT", + "endDate": "2015-04-24", + "startDate": "2021-05-06", "notes": "", "roles": [ "ORGANIZATION" @@ -54326,10 +63315,10 @@ "siteRegistry": false }, { - "uuid": "daa36025-c0f2-408a-afd2-901a24e17191", - "name": "SHELL CANADA PRODUCTS", - "endDate": "2023-04-20", - "startDate": "2023-04-09", + "uuid": "f4999d78-4ec2-4674-b806-a8f4c843dd06", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2014-10-18", + "startDate": "2019-11-06", "notes": "", "roles": [ "ORGANIZATION" @@ -54337,105 +63326,208 @@ "siteRegistry": true }, { - "uuid": "d2eac118-bb96-4bfc-b3ec-70e0afa68fc6", - "name": "SHELL CANADA PRODUCTS", - "endDate": "2015-02-14", - "startDate": "2015-06-07", + "uuid": "157ff3d8-7d24-44c4-be54-8562cc5c7c25", + "name": "AMET, DOLOR SIT", + "endDate": "2014-09-30", + "startDate": "2014-04-29", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": false + }, + { + "uuid": "00ce2f34-7e99-47cd-852e-f04e585909d7", + "name": "AMET, DOLOR SIT", + "endDate": "2018-05-13", + "startDate": "2014-03-27", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + } + ], + "documents": [ + { + "uuid": "0a91c1fe-bcfe-49fe-ae9e-b4b37e6352ef", + "siteRegistry": true, + "documentDate": "2016-05-02", + "receivedDate": "2023-03-24", + "uploadedDate": "2020-11-22", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "78fe93fd-d383-41cd-a9dc-21822617f1b8", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "738aad73-4110-4f5c-8bbd-28ad15255230", + "name": "AMET, DOLOR SIT", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "1a2568d1-14dc-417a-91aa-beec4d560f1e", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": false, + "role": "AUTHOR" + } + ] + }, + { + "uuid": "5e4e6def-3377-43e0-839b-2be566b5aa7b", + "siteRegistry": true, + "documentDate": "2020-06-17", + "receivedDate": "2015-12-10", + "uploadedDate": "2022-12-25", + "title": "Preliminary Site Investigation, Detailed Site Investigation and Remedial Plan for the Management Area adjacent to the Shell Site at 1503 West 41st Ave", + "participants": [ + { + "uuid": "069315c2-745f-4eed-a268-23d8f7ba7db1", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": true, + "role": "AUTHOR" + } + ] + }, + { + "uuid": "bc0c70c0-9875-419a-9a5c-3b7969550499", + "siteRegistry": false, + "documentDate": "2022-07-05", + "receivedDate": "2023-07-12", + "uploadedDate": "2020-12-06", + "title": "Summary of Site Conditions, 1537 W 41st Avenue, Vancouver", + "participants": [ + { + "uuid": "89c6937e-db01-40b1-9e23-92ec879e1757", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "a31db9f2-267e-4299-863b-7c356f9c7c03", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": true, + "role": "AUTHOR" + } + ] } ], "suspectLandUses": [ { - "uuid": "deffb83c-67d8-4da4-8ad0-bf89f5e948ce", + "uuid": "7fe98e3b-6285-4b78-b127-4f2b74ba765d", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2015-04-09 (described on Site Profile dated 2015-04-09)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "uuid": "1af39156-2382-4ad3-a7ee-0a5e60903660", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-04-05 (described on Site Profile dated 2019-04-05)", + "notes": "INSERTED FOR SITE PROFILE DATED 2023-01-23 (described on Site Profile dated 2023-01-23)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "uuid": "a9195dd8-fc79-4ceb-ba03-4ad181d2dfbb", + "uuid": "c919e8a1-b5be-4b76-baac-b64a3f1dfc36", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2020-09-12 (described on Site Profile dated 2020-09-12)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "uuid": "8fe24dc7-9ce0-428c-b11b-17eb564c2565", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-01-21 (described on Site Profile dated 2019-01-21)", + "notes": "INSERTED FOR SITE PROFILE DATED 2014-11-01 (described on Site Profile dated 2014-11-01)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "uuid": "4f37bfae-a1e3-41e7-b9f7-602c0c359b1a", + "uuid": "004260fb-dac3-4bec-9a49-66403feefe1a", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-06-03 (described on Site Profile dated 2017-06-03)", + "notes": "INSERTED FOR SITE PROFILE DATED 2022-12-04 (described on Site Profile dated 2022-12-04)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], "parcelDescriptions": [ { - "uuid": "b97afa9a-26e2-48b2-8c06-45d2fe283252", + "uuid": "dac23c56-6aa7-4d51-a676-f52a061c8545", "siteRegistry": false, - "dateNoted": "2022-05-18", - "parcelID": "19323", - "crownLandUsePIN": "20612", - "crownLandFileNumber": "16653", - "landDescription": "LOT 2 OF LOT 3 BLOCK 4 DISTRICT LOT 5 PLAN 4567" + "dateNoted": "2023-04-14", + "parcelID": "20097", + "crownLandUsePIN": "18594", + "crownLandFileNumber": "18932", + "landDescription": "LOT 1 OF LOT 2 BLOCK 1 DISTRICT LOT 4 PLAN 6464" }, { - "uuid": "cf8f1eab-8b6a-4d28-a026-65c962edbbb9", - "siteRegistry": true, - "dateNoted": "2014-06-12", - "parcelID": "17728", - "crownLandUsePIN": "16138", - "crownLandFileNumber": "20538", - "landDescription": "LOT 3 OF LOT 4 BLOCK 1 DISTRICT LOT 1 PLAN 7955" - }, - { - "uuid": "e526ab32-d744-4374-a133-706ba73f97c5", + "uuid": "b18ce0bf-b0b4-4992-a605-d4ef45271da9", "siteRegistry": false, - "dateNoted": "2023-04-25", - "parcelID": "19846", - "crownLandUsePIN": "19972", - "crownLandFileNumber": "15300", - "landDescription": "LOT 1 OF LOT 1 BLOCK 1 DISTRICT LOT 2 PLAN 5413" + "dateNoted": "2014-11-07", + "parcelID": "18907", + "crownLandUsePIN": "20436", + "crownLandFileNumber": "18162", + "landDescription": "LOT 2 OF LOT 4 BLOCK 1 DISTRICT LOT 1 PLAN 6042" }, { - "uuid": "c2412993-3b79-412f-8c7e-bfd8b4d6d1ab", + "uuid": "c2cb7fd0-862c-4017-b378-2bf548f02230", "siteRegistry": false, - "dateNoted": "2021-03-02", - "parcelID": "17131", - "crownLandUsePIN": "16675", - "crownLandFileNumber": "17050", - "landDescription": "LOT 5 OF LOT 5 BLOCK 4 DISTRICT LOT 1 PLAN 4938" + "dateNoted": "2014-10-05", + "parcelID": "20081", + "crownLandUsePIN": "17416", + "crownLandFileNumber": "16227", + "landDescription": "LOT 5 OF LOT 3 BLOCK 2 DISTRICT LOT 3 PLAN 4312" }, { - "uuid": "6a721b76-243c-4bc2-9914-e19a4321f47d", + "uuid": "e144f72a-3b38-44dc-bdf6-438862d3bb48", "siteRegistry": true, + "dateNoted": "2022-12-23", + "parcelID": "15419", + "crownLandUsePIN": "16009", + "crownLandFileNumber": "16519", + "landDescription": "LOT 3 OF LOT 4 BLOCK 4 DISTRICT LOT 4 PLAN 5582" + }, + { + "uuid": "267c8d91-7d89-44b4-955b-8de79ef7a1af", + "siteRegistry": false, "dateNoted": "2020-10-01", - "parcelID": "19521", - "crownLandUsePIN": "15818", - "crownLandFileNumber": "19530", - "landDescription": "LOT 2 OF LOT 4 BLOCK 2 DISTRICT LOT 5 PLAN 4877" + "parcelID": "15582", + "crownLandUsePIN": "17508", + "crownLandFileNumber": "19497", + "landDescription": "LOT 2 OF LOT 2 BLOCK 1 DISTRICT LOT 3 PLAN 6750" } ], "siteDisclosures": [ { - "uuid": "8e5d1907-72a0-4778-9f0c-d30fb3ac2b6d", - "siteRegistry": false, - "dateReceived": "2023-03-15", - "dateCompleted": "2016-02-13", - "dateEntered": "2022-11-13", - "dateRegistrar": "2021-06-11", - "dateLocalAuthorityReceived": "2015-10-06", - "summary": "Sit voluptates provident culpa ducimus eius molestias non.\nQuae tempore at.", - "informationUsed": "Magnam repellat odio placeat odit ex eum eveniet quia rem.\nQuaerat sapiente minima ab blanditiis recusandae.\nVel commodi unde veniam tempore illum aspernatur.\nIncidunt quibusdam quod illo libero illum earum.", - "pastOrPresentOrders": "Dignissimos eius atque fuga deserunt quia a.\nEt deleniti ipsum culpa itaque accusantium.", + "uuid": "2ac45051-5f6c-4675-9834-177365ad9aff", + "siteRegistry": true, + "dateReceived": "2014-03-30", + "dateCompleted": "2018-12-29", + "dateEntered": "2016-02-22", + "dateRegistrar": "2021-11-16", + "dateLocalAuthorityReceived": "2022-05-18", + "summary": "Aspernatur soluta repellendus.\nCommodi aperiam accusamus perspiciatis nesciunt dolorum quis quasi.", + "informationUsed": "Dicta architecto quis.\nQuisquam quidem quia beatae dignissimos itaque minus accusamus quia numquam.\nDoloremque asperiores vero voluptas fuga deleniti aut magnam iure quasi.\nProvident esse magnam maiores officiis amet error laudantium ipsum a.\nAsperiores corrupti doloribus doloremque vitae facilis minus eligendi velit.", + "pastOrPresentOrders": "Animi animi natus praesentium tempora cupiditate culpa.", "commercialAndIndustrialPurposes": [ { - "uuid": "5ecd523d-ee63-4b64-875f-1f0370799244", + "uuid": "653207d1-46f7-4da6-a6ca-78bff6af16ea", "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "uuid": "985b2bc2-5fb3-49c6-9785-d88c65474f64", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { - "uuid": "c6333167-06e0-4200-a8e6-2a1eaacbbf5b", + "uuid": "d316595d-cc9c-4465-b83b-5c2a9c10a13c", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "uuid": "f539284f-f786-4df7-a408-95e0e5473d7d", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false @@ -54445,85 +63537,106 @@ ], "activityLog": [ { - "uuid": "3233eb5e-4dc7-4087-971e-18c36744c451", + "uuid": "9c40e823-0556-40ba-bc29-e395fb66d494", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "SHIELDS CHEYANNE", - "timestamp": "2015-06-22" + "user": "RATH ONA", + "timestamp": "2015-01-30" }, { - "uuid": "5a2c17ba-53fd-4124-82fa-d13456424ed3", + "uuid": "2a0927cb-f24c-4bbd-95e2-35c3bf9bfe47", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "DOOLEY KANE", - "timestamp": "2022-06-01" + "user": "KING MOLLY", + "timestamp": "2021-02-19" }, { - "uuid": "09a7505c-9f11-4041-8769-1d9f60354320", + "uuid": "fb3926a3-a829-43bc-9540-78baaf29b6e8", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "DIETRICH GLENDA", - "timestamp": "2021-12-21" + "user": "TORPHY ADA", + "timestamp": "2018-04-30" }, { - "uuid": "b2da03f3-e484-4689-ac31-795010ca7a68", + "uuid": "1a4d0649-6e0b-4d32-8104-0e81b7a20248", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "CRONIN GREGORIO", - "timestamp": "2020-02-10" + "user": "RUNOLFSSON JEROME", + "timestamp": "2021-05-24" }, { - "uuid": "9bfba3ec-7525-48dd-be41-24114a569194", + "uuid": "47f81037-9c14-44ff-8d5a-7bd855fe1581", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "HERMAN CASSANDRA", - "timestamp": "2021-04-13" + "user": "MORISSETTE-MERTZ KIMBERLY", + "timestamp": "2021-03-30" }, { - "uuid": "26dd0c03-6333-4889-8e08-372dbae0645c", + "uuid": "dc82d5ba-601a-4088-a0d0-f0e86b6c581a", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "MURAZIK ISIDRO", - "timestamp": "2016-02-12" + "user": "TROMP BRENDA", + "timestamp": "2015-06-17" + }, + { + "uuid": "cfd0b434-731d-442e-b123-c4bbeebee4a9", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "ROGAHN ALEXANDRO", + "timestamp": "2015-03-06" + }, + { + "uuid": "3084d43e-9f0c-41ba-9a64-648cf4dc1b11", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "RUNTE-WILKINSON BETHANY", + "timestamp": "2023-01-28" + }, + { + "uuid": "b5c83352-1d06-4e1f-8071-08dbdf1a4db7", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "METZ REAGAN", + "timestamp": "2014-06-13" } ], "associatedSites": [ { - "uuid": "fd377dbe-25d4-44bd-84a5-1fb2a36f426d", - "dateNoted": "2019-10-08", + "uuid": "b15277b2-c106-495e-88a2-6f3d38e3d948", + "dateNoted": "2016-08-08", "notes": "", - "parcelID": "20341", - "siteID": "19716", + "parcelID": "19592", + "siteID": "18229", "siteRegistry": false } ] }, { - "uuid": "e20610f9-8e54-4c40-9e0a-74120f8a287a", - "siteID": 18096, - "address": "9307 Carroll Dale", - "latitude": 48.2518, - "longitude": -138.6792, - "lastUpdated": "2017-05-24", - "city": "Kylacester", - "region": "Kootenay", - "victoriaFile": "26250-20/4403", + "uuid": "69f70369-42aa-48dc-8917-d229f3d39e3d", + "siteID": 18686, + "address": "1437 Celine Ridge", + "latitude": 54.3206, + "longitude": -138.6274, + "lastUpdated": "2017-02-14", + "city": "Lake Karliefort", + "region": "Vancouver Island/Coast", + "victoriaFile": "26250-20/6739", "regionalFile": "N/A", "parcelIDs": [ - 5237086, - 7764510, - 4633732, - 3586353, - 785623 + 2250002, + 4070921, + 1912791, + 6296522, + 8488172 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "854c6ad5-f3dc-4c17-a30c-067580456404", - "createdAt": "2016-05-08", - "completed": "2015-07-28", - "initiated": "2023-02-24", - "ministryContact": "KONOPELSKI LUDIE", + "uuid": "9030e036-5243-41f0-b523-d8747082a9ca", + "createdAt": "2016-05-06", + "completed": "2015-10-26", + "initiated": "2020-07-19", + "ministryContact": "MERTZ HAZLE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -54532,44 +63645,38 @@ ], "notationParticipants": [ { - "uuid": "c6c579d8-e8d7-46cc-a71f-1628adb11639", - "name": "SHELL CANADA PRODUCTS", + "uuid": "31db2c60-9b09-4cfb-be99-1ce62e840a72", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "uuid": "4ba07dde-9127-4f7f-865f-bd50ad7446a2", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "4d738480-567a-4ad8-83b8-7a05032d094f", + "uuid": "241827b5-a3c0-4423-9429-87a74354e354", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true + "role": "SUBMITTED BY", + "siteRegistry": false }, { - "uuid": "74f78c0f-8667-483c-8051-ae473afbc590", + "uuid": "5c415b7d-12d3-45f9-8c1f-e99a2917901a", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "343ea554-acbf-4b6e-8fc1-a2e291f5a6c3", + "uuid": "dc0b120b-e755-47fe-81c0-5a52fe07b8d5", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "362c042f-3df4-464d-a62a-cc8684ff3e65", - "createdAt": "2017-09-08", - "completed": "2023-08-29", - "initiated": "2014-05-20", - "ministryContact": "CUMMINGS LIZA", + "uuid": "fb02dc3b-2f50-4437-83fa-22acfe81d02b", + "createdAt": "2023-04-02", + "completed": "2020-01-20", + "initiated": "2019-05-12", + "ministryContact": "DURGAN DONAVON", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -54578,66 +63685,32 @@ ], "notationParticipants": [ { - "uuid": "502d5ff2-8bed-4b0f-99d3-a246e6f7edde", + "uuid": "cb29d03d-c5ff-46c9-b994-2836714932f4", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "uuid": "0000f99c-cb89-4f76-aa46-3daa305ae34a", - "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "997b60fe-3892-4d15-bc56-31d079de87ec", + "uuid": "0fbf75f3-7157-4593-9e41-e81234dbb16f", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "e41ba0ee-b9fa-4b1d-928a-f2aad2514322", + "uuid": "e2a358e7-940a-4d01-ab66-54d0ab516bf3", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false - } - ], - "siteRegistry": false - }, - { - "uuid": "1ada49eb-7202-4d8d-aca3-186ce31e7cbb", - "createdAt": "2021-12-10", - "completed": "2016-02-15", - "initiated": "2020-06-23", - "ministryContact": "BAUMBACH DANIKA", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "uuid": "efdd489d-1325-468d-aa46-f659e4757aa1", - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "uuid": "45e802be-7719-4674-bfd3-35f67b34ec18", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true }, { - "uuid": "413fc1ce-ce6c-4734-968e-0bf62cc1247e", - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "3421c921-1a25-40b0-a33e-36226bca3b01", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "4cc0bfa6-b4f5-4028-94b9-ac41da71a3f5", - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "381eff44-9b19-4370-b3e6-0270a74dfc00", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false } @@ -54645,11 +63718,11 @@ "siteRegistry": true }, { - "uuid": "51e1c1d4-c5a7-498c-8879-26e521709898", - "createdAt": "2023-02-21", - "completed": "2022-07-20", - "initiated": "2021-01-18", - "ministryContact": "STEHR CARLOS", + "uuid": "884d677f-fc40-4f91-937e-697f0dafb1f4", + "createdAt": "2017-06-29", + "completed": "2022-02-03", + "initiated": "2014-10-16", + "ministryContact": "KOHLER BURNICE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -54658,68 +63731,28 @@ ], "notationParticipants": [ { - "uuid": "08302154-649e-4882-8c9a-d89e2061d81c", - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "uuid": "1d5698b2-030d-401b-ad23-a56e7ce83536", + "uuid": "db697f84-668f-4f6f-82c7-27a56ee830de", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "ca6027f6-5fcf-4468-8ecc-b5b173a935de", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "uuid": "4e0d5ab2-7592-43d0-b474-e035379a45c1", - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - } - ], - "siteRegistry": false - }, - { - "uuid": "a1dee369-ae3f-4475-a6e0-391c63075d1b", - "createdAt": "2022-01-24", - "completed": "2021-10-09", - "initiated": "2018-11-01", - "ministryContact": "LABADIE GEOFFREY", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "uuid": "c9126666-d7f1-4b2a-bde1-f19323fd2740", + "uuid": "d3d49684-5eb8-46e9-8707-39f87f15cd6d", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "7f31b8df-98bc-4ba3-8228-61638a72a1b7", + "uuid": "a1660b7b-4de5-4c62-90b0-becd859fe0b8", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true + "role": "REQUESTED BY", + "siteRegistry": false }, { - "uuid": "e3dacc63-ad6f-4a1b-8905-35081bded0b6", + "uuid": "11b92de4-d195-4ff4-9ad1-a53e41049603", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true - }, - { - "uuid": "a7d21dfd-86aa-4a7e-813e-3291f5399f36", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true } ], "siteRegistry": false @@ -54727,32 +63760,32 @@ ], "participants": [ { - "uuid": "fd5706d2-ce9a-4d26-8c90-40dcd34b6c5b", - "name": "SHELL CANADA PRODUCTS", - "endDate": "2018-05-03", - "startDate": "2018-06-21", + "uuid": "ac943d34-ef84-48a2-bc06-1a4d0a63822f", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2018-09-05", + "startDate": "2015-08-15", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "5ee5388b-e6af-46fd-9c01-48f63fcd7a9b", - "name": "SHELL CANADA PRODUCTS", - "endDate": "2019-03-12", - "startDate": "2018-03-07", + "uuid": "4864054b-019a-44dc-9312-3ef8aeda8b38", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2021-04-13", + "startDate": "2022-10-19", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "6dc7debf-1454-403d-9f6d-5196a436a8d3", - "name": "AMET, DOLOR SIT", - "endDate": "2019-03-13", - "startDate": "2021-01-25", + "uuid": "853a8dc7-0102-4a81-9f5a-968777457d4b", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2016-03-04", + "startDate": "2015-09-15", "notes": "", "roles": [ "EMPLOYEE" @@ -54760,10 +63793,21 @@ "siteRegistry": false }, { - "uuid": "f38375ac-dba1-4303-8e88-41fe103a15df", + "uuid": "e5b4c2e7-a775-4c52-ab9a-159b4f7b612f", + "name": "AMET, DOLOR SIT", + "endDate": "2016-08-19", + "startDate": "2014-11-22", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "uuid": "11ee702d-0a78-4657-ad19-374fa37ea09b", "name": "AMET, DOLOR SIT", - "endDate": "2016-12-14", - "startDate": "2021-02-02", + "endDate": "2018-02-06", + "startDate": "2022-12-22", "notes": "", "roles": [ "EMPLOYEE" @@ -54771,132 +63815,177 @@ "siteRegistry": true } ], + "documents": [ + { + "uuid": "2f461b78-67dc-418a-a583-b4f493e4d22b", + "siteRegistry": false, + "documentDate": "2021-09-04", + "receivedDate": "2019-05-22", + "uploadedDate": "2017-04-16", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "57f86fa9-d7c6-43e1-b646-9e6eff48a30f", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "81d2f841-274a-4f01-b2ca-efe5f42d8ae7", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "58b6530b-9856-4abb-8fb5-277958e25824", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": false, + "role": "AUTHOR" + } + ] + } + ], "suspectLandUses": [ { - "uuid": "81dbb63a-b200-4588-8f89-e26b96ba47ef", + "uuid": "1641e176-825a-405a-b301-80eb9796591f", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2015-12-17 (described on Site Profile dated 2015-12-17)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "uuid": "866d1bb2-14e5-4f2e-923d-f418c84fd34f", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-03-17 (described on Site Profile dated 2018-03-17)", + "notes": "INSERTED FOR SITE PROFILE DATED 2022-04-06 (described on Site Profile dated 2022-04-06)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "uuid": "7cf1f75d-fe18-4279-b8e0-0ba52c904779", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2022-11-13 (described on Site Profile dated 2022-11-13)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "uuid": "72e31b11-ff73-4a70-b72a-bfba4393ed50", + "uuid": "d3a2a59e-6b81-4aed-9fee-b452c31f2615", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-04-28 (described on Site Profile dated 2014-04-28)", + "notes": "INSERTED FOR SITE PROFILE DATED 2022-02-28 (described on Site Profile dated 2022-02-28)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "uuid": "dbd85a66-bba8-4945-876d-ce4ae0164a2f", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2021-02-11 (described on Site Profile dated 2021-02-11)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], "parcelDescriptions": [ { - "uuid": "25bcf1b5-d4bf-450c-82c2-79624877534f", + "uuid": "f9188375-d524-4b22-b25b-e98585c9b8aa", "siteRegistry": true, - "dateNoted": "2014-02-21", - "parcelID": "15599", - "crownLandUsePIN": "17564", - "crownLandFileNumber": "19521", - "landDescription": "LOT 2 OF LOT 4 BLOCK 3 DISTRICT LOT 5 PLAN 7416" + "dateNoted": "2020-08-28", + "parcelID": "18088", + "crownLandUsePIN": "19519", + "crownLandFileNumber": "15510", + "landDescription": "LOT 5 OF LOT 4 BLOCK 4 DISTRICT LOT 5 PLAN 6556" }, { - "uuid": "b576817d-d447-4424-b73c-122b56b3a963", + "uuid": "4d1b8f95-74c1-4d1e-8370-c6b57c08401e", "siteRegistry": true, - "dateNoted": "2016-10-20", - "parcelID": "15493", - "crownLandUsePIN": "18081", - "crownLandFileNumber": "16900", - "landDescription": "LOT 5 OF LOT 3 BLOCK 4 DISTRICT LOT 5 PLAN 6578" + "dateNoted": "2015-03-12", + "parcelID": "19606", + "crownLandUsePIN": "15582", + "crownLandFileNumber": "18954", + "landDescription": "LOT 3 OF LOT 2 BLOCK 2 DISTRICT LOT 3 PLAN 4099" }, { - "uuid": "c045eb96-6d3a-4b85-a203-28b04f0532ee", + "uuid": "1035d2af-d38c-487f-a7f1-2a865c283025", "siteRegistry": false, - "dateNoted": "2021-01-21", - "parcelID": "18800", - "crownLandUsePIN": "18128", - "crownLandFileNumber": "15386", - "landDescription": "LOT 5 OF LOT 4 BLOCK 3 DISTRICT LOT 1 PLAN 3024" - }, - { - "uuid": "fdf5b402-c39e-4939-82de-d551f724c5fb", - "siteRegistry": true, - "dateNoted": "2018-06-08", - "parcelID": "17640", - "crownLandUsePIN": "17773", - "crownLandFileNumber": "15495", - "landDescription": "LOT 3 OF LOT 2 BLOCK 2 DISTRICT LOT 1 PLAN 9672" + "dateNoted": "2020-05-20", + "parcelID": "16949", + "crownLandUsePIN": "18965", + "crownLandFileNumber": "16848", + "landDescription": "LOT 1 OF LOT 2 BLOCK 1 DISTRICT LOT 2 PLAN 8484" }, { - "uuid": "4c4f8ad8-063b-423d-a2c1-81df58544214", - "siteRegistry": true, - "dateNoted": "2015-12-26", - "parcelID": "19803", - "crownLandUsePIN": "15873", - "crownLandFileNumber": "19750", - "landDescription": "LOT 5 OF LOT 1 BLOCK 2 DISTRICT LOT 5 PLAN 9141" + "uuid": "a4b47409-0fee-4c4f-91ca-d0b056d0f0c7", + "siteRegistry": false, + "dateNoted": "2016-05-07", + "parcelID": "15659", + "crownLandUsePIN": "16133", + "crownLandFileNumber": "17271", + "landDescription": "LOT 3 OF LOT 5 BLOCK 1 DISTRICT LOT 4 PLAN 9576" } ], "siteDisclosures": [ { - "uuid": "ec8c5c3a-2d24-4000-b9d6-c5887f477f51", - "siteRegistry": false, - "dateReceived": "2016-11-15", - "dateCompleted": "2019-08-16", - "dateEntered": "2013-12-30", - "dateRegistrar": "2018-12-25", - "dateLocalAuthorityReceived": "2014-09-07", - "summary": "Explicabo nostrum numquam fugiat ducimus et eius.\nHic beatae nihil eos rem qui.\nEarum ex provident.", - "informationUsed": "Laboriosam repellendus perspiciatis id.\nNecessitatibus consequatur magni.\nSuscipit quis aut veniam accusamus consectetur.", - "pastOrPresentOrders": "Odio eos dolore facilis maiores.", + "uuid": "5d7a94ce-3033-47de-84d0-696d1cc67cec", + "siteRegistry": true, + "dateReceived": "2020-10-12", + "dateCompleted": "2017-12-21", + "dateEntered": "2022-04-29", + "dateRegistrar": "2018-05-17", + "dateLocalAuthorityReceived": "2023-08-31", + "summary": "Asperiores architecto est pariatur laudantium architecto cum blanditiis vitae sunt.", + "informationUsed": "Quas saepe nobis neque deserunt.\nCulpa architecto quibusdam deleniti ea unde cumque praesentium accusantium velit.\nLabore ipsa sed iusto.\nDistinctio sequi eligendi possimus consectetur explicabo nihil blanditiis suscipit facilis.\nQuae aperiam exercitationem esse.", + "pastOrPresentOrders": "Modi animi rem ratione esse reprehenderit tempora.", "commercialAndIndustrialPurposes": [ { - "uuid": "6344a9cb-28fc-4762-8470-72d722bb4c64", + "uuid": "24ea82c5-0b44-4565-a003-9129c2fb933c", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "uuid": "de177cae-de26-46d6-bcde-1dc7eda8f3a9", "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, { - "uuid": "7373e8fb-bd3e-41b6-b52d-101a1cbb16ab", - "scheduleReference": "F1*", + "uuid": "3033d208-b599-4fd9-a3b7-f69be11c5a7f", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "fd6f0341-1cb5-40a2-b71a-993f956af0c9", - "scheduleReference": "F1*", + "uuid": "4c2010e3-1228-4363-8352-73f11cef27f8", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true } ] }, { - "uuid": "712b8c3f-e690-4ace-8092-76d98bde1025", - "siteRegistry": false, - "dateReceived": "2023-01-11", - "dateCompleted": "2014-07-26", - "dateEntered": "2015-02-20", - "dateRegistrar": "2016-11-05", - "dateLocalAuthorityReceived": "2023-07-01", - "summary": "Voluptates eaque consectetur nisi assumenda quibusdam adipisci dignissimos earum minima.", - "informationUsed": "Veritatis quae occaecati ipsa.\nCorrupti officiis ipsum iusto fugit dolorem quisquam.\nDolor vel doloribus sapiente porro ipsam animi.\nVoluptatem laudantium necessitatibus inventore itaque nam molestias.\nVoluptas cum non molestias necessitatibus.", - "pastOrPresentOrders": "Excepturi exercitationem modi illum.", + "uuid": "7e74b84d-ca57-4160-b474-c4d39f1b1247", + "siteRegistry": true, + "dateReceived": "2016-10-21", + "dateCompleted": "2022-06-08", + "dateEntered": "2022-07-06", + "dateRegistrar": "2022-07-11", + "dateLocalAuthorityReceived": "2023-03-29", + "summary": "Sunt officia dolorem aut.", + "informationUsed": "Quo cum nam.\nVeritatis nam veritatis debitis qui placeat culpa ipsa.\nConsequatur aspernatur ea delectus vero consequuntur.", + "pastOrPresentOrders": "Molestias quos laborum omnis officiis commodi ipsam quibusdam dolore amet.\nVoluptatibus nemo animi illo aliquam necessitatibus doloremque.\nSimilique culpa vero quisquam nemo impedit possimus eius repellendus fugiat.", "commercialAndIndustrialPurposes": [ { - "uuid": "e264e242-204b-4242-920b-20b7fbdff421", - "scheduleReference": "F1*", + "uuid": "f3040a71-06ef-47e0-8aa1-7a8e5f521336", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { - "uuid": "1f64e32d-a92a-4120-93ea-9fe85175c90e", - "scheduleReference": "F1*", + "uuid": "35a0abf2-f0eb-46ce-b355-279446a7a23a", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { - "uuid": "d66b28cd-14f2-4bdd-8669-75985c95325d", + "uuid": "2273af46-64fa-421c-8aca-7c8ed398bf0d", "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { - "uuid": "a5d35af1-77d2-4cf6-9a71-e0ca5807680b", + "uuid": "df31edce-df78-4dc1-aee4-d40c190e37a4", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true @@ -54906,107 +63995,85 @@ ], "activityLog": [ { - "uuid": "fccd83db-fa78-4002-af34-5fea7baeacaf", + "uuid": "f2812eab-2e9c-40ae-9897-efced2a1d5b3", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "ANKUNDING EMERSON", - "timestamp": "2015-12-15" + "user": "KRIS FRANCISCO", + "timestamp": "2022-06-28" }, { - "uuid": "4c9ec8f3-802b-4e9a-8e55-5a7b5a9bcb94", + "uuid": "5b735111-4832-44f9-85b4-b58a7ea71c2a", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "TILLMAN EASTON", - "timestamp": "2014-07-21" - }, - { - "uuid": "32c9ee54-3ece-4f6c-8392-949f3bcd327f", - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "KEELING LOWELL", - "timestamp": "2022-04-25" + "user": "NADER DEVANTE", + "timestamp": "2018-08-24" }, { - "uuid": "5732cbd9-1afc-481f-b08f-62793def0246", + "uuid": "2234f02d-041e-4d29-8e75-bc7ec96d64d3", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "POLLICH MEREDITH", - "timestamp": "2014-01-30" + "user": "MILLS-ORTIZ DEMETRIS", + "timestamp": "2019-08-13" }, { - "uuid": "fe0a304a-1f92-4451-920c-74e229117afc", + "uuid": "c3d53b63-76c9-4132-a78f-dfb6fcfd3df7", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "WEISSNAT BRIDGET", - "timestamp": "2017-12-07" - }, - { - "uuid": "a2a04859-8013-476e-a6f7-1117d13228a0", - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "RITCHIE SAUL", - "timestamp": "2015-07-19" + "user": "CORWIN KAMREN", + "timestamp": "2016-07-28" }, { - "uuid": "c557ce00-f7eb-423a-8a24-5a73c17712f3", - "siteRegistry": true, + "uuid": "802b0bf4-49dd-4611-9276-4737da7f19ba", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "STOLTENBERG-GUTMANN PASQUALE", - "timestamp": "2018-01-19" + "user": "RUNTE MEGANE", + "timestamp": "2016-09-06" }, { - "uuid": "ed0dcf30-a3dc-4ecf-bfcd-99455e28183c", + "uuid": "8a9969bc-bec2-49ef-ac85-12c4d61609c8", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "VOLKMAN RODRICK", - "timestamp": "2019-07-18" + "user": "SAUER JASPER", + "timestamp": "2023-04-01" } ], "associatedSites": [ { - "uuid": "a8edae85-45fe-47a7-aabc-df757f9a48b2", - "dateNoted": "2018-10-29", + "uuid": "52e0ee11-4c15-418b-b235-6a14604d1370", + "dateNoted": "2015-10-08", "notes": "", - "parcelID": "15597", - "siteID": "18183", + "parcelID": "20753", + "siteID": "20762", "siteRegistry": true - }, - { - "uuid": "49ad7fd6-3a08-4622-bdc3-39686d943363", - "dateNoted": "2014-03-02", - "notes": "", - "parcelID": "19558", - "siteID": "20362", - "siteRegistry": false } ] }, { - "uuid": "0b8f555c-cf08-425d-9229-1d94ca8a624c", - "siteID": 20395, - "address": "92228 Ari Path", - "latitude": 57.8696, - "longitude": -138.8594, - "lastUpdated": "2019-01-18", - "city": "Zulastead", - "region": "Vancouver Island/Coast", - "victoriaFile": "26250-20/12340", + "uuid": "8a260f28-875f-4c74-b6bb-1b4d2bc879db", + "siteID": 19903, + "address": "61251 Block Corners", + "latitude": 49.9791, + "longitude": -131.6521, + "lastUpdated": "2019-07-20", + "city": "South Marcellus", + "region": "Mainland/Southwest", + "victoriaFile": "26250-20/10172", "regionalFile": "N/A", "parcelIDs": [ - 5887311, - 6010371, - 1264500, - 3289123, - 1719999 + 2086940, + 164804, + 9569696, + 7985783, + 1909859 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "7d03d310-b544-4cf6-89b6-b0801b3e0fd6", - "createdAt": "2020-08-07", - "completed": "2020-05-16", - "initiated": "2015-06-23", - "ministryContact": "BARROWS CRYSTAL", + "uuid": "aeaabc8a-7236-409c-988a-c8a2c242ece0", + "createdAt": "2014-02-17", + "completed": "2014-03-27", + "initiated": "2020-08-28", + "ministryContact": "MULLER PAIGE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -55015,38 +64082,78 @@ ], "notationParticipants": [ { - "uuid": "c1f6c686-d481-43b0-a02c-bbefe08fc89c", - "name": "SHELL CANADA PRODUCTS", + "uuid": "abdfd20a-d205-4f7e-bf81-5ef7b1ebabb7", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "uuid": "1165d18b-d0ff-480b-a661-2bb4cf1cbddb", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false }, { - "uuid": "b650a282-f62a-4859-824f-fa9efd8e9c28", + "uuid": "82daf55a-a6e7-49fe-bafd-b75b6b66ef33", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "cfd185bb-2db6-4dbf-be10-dbe23e21eadb", + "uuid": "ce9541d3-7551-47f7-b463-06d1a35b5948", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "uuid": "28a974d5-9035-4c8d-9d8d-fbd21b38df87", + "createdAt": "2023-07-21", + "completed": "2023-05-06", + "initiated": "2017-12-07", + "ministryContact": "LAKIN NATHAN", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "uuid": "2a5af438-37ff-4c32-b150-0d5ec7616a93", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true }, { - "uuid": "885f52a5-357a-4975-a12b-85026e19056d", + "uuid": "4c542c08-2697-4065-acc6-b9bf29934569", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "ae8910cb-12eb-4353-9087-3d026486c5fe", "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "7b690de9-a1c5-41c7-baf4-c50b9580cc03", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "43ef79da-c29e-42d1-914e-2e7724bbb522", - "createdAt": "2020-01-26", - "completed": "2014-06-29", - "initiated": "2021-03-22", - "ministryContact": "CONN MAFALDA", + "uuid": "2a8384aa-f1f6-4927-89b9-38b95974b27d", + "createdAt": "2022-02-23", + "completed": "2018-01-21", + "initiated": "2014-08-17", + "ministryContact": "HANE MARIANNE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -55055,50 +64162,102 @@ ], "notationParticipants": [ { - "uuid": "453ebd87-779d-4b4b-ae72-7c8e6666a00e", + "uuid": "12febc84-bf46-404f-837a-6a028ea3530f", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "uuid": "dea52c2b-d430-425b-8001-653d7e606319", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "uuid": "93704deb-1ffa-4b91-9b49-459bae2a34b7", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false }, { - "uuid": "0116c825-9e28-4e13-b085-502c7b4d9ffd", + "uuid": "c6b8c54f-5987-4db6-be6e-cd50da60abc2", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "e2cd01e7-4fa1-42fe-86f6-96e95ff9ad03", - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "49c17e75-d71f-44cd-88f8-ba89038009f2", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "uuid": "8575e4b4-fa39-48e2-b82c-38dd8dd2740b", + "createdAt": "2018-11-19", + "completed": "2023-05-15", + "initiated": "2020-06-20", + "ministryContact": "CHRISTIANSEN CLYDE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "uuid": "253e4f8e-7cf7-4070-a478-b7b8b2156ec8", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "uuid": "c2d192c1-2cb2-4d0c-ae8f-aabbb0124fba", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false }, { - "uuid": "8eb33aa3-f5f0-47a1-8e0d-3b7241bd97e1", + "uuid": "9f65bbdc-0612-496f-ab42-92e4d15a6011", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false + }, + { + "uuid": "a6922367-4b41-4ad4-b50e-d7d134c35e54", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "uuid": "6b51abb3-c73d-4485-89c2-1350cf61535f", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false } ], "participants": [ { - "uuid": "9c6c644e-3734-422c-8ab4-0e220bdefbbe", - "name": "AMET, DOLOR SIT", - "endDate": "2019-02-13", - "startDate": "2018-11-29", + "uuid": "f074630c-96f1-455f-9ead-63a62cf75bbc", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2013-10-23", + "startDate": "2021-05-18", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": true }, { - "uuid": "24507963-74fe-4356-8ccf-ba6f31195022", - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2014-10-29", - "startDate": "2014-10-08", + "uuid": "9bbdb9f5-74ab-4f37-a538-cc6090c4c0dd", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2020-02-02", + "startDate": "2018-12-03", "notes": "", "roles": [ "EMPLOYEE" @@ -55106,232 +64265,256 @@ "siteRegistry": false }, { - "uuid": "36012127-5e70-4e0e-9917-b88083f0ba4b", - "name": "AMET, DOLOR SIT", - "endDate": "2022-02-02", - "startDate": "2022-10-05", + "uuid": "7ca8eda7-6c27-4dc6-b935-f8e519a19c44", + "name": "IPSUM", + "endDate": "2018-01-08", + "startDate": "2014-06-23", "notes": "", "roles": [ "EMPLOYEE" ], + "siteRegistry": false + }, + { + "uuid": "e45886a5-4d49-4b7d-95f3-2ca2bdd8d1e4", + "name": "IPSUM", + "endDate": "2013-12-28", + "startDate": "2021-08-13", + "notes": "", + "roles": [ + "ORGANIZATION" + ], "siteRegistry": true + }, + { + "uuid": "11d2978a-9210-4edd-a6cf-7e43766fc8cb", + "name": "AMET, DOLOR SIT", + "endDate": "2016-06-18", + "startDate": "2021-12-26", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false } ], - "suspectLandUses": [ + "documents": [ { - "uuid": "2887bdc9-d13d-44af-a801-bab59eebd199", + "uuid": "0e425a0c-a0ba-4786-9de8-342fee7c6178", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-07-31 (described on Site Profile dated 2014-07-31)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" - }, + "documentDate": "2020-04-21", + "receivedDate": "2014-12-14", + "uploadedDate": "2021-02-13", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "e20800d8-e3f6-468a-94b2-5b8b7595e074", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "da13d0f2-c62c-4506-af1a-ef9a672cb755", + "name": "AMET, DOLOR SIT", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "54e96a24-2827-45f7-b8a5-d50f43213d86", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": true, + "role": "AUTHOR" + } + ] + } + ], + "suspectLandUses": [ { - "uuid": "a5a30a2f-dc66-4c65-932a-c5b35aafc4ca", + "uuid": "020e2b39-261f-40e8-88ce-cc93225ac2cd", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-08-28 (described on Site Profile dated 2022-08-28)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "notes": "INSERTED FOR SITE PROFILE DATED 2017-06-30 (described on Site Profile dated 2017-06-30)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "uuid": "b8bf61e3-586a-4db0-829b-e1a9c15870f7", + "uuid": "8bbf667f-8517-4074-9f60-3d09244da577", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-06-08 (described on Site Profile dated 2017-06-08)", + "notes": "INSERTED FOR SITE PROFILE DATED 2021-08-27 (described on Site Profile dated 2021-08-27)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "uuid": "74ef2670-e210-4b27-967c-784d19343041", - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-07-13 (described on Site Profile dated 2017-07-13)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "uuid": "982861ac-383a-4e06-a8a4-8a9e93a59b9a", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2022-12-31 (described on Site Profile dated 2022-12-31)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], "parcelDescriptions": [ { - "uuid": "350e0749-7552-4637-ae36-2f6afbfd3fb4", + "uuid": "cc87cde1-bdc8-4298-8089-c9bb76d057ab", "siteRegistry": false, - "dateNoted": "2021-03-07", - "parcelID": "20576", - "crownLandUsePIN": "20168", - "crownLandFileNumber": "19852", - "landDescription": "LOT 2 OF LOT 4 BLOCK 1 DISTRICT LOT 2 PLAN 6815" + "dateNoted": "2017-05-03", + "parcelID": "20805", + "crownLandUsePIN": "18024", + "crownLandFileNumber": "19832", + "landDescription": "LOT 5 OF LOT 2 BLOCK 5 DISTRICT LOT 3 PLAN 3091" }, { - "uuid": "75f9d3a5-6f03-40cb-befa-840f6a8f8f53", + "uuid": "bbb7f432-3ba7-4780-a7c5-d9633cf15f1c", "siteRegistry": true, - "dateNoted": "2014-12-12", - "parcelID": "16842", - "crownLandUsePIN": "20325", - "crownLandFileNumber": "19831", - "landDescription": "LOT 4 OF LOT 2 BLOCK 3 DISTRICT LOT 3 PLAN 6827" - }, - { - "uuid": "e60fecf3-2c49-4a45-b9d1-53290076ad4b", - "siteRegistry": false, - "dateNoted": "2023-02-03", - "parcelID": "20463", - "crownLandUsePIN": "20317", - "crownLandFileNumber": "20132", - "landDescription": "LOT 1 OF LOT 4 BLOCK 3 DISTRICT LOT 4 PLAN 4584" + "dateNoted": "2014-09-24", + "parcelID": "15504", + "crownLandUsePIN": "16622", + "crownLandFileNumber": "18865", + "landDescription": "LOT 3 OF LOT 3 BLOCK 5 DISTRICT LOT 3 PLAN 8298" }, { - "uuid": "8173ee62-4084-4c95-aec4-9d644d22d13c", + "uuid": "9cdbd464-e088-459b-ae23-ae64710cb936", "siteRegistry": false, - "dateNoted": "2018-01-21", - "parcelID": "20639", - "crownLandUsePIN": "15533", - "crownLandFileNumber": "15537", - "landDescription": "LOT 4 OF LOT 4 BLOCK 2 DISTRICT LOT 4 PLAN 8185" + "dateNoted": "2021-09-23", + "parcelID": "18961", + "crownLandUsePIN": "15746", + "crownLandFileNumber": "17505", + "landDescription": "LOT 3 OF LOT 2 BLOCK 1 DISTRICT LOT 5 PLAN 3649" }, { - "uuid": "c4230385-a5a4-465f-85b2-96ec527f6e5b", - "siteRegistry": false, - "dateNoted": "2016-03-27", - "parcelID": "20384", - "crownLandUsePIN": "18609", - "crownLandFileNumber": "17104", - "landDescription": "LOT 1 OF LOT 2 BLOCK 1 DISTRICT LOT 4 PLAN 8201" + "uuid": "f6b06204-4474-4b21-b52b-43357d147972", + "siteRegistry": true, + "dateNoted": "2015-11-01", + "parcelID": "15993", + "crownLandUsePIN": "15464", + "crownLandFileNumber": "17232", + "landDescription": "LOT 2 OF LOT 2 BLOCK 1 DISTRICT LOT 1 PLAN 6621" } ], "siteDisclosures": [ { - "uuid": "015f3ff6-5bce-41b3-867f-5f28bdea8f5a", + "uuid": "3646bbcb-ad04-4bf4-9cce-d4a15509239a", "siteRegistry": false, - "dateReceived": "2019-02-19", - "dateCompleted": "2018-06-20", - "dateEntered": "2015-06-20", - "dateRegistrar": "2013-12-27", - "dateLocalAuthorityReceived": "2018-11-21", - "summary": "Consectetur quaerat dolorem quidem animi repudiandae vel ea dolore.", - "informationUsed": "Aspernatur maiores enim enim dolor est sit debitis nemo.\nNecessitatibus saepe rem magni eos maiores.\nConsectetur tempore est impedit dicta autem in.", - "pastOrPresentOrders": "Suscipit sequi odit corporis asperiores consequuntur quasi.\nExpedita voluptas voluptatibus odio mollitia eaque.", + "dateReceived": "2021-06-25", + "dateCompleted": "2017-12-14", + "dateEntered": "2019-09-10", + "dateRegistrar": "2014-01-21", + "dateLocalAuthorityReceived": "2018-10-15", + "summary": "Quae unde aliquid fugit.\nNam excepturi vel.\nAliquam perferendis ipsa placeat temporibus quisquam et.", + "informationUsed": "Ex nulla ex ex.\nRatione voluptate ipsa eum dolor quia distinctio optio expedita.\nCorporis ipsam perspiciatis laboriosam dolorum vero et ad.\nAccusantium illum quas officia.\nAutem exercitationem accusamus dolore.", + "pastOrPresentOrders": "Hic consequuntur veniam commodi numquam.\nAd quaerat sint veniam nemo adipisci illum alias voluptatem.", "commercialAndIndustrialPurposes": [ { - "uuid": "cdf8eda5-a487-43fa-9a91-df48754d1494", + "uuid": "148c1171-6f50-4395-b816-ae906e7eff18", "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { - "uuid": "0fff631b-a15d-43dc-9960-38eefece5bfb", + "uuid": "40539d92-5fbe-423f-8125-03226dcdcbbf", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "eb3d618f-6a58-4e4b-b1c6-ef68a43e7122", - "scheduleReference": "F2*", + "uuid": "e9138473-7ef6-4791-b077-8f379c224225", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { - "uuid": "8e9ea863-0843-4ca3-9111-7fede34c5433", - "scheduleReference": "F1*", + "uuid": "6f2fbe9c-fd4d-4559-aea2-52661386fee8", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true + "siteRegistry": false } ] } ], "activityLog": [ { - "uuid": "189127fb-2623-47c5-8e0d-b0f580107183", - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "CASPER LOGAN", - "timestamp": "2014-07-12" - }, - { - "uuid": "e8d302ba-c5b9-41d2-a5ea-735476862f72", - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "COLLINS CHADD", - "timestamp": "2021-04-21" - }, - { - "uuid": "ac9a855c-2bc5-49b2-a7be-df74bc6d863d", + "uuid": "49706f2a-0b92-41ca-80cc-9614abac0415", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "WHITE MERLE", - "timestamp": "2021-12-31" - }, - { - "uuid": "a102a889-5ab6-4b65-a29c-2d309c17611a", - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "VONRUEDEN AIDA", - "timestamp": "2019-12-05" + "user": "ERDMAN MARJORY", + "timestamp": "2020-07-14" }, { - "uuid": "57f8abb6-5f72-4224-b2a6-6d557827a52d", + "uuid": "634a5a3d-7e46-48a1-b61a-6e0df081fa9a", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "MCKENZIE HAVEN", - "timestamp": "2019-05-12" + "user": "DURGAN ESTELL", + "timestamp": "2018-04-24" }, { - "uuid": "9c32efae-6d4a-42e8-bf4e-16da93c02699", - "siteRegistry": false, + "uuid": "8429490f-0546-4f76-82b7-fc010e55bdcf", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "WATSICA GREGG", - "timestamp": "2018-05-15" + "user": "QUITZON JARROD", + "timestamp": "2015-07-28" }, { - "uuid": "911fdbb6-e9f1-4cc9-997b-dd0750905a50", - "siteRegistry": false, + "uuid": "d24dacc8-c9d5-4187-a544-e2a78fc0dd1b", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "ZBONCAK ROBB", - "timestamp": "2017-08-25" + "user": "REICHEL MONTE", + "timestamp": "2022-10-09" }, { - "uuid": "60e39a2d-e5b1-4b1c-b2b9-e360659d82e1", + "uuid": "f555cbf5-67c9-44ba-8cdf-d51559ec3c02", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "RYAN MITCHELL", - "timestamp": "2023-01-23" + "user": "RUSSEL LAUREN", + "timestamp": "2021-07-17" }, { - "uuid": "4046f331-d850-44fc-a352-5c6caeda0d8f", + "uuid": "b66407ae-9ffe-417e-aee3-40e25a000147", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "BLOCK SAMMY", - "timestamp": "2015-12-25" + "user": "HOEGER LETITIA", + "timestamp": "2014-08-11" } ], "associatedSites": [ { - "uuid": "018f4662-b4f5-4ca2-90f0-f82307d86446", - "dateNoted": "2023-01-22", + "uuid": "ef53a969-ff84-407b-a115-894c31158701", + "dateNoted": "2016-01-21", + "notes": "", + "parcelID": "16851", + "siteID": "18748", + "siteRegistry": true + }, + { + "uuid": "d3e15d35-8f6d-48fa-958d-578a1318dec4", + "dateNoted": "2016-05-12", "notes": "", - "parcelID": "17899", - "siteID": "17608", + "parcelID": "18096", + "siteID": "20562", "siteRegistry": true } ] }, { - "uuid": "535ed476-8b54-4045-8d7f-b3391112a803", - "siteID": 20942, - "address": "5828 Koelpin Key", - "latitude": 57.6529, - "longitude": -132.5273, - "lastUpdated": "2022-11-16", - "city": "Lewisville", - "region": "Mainland/Southwest", - "victoriaFile": "26250-20/19489", + "uuid": "f1515fe0-d0db-43ef-9aee-e9ef4788992e", + "siteID": 18811, + "address": "713 Bailee Mountains", + "latitude": 58.2417, + "longitude": -124.2564, + "lastUpdated": "2016-11-26", + "city": "Mariliefurt", + "region": "Cariboo", + "victoriaFile": "26250-20/3794", "regionalFile": "N/A", "parcelIDs": [ - 4130669, - 8082402, - 368089, - 8873538, - 8060742 + 8802491, + 2691042, + 9545075, + 8206815, + 9763141 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "70e7f409-7488-4bba-ba6c-e0c90b4055e8", - "createdAt": "2023-06-06", - "completed": "2017-03-09", - "initiated": "2021-09-10", - "ministryContact": "ZEMLAK KEYSHAWN", + "uuid": "bb1865c0-92f2-4971-9b4c-ad0f0e0bcb37", + "createdAt": "2019-05-28", + "completed": "2017-06-07", + "initiated": "2015-03-14", + "ministryContact": "NADER LUCIUS", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -55340,44 +64523,44 @@ ], "notationParticipants": [ { - "uuid": "7990adaa-03c7-474e-9ced-244abf52d2c7", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "uuid": "c21caea7-ea33-4974-9f23-bd49edfe402f", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": false }, { - "uuid": "615feb97-6595-4d89-9277-75320b2b76f4", + "uuid": "9baa78d2-6b2c-47b7-a952-1901ac5beb10", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "5cc14632-cd96-485b-a28c-32539fc40f9e", + "uuid": "05f02adc-d67e-4ec3-91ee-fbdcc4675816", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false }, { - "uuid": "1b908e63-9052-471d-acb8-c7d79e93b4fd", + "uuid": "d9bb1176-e3d9-4cfa-ac95-2bf4d62cd278", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "9a3627fd-bce6-493e-8367-3d46f864392d", - "name": "SHELL CANADA PRODUCTS", + "uuid": "8ab5484d-b825-461b-865f-7ef0578946e4", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true } ], "siteRegistry": false }, { - "uuid": "cc6fdf7e-b2e6-43b2-9a2c-7bc304d84415", - "createdAt": "2023-01-28", - "completed": "2019-12-29", - "initiated": "2017-05-12", - "ministryContact": "HILLS CYNTHIA", + "uuid": "f8d81ca3-9cf9-4f72-91a7-99fb759dcd79", + "createdAt": "2021-07-19", + "completed": "2015-01-01", + "initiated": "2021-11-07", + "ministryContact": "MANTE MORTIMER", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -55386,44 +64569,32 @@ ], "notationParticipants": [ { - "uuid": "1ebb67c1-9f63-4db1-8d21-76b5ca234308", - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "16165642-1acd-4a50-86df-e86a029c6a0e", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "f1791d94-3abc-48dd-bb99-95089cf940a6", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "uuid": "10fcbc28-3a99-4537-a373-5ae24e595acf", + "uuid": "e400ffe8-b795-4270-b5aa-8ddcad0c083f", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "uuid": "92dda4ff-823e-440f-a52d-201ca427de9a", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "baee62e7-686d-4563-92cc-3e03cf3fd3d9", + "uuid": "acc81585-ce30-48e7-a2c3-a8272d3949c4", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "3930a05e-835d-4d6b-9990-0a062ba23515", - "createdAt": "2020-11-15", - "completed": "2014-07-14", - "initiated": "2014-04-03", - "ministryContact": "BREKKE SHANIYA", + "uuid": "e89dfbcf-0145-4a06-aa2c-aaec8d10644b", + "createdAt": "2022-04-23", + "completed": "2021-12-25", + "initiated": "2014-04-16", + "ministryContact": "HALVORSON JARRED", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -55432,32 +64603,32 @@ ], "notationParticipants": [ { - "uuid": "e630b40c-32e8-4224-b789-2d1342bc5c5e", + "uuid": "9825a199-6829-4037-8375-462c9208913d", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true + "role": "REQUESTED BY", + "siteRegistry": false }, { - "uuid": "2d8ad39e-d1eb-4328-be29-61d5563725f4", - "name": "SHELL CANADA PRODUCTS", + "uuid": "0a4654a0-85e4-4fa8-985e-ec71f5be84e5", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "d33a426e-8090-4a28-83c4-796bd80335b4", + "uuid": "5287b84a-3d37-40bb-8952-1ad33fd9d623", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false } ], "siteRegistry": false }, { - "uuid": "cad00725-3a8c-493e-b59f-2fffda8bb259", - "createdAt": "2017-02-25", - "completed": "2018-09-07", - "initiated": "2022-05-17", - "ministryContact": "HANE ALF", + "uuid": "cf2ef90e-abe8-45f6-9a2e-fd0b88c6c82d", + "createdAt": "2015-07-31", + "completed": "2022-07-01", + "initiated": "2022-04-09", + "ministryContact": "KRAJCIK ALLIE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -55466,16 +64637,34 @@ ], "notationParticipants": [ { - "uuid": "18d4009e-340d-4b1d-9ce4-d15ec6532b65", + "uuid": "b645c8c2-7481-4bb0-bb5c-8597d8cb89e1", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "uuid": "261e223c-6104-4790-8100-e1959fefeb18", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "15a66588-ad6b-4f71-8e4f-35c6a66a1710", + "uuid": "94b8e5b9-47c9-43dc-9c5f-aec35c5111d9", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "a0e91420-acba-4fc0-a929-5d6117f77b29", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false + }, + { + "uuid": "c0b29fa1-ed48-4f46-bb51-927db01c78cd", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true } ], "siteRegistry": true @@ -55483,194 +64672,347 @@ ], "participants": [ { - "uuid": "af298428-a73f-4dca-a3b5-9eeff4f5e065", - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2016-12-01", - "startDate": "2016-06-03", + "uuid": "4bb810fe-8a42-4d27-b607-f80fe706a5d1", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2014-03-22", + "startDate": "2014-04-21", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "362853f1-2ea0-42ca-94dd-1a1985ed885b", + "uuid": "a4a3830c-87fa-4df3-b8e1-79a5d38fc981", "name": "IPSUM", - "endDate": "2022-07-21", - "startDate": "2020-05-29", + "endDate": "2022-03-04", + "startDate": "2016-12-02", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": false } ], - "suspectLandUses": [ + "documents": [ { - "uuid": "1ac8a4b8-dd32-4dbb-969f-fded0ee2092a", + "uuid": "bee22031-3164-465f-8ef2-4750dbfb43d3", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-11-27 (described on Site Profile dated 2015-11-27)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "documentDate": "2017-01-26", + "receivedDate": "2014-03-17", + "uploadedDate": "2022-04-30", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "6844bad7-866d-4349-be07-3df46299053d", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": true, + "role": "AUTHOR" + } + ] }, { - "uuid": "5e6e880d-b2db-4db8-9968-e4e3831226f4", + "uuid": "e09cce5b-e2f4-493a-8935-3313216df472", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-05-29 (described on Site Profile dated 2022-05-29)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "documentDate": "2014-04-17", + "receivedDate": "2023-08-12", + "uploadedDate": "2022-03-20", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "95294168-1fa1-49ac-b758-33c704ed2865", + "name": "AMET, DOLOR SIT", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "3c1ee1b6-1046-4552-aaa8-b06b1650fafa", + "name": "AMET, DOLOR SIT", + "siteRegistry": false, + "role": "AUTHOR" + } + ] + }, + { + "uuid": "ebbab61f-dc14-4696-b819-ddd79c9837a2", + "siteRegistry": true, + "documentDate": "2021-05-16", + "receivedDate": "2020-02-21", + "uploadedDate": "2018-03-04", + "title": "Preliminary Site Investigation, Detailed Site Investigation and Remedial Plan for the Management Area adjacent to the Shell Site at 1503 West 41st Ave", + "participants": [ + { + "uuid": "583a0812-ceaa-45cf-9dde-6f3da730af93", + "name": "AMET, DOLOR SIT", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "9a1fd49e-3384-4715-9797-6a1b57acda81", + "name": "AMET, DOLOR SIT", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "09801816-5a86-45d2-a15e-7be48786487e", + "name": "IPSUM", + "siteRegistry": false, + "role": "AUTHOR" + } + ] + }, + { + "uuid": "57e7b0c6-8f3a-4878-8481-fa1eee8816b0", + "siteRegistry": true, + "documentDate": "2023-05-27", + "receivedDate": "2014-09-19", + "uploadedDate": "2014-10-06", + "title": "Summary of Site Conditions, 1537 W 41st Avenue, Vancouver", + "participants": [ + { + "uuid": "55be7fb4-b573-4cab-8654-347fac029a0b", + "name": "AMET, DOLOR SIT", + "siteRegistry": true, + "role": "AUTHOR" + } + ] } ], - "parcelDescriptions": [ + "suspectLandUses": [ + { + "uuid": "e84aa9f0-571c-41d1-a9de-e21c3e555c96", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2018-06-15 (described on Site Profile dated 2018-06-15)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, { - "uuid": "00113c48-15c2-47e0-8453-8b18b265ba85", + "uuid": "d540b5f6-2ca7-4c49-9aa7-cd2a20431c2b", "siteRegistry": true, - "dateNoted": "2023-05-18", - "parcelID": "19110", - "crownLandUsePIN": "18729", - "crownLandFileNumber": "18066", - "landDescription": "LOT 5 OF LOT 3 BLOCK 1 DISTRICT LOT 4 PLAN 7313" + "notes": "INSERTED FOR SITE PROFILE DATED 2017-05-07 (described on Site Profile dated 2017-05-07)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "uuid": "07d69ff2-603e-4046-9d27-c44debbe2862", + "uuid": "8757092d-ee69-44db-b10d-51d10a528628", "siteRegistry": false, - "dateNoted": "2016-01-30", - "parcelID": "15353", - "crownLandUsePIN": "18742", - "crownLandFileNumber": "17198", - "landDescription": "LOT 3 OF LOT 3 BLOCK 2 DISTRICT LOT 1 PLAN 3605" + "notes": "INSERTED FOR SITE PROFILE DATED 2014-05-07 (described on Site Profile dated 2014-05-07)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "uuid": "d2c195ed-11b8-4318-91a7-9944f3cf2c30", - "siteRegistry": true, - "dateNoted": "2020-12-15", - "parcelID": "16546", - "crownLandUsePIN": "16897", - "crownLandFileNumber": "20003", - "landDescription": "LOT 3 OF LOT 5 BLOCK 2 DISTRICT LOT 3 PLAN 3776" + "uuid": "c0f58172-7669-4288-8e31-1dcd4b7f45a8", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2020-02-08 (described on Site Profile dated 2020-02-08)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "uuid": "51f20898-6ff4-4676-8b32-06392ee0aa68", + "uuid": "d0dc35ef-4ff2-41b1-8150-824391587fea", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2016-08-01 (described on Site Profile dated 2016-08-01)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + } + ], + "parcelDescriptions": [ + { + "uuid": "5e733461-1ede-486f-931f-a3cfc930ec06", "siteRegistry": false, - "dateNoted": "2022-12-24", - "parcelID": "17569", - "crownLandUsePIN": "20845", - "crownLandFileNumber": "19116", - "landDescription": "LOT 5 OF LOT 5 BLOCK 3 DISTRICT LOT 2 PLAN 3739" + "dateNoted": "2021-04-28", + "parcelID": "18509", + "crownLandUsePIN": "18462", + "crownLandFileNumber": "16687", + "landDescription": "LOT 4 OF LOT 5 BLOCK 4 DISTRICT LOT 5 PLAN 5031" + }, + { + "uuid": "a72b6e16-90f9-4659-a0b3-a4d09a92cab6", + "siteRegistry": true, + "dateNoted": "2015-05-15", + "parcelID": "16175", + "crownLandUsePIN": "18211", + "crownLandFileNumber": "20595", + "landDescription": "LOT 3 OF LOT 3 BLOCK 2 DISTRICT LOT 4 PLAN 6684" } ], "siteDisclosures": [ { - "uuid": "a9eb1960-0922-4764-b0a7-cdbf3d251665", + "uuid": "6f2ffd0d-637d-4aa3-a9de-4cb9611f1ddc", "siteRegistry": false, - "dateReceived": "2018-06-20", - "dateCompleted": "2020-03-06", - "dateEntered": "2013-12-09", - "dateRegistrar": "2023-05-21", - "dateLocalAuthorityReceived": "2017-06-18", - "summary": "Cum asperiores nulla impedit.\nRepellendus nesciunt placeat ab in tenetur voluptate commodi.", - "informationUsed": "Minus debitis id esse doloremque error voluptates aperiam.\nEveniet cum nam illum esse magni ab.\nEa iste culpa.\nQuod consequatur ducimus aliquam fuga optio.", - "pastOrPresentOrders": "Sit fuga distinctio ratione temporibus iusto libero officiis minus asperiores.", + "dateReceived": "2023-01-11", + "dateCompleted": "2019-01-13", + "dateEntered": "2023-02-05", + "dateRegistrar": "2014-03-27", + "dateLocalAuthorityReceived": "2021-10-26", + "summary": "Repellendus deserunt nihil nemo ipsum quisquam ducimus amet nobis doloremque.\nMaiores similique illo molestiae blanditiis culpa.", + "informationUsed": "Adipisci excepturi a dignissimos tenetur possimus.\nEius natus fuga dolore sequi ipsa cupiditate nesciunt voluptatem quibusdam.\nSed quo quia amet aliquam sint ipsa corrupti eum laborum.\nEos error distinctio dicta dignissimos vel natus enim.", + "pastOrPresentOrders": "Sequi hic deleniti voluptas illo dignissimos.\nVeniam dolores corporis.", "commercialAndIndustrialPurposes": [ { - "uuid": "ea3a5c17-a111-4dba-81a5-7c176cc1b0fd", - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "uuid": "3c7b8b69-3b42-42ef-bb8f-97a8a61d8684", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { - "uuid": "59719899-a38a-4526-aebe-e18c0a7f3f15", - "scheduleReference": "F1*", + "uuid": "ae17c683-1aa3-4e41-a989-651b4dda7642", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { - "uuid": "b3c78daa-0e34-4128-abd5-496448cf64bb", + "uuid": "3cf698c2-52c3-4d4a-b01d-b1106e0311f6", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + } + ] + }, + { + "uuid": "f7c9dde5-33f9-4773-9c2b-eee84556eca5", + "siteRegistry": false, + "dateReceived": "2017-10-19", + "dateCompleted": "2018-06-19", + "dateEntered": "2016-12-23", + "dateRegistrar": "2016-10-10", + "dateLocalAuthorityReceived": "2023-01-11", + "summary": "Pariatur optio deleniti harum voluptatibus in sequi.\nTemporibus culpa laboriosam autem molestiae repudiandae.", + "informationUsed": "Consectetur aspernatur autem mollitia iure exercitationem.\nNecessitatibus earum pariatur sit ratione inventore.\nId possimus cum laudantium voluptates nobis.", + "pastOrPresentOrders": "Adipisci maxime quia.\nVeritatis recusandae est fugiat cumque.", + "commercialAndIndustrialPurposes": [ + { + "uuid": "451f3626-5347-441b-ad70-4b814c14aedd", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "uuid": "8938ea08-d061-4493-8ce1-5a4a5b411270", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { - "uuid": "737403ed-abd8-4c56-9c2e-eaa47ceed50d", - "scheduleReference": "F1*", + "uuid": "50bed30c-373d-4164-8c63-bfe8db7048d3", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true + "siteRegistry": false } ] } ], "activityLog": [ { - "uuid": "e1556bd3-b5c4-41aa-b621-fcdcff2c2053", + "uuid": "39e1eb53-a8f9-4d79-8156-3f5575c08d23", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "GREENFELDER MICHALE", - "timestamp": "2019-07-17" + "user": "BALISTRERI POLLY", + "timestamp": "2023-01-10" }, { - "uuid": "b9b86fa4-5dc5-4888-8060-075aaeefd0ec", - "siteRegistry": false, + "uuid": "d94e3cba-a6aa-4587-a926-dcc10e18016b", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "STOKES CYDNEY", - "timestamp": "2021-01-17" + "user": "MCDERMOTT NOEMI", + "timestamp": "2014-05-14" }, { - "uuid": "87a430cf-da01-4482-96ef-044b5e7e27d4", + "uuid": "e6d86801-4ff0-45df-93cc-72d0adb0644d", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "SCHNEIDER ABDUL", - "timestamp": "2021-08-11" + "user": "BARTOLETTI ANTONINA", + "timestamp": "2022-10-26" + }, + { + "uuid": "e36c8686-b2ca-48ee-9423-29f918b9f404", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "HARRIS ALEXANDRE", + "timestamp": "2018-12-10" }, { - "uuid": "96b470bc-60e3-4745-8d86-be14105a9029", + "uuid": "30b66ba5-d2cc-4a79-b944-a98673133a2c", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "KRAJCIK EVELINE", + "timestamp": "2014-11-29" + }, + { + "uuid": "f27e4a97-bbbd-484d-9e08-1ac4398d128e", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "BOGAN GLEN", - "timestamp": "2022-12-13" + "user": "CARTER MINA", + "timestamp": "2017-12-22" + }, + { + "uuid": "9ef6541a-3b5e-4298-8eb0-15fc6e892e19", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "BAUCH-LESCH EDWINA", + "timestamp": "2021-03-06" + }, + { + "uuid": "9cf6592f-07b0-48d7-bd86-ae9e4f285ed9", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "KERTZMANN CAMILLE", + "timestamp": "2020-11-04" }, { - "uuid": "73864fd4-e6be-4879-9ff3-7373df7ebe0e", + "uuid": "1b388db0-7e45-44bb-a433-a04961e1c54c", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "SWANIAWSKI MARIANO", - "timestamp": "2016-01-01" + "user": "MAYERT PRINCESS", + "timestamp": "2013-11-26" + }, + { + "uuid": "175692d1-1fd4-4a8e-8a3a-b986262647e9", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "MACGYVER HELEN", + "timestamp": "2021-05-03" } ], "associatedSites": [ { - "uuid": "e58d5ad3-c49d-43b3-a31b-9ba4fa214323", - "dateNoted": "2023-05-10", + "uuid": "d1a1bbce-0ca0-4a30-a8cc-a4c0e9b4e64a", + "dateNoted": "2022-06-07", "notes": "", - "parcelID": "17166", - "siteID": "15914", + "parcelID": "15263", + "siteID": "19330", "siteRegistry": false + }, + { + "uuid": "a1663291-d177-4b48-93af-b5a0f56aa65f", + "dateNoted": "2017-11-17", + "notes": "", + "parcelID": "15394", + "siteID": "20484", + "siteRegistry": true } ] }, { - "uuid": "31846fef-05ec-4f52-be8e-a94c1fa31347", - "siteID": 18760, - "address": "58035 Miller Ranch", - "latitude": 57.8275, - "longitude": -131.1546, - "lastUpdated": "2014-01-28", - "city": "New Chanelleview", + "uuid": "7683c41a-e49c-4b3f-b658-f48f1490eda3", + "siteID": 17476, + "address": "14835 Auer Meadows", + "latitude": 56.8129, + "longitude": -134.6332, + "lastUpdated": "2021-05-13", + "city": "Caldwell", "region": "Mainland/Southwest", - "victoriaFile": "26250-20/7007", + "victoriaFile": "26250-20/15975", "regionalFile": "N/A", "parcelIDs": [ - 5606600, - 6626610, - 9402197, - 504096, - 6659236 + 4117685, + 527918, + 5555579, + 9990867, + 7535281 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "ea5e0dc9-e427-45f4-9e76-8564e46443ee", - "createdAt": "2021-02-26", - "completed": "2021-08-31", - "initiated": "2022-06-17", - "ministryContact": "ERNSER KENDRA", + "uuid": "3a651a6b-dd7a-4c1c-b0a0-45375569899f", + "createdAt": "2020-06-11", + "completed": "2021-08-27", + "initiated": "2015-01-28", + "ministryContact": "HELLER KAREN", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -55679,44 +65021,26 @@ ], "notationParticipants": [ { - "uuid": "5e4c532a-ef77-4d87-a383-bdac845fb7ca", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "uuid": "3d3282e7-3566-47fa-9e3f-2ab65e0c0cd0", + "uuid": "81dcb250-5fa8-4fbb-b99d-3beb300113c7", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false }, { - "uuid": "eef380b3-9cbc-4ee3-a201-cdd674382b9a", + "uuid": "60ab6900-6aeb-4af0-8fb6-ae606337b940", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true - }, - { - "uuid": "ce1142e1-07fb-44b2-a89c-aa23a4152fe1", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "uuid": "85cff2de-ac8b-4bfe-9038-a108bdc1b4bc", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false } ], "siteRegistry": false }, { - "uuid": "60d9c579-1f4b-4cd7-834e-cad228d51cf0", - "createdAt": "2014-05-21", - "completed": "2018-11-01", - "initiated": "2022-04-20", - "ministryContact": "STROSIN IMANI", + "uuid": "fbe8bf06-b03c-4c37-b227-3b4f15b73d0b", + "createdAt": "2016-04-15", + "completed": "2021-01-07", + "initiated": "2014-08-10", + "ministryContact": "RYAN DEBORAH", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -55725,44 +65049,32 @@ ], "notationParticipants": [ { - "uuid": "3483fdfa-799b-4521-a3af-b4d93f98b26e", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "uuid": "55fb2132-199f-4498-9776-bed13a0c577c", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "f0977f7a-ff10-4a34-ba12-4e6f1aa76f51", + "uuid": "c586c78e-7136-4a58-a494-6ca2c1700f80", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "e7624f25-4bcd-4fba-bb96-59f7a8de082c", + "uuid": "4bd03c04-4a51-4a69-b281-a897604a763b", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "uuid": "2110a9f8-103a-4e2c-845d-00ef49326be3", - "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true - }, - { - "uuid": "4546f71c-c3c7-4999-a314-428aa8061838", - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false } ], "siteRegistry": false }, { - "uuid": "f07a5099-8b2f-4f23-be7c-119bff996fb4", - "createdAt": "2016-09-27", - "completed": "2017-10-13", - "initiated": "2014-10-24", - "ministryContact": "KING LENORA", + "uuid": "1a4dce5a-7a54-4190-b1a7-ca5ba854f263", + "createdAt": "2020-12-01", + "completed": "2022-02-12", + "initiated": "2021-05-19", + "ministryContact": "STEUBER YESENIA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -55771,44 +65083,38 @@ ], "notationParticipants": [ { - "uuid": "1e549534-065c-493a-8b6b-afbd17dd7ab3", - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "uuid": "a2942451-b855-4ccd-8323-b9bbd09927a5", - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false + "uuid": "565f6896-be09-4b03-9428-4b8814f3a463", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true }, { - "uuid": "f74c32dd-b308-4073-be1d-28827ee28d60", - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "uuid": "7b128f80-f744-456f-b04a-0d921d15dbb9", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", "siteRegistry": false }, { - "uuid": "7d077b53-3112-4ffd-95a7-2e7f0b46e039", + "uuid": "d994326b-ce00-46ee-a25d-a1afc1a089ed", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true }, { - "uuid": "ecc22b34-ba4a-4ae7-a10e-11bac006fd0e", + "uuid": "a3e4925b-bfa9-4226-91c2-029bdaf66fc9", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "ca5f7242-b630-46bf-9c08-5c179ce229be", - "createdAt": "2021-08-30", - "completed": "2021-02-28", - "initiated": "2020-07-29", - "ministryContact": "HACKETT GRAYCE", + "uuid": "9f456546-5291-4755-8645-8bdd2967920d", + "createdAt": "2017-10-01", + "completed": "2017-02-09", + "initiated": "2023-05-27", + "ministryContact": "DICKINSON PATTIE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -55817,13 +65123,25 @@ ], "notationParticipants": [ { - "uuid": "887a7d9f-860a-494e-be91-490d5d840898", + "uuid": "68718697-8c98-491b-a368-1f67f56a5632", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "63e2e334-18cd-4937-ac50-a2ecba2e5022", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "uuid": "59868394-62f6-4aa6-a246-2a096693c157", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "fc5fa64b-cae9-42a9-9304-1deae0890bef", + "uuid": "109c9cb5-a27f-4fda-9fc3-7ebb741e6091", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false @@ -55832,11 +65150,11 @@ "siteRegistry": true }, { - "uuid": "631b84fa-108d-490e-a8c9-3016cb3700ac", - "createdAt": "2018-02-17", - "completed": "2023-01-05", - "initiated": "2019-09-19", - "ministryContact": "POUROS ANGEL", + "uuid": "8a7818e8-fc28-49e8-91a2-9c4b0ee314a5", + "createdAt": "2022-08-16", + "completed": "2018-03-24", + "initiated": "2021-11-19", + "ministryContact": "SCHIMMEL ZANDER", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -55845,32 +65163,20 @@ ], "notationParticipants": [ { - "uuid": "503af1ec-7e3c-4612-9a4d-013a6913eff7", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "uuid": "c861c1f9-95ad-47fb-9ebc-cee05d86e6dd", + "uuid": "61c9271d-a207-44ef-a58e-5dc75851ebfc", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true }, { - "uuid": "f3f3cb50-e887-48ed-a44a-b9060b1c09ed", - "name": "SHELL CANADA PRODUCTS", + "uuid": "bd5dc048-0b97-4f0f-bf4d-6837fd015d19", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "e5ff4764-eb98-4e97-a465-f56304926979", + "uuid": "94a49927-9e58-4e7b-b2c8-e9bcdca06058", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "uuid": "0b6597de-4613-43bf-bda0-4adcac8e4e9c", - "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false } @@ -55880,127 +65186,170 @@ ], "participants": [ { - "uuid": "3610f7da-e27e-47b3-af29-3a929a5b44d9", - "name": "SHELL CANADA PRODUCTS", - "endDate": "2021-08-27", - "startDate": "2020-06-17", + "uuid": "3fab3953-1dce-4543-a802-b1a8d5e7ef40", + "name": "IPSUM", + "endDate": "2020-05-23", + "startDate": "2016-02-22", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": false }, { - "uuid": "d54915d7-e18a-4e0a-8ff3-cc58b9dc296c", - "name": "SHELL CANADA PRODUCTS", - "endDate": "2017-03-20", - "startDate": "2014-08-18", + "uuid": "54e0da62-eb2f-448d-bb28-0827b8a29b6e", + "name": "AMET, DOLOR SIT", + "endDate": "2021-12-09", + "startDate": "2020-04-26", "notes": "", "roles": [ "EMPLOYEE" ], + "siteRegistry": true + }, + { + "uuid": "5c3f27b7-5fe5-4dd9-8480-0f6488a9017b", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2020-05-02", + "startDate": "2020-02-02", + "notes": "", + "roles": [ + "ORGANIZATION" + ], "siteRegistry": false } ], + "documents": [ + { + "uuid": "ce6915c8-c88b-4fb8-ae4b-bc74b59195ed", + "siteRegistry": true, + "documentDate": "2017-06-13", + "receivedDate": "2017-05-25", + "uploadedDate": "2014-08-01", + "title": "Preliminary Site Investigation, Detailed Site Investigation and Remedial Plan for the Management Area adjacent to the Shell Site at 1503 West 41st Ave", + "participants": [ + { + "uuid": "50572ed8-bdfc-474d-91b6-a25b96365cc1", + "name": "AMET, DOLOR SIT", + "siteRegistry": true, + "role": "AUTHOR" + } + ] + }, + { + "uuid": "c247c298-f5d8-4751-a86e-b0e024d7b77a", + "siteRegistry": true, + "documentDate": "2013-12-12", + "receivedDate": "2015-04-01", + "uploadedDate": "2021-12-15", + "title": "Summary of Site Conditions, 1537 W 41st Avenue, Vancouver", + "participants": [ + { + "uuid": "0458fb67-6a64-4de8-abdc-a5f6ff00a2c6", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": true, + "role": "AUTHOR" + } + ] + } + ], "suspectLandUses": [ { - "uuid": "fe9e1832-0005-446e-ab27-84362ff00736", + "uuid": "8f72b394-e099-4425-9272-b8ad6d15c910", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-12-22 (described on Site Profile dated 2022-12-22)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "notes": "INSERTED FOR SITE PROFILE DATED 2017-06-13 (described on Site Profile dated 2017-06-13)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "uuid": "b880ce48-bc9e-4790-bfab-5ccb006e669f", + "uuid": "f2141c0f-c4b0-4afa-884f-7d46e439fc4a", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-08-26 (described on Site Profile dated 2021-08-26)", + "notes": "INSERTED FOR SITE PROFILE DATED 2018-01-11 (described on Site Profile dated 2018-01-11)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "uuid": "75b9d903-825b-4072-9bad-56c18f292597", + "uuid": "285e8afa-66e8-4d7c-b6e3-eca373fc5636", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-03-27 (described on Site Profile dated 2022-03-27)", + "notes": "INSERTED FOR SITE PROFILE DATED 2013-12-01 (described on Site Profile dated 2013-12-01)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "uuid": "328794ef-663b-4d0d-acce-4879a8f51eac", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2016-07-26 (described on Site Profile dated 2016-07-26)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "uuid": "9b4372a2-f2e8-4c77-9c25-9a31879f064e", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2021-12-05 (described on Site Profile dated 2021-12-05)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], "parcelDescriptions": [ { - "uuid": "0cc6364b-fa37-4375-9337-f9ad53884f44", + "uuid": "069b2203-a273-4cd7-bb21-4e32a4061c5d", "siteRegistry": false, - "dateNoted": "2022-06-25", - "parcelID": "16964", - "crownLandUsePIN": "19793", - "crownLandFileNumber": "16477", - "landDescription": "LOT 4 OF LOT 1 BLOCK 1 DISTRICT LOT 3 PLAN 8878" + "dateNoted": "2018-09-23", + "parcelID": "17776", + "crownLandUsePIN": "20825", + "crownLandFileNumber": "15292", + "landDescription": "LOT 2 OF LOT 5 BLOCK 1 DISTRICT LOT 5 PLAN 8143" }, { - "uuid": "37ec66f8-563d-4379-a3f3-05609db9705e", + "uuid": "ea22850a-f0d9-4677-ae3b-9cafe767e815", "siteRegistry": false, - "dateNoted": "2023-05-25", - "parcelID": "16605", - "crownLandUsePIN": "18061", - "crownLandFileNumber": "18424", - "landDescription": "LOT 1 OF LOT 2 BLOCK 4 DISTRICT LOT 4 PLAN 6388" + "dateNoted": "2018-01-07", + "parcelID": "18463", + "crownLandUsePIN": "18659", + "crownLandFileNumber": "20872", + "landDescription": "LOT 3 OF LOT 1 BLOCK 5 DISTRICT LOT 3 PLAN 7092" + }, + { + "uuid": "e3fcee74-ee39-4fe8-b5ce-1246ea220273", + "siteRegistry": true, + "dateNoted": "2015-05-05", + "parcelID": "16843", + "crownLandUsePIN": "18791", + "crownLandFileNumber": "15633", + "landDescription": "LOT 1 OF LOT 3 BLOCK 3 DISTRICT LOT 4 PLAN 4350" + }, + { + "uuid": "2515f4ee-d8ea-4f3c-8ea1-d3e2fb899f06", + "siteRegistry": false, + "dateNoted": "2016-12-13", + "parcelID": "15537", + "crownLandUsePIN": "15898", + "crownLandFileNumber": "20635", + "landDescription": "LOT 1 OF LOT 3 BLOCK 1 DISTRICT LOT 4 PLAN 3819" } ], "siteDisclosures": [ { - "uuid": "3366ab3c-e16e-48e5-a180-978ca004f487", - "siteRegistry": true, - "dateReceived": "2015-01-25", - "dateCompleted": "2018-05-07", - "dateEntered": "2022-03-01", - "dateRegistrar": "2018-09-03", - "dateLocalAuthorityReceived": "2019-06-22", - "summary": "Perspiciatis eveniet dicta ut assumenda.", - "informationUsed": "Totam assumenda eum neque fugiat accusamus necessitatibus pariatur.\nRatione corporis et autem deserunt deserunt itaque ea.\nDolor consectetur provident aspernatur odio facilis.\nNatus eligendi veritatis tempora laboriosam quod saepe.\nPerspiciatis enim molestiae officia natus.", - "pastOrPresentOrders": "Consequuntur repudiandae incidunt expedita consectetur dolore sapiente maiores.\nIste animi doloremque eveniet adipisci assumenda commodi blanditiis.\nModi omnis ipsa totam.", + "uuid": "d4b5df30-1768-4e5f-ad6a-71f7b2745182", + "siteRegistry": false, + "dateReceived": "2016-11-17", + "dateCompleted": "2018-10-21", + "dateEntered": "2021-08-08", + "dateRegistrar": "2019-02-16", + "dateLocalAuthorityReceived": "2014-09-03", + "summary": "Doloribus quis culpa alias ab.", + "informationUsed": "Ducimus tempore dolorum repellendus molestias fugiat dolores harum optio.\nIn eum quo quae quam.\nVelit neque quia error officia ex quia adipisci eveniet modi.\nIpsa quisquam saepe autem hic nostrum.", + "pastOrPresentOrders": "Deleniti quis quis minima sequi labore adipisci inventore error.", "commercialAndIndustrialPurposes": [ { - "uuid": "c69a4f26-f64c-48fc-9531-c943b5d23823", - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false - }, - { - "uuid": "69f6299f-8c0e-49f2-bf05-89719edce2ac", - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true - }, - { - "uuid": "69e07889-e300-4cc2-84b7-073a55392700", + "uuid": "0b870aa3-1cc2-490d-b695-3efbef88e0e2", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { - "uuid": "65ba99e5-9925-4403-928f-93e28f68e850", + "uuid": "54927377-2998-48cd-901e-c22428c0d54c", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false - } - ] - }, - { - "uuid": "28dffa23-c3c4-4b3c-93a0-f9cddf0019c5", - "siteRegistry": false, - "dateReceived": "2022-03-20", - "dateCompleted": "2014-01-16", - "dateEntered": "2014-08-20", - "dateRegistrar": "2013-11-11", - "dateLocalAuthorityReceived": "2014-06-21", - "summary": "Molestias quam pariatur enim maiores quisquam vero.\nLaboriosam unde sit pariatur quae perferendis ex nisi delectus.\nRem et et laudantium.", - "informationUsed": "Minima cum ratione soluta deleniti fuga quis distinctio libero.\nDolores autem cum explicabo facilis.\nTenetur excepturi eligendi dolor hic quae soluta deserunt placeat.", - "pastOrPresentOrders": "Neque rerum explicabo ut quo natus dignissimos eum explicabo aperiam.\nDolore et minima.", - "commercialAndIndustrialPurposes": [ - { - "uuid": "632730de-716c-49c1-a7b5-7c484e22bb5a", - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "9b2e38ae-de08-4f49-9b14-b3332c076f11", + "uuid": "00534752-3dd4-4a33-b90e-7c852881b2e6", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true @@ -56010,99 +65359,169 @@ ], "activityLog": [ { - "uuid": "d57acd41-1a43-4775-86a2-774a7ae80737", + "uuid": "0565319e-707e-411c-8f17-31a1065c2f6d", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "O'REILLY CLAUDIE", - "timestamp": "2020-10-23" + "user": "SCHULIST BRENT", + "timestamp": "2016-01-20" }, { - "uuid": "f86fa091-d124-4c41-a2b9-11ff05d32054", + "uuid": "1c27e305-0946-4814-826d-560bf220501f", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "CREMIN MARC", + "timestamp": "2021-04-28" + }, + { + "uuid": "a3044f58-84a1-4c2b-985f-9592ce239b19", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "VEUM DELLA", + "timestamp": "2022-06-28" + }, + { + "uuid": "3903038d-311b-4fcd-9052-4b117e8cbeb4", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "SAUER EMMALEE", - "timestamp": "2015-07-26" + "user": "KRIS WILFRED", + "timestamp": "2021-06-09" }, { - "uuid": "85aaf0d8-20fa-4b7a-ad11-e87059c80a6f", + "uuid": "c8f2f7e1-6f32-4590-884a-2b813b895381", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "NICOLAS TERESA", - "timestamp": "2020-09-19" + "user": "HAND JOVAN", + "timestamp": "2021-11-16" }, { - "uuid": "b5062d48-a466-4816-82d3-ae522cd2f65e", + "uuid": "2c8ed75d-cc8f-4d9b-ac8b-c2e1e4e3a884", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "BARROWS JEREMIE", - "timestamp": "2013-12-15" + "user": "JONES ELLIS", + "timestamp": "2017-02-03" }, { - "uuid": "349b0a6d-39ff-4b62-a04b-e0734e047dde", - "siteRegistry": true, + "uuid": "d4d5e549-292d-4868-981e-dc7aa658e961", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "ZEMLAK OWEN", - "timestamp": "2021-11-27" + "user": "KUNDE BRYCEN", + "timestamp": "2022-01-07" }, { - "uuid": "b90fd8ad-d124-40ca-b5cb-cc073831be55", + "uuid": "bd78e2f1-1497-4ba7-995b-014d53218abc", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "KSHLERIN ELNA", - "timestamp": "2020-07-27" + "user": "ROOB-LEHNER MEGHAN", + "timestamp": "2019-02-20" }, { - "uuid": "a11b682c-d74b-4349-b154-1cc47191c41d", - "siteRegistry": false, + "uuid": "97481c08-4871-4ba9-988c-7dc695603fa1", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "BOYER GARRISON", - "timestamp": "2016-04-09" + "user": "SCHAMBERGER CLEMENS", + "timestamp": "2023-07-28" }, { - "uuid": "1a4d9a7a-3150-414c-b273-9721127e1a6f", - "siteRegistry": true, + "uuid": "41424d4c-ccd1-48c9-9e9f-c205e64d5a86", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "OSINSKI-HEATHCOTE BERRY", - "timestamp": "2020-08-01" + "user": "HEANEY MARIAM", + "timestamp": "2019-07-03" } ], "associatedSites": [ { - "uuid": "709b396a-8e22-46be-bf4c-87dbda3cf4de", - "dateNoted": "2016-07-24", + "uuid": "1c77adb1-928f-42a4-b225-0ff379348f18", + "dateNoted": "2021-07-23", "notes": "", - "parcelID": "20790", - "siteID": "19572", - "siteRegistry": false + "parcelID": "15502", + "siteID": "16804", + "siteRegistry": true + }, + { + "uuid": "55420941-1eb3-4c4a-b97a-74a5e8ecf5e2", + "dateNoted": "2015-01-12", + "notes": "", + "parcelID": "19115", + "siteID": "15676", + "siteRegistry": true + }, + { + "uuid": "a96edf35-9bdf-4b04-b0c7-e5f4b626b713", + "dateNoted": "2013-11-04", + "notes": "", + "parcelID": "18910", + "siteID": "20978", + "siteRegistry": true } ] }, { - "uuid": "5809dd6e-eea7-4c54-a2a9-140e75964355", - "siteID": 17172, - "address": "3589 Glover Knolls", - "latitude": 52.5692, - "longitude": -119.7641, - "lastUpdated": "2017-05-23", - "city": "Port Kennedistad", + "uuid": "f6c29db7-17e6-44ca-9d79-00d4ab901eab", + "siteID": 18030, + "address": "14898 Hintz Brook", + "latitude": 53.4839, + "longitude": -131.0485, + "lastUpdated": "2016-06-18", + "city": "Lake Deltahaven", "region": "Kootenay", - "victoriaFile": "26250-20/6921", + "victoriaFile": "26250-20/9450", "regionalFile": "N/A", "parcelIDs": [ - 3623243, - 9523337, - 5285371, - 6152616, - 4883608 + 8150127, + 140374, + 768645, + 462120, + 2636315 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "807503fd-23aa-46fd-b27e-6fff3126e465", - "createdAt": "2016-04-04", - "completed": "2016-01-04", - "initiated": "2016-05-29", - "ministryContact": "LANGWORTH DIEGO", + "uuid": "5b2d15eb-abf7-40da-b6d3-29060c909b67", + "createdAt": "2020-10-03", + "completed": "2019-02-04", + "initiated": "2023-07-18", + "ministryContact": "LUETTGEN LEANNE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "uuid": "261e244d-86c8-416d-8f63-abcbf99ee571", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "uuid": "990e34f8-596e-4d4e-8a41-ed75b4586aa1", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "uuid": "f2b1514a-86ee-45d9-9dab-6b485c6a2387", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "f7849165-adda-43b6-9ade-954ad0ed4cf7", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "uuid": "83e58f37-987f-46e7-b732-52bd20973da4", + "createdAt": "2014-03-20", + "completed": "2013-12-03", + "initiated": "2015-09-08", + "ministryContact": "WEIMANN CARLOTTA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -56111,32 +65530,26 @@ ], "notationParticipants": [ { - "uuid": "95108209-5337-4105-9419-3ebb00a34b72", + "uuid": "1c724dac-1186-4308-924c-cc6fa29d7409", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true + "role": "REQUESTED BY", + "siteRegistry": false }, { - "uuid": "40f6cb4a-2a78-417e-ac9f-b1347be9dd8b", + "uuid": "3521b7d8-e36b-4182-8196-329fdc506c50", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true - }, - { - "uuid": "72b57d79-43b5-4dc5-839e-c3f216517204", - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false } ], "siteRegistry": true }, { - "uuid": "1b2e0a8a-9015-4277-ad57-05bf002f9583", - "createdAt": "2021-11-12", - "completed": "2019-06-15", - "initiated": "2022-02-20", - "ministryContact": "JASKOLSKI MIKE", + "uuid": "474a5fb8-dffb-41eb-971e-6bbcdd4aee47", + "createdAt": "2023-01-17", + "completed": "2023-10-03", + "initiated": "2015-03-06", + "ministryContact": "BODE BRANSON", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -56145,32 +65558,38 @@ ], "notationParticipants": [ { - "uuid": "48d22782-7656-470e-8ab0-b540fb03a9a4", + "uuid": "c86276e9-14c2-4ae1-8139-4f11218f2979", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "uuid": "dc304c36-90c5-4379-9d27-f8f84c37209a", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "b946698d-92d9-4de9-9b66-a43428d9dbda", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "uuid": "aeb1da47-361c-4945-a7cd-4e772faa3470", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": false }, { - "uuid": "1c36526e-6f7d-417b-aa5c-50b4faa08397", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "uuid": "bcf3053d-31e4-4764-9fc8-0fbdf5a1aaf0", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": true } ], "siteRegistry": false }, { - "uuid": "02917747-20eb-472e-bacc-3c3c0bba2df5", - "createdAt": "2014-10-27", - "completed": "2019-04-07", - "initiated": "2015-06-02", - "ministryContact": "HARTMANN EVIE", + "uuid": "f422d363-7932-456b-a354-5f22128d36ce", + "createdAt": "2016-10-08", + "completed": "2013-11-10", + "initiated": "2018-09-27", + "ministryContact": "SAWAYN LONZO", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -56179,19 +65598,19 @@ ], "notationParticipants": [ { - "uuid": "3634ff60-6605-4308-af72-c406ec06a0fa", + "uuid": "818a5769-b81f-4534-9c1f-9c820b26742e", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true }, { - "uuid": "e9144620-f795-45b1-9993-4825740cb148", + "uuid": "843b6460-e3d9-43a8-92fb-4fea0356055b", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "3f471839-5a73-46e4-8cd2-dec2577a2ffd", + "uuid": "81cd1664-239d-48b3-9c4e-018e687ac0b2", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true @@ -56202,10 +65621,10 @@ ], "participants": [ { - "uuid": "89fff29e-7a8d-45c4-952f-1b6abcfc42e7", + "uuid": "269ff348-89b5-43e7-90fc-1caaa960a62a", "name": "IPSUM", - "endDate": "2021-11-13", - "startDate": "2018-12-31", + "endDate": "2021-09-11", + "startDate": "2016-07-07", "notes": "", "roles": [ "ORGANIZATION" @@ -56213,255 +65632,336 @@ "siteRegistry": false }, { - "uuid": "48a3203e-4136-4560-9498-c63a206b3aff", - "name": "SHELL CANADA PRODUCTS", - "endDate": "2016-02-12", - "startDate": "2014-02-16", + "uuid": "eb950928-54fc-47b0-93cb-9359a0136656", + "name": "AMET, DOLOR SIT", + "endDate": "2021-03-12", + "startDate": "2020-03-14", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": true } ], - "suspectLandUses": [ + "documents": [ { - "uuid": "195d1de2-4e45-4275-9d6c-aceaaf923eb2", + "uuid": "7b5cbcbe-44fc-4ea1-ba89-1ed413eaf554", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-05-19 (described on Site Profile dated 2018-05-19)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "documentDate": "2018-03-27", + "receivedDate": "2021-04-11", + "uploadedDate": "2018-11-30", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "846826a9-fdc0-4571-b07c-e9dc7cc8e4fa", + "name": "AMET, DOLOR SIT", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "aa062712-8bef-4fc0-b505-0f52986b5a65", + "name": "IPSUM", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "ff2591c9-2fde-41ae-afba-4645f302ae6e", + "name": "IPSUM", + "siteRegistry": false, + "role": "AUTHOR" + } + ] + }, + { + "uuid": "6ad319d7-8478-4776-ba28-9f65304fb469", + "siteRegistry": false, + "documentDate": "2018-08-05", + "receivedDate": "2018-10-15", + "uploadedDate": "2017-04-02", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "9cb35023-65bc-4896-a43c-4766c46997fd", + "name": "IPSUM", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "9633c96d-2bd3-486f-b500-b220364044b1", + "name": "AMET, DOLOR SIT", + "siteRegistry": true, + "role": "AUTHOR" + } + ] }, { - "uuid": "a3ca71f7-6628-4c04-961a-782b29452671", + "uuid": "87d209bf-e0df-4472-8f50-297ba5c44387", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-04-21 (described on Site Profile dated 2021-04-21)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "documentDate": "2018-06-20", + "receivedDate": "2023-04-07", + "uploadedDate": "2019-08-19", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "da7a1ee3-5dde-4ba2-96c9-328f06371280", + "name": "IPSUM", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "d03820fc-1c61-4686-a5d8-04c2b5a8afb3", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": false, + "role": "AUTHOR" + } + ] + }, + { + "uuid": "9dff0e9a-69e4-4ea8-8652-036fdd807510", + "siteRegistry": false, + "documentDate": "2020-12-28", + "receivedDate": "2020-02-22", + "uploadedDate": "2018-05-03", + "title": "Preliminary Site Investigation, Detailed Site Investigation and Remedial Plan for the Management Area adjacent to the Shell Site at 1503 West 41st Ave", + "participants": [ + { + "uuid": "4891cacd-2f81-443f-8f40-3acfe5e1acd0", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": true, + "role": "AUTHOR" + } + ] + }, + { + "uuid": "b3fdbdbe-803e-4cca-987a-e700cbf90b30", + "siteRegistry": false, + "documentDate": "2020-03-09", + "receivedDate": "2013-10-26", + "uploadedDate": "2022-06-28", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "02d55d37-72b8-426b-878b-b0644f62ae62", + "name": "IPSUM", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "f7c66bda-7a9b-4bb6-a9b0-81f8e45b4824", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "dfc5a209-ba9f-419b-8146-42f68cd9a2f3", + "name": "AMET, DOLOR SIT", + "siteRegistry": false, + "role": "AUTHOR" + } + ] } ], - "parcelDescriptions": [ + "suspectLandUses": [ { - "uuid": "d4aed054-ea7d-4773-b208-2fdfafddcf9c", - "siteRegistry": true, - "dateNoted": "2014-12-10", - "parcelID": "17531", - "crownLandUsePIN": "20250", - "crownLandFileNumber": "16589", - "landDescription": "LOT 3 OF LOT 2 BLOCK 1 DISTRICT LOT 2 PLAN 5438" + "uuid": "200dd303-2622-432d-94e0-ac4936beb3a8", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2021-05-24 (described on Site Profile dated 2021-05-24)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "uuid": "66e1c21e-2498-4807-8d9e-3083d4945074", + "uuid": "dbdebcb3-a722-40f7-8080-0264388b64a7", "siteRegistry": false, - "dateNoted": "2013-11-09", - "parcelID": "17549", - "crownLandUsePIN": "17517", - "crownLandFileNumber": "18504", - "landDescription": "LOT 5 OF LOT 1 BLOCK 2 DISTRICT LOT 4 PLAN 4346" + "notes": "INSERTED FOR SITE PROFILE DATED 2023-04-15 (described on Site Profile dated 2023-04-15)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "uuid": "032f777c-1843-4780-8bd6-afc904e80cab", + "uuid": "ec18a559-3499-47a1-8c80-4d58142b34ec", "siteRegistry": false, - "dateNoted": "2020-09-02", - "parcelID": "17629", - "crownLandUsePIN": "20220", - "crownLandFileNumber": "18641", - "landDescription": "LOT 2 OF LOT 1 BLOCK 4 DISTRICT LOT 4 PLAN 5003" + "notes": "INSERTED FOR SITE PROFILE DATED 2016-08-10 (described on Site Profile dated 2016-08-10)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "uuid": "b77bfd0e-ec66-4402-8d5c-8a02fe3915b1", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2021-05-11 (described on Site Profile dated 2021-05-11)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "uuid": "1abc8965-3cce-46ed-b4d1-f27ad6d82d06", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2016-08-26 (described on Site Profile dated 2016-08-26)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + } + ], + "parcelDescriptions": [ + { + "uuid": "56341cb6-bd1a-4875-9b19-6dd1fadfcd18", + "siteRegistry": false, + "dateNoted": "2017-09-23", + "parcelID": "20458", + "crownLandUsePIN": "15763", + "crownLandFileNumber": "19203", + "landDescription": "LOT 4 OF LOT 5 BLOCK 5 DISTRICT LOT 2 PLAN 9361" }, { - "uuid": "4ae9698e-50df-4a7d-b3e1-09ff24319dc4", + "uuid": "f7255fba-ce17-4e45-9e37-158b8628a557", "siteRegistry": true, - "dateNoted": "2019-10-26", - "parcelID": "15693", - "crownLandUsePIN": "19135", - "crownLandFileNumber": "20880", - "landDescription": "LOT 2 OF LOT 1 BLOCK 2 DISTRICT LOT 1 PLAN 7195" + "dateNoted": "2021-11-05", + "parcelID": "20934", + "crownLandUsePIN": "20559", + "crownLandFileNumber": "20346", + "landDescription": "LOT 5 OF LOT 4 BLOCK 4 DISTRICT LOT 5 PLAN 7710" }, { - "uuid": "e604dc72-9524-4900-bac0-751ea0732dcf", + "uuid": "4286c789-8208-4ff9-b017-c72b7607c596", "siteRegistry": false, - "dateNoted": "2020-12-07", - "parcelID": "18523", - "crownLandUsePIN": "19409", - "crownLandFileNumber": "15418", - "landDescription": "LOT 1 OF LOT 1 BLOCK 4 DISTRICT LOT 4 PLAN 7372" + "dateNoted": "2016-04-13", + "parcelID": "18718", + "crownLandUsePIN": "17922", + "crownLandFileNumber": "17511", + "landDescription": "LOT 5 OF LOT 1 BLOCK 2 DISTRICT LOT 2 PLAN 5443" } ], "siteDisclosures": [ { - "uuid": "eab0d33a-6680-4d76-b90d-618aa209eb77", - "siteRegistry": true, - "dateReceived": "2019-03-06", - "dateCompleted": "2021-06-26", - "dateEntered": "2023-06-29", - "dateRegistrar": "2014-03-12", - "dateLocalAuthorityReceived": "2021-12-14", - "summary": "Labore natus placeat rerum cupiditate culpa alias at quo.\nOfficiis cumque dolorum qui blanditiis nam laudantium.\nDolorum blanditiis ullam beatae porro cupiditate maxime vel.", - "informationUsed": "Quod at sed.\nIllum nesciunt dolor eligendi nostrum ex laborum eaque.\nDoloribus quae at eos sapiente dignissimos.\nModi consequuntur blanditiis ipsa laudantium laudantium rerum.", - "pastOrPresentOrders": "Eligendi cum officiis ipsam modi dolores necessitatibus tenetur iusto cumque.\nQuaerat ullam cum laborum.", + "uuid": "1b5df310-9a3a-442f-b0fc-618f0cd5d3b5", + "siteRegistry": false, + "dateReceived": "2021-03-01", + "dateCompleted": "2018-03-23", + "dateEntered": "2022-11-05", + "dateRegistrar": "2018-09-23", + "dateLocalAuthorityReceived": "2015-04-24", + "summary": "Aliquid voluptate recusandae sequi dolorum tempora alias molestias.\nEt dolorem sequi sunt.", + "informationUsed": "Hic quibusdam deleniti ut quisquam ullam iure deserunt ea ullam.\nCum distinctio hic officia cum ad delectus minima.\nNecessitatibus totam animi.\nSint inventore illo consequuntur nisi provident earum autem odio.\nQuidem reprehenderit rem odio dolore sint.", + "pastOrPresentOrders": "Veniam expedita illo consequatur.", "commercialAndIndustrialPurposes": [ { - "uuid": "b8db4115-b865-4469-a959-c3ef4d3bda9c", + "uuid": "68e4ff6b-1a69-4fa5-993a-c4cdc96fc02d", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "ac6707c8-6aae-4a4a-9924-83007566fe57", + "uuid": "9872703f-a699-43a2-af13-4e4a0ede0209", "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "uuid": "8fd1b9e4-e97b-43df-8e65-4b8c0ab2ff62", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "7631bcb2-3355-4fef-ae23-fb6ed8071852", - "scheduleReference": "F1*", + "uuid": "fe1ee16f-ef78-4ac0-a680-cdf9e07a1dd8", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false + "siteRegistry": true } ] }, { - "uuid": "06c1c26c-70fd-4655-aeab-5be868bb742e", + "uuid": "ea773ea4-b1f2-4585-84c7-50a12bb15a7a", "siteRegistry": true, - "dateReceived": "2013-12-08", - "dateCompleted": "2021-02-28", - "dateEntered": "2016-06-29", - "dateRegistrar": "2022-12-01", - "dateLocalAuthorityReceived": "2019-02-06", - "summary": "Quos quas officiis distinctio.\nNeque accusamus eius veniam quisquam velit id.\nQui nobis sequi eaque quis blanditiis.", - "informationUsed": "Ex numquam nulla veritatis velit nisi architecto tempore beatae.\nTemporibus adipisci illo magnam impedit tempore repellendus cumque aspernatur.\nNobis a numquam eum consequatur amet eligendi soluta error recusandae.", - "pastOrPresentOrders": "Ducimus cumque vero ea vel porro.", + "dateReceived": "2019-12-16", + "dateCompleted": "2020-03-20", + "dateEntered": "2017-10-16", + "dateRegistrar": "2019-09-29", + "dateLocalAuthorityReceived": "2014-06-15", + "summary": "Suscipit eum non dolorum nihil.\nNesciunt debitis repudiandae vero eos.", + "informationUsed": "Ut placeat eligendi dolorem nihil placeat.\nNulla voluptatem omnis.\nRem illum inventore amet.", + "pastOrPresentOrders": "Minima magni voluptatum totam nostrum aperiam culpa sint quas.", "commercialAndIndustrialPurposes": [ { - "uuid": "23d0a50f-d38e-4c8b-9d98-ba099d38e594", + "uuid": "39bb96a7-ea3d-4722-bb92-28ca7d69c8e4", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "f08bdbf3-57c6-442b-87ec-d7c5cee067aa", - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false + "uuid": "d3166415-3a9a-4058-ba03-5c7922f3584a", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true } ] } ], "activityLog": [ { - "uuid": "df9b775a-07e3-468d-9f2b-6a25cc54a1df", - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "LEUSCHKE GUILLERMO", - "timestamp": "2021-01-17" - }, - { - "uuid": "65b6cf65-a294-44f1-a15e-5c97ed38d722", - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "NADER ZACHARIAH", - "timestamp": "2014-04-08" - }, - { - "uuid": "fb06f061-2163-4281-b9a6-33b1e87a9985", - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "KOEPP KATELIN", - "timestamp": "2018-02-09" - }, - { - "uuid": "c14ec5d8-fb19-4bb2-a82e-bd32423101ce", + "uuid": "8a50d802-9dbc-431d-96d0-b216f8875fe6", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "BUCKRIDGE SANTOS", - "timestamp": "2020-03-04" + "user": "BRUEN NELDA", + "timestamp": "2021-09-24" }, { - "uuid": "ab56b87f-c4fa-4e89-bff2-f28bbcc8a32a", + "uuid": "e965e9a8-d233-4b35-a319-9a247d11c61b", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "CORMIER EMILY", - "timestamp": "2020-10-03" + "user": "LITTEL RAUL", + "timestamp": "2023-05-27" }, { - "uuid": "8c6ba14f-4c98-431f-a420-62f4fd4eb619", + "uuid": "1c4cbf4d-dfd1-492d-81a6-25c196d25c83", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "MAYERT DAWN", - "timestamp": "2022-03-09" - }, - { - "uuid": "30bdde40-1874-4bf8-b9cd-1f5f8b19b708", - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "MANTE COLLIN", - "timestamp": "2022-09-10" - }, - { - "uuid": "326815a1-0d3d-4367-803e-fe745cd1c952", - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "GLEICHNER ADAM", - "timestamp": "2014-01-15" + "user": "FRANECKI BRITNEY", + "timestamp": "2014-06-10" }, { - "uuid": "41f5aa36-9134-41ef-9048-e6d35588ed2d", + "uuid": "45986d77-fc9a-44cc-92ef-80fa1c7baba1", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "HERZOG ANNAMARIE", - "timestamp": "2019-04-24" + "user": "MCLAUGHLIN MERVIN", + "timestamp": "2018-03-28" }, { - "uuid": "74840de1-2fbe-4be3-b06d-0dcbfd6ca6fd", + "uuid": "69d53eff-2576-4119-88d0-92c537d54777", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "GREENFELDER KAMILLE", - "timestamp": "2020-11-19" + "user": "MANTE JOSH", + "timestamp": "2017-08-18" } ], "associatedSites": [ { - "uuid": "751af32e-d1f5-4ae8-8e1b-8e2df4088a8a", - "dateNoted": "2015-06-19", - "notes": "", - "parcelID": "20451", - "siteID": "16656", - "siteRegistry": false - }, - { - "uuid": "be494fdd-d966-46b9-a5a1-77c34d5145bc", - "dateNoted": "2020-03-10", + "uuid": "4d2980a5-229f-4dbe-bc27-1b71918099ab", + "dateNoted": "2014-07-14", "notes": "", - "parcelID": "20821", - "siteID": "17858", - "siteRegistry": false + "parcelID": "16065", + "siteID": "19262", + "siteRegistry": true } ] }, { - "uuid": "e298cf4f-4567-4084-9443-3af2fe1b144b", - "siteID": 20953, - "address": "64791 Shayna Knoll", - "latitude": 57.6624, - "longitude": -124.0054, - "lastUpdated": "2022-12-06", - "city": "Fort Kristinacester", - "region": "Kootenay", - "victoriaFile": "26250-20/1166", + "uuid": "4f480342-6736-4483-bb83-7d9c14307355", + "siteID": 15607, + "address": "7729 Bahringer Crossroad", + "latitude": 48.7925, + "longitude": -122.8487, + "lastUpdated": "2017-08-15", + "city": "West Audieworth", + "region": " North Coast", + "victoriaFile": "26250-20/956", "regionalFile": "N/A", "parcelIDs": [ - 1429917, - 2187229, - 8924419, - 4134025, - 6724750 + 709990, + 2511803, + 8553486, + 8001901, + 7053598 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "04ac939b-fec6-4e42-a9a7-5d1a39b1c807", - "createdAt": "2021-09-15", - "completed": "2016-01-12", - "initiated": "2018-01-29", - "ministryContact": "MCGLYNN PRICE", + "uuid": "81f200dc-d067-4b91-a68d-7b2fdab637eb", + "createdAt": "2018-05-12", + "completed": "2022-12-09", + "initiated": "2019-06-07", + "ministryContact": "RUNTE MUSTAFA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -56470,38 +65970,32 @@ ], "notationParticipants": [ { - "uuid": "47f71348-e814-41a7-b120-4882cbd3709e", - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "uuid": "9635a927-6efe-4f16-a6d4-8d9fec5e272c", - "name": "SHELL CANADA PRODUCTS", + "uuid": "3cf91745-432b-497c-9855-9744f714b4ee", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "ef16abf8-903d-4c1c-a51a-5b142a0ba841", - "name": "SHELL CANADA PRODUCTS", + "uuid": "ac2af514-2dd1-4d1d-bacb-7e3bdff1be82", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false }, { - "uuid": "7e496f60-a469-4564-b20c-94b71492ba9a", + "uuid": "592236d9-6445-4b57-a7ef-4824b56ca606", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false + "role": "REQUESTED BY", + "siteRegistry": true } ], "siteRegistry": false }, { - "uuid": "0dc81b53-6f65-484b-91a0-670b5da3a44c", - "createdAt": "2021-04-19", - "completed": "2013-12-18", - "initiated": "2019-08-21", - "ministryContact": "MARVIN KYLEIGH", + "uuid": "0dc23f99-4fea-4546-a315-1f5383cca7f2", + "createdAt": "2016-07-25", + "completed": "2014-08-27", + "initiated": "2021-04-26", + "ministryContact": "FUNK ALBIN", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -56510,38 +66004,44 @@ ], "notationParticipants": [ { - "uuid": "2125b4d6-5456-48f9-9303-a353271a13ac", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "uuid": "12e0f3c7-f82e-4381-8048-3615d7591d5a", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "9f3af7f3-c96d-41e5-980f-6f8701db14ed", + "uuid": "6a03582a-0457-4729-8511-2cce99383f13", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "d26f9e75-3975-407e-a498-c22a3784cd4f", + "uuid": "8224fc34-0d99-4097-a919-bbb347d0143e", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "408c674b-fd21-4cc1-8399-a9bc98a7a928", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "13d47743-0c13-4ae5-a178-1166a7796818", + "uuid": "b053604f-741e-4831-a3c9-61246f7c64a3", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true } ], "siteRegistry": false }, { - "uuid": "9442e83f-fdf1-435b-b52d-03915ce887b7", - "createdAt": "2015-12-01", - "completed": "2020-07-25", - "initiated": "2016-07-28", - "ministryContact": "PROSACCO ALFORD", + "uuid": "1fc789ec-761f-42e4-8202-49415b879344", + "createdAt": "2021-01-01", + "completed": "2020-04-10", + "initiated": "2021-04-15", + "ministryContact": "WITTING OLIVER", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -56550,16 +66050,34 @@ ], "notationParticipants": [ { - "uuid": "71a76a07-eddb-4404-8092-9105732c40fd", + "uuid": "887045de-7eff-4b64-8298-d62bb50194f8", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "uuid": "7216db01-1664-4c21-9e01-4d6dd8591694", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "uuid": "6bd826c5-4bf1-4f04-b85d-72934da31cce", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "d5fc8dd5-6460-4e64-afe8-c04bb7bf76fe", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": true }, { - "uuid": "af23c394-b744-4552-b4a9-f294a5f6b36e", + "uuid": "ec4f844c-8152-49d4-bf0d-847c851ceff2", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false + "role": "REQUESTED BY", + "siteRegistry": true } ], "siteRegistry": false @@ -56567,21 +66085,10 @@ ], "participants": [ { - "uuid": "e11c8c2c-5926-4ac6-92da-fcdb2e498c72", - "name": "SHELL CANADA PRODUCTS", - "endDate": "2017-05-22", - "startDate": "2021-06-08", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": false - }, - { - "uuid": "df6aae47-4396-4c55-92a8-bacb31bbb3c1", - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2015-09-21", - "startDate": "2020-09-18", + "uuid": "a416fdc5-3478-4c19-a131-9df63fd07669", + "name": "AMET, DOLOR SIT", + "endDate": "2016-01-09", + "startDate": "2022-08-21", "notes": "", "roles": [ "ORGANIZATION" @@ -56589,206 +66096,287 @@ "siteRegistry": true }, { - "uuid": "7e91658b-e2bd-4d40-be78-ef4db5996cf0", - "name": "IPSUM", - "endDate": "2015-06-04", - "startDate": "2016-01-14", + "uuid": "3a76c4d0-e121-4225-8984-996f8ac9aa4c", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2015-03-22", + "startDate": "2022-04-17", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false + } + ], + "documents": [ + { + "uuid": "4c0d338e-a238-41c7-8cf4-99d0adaaafbd", + "siteRegistry": true, + "documentDate": "2023-04-12", + "receivedDate": "2014-11-30", + "uploadedDate": "2020-03-09", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "da07fef6-3ec9-4816-a278-19646a26dcbb", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "ef58a0aa-7e12-46e0-abd3-a85e30243559", + "name": "AMET, DOLOR SIT", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "a929bda9-ab41-40d4-909d-f548308b8133", + "name": "AMET, DOLOR SIT", + "siteRegistry": true, + "role": "AUTHOR" + } + ] + }, + { + "uuid": "be1ca214-9984-443f-bb5f-60cb18f76ab2", + "siteRegistry": false, + "documentDate": "2014-10-22", + "receivedDate": "2022-12-18", + "uploadedDate": "2022-07-12", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "410d56ab-32bb-4d12-acd1-4602aa9aef65", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": true, + "role": "AUTHOR" + } + ] + }, + { + "uuid": "25f7f113-c448-4407-afcd-c0c3f82fe1b3", + "siteRegistry": true, + "documentDate": "2019-03-01", + "receivedDate": "2018-08-15", + "uploadedDate": "2019-02-23", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "47bf234f-8507-4355-a5e1-79636d764eec", + "name": "AMET, DOLOR SIT", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "29938aa4-90b4-4e7a-9653-1ae025d5fc09", + "name": "IPSUM", + "siteRegistry": true, + "role": "AUTHOR" + } + ] + }, + { + "uuid": "74a6a270-92b6-424f-a86e-17cd48fadc8a", + "siteRegistry": true, + "documentDate": "2020-11-04", + "receivedDate": "2021-04-30", + "uploadedDate": "2022-11-29", + "title": "Preliminary Site Investigation, Detailed Site Investigation and Remedial Plan for the Management Area adjacent to the Shell Site at 1503 West 41st Ave", + "participants": [ + { + "uuid": "8edb84f8-ed4d-47b3-a572-1f30bf08eb1c", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "22301b6f-0fd5-4795-b6aa-b416beea1e50", + "name": "AMET, DOLOR SIT", + "siteRegistry": true, + "role": "AUTHOR" + } + ] } ], "suspectLandUses": [ { - "uuid": "814bfc49-f0ce-4bb1-9343-96ed5648c496", + "uuid": "1e4d0c6f-6f7f-4bb9-a4e9-3719bd2039c5", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-05-06 (described on Site Profile dated 2015-05-06)", + "notes": "INSERTED FOR SITE PROFILE DATED 2017-03-06 (described on Site Profile dated 2017-03-06)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "uuid": "87117b37-1857-4bd9-aa03-ef689d1c010a", - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-06-11 (described on Site Profile dated 2017-06-11)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "uuid": "cd5d22c7-3de0-48a9-8b55-c2116992d65e", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2017-02-10 (described on Site Profile dated 2017-02-10)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], "parcelDescriptions": [ { - "uuid": "99f902df-2d73-4ed3-b9ee-98fb9d5a1f0b", - "siteRegistry": false, - "dateNoted": "2021-02-25", - "parcelID": "15754", - "crownLandUsePIN": "16732", - "crownLandFileNumber": "18580", - "landDescription": "LOT 3 OF LOT 1 BLOCK 1 DISTRICT LOT 2 PLAN 8717" + "uuid": "92d8ac13-7743-4e23-8364-1ded0653fa2e", + "siteRegistry": true, + "dateNoted": "2016-01-03", + "parcelID": "18239", + "crownLandUsePIN": "18628", + "crownLandFileNumber": "15471", + "landDescription": "LOT 1 OF LOT 5 BLOCK 3 DISTRICT LOT 3 PLAN 9485" }, { - "uuid": "89a6b08b-eae6-4752-9549-caf34889275c", - "siteRegistry": false, - "dateNoted": "2014-04-01", - "parcelID": "19170", - "crownLandUsePIN": "15376", - "crownLandFileNumber": "20311", - "landDescription": "LOT 2 OF LOT 2 BLOCK 1 DISTRICT LOT 4 PLAN 5438" + "uuid": "42fc0707-bc56-47de-9d82-a90ddd1ace9e", + "siteRegistry": true, + "dateNoted": "2019-07-01", + "parcelID": "18280", + "crownLandUsePIN": "16871", + "crownLandFileNumber": "20850", + "landDescription": "LOT 3 OF LOT 5 BLOCK 3 DISTRICT LOT 3 PLAN 8611" }, { - "uuid": "fbb0566f-6e19-456e-bd3d-80a48fcd9f78", + "uuid": "6366a8af-7fee-4c8c-ab82-488cad4f8dc2", "siteRegistry": true, - "dateNoted": "2017-11-25", - "parcelID": "15202", - "crownLandUsePIN": "19543", - "crownLandFileNumber": "18720", - "landDescription": "LOT 3 OF LOT 3 BLOCK 1 DISTRICT LOT 2 PLAN 8335" + "dateNoted": "2022-07-17", + "parcelID": "15891", + "crownLandUsePIN": "17322", + "crownLandFileNumber": "15968", + "landDescription": "LOT 5 OF LOT 1 BLOCK 1 DISTRICT LOT 3 PLAN 3382" } ], "siteDisclosures": [ { - "uuid": "7c515027-8d94-4421-83c5-a4ea994ba8d8", + "uuid": "ec2120f6-282a-4d27-bed7-eaa519aaf379", "siteRegistry": true, - "dateReceived": "2019-01-13", - "dateCompleted": "2023-01-18", - "dateEntered": "2022-08-28", - "dateRegistrar": "2016-11-07", - "dateLocalAuthorityReceived": "2022-02-07", - "summary": "Quisquam culpa facere ex temporibus ea rerum deleniti natus consequuntur.", - "informationUsed": "Iste nihil cupiditate quidem alias eum natus magni.\nPerferendis aliquam qui iusto voluptatum rerum impedit sequi.\nCulpa ex expedita quam dolore porro nemo perspiciatis quaerat.\nNesciunt exercitationem suscipit corrupti.\nQuia autem occaecati a.", - "pastOrPresentOrders": "Facilis aut architecto dignissimos.\nQuas vel amet minus ipsum fugit.", + "dateReceived": "2015-03-15", + "dateCompleted": "2014-06-06", + "dateEntered": "2019-11-27", + "dateRegistrar": "2021-04-14", + "dateLocalAuthorityReceived": "2014-02-06", + "summary": "Sunt voluptas eveniet incidunt maxime consequatur.", + "informationUsed": "Facere explicabo ad quos eligendi.\nAd pariatur quisquam molestias tempora.\nVero debitis maiores vitae debitis itaque reprehenderit a facilis autem.", + "pastOrPresentOrders": "Aut dicta ea culpa sunt ab nostrum.\nRepudiandae hic consectetur non tempore aliquid necessitatibus dicta.", "commercialAndIndustrialPurposes": [ { - "uuid": "331a9bcb-0508-41df-962e-5e4d800029e5", + "uuid": "f185c288-33f7-4322-a5ee-f0b0166dbad0", "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "uuid": "09639117-07b8-4e02-b93b-09d0188840e1", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, { - "uuid": "d2015cff-189e-4eb6-9ff8-1e546da4e208", - "scheduleReference": "F2*", + "uuid": "bee32e50-0e12-441e-9aaa-f4022d9d9f54", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "uuid": "f9ba36cf-ad8f-4064-8682-afd3d1b1ab77", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true + "siteRegistry": false } ] } ], "activityLog": [ { - "uuid": "4e341176-3429-44bf-b745-5219565eee9c", - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "CASSIN BUFORD", - "timestamp": "2017-06-27" - }, - { - "uuid": "6b31967c-8a8e-4ad7-8dde-0ea766ff5bf4", + "uuid": "f46e6376-46ef-49c9-a1e0-094c6eeffa6c", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "SCHUMM JUANA", - "timestamp": "2017-08-24" - }, - { - "uuid": "0e9922ee-67e6-47d1-a1fd-d6cfed12cfda", - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "EMARD LEA", - "timestamp": "2018-10-15" - }, - { - "uuid": "37d54904-e011-44c5-ab25-a75ff92d91f0", - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "METZ KENNETH", - "timestamp": "2014-05-24" + "user": "RAU MARLEY", + "timestamp": "2014-11-20" }, { - "uuid": "7f147f58-6db8-4560-8beb-00698a0b75f2", - "siteRegistry": false, + "uuid": "f0a97fb1-26d7-403a-bd58-1cc551355dfb", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "HELLER OSBORNE", - "timestamp": "2017-08-18" + "user": "SAWAYN JESSIE", + "timestamp": "2017-06-30" }, { - "uuid": "43296a7b-36e9-4127-81d7-0928ddc5e1d9", + "uuid": "a56647cf-64a1-4363-ba3c-8f99df691990", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "JACOBSON VERNER", - "timestamp": "2021-04-07" + "user": "BAHRINGER DARIAN", + "timestamp": "2020-05-27" }, { - "uuid": "b3f669df-3d72-4413-aab5-3c254bd65060", + "uuid": "765318e4-c5a4-4418-9ff9-d2d8b1c5e035", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "SCHILLER FREDA", - "timestamp": "2016-12-21" + "user": "LUEILWITZ KEVIN", + "timestamp": "2015-09-02" }, { - "uuid": "053e0574-4ee2-4a07-bcb1-1645c640ad55", - "siteRegistry": false, + "uuid": "f0d035c9-df1e-428f-a8d2-ef49f114f2c8", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "MCGLYNN-GOLDNER LYDIA", - "timestamp": "2020-10-26" + "user": "BLOCK CATHARINE", + "timestamp": "2019-02-11" }, { - "uuid": "5337fe8a-9e50-47f8-9cdc-1516bd45f158", + "uuid": "b99700a6-8a06-4822-88b9-2dce8920bb31", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "HILLL BRANDT", - "timestamp": "2014-07-25" + "user": "HANSEN HAILEY", + "timestamp": "2019-03-31" } ], "associatedSites": [ { - "uuid": "91ec6a64-4642-43a1-94d7-50d9741c2270", - "dateNoted": "2014-09-12", + "uuid": "87594f5a-82f0-4744-b7fc-62705775e2ca", + "dateNoted": "2022-02-22", "notes": "", - "parcelID": "19980", - "siteID": "20470", + "parcelID": "20072", + "siteID": "20039", "siteRegistry": false }, { - "uuid": "e15349d9-1a7f-400c-ae42-32b5a3eb97b0", - "dateNoted": "2021-02-21", + "uuid": "04022629-6807-4bb7-b680-972a48cb3454", + "dateNoted": "2020-02-08", "notes": "", - "parcelID": "15628", - "siteID": "16728", + "parcelID": "17692", + "siteID": "20718", "siteRegistry": false }, { - "uuid": "20b5a9ae-d65a-4b06-a4d7-5b84dd5a9d11", - "dateNoted": "2020-12-30", + "uuid": "31c40dea-06de-41c3-8d14-898b63867f92", + "dateNoted": "2021-09-07", "notes": "", - "parcelID": "17438", - "siteID": "15264", - "siteRegistry": false + "parcelID": "19072", + "siteID": "15998", + "siteRegistry": true } ] }, { - "uuid": "3d05d430-9864-471e-83fe-fde15fe50775", - "siteID": 15374, - "address": "62081 Ruecker Ranch", - "latitude": 52.4278, - "longitude": -122.6755, - "lastUpdated": "2015-05-27", - "city": "East Darbyboro", + "uuid": "b638cd0d-8023-456e-9dfd-93efa63de358", + "siteID": 15472, + "address": "7549 Keanu Valleys", + "latitude": 57.2965, + "longitude": -134.2834, + "lastUpdated": "2014-02-01", + "city": "Port Vivianetown", "region": "Kootenay", - "victoriaFile": "26250-20/16599", + "victoriaFile": "26250-20/1797", "regionalFile": "N/A", "parcelIDs": [ - 1687193, - 9125041, - 2362073, - 3047531, - 3984583 + 4150346, + 2360224, + 650075, + 7859558, + 8766984 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "8123cac1-f861-4c40-a9bc-751828ca7063", - "createdAt": "2017-05-20", - "completed": "2020-11-19", - "initiated": "2019-07-25", - "ministryContact": "RAYNOR JACKIE", + "uuid": "8ce49a24-4503-4bd2-b6e1-50dd9a514910", + "createdAt": "2017-02-13", + "completed": "2021-08-19", + "initiated": "2016-05-28", + "ministryContact": "LESCH JULIEN", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -56797,44 +66385,26 @@ ], "notationParticipants": [ { - "uuid": "c4bc4a44-d2aa-44c2-bed2-a88259785654", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "uuid": "b5ffe03f-0b4b-47a8-908c-3957b791b6f2", - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "uuid": "c8d0b8a9-cdbb-49fc-8759-67d05f10668f", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "uuid": "9732a6aa-6145-4843-b2d9-80693f86bd64", + "uuid": "3b10d57a-559c-45f8-a155-e9750fd79c42", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "b0eb32ad-0937-4346-861d-684ecac75a5b", + "uuid": "ea9a12eb-ac6c-431d-865f-12e6e3e65c7e", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": true } ], "siteRegistry": false }, { - "uuid": "9aba60ca-5ac6-4f1f-bfe0-eaace598433f", - "createdAt": "2019-01-01", - "completed": "2014-01-30", - "initiated": "2016-01-18", - "ministryContact": "O'KEEFE CLINTON", + "uuid": "19d8bdb8-b0bc-422b-bb9e-a121c4c94eac", + "createdAt": "2023-08-10", + "completed": "2017-09-26", + "initiated": "2015-01-27", + "ministryContact": "LINDGREN BRAD", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -56843,32 +66413,14 @@ ], "notationParticipants": [ { - "uuid": "c7dbbb6b-ba6a-4a7b-8180-aa87967eab82", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "uuid": "dc0e99a9-5f6a-444d-b93b-4836707f3992", + "uuid": "757aa5a9-63f4-40f3-a8d0-abf9eb5f3d55", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "uuid": "bf5c2180-0594-44b9-91f8-2863c144a709", - "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "uuid": "bfb383f8-a5be-491b-80cc-56cea9043bdf", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", "siteRegistry": false }, { - "uuid": "0bb53750-ed5a-4278-9e08-602b9975358d", - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "5bbce1bc-7447-4028-a437-6fab8333cc22", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false } @@ -56876,11 +66428,11 @@ "siteRegistry": false }, { - "uuid": "9a3c238c-4b89-44a2-a9d4-7d83b3e4fb32", - "createdAt": "2015-02-01", - "completed": "2018-09-20", - "initiated": "2020-08-08", - "ministryContact": "DAVIS ROBERTO", + "uuid": "0b45a7c7-36f2-4951-a93e-51d8185cd952", + "createdAt": "2016-08-17", + "completed": "2015-02-11", + "initiated": "2017-01-01", + "ministryContact": "O'REILLY BRANDON", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -56889,38 +66441,38 @@ ], "notationParticipants": [ { - "uuid": "b4c7ca62-6c96-41d1-8c02-08fb704a6b0a", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "uuid": "a8047684-86eb-4d2e-8e73-f107267f7e3a", + "uuid": "4789860c-01e0-41f9-b116-7a52af4f1010", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false }, { - "uuid": "9685b108-2043-4fea-9d6b-f209af5250b5", + "uuid": "02e70a77-b2e8-49e2-b1eb-55a1cc82294f", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "uuid": "678b9698-78b3-43fe-a45c-9eeccda647f8", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "2bf9381a-22a6-4d7b-a7ff-a3c32d0c9ac8", - "name": "SHELL CANADA PRODUCTS", + "uuid": "2a7eeecd-4afb-4a31-af77-15e2020e958a", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "7c205ca3-2d45-41eb-82c7-841e6390a984", - "createdAt": "2015-04-13", - "completed": "2017-12-27", - "initiated": "2021-06-04", - "ministryContact": "GREEN JO", + "uuid": "6a3be90a-5280-41c2-b7f4-340817fa9942", + "createdAt": "2022-06-15", + "completed": "2021-04-02", + "initiated": "2018-11-11", + "ministryContact": "QUIGLEY-COLLINS RHODA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -56929,21 +66481,27 @@ ], "notationParticipants": [ { - "uuid": "1fb6e3c9-d953-4183-ad7d-6cdfa9e413a3", + "uuid": "2cea08d3-ac7b-42f0-9f7c-8fd82716692a", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "uuid": "7e85322a-3f3c-441e-a162-413a6e8b4c6b", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "68da48d7-c140-46ef-966a-31fe6f728e5f", + "uuid": "6452dbc5-a53e-4acb-9f02-666f8036084c", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "c5db3e95-dd4d-49ff-b63b-881dbcfa059e", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "uuid": "f871da57-c0bf-443e-bb77-5d2435f0e5cd", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": false } ], @@ -56952,10 +66510,43 @@ ], "participants": [ { - "uuid": "3934da21-b5c0-4789-b917-0ff6f9fac7e1", + "uuid": "1932494e-9ac4-4fb8-93b6-894d06715588", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2017-05-20", + "startDate": "2015-10-21", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "uuid": "32941e2d-c0ec-42c0-9d88-a5f6204aeae4", "name": "IPSUM", - "endDate": "2019-06-08", - "startDate": "2014-04-29", + "endDate": "2021-09-06", + "startDate": "2016-09-01", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "uuid": "161f68a6-6079-4a12-ace3-2f7ee191f0af", + "name": "IPSUM", + "endDate": "2020-04-11", + "startDate": "2015-04-23", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "uuid": "4de2493b-05f0-4e43-b566-d3c07652fe40", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2023-04-12", + "startDate": "2023-08-10", "notes": "", "roles": [ "ORGANIZATION" @@ -56963,122 +66554,203 @@ "siteRegistry": false }, { - "uuid": "1accb535-f437-4792-a891-5f7af4e0319a", + "uuid": "fc2968f6-809f-4cd5-b6a4-4dd3568324b4", "name": "AMET, DOLOR SIT", - "endDate": "2019-04-02", - "startDate": "2015-05-21", + "endDate": "2021-11-23", + "startDate": "2021-01-26", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], - "siteRegistry": true + "siteRegistry": false } ], - "suspectLandUses": [ + "documents": [ { - "uuid": "298fe1bc-66f1-4fe2-90a4-461aec9b5352", - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2013-11-10 (described on Site Profile dated 2013-11-10)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "uuid": "846550e0-8208-445d-b33e-02f14d1d77d7", + "siteRegistry": false, + "documentDate": "2014-11-23", + "receivedDate": "2014-05-24", + "uploadedDate": "2022-01-05", + "title": "Preliminary Site Investigation, Detailed Site Investigation and Remedial Plan for the Management Area adjacent to the Shell Site at 1503 West 41st Ave", + "participants": [ + { + "uuid": "ce1eda8b-2ac4-4fb9-a836-8c5eaa358704", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": true, + "role": "AUTHOR" + } + ] + }, + { + "uuid": "c7c614d7-f804-4c63-97b6-dcc0df98246e", + "siteRegistry": false, + "documentDate": "2020-11-11", + "receivedDate": "2014-06-20", + "uploadedDate": "2018-09-15", + "title": "Preliminary Site Investigation, Detailed Site Investigation and Remedial Plan for the Management Area adjacent to the Shell Site at 1503 West 41st Ave", + "participants": [ + { + "uuid": "6ac58d8f-1dc2-4a47-a50c-4efccae16106", + "name": "IPSUM", + "siteRegistry": true, + "role": "AUTHOR" + } + ] + }, + { + "uuid": "336730f6-2798-45fa-bd62-082fb33cfa0e", + "siteRegistry": false, + "documentDate": "2023-05-17", + "receivedDate": "2022-04-21", + "uploadedDate": "2019-07-06", + "title": "Summary of Site Conditions, 1537 W 41st Avenue, Vancouver", + "participants": [ + { + "uuid": "053cea48-202f-435a-9291-cf47767b9864", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "fbf4ce4d-c41a-4dce-a533-40a96ef11b8a", + "name": "AMET, DOLOR SIT", + "siteRegistry": true, + "role": "AUTHOR" + } + ] }, { - "uuid": "1e472de6-e9d1-447f-a414-0c799aca2ec8", + "uuid": "71c30bdb-9340-48ae-96dc-5ce4e6a80bee", + "siteRegistry": false, + "documentDate": "2015-07-20", + "receivedDate": "2018-06-27", + "uploadedDate": "2016-05-12", + "title": "Summary of Site Conditions, 1537 W 41st Avenue, Vancouver", + "participants": [ + { + "uuid": "17ea4ee7-41a1-4c0d-8247-061b2cfe9679", + "name": "AMET, DOLOR SIT", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "3d02026d-a7a1-425d-86ae-fbd165a2f55b", + "name": "IPSUM", + "siteRegistry": false, + "role": "AUTHOR" + } + ] + } + ], + "suspectLandUses": [ + { + "uuid": "c031b8ae-50bd-4b50-b05b-ec8afff765f1", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-09-14 (described on Site Profile dated 2021-09-14)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "notes": "INSERTED FOR SITE PROFILE DATED 2018-06-03 (described on Site Profile dated 2018-06-03)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "uuid": "f622735e-3794-40ef-870c-ffa1402e1a66", + "uuid": "8bf2c736-9464-4a42-b48d-814bba6f9c85", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-04-11 (described on Site Profile dated 2019-04-11)", + "notes": "INSERTED FOR SITE PROFILE DATED 2022-09-13 (described on Site Profile dated 2022-09-13)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "uuid": "8a797a0b-a1bc-4b19-a525-2eacf2ff6a8d", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2018-08-29 (described on Site Profile dated 2018-08-29)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "uuid": "a06f604f-64c6-438d-91b7-f2d5ab2dc390", + "uuid": "85773b50-67c2-4d5b-b23d-76a5c5908645", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-08-04 (described on Site Profile dated 2018-08-04)", + "notes": "INSERTED FOR SITE PROFILE DATED 2014-08-06 (described on Site Profile dated 2014-08-06)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "uuid": "66257560-0acf-4e52-b118-9f98cef89a1e", - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2020-12-03 (described on Site Profile dated 2020-12-03)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "uuid": "806c6dea-72a7-457c-b44c-84739d2a9434", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2015-07-05 (described on Site Profile dated 2015-07-05)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], "parcelDescriptions": [ { - "uuid": "06c8ef6f-536d-4eb4-9196-05a7260cb5f2", - "siteRegistry": false, - "dateNoted": "2019-01-12", - "parcelID": "15383", - "crownLandUsePIN": "17195", - "crownLandFileNumber": "19059", - "landDescription": "LOT 5 OF LOT 5 BLOCK 5 DISTRICT LOT 5 PLAN 8735" + "uuid": "592ed4ad-6ac3-4d2a-a800-47cf0d6ce685", + "siteRegistry": true, + "dateNoted": "2021-12-12", + "parcelID": "16266", + "crownLandUsePIN": "19847", + "crownLandFileNumber": "19184", + "landDescription": "LOT 2 OF LOT 5 BLOCK 2 DISTRICT LOT 5 PLAN 7069" }, { - "uuid": "87c040b2-0864-437e-a815-059ff9e6a597", - "siteRegistry": true, - "dateNoted": "2020-03-28", - "parcelID": "17026", - "crownLandUsePIN": "15931", - "crownLandFileNumber": "17617", - "landDescription": "LOT 3 OF LOT 3 BLOCK 5 DISTRICT LOT 2 PLAN 6907" + "uuid": "4665690c-62fc-4a29-8793-aa677208e2e0", + "siteRegistry": false, + "dateNoted": "2018-11-10", + "parcelID": "19808", + "crownLandUsePIN": "19096", + "crownLandFileNumber": "17237", + "landDescription": "LOT 3 OF LOT 1 BLOCK 5 DISTRICT LOT 1 PLAN 6705" }, { - "uuid": "8fc46a48-8b8c-4c9b-85d5-3b22c5ec43d4", + "uuid": "c597e832-af36-4df2-888d-f4ad939bf9ea", "siteRegistry": false, - "dateNoted": "2018-10-09", - "parcelID": "18517", - "crownLandUsePIN": "15611", - "crownLandFileNumber": "20704", - "landDescription": "LOT 1 OF LOT 2 BLOCK 5 DISTRICT LOT 4 PLAN 6087" + "dateNoted": "2019-02-09", + "parcelID": "19764", + "crownLandUsePIN": "16392", + "crownLandFileNumber": "20113", + "landDescription": "LOT 1 OF LOT 5 BLOCK 4 DISTRICT LOT 5 PLAN 3169" }, { - "uuid": "fccb769a-c82d-4349-8075-767f966c5f86", + "uuid": "38959d19-d149-470c-954a-b55b8f79c666", "siteRegistry": false, - "dateNoted": "2019-05-09", - "parcelID": "18103", - "crownLandUsePIN": "18012", - "crownLandFileNumber": "19503", - "landDescription": "LOT 4 OF LOT 2 BLOCK 1 DISTRICT LOT 1 PLAN 9342" + "dateNoted": "2018-04-01", + "parcelID": "16977", + "crownLandUsePIN": "20788", + "crownLandFileNumber": "17830", + "landDescription": "LOT 2 OF LOT 4 BLOCK 4 DISTRICT LOT 3 PLAN 6450" + }, + { + "uuid": "839e83eb-e059-4044-8bc6-1d30fcca1311", + "siteRegistry": true, + "dateNoted": "2016-04-13", + "parcelID": "16999", + "crownLandUsePIN": "17381", + "crownLandFileNumber": "17181", + "landDescription": "LOT 4 OF LOT 4 BLOCK 3 DISTRICT LOT 3 PLAN 3024" } ], "siteDisclosures": [ { - "uuid": "edad6f59-8a25-45ce-b878-231982beae8b", + "uuid": "b2b857ec-9e7c-4db2-ae07-0d2f61f89e1d", "siteRegistry": false, - "dateReceived": "2022-09-12", - "dateCompleted": "2017-12-27", - "dateEntered": "2015-04-10", - "dateRegistrar": "2022-05-27", - "dateLocalAuthorityReceived": "2022-06-17", - "summary": "Quo autem fuga perferendis molestias.", - "informationUsed": "Voluptates eius assumenda perferendis nemo animi et.\nVelit delectus alias corrupti temporibus voluptates magnam commodi unde.\nInventore totam reiciendis.", - "pastOrPresentOrders": "Libero sit vitae repudiandae dicta autem hic suscipit quisquam quia.\nSaepe animi a est repellendus nisi quidem.\nDolor facere facere quidem nisi magnam qui est optio.", + "dateReceived": "2017-08-31", + "dateCompleted": "2020-12-08", + "dateEntered": "2020-05-16", + "dateRegistrar": "2017-11-21", + "dateLocalAuthorityReceived": "2019-01-10", + "summary": "Blanditiis commodi assumenda.", + "informationUsed": "Ratione doloribus cupiditate.\nSunt nisi culpa.\nEligendi molestias pariatur quam maxime consequatur rem quaerat.", + "pastOrPresentOrders": "Ab fugiat reiciendis tenetur autem iste.\nQui doloremque esse dolorem culpa facere.\nMolestias dolorum sunt non.", "commercialAndIndustrialPurposes": [ { - "uuid": "0a435208-0f31-43ef-aa58-7bc8f9466e08", - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false - }, - { - "uuid": "8da356da-168f-41b1-a8f3-dbf5e6f887e4", - "scheduleReference": "F2*", + "uuid": "92925c2f-d1a7-447c-a0b4-511c3f5bbadb", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { - "uuid": "d6f64f93-47e0-45ab-8c01-0b8c7f1e3857", - "scheduleReference": "F1*", + "uuid": "9cab5c64-0215-4978-9e5c-67737ebff559", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { - "uuid": "c46f236a-07d2-4eaf-8d74-21981068dc74", + "uuid": "fcb495e5-e45a-4725-96a8-fbd310e18424", "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false } ] @@ -57086,99 +66758,92 @@ ], "activityLog": [ { - "uuid": "11563c85-5dc6-4336-9965-b3894924460f", - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "MILLER STEFANIE", - "timestamp": "2014-03-21" - }, - { - "uuid": "41af5800-898d-4315-acab-aad9a43acefb", - "siteRegistry": false, + "uuid": "ae34dc3c-7b6e-447d-a8e9-ce88a6f2bb44", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "ANKUNDING BRIANNE", - "timestamp": "2015-11-19" + "user": "SANFORD ALEXANDRINE", + "timestamp": "2018-07-23" }, { - "uuid": "16c9ef55-97ac-4e4e-8c46-b275406a29ee", + "uuid": "821e1ef0-ee67-4f80-813a-2dd41ca00d9a", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "WILDERMAN ALTA", - "timestamp": "2014-02-03" + "user": "RAU KELLI", + "timestamp": "2018-06-20" }, { - "uuid": "d51f2de8-7bed-4b2a-9830-bdb862dc4e0c", + "uuid": "948714d8-a03e-4e24-9dc1-e708bb052648", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "LANGWORTH VINCENZO", - "timestamp": "2021-01-24" + "user": "BLANDA IMMANUEL", + "timestamp": "2021-07-07" }, { - "uuid": "d81978b4-e5a8-493d-afc7-f94dc2614c93", - "siteRegistry": true, + "uuid": "49cd7850-4550-440d-99c9-5b6ff7566c0c", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "BEATTY NEAL", - "timestamp": "2018-02-05" + "user": "ABSHIRE BILL", + "timestamp": "2020-10-07" }, { - "uuid": "30f41b25-ae75-44f9-9bfe-55e56d1119ca", - "siteRegistry": false, + "uuid": "110a6012-b5f7-49ad-85b8-237df8a92793", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "WHITE GERMAN", - "timestamp": "2014-05-24" + "user": "MORAR RASHEED", + "timestamp": "2017-08-05" }, { - "uuid": "f1916751-b486-4a90-aaf8-18595c4391a8", - "siteRegistry": false, + "uuid": "32ab7dd9-e2ba-48aa-9d03-c2b4ffd41758", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "REINGER ISRAEL", - "timestamp": "2017-12-23" + "user": "GOYETTE ALISA", + "timestamp": "2015-07-02" }, { - "uuid": "3d999d5b-8bf5-44fa-aeed-8cb0f7a8debd", - "siteRegistry": false, + "uuid": "64e62d8c-2289-4e95-b510-5040085f78ee", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "MEDHURST JEROD", - "timestamp": "2020-04-27" + "user": "CHAMPLIN MEGGIE", + "timestamp": "2022-10-26" } ], "associatedSites": [ { - "uuid": "0cbf3ab5-a571-4d9e-864d-8c7540be41f7", - "dateNoted": "2014-08-20", + "uuid": "fc92fd1d-f621-4117-8715-b2b1fa859b3b", + "dateNoted": "2013-10-25", "notes": "", - "parcelID": "16456", - "siteID": "15261", - "siteRegistry": true + "parcelID": "18936", + "siteID": "19449", + "siteRegistry": false } ] }, { - "uuid": "e6fb9240-7505-4a14-bde0-dbe3699b6835", - "siteID": 16682, - "address": "55911 Maryse Lodge", - "latitude": 51.8322, - "longitude": -131.1582, - "lastUpdated": "2018-03-04", - "city": "Port Millerport", - "region": " North Coast", - "victoriaFile": "26250-20/14498", + "uuid": "7eab3a57-f5f8-46d7-af25-22ccf898eb5e", + "siteID": 19921, + "address": "2418 Kristian Land", + "latitude": 51.0973, + "longitude": -124.7714, + "lastUpdated": "2021-08-02", + "city": "North Pearlieberg", + "region": "Vancouver Island/Coast", + "victoriaFile": "26250-20/5326", "regionalFile": "N/A", "parcelIDs": [ - 1484768, - 2721593, - 9074297, - 1303543, - 5732542 + 9099047, + 7593672, + 6561788, + 1325972, + 8476522 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "9e40dc3c-ab1f-4f1c-9e4b-4ceb09c4038b", - "createdAt": "2017-07-10", - "completed": "2016-07-31", - "initiated": "2014-06-12", - "ministryContact": "KULAS SONYA", + "uuid": "617fa6f4-fb8c-4b5a-93c3-7ad94a029616", + "createdAt": "2015-06-23", + "completed": "2023-05-27", + "initiated": "2021-07-30", + "ministryContact": "RUECKER BRODERICK", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -57187,54 +66852,26 @@ ], "notationParticipants": [ { - "uuid": "9642bb79-2ff9-401c-9b9f-5465eed05dae", + "uuid": "bb0da105-8781-460a-89d5-81a9ed790812", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "uuid": "8fdd047f-baf9-4340-ab41-a1ec7563f5fd", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", "siteRegistry": false - } - ], - "siteRegistry": true - }, - { - "uuid": "69d74462-6b43-401a-90e1-81537366733d", - "createdAt": "2014-10-05", - "completed": "2022-09-09", - "initiated": "2023-04-07", - "ministryContact": "SCHAEFER AYANA", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "uuid": "393b61b0-c181-45ee-bfee-039657669473", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true }, { - "uuid": "e5e8ce48-08a9-4853-908b-60721cf70892", + "uuid": "1bba4d87-f217-4e53-8382-9fbc7b3adb08", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": true } ], "siteRegistry": false }, { - "uuid": "4b6fa962-81a5-4f57-b00a-500c54887e3a", - "createdAt": "2019-11-05", - "completed": "2018-02-21", - "initiated": "2016-09-15", - "ministryContact": "GREENHOLT JERMAINE", + "uuid": "869a1e47-dfa0-49bd-baa1-415f007379a3", + "createdAt": "2019-10-22", + "completed": "2017-02-16", + "initiated": "2018-07-08", + "ministryContact": "ABBOTT AURELIE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -57243,34 +66880,34 @@ ], "notationParticipants": [ { - "uuid": "3d5c6632-0a5e-4e2e-a4b4-83d3f9d18c4e", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "uuid": "74e6ada2-1ec6-43da-956d-9e68aa0afb2a", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": true }, { - "uuid": "bb39b51d-dba9-4232-98e1-d8b5ab2d847a", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "uuid": "a4f163c2-af2f-4797-b322-ed39fa71c9a2", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "a1fd7a29-c711-426c-9771-073afe01bebd", - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "9d493a63-9566-4d3e-899e-9e8d54601156", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "57118fc3-c1e3-4477-8b24-4518aa143406", + "uuid": "bee265de-c376-437c-92dd-4d7ad53cd039", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true + "role": "SUBMITTED BY", + "siteRegistry": false }, { - "uuid": "fb67ebfe-01df-4c5b-8815-f1dc3045ea3a", - "name": "SHELL CANADA PRODUCTS", + "uuid": "44ee8b94-3baa-4118-b25c-07bed2318c4f", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true } ], "siteRegistry": false @@ -57278,120 +66915,274 @@ ], "participants": [ { - "uuid": "c853db4c-8342-435a-b661-6d20c565bcbf", + "uuid": "fb792226-3115-4a0a-9863-7efea4f409b3", "name": "IPSUM", - "endDate": "2019-05-16", - "startDate": "2020-06-07", + "endDate": "2022-04-04", + "startDate": "2018-02-22", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "cd0b5fe8-1cf9-4e06-8629-3366c78206fc", + "uuid": "6563cb5c-7ecf-4565-be8e-9535a60404e5", "name": "IPSUM", - "endDate": "2020-01-07", - "startDate": "2013-11-17", + "endDate": "2022-03-17", + "startDate": "2022-10-09", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "101b9c94-1078-421e-a593-26b96d68b458", - "name": "IPSUM", - "endDate": "2017-05-31", - "startDate": "2018-05-01", + "uuid": "b356d7c3-cf7c-40a9-a926-1d1944cd8ff7", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2017-01-25", + "startDate": "2015-06-27", "notes": "", "roles": [ "EMPLOYEE" ], "siteRegistry": false + } + ], + "documents": [ + { + "uuid": "ffe8c8c0-217e-47f9-bfc1-3084fe0f8f70", + "siteRegistry": true, + "documentDate": "2022-05-01", + "receivedDate": "2017-11-24", + "uploadedDate": "2018-09-12", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "23b9437f-70c0-49bb-bed1-251c5b95d70e", + "name": "IPSUM", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "bdcb26c7-ae56-4d24-b1e7-c59041c2f5d1", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "ae7b1a32-2374-43a6-81fe-8b76348d26d7", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": true, + "role": "AUTHOR" + } + ] }, { - "uuid": "dcfd4be7-4305-48a9-8b29-db9e6052bfaf", - "name": "IPSUM", - "endDate": "2015-08-14", - "startDate": "2023-03-28", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": false + "uuid": "52547f2c-0ebf-4012-89cf-771f6bf0fdd0", + "siteRegistry": true, + "documentDate": "2014-09-11", + "receivedDate": "2017-07-29", + "uploadedDate": "2014-06-05", + "title": "Summary of Site Conditions, 1537 W 41st Avenue, Vancouver", + "participants": [ + { + "uuid": "332321fe-5624-4b99-83f8-7e693339db9c", + "name": "IPSUM", + "siteRegistry": false, + "role": "AUTHOR" + } + ] + }, + { + "uuid": "af51b679-c82a-4d1a-9c03-238e32e3a186", + "siteRegistry": true, + "documentDate": "2017-02-21", + "receivedDate": "2013-12-03", + "uploadedDate": "2019-03-10", + "title": "Summary of Site Conditions, 1537 W 41st Avenue, Vancouver", + "participants": [ + { + "uuid": "c3d8742f-2da4-4a46-9cba-816a6630058d", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "71e01e94-8dee-4f54-a6ce-003159b044fd", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "3df290fd-4131-4a4f-9e42-d25ac3d66c94", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": true, + "role": "AUTHOR" + } + ] + }, + { + "uuid": "941beb2c-f111-4368-aa24-2a8751122d67", + "siteRegistry": true, + "documentDate": "2018-03-31", + "receivedDate": "2022-05-28", + "uploadedDate": "2018-12-11", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "a0ad2bf8-3dc4-4257-8d33-b6203eb9f389", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": false, + "role": "AUTHOR" + } + ] + }, + { + "uuid": "5864cbdc-e2b3-443d-8670-628e5edbd2ee", + "siteRegistry": true, + "documentDate": "2014-02-09", + "receivedDate": "2021-03-11", + "uploadedDate": "2015-02-03", + "title": "Summary of Site Conditions, 1537 W 41st Avenue, Vancouver", + "participants": [ + { + "uuid": "10244224-91c3-41de-8dcd-55832ba29101", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": false, + "role": "AUTHOR" + } + ] } ], "suspectLandUses": [ { - "uuid": "a8803afd-d8be-4c9f-9900-9d9a89534692", - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-02-13 (described on Site Profile dated 2014-02-13)", + "uuid": "53b2a498-a5ce-4ae9-b17b-885aedf13b0b", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2014-11-01 (described on Site Profile dated 2014-11-01)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "uuid": "a8723cd7-01e6-401a-b691-0875a794fe10", + "uuid": "f718796b-062c-4853-8679-ddb7572b7555", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2023-08-04 (described on Site Profile dated 2023-08-04)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "notes": "INSERTED FOR SITE PROFILE DATED 2018-09-04 (described on Site Profile dated 2018-09-04)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "uuid": "823be35d-57ab-4455-acae-cb23b78ece3d", + "uuid": "48ab7f53-d0b6-4d7a-8a74-14242fe6e0cd", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2013-11-23 (described on Site Profile dated 2013-11-23)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "notes": "INSERTED FOR SITE PROFILE DATED 2023-05-16 (described on Site Profile dated 2023-05-16)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "uuid": "4fe849c5-032a-48f7-a442-a7b01d086cb4", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2017-01-17 (described on Site Profile dated 2017-01-17)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], "parcelDescriptions": [ { - "uuid": "02dfe969-5ceb-4d1a-82ba-d5d59cf9d72f", - "siteRegistry": true, - "dateNoted": "2022-02-03", - "parcelID": "20610", - "crownLandUsePIN": "20856", - "crownLandFileNumber": "19224", - "landDescription": "LOT 2 OF LOT 2 BLOCK 4 DISTRICT LOT 2 PLAN 4649" + "uuid": "c744e034-ec3c-4889-a7d9-2940430066ce", + "siteRegistry": false, + "dateNoted": "2018-03-02", + "parcelID": "18993", + "crownLandUsePIN": "19345", + "crownLandFileNumber": "17861", + "landDescription": "LOT 1 OF LOT 4 BLOCK 4 DISTRICT LOT 1 PLAN 4280" }, { - "uuid": "ae20822b-0c18-4636-b2d2-33fe26e767b7", - "siteRegistry": true, - "dateNoted": "2022-04-29", - "parcelID": "16312", - "crownLandUsePIN": "15894", - "crownLandFileNumber": "19176", - "landDescription": "LOT 5 OF LOT 2 BLOCK 1 DISTRICT LOT 3 PLAN 7412" + "uuid": "519405bb-3109-4445-a693-19dc34aba9c3", + "siteRegistry": false, + "dateNoted": "2021-06-30", + "parcelID": "15872", + "crownLandUsePIN": "15544", + "crownLandFileNumber": "19580", + "landDescription": "LOT 1 OF LOT 4 BLOCK 3 DISTRICT LOT 1 PLAN 4084" + }, + { + "uuid": "1a5c3f8d-b6ea-4b65-9444-c814e1089323", + "siteRegistry": false, + "dateNoted": "2022-05-28", + "parcelID": "18411", + "crownLandUsePIN": "16305", + "crownLandFileNumber": "20964", + "landDescription": "LOT 3 OF LOT 3 BLOCK 2 DISTRICT LOT 3 PLAN 4585" }, { - "uuid": "669d9554-ccac-42c5-a564-1d14c5f2c4d2", + "uuid": "2e38a8c7-a72e-42e5-87c9-c9a269ba341c", "siteRegistry": true, "dateNoted": "2018-03-14", - "parcelID": "19602", - "crownLandUsePIN": "16974", - "crownLandFileNumber": "16447", - "landDescription": "LOT 4 OF LOT 1 BLOCK 4 DISTRICT LOT 5 PLAN 6231" + "parcelID": "17763", + "crownLandUsePIN": "17241", + "crownLandFileNumber": "18857", + "landDescription": "LOT 3 OF LOT 5 BLOCK 2 DISTRICT LOT 2 PLAN 3752" } ], "siteDisclosures": [ { - "uuid": "24b4ba61-7070-4ffa-bd36-50c92ad9942b", - "siteRegistry": false, - "dateReceived": "2014-05-29", - "dateCompleted": "2013-11-08", - "dateEntered": "2016-01-05", - "dateRegistrar": "2015-02-12", - "dateLocalAuthorityReceived": "2016-03-21", - "summary": "Dolorem eaque quo praesentium.\nEt ab iste sunt aliquam debitis.\nRepellat non possimus a commodi fugiat ipsum aperiam voluptatem molestiae.", - "informationUsed": "Praesentium suscipit a fugiat.\nOccaecati ducimus quibusdam dolorum.\nUt ipsa beatae officiis maxime sed amet omnis esse corrupti.\nTemporibus recusandae esse ea quas assumenda autem.", - "pastOrPresentOrders": "Modi culpa consequatur.", + "uuid": "adde66d5-3197-42b7-9573-081d3ace257c", + "siteRegistry": true, + "dateReceived": "2022-03-09", + "dateCompleted": "2019-06-08", + "dateEntered": "2014-11-08", + "dateRegistrar": "2021-03-17", + "dateLocalAuthorityReceived": "2023-10-02", + "summary": "Delectus quod doloribus assumenda consequuntur officia.\nVel iusto perspiciatis ratione enim quos optio eum voluptatum.\nVoluptas velit aperiam iste repellendus fugiat.", + "informationUsed": "Id quis doloribus quos id sit odit.\nQuibusdam cum laboriosam numquam deleniti.\nLibero doloremque suscipit maxime tempore architecto dolor nulla mollitia non.", + "pastOrPresentOrders": "Facere harum nulla.", "commercialAndIndustrialPurposes": [ { - "uuid": "5f21a858-35fb-46ce-adcb-720946e896f4", + "uuid": "cfe9c747-5293-496a-8390-01e7cebcc3e5", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "uuid": "4484c9f8-810a-4ca8-af2a-bea14d4b0b34", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "uuid": "217db4ac-c415-4a1e-8ef4-2e1420974a63", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false + } + ] + }, + { + "uuid": "dc814523-10aa-413c-b9d3-035cdd9034a4", + "siteRegistry": true, + "dateReceived": "2014-04-06", + "dateCompleted": "2017-12-28", + "dateEntered": "2019-07-05", + "dateRegistrar": "2018-07-30", + "dateLocalAuthorityReceived": "2018-04-15", + "summary": "Error exercitationem tenetur porro odit corporis cum.", + "informationUsed": "Consequuntur nulla voluptatibus vitae numquam velit.\nAccusamus et rem autem consequuntur.\nVero tempora laudantium soluta hic aliquid error.\nSunt dicta nostrum quis corrupti nihil quis necessitatibus numquam.", + "pastOrPresentOrders": "Alias explicabo assumenda earum fugiat dolorem velit rerum eaque harum.\nRatione quis numquam quos repellendus repellat magni amet atque.\nEa distinctio quo nostrum modi occaecati tenetur laborum.", + "commercialAndIndustrialPurposes": [ + { + "uuid": "b4c468ff-1212-4d33-911c-7da9b8d17f80", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "uuid": "e56db8e2-89fe-4b53-88a2-8a06579832ed", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "uuid": "b801dd81-64cd-4a59-819e-fae25b352ff7", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true }, { - "uuid": "65f48448-106e-44a9-a304-a3a8ea4189bd", + "uuid": "e3ba1d04-2847-413b-b1e6-bc95c91d2e11", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false @@ -57401,114 +67192,100 @@ ], "activityLog": [ { - "uuid": "3f8e0d2f-e19f-455a-a23d-02f235de730e", - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "MRAZ MALINDA", - "timestamp": "2022-12-13" - }, - { - "uuid": "accd89f4-7b0a-495a-9de5-79e55a00af14", + "uuid": "92a7deda-1670-4f78-a2ab-9c831658b627", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "LUBOWITZ JUSTUS", - "timestamp": "2023-08-16" - }, - { - "uuid": "90fa4a08-8034-4caf-b40e-4e5c2b02671e", - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "FERRY LAURIE", - "timestamp": "2017-07-15" + "user": "CORMIER ASHTON", + "timestamp": "2019-10-21" }, { - "uuid": "a3493948-63cb-4c27-bc4c-43db4fd41f29", + "uuid": "62d92272-63d6-4857-89fc-3f3a824de965", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "HOWE KOBE", - "timestamp": "2015-11-12" + "user": "TORP RUBYE", + "timestamp": "2019-07-03" }, { - "uuid": "5bf782cb-d621-46f9-a65b-a4f93fce60ec", - "siteRegistry": false, + "uuid": "7171b477-27a2-423d-bce6-ed96b609ee6f", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "KILBACK COLLIN", - "timestamp": "2016-02-12" + "user": "PADBERG WAVA", + "timestamp": "2020-10-26" }, { - "uuid": "0269700e-0754-4085-bfc4-e80f5e6825b2", + "uuid": "1995e93d-4e86-4a75-9b58-97f625fbdfce", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "BOGISICH QUINN", - "timestamp": "2022-12-02" + "user": "WISOKY COLLIN", + "timestamp": "2020-11-09" }, { - "uuid": "21898a5c-b6e9-4b5c-8355-85139cba5561", + "uuid": "a975907e-8052-4f65-8843-20bf98551535", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "CASPER ETHELYN", - "timestamp": "2017-06-25" + "user": "ABSHIRE ALPHONSO", + "timestamp": "2014-02-02" }, { - "uuid": "ca22e154-b1f6-4836-ad1f-0b2d2c066955", - "siteRegistry": true, + "uuid": "4e9dec4e-26a9-4599-84b2-5559371d252d", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "DOOLEY BLAKE", - "timestamp": "2017-07-19" + "user": "SCHUSTER RAPHAELLE", + "timestamp": "2019-11-27" }, { - "uuid": "d899b765-a905-40b3-abea-1f8779cfd291", + "uuid": "0719ce76-dab7-44b0-82c2-6fc502446246", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "HAUCK JOSIAH", - "timestamp": "2015-11-08" + "user": "RUSSEL DESTINEY", + "timestamp": "2018-09-21" } ], "associatedSites": [ { - "uuid": "e52040bd-156f-49bf-a13a-131333f9517b", - "dateNoted": "2016-05-13", + "uuid": "fb8976f2-2b76-495b-abbe-faeb684a0079", + "dateNoted": "2015-05-18", "notes": "", - "parcelID": "19025", - "siteID": "20928", + "parcelID": "15313", + "siteID": "15957", "siteRegistry": true }, { - "uuid": "9db2405c-be94-4b94-8664-83ddd535327f", - "dateNoted": "2021-10-01", + "uuid": "540b7f49-4d59-407c-b570-03bdab2fd937", + "dateNoted": "2020-08-17", "notes": "", - "parcelID": "16757", - "siteID": "20013", - "siteRegistry": false + "parcelID": "17021", + "siteID": "19460", + "siteRegistry": true } ] }, { - "uuid": "242dcf28-67ed-4ef4-a23d-7b60b2dd7691", - "siteID": 18687, - "address": "339 Kovacek Dam", - "latitude": 54.7096, - "longitude": -134.875, - "lastUpdated": "2021-04-25", - "city": "Corwinmouth", + "uuid": "5841de62-7ff0-494f-b632-4d948c39a1af", + "siteID": 20571, + "address": "4522 Jada Port", + "latitude": 52.6894, + "longitude": -132.0762, + "lastUpdated": "2018-02-22", + "city": "Lakincester", "region": "Mainland/Southwest", - "victoriaFile": "26250-20/18746", + "victoriaFile": "26250-20/4283", "regionalFile": "N/A", "parcelIDs": [ - 3319287, - 440609, - 6448713, - 9054405, - 925268 + 3105493, + 2514887, + 6657118, + 9705157, + 4488357 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "36a1000b-6739-4892-8b3a-2f1cc44b0db5", - "createdAt": "2014-09-07", - "completed": "2017-04-09", - "initiated": "2015-02-25", - "ministryContact": "CREMIN MARITZA", + "uuid": "cbf5164f-0169-4b4f-924e-9e28d9a298ee", + "createdAt": "2016-08-01", + "completed": "2015-02-13", + "initiated": "2020-03-01", + "ministryContact": "ADAMS AUBREY", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -57517,13 +67294,19 @@ ], "notationParticipants": [ { - "uuid": "fdc9a0f6-a9ec-4cbd-9a2a-99c6f6c50159", + "uuid": "00abc9e4-54a4-43c3-9bb8-91ec0691b28c", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "8dcfee57-29fc-4c50-9e78-9c9ee5172f6a", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "b01dc35f-5c57-4f91-9a21-a66488016d71", + "uuid": "f602c28d-614a-4a98-94e3-145eb7005d5f", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true @@ -57532,11 +67315,11 @@ "siteRegistry": true }, { - "uuid": "7cda63aa-ab63-458d-965a-1de50e14352c", - "createdAt": "2017-12-13", - "completed": "2023-05-15", - "initiated": "2015-10-03", - "ministryContact": "SCHOEN JUNIUS", + "uuid": "663435fc-a7a6-48ec-85d4-d3f989148fc9", + "createdAt": "2022-03-16", + "completed": "2016-01-09", + "initiated": "2021-09-22", + "ministryContact": "WATSICA ASTRID", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -57545,19 +67328,41 @@ ], "notationParticipants": [ { - "uuid": "fc46b078-1528-488d-8d62-b0e0730cf974", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "uuid": "ce86696a-c31d-4f58-88dd-e64dced70275", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "2cace8ae-418f-42a4-bcca-bd3354e9a9ad", + "uuid": "6b1e373f-254b-4d10-a619-6461e86ee07c", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "uuid": "351c0b13-d46f-4a79-802c-4cc9a1f132d5", + "createdAt": "2021-09-18", + "completed": "2017-07-19", + "initiated": "2023-03-10", + "ministryContact": "PFEFFER LELA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "uuid": "7a176071-247c-407b-b4fd-d01e154f978b", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true }, { - "uuid": "866b9051-ab9c-413d-b939-1f09a1d31695", + "uuid": "c40ef080-f1ed-4530-8de7-29867b5269ae", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true @@ -57566,11 +67371,11 @@ "siteRegistry": false }, { - "uuid": "9d0ef82f-5574-455d-90ab-cd1911c997d4", - "createdAt": "2019-06-07", - "completed": "2017-03-07", - "initiated": "2021-04-16", - "ministryContact": "STEHR MARLEN", + "uuid": "9bd66aed-21b0-40e0-a124-9248f3e37a72", + "createdAt": "2022-12-19", + "completed": "2020-07-07", + "initiated": "2019-11-21", + "ministryContact": "COLLINS LUIGI", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -57579,27 +67384,50 @@ ], "notationParticipants": [ { - "uuid": "3ed07d48-846f-4193-8200-e67c84c5174d", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "uuid": "d030feaf-d177-433c-8bd3-f4fd3b4b341e", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "uuid": "7345f771-0030-4aa5-a891-10a3ae01f092", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": true }, { - "uuid": "04e1a1f2-c5f4-4eff-a486-58d085e8e709", + "uuid": "1c04e95d-7d94-4622-ae2b-813d2385231b", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "uuid": "86a8cad7-6b2f-4461-a5df-af78bedbbe4c", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true } ], "participants": [ { - "uuid": "7f02f5c2-d043-4f10-85ea-06eb558a08e9", + "uuid": "dba84316-4d3a-4ccf-bec2-2c872fb18d6f", "name": "AMET, DOLOR SIT", - "endDate": "2016-12-07", - "startDate": "2021-04-30", + "endDate": "2016-11-04", + "startDate": "2015-10-05", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "uuid": "a738c2c5-bf32-4c83-a5e5-61de014745b8", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2017-05-20", + "startDate": "2023-01-07", "notes": "", "roles": [ "EMPLOYEE" @@ -57607,10 +67435,21 @@ "siteRegistry": true }, { - "uuid": "3d0baf94-1e88-466d-ac33-e33ffbb05fc9", - "name": "AMET, DOLOR SIT", - "endDate": "2014-06-02", - "startDate": "2013-11-26", + "uuid": "f712cbd4-5c98-4898-bfda-266de081eda6", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2015-02-18", + "startDate": "2015-04-04", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "uuid": "d74e3458-427f-4841-9a80-68d8507e7afc", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2014-10-31", + "startDate": "2016-12-04", "notes": "", "roles": [ "EMPLOYEE" @@ -57618,100 +67457,123 @@ "siteRegistry": false } ], + "documents": [ + { + "uuid": "28057ad4-1e43-4d9b-b209-e4f3bf6647a4", + "siteRegistry": false, + "documentDate": "2023-01-12", + "receivedDate": "2020-05-30", + "uploadedDate": "2018-07-22", + "title": "Preliminary Site Investigation, Detailed Site Investigation and Remedial Plan for the Management Area adjacent to the Shell Site at 1503 West 41st Ave", + "participants": [ + { + "uuid": "9a021efd-5686-42c2-b383-ebed0521cfce", + "name": "AMET, DOLOR SIT", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "f5bf01ae-9632-4dcc-892e-a3a94b9ab7df", + "name": "IPSUM", + "siteRegistry": false, + "role": "AUTHOR" + } + ] + } + ], "suspectLandUses": [ { - "uuid": "8cdcd302-945c-4b69-968f-c29a9124d612", + "uuid": "8548885e-8491-4a67-ad68-d198ec82f160", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2022-06-05 (described on Site Profile dated 2022-06-05)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "uuid": "cf0cef74-94a3-4f88-a8b0-3e9e4699c621", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2023-06-06 (described on Site Profile dated 2023-06-06)", + "notes": "INSERTED FOR SITE PROFILE DATED 2020-02-06 (described on Site Profile dated 2020-02-06)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "uuid": "65018791-3da6-455e-be2a-f0ac2d3a542e", + "uuid": "b2f4d25a-a17f-4b0e-b9fa-3267054ab694", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2020-03-02 (described on Site Profile dated 2020-03-02)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "notes": "INSERTED FOR SITE PROFILE DATED 2015-04-07 (described on Site Profile dated 2015-04-07)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "uuid": "6834d12d-789a-4222-9566-aae8582f2289", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2021-06-01 (described on Site Profile dated 2021-06-01)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], "parcelDescriptions": [ { - "uuid": "70682c9a-8dea-4ebb-9710-93e5046de02f", + "uuid": "9af345b8-aab0-4169-bfcb-0a581f842f12", "siteRegistry": true, - "dateNoted": "2022-01-22", - "parcelID": "18771", - "crownLandUsePIN": "16772", - "crownLandFileNumber": "18195", - "landDescription": "LOT 1 OF LOT 1 BLOCK 1 DISTRICT LOT 2 PLAN 8824" - }, - { - "uuid": "a932c55e-be3e-4ebf-9690-5510060dc850", - "siteRegistry": false, - "dateNoted": "2020-12-05", - "parcelID": "15207", - "crownLandUsePIN": "16763", - "crownLandFileNumber": "17523", - "landDescription": "LOT 3 OF LOT 4 BLOCK 1 DISTRICT LOT 5 PLAN 8202" + "dateNoted": "2021-03-04", + "parcelID": "17325", + "crownLandUsePIN": "20429", + "crownLandFileNumber": "18292", + "landDescription": "LOT 5 OF LOT 2 BLOCK 5 DISTRICT LOT 3 PLAN 3109" }, { - "uuid": "c18d918e-5f8a-41ff-b99a-581d21b7a11d", + "uuid": "2018a988-0609-410d-ad03-39f63b7ffcaa", "siteRegistry": false, - "dateNoted": "2013-12-09", - "parcelID": "19713", - "crownLandUsePIN": "18753", - "crownLandFileNumber": "20875", - "landDescription": "LOT 1 OF LOT 2 BLOCK 4 DISTRICT LOT 3 PLAN 9187" - }, - { - "uuid": "d1eacccc-a4e3-4d46-974e-2b574ac12d72", - "siteRegistry": true, - "dateNoted": "2018-12-11", - "parcelID": "19269", - "crownLandUsePIN": "16486", - "crownLandFileNumber": "17148", - "landDescription": "LOT 4 OF LOT 3 BLOCK 2 DISTRICT LOT 5 PLAN 3881" - }, - { - "uuid": "d985f8e6-31d3-4071-b04f-9cf304c944a6", - "siteRegistry": true, - "dateNoted": "2020-09-23", - "parcelID": "18693", - "crownLandUsePIN": "18537", - "crownLandFileNumber": "15812", - "landDescription": "LOT 2 OF LOT 1 BLOCK 4 DISTRICT LOT 1 PLAN 8744" + "dateNoted": "2014-04-05", + "parcelID": "17095", + "crownLandUsePIN": "15379", + "crownLandFileNumber": "19371", + "landDescription": "LOT 3 OF LOT 5 BLOCK 2 DISTRICT LOT 2 PLAN 8272" } ], "siteDisclosures": [ { - "uuid": "33a9c5ad-08eb-49ce-a7ac-9658294edea1", - "siteRegistry": false, - "dateReceived": "2014-09-25", - "dateCompleted": "2023-07-22", - "dateEntered": "2016-01-07", - "dateRegistrar": "2022-09-29", - "dateLocalAuthorityReceived": "2016-09-06", - "summary": "Architecto recusandae nam.\nExpedita excepturi aperiam.", - "informationUsed": "Nam eos dolorum soluta illum rerum.\nRepudiandae autem veritatis expedita optio in.\nHic impedit expedita aperiam fugit.\nBlanditiis a tempore repellat.", - "pastOrPresentOrders": "Distinctio laudantium tempora pariatur.", + "uuid": "45ee1b5c-4a8a-49b8-9d4e-d600c996ae4b", + "siteRegistry": true, + "dateReceived": "2015-12-12", + "dateCompleted": "2022-12-02", + "dateEntered": "2022-08-09", + "dateRegistrar": "2015-01-20", + "dateLocalAuthorityReceived": "2020-06-16", + "summary": "Doloribus nisi possimus temporibus.\nAtque distinctio omnis.", + "informationUsed": "Quos sit deserunt.\nIncidunt deleniti maxime saepe deserunt.\nMagnam explicabo dolorem sequi laborum quam tempora.", + "pastOrPresentOrders": "Quibusdam eaque quisquam doloribus nam adipisci nihil facere exercitationem numquam.\nPorro commodi dignissimos deserunt cum maxime facilis numquam ea numquam.\nVeritatis dolor veritatis eius doloremque eligendi molestias veniam nesciunt.", "commercialAndIndustrialPurposes": [ { - "uuid": "24128348-36ea-4f66-b133-97a6066850a3", - "scheduleReference": "F1*", + "uuid": "e783915b-d0fe-4983-94e7-2ff17b5cad49", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "4cd864c9-d7d6-4369-adb7-659ff00f3346", + "uuid": "a7a649ef-77b7-478d-b1ca-fcfe376dd950", "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false - }, - { - "uuid": "913d2993-67ac-4736-b426-949b74607aee", - "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true + } + ] + }, + { + "uuid": "c160710e-bb12-4ce9-b5ea-098217774db0", + "siteRegistry": false, + "dateReceived": "2014-05-08", + "dateCompleted": "2015-02-06", + "dateEntered": "2015-08-21", + "dateRegistrar": "2023-01-12", + "dateLocalAuthorityReceived": "2020-01-02", + "summary": "Tenetur sapiente enim ipsam nisi quae optio cum odio rerum.", + "informationUsed": "Placeat dicta laborum voluptates ratione ratione quos assumenda inventore.\nEarum deserunt inventore.\nIpsa quisquam laudantium asperiores quae.\nMagni a suscipit adipisci ex dolore.\nA magni eveniet eaque distinctio fuga blanditiis.", + "pastOrPresentOrders": "Quaerat ipsam iure consequuntur reiciendis dicta ab maxime consequatur.\nModi accusamus et reprehenderit quas.\nExpedita placeat molestias ipsa.", + "commercialAndIndustrialPurposes": [ + { + "uuid": "d01c384c-ea20-415c-bc78-763b9aa4429c", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false }, { - "uuid": "e7102cd1-27ed-4490-84a6-0c7d8b5a59d8", + "uuid": "76d3413d-f416-4d79-bb4f-4be101574f07", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true @@ -57721,112 +67583,108 @@ ], "activityLog": [ { - "uuid": "2aa8d1d7-1875-41a5-9d0b-7b6962cf0816", - "siteRegistry": true, + "uuid": "bda81ac0-1f8a-4a3b-8bef-f932302c02fa", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "SMITH RICHARD", - "timestamp": "2017-02-19" + "user": "TURCOTTE HOLDEN", + "timestamp": "2018-01-27" }, { - "uuid": "0f8b0681-a8e6-43a2-8622-733ed5599bc5", + "uuid": "2eba5195-cb43-4bc8-a597-d635e8c104e4", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "SMITH TERRILL", - "timestamp": "2018-02-07" + "user": "PFANNERSTILL BRICE", + "timestamp": "2023-04-01" + }, + { + "uuid": "b17985ca-3b32-4f75-ac78-f57b1f1ffa36", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "PAGAC KAROLANN", + "timestamp": "2016-04-05" + }, + { + "uuid": "2a76a75c-2dcd-4ff0-a98b-361673e317ac", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "MURAZIK VALENTINA", + "timestamp": "2013-12-14" }, { - "uuid": "f6c40f0b-22d3-46b8-a5d4-e1660c6e7b7f", + "uuid": "18a661ac-66d3-4296-b872-41e300c471b8", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "VON JARRED", - "timestamp": "2020-02-28" + "user": "DARE ZANE", + "timestamp": "2019-08-01" }, { - "uuid": "c0f55e6b-d65b-4e84-ac15-888dac18f8a0", + "uuid": "ee695927-2cf7-44ec-9c9c-99541296b0d1", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "MACEJKOVIC JEREMIE", - "timestamp": "2019-04-15" + "user": "BALISTRERI NAPOLEON", + "timestamp": "2022-04-04" }, { - "uuid": "34b004dd-92ae-4b3a-bd3b-f27d2dcf28ad", - "siteRegistry": false, + "uuid": "bdb5aa2f-af21-4a92-bd23-f6f7a0307877", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "HOWELL JAN", - "timestamp": "2022-12-28" + "user": "LEUSCHKE ELECTA", + "timestamp": "2020-01-03" } ], "associatedSites": [ { - "uuid": "a842647f-6d54-4762-992a-4d4729333078", - "dateNoted": "2016-10-13", + "uuid": "6f5d5897-9bbf-4da3-89a1-3abae4881ff7", + "dateNoted": "2014-01-04", + "notes": "", + "parcelID": "20118", + "siteID": "17686", + "siteRegistry": false + }, + { + "uuid": "861b2a8c-3bdb-4ce4-afe2-577b5f36d004", + "dateNoted": "2019-03-09", + "notes": "", + "parcelID": "18681", + "siteID": "15579", + "siteRegistry": false + }, + { + "uuid": "ef61999e-10a5-451a-86fe-2736da08ef80", + "dateNoted": "2020-06-10", "notes": "", - "parcelID": "19730", - "siteID": "20490", + "parcelID": "15898", + "siteID": "19173", "siteRegistry": true } ] }, { - "uuid": "220fd643-036c-4d22-a63a-51cc18b18c45", - "siteID": 19660, - "address": "538 Zola Shore", - "latitude": 58.7399, - "longitude": -127.8483, - "lastUpdated": "2015-11-21", - "city": "Keeblerstead", + "uuid": "8568aea5-c602-42cc-8776-9009ee008c62", + "siteID": 16733, + "address": "1170 Willis Corner", + "latitude": 54.7238, + "longitude": -135.8922, + "lastUpdated": "2022-08-08", + "city": "New Anastacioworth", "region": " North Coast", - "victoriaFile": "26250-20/17468", + "victoriaFile": "26250-20/985", "regionalFile": "N/A", "parcelIDs": [ - 9009466, - 6039411, - 4995539, - 5760574, - 9367186 + 8653967, + 8720912, + 324872, + 7592415, + 3086675 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "3456739c-8519-4a2e-99b5-0acd39284528", - "createdAt": "2017-06-10", - "completed": "2015-05-11", - "initiated": "2021-10-08", - "ministryContact": "ZULAUF ANNETTE", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "uuid": "5ca654c6-69dd-46ff-9118-53b03e43e127", - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "uuid": "9ebc58cd-efa8-46dd-92e5-cd256d32a053", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "uuid": "7abb6856-6927-49ed-b177-769247721209", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - } - ], - "siteRegistry": false - }, - { - "uuid": "56435ff8-038e-4b37-8bb6-ec9ff9896655", - "createdAt": "2016-04-21", - "completed": "2017-08-18", - "initiated": "2016-12-04", - "ministryContact": "AUER EVANS", + "uuid": "0798d494-fd03-4f6f-8b80-f3463fa576b5", + "createdAt": "2021-05-08", + "completed": "2019-01-14", + "initiated": "2019-05-12", + "ministryContact": "MOORE DANIELLA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -57835,78 +67693,38 @@ ], "notationParticipants": [ { - "uuid": "ca8084dd-68f8-4bf3-b4a7-5319fa9cf837", + "uuid": "139e121c-60bb-4e4a-99dd-cc1e4fcec54a", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "d45183a0-4b21-42c8-b2af-51fd499c66de", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "uuid": "91c19865-a1c7-4771-ac83-2f8038c698af", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - } - ], - "siteRegistry": true - }, - { - "uuid": "e7dfe7f6-b641-49fd-b066-7fb838907d77", - "createdAt": "2020-02-21", - "completed": "2014-09-23", - "initiated": "2016-12-05", - "ministryContact": "KOZEY LEW", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "uuid": "a86b1a92-f6b3-4484-b871-5f258daa9df7", + "uuid": "437b5816-d8a6-42d3-b48a-35b0d8e7bafc", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false }, { - "uuid": "b76f3170-0204-4232-8b3e-1b503537de8f", + "uuid": "fbc03f8e-f3c9-4225-bc6d-ba8fb4fb12e4", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "uuid": "72381379-a17e-442e-9fe7-a39f41596318", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "uuid": "c702e3b4-364f-4eb3-bc4f-8f28024a647e", - "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true }, { - "uuid": "3223482d-2ebe-451a-a152-529eb520dbfe", + "uuid": "6f67e313-75c8-4d5c-8471-645ec69f64c3", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false } ], "siteRegistry": false }, { - "uuid": "904650e6-10d2-4aab-9c02-4720916c58ce", - "createdAt": "2020-01-06", - "completed": "2016-09-07", - "initiated": "2019-12-15", - "ministryContact": "HILPERT-WIZA ARTURO", + "uuid": "1a99d515-d0e8-4be5-8037-296c8d4bdf84", + "createdAt": "2021-04-13", + "completed": "2015-02-26", + "initiated": "2013-12-20", + "ministryContact": "EBERT WILLA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -57915,79 +67733,45 @@ ], "notationParticipants": [ { - "uuid": "1b83e7f5-9b95-4578-b29d-1ec69d48bf57", + "uuid": "385693a6-9f90-47c0-99d4-6c793dad60c9", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "51e73eef-7138-47fe-87de-19d3d3e39bae", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "uuid": "1c0364c0-6b72-41e0-bb18-6f49f86084a6", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "18edf77d-7c12-48f8-ab46-06fd16a2d876", - "name": "SHELL CANADA PRODUCTS", + "uuid": "2da49575-3572-43f5-99aa-a10a27b1e224", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "48eff319-cf30-468e-8c39-d2bde652daef", + "uuid": "b4b711b7-25cb-49b8-a69a-c68e100ef14e", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true }, { - "uuid": "1a25f102-4a43-4ab8-82e5-c85fa13d9668", + "uuid": "7de042bd-01b3-4346-a00e-41ac89daaace", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true - } - ], - "siteRegistry": false - }, - { - "uuid": "83f0737c-03c7-43b5-ad77-b3bc6a9fea97", - "createdAt": "2015-04-04", - "completed": "2014-12-22", - "initiated": "2016-01-09", - "ministryContact": "MANTE CAREY", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "uuid": "4b14228b-7278-4d35-aaaa-79ab60ec7bc3", - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "uuid": "3fb771ab-1969-4cb5-9a87-99d376cd7053", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", "siteRegistry": false - }, - { - "uuid": "8b70d444-9ea4-4b50-a161-c78c61b8cab9", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false } ], "participants": [ { - "uuid": "ce1bac39-f0be-4a77-be4a-efe60e4fb772", - "name": "IPSUM", - "endDate": "2017-12-17", - "startDate": "2018-04-22", + "uuid": "6c55aff5-57b7-44d4-b359-697dc6e4844b", + "name": "AMET, DOLOR SIT", + "endDate": "2021-04-11", + "startDate": "2021-02-10", "notes": "", "roles": [ "ORGANIZATION" @@ -57995,262 +67779,292 @@ "siteRegistry": false }, { - "uuid": "b926e80a-a46c-42ec-9106-b341a1322b73", - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2019-01-15", - "startDate": "2023-09-17", + "uuid": "6217e60c-53f2-4501-8270-3d0c238f22a4", + "name": "AMET, DOLOR SIT", + "endDate": "2023-06-11", + "startDate": "2020-05-07", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": false }, { - "uuid": "3162c184-b6ee-4896-a02a-b15fbd7bc784", - "name": "AMET, DOLOR SIT", - "endDate": "2022-12-01", - "startDate": "2021-01-04", + "uuid": "93ff6e1d-b11e-4b46-9dfa-ad60ee27e8ef", + "name": "IPSUM", + "endDate": "2014-05-14", + "startDate": "2015-12-21", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": false }, { - "uuid": "d9a346c5-2ca0-4efe-a28e-f0d142adf205", + "uuid": "14efd150-a70d-4af8-9e22-90b39109200b", "name": "AMET, DOLOR SIT", - "endDate": "2021-12-15", - "startDate": "2020-02-08", + "endDate": "2018-05-10", + "startDate": "2019-10-06", "notes": "", "roles": [ "EMPLOYEE" ], "siteRegistry": true + } + ], + "documents": [ + { + "uuid": "43928219-2d7a-4cd6-89a8-aad3ca667ac4", + "siteRegistry": false, + "documentDate": "2019-08-07", + "receivedDate": "2014-01-26", + "uploadedDate": "2021-02-28", + "title": "Summary of Site Conditions, 1537 W 41st Avenue, Vancouver", + "participants": [ + { + "uuid": "eb22a2e6-9a75-4518-a66e-cc9acb268919", + "name": "AMET, DOLOR SIT", + "siteRegistry": false, + "role": "AUTHOR" + } + ] }, { - "uuid": "9a2760bc-b111-4fb6-82e2-1095d2813653", - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2019-03-06", - "startDate": "2023-07-07", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": false + "uuid": "07c2c67d-19c2-4776-a1fc-c748307fd172", + "siteRegistry": true, + "documentDate": "2021-08-30", + "receivedDate": "2014-04-27", + "uploadedDate": "2022-07-18", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "6270b0f1-7047-449f-8a36-5c08f6382262", + "name": "AMET, DOLOR SIT", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "2bfc1b66-2435-4ce3-8215-3d46d93f15e2", + "name": "IPSUM", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "f2148ee0-00a5-41f2-8af5-f7023af1cc64", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": true, + "role": "AUTHOR" + } + ] } ], "suspectLandUses": [ { - "uuid": "75ceca57-d919-4c51-a0c9-e33a3c43a2fe", + "uuid": "5a635d73-1844-46ad-97bd-b0eaced45fb9", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-04-19 (described on Site Profile dated 2014-04-19)", + "notes": "INSERTED FOR SITE PROFILE DATED 2022-02-02 (described on Site Profile dated 2022-02-02)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "uuid": "bc33b7b4-6556-4154-8e2d-b38220d3345f", + "uuid": "0a854b4b-2cf4-4f64-89b0-04bbeed9fef6", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2023-04-03 (described on Site Profile dated 2023-04-03)", + "notes": "INSERTED FOR SITE PROFILE DATED 2014-02-12 (described on Site Profile dated 2014-02-12)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "uuid": "90ce3e56-630c-4022-8c25-19dca6c241f6", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2014-10-01 (described on Site Profile dated 2014-10-01)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "uuid": "7e16ab48-c9c1-4250-994a-a13a04916cf2", + "uuid": "d2f27982-0ed5-4075-8eab-d053b164478f", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-09-05 (described on Site Profile dated 2019-09-05)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "notes": "INSERTED FOR SITE PROFILE DATED 2016-01-26 (described on Site Profile dated 2016-01-26)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], "parcelDescriptions": [ { - "uuid": "de82a8ef-c9e1-4368-8bc7-c3d7fe138f9f", + "uuid": "35449ebf-efb9-43ae-8bc5-050522d58453", "siteRegistry": false, - "dateNoted": "2022-01-06", - "parcelID": "16907", - "crownLandUsePIN": "19182", - "crownLandFileNumber": "18072", - "landDescription": "LOT 5 OF LOT 1 BLOCK 3 DISTRICT LOT 3 PLAN 6519" + "dateNoted": "2016-06-26", + "parcelID": "17477", + "crownLandUsePIN": "20379", + "crownLandFileNumber": "18727", + "landDescription": "LOT 5 OF LOT 1 BLOCK 1 DISTRICT LOT 2 PLAN 6886" }, { - "uuid": "2dde9a8a-dcd9-4aad-9e32-ebb9727b4735", - "siteRegistry": true, - "dateNoted": "2016-05-17", - "parcelID": "20904", - "crownLandUsePIN": "20319", - "crownLandFileNumber": "17349", - "landDescription": "LOT 1 OF LOT 3 BLOCK 3 DISTRICT LOT 2 PLAN 6188" + "uuid": "27178028-a3cd-4313-997c-031bc8b0066e", + "siteRegistry": false, + "dateNoted": "2021-12-31", + "parcelID": "19166", + "crownLandUsePIN": "16494", + "crownLandFileNumber": "18369", + "landDescription": "LOT 3 OF LOT 3 BLOCK 1 DISTRICT LOT 3 PLAN 4627" } ], "siteDisclosures": [ { - "uuid": "6f1e4340-15bb-4f96-a1b5-60889a58f02f", - "siteRegistry": true, - "dateReceived": "2018-03-01", - "dateCompleted": "2020-09-21", - "dateEntered": "2014-09-12", - "dateRegistrar": "2018-04-17", - "dateLocalAuthorityReceived": "2023-08-30", - "summary": "Vero aliquam perferendis eos.", - "informationUsed": "Similique perferendis iure est quam tempore repudiandae magni.\nFuga doloribus deserunt quae corrupti placeat sint.\nPerferendis natus illo dolores earum distinctio iure.\nAliquam inventore autem beatae eius atque sint ex illo.", - "pastOrPresentOrders": "Eligendi laborum alias consequuntur.", + "uuid": "c7bb9688-a8ec-4cab-8c58-53d52698ca62", + "siteRegistry": false, + "dateReceived": "2017-02-25", + "dateCompleted": "2020-03-21", + "dateEntered": "2022-09-30", + "dateRegistrar": "2018-01-29", + "dateLocalAuthorityReceived": "2014-03-26", + "summary": "Quibusdam architecto odio nihil deleniti voluptates.\nAssumenda distinctio ab beatae perspiciatis atque excepturi id ab.", + "informationUsed": "Aliquid fugit nostrum iure illo dolores a.\nOccaecati fuga fugit quos iusto fugiat doloremque error vero.\nOdio rem harum.", + "pastOrPresentOrders": "Nemo quos reprehenderit placeat facilis unde ipsum asperiores.\nPossimus deserunt quos aperiam expedita enim provident consectetur corrupti labore.", "commercialAndIndustrialPurposes": [ { - "uuid": "3429899e-b9de-4f31-aea0-8a658d47e303", + "uuid": "0bb63971-774c-45e2-ae3b-3621345a3848", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "uuid": "37b386a2-7721-4c86-898c-b9df4fa0b3da", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "uuid": "3546e035-f172-4c63-93ab-b09fa4c9ad2c", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false }, { - "uuid": "09971c1d-4536-44bd-b9c5-eedb94a0a0cc", + "uuid": "824d34ea-5636-4132-b97a-724b1f3a329e", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false + "siteRegistry": true } ] }, { - "uuid": "243a0ec6-0565-4dd6-946b-54df4aced13c", + "uuid": "00536a73-b8f0-4487-be1b-8f9da66c84a4", "siteRegistry": false, - "dateReceived": "2014-05-13", - "dateCompleted": "2023-08-06", - "dateEntered": "2016-04-19", - "dateRegistrar": "2020-01-23", - "dateLocalAuthorityReceived": "2015-08-14", - "summary": "Fugit fugit praesentium.\nAspernatur deleniti quo earum quo.\nHarum enim earum.", - "informationUsed": "Omnis id facilis dignissimos.\nVero autem iste neque placeat at dolor consequuntur.\nAccusamus esse voluptate esse enim sunt sequi nulla accusantium officiis.\nPlaceat excepturi incidunt.", - "pastOrPresentOrders": "Officia quam sint.\nIusto quia aut placeat error suscipit voluptatum tempora ut.\nVoluptas repudiandae quod quasi sunt in et saepe architecto.", + "dateReceived": "2021-01-19", + "dateCompleted": "2023-03-19", + "dateEntered": "2021-06-23", + "dateRegistrar": "2020-07-19", + "dateLocalAuthorityReceived": "2017-10-18", + "summary": "Optio eligendi in adipisci quisquam veritatis impedit dicta vitae architecto.", + "informationUsed": "Dolore fugit animi sequi tempora nulla enim ab ut.\nHarum alias cum at totam omnis aliquid neque aliquam.\nPraesentium reiciendis inventore voluptatibus eveniet.\nMollitia blanditiis sunt adipisci.\nSed fugit recusandae.", + "pastOrPresentOrders": "Esse reprehenderit consequuntur fuga cupiditate ex veniam dignissimos reprehenderit voluptas.", "commercialAndIndustrialPurposes": [ { - "uuid": "c5e4f032-eae6-4d3c-8cbc-8155104df1e2", + "uuid": "f453263d-4310-469c-8324-bdaac1036831", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "uuid": "b070c40f-1128-40d2-b84f-0cfd36066906", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, { - "uuid": "02c4b6e2-bfe5-44fb-944c-812593f2d59d", + "uuid": "3bc389d7-c234-480e-a4ac-9039c5c6b53a", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true + "siteRegistry": false } ] } ], "activityLog": [ { - "uuid": "6c13bf9b-3d4a-4bf3-b072-704fe2666f95", + "uuid": "6bb00c94-504f-4aa9-a7ba-a63130da2731", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "SCHULIST SARAI", - "timestamp": "2016-02-29" - }, - { - "uuid": "78b608ad-0019-437e-a839-eb0e8b99dec6", - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "WEIMANN JAQUELINE", - "timestamp": "2016-11-04" + "user": "WOLFF VALERIE", + "timestamp": "2018-08-14" }, { - "uuid": "bcb5ab1f-c1a4-479d-8c22-c7dcbb25c794", - "siteRegistry": false, + "uuid": "00f1809a-50a6-44fa-b32a-230ea103942b", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "ROHAN LAISHA", - "timestamp": "2017-02-20" + "user": "LEGROS HOLLY", + "timestamp": "2020-03-30" }, { - "uuid": "7eaee4d9-eb38-4635-bc6f-6e70608b6f2b", + "uuid": "9b02768c-9849-4d46-a6db-2e7761ffaa31", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "MACGYVER-MANN ZACHERY", - "timestamp": "2015-08-12" + "user": "ERNSER CORA", + "timestamp": "2021-04-18" }, { - "uuid": "7d10626d-dc70-45f9-85f8-c08f0c083b63", + "uuid": "c87b2baf-9179-4155-a438-ccb6caebc081", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "HERMAN-SMITH DANIELLA", - "timestamp": "2014-10-10" + "user": "BRUEN ANISSA", + "timestamp": "2021-06-22" }, { - "uuid": "f99eadad-4a65-4c06-b433-108896d217ec", + "uuid": "9916c0c6-a10c-419a-8f79-52a86b76b9c2", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "HARVEY LESLY", - "timestamp": "2017-09-26" + "user": "MILLER DAIJA", + "timestamp": "2019-04-02" }, { - "uuid": "9407529f-bd32-49fc-94b4-726748b0c801", + "uuid": "f26f90c4-1b16-40ad-852e-9c46cfb8f5d2", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "VON ORAN", - "timestamp": "2018-06-08" - }, - { - "uuid": "d5fb5d58-2850-4322-82e5-d22c49572e27", - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "HOMENICK HEATHER", - "timestamp": "2016-01-27" - }, - { - "uuid": "c208aba5-593e-450e-9cd3-92dd81f2a9cd", - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "JOHNS TRACE", - "timestamp": "2018-05-05" + "user": "BEER KAILEY", + "timestamp": "2021-03-21" } ], "associatedSites": [ { - "uuid": "6ce14325-8430-4d18-8879-817187135afa", - "dateNoted": "2015-09-21", - "notes": "", - "parcelID": "17346", - "siteID": "19769", - "siteRegistry": false - }, - { - "uuid": "982ed4e8-5d62-439b-9874-32bd84708bde", - "dateNoted": "2022-12-15", + "uuid": "f9e21bfa-63b2-45e3-862d-5cc1daf2d307", + "dateNoted": "2020-02-22", "notes": "", - "parcelID": "17393", - "siteID": "20395", - "siteRegistry": false + "parcelID": "15467", + "siteID": "17276", + "siteRegistry": true }, { - "uuid": "93edc891-06fe-44fd-94fa-19df2664bfba", - "dateNoted": "2016-07-02", + "uuid": "48383f04-b24e-47bd-91f3-94c10b39d1a4", + "dateNoted": "2017-05-17", "notes": "", - "parcelID": "20009", - "siteID": "20395", - "siteRegistry": false + "parcelID": "20592", + "siteID": "18536", + "siteRegistry": true } ] }, { - "uuid": "d1ec86a4-da2d-4a03-81b7-ac4201ef0dc4", - "siteID": 20858, - "address": "89138 Laurine Plains", - "latitude": 58.4611, - "longitude": -135.3754, - "lastUpdated": "2015-01-31", - "city": "Mishawaka", - "region": "Kootenay", - "victoriaFile": "26250-20/16300", + "uuid": "d4e74b6e-21ca-4fbb-a7de-8071baec4755", + "siteID": 16978, + "address": "72339 Maxie Bridge", + "latitude": 56.1405, + "longitude": -137.7881, + "lastUpdated": "2019-04-22", + "city": "North Nadia", + "region": "Vancouver Island/Coast", + "victoriaFile": "26250-20/7205", "regionalFile": "N/A", "parcelIDs": [ - 9662909, - 586296, - 6012692, - 6639069, - 7125484 + 5607907, + 3850369, + 4068040, + 1710631, + 4604627 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "e421adbe-3fe9-449c-880a-adeeb77e9010", - "createdAt": "2017-07-11", - "completed": "2016-03-11", - "initiated": "2023-02-20", - "ministryContact": "CHRISTIANSEN CHAD", + "uuid": "216f2355-f60b-4304-a39b-4ff79adbcf13", + "createdAt": "2019-03-05", + "completed": "2019-09-13", + "initiated": "2020-11-24", + "ministryContact": "TERRY KADE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -58259,44 +68073,26 @@ ], "notationParticipants": [ { - "uuid": "d822e4cd-41da-4846-a754-6ba9b385d6fe", + "uuid": "7b441858-173a-42b3-a6a2-76baf256b32d", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "uuid": "f2c02b0a-c404-46e2-93f4-8da130fbc711", - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "uuid": "d63c3a7f-7697-4ebd-a848-8009ac4d1cfa", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "8a06c348-f16e-47a9-8fa7-ff0041da2057", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "uuid": "c70129b5-fd0d-45ef-8657-b505b4472eda", + "uuid": "42309b31-3d6c-4d68-917a-d91ac98cfb63", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "9e8b2b0e-e595-4216-a081-14ef11f7eb49", - "createdAt": "2016-08-30", - "completed": "2015-04-29", - "initiated": "2014-04-27", - "ministryContact": "KIRLIN TOMAS", + "uuid": "c5a46264-95d1-499b-944b-f49b636e5a94", + "createdAt": "2015-10-24", + "completed": "2020-11-23", + "initiated": "2020-04-08", + "ministryContact": "OLSON ANDERSON", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -58305,26 +68101,44 @@ ], "notationParticipants": [ { - "uuid": "c75b9716-efd5-49ee-afb7-4af9d91a674e", + "uuid": "bee39296-7e18-4719-aca7-abd9a6c8a8b2", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "6a1b3157-dead-41a3-ab21-0c40c777b249", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "uuid": "09ceeca4-82e9-4005-985b-47274362e994", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true }, { - "uuid": "614a52d5-2ac9-4503-b746-ed708b9d6418", + "uuid": "d13a9262-5f24-4692-94d6-5100668fd2f5", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "19853b3a-5927-4f6b-9321-a5ba5a523bc6", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "e09d6932-4630-4044-99b6-d8f303353410", - "createdAt": "2018-02-06", - "completed": "2019-05-29", - "initiated": "2019-11-13", - "ministryContact": "KUNDE DEXTER", + "uuid": "c574aa26-4c32-46bf-a96e-58cde088bd85", + "createdAt": "2021-07-24", + "completed": "2016-08-25", + "initiated": "2022-03-28", + "ministryContact": "CUMMERATA MARGARETTE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -58333,44 +68147,38 @@ ], "notationParticipants": [ { - "uuid": "30d769c9-b8b0-42d4-adae-c0c448e529fb", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "uuid": "1538261b-91fb-4278-a5e9-339a337957e3", + "uuid": "c0f11224-3fd0-4e1f-b6da-7a3d9fda67c6", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "c9b37ec6-8dad-4a28-92d1-3f5d7e361b42", + "uuid": "b4201406-e546-4ebd-86da-e7a847585c77", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false }, { - "uuid": "9844540c-b96f-43e5-9657-e7610a3fba82", - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "2dca993b-faa3-4520-b8f0-7215a2c7d76e", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false }, { - "uuid": "9efbbcd5-46ea-4e90-b11f-12f8dc7a6f6f", + "uuid": "f2f52b35-f3d3-4a7f-845e-f62c9219b03e", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true } ], "siteRegistry": true }, { - "uuid": "4c1247fd-89ab-4561-8416-24ecbd926dec", - "createdAt": "2018-08-12", - "completed": "2016-12-27", - "initiated": "2014-09-02", - "ministryContact": "GREEN JEFFRY", + "uuid": "984f37ad-7a4f-41c4-8d4b-23b8b84f7e3e", + "createdAt": "2018-11-16", + "completed": "2020-10-11", + "initiated": "2013-11-12", + "ministryContact": "NADER HATTIE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -58379,38 +68187,61 @@ ], "notationParticipants": [ { - "uuid": "35a04133-4e6b-4ffd-ab91-07b9be96a48e", + "uuid": "be4bcfaf-e02f-48f5-827f-162be3c2a6ce", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "e2b65e6f-b44e-4e8e-bc61-54958665003e", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "4cc7eca5-a2ac-4cd7-a6cc-0c10236cc623", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "264312a4-6234-4b57-8072-5a1bcca7d87a", + "uuid": "8ba5c2e9-18de-4ec1-9039-03a060d5b7af", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false } ], "participants": [ { - "uuid": "ce7aabf8-0cd0-47b8-af5b-8f7634d0b16a", + "uuid": "ea6fa691-218b-4bb7-82fb-9801d20ebe36", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2019-05-07", + "startDate": "2015-10-07", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "uuid": "0db19a9b-dc83-442a-bf80-b06de4731f9b", "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2016-11-02", - "startDate": "2015-05-20", + "endDate": "2021-01-01", + "startDate": "2023-04-10", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "19b79c68-d952-4d5c-b8f3-ea33cfc376eb", - "name": "SHELL CANADA PRODUCTS", - "endDate": "2013-12-09", - "startDate": "2022-07-07", + "uuid": "cc83dde6-fdd4-48cf-bbd7-f8cf7fcf1b15", + "name": "IPSUM", + "endDate": "2016-03-08", + "startDate": "2019-01-15", "notes": "", "roles": [ "ORGANIZATION" @@ -58418,10 +68249,10 @@ "siteRegistry": false }, { - "uuid": "d508da70-9bbf-42ba-8d4c-4ebd1127cf56", - "name": "AMET, DOLOR SIT", - "endDate": "2018-06-09", - "startDate": "2018-08-18", + "uuid": "6fec17b4-6400-4ec5-98e4-4c9bde7ce5bc", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2017-09-09", + "startDate": "2021-02-27", "notes": "", "roles": [ "ORGANIZATION" @@ -58429,10 +68260,10 @@ "siteRegistry": false }, { - "uuid": "f79be447-6d9c-4e1b-93d5-8af1c642cef0", - "name": "AMET, DOLOR SIT", - "endDate": "2016-07-07", - "startDate": "2016-12-25", + "uuid": "54abb494-ced7-4460-8d04-9b5afa569491", + "name": "IPSUM", + "endDate": "2019-07-22", + "startDate": "2021-02-20", "notes": "", "roles": [ "EMPLOYEE" @@ -58440,175 +68271,269 @@ "siteRegistry": true } ], + "documents": [ + { + "uuid": "860e372b-880a-4788-b316-8b2d85856d07", + "siteRegistry": false, + "documentDate": "2023-10-12", + "receivedDate": "2023-08-22", + "uploadedDate": "2022-09-06", + "title": "Preliminary Site Investigation, Detailed Site Investigation and Remedial Plan for the Management Area adjacent to the Shell Site at 1503 West 41st Ave", + "participants": [ + { + "uuid": "48dff253-8ffb-4065-84be-b76ee867aa9e", + "name": "AMET, DOLOR SIT", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "1d8fd4c9-be81-44d6-b373-8d962e3d6d7b", + "name": "IPSUM", + "siteRegistry": false, + "role": "AUTHOR" + } + ] + }, + { + "uuid": "2f88baef-674f-4de3-8ec3-44c9936ddf0b", + "siteRegistry": false, + "documentDate": "2022-12-15", + "receivedDate": "2016-10-09", + "uploadedDate": "2016-06-18", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "523201ed-924d-47ac-a625-abb910362766", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": true, + "role": "AUTHOR" + } + ] + }, + { + "uuid": "b89b18a3-c679-453c-bd47-f0d22c87724a", + "siteRegistry": false, + "documentDate": "2022-06-02", + "receivedDate": "2020-09-24", + "uploadedDate": "2017-10-05", + "title": "Summary of Site Conditions, 1537 W 41st Avenue, Vancouver", + "participants": [ + { + "uuid": "1f227a16-4195-4b26-b8d7-845b4a8e148a", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": false, + "role": "AUTHOR" + } + ] + } + ], "suspectLandUses": [ { - "uuid": "1051ecdb-ea05-4bce-8b96-f19df00c297a", - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2020-06-03 (described on Site Profile dated 2020-06-03)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "uuid": "da065fd7-4eb0-4136-b3ee-1795e03c8049", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2022-07-15 (described on Site Profile dated 2022-07-15)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "uuid": "3f777591-6fff-47f5-874e-d034aa16aa41", - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2023-01-27 (described on Site Profile dated 2023-01-27)", + "uuid": "c320036a-0cba-4e75-90f6-c54af6d27639", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2020-03-20 (described on Site Profile dated 2020-03-20)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "uuid": "ef88635e-7fac-4f5d-87ea-8a1215096994", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2017-02-07 (described on Site Profile dated 2017-02-07)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "uuid": "cdf4d0fc-ab7e-4bc8-a63d-0180d74dd512", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2017-03-26 (described on Site Profile dated 2017-03-26)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], "parcelDescriptions": [ { - "uuid": "d20f9ac6-4b39-43cc-8387-bc674d3923c9", + "uuid": "fce7b71b-f283-48df-b8b9-8c0f42c82ad9", "siteRegistry": true, - "dateNoted": "2023-04-26", - "parcelID": "15795", - "crownLandUsePIN": "19467", - "crownLandFileNumber": "20075", - "landDescription": "LOT 1 OF LOT 5 BLOCK 3 DISTRICT LOT 1 PLAN 2917" + "dateNoted": "2020-11-15", + "parcelID": "15823", + "crownLandUsePIN": "17530", + "crownLandFileNumber": "19580", + "landDescription": "LOT 4 OF LOT 3 BLOCK 4 DISTRICT LOT 5 PLAN 6990" }, { - "uuid": "e51a9b9f-4cd9-4cfb-9bce-cdb231a836ef", + "uuid": "994deaa4-2196-4dfe-92b9-b5d90318e856", "siteRegistry": false, - "dateNoted": "2015-11-01", - "parcelID": "19727", - "crownLandUsePIN": "16565", - "crownLandFileNumber": "15863", - "landDescription": "LOT 1 OF LOT 1 BLOCK 2 DISTRICT LOT 5 PLAN 4730" - }, - { - "uuid": "c39a627b-4c17-493e-a713-fa260e5e8438", - "siteRegistry": true, - "dateNoted": "2015-02-02", - "parcelID": "17877", - "crownLandUsePIN": "15509", - "crownLandFileNumber": "19027", - "landDescription": "LOT 2 OF LOT 4 BLOCK 2 DISTRICT LOT 3 PLAN 8320" + "dateNoted": "2015-04-25", + "parcelID": "20926", + "crownLandUsePIN": "18667", + "crownLandFileNumber": "16399", + "landDescription": "LOT 5 OF LOT 5 BLOCK 5 DISTRICT LOT 1 PLAN 4904" }, { - "uuid": "6c38f410-1f80-48ae-b3bb-3b7c07809ce3", + "uuid": "4848a75e-e6b7-4d48-89b6-b091d6dfed10", "siteRegistry": true, - "dateNoted": "2017-12-09", - "parcelID": "18725", - "crownLandUsePIN": "20963", - "crownLandFileNumber": "20100", - "landDescription": "LOT 5 OF LOT 5 BLOCK 3 DISTRICT LOT 2 PLAN 9445" + "dateNoted": "2015-04-13", + "parcelID": "15210", + "crownLandUsePIN": "17403", + "crownLandFileNumber": "20020", + "landDescription": "LOT 1 OF LOT 4 BLOCK 5 DISTRICT LOT 1 PLAN 4697" } ], "siteDisclosures": [ { - "uuid": "18be446a-0634-4f70-94e3-d12c3d680e49", - "siteRegistry": false, - "dateReceived": "2021-09-29", - "dateCompleted": "2019-07-12", - "dateEntered": "2019-11-02", - "dateRegistrar": "2016-07-10", - "dateLocalAuthorityReceived": "2014-05-21", - "summary": "Praesentium quibusdam iste.", - "informationUsed": "Inventore perferendis mollitia.\nEum aliquam voluptate cumque repellendus veritatis.\nDolor distinctio repudiandae vero nihil est quo.", - "pastOrPresentOrders": "Amet enim natus ipsam dolorem.", + "uuid": "d7d7a9c1-28b3-484e-a6ca-779be25ccf14", + "siteRegistry": true, + "dateReceived": "2014-12-19", + "dateCompleted": "2021-08-25", + "dateEntered": "2019-05-05", + "dateRegistrar": "2022-11-18", + "dateLocalAuthorityReceived": "2021-12-11", + "summary": "Modi perferendis iure laboriosam earum totam minus enim sunt.\nAliquid similique doloremque similique aliquam.\nIusto adipisci fugiat cumque officia fugiat suscipit.", + "informationUsed": "Voluptate esse aperiam.\nQuisquam sapiente expedita illo enim inventore maxime voluptates.\nAutem harum est sed ipsum aperiam iusto sint dignissimos.\nPlaceat ducimus incidunt velit porro error quidem maxime.", + "pastOrPresentOrders": "Autem deleniti quidem aspernatur.\nFuga at ullam ullam tempora sapiente repudiandae.\nAccusantium consectetur minus maxime dolorum voluptatibus natus doloremque sint a.", "commercialAndIndustrialPurposes": [ { - "uuid": "b01fffdd-a6b2-4bd7-8620-4e0dbbcc66a8", + "uuid": "cab6dd3c-b70a-4f4f-9873-4e9cdf24c656", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "uuid": "35dd7dc2-3d54-46b3-95f3-c6be4cfb1f69", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, { - "uuid": "8bad8f13-ad54-49a8-b095-e1f68f6eee0f", + "uuid": "48a313d0-5377-4f60-a6ff-c59f770b243e", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "uuid": "a768eb9d-3e3b-481e-aeff-a9c14f5ed453", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + } + ] + }, + { + "uuid": "215a440f-9291-4ca8-9472-a5d8099d4d8c", + "siteRegistry": false, + "dateReceived": "2023-09-19", + "dateCompleted": "2023-02-12", + "dateEntered": "2021-04-16", + "dateRegistrar": "2016-06-20", + "dateLocalAuthorityReceived": "2019-04-16", + "summary": "Officia animi omnis impedit debitis deleniti enim voluptatem.", + "informationUsed": "Temporibus eaque itaque sequi asperiores labore itaque soluta tempora temporibus.\nQuam non minima dolorum.\nNumquam voluptates cum nesciunt corrupti.\nRatione distinctio placeat ex vero deserunt quisquam.\nMolestiae aspernatur voluptas odio temporibus nesciunt.", + "pastOrPresentOrders": "Mollitia expedita cupiditate deleniti.\nDicta ducimus possimus fugit nulla sunt explicabo.\nNecessitatibus voluptatem laudantium odit unde fugiat.", + "commercialAndIndustrialPurposes": [ + { + "uuid": "a74ab463-521d-4832-8b35-d32259b288b6", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true + }, + { + "uuid": "08ce9612-7d2d-44e9-b8d4-a2d7ca06a80a", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "uuid": "35f72f11-a058-41ed-9658-28d06539889e", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "uuid": "37ba7b76-63ed-4631-8b8a-bd1d6e86e533", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false } ] } ], "activityLog": [ { - "uuid": "ec8fd00b-8e41-43da-ba0a-980e0717cd66", - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "MANN CLEMMIE", - "timestamp": "2023-04-26" - }, - { - "uuid": "0ccd6696-b3a0-442a-8282-27269022a060", + "uuid": "6e3f3110-3fdd-401e-b13a-b98c28e053bf", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "AUER MELVINA", - "timestamp": "2021-04-20" + "user": "CRONIN ANYA", + "timestamp": "2017-07-15" }, { - "uuid": "bd414626-2e50-4209-9eb5-60d50ddf6be4", - "siteRegistry": true, + "uuid": "933e5341-4b34-4347-bf75-d92b0676ddd4", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "GERLACH CASSANDRA", - "timestamp": "2016-05-30" + "user": "COLLINS ANASTASIA", + "timestamp": "2023-10-07" }, { - "uuid": "5f85d097-8f47-4c18-ae97-68c2feb1872d", + "uuid": "d6739d29-6a0e-47d7-9343-44d94a1722ef", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "ONDRICKA CECIL", - "timestamp": "2019-01-01" + "user": "MANTE JOSE", + "timestamp": "2019-06-03" }, { - "uuid": "b91496d5-6215-4d3b-b056-e4493ae94bfd", - "siteRegistry": true, + "uuid": "4a04e87e-6fbf-4255-ab05-4375828d50ae", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "GOTTLIEB SHAYNA", - "timestamp": "2022-07-09" + "user": "ABERNATHY LAWSON", + "timestamp": "2015-12-04" }, { - "uuid": "eff081c8-5d4e-4155-aad0-a0a352e6b9cc", + "uuid": "762169b8-1f82-4dd8-b67b-fc88761b16ea", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "LEFFLER JOSEFINA", - "timestamp": "2017-06-11" + "user": "O'KON TRAVON", + "timestamp": "2021-04-30" } ], "associatedSites": [ { - "uuid": "bd9dae1a-2f4a-4ca4-ac93-37d2d6d71316", - "dateNoted": "2016-04-22", - "notes": "", - "parcelID": "16214", - "siteID": "18986", - "siteRegistry": true - }, - { - "uuid": "f2e606f6-d2e9-47a8-ae1b-0065c725b471", - "dateNoted": "2014-05-27", + "uuid": "5a51fbc2-de8c-4ac9-848f-104ae18db843", + "dateNoted": "2019-05-19", "notes": "", - "parcelID": "15238", - "siteID": "19113", + "parcelID": "20238", + "siteID": "15904", "siteRegistry": false } ] }, { - "uuid": "ee27eeb1-8c05-49ca-840f-ccb5c9a334ad", - "siteID": 15396, - "address": "4561 Marc Valleys", - "latitude": 53.7588, - "longitude": -131.5525, - "lastUpdated": "2023-08-25", - "city": "South Minervaview", - "region": "Thompson-Okanagan", - "victoriaFile": "26250-20/9575", + "uuid": "9f35059a-7f77-4fe7-80df-30aa915d9245", + "siteID": 20123, + "address": "28571 Koepp Squares", + "latitude": 56.0139, + "longitude": -127.6065, + "lastUpdated": "2015-02-12", + "city": "North Jordanefurt", + "region": "Kootenay", + "victoriaFile": "26250-20/11824", "regionalFile": "N/A", "parcelIDs": [ - 3351528, - 1374403, - 4313296, - 177657, - 2973188 + 6701966, + 1424486, + 5325145, + 7784938, + 4836168 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "72d5a75b-1295-4e67-9d7e-88e575d0de59", - "createdAt": "2018-12-01", - "completed": "2014-11-15", - "initiated": "2017-06-30", - "ministryContact": "KOCH DELMER", + "uuid": "13925fab-6631-44e2-a792-4e7a47bae224", + "createdAt": "2020-03-01", + "completed": "2017-10-12", + "initiated": "2017-12-01", + "ministryContact": "ANKUNDING MAUDIE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -58617,38 +68542,26 @@ ], "notationParticipants": [ { - "uuid": "8e6ddfa1-de0b-47ee-974d-7a4f1e64c1bb", + "uuid": "316fe5f1-febe-4c1a-913c-fb38717bf3d3", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "uuid": "06c81041-3387-496e-a4ab-651266483126", - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "uuid": "ca1583ed-c686-4802-8539-8939383bbdc3", - "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "c5b7c0f1-e99f-4f54-b3a8-f8a976b6c060", + "uuid": "0bee1967-c737-4462-b44f-357bd1ec9491", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "c2403887-2fa1-4221-8ce3-f2d1d04d04ae", - "createdAt": "2022-01-02", - "completed": "2016-02-07", - "initiated": "2014-07-26", - "ministryContact": "JACOBI BENTON", + "uuid": "8f65df0a-c862-47db-abf8-e52b944c8f60", + "createdAt": "2014-04-09", + "completed": "2019-11-15", + "initiated": "2021-02-02", + "ministryContact": "CHAMPLIN PEGGIE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -58657,78 +68570,44 @@ ], "notationParticipants": [ { - "uuid": "e6fcd36b-bb4e-461c-9497-78f60269afd0", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "uuid": "8a91da9d-6427-4d6f-97c3-4b909061487e", + "uuid": "74d22183-e5b3-49a6-ba3d-b3f269eb0c79", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "7cdf07a5-0cff-48bc-8ce7-99b50612ba22", - "name": "SHELL CANADA PRODUCTS", + "uuid": "b5d49dc0-4c41-4453-b2db-b20d3ca30507", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "fe5a9f98-dabb-4247-87eb-9a4a94740e88", + "uuid": "3537802d-99be-4c6c-b60d-28055dab5101", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "uuid": "b2adb9dd-71e2-4724-b9c3-d2f9e5d5880c", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", "siteRegistry": true - } - ], - "siteRegistry": false - }, - { - "uuid": "54349f8d-caf2-44ff-ae9f-aa06d47dfb05", - "createdAt": "2014-03-04", - "completed": "2022-01-01", - "initiated": "2013-11-06", - "ministryContact": "MARVIN-BERNHARD WILMA", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "uuid": "a54b7fc7-1a8b-4f99-9054-ef59553bb641", - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false }, { - "uuid": "f7aac6fa-df47-400e-b653-f7f14f60c4bc", + "uuid": "b99ffd01-c88f-4e3a-9f5d-6531517108d6", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "d35425b6-10a6-4257-859e-ba7f166bf9b2", - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "52330fd2-9327-494f-b507-014bd1a3d1f6", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true } ], "siteRegistry": false }, { - "uuid": "91811bdb-9f79-405e-abe4-af7a4a224564", - "createdAt": "2016-08-19", - "completed": "2018-06-21", - "initiated": "2023-02-25", - "ministryContact": "SCHNEIDER RACHAEL", + "uuid": "db50e801-803f-4530-884a-c9367c165a65", + "createdAt": "2016-09-05", + "completed": "2016-05-15", + "initiated": "2022-10-22", + "ministryContact": "LANGWORTH MASON", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -58737,208 +68616,237 @@ ], "notationParticipants": [ { - "uuid": "8b306a4c-bc17-4a8b-befc-1528b94d0876", - "name": "SHELL CANADA PRODUCTS", + "uuid": "e1660d66-1fef-4908-9721-c1ea18b9ea51", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "318952c1-3828-4b5f-aafb-e91bc2d02d36", + "uuid": "4f05a685-e06a-4558-819a-db1a39053013", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "uuid": "61fbc551-5078-459c-a2df-3dadef3ac575", - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "433a6ecd-22be-45db-b1e3-c41d30ab5fd9", + "uuid": "c6a33125-7556-4aa0-9179-2b9a671b42cd", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false - } - ], - "siteRegistry": false - }, - { - "uuid": "eb30865c-4c12-49eb-bb5e-e37f7906028f", - "createdAt": "2020-07-25", - "completed": "2016-06-18", - "initiated": "2017-10-08", - "ministryContact": "HAAG GUSTAVE", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "uuid": "76862ae3-5f96-4e6d-a768-3355809ae196", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "15a86c3e-d938-4f60-8a4e-d0335c5c2139", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "uuid": "f1dfcca9-4ae4-4f4b-908a-76bf6d34557d", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "uuid": "35ace638-81ea-4d50-ad02-52998afeb9f9", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "0999db59-df2b-4214-8c67-fb22b27f05ce", + "uuid": "9517be3a-52cc-4380-a791-ed44fdcf0a9b", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false } ], "participants": [ { - "uuid": "699f148d-3ac8-4ea1-8f48-db78e419843f", + "uuid": "dd3e7251-4053-4e3a-bdb5-ccaa65cd49b4", "name": "SHELL CANADA PRODUCTS", - "endDate": "2020-02-04", - "startDate": "2017-06-30", + "endDate": "2021-01-14", + "startDate": "2019-11-13", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "73e1a380-393b-47ff-9849-db6817d94d9c", + "uuid": "0992f53f-c734-4d10-a04e-5a9ffc66ec61", "name": "IPSUM", - "endDate": "2019-07-15", - "startDate": "2021-05-24", + "endDate": "2015-01-20", + "startDate": "2020-01-26", "notes": "", "roles": [ "EMPLOYEE" ], "siteRegistry": false + }, + { + "uuid": "585b8d00-48a9-493d-8e3c-417922e12fcc", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2017-06-30", + "startDate": "2015-09-17", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "uuid": "17f60dad-6ec4-4f27-ab41-7247ba05070d", + "name": "AMET, DOLOR SIT", + "endDate": "2014-05-16", + "startDate": "2021-10-23", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "uuid": "ac94d905-7213-47c1-8ff3-d77eaac318c6", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2018-09-06", + "startDate": "2015-06-22", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true } ], - "suspectLandUses": [ + "documents": [ { - "uuid": "4b19b854-03f3-4de2-9375-4da8404ee701", + "uuid": "0ac8a766-839f-41e8-a602-df88cd1559a3", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-11-08 (described on Site Profile dated 2022-11-08)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "documentDate": "2016-11-17", + "receivedDate": "2022-07-05", + "uploadedDate": "2016-10-18", + "title": "Preliminary Site Investigation, Detailed Site Investigation and Remedial Plan for the Management Area adjacent to the Shell Site at 1503 West 41st Ave", + "participants": [ + { + "uuid": "3c62b3bc-79ba-4d4c-9975-ed63a38a38c6", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": false, + "role": "AUTHOR" + } + ] }, { - "uuid": "308b8e74-709a-4332-b61e-42eb62c9b255", + "uuid": "f2688f2f-fc79-4980-bb74-c0eeed404617", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-01-29 (described on Site Profile dated 2016-01-29)", + "documentDate": "2019-05-21", + "receivedDate": "2018-07-21", + "uploadedDate": "2018-11-04", + "title": "Summary of Site Conditions, 1537 W 41st Avenue, Vancouver", + "participants": [ + { + "uuid": "ad1f6ad5-49c6-438f-bb01-03b4d92e7366", + "name": "IPSUM", + "siteRegistry": true, + "role": "AUTHOR" + } + ] + }, + { + "uuid": "748a88b4-2a4d-447a-983f-3bafea58c655", + "siteRegistry": true, + "documentDate": "2021-01-24", + "receivedDate": "2019-07-23", + "uploadedDate": "2020-04-04", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "edee2229-76a1-4fb2-8855-03c36d7df09e", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "a428cea4-c3a6-42d1-abbb-1fec47694ba2", + "name": "AMET, DOLOR SIT", + "siteRegistry": false, + "role": "AUTHOR" + } + ] + } + ], + "suspectLandUses": [ + { + "uuid": "702a2b5b-37da-4141-a1a9-8aa3c76c2013", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2019-03-07 (described on Site Profile dated 2019-03-07)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "uuid": "2f4996e2-7e5c-4c8e-b909-51047115e803", + "uuid": "25164a89-439e-4c41-9b0a-3b75ac29527e", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2015-04-03 (described on Site Profile dated 2015-04-03)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "uuid": "35820fab-a7da-4986-b8da-82f32f07757d", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-06-10 (described on Site Profile dated 2022-06-10)", + "notes": "INSERTED FOR SITE PROFILE DATED 2015-05-14 (described on Site Profile dated 2015-05-14)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], "parcelDescriptions": [ { - "uuid": "93bfb905-1baf-4815-b948-df5b737d9af5", + "uuid": "98b49951-72e9-468e-a10b-972949ccc041", + "siteRegistry": true, + "dateNoted": "2014-07-24", + "parcelID": "15302", + "crownLandUsePIN": "18460", + "crownLandFileNumber": "17060", + "landDescription": "LOT 4 OF LOT 2 BLOCK 4 DISTRICT LOT 1 PLAN 5747" + }, + { + "uuid": "88e6f2e5-e455-4643-b0d9-5dcc71cf4a08", + "siteRegistry": false, + "dateNoted": "2020-02-02", + "parcelID": "16241", + "crownLandUsePIN": "20987", + "crownLandFileNumber": "20081", + "landDescription": "LOT 1 OF LOT 3 BLOCK 1 DISTRICT LOT 5 PLAN 5236" + }, + { + "uuid": "685f03f0-d207-4d54-bb70-345947390a65", "siteRegistry": true, - "dateNoted": "2021-11-09", - "parcelID": "16320", - "crownLandUsePIN": "17541", - "crownLandFileNumber": "18485", - "landDescription": "LOT 4 OF LOT 2 BLOCK 2 DISTRICT LOT 5 PLAN 3763" + "dateNoted": "2021-01-04", + "parcelID": "20409", + "crownLandUsePIN": "19141", + "crownLandFileNumber": "15825", + "landDescription": "LOT 3 OF LOT 3 BLOCK 1 DISTRICT LOT 3 PLAN 6769" }, { - "uuid": "39cc243d-364a-4f46-8ea6-413613c75807", + "uuid": "51817d5c-499b-4563-8b5c-4f2ed2165881", "siteRegistry": false, - "dateNoted": "2020-02-10", - "parcelID": "17406", - "crownLandUsePIN": "16170", - "crownLandFileNumber": "15592", - "landDescription": "LOT 4 OF LOT 1 BLOCK 5 DISTRICT LOT 3 PLAN 7982" + "dateNoted": "2019-05-15", + "parcelID": "19351", + "crownLandUsePIN": "18665", + "crownLandFileNumber": "19654", + "landDescription": "LOT 3 OF LOT 2 BLOCK 4 DISTRICT LOT 1 PLAN 8937" } ], "siteDisclosures": [ { - "uuid": "e6252cb1-50c8-4cba-8b00-070c27d1466e", - "siteRegistry": true, - "dateReceived": "2021-02-04", - "dateCompleted": "2017-08-24", - "dateEntered": "2022-03-22", - "dateRegistrar": "2018-05-11", - "dateLocalAuthorityReceived": "2016-12-10", - "summary": "Excepturi inventore molestiae officiis recusandae adipisci exercitationem ipsum non.", - "informationUsed": "Doloremque asperiores neque iusto delectus labore aliquid.\nAd dicta voluptas deleniti qui nulla.\nEst vero delectus aperiam.\nEum reprehenderit ea possimus.", - "pastOrPresentOrders": "Sit atque facere soluta labore totam.", + "uuid": "73099db5-03e1-49e2-a37f-2fb6787ce25b", + "siteRegistry": false, + "dateReceived": "2022-02-03", + "dateCompleted": "2018-09-20", + "dateEntered": "2022-03-20", + "dateRegistrar": "2022-05-26", + "dateLocalAuthorityReceived": "2015-12-11", + "summary": "Vel quo debitis dolorum tenetur quasi magnam.\nCommodi nam hic repellat unde odit pariatur.\nOccaecati perferendis dolor officia commodi maiores iusto inventore.", + "informationUsed": "Modi perspiciatis laudantium nostrum itaque facere quaerat.\nVoluptatem nulla quod esse tempore quas.\nAtque veritatis aliquid illo.\nVero aut dicta impedit libero esse veritatis adipisci beatae.\nSed fuga doloribus.", + "pastOrPresentOrders": "Culpa necessitatibus ea soluta voluptates harum.", "commercialAndIndustrialPurposes": [ { - "uuid": "edae175a-a2fb-4d0f-89a4-531c8a9b1bc9", + "uuid": "f009a006-ea14-4635-b0a6-6bedd884c914", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false - }, - { - "uuid": "bb5c4bda-e4e6-4655-a7c4-f40bb06d2b3d", - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { - "uuid": "6f239d3e-c601-4468-b77a-c0a455a9cdb0", + "uuid": "696c4c91-8378-45d7-98e5-f0240e5e8070", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false }, { - "uuid": "016bc235-1d7b-4da0-bc64-2932b12adb35", - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false - } - ] - }, - { - "uuid": "472d1c49-5fd5-4dd7-ab8f-4b3d2f7ec19e", - "siteRegistry": true, - "dateReceived": "2018-06-16", - "dateCompleted": "2019-04-29", - "dateEntered": "2022-03-12", - "dateRegistrar": "2015-05-25", - "dateLocalAuthorityReceived": "2020-03-10", - "summary": "Dicta incidunt nulla perspiciatis commodi.\nQuam veritatis exercitationem.\nNesciunt vel sit distinctio quidem.", - "informationUsed": "Nisi laboriosam consequuntur a amet aliquid quas ducimus.\nCommodi libero ad.\nQuo quae itaque modi eveniet laborum nesciunt architecto adipisci quo.", - "pastOrPresentOrders": "Tempora quos eum soluta.", - "commercialAndIndustrialPurposes": [ - { - "uuid": "4fb8db93-d1be-4cee-a58a-dc846e000aaf", - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true - }, - { - "uuid": "ab8abdae-b74a-4fe7-8150-4273e4df4de3", - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true - }, - { - "uuid": "1204b269-d269-4fc5-af9c-43e1a3c62af5", - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false - }, - { - "uuid": "0d012904-f52b-4ad6-ab61-982ba9204190", + "uuid": "dd1c5dc6-16d8-4717-8a65-6ad01e9decfb", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false @@ -58948,108 +68856,136 @@ ], "activityLog": [ { - "uuid": "5191cc14-1dc7-4eb0-b8de-78054105fa06", - "siteRegistry": false, + "uuid": "c6282e2c-becb-41aa-b04b-a82766f69f75", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "HEGMANN CAESAR", - "timestamp": "2017-01-23" + "user": "STEUBER STERLING", + "timestamp": "2014-10-12" }, { - "uuid": "b59c6b42-7fba-4065-b4dd-2b959f8c8cbc", + "uuid": "c503f39a-8ea9-40b0-a11a-61e9c9a55be1", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "MAYERT PINK", - "timestamp": "2018-02-17" + "user": "BECHTELAR WENDY", + "timestamp": "2017-04-15" }, { - "uuid": "2bcc42f1-91a8-45e2-9bfb-02c415925d2a", + "uuid": "6fcb3dd5-fb4b-4aad-81ba-ff066f94f300", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "EFFERTZ BENNIE", - "timestamp": "2021-11-21" + "user": "LEFFLER GUILLERMO", + "timestamp": "2014-02-22" }, { - "uuid": "b1f329b9-27f6-4baf-b17c-4f282ef6e39f", + "uuid": "1cbc65b7-0702-41ce-a3b9-aee553f2a74c", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "RUNOLFSSON KOLE", - "timestamp": "2019-06-11" + "user": "THOMPSON VAUGHN", + "timestamp": "2016-07-03" }, { - "uuid": "7bd97fc2-ddd3-4ac3-a758-9e94b867748a", + "uuid": "7013ffd0-bbec-4bdd-809c-7e25ff6a06f1", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "FAHEY JERAMY", - "timestamp": "2018-10-05" + "user": "HUEL JOEL", + "timestamp": "2016-10-30" }, { - "uuid": "88800009-dce0-4a17-9f51-52b51a459550", - "siteRegistry": false, + "uuid": "2782c944-5fb8-4239-a1e7-d78bf4c83235", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "ROGAHN MANLEY", - "timestamp": "2020-06-11" + "user": "PACOCHA CASSANDRA", + "timestamp": "2022-02-17" }, { - "uuid": "5ab5b7d0-81be-4603-9f86-a8b395402ec7", - "siteRegistry": false, + "uuid": "1a9d68d2-33d3-4142-80c9-9d126be33ec7", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "CRIST TAVARES", - "timestamp": "2015-09-10" + "user": "MANTE BARTHOLOME", + "timestamp": "2022-03-13" } ], "associatedSites": [ { - "uuid": "dee31fd2-cc1a-451a-bc63-b958f2d92f46", - "dateNoted": "2023-05-04", + "uuid": "d93c06a4-b3ae-40fe-b7ff-dba1a649bdc4", + "dateNoted": "2014-11-08", "notes": "", - "parcelID": "15876", - "siteID": "15426", - "siteRegistry": true + "parcelID": "19138", + "siteID": "19921", + "siteRegistry": false }, { - "uuid": "32d54c26-e259-43c3-9135-adae9fbc6987", - "dateNoted": "2022-08-07", + "uuid": "983eac81-06f9-4fda-8abc-3a0e30174c2f", + "dateNoted": "2018-04-29", "notes": "", - "parcelID": "15302", - "siteID": "16419", + "parcelID": "16564", + "siteID": "20542", "siteRegistry": true }, { - "uuid": "f64a818a-c610-4cdc-a213-d42b1f8058d7", - "dateNoted": "2017-12-06", + "uuid": "07d298ff-b1cc-49f3-9041-4f87a3496fac", + "dateNoted": "2023-01-08", "notes": "", - "parcelID": "20263", - "siteID": "19254", - "siteRegistry": true + "parcelID": "16994", + "siteID": "16250", + "siteRegistry": false } ] }, { - "uuid": "32e88a54-1c95-4479-af30-6f58c151614c", - "siteID": 16656, - "address": "169 Wehner Squares", - "latitude": 51.866, - "longitude": -118.8705, - "lastUpdated": "2022-05-07", - "city": "Turlock", - "region": "Kootenay", - "victoriaFile": "26250-20/9139", + "uuid": "4c84b2b9-334f-4518-be1b-2e9d7cbd7804", + "siteID": 16177, + "address": "642 Klocko Roads", + "latitude": 55.2384, + "longitude": -125.7422, + "lastUpdated": "2015-10-15", + "city": "Gradytown", + "region": "Mainland/Southwest", + "victoriaFile": "26250-20/15862", "regionalFile": "N/A", "parcelIDs": [ - 9212899, - 1900212, - 600919, - 1349149, - 6020350 + 6264209, + 5280939, + 7589346, + 6445593, + 5584519 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "3c0b1cd4-9faa-42e3-968d-ad19ab11d657", - "createdAt": "2016-11-06", - "completed": "2017-03-22", - "initiated": "2023-02-22", - "ministryContact": "HEGMANN DAIJA", + "uuid": "0b87e593-64ad-4ac1-b97c-e440860588cd", + "createdAt": "2020-11-27", + "completed": "2014-01-19", + "initiated": "2018-07-05", + "ministryContact": "MOSCISKI DWIGHT", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "uuid": "1140fe7a-8131-4678-b1f4-3e8029849d22", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "uuid": "e72bc5a6-1462-40f5-87ea-e93e66fff402", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "uuid": "3343eeb8-c781-4d2c-a498-8e48af074a20", + "createdAt": "2019-11-14", + "completed": "2015-11-22", + "initiated": "2016-01-22", + "ministryContact": "FERRY ARCH", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -59058,32 +68994,38 @@ ], "notationParticipants": [ { - "uuid": "77686ba7-3dfb-48f5-994f-0684937a3b4d", + "uuid": "a0af0afd-d53a-4572-8590-6a648e51f647", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "8f1c29ac-5160-48dd-89c8-b9d41067a27e", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false }, { - "uuid": "b810d9bb-e803-4b61-877e-c0dd671d5142", + "uuid": "220a612e-b1ac-4d1f-872d-a14d3fbd51ce", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "d30f727a-f6a2-4f99-80e1-7fe5bc1f86cd", + "uuid": "a6b3554b-0269-453e-a93c-ce04cc64ce33", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true } ], "siteRegistry": true }, { - "uuid": "06037c7c-1dbc-42f9-bf91-ac23eebd7d13", - "createdAt": "2016-09-14", - "completed": "2018-10-17", - "initiated": "2019-05-27", - "ministryContact": "BRAUN EMERSON", + "uuid": "9b92e74e-2f5a-4ad4-8661-16176514f44e", + "createdAt": "2016-03-09", + "completed": "2014-05-29", + "initiated": "2023-01-01", + "ministryContact": "MARKS LUZ", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -59092,296 +69034,402 @@ ], "notationParticipants": [ { - "uuid": "d45ee6db-0422-4195-9631-511a65748220", + "uuid": "30d0f27a-83ee-4cd1-8e4a-5d22b502bbb9", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "386a7cef-85bd-402c-9d6a-27b8a3b2e7e9", - "name": "SHELL CANADA PRODUCTS", + "uuid": "85448502-e76c-4649-bb84-ed8766808628", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "269d8483-6520-44b1-91df-11d8c3b65b35", - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false + "uuid": "8ed28863-92c7-46e1-a6fe-53e467d36a3c", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false } ], "participants": [ { - "uuid": "af370b74-7da7-483c-906f-2d436c48ed65", - "name": "SHELL CANADA PRODUCTS", - "endDate": "2015-12-16", - "startDate": "2021-04-29", + "uuid": "4a985c40-8020-4500-8fa2-485205779f9e", + "name": "AMET, DOLOR SIT", + "endDate": "2017-04-13", + "startDate": "2017-06-29", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": true }, { - "uuid": "a7a013f9-c6f8-4a29-a091-cb5b09ebda77", - "name": "IPSUM", - "endDate": "2017-05-18", - "startDate": "2020-07-11", + "uuid": "3cabd191-ff33-41db-8d63-c4ac594cb1cc", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2023-02-24", + "startDate": "2016-06-27", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": false + } + ], + "documents": [ + { + "uuid": "3124f4f1-29d7-45db-b125-031118c75c58", + "siteRegistry": false, + "documentDate": "2020-05-07", + "receivedDate": "2016-12-23", + "uploadedDate": "2014-04-24", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "a52750ac-f4b9-44fe-a9f0-bf918931d1f3", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "40c012eb-36c5-4cc7-8ebd-849246721816", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": false, + "role": "AUTHOR" + } + ] }, { - "uuid": "b6bdaa63-7e1b-4a25-82df-d13e8b046a77", - "name": "AMET, DOLOR SIT", - "endDate": "2020-01-22", - "startDate": "2013-11-26", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": true + "uuid": "1725ab64-5ff0-4459-95ac-5b251e98d4a3", + "siteRegistry": true, + "documentDate": "2020-05-20", + "receivedDate": "2018-07-02", + "uploadedDate": "2014-05-26", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "f5280f87-f0ed-4f9a-93ac-104e25e0a660", + "name": "IPSUM", + "siteRegistry": false, + "role": "AUTHOR" + } + ] }, { - "uuid": "c4453655-c178-4097-ba2b-503e11d864e0", - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2023-07-31", - "startDate": "2014-10-25", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": true + "uuid": "ddc2a4ea-be33-46b1-bcfe-f73ffa02da42", + "siteRegistry": true, + "documentDate": "2021-07-30", + "receivedDate": "2019-01-08", + "uploadedDate": "2020-02-03", + "title": "Summary of Site Conditions, 1537 W 41st Avenue, Vancouver", + "participants": [ + { + "uuid": "df69e13a-cbbf-4854-a6a8-2ba998f809c1", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "e3a9b825-e9ac-4f30-a9ff-5d1064ee91bd", + "name": "IPSUM", + "siteRegistry": false, + "role": "AUTHOR" + } + ] }, { - "uuid": "bfced66e-9a9b-486d-899f-0313c0b2003d", - "name": "SHELL CANADA PRODUCTS", - "endDate": "2019-03-30", - "startDate": "2020-07-08", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": true + "uuid": "efd8e070-f635-4c09-9030-3b8dcc5ae3c5", + "siteRegistry": false, + "documentDate": "2014-03-20", + "receivedDate": "2014-08-17", + "uploadedDate": "2015-08-30", + "title": "Summary of Site Conditions, 1537 W 41st Avenue, Vancouver", + "participants": [ + { + "uuid": "d19a5a0a-fa71-45f8-b998-45850bb0a234", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": true, + "role": "AUTHOR" + } + ] + }, + { + "uuid": "65675433-5e36-403e-80eb-e34a87d5461b", + "siteRegistry": true, + "documentDate": "2021-01-04", + "receivedDate": "2015-11-01", + "uploadedDate": "2016-01-09", + "title": "Summary of Site Conditions, 1537 W 41st Avenue, Vancouver", + "participants": [ + { + "uuid": "4e5a46d4-804b-498e-8638-b6622297920f", + "name": "AMET, DOLOR SIT", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "fa0f63f0-6aad-48a3-89ac-64abbca69a15", + "name": "AMET, DOLOR SIT", + "siteRegistry": true, + "role": "AUTHOR" + } + ] } ], "suspectLandUses": [ { - "uuid": "bcdec633-6c49-4a01-8845-8d7f41bbb131", - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2020-06-04 (described on Site Profile dated 2020-06-04)", + "uuid": "197a43c6-06ad-4dde-ae22-e572217d732a", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2022-08-02 (described on Site Profile dated 2022-08-02)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "uuid": "f0fa1aee-2c9d-4a93-bf70-6959ea5ce6be", + "uuid": "b602095c-100c-4cbe-b9ef-52eb6f2ed01f", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2020-04-10 (described on Site Profile dated 2020-04-10)", + "notes": "INSERTED FOR SITE PROFILE DATED 2016-10-10 (described on Site Profile dated 2016-10-10)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "uuid": "9c8abc1b-192a-4db9-9bac-f9fd31d62cd0", + "uuid": "017c7ce5-7ad5-45b5-8f5d-0a67bb78fb2f", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-11-06 (described on Site Profile dated 2017-11-06)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "notes": "INSERTED FOR SITE PROFILE DATED 2020-01-09 (described on Site Profile dated 2020-01-09)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "uuid": "6682b756-bd09-48b5-aea5-1f8f1186654f", + "uuid": "fb1ff59e-2113-4b65-8c35-b37c430ac2e4", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-06-19 (described on Site Profile dated 2019-06-19)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "notes": "INSERTED FOR SITE PROFILE DATED 2018-12-23 (described on Site Profile dated 2018-12-23)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "uuid": "dc30569a-9480-4696-8e49-f46a3167cabc", - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-04-25 (described on Site Profile dated 2014-04-25)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "uuid": "9e921742-7419-480c-8429-656c5001a086", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2014-02-22 (described on Site Profile dated 2014-02-22)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], "parcelDescriptions": [ { - "uuid": "dc3a1812-c1fa-42af-9747-f8803de63a1c", + "uuid": "191a6c92-947d-41b1-a455-1928f3d5a8bc", "siteRegistry": false, - "dateNoted": "2017-01-31", - "parcelID": "17610", - "crownLandUsePIN": "19327", - "crownLandFileNumber": "16003", - "landDescription": "LOT 1 OF LOT 5 BLOCK 2 DISTRICT LOT 3 PLAN 3674" + "dateNoted": "2016-09-27", + "parcelID": "20991", + "crownLandUsePIN": "19563", + "crownLandFileNumber": "18765", + "landDescription": "LOT 5 OF LOT 1 BLOCK 1 DISTRICT LOT 3 PLAN 4438" + }, + { + "uuid": "ec95b5e9-ed8d-4cec-87fa-77848f91db22", + "siteRegistry": false, + "dateNoted": "2021-05-24", + "parcelID": "19273", + "crownLandUsePIN": "17531", + "crownLandFileNumber": "17979", + "landDescription": "LOT 5 OF LOT 3 BLOCK 2 DISTRICT LOT 1 PLAN 5563" }, { - "uuid": "9315cabc-4d25-4bf4-aadf-e9c2720470dd", + "uuid": "8c45df15-a17c-43e0-af38-bf9bb2963fef", "siteRegistry": true, - "dateNoted": "2018-07-28", - "parcelID": "19336", - "crownLandUsePIN": "18300", - "crownLandFileNumber": "18356", - "landDescription": "LOT 3 OF LOT 5 BLOCK 4 DISTRICT LOT 2 PLAN 3016" + "dateNoted": "2014-08-08", + "parcelID": "17410", + "crownLandUsePIN": "18484", + "crownLandFileNumber": "20960", + "landDescription": "LOT 5 OF LOT 5 BLOCK 4 DISTRICT LOT 2 PLAN 9106" }, { - "uuid": "aec7c6ab-0974-4ca2-9a21-b24b2b27dfb7", - "siteRegistry": false, - "dateNoted": "2018-12-28", - "parcelID": "15969", - "crownLandUsePIN": "16988", - "crownLandFileNumber": "15249", - "landDescription": "LOT 4 OF LOT 3 BLOCK 4 DISTRICT LOT 1 PLAN 3229" + "uuid": "aff44e1b-624c-47b5-9c96-c8eee048c8d5", + "siteRegistry": true, + "dateNoted": "2021-07-03", + "parcelID": "15417", + "crownLandUsePIN": "19878", + "crownLandFileNumber": "19336", + "landDescription": "LOT 5 OF LOT 5 BLOCK 5 DISTRICT LOT 4 PLAN 8217" }, { - "uuid": "714ce5ef-0c6b-40f3-bb52-c1c30f4c9996", + "uuid": "4d9fcd21-c99b-4f22-b082-f4d7383682d6", "siteRegistry": true, - "dateNoted": "2014-04-24", - "parcelID": "16883", - "crownLandUsePIN": "20259", - "crownLandFileNumber": "18333", - "landDescription": "LOT 3 OF LOT 1 BLOCK 3 DISTRICT LOT 5 PLAN 3841" + "dateNoted": "2017-05-05", + "parcelID": "17735", + "crownLandUsePIN": "18169", + "crownLandFileNumber": "20845", + "landDescription": "LOT 5 OF LOT 2 BLOCK 4 DISTRICT LOT 4 PLAN 6154" } ], "siteDisclosures": [ { - "uuid": "85fc8220-8a02-4ec8-9455-2fa0111c9001", - "siteRegistry": false, - "dateReceived": "2020-08-10", - "dateCompleted": "2021-10-14", - "dateEntered": "2016-10-14", - "dateRegistrar": "2014-09-29", - "dateLocalAuthorityReceived": "2023-06-10", - "summary": "Tempore sunt nihil dolore debitis hic voluptatibus praesentium.", - "informationUsed": "Placeat tenetur velit laudantium fuga reprehenderit sed.\nAutem accusantium asperiores repellat.\nAccusantium amet vel dicta quidem commodi aperiam qui.\nMollitia quibusdam adipisci.", - "pastOrPresentOrders": "Consequuntur voluptas numquam maxime maiores odit occaecati.", + "uuid": "4a4aaf66-d0f3-4d69-b5ca-5c6db15f5872", + "siteRegistry": true, + "dateReceived": "2014-03-01", + "dateCompleted": "2016-05-07", + "dateEntered": "2015-07-03", + "dateRegistrar": "2014-03-22", + "dateLocalAuthorityReceived": "2015-08-10", + "summary": "Est quibusdam minus a asperiores.\nLaboriosam quam laborum esse velit quos nobis minima repellendus vitae.", + "informationUsed": "Ratione reprehenderit quod consequatur sit.\nAperiam impedit distinctio numquam.\nQuibusdam quae pariatur illum doloribus facere earum.\nQuidem minima amet.", + "pastOrPresentOrders": "Numquam soluta maxime possimus quibusdam neque.\nItaque reiciendis ex neque animi sed repellat.", "commercialAndIndustrialPurposes": [ { - "uuid": "1ef985b7-d85d-4b01-bcf6-98bf6f25c5e6", - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true + "uuid": "febf87bf-d57a-4b3d-8d23-e7c2bb9b7423", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false }, { - "uuid": "88c1c114-26df-49c2-b12d-70a6ee6979fb", - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "uuid": "21b565fe-95bb-403d-a2b6-04ca85c4849f", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false } ] }, { - "uuid": "56f005ec-5df1-4466-9c6c-1ae1339d8180", + "uuid": "cf2a16a5-3a80-47d5-b23b-dccf79d933fe", "siteRegistry": false, - "dateReceived": "2021-01-16", - "dateCompleted": "2020-06-01", - "dateEntered": "2019-05-21", - "dateRegistrar": "2014-12-03", - "dateLocalAuthorityReceived": "2017-03-30", - "summary": "Provident nemo dolorem quod voluptas quibusdam.", - "informationUsed": "Maiores culpa inventore modi iure laboriosam at.\nEsse id non ipsam unde odit reprehenderit quisquam provident quis.\nRepudiandae animi eligendi cum sequi.", - "pastOrPresentOrders": "Ea commodi et eum laudantium.\nAdipisci dolorem veritatis expedita ullam neque illo suscipit.\nQuidem voluptatem numquam unde ipsum provident illum id saepe.", + "dateReceived": "2014-07-07", + "dateCompleted": "2016-12-29", + "dateEntered": "2014-06-20", + "dateRegistrar": "2017-10-27", + "dateLocalAuthorityReceived": "2017-10-30", + "summary": "Eos expedita fuga alias architecto beatae explicabo molestiae eius.\nVitae ut beatae totam iste.\nMaiores quis magni blanditiis blanditiis.", + "informationUsed": "Velit dignissimos doloremque quasi.\nEaque laborum sunt veritatis repellendus in.\nQuae ipsum commodi dolore qui mollitia.\nAliquam cupiditate consequuntur corporis excepturi quas vero provident.\nOdit fugit mollitia excepturi autem alias quo dolore voluptatem.", + "pastOrPresentOrders": "Repudiandae ipsam repudiandae fugiat commodi.", "commercialAndIndustrialPurposes": [ { - "uuid": "9c5b6d16-83b3-48a4-992d-2cdcd9d73be6", - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true - }, - { - "uuid": "cb3d3113-cfbc-48e5-a590-c0516acfc892", - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "uuid": "06fd39a9-aaaf-4571-be94-54a8ea73befc", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, { - "uuid": "eb980bcc-b262-4b6a-bf47-d7f1a0df2b92", + "uuid": "adb4bd47-4932-46d4-8a84-6fd4d746c35d", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false + "siteRegistry": true } ] } ], "activityLog": [ { - "uuid": "0f1e14b5-dda1-48c9-a973-9a87f781927d", + "uuid": "1f1ef17b-403e-4218-8417-a99bf6c6cfab", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "HAND ANITA", + "timestamp": "2018-10-23" + }, + { + "uuid": "07f521bd-831a-49a0-8d03-1f238771aa20", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "MITCHELL ADELA", - "timestamp": "2020-07-30" + "user": "MANTE DANGELO", + "timestamp": "2017-08-25" + }, + { + "uuid": "0911587a-5986-4103-8b32-a831922085f2", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "HINTZ CLARISSA", + "timestamp": "2018-03-26" + }, + { + "uuid": "23fd587b-1544-4030-9eb8-adb287a3583b", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "MCDERMOTT HORACE", + "timestamp": "2020-03-29" }, { - "uuid": "ea6d21c2-722f-4f3e-81b8-8f4398b98151", + "uuid": "89dfd776-4861-45b6-bc09-1baf40fea125", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "RAU ESMERALDA", - "timestamp": "2017-09-16" + "user": "METZ KENDRA", + "timestamp": "2019-03-31" }, { - "uuid": "25351ddf-77a8-4ed7-8bb1-6de6f8815ed9", + "uuid": "a6bc4572-23f3-4b76-b570-afc0a37aedb9", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "MORAR GARETT", - "timestamp": "2014-12-05" + "user": "SCHMELER ROBBIE", + "timestamp": "2014-03-02" }, { - "uuid": "67f4a55b-613b-4b84-9849-463a898b4e08", + "uuid": "6bda2916-f8d8-49bd-8a10-870eb6906b3e", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "LEGROS ISABELL", - "timestamp": "2022-12-24" + "user": "PRICE DALE", + "timestamp": "2014-07-09" }, { - "uuid": "50fdd664-5559-4f78-a4ed-b422e2ba16ea", + "uuid": "fd70c568-976a-4b7d-82f0-f939b1770508", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "WAELCHI RACHAEL", - "timestamp": "2014-08-09" + "user": "LUEILWITZ EDDIE", + "timestamp": "2019-09-20" + }, + { + "uuid": "45b11a2e-2f43-4f83-b36a-7e88dfede25d", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "ERNSER TRISTON", + "timestamp": "2022-03-13" } ], "associatedSites": [ { - "uuid": "a10e8050-6e72-4861-bf40-4f66a6e299f5", - "dateNoted": "2022-06-22", + "uuid": "88667d57-405b-4fd4-becf-5330f2c8e1a7", + "dateNoted": "2021-10-09", "notes": "", - "parcelID": "18889", - "siteID": "15426", - "siteRegistry": false + "parcelID": "19994", + "siteID": "15483", + "siteRegistry": true }, { - "uuid": "9dd327ff-6090-43ec-b536-45004d0591a3", - "dateNoted": "2022-04-12", + "uuid": "d41e13a6-a48b-4bbc-ba55-1f925e8b6de7", + "dateNoted": "2019-08-06", "notes": "", - "parcelID": "16798", - "siteID": "16986", + "parcelID": "17012", + "siteID": "18365", + "siteRegistry": true + }, + { + "uuid": "ac70958c-18bb-47e0-ba3f-a0023fc9cfd4", + "dateNoted": "2015-05-06", + "notes": "", + "parcelID": "15815", + "siteID": "18494", "siteRegistry": true } ] }, { - "uuid": "bb3582e1-eb98-41af-ad58-83c0ab57b0b8", - "siteID": 17101, - "address": "880 Devonte Brooks", - "latitude": 51.1273, - "longitude": -121.0227, - "lastUpdated": "2021-04-30", - "city": "West Halie", - "region": "Vancouver Island/Coast", - "victoriaFile": "26250-20/11325", + "uuid": "8d4148e8-5986-41a4-b172-d4dfbebadca3", + "siteID": 17503, + "address": "19567 Ernestine Circle", + "latitude": 49.6542, + "longitude": -136.2208, + "lastUpdated": "2022-08-20", + "city": "Fort Luciousport", + "region": " North Coast", + "victoriaFile": "26250-20/13597", "regionalFile": "N/A", "parcelIDs": [ - 5680235, - 6616604, - 466562, - 5369643, - 1262025 + 9219869, + 3464025, + 2684941, + 6612555, + 4361978 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "31cbb130-065a-4dbc-9831-05f4cb6cb99b", - "createdAt": "2017-03-19", - "completed": "2014-08-30", - "initiated": "2021-09-15", - "ministryContact": "LEGROS MAYE", + "uuid": "f7ffbfc9-7bed-439b-b501-65f4889ed640", + "createdAt": "2014-10-28", + "completed": "2018-10-29", + "initiated": "2019-03-13", + "ministryContact": "BOTSFORD JORDI", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -59390,32 +69438,38 @@ ], "notationParticipants": [ { - "uuid": "e995d085-2b08-4c50-8342-8855c7985e7e", - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "328ec9ce-39d1-450f-a04a-840afb7c3871", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "77579eef-a4c4-4354-b47e-a239cb74f786", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": true }, { - "uuid": "bf8f53d8-6b99-4eba-93a3-49230b270fcd", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "uuid": "16af8fff-75dd-4c35-b67d-ba1abcbc8214", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": true }, { - "uuid": "f72befbb-a073-450d-b60c-beaaf6a10b4d", + "uuid": "22065af8-b598-44da-9d1c-832818f50484", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true } ], "siteRegistry": false }, { - "uuid": "3bc7aafc-ec60-4934-bd94-2105d7fb2895", - "createdAt": "2016-04-05", - "completed": "2023-05-01", - "initiated": "2016-02-02", - "ministryContact": "LITTLE TOREY", + "uuid": "3fd1e8b5-5db0-417d-bcaf-9d17d469557b", + "createdAt": "2021-06-07", + "completed": "2015-09-14", + "initiated": "2018-11-24", + "ministryContact": "REILLY-DOUGLAS LUCINDA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -59424,38 +69478,38 @@ ], "notationParticipants": [ { - "uuid": "e8246659-f616-4235-80e8-34b4dd3792a9", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true + "uuid": "72eec7e8-9645-4daa-818a-30aa8415f384", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false }, { - "uuid": "4c2969b8-4061-480a-b0e1-316e7fa62b35", + "uuid": "f53640ad-458c-4a38-9968-d857310adb37", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "3f3b3fdc-830d-47c4-8670-dcd7d9f45c95", + "uuid": "17bf7339-abcd-4459-b8c0-9395ae6918b4", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "1b31100d-49f4-4793-a6c8-aec40453495f", - "name": "SHELL CANADA PRODUCTS", + "uuid": "d8db26fb-c56f-469d-8d8a-7111a5899709", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "395b02a9-7ad7-4c1c-bf00-c29dce0ef5a5", - "createdAt": "2023-04-18", - "completed": "2014-11-29", - "initiated": "2022-06-06", - "ministryContact": "SCHAMBERGER MORTON", + "uuid": "4c29748e-19eb-43e2-a665-0f05d459c535", + "createdAt": "2021-06-16", + "completed": "2021-10-21", + "initiated": "2015-01-31", + "ministryContact": "RUNTE CARMELLA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -59464,32 +69518,26 @@ ], "notationParticipants": [ { - "uuid": "15de333c-541d-4ef0-9c59-614abbaa6b51", - "name": "SHELL CANADA PRODUCTS", + "uuid": "93300ee6-1e3c-466f-bfdf-a07e5f2b33ff", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false }, { - "uuid": "809185c7-4b3c-421c-a701-67c7c843d773", + "uuid": "6596dcbb-c589-4beb-8abc-7ea90bba7ed7", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true - }, - { - "uuid": "c4d3591b-adc1-4a75-bdad-7d356ec0bcc0", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "2ea35cdd-9cf4-46ec-bf20-aa4edf777984", - "createdAt": "2015-02-17", - "completed": "2021-09-12", - "initiated": "2020-01-16", - "ministryContact": "PFANNERSTILL ALEXA", + "uuid": "257f129b-9f5c-4592-8660-7b0bb75219ad", + "createdAt": "2019-03-11", + "completed": "2016-03-16", + "initiated": "2014-07-20", + "ministryContact": "FEEST ROLANDO", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -59498,33 +69546,15 @@ ], "notationParticipants": [ { - "uuid": "c21001a4-db84-4a0f-92cd-1752464abbca", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "uuid": "d8dda9ef-e914-44f6-aed6-a8fa6b0d9c42", - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "uuid": "daa1151f-e5dd-4db4-b9ab-44a4262b2a9b", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "uuid": "73b865a5-4aaa-4161-979c-cf126b5e59a0", + "uuid": "028b6f96-3b01-474e-9ef4-82c74486b9da", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "a88622f6-21f3-4701-b92a-650bbcee8e01", + "uuid": "b3e0fa7d-9452-4bd4-9471-68119566d42f", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true } ], @@ -59533,134 +69563,164 @@ ], "participants": [ { - "uuid": "c6e08b43-f149-4c8e-9c5b-7085f303501b", + "uuid": "634abe66-590d-4676-9725-71772ef106bc", "name": "IPSUM", - "endDate": "2016-09-15", - "startDate": "2020-04-30", + "endDate": "2021-03-19", + "startDate": "2014-11-25", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": false }, { - "uuid": "2d1c552a-2c36-4058-b8f3-5719797414c7", - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2021-07-23", - "startDate": "2014-01-17", + "uuid": "654ce842-4a3c-4ec0-809d-b15b3d6fe389", + "name": "AMET, DOLOR SIT", + "endDate": "2023-09-11", + "startDate": "2020-06-25", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": false + "siteRegistry": true + } + ], + "documents": [ + { + "uuid": "64bf131f-3952-4576-9b63-9ec5ca11d93a", + "siteRegistry": false, + "documentDate": "2017-06-29", + "receivedDate": "2019-07-29", + "uploadedDate": "2017-07-07", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "af519faa-a92a-4ae6-b032-f58507067a7c", + "name": "AMET, DOLOR SIT", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "76b32c2d-9011-47c5-b61e-c13ca7119af7", + "name": "IPSUM", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "59672f0a-988b-4f77-9306-0464cd4761f5", + "name": "IPSUM", + "siteRegistry": false, + "role": "AUTHOR" + } + ] } ], "suspectLandUses": [ { - "uuid": "3e8eb53e-20bf-4a9d-b8fe-4c2e09b7f63c", - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-12-14 (described on Site Profile dated 2017-12-14)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "uuid": "3069289e-d08d-49c2-b026-3e38aeebc93f", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2018-03-26 (described on Site Profile dated 2018-03-26)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "uuid": "bf3596c0-83c8-40f7-b1c7-56f2faec9b84", + "uuid": "911633e8-61c9-45da-889f-24ef6365aa8a", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-08-07 (described on Site Profile dated 2015-08-07)", + "notes": "INSERTED FOR SITE PROFILE DATED 2020-06-06 (described on Site Profile dated 2020-06-06)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "uuid": "b036bc65-32e7-4936-b236-f16ca33a45b5", + "uuid": "bc85c6a9-0a0e-45f1-95d1-a3ef8eb0655a", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-08-19 (described on Site Profile dated 2021-08-19)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "notes": "INSERTED FOR SITE PROFILE DATED 2022-05-07 (described on Site Profile dated 2022-05-07)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "uuid": "c442c850-8768-4e0e-8f6a-22c805304daf", - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-06-08 (described on Site Profile dated 2018-06-08)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "uuid": "009861ec-6e98-45fc-9889-f2c50f06103c", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2014-05-14 (described on Site Profile dated 2014-05-14)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], "parcelDescriptions": [ { - "uuid": "30c892d5-e19c-4597-ab45-557df4aa4723", + "uuid": "7aad4dd9-147a-4935-ba45-0b01446be710", "siteRegistry": true, - "dateNoted": "2014-07-28", - "parcelID": "19423", - "crownLandUsePIN": "15736", - "crownLandFileNumber": "19145", - "landDescription": "LOT 3 OF LOT 2 BLOCK 3 DISTRICT LOT 3 PLAN 8454" + "dateNoted": "2017-02-27", + "parcelID": "19012", + "crownLandUsePIN": "16153", + "crownLandFileNumber": "16144", + "landDescription": "LOT 1 OF LOT 2 BLOCK 2 DISTRICT LOT 1 PLAN 3257" }, { - "uuid": "08d37006-f021-4f6c-b73a-2a821d4033e7", - "siteRegistry": true, - "dateNoted": "2017-03-22", - "parcelID": "16041", - "crownLandUsePIN": "18742", - "crownLandFileNumber": "17635", - "landDescription": "LOT 5 OF LOT 4 BLOCK 3 DISTRICT LOT 5 PLAN 3812" + "uuid": "d10d143c-9d25-4af8-9444-935ce33ec9d3", + "siteRegistry": false, + "dateNoted": "2015-09-29", + "parcelID": "15323", + "crownLandUsePIN": "18162", + "crownLandFileNumber": "15430", + "landDescription": "LOT 5 OF LOT 5 BLOCK 4 DISTRICT LOT 5 PLAN 4016" }, { - "uuid": "971eb73d-a8b1-4302-a26d-0e3274783e95", - "siteRegistry": false, - "dateNoted": "2019-01-30", - "parcelID": "20247", - "crownLandUsePIN": "18212", - "crownLandFileNumber": "20537", - "landDescription": "LOT 1 OF LOT 5 BLOCK 4 DISTRICT LOT 1 PLAN 8656" + "uuid": "1dfa9f13-0c6d-49b8-b660-b2fc0d224910", + "siteRegistry": true, + "dateNoted": "2016-11-20", + "parcelID": "18076", + "crownLandUsePIN": "19098", + "crownLandFileNumber": "20614", + "landDescription": "LOT 5 OF LOT 2 BLOCK 5 DISTRICT LOT 5 PLAN 9780" }, { - "uuid": "7cd7acf9-7af2-498f-b3eb-fde9fbf9494b", + "uuid": "f19d7c56-af4d-42e7-83f1-0d8e0d098e85", "siteRegistry": false, - "dateNoted": "2017-06-25", - "parcelID": "18830", - "crownLandUsePIN": "20071", - "crownLandFileNumber": "15457", - "landDescription": "LOT 4 OF LOT 2 BLOCK 2 DISTRICT LOT 4 PLAN 9189" + "dateNoted": "2014-06-06", + "parcelID": "16465", + "crownLandUsePIN": "15382", + "crownLandFileNumber": "16884", + "landDescription": "LOT 4 OF LOT 4 BLOCK 1 DISTRICT LOT 4 PLAN 7408" }, { - "uuid": "c8407f8d-1473-4768-824b-fe9f3dbac31b", + "uuid": "2be4bc26-23ed-4aa3-a752-cd808b6def6a", "siteRegistry": false, - "dateNoted": "2018-02-19", - "parcelID": "20100", - "crownLandUsePIN": "18063", - "crownLandFileNumber": "19730", - "landDescription": "LOT 3 OF LOT 1 BLOCK 3 DISTRICT LOT 5 PLAN 3878" + "dateNoted": "2021-06-26", + "parcelID": "15534", + "crownLandUsePIN": "17761", + "crownLandFileNumber": "17853", + "landDescription": "LOT 3 OF LOT 3 BLOCK 3 DISTRICT LOT 2 PLAN 4020" } ], "siteDisclosures": [ { - "uuid": "97d5c426-8f86-4537-bdec-b4f389d439e4", - "siteRegistry": true, - "dateReceived": "2016-04-02", - "dateCompleted": "2015-07-30", - "dateEntered": "2016-03-24", - "dateRegistrar": "2017-01-17", - "dateLocalAuthorityReceived": "2018-05-31", - "summary": "Dicta pariatur recusandae nobis.\nFacere quia error aspernatur.\nIure eligendi qui consectetur animi.", - "informationUsed": "Reiciendis ut illum adipisci sit temporibus aperiam corrupti facere minus.\nExplicabo cumque pariatur minus illum quod ratione ipsam.\nOdio odit rem eius possimus.\nSaepe consequatur earum soluta est ipsa voluptatem minus.\nExcepturi sunt cum quaerat totam.", - "pastOrPresentOrders": "Nulla nostrum deleniti doloremque architecto ea consectetur aut.\nCorporis vero officiis ut quod autem minus modi.", + "uuid": "29a9da63-5432-49bb-b233-3a5f75972f70", + "siteRegistry": false, + "dateReceived": "2021-11-15", + "dateCompleted": "2021-02-07", + "dateEntered": "2021-12-15", + "dateRegistrar": "2020-10-06", + "dateLocalAuthorityReceived": "2023-05-05", + "summary": "Ducimus illum quas.", + "informationUsed": "Molestias accusantium quasi quo nihil necessitatibus corrupti velit laudantium.\nQui molestias explicabo voluptatibus impedit qui aliquam.\nIllo quam unde architecto aliquid vero illum maiores.\nA amet ad perspiciatis quaerat atque.\nHarum perferendis impedit a sapiente culpa dicta ex amet necessitatibus.", + "pastOrPresentOrders": "Iste necessitatibus saepe explicabo fugit fuga.\nEnim saepe facilis velit.", "commercialAndIndustrialPurposes": [ { - "uuid": "72ec276c-7736-4c90-beac-d939926facea", - "scheduleReference": "F1*", + "uuid": "6e1a53a9-c826-4838-83fa-c161588886f1", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { - "uuid": "10e71075-58e7-44f7-ba6f-240a23439409", + "uuid": "15f5b482-1ea1-4f56-93d1-9eaf5a071c7d", "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true }, { - "uuid": "b6da3b6c-fc91-4dbc-ad70-02f20389c0da", - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "uuid": "3a582aed-320a-4642-9c7e-a1c540e26e3b", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false }, { - "uuid": "909d5080-cea8-41c5-ad69-d7babc907ea5", + "uuid": "72728c15-3887-4023-a298-cc1ae1eaae8a", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true @@ -59668,32 +69728,32 @@ ] }, { - "uuid": "556b533f-0e5b-4a4a-90fd-5e6ae4be9048", - "siteRegistry": false, - "dateReceived": "2018-09-02", - "dateCompleted": "2018-09-30", - "dateEntered": "2021-07-28", - "dateRegistrar": "2016-08-16", - "dateLocalAuthorityReceived": "2017-02-28", - "summary": "Sequi voluptatem explicabo.\nError necessitatibus dignissimos nam illo inventore ex quas.", - "informationUsed": "Magni similique nostrum tempora dolore.\nQuasi molestiae cupiditate.\nTenetur qui doloribus officia sapiente autem doloremque.\nDoloremque totam ducimus quam sit enim.\nFuga incidunt eos maiores.", - "pastOrPresentOrders": "Perspiciatis optio quod harum unde.\nAdipisci a doloribus harum odio illum magni.\nNam numquam sed cum.", + "uuid": "f07d69e8-27fa-42e4-a782-165580caa87f", + "siteRegistry": true, + "dateReceived": "2018-09-10", + "dateCompleted": "2014-05-22", + "dateEntered": "2022-12-31", + "dateRegistrar": "2020-08-25", + "dateLocalAuthorityReceived": "2021-12-01", + "summary": "Possimus similique ullam facilis eos placeat.", + "informationUsed": "Quam magni dolorum eaque.\nSimilique ab mollitia deleniti sequi deserunt officiis.\nIusto dolores accusamus iusto eius harum quisquam dolorum.\nFacilis itaque nulla exercitationem error dolor at soluta.\nEarum odit similique officiis sequi.", + "pastOrPresentOrders": "Earum laborum officia enim minima ratione qui delectus.\nMagnam dolores hic temporibus quasi aliquid sunt debitis delectus.\nReprehenderit maxime aperiam placeat.", "commercialAndIndustrialPurposes": [ { - "uuid": "b828beea-a58d-4147-aa20-d1047fbd934b", - "scheduleReference": "F2*", + "uuid": "3cf5cb48-25ca-4842-9eb4-5c736965f7c2", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false }, { - "uuid": "3f132fa8-6753-4efe-aa15-3f5044bcf558", + "uuid": "c6125204-3cbb-420c-88ea-1816e1142990", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false }, { - "uuid": "89e880a4-f755-497c-a541-bd43fdae8414", - "scheduleReference": "F1*", + "uuid": "6c1d244e-cfe5-491b-b65a-75946c370dec", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false } @@ -59702,78 +69762,93 @@ ], "activityLog": [ { - "uuid": "2142da56-3363-4324-ae04-ddc4d965d025", + "uuid": "2ee29034-92c9-49cf-8f51-8d6465c01bae", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "KIHN ALIZE", + "timestamp": "2018-01-03" + }, + { + "uuid": "aff61028-5381-4999-bb96-74f077d96dc2", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "SCHULIST CHESTER", - "timestamp": "2014-04-20" + "user": "SMITHAM TREVA", + "timestamp": "2017-12-29" }, { - "uuid": "6259c5ed-3378-4e42-ad65-17da5b12ad52", + "uuid": "87223ae8-1215-4346-9ce8-caa3c4014b92", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "ROLFSON FREDDIE", - "timestamp": "2015-09-24" + "user": "OBERBRUNNER URBAN", + "timestamp": "2017-05-23" }, { - "uuid": "25a28c10-48e0-4ec7-ad0b-119a0c3edacf", - "siteRegistry": false, + "uuid": "f7ea9c71-a3fc-42a5-a0e5-4cf3b361770c", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "STOLTENBERG CATHY", - "timestamp": "2023-09-10" + "user": "SCHOEN-PFEFFER MAKENZIE", + "timestamp": "2022-09-14" }, { - "uuid": "d85413d0-c8fe-4833-8078-2695b291509e", + "uuid": "82eeb7fa-412e-4f31-810e-fca86d401403", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "GUSIKOWSKI MICHEL", - "timestamp": "2018-07-31" + "user": "KUNDE KIANA", + "timestamp": "2022-11-08" }, { - "uuid": "420472a2-614b-4d7e-8978-5503eda6a8f5", + "uuid": "0a33122e-2707-4cf2-8b75-b920667ae623", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "HERMISTON KORY", - "timestamp": "2020-05-10" + "user": "HELLER NATHANIEL", + "timestamp": "2022-07-01" } ], "associatedSites": [ { - "uuid": "1777c126-a9b3-4925-998a-1e9f232e0731", - "dateNoted": "2022-07-20", + "uuid": "6840014b-c043-484a-af30-1ad0632df490", + "dateNoted": "2014-10-19", "notes": "", - "parcelID": "18496", - "siteID": "15716", + "parcelID": "15952", + "siteID": "18670", + "siteRegistry": true + }, + { + "uuid": "4cbe6637-34ca-45d7-8aa1-25c6f38894cb", + "dateNoted": "2019-12-01", + "notes": "", + "parcelID": "15828", + "siteID": "18582", "siteRegistry": true } ] }, { - "uuid": "636d61f0-6d11-457c-9010-46ed61b178e7", - "siteID": 17769, - "address": "29993 Johns Shoals", - "latitude": 54.1376, - "longitude": -126.9972, - "lastUpdated": "2022-06-25", - "city": "Quigleyboro", + "uuid": "51a98d3c-a766-402f-88d6-b2bbdd680c1d", + "siteID": 20045, + "address": "94408 Corine Oval", + "latitude": 56.6512, + "longitude": -137.0483, + "lastUpdated": "2018-04-27", + "city": "Spokane", "region": "Mainland/Southwest", - "victoriaFile": "26250-20/17414", + "victoriaFile": "26250-20/8192", "regionalFile": "N/A", "parcelIDs": [ - 8326876, - 449983, - 9115969, - 7391245, - 4964030 + 9321999, + 2051926, + 6355516, + 3356857, + 7131126 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "98311df5-45eb-4f77-a05c-ce0c98c67588", - "createdAt": "2015-06-12", - "completed": "2015-09-15", - "initiated": "2023-01-17", - "ministryContact": "HANSEN ARCH", + "uuid": "185b4919-1717-48bd-b5c2-329f8fb7ffbe", + "createdAt": "2020-05-06", + "completed": "2020-11-07", + "initiated": "2021-04-21", + "ministryContact": "OSINSKI JAYCE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -59782,38 +69857,38 @@ ], "notationParticipants": [ { - "uuid": "112bffde-5790-4a3e-902b-176776c49da1", + "uuid": "709b83f5-ae13-430a-bb1b-612f9785ab6d", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false }, { - "uuid": "b61ff10a-caf6-42ad-9bb7-de0991f0f721", + "uuid": "4a894b78-1247-4657-83df-0edd4509cca4", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true }, { - "uuid": "d55305d7-7322-4f4c-ba0c-4c045458f854", - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "428b2bb1-3b9d-413d-aad6-cbe91e954a8a", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "22b7cd18-0953-4fc6-bd20-f1eada27457e", - "name": "SHELL CANADA PRODUCTS", + "uuid": "9f72df83-0555-4011-b9df-0867ddb5bd7c", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "76ed012b-a687-42f6-83f4-27713c90ad11", - "createdAt": "2014-07-17", - "completed": "2021-11-23", - "initiated": "2020-11-03", - "ministryContact": "ROLFSON ELYSSA", + "uuid": "c82c0640-aba3-4947-b7c3-f56e5153be94", + "createdAt": "2014-10-17", + "completed": "2015-02-27", + "initiated": "2018-05-16", + "ministryContact": "MUELLER-SPENCER JEAN", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -59822,44 +69897,32 @@ ], "notationParticipants": [ { - "uuid": "cebd4c8e-e26b-4c19-b0ac-457e4cf3ef15", - "name": "SHELL CANADA PRODUCTS", + "uuid": "b5bb0f03-51c4-4935-b096-b7bc951961e9", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "accf743a-3ce7-41f4-a199-ff05cc3694f6", + "uuid": "f6da1e72-ddbc-4186-8958-930da9c080bb", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "uuid": "81eb0e11-fa22-40b2-b59a-3c6f44c7f2d0", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "uuid": "cd1ee035-7cb3-4516-969c-30b23073f3a9", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "a65d00ca-5b63-42e0-ac8c-71b2bf123c15", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true + "uuid": "14641913-4701-47b2-8152-02804836a20c", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "39b26ee6-f2fa-4b26-9617-f238ebb56f51", - "createdAt": "2017-11-18", - "completed": "2018-07-06", - "initiated": "2015-02-04", - "ministryContact": "LABADIE JAY", + "uuid": "ba9183cb-5429-476e-b555-ba9f58d23c85", + "createdAt": "2020-11-17", + "completed": "2015-07-26", + "initiated": "2018-06-17", + "ministryContact": "OBERBRUNNER GUIDO", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -59868,22 +69931,16 @@ ], "notationParticipants": [ { - "uuid": "65ff3542-ffe1-4ce2-b358-a5e2146060db", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "uuid": "541bb6f1-6965-4b4e-a699-4d2ad906dd48", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "70e0ac7c-dcab-46fa-a6d4-c4b8fad77bb9", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "uuid": "e2c4a77c-313e-4579-bb18-33d58da4aa91", - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "13e8b822-d123-4cb7-b833-56c683699906", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true } ], "siteRegistry": false @@ -59891,21 +69948,21 @@ ], "participants": [ { - "uuid": "3d13c4e2-f213-4cc3-84f7-9cab32b8236e", - "name": "AMET, DOLOR SIT", - "endDate": "2023-02-12", - "startDate": "2016-10-04", + "uuid": "c727500b-179e-4b50-847b-6e6567d5c808", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2023-05-16", + "startDate": "2020-09-11", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "6499855d-737e-4b30-ab3b-d447afa1b30a", - "name": "AMET, DOLOR SIT", - "endDate": "2020-01-27", - "startDate": "2022-01-08", + "uuid": "7b7a034a-a8d4-4b6f-ad2b-d0e862af45cf", + "name": "IPSUM", + "endDate": "2014-05-09", + "startDate": "2014-02-09", "notes": "", "roles": [ "EMPLOYEE" @@ -59913,242 +69970,275 @@ "siteRegistry": false }, { - "uuid": "343d521b-fd60-4b53-94a2-a5e47e4f799b", - "name": "AMET, DOLOR SIT", - "endDate": "2017-01-09", - "startDate": "2017-04-02", + "uuid": "a8c9200c-a067-4a55-8c88-c0f5ff777461", + "name": "IPSUM", + "endDate": "2020-12-08", + "startDate": "2014-03-08", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "30def8bd-493f-4226-a87d-0ccdf4fa5ed3", + "uuid": "a16f8b3e-8400-4e72-85b0-b559a99c7087", "name": "AMET, DOLOR SIT", - "endDate": "2016-05-23", - "startDate": "2016-07-03", + "endDate": "2019-09-29", + "startDate": "2021-03-25", "notes": "", "roles": [ "ORGANIZATION" ], "siteRegistry": true + } + ], + "documents": [ + { + "uuid": "1cafaa03-c5d7-4489-943a-f2844462077d", + "siteRegistry": false, + "documentDate": "2016-11-07", + "receivedDate": "2018-12-18", + "uploadedDate": "2018-08-30", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "38f3ffa4-57e7-4663-9058-1c20c7b9c43d", + "name": "IPSUM", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "daf47e05-a27f-4967-9147-6fcadd0b0464", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": true, + "role": "AUTHOR" + } + ] }, { - "uuid": "b1a664d5-bbe2-45f7-9805-dbb0c7f8566e", - "name": "IPSUM", - "endDate": "2023-07-05", - "startDate": "2016-05-08", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": false + "uuid": "c151dda5-d5ec-49ab-a689-8ee19c9c2af1", + "siteRegistry": false, + "documentDate": "2016-10-25", + "receivedDate": "2017-07-28", + "uploadedDate": "2021-05-17", + "title": "Preliminary Site Investigation, Detailed Site Investigation and Remedial Plan for the Management Area adjacent to the Shell Site at 1503 West 41st Ave", + "participants": [ + { + "uuid": "ea5f7571-c5bf-4260-9b38-50e3c9ae28cd", + "name": "IPSUM", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "91a65009-a01b-45b3-ba07-ad6b01d65e6e", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": true, + "role": "AUTHOR" + } + ] + }, + { + "uuid": "9e6b22d0-eb1c-4569-b64e-859a2c185a71", + "siteRegistry": true, + "documentDate": "2014-04-03", + "receivedDate": "2016-09-06", + "uploadedDate": "2020-08-25", + "title": "Preliminary Site Investigation, Detailed Site Investigation and Remedial Plan for the Management Area adjacent to the Shell Site at 1503 West 41st Ave", + "participants": [ + { + "uuid": "7effe1ab-34fa-4d2b-8be6-75032f6be3c4", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "b83f41bd-6af2-4b7f-ab26-c9111290cc70", + "name": "IPSUM", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "f3fac9c5-9f39-461f-9edb-57ec041a6a9b", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": true, + "role": "AUTHOR" + } + ] } ], "suspectLandUses": [ { - "uuid": "813b37ff-729b-43fd-8345-257bdfd7a32b", - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2023-03-06 (described on Site Profile dated 2023-03-06)", + "uuid": "d52c5316-06bc-42ff-b165-29f7980bb92e", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2019-11-18 (described on Site Profile dated 2019-11-18)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "uuid": "5d69fd00-24d9-4c83-bd3e-a75c8ceefab5", + "uuid": "e91219ab-6298-4793-85a1-bad7a1495e4b", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2020-05-04 (described on Site Profile dated 2020-05-04)", + "notes": "INSERTED FOR SITE PROFILE DATED 2014-09-24 (described on Site Profile dated 2014-09-24)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "uuid": "c6d44ffa-67e1-44a3-9d56-b3a6d49b216a", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2023-02-03 (described on Site Profile dated 2023-02-03)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "uuid": "5029dc1f-8db5-4fe3-b723-c3afff1a2aa9", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2021-04-06 (described on Site Profile dated 2021-04-06)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], "parcelDescriptions": [ { - "uuid": "82465d18-ea34-4ba0-b7aa-0ecb6a14870a", + "uuid": "39d8d730-a934-4a07-9d54-e6af18f6b35c", "siteRegistry": true, - "dateNoted": "2022-03-10", - "parcelID": "20812", - "crownLandUsePIN": "20971", - "crownLandFileNumber": "18392", - "landDescription": "LOT 1 OF LOT 4 BLOCK 5 DISTRICT LOT 3 PLAN 9597" + "dateNoted": "2016-11-11", + "parcelID": "19460", + "crownLandUsePIN": "18907", + "crownLandFileNumber": "19298", + "landDescription": "LOT 4 OF LOT 1 BLOCK 3 DISTRICT LOT 2 PLAN 6975" + }, + { + "uuid": "2b1a3751-88c0-4cb5-8451-dddbd8554671", + "siteRegistry": false, + "dateNoted": "2014-07-03", + "parcelID": "18642", + "crownLandUsePIN": "15897", + "crownLandFileNumber": "20531", + "landDescription": "LOT 1 OF LOT 5 BLOCK 2 DISTRICT LOT 1 PLAN 3886" }, { - "uuid": "6c1d0a71-e4f9-44dc-ad4e-5765838077fc", + "uuid": "85650dfe-eb26-4dcd-979b-f196b0bee3de", "siteRegistry": true, - "dateNoted": "2020-04-13", - "parcelID": "17791", - "crownLandUsePIN": "19414", - "crownLandFileNumber": "17739", - "landDescription": "LOT 3 OF LOT 5 BLOCK 1 DISTRICT LOT 2 PLAN 5461" + "dateNoted": "2017-07-13", + "parcelID": "16681", + "crownLandUsePIN": "19514", + "crownLandFileNumber": "19747", + "landDescription": "LOT 3 OF LOT 5 BLOCK 1 DISTRICT LOT 4 PLAN 6784" } ], "siteDisclosures": [ { - "uuid": "db802ef1-35bd-4be5-9665-72b92c8b935a", + "uuid": "54b46f61-c27e-4ab1-a353-f1706562228e", "siteRegistry": false, - "dateReceived": "2014-08-25", - "dateCompleted": "2018-06-15", - "dateEntered": "2019-12-11", - "dateRegistrar": "2017-07-16", - "dateLocalAuthorityReceived": "2014-03-09", - "summary": "A debitis ipsum commodi suscipit optio.", - "informationUsed": "Ipsam eius eum fugit.\nEst quae voluptatem.\nMinus amet ipsum dolore labore facilis atque ducimus aperiam animi.", - "pastOrPresentOrders": "Amet nisi velit non distinctio.\nAlias excepturi unde.", + "dateReceived": "2018-12-06", + "dateCompleted": "2023-01-09", + "dateEntered": "2020-10-24", + "dateRegistrar": "2017-10-11", + "dateLocalAuthorityReceived": "2014-07-06", + "summary": "Iste esse id neque repellendus aut ut odio.\nA autem expedita magnam impedit.", + "informationUsed": "Atque corporis illo.\nMaxime quae qui occaecati.\nIpsum error placeat.\nSaepe temporibus odit eius eius suscipit quae sit natus consequatur.", + "pastOrPresentOrders": "Vero inventore sed.\nBlanditiis doloremque mollitia placeat.", "commercialAndIndustrialPurposes": [ { - "uuid": "4d22532d-4c38-4a4f-8881-9fd2d7f6379a", - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false - }, - { - "uuid": "1ed3d8bd-b5df-44ff-aa72-866f6e2b103f", - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true - }, - { - "uuid": "ced129a8-5e2b-4a1f-98ec-9c679cf3d9a5", + "uuid": "4e32e106-30cb-4774-90b3-69a0ddf453f1", "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { - "uuid": "65748337-89e2-4f39-be1b-0bab7896c3e5", + "uuid": "7ef6215f-ef46-49a6-9198-f2b2865764fd", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false - } - ] - }, - { - "uuid": "105a1b38-d9f8-42eb-8ce8-9f1b806603d6", - "siteRegistry": false, - "dateReceived": "2016-05-12", - "dateCompleted": "2015-11-27", - "dateEntered": "2017-11-19", - "dateRegistrar": "2016-02-05", - "dateLocalAuthorityReceived": "2020-10-23", - "summary": "Quis ratione esse pariatur eos quae impedit animi.\nPorro non officia est quibusdam fugit totam delectus.", - "informationUsed": "Sit voluptates occaecati.\nHic reprehenderit veritatis quisquam minus ex.\nFacilis voluptatum beatae fugit eveniet.\nAperiam earum repellat molestiae.\nCorporis autem non ipsum.", - "pastOrPresentOrders": "Ipsa quos accusantium atque qui.\nQuibusdam modi consequuntur repellendus eius porro placeat illum.\nUnde nisi molestias.", - "commercialAndIndustrialPurposes": [ - { - "uuid": "fdfa7e1f-b643-4c61-a9e3-89bacd7818f0", - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false - }, - { - "uuid": "64cf1ce1-8997-44b7-be91-daa53e4bd38d", - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false + "siteRegistry": true } ] } ], "activityLog": [ { - "uuid": "7db4ac0a-00b6-42ca-916b-1121d2001588", - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "LOWE MONTY", - "timestamp": "2019-08-22" - }, - { - "uuid": "eeb0e9fb-a528-4fca-97ca-2eadcf07f1bb", - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "RUNOLFSDOTTIR HASSAN", - "timestamp": "2021-01-11" - }, - { - "uuid": "20a01858-f601-4daa-9e1f-902e2746d729", - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "WINTHEISER SYLVESTER", - "timestamp": "2014-10-05" - }, - { - "uuid": "f1c691ce-9a61-4eba-9605-e678b2969436", + "uuid": "da402a5b-4b3f-4289-96bd-0e866c3bda5d", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "BOEHM HILBERT", - "timestamp": "2017-09-24" + "user": "GLEASON ALYSSON", + "timestamp": "2023-02-18" }, { - "uuid": "a7e410a9-17d2-4ebb-96a2-fc71695a4c91", + "uuid": "2c906ca2-21b3-4d18-986a-28e961eadb7f", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "WINTHEISER LEATHA", - "timestamp": "2016-04-22" + "user": "HAHN RICHIE", + "timestamp": "2023-05-17" }, { - "uuid": "ad99907b-9f2b-49ba-8fd9-68955a838ba9", + "uuid": "afbcb78d-97f6-42dd-918d-0a9b70502777", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "O'HARA BUFORD", - "timestamp": "2021-11-12" + "user": "LEDNER MITCHELL", + "timestamp": "2016-03-04" }, { - "uuid": "e67a0814-8abd-444d-945e-bd7611733f5a", + "uuid": "ddf2840f-7583-4741-9d8c-c0d3e10d1a8a", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "SANFORD REANNA", - "timestamp": "2014-03-21" + "user": "CRONA HEATH", + "timestamp": "2015-10-22" }, { - "uuid": "98a726b1-d2dc-44bf-926b-c6d479f1993e", - "siteRegistry": false, + "uuid": "801bfd14-a0f3-42f4-a539-955894af8909", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "DUBUQUE WILHELM", - "timestamp": "2017-09-12" + "user": "FEEST NORENE", + "timestamp": "2018-10-21" } ], "associatedSites": [ { - "uuid": "cefbd325-2712-443e-8046-e91214a26647", - "dateNoted": "2016-08-30", + "uuid": "3b21042e-d54f-4070-b629-8f7f6a022f26", + "dateNoted": "2018-05-25", "notes": "", - "parcelID": "16359", - "siteID": "18183", - "siteRegistry": false + "parcelID": "20911", + "siteID": "20039", + "siteRegistry": true }, { - "uuid": "b099d693-c7b9-4f44-873c-ad876798ab97", - "dateNoted": "2014-09-07", + "uuid": "b8c926e7-9385-4a7c-ba20-a2a753fb9ea3", + "dateNoted": "2022-04-28", "notes": "", - "parcelID": "15566", - "siteID": "18096", - "siteRegistry": false + "parcelID": "17770", + "siteID": "16182", + "siteRegistry": true + }, + { + "uuid": "a21c1850-bde4-431f-94e0-a1c894787010", + "dateNoted": "2014-03-14", + "notes": "", + "parcelID": "18076", + "siteID": "20872", + "siteRegistry": true } ] }, { - "uuid": "8f12444d-d38d-40cc-afa2-5324c8501576", - "siteID": 19893, - "address": "50581 Hoeger Freeway", - "latitude": 53.2851, - "longitude": -136.812, - "lastUpdated": "2020-09-02", - "city": "Allieland", - "region": "Thompson-Okanagan", - "victoriaFile": "26250-20/7966", + "uuid": "c84a6177-055c-404a-b9d8-9a75c5ed1fc1", + "siteID": 16834, + "address": "1861 Green Groves", + "latitude": 56.0861, + "longitude": -122.0073, + "lastUpdated": "2018-12-13", + "city": "West Annabelstead", + "region": "Kootenay", + "victoriaFile": "26250-20/13353", "regionalFile": "N/A", "parcelIDs": [ - 2507050, - 9982639, - 7592446, - 7324464, - 5212281 + 1212458, + 6727647, + 173794, + 8775136, + 2371319 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "69fd2637-0f79-4b2c-ae38-532c400ec5d1", - "createdAt": "2018-12-30", - "completed": "2021-07-22", - "initiated": "2017-11-13", - "ministryContact": "BERGE FREDERIK", + "uuid": "091d9245-c693-4e3d-8e50-113821caf8df", + "createdAt": "2018-12-20", + "completed": "2021-10-28", + "initiated": "2020-03-12", + "ministryContact": "HINTZ GEORGE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -60157,32 +70247,38 @@ ], "notationParticipants": [ { - "uuid": "52dec7ae-c0b5-496a-884f-d07e60b00925", - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "uuid": "3ed1989b-bbdc-4969-bb6b-156fd59f7fab", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "baea86ed-b889-4114-9535-015ef6111f9f", - "name": "SHELL CANADA PRODUCTS", + "uuid": "5e7d1de6-5f4a-4512-8707-888b6e2ad4c1", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "e17b526a-a9a8-45ce-b076-dcf47588d496", + "uuid": "21e0fa4a-1804-43ce-95f4-3dd87afafbba", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "9b0ee9fe-9d62-412e-8213-a9ccf4689088", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "c387b855-24d0-4b4e-8f0b-9ad52f62c211", - "createdAt": "2018-03-08", - "completed": "2021-03-20", - "initiated": "2022-12-05", - "ministryContact": "KEMMER KAYLEIGH", + "uuid": "9584da63-731c-49bf-98a1-d6a42084260a", + "createdAt": "2017-03-25", + "completed": "2023-09-29", + "initiated": "2014-03-14", + "ministryContact": "MCCULLOUGH ISOBEL", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -60191,27 +70287,45 @@ ], "notationParticipants": [ { - "uuid": "550637f9-4225-4daf-9fdd-68085cf8042b", - "name": "SHELL CANADA PRODUCTS", + "uuid": "31b8e5e3-70b4-4462-bdcb-13074870a13b", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "2fda1041-e5b2-4490-92cd-a46c6fb4a419", + "uuid": "3b39fab5-e323-4f4e-b901-173737cd5edf", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "f5bccd55-c1d9-4d8b-a203-484124413667", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "25a3ece3-c48c-4826-b106-0df7b9386839", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "uuid": "8d7da190-7d5d-4edc-82be-79c00152247b", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false } ], "participants": [ { - "uuid": "9e705393-dba0-4091-9510-af4ce43a9d7b", + "uuid": "3bb510d8-e87b-4d4f-b0fc-a9bbc4226b69", "name": "AMET, DOLOR SIT", - "endDate": "2023-10-11", - "startDate": "2014-05-14", + "endDate": "2017-10-02", + "startDate": "2022-01-09", "notes": "", "roles": [ "ORGANIZATION" @@ -60219,236 +70333,328 @@ "siteRegistry": true }, { - "uuid": "8cc4912f-9b7b-402c-8035-3f885df997b6", - "name": "AMET, DOLOR SIT", - "endDate": "2023-08-29", - "startDate": "2021-08-17", + "uuid": "c0203241-b66a-4a37-8b80-d2e1e3e48fa2", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2021-11-25", + "startDate": "2019-11-03", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "uuid": "b3a97677-f049-4d02-9e3b-623e55866dc5", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2020-07-10", + "startDate": "2015-06-13", "notes": "", "roles": [ "ORGANIZATION" ], "siteRegistry": true + } + ], + "documents": [ + { + "uuid": "44a34f15-ff55-4ad2-a1fd-17f1dd8b28b9", + "siteRegistry": true, + "documentDate": "2015-02-15", + "receivedDate": "2017-12-16", + "uploadedDate": "2014-05-18", + "title": "Summary of Site Conditions, 1537 W 41st Avenue, Vancouver", + "participants": [ + { + "uuid": "78457ba0-5b20-4e49-aaf8-67ff5e926bd8", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "b0352bbd-f036-4bbe-b4f1-4fdb66f0b360", + "name": "AMET, DOLOR SIT", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "6f7ffbf0-ad2c-4284-bced-2e4623db2847", + "name": "IPSUM", + "siteRegistry": true, + "role": "AUTHOR" + } + ] + }, + { + "uuid": "2010eb9b-9ecb-40ef-a047-a32eb97b053c", + "siteRegistry": true, + "documentDate": "2018-09-12", + "receivedDate": "2019-02-12", + "uploadedDate": "2020-12-15", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "b10c28c5-c815-403a-8888-9f04ce6e3203", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "9ecd0eba-7d0a-4fe6-983e-cf7fa100b943", + "name": "AMET, DOLOR SIT", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "40483c49-c8fd-4c4d-96b6-76e7277a9ad2", + "name": "IPSUM", + "siteRegistry": true, + "role": "AUTHOR" + } + ] }, { - "uuid": "25a19111-f7a4-4400-8ab1-b9e395a1113d", - "name": "AMET, DOLOR SIT", - "endDate": "2020-07-19", - "startDate": "2015-02-17", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": false + "uuid": "b7414574-feda-4b6e-a1c0-6b79350abf6b", + "siteRegistry": false, + "documentDate": "2015-01-02", + "receivedDate": "2016-09-21", + "uploadedDate": "2022-12-13", + "title": "Preliminary Site Investigation, Detailed Site Investigation and Remedial Plan for the Management Area adjacent to the Shell Site at 1503 West 41st Ave", + "participants": [ + { + "uuid": "55276bee-5c38-4d76-9235-37a6a5b6cb9a", + "name": "AMET, DOLOR SIT", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "029db781-16ce-4983-a4ee-2081d18d03b7", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "bf624c56-86bf-4daa-b080-0e0819dde969", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": false, + "role": "AUTHOR" + } + ] + }, + { + "uuid": "9abc30b3-ba6c-4d16-84e6-17f63454b9b3", + "siteRegistry": false, + "documentDate": "2019-09-18", + "receivedDate": "2014-01-21", + "uploadedDate": "2018-03-18", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "78ac3e4e-fa47-4dfc-b8a2-b7e886d27d31", + "name": "IPSUM", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "231c4d4e-0933-41da-9ee9-04b40700e4f3", + "name": "AMET, DOLOR SIT", + "siteRegistry": false, + "role": "AUTHOR" + } + ] } ], "suspectLandUses": [ { - "uuid": "25da92d9-f5af-4c75-95a0-4a78a72ba028", - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-12-25 (described on Site Profile dated 2019-12-25)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" - }, - { - "uuid": "153b3b97-4dcd-427e-9d27-df3b33c0b515", + "uuid": "a470622a-634a-47e7-9fbc-e4c9a272597a", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-02-13 (described on Site Profile dated 2022-02-13)", + "notes": "INSERTED FOR SITE PROFILE DATED 2017-12-26 (described on Site Profile dated 2017-12-26)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "uuid": "ee629192-cc6a-4844-9328-d2348dbb69a7", - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-11-18 (described on Site Profile dated 2019-11-18)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" - }, - { - "uuid": "b7e56172-3500-40c5-aab6-f55d52eaa251", + "uuid": "cb7dd48a-df9f-49c6-85a8-0389b7756e9c", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2020-10-14 (described on Site Profile dated 2020-10-14)", + "notes": "INSERTED FOR SITE PROFILE DATED 2021-05-02 (described on Site Profile dated 2021-05-02)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" - }, - { - "uuid": "abd20d1c-a9b8-44de-8f92-7a2f4c0af10d", - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-10-17 (described on Site Profile dated 2014-10-17)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], "parcelDescriptions": [ { - "uuid": "2aa41ef8-783d-435d-8cd7-02798c09b1fd", + "uuid": "3c637485-bfb5-4cc4-8703-859a6fce0996", "siteRegistry": false, - "dateNoted": "2016-07-25", - "parcelID": "16826", - "crownLandUsePIN": "20443", - "crownLandFileNumber": "15948", - "landDescription": "LOT 1 OF LOT 5 BLOCK 1 DISTRICT LOT 3 PLAN 9769" - }, - { - "uuid": "2337f590-77a8-4141-958a-006c95d5ff51", - "siteRegistry": true, - "dateNoted": "2015-12-07", - "parcelID": "19806", - "crownLandUsePIN": "17695", - "crownLandFileNumber": "19031", - "landDescription": "LOT 5 OF LOT 1 BLOCK 1 DISTRICT LOT 3 PLAN 4937" - }, - { - "uuid": "bca21f16-02a7-4752-8587-ffebc9788da3", - "siteRegistry": true, - "dateNoted": "2018-05-02", - "parcelID": "15716", - "crownLandUsePIN": "20718", - "crownLandFileNumber": "18413", - "landDescription": "LOT 1 OF LOT 3 BLOCK 3 DISTRICT LOT 1 PLAN 9444" + "dateNoted": "2021-10-26", + "parcelID": "18735", + "crownLandUsePIN": "18950", + "crownLandFileNumber": "18595", + "landDescription": "LOT 5 OF LOT 2 BLOCK 4 DISTRICT LOT 4 PLAN 5217" }, { - "uuid": "7f9ebd56-0dca-4eb7-b584-0b8d260f4c59", + "uuid": "909b2f9d-3a09-4f1b-8b69-1a63fd6b39fd", "siteRegistry": true, - "dateNoted": "2017-09-03", - "parcelID": "18569", - "crownLandUsePIN": "18167", - "crownLandFileNumber": "19079", - "landDescription": "LOT 3 OF LOT 1 BLOCK 3 DISTRICT LOT 1 PLAN 7362" + "dateNoted": "2021-05-07", + "parcelID": "20621", + "crownLandUsePIN": "16356", + "crownLandFileNumber": "20507", + "landDescription": "LOT 4 OF LOT 2 BLOCK 1 DISTRICT LOT 2 PLAN 4447" } ], "siteDisclosures": [ { - "uuid": "81d6b3c9-3d02-4eb8-9a90-898c399cc0cf", - "siteRegistry": false, - "dateReceived": "2022-02-21", - "dateCompleted": "2018-01-10", - "dateEntered": "2016-07-12", - "dateRegistrar": "2016-09-11", - "dateLocalAuthorityReceived": "2021-09-10", - "summary": "Ipsa repellendus commodi optio blanditiis.\nEaque voluptatum quisquam non excepturi reprehenderit alias eligendi inventore culpa.", - "informationUsed": "Explicabo quasi in ducimus assumenda quasi officia quo molestias.\nFuga molestias libero.\nNisi atque impedit quos nesciunt ipsum commodi repellendus.\nError tempore consequatur.\nSit odit accusamus numquam dolorum accusamus ipsa quaerat.", - "pastOrPresentOrders": "Deleniti voluptatum beatae iure provident omnis quae.\nAliquam aliquam velit.\nEa reprehenderit assumenda dignissimos quidem tenetur maiores modi.", + "uuid": "d27c63a3-da6a-4b62-96cd-6a49b1fe6166", + "siteRegistry": true, + "dateReceived": "2017-07-01", + "dateCompleted": "2019-06-19", + "dateEntered": "2021-05-21", + "dateRegistrar": "2015-09-13", + "dateLocalAuthorityReceived": "2018-12-22", + "summary": "Deleniti aliquid doloremque asperiores praesentium quas.\nNumquam atque dignissimos ducimus sapiente dolorum.", + "informationUsed": "Voluptatibus tenetur sapiente.\nExcepturi assumenda ratione corporis quia minus quaerat odit ab facere.\nQuasi odit officia sunt minus expedita.\nQuas facilis voluptate laborum occaecati ducimus reprehenderit aliquid.\nQuasi sint pariatur molestias vero ipsa illum.", + "pastOrPresentOrders": "Optio dolores eum rerum.\nQuod animi repellendus iusto sint eos.", "commercialAndIndustrialPurposes": [ { - "uuid": "9574c7d7-e9ee-4068-8030-1a31a40b3e54", - "scheduleReference": "F2*", + "uuid": "bb65f7da-91ae-4047-85ab-6f5ef8663fdd", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false }, { - "uuid": "d10a6560-2220-46c7-a25f-9eb4003195aa", + "uuid": "f82e5281-41d8-4583-8632-84502fc542a0", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false + }, + { + "uuid": "c161eb59-62f6-40c1-9487-34212626b47f", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "uuid": "889510db-da08-4074-aba5-bc0dec95a833", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false } ] } ], "activityLog": [ { - "uuid": "0e2f4b58-6ea3-4d27-a7cb-aee729a335d8", - "siteRegistry": false, + "uuid": "58116f4b-c63e-4588-856d-759710a8df7a", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "HARBER-MCCLURE MALVINA", - "timestamp": "2021-01-27" + "user": "ERNSER ALYSA", + "timestamp": "2015-01-02" }, { - "uuid": "5c44e6df-d987-4618-99ce-9c5e64ec52b9", + "uuid": "890362a3-6e3a-4b01-a7ad-36ae3921ce61", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "WEIMANN LUCIENNE", - "timestamp": "2022-04-28" + "user": "BAHRINGER RACHELLE", + "timestamp": "2022-09-03" }, { - "uuid": "930fdb2d-5655-4114-89d8-91cd58e25689", + "uuid": "62ca2a0c-630e-46b5-81b8-1842446846e2", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "MURPHY ROD", - "timestamp": "2014-01-23" + "user": "HERMANN TONEY", + "timestamp": "2016-11-26" }, { - "uuid": "19942060-ee8e-4b21-b7e5-74dc3ce17817", - "siteRegistry": true, + "uuid": "aa511f49-0e0b-4ea3-a80b-fd14758dc2dd", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "CARTER HARVEY", - "timestamp": "2018-10-07" + "user": "KESSLER TREY", + "timestamp": "2016-08-09" }, { - "uuid": "2f788b42-1aa7-4654-a153-8da2dc6b88e5", + "uuid": "01802749-5819-4fd1-816c-37bed4bddcbc", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "SAWAYN CARLOS", - "timestamp": "2017-10-11" + "user": "BOEHM ROLLIN", + "timestamp": "2016-09-08" }, { - "uuid": "30261f2f-f924-4ea6-89aa-27d5e6951d25", + "uuid": "2bdfeea7-fd6b-4ecb-abb7-d2b9d1b729ad", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "FRITSCH KELTON", - "timestamp": "2021-09-04" + "user": "FRAMI FRIEDA", + "timestamp": "2016-07-13" }, { - "uuid": "52e18ff1-04fa-4298-bb34-cc6126ae035c", - "siteRegistry": true, + "uuid": "bef818e1-efb5-43ed-8c4b-1b99d108b221", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "GREENFELDER HILTON", - "timestamp": "2022-03-19" + "user": "LEGROS JANIE", + "timestamp": "2022-11-27" }, { - "uuid": "380a23c3-9762-4eb4-aaaa-92d1267b2ac1", + "uuid": "5c1e26e8-e799-4624-8934-33e39f3fc1ba", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "ROWE DORRIS", - "timestamp": "2022-09-24" + "user": "WATERS LORENA", + "timestamp": "2017-01-21" }, { - "uuid": "33d4749d-d3a0-470a-b6f4-e5355aa8a7c6", - "siteRegistry": false, + "uuid": "dec88dd8-33f1-4040-bb4b-48c37a8de433", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "KEELING DAPHNEY", - "timestamp": "2018-09-27" + "user": "WISOZK PAULA", + "timestamp": "2018-01-22" } ], "associatedSites": [ { - "uuid": "2179f9b6-bcf0-4d6b-9d77-f659d9540e5d", - "dateNoted": "2023-06-21", + "uuid": "d4e092af-5700-4b0c-9576-83c99f1c4aa7", + "dateNoted": "2016-06-22", "notes": "", - "parcelID": "15946", - "siteID": "17666", + "parcelID": "18620", + "siteID": "17285", "siteRegistry": true }, { - "uuid": "0da33f73-2a9f-47ef-b918-2d2c185b339a", - "dateNoted": "2017-04-29", + "uuid": "3215e8e9-c236-4b4b-9478-982d4846e7f9", + "dateNoted": "2021-12-21", "notes": "", - "parcelID": "18240", - "siteID": "17101", + "parcelID": "18580", + "siteID": "18354", "siteRegistry": true + }, + { + "uuid": "ffffdde3-09e9-4bf2-a1f7-f3031580c8b3", + "dateNoted": "2014-07-12", + "notes": "", + "parcelID": "18296", + "siteID": "17785", + "siteRegistry": false } ] }, { - "uuid": "e5cc57d5-afaa-4b68-b99b-6802d8b28c5b", - "siteID": 20682, - "address": "88598 Karelle Fields", - "latitude": 49.6052, - "longitude": -120.9783, - "lastUpdated": "2018-02-07", - "city": "South Juanitaland", - "region": "Kootenay", - "victoriaFile": "26250-20/13471", + "uuid": "17371c78-785f-4dbb-9f8f-f3f1c23a5448", + "siteID": 15957, + "address": "15893 Roger Fords", + "latitude": 53.6303, + "longitude": -119.3389, + "lastUpdated": "2016-09-21", + "city": "East Lelaberg", + "region": "Vancouver Island/Coast", + "victoriaFile": "26250-20/1530", "regionalFile": "N/A", "parcelIDs": [ - 2108605, - 6681550, - 6186978, - 4810779, - 8281141 + 7223047, + 7915019, + 3807156, + 2046837, + 3463189 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "fbef5485-71df-468f-817a-d48c194cda32", - "createdAt": "2015-07-29", - "completed": "2015-02-02", - "initiated": "2023-05-29", - "ministryContact": "BARROWS NORBERT", + "uuid": "3592cc51-76fb-427f-8bdc-56154564add8", + "createdAt": "2014-04-18", + "completed": "2016-06-24", + "initiated": "2019-10-04", + "ministryContact": "MOEN JEDEDIAH", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -60457,26 +70663,38 @@ ], "notationParticipants": [ { - "uuid": "49fd51b8-233d-4b70-a5d0-fff838717c4f", - "name": "SHELL CANADA PRODUCTS", + "uuid": "1c174785-14fe-414b-84a5-ae8a521905b4", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true }, { - "uuid": "e0005179-dd24-4554-9beb-9b5b11a10523", + "uuid": "e7f1333a-7ac5-4884-a6e6-9c7c7e4c86e9", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true + }, + { + "uuid": "03dff597-52c1-4936-ac0b-aa8936095702", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "e8c933cb-df2b-4411-b952-dd519bc08198", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false } ], "siteRegistry": true }, { - "uuid": "e1cb1de1-2534-4e28-99ef-c9b29450cf8d", - "createdAt": "2015-06-21", - "completed": "2016-09-02", - "initiated": "2021-06-18", - "ministryContact": "SCHIMMEL ZOIE", + "uuid": "3565c039-15f5-4e0b-a76e-649affb67974", + "createdAt": "2017-06-21", + "completed": "2014-08-20", + "initiated": "2020-08-11", + "ministryContact": "SIMONIS-PROHASKA TREVER", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -60485,28 +70703,28 @@ ], "notationParticipants": [ { - "uuid": "1544f92a-8176-4087-b034-411d3df0e00e", + "uuid": "4042f114-91f8-492d-9512-d03974c783c1", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false + "role": "REQUESTED BY", + "siteRegistry": true }, { - "uuid": "dc5334d1-0416-41d5-8eac-58e96fda06f6", - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false + "uuid": "1d7a374c-c5cd-4aa3-962a-eda550953998", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true }, { - "uuid": "c3686e2b-b178-4ca6-9514-94360bc08cc4", - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "5c2dfd8a-f174-4263-b2fd-634239bbb004", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "e2aa75f6-ce54-491b-8480-0cbc479a68f3", + "uuid": "b1b91a80-1cde-41e3-82b5-243d9e21c3c5", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false } ], "siteRegistry": false @@ -60514,207 +70732,343 @@ ], "participants": [ { - "uuid": "4ee80b76-8cbd-49bc-964d-843931636454", + "uuid": "65a0b489-5c62-4891-8056-824c15ff7c7a", "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2020-04-15", - "startDate": "2014-01-13", + "endDate": "2017-07-13", + "startDate": "2022-10-20", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": false }, { - "uuid": "d794c898-2ff8-48bf-96b4-e7466e84ba81", + "uuid": "bd787722-aa27-4fc8-890f-72f1d3fda7b5", "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2015-09-08", - "startDate": "2023-09-06", + "endDate": "2020-04-01", + "startDate": "2021-04-03", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "uuid": "9b2d3a32-5cc8-49d2-989b-ed35584cb5d7", + "name": "AMET, DOLOR SIT", + "endDate": "2022-07-03", + "startDate": "2022-02-13", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "uuid": "dd316ec0-1dee-44ae-8ab1-6a159f6e7afd", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2017-12-18", + "startDate": "2017-02-19", + "notes": "", + "roles": [ + "ORGANIZATION" ], "siteRegistry": true } ], - "suspectLandUses": [ + "documents": [ { - "uuid": "8b534fe0-c92a-40ca-8060-46da10f9df50", + "uuid": "7e69d523-f4cb-4358-a2a2-425da46959cc", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-07-12 (described on Site Profile dated 2015-07-12)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "documentDate": "2016-12-08", + "receivedDate": "2018-08-02", + "uploadedDate": "2015-08-14", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "f72a40fb-7aa8-4352-8e45-2b64b33c4231", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "413b5595-25b3-425d-a8dd-68c5e799749c", + "name": "AMET, DOLOR SIT", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "2ba90265-f76b-4921-a147-a1086cfa702c", + "name": "IPSUM", + "siteRegistry": false, + "role": "AUTHOR" + } + ] }, { - "uuid": "a88fa6f2-253b-454a-a0ee-b30c3fc94f7d", + "uuid": "178dc50f-229c-4cf9-b63f-b59ed888969c", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-10-01 (described on Site Profile dated 2016-10-01)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "documentDate": "2016-01-12", + "receivedDate": "2022-05-13", + "uploadedDate": "2021-01-11", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "8f8db7cf-cd35-4c80-ab3a-ab2cb54bd79c", + "name": "IPSUM", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "8a203e3f-aac3-44ff-83e6-3c48552975d9", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": false, + "role": "AUTHOR" + } + ] }, { - "uuid": "69108ed3-0cc5-44c2-9f67-f0282f5d27d3", + "uuid": "26f952df-bbd5-46eb-95f2-900b3a600d48", + "siteRegistry": true, + "documentDate": "2017-11-20", + "receivedDate": "2019-08-26", + "uploadedDate": "2015-12-16", + "title": "Summary of Site Conditions, 1537 W 41st Avenue, Vancouver", + "participants": [ + { + "uuid": "f5718f54-aceb-44b2-a6d9-a28b80004d54", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": false, + "role": "AUTHOR" + } + ] + } + ], + "suspectLandUses": [ + { + "uuid": "6c6c78f9-6722-46d1-9bc7-9220622361ba", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-06-04 (described on Site Profile dated 2018-06-04)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "notes": "INSERTED FOR SITE PROFILE DATED 2015-02-16 (described on Site Profile dated 2015-02-16)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "uuid": "b3e18072-d2e0-4e41-9dcb-fed7b398d802", + "uuid": "4c57a556-0832-4fea-88c9-b61d841ef58b", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-07-04 (described on Site Profile dated 2016-07-04)", + "notes": "INSERTED FOR SITE PROFILE DATED 2017-02-10 (described on Site Profile dated 2017-02-10)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "uuid": "34391458-1194-406d-b6bc-e09073af45ff", + "uuid": "b6205a29-3c90-4705-ac87-3fa135100095", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-10-02 (described on Site Profile dated 2022-10-02)", + "notes": "INSERTED FOR SITE PROFILE DATED 2016-08-04 (described on Site Profile dated 2016-08-04)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], "parcelDescriptions": [ { - "uuid": "47b07011-ca4e-4790-b5f1-ae937b416e0f", - "siteRegistry": false, - "dateNoted": "2020-09-06", - "parcelID": "20335", - "crownLandUsePIN": "20655", - "crownLandFileNumber": "18763", - "landDescription": "LOT 1 OF LOT 3 BLOCK 5 DISTRICT LOT 5 PLAN 2997" + "uuid": "1b8367b1-c80f-4e06-baec-1a876cd871a5", + "siteRegistry": true, + "dateNoted": "2017-01-14", + "parcelID": "19315", + "crownLandUsePIN": "15518", + "crownLandFileNumber": "16804", + "landDescription": "LOT 2 OF LOT 5 BLOCK 3 DISTRICT LOT 2 PLAN 3621" }, { - "uuid": "c8214011-1347-47f8-b090-0f9537bdaa2f", + "uuid": "0543d3e9-a0a3-4072-a7c6-6fb8e40cdf1f", "siteRegistry": false, - "dateNoted": "2022-06-04", - "parcelID": "19009", - "crownLandUsePIN": "16855", - "crownLandFileNumber": "15591", - "landDescription": "LOT 3 OF LOT 5 BLOCK 5 DISTRICT LOT 4 PLAN 7293" + "dateNoted": "2021-04-09", + "parcelID": "17983", + "crownLandUsePIN": "19763", + "crownLandFileNumber": "19377", + "landDescription": "LOT 1 OF LOT 1 BLOCK 2 DISTRICT LOT 4 PLAN 5352" }, { - "uuid": "cde15854-5c59-4180-a3e8-3590b1d89527", - "siteRegistry": false, - "dateNoted": "2014-09-18", - "parcelID": "17067", - "crownLandUsePIN": "20866", - "crownLandFileNumber": "20588", - "landDescription": "LOT 3 OF LOT 3 BLOCK 1 DISTRICT LOT 1 PLAN 7928" + "uuid": "a359bd88-86e2-4cc9-ab9d-6fced92df0b3", + "siteRegistry": true, + "dateNoted": "2018-04-17", + "parcelID": "20855", + "crownLandUsePIN": "15615", + "crownLandFileNumber": "20567", + "landDescription": "LOT 5 OF LOT 3 BLOCK 2 DISTRICT LOT 5 PLAN 7228" + }, + { + "uuid": "a2a68745-23b9-437d-8a62-76f2c16ac547", + "siteRegistry": true, + "dateNoted": "2014-04-01", + "parcelID": "18337", + "crownLandUsePIN": "16214", + "crownLandFileNumber": "18002", + "landDescription": "LOT 3 OF LOT 5 BLOCK 3 DISTRICT LOT 3 PLAN 8940" } ], "siteDisclosures": [ { - "uuid": "b9787f7e-0567-44b1-9026-7831d1fcfeac", - "siteRegistry": true, - "dateReceived": "2022-07-12", - "dateCompleted": "2016-06-15", - "dateEntered": "2022-02-17", - "dateRegistrar": "2022-10-16", - "dateLocalAuthorityReceived": "2015-04-24", - "summary": "Corrupti esse placeat et commodi eveniet.\nBeatae maiores id consequatur.", - "informationUsed": "Adipisci sed est explicabo sint impedit non earum.\nPariatur facere ipsum numquam a.\nNumquam corporis recusandae.\nProvident eaque asperiores cupiditate nemo.", - "pastOrPresentOrders": "Excepturi inventore fugiat possimus excepturi illo nulla in.\nUllam reiciendis nobis.", + "uuid": "c009bae8-8320-4665-ac3d-9ec162cb58e8", + "siteRegistry": false, + "dateReceived": "2016-05-16", + "dateCompleted": "2015-09-13", + "dateEntered": "2016-05-11", + "dateRegistrar": "2017-03-24", + "dateLocalAuthorityReceived": "2016-01-25", + "summary": "Nam aut repellat quod vel eos autem omnis culpa totam.\nRecusandae officia autem suscipit error optio perspiciatis explicabo.", + "informationUsed": "Tempore reiciendis ratione facilis similique minima facere.\nCumque voluptatum ea.\nQuas aliquam minus suscipit vel maiores libero tempora quisquam blanditiis.", + "pastOrPresentOrders": "Laboriosam ullam fuga aspernatur atque harum esse ea recusandae velit.\nAd cupiditate fuga eos.\nHarum incidunt possimus suscipit sint ab quibusdam eveniet.", "commercialAndIndustrialPurposes": [ { - "uuid": "6dbf39db-2ce0-4b06-a303-0cf725a584ed", + "uuid": "1b821239-cd70-42b1-b537-f16a3af9dd90", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, { - "uuid": "295d7f06-57a7-4a6c-b8dc-6c0c9e99fd84", + "uuid": "ff22f9aa-431d-4fc2-bf05-a900d21afcb4", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false + }, + { + "uuid": "18367691-e4fa-4ba6-b695-d7ec8a3004c5", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + } + ] + }, + { + "uuid": "d5839a6f-8b04-40d9-819e-d1d9863b175b", + "siteRegistry": false, + "dateReceived": "2019-06-20", + "dateCompleted": "2020-11-27", + "dateEntered": "2014-03-02", + "dateRegistrar": "2022-11-19", + "dateLocalAuthorityReceived": "2018-01-07", + "summary": "Fugiat iure dolore mollitia sapiente voluptas consequatur ut pariatur.\nDoloremque quis vel.", + "informationUsed": "Fuga saepe enim cum.\nAssumenda fuga placeat quo sunt dolorum dolorum ea minima numquam.\nFacere harum occaecati fugiat architecto dolores reprehenderit.\nQuis neque et dolor consequatur voluptatibus.\nA tempore dolor fugit consequuntur dolore voluptatibus quibusdam.", + "pastOrPresentOrders": "Itaque assumenda aspernatur.\nA autem cumque.\nEum amet alias fugit voluptate magnam aliquid.", + "commercialAndIndustrialPurposes": [ + { + "uuid": "3b498450-a66d-47df-aa15-44da3ce23c4f", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "uuid": "5af5fad6-be9b-4385-9525-3c53b59e78f5", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "uuid": "58a80ad1-f393-4fe9-8363-13673222040b", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "uuid": "01809753-ae35-451c-a9d7-13c9d498e5c5", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true } ] } ], "activityLog": [ { - "uuid": "eee94eeb-3f65-4356-8318-ff4cb0061a13", + "uuid": "ac80ec0d-bf2f-4718-ae7e-879ad2d16631", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "DANIEL DIEGO", + "timestamp": "2022-01-26" + }, + { + "uuid": "861a33b7-f0fc-4330-9b72-6021055fff68", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "KEELING KAILYN", + "timestamp": "2014-04-22" + }, + { + "uuid": "2d45cdea-9c81-4f64-b7d9-4fc697d8a5b3", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "LARKIN-SHIELDS HILDA", + "timestamp": "2014-03-11" + }, + { + "uuid": "44d5150e-db6b-4ff5-8cd8-7e5625cca130", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "GREENHOLT LORENZO", - "timestamp": "2021-01-06" + "user": "POUROS EMORY", + "timestamp": "2019-07-14" }, { - "uuid": "d84c00cd-c719-44a6-a4ff-f04cd380612d", + "uuid": "6fca6b1e-ea73-4d67-9376-9ec6dfc094a7", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "MARKS PAULINE", - "timestamp": "2015-12-05" + "user": "WYMAN LUTHER", + "timestamp": "2015-12-02" }, { - "uuid": "e05f91bf-38d9-4f14-a03c-a1a5fe0d5579", + "uuid": "b466d284-eecd-4b66-9a1f-1a17b9141330", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "MURRAY LEON", - "timestamp": "2023-03-24" + "user": "BERGNAUM MAGGIE", + "timestamp": "2019-09-03" }, { - "uuid": "36e54e4e-dca4-4dcf-bb4f-ff49b3bdf0cf", + "uuid": "63bd7d2c-d229-4d20-a52f-de77a2b2835b", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "WISOZK GAIL", - "timestamp": "2016-03-08" + "user": "BARTELL LILLIAN", + "timestamp": "2020-04-04" }, { - "uuid": "b83b0474-aa35-418a-b761-18dfcbef3b29", - "siteRegistry": true, + "uuid": "4ee8b09f-aaa0-48df-8679-26f27c78f4b9", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "GRIMES ROWENA", - "timestamp": "2016-01-04" + "user": "SCHUPPE EUDORA", + "timestamp": "2014-02-21" } ], "associatedSites": [ { - "uuid": "74518d80-0cfc-4da0-bb31-eb9f969814a9", - "dateNoted": "2021-10-26", - "notes": "", - "parcelID": "19543", - "siteID": "16186", - "siteRegistry": false - }, - { - "uuid": "307abfb3-64a4-4441-bcfc-263fdd4ee2d6", - "dateNoted": "2017-04-11", + "uuid": "914c1133-9504-4274-9d91-e211dda3adac", + "dateNoted": "2017-03-15", "notes": "", - "parcelID": "15464", - "siteID": "17390", + "parcelID": "16164", + "siteID": "16253", "siteRegistry": true - }, - { - "uuid": "b40f8205-cb73-4c0d-b7f5-d9bf4d8e4581", - "dateNoted": "2018-10-02", - "notes": "", - "parcelID": "20982", - "siteID": "18416", - "siteRegistry": false } ] }, { - "uuid": "d13d4273-ef3d-41fb-84c1-cfd1b5725d1b", - "siteID": 20203, - "address": "9978 Mohr Roads", - "latitude": 54.2928, - "longitude": -138.9652, - "lastUpdated": "2014-04-23", - "city": "New Dellboro", + "uuid": "d3d4d923-c889-4a9d-ba4d-b984d12ab547", + "siteID": 16890, + "address": "46992 Josefina Rue", + "latitude": 52.5654, + "longitude": -128.8128, + "lastUpdated": "2017-02-04", + "city": "Bradyburgh", "region": "Vancouver Island/Coast", - "victoriaFile": "26250-20/13696", + "victoriaFile": "26250-20/16521", "regionalFile": "N/A", "parcelIDs": [ - 4028691, - 811624, - 3561341, - 9510437, - 1493053 + 3688856, + 4684356, + 5209880, + 5174401, + 5857433 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "396b17cc-f9f3-48a8-bb99-f2eb15a487b6", - "createdAt": "2020-08-14", - "completed": "2014-07-18", - "initiated": "2019-12-12", - "ministryContact": "BRUEN MALACHI", + "uuid": "9a291fba-9623-4ceb-a1ad-e757c1b0e5a6", + "createdAt": "2020-05-26", + "completed": "2019-01-24", + "initiated": "2017-05-02", + "ministryContact": "KIEHN HELMER", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -60723,78 +71077,26 @@ ], "notationParticipants": [ { - "uuid": "9fcda53c-3705-4320-9b76-5cef91648814", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "uuid": "dcf886dd-e311-4a0c-b686-658b0737cde1", + "uuid": "cd21ec96-aba9-4926-9cd4-4fb09ab2aeee", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "uuid": "fb6f2b55-f1ab-4c4c-a659-e3ebce6035e3", - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - } - ], - "siteRegistry": true - }, - { - "uuid": "f4541f3a-62a6-48c6-8311-a3a64fb78b11", - "createdAt": "2017-12-03", - "completed": "2013-10-24", - "initiated": "2018-10-15", - "ministryContact": "HAMILL BRAYAN", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "uuid": "51950537-40fc-4d0c-9f56-877492fbe52d", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "uuid": "ca3c95e7-813d-4d23-9124-7eccfd3e0554", - "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "bd7c4ed6-2adc-4186-9d9d-993265268eb2", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "uuid": "b5c18bd9-59fd-477e-a642-ba5036dfc5d4", - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "uuid": "56ada901-a017-443b-88e6-e59ad7bf4af9", - "name": "SHELL CANADA PRODUCTS", + "uuid": "f76c12cb-b30d-4f31-bb13-301c652ceeea", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false } ], "siteRegistry": true }, { - "uuid": "7b085b5b-8131-4505-a177-c105cc605286", - "createdAt": "2023-03-04", - "completed": "2015-07-07", - "initiated": "2015-11-19", - "ministryContact": "O'KON ALFONSO", + "uuid": "25e58df0-04dc-4c86-b61f-e8ceb3c24f8a", + "createdAt": "2021-12-15", + "completed": "2016-04-08", + "initiated": "2023-04-30", + "ministryContact": "SIPES KEENAN", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -60803,39 +71105,33 @@ ], "notationParticipants": [ { - "uuid": "af27dc33-231a-4efb-bfd1-eb2f08035718", + "uuid": "b791d3bd-baf2-4928-9c22-e43d74055861", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "uuid": "125d955a-9309-4c94-b379-dde5f290b057", - "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false }, { - "uuid": "6196fb01-2cf4-4e49-9a1a-f5dbbb021733", + "uuid": "d71d2a24-260c-4b47-b4be-2295a85de021", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "917d8e39-4ed6-455a-9386-962f2a46d7ab", - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false + "uuid": "f86bd75a-fe78-4852-bc9d-d547adbb8cc9", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true } ], "participants": [ { - "uuid": "d7d3825e-1eec-4360-bf9d-e2f1558b6a7a", - "name": "IPSUM", - "endDate": "2022-12-04", - "startDate": "2016-05-19", + "uuid": "3bc195ac-c7d0-4d8c-ae91-1f3c36a3b5eb", + "name": "AMET, DOLOR SIT", + "endDate": "2017-10-09", + "startDate": "2014-07-01", "notes": "", "roles": [ "EMPLOYEE" @@ -60843,10 +71139,21 @@ "siteRegistry": true }, { - "uuid": "db824cab-26f5-46ce-a5a5-66da4f7e144d", - "name": "AMET, DOLOR SIT", - "endDate": "2022-02-24", - "startDate": "2019-01-29", + "uuid": "01367f1a-41f5-4c8f-8b46-fe9b5d53fd25", + "name": "IPSUM", + "endDate": "2014-02-24", + "startDate": "2020-06-05", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "uuid": "94728c22-7e4c-4f81-83d4-e0d6b284cb3f", + "name": "IPSUM", + "endDate": "2017-07-07", + "startDate": "2022-03-05", "notes": "", "roles": [ "EMPLOYEE" @@ -60854,85 +71161,131 @@ "siteRegistry": false } ], - "suspectLandUses": [ + "documents": [ { - "uuid": "08e9c47a-1a75-4ff7-9db4-1b5538b83216", + "uuid": "58a866a7-bbda-4b80-be90-35ea99b3b253", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-10-23 (described on Site Profile dated 2022-10-23)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "documentDate": "2019-01-02", + "receivedDate": "2021-05-12", + "uploadedDate": "2015-08-18", + "title": "Preliminary Site Investigation, Detailed Site Investigation and Remedial Plan for the Management Area adjacent to the Shell Site at 1503 West 41st Ave", + "participants": [ + { + "uuid": "5f4d092a-e7be-44eb-9416-ed2cd65dcd7d", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "c9fdc998-c645-47a3-bc75-e7a3db56d200", + "name": "AMET, DOLOR SIT", + "siteRegistry": false, + "role": "AUTHOR" + } + ] }, { - "uuid": "719694d9-3350-4db7-b425-e9e1261e85cf", + "uuid": "bfa8031f-46ed-43ee-93b4-caf5f8b409f2", + "siteRegistry": true, + "documentDate": "2016-03-04", + "receivedDate": "2022-09-30", + "uploadedDate": "2020-10-26", + "title": "Summary of Site Conditions, 1537 W 41st Avenue, Vancouver", + "participants": [ + { + "uuid": "1b757f86-c784-4e79-8d9d-b6970680c119", + "name": "AMET, DOLOR SIT", + "siteRegistry": true, + "role": "AUTHOR" + } + ] + } + ], + "suspectLandUses": [ + { + "uuid": "272b821e-2f59-4258-9ca6-e811465395d2", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-09-16 (described on Site Profile dated 2014-09-16)", + "notes": "INSERTED FOR SITE PROFILE DATED 2019-10-07 (described on Site Profile dated 2019-10-07)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "uuid": "5b5a7f26-c496-41ab-90a9-88f970830c90", + "uuid": "de769e09-a99e-4b27-87ae-649dc3d7b376", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-04-14 (described on Site Profile dated 2014-04-14)", + "notes": "INSERTED FOR SITE PROFILE DATED 2014-04-26 (described on Site Profile dated 2014-04-26)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], "parcelDescriptions": [ { - "uuid": "216474bb-e33a-42ba-b1b6-11d242bea984", + "uuid": "1c7dfac9-02ff-482f-b44e-8617f743a8e9", "siteRegistry": true, - "dateNoted": "2022-01-07", - "parcelID": "15250", - "crownLandUsePIN": "16826", - "crownLandFileNumber": "15477", - "landDescription": "LOT 5 OF LOT 5 BLOCK 4 DISTRICT LOT 1 PLAN 6015" + "dateNoted": "2018-06-30", + "parcelID": "19933", + "crownLandUsePIN": "17419", + "crownLandFileNumber": "20951", + "landDescription": "LOT 5 OF LOT 3 BLOCK 4 DISTRICT LOT 1 PLAN 5017" }, { - "uuid": "4621a64b-c304-4980-8715-00e9c7d98850", - "siteRegistry": false, - "dateNoted": "2019-04-28", - "parcelID": "17954", - "crownLandUsePIN": "17398", - "crownLandFileNumber": "16509", - "landDescription": "LOT 2 OF LOT 3 BLOCK 3 DISTRICT LOT 4 PLAN 3461" + "uuid": "548da89e-37bf-496e-bcfa-d2a2989e9cdf", + "siteRegistry": true, + "dateNoted": "2017-09-19", + "parcelID": "20570", + "crownLandUsePIN": "19136", + "crownLandFileNumber": "15865", + "landDescription": "LOT 3 OF LOT 1 BLOCK 1 DISTRICT LOT 2 PLAN 9415" }, { - "uuid": "1fdffd0b-0c67-4caa-acb6-cd99c703246e", + "uuid": "f0d85595-7759-48e4-8860-428a712beac8", "siteRegistry": true, - "dateNoted": "2017-03-19", - "parcelID": "18353", - "crownLandUsePIN": "16140", - "crownLandFileNumber": "17393", - "landDescription": "LOT 4 OF LOT 3 BLOCK 1 DISTRICT LOT 1 PLAN 9155" + "dateNoted": "2017-09-28", + "parcelID": "16247", + "crownLandUsePIN": "15926", + "crownLandFileNumber": "19213", + "landDescription": "LOT 1 OF LOT 5 BLOCK 1 DISTRICT LOT 1 PLAN 7995" }, { - "uuid": "f14b9992-186e-4ad0-b4e1-919ed25dc7cd", - "siteRegistry": false, - "dateNoted": "2022-08-15", - "parcelID": "18141", - "crownLandUsePIN": "18797", - "crownLandFileNumber": "15905", - "landDescription": "LOT 3 OF LOT 4 BLOCK 4 DISTRICT LOT 2 PLAN 9759" + "uuid": "11ab1aa1-830f-4f2d-a5aa-d28c61f70884", + "siteRegistry": true, + "dateNoted": "2022-06-12", + "parcelID": "19211", + "crownLandUsePIN": "16368", + "crownLandFileNumber": "18487", + "landDescription": "LOT 4 OF LOT 1 BLOCK 4 DISTRICT LOT 4 PLAN 3525" } ], "siteDisclosures": [ { - "uuid": "8083b977-56a6-44ab-a9db-66f42fee7389", + "uuid": "a656386c-98fb-44d9-853a-4e7612ea0807", "siteRegistry": false, - "dateReceived": "2023-07-02", - "dateCompleted": "2017-07-19", - "dateEntered": "2019-10-11", - "dateRegistrar": "2021-06-09", - "dateLocalAuthorityReceived": "2023-06-06", - "summary": "Ab vitae perspiciatis.", - "informationUsed": "Neque inventore facere placeat temporibus.\nQuisquam ut quam inventore dicta odit commodi odio ipsam.\nNam praesentium aliquid saepe.\nRem ullam nobis maiores tenetur.", - "pastOrPresentOrders": "Qui quam ad laboriosam error delectus autem repellendus quis eum.", + "dateReceived": "2017-01-10", + "dateCompleted": "2019-06-14", + "dateEntered": "2022-07-31", + "dateRegistrar": "2015-10-19", + "dateLocalAuthorityReceived": "2014-05-30", + "summary": "Quam in id saepe tempora voluptas dolorum voluptatum.\nIllum aut rem magni laboriosam dolore neque aperiam.", + "informationUsed": "Dolores adipisci tenetur magnam.\nItaque omnis id ipsa fugit exercitationem possimus delectus eum.\nDoloribus itaque a vero ipsum cumque non nostrum aut magnam.\nQuidem voluptate inventore minima aliquid tenetur temporibus.\nAut in est repellendus ab voluptatum cumque in dicta.", + "pastOrPresentOrders": "Nihil velit natus.", "commercialAndIndustrialPurposes": [ { - "uuid": "91e91144-3fe9-45f1-96fe-98c08fcbf9da", + "uuid": "3ad4ea2a-46c4-4907-a460-629ba33210fd", "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "uuid": "00058664-8a66-4ddb-8723-480e85aa4ad3", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "uuid": "c1b4755b-7ecd-4b1c-a139-d38d8d6694f8", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { - "uuid": "7f48b1d6-0a44-4dd1-8d06-3f5651a8ec2b", + "uuid": "7b2cf92c-5b4d-4b79-86fe-ce238cbde29d", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false @@ -60940,140 +71293,120 @@ ] }, { - "uuid": "09bf10e5-13d0-4848-83e9-d5a7bb1351f5", + "uuid": "1cde983d-3efa-4772-bde7-3a5f6358dcd4", "siteRegistry": true, - "dateReceived": "2015-11-27", - "dateCompleted": "2022-05-28", - "dateEntered": "2015-01-21", - "dateRegistrar": "2017-11-11", - "dateLocalAuthorityReceived": "2020-05-21", - "summary": "A ipsa provident magni laborum quia placeat unde.\nA autem assumenda.", - "informationUsed": "Aut voluptatem odit.\nQuibusdam neque quasi sint itaque.\nCommodi porro iusto architecto exercitationem nam.\nFugit error at tempora debitis at dolor.\nOdio totam ut nihil molestiae vitae.", - "pastOrPresentOrders": "At commodi mollitia sit itaque placeat commodi blanditiis.\nVeritatis cupiditate ut saepe pariatur natus minima dignissimos modi reprehenderit.\nAsperiores repudiandae iure ea blanditiis accusantium.", + "dateReceived": "2022-07-30", + "dateCompleted": "2015-01-25", + "dateEntered": "2019-05-31", + "dateRegistrar": "2016-03-02", + "dateLocalAuthorityReceived": "2020-09-30", + "summary": "Vero facere dolor laboriosam architecto cum accusamus.\nEaque quam voluptas unde debitis a et officiis.", + "informationUsed": "Repellendus sit delectus doloribus ullam mollitia eum nobis illo occaecati.\nMagni cum eligendi reiciendis aliquam.\nEum ut dolorem possimus sapiente optio sapiente.", + "pastOrPresentOrders": "Quia quis nemo.\nDucimus quam non sunt natus.", "commercialAndIndustrialPurposes": [ { - "uuid": "bc6502f6-b5a6-4f36-a1ef-a061c4ab44c6", - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false - }, - { - "uuid": "a7ad4d4c-3b19-45a6-a935-b837311fab80", + "uuid": "8948351d-47bf-4596-a2fd-a86d95c5ac5e", "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { - "uuid": "660dc6f5-5315-4b14-ab27-9ec9c9681b07", + "uuid": "b144ebe8-3af9-4415-aa6e-d472f1fd4f74", "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false } ] } ], "activityLog": [ { - "uuid": "44d7ab13-03a0-491d-90c7-35fa669e9148", - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "STEHR TRISTON", - "timestamp": "2023-03-12" - }, - { - "uuid": "891061ce-5fb3-4b2d-8283-8897ec2f2fae", - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "KUTCH MARJORY", - "timestamp": "2014-04-27" - }, - { - "uuid": "45a5af6a-1b9a-4ff6-9b2a-cfc73f92de90", + "uuid": "3a14ecf8-4dec-45d8-b145-d4aad58a4f2b", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "LITTLE-KEEBLER LEORA", - "timestamp": "2017-10-26" + "user": "TREUTEL TRISHA", + "timestamp": "2018-07-31" }, { - "uuid": "b19e562c-c0cd-42f3-8acd-83e8ca14fda8", + "uuid": "a0ca9aed-9cc7-44cc-8628-4a4f0a7e7208", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "BAILEY EDYTH", - "timestamp": "2016-11-14" + "user": "MONAHAN ADOLF", + "timestamp": "2019-04-16" }, { - "uuid": "9d918d72-1036-4111-8ef5-59344c8311da", + "uuid": "11da12fe-b716-471e-96e4-afc626d6ede1", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "GOLDNER DALLIN", - "timestamp": "2014-07-22" + "user": "JACOBS ALICIA", + "timestamp": "2021-06-15" }, { - "uuid": "010eb3d9-1142-4233-9da9-af4dff435bc4", + "uuid": "e5bd23a2-e59a-45ab-a383-845e889ad543", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "LEBSACK PEGGIE", - "timestamp": "2021-07-18" + "user": "NIENOW CAITLYN", + "timestamp": "2013-12-27" }, { - "uuid": "aeb024ab-2b91-4fe4-9666-e75163efe2f4", + "uuid": "e9455b1c-f187-458a-bec9-320b52790f7c", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "HINTZ KELSIE", - "timestamp": "2015-02-22" + "user": "GLOVER CHARLIE", + "timestamp": "2020-02-26" }, { - "uuid": "d57c5a24-f834-45b6-8ce6-55296301d7e9", - "siteRegistry": false, + "uuid": "4af046a4-9608-4720-b579-e13d1f56853b", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "LOCKMAN YESSENIA", - "timestamp": "2016-05-25" + "user": "KEEBLER ILENE", + "timestamp": "2023-10-12" }, { - "uuid": "e10e970c-af5f-46eb-b54f-4df06055e181", + "uuid": "264c766d-fc3c-416d-8b0e-d90ae93bbecc", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "RITCHIE REVA", - "timestamp": "2023-06-10" + "user": "VANDERVORT MOLLIE", + "timestamp": "2022-02-16" } ], "associatedSites": [ { - "uuid": "efb11276-8ec3-42b0-a2d2-13da84020016", - "dateNoted": "2013-12-03", + "uuid": "48cddc96-45b8-48ad-9f40-6ea7f2483aeb", + "dateNoted": "2022-04-21", "notes": "", - "parcelID": "18757", - "siteID": "16364", + "parcelID": "20070", + "siteID": "20718", "siteRegistry": true } ] }, { - "uuid": "557fcf4d-a016-430c-b876-62b5489a62a4", - "siteID": 20059, - "address": "797 Milan Plain", - "latitude": 56.5869, - "longitude": -123.3119, - "lastUpdated": "2022-08-13", - "city": "New Kristianstad", - "region": "Cariboo", - "victoriaFile": "26250-20/14163", + "uuid": "5036f325-2b51-42aa-ab4d-624f282a54a1", + "siteID": 19789, + "address": "26678 Hansen Trace", + "latitude": 55.4824, + "longitude": -129.7548, + "lastUpdated": "2020-11-05", + "city": "New Forest", + "region": " North Coast", + "victoriaFile": "26250-20/10368", "regionalFile": "N/A", "parcelIDs": [ - 2869538, - 7289333, - 743646, - 968115, - 9337558 + 5931175, + 1258278, + 3187737, + 6704146, + 5414118 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "35485a48-eb33-4b15-affd-1608df01c17d", - "createdAt": "2023-05-05", - "completed": "2016-07-14", - "initiated": "2014-02-28", - "ministryContact": "LUBOWITZ FRANK", + "uuid": "c8225a74-d0c8-4799-a5c8-6f0e880c2bef", + "createdAt": "2019-01-20", + "completed": "2020-01-26", + "initiated": "2019-12-26", + "ministryContact": "CUMMINGS ALIVIA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -61082,38 +71415,38 @@ ], "notationParticipants": [ { - "uuid": "75bbd5d1-d40d-439f-8a86-b9a2eebda62c", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "uuid": "f5bbd987-6730-4c54-a454-3151b8b8035f", + "uuid": "d87ee6bf-01b7-493a-8f8e-e706aecfca64", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "ea9a7aa1-ba42-4a5e-9291-508c0e73946a", + "uuid": "c629f3aa-1297-4275-abc9-4b7961c9edb8", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "3bc8f565-c8ae-4403-a910-345c2adc2eb4", + "uuid": "a75e7b8a-2b7e-449f-921b-e84299285d49", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true + }, + { + "uuid": "babe32ea-b34b-48c5-884d-f3e3c05758bc", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "5e46df12-f372-406c-b639-b379e3f90616", - "createdAt": "2021-03-25", - "completed": "2019-02-12", - "initiated": "2017-07-21", - "ministryContact": "LYNCH LEOPOLD", + "uuid": "a711d3a1-41ec-40fa-819f-babe5d123eea", + "createdAt": "2023-04-16", + "completed": "2022-12-17", + "initiated": "2018-02-17", + "ministryContact": "TURNER CARLO", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -61122,180 +71455,351 @@ ], "notationParticipants": [ { - "uuid": "39269e85-d509-4077-bc84-7266889b822b", + "uuid": "22939ac6-fc9f-4f74-a903-44784fa54104", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "7a36b76f-be4f-41f5-a126-39999d2bc1e7", + "uuid": "9556ea66-4912-49ba-8715-de1cf2ed5501", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "a13505ea-8136-4081-9d0b-b3d9b87eecee", + "uuid": "f5842dcf-62a3-4373-a2e4-f620071c5887", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "f81bb160-882f-44eb-88c0-592ce1fc714e", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false + "uuid": "77574298-d120-427d-839f-fc26ec1f9b44", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "uuid": "3d22013b-7fa6-4be6-a92d-dbf99dea1769", + "createdAt": "2015-03-02", + "completed": "2017-03-26", + "initiated": "2018-11-23", + "ministryContact": "ROBERTS KARI", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "uuid": "bb5a03ce-3949-44c9-a036-50015720e813", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "uuid": "420cab4b-326a-48f4-8fe9-2777c3918065", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "79a8bf61-c81f-4c4a-9f30-21dbbe878f62", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + } + ], + "participants": [ + { + "uuid": "b1a4081d-6d71-4044-8494-eabc1a451dc7", + "name": "IPSUM", + "endDate": "2015-10-28", + "startDate": "2022-09-27", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "uuid": "c179b57d-b94d-4ada-b160-2182826b4063", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2019-06-30", + "startDate": "2020-03-28", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "uuid": "3786d48b-9890-4e5a-bb2f-b839d454addd", + "name": "AMET, DOLOR SIT", + "endDate": "2018-02-20", + "startDate": "2014-11-09", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + } + ], + "documents": [ + { + "uuid": "f87e0b5c-9e0d-4b7a-99d6-d35ebc7d68d1", + "siteRegistry": true, + "documentDate": "2023-10-09", + "receivedDate": "2023-02-01", + "uploadedDate": "2022-02-22", + "title": "Summary of Site Conditions, 1537 W 41st Avenue, Vancouver", + "participants": [ + { + "uuid": "c7eb2bed-9182-435e-ab7b-651ecf57d2cd", + "name": "AMET, DOLOR SIT", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "1d926b8c-916c-4aee-b90f-7f90f9cf960f", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": false, + "role": "AUTHOR" + } + ] + }, + { + "uuid": "f6ca1827-31ee-420c-9c18-5f0302fa4f92", + "siteRegistry": false, + "documentDate": "2022-03-11", + "receivedDate": "2014-10-04", + "uploadedDate": "2023-07-24", + "title": "Preliminary Site Investigation, Detailed Site Investigation and Remedial Plan for the Management Area adjacent to the Shell Site at 1503 West 41st Ave", + "participants": [ + { + "uuid": "6b47207a-0780-4406-befe-cceef2d62c5c", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "627959ab-4aa8-4814-9152-dd4fccebf87d", + "name": "IPSUM", + "siteRegistry": false, + "role": "AUTHOR" + } + ] + }, + { + "uuid": "e53972fa-cf56-42f2-8bc7-888f0a305269", + "siteRegistry": false, + "documentDate": "2019-12-07", + "receivedDate": "2015-08-09", + "uploadedDate": "2016-03-25", + "title": "Summary of Site Conditions, 1537 W 41st Avenue, Vancouver", + "participants": [ + { + "uuid": "fbd47ff7-a80a-4f1b-96cc-d424daad18c9", + "name": "IPSUM", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "1174b0fb-8bcc-473c-9c50-d2a1c0dbfffc", + "name": "AMET, DOLOR SIT", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "681942fc-63c6-4c64-9c9a-089d5de42df6", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": false, + "role": "AUTHOR" + } + ] + }, + { + "uuid": "e369e305-7616-4a67-bb2f-d33475e6e3a0", + "siteRegistry": false, + "documentDate": "2021-06-10", + "receivedDate": "2018-03-30", + "uploadedDate": "2019-11-14", + "title": "Summary of Site Conditions, 1537 W 41st Avenue, Vancouver", + "participants": [ + { + "uuid": "4ec781fd-0714-4ee7-abef-d99712acf05e", + "name": "IPSUM", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "d733bd62-a130-465f-a53a-ad0d09a508b0", + "name": "AMET, DOLOR SIT", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "ad423bf8-f72a-4adf-9cfa-b1d2f439986a", + "name": "AMET, DOLOR SIT", + "siteRegistry": false, + "role": "AUTHOR" + } + ] + }, + { + "uuid": "463786be-31ad-417c-b48f-be340a9858d1", + "siteRegistry": false, + "documentDate": "2019-08-31", + "receivedDate": "2017-09-30", + "uploadedDate": "2019-06-26", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "09e6a610-d11e-4f14-b12a-0a38cfbeab6a", + "name": "AMET, DOLOR SIT", + "siteRegistry": false, + "role": "AUTHOR" }, { - "uuid": "5828d21e-3794-4fe7-af36-05db7ccbc018", + "uuid": "32a0fa40-c80f-477f-ae93-8a25f3f74856", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": true, + "role": "AUTHOR" } - ], - "siteRegistry": true + ] } ], - "participants": [ + "suspectLandUses": [ { - "uuid": "b16a9e0c-b0cd-4906-8a97-295675bd57bd", - "name": "SHELL CANADA PRODUCTS", - "endDate": "2017-08-05", - "startDate": "2017-07-28", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": false + "uuid": "657ed2e8-3d24-4910-a1d5-f81aa0a09b53", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2013-11-18 (described on Site Profile dated 2013-11-18)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "uuid": "7001bfb7-e191-4190-ad7d-b85e10c1276a", - "name": "AMET, DOLOR SIT", - "endDate": "2020-06-12", - "startDate": "2015-02-18", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": false + "uuid": "a22fb0d5-4d24-464d-801f-75c6d38933da", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2017-12-13 (described on Site Profile dated 2017-12-13)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "uuid": "765d67eb-ddde-4d12-93db-0bab9a80ceef", - "name": "IPSUM", - "endDate": "2021-12-18", - "startDate": "2023-02-10", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": false + "uuid": "762d61f6-850f-4315-96b3-cd8760351361", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2021-02-15 (described on Site Profile dated 2021-02-15)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "uuid": "8cc6eb22-4d21-4d7e-9bf3-d267aad2c35d", - "name": "IPSUM", - "endDate": "2017-03-09", - "startDate": "2018-02-07", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": false - } - ], - "suspectLandUses": [ - { - "uuid": "97fbd3b0-fb4e-4f86-9046-3584d9861028", + "uuid": "7aa60b15-44eb-44e1-a774-186fa9672b79", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2020-08-03 (described on Site Profile dated 2020-08-03)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "notes": "INSERTED FOR SITE PROFILE DATED 2016-03-24 (described on Site Profile dated 2016-03-24)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "uuid": "49fd60d7-f67a-4878-b446-ddd38667b5b6", - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-05-24 (described on Site Profile dated 2022-05-24)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "uuid": "9ab09b98-9d93-4b79-a04b-14841838b02b", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2014-01-14 (described on Site Profile dated 2014-01-14)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], "parcelDescriptions": [ { - "uuid": "d1e5b4df-4636-4f32-ae73-da651c1e465a", + "uuid": "eee856fc-ea50-4522-ad3b-eaa78c8d31be", "siteRegistry": false, - "dateNoted": "2020-12-01", - "parcelID": "15416", - "crownLandUsePIN": "15507", - "crownLandFileNumber": "16471", - "landDescription": "LOT 5 OF LOT 1 BLOCK 1 DISTRICT LOT 5 PLAN 7395" + "dateNoted": "2023-07-21", + "parcelID": "17275", + "crownLandUsePIN": "16217", + "crownLandFileNumber": "16921", + "landDescription": "LOT 4 OF LOT 2 BLOCK 3 DISTRICT LOT 2 PLAN 9782" }, { - "uuid": "ef9c4661-8b37-4ba3-9994-3e2b9f9b5d18", + "uuid": "8812562c-d4f9-4b63-bd51-6986a53fd95a", "siteRegistry": false, - "dateNoted": "2014-02-17", - "parcelID": "19036", - "crownLandUsePIN": "19669", - "crownLandFileNumber": "15663", - "landDescription": "LOT 2 OF LOT 5 BLOCK 2 DISTRICT LOT 2 PLAN 6883" + "dateNoted": "2020-04-09", + "parcelID": "19890", + "crownLandUsePIN": "15593", + "crownLandFileNumber": "16566", + "landDescription": "LOT 2 OF LOT 2 BLOCK 1 DISTRICT LOT 3 PLAN 8330" + }, + { + "uuid": "85eabb55-88a8-4dd8-bc53-58a76af6ab10", + "siteRegistry": true, + "dateNoted": "2020-01-16", + "parcelID": "16650", + "crownLandUsePIN": "17711", + "crownLandFileNumber": "16744", + "landDescription": "LOT 3 OF LOT 3 BLOCK 5 DISTRICT LOT 1 PLAN 4907" + }, + { + "uuid": "e973ad72-f020-4645-b895-3cbf76432057", + "siteRegistry": false, + "dateNoted": "2022-12-06", + "parcelID": "18956", + "crownLandUsePIN": "15552", + "crownLandFileNumber": "17293", + "landDescription": "LOT 1 OF LOT 2 BLOCK 4 DISTRICT LOT 4 PLAN 6476" } ], "siteDisclosures": [ { - "uuid": "ff292cda-dce0-47ce-932c-72f134a68fa4", - "siteRegistry": true, - "dateReceived": "2016-08-02", - "dateCompleted": "2017-04-17", - "dateEntered": "2016-05-09", - "dateRegistrar": "2017-12-31", - "dateLocalAuthorityReceived": "2023-01-31", - "summary": "Labore labore necessitatibus architecto dolorem veniam laudantium modi necessitatibus distinctio.\nQuod excepturi eveniet commodi natus perspiciatis a quos.\nIpsa fugit dignissimos autem non beatae nulla quasi quo ad.", - "informationUsed": "Eos quo quia voluptates qui odio perferendis perferendis.\nDolorum dolore dolorem tempora natus inventore ducimus.\nSuscipit error consectetur repudiandae animi iure voluptate officia non.\nBlanditiis nulla voluptatum excepturi.\nSaepe distinctio earum natus saepe laboriosam.", - "pastOrPresentOrders": "Mollitia dolorum quo illum velit quam odio quisquam rem.\nSed rerum molestias consequuntur quam voluptatibus corrupti similique.\nExpedita quaerat provident ut animi.", + "uuid": "b4e24472-8b9c-4a1a-be03-05f089f624c0", + "siteRegistry": false, + "dateReceived": "2016-10-11", + "dateCompleted": "2017-08-07", + "dateEntered": "2023-06-23", + "dateRegistrar": "2023-04-07", + "dateLocalAuthorityReceived": "2014-05-07", + "summary": "Vel necessitatibus doloremque quo explicabo quidem minima sit quia ea.\nLibero sit asperiores omnis deserunt.\nAliquam amet blanditiis harum amet.", + "informationUsed": "Sapiente dicta qui vero fugit placeat amet natus.\nProvident tempora possimus magnam quia voluptatum aut occaecati vel.\nPerferendis illo accusamus sapiente sequi.\nNatus illum aut ex qui.", + "pastOrPresentOrders": "Blanditiis minus error.", "commercialAndIndustrialPurposes": [ { - "uuid": "023b5ade-820a-481c-918b-1e9359f442d0", - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false - }, - { - "uuid": "675d9a78-917a-4b6a-b09a-68cfe4cc51b3", + "uuid": "e0b0fa2c-0f21-41a5-bda0-9c2b8722bef4", "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { - "uuid": "d6087d39-213a-4401-9ddd-7eb75d4cd6fe", - "scheduleReference": "F2*", + "uuid": "8fb58f16-73e7-4823-880e-e31eaf466e64", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false } ] }, { - "uuid": "02a47191-0194-4afe-84e3-04f613066ef5", - "siteRegistry": false, - "dateReceived": "2017-01-17", - "dateCompleted": "2016-11-09", - "dateEntered": "2018-04-23", - "dateRegistrar": "2020-02-14", - "dateLocalAuthorityReceived": "2018-12-22", - "summary": "Vero repellat excepturi.", - "informationUsed": "Occaecati incidunt ut error eaque eos eius facere nobis.\nMinima earum architecto consectetur voluptas nesciunt dolorem officiis.\nAccusantium doloribus odit exercitationem iure delectus labore.", - "pastOrPresentOrders": "Occaecati sunt officiis nam accusantium et voluptatem.\nOccaecati commodi quos numquam.", + "uuid": "a8be7c8b-5009-481f-87ed-74cac3c3eb28", + "siteRegistry": true, + "dateReceived": "2021-03-27", + "dateCompleted": "2016-05-30", + "dateEntered": "2015-01-08", + "dateRegistrar": "2023-08-20", + "dateLocalAuthorityReceived": "2015-05-19", + "summary": "Architecto ratione dolorum dolore ab magnam enim eveniet laudantium.\nMollitia sit voluptatem eveniet labore beatae blanditiis assumenda.", + "informationUsed": "Maxime explicabo itaque perferendis maiores consequuntur cum voluptatibus in.\nQuos doloremque est ipsam doloribus earum voluptas perspiciatis praesentium odio.\nSoluta consectetur odit praesentium alias est.\nAut temporibus doloribus magni asperiores illum.\nPerferendis molestiae vero animi dolore ab est facere.", + "pastOrPresentOrders": "Voluptas magnam incidunt magnam rem corrupti tempora.\nDolorum quaerat excepturi tempore.\nEa at vel.", "commercialAndIndustrialPurposes": [ { - "uuid": "d7b7b55a-ca4b-4fda-bcbf-f678950123a9", + "uuid": "124c609b-5d9a-4ff1-805d-dcd88b4bf42d", "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false }, { - "uuid": "32e077f6-346c-4c00-beba-4552e9d06c3d", - "scheduleReference": "F1*", + "uuid": "8a27a0dc-798c-4ba6-abe8-fb720184704f", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { - "uuid": "8cb171ab-2611-4594-aa42-f1056b0d1890", - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "uuid": "b12e076d-e75e-4b2b-ac22-4c729a169b2e", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true } ] @@ -61303,122 +71807,78 @@ ], "activityLog": [ { - "uuid": "8f75f96d-4f22-4d75-bd29-e335d84a906f", - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "RENNER RENEE", - "timestamp": "2016-04-05" - }, - { - "uuid": "61157968-b2fd-4a94-ac84-6c9aff2c3aa6", - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "BERGE DEDRICK", - "timestamp": "2020-05-08" - }, - { - "uuid": "a4f37842-a914-4b37-9838-9dcb3d1577e0", + "uuid": "53319e3a-ffa5-46f8-8624-f031d0d296bb", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "MOSCISKI MITCHEL", - "timestamp": "2023-01-14" - }, - { - "uuid": "2346f9df-a41f-4de2-b2b5-e17cf5fc2aea", - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "ULLRICH ROSALIA", - "timestamp": "2014-05-31" + "user": "FEENEY LEWIS", + "timestamp": "2023-08-16" }, { - "uuid": "69bd0f9a-2deb-4ca6-a45e-ed2e60ab4e30", + "uuid": "e0db4b4a-e32c-490e-8393-5149fd0db991", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "HARRIS JOAQUIN", - "timestamp": "2018-08-21" + "user": "CUMMINGS-CUMMINGS CLINT", + "timestamp": "2015-05-22" }, { - "uuid": "a3b90f55-b7e5-426e-aa5c-fc184810b53e", + "uuid": "6fa9aec2-35b0-4b28-853d-fd2c71710f3a", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "ROOB HIRAM", - "timestamp": "2017-06-26" - }, - { - "uuid": "642a2b19-f39d-4220-94c9-66ea627713ed", - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "FRANECKI TRYSTAN", - "timestamp": "2021-08-20" + "user": "CHRISTIANSEN BURDETTE", + "timestamp": "2022-06-01" }, { - "uuid": "1aacdaac-4616-4c08-a77e-a1ce83b213d9", + "uuid": "b5cb4dca-d72c-4ce2-91d7-81f6e43f3389", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "STROSIN ZOE", - "timestamp": "2019-05-23" + "user": "SCHAMBERGER REANNA", + "timestamp": "2018-03-10" }, { - "uuid": "89095d27-4005-4c42-af66-4316e96fd3fe", + "uuid": "3583fb63-573e-4752-ab8f-a7ded57ca754", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "FAHEY LILLIE", - "timestamp": "2014-09-05" + "user": "HEATHCOTE CHARLES", + "timestamp": "2020-07-12" } ], "associatedSites": [ { - "uuid": "248136b8-6091-40ae-8195-3611838306bd", - "dateNoted": "2020-09-29", - "notes": "", - "parcelID": "19787", - "siteID": "18410", - "siteRegistry": true - }, - { - "uuid": "ddf7a5bf-7d68-4f38-ad25-d483443bf95f", - "dateNoted": "2015-07-12", - "notes": "", - "parcelID": "20421", - "siteID": "20626", - "siteRegistry": true - }, - { - "uuid": "d86b812e-66db-4ced-a014-7ae33c1e8d81", - "dateNoted": "2014-06-23", + "uuid": "fe102801-4437-4688-b38c-d70800acf3da", + "dateNoted": "2022-02-01", "notes": "", - "parcelID": "19512", - "siteID": "15914", - "siteRegistry": true + "parcelID": "20554", + "siteID": "17582", + "siteRegistry": false } ] }, { - "uuid": "eb33c80c-bf3a-4f8f-b0f7-02d21e9d6ad5", - "siteID": 17390, - "address": "912 Sporer Field", - "latitude": 57.2517, - "longitude": -127.1701, - "lastUpdated": "2016-02-18", - "city": "Antoninaview", - "region": "Mainland/Southwest", - "victoriaFile": "26250-20/17106", + "uuid": "ad472252-70c1-4500-b51a-b26dbd272d58", + "siteID": 18063, + "address": "6139 Alba Loop", + "latitude": 56.6268, + "longitude": -129.626, + "lastUpdated": "2023-08-07", + "city": "Port Camillacester", + "region": "Cariboo", + "victoriaFile": "26250-20/15375", "regionalFile": "N/A", "parcelIDs": [ - 378439, - 688398, - 125930, - 9727075, - 4089367 + 9703986, + 2959474, + 3077479, + 4323275, + 3965603 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "335e6902-1fe2-4bed-b360-c817c8f90b0e", - "createdAt": "2021-03-10", - "completed": "2022-07-02", - "initiated": "2014-01-23", - "ministryContact": "WILLMS QUINTEN", + "uuid": "4c811e34-2ef4-46cf-b2b3-51575eb6b7d2", + "createdAt": "2017-11-24", + "completed": "2015-09-28", + "initiated": "2022-01-02", + "ministryContact": "RUNTE DION", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -61427,26 +71887,38 @@ ], "notationParticipants": [ { - "uuid": "1f2b7f54-c523-4a84-9ae3-d15a8cf09484", + "uuid": "f88c6778-453c-40d1-a4c9-a02bed65b52e", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false }, { - "uuid": "f0016415-ed27-49dc-8bf7-ac34f04e921c", + "uuid": "62eedd21-3b8d-4b82-8b90-b6b70058d7d7", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "3c146f82-4a4e-4f3a-9dae-52f48363b086", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false + }, + { + "uuid": "2920d7fb-4c6a-48d2-ad18-e7fd2971dcc5", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "fa9dbaed-475b-468d-b595-31ea294dd25d", - "createdAt": "2016-08-08", - "completed": "2020-08-02", - "initiated": "2019-04-24", - "ministryContact": "HARRIS BRYANA", + "uuid": "33fb8742-45f1-496c-87e1-099c8cfd978d", + "createdAt": "2015-09-07", + "completed": "2022-10-05", + "initiated": "2021-02-03", + "ministryContact": "KEEBLER ELOISA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -61455,21 +71927,15 @@ ], "notationParticipants": [ { - "uuid": "4e527673-a11a-45aa-90f5-ba0caa4c334b", - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "uuid": "f03e6dfe-6f65-4895-8822-0f654650b496", + "uuid": "d1760984-c044-428b-a9a2-a6378f775090", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true }, { - "uuid": "05c1c91e-f4d2-4c1f-81d4-b4fbff9fa40b", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "uuid": "a92561ef-6a27-4d16-bade-30b66266d868", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": false } ], @@ -61478,21 +71944,32 @@ ], "participants": [ { - "uuid": "ce8b5a39-5ac9-4337-9374-ee33349c06b3", + "uuid": "e26063d5-d460-4d5e-ad9e-c5d742e4b5d0", "name": "AMET, DOLOR SIT", - "endDate": "2021-06-18", - "startDate": "2022-08-19", + "endDate": "2014-01-12", + "startDate": "2021-12-29", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": false }, { - "uuid": "e990f748-d965-4967-98a6-72804056f092", - "name": "AMET, DOLOR SIT", - "endDate": "2019-05-28", - "startDate": "2015-11-03", + "uuid": "fb5d7304-e5f3-4723-9039-96e1694e51ce", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2020-05-22", + "startDate": "2016-09-09", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "uuid": "1461a26f-5156-4056-bdec-2a44e4e7c6fc", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2018-08-11", + "startDate": "2016-03-11", "notes": "", "roles": [ "EMPLOYEE" @@ -61500,10 +71977,10 @@ "siteRegistry": true }, { - "uuid": "3984beeb-142e-49cc-b8fe-4df40ef8e8b4", + "uuid": "35434cac-2576-404f-b2f4-9e67ecda437e", "name": "SHELL CANADA PRODUCTS", - "endDate": "2016-05-30", - "startDate": "2016-07-05", + "endDate": "2016-01-03", + "startDate": "2022-06-03", "notes": "", "roles": [ "EMPLOYEE" @@ -61511,239 +71988,284 @@ "siteRegistry": true }, { - "uuid": "e7eaf813-00d3-48a0-88ff-462a4cd93bd5", - "name": "IPSUM", - "endDate": "2023-08-12", - "startDate": "2015-05-07", + "uuid": "6cca4666-872a-479b-9215-0b682076aa04", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2021-03-06", + "startDate": "2019-03-03", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": true } ], - "suspectLandUses": [ + "documents": [ { - "uuid": "60239979-a418-46ed-9778-ca35cc89fca8", + "uuid": "0c1d272c-fa27-45a7-8abe-62024888a39f", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2013-11-16 (described on Site Profile dated 2013-11-16)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" - }, + "documentDate": "2015-05-29", + "receivedDate": "2017-06-01", + "uploadedDate": "2014-06-22", + "title": "Preliminary Site Investigation, Detailed Site Investigation and Remedial Plan for the Management Area adjacent to the Shell Site at 1503 West 41st Ave", + "participants": [ + { + "uuid": "b351f83c-1a9d-4f20-93a3-732f9abe915d", + "name": "AMET, DOLOR SIT", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "21d7c691-c7ec-4614-8050-88c33e0927bb", + "name": "AMET, DOLOR SIT", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "e0f99053-3442-4809-8c3c-5f590cb77cd4", + "name": "AMET, DOLOR SIT", + "siteRegistry": false, + "role": "AUTHOR" + } + ] + } + ], + "suspectLandUses": [ { - "uuid": "66102849-81c8-4263-bbb5-b12dc29d7cae", + "uuid": "18b3227e-d176-411c-8d33-f3ce6c0f9331", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-09-13 (described on Site Profile dated 2015-09-13)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "notes": "INSERTED FOR SITE PROFILE DATED 2014-03-30 (described on Site Profile dated 2014-03-30)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "uuid": "d89f55f1-c1b2-4f4b-97af-e655304ee68a", + "uuid": "5bc262a9-6762-436b-bbbc-c1c7a9748080", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2023-01-11 (described on Site Profile dated 2023-01-11)", + "notes": "INSERTED FOR SITE PROFILE DATED 2014-06-12 (described on Site Profile dated 2014-06-12)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "uuid": "29430466-8625-4c7a-a0d4-e8dc134a765c", + "uuid": "48838dfb-b75e-40af-93af-c9573222a8d1", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2015-12-26 (described on Site Profile dated 2015-12-26)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "uuid": "5f43c06c-8062-416e-a00c-35b65268ca87", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-06-07 (described on Site Profile dated 2017-06-07)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "notes": "INSERTED FOR SITE PROFILE DATED 2015-05-18 (described on Site Profile dated 2015-05-18)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "uuid": "1c0ca5f5-5f31-4c4c-99d2-aac751b50a9f", + "uuid": "f9aaad9c-60a1-4dcc-8dba-d10474bcf836", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-05-04 (described on Site Profile dated 2022-05-04)", + "notes": "INSERTED FOR SITE PROFILE DATED 2020-12-20 (described on Site Profile dated 2020-12-20)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], "parcelDescriptions": [ { - "uuid": "efeba95e-5ed2-4b1a-842c-c55a45c4923f", - "siteRegistry": false, - "dateNoted": "2022-06-25", - "parcelID": "20644", - "crownLandUsePIN": "20435", - "crownLandFileNumber": "16816", - "landDescription": "LOT 1 OF LOT 2 BLOCK 5 DISTRICT LOT 1 PLAN 3726" + "uuid": "a9e955ce-bbcf-40c6-858f-6994decd5bc9", + "siteRegistry": true, + "dateNoted": "2021-05-20", + "parcelID": "15710", + "crownLandUsePIN": "17813", + "crownLandFileNumber": "19815", + "landDescription": "LOT 1 OF LOT 5 BLOCK 4 DISTRICT LOT 3 PLAN 8821" }, { - "uuid": "39407635-1b33-4681-bc4e-732d91e8e1a9", - "siteRegistry": false, - "dateNoted": "2015-10-02", - "parcelID": "18225", - "crownLandUsePIN": "17264", - "crownLandFileNumber": "18324", - "landDescription": "LOT 2 OF LOT 3 BLOCK 1 DISTRICT LOT 3 PLAN 3521" + "uuid": "86ee9158-c2d8-40fe-8581-53666b15ad9d", + "siteRegistry": true, + "dateNoted": "2014-11-05", + "parcelID": "18775", + "crownLandUsePIN": "20577", + "crownLandFileNumber": "16896", + "landDescription": "LOT 2 OF LOT 3 BLOCK 5 DISTRICT LOT 1 PLAN 8559" }, { - "uuid": "f5d5474b-7f23-4202-89bd-35e48fe35326", + "uuid": "85ebd57e-41bb-4a76-a9af-0ba58fa7e333", "siteRegistry": true, - "dateNoted": "2022-07-18", - "parcelID": "18616", - "crownLandUsePIN": "15200", - "crownLandFileNumber": "19423", - "landDescription": "LOT 4 OF LOT 2 BLOCK 3 DISTRICT LOT 5 PLAN 8385" + "dateNoted": "2019-05-30", + "parcelID": "19254", + "crownLandUsePIN": "15496", + "crownLandFileNumber": "20271", + "landDescription": "LOT 3 OF LOT 5 BLOCK 4 DISTRICT LOT 4 PLAN 3089" + }, + { + "uuid": "841973d1-b13d-4712-bafa-a1cb52d09b2b", + "siteRegistry": false, + "dateNoted": "2019-03-07", + "parcelID": "18990", + "crownLandUsePIN": "20931", + "crownLandFileNumber": "16642", + "landDescription": "LOT 1 OF LOT 3 BLOCK 5 DISTRICT LOT 5 PLAN 4217" + }, + { + "uuid": "9a3af073-810c-4669-8685-b4407fd8836c", + "siteRegistry": false, + "dateNoted": "2017-10-29", + "parcelID": "15480", + "crownLandUsePIN": "19485", + "crownLandFileNumber": "17417", + "landDescription": "LOT 3 OF LOT 3 BLOCK 3 DISTRICT LOT 2 PLAN 5733" } ], "siteDisclosures": [ { - "uuid": "39420503-bb55-43e5-8a3a-22ed013537c5", + "uuid": "53c1ae8a-100b-448a-9d27-8738a94642cf", "siteRegistry": false, - "dateReceived": "2016-09-29", - "dateCompleted": "2022-09-13", - "dateEntered": "2018-01-26", - "dateRegistrar": "2021-05-10", - "dateLocalAuthorityReceived": "2020-01-10", - "summary": "Enim ducimus praesentium nobis itaque neque dignissimos dicta officia.\nNecessitatibus atque quia doloribus.", - "informationUsed": "Nesciunt ipsa delectus consectetur dolore.\nRecusandae consequatur accusantium voluptates mollitia reprehenderit officia.\nRerum hic quasi numquam explicabo dolore iusto accusantium.", - "pastOrPresentOrders": "Laborum in quisquam maxime odio vitae laboriosam asperiores repudiandae.\nConsequuntur dolores magni aperiam dolorem soluta libero odit.\nAdipisci omnis perferendis libero deserunt maiores.", + "dateReceived": "2021-09-01", + "dateCompleted": "2017-04-05", + "dateEntered": "2016-04-10", + "dateRegistrar": "2021-07-24", + "dateLocalAuthorityReceived": "2014-11-28", + "summary": "Officia pariatur commodi ad dignissimos natus corrupti ullam facere.\nVoluptate iste praesentium.\nProvident beatae laudantium iusto.", + "informationUsed": "Animi incidunt at ex.\nDoloribus nostrum sequi minus.\nVoluptatum molestias possimus modi incidunt modi id culpa.", + "pastOrPresentOrders": "Excepturi esse eaque dolor.\nQuis vero explicabo non id ducimus.", "commercialAndIndustrialPurposes": [ { - "uuid": "ec1fac79-f460-41f5-bdb7-0bbced33deaf", + "uuid": "23cfa976-6be1-4966-b010-d8537d97d815", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { - "uuid": "53dc24f2-3271-4d61-8834-59093b513e07", - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true - }, - { - "uuid": "b115b905-1c62-4fe3-a3cc-c231fc6118e2", - "scheduleReference": "F2*", + "uuid": "fd25d31c-c2ce-4291-bff9-1f772d355f82", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false - }, - { - "uuid": "039e2490-ffd3-4d26-bdf9-2eb3f3c5eeae", - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true } ] }, { - "uuid": "7e244952-c6d8-4d93-aa5d-050ddda89723", - "siteRegistry": true, - "dateReceived": "2016-10-29", - "dateCompleted": "2017-06-18", - "dateEntered": "2023-01-13", - "dateRegistrar": "2015-07-08", - "dateLocalAuthorityReceived": "2021-12-13", - "summary": "Officiis at tempora.", - "informationUsed": "Optio fugiat ut magnam porro facere molestias tempora corrupti molestiae.\nVelit commodi dolores sapiente explicabo quasi a necessitatibus dolore inventore.\nMolestias pariatur incidunt quos odit nulla et quaerat ea maxime.\nEnim temporibus sapiente consequatur maxime tempora libero adipisci esse.", - "pastOrPresentOrders": "Porro odit corporis esse ut.\nTemporibus sed rerum.", + "uuid": "b9137ae7-49f5-4d31-b710-da350b8d7692", + "siteRegistry": false, + "dateReceived": "2015-08-17", + "dateCompleted": "2020-07-24", + "dateEntered": "2016-08-09", + "dateRegistrar": "2015-12-22", + "dateLocalAuthorityReceived": "2019-02-20", + "summary": "Temporibus non velit illum molestiae rerum unde.", + "informationUsed": "Pariatur voluptate nisi nihil ratione cum beatae.\nDolore nisi atque dicta inventore consectetur delectus corporis asperiores aliquid.\nConsequatur distinctio iusto nemo explicabo.\nOptio rerum incidunt tempora facere itaque consequatur repellat.\nDeleniti esse quasi quam magnam ut iusto.", + "pastOrPresentOrders": "Aperiam voluptate commodi.\nNeque eligendi quasi fugiat nobis aperiam tenetur commodi ratione.\nMollitia aut molestiae possimus totam ab animi.", "commercialAndIndustrialPurposes": [ { - "uuid": "1da0f0ce-da72-4a01-a923-a4e68d3638e9", + "uuid": "3b63e1bc-a056-42e4-8f19-7dd59e63f14e", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { - "uuid": "2587682e-2979-429e-a907-57b19922e6f7", - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false - }, - { - "uuid": "774c6ae1-cd8d-4035-a4f6-0d6ff97ed3be", - "scheduleReference": "F2*", + "uuid": "dd19b765-7aa1-4359-92a4-b9cb042c4349", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true + "siteRegistry": false } ] } ], "activityLog": [ { - "uuid": "f93f3c85-d8e1-4116-8286-98c1305830c0", - "siteRegistry": false, + "uuid": "e1e864be-20be-49ff-9428-b60776081ae8", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "DICKINSON ADRIANA", - "timestamp": "2019-08-07" + "user": "MOEN ZOE", + "timestamp": "2016-10-20" }, { - "uuid": "c2844ee4-46ef-4fb5-bfd2-3297ae246eef", + "uuid": "d53231e8-0f9b-44a7-bb58-b4a459d0a782", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "HANSEN ART", - "timestamp": "2023-09-17" + "user": "PROHASKA HAILIE", + "timestamp": "2017-03-02" + }, + { + "uuid": "375ec63b-b291-4d03-9d46-e4b3dce5ba2e", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "HERMISTON JOANNE", + "timestamp": "2021-02-02" }, { - "uuid": "d40be1e6-05a4-4c0e-ad7a-e6ff13270359", + "uuid": "2e39bdfa-dd5b-4df1-a572-8f416cd8ca09", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "WIEGAND ZORA", - "timestamp": "2022-07-10" + "user": "KONOPELSKI JEFFEREY", + "timestamp": "2019-07-21" }, { - "uuid": "58c03790-6f79-47b3-83f4-2c9e4e4bd331", + "uuid": "57620b91-9898-4ee6-a70e-8cfd6cef428d", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "DAVIS VERONA", - "timestamp": "2023-06-20" + "user": "HILPERT-CRIST CORINE", + "timestamp": "2023-02-10" }, { - "uuid": "29618c83-5305-4615-9462-d11d4ea900b1", - "siteRegistry": false, + "uuid": "0278e4a4-497c-4518-ba10-b4d5bc0f43cf", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "KING IKE", - "timestamp": "2019-02-14" + "user": "FERRY DELPHINE", + "timestamp": "2023-05-21" }, { - "uuid": "94334e91-6294-4005-8b60-9904060394e1", - "siteRegistry": true, + "uuid": "030b922e-130e-4924-9ff4-6d0aff2beaa5", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "DOYLE LAYLA", - "timestamp": "2022-11-27" + "user": "FAHEY KIANA", + "timestamp": "2023-08-11" } ], "associatedSites": [ { - "uuid": "e832d72b-3486-477b-872e-6c5d906f907f", - "dateNoted": "2019-12-07", + "uuid": "c798b507-245f-4159-8d59-e231ca09b93b", + "dateNoted": "2021-09-25", + "notes": "", + "parcelID": "20041", + "siteID": "17686", + "siteRegistry": true + }, + { + "uuid": "24b032fe-e2ac-48f1-bdb2-e22e478b7ab3", + "dateNoted": "2017-11-03", "notes": "", - "parcelID": "17370", - "siteID": "16878", + "parcelID": "16256", + "siteID": "17053", "siteRegistry": true }, { - "uuid": "251d805a-9ec2-4083-9c9b-fead47d7d95f", - "dateNoted": "2022-09-11", + "uuid": "22084b40-fbe7-4458-8243-a5e551e888aa", + "dateNoted": "2022-01-02", "notes": "", - "parcelID": "19641", - "siteID": "17172", - "siteRegistry": false + "parcelID": "16839", + "siteID": "15998", + "siteRegistry": true } ] }, { - "uuid": "4bfa5895-7365-4370-8e02-47c12bc7f6ea", - "siteID": 20469, - "address": "2490 Schulist Parkways", - "latitude": 57.2925, - "longitude": -125.4953, - "lastUpdated": "2019-02-10", - "city": "Lake Jalenfort", - "region": "Mainland/Southwest", - "victoriaFile": "26250-20/19053", + "uuid": "76015f2c-0dd8-46bd-8a28-e7d265b5ddb3", + "siteID": 19563, + "address": "4068 McLaughlin Overpass", + "latitude": 55.6421, + "longitude": -138.7813, + "lastUpdated": "2021-02-11", + "city": "Fort Mauriciomouth", + "region": "Thompson-Okanagan", + "victoriaFile": "26250-20/2127", "regionalFile": "N/A", "parcelIDs": [ - 9279391, - 4376154, - 997526, - 362519, - 9082474 + 5778301, + 3060794, + 6549366, + 6548045, + 155093 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "fab17bfa-7f65-40e4-87ea-d107f3fb5e78", - "createdAt": "2015-03-10", - "completed": "2020-06-16", - "initiated": "2021-09-21", - "ministryContact": "GREEN RYAN", + "uuid": "e7c070e2-f881-4100-ae52-94d7b471baa9", + "createdAt": "2015-06-30", + "completed": "2016-10-23", + "initiated": "2015-09-20", + "ministryContact": "ERNSER ANTWON", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -61752,44 +72274,84 @@ ], "notationParticipants": [ { - "uuid": "31efa300-9e4b-4278-a914-4899a7d65c0f", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "uuid": "02cca514-9760-4173-aeca-feaf57079641", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "ae73b59f-bcf8-49e5-96ed-0f1f45948dac", + "uuid": "d3127a8d-7f9f-4efb-9c88-687a10510d2c", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true }, { - "uuid": "7da6613b-cde7-4e2f-88eb-d96e5c63b254", + "uuid": "05f92619-df2b-4b15-876e-1ac24f159134", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "uuid": "bb689ae4-2385-454d-84bf-247e19849674", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true - }, + } + ], + "siteRegistry": true + }, + { + "uuid": "37bd9ff2-f810-47c1-a79c-28d8cd20cd1e", + "createdAt": "2018-08-14", + "completed": "2016-01-04", + "initiated": "2015-09-08", + "ministryContact": "TORP JONATHAN", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ { - "uuid": "5da79c66-ef6f-4d9b-b2a4-0ba964951b3f", + "uuid": "dafb0ec4-2447-46c4-918f-4bcdfaacc89a", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "0d4bb8b6-3ac9-4d3c-86ea-7187f2849312", + "uuid": "41b35bc0-77de-472d-9036-d9c24bdabf12", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false + }, + { + "uuid": "6c0fd9e9-0075-4799-97c9-5aa0efc07503", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "96ea8706-13ad-4236-9555-eb2e45dd58e5", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "4a62e150-955a-4c2e-a255-13bea25dce1e", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true } ], "siteRegistry": true }, { - "uuid": "90c641e7-98b0-4695-8a4d-ea06799addb5", - "createdAt": "2020-11-08", - "completed": "2014-11-15", - "initiated": "2021-07-06", - "ministryContact": "ROSENBAUM CHELSEA", + "uuid": "3187e481-60bc-4066-ad9c-0bd19911ccc0", + "createdAt": "2019-12-06", + "completed": "2015-09-05", + "initiated": "2014-08-12", + "ministryContact": "JASKOLSKI ALLENE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -61798,16 +72360,96 @@ ], "notationParticipants": [ { - "uuid": "7c362b51-e17f-48b3-9e17-8c732891fa33", + "uuid": "bd9f76e0-f819-40c4-9fdf-ede29cb5ed81", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "uuid": "2aac6ebb-baae-4b6c-9862-d9065b960aed", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "afd297e9-f451-4d50-b313-d051e29c9425", + "uuid": "fb55cea8-8714-413e-8d3c-879582a521ec", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "e28358f8-aa68-4746-8365-6f6d8956d167", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "dc4d6f49-57a0-452c-9abb-2b345c5777f4", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "uuid": "98ddfdff-397d-4910-bc6d-b2562812d83c", + "createdAt": "2014-02-14", + "completed": "2023-01-05", + "initiated": "2015-08-20", + "ministryContact": "WINTHEISER TIANNA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "uuid": "7f00b2f7-dbf4-4ba4-986f-a23cebde400f", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "e6c2c563-a2fc-4a4d-a2af-a180a93dcb94", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "df085d84-c221-4e47-9c45-68fd48794cf4", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "uuid": "80684746-f93b-48db-9e83-4713cac7261b", + "createdAt": "2015-03-19", + "completed": "2018-05-23", + "initiated": "2018-08-29", + "ministryContact": "BLICK ESTELLE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "uuid": "712ab2be-7831-42d3-95e5-1cb700baaff5", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": true + }, + { + "uuid": "b6a028dc-0d65-4ed6-9bb0-1a2aba98074e", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false } ], "siteRegistry": false @@ -61815,10 +72457,43 @@ ], "participants": [ { - "uuid": "fc9b4d2b-ebec-45c5-b239-02fc4a8a7af6", - "name": "IPSUM", - "endDate": "2022-04-21", - "startDate": "2021-06-17", + "uuid": "059b238e-7e6e-4c38-8e5e-267a8b30fd74", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2016-01-04", + "startDate": "2020-02-04", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "uuid": "ae1e331e-e54e-4e11-bc2e-84d640f7faa5", + "name": "AMET, DOLOR SIT", + "endDate": "2021-04-18", + "startDate": "2014-01-30", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "uuid": "f7302a49-2646-4e9a-8712-acb77e8d91e7", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2018-04-05", + "startDate": "2016-11-11", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "uuid": "2e848771-1f71-4ef1-ad37-d67ad83c39b2", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2021-12-06", + "startDate": "2018-09-03", "notes": "", "roles": [ "EMPLOYEE" @@ -61826,10 +72501,10 @@ "siteRegistry": true }, { - "uuid": "79f11cbb-2cd2-4172-ab34-0438e2b5db1b", + "uuid": "94e28f66-4f7e-4aa9-9782-6f5b2c8d61a5", "name": "SHELL CANADA PRODUCTS", - "endDate": "2021-09-02", - "startDate": "2023-01-22", + "endDate": "2019-11-22", + "startDate": "2019-01-11", "notes": "", "roles": [ "ORGANIZATION" @@ -61837,222 +72512,253 @@ "siteRegistry": false } ], + "documents": [ + { + "uuid": "84db3a0a-3da2-4562-9c35-6fff2006b284", + "siteRegistry": false, + "documentDate": "2018-02-24", + "receivedDate": "2018-10-13", + "uploadedDate": "2014-08-31", + "title": "Preliminary Site Investigation, Detailed Site Investigation and Remedial Plan for the Management Area adjacent to the Shell Site at 1503 West 41st Ave", + "participants": [ + { + "uuid": "f4248656-007a-4317-8ac3-f9ed59297121", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "a2095e2e-b9f5-4220-af48-709384a2ca4b", + "name": "AMET, DOLOR SIT", + "siteRegistry": true, + "role": "AUTHOR" + } + ] + }, + { + "uuid": "e604537a-b0e2-4627-b598-dc9cc7d86fd0", + "siteRegistry": true, + "documentDate": "2019-06-24", + "receivedDate": "2015-11-04", + "uploadedDate": "2017-06-24", + "title": "Summary of Site Conditions, 1537 W 41st Avenue, Vancouver", + "participants": [ + { + "uuid": "a27d2e54-ebe6-405f-8f40-6919019a9a56", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": false, + "role": "AUTHOR" + } + ] + } + ], "suspectLandUses": [ { - "uuid": "42944273-1fe9-4a85-8c5e-0e062f751e01", + "uuid": "48b1700e-871a-4b5c-80c6-4d249e2c3bc2", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-06-20 (described on Site Profile dated 2021-06-20)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "notes": "INSERTED FOR SITE PROFILE DATED 2019-04-30 (described on Site Profile dated 2019-04-30)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "uuid": "912e0189-bc8e-4d00-b484-2da07a41f27c", - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2023-07-06 (described on Site Profile dated 2023-07-06)", + "uuid": "652afb50-7575-4e73-b74e-3b64d245e67b", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2020-08-12 (described on Site Profile dated 2020-08-12)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "uuid": "a933397b-5984-4a6b-b2e9-c46d2fd17f20", - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2013-11-20 (described on Site Profile dated 2013-11-20)", + "uuid": "9bf20963-8b8f-4164-aace-82e8c64fe394", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2015-01-22 (described on Site Profile dated 2015-01-22)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "uuid": "d2923d01-3f2b-45e7-941e-b0126575cf77", + "uuid": "d848d348-b61a-43b6-af4f-f8f8d2480897", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2020-09-25 (described on Site Profile dated 2020-09-25)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "notes": "INSERTED FOR SITE PROFILE DATED 2021-06-12 (described on Site Profile dated 2021-06-12)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "uuid": "a3e57762-4694-4e7f-871d-5f8e1190a471", - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-08-25 (described on Site Profile dated 2019-08-25)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "uuid": "a0d2eb2a-ae3d-427e-8dda-e0223860888e", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2017-10-03 (described on Site Profile dated 2017-10-03)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], "parcelDescriptions": [ { - "uuid": "47912c68-f3fb-4a7d-9605-cf5b0224fb05", + "uuid": "18ab01e8-4f2e-417d-8db3-74aa2fc3f5b9", + "siteRegistry": true, + "dateNoted": "2021-12-30", + "parcelID": "16161", + "crownLandUsePIN": "17525", + "crownLandFileNumber": "19709", + "landDescription": "LOT 3 OF LOT 3 BLOCK 5 DISTRICT LOT 2 PLAN 8971" + }, + { + "uuid": "83cf9ef7-3a35-4a5e-9839-3a6526e95c89", "siteRegistry": false, - "dateNoted": "2015-09-29", - "parcelID": "19083", - "crownLandUsePIN": "17917", - "crownLandFileNumber": "15864", - "landDescription": "LOT 2 OF LOT 2 BLOCK 2 DISTRICT LOT 2 PLAN 5684" + "dateNoted": "2018-12-16", + "parcelID": "17856", + "crownLandUsePIN": "18517", + "crownLandFileNumber": "18687", + "landDescription": "LOT 1 OF LOT 1 BLOCK 3 DISTRICT LOT 3 PLAN 3442" }, { - "uuid": "742c5ded-2e1c-46ac-b480-da27f62fd67f", + "uuid": "a963f79c-e967-4339-a624-fd1e8b520010", "siteRegistry": false, - "dateNoted": "2016-05-19", - "parcelID": "16575", - "crownLandUsePIN": "19538", - "crownLandFileNumber": "16876", - "landDescription": "LOT 1 OF LOT 5 BLOCK 4 DISTRICT LOT 2 PLAN 3044" + "dateNoted": "2015-07-12", + "parcelID": "16921", + "crownLandUsePIN": "18500", + "crownLandFileNumber": "15615", + "landDescription": "LOT 5 OF LOT 1 BLOCK 5 DISTRICT LOT 3 PLAN 4045" + }, + { + "uuid": "32a6d80e-95b4-4b82-8cdf-fc53c5880e4d", + "siteRegistry": true, + "dateNoted": "2019-06-07", + "parcelID": "18742", + "crownLandUsePIN": "16739", + "crownLandFileNumber": "18549", + "landDescription": "LOT 2 OF LOT 1 BLOCK 2 DISTRICT LOT 2 PLAN 5193" } ], "siteDisclosures": [ { - "uuid": "2eed9acd-1b70-43f4-9b79-e0e65e78d8c4", + "uuid": "54c4caca-c384-43dc-b4af-ec71d72f3a81", "siteRegistry": false, - "dateReceived": "2015-04-11", - "dateCompleted": "2017-09-19", - "dateEntered": "2017-11-24", - "dateRegistrar": "2023-05-05", - "dateLocalAuthorityReceived": "2023-03-31", - "summary": "Sapiente laborum voluptates reiciendis numquam illum deserunt molestiae id asperiores.\nIpsam sunt consectetur.\nQuis dolorum facilis quidem delectus nihil.", - "informationUsed": "Facere minima est autem sequi sint.\nIllo quidem optio accusantium commodi blanditiis.\nProvident adipisci ea.\nEst eius expedita blanditiis quisquam tempora corporis natus pariatur provident.", - "pastOrPresentOrders": "Quaerat voluptatibus debitis eos ipsam recusandae perferendis.\nTempore ad est aliquid doloribus optio delectus placeat perferendis non.", + "dateReceived": "2018-05-06", + "dateCompleted": "2019-04-26", + "dateEntered": "2014-09-22", + "dateRegistrar": "2018-08-24", + "dateLocalAuthorityReceived": "2015-05-05", + "summary": "Quae inventore consequuntur minus quod minus libero minima.\nDolore quibusdam quos architecto.", + "informationUsed": "Dolorum neque impedit at quasi laborum officiis repudiandae.\nAt dignissimos ipsam beatae reprehenderit eligendi eos.\nPariatur totam aliquid nulla autem.\nAlias quisquam dignissimos.", + "pastOrPresentOrders": "Sed corrupti ut temporibus optio.\nAmet reprehenderit saepe.", "commercialAndIndustrialPurposes": [ { - "uuid": "79eab0e5-c091-46f0-b5cb-1d7a06b2498e", + "uuid": "f5f15571-d7fe-4810-bba0-e563ad4e65a2", "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false }, { - "uuid": "90c7f5d1-6c0c-4f79-a84a-36801b41fdfa", - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true - }, - { - "uuid": "5068083d-ac72-4f26-a0a7-9eba1ab98eca", + "uuid": "e5325b03-4461-4223-a058-d0a0cd53eb82", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false - } - ] - }, - { - "uuid": "884b4ca2-165c-4a3d-95a8-dfc43975b88c", - "siteRegistry": true, - "dateReceived": "2022-01-21", - "dateCompleted": "2020-12-25", - "dateEntered": "2020-11-18", - "dateRegistrar": "2017-06-29", - "dateLocalAuthorityReceived": "2019-10-19", - "summary": "Ipsam iste quasi.", - "informationUsed": "Dignissimos quam aut.\nAd nam unde vero deserunt quaerat repudiandae.\nExercitationem expedita eum.", - "pastOrPresentOrders": "Nam tenetur minus sunt beatae.\nRerum aliquam optio cupiditate labore harum tempora earum unde commodi.", - "commercialAndIndustrialPurposes": [ - { - "uuid": "38b0f132-1777-4a6f-9c1d-ce205c318d2b", - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true }, { - "uuid": "6c00dc47-fab9-4f36-9d31-21b844c7af3a", + "uuid": "9163c6af-86a7-43a5-bf23-d296d314edff", "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false } ] } ], "activityLog": [ { - "uuid": "bcbb6e49-b8a5-4fa1-9a8a-2a4af462ff4e", + "uuid": "a01d927a-c7b9-4d55-b9a2-11689f5fd41c", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "GUTMANN WILTON", - "timestamp": "2019-04-26" + "user": "SCHMITT KELLI", + "timestamp": "2020-01-04" }, { - "uuid": "5e3a655c-191d-461e-87ec-018fc227aa7f", - "siteRegistry": true, + "uuid": "3162da0e-13bd-4830-84be-8850b180e7fb", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "BARTOLETTI ALIZE", - "timestamp": "2022-02-11" + "user": "FRITSCH PRECIOUS", + "timestamp": "2022-11-08" }, { - "uuid": "0933b243-29cc-4579-ba0e-c0fa73aa7240", - "siteRegistry": false, + "uuid": "62fea960-e5c5-4cf8-b121-849b32d15f76", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "ZIEME DWIGHT", - "timestamp": "2021-11-12" + "user": "HERMISTON DESTINY", + "timestamp": "2020-05-20" }, { - "uuid": "fe6bcbd7-bd9b-4cf6-819d-ad43e8532f48", + "uuid": "4c40479a-d1b6-4c02-842d-edc867624872", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "O'CONNELL DECLAN", - "timestamp": "2016-12-17" + "user": "GLEICHNER EVELINE", + "timestamp": "2015-02-22" }, { - "uuid": "fde9642f-0cc2-4b73-abf6-89df22b36bca", - "siteRegistry": true, + "uuid": "d6179989-0298-4a01-84ed-03565c87fd4d", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "HARTMANN MARIAN", - "timestamp": "2018-10-31" + "user": "LOCKMAN MOHAMED", + "timestamp": "2014-11-22" }, { - "uuid": "fca6671a-66d5-4ae6-bcdc-c157257cf635", + "uuid": "35d786c7-9180-4f51-9dbb-6ec9da63fc09", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "HYATT ISIDRO", - "timestamp": "2019-06-06" + "user": "HALEY KEENAN", + "timestamp": "2014-10-05" }, { - "uuid": "06d060fb-f799-4abc-bada-6ae35d2ab318", - "siteRegistry": true, + "uuid": "002a26f2-f6b4-4d66-a15f-6eca502b26d8", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "HERMISTON JOSIANNE", + "timestamp": "2021-07-16" + }, + { + "uuid": "4dc2776d-34ad-42bf-be15-7c98992b86ec", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "WATSICA RUSSEL", - "timestamp": "2016-05-19" + "user": "SAUER DESTINEY", + "timestamp": "2023-06-17" } ], "associatedSites": [ { - "uuid": "7ee315dd-6081-469a-8dfe-2a093ae7b85e", - "dateNoted": "2022-02-02", + "uuid": "a1c7186b-d24f-4d83-b3fd-e59a261a4c12", + "dateNoted": "2015-05-30", "notes": "", - "parcelID": "20746", - "siteID": "19713", + "parcelID": "19103", + "siteID": "16918", "siteRegistry": true }, { - "uuid": "eec32cd6-c5a8-4935-b5df-bd860b4e928f", - "dateNoted": "2019-05-07", - "notes": "", - "parcelID": "18945", - "siteID": "18336", - "siteRegistry": false - }, - { - "uuid": "c0a79ce9-b564-4bff-b073-b1be970054ce", - "dateNoted": "2019-09-01", + "uuid": "e2138ae7-354a-4e64-a6f4-91ac9af72b4a", + "dateNoted": "2020-03-18", "notes": "", - "parcelID": "20515", - "siteID": "19154", - "siteRegistry": false + "parcelID": "19329", + "siteID": "18229", + "siteRegistry": true } ] }, { - "uuid": "3d02436f-efe2-4aea-8871-d666cecfe94d", - "siteID": 18174, - "address": "538 Tristian Tunnel", - "latitude": 53.5208, - "longitude": -137.5508, - "lastUpdated": "2021-08-05", - "city": "New Carole", - "region": " North Coast", - "victoriaFile": "26250-20/9174", + "uuid": "2042de5e-d288-4279-acda-b092e6cfa9bd", + "siteID": 18101, + "address": "6706 Sanford Crest", + "latitude": 50.0566, + "longitude": -135.2386, + "lastUpdated": "2022-03-15", + "city": "Josianneview", + "region": "Kootenay", + "victoriaFile": "26250-20/1070", "regionalFile": "N/A", "parcelIDs": [ - 4469301, - 6778426, - 2540136, - 4311217, - 9944740 + 3188848, + 9310905, + 4031404, + 3725607, + 3088982 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "3b0de997-f751-4f60-85bf-6bbd9f6d675e", - "createdAt": "2017-03-05", - "completed": "2019-09-09", - "initiated": "2022-11-10", - "ministryContact": "OKUNEVA BRANSON", + "uuid": "de8decd0-d133-46d4-bfa2-805b5990330a", + "createdAt": "2019-09-19", + "completed": "2021-01-30", + "initiated": "2019-07-28", + "ministryContact": "EMARD COOPER", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -62061,78 +72767,84 @@ ], "notationParticipants": [ { - "uuid": "57e76096-57ac-4b88-b85c-dd6e2f4790d2", - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "uuid": "91629ffe-2250-4b13-accc-88c056b13177", + "uuid": "2fb90068-ca8d-4dc6-adb1-c0dbf6453c6c", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false }, { - "uuid": "686358a6-f187-4eed-959b-391faddc9280", + "uuid": "f2563156-c073-4fa0-a44b-dccca9a3e848", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true - } - ], - "siteRegistry": true - }, - { - "uuid": "1104c7d3-9983-4c21-bc97-d1712e6899be", - "createdAt": "2019-04-08", - "completed": "2013-11-09", - "initiated": "2018-02-10", - "ministryContact": "KEEBLER MITCHELL", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ + }, { - "uuid": "d61b0f56-f25a-4f17-afb1-5747bcdeea46", - "name": "SHELL CANADA PRODUCTS", + "uuid": "87806546-4081-4f51-8ee8-852675e440b0", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true }, { - "uuid": "15874d4a-c65b-42b1-bcd8-d7fed812afed", - "name": "SHELL CANADA PRODUCTS", + "uuid": "33a872a6-0141-4c41-8c8e-f361543310dd", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true }, { - "uuid": "022aabd1-efb7-4adc-a547-b894bb2cca42", + "uuid": "963c782f-6f19-44f2-bdf9-88908bd02c16", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "uuid": "962f338f-306d-4009-9e31-e0a7bc76ccdb", + "createdAt": "2014-09-30", + "completed": "2021-07-24", + "initiated": "2017-01-10", + "ministryContact": "HANE CLEVELAND", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "uuid": "57dc997d-322e-430f-a6c1-86b8fdcb95ee", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "6c4fa343-85d6-41ff-b6ae-369a95b5de29", + "uuid": "0b3b69b9-9306-4447-b891-b04eb8c52493", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "0c48bc86-1313-489a-b80d-c473c0ef0b36", + "uuid": "0f5dbec9-fa7e-4c6c-a445-d3d55e7dfc1e", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false + }, + { + "uuid": "4e5ec806-f38f-4bdb-a15e-73f44d671537", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false } ], "siteRegistry": true }, { - "uuid": "f6284bd6-c124-47e8-a546-969c0e17cbbf", - "createdAt": "2016-08-03", - "completed": "2020-10-28", - "initiated": "2014-01-19", - "ministryContact": "ABSHIRE ADRIAN", + "uuid": "cf6d3a98-0250-46c9-881c-2f23cba25034", + "createdAt": "2022-03-19", + "completed": "2023-09-28", + "initiated": "2020-04-11", + "ministryContact": "CRONA-KOVACEK LEONARD", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -62141,32 +72853,32 @@ ], "notationParticipants": [ { - "uuid": "f2f1c17e-ad6b-4530-b145-acaa6a0f0f18", + "uuid": "ac3c450e-c4c6-4a3c-a29c-845e77a22ed7", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true + "role": "REQUESTED BY", + "siteRegistry": false }, { - "uuid": "767a4420-5adc-4279-be33-af59ff41202a", + "uuid": "d608910e-bfa9-4678-b917-8a021fac7b2a", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "f86212b5-e5f5-4070-a356-c572329e3e04", + "uuid": "e3f5f438-545f-47b7-a09e-549dcc8f7150", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "5ea20d3d-e978-46b0-b421-227ba7e4f821", - "createdAt": "2021-01-07", - "completed": "2018-01-09", - "initiated": "2013-10-22", - "ministryContact": "GRIMES CASANDRA", + "uuid": "cab11417-a74e-4993-8c06-415a203104c3", + "createdAt": "2015-02-10", + "completed": "2018-12-09", + "initiated": "2016-06-20", + "ministryContact": "STEHR GUISEPPE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -62175,28 +72887,22 @@ ], "notationParticipants": [ { - "uuid": "32f302e8-acbf-498e-b17c-41ea0485900b", + "uuid": "11093b53-986c-4241-a1ca-287bc9557bbd", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true }, { - "uuid": "621fc45f-d316-4eb0-aac7-cdd4f447787b", - "name": "SHELL CANADA PRODUCTS", + "uuid": "75af7ea4-f118-454a-a4ba-0466fce39c1c", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "5cb5bea7-f480-411c-88fb-98395faf9d50", - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "uuid": "9a549eec-9971-4fb8-bba5-1ebbc0903bf7", - "name": "SHELL CANADA PRODUCTS", + "uuid": "c058d089-ca61-4959-92fb-f5fa5d23692e", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true } ], "siteRegistry": true @@ -62204,215 +72910,380 @@ ], "participants": [ { - "uuid": "5330d929-ecc7-4d1f-9ffc-5d35e2467d1e", + "uuid": "8e4f62f4-86d8-4eb1-bcd7-f02f7ca7a969", "name": "AMET, DOLOR SIT", - "endDate": "2022-07-29", - "startDate": "2014-05-28", + "endDate": "2015-01-31", + "startDate": "2019-05-14", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "51725da3-4301-41f1-9feb-426bd7c712c6", - "name": "SHELL CANADA PRODUCTS", - "endDate": "2016-06-13", - "startDate": "2018-05-05", + "uuid": "cda08f6b-8c7a-4881-a661-e437a7017079", + "name": "AMET, DOLOR SIT", + "endDate": "2014-08-23", + "startDate": "2020-04-02", "notes": "", "roles": [ "EMPLOYEE" ], "siteRegistry": true + }, + { + "uuid": "55c9c91c-2173-4637-96c1-c47e4d345093", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2021-11-20", + "startDate": "2014-10-28", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "uuid": "6ba36c8d-5335-475f-af79-63a31a0e927f", + "name": "AMET, DOLOR SIT", + "endDate": "2018-11-16", + "startDate": "2023-06-01", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false } ], - "suspectLandUses": [ + "documents": [ { - "uuid": "410da5fd-b385-4259-bd44-fa3576ba6660", + "uuid": "81aeda8c-bcac-4cc1-8f92-f69a666a3a33", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2020-02-05 (described on Site Profile dated 2020-02-05)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "documentDate": "2018-05-02", + "receivedDate": "2016-06-29", + "uploadedDate": "2019-02-09", + "title": "Preliminary Site Investigation, Detailed Site Investigation and Remedial Plan for the Management Area adjacent to the Shell Site at 1503 West 41st Ave", + "participants": [ + { + "uuid": "90bc610a-62ea-479a-b1c9-276d5e28b455", + "name": "IPSUM", + "siteRegistry": false, + "role": "AUTHOR" + } + ] }, { - "uuid": "be082846-a5e4-4679-b8e8-f3a73592a1de", + "uuid": "96cb8add-9593-4f79-ac63-9397f37bdf30", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-11-17 (described on Site Profile dated 2014-11-17)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "documentDate": "2015-12-07", + "receivedDate": "2019-06-19", + "uploadedDate": "2021-03-20", + "title": "Preliminary Site Investigation, Detailed Site Investigation and Remedial Plan for the Management Area adjacent to the Shell Site at 1503 West 41st Ave", + "participants": [ + { + "uuid": "cce96fc8-d237-4a77-8bfa-8fad297c98ce", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "ae125154-89eb-459d-a2a2-a96623ccd2cb", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "f701ea09-fd16-4274-b1ae-7e3a9efd3bb1", + "name": "IPSUM", + "siteRegistry": false, + "role": "AUTHOR" + } + ] + }, + { + "uuid": "8cc2ca49-1eb1-4005-915f-32dddba8b211", + "siteRegistry": false, + "documentDate": "2020-11-15", + "receivedDate": "2013-12-22", + "uploadedDate": "2019-07-04", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "5fe81f81-c3ec-423b-93a0-e8bb843b9ce8", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": false, + "role": "AUTHOR" + } + ] }, { - "uuid": "2d3f24be-cde0-41ef-91e4-6c51677d61bb", + "uuid": "fa58f235-3d92-4440-bad8-bfa1ced22075", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2013-10-31 (described on Site Profile dated 2013-10-31)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "documentDate": "2019-12-22", + "receivedDate": "2014-11-08", + "uploadedDate": "2014-12-12", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "cee9be23-96bb-4df5-b5b1-d5e881ad4af1", + "name": "AMET, DOLOR SIT", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "865ff822-52d0-46b5-931f-73738dd5ac95", + "name": "IPSUM", + "siteRegistry": false, + "role": "AUTHOR" + } + ] + } + ], + "suspectLandUses": [ + { + "uuid": "995911b9-908c-4422-be6e-7a9a1d808aa8", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2016-01-17 (described on Site Profile dated 2016-01-17)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "uuid": "9669ad2c-1f57-4a01-9779-145b97de6cb9", + "uuid": "4b3fd109-4206-4899-9320-9ae94d6071ca", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-06-24 (described on Site Profile dated 2022-06-24)", + "notes": "INSERTED FOR SITE PROFILE DATED 2018-08-05 (described on Site Profile dated 2018-08-05)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "uuid": "3fc4d941-a94d-4a7b-a7a1-fda16366b657", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2014-09-12 (described on Site Profile dated 2014-09-12)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "uuid": "921848bd-399e-4a52-b0dd-1741e45b1596", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2022-07-31 (described on Site Profile dated 2022-07-31)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "uuid": "cf48b25b-bab2-45a5-9b72-1e166527b682", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2016-06-01 (described on Site Profile dated 2016-06-01)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], "parcelDescriptions": [ { - "uuid": "36a779af-5bd8-4e61-ab56-e6793b96c0dd", - "siteRegistry": true, - "dateNoted": "2023-02-21", - "parcelID": "16094", - "crownLandUsePIN": "15352", - "crownLandFileNumber": "19169", - "landDescription": "LOT 4 OF LOT 3 BLOCK 4 DISTRICT LOT 4 PLAN 9243" + "uuid": "eb5dadda-63c4-4596-8b41-38da6ae76196", + "siteRegistry": false, + "dateNoted": "2020-03-19", + "parcelID": "17116", + "crownLandUsePIN": "16547", + "crownLandFileNumber": "18248", + "landDescription": "LOT 3 OF LOT 3 BLOCK 3 DISTRICT LOT 1 PLAN 5854" }, { - "uuid": "07d30d10-f032-4a80-ba23-5d02d9acf5b3", - "siteRegistry": false, - "dateNoted": "2021-08-08", - "parcelID": "15711", - "crownLandUsePIN": "18459", - "crownLandFileNumber": "18825", - "landDescription": "LOT 5 OF LOT 2 BLOCK 3 DISTRICT LOT 1 PLAN 8208" + "uuid": "3b2093b0-a64e-4777-8a9a-b7edf58bed70", + "siteRegistry": true, + "dateNoted": "2022-05-05", + "parcelID": "17768", + "crownLandUsePIN": "18606", + "crownLandFileNumber": "17773", + "landDescription": "LOT 4 OF LOT 1 BLOCK 4 DISTRICT LOT 2 PLAN 6217" }, { - "uuid": "b2ec147d-3ea5-4a0e-9b9b-f3a5dc311917", + "uuid": "d95d4933-3289-4b2f-a715-48a82f1d2660", "siteRegistry": true, - "dateNoted": "2022-09-11", - "parcelID": "18400", - "crownLandUsePIN": "20191", - "crownLandFileNumber": "16324", - "landDescription": "LOT 5 OF LOT 4 BLOCK 2 DISTRICT LOT 3 PLAN 3631" + "dateNoted": "2014-10-20", + "parcelID": "19644", + "crownLandUsePIN": "15579", + "crownLandFileNumber": "16636", + "landDescription": "LOT 5 OF LOT 1 BLOCK 1 DISTRICT LOT 2 PLAN 5345" + }, + { + "uuid": "ffa6dc51-f798-48e7-bd7a-2db37d7fc446", + "siteRegistry": false, + "dateNoted": "2020-09-28", + "parcelID": "19200", + "crownLandUsePIN": "17728", + "crownLandFileNumber": "17991", + "landDescription": "LOT 3 OF LOT 2 BLOCK 4 DISTRICT LOT 1 PLAN 6720" } ], "siteDisclosures": [ { - "uuid": "e995f12a-061f-429c-b3e8-5143513aee00", - "siteRegistry": false, - "dateReceived": "2019-07-19", - "dateCompleted": "2023-08-18", - "dateEntered": "2015-12-14", - "dateRegistrar": "2018-05-27", - "dateLocalAuthorityReceived": "2015-09-12", - "summary": "Quos sit ipsum iusto consequuntur facere omnis.", - "informationUsed": "Repudiandae repudiandae nam quos.\nItaque aliquid odio.\nDeserunt ratione deserunt labore itaque.\nNatus libero fuga dicta.\nQuia deserunt voluptates qui eum necessitatibus dolore.", - "pastOrPresentOrders": "Incidunt corrupti possimus magni nobis tenetur cum.", + "uuid": "27e3f521-40b0-4c0f-850f-37706c19f8af", + "siteRegistry": true, + "dateReceived": "2022-03-09", + "dateCompleted": "2019-05-05", + "dateEntered": "2023-10-02", + "dateRegistrar": "2019-02-07", + "dateLocalAuthorityReceived": "2015-03-12", + "summary": "Dolores repellendus at quae tenetur perferendis ex illum.\nUnde ad magni facilis perspiciatis veritatis sapiente eligendi ex sunt.\nNumquam praesentium rerum repudiandae tempora officiis fugiat quaerat temporibus veritatis.", + "informationUsed": "Perferendis quidem delectus dolorem quam sint illo.\nLaboriosam ipsum accusantium.\nConsequuntur quod numquam nisi ipsum dolore vel.\nLaudantium soluta laboriosam harum debitis ullam maxime voluptatibus dolorum.\nNihil porro iure non possimus dolor suscipit.", + "pastOrPresentOrders": "Aliquam distinctio a tempora quae a occaecati dolorem excepturi.\nDignissimos laborum beatae cupiditate libero.\nRatione sapiente quia modi earum nesciunt sunt veniam quis.", "commercialAndIndustrialPurposes": [ { - "uuid": "2a8a151b-9478-4b68-afd8-3ca3c8f4874b", + "uuid": "e2d680fd-a2b2-42be-b0e9-a316c1de4704", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { - "uuid": "79bf848e-eab3-4266-811a-8bdaf3927e72", + "uuid": "318edb95-0480-4741-aaec-b915d338b9d2", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true + }, + { + "uuid": "f52b24c5-c705-4566-ad29-78b152547675", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "uuid": "0a477f32-2d31-40d4-bf74-77f1d08da434", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + } + ] + }, + { + "uuid": "ae0ec872-d837-4eeb-ac97-456d3c2eb80e", + "siteRegistry": false, + "dateReceived": "2017-01-01", + "dateCompleted": "2016-07-08", + "dateEntered": "2021-03-07", + "dateRegistrar": "2018-07-15", + "dateLocalAuthorityReceived": "2019-11-30", + "summary": "Maxime nisi deleniti quam incidunt libero at.\nVoluptates quaerat ad error.\nNatus excepturi voluptatum.", + "informationUsed": "Velit suscipit fuga.\nTotam quibusdam commodi quasi cum autem illum.\nLibero sint repellat officiis.", + "pastOrPresentOrders": "Repudiandae ab laboriosam molestiae nulla.\nAutem nobis dolorem facilis eveniet rerum assumenda accusantium iste quia.", + "commercialAndIndustrialPurposes": [ + { + "uuid": "1cd97f9e-6393-4921-8b38-654ade6c95cc", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "uuid": "5f6c4104-606e-49df-9270-a0f7e3a9378a", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "uuid": "bc63be28-84ef-4004-9be7-27850520e146", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false } ] } ], "activityLog": [ { - "uuid": "0cde8cb3-5b6f-45b9-b81f-a15eb87e9b4a", - "siteRegistry": false, + "uuid": "ef8524f9-2015-4f37-95a3-282b044976b0", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "WALSH HETTIE", - "timestamp": "2017-01-09" + "user": "QUIGLEY CLARE", + "timestamp": "2022-02-17" }, { - "uuid": "ec2544db-4cb3-45cd-9580-4b36ce71ec53", + "uuid": "430d09f3-cd00-4cde-9ec9-871f31633be4", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "PROHASKA MONICA", - "timestamp": "2014-11-04" + "user": "JERDE WINNIFRED", + "timestamp": "2019-07-06" }, { - "uuid": "9f6eec98-e7fd-4940-951b-3d90e2fd3e12", + "uuid": "a0386927-49d1-4d4a-90f3-380ae03facfa", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "MCCLURE-WUNSCH JENNINGS", - "timestamp": "2023-05-11" + "user": "CORWIN LINDSEY", + "timestamp": "2023-01-15" }, { - "uuid": "616dd4ba-59cd-46f5-ae75-12f5218ed316", + "uuid": "d74f825e-5c47-47b8-a859-53159ab8081d", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "MAYER BERNICE", - "timestamp": "2023-06-12" + "user": "BERGNAUM MYLENE", + "timestamp": "2023-01-02" }, { - "uuid": "96cb1007-f508-485b-a190-d14990dc071a", - "siteRegistry": false, + "uuid": "7f46e5f5-0aa4-41e4-b9ab-476053598024", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "MORAR LOIS", - "timestamp": "2022-10-11" + "user": "STARK NORBERTO", + "timestamp": "2023-03-15" }, { - "uuid": "b239ebff-802f-4b23-a5d2-133d76da62dd", - "siteRegistry": false, + "uuid": "6102e9e1-8e2b-446f-99e4-c85126256652", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "REILLY ZANDER", - "timestamp": "2019-06-11" + "user": "LEMKE OLLIE", + "timestamp": "2018-12-12" }, { - "uuid": "a959c07d-c5bb-43c3-9aae-e6cf26390c0b", + "uuid": "83af337c-0707-4ef9-a898-d6a35b530a66", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "MAYERT JOSHUA", - "timestamp": "2019-04-25" + "user": "MARVIN ERNIE", + "timestamp": "2023-08-30" } ], "associatedSites": [ { - "uuid": "67efdfa9-3b5d-4450-b22d-7ac9537b0a28", - "dateNoted": "2018-05-04", + "uuid": "9eff9215-24d2-4280-8bba-13d52776d06a", + "dateNoted": "2020-06-04", "notes": "", - "parcelID": "18850", - "siteID": "16538", - "siteRegistry": false + "parcelID": "18867", + "siteID": "17476", + "siteRegistry": true }, { - "uuid": "2b96b996-7744-471a-ac31-8f2e6fb9fe09", - "dateNoted": "2022-01-22", + "uuid": "7acfba08-fd0d-466b-9a83-255d8103fe36", + "dateNoted": "2017-06-01", "notes": "", - "parcelID": "19505", - "siteID": "19713", + "parcelID": "15935", + "siteID": "18365", "siteRegistry": true }, { - "uuid": "c534d3ce-6cfb-42a1-9b18-093a00bc5b6b", - "dateNoted": "2019-07-14", + "uuid": "cfe98a00-8e3c-4481-b909-3383df4fa5ab", + "dateNoted": "2017-08-05", "notes": "", - "parcelID": "15958", - "siteID": "20221", + "parcelID": "15929", + "siteID": "17141", "siteRegistry": true } ] }, { - "uuid": "67d3e2b3-672e-424a-95e0-a7e1573758cc", - "siteID": 15815, - "address": "237 Eliezer River", - "latitude": 58.8488, - "longitude": -119.426, - "lastUpdated": "2021-04-01", - "city": "Reynoldsview", - "region": "Mainland/Southwest", - "victoriaFile": "26250-20/14111", + "uuid": "aca7676d-08c5-44f4-abae-fdf9d721836f", + "siteID": 17582, + "address": "92040 Okuneva Parks", + "latitude": 51.1512, + "longitude": -135.9282, + "lastUpdated": "2017-01-25", + "city": "Huelsstad", + "region": "Thompson-Okanagan", + "victoriaFile": "26250-20/1131", "regionalFile": "N/A", "parcelIDs": [ - 8258363, - 8137705, - 966224, - 1118452, - 4499878 + 6051817, + 3017195, + 9636089, + 2205373, + 7167991 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "a667d3a0-3cd7-49b8-8bb7-e98dca541d18", - "createdAt": "2023-02-25", - "completed": "2019-07-17", - "initiated": "2015-02-17", - "ministryContact": "KUNDE SHANNA", + "uuid": "5364a8db-7f29-4870-a928-674c56785ea1", + "createdAt": "2018-12-03", + "completed": "2021-07-01", + "initiated": "2015-05-12", + "ministryContact": "KREIGER WINONA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -62421,72 +73292,44 @@ ], "notationParticipants": [ { - "uuid": "bfe82ec5-93b4-4ac1-a4c0-c2020ad730fa", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "uuid": "89250c75-140a-4e58-9d34-9c35ed6edab7", + "uuid": "ede5f5ee-dc86-4782-aae5-033cd89d57c3", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false }, { - "uuid": "89155df2-a0a7-4ab3-b612-c2d742458ca7", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - } - ], - "siteRegistry": true - }, - { - "uuid": "48835bd5-e3ad-4844-9df5-b6fc4ecf34db", - "createdAt": "2019-12-19", - "completed": "2017-11-24", - "initiated": "2015-02-12", - "ministryContact": "BASHIRIAN CLIFTON", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "uuid": "e949d19b-2f65-4227-bd4f-bfac1f0959a1", + "uuid": "a40ac1fa-1068-4ece-9551-3c43d4f14c4d", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "ba595ec9-7daf-4f48-b9b4-f6a61704c005", - "name": "SHELL CANADA PRODUCTS", + "uuid": "a20a82db-2cde-465b-9217-eb4dc9144553", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true }, { - "uuid": "75d971b4-f220-43cd-95f8-ddf34421dd93", - "name": "SHELL CANADA PRODUCTS", + "uuid": "980f072b-a3f1-4189-8dd6-356b53bf8ec1", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false }, { - "uuid": "11317548-a62a-4420-badf-b5c7d4fd53ff", + "uuid": "ec5e3aa3-a048-4829-a91f-9db998510ca9", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true } ], "siteRegistry": false }, { - "uuid": "79c8e0aa-4d9b-4efc-ae33-d746fd794c99", - "createdAt": "2017-12-15", - "completed": "2019-04-09", - "initiated": "2014-12-23", - "ministryContact": "STEUBER LON", + "uuid": "b2b89d91-7ed4-4fe9-85ef-2f2a23eb3216", + "createdAt": "2017-08-30", + "completed": "2018-04-23", + "initiated": "2022-06-23", + "ministryContact": "HEGMANN EZRA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -62495,16 +73338,34 @@ ], "notationParticipants": [ { - "uuid": "3057c535-5fd2-4923-9e4e-0ac5c48bee39", + "uuid": "18922222-b599-402b-ab05-213ea68d1207", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "ffcf361b-1fba-474a-83a5-b85e17026b35", + "uuid": "dc016e8a-a44d-4356-b33d-66bf8679b79e", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "uuid": "77e32f26-5f35-4b65-a548-2b0ae556d941", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false + }, + { + "uuid": "a5b1baf8-04e9-40ee-bc81-094b25b21e97", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "5589aee0-81fd-4794-9063-5e04144f30a5", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true } ], "siteRegistry": true @@ -62512,32 +73373,21 @@ ], "participants": [ { - "uuid": "92473c75-cd1a-4707-95d8-ed3def7c392a", + "uuid": "6ed1a3ea-121b-48f7-a7bd-4c6e9f276e0f", "name": "AMET, DOLOR SIT", - "endDate": "2014-12-03", - "startDate": "2014-01-20", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": true - }, - { - "uuid": "3da91c9e-f63b-46ff-892a-910a969c28ca", - "name": "AMET, DOLOR SIT", - "endDate": "2014-06-11", - "startDate": "2018-02-06", + "endDate": "2017-05-29", + "startDate": "2018-10-09", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": true }, { - "uuid": "9a448d51-26ab-4e65-9dd8-811c389658aa", - "name": "AMET, DOLOR SIT", - "endDate": "2020-12-18", - "startDate": "2022-07-13", + "uuid": "a39c1ef9-0cec-48c7-854b-a895d1a9b09a", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2016-07-25", + "startDate": "2014-04-21", "notes": "", "roles": [ "EMPLOYEE" @@ -62545,247 +73395,297 @@ "siteRegistry": false }, { - "uuid": "0f865386-f7e8-45d4-b0d9-7f7a97be24a2", - "name": "AMET, DOLOR SIT", - "endDate": "2016-12-14", - "startDate": "2015-03-19", + "uuid": "e1b09089-9446-47b7-aad8-76b08b68c0da", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2021-07-03", + "startDate": "2018-03-10", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": false + "siteRegistry": true } ], - "suspectLandUses": [ + "documents": [ { - "uuid": "ab6a5759-0258-458a-bc4f-85cafc250d9c", + "uuid": "a10d060c-07ae-4229-b1c7-80ca9e6d0d84", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-12-10 (described on Site Profile dated 2016-12-10)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "documentDate": "2021-02-05", + "receivedDate": "2023-02-23", + "uploadedDate": "2022-02-26", + "title": "Summary of Site Conditions, 1537 W 41st Avenue, Vancouver", + "participants": [ + { + "uuid": "3910910a-c341-44cf-8b32-5c70f18b936f", + "name": "IPSUM", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "fae3db2a-c700-49bd-909a-43ddbfb1c052", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": false, + "role": "AUTHOR" + } + ] + }, + { + "uuid": "9639713a-9d22-49ba-bef6-2bbd8ccae60b", + "siteRegistry": false, + "documentDate": "2023-04-14", + "receivedDate": "2015-04-08", + "uploadedDate": "2018-06-25", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "309cc1d2-01be-4fdf-8d65-2819340015aa", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "df72038c-00c5-49f8-95dd-71f56e46eae1", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "e08b600c-5565-4216-83ff-e62e652eddb8", + "name": "AMET, DOLOR SIT", + "siteRegistry": false, + "role": "AUTHOR" + } + ] + }, + { + "uuid": "e9463a6a-2622-4636-aceb-fc172605f085", + "siteRegistry": true, + "documentDate": "2014-05-21", + "receivedDate": "2021-04-27", + "uploadedDate": "2021-04-14", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "2dc6882e-1401-468a-ac50-1e1a39495a58", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "f5c9a055-4d02-4773-bdcd-d745e5162e95", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "1abc94d0-7bbb-457f-943e-aa5fca05f1e0", + "name": "IPSUM", + "siteRegistry": false, + "role": "AUTHOR" + } + ] }, { - "uuid": "6857f61f-9b3b-4744-b367-e065f43d768c", + "uuid": "f18a94c9-8940-4cc5-a9eb-5ddcec335143", + "siteRegistry": true, + "documentDate": "2020-01-15", + "receivedDate": "2023-07-03", + "uploadedDate": "2015-11-06", + "title": "Preliminary Site Investigation, Detailed Site Investigation and Remedial Plan for the Management Area adjacent to the Shell Site at 1503 West 41st Ave", + "participants": [ + { + "uuid": "0d2c1b08-6303-4fca-8a51-8798645bc518", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "c546ada0-ee6b-4ff1-88a3-11db3fa0fa6c", + "name": "IPSUM", + "siteRegistry": true, + "role": "AUTHOR" + } + ] + } + ], + "suspectLandUses": [ + { + "uuid": "39dbbde1-302e-4cca-a307-c4227ff4f936", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2023-04-02 (described on Site Profile dated 2023-04-02)", + "notes": "INSERTED FOR SITE PROFILE DATED 2022-03-13 (described on Site Profile dated 2022-03-13)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "uuid": "20218003-79d4-42e0-a836-efe73553a8fa", + "uuid": "0d92da5d-29a3-41cb-84bb-91128d8bd1c2", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2020-04-27 (described on Site Profile dated 2020-04-27)", + "notes": "INSERTED FOR SITE PROFILE DATED 2021-06-14 (described on Site Profile dated 2021-06-14)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], "parcelDescriptions": [ { - "uuid": "74d6c2de-71f2-416f-a253-e5881d66f991", - "siteRegistry": false, - "dateNoted": "2015-04-02", - "parcelID": "16393", - "crownLandUsePIN": "19689", - "crownLandFileNumber": "16126", - "landDescription": "LOT 5 OF LOT 3 BLOCK 2 DISTRICT LOT 1 PLAN 4901" + "uuid": "bd3c118d-5db1-4e04-83b6-fe4dc2bc5f62", + "siteRegistry": true, + "dateNoted": "2020-05-19", + "parcelID": "17593", + "crownLandUsePIN": "20268", + "crownLandFileNumber": "19028", + "landDescription": "LOT 5 OF LOT 2 BLOCK 2 DISTRICT LOT 2 PLAN 4558" }, { - "uuid": "62992324-95d9-4325-92be-16215e207bcd", + "uuid": "b8ec818b-aebd-46fb-9eba-e7471063869a", "siteRegistry": false, - "dateNoted": "2023-05-09", - "parcelID": "17562", - "crownLandUsePIN": "18698", - "crownLandFileNumber": "20356", - "landDescription": "LOT 1 OF LOT 4 BLOCK 4 DISTRICT LOT 3 PLAN 5811" - }, - { - "uuid": "cea0fbf6-088f-4b54-b8ed-af0c90db1924", - "siteRegistry": true, - "dateNoted": "2021-08-27", - "parcelID": "18507", - "crownLandUsePIN": "19062", - "crownLandFileNumber": "19065", - "landDescription": "LOT 4 OF LOT 1 BLOCK 4 DISTRICT LOT 4 PLAN 7474" + "dateNoted": "2017-09-06", + "parcelID": "18732", + "crownLandUsePIN": "15839", + "crownLandFileNumber": "20833", + "landDescription": "LOT 5 OF LOT 4 BLOCK 5 DISTRICT LOT 5 PLAN 3411" } ], "siteDisclosures": [ { - "uuid": "ef404b19-1f11-4a3b-bddc-55b005ac204d", - "siteRegistry": false, - "dateReceived": "2023-02-21", - "dateCompleted": "2022-12-30", - "dateEntered": "2015-01-19", - "dateRegistrar": "2014-11-13", - "dateLocalAuthorityReceived": "2020-02-18", - "summary": "Rem rerum pariatur.\nDolores asperiores accusantium aut.\nSint ab velit excepturi soluta quasi dolorum numquam vitae.", - "informationUsed": "Doloremque recusandae veritatis nesciunt.\nRatione in rem nihil modi quas et cupiditate.\nOptio alias sequi recusandae enim eum.\nIn quaerat provident nam tenetur pariatur eaque assumenda.\nTempore pariatur in inventore similique deserunt.", - "pastOrPresentOrders": "Veniam eaque earum ipsa assumenda.\nHarum facere reiciendis sapiente officia.", + "uuid": "73b155b8-0a42-41a4-8269-2a6865ccf2c5", + "siteRegistry": true, + "dateReceived": "2021-05-29", + "dateCompleted": "2018-12-29", + "dateEntered": "2014-05-24", + "dateRegistrar": "2018-03-21", + "dateLocalAuthorityReceived": "2018-05-03", + "summary": "Ut sit assumenda quasi blanditiis ipsum quod repellendus minus.\nVoluptatum deserunt itaque occaecati ab perferendis praesentium ad.\nCulpa illum officia error ratione possimus culpa nihil at placeat.", + "informationUsed": "Aspernatur architecto reprehenderit.\nEveniet maiores sit iure optio eaque voluptate autem dolorem.\nTemporibus suscipit voluptatum dolorem est.", + "pastOrPresentOrders": "Qui in quidem assumenda odio laboriosam ea libero.", "commercialAndIndustrialPurposes": [ { - "uuid": "e591f17a-22ea-4028-a425-2f9ef6eb937d", - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false - }, - { - "uuid": "23f48176-e16f-4a52-844e-6d727ebba759", + "uuid": "f9253851-472b-4e3d-a979-2621d2e3335d", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { - "uuid": "cceaccf1-e5b8-41a4-8345-4ace2a65125f", - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true - }, - { - "uuid": "f517873b-8fee-4d26-b4c5-272460aa702e", - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true - } - ] - }, - { - "uuid": "cfd32523-a4b2-4364-95a2-bc2df513fbb4", - "siteRegistry": false, - "dateReceived": "2017-10-20", - "dateCompleted": "2022-05-11", - "dateEntered": "2016-08-29", - "dateRegistrar": "2019-05-15", - "dateLocalAuthorityReceived": "2015-12-11", - "summary": "Atque ut eius.\nQui ducimus necessitatibus nam eaque impedit nobis molestiae.\nRecusandae perspiciatis veritatis libero commodi quas deleniti maiores.", - "informationUsed": "Qui quos ipsum dolores nisi quidem pariatur maxime suscipit.\nLaudantium nulla ratione expedita quisquam ex similique exercitationem placeat.\nRem qui ex placeat culpa deleniti.", - "pastOrPresentOrders": "Optio dolor doloribus recusandae porro dicta.", - "commercialAndIndustrialPurposes": [ - { - "uuid": "6af6dc7f-cc3d-4957-830e-5fc0d148c92b", + "uuid": "f28e8128-822e-4158-8458-365f91551807", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { - "uuid": "c061649c-923c-4169-9e36-7c875aa4806b", - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true - }, - { - "uuid": "46b5d6be-90bb-488d-bdeb-e3348da6604a", - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false - }, - { - "uuid": "3ddd4b97-06f8-4125-a202-d465c2e4558b", - "scheduleReference": "F1*", + "uuid": "ca88210a-0cbb-45db-bbcf-3f32cec60ae8", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false + "siteRegistry": true } ] } ], "activityLog": [ { - "uuid": "7916e0a7-ff27-4ef2-97ac-bea688deb652", - "siteRegistry": false, + "uuid": "45c4a65f-1143-476e-aa07-b6edceba05c2", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "HUELS OLGA", - "timestamp": "2017-03-10" + "user": "BASHIRIAN ABBY", + "timestamp": "2018-07-16" }, { - "uuid": "7c5d46a6-001e-45a3-8aea-e2e884571729", + "uuid": "1e50c597-24c6-40ca-83e3-df2f17605b5f", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "BECKER KAREN", - "timestamp": "2013-12-14" + "user": "GERHOLD URIEL", + "timestamp": "2020-07-11" }, { - "uuid": "b8596e2a-b4f4-4a9f-8746-5b872f7d4104", + "uuid": "dea72c37-3637-4fd9-a84e-f869b6703ef0", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "O'REILLY CLEMENTINA", - "timestamp": "2023-03-01" + "user": "HAUCK ZION", + "timestamp": "2023-02-13" }, { - "uuid": "c4452ec8-8af1-4d8c-9b40-cb7bfcd1d5ee", + "uuid": "b8b191d5-d4ee-4440-99a1-b30da2cfc1fc", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "GISLASON EINO", - "timestamp": "2016-05-02" + "user": "KOEPP FRIDA", + "timestamp": "2020-11-17" }, { - "uuid": "7a7891ab-b7ed-49f1-aebc-ef26a970ab59", - "siteRegistry": true, + "uuid": "ec785128-882b-4a8c-afe7-d803c31b4f6b", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "ROLFSON BETTE", - "timestamp": "2018-05-01" + "user": "ERNSER ALVA", + "timestamp": "2020-05-05" }, { - "uuid": "f752f5d9-f6b0-4715-b5ad-dea045fc3a9f", - "siteRegistry": true, + "uuid": "7855b6c4-06e2-4112-9ead-6d080e2aee45", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "GRANT JANAE", - "timestamp": "2023-02-08" + "user": "LITTLE AMINA", + "timestamp": "2018-03-31" }, { - "uuid": "954cd368-5d8f-427c-90bc-0079b49c2d0d", + "uuid": "c4f443ab-9942-4cb6-b35b-4f2d91b62eb3", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "HIRTHE OLIN", - "timestamp": "2020-08-05" + "user": "SAWAYN JABARI", + "timestamp": "2014-01-30" }, { - "uuid": "dc3a78e7-df36-421c-9cdd-925e3eb2fc31", + "uuid": "553f260d-5b72-4dc4-a8a7-0d47c6b41b9c", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "KOHLER GIOVANI", - "timestamp": "2021-04-02" + "user": "ANDERSON LEONE", + "timestamp": "2017-10-17" + }, + { + "uuid": "15d6d50f-53b7-4a7e-bfd2-d5650746a3f5", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "HINTZ MAYE", + "timestamp": "2021-03-15" } ], "associatedSites": [ { - "uuid": "6fd32b4d-5572-4ffb-91f9-f206e52da25f", - "dateNoted": "2018-12-17", + "uuid": "88cb5250-dce3-4129-9c6b-19f4aab129c7", + "dateNoted": "2014-06-22", "notes": "", - "parcelID": "19593", - "siteID": "17528", - "siteRegistry": true + "parcelID": "18657", + "siteID": "16531", + "siteRegistry": false }, { - "uuid": "694ca8da-4e5b-47bc-8a06-7e05505aff70", - "dateNoted": "2021-12-27", + "uuid": "7de66089-82ab-4a65-b3f4-ec12149a54e6", + "dateNoted": "2023-06-22", "notes": "", - "parcelID": "18580", - "siteID": "15914", - "siteRegistry": true + "parcelID": "18239", + "siteID": "15746", + "siteRegistry": false } ] }, { - "uuid": "eaa5fdad-24bc-4325-a316-87bce1ccbb02", - "siteID": 18725, - "address": "32881 McKenzie Lake", - "latitude": 58.0056, - "longitude": -125.8021, - "lastUpdated": "2023-02-10", - "city": "Koeppberg", + "uuid": "c0be4180-f0c3-4633-984b-c213a571c49f", + "siteID": 15746, + "address": "6633 Ena Row", + "latitude": 55.8588, + "longitude": -133.6322, + "lastUpdated": "2018-04-10", + "city": "North Jarrell", "region": "Vancouver Island/Coast", - "victoriaFile": "26250-20/5641", + "victoriaFile": "26250-20/3260", "regionalFile": "N/A", "parcelIDs": [ - 8385057, - 7373155, - 8145200, - 8255780, - 4523650 + 1186653, + 577359, + 7930591, + 9240048, + 992156 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "34f8b1b8-7225-4170-886d-037c3a2a4e7d", - "createdAt": "2021-08-25", - "completed": "2017-03-24", - "initiated": "2022-06-14", - "ministryContact": "PROHASKA CIELO", + "uuid": "5a39b4c4-7766-4f3c-9f17-3a9bfa51f256", + "createdAt": "2019-10-10", + "completed": "2015-10-17", + "initiated": "2017-10-31", + "ministryContact": "GRIMES VINCE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -62794,26 +73694,44 @@ ], "notationParticipants": [ { - "uuid": "b6d770a2-07dd-4eab-9589-f0e85449ad2c", + "uuid": "4221a22a-369f-4db7-82d7-a0538be455d8", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "b9143652-de14-4d55-b263-befd5f027cd3", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "6772b39c-6a06-497c-9874-4236f1daf713", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "0b18d9c5-107d-4d4e-9ca3-c6ed3130490f", + "uuid": "6368b57c-48a2-41a3-a868-a46c726152fd", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true + }, + { + "uuid": "a9f3edea-0fe2-4798-b575-0c4886af590e", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true } ], "siteRegistry": false }, { - "uuid": "a72f6fba-b6b6-4aab-bf37-e11f77935cc4", - "createdAt": "2022-08-09", - "completed": "2019-12-22", - "initiated": "2023-01-12", - "ministryContact": "FEIL HAROLD", + "uuid": "6b680901-d54f-4d1e-be48-f36f66b3fcd6", + "createdAt": "2019-05-15", + "completed": "2023-09-25", + "initiated": "2017-12-08", + "ministryContact": "REICHERT LORENZ", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -62822,32 +73740,20 @@ ], "notationParticipants": [ { - "uuid": "42980ff2-85db-4c32-b75f-fc4ce4af59dc", + "uuid": "870acef5-7ce0-4f60-8e24-d89e01bcfba5", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "uuid": "470bb865-1754-447b-b2a7-5d212dadb8ec", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "a820b420-c43e-4361-972b-05884d2f5505", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "uuid": "e29a27fe-c94f-4d1b-b349-af9ea465fd56", + "uuid": "26f1e0f0-3bbd-4d1e-abbb-b01beb746e38", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "bf15c6f8-cb2e-4dfa-a2b0-51d8192f5387", - "name": "SHELL CANADA PRODUCTS", + "uuid": "a60dd63d-8e8c-41d1-8704-736af7979709", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true } @@ -62857,21 +73763,21 @@ ], "participants": [ { - "uuid": "c35c177e-de27-4f73-b94c-285afc300778", - "name": "SHELL CANADA PRODUCTS", - "endDate": "2016-09-06", - "startDate": "2019-12-16", + "uuid": "a7a09fca-1efd-4332-914f-4dadd58bfd59", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2016-08-01", + "startDate": "2018-01-16", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": true }, { - "uuid": "b4d8c02a-8fa9-479b-a76a-9f351f40290c", - "name": "AMET, DOLOR SIT", - "endDate": "2023-08-30", - "startDate": "2019-07-10", + "uuid": "5a5f17e8-fce7-494a-adb0-9bbddf6d0981", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2017-07-14", + "startDate": "2015-10-23", "notes": "", "roles": [ "ORGANIZATION" @@ -62879,205 +73785,246 @@ "siteRegistry": true } ], - "suspectLandUses": [ + "documents": [ { - "uuid": "af1f3f2b-9882-4c01-a4dc-9986c504c219", - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-03-15 (described on Site Profile dated 2014-03-15)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "uuid": "7211f9e8-0c71-40a4-b018-f45a7c9645d9", + "siteRegistry": true, + "documentDate": "2019-09-09", + "receivedDate": "2017-09-23", + "uploadedDate": "2022-10-31", + "title": "Summary of Site Conditions, 1537 W 41st Avenue, Vancouver", + "participants": [ + { + "uuid": "4405fc55-357a-4568-8768-cfb10a07e9c6", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": true, + "role": "AUTHOR" + } + ] }, { - "uuid": "bf76fef5-acef-44a1-9e4d-66778686c0cf", + "uuid": "284af366-d593-488e-8a01-9eaf27c867ee", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-09-13 (described on Site Profile dated 2015-09-13)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" - }, - { - "uuid": "b5050435-3fef-48be-98cc-7442d0a3246b", - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2023-08-04 (described on Site Profile dated 2023-08-04)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" - }, + "documentDate": "2015-11-09", + "receivedDate": "2018-11-26", + "uploadedDate": "2016-09-20", + "title": "Preliminary Site Investigation, Detailed Site Investigation and Remedial Plan for the Management Area adjacent to the Shell Site at 1503 West 41st Ave", + "participants": [ + { + "uuid": "f691deed-1c4f-45d6-a112-7a1595388c43", + "name": "AMET, DOLOR SIT", + "siteRegistry": false, + "role": "AUTHOR" + } + ] + } + ], + "suspectLandUses": [ { - "uuid": "b1bade69-31e5-433a-8dfd-4f2415094d49", + "uuid": "e8b24635-a55b-4ae9-b4a3-c252bb207079", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-03-04 (described on Site Profile dated 2014-03-04)", + "notes": "INSERTED FOR SITE PROFILE DATED 2018-04-02 (described on Site Profile dated 2018-04-02)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "uuid": "da16bd56-6757-42ec-95ae-e6894e567030", + "uuid": "fd2782b9-2cb4-4176-8a5e-eb9619a60595", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2023-09-26 (described on Site Profile dated 2023-09-26)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "notes": "INSERTED FOR SITE PROFILE DATED 2014-07-18 (described on Site Profile dated 2014-07-18)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], "parcelDescriptions": [ { - "uuid": "9250ac60-d43a-404c-91d7-92de4dd461c2", - "siteRegistry": true, - "dateNoted": "2022-01-04", - "parcelID": "20567", - "crownLandUsePIN": "19096", - "crownLandFileNumber": "18965", - "landDescription": "LOT 3 OF LOT 2 BLOCK 4 DISTRICT LOT 5 PLAN 3628" + "uuid": "c9bbe1fa-a153-4ceb-8710-148e351c7f45", + "siteRegistry": false, + "dateNoted": "2022-11-27", + "parcelID": "20952", + "crownLandUsePIN": "20310", + "crownLandFileNumber": "19825", + "landDescription": "LOT 2 OF LOT 4 BLOCK 4 DISTRICT LOT 5 PLAN 4870" }, { - "uuid": "67908c86-eca5-4bd6-ba2c-946b04fc26b7", + "uuid": "c07b3f5c-41a4-428a-a666-305d4deb9494", "siteRegistry": false, - "dateNoted": "2019-09-04", - "parcelID": "16609", - "crownLandUsePIN": "18868", - "crownLandFileNumber": "16359", - "landDescription": "LOT 1 OF LOT 1 BLOCK 2 DISTRICT LOT 1 PLAN 3002" + "dateNoted": "2017-04-01", + "parcelID": "15843", + "crownLandUsePIN": "19941", + "crownLandFileNumber": "19413", + "landDescription": "LOT 4 OF LOT 4 BLOCK 3 DISTRICT LOT 5 PLAN 4579" }, { - "uuid": "e2b3d70c-73b3-4b3a-900a-37beaf97ab62", - "siteRegistry": false, - "dateNoted": "2017-11-11", - "parcelID": "18896", - "crownLandUsePIN": "19619", - "crownLandFileNumber": "17515", - "landDescription": "LOT 5 OF LOT 1 BLOCK 4 DISTRICT LOT 3 PLAN 9764" + "uuid": "da2f9c5b-181a-4443-a49b-effad0a7e9d9", + "siteRegistry": true, + "dateNoted": "2022-03-12", + "parcelID": "16598", + "crownLandUsePIN": "15771", + "crownLandFileNumber": "17538", + "landDescription": "LOT 1 OF LOT 4 BLOCK 4 DISTRICT LOT 5 PLAN 3915" }, { - "uuid": "82b8c1ae-401b-474c-84a9-fa84cc2f0952", + "uuid": "fb0d3bdc-976d-4f1c-aa7a-5e4ea0cb6e45", "siteRegistry": false, - "dateNoted": "2014-03-30", - "parcelID": "20699", - "crownLandUsePIN": "15591", - "crownLandFileNumber": "16505", - "landDescription": "LOT 1 OF LOT 5 BLOCK 3 DISTRICT LOT 2 PLAN 4227" + "dateNoted": "2014-11-14", + "parcelID": "17218", + "crownLandUsePIN": "16393", + "crownLandFileNumber": "16757", + "landDescription": "LOT 4 OF LOT 5 BLOCK 2 DISTRICT LOT 1 PLAN 4827" + }, + { + "uuid": "22e26d3f-7c46-42df-aeca-14a915f37f0b", + "siteRegistry": true, + "dateNoted": "2019-06-14", + "parcelID": "19560", + "crownLandUsePIN": "18722", + "crownLandFileNumber": "20228", + "landDescription": "LOT 3 OF LOT 3 BLOCK 3 DISTRICT LOT 2 PLAN 7525" } ], "siteDisclosures": [ { - "uuid": "60767b2e-c345-437f-8019-bb03a100ed40", + "uuid": "fa4ad3b5-3980-4851-8e4b-e6d12a26d163", "siteRegistry": false, - "dateReceived": "2017-12-23", - "dateCompleted": "2018-08-15", - "dateEntered": "2017-11-07", - "dateRegistrar": "2017-08-30", - "dateLocalAuthorityReceived": "2015-12-21", - "summary": "Molestiae facilis ea vel excepturi velit voluptatibus beatae iste aliquid.\nEum cum consectetur labore ipsum voluptatum nemo quidem.", - "informationUsed": "Vitae atque magnam quo incidunt minus placeat.\nQuaerat neque nisi possimus laudantium minima harum earum aut.\nItaque accusamus rerum et voluptas voluptas.\nFugit nihil animi qui.\nConsequatur quo id vitae.", - "pastOrPresentOrders": "Optio suscipit sapiente.\nRerum amet sapiente mollitia.", + "dateReceived": "2017-12-24", + "dateCompleted": "2015-01-22", + "dateEntered": "2020-07-08", + "dateRegistrar": "2017-02-04", + "dateLocalAuthorityReceived": "2022-07-12", + "summary": "Iure architecto maxime dolore maiores reiciendis.\nUt velit neque cupiditate consequatur consequatur expedita nostrum eum porro.", + "informationUsed": "Similique nobis praesentium asperiores natus numquam saepe minima quaerat recusandae.\nAd similique nobis excepturi labore eveniet.\nAutem voluptatibus ea recusandae officiis aliquid expedita perspiciatis error.\nVel facere facere asperiores sequi consequuntur officia voluptas consequatur.\nMaiores excepturi quisquam minima.", + "pastOrPresentOrders": "Rem temporibus ad adipisci architecto amet praesentium tenetur dolore.\nEos itaque aliquam eligendi accusantium.", "commercialAndIndustrialPurposes": [ { - "uuid": "bcabff20-fd18-4a8b-b760-0aa5daa6f77f", + "uuid": "b1e86a20-0431-474b-9a09-1b194954174e", "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, { - "uuid": "01cc5cee-bccb-4b6b-8bb3-9f0f445b2ca5", + "uuid": "32a855de-175e-4f58-bea9-444aca55a850", "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false - }, - { - "uuid": "84287e11-fab9-4695-8c81-fb0791c0e448", - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true } ] } ], "activityLog": [ { - "uuid": "ec210d40-e789-4662-a976-ae7920a307a2", - "siteRegistry": false, + "uuid": "3cc94c6e-b948-426d-92c6-fd00efb7c950", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "HOEGER BERNIECE", - "timestamp": "2023-03-27" + "user": "BAILEY SAMARA", + "timestamp": "2018-12-24" }, { - "uuid": "f7048a86-54fa-4b3d-886f-e6352c2dbdc8", + "uuid": "548e39dd-f7d3-4e84-ad35-a60ef75fcf87", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "HICKLE JULIO", - "timestamp": "2020-10-27" + "user": "LEHNER PASCALE", + "timestamp": "2019-02-13" }, { - "uuid": "69ce2b4a-e9a7-4475-8c52-da5a92d92211", - "siteRegistry": false, + "uuid": "dfedc39f-4796-4ec5-a9f4-318da9b308f3", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "STOKES VERNER", - "timestamp": "2014-08-19" + "user": "OLSON ALI", + "timestamp": "2016-07-09" }, { - "uuid": "893262d8-d8e9-4f5d-9269-15adea9245ea", + "uuid": "7f85f2d1-bea1-4800-95e7-570d5cb8b360", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "THOMPSON MARTY", - "timestamp": "2023-06-28" + "user": "KEMMER JANIE", + "timestamp": "2022-03-11" }, { - "uuid": "e22784e5-866c-4f97-9f94-f503f8b3c703", - "siteRegistry": false, + "uuid": "275ecaa6-d18a-47c8-81e6-15c6ed6c376a", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "MCGLYNN LURLINE", - "timestamp": "2020-05-31" + "user": "TORPHY-KOELPIN ELOISA", + "timestamp": "2016-05-20" }, { - "uuid": "da973cb2-30ec-4721-a868-de24d31a982e", + "uuid": "1ba9dbac-ca12-418d-92b4-282126f5a392", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "KULAS PARIS", - "timestamp": "2022-08-02" + "user": "QUITZON GERMAINE", + "timestamp": "2021-08-28" }, { - "uuid": "d27470f7-ef2e-4697-8d27-95ef90f20a4e", + "uuid": "3e26aa30-f21a-40a3-b34c-94c68ad4739b", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "WOLF NIGEL", - "timestamp": "2016-07-07" + "user": "HAUCK GREG", + "timestamp": "2020-03-08" }, { - "uuid": "016e6352-577a-4040-ad18-f587996a3057", + "uuid": "fa2810bb-8f0d-4a9b-96c2-1fabb1d60a91", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "ERDMAN FOSTER", - "timestamp": "2017-12-15" + "user": "ROWE MAGDALEN", + "timestamp": "2018-07-13" + }, + { + "uuid": "17fb9d6f-4eba-4153-8b79-0e4d60790889", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "CROOKS MAIA", + "timestamp": "2015-10-08" + }, + { + "uuid": "b1b58a2b-905c-4fe7-9dff-1beab8d75a6e", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "WILDERMAN KIRSTIN", + "timestamp": "2019-02-26" } ], "associatedSites": [ { - "uuid": "d5d4913e-5703-48a8-a178-a49826c13366", - "dateNoted": "2017-06-06", + "uuid": "7cc1f473-4f55-49a8-8b52-5511bb363e34", + "dateNoted": "2020-07-29", "notes": "", - "parcelID": "17052", - "siteID": "16133", + "parcelID": "20753", + "siteID": "15561", "siteRegistry": true + }, + { + "uuid": "f2604637-f9e9-4d2b-baad-9463d59d3ce2", + "dateNoted": "2022-12-15", + "notes": "", + "parcelID": "19563", + "siteID": "17326", + "siteRegistry": false } ] }, { - "uuid": "8a77d904-38df-4708-a998-04cda559d666", - "siteID": 19893, - "address": "43896 Mitchell Mall", - "latitude": 49.1373, - "longitude": -127.5032, - "lastUpdated": "2015-04-24", - "city": "Dooleystead", - "region": "Mainland/Southwest", - "victoriaFile": "26250-20/2654", + "uuid": "7656d0fe-f877-41ae-8c38-80df3c9b907b", + "siteID": 20237, + "address": "2314 O'Keefe Trace", + "latitude": 50.5291, + "longitude": -132.0835, + "lastUpdated": "2014-06-06", + "city": "Haltom City", + "region": " North Coast", + "victoriaFile": "26250-20/14392", "regionalFile": "N/A", "parcelIDs": [ - 7729087, - 5576950, - 8707706, - 6799492, - 2750266 + 1758631, + 9751579, + 7254179, + 7428992, + 3877636 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "f4744860-d445-4b8c-8b5d-b16970f436c6", - "createdAt": "2019-06-15", - "completed": "2020-04-10", - "initiated": "2020-07-03", - "ministryContact": "DICKINSON ELNORA", + "uuid": "1de36016-c5c3-4e2c-b0dd-54c5511fb7c0", + "createdAt": "2022-11-14", + "completed": "2014-06-12", + "initiated": "2016-02-20", + "ministryContact": "FAHEY EZEQUIEL", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -63086,38 +74033,32 @@ ], "notationParticipants": [ { - "uuid": "1b0a47cb-4c0c-4499-ace2-828eddd3f1a7", + "uuid": "4809e542-ea35-4bb1-aca4-c4a6d015dedc", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false }, { - "uuid": "003bddcb-f4eb-4269-aeef-143f1ed8a5d8", + "uuid": "9cc9e4b9-a3d4-44f5-818f-0f305c962f9e", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "d39d5a2b-c072-4481-8eae-3c0408055e41", - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "uuid": "9e8b5efd-8dd9-42ed-bc16-df61c02b0aa4", - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "uuid": "6e5789bb-8d51-4fb9-ae7b-e02f7102d9bb", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "1b9d6886-4d9a-4418-acdf-907b8094e2a1", - "createdAt": "2016-12-01", - "completed": "2017-05-27", - "initiated": "2015-07-29", - "ministryContact": "KUPHAL LEXIE", + "uuid": "260a86c1-34a7-4c98-bd51-9c302995fe66", + "createdAt": "2016-02-12", + "completed": "2019-04-23", + "initiated": "2018-09-04", + "ministryContact": "VONRUEDEN AMANI", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -63126,44 +74067,32 @@ ], "notationParticipants": [ { - "uuid": "3cc7dd2a-4837-46f9-bbe8-b2f65ed0b209", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "uuid": "4083428c-0a95-48e5-a2ca-0ef64d465de2", + "uuid": "f3984002-cbff-42d5-95ff-1e1cd7265d71", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "uuid": "5efb250b-2d1a-4e4d-8ac2-d5125719a07f", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "4e605442-a045-45ae-a99e-905b69e48053", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "uuid": "b7a087ae-33d9-40b8-b009-cbb1b052b9a0", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "e20bc64d-b6e5-42c3-936f-f32744f2404e", + "uuid": "5423c32a-d5b9-427e-83ec-c9e462b1c4d9", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "d5691fb7-a575-4779-9a4c-4c2ede2289b5", - "createdAt": "2022-12-10", - "completed": "2014-05-29", - "initiated": "2016-11-10", - "ministryContact": "DARE EMMY", + "uuid": "246a761b-6bd1-42a7-ac37-7c60e759c2a0", + "createdAt": "2013-12-01", + "completed": "2016-09-13", + "initiated": "2018-09-24", + "ministryContact": "WISOZK-LITTEL CESAR", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -63172,32 +74101,38 @@ ], "notationParticipants": [ { - "uuid": "dcfa2c53-637d-47db-8059-3ad678412d64", + "uuid": "0d3d366d-200c-4cd6-a621-bdd8ebce1c49", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true }, { - "uuid": "91ca2f05-3f8c-45f7-9672-6388cfa942c2", + "uuid": "bb1e0b3b-4376-4bd3-9849-315cab5e9607", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true }, { - "uuid": "9e2a706f-0b57-4eae-96f9-8d4ba5884f4d", + "uuid": "c1e268e7-4c1d-4524-82f5-0e279805e4a6", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false + }, + { + "uuid": "d718c560-3648-4f6f-8191-064bb4eb21d1", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "32612cc7-39e5-4f58-9f11-c4ce6ec79595", - "createdAt": "2014-09-01", - "completed": "2015-09-23", - "initiated": "2014-01-29", - "ministryContact": "FRIESEN REBA", + "uuid": "375759eb-ff41-4c17-aeee-52c3e11bc962", + "createdAt": "2022-12-02", + "completed": "2017-05-31", + "initiated": "2023-04-15", + "ministryContact": "MITCHELL CHADD", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -63206,26 +74141,32 @@ ], "notationParticipants": [ { - "uuid": "af296418-d12d-41d2-9c33-7920c2846a2f", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "uuid": "0a8b4b73-0912-4937-854c-fc03143a9898", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "e6435fd4-f6cd-442b-86ff-310abd803291", + "uuid": "fcf825cf-b7c1-4bbe-9268-bf0716f5eb74", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false + }, + { + "uuid": "1e33c786-e532-4f21-aafe-23f011a0a72e", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false } ], "siteRegistry": false }, { - "uuid": "1201baf8-26d7-43e6-97be-08c69a8c10d9", - "createdAt": "2020-11-10", - "completed": "2023-06-03", - "initiated": "2022-01-03", - "ministryContact": "FARRELL ANTONETTA", + "uuid": "8c961625-2255-4bb9-8256-7b5b18b1a729", + "createdAt": "2021-10-20", + "completed": "2017-02-16", + "initiated": "2016-06-16", + "ministryContact": "ZULAUF CHRISTIAN", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -63234,34 +74175,16 @@ ], "notationParticipants": [ { - "uuid": "62b2c210-5315-47b9-b7c0-ac2adecef2e6", + "uuid": "ababd2ae-4c9b-4616-99f0-c72be4984cd7", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "uuid": "a5c2fcbc-f4fa-42d9-afa5-e820e113fc29", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "uuid": "cc39cdc9-2264-4075-8b87-d92ce8aa4bcf", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false + "role": "SUBMITTED BY", + "siteRegistry": true }, { - "uuid": "d9b06eb9-bcd4-40ba-a020-913744594bff", + "uuid": "07699aac-0c46-4467-9904-d8c40182cb2a", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false - }, - { - "uuid": "aafe9484-aaaf-435b-b2d1-54369e9ff2b0", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true } ], "siteRegistry": true @@ -63269,10 +74192,10 @@ ], "participants": [ { - "uuid": "e9ef8c94-9b07-4040-909f-d238c2280b09", - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2013-10-24", - "startDate": "2019-11-21", + "uuid": "24bbbf08-692e-460c-85da-390a179f8ac9", + "name": "IPSUM", + "endDate": "2017-08-22", + "startDate": "2021-04-10", "notes": "", "roles": [ "EMPLOYEE" @@ -63280,137 +74203,180 @@ "siteRegistry": false }, { - "uuid": "a44b65da-3437-4bbf-bf35-129b1e6e15d8", + "uuid": "3b8085cf-e888-4acc-8eb8-4efed5783c72", "name": "AMET, DOLOR SIT", - "endDate": "2019-07-09", - "startDate": "2015-11-23", + "endDate": "2019-03-18", + "startDate": "2021-01-02", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": true } ], - "suspectLandUses": [ + "documents": [ { - "uuid": "4e03b3fa-bb50-4a7d-ab94-fa80c91e0dc5", - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-10-22 (described on Site Profile dated 2016-10-22)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "uuid": "bdda69d3-83e0-487c-b025-4f4186317949", + "siteRegistry": true, + "documentDate": "2017-02-08", + "receivedDate": "2016-05-21", + "uploadedDate": "2017-05-10", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "4a93505b-3ddf-46da-b404-f8f1a5336854", + "name": "IPSUM", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "9058ca3e-7621-44ad-bafa-c1726eb0c8d1", + "name": "AMET, DOLOR SIT", + "siteRegistry": true, + "role": "AUTHOR" + } + ] }, { - "uuid": "87abf5cc-214b-4f6a-a28d-488d6362e4ab", - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-12-18 (described on Site Profile dated 2022-12-18)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "uuid": "4505a339-f5ce-4b65-bb12-04238a691da8", + "siteRegistry": false, + "documentDate": "2023-03-16", + "receivedDate": "2018-04-18", + "uploadedDate": "2015-09-10", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "2c512ad9-ac26-4ae1-a9f4-d6b1c4abd980", + "name": "IPSUM", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "2ca118bc-d98e-4e38-b845-4b82799a6813", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": true, + "role": "AUTHOR" + } + ] }, { - "uuid": "fd8a27d2-ea28-4e15-a2aa-00d47c648f20", + "uuid": "73daf946-0575-45d8-9bee-abbc0d6111bd", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-06-04 (described on Site Profile dated 2021-06-04)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "documentDate": "2016-04-13", + "receivedDate": "2019-07-23", + "uploadedDate": "2020-03-16", + "title": "Preliminary Site Investigation, Detailed Site Investigation and Remedial Plan for the Management Area adjacent to the Shell Site at 1503 West 41st Ave", + "participants": [ + { + "uuid": "dfeeb52e-5189-40bd-ad7f-93ba4bbadd0a", + "name": "AMET, DOLOR SIT", + "siteRegistry": false, + "role": "AUTHOR" + } + ] }, { - "uuid": "7fd204ed-b22b-44f1-85b9-50fa63830845", + "uuid": "e7742d0e-e378-4a34-9a1e-e55959c1e70c", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-02-22 (described on Site Profile dated 2016-02-22)", + "documentDate": "2020-04-15", + "receivedDate": "2023-08-16", + "uploadedDate": "2018-04-28", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "f4cec5ff-f38a-4435-97aa-e28790bac67c", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "d9943fc1-e9fb-4adb-b6fd-3803978c9fd7", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "e047919d-7586-4f2f-891c-cdf5baade63b", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": true, + "role": "AUTHOR" + } + ] + } + ], + "suspectLandUses": [ + { + "uuid": "061ec4f8-5e9d-4df7-bf0a-fc202a3d8d4b", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2021-01-06 (described on Site Profile dated 2021-01-06)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "uuid": "9376fa15-b551-4460-9151-466fbd859066", - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-05-19 (described on Site Profile dated 2019-05-19)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "uuid": "db6d2a11-0971-49da-8685-2e6c3003b727", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2014-03-22 (described on Site Profile dated 2014-03-22)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], "parcelDescriptions": [ { - "uuid": "b8ecab93-b702-4b09-9e90-d06601e3b789", - "siteRegistry": false, - "dateNoted": "2020-07-21", - "parcelID": "15536", - "crownLandUsePIN": "17913", - "crownLandFileNumber": "20606", - "landDescription": "LOT 4 OF LOT 1 BLOCK 1 DISTRICT LOT 2 PLAN 3620" + "uuid": "3a8629c2-5594-42c0-ae72-14f098e254de", + "siteRegistry": true, + "dateNoted": "2019-05-23", + "parcelID": "16385", + "crownLandUsePIN": "17964", + "crownLandFileNumber": "20716", + "landDescription": "LOT 5 OF LOT 4 BLOCK 4 DISTRICT LOT 5 PLAN 6168" }, { - "uuid": "d6219801-ff83-4017-a9cc-5ccd5fc61437", + "uuid": "8d1700b0-e81e-481c-b055-8efda3dcc361", "siteRegistry": true, - "dateNoted": "2015-09-16", - "parcelID": "19596", - "crownLandUsePIN": "17742", - "crownLandFileNumber": "15753", - "landDescription": "LOT 1 OF LOT 2 BLOCK 2 DISTRICT LOT 1 PLAN 8908" + "dateNoted": "2016-08-03", + "parcelID": "17315", + "crownLandUsePIN": "19244", + "crownLandFileNumber": "15217", + "landDescription": "LOT 1 OF LOT 3 BLOCK 3 DISTRICT LOT 5 PLAN 4577" + }, + { + "uuid": "52c5e8d9-42ac-4bf7-bc9b-b229395d62a6", + "siteRegistry": false, + "dateNoted": "2023-01-22", + "parcelID": "18473", + "crownLandUsePIN": "20069", + "crownLandFileNumber": "20752", + "landDescription": "LOT 3 OF LOT 2 BLOCK 3 DISTRICT LOT 2 PLAN 3156" }, { - "uuid": "ac7ec786-39e5-496f-8a26-ff90ca63e331", + "uuid": "897d398e-5ee9-4773-8576-1edbc00e94f2", "siteRegistry": true, - "dateNoted": "2021-12-29", - "parcelID": "19842", - "crownLandUsePIN": "16819", - "crownLandFileNumber": "20701", - "landDescription": "LOT 3 OF LOT 5 BLOCK 1 DISTRICT LOT 1 PLAN 8695" + "dateNoted": "2021-09-20", + "parcelID": "16941", + "crownLandUsePIN": "16068", + "crownLandFileNumber": "18327", + "landDescription": "LOT 5 OF LOT 1 BLOCK 2 DISTRICT LOT 2 PLAN 3835" } ], "siteDisclosures": [ { - "uuid": "802c7a75-3c5d-4398-9caa-24c123a494c4", - "siteRegistry": false, - "dateReceived": "2017-03-08", - "dateCompleted": "2021-04-27", - "dateEntered": "2017-05-27", - "dateRegistrar": "2014-05-25", - "dateLocalAuthorityReceived": "2019-01-12", - "summary": "Corporis libero pariatur vero illum unde aut omnis qui.\nEum labore recusandae incidunt recusandae ipsa delectus quis deleniti fugiat.\nQuod similique facilis dolorum quasi.", - "informationUsed": "Cumque porro iste impedit quam quod molestiae.\nEarum voluptatem nostrum in iste.\nDolores velit mollitia aut veniam.", - "pastOrPresentOrders": "Similique tempora commodi ut in.", + "uuid": "bb622efd-c33f-4e3b-98b2-6af55cc66bb6", + "siteRegistry": true, + "dateReceived": "2019-05-25", + "dateCompleted": "2018-08-23", + "dateEntered": "2020-09-19", + "dateRegistrar": "2020-05-22", + "dateLocalAuthorityReceived": "2013-12-19", + "summary": "Quos commodi dolor unde.\nQuos accusantium blanditiis aspernatur.\nEaque nostrum nam provident placeat nam laborum dignissimos sequi.", + "informationUsed": "Illo fugiat recusandae.\nVoluptatem et voluptate aspernatur odio.\nNeque deleniti ipsum numquam omnis.", + "pastOrPresentOrders": "Non atque dicta sunt dolorem nulla voluptate.\nOdio a facilis quisquam ducimus.", "commercialAndIndustrialPurposes": [ { - "uuid": "86de9c48-c7a9-43a6-a9bf-b821292d05a6", - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false - }, - { - "uuid": "9e2bff9b-a8d9-4e8c-bc83-17a87d6ce7e5", - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true - }, - { - "uuid": "4cb9216c-12ff-4e77-9be5-c9fca7778389", - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false - }, - { - "uuid": "7622142c-c509-4711-90f2-bd7a9eb36614", + "uuid": "0e750d45-eedd-44e6-bf12-96b15525ee22", "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false - } - ] - }, - { - "uuid": "97c45b5f-7a17-46a2-8a51-0ffda85f1422", - "siteRegistry": false, - "dateReceived": "2023-06-25", - "dateCompleted": "2019-02-14", - "dateEntered": "2022-12-16", - "dateRegistrar": "2016-10-10", - "dateLocalAuthorityReceived": "2018-11-29", - "summary": "Autem quaerat ab cumque qui fugit distinctio mollitia ad sed.\nAperiam facilis illum architecto assumenda adipisci optio.\nAut natus earum.", - "informationUsed": "Quasi laboriosam nulla aperiam molestiae architecto nobis mollitia dolores.\nQuasi eaque molestiae dolorem ipsum sit quia nam.\nReprehenderit minima aspernatur maxime nulla aliquam iure voluptatibus.", - "pastOrPresentOrders": "Distinctio quasi minus voluptates.\nPossimus sit quidem reprehenderit expedita velit ullam.\nLaborum quas doloremque iste architecto sunt cumque ad cupiditate.", - "commercialAndIndustrialPurposes": [ - { - "uuid": "0d1bfd1d-fe48-4ef4-993c-0c255e91cbec", - "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { - "uuid": "82eb99c3-8555-4c6a-88b8-4e1bf623f160", + "uuid": "e1ba0475-d926-477b-bac6-aad7745040b4", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true @@ -63420,93 +74386,94 @@ ], "activityLog": [ { - "uuid": "bbdfad28-a6f7-45e0-b7b1-2bca686983bd", - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "MAYER ERNIE", - "timestamp": "2021-12-03" - }, - { - "uuid": "4bd5a582-2d47-4d43-9e00-9ee2566eaaa2", + "uuid": "0a8a7f12-6df2-49eb-aeef-71d7f67606c3", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "MERTZ CHRISTOPHER", - "timestamp": "2017-12-11" + "user": "HACKETT-LOWE JEFFREY", + "timestamp": "2019-04-24" }, { - "uuid": "7ce61688-c164-482d-bf81-5d338242a3a3", + "uuid": "2dc1858f-7145-478e-948a-7725dac41382", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "CHAMPLIN GENE", - "timestamp": "2021-04-26" + "user": "WOLF ABIGAYLE", + "timestamp": "2015-04-02" }, { - "uuid": "323aad58-6dbc-4e2f-b683-e296f386454d", - "siteRegistry": false, + "uuid": "e294f967-de8d-4ecb-a0f5-123783f4f138", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "HYATT ROGER", - "timestamp": "2014-08-17" + "user": "OLSON LEVI", + "timestamp": "2022-09-11" }, { - "uuid": "c0a04873-0871-485a-85d0-a55fd841d5f1", + "uuid": "bad2ccbb-2ca7-4154-a080-cea6f4225456", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "SMITH CARRIE", - "timestamp": "2014-10-16" + "user": "KUTCH AIDEN", + "timestamp": "2018-09-02" }, { - "uuid": "d0b4704b-4f2b-49ff-b6ac-6c0d9c85789e", + "uuid": "8b4b53da-fc17-45e6-84d4-93682d81be01", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "THIEL JALON", - "timestamp": "2021-03-12" + "user": "SCHULIST MALVINA", + "timestamp": "2017-02-18" } ], "associatedSites": [ { - "uuid": "f690f149-475d-477b-b4a3-27459bb1ceaf", - "dateNoted": "2015-02-23", + "uuid": "d1e48b89-9372-4fcc-972d-08af5ea2f257", + "dateNoted": "2014-01-02", "notes": "", - "parcelID": "18215", - "siteID": "18174", + "parcelID": "18563", + "siteID": "19065", "siteRegistry": false }, { - "uuid": "4c2eb564-685c-437a-8470-ba3b4ca94c77", - "dateNoted": "2022-03-23", + "uuid": "6ec65bf2-6fcd-4a02-9db0-af7982e6e564", + "dateNoted": "2020-01-12", "notes": "", - "parcelID": "15730", - "siteID": "16078", - "siteRegistry": false + "parcelID": "18629", + "siteID": "16579", + "siteRegistry": true + }, + { + "uuid": "a7ee62ea-1241-4168-a855-437ca8f80932", + "dateNoted": "2022-11-16", + "notes": "", + "parcelID": "17582", + "siteID": "20261", + "siteRegistry": true } ] }, { - "uuid": "9107af30-4f31-4fff-94de-df5bf1e99f34", - "siteID": 20380, - "address": "81343 Carter Forks", - "latitude": 51.5781, - "longitude": -126.033, - "lastUpdated": "2014-03-17", - "city": "Waelchistad", - "region": "Cariboo", - "victoriaFile": "26250-20/14905", + "uuid": "8b2ac8ee-0902-4057-b6c9-769532d083c0", + "siteID": 20859, + "address": "38048 Schroeder Valley", + "latitude": 52.0378, + "longitude": -138.2318, + "lastUpdated": "2023-10-16", + "city": "Waldorf", + "region": "Mainland/Southwest", + "victoriaFile": "26250-20/3350", "regionalFile": "N/A", "parcelIDs": [ - 9200581, - 3840719, - 580503, - 259659, - 9203969 + 6317452, + 3806048, + 745199, + 7753365, + 249802 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "32246000-1fe1-40d2-8dd5-6b2fe4baec43", - "createdAt": "2016-05-22", - "completed": "2020-10-18", - "initiated": "2018-04-09", - "ministryContact": "HOWELL BRADEN", + "uuid": "1a696d50-c729-4e16-b5f7-b3168af869b0", + "createdAt": "2018-10-12", + "completed": "2018-07-17", + "initiated": "2018-09-27", + "ministryContact": "MILLER MONSERRAT", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -63515,32 +74482,26 @@ ], "notationParticipants": [ { - "uuid": "e5d3dc37-ca6e-4f56-84d3-da0a00cc87f3", + "uuid": "42db3703-2752-4fa9-8165-ee0a524c220c", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "uuid": "08897ae7-16ba-48f0-b703-f8d6ba5efd8e", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", "siteRegistry": true }, { - "uuid": "c3f8e428-3f25-4775-8a26-7f0273a1d470", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "uuid": "746643bc-b717-41d9-b8a6-6f6b60e49c9d", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": true } ], "siteRegistry": false }, { - "uuid": "870db574-acfa-45bb-aea1-0352ab1718da", - "createdAt": "2016-01-07", - "completed": "2014-03-23", - "initiated": "2023-03-01", - "ministryContact": "TURCOTTE CHAUNCEY", + "uuid": "59488de3-1fc3-42f3-840f-97c22357df41", + "createdAt": "2016-04-30", + "completed": "2016-02-18", + "initiated": "2018-03-18", + "ministryContact": "MOEN WALLACE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -63549,31 +74510,31 @@ ], "notationParticipants": [ { - "uuid": "5065f81d-52be-404d-8022-0d52ca1b642d", + "uuid": "9140ef94-b377-42fb-aafa-03a32ac8ad3c", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true }, { - "uuid": "0986c140-470c-43bf-9d37-6437e7002315", + "uuid": "b630b2cd-26cc-4727-9b1c-de847c379271", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true }, { - "uuid": "603d56ce-5433-4525-a289-e93f2cb984a3", - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "uuid": "ebf041b9-fba5-4531-9cba-e1c1912c2e8a", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", "siteRegistry": false }, { - "uuid": "834859da-c88d-4288-8a4f-4214ab832399", - "name": "SHELL CANADA PRODUCTS", + "uuid": "e7ee54e9-e22e-4036-8950-88258486211b", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "9c920039-2f07-40d2-82c8-6612e1a12fd8", + "uuid": "576d9ca3-9dc1-4387-a9b9-aa86c3671be8", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false @@ -63582,11 +74543,11 @@ "siteRegistry": false }, { - "uuid": "0a0ab52a-f261-41b8-921c-2e1863c63c07", - "createdAt": "2020-03-31", - "completed": "2017-01-22", - "initiated": "2020-01-29", - "ministryContact": "SAWAYN MCKENZIE", + "uuid": "9b9f5b9b-d541-4fc0-a48c-12d5cbd15fd4", + "createdAt": "2022-10-20", + "completed": "2020-07-26", + "initiated": "2022-02-24", + "ministryContact": "HARBER KATHERYN", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -63595,38 +74556,32 @@ ], "notationParticipants": [ { - "uuid": "cd8d9da3-46fb-4904-b890-ecfe8f8b3186", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "uuid": "af76623a-28bb-4acd-a2cb-d7758a5d1726", + "uuid": "efc8f3e6-8840-4a2e-8044-82477130ca5b", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "2595f656-abaa-408d-b6a1-59e448a293a3", + "uuid": "9e75cba4-eadd-4214-9994-37c4bf065bcb", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true }, { - "uuid": "74257754-b5e0-496b-a706-8edd44a6e026", + "uuid": "81c4761e-0532-4586-8a34-826348648178", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true + "role": "REQUESTED BY", + "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "0e34666f-9cca-403f-8bb8-d0bf33f162f8", - "createdAt": "2016-06-20", - "completed": "2016-09-25", - "initiated": "2020-04-20", - "ministryContact": "HAYES WADE", + "uuid": "5fde2ff4-37d6-4634-9e22-d7ba015de862", + "createdAt": "2017-03-28", + "completed": "2020-12-05", + "initiated": "2014-11-07", + "ministryContact": "SCHOWALTER ALEXANNE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -63635,44 +74590,32 @@ ], "notationParticipants": [ { - "uuid": "ffefd14d-7130-4ce1-b043-2d51d6afcb08", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "uuid": "04c8eb80-0cd6-4029-b516-5858d65911a4", - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "c9f71a62-c0a6-4290-a766-364356a633be", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "b8ce9ed8-8f80-4d7c-bf83-ed3c3c0e1819", + "uuid": "047b4849-a257-4a0b-89de-b96a0652bea5", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true }, { - "uuid": "6e16b76b-6c18-4559-8d86-c33de68db923", + "uuid": "23515e11-0df8-4556-aa39-442c904032a1", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false - }, - { - "uuid": "f7c6d0dc-9dc9-4f4c-8a11-a6832b5ea15a", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false } ], "siteRegistry": false }, { - "uuid": "89eb4823-2878-417b-bf0f-833fa903668a", - "createdAt": "2015-02-26", - "completed": "2015-10-10", - "initiated": "2023-09-29", - "ministryContact": "ALTENWERTH FLORINE", + "uuid": "e2d3bd25-2465-48b6-8040-a9d4e6b3bc6d", + "createdAt": "2015-02-10", + "completed": "2021-01-25", + "initiated": "2022-07-06", + "ministryContact": "SIPES MOLLY", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -63681,39 +74624,33 @@ ], "notationParticipants": [ { - "uuid": "a07acd77-08f1-4242-901d-8bf9342ae41c", + "uuid": "c361dca9-16f8-449f-a291-3dbd512c3386", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true }, { - "uuid": "18410002-c412-4e4e-8f59-acdd9150f3e5", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "uuid": "44b6ac0b-c595-4a83-ae99-ebe9b4cb4ca5", + "uuid": "71afbe41-3633-4744-ad50-9945f4107af6", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false }, { - "uuid": "a9cb3f3d-9973-45ca-ae75-e8f8aeb3bfbf", + "uuid": "21ef1751-ab89-4102-afb7-55d715967e2c", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false + "role": "REQUESTED BY", + "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false } ], "participants": [ { - "uuid": "1528dc98-6b84-4426-981d-3630dcbd2360", - "name": "IPSUM", - "endDate": "2014-12-20", - "startDate": "2021-04-30", + "uuid": "1a6642da-780d-4e01-b80a-a08b33689d6d", + "name": "AMET, DOLOR SIT", + "endDate": "2019-04-26", + "startDate": "2015-04-14", "notes": "", "roles": [ "ORGANIZATION" @@ -63721,163 +74658,211 @@ "siteRegistry": true }, { - "uuid": "9e85e6e9-62d6-4932-b17c-cb83e06c7b92", - "name": "AMET, DOLOR SIT", - "endDate": "2015-08-20", - "startDate": "2014-01-06", + "uuid": "81a598bc-ab6a-4106-8023-a61505728660", + "name": "IPSUM", + "endDate": "2019-01-27", + "startDate": "2014-07-12", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": false }, { - "uuid": "be2cb3b1-1de9-4b55-bd9c-947d7c59ac81", + "uuid": "c350b9a9-160d-43ed-96eb-122ae4ff0766", "name": "IPSUM", - "endDate": "2015-03-15", - "startDate": "2019-07-20", + "endDate": "2018-02-18", + "startDate": "2019-08-16", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": false }, { - "uuid": "d54fa536-d819-41ac-a20c-2214b46317e5", - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2015-11-24", - "startDate": "2014-10-13", + "uuid": "318a9229-7631-4e8b-bab7-41ba5f28c451", + "name": "IPSUM", + "endDate": "2019-07-27", + "startDate": "2016-08-19", "notes": "", "roles": [ "ORGANIZATION" ], "siteRegistry": true + }, + { + "uuid": "e211173b-19dc-4608-bd28-af4d9d02c424", + "name": "AMET, DOLOR SIT", + "endDate": "2021-12-31", + "startDate": "2014-04-20", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false } ], - "suspectLandUses": [ + "documents": [ { - "uuid": "f763f4e7-4f20-4c4b-b332-1ab7c44058d3", - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-06-28 (described on Site Profile dated 2018-06-28)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "uuid": "5688aab7-e52d-4369-9a44-da1b95e09369", + "siteRegistry": false, + "documentDate": "2022-08-01", + "receivedDate": "2022-02-26", + "uploadedDate": "2020-11-03", + "title": "Preliminary Site Investigation, Detailed Site Investigation and Remedial Plan for the Management Area adjacent to the Shell Site at 1503 West 41st Ave", + "participants": [ + { + "uuid": "58fe85ed-a4de-4a71-aa1a-a0a78cfdfceb", + "name": "IPSUM", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "740af44f-9846-4111-88f2-eb40fe0679c9", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": true, + "role": "AUTHOR" + } + ] }, { - "uuid": "c4ad487d-5440-4c2d-962f-b3066a7ffe89", + "uuid": "e88c3faf-2492-48d9-b86e-7a04d964b755", + "siteRegistry": false, + "documentDate": "2018-11-20", + "receivedDate": "2020-02-11", + "uploadedDate": "2018-08-25", + "title": "Summary of Site Conditions, 1537 W 41st Avenue, Vancouver", + "participants": [ + { + "uuid": "fecde8e8-0dad-46e8-a39f-907e604d76f2", + "name": "AMET, DOLOR SIT", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "e43021c2-5624-4730-85a8-de23da98777c", + "name": "AMET, DOLOR SIT", + "siteRegistry": false, + "role": "AUTHOR" + } + ] + } + ], + "suspectLandUses": [ + { + "uuid": "dadb5595-5768-439c-8c1d-f5256a9668c5", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-05-12 (described on Site Profile dated 2022-05-12)", + "notes": "INSERTED FOR SITE PROFILE DATED 2015-04-08 (described on Site Profile dated 2015-04-08)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "uuid": "8db175f8-7f7e-447a-9498-46674afe67e4", + "uuid": "221503f3-e2ab-4ffa-be92-45746897a3b5", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-09-17 (described on Site Profile dated 2015-09-17)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "notes": "INSERTED FOR SITE PROFILE DATED 2020-04-13 (described on Site Profile dated 2020-04-13)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "uuid": "ede828af-8dc7-420a-809a-5ae18feb47b5", + "uuid": "a1ddcc8e-a3df-42e0-ae42-f95442917df8", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-06-18 (described on Site Profile dated 2015-06-18)", + "notes": "INSERTED FOR SITE PROFILE DATED 2014-07-06 (described on Site Profile dated 2014-07-06)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], "parcelDescriptions": [ { - "uuid": "f7ae6864-c929-4de6-a989-fe90212731d8", + "uuid": "8e7ce919-0161-41b0-9ba6-7297e66fa06d", "siteRegistry": true, - "dateNoted": "2016-11-21", - "parcelID": "15522", - "crownLandUsePIN": "18618", - "crownLandFileNumber": "20935", - "landDescription": "LOT 3 OF LOT 4 BLOCK 4 DISTRICT LOT 5 PLAN 5078" + "dateNoted": "2019-03-28", + "parcelID": "19582", + "crownLandUsePIN": "19774", + "crownLandFileNumber": "17952", + "landDescription": "LOT 2 OF LOT 3 BLOCK 4 DISTRICT LOT 4 PLAN 7437" }, { - "uuid": "09d96999-c65f-4944-bdbf-307c45d56e90", - "siteRegistry": false, - "dateNoted": "2015-02-26", - "parcelID": "17922", - "crownLandUsePIN": "18303", - "crownLandFileNumber": "17009", - "landDescription": "LOT 3 OF LOT 1 BLOCK 2 DISTRICT LOT 5 PLAN 7828" + "uuid": "38cf2661-4162-4890-9e5a-257ec8877e41", + "siteRegistry": true, + "dateNoted": "2016-12-12", + "parcelID": "18507", + "crownLandUsePIN": "16127", + "crownLandFileNumber": "16275", + "landDescription": "LOT 3 OF LOT 3 BLOCK 4 DISTRICT LOT 1 PLAN 9240" }, { - "uuid": "a9b4462d-68ca-431c-a4db-0f0ada6ceaf6", + "uuid": "e6bcb338-2a32-466d-afe8-7365897257b4", "siteRegistry": false, - "dateNoted": "2022-03-12", - "parcelID": "17762", - "crownLandUsePIN": "16790", - "crownLandFileNumber": "17080", - "landDescription": "LOT 5 OF LOT 3 BLOCK 3 DISTRICT LOT 2 PLAN 9254" - }, - { - "uuid": "d7fa6f40-98ac-4af9-9978-3d6887b6dc4d", - "siteRegistry": true, - "dateNoted": "2022-07-26", - "parcelID": "16854", - "crownLandUsePIN": "19365", - "crownLandFileNumber": "17355", - "landDescription": "LOT 1 OF LOT 4 BLOCK 5 DISTRICT LOT 2 PLAN 6250" + "dateNoted": "2017-09-01", + "parcelID": "17835", + "crownLandUsePIN": "17833", + "crownLandFileNumber": "15294", + "landDescription": "LOT 3 OF LOT 1 BLOCK 4 DISTRICT LOT 5 PLAN 5613" } ], "siteDisclosures": [ { - "uuid": "9ff53b93-f2b7-44c2-95c2-b13db45a7349", + "uuid": "dc5b4ecd-8632-49f5-960a-3f4caf7a518d", "siteRegistry": true, - "dateReceived": "2014-01-05", - "dateCompleted": "2015-03-03", - "dateEntered": "2022-01-21", - "dateRegistrar": "2023-04-24", - "dateLocalAuthorityReceived": "2018-12-21", - "summary": "Vero accusamus eligendi nemo.\nDistinctio labore architecto beatae laboriosam pariatur.", - "informationUsed": "Similique consequuntur accusamus est facere error.\nNulla eligendi dicta officia ut.\nUt earum architecto.", - "pastOrPresentOrders": "Incidunt totam error eius omnis molestias nam accusantium.\nHarum voluptas cum fugit.\nEarum dolores cumque.", + "dateReceived": "2017-03-28", + "dateCompleted": "2016-04-27", + "dateEntered": "2015-10-10", + "dateRegistrar": "2014-01-07", + "dateLocalAuthorityReceived": "2016-04-24", + "summary": "Dolorem eum explicabo consectetur officia ratione autem.\nIste excepturi vero similique.", + "informationUsed": "Laboriosam sapiente sunt ipsum dolore nulla harum illum.\nTempora error quod possimus.\nDeleniti explicabo debitis dignissimos.\nIllo architecto voluptatibus.", + "pastOrPresentOrders": "Inventore commodi expedita.", "commercialAndIndustrialPurposes": [ { - "uuid": "66bd4d20-ebf3-468c-8cd1-b65170767abf", + "uuid": "66222237-3dac-4f99-bba8-2ec36d7244b1", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false }, { - "uuid": "7caaa7dd-f434-4b51-a935-b3e92d04f044", - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "uuid": "3481ae44-d658-4e68-a8b3-c015c0bce570", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { - "uuid": "3cd068f2-dfcc-49c4-b151-7a486268adc7", - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false + "uuid": "c94a72e1-fa5b-453b-bbcd-5c7a85bf87db", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true }, { - "uuid": "e1433e40-df3e-4278-b00f-2584209e4909", - "scheduleReference": "F2*", + "uuid": "3cd7233f-347d-4718-b53e-cc30e9334375", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true } ] }, { - "uuid": "009817f5-2eac-407c-a27a-126d9b4b14cd", + "uuid": "346daebf-8958-4502-bdad-044b4dcc6a17", "siteRegistry": true, - "dateReceived": "2021-09-26", - "dateCompleted": "2021-01-07", - "dateEntered": "2018-08-13", - "dateRegistrar": "2019-06-09", - "dateLocalAuthorityReceived": "2021-10-23", - "summary": "Et laudantium fuga quasi quisquam molestias dolore soluta veritatis laudantium.\nLaudantium vitae error doloremque repellendus natus nulla laudantium.\nAb eaque laudantium eveniet enim rerum reprehenderit dignissimos.", - "informationUsed": "Dolor ipsam iusto dicta ab molestiae maxime corporis.\nIpsum perferendis sequi.\nLabore deserunt molestiae ipsa aliquam praesentium quaerat velit distinctio.", - "pastOrPresentOrders": "Non voluptates voluptatibus consectetur laborum laudantium perferendis ab.\nPlaceat rem saepe.\nVoluptatum nemo reiciendis ut.", + "dateReceived": "2018-06-03", + "dateCompleted": "2020-03-08", + "dateEntered": "2015-06-16", + "dateRegistrar": "2019-02-05", + "dateLocalAuthorityReceived": "2016-04-08", + "summary": "Ipsum nisi aperiam dolor quas.", + "informationUsed": "Ipsam tenetur incidunt odio nemo molestiae nesciunt earum consequuntur dolorum.\nMagni minus et.\nFugiat dicta harum magnam repellendus error nulla iste placeat.", + "pastOrPresentOrders": "Eligendi fugit laborum voluptatem similique perferendis nobis.\nOccaecati dignissimos culpa fugiat libero tempora labore.", "commercialAndIndustrialPurposes": [ { - "uuid": "e12ed12d-70a2-4cc0-b461-f521506c235c", + "uuid": "22645061-64b6-4db6-82eb-7e329c03d9c1", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false }, { - "uuid": "39bdf3b7-5259-4486-b394-c8fbdedba848", - "scheduleReference": "F2*", + "uuid": "e5766742-0981-4a07-9c30-8b56ff8d7442", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "uuid": "52a8bc0f-2b84-4324-bf2b-042102f55e4c", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false } @@ -63886,122 +74871,108 @@ ], "activityLog": [ { - "uuid": "babcbc8a-3234-4766-b120-aade49b1f21b", + "uuid": "bec38c23-1d91-44fd-92c2-e8bc123f5fb1", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "HERMAN KARINE", - "timestamp": "2015-06-14" - }, - { - "uuid": "857c2d1b-c54c-4f56-8939-3e0b91a8a908", - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "BERNIER AISHA", - "timestamp": "2017-01-15" + "user": "OSINSKI REECE", + "timestamp": "2016-03-18" }, { - "uuid": "bc4727c4-d0ba-4375-87d4-9e9fc439a591", + "uuid": "1d3a2af3-3e51-437d-952f-060f409315a6", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "HUELS SHANEL", - "timestamp": "2022-12-05" + "user": "PFEFFER MARIAN", + "timestamp": "2019-06-15" }, { - "uuid": "a3a1a95a-c6d7-454f-b433-bfea5d452330", + "uuid": "0fb32044-5814-47d1-8bb9-ca0eec8817d5", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "VON SUZANNE", - "timestamp": "2015-02-01" + "user": "STAMM WILMER", + "timestamp": "2013-12-04" }, { - "uuid": "1f5397a1-fb1b-446c-8613-3604f01be080", - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "SCHAMBERGER ALESSANDRA", - "timestamp": "2018-12-03" - }, - { - "uuid": "208b968e-c70e-4b4e-b23e-3348c09041ab", - "siteRegistry": false, + "uuid": "1fa37881-a040-4144-9ed2-7fa386712343", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "POUROS WILLIE", - "timestamp": "2016-08-19" + "user": "YUNDT MARGARETTE", + "timestamp": "2018-12-25" }, { - "uuid": "ce5f5dd9-d963-4984-8c41-4c650b3b3eae", + "uuid": "bd10ef09-0efb-41b9-8018-a9ac9cd94ece", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "HETTINGER WILMA", - "timestamp": "2019-03-19" + "user": "KERLUKE CELESTINO", + "timestamp": "2016-10-02" }, { - "uuid": "1f779a38-8379-4ee6-8457-d280e22f870e", + "uuid": "33a18067-3df1-42aa-92ba-8eaae0b27556", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "RUNTE-FADEL RAQUEL", - "timestamp": "2016-08-30" + "user": "BECHTELAR MARIAN", + "timestamp": "2020-11-01" }, { - "uuid": "a774f0c3-954c-4a45-bffd-b2733fbc1414", + "uuid": "685a3e02-db82-4ae1-9d65-3b44c02dc757", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "FRANECKI DORIS", - "timestamp": "2015-04-08" + "user": "SHIELDS DASHAWN", + "timestamp": "2013-12-06" } ], "associatedSites": [ { - "uuid": "ede516ae-2554-4201-9e38-24424e61fc75", - "dateNoted": "2015-06-06", + "uuid": "7cf1dd1b-784e-4bbe-baed-fa276f35bbca", + "dateNoted": "2021-11-24", "notes": "", - "parcelID": "17817", - "siteID": "15485", - "siteRegistry": false + "parcelID": "16296", + "siteID": "20718", + "siteRegistry": true }, { - "uuid": "624a6da7-0084-4bf7-9660-17d12cbb9ddc", - "dateNoted": "2017-08-29", + "uuid": "ca86f18d-e2ca-4f43-a0df-23ccaa87b1b5", + "dateNoted": "2017-11-09", "notes": "", - "parcelID": "19115", - "siteID": "16285", + "parcelID": "19549", + "siteID": "17443", "siteRegistry": true }, { - "uuid": "bd4826b8-ff69-41d4-8fd7-153032f93f39", - "dateNoted": "2021-08-21", + "uuid": "3032b735-4fdd-47c5-bcc7-7a2cdfc03682", + "dateNoted": "2019-10-21", "notes": "", - "parcelID": "16771", - "siteID": "18050", + "parcelID": "20345", + "siteID": "16871", "siteRegistry": false } ] }, { - "uuid": "2efdfc23-7d4e-41fd-a5cc-4e01f88dbdb3", - "siteID": 19515, - "address": "280 Reinger Gardens", - "latitude": 50.0714, - "longitude": -122.0945, - "lastUpdated": "2021-07-05", - "city": "Roderickstad", - "region": "Kootenay", - "victoriaFile": "26250-20/14707", + "uuid": "7cbf5c92-2e06-4fd1-a093-ed539f0e3f64", + "siteID": 18981, + "address": "8122 Javon Coves", + "latitude": 55.2518, + "longitude": -126.6339, + "lastUpdated": "2020-09-03", + "city": "Miami Beach", + "region": " North Coast", + "victoriaFile": "26250-20/11227", "regionalFile": "N/A", "parcelIDs": [ - 2916862, - 5140789, - 5374860, - 7571531, - 7227382 + 7943970, + 8403799, + 1782380, + 874093, + 4591597 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "5bede6eb-9f33-4884-b315-a7ac79777d15", - "createdAt": "2022-11-25", - "completed": "2016-04-25", - "initiated": "2016-03-12", - "ministryContact": "FUNK ALEXIE", + "uuid": "dba87067-8cd2-4377-836f-a3ababa239a5", + "createdAt": "2022-08-05", + "completed": "2020-05-27", + "initiated": "2016-10-29", + "ministryContact": "MRAZ RAFAELA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -64010,25 +74981,25 @@ ], "notationParticipants": [ { - "uuid": "c13289e9-0e53-4a69-bdf9-6d389ebc7089", + "uuid": "c38d657d-8592-418a-8e5f-66cbf2dc4b2b", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "cf24f4b0-4ace-495f-814d-e055cbcc4bd6", + "uuid": "520292b9-bd2b-45d5-b586-0e661cd8493c", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true + "role": "REQUESTED BY", + "siteRegistry": false }, { - "uuid": "09031458-d38e-4f41-b252-06f254942e01", - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "uuid": "fbb490d6-5e55-4988-963e-04b55559381b", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", "siteRegistry": false }, { - "uuid": "aafdb118-d2a3-42c5-85ee-a68ebd39e5e3", + "uuid": "e2bdcd09-2785-476d-b7ac-76130132152c", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false @@ -64037,11 +75008,11 @@ "siteRegistry": false }, { - "uuid": "90bb06a5-edf4-44e5-bbe2-8398466a3326", - "createdAt": "2020-12-23", - "completed": "2020-11-28", - "initiated": "2014-02-04", - "ministryContact": "HELLER JANIYA", + "uuid": "9614d106-9bc9-43ff-a157-d30ac80a1836", + "createdAt": "2014-05-30", + "completed": "2022-12-28", + "initiated": "2019-08-28", + "ministryContact": "MACEJKOVIC SCOT", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -64050,56 +75021,95 @@ ], "notationParticipants": [ { - "uuid": "a76b8678-79e6-4213-b87b-fc5923804e46", - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "0b3aba76-c224-402f-8340-e808f6cab7e4", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "uuid": "65f243e3-0090-4993-8a9d-ed4db7e7379d", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false }, { - "uuid": "9d43dacc-fa61-4c4b-ad8b-980a8e3441c6", + "uuid": "3625915c-12cd-4b7f-a4e8-983efdb7fec9", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "f33575b3-f4a1-4872-b1fe-7fb62af51767", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "uuid": "aac1baec-d493-47a8-aeab-f2b7fc17212b", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "uuid": "59afdd1b-14b6-4b46-9c70-282923ce1039", + "createdAt": "2018-08-22", + "completed": "2016-08-18", + "initiated": "2017-02-21", + "ministryContact": "HOPPE MEGGIE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "uuid": "8316f438-72f3-4d38-80a5-5f069ef52a81", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true }, { - "uuid": "d93f715a-ed30-4687-bdae-ea4f18733b72", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "uuid": "587a1d35-1fbc-4369-bec4-c7f318712341", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": true }, { - "uuid": "671a6721-179b-4a49-ad9a-65a1a157c1d5", + "uuid": "44159f1f-dab2-451d-b923-f826bfbacb7f", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true } ], "participants": [ { - "uuid": "84fed237-1c40-4863-90d0-900970b0c410", - "name": "SHELL CANADA PRODUCTS", - "endDate": "2016-12-16", - "startDate": "2016-12-02", + "uuid": "6c6e2972-e89d-43db-bd71-fd42fcdd7e88", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2015-10-29", + "startDate": "2018-10-06", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "uuid": "57c5fdb0-25ed-46a5-86ec-14204c678e6f", + "name": "IPSUM", + "endDate": "2014-08-31", + "startDate": "2023-07-31", + "notes": "", + "roles": [ + "ORGANIZATION" ], "siteRegistry": true }, { - "uuid": "72ff7da2-1056-41a3-a684-472bacf01b7c", - "name": "AMET, DOLOR SIT", - "endDate": "2022-08-28", - "startDate": "2022-05-03", + "uuid": "2821db09-e365-44b9-abb0-45b4f7ad5be7", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2015-10-11", + "startDate": "2018-03-28", "notes": "", "roles": [ "EMPLOYEE" @@ -64107,122 +75117,206 @@ "siteRegistry": true }, { - "uuid": "375cd03c-035c-4ce4-bcb5-a8ef7a66c79a", - "name": "AMET, DOLOR SIT", - "endDate": "2020-09-13", - "startDate": "2015-04-28", + "uuid": "b9d4203a-1383-450d-aec0-89584749c2f5", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2016-07-06", + "startDate": "2016-12-01", "notes": "", "roles": [ "EMPLOYEE" ], "siteRegistry": false + }, + { + "uuid": "c1d50d8e-696e-43cf-b824-817e715aeef1", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2016-09-30", + "startDate": "2020-12-02", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true } ], - "suspectLandUses": [ + "documents": [ { - "uuid": "8e50d73a-3cd7-44e2-877e-b1d54bda2082", + "uuid": "8c2ce2f1-bf12-49ae-98a4-bd7eb3cda18b", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2023-10-08 (described on Site Profile dated 2023-10-08)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "documentDate": "2021-09-12", + "receivedDate": "2023-06-10", + "uploadedDate": "2017-07-02", + "title": "Preliminary Site Investigation, Detailed Site Investigation and Remedial Plan for the Management Area adjacent to the Shell Site at 1503 West 41st Ave", + "participants": [ + { + "uuid": "84ae58b3-a2fa-4d0b-965e-55568f118589", + "name": "IPSUM", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "a698a535-e122-4102-85e3-8e215d82bc8f", + "name": "AMET, DOLOR SIT", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "985199d8-839a-417f-80e4-45e2d3bd13e8", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": false, + "role": "AUTHOR" + } + ] + }, + { + "uuid": "33a600b3-3633-4f75-a500-d045badfd773", + "siteRegistry": false, + "documentDate": "2021-05-03", + "receivedDate": "2023-10-09", + "uploadedDate": "2017-05-25", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "cac0ca23-51db-40ac-903e-b7d8bd487261", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": false, + "role": "AUTHOR" + } + ] }, { - "uuid": "90e88e3f-647f-45f1-a3bc-ddf5e1119c4c", + "uuid": "3ff55d6f-c235-4c70-9c67-f7e0e561e61b", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-06-22 (described on Site Profile dated 2018-06-22)", + "documentDate": "2016-10-16", + "receivedDate": "2021-07-31", + "uploadedDate": "2020-05-16", + "title": "Summary of Site Conditions, 1537 W 41st Avenue, Vancouver", + "participants": [ + { + "uuid": "c42bc439-4095-4939-b3fe-6e0dc8809b99", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": true, + "role": "AUTHOR" + } + ] + } + ], + "suspectLandUses": [ + { + "uuid": "db21f266-46f9-42cb-b12d-077676c1d146", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2015-04-21 (described on Site Profile dated 2015-04-21)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "uuid": "cef105e3-fd6b-40d5-9e66-4c04e872bd91", + "uuid": "c75ec179-34d3-4f3f-a13a-407df8f53fa6", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-09-22 (described on Site Profile dated 2022-09-22)", + "notes": "INSERTED FOR SITE PROFILE DATED 2018-11-24 (described on Site Profile dated 2018-11-24)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "uuid": "3cededaf-914b-4b03-9d3c-e208bd5543a0", + "uuid": "e6e61723-4974-4602-9b5d-77406cb2c989", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-04-04 (described on Site Profile dated 2017-04-04)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "notes": "INSERTED FOR SITE PROFILE DATED 2013-12-26 (described on Site Profile dated 2013-12-26)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "uuid": "8ea7090c-ae39-4fa8-9f8e-1b2059acde56", - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-10-04 (described on Site Profile dated 2022-10-04)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "uuid": "67d2f071-cfa6-4a38-8812-3f40397b0a88", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2020-05-10 (described on Site Profile dated 2020-05-10)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], "parcelDescriptions": [ { - "uuid": "c984e337-e053-453c-99ae-57af2aac6ecc", - "siteRegistry": true, - "dateNoted": "2019-12-08", - "parcelID": "18152", - "crownLandUsePIN": "19650", - "crownLandFileNumber": "20956", - "landDescription": "LOT 3 OF LOT 2 BLOCK 4 DISTRICT LOT 2 PLAN 5204" + "uuid": "49c50b44-7a02-4fc6-b451-ab6af9776925", + "siteRegistry": false, + "dateNoted": "2016-04-17", + "parcelID": "16191", + "crownLandUsePIN": "20134", + "crownLandFileNumber": "17158", + "landDescription": "LOT 4 OF LOT 3 BLOCK 4 DISTRICT LOT 3 PLAN 8175" }, { - "uuid": "94bc10e4-488f-4953-9fe1-dc2848cdc64f", - "siteRegistry": true, - "dateNoted": "2014-01-23", - "parcelID": "19707", - "crownLandUsePIN": "20212", - "crownLandFileNumber": "17327", - "landDescription": "LOT 5 OF LOT 5 BLOCK 4 DISTRICT LOT 1 PLAN 9027" + "uuid": "c5317fda-53fe-4d67-8918-929b28455b2e", + "siteRegistry": false, + "dateNoted": "2015-12-29", + "parcelID": "16521", + "crownLandUsePIN": "15488", + "crownLandFileNumber": "18717", + "landDescription": "LOT 4 OF LOT 3 BLOCK 1 DISTRICT LOT 4 PLAN 7119" }, { - "uuid": "0d4903dd-0c02-4c15-9ad0-1fd121c1eb5a", + "uuid": "82ec0fb7-715a-45bb-a9b4-14709b700326", "siteRegistry": true, - "dateNoted": "2019-11-13", - "parcelID": "18821", - "crownLandUsePIN": "20383", - "crownLandFileNumber": "18871", - "landDescription": "LOT 2 OF LOT 2 BLOCK 2 DISTRICT LOT 1 PLAN 3107" - }, - { - "uuid": "e034eccf-a726-4e4f-977c-d72d5170c1be", - "siteRegistry": false, - "dateNoted": "2016-12-23", - "parcelID": "19307", - "crownLandUsePIN": "17130", - "crownLandFileNumber": "16210", - "landDescription": "LOT 5 OF LOT 3 BLOCK 2 DISTRICT LOT 4 PLAN 3161" + "dateNoted": "2013-12-24", + "parcelID": "15944", + "crownLandUsePIN": "15549", + "crownLandFileNumber": "16163", + "landDescription": "LOT 2 OF LOT 5 BLOCK 5 DISTRICT LOT 2 PLAN 5720" } ], "siteDisclosures": [ { - "uuid": "49c42955-6aec-4c92-80ee-1c6437031657", - "siteRegistry": true, - "dateReceived": "2022-04-28", - "dateCompleted": "2020-12-01", - "dateEntered": "2016-10-07", - "dateRegistrar": "2019-03-14", - "dateLocalAuthorityReceived": "2020-02-25", - "summary": "Odit pariatur quam saepe illo magni placeat.\nVoluptatem saepe doloribus exercitationem.", - "informationUsed": "Minima quibusdam atque id error provident.\nQuis nisi nihil cumque quas nihil unde porro deserunt nam.\nCulpa laboriosam error similique.\nEligendi accusantium pariatur accusantium doloremque.\nNeque et voluptates.", - "pastOrPresentOrders": "Cum ducimus quia.\nNatus corporis numquam odio quam.\nQuibusdam non magni sequi suscipit possimus molestiae veniam.", + "uuid": "6cb13918-70a2-4ec6-a712-59412a9665ed", + "siteRegistry": false, + "dateReceived": "2016-07-01", + "dateCompleted": "2014-02-14", + "dateEntered": "2016-04-07", + "dateRegistrar": "2014-12-31", + "dateLocalAuthorityReceived": "2017-12-19", + "summary": "A velit praesentium.\nInventore necessitatibus reiciendis dolorem vitae officiis est beatae.", + "informationUsed": "Omnis accusantium provident autem distinctio repudiandae voluptatum sapiente porro.\nNatus cum perspiciatis assumenda.\nQuis quaerat laboriosam excepturi assumenda sint nam.\nIllum magnam quia aperiam.", + "pastOrPresentOrders": "Possimus fugiat praesentium laboriosam molestias fuga velit.", "commercialAndIndustrialPurposes": [ { - "uuid": "9102c1fe-f857-4cf0-9367-ff88effaa989", + "uuid": "04c20985-6b7c-4635-913b-eb26692eacc5", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "uuid": "132b1ace-0f28-427c-a8f4-195d732cb246", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, { - "uuid": "7bd757ee-0576-4f92-9f58-102891b92799", + "uuid": "cccb451c-27da-4dd2-8c1f-27e4ad64b813", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + } + ] + }, + { + "uuid": "50311e26-778f-471a-a837-fe84ab5c8d75", + "siteRegistry": true, + "dateReceived": "2017-11-30", + "dateCompleted": "2018-02-08", + "dateEntered": "2016-10-20", + "dateRegistrar": "2015-11-13", + "dateLocalAuthorityReceived": "2014-11-04", + "summary": "Ducimus id quidem suscipit reiciendis commodi sed corrupti at iure.", + "informationUsed": "Eaque optio in quia recusandae consectetur magnam quae.\nIpsam dolorum cumque laudantium.\nExcepturi harum saepe quod dolor.", + "pastOrPresentOrders": "Nostrum repudiandae debitis deleniti accusantium qui odio adipisci repellat provident.", + "commercialAndIndustrialPurposes": [ + { + "uuid": "90a1e986-fb72-4627-a2a9-698e1e062dca", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { - "uuid": "c5ffcfed-755f-4d51-a283-27ddd1851928", + "uuid": "1f5b2a89-97b0-4454-84cf-d2362d057fc8", "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { - "uuid": "28dac2c8-29af-4402-9e1f-6595c2f48dae", + "uuid": "edb26292-417c-4637-8a04-2d062ad15099", "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false } ] @@ -64230,86 +75324,86 @@ ], "activityLog": [ { - "uuid": "6af69669-3ec3-4a08-9afd-2d546c687613", - "siteRegistry": true, + "uuid": "599cdada-984f-4d86-b5b2-91e392d1904c", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "TOY OMARI", - "timestamp": "2019-08-23" + "user": "HARTMANN ANNABEL", + "timestamp": "2013-10-31" }, { - "uuid": "7874a83f-5e75-4e94-8b64-971855d8f7ae", + "uuid": "839cf1d1-7253-47f8-95b7-57afdcfafbcf", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "FRIESEN BARTON", - "timestamp": "2020-11-30" + "user": "KUHLMAN ADRIEL", + "timestamp": "2023-07-12" }, { - "uuid": "8eebfdce-a401-4153-bfb4-f8d115eb7e87", + "uuid": "c5c5ec0f-1c9a-4285-8c08-cd07c8e86dba", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "GULGOWSKI-WEISSNAT LAVERNA", - "timestamp": "2022-01-15" + "user": "KOVACEK WEBSTER", + "timestamp": "2021-03-13" }, { - "uuid": "ec4f5004-a88f-4713-8bbb-7fd89a2f31f0", + "uuid": "05da7bf6-7e48-4c56-9118-96b34d7bddea", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "ROLFSON JOVANY", - "timestamp": "2014-06-07" + "user": "HYATT AMANDA", + "timestamp": "2013-12-12" }, { - "uuid": "360d1f4d-4e43-4eef-8279-cf6a773aa9a0", + "uuid": "10e27c9e-65bb-4716-841f-9f1a9994e4c0", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "STROMAN FREDA", - "timestamp": "2021-10-21" + "user": "ROSENBAUM JOSIAH", + "timestamp": "2014-08-14" } ], "associatedSites": [ { - "uuid": "987371a7-96e2-4798-8fd6-5d2f74db66a5", - "dateNoted": "2020-03-26", + "uuid": "481f7e09-88a0-4a51-a048-190ec129dc78", + "dateNoted": "2017-06-02", "notes": "", - "parcelID": "17164", - "siteID": "18794", + "parcelID": "17382", + "siteID": "20625", "siteRegistry": true }, { - "uuid": "d17548fb-5095-4fb1-9daf-6099a57c1255", - "dateNoted": "2013-10-30", + "uuid": "beb37395-9fdb-4aa7-ae5f-7a3c29beabf9", + "dateNoted": "2021-08-30", "notes": "", - "parcelID": "18911", - "siteID": "19660", + "parcelID": "16423", + "siteID": "19449", "siteRegistry": false } ] }, { - "uuid": "d2b664f3-8985-4da6-9215-39ed8227f200", - "siteID": 18069, - "address": "37418 Keeling Ridges", - "latitude": 58.4328, - "longitude": -131.9069, - "lastUpdated": "2017-02-22", - "city": "Cartwrightfield", + "uuid": "308b4819-8f61-4038-afd5-694143aab4d1", + "siteID": 19389, + "address": "8302 Streich Rapid", + "latitude": 52.1603, + "longitude": -126.8691, + "lastUpdated": "2022-08-25", + "city": "East Wilson", "region": "Kootenay", - "victoriaFile": "26250-20/11415", + "victoriaFile": "26250-20/8601", "regionalFile": "N/A", "parcelIDs": [ - 9010470, - 9998627, - 244334, - 4625662, - 1771202 + 2283084, + 6164443, + 2976793, + 4249570, + 5825148 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "c45ff7c3-6a02-45d5-9542-54e795b21852", - "createdAt": "2016-10-08", - "completed": "2021-08-30", - "initiated": "2018-02-20", - "ministryContact": "OKUNEVA EMILIE", + "uuid": "3783c572-ec21-4d7f-ad0e-41c6684df7d8", + "createdAt": "2015-04-25", + "completed": "2022-03-17", + "initiated": "2022-01-25", + "ministryContact": "HERMISTON-KLING JANAE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -64318,32 +75412,26 @@ ], "notationParticipants": [ { - "uuid": "b7145c3a-4b96-42c6-8bea-f14edf5742b0", - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "dc2acd0f-dcee-4b4a-9bfe-8ea96774ebeb", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true }, { - "uuid": "57e4d10e-5d8d-4dc4-87c2-511e72723f7d", + "uuid": "da9cd6d8-28c5-4dbc-97ef-334930f9c32a", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "uuid": "08b1e4de-aa0e-4c1a-90bf-c20244550fc8", - "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "a5cfc3e4-50e9-4fc0-b52d-4190c08bfaff", - "name": "SHELL CANADA PRODUCTS", + "uuid": "f95b503e-1eef-4d8d-8337-f51f0496ead7", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "16c9944b-ed58-4fef-aed3-513e05a78ca9", - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "6e1791cc-c334-4a43-a1ff-8dd65994ece4", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true } @@ -64351,11 +75439,11 @@ "siteRegistry": false }, { - "uuid": "6bdcb065-014f-4d1e-998b-6d10febc9457", - "createdAt": "2014-10-08", - "completed": "2019-07-25", - "initiated": "2022-02-03", - "ministryContact": "VOLKMAN TAUREAN", + "uuid": "c79990c4-70d6-4bb3-9f6d-b3a5035e5d14", + "createdAt": "2013-11-23", + "completed": "2018-01-22", + "initiated": "2023-05-21", + "ministryContact": "WUCKERT-O'CONNELL NICO", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -64364,60 +75452,38 @@ ], "notationParticipants": [ { - "uuid": "e1918d9a-ac2f-4668-ab4c-320836738ace", - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "7da746b8-002d-444f-853d-6ecce8221bd2", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true }, { - "uuid": "c7bcd9b9-36af-42d7-8e4f-c98067b71920", - "name": "SHELL CANADA PRODUCTS", + "uuid": "cd9d97c2-3306-460a-b136-ad95fcbe761c", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false }, { - "uuid": "ebc4fd5f-2f2f-4505-8c86-524c6e9b8a8e", + "uuid": "00c55089-1dee-4b89-9cf7-14eeb38e9aeb", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - } - ], - "siteRegistry": true - }, - { - "uuid": "668caff5-d95b-4032-8aad-8a3c97373bb0", - "createdAt": "2018-08-04", - "completed": "2022-04-11", - "initiated": "2018-01-16", - "ministryContact": "LUEILWITZ SARINA", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "uuid": "f827733f-da08-4161-b027-6f219fb415f3", - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true + "role": "REQUESTED BY", + "siteRegistry": false }, { - "uuid": "52995ea3-4b0d-463c-913c-97d6961dd69f", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "uuid": "94644319-4331-48f7-a0bf-8835887e8f4b", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "c3fd3d78-4808-4a9f-a473-9e024b24e643", - "createdAt": "2022-04-08", - "completed": "2019-11-15", - "initiated": "2016-03-22", - "ministryContact": "HAGENES BREANA", + "uuid": "9e071c0b-ba8e-4fe6-8c35-ea150d8b1545", + "createdAt": "2020-05-23", + "completed": "2014-07-10", + "initiated": "2017-10-11", + "ministryContact": "KREIGER KURT", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -64426,38 +75492,38 @@ ], "notationParticipants": [ { - "uuid": "0deba8b5-845c-49fe-a119-332f6f877931", + "uuid": "1019b4cd-b1ef-4cf5-9bf8-e6898dd137a2", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false }, { - "uuid": "3075b1ba-fe87-477e-ad09-5f2a29e556de", + "uuid": "b7d30f85-b45f-4a62-a388-c3cad1e8b4a2", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false }, { - "uuid": "c7960e3f-4d0b-49f8-99c7-bf5e31b904a9", - "name": "SHELL CANADA PRODUCTS", + "uuid": "39fe87ae-d3ae-4008-81fb-168fee104e65", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "911f4bf3-6929-4823-926c-33c308844093", + "uuid": "a02866f4-59c3-459a-ba3f-c8fada90a6ad", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false + "role": "REQUESTED BY", + "siteRegistry": true } ], "siteRegistry": true }, { - "uuid": "5dbf824a-709f-451d-ab85-6e2fe16f2f5e", - "createdAt": "2016-03-13", - "completed": "2017-08-24", - "initiated": "2022-09-11", - "ministryContact": "LEHNER ELBERT", + "uuid": "c09b8617-8b20-465c-a533-40838d6a69c7", + "createdAt": "2017-07-31", + "completed": "2023-02-04", + "initiated": "2021-03-11", + "ministryContact": "STARK MERRITT", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -64466,44 +75532,45 @@ ], "notationParticipants": [ { - "uuid": "4622e26f-68ec-4c79-abf5-81c5b17871f1", - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "7794e9d0-9b0c-4146-9ddf-8b6e848cab9c", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "d2b74fc4-d6ce-4b73-b100-9420ad7687e2", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "f6a44593-6b5f-45bb-9ba9-737ccf6cc169", - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "03f1b8e7-9774-4337-bd0e-5aac3298b681", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "4e764a0c-5aca-4bba-91b8-7c6c892309e5", - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "f9c809a7-c484-4be6-952e-c3ded6a9afac", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "40902b26-2af5-4104-b857-76e155e2e197", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true } ], "participants": [ { - "uuid": "1ec9b35b-3f7c-497f-8300-7df4f9b7824b", - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2019-05-10", - "startDate": "2017-04-03", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": false - }, - { - "uuid": "ca12bbe8-970b-418f-9b04-0732a8eb7556", + "uuid": "968457c7-d75a-436a-a9a5-62ef5a4fefce", "name": "IPSUM", - "endDate": "2015-03-29", - "startDate": "2013-11-20", + "endDate": "2023-01-10", + "startDate": "2014-04-02", "notes": "", "roles": [ "ORGANIZATION" @@ -64511,10 +75578,10 @@ "siteRegistry": false }, { - "uuid": "5e624957-46f6-4bc3-8824-8b99c7d61a14", - "name": "AMET, DOLOR SIT", - "endDate": "2016-01-29", - "startDate": "2022-05-05", + "uuid": "33f9164d-68fd-457f-8b0f-fc502f9cf37d", + "name": "IPSUM", + "endDate": "2016-04-12", + "startDate": "2022-01-04", "notes": "", "roles": [ "ORGANIZATION" @@ -64522,283 +75589,276 @@ "siteRegistry": false }, { - "uuid": "6ecfb163-a882-4e23-b525-08d0847ba6c8", - "name": "IPSUM", - "endDate": "2017-01-31", - "startDate": "2022-07-05", + "uuid": "6134cc27-e343-454a-98bd-b8360c2ed059", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2017-07-24", + "startDate": "2020-09-01", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": true } ], - "suspectLandUses": [ + "documents": [ { - "uuid": "ff75f62e-cce9-48bd-994f-8a5905af353a", - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-02-20 (described on Site Profile dated 2021-02-20)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" - }, - { - "uuid": "250bbd72-bdf5-4487-9d21-94fe214be833", + "uuid": "1cd11247-0099-4c81-a144-33bca8583884", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-01-11 (described on Site Profile dated 2021-01-11)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "documentDate": "2022-10-14", + "receivedDate": "2016-06-05", + "uploadedDate": "2022-04-12", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "40df6a63-ea91-4138-aa87-ec05e3ba587c", + "name": "AMET, DOLOR SIT", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "bb02a68f-f1af-431e-be36-f6ab8b30173f", + "name": "AMET, DOLOR SIT", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "34e79db0-cfd4-48ae-9d14-1be41ec62dff", + "name": "AMET, DOLOR SIT", + "siteRegistry": false, + "role": "AUTHOR" + } + ] }, { - "uuid": "1cac3978-8ea8-473c-a1d1-dc0eb287d91f", + "uuid": "51b1bdf2-398a-42aa-92b0-f6754862d4cb", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-11-29 (described on Site Profile dated 2014-11-29)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "documentDate": "2019-07-11", + "receivedDate": "2023-08-10", + "uploadedDate": "2017-06-07", + "title": "Preliminary Site Investigation, Detailed Site Investigation and Remedial Plan for the Management Area adjacent to the Shell Site at 1503 West 41st Ave", + "participants": [ + { + "uuid": "9108d266-a3d1-4587-98d4-8de233787d17", + "name": "IPSUM", + "siteRegistry": true, + "role": "AUTHOR" + } + ] }, { - "uuid": "28e2ab7c-3cdd-41e2-b610-2bd2998cd603", + "uuid": "a2eca0b1-e211-4556-b3fd-1b4907864698", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2023-03-07 (described on Site Profile dated 2023-03-07)", + "documentDate": "2015-09-03", + "receivedDate": "2018-06-16", + "uploadedDate": "2020-05-07", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "717db441-f3ce-4e75-8512-753082d0da4e", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "79190b2f-5bb6-41bd-a0b6-73ca8ad7c1f1", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "2a4224fd-c00e-4543-935b-593ed4d9ca29", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": false, + "role": "AUTHOR" + } + ] + } + ], + "suspectLandUses": [ + { + "uuid": "0dfa5af6-6aa4-4bb7-843b-24f8737392db", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2017-10-03 (described on Site Profile dated 2017-10-03)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "uuid": "f45abfe1-d357-40e9-8821-5cbf492a9ca2", - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-03-05 (described on Site Profile dated 2016-03-05)", + "uuid": "2d75b346-d956-4591-80d1-7cb11441e106", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2019-05-15 (described on Site Profile dated 2019-05-15)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], "parcelDescriptions": [ { - "uuid": "c7320f81-b5c8-49fb-9abb-abd15572c667", - "siteRegistry": false, - "dateNoted": "2015-08-09", - "parcelID": "15933", - "crownLandUsePIN": "20112", - "crownLandFileNumber": "17639", - "landDescription": "LOT 2 OF LOT 1 BLOCK 2 DISTRICT LOT 1 PLAN 8502" + "uuid": "14f5c2c6-49a1-47f0-913a-43920f034b00", + "siteRegistry": true, + "dateNoted": "2016-04-26", + "parcelID": "16276", + "crownLandUsePIN": "17243", + "crownLandFileNumber": "15531", + "landDescription": "LOT 4 OF LOT 4 BLOCK 5 DISTRICT LOT 4 PLAN 3476" }, { - "uuid": "a41491bd-cc0d-48b8-9f68-9a1288a3fb16", + "uuid": "1793c2b5-f4cf-4639-9b81-a3e928da7429", "siteRegistry": true, - "dateNoted": "2022-09-23", - "parcelID": "20925", - "crownLandUsePIN": "16960", - "crownLandFileNumber": "17173", - "landDescription": "LOT 4 OF LOT 1 BLOCK 4 DISTRICT LOT 4 PLAN 6377" + "dateNoted": "2013-12-08", + "parcelID": "17879", + "crownLandUsePIN": "16679", + "crownLandFileNumber": "18922", + "landDescription": "LOT 1 OF LOT 5 BLOCK 1 DISTRICT LOT 5 PLAN 6856" + }, + { + "uuid": "6ae06f0e-c145-45b2-ac56-20524902c229", + "siteRegistry": false, + "dateNoted": "2019-06-16", + "parcelID": "19880", + "crownLandUsePIN": "16812", + "crownLandFileNumber": "19387", + "landDescription": "LOT 1 OF LOT 1 BLOCK 2 DISTRICT LOT 1 PLAN 4177" } ], "siteDisclosures": [ { - "uuid": "80cf3485-0013-4ad5-b6e7-1b9669448a32", + "uuid": "a0b8218c-d73b-43fe-8cd3-9eb030b1063b", "siteRegistry": true, - "dateReceived": "2019-02-23", - "dateCompleted": "2022-01-14", - "dateEntered": "2019-04-09", - "dateRegistrar": "2020-07-07", - "dateLocalAuthorityReceived": "2018-11-06", - "summary": "Eum illum nesciunt quod omnis nisi illo.\nVoluptatem ab sunt sequi ullam.", - "informationUsed": "Officiis quidem itaque a amet reiciendis.\nEt tenetur corporis harum quod voluptates amet.\nVel hic quam velit officiis odio eaque molestiae et.\nMagnam esse assumenda.", - "pastOrPresentOrders": "Aspernatur sapiente reprehenderit nostrum fugit ducimus nisi.\nSed veniam quod a officia cum suscipit sapiente inventore.", + "dateReceived": "2023-08-12", + "dateCompleted": "2022-07-15", + "dateEntered": "2019-12-12", + "dateRegistrar": "2017-11-09", + "dateLocalAuthorityReceived": "2021-11-13", + "summary": "Odit autem voluptatibus asperiores soluta provident sunt omnis repellat.\nPorro delectus esse earum velit quia animi.\nCulpa molestiae at ullam esse molestias.", + "informationUsed": "Illo quae ratione odio enim.\nTempore magni blanditiis aut veniam.\nMaxime distinctio aliquid sit eos voluptates ea.\nEaque architecto nemo rerum illo sunt ullam consequuntur mollitia.", + "pastOrPresentOrders": "Quasi beatae culpa voluptatibus tempora temporibus.\nQui eveniet nesciunt hic officiis beatae culpa.", "commercialAndIndustrialPurposes": [ { - "uuid": "1b3d831e-ebe8-40ed-9124-3d22021934bd", + "uuid": "40486774-9496-41a3-978d-ea2dc8482cb7", "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false - }, - { - "uuid": "aaea965f-3ea8-45e8-a594-6b1d8ecad33d", - "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { - "uuid": "2586cefc-052b-41b4-b631-6bcdc7dff38d", - "scheduleReference": "F2*", + "uuid": "da34f912-694d-46c1-a06f-7da9bcc7a167", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true + }, + { + "uuid": "5eb9bb2e-60da-41e8-83f5-01447c681efc", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false } ] }, { - "uuid": "5f557c2f-1d1f-4d94-94f1-52f0fafc18e4", + "uuid": "8a9b1d88-10de-40e1-8573-9688c24b2fca", "siteRegistry": false, - "dateReceived": "2017-05-22", - "dateCompleted": "2020-07-18", - "dateEntered": "2020-04-05", - "dateRegistrar": "2021-09-29", - "dateLocalAuthorityReceived": "2019-01-18", - "summary": "Dolor libero iste illum similique non omnis praesentium tempora.\nSaepe voluptas maiores in rem.", - "informationUsed": "Velit dolorem laudantium quisquam dolorum odio.\nVoluptatum temporibus labore qui error ad sed cum dolorem facilis.\nSequi repellat magnam reiciendis laborum perspiciatis sit.\nDeserunt rerum consequuntur accusamus rerum expedita at.", - "pastOrPresentOrders": "Numquam laborum dolore dolorum nobis.", + "dateReceived": "2016-01-27", + "dateCompleted": "2020-02-19", + "dateEntered": "2016-03-08", + "dateRegistrar": "2019-02-14", + "dateLocalAuthorityReceived": "2018-03-06", + "summary": "Dolorum consequatur reprehenderit rem odit.\nExplicabo placeat veniam incidunt itaque voluptas facere commodi.\nSed autem dolores enim.", + "informationUsed": "Molestiae consectetur id aperiam odio sunt vitae officia aliquam consectetur.\nIpsam harum minima voluptas tempore.\nAnimi ex ab culpa cumque modi fugit.\nOdio alias distinctio delectus incidunt dolorum delectus.\nOptio molestias soluta debitis quos animi nesciunt quisquam explicabo.", + "pastOrPresentOrders": "Optio nisi nisi reiciendis totam iusto qui commodi ut.\nOdio ea maiores error cum illum.\nSaepe iusto facilis doloribus.", "commercialAndIndustrialPurposes": [ { - "uuid": "776abec5-5392-43b9-9630-8785e63e91b1", - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true - }, - { - "uuid": "8980ce45-8804-4835-bd2b-415cd00143b2", + "uuid": "3b959904-7939-434e-970a-e2d3e430f55c", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { - "uuid": "9f09419c-fce9-4481-b6ce-347415caf6ed", - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false - }, - { - "uuid": "c61a6592-3dbf-43b4-aac3-be01cf2ad9a3", + "uuid": "770cd862-4e61-4ede-8cb4-26ed55142069", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true + "siteRegistry": false } ] } ], "activityLog": [ { - "uuid": "f9abd8f0-8a18-49d9-ae28-f8a20f27b222", + "uuid": "bdc9aeec-c470-4743-84cf-80d20c9af4c6", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "PROSACCO EVELINE", - "timestamp": "2021-05-23" + "user": "HYATT DEREK", + "timestamp": "2014-02-01" }, { - "uuid": "cd831cc4-6cf5-42f0-9df0-dfb8cbb343d9", + "uuid": "bff80357-f3fb-47a1-a7e3-e9046ce5b2a0", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "OBERBRUNNER-BEIER ROOSEVELT", - "timestamp": "2015-04-25" - }, - { - "uuid": "b7cc067d-9535-4cd2-a9ea-e3fd6881477c", - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "PROHASKA-WELCH ARVILLA", - "timestamp": "2017-10-19" + "user": "DICKI NICOLETTE", + "timestamp": "2015-09-09" }, { - "uuid": "889cf7d9-954d-4192-9b81-e9d6ba360c27", + "uuid": "9a1b2c1a-40b4-4a52-851f-8b3ffd4ccab4", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "TRANTOW ROGELIO", - "timestamp": "2019-07-09" - }, - { - "uuid": "6a66719e-bd26-4849-a49e-6235038c92f1", - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "THOMPSON ASHTON", - "timestamp": "2014-08-24" - }, - { - "uuid": "c5265be8-e051-481a-b396-6ded397ec4b3", - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "BREKKE PAMELA", - "timestamp": "2018-10-16" - }, - { - "uuid": "993c35eb-0130-4d5e-9989-a7237a7d56d6", - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "SCHUPPE ABEL", - "timestamp": "2019-04-08" + "user": "ZULAUF KYLIE", + "timestamp": "2018-11-02" }, { - "uuid": "79f9ac26-2a3b-444b-8de0-705882393c68", + "uuid": "3f6e365d-d414-4a18-9780-346647df4eef", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "O'KEEFE DOCK", - "timestamp": "2015-06-02" + "user": "BERGE-NADER MARIANA", + "timestamp": "2013-10-22" }, { - "uuid": "19ca0b67-13eb-4f46-b3ff-436242de6804", - "siteRegistry": true, + "uuid": "c866c3fc-f47f-4eda-b2d7-0895cbca7377", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "WUNSCH GENNARO", - "timestamp": "2023-04-21" + "user": "GOYETTE-MCCLURE KATTIE", + "timestamp": "2022-09-21" } ], "associatedSites": [ { - "uuid": "9facd8cb-44e5-4721-8e43-78428fb31ac7", - "dateNoted": "2023-08-06", + "uuid": "465addf0-584b-41f9-ba61-71c146527d4b", + "dateNoted": "2016-09-13", "notes": "", - "parcelID": "20266", - "siteID": "18865", + "parcelID": "19648", + "siteID": "19903", "siteRegistry": false + }, + { + "uuid": "e91a013e-066d-45db-ba07-f6db0242ad8b", + "dateNoted": "2016-05-05", + "notes": "", + "parcelID": "20713", + "siteID": "20744", + "siteRegistry": true } ] }, { - "uuid": "fa5c298b-8dfd-4399-89cb-a19e7926c52f", - "siteID": 20584, - "address": "474 Gorczany Neck", - "latitude": 53.7774, - "longitude": -118.0731, - "lastUpdated": "2018-08-13", - "city": "North Jesscester", - "region": "Vancouver Island/Coast", - "victoriaFile": "26250-20/17866", + "uuid": "272902d6-7beb-4c5f-bd6d-51646fd2d559", + "siteID": 19169, + "address": "217 Gleichner Turnpike", + "latitude": 52.6326, + "longitude": -120.1115, + "lastUpdated": "2020-12-14", + "city": "Olympia", + "region": " North Coast", + "victoriaFile": "26250-20/17437", "regionalFile": "N/A", "parcelIDs": [ - 4367173, - 5707674, - 4386448, - 6253342, - 9644350 + 2882903, + 5837786, + 8860901, + 6563754, + 9586623 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "8d66a6be-f9d2-414f-8040-d96bef4b08a9", - "createdAt": "2018-11-12", - "completed": "2015-10-27", - "initiated": "2016-09-24", - "ministryContact": "CARROLL KACI", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "uuid": "13a3ed93-be7a-4c69-8d9d-2569157a1ea8", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "uuid": "73ed718a-04ee-449d-8a65-b6c0a6ff01ee", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "uuid": "63ed3cc6-6a37-4246-889a-6f26f6f87c20", - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "uuid": "0e4ff442-3f30-4c5a-850c-8e5c1f90da53", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - } - ], - "siteRegistry": false - }, - { - "uuid": "72723dd9-8040-409c-983f-cc61ae54cb77", - "createdAt": "2018-01-06", - "completed": "2015-12-21", - "initiated": "2023-09-20", - "ministryContact": "WISOZK FELICITA", + "uuid": "832f095a-e9c9-48da-bac0-399dae7ef75f", + "createdAt": "2018-03-12", + "completed": "2020-06-24", + "initiated": "2016-02-10", + "ministryContact": "KULAS ANABELLE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -64807,14 +75867,14 @@ ], "notationParticipants": [ { - "uuid": "61a79504-cba0-4e3c-a1b3-75fa703424cb", + "uuid": "e6c8824b-12a5-421d-9aaa-6dfca0d88389", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true }, { - "uuid": "e930a291-e70a-4f47-ac4d-cd84bdd2ecdb", - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "d3b26507-10b9-4d2c-9e9f-a75c3d31964a", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false } @@ -64822,11 +75882,11 @@ "siteRegistry": false }, { - "uuid": "78088393-bf13-45b0-acbb-62e6b1d62afb", - "createdAt": "2015-05-13", - "completed": "2019-05-24", - "initiated": "2018-12-01", - "ministryContact": "KASSULKE MAX", + "uuid": "59b0444d-9653-4083-818b-57e0e6fc670d", + "createdAt": "2020-09-16", + "completed": "2015-11-05", + "initiated": "2017-11-24", + "ministryContact": "LESCH LYDA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -64835,125 +75895,33 @@ ], "notationParticipants": [ { - "uuid": "2234ae60-b961-4614-993a-cd916acce63b", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "uuid": "88907be2-cac5-4e9b-99f1-006f6b5a92ac", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "uuid": "61052868-d30d-4cfe-8134-1dd7f4469ec3", + "uuid": "64bb210f-be71-4d78-98aa-c4c2f3c92d54", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "uuid": "2b72b002-a6d5-4798-833a-eb7a21e7e190", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", "siteRegistry": false - } - ], - "siteRegistry": true - }, - { - "uuid": "8bfb9a77-96a8-493e-9b72-94c402daca43", - "createdAt": "2021-02-28", - "completed": "2021-07-15", - "initiated": "2023-02-15", - "ministryContact": "QUITZON HUBERT", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "uuid": "73b64d1a-1861-4df2-87a9-80bb28df0fcf", - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true }, { - "uuid": "067a8401-95e1-455c-8204-f3d42fa72a4b", - "name": "SHELL CANADA PRODUCTS", + "uuid": "aab7e6f5-544f-4fb8-8e1a-691bbfb1eddd", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "f629e2dc-b1c1-4fdf-a62a-2b754819f930", + "uuid": "9b24343f-5df1-42ba-822d-de9d02aa8b7b", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "uuid": "74e14169-216b-44ff-922c-3251843b96ee", - "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false } ], "siteRegistry": true - }, - { - "uuid": "e7edf569-8939-4660-86c7-3d0dce8c7a19", - "createdAt": "2017-01-20", - "completed": "2021-11-11", - "initiated": "2015-05-02", - "ministryContact": "HAHN BRYANA", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "uuid": "5c2b7416-ab7b-4229-a909-872ef63e6d26", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "uuid": "9f0b0d0b-098d-4bf2-ad4c-e3706e6192a5", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "uuid": "775e18cd-ec3a-4681-aa54-edc3560d4285", - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "uuid": "a0ff2166-13f6-4d19-98ce-a54a183a30d5", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "uuid": "8777b7a1-5041-4c5f-b983-c54c16b2b971", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - } - ], - "siteRegistry": false } ], "participants": [ { - "uuid": "c032bd63-9e8c-4f94-8168-a21618e56420", - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2019-08-17", - "startDate": "2016-05-10", + "uuid": "5eead673-12ee-48b2-b824-7a1fc875ac28", + "name": "AMET, DOLOR SIT", + "endDate": "2020-05-30", + "startDate": "2023-04-19", "notes": "", "roles": [ "ORGANIZATION" @@ -64961,10 +75929,32 @@ "siteRegistry": false }, { - "uuid": "0b15d591-8c1c-4edc-97cc-95dc3ee6ccae", + "uuid": "95d3d272-eac3-48b1-91d9-6f0b85c760e8", "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2020-06-30", - "startDate": "2018-04-08", + "endDate": "2019-11-18", + "startDate": "2016-02-29", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "uuid": "be7b81fc-6611-4a6b-8664-cc8f1087b09e", + "name": "IPSUM", + "endDate": "2018-03-29", + "startDate": "2021-06-21", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "uuid": "e39b3f4d-077e-4e79-9c24-c40f943b50fb", + "name": "AMET, DOLOR SIT", + "endDate": "2017-04-18", + "startDate": "2017-02-14", "notes": "", "roles": [ "EMPLOYEE" @@ -64972,186 +75962,330 @@ "siteRegistry": true } ], - "suspectLandUses": [ + "documents": [ { - "uuid": "c651f08c-dc02-46b5-bd61-b6b761ca3346", - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2023-09-08 (described on Site Profile dated 2023-09-08)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "uuid": "da12e482-abe9-471d-a321-f2457de4522e", + "siteRegistry": false, + "documentDate": "2023-08-25", + "receivedDate": "2014-09-26", + "uploadedDate": "2019-01-10", + "title": "Summary of Site Conditions, 1537 W 41st Avenue, Vancouver", + "participants": [ + { + "uuid": "265bb7b4-21dd-4230-8f9a-07204e3ab847", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "90025d54-790e-46cc-9979-1548284bbc00", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": true, + "role": "AUTHOR" + } + ] }, { - "uuid": "ea705dd5-2aea-46f9-b8b5-6a65a5f620b0", + "uuid": "864f8875-f7dc-4337-85ac-ac76a43d006e", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-12-31 (described on Site Profile dated 2018-12-31)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "documentDate": "2019-12-23", + "receivedDate": "2015-07-03", + "uploadedDate": "2020-12-31", + "title": "Summary of Site Conditions, 1537 W 41st Avenue, Vancouver", + "participants": [ + { + "uuid": "efab0adf-c605-4f0d-b4c0-da7215f71e03", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": true, + "role": "AUTHOR" + } + ] }, { - "uuid": "e871faba-2113-433e-8a31-c4d7eacca598", - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-09-20 (described on Site Profile dated 2015-09-20)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "uuid": "c5812bc0-d4f4-439d-ad9d-d61c6857ab23", + "siteRegistry": false, + "documentDate": "2020-09-25", + "receivedDate": "2015-12-25", + "uploadedDate": "2016-06-28", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "6042e3d1-e08c-486f-ab01-ce23ca45c603", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": false, + "role": "AUTHOR" + } + ] }, { - "uuid": "416cc540-f5e1-4a4a-95eb-8de3f5fd7f36", - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-11-16 (described on Site Profile dated 2018-11-16)", + "uuid": "80b1d2fc-043b-432b-a9d7-db7166c8fef4", + "siteRegistry": false, + "documentDate": "2019-10-09", + "receivedDate": "2018-04-14", + "uploadedDate": "2022-09-24", + "title": "Summary of Site Conditions, 1537 W 41st Avenue, Vancouver", + "participants": [ + { + "uuid": "ef4de296-27e9-49df-bf34-7f6431c3d927", + "name": "IPSUM", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "c4f21937-bdfc-40c8-b83a-a5b2e9c0f402", + "name": "IPSUM", + "siteRegistry": false, + "role": "AUTHOR" + } + ] + } + ], + "suspectLandUses": [ + { + "uuid": "1c3726d1-9093-4c68-b114-c887fd3dad56", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2020-10-03 (described on Site Profile dated 2020-10-03)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "uuid": "04526ca8-00bd-486d-b63b-a43e29ff3266", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2014-09-07 (described on Site Profile dated 2014-09-07)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], "parcelDescriptions": [ { - "uuid": "acb472c8-4931-44ec-a8d4-97e98212275d", - "siteRegistry": true, - "dateNoted": "2016-09-10", - "parcelID": "19054", - "crownLandUsePIN": "17037", - "crownLandFileNumber": "17973", - "landDescription": "LOT 3 OF LOT 2 BLOCK 5 DISTRICT LOT 1 PLAN 7592" + "uuid": "02d0ce84-d0c6-4dae-906d-bf4e1fe61e7c", + "siteRegistry": false, + "dateNoted": "2023-10-11", + "parcelID": "17238", + "crownLandUsePIN": "17006", + "crownLandFileNumber": "20529", + "landDescription": "LOT 3 OF LOT 1 BLOCK 2 DISTRICT LOT 2 PLAN 3788" }, { - "uuid": "eb14bb7e-1f69-4b35-86f1-1e1ab45066e7", + "uuid": "509cd28b-df1b-4d56-8190-0a9686b3d41d", "siteRegistry": false, - "dateNoted": "2020-05-04", - "parcelID": "20767", - "crownLandUsePIN": "17693", - "crownLandFileNumber": "17646", - "landDescription": "LOT 3 OF LOT 3 BLOCK 4 DISTRICT LOT 3 PLAN 3344" + "dateNoted": "2022-11-17", + "parcelID": "17850", + "crownLandUsePIN": "18192", + "crownLandFileNumber": "17230", + "landDescription": "LOT 5 OF LOT 3 BLOCK 4 DISTRICT LOT 2 PLAN 5530" + }, + { + "uuid": "f2e263d9-9306-4724-b86a-c4042f6095c1", + "siteRegistry": true, + "dateNoted": "2018-08-12", + "parcelID": "15561", + "crownLandUsePIN": "20748", + "crownLandFileNumber": "20156", + "landDescription": "LOT 2 OF LOT 4 BLOCK 4 DISTRICT LOT 1 PLAN 8054" }, { - "uuid": "c85e039b-7b23-441f-9504-c918f9630e33", + "uuid": "08929c85-a994-44a1-b829-60043f9d51d6", "siteRegistry": false, - "dateNoted": "2016-08-04", - "parcelID": "18373", - "crownLandUsePIN": "18103", - "crownLandFileNumber": "20576", - "landDescription": "LOT 3 OF LOT 4 BLOCK 1 DISTRICT LOT 3 PLAN 6651" + "dateNoted": "2016-07-31", + "parcelID": "16610", + "crownLandUsePIN": "19094", + "crownLandFileNumber": "20459", + "landDescription": "LOT 3 OF LOT 3 BLOCK 5 DISTRICT LOT 1 PLAN 5198" }, { - "uuid": "0f56a85d-e8cc-4bba-8d14-3fd04dad9020", - "siteRegistry": true, - "dateNoted": "2023-04-28", - "parcelID": "16585", - "crownLandUsePIN": "18345", - "crownLandFileNumber": "15991", - "landDescription": "LOT 5 OF LOT 3 BLOCK 4 DISTRICT LOT 1 PLAN 7937" + "uuid": "1bbfebd8-c191-4e0a-8075-b3014f802b84", + "siteRegistry": false, + "dateNoted": "2018-06-04", + "parcelID": "20328", + "crownLandUsePIN": "18200", + "crownLandFileNumber": "18346", + "landDescription": "LOT 2 OF LOT 4 BLOCK 4 DISTRICT LOT 4 PLAN 6720" } ], "siteDisclosures": [ { - "uuid": "50477080-82e0-4c58-a1f7-cb2253ac5189", - "siteRegistry": false, - "dateReceived": "2018-04-11", - "dateCompleted": "2018-02-11", - "dateEntered": "2014-01-03", - "dateRegistrar": "2018-05-01", - "dateLocalAuthorityReceived": "2019-01-30", - "summary": "Recusandae voluptate a vero eveniet aliquid natus amet.", - "informationUsed": "Asperiores eos reprehenderit.\nId voluptatem suscipit mollitia.\nExplicabo nesciunt vitae deserunt.\nNobis dolore pariatur qui ex inventore excepturi est suscipit excepturi.\nPossimus tenetur sunt aperiam aspernatur harum recusandae minima earum esse.", - "pastOrPresentOrders": "Impedit rem delectus ipsum.", + "uuid": "da65dadf-9aa2-4fb7-b3db-9b98b4d0a97d", + "siteRegistry": true, + "dateReceived": "2018-11-24", + "dateCompleted": "2020-11-03", + "dateEntered": "2017-04-18", + "dateRegistrar": "2021-09-07", + "dateLocalAuthorityReceived": "2019-06-29", + "summary": "Laborum eos provident corporis totam et illum inventore ut.\nSed error voluptatum quam eaque ipsa voluptas laboriosam.\nNihil a assumenda.", + "informationUsed": "Voluptatum tempore debitis ipsam modi numquam vero quo voluptate.\nBeatae at placeat magnam recusandae.\nConsequatur dolor pariatur tenetur aut veritatis hic veniam aliquam.\nAccusamus eligendi totam in animi maiores laudantium id.", + "pastOrPresentOrders": "Corrupti officiis ex perferendis.", "commercialAndIndustrialPurposes": [ { - "uuid": "8afec6ec-2208-4b12-af9f-03076049b95a", - "scheduleReference": "F2*", + "uuid": "48c84ea4-f180-42bf-99f2-a98cbb181275", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "1cdc27b8-13ab-4140-8820-d1675e92fd33", + "uuid": "ecea5f73-bdef-480b-9b69-4a89411aa8d9", "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "uuid": "74ea3886-a9b2-4e1e-a6f4-8c4d62ad3d12", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true } ] + }, + { + "uuid": "dba6164f-f099-41c3-872d-76deb536c466", + "siteRegistry": false, + "dateReceived": "2020-04-20", + "dateCompleted": "2017-08-31", + "dateEntered": "2023-01-14", + "dateRegistrar": "2020-05-30", + "dateLocalAuthorityReceived": "2015-08-13", + "summary": "Adipisci dicta quidem corrupti numquam.\nIllum voluptate ipsum veritatis accusamus natus reiciendis.\nQuae sunt incidunt necessitatibus iste.", + "informationUsed": "Facere et sequi deserunt mollitia itaque earum consequuntur nesciunt.\nDolore assumenda rerum facilis.\nLabore ipsum voluptas quaerat assumenda sunt cupiditate dolorem exercitationem.\nSunt inventore ad.\nQuidem in id provident amet eius quod.", + "pastOrPresentOrders": "Repellat eum corrupti nesciunt omnis optio exercitationem.", + "commercialAndIndustrialPurposes": [ + { + "uuid": "a6fe179c-3aa0-422b-a294-5f05a9aebe21", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "uuid": "324c8933-9826-4c20-874e-665e83dc613b", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + } + ] } ], "activityLog": [ { - "uuid": "bfd0b409-8dfe-4a31-9661-d0c04f67df53", + "uuid": "bd1efd70-34f6-4c73-b013-6d5d9a5ea57c", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "MEDHURST ISAI", - "timestamp": "2016-03-07" + "user": "BARTELL ISOM", + "timestamp": "2013-12-17" }, { - "uuid": "3e255ee3-fad2-4752-bef2-9a70851dade5", - "siteRegistry": true, + "uuid": "508d88ca-1eb0-463e-8960-8017cb885001", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "O'HARA BART", - "timestamp": "2016-09-10" + "user": "CUMMERATA LOIS", + "timestamp": "2023-05-10" }, { - "uuid": "2ce9c9f7-de96-4afb-a728-8b31ac07efca", - "siteRegistry": true, + "uuid": "0c174125-28bf-4f4a-88f6-a58a55081a98", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "JENKINS ORLO", + "timestamp": "2014-05-02" + }, + { + "uuid": "57d6518f-a9a7-4431-a1af-7495aa4b7e0d", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "GRAHAM CASEY", - "timestamp": "2015-04-27" + "user": "DOYLE RICKIE", + "timestamp": "2023-06-01" }, { - "uuid": "dfc2ebb2-e49c-42fa-b49e-d6cefb0457cc", + "uuid": "7a09db62-dddf-4bd0-95c7-e23958b066ae", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "RUNOLFSSON KRISTIN", - "timestamp": "2013-10-21" + "user": "DENESIK DESSIE", + "timestamp": "2014-10-31" }, { - "uuid": "73e91169-61f1-4045-a287-efb0b62f5d3f", + "uuid": "54bd3ee9-91fe-4f0d-8b89-d340220dc190", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "ROHAN-STREICH MAYBELLE", - "timestamp": "2015-05-26" + "user": "BLOCK MADELINE", + "timestamp": "2014-03-22" + }, + { + "uuid": "0b5f3a48-46ae-43ce-8542-f8a1e91c79ba", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "AUFDERHAR JAYCEE", + "timestamp": "2023-02-09" }, { - "uuid": "0701cb25-88b4-4784-8e66-87984c2220a5", + "uuid": "9bec8083-b788-4e3f-bc21-026ee00b3303", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "MRAZ-CORWIN WAINO", - "timestamp": "2019-11-12" + "user": "TURNER DANIELA", + "timestamp": "2019-10-13" }, { - "uuid": "8c98258f-c6c0-4c0b-85d7-7f79d22d822f", - "siteRegistry": false, + "uuid": "29a5870b-b0ea-4b9c-a355-bf72937cb219", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "ADAMS CECELIA", + "timestamp": "2022-07-16" + }, + { + "uuid": "5535fa3f-56cf-4b43-9168-a9e388be54d4", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "EFFERTZ MEAGHAN", - "timestamp": "2017-06-25" + "user": "SMITHAM MARCELLA", + "timestamp": "2019-03-10" } ], "associatedSites": [ { - "uuid": "07c16887-f480-4285-abe8-3e53877bdc63", - "dateNoted": "2016-12-17", + "uuid": "05da3afb-9db8-4f19-8d15-e2abeb8b6e58", + "dateNoted": "2021-01-28", + "notes": "", + "parcelID": "17018", + "siteID": "19789", + "siteRegistry": false + }, + { + "uuid": "cd58d363-bb35-4ad2-83f2-6bf4e571f265", + "dateNoted": "2016-05-14", "notes": "", - "parcelID": "17053", - "siteID": "19884", + "parcelID": "15559", + "siteID": "18080", "siteRegistry": false + }, + { + "uuid": "636ab061-7c7a-4b6f-b798-7cd8111213e9", + "dateNoted": "2019-12-23", + "notes": "", + "parcelID": "18374", + "siteID": "17014", + "siteRegistry": true } ] }, { - "uuid": "6943de79-1438-410a-9133-6136a1d497bf", - "siteID": 19572, - "address": "950 Jalon Brooks", - "latitude": 55.2355, - "longitude": -130.7023, - "lastUpdated": "2017-03-27", - "city": "East Dalton", - "region": " North Coast", - "victoriaFile": "26250-20/13052", + "uuid": "b970f846-7387-4888-a6e8-6556d48a22e4", + "siteID": 16182, + "address": "672 Candice Cove", + "latitude": 48.584, + "longitude": -135.3113, + "lastUpdated": "2017-07-03", + "city": "Coon Rapids", + "region": "Vancouver Island/Coast", + "victoriaFile": "26250-20/11541", "regionalFile": "N/A", "parcelIDs": [ - 9170382, - 5615118, - 5438560, - 4221894, - 4458685 + 4305263, + 701316, + 755185, + 7368982, + 8789500 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "2e9d6682-ea63-42cb-8985-68c757b5ba9a", - "createdAt": "2015-11-03", - "completed": "2016-09-10", - "initiated": "2018-09-23", - "ministryContact": "WYMAN DENNIS", + "uuid": "60575303-a9f4-4731-915e-b47d0bc9b4ae", + "createdAt": "2021-06-05", + "completed": "2018-09-27", + "initiated": "2021-03-18", + "ministryContact": "GRIMES GEOVANNI", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -65160,32 +76294,32 @@ ], "notationParticipants": [ { - "uuid": "997687a0-b1ca-4410-abc9-2cce4267cf7c", - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "uuid": "30e6aa31-60d9-4141-b29f-37055da1c16c", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "bd55e0ba-01df-475e-93e0-d37610bbfd4b", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false + "uuid": "dec2f2b4-fa00-4b8a-82c5-2cf17e939ffc", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true }, { - "uuid": "9e9dd5b5-c9ec-441c-b337-06bea46ea079", + "uuid": "c1b0a789-6c8b-43ce-ac9b-e9f01764fb8f", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true } ], "siteRegistry": false }, { - "uuid": "78e89697-4d99-4ebc-b50c-610bb83c65de", - "createdAt": "2015-08-22", - "completed": "2019-05-30", - "initiated": "2016-06-29", - "ministryContact": "PAUCEK ABNER", + "uuid": "49a8efaa-ed24-4dcc-bcf6-2ac1a5c5f0f6", + "createdAt": "2022-01-22", + "completed": "2022-11-13", + "initiated": "2014-04-11", + "ministryContact": "WYMAN FORD", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -65194,298 +76328,306 @@ ], "notationParticipants": [ { - "uuid": "5bcd094c-046e-483c-a6be-83673a24fcf8", + "uuid": "82d97554-3e38-4dcd-aa19-166e5b1cbd8b", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "uuid": "ce4e433c-33af-4f9f-a0a0-96c45930238b", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "716ea01c-da2a-43ca-9356-e63cb82f0996", - "name": "SHELL CANADA PRODUCTS", + "uuid": "b6be5567-7f6c-4577-995f-d419733edfcc", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "dbf2a3a1-3a04-4360-a083-8de4acdc0a2f", - "name": "SHELL CANADA PRODUCTS", + "uuid": "a4c8f402-465e-4126-8f6f-7d1e94144999", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "fa0472a5-f990-4625-b829-bbf70e5df4d6", + "uuid": "4290065b-bda6-4c81-8449-07483818ff4f", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false + "role": "REQUESTED BY", + "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false } ], "participants": [ { - "uuid": "7fab2941-bbc4-4dc3-9e50-f5e713f58263", - "name": "IPSUM", - "endDate": "2017-04-04", - "startDate": "2017-09-04", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": false - }, - { - "uuid": "6af8fff2-dba2-45fe-b8c2-be0f67a4ca3e", - "name": "AMET, DOLOR SIT", - "endDate": "2022-12-12", - "startDate": "2018-09-03", + "uuid": "2ee8172c-3538-455a-9bf8-232e1b61392d", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2014-08-14", + "startDate": "2014-06-06", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "1643497f-034a-470d-aec5-bbf058e32d07", - "name": "SHELL CANADA PRODUCTS", - "endDate": "2015-05-20", - "startDate": "2015-12-07", + "uuid": "4cd4d641-61eb-4126-98d5-8e54b8199a28", + "name": "IPSUM", + "endDate": "2023-07-16", + "startDate": "2022-03-07", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "d28adab8-8f3f-446b-aa4c-70019a055c0b", + "uuid": "baa96d25-9299-4c3b-aeb5-db1eebda76c6", "name": "AMET, DOLOR SIT", - "endDate": "2020-09-09", - "startDate": "2018-09-16", + "endDate": "2014-09-25", + "startDate": "2018-09-28", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true + } + ], + "documents": [ + { + "uuid": "d5966e53-9550-495d-882d-ab73ec2d083e", + "siteRegistry": true, + "documentDate": "2021-12-13", + "receivedDate": "2016-05-03", + "uploadedDate": "2015-05-22", + "title": "Summary of Site Conditions, 1537 W 41st Avenue, Vancouver", + "participants": [ + { + "uuid": "d2c175b0-dff7-48bb-a46d-0350bbf4efdd", + "name": "IPSUM", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "e6cd74ac-40b3-41f2-96ba-b295068ea120", + "name": "IPSUM", + "siteRegistry": false, + "role": "AUTHOR" + } + ] + }, + { + "uuid": "d489e157-0625-4b7c-aa88-293223f970b4", + "siteRegistry": true, + "documentDate": "2023-04-10", + "receivedDate": "2016-02-01", + "uploadedDate": "2019-06-14", + "title": "Preliminary Site Investigation, Detailed Site Investigation and Remedial Plan for the Management Area adjacent to the Shell Site at 1503 West 41st Ave", + "participants": [ + { + "uuid": "f213b022-9973-4c56-b3c8-9e9df9284255", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "8f446c6e-b97a-4ff7-ac47-90155b3eaf23", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": false, + "role": "AUTHOR" + } + ] } ], "suspectLandUses": [ { - "uuid": "4bf4268e-5887-4299-916e-9b2734e9c521", + "uuid": "b006572f-e2ee-4ffc-b0dd-7676b7114300", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-09-23 (described on Site Profile dated 2018-09-23)", + "notes": "INSERTED FOR SITE PROFILE DATED 2020-05-31 (described on Site Profile dated 2020-05-31)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "uuid": "4a1f1500-0014-4cb3-8371-66e96fd304d4", - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-04-18 (described on Site Profile dated 2015-04-18)", + "uuid": "1dbe3743-9cea-4a46-922f-01a025a94853", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2020-04-26 (described on Site Profile dated 2020-04-26)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "uuid": "f25968fb-8983-4e68-b51b-0cca15b115e6", - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-01-16 (described on Site Profile dated 2015-01-16)", + "uuid": "2c9d3c9d-d0eb-465b-bd90-00adb2606e05", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2020-02-13 (described on Site Profile dated 2020-02-13)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "uuid": "ae842e5b-33f9-4ea5-a6f3-0dd9d8b38b74", - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-07-12 (described on Site Profile dated 2017-07-12)", + "uuid": "2fe2a241-323a-4d81-9d46-669feb610a8a", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2022-02-21 (described on Site Profile dated 2022-02-21)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "uuid": "f0c6627f-d63d-4053-b790-eb223d4f13df", - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-11-08 (described on Site Profile dated 2019-11-08)", + "uuid": "f730a664-2c38-450d-b67e-9620edf42a03", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2016-12-10 (described on Site Profile dated 2016-12-10)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], "parcelDescriptions": [ { - "uuid": "3d1d411e-1864-4fb7-877e-75e236af8f74", + "uuid": "8b49b4ff-a3dd-411b-845d-2dd96f02ff61", "siteRegistry": false, - "dateNoted": "2021-01-16", - "parcelID": "19397", - "crownLandUsePIN": "19950", - "crownLandFileNumber": "20711", - "landDescription": "LOT 4 OF LOT 1 BLOCK 4 DISTRICT LOT 3 PLAN 5951" + "dateNoted": "2018-10-08", + "parcelID": "19841", + "crownLandUsePIN": "20618", + "crownLandFileNumber": "15995", + "landDescription": "LOT 5 OF LOT 5 BLOCK 1 DISTRICT LOT 3 PLAN 3381" }, { - "uuid": "fd497956-97d3-4632-9208-330ae838c064", - "siteRegistry": false, - "dateNoted": "2017-08-06", - "parcelID": "16042", - "crownLandUsePIN": "20447", - "crownLandFileNumber": "16883", - "landDescription": "LOT 4 OF LOT 2 BLOCK 2 DISTRICT LOT 5 PLAN 8450" + "uuid": "5ba040b5-567c-4bc0-829b-b27473e49095", + "siteRegistry": true, + "dateNoted": "2019-03-23", + "parcelID": "18685", + "crownLandUsePIN": "17535", + "crownLandFileNumber": "16493", + "landDescription": "LOT 5 OF LOT 4 BLOCK 5 DISTRICT LOT 1 PLAN 7565" }, { - "uuid": "b7665483-d19e-43a1-ac51-6cb627247e61", + "uuid": "6faeb44c-1d33-4ce9-b167-ee1fb9a89763", "siteRegistry": false, - "dateNoted": "2020-10-05", - "parcelID": "17693", - "crownLandUsePIN": "18602", - "crownLandFileNumber": "20304", - "landDescription": "LOT 3 OF LOT 4 BLOCK 2 DISTRICT LOT 2 PLAN 6900" + "dateNoted": "2019-02-15", + "parcelID": "18196", + "crownLandUsePIN": "17616", + "crownLandFileNumber": "16812", + "landDescription": "LOT 1 OF LOT 5 BLOCK 3 DISTRICT LOT 5 PLAN 7028" }, { - "uuid": "fff5e392-5d16-49d8-83b5-ab077c63b51d", + "uuid": "81990b3e-3307-4ac4-9242-69f3f2fac60b", "siteRegistry": false, - "dateNoted": "2018-08-11", - "parcelID": "15956", - "crownLandUsePIN": "20566", - "crownLandFileNumber": "20606", - "landDescription": "LOT 2 OF LOT 2 BLOCK 1 DISTRICT LOT 5 PLAN 3872" + "dateNoted": "2013-12-07", + "parcelID": "16471", + "crownLandUsePIN": "17827", + "crownLandFileNumber": "16367", + "landDescription": "LOT 2 OF LOT 3 BLOCK 5 DISTRICT LOT 4 PLAN 7135" } ], "siteDisclosures": [ { - "uuid": "026b72ce-fe0e-400a-aa96-c5e3d2e53d23", - "siteRegistry": true, - "dateReceived": "2018-11-08", - "dateCompleted": "2021-05-13", - "dateEntered": "2016-05-12", - "dateRegistrar": "2021-09-29", - "dateLocalAuthorityReceived": "2015-02-15", - "summary": "Impedit aliquid neque laboriosam deleniti maxime natus repudiandae.\nVitae veritatis maxime dicta deleniti esse cumque veritatis facere dolorum.", - "informationUsed": "Magnam fugiat rerum exercitationem laboriosam odit cum illum.\nAssumenda reprehenderit aspernatur laudantium.\nIpsam aspernatur minus rerum tempore maiores at.\nQuidem praesentium neque tenetur pariatur fugit eos aperiam sint.", - "pastOrPresentOrders": "Sint dolorum odio alias saepe molestiae explicabo.", + "uuid": "461d70bf-0335-4d14-b63d-f95e7121ff5e", + "siteRegistry": false, + "dateReceived": "2023-04-17", + "dateCompleted": "2014-04-07", + "dateEntered": "2022-08-19", + "dateRegistrar": "2019-01-22", + "dateLocalAuthorityReceived": "2022-09-08", + "summary": "Harum voluptas tenetur debitis natus omnis quo facere asperiores et.\nRecusandae sunt labore sapiente a asperiores.\nUllam voluptatum ad fugit at architecto neque.", + "informationUsed": "Dolorem cum explicabo.\nMagnam odit nam ducimus possimus.\nVoluptates optio quam consequatur unde facilis cupiditate illum voluptate.\nMagnam neque blanditiis consequuntur cumque.", + "pastOrPresentOrders": "Omnis ipsum repellat aliquam necessitatibus maiores neque.\nDignissimos ad mollitia illo ipsum eligendi facilis.", "commercialAndIndustrialPurposes": [ { - "uuid": "c2cc25b2-d6da-41d0-9e3c-f535de551150", - "scheduleReference": "F2*", + "uuid": "a69d7ea4-f05f-4bec-8ba5-ab06dd97f2a5", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, { - "uuid": "a1af748c-954c-4bbb-ab5a-0ea5172a084a", + "uuid": "0195b7f0-adc9-4a34-afbb-4f45432bfa6e", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { - "uuid": "0bb16769-bbc0-4c3f-a0bb-bea77e293f8d", + "uuid": "897f87e8-4b19-4d1a-b551-8c3688f925ec", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false - }, - { - "uuid": "b6ca9110-40bd-4044-a526-1a702a8717bc", - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false } ] } ], "activityLog": [ { - "uuid": "6fc71e7e-d999-4f83-bc84-708b0d77805d", + "uuid": "2caddd15-2942-435b-b92a-d58bdf510a4d", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "MEDHURST-ABERNATHY LUE", - "timestamp": "2014-01-05" - }, - { - "uuid": "da58598a-71c6-4e77-b9f1-03570d0dc682", - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "HAGENES DONALD", - "timestamp": "2018-11-03" - }, - { - "uuid": "e822dc2f-872a-48fb-99df-372f1123cdf0", - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "LEANNON DOMENICO", - "timestamp": "2019-01-21" + "user": "YOST KESHAWN", + "timestamp": "2018-02-14" }, { - "uuid": "bd4912fd-eb04-4123-8e91-810f7c82573e", + "uuid": "aa98f7d2-0153-4f2e-ab8f-39f2eb85795e", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "ROSENBAUM SERENITY", - "timestamp": "2017-07-27" + "user": "RUNOLFSDOTTIR ISMAEL", + "timestamp": "2018-12-10" }, { - "uuid": "c352668b-c3af-4848-9d77-e9abff66e5ed", + "uuid": "3edca13b-76bf-4152-ae81-cabf51aabffb", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "DARE CONSTANCE", - "timestamp": "2019-06-03" - }, - { - "uuid": "bb91db0d-1729-4ea7-94ad-1c59d08820df", - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "BOGISICH-SKILES MICHAEL", - "timestamp": "2022-11-02" - }, - { - "uuid": "85328d58-30d8-487a-9903-caec342f8eac", - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "CORKERY JEFFEREY", - "timestamp": "2018-10-06" - }, - { - "uuid": "52c5c87a-d908-4e93-8ac1-929624806ed8", - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "JACOBSON DION", - "timestamp": "2017-04-04" + "user": "REICHERT JAKOB", + "timestamp": "2020-05-16" }, { - "uuid": "3c7f685b-25e7-458d-85e9-102040dd9657", + "uuid": "b493e4a3-d155-41d0-8c6b-3f0299787ad9", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "KLOCKO HIRAM", - "timestamp": "2021-08-28" + "user": "BINS JERAD", + "timestamp": "2022-10-21" }, { - "uuid": "87987b70-b9b1-467d-ac8d-914b92950c7d", - "siteRegistry": true, + "uuid": "9a3e573b-b98a-4ec6-b503-5366c5230f56", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "KOEPP PALMA", - "timestamp": "2016-09-05" + "user": "BOGAN BARTHOLOME", + "timestamp": "2020-02-15" } ], "associatedSites": [ { - "uuid": "17699e03-15e8-42e6-89aa-583605587c22", - "dateNoted": "2015-12-26", + "uuid": "5d55aa61-3026-4531-a627-989283eec80d", + "dateNoted": "2022-06-02", "notes": "", - "parcelID": "18846", - "siteID": "17765", + "parcelID": "19759", + "siteID": "20234", "siteRegistry": false + }, + { + "uuid": "14617c3e-0e24-4392-b73f-f33c4077f2bc", + "dateNoted": "2019-03-29", + "notes": "", + "parcelID": "20471", + "siteID": "17503", + "siteRegistry": true } ] }, { - "uuid": "96e34427-034e-4beb-bb78-2037ef907eb5", - "siteID": 18986, - "address": "3165 Chaya Keys", - "latitude": 58.184, - "longitude": -132.4178, - "lastUpdated": "2017-07-16", - "city": "Coral Gables", - "region": "Kootenay", - "victoriaFile": "26250-20/1682", + "uuid": "fef7046c-aa57-4d8e-9b9a-bd61e265556f", + "siteID": 19449, + "address": "67038 Cole Manors", + "latitude": 58.5228, + "longitude": -136.0195, + "lastUpdated": "2018-01-07", + "city": "Port Patberg", + "region": "Thompson-Okanagan", + "victoriaFile": "26250-20/9009", "regionalFile": "N/A", "parcelIDs": [ - 3710681, - 6975000, - 8650524, - 4555918, - 1445029 + 5854657, + 6862971, + 8138077, + 9630790, + 5760119 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "b7366124-6f87-4fa9-91df-115cab72015b", - "createdAt": "2015-04-18", - "completed": "2018-08-02", - "initiated": "2021-06-05", - "ministryContact": "BEER GUSTAVE", + "uuid": "77761799-ecae-4362-baf5-5a04aa51df39", + "createdAt": "2014-06-19", + "completed": "2016-04-20", + "initiated": "2015-08-03", + "ministryContact": "BLICK KADIN", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -65494,38 +76636,32 @@ ], "notationParticipants": [ { - "uuid": "897b91e5-e151-4df5-af69-16fb00479f98", - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "c7681e57-f305-4af7-b189-9bb1817a04fb", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "9e180346-146f-4291-b203-57b9bed8e0d6", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "uuid": "2ba075d7-3082-48e3-9068-badd62e2449c", + "uuid": "fbdbc412-1f08-4702-a366-c596e7b5eb5c", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "32b6cd1e-244a-4cc0-a47b-cda9f23d6d52", - "name": "SHELL CANADA PRODUCTS", + "uuid": "eed62a53-f5ab-4621-8e2b-1ac2e29e9a50", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "5da0a720-b957-4d9b-bb4d-0b3d493c0fda", - "createdAt": "2017-06-02", - "completed": "2017-02-18", - "initiated": "2014-04-05", - "ministryContact": "CORKERY HIRAM", + "uuid": "cff1e9e3-0036-432c-a470-f2f8662a04ef", + "createdAt": "2023-05-08", + "completed": "2016-09-22", + "initiated": "2022-12-11", + "ministryContact": "PACOCHA-ZULAUF FORD", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -65534,14 +76670,20 @@ ], "notationParticipants": [ { - "uuid": "6388524a-a727-416d-a89e-ef1c08e2ee53", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "uuid": "c3f0ae15-2324-47a9-9b5a-6ce16cf95f0e", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": true }, { - "uuid": "ffb0aaf1-8e3f-41d0-b6c7-ccac9ad2cb51", - "name": "SHELL CANADA PRODUCTS", + "uuid": "ebed1a3b-f6f9-4ce1-8d1c-45af850f63cd", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "83027ace-ae12-4c8f-a8b8-e924f8115992", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true } @@ -65549,11 +76691,11 @@ "siteRegistry": false }, { - "uuid": "ce50bea1-a848-41eb-8a4f-18917c0cea90", - "createdAt": "2020-05-29", - "completed": "2019-09-12", - "initiated": "2014-12-02", - "ministryContact": "ROBERTS HENRIETTE", + "uuid": "dc560e34-b1fd-46ee-824f-22b6393ecbd9", + "createdAt": "2019-04-11", + "completed": "2021-12-15", + "initiated": "2014-12-08", + "ministryContact": "SATTERFIELD JAQUELIN", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -65562,44 +76704,32 @@ ], "notationParticipants": [ { - "uuid": "e2c11e01-1800-418c-8367-26eda4386a6a", + "uuid": "b76dd702-fe79-49b8-bd1f-a8b8fc274483", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "uuid": "1ae40c19-8070-4ace-aa9b-e0eba1d29174", - "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "657a7733-c65a-4606-b396-64a5da92946c", + "uuid": "78f2c9cc-b5d8-486b-a24f-86772c1383f4", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "981e207f-36f5-4331-8e6f-974bfab1356b", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "uuid": "7ad77555-d1bb-4835-9e7a-cf7b4ed3b8e8", + "uuid": "460413fd-5566-44bd-a6c1-b7e04604c182", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false + "role": "SUBMITTED BY", + "siteRegistry": true } ], "siteRegistry": false }, { - "uuid": "19c1f03e-6be8-418a-bd19-a6f65de053db", - "createdAt": "2022-12-09", - "completed": "2022-11-30", - "initiated": "2015-02-11", - "ministryContact": "CREMIN LUCIO", + "uuid": "79a9dc24-76c4-4cce-9aeb-d3404b8f34f4", + "createdAt": "2019-01-09", + "completed": "2015-04-27", + "initiated": "2017-11-13", + "ministryContact": "KLOCKO LONZO", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -65608,172 +76738,262 @@ ], "notationParticipants": [ { - "uuid": "95085985-9b61-4f46-ba58-dd54a759885b", + "uuid": "9b312309-f04f-42d6-8e59-9e0eaf6f41d4", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "788f877d-8bea-4daf-952b-fe9e9f3f210d", + "uuid": "4d3b3bc8-40e0-4476-8361-4448b258a49c", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "4962386e-d79f-401c-a448-a98c1fef26fe", + "uuid": "67de786b-59e6-45b1-a9e1-89e406b5adfc", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false + "role": "REQUESTED BY", + "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false } ], "participants": [ { - "uuid": "c504e2a7-6e8c-41e8-8959-5134e1470930", + "uuid": "35dca6ba-8c96-4078-b794-e6cef5fe5da7", "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2023-03-11", - "startDate": "2015-02-14", + "endDate": "2018-07-13", + "startDate": "2015-05-05", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": false }, { - "uuid": "c3c68c75-2581-4dda-86e6-4c50d048f1f6", - "name": "IPSUM", - "endDate": "2019-11-06", - "startDate": "2017-01-26", + "uuid": "21fee750-6ffb-4e53-960a-21c50cc88274", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2016-12-23", + "startDate": "2020-06-14", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true + } + ], + "documents": [ + { + "uuid": "d10cf205-5b43-4aee-b24e-c42ddff65bb6", + "siteRegistry": true, + "documentDate": "2017-02-13", + "receivedDate": "2022-03-24", + "uploadedDate": "2016-09-30", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "1261a125-ca76-4dec-833d-a3d3ab8a53da", + "name": "AMET, DOLOR SIT", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "8dc89c53-b6e1-497b-abb4-a27b69fb3bc5", + "name": "IPSUM", + "siteRegistry": false, + "role": "AUTHOR" + } + ] }, { - "uuid": "67fe83cc-8ce1-4788-8fa6-b4f6d0c43338", - "name": "IPSUM", - "endDate": "2018-02-15", - "startDate": "2018-10-27", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": false + "uuid": "1f30fe32-a0e3-4d7b-8952-f3b16217dd5c", + "siteRegistry": true, + "documentDate": "2019-12-23", + "receivedDate": "2021-11-13", + "uploadedDate": "2017-11-23", + "title": "Preliminary Site Investigation, Detailed Site Investigation and Remedial Plan for the Management Area adjacent to the Shell Site at 1503 West 41st Ave", + "participants": [ + { + "uuid": "ac96b72e-844e-4324-a7ee-45d49d46e53f", + "name": "AMET, DOLOR SIT", + "siteRegistry": false, + "role": "AUTHOR" + } + ] }, { - "uuid": "76070f01-2be6-479b-8da6-634f7da1ebce", - "name": "AMET, DOLOR SIT", - "endDate": "2014-10-09", - "startDate": "2020-12-14", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": false + "uuid": "e4ab625c-2ec9-4663-bdba-6bf1953a195f", + "siteRegistry": false, + "documentDate": "2015-12-10", + "receivedDate": "2018-03-21", + "uploadedDate": "2018-02-05", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "f1e030a5-9db3-42bf-ae0e-1b17223ca046", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "0a2d832c-474b-489f-bc64-da9abc5de9ad", + "name": "IPSUM", + "siteRegistry": true, + "role": "AUTHOR" + } + ] }, { - "uuid": "f4361b4a-2143-48ed-8760-78e90ef588c2", - "name": "IPSUM", - "endDate": "2014-09-23", - "startDate": "2018-10-20", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": false + "uuid": "62956f32-a989-4544-bf11-bdef386f0314", + "siteRegistry": true, + "documentDate": "2020-01-13", + "receivedDate": "2014-03-08", + "uploadedDate": "2023-06-01", + "title": "Preliminary Site Investigation, Detailed Site Investigation and Remedial Plan for the Management Area adjacent to the Shell Site at 1503 West 41st Ave", + "participants": [ + { + "uuid": "27f0f5c4-84f3-421f-a81b-77aca50f55bb", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "d7e7ac9f-1b4c-42f2-85e5-0d2bd036a3f6", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "f34108af-5727-47f2-87de-1f7ab9f54214", + "name": "IPSUM", + "siteRegistry": true, + "role": "AUTHOR" + } + ] + }, + { + "uuid": "f9e20db6-23c5-4ddf-9834-fcb3213fc469", + "siteRegistry": false, + "documentDate": "2021-11-16", + "receivedDate": "2020-10-26", + "uploadedDate": "2017-01-07", + "title": "Summary of Site Conditions, 1537 W 41st Avenue, Vancouver", + "participants": [ + { + "uuid": "2aac90a1-463e-4fc1-9a6d-083930fee9a8", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "21f0a0aa-f1cf-4bd8-a1a5-bbf4a112a6c8", + "name": "AMET, DOLOR SIT", + "siteRegistry": false, + "role": "AUTHOR" + } + ] } ], "suspectLandUses": [ { - "uuid": "60288c89-c926-452b-81a7-73a1b554a403", + "uuid": "4cf790c9-5427-4b96-8378-a9036fc3afaa", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-08-03 (described on Site Profile dated 2014-08-03)", + "notes": "INSERTED FOR SITE PROFILE DATED 2019-08-28 (described on Site Profile dated 2019-08-28)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "uuid": "d9b46489-2b43-46dc-bfc7-2d2a223b42ba", - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-08-20 (described on Site Profile dated 2014-08-20)", + "uuid": "77063520-b1ea-4fd4-8a54-f3ee19c3281a", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2015-09-02 (described on Site Profile dated 2015-09-02)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "uuid": "3a16ebb4-1064-4ffc-8d83-bd6f5a126e4e", + "uuid": "441cc4b3-95e0-45aa-a0e9-2522572eeda9", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2020-03-12 (described on Site Profile dated 2020-03-12)", + "notes": "INSERTED FOR SITE PROFILE DATED 2023-07-23 (described on Site Profile dated 2023-07-23)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], "parcelDescriptions": [ { - "uuid": "3093d75d-28f4-4035-9b13-3364daede24c", + "uuid": "a5f462f4-37ea-4682-b985-2e0c5635de69", "siteRegistry": false, - "dateNoted": "2020-06-21", - "parcelID": "18930", - "crownLandUsePIN": "17994", - "crownLandFileNumber": "18410", - "landDescription": "LOT 3 OF LOT 2 BLOCK 5 DISTRICT LOT 3 PLAN 7912" + "dateNoted": "2023-03-06", + "parcelID": "18775", + "crownLandUsePIN": "19938", + "crownLandFileNumber": "19330", + "landDescription": "LOT 1 OF LOT 1 BLOCK 5 DISTRICT LOT 2 PLAN 6028" }, { - "uuid": "7db4a5e0-f39b-495e-bd27-e9e227fdcdc3", + "uuid": "399c8dee-a87a-4925-97c6-f3020e32994c", "siteRegistry": true, - "dateNoted": "2021-12-23", - "parcelID": "17118", - "crownLandUsePIN": "19005", - "crownLandFileNumber": "20525", - "landDescription": "LOT 4 OF LOT 5 BLOCK 5 DISTRICT LOT 3 PLAN 8467" - }, - { - "uuid": "24f2cb33-86c5-4f74-8a03-f170a9f91319", - "siteRegistry": false, - "dateNoted": "2019-04-24", - "parcelID": "18375", - "crownLandUsePIN": "17093", - "crownLandFileNumber": "18160", - "landDescription": "LOT 2 OF LOT 2 BLOCK 2 DISTRICT LOT 5 PLAN 5232" - }, - { - "uuid": "75fd3ef3-c58c-49ea-a57a-bd2b46ab4aec", - "siteRegistry": false, - "dateNoted": "2023-06-25", - "parcelID": "19521", - "crownLandUsePIN": "18190", - "crownLandFileNumber": "18869", - "landDescription": "LOT 4 OF LOT 4 BLOCK 5 DISTRICT LOT 2 PLAN 6483" - }, - { - "uuid": "1ff23d9b-853a-4592-b966-cf5b7076ae7f", - "siteRegistry": false, - "dateNoted": "2023-05-30", - "parcelID": "17556", - "crownLandUsePIN": "18601", - "crownLandFileNumber": "19499", - "landDescription": "LOT 5 OF LOT 3 BLOCK 4 DISTRICT LOT 4 PLAN 9036" + "dateNoted": "2019-10-13", + "parcelID": "17910", + "crownLandUsePIN": "15437", + "crownLandFileNumber": "15668", + "landDescription": "LOT 3 OF LOT 3 BLOCK 3 DISTRICT LOT 1 PLAN 9027" } ], "siteDisclosures": [ { - "uuid": "4daf906e-6791-4efa-8017-9be87017f4cf", + "uuid": "114debb0-2f99-4dad-9e77-6da82f31bd33", + "siteRegistry": false, + "dateReceived": "2014-04-15", + "dateCompleted": "2020-12-29", + "dateEntered": "2018-12-08", + "dateRegistrar": "2015-04-17", + "dateLocalAuthorityReceived": "2021-04-07", + "summary": "Quisquam repellat saepe omnis distinctio quos ad fugit perferendis.\nConsectetur neque vitae quam ad quae asperiores explicabo enim aperiam.", + "informationUsed": "Impedit labore saepe.\nEx ducimus cumque assumenda consectetur voluptatibus dignissimos.\nDolores non vero nam perferendis expedita qui eius incidunt.\nFacere laboriosam consequuntur reiciendis.\nIllo velit quis quaerat deleniti earum quibusdam blanditiis.", + "pastOrPresentOrders": "Eveniet reprehenderit magni repudiandae unde ipsa doloremque nostrum quaerat earum.", + "commercialAndIndustrialPurposes": [ + { + "uuid": "0efe2bf8-2eec-400e-91b4-e7a87cc2ed5e", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "uuid": "e4192122-a6e1-4e01-b993-7a3acd1a032a", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "uuid": "79da364a-6ef2-4e15-9df3-9d54114e5d9a", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + } + ] + }, + { + "uuid": "ab3e9400-d423-4f9d-beb2-c8be10fde820", "siteRegistry": false, - "dateReceived": "2019-02-19", - "dateCompleted": "2020-03-30", - "dateEntered": "2018-04-08", - "dateRegistrar": "2019-06-25", - "dateLocalAuthorityReceived": "2017-01-31", - "summary": "Tenetur dolores quae provident.", - "informationUsed": "At ipsa nostrum debitis assumenda architecto tempora.\nQuae totam quae.\nPorro deserunt hic magnam.\nNam saepe nobis quo nihil inventore laborum.", - "pastOrPresentOrders": "Nemo cumque ullam commodi sapiente explicabo.", + "dateReceived": "2023-02-22", + "dateCompleted": "2021-08-27", + "dateEntered": "2016-03-11", + "dateRegistrar": "2021-12-16", + "dateLocalAuthorityReceived": "2022-11-08", + "summary": "Consequatur esse nisi dolor quia nulla aliquam.\nEaque officia eaque delectus illum.", + "informationUsed": "Voluptatum at qui velit cum est quisquam quod distinctio earum.\nPossimus quisquam recusandae voluptate atque.\nNon laudantium accusantium doloribus unde.\nFacere voluptates rerum natus.\nDicta cumque nam.", + "pastOrPresentOrders": "Eaque at architecto est facilis.", "commercialAndIndustrialPurposes": [ { - "uuid": "e212c39c-e277-4db8-80c9-5d20998dd048", + "uuid": "599f18f4-1170-4f44-bbab-5b6024a8f6d4", "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "uuid": "51f1471f-f8d0-4693-ae24-02428ea83e02", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, { - "uuid": "5e3b656b-7075-4ec0-91a7-bbbcd4d4193d", + "uuid": "52fe9ebc-d56a-4c4f-ac66-f988cfb52b5c", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false @@ -65783,92 +77003,129 @@ ], "activityLog": [ { - "uuid": "1956a898-002c-4122-ac00-a57c1a82536b", + "uuid": "85509814-dfe2-4178-aae3-9af3c05a65cf", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "RUNOLFSDOTTIR AGNES", - "timestamp": "2020-07-27" + "user": "MOORE LARISSA", + "timestamp": "2016-04-22" }, { - "uuid": "6ed2c4b7-cb08-43d2-8537-2f4dad82ba93", + "uuid": "61d59733-8bf6-4913-aed3-a116284835bf", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "MOORE OPHELIA", - "timestamp": "2015-09-30" + "user": "SPENCER MARGARETT", + "timestamp": "2015-06-27" }, { - "uuid": "ec9e8833-38db-4168-a873-6aef0cc97196", - "siteRegistry": false, + "uuid": "fe52959a-777a-4546-b19d-624c28425a5b", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "GOLDNER ADITYA", - "timestamp": "2022-08-03" + "user": "NADER MIKAYLA", + "timestamp": "2015-01-23" }, { - "uuid": "e9360766-7b11-4a1e-8763-64865b22a5f6", + "uuid": "8909662a-d473-49ae-9fe2-b64c44f98916", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "WEISSNAT JAIRO", - "timestamp": "2015-03-06" + "user": "OLSON EVERETTE", + "timestamp": "2016-12-05" }, { - "uuid": "dc2f96f3-c3a6-4cee-ad86-4c23407f1d9b", + "uuid": "65f455f8-0e94-4544-8cc1-a62559bb6bcc", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "PAUCEK CORBIN", - "timestamp": "2014-03-09" + "user": "HOPPE ZITA", + "timestamp": "2021-05-10" }, { - "uuid": "9c7cfcce-5dfc-4c3c-b02a-1c20084e0569", - "siteRegistry": true, + "uuid": "7fac6ae3-78e3-493b-b68c-36725a27dc63", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "CHAMPLIN ANNA", + "timestamp": "2018-01-27" + }, + { + "uuid": "619a9de0-a195-4161-a312-a73324b1c47e", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "WEISSNAT BEAULAH", + "timestamp": "2023-05-01" + }, + { + "uuid": "d2dfb324-52f3-4862-86fa-63aea3a4a674", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "JACOBSON AMPARO", - "timestamp": "2023-08-09" + "user": "ANKUNDING TANYA", + "timestamp": "2016-03-27" }, { - "uuid": "a611a9a7-288c-4fb1-820a-a21bf1a9b4a8", + "uuid": "e3f2a092-f938-4149-bbb5-5e5cf96646d8", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "MANN-WELCH VERNON", - "timestamp": "2016-05-20" + "user": "WELCH LYNN", + "timestamp": "2017-07-08" + }, + { + "uuid": "8b34f667-f06b-49af-beb7-b66283814207", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "GRANT RUTH", + "timestamp": "2018-08-23" } ], "associatedSites": [ { - "uuid": "c7e61d4b-3613-4d26-9e5e-f7037ee31133", - "dateNoted": "2021-01-01", + "uuid": "69c3aaf5-8cf9-4500-9699-665d2b024006", + "dateNoted": "2017-08-08", "notes": "", - "parcelID": "19858", - "siteID": "16270", + "parcelID": "19620", + "siteID": "17014", + "siteRegistry": false + }, + { + "uuid": "1d1727b9-f61b-4eab-bf44-d0346f17fa5e", + "dateNoted": "2023-01-25", + "notes": "", + "parcelID": "15757", + "siteID": "18513", + "siteRegistry": true + }, + { + "uuid": "037c46b7-780e-457f-be15-88fbb55eb0fb", + "dateNoted": "2014-04-12", + "notes": "", + "parcelID": "17921", + "siteID": "16344", "siteRegistry": true } ] }, { - "uuid": "89e0dea2-3239-4a2f-80c4-c255b7f28c3b", - "siteID": 20482, - "address": "38562 Kailyn Lodge", - "latitude": 57.9439, - "longitude": -130.1813, - "lastUpdated": "2020-03-06", - "city": "Rancho Cordova", - "region": "Thompson-Okanagan", - "victoriaFile": "26250-20/17741", + "uuid": "09599145-d83c-46aa-8568-cd3e4a318b10", + "siteID": 16012, + "address": "25330 Feeney Track", + "latitude": 54.6798, + "longitude": -127.2933, + "lastUpdated": "2018-02-19", + "city": "Tempe", + "region": "Vancouver Island/Coast", + "victoriaFile": "26250-20/10028", "regionalFile": "N/A", "parcelIDs": [ - 3546630, - 4014533, - 8895786, - 2702563, - 1926063 + 9435805, + 8956589, + 4650843, + 8847327, + 1384299 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "125ea0d8-c7f7-49a7-8b41-67b3a7a4d530", - "createdAt": "2022-01-27", - "completed": "2015-06-02", - "initiated": "2019-04-03", - "ministryContact": "BAUMBACH WILL", + "uuid": "0733991d-6e58-464b-9bda-28fc703852d0", + "createdAt": "2019-07-03", + "completed": "2023-04-20", + "initiated": "2014-09-18", + "ministryContact": "CRONA THERESE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -65877,26 +77134,32 @@ ], "notationParticipants": [ { - "uuid": "3dfb3e59-6c75-4172-bcd1-e24a15ab9b4a", - "name": "SHELL CANADA PRODUCTS", + "uuid": "3c975c6f-1f3d-4379-8ff0-be82b8b51e27", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "140ed8e6-b14e-4f45-927a-185b94b17ea3", + "uuid": "ef3934be-17ca-4d79-8059-e1e42db303f0", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "uuid": "dd094e81-d758-4ac5-a5e5-e803a452e3d8", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "b732d093-1ef7-416d-951b-d4fdae22c019", - "createdAt": "2015-07-14", - "completed": "2016-04-12", - "initiated": "2016-07-01", - "ministryContact": "RAYNOR MOHAMMED", + "uuid": "195b5a5a-005f-4f89-a54a-89ab69f5a798", + "createdAt": "2016-02-21", + "completed": "2022-08-18", + "initiated": "2017-01-09", + "ministryContact": "DIBBERT KYLIE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -65905,60 +77168,44 @@ ], "notationParticipants": [ { - "uuid": "50b75c26-0172-490f-9329-fda7aa7a3931", + "uuid": "5e4febac-934a-4e75-8c4d-9ad3ccbfad54", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "997489ba-534f-446a-9ca7-d10e88ef982f", + "uuid": "f4582603-e0f2-46af-98b5-3f4ce9764cf8", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true }, { - "uuid": "a2fdfeff-b4fa-42cf-a9f8-1d6bf6e4a3d0", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "uuid": "779114fa-ab48-4eb2-940c-b532e02f1e0c", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": false - } - ], - "siteRegistry": false - }, - { - "uuid": "a5610413-ed26-4f0f-93f8-90beb6952b2d", - "createdAt": "2018-06-12", - "completed": "2015-12-15", - "initiated": "2014-04-06", - "ministryContact": "STOKES KRYSTEL", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ + }, { - "uuid": "52e91f60-a389-4a76-bbb3-d06d1ca909c8", - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "ef59f61d-13a5-4981-8e81-dd7022655d86", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true }, { - "uuid": "7aa746f0-3740-49ff-902b-2cd818560ee4", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true + "uuid": "e100a89d-fddd-46ed-a99d-e13131b8fe46", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false } ], "siteRegistry": false }, { - "uuid": "5e7d0134-c08e-439f-b4ab-7adf4e10e9a3", - "createdAt": "2014-03-12", - "completed": "2020-12-30", - "initiated": "2017-11-18", - "ministryContact": "GUTMANN ELLEN", + "uuid": "2b57cbbd-df9f-4ab6-b960-0a90e5b1f86e", + "createdAt": "2017-02-19", + "completed": "2022-01-08", + "initiated": "2017-07-19", + "ministryContact": "BECKER JAVON", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -65967,38 +77214,32 @@ ], "notationParticipants": [ { - "uuid": "56ab6a4c-c08e-4902-acfc-a06e27b84b5f", + "uuid": "b421c73e-3f10-4e3b-8af6-d411e0b7848c", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true + "role": "SUBMITTED BY", + "siteRegistry": false }, { - "uuid": "9eb9197a-32b6-47e7-bc8b-cb0bf2c6a7ed", - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "b8d0108d-04d0-4a45-8397-ef05b1ae24a1", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true }, { - "uuid": "9d0f7bc9-07d1-4cb0-86f6-cc5638df7e0e", + "uuid": "6b894813-4428-435d-9066-5a769024dc67", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false - }, - { - "uuid": "45fb863c-b648-4999-813d-50eeb09063cd", - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "8c40a76b-ebe5-4d26-a167-16c3de3af626", - "createdAt": "2016-04-21", - "completed": "2023-09-25", - "initiated": "2020-07-19", - "ministryContact": "LIND JOSHUAH", + "uuid": "93d0e200-69a0-456f-a1f7-4f0a31256d02", + "createdAt": "2019-08-03", + "completed": "2015-01-01", + "initiated": "2020-07-25", + "ministryContact": "BASHIRIAN GRACE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -66007,202 +77248,303 @@ ], "notationParticipants": [ { - "uuid": "cb8ab6d9-d734-44c1-9567-4936a2e0148d", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "uuid": "7f890c51-80cf-4cd5-826f-1f106074f3c7", + "uuid": "159bbb84-6664-497f-8a44-89ee34eeebcd", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "uuid": "67f6e27a-fc5a-4f57-acdd-b337f5e65e7e", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", "siteRegistry": false }, { - "uuid": "464f943e-7b35-4a68-88e4-f0dc32b2eaab", + "uuid": "ab6c6459-712f-477d-b794-dceb3f89f935", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false } ], "participants": [ { - "uuid": "ad2a99df-048d-4daa-9d38-4e58970cfb1b", - "name": "IPSUM", - "endDate": "2020-02-10", - "startDate": "2023-07-07", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": true - }, - { - "uuid": "e3851836-db3a-4dad-ab77-67ebc8802d22", + "uuid": "074e3ee0-d42f-4ad4-921e-254a2ef50f92", "name": "SHELL CANADA PRODUCTS", - "endDate": "2018-04-25", - "startDate": "2017-05-23", + "endDate": "2020-09-01", + "startDate": "2020-10-28", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "78b70502-d862-4d67-a4f5-773c37d499fc", + "uuid": "4b7ccb42-6b36-48ee-9c6a-7897f0c55e80", "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2019-12-25", - "startDate": "2023-02-09", + "endDate": "2018-11-28", + "startDate": "2019-11-05", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "fad3fa42-03ad-4a5e-a81a-a5d77124b0b0", - "name": "IPSUM", - "endDate": "2018-05-09", - "startDate": "2021-03-27", + "uuid": "bc50a624-4dee-4a3d-b3fd-60d2d781c2f0", + "name": "AMET, DOLOR SIT", + "endDate": "2016-03-14", + "startDate": "2022-03-12", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": true } ], - "suspectLandUses": [ + "documents": [ + { + "uuid": "10d42a73-e673-4ef5-8b27-0b263fa1fe63", + "siteRegistry": false, + "documentDate": "2014-01-05", + "receivedDate": "2019-07-15", + "uploadedDate": "2017-02-21", + "title": "Summary of Site Conditions, 1537 W 41st Avenue, Vancouver", + "participants": [ + { + "uuid": "ce8e8695-c298-4c66-b4a8-91bb139375b5", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "5262a16f-86e1-47a0-bffb-e4652327bc98", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": false, + "role": "AUTHOR" + } + ] + }, { - "uuid": "d8acf7b6-012c-47c2-be90-bb896ccce4d8", + "uuid": "702d05dd-2db3-414b-b49f-ad06bbc9b751", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-05-27 (described on Site Profile dated 2021-05-27)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "documentDate": "2023-09-06", + "receivedDate": "2014-01-19", + "uploadedDate": "2018-04-21", + "title": "Summary of Site Conditions, 1537 W 41st Avenue, Vancouver", + "participants": [ + { + "uuid": "4df51147-fdc1-4213-9452-e9d9e75da465", + "name": "AMET, DOLOR SIT", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "00d384be-7633-4ef7-b411-eff83b1700c7", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": false, + "role": "AUTHOR" + } + ] + }, + { + "uuid": "d42cf7cf-bd5d-432d-8616-770cbb578df8", + "siteRegistry": true, + "documentDate": "2022-11-29", + "receivedDate": "2023-04-15", + "uploadedDate": "2014-09-13", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "d11112a0-25a0-47b4-a5db-56f300f4375e", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "46e9e3e7-ceb9-44d4-827e-86569941aea7", + "name": "IPSUM", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "2210518c-6014-4036-9f5f-383aea754e2d", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": false, + "role": "AUTHOR" + } + ] + }, + { + "uuid": "fdef14ee-6555-4afa-a9a6-fb2eeecb7195", + "siteRegistry": true, + "documentDate": "2019-01-18", + "receivedDate": "2019-09-11", + "uploadedDate": "2014-08-03", + "title": "Summary of Site Conditions, 1537 W 41st Avenue, Vancouver", + "participants": [ + { + "uuid": "11ba8899-34fc-46db-897c-87bb4123fcfe", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "60168100-92c5-40b9-be33-fa3a823cc65b", + "name": "IPSUM", + "siteRegistry": true, + "role": "AUTHOR" + } + ] }, { - "uuid": "38a63934-cd02-408d-98af-28646ae4b0ab", + "uuid": "1b3ec081-9110-435b-bbeb-23a710da3c12", + "siteRegistry": false, + "documentDate": "2019-06-04", + "receivedDate": "2020-07-19", + "uploadedDate": "2018-11-07", + "title": "Preliminary Site Investigation, Detailed Site Investigation and Remedial Plan for the Management Area adjacent to the Shell Site at 1503 West 41st Ave", + "participants": [ + { + "uuid": "6cfbd60c-0618-439e-aa5b-dba8099dc788", + "name": "AMET, DOLOR SIT", + "siteRegistry": true, + "role": "AUTHOR" + } + ] + } + ], + "suspectLandUses": [ + { + "uuid": "28a425c1-7fc8-4d8b-9cc6-21bd1ad53d60", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-10-08 (described on Site Profile dated 2022-10-08)", + "notes": "INSERTED FOR SITE PROFILE DATED 2023-01-01 (described on Site Profile dated 2023-01-01)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "uuid": "5e4f5fdc-6707-4322-9cd4-45240d286bf8", + "uuid": "4db51714-9123-467d-8a5a-c0bdbef5d223", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-07-03 (described on Site Profile dated 2015-07-03)", + "notes": "INSERTED FOR SITE PROFILE DATED 2021-02-03 (described on Site Profile dated 2021-02-03)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "uuid": "72735bf0-6405-4984-bc46-53bbb77bfeb8", + "uuid": "41752e8a-89ed-4cae-a4d9-7b36770dfc3b", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-04-10 (described on Site Profile dated 2022-04-10)", + "notes": "INSERTED FOR SITE PROFILE DATED 2022-12-20 (described on Site Profile dated 2022-12-20)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "uuid": "d3a29df2-19ee-492d-9f29-f6fc0dca5b4d", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2016-12-09 (described on Site Profile dated 2016-12-09)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "uuid": "12afab59-11d9-473a-a9bb-10caef8352c0", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2019-06-01 (described on Site Profile dated 2019-06-01)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], "parcelDescriptions": [ { - "uuid": "30f36d35-1330-4334-ad51-934420654076", - "siteRegistry": true, - "dateNoted": "2019-07-20", - "parcelID": "15999", - "crownLandUsePIN": "19020", - "crownLandFileNumber": "19672", - "landDescription": "LOT 2 OF LOT 5 BLOCK 1 DISTRICT LOT 5 PLAN 6034" + "uuid": "cd10056c-1609-4285-baf7-9b9998e2b385", + "siteRegistry": false, + "dateNoted": "2019-05-14", + "parcelID": "15840", + "crownLandUsePIN": "19227", + "crownLandFileNumber": "18411", + "landDescription": "LOT 3 OF LOT 4 BLOCK 5 DISTRICT LOT 3 PLAN 6491" }, { - "uuid": "44265d31-5970-437e-a76f-23258c1b7474", - "siteRegistry": true, - "dateNoted": "2014-01-08", - "parcelID": "17805", - "crownLandUsePIN": "20219", - "crownLandFileNumber": "20947", - "landDescription": "LOT 4 OF LOT 5 BLOCK 2 DISTRICT LOT 4 PLAN 8261" + "uuid": "d8b32d9c-25ba-457e-b7d0-4c7cab84acce", + "siteRegistry": false, + "dateNoted": "2018-06-25", + "parcelID": "20273", + "crownLandUsePIN": "17092", + "crownLandFileNumber": "18926", + "landDescription": "LOT 3 OF LOT 2 BLOCK 2 DISTRICT LOT 3 PLAN 5825" }, { - "uuid": "e213fd12-8c8e-4bca-9c85-ecf437004aac", + "uuid": "4522b826-39dd-4bf6-937e-4afaba977cfb", "siteRegistry": false, - "dateNoted": "2019-02-21", - "parcelID": "19932", - "crownLandUsePIN": "17172", - "crownLandFileNumber": "17711", - "landDescription": "LOT 3 OF LOT 3 BLOCK 2 DISTRICT LOT 3 PLAN 8428" + "dateNoted": "2017-05-26", + "parcelID": "20407", + "crownLandUsePIN": "19718", + "crownLandFileNumber": "18337", + "landDescription": "LOT 4 OF LOT 2 BLOCK 2 DISTRICT LOT 1 PLAN 4236" }, { - "uuid": "9ba03d4f-3745-45c4-96ac-949d86407e18", - "siteRegistry": true, - "dateNoted": "2019-10-28", - "parcelID": "19964", - "crownLandUsePIN": "19219", - "crownLandFileNumber": "19458", - "landDescription": "LOT 3 OF LOT 1 BLOCK 5 DISTRICT LOT 2 PLAN 3589" + "uuid": "5dfe14b1-5ba9-446a-8025-4e0c65d67a00", + "siteRegistry": false, + "dateNoted": "2019-04-15", + "parcelID": "20056", + "crownLandUsePIN": "19323", + "crownLandFileNumber": "19190", + "landDescription": "LOT 2 OF LOT 3 BLOCK 5 DISTRICT LOT 5 PLAN 7884" } ], "siteDisclosures": [ { - "uuid": "a588f39a-ccae-4393-a7c9-67b4a3c78485", - "siteRegistry": false, - "dateReceived": "2021-09-16", - "dateCompleted": "2019-05-30", - "dateEntered": "2016-08-24", - "dateRegistrar": "2021-07-12", - "dateLocalAuthorityReceived": "2016-08-07", - "summary": "Tempora fugiat numquam fugiat fugit commodi facere iusto quas.\nQuas culpa id nostrum id doloremque laboriosam quasi.", - "informationUsed": "Architecto nihil quidem doloribus repudiandae minus vero.\nAliquam rem quaerat eligendi praesentium corporis error laudantium consequuntur natus.\nMinus animi molestias quam dolore molestiae rem eaque labore.\nDolorum deleniti minima.\nRepudiandae est inventore ea pariatur.", - "pastOrPresentOrders": "Impedit magni sed tenetur molestiae nobis totam.", + "uuid": "4c421c63-a158-42f1-8cb3-6ef3dbf56f4e", + "siteRegistry": true, + "dateReceived": "2013-11-15", + "dateCompleted": "2017-01-12", + "dateEntered": "2015-05-26", + "dateRegistrar": "2015-10-22", + "dateLocalAuthorityReceived": "2015-10-23", + "summary": "Amet consectetur voluptatum delectus fugit quibusdam quis quidem.\nMolestiae harum quas doloremque sed pariatur natus natus quam architecto.", + "informationUsed": "Dolor vitae iure minus omnis nihil praesentium atque maiores ipsum.\nRepellendus expedita totam numquam optio nulla in.\nExercitationem est ex a reiciendis voluptatem aliquam repudiandae.", + "pastOrPresentOrders": "Repellendus ipsum dolorem.", "commercialAndIndustrialPurposes": [ { - "uuid": "2eb27358-ab81-403f-91b5-6b8d7ebb4c0b", + "uuid": "ee23f4fc-b1c1-41cb-9017-6a92bf087845", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "uuid": "5486a2c1-ea3a-4c12-a631-dd038f92ed15", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { - "uuid": "267131f7-dc1c-4adf-a9c6-847243c0b266", + "uuid": "21997e51-6ce0-4c6b-baab-da14a0a70454", "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true }, { - "uuid": "22409cdc-f2a4-4412-9138-e2a330f93a95", + "uuid": "523510ec-8a65-4294-b61f-8364cdf7c8b8", "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true } ] }, { - "uuid": "9b4c3d58-3a7b-4b82-b48c-e93c63084ecb", + "uuid": "da10ce81-039c-4800-835e-4135e5dbe244", "siteRegistry": false, - "dateReceived": "2022-05-23", - "dateCompleted": "2020-09-20", - "dateEntered": "2018-03-17", - "dateRegistrar": "2016-09-16", - "dateLocalAuthorityReceived": "2016-12-16", - "summary": "Tenetur impedit laboriosam.\nOdio pariatur ex quibusdam doloribus rem neque.\nDolores quis suscipit.", - "informationUsed": "Quibusdam expedita in sit incidunt in ea.\nCorrupti laboriosam officia recusandae quidem repudiandae illum enim odio.\nFacere quam adipisci ipsa eos nam.", - "pastOrPresentOrders": "Voluptas illum dolorem ipsam esse ipsam.\nNeque quam ex quas ad.", + "dateReceived": "2017-10-04", + "dateCompleted": "2013-11-08", + "dateEntered": "2021-01-26", + "dateRegistrar": "2022-05-04", + "dateLocalAuthorityReceived": "2017-08-03", + "summary": "Est dolor dolore neque possimus magni molestias ducimus explicabo.\nMaiores ullam fugit cumque.", + "informationUsed": "Totam ullam maxime quisquam distinctio sint aut corporis beatae.\nSit quo culpa sequi dignissimos libero.\nCumque similique vitae.\nOdit recusandae voluptatem necessitatibus aliquid a quidem reiciendis.", + "pastOrPresentOrders": "Delectus libero numquam amet maxime rem perspiciatis possimus distinctio nihil.\nEst numquam deserunt eum.\nDelectus iure doloribus animi quis itaque.", "commercialAndIndustrialPurposes": [ { - "uuid": "345969f5-9868-48dc-a6e5-5c1794775306", - "scheduleReference": "F2*", + "uuid": "1ffd7721-3637-4e46-b87d-59bbdb1fc20c", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "808f7a57-043e-42e1-821b-426ecd5fd45f", + "uuid": "c007132c-4acc-4176-8952-d67ce1590665", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "4b7c0a1f-89f5-4a56-ac02-60e796a7fcaa", + "uuid": "71d37672-62af-4164-9060-9152c0273dce", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false @@ -66212,78 +77554,99 @@ ], "activityLog": [ { - "uuid": "e1a0c97f-3b5a-483b-8f35-c41dba866b5b", - "siteRegistry": false, + "uuid": "d6af2a3c-a712-4b71-bc49-a9d459e82298", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "PARKER DEXTER", - "timestamp": "2022-01-30" + "user": "MERTZ BERNITA", + "timestamp": "2021-05-21" }, { - "uuid": "0856d0cb-6189-4885-b768-57b9b441d814", + "uuid": "ac7eb812-86be-4fac-a1da-5042651b4921", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "DICKINSON ANIYA", - "timestamp": "2018-10-28" + "user": "MITCHELL MONSERRAT", + "timestamp": "2017-02-16" }, { - "uuid": "d6fdabc5-0a5d-49bc-89a8-00e3c6c9efa4", + "uuid": "3bdf089d-480e-437e-ab4d-61dd4b0f6220", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "HYATT LEOPOLDO", - "timestamp": "2017-01-01" + "user": "WARD ALI", + "timestamp": "2016-02-16" + }, + { + "uuid": "cf2f8841-66d9-4918-b60d-252856b40b5c", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "KOZEY NEAL", + "timestamp": "2014-12-27" + }, + { + "uuid": "5478a340-6251-4963-abc9-64c2ba9abf8b", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "FARRELL VERLIE", + "timestamp": "2022-12-02" }, { - "uuid": "7736676c-fcf1-4303-a07b-3eb6d2c9e9e2", + "uuid": "2428cd93-8128-4715-91a8-6946435c84ee", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "DENESIK MACIE", - "timestamp": "2020-04-01" + "user": "WALSH JUVENAL", + "timestamp": "2022-08-21" }, { - "uuid": "e77f3e6b-cdcb-4636-8c81-b5e38622efd3", + "uuid": "b78a3b35-8d47-40e0-81f6-cf14f7a7ac74", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "HANE DEANNA", - "timestamp": "2016-04-02" + "user": "JOHNSON TRISTON", + "timestamp": "2015-09-04" + }, + { + "uuid": "1d7009fd-7eab-4a1a-968a-330dcd606a0d", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "GRIMES OSBORNE", + "timestamp": "2023-09-15" } ], "associatedSites": [ { - "uuid": "b6423842-e02e-48bb-a18d-d2e53cc861bc", - "dateNoted": "2022-07-13", + "uuid": "7ae99552-3130-4747-ac4b-dcd15d5f9b37", + "dateNoted": "2014-05-06", "notes": "", - "parcelID": "16254", - "siteID": "19218", + "parcelID": "20761", + "siteID": "16344", "siteRegistry": false } ] }, { - "uuid": "ace42fda-0059-4113-803c-47c74e55e926", - "siteID": 19479, - "address": "179 Considine Green", - "latitude": 48.4906, - "longitude": -119.8113, - "lastUpdated": "2017-11-29", - "city": "Lehigh Acres", - "region": "Kootenay", - "victoriaFile": "26250-20/14691", + "uuid": "9b9e3227-dfe3-48a9-b48b-007d9b0021eb", + "siteID": 17277, + "address": "9598 Boehm Land", + "latitude": 56.4169, + "longitude": -128.0398, + "lastUpdated": "2018-05-09", + "city": "North Staceystead", + "region": " North Coast", + "victoriaFile": "26250-20/9729", "regionalFile": "N/A", "parcelIDs": [ - 811968, - 4344426, - 6023298, - 568271, - 9507107 + 1823128, + 5192969, + 2203622, + 5250366, + 4999160 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "15f19390-9550-44a2-a09a-118c47f8fb1f", - "createdAt": "2021-07-19", - "completed": "2021-05-22", - "initiated": "2021-01-04", - "ministryContact": "SCHINNER SHERMAN", + "uuid": "622b660a-9ba5-45c8-9557-2ac877232851", + "createdAt": "2013-10-30", + "completed": "2019-06-19", + "initiated": "2021-04-29", + "ministryContact": "CREMIN CYNTHIA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -66292,26 +77655,38 @@ ], "notationParticipants": [ { - "uuid": "06eb631a-678a-4714-a718-2cca51e4c175", + "uuid": "580eae20-9693-4d90-9698-df536a6700ae", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "60c5f5f0-1198-450f-a861-4f121b81cf47", + "uuid": "56a8aa63-cd12-489c-8fb3-ff56602f360b", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "39656f21-1bf7-4678-8a51-255f7ca0f967", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": false + }, + { + "uuid": "042e80e0-a15d-4712-83ba-eecf490aaf5f", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true } ], "siteRegistry": false }, { - "uuid": "eea9e2b5-2e1b-4431-88cf-e5956580f934", - "createdAt": "2020-10-20", - "completed": "2017-08-29", - "initiated": "2022-09-06", - "ministryContact": "LUBOWITZ DALLIN", + "uuid": "70619f47-03bd-40cb-968b-c976b0572f6b", + "createdAt": "2018-03-03", + "completed": "2017-03-14", + "initiated": "2015-07-18", + "ministryContact": "NIENOW JEWEL", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -66320,32 +77695,14 @@ ], "notationParticipants": [ { - "uuid": "da6cca5d-851c-422a-bff0-489ee771fed0", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "uuid": "7234b73e-af47-4670-bce2-1f3ae6a55a89", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "uuid": "29dc31ea-3e8c-4a1b-a0a1-372cf1f4401b", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "uuid": "84a09140-423a-4573-ae41-e683559a38ac", - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "03fda860-f659-4332-94bd-2381fefc86f2", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "3ceba771-c996-4624-9500-ae6e5cc43749", - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "0c680492-e97e-4dd0-ac8c-3dec7268904d", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false } @@ -66353,11 +77710,11 @@ "siteRegistry": false }, { - "uuid": "802ef824-5977-4dd7-a307-0637da12826a", - "createdAt": "2016-08-07", - "completed": "2023-03-01", - "initiated": "2022-10-09", - "ministryContact": "RUTHERFORD RICK", + "uuid": "91a41c98-194c-468e-bbea-6378dde8c59b", + "createdAt": "2023-05-16", + "completed": "2015-04-17", + "initiated": "2021-01-27", + "ministryContact": "GRIMES-DICKINSON ADRIEL", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -66366,32 +77723,20 @@ ], "notationParticipants": [ { - "uuid": "14e530ae-4ec0-4edf-a0dd-bbcfd4ecd8dd", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "uuid": "c69d4c70-b684-4228-84bf-54e8d8917b18", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "uuid": "f8f7fef7-759c-4207-a296-c4a9d13d64f2", + "uuid": "e9136575-6438-4cf3-82b1-81a0a169216d", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false }, { - "uuid": "55ce4d2c-2091-4fa1-807c-dacd051dcd29", - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "7a485694-f505-4648-858f-cb637f46ac44", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "a01f4a06-4bd3-44f3-8421-1d309224ac01", - "name": "SHELL CANADA PRODUCTS", + "uuid": "a96a2b34-2d0f-48c8-b440-82bd9add4aec", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false } @@ -66399,11 +77744,11 @@ "siteRegistry": false }, { - "uuid": "2f8e462f-8d49-497e-82ca-037d669ae317", - "createdAt": "2019-02-23", - "completed": "2015-06-18", - "initiated": "2014-07-12", - "ministryContact": "SCHUSTER LEONARDO", + "uuid": "a5d6ecdd-400b-48a3-97e1-b15eaded52d0", + "createdAt": "2019-06-18", + "completed": "2021-05-17", + "initiated": "2023-06-11", + "ministryContact": "RUSSEL AUGUSTUS", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -66412,20 +77757,32 @@ ], "notationParticipants": [ { - "uuid": "64a75bdb-2b26-4496-9af0-bea1ca543e1c", + "uuid": "8158b0f8-07f4-45cc-98fe-ac0504e2e201", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true + "role": "SUBMITTED BY", + "siteRegistry": false }, { - "uuid": "c57b5a95-3b95-46df-8464-1ee0d5caad15", + "uuid": "7131da96-da8f-4a63-a0d3-07a7dd32a032", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false }, { - "uuid": "bec483da-8efb-49de-a1c0-96eecde1e58e", + "uuid": "0e456075-eb3f-4c8c-b2c9-e122b781acdb", "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "uuid": "bad29c31-e407-4ade-a949-ebf56ac0fbd9", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "a578365f-5c28-4c82-8c50-db19ac6a5743", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false } @@ -66435,165 +77792,237 @@ ], "participants": [ { - "uuid": "2d51460c-a738-40fa-9166-8b53eafa9c35", - "name": "SHELL CANADA PRODUCTS", - "endDate": "2022-02-01", - "startDate": "2023-06-30", + "uuid": "c1c980cf-f390-4a5d-9014-dcba6b065527", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2015-02-10", + "startDate": "2017-05-19", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": false }, { - "uuid": "ff87f9c7-2722-4de9-9a22-adc19e41a628", + "uuid": "6d829eff-5811-458c-840f-8366542746c3", "name": "SHELL CANADA PRODUCTS", - "endDate": "2019-07-06", - "startDate": "2019-01-30", + "endDate": "2015-10-14", + "startDate": "2016-03-12", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": true }, { - "uuid": "6d41ca09-4015-463d-9ef2-5dd8839bf37d", - "name": "AMET, DOLOR SIT", - "endDate": "2015-03-07", - "startDate": "2022-06-24", + "uuid": "a052e5cb-c01e-4011-8508-1b4838706ccd", + "name": "IPSUM", + "endDate": "2018-02-27", + "startDate": "2020-07-15", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "273361bc-fd59-4de4-9d9d-e0da1bb9650d", - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2017-08-30", - "startDate": "2022-05-20", + "uuid": "b874c8bc-8f94-4016-a680-ccc2405a1d3b", + "name": "IPSUM", + "endDate": "2019-02-22", + "startDate": "2022-09-21", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": true + "siteRegistry": false + } + ], + "documents": [ + { + "uuid": "0877628d-d874-4920-accc-3dcc0baca103", + "siteRegistry": false, + "documentDate": "2022-05-21", + "receivedDate": "2021-07-21", + "uploadedDate": "2020-01-18", + "title": "Summary of Site Conditions, 1537 W 41st Avenue, Vancouver", + "participants": [ + { + "uuid": "a26b06b8-a2be-4f62-835f-19d20f6faa1f", + "name": "IPSUM", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "a0c16863-6066-4dbd-a14e-9e88ae246fed", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": false, + "role": "AUTHOR" + } + ] }, { - "uuid": "1170e0fe-3a24-4560-9aec-7e449b1e4d12", - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2015-12-20", - "startDate": "2021-09-06", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": false + "uuid": "1981fa33-8310-4583-b4d6-71a3fd9d38b6", + "siteRegistry": true, + "documentDate": "2018-02-05", + "receivedDate": "2023-04-26", + "uploadedDate": "2021-03-02", + "title": "Summary of Site Conditions, 1537 W 41st Avenue, Vancouver", + "participants": [ + { + "uuid": "de174d6d-d1b6-46ef-a4aa-34ec64776682", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": true, + "role": "AUTHOR" + } + ] + }, + { + "uuid": "bc9fbd9e-a27e-4af0-a3b9-e64f4804d8c5", + "siteRegistry": false, + "documentDate": "2022-04-05", + "receivedDate": "2023-10-03", + "uploadedDate": "2021-04-15", + "title": "Preliminary Site Investigation, Detailed Site Investigation and Remedial Plan for the Management Area adjacent to the Shell Site at 1503 West 41st Ave", + "participants": [ + { + "uuid": "2c84eeb0-cdfe-491e-a4de-1d335415f470", + "name": "AMET, DOLOR SIT", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "277c4c2b-9b0d-4be8-95fa-c05d44dc8b17", + "name": "AMET, DOLOR SIT", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "94c526e0-4e07-4fd1-94fa-19f255e29f4a", + "name": "AMET, DOLOR SIT", + "siteRegistry": false, + "role": "AUTHOR" + } + ] } ], "suspectLandUses": [ { - "uuid": "2ed57a2d-e413-449f-bc6c-d2faeac4a316", + "uuid": "506a71d6-e15c-4b65-afa2-a4d69886fee8", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-03-09 (described on Site Profile dated 2022-03-09)", + "notes": "INSERTED FOR SITE PROFILE DATED 2018-04-27 (described on Site Profile dated 2018-04-27)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "uuid": "f8f5c33b-f0e3-4d23-a358-290b0f377e60", + "uuid": "6ad91b06-2db5-45e5-9e5d-d9659f7ec5f5", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-08-13 (described on Site Profile dated 2014-08-13)", + "notes": "INSERTED FOR SITE PROFILE DATED 2018-12-21 (described on Site Profile dated 2018-12-21)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "uuid": "ccf8770d-1da6-4074-92cb-8eca8ed827cd", + "uuid": "f722c689-eafa-446b-b3f1-756ddb1a3b45", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2017-04-28 (described on Site Profile dated 2017-04-28)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "uuid": "16da5179-849a-4ff7-977a-98295b55fb8b", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2020-06-05 (described on Site Profile dated 2020-06-05)", + "notes": "INSERTED FOR SITE PROFILE DATED 2016-04-03 (described on Site Profile dated 2016-04-03)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], "parcelDescriptions": [ { - "uuid": "4a1a4731-467a-4ffd-a168-fde55897e1a0", + "uuid": "6f617517-d41f-4ce9-9849-6bb5fcda76d6", "siteRegistry": false, - "dateNoted": "2022-06-15", - "parcelID": "20390", - "crownLandUsePIN": "18644", - "crownLandFileNumber": "20606", - "landDescription": "LOT 3 OF LOT 1 BLOCK 4 DISTRICT LOT 4 PLAN 8862" + "dateNoted": "2023-07-10", + "parcelID": "17913", + "crownLandUsePIN": "19319", + "crownLandFileNumber": "17207", + "landDescription": "LOT 1 OF LOT 2 BLOCK 4 DISTRICT LOT 4 PLAN 3871" }, { - "uuid": "8b030845-65b7-4e33-9710-eefa0c0b6b65", + "uuid": "3c916f1a-7ff9-488a-8d4d-10e74eb7ec01", + "siteRegistry": false, + "dateNoted": "2022-06-16", + "parcelID": "15266", + "crownLandUsePIN": "18213", + "crownLandFileNumber": "20210", + "landDescription": "LOT 5 OF LOT 5 BLOCK 5 DISTRICT LOT 3 PLAN 2993" + }, + { + "uuid": "b7a40fc3-59f9-4f1c-8ce1-77a5422a4986", "siteRegistry": true, - "dateNoted": "2018-09-25", - "parcelID": "19258", - "crownLandUsePIN": "17857", - "crownLandFileNumber": "18502", - "landDescription": "LOT 1 OF LOT 1 BLOCK 4 DISTRICT LOT 3 PLAN 6503" + "dateNoted": "2023-04-19", + "parcelID": "20351", + "crownLandUsePIN": "17108", + "crownLandFileNumber": "20863", + "landDescription": "LOT 2 OF LOT 3 BLOCK 3 DISTRICT LOT 3 PLAN 3597" }, { - "uuid": "2e459645-ee9a-4343-81ac-5a8daa86b2d3", + "uuid": "a480c3d7-ad51-48b3-8887-82476154969a", "siteRegistry": true, - "dateNoted": "2023-05-25", - "parcelID": "18189", - "crownLandUsePIN": "18286", - "crownLandFileNumber": "15337", - "landDescription": "LOT 3 OF LOT 5 BLOCK 4 DISTRICT LOT 4 PLAN 6648" + "dateNoted": "2014-08-13", + "parcelID": "20909", + "crownLandUsePIN": "20735", + "crownLandFileNumber": "19258", + "landDescription": "LOT 1 OF LOT 3 BLOCK 1 DISTRICT LOT 3 PLAN 3888" } ], "siteDisclosures": [ { - "uuid": "adde84fe-296f-491c-92ec-70df93e12c0b", - "siteRegistry": true, - "dateReceived": "2019-10-17", - "dateCompleted": "2019-11-08", - "dateEntered": "2013-10-27", - "dateRegistrar": "2017-11-13", - "dateLocalAuthorityReceived": "2019-02-28", - "summary": "Ab ea molestias nihil illo mollitia tenetur ipsam pariatur veniam.\nExcepturi dolorum architecto.", - "informationUsed": "Debitis modi inventore excepturi quidem sed enim accusamus.\nOfficiis cum magnam eveniet eos reiciendis quo occaecati occaecati blanditiis.\nDignissimos atque ut corporis omnis facilis.\nQuod necessitatibus ipsum.", - "pastOrPresentOrders": "Quia quas natus non asperiores velit molestias debitis.", + "uuid": "186c8999-3953-4d25-b525-0a83c14771d3", + "siteRegistry": false, + "dateReceived": "2018-12-20", + "dateCompleted": "2021-11-19", + "dateEntered": "2017-11-11", + "dateRegistrar": "2017-09-16", + "dateLocalAuthorityReceived": "2017-10-06", + "summary": "Voluptates neque nemo quo.\nQuia occaecati itaque eaque consectetur.", + "informationUsed": "Recusandae tempora ex accusamus accusamus excepturi reiciendis vero.\nMolestias iusto recusandae tempore facilis.\nMaxime assumenda eum.\nDicta suscipit similique neque pariatur quod repellendus maiores aperiam.\nAccusamus quo molestiae veritatis explicabo corporis placeat similique adipisci sapiente.", + "pastOrPresentOrders": "Voluptatem voluptatum et eius.\nQuos nobis magnam beatae tempora eaque a maiores doloribus deleniti.", "commercialAndIndustrialPurposes": [ { - "uuid": "6fa0b894-70e8-4921-bbb3-df67944cabdc", + "uuid": "b0e3262b-acf3-4fdc-8afa-d650034f9fb4", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false + "siteRegistry": true + }, + { + "uuid": "2e3a1c7b-c60b-48c2-bbdb-d8242556c3e2", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true }, { - "uuid": "f507a232-0bf4-4dc8-9415-443a0ebcada3", + "uuid": "5fc4e314-429e-4d09-b006-92adf4a88200", "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true } ] }, { - "uuid": "cf97120c-e250-4e12-bb8a-f4a17c2a0b26", - "siteRegistry": false, - "dateReceived": "2017-10-06", - "dateCompleted": "2021-11-14", - "dateEntered": "2019-10-29", - "dateRegistrar": "2018-12-16", - "dateLocalAuthorityReceived": "2018-06-08", - "summary": "Impedit quas ratione dolorem eaque neque iusto odio.", - "informationUsed": "Ducimus accusamus ab a necessitatibus.\nVoluptatum sequi reiciendis nobis libero aperiam nobis.\nSoluta nesciunt quidem voluptatum unde amet illum nobis non.\nDolores sit at atque.", - "pastOrPresentOrders": "Libero quisquam inventore exercitationem quis optio.", + "uuid": "82d6ea4f-25a8-4c8a-8a72-ae49bf471ead", + "siteRegistry": true, + "dateReceived": "2022-09-11", + "dateCompleted": "2016-09-12", + "dateEntered": "2014-08-03", + "dateRegistrar": "2023-02-14", + "dateLocalAuthorityReceived": "2022-06-19", + "summary": "Optio praesentium ullam esse atque dolorem harum.\nIllo ab deleniti voluptatibus quo doloribus voluptate.", + "informationUsed": "Corporis distinctio nulla aspernatur architecto.\nPerspiciatis dolore accusantium aliquam adipisci aspernatur.\nQuia ex harum dolorum neque.\nAutem possimus occaecati nulla nobis iste.\nPraesentium debitis animi mollitia commodi quos placeat exercitationem magni ex.", + "pastOrPresentOrders": "Ea officia ipsum assumenda commodi.\nVeniam eaque similique velit.", "commercialAndIndustrialPurposes": [ { - "uuid": "dda69cac-b89f-4bc4-af30-ed364ce8f347", - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true - }, - { - "uuid": "c2d25c79-f2d4-472f-b248-b10f617e8444", - "scheduleReference": "F1*", + "uuid": "5b5ea2e8-cace-4508-a202-91f2ae9b90bb", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, { - "uuid": "76435cf1-64a3-4c4c-9c7b-952e8ff203a5", + "uuid": "65566327-592f-4d4a-8e9d-fd997f56c0eb", "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true } ] @@ -66601,115 +78030,93 @@ ], "activityLog": [ { - "uuid": "c793d364-87e6-47ee-bbc6-222627b6e146", + "uuid": "3c55d8d4-1779-4317-ab81-312ba8a345e1", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "DUBUQUE VIVIEN", - "timestamp": "2017-09-28" + "user": "MOORE AGNES", + "timestamp": "2023-03-28" }, { - "uuid": "b421428a-8da3-4418-a6e4-a62a3892ac26", + "uuid": "a15e70e8-b52d-4e5c-9240-534a6c358641", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "WHITE BRENNAN", - "timestamp": "2021-08-29" - }, - { - "uuid": "15cd65fc-f5c4-4b67-9d34-842845274a9e", - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "BOTSFORD CAROLYNE", - "timestamp": "2019-06-30" + "user": "KRIS EMILIANO", + "timestamp": "2015-04-05" }, { - "uuid": "0e6cb95b-c336-40e9-be89-bf7a3b4461aa", + "uuid": "fd9f3231-2c4d-4ef9-9712-8f267e737a9b", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "MITCHELL EMERSON", - "timestamp": "2018-07-15" + "user": "HUDSON-ROWE LUCY", + "timestamp": "2020-11-29" }, { - "uuid": "3db057c4-6e9a-499f-9a69-48ba3a9c43ae", + "uuid": "553a39fd-e78e-4f31-8cc8-7a117aa65ac1", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "BODE EDUARDO", - "timestamp": "2022-04-18" - }, - { - "uuid": "a47d41eb-2d20-47cf-93e8-3dd1a70c8971", - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "GLOVER DANGELO", - "timestamp": "2016-12-13" + "user": "LUETTGEN FORD", + "timestamp": "2014-03-31" }, { - "uuid": "da302c3f-4c0a-4557-ab41-60ea56ea30e7", + "uuid": "a97a7a48-8e91-4a20-b604-3700e4d0eeeb", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "POUROS KATHARINA", - "timestamp": "2015-07-05" + "user": "WILLMS EUGENIA", + "timestamp": "2017-05-24" }, { - "uuid": "24ed2126-2964-4900-a9bf-1c33462b8153", + "uuid": "053991a9-22f6-42cb-ae6d-d6972175fd77", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "SHIELDS SHAD", - "timestamp": "2015-06-04" + "user": "HUEL DEAN", + "timestamp": "2015-10-31" } ], "associatedSites": [ { - "uuid": "3afc14e8-f694-4ff5-90d0-b0f6cce8a7ba", - "dateNoted": "2021-12-04", - "notes": "", - "parcelID": "15835", - "siteID": "15766", - "siteRegistry": true - }, - { - "uuid": "e579c7d4-b1a4-4e26-a678-9bbf53f7608a", - "dateNoted": "2014-09-27", + "uuid": "393850e0-3574-4ef0-9242-f340ec65200d", + "dateNoted": "2017-04-21", "notes": "", - "parcelID": "20729", - "siteID": "15722", - "siteRegistry": true + "parcelID": "15341", + "siteID": "16752", + "siteRegistry": false }, { - "uuid": "80e8913c-2627-4a26-8ed9-00abfa6c8de3", - "dateNoted": "2015-02-26", + "uuid": "7647f31a-794f-4657-9c1f-3138e8860bd5", + "dateNoted": "2023-08-11", "notes": "", - "parcelID": "15932", - "siteID": "16419", - "siteRegistry": true + "parcelID": "16816", + "siteID": "18674", + "siteRegistry": false } ] }, { - "uuid": "c10fc799-d0c2-43de-baf6-7ad9ffe950ef", - "siteID": 17170, - "address": "3541 Reuben Expressway", - "latitude": 57.7261, - "longitude": -135.1182, - "lastUpdated": "2016-06-29", - "city": "Centreville", - "region": "Vancouver Island/Coast", - "victoriaFile": "26250-20/8332", + "uuid": "d987b8fe-b1d7-48ab-a9ca-bae8b7b08818", + "siteID": 18824, + "address": "994 Isabelle Island", + "latitude": 48.6684, + "longitude": -137.0983, + "lastUpdated": "2018-10-02", + "city": "Wizahaven", + "region": "Kootenay", + "victoriaFile": "26250-20/8615", "regionalFile": "N/A", "parcelIDs": [ - 3447582, - 2438997, - 8046175, - 6044488, - 3422130 + 4739211, + 750574, + 6181253, + 9021142, + 7556429 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "fc6100ef-2306-4786-8796-d0ddaac1eb09", - "createdAt": "2020-10-29", - "completed": "2021-06-27", - "initiated": "2017-09-09", - "ministryContact": "HELLER BRAULIO", + "uuid": "7502e68d-b366-4b22-a16f-09f20d46b305", + "createdAt": "2014-08-11", + "completed": "2013-12-31", + "initiated": "2017-04-10", + "ministryContact": "HERZOG-ABBOTT CHAZ", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -66718,54 +78125,44 @@ ], "notationParticipants": [ { - "uuid": "00a76c2c-d13e-474a-9cdc-b98aba90c7af", + "uuid": "a70080c5-328d-4ba9-8425-03e34136deb3", "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "339699c7-82f2-4645-9742-5e053b14efa5", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "598fe7ba-691b-4531-a4bb-586a2ef174f4", + "uuid": "205fee42-822d-42f0-931b-1de9c9be43bb", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true - } - ], - "siteRegistry": true - }, - { - "uuid": "38a6eab3-bf81-46af-9cd4-aa1f1cf2388c", - "createdAt": "2018-05-06", - "completed": "2022-06-14", - "initiated": "2022-02-08", - "ministryContact": "KASSULKE DOMINIC", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ + "siteRegistry": false + }, { - "uuid": "8bafd87f-5189-4be0-9bcb-46a065099d9f", + "uuid": "58ae2639-a828-4e2f-89b0-da8d2aa689bf", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false + "role": "REQUESTED BY", + "siteRegistry": true }, { - "uuid": "90d685c2-0e09-40ae-9b5e-7c1ecb2914a6", + "uuid": "bf73faac-e584-49e9-9c81-c0294b0e1cd0", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false } ], "siteRegistry": true }, { - "uuid": "8f749393-dbc0-4afa-ad6c-bd27851450e5", - "createdAt": "2022-05-31", - "completed": "2018-10-29", - "initiated": "2019-08-25", - "ministryContact": "DOOLEY KEAGAN", + "uuid": "f2fd002d-786f-4916-8495-44e6169cca54", + "createdAt": "2022-11-04", + "completed": "2023-05-14", + "initiated": "2017-12-21", + "ministryContact": "METZ LEONARD", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -66774,174 +78171,263 @@ ], "notationParticipants": [ { - "uuid": "2d2b6306-fc12-4db2-baee-bd0f86b5a1ea", + "uuid": "1e44f6e9-7ce7-420e-8b6c-2a658cf00906", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true + "role": "REQUESTED BY", + "siteRegistry": false }, { - "uuid": "20081bb8-f440-476a-8ae6-5f68be5fce7a", + "uuid": "e4dba899-383d-4c78-b551-640d6add4ecc", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true }, { - "uuid": "5236a755-28ff-458d-8952-2d2fb970fb6d", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "uuid": "e0001d0f-d140-43ec-b3ab-d55375e005a2", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true } ], "participants": [ { - "uuid": "5c91dfb5-6aa2-445f-8412-0a286987d192", - "name": "AMET, DOLOR SIT", - "endDate": "2021-10-23", - "startDate": "2018-02-02", + "uuid": "071cf71f-995b-47ae-b464-3de522ce03c3", + "name": "IPSUM", + "endDate": "2019-03-29", + "startDate": "2022-12-29", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": false }, { - "uuid": "e1698c15-fea5-4d3b-ab80-a82314a1fa66", - "name": "IPSUM", - "endDate": "2023-02-16", - "startDate": "2016-04-14", + "uuid": "952436f8-1e5e-41ac-bb1b-bd6ab141bab1", + "name": "AMET, DOLOR SIT", + "endDate": "2017-05-24", + "startDate": "2022-05-16", "notes": "", "roles": [ "EMPLOYEE" ], "siteRegistry": false + } + ], + "documents": [ + { + "uuid": "fabea771-64ea-41dc-861a-6634ced79a28", + "siteRegistry": true, + "documentDate": "2021-03-05", + "receivedDate": "2020-10-06", + "uploadedDate": "2014-01-07", + "title": "Preliminary Site Investigation, Detailed Site Investigation and Remedial Plan for the Management Area adjacent to the Shell Site at 1503 West 41st Ave", + "participants": [ + { + "uuid": "f379546f-d40c-4b2e-bc1a-6bda013ffa6c", + "name": "AMET, DOLOR SIT", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "ceb70817-b314-47f7-bcc8-e7f1b595e34c", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": true, + "role": "AUTHOR" + } + ] }, { - "uuid": "dc442ec8-1717-40a2-a7b5-25a301e5c1ca", - "name": "AMET, DOLOR SIT", - "endDate": "2023-05-18", - "startDate": "2018-09-09", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": true + "uuid": "f7551fb7-d6a6-4dd7-baad-b7741f1caa8b", + "siteRegistry": false, + "documentDate": "2020-03-27", + "receivedDate": "2015-04-19", + "uploadedDate": "2022-04-15", + "title": "Preliminary Site Investigation, Detailed Site Investigation and Remedial Plan for the Management Area adjacent to the Shell Site at 1503 West 41st Ave", + "participants": [ + { + "uuid": "9fa9c40e-f8de-400b-b9e6-dfeac6d1b3f7", + "name": "AMET, DOLOR SIT", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "088fd44a-7c00-47c3-8d32-bf2fef720174", + "name": "AMET, DOLOR SIT", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "56046ce2-3254-4949-bc23-5b7b2893b42e", + "name": "AMET, DOLOR SIT", + "siteRegistry": true, + "role": "AUTHOR" + } + ] }, { - "uuid": "e99bf413-dc6f-40ef-a0ad-019af99d504a", - "name": "IPSUM", - "endDate": "2017-03-24", - "startDate": "2016-10-06", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": true + "uuid": "713148c7-e1a3-4816-b0fb-02071b93b864", + "siteRegistry": false, + "documentDate": "2017-10-10", + "receivedDate": "2022-11-20", + "uploadedDate": "2020-12-27", + "title": "Summary of Site Conditions, 1537 W 41st Avenue, Vancouver", + "participants": [ + { + "uuid": "c5877757-1957-498e-8748-2373f3d9a288", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": true, + "role": "AUTHOR" + } + ] }, { - "uuid": "37b60ed8-3dd8-4a34-83fa-57e0bfb44554", - "name": "IPSUM", - "endDate": "2020-04-09", - "startDate": "2017-12-16", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": true + "uuid": "c8e9ab64-e400-4eb3-83e5-425eb4b73ad8", + "siteRegistry": false, + "documentDate": "2015-09-19", + "receivedDate": "2018-07-19", + "uploadedDate": "2020-09-26", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "f67a06e4-16d9-46de-a1b7-d332e9134147", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "920c350a-1330-4b7c-abc1-55659c56f789", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": false, + "role": "AUTHOR" + } + ] } ], "suspectLandUses": [ { - "uuid": "702eb27f-43fa-471a-8e64-dad7a910e162", + "uuid": "037b453f-afaf-4014-9091-366072ddf074", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-01-04 (described on Site Profile dated 2022-01-04)", + "notes": "INSERTED FOR SITE PROFILE DATED 2017-01-24 (described on Site Profile dated 2017-01-24)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "uuid": "278acbb6-6142-430d-9cc8-4db7e9c55dda", + "uuid": "73701182-9ae9-44e7-9033-308c62b07126", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-12-10 (described on Site Profile dated 2014-12-10)", + "notes": "INSERTED FOR SITE PROFILE DATED 2014-04-11 (described on Site Profile dated 2014-04-11)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], "parcelDescriptions": [ { - "uuid": "cd6f383f-19cd-40e9-8614-116b40b84ee5", + "uuid": "aa28e8a5-bc0b-4093-839b-90f8393d217a", "siteRegistry": true, - "dateNoted": "2023-02-19", - "parcelID": "18285", - "crownLandUsePIN": "17562", - "crownLandFileNumber": "20022", - "landDescription": "LOT 1 OF LOT 3 BLOCK 2 DISTRICT LOT 4 PLAN 8424" + "dateNoted": "2017-04-03", + "parcelID": "20697", + "crownLandUsePIN": "19143", + "crownLandFileNumber": "17001", + "landDescription": "LOT 1 OF LOT 3 BLOCK 3 DISTRICT LOT 5 PLAN 4202" }, { - "uuid": "7ad2479d-2eb2-4d5e-ad1b-d5f53efb6434", - "siteRegistry": false, - "dateNoted": "2013-11-22", - "parcelID": "17511", - "crownLandUsePIN": "17590", - "crownLandFileNumber": "18866", - "landDescription": "LOT 3 OF LOT 5 BLOCK 2 DISTRICT LOT 5 PLAN 8156" + "uuid": "5731f841-5bcb-43a9-a4b8-44994ed34226", + "siteRegistry": true, + "dateNoted": "2015-03-12", + "parcelID": "16023", + "crownLandUsePIN": "18891", + "crownLandFileNumber": "16685", + "landDescription": "LOT 2 OF LOT 3 BLOCK 4 DISTRICT LOT 2 PLAN 9435" }, { - "uuid": "0eab97e5-df64-47c2-ac0b-5c3e85ec108a", + "uuid": "7a267972-a76d-474a-b8d6-57024ccab352", "siteRegistry": true, - "dateNoted": "2014-03-02", - "parcelID": "16591", - "crownLandUsePIN": "17613", - "crownLandFileNumber": "18756", - "landDescription": "LOT 5 OF LOT 4 BLOCK 2 DISTRICT LOT 2 PLAN 7655" + "dateNoted": "2017-06-05", + "parcelID": "19752", + "crownLandUsePIN": "16599", + "crownLandFileNumber": "20630", + "landDescription": "LOT 5 OF LOT 4 BLOCK 2 DISTRICT LOT 4 PLAN 5839" }, { - "uuid": "38e88c5e-dc74-4477-b3aa-cca6414eed1b", + "uuid": "78b173ea-d7c4-4ba7-b720-02ce0ecaf499", "siteRegistry": false, - "dateNoted": "2018-04-01", - "parcelID": "19291", - "crownLandUsePIN": "16263", - "crownLandFileNumber": "17605", - "landDescription": "LOT 5 OF LOT 5 BLOCK 1 DISTRICT LOT 2 PLAN 8528" + "dateNoted": "2018-03-04", + "parcelID": "15714", + "crownLandUsePIN": "20648", + "crownLandFileNumber": "18088", + "landDescription": "LOT 5 OF LOT 4 BLOCK 1 DISTRICT LOT 3 PLAN 5965" }, { - "uuid": "a3805237-c7ae-474b-bd3d-f4c48c1a7b97", - "siteRegistry": true, - "dateNoted": "2021-12-29", - "parcelID": "16332", - "crownLandUsePIN": "17727", - "crownLandFileNumber": "18017", - "landDescription": "LOT 1 OF LOT 5 BLOCK 2 DISTRICT LOT 2 PLAN 3937" + "uuid": "8fb04857-ebed-4000-a3b1-33634a902395", + "siteRegistry": false, + "dateNoted": "2022-05-15", + "parcelID": "17666", + "crownLandUsePIN": "15794", + "crownLandFileNumber": "17539", + "landDescription": "LOT 4 OF LOT 3 BLOCK 3 DISTRICT LOT 3 PLAN 7039" } ], "siteDisclosures": [ { - "uuid": "5e9b7052-32ce-40bf-87e5-98eb11de1a14", - "siteRegistry": true, - "dateReceived": "2015-03-10", - "dateCompleted": "2017-05-26", - "dateEntered": "2020-04-08", - "dateRegistrar": "2021-10-16", - "dateLocalAuthorityReceived": "2021-12-27", - "summary": "In ex dignissimos rerum adipisci pariatur quasi.\nDebitis nostrum distinctio rem consequuntur quis amet placeat.\nLaboriosam itaque veniam dolores nesciunt blanditiis deserunt dolor.", - "informationUsed": "Occaecati unde quae id nulla.\nItaque fuga excepturi sed inventore ex exercitationem.\nInventore error quas.\nRatione ullam deserunt dignissimos autem distinctio mollitia quis.\nQuisquam eligendi maxime aperiam.", - "pastOrPresentOrders": "Quos illum laudantium quaerat vitae.\nBeatae debitis inventore ratione error reprehenderit accusantium quam quos.", + "uuid": "b5be5883-43ae-495c-912b-5f9e9ba08a2f", + "siteRegistry": false, + "dateReceived": "2017-11-04", + "dateCompleted": "2017-06-04", + "dateEntered": "2017-02-15", + "dateRegistrar": "2019-02-27", + "dateLocalAuthorityReceived": "2019-07-26", + "summary": "Eos dolorum non saepe quaerat quas earum.\nSapiente rerum veniam natus ad consequuntur aliquam officia id voluptates.\nPariatur id maiores illum.", + "informationUsed": "Enim at delectus est labore quia illo non.\nMaiores ex repudiandae officia aut.\nDicta impedit nisi labore repellendus magni eligendi.", + "pastOrPresentOrders": "Fugit alias nemo quod minus libero.", "commercialAndIndustrialPurposes": [ { - "uuid": "5db6378f-4912-4abc-bd3c-c8a403c8005e", + "uuid": "9077575f-a560-4c9d-b155-1d9aecd18da5", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "fbf5898d-9127-46aa-8d9c-00cc852028ea", + "uuid": "2af1e005-d265-4ca4-a6f8-6735032e9248", "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "uuid": "9cc36a8b-85a3-43a5-8c4e-75ce3ed92060", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { - "uuid": "e2d6710b-86e0-4f92-915f-2e898462e92c", + "uuid": "31bcdb7f-9084-4de3-8ecc-f746e6abb7c0", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + } + ] + }, + { + "uuid": "1be4eea3-eda6-4574-927f-88c4f42f5d27", + "siteRegistry": false, + "dateReceived": "2015-06-08", + "dateCompleted": "2023-04-19", + "dateEntered": "2017-12-19", + "dateRegistrar": "2022-10-25", + "dateLocalAuthorityReceived": "2023-03-04", + "summary": "Ad laborum aliquid dolorem libero asperiores sunt.\nMaxime autem odio doloribus aspernatur ipsa ab explicabo aut.", + "informationUsed": "Sunt ad ab.\nUt fugit aspernatur dolorem ipsum sapiente quo.\nTotam non quis officiis voluptas.", + "pastOrPresentOrders": "Perferendis in nesciunt.\nHarum rem accusamus fuga cum aperiam.", + "commercialAndIndustrialPurposes": [ + { + "uuid": "8d536097-bb88-4240-a2ea-64b2630c1c95", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "uuid": "35c226b7-020d-48c2-b34a-c143cd384bfa", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true } ] @@ -66949,129 +78435,114 @@ ], "activityLog": [ { - "uuid": "faf73ef4-fea8-4689-8f47-c7c43112dfa7", + "uuid": "63f878ae-28d3-4b45-8f2d-2b4cef558aa0", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "MUELLER MAURICE", - "timestamp": "2023-03-05" + "user": "CREMIN CORNELIUS", + "timestamp": "2020-05-13" }, { - "uuid": "8bff8f55-fe3d-4dbe-80d0-ce6779556e0a", + "uuid": "67f271eb-8dcc-419c-a10c-24d90d652100", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "RUSSEL ADONIS", - "timestamp": "2017-02-05" + "user": "PARKER ABBIE", + "timestamp": "2014-10-02" }, { - "uuid": "441d5553-c10c-48d5-87de-4b36ca7b0c36", - "siteRegistry": true, + "uuid": "bfa125ed-a1ef-4e02-9345-b96e1f2d44d3", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "HOMENICK ALDEN", - "timestamp": "2018-09-16" + "user": "SCHIMMEL AMAYA", + "timestamp": "2022-01-05" }, { - "uuid": "d2369554-b069-4048-9ffb-a830ff925b9d", + "uuid": "0bab88b2-5e23-47f5-be63-16cd9b2db060", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "SWANIAWSKI NIGEL", - "timestamp": "2014-07-14" + "user": "YOST MARTINA", + "timestamp": "2014-10-16" }, { - "uuid": "6e011e24-7763-4507-9e76-c8aa5e91e489", - "siteRegistry": true, + "uuid": "a092ef7c-9b91-448d-9540-a20d29c4ba3b", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "WEHNER MAIYA", - "timestamp": "2018-06-12" + "user": "KIEHN TYREL", + "timestamp": "2019-02-22" }, { - "uuid": "ac8f9b4c-abd7-42ac-8007-c4570c64a25a", + "uuid": "2e8f54d9-ca07-402b-86ba-73f262227b23", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "CARTER LEMUEL", - "timestamp": "2019-03-07" + "user": "GOLDNER LYDIA", + "timestamp": "2018-01-27" }, { - "uuid": "5d0968a4-5e0d-44fe-989f-b3074e8b5af5", + "uuid": "1203415b-fc58-4563-9ead-215e9c6b3e85", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "BREITENBERG ERICK", - "timestamp": "2021-10-08" + "user": "GUTMANN JERALD", + "timestamp": "2015-10-11" }, { - "uuid": "65e95454-83e8-47ed-8605-5cff692bde14", + "uuid": "92d95da8-19a8-4a56-a20a-3cc9832dc9d0", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "GULGOWSKI ELSIE", - "timestamp": "2016-11-15" + "user": "LAKIN DAMEON", + "timestamp": "2016-07-02" }, { - "uuid": "e303c76a-2300-444c-88d2-93a940c317a2", + "uuid": "8b7f2367-e6ec-4687-8541-68a6b8b5f039", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "HODKIEWICZ LEILA", - "timestamp": "2022-04-28" - }, - { - "uuid": "1c086f0d-9e4a-4c0f-b8b6-6e8a7a4dbf25", - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "PACOCHA MOISES", - "timestamp": "2015-07-02" + "user": "TILLMAN AUDREANNE", + "timestamp": "2014-06-07" } ], "associatedSites": [ { - "uuid": "1ade322a-7f0a-4950-99c6-b0b3b8758656", - "dateNoted": "2021-01-13", + "uuid": "f78f7de4-1160-4a4e-9508-9b654c5f6960", + "dateNoted": "2016-01-30", "notes": "", - "parcelID": "20206", - "siteID": "17362", + "parcelID": "16807", + "siteID": "16344", "siteRegistry": true }, { - "uuid": "43b17ea9-a294-4c7b-99c2-05531d38d646", - "dateNoted": "2019-07-17", + "uuid": "0ddf1ab0-b83f-4990-8ba9-73b555531a83", + "dateNoted": "2017-09-12", "notes": "", - "parcelID": "15700", - "siteID": "19730", + "parcelID": "19347", + "siteID": "15231", "siteRegistry": true - }, - { - "uuid": "23336433-7bee-49d9-bafc-2acd6a1ecd65", - "dateNoted": "2017-03-04", - "notes": "", - "parcelID": "18028", - "siteID": "19113", - "siteRegistry": false } ] }, { - "uuid": "2643e5b4-a0a8-4198-a60d-e9669cecfcd0", - "siteID": 16895, - "address": "32906 Willms Hollow", - "latitude": 57.6919, - "longitude": -134.6161, - "lastUpdated": "2018-05-23", - "city": "South Jabari", - "region": "Cariboo", - "victoriaFile": "26250-20/17309", + "uuid": "43695294-169c-4656-8be7-f5fd7eecb7cf", + "siteID": 20870, + "address": "52897 Ferry Union", + "latitude": 53.2595, + "longitude": -125.222, + "lastUpdated": "2017-04-18", + "city": "Kelsiland", + "region": "Vancouver Island/Coast", + "victoriaFile": "26250-20/16634", "regionalFile": "N/A", "parcelIDs": [ - 2884349, - 1989638, - 7213898, - 9890193, - 1439019 + 7709228, + 3041938, + 9061478, + 2744348, + 7913192 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "4efdfaf1-580a-4b36-9569-2d8efaf2dbc1", - "createdAt": "2013-12-21", - "completed": "2020-10-01", - "initiated": "2022-06-03", - "ministryContact": "FADEL KAMRON", + "uuid": "9ebc0406-8bd4-4063-b2e9-dd4dde94a1da", + "createdAt": "2022-03-07", + "completed": "2017-08-28", + "initiated": "2016-09-01", + "ministryContact": "JAKUBOWSKI BRYCEN", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -67080,38 +78551,44 @@ ], "notationParticipants": [ { - "uuid": "735a6c0e-28a6-49d0-b9f8-cfb919f0753a", - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "995ecc5d-88c8-42b1-b337-e086bbeea301", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "6cac46b1-58f2-49a1-aecb-8d54e375552b", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": true }, { - "uuid": "c7b25df0-ae60-45a1-9b38-338d8831e0ff", - "name": "SHELL CANADA PRODUCTS", + "uuid": "cdc16ee8-24a2-442a-be51-05e8f80b18c1", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true }, { - "uuid": "8c7c50cc-bf04-456c-b9c1-17a5d24e1588", - "name": "SHELL CANADA PRODUCTS", + "uuid": "af4c2983-40fb-457e-b35e-113b103280f2", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "cc18ec3c-e193-4f33-b638-5f476fd6b4c5", + "uuid": "4b28b680-d037-4c77-8c0b-98848984c418", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "708c36e7-06c6-4450-bc02-8871eb79144a", - "createdAt": "2016-12-18", - "completed": "2018-09-23", - "initiated": "2013-10-26", - "ministryContact": "WEISSNAT ALDEN", + "uuid": "a9ce1404-8277-464a-a1d1-4769991c0517", + "createdAt": "2018-03-16", + "completed": "2020-03-11", + "initiated": "2023-06-18", + "ministryContact": "KEMMER MIKAYLA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -67120,26 +78597,26 @@ ], "notationParticipants": [ { - "uuid": "5c53aa00-9163-4409-85d1-c7a455308318", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "uuid": "30d89f10-2543-446d-a931-ae2815259eeb", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": false }, { - "uuid": "b6d81ce3-12a6-4ace-95b6-d7708ce353d5", + "uuid": "bd79eed6-fb17-49c6-8129-c790422e4d04", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "9d029c63-a981-4b42-8549-34bcb5002f0e", - "createdAt": "2015-02-22", - "completed": "2018-03-17", - "initiated": "2017-10-15", - "ministryContact": "HICKLE VICENTA", + "uuid": "b15f6875-7e60-4486-b762-a79f301243ba", + "createdAt": "2017-10-25", + "completed": "2014-08-02", + "initiated": "2022-04-18", + "ministryContact": "ROSENBAUM DASIA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -67148,34 +78625,44 @@ ], "notationParticipants": [ { - "uuid": "11f4f5a1-c260-4b97-be51-290720e84573", + "uuid": "b470d493-d7a9-4f2f-95ae-a5704bbef41c", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "uuid": "e03b5cac-c720-4437-90b0-12eedbdd3f3a", - "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "5d19caa6-94d7-4b1c-8873-c50b082ec5dd", - "name": "SHELL CANADA PRODUCTS", + "uuid": "3ea5f98d-e30a-4175-b3af-e57cc3db464f", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false - }, + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "uuid": "351e1e0f-9556-4c00-8ec0-198fa6880f81", + "createdAt": "2018-04-02", + "completed": "2021-12-09", + "initiated": "2020-08-26", + "ministryContact": "POUROS-HILPERT LAVERN", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ { - "uuid": "e8bac91b-ec2f-4993-b7a8-d621c2dbf418", - "name": "SHELL CANADA PRODUCTS", + "uuid": "32ac65cf-b513-4081-b938-055df9bc370e", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "476bb03d-d891-4a54-a853-4cc9e7b83f6c", - "name": "SHELL CANADA PRODUCTS", + "uuid": "84bc9a64-65ea-410d-a353-aae5447283c5", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true } ], "siteRegistry": true @@ -67183,54 +78670,54 @@ ], "participants": [ { - "uuid": "d57a959c-e9fd-482b-9345-209e81f09de1", - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2021-09-18", - "startDate": "2022-09-03", + "uuid": "4fa8c93d-a9bb-4bf0-aa69-0e183fc0094b", + "name": "AMET, DOLOR SIT", + "endDate": "2016-07-15", + "startDate": "2016-06-10", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "ce10a268-b30b-4e00-bb80-17c68655a820", - "name": "IPSUM", - "endDate": "2016-12-16", - "startDate": "2013-11-12", + "uuid": "24dd0360-41c8-4caa-a135-c3fbc22678ee", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2021-01-08", + "startDate": "2020-12-26", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "a59c6278-fcac-47db-ab7a-a8daca5d769a", - "name": "AMET, DOLOR SIT", - "endDate": "2013-10-20", - "startDate": "2015-10-02", + "uuid": "0fea84e9-48bc-4862-adc7-8d5c10f555d8", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2023-05-29", + "startDate": "2018-01-14", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "1d06606a-7c8c-4809-a722-12b13aebe17a", - "name": "AMET, DOLOR SIT", - "endDate": "2014-09-06", - "startDate": "2023-09-24", + "uuid": "932c78b7-2a0b-434e-9c9e-078aa60e46b5", + "name": "IPSUM", + "endDate": "2018-10-19", + "startDate": "2021-11-28", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": true }, { - "uuid": "0f14c720-d5bf-46aa-ad5e-2d8fece4ab2b", - "name": "SHELL CANADA PRODUCTS", - "endDate": "2021-05-24", - "startDate": "2015-10-31", + "uuid": "3f3927a3-4d4e-43b5-b1be-55d438136a87", + "name": "AMET, DOLOR SIT", + "endDate": "2022-02-24", + "startDate": "2021-01-16", "notes": "", "roles": [ "EMPLOYEE" @@ -67238,140 +78725,142 @@ "siteRegistry": true } ], - "suspectLandUses": [ - { - "uuid": "ff163233-62ae-4ff1-8cb0-dc414c7c7836", - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2020-06-24 (described on Site Profile dated 2020-06-24)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" - }, + "documents": [ { - "uuid": "d681d101-2b8c-4520-9be3-859eae5befbf", + "uuid": "e4b7ede1-16f9-49a3-a360-9432c2036169", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-07-01 (described on Site Profile dated 2018-07-01)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "documentDate": "2016-12-07", + "receivedDate": "2023-04-18", + "uploadedDate": "2017-08-23", + "title": "Summary of Site Conditions, 1537 W 41st Avenue, Vancouver", + "participants": [ + { + "uuid": "7ebe8f74-8091-46c7-a354-dde543dff00e", + "name": "IPSUM", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "59e0cabc-3203-4f0f-a11e-a4482388a0d6", + "name": "IPSUM", + "siteRegistry": true, + "role": "AUTHOR" + } + ] }, { - "uuid": "f4462871-4fa6-4cc6-b985-eff9c35f205d", + "uuid": "55db2685-f3eb-4c95-8857-9b6be3609a70", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-12-17 (described on Site Profile dated 2016-12-17)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "documentDate": "2018-02-17", + "receivedDate": "2020-08-08", + "uploadedDate": "2014-09-29", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "1945d5aa-cf58-4371-9488-ed88117ac60b", + "name": "AMET, DOLOR SIT", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "80df0d8a-d98d-4ff9-9694-60026456c2a8", + "name": "AMET, DOLOR SIT", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "55ba1563-47d5-48ef-91ed-209352177c8a", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": true, + "role": "AUTHOR" + } + ] + } + ], + "suspectLandUses": [ + { + "uuid": "d44bd13b-ab67-4e89-abcf-400296fa0f80", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2018-11-18 (described on Site Profile dated 2018-11-18)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "uuid": "4a8781a6-d610-4519-8e3f-e84a8ef16e8a", + "uuid": "363fba9f-f1be-4f4e-8eda-e1abc750284f", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2013-11-05 (described on Site Profile dated 2013-11-05)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "notes": "INSERTED FOR SITE PROFILE DATED 2022-07-11 (described on Site Profile dated 2022-07-11)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "uuid": "84d8de1f-3832-44b1-b9c8-b44405757bba", - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-08-31 (described on Site Profile dated 2015-08-31)", + "uuid": "5f911a3a-460a-432a-9431-dec38627899d", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2023-06-17 (described on Site Profile dated 2023-06-17)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], "parcelDescriptions": [ { - "uuid": "39e8afc6-db87-4026-8e66-559ba5588995", + "uuid": "954e0b5b-e8d0-4783-aa11-396ea35113c5", "siteRegistry": false, - "dateNoted": "2013-12-14", - "parcelID": "17434", - "crownLandUsePIN": "17507", - "crownLandFileNumber": "19074", - "landDescription": "LOT 1 OF LOT 2 BLOCK 5 DISTRICT LOT 2 PLAN 9463" + "dateNoted": "2015-02-24", + "parcelID": "16542", + "crownLandUsePIN": "15623", + "crownLandFileNumber": "16419", + "landDescription": "LOT 1 OF LOT 2 BLOCK 5 DISTRICT LOT 4 PLAN 8406" }, { - "uuid": "427e82c3-09fe-41ed-82e4-a4cf049c8b3c", - "siteRegistry": true, - "dateNoted": "2013-12-03", - "parcelID": "19583", - "crownLandUsePIN": "20786", - "crownLandFileNumber": "20223", - "landDescription": "LOT 5 OF LOT 5 BLOCK 2 DISTRICT LOT 1 PLAN 7281" + "uuid": "64919900-5212-43c0-a459-0dc7e6e2f4ba", + "siteRegistry": false, + "dateNoted": "2022-07-09", + "parcelID": "18932", + "crownLandUsePIN": "18017", + "crownLandFileNumber": "18152", + "landDescription": "LOT 2 OF LOT 1 BLOCK 2 DISTRICT LOT 5 PLAN 7030" }, { - "uuid": "5626c14b-a050-49c4-80b0-a0f36f4f1788", + "uuid": "44c604ac-2c55-4c2a-9ed2-d73c860538c7", "siteRegistry": true, - "dateNoted": "2015-05-22", - "parcelID": "18068", - "crownLandUsePIN": "19190", - "crownLandFileNumber": "19874", - "landDescription": "LOT 2 OF LOT 5 BLOCK 4 DISTRICT LOT 5 PLAN 8523" + "dateNoted": "2021-05-24", + "parcelID": "18744", + "crownLandUsePIN": "17775", + "crownLandFileNumber": "17971", + "landDescription": "LOT 1 OF LOT 5 BLOCK 1 DISTRICT LOT 3 PLAN 8738" } ], "siteDisclosures": [ { - "uuid": "5ce1721b-f098-44d7-9188-35f67d002d9e", - "siteRegistry": true, - "dateReceived": "2023-01-06", - "dateCompleted": "2015-07-29", - "dateEntered": "2014-10-28", - "dateRegistrar": "2022-09-07", - "dateLocalAuthorityReceived": "2015-02-03", - "summary": "Vel unde impedit architecto.", - "informationUsed": "Nesciunt praesentium cupiditate nisi nihil voluptas praesentium facere.\nQuia sed sequi officia quam architecto explicabo vel amet.\nUnde nam aut quas voluptas architecto vitae quia asperiores.\nSint ipsa laboriosam.", - "pastOrPresentOrders": "Iste fuga magni temporibus ipsum.", - "commercialAndIndustrialPurposes": [ - { - "uuid": "78b8bd0b-8c46-4b9f-834d-01f6a227e400", - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false - }, - { - "uuid": "c283041b-8cdc-4fb7-8e95-5e369f87fc21", - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false - }, - { - "uuid": "8bb72b79-4893-4b4a-91a6-9d80ab54e438", - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true - }, - { - "uuid": "08a16ad3-34a3-46ce-93e1-4a7e4bd6ce30", - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true - } - ] - }, - { - "uuid": "7db59817-ab68-44d4-9005-fe21667512f7", + "uuid": "7da62d4e-3fff-45c2-a706-c2d19e4bb605", "siteRegistry": false, - "dateReceived": "2014-03-13", - "dateCompleted": "2016-05-03", - "dateEntered": "2018-03-16", - "dateRegistrar": "2017-01-17", - "dateLocalAuthorityReceived": "2019-08-18", - "summary": "Explicabo voluptas voluptates eligendi.\nAlias sapiente dolorum impedit cumque veniam omnis iusto natus voluptatem.", - "informationUsed": "Ipsam illo provident temporibus.\nVero sit rerum occaecati unde inventore voluptatibus.\nAd nihil corrupti.\nEveniet veniam reprehenderit quisquam quidem cum eius nostrum.\nInventore odio voluptatum rem in omnis perspiciatis ducimus voluptas.", - "pastOrPresentOrders": "Amet at ad illo consequuntur occaecati.\nEveniet a vitae in.", + "dateReceived": "2022-06-10", + "dateCompleted": "2023-03-25", + "dateEntered": "2017-10-18", + "dateRegistrar": "2015-04-09", + "dateLocalAuthorityReceived": "2016-12-29", + "summary": "Amet esse sed fuga in.\nFacilis porro nihil quasi aliquid.\nRem mollitia dolorem doloremque velit laborum adipisci aliquam.", + "informationUsed": "In cupiditate libero neque aliquam quia velit explicabo consectetur.\nPariatur accusantium aperiam iste.\nIpsum numquam pariatur doloremque.\nRerum odio aut error.\nVoluptate sapiente modi repudiandae dolores ratione pariatur voluptates nostrum vero.", + "pastOrPresentOrders": "Occaecati in a deserunt vitae consequuntur dolorem dolor.\nEst quos temporibus iste saepe molestiae perspiciatis asperiores adipisci natus.", "commercialAndIndustrialPurposes": [ { - "uuid": "08d67ecc-0432-4672-a9f8-a0471dc19011", + "uuid": "64e477d8-7a5f-4460-8421-4b3f9749f88d", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "abd53ce0-545c-426f-acef-73d7e97706df", + "uuid": "e70deb0b-093e-44a2-97aa-9b7afdc1b459", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "9ea173b5-e331-4031-91ee-463ad4d481e3", + "uuid": "23a8eb9b-c27e-43dd-b8b1-fcd18129d217", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { - "uuid": "96257a89-8a09-476c-941e-8b4009031e3d", + "uuid": "af9fdc46-810d-4176-ac4f-9773a8508799", "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false } ] @@ -67379,92 +78868,115 @@ ], "activityLog": [ { - "uuid": "693988fc-82a0-48bf-b6fc-a5fabfb14983", + "uuid": "053112c1-0044-4158-a446-93453f2c5450", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "DACH KARINA", - "timestamp": "2019-12-30" + "user": "WOLF ELBERT", + "timestamp": "2017-09-29" }, { - "uuid": "47823140-e46f-43fe-8e6a-cdc806d40654", + "uuid": "8f32b3f1-c972-4b8a-8609-6a5e85a203db", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "HARBER ELVERA", - "timestamp": "2017-07-25" + "user": "RUSSEL ROGER", + "timestamp": "2023-09-17" }, { - "uuid": "be830667-4270-419b-bfe4-444ff7a92ccd", - "siteRegistry": true, + "uuid": "7170e458-7003-4bfd-b50e-c4730e07c8bd", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "ROWE CARLEY", - "timestamp": "2017-12-25" + "user": "GOTTLIEB ALICIA", + "timestamp": "2015-02-26" }, { - "uuid": "ac3785d6-17fa-46ba-bd32-23aaf3fe81ba", + "uuid": "70a88a65-c271-4507-b585-267c56e68809", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "THIEL HILARIO", - "timestamp": "2021-05-10" + "user": "POWLOWSKI HADLEY", + "timestamp": "2016-03-06" }, { - "uuid": "83458636-b025-4d0b-a17d-e70e064e0bd5", - "siteRegistry": false, + "uuid": "6318a7bd-8439-44c3-a85a-e5d001e691a2", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "YOST BARON", - "timestamp": "2022-03-24" + "user": "KERLUKE QUINN", + "timestamp": "2020-02-14" }, { - "uuid": "69ee7561-e3e2-4a2b-b2fd-ebadeb94d7d2", + "uuid": "d5220136-021f-45a4-a103-ea911fca578b", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "BECHTELAR DANYKA", - "timestamp": "2020-09-29" + "user": "STANTON AUGUST", + "timestamp": "2014-07-19" }, { - "uuid": "5ba6de4b-760c-4c4a-b1b3-bd97d858005f", - "siteRegistry": false, + "uuid": "0a7a1b9a-eb00-4b57-8d2c-e73ab7bec3cd", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "HOMENICK KATELYNN", - "timestamp": "2017-03-28" + "user": "WEBER GAETANO", + "timestamp": "2014-07-28" + }, + { + "uuid": "cea95c35-6891-402e-97de-3caee514c9d7", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "BARROWS DUNCAN", + "timestamp": "2017-03-13" } ], "associatedSites": [ { - "uuid": "5c2d31ac-4131-4c99-9a68-caff8307c2fa", - "dateNoted": "2018-01-03", + "uuid": "f3101922-9ad1-4b93-a267-9d08021cb976", + "dateNoted": "2021-01-13", + "notes": "", + "parcelID": "18293", + "siteID": "20767", + "siteRegistry": false + }, + { + "uuid": "625368df-4460-4c39-af14-eeac426c3fb7", + "dateNoted": "2016-11-29", "notes": "", - "parcelID": "15768", - "siteID": "20482", + "parcelID": "16778", + "siteID": "17584", "siteRegistry": false + }, + { + "uuid": "27694e53-d9d0-4fe8-9abe-83321a1fb1c1", + "dateNoted": "2023-07-02", + "notes": "", + "parcelID": "18388", + "siteID": "15253", + "siteRegistry": true } ] }, { - "uuid": "1bbdd9ac-fca1-4219-8f5f-47622ff311a7", - "siteID": 18416, - "address": "56260 Noemie Points", - "latitude": 51.2382, - "longitude": -130.645, - "lastUpdated": "2015-08-29", - "city": "Ebertview", - "region": "Kootenay", - "victoriaFile": "26250-20/11778", + "uuid": "41be7010-11fa-4a90-a88a-29527e7d4599", + "siteID": 19640, + "address": "3091 Kavon Motorway", + "latitude": 56.734, + "longitude": -126.9419, + "lastUpdated": "2020-06-14", + "city": "West Reyshire", + "region": " North Coast", + "victoriaFile": "26250-20/18399", "regionalFile": "N/A", "parcelIDs": [ - 3219988, - 8043192, - 7695053, - 9391960, - 3209343 + 9886100, + 9433110, + 7806695, + 5143385, + 6844744 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "4c183fc9-d2d8-4ad8-9bc3-2cce63b875b3", - "createdAt": "2022-01-10", - "completed": "2018-12-18", - "initiated": "2021-09-19", - "ministryContact": "DUBUQUE JUSTINE", + "uuid": "b1eb55fd-d6b5-4162-9569-e70d0f505f39", + "createdAt": "2015-09-11", + "completed": "2014-08-24", + "initiated": "2015-02-02", + "ministryContact": "CRIST ASTRID", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -67473,60 +78985,44 @@ ], "notationParticipants": [ { - "uuid": "147f7b14-b354-4f1c-887a-72c9f3d55f4e", + "uuid": "4ae80bb9-efc9-4f93-886e-ba63a899f412", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false }, { - "uuid": "99b850bd-c045-43d9-b82c-e873a2dde27d", - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "uuid": "50aa6522-6c0b-4756-9a79-b2e19af7343e", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", "siteRegistry": false - } - ], - "siteRegistry": false - }, - { - "uuid": "62b2a91d-c0b9-4157-a255-d3a2db837c50", - "createdAt": "2015-03-06", - "completed": "2022-10-06", - "initiated": "2015-08-21", - "ministryContact": "BRAKUS BROOKLYN", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ + }, { - "uuid": "50ddec0f-6c54-4749-ae19-0dbcfb6f1b9a", + "uuid": "fde30ba8-d921-4304-87b3-ff1fc9417ad5", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "2ef0c944-8d16-40e8-a6d1-f6b8a53118ee", + "uuid": "65dcd5dc-b158-45b9-8972-276524334c89", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "005abc73-6f37-4998-87e9-f3852949b500", + "uuid": "a1de165e-6974-46e9-8884-bf90342b394c", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": true } ], "siteRegistry": false }, { - "uuid": "bf98a50a-738b-408c-bbab-daff45f5d0a6", - "createdAt": "2019-03-29", - "completed": "2016-07-10", - "initiated": "2020-07-02", - "ministryContact": "KING GEO", + "uuid": "c488c284-42fa-4318-9cbf-8e6a35e5788f", + "createdAt": "2021-10-15", + "completed": "2015-09-28", + "initiated": "2021-06-04", + "ministryContact": "RUECKER MARCELINO", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -67535,44 +79031,32 @@ ], "notationParticipants": [ { - "uuid": "689c0c65-de70-4c6a-a476-e785a9c993ce", + "uuid": "f0f65105-4c10-4dea-9ba9-09a7686eb166", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "a27369bf-fc86-4a68-809f-c0ddfcc9c66f", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "uuid": "0a6906de-8760-4d9d-9e86-74882a384ba6", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "uuid": "31906c99-183a-41e1-9a9c-d4fd8ea4f915", + "uuid": "dbe632ba-354d-4c31-bc9f-1d3f11a9978d", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "6a716012-98fd-42b8-b95c-b881a880ad03", + "uuid": "c46a2320-3691-4afb-ab9b-e8b8e8388093", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "7f062c93-b856-423c-94f9-3e4638ac5900", - "createdAt": "2019-09-18", - "completed": "2017-05-22", - "initiated": "2014-08-30", - "ministryContact": "MOSCISKI ABDULLAH", + "uuid": "9b52c023-40e7-45bd-a7dc-44d0cb816d74", + "createdAt": "2015-04-11", + "completed": "2014-04-21", + "initiated": "2018-02-09", + "ministryContact": "ABSHIRE JAVONTE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -67581,26 +79065,26 @@ ], "notationParticipants": [ { - "uuid": "d55b640f-f7b1-435b-9453-22e67751207c", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "uuid": "01c2c268-ec62-4f41-bd37-227f5c202e9d", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "91311019-d22a-4688-baf0-806fbe0caf15", + "uuid": "630b5c20-a8f2-45f5-92e4-cab21b37125c", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true + "role": "SUBMITTED BY", + "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "3833306e-a056-400d-b182-4d92cbc68d76", - "createdAt": "2015-03-14", - "completed": "2022-11-14", - "initiated": "2014-01-23", - "ministryContact": "NIENOW SHANEL", + "uuid": "3f15f5c8-db16-4dcc-8de5-76898954b10d", + "createdAt": "2021-10-25", + "completed": "2014-03-27", + "initiated": "2020-12-19", + "ministryContact": "HERMISTON TRAVON", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -67609,268 +79093,334 @@ ], "notationParticipants": [ { - "uuid": "443c9d77-a4c4-4875-b711-cf893db6763c", - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "ffdce3af-eef5-4950-8cbb-d929ae711ddb", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "uuid": "9e98d083-90b8-4518-a245-e154fd970cc9", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "4cafd749-7549-428b-bf46-e23b5d7b1dde", - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "60370239-95ab-4c40-aec0-5a1b5938abd9", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false } ], "participants": [ { - "uuid": "41e855bf-2553-486b-ba0c-35e2991b30e1", + "uuid": "5c2cc9f9-cd19-4cc0-b843-0077880cb547", "name": "SHELL CANADA PRODUCTS", - "endDate": "2023-03-23", - "startDate": "2015-08-12", + "endDate": "2020-03-12", + "startDate": "2014-01-03", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "75fffaec-fba0-4c35-9356-9eaddb6f53dc", - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2017-05-20", - "startDate": "2016-04-25", + "uuid": "ce1d198b-96bc-46b7-9600-0ce15d320c49", + "name": "IPSUM", + "endDate": "2017-03-21", + "startDate": "2016-02-16", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": false }, { - "uuid": "9e9b3258-e77e-495e-8629-c7fe750ccda7", - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2014-11-01", - "startDate": "2018-02-20", + "uuid": "3ae7dd80-6bdc-447a-894a-06d67b189aaa", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2017-08-17", + "startDate": "2022-05-04", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": false } ], + "documents": [ + { + "uuid": "7392f3d2-072f-4706-8f1c-6ca455ffdc18", + "siteRegistry": true, + "documentDate": "2016-03-02", + "receivedDate": "2017-05-15", + "uploadedDate": "2017-07-21", + "title": "Preliminary Site Investigation, Detailed Site Investigation and Remedial Plan for the Management Area adjacent to the Shell Site at 1503 West 41st Ave", + "participants": [ + { + "uuid": "99b8b4b5-ab2c-42b2-ab77-af953ccde684", + "name": "AMET, DOLOR SIT", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "b24bc022-d93b-42e1-96f8-520a7eca612f", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": false, + "role": "AUTHOR" + } + ] + }, + { + "uuid": "2978ef86-d93f-488c-91fc-6ad954516ea8", + "siteRegistry": false, + "documentDate": "2018-10-07", + "receivedDate": "2013-10-24", + "uploadedDate": "2017-06-01", + "title": "Summary of Site Conditions, 1537 W 41st Avenue, Vancouver", + "participants": [ + { + "uuid": "d5868a58-ee0d-47bf-be83-c420c99c1aa9", + "name": "AMET, DOLOR SIT", + "siteRegistry": true, + "role": "AUTHOR" + } + ] + } + ], "suspectLandUses": [ { - "uuid": "d23a02dd-c279-4362-94ad-ac9ffd075445", - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-10-21 (described on Site Profile dated 2021-10-21)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" - }, - { - "uuid": "e4e325f8-300f-406b-83f7-f3fe0b934c15", - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-01-15 (described on Site Profile dated 2022-01-15)", + "uuid": "657f9557-435f-49a3-baed-0ad028ab2f65", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2021-11-18 (described on Site Profile dated 2021-11-18)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "uuid": "2c9f67fe-306a-41c8-88be-ce1f6f21f405", - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-08-04 (described on Site Profile dated 2019-08-04)", + "uuid": "6865da08-59b2-43c8-b6cd-bc9b9e8ddc62", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2017-10-06 (described on Site Profile dated 2017-10-06)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], "parcelDescriptions": [ { - "uuid": "9ea06167-e86f-414d-ac16-41cf54b972fe", + "uuid": "4215837e-839a-4f04-b463-6b45c3471a17", "siteRegistry": false, - "dateNoted": "2022-08-24", - "parcelID": "16315", - "crownLandUsePIN": "19714", - "crownLandFileNumber": "19832", - "landDescription": "LOT 5 OF LOT 5 BLOCK 3 DISTRICT LOT 3 PLAN 8946" + "dateNoted": "2014-02-05", + "parcelID": "20634", + "crownLandUsePIN": "18591", + "crownLandFileNumber": "17384", + "landDescription": "LOT 3 OF LOT 3 BLOCK 3 DISTRICT LOT 5 PLAN 4377" }, { - "uuid": "8dc090c9-81ab-491b-a168-eb2675dcce98", + "uuid": "8b7440d4-8990-45f4-a08b-b0abb4e3d16d", "siteRegistry": true, - "dateNoted": "2023-03-22", - "parcelID": "18160", - "crownLandUsePIN": "17064", - "crownLandFileNumber": "18378", - "landDescription": "LOT 3 OF LOT 4 BLOCK 4 DISTRICT LOT 2 PLAN 7256" + "dateNoted": "2016-05-04", + "parcelID": "16463", + "crownLandUsePIN": "16236", + "crownLandFileNumber": "16942", + "landDescription": "LOT 4 OF LOT 2 BLOCK 5 DISTRICT LOT 1 PLAN 5584" + }, + { + "uuid": "4891e0d3-cd1d-45f6-a6a9-9cf139a3be60", + "siteRegistry": true, + "dateNoted": "2021-03-24", + "parcelID": "16960", + "crownLandUsePIN": "18275", + "crownLandFileNumber": "15542", + "landDescription": "LOT 3 OF LOT 3 BLOCK 3 DISTRICT LOT 1 PLAN 4914" + }, + { + "uuid": "1106a187-b3e7-4fe8-8072-4272e5c0ddba", + "siteRegistry": false, + "dateNoted": "2014-05-09", + "parcelID": "18620", + "crownLandUsePIN": "20190", + "crownLandFileNumber": "20933", + "landDescription": "LOT 5 OF LOT 2 BLOCK 3 DISTRICT LOT 1 PLAN 3638" } ], "siteDisclosures": [ { - "uuid": "c4a4431f-e4eb-4f6c-a7d5-045938276101", - "siteRegistry": true, - "dateReceived": "2014-02-10", - "dateCompleted": "2019-01-06", - "dateEntered": "2019-02-16", - "dateRegistrar": "2014-11-05", - "dateLocalAuthorityReceived": "2018-11-13", - "summary": "Aut facere corrupti delectus vero doloribus eum autem eveniet.\nAsperiores maiores adipisci quam iusto soluta perspiciatis voluptates blanditiis.\nNobis molestias ratione beatae.", - "informationUsed": "Quos vero temporibus adipisci consectetur est.\nLaudantium quasi possimus ut dicta nulla.\nExplicabo mollitia amet maxime in.\nEos commodi ea voluptatibus consequatur enim dolorum culpa occaecati.\nCorrupti nisi adipisci nulla necessitatibus quidem dolores animi at hic.", - "pastOrPresentOrders": "Ipsam iusto vitae minima nostrum veritatis libero maxime nostrum modi.\nEos vitae ratione dolore vero quae.", + "uuid": "7df38a24-5212-43d1-b645-429fa88d7ed0", + "siteRegistry": false, + "dateReceived": "2022-02-04", + "dateCompleted": "2023-05-11", + "dateEntered": "2022-03-08", + "dateRegistrar": "2013-11-04", + "dateLocalAuthorityReceived": "2015-12-15", + "summary": "Sit eligendi a fugit asperiores.\nRem maxime eius et exercitationem vel rem.\nSaepe placeat quibusdam necessitatibus quia dicta saepe similique modi amet.", + "informationUsed": "Repudiandae nam ipsa doloribus distinctio quia vero velit sit esse.\nMolestias suscipit iusto nobis explicabo illum quam quidem suscipit nihil.\nUllam repellat dignissimos pariatur quibusdam.", + "pastOrPresentOrders": "Dolorem magnam rerum eos aperiam necessitatibus pariatur quis.\nOccaecati ullam mollitia eum debitis perferendis veniam tempore molestias.", "commercialAndIndustrialPurposes": [ { - "uuid": "738c23c8-2322-4137-afaa-66697a008137", - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "uuid": "08c36287-ee70-4508-beb8-b4a21ddabfb7", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "uuid": "8c816f7d-0030-46db-ba45-70e058a9974b", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false }, { - "uuid": "a06a22c1-77f2-4ce2-8104-9291cc5937bf", + "uuid": "00d2cb04-72fe-469b-8084-945633be6de0", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "uuid": "26058838-1be8-42b2-897a-d9ea09a6bce2", "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true } ] }, { - "uuid": "9cb81a9c-b8ca-47f4-a18d-5f384c98a4a6", - "siteRegistry": false, - "dateReceived": "2020-10-13", - "dateCompleted": "2019-09-11", - "dateEntered": "2020-08-31", - "dateRegistrar": "2016-07-23", - "dateLocalAuthorityReceived": "2016-06-03", - "summary": "Minus repudiandae enim.\nConsequatur praesentium odit porro repudiandae aliquid illum.\nAssumenda accusantium quas eligendi recusandae.", - "informationUsed": "Doloribus aliquid vero quod sed.\nOmnis ducimus voluptates.\nMagnam minima quasi autem aliquid quidem maiores officia natus quidem.", - "pastOrPresentOrders": "Est ut tempora officiis.", + "uuid": "b43ce8c8-d050-4669-8735-cf1622da36bb", + "siteRegistry": true, + "dateReceived": "2022-01-25", + "dateCompleted": "2014-05-05", + "dateEntered": "2021-08-16", + "dateRegistrar": "2015-12-30", + "dateLocalAuthorityReceived": "2016-01-08", + "summary": "Officiis enim id amet rerum temporibus a aperiam vitae a.", + "informationUsed": "Dolorum voluptatem doloremque sint impedit deleniti.\nCommodi id nisi possimus recusandae provident.\nQuia odit nostrum porro expedita.\nSimilique iste odio facilis ipsa nostrum quam provident voluptas.", + "pastOrPresentOrders": "Quae inventore magni fuga iusto neque omnis.\nVeritatis eum saepe sapiente nam impedit optio vitae soluta optio.", "commercialAndIndustrialPurposes": [ { - "uuid": "5a0fd36a-7d3a-413c-b14d-cd99620a23ec", + "uuid": "a4bc6f9b-e0cd-4e07-aa14-7e51a65f9d72", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, { - "uuid": "14d1aa2a-f539-44ad-9193-46a5040be830", - "scheduleReference": "F1*", + "uuid": "602ac9cc-d29f-4f7a-908a-ab98360d1672", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "uuid": "6a877c17-d558-489f-9350-1ea427c8c469", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false + }, + { + "uuid": "2bc7340d-93bf-4bb4-8e6f-789e873f1d74", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true } ] } ], "activityLog": [ { - "uuid": "6466ce41-e8c3-41fd-b1b5-436a67a6a39f", - "siteRegistry": true, + "uuid": "030199ab-b9a9-4d0e-a371-f868c9067c88", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "BAHRINGER RON", - "timestamp": "2020-04-10" + "user": "JERDE MISTY", + "timestamp": "2018-05-30" }, { - "uuid": "4cbfbc2a-33a8-4a0b-a042-98a4edb64091", - "siteRegistry": true, + "uuid": "1a56edf4-7e20-4ee6-b295-92d9f00cfe25", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "JOHNSTON MARGARETT", - "timestamp": "2018-04-14" + "user": "TURNER MIREYA", + "timestamp": "2022-01-20" }, { - "uuid": "d92d74f9-3f9e-4d03-9554-bf1236cbde17", + "uuid": "4731e0b3-dc4f-40a4-b76b-b275834701f5", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "SCHROEDER ABDIEL", - "timestamp": "2014-03-24" + "user": "BASHIRIAN ELDORA", + "timestamp": "2014-08-09" }, { - "uuid": "2370c6fd-f16f-4979-b8f5-b4b710b91be4", + "uuid": "d28a58ab-703a-4c3a-a1a9-fbc4dfaac4fa", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "SAUER DOMINIQUE", - "timestamp": "2014-07-02" + "user": "KUTCH REGGIE", + "timestamp": "2017-03-25" }, { - "uuid": "e0b71888-be64-48dd-8f09-6ae27c5cabaa", + "uuid": "22edca71-7f8e-4105-a49e-bb5d07700650", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "STARK CULLEN", - "timestamp": "2016-03-13" + "user": "HAHN GILLIAN", + "timestamp": "2015-10-13" }, { - "uuid": "b215ebdf-59f8-43c2-9ca7-e075ff6016d9", + "uuid": "56487c2d-f9eb-4723-a4b8-a252622b7473", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "NIENOW RICHMOND", - "timestamp": "2017-05-14" + "user": "RICE KAMERON", + "timestamp": "2021-10-04" }, { - "uuid": "60826765-e4e1-4737-b176-79373b888dd3", + "uuid": "892dfc19-ec04-4d02-8b51-0330b9c21089", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "WEISSNAT ROSENDO", - "timestamp": "2019-06-02" + "user": "KOSS-MCCLURE KAREN", + "timestamp": "2020-03-01" }, { - "uuid": "7b49cbb2-f4d1-49f1-92ac-a3bbcaf24a44", + "uuid": "60222c60-ef1b-4970-adbe-c59c415d1f1e", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "LEHNER NORMA", - "timestamp": "2022-05-17" + "user": "JAKUBOWSKI CLEMENT", + "timestamp": "2023-05-30" }, { - "uuid": "d8a9f54e-b038-48d8-9710-f959cb594a41", - "siteRegistry": false, + "uuid": "38df5e5e-01a4-4e5b-a25b-df1bcfb94946", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "MCKENZIE ROMAN", - "timestamp": "2016-12-28" + "user": "KONOPELSKI EMMALEE", + "timestamp": "2020-11-22" } ], "associatedSites": [ { - "uuid": "a5b9b027-baff-468d-876a-97356837d4ca", - "dateNoted": "2020-01-16", - "notes": "", - "parcelID": "19026", - "siteID": "15209", - "siteRegistry": false - }, - { - "uuid": "35d30731-9673-428d-b852-9832f70f8207", - "dateNoted": "2023-02-05", - "notes": "", - "parcelID": "15940", - "siteID": "17170", - "siteRegistry": true - }, - { - "uuid": "fe1dbb19-535b-4274-90d7-a61b7a7aedc6", - "dateNoted": "2015-11-18", + "uuid": "8c8002b4-671f-445b-b8c6-63440c8dd650", + "dateNoted": "2019-04-20", "notes": "", - "parcelID": "20388", - "siteID": "16323", + "parcelID": "19522", + "siteID": "19141", "siteRegistry": false } ] }, { - "uuid": "100eddeb-6e44-4c11-be44-579bbbb3908b", - "siteID": 15575, - "address": "798 Padberg Point", - "latitude": 58.0521, - "longitude": -119.0479, - "lastUpdated": "2014-07-16", - "city": "Fort Sigrid", + "uuid": "166b437c-a5a3-4277-91aa-a69591a0b79d", + "siteID": 19692, + "address": "3590 Zella Spur", + "latitude": 57.1367, + "longitude": -137.3111, + "lastUpdated": "2022-04-13", + "city": "Swiftworth", "region": " North Coast", - "victoriaFile": "26250-20/9763", + "victoriaFile": "26250-20/19292", "regionalFile": "N/A", "parcelIDs": [ - 1942946, - 7251450, - 9794132, - 643877, - 9804194 + 8611247, + 1262855, + 5474303, + 3200662, + 8449902 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "91d66b23-2bb3-4615-bc5e-2bfde7f8ace4", - "createdAt": "2023-09-28", - "completed": "2021-05-23", - "initiated": "2014-04-12", - "ministryContact": "KASSULKE DANIAL", + "uuid": "5ef07a2f-40d2-4ebe-9da6-7081325627cf", + "createdAt": "2016-11-21", + "completed": "2022-01-13", + "initiated": "2021-01-28", + "ministryContact": "RUECKER ISAIAS", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -67879,32 +79429,32 @@ ], "notationParticipants": [ { - "uuid": "68c71d6b-e385-4fd5-ad3d-9a8be17f5eaf", - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "339b0212-dc58-49e3-80f8-28179643a5f5", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "ded84e28-2648-4886-8122-3b8f0710670a", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "uuid": "7de93c03-6e54-4694-a492-f92aa545d388", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": false }, { - "uuid": "5a33406b-c9a4-47de-976a-b11caed83b8d", + "uuid": "a000ec3d-a22f-404f-a3b5-3c2dadf4634e", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "8b3052ff-6a70-44f3-8ee9-07f558c863b6", - "createdAt": "2023-01-30", - "completed": "2022-07-30", - "initiated": "2020-09-23", - "ministryContact": "WALTER KELLY", + "uuid": "fa463885-c550-4d26-85fc-92970cc72efe", + "createdAt": "2023-06-21", + "completed": "2014-09-22", + "initiated": "2013-10-19", + "ministryContact": "KUVALIS COLLEEN", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -67913,38 +79463,32 @@ ], "notationParticipants": [ { - "uuid": "51383a9f-83dc-4359-a747-63712f101c6f", + "uuid": "b5fef69f-7132-4827-bfad-90276dec22c8", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true + "role": "REQUESTED BY", + "siteRegistry": false }, { - "uuid": "346b4462-680c-4594-aac9-854de9eb0c07", + "uuid": "a3d56332-e10c-44bc-88df-ddb4f7913579", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "uuid": "2a1e4644-ef1b-4a9a-8ce7-340369cb000a", - "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "61b974c3-040e-46f1-b071-e6f64d58590f", + "uuid": "5f638355-e13e-47a5-917b-31e20fe5c64d", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false + "role": "SUBMITTED BY", + "siteRegistry": true } ], "siteRegistry": false }, { - "uuid": "24c06e36-6f8e-4a0b-aeb1-3e61c94b35a1", - "createdAt": "2023-10-07", - "completed": "2014-12-16", - "initiated": "2015-04-23", - "ministryContact": "KUTCH ISAC", + "uuid": "d1c9d838-3c92-45ce-a27c-5c9c53ddb6a5", + "createdAt": "2017-08-02", + "completed": "2015-03-02", + "initiated": "2018-04-11", + "ministryContact": "WEIMANN WEBSTER", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -67953,27 +79497,15 @@ ], "notationParticipants": [ { - "uuid": "e6efe835-030e-4e9c-9dcb-2405dfd723ff", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "uuid": "b7b8189a-e11d-4f19-ba10-b70e383dbc4c", - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "34ab445b-8a70-493e-be89-42981ee7dc85", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true }, { - "uuid": "af5f5b65-a029-4149-b607-16a18fab156d", + "uuid": "c6b75155-853a-4429-ae14-8d8f1b378c5f", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "uuid": "1f55c8a4-28b2-4814-95de-2b4386cc8887", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", "siteRegistry": true } ], @@ -67982,10 +79514,10 @@ ], "participants": [ { - "uuid": "3c9d9996-ddef-48d5-b48c-b538f3e58ed3", + "uuid": "057021a9-42e3-4c09-893c-b29d73fb6c2d", "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2016-03-04", - "startDate": "2015-03-18", + "endDate": "2022-08-22", + "startDate": "2023-06-26", "notes": "", "roles": [ "ORGANIZATION" @@ -67993,201 +79525,315 @@ "siteRegistry": true }, { - "uuid": "e02d0a54-4161-4e88-98e2-1e1af2ecfb54", + "uuid": "15f8de57-0b2c-40ac-afca-07dee77eabf8", + "name": "AMET, DOLOR SIT", + "endDate": "2014-11-29", + "startDate": "2015-08-12", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "uuid": "9320d2df-478d-4aac-9613-718eb1976a8d", "name": "IPSUM", - "endDate": "2015-06-09", - "startDate": "2015-09-27", + "endDate": "2016-02-17", + "startDate": "2016-06-06", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": true + "siteRegistry": false } ], - "suspectLandUses": [ + "documents": [ { - "uuid": "a4e1ae9d-b282-4b43-9304-b4145f05beff", + "uuid": "fafa566f-4523-4349-8226-3e1cf5ccc1a8", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-03-27 (described on Site Profile dated 2022-03-27)", + "documentDate": "2022-11-27", + "receivedDate": "2015-09-20", + "uploadedDate": "2017-11-26", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "2b54c240-2d77-4b1b-9031-8846cd8466b9", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": false, + "role": "AUTHOR" + } + ] + }, + { + "uuid": "06833ad2-bb01-466e-aa3f-ae8bc0580e35", + "siteRegistry": true, + "documentDate": "2018-05-06", + "receivedDate": "2023-07-25", + "uploadedDate": "2022-06-12", + "title": "Preliminary Site Investigation, Detailed Site Investigation and Remedial Plan for the Management Area adjacent to the Shell Site at 1503 West 41st Ave", + "participants": [ + { + "uuid": "a3c2a16d-7e88-4141-b6b6-f6aefaf7791d", + "name": "IPSUM", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "41d8a1a3-14d0-4014-a637-ef9f9450e282", + "name": "IPSUM", + "siteRegistry": false, + "role": "AUTHOR" + } + ] + } + ], + "suspectLandUses": [ + { + "uuid": "7afe9784-4010-4b9c-9bbe-c8ba013da6fd", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2015-08-20 (described on Site Profile dated 2015-08-20)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "uuid": "b96fa7cd-b059-4821-8543-ead6f2d56bf2", + "uuid": "6f67fa6b-59c0-4e5f-be48-eb909bf59d2a", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-02-11 (described on Site Profile dated 2021-02-11)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "notes": "INSERTED FOR SITE PROFILE DATED 2016-07-27 (described on Site Profile dated 2016-07-27)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "uuid": "cd048860-a274-468a-81cf-23887d2eb846", + "uuid": "3f255802-1a27-4ae0-b573-77697ee58354", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2020-08-07 (described on Site Profile dated 2020-08-07)", + "notes": "INSERTED FOR SITE PROFILE DATED 2023-05-04 (described on Site Profile dated 2023-05-04)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "uuid": "e0490eb3-f046-4a0a-921a-da45726fb8ed", + "uuid": "d15409a8-c493-4236-a68e-e6cc28fc77bb", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2023-05-29 (described on Site Profile dated 2023-05-29)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "notes": "INSERTED FOR SITE PROFILE DATED 2018-09-12 (described on Site Profile dated 2018-09-12)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], "parcelDescriptions": [ { - "uuid": "861002cd-9d3d-41d2-a9ed-fd79343177a2", + "uuid": "321dbc12-276e-41da-9586-b186c93cc9e5", + "siteRegistry": false, + "dateNoted": "2016-08-15", + "parcelID": "18646", + "crownLandUsePIN": "16431", + "crownLandFileNumber": "18246", + "landDescription": "LOT 2 OF LOT 4 BLOCK 1 DISTRICT LOT 4 PLAN 5019" + }, + { + "uuid": "c30b8d43-6121-4e60-bdf3-9b10d2db876c", "siteRegistry": true, - "dateNoted": "2015-03-11", - "parcelID": "17437", - "crownLandUsePIN": "19283", - "crownLandFileNumber": "19837", - "landDescription": "LOT 1 OF LOT 1 BLOCK 1 DISTRICT LOT 5 PLAN 4013" + "dateNoted": "2015-09-04", + "parcelID": "18276", + "crownLandUsePIN": "18094", + "crownLandFileNumber": "17349", + "landDescription": "LOT 5 OF LOT 5 BLOCK 1 DISTRICT LOT 2 PLAN 8466" }, { - "uuid": "1a129794-1197-457d-908a-2d111ff9de9d", + "uuid": "9ee7a73a-df6c-41e3-a535-242526d6b6fd", "siteRegistry": false, - "dateNoted": "2021-06-19", - "parcelID": "20704", - "crownLandUsePIN": "20319", - "crownLandFileNumber": "19551", - "landDescription": "LOT 1 OF LOT 4 BLOCK 1 DISTRICT LOT 2 PLAN 4640" + "dateNoted": "2021-11-08", + "parcelID": "16485", + "crownLandUsePIN": "18390", + "crownLandFileNumber": "20601", + "landDescription": "LOT 2 OF LOT 2 BLOCK 4 DISTRICT LOT 4 PLAN 9322" + }, + { + "uuid": "d650702a-5ab4-4ceb-9127-9fe28494c7a3", + "siteRegistry": true, + "dateNoted": "2021-10-13", + "parcelID": "20883", + "crownLandUsePIN": "18607", + "crownLandFileNumber": "17286", + "landDescription": "LOT 1 OF LOT 5 BLOCK 4 DISTRICT LOT 1 PLAN 5967" } ], "siteDisclosures": [ { - "uuid": "7564313d-d1d0-4ef2-97e2-af5c02f75f39", + "uuid": "db772874-4ed7-4464-8abe-ed3af55c0fad", "siteRegistry": false, - "dateReceived": "2019-12-25", - "dateCompleted": "2021-03-17", - "dateEntered": "2022-02-25", - "dateRegistrar": "2018-05-16", - "dateLocalAuthorityReceived": "2014-08-29", - "summary": "Veniam magnam excepturi quam.", - "informationUsed": "Illum quisquam aliquam officiis magni commodi nesciunt.\nVoluptates aperiam sapiente architecto reprehenderit eum.\nQuae tempora officiis.\nVoluptatibus libero distinctio illum eligendi quis necessitatibus saepe quaerat saepe.\nOmnis pariatur eum eveniet doloribus rem.", - "pastOrPresentOrders": "Ad facilis suscipit vel.\nItaque adipisci tempore facere veritatis tenetur occaecati.\nSuscipit occaecati necessitatibus repellat quasi.", + "dateReceived": "2017-05-07", + "dateCompleted": "2023-01-04", + "dateEntered": "2014-12-19", + "dateRegistrar": "2019-12-23", + "dateLocalAuthorityReceived": "2015-07-21", + "summary": "Eaque at ab dolorem neque nobis.\nArchitecto quidem distinctio sequi minima nihil saepe corrupti nesciunt sit.\nNam quod aliquam quo voluptas debitis iste.", + "informationUsed": "Libero quam labore libero facilis repudiandae.\nQuis debitis in deleniti consectetur veniam velit libero.\nError explicabo reprehenderit porro quo aspernatur nesciunt aperiam.", + "pastOrPresentOrders": "Distinctio deserunt dolor eum.\nNecessitatibus voluptas est autem iste reiciendis debitis.", "commercialAndIndustrialPurposes": [ { - "uuid": "e20b7f00-e005-4488-a2fc-a1ec7b9c3571", - "scheduleReference": "F2*", + "uuid": "38e59adf-4f75-4066-a44d-0b0a52f952b6", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "uuid": "bd020517-bd84-49fd-8f5f-98ad5fefa118", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { - "uuid": "cf38fb43-9cfd-4cde-aeaf-e1b3c2845a43", + "uuid": "517d6dd1-34cc-43e4-a03f-26071fba7e33", "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + } + ] + }, + { + "uuid": "8e8018c8-bceb-4a98-9117-07f5b5f35729", + "siteRegistry": false, + "dateReceived": "2015-05-24", + "dateCompleted": "2018-10-28", + "dateEntered": "2015-01-08", + "dateRegistrar": "2015-03-27", + "dateLocalAuthorityReceived": "2023-04-06", + "summary": "Tempora ea voluptatum placeat occaecati cumque quis incidunt cupiditate perspiciatis.\nRecusandae itaque fugit nihil illo magni ullam sunt.\nAccusantium dolor aut accusantium officia laudantium.", + "informationUsed": "Aliquam culpa saepe error quaerat sint minima.\nSit ullam soluta autem ipsam optio fugiat autem.\nDoloribus delectus maiores quisquam sapiente.\nRepellendus odio possimus.", + "pastOrPresentOrders": "Nisi dolore facere facere enim suscipit.\nAsperiores harum quas earum necessitatibus quo consequatur iste doloremque.", + "commercialAndIndustrialPurposes": [ + { + "uuid": "8f3b2418-c8a8-40d4-8eac-3946d6cf8c1d", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "uuid": "a6a7e7a5-8abe-4a3d-966e-dfbd179f74ba", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "uuid": "702070b6-7785-46c5-8b3b-e274f6728ba0", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false + }, + { + "uuid": "3e2652b4-88d5-4c91-9836-1b7fec4263cc", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true } ] } ], "activityLog": [ { - "uuid": "504f9d04-e0a3-41a3-a133-cd481371b16d", - "siteRegistry": false, + "uuid": "f3be0823-0aea-4707-808a-f51d13278c5c", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "BOTSFORD BRADLEY", - "timestamp": "2020-08-15" + "user": "SCHADEN OKEY", + "timestamp": "2014-01-15" }, { - "uuid": "c0455172-eacc-4fa6-ae83-77296aea74d4", - "siteRegistry": false, + "uuid": "40f5d1d9-12a9-4535-975d-b57471c23809", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "HESSEL HATTIE", - "timestamp": "2021-05-08" + "user": "BAHRINGER LAURA", + "timestamp": "2019-05-05" }, { - "uuid": "8751ccae-0ff6-499c-8efe-c47e95da6c7e", + "uuid": "2b6633df-6283-4209-b4f0-a9f024bd61d1", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "TILLMAN SYDNI", - "timestamp": "2021-08-15" + "user": "WUNSCH ELTON", + "timestamp": "2023-01-20" }, { - "uuid": "9c180642-c907-4248-98e5-d2a326d9c911", + "uuid": "95453e90-d8e5-4427-a930-b7147a16321b", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "MURRAY SHANNON", - "timestamp": "2021-06-24" + "user": "SCHAEFER JODIE", + "timestamp": "2013-10-20" }, { - "uuid": "1f68b7fb-0ac7-4775-97a0-581bb07f86ab", - "siteRegistry": false, + "uuid": "ecf4bda7-be1d-4175-9906-258d549197f2", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "GREENHOLT KENYATTA", - "timestamp": "2016-09-02" + "user": "KOEPP CLAY", + "timestamp": "2023-07-16" }, { - "uuid": "61f84fb6-dce2-4b02-9f8a-80879c4d6d90", + "uuid": "ede34e82-0e00-46b5-850a-4c0b285841c9", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "WYMAN SABINA", - "timestamp": "2022-12-24" + "user": "O'CONNELL ADOLF", + "timestamp": "2021-04-09" }, { - "uuid": "ddd2b6a9-19ca-4615-bef0-54f9ff937d3d", + "uuid": "f31f9489-dd45-4eba-aaf3-7dc7e8ba2c30", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "SCHOWALTER CAROLE", - "timestamp": "2019-06-10" - }, - { - "uuid": "eb6f9c62-ed0a-4064-a047-179b29338bb1", - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "KREIGER GUSTAVE", - "timestamp": "2020-08-27" + "user": "HUEL LIAM", + "timestamp": "2021-07-05" }, { - "uuid": "be21fa28-87cf-499e-8aad-52953f029b40", + "uuid": "8c2d44c5-f76d-49ea-84f0-791505a9cb75", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "GOODWIN ADITYA", - "timestamp": "2023-02-14" + "user": "DIBBERT VIDA", + "timestamp": "2017-07-12" } ], "associatedSites": [ { - "uuid": "830cb59e-3125-4e0b-809a-929e6c0f774f", - "dateNoted": "2018-01-09", + "uuid": "09927f32-864e-4453-beb2-e43c120f88b9", + "dateNoted": "2017-12-20", "notes": "", - "parcelID": "16651", - "siteID": "16026", - "siteRegistry": true + "parcelID": "19474", + "siteID": "18864", + "siteRegistry": false + }, + { + "uuid": "272afafa-66fd-48b8-a7f1-37a317130db9", + "dateNoted": "2014-09-12", + "notes": "", + "parcelID": "20442", + "siteID": "20431", + "siteRegistry": false }, { - "uuid": "c31113c2-87f8-45ec-b41a-106eeb444cee", - "dateNoted": "2015-09-22", + "uuid": "f29f198f-221c-4528-b8eb-3f25f91acff2", + "dateNoted": "2019-04-05", "notes": "", - "parcelID": "15967", - "siteID": "20683", - "siteRegistry": true + "parcelID": "17869", + "siteID": "20039", + "siteRegistry": false } ] }, { - "uuid": "d55afd52-f6d9-4d31-a2b2-04d3eaa82937", - "siteID": 18724, - "address": "87873 Leannon Port", - "latitude": 51.6, - "longitude": -128.9697, - "lastUpdated": "2022-10-27", - "city": "Lake Gregorio", - "region": "Mainland/Southwest", - "victoriaFile": "26250-20/12515", + "uuid": "8ad3d417-6b83-4da6-a03f-71e279612c2f", + "siteID": 19588, + "address": "284 Vernie Passage", + "latitude": 48.4863, + "longitude": -138.4972, + "lastUpdated": "2020-01-05", + "city": "West Ernest", + "region": "Kootenay", + "victoriaFile": "26250-20/17159", "regionalFile": "N/A", "parcelIDs": [ - 3846442, - 2321065, - 3428284, - 293176, - 7311940 + 5127085, + 2182784, + 7676509, + 5226661, + 1204861 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "5a5275d6-21b0-4a5c-8cfe-caad84fe76b3", - "createdAt": "2019-02-06", - "completed": "2023-06-19", - "initiated": "2019-10-09", - "ministryContact": "TILLMAN HORACE", + "uuid": "2205fd0b-0f7f-443a-b884-e9c4b87b0501", + "createdAt": "2017-07-20", + "completed": "2018-04-18", + "initiated": "2023-03-20", + "ministryContact": "BEAHAN OLE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -68196,26 +79842,38 @@ ], "notationParticipants": [ { - "uuid": "fecfb827-f706-42e0-b46b-6ff1a7f98cd7", - "name": "SHELL CANADA PRODUCTS", + "uuid": "f7de8971-a57e-41c5-a45e-4abcc8137abc", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "819f91d7-5190-44d1-8aea-b47483016a70", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "6237a585-6ae1-4ee8-9f3c-99e0c73a128e", + "uuid": "554a7f54-7797-4c69-adaa-d2f8a0c12a15", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true + }, + { + "uuid": "41bc903a-eed8-4146-8645-3fd9e52fc014", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false } ], "siteRegistry": true }, { - "uuid": "53dc8d65-1219-4dca-865d-830c580d96ce", - "createdAt": "2020-01-25", - "completed": "2015-11-21", - "initiated": "2018-03-13", - "ministryContact": "ERDMAN LUTHER", + "uuid": "21dc4c53-e4e9-48e4-b2ce-00cbd8bf9751", + "createdAt": "2014-12-27", + "completed": "2015-11-04", + "initiated": "2022-08-18", + "ministryContact": "KOCH LOMA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -68224,32 +79882,38 @@ ], "notationParticipants": [ { - "uuid": "2a2fc6fd-a295-428f-baea-792c77e8f474", + "uuid": "84f883bb-3bf5-4c40-8891-a25603344bb2", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "db84fb08-632c-42ae-afd3-55d732e0b9f2", + "uuid": "6d2055b8-5b53-4637-a51a-75553599212f", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true }, { - "uuid": "c0ad4b51-7b2c-46ee-864e-e522f13c29dd", + "uuid": "bf6bbd92-501b-4d84-8149-ccde0a80a9b8", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true + }, + { + "uuid": "058ef684-cf68-474e-a54a-3d6aea75bdf5", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "6eaa3f53-a288-4812-9a78-0a15d7ac18e8", - "createdAt": "2022-09-22", - "completed": "2014-03-23", - "initiated": "2022-09-18", - "ministryContact": "DONNELLY ETHYL", + "uuid": "8b1d3efc-93f3-47de-bfe2-7735c33e9767", + "createdAt": "2021-07-23", + "completed": "2020-11-28", + "initiated": "2015-04-30", + "ministryContact": "ROGAHN GEORGETTE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -68258,32 +79922,32 @@ ], "notationParticipants": [ { - "uuid": "8be8e3e3-e5e5-4659-9255-e6dfedad386a", - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "15f835ca-f772-4b6d-9505-8de10f711d81", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "15e2be60-8852-4209-91d7-4e8530fadeb2", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "uuid": "223bfcfa-7adb-445d-95b2-6b3298c953d3", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "61f14ffb-f55d-4c80-8000-9eabd2838c87", + "uuid": "0945091f-0857-49cb-9b49-a3ec775246eb", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true + "role": "REQUESTED BY", + "siteRegistry": false } ], "siteRegistry": false }, { - "uuid": "f1e267e5-bfbf-4b70-bb34-16279eead6b8", - "createdAt": "2022-01-08", - "completed": "2017-11-22", - "initiated": "2016-09-11", - "ministryContact": "KOSS GEORGIANA", + "uuid": "e6a54e12-9a5f-4282-900b-38aa694098d2", + "createdAt": "2016-02-02", + "completed": "2014-07-19", + "initiated": "2014-02-28", + "ministryContact": "EMMERICH MINNIE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -68292,236 +79956,289 @@ ], "notationParticipants": [ { - "uuid": "533ed8f4-ed95-484c-9ee8-33554ced9c29", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "uuid": "e5e7eb1e-7df9-48d8-9023-3ff36e8b0a1f", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "uuid": "69411819-3b97-406e-a69b-1569fdb1c131", + "uuid": "835d42b0-baf1-4fb9-82b1-b2aa24fb6b47", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "e8140dd6-b8d3-4275-b386-b05525af1f26", + "uuid": "5fb6aa4a-4f53-43af-88c1-48fb7746eaf7", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "92bbdb80-fe6f-414b-b2d3-ae1632503729", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - } - ], - "siteRegistry": true - }, - { - "uuid": "4a1569a2-1df4-45fb-9f02-265bf3cd0506", - "createdAt": "2021-03-24", - "completed": "2015-02-19", - "initiated": "2018-07-26", - "ministryContact": "GULGOWSKI MASON", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "uuid": "0c060935-cf6e-4264-ab60-16b605ca06e2", + "uuid": "99498ece-9329-4762-a682-53d1d7f3779d", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "625ce87c-1416-4144-8a0c-e5034ec36a7a", + "uuid": "f227e825-41f1-4489-9816-48814728f091", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true } ], "participants": [ { - "uuid": "efeaef09-af2f-4025-b9b8-7b25be34be4f", - "name": "IPSUM", - "endDate": "2023-01-09", - "startDate": "2014-04-21", + "uuid": "ed5f94c2-95f4-4511-bee7-49a2f4999a53", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2020-11-24", + "startDate": "2018-01-09", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "29d3a7a4-9608-4804-b2cf-8d16874f5b9d", - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2021-10-13", - "startDate": "2016-12-09", + "uuid": "484c416e-6e5b-4f3b-979e-d9c194e838d3", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2022-11-04", + "startDate": "2017-02-02", "notes": "", "roles": [ "EMPLOYEE" ], "siteRegistry": false + } + ], + "documents": [ + { + "uuid": "3cb57c7f-e4be-4f4f-92ec-26d7bd7899ec", + "siteRegistry": true, + "documentDate": "2021-01-24", + "receivedDate": "2018-07-31", + "uploadedDate": "2018-04-01", + "title": "Summary of Site Conditions, 1537 W 41st Avenue, Vancouver", + "participants": [ + { + "uuid": "dc296831-c431-4d3f-8ae3-e9186afd934b", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "9af7cd23-ca5a-45a1-b393-87e4009ad6c5", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "50ade258-bc0b-4e42-9ecc-f91c4a4396a8", + "name": "IPSUM", + "siteRegistry": false, + "role": "AUTHOR" + } + ] }, { - "uuid": "d8f59c57-7cfd-4862-9ef0-6411a5898faf", - "name": "IPSUM", - "endDate": "2022-04-04", - "startDate": "2022-07-08", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": true + "uuid": "147cc5dd-9c12-4b6a-998f-ce1fe94bb226", + "siteRegistry": false, + "documentDate": "2014-03-09", + "receivedDate": "2017-07-21", + "uploadedDate": "2017-03-21", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "af2aa401-b76c-4987-8d5d-a25bcd10a3c6", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "7d5456fc-8fe7-49b7-a9c4-8cc7122145ec", + "name": "IPSUM", + "siteRegistry": false, + "role": "AUTHOR" + } + ] }, { - "uuid": "3d88dac6-2cdb-4c61-b95c-587c1420ad78", - "name": "SHELL CANADA PRODUCTS", - "endDate": "2017-04-04", - "startDate": "2014-06-30", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": true + "uuid": "b6d4f07d-66c2-48b3-9606-279412b43cbc", + "siteRegistry": true, + "documentDate": "2022-04-07", + "receivedDate": "2022-06-19", + "uploadedDate": "2018-08-13", + "title": "Preliminary Site Investigation, Detailed Site Investigation and Remedial Plan for the Management Area adjacent to the Shell Site at 1503 West 41st Ave", + "participants": [ + { + "uuid": "01701efc-4931-487d-a25e-613402880788", + "name": "AMET, DOLOR SIT", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "83503415-03b7-44ad-9d6f-2ad09b682caf", + "name": "IPSUM", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "a36df756-ad3c-4cfe-b983-b37d74070e6c", + "name": "IPSUM", + "siteRegistry": true, + "role": "AUTHOR" + } + ] }, { - "uuid": "dcbf82fc-77ac-40a1-922f-357e772e3e4d", - "name": "IPSUM", - "endDate": "2017-12-04", - "startDate": "2015-12-24", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": true + "uuid": "4917123a-9d22-487c-962e-cee336aa5f52", + "siteRegistry": false, + "documentDate": "2014-08-13", + "receivedDate": "2023-09-13", + "uploadedDate": "2018-04-25", + "title": "Preliminary Site Investigation, Detailed Site Investigation and Remedial Plan for the Management Area adjacent to the Shell Site at 1503 West 41st Ave", + "participants": [ + { + "uuid": "2c44bfe6-59a1-4999-a588-a6f257baf717", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "1e7e1511-3095-404a-8693-1550de8f07f5", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": true, + "role": "AUTHOR" + } + ] } ], "suspectLandUses": [ { - "uuid": "948d5275-66b3-48e3-9bc1-a67f202e902e", - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-09-16 (described on Site Profile dated 2018-09-16)", + "uuid": "17915a77-b03c-42f5-a9c1-34c0991018e6", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2014-05-01 (described on Site Profile dated 2014-05-01)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "uuid": "72ec93d1-ba51-4e43-a036-607004d05e42", + "uuid": "c810d768-f077-4608-a0f0-f67d20bb1877", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2023-07-26 (described on Site Profile dated 2023-07-26)", + "notes": "INSERTED FOR SITE PROFILE DATED 2022-12-13 (described on Site Profile dated 2022-12-13)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "uuid": "5d1eab27-0752-4d2a-9e7f-f5d9da96bc47", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2020-04-30 (described on Site Profile dated 2020-04-30)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "uuid": "a8669c55-30c5-44a6-8b4f-33e5b0a5fdfd", - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-11-30 (described on Site Profile dated 2021-11-30)", + "uuid": "1874ca74-3218-4f63-a716-aec237a39e32", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2022-01-27 (described on Site Profile dated 2022-01-27)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], "parcelDescriptions": [ { - "uuid": "5388a7ef-1b19-41e8-b524-40ac85aa6689", + "uuid": "d3336dda-d623-4df6-8d10-dc2f7efa1610", "siteRegistry": false, - "dateNoted": "2016-04-20", - "parcelID": "17679", - "crownLandUsePIN": "16140", - "crownLandFileNumber": "20052", - "landDescription": "LOT 4 OF LOT 2 BLOCK 5 DISTRICT LOT 2 PLAN 8614" + "dateNoted": "2019-07-16", + "parcelID": "16849", + "crownLandUsePIN": "17329", + "crownLandFileNumber": "16806", + "landDescription": "LOT 4 OF LOT 4 BLOCK 4 DISTRICT LOT 1 PLAN 6190" }, { - "uuid": "bb0653e8-b975-40f4-8415-a2c9170b39f2", + "uuid": "2125da13-59b6-43b7-a6ba-756074f06b74", "siteRegistry": true, - "dateNoted": "2013-12-20", - "parcelID": "15851", - "crownLandUsePIN": "20878", - "crownLandFileNumber": "15449", - "landDescription": "LOT 3 OF LOT 4 BLOCK 4 DISTRICT LOT 4 PLAN 4072" + "dateNoted": "2015-01-01", + "parcelID": "20748", + "crownLandUsePIN": "16897", + "crownLandFileNumber": "20042", + "landDescription": "LOT 4 OF LOT 3 BLOCK 4 DISTRICT LOT 2 PLAN 8058" }, { - "uuid": "00cd3020-e313-4021-8787-96ac17aa8e76", + "uuid": "9a0a8a91-d201-4e92-8979-9dd61df172c0", "siteRegistry": false, - "dateNoted": "2013-11-28", - "parcelID": "17146", - "crownLandUsePIN": "15225", - "crownLandFileNumber": "19275", - "landDescription": "LOT 4 OF LOT 2 BLOCK 2 DISTRICT LOT 4 PLAN 7038" + "dateNoted": "2018-05-05", + "parcelID": "16444", + "crownLandUsePIN": "19421", + "crownLandFileNumber": "16708", + "landDescription": "LOT 4 OF LOT 2 BLOCK 2 DISTRICT LOT 5 PLAN 8742" }, { - "uuid": "14dc9645-71dd-464a-a977-b7263d86c529", + "uuid": "1790c505-7188-4200-b827-7693de7e0270", "siteRegistry": false, - "dateNoted": "2019-03-06", - "parcelID": "19950", - "crownLandUsePIN": "18795", - "crownLandFileNumber": "18454", - "landDescription": "LOT 5 OF LOT 3 BLOCK 1 DISTRICT LOT 5 PLAN 6570" + "dateNoted": "2019-09-29", + "parcelID": "16923", + "crownLandUsePIN": "16944", + "crownLandFileNumber": "16476", + "landDescription": "LOT 3 OF LOT 1 BLOCK 3 DISTRICT LOT 2 PLAN 6287" } ], "siteDisclosures": [ { - "uuid": "5bb121fa-c6fb-4a82-897e-2e807bd34e77", + "uuid": "a4be0e84-c048-4bec-8e58-0cf94df498bf", "siteRegistry": true, - "dateReceived": "2020-07-31", - "dateCompleted": "2022-04-26", - "dateEntered": "2019-07-31", - "dateRegistrar": "2017-01-11", - "dateLocalAuthorityReceived": "2021-01-02", - "summary": "Hic minus tenetur.\nDolore dolore dicta assumenda consequuntur delectus odio.\nIure optio harum dolores accusantium.", - "informationUsed": "Similique rem aspernatur voluptates porro iure omnis tempora itaque.\nDolor voluptatem odio beatae unde libero enim.\nExercitationem iure sint.", - "pastOrPresentOrders": "Blanditiis inventore autem.", + "dateReceived": "2015-06-16", + "dateCompleted": "2016-07-31", + "dateEntered": "2014-02-06", + "dateRegistrar": "2020-11-12", + "dateLocalAuthorityReceived": "2022-06-12", + "summary": "At incidunt voluptatibus tempora tempore repellat nemo iusto nulla.\nNihil voluptatibus qui ipsam nostrum quas exercitationem accusantium dignissimos.", + "informationUsed": "Reprehenderit officiis occaecati laborum dolorum ad veritatis.\nNisi aliquam ipsam.\nExcepturi ab quia architecto culpa consequatur expedita commodi.\nDelectus rerum veniam veniam.", + "pastOrPresentOrders": "Nulla ipsum amet distinctio reiciendis debitis dicta.\nConsequatur assumenda porro odio rem quas beatae.", "commercialAndIndustrialPurposes": [ { - "uuid": "4ce66cdf-b42d-4fb6-b224-e733c6807181", - "scheduleReference": "F2*", + "uuid": "0c0c2f63-0db2-42b0-9369-4b911835bb0f", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { - "uuid": "76f039f7-279d-4473-a296-e06f032f2e6b", + "uuid": "e1af42c6-cc0c-4972-8901-7dbc3362dc50", "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true }, { - "uuid": "279fc8b1-349c-4ef8-9da5-72282bb27bd1", + "uuid": "56aa8331-bc27-41b6-a61f-e95ad5341012", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true + }, + { + "uuid": "b74b3ff9-44c9-4b8a-b2c1-653e4c2d2d19", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true } ] }, { - "uuid": "ea55f897-d7da-4b0e-a96e-25fe3f00b758", - "siteRegistry": true, - "dateReceived": "2022-04-30", - "dateCompleted": "2022-08-15", - "dateEntered": "2016-06-28", - "dateRegistrar": "2015-08-11", - "dateLocalAuthorityReceived": "2021-10-12", - "summary": "Rerum aliquid possimus enim.", - "informationUsed": "Consequuntur sequi quod.\nTempore nobis ullam ipsa nemo in ut voluptatibus inventore facilis.\nDolorum excepturi sapiente suscipit culpa rerum maxime dignissimos.\nAccusamus quibusdam ipsum dolores.\nAperiam atque architecto autem alias.", - "pastOrPresentOrders": "Impedit blanditiis adipisci.", + "uuid": "9331c32d-7abc-4a6b-a2c4-eea2bfdef401", + "siteRegistry": false, + "dateReceived": "2016-08-10", + "dateCompleted": "2023-06-13", + "dateEntered": "2017-07-31", + "dateRegistrar": "2013-12-04", + "dateLocalAuthorityReceived": "2021-04-02", + "summary": "Sunt reprehenderit quis impedit quae debitis unde.\nIllum quasi possimus aliquid.", + "informationUsed": "Eum porro dolorem amet in eaque similique.\nQuibusdam excepturi autem impedit numquam amet id repudiandae.\nDolore recusandae pariatur illo placeat.", + "pastOrPresentOrders": "Vitae enim nulla recusandae molestiae commodi voluptas molestias tenetur.\nQuam voluptate quaerat fugiat.\nUt porro delectus quaerat fugit est reiciendis animi incidunt.", "commercialAndIndustrialPurposes": [ { - "uuid": "49481b66-633a-494d-b0f3-609f21195fd7", - "scheduleReference": "F1*", + "uuid": "87575d14-91b4-4a5c-bbc1-ae3de8f01f02", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "uuid": "97c69969-4cd6-4e65-88c2-125112f2ce7e", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { - "uuid": "c7215661-0141-464a-9631-26ab93f88cc6", - "scheduleReference": "F2*", + "uuid": "a9631614-c3eb-4908-992b-5b64d4b6b75e", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false } @@ -68530,113 +80247,122 @@ ], "activityLog": [ { - "uuid": "e14cb653-fad2-472e-9996-2fd4444b6c6f", - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "HAYES GILBERTO", - "timestamp": "2021-08-10" - }, - { - "uuid": "77730e09-cb12-40ea-bcd0-9417be09d01f", + "uuid": "23bf29a2-974c-4800-b2fc-251648ed84d8", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "KOSS LANDEN", - "timestamp": "2017-11-20" + "user": "HELLER JAMESON", + "timestamp": "2013-11-14" }, { - "uuid": "55d66f4c-8227-424a-af70-7b67e26fd4ec", + "uuid": "f13f82fc-3009-48e2-9010-e83cfd94eccf", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "REICHEL MOSSIE", - "timestamp": "2019-08-07" + "user": "PARKER ADAH", + "timestamp": "2019-04-28" }, { - "uuid": "308b9a42-e6d8-4184-b083-1ab1a49f2045", - "siteRegistry": false, + "uuid": "cf8f04ab-6793-4dac-8789-c12c4d50df7e", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "WISOKY GLENNA", - "timestamp": "2020-05-05" + "user": "REICHERT JACINTHE", + "timestamp": "2015-10-25" }, { - "uuid": "ebe3ff69-6fc4-4b7a-b8df-77a21d216fad", - "siteRegistry": false, + "uuid": "06c12575-b0df-44cf-851e-f2e9e0070274", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "GRANT DIXIE", - "timestamp": "2018-12-19" + "user": "VEUM EMELIE", + "timestamp": "2015-02-03" }, { - "uuid": "cb553b2d-e2ed-4bbf-b2bd-332ec985dbf2", + "uuid": "c3807e6b-0a96-492d-8dbb-b32f8bb7b780", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "LIND NILS", - "timestamp": "2019-02-08" + "user": "CUMMINGS CHAYA", + "timestamp": "2018-05-16" }, { - "uuid": "95adef67-b8dc-4cca-9788-5f187a24e7c9", + "uuid": "f29018d5-1bd0-49ac-90e8-edb858eb3c30", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "PREDOVIC KARLEY", - "timestamp": "2023-03-04" + "user": "HOPPE EMMETT", + "timestamp": "2017-09-09" }, { - "uuid": "1194303b-f914-4bfa-af80-cf201eae35cd", - "siteRegistry": true, + "uuid": "60b8e97e-0f85-4ff8-9c19-7c715341c929", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "BARTON JANELLE", - "timestamp": "2019-08-08" + "user": "VEUM KARELLE", + "timestamp": "2023-08-28" }, { - "uuid": "055988f7-ac45-48a9-8cfe-c071b2735a11", - "siteRegistry": false, + "uuid": "81f95a0d-f2c7-490a-bec6-2ead9c4271c8", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "RUSSEL BENNIE", - "timestamp": "2022-04-24" + "user": "OBERBRUNNER DEJUAN", + "timestamp": "2019-05-11" }, { - "uuid": "6b72a523-96b0-4e8b-9ca3-68aafbe4ea6f", + "uuid": "dcdc6c54-18de-403f-9c94-199c3a2effa3", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "ORN NORBERTO", - "timestamp": "2018-06-25" + "user": "CONNELLY SID", + "timestamp": "2023-06-30" } ], "associatedSites": [ { - "uuid": "d297d60d-1251-4fd7-8e82-53b3e022bfdc", - "dateNoted": "2021-10-17", + "uuid": "d47f4604-d79e-4c32-8c5f-a0b3d4a6ac22", + "dateNoted": "2014-03-25", + "notes": "", + "parcelID": "19216", + "siteID": "18436", + "siteRegistry": false + }, + { + "uuid": "8d136500-d2fa-4f0c-b1d4-8218b7e93c5e", + "dateNoted": "2015-03-14", + "notes": "", + "parcelID": "16795", + "siteID": "18736", + "siteRegistry": true + }, + { + "uuid": "bd1f2fad-25b7-420c-acc5-3eadfbc44e18", + "dateNoted": "2022-12-25", "notes": "", - "parcelID": "17304", - "siteID": "17362", + "parcelID": "17299", + "siteID": "20261", "siteRegistry": false } ] }, { - "uuid": "0cf49f39-42fc-414d-9811-13b6e0a67226", - "siteID": 18294, - "address": "3618 Craig Forges", - "latitude": 56.8755, - "longitude": -130.3743, - "lastUpdated": "2018-12-26", - "city": "New Everetteboro", - "region": "Kootenay", - "victoriaFile": "26250-20/5402", + "uuid": "6c2f6c6b-1e3a-4836-b07d-6b7000e50152", + "siteID": 16366, + "address": "817 Jayson Wells", + "latitude": 57.0533, + "longitude": -121.8233, + "lastUpdated": "2018-09-18", + "city": "Lake Christyhaven", + "region": "Cariboo", + "victoriaFile": "26250-20/13224", "regionalFile": "N/A", "parcelIDs": [ - 5772008, - 4379054, - 704236, - 1549703, - 5285725 + 4338879, + 787370, + 3122836, + 6968871, + 9106357 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "b53e336c-29de-4927-a997-0e72b6e1c10e", - "createdAt": "2016-09-09", - "completed": "2022-11-17", - "initiated": "2015-06-23", - "ministryContact": "WEIMANN MYLENE", + "uuid": "17187e41-4b88-4a5f-90e0-95cedae336cc", + "createdAt": "2022-02-27", + "completed": "2014-07-16", + "initiated": "2021-12-30", + "ministryContact": "LITTLE ELSE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -68645,26 +80371,44 @@ ], "notationParticipants": [ { - "uuid": "41d2b660-1549-400d-ad53-9eab0a66ec01", - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "24a74926-fd31-41ad-a825-f6ca789f35bb", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "uuid": "eaa5de07-d84e-478d-8082-cb1fd8e2f6ff", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "06bb9a90-b97d-42ab-bcf6-d77f1ded8d12", + "uuid": "f6a78109-99e9-46bd-8d80-79ea24770386", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "2e2e2d16-da83-45a0-a87f-c38004f38554", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false + }, + { + "uuid": "9ac967a5-bf27-4685-9398-9dde2095d3ae", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false } ], "siteRegistry": true }, { - "uuid": "19a3fcd9-ad71-4c46-aa36-78d30ebac705", - "createdAt": "2015-08-21", - "completed": "2020-08-14", - "initiated": "2022-12-30", - "ministryContact": "FLATLEY HAZLE", + "uuid": "edb8310e-5072-4ae1-8af1-a1d07b14a875", + "createdAt": "2015-08-25", + "completed": "2019-05-20", + "initiated": "2021-04-18", + "ministryContact": "RUNTE CAMREN", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -68673,33 +80417,15 @@ ], "notationParticipants": [ { - "uuid": "b926035d-2768-4299-8d87-985b63d45477", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "uuid": "4ccd5d4f-067b-4c68-bfaf-0640b10aba59", - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "uuid": "615c0dfd-84ea-44ed-bf92-6830e59275ee", + "uuid": "194b8d59-1791-493c-b500-33c8c41faeb3", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "54a7a742-8c89-45b0-b512-073edb50b557", + "uuid": "510700bb-060a-404d-9595-ba714a872739", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "uuid": "875aeac4-5c67-491f-a3d7-1240b9c7ef39", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false } ], @@ -68708,10 +80434,10 @@ ], "participants": [ { - "uuid": "9c51466e-af75-47ab-8e4c-4ec7b11b0b2a", - "name": "SHELL CANADA PRODUCTS", - "endDate": "2022-06-17", - "startDate": "2017-05-26", + "uuid": "855cbd96-7ffb-4f8d-abc7-10c2f039adc6", + "name": "AMET, DOLOR SIT", + "endDate": "2017-09-25", + "startDate": "2023-07-12", "notes": "", "roles": [ "ORGANIZATION" @@ -68719,112 +80445,223 @@ "siteRegistry": false }, { - "uuid": "1fc43875-c525-4f2e-9b75-2eef290dc724", - "name": "AMET, DOLOR SIT", - "endDate": "2017-03-16", - "startDate": "2015-11-16", + "uuid": "0ab34b98-6c5b-4fd5-8dd1-bad67ec008d4", + "name": "IPSUM", + "endDate": "2014-11-27", + "startDate": "2019-12-20", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false + } + ], + "documents": [ + { + "uuid": "9ee77fe7-892f-460b-bf32-96ba5c25957f", + "siteRegistry": true, + "documentDate": "2023-03-25", + "receivedDate": "2015-06-27", + "uploadedDate": "2014-05-14", + "title": "Preliminary Site Investigation, Detailed Site Investigation and Remedial Plan for the Management Area adjacent to the Shell Site at 1503 West 41st Ave", + "participants": [ + { + "uuid": "8f27303d-11f9-444c-9f33-2212dad21dd7", + "name": "AMET, DOLOR SIT", + "siteRegistry": false, + "role": "AUTHOR" + } + ] + }, + { + "uuid": "431071eb-d256-4e3c-a906-3c1cec1950bb", + "siteRegistry": true, + "documentDate": "2017-02-06", + "receivedDate": "2014-07-27", + "uploadedDate": "2014-02-09", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "70b172a0-dbc9-4d89-b3a7-3d04d26dfc61", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "c46a0f05-5c60-48c6-8222-858c5f479d17", + "name": "IPSUM", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "26cf8f70-71f1-4f3f-9454-0f526240cb5a", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": true, + "role": "AUTHOR" + } + ] }, { - "uuid": "00235d8b-fc56-4a84-8f42-e7ffaca436a1", - "name": "AMET, DOLOR SIT", - "endDate": "2023-04-24", - "startDate": "2017-03-03", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": false + "uuid": "9da41982-a194-43d8-a083-522216ea8363", + "siteRegistry": true, + "documentDate": "2016-06-30", + "receivedDate": "2019-04-11", + "uploadedDate": "2021-07-09", + "title": "Preliminary Site Investigation, Detailed Site Investigation and Remedial Plan for the Management Area adjacent to the Shell Site at 1503 West 41st Ave", + "participants": [ + { + "uuid": "266005ea-28fb-4418-80ec-5d8c23bad510", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "6b02c533-540e-45d5-b9dc-9abc123fe9f6", + "name": "IPSUM", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "ee0bfcf6-afe5-4d53-8ae3-6588e4739b21", + "name": "IPSUM", + "siteRegistry": false, + "role": "AUTHOR" + } + ] + }, + { + "uuid": "2a5eb10b-20b5-452d-80a9-cb006ab50f4e", + "siteRegistry": true, + "documentDate": "2017-10-06", + "receivedDate": "2021-05-06", + "uploadedDate": "2015-04-26", + "title": "Summary of Site Conditions, 1537 W 41st Avenue, Vancouver", + "participants": [ + { + "uuid": "e8378f17-1d4f-43dd-a410-ae96d893196b", + "name": "AMET, DOLOR SIT", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "e8d48aaa-3bff-4bba-af97-5bfcf1c1776d", + "name": "AMET, DOLOR SIT", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "c65d3a35-1ad3-4f07-8beb-56aab6a5512f", + "name": "AMET, DOLOR SIT", + "siteRegistry": true, + "role": "AUTHOR" + } + ] } ], "suspectLandUses": [ { - "uuid": "9d6f6db7-636f-4ba4-b013-7a2619627a11", - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-04-08 (described on Site Profile dated 2016-04-08)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" - }, - { - "uuid": "846f0e11-27b2-4643-9297-1617f2c29132", + "uuid": "eec9d548-944a-4706-91de-f9c207b94fc5", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-02-09 (described on Site Profile dated 2018-02-09)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "notes": "INSERTED FOR SITE PROFILE DATED 2015-09-02 (described on Site Profile dated 2015-09-02)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "uuid": "1a2a1662-9055-483b-b3d2-12872e714321", + "uuid": "9c69aaf2-62e5-4656-af94-1bdc9ac2f935", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-09-27 (described on Site Profile dated 2021-09-27)", + "notes": "INSERTED FOR SITE PROFILE DATED 2022-08-04 (described on Site Profile dated 2022-08-04)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "uuid": "0d7a70ed-4385-4011-9af4-1c534e6086db", - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2023-03-08 (described on Site Profile dated 2023-03-08)", + "uuid": "175cec99-6069-4624-a2f9-b9651ecb5edd", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2021-03-21 (described on Site Profile dated 2021-03-21)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], "parcelDescriptions": [ { - "uuid": "a51bdcf1-8444-49c5-bd4a-c44071a8515d", + "uuid": "b97bbcda-2651-4e7e-9eea-68efe989ec19", "siteRegistry": false, - "dateNoted": "2022-12-29", - "parcelID": "17875", - "crownLandUsePIN": "15340", - "crownLandFileNumber": "18336", - "landDescription": "LOT 4 OF LOT 1 BLOCK 3 DISTRICT LOT 3 PLAN 3776" + "dateNoted": "2015-02-04", + "parcelID": "15277", + "crownLandUsePIN": "17333", + "crownLandFileNumber": "17365", + "landDescription": "LOT 2 OF LOT 5 BLOCK 4 DISTRICT LOT 5 PLAN 4817" }, { - "uuid": "32e5c49d-9a45-4006-9543-e4946b852b95", - "siteRegistry": true, - "dateNoted": "2018-08-07", - "parcelID": "17317", - "crownLandUsePIN": "18177", - "crownLandFileNumber": "20975", - "landDescription": "LOT 1 OF LOT 3 BLOCK 2 DISTRICT LOT 4 PLAN 5301" + "uuid": "8dd02009-9d8c-4de5-986a-f7a026696dd8", + "siteRegistry": false, + "dateNoted": "2014-08-10", + "parcelID": "15576", + "crownLandUsePIN": "15482", + "crownLandFileNumber": "20809", + "landDescription": "LOT 2 OF LOT 1 BLOCK 4 DISTRICT LOT 3 PLAN 4373" }, { - "uuid": "304d3263-f669-4145-9072-01372e25f000", - "siteRegistry": true, - "dateNoted": "2019-12-16", - "parcelID": "19045", - "crownLandUsePIN": "19142", - "crownLandFileNumber": "20561", - "landDescription": "LOT 3 OF LOT 2 BLOCK 5 DISTRICT LOT 1 PLAN 5415" + "uuid": "6c357aef-2050-46aa-a1a3-f01d0752ce0b", + "siteRegistry": false, + "dateNoted": "2019-06-14", + "parcelID": "16548", + "crownLandUsePIN": "17244", + "crownLandFileNumber": "19096", + "landDescription": "LOT 2 OF LOT 3 BLOCK 4 DISTRICT LOT 2 PLAN 8207" } ], "siteDisclosures": [ { - "uuid": "92d3f2d5-bba6-46a6-8b80-a72f204cd435", + "uuid": "9d7a7ee5-19db-410c-a20f-d003cfac80f9", "siteRegistry": false, - "dateReceived": "2020-07-05", - "dateCompleted": "2013-10-14", - "dateEntered": "2019-02-05", - "dateRegistrar": "2014-06-01", - "dateLocalAuthorityReceived": "2015-10-25", - "summary": "Magnam provident expedita unde optio provident maiores occaecati.\nDucimus corrupti quibusdam dolores dolorem reiciendis consequuntur molestias.\nMagni facilis optio.", - "informationUsed": "Facere reiciendis consequatur architecto labore praesentium blanditiis.\nDistinctio praesentium sit corrupti quos aliquid ducimus.\nConsequatur vitae unde quia vel explicabo rem.\nTenetur in tempora nam explicabo dolorem doloribus.", - "pastOrPresentOrders": "Illum deserunt fugit a mollitia sit eligendi explicabo.\nAperiam assumenda corporis vel nobis ullam.\nId illo atque assumenda sunt repellendus aspernatur temporibus voluptas.", + "dateReceived": "2015-06-27", + "dateCompleted": "2020-03-10", + "dateEntered": "2014-06-22", + "dateRegistrar": "2016-01-02", + "dateLocalAuthorityReceived": "2020-07-03", + "summary": "Accusamus a perspiciatis.\nAut architecto quo suscipit delectus.\nFacere quisquam accusantium ratione.", + "informationUsed": "Ab doloremque vitae quis labore.\nMaiores nobis ullam iusto.\nNulla dicta ducimus.", + "pastOrPresentOrders": "Voluptate nulla officia molestias.\nPraesentium deleniti itaque culpa blanditiis dolorum iure.", "commercialAndIndustrialPurposes": [ { - "uuid": "7c73f6d4-ad2c-43e8-a959-c261b2a600b8", - "scheduleReference": "F1*", + "uuid": "2bcc1635-208d-49f4-b6ea-4910babe18f6", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "uuid": "995aa578-2c45-4dd1-9556-423e3e2a3c42", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false - }, + } + ] + }, + { + "uuid": "8c2e2f74-6d22-4d08-a669-5df030d5ee82", + "siteRegistry": false, + "dateReceived": "2023-07-17", + "dateCompleted": "2018-07-04", + "dateEntered": "2022-12-08", + "dateRegistrar": "2015-04-04", + "dateLocalAuthorityReceived": "2020-02-15", + "summary": "Molestiae nihil quos delectus quasi placeat.\nDignissimos nam neque.\nAnimi dignissimos quibusdam odio doloribus sit sunt debitis nisi non.", + "informationUsed": "Molestias corrupti dolorem nihil odit vero accusantium consectetur consequuntur ducimus.\nAliquam nisi dolores cum accusamus odit ipsa consequatur iste.\nAut at minima non itaque tempore perferendis.\nDolore rem quo exercitationem esse.", + "pastOrPresentOrders": "Eligendi similique libero fuga excepturi officia laudantium occaecati vel.", + "commercialAndIndustrialPurposes": [ { - "uuid": "85457df1-7a15-44b8-8dc7-9414e2cee48e", + "uuid": "d2113c20-c803-4226-ac19-6736be56fa1b", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "f0e7608a-a96d-426e-b218-398465a23926", + "uuid": "03244556-debb-47eb-990c-8081e579f982", "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "uuid": "b04dad7b-ac28-4270-bc9a-66528c2c9859", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false } ] @@ -68832,94 +80669,129 @@ ], "activityLog": [ { - "uuid": "e17ad822-01f8-48a1-9757-cb4bb2c3d310", + "uuid": "de915514-7bc9-4eaf-9a38-3a494a93cfbf", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "SCHUPPE GUISEPPE", + "timestamp": "2015-03-01" + }, + { + "uuid": "e7c0c90c-c136-40e3-9975-fcacd35e6eeb", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "RITCHIE CAMYLLE", - "timestamp": "2021-09-28" + "user": "OBERBRUNNER-STEUBER FREEMAN", + "timestamp": "2020-02-16" }, { - "uuid": "6aa1a405-8399-4671-b16f-632e8c7a5223", + "uuid": "6f04230e-559b-44ca-ac87-1d7dd2b7ea76", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "MCKENZIE LACY", - "timestamp": "2014-10-04" + "user": "YOST KILEY", + "timestamp": "2021-04-01" }, { - "uuid": "32e9f8f6-5531-40d5-9030-3f9b5d1aa852", - "siteRegistry": false, + "uuid": "9157dd9c-2bc7-48e8-9941-30eb41ad6161", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "PROSACCO JULIAN", - "timestamp": "2013-12-10" + "user": "GOTTLIEB JODY", + "timestamp": "2014-05-04" }, { - "uuid": "424be8d3-15bf-48f3-91b6-31ecdb209c98", - "siteRegistry": false, + "uuid": "d2be1d4a-8244-4c98-80da-b3fa0275db8f", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "BAILEY CLAIR", - "timestamp": "2018-04-04" + "user": "FRANECKI-MURRAY MIREILLE", + "timestamp": "2017-02-09" }, { - "uuid": "3f19cea7-3de8-4eef-8fa4-7af2cd90108e", - "siteRegistry": false, + "uuid": "8fe0bdff-73a1-44e7-bf47-009870f31ea5", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "BAUMBACH MARYAM", - "timestamp": "2017-12-28" + "user": "BECKER CLAUDIA", + "timestamp": "2022-10-25" + }, + { + "uuid": "606fa7b0-7529-4d3b-8e6f-5802a6f72d51", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "CRUICKSHANK FOSTER", + "timestamp": "2019-05-01" + }, + { + "uuid": "a19b8298-5948-4684-9417-b82f3ab5cd4a", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "GLEICHNER ERVIN", + "timestamp": "2020-12-23" + }, + { + "uuid": "1b7998aa-670d-4ecd-981b-9e07d60274b2", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "KOVACEK ANIBAL", + "timestamp": "2022-02-11" + }, + { + "uuid": "ae509623-5634-42ea-a801-0c9a856eb94f", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "HALEY JILLIAN", + "timestamp": "2020-05-23" } ], "associatedSites": [ { - "uuid": "fe8d59b9-20dc-46e0-8940-fd49645a3a32", - "dateNoted": "2021-09-30", + "uuid": "ccf0df88-d082-4f43-be44-bfd0a0784b39", + "dateNoted": "2018-01-20", "notes": "", - "parcelID": "20881", - "siteID": "20024", - "siteRegistry": true + "parcelID": "20764", + "siteID": "16457", + "siteRegistry": false }, { - "uuid": "d55cb2de-8599-4a55-9ee5-19a1cde1edf8", - "dateNoted": "2015-05-11", + "uuid": "a20ae145-a3db-4241-96d0-4c00d9949881", + "dateNoted": "2019-06-12", "notes": "", - "parcelID": "17805", - "siteID": "16267", - "siteRegistry": false + "parcelID": "17126", + "siteID": "19202", + "siteRegistry": true }, { - "uuid": "ca03b1bf-2e29-44ef-aade-00c3d8f3df8f", - "dateNoted": "2018-01-08", + "uuid": "2357527d-878b-4d8f-8cf8-bbb7943c10d5", + "dateNoted": "2022-06-11", "notes": "", - "parcelID": "17868", - "siteID": "17082", + "parcelID": "15819", + "siteID": "16012", "siteRegistry": false } ] }, { - "uuid": "a1cbd3da-70c1-4681-b2f0-f91942de9dcc", - "siteID": 18182, - "address": "138 Gerlach Forks", - "latitude": 58.7381, - "longitude": -123.5482, - "lastUpdated": "2020-07-12", - "city": "Port Lamont", - "region": " North Coast", - "victoriaFile": "26250-20/8201", + "uuid": "4ead740b-3b66-4ce1-82d0-696133634e45", + "siteID": 18536, + "address": "79390 Lera Spring", + "latitude": 52.2347, + "longitude": -134.1982, + "lastUpdated": "2014-05-02", + "city": "Lake Francoboro", + "region": "Thompson-Okanagan", + "victoriaFile": "26250-20/2897", "regionalFile": "N/A", "parcelIDs": [ - 4820323, - 9638266, - 218539, - 1975666, - 1830457 + 4465381, + 7175064, + 4560517, + 8518848, + 9754878 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "5da93c03-33f0-4572-99ba-691b7225f2f2", - "createdAt": "2022-12-11", - "completed": "2016-03-19", - "initiated": "2021-06-05", - "ministryContact": "SCHUSTER WALTER", + "uuid": "3c40fac7-c00d-44f1-bdf6-6be5965fd978", + "createdAt": "2020-10-13", + "completed": "2018-01-06", + "initiated": "2014-02-09", + "ministryContact": "SHIELDS FRED", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -68928,20 +80800,20 @@ ], "notationParticipants": [ { - "uuid": "e28b8c67-56f8-4452-9577-b892d816283f", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "uuid": "e268888b-c81f-45d8-877c-01f1c588a4f8", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "049f0e2b-c73b-4ef5-b69c-05664191c31e", - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "7451fa5b-bc81-47a5-8200-61b901a7fa55", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "a1f205f7-5fd9-4648-87aa-3a25901b8206", - "name": "SHELL CANADA PRODUCTS", + "uuid": "1b874b35-b9a6-41a8-a997-f659914f8872", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true } @@ -68949,11 +80821,11 @@ "siteRegistry": false }, { - "uuid": "d24fce43-dbbb-4a84-bb4a-5400ae57cd3e", - "createdAt": "2023-03-26", - "completed": "2020-12-29", - "initiated": "2017-05-04", - "ministryContact": "JONES MARISOL", + "uuid": "1dc5ec12-2a45-4476-a95d-8e96f2d05103", + "createdAt": "2015-11-26", + "completed": "2019-03-20", + "initiated": "2019-03-12", + "ministryContact": "KERTZMANN KEVIN", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -68962,32 +80834,26 @@ ], "notationParticipants": [ { - "uuid": "06a63270-2a21-41b5-9ac9-6e0fa5e4b0a1", - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "4fe8b426-3a13-434b-962b-33546d08dde7", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false }, { - "uuid": "808d1a19-387a-4eb5-885e-44b7d9a6f24e", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "uuid": "7570a48a-c12b-4fbf-a7a3-007b749f14ae", + "uuid": "b5add09d-6fb8-4e01-8e4d-fee66b835c0d", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "9ef0e0d7-0932-4197-a6f2-7d07c9c55fb0", - "createdAt": "2022-12-25", - "completed": "2014-02-04", - "initiated": "2015-04-09", - "ministryContact": "MILLS JAN", + "uuid": "d20a9d6d-c5f9-48bd-b719-5ffa353a3e11", + "createdAt": "2018-03-17", + "completed": "2021-12-14", + "initiated": "2014-09-26", + "ministryContact": "MARVIN TYRESE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -68996,333 +80862,378 @@ ], "notationParticipants": [ { - "uuid": "fbfd8cde-3633-43f0-bc5c-46da168d0709", + "uuid": "53bfe675-1ad4-4d18-96e1-4ce38a3c7eb0", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "efbfdb45-3f15-4545-84b7-680d9976cc78", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false }, { - "uuid": "b1cba6e3-fca7-4964-9533-4c4099a8dd11", + "uuid": "6f58a267-d3e7-4bfc-91b0-b986bf107f5f", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true }, { - "uuid": "5165d697-095e-49f8-a630-619048a47cb0", - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "4bafc182-e26a-488f-918d-d97d9be9a9ad", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true } ], "siteRegistry": true + } + ], + "participants": [ + { + "uuid": "ff5c79a4-b3fa-4513-a185-b3848f3ae93e", + "name": "AMET, DOLOR SIT", + "endDate": "2016-10-21", + "startDate": "2015-01-17", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false }, { - "uuid": "f1ab7570-b155-4327-826c-bc1ff50e3c8e", - "createdAt": "2020-06-15", - "completed": "2018-03-30", - "initiated": "2015-04-15", - "ministryContact": "MACGYVER KATHRYNE", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" + "uuid": "5cc74ed2-87e7-4d00-a7c6-b04eb1f9396e", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2014-05-26", + "startDate": "2014-11-10", + "notes": "", + "roles": [ + "EMPLOYEE" ], - "notationParticipants": [ + "siteRegistry": true + }, + { + "uuid": "773c7f0b-a561-45d9-8acd-327716afbd61", + "name": "AMET, DOLOR SIT", + "endDate": "2020-09-16", + "startDate": "2023-03-19", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + } + ], + "documents": [ + { + "uuid": "fbaf2cb1-a3cd-4a5e-a229-5dda99ba5e5c", + "siteRegistry": false, + "documentDate": "2022-01-14", + "receivedDate": "2020-01-03", + "uploadedDate": "2014-12-23", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ { - "uuid": "0c58f0ae-dd2d-4beb-b77d-ee53e0a20c4b", + "uuid": "c885d635-195d-4e64-8af2-bf5d3e7255f5", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": false, + "role": "AUTHOR" }, { - "uuid": "145d1d27-080d-4dc5-9be1-dd8eccf24147", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false + "uuid": "64f24d30-c222-4bf2-b290-f21667a2bc9a", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": true, + "role": "AUTHOR" + } + ] + }, + { + "uuid": "40190277-f2e9-4599-809b-588db93e9330", + "siteRegistry": false, + "documentDate": "2021-08-27", + "receivedDate": "2020-02-17", + "uploadedDate": "2022-11-19", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "c431c7ee-ce41-4b28-a2f5-150287532d29", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": true, + "role": "AUTHOR" }, { - "uuid": "4f3efee8-c1f5-481b-baeb-cb07ec81ecad", + "uuid": "f6ad9c2e-b065-4f04-aa4f-0bc6eda3eb49", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": false, + "role": "AUTHOR" }, { - "uuid": "cb614fd0-462c-4939-8703-a7ee8a4d1f3c", + "uuid": "150d99f3-e584-4deb-8341-f4c43e076fab", + "name": "AMET, DOLOR SIT", + "siteRegistry": false, + "role": "AUTHOR" + } + ] + }, + { + "uuid": "43a6cd96-c17f-455b-af6b-85009fbd7192", + "siteRegistry": false, + "documentDate": "2019-11-25", + "receivedDate": "2020-03-19", + "uploadedDate": "2017-11-17", + "title": "Summary of Site Conditions, 1537 W 41st Avenue, Vancouver", + "participants": [ + { + "uuid": "fd164b27-f5fd-4920-b6ce-3cc675302371", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true, + "role": "AUTHOR" } - ], - "siteRegistry": true + ] }, { - "uuid": "67b4e813-59b2-4665-9b3f-b41e7e48f350", - "createdAt": "2019-11-16", - "completed": "2023-01-15", - "initiated": "2014-08-31", - "ministryContact": "KUHN MONTY", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ + "uuid": "15106cff-e5c0-4c46-851b-4bc261075806", + "siteRegistry": false, + "documentDate": "2022-04-05", + "receivedDate": "2014-06-14", + "uploadedDate": "2023-04-15", + "title": "Preliminary Site Investigation, Detailed Site Investigation and Remedial Plan for the Management Area adjacent to the Shell Site at 1503 West 41st Ave", + "participants": [ { - "uuid": "11381b49-f04a-4bc4-bb47-8d4291251bac", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false + "uuid": "78a24719-3389-4388-908d-3c7cc0a3cef8", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": false, + "role": "AUTHOR" }, { - "uuid": "f9766b4a-db85-4679-81dc-50bfca3742ba", + "uuid": "e97f7f5e-9414-4846-ae9d-edb749750339", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false, + "role": "AUTHOR" } - ], - "siteRegistry": false - } - ], - "participants": [ - { - "uuid": "47a8109c-05e5-482d-9577-85ab24b2ee38", - "name": "SHELL CANADA PRODUCTS", - "endDate": "2016-12-10", - "startDate": "2019-06-22", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": true + ] }, { - "uuid": "b8bb7a06-5c4c-433d-b1eb-46b31a0ea94c", - "name": "AMET, DOLOR SIT", - "endDate": "2021-03-07", - "startDate": "2014-08-08", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": true + "uuid": "e0518423-6b9d-4fd1-9901-9239d80063a6", + "siteRegistry": false, + "documentDate": "2015-06-08", + "receivedDate": "2023-06-21", + "uploadedDate": "2017-08-22", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "0be620f6-dc17-4378-8732-ea2aaf7aa874", + "name": "AMET, DOLOR SIT", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "fbf75333-9cdb-4a08-bab6-5c19e23e7a1d", + "name": "AMET, DOLOR SIT", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "78b8ce65-b1a0-44fe-9604-65ae6f26dc71", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": true, + "role": "AUTHOR" + } + ] } ], "suspectLandUses": [ { - "uuid": "d80ecb0e-6d4c-4fb4-a676-31e8211d2152", + "uuid": "fc1e541b-bc91-472c-9b69-12c6d1bc7450", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2023-03-02 (described on Site Profile dated 2023-03-02)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "uuid": "f12dc4c7-7edd-4750-9a4f-d06b40cd33e3", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2020-06-22 (described on Site Profile dated 2020-06-22)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "uuid": "a3bf535a-eef6-4092-876c-b9d0ccdd2061", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-06-19 (described on Site Profile dated 2022-06-19)", + "notes": "INSERTED FOR SITE PROFILE DATED 2018-06-11 (described on Site Profile dated 2018-06-11)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "uuid": "b0518191-b944-46c3-aad6-53a37916aff0", - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-03-31 (described on Site Profile dated 2017-03-31)", + "uuid": "297c75b6-3071-4155-a1ce-42931c9a403e", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2016-08-20 (described on Site Profile dated 2016-08-20)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "uuid": "68bcf58c-7861-437b-ac28-c9d92007d97a", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2016-11-01 (described on Site Profile dated 2016-11-01)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], "parcelDescriptions": [ { - "uuid": "8da9cd33-e6b6-49ab-b413-48f90058bbeb", - "siteRegistry": false, - "dateNoted": "2022-10-17", - "parcelID": "18993", - "crownLandUsePIN": "15753", - "crownLandFileNumber": "17615", - "landDescription": "LOT 4 OF LOT 2 BLOCK 3 DISTRICT LOT 2 PLAN 8093" + "uuid": "6e8afac5-cc9a-479a-b806-49b3c8097b9b", + "siteRegistry": true, + "dateNoted": "2018-04-18", + "parcelID": "19421", + "crownLandUsePIN": "16203", + "crownLandFileNumber": "19739", + "landDescription": "LOT 1 OF LOT 3 BLOCK 4 DISTRICT LOT 3 PLAN 8203" }, { - "uuid": "7c2b0c8f-4db1-46d1-b825-b34b249d8f39", - "siteRegistry": true, - "dateNoted": "2021-09-23", - "parcelID": "19530", - "crownLandUsePIN": "20490", - "crownLandFileNumber": "15735", - "landDescription": "LOT 1 OF LOT 4 BLOCK 4 DISTRICT LOT 1 PLAN 8494" + "uuid": "9faf01d1-d1a1-4c6c-a60f-636e4fbdea59", + "siteRegistry": false, + "dateNoted": "2016-04-21", + "parcelID": "17813", + "crownLandUsePIN": "17841", + "crownLandFileNumber": "20253", + "landDescription": "LOT 5 OF LOT 5 BLOCK 3 DISTRICT LOT 4 PLAN 6216" }, { - "uuid": "65f37361-29b8-44f1-8823-ae298df36c31", + "uuid": "c8a7ef56-b8e8-4a56-a31d-f3c02ef8cba4", "siteRegistry": false, - "dateNoted": "2022-12-09", - "parcelID": "15208", - "crownLandUsePIN": "16963", - "crownLandFileNumber": "16244", - "landDescription": "LOT 5 OF LOT 2 BLOCK 1 DISTRICT LOT 1 PLAN 6002" + "dateNoted": "2018-07-17", + "parcelID": "18872", + "crownLandUsePIN": "15955", + "crownLandFileNumber": "20858", + "landDescription": "LOT 5 OF LOT 3 BLOCK 2 DISTRICT LOT 2 PLAN 7197" }, { - "uuid": "b1646ffc-d7ef-4ba1-ba87-23e5e6129892", + "uuid": "f5c81ba3-85e4-40e0-9b7a-f8e8799f8008", "siteRegistry": true, - "dateNoted": "2018-04-28", - "parcelID": "18012", - "crownLandUsePIN": "19302", - "crownLandFileNumber": "20962", - "landDescription": "LOT 1 OF LOT 3 BLOCK 1 DISTRICT LOT 1 PLAN 5425" + "dateNoted": "2016-04-24", + "parcelID": "18639", + "crownLandUsePIN": "17130", + "crownLandFileNumber": "17239", + "landDescription": "LOT 4 OF LOT 3 BLOCK 1 DISTRICT LOT 3 PLAN 3554" } ], "siteDisclosures": [ { - "uuid": "effe80b2-27fe-488e-a36e-89cc5a7eddee", - "siteRegistry": true, - "dateReceived": "2020-09-25", - "dateCompleted": "2021-01-15", - "dateEntered": "2020-04-06", - "dateRegistrar": "2021-07-11", - "dateLocalAuthorityReceived": "2022-04-01", - "summary": "Error provident enim.\nVero error totam esse.\nAliquam possimus commodi.", - "informationUsed": "Perferendis consequuntur ad veritatis sed cum atque quo.\nDebitis dicta soluta provident illum maxime ratione.\nDicta numquam quia nulla sequi.\nNobis quis dolore doloremque laudantium vel modi.", - "pastOrPresentOrders": "Ratione soluta modi id quisquam.", + "uuid": "818324c4-14e3-4188-8374-62d906932d8f", + "siteRegistry": false, + "dateReceived": "2020-04-25", + "dateCompleted": "2017-11-08", + "dateEntered": "2014-06-30", + "dateRegistrar": "2023-09-02", + "dateLocalAuthorityReceived": "2020-04-29", + "summary": "Tenetur dolores vel consectetur vero veritatis dolor debitis.\nNumquam id repellat officiis nostrum.\nConsectetur perferendis deserunt similique quia ad culpa velit officiis odit.", + "informationUsed": "Tempore voluptates numquam possimus.\nConsequatur officia in debitis adipisci amet.\nIste nulla pariatur repellendus repellendus.\nAnimi facilis recusandae repudiandae provident doloribus.", + "pastOrPresentOrders": "Natus voluptates voluptates aliquid recusandae placeat aspernatur.", "commercialAndIndustrialPurposes": [ { - "uuid": "be4e6977-88c8-4262-b2c2-7640080aea30", + "uuid": "b9e0626a-c5c9-4b63-93a6-619312350de2", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, { - "uuid": "13777466-30d5-4a91-ba58-4d1b8c48a64f", - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false - }, - { - "uuid": "4d5cfad3-3b94-4ba3-b576-e2a7cc6c2508", + "uuid": "3f2c9a10-37bf-4907-be35-34c6cd2818b5", "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true - } - ] - }, - { - "uuid": "7c3d98c9-5e0d-4300-a6a2-38b9b42b49de", - "siteRegistry": false, - "dateReceived": "2019-07-17", - "dateCompleted": "2014-04-30", - "dateEntered": "2016-02-25", - "dateRegistrar": "2020-12-30", - "dateLocalAuthorityReceived": "2013-10-22", - "summary": "Itaque incidunt accusamus placeat labore.\nAt incidunt a facilis dolor officia ipsam.", - "informationUsed": "Earum ex eveniet quasi quia tenetur nihil non.\nAdipisci autem saepe earum non ea distinctio voluptas at.\nPerspiciatis omnis at quibusdam blanditiis quae reiciendis alias deserunt esse.\nCum reprehenderit provident praesentium nemo odio.", - "pastOrPresentOrders": "Repudiandae aspernatur unde et nobis nobis voluptas non accusantium.\nLabore maxime fugiat nulla labore quasi libero voluptates pariatur hic.\nNeque magnam provident ipsa aspernatur aut ullam fugit nobis eligendi.", - "commercialAndIndustrialPurposes": [ - { - "uuid": "4596acd1-ddc1-434a-b99a-fe536293235a", - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false - }, - { - "uuid": "15adb8e6-2851-408e-a7b0-858d22c2dbc5", - "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false }, { - "uuid": "d65c7b89-3422-4992-9a31-d9e9603b38b7", + "uuid": "82fe7220-7d18-4f78-8a9f-7d87d8911b6e", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true + "siteRegistry": false } ] } ], "activityLog": [ { - "uuid": "dbfd5370-6314-42dd-ad85-b58677c0ee93", - "siteRegistry": true, + "uuid": "65c851b8-0475-425b-90c2-de5a4671668e", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "SCHUMM ERICH", - "timestamp": "2021-04-12" + "user": "MCKENZIE TIMMOTHY", + "timestamp": "2015-11-09" }, { - "uuid": "46082e39-aab4-4dfd-b8ad-159c9eda2a05", - "siteRegistry": true, + "uuid": "eba8e48b-c847-4181-a477-2040f512e4cd", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "BOEHM CRISTAL", - "timestamp": "2017-09-26" + "user": "ZIEME JOAQUIN", + "timestamp": "2017-05-19" }, { - "uuid": "3e66fbe1-a514-486c-869c-4e5cc33e8f1b", - "siteRegistry": true, + "uuid": "40c8bd58-e163-4312-9cec-7d4b8f49ab53", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "WINTHEISER AUDIE", - "timestamp": "2023-07-09" + "user": "FEEST VERDA", + "timestamp": "2019-06-29" }, { - "uuid": "1c026fcf-9866-4dce-8183-8099f13cf766", - "siteRegistry": false, + "uuid": "0db93653-9885-460b-9e93-023efdd70b50", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "LANGWORTH MARINA", - "timestamp": "2017-01-03" + "user": "DICKENS-SMITHAM GREG", + "timestamp": "2016-06-15" }, { - "uuid": "3af4a222-eb90-4cd9-af70-83598d9cddc3", + "uuid": "a1110ff6-0d16-432b-bd1f-1b25d8493e26", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "GREEN VICENTE", - "timestamp": "2021-05-09" + "user": "VEUM RAE", + "timestamp": "2022-09-09" }, { - "uuid": "c8e62d3d-3594-4ee8-b7c6-bca0163b6dff", + "uuid": "7cb7af5e-e72f-4021-90f2-9a14fc600048", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "JOHNSTON VAN", - "timestamp": "2023-08-10" + "user": "QUITZON GLENNA", + "timestamp": "2017-11-30" }, { - "uuid": "bb0d5fea-0ebe-424d-914d-79bb3392d7f2", - "siteRegistry": false, + "uuid": "5fb20742-53a6-4d18-87dd-26b85ac6ff82", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "ROGAHN EMILE", - "timestamp": "2014-02-25" + "user": "HOEGER LILLIAN", + "timestamp": "2023-07-26" } ], "associatedSites": [ { - "uuid": "1190feb7-e8ca-487f-9537-9afac971955b", - "dateNoted": "2021-09-03", + "uuid": "3b5aac0e-5c41-4110-91b7-e3d3d026b9e9", + "dateNoted": "2014-06-28", "notes": "", - "parcelID": "16873", - "siteID": "16419", - "siteRegistry": true - }, - { - "uuid": "35d96d02-e66c-4647-8b95-e886475751da", - "dateNoted": "2014-03-21", - "notes": "", - "parcelID": "20464", - "siteID": "15264", + "parcelID": "18785", + "siteID": "18262", "siteRegistry": true } ] }, { - "uuid": "6209dd31-6ac3-4e36-b38f-9846e2e53058", - "siteID": 17371, - "address": "860 Collier Glens", - "latitude": 58.609, - "longitude": -122.8998, - "lastUpdated": "2017-10-07", - "city": "Bellflower", - "region": "Thompson-Okanagan", - "victoriaFile": "26250-20/6723", + "uuid": "351aef0d-369b-46e8-924f-4b92e7b80119", + "siteID": 18676, + "address": "5346 Kemmer Dale", + "latitude": 52.4921, + "longitude": -133.2361, + "lastUpdated": "2014-03-18", + "city": "Bashirianview", + "region": " North Coast", + "victoriaFile": "26250-20/933", "regionalFile": "N/A", "parcelIDs": [ - 1489597, - 7844161, - 6474501, - 5720126, - 669737 + 1114526, + 8106654, + 7361364, + 808591, + 8438112 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "05e84287-6174-46e5-b1c2-2b22fd261be8", - "createdAt": "2022-12-19", - "completed": "2020-11-05", - "initiated": "2020-04-10", - "ministryContact": "BAUMBACH GREEN", + "uuid": "f7d324a6-ac61-4a2c-bb71-1537cce8a70a", + "createdAt": "2022-06-16", + "completed": "2019-12-05", + "initiated": "2015-01-25", + "ministryContact": "FISHER MAGNUS", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -69331,32 +81242,44 @@ ], "notationParticipants": [ { - "uuid": "80c49e9a-47af-49ab-8598-e33e1dd68dc5", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "uuid": "d0a65258-edb5-466a-b5b2-dfe4d7fa13f3", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "e5bacfdc-3836-420f-aa6a-7341ec030bf4", + "uuid": "3c849de2-6a07-4e1d-8fbf-8b792501d4f2", "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "uuid": "ddb3775d-3b48-48f0-87eb-4b2670b08f11", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "9ee6a9b8-33bb-4ed1-a231-1d588b52838b", - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "49fdccff-3ef1-46d0-8486-fa130c151180", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "378cb8bd-8bbf-4bc1-b040-4aa338b057de", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "f80a14d2-1c61-42f5-813b-ef007ac821f3", - "createdAt": "2022-04-17", - "completed": "2016-02-26", - "initiated": "2015-04-06", - "ministryContact": "MARKS GIOVANNI", + "uuid": "22d54845-f775-466c-884c-272fd4996943", + "createdAt": "2020-01-06", + "completed": "2022-01-15", + "initiated": "2015-07-17", + "ministryContact": "KUPHAL-MCCULLOUGH PATRICIA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -69365,22 +81288,56 @@ ], "notationParticipants": [ { - "uuid": "33cf617a-abee-48db-b07a-29e32fdbe526", + "uuid": "e633aed7-9c1e-428b-87f2-c4f2c14beed2", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "298860fe-b845-4c8f-8ba0-65a6b304d966", + "uuid": "746fad37-6edd-47d6-a221-7db2508b536c", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "uuid": "8f27084f-c6eb-4b7e-8b79-8f10112a49e4", + "createdAt": "2019-08-18", + "completed": "2014-07-23", + "initiated": "2023-04-13", + "ministryContact": "MCLAUGHLIN FIONA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "uuid": "f9966d96-ed7d-439e-8060-7ebdccc2f16a", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "2bc045eb-2a99-4381-a501-bc56aea1776a", - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "eb9139e9-688b-4974-adb0-8f65ae5f41a4", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false + }, + { + "uuid": "58fd52c0-f375-47d7-92a3-6e6a03282228", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "uuid": "745dadd6-b8e3-43d8-abce-a76956d532e2", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true } ], "siteRegistry": false @@ -69388,21 +81345,32 @@ ], "participants": [ { - "uuid": "e1dd4dde-7ae2-42bb-a9a1-2d62826a706c", - "name": "SHELL CANADA PRODUCTS", - "endDate": "2021-10-21", - "startDate": "2023-09-22", + "uuid": "2ee83fea-89e1-40ba-869f-841a3cb6b8c8", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2023-05-09", + "startDate": "2019-07-22", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "dba1eb8d-064d-4d99-baf3-73fb8f6c7557", + "uuid": "322e4fb2-b2a6-415e-b78d-b5f9eaf36534", "name": "SHELL CANADA PRODUCTS", - "endDate": "2018-10-17", - "startDate": "2019-08-12", + "endDate": "2021-06-22", + "startDate": "2020-06-18", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "uuid": "f77649da-43a9-431e-ba1b-49f69ed74afa", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2014-02-19", + "startDate": "2016-03-21", "notes": "", "roles": [ "ORGANIZATION" @@ -69410,10 +81378,10 @@ "siteRegistry": false }, { - "uuid": "c721fda7-1c23-4609-b644-630dc3236e4c", + "uuid": "1a2badcb-6ef5-4841-b7ac-4bcdbac0afc9", "name": "SHELL CANADA PRODUCTS", - "endDate": "2016-06-14", - "startDate": "2018-02-23", + "endDate": "2019-11-04", + "startDate": "2016-09-26", "notes": "", "roles": [ "EMPLOYEE" @@ -69421,10 +81389,10 @@ "siteRegistry": false }, { - "uuid": "54ed7cc1-53ac-4341-aad0-9023cb1604dd", - "name": "SHELL CANADA PRODUCTS", - "endDate": "2017-11-03", - "startDate": "2020-10-26", + "uuid": "feed0d28-b303-43c0-b4ec-6d1fee2ff83b", + "name": "IPSUM", + "endDate": "2016-01-17", + "startDate": "2018-02-06", "notes": "", "roles": [ "EMPLOYEE" @@ -69432,78 +81400,171 @@ "siteRegistry": true } ], - "suspectLandUses": [ + "documents": [ + { + "uuid": "b1d860ab-5346-4fe6-a25f-a0c872984ccf", + "siteRegistry": true, + "documentDate": "2018-01-31", + "receivedDate": "2017-07-19", + "uploadedDate": "2020-01-23", + "title": "Preliminary Site Investigation, Detailed Site Investigation and Remedial Plan for the Management Area adjacent to the Shell Site at 1503 West 41st Ave", + "participants": [ + { + "uuid": "d76648ed-625f-41ec-a5c7-ca27455217f6", + "name": "AMET, DOLOR SIT", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "b8514248-104f-480c-877e-52d6e4a1dfd2", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "ac7be8c5-76fe-4173-9e01-1f57437f5e13", + "name": "AMET, DOLOR SIT", + "siteRegistry": true, + "role": "AUTHOR" + } + ] + }, { - "uuid": "0eae5254-865c-4cff-aa38-3a6f288f8c05", + "uuid": "1a8aabba-0e51-4859-8b43-82dfec3f7e53", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-11-10 (described on Site Profile dated 2018-11-10)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "documentDate": "2018-12-11", + "receivedDate": "2015-11-26", + "uploadedDate": "2023-01-29", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "0389f89d-b565-4eac-8c0d-9b98bbc6a6f6", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": false, + "role": "AUTHOR" + } + ] }, { - "uuid": "d83f2736-b3a3-47b4-81b7-c14f30611116", + "uuid": "1baeeeaa-7a3a-4b24-840d-3ee6da55be26", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-11-04 (described on Site Profile dated 2021-11-04)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "documentDate": "2019-08-09", + "receivedDate": "2022-08-29", + "uploadedDate": "2019-04-26", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "7b227747-2808-413f-8caa-86f3e1f3b828", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "515e788e-c4aa-4fd7-9e58-f9a57e9442d8", + "name": "AMET, DOLOR SIT", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "3fa28439-3938-4d65-a8cf-93d888d3cde7", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": false, + "role": "AUTHOR" + } + ] + }, + { + "uuid": "3b34f01b-0864-48f2-ab2f-535345c571cb", + "siteRegistry": true, + "documentDate": "2017-08-21", + "receivedDate": "2014-09-25", + "uploadedDate": "2018-01-31", + "title": "Summary of Site Conditions, 1537 W 41st Avenue, Vancouver", + "participants": [ + { + "uuid": "ff1513b3-24e7-43ef-8f2e-0e3e3c7770da", + "name": "IPSUM", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "8116297a-4d82-4847-bc06-297aae7a82d1", + "name": "IPSUM", + "siteRegistry": true, + "role": "AUTHOR" + } + ] } ], - "parcelDescriptions": [ + "suspectLandUses": [ + { + "uuid": "f07b4407-977e-4061-8a3c-f0186b839d6b", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2019-06-29 (described on Site Profile dated 2019-06-29)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, { - "uuid": "a1243ea2-8c5b-4dad-9dfc-7afe9bdabfeb", + "uuid": "369448c8-9ed7-4839-8113-cffa012405f8", "siteRegistry": false, - "dateNoted": "2013-11-24", - "parcelID": "20405", - "crownLandUsePIN": "17851", - "crownLandFileNumber": "20518", - "landDescription": "LOT 2 OF LOT 1 BLOCK 3 DISTRICT LOT 3 PLAN 3917" + "notes": "INSERTED FOR SITE PROFILE DATED 2022-05-01 (described on Site Profile dated 2022-05-01)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "uuid": "01993b02-0b3b-4e10-a8dd-b4aacfa3731a", + "uuid": "ffe87e06-38e7-4b57-9f9b-fccccbb43991", "siteRegistry": false, - "dateNoted": "2020-12-07", - "parcelID": "18126", - "crownLandUsePIN": "16274", - "crownLandFileNumber": "19216", - "landDescription": "LOT 3 OF LOT 1 BLOCK 5 DISTRICT LOT 5 PLAN 9547" + "notes": "INSERTED FOR SITE PROFILE DATED 2018-03-16 (described on Site Profile dated 2018-03-16)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "uuid": "393ee775-6d5d-4b0a-b743-06b5243deb98", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2022-05-23 (described on Site Profile dated 2022-05-23)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + } + ], + "parcelDescriptions": [ + { + "uuid": "99e20fbc-17c6-41a8-a0a5-5f8d6514151c", + "siteRegistry": false, + "dateNoted": "2019-09-04", + "parcelID": "15235", + "crownLandUsePIN": "20342", + "crownLandFileNumber": "16916", + "landDescription": "LOT 4 OF LOT 3 BLOCK 5 DISTRICT LOT 1 PLAN 9332" }, { - "uuid": "7acb91ad-2439-4965-a748-2cddd1a76884", + "uuid": "7b31f4fc-9ab0-49a7-bac7-8d26b31d944a", "siteRegistry": true, - "dateNoted": "2014-09-21", - "parcelID": "20010", - "crownLandUsePIN": "20991", - "crownLandFileNumber": "17527", - "landDescription": "LOT 1 OF LOT 4 BLOCK 4 DISTRICT LOT 2 PLAN 6719" + "dateNoted": "2021-06-24", + "parcelID": "20441", + "crownLandUsePIN": "17057", + "crownLandFileNumber": "20612", + "landDescription": "LOT 4 OF LOT 2 BLOCK 5 DISTRICT LOT 3 PLAN 3176" } ], "siteDisclosures": [ { - "uuid": "2ceeddb8-6a64-4053-9362-122338be94f0", + "uuid": "2cdaf79f-c4b9-4ea4-98fb-73acd68c4ea5", "siteRegistry": false, - "dateReceived": "2020-12-18", - "dateCompleted": "2014-08-06", - "dateEntered": "2016-05-20", - "dateRegistrar": "2023-04-22", - "dateLocalAuthorityReceived": "2016-09-02", - "summary": "Deserunt quisquam facilis deleniti tempora unde officia dicta.\nNam odit sint nemo minus distinctio commodi impedit asperiores repudiandae.", - "informationUsed": "Eveniet aperiam blanditiis ducimus accusantium.\nMaxime autem asperiores hic consequatur consequatur libero illum.\nAlias quidem iste magnam.\nQuae voluptatibus reiciendis culpa odio fuga magnam fuga.", - "pastOrPresentOrders": "Et numquam maiores similique sed est laudantium accusamus fugit.\nNam alias debitis.\nArchitecto vero animi ex perferendis a.", + "dateReceived": "2014-02-20", + "dateCompleted": "2020-09-09", + "dateEntered": "2021-11-02", + "dateRegistrar": "2015-12-03", + "dateLocalAuthorityReceived": "2015-12-17", + "summary": "Quaerat quibusdam sed rem iusto soluta nesciunt eaque.\nVoluptate minus veniam exercitationem culpa.\nRerum deserunt dolorem molestias accusamus placeat doloribus aspernatur.", + "informationUsed": "Saepe perspiciatis modi veritatis officia modi pariatur.\nEnim repellat ipsum iure vero.\nEx a amet repellat incidunt expedita.\nBeatae perspiciatis officiis consectetur.", + "pastOrPresentOrders": "Sit sunt consequuntur voluptatum iure tempore autem.\nOdio dolores repellat veritatis corrupti reiciendis.", "commercialAndIndustrialPurposes": [ { - "uuid": "f907b4c4-0edb-4cb1-aa97-2c35fa784a1c", + "uuid": "32247d05-596b-4d81-8866-5b0aef87734b", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "0c4cf3fc-691b-4e81-992d-b5e079e187d9", + "uuid": "02a0f218-3774-4333-b9dd-36c61837dd20", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true - }, - { - "uuid": "cc02019d-c89e-40a7-84c1-5812ce4f7718", - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false } ] @@ -69511,153 +81572,141 @@ ], "activityLog": [ { - "uuid": "8c9159d5-16e0-45b3-9fbd-f6dc1926a019", + "uuid": "23b3fd11-b4b5-49c3-bfe4-a52c73e29237", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "LIND VELVA", - "timestamp": "2020-08-28" + "user": "ZIEMANN SAMMY", + "timestamp": "2014-06-25" }, { - "uuid": "42d45c82-5590-4528-8fa2-255d577fa064", - "siteRegistry": true, + "uuid": "897bc7df-e7c7-4994-9aca-569084352564", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "VEUM DUDLEY", - "timestamp": "2016-02-15" + "user": "EFFERTZ ALBERT", + "timestamp": "2015-05-17" }, { - "uuid": "3d81cb63-594b-4f76-ae3a-f52a46cbd1b9", - "siteRegistry": true, + "uuid": "cdca8c6b-524e-4cd8-afa1-33717ece572c", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "BARTOLETTI-KUNZE ERWIN", + "timestamp": "2018-05-13" + }, + { + "uuid": "30deedc2-93b3-448f-82b4-e569143b56a9", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "HUDSON ORLO", - "timestamp": "2020-08-30" + "user": "HUDSON JOANA", + "timestamp": "2014-12-31" }, { - "uuid": "b83a8798-9d10-4d5e-baaa-55187a2669e0", + "uuid": "7c6b02a6-45ba-4003-81d3-a47a162c2a9e", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "TORP JAVIER", - "timestamp": "2018-12-29" + "user": "RUNOLFSSON ANTONIO", + "timestamp": "2023-03-18" }, { - "uuid": "c39f7b53-80a8-4bfd-9444-15b64886a7f2", - "siteRegistry": true, + "uuid": "b8d30c61-4f78-49bd-bd19-09f538f45d90", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "EMARD DEMOND", - "timestamp": "2020-08-16" + "user": "WILL-BERNIER BRANDO", + "timestamp": "2023-07-19" }, { - "uuid": "8e5e4c31-67e1-45a7-a431-b3c87a2050ee", + "uuid": "cd136f43-f1fe-4e29-af7c-d257f5135cc5", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "OSINSKI CAROL", - "timestamp": "2021-12-14" + "user": "BARTON GERARD", + "timestamp": "2021-03-18" + }, + { + "uuid": "97d71d0b-3229-4e58-84aa-ee942d0787e6", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "MORISSETTE DELORES", + "timestamp": "2021-07-28" } ], "associatedSites": [ { - "uuid": "25a4f186-4660-4cdb-97d2-608fe4642546", - "dateNoted": "2019-07-02", + "uuid": "7f4163e1-ed3b-4f6c-9b38-26843ce46931", + "dateNoted": "2020-08-05", "notes": "", - "parcelID": "17206", - "siteID": "17116", - "siteRegistry": true + "parcelID": "20667", + "siteID": "18904", + "siteRegistry": false + }, + { + "uuid": "c9fc3dc8-60bb-41fd-baac-32d88185bf43", + "dateNoted": "2021-08-01", + "notes": "", + "parcelID": "20486", + "siteID": "15472", + "siteRegistry": false } ] }, { - "uuid": "f324e60a-e203-412b-9e64-b8e62ea3d1f5", - "siteID": 16133, - "address": "78635 Hayley Ports", - "latitude": 48.3249, - "longitude": -118.3766, - "lastUpdated": "2015-09-04", - "city": "New Ruthefield", - "region": "Mainland/Southwest", - "victoriaFile": "26250-20/17706", + "uuid": "0d608e07-dd8e-4a53-8e57-9fb680ed2715", + "siteID": 20224, + "address": "901 Witting Turnpike", + "latitude": 54.0432, + "longitude": -121.7892, + "lastUpdated": "2018-10-29", + "city": "Bentonville", + "region": "Kootenay", + "victoriaFile": "26250-20/2033", "regionalFile": "N/A", "parcelIDs": [ - 7621650, - 6139129, - 1065115, - 4092482, - 8285825 + 1199800, + 7052240, + 6769867, + 1086418, + 1009806 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "uuid": "bb9e99b9-32e1-4ef5-ab35-41fb65318139", - "createdAt": "2014-12-19", - "completed": "2017-05-09", - "initiated": "2019-06-20", - "ministryContact": "GULGOWSKI IMOGENE", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "uuid": "ab78693a-2578-46fc-b293-a4dc0c6007fe", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "uuid": "c323f4b9-b3b1-4768-bbd1-d09722b9807a", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - } - ], - "siteRegistry": true - }, - { - "uuid": "fba527b3-0274-4504-910f-c85ea3c6cde4", - "createdAt": "2016-04-06", - "completed": "2020-10-06", - "initiated": "2016-02-20", - "ministryContact": "COLLIER RAINA", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "uuid": "db1f880a-5835-426f-a5ae-914255222e32", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "uuid": "2bba07af-312f-4eb6-8348-db1b5e589212", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, + "notations": [ + { + "uuid": "ead3b13b-9dfa-4d70-af9e-49904c3bef2b", + "createdAt": "2015-12-30", + "completed": "2015-11-14", + "initiated": "2014-08-01", + "ministryContact": "COLLINS ANSEL", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ { - "uuid": "00605120-5535-4195-8486-dd9e8e5dfc04", + "uuid": "581a3c7f-f1bf-4204-9eaf-50d393baf5c9", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "5ba5b8ff-6fb8-4c30-908f-ff2b2c150ab2", - "name": "SHELL CANADA PRODUCTS", + "uuid": "0e0c6ce0-65b7-477b-a544-b648bdd46a21", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true + }, + { + "uuid": "90d2b79b-8cac-47eb-aea9-30238768c662", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false } ], "siteRegistry": true }, { - "uuid": "ba2643ab-75ea-4e62-93af-9da387bffddf", - "createdAt": "2020-05-09", - "completed": "2015-12-14", - "initiated": "2017-03-18", - "ministryContact": "CROOKS CESAR", + "uuid": "5978a27b-ab1c-4b49-808a-a2d20af770e6", + "createdAt": "2020-04-26", + "completed": "2017-11-24", + "initiated": "2014-07-07", + "ministryContact": "WAELCHI JOSIAH", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -69666,26 +81715,26 @@ ], "notationParticipants": [ { - "uuid": "76799ee9-7aef-47e4-8deb-20dc29c64f30", + "uuid": "fe2bf10c-b9fa-46ae-84a8-912468d13993", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "965a53b7-cd8f-4d3c-abce-a41eea82ab17", + "uuid": "b0076792-bb97-40f6-8409-d93255dd30e1", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "372fa3ae-51da-46f4-be43-11109289378c", - "createdAt": "2019-07-21", - "completed": "2023-10-07", - "initiated": "2016-11-07", - "ministryContact": "HEATHCOTE OLIVER", + "uuid": "24442d4e-aa76-4a72-a2b1-5683fa764133", + "createdAt": "2014-08-08", + "completed": "2015-02-02", + "initiated": "2016-12-22", + "ministryContact": "BREITENBERG CYRUS", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -69694,79 +81743,45 @@ ], "notationParticipants": [ { - "uuid": "0c836c42-3f6b-49c7-871c-1f7f61108fba", + "uuid": "7e42a8fb-974a-4ea4-ba6f-8e1f5992e304", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "d4dae8d5-2500-4bd4-a32c-7ca90bd54ace", + "uuid": "2efe68d8-3359-4f23-8e16-a5f9fb8e088d", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "56a40a98-5579-4bec-b154-db9f04d0f214", + "uuid": "7815e166-a226-400c-ac78-8f37a7923c3e", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false - } - ], - "siteRegistry": false - }, - { - "uuid": "5c81d1cc-bbb4-4434-803d-c2fadc64c24b", - "createdAt": "2023-09-29", - "completed": "2019-05-05", - "initiated": "2021-01-19", - "ministryContact": "MARVIN LUZ", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "uuid": "57b4c560-0ff0-4ace-8463-1c17c3e79b68", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "9dd175aa-2741-464a-b4c5-89b6308b7858", + "uuid": "b0d3f7c8-c489-4891-b92f-4bfda30bcd4a", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "cf666d46-89d2-4dcc-8ea4-859040547664", + "uuid": "21118b55-cd3e-4585-8020-7d250cf7daa0", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false - }, - { - "uuid": "5384c147-8be9-4c85-9c7d-054039cf8fe8", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "uuid": "fd52b249-5516-47d7-86c9-e190fcf45b9c", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true } ], "participants": [ { - "uuid": "27a76c63-42ff-46fc-bdc5-997ec65bf60a", - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2019-02-16", - "startDate": "2022-07-17", + "uuid": "cc0dd832-dbde-451f-847f-7b07ffc321cf", + "name": "AMET, DOLOR SIT", + "endDate": "2019-01-29", + "startDate": "2018-12-15", "notes": "", "roles": [ "EMPLOYEE" @@ -69774,127 +81789,172 @@ "siteRegistry": false }, { - "uuid": "b4da1172-0c28-4d33-addb-6a861ea12370", - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2016-08-22", - "startDate": "2019-09-28", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": true - }, - { - "uuid": "08568c6f-83be-4d91-854f-dd56b6e24f56", - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2014-02-23", - "startDate": "2015-02-16", + "uuid": "c5f52dc2-29b0-4610-b87a-fcd5bc6ee859", + "name": "AMET, DOLOR SIT", + "endDate": "2019-11-09", + "startDate": "2015-09-17", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": true }, { - "uuid": "a08a6f10-2499-4fc7-a6c5-a51bb58ed207", + "uuid": "6b7b4e4c-c49c-4b65-8038-b52b795d2e83", "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2022-03-12", - "startDate": "2017-09-27", + "endDate": "2020-10-27", + "startDate": "2021-09-07", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": false + } + ], + "documents": [ + { + "uuid": "ca50890e-5a4e-4db2-8471-0812714a0bee", + "siteRegistry": true, + "documentDate": "2021-05-17", + "receivedDate": "2023-05-01", + "uploadedDate": "2018-01-18", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "5de54103-320b-452a-ba1c-e9e2b66307b6", + "name": "AMET, DOLOR SIT", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "0faec00c-1490-48a5-8759-09ed6ed6ed5f", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "407c75c8-9d83-48b9-9ce2-19580faf7ca0", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": true, + "role": "AUTHOR" + } + ] }, { - "uuid": "900cb601-db3d-4cc0-abdf-36dea794f294", - "name": "IPSUM", - "endDate": "2021-02-24", - "startDate": "2021-03-26", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": true + "uuid": "8e95c912-638d-4ccf-a959-0623dfbbaec8", + "siteRegistry": false, + "documentDate": "2019-11-25", + "receivedDate": "2015-12-20", + "uploadedDate": "2013-12-10", + "title": "Preliminary Site Investigation, Detailed Site Investigation and Remedial Plan for the Management Area adjacent to the Shell Site at 1503 West 41st Ave", + "participants": [ + { + "uuid": "a1443262-d699-4e71-9cac-70258c320a3d", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "666391bd-807c-4066-9409-41e7604ff566", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": true, + "role": "AUTHOR" + } + ] } ], "suspectLandUses": [ { - "uuid": "316a262f-e73a-49df-9bb7-3c56ae2a943c", - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-02-22 (described on Site Profile dated 2022-02-22)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "uuid": "255f06cd-129e-4c4d-956c-8f60ffa8834b", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2017-06-25 (described on Site Profile dated 2017-06-25)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "uuid": "ced6280f-0b0a-4ef5-bca0-3acf5833448b", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2019-02-11 (described on Site Profile dated 2019-02-11)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "uuid": "23bc2949-8e0a-434b-9580-50d7c526d4b5", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2016-05-12 (described on Site Profile dated 2016-05-12)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "uuid": "2e0fa9e2-4db4-4915-867a-15eff6d0199b", + "uuid": "39f8ad53-7d0a-4e65-b5e0-1f93687ec4ee", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-07-27 (described on Site Profile dated 2019-07-27)", + "notes": "INSERTED FOR SITE PROFILE DATED 2020-09-19 (described on Site Profile dated 2020-09-19)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], "parcelDescriptions": [ { - "uuid": "a0b63283-2169-43e4-b233-0038f4bf4cd2", - "siteRegistry": false, - "dateNoted": "2021-11-05", - "parcelID": "16467", - "crownLandUsePIN": "15568", - "crownLandFileNumber": "15574", - "landDescription": "LOT 2 OF LOT 5 BLOCK 5 DISTRICT LOT 4 PLAN 4123" + "uuid": "4429a89e-22c8-4a11-b957-b70ae4a3fc33", + "siteRegistry": true, + "dateNoted": "2018-10-23", + "parcelID": "19216", + "crownLandUsePIN": "15490", + "crownLandFileNumber": "18799", + "landDescription": "LOT 5 OF LOT 5 BLOCK 1 DISTRICT LOT 4 PLAN 3544" }, { - "uuid": "56c08752-b8e1-4500-b6e6-c763a5d5e3e7", + "uuid": "d4eb34c6-e51b-4f6f-9d17-f8efb29b776b", "siteRegistry": true, - "dateNoted": "2018-06-11", - "parcelID": "18889", - "crownLandUsePIN": "17599", - "crownLandFileNumber": "15552", - "landDescription": "LOT 4 OF LOT 4 BLOCK 3 DISTRICT LOT 1 PLAN 3948" + "dateNoted": "2013-11-08", + "parcelID": "18954", + "crownLandUsePIN": "17768", + "crownLandFileNumber": "20644", + "landDescription": "LOT 5 OF LOT 3 BLOCK 1 DISTRICT LOT 1 PLAN 8947" + }, + { + "uuid": "fd948c51-188b-4286-8cb5-bfa5c2ed1f10", + "siteRegistry": true, + "dateNoted": "2021-07-30", + "parcelID": "20568", + "crownLandUsePIN": "17681", + "crownLandFileNumber": "16020", + "landDescription": "LOT 3 OF LOT 4 BLOCK 1 DISTRICT LOT 2 PLAN 3146" }, { - "uuid": "4b5ed488-fbbe-4006-bdab-28938e5e978b", + "uuid": "0543ff57-9116-4e7c-b566-0687a305b718", "siteRegistry": false, - "dateNoted": "2017-08-16", - "parcelID": "18866", - "crownLandUsePIN": "20599", - "crownLandFileNumber": "16322", - "landDescription": "LOT 4 OF LOT 4 BLOCK 4 DISTRICT LOT 5 PLAN 7920" + "dateNoted": "2022-11-24", + "parcelID": "18628", + "crownLandUsePIN": "20069", + "crownLandFileNumber": "18000", + "landDescription": "LOT 5 OF LOT 1 BLOCK 2 DISTRICT LOT 4 PLAN 8746" } ], "siteDisclosures": [ { - "uuid": "d1182183-2b84-4be0-bf47-1a37278babc1", - "siteRegistry": true, - "dateReceived": "2017-05-27", - "dateCompleted": "2014-05-29", - "dateEntered": "2016-08-15", - "dateRegistrar": "2017-07-22", - "dateLocalAuthorityReceived": "2016-05-02", - "summary": "Adipisci illum asperiores blanditiis voluptatum enim dolorum nobis iste.\nTempore officia eaque voluptatem ipsum.\nA incidunt adipisci consequatur animi omnis dolor.", - "informationUsed": "Quia incidunt eius alias voluptas quidem ipsa eius illum.\nPraesentium sit quisquam necessitatibus.\nAut dolorem eveniet atque praesentium ratione accusantium.", - "pastOrPresentOrders": "Perspiciatis voluptatibus ad ad perspiciatis.\nAperiam eligendi nobis ullam qui consequuntur soluta ea vero.", + "uuid": "31a89b99-3174-4a01-94ee-0b3a65a55843", + "siteRegistry": false, + "dateReceived": "2019-03-15", + "dateCompleted": "2020-11-23", + "dateEntered": "2019-01-29", + "dateRegistrar": "2018-06-21", + "dateLocalAuthorityReceived": "2014-04-13", + "summary": "Quo cum nemo explicabo perspiciatis aperiam.\nVel optio perspiciatis quasi quas consectetur.", + "informationUsed": "Id dolorum assumenda ea error quod sapiente eum.\nQuo veritatis animi perspiciatis quam placeat ea impedit.\nQuam harum ad nihil nam vero nobis reiciendis quam.\nConsequatur fugit quasi quam odio nobis sint tenetur dolorum.", + "pastOrPresentOrders": "Consequatur quibusdam fugiat itaque esse exercitationem ex minima incidunt.\nIste optio voluptatem at.\nCorrupti eaque animi dicta ducimus.", "commercialAndIndustrialPurposes": [ { - "uuid": "f1e5691c-6933-4b2b-adf1-15630038ee8e", - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true - }, - { - "uuid": "26735733-1b28-4fcb-a381-775aad62e66b", + "uuid": "110c6ee0-be54-421d-8e24-f0ba8b6f130f", "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { - "uuid": "3bf1d0fc-5669-4cde-860f-07b6cf54c218", - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false + "uuid": "40950233-ba66-41be-bd0d-8efb76d85a87", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true }, { - "uuid": "7176e302-63c2-43dd-a1c1-03f08e392e8b", - "scheduleReference": "F1*", + "uuid": "96a89bc3-3929-4fff-bb2d-fd761214fbd8", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false } @@ -69903,101 +81963,129 @@ ], "activityLog": [ { - "uuid": "bf586e2b-0350-4df7-a400-1a705424a336", - "siteRegistry": false, + "uuid": "c27f6242-7c4d-4529-865d-a1d018c047d0", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "KILBACK HAZLE", - "timestamp": "2019-05-09" + "user": "DOYLE TREY", + "timestamp": "2023-03-26" }, { - "uuid": "58abbe8f-6339-4c07-ae1c-9a8654a5b64c", + "uuid": "012b0776-a626-47b9-a599-bede79581ece", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "MACGYVER MALVINA", - "timestamp": "2018-09-07" + "user": "WILLMS ZORA", + "timestamp": "2022-07-26" + }, + { + "uuid": "05c8f946-e394-4f3f-85cd-f3526de7cd89", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "TOWNE-BLANDA REVA", + "timestamp": "2016-06-13" }, { - "uuid": "55f6503b-9c86-461f-8503-494006829cc7", - "siteRegistry": false, + "uuid": "02b630e0-ea62-470c-8efe-28626437bb7f", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "JACOBI HOYT", - "timestamp": "2022-05-18" + "user": "HERMANN DELPHIA", + "timestamp": "2016-02-25" }, { - "uuid": "9ef98a85-7818-4fe2-9406-77573fe90d57", - "siteRegistry": false, + "uuid": "e1495cea-2ee3-469c-a50c-feb0a29098d5", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "GIBSON MARVIN", - "timestamp": "2020-04-11" + "user": "BEATTY ANDRE", + "timestamp": "2017-03-09" }, { - "uuid": "78d07370-acff-44c2-8ce7-f0b070d1d7bd", + "uuid": "9ae39e7e-0971-4206-9aea-28c5939ba3e0", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "MULLER LUNA", - "timestamp": "2016-07-05" + "user": "REILLY BURLEY", + "timestamp": "2018-05-30" + }, + { + "uuid": "908d6474-9313-40a9-a52c-42b3c448ea91", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "SENGER BARON", + "timestamp": "2021-01-29" + }, + { + "uuid": "151ddfe5-3a67-4664-82f3-a3f74610bf8a", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "TOWNE NOAH", + "timestamp": "2016-03-15" }, { - "uuid": "aa5a8cc8-7f9f-4abf-b930-69a0b51703c1", + "uuid": "e008e297-699d-4d8a-a008-d9b825a09aa5", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "KOZEY RALEIGH", - "timestamp": "2015-10-03" + "user": "TURNER-BINS VERDA", + "timestamp": "2017-01-04" + }, + { + "uuid": "4a090038-2816-4191-ac64-790bc8f38786", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "WHITE GRETCHEN", + "timestamp": "2014-01-07" } ], "associatedSites": [ { - "uuid": "50d3fcd3-96b0-4d42-bc1c-b0a3d0445cf3", - "dateNoted": "2015-10-26", + "uuid": "ae64a501-3531-4338-b8f0-f6a48f7ea13e", + "dateNoted": "2015-03-09", "notes": "", - "parcelID": "19947", - "siteID": "17082", - "siteRegistry": true + "parcelID": "20008", + "siteID": "19640", + "siteRegistry": false }, { - "uuid": "da929064-26a8-4242-9894-4eb05f5386e9", - "dateNoted": "2023-07-01", + "uuid": "cfdb01f6-9e08-4e01-ab69-67109c8966bd", + "dateNoted": "2019-10-21", "notes": "", - "parcelID": "20137", - "siteID": "18349", - "siteRegistry": false + "parcelID": "19270", + "siteID": "20786", + "siteRegistry": true }, { - "uuid": "ba3beae4-82c9-4d98-967d-22ab4df790fe", - "dateNoted": "2016-01-25", + "uuid": "ed4a5fc2-a598-4df9-b020-fc21c54e0564", + "dateNoted": "2020-05-12", "notes": "", - "parcelID": "19338", - "siteID": "18040", + "parcelID": "18006", + "siteID": "19460", "siteRegistry": true } ] }, { - "uuid": "cd1d9ba5-f477-4e5e-92fa-d00bf47b826e", - "siteID": 20314, - "address": "3959 Hegmann Lakes", - "latitude": 48.9038, - "longitude": -127.1134, - "lastUpdated": "2018-09-14", - "city": "Visalia", - "region": "Kootenay", - "victoriaFile": "26250-20/11428", + "uuid": "023d5b1c-4677-4910-b638-a6378091a5c8", + "siteID": 17686, + "address": "42381 Jerde Circles", + "latitude": 49.1384, + "longitude": -131.5558, + "lastUpdated": "2018-01-16", + "city": "Lake Pansybury", + "region": "Mainland/Southwest", + "victoriaFile": "26250-20/15129", "regionalFile": "N/A", "parcelIDs": [ - 9400952, - 7742189, - 2141511, - 2931941, - 5098462 + 1275517, + 9598657, + 8900137, + 9872721, + 9551603 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "f9c4ad44-f8fc-450d-a100-c46b0b28741f", - "createdAt": "2019-02-10", - "completed": "2023-09-06", - "initiated": "2017-09-22", - "ministryContact": "GIBSON JACKSON", + "uuid": "dd4bd337-22e8-4585-9e21-a4e3927fbf30", + "createdAt": "2019-02-23", + "completed": "2015-09-19", + "initiated": "2016-08-30", + "ministryContact": "DUBUQUE MARC", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -70006,44 +82094,94 @@ ], "notationParticipants": [ { - "uuid": "410ee2a4-02c6-4c9d-8532-7351cae7922a", + "uuid": "a23818a5-2a5e-4396-a76e-d1cecc24e1e9", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "a5e510d7-7ba3-480b-9b8b-f7357e21ec3c", + "uuid": "3d2c9ac4-263c-4169-86a5-cacfccdeaa07", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true + "role": "SUBMITTED BY", + "siteRegistry": false }, { - "uuid": "afedcbcb-0f23-4721-bcda-1b5a0e6c1a9b", + "uuid": "e8b1ae5e-7eb2-4e7f-978f-2036573b62e0", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false - }, + } + ], + "siteRegistry": true + }, + { + "uuid": "86df61bb-1f34-42f5-9fc2-b81d8c5aa5af", + "createdAt": "2022-11-19", + "completed": "2018-12-23", + "initiated": "2021-11-04", + "ministryContact": "SWIFT MERLIN", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ { - "uuid": "14fe021a-adff-4223-b495-915b68d60820", + "uuid": "d8bd15f1-c185-41f4-85b1-9ff31c5e1d0f", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "uuid": "f87b9157-1696-42ce-97fc-b37c76fbab03", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "uuid": "b0e7de39-8e32-4c14-84e3-07806513bc97", + "createdAt": "2019-02-16", + "completed": "2021-10-11", + "initiated": "2016-01-20", + "ministryContact": "ROMAGUERA CECILE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "uuid": "1a6c281d-a4c6-43a3-887d-cce6b1ac13dc", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": true }, { - "uuid": "72688aeb-5d26-4c71-a6e9-de62e5801157", + "uuid": "7afcb64f-03e4-4133-b846-12cf11a0dd68", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true + }, + { + "uuid": "7258b78c-3e05-45c6-a1ad-a24aac929a94", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true } ], "siteRegistry": true }, { - "uuid": "c6dca5ec-af92-47eb-b9ae-fc021fbfd5f5", - "createdAt": "2023-09-26", - "completed": "2014-02-10", - "initiated": "2022-08-02", - "ministryContact": "GOTTLIEB SAUL", + "uuid": "e2ed1352-fe02-4e4f-a508-4b3b186c78d8", + "createdAt": "2014-09-27", + "completed": "2017-04-02", + "initiated": "2018-02-07", + "ministryContact": "MOEN JORDAN", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -70052,55 +82190,118 @@ ], "notationParticipants": [ { - "uuid": "4d1036ab-4045-4a42-bf90-7a8d92d1392c", + "uuid": "8cfbf28c-af5f-4904-95e5-47afa38dc11e", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "uuid": "a8c7bfdf-a12d-4ad6-8b6c-b1061514213e", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false }, { - "uuid": "6d549a19-f033-488c-be60-6cb03c173fe5", + "uuid": "4dc27d93-0cb3-4584-8b05-dba2447bea87", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "a5cd7e5c-fa97-4c95-94db-ab71270c063f", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "uuid": "2dda9eb5-509b-407d-bcab-bab9e0e85fb9", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": false } ], "siteRegistry": false + }, + { + "uuid": "dc44715d-13d3-4b3f-a5cf-3678cd95fbc1", + "createdAt": "2014-02-24", + "completed": "2020-01-30", + "initiated": "2014-08-30", + "ministryContact": "OSINSKI MCKENNA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "uuid": "aefc850f-8704-4eac-b8fc-0251d13549ca", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "uuid": "b4db7cd5-38f2-43ed-a212-4a24173f76b6", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "uuid": "bc03a617-e546-4a28-a0a0-e4ce25ee45e8", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "uuid": "44a17812-f806-4ba6-b796-458b33cf5128", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "uuid": "d4f9362a-40ab-47fe-8aff-76aec3c8efb4", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true } ], "participants": [ { - "uuid": "2b214204-de14-4657-a185-177bf3982745", - "name": "AMET, DOLOR SIT", - "endDate": "2016-10-02", - "startDate": "2020-06-02", + "uuid": "d5a70604-3830-4912-b01c-14e07c0d9630", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2015-01-14", + "startDate": "2019-06-06", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "dc40014a-88f3-48d6-b070-a77b36d7b870", + "uuid": "b79df7c6-312f-47c6-acca-a1a04795f343", "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2023-03-25", - "startDate": "2022-01-21", + "endDate": "2022-08-11", + "startDate": "2023-05-09", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "93bc6065-836a-4dc9-97fc-9d3123e2bc34", - "name": "IPSUM", - "endDate": "2021-04-14", - "startDate": "2019-11-28", + "uuid": "3a107998-bde8-40c2-bcba-754d3db74b42", + "name": "AMET, DOLOR SIT", + "endDate": "2015-05-03", + "startDate": "2022-07-12", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "uuid": "87935ec0-5509-4c68-a99e-cc6d69741ac8", + "name": "AMET, DOLOR SIT", + "endDate": "2021-06-17", + "startDate": "2019-01-23", "notes": "", "roles": [ "EMPLOYEE" @@ -70108,212 +82309,322 @@ "siteRegistry": false } ], - "suspectLandUses": [ + "documents": [ { - "uuid": "647ba11f-0d94-4baf-99b2-cf7faffa38d4", + "uuid": "d6a98514-e80f-4e4f-916a-040deaaca79c", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-02-05 (described on Site Profile dated 2015-02-05)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "documentDate": "2022-03-12", + "receivedDate": "2021-08-20", + "uploadedDate": "2022-02-12", + "title": "Summary of Site Conditions, 1537 W 41st Avenue, Vancouver", + "participants": [ + { + "uuid": "acce8e5d-a06a-40d6-87f2-98979714b830", + "name": "AMET, DOLOR SIT", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "2c5fd124-6ff5-414a-85f6-e3cd19520541", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": false, + "role": "AUTHOR" + } + ] }, { - "uuid": "0794ec51-4902-49a9-9096-ef006eda49ec", - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-04-04 (described on Site Profile dated 2015-04-04)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "uuid": "908df5d9-61b9-4223-a30b-77fdbb70c837", + "siteRegistry": false, + "documentDate": "2014-08-20", + "receivedDate": "2014-04-18", + "uploadedDate": "2018-05-18", + "title": "Summary of Site Conditions, 1537 W 41st Avenue, Vancouver", + "participants": [ + { + "uuid": "b54b5886-7827-462e-894d-bf3c94c8089b", + "name": "IPSUM", + "siteRegistry": true, + "role": "AUTHOR" + } + ] }, { - "uuid": "2389fd0c-d678-438b-9fd5-b38281b72b08", + "uuid": "960b881e-9c50-4459-b3ec-c16459655c9f", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-01-04 (described on Site Profile dated 2022-01-04)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "documentDate": "2019-10-03", + "receivedDate": "2016-10-15", + "uploadedDate": "2019-10-22", + "title": "Summary of Site Conditions, 1537 W 41st Avenue, Vancouver", + "participants": [ + { + "uuid": "597985e2-6146-4f23-9c70-6b29e54cb809", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "87356abe-f8e4-4c3e-8413-5dea8309a1e0", + "name": "AMET, DOLOR SIT", + "siteRegistry": false, + "role": "AUTHOR" + } + ] }, { - "uuid": "bcfef91b-7ec5-4608-b09c-5202a5d06da0", + "uuid": "a64038fc-9ed2-41c0-b7bf-406bcb82b125", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-02-22 (described on Site Profile dated 2014-02-22)", + "documentDate": "2018-01-16", + "receivedDate": "2019-04-17", + "uploadedDate": "2013-12-25", + "title": "Preliminary Site Investigation, Detailed Site Investigation and Remedial Plan for the Management Area adjacent to the Shell Site at 1503 West 41st Ave", + "participants": [ + { + "uuid": "e1537df9-2cea-4f3b-9799-f366ce5951c9", + "name": "IPSUM", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "91c7432a-93da-4796-b27e-9b2937d5140b", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "ff1fbc4c-4aff-42bb-87d8-d62970f3d40b", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": false, + "role": "AUTHOR" + } + ] + }, + { + "uuid": "10b67ee7-367e-4a7a-b3f6-11638fffee2c", + "siteRegistry": false, + "documentDate": "2022-08-05", + "receivedDate": "2017-08-03", + "uploadedDate": "2021-11-13", + "title": "Summary of Site Conditions, 1537 W 41st Avenue, Vancouver", + "participants": [ + { + "uuid": "37ef7f56-b90f-45b6-a35f-f6ce50ace816", + "name": "IPSUM", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "a796aab5-3fec-4089-aa18-65100be46072", + "name": "AMET, DOLOR SIT", + "siteRegistry": false, + "role": "AUTHOR" + } + ] + } + ], + "suspectLandUses": [ + { + "uuid": "9597dee0-6f91-46e9-9eda-d48159a70a04", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2023-10-01 (described on Site Profile dated 2023-10-01)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "uuid": "14bdb36f-ecc8-4a54-92be-387ad63c8f5a", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2022-06-11 (described on Site Profile dated 2022-06-11)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], "parcelDescriptions": [ { - "uuid": "f950bb30-8704-4315-89fb-43f264f88f73", + "uuid": "c396abc7-f59f-4f77-84ca-eb87eab09fc5", "siteRegistry": false, - "dateNoted": "2017-11-04", - "parcelID": "20811", - "crownLandUsePIN": "16916", - "crownLandFileNumber": "17171", - "landDescription": "LOT 1 OF LOT 5 BLOCK 5 DISTRICT LOT 1 PLAN 8126" + "dateNoted": "2014-10-31", + "parcelID": "19130", + "crownLandUsePIN": "15339", + "crownLandFileNumber": "19842", + "landDescription": "LOT 5 OF LOT 5 BLOCK 2 DISTRICT LOT 2 PLAN 4926" }, { - "uuid": "73769196-e92f-4cec-96ca-373e81016ed6", - "siteRegistry": true, - "dateNoted": "2021-07-27", - "parcelID": "20206", - "crownLandUsePIN": "15898", - "crownLandFileNumber": "15716", - "landDescription": "LOT 4 OF LOT 1 BLOCK 1 DISTRICT LOT 4 PLAN 3211" + "uuid": "2dc0ba72-2f97-4429-90b6-df4ed7d89c0f", + "siteRegistry": false, + "dateNoted": "2023-03-07", + "parcelID": "19653", + "crownLandUsePIN": "19726", + "crownLandFileNumber": "20993", + "landDescription": "LOT 2 OF LOT 4 BLOCK 4 DISTRICT LOT 3 PLAN 8532" }, { - "uuid": "77dd003e-9327-4d81-973a-47052d660111", + "uuid": "cd2f4078-6c60-4dae-8098-564dbf44cad0", "siteRegistry": true, - "dateNoted": "2021-07-26", - "parcelID": "20620", - "crownLandUsePIN": "15558", - "crownLandFileNumber": "17667", - "landDescription": "LOT 1 OF LOT 2 BLOCK 4 DISTRICT LOT 4 PLAN 4504" + "dateNoted": "2019-11-20", + "parcelID": "18238", + "crownLandUsePIN": "19978", + "crownLandFileNumber": "20383", + "landDescription": "LOT 2 OF LOT 5 BLOCK 2 DISTRICT LOT 4 PLAN 6529" }, { - "uuid": "0600de41-f671-4710-8d14-4620e4711312", - "siteRegistry": false, - "dateNoted": "2019-04-03", - "parcelID": "17262", - "crownLandUsePIN": "17183", - "crownLandFileNumber": "17552", - "landDescription": "LOT 1 OF LOT 1 BLOCK 1 DISTRICT LOT 4 PLAN 7014" + "uuid": "e7ce5138-3178-4355-829e-add8cedbe036", + "siteRegistry": true, + "dateNoted": "2017-01-22", + "parcelID": "20454", + "crownLandUsePIN": "20943", + "crownLandFileNumber": "15254", + "landDescription": "LOT 2 OF LOT 5 BLOCK 2 DISTRICT LOT 2 PLAN 9125" } ], "siteDisclosures": [ { - "uuid": "ee112ef8-e6ee-401e-8888-5ff4ccf071b9", + "uuid": "ef6aa1ae-443a-44dd-8068-cccc79fd98e4", "siteRegistry": true, - "dateReceived": "2016-07-06", - "dateCompleted": "2014-02-03", - "dateEntered": "2016-06-02", - "dateRegistrar": "2020-12-27", - "dateLocalAuthorityReceived": "2018-08-27", - "summary": "Qui nam occaecati quaerat quia sint labore.\nLaborum asperiores fugit.\nQuasi praesentium quos blanditiis officia labore neque blanditiis.", - "informationUsed": "Inventore sequi quasi consectetur.\nExercitationem optio modi asperiores reprehenderit cum incidunt vero veritatis.\nEligendi illo magni perspiciatis laboriosam nulla rem.", - "pastOrPresentOrders": "Adipisci doloremque quisquam unde reprehenderit placeat quo velit nobis consequatur.\nOmnis non ducimus.", + "dateReceived": "2018-09-15", + "dateCompleted": "2017-09-24", + "dateEntered": "2017-09-02", + "dateRegistrar": "2015-12-24", + "dateLocalAuthorityReceived": "2015-07-24", + "summary": "Asperiores ad accusamus maiores quia ullam.\nSint recusandae omnis facilis quibusdam.", + "informationUsed": "Molestiae quam officia alias voluptates.\nUt delectus repellat similique eum pariatur.\nUllam consectetur velit nihil sint voluptate.\nRepellendus quod distinctio.\nNatus exercitationem officiis velit quas.", + "pastOrPresentOrders": "Eaque dolorum tenetur porro.", "commercialAndIndustrialPurposes": [ { - "uuid": "6eed9556-f0b4-4753-8d61-269dfd64efd4", + "uuid": "2f735834-3ccd-4b6a-931c-943b5f9d46b2", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "uuid": "f0a60c77-dcb4-4a7e-bac2-df02785cdd4a", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { - "uuid": "8ab88949-89ca-4bd6-aac1-f15b671e47e8", + "uuid": "6b302459-d6f7-49b0-b962-d130113089e4", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "uuid": "921e135d-e152-442b-87f2-07d590fa7de1", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + } + ] + }, + { + "uuid": "17dc5a21-0388-4568-a383-635a9f89edfc", + "siteRegistry": true, + "dateReceived": "2020-04-08", + "dateCompleted": "2014-12-21", + "dateEntered": "2016-03-04", + "dateRegistrar": "2018-12-17", + "dateLocalAuthorityReceived": "2017-07-15", + "summary": "Voluptatum neque iusto ea corrupti perspiciatis iste dignissimos.\nAssumenda quos deserunt praesentium.", + "informationUsed": "Ipsam at doloribus praesentium mollitia repellat.\nDoloremque minima blanditiis soluta modi porro reiciendis neque fugit.\nFugiat neque itaque reprehenderit.\nSit blanditiis velit dignissimos illo facere nulla blanditiis autem eaque.", + "pastOrPresentOrders": "Ut esse veritatis hic magni.\nProvident facere ipsam dolorem nihil ea quaerat incidunt unde.", + "commercialAndIndustrialPurposes": [ + { + "uuid": "842a2c94-5231-4ef2-9462-966a36d14358", "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "uuid": "3fb6d5c3-f07a-484f-87c9-893fd43658f3", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, { - "uuid": "35713f0e-5d1b-4e51-8cce-06e5c8ef78df", + "uuid": "8057c1ce-bbdf-43f0-9cb1-cbed97d4fb80", "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, { - "uuid": "8da4f07a-ddaa-4d11-95b0-657a62ebc15e", + "uuid": "8c1c9083-741e-4669-b4b0-46c3e3a9bfa1", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true + "siteRegistry": false } ] } ], "activityLog": [ { - "uuid": "f82668f4-82db-482a-8877-b048203c3ef9", - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "HOMENICK ISMAEL", - "timestamp": "2022-03-04" - }, - { - "uuid": "1bb10518-b9b8-4961-bb6f-0c0e87e24e49", + "uuid": "a3017910-272e-4d34-a603-80953ce43c8d", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "LITTEL RAHEEM", - "timestamp": "2017-06-15" + "user": "LABADIE KAREEM", + "timestamp": "2020-09-10" }, { - "uuid": "b79f4fb4-c853-4aa6-97f9-15ed11c862f4", + "uuid": "c3c3460e-7c5a-49d6-9a12-5b1d7466b594", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "CARTWRIGHT-COLLIER NELLIE", - "timestamp": "2014-07-21" + "user": "BINS HENRI", + "timestamp": "2018-06-14" }, { - "uuid": "e4d018a5-b4b8-4d97-aadb-e7cdb564efb4", + "uuid": "0d8259b2-95ba-4e6a-b674-e9a7c6c53e18", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "KUHN CORDIA", - "timestamp": "2020-04-29" + "user": "FUNK TRINITY", + "timestamp": "2019-03-04" }, { - "uuid": "aec80d01-b05f-4e28-85c0-8e1656b7d8a5", - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "HEIDENREICH-BEER KENYATTA", - "timestamp": "2015-03-28" - }, - { - "uuid": "233837bd-c33f-4387-8918-42e867e02ff5", + "uuid": "fd04b3ac-070d-475f-91e9-8cd7c9e5ec81", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "CASPER SANTA", - "timestamp": "2021-07-11" + "user": "JAST ALYCIA", + "timestamp": "2023-09-19" }, { - "uuid": "6781ea79-aabb-4d67-b5a7-e178999c6222", + "uuid": "c76e9f8f-21a0-4b77-a44a-b6af77bd4e91", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "BECKER DEMETRIS", - "timestamp": "2015-12-04" - }, - { - "uuid": "3aeb68f7-4b9c-40d5-b02d-b8cec960c885", - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "WISOKY ABRAHAM", - "timestamp": "2014-04-17" - }, - { - "uuid": "022c24b3-e2b5-4dab-b809-7ad6cc3ca847", - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "BRAUN BERTRAND", - "timestamp": "2020-12-01" + "user": "SMITHAM JANNIE", + "timestamp": "2020-11-06" } ], "associatedSites": [ { - "uuid": "28db745a-85ae-416c-8006-249d7234225c", - "dateNoted": "2019-08-13", + "uuid": "adb51c81-7e9c-4600-a55d-4d5708f8a828", + "dateNoted": "2023-06-22", "notes": "", - "parcelID": "17517", - "siteID": "17082", + "parcelID": "19568", + "siteID": "17503", "siteRegistry": true } ] }, { - "uuid": "fc6d7193-28f2-4f54-b909-97d718f14c1b", - "siteID": 17437, - "address": "85510 Verner Fields", - "latitude": 55.0804, - "longitude": -122.6231, - "lastUpdated": "2017-06-21", - "city": "Annandale", - "region": "Thompson-Okanagan", - "victoriaFile": "26250-20/7316", + "uuid": "034ecb3e-16dc-4c92-a3c8-c75a48fd8977", + "siteID": 17107, + "address": "60625 Schroeder Viaduct", + "latitude": 56.7788, + "longitude": -123.9946, + "lastUpdated": "2016-06-13", + "city": "Fort Lora", + "region": "Mainland/Southwest", + "victoriaFile": "26250-20/6428", "regionalFile": "N/A", "parcelIDs": [ - 4147654, - 1898042, - 7959733, - 593302, - 3393238 + 9047453, + 4012865, + 8624979, + 4855301, + 6807924 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "b2b65424-1369-48d4-a870-27c52c0bcf02", - "createdAt": "2014-04-14", - "completed": "2017-04-13", - "initiated": "2017-07-12", - "ministryContact": "NICOLAS-ALTENWERTH WILMER", + "uuid": "28d8910e-c7cb-4e68-906d-5eb69cc608a7", + "createdAt": "2019-03-17", + "completed": "2020-07-12", + "initiated": "2022-07-01", + "ministryContact": "HAAG ALYSHA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -70322,26 +82633,26 @@ ], "notationParticipants": [ { - "uuid": "427126cc-ee62-4584-932e-0b3d039581f6", - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "98ee1646-e46b-4c7b-b434-53ca9105003a", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "0fac2138-2901-490b-8ed5-ed56e71069ae", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true + "uuid": "e44257c0-e230-412e-b4fd-7a6c784624fe", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false } ], "siteRegistry": true }, { - "uuid": "eeffe1cc-79a2-4eba-8d65-6da05bf60c59", - "createdAt": "2014-06-01", - "completed": "2014-04-23", - "initiated": "2015-02-19", - "ministryContact": "BATZ KILEY", + "uuid": "80c2d694-0bbe-419a-8705-0d812bc394c6", + "createdAt": "2019-03-04", + "completed": "2019-11-15", + "initiated": "2014-09-03", + "ministryContact": "MITCHELL ASTRID", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -70350,26 +82661,26 @@ ], "notationParticipants": [ { - "uuid": "5f84c3d1-b3c7-4c1c-b5a5-fea45e972f58", + "uuid": "8bebc1b2-9b8b-4e23-8eb1-7f0032ce4f51", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true + "role": "SUBMITTED BY", + "siteRegistry": false }, { - "uuid": "6de98378-965a-40f3-9a49-898b3fbf60f2", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false + "uuid": "7cada3a9-e662-4eed-8ec7-682c1c80cb18", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "1317f868-6503-467e-89a3-6849f0e13a73", - "createdAt": "2022-12-14", - "completed": "2021-01-05", - "initiated": "2020-01-08", - "ministryContact": "WILKINSON PERRY", + "uuid": "a0265307-7dd3-4612-96f2-d3673c3082d5", + "createdAt": "2018-09-08", + "completed": "2018-08-20", + "initiated": "2014-09-11", + "ministryContact": "HAHN VIRGIL", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -70378,45 +82689,49 @@ ], "notationParticipants": [ { - "uuid": "c8cacc96-320b-43fe-957c-0de6334ca818", - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "uuid": "1ea6d434-55b8-47e3-998e-4f85018766f4", + "uuid": "d0c5a4fb-d2d5-490c-8691-8bc71de30ad8", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "f5e79916-9d58-4845-a9ad-daf4907b2d66", + "uuid": "5ea26468-d804-4e72-bdb4-2b27328dacfb", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "uuid": "3f9299cf-c15c-4b87-838b-eb132faa7f05", - "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "uuid": "7674ed82-896e-4a5d-89b6-42b30d1e64e5", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true } ], "participants": [ { - "uuid": "3ea2f95b-60f5-4987-a5c3-1c5e028b17b6", + "uuid": "91be88b3-9e47-456f-b236-47f810ca0437", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2021-06-06", + "startDate": "2020-12-08", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "uuid": "5a65838b-09c0-46e5-b656-92919827ad2f", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2016-04-10", + "startDate": "2016-06-02", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "uuid": "f1c1f5ba-42fb-4a4a-a20b-ea695db1bcac", "name": "AMET, DOLOR SIT", - "endDate": "2023-09-14", - "startDate": "2017-10-19", + "endDate": "2022-06-09", + "startDate": "2021-06-17", "notes": "", "roles": [ "ORGANIZATION" @@ -70424,10 +82739,10 @@ "siteRegistry": true }, { - "uuid": "f3ad72c1-3773-4bcc-a4d9-ceae3008850b", + "uuid": "8181841c-8eda-4aaa-8a27-8baabe1371ae", "name": "IPSUM", - "endDate": "2015-07-29", - "startDate": "2018-09-17", + "endDate": "2014-06-29", + "startDate": "2021-06-18", "notes": "", "roles": [ "EMPLOYEE" @@ -70435,97 +82750,178 @@ "siteRegistry": false } ], + "documents": [ + { + "uuid": "33ee1e6b-357c-4690-8e6b-97241a4c5138", + "siteRegistry": true, + "documentDate": "2016-02-19", + "receivedDate": "2019-11-13", + "uploadedDate": "2020-09-01", + "title": "Summary of Site Conditions, 1537 W 41st Avenue, Vancouver", + "participants": [ + { + "uuid": "96247772-a8f3-4c6f-a712-09811d0b9d00", + "name": "AMET, DOLOR SIT", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "c508edfa-c5bd-46c8-92f7-a5888b58a90a", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "628011a7-eb34-4ffa-9256-4f5dcb9454ed", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": false, + "role": "AUTHOR" + } + ] + }, + { + "uuid": "a2ba5322-86c4-4d9a-b90e-193b2e1ccbb5", + "siteRegistry": true, + "documentDate": "2023-05-17", + "receivedDate": "2015-04-30", + "uploadedDate": "2023-08-29", + "title": "Summary of Site Conditions, 1537 W 41st Avenue, Vancouver", + "participants": [ + { + "uuid": "23a49b25-e7be-4366-8715-045d71f2b23b", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": true, + "role": "AUTHOR" + } + ] + }, + { + "uuid": "9ee9f9ca-4959-4eba-850b-8202a4caa815", + "siteRegistry": true, + "documentDate": "2016-05-03", + "receivedDate": "2021-05-29", + "uploadedDate": "2015-03-15", + "title": "Preliminary Site Investigation, Detailed Site Investigation and Remedial Plan for the Management Area adjacent to the Shell Site at 1503 West 41st Ave", + "participants": [ + { + "uuid": "98444f91-cfc9-45c7-b1a9-eef63bf85ca1", + "name": "IPSUM", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "a35bb88f-61a8-4c18-91e7-921d4911a578", + "name": "IPSUM", + "siteRegistry": true, + "role": "AUTHOR" + } + ] + }, + { + "uuid": "6f906dea-a112-4115-bec7-b898d280c93b", + "siteRegistry": true, + "documentDate": "2014-11-25", + "receivedDate": "2015-09-21", + "uploadedDate": "2021-08-13", + "title": "Summary of Site Conditions, 1537 W 41st Avenue, Vancouver", + "participants": [ + { + "uuid": "fd647e74-0987-4e3e-83da-94180640d78f", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "e8c1f5a3-b25f-4e3d-953e-04ee9bb544ca", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": false, + "role": "AUTHOR" + } + ] + } + ], "suspectLandUses": [ { - "uuid": "a52330da-ee65-4e09-a501-8c5f45ce9a41", - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-07-05 (described on Site Profile dated 2019-07-05)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "uuid": "49bea3a9-e017-43bc-a8db-98576748c8a4", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2023-07-11 (described on Site Profile dated 2023-07-11)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "uuid": "702d9c40-3e87-46f2-8ca2-b93c601622b3", - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-04-26 (described on Site Profile dated 2014-04-26)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "uuid": "ac33c80d-8d37-439e-b510-26dc60817cf8", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2018-04-22 (described on Site Profile dated 2018-04-22)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "uuid": "9a3e4099-0439-427c-94d6-61ec05a5187c", + "uuid": "3dcc524d-5953-443d-a505-ce5e664c1c2a", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-02-11 (described on Site Profile dated 2019-02-11)", + "notes": "INSERTED FOR SITE PROFILE DATED 2021-04-13 (described on Site Profile dated 2021-04-13)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "uuid": "6a7054ed-c9ba-47fb-8607-ee18008cfb62", - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2020-05-22 (described on Site Profile dated 2020-05-22)", + "uuid": "16e3b806-9a5a-4124-a35c-aaa94985d853", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2020-10-16 (described on Site Profile dated 2020-10-16)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "uuid": "aaff1c31-d901-4a43-9221-4252e21f7788", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2016-02-09 (described on Site Profile dated 2016-02-09)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], "parcelDescriptions": [ { - "uuid": "a7d1272b-84d4-4a87-8461-f1205ee9f690", - "siteRegistry": false, - "dateNoted": "2016-06-18", - "parcelID": "18210", - "crownLandUsePIN": "16732", - "crownLandFileNumber": "16495", - "landDescription": "LOT 3 OF LOT 2 BLOCK 4 DISTRICT LOT 5 PLAN 4934" - }, - { - "uuid": "439f8c5f-6387-4318-a500-e8532ac1fcd4", - "siteRegistry": false, - "dateNoted": "2014-12-24", - "parcelID": "18297", - "crownLandUsePIN": "20812", - "crownLandFileNumber": "15268", - "landDescription": "LOT 1 OF LOT 4 BLOCK 1 DISTRICT LOT 1 PLAN 4307" + "uuid": "9fef00ac-d7ea-405b-a4a9-7a39cc34bfc8", + "siteRegistry": true, + "dateNoted": "2015-05-28", + "parcelID": "18635", + "crownLandUsePIN": "17854", + "crownLandFileNumber": "17778", + "landDescription": "LOT 4 OF LOT 3 BLOCK 2 DISTRICT LOT 2 PLAN 6223" }, { - "uuid": "9b8b8e3e-31d9-4634-ab30-2b1cfad5df1c", + "uuid": "a481705f-3c1c-447b-ba15-dd8316cb0cc7", "siteRegistry": true, - "dateNoted": "2020-11-17", - "parcelID": "16513", - "crownLandUsePIN": "18245", - "crownLandFileNumber": "18138", - "landDescription": "LOT 1 OF LOT 1 BLOCK 4 DISTRICT LOT 5 PLAN 6109" + "dateNoted": "2017-05-01", + "parcelID": "18739", + "crownLandUsePIN": "19495", + "crownLandFileNumber": "19162", + "landDescription": "LOT 2 OF LOT 5 BLOCK 2 DISTRICT LOT 5 PLAN 5429" }, { - "uuid": "ef7ca9ad-602c-458a-99f0-34ca83270d6c", - "siteRegistry": true, - "dateNoted": "2018-04-14", - "parcelID": "18183", - "crownLandUsePIN": "18841", - "crownLandFileNumber": "19703", - "landDescription": "LOT 3 OF LOT 3 BLOCK 1 DISTRICT LOT 5 PLAN 4977" + "uuid": "e2a045ab-4267-4e33-be75-33d0e0bb2e74", + "siteRegistry": false, + "dateNoted": "2022-01-26", + "parcelID": "16009", + "crownLandUsePIN": "19647", + "crownLandFileNumber": "18557", + "landDescription": "LOT 5 OF LOT 1 BLOCK 4 DISTRICT LOT 2 PLAN 7121" } ], "siteDisclosures": [ { - "uuid": "c5047477-f387-4201-acd2-f80ddee67c51", + "uuid": "1f67117f-9a43-4b9b-897c-6a90f818c1a2", "siteRegistry": false, - "dateReceived": "2019-10-10", - "dateCompleted": "2019-02-01", - "dateEntered": "2022-06-10", - "dateRegistrar": "2020-03-17", - "dateLocalAuthorityReceived": "2017-11-27", - "summary": "At aliquam nam occaecati natus.", - "informationUsed": "Perferendis esse ullam voluptate non suscipit suscipit.\nTempora facere architecto eum molestiae.\nMaxime natus fugit explicabo consequatur.\nQuod distinctio nulla ipsum esse consequuntur vitae voluptas.\nLabore ea officiis delectus tempore totam ducimus molestiae dolore.", - "pastOrPresentOrders": "Nam nesciunt nam et.", + "dateReceived": "2017-04-26", + "dateCompleted": "2023-03-05", + "dateEntered": "2017-01-23", + "dateRegistrar": "2014-03-30", + "dateLocalAuthorityReceived": "2014-03-29", + "summary": "Nam distinctio aliquam architecto facilis rem impedit neque ea atque.\nMollitia provident dignissimos quis incidunt saepe odio tenetur officia ex.\nAliquid provident nostrum necessitatibus magni eligendi sit natus.", + "informationUsed": "Suscipit maxime deserunt optio aliquam.\nQuae incidunt veniam totam rerum est laudantium voluptate repellendus.\nFugit voluptatibus aliquid facere non esse eligendi.\nMaiores beatae autem.\nIpsum quis cum inventore molestias velit illo consequuntur.", + "pastOrPresentOrders": "Iste reiciendis aperiam accusamus maiores delectus repellendus.", "commercialAndIndustrialPurposes": [ { - "uuid": "df3b49a0-b330-4788-9dfe-9cf4597a460b", - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false - }, - { - "uuid": "586662ef-2511-493f-ba2b-a56556cb8902", + "uuid": "a73d1dd7-0137-4b8c-a120-4f86873a211f", "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, { - "uuid": "5d4dc49e-b718-4a4b-ae8f-c2e74f061955", + "uuid": "d0319ae4-82fb-47f2-bfec-f04c081655ba", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false @@ -70535,99 +82931,94 @@ ], "activityLog": [ { - "uuid": "6bd598df-59a9-4e03-83e0-7eed65bdbd32", - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "TOWNE DARLENE", - "timestamp": "2022-12-09" - }, - { - "uuid": "674cb38c-3625-453c-ac23-0bf666a86679", - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "DECKOW AUGUSTUS", - "timestamp": "2020-05-10" - }, - { - "uuid": "1c1e228a-2e41-42c9-bfdd-334b44b19aaa", + "uuid": "9f9f7fed-4922-4ec1-ab45-b3da2f2fc6df", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "KLOCKO JOSEPHINE", - "timestamp": "2021-07-28" + "user": "RUSSEL DOMINIC", + "timestamp": "2019-01-05" }, { - "uuid": "57f0b473-a5c5-4de2-bccb-21f66f717477", - "siteRegistry": false, + "uuid": "38181ad8-febe-4eef-bae1-ef91adf00b70", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "FISHER ISABELL", - "timestamp": "2013-12-23" + "user": "MURPHY DAMIEN", + "timestamp": "2022-02-11" }, { - "uuid": "fc86bc44-ef36-463b-8c16-955435b97c2f", + "uuid": "712d1049-6f29-4325-905c-5a5bb9b24e85", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "ROHAN FAUSTO", - "timestamp": "2020-07-25" - }, - { - "uuid": "11a563d8-313e-4088-8efa-9ecd01d66505", - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "ABERNATHY ANNIE", - "timestamp": "2018-10-26" + "user": "WILLMS STERLING", + "timestamp": "2015-07-26" }, { - "uuid": "f75fbf7b-2606-47a9-95d9-d403d4770383", + "uuid": "14d27527-6e44-4d68-9c34-9687f52c07ab", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "FLATLEY ALEX", - "timestamp": "2018-04-04" + "user": "BERGSTROM JOELLE", + "timestamp": "2018-06-02" }, { - "uuid": "d6548ce7-f94d-4bce-9aba-922748bd620e", + "uuid": "65bc2f6e-2a41-44af-9dbf-1e82b5d71912", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "TILLMAN CLEMMIE", - "timestamp": "2017-05-06" + "user": "BRUEN LETA", + "timestamp": "2020-02-19" } ], "associatedSites": [ { - "uuid": "24e36cfc-afb0-4a65-829b-36d71549e1d8", - "dateNoted": "2021-10-28", + "uuid": "9befe575-593b-4ec8-a67b-7f35785553de", + "dateNoted": "2016-11-03", + "notes": "", + "parcelID": "15338", + "siteID": "19986", + "siteRegistry": false + }, + { + "uuid": "2857ca9a-6480-4f41-bc69-3d64cfeb602e", + "dateNoted": "2018-03-24", "notes": "", - "parcelID": "17727", - "siteID": "19769", + "parcelID": "16443", + "siteID": "16144", "siteRegistry": false + }, + { + "uuid": "9bd92608-f889-489d-95e3-05a0935aa093", + "dateNoted": "2017-04-12", + "notes": "", + "parcelID": "15924", + "siteID": "15579", + "siteRegistry": true } ] }, { - "uuid": "cd2925d1-b39c-425d-85e3-08a96f82267c", - "siteID": 19973, - "address": "3939 Sven Drives", - "latitude": 52.4552, - "longitude": -133.5053, - "lastUpdated": "2020-12-13", - "city": "New Jaronmouth", - "region": "Vancouver Island/Coast", - "victoriaFile": "26250-20/16503", + "uuid": "ef9066d7-1c59-4cf2-aa2c-3c27765e6373", + "siteID": 15231, + "address": "69189 Julius Burgs", + "latitude": 57.6149, + "longitude": -129.392, + "lastUpdated": "2017-09-03", + "city": "Yorba Linda", + "region": "Thompson-Okanagan", + "victoriaFile": "26250-20/16246", "regionalFile": "N/A", "parcelIDs": [ - 5361600, - 8130999, - 4897495, - 6244527, - 2495159 + 5213557, + 9460055, + 8726554, + 9740208, + 4202808 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "d8438133-d8a6-4b44-bb41-3e91d52e21ee", - "createdAt": "2016-02-22", - "completed": "2020-06-03", - "initiated": "2021-04-05", - "ministryContact": "CHRISTIANSEN ALF", + "uuid": "b4acf551-06d1-43ee-9ec8-feb700755245", + "createdAt": "2023-04-23", + "completed": "2017-07-20", + "initiated": "2021-03-16", + "ministryContact": "MARKS GILBERTO", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -70636,44 +83027,118 @@ ], "notationParticipants": [ { - "uuid": "ebb551f2-28c8-44b6-b274-a98386b893f8", + "uuid": "7532cf23-180d-4e05-a1fa-dbd0e2e058ee", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "uuid": "77a8896e-7a9d-42cf-962f-a3e5d8ed6b70", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "397c11c4-45a2-474d-9d38-c289be7a7d49", + "uuid": "07dab19f-f949-4ba6-ad2a-7e519b821726", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "uuid": "f69dd947-c561-4a2a-9caf-2161c723ed3f", + "createdAt": "2019-12-23", + "completed": "2013-11-02", + "initiated": "2019-10-22", + "ministryContact": "SCHUPPE DEDRIC", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "uuid": "d19f20a7-39b5-4779-9336-5245b29f8bc4", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false }, { - "uuid": "83297579-8799-43bc-b792-9263930187d1", + "uuid": "b313d49b-7ce6-4d4a-8449-a74f5ef71884", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "c396d7cc-cfb3-44fd-a1dd-f6f8834e6f71", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false }, { - "uuid": "7ce9c461-e970-48de-88a9-2c31190b0a76", - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "31d8a35b-95dc-4f08-b67f-7e54a3188ece", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "uuid": "de8a1d2d-8557-42dc-9bce-b397abe6de99", + "createdAt": "2017-11-20", + "completed": "2022-02-10", + "initiated": "2016-10-29", + "ministryContact": "BERGE EDMUND", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "uuid": "8edd51cb-0c59-480e-87ad-ebc1549039a1", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "uuid": "a8955843-8451-4b52-9b01-1debdf30cd4a", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "5a4f6a6a-ecf3-43a9-8fcb-63366e0152b2", + "uuid": "958840cb-c0ba-43b6-9c11-58042878d3f3", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "uuid": "962de599-2bb0-4d45-9324-b1dbce3dffd1", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "6e1157b2-9f40-47b6-8dad-951008c5a92a", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "695d403e-13b8-4add-acb7-62577f0aa8fd", - "createdAt": "2014-07-03", - "completed": "2021-04-29", - "initiated": "2018-07-10", - "ministryContact": "CRONA CECELIA", + "uuid": "d60753bb-ea23-4898-9ea7-fb8e26ba8e85", + "createdAt": "2018-07-30", + "completed": "2019-11-30", + "initiated": "2022-01-29", + "ministryContact": "LITTEL ALENE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -70682,15 +83147,27 @@ ], "notationParticipants": [ { - "uuid": "791cc452-2d07-46c5-bb6a-f1ac87c46b07", + "uuid": "ba1afa44-f7d6-45f7-92dc-5a0ddb37054c", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "65eb4275-36eb-4ad7-ac03-dbc74d9fdad8", + "uuid": "70f35b9f-ca9e-417b-a8f5-191f647de5df", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "uuid": "68102315-b14d-43cd-9cf2-4c925e5dec4d", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "342ed5c1-e0ab-4a32-9914-500ffafe5c07", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": true } ], @@ -70699,215 +83176,296 @@ ], "participants": [ { - "uuid": "ee39a1d9-def5-4ce8-b346-1f5df12b34b8", + "uuid": "fc555965-4f16-47a2-829d-ea7075905c05", "name": "AMET, DOLOR SIT", - "endDate": "2014-11-26", - "startDate": "2018-02-06", + "endDate": "2015-08-25", + "startDate": "2016-12-08", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "d51786e1-edbc-4de9-9f6d-17672581aab9", - "name": "IPSUM", - "endDate": "2018-11-29", - "startDate": "2020-08-17", + "uuid": "a4a1df23-20e2-41df-8599-9a748441fa20", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2015-01-02", + "startDate": "2018-01-10", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": true } ], - "suspectLandUses": [ + "documents": [ + { + "uuid": "52cf51fd-6884-4fc7-9a03-157a6bcc8223", + "siteRegistry": true, + "documentDate": "2014-01-31", + "receivedDate": "2015-02-24", + "uploadedDate": "2016-02-27", + "title": "Summary of Site Conditions, 1537 W 41st Avenue, Vancouver", + "participants": [ + { + "uuid": "7d7e641e-c842-4d62-85d0-33a4c0981167", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": true, + "role": "AUTHOR" + } + ] + }, { - "uuid": "3d589dad-b491-4c11-8d0e-6c7e301445ee", + "uuid": "ec228d43-7c7c-41aa-9ca3-ed578c48483d", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-08-24 (described on Site Profile dated 2018-08-24)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "documentDate": "2017-02-18", + "receivedDate": "2017-01-16", + "uploadedDate": "2014-01-24", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "280f1595-6695-4c4e-8ea3-79bc183cafe5", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "10dba702-7a75-4ef0-8c7e-4a7f535a91e3", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "10b9224e-6807-4a25-9e40-bfd5518798b5", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": true, + "role": "AUTHOR" + } + ] }, { - "uuid": "2522c876-eaa3-4f9c-b8f8-9fd7f5a608cd", + "uuid": "f30dd97d-b2dc-468a-b77f-85bd6865170a", + "siteRegistry": true, + "documentDate": "2018-01-21", + "receivedDate": "2017-10-09", + "uploadedDate": "2015-09-21", + "title": "Preliminary Site Investigation, Detailed Site Investigation and Remedial Plan for the Management Area adjacent to the Shell Site at 1503 West 41st Ave", + "participants": [ + { + "uuid": "3efe082d-e86e-4945-827e-e8950921373a", + "name": "IPSUM", + "siteRegistry": false, + "role": "AUTHOR" + } + ] + } + ], + "suspectLandUses": [ + { + "uuid": "a1818f44-0113-4653-a445-75049793418f", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-11-24 (described on Site Profile dated 2015-11-24)", + "notes": "INSERTED FOR SITE PROFILE DATED 2018-01-07 (described on Site Profile dated 2018-01-07)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "uuid": "9eef81a3-6b45-4839-a9a6-16c94dec4676", - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-01-24 (described on Site Profile dated 2017-01-24)", + "uuid": "ec0f23d1-f80d-443d-a457-60a86d1a988c", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2020-06-23 (described on Site Profile dated 2020-06-23)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "uuid": "4a187da7-bf7d-457c-9ae6-89a6d63b4fa7", + "uuid": "13912754-7baa-4579-9f11-2a72b38eb143", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-07-27 (described on Site Profile dated 2022-07-27)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "notes": "INSERTED FOR SITE PROFILE DATED 2021-07-30 (described on Site Profile dated 2021-07-30)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "uuid": "8d2133d5-7164-413b-a714-e08ad2a40fe4", - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2013-10-17 (described on Site Profile dated 2013-10-17)", + "uuid": "33807723-9e68-44c7-8bec-3a8f3ae7c4ea", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2016-05-05 (described on Site Profile dated 2016-05-05)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], "parcelDescriptions": [ { - "uuid": "09036052-d72b-491e-a9b7-0965f95e3c85", + "uuid": "92da49db-75d8-45af-b83f-1ede8360f130", "siteRegistry": true, - "dateNoted": "2022-09-28", - "parcelID": "15736", - "crownLandUsePIN": "16734", - "crownLandFileNumber": "19658", - "landDescription": "LOT 1 OF LOT 5 BLOCK 1 DISTRICT LOT 5 PLAN 4944" + "dateNoted": "2021-02-10", + "parcelID": "18684", + "crownLandUsePIN": "19453", + "crownLandFileNumber": "19677", + "landDescription": "LOT 1 OF LOT 1 BLOCK 5 DISTRICT LOT 5 PLAN 4736" }, { - "uuid": "77fb1739-8534-4970-a3aa-5685ff369a8c", + "uuid": "5b6e490f-b6f3-45bc-a008-c81b1e479b14", "siteRegistry": false, - "dateNoted": "2014-12-12", - "parcelID": "18195", - "crownLandUsePIN": "19470", - "crownLandFileNumber": "19788", - "landDescription": "LOT 1 OF LOT 1 BLOCK 1 DISTRICT LOT 5 PLAN 4043" - }, - { - "uuid": "8f9bdac1-02c0-4d85-9866-a71ba4cc83ef", - "siteRegistry": true, - "dateNoted": "2022-09-15", - "parcelID": "17853", - "crownLandUsePIN": "16945", - "crownLandFileNumber": "19329", - "landDescription": "LOT 4 OF LOT 4 BLOCK 4 DISTRICT LOT 3 PLAN 4841" + "dateNoted": "2023-07-05", + "parcelID": "19424", + "crownLandUsePIN": "20664", + "crownLandFileNumber": "15503", + "landDescription": "LOT 4 OF LOT 5 BLOCK 3 DISTRICT LOT 4 PLAN 9033" }, { - "uuid": "c05be34c-35fa-42c6-b64a-04493a4212e1", + "uuid": "396216e4-7bfd-4194-9c0e-e1bf50dd0cab", "siteRegistry": false, - "dateNoted": "2019-08-31", - "parcelID": "17232", - "crownLandUsePIN": "17970", - "crownLandFileNumber": "17486", - "landDescription": "LOT 1 OF LOT 4 BLOCK 2 DISTRICT LOT 3 PLAN 8738" - }, - { - "uuid": "24471637-66d4-4226-9f8d-1091690ddb3d", - "siteRegistry": true, - "dateNoted": "2014-12-15", - "parcelID": "16775", - "crownLandUsePIN": "19865", - "crownLandFileNumber": "16466", - "landDescription": "LOT 5 OF LOT 3 BLOCK 2 DISTRICT LOT 5 PLAN 6928" + "dateNoted": "2018-11-06", + "parcelID": "17292", + "crownLandUsePIN": "19417", + "crownLandFileNumber": "18287", + "landDescription": "LOT 3 OF LOT 2 BLOCK 3 DISTRICT LOT 1 PLAN 7869" } ], "siteDisclosures": [ { - "uuid": "c13440f6-808c-4163-a32a-3ed28f25e7c9", - "siteRegistry": true, - "dateReceived": "2021-04-24", - "dateCompleted": "2018-09-11", - "dateEntered": "2019-09-03", - "dateRegistrar": "2020-08-28", - "dateLocalAuthorityReceived": "2023-10-04", - "summary": "Iure quae odio laudantium corporis earum accusamus.\nNihil qui pariatur eos deleniti ducimus fuga tempora corporis asperiores.", - "informationUsed": "Expedita tenetur laudantium ipsa rem distinctio fugiat voluptatibus id.\nTenetur optio at voluptatibus incidunt nam rem accusamus magni.\nEius atque velit nobis magnam nobis consequuntur.\nAperiam quidem reprehenderit eius cum.", - "pastOrPresentOrders": "Tempora sed voluptatem cumque vero eum.\nOdio repudiandae delectus molestias culpa temporibus molestiae autem molestiae provident.", + "uuid": "81b3579d-a3c9-443f-ab08-fc95e0c51b9e", + "siteRegistry": false, + "dateReceived": "2017-07-08", + "dateCompleted": "2018-12-05", + "dateEntered": "2016-10-18", + "dateRegistrar": "2018-03-21", + "dateLocalAuthorityReceived": "2014-12-06", + "summary": "Voluptatem delectus adipisci impedit soluta impedit accusamus error maxime amet.\nEum aut ducimus incidunt quis.\nRepudiandae voluptatem officiis iste tenetur inventore corrupti dolores.", + "informationUsed": "Illum accusamus consectetur.\nDoloribus amet eveniet neque harum.\nEst dolore consequuntur impedit.\nDeserunt optio laboriosam iusto sapiente maiores suscipit voluptatum consectetur voluptatum.\nAliquam occaecati nostrum excepturi.", + "pastOrPresentOrders": "Deleniti labore ea at ratione modi tenetur.\nQuam quis iure corrupti nulla eveniet.\nUnde earum culpa quasi porro tempora qui aperiam.", "commercialAndIndustrialPurposes": [ { - "uuid": "5e507bc9-cf7b-48a1-b9d2-ca1f2a6b410c", - "scheduleReference": "F2*", + "uuid": "e07613cc-98eb-4436-af46-627e38246181", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "uuid": "6133b046-6a8a-476d-ae70-c332725a5a0c", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, { - "uuid": "5e7b3ff5-ecf3-4b32-8c5d-ed326854fb46", + "uuid": "041734eb-605f-4bdd-bff0-e609d9d6c00e", "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false }, { - "uuid": "3db587db-75c1-4da4-b7a5-ca58a53e0fee", + "uuid": "ed5aad1b-c926-4409-8796-3c4d125de12d", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false + "siteRegistry": true } ] } ], "activityLog": [ { - "uuid": "7e83d139-85b2-403d-8056-6d05971306cf", + "uuid": "b277a077-fcc5-4614-92e8-b607c95b3811", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "KRIS MADYSON", - "timestamp": "2020-07-14" + "user": "WAELCHI LAMAR", + "timestamp": "2016-03-29" }, { - "uuid": "0b107e90-889e-4900-8171-727964cd48bb", + "uuid": "27acbdc4-6c1b-4c79-bdfb-60390f03ff60", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "FUNK NORWOOD", - "timestamp": "2019-03-03" + "user": "BOYLE-LARSON DORTHY", + "timestamp": "2021-01-09" }, { - "uuid": "ec5a2d88-3cc0-4386-8fe7-09f1b63c0f98", - "siteRegistry": false, + "uuid": "99d19f58-888d-461e-bea4-123a29c9cb0b", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "CRIST REYES", + "timestamp": "2019-09-07" + }, + { + "uuid": "708d5c9d-7d5b-46d0-b89b-d4c36b823246", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "WEIMANN FRIEDRICH", + "timestamp": "2019-08-21" + }, + { + "uuid": "199efe21-b67f-41c7-9b5a-af567d8fe604", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "QUITZON ZOE", - "timestamp": "2018-01-26" + "user": "DOUGLAS ALANNA", + "timestamp": "2017-04-03" }, { - "uuid": "5f5434d3-ba1f-41d6-9271-149766ae65e1", + "uuid": "999b8e89-dfc3-4c92-ad98-240cc1f3fc90", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "KUTCH DAVE", - "timestamp": "2014-05-17" + "user": "WALTER ERIKA", + "timestamp": "2021-01-19" + }, + { + "uuid": "8e8b0d3a-57aa-46d0-8ea0-61aece4121a9", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "ZBONCAK ASHLEE", + "timestamp": "2022-08-03" }, { - "uuid": "711954f9-5ebd-4505-ab30-44e2eb807beb", + "uuid": "4e321969-5d99-4f3d-889c-79d2b7c5920d", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "HARVEY RUBY", - "timestamp": "2020-01-22" + "user": "HERMISTON DION", + "timestamp": "2018-12-19" } ], "associatedSites": [ { - "uuid": "cf4ce24d-6a97-467d-95f1-c5519170401b", - "dateNoted": "2014-06-02", + "uuid": "8fbf826f-4f07-4644-a43c-a5dd7b3f0870", + "dateNoted": "2019-10-30", + "notes": "", + "parcelID": "18104", + "siteID": "16457", + "siteRegistry": false + }, + { + "uuid": "1b65824c-d69c-4390-8c22-05ffcc38cff3", + "dateNoted": "2017-10-13", + "notes": "", + "parcelID": "17646", + "siteID": "16834", + "siteRegistry": false + }, + { + "uuid": "da535e3f-9cce-4afb-b9c9-8ecde294680e", + "dateNoted": "2020-06-05", "notes": "", - "parcelID": "16853", - "siteID": "19897", + "parcelID": "18076", + "siteID": "17785", "siteRegistry": true } ] }, { - "uuid": "4605c6e4-398c-46e5-849d-ed0f076fef7c", - "siteID": 17673, - "address": "4594 Ernser Crossing", - "latitude": 57.1722, - "longitude": -125.4493, - "lastUpdated": "2019-06-14", - "city": "East Amanda", - "region": "Cariboo", - "victoriaFile": "26250-20/7459", + "uuid": "1ce254b6-0111-43ce-a68d-9c243c263438", + "siteID": 17130, + "address": "7370 O'Reilly Stream", + "latitude": 56.502, + "longitude": -136.1806, + "lastUpdated": "2016-06-05", + "city": "Efrenboro", + "region": "Vancouver Island/Coast", + "victoriaFile": "26250-20/2711", "regionalFile": "N/A", "parcelIDs": [ - 8463058, - 5000517, - 5238452, - 5738122, - 767392 + 9568636, + 9034355, + 7156702, + 7347417, + 2003359 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "6670e97d-7922-46f1-b494-9defe6a86c1d", - "createdAt": "2017-12-21", - "completed": "2017-03-06", - "initiated": "2016-12-23", - "ministryContact": "QUITZON JED", + "uuid": "7df865cf-1027-4b19-b636-a54127df5e50", + "createdAt": "2023-02-07", + "completed": "2019-06-19", + "initiated": "2014-05-16", + "ministryContact": "SCHULTZ MARC", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -70916,32 +83474,44 @@ ], "notationParticipants": [ { - "uuid": "5206e6e5-8dfe-4527-a818-6c3bc4cec258", + "uuid": "10e6993d-0c91-438a-97a3-ce11d0dbfb62", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true }, { - "uuid": "cf0865c4-3eae-4882-bd61-3c32d7272e0a", + "uuid": "ccc3bdc1-7423-43fa-90c5-7ddbaac1cdfe", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "04766463-babf-4258-ba47-b230a7216f08", + "uuid": "4158da57-1b87-4021-b628-2d29e305f0bc", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "uuid": "1d7cd470-dfd1-4581-b6ef-b67ecd47ca6b", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "uuid": "9bc38d16-743b-4773-ae84-54ec7f5fe3ee", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "7b61687d-1d3a-4a6a-bbde-bf7d0dcb97f8", - "createdAt": "2020-07-21", - "completed": "2018-03-24", - "initiated": "2020-06-13", - "ministryContact": "REYNOLDS NOEMI", + "uuid": "8580eecd-aafb-4a4d-9600-e0ac30fe91c9", + "createdAt": "2023-05-30", + "completed": "2014-06-15", + "initiated": "2020-06-23", + "ministryContact": "SCHMITT SYDNEY", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -70950,32 +83520,38 @@ ], "notationParticipants": [ { - "uuid": "df9a9d8c-48e0-4d26-abf4-91a624e695ff", + "uuid": "94a11933-79a9-4207-9fad-ac473032128e", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "04974ad8-63fc-4754-908b-af84bbf86f68", + "uuid": "80764157-f1c4-4e4c-a089-662e20f8e384", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "01ae7461-b6b8-4e0e-9e9b-64f507ac13fa", - "name": "SHELL CANADA PRODUCTS", + "uuid": "9a375b37-45c1-4bd3-bef6-fa210a507f65", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "1d14d72e-5080-42a9-a3b5-c331e5d22880", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "19ad39bf-3d9f-4b76-88b7-f6e61198d07f", - "createdAt": "2017-04-08", - "completed": "2014-12-08", - "initiated": "2020-10-10", - "ministryContact": "KUHLMAN PATRICIA", + "uuid": "e9940c25-3080-4216-9ddf-3365ed4c0f55", + "createdAt": "2018-12-15", + "completed": "2023-04-21", + "initiated": "2023-01-01", + "ministryContact": "TREMBLAY JENSEN", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -70984,38 +83560,26 @@ ], "notationParticipants": [ { - "uuid": "17e6e75c-0eb7-4829-b49d-57c6b41d8b69", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "uuid": "a91a4bef-0a42-4bde-827c-db2b3626efcb", + "uuid": "2becc2dd-4533-4c7e-bc93-af5bb4c5b569", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false }, { - "uuid": "4f79496e-80d5-432d-ab37-c16561e860e0", + "uuid": "865bc988-0e0b-4d07-a176-9651a6a610c5", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "uuid": "2ef70a56-d4b3-4de3-8f42-8bc19c3c88f4", - "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "7c248f23-e189-44d7-85f7-77858f3b3237", - "createdAt": "2017-08-07", - "completed": "2020-04-24", - "initiated": "2018-05-23", - "ministryContact": "JOHNSON EMILIO", + "uuid": "ad0c4571-291b-4861-9f84-46dbfb5a27f5", + "createdAt": "2023-04-10", + "completed": "2019-05-17", + "initiated": "2016-01-21", + "ministryContact": "KEELING CHELSEY", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -71024,281 +83588,389 @@ ], "notationParticipants": [ { - "uuid": "63ee4b43-8e5d-4fa3-bb0d-accb4c956921", + "uuid": "cf875e6f-7336-4d86-8e61-56f82de20420", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true + "role": "SUBMITTED BY", + "siteRegistry": false }, { - "uuid": "41d03fae-fc01-4b3d-8bf9-3b2b2dc94ba6", + "uuid": "58253cfb-9a65-40b3-886c-6eb1dece9e44", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true }, { - "uuid": "b22c60d0-249d-4a76-83a3-ee32e5934e72", + "uuid": "1628dd6c-9468-4e2c-9902-0cb246ec3c92", "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "uuid": "47608b2b-cb09-4e27-97b5-1ac8029636a2", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "3d717369-7a36-45b1-8b80-79ef5a4f0bb7", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true } ], "participants": [ { - "uuid": "e5895080-cddc-4e95-8a6b-c378a0ecb358", - "name": "SHELL CANADA PRODUCTS", - "endDate": "2019-09-06", - "startDate": "2022-12-25", + "uuid": "b8248adc-2f94-4d1a-9750-3744f0f972c1", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2019-08-09", + "startDate": "2014-11-09", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "69edad78-3246-4a26-8437-7d982fd6078a", + "uuid": "eed1be11-7912-42b7-9a1d-4dc8a8df3e3c", "name": "SHELL CANADA PRODUCTS", - "endDate": "2015-01-28", - "startDate": "2014-06-22", + "endDate": "2014-11-20", + "startDate": "2021-09-07", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": true }, { - "uuid": "66c489b6-195e-460e-991c-6f9fefb95583", - "name": "AMET, DOLOR SIT", - "endDate": "2022-10-23", - "startDate": "2021-06-28", + "uuid": "a4ecbe2c-ec4b-4d51-b095-d98a61db7761", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2022-03-03", + "startDate": "2015-06-10", "notes": "", "roles": [ "ORGANIZATION" ], "siteRegistry": true + } + ], + "documents": [ + { + "uuid": "3670ce53-dae0-496c-8eaf-3105c173203a", + "siteRegistry": false, + "documentDate": "2021-08-04", + "receivedDate": "2016-06-13", + "uploadedDate": "2022-04-19", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "b8d0b39f-ffee-4c4c-90fc-c3f493142ef0", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "cb25f25e-1d24-43c7-a101-46ce960dc6c5", + "name": "IPSUM", + "siteRegistry": false, + "role": "AUTHOR" + } + ] }, { - "uuid": "c8472aba-3381-46de-8f64-76ebb8301b1a", - "name": "SHELL CANADA PRODUCTS", - "endDate": "2021-12-26", - "startDate": "2017-01-21", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": true + "uuid": "cd046aaf-a1ff-4f7a-8497-ca1b6cb18df1", + "siteRegistry": true, + "documentDate": "2014-11-25", + "receivedDate": "2018-08-31", + "uploadedDate": "2016-12-25", + "title": "Preliminary Site Investigation, Detailed Site Investigation and Remedial Plan for the Management Area adjacent to the Shell Site at 1503 West 41st Ave", + "participants": [ + { + "uuid": "a817232e-b14f-457c-93e3-44a117100c2c", + "name": "AMET, DOLOR SIT", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "97bb3414-b088-4607-8ac4-6455862bfce9", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": false, + "role": "AUTHOR" + } + ] }, { - "uuid": "7696631d-5ccc-4ee4-9d2a-d0c1e4ea2db5", - "name": "SHELL CANADA PRODUCTS", - "endDate": "2021-10-17", - "startDate": "2014-08-25", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": false + "uuid": "bb6c5417-9fff-467f-a56f-c85f86011e15", + "siteRegistry": false, + "documentDate": "2019-07-20", + "receivedDate": "2016-06-16", + "uploadedDate": "2014-04-11", + "title": "Summary of Site Conditions, 1537 W 41st Avenue, Vancouver", + "participants": [ + { + "uuid": "349ba59c-abab-45e1-9525-f055cd565ab1", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": true, + "role": "AUTHOR" + } + ] + }, + { + "uuid": "b6c7c007-8b8f-42a6-9f05-71f5b984e25f", + "siteRegistry": false, + "documentDate": "2015-04-17", + "receivedDate": "2016-10-17", + "uploadedDate": "2017-03-05", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "d2dea9bc-88da-415e-9ea7-2cd8de1db81b", + "name": "IPSUM", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "1af3a2b7-7cda-4d43-be4e-052e417a78ad", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "4aa7f704-e674-4731-b09d-73f0b7241e25", + "name": "AMET, DOLOR SIT", + "siteRegistry": true, + "role": "AUTHOR" + } + ] + }, + { + "uuid": "9a8026d0-bcd7-4fef-ae0b-54aa532d274a", + "siteRegistry": false, + "documentDate": "2023-01-09", + "receivedDate": "2022-05-06", + "uploadedDate": "2017-11-17", + "title": "Summary of Site Conditions, 1537 W 41st Avenue, Vancouver", + "participants": [ + { + "uuid": "2448d7e1-7e9b-4bc1-bf5c-20a9a38026e6", + "name": "IPSUM", + "siteRegistry": false, + "role": "AUTHOR" + } + ] } ], "suspectLandUses": [ { - "uuid": "14c376b9-0b37-4bff-aa9a-4054857ee710", - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-06-17 (described on Site Profile dated 2021-06-17)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" - }, - { - "uuid": "2e6e6a60-e102-45c4-8aac-ba48146a8c30", + "uuid": "8444b964-24b6-49f7-a8ad-897870e9de79", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2023-09-20 (described on Site Profile dated 2023-09-20)", + "notes": "INSERTED FOR SITE PROFILE DATED 2020-04-13 (described on Site Profile dated 2020-04-13)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "uuid": "0579b622-96bf-475e-b0fb-8af3e69803ff", + "uuid": "10b21200-c5d4-48d4-943d-7625ca0903a4", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-08-04 (described on Site Profile dated 2021-08-04)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "notes": "INSERTED FOR SITE PROFILE DATED 2014-09-24 (described on Site Profile dated 2014-09-24)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "uuid": "61a0228f-9755-4808-8a17-8fbe51f2bb73", - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-07-19 (described on Site Profile dated 2019-07-19)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "uuid": "6d6429a8-2b2e-4a1a-9a47-85802b5f6127", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2020-04-01 (described on Site Profile dated 2020-04-01)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], "parcelDescriptions": [ { - "uuid": "2f6d8204-1112-417a-856d-f1c7bc812a7c", + "uuid": "38a3322f-4ceb-494e-b948-49eaa42272fd", "siteRegistry": true, - "dateNoted": "2017-06-11", - "parcelID": "17363", - "crownLandUsePIN": "20053", - "crownLandFileNumber": "19914", - "landDescription": "LOT 1 OF LOT 4 BLOCK 3 DISTRICT LOT 1 PLAN 6726" + "dateNoted": "2016-07-28", + "parcelID": "20623", + "crownLandUsePIN": "19568", + "crownLandFileNumber": "17070", + "landDescription": "LOT 3 OF LOT 2 BLOCK 3 DISTRICT LOT 5 PLAN 9365" }, { - "uuid": "695c94ef-45e3-48ca-90b8-889869e9616d", + "uuid": "0d5c7c70-6456-477f-95a5-5a7c0200b85c", "siteRegistry": true, - "dateNoted": "2020-05-10", - "parcelID": "15991", - "crownLandUsePIN": "19815", - "crownLandFileNumber": "18488", - "landDescription": "LOT 1 OF LOT 2 BLOCK 4 DISTRICT LOT 2 PLAN 6490" + "dateNoted": "2018-01-18", + "parcelID": "20794", + "crownLandUsePIN": "19576", + "crownLandFileNumber": "15894", + "landDescription": "LOT 3 OF LOT 4 BLOCK 5 DISTRICT LOT 1 PLAN 8189" }, { - "uuid": "942af08f-d69d-4339-8f80-4a4fe532ad41", + "uuid": "4c839378-cd6d-44df-93c1-1c02b5e1c56c", "siteRegistry": true, - "dateNoted": "2022-05-18", - "parcelID": "16708", - "crownLandUsePIN": "16078", - "crownLandFileNumber": "18187", - "landDescription": "LOT 4 OF LOT 4 BLOCK 1 DISTRICT LOT 3 PLAN 4992" + "dateNoted": "2019-05-28", + "parcelID": "16902", + "crownLandUsePIN": "15810", + "crownLandFileNumber": "15217", + "landDescription": "LOT 4 OF LOT 5 BLOCK 4 DISTRICT LOT 5 PLAN 5791" }, { - "uuid": "db56da9e-8a17-48aa-afc8-52d64638834a", - "siteRegistry": true, - "dateNoted": "2015-05-12", - "parcelID": "18638", - "crownLandUsePIN": "20566", - "crownLandFileNumber": "19651", - "landDescription": "LOT 2 OF LOT 1 BLOCK 3 DISTRICT LOT 3 PLAN 9608" + "uuid": "d77380d2-58da-4614-b597-f37243e5cbf9", + "siteRegistry": false, + "dateNoted": "2022-02-26", + "parcelID": "18118", + "crownLandUsePIN": "17368", + "crownLandFileNumber": "16641", + "landDescription": "LOT 5 OF LOT 2 BLOCK 1 DISTRICT LOT 1 PLAN 3681" }, { - "uuid": "5f6eb0bf-0c2d-45f7-b0a2-b2fea3366a2d", + "uuid": "63751049-553e-458d-967f-89ae7609e91a", "siteRegistry": false, - "dateNoted": "2014-01-23", - "parcelID": "15987", - "crownLandUsePIN": "19643", - "crownLandFileNumber": "17248", - "landDescription": "LOT 1 OF LOT 3 BLOCK 2 DISTRICT LOT 3 PLAN 9762" + "dateNoted": "2015-01-23", + "parcelID": "16911", + "crownLandUsePIN": "19415", + "crownLandFileNumber": "19016", + "landDescription": "LOT 5 OF LOT 2 BLOCK 2 DISTRICT LOT 5 PLAN 7766" } ], "siteDisclosures": [ { - "uuid": "4d1db4b6-d3bf-45f6-b8cc-d4b0225dbe3a", - "siteRegistry": false, - "dateReceived": "2020-04-05", - "dateCompleted": "2017-04-03", - "dateEntered": "2018-03-10", - "dateRegistrar": "2017-10-10", - "dateLocalAuthorityReceived": "2014-11-10", - "summary": "Esse quaerat rem sunt.\nSapiente quo reiciendis incidunt nisi rem sunt saepe unde.", - "informationUsed": "Unde consequuntur corrupti asperiores adipisci maiores ratione doloremque explicabo praesentium.\nVitae ipsa sapiente incidunt.\nQuaerat ipsam nulla rerum omnis alias voluptate maxime.\nIusto rerum quisquam perspiciatis quisquam qui placeat molestias.", - "pastOrPresentOrders": "Perspiciatis doloribus quas.\nEst optio deserunt voluptatum hic sint repudiandae neque.", + "uuid": "e055288d-edd5-48eb-961d-6f7f2f6e0424", + "siteRegistry": true, + "dateReceived": "2015-10-16", + "dateCompleted": "2021-11-19", + "dateEntered": "2014-12-02", + "dateRegistrar": "2019-05-25", + "dateLocalAuthorityReceived": "2019-07-31", + "summary": "Sint distinctio dolores sequi.", + "informationUsed": "Corrupti doloribus aperiam laudantium.\nAnimi mollitia minima illum assumenda.\nQuos accusantium autem autem quam architecto cupiditate.", + "pastOrPresentOrders": "Dicta laborum consequuntur excepturi explicabo quae voluptas corrupti distinctio.\nNostrum in quisquam voluptatum nihil occaecati laboriosam rerum ab impedit.\nQuas fugiat nisi reprehenderit laudantium sequi molestias iste architecto excepturi.", "commercialAndIndustrialPurposes": [ { - "uuid": "4d6a3e98-d016-406e-a717-fa59a946696a", - "scheduleReference": "F2*", + "uuid": "b39ad30a-24c8-4753-9f8d-e6e7970623ab", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false }, { - "uuid": "4245990d-cb10-4b5c-8589-f16b167a1e52", - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false + "uuid": "026f36d4-5d3e-483b-83b3-f570714e4a45", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true }, { - "uuid": "b95e6b0b-4841-4c79-9338-2329f13fc240", + "uuid": "415aa730-262e-4ad3-9d64-67b610bb194b", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false + "siteRegistry": true + }, + { + "uuid": "22473d0a-948c-4fa7-a131-15e20c0ff675", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true } ] } ], "activityLog": [ { - "uuid": "5b430c68-d8e9-4b8a-8ad3-6154ac62a9b0", + "uuid": "18cdd6d2-343f-4899-ba0c-570e4c7d1fa0", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "KASSULKE AKEEM", + "timestamp": "2018-10-20" + }, + { + "uuid": "d570c794-edd0-4551-950a-fd0498be4f46", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "PAUCEK MARISA", + "timestamp": "2016-07-22" + }, + { + "uuid": "936fa2c5-2787-4283-aa79-7980ec6c7b47", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "STEUBER NARCISO", + "timestamp": "2015-07-09" + }, + { + "uuid": "a821a45d-9855-47b4-96e5-e8b70503937d", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "GRIMES GOLDEN", + "timestamp": "2014-11-02" + }, + { + "uuid": "7044ef70-cd83-4017-bbac-8e77666c1127", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "GERHOLD ALISA", - "timestamp": "2020-08-24" + "user": "MURRAY DAVONTE", + "timestamp": "2019-01-05" }, { - "uuid": "c620e11a-39ac-4100-b19a-917b1a27d3e5", + "uuid": "544aad06-9860-4dbf-83fd-52eb28942f7d", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "CRONA JUNIUS", - "timestamp": "2017-04-28" + "user": "KSHLERIN LINWOOD", + "timestamp": "2020-04-08" }, { - "uuid": "bbf4e903-df70-4621-be8a-b53bbbcd2666", + "uuid": "90f80dfc-4151-4e3a-8e60-0e26839ce61a", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "TRANTOW ORAN", - "timestamp": "2015-11-29" + "user": "GOYETTE KAVON", + "timestamp": "2022-07-28" }, { - "uuid": "9d9d0c3f-6207-429c-b231-7faa9adc4204", + "uuid": "a0e0a79a-a8db-4e1c-88ad-eda015927dc3", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "MARKS VENA", - "timestamp": "2021-02-24" + "user": "MACEJKOVIC JOVANNY", + "timestamp": "2016-10-27" }, { - "uuid": "c7e946ae-879c-4b5c-b40d-b44b697d63c1", + "uuid": "d5b34a92-750b-4433-ae6f-966af630c205", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "HALVORSON MARTINE", - "timestamp": "2019-12-20" + "user": "CRIST NOLAN", + "timestamp": "2016-09-14" } ], "associatedSites": [ { - "uuid": "9ca923d8-c346-48c1-b684-8004b3a0b1a9", - "dateNoted": "2016-12-09", - "notes": "", - "parcelID": "18129", - "siteID": "17327", - "siteRegistry": true - }, - { - "uuid": "a42d3f66-eb6a-4b50-8c2d-892920c24f36", - "dateNoted": "2022-02-17", + "uuid": "27fcc1b4-9379-4e1f-920a-b0df7a7d15ca", + "dateNoted": "2018-11-08", "notes": "", - "parcelID": "20763", - "siteID": "20362", + "parcelID": "16101", + "siteID": "17014", "siteRegistry": true - }, - { - "uuid": "357b142a-39eb-4133-94be-773b58919087", - "dateNoted": "2014-08-16", - "notes": "", - "parcelID": "17333", - "siteID": "20510", - "siteRegistry": false } ] }, { - "uuid": "552e064d-9498-4cea-945f-43904099538c", - "siteID": 17418, - "address": "198 Jenkins Hollow", - "latitude": 56.5748, - "longitude": -137.9579, - "lastUpdated": "2015-05-23", - "city": "Aliso Viejo", - "region": "Cariboo", - "victoriaFile": "26250-20/5101", + "uuid": "4b18e874-fae8-4c28-baac-ab3d3d4f71e3", + "siteID": 20767, + "address": "78245 Rohan Road", + "latitude": 51.2931, + "longitude": -136.244, + "lastUpdated": "2017-06-17", + "city": "Odessa", + "region": "Vancouver Island/Coast", + "victoriaFile": "26250-20/15141", "regionalFile": "N/A", "parcelIDs": [ - 2215751, - 7579520, - 1403738, - 1630408, - 663851 + 7358435, + 2541177, + 8925804, + 8939040, + 610784 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "e8ab21b5-d86d-4bfb-b5c8-3361ae7837ec", - "createdAt": "2016-08-08", - "completed": "2015-03-07", - "initiated": "2019-12-22", - "ministryContact": "BEER BERTA", + "uuid": "2a70426d-d634-423a-8e39-93ae86e80663", + "createdAt": "2019-03-08", + "completed": "2015-12-04", + "initiated": "2015-06-23", + "ministryContact": "MEDHURST RAMON", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -71307,26 +83979,44 @@ ], "notationParticipants": [ { - "uuid": "dece95ec-1f59-49c7-b792-e465c653cb4d", + "uuid": "bcec5101-9987-4202-90c1-793f3939236b", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "uuid": "bb7c1878-95bd-4398-8f5b-ad75feef2454", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "uuid": "27566b2a-ce30-4604-b483-7fb38a2de742", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "05f8f306-1a98-4e07-86ee-13e832e036d5", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": true }, { - "uuid": "cb2b29b2-f8f2-47a7-86fc-b29ae84e09f8", + "uuid": "212a084a-fd17-41aa-afaf-2aaf394231fc", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true } ], "siteRegistry": true }, { - "uuid": "917c28f3-6794-4335-ae6d-dd6d4f431c68", - "createdAt": "2023-05-17", - "completed": "2019-01-15", - "initiated": "2021-09-23", - "ministryContact": "DICKENS AKEEM", + "uuid": "90c1e192-cd1b-48ff-9f91-0f97ade808b8", + "createdAt": "2023-08-24", + "completed": "2018-11-20", + "initiated": "2018-01-03", + "ministryContact": "BARTON ELISABETH", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -71335,32 +84025,32 @@ ], "notationParticipants": [ { - "uuid": "3f20040f-6771-4353-9de6-e41915c4f2ff", + "uuid": "ba007de6-1ff0-491e-9ade-f328c1a787f8", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "0ecea1ba-a402-456a-8edf-efa69cda9996", + "uuid": "45ece75b-c45b-4845-9944-8d3090f519da", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "888ff5e0-4f21-4c22-9c6c-fdfbdde90c08", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true + "uuid": "7ab0341e-cb25-401c-a312-783131858312", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false } ], "siteRegistry": true }, { - "uuid": "d1c857e9-117e-4129-b031-e7eaf17904ec", - "createdAt": "2014-09-14", - "completed": "2019-11-16", - "initiated": "2020-03-11", - "ministryContact": "SCHUSTER JEANIE", + "uuid": "839deefc-16f1-4a93-802e-3909b2e16df7", + "createdAt": "2021-01-19", + "completed": "2016-12-24", + "initiated": "2014-05-11", + "ministryContact": "FRIESEN VADA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -71369,15 +84059,27 @@ ], "notationParticipants": [ { - "uuid": "86edcfe1-c99a-4b1c-ac9c-675f521d995e", + "uuid": "c41c9129-e750-4352-b7cc-482163594661", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "uuid": "5e3c7460-05e3-4ce7-9127-8d8d67f7cc9c", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false }, { - "uuid": "f8c39a39-eed5-417e-9db2-b09176f77621", + "uuid": "ccb54e25-e5c3-459e-a2bb-8c82730335a5", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "uuid": "633291db-3b3c-4e05-81b8-413fbcd28af3", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false } ], @@ -71386,54 +84088,54 @@ ], "participants": [ { - "uuid": "7f36962c-ade6-4ded-abb8-478c608e389c", - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2020-07-04", - "startDate": "2018-10-31", + "uuid": "8c3a801b-ebdb-4c75-8a77-cb1609609b8d", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2015-08-29", + "startDate": "2018-08-12", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "f27cbd99-35c3-4882-9e3d-c0d014663de6", - "name": "SHELL CANADA PRODUCTS", - "endDate": "2021-01-19", - "startDate": "2018-01-25", + "uuid": "a7173d80-eee2-4f62-8084-d118fc75313e", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2021-12-14", + "startDate": "2020-02-21", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "47632201-4bcc-4ba4-aa79-ff987adf87bf", - "name": "AMET, DOLOR SIT", - "endDate": "2014-10-13", - "startDate": "2018-10-13", + "uuid": "01f3e1ba-4859-4213-8c2a-e370914d441e", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2014-11-22", + "startDate": "2021-12-20", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "d19f274e-88b2-494d-aa5d-b2c18d3eac40", - "name": "AMET, DOLOR SIT", - "endDate": "2021-03-26", - "startDate": "2023-04-11", + "uuid": "48831be4-df31-4fec-9dc8-bdce52b9ff3f", + "name": "IPSUM", + "endDate": "2017-05-26", + "startDate": "2022-07-08", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "4c38299f-9af9-480e-b90a-a9ac900c55c7", + "uuid": "69f139a3-bc09-4ba3-a833-4eba67bde099", "name": "IPSUM", - "endDate": "2016-10-07", - "startDate": "2022-10-15", + "endDate": "2017-05-07", + "startDate": "2020-05-26", "notes": "", "roles": [ "ORGANIZATION" @@ -71441,79 +84143,126 @@ "siteRegistry": true } ], + "documents": [ + { + "uuid": "da9deaa9-f5a9-44fa-9a41-493bf84a2e76", + "siteRegistry": true, + "documentDate": "2015-08-24", + "receivedDate": "2018-11-25", + "uploadedDate": "2016-10-22", + "title": "Summary of Site Conditions, 1537 W 41st Avenue, Vancouver", + "participants": [ + { + "uuid": "e13a05c5-f3b1-4e52-8c39-056e0cba5672", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": true, + "role": "AUTHOR" + } + ] + } + ], "suspectLandUses": [ { - "uuid": "66fd507e-e5c2-4407-a1e7-82e2d3860f47", - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-12-06 (described on Site Profile dated 2019-12-06)", + "uuid": "deb0fd12-d4bd-4db2-afa9-b33a39408ce4", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2013-12-31 (described on Site Profile dated 2013-12-31)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "uuid": "32b8c000-f560-44c6-b337-167445d093b8", + "uuid": "45bcd238-3c4d-4e6c-ac71-aac535d7636b", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-02-04 (described on Site Profile dated 2021-02-04)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "notes": "INSERTED FOR SITE PROFILE DATED 2015-12-22 (described on Site Profile dated 2015-12-22)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], "parcelDescriptions": [ { - "uuid": "f0e0184a-534f-48d3-b982-88520f5952b4", + "uuid": "ad4a4955-8cb9-4e5a-9194-95842e76c908", "siteRegistry": false, - "dateNoted": "2022-04-11", - "parcelID": "15670", - "crownLandUsePIN": "15408", - "crownLandFileNumber": "15552", - "landDescription": "LOT 2 OF LOT 3 BLOCK 2 DISTRICT LOT 2 PLAN 5903" + "dateNoted": "2013-11-12", + "parcelID": "20188", + "crownLandUsePIN": "18755", + "crownLandFileNumber": "15927", + "landDescription": "LOT 2 OF LOT 4 BLOCK 5 DISTRICT LOT 2 PLAN 9381" }, { - "uuid": "126f7bf0-47d0-47c9-99a1-529ef3078483", + "uuid": "7bca6d8f-261a-4dc3-a37f-530eea2eab8c", "siteRegistry": false, - "dateNoted": "2017-09-29", - "parcelID": "20798", - "crownLandUsePIN": "17691", - "crownLandFileNumber": "19887", - "landDescription": "LOT 2 OF LOT 4 BLOCK 1 DISTRICT LOT 1 PLAN 3958" + "dateNoted": "2021-02-08", + "parcelID": "18393", + "crownLandUsePIN": "20038", + "crownLandFileNumber": "17154", + "landDescription": "LOT 1 OF LOT 1 BLOCK 3 DISTRICT LOT 4 PLAN 3620" }, { - "uuid": "afb07ff0-a29e-441c-beef-cd0454d1bf16", + "uuid": "ea974b99-5a4a-4f60-aa80-7e08472b3584", "siteRegistry": false, - "dateNoted": "2014-11-15", - "parcelID": "17605", - "crownLandUsePIN": "20359", - "crownLandFileNumber": "17968", - "landDescription": "LOT 4 OF LOT 3 BLOCK 3 DISTRICT LOT 2 PLAN 4132" - }, - { - "uuid": "35cca8bc-4a8d-4b99-a8be-b3e70b07b8a6", - "siteRegistry": true, - "dateNoted": "2021-02-01", - "parcelID": "18750", - "crownLandUsePIN": "19995", - "crownLandFileNumber": "17428", - "landDescription": "LOT 4 OF LOT 5 BLOCK 2 DISTRICT LOT 1 PLAN 4518" + "dateNoted": "2016-11-03", + "parcelID": "16305", + "crownLandUsePIN": "17440", + "crownLandFileNumber": "15208", + "landDescription": "LOT 5 OF LOT 3 BLOCK 3 DISTRICT LOT 4 PLAN 7765" } ], "siteDisclosures": [ { - "uuid": "5d294ac9-02de-4045-9c0c-0fbe71aa5380", - "siteRegistry": true, - "dateReceived": "2019-10-17", - "dateCompleted": "2019-10-22", - "dateEntered": "2015-01-31", - "dateRegistrar": "2016-03-12", - "dateLocalAuthorityReceived": "2020-05-31", - "summary": "Molestias quas sapiente beatae.", - "informationUsed": "Laborum minus eaque nobis similique sapiente iste mollitia suscipit autem.\nVoluptatibus quisquam aspernatur voluptatem totam velit vitae facere dolor.\nIllum nesciunt aut id laudantium deleniti ab magnam reiciendis.", - "pastOrPresentOrders": "Expedita nemo tempora officia.\nDelectus blanditiis incidunt quibusdam impedit cumque libero.\nAb iusto deleniti animi ipsa mollitia.", + "uuid": "913d055e-eee2-49f5-9a38-17fbf885998d", + "siteRegistry": false, + "dateReceived": "2019-03-13", + "dateCompleted": "2018-11-19", + "dateEntered": "2013-11-12", + "dateRegistrar": "2018-06-10", + "dateLocalAuthorityReceived": "2015-07-20", + "summary": "Natus libero harum a voluptates repellat.\nDolores dolorum enim sit non fugiat aut aut.", + "informationUsed": "Sapiente nobis nemo facilis at error dolor.\nFuga hic tempore sapiente dolorem repudiandae minus tempore possimus.\nImpedit qui id quia at totam.\nLaboriosam ab consectetur nam aperiam.\nVero eos sed modi corrupti quod.", + "pastOrPresentOrders": "Hic aut facilis quia ex beatae eligendi.\nLibero nam provident quia harum ea ullam.\nNecessitatibus sint rerum voluptates ullam tempore error.", "commercialAndIndustrialPurposes": [ { - "uuid": "bfd7912f-5279-4f16-9cfc-2e83759b74ec", + "uuid": "f4398151-2ccd-4c4e-a95b-b2bc9b9650f6", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "uuid": "d03962f0-8344-4f7c-b45f-390228aa204a", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + } + ] + }, + { + "uuid": "534d202b-084d-4f1c-8565-b0cbc6d07744", + "siteRegistry": false, + "dateReceived": "2016-03-27", + "dateCompleted": "2018-04-16", + "dateEntered": "2019-02-24", + "dateRegistrar": "2021-08-14", + "dateLocalAuthorityReceived": "2021-11-04", + "summary": "Eius voluptate atque odit voluptate quam ducimus possimus.\nVitae quo sunt eum aspernatur fugit iste officia placeat.\nVeniam odit accusamus.", + "informationUsed": "Hic aliquid expedita dolorem corrupti est placeat incidunt.\nSunt dignissimos inventore.\nNobis inventore placeat itaque voluptatem qui tenetur in quae dolores.", + "pastOrPresentOrders": "Ratione ad quibusdam perspiciatis itaque eaque tenetur deleniti dolorem ut.\nEligendi autem delectus sed.\nCupiditate molestias ullam fuga amet.", + "commercialAndIndustrialPurposes": [ + { + "uuid": "061a705a-e350-4f5d-92ed-6a54e524911d", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "uuid": "73c5972b-775e-4e27-b63d-ce6d63ef6a3a", "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "uuid": "12517500-3b5e-4e1b-8e99-7aac069b53cb", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false }, { - "uuid": "6adff297-37c7-47b8-9a6d-3621570b4c8a", + "uuid": "b1c5a203-360b-4ca3-aa73-80335498a899", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true @@ -71523,100 +84272,107 @@ ], "activityLog": [ { - "uuid": "9d693134-bd9f-4729-aded-6570741026c8", + "uuid": "e1fc4e21-1fa0-4b0d-8ed3-cc198312e84b", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "KOVACEK ALLY", - "timestamp": "2016-05-04" + "user": "THOMPSON VICTOR", + "timestamp": "2022-06-30" }, { - "uuid": "f9438d42-89da-404f-a609-0c818c52b46d", + "uuid": "d6a521ff-b567-4156-91d4-ea122a4b07f8", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "CARTER CAROLYN", - "timestamp": "2018-08-08" + "user": "FRAMI KRISTOFER", + "timestamp": "2021-07-09" }, { - "uuid": "85ec0baf-5e75-4ef5-a65b-1ec83fcf9f1c", + "uuid": "ee305f51-059d-4546-97d6-fd8f079d48cd", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "GORCZANY FRED", - "timestamp": "2022-09-22" + "user": "KUPHAL ESTELL", + "timestamp": "2016-02-28" }, { - "uuid": "64e2b854-db4d-4fb0-aa78-ce668a9ad8fb", + "uuid": "cce5da4e-66e0-4b45-89d1-bf31576b0705", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "GRADY AIDEN", - "timestamp": "2023-05-17" + "user": "WUCKERT REYMUNDO", + "timestamp": "2018-02-14" }, { - "uuid": "fc3e3fb7-1a19-45d0-a020-e0e7eaccf9a7", - "siteRegistry": true, + "uuid": "c512476c-3958-451f-b0e7-dbb89f0d5761", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "HICKLE SUZANNE", + "timestamp": "2015-12-08" + }, + { + "uuid": "e8607924-b629-4b50-8d6d-372575a513c7", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "GLOVER GREEN", - "timestamp": "2021-09-12" + "user": "FRITSCH BERNIE", + "timestamp": "2016-11-11" }, { - "uuid": "1624e037-2173-410f-b9b8-5f989b692ede", + "uuid": "2da7503b-46a8-4ec5-b275-a6c1d5245a24", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "RUNOLFSSON HANNA", - "timestamp": "2023-02-02" + "user": "FLATLEY STEPHEN", + "timestamp": "2017-10-06" }, { - "uuid": "b751ce31-f2a2-4b76-81f5-c9f7d176dfac", - "siteRegistry": true, + "uuid": "b219a97c-7bd6-48fd-a8ec-5b994329bafc", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "HANSEN GEOFFREY", - "timestamp": "2020-06-13" + "user": "WELCH BELL", + "timestamp": "2017-11-11" } ], "associatedSites": [ { - "uuid": "aac0308c-5d8a-415c-b159-6e0350625e2d", - "dateNoted": "2013-11-05", + "uuid": "c4721c26-b5c6-4574-bcd0-df29f9f07746", + "dateNoted": "2022-07-30", "notes": "", - "parcelID": "18465", - "siteID": "17701", - "siteRegistry": false + "parcelID": "19291", + "siteID": "17088", + "siteRegistry": true }, { - "uuid": "e0b137ef-9af2-4e78-9a7e-24ab7d4302f0", - "dateNoted": "2023-03-19", + "uuid": "6c08efd6-9fe2-47b0-ac5e-93b2803f1bd6", + "dateNoted": "2019-11-03", "notes": "", - "parcelID": "18465", - "siteID": "15432", - "siteRegistry": true + "parcelID": "17932", + "siteID": "18063", + "siteRegistry": false } ] }, { - "uuid": "3f583e33-917f-42fe-987a-accdd6de8fab", - "siteID": 19713, - "address": "957 Rippin Heights", - "latitude": 50.3469, - "longitude": -123.5003, - "lastUpdated": "2016-07-14", - "city": "East Hilbertbury", + "uuid": "ec1f1cd0-d3d7-4417-889b-fc1d81f445ea", + "siteID": 16403, + "address": "241 Edwina Glen", + "latitude": 50.7617, + "longitude": -130.5712, + "lastUpdated": "2021-07-29", + "city": "Pembroke Pines", "region": " North Coast", - "victoriaFile": "26250-20/12450", + "victoriaFile": "26250-20/1641", "regionalFile": "N/A", "parcelIDs": [ - 8740530, - 5488943, - 8107500, - 3342938, - 2439153 + 8449378, + 2412701, + 2930909, + 6048192, + 7759421 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "96e84f32-427d-410d-bcd6-13f248ca4bb8", - "createdAt": "2017-03-15", - "completed": "2019-12-19", - "initiated": "2016-11-12", - "ministryContact": "GREENFELDER OMA", + "uuid": "70935363-585a-4267-b752-26c50f9b9af0", + "createdAt": "2020-08-21", + "completed": "2017-12-14", + "initiated": "2018-11-03", + "ministryContact": "WATSICA LONNIE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -71625,54 +84381,26 @@ ], "notationParticipants": [ { - "uuid": "c8c6978d-0437-45ee-8c79-134cd36caf79", + "uuid": "40744cab-1506-403b-8895-906216b0afbd", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "efbe6aea-3554-4061-b50b-a5a026497cf0", + "uuid": "e31fc84d-2195-4421-988d-d517d79fa0ba", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "32a3288c-1614-4b6a-8166-41209128f405", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - } - ], - "siteRegistry": false - }, - { - "uuid": "b0d9f656-8fa0-4901-ae3b-4d1ec865138f", - "createdAt": "2016-11-25", - "completed": "2020-06-10", - "initiated": "2017-12-27", - "ministryContact": "KAUTZER CLAUDINE", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "uuid": "23627e1e-4f81-47de-97d7-556002fc796f", + "uuid": "012439bc-dc7c-4c17-914b-cc17b73e9b67", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "uuid": "357f5e35-9357-4526-9ba9-97f9f0a73476", - "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true }, { - "uuid": "2f698c90-4e53-4d1b-9154-b3ce124824ef", - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "37ff98eb-f775-462d-851a-b1db23c3908b", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false } @@ -71680,11 +84408,11 @@ "siteRegistry": false }, { - "uuid": "21d27b88-f0b5-4a0b-866c-ac3dd29d9b02", - "createdAt": "2016-10-29", - "completed": "2017-05-14", - "initiated": "2019-01-21", - "ministryContact": "TROMP KRISTOPHER", + "uuid": "aa960e9b-918c-4e41-9672-218587c61947", + "createdAt": "2014-11-29", + "completed": "2015-02-28", + "initiated": "2014-09-24", + "ministryContact": "KAUTZER SHAD", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -71693,34 +84421,16 @@ ], "notationParticipants": [ { - "uuid": "d1d9b3c7-0ab3-4f95-b85b-04c30a7346a1", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "uuid": "b2bf1af1-db21-4dfc-b65b-49605d94a948", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "uuid": "bdab3c22-fa04-4730-b14b-264bc481f193", + "uuid": "3af9d228-9932-4e95-8581-6adf72263e1d", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "uuid": "95b70e76-1eb0-41cc-a616-a7f8782b3c2f", - "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false }, { - "uuid": "efd0ec6a-5d39-42ab-ab9e-4abe56625556", - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "13660dfc-09b9-432c-b59e-575b58144d90", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true } ], "siteRegistry": true @@ -71728,256 +84438,411 @@ ], "participants": [ { - "uuid": "15a4bc08-5213-4246-b159-70d20cbcf2c7", + "uuid": "31ef6512-ed20-4923-a4d4-db0d5bd0eaba", "name": "IPSUM", - "endDate": "2016-08-27", - "startDate": "2018-05-21", + "endDate": "2023-07-07", + "startDate": "2023-09-25", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "4c9729d1-7326-4011-955a-91d7bbc457ba", + "uuid": "3f920ddd-16f0-41a3-a919-183f16fef4cb", "name": "IPSUM", - "endDate": "2016-08-02", - "startDate": "2015-05-06", + "endDate": "2017-08-18", + "startDate": "2022-08-08", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "5ba294fc-4f40-473e-9102-e965322a6055", - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2020-08-01", - "startDate": "2015-06-03", + "uuid": "847fbe1b-8586-44e6-92f6-c2a899422526", + "name": "IPSUM", + "endDate": "2017-04-01", + "startDate": "2021-10-12", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": false }, { - "uuid": "ec37cc88-19c4-4c26-b967-9f773793f7fd", - "name": "SHELL CANADA PRODUCTS", - "endDate": "2017-04-10", - "startDate": "2021-11-27", + "uuid": "2dd11671-f154-4d14-9957-ae2e5d405ee2", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2022-09-03", + "startDate": "2015-08-13", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false + }, + { + "uuid": "83ddf64c-fc1b-491f-97a7-a816c2a9ef37", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2015-03-09", + "startDate": "2023-07-05", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + } + ], + "documents": [ + { + "uuid": "8926fc24-a569-47c1-ab1b-8fae0ab4fae2", + "siteRegistry": true, + "documentDate": "2017-10-27", + "receivedDate": "2020-05-05", + "uploadedDate": "2022-07-13", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "9db96ea5-d10c-4625-b03c-2d5fc62c7720", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "f3c6e8d2-44f6-4250-a7ef-4855f432c7f6", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": true, + "role": "AUTHOR" + } + ] + }, + { + "uuid": "8953008a-432e-4168-9550-4d25dde50d33", + "siteRegistry": true, + "documentDate": "2022-10-02", + "receivedDate": "2020-04-01", + "uploadedDate": "2023-02-17", + "title": "Summary of Site Conditions, 1537 W 41st Avenue, Vancouver", + "participants": [ + { + "uuid": "671c8db7-8166-400e-bdcc-49bcd1d34ece", + "name": "IPSUM", + "siteRegistry": false, + "role": "AUTHOR" + } + ] + }, + { + "uuid": "4032fa03-e84b-474b-aff6-1905e3c83c2e", + "siteRegistry": true, + "documentDate": "2019-01-24", + "receivedDate": "2015-11-14", + "uploadedDate": "2014-11-05", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "c6e412fd-8564-49f1-92e6-bd3aced0bccd", + "name": "IPSUM", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "6d7f6432-7433-48b7-9826-8dc381456dc7", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "0f3fb343-63ac-4c36-8496-9825a6ef5370", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": false, + "role": "AUTHOR" + } + ] + }, + { + "uuid": "619080a6-2073-4763-b41b-152a7f6e2352", + "siteRegistry": true, + "documentDate": "2018-03-25", + "receivedDate": "2021-04-11", + "uploadedDate": "2022-09-22", + "title": "Preliminary Site Investigation, Detailed Site Investigation and Remedial Plan for the Management Area adjacent to the Shell Site at 1503 West 41st Ave", + "participants": [ + { + "uuid": "9a143180-3f7c-4ade-8344-049da4c6fc8e", + "name": "AMET, DOLOR SIT", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "edfc8b51-b36c-4e96-8fd7-ba866122d695", + "name": "AMET, DOLOR SIT", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "859d4587-8e32-4724-b9ad-e55604b12bca", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": true, + "role": "AUTHOR" + } + ] + }, + { + "uuid": "51d01c94-c42b-43b6-8a20-a793cba0a700", + "siteRegistry": true, + "documentDate": "2015-03-28", + "receivedDate": "2015-02-01", + "uploadedDate": "2017-03-13", + "title": "Summary of Site Conditions, 1537 W 41st Avenue, Vancouver", + "participants": [ + { + "uuid": "92abf6a7-c8a5-485b-b5b0-b84430d46dc5", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": false, + "role": "AUTHOR" + } + ] } ], "suspectLandUses": [ { - "uuid": "615e670e-2408-456b-8a6e-e6207cdce811", + "uuid": "8d3e5762-c080-40c9-89ab-9f10a708b766", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2020-11-05 (described on Site Profile dated 2020-11-05)", + "notes": "INSERTED FOR SITE PROFILE DATED 2021-05-10 (described on Site Profile dated 2021-05-10)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "uuid": "bc925c87-0c53-4bea-a58b-9d390c8ab976", + "uuid": "ba053f94-9012-45fe-8acd-d88d9078dfd6", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-01-05 (described on Site Profile dated 2015-01-05)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" - }, - { - "uuid": "869e297c-5a66-4a1d-8714-9f5b78d9973e", - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-06-14 (described on Site Profile dated 2018-06-14)", + "notes": "INSERTED FOR SITE PROFILE DATED 2017-08-04 (described on Site Profile dated 2017-08-04)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "uuid": "5057b722-d99f-42fa-9566-df1776560515", + "uuid": "3c1ebc21-739a-40ae-a6bf-48baf10f87ad", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-05-08 (described on Site Profile dated 2019-05-08)", + "notes": "INSERTED FOR SITE PROFILE DATED 2015-10-02 (described on Site Profile dated 2015-10-02)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "uuid": "82e2fdac-abd2-4c05-a65a-38c194f76045", - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-09-03 (described on Site Profile dated 2017-09-03)", + "uuid": "08d56e5d-37c6-4822-a414-7c9ad8f2917e", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2023-09-09 (described on Site Profile dated 2023-09-09)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], "parcelDescriptions": [ { - "uuid": "26a0bf78-64ca-4956-99df-1abe3c6ae989", + "uuid": "1f351f34-036e-475f-ae42-1e2cacd39038", + "siteRegistry": true, + "dateNoted": "2019-03-01", + "parcelID": "20228", + "crownLandUsePIN": "20586", + "crownLandFileNumber": "16251", + "landDescription": "LOT 1 OF LOT 1 BLOCK 1 DISTRICT LOT 5 PLAN 4374" + }, + { + "uuid": "9f4afb34-2756-44bd-a93b-a083614c0a0a", "siteRegistry": false, - "dateNoted": "2019-11-23", - "parcelID": "15211", - "crownLandUsePIN": "15994", - "crownLandFileNumber": "16284", - "landDescription": "LOT 5 OF LOT 3 BLOCK 1 DISTRICT LOT 1 PLAN 9446" + "dateNoted": "2019-09-27", + "parcelID": "20992", + "crownLandUsePIN": "17576", + "crownLandFileNumber": "20345", + "landDescription": "LOT 3 OF LOT 3 BLOCK 4 DISTRICT LOT 4 PLAN 8327" }, { - "uuid": "d13d672d-7754-4127-a4ac-76b6188b17bc", + "uuid": "201bbd58-5d3d-4c3b-9440-23286c25c2db", "siteRegistry": true, - "dateNoted": "2014-02-03", - "parcelID": "16593", - "crownLandUsePIN": "17658", - "crownLandFileNumber": "18181", - "landDescription": "LOT 4 OF LOT 4 BLOCK 5 DISTRICT LOT 5 PLAN 5628" + "dateNoted": "2018-07-12", + "parcelID": "15847", + "crownLandUsePIN": "19159", + "crownLandFileNumber": "19100", + "landDescription": "LOT 2 OF LOT 2 BLOCK 4 DISTRICT LOT 2 PLAN 9181" }, { - "uuid": "82b97df5-15e5-4e0f-800c-a1476f02fb98", - "siteRegistry": false, - "dateNoted": "2019-02-26", - "parcelID": "16697", - "crownLandUsePIN": "16386", - "crownLandFileNumber": "18263", - "landDescription": "LOT 1 OF LOT 5 BLOCK 1 DISTRICT LOT 4 PLAN 5058" + "uuid": "d6551949-8b34-4870-aeea-d3d02496a8b3", + "siteRegistry": true, + "dateNoted": "2023-06-03", + "parcelID": "15882", + "crownLandUsePIN": "17025", + "crownLandFileNumber": "18952", + "landDescription": "LOT 4 OF LOT 2 BLOCK 1 DISTRICT LOT 1 PLAN 7513" }, { - "uuid": "0896c2bf-c201-419c-a60d-5753424ec936", + "uuid": "3011b25f-b056-4644-98e3-243d5fd5306a", "siteRegistry": false, - "dateNoted": "2020-01-04", - "parcelID": "16697", - "crownLandUsePIN": "16971", - "crownLandFileNumber": "16384", - "landDescription": "LOT 2 OF LOT 1 BLOCK 3 DISTRICT LOT 5 PLAN 5053" + "dateNoted": "2014-07-18", + "parcelID": "19210", + "crownLandUsePIN": "20809", + "crownLandFileNumber": "19346", + "landDescription": "LOT 1 OF LOT 4 BLOCK 4 DISTRICT LOT 4 PLAN 9089" } ], "siteDisclosures": [ { - "uuid": "967b09de-f703-40ae-836d-bb746227b1f0", + "uuid": "95502a3d-63a3-402e-821d-5ea20e758287", "siteRegistry": true, - "dateReceived": "2020-12-14", - "dateCompleted": "2018-05-15", - "dateEntered": "2021-08-07", - "dateRegistrar": "2016-01-15", - "dateLocalAuthorityReceived": "2019-08-10", - "summary": "Architecto distinctio tenetur iste vel suscipit nihil illum.\nTemporibus ipsam culpa.", - "informationUsed": "Numquam totam voluptatum ducimus itaque.\nVeniam mollitia quis velit similique a iure eius at labore.\nNecessitatibus est exercitationem laboriosam maxime eveniet quasi laudantium.\nQuaerat deserunt eligendi quis.", - "pastOrPresentOrders": "Consectetur cupiditate dicta ipsam quas quaerat.\nHic delectus tenetur atque unde sunt fuga facere praesentium.\nLaudantium ut molestias maiores fugit.", + "dateReceived": "2021-09-17", + "dateCompleted": "2014-10-14", + "dateEntered": "2017-09-21", + "dateRegistrar": "2018-05-29", + "dateLocalAuthorityReceived": "2015-05-27", + "summary": "Voluptas veniam ducimus dolore nobis culpa.\nPerferendis placeat corporis.\nArchitecto facere porro ipsam expedita quibusdam in quo excepturi.", + "informationUsed": "Perferendis perferendis placeat facilis similique rerum sequi dolorum cum.\nAliquam occaecati accusamus modi harum molestiae.\nLaborum aperiam exercitationem distinctio sed officia exercitationem.\nQuia inventore repellendus.", + "pastOrPresentOrders": "Repellat impedit laudantium quis.", "commercialAndIndustrialPurposes": [ { - "uuid": "ee38648a-5017-41a3-b2a1-7a3580c51c7c", + "uuid": "49ceaa5f-078d-4de7-bd85-3e66a8f45db8", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "947d86f1-7c94-4546-aa8f-a34dcdab9992", - "scheduleReference": "F1*", + "uuid": "4709f13e-b3c7-4202-89ef-bf14b4123fe7", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false }, { - "uuid": "05503979-219d-40eb-8f1d-e94b827bfa21", + "uuid": "8d34c9dc-a7dc-4a86-9c29-f7c696186c9d", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false + }, + { + "uuid": "d6446f63-94e3-4339-9eac-813426b31e7b", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false } ] } ], "activityLog": [ { - "uuid": "de9cdfa0-5faa-43d3-a535-6171055fcb15", + "uuid": "2ad719a3-8e7e-4dd7-9778-dc6f4ca574d3", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "BAHRINGER TEAGAN", - "timestamp": "2017-04-12" + "user": "SCHROEDER RANDY", + "timestamp": "2023-01-31" }, { - "uuid": "a057d824-0c8a-428a-8075-8359b1736bc9", + "uuid": "61c7d75f-17a0-4a86-b2d6-f3a548501af8", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "ANDERSON JOY", - "timestamp": "2015-06-28" + "user": "DIETRICH JOYCE", + "timestamp": "2021-11-08" }, { - "uuid": "bdc320f2-4c86-4793-a5bd-b1d81917e3eb", - "siteRegistry": false, + "uuid": "6f578dfa-ac51-441c-94ef-89a854d44654", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "OSINSKI JAQUAN", - "timestamp": "2019-02-18" + "user": "BRUEN ARMAND", + "timestamp": "2017-08-18" }, { - "uuid": "1e22423b-fe7c-4961-bbe8-a422a87b1638", + "uuid": "c1a29123-914b-4bd3-b09e-43281d087096", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "CONSIDINE MURIEL", - "timestamp": "2023-10-09" + "user": "LOCKMAN LUKAS", + "timestamp": "2017-12-29" }, { - "uuid": "c4b6ffce-d424-46dd-8dcd-a651ddab05f6", + "uuid": "7b30d580-f884-4863-9c18-2b5bf65ff487", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "FEEST DONATO", - "timestamp": "2020-10-25" + "user": "POUROS JAEDEN", + "timestamp": "2013-12-12" }, { - "uuid": "fc9cefd4-061a-4c14-99b9-baf776db236d", + "uuid": "911252cb-fa49-49a0-939b-eafc4019caa1", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "BRADTKE ALEXANDRA", - "timestamp": "2014-09-09" + "user": "BOEHM JAMIE", + "timestamp": "2014-06-04" }, { - "uuid": "24dfd783-d6f4-4ee0-81ee-3094879727df", - "siteRegistry": false, + "uuid": "bb28cd99-f688-4a53-bd89-43ed5211be64", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "RAYNOR BERNITA", - "timestamp": "2017-07-20" + "user": "FEIL STACEY", + "timestamp": "2015-08-27" }, { - "uuid": "1f6f0369-adbc-444f-a57c-ebdfb18e9cde", - "siteRegistry": false, + "uuid": "3c2ceae1-3cec-49e8-8aa7-cf8bd2a4db79", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "SCHINNER HOLLIE", - "timestamp": "2021-11-04" + "user": "SCHNEIDER LLEWELLYN", + "timestamp": "2019-01-24" }, { - "uuid": "be837829-b8e4-4cbf-8c1e-676414af9bd5", + "uuid": "3445e275-c0fc-487b-a411-eac7b2b0fe49", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "ROGAHN SAMANTHA", - "timestamp": "2016-06-05" + "user": "JENKINS CRISTAL", + "timestamp": "2019-12-20" + }, + { + "uuid": "e16142c6-c977-4238-b12a-8f4392ba3e55", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "WILLMS YOLANDA", + "timestamp": "2020-02-20" } ], "associatedSites": [ { - "uuid": "a08d7f81-7c9c-4488-b24e-648983f2654e", - "dateNoted": "2018-02-12", + "uuid": "c01a4fa1-ab12-4b72-909d-9a28f0d37d8f", + "dateNoted": "2014-06-27", "notes": "", - "parcelID": "16920", - "siteID": "19660", - "siteRegistry": false + "parcelID": "15256", + "siteID": "20693", + "siteRegistry": true + }, + { + "uuid": "802e75a6-d368-4c91-9aeb-84ed8b6aba39", + "dateNoted": "2019-05-03", + "notes": "", + "parcelID": "17851", + "siteID": "20148", + "siteRegistry": true + }, + { + "uuid": "a365ff9c-3c5a-455b-b45d-00c4c6494b15", + "dateNoted": "2015-07-21", + "notes": "", + "parcelID": "20843", + "siteID": "16804", + "siteRegistry": true } ] }, { - "uuid": "19cd52c8-d2a0-425b-8c3b-79726ea8eb01", - "siteID": 20510, - "address": "88745 Mante Curve", - "latitude": 51.5687, - "longitude": -136.7944, - "lastUpdated": "2019-04-20", - "city": "Grand Prairie", + "uuid": "7f911283-9c72-4772-8f4c-4b9902d7bffd", + "siteID": 16918, + "address": "999 Friesen Bridge", + "latitude": 49.3859, + "longitude": -138.0825, + "lastUpdated": "2021-12-28", + "city": "Vidastead", "region": "Mainland/Southwest", - "victoriaFile": "26250-20/1850", + "victoriaFile": "26250-20/12160", "regionalFile": "N/A", "parcelIDs": [ - 3537985, - 2461854, - 7290177, - 5551490, - 780106 + 3868729, + 4800422, + 2351115, + 4556594, + 5707555 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "2d45120a-8e29-433d-8b4f-3b59bf27e5bf", - "createdAt": "2018-09-17", - "completed": "2020-12-19", - "initiated": "2015-07-12", - "ministryContact": "LABADIE DEDRICK", + "uuid": "f7ef03bc-e305-4648-a6ef-2c226d868d28", + "createdAt": "2017-10-14", + "completed": "2023-06-04", + "initiated": "2014-07-16", + "ministryContact": "WINDLER JOHNPAUL", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -71986,26 +84851,32 @@ ], "notationParticipants": [ { - "uuid": "a650a94a-2ca5-4bd4-90a3-2db1a515f841", + "uuid": "e78579c3-b48b-4a1b-b77e-3a4711e6136a", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "315d0554-1721-46f1-b1ba-e8d931896374", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true }, { - "uuid": "79733c81-22ef-40d2-a07a-7d97fbd503aa", + "uuid": "77121180-bb9b-485f-a7d3-7df6cad246f1", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false } ], "siteRegistry": true }, { - "uuid": "1a51bb0a-422a-46fb-a0a0-06198c3222ae", - "createdAt": "2016-04-06", - "completed": "2022-06-06", - "initiated": "2019-08-01", - "ministryContact": "MAYER JO", + "uuid": "59f9f09a-3fc6-4f6c-9ca9-5ad6da54d96c", + "createdAt": "2015-07-11", + "completed": "2015-01-01", + "initiated": "2014-05-06", + "ministryContact": "BOYLE EINAR", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -72014,66 +84885,44 @@ ], "notationParticipants": [ { - "uuid": "46146793-898e-49f4-8051-a7f33cbb7740", - "name": "SHELL CANADA PRODUCTS", + "uuid": "5e0a9596-c306-49c7-8b04-9ecd34d3272c", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false }, { - "uuid": "2e65161e-714d-49a2-8c16-1e44b86c8937", - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "uuid": "2a443d80-876f-4fa2-834f-d466a88b8b2e", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "4b7b4a5c-2c4b-4a77-a922-3bd58fbfdfdb", - "name": "SHELL CANADA PRODUCTS", + "uuid": "ddaeef58-e1a7-427a-bafc-b8959d394497", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true }, { - "uuid": "37ef0538-1d8a-4194-a777-c80a7d493b9f", + "uuid": "d38da9e1-42b0-4435-a9bf-3b07b3ceac53", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true - } - ], - "siteRegistry": false - }, - { - "uuid": "cdd52988-8f4c-4063-bda4-44f98503a028", - "createdAt": "2021-07-21", - "completed": "2014-09-13", - "initiated": "2020-05-26", - "ministryContact": "CARTWRIGHT URSULA", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "uuid": "545a30cf-2e6e-4e75-a241-ba7973cba7d6", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false }, { - "uuid": "57e2df52-d033-4475-ac38-dcc2312b56d9", + "uuid": "bd39066d-cff5-4fc4-92b5-dd01360827f3", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true + "role": "SUBMITTED BY", + "siteRegistry": false } ], "siteRegistry": true }, { - "uuid": "cfc29942-c957-4446-a2b1-206184c8fc29", - "createdAt": "2020-02-15", - "completed": "2018-08-30", - "initiated": "2019-06-27", - "ministryContact": "REICHEL WELDON", + "uuid": "08752190-9f5f-43bc-b663-7b4b189a1a16", + "createdAt": "2023-04-09", + "completed": "2020-01-24", + "initiated": "2020-01-26", + "ministryContact": "LUBOWITZ OTTO", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -72082,31 +84931,25 @@ ], "notationParticipants": [ { - "uuid": "357fc17e-e624-4c10-bd9a-50aa2e816454", - "name": "SHELL CANADA PRODUCTS", + "uuid": "92037ec5-62f8-4e3e-8715-30017441af2b", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "2a5d2a2e-d7b5-4590-92b0-7b230457d94c", - "name": "SHELL CANADA PRODUCTS", + "uuid": "4dde1725-8597-4c4a-84b7-e37107b1ac2b", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false }, { - "uuid": "343f2d3b-83a0-4271-9808-7091649c49cd", - "name": "SHELL CANADA PRODUCTS", + "uuid": "07a6d3a5-7c53-42c4-961a-8546bad826fd", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "b2f596c9-d825-4ec9-9268-1cc81aeec5f0", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "uuid": "0b7059c8-5895-4882-8a9d-f83578fa9552", + "uuid": "da66704a-d1a2-4d70-9f63-b33b46a3e24c", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true @@ -72115,11 +84958,11 @@ "siteRegistry": false }, { - "uuid": "6593de6c-027c-4c0d-af74-04b89d53d689", - "createdAt": "2019-11-04", - "completed": "2019-07-12", - "initiated": "2014-11-09", - "ministryContact": "MANTE LYDIA", + "uuid": "1a00f269-90ab-4f15-9bcf-081917cb29a7", + "createdAt": "2018-10-05", + "completed": "2015-01-18", + "initiated": "2014-06-09", + "ministryContact": "KUNZE JOEY", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -72128,56 +84971,38 @@ ], "notationParticipants": [ { - "uuid": "3d585d61-04e2-4622-8669-0ea9e6d91eff", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "uuid": "ebc95da8-d77c-437c-98dd-4e1fcd107a5e", - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "uuid": "3fc3f857-7e62-476d-9861-4689ad0170e4", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "uuid": "13ebabe5-8367-44f7-a87e-8ef28da9e462", + "uuid": "ac96b03d-c852-4612-86d1-f884684a00a2", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "b8738a7c-c8f1-4f07-acef-ce7a94a38841", - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "f4c9d3d5-dfed-42c2-ba01-b1e89f80414c", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false } ], "participants": [ { - "uuid": "eb4a71d5-10ff-41da-bcbd-d631094d8bda", + "uuid": "ee5281be-5233-4796-ab61-0c2d784c8159", "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2015-10-26", - "startDate": "2017-07-22", + "endDate": "2021-08-21", + "startDate": "2019-04-07", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "fb8cec1f-edf4-4fdc-949c-03d5d06790e5", + "uuid": "c7865426-40e7-4999-8210-b93ce4139065", "name": "SHELL CANADA PRODUCTS", - "endDate": "2016-10-19", - "startDate": "2019-06-15", + "endDate": "2015-02-03", + "startDate": "2015-08-04", "notes": "", "roles": [ "EMPLOYEE" @@ -72185,10 +85010,10 @@ "siteRegistry": true }, { - "uuid": "6d630148-a8ed-490f-9749-e34e790120d8", - "name": "AMET, DOLOR SIT", - "endDate": "2019-11-03", - "startDate": "2021-05-09", + "uuid": "684e26e6-deee-4e31-b836-b5b8adfa9a1c", + "name": "IPSUM", + "endDate": "2023-03-17", + "startDate": "2014-07-13", "notes": "", "roles": [ "ORGANIZATION" @@ -72196,98 +85021,218 @@ "siteRegistry": false }, { - "uuid": "9c88c5b9-8c39-4d48-b35d-f6fb1c3cc201", - "name": "AMET, DOLOR SIT", - "endDate": "2018-02-01", - "startDate": "2022-12-24", + "uuid": "8b2b2cbd-33bd-4e87-a810-cf7f51422411", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2020-01-19", + "startDate": "2020-05-07", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true + }, + { + "uuid": "f5c88262-daea-479e-87fc-4f1881c186ae", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2018-01-18", + "startDate": "2020-02-22", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + } + ], + "documents": [ + { + "uuid": "1d2a2d89-0712-4d69-97d3-fe746abb7c0c", + "siteRegistry": true, + "documentDate": "2021-05-22", + "receivedDate": "2015-10-26", + "uploadedDate": "2015-01-27", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "3437cc9a-b907-4a76-9436-acc02ff806d4", + "name": "IPSUM", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "ac025963-0d5e-4fd9-b400-691d70185557", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": false, + "role": "AUTHOR" + } + ] + }, + { + "uuid": "34eb3f61-171c-4325-bfee-1659e23e139d", + "siteRegistry": true, + "documentDate": "2016-11-13", + "receivedDate": "2014-08-23", + "uploadedDate": "2016-10-05", + "title": "Preliminary Site Investigation, Detailed Site Investigation and Remedial Plan for the Management Area adjacent to the Shell Site at 1503 West 41st Ave", + "participants": [ + { + "uuid": "71e3985a-4328-4ff5-83aa-0f0d5ba37bcf", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "324df746-c920-4e3b-8347-bb732a442e0d", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "df96cf8a-90c8-4e61-84d9-376c50365104", + "name": "IPSUM", + "siteRegistry": false, + "role": "AUTHOR" + } + ] + }, + { + "uuid": "9618ae22-41b0-4497-979c-e86d63210602", + "siteRegistry": true, + "documentDate": "2017-11-04", + "receivedDate": "2022-10-07", + "uploadedDate": "2019-10-08", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "e01140c1-7c8f-4692-93e6-416ad6a54a57", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": false, + "role": "AUTHOR" + } + ] } ], "suspectLandUses": [ { - "uuid": "8ce7360f-fec9-4812-84fa-154453b82b7e", - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2023-01-19 (described on Site Profile dated 2023-01-19)", + "uuid": "086568bb-cdaa-4077-bb83-e5fb88416921", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2021-08-30 (described on Site Profile dated 2021-08-30)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "uuid": "31aba582-e7c3-4529-9faf-73b287ecfeec", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2017-05-04 (described on Site Profile dated 2017-05-04)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "uuid": "1ead995d-d825-4287-b3ad-da82c335c97b", + "uuid": "4575bcee-78c1-467c-835b-9720245bf5ca", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2023-09-04 (described on Site Profile dated 2023-09-04)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "uuid": "69848802-fe3a-476f-b6b8-d81f85b3c9a1", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-11-25 (described on Site Profile dated 2014-11-25)", + "notes": "INSERTED FOR SITE PROFILE DATED 2018-06-08 (described on Site Profile dated 2018-06-08)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "uuid": "53af0e9e-a910-4123-9745-e5308eaaa5ee", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2020-06-19 (described on Site Profile dated 2020-06-19)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], "parcelDescriptions": [ { - "uuid": "6ff499c1-7aa2-4da6-bfe5-f6f6cd30fe87", - "siteRegistry": false, - "dateNoted": "2014-03-28", - "parcelID": "19144", - "crownLandUsePIN": "19714", - "crownLandFileNumber": "16022", - "landDescription": "LOT 3 OF LOT 2 BLOCK 3 DISTRICT LOT 2 PLAN 9071" - }, - { - "uuid": "b9bf7374-054c-4f17-9a0a-1c933e32362c", + "uuid": "ff53450a-156d-4b35-9131-990f7172aa5d", "siteRegistry": true, - "dateNoted": "2016-02-05", - "parcelID": "20164", - "crownLandUsePIN": "19018", - "crownLandFileNumber": "16309", - "landDescription": "LOT 3 OF LOT 2 BLOCK 2 DISTRICT LOT 5 PLAN 3006" + "dateNoted": "2014-11-19", + "parcelID": "16584", + "crownLandUsePIN": "19328", + "crownLandFileNumber": "17497", + "landDescription": "LOT 4 OF LOT 5 BLOCK 4 DISTRICT LOT 4 PLAN 7963" }, { - "uuid": "5ddce32c-990f-439b-ba8c-d3fec8e7ce5f", - "siteRegistry": false, - "dateNoted": "2016-12-20", - "parcelID": "19385", - "crownLandUsePIN": "18866", - "crownLandFileNumber": "16416", - "landDescription": "LOT 1 OF LOT 2 BLOCK 2 DISTRICT LOT 4 PLAN 9624" + "uuid": "b3568124-2597-4a0d-bf96-8c4d71ebd8cb", + "siteRegistry": true, + "dateNoted": "2018-12-26", + "parcelID": "18962", + "crownLandUsePIN": "16291", + "crownLandFileNumber": "18711", + "landDescription": "LOT 1 OF LOT 2 BLOCK 2 DISTRICT LOT 3 PLAN 7200" }, { - "uuid": "76beaa84-706f-43da-a314-bee4a950b08d", - "siteRegistry": false, - "dateNoted": "2014-11-16", - "parcelID": "17517", - "crownLandUsePIN": "17020", - "crownLandFileNumber": "17464", - "landDescription": "LOT 2 OF LOT 5 BLOCK 4 DISTRICT LOT 4 PLAN 6909" + "uuid": "d1e8e0a0-af7b-4274-a225-a68dec259dbe", + "siteRegistry": true, + "dateNoted": "2023-02-12", + "parcelID": "20953", + "crownLandUsePIN": "17306", + "crownLandFileNumber": "20959", + "landDescription": "LOT 5 OF LOT 4 BLOCK 1 DISTRICT LOT 1 PLAN 5615" } ], "siteDisclosures": [ { - "uuid": "2930d339-958e-4fdf-839d-f54e03fbf7c3", - "siteRegistry": true, - "dateReceived": "2017-05-21", - "dateCompleted": "2020-03-17", - "dateEntered": "2014-07-02", - "dateRegistrar": "2019-06-08", - "dateLocalAuthorityReceived": "2015-09-26", - "summary": "Asperiores atque autem labore dolorem numquam quaerat.\nHarum nobis ut molestias tenetur officiis voluptate molestias.", - "informationUsed": "Vero animi soluta fugit animi molestiae corrupti facilis qui labore.\nLaudantium ipsa est aspernatur laborum aut rem qui veniam soluta.\nOdio amet eius sint expedita architecto nihil.\nCommodi asperiores in nam quisquam dolorem beatae eligendi provident unde.", - "pastOrPresentOrders": "Dolore amet exercitationem distinctio sed.\nEarum ipsa iusto non.", + "uuid": "574097a6-3493-4810-b235-2564425a701b", + "siteRegistry": false, + "dateReceived": "2023-10-14", + "dateCompleted": "2019-02-11", + "dateEntered": "2017-08-27", + "dateRegistrar": "2020-09-23", + "dateLocalAuthorityReceived": "2021-05-15", + "summary": "Molestiae error rerum autem tempore rerum nam doloribus.", + "informationUsed": "Deleniti fugit eos unde ducimus pariatur cupiditate.\nFugit voluptas dicta perspiciatis adipisci praesentium natus repellat quo.\nVoluptas quod omnis.\nNatus fugiat rerum.", + "pastOrPresentOrders": "Numquam perferendis enim molestiae cumque illum numquam perspiciatis suscipit blanditiis.", "commercialAndIndustrialPurposes": [ { - "uuid": "bbcc3478-8f86-4ddb-b05f-476145d9471a", + "uuid": "11af073a-5efd-47a6-846e-b900022537f1", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "uuid": "e481733b-bf78-4731-b1bf-b0d61018b814", "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true }, { - "uuid": "67b303ed-187c-4714-a382-1cbe050bf98c", + "uuid": "317531b8-9b09-48a3-9e41-d2e05625aefb", "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + } + ] + }, + { + "uuid": "25d81c6e-954a-4601-8503-d957201f5e9b", + "siteRegistry": true, + "dateReceived": "2018-10-31", + "dateCompleted": "2013-11-16", + "dateEntered": "2021-05-21", + "dateRegistrar": "2017-09-04", + "dateLocalAuthorityReceived": "2014-11-04", + "summary": "Harum accusantium dolorem vel debitis.\nDignissimos impedit quo eos possimus perferendis.", + "informationUsed": "Impedit ex velit neque eos.\nOdio eius at qui impedit voluptatibus explicabo illum.\nEst natus ducimus sed amet laboriosam veritatis.", + "pastOrPresentOrders": "Velit rerum sequi qui perspiciatis aliquam dolor cum autem distinctio.\nPossimus ea sapiente ab est occaecati voluptate neque.\nAutem corporis quos nobis iste.", + "commercialAndIndustrialPurposes": [ + { + "uuid": "c68cad93-43d5-49af-b64f-b01b75a543b7", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { - "uuid": "c4d3f697-c16e-4385-88e1-5936b6b270f8", - "scheduleReference": "F1*", + "uuid": "2af5439f-2eda-408d-af4f-a23a09394f71", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "uuid": "fe472c05-221f-406a-9334-189c622e008b", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false } ] @@ -72295,114 +85240,92 @@ ], "activityLog": [ { - "uuid": "d7fa79b0-af52-48c7-9688-c7d5af2aa0ca", + "uuid": "83fd146b-1fdf-4639-9218-901b604c3f6a", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "LEFFLER-O'KEEFE LOLA", - "timestamp": "2022-04-21" + "user": "SHANAHAN LOYCE", + "timestamp": "2022-02-09" }, { - "uuid": "8e530b3d-d806-401c-b7e3-ba4d379e4ce6", + "uuid": "e5a92e60-50fc-455e-be1a-63c84455526d", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "WUCKERT DERECK", - "timestamp": "2020-09-18" + "user": "BLICK RHIANNA", + "timestamp": "2017-01-09" }, { - "uuid": "7c3a6385-1aba-4b5e-bb14-d5be011b8581", + "uuid": "33b09506-300b-4833-86ab-17107368e924", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "BINS VINCENT", - "timestamp": "2022-08-14" + "user": "MCCLURE DONNELL", + "timestamp": "2019-09-02" }, { - "uuid": "36a294c9-4c6f-469d-9e43-cda2b8152292", + "uuid": "83b0b498-8be1-4ca6-a5c2-13371813b9d3", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "KUB AIMEE", - "timestamp": "2022-07-06" + "user": "KING FABIOLA", + "timestamp": "2019-06-15" }, { - "uuid": "44b98223-62da-4492-b4d5-977b9403d418", + "uuid": "544b1d97-a4af-4e85-b4ec-720d3702cf60", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "KULAS HILARIO", - "timestamp": "2020-06-08" - }, - { - "uuid": "bcc26adc-87a0-4615-8577-a05afd9c77f6", - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "PFANNERSTILL TERRANCE", - "timestamp": "2020-03-04" - }, - { - "uuid": "9c9a370c-251d-46a1-8811-9189532b0b14", - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "GLEICHNER EZEQUIEL", - "timestamp": "2020-04-09" + "user": "VONRUEDEN REGINALD", + "timestamp": "2016-05-26" }, { - "uuid": "1896f616-dc32-496e-9ec7-0ff4a7a099f2", + "uuid": "d0422de4-c35a-48d4-ad1b-58551f5ad9f1", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "DIBBERT RODERICK", - "timestamp": "2018-01-31" + "user": "VONRUEDEN MARTINE", + "timestamp": "2021-06-29" }, { - "uuid": "dd82aed7-97fb-42c8-ba64-27b996d48515", + "uuid": "23419f94-b3d7-48bb-9c67-5690f6579852", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "WELCH CAROL", - "timestamp": "2019-05-13" + "user": "WISOZK MIA", + "timestamp": "2016-07-22" } ], "associatedSites": [ { - "uuid": "f35561d0-295d-4685-8dc4-2631da9fad1a", - "dateNoted": "2014-03-13", - "notes": "", - "parcelID": "18590", - "siteID": "19174", - "siteRegistry": true - }, - { - "uuid": "b4415f2b-1703-492c-9336-6af6b287a903", - "dateNoted": "2023-05-29", + "uuid": "7bd7e822-a61d-4c16-abb0-4aa34fda98e1", + "dateNoted": "2015-08-05", "notes": "", - "parcelID": "19751", - "siteID": "17362", + "parcelID": "19581", + "siteID": "18365", "siteRegistry": false } ] }, { - "uuid": "ccf6cca9-4446-4b40-a94c-a34d7f65e5ec", - "siteID": 16208, - "address": "2548 Wade Crossing", - "latitude": 52.2774, - "longitude": -122.9376, - "lastUpdated": "2018-12-14", - "city": "Ileneborough", + "uuid": "514184a2-4194-4ba4-b03b-85620c44fa45", + "siteID": 15587, + "address": "593 Hickle Ways", + "latitude": 55.4384, + "longitude": -132.0178, + "lastUpdated": "2016-08-08", + "city": "Estrellaburgh", "region": "Vancouver Island/Coast", - "victoriaFile": "26250-20/16421", + "victoriaFile": "26250-20/898", "regionalFile": "N/A", "parcelIDs": [ - 9663155, - 4700555, - 6625531, - 2073109, - 8946164 + 3469164, + 6590766, + 2801661, + 6113294, + 3957755 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "94cb32db-900c-4f65-9c06-071716c00c75", - "createdAt": "2016-05-25", - "completed": "2020-10-29", - "initiated": "2022-08-11", - "ministryContact": "SCHOWALTER MAGALI", + "uuid": "984ed7a8-a8a1-4f84-a106-245e21b08f9c", + "createdAt": "2016-02-05", + "completed": "2021-06-30", + "initiated": "2019-10-06", + "ministryContact": "CUMMINGS DEWAYNE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -72411,44 +85334,106 @@ ], "notationParticipants": [ { - "uuid": "f730160d-1fed-4ea1-a9cc-5872cc4be559", + "uuid": "f0c1bd65-3fc9-4a97-9399-3d440c3bde86", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "ad84bd48-9827-473c-8c5c-cfb3d9204467", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "04421f4c-a68b-4972-adab-83b9aab88f61", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "f23e315b-adf8-4953-aea5-71212fb56aa3", + "uuid": "79801d11-c299-4a28-827a-68718973215b", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "uuid": "0227eab2-f1a4-4e3a-b52c-269b918dce8c", + "createdAt": "2018-01-01", + "completed": "2018-10-25", + "initiated": "2019-02-05", + "ministryContact": "KAUTZER ESTRELLA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "uuid": "ad1ec632-108c-47c6-9171-60d98528ac77", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "44fd53f0-8bc7-4098-8cef-908a62439a02", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "uuid": "23bf7f15-cfae-4d08-8540-c2e7c211c9fe", + "createdAt": "2018-11-10", + "completed": "2014-07-01", + "initiated": "2014-06-11", + "ministryContact": "STREICH NEVA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "uuid": "754060ee-b012-4972-bb4c-0c69bddae666", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "b6d4eba3-a733-4c72-8a23-dd329144f4e2", - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "2fb8e44e-6922-4c27-b1cb-303031b8d60d", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true }, { - "uuid": "fc91f269-9f6b-4e8a-b872-ec1b023975f6", + "uuid": "63ce6ab0-a337-485b-ad5a-fb26ed9cc060", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false + "role": "REQUESTED BY", + "siteRegistry": true }, { - "uuid": "8c5d9cf4-b7dc-4326-b780-99e830a301fb", + "uuid": "dc90b9fd-f9b0-4c1c-abd5-917876d5a84f", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "a87d7911-61cf-4b62-aca0-ed03a37668da", - "createdAt": "2022-07-12", - "completed": "2013-12-20", - "initiated": "2018-09-23", - "ministryContact": "SIPES JUNE", + "uuid": "0efc5caa-00b0-4369-8860-6ea392a56ab9", + "createdAt": "2016-09-28", + "completed": "2023-03-27", + "initiated": "2014-06-22", + "ministryContact": "GUTKOWSKI CULLEN", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -72457,25 +85442,31 @@ ], "notationParticipants": [ { - "uuid": "bb267a00-d5a1-4230-8408-7b3f58d3edae", + "uuid": "8bd4c8d6-3369-4f1d-9c2c-fbf37555371e", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "9b7fd7de-50ee-44a5-a694-b5259daa9efc", + "uuid": "3df3f106-7c95-4d4d-8ffa-dd11a45371ba", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "f998480d-05e8-441c-ad7f-4baa9ae4998d", + "uuid": "539f3e3b-5d78-4073-9ec1-1ba50c62f423", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false }, { - "uuid": "2b16df89-e2df-4456-8ed2-a63f47fabffb", + "uuid": "87e741c7-ddae-4fa8-bf5c-1ac16b8868e8", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "uuid": "2d47f5a8-4223-4451-bc7c-4a3ba2f6bf66", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true @@ -72484,11 +85475,11 @@ "siteRegistry": true }, { - "uuid": "c615f8e5-92ee-4fc7-a893-0a99e635019b", - "createdAt": "2021-07-04", - "completed": "2019-07-16", - "initiated": "2014-07-07", - "ministryContact": "BOYLE THEODORA", + "uuid": "eab53048-a055-4f5a-ac37-10a06f2f7fd7", + "createdAt": "2016-02-11", + "completed": "2021-09-14", + "initiated": "2015-11-14", + "ministryContact": "MARKS KAILEE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -72497,55 +85488,49 @@ ], "notationParticipants": [ { - "uuid": "0df85b4f-91f6-4558-82dd-833f0983765c", - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "6acbdb84-2fa5-478f-b542-cd1914cd9250", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "f777276e-7163-460f-9565-123845327444", + "uuid": "321ea496-3ab6-46c4-8beb-f53f22217490", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true - }, - { - "uuid": "9be29cba-4cfc-4a55-ba6a-5b8d99079d60", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true } ], "participants": [ { - "uuid": "4d5c868d-472d-434f-8b51-dcd10706fb99", - "name": "AMET, DOLOR SIT", - "endDate": "2018-04-29", - "startDate": "2019-01-30", + "uuid": "fc7f7158-33d3-4e65-8af8-e9696573ebf9", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2019-10-31", + "startDate": "2015-01-08", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": false }, { - "uuid": "0139a738-111e-4fce-8329-4fa436a2f275", - "name": "IPSUM", - "endDate": "2015-01-01", - "startDate": "2015-12-03", + "uuid": "d7f33fe1-6a5e-4827-8b78-4fbcfe51fee6", + "name": "AMET, DOLOR SIT", + "endDate": "2021-02-23", + "startDate": "2017-12-14", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "e91836f4-2470-436c-9a57-55fb153cc25c", - "name": "AMET, DOLOR SIT", - "endDate": "2016-02-22", - "startDate": "2021-03-12", + "uuid": "8e39bfd9-888c-4cf6-a5a3-e16cdb247b63", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2018-09-03", + "startDate": "2022-10-22", "notes": "", "roles": [ "EMPLOYEE" @@ -72553,21 +85538,21 @@ "siteRegistry": false }, { - "uuid": "2bac999e-8b38-4282-a41e-abaa54aee5bf", - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2013-10-15", - "startDate": "2023-02-25", + "uuid": "b28aa8b7-4bb2-4c0b-94a0-5f509bfcc0b5", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2015-12-27", + "startDate": "2018-12-09", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "09cebff7-83ce-473f-adb0-1a4efa7ba4f5", - "name": "IPSUM", - "endDate": "2015-07-15", - "startDate": "2015-10-09", + "uuid": "f1754027-f539-42ee-9dd0-451d953b7047", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2022-03-08", + "startDate": "2017-04-21", "notes": "", "roles": [ "ORGANIZATION" @@ -72575,89 +85560,128 @@ "siteRegistry": false } ], + "documents": [ + { + "uuid": "8ee4ec40-af49-4655-afcf-80369d39094c", + "siteRegistry": true, + "documentDate": "2018-04-09", + "receivedDate": "2018-02-10", + "uploadedDate": "2019-12-27", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "a8276811-cc51-47f9-ac83-cddaabe828f0", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "54bb8294-6cae-4e34-b187-3ed4c0a487d6", + "name": "AMET, DOLOR SIT", + "siteRegistry": false, + "role": "AUTHOR" + } + ] + } + ], "suspectLandUses": [ { - "uuid": "b71b9eba-d734-4558-869c-e3d886d2b531", + "uuid": "d59f94ab-1f77-4d32-8b5c-7a131c1b6cfc", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2019-08-08 (described on Site Profile dated 2019-08-08)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "uuid": "7427ef7f-596e-430c-b6f9-3d9acd26743e", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-09-15 (described on Site Profile dated 2017-09-15)", + "notes": "INSERTED FOR SITE PROFILE DATED 2015-09-27 (described on Site Profile dated 2015-09-27)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "uuid": "4642b5fa-8ee6-48bf-a5a9-0463280e78fc", + "uuid": "db699feb-6aba-4aee-8429-7c2373d43067", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-09-17 (described on Site Profile dated 2014-09-17)", + "notes": "INSERTED FOR SITE PROFILE DATED 2017-08-01 (described on Site Profile dated 2017-08-01)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "uuid": "77b61cfe-0715-40ad-a880-11015096afb5", + "uuid": "e41eedb3-8472-450d-a054-fbc03bbec53e", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2017-01-30 (described on Site Profile dated 2017-01-30)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "uuid": "5ffa2a24-3dbe-4553-80d4-5bbcafd11ffb", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2020-03-02 (described on Site Profile dated 2020-03-02)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "notes": "INSERTED FOR SITE PROFILE DATED 2015-08-16 (described on Site Profile dated 2015-08-16)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], "parcelDescriptions": [ { - "uuid": "7e2ca2f8-1ad7-4040-910e-01e0556239cf", + "uuid": "a0149999-e248-4763-b603-ebeff1ad7f49", "siteRegistry": true, - "dateNoted": "2016-06-06", - "parcelID": "17522", - "crownLandUsePIN": "17738", - "crownLandFileNumber": "16242", - "landDescription": "LOT 5 OF LOT 4 BLOCK 5 DISTRICT LOT 4 PLAN 8069" + "dateNoted": "2016-08-05", + "parcelID": "18331", + "crownLandUsePIN": "16671", + "crownLandFileNumber": "19626", + "landDescription": "LOT 5 OF LOT 1 BLOCK 2 DISTRICT LOT 4 PLAN 9576" + }, + { + "uuid": "1fe7851c-9048-4597-82e7-0aafafdbb987", + "siteRegistry": false, + "dateNoted": "2019-03-25", + "parcelID": "16037", + "crownLandUsePIN": "18443", + "crownLandFileNumber": "15941", + "landDescription": "LOT 3 OF LOT 3 BLOCK 2 DISTRICT LOT 3 PLAN 8135" }, { - "uuid": "40cf20cb-ec91-4d38-a582-5d5276b89c60", + "uuid": "edb563f8-d7b3-4edf-8d44-d977ee276de7", "siteRegistry": true, - "dateNoted": "2021-03-06", - "parcelID": "17843", - "crownLandUsePIN": "20252", - "crownLandFileNumber": "18218", - "landDescription": "LOT 3 OF LOT 1 BLOCK 1 DISTRICT LOT 2 PLAN 4831" + "dateNoted": "2023-09-30", + "parcelID": "15490", + "crownLandUsePIN": "19846", + "crownLandFileNumber": "19932", + "landDescription": "LOT 1 OF LOT 5 BLOCK 2 DISTRICT LOT 5 PLAN 7828" }, { - "uuid": "f25de042-c1a0-4197-9369-43d20f323b4e", + "uuid": "89c40b3d-7a35-4bce-b871-99de2ba3d054", "siteRegistry": true, - "dateNoted": "2019-12-28", - "parcelID": "20364", - "crownLandUsePIN": "20185", - "crownLandFileNumber": "19310", - "landDescription": "LOT 2 OF LOT 1 BLOCK 3 DISTRICT LOT 3 PLAN 5203" + "dateNoted": "2019-02-18", + "parcelID": "17059", + "crownLandUsePIN": "17759", + "crownLandFileNumber": "17984", + "landDescription": "LOT 2 OF LOT 1 BLOCK 3 DISTRICT LOT 2 PLAN 3499" } ], "siteDisclosures": [ { - "uuid": "c95d4410-6281-41b4-9a74-e272d780e3c5", + "uuid": "f6ca6615-3951-4055-87d2-045975e8517e", "siteRegistry": true, - "dateReceived": "2017-12-02", - "dateCompleted": "2022-02-27", - "dateEntered": "2018-11-21", - "dateRegistrar": "2021-09-28", - "dateLocalAuthorityReceived": "2016-05-30", - "summary": "Tempore vel rem dolore aut dolorum incidunt.\nTempore impedit debitis assumenda inventore magnam.", - "informationUsed": "Velit itaque reiciendis eos accusamus inventore aliquam quam.\nDolores dolorem occaecati culpa a dolorem ipsam.\nRepellendus nihil asperiores debitis animi quasi voluptatum nemo.", - "pastOrPresentOrders": "Atque reprehenderit cum nam.\nBlanditiis labore culpa dolorum cupiditate temporibus in.", + "dateReceived": "2019-07-12", + "dateCompleted": "2023-07-11", + "dateEntered": "2016-04-18", + "dateRegistrar": "2020-06-05", + "dateLocalAuthorityReceived": "2019-12-11", + "summary": "Aspernatur reiciendis eos tempore.\nTempore impedit ratione occaecati accusamus amet.\nIpsam voluptas iure quasi doloremque natus unde eligendi rerum porro.", + "informationUsed": "Explicabo quidem sunt quis libero impedit aut.\nMagni sit doloribus expedita voluptas adipisci.\nSuscipit praesentium facilis nulla.\nExpedita ut vitae repellendus asperiores consectetur possimus sapiente ex.", + "pastOrPresentOrders": "Suscipit animi maiores voluptates vitae consequatur repellat atque.\nSit ipsam unde voluptas mollitia.", "commercialAndIndustrialPurposes": [ { - "uuid": "1d2f3dcf-e4ba-44c0-8154-a352211e6944", - "scheduleReference": "F2*", + "uuid": "b5866bbf-2e0b-43f9-9845-573d2f1c20e4", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, { - "uuid": "b327ce09-fde8-4d54-9d8d-75691c2f535d", + "uuid": "97b159fc-907d-4b26-b586-890c541e7700", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { - "uuid": "9646efe2-ee87-43c6-be4e-01aad227e711", + "uuid": "c10eea57-4456-44e5-b55d-28385e94e20a", "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true - }, - { - "uuid": "cbff0b88-bf12-42fe-b7f0-401fefbe0781", - "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false } @@ -72666,94 +85690,78 @@ ], "activityLog": [ { - "uuid": "f411645e-8d10-48b9-8f2e-e24e9a773116", + "uuid": "f29ad94d-7c53-44e6-922f-16a235a23a41", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "CARTER HEBER", - "timestamp": "2022-03-07" + "user": "DOOLEY DAWN", + "timestamp": "2015-08-09" }, { - "uuid": "2f0aa847-7eb7-4a19-9d6a-ba7dbaa1bef6", - "siteRegistry": true, + "uuid": "982b027e-29b1-40c4-8dde-a2097b863f1c", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "BALISTRERI NICOLETTE", - "timestamp": "2020-09-07" + "user": "KUHN KRIS", + "timestamp": "2016-11-22" }, { - "uuid": "ba204b0a-353a-4340-be46-e1c92c4791fd", - "siteRegistry": false, + "uuid": "01c490cc-f1cf-451e-81dc-58b66ca75212", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "CORWIN ELOISE", - "timestamp": "2018-11-01" + "user": "RUECKER DAKOTA", + "timestamp": "2021-04-01" }, { - "uuid": "a6968a7c-a8e9-4a3e-8a72-302194b30b7a", + "uuid": "94705e42-505f-4322-8148-a020134e13b6", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "JAST ALANIS", - "timestamp": "2018-09-05" + "user": "KIEHN CHYNA", + "timestamp": "2022-11-17" }, { - "uuid": "e8d09c99-6106-46a0-b6f0-2ab4fb54ae75", + "uuid": "ff18f0c6-e37c-4af0-92b5-01d3a7fc5b25", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "MITCHELL ARNOLD", - "timestamp": "2021-04-01" + "user": "KOVACEK MITTIE", + "timestamp": "2018-08-12" } ], "associatedSites": [ { - "uuid": "12c8799e-fc7c-4e7c-8d2d-0037eae8280c", - "dateNoted": "2019-02-26", - "notes": "", - "parcelID": "20544", - "siteID": "16154", - "siteRegistry": false - }, - { - "uuid": "f3d0bf81-217b-415a-bd0f-3367669b8bc4", - "dateNoted": "2018-08-24", + "uuid": "3bec74d8-c9be-45ab-914b-3cc4e1772d6c", + "dateNoted": "2019-07-13", "notes": "", - "parcelID": "19732", - "siteID": "20482", + "parcelID": "18103", + "siteID": "19360", "siteRegistry": false - }, - { - "uuid": "dad562b9-e96c-4c9d-be6c-8516c8d6c082", - "dateNoted": "2018-03-15", - "notes": "", - "parcelID": "19654", - "siteID": "19713", - "siteRegistry": true } ] }, { - "uuid": "64d58666-e812-4a82-8ae6-daa90598e8ec", - "siteID": 16364, - "address": "2276 Bradtke Locks", - "latitude": 48.23, - "longitude": -138.6131, - "lastUpdated": "2016-06-17", - "city": "Juliushaven", + "uuid": "998879ca-d568-4f3e-bd19-ce0fe638e057", + "siteID": 20562, + "address": "639 Lynch Union", + "latitude": 58.7552, + "longitude": -124.7925, + "lastUpdated": "2018-11-07", + "city": "Abdielburgh", "region": "Kootenay", - "victoriaFile": "26250-20/6456", + "victoriaFile": "26250-20/7480", "regionalFile": "N/A", "parcelIDs": [ - 8446251, - 387703, - 3795500, - 7314273, - 9001818 + 1252954, + 2000444, + 4428697, + 2539286, + 3336147 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "d7a915de-92b7-4ca5-b741-b8e6d2cd6eba", - "createdAt": "2022-11-20", - "completed": "2016-04-27", - "initiated": "2017-02-15", - "ministryContact": "YOST EUGENE", + "uuid": "2ff53ced-91be-4845-a24b-e0508532ee72", + "createdAt": "2018-01-09", + "completed": "2013-12-04", + "initiated": "2017-03-08", + "ministryContact": "LABADIE DONNA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -72762,32 +85770,26 @@ ], "notationParticipants": [ { - "uuid": "5f8be338-c150-40b9-b04d-a21f2575fd1f", + "uuid": "1c00f981-aa84-4071-8b5f-f0a1696cbacc", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "uuid": "08e8493e-f38e-4098-81b8-c87b699e6c47", - "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "9f9b4ad7-a488-4074-beeb-c9b19983428f", + "uuid": "97035cbf-4119-4c79-8803-92b14cd8a7af", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "a9f1f18b-5eb0-494a-8e41-9e4bb348af38", - "createdAt": "2018-05-02", - "completed": "2019-09-05", - "initiated": "2019-01-26", - "ministryContact": "SCHAEFER VERONICA", + "uuid": "3c04ce13-7283-47d5-a4b6-26d232d8383a", + "createdAt": "2015-03-01", + "completed": "2015-10-06", + "initiated": "2019-10-31", + "ministryContact": "HETTINGER JAIME", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -72796,22 +85798,16 @@ ], "notationParticipants": [ { - "uuid": "19ba1c41-e4bd-4e99-a4cb-22cf0364396d", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "uuid": "cc318b25-92c8-4e99-ae02-6256dc124970", + "uuid": "628f68fb-bacd-448e-8327-3fcab9aff304", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "891ee213-def9-4bf7-bb88-d1cb42e86f62", + "uuid": "b3dc2a3e-b1b7-4268-826d-bb58d41b6500", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true + "role": "REQUESTED BY", + "siteRegistry": false } ], "siteRegistry": true @@ -72819,117 +85815,174 @@ ], "participants": [ { - "uuid": "d1a8bffa-0eda-4cef-881c-9fab55375104", - "name": "IPSUM", - "endDate": "2020-04-30", - "startDate": "2017-07-06", + "uuid": "02f35c4f-e73b-4021-84f5-21a9bb1e27f8", + "name": "AMET, DOLOR SIT", + "endDate": "2022-03-22", + "startDate": "2017-06-09", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": false }, { - "uuid": "6671a732-454d-4326-9136-a4d11005b3fc", - "name": "SHELL CANADA PRODUCTS", - "endDate": "2023-07-28", - "startDate": "2016-02-14", + "uuid": "9c52395d-c573-4182-9af2-4d8244dd4c88", + "name": "IPSUM", + "endDate": "2014-06-08", + "startDate": "2022-12-09", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": true }, { - "uuid": "0002a5a9-ebb7-41ee-ac97-29e1ec255eb3", - "name": "SHELL CANADA PRODUCTS", - "endDate": "2022-12-17", - "startDate": "2021-07-07", + "uuid": "23b81e8f-963c-4e30-abec-42a3ad826605", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2017-06-17", + "startDate": "2022-04-20", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": true - }, + "siteRegistry": false + } + ], + "documents": [ { - "uuid": "8aa9a39d-9f5c-4355-b642-3c15cf897b6f", - "name": "AMET, DOLOR SIT", - "endDate": "2021-09-28", - "startDate": "2023-04-11", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": true + "uuid": "f43882a8-f8ed-426f-8ae5-2cd38d87b5ba", + "siteRegistry": false, + "documentDate": "2021-12-09", + "receivedDate": "2022-08-16", + "uploadedDate": "2019-02-25", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "bfd17037-01ad-406b-ac06-ebb95c07cb2d", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "e9ca3513-9350-475a-a0cb-e46cbee268dc", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": false, + "role": "AUTHOR" + } + ] } ], "suspectLandUses": [ { - "uuid": "6b47f059-289f-4a3b-a01f-1e9f89749f69", + "uuid": "26be09f2-4866-413a-802c-e036d2ae05da", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-03-30 (described on Site Profile dated 2018-03-30)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "notes": "INSERTED FOR SITE PROFILE DATED 2015-04-15 (described on Site Profile dated 2015-04-15)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "uuid": "371c205f-ecfa-49fb-91c4-bccb3bffe585", + "uuid": "69cb610c-73d6-405a-b0d1-2d5a745fa3e1", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2023-06-22 (described on Site Profile dated 2023-06-22)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "notes": "INSERTED FOR SITE PROFILE DATED 2015-08-11 (described on Site Profile dated 2015-08-11)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], "parcelDescriptions": [ { - "uuid": "a3b023c7-70e6-4412-a7db-fd50d60ad802", + "uuid": "5b682d27-e851-4521-a5af-c2eb6a8a9346", + "siteRegistry": false, + "dateNoted": "2022-04-21", + "parcelID": "17746", + "crownLandUsePIN": "20165", + "crownLandFileNumber": "16276", + "landDescription": "LOT 2 OF LOT 1 BLOCK 2 DISTRICT LOT 1 PLAN 9773" + }, + { + "uuid": "8ce5ded6-b7be-4eb4-a813-da8422665d09", "siteRegistry": true, - "dateNoted": "2017-06-27", - "parcelID": "16418", - "crownLandUsePIN": "15550", - "crownLandFileNumber": "19517", - "landDescription": "LOT 3 OF LOT 2 BLOCK 2 DISTRICT LOT 5 PLAN 9144" + "dateNoted": "2021-01-22", + "parcelID": "20949", + "crownLandUsePIN": "16455", + "crownLandFileNumber": "20839", + "landDescription": "LOT 3 OF LOT 2 BLOCK 4 DISTRICT LOT 5 PLAN 8138" + }, + { + "uuid": "d589154f-5cce-4a1e-a3ba-cbc5c9acb303", + "siteRegistry": true, + "dateNoted": "2019-01-19", + "parcelID": "20345", + "crownLandUsePIN": "19736", + "crownLandFileNumber": "17664", + "landDescription": "LOT 1 OF LOT 4 BLOCK 2 DISTRICT LOT 2 PLAN 5626" }, { - "uuid": "8e50622a-0e3b-45b9-b71a-c70c424cbdfd", + "uuid": "07325c39-e732-443a-940b-8234580f6439", "siteRegistry": false, - "dateNoted": "2013-11-06", - "parcelID": "19443", - "crownLandUsePIN": "15718", - "crownLandFileNumber": "19785", - "landDescription": "LOT 1 OF LOT 4 BLOCK 5 DISTRICT LOT 5 PLAN 6026" + "dateNoted": "2014-07-18", + "parcelID": "16292", + "crownLandUsePIN": "20793", + "crownLandFileNumber": "17200", + "landDescription": "LOT 1 OF LOT 5 BLOCK 3 DISTRICT LOT 5 PLAN 9520" } ], "siteDisclosures": [ { - "uuid": "410744db-7c1a-4c99-af1b-266399545c87", + "uuid": "7502e636-945a-465f-80c8-aaa0357552bb", "siteRegistry": true, - "dateReceived": "2019-06-05", - "dateCompleted": "2023-01-31", - "dateEntered": "2014-08-30", - "dateRegistrar": "2019-04-09", - "dateLocalAuthorityReceived": "2022-01-17", - "summary": "Ipsa cupiditate aspernatur hic adipisci placeat.\nBeatae nam vero expedita ut quis perferendis vero.", - "informationUsed": "Quidem id soluta.\nNisi autem est ratione numquam reprehenderit aut eos quidem esse.\nQuisquam dolor voluptate architecto minima laudantium at.\nVelit dolorum voluptas dolorem quos.\nVoluptate sapiente eius dignissimos in iusto.", - "pastOrPresentOrders": "Voluptatum omnis ullam quis praesentium aspernatur illo similique.", + "dateReceived": "2014-03-21", + "dateCompleted": "2021-11-24", + "dateEntered": "2020-11-21", + "dateRegistrar": "2019-08-30", + "dateLocalAuthorityReceived": "2017-06-22", + "summary": "Minus quidem vel aperiam laborum explicabo.\nTotam totam doloribus omnis possimus mollitia corrupti ipsa voluptas deleniti.", + "informationUsed": "Ducimus delectus vitae temporibus.\nVoluptate recusandae dolorum quis ipsum non reprehenderit.\nLaborum similique vel ducimus quaerat non beatae minus minima dicta.\nDolore tempore vero debitis dolorem enim dignissimos sequi.\nNostrum odio consequuntur.", + "pastOrPresentOrders": "Autem eaque omnis.\nPraesentium quod nesciunt voluptas amet.\nIste nihil incidunt ipsum assumenda sed.", "commercialAndIndustrialPurposes": [ { - "uuid": "476078f6-32e6-4c72-9653-409d38ec7b44", + "uuid": "7176676d-7d2c-4413-ab3f-b9d25f65f35e", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "uuid": "ee866797-7f9c-474b-a46d-bdca7e164030", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, { - "uuid": "3b354ddc-8123-4544-80e9-1ad113d2c52c", + "uuid": "78586ac4-d508-49ef-aad6-8949e493aa13", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + } + ] + }, + { + "uuid": "37b7f887-2a90-4976-b6b4-03811d3bc0ef", + "siteRegistry": true, + "dateReceived": "2017-02-15", + "dateCompleted": "2021-06-10", + "dateEntered": "2020-04-10", + "dateRegistrar": "2019-04-01", + "dateLocalAuthorityReceived": "2017-11-15", + "summary": "Eos modi tempore quaerat esse alias sit vel inventore.", + "informationUsed": "Sunt tempora tempora atque placeat est suscipit deleniti nesciunt dolorem.\nQuis vero vitae.\nMollitia temporibus esse sapiente laborum.\nAdipisci quos corporis numquam reiciendis.", + "pastOrPresentOrders": "Provident cumque aliquid tempora.", + "commercialAndIndustrialPurposes": [ + { + "uuid": "6dde5723-7b99-4514-ae9b-b2e3105ee607", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { - "uuid": "4d0d4750-b7c1-4500-9572-07d8f174af79", + "uuid": "a57f5bed-7d8d-415c-90a3-7c95a486f338", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "4c34b22d-027f-4b71-b31c-e96527ee71e0", + "uuid": "601c6799-e621-4be4-a33f-b6b9ef490bef", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true @@ -72939,195 +85992,94 @@ ], "activityLog": [ { - "uuid": "e16c8ffa-f698-4f16-8a22-c9758aac3221", - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "CARTER QUINN", - "timestamp": "2015-01-08" - }, - { - "uuid": "6a5bc57d-f0bc-4476-8f7d-0e20ee5fc6a1", - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "GERHOLD MARKUS", - "timestamp": "2022-07-10" - }, - { - "uuid": "6da1d393-51ca-49ca-ae0a-feb6bdcd5691", - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "MAGGIO KOLE", - "timestamp": "2021-07-02" - }, - { - "uuid": "615c72b4-9fba-426b-a16b-93148dffb024", + "uuid": "ff27bd5b-0464-4c89-8acd-3dd80a44d7b7", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "LUBOWITZ ANTWON", - "timestamp": "2017-02-10" + "user": "OBERBRUNNER-LOWE GIOVANNI", + "timestamp": "2017-04-21" }, { - "uuid": "e4e086de-dd90-4f44-8d10-8159db748f95", - "siteRegistry": true, + "uuid": "9a692872-7677-4e57-bbeb-1b04e534dcee", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "HACKETT WYMAN", - "timestamp": "2021-04-15" + "user": "ABSHIRE HIRAM", + "timestamp": "2014-02-11" }, { - "uuid": "7ec7e0ba-4550-46a4-bc05-b03001cc9404", + "uuid": "18a25e61-be13-4ede-b837-101bd200df84", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "VOLKMAN FILOMENA", - "timestamp": "2018-12-22" + "user": "KUNDE NICKLAUS", + "timestamp": "2013-12-30" }, { - "uuid": "aa2b7c53-aebd-4e7f-98c5-2130a7af5ae0", + "uuid": "1df94a64-8774-4a57-a517-53748676b926", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "STROMAN DEVONTE", - "timestamp": "2015-09-17" + "user": "KONOPELSKI MALINDA", + "timestamp": "2022-06-26" }, { - "uuid": "b3372a7c-40de-4cf0-8b2f-a25b98c8909f", + "uuid": "d1818096-195b-47d3-b9ab-13c14a852f86", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "CARTER BRIA", - "timestamp": "2019-08-19" + "user": "POUROS KARI", + "timestamp": "2019-09-28" } ], "associatedSites": [ { - "uuid": "427bd2bc-22b4-4093-a061-202c8a69135d", - "dateNoted": "2016-02-23", + "uuid": "1474111c-bc46-42ef-8ec1-a83ae211d5d3", + "dateNoted": "2016-06-28", "notes": "", - "parcelID": "18107", - "siteID": "15844", - "siteRegistry": true + "parcelID": "16921", + "siteID": "16012", + "siteRegistry": false }, { - "uuid": "dd01f3f8-44a1-4b10-a848-afc95a7873b3", - "dateNoted": "2014-12-29", + "uuid": "c8e98b4c-df44-42f3-a2f8-4fb22f705fea", + "dateNoted": "2020-10-11", "notes": "", - "parcelID": "18921", - "siteID": "19113", - "siteRegistry": false + "parcelID": "18422", + "siteID": "19202", + "siteRegistry": true }, { - "uuid": "68d1e30f-de36-4e4b-9836-7842f36e656a", - "dateNoted": "2017-08-23", + "uuid": "92870c90-b6fd-4e73-836b-e626cccc76de", + "dateNoted": "2017-05-31", "notes": "", - "parcelID": "20786", - "siteID": "18336", + "parcelID": "16490", + "siteID": "15587", "siteRegistry": true } ] }, { - "uuid": "78b66b46-5a29-4441-a324-313abb1bd14d", - "siteID": 18336, - "address": "36838 Deckow Meadows", - "latitude": 53.2808, - "longitude": -124.0322, - "lastUpdated": "2017-09-22", - "city": "Eliworth", - "region": "Vancouver Island/Coast", - "victoriaFile": "26250-20/9830", + "uuid": "faa5db4b-7d8c-4a8d-a84f-8a7f5f24bbdc", + "siteID": 15289, + "address": "8111 Shea Summit", + "latitude": 52.3831, + "longitude": -118.3316, + "lastUpdated": "2015-03-14", + "city": "Los Angeles", + "region": " North Coast", + "victoriaFile": "26250-20/5572", "regionalFile": "N/A", "parcelIDs": [ - 5076576, - 1154751, - 7904623, - 1615916, - 7650699 + 5017302, + 654945, + 8308094, + 7250639, + 2559376 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "73390c3d-28bf-43ae-98cd-dc5520c54429", - "createdAt": "2020-02-16", - "completed": "2021-04-20", - "initiated": "2020-02-28", - "ministryContact": "ZEMLAK DAISY", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "uuid": "3c5af846-b8b9-47ec-adf5-95e6e0f1b5fa", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "uuid": "cf93e030-c8f3-474c-b412-c7086cebde5f", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "uuid": "26aaf0b2-3e68-43e0-8cda-7c0591ef7e9b", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - } - ], - "siteRegistry": false - }, - { - "uuid": "d8bea2b4-975f-4b1e-a450-d89eed4504c5", - "createdAt": "2018-06-03", - "completed": "2017-03-31", - "initiated": "2015-04-10", - "ministryContact": "KESSLER CHADRICK", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "uuid": "4d51efcb-3756-4f54-b9cd-9c05a228c163", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "uuid": "a132bc18-ce87-4f2c-abe7-1ae051d7d505", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "uuid": "3d5d1bc3-137d-4312-96bd-c18d301e2750", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "uuid": "8dca4472-bc8d-4960-b7b4-a34564bacd94", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "uuid": "8f9afe6e-cab2-4060-a05f-78e4078c18a8", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - } - ], - "siteRegistry": true - }, - { - "uuid": "30f21efb-b69d-4a8b-8652-d34455e8ca57", - "createdAt": "2018-07-31", - "completed": "2014-04-13", - "initiated": "2022-01-13", - "ministryContact": "SCHADEN CODY", + "uuid": "39ab5ce9-38e1-4d5d-a2ef-64e144f4d9ab", + "createdAt": "2014-09-30", + "completed": "2017-10-14", + "initiated": "2018-08-28", + "ministryContact": "SCHAEFER EMMETT", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -73136,44 +86088,26 @@ ], "notationParticipants": [ { - "uuid": "c3f12280-9e19-4f8f-b007-edfffca25531", + "uuid": "98fd39aa-5fd5-4eef-a837-b52bbedf6c99", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false }, { - "uuid": "3ac00b37-212e-40fc-86f7-2ea62b2e39e0", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "uuid": "461b6944-4308-4d7a-be8b-c8b33b7c0b8d", + "uuid": "7a42acdf-c429-4094-851a-ab727298c33a", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "uuid": "6ee7e338-f0e5-4ffe-9bfe-e283debc5010", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "uuid": "32dc97b0-0680-447c-a3e6-83ee414c4e9c", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "23682235-303a-4e41-b3d1-b895c54af5cd", - "createdAt": "2014-06-19", - "completed": "2019-06-09", - "initiated": "2020-01-23", - "ministryContact": "WHITE MIREILLE", + "uuid": "0fcb92ec-a7ad-4111-ab2a-290410e17d08", + "createdAt": "2021-03-10", + "completed": "2022-08-08", + "initiated": "2014-04-24", + "ministryContact": "WOLF MAYMIE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -73182,55 +86116,66 @@ ], "notationParticipants": [ { - "uuid": "80ba3b23-def7-4d25-83b0-feeb2493558a", + "uuid": "8a64e062-6b82-4d32-86a3-a654cfb64369", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false }, { - "uuid": "3837ca32-bc34-4f9e-8dd1-3503f96203be", - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "89cc384b-225d-4e05-90b8-9bab0bd858e4", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "5cc352f7-78ed-415a-a1b2-64f12f4e8c5b", + "uuid": "8dcd9979-26d1-4f22-ad47-d0a1343012eb", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true } ], "participants": [ { - "uuid": "195ec865-46d2-46e8-b5c5-4a5f3da660d5", + "uuid": "e7eb301e-dc9d-44ca-9e01-f151e2e80289", "name": "AMET, DOLOR SIT", - "endDate": "2014-07-21", - "startDate": "2022-03-01", + "endDate": "2020-01-21", + "startDate": "2019-12-13", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "uuid": "99752e5a-9e01-47b9-8baf-3c1ba9aaf1d3", + "name": "AMET, DOLOR SIT", + "endDate": "2016-09-21", + "startDate": "2014-08-21", + "notes": "", + "roles": [ + "ORGANIZATION" ], "siteRegistry": false }, { - "uuid": "8c9057e4-e0f9-4376-9cd0-4b144fbfe85f", + "uuid": "da87a213-0748-4904-9d52-b84b9f116e54", "name": "SHELL CANADA PRODUCTS", - "endDate": "2019-08-14", - "startDate": "2019-06-10", + "endDate": "2018-02-17", + "startDate": "2021-09-25", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "b5122695-6b14-4464-86f9-8c1b93501c29", - "name": "IPSUM", - "endDate": "2022-03-30", - "startDate": "2017-08-15", + "uuid": "76d19a97-fbd8-4879-b9fe-9b90aa4ebac3", + "name": "AMET, DOLOR SIT", + "endDate": "2022-05-05", + "startDate": "2021-09-14", "notes": "", "roles": [ "ORGANIZATION" @@ -73238,171 +86183,279 @@ "siteRegistry": true } ], - "suspectLandUses": [ + "documents": [ { - "uuid": "1f6e1506-bd9f-4a50-8d3e-37125eb9976f", + "uuid": "abd98be1-1c40-4ab6-981a-c90cb698956e", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-05-29 (described on Site Profile dated 2016-05-29)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "documentDate": "2019-01-30", + "receivedDate": "2021-06-09", + "uploadedDate": "2017-06-21", + "title": "Preliminary Site Investigation, Detailed Site Investigation and Remedial Plan for the Management Area adjacent to the Shell Site at 1503 West 41st Ave", + "participants": [ + { + "uuid": "2d3fd862-3cc2-429e-a50f-5351e4f8b1c9", + "name": "AMET, DOLOR SIT", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "1fb5fd70-7e91-41c7-8b52-bb78da21a1bd", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": false, + "role": "AUTHOR" + } + ] }, { - "uuid": "41e4997f-07cf-4b2a-a6e7-a9119519ab7a", + "uuid": "50ad12dd-8855-4a7a-bc7d-08f2259d0305", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-07-22 (described on Site Profile dated 2015-07-22)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "documentDate": "2020-02-11", + "receivedDate": "2014-12-20", + "uploadedDate": "2019-12-29", + "title": "Summary of Site Conditions, 1537 W 41st Avenue, Vancouver", + "participants": [ + { + "uuid": "427f2263-e21e-4c47-aa4f-c0ae83d10375", + "name": "AMET, DOLOR SIT", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "bb40bc86-c951-4204-8b37-c59dd81f7bca", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "4d396c9b-6dc0-429a-83c1-4a2fa1c2ac70", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": true, + "role": "AUTHOR" + } + ] + }, + { + "uuid": "afb57c66-eb73-4e96-bcda-b660daec8896", + "siteRegistry": false, + "documentDate": "2014-04-13", + "receivedDate": "2015-12-18", + "uploadedDate": "2019-09-04", + "title": "Preliminary Site Investigation, Detailed Site Investigation and Remedial Plan for the Management Area adjacent to the Shell Site at 1503 West 41st Ave", + "participants": [ + { + "uuid": "317f97ec-43f3-4d58-bee5-12a2521e862a", + "name": "AMET, DOLOR SIT", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "87f11060-cd50-4c9b-a4a8-20255da89b5a", + "name": "IPSUM", + "siteRegistry": false, + "role": "AUTHOR" + } + ] }, { - "uuid": "cfa5593c-e9c7-4a67-a530-cb5749c702bb", + "uuid": "d1a44545-03a4-4f49-9ffe-b3c79c0779d8", + "siteRegistry": false, + "documentDate": "2017-12-10", + "receivedDate": "2016-09-06", + "uploadedDate": "2023-08-07", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "4c540641-5e0f-4633-a43c-c5c5216f707e", + "name": "IPSUM", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "24abd935-2d08-42a7-9a82-51d35f90bf8e", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": false, + "role": "AUTHOR" + } + ] + } + ], + "suspectLandUses": [ + { + "uuid": "1e1ecab7-9dc1-4c9a-9f0b-168345d14703", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-07-20 (described on Site Profile dated 2016-07-20)", + "notes": "INSERTED FOR SITE PROFILE DATED 2022-02-19 (described on Site Profile dated 2022-02-19)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "uuid": "b816940f-68b9-44e7-a5df-00f8d0fa2b3b", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2015-02-04 (described on Site Profile dated 2015-02-04)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "uuid": "c9ad990d-ae43-491d-80e5-c9f60266e63b", + "uuid": "742168d2-bc80-4185-9ce7-ac3e221e832f", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-12-02 (described on Site Profile dated 2022-12-02)", + "notes": "INSERTED FOR SITE PROFILE DATED 2021-12-23 (described on Site Profile dated 2021-12-23)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "uuid": "dd4edd98-af96-4861-9761-0d3400a28dfc", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2018-05-28 (described on Site Profile dated 2018-05-28)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "uuid": "0b2036c7-86a9-4ed9-83a0-4f0f97b92560", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2019-02-03 (described on Site Profile dated 2019-02-03)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], "parcelDescriptions": [ { - "uuid": "cee2f13d-36ae-424e-90b7-65748e7a0353", + "uuid": "1098652d-d69c-4e28-a81b-19be16528776", "siteRegistry": true, - "dateNoted": "2019-10-29", - "parcelID": "20131", - "crownLandUsePIN": "17837", - "crownLandFileNumber": "15505", - "landDescription": "LOT 5 OF LOT 3 BLOCK 5 DISTRICT LOT 2 PLAN 8754" + "dateNoted": "2023-06-29", + "parcelID": "20493", + "crownLandUsePIN": "19090", + "crownLandFileNumber": "18985", + "landDescription": "LOT 1 OF LOT 5 BLOCK 3 DISTRICT LOT 2 PLAN 6989" }, { - "uuid": "3a85ecf1-04e1-4fe6-9d9e-6990d1fd0028", + "uuid": "8f081541-a9c9-4462-8ebe-9b0217ba6d87", "siteRegistry": true, - "dateNoted": "2023-02-13", - "parcelID": "16913", - "crownLandUsePIN": "19580", - "crownLandFileNumber": "19934", - "landDescription": "LOT 5 OF LOT 1 BLOCK 1 DISTRICT LOT 2 PLAN 8098" + "dateNoted": "2016-01-03", + "parcelID": "17227", + "crownLandUsePIN": "20164", + "crownLandFileNumber": "18280", + "landDescription": "LOT 4 OF LOT 4 BLOCK 3 DISTRICT LOT 3 PLAN 4770" }, { - "uuid": "650e008e-e50e-482d-9921-25662c2428f7", + "uuid": "845a77b8-e5b6-4767-aadd-8dc4986bbffc", "siteRegistry": true, - "dateNoted": "2022-06-27", - "parcelID": "15953", - "crownLandUsePIN": "20140", - "crownLandFileNumber": "18429", - "landDescription": "LOT 2 OF LOT 4 BLOCK 2 DISTRICT LOT 3 PLAN 5777" + "dateNoted": "2021-09-26", + "parcelID": "18114", + "crownLandUsePIN": "18315", + "crownLandFileNumber": "20498", + "landDescription": "LOT 4 OF LOT 5 BLOCK 5 DISTRICT LOT 4 PLAN 8383" } ], "siteDisclosures": [ { - "uuid": "406ce52b-ed4c-472a-892e-848bdec564f7", - "siteRegistry": false, - "dateReceived": "2019-09-21", - "dateCompleted": "2022-09-06", - "dateEntered": "2015-07-21", - "dateRegistrar": "2018-03-21", - "dateLocalAuthorityReceived": "2016-11-13", - "summary": "Unde illo architecto.", - "informationUsed": "Officiis recusandae corrupti debitis ratione doloremque error.\nVoluptate a distinctio.\nQuam ipsum doloribus quas earum quidem ratione eius iste eveniet.\nIn molestiae similique adipisci tenetur voluptas itaque.\nBeatae perferendis deserunt quisquam nisi sapiente placeat enim dignissimos.", - "pastOrPresentOrders": "Et voluptatibus molestias molestias consequuntur totam autem nisi deleniti vitae.\nAtque suscipit cumque.\nLibero quod illo sapiente culpa provident perferendis eligendi exercitationem.", + "uuid": "bfee155a-6e17-4b57-9a8b-d456030e8a0c", + "siteRegistry": true, + "dateReceived": "2018-12-04", + "dateCompleted": "2013-12-06", + "dateEntered": "2022-05-05", + "dateRegistrar": "2016-09-16", + "dateLocalAuthorityReceived": "2020-02-29", + "summary": "Placeat quis deserunt.", + "informationUsed": "Repellendus autem eum.\nLabore sint accusantium veritatis optio recusandae laudantium.\nEt cupiditate quidem libero.\nMollitia occaecati mollitia magni veniam nihil labore voluptatibus ad sed.\nSequi consequuntur accusamus velit inventore ipsam.", + "pastOrPresentOrders": "Doloribus omnis autem hic dolorem sed officiis.", "commercialAndIndustrialPurposes": [ { - "uuid": "b48e7f0d-0f64-4762-a554-f41d37e1bf2b", + "uuid": "000d5ef0-c54f-4968-81d3-4304730e337c", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { - "uuid": "e4c834cb-bf21-4958-bd80-70df1c797938", - "scheduleReference": "F1*", + "uuid": "0bfbfe68-0f45-492b-85c0-ffcd2858faf8", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true + }, + { + "uuid": "80ecfab1-2911-4fb0-b130-6780a97feab3", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false } ] } ], "activityLog": [ { - "uuid": "68aec6fc-fb88-4892-b712-727bfe4b8d2f", - "siteRegistry": true, + "uuid": "65754be5-e70d-4cc9-9467-1f15fb8305d8", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "JACOBS KAROLANN", - "timestamp": "2023-04-21" + "user": "ONDRICKA DANA", + "timestamp": "2021-10-02" }, { - "uuid": "0a5215b2-e4cd-4707-8c00-af98763ba561", + "uuid": "344f3785-1d0d-4c53-904d-ebef3fad6033", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "SANFORD SHAYNE", - "timestamp": "2018-07-17" + "user": "LARSON MONTY", + "timestamp": "2023-10-11" }, { - "uuid": "86cd4e87-e647-46d2-a186-4e7a482edbe9", - "siteRegistry": false, + "uuid": "e89d63d5-8910-4de5-aaf3-8d41e343e7c8", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "VEUM FIDEL", - "timestamp": "2021-05-03" + "user": "KEMMER GOLDEN", + "timestamp": "2020-10-09" }, { - "uuid": "4353ed86-c030-485b-9279-b4da8c522f9a", - "siteRegistry": false, + "uuid": "630c9b05-5b3b-4566-8d10-c00a9bd3a2d4", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "ANKUNDING JEREL", - "timestamp": "2019-05-14" + "user": "POLLICH ANNABELL", + "timestamp": "2020-09-24" }, { - "uuid": "ca1747e8-1f9f-4490-b2d3-badc043aad91", - "siteRegistry": false, + "uuid": "81d177f2-951d-4723-a0ec-6a72ee8c62d8", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "ROBEL TERRANCE", - "timestamp": "2021-05-12" + "user": "GUTMANN JAVIER", + "timestamp": "2017-04-21" } ], "associatedSites": [ { - "uuid": "3a91aa34-673a-4f7e-9330-5673c1a70851", - "dateNoted": "2019-02-16", + "uuid": "b687e0cb-cf86-4aa9-a178-a23e62f50336", + "dateNoted": "2021-06-05", "notes": "", - "parcelID": "20657", - "siteID": "16470", + "parcelID": "16125", + "siteID": "17014", "siteRegistry": true }, { - "uuid": "ae868327-c3d2-4cbb-b59d-f28e2cd36d8f", - "dateNoted": "2017-08-07", + "uuid": "fe13a6b1-8446-412d-99de-e6fac8e179b6", + "dateNoted": "2014-07-23", "notes": "", - "parcelID": "16310", - "siteID": "16044", - "siteRegistry": false + "parcelID": "20467", + "siteID": "18736", + "siteRegistry": true } ] }, { - "uuid": "5010ff49-6b8f-4ec2-9fb5-ae55f508965e", - "siteID": 16267, - "address": "675 Ivory Estates", - "latitude": 52.0184, - "longitude": -135.186, - "lastUpdated": "2022-01-21", - "city": "Gutmannborough", - "region": "Vancouver Island/Coast", - "victoriaFile": "26250-20/2593", + "uuid": "e6ac3848-de3b-450a-b927-9fb132644055", + "siteID": 17285, + "address": "2459 Padberg Plain", + "latitude": 55.6866, + "longitude": -127.1143, + "lastUpdated": "2019-12-06", + "city": "Schulistland", + "region": "Thompson-Okanagan", + "victoriaFile": "26250-20/14203", "regionalFile": "N/A", "parcelIDs": [ - 9644477, - 7359847, - 7690709, - 6090451, - 2278713 + 4355326, + 4255759, + 7435634, + 8636997, + 4483000 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "2a752852-a494-41f5-9aea-8f4f6c7213ad", - "createdAt": "2017-04-29", - "completed": "2019-10-22", - "initiated": "2023-08-29", - "ministryContact": "FLATLEY ALBERT", + "uuid": "7e340213-8a2e-479a-82d1-9482807f0ec7", + "createdAt": "2016-02-27", + "completed": "2014-08-29", + "initiated": "2021-09-21", + "ministryContact": "ROMAGUERA MAYA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -73411,20 +86464,32 @@ ], "notationParticipants": [ { - "uuid": "613ff97b-f73b-4e34-ae01-90e536cc7d77", + "uuid": "bf5ce482-f2d7-4a3c-b726-84ab5b751b56", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "3edc9440-d678-4dc7-804e-280cf7c607ef", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "uuid": "f5519f0c-de69-4f4c-a0e2-4db7725ff7c8", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false }, { - "uuid": "65ee39f4-5048-49cd-8fb7-001b96bff7ca", + "uuid": "5086b504-ac93-4b9d-b9c5-0884cbb62c7f", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "4360215e-e6f3-4134-adc7-570a1d12bafe", - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "363828af-fac7-4cda-bb23-9a3ad15f5270", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true } @@ -73432,11 +86497,11 @@ "siteRegistry": false }, { - "uuid": "8db90106-fcf2-4058-a77a-7050321a9ade", - "createdAt": "2017-07-23", - "completed": "2019-09-19", - "initiated": "2023-04-02", - "ministryContact": "WOLFF WADE", + "uuid": "96f208d9-e9fa-405b-bec1-c52b8d27af1b", + "createdAt": "2022-06-28", + "completed": "2014-03-22", + "initiated": "2018-07-31", + "ministryContact": "BARTOLETTI TIMMY", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -73445,26 +86510,32 @@ ], "notationParticipants": [ { - "uuid": "163431d9-656e-437d-b71c-eef1d89838c2", + "uuid": "a01965b5-f157-4f65-8dbb-429adaae75e3", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "caf4131c-a49c-429d-9086-a9e6a55f5d2b", + "uuid": "afe8d93a-7312-4d9b-a256-35e9b2b2bcd7", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "uuid": "fc08ab79-9dc5-4b80-b910-aa6bd4ded0fc", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": true } ], "siteRegistry": false }, { - "uuid": "6619196e-029a-40c4-9134-58f594ce17f0", - "createdAt": "2021-11-14", - "completed": "2016-01-23", - "initiated": "2019-02-03", - "ministryContact": "PARISIAN CHADRICK", + "uuid": "9e8224aa-9f2e-449e-a015-09f5e2260ac2", + "createdAt": "2018-09-19", + "completed": "2015-08-10", + "initiated": "2021-09-30", + "ministryContact": "MCLAUGHLIN CORNELIUS", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -73473,26 +86544,20 @@ ], "notationParticipants": [ { - "uuid": "062a10be-634a-4e42-b150-1f4921dc45f7", + "uuid": "3b6d5b6b-38b2-4065-89f8-0f39d966be9f", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "uuid": "5d484982-36d8-4153-bfc9-b9e62f35de4f", - "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "7fb7e736-9b8c-4f56-ab1b-256beea791c2", + "uuid": "f1a7747e-3ade-4c48-89f3-96e7a41bddc0", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false + "role": "SUBMITTED BY", + "siteRegistry": true }, { - "uuid": "54fde7fb-3b95-43ab-ac48-976c0f4a6e87", - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "4fb9e540-85d9-401a-9504-522620d3c7fe", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true } @@ -73500,11 +86565,11 @@ "siteRegistry": true }, { - "uuid": "df8f0128-318c-49c5-b6ef-86bdf0773f88", - "createdAt": "2020-02-23", - "completed": "2018-08-15", - "initiated": "2014-06-26", - "ministryContact": "ORTIZ ARMANI", + "uuid": "b6d859c7-0fca-4876-b406-47951770b3d7", + "createdAt": "2017-02-24", + "completed": "2016-09-18", + "initiated": "2023-02-03", + "ministryContact": "SHANAHAN ROBERTA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -73513,164 +86578,210 @@ ], "notationParticipants": [ { - "uuid": "521fc24a-56a1-4ed1-9497-8848e33d7747", - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "3a9d34bf-6b26-4091-be22-0fdcd1fdc11f", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "f8073712-bb53-4108-a02e-0767ae30745a", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "uuid": "ed3d685b-be0c-416e-94bb-4136fcf6950d", + "uuid": "85fbaab3-3932-4a6e-8286-3098a7f29f46", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "uuid": "ddc94ff2-87cb-4e62-a5ff-4e162f99e42b", - "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false }, { - "uuid": "ba6b4fb7-c6ce-4f3c-838f-c66a23e2aa34", + "uuid": "319f4aac-c476-4a0a-9547-b8b0aa9ccb0a", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false } ], "participants": [ { - "uuid": "e3e3ac07-0f1d-426d-97a1-6b02d9107b3f", - "name": "IPSUM", - "endDate": "2021-10-09", - "startDate": "2016-04-27", + "uuid": "5ce3a020-1f78-4503-9600-291ec7d77fbc", + "name": "AMET, DOLOR SIT", + "endDate": "2020-01-17", + "startDate": "2018-08-07", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "ca44c7d0-3589-419e-b6dd-0d33a61e1f88", + "uuid": "1ccf0283-cb3d-4a20-bcf3-7a491bf75413", "name": "IPSUM", - "endDate": "2016-11-13", - "startDate": "2017-12-16", + "endDate": "2014-07-29", + "startDate": "2022-06-15", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": true + } + ], + "documents": [ + { + "uuid": "819a8b35-c2b3-429a-813d-58a685f54a71", + "siteRegistry": false, + "documentDate": "2015-03-03", + "receivedDate": "2020-12-02", + "uploadedDate": "2022-07-27", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "595d29f5-d5df-4f7f-be5d-2fdd9a19526d", + "name": "AMET, DOLOR SIT", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "219f487c-e327-42ae-96a0-2f5fe0f70f79", + "name": "IPSUM", + "siteRegistry": false, + "role": "AUTHOR" + } + ] }, { - "uuid": "521a95df-018c-4834-b7b7-6fbd89ed9415", - "name": "IPSUM", - "endDate": "2021-05-24", - "startDate": "2022-01-11", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": false + "uuid": "83cc050a-cc81-43ae-8ec2-d323bb7b5d29", + "siteRegistry": false, + "documentDate": "2022-06-12", + "receivedDate": "2014-03-27", + "uploadedDate": "2021-09-19", + "title": "Preliminary Site Investigation, Detailed Site Investigation and Remedial Plan for the Management Area adjacent to the Shell Site at 1503 West 41st Ave", + "participants": [ + { + "uuid": "df389469-5e0a-49e4-829f-4af2e9c466b5", + "name": "IPSUM", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "ee68c34a-47c0-4140-87a0-97bf937f4cb7", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": true, + "role": "AUTHOR" + } + ] + }, + { + "uuid": "21b90f06-9e3e-488c-a840-08ed4ceb0128", + "siteRegistry": true, + "documentDate": "2016-05-12", + "receivedDate": "2015-08-30", + "uploadedDate": "2022-10-19", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "11d77cb0-dc77-45b7-91c8-a63e121a096f", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": false, + "role": "AUTHOR" + } + ] + }, + { + "uuid": "907d69f4-4fb2-4ca1-8154-05bda23299b4", + "siteRegistry": false, + "documentDate": "2022-09-18", + "receivedDate": "2019-04-18", + "uploadedDate": "2014-09-03", + "title": "Summary of Site Conditions, 1537 W 41st Avenue, Vancouver", + "participants": [ + { + "uuid": "5a7ccac8-cf19-4a68-9854-551186363b1c", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "844fd688-0dd9-4723-b129-aa15952c2cc4", + "name": "AMET, DOLOR SIT", + "siteRegistry": false, + "role": "AUTHOR" + } + ] } ], "suspectLandUses": [ { - "uuid": "4308c430-dfc2-4120-a6e2-8cd6dbed67cb", - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2020-12-02 (described on Site Profile dated 2020-12-02)", + "uuid": "e437993d-9ff8-4080-b49a-175eb4273bb7", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2018-06-15 (described on Site Profile dated 2018-06-15)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "uuid": "f3f718f0-07f7-4885-b1d2-71b3bece4606", - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-03-09 (described on Site Profile dated 2017-03-09)", + "uuid": "cc77ff54-f6ac-475f-bfc3-169204b74788", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2015-08-05 (described on Site Profile dated 2015-08-05)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], "parcelDescriptions": [ { - "uuid": "30dd48ac-5b2f-4350-be83-9c030ebed19e", + "uuid": "4ad8a2b5-7e04-4eff-9a65-ffae35299756", "siteRegistry": true, - "dateNoted": "2014-09-27", - "parcelID": "16455", - "crownLandUsePIN": "20716", - "crownLandFileNumber": "18865", - "landDescription": "LOT 5 OF LOT 1 BLOCK 4 DISTRICT LOT 2 PLAN 9162" + "dateNoted": "2023-06-24", + "parcelID": "19650", + "crownLandUsePIN": "16283", + "crownLandFileNumber": "17555", + "landDescription": "LOT 3 OF LOT 1 BLOCK 5 DISTRICT LOT 3 PLAN 4255" }, { - "uuid": "209d19b1-16a9-4056-9e0c-b18c7cc14ee3", + "uuid": "4f568b93-61a3-4f1d-a203-643f51866c20", "siteRegistry": false, - "dateNoted": "2017-03-19", - "parcelID": "15223", - "crownLandUsePIN": "20808", - "crownLandFileNumber": "20797", - "landDescription": "LOT 5 OF LOT 4 BLOCK 4 DISTRICT LOT 5 PLAN 2983" + "dateNoted": "2018-06-27", + "parcelID": "19279", + "crownLandUsePIN": "17280", + "crownLandFileNumber": "17481", + "landDescription": "LOT 1 OF LOT 2 BLOCK 5 DISTRICT LOT 5 PLAN 7217" }, { - "uuid": "b0c35900-5362-4641-b69d-6aaead82fb58", - "siteRegistry": false, - "dateNoted": "2021-09-26", - "parcelID": "17842", - "crownLandUsePIN": "17533", - "crownLandFileNumber": "17655", - "landDescription": "LOT 2 OF LOT 3 BLOCK 5 DISTRICT LOT 4 PLAN 4031" + "uuid": "318c9908-4606-4257-b378-689b52d8efbb", + "siteRegistry": true, + "dateNoted": "2020-01-31", + "parcelID": "19044", + "crownLandUsePIN": "17584", + "crownLandFileNumber": "20379", + "landDescription": "LOT 2 OF LOT 4 BLOCK 5 DISTRICT LOT 5 PLAN 4290" }, { - "uuid": "1ffaf210-d3b9-4413-bb49-af0867c102e6", + "uuid": "be0f68ab-f863-44bd-9d23-fd0c257c0ca1", "siteRegistry": false, - "dateNoted": "2015-02-15", - "parcelID": "17291", - "crownLandUsePIN": "15644", - "crownLandFileNumber": "16187", - "landDescription": "LOT 3 OF LOT 1 BLOCK 1 DISTRICT LOT 5 PLAN 7475" - }, - { - "uuid": "d412f125-7bdd-4b32-af6b-91938ee4fd70", - "siteRegistry": true, - "dateNoted": "2019-02-12", - "parcelID": "17021", - "crownLandUsePIN": "16007", - "crownLandFileNumber": "19020", - "landDescription": "LOT 5 OF LOT 2 BLOCK 2 DISTRICT LOT 1 PLAN 6035" + "dateNoted": "2022-10-27", + "parcelID": "19085", + "crownLandUsePIN": "15197", + "crownLandFileNumber": "19153", + "landDescription": "LOT 1 OF LOT 4 BLOCK 1 DISTRICT LOT 1 PLAN 5625" } ], "siteDisclosures": [ { - "uuid": "d95d41ce-4319-4724-b635-1e02b4dab395", + "uuid": "ebab494d-7462-4c8b-8133-a95c24e3911d", "siteRegistry": true, - "dateReceived": "2016-06-28", - "dateCompleted": "2022-05-16", - "dateEntered": "2021-07-04", - "dateRegistrar": "2016-09-16", - "dateLocalAuthorityReceived": "2017-09-09", - "summary": "Voluptatibus voluptas temporibus sequi quae laudantium quod laboriosam fugit.\nIn odio sit culpa.\nUnde expedita similique optio maiores.", - "informationUsed": "Eum voluptates tenetur earum maiores.\nRepellat cum totam.\nOdio molestias rem a veniam.", - "pastOrPresentOrders": "Tenetur molestiae veniam suscipit est sed ad officia corporis.\nMinus dolorum repudiandae.", + "dateReceived": "2021-05-08", + "dateCompleted": "2022-05-27", + "dateEntered": "2018-01-15", + "dateRegistrar": "2014-07-12", + "dateLocalAuthorityReceived": "2018-07-14", + "summary": "Recusandae nisi eos nisi illo molestias.", + "informationUsed": "Sint aperiam similique facilis voluptatibus inventore ipsa in delectus.\nMagnam saepe iure ipsum quas blanditiis a sequi ipsa.\nAccusantium nisi suscipit tempora blanditiis fugiat sequi assumenda earum animi.\nRepellendus aperiam ut fuga deleniti explicabo ea tempore autem.\nReprehenderit occaecati rem accusantium perferendis blanditiis voluptates illo.", + "pastOrPresentOrders": "Recusandae quo iste animi repudiandae dolorem nulla modi.", "commercialAndIndustrialPurposes": [ { - "uuid": "955310da-de50-4e35-86ee-e3079fe4a4a3", - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false - }, - { - "uuid": "10b65b81-c0ea-4e04-be43-ae465d900752", + "uuid": "a51a03a3-09b9-405e-bd63-28391e1f0564", "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, { - "uuid": "029c8ad3-ca17-4c12-b738-6d970f938ae6", + "uuid": "e0a73f27-21f2-481f-bd5e-9ef73fc34606", "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false } ] @@ -73678,114 +86789,78 @@ ], "activityLog": [ { - "uuid": "6e6d603c-da79-427e-b2b6-1fc8da8468d0", + "uuid": "50889df7-b5fb-493a-846d-b586edd69707", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "STRACKE ALESSIA", - "timestamp": "2022-07-01" - }, - { - "uuid": "74ae0eab-66ef-4a5f-b782-2da753b76645", - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "LYNCH MYLES", - "timestamp": "2019-07-13" + "user": "NIENOW-HALEY NEAL", + "timestamp": "2020-09-04" }, { - "uuid": "6fa3b288-8ba2-46b8-bc28-924fe8aa96b4", + "uuid": "62619538-d2d1-4c28-8660-487a4f16037c", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "KEEBLER ADRIANA", - "timestamp": "2019-02-20" + "user": "LEBSACK LESLEY", + "timestamp": "2021-06-05" }, { - "uuid": "227835db-58cc-45a2-acd7-4d1d45a8efac", + "uuid": "1a16615c-37d9-4354-ba39-f6060b1c2853", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "SCHAEFER AUDREY", - "timestamp": "2021-06-22" - }, - { - "uuid": "fd9af48b-ce5b-4010-8fab-faacdcb3dd5a", - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "HINTZ JERMEY", - "timestamp": "2019-05-05" - }, - { - "uuid": "6a5700f9-28ad-4c0c-b0e6-f4452c27ed2c", - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "FARRELL EMILE", - "timestamp": "2023-01-19" + "user": "MCDERMOTT MORTON", + "timestamp": "2013-12-19" }, { - "uuid": "f07251f3-f0a3-4a4f-aaf2-697ded4a9182", + "uuid": "9e4045fe-3679-4338-a132-813406c680e6", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "GUTKOWSKI DEVIN", - "timestamp": "2017-06-30" + "user": "BERNIER FAUSTINO", + "timestamp": "2016-06-30" }, { - "uuid": "c41d2acf-24ab-4518-871f-020471ebc6d5", + "uuid": "cc232b32-7d58-4adf-89eb-7581cd0ada0f", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "TOWNE IRVING", - "timestamp": "2022-06-24" - }, - { - "uuid": "a9a74b2b-067c-416b-94a9-a789757ad1e1", - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "KAUTZER JULIANA", - "timestamp": "2019-07-24" + "user": "JOHNSON ANDY", + "timestamp": "2020-01-11" } ], "associatedSites": [ { - "uuid": "3e85b79d-4f85-490c-b3fc-c2c54e8d4ac2", - "dateNoted": "2021-06-24", - "notes": "", - "parcelID": "17867", - "siteID": "18294", - "siteRegistry": true - }, - { - "uuid": "8eca5ab6-b260-421f-ab22-26ab51b97391", - "dateNoted": "2015-12-09", + "uuid": "b394b5d4-41f8-41ad-a571-c49df046ceb6", + "dateNoted": "2015-09-06", "notes": "", - "parcelID": "20728", - "siteID": "18893", + "parcelID": "20566", + "siteID": "19986", "siteRegistry": false } ] }, { - "uuid": "30e5558a-0e1d-4282-ac25-1ea58b0ce9d4", - "siteID": 19522, - "address": "3471 Audie Lane", - "latitude": 52.561, - "longitude": -130.5639, - "lastUpdated": "2021-05-03", - "city": "Lake Rosellabury", - "region": " North Coast", - "victoriaFile": "26250-20/19681", + "uuid": "ae145ed9-0221-47c9-b485-e6dad710a5e6", + "siteID": 17845, + "address": "23827 Trantow Shoals", + "latitude": 57.0359, + "longitude": -118.9173, + "lastUpdated": "2018-06-06", + "city": "West Juliestad", + "region": "Vancouver Island/Coast", + "victoriaFile": "26250-20/19190", "regionalFile": "N/A", "parcelIDs": [ - 4623008, - 8307770, - 5023024, - 4723296, - 8678768 + 1005081, + 8697697, + 3001315, + 3916776, + 5433240 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "b4c6b220-100f-4637-b22b-b1c5fd9c4eb1", - "createdAt": "2019-06-13", - "completed": "2017-10-03", - "initiated": "2018-02-04", - "ministryContact": "WEISSNAT ORAL", + "uuid": "c033ae5b-a7f3-4557-a429-a628a6264ee7", + "createdAt": "2015-10-16", + "completed": "2023-09-15", + "initiated": "2018-01-09", + "ministryContact": "CRONA PAOLO", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -73794,44 +86869,78 @@ ], "notationParticipants": [ { - "uuid": "35818891-fc5d-45ee-b86d-98143eaa33ba", - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "f925fd53-c54d-43da-9028-a59ca8dc002c", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "uuid": "bfdd3d2c-a9c6-4a3f-b477-d59062a38648", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "e5165059-0585-43c2-a878-82243795e75b", - "name": "SHELL CANADA PRODUCTS", + "uuid": "0af9943c-08e9-4be6-a5a3-4abf0043558e", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "55c506ac-519f-4067-af97-8ebcd730b512", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "uuid": "ba1589d6-1635-4d80-a7b9-b87edda5a31e", + "createdAt": "2018-10-01", + "completed": "2019-05-06", + "initiated": "2015-04-03", + "ministryContact": "ALTENWERTH ELEAZAR", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "uuid": "d9b41bc6-d3dc-4e63-a0a5-f118b7b2ea31", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "b1aad4d4-2dab-4abf-85e5-417d36475b80", + "uuid": "9c36635e-b486-4879-bc34-be3d51cde631", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false + "role": "SUBMITTED BY", + "siteRegistry": true }, { - "uuid": "0aebe9f1-b2c0-4dd6-8fee-b32f7b97da67", - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "d9f62b46-477f-43c3-bf30-01953d832524", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "410543d9-f5c9-453c-ad15-6a93feea83bd", + "uuid": "ea4fc90f-a36d-4b19-8c1b-bd2ec58378da", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true } ], "siteRegistry": false }, { - "uuid": "61053e1b-66d0-4764-8a39-386324df30a5", - "createdAt": "2017-12-07", - "completed": "2021-07-15", - "initiated": "2019-07-09", - "ministryContact": "ULLRICH ORLO", + "uuid": "08f2c71d-b127-4f02-9492-3b1a6857c0cd", + "createdAt": "2020-05-20", + "completed": "2018-09-06", + "initiated": "2021-05-11", + "ministryContact": "WUNSCH ALESSANDRA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -73840,71 +86949,129 @@ ], "notationParticipants": [ { - "uuid": "c3a46377-70d8-4803-b92c-ea58574f491e", + "uuid": "e9641523-d97b-4ec1-86bf-41e09886ac3e", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "8e9a349f-dcba-4f75-8107-cf863fe65879", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "d45f5e5d-c15c-46a8-926f-6770ab4e9520", "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "uuid": "69b5449f-ac26-4602-8e9e-cde549636f5a", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "uuid": "721ba085-8c94-4bfd-9a8d-c4170a6ed71b", + "createdAt": "2018-01-03", + "completed": "2017-11-24", + "initiated": "2016-11-19", + "ministryContact": "RIPPIN ROBIN", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "uuid": "5c41afd8-883c-4e7b-89c6-f56a8a8b3e6e", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "57d40096-5303-4df1-a21e-6be1a52cf80a", + "uuid": "a16cf00c-948b-4081-83f3-8389d3b01b08", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "uuid": "315e96e1-89cb-4179-a15d-9cbf658519a0", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true + }, + { + "uuid": "5e5b6759-a03b-4189-93b8-bb54189dd9b6", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "2abfa6da-9316-4e96-874e-025b60d70c81", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true } ], "participants": [ { - "uuid": "8ebee8a9-a01b-4ae9-bc81-71f52db978a9", - "name": "IPSUM", - "endDate": "2017-01-28", - "startDate": "2014-10-19", + "uuid": "e28a49c4-dae8-480c-ae8b-021708ca87bb", + "name": "AMET, DOLOR SIT", + "endDate": "2023-09-09", + "startDate": "2018-10-07", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "f88f1b9a-f8bf-4490-85b4-cd8be189837a", + "uuid": "043beb3a-008f-4859-b742-0a7fd8b2b4a1", "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2014-04-03", - "startDate": "2021-10-17", + "endDate": "2019-11-16", + "startDate": "2015-04-26", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "896e3e33-d8a2-4821-a943-04e218064ba4", - "name": "SHELL CANADA PRODUCTS", - "endDate": "2018-08-16", - "startDate": "2017-01-30", + "uuid": "b09dc332-8f36-42a5-9b6b-8926abfa6c4d", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2021-01-09", + "startDate": "2023-09-22", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "ec9dd4e4-102f-4975-9bda-2f641389663d", - "name": "IPSUM", - "endDate": "2022-01-16", - "startDate": "2014-12-21", + "uuid": "7cddf383-9bd9-461e-a071-f49e5b50e86e", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2015-04-08", + "startDate": "2014-12-06", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "256a6894-41c3-4772-a267-2a39cbab423b", - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2015-02-03", - "startDate": "2021-04-27", + "uuid": "9903c428-7f29-4c96-b9cd-df8c3772d662", + "name": "AMET, DOLOR SIT", + "endDate": "2014-01-19", + "startDate": "2014-03-19", "notes": "", "roles": [ "EMPLOYEE" @@ -73912,189 +87079,284 @@ "siteRegistry": false } ], - "suspectLandUses": [ + "documents": [ { - "uuid": "8dc654dc-ca33-4646-ba75-a4e23ee89d34", + "uuid": "84e5d980-123b-4dcd-894d-e9f968a2ec14", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-01-10 (described on Site Profile dated 2021-01-10)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "documentDate": "2023-01-21", + "receivedDate": "2017-10-16", + "uploadedDate": "2014-10-14", + "title": "Summary of Site Conditions, 1537 W 41st Avenue, Vancouver", + "participants": [ + { + "uuid": "83fca378-eb31-4503-9af9-f4e0d680db80", + "name": "IPSUM", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "498e337f-150f-47a4-b6a3-6c96328deb7b", + "name": "AMET, DOLOR SIT", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "83771b9f-8ed3-43c0-8c51-d3af5671e0be", + "name": "IPSUM", + "siteRegistry": true, + "role": "AUTHOR" + } + ] }, { - "uuid": "993f96c5-f551-4060-9e7d-ad52b2cd5d2c", + "uuid": "9fe6e126-8ab5-495a-8b09-39d4f6225ffa", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-03-04 (described on Site Profile dated 2019-03-04)", + "documentDate": "2022-02-22", + "receivedDate": "2014-07-13", + "uploadedDate": "2020-10-27", + "title": "Preliminary Site Investigation, Detailed Site Investigation and Remedial Plan for the Management Area adjacent to the Shell Site at 1503 West 41st Ave", + "participants": [ + { + "uuid": "7efb0db1-58dd-4fb4-82cd-cdb48b33cd81", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "683fbf2e-7c50-48ef-9d54-77337b5a7d98", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "47115adb-3370-4f57-8829-7262975e4c8f", + "name": "AMET, DOLOR SIT", + "siteRegistry": true, + "role": "AUTHOR" + } + ] + }, + { + "uuid": "b90de143-6cf5-4424-80fb-1150f12087ca", + "siteRegistry": false, + "documentDate": "2019-08-17", + "receivedDate": "2018-08-23", + "uploadedDate": "2016-07-02", + "title": "Preliminary Site Investigation, Detailed Site Investigation and Remedial Plan for the Management Area adjacent to the Shell Site at 1503 West 41st Ave", + "participants": [ + { + "uuid": "ce0d0ef5-3cd5-4bd5-878e-2f01ececc0f9", + "name": "IPSUM", + "siteRegistry": true, + "role": "AUTHOR" + } + ] + } + ], + "suspectLandUses": [ + { + "uuid": "be18c729-a23c-49a5-9057-59dcd8b2fccf", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2017-08-18 (described on Site Profile dated 2017-08-18)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "uuid": "a218fdaf-788b-4482-91c4-74e7c047b5b1", + "uuid": "2f6282de-8af8-4d68-bbb9-a265f11fc396", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-03-16 (described on Site Profile dated 2019-03-16)", + "notes": "INSERTED FOR SITE PROFILE DATED 2015-10-20 (described on Site Profile dated 2015-10-20)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "uuid": "508182ec-70bd-47b9-bb6a-c0e1c4450cdf", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2020-09-27 (described on Site Profile dated 2020-09-27)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "uuid": "4b9d648d-551a-4f03-9d58-c86e9a4245ce", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2017-12-19 (described on Site Profile dated 2017-12-19)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], "parcelDescriptions": [ { - "uuid": "f5397ef9-8318-4288-ac94-fca8994ec90f", + "uuid": "00f5f103-c4d4-4d96-854c-c6bcd9c853b9", "siteRegistry": false, - "dateNoted": "2020-12-11", - "parcelID": "16037", - "crownLandUsePIN": "18399", - "crownLandFileNumber": "16417", - "landDescription": "LOT 3 OF LOT 4 BLOCK 1 DISTRICT LOT 4 PLAN 7376" + "dateNoted": "2018-03-25", + "parcelID": "15401", + "crownLandUsePIN": "20332", + "crownLandFileNumber": "18823", + "landDescription": "LOT 4 OF LOT 5 BLOCK 4 DISTRICT LOT 4 PLAN 6570" }, { - "uuid": "8bf04d60-021b-4561-b610-8ece62723d4d", + "uuid": "f42cb3d9-30ca-4a6e-8ee3-a01981356660", "siteRegistry": true, - "dateNoted": "2014-11-07", - "parcelID": "18241", - "crownLandUsePIN": "16017", - "crownLandFileNumber": "15354", - "landDescription": "LOT 2 OF LOT 2 BLOCK 3 DISTRICT LOT 2 PLAN 4055" + "dateNoted": "2022-09-04", + "parcelID": "18998", + "crownLandUsePIN": "19105", + "crownLandFileNumber": "15944", + "landDescription": "LOT 1 OF LOT 3 BLOCK 4 DISTRICT LOT 3 PLAN 7703" } ], "siteDisclosures": [ { - "uuid": "f5bcc9e7-5789-49d8-b8f3-70248a9cab10", - "siteRegistry": false, - "dateReceived": "2014-10-23", - "dateCompleted": "2016-03-10", - "dateEntered": "2020-05-19", - "dateRegistrar": "2022-08-30", - "dateLocalAuthorityReceived": "2023-07-23", - "summary": "Reprehenderit blanditiis quae aut quod maiores quo vitae dolorem.\nMagni doloremque minima fugit numquam nihil officia.", - "informationUsed": "Nobis eius accusantium culpa vitae laborum non.\nQuo magni non eum mollitia ipsa.\nFugiat est repudiandae et reprehenderit asperiores.", - "pastOrPresentOrders": "Ipsa facilis dolores cum ipsum maxime doloribus odio.\nQuia quaerat facilis veniam nobis.\nUnde unde doloribus.", + "uuid": "d8f2cdb5-a61d-4732-a1b9-3b80f0eb32ea", + "siteRegistry": true, + "dateReceived": "2016-05-27", + "dateCompleted": "2018-12-28", + "dateEntered": "2016-05-11", + "dateRegistrar": "2021-01-10", + "dateLocalAuthorityReceived": "2017-02-18", + "summary": "Voluptatem deleniti corrupti quod harum cumque magni.", + "informationUsed": "Quo in pariatur alias occaecati non qui nobis et.\nPlaceat maiores ullam expedita amet consequatur excepturi ex nostrum.\nAutem atque odit ducimus.\nLibero commodi libero sunt.\nDeserunt consequatur consequuntur ea a asperiores nisi veritatis.", + "pastOrPresentOrders": "Suscipit molestiae numquam ad maiores repudiandae.", "commercialAndIndustrialPurposes": [ { - "uuid": "4b192d95-648d-4c3a-a297-d82945c3c7f2", - "scheduleReference": "F2*", + "uuid": "7fbea592-4c75-4d0d-aec6-a48dfb4c4ba0", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { - "uuid": "527ad977-5176-4531-9d4a-ba0ac2c5afaa", + "uuid": "f4d86666-b0ff-403a-9ed2-9749066fbb75", "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true }, { - "uuid": "5341d923-5a26-401b-9c07-0c9aca79b1da", + "uuid": "6455d0fb-4220-4b83-bbcf-daa402c8034c", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true + }, + { + "uuid": "ec974e9f-d4e9-428a-9014-b5a5323c6a15", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true } ] } ], "activityLog": [ { - "uuid": "34702782-6816-4fac-9170-55358c1bb722", - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "FERRY JENNINGS", - "timestamp": "2022-08-15" - }, - { - "uuid": "d8d8e7f5-5c04-470d-9766-58f87bcc5c86", - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "PURDY TYRELL", - "timestamp": "2017-09-21" - }, - { - "uuid": "a76362f1-b9b4-4578-8ea2-d48da67a3bca", + "uuid": "dcf272bc-6eac-4e3e-9c13-5cd817e61b96", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "FRITSCH ESTHER", - "timestamp": "2015-04-10" + "user": "KUHLMAN JAYLIN", + "timestamp": "2020-05-25" }, { - "uuid": "35f973a2-61ac-4161-93ea-9be3c5100d8f", + "uuid": "47c66345-82c0-4bf0-af2f-9590a0f2cb38", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "GREENHOLT MISSOURI", - "timestamp": "2019-03-20" + "user": "SPENCER RASHAD", + "timestamp": "2018-02-24" }, { - "uuid": "841a6d10-bb45-44b9-a09d-809a1ec6c63e", + "uuid": "a76e4f3e-eae3-4b67-ae79-8c6d0140e530", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "GLOVER MAKAYLA", - "timestamp": "2017-04-27" + "user": "TREUTEL MAVIS", + "timestamp": "2019-12-03" }, { - "uuid": "4cfeac25-1667-4918-a232-1c553a422a9c", - "siteRegistry": false, + "uuid": "3ab8aa3d-1922-4554-8fe7-95e54f31a427", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "BAILEY CARSON", - "timestamp": "2021-10-20" + "user": "REICHERT JODY", + "timestamp": "2017-08-15" }, { - "uuid": "d2f70786-314e-4720-9d04-de30894fe8d9", - "siteRegistry": false, + "uuid": "c1341785-cac6-4cbb-bcf9-a6c8d6572985", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "YUNDT BRIA", - "timestamp": "2017-11-05" + "user": "STARK ABE", + "timestamp": "2018-02-18" }, { - "uuid": "460861b3-d104-49a5-9947-6f1e41fc0a1f", + "uuid": "4897a303-cf93-48d8-9349-3076796dd53e", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "FRANEY BRAIN", - "timestamp": "2014-04-24" + "user": "DOOLEY PRINCE", + "timestamp": "2021-05-11" }, { - "uuid": "9202abc2-9e0f-4420-b4a7-36bc74f9f13b", + "uuid": "c42a8f4e-f441-474d-af86-8d040859bfa4", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "WOLF AGNES", - "timestamp": "2023-02-06" + "user": "GRADY DELL", + "timestamp": "2017-08-19" }, { - "uuid": "46d4fad2-58c4-4f22-a66c-1c5d03242196", + "uuid": "05c9dacb-34a7-45d2-812c-9c2c2bdd4b79", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "DENESIK DEONDRE", - "timestamp": "2016-09-23" + "user": "LARKIN TRINITY", + "timestamp": "2020-02-18" + }, + { + "uuid": "1f453d7e-5b8d-4d3d-9c4f-25b267771a9f", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "MCGLYNN MAUDE", + "timestamp": "2013-10-19" } ], "associatedSites": [ { - "uuid": "9f3e4f42-8594-4feb-916e-1c2817766c60", - "dateNoted": "2022-08-02", + "uuid": "338974b9-62c4-4273-9db6-653eb1c270a7", + "dateNoted": "2016-04-18", + "notes": "", + "parcelID": "18312", + "siteID": "20148", + "siteRegistry": false + }, + { + "uuid": "07b4333c-653b-478f-82fd-4a9db829f556", + "dateNoted": "2022-10-30", + "notes": "", + "parcelID": "19248", + "siteID": "17989", + "siteRegistry": false + }, + { + "uuid": "5e96efb3-8e43-40b8-88fc-bd7ad83572f7", + "dateNoted": "2019-01-21", "notes": "", - "parcelID": "15418", - "siteID": "20496", + "parcelID": "19777", + "siteID": "18030", "siteRegistry": false } ] }, { - "uuid": "5804250e-280a-499f-ac94-4166a254ef7a", - "siteID": 20112, - "address": "513 Ruecker Spring", - "latitude": 52.0796, - "longitude": -138.1973, - "lastUpdated": "2017-04-01", - "city": "Perth Amboy", - "region": "Kootenay", - "victoriaFile": "26250-20/4942", + "uuid": "b6e71326-2d21-4dd3-bb6d-a2b158c77578", + "siteID": 19512, + "address": "282 Rubie Springs", + "latitude": 55.5777, + "longitude": -129.6089, + "lastUpdated": "2015-04-21", + "city": "Jonesburgh", + "region": "Mainland/Southwest", + "victoriaFile": "26250-20/12248", "regionalFile": "N/A", "parcelIDs": [ - 4143145, - 5782598, - 1112515, - 5920918, - 9820019 + 8491015, + 8150792, + 4164848, + 5197789, + 7832409 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "81bf5479-48d0-4992-ac1d-67911772ccd9", - "createdAt": "2020-08-14", - "completed": "2022-02-19", - "initiated": "2019-05-16", - "ministryContact": "SENGER EDUARDO", + "uuid": "c8eaf5d2-bdf5-4290-8e1c-aba475d8f420", + "createdAt": "2015-07-02", + "completed": "2015-09-11", + "initiated": "2016-05-17", + "ministryContact": "WAELCHI LELIA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -74103,38 +87365,32 @@ ], "notationParticipants": [ { - "uuid": "935618be-4285-4d1e-ab67-b07394ef4b9f", - "name": "SHELL CANADA PRODUCTS", + "uuid": "3c566a0c-a1db-4ea2-b140-ca564964ba64", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true }, { - "uuid": "5b985aea-8408-4e23-8cd0-db9aca66bc9f", + "uuid": "962ea14b-1ab7-4a8f-9295-da6917b800ff", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true + "role": "SUBMITTED BY", + "siteRegistry": false }, { - "uuid": "4c9b877b-a26c-4367-9af7-342dbeebe71a", + "uuid": "271af404-5d08-4e1f-9a20-1b9ea1dc5c45", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false - }, - { - "uuid": "16bcf3a7-76dd-4111-9c46-6104e7921894", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true } ], "siteRegistry": true }, { - "uuid": "5098d000-7bcf-410c-8d07-a25645f36059", - "createdAt": "2017-04-02", - "completed": "2016-05-29", - "initiated": "2017-08-02", - "ministryContact": "DONNELLY EMMALEE", + "uuid": "eb534931-e21f-4f27-bfa8-d677287ba05c", + "createdAt": "2023-03-04", + "completed": "2022-02-13", + "initiated": "2017-08-29", + "ministryContact": "JOHNS KATELYN", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -74143,73 +87399,50 @@ ], "notationParticipants": [ { - "uuid": "b0e55859-1aff-4eb9-9056-dd460dcc8e52", + "uuid": "3afa65cf-aaa7-4b05-8ad8-f4a336397dae", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "uuid": "0dea05d9-d160-48b5-91a8-5bea0a550c67", - "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true }, { - "uuid": "604846ed-c812-45bd-ab83-5cc0a0b638fc", + "uuid": "a60b348d-f0cb-4626-8393-09391b5b76bb", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "be60e135-b4b7-4190-a918-49912b2ea5b8", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - } - ], - "siteRegistry": false - }, - { - "uuid": "44fab54b-d1b4-40ad-8ca7-cf8153252f17", - "createdAt": "2019-08-15", - "completed": "2014-12-16", - "initiated": "2020-12-21", - "ministryContact": "LITTEL MANDY", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "uuid": "296291b3-1418-45e3-983b-ce4784738f2a", + "uuid": "6af896c0-dcd6-42b3-998b-345ba60e9406", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "c3a8b4a1-815c-4614-95ef-927efb1455c0", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "uuid": "00f387a0-c985-4f9d-b621-c86279caa329", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": false - }, - { - "uuid": "3869e3c0-70bf-4d8f-9a25-5e86a1bb5311", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false } ], "participants": [ { - "uuid": "cf30f8e4-e9f2-49fe-b3e3-2a0d68290120", + "uuid": "e50455a4-10d9-4ea0-9c10-b3ca84698cd9", "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2016-11-07", - "startDate": "2017-01-17", + "endDate": "2016-10-14", + "startDate": "2015-10-17", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "uuid": "ff3f8f7f-6e1c-41c0-a0f0-c99ceb1f7c75", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2016-04-12", + "startDate": "2019-12-29", "notes": "", "roles": [ "EMPLOYEE" @@ -74217,10 +87450,32 @@ "siteRegistry": false }, { - "uuid": "e2d8c447-728d-4fd8-a0e4-cd09b3d4d642", + "uuid": "615b475d-a869-4c2a-a867-aa6822ae7ded", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2021-03-06", + "startDate": "2018-11-03", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "uuid": "5db976bd-0bdb-4de3-9635-c308fe78a9a7", "name": "SHELL CANADA PRODUCTS", - "endDate": "2019-08-25", - "startDate": "2016-11-25", + "endDate": "2021-12-17", + "startDate": "2014-06-30", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "uuid": "829abb41-cb3f-4b0a-b18b-39c629764d3d", + "name": "AMET, DOLOR SIT", + "endDate": "2021-12-16", + "startDate": "2015-04-09", "notes": "", "roles": [ "EMPLOYEE" @@ -74228,204 +87483,234 @@ "siteRegistry": false } ], + "documents": [ + { + "uuid": "289fc4b1-6b07-4dc8-978f-47616eaab567", + "siteRegistry": false, + "documentDate": "2022-07-18", + "receivedDate": "2016-10-02", + "uploadedDate": "2015-07-26", + "title": "Summary of Site Conditions, 1537 W 41st Avenue, Vancouver", + "participants": [ + { + "uuid": "4ef6c0df-05a7-4e57-9ff1-b5287f20bbf5", + "name": "AMET, DOLOR SIT", + "siteRegistry": true, + "role": "AUTHOR" + } + ] + } + ], "suspectLandUses": [ { - "uuid": "a77f08ce-1e5e-4032-9671-d1757f1bc38c", + "uuid": "d51fcaba-8bae-4df4-86fc-bc2eaea8ef04", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-03-23 (described on Site Profile dated 2022-03-23)", + "notes": "INSERTED FOR SITE PROFILE DATED 2019-06-20 (described on Site Profile dated 2019-06-20)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "uuid": "dcc89796-9fbb-449b-92fb-b62127deebf1", - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-07-10 (described on Site Profile dated 2016-07-10)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" - } - ], - "parcelDescriptions": [ - { - "uuid": "33950729-a8c8-4aeb-af98-689d13489198", + "uuid": "600470b6-1285-4189-85c2-606dac3470b5", "siteRegistry": true, - "dateNoted": "2022-01-08", - "parcelID": "20519", - "crownLandUsePIN": "18637", - "crownLandFileNumber": "19434", - "landDescription": "LOT 1 OF LOT 3 BLOCK 3 DISTRICT LOT 4 PLAN 8401" + "notes": "INSERTED FOR SITE PROFILE DATED 2015-08-18 (described on Site Profile dated 2015-08-18)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "uuid": "e687fc3a-1584-4436-8c69-5d8caab81572", + "uuid": "912edc15-3bfc-4ade-b3ca-b776e7131be6", "siteRegistry": false, - "dateNoted": "2014-08-03", - "parcelID": "16902", - "crownLandUsePIN": "17337", - "crownLandFileNumber": "19650", - "landDescription": "LOT 5 OF LOT 2 BLOCK 5 DISTRICT LOT 2 PLAN 9335" + "notes": "INSERTED FOR SITE PROFILE DATED 2018-04-26 (described on Site Profile dated 2018-04-26)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "uuid": "0f579e12-1870-494f-b2a7-f15cb66c15e8", - "siteRegistry": true, - "dateNoted": "2023-03-24", - "parcelID": "18464", - "crownLandUsePIN": "16473", - "crownLandFileNumber": "18978", - "landDescription": "LOT 5 OF LOT 3 BLOCK 2 DISTRICT LOT 3 PLAN 4506" + "uuid": "cc413236-7c06-4970-91c2-c011809cd9fa", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2022-06-01 (described on Site Profile dated 2022-06-01)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "uuid": "b0eba650-6d16-4a4d-9579-f57b45770f48", + "uuid": "77282c0a-90fa-4173-a452-65073bc7da5d", "siteRegistry": true, - "dateNoted": "2022-12-05", - "parcelID": "16387", - "crownLandUsePIN": "16698", - "crownLandFileNumber": "19774", - "landDescription": "LOT 4 OF LOT 5 BLOCK 4 DISTRICT LOT 4 PLAN 3470" + "notes": "INSERTED FOR SITE PROFILE DATED 2020-07-31 (described on Site Profile dated 2020-07-31)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + } + ], + "parcelDescriptions": [ + { + "uuid": "779a8a8e-c53d-4bb6-8cfe-a0d217340730", + "siteRegistry": false, + "dateNoted": "2021-02-28", + "parcelID": "17475", + "crownLandUsePIN": "16103", + "crownLandFileNumber": "16312", + "landDescription": "LOT 5 OF LOT 1 BLOCK 4 DISTRICT LOT 2 PLAN 8028" }, { - "uuid": "44ab6bca-a027-435b-a1bc-0f6f1f467159", - "siteRegistry": true, - "dateNoted": "2015-10-11", - "parcelID": "20664", - "crownLandUsePIN": "15227", - "crownLandFileNumber": "16133", - "landDescription": "LOT 4 OF LOT 4 BLOCK 2 DISTRICT LOT 1 PLAN 7449" + "uuid": "3c47224c-0c6d-4f58-9258-29d642e65a21", + "siteRegistry": false, + "dateNoted": "2022-11-07", + "parcelID": "20512", + "crownLandUsePIN": "17446", + "crownLandFileNumber": "19359", + "landDescription": "LOT 2 OF LOT 5 BLOCK 5 DISTRICT LOT 2 PLAN 5794" + }, + { + "uuid": "0e1b6dac-9772-4edf-a6d8-6bb33fb23abe", + "siteRegistry": false, + "dateNoted": "2018-06-20", + "parcelID": "16666", + "crownLandUsePIN": "17316", + "crownLandFileNumber": "19448", + "landDescription": "LOT 1 OF LOT 1 BLOCK 1 DISTRICT LOT 2 PLAN 8970" } ], "siteDisclosures": [ { - "uuid": "bcbd0493-6dba-4dfd-8739-026a81710d82", + "uuid": "25d20b5a-fade-463d-ae22-240d60d07efd", "siteRegistry": true, - "dateReceived": "2020-12-13", - "dateCompleted": "2020-07-04", - "dateEntered": "2022-07-19", - "dateRegistrar": "2019-11-04", - "dateLocalAuthorityReceived": "2021-06-01", - "summary": "Nobis laudantium deleniti debitis reprehenderit.", - "informationUsed": "Eveniet reiciendis perspiciatis.\nMinima facilis officiis ratione iure iure voluptatum architecto.\nLibero autem corrupti quae excepturi quod.\nFacere temporibus doloremque.\nCupiditate saepe cupiditate hic qui accusantium alias et doloremque.", - "pastOrPresentOrders": "Enim temporibus inventore minima placeat delectus dicta voluptate aliquid sapiente.\nVelit numquam nam fugit distinctio neque quod consectetur alias sapiente.\nA reprehenderit dolor ab repudiandae sint est labore quaerat.", + "dateReceived": "2018-04-27", + "dateCompleted": "2020-01-26", + "dateEntered": "2023-04-17", + "dateRegistrar": "2019-01-25", + "dateLocalAuthorityReceived": "2015-12-22", + "summary": "Corrupti cum consequatur a non eligendi velit ipsum error natus.\nAmet nulla eveniet.\nTotam excepturi nulla.", + "informationUsed": "Quisquam cum voluptas distinctio.\nCupiditate aut dolorem magni et placeat minus.\nDicta porro ea.\nQuam beatae id odit voluptates aperiam.", + "pastOrPresentOrders": "Ratione nam recusandae voluptas consequuntur quisquam libero natus culpa.\nEius voluptates voluptatem blanditiis rem autem laboriosam tempora.\nRerum cupiditate quidem provident consequuntur iusto dolorem.", "commercialAndIndustrialPurposes": [ { - "uuid": "9f14845f-0d56-4fbd-ac19-c64b09388cda", + "uuid": "fb7ad782-0afc-432f-a5c6-07576f999b8e", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "uuid": "2754bd42-a51c-49c8-be42-dbab34d1f719", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + } + ] + }, + { + "uuid": "24705d05-c4b6-4148-9446-dadb4ac7cf51", + "siteRegistry": false, + "dateReceived": "2019-02-01", + "dateCompleted": "2023-01-14", + "dateEntered": "2022-05-24", + "dateRegistrar": "2018-06-19", + "dateLocalAuthorityReceived": "2020-07-07", + "summary": "Numquam repudiandae ratione.", + "informationUsed": "Unde eveniet dicta ratione.\nAlias vitae error eos in unde molestiae excepturi neque.\nIste sunt unde quis odit error incidunt libero optio eveniet.\nDolore ex provident rem.\nNemo eos culpa veniam rem dolores ducimus neque tempora.", + "pastOrPresentOrders": "Vitae iure itaque ratione praesentium.\nUllam repudiandae velit enim eum esse.\nMaiores laborum iure dolorem omnis pariatur.", + "commercialAndIndustrialPurposes": [ + { + "uuid": "95ec860d-ba88-4615-a512-e33bcfa43504", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { - "uuid": "a0131a18-4578-40c3-bb9e-58d0da2b19da", + "uuid": "6861e38c-6666-4672-b50f-42375734141b", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false + }, + { + "uuid": "4f1201fd-09dd-4e15-b231-188487274b59", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true } ] } ], "activityLog": [ { - "uuid": "f5e11c13-8858-412e-a47b-428303b8498c", + "uuid": "6d61244b-f421-48ab-bf30-23f87d806a14", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "KUHN TIERRA", - "timestamp": "2017-10-06" + "user": "BEATTY ROSALEE", + "timestamp": "2014-03-18" }, { - "uuid": "7b03aa4c-3437-484f-8e34-5428e387c1c8", + "uuid": "64ae018e-a7a1-4395-926e-ec3383b92bc1", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "KUHIC BILLY", - "timestamp": "2016-02-07" - }, - { - "uuid": "97dc354b-1ca9-4bc8-b74c-fe7fb7738597", - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "KEEBLER DOROTHY", - "timestamp": "2020-12-31" - }, - { - "uuid": "a487ba65-26d4-4151-baa2-1f956fe851ea", - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "CHAMPLIN OSBORNE", - "timestamp": "2023-09-26" - }, - { - "uuid": "f3408de6-c433-45bf-8183-974d2377a4ac", - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "HAUCK LAURYN", - "timestamp": "2023-02-05" + "user": "FEEST JAY", + "timestamp": "2016-02-18" }, { - "uuid": "a677f159-2b35-4563-9e88-9b9bea2d0479", + "uuid": "6ecb9548-a07e-45e5-bd38-604608de8216", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "SCHUPPE MARIANA", - "timestamp": "2019-09-01" + "user": "ZBONCAK-HAMILL LINDSEY", + "timestamp": "2019-04-09" }, { - "uuid": "fc8a51d7-2dad-4716-8ea9-0649f74ab345", + "uuid": "16f00212-0200-4b9a-8d2f-b5a2975dfff2", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "BROWN JANNIE", - "timestamp": "2014-06-30" + "user": "DICKENS EUNICE", + "timestamp": "2019-12-22" }, { - "uuid": "fa0f4821-507e-4ab9-bbc6-80230b17b08f", + "uuid": "7c562c21-8ab7-41e5-964a-1f7f1c9ad9d1", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "SCHULTZ ELIAS", - "timestamp": "2019-05-04" + "user": "LAKIN KADEN", + "timestamp": "2021-11-05" }, { - "uuid": "a701d952-6e07-4335-a17a-3847af33d567", + "uuid": "fa0a9c89-ffc7-47cd-90b7-b59d7826d69c", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "HAGENES TABITHA", - "timestamp": "2021-03-29" - }, - { - "uuid": "0f1452f4-24ce-4d47-b6ec-e11a2369630a", - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "WISOZK DEMARCUS", - "timestamp": "2017-02-18" + "user": "TROMP GIOVANNI", + "timestamp": "2015-08-21" } ], "associatedSites": [ { - "uuid": "bbe15970-518b-4f34-a645-f4a81e06ceea", - "dateNoted": "2020-06-29", + "uuid": "9f588c75-5f45-4705-8f3c-25b18dcff233", + "dateNoted": "2017-12-10", "notes": "", - "parcelID": "16453", - "siteID": "16728", + "parcelID": "19729", + "siteID": "15971", "siteRegistry": true + }, + { + "uuid": "df7e5265-669a-4946-bbbc-4402887a9f91", + "dateNoted": "2014-08-08", + "notes": "", + "parcelID": "17920", + "siteID": "16834", + "siteRegistry": false } ] }, { - "uuid": "a340d9f3-fe9e-415c-bb2f-cf955cba0024", - "siteID": 16323, - "address": "5341 Efrain Turnpike", - "latitude": 49.6545, - "longitude": -128.2638, - "lastUpdated": "2016-01-05", - "city": "East Efren", - "region": "Mainland/Southwest", - "victoriaFile": "26250-20/3003", + "uuid": "081d2833-e2ac-4510-86ef-915f34098a1b", + "siteID": 20148, + "address": "798 Judd Rest", + "latitude": 57.0881, + "longitude": -127.6396, + "lastUpdated": "2014-01-14", + "city": "Albacester", + "region": "Vancouver Island/Coast", + "victoriaFile": "26250-20/9078", "regionalFile": "N/A", "parcelIDs": [ - 5485816, - 2676967, - 214467, - 4109041, - 691007 + 9239005, + 4800550, + 3070114, + 4061379, + 8105532 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "d18f2a8d-32b6-41aa-b989-8dc98e169310", - "createdAt": "2021-05-23", - "completed": "2019-12-29", - "initiated": "2022-06-23", - "ministryContact": "KSHLERIN ELWIN", + "uuid": "1320e00e-905c-46e2-8623-0fe125b17c49", + "createdAt": "2015-03-04", + "completed": "2016-04-22", + "initiated": "2016-03-16", + "ministryContact": "BEIER-LEMKE DAVIN", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -74434,60 +87719,38 @@ ], "notationParticipants": [ { - "uuid": "25e88de3-1599-46c3-bf24-970883598569", + "uuid": "43b0a6b1-e589-41d0-ba9e-3280b2ad5aad", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "808f8f01-5375-48ff-9926-9bb00a29ab5a", - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - } - ], - "siteRegistry": true - }, - { - "uuid": "a9c6dd9c-47b0-41b8-8d52-ff284e52726d", - "createdAt": "2023-08-18", - "completed": "2023-07-08", - "initiated": "2018-04-24", - "ministryContact": "STAMM SOLON", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "uuid": "05b3c25e-0ddd-4d3d-b12a-1a297ba9b009", - "name": "SHELL CANADA PRODUCTS", + "uuid": "77ff0816-595b-436b-bf2d-62336407281a", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "aacd0d12-b583-4f4c-b8fc-d16d8e24bcd3", + "uuid": "440237a3-c5b5-40fa-b146-b175b053f451", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false }, { - "uuid": "88f9a078-1e51-469d-a37d-a8a2dcd975d7", + "uuid": "ca237e81-5308-44ae-a2f6-7532b7f029d9", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false } ], "siteRegistry": true }, { - "uuid": "cc0f29a7-e87e-4fe2-b32c-52ce6df90cc0", - "createdAt": "2013-11-02", - "completed": "2019-03-03", - "initiated": "2014-04-13", - "ministryContact": "DICKINSON SONNY", + "uuid": "89a6ebc4-ffe3-4ee0-9647-3a6638dcaf33", + "createdAt": "2014-01-28", + "completed": "2022-08-04", + "initiated": "2022-11-10", + "ministryContact": "BORER LIAM", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -74496,27 +87759,66 @@ ], "notationParticipants": [ { - "uuid": "08f6d02d-d007-4ef7-81c3-bd92f0894fd4", + "uuid": "716d12aa-f6c9-49bd-bf96-719ae1b97485", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false }, { - "uuid": "19c929df-080a-46de-aa5c-f4d0310bc5fb", - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "65e13789-7905-4871-be83-a4395282bb84", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false + }, + { + "uuid": "70673e22-a977-4083-a259-800974c40147", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false } ], "participants": [ { - "uuid": "78bd6ff4-8570-47fd-9486-24f6ca4ec934", + "uuid": "10aaad0f-be09-4572-8f4f-12f009fc521d", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2014-07-02", + "startDate": "2015-11-30", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "uuid": "aa2cdfbb-b91e-48fd-8ebc-4bb48b0202a8", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2016-01-04", + "startDate": "2015-02-19", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "uuid": "253dfe95-3e80-44a1-93e0-4264d7a163dc", "name": "IPSUM", - "endDate": "2014-11-29", - "startDate": "2018-03-11", + "endDate": "2018-03-19", + "startDate": "2018-06-29", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "uuid": "91942013-f7f3-4a98-8a99-6c4ca8c18455", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2014-08-19", + "startDate": "2015-07-21", "notes": "", "roles": [ "ORGANIZATION" @@ -74524,250 +87826,289 @@ "siteRegistry": true }, { - "uuid": "d9eec214-ba10-459f-baa1-33859043195c", + "uuid": "49596760-5e73-4d84-876e-fc9f5a761c2d", "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2017-06-17", - "startDate": "2016-08-07", + "endDate": "2017-11-11", + "startDate": "2015-03-01", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": true + } + ], + "documents": [ + { + "uuid": "b114cf1d-0014-4c58-935a-86ec8226fefb", + "siteRegistry": true, + "documentDate": "2020-09-29", + "receivedDate": "2020-06-07", + "uploadedDate": "2019-10-28", + "title": "Preliminary Site Investigation, Detailed Site Investigation and Remedial Plan for the Management Area adjacent to the Shell Site at 1503 West 41st Ave", + "participants": [ + { + "uuid": "a6c19a58-0423-4240-9ce6-6b744deb1723", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "98ed3650-16f2-4d88-b3dc-36ed2ac06580", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "967b14ad-a5bb-499b-9d2b-52a1b60c8f47", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": true, + "role": "AUTHOR" + } + ] }, { - "uuid": "61b3eff1-f97f-4e4e-80dc-f457c3c752f7", - "name": "IPSUM", - "endDate": "2022-07-11", - "startDate": "2021-07-11", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": false + "uuid": "8cd9def4-a0d2-4f90-b153-a1c302df5093", + "siteRegistry": true, + "documentDate": "2021-03-07", + "receivedDate": "2020-03-14", + "uploadedDate": "2017-07-03", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "4309e627-27b1-4d4b-8425-1d34e877b3dc", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": true, + "role": "AUTHOR" + } + ] }, { - "uuid": "9fa4911b-cb21-454f-bfdd-009858d9032d", - "name": "SHELL CANADA PRODUCTS", - "endDate": "2017-04-23", - "startDate": "2015-07-29", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": true + "uuid": "26537e0d-d553-40ae-85ea-2c5144c92d78", + "siteRegistry": false, + "documentDate": "2018-06-23", + "receivedDate": "2023-05-17", + "uploadedDate": "2017-12-11", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "0f823ff3-7a9b-45cc-91df-364508d7ae18", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "6f250186-b53b-4445-be39-2930e74207ec", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": true, + "role": "AUTHOR" + } + ] }, { - "uuid": "dd43a1b4-b36e-40da-bfce-1440185dfac2", - "name": "IPSUM", - "endDate": "2020-02-08", - "startDate": "2014-01-06", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": false + "uuid": "35a8908a-5412-418e-87bb-c6832b4b0081", + "siteRegistry": false, + "documentDate": "2015-06-09", + "receivedDate": "2020-02-27", + "uploadedDate": "2018-03-24", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "7cbf1ab1-83b7-4e70-ad00-81828483714f", + "name": "AMET, DOLOR SIT", + "siteRegistry": false, + "role": "AUTHOR" + } + ] } ], "suspectLandUses": [ { - "uuid": "8933aba5-7f47-47db-a0e6-2af271def798", + "uuid": "14a72d32-7ff1-4188-9b77-c5df14b15a10", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2017-08-07 (described on Site Profile dated 2017-08-07)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "uuid": "75ff88a3-a211-4ce0-810d-802b90b00a4b", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-01-14 (described on Site Profile dated 2022-01-14)", + "notes": "INSERTED FOR SITE PROFILE DATED 2018-02-19 (described on Site Profile dated 2018-02-19)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "uuid": "ad04c494-6db8-4d3f-a4f9-33147ea61e06", + "uuid": "ac1dd8d0-eca7-47dc-970c-77528549a4de", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-10-25 (described on Site Profile dated 2014-10-25)", + "notes": "INSERTED FOR SITE PROFILE DATED 2022-06-20 (described on Site Profile dated 2022-06-20)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], "parcelDescriptions": [ { - "uuid": "5a75a545-d471-40fc-9100-a96c7af04816", + "uuid": "f29e7991-b12b-4686-aa85-e45ece40099d", "siteRegistry": true, - "dateNoted": "2014-05-17", - "parcelID": "18673", - "crownLandUsePIN": "16036", - "crownLandFileNumber": "18063", - "landDescription": "LOT 3 OF LOT 4 BLOCK 5 DISTRICT LOT 4 PLAN 8271" + "dateNoted": "2014-11-04", + "parcelID": "16928", + "crownLandUsePIN": "16383", + "crownLandFileNumber": "15249", + "landDescription": "LOT 1 OF LOT 1 BLOCK 3 DISTRICT LOT 3 PLAN 6962" }, { - "uuid": "31fcfe2e-3bed-45d2-b614-127aca510d96", + "uuid": "fad07457-152d-4965-b3bc-1bafbe575a4f", "siteRegistry": true, - "dateNoted": "2019-01-09", - "parcelID": "16153", - "crownLandUsePIN": "18887", - "crownLandFileNumber": "19267", - "landDescription": "LOT 4 OF LOT 1 BLOCK 1 DISTRICT LOT 5 PLAN 4475" + "dateNoted": "2014-04-12", + "parcelID": "18904", + "crownLandUsePIN": "20215", + "crownLandFileNumber": "20361", + "landDescription": "LOT 3 OF LOT 2 BLOCK 5 DISTRICT LOT 5 PLAN 8153" }, { - "uuid": "aff70580-5f8b-47fe-9b5c-909723eba6d3", - "siteRegistry": true, - "dateNoted": "2016-12-06", - "parcelID": "18664", - "crownLandUsePIN": "18758", - "crownLandFileNumber": "19897", - "landDescription": "LOT 3 OF LOT 4 BLOCK 3 DISTRICT LOT 2 PLAN 5217" + "uuid": "3c2d68ee-1a6c-4613-9655-f3c98c4b1497", + "siteRegistry": false, + "dateNoted": "2017-11-24", + "parcelID": "17845", + "crownLandUsePIN": "20468", + "crownLandFileNumber": "17315", + "landDescription": "LOT 4 OF LOT 2 BLOCK 4 DISTRICT LOT 1 PLAN 3887" }, { - "uuid": "be5c236c-63ef-4585-a0b2-931cc73c81a8", + "uuid": "be864d30-76a8-4a7a-9123-3072431dcac6", "siteRegistry": false, - "dateNoted": "2020-08-12", - "parcelID": "20844", - "crownLandUsePIN": "20031", - "crownLandFileNumber": "18806", - "landDescription": "LOT 3 OF LOT 2 BLOCK 3 DISTRICT LOT 3 PLAN 5038" + "dateNoted": "2013-12-01", + "parcelID": "15555", + "crownLandUsePIN": "18621", + "crownLandFileNumber": "19340", + "landDescription": "LOT 1 OF LOT 4 BLOCK 3 DISTRICT LOT 5 PLAN 3596" } ], "siteDisclosures": [ { - "uuid": "1b74c44a-66b3-42eb-bd30-28073243bff6", - "siteRegistry": true, - "dateReceived": "2021-02-27", - "dateCompleted": "2017-04-16", - "dateEntered": "2015-02-25", - "dateRegistrar": "2015-07-09", - "dateLocalAuthorityReceived": "2016-06-15", - "summary": "Culpa quis magni nemo hic in provident hic ut maxime.\nA itaque harum est rem repellendus.", - "informationUsed": "Quam eveniet reprehenderit consequuntur ut repudiandae.\nNesciunt quo facilis sit ratione possimus quibusdam doloremque accusantium.\nSimilique fuga voluptatum assumenda ratione commodi fugit a.\nPlaceat asperiores vitae voluptatibus porro.", - "pastOrPresentOrders": "Suscipit aspernatur veniam sequi possimus sint accusamus eligendi eum.\nAt corrupti praesentium mollitia dolorem cupiditate voluptate repellendus.\nAssumenda repellendus similique.", + "uuid": "33672382-e4d2-443c-b447-0c1a646ca0da", + "siteRegistry": false, + "dateReceived": "2018-05-17", + "dateCompleted": "2014-07-29", + "dateEntered": "2015-06-30", + "dateRegistrar": "2016-01-20", + "dateLocalAuthorityReceived": "2022-05-20", + "summary": "Eligendi recusandae eum rerum blanditiis molestiae saepe quaerat.", + "informationUsed": "Est commodi ipsum minus aperiam quasi alias repellendus.\nQuos ex veniam quae.\nPerferendis autem veritatis eius voluptatem hic.", + "pastOrPresentOrders": "Consectetur nisi corporis fugiat ducimus minus maiores quaerat porro.\nVoluptas fuga possimus quibusdam officiis ea doloremque mollitia atque.", "commercialAndIndustrialPurposes": [ { - "uuid": "8276098b-4eba-4cfe-a2d9-51f688bfbc7f", - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "uuid": "e2fae087-1966-4ecc-b3b9-5c79e371c47d", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { - "uuid": "19dcb0ad-a9d7-4771-a2af-fed6cf7b05a5", - "scheduleReference": "F2*", + "uuid": "c24894f7-ed92-4efd-86e5-5d27afe454e5", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { - "uuid": "c460bf90-f800-4607-8855-13e04a0114d8", - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false - }, - { - "uuid": "d6383538-7f27-4f1a-b983-ea4668b74073", - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true - } - ] - }, - { - "uuid": "117c13e0-cae9-448a-bab6-a7a458de2535", - "siteRegistry": true, - "dateReceived": "2018-12-09", - "dateCompleted": "2015-05-13", - "dateEntered": "2014-09-08", - "dateRegistrar": "2020-02-10", - "dateLocalAuthorityReceived": "2022-10-18", - "summary": "Fuga incidunt esse veritatis molestias quaerat cumque.", - "informationUsed": "Perspiciatis nulla non dolor repellat cupiditate facilis.\nDolore incidunt accusamus ducimus sequi.\nCommodi dignissimos consequatur soluta repellat est hic laudantium ipsum.\nNatus delectus inventore blanditiis aut.\nCumque facilis assumenda voluptates.", - "pastOrPresentOrders": "Aliquam adipisci nulla corporis non fugit eius maxime ut.\nNobis velit magni autem sit sint cum animi necessitatibus repudiandae.", - "commercialAndIndustrialPurposes": [ - { - "uuid": "6251569e-230e-4c11-a133-e8634940b83e", + "uuid": "ac922640-4c4f-4eaa-aee9-72aa89e95200", "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true - }, - { - "uuid": "0619e1d1-f563-43fd-9c11-b1fefcedd056", - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false } ] } ], "activityLog": [ { - "uuid": "19e27d68-5f5d-424e-8d2b-f401ebee363b", + "uuid": "ed2922bd-022f-4a5b-ac70-195a6174365a", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "WISOZK ISAAC", + "timestamp": "2017-06-23" + }, + { + "uuid": "9922a775-ea3f-4888-a368-c6bd959bd3d7", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "BECKER JARED", - "timestamp": "2015-08-19" + "user": "CASSIN PATIENCE", + "timestamp": "2018-07-02" }, { - "uuid": "1003244f-a254-441f-b405-d1462020017d", - "siteRegistry": false, + "uuid": "5424b20c-4d26-45f0-a537-8007cc909bda", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "RAYNOR JALEEL", - "timestamp": "2013-11-05" + "user": "BERGSTROM MAJOR", + "timestamp": "2023-10-11" }, { - "uuid": "a0853d8a-8f0a-49a4-b3d3-895af81205a3", - "siteRegistry": false, + "uuid": "dd3aea3f-859b-4c60-82cf-dbe7c053a103", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "STAMM GIOVANNY", - "timestamp": "2017-02-28" + "user": "OKUNEVA ANGELINA", + "timestamp": "2015-01-31" }, { - "uuid": "f12440fb-d7af-43e2-b8e4-1e6c328f6f3f", - "siteRegistry": false, + "uuid": "2a3b937e-5a5e-437e-aa8e-105a68212828", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "JAKUBOWSKI ALBERTA", + "timestamp": "2020-06-04" + }, + { + "uuid": "7f8dc346-eb06-4cbf-a3e7-a0e8623d91af", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "WATERS KIRK", - "timestamp": "2015-06-05" + "user": "STROSIN LILIANE", + "timestamp": "2015-04-07" }, { - "uuid": "5486030a-e65b-4c84-acb3-a893aa4ed46d", + "uuid": "9b43b50f-7f79-4a99-9c89-5eafcb9e7400", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "TOY RODOLFO", - "timestamp": "2020-07-08" + "user": "GREENFELDER KOBE", + "timestamp": "2015-04-14" } ], "associatedSites": [ { - "uuid": "2f84b8ba-a985-4fa1-8471-944211c8c1e3", - "dateNoted": "2023-01-12", + "uuid": "5a84ff31-7dbc-4ecf-b801-8302dfaf6556", + "dateNoted": "2020-04-27", "notes": "", - "parcelID": "20390", - "siteID": "17972", - "siteRegistry": true + "parcelID": "15964", + "siteID": "18676", + "siteRegistry": false }, { - "uuid": "72ab8b6f-0d35-414a-8da3-522bab1a829e", - "dateNoted": "2019-10-02", + "uuid": "01c90550-6d11-4f00-99a2-d6391f52053d", + "dateNoted": "2018-01-05", "notes": "", - "parcelID": "17436", - "siteID": "18833", + "parcelID": "19723", + "siteID": "17033", "siteRegistry": true } ] }, { - "uuid": "5c1ee0a6-1433-40f2-9600-e0438a499a6a", - "siteID": 18068, - "address": "84007 Gene Mills", - "latitude": 48.4479, - "longitude": -133.3829, - "lastUpdated": "2016-07-04", - "city": "Alhambra", - "region": "Cariboo", - "victoriaFile": "26250-20/14355", + "uuid": "b8bc065f-9bc8-41ff-9c8d-5a8f2b7962fd", + "siteID": 17275, + "address": "1690 Schiller Expressway", + "latitude": 49.3353, + "longitude": -136.1461, + "lastUpdated": "2023-07-16", + "city": "North Josephine", + "region": "Kootenay", + "victoriaFile": "26250-20/10511", "regionalFile": "N/A", "parcelIDs": [ - 4154116, - 3462253, - 7404828, - 6941224, - 8117360 + 4056418, + 8047767, + 7656492, + 6289995, + 9700303 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "f19b790d-d382-4770-b756-05aab1628572", - "createdAt": "2021-01-10", - "completed": "2019-06-03", - "initiated": "2018-02-24", - "ministryContact": "VOLKMAN AMERICO", + "uuid": "4eabfa3e-8a43-46dd-a408-660dc53d9634", + "createdAt": "2014-06-09", + "completed": "2020-02-23", + "initiated": "2016-05-17", + "ministryContact": "BLANDA TRINITY", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -74776,60 +88117,44 @@ ], "notationParticipants": [ { - "uuid": "0a471577-c6fd-4e26-8d05-246358e6ebdd", - "name": "SHELL CANADA PRODUCTS", + "uuid": "2cd981f0-b2bc-442f-95c5-63ac715c916c", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "5428cf2d-a64a-4458-a566-0278a6f9943f", + "uuid": "73bf1f5c-6128-4483-ac26-f7084028ed61", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true - } - ], - "siteRegistry": false - }, - { - "uuid": "8dd881f0-c81a-4998-8e2b-fc374da5369a", - "createdAt": "2013-11-22", - "completed": "2017-11-15", - "initiated": "2014-07-29", - "ministryContact": "KUNZE BURNICE", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ + "siteRegistry": false + }, { - "uuid": "e0bbe808-1147-41e4-8c4c-f39e4ddc663d", + "uuid": "a079fa95-af0a-418e-9a22-d7a329c679f5", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false }, { - "uuid": "4141b101-0d7b-4897-8094-c6b674915203", - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true + "uuid": "e94cfb63-7a58-480c-9e8b-214fe34aed1a", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false }, { - "uuid": "550b6d51-8745-4724-ae56-850715119ff1", + "uuid": "a3efc1a9-283a-4f45-bd00-07b8e7349d93", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true } ], "siteRegistry": false }, { - "uuid": "343760e3-eb5c-4604-9144-063665d7eaf2", - "createdAt": "2016-08-26", - "completed": "2020-09-01", - "initiated": "2015-08-26", - "ministryContact": "DECKOW-POLLICH TRINITY", + "uuid": "1d528535-ae63-41cf-ae5a-76ada6d131d4", + "createdAt": "2017-06-21", + "completed": "2020-04-26", + "initiated": "2020-08-13", + "ministryContact": "STEHR ELENORA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -74838,163 +88163,223 @@ ], "notationParticipants": [ { - "uuid": "5682dcef-b878-4475-b847-847750ebb18f", + "uuid": "e62ba88d-94b1-4470-a745-2447a8ef6dca", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true + "role": "SUBMITTED BY", + "siteRegistry": false }, { - "uuid": "33b3406d-a4f5-427f-b28e-d700f094c6a0", + "uuid": "5c8ee7c2-f591-4e2b-bfbf-a9cdf58319ec", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true + "role": "SUBMITTED BY", + "siteRegistry": false }, { - "uuid": "cc6f29de-5213-4896-86ac-0df506c37d5d", + "uuid": "434e9dee-ac95-4a07-a159-a72f1d3c6dbd", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false + }, + { + "uuid": "e123c102-4adf-4ab5-9b5f-beda580174d7", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "uuid": "ad75a473-d953-4686-9da9-2cc1ca007f76", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false } ], "participants": [ { - "uuid": "9e0c9682-3495-4bbd-8565-6e4472ea1cc7", + "uuid": "e7053409-889a-415a-b1f3-7116bb91c712", "name": "IPSUM", - "endDate": "2018-07-20", - "startDate": "2022-08-01", + "endDate": "2016-09-28", + "startDate": "2020-11-07", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "88abf7b7-d2b3-4c8f-866a-f69535694020", + "uuid": "14ff149c-f6dc-49c5-8800-b43790c3fcda", "name": "AMET, DOLOR SIT", - "endDate": "2015-10-27", - "startDate": "2014-06-29", + "endDate": "2015-03-30", + "startDate": "2023-08-04", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "uuid": "01ad6c88-0412-432d-bc56-e76d02d740cb", + "name": "IPSUM", + "endDate": "2020-08-17", + "startDate": "2015-09-25", "notes": "", "roles": [ "EMPLOYEE" ], "siteRegistry": false + }, + { + "uuid": "99fc2110-a6dc-4c33-bcc6-7a145855c75c", + "name": "AMET, DOLOR SIT", + "endDate": "2016-05-14", + "startDate": "2018-11-10", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false } ], - "suspectLandUses": [ + "documents": [ { - "uuid": "a0a3d955-e33a-4be8-89bc-ea10efe2f6ef", + "uuid": "83abd401-ebdc-41d2-bd03-8e2a78da4ac4", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2013-12-06 (described on Site Profile dated 2013-12-06)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" - }, + "documentDate": "2022-10-30", + "receivedDate": "2018-07-06", + "uploadedDate": "2021-06-03", + "title": "Summary of Site Conditions, 1537 W 41st Avenue, Vancouver", + "participants": [ + { + "uuid": "fb239593-efc4-4fec-8f93-8db9b78646ee", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "091490ae-33bd-4e07-999a-c989cdc1c83c", + "name": "AMET, DOLOR SIT", + "siteRegistry": false, + "role": "AUTHOR" + } + ] + } + ], + "suspectLandUses": [ { - "uuid": "c998bb39-97d2-461d-957e-7c438ebbcd69", + "uuid": "d1caa234-97b2-41c6-be42-02a6dbe1f1a0", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-05-13 (described on Site Profile dated 2018-05-13)", + "notes": "INSERTED FOR SITE PROFILE DATED 2019-04-08 (described on Site Profile dated 2019-04-08)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "uuid": "24205d00-496d-4ddc-8db2-54a2c02bb71f", - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2013-10-22 (described on Site Profile dated 2013-10-22)", + "uuid": "c0455477-4f90-4787-a35a-1e958a5fef1d", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2015-05-10 (described on Site Profile dated 2015-05-10)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "uuid": "8e5be4d7-8b09-49b4-bb54-337165f65a6e", - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-12-30 (described on Site Profile dated 2018-12-30)", + "uuid": "67866275-6c4d-4ac3-a6f8-894cd75a0207", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2017-03-18 (described on Site Profile dated 2017-03-18)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "uuid": "e2a3a043-e464-4c67-9bc3-35dc1ad6ccf4", - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-12-04 (described on Site Profile dated 2021-12-04)", + "uuid": "ec0d1259-8274-4e64-b980-7f07331cf1dc", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2018-01-12 (described on Site Profile dated 2018-01-12)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "uuid": "e8dee31d-6a1a-496b-894b-2c3ce5205e8f", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2014-05-18 (described on Site Profile dated 2014-05-18)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], "parcelDescriptions": [ { - "uuid": "4fc0b7e1-7beb-47d2-8c26-ae0802493504", - "siteRegistry": false, - "dateNoted": "2014-06-14", - "parcelID": "17942", - "crownLandUsePIN": "20022", - "crownLandFileNumber": "16587", - "landDescription": "LOT 3 OF LOT 5 BLOCK 1 DISTRICT LOT 1 PLAN 9778" - }, - { - "uuid": "992da8c6-321c-4278-8c12-e92d040e3813", + "uuid": "7c0fcaab-8cc6-4dda-b407-925906e8ac0e", "siteRegistry": true, - "dateNoted": "2021-06-26", - "parcelID": "17098", - "crownLandUsePIN": "19750", - "crownLandFileNumber": "18919", - "landDescription": "LOT 1 OF LOT 5 BLOCK 5 DISTRICT LOT 1 PLAN 7047" - }, - { - "uuid": "2bcf05e2-43be-4e81-b535-c167205a805c", - "siteRegistry": false, - "dateNoted": "2020-03-24", - "parcelID": "18591", - "crownLandUsePIN": "17003", - "crownLandFileNumber": "18686", - "landDescription": "LOT 1 OF LOT 4 BLOCK 1 DISTRICT LOT 1 PLAN 4576" + "dateNoted": "2015-08-24", + "parcelID": "20896", + "crownLandUsePIN": "16850", + "crownLandFileNumber": "18808", + "landDescription": "LOT 4 OF LOT 4 BLOCK 4 DISTRICT LOT 1 PLAN 7717" }, { - "uuid": "c34b708f-8c14-4e76-8ebf-1ecf65d9a022", - "siteRegistry": false, - "dateNoted": "2016-01-09", - "parcelID": "15403", - "crownLandUsePIN": "17172", - "crownLandFileNumber": "16897", - "landDescription": "LOT 5 OF LOT 2 BLOCK 5 DISTRICT LOT 1 PLAN 3043" + "uuid": "011dbd5b-92fb-41ad-b087-5642a3cdb264", + "siteRegistry": true, + "dateNoted": "2019-11-20", + "parcelID": "17918", + "crownLandUsePIN": "16929", + "crownLandFileNumber": "15984", + "landDescription": "LOT 3 OF LOT 2 BLOCK 3 DISTRICT LOT 3 PLAN 7633" }, { - "uuid": "49f2e5c7-fd91-4544-b999-c1a6a8c6381e", + "uuid": "18df52b3-1429-4acf-aada-d899914eef92", "siteRegistry": false, - "dateNoted": "2017-11-18", - "parcelID": "15937", - "crownLandUsePIN": "16762", - "crownLandFileNumber": "16413", - "landDescription": "LOT 3 OF LOT 2 BLOCK 3 DISTRICT LOT 3 PLAN 4470" + "dateNoted": "2013-11-02", + "parcelID": "20992", + "crownLandUsePIN": "17601", + "crownLandFileNumber": "20642", + "landDescription": "LOT 4 OF LOT 5 BLOCK 4 DISTRICT LOT 2 PLAN 8710" } ], "siteDisclosures": [ { - "uuid": "219d0246-b808-4c28-99f1-94bf39302a45", + "uuid": "29a3936e-2aeb-448d-9b0b-59955236d24e", "siteRegistry": true, - "dateReceived": "2013-10-18", - "dateCompleted": "2018-02-09", - "dateEntered": "2014-01-11", - "dateRegistrar": "2015-02-04", - "dateLocalAuthorityReceived": "2020-01-23", - "summary": "Earum quisquam eius nulla magnam deleniti dolore.", - "informationUsed": "Veritatis ullam atque sunt.\nTempora hic eius.\nAtque occaecati numquam animi accusamus voluptate porro consequuntur.\nQuas occaecati facere ea nulla laboriosam.\nHarum iure repudiandae repellendus tempora cum beatae.", - "pastOrPresentOrders": "Quam debitis unde.", + "dateReceived": "2019-09-05", + "dateCompleted": "2015-01-18", + "dateEntered": "2019-01-21", + "dateRegistrar": "2014-06-20", + "dateLocalAuthorityReceived": "2018-06-17", + "summary": "Quibusdam quae voluptates.", + "informationUsed": "Necessitatibus quo quas quae laudantium.\nTemporibus facere nostrum.\nMollitia quo odit facere delectus nostrum.\nQuam eos veritatis.", + "pastOrPresentOrders": "Dicta dicta distinctio fugiat incidunt totam autem repellendus.\nNemo eum voluptatibus culpa esse ad ullam rem unde quod.", "commercialAndIndustrialPurposes": [ { - "uuid": "36d1cad0-b23b-4e95-8962-db9b483e73b4", - "scheduleReference": "F2*", + "uuid": "a6dd38af-5bc0-4428-b3c4-3223a79a9e30", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { - "uuid": "5af215be-1af9-434c-b7dd-c211b736e11a", - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "uuid": "4636da44-66c1-4ee8-b7e1-1a98580e6510", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { - "uuid": "04ea0e8b-2d05-4aa4-b3e3-a20bd8032839", - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "uuid": "1cb13b13-e002-47be-993a-7ca774f463ed", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true + } + ] + }, + { + "uuid": "972a7d23-6259-494d-8cc4-a01a3ac92033", + "siteRegistry": true, + "dateReceived": "2022-03-18", + "dateCompleted": "2023-05-24", + "dateEntered": "2015-12-22", + "dateRegistrar": "2017-07-17", + "dateLocalAuthorityReceived": "2022-12-19", + "summary": "Dolorum nam assumenda repellat ipsum perferendis quasi.\nAtque doloribus amet ducimus repudiandae illum fugiat impedit quis.", + "informationUsed": "Suscipit eaque animi.\nLabore velit saepe debitis voluptate aspernatur voluptate quia atque.\nReprehenderit blanditiis quaerat aperiam nihil voluptatum quidem ullam.\nVoluptas iure reprehenderit quo fugit vitae earum reiciendis tempore.", + "pastOrPresentOrders": "Provident cumque ullam molestias quaerat ducimus sint quod tenetur.\nReprehenderit ea culpa ex aut consectetur facilis repellendus praesentium fugiat.", + "commercialAndIndustrialPurposes": [ + { + "uuid": "bb9e6164-6f05-4c26-ae5d-e63418d90ba0", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false }, { - "uuid": "289591d1-bf6e-47cf-9426-3a051ebe771c", + "uuid": "664e09af-67c9-40c1-a8e5-8f3323520b89", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false @@ -75004,94 +88389,107 @@ ], "activityLog": [ { - "uuid": "1636c991-ff3e-4e5d-9855-f013e914d077", + "uuid": "173846b8-88f8-4019-8cfd-9cd15152eb46", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "GLEASON DARON", - "timestamp": "2017-01-18" + "user": "KOEPP TRYSTAN", + "timestamp": "2020-02-21" + }, + { + "uuid": "7ebc2165-d4a1-4d9f-b38a-718cf6d80854", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "DUBUQUE ANASTASIA", + "timestamp": "2016-07-16" }, { - "uuid": "acee186a-c2a4-4920-b367-47fbe989406f", + "uuid": "3c84115b-e848-45f2-9ddf-f0348cbf74a5", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "OKUNEVA NAME", - "timestamp": "2020-12-04" + "user": "JACOBS STEPHAN", + "timestamp": "2018-12-31" + }, + { + "uuid": "004c1738-11f8-47d5-bb04-b4ca305b3650", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "LESCH SIMEON", + "timestamp": "2014-06-08" }, { - "uuid": "61c4aa6c-ff5f-4c53-a88f-61f7d19d6c56", + "uuid": "f22c0de6-f7e8-41ff-be74-578cef38a3d1", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "OSINSKI PHOEBE", - "timestamp": "2022-06-22" + "user": "HICKLE CARLEE", + "timestamp": "2013-12-01" }, { - "uuid": "17dbe744-9097-43a7-a833-16b22b098209", + "uuid": "05cccffb-8752-4626-93fb-5a8911a4a2ae", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "KUB DEANGELO", - "timestamp": "2022-12-05" + "user": "KLING GUSSIE", + "timestamp": "2015-10-28" }, { - "uuid": "ff55f3e1-229f-4873-be06-246ed0c664cb", + "uuid": "c01ba3ca-cb5e-4214-903f-c51499aa6471", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "SCHMELER JERMAINE", - "timestamp": "2017-10-24" + "user": "RIPPIN MARIANNA", + "timestamp": "2016-01-23" + }, + { + "uuid": "907a16bb-75bf-476e-ba75-dda72d624e9c", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "WILLMS JARRETT", + "timestamp": "2017-05-20" } ], "associatedSites": [ { - "uuid": "8a1503ac-1454-4656-b20e-44c7cc1e1f31", - "dateNoted": "2018-07-27", - "notes": "", - "parcelID": "20057", - "siteID": "20818", - "siteRegistry": false - }, - { - "uuid": "1e411d83-d164-4417-8ff1-8ad8d2d9bcb6", - "dateNoted": "2022-01-09", + "uuid": "f5f79a04-74a9-440e-a3ee-6359c36ee16f", + "dateNoted": "2018-07-11", "notes": "", - "parcelID": "19531", - "siteID": "20960", - "siteRegistry": false + "parcelID": "19591", + "siteID": "17582", + "siteRegistry": true }, { - "uuid": "80d84183-33d9-4aea-886c-cc8fb7bd8fa6", - "dateNoted": "2017-03-27", + "uuid": "d0ea307d-ba73-4212-818f-4480578595fa", + "dateNoted": "2023-07-25", "notes": "", - "parcelID": "18627", - "siteID": "17431", + "parcelID": "19542", + "siteID": "16978", "siteRegistry": false } ] }, { - "uuid": "34b5ba94-d337-4953-84fe-d02bd2714e0c", - "siteID": 15979, - "address": "6390 Braun Mills", - "latitude": 52.5216, - "longitude": -137.8442, - "lastUpdated": "2019-08-20", - "city": "Fort Abagailcester", - "region": "Thompson-Okanagan", - "victoriaFile": "26250-20/11236", + "uuid": "b49974f0-c3cb-4870-b3ae-8c6abce55cf1", + "siteID": 17392, + "address": "1445 Crooks Junction", + "latitude": 58.8677, + "longitude": -129.6143, + "lastUpdated": "2016-06-24", + "city": "East Aimeefort", + "region": " North Coast", + "victoriaFile": "26250-20/12896", "regionalFile": "N/A", "parcelIDs": [ - 9117246, - 7495640, - 119368, - 9095298, - 2098365 + 9971347, + 5808197, + 7355214, + 8790246, + 2495723 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "58f15e3e-5179-4c0d-a98c-eeaae28e187f", - "createdAt": "2017-03-01", - "completed": "2019-11-23", - "initiated": "2014-10-18", - "ministryContact": "ORTIZ EDISON", + "uuid": "72f2931c-3da8-4081-b479-c304857a3b33", + "createdAt": "2014-12-02", + "completed": "2018-09-10", + "initiated": "2016-06-16", + "ministryContact": "SCHMELER DARBY", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -75100,106 +88498,32 @@ ], "notationParticipants": [ { - "uuid": "d75c9e1b-22cd-4c51-b7ff-0001a1a30c91", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "uuid": "1567b593-c840-40c6-9a67-843f795f6b86", + "uuid": "a62b7e11-d144-4f27-a79d-50d602d26224", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - } - ], - "siteRegistry": true - }, - { - "uuid": "420aee6b-9ec2-47d1-9565-bfda784edbe5", - "createdAt": "2018-01-11", - "completed": "2014-10-18", - "initiated": "2021-09-19", - "ministryContact": "KOZEY ALEXANDREA", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "uuid": "80b02b9d-067f-4b2d-96c8-de13b583544a", - "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "ca336e2d-d990-44c7-9fe9-66e3f451cef1", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "uuid": "bd1a02a5-a350-4e05-8bf6-e944b6826b93", - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "uuid": "aad32f1c-644e-49a5-babd-62ec8137b915", + "uuid": "7a97e891-e588-461f-a8fa-79836e7e3e5b", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "uuid": "41f1c953-1e42-4759-b48d-e14b0d4d87cf", - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - } - ], - "siteRegistry": true - }, - { - "uuid": "8a0f5ae4-558f-4593-b2e9-5c09c9d37efb", - "createdAt": "2019-11-07", - "completed": "2020-05-27", - "initiated": "2021-04-16", - "ministryContact": "UPTON DEXTER", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "uuid": "45fdbca6-d90c-45b8-a4b0-4b7c9d7b9c37", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "263e20ad-5a81-4dd4-8cbd-56ae0ff3e7ae", - "name": "SHELL CANADA PRODUCTS", + "uuid": "5da874c2-e468-4573-9927-3d7869a8f9a1", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false - }, - { - "uuid": "b479463d-a767-4d23-a9be-98e2569e7fc5", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true } ], "siteRegistry": true }, { - "uuid": "26ee1c44-51da-4a07-9c0e-1e98420aa07f", - "createdAt": "2015-01-27", - "completed": "2021-12-04", - "initiated": "2021-09-20", - "ministryContact": "EFFERTZ LESTER", + "uuid": "36980a76-40bd-4971-a745-a9a223108a68", + "createdAt": "2022-11-21", + "completed": "2015-05-05", + "initiated": "2016-12-19", + "ministryContact": "SMITHAM ORION", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -75208,67 +88532,67 @@ ], "notationParticipants": [ { - "uuid": "aa6d8fa2-8faf-4948-9837-c1c07b255c72", + "uuid": "87d92744-ce30-490c-9911-b1e0f35808d4", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "6e049808-d1a8-4200-8c38-3b86369e1dca", + "uuid": "14660eb6-512f-4a6c-bd65-d2cbe31615ca", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false }, { - "uuid": "9d61f38b-869e-4dc0-ab02-b12e1c3265da", + "uuid": "9c977306-2113-4ed6-babf-2f490b329071", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "7e84a1f4-2bee-41fa-af41-72d2bdac352a", + "uuid": "31584466-d9c8-4d15-bd22-28203addfc11", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "93442df7-c42b-48fe-a154-f1785d3161a7", + "uuid": "5c68c28e-706b-4e7e-9e7f-df348e0890d6", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true } ], "participants": [ { - "uuid": "437ed057-3018-4e29-913a-bda7fd599da3", - "name": "AMET, DOLOR SIT", - "endDate": "2014-02-07", - "startDate": "2017-01-31", + "uuid": "6c37ae35-5d6f-4cc9-a4f6-85227d333510", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2019-07-09", + "startDate": "2020-05-25", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": true }, { - "uuid": "459eae77-2e91-4bc8-8df1-02be711bd536", - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2022-01-31", - "startDate": "2016-10-14", + "uuid": "03663b3a-60fb-46cf-9ba9-182cc9c6bd47", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2023-06-15", + "startDate": "2023-09-04", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": false }, { - "uuid": "fc9b52d5-c465-42ae-bac2-cd58b437ddc9", - "name": "SHELL CANADA PRODUCTS", - "endDate": "2014-06-16", - "startDate": "2021-03-31", + "uuid": "4b9af9d9-58c4-43b6-bf84-e1d09d4b56eb", + "name": "IPSUM", + "endDate": "2023-08-14", + "startDate": "2020-05-08", "notes": "", "roles": [ "ORGANIZATION" @@ -75276,90 +88600,222 @@ "siteRegistry": true }, { - "uuid": "e8fa8d28-9cc4-44da-9109-7cf15580bf45", + "uuid": "55122d69-fd1f-4e91-9bd6-a44575542cc2", "name": "SHELL CANADA PRODUCTS", - "endDate": "2020-10-17", - "startDate": "2019-12-18", + "endDate": "2015-02-12", + "startDate": "2016-07-28", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true + } + ], + "documents": [ + { + "uuid": "dee82409-1213-4098-924a-2284f7a99196", + "siteRegistry": false, + "documentDate": "2021-04-17", + "receivedDate": "2015-01-16", + "uploadedDate": "2019-12-19", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "1824d1f4-ab37-476e-bcfc-b5ecbb89ee6b", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": false, + "role": "AUTHOR" + } + ] }, { - "uuid": "a6279e50-ee25-4d1a-908d-f776cf07363d", - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2016-08-05", - "startDate": "2015-01-23", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": true + "uuid": "9ff319a2-1a52-46d5-bbfc-2ef2b9054ae4", + "siteRegistry": false, + "documentDate": "2017-05-02", + "receivedDate": "2018-01-04", + "uploadedDate": "2023-01-26", + "title": "Summary of Site Conditions, 1537 W 41st Avenue, Vancouver", + "participants": [ + { + "uuid": "f6ad0c14-32a4-4b0f-b076-ec732fbbf1da", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": false, + "role": "AUTHOR" + } + ] + }, + { + "uuid": "d1e83a45-ad04-46a1-bb83-c37441c22171", + "siteRegistry": true, + "documentDate": "2014-01-18", + "receivedDate": "2016-12-26", + "uploadedDate": "2020-07-16", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "03d6f8e1-c4cf-431a-a982-47556f0acd3f", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "ce791ae5-5e7c-4382-8796-715efa1b6b9e", + "name": "IPSUM", + "siteRegistry": false, + "role": "AUTHOR" + } + ] + }, + { + "uuid": "08120519-7b08-488e-92c1-5e86fcc4b8c5", + "siteRegistry": true, + "documentDate": "2022-03-18", + "receivedDate": "2017-03-10", + "uploadedDate": "2017-09-01", + "title": "Summary of Site Conditions, 1537 W 41st Avenue, Vancouver", + "participants": [ + { + "uuid": "5aa65f8e-38bc-41ed-a99f-7ef6b09936ee", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": true, + "role": "AUTHOR" + } + ] } ], "suspectLandUses": [ { - "uuid": "f743785e-c3ec-4f56-a3ec-f3cf6cc248e7", + "uuid": "f54f3dcf-7f77-47c7-b402-f2e27d697086", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-11-25 (described on Site Profile dated 2015-11-25)", + "notes": "INSERTED FOR SITE PROFILE DATED 2019-06-01 (described on Site Profile dated 2019-06-01)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "uuid": "3b1fe0d0-e789-4fb4-8022-8996e4f8e918", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2019-11-03 (described on Site Profile dated 2019-11-03)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "uuid": "931482b7-07a0-4f58-9cab-56972beeb5f2", + "uuid": "5cb1a4db-be26-4776-9b53-fdc8c95f04ef", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-12-07 (described on Site Profile dated 2021-12-07)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "notes": "INSERTED FOR SITE PROFILE DATED 2015-11-20 (described on Site Profile dated 2015-11-20)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "uuid": "495d654c-67d0-4d80-8764-702ae99dbecc", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2014-12-23 (described on Site Profile dated 2014-12-23)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], "parcelDescriptions": [ { - "uuid": "a30da4ba-ca1f-4a7d-a5bf-4c46f329d765", - "siteRegistry": false, - "dateNoted": "2018-09-25", - "parcelID": "16581", - "crownLandUsePIN": "20330", - "crownLandFileNumber": "19595", - "landDescription": "LOT 1 OF LOT 2 BLOCK 4 DISTRICT LOT 2 PLAN 9283" + "uuid": "827f60ff-50ea-47f9-927a-507c4bc5793f", + "siteRegistry": true, + "dateNoted": "2015-10-01", + "parcelID": "15390", + "crownLandUsePIN": "18166", + "crownLandFileNumber": "17262", + "landDescription": "LOT 2 OF LOT 2 BLOCK 1 DISTRICT LOT 3 PLAN 3449" }, { - "uuid": "4846bd98-38d8-49ef-90e0-89ae4d657951", + "uuid": "42ea85d9-3927-4e81-a92c-ad05c2b32619", + "siteRegistry": true, + "dateNoted": "2021-03-23", + "parcelID": "19253", + "crownLandUsePIN": "18101", + "crownLandFileNumber": "20931", + "landDescription": "LOT 3 OF LOT 5 BLOCK 1 DISTRICT LOT 1 PLAN 4806" + }, + { + "uuid": "c72876bf-620b-4e17-a1ef-2b50c908f188", + "siteRegistry": true, + "dateNoted": "2014-06-11", + "parcelID": "17262", + "crownLandUsePIN": "15422", + "crownLandFileNumber": "15921", + "landDescription": "LOT 2 OF LOT 3 BLOCK 1 DISTRICT LOT 4 PLAN 3610" + }, + { + "uuid": "37658d3c-77f7-4acf-ab1f-be917eaa63c2", + "siteRegistry": true, + "dateNoted": "2022-04-21", + "parcelID": "18504", + "crownLandUsePIN": "18153", + "crownLandFileNumber": "16342", + "landDescription": "LOT 1 OF LOT 5 BLOCK 3 DISTRICT LOT 3 PLAN 8284" + }, + { + "uuid": "b77917ab-5774-4494-84c8-6233202a7a00", "siteRegistry": false, - "dateNoted": "2014-02-02", - "parcelID": "17444", - "crownLandUsePIN": "17769", - "crownLandFileNumber": "16724", - "landDescription": "LOT 4 OF LOT 3 BLOCK 1 DISTRICT LOT 1 PLAN 8397" + "dateNoted": "2017-11-02", + "parcelID": "15997", + "crownLandUsePIN": "16518", + "crownLandFileNumber": "20213", + "landDescription": "LOT 4 OF LOT 3 BLOCK 1 DISTRICT LOT 4 PLAN 7006" } ], "siteDisclosures": [ { - "uuid": "b74510e2-654a-4ca7-8728-85e6196f5ccf", - "siteRegistry": false, - "dateReceived": "2015-04-08", - "dateCompleted": "2014-06-10", - "dateEntered": "2023-06-26", - "dateRegistrar": "2016-04-11", - "dateLocalAuthorityReceived": "2015-10-21", - "summary": "Maiores modi neque.\nReiciendis officia veniam dolorem.\nQuos pariatur a eligendi.", - "informationUsed": "Incidunt maxime eveniet maiores facere.\nPossimus sunt iure.\nLibero dolores aspernatur impedit repellat.\nAspernatur quod sit aspernatur dicta dolor placeat.", - "pastOrPresentOrders": "Occaecati amet mollitia eius molestiae rerum numquam fuga itaque.", + "uuid": "517a67b3-fe8f-4ce6-b26d-5663f879f0e5", + "siteRegistry": true, + "dateReceived": "2020-04-17", + "dateCompleted": "2022-03-30", + "dateEntered": "2018-12-22", + "dateRegistrar": "2019-01-11", + "dateLocalAuthorityReceived": "2021-12-31", + "summary": "Quaerat esse accusantium ut impedit rerum recusandae soluta minus aliquam.", + "informationUsed": "Tempora quos laboriosam aut beatae earum alias quidem fugiat deleniti.\nTotam qui accusantium facere in earum velit expedita dolorem deleniti.\nEsse illum aliquid repellendus ea id dicta vitae.\nAd laudantium quo dolor saepe.", + "pastOrPresentOrders": "Laborum ipsa voluptate maiores aliquam odit neque maiores.", "commercialAndIndustrialPurposes": [ { - "uuid": "b89fe806-2d7f-4fa2-b2f1-d19e0ff51841", + "uuid": "16562413-e3a1-4b93-bae6-9ddfd2dd4781", "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "uuid": "6882a632-3d90-4de9-bac6-94a5cbccbea1", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "uuid": "1860bda1-4f78-4fe6-bb97-48fa8c2bf2ea", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + } + ] + }, + { + "uuid": "167f2c91-1ca9-4b12-940e-5e4f6aaf74bd", + "siteRegistry": false, + "dateReceived": "2018-05-05", + "dateCompleted": "2016-02-21", + "dateEntered": "2015-08-02", + "dateRegistrar": "2022-10-08", + "dateLocalAuthorityReceived": "2015-09-02", + "summary": "Praesentium voluptatum harum ducimus illum.", + "informationUsed": "Itaque dolorum perspiciatis sit eum.\nPerferendis quo odio molestias officia qui.\nAt enim excepturi quisquam dicta.\nMaxime esse consequuntur nostrum est excepturi laborum quibusdam veritatis sapiente.", + "pastOrPresentOrders": "Molestiae eaque tenetur ratione harum in.", + "commercialAndIndustrialPurposes": [ + { + "uuid": "510b2c34-0fbf-4e34-a7d8-341789f11514", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { - "uuid": "03b8cbc8-3384-4d07-aa99-842bf7ef7721", + "uuid": "f39ddb0d-3e12-45f9-96f4-275cfaa81cd0", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { - "uuid": "c34b22b9-2583-4cca-9875-e2da891a4c61", - "scheduleReference": "F2*", + "uuid": "ecbd7f7f-1c61-42f2-815b-36bbdadf0614", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false } @@ -75368,108 +88824,92 @@ ], "activityLog": [ { - "uuid": "23de0b42-3efc-4373-a0a5-d5bc21961b76", - "siteRegistry": true, + "uuid": "fa5aa351-6343-4d01-89bd-37a21fb429a0", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "REMPEL KAROLANN", - "timestamp": "2023-04-11" + "user": "BREKKE TERESA", + "timestamp": "2023-01-22" }, { - "uuid": "4a779281-6a2f-4183-b29d-3820e95bbc89", - "siteRegistry": true, + "uuid": "6c667f8c-9558-4053-bb80-71e2f25e96d8", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "BECHTELAR-DICKINSON EARLINE", - "timestamp": "2020-11-10" + "user": "ABBOTT JUDSON", + "timestamp": "2016-08-02" }, { - "uuid": "23fbd162-d6fc-4e1c-8245-cfbe0bde17ac", - "siteRegistry": true, + "uuid": "616163fd-1572-470a-81aa-894551f36dc6", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "CHAMPLIN JERAD", - "timestamp": "2016-03-03" + "user": "MCLAUGHLIN MAXIMUS", + "timestamp": "2014-10-31" }, { - "uuid": "1c4beeb3-d653-43b8-8e80-300b003895f9", + "uuid": "df79708c-9931-4007-9cd2-8ff4f1b9dfb1", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "BEIER RICHARD", - "timestamp": "2015-11-07" + "user": "AUER-YOST JENNYFER", + "timestamp": "2016-10-15" }, { - "uuid": "1fcb4f97-d715-40e3-9df7-005e84fcf005", + "uuid": "0e6fe6b8-ffa6-479e-822a-36cdf68f13d8", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "O'KON AMIRA", - "timestamp": "2014-12-24" + "user": "RITCHIE LONIE", + "timestamp": "2023-01-08" }, { - "uuid": "751ff79c-0ebd-476f-ad6d-b26ff88149d3", - "siteRegistry": false, + "uuid": "21fcbaa1-98b3-4c11-84ea-f070378f819a", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "JENKINS NORBERT", - "timestamp": "2018-03-08" + "user": "MURRAY EUNICE", + "timestamp": "2018-07-26" }, { - "uuid": "2817bf30-9d74-41a4-bc4b-a730deeb6d76", + "uuid": "7b255be8-1b90-4efc-830c-8ffad5bb87c1", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "PURDY DUNCAN", - "timestamp": "2016-03-07" + "user": "FEIL NICHOLE", + "timestamp": "2018-09-28" } ], "associatedSites": [ { - "uuid": "12ed4155-b7a7-4b23-b886-14c6ceb43826", - "dateNoted": "2022-11-29", - "notes": "", - "parcelID": "19551", - "siteID": "19383", - "siteRegistry": false - }, - { - "uuid": "67e87ad5-fb56-4acc-82e5-cd29c5a6b806", - "dateNoted": "2017-12-14", - "notes": "", - "parcelID": "20653", - "siteID": "15304", - "siteRegistry": true - }, - { - "uuid": "d27b934c-96f0-44f0-ad17-c56011a0d88e", - "dateNoted": "2022-10-26", + "uuid": "5f792877-7197-4dd1-8205-3f315a347b92", + "dateNoted": "2016-08-02", "notes": "", - "parcelID": "16024", - "siteID": "18986", + "parcelID": "16656", + "siteID": "20698", "siteRegistry": false } ] }, { - "uuid": "a2f35ebc-3a4a-4c7f-8734-a0aa015f88c3", - "siteID": 20433, - "address": "15622 Patience Lodge", - "latitude": 57.403, - "longitude": -128.3927, - "lastUpdated": "2023-07-06", - "city": "Elkhart", + "uuid": "8bec0368-bca0-48b7-bb46-beed5a251c0a", + "siteID": 18757, + "address": "714 Lind Corners", + "latitude": 53.1952, + "longitude": -119.4505, + "lastUpdated": "2016-04-17", + "city": "Lewisville", "region": "Thompson-Okanagan", - "victoriaFile": "26250-20/15242", + "victoriaFile": "26250-20/16193", "regionalFile": "N/A", "parcelIDs": [ - 1546590, - 671711, - 5108373, - 533038, - 4264687 + 1466935, + 2301498, + 5960478, + 3537780, + 5993094 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "ce6c3b06-9824-4854-a6f3-e0d1b8002bdb", - "createdAt": "2015-02-25", - "completed": "2017-04-23", - "initiated": "2023-10-06", - "ministryContact": "BAYER MADELYN", + "uuid": "7624491c-115d-4b02-93d7-b4d58a6c23f6", + "createdAt": "2019-05-03", + "completed": "2021-11-18", + "initiated": "2022-11-14", + "ministryContact": "KOZEY NASH", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -75478,32 +88918,32 @@ ], "notationParticipants": [ { - "uuid": "136b8cfa-4f9c-4eda-9dc4-a69650776955", - "name": "SHELL CANADA PRODUCTS", + "uuid": "df45cfcb-516c-419d-bfb1-5f3bf441a4c2", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "1eb470c8-ac05-4863-b66e-27bd082fec07", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "uuid": "35e812cf-6e80-441a-9b56-aeb24128ced6", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "a0a5c9ae-b3b2-4dac-825d-896fd7c2080c", + "uuid": "55c23683-f67a-4530-bdb0-ebaae0ae96eb", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "a82992a1-a2f5-4cc6-a78c-c01e93c0cec7", - "createdAt": "2021-05-29", - "completed": "2022-01-22", - "initiated": "2014-06-30", - "ministryContact": "LARSON AUGUSTINE", + "uuid": "9b4446b9-629f-40a4-8192-28cb3239ceca", + "createdAt": "2022-05-07", + "completed": "2015-10-14", + "initiated": "2020-04-13", + "ministryContact": "SWIFT FRANCISCO", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -75512,60 +88952,33 @@ ], "notationParticipants": [ { - "uuid": "4e64c6cd-0ecb-48a3-976c-82533a1ea337", - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "uuid": "f537409a-c8b0-4d56-861d-519e797c7b05", - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "uuid": "1d3ea6e7-290c-4781-b12e-4f40a4337abb", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", "siteRegistry": true - } - ], - "siteRegistry": true - } - ], - "participants": [ - { - "uuid": "c572bfa6-9d28-49fd-b5ee-3c82abdd4601", - "name": "SHELL CANADA PRODUCTS", - "endDate": "2020-04-20", - "startDate": "2021-01-22", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": false - }, - { - "uuid": "147bba87-880a-47a7-8b9a-ce408cb33b04", - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2019-05-14", - "startDate": "2014-04-01", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": true - }, - { - "uuid": "4e4045b9-5f7f-43d2-969d-521f2409d3b4", - "name": "AMET, DOLOR SIT", - "endDate": "2023-09-10", - "startDate": "2023-01-04", - "notes": "", - "roles": [ - "ORGANIZATION" + }, + { + "uuid": "bbf33f66-b264-45a4-bfd9-f9ea4b4544b6", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "a44eee79-c76f-41ca-8995-96ded636c3cf", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + } ], "siteRegistry": false - }, + } + ], + "participants": [ { - "uuid": "ed29e02a-13d0-4d70-b217-d9f1394cafc2", - "name": "AMET, DOLOR SIT", - "endDate": "2015-12-27", - "startDate": "2019-07-14", + "uuid": "f6c1cc1f-34a9-4ad9-a31b-7b86838938e5", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2015-12-09", + "startDate": "2020-01-19", "notes": "", "roles": [ "ORGANIZATION" @@ -75573,186 +88986,317 @@ "siteRegistry": true }, { - "uuid": "c56c0b93-f8dc-4597-8e1a-f1ee9f32d090", - "name": "SHELL CANADA PRODUCTS", - "endDate": "2022-01-28", - "startDate": "2014-10-06", + "uuid": "1d5f7c84-6fd0-469d-b321-67f39174ab46", + "name": "AMET, DOLOR SIT", + "endDate": "2014-01-24", + "startDate": "2014-12-23", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false } ], - "suspectLandUses": [ + "documents": [ { - "uuid": "9b8e4b1b-c55b-418d-915e-d1a9f1ba1159", + "uuid": "22bf3dc6-3a0e-4cb6-8b17-53f546470dbf", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-02-03 (described on Site Profile dated 2017-02-03)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "documentDate": "2022-08-21", + "receivedDate": "2016-12-05", + "uploadedDate": "2018-11-16", + "title": "Summary of Site Conditions, 1537 W 41st Avenue, Vancouver", + "participants": [ + { + "uuid": "afdf7f3a-cc9e-4526-9b33-fa23b09c1b09", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": true, + "role": "AUTHOR" + } + ] + }, + { + "uuid": "ed1eccb1-de2a-4d08-8505-99c8bd357e00", + "siteRegistry": false, + "documentDate": "2018-04-01", + "receivedDate": "2015-03-06", + "uploadedDate": "2017-10-09", + "title": "Summary of Site Conditions, 1537 W 41st Avenue, Vancouver", + "participants": [ + { + "uuid": "e6e72176-d2ac-4182-9fdd-ad23e93969b1", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": true, + "role": "AUTHOR" + } + ] }, { - "uuid": "bb110644-b55e-4591-aee8-7d453e7ffaa4", + "uuid": "d52808ac-49e9-4553-ba74-5528b04dda3f", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-05-07 (described on Site Profile dated 2015-05-07)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "documentDate": "2016-12-03", + "receivedDate": "2015-04-18", + "uploadedDate": "2014-02-27", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "4097dd5c-2423-4a55-9754-f77dc240f08d", + "name": "AMET, DOLOR SIT", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "87e33c32-25e1-484f-abd2-137346b00da3", + "name": "IPSUM", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "6e47aa08-9766-4817-8d1b-ff3e1b18b7e2", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": false, + "role": "AUTHOR" + } + ] }, { - "uuid": "f09d0bd6-eb87-4a18-98ad-e34ee804d3c9", + "uuid": "d303e8cd-41ef-4cfd-af9e-202d4cc298d2", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-11-20 (described on Site Profile dated 2015-11-20)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "documentDate": "2014-08-22", + "receivedDate": "2022-01-15", + "uploadedDate": "2016-08-11", + "title": "Preliminary Site Investigation, Detailed Site Investigation and Remedial Plan for the Management Area adjacent to the Shell Site at 1503 West 41st Ave", + "participants": [ + { + "uuid": "bd314379-11b8-4a25-a598-96fb936b0cf7", + "name": "IPSUM", + "siteRegistry": true, + "role": "AUTHOR" + } + ] }, { - "uuid": "824fdbc7-55ab-41ae-ac89-6d1e47e3f0db", + "uuid": "7f53844f-46d2-4db0-bc78-ff0a79cd5528", + "siteRegistry": true, + "documentDate": "2017-11-24", + "receivedDate": "2015-07-31", + "uploadedDate": "2020-10-02", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "7a961e3b-06d8-4c9c-bcbe-2380fd4d3481", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "e4043c1b-d618-4611-96dc-d7893cc60a1e", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": false, + "role": "AUTHOR" + } + ] + } + ], + "suspectLandUses": [ + { + "uuid": "cc06c7a2-e0c8-468c-9304-0583c77d1b4e", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2023-09-18 (described on Site Profile dated 2023-09-18)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "notes": "INSERTED FOR SITE PROFILE DATED 2017-05-10 (described on Site Profile dated 2017-05-10)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "uuid": "b720e768-9901-4985-9823-957c98e1838c", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2017-12-08 (described on Site Profile dated 2017-12-08)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], "parcelDescriptions": [ { - "uuid": "6c52abb2-498d-47a9-9d7c-08f2eefeea13", + "uuid": "1ad7fa86-9e10-4589-adb8-624760d67e95", + "siteRegistry": false, + "dateNoted": "2016-11-29", + "parcelID": "17501", + "crownLandUsePIN": "16437", + "crownLandFileNumber": "18351", + "landDescription": "LOT 5 OF LOT 5 BLOCK 1 DISTRICT LOT 1 PLAN 3985" + }, + { + "uuid": "95c8f3a0-5234-4947-b860-8ffdd5e39524", "siteRegistry": true, - "dateNoted": "2014-07-29", - "parcelID": "15512", - "crownLandUsePIN": "20727", - "crownLandFileNumber": "20692", - "landDescription": "LOT 5 OF LOT 4 BLOCK 2 DISTRICT LOT 4 PLAN 5659" + "dateNoted": "2015-05-15", + "parcelID": "19048", + "crownLandUsePIN": "18619", + "crownLandFileNumber": "17672", + "landDescription": "LOT 5 OF LOT 2 BLOCK 1 DISTRICT LOT 4 PLAN 5948" }, { - "uuid": "818e2644-f010-4e99-bf0c-997524e202cf", + "uuid": "72bea8f2-21f1-44b9-a8df-7e69c01dcea3", "siteRegistry": false, - "dateNoted": "2020-08-17", - "parcelID": "15744", - "crownLandUsePIN": "19025", - "crownLandFileNumber": "19871", - "landDescription": "LOT 4 OF LOT 2 BLOCK 1 DISTRICT LOT 2 PLAN 4386" + "dateNoted": "2017-11-25", + "parcelID": "19860", + "crownLandUsePIN": "17806", + "crownLandFileNumber": "15432", + "landDescription": "LOT 4 OF LOT 5 BLOCK 2 DISTRICT LOT 3 PLAN 5139" + }, + { + "uuid": "62cbd31b-4ab3-4e62-9ae9-590dffc968e1", + "siteRegistry": true, + "dateNoted": "2015-03-30", + "parcelID": "20728", + "crownLandUsePIN": "16529", + "crownLandFileNumber": "15584", + "landDescription": "LOT 2 OF LOT 2 BLOCK 5 DISTRICT LOT 5 PLAN 8451" + }, + { + "uuid": "b2609760-f41c-4cb3-bce3-ae51e659d74a", + "siteRegistry": false, + "dateNoted": "2017-07-13", + "parcelID": "17170", + "crownLandUsePIN": "17606", + "crownLandFileNumber": "15333", + "landDescription": "LOT 3 OF LOT 1 BLOCK 5 DISTRICT LOT 1 PLAN 7748" } ], "siteDisclosures": [ { - "uuid": "1f61ae6d-1d8c-430e-98e3-6de0701841fd", - "siteRegistry": true, - "dateReceived": "2016-05-05", - "dateCompleted": "2018-01-11", - "dateEntered": "2022-06-17", - "dateRegistrar": "2020-06-11", - "dateLocalAuthorityReceived": "2015-09-04", - "summary": "Tempora cumque consequuntur magnam nesciunt unde officia dolorem facere quasi.\nRepellat vel nam.\nOmnis atque necessitatibus nostrum explicabo eaque.", - "informationUsed": "Laborum fuga totam sapiente eius natus.\nVeritatis consectetur ea dolorem modi nulla officiis voluptate expedita aliquam.\nAb sit blanditiis dolore hic commodi enim quod.", - "pastOrPresentOrders": "Totam odio beatae autem fuga.\nOdio itaque consequatur.", + "uuid": "642bd17a-2e62-42e4-9461-ef5d253d04fb", + "siteRegistry": false, + "dateReceived": "2021-05-19", + "dateCompleted": "2018-10-19", + "dateEntered": "2017-09-01", + "dateRegistrar": "2022-05-17", + "dateLocalAuthorityReceived": "2017-01-01", + "summary": "Maiores nam delectus porro alias repellat.", + "informationUsed": "Non aperiam placeat.\nRepudiandae numquam consequatur error eligendi porro reprehenderit in earum.\nRepellat suscipit maiores minus dolores earum.\nCumque ratione quae nesciunt.", + "pastOrPresentOrders": "Dolor minus aliquid.\nEos consequuntur eius amet tempore.", "commercialAndIndustrialPurposes": [ { - "uuid": "bb44354e-bfc3-4044-b5f9-b5dc83a23aa5", + "uuid": "753b03aa-8c83-48ee-8660-a6a7ed091a11", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, { - "uuid": "018d774a-10dd-4abb-8161-8b7e3ca2aebe", - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false - }, - { - "uuid": "2e0a42f5-0456-410f-b834-928231514bf6", - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false + "uuid": "41c3c919-7cf4-44da-94bd-88f72cd616b2", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true } ] } ], "activityLog": [ { - "uuid": "5c674df9-c6aa-46d8-ab5d-4d5f42bd56a5", + "uuid": "65e2a34a-370c-411e-880d-3d0e45fe26f1", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "HOWELL DASHAWN", - "timestamp": "2017-11-17" + "user": "HUEL RON", + "timestamp": "2018-05-02" }, { - "uuid": "f077f293-63e1-4d5d-9528-6e121afb1857", + "uuid": "6059b07d-a24b-435a-9afe-052bc07c75c3", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "LANGOSH DARION", - "timestamp": "2022-03-13" + "user": "LANGWORTH GABRIEL", + "timestamp": "2020-09-26" }, { - "uuid": "79176f42-2d44-4fe0-85d3-b77f31994d5e", + "uuid": "c0ff567c-7b40-464d-ba03-314cea0a0cc6", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "WOLFF DAREN", - "timestamp": "2019-09-21" + "user": "BALISTRERI ALVIS", + "timestamp": "2014-10-01" + }, + { + "uuid": "95e00026-5f8f-4e26-a7fa-b53c777c791a", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "SCHOEN MERLIN", + "timestamp": "2023-07-22" }, { - "uuid": "622c4b88-a66c-4928-b366-573e99d949db", + "uuid": "43ac1e50-0266-4ba2-aac8-470a1f7eb576", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "MCLAUGHLIN BARON", - "timestamp": "2016-06-04" + "user": "TRANTOW ELZA", + "timestamp": "2015-05-19" }, { - "uuid": "c824133d-bc02-41fd-9162-e790a250c8d4", + "uuid": "aff578f8-1eb5-4206-b8b3-efb73877d5b1", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "DOUGLAS DORTHA", - "timestamp": "2015-11-26" + "user": "LOWE ALLEN", + "timestamp": "2019-11-29" }, { - "uuid": "c36acae5-c9cf-4cb7-9ff8-093fe7f00918", + "uuid": "f25510d9-5a58-4b17-bfd0-ba6c97f86ffb", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "WARD ALEJANDRIN", - "timestamp": "2022-07-22" + "user": "BOSCO DASHAWN", + "timestamp": "2017-08-27" + }, + { + "uuid": "58f45dc8-abf4-4675-93cc-a2a4716c88f2", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "HUDSON RICKY", + "timestamp": "2017-11-24" } ], "associatedSites": [ { - "uuid": "15569fea-ee58-4242-87e9-3b3575d92161", - "dateNoted": "2017-03-23", + "uuid": "0dec0b7c-7e36-46b9-aa54-2226abcb1a9d", + "dateNoted": "2019-10-02", + "notes": "", + "parcelID": "20238", + "siteID": "19619", + "siteRegistry": false + }, + { + "uuid": "cf17eda6-35e2-4021-8e7a-66ea323c913f", + "dateNoted": "2015-10-15", "notes": "", - "parcelID": "17005", - "siteID": "20892", + "parcelID": "18467", + "siteID": "20988", "siteRegistry": false }, { - "uuid": "4e9e6ef4-0d55-455f-8fb2-236a66329792", - "dateNoted": "2022-09-23", + "uuid": "ec66dc38-bce5-41cc-ae84-3323f02a18ee", + "dateNoted": "2019-05-20", "notes": "", - "parcelID": "16104", - "siteID": "20380", + "parcelID": "20905", + "siteID": "20842", "siteRegistry": true } ] }, { - "uuid": "3aff25ba-09da-40b0-a2af-05ae9cd8eab8", - "siteID": 15426, - "address": "5975 Aurelia Harbor", - "latitude": 50.7513, - "longitude": -131.8679, - "lastUpdated": "2020-08-24", - "city": "Indianapolis", - "region": "Vancouver Island/Coast", - "victoriaFile": "26250-20/11609", + "uuid": "d26a5a16-674a-4014-8ffb-a3034c09cec6", + "siteID": 18582, + "address": "5690 Concepcion Pine", + "latitude": 55.3145, + "longitude": -138.5696, + "lastUpdated": "2021-04-14", + "city": "Yundtfurt", + "region": "Kootenay", + "victoriaFile": "26250-20/7333", "regionalFile": "N/A", "parcelIDs": [ - 4557734, - 2287398, - 5861452, - 3517984, - 3370301 + 7308925, + 2491111, + 9937734, + 6471173, + 6159848 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "c1801740-b6b8-498d-89e5-0263d7c164cf", - "createdAt": "2018-02-07", - "completed": "2016-09-24", - "initiated": "2017-11-23", - "ministryContact": "ROSENBAUM MARCELO", + "uuid": "88698c22-1452-4f19-987e-20aa350d4c48", + "createdAt": "2015-07-16", + "completed": "2015-09-25", + "initiated": "2016-06-21", + "ministryContact": "HOEGER CASPER", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -75761,38 +89305,26 @@ ], "notationParticipants": [ { - "uuid": "124cd145-55dd-429f-914f-8b7715885bef", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "uuid": "0317a28e-f48e-4f1f-8ac7-72d3c4c224f1", + "uuid": "e82e6be1-35f9-44b6-8501-f3b3d08a6afc", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "uuid": "7c1a5ac0-a720-4b27-a3f7-969bbf365e3f", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "d47d2246-1870-4836-9172-03a156c7f8dd", + "uuid": "682d5119-d9c5-4eb3-a99f-87897710fad2", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false + "role": "SUBMITTED BY", + "siteRegistry": true } ], "siteRegistry": false }, { - "uuid": "427c7b38-b1d6-4430-a52f-b6248ce659ab", - "createdAt": "2023-10-03", - "completed": "2016-01-31", - "initiated": "2013-12-07", - "ministryContact": "GOYETTE HERBERT", + "uuid": "ed2e963f-2aa9-4f2b-b0c1-fa78abf70add", + "createdAt": "2018-01-01", + "completed": "2018-09-21", + "initiated": "2021-04-29", + "ministryContact": "HUDSON RUSS", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -75801,32 +89333,44 @@ ], "notationParticipants": [ { - "uuid": "d98b7970-4f25-4930-a60d-bbad4cf3b73b", + "uuid": "ecfdce2e-3fa9-46dd-8612-b013580b23bb", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "uuid": "4736dba1-8646-4585-80ee-c54bbf94489d", "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "c093f636-7968-4b7f-849c-f6fe29b9b546", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "69013ad6-de02-4ff7-9532-8d944722b0d7", - "name": "SHELL CANADA PRODUCTS", + "uuid": "94f7ea99-2bb5-4c32-ab87-7c256c7bf53a", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "eb7a4bc3-430f-49e9-b222-7fc18ab6d25a", + "uuid": "0f94e6ba-f258-470b-a80f-84522fea0403", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "377053e8-60de-4dc1-a438-5db5b922d311", - "createdAt": "2018-01-06", - "completed": "2018-04-16", - "initiated": "2015-02-27", - "ministryContact": "DARE KAYLIN", + "uuid": "6a650938-75a5-46bc-a8cf-1d6892489ef8", + "createdAt": "2021-04-20", + "completed": "2013-11-19", + "initiated": "2015-06-29", + "ministryContact": "KULAS JOANNIE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -75835,28 +89379,22 @@ ], "notationParticipants": [ { - "uuid": "a329ffb1-9159-4c2b-8516-bccd04165856", + "uuid": "00030a0c-777f-4b18-acf8-2958cc20330b", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true }, { - "uuid": "8b843543-7432-49f9-9ebd-7642acb1de66", - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "254c6813-eb5e-4cf7-86d0-0290c2cf902c", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "525a0d87-1aa2-437e-a7f1-ef62af0830b1", + "uuid": "8b75fc2a-ded2-4411-a292-2bc889b16739", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true - }, - { - "uuid": "15f7b6da-f661-4f01-8711-7c0be4b3d4f7", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false } ], "siteRegistry": false @@ -75864,161 +89402,246 @@ ], "participants": [ { - "uuid": "53356e1c-8b20-43e5-bd9b-2eae83ab83a8", - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2014-01-15", - "startDate": "2017-12-22", + "uuid": "ade528c0-c13b-4eb7-88c3-5569157a0fae", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2015-06-18", + "startDate": "2017-09-06", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "60d1ba09-c6a4-476b-b37d-6a17dd1e6d21", + "uuid": "9c1cebd3-fe54-4235-ab10-e95758c8a6e8", "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2017-05-21", - "startDate": "2016-01-21", + "endDate": "2015-11-04", + "startDate": "2015-08-01", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "b1575fd1-2a59-419f-8ceb-5b67d20e9e5e", - "name": "IPSUM", - "endDate": "2014-08-26", - "startDate": "2016-07-07", + "uuid": "9fec58db-e93a-415f-9272-e593ab60709b", + "name": "AMET, DOLOR SIT", + "endDate": "2021-01-29", + "startDate": "2014-06-01", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": true }, { - "uuid": "14764e31-abd1-4172-9353-d00b1a39f7e9", - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2018-06-16", - "startDate": "2017-03-15", + "uuid": "c4fbd9fc-7bce-4d40-b094-4d33d03ccef7", + "name": "AMET, DOLOR SIT", + "endDate": "2018-10-23", + "startDate": "2022-10-30", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": false + } + ], + "documents": [ + { + "uuid": "4b8f9f45-93fc-4035-b5ef-1aa689507f9e", + "siteRegistry": false, + "documentDate": "2015-05-13", + "receivedDate": "2016-05-04", + "uploadedDate": "2017-10-01", + "title": "Preliminary Site Investigation, Detailed Site Investigation and Remedial Plan for the Management Area adjacent to the Shell Site at 1503 West 41st Ave", + "participants": [ + { + "uuid": "8e93e52c-0eb6-4e2d-869e-16ef8fac87d2", + "name": "AMET, DOLOR SIT", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "492775f7-d881-47a2-b480-ae6b2b447e59", + "name": "AMET, DOLOR SIT", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "56b35970-c5f8-40d1-a952-46e7ee0d6a61", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": true, + "role": "AUTHOR" + } + ] }, { - "uuid": "4a348746-99b5-48f0-b7e8-7f0f9be24ff3", - "name": "SHELL CANADA PRODUCTS", - "endDate": "2014-08-22", - "startDate": "2020-06-29", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": false + "uuid": "a2a6bfe0-0959-4d0f-a5b7-32a23374e727", + "siteRegistry": false, + "documentDate": "2019-07-27", + "receivedDate": "2021-05-07", + "uploadedDate": "2018-06-17", + "title": "Preliminary Site Investigation, Detailed Site Investigation and Remedial Plan for the Management Area adjacent to the Shell Site at 1503 West 41st Ave", + "participants": [ + { + "uuid": "5845f5bb-1e6e-4b52-bd29-095d69f5c826", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "2649d7d8-f6de-41fd-850a-9e5caf9f47be", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "897752fb-70fb-4be1-84e8-9000dc558ccf", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": true, + "role": "AUTHOR" + } + ] + }, + { + "uuid": "a19793ad-d180-4188-b9c1-36ea17cd836c", + "siteRegistry": true, + "documentDate": "2017-06-21", + "receivedDate": "2022-08-15", + "uploadedDate": "2023-07-07", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "bd91a5bb-8b2f-45d5-be24-ef177bebef5c", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "ab070c3d-f8df-4285-bb77-957278245ccd", + "name": "IPSUM", + "siteRegistry": false, + "role": "AUTHOR" + } + ] + }, + { + "uuid": "e6172d59-816e-4d38-8233-012717823151", + "siteRegistry": false, + "documentDate": "2022-02-06", + "receivedDate": "2021-09-20", + "uploadedDate": "2014-01-12", + "title": "Summary of Site Conditions, 1537 W 41st Avenue, Vancouver", + "participants": [ + { + "uuid": "ea27c136-0690-4f95-a3f5-642f4805d65f", + "name": "AMET, DOLOR SIT", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "51afef65-0c13-4aab-89bb-85150dd8a88e", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": true, + "role": "AUTHOR" + } + ] } ], "suspectLandUses": [ { - "uuid": "625b8de4-ba79-49ff-8331-97d16505baa7", + "uuid": "0388946d-5950-474d-b74f-10353d4caa23", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-05-24 (described on Site Profile dated 2022-05-24)", + "notes": "INSERTED FOR SITE PROFILE DATED 2017-01-06 (described on Site Profile dated 2017-01-06)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "uuid": "c1e5af28-a49e-4164-8ace-59d19ec9f3bb", + "uuid": "ac9166e9-d716-4ce5-a5ef-502feaebee02", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2020-04-13 (described on Site Profile dated 2020-04-13)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" - }, - { - "uuid": "5cbc298e-eb3b-4b54-a890-96cd84e85481", - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-09-18 (described on Site Profile dated 2014-09-18)", + "notes": "INSERTED FOR SITE PROFILE DATED 2014-12-20 (described on Site Profile dated 2014-12-20)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "uuid": "26da3eeb-27ca-4ddc-902b-2c7496cd93ed", + "uuid": "e083bd89-2f5f-4a19-b013-2599c2af0fd6", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-08-21 (described on Site Profile dated 2022-08-21)", + "notes": "INSERTED FOR SITE PROFILE DATED 2017-05-24 (described on Site Profile dated 2017-05-24)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], "parcelDescriptions": [ { - "uuid": "67dc040a-a08b-4889-a841-395de6f728f4", + "uuid": "0029fe2e-96f0-46e0-b858-db406361355f", "siteRegistry": true, - "dateNoted": "2017-05-23", - "parcelID": "20002", - "crownLandUsePIN": "17625", - "crownLandFileNumber": "16504", - "landDescription": "LOT 4 OF LOT 4 BLOCK 2 DISTRICT LOT 2 PLAN 5051" + "dateNoted": "2014-01-23", + "parcelID": "16150", + "crownLandUsePIN": "15312", + "crownLandFileNumber": "18509", + "landDescription": "LOT 5 OF LOT 2 BLOCK 5 DISTRICT LOT 3 PLAN 8935" }, { - "uuid": "71575fc0-0d53-4468-aa08-41e62af755c0", - "siteRegistry": true, - "dateNoted": "2015-01-15", - "parcelID": "19091", - "crownLandUsePIN": "18872", - "crownLandFileNumber": "19964", - "landDescription": "LOT 4 OF LOT 2 BLOCK 2 DISTRICT LOT 2 PLAN 8044" + "uuid": "c96a27e1-dd3d-4162-a189-a69e58406a18", + "siteRegistry": false, + "dateNoted": "2023-04-13", + "parcelID": "15404", + "crownLandUsePIN": "19013", + "crownLandFileNumber": "19015", + "landDescription": "LOT 1 OF LOT 3 BLOCK 5 DISTRICT LOT 1 PLAN 4216" }, { - "uuid": "2a6d926c-f4d0-4194-aa8c-3677bb5c43f3", + "uuid": "846110a6-381c-4da0-b4e3-7dafe822e53f", "siteRegistry": true, - "dateNoted": "2017-11-17", - "parcelID": "15932", - "crownLandUsePIN": "16520", - "crownLandFileNumber": "16914", - "landDescription": "LOT 3 OF LOT 4 BLOCK 3 DISTRICT LOT 5 PLAN 5208" + "dateNoted": "2017-09-19", + "parcelID": "17018", + "crownLandUsePIN": "20178", + "crownLandFileNumber": "17538", + "landDescription": "LOT 3 OF LOT 2 BLOCK 5 DISTRICT LOT 1 PLAN 9300" }, { - "uuid": "83795333-35e3-4853-946f-b641c00dfff4", - "siteRegistry": false, - "dateNoted": "2017-12-04", - "parcelID": "15728", - "crownLandUsePIN": "19641", - "crownLandFileNumber": "17882", - "landDescription": "LOT 3 OF LOT 2 BLOCK 5 DISTRICT LOT 5 PLAN 3654" + "uuid": "b4ae5169-7c44-4856-8fdb-4374f7f0ce1a", + "siteRegistry": true, + "dateNoted": "2022-08-06", + "parcelID": "18050", + "crownLandUsePIN": "18650", + "crownLandFileNumber": "18523", + "landDescription": "LOT 4 OF LOT 2 BLOCK 4 DISTRICT LOT 1 PLAN 8981" }, { - "uuid": "0762e15b-8614-46ab-ba0d-424d66dc8b0f", + "uuid": "d4d035a2-8060-47a4-9c6e-b0cc5fff0b40", "siteRegistry": true, - "dateNoted": "2016-01-31", - "parcelID": "15909", - "crownLandUsePIN": "17307", - "crownLandFileNumber": "18396", - "landDescription": "LOT 1 OF LOT 2 BLOCK 5 DISTRICT LOT 1 PLAN 5426" + "dateNoted": "2015-07-15", + "parcelID": "20487", + "crownLandUsePIN": "20038", + "crownLandFileNumber": "15703", + "landDescription": "LOT 4 OF LOT 1 BLOCK 1 DISTRICT LOT 4 PLAN 7286" } ], "siteDisclosures": [ { - "uuid": "365f0a33-b9b8-4ca7-b0fe-2cf1b3912c71", - "siteRegistry": false, - "dateReceived": "2020-09-27", - "dateCompleted": "2022-01-15", - "dateEntered": "2015-10-31", - "dateRegistrar": "2014-10-20", - "dateLocalAuthorityReceived": "2013-11-09", - "summary": "Accusamus facere facere sapiente sint.\nEveniet corporis deleniti.\nEveniet aliquam at labore eum distinctio architecto laboriosam fuga.", - "informationUsed": "Ipsa eveniet eveniet magnam necessitatibus quam repudiandae exercitationem.\nEx ea repellat.\nAt necessitatibus omnis odit minima.\nMinima iure rerum placeat.", - "pastOrPresentOrders": "Voluptate quibusdam veritatis consectetur laborum sapiente nesciunt fuga.\nFacere qui quibusdam doloribus esse aspernatur.\nOfficiis incidunt aut architecto ea ad.", + "uuid": "65a01581-3a95-45e7-a76f-22e9dbf92f7e", + "siteRegistry": true, + "dateReceived": "2016-07-22", + "dateCompleted": "2016-08-22", + "dateEntered": "2015-10-29", + "dateRegistrar": "2016-01-25", + "dateLocalAuthorityReceived": "2021-05-11", + "summary": "Quisquam ullam rem eum et itaque.\nAmet inventore accusamus veritatis numquam expedita laboriosam.\nDoloremque commodi fugit.", + "informationUsed": "Incidunt ipsam quia recusandae voluptatem fugiat minima.\nSapiente eaque sequi totam quae.\nSuscipit tempora veniam dolore.\nEst at totam cupiditate dolorum iure delectus eius nemo neque.\nMolestias nulla ratione.", + "pastOrPresentOrders": "Ea inventore veritatis animi corrupti ipsum nihil.", "commercialAndIndustrialPurposes": [ { - "uuid": "e5185494-8fa4-4868-bc52-9fe38f176286", + "uuid": "c4540cbb-9722-4c27-8a15-81fa03d1c818", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "ac546d87-0fab-42c0-99c3-7f2e9bc6aa95", + "uuid": "e0138c2a-3791-4c7e-b60e-fb4cc34b7e5e", "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { - "uuid": "e67fbec5-d963-4ff3-9ebf-7c02d861f105", + "uuid": "40ccad1e-eae8-4b29-9248-227dc7b20200", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true @@ -76026,39 +89649,33 @@ ] }, { - "uuid": "82ca0d20-8cac-4106-a4fc-576c6788ec02", + "uuid": "60be6261-74be-420f-b55d-fa863d4e2986", "siteRegistry": true, - "dateReceived": "2020-07-31", - "dateCompleted": "2015-07-18", - "dateEntered": "2018-09-16", - "dateRegistrar": "2019-09-05", - "dateLocalAuthorityReceived": "2020-01-22", - "summary": "Non sequi tenetur illo totam necessitatibus fugit corrupti sed error.", - "informationUsed": "Harum molestiae earum ad dolores aut explicabo numquam quam ipsa.\nMolestias placeat saepe nemo dolor consequatur quidem excepturi quam id.\nMaxime reprehenderit est in qui maxime.", - "pastOrPresentOrders": "Itaque sunt odit nesciunt nemo.", + "dateReceived": "2021-06-14", + "dateCompleted": "2014-03-01", + "dateEntered": "2016-08-22", + "dateRegistrar": "2015-01-05", + "dateLocalAuthorityReceived": "2018-03-27", + "summary": "Harum dignissimos itaque.\nDeserunt sit natus soluta fugiat modi.\nEarum eaque ab provident hic nemo quos.", + "informationUsed": "Repudiandae consequuntur quidem et dolores ut.\nDolores unde itaque repellat explicabo iste doloremque.\nProvident earum magnam.\nVel aspernatur reprehenderit veniam porro.", + "pastOrPresentOrders": "Rerum maxime officiis tempora vel id voluptatum aliquam quaerat.", "commercialAndIndustrialPurposes": [ { - "uuid": "7b09b874-ae2a-48c5-b7a0-9a893f26dacc", - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false - }, - { - "uuid": "44810d8d-9575-4f23-b22c-1c16b99460ec", + "uuid": "f98509ef-f15c-4f2a-9ee4-61b690fc4355", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false }, { - "uuid": "b2e404e2-0eaa-4b87-ad5c-2905397d8091", + "uuid": "72b5d09a-1855-4ead-9614-2b0f03e7f55b", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { - "uuid": "2bdcfbec-38a6-48df-a3af-2b70c1e4de6e", - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "uuid": "46d0069e-7e2f-4c92-a28f-4cf658e01692", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false } ] @@ -76066,121 +89683,135 @@ ], "activityLog": [ { - "uuid": "fdb51a70-504f-43ba-a3c6-b24f2c6cd62f", - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "BERGE CATHERINE", - "timestamp": "2017-02-10" - }, - { - "uuid": "9b7c5488-0f25-43fb-b03d-63a5e58d0c10", + "uuid": "34b5c213-0c97-4c10-9f3f-1d62e0e2c2e8", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "ZIEME DAMION", - "timestamp": "2023-07-08" - }, - { - "uuid": "f93877d8-622d-45a3-a888-6a1ab393ce84", - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "NADER NOEL", - "timestamp": "2018-12-28" + "user": "CONN BRODY", + "timestamp": "2020-02-14" }, { - "uuid": "ccb45bf1-fa0c-43e0-8396-ff0dd9042868", + "uuid": "51bbe793-7f1d-4bde-8512-8c7da1fc62f7", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "MOEN MARQUISE", - "timestamp": "2013-12-19" + "user": "SCHUSTER JERAMIE", + "timestamp": "2013-12-06" }, { - "uuid": "7fbc7395-071d-4351-9ffe-21aa643df398", + "uuid": "d1971632-8626-4027-bd4a-71cd7872e088", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "EFFERTZ JANICE", - "timestamp": "2023-08-20" + "user": "LARKIN ONA", + "timestamp": "2019-12-22" }, { - "uuid": "e97927f7-49be-4291-aa21-d314313f5de5", + "uuid": "17fe2db5-b1a7-4248-a1fa-21acabc1d5af", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "WALKER BRENNA", - "timestamp": "2022-12-12" + "user": "MANN DARREN", + "timestamp": "2015-07-21" }, { - "uuid": "2ceef012-faa7-4a16-9049-866d6aa653b0", + "uuid": "2c6ad84f-476c-46a6-bf23-617cd5622ee3", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "STANTON MELANY", - "timestamp": "2016-05-31" - }, - { - "uuid": "34b84572-4beb-456c-923a-326a973da007", - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "HAND MAXIMO", - "timestamp": "2017-06-18" - }, - { - "uuid": "7b801029-5eda-4be9-9ba5-e1a3616d6ff4", - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "ROWE CEDRICK", - "timestamp": "2017-09-05" + "user": "STANTON JAIME", + "timestamp": "2016-01-10" }, { - "uuid": "aad5a081-b245-4639-9ee2-5682183fa52b", + "uuid": "93a95450-fb36-42d4-8b31-76fe3e843525", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "MURAZIK IVAH", - "timestamp": "2013-10-25" + "user": "KOVACEK LELA", + "timestamp": "2015-07-22" } ], "associatedSites": [ { - "uuid": "d03f5e9f-4229-417d-8c0c-7d5f495fe556", - "dateNoted": "2019-07-10", + "uuid": "119aa6c8-ad9e-4e59-87ca-eb52c597b4f7", + "dateNoted": "2023-03-16", "notes": "", - "parcelID": "15279", - "siteID": "17261", - "siteRegistry": false + "parcelID": "16369", + "siteID": "20343", + "siteRegistry": true }, { - "uuid": "3b34fd7d-f17e-4b07-85c6-404c90c8d4bb", - "dateNoted": "2018-12-07", + "uuid": "e6ef11c9-3587-474b-9809-69f3dfa73015", + "dateNoted": "2020-12-22", + "notes": "", + "parcelID": "15983", + "siteID": "20630", + "siteRegistry": true + }, + { + "uuid": "7ad257e4-776d-4f8e-8964-2f544b490dba", + "dateNoted": "2021-03-16", "notes": "", - "parcelID": "19289", - "siteID": "16078", + "parcelID": "17283", + "siteID": "16177", "siteRegistry": true } ] }, { - "uuid": "a01c9303-da18-43ef-b14f-dd2df37c44f5", - "siteID": 16071, - "address": "3364 Olga Garden", - "latitude": 55.4698, - "longitude": -133.4088, - "lastUpdated": "2015-07-15", - "city": "New Maurine", - "region": " North Coast", - "victoriaFile": "26250-20/9340", + "uuid": "6882d172-0fae-41a2-af54-b81e5661b847", + "siteID": 20260, + "address": "7924 Kessler Mount", + "latitude": 52.0302, + "longitude": -137.9545, + "lastUpdated": "2020-07-05", + "city": "West Des Moines", + "region": "Mainland/Southwest", + "victoriaFile": "26250-20/10642", "regionalFile": "N/A", "parcelIDs": [ - 8766179, - 691928, - 288311, - 3658239, - 6057914 + 429984, + 7785897, + 9926354, + 5159448, + 4563885 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "ee02458d-e961-4e5a-803e-3837a91726a1", - "createdAt": "2017-05-29", - "completed": "2020-04-09", - "initiated": "2018-05-30", - "ministryContact": "REINGER MITCHELL", + "uuid": "44993df7-b0a0-42b6-a7bc-3999f4cbdece", + "createdAt": "2015-03-02", + "completed": "2022-08-10", + "initiated": "2018-06-04", + "ministryContact": "BROWN NOLA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "uuid": "1174bbc6-83f0-4d43-9f12-6b46d2a23833", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "20f698bd-376d-4791-9198-95b06ee82139", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "uuid": "fe9b25d2-88cc-4b8c-88bf-c6c84814d1aa", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "uuid": "6e818a8f-51ef-42d1-ac24-bc3fb8fe1505", + "createdAt": "2020-08-11", + "completed": "2017-03-27", + "initiated": "2016-02-11", + "ministryContact": "FADEL ALESSANDRO", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -76189,32 +89820,106 @@ ], "notationParticipants": [ { - "uuid": "3d7578c2-7e7b-45a4-bc3d-8de79a51349b", + "uuid": "23238495-ed88-40a4-9529-c01ff2494e27", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "uuid": "e21dca98-9cd8-4770-95a6-c93cfd26116a", "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "1537d897-fca9-407d-8adf-162a585d6692", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "2e4e0364-4853-4926-8bc1-2fcc6bf2cfe8", + "uuid": "efc5139c-93b7-4221-a9cd-c1a8087d91ce", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "uuid": "f5d1dde5-da2d-45e0-abad-e0c9cc4ffed6", + "createdAt": "2015-07-24", + "completed": "2017-11-12", + "initiated": "2014-03-01", + "ministryContact": "NIKOLAUS LEONOR", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "uuid": "55ef0ecd-1acf-4bb6-bdee-0825bd07d055", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "uuid": "0c946302-4d04-481c-82e3-1e1ca2d9bd8e", "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "uuid": "bad04f46-fe16-4189-91fe-cbee57d48b5e", + "createdAt": "2017-10-29", + "completed": "2016-08-24", + "initiated": "2014-07-02", + "ministryContact": "BERGE MAYRA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "uuid": "5349be22-1c64-44ba-b0fe-3cfb8b708d2a", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "8e6be4df-4c38-46f1-9abe-671c6edcb3b7", + "uuid": "d1a99091-0f37-4f06-a992-d9590edfc1cd", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "0ba45f6a-0ad3-4863-aa8e-fcfe8d710cef", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": true + }, + { + "uuid": "c4b3991f-df82-4b14-bb4b-5981796c11ef", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false } ], "siteRegistry": true }, { - "uuid": "0ca32a61-457e-4697-8ee5-bfd7f0cb474a", - "createdAt": "2018-11-20", - "completed": "2015-09-07", - "initiated": "2023-06-18", - "ministryContact": "HUEL MARINA", + "uuid": "3ae4262b-ee83-44b5-875a-268df5da6325", + "createdAt": "2019-10-06", + "completed": "2019-04-01", + "initiated": "2016-11-14", + "ministryContact": "BEDNAR BUFORD", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -76223,15 +89928,27 @@ ], "notationParticipants": [ { - "uuid": "4f13a208-fe23-4a93-8928-6a48ffaa28fc", + "uuid": "70293db9-7d69-4afd-93df-5743be02939f", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "uuid": "78f7e2c6-67fb-4251-9d6d-ce4fb453fa02", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "1fcc7913-fa28-4ee2-b1b9-f1cf4415eeea", - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "8e4ba5c3-a6b8-4a9d-80d3-bbb1d63222d6", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "uuid": "6bafbe63-2507-4de6-990b-44f2d79376a9", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", "siteRegistry": true } ], @@ -76240,21 +89957,43 @@ ], "participants": [ { - "uuid": "5fdfece5-037c-4033-af15-389e2eb4d197", - "name": "IPSUM", - "endDate": "2014-04-15", - "startDate": "2020-08-09", + "uuid": "3763db2e-d84a-4ff6-a1b4-fac1a7ed64e6", + "name": "AMET, DOLOR SIT", + "endDate": "2016-08-05", + "startDate": "2018-06-30", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": true }, { - "uuid": "bd59eb1f-631a-4da1-96ad-f134dcbe434a", + "uuid": "a2efffeb-9529-46b0-8f7d-2c511eaaaddf", "name": "AMET, DOLOR SIT", - "endDate": "2015-06-10", - "startDate": "2019-05-01", + "endDate": "2017-05-31", + "startDate": "2017-10-12", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "uuid": "554f7e2a-0913-4206-8ed5-ebee33174b12", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2021-05-31", + "startDate": "2018-02-01", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "uuid": "3e09fb02-7e55-4cb0-b620-f4a7b91c3c33", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2022-12-14", + "startDate": "2014-06-05", "notes": "", "roles": [ "ORGANIZATION" @@ -76262,238 +90001,224 @@ "siteRegistry": true } ], + "documents": [ + { + "uuid": "e0d6c034-76a9-4502-8119-6c4e710c7f96", + "siteRegistry": true, + "documentDate": "2017-03-14", + "receivedDate": "2016-05-11", + "uploadedDate": "2023-06-28", + "title": "Summary of Site Conditions, 1537 W 41st Avenue, Vancouver", + "participants": [ + { + "uuid": "d624900e-e50b-4a7a-9a41-e3090f8ebc8d", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "20ef09bd-1fde-49ce-a87d-b3538217e3e4", + "name": "IPSUM", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "d34ef980-ff02-452e-af71-d08f933cf5d7", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": false, + "role": "AUTHOR" + } + ] + } + ], "suspectLandUses": [ { - "uuid": "ed74bb5e-dcca-43bf-800a-90717d3b1aae", + "uuid": "249dd09e-63ef-4540-966d-838caf656ea1", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2020-09-09 (described on Site Profile dated 2020-09-09)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "notes": "INSERTED FOR SITE PROFILE DATED 2022-08-01 (described on Site Profile dated 2022-08-01)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "uuid": "6960bea9-3c5e-4920-ba25-fdbb1aaa6e92", - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-06-20 (described on Site Profile dated 2018-06-20)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "uuid": "8814915c-9d19-4d90-8edc-6f458ba13d7a", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2019-01-15 (described on Site Profile dated 2019-01-15)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "uuid": "6c501703-4c77-4fd9-a258-746f8383dd7d", - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-09-11 (described on Site Profile dated 2015-09-11)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "uuid": "ea9f97fd-9182-4c5b-9929-bb6270bf20e5", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2019-02-05 (described on Site Profile dated 2019-02-05)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "uuid": "ca5dc44d-1618-4ab8-bb5f-efb107d9df1d", + "uuid": "95b6b934-e719-45af-ab36-83fd20c18726", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2020-06-22 (described on Site Profile dated 2020-06-22)", + "notes": "INSERTED FOR SITE PROFILE DATED 2019-08-15 (described on Site Profile dated 2019-08-15)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], "parcelDescriptions": [ { - "uuid": "6266a21e-52c0-49d7-b0ac-b9571bb1146c", + "uuid": "6ccdef00-b991-4a39-8d1a-95b338adec3c", "siteRegistry": true, - "dateNoted": "2015-10-22", - "parcelID": "16631", - "crownLandUsePIN": "19018", - "crownLandFileNumber": "18915", - "landDescription": "LOT 3 OF LOT 3 BLOCK 2 DISTRICT LOT 5 PLAN 4305" - }, - { - "uuid": "ba23fb3a-d570-4d19-b84f-616760a34101", - "siteRegistry": true, - "dateNoted": "2019-03-29", - "parcelID": "17955", - "crownLandUsePIN": "20884", - "crownLandFileNumber": "19578", - "landDescription": "LOT 5 OF LOT 3 BLOCK 3 DISTRICT LOT 2 PLAN 7116" + "dateNoted": "2015-11-15", + "parcelID": "19775", + "crownLandUsePIN": "16019", + "crownLandFileNumber": "19018", + "landDescription": "LOT 2 OF LOT 5 BLOCK 5 DISTRICT LOT 4 PLAN 3669" }, { - "uuid": "a6ed0cbe-49ce-4e40-b2e0-22fe457f3918", - "siteRegistry": true, - "dateNoted": "2021-07-23", - "parcelID": "18391", - "crownLandUsePIN": "18066", - "crownLandFileNumber": "17638", - "landDescription": "LOT 4 OF LOT 3 BLOCK 4 DISTRICT LOT 4 PLAN 3985" + "uuid": "c3270aa0-a118-40ad-bb2e-82a20ff96c5b", + "siteRegistry": false, + "dateNoted": "2016-11-21", + "parcelID": "18143", + "crownLandUsePIN": "19148", + "crownLandFileNumber": "20057", + "landDescription": "LOT 5 OF LOT 5 BLOCK 5 DISTRICT LOT 3 PLAN 9138" }, { - "uuid": "b9ec07c2-a95e-44a0-8e0a-0a0d2a62281f", + "uuid": "ddad9c45-2377-466c-829c-599de96d4df8", "siteRegistry": false, - "dateNoted": "2022-04-20", - "parcelID": "15663", - "crownLandUsePIN": "15481", - "crownLandFileNumber": "15704", - "landDescription": "LOT 1 OF LOT 5 BLOCK 2 DISTRICT LOT 4 PLAN 3567" + "dateNoted": "2018-07-08", + "parcelID": "18386", + "crownLandUsePIN": "16867", + "crownLandFileNumber": "19980", + "landDescription": "LOT 4 OF LOT 2 BLOCK 4 DISTRICT LOT 4 PLAN 4243" }, { - "uuid": "709d94de-545e-48f8-aa70-3d6f82b1a4c2", + "uuid": "c878f28e-c142-4557-b2c4-174898158900", "siteRegistry": false, - "dateNoted": "2023-08-18", - "parcelID": "15790", - "crownLandUsePIN": "17679", - "crownLandFileNumber": "16635", - "landDescription": "LOT 5 OF LOT 5 BLOCK 4 DISTRICT LOT 3 PLAN 9657" + "dateNoted": "2017-07-17", + "parcelID": "15703", + "crownLandUsePIN": "16898", + "crownLandFileNumber": "20001", + "landDescription": "LOT 2 OF LOT 2 BLOCK 1 DISTRICT LOT 5 PLAN 7595" } ], "siteDisclosures": [ { - "uuid": "109bde35-0817-4823-92f2-9afc0fb9a1aa", - "siteRegistry": false, - "dateReceived": "2014-07-30", - "dateCompleted": "2023-04-17", - "dateEntered": "2015-11-05", - "dateRegistrar": "2023-07-07", - "dateLocalAuthorityReceived": "2023-05-20", - "summary": "Eos laboriosam earum sit.\nFugiat dignissimos neque iusto.", - "informationUsed": "Ab sapiente molestias reprehenderit maxime.\nNumquam est totam voluptas ad occaecati temporibus ducimus quisquam.\nEst officia voluptas eaque ea iusto doloribus aperiam.\nLaboriosam quisquam ex commodi velit blanditiis tenetur libero similique maiores.\nSaepe officiis sapiente occaecati ex voluptate.", - "pastOrPresentOrders": "Totam tenetur delectus necessitatibus error repellat voluptate.\nLibero asperiores molestiae consequuntur dolore architecto eum non assumenda.", + "uuid": "56207a03-11a3-489d-8da4-58664c88362b", + "siteRegistry": true, + "dateReceived": "2017-04-13", + "dateCompleted": "2016-05-28", + "dateEntered": "2016-10-06", + "dateRegistrar": "2018-04-16", + "dateLocalAuthorityReceived": "2017-09-17", + "summary": "Tempore porro eius.\nReprehenderit at quibusdam nam dolores provident exercitationem natus hic in.\nRecusandae placeat molestiae quas enim corrupti eum corrupti.", + "informationUsed": "Eos alias sint.\nAccusantium non maxime libero maiores doloribus.\nSapiente mollitia ut ducimus cum in ipsum perferendis reprehenderit.\nInventore asperiores debitis doloremque sequi ducimus iste.", + "pastOrPresentOrders": "Mollitia numquam itaque veniam itaque inventore perspiciatis facere culpa nobis.\nTempore natus sequi suscipit provident voluptates.\nNatus molestiae possimus autem aut facere possimus nemo.", "commercialAndIndustrialPurposes": [ { - "uuid": "2545a8fc-ef8b-4722-8451-4f3a3791e829", - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false - }, - { - "uuid": "7b40fef0-d399-4040-9cf5-59993eb20145", + "uuid": "a1114f3c-5d92-4c58-8d28-c85429c4d857", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { - "uuid": "cd920069-6f2f-4c17-9e92-6f0082416729", - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true + "uuid": "cebdf766-b67b-449f-b25e-fad110c77d6d", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false } ] } ], "activityLog": [ { - "uuid": "6a02657f-b378-46b1-a96c-6f0e62dcee74", - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "BOTSFORD DAISHA", - "timestamp": "2018-10-18" - }, - { - "uuid": "40a214cb-fb54-49e0-a105-ab60711eddd3", - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "MURAZIK ORAN", - "timestamp": "2015-11-01" - }, - { - "uuid": "c0348e37-36a7-4991-bb50-f8d349bef452", + "uuid": "4ef72acf-530e-47c9-b6b3-1d1397d86f50", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "KLING RENEE", - "timestamp": "2019-10-12" + "user": "HAMMES KESHAWN", + "timestamp": "2022-10-16" }, { - "uuid": "6d960a28-b81f-4fb0-879f-0e2d3edf4e22", + "uuid": "22115286-c2c1-4ec0-95d6-bfa277310029", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "GIBSON EDDIE", - "timestamp": "2013-11-19" + "user": "FEIL DILLON", + "timestamp": "2015-05-30" }, { - "uuid": "bcf80ca5-7883-4c22-a73b-48df47ab7b88", - "siteRegistry": false, + "uuid": "b1234e92-c334-44f2-acba-08ee04c2450f", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "WILLIAMSON TATYANA", - "timestamp": "2021-06-11" + "user": "MARVIN HELENE", + "timestamp": "2015-03-17" }, { - "uuid": "c5df6cc5-5a9d-44ea-b52b-f0092d28bdb6", + "uuid": "dc6e8157-c7c6-401d-ab15-5416072f7c7e", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "KESSLER LUCY", - "timestamp": "2018-07-01" + "user": "LITTLE MILO", + "timestamp": "2017-07-12" }, { - "uuid": "fd7e94c1-de3d-4aad-a42a-8f58fbd9fefb", + "uuid": "9d0ab58b-a941-4612-9884-615d20670b21", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "CONN DALLAS", - "timestamp": "2014-09-26" - }, - { - "uuid": "74995a9e-abd9-4380-ad6b-34ff37cfbfb9", - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "KOZEY JERAMY", - "timestamp": "2021-08-30" + "user": "BAHRINGER ASIA", + "timestamp": "2015-08-08" }, { - "uuid": "4127cf2c-3205-49d6-8703-9abcc6e35274", + "uuid": "4a5d2ce6-5541-43ae-8198-823f052de566", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "BOGISICH LILLIAN", - "timestamp": "2022-02-05" + "user": "STOLTENBERG BRYCE", + "timestamp": "2022-08-20" }, { - "uuid": "8ba7f3a5-01ad-4ad7-945a-02cef9a4ab72", - "siteRegistry": true, + "uuid": "b4d7d07b-92d3-4d8f-9ae0-26b5b573a7e2", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "KESSLER-RAYNOR ALVAH", - "timestamp": "2018-09-19" + "user": "WOLFF JACKY", + "timestamp": "2013-11-29" } ], "associatedSites": [ { - "uuid": "27ce5c5b-5ec7-4b33-9102-30be27f8d3a6", - "dateNoted": "2023-09-22", - "notes": "", - "parcelID": "19292", - "siteID": "16077", - "siteRegistry": true - }, - { - "uuid": "467499d8-8bc8-45b8-81fc-5e16db94b4b6", - "dateNoted": "2019-02-07", + "uuid": "3eeabdb5-9aa1-41b3-be4e-3cc76c52b2be", + "dateNoted": "2022-06-22", "notes": "", - "parcelID": "18643", - "siteID": "18794", - "siteRegistry": true + "parcelID": "20409", + "siteID": "17114", + "siteRegistry": false }, { - "uuid": "c9a49f3c-372f-4722-bef3-03d1eb37bf3f", - "dateNoted": "2022-06-15", + "uuid": "c9256d20-367d-4477-b9b4-a554a3cfb09e", + "dateNoted": "2017-03-22", "notes": "", - "parcelID": "20604", - "siteID": "20683", - "siteRegistry": true + "parcelID": "18084", + "siteID": "19986", + "siteRegistry": false } ] }, { - "uuid": "4835aa0d-2331-4fea-8094-63161da2f57f", - "siteID": 15690, - "address": "62940 Devon Ridges", - "latitude": 49.7352, - "longitude": -125.4729, - "lastUpdated": "2015-04-17", - "city": "Ziemeton", - "region": "Cariboo", - "victoriaFile": "26250-20/4634", + "uuid": "b15f281b-53d8-4185-a8f7-2d871820bd1a", + "siteID": 15483, + "address": "3720 Pfannerstill Corner", + "latitude": 56.7896, + "longitude": -129.5439, + "lastUpdated": "2017-03-11", + "city": "Noahview", + "region": "Thompson-Okanagan", + "victoriaFile": "26250-20/19353", "regionalFile": "N/A", "parcelIDs": [ - 2441347, - 4221472, - 5447276, - 3559935, - 8608688 + 2743919, + 8161832, + 7058901, + 9196301, + 632290 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "09482f29-537f-4aed-9483-528ba29276f2", - "createdAt": "2020-06-16", - "completed": "2021-05-31", - "initiated": "2014-02-14", - "ministryContact": "STROSIN JERAD", + "uuid": "fb4883f8-0644-4be7-8bd4-1761a366001a", + "createdAt": "2019-08-06", + "completed": "2022-05-19", + "initiated": "2021-10-26", + "ministryContact": "REILLY KATHRYNE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -76502,14 +90227,32 @@ ], "notationParticipants": [ { - "uuid": "e77b14fc-e6ae-4d85-a8fb-e0c0ae99edc5", + "uuid": "9133d60a-7ff1-4818-8c05-a843709cbe01", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "uuid": "d6ed9343-2b36-4384-8059-bedf015c5e19", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "uuid": "400856f7-5e49-4545-801f-a42e4d436b01", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "419da68e-8e70-4e3a-989a-ad8b06bd6ef3", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "3fa08fb3-7782-4749-b899-16fb0574d131", - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "b49b7259-3b48-49a1-a5df-96728e158ca6", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true } @@ -76517,11 +90260,11 @@ "siteRegistry": false }, { - "uuid": "7502b037-3b93-47a5-8273-6bfd2cc927e6", - "createdAt": "2019-02-10", - "completed": "2023-02-13", - "initiated": "2014-08-02", - "ministryContact": "MARKS HARDY", + "uuid": "f97eebc3-fa3b-4638-bcbc-8056cd1c3491", + "createdAt": "2019-03-31", + "completed": "2018-12-17", + "initiated": "2014-05-13", + "ministryContact": "VEUM VERNER", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -76530,26 +90273,26 @@ ], "notationParticipants": [ { - "uuid": "f169eff2-13f5-4506-b574-21a61fb05bec", - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "55a7fb48-7cb9-43d1-9986-620dcceee94e", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "21bf2308-ce85-4e83-85c0-e9fe263209ab", + "uuid": "f2814fd8-fbf0-429d-b37f-f69c7cc4cc42", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "5760afd2-9114-4256-93f8-b2f19cdd0bcc", - "createdAt": "2022-07-20", - "completed": "2020-09-19", - "initiated": "2020-12-12", - "ministryContact": "WALTER KARSON", + "uuid": "84a9041e-dc65-4c53-8968-f8e99f39971f", + "createdAt": "2020-03-04", + "completed": "2020-02-21", + "initiated": "2014-12-26", + "ministryContact": "HARRIS ERVIN", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -76558,42 +90301,26 @@ ], "notationParticipants": [ { - "uuid": "3bb8b504-46a5-492f-847b-bffbecab1fde", + "uuid": "8588061a-400b-4f4f-b916-9086df9e5831", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true }, { - "uuid": "fad0d851-d8d3-4ca1-ae86-a8beb37d7c67", - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "cf75290d-5f58-46db-9e19-29c25d4346de", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true - } - ], - "siteRegistry": false - }, - { - "uuid": "c12ecbb9-5590-4fe4-be31-3d4e417a9a4c", - "createdAt": "2023-04-13", - "completed": "2017-07-16", - "initiated": "2013-10-28", - "ministryContact": "ZIEME ELIZA", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ + }, { - "uuid": "96129d9a-f7bd-442b-af14-e2f8030121bb", + "uuid": "dff8f66a-f6d9-49cc-ada9-35a1e414b3d0", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "f0fa725c-6b18-487a-a194-9912d44e9d34", - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "2984abe0-1741-4d7c-992a-40d2195e6749", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false } @@ -76603,10 +90330,32 @@ ], "participants": [ { - "uuid": "06a4faf5-1eeb-4c9c-9f02-b2761c8b1a3f", + "uuid": "27eb6935-16e5-43ef-b15e-bc4ee4fa37f0", + "name": "IPSUM", + "endDate": "2022-08-07", + "startDate": "2020-08-15", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "uuid": "6388ff1c-bfad-47af-a4c5-4319ea321160", "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2014-10-31", - "startDate": "2016-09-05", + "endDate": "2021-03-27", + "startDate": "2020-07-19", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "uuid": "536e9ffb-1218-43fd-b178-4042efbb176f", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2022-09-03", + "startDate": "2014-07-07", "notes": "", "roles": [ "EMPLOYEE" @@ -76614,10 +90363,10 @@ "siteRegistry": false }, { - "uuid": "10ab0eb3-fd18-45c3-b832-d4080adb480c", - "name": "AMET, DOLOR SIT", - "endDate": "2022-04-22", - "startDate": "2022-07-21", + "uuid": "57ad80dd-fd14-41f7-bf08-42afd8c20d0c", + "name": "IPSUM", + "endDate": "2019-05-11", + "startDate": "2016-11-19", "notes": "", "roles": [ "ORGANIZATION" @@ -76625,108 +90374,181 @@ "siteRegistry": true } ], - "suspectLandUses": [ + "documents": [ { - "uuid": "bf946d40-1252-46c6-ab3d-c11fbee0e0ea", + "uuid": "86203fbe-61d0-4541-96ef-af25a4933766", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-12-10 (described on Site Profile dated 2014-12-10)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "documentDate": "2021-01-07", + "receivedDate": "2022-07-04", + "uploadedDate": "2014-05-18", + "title": "Preliminary Site Investigation, Detailed Site Investigation and Remedial Plan for the Management Area adjacent to the Shell Site at 1503 West 41st Ave", + "participants": [ + { + "uuid": "aa920103-80f6-4273-9217-676c20c110b2", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": false, + "role": "AUTHOR" + } + ] }, { - "uuid": "823acf09-e9ac-487e-9deb-a4db0b89a238", + "uuid": "20627fb8-4b93-4a64-9d9a-7c36b2cb808c", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2023-01-02 (described on Site Profile dated 2023-01-02)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "documentDate": "2013-12-05", + "receivedDate": "2013-12-15", + "uploadedDate": "2022-09-16", + "title": "Summary of Site Conditions, 1537 W 41st Avenue, Vancouver", + "participants": [ + { + "uuid": "0f9e3009-011d-447f-bc1a-e07d7ed255cd", + "name": "IPSUM", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "f26bd411-4dfe-46a6-b11b-9edecafb02b6", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": true, + "role": "AUTHOR" + } + ] + }, + { + "uuid": "aee91581-8e3e-4459-a4c1-1feb05d6e905", + "siteRegistry": false, + "documentDate": "2022-11-27", + "receivedDate": "2014-04-20", + "uploadedDate": "2023-08-11", + "title": "Preliminary Site Investigation, Detailed Site Investigation and Remedial Plan for the Management Area adjacent to the Shell Site at 1503 West 41st Ave", + "participants": [ + { + "uuid": "07c3519f-683e-45c1-83af-1815a9bee9a4", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": false, + "role": "AUTHOR" + } + ] + }, + { + "uuid": "3122f87b-a3e5-4813-9166-b777b3c7e13f", + "siteRegistry": false, + "documentDate": "2017-06-03", + "receivedDate": "2016-11-08", + "uploadedDate": "2019-03-25", + "title": "Summary of Site Conditions, 1537 W 41st Avenue, Vancouver", + "participants": [ + { + "uuid": "68d955cc-3de5-457f-9dcc-7c48177fcb42", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": true, + "role": "AUTHOR" + } + ] }, { - "uuid": "7d4cc1f5-2c53-4335-83a6-b7f2857acdce", + "uuid": "1f07dc3f-0921-46a8-9aa9-6260d2d9cd1a", + "siteRegistry": false, + "documentDate": "2022-08-31", + "receivedDate": "2022-01-20", + "uploadedDate": "2017-07-09", + "title": "Preliminary Site Investigation, Detailed Site Investigation and Remedial Plan for the Management Area adjacent to the Shell Site at 1503 West 41st Ave", + "participants": [ + { + "uuid": "94bd25c1-6653-4113-b021-9d17b984c19c", + "name": "AMET, DOLOR SIT", + "siteRegistry": false, + "role": "AUTHOR" + } + ] + } + ], + "suspectLandUses": [ + { + "uuid": "dafd635c-bdbd-450d-97e3-5ddae9807808", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-03-07 (described on Site Profile dated 2019-03-07)", + "notes": "INSERTED FOR SITE PROFILE DATED 2017-08-08 (described on Site Profile dated 2017-08-08)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "uuid": "f6c02ab1-f0f1-40f8-96cb-b35d1b03f56b", - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2013-10-26 (described on Site Profile dated 2013-10-26)", + "uuid": "987ed014-f9a6-416e-aa52-00fb721fa621", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2018-07-15 (described on Site Profile dated 2018-07-15)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "uuid": "a617580b-3590-4384-ad0b-6e4ddfe66151", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2013-10-21 (described on Site Profile dated 2013-10-21)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], "parcelDescriptions": [ { - "uuid": "e3908071-8eca-4887-9dfa-69430e67556f", - "siteRegistry": false, - "dateNoted": "2022-11-25", - "parcelID": "16035", - "crownLandUsePIN": "19794", - "crownLandFileNumber": "15669", - "landDescription": "LOT 4 OF LOT 1 BLOCK 1 DISTRICT LOT 5 PLAN 7206" - }, - { - "uuid": "c1c8bfff-9b39-4b8e-bb78-a81a3403d9ef", + "uuid": "e896347a-d1bd-4b04-8907-bbe4ccae64ac", "siteRegistry": true, - "dateNoted": "2022-01-04", - "parcelID": "16342", - "crownLandUsePIN": "17827", - "crownLandFileNumber": "17410", - "landDescription": "LOT 1 OF LOT 2 BLOCK 1 DISTRICT LOT 1 PLAN 9667" + "dateNoted": "2018-10-03", + "parcelID": "17617", + "crownLandUsePIN": "16249", + "crownLandFileNumber": "18427", + "landDescription": "LOT 1 OF LOT 3 BLOCK 2 DISTRICT LOT 3 PLAN 7444" }, { - "uuid": "81a7c5af-201e-4fa8-81c8-22bd492eff07", - "siteRegistry": false, - "dateNoted": "2016-07-19", - "parcelID": "20850", - "crownLandUsePIN": "16343", - "crownLandFileNumber": "18038", - "landDescription": "LOT 4 OF LOT 2 BLOCK 4 DISTRICT LOT 4 PLAN 4985" + "uuid": "40cef4db-944e-4a18-8650-56c63be179fc", + "siteRegistry": true, + "dateNoted": "2022-05-02", + "parcelID": "15967", + "crownLandUsePIN": "20179", + "crownLandFileNumber": "16698", + "landDescription": "LOT 2 OF LOT 3 BLOCK 5 DISTRICT LOT 1 PLAN 8740" }, { - "uuid": "afd95523-7684-480c-bdad-4258cc06b85b", - "siteRegistry": false, - "dateNoted": "2017-07-22", - "parcelID": "19778", - "crownLandUsePIN": "16820", - "crownLandFileNumber": "17138", - "landDescription": "LOT 2 OF LOT 1 BLOCK 2 DISTRICT LOT 4 PLAN 4748" + "uuid": "c00b8f88-f114-4952-9db7-533d3d1bb277", + "siteRegistry": true, + "dateNoted": "2014-02-05", + "parcelID": "20521", + "crownLandUsePIN": "17351", + "crownLandFileNumber": "15487", + "landDescription": "LOT 2 OF LOT 3 BLOCK 3 DISTRICT LOT 1 PLAN 7831" }, { - "uuid": "8dcf5c10-8f23-44c3-b60d-d1e83387844b", - "siteRegistry": false, - "dateNoted": "2020-02-26", - "parcelID": "16259", - "crownLandUsePIN": "16634", - "crownLandFileNumber": "18071", - "landDescription": "LOT 2 OF LOT 2 BLOCK 5 DISTRICT LOT 4 PLAN 9750" + "uuid": "4764385e-3386-4c2e-8ea2-06a2e7ef3bd4", + "siteRegistry": true, + "dateNoted": "2021-01-24", + "parcelID": "19235", + "crownLandUsePIN": "16601", + "crownLandFileNumber": "20565", + "landDescription": "LOT 1 OF LOT 2 BLOCK 1 DISTRICT LOT 4 PLAN 9304" } ], "siteDisclosures": [ { - "uuid": "3ae1b3fe-e324-4392-a974-a71206d2ca4a", + "uuid": "f1382bc0-2e8f-4cd8-836e-5bb267a7bc90", "siteRegistry": true, - "dateReceived": "2015-11-12", - "dateCompleted": "2016-11-30", - "dateEntered": "2016-05-04", - "dateRegistrar": "2015-08-21", - "dateLocalAuthorityReceived": "2021-11-14", - "summary": "Voluptatem eligendi corporis quas odio quis quaerat.\nSapiente recusandae eius nemo.\nNecessitatibus laboriosam unde.", - "informationUsed": "Ab ab voluptatum sed sed iusto assumenda.\nDolor cumque aliquid.\nProvident fugiat sunt a inventore aperiam in impedit vero.", - "pastOrPresentOrders": "Delectus quidem odio possimus molestiae esse debitis soluta voluptatem praesentium.\nOptio odit quae odit ipsam eum vero laudantium nostrum aliquid.\nAccusamus adipisci reiciendis officia.", + "dateReceived": "2020-03-04", + "dateCompleted": "2021-06-22", + "dateEntered": "2021-10-14", + "dateRegistrar": "2021-06-08", + "dateLocalAuthorityReceived": "2017-05-28", + "summary": "Deserunt laboriosam minima aperiam atque harum voluptatem doloremque qui.", + "informationUsed": "Fugit ipsa ducimus facere neque rerum nihil facere fugit.\nInventore nam cum dolor ut illo eos nulla nisi.\nNisi labore doloremque id molestias quis autem.", + "pastOrPresentOrders": "Culpa amet veniam vel.\nTempora atque eaque reiciendis alias animi a temporibus tenetur.", "commercialAndIndustrialPurposes": [ { - "uuid": "7132491d-71ad-4fd6-85f5-297645e081ce", + "uuid": "30cdf0ec-6e33-4b2d-8a81-8994baf96aab", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "83b44641-c0d6-4652-ad31-6ea98a1ad968", - "scheduleReference": "F2*", + "uuid": "3d1d660e-b461-4a77-a9bf-89cf49e81c0f", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "955b5ca0-9960-4dcf-9c94-f756bfedb6b8", + "uuid": "2f2639c7-4b44-4599-b009-4d3adad7074a", "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true } ] @@ -76734,115 +90556,78 @@ ], "activityLog": [ { - "uuid": "8e496389-bf66-4ab8-a202-99ace915db37", - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "RAYNOR KARLEY", - "timestamp": "2023-07-04" - }, - { - "uuid": "faafbbc5-4af3-43cc-8a70-1cb30ad2343a", - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "HEIDENREICH SANTIAGO", - "timestamp": "2014-09-09" - }, - { - "uuid": "34b048b1-2b1f-4d8b-b2b5-84509ddfda43", + "uuid": "c1042577-9e98-4af7-b21c-401ad087fce6", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "KASSULKE-MANN LOGAN", - "timestamp": "2021-11-21" + "user": "HINTZ POLLY", + "timestamp": "2023-01-16" }, { - "uuid": "c14bb42a-4a10-4cee-ac95-339885c2ff45", - "siteRegistry": false, + "uuid": "db3e0376-f864-40e6-bc8a-c11fbfaf2afc", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "STIEDEMANN LILLIAN", - "timestamp": "2021-04-12" + "user": "SCHULIST CATHARINE", + "timestamp": "2019-06-13" }, { - "uuid": "5d5ffe33-1701-4878-85ae-e123bfab9df4", + "uuid": "8eb9288d-7cfb-4875-b739-35004ac0ea8d", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "RYAN DANA", - "timestamp": "2015-02-05" + "user": "BARTON FREEMAN", + "timestamp": "2014-09-06" }, { - "uuid": "6d3a658a-b6b1-4e09-a0ca-df4c649b5064", + "uuid": "fde3f753-a251-44cf-b949-4c30587bc222", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "DIBBERT ELADIO", - "timestamp": "2014-09-10" - }, - { - "uuid": "b7feacf4-c940-4102-a25b-f1e5089dc961", - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "HUDSON CASSIDY", - "timestamp": "2017-03-09" + "user": "HAMILL MELBA", + "timestamp": "2017-02-18" }, { - "uuid": "48eb9a9c-9884-49ae-a1d4-a5e0333bdbe4", - "siteRegistry": false, + "uuid": "0d194624-66c0-40d4-8cab-49ecfd583d09", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "HESSEL BRISA", - "timestamp": "2021-07-14" + "user": "DAVIS-BOYLE STEPHEN", + "timestamp": "2023-02-06" } ], "associatedSites": [ { - "uuid": "0d0bf90b-d43a-4cd7-8b49-55e3e9fa65d2", - "dateNoted": "2016-02-18", + "uuid": "21304ffc-255e-4904-9307-cbb6f8761244", + "dateNoted": "2020-02-21", "notes": "", - "parcelID": "19332", - "siteID": "20510", - "siteRegistry": false - }, - { - "uuid": "abf66ee4-ac8c-48ea-98db-d80444a6fef3", - "dateNoted": "2017-09-26", - "notes": "", - "parcelID": "17070", - "siteID": "17685", - "siteRegistry": false - }, - { - "uuid": "3359b5ed-21be-40c2-94ae-1bb97d0a2762", - "dateNoted": "2017-04-06", - "notes": "", - "parcelID": "20855", - "siteID": "19254", - "siteRegistry": false + "parcelID": "18924", + "siteID": "19623", + "siteRegistry": true } ] }, { - "uuid": "f46d34d7-b0eb-46d0-afdf-097aa8799a7d", - "siteID": 16728, - "address": "552 Schoen Route", - "latitude": 58.5878, - "longitude": -121.9096, - "lastUpdated": "2013-12-02", - "city": "Earnestport", - "region": "Vancouver Island/Coast", - "victoriaFile": "26250-20/1664", + "uuid": "d10e44dc-1ee4-4411-a821-fbc2d6dfd43f", + "siteID": 17576, + "address": "200 Eusebio Expressway", + "latitude": 48.4193, + "longitude": -135.8596, + "lastUpdated": "2015-03-22", + "city": "Efraintown", + "region": "Cariboo", + "victoriaFile": "26250-20/981", "regionalFile": "N/A", "parcelIDs": [ - 2516409, - 9734288, - 1616587, - 6238949, - 9030146 + 1792375, + 8850212, + 6199607, + 6655358, + 7275500 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "61403893-ff0a-42aa-8f2b-52e1439b2281", - "createdAt": "2023-07-05", - "completed": "2015-11-06", - "initiated": "2018-04-06", - "ministryContact": "FUNK KENDALL", + "uuid": "0bc429b8-a26d-4f21-9378-c421c7796ec4", + "createdAt": "2016-03-11", + "completed": "2022-07-13", + "initiated": "2021-05-09", + "ministryContact": "KOSS ELLIS", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -76851,26 +90636,32 @@ ], "notationParticipants": [ { - "uuid": "ca1a1a5b-4ce5-4a80-9377-3a62cdefea00", + "uuid": "698fe843-9c0c-4817-beff-f568367c1d8c", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "ceafd6c4-0a7a-48f7-af46-c2410ebc9d0f", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "aef317b2-7f11-413e-b58b-47c718d82f73", + "uuid": "28d577ca-1853-4973-a78d-df8acb1fce97", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false } ], "siteRegistry": true }, { - "uuid": "aee4ba6d-c6b4-4b25-8c32-2479a5acdcc5", - "createdAt": "2014-12-06", - "completed": "2020-08-29", - "initiated": "2019-09-17", - "ministryContact": "KUHLMAN KENNETH", + "uuid": "06f4d916-6e42-4778-813b-2a230967be2b", + "createdAt": "2020-12-28", + "completed": "2018-12-02", + "initiated": "2022-12-25", + "ministryContact": "MAYERT ANASTASIA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -76879,38 +90670,26 @@ ], "notationParticipants": [ { - "uuid": "8de34bdf-9acd-42bf-ba40-6579714cf783", + "uuid": "351e2da9-b3a3-480e-ab2f-8a4677999c8f", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "uuid": "12c2b644-7039-45cb-872e-c7366fa44364", - "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "94010b48-31b2-4288-8910-cda3a9c4afab", + "uuid": "b64869a4-fedb-43ed-81cf-2a34aaa72ade", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "uuid": "71ccfb63-4de9-4d6b-b41f-e2e5ba30e268", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", "siteRegistry": false } ], "siteRegistry": false }, { - "uuid": "929de637-e904-4505-9c9e-0cdd56538a54", - "createdAt": "2015-07-18", - "completed": "2019-10-28", - "initiated": "2016-05-18", - "ministryContact": "SIPES SAMANTHA", + "uuid": "a5c1e00c-37d1-4bdf-b980-33f32b4fc430", + "createdAt": "2016-12-17", + "completed": "2018-08-11", + "initiated": "2015-09-20", + "ministryContact": "BARTON ROWAN", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -76919,32 +90698,38 @@ ], "notationParticipants": [ { - "uuid": "612021e9-78f0-4e2c-b9cd-fbdc9a81c79c", - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "9e6cae59-c241-4967-a543-8d7b2fb557bb", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "6041d80a-f722-4dd6-8f67-d76f0cb37b7e", + "uuid": "01af5432-96db-4230-8001-d4e871f29787", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "219e8d66-6852-456e-8d22-31b198835241", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false }, { - "uuid": "fc28f44c-d226-4750-b43a-edb09c27156e", - "name": "SHELL CANADA PRODUCTS", + "uuid": "3b549e46-d7b8-4416-9e25-90d9a25336bf", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "b9fc413e-b158-4192-a36f-d3a8c2509fc0", - "createdAt": "2015-06-12", - "completed": "2018-05-02", - "initiated": "2014-05-01", - "ministryContact": "MCKENZIE JACLYN", + "uuid": "91ee4293-78f3-4c4a-ab0f-b309e0a40f2f", + "createdAt": "2019-04-15", + "completed": "2021-10-07", + "initiated": "2021-12-16", + "ministryContact": "GREEN FABIAN", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -76953,28 +90738,34 @@ ], "notationParticipants": [ { - "uuid": "531c0ad9-c2ca-40a3-b228-5ffc449a67f5", + "uuid": "ba8aa42f-2fc8-4c2a-a1a7-8bc91fc21bc4", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true + }, + { + "uuid": "1578975a-80d1-45b0-9a18-7b4321261213", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true }, { - "uuid": "60e88701-832b-46b4-865c-480deb76bd48", + "uuid": "76707ace-2b25-4a9d-bc31-1e14f0e009e2", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true }, { - "uuid": "faec7792-edd8-4582-ba66-d1d38b58f52e", + "uuid": "8cd1e45f-4061-49c8-b090-7db074e2d418", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false }, { - "uuid": "d5d4e190-9421-4459-b3f3-3fb3b4df030d", + "uuid": "9c5b5176-3435-48ff-9094-02a3378c14c7", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true } ], "siteRegistry": true @@ -76982,21 +90773,32 @@ ], "participants": [ { - "uuid": "28923627-5c70-4027-895d-d354b671e524", + "uuid": "42869fe6-3027-4b65-9c94-fb591cb090e0", "name": "IPSUM", - "endDate": "2017-02-24", - "startDate": "2016-09-16", + "endDate": "2014-04-07", + "startDate": "2022-07-13", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "a815aa68-1411-4260-a70f-de4360aded90", + "uuid": "49e56d53-4fee-45e4-8d09-58434d1f794d", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2016-07-23", + "startDate": "2022-08-30", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "uuid": "5e542a9c-7101-45d3-8341-39e85930ad52", "name": "IPSUM", - "endDate": "2013-11-25", - "startDate": "2018-11-10", + "endDate": "2019-01-10", + "startDate": "2023-10-09", "notes": "", "roles": [ "EMPLOYEE" @@ -77004,207 +90806,275 @@ "siteRegistry": true }, { - "uuid": "aeed5f17-7791-456c-b2c0-59c179c982b6", + "uuid": "071556ca-570b-4748-a1a7-682894ae8f35", "name": "IPSUM", - "endDate": "2017-09-22", - "startDate": "2022-04-23", + "endDate": "2016-01-04", + "startDate": "2020-10-16", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": false } ], - "suspectLandUses": [ + "documents": [ { - "uuid": "9d24694e-342d-4e34-bfa0-2cbf5f231181", + "uuid": "d7912cd8-04c9-461a-ae35-42f251c786d6", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-03-21 (described on Site Profile dated 2016-03-21)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "documentDate": "2014-12-28", + "receivedDate": "2021-03-18", + "uploadedDate": "2014-12-03", + "title": "Summary of Site Conditions, 1537 W 41st Avenue, Vancouver", + "participants": [ + { + "uuid": "cd47e47b-2ad8-48a1-ac71-17ed71789093", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "02d4e8bf-3ed2-4e2c-bf53-aa8233d7183a", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "47f2b323-cb99-495b-be0c-e325a5bfb5f4", + "name": "IPSUM", + "siteRegistry": false, + "role": "AUTHOR" + } + ] + }, + { + "uuid": "abe6c666-e066-46db-b72e-5d1cadf648ca", + "siteRegistry": false, + "documentDate": "2017-01-01", + "receivedDate": "2016-07-13", + "uploadedDate": "2015-11-05", + "title": "Preliminary Site Investigation, Detailed Site Investigation and Remedial Plan for the Management Area adjacent to the Shell Site at 1503 West 41st Ave", + "participants": [ + { + "uuid": "af44dbae-0ed5-478d-8344-a1e0126c3645", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": false, + "role": "AUTHOR" + } + ] + } + ], + "suspectLandUses": [ + { + "uuid": "a3a48c5b-a60c-464e-8ffd-1b17c02e3775", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2015-02-08 (described on Site Profile dated 2015-02-08)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "uuid": "3550909a-e171-4978-a59a-39d4c0accf24", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2019-08-21 (described on Site Profile dated 2019-08-21)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "uuid": "9d966bce-fceb-443a-82e2-821bf4898f2f", + "uuid": "39663238-c464-4131-a4c4-3a9f36e083a2", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-04-25 (described on Site Profile dated 2015-04-25)", + "notes": "INSERTED FOR SITE PROFILE DATED 2015-11-22 (described on Site Profile dated 2015-11-22)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "uuid": "97f06d08-3a62-4ac4-ac03-1f0228ed1133", + "uuid": "de5c6c17-6330-49a3-b957-f4701ce169fd", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-05-12 (described on Site Profile dated 2016-05-12)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "notes": "INSERTED FOR SITE PROFILE DATED 2018-05-01 (described on Site Profile dated 2018-05-01)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], "parcelDescriptions": [ { - "uuid": "9909c16c-1954-4d4a-b23f-6ae28019f48f", + "uuid": "73724748-16b2-454a-a9d0-4aa0aff6744a", "siteRegistry": false, - "dateNoted": "2019-01-12", - "parcelID": "19971", - "crownLandUsePIN": "18560", - "crownLandFileNumber": "15653", - "landDescription": "LOT 4 OF LOT 4 BLOCK 1 DISTRICT LOT 1 PLAN 5943" + "dateNoted": "2020-06-06", + "parcelID": "16225", + "crownLandUsePIN": "17820", + "crownLandFileNumber": "20588", + "landDescription": "LOT 3 OF LOT 4 BLOCK 1 DISTRICT LOT 2 PLAN 3810" }, { - "uuid": "007f81dc-706e-444f-b604-a0f5406b313f", + "uuid": "85bf1cb1-efd9-441b-a664-c036fa657b91", "siteRegistry": true, - "dateNoted": "2022-10-03", - "parcelID": "16858", - "crownLandUsePIN": "19193", - "crownLandFileNumber": "17923", - "landDescription": "LOT 1 OF LOT 3 BLOCK 4 DISTRICT LOT 4 PLAN 5619" - }, - { - "uuid": "54a0dff9-0aaf-47d1-b53f-7be2fbb1951d", - "siteRegistry": false, - "dateNoted": "2022-04-17", - "parcelID": "15701", - "crownLandUsePIN": "19591", - "crownLandFileNumber": "16672", - "landDescription": "LOT 4 OF LOT 4 BLOCK 5 DISTRICT LOT 2 PLAN 9561" + "dateNoted": "2020-04-03", + "parcelID": "15367", + "crownLandUsePIN": "20443", + "crownLandFileNumber": "20808", + "landDescription": "LOT 4 OF LOT 1 BLOCK 3 DISTRICT LOT 4 PLAN 8578" }, { - "uuid": "bf0c3653-f959-4b9e-9b38-5cd49ac35ceb", + "uuid": "9c353d3a-48a8-4334-a7d1-71a5750f7921", "siteRegistry": true, - "dateNoted": "2014-06-19", - "parcelID": "19917", - "crownLandUsePIN": "16471", - "crownLandFileNumber": "18766", - "landDescription": "LOT 3 OF LOT 1 BLOCK 4 DISTRICT LOT 4 PLAN 5879" + "dateNoted": "2017-06-12", + "parcelID": "17245", + "crownLandUsePIN": "18928", + "crownLandFileNumber": "16027", + "landDescription": "LOT 5 OF LOT 5 BLOCK 1 DISTRICT LOT 2 PLAN 7454" }, { - "uuid": "45e96d3e-fa01-402c-803f-a8645d435800", + "uuid": "f0e4e48d-313d-44a3-9a49-fb973541d3c5", "siteRegistry": true, - "dateNoted": "2014-04-26", - "parcelID": "15696", - "crownLandUsePIN": "17485", - "crownLandFileNumber": "19723", - "landDescription": "LOT 3 OF LOT 4 BLOCK 3 DISTRICT LOT 1 PLAN 5384" + "dateNoted": "2021-04-19", + "parcelID": "18671", + "crownLandUsePIN": "15973", + "crownLandFileNumber": "19088", + "landDescription": "LOT 4 OF LOT 3 BLOCK 5 DISTRICT LOT 2 PLAN 9523" } ], "siteDisclosures": [ { - "uuid": "3ee5a4b7-90f9-43e7-90bd-235bdf6edd2f", - "siteRegistry": false, - "dateReceived": "2015-04-08", - "dateCompleted": "2015-10-30", - "dateEntered": "2020-12-21", - "dateRegistrar": "2016-08-26", - "dateLocalAuthorityReceived": "2020-11-12", - "summary": "Dolores quod ab magni saepe eligendi.\nMinus totam nostrum.\nAperiam beatae dignissimos assumenda suscipit assumenda inventore rem quaerat incidunt.", - "informationUsed": "Quae nesciunt illo iste quas repudiandae repellendus molestiae minus.\nMolestias ratione vel quasi quis labore sed.\nOfficia accusantium natus.\nRatione impedit temporibus aliquid voluptatibus molestias.\nOptio dolorem eius ducimus est quia.", - "pastOrPresentOrders": "Ut eveniet veniam.", + "uuid": "6e6d1e11-39e9-4f24-8629-71e9b8e6e9f6", + "siteRegistry": true, + "dateReceived": "2014-11-16", + "dateCompleted": "2016-07-15", + "dateEntered": "2017-06-04", + "dateRegistrar": "2021-06-19", + "dateLocalAuthorityReceived": "2019-11-08", + "summary": "Quisquam quasi recusandae tempora architecto cum possimus eos in.\nEveniet placeat odit ratione placeat.\nAutem aspernatur facere dolores alias corporis.", + "informationUsed": "Tempora hic voluptates eius soluta.\nLabore reprehenderit corporis.\nSoluta qui quo eligendi.\nOdio ab vitae ipsam harum assumenda.", + "pastOrPresentOrders": "Ad neque eveniet sunt placeat in repellendus quam cupiditate quo.\nSapiente ex iusto.", "commercialAndIndustrialPurposes": [ { - "uuid": "2e48af6f-6e92-43bb-9f2b-3d9fb94f4b41", + "uuid": "e9a7436c-9141-4c6e-882a-08d6244e29f7", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { - "uuid": "c608e159-2dc2-4098-a217-8aced216ae81", - "scheduleReference": "F1*", + "uuid": "b28eb7a0-1151-4017-b402-aeffc1316c08", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + } + ] + }, + { + "uuid": "7a63b521-b876-4bc5-9132-488576ece110", + "siteRegistry": false, + "dateReceived": "2015-02-17", + "dateCompleted": "2017-07-13", + "dateEntered": "2022-06-08", + "dateRegistrar": "2021-07-14", + "dateLocalAuthorityReceived": "2017-02-19", + "summary": "Aperiam quia culpa a doloribus voluptatibus maiores in.", + "informationUsed": "Voluptatem voluptates maxime sunt sequi.\nOdit temporibus perferendis sunt expedita totam cumque consectetur.\nIste dolores dignissimos dolor distinctio quasi dolor sit exercitationem.\nIste culpa quas dolorem deserunt alias minima commodi impedit ipsum.\nLabore ipsa voluptas officia necessitatibus dolores.", + "pastOrPresentOrders": "Non libero ut impedit molestias cupiditate maiores optio id.\nQuia repellendus deserunt maiores dignissimos odit.\nRepellat nulla porro.", + "commercialAndIndustrialPurposes": [ + { + "uuid": "76d66ea3-e348-4e05-bf79-5ecdf13e3352", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { - "uuid": "3f3913ac-5a16-45f4-ba3d-974461ef001a", - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "uuid": "e8200a0e-1e33-49fb-af49-a49ccc4da115", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false + }, + { + "uuid": "6a84d9ca-c6c0-4b6b-84a5-71ad6ab6f94d", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "uuid": "27b970ad-834f-4fc1-82ae-b9088d7eb46c", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true } ] } ], "activityLog": [ { - "uuid": "7967f2a5-a7d6-43bb-ae7c-0fdde7bd42f6", - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "LINDGREN FREDDY", - "timestamp": "2023-04-17" - }, - { - "uuid": "87c8b16f-de07-4bdb-85f1-5e10dad27537", + "uuid": "d240695b-75b3-4e0f-835c-fe0d5638076f", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "RUNTE FREDRICK", - "timestamp": "2017-09-14" + "user": "CHAMPLIN ANDY", + "timestamp": "2019-01-17" }, { - "uuid": "6abb3943-2726-40bc-8f85-934bd57bd5ac", + "uuid": "95d9ed14-7647-4364-bfdf-bc291a6bc582", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "STRACKE ALEXANDER", - "timestamp": "2014-04-27" + "user": "LANGOSH OPAL", + "timestamp": "2021-06-13" }, { - "uuid": "2a67a6cc-9ff0-46ef-b766-cdca6c4e6a5a", + "uuid": "e9976d7a-9de2-4be7-a4c2-18d394042bdb", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "EMMERICH ELTON", - "timestamp": "2022-04-16" + "user": "SCHAEFER SHANELLE", + "timestamp": "2018-09-12" }, { - "uuid": "89a2d27a-f60e-41b7-a990-feedaf310b36", + "uuid": "24ff2b01-c04c-4a93-8cd7-09595746800f", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "BLANDA MAKENNA", - "timestamp": "2023-05-24" + "user": "BINS LOYAL", + "timestamp": "2017-10-03" }, { - "uuid": "5e4b0aa8-d397-42ae-aa89-2e626db9c603", + "uuid": "e2210199-2adc-4100-9e8a-922a66a8d3e0", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "LITTLE ROSS", - "timestamp": "2019-04-26" + "user": "REILLY MICAH", + "timestamp": "2019-08-04" } ], "associatedSites": [ { - "uuid": "463ed6d0-02db-4f2d-9d18-cbbc4205cf5d", - "dateNoted": "2017-06-19", + "uuid": "19d324c3-ab6d-47a1-a1be-0366e82c56ba", + "dateNoted": "2023-03-10", "notes": "", - "parcelID": "17756", - "siteID": "18986", - "siteRegistry": true + "parcelID": "17063", + "siteID": "16531", + "siteRegistry": false }, { - "uuid": "64d88cb0-dd1e-4cf8-a1a0-1de5f4aaea6f", - "dateNoted": "2022-10-17", + "uuid": "8b6d78d3-e9f9-43aa-b870-742f13507cf1", + "dateNoted": "2018-09-25", "notes": "", - "parcelID": "15295", - "siteID": "16656", - "siteRegistry": true + "parcelID": "18799", + "siteID": "18030", + "siteRegistry": false } ] }, { - "uuid": "4830535f-c132-4b06-809a-ad66bba41346", - "siteID": 15304, - "address": "73717 Alisa Brook", - "latitude": 51.797, - "longitude": -129.4096, - "lastUpdated": "2022-08-07", - "city": "South Deronbury", - "region": "Mainland/Southwest", - "victoriaFile": "26250-20/17591", + "uuid": "6ac94d75-82ad-4708-9f93-73ab93559c6a", + "siteID": 18205, + "address": "162 Aufderhar Shoals", + "latitude": 50.0579, + "longitude": -124.7524, + "lastUpdated": "2014-04-24", + "city": "Lake Mandy", + "region": "Kootenay", + "victoriaFile": "26250-20/16793", "regionalFile": "N/A", "parcelIDs": [ - 5129026, - 6128240, - 5081482, - 3521505, - 7358413 + 1264470, + 2633817, + 1964361, + 4993458, + 2383851 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "3aef8211-11e2-4995-9fde-2778365caf60", - "createdAt": "2019-04-26", - "completed": "2020-08-02", - "initiated": "2020-03-02", - "ministryContact": "HERZOG ADDIE", + "uuid": "acf38ccc-cf9b-415d-9fb6-cda586526467", + "createdAt": "2023-06-02", + "completed": "2015-07-05", + "initiated": "2015-05-02", + "ministryContact": "MOHR LAISHA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -77213,32 +91083,38 @@ ], "notationParticipants": [ { - "uuid": "b6f6607e-4fd1-40cd-99c7-f30274a410df", + "uuid": "753b252c-b95f-429f-89cd-275ca5c418aa", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true + "role": "REQUESTED BY", + "siteRegistry": false }, { - "uuid": "5cf33bbe-e951-4409-86b8-1dfcca4a6f7b", - "name": "SHELL CANADA PRODUCTS", + "uuid": "5efce642-b1d7-426e-a172-59c88db8153b", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false }, { - "uuid": "989468ac-3538-4df8-8c7c-5a82925dc8a7", + "uuid": "4f046a98-a582-4dd7-a10c-6d0605730edb", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false + }, + { + "uuid": "05147836-4665-4e7f-9f2c-e72acec107ae", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true } ], "siteRegistry": true }, { - "uuid": "79b9da07-39d3-4d85-9d53-900d976b85a5", - "createdAt": "2016-05-03", - "completed": "2015-02-14", - "initiated": "2022-03-31", - "ministryContact": "OKUNEVA FLORENCIO", + "uuid": "95d4cba7-3f6c-4a18-82f0-c034d72abfbd", + "createdAt": "2021-03-08", + "completed": "2020-05-15", + "initiated": "2020-08-18", + "ministryContact": "LYNCH KELSI", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -77247,50 +91123,78 @@ ], "notationParticipants": [ { - "uuid": "085005a5-0146-4e00-a431-96efc89c54df", + "uuid": "984f05c4-80bc-4e6c-900f-f5aff5fcae06", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "63c9b9b7-b371-4ead-8467-d20f3394c211", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "uuid": "076fb54d-e355-4711-a744-edcecafdf13e", + "createdAt": "2021-02-26", + "completed": "2018-02-12", + "initiated": "2014-07-15", + "ministryContact": "EMMERICH JARRELL", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "uuid": "9b61f889-4263-468b-8950-658cb1d91475", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": true }, { - "uuid": "b692d3e5-ee8f-42ba-b0e3-e1506251f8cd", + "uuid": "ac1beed8-1791-432c-8ca1-82803c8d2f10", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true + "role": "SUBMITTED BY", + "siteRegistry": false }, { - "uuid": "8c83dbb1-8434-4bea-af43-324fb2300439", - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "7b44577b-00e6-400b-8119-495236d07f3c", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "4ac70678-7b17-4b1a-8405-8e02f1f85a0a", + "uuid": "057a90e3-7697-4c82-8821-fdc7c637b4d9", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false } ], "participants": [ { - "uuid": "5a8836bc-d606-4749-b6cf-0e3ea9421146", - "name": "AMET, DOLOR SIT", - "endDate": "2017-07-13", - "startDate": "2017-05-03", + "uuid": "be84350a-a029-49ec-961c-5e1bb95036ed", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2021-08-07", + "startDate": "2021-11-25", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": true }, { - "uuid": "792449e2-9bff-43c1-ac01-f6b665ab3275", + "uuid": "60422f01-a1c7-486e-a2e9-1e393e362e5f", "name": "IPSUM", - "endDate": "2016-03-13", - "startDate": "2018-04-12", + "endDate": "2017-05-03", + "startDate": "2015-03-04", "notes": "", "roles": [ "ORGANIZATION" @@ -77298,279 +91202,309 @@ "siteRegistry": true }, { - "uuid": "708e0378-c353-42c6-9fa1-68371b6cb8ec", - "name": "IPSUM", - "endDate": "2020-02-15", - "startDate": "2016-03-25", + "uuid": "7de17895-e910-4116-b589-1f0c5ec64324", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2019-11-15", + "startDate": "2020-10-24", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": true } ], - "suspectLandUses": [ + "documents": [ + { + "uuid": "917eecde-f101-4387-a70d-fb12e7f33aef", + "siteRegistry": true, + "documentDate": "2021-03-05", + "receivedDate": "2021-03-16", + "uploadedDate": "2022-05-16", + "title": "Summary of Site Conditions, 1537 W 41st Avenue, Vancouver", + "participants": [ + { + "uuid": "a578e92e-2892-466d-8cdb-f5da09442e61", + "name": "IPSUM", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "bf666e33-7bfe-45fb-bad0-6b05289a5c0b", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "d1967e41-3a48-4442-ba60-68d52cac17b2", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": false, + "role": "AUTHOR" + } + ] + }, { - "uuid": "21d4df8f-e3a1-48dd-9c09-977c086c65bd", + "uuid": "823db16f-53df-4132-b61a-7b3e5a233fb9", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-12-18 (described on Site Profile dated 2016-12-18)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "documentDate": "2016-03-31", + "receivedDate": "2020-12-15", + "uploadedDate": "2015-12-10", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "1fd39627-33c5-4f3a-bfde-5f09fd6c9457", + "name": "IPSUM", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "116b1f2c-5eed-407c-aea7-40aa86725c98", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "7a016f01-49a8-453e-904d-6152d20f52af", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": false, + "role": "AUTHOR" + } + ] }, { - "uuid": "cb24b270-e58b-4fee-9bba-252fe7da2382", + "uuid": "8eef7802-8687-4003-bbe1-08184258846a", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-12-08 (described on Site Profile dated 2014-12-08)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "documentDate": "2015-12-02", + "receivedDate": "2021-11-02", + "uploadedDate": "2022-04-22", + "title": "Preliminary Site Investigation, Detailed Site Investigation and Remedial Plan for the Management Area adjacent to the Shell Site at 1503 West 41st Ave", + "participants": [ + { + "uuid": "dd16d53f-50e7-4d1b-8bbd-87e004e1f5b6", + "name": "AMET, DOLOR SIT", + "siteRegistry": true, + "role": "AUTHOR" + } + ] + }, + { + "uuid": "7af3e2b4-aafa-4b35-b3d0-51cb992590cb", + "siteRegistry": true, + "documentDate": "2015-04-05", + "receivedDate": "2023-09-26", + "uploadedDate": "2014-05-19", + "title": "Preliminary Site Investigation, Detailed Site Investigation and Remedial Plan for the Management Area adjacent to the Shell Site at 1503 West 41st Ave", + "participants": [ + { + "uuid": "10f421f1-1ec4-4368-9a80-5cdb871b2aac", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "2563d370-bea5-4ebe-92eb-1435f309d2a6", + "name": "IPSUM", + "siteRegistry": true, + "role": "AUTHOR" + } + ] } ], - "parcelDescriptions": [ + "suspectLandUses": [ { - "uuid": "e9309daf-b51f-457f-bb22-e4da88688ba1", + "uuid": "68852532-6228-46a9-803f-8465bf4c9f83", "siteRegistry": true, - "dateNoted": "2022-07-04", - "parcelID": "19606", - "crownLandUsePIN": "18592", - "crownLandFileNumber": "15762", - "landDescription": "LOT 3 OF LOT 3 BLOCK 3 DISTRICT LOT 5 PLAN 9738" + "notes": "INSERTED FOR SITE PROFILE DATED 2023-01-28 (described on Site Profile dated 2023-01-28)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "uuid": "e0d5687f-8fe1-4ee7-9375-7f0db18525dc", + "uuid": "9e1b548b-74e6-4ea6-88a1-ba4391d7e04d", "siteRegistry": false, - "dateNoted": "2014-08-04", - "parcelID": "20743", - "crownLandUsePIN": "18714", - "crownLandFileNumber": "19400", - "landDescription": "LOT 3 OF LOT 5 BLOCK 4 DISTRICT LOT 1 PLAN 7930" + "notes": "INSERTED FOR SITE PROFILE DATED 2017-10-28 (described on Site Profile dated 2017-10-28)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + } + ], + "parcelDescriptions": [ + { + "uuid": "08b0f04d-e219-47fd-8a61-d86894916323", + "siteRegistry": false, + "dateNoted": "2014-01-08", + "parcelID": "18480", + "crownLandUsePIN": "19832", + "crownLandFileNumber": "18359", + "landDescription": "LOT 5 OF LOT 1 BLOCK 5 DISTRICT LOT 1 PLAN 4673" + }, + { + "uuid": "264ea4be-932a-4744-82fc-f9a991b01f1b", + "siteRegistry": true, + "dateNoted": "2020-04-27", + "parcelID": "17554", + "crownLandUsePIN": "17754", + "crownLandFileNumber": "19618", + "landDescription": "LOT 3 OF LOT 5 BLOCK 1 DISTRICT LOT 3 PLAN 3305" }, { - "uuid": "7cec5fce-5e0f-4b6b-a5ed-ecc34560bd2f", + "uuid": "880818bc-1cbf-44aa-a9be-dd0fbb99e85c", "siteRegistry": false, - "dateNoted": "2015-08-26", - "parcelID": "16385", - "crownLandUsePIN": "16150", - "crownLandFileNumber": "18485", - "landDescription": "LOT 5 OF LOT 1 BLOCK 1 DISTRICT LOT 5 PLAN 8725" + "dateNoted": "2014-10-09", + "parcelID": "20758", + "crownLandUsePIN": "19717", + "crownLandFileNumber": "19835", + "landDescription": "LOT 4 OF LOT 4 BLOCK 3 DISTRICT LOT 3 PLAN 7017" }, { - "uuid": "39718641-e2d5-4cdd-9408-8028fff7e012", + "uuid": "f356ee1f-2cd9-41d3-8d38-07ddd552475d", "siteRegistry": true, - "dateNoted": "2020-08-05", - "parcelID": "18688", - "crownLandUsePIN": "20765", - "crownLandFileNumber": "18496", - "landDescription": "LOT 1 OF LOT 3 BLOCK 1 DISTRICT LOT 3 PLAN 8972" + "dateNoted": "2014-07-19", + "parcelID": "19390", + "crownLandUsePIN": "16329", + "crownLandFileNumber": "19315", + "landDescription": "LOT 5 OF LOT 2 BLOCK 3 DISTRICT LOT 1 PLAN 9576" } ], "siteDisclosures": [ { - "uuid": "c282edc6-c3fb-4f91-832d-90d8ba0f82d1", - "siteRegistry": false, - "dateReceived": "2016-10-13", - "dateCompleted": "2013-10-22", - "dateEntered": "2021-10-11", - "dateRegistrar": "2022-09-03", - "dateLocalAuthorityReceived": "2019-11-13", - "summary": "Non aliquam ea aspernatur ullam commodi laudantium.\nAperiam libero dolore velit.\nOfficia quos ea incidunt laudantium suscipit explicabo facilis repellat.", - "informationUsed": "Similique ad qui sed.\nVoluptate quo corporis quidem dolorem nulla commodi occaecati aliquam.\nLaborum omnis quia quae officiis inventore.\nModi alias voluptatum est ab.\nNumquam cum iste dolores sit porro.", - "pastOrPresentOrders": "Repellendus reprehenderit quibusdam minus autem.\nImpedit vitae amet nisi itaque facere fugiat.\nPerspiciatis animi dolores numquam sit.", + "uuid": "aeeace6f-826a-4a12-a11e-446f91d5efda", + "siteRegistry": true, + "dateReceived": "2018-03-02", + "dateCompleted": "2017-11-02", + "dateEntered": "2014-11-06", + "dateRegistrar": "2020-04-16", + "dateLocalAuthorityReceived": "2017-09-04", + "summary": "Hic temporibus hic nobis.\nSunt nobis error ab.\nDoloremque excepturi quos.", + "informationUsed": "Ullam saepe quo asperiores alias consectetur nobis doloribus.\nNumquam hic deleniti nisi ratione blanditiis.\nExcepturi accusantium odit numquam.\nVitae illum necessitatibus saepe ex beatae ut.\nDolorem nihil explicabo corporis.", + "pastOrPresentOrders": "Laborum cumque beatae modi.", "commercialAndIndustrialPurposes": [ { - "uuid": "339bf685-a884-48eb-b59d-f56676dd1455", - "scheduleReference": "F2*", + "uuid": "e0878f40-28cf-479d-8329-e930396cb3b3", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, { - "uuid": "a3da64c4-8af1-4113-8a02-1e26c46ca269", + "uuid": "73351330-7945-4ed0-9135-4ee110e274b4", "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true - }, - { - "uuid": "3739d06a-c10b-4b49-b9df-344a46d386ce", - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false }, { - "uuid": "d8a80d04-1f49-457b-b182-f26326c9f637", + "uuid": "18fabb1c-9d0f-4a6f-bd17-35b67ecff997", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true + "siteRegistry": false } ] } ], "activityLog": [ { - "uuid": "7292886f-01fb-4c03-b79f-d93f1397d475", + "uuid": "ab2bc38a-d70a-4e04-8944-3806c062deb0", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "CRONIN JASEN", - "timestamp": "2016-06-27" + "user": "KIRLIN EDUARDO", + "timestamp": "2023-05-29" }, { - "uuid": "6266411a-d7d2-48d9-b57e-74e6eaa8d72c", - "siteRegistry": true, + "uuid": "50acd5a3-173c-4ab5-a355-fa0bd0a2aa40", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "BAUMBACH GEOVANY", - "timestamp": "2018-11-05" + "user": "GRAHAM CONRAD", + "timestamp": "2017-03-27" }, { - "uuid": "3213eff0-5915-4707-a474-665f814ebf6d", - "siteRegistry": true, + "uuid": "457f3f42-b8b2-44be-863d-70d9d88df24b", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "MURRAY VEDA", - "timestamp": "2021-09-02" + "user": "HEIDENREICH JACINTHE", + "timestamp": "2016-12-07" }, { - "uuid": "d7cc3167-9f58-4a0a-b99b-2f795cf34dc3", - "siteRegistry": true, + "uuid": "eb47495b-5e6b-40d4-be50-46933b914c28", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "MOSCISKI ANASTASIA", - "timestamp": "2014-08-20" + "user": "HINTZ-WOLFF SKYLA", + "timestamp": "2022-01-18" }, { - "uuid": "88858366-7900-4b24-81ed-dffb0fb29e70", + "uuid": "b9c04ecb-d693-4807-a912-31facb17b4fa", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "ROMAGUERA FRANCIS", - "timestamp": "2021-02-26" + "user": "HILLL ABE", + "timestamp": "2018-09-29" }, { - "uuid": "ea4ab1e5-9b79-45ec-a336-93bd6ccc8419", - "siteRegistry": false, + "uuid": "184ec389-3e75-4d0e-b233-af1e589618e5", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "HERZOG GERALDINE", - "timestamp": "2023-01-18" + "user": "HETTINGER CYNTHIA", + "timestamp": "2014-03-02" }, { - "uuid": "743ecc1e-1412-4f94-82d2-5a83cdb30364", + "uuid": "5f4bb26b-ae72-47b3-87a7-460aeebad804", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "SCHILLER-KUNDE KAYLEIGH", - "timestamp": "2018-03-08" + "user": "WAELCHI ZARIA", + "timestamp": "2023-05-23" }, { - "uuid": "c7033aa4-6acc-4db6-8290-083b15ae7e45", + "uuid": "d5c305de-b20d-4e32-9cd3-4c0a7194b3ce", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "GERLACH AILEEN", - "timestamp": "2016-09-19" + "user": "SHIELDS ELNA", + "timestamp": "2020-02-13" }, { - "uuid": "ab510719-56a4-4a84-850c-ebc3307535f0", - "siteRegistry": false, + "uuid": "00560980-2bf0-499b-9bd8-c9e7b42b37cc", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "WARD LEWIS", - "timestamp": "2014-11-27" + "user": "BAHRINGER TREY", + "timestamp": "2022-09-11" } ], "associatedSites": [ { - "uuid": "23a8311c-5fe6-4373-a130-993e08be2e74", - "dateNoted": "2015-01-25", + "uuid": "4b8669be-dd60-4dcd-953f-f8d542f0df89", + "dateNoted": "2015-01-06", "notes": "", - "parcelID": "17983", - "siteID": "17673", + "parcelID": "16753", + "siteID": "18101", + "siteRegistry": false + }, + { + "uuid": "25719749-3d44-4a61-babc-f0b22f596bf8", + "dateNoted": "2018-11-08", + "notes": "", + "parcelID": "17995", + "siteID": "18864", "siteRegistry": false } ] }, { - "uuid": "54b8a0eb-6ca0-4613-b8e9-cade4ef7289a", - "siteID": 17035, - "address": "518 Molly Shoals", - "latitude": 48.9058, - "longitude": -138.0284, - "lastUpdated": "2013-11-07", - "city": "Willland", - "region": "Cariboo", - "victoriaFile": "26250-20/15975", - "regionalFile": "N/A", - "parcelIDs": [ - 1648245, - 9303334, - 3588600, - 5713591, - 3200959 - ], - "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", - "notations": [ - { - "uuid": "7b74dc8c-be03-4036-8433-826eeb5f3c13", - "createdAt": "2015-05-03", - "completed": "2014-11-29", - "initiated": "2022-05-08", - "ministryContact": "STROSIN ANABELLE", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "uuid": "ed67defe-3fef-4a0c-ad71-c3eedb724350", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "uuid": "cb9a6e2a-b74e-4619-a579-9d67be6e50e0", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "uuid": "7340551b-aafd-4fd5-a932-71e666490a4d", - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "uuid": "80cfcccb-de43-4ef1-adbc-a6ded45c8a58", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - } - ], - "siteRegistry": false - }, - { - "uuid": "6fb061f1-726d-47eb-a719-f874a9ea29af", - "createdAt": "2018-11-08", - "completed": "2014-11-18", - "initiated": "2021-06-30", - "ministryContact": "GISLASON JAMISON", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "uuid": "b34602a0-96b9-4103-a6f9-80e4e0dc6888", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "uuid": "73ef40df-5b66-4d96-b5af-9ba7d094975b", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - } - ], - "siteRegistry": false - }, + "uuid": "644f28d8-fb6e-4bf1-b386-1cc7ba39bdb8", + "siteID": 20263, + "address": "985 Barrows Throughway", + "latitude": 56.7565, + "longitude": -122.9797, + "lastUpdated": "2020-07-20", + "city": "New Wendellbury", + "region": "Cariboo", + "victoriaFile": "26250-20/2204", + "regionalFile": "N/A", + "parcelIDs": [ + 1188424, + 7660344, + 9353705, + 3853404, + 4693059 + ], + "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", + "notations": [ { - "uuid": "1743b3e9-d462-4730-99cf-02f5e345a050", - "createdAt": "2017-10-20", - "completed": "2020-05-07", - "initiated": "2023-06-01", - "ministryContact": "EMARD MIREILLE", + "uuid": "5bceb4c9-5ded-4d55-8672-b5efae02ddbc", + "createdAt": "2018-04-10", + "completed": "2021-03-19", + "initiated": "2015-10-26", + "ministryContact": "MONAHAN MARQUISE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -77579,26 +91513,38 @@ ], "notationParticipants": [ { - "uuid": "18126bb5-5e0a-479b-b5fc-15a5101840ea", + "uuid": "a54a7f14-eeac-4495-9460-2d13864a682a", "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "b7c4d589-0571-4d3e-a2c1-09c4c18a5d8d", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "uuid": "80e20bf0-40aa-4fb9-855d-b8a61a3d928c", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "61c87a56-ae09-4a45-803c-8b8b622400a8", + "uuid": "ad3b56ad-99e2-443c-9efc-f8d3fba0cf89", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true } ], "siteRegistry": true }, { - "uuid": "c8c65d5a-2f4a-4f9e-85e0-2844bf001f3b", - "createdAt": "2015-05-20", - "completed": "2017-07-23", - "initiated": "2020-06-21", - "ministryContact": "PAUCEK HESTER", + "uuid": "4593c121-9803-4200-8dd2-8bf30d928ad9", + "createdAt": "2021-06-10", + "completed": "2019-03-27", + "initiated": "2019-08-11", + "ministryContact": "POLLICH FLETA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -77607,77 +91553,56 @@ ], "notationParticipants": [ { - "uuid": "4bafdf85-bd24-4010-8d19-f58966a73b4b", - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "uuid": "058c18b0-26db-40cd-a542-9f2e38fe5475", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "dcce7b7f-fa01-4aad-a36e-b50f51ca4c18", + "uuid": "e5ad7863-a8e9-4e60-852d-05aa9eb51952", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false - } - ], - "siteRegistry": true - }, - { - "uuid": "8db2ab6d-cf01-49be-92d2-bcf2a41111ef", - "createdAt": "2017-01-29", - "completed": "2022-07-19", - "initiated": "2016-05-09", - "ministryContact": "MRAZ STONE", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ + "siteRegistry": true + }, { - "uuid": "19f0d323-0688-41be-aae0-0ec51e689aaf", + "uuid": "a30c29aa-f99b-4f1d-b4fd-2f73c8d9fb58", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false }, { - "uuid": "b612c562-4941-424a-b9df-2626856dd267", + "uuid": "104dea2c-8230-46c1-9417-ee14b5b15d47", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false + }, + { + "uuid": "bee2e074-79d0-42a7-932d-7d9f90384a2a", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false } ], "participants": [ { - "uuid": "2a6167c2-12e5-4a71-b8fc-c45064b7b34e", - "name": "IPSUM", - "endDate": "2020-01-30", - "startDate": "2018-04-21", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": false - }, - { - "uuid": "dff9052a-ab89-4a89-bce6-5bf707596b2c", - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2021-12-06", - "startDate": "2016-02-10", + "uuid": "f5771eb6-0b10-4804-a541-eb35e5dbfc59", + "name": "AMET, DOLOR SIT", + "endDate": "2014-07-31", + "startDate": "2022-03-17", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": true }, { - "uuid": "2f6fb2bc-ab4c-4b15-a600-0bc4fe032212", + "uuid": "25c38146-e3b5-49ab-8fb4-f47db32330dc", "name": "SHELL CANADA PRODUCTS", - "endDate": "2013-11-30", - "startDate": "2014-06-20", + "endDate": "2015-04-30", + "startDate": "2015-07-01", "notes": "", "roles": [ "ORGANIZATION" @@ -77685,21 +91610,10 @@ "siteRegistry": true }, { - "uuid": "9ac31e9e-f1df-4aab-a28a-407be7afcc4f", - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2016-03-26", - "startDate": "2019-09-13", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": true - }, - { - "uuid": "4aa57854-54ae-4a27-97bf-2034c5b7db6e", - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2014-03-31", - "startDate": "2013-11-24", + "uuid": "3d5ed20b-a022-411f-8a82-22c4427d8760", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2016-03-04", + "startDate": "2018-10-03", "notes": "", "roles": [ "EMPLOYEE" @@ -77707,238 +91621,216 @@ "siteRegistry": false } ], - "suspectLandUses": [ + "documents": [ { - "uuid": "b6c593c7-1902-429a-82e6-e382cfb13889", + "uuid": "3ea873c9-e265-434c-8c27-4a885c31b893", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2020-10-09 (described on Site Profile dated 2020-10-09)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "documentDate": "2014-01-03", + "receivedDate": "2019-04-07", + "uploadedDate": "2023-02-24", + "title": "Summary of Site Conditions, 1537 W 41st Avenue, Vancouver", + "participants": [ + { + "uuid": "53e71c36-d1bc-467e-84f0-940f5074fce7", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": true, + "role": "AUTHOR" + } + ] }, { - "uuid": "c6533500-f279-4641-91fb-3246580279d4", + "uuid": "53fb08f9-4f90-4688-b594-28424a87f7c1", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2020-06-27 (described on Site Profile dated 2020-06-27)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" - }, + "documentDate": "2014-02-17", + "receivedDate": "2015-09-14", + "uploadedDate": "2019-11-23", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "d590f6a0-c6ae-4c52-9e31-e64040b4dddc", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": false, + "role": "AUTHOR" + } + ] + } + ], + "suspectLandUses": [ { - "uuid": "9feec51e-7751-456a-989a-51e3319861ce", - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-01-02 (described on Site Profile dated 2019-01-02)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "uuid": "1d4848a5-a8fd-4f52-8eac-656ce908fb19", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2022-03-20 (described on Site Profile dated 2022-03-20)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "uuid": "e4634fd0-6106-433d-bc7a-5c520aae607f", - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-08-24 (described on Site Profile dated 2015-08-24)", + "uuid": "54d99e4f-965e-43c2-8332-17a391115ce0", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2013-12-12 (described on Site Profile dated 2013-12-12)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], "parcelDescriptions": [ { - "uuid": "783bdc17-0548-4de1-8bc7-dce4a0bd0f5c", - "siteRegistry": false, - "dateNoted": "2016-09-01", - "parcelID": "16411", - "crownLandUsePIN": "17846", - "crownLandFileNumber": "16325", - "landDescription": "LOT 3 OF LOT 3 BLOCK 1 DISTRICT LOT 4 PLAN 6829" - }, - { - "uuid": "2d8433e5-0330-4b92-96a6-5cda69d3a603", - "siteRegistry": false, - "dateNoted": "2019-10-15", - "parcelID": "18795", - "crownLandUsePIN": "20294", - "crownLandFileNumber": "20903", - "landDescription": "LOT 2 OF LOT 2 BLOCK 5 DISTRICT LOT 2 PLAN 6164" - }, - { - "uuid": "7b4404df-d4a2-40bf-a326-a4d7f61e1504", + "uuid": "2aa25bb0-027a-4b65-87a6-ad6759bb8ed0", "siteRegistry": true, - "dateNoted": "2016-02-15", - "parcelID": "16099", - "crownLandUsePIN": "16682", - "crownLandFileNumber": "15636", - "landDescription": "LOT 5 OF LOT 4 BLOCK 4 DISTRICT LOT 2 PLAN 4952" + "dateNoted": "2022-08-13", + "parcelID": "20494", + "crownLandUsePIN": "15339", + "crownLandFileNumber": "17845", + "landDescription": "LOT 4 OF LOT 2 BLOCK 3 DISTRICT LOT 2 PLAN 5764" }, { - "uuid": "0206ced6-df2d-4164-b152-21feba5a2658", + "uuid": "8b6a5f7b-49ad-48ae-8470-7b9ffc76000e", "siteRegistry": false, - "dateNoted": "2020-06-22", - "parcelID": "19265", - "crownLandUsePIN": "18049", - "crownLandFileNumber": "20193", - "landDescription": "LOT 3 OF LOT 5 BLOCK 3 DISTRICT LOT 4 PLAN 7189" - }, - { - "uuid": "bd351ccd-bed8-41e4-8f24-e89d31429751", - "siteRegistry": true, - "dateNoted": "2018-12-22", - "parcelID": "17124", - "crownLandUsePIN": "18436", - "crownLandFileNumber": "16026", - "landDescription": "LOT 3 OF LOT 2 BLOCK 1 DISTRICT LOT 2 PLAN 8905" + "dateNoted": "2016-08-14", + "parcelID": "17756", + "crownLandUsePIN": "20827", + "crownLandFileNumber": "15356", + "landDescription": "LOT 5 OF LOT 1 BLOCK 2 DISTRICT LOT 2 PLAN 6909" } ], "siteDisclosures": [ { - "uuid": "dbb51931-0ca5-4f91-a441-834980dd0e3f", - "siteRegistry": true, - "dateReceived": "2019-08-31", - "dateCompleted": "2019-07-22", - "dateEntered": "2016-01-25", - "dateRegistrar": "2021-03-18", - "dateLocalAuthorityReceived": "2016-04-03", - "summary": "Numquam sed nihil cupiditate laboriosam quidem magnam aliquid.\nDoloremque quo porro nostrum quaerat perferendis ea ut velit magnam.", - "informationUsed": "Assumenda illo a quod quae modi rerum veritatis natus.\nReprehenderit modi quibusdam cupiditate amet corporis modi nemo suscipit.\nOccaecati dolor in aliquid odio.", - "pastOrPresentOrders": "Tenetur aspernatur in.", + "uuid": "1795cd6d-b33f-4bc4-9e61-ccf4c73938ac", + "siteRegistry": false, + "dateReceived": "2018-11-05", + "dateCompleted": "2023-02-12", + "dateEntered": "2017-09-29", + "dateRegistrar": "2018-01-04", + "dateLocalAuthorityReceived": "2016-06-09", + "summary": "Facilis excepturi culpa dolore quia quisquam eveniet.\nDeserunt quaerat ut molestias eaque.", + "informationUsed": "Deserunt cumque temporibus ad neque magnam est asperiores at.\nOfficiis eius debitis facilis reprehenderit soluta quos atque ratione.\nNihil harum error nam.", + "pastOrPresentOrders": "Vero magni praesentium totam dicta perferendis minima esse temporibus tempora.\nNatus excepturi dolor.", "commercialAndIndustrialPurposes": [ { - "uuid": "0c86e8d3-67b9-4970-9baf-8ac43e378996", - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false + "uuid": "8e248daa-b4dd-4e88-825a-a81203c75554", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true }, { - "uuid": "7ad0d5ed-3a8e-4427-9254-0fd7cd6ea540", - "scheduleReference": "F2*", + "uuid": "82d34cc7-1803-4d2c-95e5-53e3807aff79", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "a08d7279-96e1-47dd-84b5-47b91c76698c", + "uuid": "81dd703e-a847-48ce-9b3d-05aac2f3aa08", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true + }, + { + "uuid": "f93040ec-0aa2-4d77-a7d8-ef05ae74bce7", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false } ] } ], "activityLog": [ { - "uuid": "8324d9ae-f5ec-490f-ae83-a338b4f12adc", - "siteRegistry": true, + "uuid": "3356bedb-f2be-488f-8270-8629e53e5a9a", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "PAGAC DEJON", - "timestamp": "2021-03-09" + "user": "ABSHIRE MIKE", + "timestamp": "2021-04-29" }, { - "uuid": "efafa5ed-12c0-4714-894c-3b0e19b70574", + "uuid": "717a8a9a-e2a4-4d73-bc40-b9b368ed040c", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "WEBER ZANDER", - "timestamp": "2014-10-19" + "user": "WAELCHI ELEONORE", + "timestamp": "2016-08-11" }, { - "uuid": "478adc22-7699-4c8f-9fee-f74fb3cdc59f", + "uuid": "837a2728-6506-41a9-90a8-ebf7648e702c", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "LINDGREN HERMAN", - "timestamp": "2014-09-02" - }, - { - "uuid": "32bf8584-2efa-41c2-9e6c-d3a6d8b202b0", - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "DOYLE-SCHIMMEL TARYN", - "timestamp": "2021-09-23" + "user": "BOYLE EARL", + "timestamp": "2013-11-20" }, { - "uuid": "be704a38-5f07-492f-a09f-b1ef714a2b5c", + "uuid": "04e95e37-e176-4e40-b121-067efce63d7c", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "JACOBSON BERNARDO", - "timestamp": "2020-11-08" + "user": "KEELING LELA", + "timestamp": "2017-07-22" }, { - "uuid": "94b6aa57-aeaf-4626-a54f-db263773f2de", - "siteRegistry": false, + "uuid": "457d39f6-c800-4113-ae3d-57ea0aae7ed3", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "LANGWORTH HUDSON", - "timestamp": "2014-11-01" + "user": "TURCOTTE HERSHEL", + "timestamp": "2020-12-11" }, { - "uuid": "f22baa30-4fc3-480a-8662-42344ff9211e", + "uuid": "74f8f39b-321c-481c-bbed-98bec59acb80", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "ORTIZ JONATHON", - "timestamp": "2017-06-15" + "user": "WEISSNAT SCARLETT", + "timestamp": "2014-01-05" }, { - "uuid": "04d50330-2074-49dc-97ff-a43ecea4d78b", - "siteRegistry": true, + "uuid": "6f700199-9475-4054-a156-0024340d3ba9", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "CREMIN EVA", - "timestamp": "2021-02-13" + "user": "WATERS LAURIANNE", + "timestamp": "2014-09-19" }, { - "uuid": "8bd2f8fc-9b9e-4957-95b4-277610704cae", + "uuid": "09616d95-2db7-4a00-8b9d-7ec9fd8a04a3", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "MOHR EMMANUELLE", - "timestamp": "2015-07-16" + "user": "BARROWS WILSON", + "timestamp": "2023-01-10" }, { - "uuid": "ef1565cc-b8bc-411d-a074-8cd30144a61e", - "siteRegistry": true, + "uuid": "b6537a5f-2389-4d6a-a354-64f1d10552fa", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "WALKER JOHANN", - "timestamp": "2016-07-14" + "user": "LEFFLER HECTOR", + "timestamp": "2017-06-11" } ], "associatedSites": [ { - "uuid": "1d12752d-ce2d-421a-bfc1-9889e986c2ab", - "dateNoted": "2022-04-18", - "notes": "", - "parcelID": "15631", - "siteID": "20304", - "siteRegistry": true - }, - { - "uuid": "81217cca-0999-4bad-8746-84aa0c5aba7a", - "dateNoted": "2018-10-27", + "uuid": "0402a89b-9234-4775-9cd1-fe53cb30e749", + "dateNoted": "2015-11-28", "notes": "", - "parcelID": "17625", - "siteID": "20024", + "parcelID": "18116", + "siteID": "18484", "siteRegistry": false - }, - { - "uuid": "2c8331fa-ea81-4222-8761-c7197a988122", - "dateNoted": "2015-08-16", - "notes": "", - "parcelID": "15725", - "siteID": "20362", - "siteRegistry": true } ] }, { - "uuid": "6ae8dda7-9fd0-4fa0-8cc5-a26d98637b3d", - "siteID": 18865, - "address": "83712 Carli Corner", - "latitude": 49.7239, - "longitude": -133.1883, - "lastUpdated": "2022-06-16", - "city": "Wizafort", + "uuid": "85c896dc-162b-4f8a-b347-69fe992300f2", + "siteID": 19745, + "address": "86251 Presley Mountains", + "latitude": 54.8476, + "longitude": -134.123, + "lastUpdated": "2022-02-27", + "city": "East Nicola", "region": "Thompson-Okanagan", - "victoriaFile": "26250-20/4153", + "victoriaFile": "26250-20/19940", "regionalFile": "N/A", "parcelIDs": [ - 9218490, - 2624823, - 160255, - 3738213, - 9558148 + 4478245, + 5470468, + 2625702, + 2673329, + 5925573 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "8521bb4d-dee3-4a43-92ee-b4fed7932f28", - "createdAt": "2023-06-30", - "completed": "2020-03-18", - "initiated": "2022-05-17", - "ministryContact": "OKUNEVA STERLING", + "uuid": "3759e7c6-8a5e-4dea-b298-11245f290317", + "createdAt": "2015-07-06", + "completed": "2017-06-25", + "initiated": "2018-02-06", + "ministryContact": "CUMMERATA LISA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -77947,26 +91839,38 @@ ], "notationParticipants": [ { - "uuid": "078ce67d-6940-4582-b784-11cd32025516", + "uuid": "75166983-c17b-4ffb-a973-50e7d552e435", "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "uuid": "c9c7ba2a-00bf-408a-b717-874ef4f74949", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "814a47d9-2c3b-4ae7-a23b-3c5644f6e2eb", + "uuid": "a17438f8-6edc-4e52-bedc-4b36436b302c", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false + }, + { + "uuid": "21a2a4b2-992f-4cd5-b1cb-85e563cecf10", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false } ], "siteRegistry": false }, { - "uuid": "0bbb91d9-eca5-4f32-83a5-f6b4b058f151", - "createdAt": "2022-11-09", - "completed": "2017-06-29", - "initiated": "2023-07-17", - "ministryContact": "RUTHERFORD SYLVAN", + "uuid": "d6c36b35-dc8a-42c6-8b06-0a4900e61700", + "createdAt": "2017-09-03", + "completed": "2023-06-30", + "initiated": "2023-08-16", + "ministryContact": "SCHILLER ELTON", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -77975,60 +91879,106 @@ ], "notationParticipants": [ { - "uuid": "b688effd-12bb-4aef-8511-3fdbf66b0b52", + "uuid": "e16645a3-780f-4e5f-b1c3-144c36cafda3", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "343b1b57-0ddb-4959-9c44-7efe2905dfaa", + "uuid": "22538f13-ac19-468b-a6c0-f5f37c2d5a89", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "fd5fea81-3d4f-4bc8-90b8-d99a87d2d4cb", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "e66e66d9-3815-41f3-b756-e1dad4c4b7ff", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "3c920641-6ec9-4db4-a9e6-23b80e6532e5", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true + }, + { + "uuid": "5be8c0d9-70b0-40d6-bb05-b820b96c3ffe", + "createdAt": "2017-06-07", + "completed": "2023-03-10", + "initiated": "2021-05-29", + "ministryContact": "ROGAHN MAGNOLIA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "uuid": "df7b9603-f6fb-4a64-87b5-4458d1d8a7c6", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "uuid": "cc343a1b-2d3f-43cb-bd58-6e010b029866", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true } ], "participants": [ { - "uuid": "05564712-960b-411f-b932-a58116c495c6", + "uuid": "b22f7106-0694-42ef-a99e-a0dd4a1b7825", "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2017-05-23", - "startDate": "2019-04-22", + "endDate": "2016-03-28", + "startDate": "2014-11-30", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "50ba157e-d2b3-46db-ae00-50ef8ebbad52", + "uuid": "17c0d5d1-98bb-488c-81bc-856517356d94", "name": "IPSUM", - "endDate": "2017-09-19", - "startDate": "2016-06-30", + "endDate": "2023-05-22", + "startDate": "2017-09-03", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": true }, { - "uuid": "478790ad-2dcc-4d89-9693-2c951ce2f69e", - "name": "IPSUM", - "endDate": "2023-02-09", - "startDate": "2017-05-28", + "uuid": "21b83936-f5b9-42ba-ae21-47f9f1dd40f4", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2016-10-04", + "startDate": "2018-03-13", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "c1f4b13c-68d6-4cad-aeb5-a841652bb894", - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2016-09-17", - "startDate": "2023-06-23", + "uuid": "29cdf6f5-4033-42a2-8e51-59f622fe4a0f", + "name": "IPSUM", + "endDate": "2014-04-21", + "startDate": "2015-07-28", "notes": "", "roles": [ "EMPLOYEE" @@ -78036,10 +91986,10 @@ "siteRegistry": false }, { - "uuid": "02fe192c-8647-46a1-bd35-3a630e3bbd36", - "name": "IPSUM", - "endDate": "2014-06-25", - "startDate": "2014-11-16", + "uuid": "70f75153-808e-4b9c-a4e5-ca924a8ce24c", + "name": "AMET, DOLOR SIT", + "endDate": "2023-03-30", + "startDate": "2023-02-21", "notes": "", "roles": [ "EMPLOYEE" @@ -78047,220 +91997,346 @@ "siteRegistry": true } ], - "suspectLandUses": [ + "documents": [ { - "uuid": "f3598cc1-54cd-4933-9c22-8d874df71418", - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-01-04 (described on Site Profile dated 2017-01-04)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "uuid": "d7a84136-3c3d-4ce7-93be-ed65b16fa302", + "siteRegistry": true, + "documentDate": "2022-02-15", + "receivedDate": "2023-03-31", + "uploadedDate": "2023-08-31", + "title": "Summary of Site Conditions, 1537 W 41st Avenue, Vancouver", + "participants": [ + { + "uuid": "114201ad-8ef8-4e58-96bd-2f9fc5f87055", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "1cfba5b8-c595-49f8-93a2-81240be5410e", + "name": "IPSUM", + "siteRegistry": true, + "role": "AUTHOR" + } + ] + }, + { + "uuid": "123b075b-b0b7-4c08-ad14-29049062df65", + "siteRegistry": true, + "documentDate": "2014-03-28", + "receivedDate": "2023-04-21", + "uploadedDate": "2018-08-05", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "82eaa5c2-0d6d-41d5-8029-e60cbb806089", + "name": "AMET, DOLOR SIT", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "1b30afb5-2d59-4be7-b69c-5d74a80000bc", + "name": "AMET, DOLOR SIT", + "siteRegistry": false, + "role": "AUTHOR" + } + ] }, { - "uuid": "15107157-ea50-4d58-bb07-140f43bf1c66", + "uuid": "f49daa70-f54f-4107-9344-1693d7737e2c", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-02-25 (described on Site Profile dated 2014-02-25)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "documentDate": "2017-11-21", + "receivedDate": "2021-11-20", + "uploadedDate": "2019-08-20", + "title": "Summary of Site Conditions, 1537 W 41st Avenue, Vancouver", + "participants": [ + { + "uuid": "90827e0a-bca6-4b38-ba47-cd0e2d708234", + "name": "AMET, DOLOR SIT", + "siteRegistry": true, + "role": "AUTHOR" + } + ] }, { - "uuid": "d4bd7802-5d72-4da4-8840-42435c221c90", + "uuid": "29ddff74-29a2-40d0-9d48-065fd66a32f3", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2020-11-12 (described on Site Profile dated 2020-11-12)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "documentDate": "2020-03-30", + "receivedDate": "2019-11-21", + "uploadedDate": "2013-10-25", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "27e945eb-34fb-4f5a-9c89-b34f6567cbae", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "a1cacb20-f503-4314-81be-75751b02c53c", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": true, + "role": "AUTHOR" + } + ] }, { - "uuid": "7fd6a3bd-9356-4eee-9558-ba2eb6337959", + "uuid": "10e90553-4325-4899-a4a0-e21e03d33a59", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-12-02 (described on Site Profile dated 2019-12-02)", + "documentDate": "2014-12-05", + "receivedDate": "2018-10-15", + "uploadedDate": "2020-12-21", + "title": "Preliminary Site Investigation, Detailed Site Investigation and Remedial Plan for the Management Area adjacent to the Shell Site at 1503 West 41st Ave", + "participants": [ + { + "uuid": "32e696ad-0cb6-43fb-806c-93c52f81b7a8", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": false, + "role": "AUTHOR" + } + ] + } + ], + "suspectLandUses": [ + { + "uuid": "7584db1f-ca4f-41e8-b1b9-ceaae1b3fc66", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2018-04-10 (described on Site Profile dated 2018-04-10)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "uuid": "44c0c417-8887-467e-8b5d-672f52f5bc08", - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-03-10 (described on Site Profile dated 2022-03-10)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "uuid": "218d4203-c4fd-4ae2-a2aa-36745b33f4cc", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2022-11-13 (described on Site Profile dated 2022-11-13)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "uuid": "f0737198-6bce-42fb-98fe-36e8f90b5c57", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2015-05-24 (described on Site Profile dated 2015-05-24)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "uuid": "68196f19-472e-4178-96fa-6fc6165893b2", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2021-02-21 (described on Site Profile dated 2021-02-21)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "uuid": "2cd5839a-1662-45f5-b947-a4c01b664d3a", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2020-06-10 (described on Site Profile dated 2020-06-10)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], "parcelDescriptions": [ { - "uuid": "51dd5da8-3ac1-4a82-9af0-9f1cf5523bbf", + "uuid": "34c2e3b4-19bb-4e31-8bd3-963a122b749c", "siteRegistry": true, - "dateNoted": "2016-08-31", - "parcelID": "15789", - "crownLandUsePIN": "20286", - "crownLandFileNumber": "16380", - "landDescription": "LOT 4 OF LOT 4 BLOCK 1 DISTRICT LOT 5 PLAN 9161" + "dateNoted": "2021-12-29", + "parcelID": "20504", + "crownLandUsePIN": "18337", + "crownLandFileNumber": "15596", + "landDescription": "LOT 5 OF LOT 5 BLOCK 1 DISTRICT LOT 3 PLAN 3815" }, { - "uuid": "a3f27c09-6b96-4b81-901b-0e2f694112b4", - "siteRegistry": false, - "dateNoted": "2017-04-05", - "parcelID": "19646", - "crownLandUsePIN": "18556", - "crownLandFileNumber": "20339", - "landDescription": "LOT 1 OF LOT 3 BLOCK 5 DISTRICT LOT 4 PLAN 4175" + "uuid": "5308b839-8b24-4275-85d0-7a0289a948bb", + "siteRegistry": true, + "dateNoted": "2016-07-06", + "parcelID": "18557", + "crownLandUsePIN": "16970", + "crownLandFileNumber": "18515", + "landDescription": "LOT 3 OF LOT 3 BLOCK 4 DISTRICT LOT 3 PLAN 3122" }, { - "uuid": "18d7c305-9ded-441f-8992-7006f6e53c3d", + "uuid": "fe3be140-f892-4ff0-9014-37b080da88bd", "siteRegistry": true, - "dateNoted": "2013-11-05", - "parcelID": "16876", - "crownLandUsePIN": "15261", - "crownLandFileNumber": "16867", - "landDescription": "LOT 2 OF LOT 3 BLOCK 3 DISTRICT LOT 1 PLAN 9590" + "dateNoted": "2014-08-04", + "parcelID": "20604", + "crownLandUsePIN": "15879", + "crownLandFileNumber": "16684", + "landDescription": "LOT 3 OF LOT 3 BLOCK 5 DISTRICT LOT 1 PLAN 4968" } ], "siteDisclosures": [ { - "uuid": "89e14d6c-c23e-4962-98ea-1a94e405ed2f", - "siteRegistry": true, - "dateReceived": "2015-04-01", - "dateCompleted": "2018-05-18", - "dateEntered": "2022-08-01", - "dateRegistrar": "2017-11-04", - "dateLocalAuthorityReceived": "2020-05-31", - "summary": "Quas itaque quasi aperiam at explicabo fuga ullam.\nVero nobis eaque necessitatibus rerum.\nAsperiores praesentium est minima dolorum voluptatibus molestias ex.", - "informationUsed": "Tenetur est impedit velit nisi error voluptatum.\nFugit architecto blanditiis fugit quaerat dolore nulla necessitatibus.\nLabore a provident a maxime modi quae laboriosam sit minus.\nConsectetur in deserunt cum magnam qui aperiam.", - "pastOrPresentOrders": "Eum commodi occaecati voluptatum odit.\nExcepturi laudantium nostrum ex facilis consectetur sed explicabo praesentium.", + "uuid": "3b18587c-be66-455b-87a0-0ab714050090", + "siteRegistry": false, + "dateReceived": "2015-01-27", + "dateCompleted": "2020-09-02", + "dateEntered": "2015-03-12", + "dateRegistrar": "2020-02-28", + "dateLocalAuthorityReceived": "2021-02-01", + "summary": "Delectus voluptates expedita inventore illo quisquam nesciunt iusto.", + "informationUsed": "Accusantium officia voluptatum molestias vitae.\nDistinctio tempora aliquam quae voluptatum quisquam excepturi.\nDeleniti architecto nam quaerat inventore molestiae quidem pariatur nemo.", + "pastOrPresentOrders": "Eius fuga reprehenderit harum saepe cumque quia inventore vitae.\nQuis voluptatibus qui repudiandae.\nAccusamus dignissimos perferendis dolorum illum enim sapiente officiis.", "commercialAndIndustrialPurposes": [ { - "uuid": "42b31235-45ae-4e46-a2f9-6474433407e2", + "uuid": "b8550d66-d75a-43ea-b9c3-83d778019a9a", "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { - "uuid": "893400d9-cd27-4ca0-baac-046a411d6e0a", + "uuid": "879c79c9-8228-431a-919c-b4c9dc57418b", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false } ] + }, + { + "uuid": "b472c837-7a1d-47a0-85c4-eba27262c2e1", + "siteRegistry": false, + "dateReceived": "2015-04-05", + "dateCompleted": "2019-11-07", + "dateEntered": "2023-07-27", + "dateRegistrar": "2021-06-09", + "dateLocalAuthorityReceived": "2016-04-14", + "summary": "Minima quaerat magnam omnis debitis eos.", + "informationUsed": "Dicta assumenda tempore quam iure.\nDignissimos odio occaecati.\nLaborum optio aliquid neque ad nesciunt.\nCommodi laudantium iusto quibusdam molestias ipsa perspiciatis.", + "pastOrPresentOrders": "Recusandae enim minus.", + "commercialAndIndustrialPurposes": [ + { + "uuid": "d2003030-1a0e-406a-bf08-ce673e41b8f8", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "uuid": "600edead-a635-4ad3-ac61-7a2f57e37506", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + } + ] } ], "activityLog": [ { - "uuid": "eb684ef1-8434-47a6-b043-22892953b3e9", + "uuid": "313248a5-6a50-4934-8144-62357daa138b", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "KUHLMAN ROD", - "timestamp": "2018-05-09" + "user": "RUTHERFORD QUEEN", + "timestamp": "2022-03-15" }, { - "uuid": "65ad4bcd-097a-447b-9242-4c9e8c27b73a", + "uuid": "e93a54aa-af48-4f2f-92e7-dfac4f41deee", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "COLLIER JUNIOR", - "timestamp": "2020-03-21" + "user": "TRANTOW ELIANE", + "timestamp": "2022-07-19" }, { - "uuid": "d11b98a0-e155-485b-a05c-8640bd3c6768", - "siteRegistry": true, + "uuid": "7b411c9f-c438-4ccf-882e-73f34dfc2139", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "KUHN MOSSIE", - "timestamp": "2018-09-14" + "user": "CHRISTIANSEN BRENDON", + "timestamp": "2018-11-22" }, { - "uuid": "3ac74ca3-9efa-4cb0-a1e4-24767e5892c9", - "siteRegistry": false, + "uuid": "53068cc5-3608-489b-b1e5-00120cb742e4", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "SCHOEN JAYLAN", - "timestamp": "2020-11-25" + "user": "WARD DOCK", + "timestamp": "2020-12-02" }, { - "uuid": "05d447ee-62be-47bf-8978-a64b2bbfa7e4", - "siteRegistry": false, + "uuid": "874acc3f-45e7-49d9-86bd-d3c7ab7fe622", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "HOMENICK AUDIE", - "timestamp": "2016-11-29" + "user": "KAUTZER AMANDA", + "timestamp": "2020-03-14" }, { - "uuid": "da3f544d-d14e-4547-9647-5bca9ae0453d", + "uuid": "2e22d061-50ad-4572-ba11-6a2c8ad07710", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "LARSON ALANIS", - "timestamp": "2017-11-24" + "user": "BAYER NATHANIAL", + "timestamp": "2021-11-08" }, { - "uuid": "d2c20c23-00c2-41f1-b605-fac99b28b87d", + "uuid": "d3213c18-cbf7-4def-947c-57f5be2706ba", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "HILLL MAKENZIE", - "timestamp": "2015-12-19" + "user": "KAUTZER PROVIDENCI", + "timestamp": "2014-06-11" }, { - "uuid": "6d729b24-52a8-4540-a7b7-b08b56afa98f", - "siteRegistry": false, + "uuid": "38533b1b-7fd1-493a-a4fd-d233e5aa91bf", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "BRAKUS CLEMENTINA", - "timestamp": "2016-04-18" + "user": "SAUER-BLANDA EDWIN", + "timestamp": "2021-12-25" }, { - "uuid": "ea004ea1-1ed9-4ea3-ad5e-43dafe8aa5bd", + "uuid": "d654d488-17e2-4e41-adda-c1a7e6841f97", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "FISHER VERNIE", - "timestamp": "2020-03-29" + "user": "HANE GILLIAN", + "timestamp": "2019-10-08" }, { - "uuid": "0e04792f-e16b-4b39-bc61-862eab14c039", - "siteRegistry": false, + "uuid": "dd6a9483-daf9-4393-9b65-ce8ccb129e1f", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "MCDERMOTT ARELY", - "timestamp": "2019-09-29" + "user": "BARTOLETTI LEXI", + "timestamp": "2021-08-24" } ], "associatedSites": [ { - "uuid": "a8d8eb26-1305-4f27-b590-69f41e4b50c7", - "dateNoted": "2020-01-17", + "uuid": "33279fba-647f-4d2c-9edf-ae5cc8f1bd15", + "dateNoted": "2023-09-09", "notes": "", - "parcelID": "18516", - "siteID": "20942", + "parcelID": "17631", + "siteID": "20039", "siteRegistry": false }, { - "uuid": "37b4dd30-c2fc-4bf6-8795-b818e5396831", - "dateNoted": "2018-05-17", + "uuid": "93796f02-a528-469e-9e9a-6625653e55c1", + "dateNoted": "2023-03-26", "notes": "", - "parcelID": "18622", - "siteID": "17666", - "siteRegistry": false + "parcelID": "20532", + "siteID": "15579", + "siteRegistry": true }, { - "uuid": "fa66cf8d-f876-40ae-9e94-07e48d7623c3", - "dateNoted": "2017-07-08", + "uuid": "dc21b216-0f71-4153-b0cf-a32a2e53d78d", + "dateNoted": "2020-09-23", "notes": "", - "parcelID": "18194", - "siteID": "18416", + "parcelID": "17023", + "siteID": "16874", "siteRegistry": true } ] }, { - "uuid": "ea5fe53c-c05a-42ac-af06-6ec9224b0d92", - "siteID": 17896, - "address": "8619 Alda Rapids", - "latitude": 56.6884, - "longitude": -119.1977, - "lastUpdated": "2016-01-31", - "city": "Ratkeworth", - "region": "Mainland/Southwest", - "victoriaFile": "26250-20/5202", + "uuid": "1b012bee-7355-4af4-b283-84175604bcec", + "siteID": 20622, + "address": "9825 Kautzer Plains", + "latitude": 52.0681, + "longitude": -119.8173, + "lastUpdated": "2016-11-25", + "city": "Fort Loraine", + "region": "Vancouver Island/Coast", + "victoriaFile": "26250-20/12849", "regionalFile": "N/A", "parcelIDs": [ - 8030380, - 505713, - 6184047, - 8649340, - 1486341 + 3506427, + 2627039, + 5304712, + 2225156, + 3083481 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "66bc2459-d05b-4d52-8944-3067485724f1", - "createdAt": "2016-03-27", - "completed": "2021-07-31", - "initiated": "2019-08-30", - "ministryContact": "SAUER ALYSHA", + "uuid": "ffd2d83b-721f-436f-adbc-2dd98d406d09", + "createdAt": "2019-05-19", + "completed": "2023-09-14", + "initiated": "2015-06-10", + "ministryContact": "MAGGIO LURA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -78269,38 +92345,32 @@ ], "notationParticipants": [ { - "uuid": "a3a916d5-6c0b-4972-a4d6-925a4858df16", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "uuid": "a3504f55-5124-4de0-8cd6-3a3c4c31bd4b", - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "5bd68058-5e42-41c4-9a7f-08e058155b19", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "e39ac3a6-4cc5-486b-97f3-87f4abc70699", + "uuid": "a6b169ba-33ac-4c1f-88f7-3aafcef5edaf", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false }, { - "uuid": "43b076f2-019e-41e2-aeda-d96b8d4c852f", - "name": "SHELL CANADA PRODUCTS", + "uuid": "c8201ea6-dc8b-45a9-a4af-7177b2ec335c", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "94ede550-dddc-4a1b-89e1-4916c54cf7e5", - "createdAt": "2023-02-03", - "completed": "2020-03-17", - "initiated": "2020-06-23", - "ministryContact": "GOYETTE GILBERT", + "uuid": "82e3a16f-1cb2-44b6-a930-8fd9622027c7", + "createdAt": "2019-06-12", + "completed": "2018-04-26", + "initiated": "2014-09-29", + "ministryContact": "SCHNEIDER OSCAR", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -78309,44 +92379,44 @@ ], "notationParticipants": [ { - "uuid": "67f457b5-1a45-400e-8d21-46bd69038c80", - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "uuid": "9a03268d-4de4-467f-8469-92518d4febc3", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", "siteRegistry": false }, { - "uuid": "b5e06b6c-89cf-4274-a4d1-e0e9681d1498", + "uuid": "3dca4183-ceb7-45b9-99e9-92bc71d2fb84", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "02f2b634-ab53-4a9d-9b07-dfe764aa2bb1", - "name": "SHELL CANADA PRODUCTS", + "uuid": "6af6ab21-932d-446d-8705-78a35786b88a", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true }, { - "uuid": "36eadb70-26e5-4a76-9ce4-7a879afac0c6", - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "c8731e24-2386-4d68-99f0-691ae823a723", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true }, { - "uuid": "27001ae0-ed14-46c2-adab-1baf2bda3a0c", + "uuid": "8597840f-98a6-4c64-a8c3-c09f6b08230e", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true + "role": "SUBMITTED BY", + "siteRegistry": false } ], "siteRegistry": true }, { - "uuid": "c5b9da58-af0b-44fc-8e9a-4c159806efc6", - "createdAt": "2016-01-16", - "completed": "2021-12-11", - "initiated": "2015-07-04", - "ministryContact": "ROHAN TREMAINE", + "uuid": "3076a55b-b852-4eaa-8bdf-e92e87bc190f", + "createdAt": "2016-01-13", + "completed": "2018-09-13", + "initiated": "2018-08-05", + "ministryContact": "KUVALIS GERDA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -78355,38 +92425,44 @@ ], "notationParticipants": [ { - "uuid": "35bab488-286c-40a6-aea1-8fa59f8901d7", + "uuid": "79a49cff-7737-4aa4-934c-fa97ca832e04", "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "uuid": "d12c3f39-7ef2-410e-be11-10ad4ab5dccb", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "87ef35d0-b5eb-4d7d-b397-18fdf6c74148", - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "562df4db-31b2-4733-970f-f60954604058", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "b367e86e-870f-448a-89c8-d639acbe9d4e", - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "9f696a48-c9f8-4bfb-aed6-6ee86667e2b8", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "acc67a35-8077-4eb8-bb87-94a81f47c128", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false + "uuid": "a8284f24-11a9-4b97-b829-ff0d1429d5e1", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "ac4457f7-c0c1-481d-983f-17efa4872831", - "createdAt": "2018-02-06", - "completed": "2015-04-16", - "initiated": "2022-06-03", - "ministryContact": "NADER JONATHON", + "uuid": "5eca315f-5942-455a-84c3-d6f73df2f40d", + "createdAt": "2015-07-05", + "completed": "2017-05-25", + "initiated": "2020-06-14", + "ministryContact": "WILLMS WHITNEY", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -78395,44 +92471,26 @@ ], "notationParticipants": [ { - "uuid": "5ed3074c-c537-4207-a65f-f00307599c6e", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "uuid": "75bd3599-4c5f-4765-8397-cc7d17ea4b25", + "uuid": "31e0887a-29d3-4b72-9853-b122366b8f8a", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "uuid": "f3368313-6929-4fc3-a37c-138d60947fef", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "6add1fcb-6bfb-414d-b65b-827584b316c7", - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "uuid": "58eefd35-1739-49d8-aba4-3d57fe190f81", + "uuid": "9043767e-97b5-44b8-b57c-1cc91e3e132a", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false } ], "siteRegistry": false }, { - "uuid": "4331e8a1-4922-4443-86cf-4d99ea26ce9f", - "createdAt": "2014-08-08", - "completed": "2023-02-11", - "initiated": "2019-06-20", - "ministryContact": "THIEL LAURIANNE", + "uuid": "49516fed-e201-47fa-8fbb-77aa82dd7cfb", + "createdAt": "2015-03-03", + "completed": "2017-09-03", + "initiated": "2020-01-26", + "ministryContact": "BAHRINGER KELSI", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -78441,21 +92499,27 @@ ], "notationParticipants": [ { - "uuid": "c8c34461-aa0a-4889-8919-8f5b25f85b9c", + "uuid": "6da2cdd9-30b0-4b70-95f7-469e66dda1cc", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true + "role": "SUBMITTED BY", + "siteRegistry": false }, { - "uuid": "f8e8e538-c5ed-4404-977a-7c9da989ec89", + "uuid": "12a9707d-165e-48be-886d-2842f60de18b", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "7815889b-8779-4c26-a6b8-158f7e5ef256", + "uuid": "047d4ba7-97e4-49b9-ac42-a8a0ac7f99ec", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "uuid": "6e52651f-89bc-4a62-b967-b25d55cd056d", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": true } ], @@ -78464,21 +92528,21 @@ ], "participants": [ { - "uuid": "7da42591-9acf-4166-a1f1-f9b5958797ce", - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2020-07-18", - "startDate": "2016-05-31", + "uuid": "3527a9c5-b7ae-45db-b18d-86c1fe775505", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2014-12-03", + "startDate": "2017-10-12", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "cb6ec1cc-3315-4b77-95b2-c8a9df928a3a", - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2022-12-23", - "startDate": "2018-04-02", + "uuid": "5c8f7f0a-5777-495d-9736-37778180c342", + "name": "IPSUM", + "endDate": "2021-02-11", + "startDate": "2022-04-30", "notes": "", "roles": [ "ORGANIZATION" @@ -78486,184 +92550,255 @@ "siteRegistry": false }, { - "uuid": "5921baaf-a466-4e8a-bc19-296dec555d8d", - "name": "SHELL CANADA PRODUCTS", - "endDate": "2022-01-17", - "startDate": "2014-11-17", + "uuid": "d6012faa-0040-4cfd-859b-cb805eadba56", + "name": "AMET, DOLOR SIT", + "endDate": "2017-09-15", + "startDate": "2020-08-28", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": true - }, + "siteRegistry": false + } + ], + "documents": [ { - "uuid": "f012b81a-53c0-46de-b5f2-bc2d7513e801", - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2020-09-08", - "startDate": "2016-01-15", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": true + "uuid": "1f1d7405-24a5-4921-8fec-b47e5dbef3b8", + "siteRegistry": false, + "documentDate": "2020-10-09", + "receivedDate": "2019-06-06", + "uploadedDate": "2021-05-28", + "title": "Preliminary Site Investigation, Detailed Site Investigation and Remedial Plan for the Management Area adjacent to the Shell Site at 1503 West 41st Ave", + "participants": [ + { + "uuid": "d41cbb10-8539-4fb7-ae10-57048228bb89", + "name": "AMET, DOLOR SIT", + "siteRegistry": true, + "role": "AUTHOR" + } + ] }, { - "uuid": "7956b3a5-b519-44ee-b934-f2f8fdd10000", - "name": "SHELL CANADA PRODUCTS", - "endDate": "2023-02-23", - "startDate": "2013-11-10", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": false + "uuid": "bbfc121b-3d7d-4bd7-860d-68c60a8c19eb", + "siteRegistry": false, + "documentDate": "2019-03-18", + "receivedDate": "2023-05-02", + "uploadedDate": "2020-03-29", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "afc96846-ff3c-478a-a645-a8cda0d6c3e0", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": false, + "role": "AUTHOR" + } + ] } ], "suspectLandUses": [ { - "uuid": "bb7b6327-0c72-459a-bf3c-4d44609589e1", + "uuid": "03dabacb-7bf0-4f3e-8147-141160e54abe", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2021-11-06 (described on Site Profile dated 2021-11-06)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "uuid": "25056f36-368e-4669-978d-dbe52bec0652", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-12-15 (described on Site Profile dated 2016-12-15)", + "notes": "INSERTED FOR SITE PROFILE DATED 2014-07-30 (described on Site Profile dated 2014-07-30)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "uuid": "99a5337a-5351-4f32-a6ba-93116bb285e1", + "uuid": "3703a360-b810-4062-bbd6-76b6dfcc835f", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-10-16 (described on Site Profile dated 2014-10-16)", + "notes": "INSERTED FOR SITE PROFILE DATED 2014-04-12 (described on Site Profile dated 2014-04-12)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], "parcelDescriptions": [ { - "uuid": "f8c01492-f3aa-4f90-8a3c-6b3b2a329f62", + "uuid": "25f5dbfa-5106-44e8-8d1d-dc6c1c01742f", "siteRegistry": false, - "dateNoted": "2020-02-24", - "parcelID": "15697", - "crownLandUsePIN": "16607", - "crownLandFileNumber": "19271", - "landDescription": "LOT 5 OF LOT 4 BLOCK 3 DISTRICT LOT 3 PLAN 5464" + "dateNoted": "2015-08-23", + "parcelID": "18087", + "crownLandUsePIN": "16316", + "crownLandFileNumber": "19574", + "landDescription": "LOT 2 OF LOT 3 BLOCK 5 DISTRICT LOT 1 PLAN 6518" }, { - "uuid": "b5caa230-0c2a-4c63-999a-26240a854c28", - "siteRegistry": true, - "dateNoted": "2022-05-25", - "parcelID": "19342", - "crownLandUsePIN": "17208", - "crownLandFileNumber": "17593", - "landDescription": "LOT 1 OF LOT 2 BLOCK 5 DISTRICT LOT 5 PLAN 7499" + "uuid": "e8e164dd-3448-4939-9116-50dc767b53bb", + "siteRegistry": false, + "dateNoted": "2018-08-14", + "parcelID": "20976", + "crownLandUsePIN": "18318", + "crownLandFileNumber": "18865", + "landDescription": "LOT 4 OF LOT 1 BLOCK 3 DISTRICT LOT 3 PLAN 4655" }, { - "uuid": "b206197f-825c-45da-9e29-29cdcf245d18", + "uuid": "80145fdd-c6de-4660-a202-0430bf92e40b", "siteRegistry": true, - "dateNoted": "2016-01-09", - "parcelID": "17946", - "crownLandUsePIN": "16789", - "crownLandFileNumber": "20555", - "landDescription": "LOT 4 OF LOT 2 BLOCK 2 DISTRICT LOT 1 PLAN 9541" + "dateNoted": "2016-05-10", + "parcelID": "20457", + "crownLandUsePIN": "18580", + "crownLandFileNumber": "18244", + "landDescription": "LOT 1 OF LOT 4 BLOCK 3 DISTRICT LOT 5 PLAN 7363" + }, + { + "uuid": "1dc60da0-b9ba-482f-818e-f41995fb9e66", + "siteRegistry": false, + "dateNoted": "2019-02-25", + "parcelID": "16798", + "crownLandUsePIN": "15377", + "crownLandFileNumber": "16322", + "landDescription": "LOT 5 OF LOT 5 BLOCK 5 DISTRICT LOT 3 PLAN 5112" } ], "siteDisclosures": [ { - "uuid": "7e064dea-5ed8-470e-af68-545fc428cb42", + "uuid": "82d7a98f-e1e6-4f5f-86dd-aea44b071ae7", + "siteRegistry": true, + "dateReceived": "2019-10-26", + "dateCompleted": "2020-08-28", + "dateEntered": "2023-03-08", + "dateRegistrar": "2020-02-10", + "dateLocalAuthorityReceived": "2015-10-15", + "summary": "Fuga aut ab.\nEarum vitae sapiente consequatur odit.", + "informationUsed": "Perspiciatis fugit optio.\nQuasi nulla omnis provident distinctio cumque.\nNeque quae magni molestiae dolorum distinctio dolore ea suscipit ut.\nAccusantium sint accusamus assumenda placeat doloremque explicabo rerum itaque.", + "pastOrPresentOrders": "Consectetur consectetur quam distinctio reprehenderit ipsa hic quidem architecto.", + "commercialAndIndustrialPurposes": [ + { + "uuid": "cf689015-e8f1-4ef9-b12e-257fc3a2bd73", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "uuid": "b7469b01-a3d7-4bb2-bc02-e43c5b84d760", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "uuid": "42993d63-def3-4507-a558-a20b76ed07b2", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + } + ] + }, + { + "uuid": "ad0e3490-513d-49ef-b5cb-ea459c351c6e", "siteRegistry": false, - "dateReceived": "2022-11-02", - "dateCompleted": "2016-11-17", - "dateEntered": "2014-09-16", - "dateRegistrar": "2019-09-09", - "dateLocalAuthorityReceived": "2018-03-09", - "summary": "Illum laboriosam temporibus vitae facere eveniet.\nEius odio inventore libero occaecati nisi.", - "informationUsed": "Dolor a iusto.\nDicta accusantium minus occaecati.\nEum atque aliquam iste voluptates inventore quia labore consectetur.\nOfficiis aspernatur beatae non corrupti voluptatibus.\nDolores libero molestias.", - "pastOrPresentOrders": "Aliquam odio eveniet commodi eum fuga quo vitae natus tempora.\nTempora expedita excepturi ab aliquid placeat repudiandae beatae.", + "dateReceived": "2017-05-07", + "dateCompleted": "2022-12-21", + "dateEntered": "2014-04-09", + "dateRegistrar": "2023-10-05", + "dateLocalAuthorityReceived": "2020-02-25", + "summary": "Earum aspernatur saepe deleniti et aperiam recusandae tempore alias ullam.\nRerum qui harum reprehenderit aspernatur voluptas consequuntur eius natus nostrum.\nEnim non fugit aliquid facere.", + "informationUsed": "Blanditiis tenetur odio repudiandae sapiente quo ipsa consequatur esse enim.\nCum aut repellat quaerat atque.\nQuae laboriosam maiores facere fuga rem debitis beatae explicabo.", + "pastOrPresentOrders": "Sequi quisquam temporibus inventore repellendus.\nPerspiciatis ea nesciunt nulla eius.\nDoloribus facere eaque aut consectetur doloribus doloremque error.", "commercialAndIndustrialPurposes": [ { - "uuid": "2a002eab-1b76-463f-84c7-7d975a4e1c30", + "uuid": "1566e237-9187-4a31-840a-7b3fff87ad9f", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "uuid": "3de2e195-48e2-46ad-8125-519e8914667e", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true + "siteRegistry": true + }, + { + "uuid": "341d17d1-0cb3-485b-a0e5-99daea20a03c", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false }, { - "uuid": "d97a9195-969b-44c2-9c43-9a5de4c2dbff", + "uuid": "27400dc7-8856-4d9a-b71a-bccdafda49bb", "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true } ] } ], "activityLog": [ { - "uuid": "9d00f2d4-0a79-4d57-8144-336566843746", - "siteRegistry": false, + "uuid": "a1a8b8b1-ad25-4a6c-b1c9-8ccf8d1b81bd", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "KING MARIO", - "timestamp": "2019-04-08" + "user": "SCHIMMEL PHYLLIS", + "timestamp": "2023-03-23" }, { - "uuid": "5dc5ec44-653e-4781-980d-5ddc2a6026e5", - "siteRegistry": true, + "uuid": "98709e9e-d156-4899-a635-98be40182d57", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "BLOCK REYNOLD", - "timestamp": "2018-09-05" + "user": "SAUER-KERTZMANN MARC", + "timestamp": "2016-11-22" }, { - "uuid": "99b919b1-a670-4d57-9bad-6139f9bd1d06", + "uuid": "61e3d1ff-2f8f-4123-a3d3-353fdad6e0a5", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "WAELCHI CAMILLE", - "timestamp": "2019-10-26" + "user": "MAGGIO HOSEA", + "timestamp": "2022-02-13" }, { - "uuid": "6fa464df-3a58-42b4-87af-826c93c67f99", + "uuid": "0e4c34a9-4098-4e35-ad2f-268331d998af", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "STARK TAMARA", - "timestamp": "2022-11-28" + "user": "FAY MARCOS", + "timestamp": "2017-08-16" }, { - "uuid": "d4921585-f3cd-4873-be6e-dbf607661a2d", + "uuid": "2950f0b6-f05c-4c07-8a14-239cb74c6e7d", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "HARBER AISHA", - "timestamp": "2014-05-30" + "user": "VEUM CLEMMIE", + "timestamp": "2017-02-23" } ], "associatedSites": [ { - "uuid": "17cf43d7-8f6b-4084-927b-980db6e84e60", - "dateNoted": "2017-11-10", + "uuid": "c8796934-5c32-48f8-9786-60387783efc8", + "dateNoted": "2021-04-06", "notes": "", - "parcelID": "18595", - "siteID": "17972", - "siteRegistry": false + "parcelID": "20136", + "siteID": "18797", + "siteRegistry": true } ] }, { - "uuid": "f62f3b04-39e8-4829-8df5-67e1bcd53bdd", - "siteID": 18311, - "address": "9923 Bria Corner", - "latitude": 53.044, - "longitude": -130.0047, - "lastUpdated": "2015-04-20", - "city": "North Amberside", - "region": "Cariboo", - "victoriaFile": "26250-20/6373", + "uuid": "1b63dcdb-d521-4141-8ec9-3917a4d729e3", + "siteID": 15776, + "address": "3796 Kylee Way", + "latitude": 51.2487, + "longitude": -123.4507, + "lastUpdated": "2019-12-12", + "city": "South Jayboro", + "region": "Mainland/Southwest", + "victoriaFile": "26250-20/17673", "regionalFile": "N/A", "parcelIDs": [ - 1533289, - 8655837, - 8356189, - 7189939, - 8128617 + 7899989, + 4537829, + 7959117, + 2173909, + 8533097 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "19ae3371-8e5e-4fbe-9482-098e1f32e440", - "createdAt": "2021-09-22", - "completed": "2018-12-05", - "initiated": "2019-10-05", - "ministryContact": "HAGENES TIANA", + "uuid": "348161ca-36d6-43fa-ad9b-d7b702a4029a", + "createdAt": "2020-08-15", + "completed": "2022-12-16", + "initiated": "2022-09-04", + "ministryContact": "NADER SELMER", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -78672,72 +92807,44 @@ ], "notationParticipants": [ { - "uuid": "93c2787b-665d-438a-a8bd-f4360fe3dfe1", - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "uuid": "e81a0040-042e-4956-84ad-dce393da6d17", - "name": "SHELL CANADA PRODUCTS", + "uuid": "45fbae76-33de-4f7a-9a57-fc8162778604", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true }, { - "uuid": "86845b9b-5e91-48d2-88b9-776a5a168d8f", - "name": "SHELL CANADA PRODUCTS", + "uuid": "69f314cb-e4ec-4e00-a173-52be08b9bac6", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "uuid": "d720f726-b6ab-4fbb-9fcf-df2ccb93522c", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - } - ], - "siteRegistry": false - }, - { - "uuid": "87d4b941-2a7d-41f4-a094-e89ee0f43e05", - "createdAt": "2018-06-21", - "completed": "2014-11-18", - "initiated": "2020-10-01", - "ministryContact": "HERMISTON AIDA", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "uuid": "1c35eb8c-2b6b-4fe1-97af-836d053ae011", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", "siteRegistry": false }, { - "uuid": "17ea3f07-f001-40e4-ba8c-4e6c36c28324", + "uuid": "9d77f5e8-c7c1-4152-9f36-fe4f53e273eb", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "e8d55b8e-f2f3-4d37-b431-7e5ccd0d84c9", + "uuid": "27cd6abe-3a40-4a82-96a7-035c0dca57c0", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true + }, + { + "uuid": "f664d04a-4eda-4023-a0af-bf589c73d0d3", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true } ], "siteRegistry": false }, { - "uuid": "e7131dd5-add7-4a8b-835e-ced6522109f0", - "createdAt": "2016-10-12", - "completed": "2016-05-15", - "initiated": "2023-05-24", - "ministryContact": "GERHOLD AUBREY", + "uuid": "8fd45666-1e89-43d8-b0ea-9dbb068ef05b", + "createdAt": "2022-06-28", + "completed": "2016-03-13", + "initiated": "2017-05-15", + "ministryContact": "WOLFF MATEO", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -78746,32 +92853,38 @@ ], "notationParticipants": [ { - "uuid": "5bea92ca-471d-4c34-8b1f-fba50255aca6", + "uuid": "51bb2436-a695-464c-84e2-4fdc784d18e6", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "165fb1dd-6fad-4c40-853a-8b1a98745587", + "uuid": "9fa1b457-eece-4f4b-ad81-ac0d933d0398", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true }, { - "uuid": "bd68ecdf-cd1a-47b8-aa86-209526a1f104", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "uuid": "5ff0e1e5-eaba-4591-9aea-d70a96c04d97", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "30043d4f-309e-40c6-bf6d-5499179e18fe", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "9819445d-6875-4498-bd7f-5147830e17e5", - "createdAt": "2019-12-14", - "completed": "2016-09-19", - "initiated": "2016-07-30", - "ministryContact": "KUHLMAN MIKE", + "uuid": "9298f768-6319-47ac-acb4-6cf6fe8dc4cd", + "createdAt": "2019-04-06", + "completed": "2018-07-19", + "initiated": "2022-12-22", + "ministryContact": "BEER JESSE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -78780,28 +92893,28 @@ ], "notationParticipants": [ { - "uuid": "b6507c3d-5bd0-4925-998a-269bc8e5aad7", + "uuid": "4814d35f-006a-4537-b1aa-b85def6e39a5", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "be4268df-ed55-4e17-befd-6006b37f0ecd", + "uuid": "d4c169ba-8273-45b2-9190-bd99c4b495e3", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "021c685d-e54b-4a45-b79b-dfe36581eae0", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false + "uuid": "3a57babb-3504-424a-9882-e24d8c959792", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true }, { - "uuid": "07b0cc62-7ff8-49d4-bfc6-93d80aefe205", + "uuid": "10ab6f8d-b916-4fc6-882d-3d348d378b35", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true + "role": "SUBMITTED BY", + "siteRegistry": false } ], "siteRegistry": true @@ -78809,10 +92922,10 @@ ], "participants": [ { - "uuid": "4db3a779-115b-42cd-bcfa-d7b74ae24ec1", - "name": "IPSUM", - "endDate": "2017-09-17", - "startDate": "2014-09-22", + "uuid": "7b1d5c87-39d5-4108-9c06-f9b4b842baf0", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2018-11-03", + "startDate": "2016-04-04", "notes": "", "roles": [ "ORGANIZATION" @@ -78820,122 +92933,260 @@ "siteRegistry": false }, { - "uuid": "6e5ae133-c796-46c0-9248-f506d35aa6a5", - "name": "AMET, DOLOR SIT", - "endDate": "2022-07-13", - "startDate": "2014-10-13", + "uuid": "02a5d74c-759b-445f-adb4-322357be0d91", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2021-04-15", + "startDate": "2020-08-27", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "uuid": "e5fbcc7a-bd1f-4deb-92ba-20255f5279bc", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2023-03-29", + "startDate": "2019-02-03", "notes": "", "roles": [ "ORGANIZATION" ], "siteRegistry": true + }, + { + "uuid": "4b1353bc-6c6d-48a8-9d96-08f3763d9798", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2017-08-07", + "startDate": "2019-04-28", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true } ], - "suspectLandUses": [ + "documents": [ { - "uuid": "51717593-0b17-4507-a413-ce8a92d351df", + "uuid": "ba191175-7672-408e-829b-0c7f6f48eee0", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-06-07 (described on Site Profile dated 2016-06-07)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "documentDate": "2017-07-27", + "receivedDate": "2021-01-10", + "uploadedDate": "2016-08-28", + "title": "Preliminary Site Investigation, Detailed Site Investigation and Remedial Plan for the Management Area adjacent to the Shell Site at 1503 West 41st Ave", + "participants": [ + { + "uuid": "1bbd1ac7-4023-4c29-8992-f6bedbed0658", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "2bacc61e-b6eb-403c-a62d-808ec1e192b9", + "name": "IPSUM", + "siteRegistry": false, + "role": "AUTHOR" + } + ] }, { - "uuid": "d2947123-9e47-4327-96d8-8112ab04e31c", - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2023-03-27 (described on Site Profile dated 2023-03-27)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "uuid": "bf92bdac-fa1f-4bc4-ac9d-1b516960eb62", + "siteRegistry": true, + "documentDate": "2016-09-16", + "receivedDate": "2019-10-15", + "uploadedDate": "2016-06-12", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "dc3b8868-dfbb-4c3f-9f8f-60ff6b1afbd3", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "d0fa8d48-e390-4248-99f2-555ab4948508", + "name": "AMET, DOLOR SIT", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "5ee09bc7-39b1-423d-ada6-27fcda867575", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": false, + "role": "AUTHOR" + } + ] }, { - "uuid": "e0daffe1-a200-4f49-a273-75dd26e7016b", + "uuid": "94b7a764-7bd3-4dec-a0ab-26eeb1752359", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2020-09-04 (described on Site Profile dated 2020-09-04)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "documentDate": "2017-08-28", + "receivedDate": "2018-07-17", + "uploadedDate": "2016-08-05", + "title": "Preliminary Site Investigation, Detailed Site Investigation and Remedial Plan for the Management Area adjacent to the Shell Site at 1503 West 41st Ave", + "participants": [ + { + "uuid": "9876a088-73bc-4673-a78c-89333a214485", + "name": "IPSUM", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "9625a07c-ffcb-4615-88f2-e9c8c7bfb658", + "name": "IPSUM", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "4cf62ed6-5cf6-45d7-9a4a-9d585403eb64", + "name": "AMET, DOLOR SIT", + "siteRegistry": true, + "role": "AUTHOR" + } + ] }, { - "uuid": "c1de377d-d670-48e1-bf89-433c3f3ac466", + "uuid": "6d46617d-ecfd-4461-aec7-ff0c276e2d35", + "siteRegistry": false, + "documentDate": "2017-11-07", + "receivedDate": "2020-12-21", + "uploadedDate": "2022-06-13", + "title": "Preliminary Site Investigation, Detailed Site Investigation and Remedial Plan for the Management Area adjacent to the Shell Site at 1503 West 41st Ave", + "participants": [ + { + "uuid": "194f031a-121f-49c3-b0dc-fac1dae2db99", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "aeb9a309-2888-427c-9e50-2dd80711371c", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": true, + "role": "AUTHOR" + } + ] + } + ], + "suspectLandUses": [ + { + "uuid": "91b675e9-580e-4c42-aa7d-853492b66d10", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-01-15 (described on Site Profile dated 2015-01-15)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "notes": "INSERTED FOR SITE PROFILE DATED 2016-04-04 (described on Site Profile dated 2016-04-04)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "uuid": "30255325-772d-4e82-9a85-d19d827a2d57", + "uuid": "fe8784ff-3caf-434c-8588-5f57d85774b8", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-09-04 (described on Site Profile dated 2017-09-04)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "notes": "INSERTED FOR SITE PROFILE DATED 2014-07-02 (described on Site Profile dated 2014-07-02)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], "parcelDescriptions": [ { - "uuid": "dadb2365-0db3-4925-8a8a-2bb94f4f7ae8", + "uuid": "7044f23b-7c63-4d34-bee4-6b76c34100b5", "siteRegistry": true, - "dateNoted": "2014-11-23", - "parcelID": "16343", - "crownLandUsePIN": "17091", - "crownLandFileNumber": "16241", - "landDescription": "LOT 4 OF LOT 3 BLOCK 1 DISTRICT LOT 5 PLAN 6117" + "dateNoted": "2013-10-26", + "parcelID": "19346", + "crownLandUsePIN": "16815", + "crownLandFileNumber": "15431", + "landDescription": "LOT 5 OF LOT 5 BLOCK 4 DISTRICT LOT 4 PLAN 8492" }, { - "uuid": "35585634-2e0a-4a1b-b62c-9350fb8db3ca", - "siteRegistry": false, - "dateNoted": "2020-08-14", - "parcelID": "16436", - "crownLandUsePIN": "15581", - "crownLandFileNumber": "15256", - "landDescription": "LOT 3 OF LOT 5 BLOCK 2 DISTRICT LOT 5 PLAN 6438" + "uuid": "e89cc9b1-1e3b-4874-b323-36a8979bcdc0", + "siteRegistry": true, + "dateNoted": "2020-03-21", + "parcelID": "18674", + "crownLandUsePIN": "17568", + "crownLandFileNumber": "20071", + "landDescription": "LOT 2 OF LOT 5 BLOCK 4 DISTRICT LOT 3 PLAN 5225" }, { - "uuid": "7dcd45c5-1d8f-45a5-8dd5-abff0e5431d5", + "uuid": "02360ee2-49c1-4b67-ba62-e07ab1432e74", "siteRegistry": false, - "dateNoted": "2023-01-12", - "parcelID": "16168", - "crownLandUsePIN": "16607", - "crownLandFileNumber": "20721", - "landDescription": "LOT 4 OF LOT 3 BLOCK 2 DISTRICT LOT 1 PLAN 8248" + "dateNoted": "2021-08-09", + "parcelID": "15921", + "crownLandUsePIN": "18158", + "crownLandFileNumber": "15640", + "landDescription": "LOT 1 OF LOT 2 BLOCK 1 DISTRICT LOT 5 PLAN 3467" }, { - "uuid": "b8db2087-bec1-4807-a1a7-37e0426c174e", + "uuid": "2d424383-778f-4921-b409-c766fe2b43d0", "siteRegistry": true, - "dateNoted": "2016-08-18", - "parcelID": "20892", - "crownLandUsePIN": "15494", - "crownLandFileNumber": "16141", - "landDescription": "LOT 1 OF LOT 1 BLOCK 4 DISTRICT LOT 4 PLAN 6811" + "dateNoted": "2018-03-08", + "parcelID": "16800", + "crownLandUsePIN": "18071", + "crownLandFileNumber": "18309", + "landDescription": "LOT 3 OF LOT 1 BLOCK 2 DISTRICT LOT 2 PLAN 9794" } ], "siteDisclosures": [ { - "uuid": "d85aa498-1872-4753-88de-1e885cd6986c", + "uuid": "c210fe03-77b2-4dad-8cfe-8872af2a1846", "siteRegistry": true, - "dateReceived": "2017-02-11", - "dateCompleted": "2020-12-18", - "dateEntered": "2014-09-25", - "dateRegistrar": "2023-07-15", - "dateLocalAuthorityReceived": "2013-12-19", - "summary": "Officiis sunt recusandae voluptate.\nHic deleniti optio vel exercitationem dicta tempore hic.", - "informationUsed": "Vitae ducimus cupiditate suscipit similique esse labore.\nQui necessitatibus animi itaque.\nError nostrum mollitia.\nExplicabo quam iure dignissimos.\nExercitationem quae ipsam voluptates non dolorum.", - "pastOrPresentOrders": "Minima quasi sequi.", + "dateReceived": "2020-05-25", + "dateCompleted": "2020-07-28", + "dateEntered": "2017-10-17", + "dateRegistrar": "2016-02-12", + "dateLocalAuthorityReceived": "2022-04-05", + "summary": "Iusto placeat optio quisquam iusto similique nobis.", + "informationUsed": "Doloribus inventore explicabo.\nAliquam officia blanditiis nulla ipsum reiciendis veniam natus.\nAssumenda atque eum vitae perspiciatis quod accusamus saepe iste.", + "pastOrPresentOrders": "Laboriosam numquam voluptates atque eaque eius nisi iusto fugit.\nSimilique sunt minus reiciendis omnis.\nCommodi vitae veritatis.", "commercialAndIndustrialPurposes": [ { - "uuid": "99290bb4-937a-4d5b-aec3-89b3318a1e95", + "uuid": "6f1a3653-9d65-4587-8d44-27ebacf35f16", "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "uuid": "f8f8fea4-0f2d-4321-a5d3-421c6f9e6b46", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "uuid": "c763f757-2ba7-4221-9756-4772aa5dca16", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true + } + ] + }, + { + "uuid": "becad1de-d427-431e-a98d-743df18e6ae9", + "siteRegistry": false, + "dateReceived": "2022-12-08", + "dateCompleted": "2019-01-21", + "dateEntered": "2014-11-01", + "dateRegistrar": "2021-09-10", + "dateLocalAuthorityReceived": "2018-06-22", + "summary": "Molestias consectetur vel modi ratione expedita officiis inventore.\nTotam ipsum reprehenderit tempore accusantium officiis nemo error reprehenderit.", + "informationUsed": "Mollitia architecto cumque reiciendis voluptatibus voluptatibus atque architecto nemo.\nEa excepturi animi aliquam id dolorem beatae eum impedit.\nVoluptates repellendus ipsum recusandae facilis.\nNisi suscipit totam aperiam quaerat error quis praesentium quis.\nLibero eaque quaerat iusto iusto eum sunt dolor maiores.", + "pastOrPresentOrders": "Neque voluptates error maxime cum asperiores.\nAb doloremque fugit libero iusto.", + "commercialAndIndustrialPurposes": [ + { + "uuid": "c6cf990e-f53d-4e1e-8fff-38865fd93ad7", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false }, { - "uuid": "41b5e496-1373-4624-aa21-1da11a6a7889", + "uuid": "4ddcd218-4f97-457f-a270-31f9c5ca5934", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false }, { - "uuid": "829ff316-7751-4858-ac96-c7e94183ec5d", - "scheduleReference": "F1*", + "uuid": "10306ea4-38e5-4000-ab27-ce703fe7b31a", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, { - "uuid": "533668c7-b323-463b-b599-36591f13013a", + "uuid": "5027db5b-9b02-4b10-8596-9e36412be0ec", "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true } ] @@ -78943,106 +93194,108 @@ ], "activityLog": [ { - "uuid": "2c2ef20f-d80d-4e30-a326-abd32f0d20f2", - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "TROMP CORDIA", - "timestamp": "2023-08-20" - }, - { - "uuid": "5d3934ec-ffae-4711-9ecf-1605e8de9056", - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "KRAJCIK TESS", - "timestamp": "2021-12-04" - }, - { - "uuid": "096e1ad4-81fb-4de2-ad32-612e6811a530", + "uuid": "b0f4ed5a-1ea5-4560-8cf6-5be10abcc960", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "SCHUSTER FELIX", - "timestamp": "2021-06-25" + "user": "HERZOG CALI", + "timestamp": "2020-07-09" }, { - "uuid": "d4fe616d-8d23-4247-a9ee-943f8144a89a", - "siteRegistry": true, + "uuid": "b5685365-6008-4581-aeea-1943ef82722c", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "WHITE WILHELM", - "timestamp": "2014-05-28" + "user": "CARTER-DIBBERT KAYLEE", + "timestamp": "2013-11-16" }, { - "uuid": "35adf96f-764e-47e9-9e3d-26a7eac1f120", + "uuid": "f91414c1-2e13-4d42-a460-477b1f01f19b", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "RUNOLFSDOTTIR REBEKAH", - "timestamp": "2016-07-19" + "user": "EMARD-ADAMS OLE", + "timestamp": "2016-05-28" }, { - "uuid": "7d57afa0-f094-4d54-b905-98bef5f6142c", + "uuid": "d619382a-ea84-42e2-9fe7-05c04ebda929", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "SCHMELER ETHA", - "timestamp": "2018-04-07" + "user": "HEANEY LYRIC", + "timestamp": "2017-01-21" }, { - "uuid": "69384d5d-4f07-4855-92e9-878719f8485a", + "uuid": "a4e379e0-b779-4a38-8ac0-c43fe64b3182", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "ZIEME THAD", - "timestamp": "2019-08-22" + "user": "HACKETT DASHAWN", + "timestamp": "2019-02-05" }, { - "uuid": "2d247c69-7fd0-42b8-9499-afc5b138e254", + "uuid": "8a238f5c-f790-48a0-a6e4-655f100ddc10", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "GREEN SIMONE", - "timestamp": "2018-12-23" + "user": "CORMIER EPHRAIM", + "timestamp": "2017-08-06" }, { - "uuid": "685e8784-6806-4b31-8720-8c9ed5b57af5", - "siteRegistry": false, + "uuid": "070b8112-3511-426f-b42f-2589f7ef8762", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "WIZA AISHA", - "timestamp": "2015-05-11" + "user": "TOY LYNN", + "timestamp": "2023-04-22" } ], "associatedSites": [ { - "uuid": "e85a5194-1a81-46e2-9092-70e9f9946b61", - "dateNoted": "2021-06-19", + "uuid": "2664217a-8697-42f3-badd-ae7040c6d394", + "dateNoted": "2016-02-06", "notes": "", - "parcelID": "19234", - "siteID": "19522", + "parcelID": "16149", + "siteID": "19485", + "siteRegistry": true + }, + { + "uuid": "83a6fecb-f4de-4ef9-8e9e-760e1f7ee01d", + "dateNoted": "2015-02-03", + "notes": "", + "parcelID": "19444", + "siteID": "18880", "siteRegistry": true + }, + { + "uuid": "e2cfd763-35ad-4698-9e38-4727049dac11", + "dateNoted": "2020-08-07", + "notes": "", + "parcelID": "15621", + "siteID": "15998", + "siteRegistry": false } ] }, { - "uuid": "f3acb45c-35d9-4298-97eb-63d478afbff7", - "siteID": 19676, - "address": "475 Koch Run", - "latitude": 57.5509, - "longitude": -135.9387, - "lastUpdated": "2018-07-30", - "city": "St. George", - "region": "Kootenay", - "victoriaFile": "26250-20/10800", + "uuid": "bc96de8f-a4ee-4e77-9e6b-4d79814120c1", + "siteID": 17471, + "address": "97582 Lizeth Lake", + "latitude": 51.6046, + "longitude": -131.1449, + "lastUpdated": "2018-10-03", + "city": "West Evieton", + "region": "Mainland/Southwest", + "victoriaFile": "26250-20/7374", "regionalFile": "N/A", "parcelIDs": [ - 548025, - 9038127, - 9333835, - 5629055, - 4736962 + 8476859, + 3209442, + 785090, + 1376184, + 1263992 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "4e6522b8-9c6e-4590-8ef3-d851f25a78ba", - "createdAt": "2018-07-28", - "completed": "2016-04-24", - "initiated": "2019-04-17", - "ministryContact": "VON CARA", + "uuid": "2e350fe5-51ed-40b3-be20-85021e015007", + "createdAt": "2023-03-03", + "completed": "2017-06-01", + "initiated": "2018-12-06", + "ministryContact": "JACOBS ASHLYNN", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -79051,32 +93304,38 @@ ], "notationParticipants": [ { - "uuid": "c4c4613f-8711-4e0e-aed3-609344f326a0", + "uuid": "e2e3b915-12b4-49c9-9adb-a4da1f60a6cb", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "uuid": "49e97055-95e2-441b-a04a-370a5f6a91e8", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", "siteRegistry": false }, { - "uuid": "aafedb80-f123-4706-90e2-117cc1b81a4c", + "uuid": "8584f94f-6280-41c1-ba92-66fe6b726b0c", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "9b104b0d-a0d0-4b19-bec9-637c1e8cf13e", + "uuid": "b9d71490-c460-45a6-af0f-dcdf90fe7291", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false + "role": "SUBMITTED BY", + "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "c6d166c0-081a-46cb-aef0-18faef1c9c2d", - "createdAt": "2021-11-24", - "completed": "2020-01-04", - "initiated": "2017-01-21", - "ministryContact": "GERHOLD ADOLPHUS", + "uuid": "fd0c0bf0-2c6a-4eb8-98ab-181718a37225", + "createdAt": "2017-02-24", + "completed": "2016-05-30", + "initiated": "2023-07-28", + "ministryContact": "CHAMPLIN DESTINY", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -79085,32 +93344,38 @@ ], "notationParticipants": [ { - "uuid": "46110019-74b3-4958-8a5c-e42245545f3c", - "name": "SHELL CANADA PRODUCTS", + "uuid": "196d6369-ef42-46a1-a88f-9afcad96415b", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "uuid": "40bfd125-0816-4960-b602-8a9af36dbb58", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "99d6d186-5791-4ba3-821c-914315069256", - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "uuid": "c0c77269-bcad-45a3-bbb1-ac8b9560954f", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "a8ef8722-dba2-409c-ba76-25f57e31f5df", + "uuid": "747862aa-4b60-44f4-b962-b1cd7ad4a896", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "48cae2e6-460d-45db-841b-ec18ca3b8c35", - "createdAt": "2018-05-24", - "completed": "2015-12-16", - "initiated": "2017-11-25", - "ministryContact": "BARTELL TRUDIE", + "uuid": "d838a406-cac4-4861-8519-7c976e7b97cd", + "createdAt": "2023-07-28", + "completed": "2021-01-18", + "initiated": "2021-12-16", + "ministryContact": "SWIFT-GLEICHNER TAUREAN", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -79119,44 +93384,26 @@ ], "notationParticipants": [ { - "uuid": "b5aa2d93-b902-41ee-a449-a1cfee4202f2", + "uuid": "d313ff0d-ce46-48c0-8416-f43e0cd97236", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "uuid": "8099adbc-02cd-4e7b-b230-be1468797cd8", - "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "68a5bb8b-078c-4797-9112-3634165d57af", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "uuid": "53179c03-92fe-451d-b056-8391913d5562", + "uuid": "e5470f56-1fb6-457e-86f3-cfc7104dda73", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "uuid": "a4f93225-36de-4123-9114-6c097b646767", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "55e9c41f-142f-421c-95f2-cfd68396863a", - "createdAt": "2014-04-29", - "completed": "2015-10-13", - "initiated": "2023-08-22", - "ministryContact": "HOEGER JARED", + "uuid": "ecb3947b-f671-461f-b923-9027c38a40ee", + "createdAt": "2019-10-03", + "completed": "2016-05-16", + "initiated": "2018-07-10", + "ministryContact": "JACOBI ROSELLA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -79165,27 +93412,21 @@ ], "notationParticipants": [ { - "uuid": "e3297302-e80a-4b35-a8dd-1c7ebc299072", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "uuid": "518d8b6b-7b76-4ec6-974f-a090596f8fc4", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "b3e4468a-4252-4b52-a3a4-86a2e3fbdd38", + "uuid": "3be8ea89-2117-45d7-adba-211d32e2b065", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "uuid": "00028a49-53a4-4cfa-8826-e5b6a97e5101", - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", "siteRegistry": true }, { - "uuid": "97f9cd3a-3cd0-477e-b1f7-269a2f7421e4", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "uuid": "32fc0355-2a2e-4622-8e59-c8945dbb75f1", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": false } ], @@ -79194,21 +93435,10 @@ ], "participants": [ { - "uuid": "e6f78888-e9ed-4c3f-947e-5ade027bc502", - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2014-05-23", - "startDate": "2021-01-23", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": true - }, - { - "uuid": "1698c6a5-22b1-48b6-9067-78e2b6640dff", - "name": "IPSUM", - "endDate": "2023-05-09", - "startDate": "2021-06-25", + "uuid": "836a9aac-0a66-4a70-8acf-5ee2f156c747", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2021-09-11", + "startDate": "2016-02-15", "notes": "", "roles": [ "EMPLOYEE" @@ -79216,10 +93446,10 @@ "siteRegistry": false }, { - "uuid": "4f0a2e63-3d97-4903-b755-c5770cb79830", - "name": "AMET, DOLOR SIT", - "endDate": "2022-05-21", - "startDate": "2019-02-11", + "uuid": "1ce89c41-c312-477a-9ce5-588a3e8bc549", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2015-03-10", + "startDate": "2023-03-15", "notes": "", "roles": [ "ORGANIZATION" @@ -79227,131 +93457,171 @@ "siteRegistry": false }, { - "uuid": "c62febb4-1c82-450c-8ca1-68e4f408d80d", - "name": "IPSUM", - "endDate": "2013-12-02", - "startDate": "2015-02-08", + "uuid": "e78b5311-9944-4253-9809-7dea036e85b3", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2017-06-18", + "startDate": "2014-06-26", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true } ], - "suspectLandUses": [ + "documents": [ { - "uuid": "665bc137-4a7c-4b42-b67e-bec4a0b679cb", - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2020-10-13 (described on Site Profile dated 2020-10-13)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "uuid": "7fe28463-f2fd-49f0-bd98-d5a13ad2c719", + "siteRegistry": false, + "documentDate": "2020-08-20", + "receivedDate": "2018-02-22", + "uploadedDate": "2017-10-21", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "13478e98-d63d-45e6-99fb-99c1b5b55716", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "6cb3cdf2-866d-4f72-8383-22ee21a6a27a", + "name": "IPSUM", + "siteRegistry": true, + "role": "AUTHOR" + } + ] }, { - "uuid": "288be828-d6d8-4153-b320-38dddc6a253f", + "uuid": "2cea63bd-5b49-4656-bf9b-e5189671f4f8", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-03-06 (described on Site Profile dated 2019-03-06)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "documentDate": "2020-02-09", + "receivedDate": "2017-12-05", + "uploadedDate": "2015-04-20", + "title": "Preliminary Site Investigation, Detailed Site Investigation and Remedial Plan for the Management Area adjacent to the Shell Site at 1503 West 41st Ave", + "participants": [ + { + "uuid": "cc5f71d5-0bfd-4d36-a359-841368c074b7", + "name": "IPSUM", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "053377f8-aeef-4732-b4a6-1dc6c7d6282a", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": false, + "role": "AUTHOR" + } + ] } ], - "parcelDescriptions": [ + "suspectLandUses": [ { - "uuid": "a5526141-4b00-40ef-ad6c-27ff2a52f5c6", - "siteRegistry": true, - "dateNoted": "2019-03-22", - "parcelID": "19729", - "crownLandUsePIN": "20155", - "crownLandFileNumber": "18094", - "landDescription": "LOT 4 OF LOT 3 BLOCK 3 DISTRICT LOT 1 PLAN 7420" + "uuid": "9e7b24a8-540f-4309-977e-5ae64d2c0d92", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2016-05-08 (described on Site Profile dated 2016-05-08)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "uuid": "7aff26ea-23df-4b42-aaf3-fed2a7ef33cf", + "uuid": "f1ec2f17-7339-465c-a481-da87b7cb77c1", "siteRegistry": false, - "dateNoted": "2014-01-26", - "parcelID": "18568", - "crownLandUsePIN": "16788", - "crownLandFileNumber": "15766", - "landDescription": "LOT 1 OF LOT 1 BLOCK 5 DISTRICT LOT 3 PLAN 9406" + "notes": "INSERTED FOR SITE PROFILE DATED 2015-01-18 (described on Site Profile dated 2015-01-18)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "uuid": "cf6f68e0-6bd1-44ca-8725-7fd220b47c36", - "siteRegistry": true, - "dateNoted": "2018-05-17", - "parcelID": "18664", - "crownLandUsePIN": "16749", - "crownLandFileNumber": "19561", - "landDescription": "LOT 5 OF LOT 4 BLOCK 4 DISTRICT LOT 4 PLAN 6869" - }, + "uuid": "4b1e144a-1f85-4c5a-a936-fa919c3cf585", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2013-11-06 (described on Site Profile dated 2013-11-06)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + } + ], + "parcelDescriptions": [ { - "uuid": "fb80fd09-1798-40d6-8264-bd57515d9065", + "uuid": "f498cdb9-59a6-4f50-a5d7-8a72a1937065", "siteRegistry": false, - "dateNoted": "2017-08-07", - "parcelID": "17995", - "crownLandUsePIN": "20359", - "crownLandFileNumber": "19228", - "landDescription": "LOT 2 OF LOT 1 BLOCK 3 DISTRICT LOT 2 PLAN 6535" + "dateNoted": "2023-04-26", + "parcelID": "20064", + "crownLandUsePIN": "15424", + "crownLandFileNumber": "17868", + "landDescription": "LOT 5 OF LOT 1 BLOCK 4 DISTRICT LOT 4 PLAN 8395" + }, + { + "uuid": "5f64d91b-6263-4249-a88c-2878f09da10d", + "siteRegistry": true, + "dateNoted": "2021-02-15", + "parcelID": "15889", + "crownLandUsePIN": "15568", + "crownLandFileNumber": "19833", + "landDescription": "LOT 3 OF LOT 3 BLOCK 2 DISTRICT LOT 5 PLAN 9700" }, { - "uuid": "c45b41b2-318f-4c20-8ed9-c2037843825d", + "uuid": "e81132db-123b-4c1e-9e56-186bb481df44", "siteRegistry": false, - "dateNoted": "2022-07-24", - "parcelID": "16268", - "crownLandUsePIN": "20151", - "crownLandFileNumber": "20317", - "landDescription": "LOT 1 OF LOT 2 BLOCK 5 DISTRICT LOT 3 PLAN 4217" + "dateNoted": "2014-04-29", + "parcelID": "18645", + "crownLandUsePIN": "15488", + "crownLandFileNumber": "16998", + "landDescription": "LOT 1 OF LOT 2 BLOCK 5 DISTRICT LOT 2 PLAN 9401" } ], "siteDisclosures": [ { - "uuid": "071552ac-9ed5-44e0-ac0c-a3dba7f1ba9e", + "uuid": "8c31d32a-7f74-412c-a7a4-73ee7944078f", "siteRegistry": true, - "dateReceived": "2015-11-24", - "dateCompleted": "2019-02-25", - "dateEntered": "2018-04-07", - "dateRegistrar": "2020-04-21", - "dateLocalAuthorityReceived": "2019-03-21", - "summary": "Rem tempora exercitationem eligendi numquam commodi ad.\nQuasi veniam omnis quasi mollitia earum quos quisquam ab esse.\nVeritatis temporibus cupiditate cupiditate.", - "informationUsed": "Ipsum officia cumque alias autem dolorum nihil.\nFugit cumque quae.\nNulla adipisci vel eos facere consequatur.", - "pastOrPresentOrders": "Tempora distinctio officia officia vero eum voluptatem nesciunt.\nTenetur debitis culpa deserunt laudantium.", + "dateReceived": "2017-08-22", + "dateCompleted": "2017-03-16", + "dateEntered": "2021-06-13", + "dateRegistrar": "2020-11-02", + "dateLocalAuthorityReceived": "2015-03-03", + "summary": "Nam blanditiis repudiandae velit velit itaque labore cupiditate nobis blanditiis.", + "informationUsed": "Nesciunt facere vero id ratione praesentium odit.\nVitae maiores voluptatibus libero praesentium praesentium excepturi.\nReiciendis eum architecto.\nSoluta magnam quisquam facere.\nDignissimos beatae cupiditate porro ducimus eveniet.", + "pastOrPresentOrders": "Quas vitae qui voluptatum quisquam.", "commercialAndIndustrialPurposes": [ { - "uuid": "9d802d7a-d762-4d4a-90f3-6f349b2aadc0", + "uuid": "28080a2d-ff02-4d79-83a4-29747dd9a6ae", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, { - "uuid": "4f82b77f-c8d4-42ca-853c-fb8175a17efc", + "uuid": "5d49cc58-c069-4821-85d6-5b88b0500833", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "uuid": "d73c90fe-dcee-4a53-9c29-5ff19a5ddebf", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true + }, + { + "uuid": "b36c73ab-7c3b-4146-be20-1736c14f9f73", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false } ] }, { - "uuid": "2c340a78-197d-4d96-9b4b-ca66c8188283", + "uuid": "4719e412-1dee-4caf-aa08-fd7c0f3849dc", "siteRegistry": false, - "dateReceived": "2017-03-04", - "dateCompleted": "2014-07-30", - "dateEntered": "2017-06-04", - "dateRegistrar": "2019-10-01", - "dateLocalAuthorityReceived": "2015-01-04", - "summary": "Quia blanditiis error voluptate quibusdam nihil repellendus placeat tempore.\nVoluptatem deserunt maiores tenetur quisquam.\nAutem eius deserunt architecto omnis rem nostrum minima a aliquam.", - "informationUsed": "Voluptates quia quos explicabo unde perspiciatis delectus voluptatibus nisi.\nSequi reiciendis omnis unde amet atque commodi iure.\nDelectus illo praesentium culpa temporibus.\nHic saepe placeat accusamus hic.\nError architecto vero odio vitae unde esse autem.", - "pastOrPresentOrders": "Occaecati dignissimos quo culpa doloribus eos incidunt saepe blanditiis.\nRepellendus nulla blanditiis illo voluptatibus fugit nemo.\nReprehenderit ratione repudiandae perferendis.", + "dateReceived": "2016-11-15", + "dateCompleted": "2019-03-05", + "dateEntered": "2023-09-22", + "dateRegistrar": "2023-09-05", + "dateLocalAuthorityReceived": "2021-11-16", + "summary": "Earum expedita porro commodi minus amet omnis laborum quasi sit.\nDignissimos optio fugit libero commodi veritatis sint.", + "informationUsed": "Occaecati dolore necessitatibus a aperiam vitae minima dignissimos.\nOdit quam eius eveniet culpa vitae eum non placeat.\nTempora facilis ipsa ut in.\nOfficiis ipsam tempora reiciendis doloribus placeat quam incidunt natus.", + "pastOrPresentOrders": "Ipsam voluptates quam beatae.", "commercialAndIndustrialPurposes": [ { - "uuid": "e8821b64-6551-4f0b-a73c-1314c4a23045", - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false - }, - { - "uuid": "7e62fa2f-0376-40dd-861c-d7353b32713c", + "uuid": "27594961-9c75-40bc-b200-efc478b62691", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, { - "uuid": "09cd53f5-a664-42f0-8131-d66855c89db6", + "uuid": "bb202154-24fa-4295-9bff-c9dd5e3cd36a", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false @@ -79361,106 +93631,93 @@ ], "activityLog": [ { - "uuid": "02855e0f-332e-4bd6-b639-ab06ad380fba", - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "LEBSACK PRINCE", - "timestamp": "2017-12-05" - }, - { - "uuid": "675cefb5-1383-487e-82a6-d6c56a83f72e", - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "KEEBLER EASTON", - "timestamp": "2021-08-04" - }, - { - "uuid": "879107fe-a31f-45c5-9c30-ba0bb45d2d96", - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "BEIER EDUARDO", - "timestamp": "2018-06-13" - }, - { - "uuid": "b861ed32-32bd-48be-8eab-794298c4e885", + "uuid": "f54161b1-841a-4960-9f0f-73dc2dc29232", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "WEISSNAT ANGELO", - "timestamp": "2023-07-27" + "user": "ABSHIRE PETRA", + "timestamp": "2016-01-27" }, { - "uuid": "a62dc01a-e3d7-42c8-aa97-2604902a6726", - "siteRegistry": false, + "uuid": "45b0b401-e854-4d6e-85e5-48b70110371d", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "WEHNER MAUDE", - "timestamp": "2016-05-21" + "user": "BAUMBACH LEA", + "timestamp": "2022-06-06" }, { - "uuid": "8ddae228-5515-4eca-b4a7-9671b9a998a5", + "uuid": "9e02067a-d60d-4fd6-83cf-7570ae33887e", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "NADER KEATON", - "timestamp": "2015-01-30" + "user": "ROOB ZELDA", + "timestamp": "2015-06-07" }, { - "uuid": "c6d51077-03a1-40e6-8346-b61d4b703a4a", + "uuid": "72097a62-1179-4bf9-818f-20d128770e47", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "SIMONIS VITA", - "timestamp": "2020-07-17" + "user": "DIBBERT JORDYN", + "timestamp": "2016-04-19" }, { - "uuid": "70d2c362-4cfa-4c5b-a023-d84c5d5897cc", - "siteRegistry": true, + "uuid": "0c7ba067-f92c-4e1b-bf48-c84bb47fbe73", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "DAUGHERTY SHANNON", - "timestamp": "2020-12-08" + "user": "JOHNSON TRINITY", + "timestamp": "2015-09-06" }, { - "uuid": "cf70b359-0269-47f8-bcee-798f8b30648f", - "siteRegistry": false, + "uuid": "e94a69e6-6a04-4474-b70f-084f33cb944f", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "CARROLL CONRAD", - "timestamp": "2022-04-11" + "user": "LUBOWITZ DEMARCUS", + "timestamp": "2022-06-30" } ], "associatedSites": [ { - "uuid": "13f9d99f-8cd7-414a-99aa-2eccf6a5478d", - "dateNoted": "2015-05-19", + "uuid": "7f9584da-0d95-4768-b469-2cec62b586d8", + "dateNoted": "2020-07-14", + "notes": "", + "parcelID": "15840", + "siteID": "17107", + "siteRegistry": false + }, + { + "uuid": "b92272bd-02e1-4581-b451-d3e2ccb1b60a", + "dateNoted": "2017-05-19", "notes": "", - "parcelID": "16833", - "siteID": "15852", - "siteRegistry": true + "parcelID": "20872", + "siteID": "17993", + "siteRegistry": false } ] }, { - "uuid": "486eca83-e9a6-4bf0-9bc5-de7d21a6e564", - "siteID": 20699, - "address": "8149 Oleta Light", - "latitude": 53.0039, - "longitude": -130.0363, - "lastUpdated": "2017-03-10", - "city": "Beavercreek", - "region": "Cariboo", - "victoriaFile": "26250-20/19678", + "uuid": "5e70ef95-6305-46a0-80b8-966dbd2ce05b", + "siteID": 18494, + "address": "525 Lonnie Center", + "latitude": 57.5715, + "longitude": -132.3033, + "lastUpdated": "2021-10-11", + "city": "North Miami", + "region": "Thompson-Okanagan", + "victoriaFile": "26250-20/8496", "regionalFile": "N/A", "parcelIDs": [ - 9379976, - 1084805, - 8318694, - 6273562, - 2760397 + 8559070, + 403797, + 3734815, + 7724698, + 239933 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "ccd2a10c-4835-440a-ada7-61bac08f6182", - "createdAt": "2014-07-07", - "completed": "2021-06-07", - "initiated": "2014-11-17", - "ministryContact": "PROHASKA ODIE", + "uuid": "5177f18e-8264-4098-9008-ddece1b07b30", + "createdAt": "2019-11-20", + "completed": "2023-06-05", + "initiated": "2019-06-08", + "ministryContact": "OBERBRUNNER DARON", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -79469,32 +93726,38 @@ ], "notationParticipants": [ { - "uuid": "24508c23-71ee-4e4c-bff5-0d50168073d3", - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "c8df9cbf-5533-459b-8bac-13a75275a8bb", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "9872d24c-9d77-4002-b042-b1e7e0b8425d", - "name": "SHELL CANADA PRODUCTS", + "uuid": "bad4cb03-8426-4ef5-b2f7-a9e595ce7212", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "a07d52c3-0fbc-4cdc-98d5-f743ccbef8dd", + "uuid": "3e2550e8-5163-4b74-94b9-6ced9478fc73", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true + }, + { + "uuid": "6a8262b0-eaaf-4212-86a5-9fc058473db4", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "a9625a67-78f5-497b-bc7c-b5c41d46defa", - "createdAt": "2022-06-27", - "completed": "2015-11-11", - "initiated": "2019-10-16", - "ministryContact": "ROLFSON KAYA", + "uuid": "ff0ccf26-d746-4452-9949-4c7b1ca30fb3", + "createdAt": "2017-07-21", + "completed": "2023-09-01", + "initiated": "2014-09-08", + "ministryContact": "JASKOLSKI-ZIEMANN SELINA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -79503,50 +93766,56 @@ ], "notationParticipants": [ { - "uuid": "c09898d2-d177-4f88-8c0e-a8a57596f5e3", + "uuid": "7c7ce860-9f4a-4da3-a536-88c2e673a9c6", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "e59747f4-c3f1-449b-8dbf-b29c677c6946", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "13629c71-98a5-49e6-af2e-a01b233c9254", + "uuid": "d6ef364d-3eaf-4194-a23c-bc94df632def", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "1c9cebed-6679-4866-b442-9fde197c41d3", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false + "uuid": "7088e9bb-d353-40c2-beb7-17468887d1e2", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true }, { - "uuid": "b068a4dd-4bc0-436c-815a-718d3253e3c9", - "name": "SHELL CANADA PRODUCTS", + "uuid": "240f3680-1600-432d-be88-015ac8f56aab", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true } ], "participants": [ { - "uuid": "c6d85433-9940-4e4f-accd-2ff2e58d2eee", - "name": "IPSUM", - "endDate": "2014-04-12", - "startDate": "2023-05-25", + "uuid": "48d9eff5-a2eb-4fab-8ad9-ce29ab7aaffc", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2022-07-20", + "startDate": "2016-10-13", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "07ff81c0-87c6-452a-8b48-71801da179b1", + "uuid": "548ce80c-eabe-4689-9cde-370998c55ca2", "name": "SHELL CANADA PRODUCTS", - "endDate": "2019-12-21", - "startDate": "2015-12-18", + "endDate": "2023-03-16", + "startDate": "2020-04-29", "notes": "", "roles": [ "EMPLOYEE" @@ -79554,103 +93823,164 @@ "siteRegistry": false }, { - "uuid": "3dddd917-f3a7-4c14-9777-7ab36154af10", + "uuid": "d672fd21-ec9f-4ddc-b920-d3b3d43f03c0", "name": "SHELL CANADA PRODUCTS", - "endDate": "2017-08-17", - "startDate": "2021-04-02", + "endDate": "2019-09-13", + "startDate": "2017-02-17", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "uuid": "72393924-43e6-4f3b-bde1-f7b331a474f0", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2016-12-22", + "startDate": "2014-10-24", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true } ], - "suspectLandUses": [ + "documents": [ { - "uuid": "5c3d688c-9a9f-4518-86af-feaeef8245a5", - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-05-30 (described on Site Profile dated 2021-05-30)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "uuid": "87eec1ac-ed0d-4ea2-af6d-a086d6c5df3d", + "siteRegistry": false, + "documentDate": "2014-04-03", + "receivedDate": "2016-07-21", + "uploadedDate": "2020-07-17", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "f600dbe1-f0c0-41cc-9806-549faa24a4c1", + "name": "AMET, DOLOR SIT", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "96032c2f-9056-43ea-b14b-806689facf9c", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "fe815997-114e-465c-bb36-19a7b3ebb1d0", + "name": "AMET, DOLOR SIT", + "siteRegistry": true, + "role": "AUTHOR" + } + ] }, { - "uuid": "0833ffae-4c6d-4c63-b616-0293e9952b2c", - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-09-07 (described on Site Profile dated 2021-09-07)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "uuid": "d7c58938-5dc4-443e-a59f-4b751167d7b4", + "siteRegistry": false, + "documentDate": "2018-08-10", + "receivedDate": "2021-11-19", + "uploadedDate": "2021-09-18", + "title": "Preliminary Site Investigation, Detailed Site Investigation and Remedial Plan for the Management Area adjacent to the Shell Site at 1503 West 41st Ave", + "participants": [ + { + "uuid": "5303779a-3df5-4c1f-8067-b578de711f29", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "bbc97503-ceab-4777-8fd1-92a6477f6fa7", + "name": "IPSUM", + "siteRegistry": false, + "role": "AUTHOR" + } + ] + }, + { + "uuid": "6e9b9452-9688-4a76-b3d1-e862d1ba77fd", + "siteRegistry": false, + "documentDate": "2022-02-28", + "receivedDate": "2020-01-23", + "uploadedDate": "2017-05-22", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "b45285c1-bcac-43c4-8ccc-ff5b4281eaf2", + "name": "IPSUM", + "siteRegistry": false, + "role": "AUTHOR" + } + ] } ], - "parcelDescriptions": [ + "suspectLandUses": [ { - "uuid": "74bace09-466e-4d07-b9b3-5dcacd9e2fc3", + "uuid": "7b4d3ca1-4a15-42ca-b8a4-ce1502448cb2", "siteRegistry": false, - "dateNoted": "2019-02-26", - "parcelID": "17013", - "crownLandUsePIN": "16659", - "crownLandFileNumber": "16784", - "landDescription": "LOT 1 OF LOT 1 BLOCK 5 DISTRICT LOT 2 PLAN 7559" + "notes": "INSERTED FOR SITE PROFILE DATED 2014-01-15 (described on Site Profile dated 2014-01-15)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "uuid": "7c9b6f98-c9ba-450b-81a8-b6beffd3b82c", + "uuid": "aa0dd4f0-0103-45e1-967f-d29b6b0fb7a8", "siteRegistry": true, - "dateNoted": "2015-03-29", - "parcelID": "15475", - "crownLandUsePIN": "20563", - "crownLandFileNumber": "16231", - "landDescription": "LOT 5 OF LOT 3 BLOCK 1 DISTRICT LOT 4 PLAN 9426" - }, + "notes": "INSERTED FOR SITE PROFILE DATED 2023-03-11 (described on Site Profile dated 2023-03-11)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + } + ], + "parcelDescriptions": [ { - "uuid": "5ad9a752-404e-45fe-ae15-4d146e80132c", + "uuid": "443939e2-465d-4074-a28f-50356a4da267", "siteRegistry": true, - "dateNoted": "2014-06-23", - "parcelID": "19403", - "crownLandUsePIN": "19969", - "crownLandFileNumber": "16399", - "landDescription": "LOT 5 OF LOT 3 BLOCK 4 DISTRICT LOT 5 PLAN 5668" + "dateNoted": "2022-04-22", + "parcelID": "19791", + "crownLandUsePIN": "16274", + "crownLandFileNumber": "17721", + "landDescription": "LOT 3 OF LOT 2 BLOCK 3 DISTRICT LOT 3 PLAN 3648" }, { - "uuid": "57b5cf76-584e-42ff-b55c-abc51b7007d4", - "siteRegistry": false, - "dateNoted": "2014-12-25", - "parcelID": "16131", - "crownLandUsePIN": "18742", - "crownLandFileNumber": "19319", - "landDescription": "LOT 2 OF LOT 4 BLOCK 5 DISTRICT LOT 4 PLAN 8388" + "uuid": "80d96668-5e67-4a7b-979b-b8dcad7c99af", + "siteRegistry": true, + "dateNoted": "2017-06-16", + "parcelID": "20155", + "crownLandUsePIN": "17522", + "crownLandFileNumber": "16050", + "landDescription": "LOT 2 OF LOT 5 BLOCK 4 DISTRICT LOT 3 PLAN 4634" } ], "siteDisclosures": [ { - "uuid": "6e17bd78-73c4-450d-a205-a77a3d35931a", - "siteRegistry": true, - "dateReceived": "2020-10-31", - "dateCompleted": "2019-08-27", - "dateEntered": "2023-02-11", - "dateRegistrar": "2019-12-18", - "dateLocalAuthorityReceived": "2022-10-09", - "summary": "Soluta nam aliquid adipisci aperiam corrupti minus.\nMolestiae quod animi excepturi.\nAut animi ex temporibus quasi porro quia ab illum doloribus.", - "informationUsed": "Voluptas voluptate dignissimos aut facere pariatur aliquid cum vel vero.\nTemporibus inventore aliquid.\nDucimus ducimus fuga.", - "pastOrPresentOrders": "Nesciunt unde quia unde.", + "uuid": "9d1a5fba-5f20-4349-b6bc-92be22069bbd", + "siteRegistry": false, + "dateReceived": "2017-11-19", + "dateCompleted": "2017-06-13", + "dateEntered": "2013-11-14", + "dateRegistrar": "2014-10-02", + "dateLocalAuthorityReceived": "2020-07-27", + "summary": "Sed quia perferendis tempora quam.\nQuod cupiditate fugiat.\nUt repellat sunt.", + "informationUsed": "Eum quam id commodi numquam reiciendis deserunt.\nAccusantium repellat porro suscipit.\nPraesentium placeat alias magni itaque magnam vitae asperiores eveniet doloribus.\nIste dolores occaecati id officiis.\nNihil cumque eos provident eum.", + "pastOrPresentOrders": "Corrupti tempore cumque in veritatis deleniti quibusdam beatae.", "commercialAndIndustrialPurposes": [ { - "uuid": "c86e4d49-8b34-4192-b856-4e60ba11bbac", + "uuid": "c1ee4b41-e636-4ab8-889a-9c43c5545a07", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false }, { - "uuid": "c216d1fb-3ab8-4b39-9906-c5a454ac075c", + "uuid": "f863e7a1-c554-4080-a88f-060ff6c70b6d", "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false }, { - "uuid": "f3c2b8cc-8466-4476-a4d5-3f90db249494", - "scheduleReference": "F1*", + "uuid": "2623b7c0-87ca-4633-b249-b1048e0fc545", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "92d78e5c-d4f5-4b8f-aea2-9f3a3c918d1d", - "scheduleReference": "F1*", + "uuid": "a9d7d2ac-a1c6-4e1a-bd1d-acbf6ac5cd1a", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false } @@ -79659,108 +93989,101 @@ ], "activityLog": [ { - "uuid": "342d9c5f-7f9b-44a7-8579-c6ad81ec7cc2", - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "BARTON WENDY", - "timestamp": "2016-04-23" - }, - { - "uuid": "519dfbda-202d-4203-9349-f8e519e33cef", + "uuid": "6bc736c8-749f-47c5-aa3c-8a5c58850663", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "DURGAN KAYLIN", - "timestamp": "2015-09-28" + "user": "POLLICH OTILIA", + "timestamp": "2023-08-07" }, { - "uuid": "21adcb31-6a13-44c3-94d0-4ce6364ce231", + "uuid": "1a16a7e3-7abf-4f2a-8267-6b387c3d975c", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "HINTZ ULICES", - "timestamp": "2021-05-09" + "user": "PFANNERSTILL MARTY", + "timestamp": "2015-02-19" }, { - "uuid": "213f217d-5242-4112-abf0-34581ac10406", + "uuid": "24123ddf-91f4-4452-a022-6f347684f6f0", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "POLLICH MELLIE", - "timestamp": "2023-01-18" + "user": "O'KON JABARI", + "timestamp": "2020-02-21" }, { - "uuid": "529b5af5-4edd-4a14-9009-88165a2f070e", - "siteRegistry": false, + "uuid": "fbe32fd8-2673-4360-8196-ecd2e65af40f", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "VONRUEDEN ISABELLE", - "timestamp": "2017-03-24" + "user": "HARTMANN MARLIN", + "timestamp": "2019-07-13" }, { - "uuid": "c73a7088-2301-4086-91e8-2c3cb6d25588", - "siteRegistry": true, + "uuid": "a137f580-a12e-4635-9f1c-04bf8c07926d", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "TOWNE CYDNEY", - "timestamp": "2015-01-05" + "user": "BRADTKE TEAGAN", + "timestamp": "2017-09-18" }, { - "uuid": "b46efa9f-73a1-4b7b-9cbc-f7d6b8bdbea0", - "siteRegistry": true, + "uuid": "637c5dd7-3e75-45d6-8e37-a35b9bdb89ca", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "ONDRICKA COLUMBUS", - "timestamp": "2015-03-21" + "user": "LUETTGEN MARCELO", + "timestamp": "2020-06-23" } ], "associatedSites": [ { - "uuid": "df395679-cbfd-4175-8e43-71f5f94ac827", - "dateNoted": "2022-02-06", + "uuid": "63b1f738-a2f2-40b0-9993-5dfc35ac48ca", + "dateNoted": "2016-07-30", "notes": "", - "parcelID": "18638", - "siteID": "19254", + "parcelID": "16124", + "siteID": "16366", "siteRegistry": true }, { - "uuid": "30cc33fe-4508-43b4-a856-bc5a1694c357", - "dateNoted": "2019-08-26", + "uuid": "47b505d7-de7d-4a13-834e-d003a7aca7cd", + "dateNoted": "2020-09-19", "notes": "", - "parcelID": "20224", - "siteID": "16208", - "siteRegistry": false + "parcelID": "17007", + "siteID": "17834", + "siteRegistry": true }, { - "uuid": "ddb3de88-0e61-4e6c-9f23-bad44a5368eb", - "dateNoted": "2022-02-24", + "uuid": "daf2a432-d45d-4314-9936-6af452e51e6b", + "dateNoted": "2023-08-23", "notes": "", - "parcelID": "18079", - "siteID": "19716", + "parcelID": "20150", + "siteID": "18407", "siteRegistry": false } ] }, { - "uuid": "2d2a58c3-56f6-46da-9ba8-3ef3792f947e", - "siteID": 20768, - "address": "7727 Patrick Green", - "latitude": 58.4774, - "longitude": -131.8585, - "lastUpdated": "2015-06-29", - "city": "Jefferson City", - "region": " North Coast", - "victoriaFile": "26250-20/4550", + "uuid": "0fb11368-a848-47c1-9f44-4881824efecc", + "siteID": 16222, + "address": "77342 Graham Roads", + "latitude": 51.5755, + "longitude": -127.4399, + "lastUpdated": "2017-08-27", + "city": "Sengerland", + "region": "Mainland/Southwest", + "victoriaFile": "26250-20/14357", "regionalFile": "N/A", "parcelIDs": [ - 2576982, - 1777751, - 3013968, - 2948992, - 2151656 + 7270700, + 9994210, + 436160, + 2174178, + 5030290 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "2b62b8fe-2c4a-4443-a1e2-8849c8899b09", - "createdAt": "2019-07-10", - "completed": "2023-01-25", - "initiated": "2019-10-20", - "ministryContact": "HERZOG PRESTON", + "uuid": "978665e9-d866-4823-8de6-d8e86b264e11", + "createdAt": "2022-02-16", + "completed": "2022-09-02", + "initiated": "2016-11-29", + "ministryContact": "KLING VERGIE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -79769,26 +94092,32 @@ ], "notationParticipants": [ { - "uuid": "d3e0dee1-87a2-4f26-80c6-204555d9a6b8", + "uuid": "d231c554-eeac-40b7-98ee-ce6ae73a2aec", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "90ea0a97-0ce5-4156-9a8e-4abe5a23b115", + "uuid": "920fc373-11da-424c-916f-ae3bfb45ca54", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "efa25ea1-7939-4308-b265-3f66ffa37f57", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true } ], "siteRegistry": false }, { - "uuid": "07e76e97-741c-4341-8abf-662011609f37", - "createdAt": "2017-10-28", - "completed": "2016-09-13", - "initiated": "2014-01-04", - "ministryContact": "RATKE MAE", + "uuid": "df1a06ec-71db-42e0-8d7a-96e2457dd131", + "createdAt": "2020-07-15", + "completed": "2018-11-14", + "initiated": "2015-12-21", + "ministryContact": "OSINSKI VELDA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -79797,31 +94126,105 @@ ], "notationParticipants": [ { - "uuid": "16fa25a9-4256-47ef-b650-b62e12d13f1f", + "uuid": "0bf0f788-c696-4d7e-9ef2-abab3d4b5339", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "uuid": "ee72f875-8baa-4604-ae13-c4939291c238", "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "e06bb73f-e059-444f-910b-b439ed87ae17", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "uuid": "634252c0-71ab-4991-a8f7-c27e2d74b122", + "createdAt": "2015-09-20", + "completed": "2023-07-13", + "initiated": "2016-01-24", + "ministryContact": "KOEPP EULA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "uuid": "43fe9748-39bf-4aaa-ba99-7a0ee992167b", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true }, { - "uuid": "aac4ef54-c24a-4ba8-b3ab-d7aac824aed6", + "uuid": "3b8f1cba-ef33-4ef2-8762-f1b2641cde98", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true }, { - "uuid": "5ae3c9c6-26dd-4ce4-8bcd-92c23ea03d80", + "uuid": "c650f828-1316-4e32-9ba7-cb4e600fb366", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "d3f13420-295e-4bca-aec6-28af03e399e3", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": true - }, + } + ], + "siteRegistry": false + }, + { + "uuid": "7fa5309c-dd92-4479-b3b4-55f1b0c867bd", + "createdAt": "2020-01-30", + "completed": "2018-04-23", + "initiated": "2015-02-08", + "ministryContact": "GLEASON GERARD", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ { - "uuid": "c89fc472-6ba4-4ff7-89d5-bf428781dd71", + "uuid": "dacd1171-c508-4549-b18f-71be2949394a", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "uuid": "b5c8654c-3b4b-4a2f-a7e0-ef0e203ce5f9", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "b5251f95-cca5-4f0c-a52c-98c1608c722d", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "b5136e67-847f-424f-943f-763c465385a3", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "da85e87b-4059-45f0-9a15-845591821a44", + "uuid": "c2b5e13e-c9aa-49a7-bcf1-9ff8ae953e41", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false @@ -79832,32 +94235,10 @@ ], "participants": [ { - "uuid": "6acc12c8-9a84-4b78-8f9d-6ecaa3aa3b12", - "name": "AMET, DOLOR SIT", - "endDate": "2021-12-19", - "startDate": "2022-02-17", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": false - }, - { - "uuid": "f74478de-cdd1-4adc-8003-12c88dce6c92", - "name": "AMET, DOLOR SIT", - "endDate": "2013-11-23", - "startDate": "2015-10-10", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": true - }, - { - "uuid": "293ca611-efd1-4f1e-8991-341d2c2bc18e", - "name": "IPSUM", - "endDate": "2015-05-22", - "startDate": "2020-04-06", + "uuid": "e20635e1-4139-48e0-908c-d1ab69a23084", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2018-11-11", + "startDate": "2014-11-23", "notes": "", "roles": [ "EMPLOYEE" @@ -79865,137 +94246,142 @@ "siteRegistry": false }, { - "uuid": "6d830883-d673-47b5-99e8-0fba5c1bbb46", - "name": "IPSUM", - "endDate": "2016-11-18", - "startDate": "2020-05-18", + "uuid": "a0cdcd71-f4f1-4004-a42f-ec62c1b8eefa", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2018-10-28", + "startDate": "2017-11-10", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": true - }, + } + ], + "documents": [ { - "uuid": "78907806-cc56-4cc7-b757-aa45f94907cd", - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2017-11-21", - "startDate": "2017-01-21", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": true + "uuid": "134aa5e2-4a5f-4ecd-9999-04deff5e2b61", + "siteRegistry": true, + "documentDate": "2020-07-31", + "receivedDate": "2021-11-01", + "uploadedDate": "2022-05-19", + "title": "Preliminary Site Investigation, Detailed Site Investigation and Remedial Plan for the Management Area adjacent to the Shell Site at 1503 West 41st Ave", + "participants": [ + { + "uuid": "e5ebb3cc-52c6-48c2-ae67-b961664c8585", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "e0feb187-462e-41c9-86f2-a49ad983dafa", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "dd772ba6-2960-405c-86cf-6a228c3125f7", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": false, + "role": "AUTHOR" + } + ] } ], "suspectLandUses": [ { - "uuid": "138e45f9-5211-4189-8d19-5ec695ec3f7e", + "uuid": "def61100-6209-49d6-8857-886ab2fbcc0e", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-12-27 (described on Site Profile dated 2017-12-27)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "notes": "INSERTED FOR SITE PROFILE DATED 2018-06-13 (described on Site Profile dated 2018-06-13)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "uuid": "90913b8e-e4d7-42f8-9750-c03e202bee2c", - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-01-27 (described on Site Profile dated 2016-01-27)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "uuid": "c32cb472-2012-4fe9-8090-e1ed36ff3e85", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2023-04-03 (described on Site Profile dated 2023-04-03)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "uuid": "7c2f5b00-0cb3-4a87-9b0e-934be83c873e", + "uuid": "446bd259-969a-4091-824b-0434d050662e", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2020-09-18 (described on Site Profile dated 2020-09-18)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "notes": "INSERTED FOR SITE PROFILE DATED 2020-02-27 (described on Site Profile dated 2020-02-27)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], "parcelDescriptions": [ { - "uuid": "f416200a-97e7-4678-9f23-a519af1cbac9", - "siteRegistry": true, - "dateNoted": "2018-11-30", - "parcelID": "17141", - "crownLandUsePIN": "18781", - "crownLandFileNumber": "18080", - "landDescription": "LOT 4 OF LOT 5 BLOCK 3 DISTRICT LOT 1 PLAN 5887" + "uuid": "0d5664d9-1b7c-4204-83b7-84cdff54d2e4", + "siteRegistry": false, + "dateNoted": "2019-08-16", + "parcelID": "17380", + "crownLandUsePIN": "18986", + "crownLandFileNumber": "15541", + "landDescription": "LOT 5 OF LOT 5 BLOCK 3 DISTRICT LOT 4 PLAN 9332" }, { - "uuid": "f1542592-e20d-4ce4-86b6-12a7e94ac32b", + "uuid": "b8ec6f38-81e7-4ad8-84c8-42532754cad3", "siteRegistry": false, - "dateNoted": "2013-12-17", - "parcelID": "15456", - "crownLandUsePIN": "16398", - "crownLandFileNumber": "18069", - "landDescription": "LOT 5 OF LOT 1 BLOCK 2 DISTRICT LOT 5 PLAN 3325" + "dateNoted": "2017-03-05", + "parcelID": "15951", + "crownLandUsePIN": "19791", + "crownLandFileNumber": "18992", + "landDescription": "LOT 1 OF LOT 2 BLOCK 2 DISTRICT LOT 4 PLAN 7017" }, { - "uuid": "d8382f7f-82a1-4ab0-98d7-041f60b09044", - "siteRegistry": false, - "dateNoted": "2014-01-20", - "parcelID": "15866", - "crownLandUsePIN": "19244", - "crownLandFileNumber": "18913", - "landDescription": "LOT 5 OF LOT 4 BLOCK 5 DISTRICT LOT 3 PLAN 8469" + "uuid": "6faec4ac-e397-420d-90f1-aba06332aeaf", + "siteRegistry": true, + "dateNoted": "2016-07-04", + "parcelID": "15192", + "crownLandUsePIN": "20411", + "crownLandFileNumber": "17203", + "landDescription": "LOT 5 OF LOT 3 BLOCK 3 DISTRICT LOT 4 PLAN 3883" + }, + { + "uuid": "cec32d51-e0dc-4ed2-a002-d46b056d8bb9", + "siteRegistry": true, + "dateNoted": "2021-01-26", + "parcelID": "16684", + "crownLandUsePIN": "15983", + "crownLandFileNumber": "16858", + "landDescription": "LOT 3 OF LOT 3 BLOCK 3 DISTRICT LOT 5 PLAN 9176" + }, + { + "uuid": "7a4a844d-3cf7-4817-8b74-df105c7c854e", + "siteRegistry": true, + "dateNoted": "2022-10-27", + "parcelID": "19078", + "crownLandUsePIN": "20268", + "crownLandFileNumber": "17695", + "landDescription": "LOT 1 OF LOT 4 BLOCK 1 DISTRICT LOT 4 PLAN 7344" } ], "siteDisclosures": [ { - "uuid": "27f7953e-fb9c-4481-a8ea-4a1a6897713f", + "uuid": "cc85f3cd-e6be-44e4-9dd3-74c4054cffc3", "siteRegistry": true, - "dateReceived": "2015-06-26", - "dateCompleted": "2017-07-18", - "dateEntered": "2017-03-15", - "dateRegistrar": "2015-04-30", - "dateLocalAuthorityReceived": "2021-10-07", - "summary": "Ex reprehenderit ullam dicta natus modi laudantium fugit.", - "informationUsed": "Repellat nisi porro excepturi.\nEx assumenda exercitationem quis nesciunt illo ipsam eos.\nMinus soluta molestias perferendis.", - "pastOrPresentOrders": "Mollitia odio a dolorem libero eos ex.\nAperiam laboriosam numquam consectetur.", + "dateReceived": "2021-09-05", + "dateCompleted": "2018-10-10", + "dateEntered": "2019-12-20", + "dateRegistrar": "2020-09-21", + "dateLocalAuthorityReceived": "2015-10-11", + "summary": "Saepe nemo fugiat sit nulla vitae officia.\nSed quia labore harum eum praesentium nobis quia provident iste.\nSunt cupiditate temporibus explicabo laudantium natus ipsam.", + "informationUsed": "Perferendis ex quas sed repellat incidunt perferendis nihil.\nSint magni reiciendis ratione consectetur impedit eos provident.\nQuod velit consequuntur saepe mollitia officiis deleniti eum.", + "pastOrPresentOrders": "Eveniet officiis deleniti quasi tenetur.\nQuam consequuntur commodi harum ex.", "commercialAndIndustrialPurposes": [ { - "uuid": "4fb1d644-290a-47d3-8be6-252c594e352f", + "uuid": "e93f8036-2bf8-44c7-9bfe-d9badf6e04d1", "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { - "uuid": "641c21ea-9fc4-455f-b675-eafd9e6f7271", + "uuid": "d79f69a5-876a-46bd-8a1d-c35d2798160c", "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false - }, - { - "uuid": "e6d5268f-5d70-4c05-addd-d30b473b020b", - "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true - } - ] - }, - { - "uuid": "f19c0916-72a1-4c6e-8a09-bd501b51660f", - "siteRegistry": true, - "dateReceived": "2017-02-17", - "dateCompleted": "2017-03-31", - "dateEntered": "2023-05-10", - "dateRegistrar": "2015-05-29", - "dateLocalAuthorityReceived": "2015-05-22", - "summary": "Explicabo asperiores consequuntur recusandae.\nSint modi non eveniet labore.", - "informationUsed": "Nobis dignissimos corporis.\nPossimus non odit expedita qui magni atque id aut.\nSoluta quae atque ab corporis mollitia.\nMollitia autem est ullam.", - "pastOrPresentOrders": "Assumenda corporis perferendis exercitationem error numquam repellendus.", - "commercialAndIndustrialPurposes": [ - { - "uuid": "f6f65340-d6a3-41c6-aa53-057d1a7c360f", - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false }, { - "uuid": "2fa1146f-7585-41a8-84c9-62110b753fa8", + "uuid": "3af503bf-e9c5-47ee-8dab-57d7f5caf88f", "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true - }, - { - "uuid": "3b50402c-9ded-4984-ba50-33abeeaafd1c", - "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true } @@ -80004,106 +94390,94 @@ ], "activityLog": [ { - "uuid": "e771a491-619f-4ea5-9e83-6a412c5f1580", + "uuid": "9fe2b88f-63ca-4cc8-822c-5a05e1359d2d", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "QUIGLEY JAMESON", - "timestamp": "2021-08-30" - }, - { - "uuid": "d9bd8c89-0acd-4b3e-8900-a93080cc7296", - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "SCHUPPE JANET", - "timestamp": "2014-03-28" + "user": "KUHN GOLDEN", + "timestamp": "2014-09-27" }, { - "uuid": "ea0f3536-1f3e-4de0-8840-a6812a53ee6f", + "uuid": "90c7c1a3-b4c7-4bdc-8f72-533b482ed866", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "BERNIER ROWENA", - "timestamp": "2019-07-06" + "user": "CORMIER-HOWELL KARI", + "timestamp": "2023-01-19" }, { - "uuid": "d4ae71d7-df3d-48be-b614-017bc0dab94c", + "uuid": "57db9ba5-c305-4777-bde5-93a171a19827", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "ROMAGUERA ALDEN", - "timestamp": "2016-10-15" + "user": "RUSSEL ENRICO", + "timestamp": "2023-03-19" }, { - "uuid": "482c13ed-0b5a-4731-b65b-270355d57fd6", + "uuid": "975708e0-c6cb-46fe-9e7a-0905b0e3fcec", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "TORPHY NOE", - "timestamp": "2023-03-21" + "user": "WOLF KENDRICK", + "timestamp": "2016-09-14" }, { - "uuid": "f506c6bd-09a3-456c-84bc-789a0adc8095", + "uuid": "2c0cc83d-4a05-4363-a2b9-a61f60c273b9", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "KONOPELSKI JEANIE", - "timestamp": "2021-05-13" - }, + "user": "GLOVER LAURA", + "timestamp": "2018-01-05" + } + ], + "associatedSites": [ { - "uuid": "82e9cfbc-b71a-495a-9603-c306d60e92e9", - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "FEIL BETTY", - "timestamp": "2021-08-19" + "uuid": "65c5369c-9d61-42e5-b0dd-3c0298db0427", + "dateNoted": "2020-02-25", + "notes": "", + "parcelID": "18463", + "siteID": "19065", + "siteRegistry": false }, { - "uuid": "93ec55ae-c6b6-4c3a-8bac-cc2a4d90cee4", - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "MEDHURST DARON", - "timestamp": "2021-03-19" + "uuid": "a80584fd-0ef6-4061-b80e-04d1e3406987", + "dateNoted": "2015-07-27", + "notes": "", + "parcelID": "20247", + "siteID": "18229", + "siteRegistry": true }, { - "uuid": "b2f12823-8335-45f9-8176-7ce049065876", - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "BROWN NIKKO", - "timestamp": "2017-09-28" - } - ], - "associatedSites": [ - { - "uuid": "5ba84bdf-1381-490a-9a2f-952006aaff86", - "dateNoted": "2015-10-24", + "uuid": "3a753a6b-aaaa-4cdd-b5ec-1ec12f22cd18", + "dateNoted": "2022-09-11", "notes": "", - "parcelID": "19507", - "siteID": "20024", + "parcelID": "18446", + "siteID": "18456", "siteRegistry": false } ] }, { - "uuid": "543498d2-eb15-4ec2-b793-83baa46c7f28", - "siteID": 17765, - "address": "266 Lorena Plains", - "latitude": 58.3562, - "longitude": -132.5642, - "lastUpdated": "2023-08-31", - "city": "North Leolastad", - "region": "Thompson-Okanagan", - "victoriaFile": "26250-20/12986", + "uuid": "1c8b7d9d-0d26-40af-afec-313f8c49c213", + "siteID": 19460, + "address": "835 Mosciski Burg", + "latitude": 56.011, + "longitude": -132.9655, + "lastUpdated": "2021-12-20", + "city": "Willmsburgh", + "region": "Mainland/Southwest", + "victoriaFile": "26250-20/15931", "regionalFile": "N/A", "parcelIDs": [ - 9279587, - 1782061, - 6046822, - 9241140, - 8723875 + 8244865, + 7151382, + 6461823, + 8375377, + 3871154 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "4dbb9d60-e4b4-4794-9697-7d8eb3b99e83", - "createdAt": "2019-06-22", - "completed": "2023-09-20", - "initiated": "2023-09-29", - "ministryContact": "RUECKER EMIE", + "uuid": "81f46061-2872-4c7b-a6e8-668d23aeff0f", + "createdAt": "2022-07-09", + "completed": "2019-12-18", + "initiated": "2023-08-16", + "ministryContact": "DAUGHERTY LOTTIE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -80112,44 +94486,38 @@ ], "notationParticipants": [ { - "uuid": "b8362348-9e95-4198-864d-71e59d7ce96d", - "name": "SHELL CANADA PRODUCTS", + "uuid": "f021d2a3-0b28-4043-acfa-61445040c7de", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true }, { - "uuid": "c056ca68-8717-4afe-954e-0fe501f18d74", + "uuid": "96a4cf45-49af-4b1f-9fb3-bd4acfa2a30a", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "uuid": "b043005a-298a-4f0a-bd38-961fbcc8b89a", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "6d7913c1-1795-4542-b457-c57de08bcf09", + "uuid": "cc3d225a-e2b4-47e0-b7a1-b87e1b843892", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false + "role": "REQUESTED BY", + "siteRegistry": true }, { - "uuid": "3a3dd175-4108-4351-948c-b8507849a252", - "name": "SHELL CANADA PRODUCTS", + "uuid": "f1fb4b23-0e8b-4279-9af3-cb97adc2480e", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "40e38610-187d-40ed-b34d-4b54213e3046", - "createdAt": "2016-09-22", - "completed": "2020-02-07", - "initiated": "2018-06-30", - "ministryContact": "GUSIKOWSKI CHRISTIAN", + "uuid": "f73cbd81-324c-44d1-bd6c-1c2767f8ceca", + "createdAt": "2018-07-07", + "completed": "2017-12-08", + "initiated": "2018-12-09", + "ministryContact": "WILKINSON CORENE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -80158,44 +94526,38 @@ ], "notationParticipants": [ { - "uuid": "5a7a0afc-4628-4d60-83c7-ebd93dab99dc", - "name": "SHELL CANADA PRODUCTS", + "uuid": "d8adaa09-f6d4-4d6a-a377-f37f572553be", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "88a94f54-f649-4432-aa66-55c9361b9c5f", - "name": "SHELL CANADA PRODUCTS", + "uuid": "c395a5f9-8603-4d41-8eee-f0329e0c3a4a", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true }, { - "uuid": "6e7cbe36-b0a0-4816-b89e-ff3539d92cee", - "name": "SHELL CANADA PRODUCTS", + "uuid": "06a95c47-a61d-4882-9a4f-c0bdb3ff1b6f", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "6def8210-a8be-4cb2-9388-bf22aa28eb35", + "uuid": "e959734a-f3e7-4f3c-999a-d88053599e25", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false - }, - { - "uuid": "45c6aadc-b25f-4eb9-99bd-8b6cc3c68408", - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "ac0a44ab-29f8-44dd-969f-5e5a451cf7db", - "createdAt": "2021-07-25", - "completed": "2021-10-22", - "initiated": "2013-12-20", - "ministryContact": "ROOB KENNA", + "uuid": "75bb364d-4909-4140-b350-745aff340b9f", + "createdAt": "2021-03-17", + "completed": "2014-08-03", + "initiated": "2016-01-15", + "ministryContact": "CARTWRIGHT REESE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -80204,264 +94566,356 @@ ], "notationParticipants": [ { - "uuid": "75700053-4bf1-4c01-b552-07e725a54c8e", - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "uuid": "8228eeb9-3c20-4036-9d0e-91f14e9a04ec", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", "siteRegistry": false }, { - "uuid": "91ffcb17-5dd8-40db-becd-9a48699ffe66", + "uuid": "03488620-31a5-457c-93d2-85e6d5c2c052", "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "90ee1688-18c3-436c-8a39-045efd992ca3", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "273a5fc1-4be5-430e-b1b4-58f49a58070d", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "uuid": "955ee8b2-d0d8-4310-bb9f-fc10a8cbf38f", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false } ], "participants": [ { - "uuid": "4685dcc7-6da1-4544-8a1d-3ac7ce6bc7af", - "name": "SHELL CANADA PRODUCTS", - "endDate": "2020-07-24", - "startDate": "2020-10-11", + "uuid": "837e0ee9-c9e7-4728-914b-5053273d0ae7", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2023-09-19", + "startDate": "2018-04-16", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": true }, { - "uuid": "24c35c45-3001-45f2-883c-c56a7cdcd67c", - "name": "IPSUM", - "endDate": "2023-09-13", - "startDate": "2018-02-20", + "uuid": "401c1443-72fb-4b08-80b3-071becaa5807", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2022-12-21", + "startDate": "2016-08-31", "notes": "", "roles": [ "EMPLOYEE" ], + "siteRegistry": false + }, + { + "uuid": "8ffdae03-7121-438c-8117-bdba4b9e7cea", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2020-03-13", + "startDate": "2019-04-04", + "notes": "", + "roles": [ + "ORGANIZATION" + ], "siteRegistry": true }, { - "uuid": "e1607c5b-9081-435d-817d-998333042ece", + "uuid": "85a35b03-7fdc-48d4-afb5-c86e4e67fbdc", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2021-10-04", + "startDate": "2018-02-22", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": false + }, + { + "uuid": "d2a7b197-ed41-44cc-ac40-00bfb0cdb014", "name": "SHELL CANADA PRODUCTS", - "endDate": "2017-06-28", - "startDate": "2023-03-23", + "endDate": "2014-11-18", + "startDate": "2023-02-12", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": true + "siteRegistry": false + } + ], + "documents": [ + { + "uuid": "5dd1b98e-5f3a-449a-bc04-69e588b0222e", + "siteRegistry": false, + "documentDate": "2021-02-25", + "receivedDate": "2019-02-18", + "uploadedDate": "2015-12-15", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "e26e11d5-558c-497c-b143-0f2bc5bf111b", + "name": "IPSUM", + "siteRegistry": false, + "role": "AUTHOR" + } + ] } ], "suspectLandUses": [ { - "uuid": "30becad0-a69b-46f6-a476-34f24d12fb73", + "uuid": "23a84ebc-bbfb-405d-b35d-465bb5515ea4", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-03-07 (described on Site Profile dated 2016-03-07)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "notes": "INSERTED FOR SITE PROFILE DATED 2014-09-15 (described on Site Profile dated 2014-09-15)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "uuid": "6d4d6eba-d6dd-456e-8c93-d74870d7f74e", + "uuid": "1cbd010c-da09-4daf-afc4-040765e48781", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-02-08 (described on Site Profile dated 2014-02-08)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "notes": "INSERTED FOR SITE PROFILE DATED 2022-02-05 (described on Site Profile dated 2022-02-05)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "uuid": "d1f0e98d-5935-4249-bfd3-63f73bcfb980", + "uuid": "1a97f6bf-5534-488b-91bc-76c3b808bd9a", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2023-01-05 (described on Site Profile dated 2023-01-05)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "notes": "INSERTED FOR SITE PROFILE DATED 2014-07-15 (described on Site Profile dated 2014-07-15)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "uuid": "a4d37d3f-8dd5-422f-956a-539a92e32b04", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2021-07-11 (described on Site Profile dated 2021-07-11)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], "parcelDescriptions": [ { - "uuid": "4ce0bcad-bcf3-4fd1-b87e-7659e0daf846", - "siteRegistry": true, - "dateNoted": "2015-07-03", - "parcelID": "19194", - "crownLandUsePIN": "17946", - "crownLandFileNumber": "19719", - "landDescription": "LOT 3 OF LOT 4 BLOCK 2 DISTRICT LOT 4 PLAN 9475" + "uuid": "32edb77a-cc2c-4b08-b4ee-cae8989ce370", + "siteRegistry": false, + "dateNoted": "2014-08-01", + "parcelID": "18221", + "crownLandUsePIN": "17812", + "crownLandFileNumber": "20760", + "landDescription": "LOT 5 OF LOT 1 BLOCK 1 DISTRICT LOT 2 PLAN 3141" }, { - "uuid": "c4020c96-1970-4895-a932-5b4b130a9395", + "uuid": "ec1bfa79-2070-4684-b5dd-c1b8ada1bfb5", "siteRegistry": false, - "dateNoted": "2013-11-06", - "parcelID": "16210", - "crownLandUsePIN": "20962", - "crownLandFileNumber": "18736", - "landDescription": "LOT 1 OF LOT 4 BLOCK 3 DISTRICT LOT 2 PLAN 8553" + "dateNoted": "2022-01-07", + "parcelID": "19434", + "crownLandUsePIN": "16376", + "crownLandFileNumber": "19145", + "landDescription": "LOT 1 OF LOT 3 BLOCK 1 DISTRICT LOT 3 PLAN 6096" }, { - "uuid": "05ba701e-a82c-40e4-956b-4a5ec76529ee", - "siteRegistry": true, - "dateNoted": "2021-10-18", - "parcelID": "18436", - "crownLandUsePIN": "18891", - "crownLandFileNumber": "17429", - "landDescription": "LOT 3 OF LOT 1 BLOCK 4 DISTRICT LOT 5 PLAN 4603" + "uuid": "948661b5-4cf8-47f6-9352-031c3332a5e4", + "siteRegistry": false, + "dateNoted": "2014-04-29", + "parcelID": "18911", + "crownLandUsePIN": "18340", + "crownLandFileNumber": "20119", + "landDescription": "LOT 1 OF LOT 1 BLOCK 3 DISTRICT LOT 2 PLAN 3355" }, { - "uuid": "5559c387-d69d-4bed-8782-9219167ec041", + "uuid": "bf4b13f8-1b0c-4c58-bcf1-b27feb5938fc", "siteRegistry": true, - "dateNoted": "2016-02-02", - "parcelID": "17995", - "crownLandUsePIN": "16323", - "crownLandFileNumber": "18842", - "landDescription": "LOT 1 OF LOT 3 BLOCK 1 DISTRICT LOT 2 PLAN 8811" + "dateNoted": "2021-08-18", + "parcelID": "16510", + "crownLandUsePIN": "19796", + "crownLandFileNumber": "16082", + "landDescription": "LOT 2 OF LOT 3 BLOCK 4 DISTRICT LOT 4 PLAN 5576" + }, + { + "uuid": "a46aedf0-311d-4087-ba0a-fa328a781877", + "siteRegistry": false, + "dateNoted": "2021-11-03", + "parcelID": "15869", + "crownLandUsePIN": "19255", + "crownLandFileNumber": "18822", + "landDescription": "LOT 1 OF LOT 2 BLOCK 1 DISTRICT LOT 1 PLAN 8758" } ], "siteDisclosures": [ { - "uuid": "9d47b1ad-350c-4d71-bbf6-226545abd8a0", + "uuid": "0cdf83dd-3ac2-443b-add6-6f724a836fe6", "siteRegistry": true, - "dateReceived": "2020-03-07", - "dateCompleted": "2023-08-07", - "dateEntered": "2020-12-25", - "dateRegistrar": "2019-03-04", - "dateLocalAuthorityReceived": "2021-12-20", - "summary": "Culpa illo quidem reprehenderit officia ipsam ex impedit dignissimos.", - "informationUsed": "Ipsa ex pariatur molestias architecto voluptatibus iusto quasi dolore exercitationem.\nVoluptatum eius culpa ad ad aspernatur.\nEius pariatur maiores dolorem commodi dolorem optio consectetur.", - "pastOrPresentOrders": "Nobis voluptatem vitae eveniet impedit sapiente itaque asperiores earum quae.", + "dateReceived": "2018-05-09", + "dateCompleted": "2020-11-21", + "dateEntered": "2022-11-09", + "dateRegistrar": "2015-08-27", + "dateLocalAuthorityReceived": "2019-08-22", + "summary": "Officia at est at quas impedit hic accusantium delectus deleniti.\nMolestiae iure possimus.\nConsequuntur distinctio molestias similique sequi ea autem.", + "informationUsed": "Suscipit et provident voluptatem cum quo error expedita.\nEa maiores doloremque dolores natus ea ut.\nError vel qui possimus in vero et.", + "pastOrPresentOrders": "Quia recusandae assumenda sed eveniet cum atque facilis doloremque quos.\nAd laudantium molestiae fuga necessitatibus fugit atque voluptate.", "commercialAndIndustrialPurposes": [ { - "uuid": "f4eda2f4-ed8e-4d24-b039-863eb6548357", - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "uuid": "d1151d59-456a-4739-8d97-16b0ee636a63", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { - "uuid": "d6c80ed8-dc6f-48e5-b901-f313b5037a30", + "uuid": "0ad2acc3-d239-4f9e-af25-dad2e37c3ab2", "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "uuid": "4bafb987-27e9-4cff-9734-c46ace8c13c0", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true + "siteRegistry": false } ] }, { - "uuid": "f60cea7f-bb21-40e7-b106-3809aa5972ce", + "uuid": "6669b13a-e7fb-4048-ae0f-c22a4c2008ce", "siteRegistry": true, - "dateReceived": "2018-11-29", - "dateCompleted": "2019-09-06", - "dateEntered": "2016-02-10", - "dateRegistrar": "2021-04-08", - "dateLocalAuthorityReceived": "2021-08-21", - "summary": "Reprehenderit explicabo atque adipisci blanditiis delectus porro.\nNesciunt facere harum quo reiciendis optio sequi.", - "informationUsed": "Repudiandae accusantium dolore.\nOdit blanditiis saepe deleniti placeat repellat modi.\nFugiat officiis blanditiis.", - "pastOrPresentOrders": "Soluta pariatur labore animi ut laboriosam cum repellendus quod iusto.\nModi dolor recusandae.\nAccusamus perspiciatis blanditiis laboriosam.", + "dateReceived": "2019-08-24", + "dateCompleted": "2022-10-02", + "dateEntered": "2023-07-24", + "dateRegistrar": "2022-11-24", + "dateLocalAuthorityReceived": "2023-09-19", + "summary": "Porro est rem delectus officiis deserunt.\nOfficiis qui earum quae.", + "informationUsed": "Pariatur quos nihil hic laudantium aliquid corrupti quidem eos laboriosam.\nAperiam sed reprehenderit molestiae enim.\nVoluptatibus dicta labore rem fugiat esse.", + "pastOrPresentOrders": "Consequatur earum accusantium fugiat accusamus fugiat similique itaque iste.\nEsse dolor autem veniam.\nUllam repellendus vero.", "commercialAndIndustrialPurposes": [ { - "uuid": "8b845509-6a5d-4a9d-a191-246a2aec5daa", - "scheduleReference": "F1*", + "uuid": "7797fccf-d418-4a7f-b2fc-4ac662e28c61", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "uuid": "57e5bcbe-4e6d-492f-9a09-59d520d53233", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "02e8dc88-782b-46e1-a6a0-23c0af16bf7b", + "uuid": "d8871e69-fab5-4e9c-a99a-23dad427209f", "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "uuid": "d9d44332-f7bc-4438-ae5e-320b178c6867", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true + "siteRegistry": false } ] } ], "activityLog": [ { - "uuid": "81657cab-c5fe-4e26-ac01-c5765e9c6b5a", - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "THIEL MISTY", - "timestamp": "2019-08-11" - }, - { - "uuid": "f3bf0bf1-1e55-478a-8a32-87c785a165b2", + "uuid": "4eaef7da-5790-4d79-b835-4522a3108cbc", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "HAUCK SHAWN", - "timestamp": "2020-10-28" + "user": "MITCHELL ARMANI", + "timestamp": "2018-02-20" }, { - "uuid": "b58dc73a-340a-4851-8588-c2047caac8fd", + "uuid": "5b4e66a0-82de-4929-9073-41a9e5d854b6", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "WHITE KATARINA", - "timestamp": "2021-03-16" + "user": "MEDHURST THORA", + "timestamp": "2019-10-17" }, { - "uuid": "e24fc912-ff74-4d4e-9938-7001f46f74d9", + "uuid": "6e2ef4f4-d3d2-4bc7-b7cd-0aaa18f843b4", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "WARD SHANIE", - "timestamp": "2015-12-16" + "user": "HETTINGER BENNIE", + "timestamp": "2015-06-14" }, { - "uuid": "a54810f1-dbee-4201-ad6e-79c5a758d6d8", - "siteRegistry": false, + "uuid": "b9269063-f518-4110-ad4f-871064e80138", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "RIPPIN LELAND", - "timestamp": "2020-09-17" + "user": "CONSIDINE REMINGTON", + "timestamp": "2015-10-07" }, { - "uuid": "bc79e1ce-5f78-4f07-9a9f-e7bcd8524652", - "siteRegistry": true, + "uuid": "98d6e414-aaf9-4416-8368-67d7292ded12", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "KRAJCIK REYMUNDO", - "timestamp": "2021-04-08" + "user": "ORTIZ DEVON", + "timestamp": "2014-10-11" }, { - "uuid": "d7f142d0-915d-427a-8fef-5ab955cebf0c", - "siteRegistry": true, + "uuid": "b6e36161-0730-4af7-bc37-0fe4b3f7b377", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "GRADY KANE", - "timestamp": "2022-10-09" + "user": "KIHN DONAVON", + "timestamp": "2015-04-08" } ], "associatedSites": [ { - "uuid": "d76f93b7-6e89-44f9-bd5a-51ebcd678619", - "dateNoted": "2023-09-15", + "uuid": "d4153672-bf58-416e-b8b0-ec08dcca15f0", + "dateNoted": "2018-12-09", + "notes": "", + "parcelID": "15610", + "siteID": "20234", + "siteRegistry": true + }, + { + "uuid": "c6db285c-6b36-4c18-83d6-eff2ceb1f0d3", + "dateNoted": "2017-06-04", "notes": "", - "parcelID": "19230", - "siteID": "19572", + "parcelID": "15971", + "siteID": "17443", "siteRegistry": false }, { - "uuid": "970fb945-934b-4f4c-9083-ffba9f152bf6", - "dateNoted": "2020-09-22", + "uuid": "1f8fb919-ea54-48c2-8453-de3929cb21f3", + "dateNoted": "2015-01-14", "notes": "", - "parcelID": "17003", - "siteID": "15525", - "siteRegistry": true + "parcelID": "18581", + "siteID": "17104", + "siteRegistry": false } ] }, { - "uuid": "09dde270-d7ed-4ea6-a331-8bd027197924", - "siteID": 17261, - "address": "2355 Ebert Field", - "latitude": 50.5154, - "longitude": -133.6945, - "lastUpdated": "2022-11-04", - "city": "Port Candelario", - "region": "Thompson-Okanagan", - "victoriaFile": "26250-20/13998", + "uuid": "c2e8ec6d-45aa-4162-821b-a17f1c5af238", + "siteID": 18312, + "address": "8512 Alyson Viaduct", + "latitude": 55.0775, + "longitude": -135.0479, + "lastUpdated": "2020-05-24", + "city": "Erwinstad", + "region": "Vancouver Island/Coast", + "victoriaFile": "26250-20/8078", "regionalFile": "N/A", "parcelIDs": [ - 6362558, - 821338, - 4013226, - 4051380, - 4967840 + 3027024, + 7771289, + 8764847, + 8058865, + 3550065 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "d50c8b1c-ac0d-4052-8e29-d4cf37c0c97c", - "createdAt": "2015-12-10", - "completed": "2015-08-19", - "initiated": "2017-06-19", - "ministryContact": "GERHOLD ARON", + "uuid": "7d3717c7-31a4-465a-a0d9-9c777c737ef3", + "createdAt": "2022-04-04", + "completed": "2020-11-10", + "initiated": "2020-01-03", + "ministryContact": "COLE MCKENNA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -80470,44 +94924,44 @@ ], "notationParticipants": [ { - "uuid": "c568e67f-0f3b-4093-8aab-9aa6a837b8b1", + "uuid": "aab7ba7b-3164-4f6e-beb1-db826c2f054e", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "uuid": "5726328b-a232-4ad3-87e8-6a82f4cad815", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "796b42ba-7e9d-4eb3-a72a-cb0804d88f50", + "uuid": "ede6785c-5eca-4eea-9869-ec0e697c2837", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "78eef311-34ae-487e-92a5-e8cc5babdc28", - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "25261412-94d7-4d40-85ca-e9b3e12fbd79", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "dd5517aa-e341-48e2-852c-f4c86c827715", + "uuid": "bc9c9578-ca22-4f28-9a78-97aafd7aae1e", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "uuid": "42309230-3043-4173-bca8-0e3f34eba18c", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "5cea1993-81e9-4629-be02-5ccfadb18d10", - "createdAt": "2016-08-27", - "completed": "2022-03-23", - "initiated": "2019-01-22", - "ministryContact": "ARMSTRONG EDDIE", + "uuid": "985cf00f-4853-47fd-a686-aea51ce3a191", + "createdAt": "2020-07-11", + "completed": "2017-05-21", + "initiated": "2018-05-08", + "ministryContact": "KUNDE TALON", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -80516,44 +94970,26 @@ ], "notationParticipants": [ { - "uuid": "9995794e-2654-4dd7-ad7b-c30aed2c9a5b", - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "uuid": "1cd4576a-c9cf-4b36-9c71-0d96e0af922d", + "uuid": "ccebe549-b107-4115-9a88-c79a88486332", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "224209e2-c165-4ee9-aac6-95d7a451653a", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "uuid": "6886afae-d733-4fcf-8dcb-e6fbe7fe1c61", + "uuid": "91270df2-37be-4638-8675-763aa0d6f520", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "uuid": "db0c7ab3-87cd-4c96-98c9-c4e63cebf2d9", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "dbe4ecd7-f5d1-4fcf-8e51-5493f4c8f85a", - "createdAt": "2014-10-09", - "completed": "2021-02-16", - "initiated": "2017-06-20", - "ministryContact": "BERNIER ELEONORE", + "uuid": "1bfef0a4-04fc-4f23-9467-32cc73c2d3c3", + "createdAt": "2014-11-29", + "completed": "2016-11-09", + "initiated": "2014-10-25", + "ministryContact": "HELLER PRECIOUS", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -80562,32 +94998,32 @@ ], "notationParticipants": [ { - "uuid": "59aff8f6-4ec4-413e-9e0f-7cc011a144cb", - "name": "SHELL CANADA PRODUCTS", + "uuid": "0496711a-2c51-4031-9630-ec96d0d3e3a8", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "fd7be1eb-9307-452a-b62f-d8d2bf3c4435", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "uuid": "e627212e-a912-4f77-b5e1-6dd5991f472a", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": true }, { - "uuid": "641c4919-592f-45a0-ac2d-f3e500f3ae21", + "uuid": "80384786-3752-48b6-b83b-d9880ee32367", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false + "role": "REQUESTED BY", + "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "422a7746-1afb-4b0c-ab41-d9a9c0af48f6", - "createdAt": "2019-06-24", - "completed": "2022-02-15", - "initiated": "2014-10-13", - "ministryContact": "HERMAN JESUS", + "uuid": "1136e314-5f2f-47c4-8bd4-d787b122027b", + "createdAt": "2016-08-03", + "completed": "2018-06-07", + "initiated": "2022-03-21", + "ministryContact": "LARSON MARILYNE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -80596,212 +95032,254 @@ ], "notationParticipants": [ { - "uuid": "e1ec02d9-77a8-4e30-94e4-76dceb4e2b93", - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "5b5062e7-13a5-4fd4-8f66-dd969fd8ce60", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "0bee9c74-ec66-435d-bb0d-7f70131e9bbe", + "uuid": "10b664db-3da6-4718-b9c6-95a348a3c5a9", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "uuid": "7f48a0a8-aed9-4101-846e-65b0dda7e891", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false + "role": "SUBMITTED BY", + "siteRegistry": true }, { - "uuid": "bcc463e2-3fe6-494a-ab47-68c91d0c0632", + "uuid": "bbad4c18-0c05-4013-beed-cdabc62a6aaf", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "acfe799f-745b-4fc8-8fca-959c0e2dff88", + "uuid": "1b117529-23a5-48b6-ad16-89f7f18c912b", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true + "role": "SUBMITTED BY", + "siteRegistry": false } ], + "siteRegistry": true + } + ], + "participants": [ + { + "uuid": "8e6a6dea-7e1d-493b-9c0f-44ae1be3a53c", + "name": "AMET, DOLOR SIT", + "endDate": "2020-12-10", + "startDate": "2016-04-18", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "uuid": "3e1a8360-a5ff-4a41-ac4c-3c46cf0be1c3", + "name": "AMET, DOLOR SIT", + "endDate": "2015-02-27", + "startDate": "2016-03-21", + "notes": "", + "roles": [ + "EMPLOYEE" + ], "siteRegistry": false }, { - "uuid": "6c186138-ae84-424f-9343-03449d9b55ae", - "createdAt": "2018-04-12", - "completed": "2016-12-02", - "initiated": "2021-11-23", - "ministryContact": "JAKUBOWSKI CONNOR", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" + "uuid": "66783945-8e3d-4370-b8de-e54c45686d35", + "name": "AMET, DOLOR SIT", + "endDate": "2018-05-24", + "startDate": "2020-06-18", + "notes": "", + "roles": [ + "ORGANIZATION" ], - "notationParticipants": [ + "siteRegistry": true + } + ], + "documents": [ + { + "uuid": "39d0fb0c-d4b0-4aab-be27-b342c75776fc", + "siteRegistry": false, + "documentDate": "2019-06-27", + "receivedDate": "2014-08-29", + "uploadedDate": "2020-09-09", + "title": "Preliminary Site Investigation, Detailed Site Investigation and Remedial Plan for the Management Area adjacent to the Shell Site at 1503 West 41st Ave", + "participants": [ { - "uuid": "65e23b4e-33ac-44b8-86ed-090521404f2e", + "uuid": "e3d3052e-1f76-4373-9cc9-f424fa0a2cb9", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true, + "role": "AUTHOR" + } + ] + }, + { + "uuid": "e55cbe27-3b08-4c15-b379-991ba664f63a", + "siteRegistry": false, + "documentDate": "2023-02-14", + "receivedDate": "2017-07-25", + "uploadedDate": "2016-06-04", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "6a06649d-7ecd-4c47-affc-d10d42328ac6", + "name": "AMET, DOLOR SIT", + "siteRegistry": true, + "role": "AUTHOR" }, { - "uuid": "79e8d495-d644-4b8c-8c3a-b26ddbac2752", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false + "uuid": "08fc5b18-6065-4d29-a19d-c135252ba672", + "name": "AMET, DOLOR SIT", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "242ea591-0ac2-4888-b952-b86714564b0e", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": true, + "role": "AUTHOR" + } + ] + }, + { + "uuid": "88a0e9d2-1319-40e4-8590-ea45d1f0b342", + "siteRegistry": true, + "documentDate": "2019-08-02", + "receivedDate": "2018-10-27", + "uploadedDate": "2021-05-01", + "title": "Preliminary Site Investigation, Detailed Site Investigation and Remedial Plan for the Management Area adjacent to the Shell Site at 1503 West 41st Ave", + "participants": [ + { + "uuid": "c3836461-cae0-4a41-a21a-cb7d1d8e6237", + "name": "IPSUM", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "1881c280-4ffe-405b-be6e-2004d1c34c6b", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "43d4ea3f-2d5c-449d-b6c2-468427ba9618", + "name": "AMET, DOLOR SIT", + "siteRegistry": true, + "role": "AUTHOR" + } + ] + }, + { + "uuid": "3869533d-347c-407d-8d72-94624a5f363e", + "siteRegistry": true, + "documentDate": "2022-04-06", + "receivedDate": "2014-01-19", + "uploadedDate": "2020-05-26", + "title": "Summary of Site Conditions, 1537 W 41st Avenue, Vancouver", + "participants": [ + { + "uuid": "866b2221-e59a-4250-ac14-7b4d668c9132", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": false, + "role": "AUTHOR" }, { - "uuid": "b42ec90b-2c1c-421a-8b96-45efb2779346", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true + "uuid": "28f04463-734f-43a2-a975-2fb77526f354", + "name": "IPSUM", + "siteRegistry": false, + "role": "AUTHOR" }, { - "uuid": "bded73fa-37c0-492c-b780-c7e724710716", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true + "uuid": "5713ee60-e7c2-45e9-93aa-67a17b0d0ac7", + "name": "IPSUM", + "siteRegistry": false, + "role": "AUTHOR" } - ], - "siteRegistry": false - } - ], - "participants": [ - { - "uuid": "3cabb933-a475-4f16-bf23-18cd78997ffd", - "name": "SHELL CANADA PRODUCTS", - "endDate": "2021-05-04", - "startDate": "2014-04-16", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": false - }, - { - "uuid": "db24290d-5779-4d5b-898c-0c1ee6f745db", - "name": "AMET, DOLOR SIT", - "endDate": "2017-10-19", - "startDate": "2021-08-08", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": true - }, - { - "uuid": "f3bdf0f5-c1b6-4b24-9431-64b3129beef9", - "name": "AMET, DOLOR SIT", - "endDate": "2017-04-24", - "startDate": "2022-04-24", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": true + ] } ], "suspectLandUses": [ { - "uuid": "17c7f48b-c3f5-41ae-99ea-b8a73a316fc6", + "uuid": "71562531-a9c5-46f3-9237-df5f0b751a3f", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-06-03 (described on Site Profile dated 2022-06-03)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "notes": "INSERTED FOR SITE PROFILE DATED 2014-02-24 (described on Site Profile dated 2014-02-24)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "uuid": "56c80402-73d6-4235-8b55-eec4eb48fdd1", + "uuid": "04e60c4e-1f67-4208-8892-25d32b5f1849", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-08-13 (described on Site Profile dated 2018-08-13)", + "notes": "INSERTED FOR SITE PROFILE DATED 2022-04-13 (described on Site Profile dated 2022-04-13)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], "parcelDescriptions": [ { - "uuid": "eee2d839-becd-47d1-ac30-2c9b9ef5e9eb", + "uuid": "3d69d2c9-870e-46b0-a394-b5f7978a4867", "siteRegistry": true, - "dateNoted": "2018-08-14", - "parcelID": "16602", - "crownLandUsePIN": "17280", - "crownLandFileNumber": "19396", - "landDescription": "LOT 5 OF LOT 3 BLOCK 4 DISTRICT LOT 1 PLAN 9621" + "dateNoted": "2013-11-22", + "parcelID": "16100", + "crownLandUsePIN": "17471", + "crownLandFileNumber": "20648", + "landDescription": "LOT 1 OF LOT 3 BLOCK 1 DISTRICT LOT 4 PLAN 7779" }, { - "uuid": "c6986578-b1d3-447a-9ebb-0490ff367c62", + "uuid": "3fd91554-48ec-4656-914e-93ba52477988", "siteRegistry": false, - "dateNoted": "2017-05-07", - "parcelID": "20222", - "crownLandUsePIN": "17485", - "crownLandFileNumber": "16200", - "landDescription": "LOT 4 OF LOT 4 BLOCK 5 DISTRICT LOT 2 PLAN 9426" + "dateNoted": "2015-05-12", + "parcelID": "19562", + "crownLandUsePIN": "16242", + "crownLandFileNumber": "18186", + "landDescription": "LOT 1 OF LOT 4 BLOCK 3 DISTRICT LOT 1 PLAN 4255" }, { - "uuid": "0ca580e5-3a9d-46ba-af47-6692771704e8", + "uuid": "98fb518e-4410-4370-b2de-98254e0cef10", "siteRegistry": false, - "dateNoted": "2016-06-17", - "parcelID": "20076", - "crownLandUsePIN": "19295", - "crownLandFileNumber": "17520", - "landDescription": "LOT 5 OF LOT 2 BLOCK 1 DISTRICT LOT 2 PLAN 9238" + "dateNoted": "2017-07-30", + "parcelID": "18788", + "crownLandUsePIN": "16735", + "crownLandFileNumber": "20639", + "landDescription": "LOT 1 OF LOT 2 BLOCK 5 DISTRICT LOT 5 PLAN 3822" + }, + { + "uuid": "a9f7faae-6941-4a2e-8080-d6fe323d5710", + "siteRegistry": true, + "dateNoted": "2018-06-30", + "parcelID": "15627", + "crownLandUsePIN": "19181", + "crownLandFileNumber": "16879", + "landDescription": "LOT 5 OF LOT 4 BLOCK 5 DISTRICT LOT 2 PLAN 6607" + }, + { + "uuid": "b72181f6-0a48-4848-aa96-70dbb67279e5", + "siteRegistry": true, + "dateNoted": "2014-03-14", + "parcelID": "17094", + "crownLandUsePIN": "19268", + "crownLandFileNumber": "17137", + "landDescription": "LOT 2 OF LOT 4 BLOCK 4 DISTRICT LOT 5 PLAN 5092" } ], "siteDisclosures": [ { - "uuid": "fb737cea-b149-40fd-9f26-112b59164fe1", - "siteRegistry": false, - "dateReceived": "2019-08-31", - "dateCompleted": "2022-09-27", - "dateEntered": "2020-04-06", - "dateRegistrar": "2015-04-17", - "dateLocalAuthorityReceived": "2015-08-19", - "summary": "Nesciunt et animi impedit eligendi fugiat facere voluptate.", - "informationUsed": "Veritatis assumenda dolorem aliquam ipsa vero facilis ipsum voluptatibus.\nLibero ex tempore officia repellendus eligendi qui similique.\nPariatur culpa commodi praesentium consequuntur debitis suscipit mollitia tempore ipsam.\nQuidem illum distinctio magni iste voluptate autem facere ipsum.", - "pastOrPresentOrders": "Quam explicabo quis dicta assumenda cupiditate aliquam laboriosam animi.\nAtque ipsum ea ea impedit tenetur excepturi.\nMolestiae vitae odit.", + "uuid": "1564feea-2056-43b3-a813-494efe908038", + "siteRegistry": true, + "dateReceived": "2019-12-14", + "dateCompleted": "2020-10-09", + "dateEntered": "2016-04-18", + "dateRegistrar": "2013-12-29", + "dateLocalAuthorityReceived": "2015-06-19", + "summary": "Earum sequi mollitia perferendis.\nReprehenderit incidunt eum reiciendis.", + "informationUsed": "Ea sit numquam eveniet voluptatem quidem.\nVitae nostrum modi.\nVero ullam eveniet architecto asperiores.\nCulpa laudantium iusto repellendus optio rem earum.", + "pastOrPresentOrders": "Exercitationem dicta unde eos.\nDolores reiciendis officia optio quibusdam veritatis earum eaque officiis distinctio.\nBlanditiis at quos vero inventore aperiam.", "commercialAndIndustrialPurposes": [ { - "uuid": "9b5fd9f8-625e-4131-ab5e-be8685b82a94", + "uuid": "566af44f-86cf-4b04-8a0f-5fad2719332a", "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true - }, - { - "uuid": "9288bb96-18ca-413d-90a7-677af747cb1a", - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false - } - ] - }, - { - "uuid": "612026f6-0663-442b-aa44-317dea53e099", - "siteRegistry": false, - "dateReceived": "2017-01-24", - "dateCompleted": "2014-10-07", - "dateEntered": "2023-09-28", - "dateRegistrar": "2014-11-16", - "dateLocalAuthorityReceived": "2014-12-22", - "summary": "Fugiat officiis maxime tenetur ipsum suscipit harum.", - "informationUsed": "Porro debitis quo totam mollitia dolor repellendus nostrum.\nSapiente aspernatur omnis quasi fugit maiores.\nLaboriosam iusto maiores accusamus ipsam.\nAd neque possimus.", - "pastOrPresentOrders": "A debitis cupiditate earum inventore distinctio fuga hic.\nQuaerat sit voluptates necessitatibus delectus perferendis.\nDolor suscipit recusandae.", - "commercialAndIndustrialPurposes": [ - { - "uuid": "47938c80-9845-4e4a-a6cd-f2bbf7ef1da2", - "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, { - "uuid": "d18b1ec5-98ed-40a9-8d2b-5b47127949c9", - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false - }, - { - "uuid": "0a7a252f-76ce-40a9-a7db-7c8d5dfa03b2", + "uuid": "d74e33bd-a119-4ad4-8d82-643b19e87b13", "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true } ] @@ -80809,121 +95287,99 @@ ], "activityLog": [ { - "uuid": "d15d8359-c60a-425c-b575-d90104863775", - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "GIBSON MAYE", - "timestamp": "2014-03-04" - }, - { - "uuid": "eccd5b94-eafd-4da5-93e4-65659983205d", - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "BROWN MARCUS", - "timestamp": "2014-02-28" - }, - { - "uuid": "cf1b602e-3947-4d0c-b204-cdd79683cf5f", + "uuid": "2c999bb8-caeb-46c5-a75e-4665750b4d70", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "GERLACH LISANDRO", - "timestamp": "2017-05-08" + "user": "SENGER CECILIA", + "timestamp": "2022-08-20" }, { - "uuid": "12ce73d4-5b3c-43d5-bc55-7cdc33b6b060", + "uuid": "1760e504-54eb-459c-af7a-2cf56c88d308", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "RATH TREVION", - "timestamp": "2018-05-25" + "user": "WINDLER DEON", + "timestamp": "2016-07-31" }, { - "uuid": "db2c2058-5abd-4280-9a18-d0f925de9f19", + "uuid": "23ba886d-e59b-436f-a011-f417061d499e", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "EMARD NEWTON", - "timestamp": "2019-12-19" + "user": "SCHUSTER LACY", + "timestamp": "2023-06-28" }, { - "uuid": "da695a10-4525-4420-91c7-3fd573962249", + "uuid": "18ac2664-d9a1-47c7-a9d1-fbceee534d26", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "HERMAN KALEY", - "timestamp": "2014-01-29" + "user": "HOEGER GINA", + "timestamp": "2015-02-06" }, { - "uuid": "7e810fae-783a-4ec0-b47e-d04dca6c58f6", + "uuid": "d386252e-fe6a-4e47-b6dc-f8b377ff8ff5", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "PROSACCO JEREL", - "timestamp": "2018-11-30" + "user": "KRAJCIK PIERCE", + "timestamp": "2023-07-16" }, { - "uuid": "bc6766e2-43e2-4384-ab9c-dd9241f68298", - "siteRegistry": true, + "uuid": "71e57a76-5143-4c79-9ae0-5f7a870f1b17", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "FEIL NEIL", - "timestamp": "2023-10-06" + "user": "RENNER ALTHEA", + "timestamp": "2022-08-25" }, { - "uuid": "c7cd8c1e-a813-4463-94f6-cfae912d322b", - "siteRegistry": true, + "uuid": "9e22bbef-13d3-4a73-a8df-815b9e03c5d0", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "STARK MERLIN", - "timestamp": "2018-06-17" + "user": "MOHR FRIEDA", + "timestamp": "2015-11-05" }, { - "uuid": "e160e74c-7fcf-4300-978d-f7ac075ca302", - "siteRegistry": false, + "uuid": "c031cfad-6718-4a15-b2c2-d4ee5b8dce39", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "WELCH EFRAIN", - "timestamp": "2019-04-05" + "user": "SKILES KATHLYN", + "timestamp": "2017-07-25" } ], "associatedSites": [ { - "uuid": "c091fe8b-dc28-4737-9f2a-cdd6890eab59", - "dateNoted": "2014-07-26", + "uuid": "82a939ed-23a5-4aff-9067-83ac367b8971", + "dateNoted": "2023-07-10", "notes": "", - "parcelID": "17801", - "siteID": "16415", + "parcelID": "20000", + "siteID": "16834", "siteRegistry": false - }, - { - "uuid": "192ee7fb-1e8a-4bcd-a2b5-93b9ca477dd5", - "dateNoted": "2021-09-01", - "notes": "", - "parcelID": "15578", - "siteID": "19218", - "siteRegistry": true } ] }, { - "uuid": "8be22f59-645f-4bc3-a261-726f20befca8", - "siteID": 16419, - "address": "6915 Nitzsche Courts", - "latitude": 53.4286, - "longitude": -126.3331, - "lastUpdated": "2017-10-21", - "city": "Moshefort", + "uuid": "a76a5dc5-7307-4a46-b549-ae559eff42a8", + "siteID": 19389, + "address": "1626 Holden Plaza", + "latitude": 49.2304, + "longitude": -122.8484, + "lastUpdated": "2017-02-19", + "city": "Fort Natalieworth", "region": "Vancouver Island/Coast", - "victoriaFile": "26250-20/10982", + "victoriaFile": "26250-20/19094", "regionalFile": "N/A", "parcelIDs": [ - 2944571, - 5204150, - 7611140, - 6826439, - 4888172 + 5610116, + 8906386, + 5269339, + 8620589, + 3671509 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "1d6eecfc-5c14-49db-ae8b-3d77521acb0a", - "createdAt": "2017-06-27", - "completed": "2016-06-16", - "initiated": "2014-05-03", - "ministryContact": "MCCLURE-CARROLL RYLEIGH", + "uuid": "026edc88-3bec-4321-b784-078e8e9c2493", + "createdAt": "2014-11-19", + "completed": "2021-05-28", + "initiated": "2018-12-08", + "ministryContact": "RODRIGUEZ ROSALINDA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -80932,20 +95388,20 @@ ], "notationParticipants": [ { - "uuid": "f9b3d8aa-f1aa-4fdc-a06c-9110eb77b07b", - "name": "SHELL CANADA PRODUCTS", + "uuid": "0c7571a3-9619-4045-847a-ff5a4f500619", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "7a0da616-880a-471c-bc7e-c972d2f1a091", + "uuid": "d2c09e07-8371-40c1-bdf2-135123085cec", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "bdeec181-4392-4696-88ef-62c08b72a2bb", - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "521d22be-88aa-48f1-adcf-af4ee707ebb6", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true } @@ -80953,11 +95409,11 @@ "siteRegistry": false }, { - "uuid": "ecd8a0f0-b46b-4e3f-ba03-bae60eaa87c1", - "createdAt": "2022-03-05", - "completed": "2021-12-20", - "initiated": "2023-06-15", - "ministryContact": "FAHEY LUTHER", + "uuid": "873ec07e-d5cd-498b-a62e-4bc589f573ca", + "createdAt": "2018-11-21", + "completed": "2019-08-24", + "initiated": "2023-02-18", + "ministryContact": "JAKUBOWSKI AMY", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -80966,26 +95422,38 @@ ], "notationParticipants": [ { - "uuid": "b3721d7d-9b43-464e-b7c2-1f1b6f30480d", + "uuid": "d02a274d-39b6-4aef-878c-a0e2bc9c9c34", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true }, { - "uuid": "530e268d-12d8-4ed0-980f-25c3325ac07a", + "uuid": "34488103-c87c-4e17-87e5-9a5c1d7a2830", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false + }, + { + "uuid": "db1113f3-672a-422e-ac2a-bbb85e47fa97", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "705f7bcd-4889-4ec7-b326-3579d753993b", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false } ], "siteRegistry": false }, { - "uuid": "48e7356a-e256-4bc8-8798-bc2b8cb4d309", - "createdAt": "2019-12-31", - "completed": "2018-08-17", - "initiated": "2021-12-31", - "ministryContact": "PROSACCO KAREN", + "uuid": "233f4d5a-bdca-447b-a0b2-35db5124e4d4", + "createdAt": "2015-06-20", + "completed": "2015-09-17", + "initiated": "2023-02-17", + "ministryContact": "SKILES MARTINE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -80994,25 +95462,59 @@ ], "notationParticipants": [ { - "uuid": "ef366e45-402e-4c5a-ac63-327e00a509a0", + "uuid": "399910d1-47c1-42b4-a7fe-a42b8a435d28", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true }, { - "uuid": "401f3bb2-0982-4a47-a1e7-a4acc00926dd", + "uuid": "48f995dd-c91b-4fd7-bcf7-011df4c94cd0", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "077e17b5-1aa2-42c9-8bfa-9b879076e106", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "41f43b82-abf0-4dc1-9271-9c5763bd7073", + "uuid": "cfb0db19-125c-48c9-9e1a-3869eb054d2b", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "uuid": "45458b51-b92c-4eb3-a811-154354b1edb7", + "createdAt": "2019-07-30", + "completed": "2019-02-11", + "initiated": "2018-11-25", + "ministryContact": "DUBUQUE DAYTON", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "uuid": "5c0b5d85-d3ff-4e33-a928-ff2e6a9b9e5b", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "uuid": "34189420-fa9d-4866-b578-84d50659577e", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "fd53f32c-9e23-4432-bbb6-e0bdca777d34", + "uuid": "fe734725-3a6e-42fe-803a-bb55b23fd6d9", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true @@ -81023,10 +95525,10 @@ ], "participants": [ { - "uuid": "f0325492-6c47-4b97-ab38-409ad2c7ef3a", + "uuid": "aa41695b-e5ac-42d7-bc79-a956d4a6ee25", "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2017-11-19", - "startDate": "2020-08-09", + "endDate": "2018-05-26", + "startDate": "2013-10-28", "notes": "", "roles": [ "ORGANIZATION" @@ -81034,10 +95536,21 @@ "siteRegistry": true }, { - "uuid": "1325e418-1a9a-4da0-a11c-0adbdb1f0ebd", + "uuid": "9216a8d9-9a57-452f-bf9f-bf289d1992ea", "name": "AMET, DOLOR SIT", - "endDate": "2022-12-14", - "startDate": "2021-10-07", + "endDate": "2017-11-29", + "startDate": "2015-06-28", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "uuid": "6b221f06-3284-4277-adb1-03f1f91ca452", + "name": "AMET, DOLOR SIT", + "endDate": "2019-12-26", + "startDate": "2020-04-05", "notes": "", "roles": [ "ORGANIZATION" @@ -81045,107 +95558,202 @@ "siteRegistry": true } ], - "suspectLandUses": [ + "documents": [ + { + "uuid": "e2205e18-a437-461d-bb25-a1d4f13a7297", + "siteRegistry": false, + "documentDate": "2020-01-19", + "receivedDate": "2020-01-24", + "uploadedDate": "2022-09-11", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "5384c067-e551-42cd-94ef-ee6d7dcea810", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "736cddc4-22b5-4055-938b-03fb58197dda", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "6dbf1234-a901-4c6e-98e5-a49dbb990eb7", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": false, + "role": "AUTHOR" + } + ] + }, + { + "uuid": "7d28f4c1-2f29-45d6-92c1-d66952f83d6a", + "siteRegistry": false, + "documentDate": "2015-05-22", + "receivedDate": "2015-01-14", + "uploadedDate": "2014-10-30", + "title": "Preliminary Site Investigation, Detailed Site Investigation and Remedial Plan for the Management Area adjacent to the Shell Site at 1503 West 41st Ave", + "participants": [ + { + "uuid": "b51ef93d-e891-42cc-a232-488fa88c0557", + "name": "AMET, DOLOR SIT", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "280d2a9f-9dd0-4dd6-9915-fda33c1eeb10", + "name": "AMET, DOLOR SIT", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "d42fbc8e-26b7-4af4-96e0-5f70a8c6cf7d", + "name": "AMET, DOLOR SIT", + "siteRegistry": false, + "role": "AUTHOR" + } + ] + }, { - "uuid": "d4a506e3-0cac-405c-9854-de5347c74138", + "uuid": "65dc67d1-a0c9-4d84-bdf5-8c4493958326", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-02-02 (described on Site Profile dated 2022-02-02)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "documentDate": "2021-08-23", + "receivedDate": "2019-02-27", + "uploadedDate": "2017-09-07", + "title": "Summary of Site Conditions, 1537 W 41st Avenue, Vancouver", + "participants": [ + { + "uuid": "9d05e7f7-d712-484c-bd9b-a04a0b42a0a8", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "898ab318-18a2-48f0-9107-0e2a2172367a", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "f1752f27-4275-4f7c-b32b-e25d720a8ecf", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": false, + "role": "AUTHOR" + } + ] + }, + { + "uuid": "27dd0f39-8b27-449d-9697-7cf166c35aec", + "siteRegistry": false, + "documentDate": "2016-09-27", + "receivedDate": "2014-06-06", + "uploadedDate": "2020-07-03", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "16bb1246-9366-4ea2-9ad0-fdd9870fee69", + "name": "IPSUM", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "4003fea5-9964-4a58-b2d6-6a3830d5a8f0", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": true, + "role": "AUTHOR" + } + ] }, { - "uuid": "8b2251ac-3ce7-45bf-9b7d-ff9de00820a2", + "uuid": "890eee17-79cd-4c4e-8b76-bd7888909e8c", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-01-24 (described on Site Profile dated 2017-01-24)", + "documentDate": "2017-06-03", + "receivedDate": "2021-07-19", + "uploadedDate": "2023-07-01", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "ffcdeba3-7eb1-4e4e-8630-98f220788d83", + "name": "AMET, DOLOR SIT", + "siteRegistry": false, + "role": "AUTHOR" + } + ] + } + ], + "suspectLandUses": [ + { + "uuid": "82cf8a95-b456-4b47-bc2c-4c28e546921c", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2015-02-02 (described on Site Profile dated 2015-02-02)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "uuid": "257447fc-ee0b-4447-9871-62f91bd46843", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2021-05-24 (described on Site Profile dated 2021-05-24)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "uuid": "28db85a2-a191-403f-86b8-08ef285c29e3", + "uuid": "1ca12ef1-2a94-48ed-a61f-c3ae67e5c1ee", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-01-01 (described on Site Profile dated 2018-01-01)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "notes": "INSERTED FOR SITE PROFILE DATED 2015-06-09 (described on Site Profile dated 2015-06-09)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], "parcelDescriptions": [ { - "uuid": "3afcea5f-e515-4677-a111-66e0f152d321", + "uuid": "fd303b28-a582-4592-bd1a-ef4a96ea4320", + "siteRegistry": true, + "dateNoted": "2018-03-17", + "parcelID": "16779", + "crownLandUsePIN": "18555", + "crownLandFileNumber": "17370", + "landDescription": "LOT 1 OF LOT 4 BLOCK 4 DISTRICT LOT 2 PLAN 3836" + }, + { + "uuid": "f9f2e667-1905-4e0e-8772-ae2402855dcb", "siteRegistry": false, - "dateNoted": "2020-12-18", - "parcelID": "16648", - "crownLandUsePIN": "19799", - "crownLandFileNumber": "19020", - "landDescription": "LOT 2 OF LOT 5 BLOCK 5 DISTRICT LOT 2 PLAN 4227" + "dateNoted": "2015-06-27", + "parcelID": "17543", + "crownLandUsePIN": "19058", + "crownLandFileNumber": "19574", + "landDescription": "LOT 1 OF LOT 3 BLOCK 3 DISTRICT LOT 5 PLAN 9547" }, { - "uuid": "14c6283d-fa85-44e1-9fc0-6255be8a5af0", + "uuid": "0dbd5a0c-4c02-4141-8d84-bb876512175b", "siteRegistry": false, - "dateNoted": "2015-11-06", - "parcelID": "20946", - "crownLandUsePIN": "16039", - "crownLandFileNumber": "16019", - "landDescription": "LOT 2 OF LOT 2 BLOCK 3 DISTRICT LOT 3 PLAN 6923" + "dateNoted": "2023-06-18", + "parcelID": "19103", + "crownLandUsePIN": "20006", + "crownLandFileNumber": "20562", + "landDescription": "LOT 5 OF LOT 1 BLOCK 4 DISTRICT LOT 3 PLAN 9041" } ], "siteDisclosures": [ { - "uuid": "94cd9842-9f02-406f-ae1c-803b92ad6612", + "uuid": "dd173ebc-2512-4c78-a9ba-67e9d5cf729f", "siteRegistry": false, - "dateReceived": "2019-02-03", - "dateCompleted": "2015-01-09", - "dateEntered": "2016-06-08", - "dateRegistrar": "2014-04-20", - "dateLocalAuthorityReceived": "2017-11-22", - "summary": "Quisquam adipisci dignissimos eaque hic.\nImpedit nemo quidem ex.", - "informationUsed": "Voluptatum iusto sapiente ad repellat excepturi hic odit magni.\nNihil quo voluptatem inventore consequatur magni molestiae quidem dolores.\nRepellat doloribus quibusdam esse porro soluta molestias itaque.", - "pastOrPresentOrders": "Possimus magnam fugit rerum deserunt inventore quos rerum.\nQuia fuga sunt exercitationem atque.\nEarum nulla dicta.", - "commercialAndIndustrialPurposes": [ - { - "uuid": "41ab9cb2-6dec-4d6c-b0ee-ec5406383555", - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false - }, - { - "uuid": "8c31f3e2-6cec-4460-a2e4-7b64f91ffea4", - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true - } - ] - }, - { - "uuid": "93e25247-d164-4aac-b71c-345ba15f94de", - "siteRegistry": true, - "dateReceived": "2018-05-12", - "dateCompleted": "2015-09-22", - "dateEntered": "2023-04-13", - "dateRegistrar": "2016-03-04", - "dateLocalAuthorityReceived": "2015-02-13", - "summary": "Vitae rerum recusandae esse at placeat culpa temporibus deleniti sed.\nCorporis culpa recusandae temporibus ab.", - "informationUsed": "Aut qui cum ab atque maxime repellat.\nQuod aspernatur aliquid provident laboriosam quis voluptates a tempore.\nLaboriosam similique reprehenderit laudantium natus quo debitis nemo consectetur.\nSaepe vitae dolore architecto molestiae placeat molestiae veritatis.\nNatus occaecati mollitia optio voluptatibus recusandae asperiores quod autem.", - "pastOrPresentOrders": "Dolorum adipisci explicabo nesciunt quia totam eum recusandae sequi.\nError beatae reiciendis dignissimos veritatis ratione.\nNon odit vel nobis recusandae saepe repellat.", + "dateReceived": "2018-07-17", + "dateCompleted": "2016-11-22", + "dateEntered": "2020-05-01", + "dateRegistrar": "2016-05-30", + "dateLocalAuthorityReceived": "2022-04-25", + "summary": "Rem mollitia officiis ratione.\nCulpa explicabo asperiores culpa.\nMaiores vitae hic dolores id vel perferendis.", + "informationUsed": "Sint cupiditate cum inventore quia.\nModi aliquam assumenda vel fuga.\nTempora a eveniet sit laboriosam alias.\nAccusantium quis debitis explicabo ut perspiciatis.\nQuas quia ipsa quisquam sunt ducimus repudiandae asperiores voluptate at.", + "pastOrPresentOrders": "Optio similique repellat praesentium.\nOptio nesciunt dolores explicabo asperiores ab ex.\nCorrupti nulla quae reiciendis praesentium dolore.", "commercialAndIndustrialPurposes": [ { - "uuid": "e4bc5335-abc6-49d6-a90c-fde8380de412", + "uuid": "e9995b1b-9d32-4eac-8431-dcb9c46b05d3", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { - "uuid": "3f004b49-c30f-4d1d-9cc5-7f629a7a1e9d", - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false - }, - { - "uuid": "ca6dcad7-d477-4861-a9ad-16b60f579eb8", - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false - }, - { - "uuid": "9251026a-7410-47b3-8368-a156070a275a", + "uuid": "549d8545-df24-45aa-8d5d-430d6bb66c9d", "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false } ] @@ -81153,106 +95761,93 @@ ], "activityLog": [ { - "uuid": "cac2d210-5fc2-419c-959b-036f5ede5cc9", + "uuid": "3fb85a9f-3ba9-4443-8e77-42646fc695f3", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "O'KEEFE CLAUDE", - "timestamp": "2020-12-05" + "user": "MOHR JOHAN", + "timestamp": "2021-12-07" }, { - "uuid": "c8a28478-4108-4f32-88ea-94880bddf1e2", - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "SCHMELER ALDA", - "timestamp": "2020-03-06" - }, - { - "uuid": "4e1c6f3e-a756-45d1-ac2f-02b60e72883f", + "uuid": "4951e4ab-5be3-4bb9-8b28-0805f3701a71", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "FRITSCH LOLA", - "timestamp": "2021-12-01" + "user": "FAHEY JAMISON", + "timestamp": "2021-12-02" }, { - "uuid": "a2ec099d-843e-42b5-b8e0-e7a45d520b2d", + "uuid": "6ff0b9fc-ccf2-463a-904c-e6f4a8651740", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "YOST DARIEN", - "timestamp": "2014-12-03" + "user": "AUFDERHAR JANIS", + "timestamp": "2020-02-18" }, { - "uuid": "19d27f74-1d00-4836-ad47-dd6516a2b8dc", + "uuid": "a40c87e7-06fd-4018-bc22-3f4037e495c9", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "WITTING CONNIE", - "timestamp": "2016-04-20" + "user": "KUB MYRIAM", + "timestamp": "2022-08-26" }, { - "uuid": "b357cd5e-eec7-473f-a19f-194a616cbcea", + "uuid": "9fe5266b-901f-42d7-a975-6502a1076d6d", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "HAMMES AVA", - "timestamp": "2015-08-16" - }, - { - "uuid": "1a080d41-463f-4d48-ad29-8d24f4fba0dc", - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "PREDOVIC GEORGE", - "timestamp": "2022-03-04" + "user": "LEFFLER EZEQUIEL", + "timestamp": "2018-10-04" }, { - "uuid": "e1f21557-ccc5-43e1-ab77-a10a1aa96517", + "uuid": "76369240-f8d4-4d14-a176-c9cce583cbf4", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "TREUTEL KENYATTA", - "timestamp": "2016-01-30" - }, - { - "uuid": "c69023f9-62ad-4fb9-acd5-8278858983b7", - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "CONNELLY FRED", - "timestamp": "2021-03-07" + "user": "CHAMPLIN WINFIELD", + "timestamp": "2019-01-24" } ], "associatedSites": [ { - "uuid": "3bcfeac2-31d9-4754-9375-3ab118ce8bc1", - "dateNoted": "2020-07-08", + "uuid": "9ce53a7c-0556-4508-92e5-51b94f918960", + "dateNoted": "2022-04-16", + "notes": "", + "parcelID": "20482", + "siteID": "16403", + "siteRegistry": false + }, + { + "uuid": "99c3b6fa-16ea-4a71-a700-7d4edca93371", + "dateNoted": "2023-05-24", "notes": "", - "parcelID": "17231", - "siteID": "19927", + "parcelID": "18795", + "siteID": "15971", "siteRegistry": true } ] }, { - "uuid": "da2c922a-a765-4aa8-9362-31fd6bf25e37", - "siteID": 20778, - "address": "8427 Ledner Mews", - "latitude": 57.683, - "longitude": -123.4356, - "lastUpdated": "2017-09-25", - "city": "Taunton", - "region": "Vancouver Island/Coast", - "victoriaFile": "26250-20/1006", + "uuid": "78536310-df8e-42ba-9f36-3d458e467a67", + "siteID": 17031, + "address": "89491 O'Connell Alley", + "latitude": 53.7051, + "longitude": -134.5613, + "lastUpdated": "2023-01-05", + "city": "Crystelhaven", + "region": "Thompson-Okanagan", + "victoriaFile": "26250-20/18623", "regionalFile": "N/A", "parcelIDs": [ - 4337355, - 241891, - 1136709, - 9366289, - 7703390 + 7004318, + 5451680, + 795145, + 2493491, + 2509164 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "5a869a6a-5cfd-4730-bf4c-8ba2b3608b2f", - "createdAt": "2018-12-19", - "completed": "2020-04-24", - "initiated": "2015-03-06", - "ministryContact": "HOWE EUGENIA", + "uuid": "8f970386-1f92-47d3-be28-e3e5af9a5512", + "createdAt": "2016-01-05", + "completed": "2020-08-08", + "initiated": "2016-11-08", + "ministryContact": "KULAS NEIL", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -81261,38 +95856,32 @@ ], "notationParticipants": [ { - "uuid": "6e1c7b71-3ab6-44bd-8991-2686d512fc3f", - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "1111fd89-a725-4079-99d1-08843b9a07e8", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true }, { - "uuid": "b18a77ca-de01-4293-b8aa-0e6448e47031", - "name": "SHELL CANADA PRODUCTS", + "uuid": "059e6981-0f1b-411e-aa2d-107ed8f3cf51", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "uuid": "e65d50db-bdad-4287-a71e-566242db9296", - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "4969e231-7b72-4d9d-8b09-9ced3c05bceb", + "uuid": "d5132736-910c-43b4-9db1-ab2d4a25eeaf", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false + "role": "REQUESTED BY", + "siteRegistry": true } ], "siteRegistry": true }, { - "uuid": "c218a841-8091-4a3b-a68d-ef47446d50fc", - "createdAt": "2022-03-05", - "completed": "2017-10-17", - "initiated": "2015-05-14", - "ministryContact": "BRAKUS MICHAELA", + "uuid": "115c1c49-739f-43bd-8891-4ba7ebe70d5a", + "createdAt": "2021-07-28", + "completed": "2014-05-25", + "initiated": "2022-12-16", + "ministryContact": "PRICE JENSEN", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -81301,22 +95890,34 @@ ], "notationParticipants": [ { - "uuid": "dd048748-cc50-4bd0-979e-5f00281fe9e5", + "uuid": "e0ec1c1c-b29e-40f7-90cd-d625aca1e453", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true + "role": "REQUESTED BY", + "siteRegistry": false }, { - "uuid": "7ef96f00-b5dc-4aa5-a32f-f32cc2bc0a78", - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "uuid": "9ded5d9f-05dd-4b8e-b2b9-0c6558027a8f", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "c027d0a9-5ed3-49e7-b0ef-45566404ee8d", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "3defb09e-dcdf-477c-b977-71cde0b2c70c", + "uuid": "bf8235b8-e806-4a2f-8e39-5ffa6777437a", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false + }, + { + "uuid": "1bc2f78f-ea91-4acd-be2a-3ad81649e6b2", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true } ], "siteRegistry": true @@ -81324,140 +95925,187 @@ ], "participants": [ { - "uuid": "a010e431-cd4b-42af-9b6b-7151297e070f", - "name": "IPSUM", - "endDate": "2017-05-20", - "startDate": "2014-07-02", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": false - }, - { - "uuid": "2aa5db8e-c347-46bd-941d-0dfe1e91bf66", + "uuid": "43a4e567-2dc9-4edc-bec2-0f501523d9a1", "name": "IPSUM", - "endDate": "2023-08-03", - "startDate": "2018-08-10", + "endDate": "2015-06-07", + "startDate": "2014-04-21", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "acfd1472-33eb-40ae-8388-e4309ad0e1df", + "uuid": "16642d1b-354d-4cf6-80a7-18dbf4771897", "name": "SHELL CANADA PRODUCTS", - "endDate": "2017-02-22", - "startDate": "2017-09-22", + "endDate": "2021-03-17", + "startDate": "2023-01-18", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": true + } + ], + "documents": [ + { + "uuid": "83937cf3-60de-41f1-926f-65448188e7fb", + "siteRegistry": false, + "documentDate": "2021-09-07", + "receivedDate": "2020-04-29", + "uploadedDate": "2021-12-23", + "title": "Summary of Site Conditions, 1537 W 41st Avenue, Vancouver", + "participants": [ + { + "uuid": "f3c78209-0994-4591-889c-8a94dc7ffaab", + "name": "AMET, DOLOR SIT", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "44ad6c39-abf1-4311-803a-84e5d89456f9", + "name": "AMET, DOLOR SIT", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "7d4b194e-f5c3-41a7-aa3b-938d0c2bfb11", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": false, + "role": "AUTHOR" + } + ] }, { - "uuid": "eb1077d3-f59c-4bc1-972d-1fbafe4f6564", - "name": "IPSUM", - "endDate": "2016-12-01", - "startDate": "2014-06-14", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": true + "uuid": "ceca4e73-149d-41c8-9b4d-11989050f50e", + "siteRegistry": true, + "documentDate": "2022-06-26", + "receivedDate": "2021-02-17", + "uploadedDate": "2017-04-12", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "edf9f8f1-0378-423a-aa66-d1ef00b23c6b", + "name": "AMET, DOLOR SIT", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "5129aabe-ea9f-4ddd-998e-0001ea88ff4e", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "9d056541-f552-4226-9388-960f0ef21fb8", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": false, + "role": "AUTHOR" + } + ] } ], "suspectLandUses": [ { - "uuid": "399db5ba-1d89-4859-a962-3e5624f42472", - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2020-05-06 (described on Site Profile dated 2020-05-06)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "uuid": "00168976-851d-43f7-88e6-6b758e8f4191", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2014-09-15 (described on Site Profile dated 2014-09-15)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "uuid": "c531fc75-c916-43ad-9e37-91808ecab059", + "uuid": "331d99ea-4f2f-4158-8bb9-168cdd6c0afa", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-04-23 (described on Site Profile dated 2018-04-23)", + "notes": "INSERTED FOR SITE PROFILE DATED 2015-12-04 (described on Site Profile dated 2015-12-04)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "uuid": "e8a0e048-9396-45a3-ac2f-76758e5fc0fa", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2023-03-20 (described on Site Profile dated 2023-03-20)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "uuid": "cff57cd4-9788-43c4-a806-2eb2615a8ff4", + "uuid": "3b83db30-37ba-47f6-a003-e67cb43ab5e1", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-08-23 (described on Site Profile dated 2022-08-23)", + "notes": "INSERTED FOR SITE PROFILE DATED 2022-08-26 (described on Site Profile dated 2022-08-26)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "uuid": "5e1b2c62-a57f-43d8-a595-96da5f1a3c1e", + "uuid": "893338d2-3134-4df3-af22-0d223d59c82c", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2023-08-31 (described on Site Profile dated 2023-08-31)", + "notes": "INSERTED FOR SITE PROFILE DATED 2021-03-12 (described on Site Profile dated 2021-03-12)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], "parcelDescriptions": [ { - "uuid": "fe9fa45b-732a-4aea-a2db-71fdc77d6ef5", - "siteRegistry": true, - "dateNoted": "2014-06-11", - "parcelID": "16652", - "crownLandUsePIN": "20963", - "crownLandFileNumber": "16622", - "landDescription": "LOT 4 OF LOT 3 BLOCK 4 DISTRICT LOT 2 PLAN 7334" - }, - { - "uuid": "468fb833-bb13-49d3-bf7f-d6aadfcef3cd", + "uuid": "a0111894-7f4a-4caa-8b1b-3fb72dfa5cb1", "siteRegistry": false, - "dateNoted": "2016-06-16", - "parcelID": "19521", - "crownLandUsePIN": "17783", - "crownLandFileNumber": "15584", - "landDescription": "LOT 4 OF LOT 3 BLOCK 4 DISTRICT LOT 4 PLAN 7868" + "dateNoted": "2015-10-16", + "parcelID": "19693", + "crownLandUsePIN": "19860", + "crownLandFileNumber": "20943", + "landDescription": "LOT 1 OF LOT 5 BLOCK 3 DISTRICT LOT 2 PLAN 8426" }, { - "uuid": "ce37d36d-906c-49a1-abf0-fc8796f58ec6", - "siteRegistry": true, - "dateNoted": "2020-08-13", - "parcelID": "20482", - "crownLandUsePIN": "17197", - "crownLandFileNumber": "15379", - "landDescription": "LOT 5 OF LOT 4 BLOCK 5 DISTRICT LOT 3 PLAN 6344" + "uuid": "993cc7a1-c7a1-4015-bf13-55310d52f630", + "siteRegistry": false, + "dateNoted": "2021-10-28", + "parcelID": "17565", + "crownLandUsePIN": "18021", + "crownLandFileNumber": "15485", + "landDescription": "LOT 4 OF LOT 2 BLOCK 3 DISTRICT LOT 2 PLAN 7476" } ], "siteDisclosures": [ { - "uuid": "b8e65d4e-bafa-4fbc-a5b0-b655483be7fc", + "uuid": "53505e75-0f65-4856-8336-dc640c411efe", "siteRegistry": true, - "dateReceived": "2023-02-01", - "dateCompleted": "2013-12-03", - "dateEntered": "2020-03-01", - "dateRegistrar": "2022-10-20", - "dateLocalAuthorityReceived": "2016-01-24", - "summary": "Modi reiciendis minima magni recusandae nihil quaerat voluptatum dolore.", - "informationUsed": "Qui tempora praesentium fugit aperiam adipisci et.\nExpedita voluptate delectus.\nDelectus eveniet ut dolor sunt neque.\nCumque ipsum blanditiis quam.", - "pastOrPresentOrders": "Architecto reprehenderit hic.\nEius tempore consequuntur quasi adipisci quibusdam nam ea.", + "dateReceived": "2023-03-07", + "dateCompleted": "2014-03-26", + "dateEntered": "2019-08-01", + "dateRegistrar": "2017-01-02", + "dateLocalAuthorityReceived": "2022-04-14", + "summary": "Mollitia minima exercitationem ad repellat cumque harum.", + "informationUsed": "Molestias tempore minima voluptas quidem ducimus.\nAmet adipisci reprehenderit dolore ducimus dolor.\nPerspiciatis id nam aliquam.", + "pastOrPresentOrders": "Quasi dolore sunt tenetur.\nBlanditiis fugiat natus.\nCumque tempore sint culpa nemo laborum.", "commercialAndIndustrialPurposes": [ { - "uuid": "ac9b6213-9055-4555-86b8-0d1948696619", + "uuid": "a98c3ec4-5641-4b74-9e67-553259f905d2", "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { - "uuid": "73a756b8-a303-48ae-94fa-83c7b031ab4c", + "uuid": "4b11c60c-b7e7-4cd9-a2ba-dea55ebd8ebd", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true - }, + } + ] + }, + { + "uuid": "fd2d3ef5-1918-4437-bff2-d6167b6c2ba3", + "siteRegistry": false, + "dateReceived": "2023-05-18", + "dateCompleted": "2015-07-20", + "dateEntered": "2023-08-11", + "dateRegistrar": "2021-05-05", + "dateLocalAuthorityReceived": "2018-05-10", + "summary": "Eaque dignissimos quam ipsa soluta exercitationem officia.\nSit beatae reprehenderit fugiat nesciunt doloremque explicabo.\nVoluptas quaerat voluptatibus quod cupiditate.", + "informationUsed": "Consequuntur id temporibus sequi explicabo in inventore dignissimos totam et.\nTenetur sint quam omnis ducimus.\nEum sapiente ullam.\nFacere nesciunt soluta exercitationem.", + "pastOrPresentOrders": "Inventore cum distinctio.", + "commercialAndIndustrialPurposes": [ { - "uuid": "00821d45-11f1-41c4-bed4-628684eb012c", + "uuid": "b816344c-b835-4dd5-9677-f33d6a883def", "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { - "uuid": "08da8928-307b-48de-87b6-63e48535540c", + "uuid": "8e442999-0b41-4ad1-ae10-641ab3d3cf08", "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true } ] @@ -81465,113 +96113,108 @@ ], "activityLog": [ { - "uuid": "fa80efbd-26d0-4668-9c9d-e2715eefecc5", - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "WYMAN BERTHA", - "timestamp": "2015-12-14" - }, - { - "uuid": "6b2dcdaa-18f2-4305-a847-addbe52b99f8", - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "PRICE REILLY", - "timestamp": "2020-11-14" - }, - { - "uuid": "dabbbc2c-8b0d-427b-853c-df3b7a49b9a2", - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "ROWE LARON", - "timestamp": "2021-04-14" - }, - { - "uuid": "2b4407bf-faf2-42c8-9dea-02681df7fd66", + "uuid": "b8b051e4-2c03-495b-9969-9aa50b4749db", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "JACOBSON RHETT", - "timestamp": "2021-06-01" + "user": "KUTCH CYRUS", + "timestamp": "2021-08-15" }, { - "uuid": "f733047d-2939-4050-8740-041e08a5ff0e", + "uuid": "411752d5-59a9-4451-8dea-5a7fcdb5c526", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "OLSON DINA", - "timestamp": "2023-05-23" + "user": "MOHR MORGAN", + "timestamp": "2019-03-03" }, { - "uuid": "57be0b8c-37ce-47f9-bcf4-3455992b3b4d", - "siteRegistry": true, + "uuid": "e6eb1251-20cf-46e9-b5b1-970814b362aa", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "WIZA PALMA", - "timestamp": "2015-10-29" + "user": "EBERT RITA", + "timestamp": "2022-08-21" }, { - "uuid": "c6bdf063-cae2-46cf-ac67-48db893c1d0f", + "uuid": "1721287c-2b1a-4d28-8d91-908cb6742401", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "WILLMS CASIMIR", - "timestamp": "2017-01-20" + "user": "CORMIER BERNIECE", + "timestamp": "2016-05-24" }, { - "uuid": "815cba90-6234-4bc4-8c36-e9c9a120b92c", + "uuid": "bbea27f2-c476-4d39-922f-50ec134f6543", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "KREIGER JILLIAN", - "timestamp": "2017-08-22" + "user": "BRAKUS YVETTE", + "timestamp": "2013-11-14" }, { - "uuid": "456bc416-1165-4026-acd7-d2ed3e801d7d", + "uuid": "ec032a3a-43c5-40a1-bd17-a7e591d9bca9", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "MARKS CLAUDIA", - "timestamp": "2019-09-04" + "user": "ORTIZ ANGELITA", + "timestamp": "2018-03-19" }, { - "uuid": "3077944e-9c11-4f50-b414-fc691c41d1ed", + "uuid": "5b7bda44-7e66-4e6a-9124-360fd0d4a09c", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "MCCULLOUGH JEREMIE", - "timestamp": "2014-06-26" + "user": "DARE HELENE", + "timestamp": "2018-08-16" } ], "associatedSites": [ { - "uuid": "d8b3ff48-d2d2-457f-8eb4-3240992e4a7c", - "dateNoted": "2023-01-06", + "uuid": "5dd5a708-c269-406e-a604-f529137b7955", + "dateNoted": "2021-08-27", + "notes": "", + "parcelID": "18862", + "siteID": "19789", + "siteRegistry": true + }, + { + "uuid": "d6444792-e0e6-4958-ab17-61318b4eb3ac", + "dateNoted": "2020-02-09", "notes": "", - "parcelID": "18376", - "siteID": "15766", + "parcelID": "17312", + "siteID": "20045", "siteRegistry": false + }, + { + "uuid": "f180e479-82a3-42ce-830d-7dd8188c2977", + "dateNoted": "2018-04-16", + "notes": "", + "parcelID": "19370", + "siteID": "16733", + "siteRegistry": true } ] }, { - "uuid": "329b101d-e2f9-4b12-be22-6ba95a2c0d22", - "siteID": 18630, - "address": "1302 Bartell Valleys", - "latitude": 49.5579, - "longitude": -119.4232, - "lastUpdated": "2016-01-30", - "city": "Wernerfurt", - "region": "Cariboo", - "victoriaFile": "26250-20/17907", + "uuid": "cab76661-ece6-4e79-a18f-c29edaff75ed", + "siteID": 17104, + "address": "482 Abdullah Via", + "latitude": 54.3085, + "longitude": -119.5421, + "lastUpdated": "2015-03-26", + "city": "Camarillo", + "region": "Thompson-Okanagan", + "victoriaFile": "26250-20/2002", "regionalFile": "N/A", "parcelIDs": [ - 9026613, - 5340553, - 4855011, - 3232143, - 5315555 + 7332728, + 995967, + 3388305, + 545926, + 9597683 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "eebb61c8-0904-48d0-a4c4-4dbd4cce3333", - "createdAt": "2020-10-11", - "completed": "2018-03-24", - "initiated": "2017-08-27", - "ministryContact": "LEDNER PAYTON", + "uuid": "ba89c276-13d7-4eaa-a839-13647379d36f", + "createdAt": "2014-10-10", + "completed": "2018-01-08", + "initiated": "2015-07-09", + "ministryContact": "LUETTGEN EULAH", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -81580,99 +96223,31 @@ ], "notationParticipants": [ { - "uuid": "292b6792-34cb-47b9-84f0-c0e03e040ecd", - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "uuid": "e147da86-3c63-4a0f-bca9-999f6643aefc", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "uuid": "3bf40d9f-1d76-416d-85db-0dcbf3e09574", + "uuid": "c2814764-55a7-496f-8059-ff7e40e0a37d", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "024fb722-9276-470a-8c0a-62f74eef528d", - "name": "SHELL CANADA PRODUCTS", + "uuid": "dab19ec7-c421-487a-b69d-bb7952612d7e", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false }, { - "uuid": "123c6e16-218f-47a2-aa5c-06eec2ba02e5", - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - } - ], - "siteRegistry": false - }, - { - "uuid": "61b57eed-c5d3-4415-a104-d5e5bdeac980", - "createdAt": "2023-04-02", - "completed": "2014-07-28", - "initiated": "2017-08-31", - "ministryContact": "FRITSCH ZION", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "uuid": "6c53930f-b073-4a55-bd78-a4d47f3917b4", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "uuid": "43acec91-08fd-431b-aef8-baf4fbc75370", - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - } - ], - "siteRegistry": false - }, - { - "uuid": "ac8feaf7-e246-482a-a5eb-41bc9e003861", - "createdAt": "2021-10-15", - "completed": "2014-08-03", - "initiated": "2020-11-27", - "ministryContact": "ADAMS NICO", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "uuid": "20580aa7-5972-42ba-9ba9-256239a19b98", - "name": "SHELL CANADA PRODUCTS", + "uuid": "ac7cf5b5-c779-407d-970e-88317afe5775", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true }, { - "uuid": "2eadf114-a6d2-4ee3-a7e4-b2d97e02dcc9", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "uuid": "1b14dd0d-916b-443a-81af-f6c28ff45489", - "name": "SHELL CANADA PRODUCTS", + "uuid": "6ac16e9a-8ca4-401c-970f-f65a9b8af70b", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true }, { - "uuid": "fc7ba173-08b9-4f45-957f-76eb6b6fb3b2", + "uuid": "a02de1df-eeaf-42d7-9fff-323100bc0e82", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false @@ -81681,11 +96256,11 @@ "siteRegistry": false }, { - "uuid": "c7bf1a5b-2f8e-4420-a1d1-4a11fbdd22ed", - "createdAt": "2022-03-06", - "completed": "2022-02-01", - "initiated": "2017-07-13", - "ministryContact": "GRIMES LINNEA", + "uuid": "2777ea98-4269-4c2c-8d1c-572ab3f7470d", + "createdAt": "2016-10-04", + "completed": "2016-03-22", + "initiated": "2023-04-10", + "ministryContact": "HILLS ALYCE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -81694,28 +96269,22 @@ ], "notationParticipants": [ { - "uuid": "59d83cf8-7c76-46d9-ad4b-79bf1b2f0c1a", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "uuid": "58e0b69b-53ec-4ec4-9434-55c348d0c37e", + "uuid": "9e85c12e-ec1d-4fb2-a35d-b98e27898456", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "0c6e8099-e3a8-47cd-a23f-f6d4b62fbc2e", + "uuid": "85952cbc-1155-4735-a387-c2cfa2ac4ca0", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false + "role": "REQUESTED BY", + "siteRegistry": true }, { - "uuid": "d6505793-2daf-4767-9499-b3f0fc160947", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false + "uuid": "d571bf17-1547-47c8-b537-32f3740c3971", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true } ], "siteRegistry": false @@ -81723,21 +96292,10 @@ ], "participants": [ { - "uuid": "bc59935d-3b39-4aba-99b5-a14427946a6f", - "name": "AMET, DOLOR SIT", - "endDate": "2016-04-19", - "startDate": "2020-03-19", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": true - }, - { - "uuid": "a35ef885-cd7f-4eeb-9f1a-49aa2adad026", + "uuid": "3a52aca7-6250-40d1-acf2-00780fa03d4b", "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2017-09-30", - "startDate": "2019-08-31", + "endDate": "2018-08-01", + "startDate": "2023-04-13", "notes": "", "roles": [ "EMPLOYEE" @@ -81745,273 +96303,355 @@ "siteRegistry": false }, { - "uuid": "8f4dbf4f-d178-4daf-b81e-6bafb59a88b5", - "name": "IPSUM", - "endDate": "2017-04-29", - "startDate": "2022-11-01", + "uuid": "dabbb58c-83b5-4d3b-bb9b-1d0f84c6e122", + "name": "AMET, DOLOR SIT", + "endDate": "2020-11-11", + "startDate": "2020-05-19", "notes": "", "roles": [ "ORGANIZATION" ], "siteRegistry": true + } + ], + "documents": [ + { + "uuid": "ba3d2dac-2698-48cf-923a-2ffde7c6da38", + "siteRegistry": true, + "documentDate": "2021-03-24", + "receivedDate": "2020-06-21", + "uploadedDate": "2022-10-07", + "title": "Summary of Site Conditions, 1537 W 41st Avenue, Vancouver", + "participants": [ + { + "uuid": "7f298f9d-4c9b-465f-972b-f1173f9c86d9", + "name": "AMET, DOLOR SIT", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "dc8182bc-28a1-4cfb-a881-d7e9e0a22abc", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": false, + "role": "AUTHOR" + } + ] }, { - "uuid": "c1407d16-b39c-4c17-a9ff-49601f2cbba9", - "name": "IPSUM", - "endDate": "2022-10-26", - "startDate": "2015-10-17", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": true + "uuid": "820d5b56-c380-493b-9120-accd50202006", + "siteRegistry": true, + "documentDate": "2022-06-21", + "receivedDate": "2020-04-18", + "uploadedDate": "2015-12-12", + "title": "Preliminary Site Investigation, Detailed Site Investigation and Remedial Plan for the Management Area adjacent to the Shell Site at 1503 West 41st Ave", + "participants": [ + { + "uuid": "d3d9dc61-da98-487d-befc-a21a29b7a256", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "fa40fecf-c99b-4fbe-9689-f993477c0350", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "7d0f84e9-a25f-452d-9575-0c9054666feb", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": false, + "role": "AUTHOR" + } + ] }, { - "uuid": "cf9ac901-283a-4f8b-996a-9349a7ff168a", - "name": "SHELL CANADA PRODUCTS", - "endDate": "2023-07-26", - "startDate": "2014-08-30", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": true + "uuid": "bcc9e988-89e3-4244-9648-afab644b7fb4", + "siteRegistry": true, + "documentDate": "2023-06-24", + "receivedDate": "2014-12-21", + "uploadedDate": "2021-03-08", + "title": "Summary of Site Conditions, 1537 W 41st Avenue, Vancouver", + "participants": [ + { + "uuid": "484625d3-9cb2-4ffa-99b4-9507c78c720a", + "name": "IPSUM", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "af14053d-60a0-4309-962c-c1eac9d3dcb9", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "8619a1e4-fdc0-402b-ac3f-a9e58ab72472", + "name": "AMET, DOLOR SIT", + "siteRegistry": true, + "role": "AUTHOR" + } + ] + }, + { + "uuid": "782cf13d-be9a-48b0-8f06-4687b2ddd61d", + "siteRegistry": true, + "documentDate": "2023-09-12", + "receivedDate": "2019-07-01", + "uploadedDate": "2020-10-04", + "title": "Summary of Site Conditions, 1537 W 41st Avenue, Vancouver", + "participants": [ + { + "uuid": "b746cffd-7bdf-4c71-ba4a-977881133b0e", + "name": "IPSUM", + "siteRegistry": true, + "role": "AUTHOR" + } + ] } ], "suspectLandUses": [ { - "uuid": "11c1e0b7-2ff0-4cbc-9235-20125a07ee13", + "uuid": "23692cc6-e2ab-497f-958b-a6eb314b63e2", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-06-08 (described on Site Profile dated 2019-06-08)", + "notes": "INSERTED FOR SITE PROFILE DATED 2017-12-08 (described on Site Profile dated 2017-12-08)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "uuid": "5128fb40-ab85-44e4-8a1c-f2ed97b8f3a8", + "uuid": "c6ba1c8b-94ba-4194-812d-19668bda977c", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2020-06-07 (described on Site Profile dated 2020-06-07)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "notes": "INSERTED FOR SITE PROFILE DATED 2019-07-29 (described on Site Profile dated 2019-07-29)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "uuid": "82d5a3cc-e41d-4e46-a88d-70cfbb3d0ce9", + "uuid": "bbcc48bf-3dcd-4a97-bfda-ecf388cd4244", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-06-21 (described on Site Profile dated 2016-06-21)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "notes": "INSERTED FOR SITE PROFILE DATED 2020-09-04 (described on Site Profile dated 2020-09-04)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "uuid": "041caeea-c6f5-44dc-a955-cd43f3f3f546", + "uuid": "ab93a128-e674-4e68-86ed-3a0a4df74393", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-01-08 (described on Site Profile dated 2019-01-08)", + "notes": "INSERTED FOR SITE PROFILE DATED 2020-04-06 (described on Site Profile dated 2020-04-06)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "uuid": "1672af2b-1945-4619-9349-8626ae144761", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2020-02-09 (described on Site Profile dated 2020-02-09)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], "parcelDescriptions": [ { - "uuid": "5e901333-79fc-4cb6-a5ab-73446a35de73", + "uuid": "12deaaee-469f-40b3-bf6e-edf2dd147e36", "siteRegistry": false, - "dateNoted": "2018-12-17", - "parcelID": "18687", - "crownLandUsePIN": "15388", - "crownLandFileNumber": "15314", - "landDescription": "LOT 4 OF LOT 1 BLOCK 2 DISTRICT LOT 4 PLAN 4268" + "dateNoted": "2022-08-04", + "parcelID": "17538", + "crownLandUsePIN": "15889", + "crownLandFileNumber": "15206", + "landDescription": "LOT 2 OF LOT 5 BLOCK 4 DISTRICT LOT 5 PLAN 4639" }, { - "uuid": "3cfe9151-60e4-4fc6-931f-2a1cea937eff", - "siteRegistry": false, - "dateNoted": "2023-03-26", - "parcelID": "19102", - "crownLandUsePIN": "15457", - "crownLandFileNumber": "15959", - "landDescription": "LOT 1 OF LOT 4 BLOCK 3 DISTRICT LOT 4 PLAN 5813" + "uuid": "efafce54-e650-42a9-b58b-5b90774b1794", + "siteRegistry": true, + "dateNoted": "2023-03-10", + "parcelID": "19753", + "crownLandUsePIN": "16897", + "crownLandFileNumber": "19143", + "landDescription": "LOT 1 OF LOT 4 BLOCK 2 DISTRICT LOT 3 PLAN 6728" + }, + { + "uuid": "eac459cd-eabd-4b67-8f3a-7688f12abc51", + "siteRegistry": true, + "dateNoted": "2017-07-20", + "parcelID": "16288", + "crownLandUsePIN": "19167", + "crownLandFileNumber": "17137", + "landDescription": "LOT 3 OF LOT 4 BLOCK 4 DISTRICT LOT 5 PLAN 5314" } ], "siteDisclosures": [ { - "uuid": "bafaa703-c66f-4701-9549-544ff454c8a8", + "uuid": "e39f2c9a-3ea5-4579-bebe-1116ee80dd82", "siteRegistry": true, - "dateReceived": "2013-10-28", - "dateCompleted": "2014-01-11", - "dateEntered": "2021-03-15", - "dateRegistrar": "2018-09-05", - "dateLocalAuthorityReceived": "2021-09-17", - "summary": "Ipsa ea officiis soluta debitis.\nMaxime facere facilis optio adipisci repudiandae dolores sapiente voluptate.", - "informationUsed": "Repudiandae nihil dolores debitis aliquid vero similique quisquam et.\nVoluptatibus distinctio odio id repellat iste illum in consectetur.\nIn deserunt incidunt repellendus sunt fugiat sint ea possimus sequi.", - "pastOrPresentOrders": "Blanditiis excepturi totam numquam natus nam laborum molestias omnis.\nQuam eaque sequi quis ipsam sunt iste.\nTempore architecto quam in animi quae porro veritatis sed nihil.", - "commercialAndIndustrialPurposes": [ - { - "uuid": "fe89d98d-d54f-4e9c-bb58-cd371a8c637d", - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false - }, - { - "uuid": "4285643b-db5b-4ea2-a02a-a0942de8974e", - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true - }, - { - "uuid": "bbd666ee-6844-41a8-84d6-6f1938a252f2", - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true - }, - { - "uuid": "27d2779f-2112-47ca-80f6-24b8abf4f54f", - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false - } - ] - }, - { - "uuid": "575243fa-c2d9-45b0-8941-309af46491bf", - "siteRegistry": false, - "dateReceived": "2017-03-25", - "dateCompleted": "2020-09-29", - "dateEntered": "2014-12-03", - "dateRegistrar": "2013-10-14", - "dateLocalAuthorityReceived": "2021-03-11", - "summary": "Excepturi excepturi eligendi blanditiis repudiandae adipisci ad ipsum.\nEum facilis voluptatibus adipisci beatae molestiae.\nAssumenda est sint excepturi molestiae.", - "informationUsed": "Incidunt dignissimos rerum eaque modi iusto dolore.\nNisi perferendis maiores expedita.\nDelectus voluptas facere necessitatibus.\nOfficiis tempora assumenda ducimus voluptatem quae iste a aut iusto.", - "pastOrPresentOrders": "Aliquam quidem officiis itaque molestias cupiditate ea aliquid dolorem.\nPerspiciatis aperiam unde ipsam quibusdam voluptatibus.", + "dateReceived": "2015-10-10", + "dateCompleted": "2014-10-25", + "dateEntered": "2016-11-28", + "dateRegistrar": "2018-12-03", + "dateLocalAuthorityReceived": "2020-02-06", + "summary": "Aliquid minima delectus possimus rem blanditiis commodi.\nModi quaerat nisi recusandae ab enim.\nQuam nihil necessitatibus.", + "informationUsed": "Minima eum ex illum iusto dolor dolore natus.\nRepellendus ratione repellendus voluptates fugiat.\nNeque distinctio quod aperiam nemo fugiat aperiam.\nPerferendis laborum officia pariatur laudantium beatae soluta architecto tempore.", + "pastOrPresentOrders": "Sapiente odio animi voluptatibus placeat officiis libero ipsa repellendus vel.", "commercialAndIndustrialPurposes": [ { - "uuid": "9e6fddc1-eff6-4c79-b2e2-2a6f8aeb1d7b", + "uuid": "264b2c61-f84b-4a1f-93e2-116cc6877ea6", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { - "uuid": "a88f7adc-941f-448a-9d67-d2c81966304b", + "uuid": "ac20f249-2b3f-432e-ac08-d14fe48da34d", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false - }, - { - "uuid": "0eac5d3c-4bad-434a-ab8a-11de2e88a241", - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true - }, - { - "uuid": "71b1f350-261f-4cf1-9b75-29fca4e4fdc1", - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false } ] } ], "activityLog": [ { - "uuid": "4272ad1f-da31-424f-b9b0-a7bc667fd3cc", + "uuid": "576acf3c-65e5-4726-b33e-243c3961fcd5", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "KLOCKO MERRITT", - "timestamp": "2014-03-26" + "user": "DECKOW HOLDEN", + "timestamp": "2016-09-29" }, { - "uuid": "5beabcda-8c08-47ce-8952-f535114598c7", + "uuid": "ea73b32b-9313-4841-b44a-f926b748314c", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "HACKETT AIDEN", - "timestamp": "2015-09-27" + "user": "DARE APRIL", + "timestamp": "2014-03-21" }, { - "uuid": "54e6dab6-d622-451b-9311-40be2df61e22", + "uuid": "38d736fd-c071-43ce-8327-0b503da445dc", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "GRIMES JENA", - "timestamp": "2015-07-07" + "user": "FADEL HOLLY", + "timestamp": "2023-01-18" }, { - "uuid": "fbd16a40-0939-46ec-8fb4-0df25434ffdb", + "uuid": "49d7f493-0a6f-47dc-b298-cbf462293743", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "HODKIEWICZ-KOZEY ADRIENNE", - "timestamp": "2019-03-07" + "user": "WOLFF PAULINE", + "timestamp": "2023-09-24" }, { - "uuid": "41c440ec-5442-4ed4-9c78-6298f569d0fe", - "siteRegistry": true, + "uuid": "0b18b99d-d33c-4028-8ee9-5b408d50056c", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "DICKINSON SAMANTA", - "timestamp": "2020-05-03" + "user": "KLOCKO NONA", + "timestamp": "2020-11-19" }, { - "uuid": "0b66bb6b-2dda-4c68-a633-78e93ee4f8c9", + "uuid": "3294fa2f-d1cb-45bd-aa62-f8d7cdbc9058", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "MEDHURST FRANCES", - "timestamp": "2018-11-15" + "user": "BOGAN ISAC", + "timestamp": "2016-01-19" }, { - "uuid": "a6e1f490-2ae3-46ca-94c9-de9a186436ef", + "uuid": "e077177b-8f58-4b83-811d-2b15821da09d", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "FRAMI ERYN", - "timestamp": "2018-07-13" + "user": "MOORE ROBB", + "timestamp": "2022-05-04" }, { - "uuid": "710daf8f-a3d3-4db9-91af-e059cb391af0", + "uuid": "60e4d9c9-1fff-40c5-84ad-eca5d479d3ec", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "BARTOLETTI-REMPEL LYDA", - "timestamp": "2014-09-10" + "user": "DICKI ANTONIETTA", + "timestamp": "2019-04-14" }, { - "uuid": "b58a5902-0617-446f-bfdc-6c3c06d68ebc", + "uuid": "7903797f-d0c1-4ca5-b4b2-39be0b3a52bd", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "BARROWS ADALBERTO", - "timestamp": "2017-06-12" + "user": "TORPHY JOE", + "timestamp": "2019-11-17" + }, + { + "uuid": "8b23dbdd-0c26-4453-a830-35e1d6233ae1", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "WARD TEAGAN", + "timestamp": "2015-06-27" } ], "associatedSites": [ { - "uuid": "53e378f5-3214-4317-9642-fb6519cc1995", - "dateNoted": "2015-07-23", + "uuid": "505116b1-a912-4b2e-b1b6-32a5127e6050", + "dateNoted": "2016-10-19", "notes": "", - "parcelID": "16957", - "siteID": "18311", - "siteRegistry": true + "parcelID": "16228", + "siteID": "17277", + "siteRegistry": false }, { - "uuid": "b6e15904-75da-4194-94c7-0dbd02caff46", - "dateNoted": "2015-06-25", + "uuid": "2c2e7d1e-5799-4a81-83dc-0927e887d1c1", + "dateNoted": "2017-10-03", "notes": "", - "parcelID": "18691", - "siteID": "19174", + "parcelID": "18430", + "siteID": "17392", "siteRegistry": true + }, + { + "uuid": "45d7086f-5945-4190-baac-ac68b8e9584e", + "dateNoted": "2020-12-28", + "notes": "", + "parcelID": "16370", + "siteID": "19762", + "siteRegistry": false } ] }, { - "uuid": "03e08e02-971a-4a56-84b7-3a32bd1a5880", - "siteID": 20820, - "address": "630 Dare Ferry", - "latitude": 53.8831, - "longitude": -127.7888, - "lastUpdated": "2016-04-22", - "city": "South Chris", - "region": "Mainland/Southwest", - "victoriaFile": "26250-20/14593", + "uuid": "d3554544-a062-449c-ae11-b713faada431", + "siteID": 19111, + "address": "832 Hodkiewicz Terrace", + "latitude": 54.8875, + "longitude": -118.5354, + "lastUpdated": "2019-07-14", + "city": "Whitefurt", + "region": "Kootenay", + "victoriaFile": "26250-20/2874", "regionalFile": "N/A", "parcelIDs": [ - 4651131, - 2023317, - 4631046, - 2082858, - 9963644 + 931117, + 8398677, + 4485817, + 3022431, + 2590276 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "da124082-b173-4796-b68f-b2a12c6ff913", - "createdAt": "2021-09-08", - "completed": "2018-07-29", - "initiated": "2022-01-08", - "ministryContact": "RUECKER-MANTE ERNESTINA", + "uuid": "4b03ab99-df4f-4ba6-8f53-19e36b9e333d", + "createdAt": "2017-05-28", + "completed": "2018-05-06", + "initiated": "2014-04-01", + "ministryContact": "KUHLMAN ELDRIDGE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "uuid": "02acc269-1440-41fd-837a-48f3bb599f49", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "24ec356a-e7ec-408d-a394-59106d681ce8", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "uuid": "81037b56-404d-4865-a379-121b1de52844", + "createdAt": "2019-02-07", + "completed": "2017-11-01", + "initiated": "2020-07-13", + "ministryContact": "CUMMINGS DASIA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -82020,14 +96660,42 @@ ], "notationParticipants": [ { - "uuid": "7ed6607b-82da-4a90-a583-6b8f759b5c06", + "uuid": "893ff109-ccb6-4f87-9598-2e7409fc29b0", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "0de8c15f-e606-41b4-bd25-c48b09f6a0f3", + "uuid": "4202574d-8485-4da1-bee4-c3138cc0e63e", "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "uuid": "820b8565-6944-4b89-94fb-7cd7c5282885", + "createdAt": "2017-05-03", + "completed": "2016-09-03", + "initiated": "2021-08-03", + "ministryContact": "MAYERT SKYE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "uuid": "2c8d991e-345b-43e0-b71a-e1d7dce027b4", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "e8c9db71-dbbc-4caa-b63b-1a1e9db78368", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false } @@ -82035,11 +96703,11 @@ "siteRegistry": false }, { - "uuid": "984c6e08-a165-4d3a-bffb-11ddcd27f3d3", - "createdAt": "2014-11-25", - "completed": "2023-07-21", - "initiated": "2023-08-18", - "ministryContact": "CORMIER ADELLA", + "uuid": "de53c79f-9b63-42dd-be16-719b15516e7c", + "createdAt": "2020-06-14", + "completed": "2016-11-23", + "initiated": "2021-08-26", + "ministryContact": "THIEL ISAIAH", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -82048,33 +96716,45 @@ ], "notationParticipants": [ { - "uuid": "ae2ea696-5abd-49b5-936b-3f25d476d1bc", + "uuid": "bf9893a8-d9dd-43c7-9a43-877380453e0a", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "uuid": "a0a0929d-1482-474b-bafd-0dcad3ec5c69", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "4b7369f6-58f6-40e1-a382-426f5ba4003b", + "uuid": "23a0ca82-a04b-4c77-a541-c91c4ceb2b47", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true }, { - "uuid": "5a352ca8-a738-4db6-973e-8a0c01949139", - "name": "SHELL CANADA PRODUCTS", + "uuid": "11d00bde-5704-4cde-b77e-75fa1ae92f2b", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "uuid": "ea619089-4ed0-4bbc-afe3-5af5979b5b86", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false } ], "participants": [ { - "uuid": "b6e94c7d-5e5b-459d-816b-fcab3107da44", - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2020-06-26", - "startDate": "2014-01-18", + "uuid": "c21acabf-da30-4d07-a15a-9620cddb4386", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2020-09-20", + "startDate": "2014-11-11", "notes": "", "roles": [ "ORGANIZATION" @@ -82082,128 +96762,183 @@ "siteRegistry": false }, { - "uuid": "1688c4d4-cc38-422f-9550-98323139cb12", - "name": "IPSUM", - "endDate": "2021-04-25", - "startDate": "2022-03-03", + "uuid": "aa50dce0-a907-4d08-bfab-0b4a7848738b", + "name": "AMET, DOLOR SIT", + "endDate": "2016-05-26", + "startDate": "2021-03-31", "notes": "", "roles": [ "EMPLOYEE" ], "siteRegistry": true - }, + } + ], + "documents": [ { - "uuid": "2874892f-b5c4-4126-8ce0-ebe7835e232a", - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2018-07-05", - "startDate": "2023-06-09", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": true + "uuid": "e39b9eb2-18c3-4fa2-838c-0da5935e0894", + "siteRegistry": true, + "documentDate": "2014-09-27", + "receivedDate": "2019-10-29", + "uploadedDate": "2014-08-31", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "b9550aa9-10e5-4927-a822-c4f862a27cc9", + "name": "IPSUM", + "siteRegistry": false, + "role": "AUTHOR" + } + ] }, { - "uuid": "52df45fa-7093-4469-a746-a841b58b6607", - "name": "SHELL CANADA PRODUCTS", - "endDate": "2019-04-12", - "startDate": "2015-08-27", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": true + "uuid": "661e072e-f790-4c59-92ed-632d1836d452", + "siteRegistry": true, + "documentDate": "2021-09-24", + "receivedDate": "2016-07-31", + "uploadedDate": "2021-11-26", + "title": "Preliminary Site Investigation, Detailed Site Investigation and Remedial Plan for the Management Area adjacent to the Shell Site at 1503 West 41st Ave", + "participants": [ + { + "uuid": "410c5c69-3f4c-4870-8bae-5d9668258d23", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": false, + "role": "AUTHOR" + } + ] }, { - "uuid": "75e961ab-6de5-421b-ace3-db67f540b5fe", - "name": "SHELL CANADA PRODUCTS", - "endDate": "2023-10-08", - "startDate": "2015-10-29", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": false + "uuid": "487f64c5-a6bb-4087-916f-738ee35a220a", + "siteRegistry": true, + "documentDate": "2020-07-13", + "receivedDate": "2023-05-25", + "uploadedDate": "2014-10-22", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "b83f9d80-1b32-4368-aa8e-9cac7fb52cb8", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "1112b1c2-22a2-4a0a-8b59-8fcd2d7fde15", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": true, + "role": "AUTHOR" + } + ] } ], "suspectLandUses": [ { - "uuid": "083f4f59-5fbd-4150-a8df-731d739c3652", + "uuid": "f6a0207c-270c-4879-bf65-56d87c6695ff", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-08-29 (described on Site Profile dated 2022-08-29)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "notes": "INSERTED FOR SITE PROFILE DATED 2022-07-28 (described on Site Profile dated 2022-07-28)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "uuid": "e5c71a5e-5a9c-4e7c-aed3-b01e7976f691", + "uuid": "911ee62d-9d99-41d3-a2a6-a3e9266ccd14", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-12-15 (described on Site Profile dated 2022-12-15)", + "notes": "INSERTED FOR SITE PROFILE DATED 2016-12-26 (described on Site Profile dated 2016-12-26)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" - }, + } + ], + "parcelDescriptions": [ { - "uuid": "a1c90423-5b12-4417-9634-78de62eb80ed", + "uuid": "9cc25b67-964d-4504-b6cf-a393bb4c15c0", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-01-14 (described on Site Profile dated 2017-01-14)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "dateNoted": "2017-01-10", + "parcelID": "20777", + "crownLandUsePIN": "15857", + "crownLandFileNumber": "17265", + "landDescription": "LOT 2 OF LOT 3 BLOCK 2 DISTRICT LOT 3 PLAN 6647" }, { - "uuid": "c8be2f03-37aa-4a98-a044-5cf2429c9ac1", - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-05-13 (described on Site Profile dated 2021-05-13)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" - } - ], - "parcelDescriptions": [ + "uuid": "2d8b5857-9c0e-4838-9359-6b75789c6e92", + "siteRegistry": true, + "dateNoted": "2022-07-22", + "parcelID": "19175", + "crownLandUsePIN": "16005", + "crownLandFileNumber": "17749", + "landDescription": "LOT 1 OF LOT 1 BLOCK 1 DISTRICT LOT 1 PLAN 3947" + }, { - "uuid": "43fcbc21-8fa4-4d78-9b90-566f1f639d72", + "uuid": "c38c5540-9a44-48dc-bdcd-eca8a4cb1ace", "siteRegistry": true, - "dateNoted": "2016-09-17", - "parcelID": "15864", - "crownLandUsePIN": "18803", - "crownLandFileNumber": "18885", - "landDescription": "LOT 5 OF LOT 2 BLOCK 2 DISTRICT LOT 2 PLAN 5640" + "dateNoted": "2017-04-16", + "parcelID": "19646", + "crownLandUsePIN": "18171", + "crownLandFileNumber": "16151", + "landDescription": "LOT 3 OF LOT 3 BLOCK 3 DISTRICT LOT 3 PLAN 5950" }, { - "uuid": "eb1ace25-64e5-4399-a5c7-4f12e5014174", - "siteRegistry": false, - "dateNoted": "2017-08-10", - "parcelID": "20372", - "crownLandUsePIN": "17493", - "crownLandFileNumber": "20980", - "landDescription": "LOT 1 OF LOT 3 BLOCK 3 DISTRICT LOT 1 PLAN 4281" + "uuid": "e00b931f-a107-44d2-b11d-aeb0a700e08d", + "siteRegistry": true, + "dateNoted": "2023-06-18", + "parcelID": "19797", + "crownLandUsePIN": "19292", + "crownLandFileNumber": "19222", + "landDescription": "LOT 4 OF LOT 5 BLOCK 4 DISTRICT LOT 4 PLAN 8630" }, { - "uuid": "12f174a8-bdf6-40b2-9e13-6fe04ad6b653", + "uuid": "e64af94d-7bf5-4969-98fe-7ef827034b37", "siteRegistry": false, - "dateNoted": "2023-05-06", - "parcelID": "20648", - "crownLandUsePIN": "17068", - "crownLandFileNumber": "16681", - "landDescription": "LOT 2 OF LOT 4 BLOCK 5 DISTRICT LOT 4 PLAN 3516" + "dateNoted": "2019-08-21", + "parcelID": "20359", + "crownLandUsePIN": "16844", + "crownLandFileNumber": "19957", + "landDescription": "LOT 2 OF LOT 3 BLOCK 5 DISTRICT LOT 4 PLAN 3661" } ], "siteDisclosures": [ { - "uuid": "c7a8b61a-8d07-4e26-8e40-8c174f278d43", + "uuid": "8ae87fa7-adee-4965-9244-6864d6b6c21e", "siteRegistry": false, - "dateReceived": "2014-11-07", - "dateCompleted": "2014-12-04", - "dateEntered": "2015-11-30", - "dateRegistrar": "2018-03-05", - "dateLocalAuthorityReceived": "2018-01-14", - "summary": "At id qui saepe libero quia.\nLabore ullam quo commodi quia ut officiis dolor.\nSint est cum.", - "informationUsed": "Neque a nam neque sed nostrum ipsam magni architecto non.\nOdio possimus nobis minima asperiores blanditiis illo porro.\nMagnam corporis corrupti ad.", - "pastOrPresentOrders": "Aspernatur asperiores occaecati maxime consectetur vitae asperiores.", + "dateReceived": "2021-02-11", + "dateCompleted": "2018-02-22", + "dateEntered": "2019-10-29", + "dateRegistrar": "2014-11-26", + "dateLocalAuthorityReceived": "2022-11-30", + "summary": "Harum quos veritatis culpa dolorum exercitationem deleniti eligendi.\nQuibusdam tempore iste assumenda modi quod ab consectetur sit.", + "informationUsed": "Repellat nobis tempore possimus dignissimos natus voluptatibus delectus est.\nPorro nostrum a accusantium fugit harum blanditiis voluptatibus nulla.\nMolestias repellendus repellendus aut animi praesentium vel unde recusandae excepturi.", + "pastOrPresentOrders": "Alias ipsa quis nulla veniam itaque soluta repellendus sed.", "commercialAndIndustrialPurposes": [ { - "uuid": "f66010ba-b195-427b-a95b-ec73a27fb4ab", + "uuid": "41ea78b6-638a-4277-9e42-3cc6e72dd02c", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "ce6ff805-cbf6-434b-99cc-53a0cd21d794", + "uuid": "59e8ff54-0fb2-405f-9aae-2c027a24e37d", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + } + ] + }, + { + "uuid": "283c7a04-aa03-482f-9728-539507eca7d3", + "siteRegistry": true, + "dateReceived": "2016-06-10", + "dateCompleted": "2023-09-30", + "dateEntered": "2017-08-26", + "dateRegistrar": "2021-06-20", + "dateLocalAuthorityReceived": "2015-06-01", + "summary": "Ipsum distinctio quos suscipit ratione.", + "informationUsed": "Unde iste et.\nEveniet nesciunt est adipisci neque a doloremque.\nRerum quia tempora totam.\nDolores quaerat possimus ea minima perferendis vel eum laboriosam.\nMinus laborum tempore sint.", + "pastOrPresentOrders": "Eligendi atque eligendi voluptatibus.", + "commercialAndIndustrialPurposes": [ + { + "uuid": "71ed552b-06c3-4c40-a57d-7f0bfc9e3bce", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "uuid": "b2cb7f3e-24f7-40dc-ae93-fcf4f2086af0", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true } ] @@ -82211,121 +96946,114 @@ ], "activityLog": [ { - "uuid": "edc6fec9-4071-4045-b284-9ddddffd1b6c", + "uuid": "66048c63-6ba3-41b5-8ec1-85575a387453", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "WILKINSON MAXIMO", + "timestamp": "2021-12-23" + }, + { + "uuid": "701f06db-9147-4efb-b184-371def60a76e", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "HESSEL JACKSON", - "timestamp": "2017-11-25" + "user": "KOZEY DAMEON", + "timestamp": "2016-12-25" }, { - "uuid": "4fde30e7-1cf9-4ebc-9caf-1a135280d90f", + "uuid": "7c4d236e-112e-4986-bd5d-bf34e32ef476", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "RAYNOR HOPE", - "timestamp": "2018-01-24" + "user": "MULLER AMIRA", + "timestamp": "2022-07-27" }, { - "uuid": "4e9723e6-f06c-43d0-893c-c1e1e702e7a0", + "uuid": "38c93fa9-f53a-4b11-b377-cf2134a7f491", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "TREMBLAY OLETA", - "timestamp": "2013-12-22" + "user": "FRANECKI MARY", + "timestamp": "2014-01-06" + }, + { + "uuid": "1a68f9c8-1356-487b-b54a-8ad007b95ca0", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "SCHMELER FEDERICO", + "timestamp": "2018-03-28" }, { - "uuid": "2351acf7-8799-4db0-b70d-61bbcc97ee6b", + "uuid": "ed07c158-e59c-478b-a9ab-73bcce5dfb27", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "KLOCKO SYDNEE", - "timestamp": "2023-09-15" + "user": "HETTINGER ANIKA", + "timestamp": "2020-05-12" }, { - "uuid": "568fec7e-7fcf-4d17-b324-379c832af3a9", + "uuid": "6f7cf865-3b1a-4954-beb6-88b7f46296db", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "TURCOTTE IMA", - "timestamp": "2017-04-03" + "user": "LYNCH DANTE", + "timestamp": "2014-07-02" + }, + { + "uuid": "57b73bdd-0c42-4b36-b46d-ec55d7203472", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "BOEHM TYRELL", + "timestamp": "2015-10-09" }, { - "uuid": "00265754-580c-4e6a-98c8-5763d870111b", + "uuid": "7210473e-8cf3-4b99-a9c6-6e68a27c3153", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "KOSS MERCEDES", - "timestamp": "2017-07-22" + "user": "HEGMANN WINSTON", + "timestamp": "2017-06-21" } ], "associatedSites": [ { - "uuid": "c3fd67fb-55ff-4fa4-9485-6759c01a9963", - "dateNoted": "2014-10-17", + "uuid": "ebf93a67-0615-439c-a18e-55c7d03409ee", + "dateNoted": "2016-09-08", "notes": "", - "parcelID": "18885", - "siteID": "16560", + "parcelID": "19518", + "siteID": "17498", "siteRegistry": true }, { - "uuid": "6accb363-9604-4bc7-94d0-f5596ff9e456", - "dateNoted": "2018-09-24", + "uuid": "378c48cb-3c5f-477d-9a12-85eeb30f5ef7", + "dateNoted": "2018-04-06", "notes": "", - "parcelID": "19939", - "siteID": "15514", + "parcelID": "19617", + "siteID": "18904", "siteRegistry": false } ] }, { - "uuid": "6c612b93-e084-4a29-9bef-c7671b4b992b", - "siteID": 20818, - "address": "85717 Davis Island", - "latitude": 51.9713, - "longitude": -126.2968, - "lastUpdated": "2014-12-08", - "city": "Port Lauretta", + "uuid": "e3001872-b603-45dc-a367-d787254ff365", + "siteID": 17504, + "address": "3930 Fermin Mountains", + "latitude": 53.2374, + "longitude": -123.7069, + "lastUpdated": "2016-04-03", + "city": "Lake Maximotown", "region": "Vancouver Island/Coast", - "victoriaFile": "26250-20/11844", + "victoriaFile": "26250-20/17121", "regionalFile": "N/A", "parcelIDs": [ - 8136114, - 9480908, - 3483248, - 3428780, - 3273884 + 9421396, + 5780214, + 2294526, + 5410470, + 6127350 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "5e4a4af0-aad0-4985-9563-77c90c7ce557", - "createdAt": "2019-03-13", - "completed": "2015-10-11", - "initiated": "2016-04-10", - "ministryContact": "GUTKOWSKI ALIZA", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "uuid": "2f646a7a-1f90-4d29-8320-ca1fbbb770e7", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "uuid": "327dd689-38e8-4323-976e-d5cd2288f830", - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - } - ], - "siteRegistry": true - }, - { - "uuid": "712ddc65-66aa-4d64-b5a1-0cfae345cdd8", - "createdAt": "2015-06-09", - "completed": "2015-06-23", - "initiated": "2015-09-05", - "ministryContact": "DENESIK JANESSA", + "uuid": "54fa9623-44d1-45b5-9870-4c186451aad8", + "createdAt": "2023-09-17", + "completed": "2018-11-25", + "initiated": "2015-08-01", + "ministryContact": "KIEHN ANNAMAE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -82334,90 +97062,32 @@ ], "notationParticipants": [ { - "uuid": "34d845ea-8c14-4bdf-ac0b-9a7b07209922", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "uuid": "f8e0428c-f69d-49be-aaf1-43f4b0f6fdcb", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "uuid": "a892bb1d-1fb2-4ff5-a46e-5f4edc540416", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "uuid": "1eb06add-756f-4d04-9b37-24eb860a7506", + "uuid": "9cb74945-4336-476c-b2b8-5a688a74c86c", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false }, { - "uuid": "de6a9888-6c4b-4aae-954e-45e94bedfc86", - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - } - ], - "siteRegistry": true - }, - { - "uuid": "110904c9-47d1-4b68-9e5e-6f01c5c3add7", - "createdAt": "2015-09-29", - "completed": "2023-09-13", - "initiated": "2023-01-05", - "ministryContact": "LUBOWITZ KARL", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "uuid": "777e3a3c-c4de-4bb9-8b9a-88a95ffb8d59", + "uuid": "4033b495-0b57-4e6e-824c-2196e6cc7a48", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "uuid": "7b7882e4-86c2-4123-ac25-3509ceb24b0a", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "uuid": "8e442d9e-7159-4d08-a6e2-705783599c77", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "ad54fc4a-1ee5-46c1-a24e-6a8f2833dd71", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "uuid": "0f2fa857-fbb7-4498-b815-f6427e83ef82", - "name": "SHELL CANADA PRODUCTS", + "uuid": "91fc95bc-c483-420c-97b0-9a1747c2b29d", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "6bda383a-8bc5-4a89-bd9d-d4a483e5f4ce", - "createdAt": "2020-11-13", - "completed": "2015-07-19", - "initiated": "2019-09-03", - "ministryContact": "GRIMES WAINO", + "uuid": "7630706b-d642-4182-916b-6db3c5fffb91", + "createdAt": "2014-03-01", + "completed": "2019-03-06", + "initiated": "2021-01-17", + "ministryContact": "GULGOWSKI ELROY", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -82426,45 +97096,33 @@ ], "notationParticipants": [ { - "uuid": "badbcc7f-1679-4ad9-8552-1b1991e9bc49", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "uuid": "0e69704c-6c3b-4da0-8d09-f81c40064794", + "uuid": "04373bea-b05a-46c2-9c98-0334308d7f5c", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false }, { - "uuid": "60cf5dd3-bf56-4f69-a4c6-62ed9838414c", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "uuid": "245daf70-6eff-4ac4-920c-dd37ca03d9d7", + "uuid": "c6683d5a-8c75-4415-9263-e75ee331ce92", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false }, { - "uuid": "775126ba-aace-4ef1-9a8f-dc656950505a", + "uuid": "29d544a4-cf61-4e36-856d-2147ac9bc763", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true } ], "participants": [ { - "uuid": "88c03e38-4c33-4b86-a71a-dccbc6fc0e5e", - "name": "IPSUM", - "endDate": "2016-07-14", - "startDate": "2014-02-17", + "uuid": "739760e4-3e50-4195-b2c7-ab2980774554", + "name": "AMET, DOLOR SIT", + "endDate": "2019-05-25", + "startDate": "2014-04-01", "notes": "", "roles": [ "EMPLOYEE" @@ -82472,10 +97130,10 @@ "siteRegistry": false }, { - "uuid": "6cfd7a00-7fc2-407b-8fad-2599d2353a06", - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2015-11-26", - "startDate": "2017-01-23", + "uuid": "0736e4de-fe25-4477-b94e-b016f3f59fef", + "name": "IPSUM", + "endDate": "2015-11-01", + "startDate": "2014-01-03", "notes": "", "roles": [ "ORGANIZATION" @@ -82483,307 +97141,316 @@ "siteRegistry": true }, { - "uuid": "05f102ac-c1b3-4abf-b0fb-a4188bb504d9", - "name": "AMET, DOLOR SIT", - "endDate": "2015-05-12", - "startDate": "2014-10-23", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": false - }, - { - "uuid": "af0adab0-865e-44f5-a634-ac05946039b4", + "uuid": "dfb15a27-21df-44cd-8a8e-c3cb1f4d0f85", "name": "SHELL CANADA PRODUCTS", - "endDate": "2013-12-12", - "startDate": "2014-08-06", + "endDate": "2018-11-01", + "startDate": "2014-09-29", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "771c6650-51bb-4113-8993-ff10c6911965", - "name": "AMET, DOLOR SIT", - "endDate": "2018-07-05", - "startDate": "2016-12-13", + "uuid": "d46de8a9-b3e0-4464-ad69-c9d14b5b79ec", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2021-06-06", + "startDate": "2023-06-03", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true } ], - "suspectLandUses": [ + "documents": [ { - "uuid": "a8823239-da79-48d9-81d3-6eb7c4e5ac94", + "uuid": "119eea9d-73ab-4d76-b4b3-36bef28b70b7", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-12-29 (described on Site Profile dated 2014-12-29)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "documentDate": "2016-01-27", + "receivedDate": "2021-08-19", + "uploadedDate": "2021-07-21", + "title": "Summary of Site Conditions, 1537 W 41st Avenue, Vancouver", + "participants": [ + { + "uuid": "c8c82516-307c-4573-81cf-75e6f9b16198", + "name": "IPSUM", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "3259c904-d6f8-415b-8a42-ca7cb6b3f26e", + "name": "IPSUM", + "siteRegistry": false, + "role": "AUTHOR" + } + ] }, { - "uuid": "38b8be8e-b6e1-4680-974d-05963968d3e6", - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2020-07-24 (described on Site Profile dated 2020-07-24)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "uuid": "f3f675c9-cb19-4408-8e12-8b1072b3ef40", + "siteRegistry": true, + "documentDate": "2023-08-28", + "receivedDate": "2017-04-29", + "uploadedDate": "2019-09-25", + "title": "Preliminary Site Investigation, Detailed Site Investigation and Remedial Plan for the Management Area adjacent to the Shell Site at 1503 West 41st Ave", + "participants": [ + { + "uuid": "63769cac-6374-47ae-84c1-abd1e1c64dd2", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "e1599027-5f41-4a40-8647-8064d88874e1", + "name": "IPSUM", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "587df125-4b91-490a-80d3-009c4bce45ad", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": false, + "role": "AUTHOR" + } + ] }, { - "uuid": "d752ff43-91a4-4dc7-a3a6-db49fa2d9f22", + "uuid": "1f7799c0-0606-4ce0-92e3-1bd0ca458d4b", + "siteRegistry": true, + "documentDate": "2023-07-17", + "receivedDate": "2016-10-16", + "uploadedDate": "2022-08-05", + "title": "Preliminary Site Investigation, Detailed Site Investigation and Remedial Plan for the Management Area adjacent to the Shell Site at 1503 West 41st Ave", + "participants": [ + { + "uuid": "6a2fd7a7-64a7-4445-88c8-340f62f05ca7", + "name": "AMET, DOLOR SIT", + "siteRegistry": false, + "role": "AUTHOR" + } + ] + } + ], + "suspectLandUses": [ + { + "uuid": "ad304e88-9385-4760-bec1-8e69b7b1ece6", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-06-06 (described on Site Profile dated 2014-06-06)", + "notes": "INSERTED FOR SITE PROFILE DATED 2020-07-15 (described on Site Profile dated 2020-07-15)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "uuid": "dc4e9635-7d4d-4076-884b-9e4ceea7c59d", + "uuid": "be840871-6332-4cc2-89a5-db5fa2192987", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2020-08-11 (described on Site Profile dated 2020-08-11)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "notes": "INSERTED FOR SITE PROFILE DATED 2017-01-20 (described on Site Profile dated 2017-01-20)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], "parcelDescriptions": [ { - "uuid": "f702e105-4064-4121-8a8d-1eda01d3b562", - "siteRegistry": false, - "dateNoted": "2016-08-18", - "parcelID": "18453", - "crownLandUsePIN": "17464", - "crownLandFileNumber": "20853", - "landDescription": "LOT 4 OF LOT 4 BLOCK 3 DISTRICT LOT 4 PLAN 4883" + "uuid": "20bc3009-65c1-4a96-8a25-42766f78a9c0", + "siteRegistry": true, + "dateNoted": "2023-06-27", + "parcelID": "20987", + "crownLandUsePIN": "15505", + "crownLandFileNumber": "16983", + "landDescription": "LOT 5 OF LOT 5 BLOCK 3 DISTRICT LOT 1 PLAN 5041" }, { - "uuid": "141b04fa-ed68-40b6-893b-4d9dbe9fe091", - "siteRegistry": false, - "dateNoted": "2023-02-16", - "parcelID": "16631", - "crownLandUsePIN": "15288", - "crownLandFileNumber": "16185", - "landDescription": "LOT 3 OF LOT 1 BLOCK 3 DISTRICT LOT 1 PLAN 4555" + "uuid": "10aef630-61a4-48bc-b1a3-6189eb64ed04", + "siteRegistry": true, + "dateNoted": "2016-05-01", + "parcelID": "20484", + "crownLandUsePIN": "16988", + "crownLandFileNumber": "19866", + "landDescription": "LOT 3 OF LOT 1 BLOCK 4 DISTRICT LOT 1 PLAN 8545" }, { - "uuid": "f255ea5b-0bad-4c36-825e-95ba2598ebff", + "uuid": "9051631d-61c8-45a8-8582-90cb562439d1", "siteRegistry": true, - "dateNoted": "2018-05-20", - "parcelID": "19898", - "crownLandUsePIN": "16009", - "crownLandFileNumber": "19046", - "landDescription": "LOT 3 OF LOT 5 BLOCK 4 DISTRICT LOT 2 PLAN 3962" + "dateNoted": "2020-02-19", + "parcelID": "19914", + "crownLandUsePIN": "17146", + "crownLandFileNumber": "17259", + "landDescription": "LOT 3 OF LOT 2 BLOCK 2 DISTRICT LOT 1 PLAN 6843" }, { - "uuid": "dba70cce-02ea-48c9-95e5-c96bdbe0062a", + "uuid": "10cf7534-f1d0-4f20-99bd-0175b614f514", "siteRegistry": true, - "dateNoted": "2020-08-09", - "parcelID": "17905", - "crownLandUsePIN": "18138", - "crownLandFileNumber": "20125", - "landDescription": "LOT 4 OF LOT 5 BLOCK 4 DISTRICT LOT 3 PLAN 9793" + "dateNoted": "2020-04-13", + "parcelID": "19943", + "crownLandUsePIN": "17680", + "crownLandFileNumber": "15715", + "landDescription": "LOT 2 OF LOT 4 BLOCK 4 DISTRICT LOT 3 PLAN 6146" }, { - "uuid": "12ff93c2-9828-4aa7-9ebf-2c07537e5c68", - "siteRegistry": true, - "dateNoted": "2017-05-12", - "parcelID": "16387", - "crownLandUsePIN": "16988", - "crownLandFileNumber": "20638", - "landDescription": "LOT 2 OF LOT 3 BLOCK 5 DISTRICT LOT 1 PLAN 9106" + "uuid": "5052fec4-4cc5-4d02-86a2-1aa0620ad44e", + "siteRegistry": false, + "dateNoted": "2020-01-13", + "parcelID": "17035", + "crownLandUsePIN": "20751", + "crownLandFileNumber": "18415", + "landDescription": "LOT 2 OF LOT 5 BLOCK 2 DISTRICT LOT 2 PLAN 3063" } ], "siteDisclosures": [ { - "uuid": "cc68ab81-5df9-4592-8cad-65c0c616ef4a", + "uuid": "648c66e1-e092-45dc-8df4-19c49c3466c4", "siteRegistry": false, - "dateReceived": "2018-12-11", - "dateCompleted": "2014-10-27", - "dateEntered": "2017-08-24", - "dateRegistrar": "2020-06-04", - "dateLocalAuthorityReceived": "2018-09-09", - "summary": "Fugiat at voluptatibus occaecati labore quia voluptates debitis.\nExpedita quas rem provident ratione in voluptates in.\nQuibusdam dignissimos dolorem repellat iste.", - "informationUsed": "Fugiat adipisci distinctio sint numquam quaerat.\nProvident iure optio a minus aliquid consequatur labore.\nAccusantium qui iste magni cum repudiandae.\nArchitecto inventore maxime consequatur voluptatibus magnam commodi ipsa.", - "pastOrPresentOrders": "Atque officia molestias hic alias.\nEsse rem laudantium neque explicabo mollitia nihil ipsum.\nNulla aspernatur suscipit asperiores tempore repellendus laborum eum.", + "dateReceived": "2018-01-12", + "dateCompleted": "2014-09-25", + "dateEntered": "2014-03-28", + "dateRegistrar": "2023-01-08", + "dateLocalAuthorityReceived": "2020-12-02", + "summary": "Quibusdam id eos qui voluptatibus fugit.", + "informationUsed": "Incidunt natus eum id beatae ea id qui.\nVoluptatum amet enim libero asperiores eius repellendus doloribus labore molestias.\nVoluptatem nihil illum iure esse occaecati laborum id.\nDoloremque voluptates ut placeat totam labore sed.", + "pastOrPresentOrders": "Vel mollitia tempora architecto et aperiam eum delectus.\nDelectus excepturi provident cum facilis reiciendis nam.", "commercialAndIndustrialPurposes": [ { - "uuid": "9432246b-e089-4b6f-ace4-4f1be886bd61", + "uuid": "3389cdee-ff6c-41b9-8a77-cc7f8c7986fe", "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false }, { - "uuid": "a0392eb5-6894-43ec-8016-891ece4a94b9", + "uuid": "f27ba956-1cea-4808-82cb-3a4349634bd0", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { - "uuid": "df8efa99-c900-40ca-89de-73985dd25a08", + "uuid": "5b619c3a-5950-4ef0-9393-977a74945e34", "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true }, { - "uuid": "b0b648b9-a311-4fa4-a8d2-b6a94d7f68dd", + "uuid": "7e19dc74-1d6b-41a4-9cb9-2ba4c700780d", "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true } ] }, { - "uuid": "630a4ff9-ca3f-43cd-8c71-e51ae1f10d49", - "siteRegistry": false, - "dateReceived": "2017-11-22", - "dateCompleted": "2020-03-17", - "dateEntered": "2020-07-24", - "dateRegistrar": "2020-05-30", - "dateLocalAuthorityReceived": "2016-08-14", - "summary": "Eum laudantium quae corporis aperiam minus culpa ipsa voluptatibus tenetur.", - "informationUsed": "Sunt debitis commodi eaque fugiat maxime minus architecto corrupti.\nTenetur aspernatur repellat temporibus.\nDistinctio assumenda repudiandae quo.", - "pastOrPresentOrders": "Aperiam doloribus nobis explicabo ea in voluptate pariatur nisi.\nCupiditate accusamus aperiam mollitia quidem.\nReiciendis natus corrupti magni sit repellendus minus natus ut doloribus.", + "uuid": "33e257b7-3285-44d9-9713-093d2624dedf", + "siteRegistry": true, + "dateReceived": "2020-02-19", + "dateCompleted": "2021-07-03", + "dateEntered": "2015-10-13", + "dateRegistrar": "2017-04-02", + "dateLocalAuthorityReceived": "2017-10-01", + "summary": "Natus veritatis odit repudiandae error.\nVeniam vitae dolor harum a nemo repellat.\nMinus voluptate tempora tenetur voluptas vel aspernatur.", + "informationUsed": "Mollitia vel quidem corporis quasi quidem.\nPerferendis totam ipsum ipsum illum a ducimus harum.\nTempore in ad hic ad repellendus odit eos enim.", + "pastOrPresentOrders": "Minima doloremque occaecati.", "commercialAndIndustrialPurposes": [ { - "uuid": "abe5891e-a96d-4260-98e3-eacb8e05da1a", + "uuid": "e2e43adc-9415-4b21-9b39-1449a987750d", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { - "uuid": "0513e8b7-e53b-4ee5-8c4a-6a4d1329ec69", - "scheduleReference": "F2*", + "uuid": "24d07e1c-302b-4163-8c22-61deb97170a9", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, { - "uuid": "150e069c-a098-4534-a930-0b0d5cf533e7", + "uuid": "906d1881-8c40-46d1-bdbd-6fafb73b2c56", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "0467c824-2d72-46b5-a5d2-cb9202aed27a", - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true + "uuid": "151ebd48-b9ca-4ba1-97ce-a964b803c884", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false } ] } - ], - "activityLog": [ - { - "uuid": "2f57fbf2-b9a2-49f0-8b78-3e9bfdf84acd", - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "VONRUEDEN ANTONINA", - "timestamp": "2014-12-11" - }, - { - "uuid": "0eff19cf-af5e-4c26-a869-6fcbb892b3dd", - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "LITTEL BRANDYN", - "timestamp": "2019-06-23" - }, - { - "uuid": "2c78d4f7-16ea-4558-90ca-83343e0e1a7d", - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "DIBBERT KACI", - "timestamp": "2015-03-14" - }, - { - "uuid": "f6c5f8b0-fe79-45b9-b12a-6b30ae6fce53", - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "MONAHAN CHRISTIAN", - "timestamp": "2022-09-21" - }, + ], + "activityLog": [ { - "uuid": "381df1d7-965a-42a6-8663-faed3407b2e8", + "uuid": "91338e43-7d67-4095-a6c7-42f796be81d6", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "BRAKUS JOSIANE", - "timestamp": "2023-02-18" + "user": "KERTZMANN LORENZ", + "timestamp": "2016-11-02" }, { - "uuid": "08392818-fd6d-47cd-84ef-fc07276e0598", - "siteRegistry": false, + "uuid": "2ca3cfd6-bd9a-41b9-a19c-024d3be4304d", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "BRAUN BRIANA", - "timestamp": "2016-08-02" + "user": "DICKI LETA", + "timestamp": "2017-01-11" }, { - "uuid": "2feb0bf8-c59a-451a-8427-f2ec346e6807", + "uuid": "0ef0b023-b770-4a61-9c90-9257f81bb533", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "STIEDEMANN-SMITHAM GIDEON", - "timestamp": "2017-10-18" + "user": "LITTLE TALIA", + "timestamp": "2018-08-03" }, { - "uuid": "4d523513-00aa-4dc7-a8e6-c8818e42eb1c", - "siteRegistry": true, + "uuid": "5adabb42-3baa-4ea7-9956-165053402754", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "REINGER ZENA", - "timestamp": "2016-04-20" + "user": "ABERNATHY ALTHEA", + "timestamp": "2014-01-28" }, { - "uuid": "1c281eee-2b2e-4c94-bb84-213e7f36e276", + "uuid": "cf29bf35-31bb-422b-a92e-876239c41980", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "POWLOWSKI JOHNSON", - "timestamp": "2016-04-22" + "user": "BRAKUS DONATO", + "timestamp": "2021-06-29" }, { - "uuid": "d08beb75-a0fc-4498-aaf5-39390cb5a224", + "uuid": "66d4dd03-4a58-4679-bdd1-fc4a3b059592", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "KRIS-SCHUPPE JANAE", - "timestamp": "2018-01-20" + "user": "HOWELL DONATO", + "timestamp": "2015-06-21" } ], "associatedSites": [ { - "uuid": "04308bac-c3b3-47a3-a231-d572b7f82de4", - "dateNoted": "2016-06-21", + "uuid": "5f858092-fd2f-4cdd-84df-0b1a5c4b5c45", + "dateNoted": "2017-02-13", "notes": "", - "parcelID": "16806", - "siteID": "16470", + "parcelID": "16451", + "siteID": "15607", "siteRegistry": true - }, - { - "uuid": "20fb5552-f9b8-4f20-995f-557fb403fddd", - "dateNoted": "2017-03-17", - "notes": "", - "parcelID": "15263", - "siteID": "19995", - "siteRegistry": false } ] }, { - "uuid": "3c392526-5d76-4c26-b3aa-ae92f4ef1a21", - "siteID": 16026, - "address": "26845 Abby Path", - "latitude": 50.0438, - "longitude": -136.5388, - "lastUpdated": "2019-12-20", - "city": "Mannview", - "region": "Thompson-Okanagan", - "victoriaFile": "26250-20/8051", + "uuid": "aaf85899-52f0-4b03-ad31-b1d5e8fe8a17", + "siteID": 19814, + "address": "46062 Bruce Haven", + "latitude": 53.8793, + "longitude": -127.0787, + "lastUpdated": "2022-04-22", + "city": "Port Kristian", + "region": " North Coast", + "victoriaFile": "26250-20/9684", "regionalFile": "N/A", "parcelIDs": [ - 573719, - 9171709, - 3048060, - 4472935, - 5738460 + 893460, + 6096940, + 1378928, + 2677426, + 6617600 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "0f93464d-9c48-4dd7-96aa-78e574234070", - "createdAt": "2016-07-22", - "completed": "2022-05-11", - "initiated": "2018-05-02", - "ministryContact": "MULLER TYRELL", + "uuid": "d4d51120-badc-4036-a057-01f7410bc005", + "createdAt": "2014-12-08", + "completed": "2022-06-25", + "initiated": "2015-05-14", + "ministryContact": "POLLICH NOEMI", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -82792,26 +97459,32 @@ ], "notationParticipants": [ { - "uuid": "c598e1d5-652e-4fe5-877e-b358b0537e09", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true + "uuid": "8a2e17eb-4d92-45ea-b8aa-bd20448f6977", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false }, { - "uuid": "79efc53a-1991-497b-96a5-f55febee5d56", + "uuid": "1c705f2e-4ea2-4482-8473-49d889d3b119", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "uuid": "95b2eac0-81fe-4439-ac73-bcaa7a9a3739", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": true }, { - "uuid": "a81eb88b-3508-4a4f-85be-338b1e6cd02d", + "uuid": "e152bf99-33c8-42fb-8e19-def97df5daf0", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "a2288708-44df-44da-985d-05e32a013d5b", - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "26c551a3-a3e1-424e-b7b1-8260d9544008", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false } @@ -82819,11 +97492,11 @@ "siteRegistry": false }, { - "uuid": "5bda9403-ccf5-45eb-8905-10fb45f16fb4", - "createdAt": "2020-04-24", - "completed": "2018-03-16", - "initiated": "2018-04-13", - "ministryContact": "SCHADEN CHARLIE", + "uuid": "30e152d0-c538-47bc-9a4e-6f400d429c8d", + "createdAt": "2016-12-26", + "completed": "2013-12-18", + "initiated": "2014-08-05", + "ministryContact": "JAKUBOWSKI TAMIA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -82832,26 +97505,26 @@ ], "notationParticipants": [ { - "uuid": "dca0aa4f-1b3f-4368-bb13-7ac66420dbca", + "uuid": "1c8fe4d3-567d-40f6-892f-c6e8b91e75f3", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false }, { - "uuid": "d9f98632-bb56-49f0-a063-36ed433d1f22", + "uuid": "ed8c0e09-8c32-4eb4-bbdd-48e96565bbf3", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true + "role": "REQUESTED BY", + "siteRegistry": false } ], "siteRegistry": false }, { - "uuid": "0e217225-4ce3-4f93-a66c-c56de3afa585", - "createdAt": "2016-05-31", - "completed": "2018-12-12", - "initiated": "2014-09-04", - "ministryContact": "KUHLMAN KARSON", + "uuid": "0171137a-954a-4a69-9578-018173d24c49", + "createdAt": "2017-02-22", + "completed": "2018-02-08", + "initiated": "2013-10-20", + "ministryContact": "DOOLEY DARIAN", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -82860,19 +97533,53 @@ ], "notationParticipants": [ { - "uuid": "a0e9a324-a059-4ecd-a1df-fcf26b6cd39f", - "name": "SHELL CANADA PRODUCTS", + "uuid": "6a19f4fb-dd8c-46c6-9e8b-418c84076ecb", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false + }, + { + "uuid": "6bd3e451-7af4-44c8-9ea1-302e5f322a18", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false }, { - "uuid": "e89c1405-9566-4246-bbc5-3dce09323cc5", + "uuid": "39e48091-cfa6-42ce-8963-61559adffa07", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "uuid": "729febab-3ddd-43f7-8697-2079b4633fcb", + "createdAt": "2015-08-10", + "completed": "2015-12-26", + "initiated": "2015-10-31", + "ministryContact": "SKILES DEVANTE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "uuid": "5c62ac6f-5189-46a8-b996-bafe0a8750c2", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "663e3efb-a60d-48cc-af57-03dd5264c489", + "uuid": "51410e88-2c11-4b77-a3c3-48fbcb84bdae", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "uuid": "eb8be120-3413-415f-a247-5271a352d51a", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false @@ -82881,11 +97588,11 @@ "siteRegistry": true }, { - "uuid": "d3d6cc6d-3c11-423c-98d6-2875947b75d5", - "createdAt": "2018-03-13", - "completed": "2019-06-08", - "initiated": "2016-07-29", - "ministryContact": "BAUMBACH STEVIE", + "uuid": "ba30b922-a6eb-410e-8660-ffadf63ff61a", + "createdAt": "2018-07-23", + "completed": "2019-11-03", + "initiated": "2022-03-07", + "ministryContact": "HAGENES KENDALL", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -82894,15 +97601,21 @@ ], "notationParticipants": [ { - "uuid": "de977ffe-66c9-4d7f-beac-f635927bdbfc", - "name": "SHELL CANADA PRODUCTS", + "uuid": "bfef6911-3272-4544-945f-2f1c7a052dd8", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "b6c00e0d-5115-4c86-9ee2-94876c022c0b", + "uuid": "f5f4eaa7-e21a-49d1-b06d-c16092c11bf0", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "eca08dcd-f740-4e17-8056-263a892dae65", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": true } ], @@ -82911,270 +97624,384 @@ ], "participants": [ { - "uuid": "504cce41-fe3f-4993-832a-f6ed9985a8d1", - "name": "IPSUM", - "endDate": "2015-07-07", - "startDate": "2022-08-13", + "uuid": "0be697eb-8315-40e5-82e9-65bfd0ad9e83", + "name": "AMET, DOLOR SIT", + "endDate": "2022-11-27", + "startDate": "2016-12-18", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "7bc69f1e-39fb-4682-bfc3-336fd3216b35", + "uuid": "5222f592-06d8-45d7-a97c-4b8763472855", "name": "IPSUM", - "endDate": "2022-02-17", - "startDate": "2015-12-28", + "endDate": "2017-08-30", + "startDate": "2021-02-10", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "b4fe3a4a-fc6f-4042-804e-c443eea0938e", - "name": "IPSUM", - "endDate": "2014-09-06", - "startDate": "2014-04-01", + "uuid": "4bff7193-229f-47d7-b349-4938131650d3", + "name": "AMET, DOLOR SIT", + "endDate": "2021-10-17", + "startDate": "2014-03-14", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": true }, { - "uuid": "c543151e-80e0-4626-a18b-c0632e91f16b", + "uuid": "8efdf869-8d15-4362-8e32-67b2887cc7b3", "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2020-12-29", - "startDate": "2016-12-13", + "endDate": "2015-08-21", + "startDate": "2021-03-18", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "0c0f5126-9c3f-44e7-9f50-a5f126e281c1", - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2018-08-04", - "startDate": "2015-11-25", + "uuid": "a81abd40-3537-46ef-a809-71c86a3df66a", + "name": "AMET, DOLOR SIT", + "endDate": "2018-12-08", + "startDate": "2023-06-22", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false } ], - "suspectLandUses": [ + "documents": [ { - "uuid": "0adb1add-e1b5-48a5-8f2d-f60b533e5e7c", - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-05-12 (described on Site Profile dated 2017-05-12)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "uuid": "e14dc8d4-645d-49a0-b852-f1b0bfabe534", + "siteRegistry": false, + "documentDate": "2022-04-03", + "receivedDate": "2018-08-06", + "uploadedDate": "2014-12-29", + "title": "Summary of Site Conditions, 1537 W 41st Avenue, Vancouver", + "participants": [ + { + "uuid": "5d565493-c5a2-435a-9857-5249b5ca4c97", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "d83ce53e-3491-420d-9385-1804e83553d8", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "5cb5394a-98a0-4ad9-93d9-1f4d741b8881", + "name": "IPSUM", + "siteRegistry": false, + "role": "AUTHOR" + } + ] }, { - "uuid": "56242157-a147-4fcd-84b1-6d57c3bb2123", + "uuid": "2a51acaa-04c1-43bb-87e9-2d7321d5164d", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-09-25 (described on Site Profile dated 2018-09-25)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "documentDate": "2014-03-09", + "receivedDate": "2013-11-22", + "uploadedDate": "2014-02-23", + "title": "Summary of Site Conditions, 1537 W 41st Avenue, Vancouver", + "participants": [ + { + "uuid": "1c34f4a3-0361-4783-abbf-37e47ec9ff5f", + "name": "AMET, DOLOR SIT", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "cc50b7e3-0b69-467a-9a1b-13ba572c3fd4", + "name": "AMET, DOLOR SIT", + "siteRegistry": false, + "role": "AUTHOR" + } + ] }, { - "uuid": "7677fdcc-9206-4973-b897-ac9bb87c2f35", - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-08-25 (described on Site Profile dated 2017-08-25)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "uuid": "6347c515-a95e-4ab1-8357-411d32d218c8", + "siteRegistry": true, + "documentDate": "2017-07-28", + "receivedDate": "2014-02-22", + "uploadedDate": "2021-08-22", + "title": "Summary of Site Conditions, 1537 W 41st Avenue, Vancouver", + "participants": [ + { + "uuid": "83099fb3-ae64-4177-91ef-68a03ed18e16", + "name": "IPSUM", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "dd6f9201-e36e-48e2-a295-95a8b0885935", + "name": "AMET, DOLOR SIT", + "siteRegistry": false, + "role": "AUTHOR" + } + ] }, { - "uuid": "bebfaad1-b1e2-40ac-bfb9-160a1cdcf159", - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-01-03 (described on Site Profile dated 2019-01-03)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "uuid": "73dce46c-5ffe-44fa-9933-03c45156f24c", + "siteRegistry": true, + "documentDate": "2021-05-25", + "receivedDate": "2022-08-12", + "uploadedDate": "2019-07-21", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "53199534-6020-42c1-9ce1-4fdcf277fe28", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "f134e9b2-2a0c-41c1-a709-b982446b3255", + "name": "IPSUM", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "809fa84a-3ede-46c3-9e54-72e16801f922", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": true, + "role": "AUTHOR" + } + ] }, { - "uuid": "f1e15a44-b0b5-40e8-8b2e-96c92483d974", + "uuid": "485038dd-c57e-4183-bc1c-8f1056fc22fd", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-09-03 (described on Site Profile dated 2015-09-03)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "documentDate": "2015-07-23", + "receivedDate": "2023-02-21", + "uploadedDate": "2017-03-03", + "title": "Preliminary Site Investigation, Detailed Site Investigation and Remedial Plan for the Management Area adjacent to the Shell Site at 1503 West 41st Ave", + "participants": [ + { + "uuid": "5c308aea-2533-4225-9bf2-7f5178618a91", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "a2b50fd6-4bcf-4b8f-83c2-763e97b5f9a6", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": false, + "role": "AUTHOR" + } + ] } ], - "parcelDescriptions": [ + "suspectLandUses": [ { - "uuid": "500170a1-be01-4e83-bd41-68c0e0bc6ab4", - "siteRegistry": true, - "dateNoted": "2020-03-26", - "parcelID": "20797", - "crownLandUsePIN": "20149", - "crownLandFileNumber": "16360", - "landDescription": "LOT 2 OF LOT 5 BLOCK 2 DISTRICT LOT 5 PLAN 7141" + "uuid": "38e1a0c6-9c74-403b-80eb-59e224a09b7f", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2015-02-18 (described on Site Profile dated 2015-02-18)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "uuid": "a3baae53-9129-450e-bbf6-2fa873916ead", + "uuid": "a7bcb6b4-4553-4fd2-8299-a5a63e26db8c", "siteRegistry": false, - "dateNoted": "2022-03-07", - "parcelID": "15363", - "crownLandUsePIN": "15271", - "crownLandFileNumber": "18538", - "landDescription": "LOT 2 OF LOT 5 BLOCK 3 DISTRICT LOT 1 PLAN 8268" + "notes": "INSERTED FOR SITE PROFILE DATED 2023-02-16 (described on Site Profile dated 2023-02-16)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "uuid": "49a61b07-e924-424f-9a5a-b2ff08e15ff3", + "uuid": "4918bf18-c54b-4b9b-bff4-ebc245bcb441", "siteRegistry": true, - "dateNoted": "2017-02-03", - "parcelID": "20588", - "crownLandUsePIN": "18945", - "crownLandFileNumber": "16537", - "landDescription": "LOT 1 OF LOT 1 BLOCK 4 DISTRICT LOT 1 PLAN 6644" - }, + "notes": "INSERTED FOR SITE PROFILE DATED 2016-09-30 (described on Site Profile dated 2016-09-30)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + } + ], + "parcelDescriptions": [ { - "uuid": "e88a09ca-81a9-4983-a65b-05868a5f9f6a", - "siteRegistry": true, - "dateNoted": "2016-12-12", - "parcelID": "16299", - "crownLandUsePIN": "19339", - "crownLandFileNumber": "19178", - "landDescription": "LOT 2 OF LOT 4 BLOCK 4 DISTRICT LOT 4 PLAN 5694" + "uuid": "07a747a7-b9b2-43be-a270-4e47f3b39ae6", + "siteRegistry": false, + "dateNoted": "2019-02-03", + "parcelID": "20012", + "crownLandUsePIN": "15837", + "crownLandFileNumber": "19880", + "landDescription": "LOT 2 OF LOT 5 BLOCK 5 DISTRICT LOT 1 PLAN 6050" }, { - "uuid": "d4ad0df2-78c4-4456-9802-c5c443277bdb", + "uuid": "00c5967f-5f2c-4a77-8df5-a3782168267b", "siteRegistry": false, - "dateNoted": "2013-11-01", - "parcelID": "15818", - "crownLandUsePIN": "19110", - "crownLandFileNumber": "19680", - "landDescription": "LOT 2 OF LOT 5 BLOCK 5 DISTRICT LOT 4 PLAN 4884" + "dateNoted": "2018-06-11", + "parcelID": "19142", + "crownLandUsePIN": "20463", + "crownLandFileNumber": "16985", + "landDescription": "LOT 3 OF LOT 4 BLOCK 4 DISTRICT LOT 5 PLAN 5069" } ], "siteDisclosures": [ { - "uuid": "2b67d68c-7901-486c-806e-3071fc8ca366", - "siteRegistry": true, - "dateReceived": "2023-06-16", - "dateCompleted": "2016-04-18", - "dateEntered": "2022-01-20", - "dateRegistrar": "2019-06-22", - "dateLocalAuthorityReceived": "2014-10-27", - "summary": "Quisquam eaque rem reprehenderit vero velit earum.\nError recusandae pariatur.", - "informationUsed": "Cumque inventore enim ea.\nAssumenda ipsum ullam labore esse optio eaque quidem.\nOccaecati quisquam voluptatum quae doloribus ad sapiente debitis sapiente.\nCommodi illum rem.", - "pastOrPresentOrders": "Incidunt ratione accusantium.\nPraesentium ad numquam saepe nobis deleniti.\nNihil iure deserunt.", + "uuid": "a46aebb5-9954-465c-9c09-0c000f790bdc", + "siteRegistry": false, + "dateReceived": "2018-07-27", + "dateCompleted": "2020-07-17", + "dateEntered": "2018-12-30", + "dateRegistrar": "2018-07-08", + "dateLocalAuthorityReceived": "2014-06-28", + "summary": "Maxime eaque atque dolorem totam.\nDoloremque voluptatum alias officia.\nEum error quasi consequuntur accusantium.", + "informationUsed": "Fugit sapiente unde.\nPorro incidunt nulla harum accusamus fuga.\nNecessitatibus natus porro velit quos nesciunt deserunt beatae.\nSimilique libero hic excepturi reiciendis porro alias quaerat temporibus ipsa.", + "pastOrPresentOrders": "Maxime provident accusamus.\nReprehenderit temporibus quisquam illo repellendus quis perspiciatis.\nUllam omnis vitae molestias.", "commercialAndIndustrialPurposes": [ { - "uuid": "ec7f441e-9659-40bf-a640-85d0e79658da", - "scheduleReference": "F1*", + "uuid": "28731d21-0e0d-4889-9cbc-02a3897e5617", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false }, { - "uuid": "6b617226-bf20-4744-a872-7e5c0351c965", - "scheduleReference": "F2*", + "uuid": "c007c239-3c41-4680-8c33-2f1c539ca130", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, { - "uuid": "55dfbc89-f315-46f3-ada5-20cbfd2b495c", + "uuid": "c056e6da-2ef5-4c3c-8cbf-77bcca4d7bb9", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true + "siteRegistry": false } ] } ], "activityLog": [ { - "uuid": "b6767529-882a-4777-aabd-68d364b715f3", - "siteRegistry": false, + "uuid": "810b421f-da74-49bc-83bc-c0768fae33c3", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "SCHULIST EUNICE", - "timestamp": "2017-10-08" + "user": "CORKERY DARRELL", + "timestamp": "2016-05-07" }, { - "uuid": "2cfbc3a3-29c5-49d2-af5b-c7bd58c33d36", + "uuid": "f42bd114-1d84-4912-a93c-335cf87c73bd", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "AUFDERHAR RALPH", - "timestamp": "2018-05-10" + "user": "HERZOG GUIDO", + "timestamp": "2014-06-15" + }, + { + "uuid": "b2f2e66a-6cb9-4227-84e8-035d3eae2c30", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "PROSACCO DAVONTE", + "timestamp": "2021-04-06" + }, + { + "uuid": "0ffbfc05-f808-4c2a-8d96-bac5bf2027ef", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "VANDERVORT JARRET", + "timestamp": "2017-07-24" + }, + { + "uuid": "2d3179c2-60ae-4c10-9025-04276bb407bd", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "BAUMBACH EPHRAIM", + "timestamp": "2022-06-28" }, { - "uuid": "c972bd81-5d72-4030-b96b-87e2349c67ae", + "uuid": "eae78746-0e2c-4294-a925-ac5c1ca9aed7", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "HILLL LILIAN", - "timestamp": "2021-08-23" + "user": "GRADY JAMEL", + "timestamp": "2022-12-06" }, { - "uuid": "77c374e9-84be-443a-b259-2548e7a2b4b2", + "uuid": "4ffe0726-00e0-4dfa-ab56-ac12f3e65225", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "SPINKA MARJORIE", - "timestamp": "2014-10-16" + "user": "HANSEN TRENTON", + "timestamp": "2022-07-29" }, { - "uuid": "472da4dd-9cb7-4e8d-9c02-4578b36291cd", + "uuid": "bc4aa5fb-091a-4729-9057-24feefe080ef", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "SCHILLER MYAH", - "timestamp": "2015-03-30" + "user": "GUTMANN VICENTE", + "timestamp": "2019-11-19" }, { - "uuid": "ad35102d-710a-43d6-bafa-40ed8cf5226c", + "uuid": "a215d05c-0c7b-4c5e-95ed-9c667c49bd01", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "PAGAC LACEY", - "timestamp": "2016-02-08" + "user": "DICKI SELENA", + "timestamp": "2017-10-12" }, { - "uuid": "957e3421-5bbe-4377-85c9-0f4c6461ee85", + "uuid": "05b0890c-4fd3-41c1-b3be-be8476e4b19a", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "WILL ADELLE", - "timestamp": "2020-12-25" + "user": "HOPPE CARROLL", + "timestamp": "2022-12-17" } ], "associatedSites": [ { - "uuid": "1a815fa3-d87f-49f4-bdaa-29c0f54c6068", - "dateNoted": "2023-07-10", + "uuid": "c4e9623d-e33a-4ed5-bdd9-55f01dc00794", + "dateNoted": "2016-03-12", + "notes": "", + "parcelID": "17729", + "siteID": "15402", + "siteRegistry": true + }, + { + "uuid": "89509d4c-a462-4ec1-8fbb-721060469c17", + "dateNoted": "2014-10-11", "notes": "", - "parcelID": "17504", - "siteID": "20221", + "parcelID": "16217", + "siteID": "18312", "siteRegistry": false }, { - "uuid": "65aeff9a-bbe3-48ff-962e-0fee2a87db3f", - "dateNoted": "2022-05-04", + "uuid": "cca9a91f-3c12-4888-a1fe-957a0ceaaf56", + "dateNoted": "2016-05-28", "notes": "", - "parcelID": "20583", - "siteID": "17765", + "parcelID": "16150", + "siteID": "17392", "siteRegistry": true } ] }, { - "uuid": "e091981f-29d1-4876-8e1b-03af4e0a51e0", - "siteID": 19884, - "address": "265 Boyer Fall", - "latitude": 54.342, - "longitude": -134.2805, - "lastUpdated": "2023-01-18", - "city": "East Jazlynbury", - "region": "Vancouver Island/Coast", - "victoriaFile": "26250-20/16843", + "uuid": "fb1c6190-9f4b-4814-9652-eb51291351ea", + "siteID": 17757, + "address": "284 Lenore Creek", + "latitude": 56.6789, + "longitude": -134.9653, + "lastUpdated": "2019-09-14", + "city": "Greensboro", + "region": "Kootenay", + "victoriaFile": "26250-20/19146", "regionalFile": "N/A", "parcelIDs": [ - 857220, - 7432263, - 6749357, - 3846792, - 8738176 + 3655670, + 4782533, + 4230924, + 1756093, + 3836266 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "667e3bb9-e450-42f4-9e96-7d202024b39d", - "createdAt": "2017-08-06", - "completed": "2021-08-05", - "initiated": "2019-04-02", - "ministryContact": "ZIEMANN REYMUNDO", + "uuid": "8b0f8fc2-3b99-43bd-aede-551e2b9258fc", + "createdAt": "2022-03-11", + "completed": "2016-08-30", + "initiated": "2019-11-24", + "ministryContact": "ROOB ANISSA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -83183,90 +98010,38 @@ ], "notationParticipants": [ { - "uuid": "845057df-f86a-49f4-9151-f99b80ad6423", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "uuid": "231433a7-8b7b-48c7-8c3a-e510442b37d1", - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "uuid": "d16f3477-57eb-4af0-80cd-6781f8e11595", + "uuid": "c1460ac0-27ad-42f1-84b0-86bfe1b5663a", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "cd2a673e-2011-4b65-8caa-92fe3a140211", + "uuid": "0fb089b1-20e3-4218-b9c4-a0d34e54ddf6", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "uuid": "7aaf0cf8-08db-4526-9a08-37eca8ab91f5", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - } - ], - "siteRegistry": true - }, - { - "uuid": "ad9048d0-7b60-4630-a4e5-2095c56ff86d", - "createdAt": "2019-01-10", - "completed": "2016-08-28", - "initiated": "2022-01-30", - "ministryContact": "PAUCEK FLOSSIE", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "uuid": "50965717-1026-4535-a715-a82d901b9f74", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", "siteRegistry": false }, { - "uuid": "fed67907-b5ce-4c34-956e-5683165f440d", + "uuid": "6349387c-da5c-4aaf-8dcf-cbd743bf0a78", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true }, { - "uuid": "2dbce81b-daad-4dd4-b4a5-7bc320176742", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "uuid": "43510d14-3092-468a-9b08-bb5e24d0dc90", + "uuid": "b3114466-05f2-44bc-af26-ac57c85557d0", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true - }, - { - "uuid": "5e34996b-4d47-41b5-bac6-110ceb6fe5ee", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "03aa4e7d-1c4a-4c86-9c3e-970ae41d312c", - "createdAt": "2014-08-04", - "completed": "2019-04-19", - "initiated": "2020-02-18", - "ministryContact": "BARTON AHMED", + "uuid": "b6575e18-0588-4bb1-8f8e-a6d428c2e44d", + "createdAt": "2018-04-19", + "completed": "2017-04-13", + "initiated": "2017-09-04", + "ministryContact": "TILLMAN MELVIN", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -83275,135 +98050,89 @@ ], "notationParticipants": [ { - "uuid": "a9faf897-bab6-4b01-a7ea-ff244fa50a02", + "uuid": "10bdaa2c-4f42-4ad7-9cdd-89cece37f1e4", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false }, { - "uuid": "a7d3de3f-09e5-48c9-8cec-ac8fa8949405", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "uuid": "9afd9fda-d435-4f97-bc95-9a3b1b4a917d", + "uuid": "16fef8f0-5406-40fc-a346-ef93ecece7df", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "uuid": "215302cb-d455-4eb2-87a9-2bdd5a27484a", - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "uuid": "e5d30fc1-d1a8-4110-8036-69e6603782c8", - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", "siteRegistry": true - } - ], - "siteRegistry": true - }, - { - "uuid": "c8ba95b0-c34b-45c8-86d0-9d4aa5e8f982", - "createdAt": "2018-02-08", - "completed": "2018-03-29", - "initiated": "2019-03-06", - "ministryContact": "KUHIC KODY", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "uuid": "25539005-93a8-458e-ba78-6b84829330d0", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false }, { - "uuid": "4abba883-272c-4441-adbc-42007d9b8460", - "name": "SHELL CANADA PRODUCTS", + "uuid": "c9254cf5-dfc7-4a3f-bd92-da8c68adfde9", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "04c07292-9810-4430-b5c2-a7c5f984a03d", + "uuid": "3b85151c-d635-4935-8c0a-f4455faf227c", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "uuid": "cec6feb1-2e3d-4c29-a182-f88adf84c0d8", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", "siteRegistry": false }, { - "uuid": "edb32bd7-f867-4f33-8318-2a53643b3e99", + "uuid": "fe0521ce-c984-45a0-81c1-45bff2f0eb9e", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false } ], "participants": [ { - "uuid": "47abd620-5e8a-4fda-b0e4-83d0bd874c35", - "name": "IPSUM", - "endDate": "2016-01-31", - "startDate": "2022-09-12", + "uuid": "d46fb748-ad7f-45d4-ba4a-14cd0f918e21", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2016-03-21", + "startDate": "2022-04-21", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": true }, { - "uuid": "218daca9-42af-47c2-a20e-c384e8e8dce7", + "uuid": "46de1604-a0d4-445a-9a6c-a0281207b940", "name": "SHELL CANADA PRODUCTS", - "endDate": "2017-02-13", - "startDate": "2019-02-09", + "endDate": "2023-07-25", + "startDate": "2021-07-09", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "1e557b4a-de8e-486a-8e6c-410f91505d8d", - "name": "AMET, DOLOR SIT", - "endDate": "2016-02-22", - "startDate": "2017-06-07", + "uuid": "589b991b-261d-4dec-8c1d-e6b7bddb8266", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2021-12-12", + "startDate": "2020-03-22", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "85ed955b-ceda-42ee-bd60-09683c65bcbe", + "uuid": "ea250964-54a8-4ba1-8b18-97a69179adc7", "name": "SHELL CANADA PRODUCTS", - "endDate": "2018-12-11", - "startDate": "2015-11-21", + "endDate": "2013-12-19", + "startDate": "2018-03-29", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "8e36e30d-f421-4961-969a-61bcce17c5ab", - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2014-09-06", - "startDate": "2016-04-14", + "uuid": "45372767-bcae-4eec-8e8d-9d0744bf60ab", + "name": "AMET, DOLOR SIT", + "endDate": "2014-04-21", + "startDate": "2020-09-03", "notes": "", "roles": [ "EMPLOYEE" @@ -83411,207 +98140,273 @@ "siteRegistry": false } ], - "suspectLandUses": [ + "documents": [ { - "uuid": "4fdc3ada-d282-4bb8-bc80-ad486893e874", + "uuid": "1c566520-aa60-4d37-8288-67ea38301aea", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-03-08 (described on Site Profile dated 2017-03-08)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "documentDate": "2023-05-29", + "receivedDate": "2017-05-07", + "uploadedDate": "2016-10-20", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "b36cbcdf-2d6b-40e2-9d8f-df0a286cd709", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": true, + "role": "AUTHOR" + } + ] }, { - "uuid": "91fe6521-c422-444b-bea6-95e3fbba5606", + "uuid": "1767414a-62b9-4097-8810-c78fae5361bc", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-02-26 (described on Site Profile dated 2022-02-26)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" - }, + "documentDate": "2013-12-31", + "receivedDate": "2022-07-05", + "uploadedDate": "2013-11-15", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "7898af4a-492d-4671-a28e-c67ea0841a78", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "3b2eae3e-e29c-4784-9b29-dd8366eddc8d", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "3e02fe92-866c-42a6-b377-2df72183691c", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": true, + "role": "AUTHOR" + } + ] + } + ], + "suspectLandUses": [ { - "uuid": "e21ffff2-6fed-44de-bd2b-18e23b20e5ca", - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-04-13 (described on Site Profile dated 2022-04-13)", + "uuid": "bc6bf660-6b38-452b-b669-86ba15749981", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2021-11-25 (described on Site Profile dated 2021-11-25)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "uuid": "33f904f3-da4f-4840-9099-9ba818edb0d0", + "uuid": "9bba5609-7a18-4cbf-a9ec-4691041b37aa", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2023-08-14 (described on Site Profile dated 2023-08-14)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "notes": "INSERTED FOR SITE PROFILE DATED 2015-06-15 (described on Site Profile dated 2015-06-15)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], "parcelDescriptions": [ { - "uuid": "1d268b16-cc5b-496a-b06a-85ea22a50027", - "siteRegistry": true, - "dateNoted": "2023-03-02", - "parcelID": "18437", - "crownLandUsePIN": "16167", - "crownLandFileNumber": "19579", - "landDescription": "LOT 5 OF LOT 1 BLOCK 1 DISTRICT LOT 2 PLAN 8272" + "uuid": "a164a7d8-2783-4753-9cd6-e0072d3b6558", + "siteRegistry": false, + "dateNoted": "2016-01-25", + "parcelID": "18876", + "crownLandUsePIN": "15763", + "crownLandFileNumber": "20046", + "landDescription": "LOT 5 OF LOT 2 BLOCK 1 DISTRICT LOT 2 PLAN 8051" }, { - "uuid": "3719a1c9-0164-42f7-9856-adfc00db5ae4", - "siteRegistry": false, - "dateNoted": "2015-04-04", - "parcelID": "15593", - "crownLandUsePIN": "19491", - "crownLandFileNumber": "15598", - "landDescription": "LOT 4 OF LOT 5 BLOCK 3 DISTRICT LOT 2 PLAN 5206" + "uuid": "1979fcf9-5800-46c7-b7c2-9a3c48d06daa", + "siteRegistry": true, + "dateNoted": "2017-06-03", + "parcelID": "15500", + "crownLandUsePIN": "18143", + "crownLandFileNumber": "20384", + "landDescription": "LOT 3 OF LOT 2 BLOCK 5 DISTRICT LOT 1 PLAN 4077" }, { - "uuid": "f774d09a-3c74-4097-9f6e-cef05a96a754", + "uuid": "02731168-9136-4ac7-8ca7-36a3466458aa", "siteRegistry": true, - "dateNoted": "2014-06-12", - "parcelID": "20293", - "crownLandUsePIN": "16772", - "crownLandFileNumber": "19953", - "landDescription": "LOT 5 OF LOT 4 BLOCK 2 DISTRICT LOT 4 PLAN 3365" + "dateNoted": "2021-06-21", + "parcelID": "16706", + "crownLandUsePIN": "19562", + "crownLandFileNumber": "15968", + "landDescription": "LOT 2 OF LOT 3 BLOCK 2 DISTRICT LOT 2 PLAN 5853" }, { - "uuid": "6fba4eea-7682-4300-abcb-53204390e741", - "siteRegistry": false, - "dateNoted": "2022-05-08", - "parcelID": "17786", - "crownLandUsePIN": "19499", - "crownLandFileNumber": "15547", - "landDescription": "LOT 5 OF LOT 5 BLOCK 1 DISTRICT LOT 3 PLAN 2945" + "uuid": "89e73481-3082-4cb1-a839-9a20870da3e5", + "siteRegistry": true, + "dateNoted": "2013-12-20", + "parcelID": "16420", + "crownLandUsePIN": "19148", + "crownLandFileNumber": "17340", + "landDescription": "LOT 4 OF LOT 1 BLOCK 2 DISTRICT LOT 5 PLAN 3167" } ], "siteDisclosures": [ { - "uuid": "b53c2c6f-4976-49c5-8a24-5098e52b6570", + "uuid": "b3afc5b7-db50-4f67-92e1-591cf3ce9ec7", "siteRegistry": true, - "dateReceived": "2017-04-19", - "dateCompleted": "2019-06-06", - "dateEntered": "2020-10-20", - "dateRegistrar": "2022-11-25", - "dateLocalAuthorityReceived": "2022-11-17", - "summary": "Incidunt et consequuntur.\nAspernatur cumque doloremque id rem laudantium.\nNobis quos est itaque sequi veritatis non rerum iste.", - "informationUsed": "Quisquam odio soluta magnam similique quas distinctio laboriosam.\nAliquid ipsa explicabo sunt quo itaque possimus doloremque.\nVeniam magnam consequuntur sunt minima nesciunt.\nIpsa perferendis dignissimos minima officiis quisquam ipsa.\nMolestiae odio cum expedita tempora reprehenderit.", - "pastOrPresentOrders": "Labore illum aliquam perferendis rerum quasi deserunt dignissimos aperiam.\nMinus nesciunt animi qui quas itaque mollitia explicabo qui.", + "dateReceived": "2020-06-17", + "dateCompleted": "2019-06-16", + "dateEntered": "2017-09-13", + "dateRegistrar": "2020-07-31", + "dateLocalAuthorityReceived": "2022-10-06", + "summary": "Impedit reprehenderit saepe cupiditate accusamus.\nCommodi delectus delectus impedit mollitia consectetur dignissimos cum tempora.\nRecusandae maxime et perspiciatis laborum distinctio.", + "informationUsed": "Corrupti quod quia dignissimos voluptatibus voluptas et ducimus ratione dicta.\nCommodi enim quia perspiciatis libero saepe ex.\nVoluptatum eos sapiente perferendis modi minima unde corrupti illum sit.\nConsectetur ut totam repudiandae facilis possimus fuga.", + "pastOrPresentOrders": "Dolore placeat aliquid distinctio soluta velit dolore distinctio minus reiciendis.\nPerferendis consectetur consequatur adipisci eveniet autem temporibus.\nRepellat tempore quidem dolores praesentium eligendi qui ipsum cum.", "commercialAndIndustrialPurposes": [ { - "uuid": "f285ba95-4e56-4890-8ce1-54d43c37eb57", + "uuid": "ed3db3c9-66cd-4002-9d77-582f0b20b617", "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { - "uuid": "9b3b029a-3fb3-43ae-aa5d-6c5cb45b499f", + "uuid": "b50faef5-ac93-4929-9a2f-7817d4fc7402", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false }, { - "uuid": "62d6fa0b-c82c-49de-a4f7-3d71e41287ff", + "uuid": "52af58ef-913a-42f9-856a-0f2b10254ed8", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "uuid": "c4427f00-44ab-42a1-b9e1-7e8b37d29f2b", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + } + ] + }, + { + "uuid": "de28e9d0-fbfc-40b2-a2f2-3dbcf753651b", + "siteRegistry": true, + "dateReceived": "2017-01-13", + "dateCompleted": "2020-04-16", + "dateEntered": "2023-07-24", + "dateRegistrar": "2017-09-02", + "dateLocalAuthorityReceived": "2015-07-11", + "summary": "Delectus eum nihil quae fuga earum accusantium.\nAdipisci vel rerum voluptates.", + "informationUsed": "Optio tempore minima iusto libero nisi illum.\nItaque accusantium corporis sed laborum nisi tenetur deleniti earum provident.\nEligendi id iste.\nEsse sit id et eaque fuga voluptas magnam.", + "pastOrPresentOrders": "Tempore id debitis sed sunt voluptates.\nCupiditate aliquid assumenda veritatis magni quasi asperiores reprehenderit.\nMinus nulla in vitae suscipit voluptas officia nemo aut.", + "commercialAndIndustrialPurposes": [ + { + "uuid": "6f30e791-4dd6-4d83-b9d1-f6d2b7a53520", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { - "uuid": "e885ebd8-e51f-4e23-8597-f6869383ddef", - "scheduleReference": "F2*", + "uuid": "ac5e8e32-6309-4c9f-8bb6-5b41dc2611cc", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true + "siteRegistry": false } ] } ], "activityLog": [ { - "uuid": "37052336-bee6-4157-8ae4-8e628c30a939", - "siteRegistry": true, + "uuid": "12cced90-b52d-41c2-9189-c45f8820d126", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "ZEMLAK EARNEST", - "timestamp": "2015-07-18" + "user": "O'KEEFE HILMA", + "timestamp": "2019-02-09" + }, + { + "uuid": "7869bf17-c2a9-48b2-bfdf-3aae4b93bdb6", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "KOVACEK SVEN", + "timestamp": "2017-08-14" }, { - "uuid": "138612c6-7dda-40e3-a504-fafb726bf6e8", + "uuid": "1c91cce1-b1c3-4f7c-ac4a-d672d1a0ac9b", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "MERTZ SANTINA", - "timestamp": "2017-03-17" + "user": "SMITHAM CARMELA", + "timestamp": "2022-02-07" }, { - "uuid": "e0cc1d43-517a-4518-ac25-fd0220a5c950", + "uuid": "2fbbaa8c-61d3-4748-ae40-776f8b0dec92", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "LANGOSH ALDEN", - "timestamp": "2023-07-12" + "user": "ROLFSON DESTINEY", + "timestamp": "2014-04-01" }, { - "uuid": "022fa45e-3947-4cb9-a746-c482148a228a", + "uuid": "32031671-c1e2-4f9a-91a4-b8e414b5cf82", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "MACGYVER DOVIE", - "timestamp": "2015-01-10" + "user": "SCHULIST-BAUMBACH CALEIGH", + "timestamp": "2015-12-31" }, { - "uuid": "ee10f4ca-9dc0-492e-9242-af66073d4cde", + "uuid": "3cced567-992b-4cff-a3e1-0e4903cb2e3e", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "WEST LILIAN", - "timestamp": "2023-10-08" + "user": "BEAHAN JACKELINE", + "timestamp": "2022-11-22" }, { - "uuid": "0198f257-ee14-4fe8-aa8d-a3edee4f9e88", + "uuid": "ae2c0f45-229b-4701-9217-ddb1a4c3d85e", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "POWLOWSKI CLOTILDE", - "timestamp": "2021-01-16" + "user": "FARRELL-BODE ROWLAND", + "timestamp": "2019-01-27" + }, + { + "uuid": "1467e4fb-0191-4656-9a36-83899d1a93d4", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "LOCKMAN LACEY", + "timestamp": "2017-08-31" } ], "associatedSites": [ { - "uuid": "a8a31cc1-fbcc-41d2-9f9c-b28804a713f0", - "dateNoted": "2015-07-11", - "notes": "", - "parcelID": "15852", - "siteID": "20490", - "siteRegistry": false - }, - { - "uuid": "ae0f9e7d-081d-4dda-afdf-d9678dd1b0ba", - "dateNoted": "2022-01-30", + "uuid": "86eff7e9-1e3e-48f2-a7a5-92d62eb86c2c", + "dateNoted": "2018-04-13", "notes": "", - "parcelID": "19214", - "siteID": "20380", + "parcelID": "16132", + "siteID": "16182", "siteRegistry": false }, { - "uuid": "7a7edc88-0839-40e0-b2a6-3effcb494418", - "dateNoted": "2022-01-22", + "uuid": "a5255512-8549-48a9-81b1-1118b89baeb8", + "dateNoted": "2018-08-27", "notes": "", - "parcelID": "16804", - "siteID": "17688", + "parcelID": "19277", + "siteID": "15253", "siteRegistry": true } ] }, { - "uuid": "a0ac7341-1faf-456a-a40a-f78036753039", - "siteID": 18254, - "address": "376 Hackett Neck", - "latitude": 51.2954, - "longitude": -130.7718, - "lastUpdated": "2021-07-08", - "city": "Ceres", - "region": "Thompson-Okanagan", - "victoriaFile": "26250-20/8482", + "uuid": "c35891bc-7cbf-4db9-ac0c-5d03ba2b2817", + "siteID": 18213, + "address": "23437 Wolf Pass", + "latitude": 50.3295, + "longitude": -120.4702, + "lastUpdated": "2020-11-09", + "city": "Braunboro", + "region": " North Coast", + "victoriaFile": "26250-20/9067", "regionalFile": "N/A", "parcelIDs": [ - 3044079, - 6480919, - 1522617, - 7934123, - 9958302 + 3946795, + 8958892, + 6472872, + 336777, + 5776581 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "3988021b-83a0-49a2-9751-a2592316ea21", - "createdAt": "2021-04-24", - "completed": "2016-09-26", - "initiated": "2015-02-22", - "ministryContact": "HEGMANN NELLE", + "uuid": "63ef4d13-6d95-4c82-8277-7de7b9e94df6", + "createdAt": "2017-10-29", + "completed": "2020-08-30", + "initiated": "2020-06-28", + "ministryContact": "YUNDT CORALIE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -83620,66 +98415,38 @@ ], "notationParticipants": [ { - "uuid": "a86c2e0a-aff9-4975-85f6-8e316db37021", + "uuid": "747b1597-377f-433e-a42f-34e9399e064e", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "6705c562-d17b-45a2-b0ee-2a10103cee9d", + "uuid": "a81a85fe-8ade-4d79-91d8-9b3bc3cc28f3", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - } - ], - "siteRegistry": false - }, - { - "uuid": "0092592f-c86a-4e63-853e-da2afc2626f9", - "createdAt": "2018-07-09", - "completed": "2016-10-08", - "initiated": "2019-03-19", - "ministryContact": "CORKERY CRISTOPHER", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "uuid": "aee31512-ca05-4c0f-99b1-e68c8af8fa7a", - "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "d7df65ea-8cce-41ff-a0f8-e3f2730ed949", + "uuid": "7a77758d-1424-4a02-9c92-df9345ca559e", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "bc57d5a8-f182-4a73-b53a-e38819f78860", + "uuid": "2eed76f9-6526-4529-84ba-7f9a6b4b037b", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "uuid": "5c416788-b42f-404f-9c23-8054ea66dc0f", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "b5a72e6b-ce21-4b60-ba6c-9359381e5cf1", - "createdAt": "2020-10-28", - "completed": "2016-11-15", - "initiated": "2019-09-07", - "ministryContact": "WEST SARAH", + "uuid": "87a4860e-716f-487a-bd19-a62cc9e791a1", + "createdAt": "2021-07-11", + "completed": "2014-08-10", + "initiated": "2018-08-24", + "ministryContact": "SCHROEDER LURA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -83688,83 +98455,56 @@ ], "notationParticipants": [ { - "uuid": "8f30f116-2927-4d77-aef7-d44bf17e4f9a", + "uuid": "228fba6b-b40b-4a86-8000-bf27145fbee1", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false + "role": "SUBMITTED BY", + "siteRegistry": true }, { - "uuid": "60ec8a60-b3db-47dd-bd51-b32a7c808b96", + "uuid": "0c34c4c6-2d75-4ef6-b929-f202702d2090", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false + "role": "SUBMITTED BY", + "siteRegistry": true }, { - "uuid": "b8019b30-5b6c-4c3a-9194-b7abc7de4df9", + "uuid": "e7d81d5f-db7c-49aa-a6b6-b48acccfa117", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false }, { - "uuid": "5da0e5b6-5ec9-4736-854e-5c572bdd247a", - "name": "SHELL CANADA PRODUCTS", + "uuid": "cc1f2770-7f6d-4695-aa4f-e7e8af5e013f", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true + }, + { + "uuid": "462d578f-2566-4b5b-8950-19cce6e543af", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true } ], "participants": [ { - "uuid": "7a602dbc-5190-4bd5-be60-00419b0b2f7b", + "uuid": "fe4d7c71-4332-4ef9-8f64-832e0549652f", "name": "AMET, DOLOR SIT", - "endDate": "2022-11-06", - "startDate": "2019-12-15", + "endDate": "2017-06-21", + "startDate": "2014-12-16", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": false - }, - { - "uuid": "6b0f35ed-14e3-4e0b-bad9-9d6092533f1d", - "name": "AMET, DOLOR SIT", - "endDate": "2018-10-30", - "startDate": "2020-07-27", - "notes": "", - "roles": [ - "ORGANIZATION" - ], "siteRegistry": true }, { - "uuid": "7df6d1cf-e4c9-4c28-8be5-a0d0f5a55a6e", - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2016-01-03", - "startDate": "2017-07-01", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": false - }, - { - "uuid": "5ea7e571-15b8-4ef1-8a46-78dc989e4c32", + "uuid": "eee91839-ef7e-46c4-996b-38d8b4f03ce9", "name": "IPSUM", - "endDate": "2023-07-20", - "startDate": "2014-04-07", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": true - }, - { - "uuid": "37d1d029-28a9-4c25-93a3-245a065cd60d", - "name": "SHELL CANADA PRODUCTS", - "endDate": "2020-09-29", - "startDate": "2014-10-22", + "endDate": "2018-01-01", + "startDate": "2017-04-21", "notes": "", "roles": [ "ORGANIZATION" @@ -83772,209 +98512,222 @@ "siteRegistry": true } ], - "suspectLandUses": [ + "documents": [ { - "uuid": "facf4e34-5ceb-487e-b19c-2128bec2c1aa", + "uuid": "e6f75f0d-fd1e-454f-9415-6ce7d6db0ba6", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2023-01-31 (described on Site Profile dated 2023-01-31)", + "documentDate": "2020-11-05", + "receivedDate": "2018-07-11", + "uploadedDate": "2023-07-25", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "b98190bc-aa58-41aa-8ca6-8343cdcf878d", + "name": "AMET, DOLOR SIT", + "siteRegistry": false, + "role": "AUTHOR" + } + ] + } + ], + "suspectLandUses": [ + { + "uuid": "49e2386a-dee0-470c-888f-5a4d51551552", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2021-09-30 (described on Site Profile dated 2021-09-30)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "uuid": "a950d8ec-8321-40a7-8db1-ec1e274766f7", + "uuid": "a374aba4-0f37-47cd-bf3e-8f7738ded55e", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-08-24 (described on Site Profile dated 2017-08-24)", + "notes": "INSERTED FOR SITE PROFILE DATED 2017-03-04 (described on Site Profile dated 2017-03-04)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], "parcelDescriptions": [ { - "uuid": "2a1c7bdd-60f6-4ab7-b37a-ad38fc9b0338", + "uuid": "4674d6e2-8b28-4e84-b9e9-263ad8b30cda", "siteRegistry": true, - "dateNoted": "2020-09-28", - "parcelID": "18629", - "crownLandUsePIN": "18520", - "crownLandFileNumber": "15462", - "landDescription": "LOT 3 OF LOT 1 BLOCK 3 DISTRICT LOT 2 PLAN 8180" + "dateNoted": "2015-01-22", + "parcelID": "18342", + "crownLandUsePIN": "19200", + "crownLandFileNumber": "15854", + "landDescription": "LOT 5 OF LOT 5 BLOCK 5 DISTRICT LOT 5 PLAN 8760" }, { - "uuid": "782cc531-84af-467a-8632-5e09b8115ca9", - "siteRegistry": false, - "dateNoted": "2015-09-07", - "parcelID": "15745", - "crownLandUsePIN": "17166", - "crownLandFileNumber": "20789", - "landDescription": "LOT 2 OF LOT 1 BLOCK 5 DISTRICT LOT 3 PLAN 4441" + "uuid": "d2edc43e-0c8b-4bbc-b7b7-70f5ad3a2d80", + "siteRegistry": true, + "dateNoted": "2016-04-26", + "parcelID": "20570", + "crownLandUsePIN": "16111", + "crownLandFileNumber": "16706", + "landDescription": "LOT 2 OF LOT 2 BLOCK 4 DISTRICT LOT 3 PLAN 2913" + }, + { + "uuid": "624953c3-4f60-4932-9508-a573e92c948e", + "siteRegistry": true, + "dateNoted": "2021-02-15", + "parcelID": "19155", + "crownLandUsePIN": "20439", + "crownLandFileNumber": "17460", + "landDescription": "LOT 2 OF LOT 2 BLOCK 5 DISTRICT LOT 5 PLAN 7646" }, { - "uuid": "535d69cf-8a35-4c3b-8e81-092031401038", + "uuid": "cf22c511-6072-49f4-96bc-331e966fdf29", "siteRegistry": false, - "dateNoted": "2015-01-07", - "parcelID": "15423", - "crownLandUsePIN": "18417", - "crownLandFileNumber": "16460", - "landDescription": "LOT 4 OF LOT 2 BLOCK 3 DISTRICT LOT 5 PLAN 8989" + "dateNoted": "2015-10-01", + "parcelID": "19788", + "crownLandUsePIN": "18686", + "crownLandFileNumber": "17723", + "landDescription": "LOT 2 OF LOT 2 BLOCK 2 DISTRICT LOT 1 PLAN 5358" }, { - "uuid": "4fe26ca3-6b0b-454b-b4d3-198c46e622f1", + "uuid": "9e2564ed-a1bd-4584-a4b9-51a6b76b2be9", "siteRegistry": false, - "dateNoted": "2016-07-15", - "parcelID": "19770", - "crownLandUsePIN": "19000", - "crownLandFileNumber": "16272", - "landDescription": "LOT 1 OF LOT 4 BLOCK 2 DISTRICT LOT 5 PLAN 9657" + "dateNoted": "2020-05-03", + "parcelID": "18719", + "crownLandUsePIN": "20956", + "crownLandFileNumber": "15225", + "landDescription": "LOT 5 OF LOT 2 BLOCK 1 DISTRICT LOT 1 PLAN 9299" } ], - "siteDisclosures": [ - { - "uuid": "23d57a3b-c400-4149-be18-fa36acb7a1ef", - "siteRegistry": false, - "dateReceived": "2014-07-29", - "dateCompleted": "2023-08-07", - "dateEntered": "2014-04-27", - "dateRegistrar": "2016-02-12", - "dateLocalAuthorityReceived": "2015-04-29", - "summary": "Harum autem vero incidunt nostrum dicta assumenda sapiente.", - "informationUsed": "Animi quibusdam rerum aliquid ipsum porro libero.\nEligendi neque maiores id vitae explicabo.\nVeritatis quaerat modi corrupti nobis minima tenetur odit voluptate amet.", - "pastOrPresentOrders": "Reprehenderit deserunt soluta quos esse nam.\nIpsam quam libero quasi.\nAccusantium dolores quae nesciunt odio et vero deserunt voluptate repellendus.", + "siteDisclosures": [ + { + "uuid": "3b1a436d-92c6-46fd-8146-55bf24647463", + "siteRegistry": true, + "dateReceived": "2019-05-26", + "dateCompleted": "2014-08-15", + "dateEntered": "2020-01-29", + "dateRegistrar": "2022-03-18", + "dateLocalAuthorityReceived": "2016-01-19", + "summary": "Pariatur porro debitis porro tempora inventore.\nItaque eius veritatis iure dolorem cupiditate accusantium veniam commodi.", + "informationUsed": "Debitis tempora cupiditate ipsam nostrum quaerat facere at dolores sapiente.\nSunt officia suscipit.\nNatus fugiat unde excepturi laudantium vel.", + "pastOrPresentOrders": "Quam illum nam itaque praesentium impedit iure nostrum at.\nFugit fugiat numquam repellendus provident odit esse repellendus natus.\nIpsum nesciunt veniam neque magnam consequuntur delectus vero dicta atque.", "commercialAndIndustrialPurposes": [ { - "uuid": "caca30d7-0a99-40e3-a13d-beb62ad6dcae", - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false - }, - { - "uuid": "582a4017-83ff-4a68-bdc1-328468446d01", + "uuid": "7338537c-75b6-4f99-b77c-67d8af0b3836", "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true }, { - "uuid": "72dd36d1-faba-4649-90be-786f7507c3ff", - "scheduleReference": "F1*", + "uuid": "78ad1b0f-20e1-43f0-b522-d48f2e5fe67d", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true + "siteRegistry": false } ] } ], "activityLog": [ { - "uuid": "caa9c852-cfda-4e04-806f-046e60b2e90c", - "siteRegistry": true, + "uuid": "e221ec5b-5cd7-4ac1-8b00-f35a01caa4c9", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "EFFERTZ ADELBERT", - "timestamp": "2018-09-04" + "user": "FISHER LIZETH", + "timestamp": "2018-03-06" }, { - "uuid": "3e4437af-4336-48ce-b42d-874c9bfc61cd", + "uuid": "2581f952-9abf-411b-8c67-9337085bd968", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "GOYETTE HAZLE", - "timestamp": "2016-07-23" + "user": "PROHASKA TOMMIE", + "timestamp": "2017-01-17" }, { - "uuid": "dd612256-bfad-4d2f-9866-c9d0f939bb64", + "uuid": "59ba1a7b-2c63-4750-b173-731e09979885", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "SANFORD CARMELLA", - "timestamp": "2023-01-30" + "user": "CARTER MARSHALL", + "timestamp": "2022-04-10" }, { - "uuid": "8154e167-c953-40bb-a506-bf692dee6459", + "uuid": "931b8819-a124-4fd2-a528-7e126a15a92e", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "MURAZIK ALYSA", - "timestamp": "2022-07-11" + "user": "SCHMELER LUIS", + "timestamp": "2014-11-29" }, { - "uuid": "8c9f2491-92fd-4516-8f03-5b9550842009", + "uuid": "b903fa6b-2777-4244-bb4d-5593df99adf1", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "FAHEY SHANNY", - "timestamp": "2019-12-02" + "user": "SPINKA ALF", + "timestamp": "2016-07-08" }, { - "uuid": "a1429a47-fca6-41e8-b64d-be252a673037", + "uuid": "a7f9b319-eaa4-4288-bf9b-49f27f1cf100", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "CORWIN JOSH", - "timestamp": "2021-01-08" + "user": "HEIDENREICH SVEN", + "timestamp": "2015-12-12" }, { - "uuid": "b14e16fb-9de3-4dac-ae78-91088ab26661", + "uuid": "8a46c71e-81d2-4e2f-9983-d4e009acfe0a", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "GLEICHNER NAYELI", - "timestamp": "2019-09-15" + "user": "DENESIK WANDA", + "timestamp": "2016-08-06" }, { - "uuid": "9062b520-a0c3-4b1b-8674-245d4a058b90", - "siteRegistry": false, + "uuid": "b2ff5be5-13cb-422b-aa53-522c1d525e27", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "JACOBI AMERICA", - "timestamp": "2022-05-05" + "user": "D'AMORE MODESTA", + "timestamp": "2020-11-29" }, { - "uuid": "1670a933-50ba-4775-88b5-672b08c49c96", + "uuid": "166a2f8b-cb2d-4d2b-9795-128d0b1be1f7", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "MAYERT GILES", - "timestamp": "2014-06-14" + "user": "HESSEL CARISSA", + "timestamp": "2015-07-07" }, { - "uuid": "9eae2f13-2558-4103-80c1-71e87461e81a", + "uuid": "800d6a66-80e0-438d-9da1-b2f2958d96bd", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "BAHRINGER RHETT", - "timestamp": "2021-01-10" + "user": "ROWE BRENNAN", + "timestamp": "2023-07-12" } ], "associatedSites": [ { - "uuid": "15d3aa51-a33f-492a-beac-19a068a5d377", - "dateNoted": "2014-03-25", - "notes": "", - "parcelID": "18975", - "siteID": "17183", - "siteRegistry": true - }, - { - "uuid": "a1cca59e-bbd1-466d-b166-ab7ffeb2d109", - "dateNoted": "2022-01-16", + "uuid": "be3d921d-b103-4e36-8113-f2abab1fc4c3", + "dateNoted": "2019-09-07", "notes": "", - "parcelID": "19637", - "siteID": "16026", + "parcelID": "15675", + "siteID": "19563", "siteRegistry": false } ] }, { - "uuid": "8edf388c-8591-4bd4-84b9-836277511787", - "siteID": 18284, - "address": "938 Alda Passage", - "latitude": 55.4897, - "longitude": -137.3001, - "lastUpdated": "2022-04-19", - "city": "Gutkowskiberg", - "region": "Vancouver Island/Coast", - "victoriaFile": "26250-20/12993", + "uuid": "7162a284-8bb7-4af3-9489-d02d06be455d", + "siteID": 19693, + "address": "284 Ariane Lane", + "latitude": 48.3558, + "longitude": -124.8614, + "lastUpdated": "2018-06-18", + "city": "Port Gerda", + "region": "Kootenay", + "victoriaFile": "26250-20/2154", "regionalFile": "N/A", "parcelIDs": [ - 4153914, - 4021442, - 9315123, - 487588, - 1363500 + 7762068, + 3848447, + 1542771, + 3548884, + 8646596 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "8183e758-a947-4b62-8f0d-eedf452767f8", - "createdAt": "2020-10-02", + "uuid": "95ea6d2e-e3e6-4383-94b4-359b1b02678c", + "createdAt": "2018-04-20", "completed": "2014-11-01", - "initiated": "2015-12-05", - "ministryContact": "RUTHERFORD TAYA", + "initiated": "2023-05-11", + "ministryContact": "CROOKS MERTIE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -83983,32 +98736,32 @@ ], "notationParticipants": [ { - "uuid": "fcf42bb2-3ad0-4dbe-b5c2-0923b3843a9a", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "uuid": "2a6739e1-1727-46a8-a340-c5d7ab2e40cf", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "5d6b1fb0-5620-4954-a061-a54381b7767a", + "uuid": "4831180e-68a2-4464-9cd4-76cbaf586048", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "d38f8f1d-ceda-488f-919f-caf6bc270ce1", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false + "uuid": "c366d7ba-88b3-4f41-9f6b-8275b4a21416", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "ef00d769-f23d-4c31-ad7b-d5b7a5676eaf", - "createdAt": "2019-10-15", - "completed": "2016-03-07", - "initiated": "2017-01-25", - "ministryContact": "DURGAN DEONDRE", + "uuid": "b065bf7c-1994-4f10-83c0-4378c3f29594", + "createdAt": "2014-06-06", + "completed": "2018-05-10", + "initiated": "2015-12-22", + "ministryContact": "HOWELL DEON", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -84017,32 +98770,44 @@ ], "notationParticipants": [ { - "uuid": "e9785dcd-6066-4300-8ac3-d3ebafb5e389", + "uuid": "4c155383-b35c-4896-a056-c76e417f8ba6", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true + }, + { + "uuid": "89357f9f-ed10-4a75-8413-b86344ee0b57", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "67312710-ef85-4a88-948e-952fcb95fb40", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true }, { - "uuid": "4f009093-ff0e-4aeb-8853-b9bb4a05a5f3", + "uuid": "4cc9cd68-9df9-4c20-ae38-62e894bf0b0b", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "e455049b-820b-4276-8fe0-0310dad65149", + "uuid": "385169a2-631d-4bdd-ac35-ac61368c61d0", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "17a394a1-3838-468d-8971-1e3d8f199483", - "createdAt": "2022-07-16", - "completed": "2022-06-20", - "initiated": "2017-08-30", - "ministryContact": "MOHR KAYLI", + "uuid": "2da2395f-095f-433a-a16a-ab033a076a07", + "createdAt": "2023-08-15", + "completed": "2016-03-22", + "initiated": "2022-04-04", + "ministryContact": "JACOBSON EMMET", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -84051,180 +98816,229 @@ ], "notationParticipants": [ { - "uuid": "3768337a-872c-43a8-a3f8-3d1e6511835c", + "uuid": "93143543-d798-430a-a98c-6e53d2209490", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "617960f9-3a16-4eab-b5a9-89de7bef0cc2", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true - }, + } + ], + "siteRegistry": false + }, + { + "uuid": "38a1936a-38e2-4635-a5eb-ef1f810d346c", + "createdAt": "2020-12-12", + "completed": "2020-05-21", + "initiated": "2016-11-21", + "ministryContact": "STRACKE EZEQUIEL", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ { - "uuid": "6bb97b23-eaa0-4b2d-8ee0-a281a7dce205", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "uuid": "f42d3686-dbab-48ae-897a-34c3fb044d80", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "67fae1a8-0115-447f-9ea6-ac43231e9628", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "uuid": "b3deb9d9-b079-430a-880a-55a874ddc866", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "1e054f59-a4bc-435e-b77c-e36fe6f8fa05", - "name": "SHELL CANADA PRODUCTS", + "uuid": "a958d205-990c-4e81-829a-f7c8e1f1d0f9", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "6b5304dc-97fb-4cc1-bbd0-4b2268108f46", + "uuid": "547385f5-841f-4a03-94a5-b7020cd7af47", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false } ], "participants": [ { - "uuid": "2a6b9cee-c647-4466-96eb-845bb7a7471d", - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2015-04-25", - "startDate": "2022-01-03", + "uuid": "70fd09e7-87b6-4a7b-8d7f-42aa0ec58ff0", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2016-04-01", + "startDate": "2021-12-29", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "c2003d2e-3f62-468f-872b-90b77808c242", + "uuid": "75111ff4-1a45-49f0-9030-50fb181451bc", "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2018-04-24", - "startDate": "2023-05-03", + "endDate": "2018-02-18", + "startDate": "2022-10-08", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": false - }, + "siteRegistry": true + } + ], + "documents": [ { - "uuid": "1cb3d551-a606-4402-b68b-5982bf1b3260", - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2023-09-09", - "startDate": "2020-11-03", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": false + "uuid": "64d968d6-4300-48df-9d77-404e06a494c5", + "siteRegistry": true, + "documentDate": "2017-12-25", + "receivedDate": "2023-08-21", + "uploadedDate": "2022-08-26", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "9c6ec691-4364-49e0-895a-eb04237e2c27", + "name": "IPSUM", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "c8acd349-9275-4e46-9982-01ba29b0831d", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "8dcbc0a8-6f91-40a9-86eb-9c453bab819a", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": true, + "role": "AUTHOR" + } + ] }, { - "uuid": "a53c40b1-e6eb-435a-be5e-f8b67e3598fd", - "name": "IPSUM", - "endDate": "2016-06-07", - "startDate": "2014-10-01", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": false + "uuid": "adbf5e8e-db2a-40fd-9a5a-6582d5cdb8ac", + "siteRegistry": true, + "documentDate": "2023-02-13", + "receivedDate": "2022-12-12", + "uploadedDate": "2023-09-15", + "title": "Preliminary Site Investigation, Detailed Site Investigation and Remedial Plan for the Management Area adjacent to the Shell Site at 1503 West 41st Ave", + "participants": [ + { + "uuid": "a5a3a9ea-8d93-4343-b226-d3630771d8f7", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": false, + "role": "AUTHOR" + } + ] } ], "suspectLandUses": [ { - "uuid": "a61d6947-784a-499f-8da1-9bbc249ed7c3", + "uuid": "9c60f7a9-d1e8-495e-93a7-a12dd02beaa8", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-10-07 (described on Site Profile dated 2018-10-07)", + "notes": "INSERTED FOR SITE PROFILE DATED 2021-12-14 (described on Site Profile dated 2021-12-14)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "uuid": "05a36730-4ffe-49ff-b996-310d39d55941", + "uuid": "c17c2caa-86b9-4539-befd-9b033f9cb4f5", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2020-11-27 (described on Site Profile dated 2020-11-27)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "uuid": "88d623e9-955c-48fb-95f5-77332c9a8c94", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2022-07-24 (described on Site Profile dated 2022-07-24)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "uuid": "9574f69f-768f-4eda-b730-6b52839d7c7b", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2016-05-30 (described on Site Profile dated 2016-05-30)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "uuid": "14a6a366-30fd-4a9c-b84e-96ee95b77995", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-02-21 (described on Site Profile dated 2015-02-21)", + "notes": "INSERTED FOR SITE PROFILE DATED 2014-05-15 (described on Site Profile dated 2014-05-15)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], "parcelDescriptions": [ { - "uuid": "57950936-3e8f-4a90-801a-77b94dd5ffd1", - "siteRegistry": true, - "dateNoted": "2014-12-18", - "parcelID": "16133", - "crownLandUsePIN": "16141", - "crownLandFileNumber": "20965", - "landDescription": "LOT 2 OF LOT 4 BLOCK 1 DISTRICT LOT 4 PLAN 4501" - }, - { - "uuid": "9e12d362-3786-4113-98ff-ef542867b54b", + "uuid": "c554c637-20d2-4e89-94b1-ba846be55b6f", "siteRegistry": false, - "dateNoted": "2013-10-29", - "parcelID": "19534", - "crownLandUsePIN": "20168", - "crownLandFileNumber": "15328", - "landDescription": "LOT 5 OF LOT 2 BLOCK 5 DISTRICT LOT 2 PLAN 7619" + "dateNoted": "2018-12-28", + "parcelID": "20240", + "crownLandUsePIN": "16901", + "crownLandFileNumber": "20192", + "landDescription": "LOT 5 OF LOT 1 BLOCK 4 DISTRICT LOT 1 PLAN 7467" }, { - "uuid": "8a1db5b4-8fa8-4ff4-899a-5a529bc787e1", - "siteRegistry": false, - "dateNoted": "2018-11-04", - "parcelID": "20662", - "crownLandUsePIN": "18491", - "crownLandFileNumber": "19531", - "landDescription": "LOT 4 OF LOT 5 BLOCK 1 DISTRICT LOT 1 PLAN 3062" + "uuid": "8cf16f23-3b3b-4044-9022-74a484339162", + "siteRegistry": true, + "dateNoted": "2016-03-12", + "parcelID": "17533", + "crownLandUsePIN": "17573", + "crownLandFileNumber": "15660", + "landDescription": "LOT 4 OF LOT 3 BLOCK 5 DISTRICT LOT 4 PLAN 6393" }, { - "uuid": "615d76a7-8205-4ac6-a121-86966d723a71", + "uuid": "87c4588a-901e-436a-8895-58b80bf3993c", "siteRegistry": true, - "dateNoted": "2021-12-07", - "parcelID": "16044", - "crownLandUsePIN": "19398", - "crownLandFileNumber": "19176", - "landDescription": "LOT 5 OF LOT 5 BLOCK 1 DISTRICT LOT 3 PLAN 8720" + "dateNoted": "2016-05-11", + "parcelID": "19764", + "crownLandUsePIN": "18882", + "crownLandFileNumber": "17374", + "landDescription": "LOT 2 OF LOT 2 BLOCK 1 DISTRICT LOT 4 PLAN 9102" }, { - "uuid": "f336ca27-5aa3-4b63-ba05-3d423aaaea77", + "uuid": "f1594b40-4198-443c-b2e8-ec93d640b5c6", "siteRegistry": true, - "dateNoted": "2021-06-05", - "parcelID": "20721", - "crownLandUsePIN": "17460", - "crownLandFileNumber": "20069", - "landDescription": "LOT 2 OF LOT 3 BLOCK 5 DISTRICT LOT 3 PLAN 7594" + "dateNoted": "2023-05-28", + "parcelID": "16367", + "crownLandUsePIN": "18122", + "crownLandFileNumber": "20421", + "landDescription": "LOT 1 OF LOT 1 BLOCK 5 DISTRICT LOT 2 PLAN 5502" } ], "siteDisclosures": [ { - "uuid": "a35d742b-5457-45c7-88a8-704956cab756", - "siteRegistry": false, - "dateReceived": "2019-04-18", - "dateCompleted": "2017-02-15", - "dateEntered": "2019-08-14", - "dateRegistrar": "2023-01-08", - "dateLocalAuthorityReceived": "2017-10-25", - "summary": "Et esse iusto quam unde facilis delectus aspernatur maxime.", - "informationUsed": "Adipisci accusamus molestiae quidem temporibus labore assumenda ipsum.\nRecusandae quas est consequatur atque.\nExcepturi tempore eum reprehenderit architecto sint rerum.", - "pastOrPresentOrders": "Cupiditate error fugit ipsum libero.", + "uuid": "ff54bc67-7d49-42d8-86a1-11489d8d7e7a", + "siteRegistry": true, + "dateReceived": "2022-07-29", + "dateCompleted": "2016-10-10", + "dateEntered": "2017-10-14", + "dateRegistrar": "2015-02-07", + "dateLocalAuthorityReceived": "2016-03-01", + "summary": "Nostrum a atque veritatis fuga architecto.", + "informationUsed": "Sit dolorum minus illo accusamus recusandae.\nNumquam pariatur laboriosam rerum vel aliquam consequuntur amet sint.\nDicta molestiae voluptates atque eveniet velit nam iste qui.\nNecessitatibus qui quia quisquam modi quia accusamus.", + "pastOrPresentOrders": "Corporis maxime nam cupiditate.\nPossimus consequuntur animi ab ea quidem.", "commercialAndIndustrialPurposes": [ { - "uuid": "a6cd4db3-6de0-4892-a6a3-44fbc91dcfc2", + "uuid": "f4e45e00-4be1-48f2-8625-c8f952a5ba0f", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true - }, - { - "uuid": "847a15cd-50f6-452c-bf6e-77ca8b7b4d25", - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false }, { - "uuid": "0405e37e-9f13-45f0-8da7-cd44d47bac3c", - "scheduleReference": "F1*", + "uuid": "db82d3d0-1c2f-4590-a269-18f063df2d46", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { - "uuid": "d2d0e37f-a767-46fc-8e58-c019c1142335", - "scheduleReference": "F2*", + "uuid": "39851b8c-3898-4c96-bbbd-ca5043370485", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false } @@ -84233,100 +99047,115 @@ ], "activityLog": [ { - "uuid": "7a1a85ba-8c7e-456a-8325-ef436d469094", + "uuid": "0ccdaab7-588d-408e-9af8-ac48529d4e49", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "HEATHCOTE ELI", + "timestamp": "2022-04-22" + }, + { + "uuid": "cc637cac-a2de-4af7-b178-b6f78bd6fa4b", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "REICHERT BERT", - "timestamp": "2014-02-04" + "user": "POWLOWSKI LIZETH", + "timestamp": "2014-09-06" }, { - "uuid": "4dac44c7-e70c-42b4-89d3-ced4d9ee1867", - "siteRegistry": false, + "uuid": "2b9e3fb6-37ef-4287-b856-ec40ccb23563", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "SIPES ALBERTO", - "timestamp": "2015-12-16" + "user": "GUTMANN JO", + "timestamp": "2021-02-14" }, { - "uuid": "3678591d-1784-4c64-b84c-2821e39ff1b3", + "uuid": "68e2fbb6-626a-45d0-99f0-b5f1d10e43bd", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "CRIST-MAYERT SHAWN", - "timestamp": "2013-10-23" + "user": "BARTOLETTI MACI", + "timestamp": "2020-07-21" }, { - "uuid": "043017ad-5f12-4d72-942e-44c21b3e46c6", + "uuid": "edf1c92e-967a-4d3a-8dcd-2b0235cd938f", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "HAUCK LUCILE", - "timestamp": "2019-12-01" + "user": "BAUMBACH CLOVIS", + "timestamp": "2017-03-10" }, { - "uuid": "bcccfe5d-062c-4d0e-a6d8-0c49a5cd7b2c", + "uuid": "e71ca600-a0de-4c27-82bb-05c3623afe6b", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "GOLDNER JAYDON", - "timestamp": "2014-06-20" + "user": "WALTER EASTER", + "timestamp": "2020-05-18" }, { - "uuid": "c79849bf-4083-4920-a080-33d32fde2132", + "uuid": "909495d6-ace0-4582-bf96-d7a2cf725f6d", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "HALEY TIANA", - "timestamp": "2016-06-11" + "user": "KESSLER MAXWELL", + "timestamp": "2015-02-23" }, { - "uuid": "54fa41ae-3b3c-45d1-b646-b3504eda1284", - "siteRegistry": false, + "uuid": "7f33a61c-acd5-4347-8457-e6d9420e0ae1", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "HILLL RUSSEL", - "timestamp": "2022-07-04" + "user": "ERDMAN DOLORES", + "timestamp": "2014-04-29" } ], "associatedSites": [ { - "uuid": "2427b669-f337-4fea-96a5-d7e094d54704", - "dateNoted": "2018-09-05", + "uuid": "18e0f15a-dc8e-4f70-89ea-77e1db221a34", + "dateNoted": "2020-09-26", "notes": "", - "parcelID": "17195", - "siteID": "20660", + "parcelID": "15911", + "siteID": "16403", "siteRegistry": false }, { - "uuid": "cb5daf49-0363-4cd4-82b8-d4defdc4e4ea", - "dateNoted": "2021-01-25", + "uuid": "7b77a703-adcd-413a-99b9-90f99736a163", + "dateNoted": "2023-07-31", "notes": "", - "parcelID": "15214", - "siteID": "17972", - "siteRegistry": true + "parcelID": "19697", + "siteID": "17277", + "siteRegistry": false + }, + { + "uuid": "832952a8-e2cb-4121-be51-42d5ddafd593", + "dateNoted": "2023-01-15", + "notes": "", + "parcelID": "16939", + "siteID": "19111", + "siteRegistry": false } ] }, { - "uuid": "a0acda97-a72f-442b-8cec-7c2d66cee110", - "siteID": 19154, - "address": "640 Remington Rapids", - "latitude": 55.5731, - "longitude": -132.3763, - "lastUpdated": "2022-08-12", - "city": "New Theodoracester", - "region": "Thompson-Okanagan", - "victoriaFile": "26250-20/8478", + "uuid": "e1343893-28bd-4679-b6cf-7ea77a1acff3", + "siteID": 19399, + "address": "7833 Homenick Parkways", + "latitude": 57.828, + "longitude": -125.8814, + "lastUpdated": "2017-01-23", + "city": "West Cheyanne", + "region": "Mainland/Southwest", + "victoriaFile": "26250-20/1945", "regionalFile": "N/A", "parcelIDs": [ - 9850729, - 7994330, - 1929199, - 9399643, - 152098 + 141227, + 9175183, + 1127181, + 5860074, + 7972763 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "7b528f1f-564c-4eea-85a6-f9f2aa7329b9", - "createdAt": "2022-03-07", - "completed": "2020-05-07", - "initiated": "2023-04-21", - "ministryContact": "TROMP LEXIE", + "uuid": "255f94e9-ecd4-4844-8f7e-81358bad8a5b", + "createdAt": "2017-08-06", + "completed": "2017-01-29", + "initiated": "2019-06-11", + "ministryContact": "JOHNSON ARACELI", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -84335,44 +99164,44 @@ ], "notationParticipants": [ { - "uuid": "9fba22b8-16af-43da-bfc2-476aafa453b8", - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "uuid": "8bd5f33c-3031-418b-a40d-7236ea64e941", + "uuid": "f47d3fea-78fc-429a-b639-0a4f08f69922", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true }, { - "uuid": "1796997e-1a86-4dae-b389-4b5fa0f6d07b", + "uuid": "15168957-6360-4d89-ab7c-851d6f24ba7a", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false }, { - "uuid": "945f4f24-d02b-4141-ab58-420d7955624c", - "name": "SHELL CANADA PRODUCTS", + "uuid": "7b2f6f65-b052-4a5a-b2b0-5587bab07d81", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "27d87b84-f0f2-42bb-89a6-780269ec68bb", + "uuid": "47f61d5a-7e68-4c5c-a918-1597cd6a3d4f", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": true + }, + { + "uuid": "5f5e1fa7-c998-40e8-9463-c9adf2f9d992", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false } ], "siteRegistry": false }, { - "uuid": "81843dcc-9dca-463c-8426-e82872eb2bd1", - "createdAt": "2023-05-24", - "completed": "2019-02-23", - "initiated": "2023-04-07", - "ministryContact": "LEMKE PERRY", + "uuid": "b654b5c7-4972-4e54-b48b-799403ea4e3c", + "createdAt": "2018-08-08", + "completed": "2015-10-07", + "initiated": "2022-02-22", + "ministryContact": "KOSS-LIND ANASTASIA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -84381,54 +99210,44 @@ ], "notationParticipants": [ { - "uuid": "9decbe9f-dfd8-4f13-9c01-24008e75006b", + "uuid": "fce96143-5773-4f24-a8a6-6225b80abd96", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "dc70ef67-6bd1-4765-aff3-2401ecc9d2cd", - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "26057f3f-0668-431e-967b-b4247b8e9330", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true - } - ], - "siteRegistry": true - }, - { - "uuid": "754d82b1-7e82-4206-a15d-96ca36ebe309", - "createdAt": "2017-03-05", - "completed": "2020-02-15", - "initiated": "2016-07-28", - "ministryContact": "SCHOEN-FUNK MARILYNE", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ + }, { - "uuid": "b82aab7c-001a-40d9-a1f7-f1ee2d73047a", + "uuid": "c6491072-11c5-4b8f-b7c0-131f6c040346", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "fea24362-75aa-4bfc-b23b-310043ca647d", + "uuid": "df862cea-6f6c-487c-a833-fa4faf365de1", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "uuid": "f2ad8e7a-c145-49af-93a9-a43029fef359", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": true } ], "siteRegistry": false }, { - "uuid": "a1cb5d5d-b6ad-4986-959a-6809141c3ef7", - "createdAt": "2023-07-09", - "completed": "2017-02-10", - "initiated": "2014-05-09", - "ministryContact": "HEANEY MATILDA", + "uuid": "712edbca-a530-4126-a721-0f58ae306406", + "createdAt": "2023-07-26", + "completed": "2019-04-12", + "initiated": "2020-01-24", + "ministryContact": "EMMERICH GRADY", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -84437,32 +99256,14 @@ ], "notationParticipants": [ { - "uuid": "c1d377c5-e4e8-455f-b650-30fbd357e0a6", + "uuid": "5d2ff12c-ec4b-4fbc-ba3e-d7660b88c0c8", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "uuid": "25eb3bad-a7a7-4166-aae5-e2bc13690852", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "8f3bc951-3d7d-478d-a4ad-b453a35950c3", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "uuid": "ce21ff49-ad42-4d54-8adf-52644fe16b14", + "uuid": "79bb42e4-2859-48a0-aae0-3e4a56c0d61c", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "uuid": "2d4a20d7-d87d-42ae-8680-8eeb9b8271df", - "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true } @@ -84470,11 +99271,11 @@ "siteRegistry": true }, { - "uuid": "b7ddfddb-dc77-4d8e-b1c1-68fbce8de0fd", - "createdAt": "2021-10-26", - "completed": "2014-08-08", - "initiated": "2015-01-31", - "ministryContact": "HAND JUDGE", + "uuid": "dbcf2a78-9ce3-4761-a0b4-95fa6a4c3f25", + "createdAt": "2014-04-05", + "completed": "2014-10-12", + "initiated": "2019-12-16", + "ministryContact": "SENGER CHASITY", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -84483,56 +99284,56 @@ ], "notationParticipants": [ { - "uuid": "a743e14d-49b4-498d-bf51-d57694e824e7", + "uuid": "c1f08918-adfa-425a-a43c-b823f5ddec3c", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "97157912-78f0-451a-91d8-e5de5421ddee", + "uuid": "b73633a6-d4c8-4642-a524-1cef0edf76d9", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "uuid": "e610fcfd-0216-4071-a23c-1c13c3b6d015", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "fe79b4ac-3245-4e51-bbb8-021e3a9bb360", + "uuid": "93d5bf7a-0c5b-4db5-ae31-b92626513aa6", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "ac3e9968-7696-4058-add8-e3d306025ac8", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "22fe70f5-16a6-4ff2-9d4c-55cd881fa1a5", + "uuid": "3d8c8257-b5d1-4cad-891b-9ea1ced95ed8", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true } ], "participants": [ { - "uuid": "61566c19-c3c9-47de-b1ad-b18ad97c83b8", + "uuid": "1bee704c-a71c-46bf-8e6d-ab2fc41fb4b2", "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2016-06-06", - "startDate": "2023-03-10", + "endDate": "2022-05-07", + "startDate": "2022-03-09", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": false }, { - "uuid": "9533c2d7-6661-443c-9627-4f2b1fa085a7", + "uuid": "352cf04c-d01d-41d6-8a51-b1283a50af8a", "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2015-12-01", - "startDate": "2019-11-26", + "endDate": "2015-08-05", + "startDate": "2015-11-09", "notes": "", "roles": [ "ORGANIZATION" @@ -84540,132 +99341,207 @@ "siteRegistry": true }, { - "uuid": "0ef46603-18d5-4dbc-b59c-751941651bfe", + "uuid": "23372f75-9702-4bd7-bb20-761d3c55ea96", "name": "IPSUM", - "endDate": "2013-10-24", - "startDate": "2015-10-29", + "endDate": "2014-04-11", + "startDate": "2019-01-29", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": false } ], - "suspectLandUses": [ + "documents": [ { - "uuid": "5169567f-b587-4f69-831c-53da1ff1cba7", + "uuid": "07fd66da-526b-4029-b8c6-7aae07f3ff83", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2023-08-19 (described on Site Profile dated 2023-08-19)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "documentDate": "2020-09-14", + "receivedDate": "2014-09-12", + "uploadedDate": "2016-05-18", + "title": "Preliminary Site Investigation, Detailed Site Investigation and Remedial Plan for the Management Area adjacent to the Shell Site at 1503 West 41st Ave", + "participants": [ + { + "uuid": "4f5b300f-20e8-4337-9ea3-def6adbc48e5", + "name": "IPSUM", + "siteRegistry": false, + "role": "AUTHOR" + } + ] }, { - "uuid": "4a2ededd-4cb6-42ab-b100-de602f720a8d", + "uuid": "174e5468-d787-4a89-a1ce-b4daa2ddf193", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-02-23 (described on Site Profile dated 2017-02-23)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "documentDate": "2014-02-08", + "receivedDate": "2023-03-10", + "uploadedDate": "2018-04-25", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "f1cd0bae-7722-4e3d-b133-ce36092ba0a0", + "name": "IPSUM", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "e5b19fb6-e955-4856-9141-d4387429a9f9", + "name": "IPSUM", + "siteRegistry": true, + "role": "AUTHOR" + } + ] + }, + { + "uuid": "8d3d84b5-5397-4171-9d79-5ea4915c227d", + "siteRegistry": true, + "documentDate": "2018-02-28", + "receivedDate": "2020-08-23", + "uploadedDate": "2021-03-09", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "9dc76bc0-d6cf-411c-9bcf-85de0840fcbb", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "7aca95cc-4c3d-4db5-ae4e-6cc7e29061a2", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": true, + "role": "AUTHOR" + } + ] + }, + { + "uuid": "33099eec-2831-46a6-81a4-4e03150ae22e", + "siteRegistry": false, + "documentDate": "2015-04-07", + "receivedDate": "2016-10-16", + "uploadedDate": "2014-01-11", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "6ebc5734-54d6-4137-9934-c0637c3d1448", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "28f274d6-eb90-4ab6-837f-00148f9811ae", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "ea9965ba-e0d3-435c-ab4e-8a150c690a8c", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": true, + "role": "AUTHOR" + } + ] } ], - "parcelDescriptions": [ + "suspectLandUses": [ { - "uuid": "ab564c89-670b-4a01-b303-b0d0953217c9", + "uuid": "b8887978-2682-4998-bea5-b40bab137f11", "siteRegistry": false, - "dateNoted": "2021-06-01", - "parcelID": "20647", - "crownLandUsePIN": "19528", - "crownLandFileNumber": "19295", - "landDescription": "LOT 4 OF LOT 3 BLOCK 3 DISTRICT LOT 3 PLAN 9778" + "notes": "INSERTED FOR SITE PROFILE DATED 2019-02-19 (described on Site Profile dated 2019-02-19)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "uuid": "383064f8-3ef7-4e7e-a542-a9fe68babc33", - "siteRegistry": true, - "dateNoted": "2022-08-29", - "parcelID": "16977", - "crownLandUsePIN": "18994", - "crownLandFileNumber": "20827", - "landDescription": "LOT 3 OF LOT 3 BLOCK 2 DISTRICT LOT 2 PLAN 8794" + "uuid": "aabfefd1-d267-4e24-8660-437ed06d88ca", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2022-07-30 (described on Site Profile dated 2022-07-30)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "uuid": "0a242db0-fb2f-49a3-9c6e-daaebc4d7072", + "uuid": "f3a18258-29b1-4905-acd5-32f7447666f6", "siteRegistry": false, - "dateNoted": "2022-05-26", - "parcelID": "15716", - "crownLandUsePIN": "19179", - "crownLandFileNumber": "16114", - "landDescription": "LOT 5 OF LOT 4 BLOCK 5 DISTRICT LOT 3 PLAN 7628" + "notes": "INSERTED FOR SITE PROFILE DATED 2014-10-28 (described on Site Profile dated 2014-10-28)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "uuid": "275e7b88-679c-4a47-b4b0-d4137087d437", + "uuid": "b69c4fb2-f4a2-4a5d-8fd6-bb1eb5036f2a", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2022-06-08 (described on Site Profile dated 2022-06-08)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + } + ], + "parcelDescriptions": [ + { + "uuid": "ff4753b9-4337-4778-8c02-1b1999889558", "siteRegistry": true, - "dateNoted": "2017-11-14", - "parcelID": "20858", - "crownLandUsePIN": "18547", - "crownLandFileNumber": "16753", - "landDescription": "LOT 2 OF LOT 2 BLOCK 5 DISTRICT LOT 3 PLAN 4591" + "dateNoted": "2018-03-02", + "parcelID": "17780", + "crownLandUsePIN": "16739", + "crownLandFileNumber": "19071", + "landDescription": "LOT 2 OF LOT 4 BLOCK 1 DISTRICT LOT 3 PLAN 7424" }, { - "uuid": "c93aa9e3-8a24-4f23-9f61-90d1f8d55fa0", - "siteRegistry": false, - "dateNoted": "2016-03-13", - "parcelID": "20435", - "crownLandUsePIN": "17489", - "crownLandFileNumber": "16457", - "landDescription": "LOT 1 OF LOT 3 BLOCK 3 DISTRICT LOT 4 PLAN 9071" + "uuid": "dcc5554a-96e9-42fe-9419-d26dfb4ca51a", + "siteRegistry": true, + "dateNoted": "2021-10-21", + "parcelID": "18307", + "crownLandUsePIN": "16341", + "crownLandFileNumber": "18530", + "landDescription": "LOT 3 OF LOT 1 BLOCK 3 DISTRICT LOT 2 PLAN 7842" } ], "siteDisclosures": [ { - "uuid": "051521db-59a1-4885-91e2-a6fcda959a0f", - "siteRegistry": true, - "dateReceived": "2020-09-13", - "dateCompleted": "2016-07-29", - "dateEntered": "2018-01-10", - "dateRegistrar": "2022-11-23", - "dateLocalAuthorityReceived": "2013-11-19", - "summary": "Commodi cum veniam placeat ipsum.\nRatione inventore recusandae deserunt assumenda magnam maxime exercitationem.\nQuis blanditiis officia voluptas ab veniam consequatur sunt sed ratione.", - "informationUsed": "Ut sint repellat veritatis iste.\nConsequatur nesciunt assumenda nisi sapiente nobis veritatis laudantium distinctio.\nRatione occaecati nulla doloribus.\nRepellendus pariatur iure itaque facere nostrum consequatur tenetur aliquid error.\nCumque soluta explicabo fugiat.", - "pastOrPresentOrders": "Excepturi officiis magni expedita nihil.\nDignissimos nobis recusandae placeat.", + "uuid": "5b153a63-88a3-44ea-a359-8a335fc4528b", + "siteRegistry": false, + "dateReceived": "2018-12-08", + "dateCompleted": "2017-04-28", + "dateEntered": "2019-03-01", + "dateRegistrar": "2020-07-11", + "dateLocalAuthorityReceived": "2020-05-19", + "summary": "Natus sunt similique quisquam autem repudiandae illo sapiente vel quo.", + "informationUsed": "Iure quisquam cum quae labore.\nMaiores iure nesciunt nostrum similique ex perferendis harum.\nConsequuntur quos incidunt reiciendis voluptate sint.", + "pastOrPresentOrders": "Nam id atque eius excepturi repudiandae exercitationem eligendi quae mollitia.\nCorrupti quisquam mollitia quibusdam laboriosam deserunt.\nVoluptas quod eveniet laborum in quisquam atque libero impedit exercitationem.", "commercialAndIndustrialPurposes": [ { - "uuid": "8c490a06-77d4-4244-b9b8-7af5bcaf0ae8", - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false - }, - { - "uuid": "d5042616-f01a-4176-b371-b90142ec548d", - "scheduleReference": "F1*", + "uuid": "341a96b6-5fec-404f-b1a2-d4d1d4a15804", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "8c198f0c-ff12-47ea-8722-91b407148861", + "uuid": "62b12759-eefc-4bf1-b170-fa9410520e85", "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false } ] }, { - "uuid": "070b893a-20de-4534-b4b3-919fbaf591bf", + "uuid": "eb52a747-f957-4d73-a036-125c8f8093af", "siteRegistry": true, - "dateReceived": "2023-07-27", - "dateCompleted": "2018-01-24", - "dateEntered": "2018-04-10", - "dateRegistrar": "2018-07-12", - "dateLocalAuthorityReceived": "2023-01-04", - "summary": "Nihil iure a.\nA labore eius exercitationem consequuntur sed.", - "informationUsed": "Nesciunt atque aut sit voluptatibus.\nMolestias accusantium nesciunt.\nVoluptatum vel neque temporibus explicabo corrupti porro tenetur maxime id.\nAlias similique minima sapiente reprehenderit quo.", - "pastOrPresentOrders": "Doloribus sunt repudiandae autem alias beatae eligendi.", + "dateReceived": "2021-12-13", + "dateCompleted": "2015-09-20", + "dateEntered": "2019-06-20", + "dateRegistrar": "2023-08-18", + "dateLocalAuthorityReceived": "2020-05-10", + "summary": "Consectetur odit doloribus et magni molestiae.", + "informationUsed": "Rem enim amet pariatur ullam exercitationem nesciunt.\nFugit impedit iure iure.\nRatione sapiente officiis dolorum expedita odit.\nFugiat dolores animi excepturi cupiditate placeat qui doloribus quasi facere.\nSed quas blanditiis adipisci minima ipsa.", + "pastOrPresentOrders": "Delectus reiciendis voluptatibus cum porro.\nFacilis aut quis repudiandae vel maiores fugit eius qui labore.\nError iste dolorum.", "commercialAndIndustrialPurposes": [ { - "uuid": "93e25582-518b-46eb-bb60-c1c76b3ac746", + "uuid": "4260f02d-30c7-4dd3-b84c-7c715dcc88f8", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "fa272714-8cbd-4cc0-8e55-479fc421a98b", + "uuid": "a74be5bb-c9d7-4d4e-b241-ed7c2d6f93f3", "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "uuid": "ebfb5ccf-22fd-4d86-942d-86d117222149", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true } @@ -84674,106 +99550,78 @@ ], "activityLog": [ { - "uuid": "c1a4f3c9-f174-495f-ac84-2807abe49f18", - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "HOMENICK CAROLANNE", - "timestamp": "2021-05-24" - }, - { - "uuid": "50a2090d-a56e-4c8a-a89c-b9ac4ac99ac9", - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "LAKIN KENNETH", - "timestamp": "2022-12-17" - }, - { - "uuid": "001ed698-c504-4516-b475-d1d9e7be2f31", - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "HELLER LEW", - "timestamp": "2015-02-25" - }, - { - "uuid": "fcdd6b72-625c-4298-9949-4a33b3db3cbc", - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "HARRIS HALIE", - "timestamp": "2013-10-27" - }, - { - "uuid": "a25861e7-7223-4fee-9805-0e249a1c5006", + "uuid": "857363dd-a7b7-4847-9a9e-326aaa2bbeeb", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "WEHNER KENNA", - "timestamp": "2021-09-24" + "user": "GREENHOLT MISTY", + "timestamp": "2013-12-15" }, { - "uuid": "3917a949-fb6e-494e-8788-0c43aac5d12c", + "uuid": "e69b59d7-e84c-4af0-a054-44f35b3e97c1", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "WOLF EVE", - "timestamp": "2015-12-08" + "user": "STEUBER HOLLIE", + "timestamp": "2017-05-06" }, { - "uuid": "53d90ab4-6ad8-4736-aa73-c73cbb483588", + "uuid": "ae0e04de-dfd6-4862-b3f8-58c3a32b5501", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "GERHOLD MYRTLE", - "timestamp": "2014-08-19" + "user": "CUMMINGS LESLY", + "timestamp": "2015-08-23" }, { - "uuid": "309ac91e-f3f3-4d04-809e-c9706e063ce4", + "uuid": "62adb05e-ad4b-4c6f-8020-17af21ebd88c", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "POLLICH WOODROW", - "timestamp": "2022-09-14" + "user": "YOST LUCINDA", + "timestamp": "2019-12-10" }, { - "uuid": "8cfca96a-5fbf-40f1-ac77-894d75bc5dca", - "siteRegistry": false, + "uuid": "c3cb54de-af2f-45e1-8508-08af36e5b42a", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "ONDRICKA LAURINE", - "timestamp": "2016-02-09" + "user": "CONN TREVOR", + "timestamp": "2021-04-08" } ], "associatedSites": [ { - "uuid": "3a4b3199-5b45-4e81-a3b4-34079b511f18", - "dateNoted": "2020-12-08", + "uuid": "166ee988-61de-4ae9-8e53-e287a2d6d7a3", + "dateNoted": "2017-07-28", "notes": "", - "parcelID": "17744", - "siteID": "19839", - "siteRegistry": true + "parcelID": "19750", + "siteID": "20010", + "siteRegistry": false } ] }, { - "uuid": "af00ef2a-0cdb-4a2c-bcc6-f75bc2a6e1b0", - "siteID": 20175, - "address": "370 Dooley Green", - "latitude": 53.6686, - "longitude": -128.9871, - "lastUpdated": "2020-01-08", - "city": "Piercemouth", - "region": "Mainland/Southwest", - "victoriaFile": "26250-20/3663", + "uuid": "7213fe5f-0476-4c16-a4a2-034daac8f980", + "siteID": 20842, + "address": "62380 Yadira Trace", + "latitude": 56.6169, + "longitude": -124.3993, + "lastUpdated": "2014-10-07", + "city": "South Lucybury", + "region": "Kootenay", + "victoriaFile": "26250-20/15228", "regionalFile": "N/A", "parcelIDs": [ - 848162, - 2950941, - 8151120, - 6534893, - 1679509 + 3487031, + 5208851, + 9870564, + 8823273, + 6375809 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "f8514e19-c7e8-4901-97ba-717bb5737462", - "createdAt": "2017-02-06", - "completed": "2015-01-02", - "initiated": "2019-12-15", - "ministryContact": "LARSON MARILYNE", + "uuid": "ae6e00fa-fb18-4668-b5a3-6132ff30ddda", + "createdAt": "2018-11-01", + "completed": "2016-09-02", + "initiated": "2019-04-23", + "ministryContact": "STOLTENBERG KATELIN", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -84782,60 +99630,38 @@ ], "notationParticipants": [ { - "uuid": "16c9af1e-933c-424d-9dd6-1db2aa074359", - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "6065adf6-f6b1-4912-a4ea-210327d03479", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "855a55d6-a3b3-4de5-aaaf-9cf44842af62", - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "1d35cda2-3167-4612-b957-b9d483bda3a8", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "fff0476b-fb1a-43fd-802f-258b5d016ea7", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - } - ], - "siteRegistry": false - }, - { - "uuid": "fca5e318-3bd1-4880-8c77-6873748d72a6", - "createdAt": "2023-09-24", - "completed": "2015-10-13", - "initiated": "2019-11-20", - "ministryContact": "KERTZMANN SADIE", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "uuid": "5e004c50-0398-4f0b-91a8-ab65848261ba", + "uuid": "59662228-449e-4717-a64a-5fd276d7b49e", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "a4c9b99f-4b18-4bd7-9153-6ffe88fad5fa", - "name": "SHELL CANADA PRODUCTS", + "uuid": "c730c3b5-ae85-4fb7-9116-e91c15cc7339", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "ba16229c-ab90-4c78-87c4-e558b51ef0c8", - "createdAt": "2021-07-06", - "completed": "2020-06-27", - "initiated": "2022-01-29", - "ministryContact": "ULLRICH NORBERT", + "uuid": "5f260f75-cd5d-4ca3-bd82-ac278ebe2579", + "createdAt": "2013-11-17", + "completed": "2016-10-11", + "initiated": "2016-05-17", + "ministryContact": "SCHNEIDER-SCHULTZ GWEN", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -84844,56 +99670,44 @@ ], "notationParticipants": [ { - "uuid": "6d99a887-836a-4d40-94d1-38d790a149dd", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "uuid": "36bf0f5c-a1c2-40e7-a4dc-114e29b98098", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "uuid": "092f00ce-f52c-4714-a4a5-050ab8101af5", + "uuid": "5671010d-3c54-44d8-bf08-058a958fdb9f", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "b785c1be-5e13-462d-ab93-132fac0f9908", - "name": "SHELL CANADA PRODUCTS", + "uuid": "7faa0d6c-f40f-4415-a167-427d6f9cbc6a", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "0d8bfcc7-db0e-4ef7-9bd9-637ab045feb4", - "name": "SHELL CANADA PRODUCTS", + "uuid": "2cd09138-98d7-42c6-867d-4d0728c0f101", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false } ], "participants": [ { - "uuid": "c35b9e78-13cd-4d4b-b9ab-10287ae9a2a7", - "name": "SHELL CANADA PRODUCTS", - "endDate": "2016-11-25", - "startDate": "2016-06-18", + "uuid": "13b07816-5997-4a19-8d67-4c0f9895d8fa", + "name": "IPSUM", + "endDate": "2022-08-30", + "startDate": "2021-02-16", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": true }, { - "uuid": "1bc92494-bff1-44d5-b665-5bc19eb9ee74", - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2023-06-09", - "startDate": "2017-08-17", + "uuid": "6c3e51da-76fc-4d79-ada1-9198300e6a25", + "name": "AMET, DOLOR SIT", + "endDate": "2021-09-16", + "startDate": "2014-03-21", "notes": "", "roles": [ "ORGANIZATION" @@ -84901,113 +99715,176 @@ "siteRegistry": false }, { - "uuid": "72e35133-2325-49f1-89ba-88ab8a4a18eb", - "name": "IPSUM", - "endDate": "2023-04-18", - "startDate": "2021-01-07", + "uuid": "a26db2ee-65a5-4eea-9495-22fbe595a21f", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2022-12-23", + "startDate": "2018-11-29", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "13a5db32-451e-4e2f-8fcc-8b1dc73be0a4", - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2021-06-21", - "startDate": "2016-08-24", + "uuid": "1a8ca69d-f1cf-4efd-80de-11b84f92f858", + "name": "AMET, DOLOR SIT", + "endDate": "2020-06-11", + "startDate": "2022-02-14", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": true } ], + "documents": [ + { + "uuid": "049fbe34-0cb9-40f3-a804-276c35507a57", + "siteRegistry": false, + "documentDate": "2017-03-26", + "receivedDate": "2016-12-22", + "uploadedDate": "2020-05-13", + "title": "Preliminary Site Investigation, Detailed Site Investigation and Remedial Plan for the Management Area adjacent to the Shell Site at 1503 West 41st Ave", + "participants": [ + { + "uuid": "482c4789-b98f-4859-9fa7-0cc229d82b9d", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": true, + "role": "AUTHOR" + } + ] + }, + { + "uuid": "3d6e4403-6c30-4c11-95d3-49cbc2fcc575", + "siteRegistry": false, + "documentDate": "2019-04-20", + "receivedDate": "2016-11-29", + "uploadedDate": "2016-07-10", + "title": "Summary of Site Conditions, 1537 W 41st Avenue, Vancouver", + "participants": [ + { + "uuid": "581a5670-2765-40dd-a34b-d8afb2284fbd", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "7edf1f6c-93a4-4efd-bafc-56d312b3d115", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "46531b71-339d-4de6-9d71-36c3f5bf7278", + "name": "AMET, DOLOR SIT", + "siteRegistry": true, + "role": "AUTHOR" + } + ] + } + ], "suspectLandUses": [ { - "uuid": "35e75a1e-bee0-4374-93de-126397e29e05", + "uuid": "245fcebe-aad6-47be-80fe-4b4120f3aef1", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2020-03-07 (described on Site Profile dated 2020-03-07)", + "notes": "INSERTED FOR SITE PROFILE DATED 2019-11-06 (described on Site Profile dated 2019-11-06)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "uuid": "6297e98e-05e3-40f5-ae8f-0bd8d8d30f85", + "uuid": "31903557-5c5f-4c8b-a8b3-9b68dee7d6b8", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2023-07-27 (described on Site Profile dated 2023-07-27)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "notes": "INSERTED FOR SITE PROFILE DATED 2021-01-30 (described on Site Profile dated 2021-01-30)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], "parcelDescriptions": [ { - "uuid": "4162668a-c393-4fd7-b68e-9d2d28506892", + "uuid": "61ccec53-6494-4558-8ef6-0d7457c81d81", "siteRegistry": false, - "dateNoted": "2016-12-05", - "parcelID": "18936", - "crownLandUsePIN": "20056", - "crownLandFileNumber": "16301", - "landDescription": "LOT 5 OF LOT 5 BLOCK 2 DISTRICT LOT 5 PLAN 5352" + "dateNoted": "2014-12-05", + "parcelID": "17938", + "crownLandUsePIN": "20972", + "crownLandFileNumber": "18614", + "landDescription": "LOT 1 OF LOT 2 BLOCK 5 DISTRICT LOT 4 PLAN 6821" }, { - "uuid": "66075eb8-4529-4184-b075-e04e2761c9ce", + "uuid": "f603a5df-2640-4b59-80ea-2cf567c2bada", "siteRegistry": true, - "dateNoted": "2021-10-04", - "parcelID": "18814", - "crownLandUsePIN": "19086", - "crownLandFileNumber": "17860", - "landDescription": "LOT 3 OF LOT 4 BLOCK 1 DISTRICT LOT 5 PLAN 8221" - }, - { - "uuid": "5139165c-2d58-43f4-a3f9-80dba9f856d4", - "siteRegistry": false, - "dateNoted": "2017-03-28", - "parcelID": "20324", - "crownLandUsePIN": "19913", - "crownLandFileNumber": "20577", - "landDescription": "LOT 4 OF LOT 4 BLOCK 3 DISTRICT LOT 2 PLAN 6616" + "dateNoted": "2019-04-27", + "parcelID": "20245", + "crownLandUsePIN": "20210", + "crownLandFileNumber": "20647", + "landDescription": "LOT 5 OF LOT 2 BLOCK 5 DISTRICT LOT 3 PLAN 8290" }, { - "uuid": "4feaa809-a0a4-4d01-9ab9-752950bdc24e", + "uuid": "7ed44a3d-bb19-449b-b42c-9a34f222824e", "siteRegistry": true, - "dateNoted": "2021-05-02", - "parcelID": "15754", - "crownLandUsePIN": "18207", - "crownLandFileNumber": "19577", - "landDescription": "LOT 4 OF LOT 2 BLOCK 2 DISTRICT LOT 3 PLAN 9402" + "dateNoted": "2022-10-30", + "parcelID": "20780", + "crownLandUsePIN": "15489", + "crownLandFileNumber": "20451", + "landDescription": "LOT 5 OF LOT 2 BLOCK 4 DISTRICT LOT 5 PLAN 3235" } ], "siteDisclosures": [ { - "uuid": "497ee474-be7e-44d8-8929-52b82faebdb5", + "uuid": "7de3b9b8-d48c-4f32-9d06-62a3a9654cc7", "siteRegistry": true, - "dateReceived": "2021-07-13", - "dateCompleted": "2017-06-13", - "dateEntered": "2020-11-09", - "dateRegistrar": "2015-10-16", - "dateLocalAuthorityReceived": "2016-04-29", - "summary": "Ratione vero dolores magni ex molestiae repudiandae quisquam vitae nisi.", - "informationUsed": "In voluptas id nam delectus reprehenderit consequuntur quidem animi.\nDoloribus voluptas recusandae doloremque alias.\nExplicabo adipisci ut atque sapiente optio officiis nisi ea voluptatem.", - "pastOrPresentOrders": "Eveniet incidunt ex ipsam.\nMolestias perferendis repudiandae error neque.\nTemporibus ipsam libero corrupti quae enim in quos minus.", + "dateReceived": "2015-03-20", + "dateCompleted": "2016-11-23", + "dateEntered": "2022-06-08", + "dateRegistrar": "2019-09-02", + "dateLocalAuthorityReceived": "2019-05-17", + "summary": "Asperiores voluptate accusantium officia optio eos totam ullam.\nPorro consequatur nobis tempore saepe ex eius.\nCorporis officiis nisi modi molestias sapiente cupiditate recusandae voluptates.", + "informationUsed": "Porro placeat sint sapiente nam enim repellendus enim.\nConsequuntur velit tenetur.\nOdio ab sed quia occaecati consequatur.", + "pastOrPresentOrders": "Ipsam sit tempore similique at rem animi soluta incidunt inventore.\nRatione dolore sit facere dolores dignissimos quo.\nAccusantium iure praesentium eligendi autem quas quos illum corrupti.", "commercialAndIndustrialPurposes": [ { - "uuid": "0387907f-f6f8-445d-a718-d48029da531b", - "scheduleReference": "F2*", + "uuid": "931958fa-26a7-4355-b0d5-2d42fa5743ab", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false }, { - "uuid": "be94afcc-17ac-46f1-b289-a618c94954fc", + "uuid": "b089542e-6a8e-428d-9e94-020226bca008", "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { - "uuid": "42dd05e9-949d-47e9-bf8f-be1085124745", - "scheduleReference": "F1*", + "uuid": "5e26ef19-c2f2-4621-9725-ac5719dbc563", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false }, { - "uuid": "1c03fb42-b275-40be-bf55-4d23b7ece9e7", + "uuid": "c1953aab-667d-4127-beaa-31629fc1d8bc", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + } + ] + }, + { + "uuid": "7b4e9c47-d632-44ca-a2b3-61505f63ca31", + "siteRegistry": true, + "dateReceived": "2023-08-17", + "dateCompleted": "2018-10-18", + "dateEntered": "2019-09-08", + "dateRegistrar": "2021-02-03", + "dateLocalAuthorityReceived": "2014-08-23", + "summary": "Ipsa atque blanditiis praesentium eveniet rerum nemo sint.\nAnimi dolores magni hic reprehenderit.\nVoluptatum sequi ut nihil quidem aliquid sint.", + "informationUsed": "Aperiam ullam laboriosam temporibus ab eligendi vitae iure dolores.\nVeritatis voluptatibus perspiciatis.\nQuia architecto quo eaque quisquam.", + "pastOrPresentOrders": "Voluptates quidem suscipit.\nNobis tempore tempora voluptate cum ipsam numquam error.", + "commercialAndIndustrialPurposes": [ + { + "uuid": "4840cfeb-a5fa-4ad6-a4cc-d7252b397d9d", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "uuid": "43a1500f-c1a2-4bec-a38e-82512b061045", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true @@ -85017,108 +99894,129 @@ ], "activityLog": [ { - "uuid": "db88dffa-3e2b-4c0e-969f-dd09a5301bbe", - "siteRegistry": true, + "uuid": "eb9e7c3c-48b7-47cc-803f-c1968f2d97fd", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "STRACKE CHELSEA", + "timestamp": "2018-12-12" + }, + { + "uuid": "e2fa4669-4e3f-4d2a-abda-848927b16e7e", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "BODE REBECCA", + "timestamp": "2021-07-04" + }, + { + "uuid": "9cf657f1-f49c-415b-b5a5-279177d4a6b5", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "GLOVER CADE", + "timestamp": "2017-09-14" + }, + { + "uuid": "47eeebea-ce4f-4789-8bd8-6a6ac7913634", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "HAUCK-WIZA MARQUIS", - "timestamp": "2018-08-19" + "user": "MARVIN BURDETTE", + "timestamp": "2018-08-25" }, { - "uuid": "d95b9fcd-b0de-49b7-9c15-1b95d967ba18", + "uuid": "012f7e23-b45f-41a8-aeeb-0ecbdf9df0f5", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "OLSON ARVEL", - "timestamp": "2022-12-11" + "user": "KSHLERIN STUART", + "timestamp": "2019-12-30" }, { - "uuid": "badd7dda-3876-4ee7-a8fe-fc4a58863aa8", - "siteRegistry": true, + "uuid": "ef2a36dc-93c2-4a60-9fad-9686cc60719a", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "ROLFSON WILFRED", - "timestamp": "2017-08-21" + "user": "MANTE BLAISE", + "timestamp": "2015-05-31" }, { - "uuid": "5443f99c-de8e-49c0-9db1-36f83c37d002", + "uuid": "1ae06b15-cbd6-43db-8287-8f944a0fbd1b", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "MITCHELL DANNY", - "timestamp": "2022-09-26" + "user": "KUVALIS ISRAEL", + "timestamp": "2016-03-15" }, { - "uuid": "3fe30cad-21ab-4f4d-80ad-2507aa71a316", + "uuid": "e1ca71a9-a3d9-421a-9a31-c483c0d431ea", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "TORPHY MAX", - "timestamp": "2017-01-17" + "user": "SATTERFIELD SOPHIA", + "timestamp": "2019-08-14" }, { - "uuid": "61550650-7597-4aaf-b979-1ada8ccf9b2d", + "uuid": "749bd96d-bd6f-408a-a896-d438c1def1df", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "CARROLL NATALIE", - "timestamp": "2015-08-04" + "user": "SCHILLER LILY", + "timestamp": "2021-12-26" }, { - "uuid": "4b5b39f5-8136-4d39-a18b-5865bfc8300f", - "siteRegistry": false, + "uuid": "71c2c597-ac15-41a2-bf46-edd8f428d54e", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "KAUTZER MITCHELL", - "timestamp": "2021-05-06" + "user": "WELCH GERALDINE", + "timestamp": "2019-01-29" } ], "associatedSites": [ { - "uuid": "b2a6dea7-0c71-4bbf-a2ca-242dffc60946", - "dateNoted": "2022-12-15", + "uuid": "19fc932a-0513-4dd5-a7eb-4feb2d7ac146", + "dateNoted": "2023-06-23", "notes": "", - "parcelID": "15764", - "siteID": "20469", - "siteRegistry": true + "parcelID": "19627", + "siteID": "18365", + "siteRegistry": false }, { - "uuid": "09cf2131-5ead-4b65-bf57-7a80c0ab26ae", - "dateNoted": "2018-05-24", + "uuid": "1eb526f2-4b90-4b5f-a504-66aba4999ede", + "dateNoted": "2014-08-13", "notes": "", - "parcelID": "16441", - "siteID": "20510", - "siteRegistry": true + "parcelID": "15292", + "siteID": "18736", + "siteRegistry": false }, { - "uuid": "08f07f3f-c41e-44ce-ad8c-a6eca15e62a1", - "dateNoted": "2015-10-10", + "uuid": "ced5fa04-209c-4d3e-b53f-cbb75c522f81", + "dateNoted": "2016-12-03", "notes": "", - "parcelID": "18391", - "siteID": "17834", + "parcelID": "19118", + "siteID": "19449", "siteRegistry": true } ] }, { - "uuid": "6fd8cde2-dd14-4cc4-b399-a7459c4b9895", - "siteID": 15735, - "address": "6674 Jean Ways", - "latitude": 54.3454, - "longitude": -138.8894, - "lastUpdated": "2023-09-07", - "city": "West Tevin", - "region": "Kootenay", - "victoriaFile": "26250-20/5665", + "uuid": "43bb3de6-7311-4df5-8013-c8c85c2765f6", + "siteID": 17834, + "address": "45133 Smith Burgs", + "latitude": 56.2432, + "longitude": -125.2134, + "lastUpdated": "2021-10-06", + "city": "West Rebekah", + "region": "Cariboo", + "victoriaFile": "26250-20/8849", "regionalFile": "N/A", "parcelIDs": [ - 449106, - 5421124, - 5864348, - 3420258, - 3242166 + 434092, + 6836207, + 1546846, + 8902905, + 6196291 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "53d88616-d1b1-4542-bcc7-c7962b3d6d34", - "createdAt": "2019-08-13", - "completed": "2022-02-20", - "initiated": "2016-07-03", - "ministryContact": "RODRIGUEZ CLYDE", + "uuid": "9c0df095-ce2f-4d4b-97b1-b74689d4ef82", + "createdAt": "2019-03-26", + "completed": "2014-01-17", + "initiated": "2021-10-17", + "ministryContact": "YOST MELLIE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -85127,26 +100025,32 @@ ], "notationParticipants": [ { - "uuid": "889f4c1a-e622-45b3-adb8-be5ba0a80367", - "name": "SHELL CANADA PRODUCTS", + "uuid": "df08bfa9-a10a-4619-ab50-f8f1d7d3bfab", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "80094fed-8785-4087-b74e-1de2aa3b7a42", + "uuid": "cd668e3d-505d-4921-bd9c-ee802aa1b9a2", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "uuid": "ac70c44d-b11d-4abc-9fba-33a853ce4b48", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "c0dc4e57-4164-45d6-8ba3-f101c2eac98b", - "createdAt": "2021-05-16", - "completed": "2022-04-17", - "initiated": "2020-06-15", - "ministryContact": "JACOBSON REBECCA", + "uuid": "64266241-100b-4e4d-8d5e-48458afa2961", + "createdAt": "2022-02-18", + "completed": "2016-03-25", + "initiated": "2020-08-11", + "ministryContact": "ROSENBAUM RHEA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -85155,60 +100059,44 @@ ], "notationParticipants": [ { - "uuid": "067fe3bf-103e-4c94-96dc-6f539ff09047", - "name": "SHELL CANADA PRODUCTS", + "uuid": "511e27e4-7aaa-4313-be7e-2a85275de2a9", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "7a95add5-cfee-421e-80ca-363dd89062a9", - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "a60a3a65-e1a4-48a6-84cd-646673acc649", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "e223c5f9-0348-42b1-b02a-3c24dd9696cb", + "uuid": "5507ac52-a6b7-4345-b2aa-9e098074183d", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false - } - ], - "siteRegistry": false - }, - { - "uuid": "81637f08-acbe-42ae-b834-80d6ba2a0864", - "createdAt": "2014-06-14", - "completed": "2015-03-16", - "initiated": "2015-10-11", - "ministryContact": "GERHOLD ALEK", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "uuid": "a25a7c5d-c0d2-49c9-9631-3888f46f070c", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", "siteRegistry": true }, { - "uuid": "34cc6e11-50d0-4bb2-bac2-a536c0e54c12", + "uuid": "4fd91ef9-f9a6-4f14-89e2-344091bae99c", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "523888a4-57d5-4cc7-8ab8-213242af1ac6", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": true } ], "siteRegistry": false }, { - "uuid": "2c6d4064-456f-40b9-9852-990d1f54e788", - "createdAt": "2015-12-04", - "completed": "2022-05-29", - "initiated": "2023-06-21", - "ministryContact": "MAGGIO MADIE", + "uuid": "923797a1-5604-4713-af3f-cba00e995189", + "createdAt": "2019-06-26", + "completed": "2021-08-31", + "initiated": "2014-11-17", + "ministryContact": "BLANDA TRAVON", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -85217,25 +100105,13 @@ ], "notationParticipants": [ { - "uuid": "50a88013-3d1f-490b-b1d5-2f9aa7ebf351", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "uuid": "1da34373-df90-410c-98b7-2912a1f9a985", - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "uuid": "ef43b508-6989-4f5b-bd02-628f8650e405", + "uuid": "c16342f6-a716-4004-9442-89d0e0da9466", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "86701390-a020-4847-bb97-72e10a798b35", + "uuid": "2a0f652b-cc0a-43df-85b8-199cece405e3", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true @@ -85246,43 +100122,43 @@ ], "participants": [ { - "uuid": "9e81ffd1-c26f-4565-a62c-2913306d37c1", + "uuid": "bd472f07-edf8-4e49-b9fd-8b320b60e18b", "name": "AMET, DOLOR SIT", - "endDate": "2015-06-09", - "startDate": "2017-07-01", + "endDate": "2015-08-21", + "startDate": "2013-12-14", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": true }, { - "uuid": "02b78a17-0903-440a-a1cb-631f9b9a1897", + "uuid": "83fe989e-bcc8-49bf-89e6-f3ad07330f84", "name": "AMET, DOLOR SIT", - "endDate": "2018-10-13", - "startDate": "2016-05-22", + "endDate": "2019-11-18", + "startDate": "2015-08-18", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": false }, { - "uuid": "2c9caeb5-9aaf-4562-a769-5be2c8a8c5a8", + "uuid": "06f7db07-1d54-4d7c-9a04-3100dd0c977e", "name": "SHELL CANADA PRODUCTS", - "endDate": "2017-04-11", - "startDate": "2014-08-18", + "endDate": "2022-10-30", + "startDate": "2015-10-05", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "2df7dcca-5762-4143-bf7e-b46ef7693a01", + "uuid": "685dc68a-fb77-421a-927e-749b61b413d3", "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2016-08-24", - "startDate": "2014-08-17", + "endDate": "2016-02-12", + "startDate": "2023-10-09", "notes": "", "roles": [ "EMPLOYEE" @@ -85290,244 +100166,297 @@ "siteRegistry": true } ], + "documents": [ + { + "uuid": "a5043581-ea37-4888-bfa5-8adc08bcc1aa", + "siteRegistry": true, + "documentDate": "2014-10-25", + "receivedDate": "2016-06-19", + "uploadedDate": "2020-03-31", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "4a8b31a9-8cc9-4234-9793-3dbbc94fdae9", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "72b8ccd6-67c5-404f-81d3-ea795e527b5b", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": true, + "role": "AUTHOR" + } + ] + }, + { + "uuid": "f98e662e-60a9-4f95-a8d2-10fbf6ca6de0", + "siteRegistry": true, + "documentDate": "2020-03-06", + "receivedDate": "2014-06-20", + "uploadedDate": "2016-08-15", + "title": "Summary of Site Conditions, 1537 W 41st Avenue, Vancouver", + "participants": [ + { + "uuid": "38cc1f8b-147b-4a0a-9782-45a37a59c294", + "name": "AMET, DOLOR SIT", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "f862ce11-605e-4dd0-a0d3-250f964bcfcd", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "5e723e94-0473-4f81-9ea9-7846e7a24265", + "name": "IPSUM", + "siteRegistry": true, + "role": "AUTHOR" + } + ] + }, + { + "uuid": "ef22c84d-8ba2-4f43-8b56-da2e9b5d0d07", + "siteRegistry": false, + "documentDate": "2017-01-07", + "receivedDate": "2020-04-15", + "uploadedDate": "2020-02-23", + "title": "Summary of Site Conditions, 1537 W 41st Avenue, Vancouver", + "participants": [ + { + "uuid": "0151b46c-c81f-4038-a56d-049324998bbf", + "name": "AMET, DOLOR SIT", + "siteRegistry": true, + "role": "AUTHOR" + } + ] + } + ], "suspectLandUses": [ { - "uuid": "b866a279-d8e5-4606-8f9b-d4d589f5d4fc", + "uuid": "4759ea9c-2020-46d2-adb8-143b1009a2ea", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-03-22 (described on Site Profile dated 2014-03-22)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "notes": "INSERTED FOR SITE PROFILE DATED 2016-10-20 (described on Site Profile dated 2016-10-20)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "uuid": "819b8aee-5768-4225-9e86-be08f99a788c", + "uuid": "4e5c6752-a84b-46e6-9151-5d6d6ab62cf6", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-02-11 (described on Site Profile dated 2015-02-11)", + "notes": "INSERTED FOR SITE PROFILE DATED 2017-08-24 (described on Site Profile dated 2017-08-24)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "uuid": "8e4e4526-9787-480d-9868-6900a7757564", + "uuid": "7ef8a009-c38d-473a-8044-d2d0c14dd874", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-03-28 (described on Site Profile dated 2015-03-28)", + "notes": "INSERTED FOR SITE PROFILE DATED 2021-01-06 (described on Site Profile dated 2021-01-06)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "uuid": "1fed7ce9-113c-4de1-a2eb-8ba5b4970c29", + "uuid": "19234a5d-8bca-4a5e-8e28-d39b5346d3d4", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-11-21 (described on Site Profile dated 2022-11-21)", + "notes": "INSERTED FOR SITE PROFILE DATED 2017-03-14 (described on Site Profile dated 2017-03-14)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "uuid": "d43be2c3-42d3-475e-ba8a-fd2264fdfb8f", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2019-08-21 (described on Site Profile dated 2019-08-21)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], "parcelDescriptions": [ { - "uuid": "a40ac959-d169-4129-8bf8-93325b4dbac5", - "siteRegistry": true, - "dateNoted": "2017-04-20", - "parcelID": "16749", - "crownLandUsePIN": "18012", - "crownLandFileNumber": "20257", - "landDescription": "LOT 2 OF LOT 5 BLOCK 5 DISTRICT LOT 2 PLAN 9485" + "uuid": "4c54741b-8722-4a05-9f9c-62ad68c9f12b", + "siteRegistry": false, + "dateNoted": "2015-04-14", + "parcelID": "16259", + "crownLandUsePIN": "19472", + "crownLandFileNumber": "15742", + "landDescription": "LOT 1 OF LOT 2 BLOCK 1 DISTRICT LOT 4 PLAN 6864" }, { - "uuid": "f963a2ff-5fe0-471b-8d78-8b20ae93f895", - "siteRegistry": true, - "dateNoted": "2023-02-07", - "parcelID": "20964", - "crownLandUsePIN": "20656", - "crownLandFileNumber": "20949", - "landDescription": "LOT 1 OF LOT 3 BLOCK 2 DISTRICT LOT 1 PLAN 6581" + "uuid": "b4c97e25-1b7e-4c73-9849-f356423eaa7c", + "siteRegistry": false, + "dateNoted": "2014-12-07", + "parcelID": "20603", + "crownLandUsePIN": "17457", + "crownLandFileNumber": "15221", + "landDescription": "LOT 4 OF LOT 3 BLOCK 5 DISTRICT LOT 4 PLAN 8943" }, { - "uuid": "bc420401-e73f-4f4f-9ee3-e3a287e6c3d2", - "siteRegistry": true, - "dateNoted": "2021-06-12", - "parcelID": "18353", - "crownLandUsePIN": "16315", - "crownLandFileNumber": "15272", - "landDescription": "LOT 3 OF LOT 4 BLOCK 4 DISTRICT LOT 5 PLAN 8843" + "uuid": "f42a8c9d-23bb-4c00-a2de-54d909abf776", + "siteRegistry": false, + "dateNoted": "2016-03-19", + "parcelID": "16599", + "crownLandUsePIN": "20572", + "crownLandFileNumber": "17732", + "landDescription": "LOT 2 OF LOT 4 BLOCK 3 DISTRICT LOT 1 PLAN 6308" }, { - "uuid": "770a2374-e4ca-43f1-b71f-84bcdb2078bb", - "siteRegistry": true, - "dateNoted": "2019-12-20", - "parcelID": "17495", - "crownLandUsePIN": "18921", - "crownLandFileNumber": "15887", - "landDescription": "LOT 2 OF LOT 4 BLOCK 3 DISTRICT LOT 2 PLAN 9182" + "uuid": "589b76fe-c7b4-463e-89f7-37f199d7fb92", + "siteRegistry": false, + "dateNoted": "2022-05-18", + "parcelID": "18271", + "crownLandUsePIN": "15837", + "crownLandFileNumber": "20912", + "landDescription": "LOT 2 OF LOT 3 BLOCK 5 DISTRICT LOT 2 PLAN 5665" + }, + { + "uuid": "e7d439e3-c12d-43a3-904d-6c431fd7e843", + "siteRegistry": false, + "dateNoted": "2014-07-07", + "parcelID": "19854", + "crownLandUsePIN": "20340", + "crownLandFileNumber": "19560", + "landDescription": "LOT 3 OF LOT 2 BLOCK 1 DISTRICT LOT 4 PLAN 4266" } ], "siteDisclosures": [ { - "uuid": "bb1514d0-fbe5-46e3-9ee5-c39fc82c22c6", + "uuid": "f895876a-270e-46d6-be0d-f6a5dbcdf0c6", "siteRegistry": true, - "dateReceived": "2020-11-14", - "dateCompleted": "2021-01-29", - "dateEntered": "2016-05-18", - "dateRegistrar": "2021-07-15", - "dateLocalAuthorityReceived": "2020-05-15", - "summary": "Ullam aperiam itaque harum labore.\nDelectus minus fugiat explicabo illum iure dolores optio quae magni.", - "informationUsed": "Sint nostrum officiis amet deleniti perspiciatis ab hic fugit quibusdam.\nMagnam quam natus.\nNobis laudantium minima sequi facere deserunt vel veritatis ut.\nHarum minus nam laborum soluta excepturi totam facere rem dignissimos.", - "pastOrPresentOrders": "Magnam animi alias quibusdam officiis atque nihil placeat laudantium.\nEa sunt modi earum ea ad excepturi.\nNemo laboriosam fugit suscipit eum nihil.", + "dateReceived": "2023-07-12", + "dateCompleted": "2015-10-20", + "dateEntered": "2022-09-12", + "dateRegistrar": "2014-02-28", + "dateLocalAuthorityReceived": "2014-05-10", + "summary": "Soluta ipsum tempora iusto earum in.", + "informationUsed": "Quas aut nam voluptatibus quod temporibus.\nAsperiores est corrupti voluptatem ab dolor unde quod quidem nihil.\nIure hic iste nisi sunt iste alias illum sit.\nPossimus porro quos tenetur debitis exercitationem laboriosam amet.", + "pastOrPresentOrders": "Voluptatem ab inventore blanditiis sapiente nulla voluptatibus harum minus iusto.\nQuas vel dicta magni ab tempore.\nAt ipsam modi quia nisi doloribus magnam dolorem dicta quod.", "commercialAndIndustrialPurposes": [ { - "uuid": "f17736f9-b6a4-4b4a-aad6-7e2cae181e45", + "uuid": "d71527e0-4b3c-4748-8930-5bd916cfacdd", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false - }, - { - "uuid": "b3a3f79d-1ece-4d6a-a0ac-b9a7e90aa53d", - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false - }, - { - "uuid": "5d3c9388-afe2-4f49-b97d-e5961f2c889d", - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true - } - ] - }, - { - "uuid": "88b94cd8-ccf1-4315-a8ae-146afe940390", - "siteRegistry": false, - "dateReceived": "2014-12-25", - "dateCompleted": "2019-09-08", - "dateEntered": "2019-11-29", - "dateRegistrar": "2014-03-24", - "dateLocalAuthorityReceived": "2023-03-28", - "summary": "Aperiam quidem voluptate illo laudantium.", - "informationUsed": "Esse explicabo debitis.\nRerum occaecati ad.\nItaque dignissimos autem.\nDignissimos tempore maxime commodi nam sed odio.\nAutem quam dolorum quidem officia error corporis.", - "pastOrPresentOrders": "Asperiores doloribus maxime minus impedit.\nMagnam dignissimos minima modi magni.\nVoluptatem non veniam.", - "commercialAndIndustrialPurposes": [ - { - "uuid": "00e572b0-f39d-442b-bad8-d06c7284c83d", - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { - "uuid": "8b6133e5-4095-4c87-97bf-aa96748757c3", + "uuid": "17d433e8-90a3-46a1-921f-f92888a451a6", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "06edd3e5-7eec-4021-8f3a-aaf66bf0744c", + "uuid": "d1c53f8a-a19c-482c-a2ad-4aaac1692773", "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, { - "uuid": "739e47e9-f26f-4704-ad2e-2bfb2345b07d", - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false + "uuid": "d21787f8-fd84-451d-be45-83c84cdb8d4f", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true } ] } ], "activityLog": [ { - "uuid": "4e335fcf-8af1-40ca-bf5b-b577f8a84995", - "siteRegistry": true, + "uuid": "39de7cc4-174c-4a20-99db-bbe295c2434a", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "HANSEN GENESIS", - "timestamp": "2023-08-27" + "user": "SHANAHAN BRITTANY", + "timestamp": "2022-10-26" }, { - "uuid": "53fee0ae-ae97-4f64-ac47-8afed3c1d1db", + "uuid": "e3d19cc1-75ee-48bc-89ca-ddf7a6ea4d3b", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "CASSIN DORIS", - "timestamp": "2017-04-15" + "user": "KREIGER LEORA", + "timestamp": "2015-03-30" }, { - "uuid": "04aa84da-1c1e-44b5-b5be-9851187d43c9", + "uuid": "8ac44647-7d25-4a89-b6c7-ef2431cf3d5f", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "GOTTLIEB THERON", - "timestamp": "2023-01-15" + "user": "MOEN GERMAINE", + "timestamp": "2022-03-12" }, { - "uuid": "66ef71a6-8c87-44c4-a41b-c8306ea5541b", + "uuid": "d6ff695c-2747-4cfd-afdd-74dc2db84de1", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "AUFDERHAR BRENDEN", - "timestamp": "2020-08-17" + "user": "WEISSNAT REINA", + "timestamp": "2015-04-19" }, { - "uuid": "1f46fbba-6af8-4dad-81f2-3aa0acba1fad", + "uuid": "cdfa4621-c115-463d-ba61-76e169d1ab4b", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "LEMKE VLADIMIR", - "timestamp": "2017-04-09" + "user": "DAUGHERTY LILA", + "timestamp": "2018-01-07" }, { - "uuid": "694648cb-fa65-4a15-8500-87638d290abb", + "uuid": "c9b678b2-d4d0-4d5f-b266-9b3d19aae073", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "CRIST CHET", - "timestamp": "2017-09-03" - }, - { - "uuid": "1bee7f63-a3ee-4283-987f-6c1d097513c5", - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "ABERNATHY ARDELLA", - "timestamp": "2015-04-12" + "user": "NICOLAS CARMINE", + "timestamp": "2016-04-30" }, { - "uuid": "ecd6dcc4-7b03-438c-b9bc-394184ca99ef", + "uuid": "9a8d6dc6-77b7-4ba2-8799-a2b622bb435e", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "REMPEL HAILEY", - "timestamp": "2020-02-18" - }, - { - "uuid": "a71295f9-33c1-42eb-946c-f3634f7ba489", - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "LANG IGNATIUS", - "timestamp": "2021-10-19" + "user": "D'AMORE MARGIE", + "timestamp": "2013-12-25" } ], "associatedSites": [ { - "uuid": "2f72468c-b21e-4936-944e-a0c40c026776", - "dateNoted": "2014-09-10", + "uuid": "440ce459-5f52-409f-a6a2-48665d9fa039", + "dateNoted": "2019-12-01", + "notes": "", + "parcelID": "16345", + "siteID": "20237", + "siteRegistry": false + }, + { + "uuid": "2c04bfa9-f61e-4251-b3e9-664162db612f", + "dateNoted": "2020-05-17", "notes": "", - "parcelID": "19039", + "parcelID": "16530", "siteID": "20146", "siteRegistry": false + }, + { + "uuid": "fd47aabe-0ce8-43e8-b761-951c85215f5a", + "dateNoted": "2021-05-03", + "notes": "", + "parcelID": "15766", + "siteID": "15519", + "siteRegistry": false } ] }, { - "uuid": "8d540fbf-21c7-418a-8ec1-53ed56ebf1ac", - "siteID": 19137, - "address": "19112 Rau Hills", - "latitude": 55.2899, - "longitude": -118.6117, - "lastUpdated": "2023-08-17", - "city": "West Pattie", - "region": "Mainland/Southwest", - "victoriaFile": "26250-20/18479", + "uuid": "3f572d89-a047-481c-abf9-3f92f715e434", + "siteID": 15253, + "address": "372 Schroeder Parkways", + "latitude": 49.1704, + "longitude": -123.4738, + "lastUpdated": "2021-02-22", + "city": "South Jazlynshire", + "region": "Kootenay", + "victoriaFile": "26250-20/15261", "regionalFile": "N/A", "parcelIDs": [ - 5975265, - 6753182, - 5519686, - 9936873, - 9861046 + 9250168, + 5654290, + 2474901, + 6675351, + 2888775 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "9ed521d7-049d-48ab-86f5-95ea6135d062", - "createdAt": "2014-10-14", - "completed": "2019-02-23", - "initiated": "2020-06-12", - "ministryContact": "FAHEY MOLLIE", + "uuid": "16b0baf8-98e9-4229-b98d-990f89d1d8c8", + "createdAt": "2021-07-23", + "completed": "2014-11-19", + "initiated": "2017-11-06", + "ministryContact": "JACOBS REGINALD", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -85536,26 +100465,44 @@ ], "notationParticipants": [ { - "uuid": "0fed47d9-8f61-4190-8380-d845458dca0a", + "uuid": "02d8ea1b-caf0-4946-aa2b-dd7a207b403f", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true }, { - "uuid": "66d58312-7731-4701-ac9f-c54e4acf48c0", + "uuid": "28234f13-d772-40d4-8ffa-e1e4c137ba07", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "uuid": "0f252076-1a99-4300-9d4b-6a7b396e1476", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true + }, + { + "uuid": "290eb3b5-9d62-4b86-8ab2-68ae80925986", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "e3c8c84e-a295-4fbb-b3c5-c6e663165719", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "a712a867-cb04-41c9-b3bb-2139984a6ffc", - "createdAt": "2023-07-09", - "completed": "2020-06-05", - "initiated": "2017-12-04", - "ministryContact": "O'CONNER CLAUDINE", + "uuid": "ffdaa011-0d1f-49f6-8c9a-e6e05ec6f236", + "createdAt": "2015-09-20", + "completed": "2013-11-24", + "initiated": "2019-01-14", + "ministryContact": "MAYERT ARELY", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -85564,34 +100511,126 @@ ], "notationParticipants": [ { - "uuid": "e2f160af-cd3f-457b-941e-adff07c6108e", + "uuid": "a115ad0a-2eea-4946-b390-a119d441aa52", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "deccaa50-3eb9-4328-8402-d84c6feff60a", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "1da16280-c456-4230-a495-77086c1b336d", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "8c0afcf4-3dc5-4e75-a47f-e6bec782e0af", + "uuid": "02fb3d02-a40d-45ba-bd5b-0c9d203bf2ce", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "f90644c2-39eb-4c01-b97e-1ab242afad3d", + "uuid": "af470c1a-8a33-4b12-9cde-79ce099c2503", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "uuid": "6727b7c9-61f4-443e-82b7-5440396be844", + "createdAt": "2021-08-14", + "completed": "2020-09-08", + "initiated": "2020-11-19", + "ministryContact": "RUNOLFSDOTTIR ANIKA", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "uuid": "2caf8d0f-be1c-46e2-b4f5-689602458f72", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "e4dff49c-c222-4e5a-be4f-e34f19e9a383", + "uuid": "ff79e698-d066-4ae2-beda-127e1a348381", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "uuid": "da3f73cd-afd2-4869-9ca2-b025deb9f6e2", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "uuid": "332a3b2c-5bc4-4796-b535-b06e2031587b", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "uuid": "48f20435-3229-4aaf-b802-49f678bdb00c", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "uuid": "81d37cb4-2b1a-495e-8035-b3b80ee1eef0", + "createdAt": "2018-12-26", + "completed": "2014-10-01", + "initiated": "2017-03-04", + "ministryContact": "SANFORD JOSIANE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "uuid": "f934f5da-64cb-4cfa-b67d-a9b470e89aca", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": true }, { - "uuid": "c1c46637-33f2-462d-a10d-d82ca4e4b793", + "uuid": "72a6f960-6c7b-48d6-9677-28a98ea894dd", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false + }, + { + "uuid": "35453546-052f-4906-b4bf-a3fc23dca3d0", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "f7dc122d-374a-4125-9a1c-05a379056b7a", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "uuid": "df7f8419-fc78-4e79-813a-174bae4abeec", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false } ], "siteRegistry": false @@ -85599,10 +100638,10 @@ ], "participants": [ { - "uuid": "d6851e77-fc70-4593-8980-c09da296cd9b", - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2018-04-02", - "startDate": "2022-06-09", + "uuid": "c71aab92-932e-422e-a485-b0c94f913e13", + "name": "AMET, DOLOR SIT", + "endDate": "2017-07-04", + "startDate": "2022-06-24", "notes": "", "roles": [ "ORGANIZATION" @@ -85610,9 +100649,9 @@ "siteRegistry": false }, { - "uuid": "c30ddd5a-9ae6-4d71-96e6-9297cac4a27b", - "name": "SHELL CANADA PRODUCTS", - "endDate": "2018-01-13", + "uuid": "e89895c7-0f22-4922-8f5d-778fb3f9dfcb", + "name": "IPSUM", + "endDate": "2022-11-17", "startDate": "2017-09-17", "notes": "", "roles": [ @@ -85621,10 +100660,21 @@ "siteRegistry": false }, { - "uuid": "4c167d7c-8550-4ecf-b15f-f1a6448b106c", + "uuid": "addfcfa4-fe7e-43ee-9596-5a35d24ff0f3", "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2014-05-02", - "startDate": "2016-07-27", + "endDate": "2016-08-06", + "startDate": "2018-01-21", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "uuid": "66297fdb-3516-49ea-95a8-cdc8901e25db", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2020-01-31", + "startDate": "2020-03-13", "notes": "", "roles": [ "ORGANIZATION" @@ -85632,98 +100682,150 @@ "siteRegistry": true } ], + "documents": [ + { + "uuid": "9297bc02-31a6-4a6d-8308-81260c1e156a", + "siteRegistry": false, + "documentDate": "2023-05-15", + "receivedDate": "2015-11-05", + "uploadedDate": "2022-05-15", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "2e8936e8-88b1-4b14-bcc6-c2774ca97125", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "43deee1b-6b54-4578-85d4-18f567c8455b", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "0d4e1c51-443b-4433-a477-54ac577d836a", + "name": "AMET, DOLOR SIT", + "siteRegistry": true, + "role": "AUTHOR" + } + ] + }, + { + "uuid": "343a0c92-7332-430e-bb93-cc232e1e5045", + "siteRegistry": false, + "documentDate": "2015-05-07", + "receivedDate": "2017-06-29", + "uploadedDate": "2019-06-13", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "1acb4f3a-7d8b-4ab6-8963-859090ec97f8", + "name": "IPSUM", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "3f70c200-64e3-41fe-9bba-24ab2dd7fe2a", + "name": "AMET, DOLOR SIT", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "ff680ebb-90d8-4713-93d9-53c736acadf8", + "name": "AMET, DOLOR SIT", + "siteRegistry": false, + "role": "AUTHOR" + } + ] + } + ], "suspectLandUses": [ { - "uuid": "bc2decb7-cdb8-4a9c-87d6-137dd7334890", + "uuid": "171877fd-3b55-4ebf-a774-b8ef6bdab8f8", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-12-07 (described on Site Profile dated 2022-12-07)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "notes": "INSERTED FOR SITE PROFILE DATED 2020-10-20 (described on Site Profile dated 2020-10-20)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "uuid": "48126f11-6546-43d2-9099-bf20986a5e1d", + "uuid": "6ae3874f-ff8e-4c5b-bd56-38fd92da7712", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2013-12-18 (described on Site Profile dated 2013-12-18)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "notes": "INSERTED FOR SITE PROFILE DATED 2018-08-09 (described on Site Profile dated 2018-08-09)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "uuid": "1ebb5202-5746-4532-9354-0746d3ca7f11", + "uuid": "af31dfd1-8713-4958-8ce2-2f23f086b158", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-06-14 (described on Site Profile dated 2018-06-14)", + "notes": "INSERTED FOR SITE PROFILE DATED 2018-08-08 (described on Site Profile dated 2018-08-08)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "uuid": "d3918c5a-3f0c-48d6-98af-553424973ecb", + "uuid": "27135d65-5c1f-472b-a937-aff0164bff76", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-01-03 (described on Site Profile dated 2017-01-03)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "notes": "INSERTED FOR SITE PROFILE DATED 2018-08-03 (described on Site Profile dated 2018-08-03)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], "parcelDescriptions": [ { - "uuid": "4fd195e6-1d8b-47ad-a9ee-28d6bfa9e69a", + "uuid": "e381f378-8351-464f-a6b3-dcde1f1c1cec", "siteRegistry": true, - "dateNoted": "2021-09-23", - "parcelID": "17495", - "crownLandUsePIN": "17124", - "crownLandFileNumber": "19328", - "landDescription": "LOT 5 OF LOT 4 BLOCK 4 DISTRICT LOT 2 PLAN 5546" + "dateNoted": "2014-06-11", + "parcelID": "15923", + "crownLandUsePIN": "15877", + "crownLandFileNumber": "16833", + "landDescription": "LOT 2 OF LOT 1 BLOCK 5 DISTRICT LOT 4 PLAN 4630" }, { - "uuid": "bc9f1b5d-5cbf-4aeb-8ef4-d66fe2b7da59", + "uuid": "7b5646c0-5f33-4216-84ba-a8160ec11e55", "siteRegistry": true, - "dateNoted": "2022-11-27", - "parcelID": "16691", - "crownLandUsePIN": "19115", - "crownLandFileNumber": "16965", - "landDescription": "LOT 2 OF LOT 2 BLOCK 5 DISTRICT LOT 5 PLAN 9212" + "dateNoted": "2019-05-15", + "parcelID": "15304", + "crownLandUsePIN": "20677", + "crownLandFileNumber": "16615", + "landDescription": "LOT 2 OF LOT 4 BLOCK 2 DISTRICT LOT 3 PLAN 4974" }, { - "uuid": "d3808ae9-1e9b-4401-8a5b-cae9d0f28ce3", - "siteRegistry": false, - "dateNoted": "2022-03-12", - "parcelID": "16196", - "crownLandUsePIN": "18348", - "crownLandFileNumber": "15852", - "landDescription": "LOT 3 OF LOT 1 BLOCK 4 DISTRICT LOT 1 PLAN 6230" + "uuid": "3e6afc09-d73f-4fa7-8de8-53abc8bdd021", + "siteRegistry": true, + "dateNoted": "2017-10-01", + "parcelID": "17811", + "crownLandUsePIN": "15955", + "crownLandFileNumber": "18872", + "landDescription": "LOT 4 OF LOT 3 BLOCK 1 DISTRICT LOT 2 PLAN 3239" }, { - "uuid": "c37b0786-2c45-46e7-ab18-15b8c9a851f3", + "uuid": "1a7b2054-5516-42ca-83d2-e62eafab881f", "siteRegistry": false, - "dateNoted": "2018-05-29", - "parcelID": "15905", - "crownLandUsePIN": "15523", - "crownLandFileNumber": "15747", - "landDescription": "LOT 4 OF LOT 5 BLOCK 4 DISTRICT LOT 4 PLAN 5954" + "dateNoted": "2019-09-09", + "parcelID": "19275", + "crownLandUsePIN": "19638", + "crownLandFileNumber": "15926", + "landDescription": "LOT 5 OF LOT 2 BLOCK 5 DISTRICT LOT 3 PLAN 7196" } ], "siteDisclosures": [ { - "uuid": "32da7109-a9d0-4172-8671-d1f8d3e66fce", + "uuid": "161512d1-8950-4159-810e-3656a4f80a6f", "siteRegistry": false, - "dateReceived": "2016-07-01", - "dateCompleted": "2014-05-11", - "dateEntered": "2017-06-09", - "dateRegistrar": "2019-05-23", - "dateLocalAuthorityReceived": "2014-07-08", - "summary": "Nam omnis sapiente repellat explicabo delectus.", - "informationUsed": "Modi fugit unde labore dolorum natus at natus.\nLaborum velit quasi sequi voluptatum quasi recusandae nesciunt.\nNam enim doloribus aliquam commodi.\nAlias laborum illum mollitia.\nIpsum quidem quia unde deleniti veniam atque.", - "pastOrPresentOrders": "Earum dignissimos laudantium ab impedit facilis temporibus optio cum.", + "dateReceived": "2021-07-03", + "dateCompleted": "2015-09-03", + "dateEntered": "2015-03-27", + "dateRegistrar": "2017-06-22", + "dateLocalAuthorityReceived": "2023-04-17", + "summary": "Nostrum neque nulla facere minima minima nostrum dolorum.", + "informationUsed": "Quam molestiae commodi inventore.\nQuo eligendi unde neque excepturi sunt cupiditate laboriosam ad.\nRepellendus deserunt ab est necessitatibus voluptates possimus sapiente.\nDucimus excepturi eligendi.\nEnim dignissimos repellat veritatis perspiciatis quis quas nobis assumenda.", + "pastOrPresentOrders": "Blanditiis quibusdam nesciunt temporibus.", "commercialAndIndustrialPurposes": [ { - "uuid": "74a430d1-bd89-4d58-a02d-9c0a8216f920", - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true - }, - { - "uuid": "e0caeb01-c2fe-473a-8617-2352d8603873", + "uuid": "0046b4d5-0eaf-4641-a63e-3db9bf9757ab", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false }, { - "uuid": "4d372a99-d9f0-4e66-a023-cdc2d4d6a092", - "scheduleReference": "F2*", + "uuid": "c899bc35-d4fa-491d-a855-15f859a90e42", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false } @@ -85732,122 +100834,121 @@ ], "activityLog": [ { - "uuid": "923d330b-648f-4226-80e0-2ddb0448d801", + "uuid": "c4c66c28-f45b-4c21-9b13-a7d9692413d8", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "GISLASON ADELLE", + "timestamp": "2018-03-09" + }, + { + "uuid": "49713036-d085-4dd4-8d95-93cc781e671d", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "LUETTGEN GIOVANNA", - "timestamp": "2015-10-22" + "user": "WALTER-QUITZON LEW", + "timestamp": "2021-12-20" }, { - "uuid": "162806f4-f63b-4d7c-b6eb-4fb732a055fc", - "siteRegistry": true, + "uuid": "07165e16-46a9-48e2-bdcc-a57a5cd4d624", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "ROBERTS EMELIA", - "timestamp": "2018-09-24" + "user": "BARROWS ALTHEA", + "timestamp": "2017-12-29" }, { - "uuid": "aa01f97e-fba1-46c7-8d66-7d1c59f43960", + "uuid": "5c3113ae-3fc9-44f3-b9d2-44646078ed6c", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "KIHN BUCK", - "timestamp": "2015-09-09" + "user": "LEBSACK GARLAND", + "timestamp": "2023-08-17" }, { - "uuid": "dc11f155-98a1-4ebd-96c7-af0c4ee55f75", + "uuid": "19018f44-5d3f-4972-8ab9-97e827985813", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "RYAN MELANY", - "timestamp": "2015-05-27" + "user": "HAHN LAUREL", + "timestamp": "2016-09-26" }, { - "uuid": "711fa1d2-2432-44c6-ac12-834745b293f8", - "siteRegistry": false, + "uuid": "044ee089-5c5d-4b01-9be3-de6b617f9181", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "WAELCHI CADEN", - "timestamp": "2020-10-09" + "user": "WAELCHI EARLINE", + "timestamp": "2019-09-01" }, { - "uuid": "2223e987-ffee-4731-b6d5-4e9868ea3952", + "uuid": "a333c733-f88f-42db-a8d8-04a398e0c0ae", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "HOWELL GEOFFREY", - "timestamp": "2019-04-15" + "user": "RUSSEL BELL", + "timestamp": "2017-05-23" }, { - "uuid": "0fb62909-1543-4d82-bce5-184502849060", + "uuid": "2397ae0e-5dc2-4404-a303-debb31dc8d9c", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "EMARD PAULINE", - "timestamp": "2023-03-18" + "user": "CRONIN JOSIANE", + "timestamp": "2019-01-16" }, { - "uuid": "39a1e5e8-dc1e-4a3f-8c5f-2eeb148eeaeb", - "siteRegistry": true, + "uuid": "c88d3118-a699-4a1c-987b-d730029069fb", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "SCHINNER JUDGE", - "timestamp": "2015-11-16" + "user": "HUELS AUSTEN", + "timestamp": "2017-12-21" }, { - "uuid": "fa58216a-f6cf-4269-81fa-0b9ba4f95029", + "uuid": "d71646f1-16c8-4dcb-817a-da8486c0befc", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "SPENCER-HEANEY ELIANE", - "timestamp": "2023-07-22" + "user": "KAUTZER ALFREDA", + "timestamp": "2020-04-09" } ], "associatedSites": [ { - "uuid": "548a9e14-f78f-40c7-90c4-8e680f3d9c76", - "dateNoted": "2016-12-08", + "uuid": "3eb2ad28-2dd4-491b-8468-481037540ed3", + "dateNoted": "2021-03-17", "notes": "", - "parcelID": "17976", - "siteID": "15261", + "parcelID": "15670", + "siteID": "16733", "siteRegistry": false }, { - "uuid": "02f4329a-e048-43db-b59f-7ddf7fa10fa2", - "dateNoted": "2018-02-14", + "uuid": "5d7fec84-5819-4fe9-8e16-c2841c54b0ec", + "dateNoted": "2020-05-13", "notes": "", - "parcelID": "16923", - "siteID": "17933", + "parcelID": "19937", + "siteID": "19175", "siteRegistry": true - }, - { - "uuid": "32352504-ad82-456b-8674-757912128433", - "dateNoted": "2021-04-02", - "notes": "", - "parcelID": "17556", - "siteID": "20154", - "siteRegistry": false } ] }, { - "uuid": "56fc74ac-b067-451e-89c2-c4e8c0fe4de8", - "siteID": 19230, - "address": "642 Zack Route", - "latitude": 49.0956, - "longitude": -126.6438, - "lastUpdated": "2019-09-08", - "city": "Midland", - "region": "Thompson-Okanagan", - "victoriaFile": "26250-20/6555", + "uuid": "30a9f948-e9cd-4751-82a4-cb77534f324e", + "siteID": 19986, + "address": "672 Ross Via", + "latitude": 58.0698, + "longitude": -133.4907, + "lastUpdated": "2015-08-21", + "city": "South Lianamouth", + "region": "Kootenay", + "victoriaFile": "26250-20/10165", "regionalFile": "N/A", "parcelIDs": [ - 8464132, - 823928, - 1943711, - 9386189, - 7548622 + 5278606, + 580242, + 5799287, + 3852355, + 1222703 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "9c085213-29d8-435b-800c-77518fe21358", - "createdAt": "2014-11-05", - "completed": "2022-02-16", - "initiated": "2021-10-03", - "ministryContact": "GREENHOLT KARINA", + "uuid": "b6772509-9a12-4700-82d8-86bd4a09f2c9", + "createdAt": "2018-06-13", + "completed": "2020-11-13", + "initiated": "2020-11-25", + "ministryContact": "KERTZMANN SKYE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -85856,32 +100957,78 @@ ], "notationParticipants": [ { - "uuid": "2222f95a-9179-4e5c-878f-eecd38d2fb06", + "uuid": "e8ef2381-3c65-43bc-bd47-81f93893d9d6", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "95f17f83-cf33-444c-b0e9-a3d40aa87835", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "72cd92b2-7a09-4275-999a-fd68cde5e108", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "uuid": "29d6fbfc-880a-4f78-8c5d-efadcca84187", + "createdAt": "2020-11-25", + "completed": "2020-05-09", + "initiated": "2022-01-24", + "ministryContact": "JOHNSON REYNOLD", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "uuid": "af3151df-0b03-4c79-9b4a-9350960e7b2d", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "f040d859-0df9-4838-a7ad-762f30315c49", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false }, { - "uuid": "03827e13-52f4-424e-b436-7ed69bfc9149", + "uuid": "fc2b9e4d-d0fc-4afd-a74f-b950e6d7509a", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "1690ec9c-c981-48e4-8bed-7b99127295f2", + "uuid": "1c8d0d02-b996-4d04-bf39-cae645abb2ea", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "559b33f2-5bc9-4df6-ad7a-c408edb43cd4", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "6fe56ce5-a75f-457f-9c6f-25ef3e2aa42e", - "createdAt": "2015-02-19", - "completed": "2014-02-15", - "initiated": "2022-09-25", - "ministryContact": "BERGSTROM MONICA", + "uuid": "a1a17708-2cab-4a4d-a2ed-d18a77b50007", + "createdAt": "2021-11-23", + "completed": "2023-07-03", + "initiated": "2023-01-03", + "ministryContact": "OLSON TESS", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -85890,249 +101037,295 @@ ], "notationParticipants": [ { - "uuid": "cc040cda-0703-4576-83f0-94ba43681817", + "uuid": "8521badd-2c8a-4870-9528-72f8d4de8426", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "uuid": "2da1e43d-b436-4c1a-b09d-d997a9405a8e", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true }, { - "uuid": "e61e0097-82d2-48b6-bbdd-741923546c68", - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "93c6fd4d-9619-45c1-9ae7-b6a131cce7d4", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "a6f31da4-27f0-447d-95c5-1aca93484417", - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "7b9c621f-a7e8-4200-8975-5de9fba3bca6", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false }, { - "uuid": "a18189ab-2790-47b2-8acf-51c97edf6b48", - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "377b119c-78d6-405f-83cd-d2d8cc62e5d1", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true } ], "participants": [ { - "uuid": "e593f454-3fc4-4159-93fb-2dc2797f2039", - "name": "AMET, DOLOR SIT", - "endDate": "2021-09-24", - "startDate": "2019-02-25", + "uuid": "5594e26b-b91b-41fc-a4cf-f8bc32515664", + "name": "IPSUM", + "endDate": "2022-03-26", + "startDate": "2019-07-29", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "8d3d8b70-b317-4c0a-8603-c5b7bae3f2f7", + "uuid": "6cf8c177-54cf-497f-a932-2ea2479d1ddd", "name": "IPSUM", - "endDate": "2016-12-29", - "startDate": "2015-10-01", + "endDate": "2016-03-12", + "startDate": "2014-08-02", "notes": "", "roles": [ "EMPLOYEE" ], "siteRegistry": true - }, + } + ], + "documents": [ { - "uuid": "7d6da180-d2ba-4091-bc82-2170d4cbe479", - "name": "AMET, DOLOR SIT", - "endDate": "2014-01-22", - "startDate": "2018-02-19", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": false + "uuid": "8e16dc87-f3e3-4274-a201-edf90c3551bc", + "siteRegistry": false, + "documentDate": "2016-05-13", + "receivedDate": "2017-10-03", + "uploadedDate": "2018-07-17", + "title": "Preliminary Site Investigation, Detailed Site Investigation and Remedial Plan for the Management Area adjacent to the Shell Site at 1503 West 41st Ave", + "participants": [ + { + "uuid": "4aa32f56-e1e9-403e-b55e-9de8dd0c35ba", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "d5908446-065b-43c2-bf25-7b121849d9f4", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": true, + "role": "AUTHOR" + } + ] } ], "suspectLandUses": [ { - "uuid": "28f047bb-9a0a-424e-8bcf-d51669e4f988", - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-12-15 (described on Site Profile dated 2019-12-15)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "uuid": "aee0a9c9-f13b-41fd-ac47-12d1dc07fa2c", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2016-12-26 (described on Site Profile dated 2016-12-26)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "uuid": "7e10a989-9389-4f2a-9e12-52e241d198ca", - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-07-29 (described on Site Profile dated 2015-07-29)", + "uuid": "21cd4ff7-fb63-4eb1-b29e-c3b3e1b4f88f", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2018-01-12 (described on Site Profile dated 2018-01-12)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "uuid": "9e4f1a61-87ea-438a-9c08-0ffe7c1e002f", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2016-06-19 (described on Site Profile dated 2016-06-19)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "uuid": "fde04345-1c9d-4f1a-b42b-b5795d115979", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2016-08-01 (described on Site Profile dated 2016-08-01)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], "parcelDescriptions": [ { - "uuid": "f1153fc6-d50c-42f6-b22d-2ba8b53be079", + "uuid": "1a3adb28-3371-44f7-8679-667ac5321c3d", "siteRegistry": false, - "dateNoted": "2023-09-15", - "parcelID": "18681", - "crownLandUsePIN": "19978", - "crownLandFileNumber": "15387", - "landDescription": "LOT 3 OF LOT 5 BLOCK 3 DISTRICT LOT 1 PLAN 6318" + "dateNoted": "2022-03-19", + "parcelID": "18223", + "crownLandUsePIN": "16006", + "crownLandFileNumber": "16601", + "landDescription": "LOT 4 OF LOT 4 BLOCK 5 DISTRICT LOT 5 PLAN 6927" }, { - "uuid": "5e17f079-ba98-4fe8-b147-997706e6c603", + "uuid": "7804b97c-87e2-4c41-8b25-aa946637183b", "siteRegistry": false, - "dateNoted": "2017-05-30", - "parcelID": "17401", - "crownLandUsePIN": "18535", - "crownLandFileNumber": "20144", - "landDescription": "LOT 3 OF LOT 2 BLOCK 2 DISTRICT LOT 4 PLAN 7426" - }, - { - "uuid": "f46b2d3d-5831-4372-aadd-7c569337930e", - "siteRegistry": true, - "dateNoted": "2016-10-01", - "parcelID": "16551", - "crownLandUsePIN": "15766", - "crownLandFileNumber": "20540", - "landDescription": "LOT 2 OF LOT 4 BLOCK 4 DISTRICT LOT 2 PLAN 4428" + "dateNoted": "2016-05-23", + "parcelID": "20502", + "crownLandUsePIN": "19844", + "crownLandFileNumber": "18355", + "landDescription": "LOT 1 OF LOT 5 BLOCK 1 DISTRICT LOT 3 PLAN 8833" } ], "siteDisclosures": [ { - "uuid": "57599125-ccf0-4f2a-ab12-7ae03d4b6e09", - "siteRegistry": false, - "dateReceived": "2023-06-30", - "dateCompleted": "2020-08-01", - "dateEntered": "2017-06-27", - "dateRegistrar": "2022-07-02", - "dateLocalAuthorityReceived": "2019-04-18", - "summary": "Nam ullam cum exercitationem optio.", - "informationUsed": "Iste quibusdam perferendis itaque perferendis.\nNulla alias quae ut iusto facere atque.\nSit at vel magni consequatur id debitis iusto ducimus.\nIste esse beatae a maxime exercitationem.\nLaborum temporibus omnis laboriosam quo necessitatibus.", - "pastOrPresentOrders": "Nam vitae culpa.", + "uuid": "c1caa19f-044c-4ec4-8054-3fdb62912727", + "siteRegistry": true, + "dateReceived": "2014-12-06", + "dateCompleted": "2019-06-03", + "dateEntered": "2022-09-06", + "dateRegistrar": "2023-02-26", + "dateLocalAuthorityReceived": "2014-06-07", + "summary": "Alias eveniet ut harum numquam praesentium inventore.\nPerferendis quisquam maxime.", + "informationUsed": "Veniam dolorem adipisci nulla blanditiis commodi quidem dolores officiis.\nDolorem error cumque occaecati repudiandae.\nHic accusantium excepturi deserunt dolorum architecto similique repudiandae expedita repellat.\nHarum veritatis necessitatibus explicabo.", + "pastOrPresentOrders": "Sit consequatur aliquam pariatur nulla ducimus.", "commercialAndIndustrialPurposes": [ { - "uuid": "03544241-4fe2-4996-963d-057234a1b505", - "scheduleReference": "F2*", + "uuid": "d27b0263-86eb-40c2-9e40-7ffcf308114d", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, { - "uuid": "7fe126e9-127e-4fc5-ad9e-536a75c8590f", - "scheduleReference": "F2*", + "uuid": "a520cd94-5d61-4a25-8734-798393066481", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "uuid": "08b1b30f-3279-45dc-8b5f-69f2926405d6", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "uuid": "294f4dca-9a0f-43ad-b444-9cbcdc577dfd", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + } + ] + }, + { + "uuid": "0bb94821-f0db-4abd-afe4-3e94eafc9ea3", + "siteRegistry": false, + "dateReceived": "2019-03-01", + "dateCompleted": "2022-06-29", + "dateEntered": "2020-02-14", + "dateRegistrar": "2014-10-18", + "dateLocalAuthorityReceived": "2017-02-22", + "summary": "Tempore architecto inventore animi reprehenderit corporis eveniet ex.\nPariatur odio laudantium harum reprehenderit hic sit odit ratione veniam.\nCum aperiam porro harum.", + "informationUsed": "Consequuntur pariatur dolores quam itaque quaerat tempora tenetur possimus.\nEveniet quisquam ut officia.\nEarum amet assumenda eaque.\nCorrupti veniam rem perspiciatis debitis commodi ratione ullam minus mollitia.\nEligendi sit repellendus dolor eius illum perferendis.", + "pastOrPresentOrders": "Placeat totam libero laboriosam.\nDoloremque ipsam magnam esse eveniet soluta.\nVoluptate dolorem perspiciatis corporis culpa vero sint architecto numquam.", + "commercialAndIndustrialPurposes": [ + { + "uuid": "3470fdfc-7482-4f6c-b75e-250b06acbcb2", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, { - "uuid": "0a84604b-d74b-4cf5-9cb3-0dbbe790d61c", + "uuid": "231dbe7f-323d-454f-ace4-36dff1aef9c0", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "uuid": "50084972-02bd-4089-a44d-e6b0ec0607f0", "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true } ] } ], "activityLog": [ { - "uuid": "1294db0e-0daa-4352-bce3-6bb2fdca0523", - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "GISLASON EVA", - "timestamp": "2020-07-09" - }, - { - "uuid": "9e4dda63-1639-4715-b582-2d8d377f3c41", - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "WILLIAMSON LUCIANO", - "timestamp": "2016-11-24" - }, - { - "uuid": "2d19e46a-6272-400e-a92e-efaf5a06fde0", + "uuid": "0690834b-e294-499d-b14f-5f9b187bfdc0", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "CASPER BEN", - "timestamp": "2017-05-10" + "user": "HAMMES NATALIA", + "timestamp": "2014-06-12" }, { - "uuid": "5706e16b-0cee-4c1b-b01d-074c32778c82", + "uuid": "1cba38cf-ee3d-482a-b618-589e96f595ff", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "STAMM LERA", - "timestamp": "2021-05-26" + "user": "GOLDNER AXEL", + "timestamp": "2013-12-11" }, { - "uuid": "307ee0e0-9104-4c32-a287-15c0e9be7c5c", + "uuid": "3dc40080-886c-4502-8bf7-4e222f731b87", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "CUMMINGS MABELLE", - "timestamp": "2023-02-25" + "user": "KILBACK GIA", + "timestamp": "2020-03-14" }, { - "uuid": "809ffe53-a145-49e8-8253-7b8464d6d222", + "uuid": "2e3fbbd8-74a2-4468-9e20-f34500076885", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "DUBUQUE JARRETT", - "timestamp": "2019-08-17" + "user": "KUNDE SHANIA", + "timestamp": "2014-09-30" }, { - "uuid": "e5c5f4c4-858b-4163-811f-e94835add1b1", - "siteRegistry": true, + "uuid": "dc4de5c5-d5f2-4275-a880-5169ff2e9fc6", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "KRIS BENTON", - "timestamp": "2020-06-28" + "user": "MURRAY URIEL", + "timestamp": "2017-10-20" } ], "associatedSites": [ { - "uuid": "35f5937a-4426-4aa7-a297-bcb0e70ccfe8", - "dateNoted": "2015-07-22", + "uuid": "b569d44e-556c-4235-ab9e-a8f328fba8e8", + "dateNoted": "2023-04-26", "notes": "", - "parcelID": "16880", - "siteID": "17727", - "siteRegistry": true + "parcelID": "16109", + "siteID": "15579", + "siteRegistry": false }, { - "uuid": "fc720656-4d9d-47f7-84e4-444cc32883be", - "dateNoted": "2021-03-12", + "uuid": "8d659693-0707-489a-8924-4dce69a2c09c", + "dateNoted": "2023-04-28", "notes": "", - "parcelID": "19007", - "siteID": "18583", + "parcelID": "15867", + "siteID": "15499", "siteRegistry": true }, { - "uuid": "b157271d-052b-4293-b6bd-0d0ae931ae87", - "dateNoted": "2021-11-08", + "uuid": "bfd2741a-b6b1-4774-a785-d988e3477ad1", + "dateNoted": "2022-05-08", "notes": "", - "parcelID": "17426", - "siteID": "17483", - "siteRegistry": false + "parcelID": "17063", + "siteID": "16874", + "siteRegistry": true } ] }, { - "uuid": "799deffe-7bdc-4131-8939-c4cc0fec3899", - "siteID": 18794, - "address": "7499 Barton Extension", - "latitude": 50.6234, - "longitude": -118.7952, - "lastUpdated": "2018-09-23", - "city": "Gilbertofurt", - "region": "Cariboo", - "victoriaFile": "26250-20/14868", + "uuid": "4dd73f68-5a64-4df5-93f5-856a8eebf46b", + "siteID": 19228, + "address": "559 Schuster Village", + "latitude": 50.714, + "longitude": -137.7258, + "lastUpdated": "2021-08-16", + "city": "Lake Letahaven", + "region": " North Coast", + "victoriaFile": "26250-20/11945", "regionalFile": "N/A", "parcelIDs": [ - 6645559, - 1672485, - 3180471, - 6228292, - 2283946 + 4412548, + 213651, + 7521767, + 5436159, + 6243088 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "64358954-d927-40a1-8464-d0332b396b25", - "createdAt": "2022-10-28", - "completed": "2020-10-27", - "initiated": "2017-12-27", - "ministryContact": "BOEHM MAUREEN", + "uuid": "b696fea9-adc3-40db-8da3-fab16d13840e", + "createdAt": "2020-01-17", + "completed": "2023-02-27", + "initiated": "2022-09-10", + "ministryContact": "TORPHY RONNY", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -86141,66 +101334,38 @@ ], "notationParticipants": [ { - "uuid": "9ab740bf-5daa-44e3-8c7a-5c451c3b4ef1", + "uuid": "2c6c3bb4-c8bd-4312-bb64-36f7a14c3021", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "8e6c2941-e7b6-413c-995f-b74218ff319e", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - } - ], - "siteRegistry": false - }, - { - "uuid": "1abd53ff-82f8-4e19-b455-847a213ad233", - "createdAt": "2014-12-30", - "completed": "2014-12-29", - "initiated": "2016-11-07", - "ministryContact": "BOGAN LAWRENCE", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "uuid": "849f94b9-0ad9-4641-84a8-9080e4b7303f", + "uuid": "be93086a-3dae-4747-aceb-1ce9c2914dd4", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false }, { - "uuid": "8eb55fdd-f51f-4453-8220-97178da18493", - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "b37782f2-8602-4101-8249-b05bb5ad5a6d", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false }, { - "uuid": "0f86b02b-fc2f-435c-a3d1-2fee142a7783", - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "uuid": "c95a0d2e-dc55-449d-b295-b27591170939", - "name": "SHELL CANADA PRODUCTS", + "uuid": "3842789f-12fa-43b2-b65e-29b309b33e64", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "a653cf67-4326-404f-9aee-7d1c2699719d", - "createdAt": "2019-05-26", - "completed": "2020-07-03", - "initiated": "2016-10-17", - "ministryContact": "SWANIAWSKI QUINTON", + "uuid": "75ab514b-ce22-4927-b502-246883a1da2e", + "createdAt": "2023-08-04", + "completed": "2022-10-03", + "initiated": "2020-01-11", + "ministryContact": "SMITHAM JESSICA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -86209,33 +101374,33 @@ ], "notationParticipants": [ { - "uuid": "7596c0c6-f3bd-4328-9013-d75d396f428e", - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "f379a503-560d-46e5-9f4f-263f4e0e92b9", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "b31fa4d8-8595-468f-baf3-4a57f38891df", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "uuid": "22a7b558-4127-46bd-8c41-dbda335bb3e2", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": false }, { - "uuid": "3a58b8bd-52ef-4305-a950-acdcf8c28729", + "uuid": "f07efa9e-83c8-433a-9c77-b217b8dfc7dc", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true + "role": "REQUESTED BY", + "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false } ], "participants": [ { - "uuid": "8836e5d3-64df-4987-bf0f-906f848d7ed0", - "name": "IPSUM", - "endDate": "2014-01-19", - "startDate": "2014-03-31", + "uuid": "1208d1e8-b9a7-4225-97b4-20bdde5c5988", + "name": "AMET, DOLOR SIT", + "endDate": "2017-04-19", + "startDate": "2019-11-06", "notes": "", "roles": [ "ORGANIZATION" @@ -86243,213 +101408,304 @@ "siteRegistry": false }, { - "uuid": "3cfcbc1d-0865-4bd6-ab9f-d2f28d8ccc0c", - "name": "AMET, DOLOR SIT", - "endDate": "2022-01-16", - "startDate": "2017-03-08", + "uuid": "874392cb-bbfe-4a93-aa4a-7e8d7b206ae8", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2016-05-26", + "startDate": "2014-12-19", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false + } + ], + "documents": [ + { + "uuid": "2eb270a7-399a-4f06-b727-ff23e7779098", + "siteRegistry": true, + "documentDate": "2015-09-18", + "receivedDate": "2018-03-15", + "uploadedDate": "2023-09-29", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "40d13373-32b0-4856-9240-073ccd4aa2a4", + "name": "IPSUM", + "siteRegistry": true, + "role": "AUTHOR" + } + ] }, { - "uuid": "cdb2d6fd-ad92-478d-b029-4f8552fc2b66", - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2019-12-11", - "startDate": "2019-10-23", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": true + "uuid": "7c0e9d4a-43db-402c-950c-4713b866d641", + "siteRegistry": false, + "documentDate": "2023-03-12", + "receivedDate": "2021-05-31", + "uploadedDate": "2016-02-27", + "title": "Summary of Site Conditions, 1537 W 41st Avenue, Vancouver", + "participants": [ + { + "uuid": "cf395054-e5fa-4710-9eae-3a8284a61740", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "ddb08d8e-bec9-4fe2-9d93-057cdf075c6a", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "b90a14e7-099f-4162-95c4-b8015a84f28a", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": true, + "role": "AUTHOR" + } + ] + }, + { + "uuid": "bcf9dcc6-025c-4501-b173-645dcb32fa06", + "siteRegistry": true, + "documentDate": "2019-05-27", + "receivedDate": "2019-01-11", + "uploadedDate": "2020-03-10", + "title": "Preliminary Site Investigation, Detailed Site Investigation and Remedial Plan for the Management Area adjacent to the Shell Site at 1503 West 41st Ave", + "participants": [ + { + "uuid": "1a9c5da6-dbd6-431e-a937-cf56676f8d3d", + "name": "AMET, DOLOR SIT", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "cc0a770b-29fa-4df3-9b20-bb3bb576b6f9", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "1cb60ecb-13ce-47d3-a81a-46400dfb2a83", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": false, + "role": "AUTHOR" + } + ] } ], "suspectLandUses": [ { - "uuid": "d2896841-4995-47ac-9215-7463fb23b309", + "uuid": "dff32049-b9ad-48d9-81c2-13957b4aac0f", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-10-08 (described on Site Profile dated 2018-10-08)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "notes": "INSERTED FOR SITE PROFILE DATED 2020-03-23 (described on Site Profile dated 2020-03-23)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "uuid": "b874a2cf-295a-414d-a415-f64c81b6878f", + "uuid": "8ec3251a-5837-41d1-b226-c0e22b6ca953", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-12-14 (described on Site Profile dated 2019-12-14)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "notes": "INSERTED FOR SITE PROFILE DATED 2022-06-20 (described on Site Profile dated 2022-06-20)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "uuid": "26af7325-7e86-46f6-b4b2-58be967d60ab", - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-04-02 (described on Site Profile dated 2015-04-02)", + "uuid": "8fa5668f-0753-49e4-8266-573ddb11b05f", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2016-08-13 (described on Site Profile dated 2016-08-13)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "uuid": "f9021cc8-5dc0-4148-bb95-165ab6ea6e3b", + "uuid": "3f2c4720-06e0-4a99-a847-e07fa839f947", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-10-01 (described on Site Profile dated 2016-10-01)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "notes": "INSERTED FOR SITE PROFILE DATED 2017-06-26 (described on Site Profile dated 2017-06-26)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "uuid": "2fa0c9a7-7e8b-46c5-a5ea-c47093d88cfb", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2017-02-03 (described on Site Profile dated 2017-02-03)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], "parcelDescriptions": [ { - "uuid": "1c6e2303-54d0-4945-89c8-a9382353173f", - "siteRegistry": true, - "dateNoted": "2020-07-14", - "parcelID": "20319", - "crownLandUsePIN": "17164", - "crownLandFileNumber": "15414", - "landDescription": "LOT 3 OF LOT 1 BLOCK 1 DISTRICT LOT 3 PLAN 8527" + "uuid": "a323690c-3cfe-44f0-a113-479d4e72f1e9", + "siteRegistry": false, + "dateNoted": "2014-11-10", + "parcelID": "18063", + "crownLandUsePIN": "20856", + "crownLandFileNumber": "17741", + "landDescription": "LOT 1 OF LOT 4 BLOCK 2 DISTRICT LOT 1 PLAN 8580" }, { - "uuid": "1c4da2eb-48c2-40e2-88cb-e243d8c89158", + "uuid": "f0a57e5c-b2ba-4e1a-9a24-b904c267e1fa", "siteRegistry": false, - "dateNoted": "2021-05-10", - "parcelID": "16507", - "crownLandUsePIN": "19182", - "crownLandFileNumber": "18938", - "landDescription": "LOT 3 OF LOT 1 BLOCK 5 DISTRICT LOT 1 PLAN 9753" + "dateNoted": "2016-07-02", + "parcelID": "17077", + "crownLandUsePIN": "16747", + "crownLandFileNumber": "18962", + "landDescription": "LOT 1 OF LOT 1 BLOCK 2 DISTRICT LOT 1 PLAN 5986" + }, + { + "uuid": "715d5f71-5cf9-46a8-988f-d839f3db8a34", + "siteRegistry": false, + "dateNoted": "2017-12-18", + "parcelID": "19660", + "crownLandUsePIN": "18916", + "crownLandFileNumber": "15946", + "landDescription": "LOT 3 OF LOT 3 BLOCK 2 DISTRICT LOT 2 PLAN 8981" }, { - "uuid": "62e943d6-1f62-4973-ad69-72cdbfd84103", + "uuid": "b87e4af0-3721-441a-9009-3062c81f24d9", "siteRegistry": false, - "dateNoted": "2015-08-13", - "parcelID": "20974", - "crownLandUsePIN": "18550", - "crownLandFileNumber": "17444", - "landDescription": "LOT 3 OF LOT 4 BLOCK 1 DISTRICT LOT 2 PLAN 7195" + "dateNoted": "2023-01-07", + "parcelID": "19487", + "crownLandUsePIN": "19355", + "crownLandFileNumber": "15750", + "landDescription": "LOT 1 OF LOT 5 BLOCK 4 DISTRICT LOT 5 PLAN 7621" + }, + { + "uuid": "ad08be80-23e5-4570-b2a1-034806c4af8e", + "siteRegistry": true, + "dateNoted": "2015-12-10", + "parcelID": "16765", + "crownLandUsePIN": "20215", + "crownLandFileNumber": "18440", + "landDescription": "LOT 3 OF LOT 3 BLOCK 3 DISTRICT LOT 4 PLAN 9032" } ], "siteDisclosures": [ { - "uuid": "1c015475-d50e-4e89-b62d-f4459c07c8c1", - "siteRegistry": true, - "dateReceived": "2019-03-15", - "dateCompleted": "2016-03-01", - "dateEntered": "2017-11-25", - "dateRegistrar": "2022-09-17", - "dateLocalAuthorityReceived": "2020-07-08", - "summary": "Voluptatum quaerat libero unde accusamus.\nHarum eos aliquid.", - "informationUsed": "Vel minima facere possimus laborum magnam earum.\nUnde a quisquam mollitia harum.\nDolorum ipsum aut ut.", - "pastOrPresentOrders": "Dolorem quam occaecati nulla aliquid numquam cumque.\nMolestiae cumque aliquid aliquid hic.", + "uuid": "bf5f9431-0ce3-47cc-8b23-bb27c8763353", + "siteRegistry": false, + "dateReceived": "2022-07-25", + "dateCompleted": "2013-10-20", + "dateEntered": "2021-04-17", + "dateRegistrar": "2015-05-21", + "dateLocalAuthorityReceived": "2015-08-09", + "summary": "Unde distinctio aut amet.", + "informationUsed": "Ipsa iste beatae facere quam quaerat itaque.\nCumque veniam perferendis architecto est neque nihil placeat.\nSequi voluptatum maiores maiores sunt.\nNumquam ullam rerum quis tenetur suscipit veritatis hic ut.\nArchitecto possimus sint perferendis eaque.", + "pastOrPresentOrders": "Nihil placeat atque sint hic ratione possimus.\nDelectus fuga voluptate illo eaque sapiente voluptas mollitia ullam.\nNatus officiis quod sequi facere eveniet omnis ipsum aperiam.", "commercialAndIndustrialPurposes": [ { - "uuid": "83b7dae8-0be4-4291-8aa5-c8ae26945649", - "scheduleReference": "F1*", + "uuid": "70114bf2-6acd-4690-8937-90f82cd21136", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "04b6c1ff-55ed-4f8e-9aeb-d4e813da1455", + "uuid": "e5b6b1db-f3e6-45bb-9a19-4a7856626560", "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false }, { - "uuid": "63a2bb54-0e3f-44f4-9bf1-2613921c2507", + "uuid": "b4dc9d5a-283d-44d8-9f8f-6ebc4e055e6d", "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + } + ] + }, + { + "uuid": "3cec3fcf-31be-4831-9e5f-313d14487760", + "siteRegistry": true, + "dateReceived": "2023-04-09", + "dateCompleted": "2015-06-02", + "dateEntered": "2018-11-08", + "dateRegistrar": "2019-07-16", + "dateLocalAuthorityReceived": "2017-07-29", + "summary": "Aspernatur reprehenderit velit quia.\nAnimi dolorem unde cupiditate dignissimos voluptas consectetur iusto fugit necessitatibus.", + "informationUsed": "Voluptatum officiis dicta ipsam reprehenderit illo excepturi.\nTemporibus fugiat praesentium.\nSimilique quos distinctio est libero aperiam consectetur nobis esse quod.", + "pastOrPresentOrders": "Beatae quae quae fugit recusandae aperiam sed.\nCumque architecto earum fugiat.", + "commercialAndIndustrialPurposes": [ + { + "uuid": "892a7e6b-57ed-4e15-81f2-0031dc76bbf0", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { - "uuid": "b4b04c1b-aece-411c-8119-e7e25ffc6225", - "scheduleReference": "F2*", + "uuid": "8f1de4b2-71d1-4c84-90f7-a87805bba15e", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true + "siteRegistry": false } ] } ], "activityLog": [ { - "uuid": "c66a9555-0362-4e35-9a2e-51c3aeb3a78f", + "uuid": "c30ae706-6e2b-4cd1-8293-8564f2cfd2ad", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "ZEMLAK CADEN", - "timestamp": "2016-06-16" + "user": "HARTMANN ELOISA", + "timestamp": "2019-08-15" }, { - "uuid": "3bd677de-4a6b-48f0-9943-462f6c6fe156", + "uuid": "3feb75a1-4b40-4598-bfbd-f7526c7e95f5", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "HOWE SERENITY", - "timestamp": "2016-08-05" + "user": "SCHROEDER JASEN", + "timestamp": "2017-06-14" }, { - "uuid": "3ccd329c-b6ec-435e-8022-2cf40c122380", - "siteRegistry": false, + "uuid": "074d38ac-6edc-4d9a-ad8c-53d57d359564", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "DUBUQUE ALBERTO", - "timestamp": "2021-02-26" + "user": "OKUNEVA JAZLYN", + "timestamp": "2017-11-06" }, { - "uuid": "e9bbeb3e-c591-44a3-8f87-95485ca53c37", + "uuid": "8a4eba77-6b3b-4617-85db-cc2e334e24e2", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "LESCH ELSIE", - "timestamp": "2015-01-22" + "user": "BOTSFORD XZAVIER", + "timestamp": "2020-08-28" }, { - "uuid": "00768f9d-6af2-4f0e-a3f7-254fa965f5e9", + "uuid": "fb499080-655c-4b6e-af5a-f1b1dfbfac33", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "KSHLERIN CARMELLA", - "timestamp": "2020-08-27" + "user": "NOLAN-DOUGLAS SOLON", + "timestamp": "2023-01-31" } ], "associatedSites": [ { - "uuid": "b38fc66c-1dd4-4a97-af0d-1be387a2f4e9", - "dateNoted": "2023-04-26", - "notes": "", - "parcelID": "18727", - "siteID": "20482", - "siteRegistry": false - }, - { - "uuid": "55a843d7-9fb7-4cb8-a5e0-a0e361bbd994", - "dateNoted": "2019-07-11", - "notes": "", - "parcelID": "15918", - "siteID": "17765", - "siteRegistry": true - }, - { - "uuid": "9c43beb5-dd6c-4d02-98d8-63afe41c25a6", - "dateNoted": "2014-02-09", + "uuid": "9b98c38b-6a66-4b49-a8f9-f7fb1cc0b91d", + "dateNoted": "2020-03-26", "notes": "", - "parcelID": "19863", - "siteID": "18428", + "parcelID": "19287", + "siteID": "19619", "siteRegistry": true } ] }, { - "uuid": "12b0531f-1947-46f9-86b9-0d5393c8b02d", - "siteID": 18717, - "address": "6659 Christiansen Glen", - "latitude": 55.7007, - "longitude": -138.2361, - "lastUpdated": "2021-09-22", - "city": "Eleanoraborough", - "region": "Cariboo", - "victoriaFile": "26250-20/14391", + "uuid": "fa1243e0-8f80-47d5-9b37-10ef61a3a88c", + "siteID": 20416, + "address": "132 Alexzander Harbor", + "latitude": 58.4609, + "longitude": -119.8299, + "lastUpdated": "2019-08-28", + "city": "Bahringerchester", + "region": "Thompson-Okanagan", + "victoriaFile": "26250-20/7106", "regionalFile": "N/A", "parcelIDs": [ - 9445618, - 8804912, - 4686588, - 5853621, - 5898590 + 3319297, + 779675, + 576377, + 8587544, + 4794351 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "fb23a657-5c66-4392-9226-6174c2131df7", - "createdAt": "2017-11-25", - "completed": "2015-06-22", - "initiated": "2013-10-21", - "ministryContact": "LAKIN ZACKERY", + "uuid": "382e2735-be54-48a5-8327-57cd98bbef87", + "createdAt": "2016-04-03", + "completed": "2014-09-14", + "initiated": "2023-02-14", + "ministryContact": "KULAS LERA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -86458,44 +101714,60 @@ ], "notationParticipants": [ { - "uuid": "ef73719e-bf40-4ca1-bebd-3559d96be504", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "uuid": "3d562089-9d02-4ec2-97c0-a4659c06024d", + "uuid": "d96e1edd-342d-452e-a4b4-20890fc3acb2", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false }, { - "uuid": "79b9921c-7c84-4bce-bf07-4c3f299bfea5", - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "61b350d2-6ee2-4bfe-b24b-e0f03928da63", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "f29de0e2-8c2c-4533-a5ce-b64dfa18369a", + "uuid": "0efd600d-b719-46fc-9307-1cdca59efc7c", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false - }, + } + ], + "siteRegistry": true + }, + { + "uuid": "3bce3cd9-b265-48fc-9ef5-6d26f593b3db", + "createdAt": "2014-01-02", + "completed": "2015-04-02", + "initiated": "2013-11-28", + "ministryContact": "PREDOVIC CLEMENTINE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ { - "uuid": "4ebcac27-7d9a-4e88-86cf-aaaab1332265", + "uuid": "01de70e5-9221-4313-a9e9-44e956971f10", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true + }, + { + "uuid": "074faac1-b27c-4307-82fd-96d4eaa165ad", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true } ], "siteRegistry": true }, { - "uuid": "823db2f6-8b8a-462f-8374-7fad151e9175", - "createdAt": "2019-04-16", - "completed": "2014-11-29", - "initiated": "2017-04-07", - "ministryContact": "ZBONCAK VERLA", + "uuid": "b9dd14a6-e788-4d45-99eb-3b2eb0e10610", + "createdAt": "2016-07-24", + "completed": "2018-01-24", + "initiated": "2014-10-21", + "ministryContact": "GERLACH RANDY", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -86504,32 +101776,44 @@ ], "notationParticipants": [ { - "uuid": "84809a3d-a8d4-4cf2-bf68-842fba0261bf", + "uuid": "8f77c399-48e9-404b-8176-fd6de261b957", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "uuid": "18263a75-b88e-425d-a940-b669ae69800c", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "463fb782-3111-423a-a5f0-95163cbdd94b", + "uuid": "8e5dbb7e-79a0-44e0-8e6f-70a3ed8f091d", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "3f041fa6-b6d6-429d-bfcc-67396f983e34", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": true }, { - "uuid": "f7e287c7-8635-4a34-b66f-f1d912de8013", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "uuid": "2af41279-5263-442f-a6d4-7a18cd12598f", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": false } ], "siteRegistry": true }, { - "uuid": "8e8c1231-5611-4fcc-aa5b-d4e46bc6f31c", - "createdAt": "2017-10-24", - "completed": "2014-03-25", - "initiated": "2015-08-07", - "ministryContact": "WALSH BERNHARD", + "uuid": "0f1082e0-6561-486f-b127-3addd0152560", + "createdAt": "2022-07-25", + "completed": "2017-04-28", + "initiated": "2019-04-16", + "ministryContact": "DIETRICH YADIRA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -86538,38 +101822,56 @@ ], "notationParticipants": [ { - "uuid": "c8d98486-0e52-47cf-8868-ea6143c09089", + "uuid": "c5762f15-5be6-438e-bf8e-5d25f543a607", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "d8d09d35-5ecf-4754-abef-aaadaea347e2", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "uuid": "8b8360a4-35e4-41b3-997b-392b00361d28", "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "b600cb73-398e-4a09-8145-ed802e8b3ce2", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true }, { - "uuid": "8fb87abf-e72d-4c52-9924-7824e452f3e7", + "uuid": "487c9089-ffea-43a6-9fe3-7cb339065634", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false } ], "participants": [ { - "uuid": "8dd90049-9404-4750-9df8-c895c02afd8f", - "name": "SHELL CANADA PRODUCTS", - "endDate": "2021-05-20", - "startDate": "2023-06-01", + "uuid": "0d759d1d-f59e-42d9-98f4-81c7f8abd105", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2014-04-29", + "startDate": "2018-09-20", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "a7cc323e-3c32-4671-a02b-9b43ba424fd7", - "name": "IPSUM", - "endDate": "2017-09-16", - "startDate": "2020-05-07", + "uuid": "29433e50-ffbb-491a-871b-e48a12644b36", + "name": "AMET, DOLOR SIT", + "endDate": "2015-04-09", + "startDate": "2021-05-20", "notes": "", "roles": [ "ORGANIZATION" @@ -86577,10 +101879,10 @@ "siteRegistry": false }, { - "uuid": "7630b11b-dbcf-4749-9df0-24fe9ec158a9", - "name": "IPSUM", - "endDate": "2018-06-07", - "startDate": "2018-08-09", + "uuid": "87c2224c-e715-4b31-8cdd-ae188d5f3347", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2016-12-09", + "startDate": "2018-03-01", "notes": "", "roles": [ "EMPLOYEE" @@ -86588,132 +101890,174 @@ "siteRegistry": false }, { - "uuid": "030b24d9-dab2-49a9-a2c5-7b436a3c1a8d", - "name": "AMET, DOLOR SIT", - "endDate": "2023-01-19", - "startDate": "2023-05-22", + "uuid": "af94385c-0740-46eb-985d-61126072dbf3", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2016-12-29", + "startDate": "2018-01-09", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], - "siteRegistry": true + "siteRegistry": false + } + ], + "documents": [ + { + "uuid": "22c6e527-d68b-47ae-ad65-33dca7cc4df6", + "siteRegistry": true, + "documentDate": "2022-10-15", + "receivedDate": "2016-06-07", + "uploadedDate": "2016-08-14", + "title": "Summary of Site Conditions, 1537 W 41st Avenue, Vancouver", + "participants": [ + { + "uuid": "b64e1d23-597c-48c6-ae58-574980841632", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "720ae4f3-57eb-4ffe-8d0c-d129f6d04e60", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": false, + "role": "AUTHOR" + } + ] } ], "suspectLandUses": [ { - "uuid": "0e5501ca-b9dc-4266-8cce-7fb75bc2a893", + "uuid": "c5495524-a691-4142-953b-66d9fc2e126d", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2020-09-17 (described on Site Profile dated 2020-09-17)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "uuid": "fb976201-09da-4e04-bb6e-db17bddddc73", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-06-17 (described on Site Profile dated 2019-06-17)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "notes": "INSERTED FOR SITE PROFILE DATED 2021-10-08 (described on Site Profile dated 2021-10-08)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "uuid": "08a5d4a4-8b8d-4224-8aa6-1ddf7a840367", + "uuid": "e849656e-8f37-4413-ad86-4ff5c5349b91", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2023-06-02 (described on Site Profile dated 2023-06-02)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "notes": "INSERTED FOR SITE PROFILE DATED 2020-08-09 (described on Site Profile dated 2020-08-09)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "uuid": "6414dc19-c080-497f-88f7-d3dffd8e63ef", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2017-05-09 (described on Site Profile dated 2017-05-09)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], "parcelDescriptions": [ { - "uuid": "471e0fd0-9d97-4500-86a3-add2293c0dc9", + "uuid": "805931df-942b-4692-997e-107ea9740164", "siteRegistry": true, - "dateNoted": "2020-07-02", - "parcelID": "20251", - "crownLandUsePIN": "15413", - "crownLandFileNumber": "20095", - "landDescription": "LOT 3 OF LOT 3 BLOCK 4 DISTRICT LOT 1 PLAN 8153" + "dateNoted": "2019-10-28", + "parcelID": "20749", + "crownLandUsePIN": "20512", + "crownLandFileNumber": "19481", + "landDescription": "LOT 1 OF LOT 2 BLOCK 2 DISTRICT LOT 2 PLAN 6063" }, { - "uuid": "eb90c761-19cc-44a6-b938-a19a3e14c674", + "uuid": "9d32c3d1-b8e9-47a9-826d-95f97ab95016", "siteRegistry": false, - "dateNoted": "2013-11-23", - "parcelID": "20350", - "crownLandUsePIN": "17476", - "crownLandFileNumber": "16499", - "landDescription": "LOT 3 OF LOT 4 BLOCK 2 DISTRICT LOT 5 PLAN 3734" + "dateNoted": "2021-02-07", + "parcelID": "20269", + "crownLandUsePIN": "16914", + "crownLandFileNumber": "15558", + "landDescription": "LOT 3 OF LOT 4 BLOCK 3 DISTRICT LOT 3 PLAN 5909" }, { - "uuid": "039dbfc5-0e06-423b-be5d-53e0bc5e255d", - "siteRegistry": false, - "dateNoted": "2021-02-14", - "parcelID": "15500", - "crownLandUsePIN": "20045", - "crownLandFileNumber": "16603", - "landDescription": "LOT 5 OF LOT 5 BLOCK 5 DISTRICT LOT 2 PLAN 5864" + "uuid": "00b553f0-8b22-4b97-b29d-b1aa517f4440", + "siteRegistry": true, + "dateNoted": "2019-05-11", + "parcelID": "18100", + "crownLandUsePIN": "15711", + "crownLandFileNumber": "18130", + "landDescription": "LOT 4 OF LOT 5 BLOCK 3 DISTRICT LOT 3 PLAN 5043" }, { - "uuid": "9c8049ee-1bfa-4647-80c3-061915c0a686", + "uuid": "32a54a79-e256-4519-bff6-d71dd0aa0c00", "siteRegistry": false, - "dateNoted": "2014-02-10", - "parcelID": "15793", - "crownLandUsePIN": "19736", - "crownLandFileNumber": "20089", - "landDescription": "LOT 3 OF LOT 2 BLOCK 4 DISTRICT LOT 2 PLAN 4969" + "dateNoted": "2014-10-30", + "parcelID": "16884", + "crownLandUsePIN": "16731", + "crownLandFileNumber": "19859", + "landDescription": "LOT 4 OF LOT 1 BLOCK 5 DISTRICT LOT 2 PLAN 5094" }, { - "uuid": "a339c52b-1ff0-47b8-82c6-91d0e89a5a03", + "uuid": "81aaa85f-f57e-48cd-bd45-62047806363d", "siteRegistry": false, - "dateNoted": "2021-01-31", - "parcelID": "18946", - "crownLandUsePIN": "20860", - "crownLandFileNumber": "18330", - "landDescription": "LOT 1 OF LOT 4 BLOCK 1 DISTRICT LOT 5 PLAN 6600" + "dateNoted": "2016-02-26", + "parcelID": "20772", + "crownLandUsePIN": "20444", + "crownLandFileNumber": "19071", + "landDescription": "LOT 3 OF LOT 5 BLOCK 1 DISTRICT LOT 3 PLAN 8680" } ], "siteDisclosures": [ { - "uuid": "c1291fc8-fb50-4a46-8a8f-05c155a6ef09", - "siteRegistry": false, - "dateReceived": "2020-07-01", - "dateCompleted": "2019-11-03", - "dateEntered": "2017-01-06", - "dateRegistrar": "2016-07-20", - "dateLocalAuthorityReceived": "2023-09-10", - "summary": "Commodi dignissimos doloremque deleniti minima doloribus assumenda.\nAutem a vero.", - "informationUsed": "Ratione asperiores iusto aut labore sint impedit.\nMollitia tempore modi rerum.\nQuia magni dolorem esse mollitia voluptatibus id.", - "pastOrPresentOrders": "Repellendus molestiae voluptatum unde deleniti incidunt.", + "uuid": "6bc80a02-c574-4091-a574-2fc07a4ccc5d", + "siteRegistry": true, + "dateReceived": "2019-09-25", + "dateCompleted": "2014-09-09", + "dateEntered": "2017-06-10", + "dateRegistrar": "2015-09-27", + "dateLocalAuthorityReceived": "2013-10-23", + "summary": "Porro itaque dignissimos nam quibusdam saepe delectus officiis labore perspiciatis.\nRepudiandae quae sit tempora corrupti nisi esse.", + "informationUsed": "Tempora nisi nihil.\nProvident blanditiis quibusdam corrupti.\nRecusandae voluptatem illo illum suscipit voluptatum.\nHic ullam nam praesentium sint quis quia sequi.", + "pastOrPresentOrders": "Vel excepturi itaque officia.\nEaque a ullam.\nInventore temporibus incidunt doloribus facere dolorem fugiat.", "commercialAndIndustrialPurposes": [ { - "uuid": "d2696b2b-71e6-4c45-ad56-166108c37a00", - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true + "uuid": "a8462274-a72e-42e1-812d-c2d2a8eb7d50", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false }, { - "uuid": "6f6d6ba1-5cc5-4ea3-b557-73b2345bc704", - "scheduleReference": "F1*", + "uuid": "b7a99e3a-6b19-4c3a-a594-1af58911a21a", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "uuid": "f78655ac-4b60-4e75-81b5-bc93a6e8e3c4", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { - "uuid": "524258d1-ca20-46f7-94b6-714b43387eb9", + "uuid": "820b242e-985f-45b3-8ead-857130b01374", "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false } ] }, { - "uuid": "fc8428a5-7edc-4976-a554-74eed9b01b28", + "uuid": "8a415e8a-d851-47eb-a333-97941af6ebae", "siteRegistry": false, - "dateReceived": "2023-09-04", - "dateCompleted": "2015-08-26", - "dateEntered": "2020-03-25", - "dateRegistrar": "2015-08-06", - "dateLocalAuthorityReceived": "2021-04-28", - "summary": "Dolore dolore maiores quia voluptates cupiditate error quaerat sequi delectus.\nDucimus voluptates vitae saepe et consequatur dolores nobis.\nCulpa voluptatibus iste cumque modi aliquid nostrum laboriosam.", - "informationUsed": "Nostrum omnis alias consequatur officiis omnis quidem totam.\nEx placeat magni.\nUt repellat cumque fugit tempora repellendus.\nMagnam fugiat ullam labore.", - "pastOrPresentOrders": "Aliquam in beatae.", + "dateReceived": "2015-04-08", + "dateCompleted": "2016-10-01", + "dateEntered": "2020-12-28", + "dateRegistrar": "2020-05-24", + "dateLocalAuthorityReceived": "2014-07-16", + "summary": "Earum provident veritatis officiis laborum sit iure iure atque enim.\nRecusandae perspiciatis vitae optio officiis quod explicabo nulla quisquam in.", + "informationUsed": "Veniam accusamus architecto ratione fugit ea.\nNulla fugit quos dolorem laboriosam quo inventore doloribus libero sunt.\nConsequatur eius eos quam delectus eveniet sunt architecto atque.\nLibero in eum nostrum error.\nDebitis quos sequi.", + "pastOrPresentOrders": "Sunt ea praesentium sequi vitae.\nQuo distinctio maxime.", "commercialAndIndustrialPurposes": [ { - "uuid": "0b356120-d0ff-43ea-aa07-7ed01cf87637", - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "uuid": "72fc6120-2c78-4101-8b75-b8d21ceb6b31", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, { - "uuid": "817db68a-577f-4e75-abea-4e18db4d8457", - "scheduleReference": "F2*", + "uuid": "1fbd0720-0221-4616-b7bd-519c227663e4", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true } @@ -86722,101 +102066,108 @@ ], "activityLog": [ { - "uuid": "50a247f3-227e-424d-98c1-d71ea17c2157", + "uuid": "c538f1b8-0836-4a3c-b3d4-be5850118f21", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "RUTHERFORD LEW", - "timestamp": "2021-01-10" + "user": "JENKINS LORENA", + "timestamp": "2014-03-19" }, { - "uuid": "9a370395-5f6f-48c5-ad0a-999524bf79f5", - "siteRegistry": false, + "uuid": "b248363e-76a7-4e6c-954f-ed412bf67c9a", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "AUFDERHAR ALEXANDRE", - "timestamp": "2023-01-30" + "user": "MORISSETTE WADE", + "timestamp": "2016-02-27" }, { - "uuid": "9362959e-4764-48bd-9346-24c2b2fb576d", - "siteRegistry": false, + "uuid": "c0ac5af0-51cc-4ab2-908a-d6363d47a4ca", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "JACOBI COLLIN", - "timestamp": "2021-09-05" + "user": "BREITENBERG DOMINIC", + "timestamp": "2021-03-18" }, { - "uuid": "416340a1-ca82-472d-84e2-f17d5528fea3", + "uuid": "9fd60072-ec54-4f8f-8910-cf448e048bae", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "WEIMANN MARQUES", - "timestamp": "2023-04-01" + "user": "SCHAEFER LELAND", + "timestamp": "2014-01-23" }, { - "uuid": "f11f7d07-c6a7-45c0-8fa0-59e3376c29db", + "uuid": "21490e70-ea20-475e-adca-3fcb3dd6445c", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "SCHMITT PIERRE", - "timestamp": "2019-03-23" + "user": "KAUTZER BRIDIE", + "timestamp": "2019-10-28" }, { - "uuid": "8ef178b7-1fa0-4dca-81e0-5374778aa8d2", + "uuid": "c81baaad-442b-4557-88f3-53b6fae350b9", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "MORAR CARMELA", - "timestamp": "2018-10-01" + "user": "GUTMANN ENRICO", + "timestamp": "2016-01-26" + }, + { + "uuid": "8fa05dbb-974e-408e-a30a-066e30b49440", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "SCHINNER TESSIE", + "timestamp": "2020-08-05" } ], "associatedSites": [ { - "uuid": "460f8334-9711-41e4-8ea0-a8e36477e338", - "dateNoted": "2022-12-19", + "uuid": "71376463-074c-4d89-a34e-fb45df900329", + "dateNoted": "2022-06-10", "notes": "", - "parcelID": "19665", - "siteID": "19481", - "siteRegistry": true + "parcelID": "17263", + "siteID": "18312", + "siteRegistry": false }, { - "uuid": "aec2db1a-cc53-4e16-9579-bbfe4e62e492", - "dateNoted": "2015-03-12", + "uuid": "8e58def2-baf8-483a-8579-807eaab837cf", + "dateNoted": "2020-03-27", "notes": "", - "parcelID": "20529", - "siteID": "19730", + "parcelID": "19263", + "siteID": "19986", "siteRegistry": false }, { - "uuid": "4ebb48b1-0426-4a35-a763-242749d7f264", - "dateNoted": "2022-11-18", + "uuid": "626711c0-79c3-45a4-8ef6-a6746dfe4927", + "dateNoted": "2019-10-16", "notes": "", - "parcelID": "17788", - "siteID": "16078", - "siteRegistry": true + "parcelID": "15300", + "siteID": "17584", + "siteRegistry": false } ] }, { - "uuid": "76b45522-f1e8-4c15-966a-f549d64b49d2", - "siteID": 17608, - "address": "432 Ike Underpass", - "latitude": 58.4623, - "longitude": -134.3881, - "lastUpdated": "2020-07-09", - "city": "Highland", - "region": "Cariboo", - "victoriaFile": "26250-20/11596", + "uuid": "61d8acc9-0959-437b-ae76-1ea6549bddb5", + "siteID": 20718, + "address": "972 Elliott Ports", + "latitude": 54.6551, + "longitude": -122.563, + "lastUpdated": "2023-04-06", + "city": "New Gregoria", + "region": "Vancouver Island/Coast", + "victoriaFile": "26250-20/16972", "regionalFile": "N/A", "parcelIDs": [ - 5522484, - 7528485, - 9245155, - 9576468, - 7493885 + 9426175, + 1227406, + 9944046, + 6200117, + 7285875 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "76a2e312-2f65-4493-9d06-9f09af89040f", - "createdAt": "2016-08-17", - "completed": "2018-09-15", - "initiated": "2017-12-17", - "ministryContact": "ABERNATHY ELYSSA", + "uuid": "bb010fee-603c-431f-8685-f0a95dd421e7", + "createdAt": "2015-04-07", + "completed": "2023-08-09", + "initiated": "2021-03-25", + "ministryContact": "CARTER DOROTHY", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -86825,38 +102176,78 @@ ], "notationParticipants": [ { - "uuid": "49309500-6ab9-4117-b0a6-c97b298a334f", + "uuid": "ad974b29-bb34-44a8-937b-60cba2c90cf1", "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "bcccf7f8-e1a3-448f-94b8-24eb5f6bfb64", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true }, { - "uuid": "da4a64fd-e7ce-4321-9d3b-8145e26802ef", + "uuid": "827ba2fc-d6c3-446a-9602-1c2d5d4392ce", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "uuid": "a2c83e5d-f976-418d-b2a5-91cd72e9adb1", + "createdAt": "2016-03-11", + "completed": "2015-01-28", + "initiated": "2016-04-15", + "ministryContact": "SCHAEFER EARNESTINE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "uuid": "88c34d6f-2be7-4823-8a61-56cd5549420f", "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "uuid": "c61b2bda-b24f-4adf-bc05-d63e99b98dbd", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "016f303c-8690-41d7-b49b-f6ee58332500", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": true }, { - "uuid": "175ad33f-c6a3-4aa2-beff-df34b9f7a152", + "uuid": "ab057089-3872-48e7-bbca-dfa022685424", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true }, { - "uuid": "4df8816b-a36b-4263-979c-26458fc1ceb0", + "uuid": "d4a9419f-0b7c-43f8-9082-944328578319", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true } ], "siteRegistry": false }, { - "uuid": "696fbc89-acd0-49d1-9c13-ffe2fc315726", - "createdAt": "2016-04-06", - "completed": "2022-05-24", - "initiated": "2022-11-11", - "ministryContact": "HANE SANTOS", + "uuid": "86b40908-d337-4f33-97a7-d10d4e25d370", + "createdAt": "2022-11-22", + "completed": "2018-05-10", + "initiated": "2023-05-04", + "ministryContact": "WIZA VICTOR", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -86865,26 +102256,38 @@ ], "notationParticipants": [ { - "uuid": "72631602-46b5-4f5a-b2bc-209229aba590", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "uuid": "659ecc78-6dff-4e97-93c0-5f97f92a1c2a", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": true }, { - "uuid": "c8389248-a67c-4a6b-9259-3e1eafd27510", + "uuid": "ee30bbb0-15d2-4080-81c1-e915855e9148", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false + }, + { + "uuid": "86b0ec82-8b24-4c03-913e-3957a6adeadd", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "uuid": "6a160624-fd7c-465f-b571-1e8eecffc0d5", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true } ], "siteRegistry": true }, { - "uuid": "9b23241a-3282-4001-8e8a-d20df008ba57", - "createdAt": "2020-05-28", - "completed": "2014-11-23", - "initiated": "2017-03-22", - "ministryContact": "HANE SERENITY", + "uuid": "0be743be-3733-45f3-92a7-98d2a4679ca7", + "createdAt": "2016-05-21", + "completed": "2014-12-08", + "initiated": "2023-05-05", + "ministryContact": "WEHNER JEFFRY", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -86893,44 +102296,44 @@ ], "notationParticipants": [ { - "uuid": "757e2e50-1068-44ab-838a-01cbf7a4cab0", + "uuid": "073160d0-9fc7-495b-a657-f67170ec8c65", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "d682cbfc-dd50-464f-87b1-3df86031a5b4", + "uuid": "9982a8b1-b19e-4c07-8da7-ca78efbf7933", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "92c77efa-198d-4f4f-84b3-95f4492166ab", - "name": "SHELL CANADA PRODUCTS", + "uuid": "ea818f7b-e088-48c1-83b4-716d1549a5aa", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false }, { - "uuid": "e3ca1531-669d-477a-8007-8f7f45f7edf0", + "uuid": "1ed64761-bd47-44f3-a8a6-2bf6f7a70945", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "6c70d80e-a773-42a9-86fc-b3c9b7bf4222", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false + "uuid": "e649375e-ab21-473d-a157-639ec7fe5604", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "0de86aba-26a0-48bd-87fb-1f8209d82af3", - "createdAt": "2016-08-16", - "completed": "2020-10-29", - "initiated": "2019-05-18", - "ministryContact": "BATZ LINWOOD", + "uuid": "25065396-f461-4198-9aa5-f59404925c5b", + "createdAt": "2016-11-22", + "completed": "2014-03-13", + "initiated": "2018-01-19", + "ministryContact": "BRUEN HOSEA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -86939,20 +102342,32 @@ ], "notationParticipants": [ { - "uuid": "02f65661-18d1-4b3b-bf33-578fad613338", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "uuid": "c41db6ca-7b4a-4e5d-987a-26e72a692ded", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": true }, { - "uuid": "fb7a84d2-1c89-41a4-bb51-b7da62d407e4", + "uuid": "f88c7a9e-9693-4d68-b876-77fc2b976300", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true + }, + { + "uuid": "6f7ad6b9-f1f2-4761-9add-c3b04d037ba0", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true }, { - "uuid": "57328fbd-75cb-460c-897d-e4a91f8f9ec0", + "uuid": "e3a86b51-b5da-425e-bd47-e7e101d1ade8", "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "c7d52a81-797b-4c5a-a807-cde7ade9ed92", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true } @@ -86962,148 +102377,278 @@ ], "participants": [ { - "uuid": "b8d13722-44f8-45c2-b192-66582dcbed5d", - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2020-10-04", - "startDate": "2016-07-11", + "uuid": "e1099bcf-e7ef-49ba-89c4-b263cffd36a6", + "name": "IPSUM", + "endDate": "2023-07-31", + "startDate": "2017-03-11", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "4aa38f85-23e4-41e2-abc9-a784ca3683db", - "name": "AMET, DOLOR SIT", - "endDate": "2020-09-20", - "startDate": "2021-11-10", + "uuid": "9235bccb-650b-4771-9e86-67f032a44cdf", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2020-12-06", + "startDate": "2014-03-27", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": false }, { - "uuid": "bc2f8cb8-0b54-4862-9be5-e2c8ba243060", - "name": "AMET, DOLOR SIT", - "endDate": "2022-02-15", - "startDate": "2018-11-13", + "uuid": "5dee4667-543a-4db0-b7fe-99e1a5cd7ab3", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2016-05-29", + "startDate": "2017-10-31", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "1bada328-128f-41ed-8665-b48e46f6d362", - "name": "IPSUM", - "endDate": "2022-04-30", - "startDate": "2015-03-22", + "uuid": "630c8c17-a872-4785-862d-15f95a75879c", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2021-07-09", + "startDate": "2019-10-10", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true + } + ], + "documents": [ + { + "uuid": "382f2f24-bc45-4b52-9ad7-7372a4a87736", + "siteRegistry": true, + "documentDate": "2021-12-23", + "receivedDate": "2020-11-25", + "uploadedDate": "2018-03-03", + "title": "Summary of Site Conditions, 1537 W 41st Avenue, Vancouver", + "participants": [ + { + "uuid": "9d418293-9240-48f3-a39d-3ceb76d200f2", + "name": "IPSUM", + "siteRegistry": true, + "role": "AUTHOR" + } + ] + }, + { + "uuid": "e9d09437-2f03-4d56-83a3-16da9a50d448", + "siteRegistry": true, + "documentDate": "2018-08-28", + "receivedDate": "2014-08-23", + "uploadedDate": "2018-05-20", + "title": "Preliminary Site Investigation, Detailed Site Investigation and Remedial Plan for the Management Area adjacent to the Shell Site at 1503 West 41st Ave", + "participants": [ + { + "uuid": "663102f9-3321-4979-b318-6dd66381f1e0", + "name": "IPSUM", + "siteRegistry": false, + "role": "AUTHOR" + } + ] + }, + { + "uuid": "1a5abae9-63ab-43fd-8175-cdba0ff39473", + "siteRegistry": false, + "documentDate": "2015-08-09", + "receivedDate": "2020-09-19", + "uploadedDate": "2023-03-19", + "title": "Summary of Site Conditions, 1537 W 41st Avenue, Vancouver", + "participants": [ + { + "uuid": "d2562cf0-9ce5-487c-bd8d-7a6f67667235", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "f63c2b01-517e-4283-960c-e7df09dcdaf9", + "name": "AMET, DOLOR SIT", + "siteRegistry": true, + "role": "AUTHOR" + } + ] + }, + { + "uuid": "abce0d7f-443a-4202-a16e-9ed44b924c82", + "siteRegistry": true, + "documentDate": "2016-06-22", + "receivedDate": "2017-04-10", + "uploadedDate": "2015-05-12", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "d3f8a680-faa0-4527-95cb-13dbb42fddad", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "2a97a163-4778-4ed3-ba07-fa60139dea28", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": true, + "role": "AUTHOR" + } + ] }, { - "uuid": "62112c63-b938-497d-bd34-462e4644b4e2", - "name": "SHELL CANADA PRODUCTS", - "endDate": "2021-09-16", - "startDate": "2017-06-24", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": false + "uuid": "ebdd0222-8730-48d3-9f3b-9691364aa330", + "siteRegistry": true, + "documentDate": "2016-11-26", + "receivedDate": "2014-08-17", + "uploadedDate": "2016-02-10", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "b3cd74bf-a23d-441f-8246-5ff1784221b2", + "name": "AMET, DOLOR SIT", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "9dfb03ee-fa02-4a61-8811-a2918bba254c", + "name": "IPSUM", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "52d64109-3901-4c27-873d-e017babb8bf4", + "name": "IPSUM", + "siteRegistry": true, + "role": "AUTHOR" + } + ] } ], "suspectLandUses": [ { - "uuid": "bb0eb753-a4d4-4b05-9b8a-8b5cd860b71a", + "uuid": "2cbb9509-63ff-423c-a9f3-239be1c70dd5", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2014-08-10 (described on Site Profile dated 2014-08-10)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "uuid": "53196058-8bf3-42d4-b8dc-b878dfa5b4fb", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2020-05-19 (described on Site Profile dated 2020-05-19)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "notes": "INSERTED FOR SITE PROFILE DATED 2023-10-14 (described on Site Profile dated 2023-10-14)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "uuid": "3e524d95-6328-42b8-91fe-e7492247d527", + "uuid": "6c886ec9-ce33-4783-9052-0a4b5fccaafa", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-02-26 (described on Site Profile dated 2017-02-26)", + "notes": "INSERTED FOR SITE PROFILE DATED 2017-05-11 (described on Site Profile dated 2017-05-11)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "uuid": "7969308b-97d7-4d5e-a52f-0a79365964af", + "uuid": "1fc240ed-2185-43d6-ab1b-708d9385d10f", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-09-13 (described on Site Profile dated 2016-09-13)", + "notes": "INSERTED FOR SITE PROFILE DATED 2017-03-21 (described on Site Profile dated 2017-03-21)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "uuid": "9b5f7a4e-28ae-4295-8a1d-eb138812748f", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2023-05-16 (described on Site Profile dated 2023-05-16)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], "parcelDescriptions": [ { - "uuid": "0211e4f3-a948-4326-8006-8301767cc5d9", - "siteRegistry": true, - "dateNoted": "2014-08-08", - "parcelID": "18503", - "crownLandUsePIN": "17682", - "crownLandFileNumber": "20863", - "landDescription": "LOT 2 OF LOT 4 BLOCK 5 DISTRICT LOT 3 PLAN 4835" - }, - { - "uuid": "6074e815-3950-4be7-a633-297b72f63009", + "uuid": "5afd3520-6531-491e-a77c-d33efa09a962", "siteRegistry": true, - "dateNoted": "2014-06-13", - "parcelID": "16588", - "crownLandUsePIN": "19085", - "crownLandFileNumber": "20781", - "landDescription": "LOT 4 OF LOT 5 BLOCK 5 DISTRICT LOT 4 PLAN 6922" + "dateNoted": "2017-03-01", + "parcelID": "15324", + "crownLandUsePIN": "19568", + "crownLandFileNumber": "16859", + "landDescription": "LOT 2 OF LOT 1 BLOCK 1 DISTRICT LOT 4 PLAN 3866" }, { - "uuid": "2104d95e-de1a-4de2-87e6-0f95f67b504e", + "uuid": "30495410-7a76-4570-9f48-360c9c8d43ca", "siteRegistry": true, - "dateNoted": "2022-03-02", - "parcelID": "20941", - "crownLandUsePIN": "16854", - "crownLandFileNumber": "20179", - "landDescription": "LOT 2 OF LOT 1 BLOCK 1 DISTRICT LOT 5 PLAN 5072" + "dateNoted": "2020-08-04", + "parcelID": "19182", + "crownLandUsePIN": "15421", + "crownLandFileNumber": "20177", + "landDescription": "LOT 1 OF LOT 2 BLOCK 3 DISTRICT LOT 5 PLAN 8625" }, { - "uuid": "b6c143f8-7999-4b2f-adac-304913a01225", + "uuid": "2b41e901-7ca9-4af9-a031-7c42b31778ab", "siteRegistry": false, - "dateNoted": "2015-11-28", - "parcelID": "17973", - "crownLandUsePIN": "18976", - "crownLandFileNumber": "17552", - "landDescription": "LOT 5 OF LOT 3 BLOCK 3 DISTRICT LOT 5 PLAN 8441" + "dateNoted": "2022-05-25", + "parcelID": "20607", + "crownLandUsePIN": "16984", + "crownLandFileNumber": "19352", + "landDescription": "LOT 2 OF LOT 2 BLOCK 3 DISTRICT LOT 5 PLAN 8734" } ], "siteDisclosures": [ { - "uuid": "ba83b5fa-4c51-4db1-9127-3f45e23e69d4", - "siteRegistry": true, - "dateReceived": "2014-02-01", - "dateCompleted": "2017-04-07", - "dateEntered": "2016-06-19", - "dateRegistrar": "2022-07-07", - "dateLocalAuthorityReceived": "2016-10-10", - "summary": "Velit nihil expedita eligendi nihil dolor assumenda.\nDolorum tenetur praesentium doloremque facilis excepturi inventore harum.\nOdio quod nulla officiis.", - "informationUsed": "Occaecati ex at id repudiandae tempora unde illo nisi.\nAutem iure quia minima commodi consectetur magnam.\nDicta quasi eum fuga.\nPariatur repellat dolore adipisci molestias nobis dolorum porro dicta libero.", - "pastOrPresentOrders": "Cum ea commodi necessitatibus fuga sint.\nSit magnam quis commodi asperiores fugit soluta placeat earum.\nIn qui magni excepturi quo illum sint perferendis ad.", + "uuid": "5c936a50-9db1-4cfa-8213-f43c7c5c4d09", + "siteRegistry": false, + "dateReceived": "2020-04-25", + "dateCompleted": "2016-04-13", + "dateEntered": "2022-07-20", + "dateRegistrar": "2018-08-21", + "dateLocalAuthorityReceived": "2019-03-15", + "summary": "Earum suscipit quo asperiores nisi.\nDolores necessitatibus dolorum.\nOptio consectetur quae.", + "informationUsed": "Mollitia nesciunt ratione voluptate temporibus quia eligendi.\nSed molestias illo animi doloribus.\nImpedit sit magnam fugit optio earum quam rerum voluptate.\nEligendi aspernatur omnis aspernatur.\nNostrum quas aliquid hic sunt doloribus.", + "pastOrPresentOrders": "Corrupti temporibus esse.\nIpsa a maiores numquam.", "commercialAndIndustrialPurposes": [ { - "uuid": "335a092b-eded-49a2-bff2-de47170cbd5f", + "uuid": "c6c645ad-b210-4bba-8847-48030140bb19", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, { - "uuid": "a51e3de6-c4d3-429e-8c48-534b2f56384c", + "uuid": "48fed04f-0f79-43e9-b8d3-b4011eafed8f", "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "uuid": "daf0a07e-f88a-4a71-940e-84c98f20094e", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + } + ] + }, + { + "uuid": "0e65ae0b-9ad7-47d7-a5fd-0d9f244cff25", + "siteRegistry": false, + "dateReceived": "2020-12-17", + "dateCompleted": "2016-03-24", + "dateEntered": "2019-07-25", + "dateRegistrar": "2014-06-25", + "dateLocalAuthorityReceived": "2017-04-04", + "summary": "Distinctio enim enim deserunt rem similique fugit voluptate natus.\nProvident cumque ipsa saepe voluptatum nam iste aperiam qui aliquam.\nQuasi aspernatur est laudantium.", + "informationUsed": "Architecto sint eius asperiores quia.\nIure ut nostrum architecto sunt ad ipsam culpa.\nPlaceat dolore architecto similique deserunt eum adipisci mollitia.\nPlaceat eaque ducimus velit.", + "pastOrPresentOrders": "Dignissimos enim culpa aperiam nesciunt libero porro iusto.", + "commercialAndIndustrialPurposes": [ + { + "uuid": "11d2131d-1432-4d2d-94c8-8ef4fc1bd3a3", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { - "uuid": "88185275-8c9f-4dde-98ed-078ce0b25c94", - "scheduleReference": "F2*", + "uuid": "42e3784f-613d-4034-9771-8a114b284365", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "uuid": "f030d56b-c921-475d-b200-217339fab6fd", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false } ] @@ -87111,85 +102656,101 @@ ], "activityLog": [ { - "uuid": "40a5c3ac-90b1-4236-bc55-024e147460c7", - "siteRegistry": false, + "uuid": "67a54469-f326-4092-b5ff-71371eb37eba", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "RENNER JAMARCUS", - "timestamp": "2015-11-07" + "user": "DOUGLAS LUCIANO", + "timestamp": "2023-09-29" }, { - "uuid": "d7f5df8e-2a5d-4957-a581-fca19bd8f1f8", + "uuid": "3b7d6aee-6e02-41c9-bf9e-8441082e7f27", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "TURCOTTE-JACOBSON ELOY", - "timestamp": "2016-07-15" + "user": "DAVIS FRANCES", + "timestamp": "2014-06-16" }, { - "uuid": "c8cd60ab-8ce6-4fff-bf22-f39cd9bec5c4", + "uuid": "0d00490c-bc92-46ab-98c2-f038364863f5", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "DAUGHERTY DAMIAN", - "timestamp": "2016-05-21" + "user": "MCCULLOUGH MARYSE", + "timestamp": "2022-05-31" }, { - "uuid": "a66036ed-4347-46dd-b458-80652537c33e", - "siteRegistry": false, + "uuid": "ac14c935-2766-46e2-b55b-3c06182ad0c4", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "WALSH-MORISSETTE KRISTOFER", - "timestamp": "2023-06-22" + "user": "BATZ MARYSE", + "timestamp": "2020-08-27" }, { - "uuid": "95ebea19-de60-465e-bd6f-a82f9b93ac3a", + "uuid": "941e43f2-8a8a-4273-b695-cb988c5a30e0", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "HALVORSON-WEISSNAT DEWITT", - "timestamp": "2020-04-22" + "user": "DICKINSON JEWEL", + "timestamp": "2016-08-20" }, { - "uuid": "e882a170-6ebe-4a0b-8dfa-c6ebdde4c9f7", - "siteRegistry": true, + "uuid": "f5a73fe6-466c-46ad-b9b0-001c795e3ccf", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "OBERBRUNNER YADIRA", - "timestamp": "2016-01-24" + "user": "CORMIER-KIHN BREANNA", + "timestamp": "2017-12-30" } ], "associatedSites": [ { - "uuid": "a2b6cb1c-9cf1-4d49-89f8-56cb626567d3", - "dateNoted": "2015-10-09", + "uuid": "5f19bb45-f18f-42ad-b241-78648c692b6a", + "dateNoted": "2022-09-10", "notes": "", - "parcelID": "19277", - "siteID": "16804", + "parcelID": "17194", + "siteID": "19693", + "siteRegistry": true + }, + { + "uuid": "970a52e4-aa0b-42b9-a9de-b93169bf56c3", + "dateNoted": "2016-12-06", + "notes": "", + "parcelID": "20727", + "siteID": "16012", + "siteRegistry": true + }, + { + "uuid": "d0f66724-db77-4919-a108-fc694f38e917", + "dateNoted": "2019-05-01", + "notes": "", + "parcelID": "20609", + "siteID": "15488", "siteRegistry": true } ] }, { - "uuid": "5a3677e2-ce77-4c21-bffc-907436f1a620", - "siteID": 18934, - "address": "80905 Ullrich Harbors", - "latitude": 48.8086, - "longitude": -133.5742, - "lastUpdated": "2021-12-02", - "city": "Kutchfield", - "region": "Mainland/Southwest", - "victoriaFile": "26250-20/15176", + "uuid": "454c6a7c-f4df-4d11-9553-5ac557cd573e", + "siteID": 15561, + "address": "899 Hollis Canyon", + "latitude": 54.1107, + "longitude": -121.929, + "lastUpdated": "2020-04-12", + "city": "Reginaldcester", + "region": "Vancouver Island/Coast", + "victoriaFile": "26250-20/3160", "regionalFile": "N/A", "parcelIDs": [ - 4264979, - 4668749, - 3987493, - 6054423, - 5408431 + 5688057, + 3075747, + 8140081, + 1738401, + 9899884 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "5f571450-1487-4398-91d9-12551a836eb8", - "createdAt": "2014-11-20", - "completed": "2015-02-01", - "initiated": "2019-06-13", - "ministryContact": "CONN KRISTIN", + "uuid": "ff56d9be-dd8e-41e6-b39c-a1cf634e89de", + "createdAt": "2014-09-28", + "completed": "2017-08-10", + "initiated": "2021-05-29", + "ministryContact": "BRAKUS TROY", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -87198,14 +102759,20 @@ ], "notationParticipants": [ { - "uuid": "854ae8e0-8cc0-45c7-830b-288d48e27ece", + "uuid": "3e3c3c37-441f-4f8c-a407-d9d34bc26e2e", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "uuid": "c7901545-5282-4a40-9a62-a9e31fbfcf58", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true }, { - "uuid": "1a8c22be-47f2-4f9e-924c-f9669a71c03f", - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "86fca3e9-42b0-4301-a353-5889938a57e8", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false } @@ -87213,11 +102780,11 @@ "siteRegistry": false }, { - "uuid": "b78f4abe-441a-4d31-9692-69fd688daf70", - "createdAt": "2017-02-18", - "completed": "2013-12-27", - "initiated": "2016-09-04", - "ministryContact": "CHAMPLIN BERT", + "uuid": "1f2c9a5c-aec6-4d86-a635-dae9e83d723b", + "createdAt": "2015-01-26", + "completed": "2020-06-23", + "initiated": "2016-10-28", + "ministryContact": "BECHTELAR ASHLYNN", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -87226,25 +102793,53 @@ ], "notationParticipants": [ { - "uuid": "29679dfe-0567-42d1-a4e2-a78676ff5183", + "uuid": "a07b8251-4d5b-42d0-8844-97ed2e95f4e1", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false + "role": "SUBMITTED BY", + "siteRegistry": true }, { - "uuid": "d827234a-de40-46b3-8c7c-8005301a910d", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "uuid": "3c44c86b-7b99-4673-a2f6-4545336c3b9e", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": true }, { - "uuid": "680ffa26-8622-47f3-8e22-cdcb73825c6a", + "uuid": "3b5f2636-0a1d-4453-af2f-1cbc5cde3fc8", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "uuid": "a4e468c6-173c-4cdf-a14f-4fceaf6b4eda", + "createdAt": "2014-08-23", + "completed": "2022-08-10", + "initiated": "2016-11-16", + "ministryContact": "WHITE KRISTY", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "uuid": "b402c54e-b0bd-441c-b434-69a8fafeac93", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "c6d8fc4f-1d5c-45e9-bf6c-f7dca4c28178", + "uuid": "5436762c-b482-4acf-9768-66382e1ff850", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "uuid": "2d752c9b-5ae7-4f76-be44-1db441b58f30", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true @@ -87253,11 +102848,11 @@ "siteRegistry": true }, { - "uuid": "df2fb9d6-9595-4f07-b4b9-cbc54e4066fc", - "createdAt": "2016-09-13", - "completed": "2023-01-23", - "initiated": "2016-02-02", - "ministryContact": "TROMP DAKOTA", + "uuid": "f7e436e2-a203-41c5-bc06-a08b129bfd2d", + "createdAt": "2017-05-20", + "completed": "2021-12-10", + "initiated": "2014-01-06", + "ministryContact": "WILL SHYANNE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -87266,15 +102861,15 @@ ], "notationParticipants": [ { - "uuid": "cd7ade99-db1a-432f-9dfb-8e1be92a343e", - "name": "SHELL CANADA PRODUCTS", + "uuid": "9cbeeaff-2c99-42c2-bb3c-ae5c4e57de6d", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "2d687471-efa2-4ef8-9bf4-2eeb264c5cb5", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "uuid": "1f40c914-a739-49be-a917-7700a65544ce", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": false } ], @@ -87283,32 +102878,10 @@ ], "participants": [ { - "uuid": "c580da02-9df3-40ee-8c29-4f2b5e4a7202", - "name": "IPSUM", - "endDate": "2014-03-31", - "startDate": "2018-10-14", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": false - }, - { - "uuid": "c0564076-732a-4ca4-a000-80c18d1cd7cf", - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2016-06-20", - "startDate": "2021-07-30", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": false - }, - { - "uuid": "cc36e39b-9463-47e4-8794-1538ceeb7c49", - "name": "SHELL CANADA PRODUCTS", - "endDate": "2015-01-24", - "startDate": "2023-06-08", + "uuid": "ab391185-3244-40f1-90fc-419a1054f236", + "name": "AMET, DOLOR SIT", + "endDate": "2018-12-03", + "startDate": "2021-05-05", "notes": "", "roles": [ "ORGANIZATION" @@ -87316,104 +102889,170 @@ "siteRegistry": true }, { - "uuid": "c841492a-55c7-49c3-9480-1c17df9cf747", - "name": "AMET, DOLOR SIT", - "endDate": "2015-06-24", - "startDate": "2014-05-12", + "uuid": "6fbcb35f-8031-4de8-8f40-7368a263a9be", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2019-03-18", + "startDate": "2014-08-02", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "3f8d8083-97e8-4769-ab70-d40cdb08fa51", + "uuid": "418aef42-a422-40be-8d6d-c2821b957d28", "name": "SHELL CANADA PRODUCTS", - "endDate": "2022-08-18", - "startDate": "2020-01-15", + "endDate": "2023-03-09", + "startDate": "2015-07-27", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": true + "siteRegistry": false } ], - "suspectLandUses": [ + "documents": [ { - "uuid": "316cfb65-edb3-4ab4-b9dd-30c208cfc5c1", + "uuid": "10fa55cb-a6c2-49b9-ae0a-f4674b009d61", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-10-11 (described on Site Profile dated 2019-10-11)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "documentDate": "2019-04-27", + "receivedDate": "2018-05-07", + "uploadedDate": "2021-12-18", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "688567f5-7dc6-4e0b-8e96-8102e7abd7fb", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": true, + "role": "AUTHOR" + } + ] }, { - "uuid": "361c295c-f8f4-4e56-970c-9f6b177b90e6", + "uuid": "4ba84295-0225-4a2b-a9b2-1c4fc379b23b", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-06-27 (described on Site Profile dated 2016-06-27)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "documentDate": "2014-07-20", + "receivedDate": "2021-04-20", + "uploadedDate": "2014-02-27", + "title": "Summary of Site Conditions, 1537 W 41st Avenue, Vancouver", + "participants": [ + { + "uuid": "12151852-641c-4f15-af15-f992650b821b", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": false, + "role": "AUTHOR" + } + ] }, { - "uuid": "00b7f38e-c419-42ea-943c-410d0065abe9", + "uuid": "538a67ed-ca88-43c5-8e6e-9d98199cdc90", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-11-28 (described on Site Profile dated 2018-11-28)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "documentDate": "2023-09-23", + "receivedDate": "2013-11-28", + "uploadedDate": "2017-06-10", + "title": "Summary of Site Conditions, 1537 W 41st Avenue, Vancouver", + "participants": [ + { + "uuid": "5096f94a-64a5-46c6-8199-5ea11fb4d60d", + "name": "IPSUM", + "siteRegistry": true, + "role": "AUTHOR" + } + ] }, { - "uuid": "2c3c2b6b-2b60-4732-a4b3-f6f39a6231c9", + "uuid": "85995a48-51a0-446b-933e-c323142ca5cb", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-05-07 (described on Site Profile dated 2021-05-07)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "documentDate": "2017-08-07", + "receivedDate": "2023-02-03", + "uploadedDate": "2019-02-12", + "title": "Summary of Site Conditions, 1537 W 41st Avenue, Vancouver", + "participants": [ + { + "uuid": "bf69bba6-6e21-40bb-b846-3cb0dee07a9b", + "name": "IPSUM", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "39c8e7a2-f7db-4f94-8188-1649078acbcd", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": false, + "role": "AUTHOR" + } + ] } ], - "parcelDescriptions": [ + "suspectLandUses": [ { - "uuid": "a4b8eaae-ee5a-4888-9e3f-1664e231bc9f", + "uuid": "6b15f815-56bd-4a6b-b695-7a2a12d45b4f", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2021-01-26 (described on Site Profile dated 2021-01-26)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "uuid": "51cac438-04f4-45eb-affa-7aa1aa54be00", "siteRegistry": true, - "dateNoted": "2017-12-30", - "parcelID": "18160", - "crownLandUsePIN": "16971", - "crownLandFileNumber": "15642", - "landDescription": "LOT 3 OF LOT 1 BLOCK 5 DISTRICT LOT 3 PLAN 6176" + "notes": "INSERTED FOR SITE PROFILE DATED 2023-01-11 (described on Site Profile dated 2023-01-11)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "uuid": "57b5a1e0-171c-4297-b665-251657698d6d", + "uuid": "57ac2251-13a5-4b88-be35-dbc834e16e06", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2016-09-30 (described on Site Profile dated 2016-09-30)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + } + ], + "parcelDescriptions": [ + { + "uuid": "4a411c2a-9fb4-4706-ae85-c9b395aae437", "siteRegistry": true, - "dateNoted": "2022-07-08", - "parcelID": "15602", - "crownLandUsePIN": "17916", - "crownLandFileNumber": "19161", - "landDescription": "LOT 5 OF LOT 1 BLOCK 1 DISTRICT LOT 3 PLAN 8762" + "dateNoted": "2021-03-06", + "parcelID": "20068", + "crownLandUsePIN": "15850", + "crownLandFileNumber": "15903", + "landDescription": "LOT 1 OF LOT 5 BLOCK 2 DISTRICT LOT 5 PLAN 8819" }, { - "uuid": "0b5a0621-7e05-4940-9272-4073bd6a4ec2", + "uuid": "5876d7e0-2897-4325-bcb1-bd1e9cb828af", "siteRegistry": false, - "dateNoted": "2021-01-27", - "parcelID": "18248", - "crownLandUsePIN": "18567", - "crownLandFileNumber": "20356", - "landDescription": "LOT 4 OF LOT 4 BLOCK 1 DISTRICT LOT 3 PLAN 5368" + "dateNoted": "2014-06-02", + "parcelID": "16702", + "crownLandUsePIN": "20679", + "crownLandFileNumber": "15539", + "landDescription": "LOT 3 OF LOT 5 BLOCK 1 DISTRICT LOT 3 PLAN 6025" + }, + { + "uuid": "24dbaa87-fa02-4ae6-858f-e2727166b550", + "siteRegistry": true, + "dateNoted": "2016-09-27", + "parcelID": "17821", + "crownLandUsePIN": "20360", + "crownLandFileNumber": "19753", + "landDescription": "LOT 3 OF LOT 2 BLOCK 1 DISTRICT LOT 1 PLAN 2994" } ], "siteDisclosures": [ { - "uuid": "b0fc0a17-2ee9-4b93-988d-cece45a3100c", + "uuid": "e7fe9b74-0c96-4ff6-ba16-285d8ddf4076", "siteRegistry": false, - "dateReceived": "2020-03-11", - "dateCompleted": "2021-02-19", - "dateEntered": "2016-07-17", - "dateRegistrar": "2017-09-25", - "dateLocalAuthorityReceived": "2017-07-09", - "summary": "Expedita recusandae inventore praesentium.", - "informationUsed": "Modi excepturi nihil accusamus ab at ratione.\nOdio veniam magni quo.\nAlias et reprehenderit illo.\nRecusandae dolores consectetur placeat tempora perferendis.\nDignissimos aperiam aspernatur soluta.", - "pastOrPresentOrders": "Qui ipsa quidem mollitia facilis rerum fugit veritatis tempore doloremque.\nMinus quod aut consequuntur maiores sint accusantium assumenda accusantium.\nVoluptatum perspiciatis soluta mollitia quidem.", + "dateReceived": "2018-05-23", + "dateCompleted": "2019-09-23", + "dateEntered": "2014-12-25", + "dateRegistrar": "2015-09-20", + "dateLocalAuthorityReceived": "2019-03-04", + "summary": "Itaque expedita ratione quidem minima doloremque eaque suscipit accusantium totam.\nSed officia cupiditate velit minus natus voluptas.", + "informationUsed": "Magni dolore nam eos sunt incidunt excepturi minus dicta consectetur.\nEum culpa corporis sapiente amet nesciunt maxime assumenda.\nRem numquam eius facere aperiam.\nEos amet assumenda exercitationem sunt.\nAssumenda commodi atque.", + "pastOrPresentOrders": "Voluptatem enim a quibusdam eaque.", "commercialAndIndustrialPurposes": [ { - "uuid": "0347c21b-d5d8-4ef3-b4fb-3ff21cfc532b", + "uuid": "8260c4f4-c095-4d59-b8ac-b98042b9aa85", "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false }, { - "uuid": "8a910eca-0bad-4f38-8dba-a72e82f8fe90", + "uuid": "1aa82d47-1547-4775-841d-617c5d17971c", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false @@ -87423,85 +103062,122 @@ ], "activityLog": [ { - "uuid": "3f89e218-cd47-4f3a-9e89-21433db810c9", + "uuid": "6b5b9577-ac90-456d-9f10-94dbe01a9758", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "BALISTRERI MIA", - "timestamp": "2022-11-03" + "user": "DECKOW DAVIN", + "timestamp": "2019-06-30" + }, + { + "uuid": "ea3244e9-7727-453d-a452-96c5e90721df", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "GRADY AIDEN", + "timestamp": "2017-01-31" }, { - "uuid": "6486506f-7324-47b8-a56a-83f26a605ec2", + "uuid": "473dd898-a260-467a-b7ca-adf7d550bf92", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "RICE LISETTE", - "timestamp": "2014-10-26" + "user": "TOY EULALIA", + "timestamp": "2016-01-08" }, { - "uuid": "0ffe7b7a-a3da-4054-92aa-ce82d81b1a12", + "uuid": "c7f614dd-1231-40a0-91f7-34fee5188197", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "DECKOW MAURINE", - "timestamp": "2022-01-10" + "user": "MARQUARDT DILLON", + "timestamp": "2016-12-29" + }, + { + "uuid": "4ac0002b-48c0-4b05-95a1-1da539fd87bc", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "HETTINGER DOMENICK", + "timestamp": "2015-06-26" }, { - "uuid": "4727e52a-226f-4e3f-b3e2-d25f2d22e7d9", + "uuid": "ee0be0ad-cb8d-45fe-aaed-76b5d76247cb", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "MOSCISKI EDYTHE", - "timestamp": "2021-01-25" + "user": "FEENEY CORDIA", + "timestamp": "2016-04-12" }, { - "uuid": "afd1db93-aa2a-433a-97b0-174184430059", - "siteRegistry": false, + "uuid": "c172d4a2-112b-48ef-8218-0cc7c038bd76", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "PARKER SABRYNA", - "timestamp": "2021-06-25" + "user": "ABBOTT GINA", + "timestamp": "2014-07-12" }, { - "uuid": "995301c8-a957-4e31-9cb2-9f83feb7f2b6", + "uuid": "58c1efbe-4f82-4874-a7af-e414975941d0", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "HAYES TYREL", - "timestamp": "2016-05-06" + "user": "RODRIGUEZ BROCK", + "timestamp": "2014-05-14" + }, + { + "uuid": "e225c964-4af7-4d41-8da4-6ca24e10e693", + "siteRegistry": false, + "activity": "Lorem ipsum dolor sit amet", + "user": "WILKINSON EINO", + "timestamp": "2022-04-01" } ], "associatedSites": [ { - "uuid": "671b6e2c-4ccf-4039-849c-7889cf836340", - "dateNoted": "2021-06-21", + "uuid": "3c8d939f-3771-4841-9f1e-d9661e8ded72", + "dateNoted": "2021-02-23", + "notes": "", + "parcelID": "20027", + "siteID": "15998", + "siteRegistry": false + }, + { + "uuid": "a98e5a39-c872-4049-81ff-c3c42dc29bbc", + "dateNoted": "2016-11-30", + "notes": "", + "parcelID": "18237", + "siteID": "18228", + "siteRegistry": true + }, + { + "uuid": "54024c0e-b198-4098-9de3-a65a7407fe10", + "dateNoted": "2019-11-27", "notes": "", - "parcelID": "20690", - "siteID": "15396", + "parcelID": "17700", + "siteID": "16918", "siteRegistry": false } ] }, { - "uuid": "f284ecf0-e776-435b-973c-457666e3434e", - "siteID": 16415, - "address": "357 Katarina Terrace", - "latitude": 56.3341, - "longitude": -137.1725, - "lastUpdated": "2019-11-24", - "city": "Muncie", - "region": "Kootenay", - "victoriaFile": "26250-20/3815", + "uuid": "de8abf9b-6999-4264-9ecd-58f8ca7b2d14", + "siteID": 17014, + "address": "983 Zemlak Rue", + "latitude": 51.8376, + "longitude": -121.835, + "lastUpdated": "2023-03-04", + "city": "Fort Aracely", + "region": "Thompson-Okanagan", + "victoriaFile": "26250-20/8978", "regionalFile": "N/A", "parcelIDs": [ - 2412652, - 4800771, - 1181738, - 2165738, - 5635747 + 7691657, + 6017198, + 7984232, + 2695541, + 5100540 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "1fdf759f-2d14-4cf5-ad89-67717f8f83ff", - "createdAt": "2021-01-26", - "completed": "2022-10-10", - "initiated": "2020-05-28", - "ministryContact": "DURGAN HERBERT", + "uuid": "d0acc838-8c72-4780-bcbc-38c6f9fc9923", + "createdAt": "2014-06-03", + "completed": "2014-08-02", + "initiated": "2020-04-03", + "ministryContact": "HUDSON LEMUEL", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -87510,38 +103186,38 @@ ], "notationParticipants": [ { - "uuid": "f9a034f4-b519-4cbb-b83f-54e9091a9aba", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true + "uuid": "d228dce8-7e41-4ee0-a0c3-e1c2acfd7817", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false }, { - "uuid": "f7f3829d-54c8-4608-a505-391e330e802b", + "uuid": "471d1a6f-3ef9-44ec-b6ed-51d89b5769c3", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "77b508db-22ad-4952-af45-3b83f4280d3f", + "uuid": "8baeb56d-ef98-4647-bb86-c2ef75072674", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false }, { - "uuid": "e8af7eae-42bf-4dd4-b96e-963d94cc50bf", + "uuid": "66c2794a-1d6d-4d11-beaa-020545b03197", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false + "role": "REQUESTED BY", + "siteRegistry": true } ], "siteRegistry": true }, { - "uuid": "d9875d12-e362-49d7-9dcc-18d0bad01b8e", - "createdAt": "2014-01-28", - "completed": "2023-05-26", - "initiated": "2018-06-08", - "ministryContact": "PAUCEK JALEEL", + "uuid": "cfdd3d78-1a30-4b4b-946b-de0dd023fbae", + "createdAt": "2017-05-30", + "completed": "2022-02-09", + "initiated": "2023-03-12", + "ministryContact": "CONROY BENTON", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -87550,22 +103226,96 @@ ], "notationParticipants": [ { - "uuid": "6efce08e-877e-4449-a8a4-8795abd63aa3", + "uuid": "7932dc11-2ab7-455e-a293-5c9bb7fe48e9", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "38589ea2-2d5e-499f-9286-2381f9e46b98", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "uuid": "94de2bb9-0fb1-4998-9671-52c7b2f19110", + "createdAt": "2018-06-17", + "completed": "2015-07-03", + "initiated": "2016-11-28", + "ministryContact": "HEATHCOTE ELYSE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "uuid": "35bf0421-4327-4c9e-9245-22fb8168e96a", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true }, { - "uuid": "da6334a4-f67d-45cd-907f-18e9b728e687", + "uuid": "2187b6b4-6222-48d1-9e92-6fa7c8918a7d", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "5a9a2e06-51b4-4b52-ab5d-81bb623fc9b0", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "uuid": "35b7dfb7-7865-4a5c-8fc9-7236130d95d8", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "cf576b5e-f80d-4516-a9e2-6ac5db53193c", + "uuid": "10f44461-8cf7-4ea3-94d4-55c20ba51e39", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "uuid": "a44ff17e-f530-492a-bb9f-9814040bf747", + "createdAt": "2015-08-19", + "completed": "2015-06-01", + "initiated": "2013-11-06", + "ministryContact": "DIBBERT NATHEN", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "uuid": "67d39477-8912-4fd3-b9f0-398618c37480", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "uuid": "ddae0c1b-e8e0-4497-8d30-2a350b2c6326", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": true + }, + { + "uuid": "abe84019-8c2d-4fca-969c-d0d4989ba0c3", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false } ], "siteRegistry": true @@ -87573,21 +103323,10 @@ ], "participants": [ { - "uuid": "bfac22e8-5aed-47c0-b899-3764e2df4b32", + "uuid": "a5cc4d73-ad9d-460e-ad5c-962003f723a8", "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2021-09-20", - "startDate": "2018-05-31", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": false - }, - { - "uuid": "fbfaed71-9d0d-48d9-9f58-97032c09ca90", - "name": "SHELL CANADA PRODUCTS", - "endDate": "2023-07-22", - "startDate": "2020-09-08", + "endDate": "2019-05-13", + "startDate": "2016-07-08", "notes": "", "roles": [ "EMPLOYEE" @@ -87595,139 +103334,172 @@ "siteRegistry": true }, { - "uuid": "2e30b534-17e9-4f89-bd6e-f8d7bfa8829a", + "uuid": "b077ea9b-4c25-423a-a8bf-33d8d3b9eda0", "name": "IPSUM", - "endDate": "2017-06-13", - "startDate": "2020-08-18", + "endDate": "2019-05-08", + "startDate": "2021-12-19", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": true + } + ], + "documents": [ + { + "uuid": "188ad23b-b1d2-4973-97c0-024b9e6cd9be", + "siteRegistry": true, + "documentDate": "2021-12-02", + "receivedDate": "2017-04-03", + "uploadedDate": "2017-01-27", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "7aef8272-c1bd-40d4-9295-7834ba96273e", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "a3ea5917-3139-404f-bf3a-4c1565b0b082", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "617207db-a917-4d93-a985-f16ff84cb231", + "name": "AMET, DOLOR SIT", + "siteRegistry": true, + "role": "AUTHOR" + } + ] }, { - "uuid": "d277874f-8191-45f8-9e03-1b4b0e5ace1e", - "name": "AMET, DOLOR SIT", - "endDate": "2014-08-24", - "startDate": "2019-06-04", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": true + "uuid": "11edbbba-ecd5-405d-b2cc-514b040348e5", + "siteRegistry": false, + "documentDate": "2020-12-26", + "receivedDate": "2015-12-25", + "uploadedDate": "2016-11-04", + "title": "Preliminary Site Investigation, Detailed Site Investigation and Remedial Plan for the Management Area adjacent to the Shell Site at 1503 West 41st Ave", + "participants": [ + { + "uuid": "392f2718-a902-4110-9ef7-bc4605f9b2e6", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "2b48c393-7642-4abb-bcc4-8b4165dc0e16", + "name": "AMET, DOLOR SIT", + "siteRegistry": true, + "role": "AUTHOR" + } + ] } ], "suspectLandUses": [ { - "uuid": "76b6a9a1-e276-4cb6-98f6-4015badfd972", + "uuid": "cf7a06a3-df18-4638-b48a-33b8da9ebc01", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-09-03 (described on Site Profile dated 2019-09-03)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "notes": "INSERTED FOR SITE PROFILE DATED 2023-09-22 (described on Site Profile dated 2023-09-22)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "uuid": "d960efd5-e821-41ca-9b64-dac40b4fd30e", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2019-02-22 (described on Site Profile dated 2019-02-22)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "uuid": "ecd03bf1-ee69-4a20-9ee7-2eb49e875261", + "uuid": "7b1d5919-bc09-4995-b1c3-5c720e9d3040", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-11-24 (described on Site Profile dated 2015-11-24)", + "notes": "INSERTED FOR SITE PROFILE DATED 2018-08-04 (described on Site Profile dated 2018-08-04)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "uuid": "bbf33013-f180-4aca-9e26-f9cde2dd0a73", + "uuid": "fa5ae796-3ff6-4cee-b77c-272e7773554f", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-06-16 (described on Site Profile dated 2014-06-16)", + "notes": "INSERTED FOR SITE PROFILE DATED 2016-10-24 (described on Site Profile dated 2016-10-24)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "uuid": "2f59f427-a3f0-4258-9b58-65bc448c1a59", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2022-12-26 (described on Site Profile dated 2022-12-26)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], "parcelDescriptions": [ { - "uuid": "27343409-74b2-46fa-bc51-7febe18e5343", + "uuid": "628f8ec0-3a38-45d2-ba97-79447c739e78", "siteRegistry": false, - "dateNoted": "2021-03-07", - "parcelID": "16181", - "crownLandUsePIN": "19885", - "crownLandFileNumber": "16261", - "landDescription": "LOT 5 OF LOT 4 BLOCK 4 DISTRICT LOT 3 PLAN 6710" + "dateNoted": "2016-01-30", + "parcelID": "18040", + "crownLandUsePIN": "18628", + "crownLandFileNumber": "17139", + "landDescription": "LOT 5 OF LOT 2 BLOCK 3 DISTRICT LOT 1 PLAN 8091" }, { - "uuid": "54875e95-f8b5-4a0b-9f05-1c5c75290cea", - "siteRegistry": false, - "dateNoted": "2022-03-02", - "parcelID": "20074", - "crownLandUsePIN": "19947", - "crownLandFileNumber": "15742", - "landDescription": "LOT 2 OF LOT 5 BLOCK 4 DISTRICT LOT 2 PLAN 6041" + "uuid": "28962699-2afe-454e-a8a2-35724182c7f0", + "siteRegistry": true, + "dateNoted": "2018-01-08", + "parcelID": "16094", + "crownLandUsePIN": "18865", + "crownLandFileNumber": "19649", + "landDescription": "LOT 5 OF LOT 2 BLOCK 3 DISTRICT LOT 2 PLAN 7683" }, { - "uuid": "b4e4f792-69a9-491c-8d75-bdb008a75a56", - "siteRegistry": false, - "dateNoted": "2016-08-17", - "parcelID": "20409", - "crownLandUsePIN": "17213", - "crownLandFileNumber": "16350", - "landDescription": "LOT 4 OF LOT 5 BLOCK 5 DISTRICT LOT 4 PLAN 6932" + "uuid": "6cde5770-e1ca-4b42-a6ed-bc068ea9d4fd", + "siteRegistry": true, + "dateNoted": "2019-10-16", + "parcelID": "15783", + "crownLandUsePIN": "20501", + "crownLandFileNumber": "15811", + "landDescription": "LOT 1 OF LOT 3 BLOCK 3 DISTRICT LOT 4 PLAN 3705" }, { - "uuid": "2344642d-181a-4627-885d-acf5c6b52a90", - "siteRegistry": true, - "dateNoted": "2016-07-07", - "parcelID": "19277", - "crownLandUsePIN": "19292", - "crownLandFileNumber": "16864", - "landDescription": "LOT 4 OF LOT 2 BLOCK 3 DISTRICT LOT 3 PLAN 4443" + "uuid": "325b3621-74c5-49e4-82de-b9c7545ee5a5", + "siteRegistry": false, + "dateNoted": "2017-08-13", + "parcelID": "20682", + "crownLandUsePIN": "15823", + "crownLandFileNumber": "17539", + "landDescription": "LOT 5 OF LOT 3 BLOCK 1 DISTRICT LOT 4 PLAN 8304" } ], "siteDisclosures": [ { - "uuid": "3fe88c81-4cc8-4e7c-b818-b98bcc366583", + "uuid": "20590034-c76e-4bae-8beb-6e9436b498c8", "siteRegistry": true, - "dateReceived": "2023-01-09", - "dateCompleted": "2020-12-23", - "dateEntered": "2019-05-09", - "dateRegistrar": "2023-03-10", - "dateLocalAuthorityReceived": "2018-01-18", - "summary": "Omnis molestiae nobis.", - "informationUsed": "Consequatur autem fuga voluptatum quia ipsum necessitatibus ex non velit.\nMaxime ullam consequatur eos similique aperiam alias mollitia.\nSunt nam deleniti aspernatur qui iusto rerum.\nMagni eos quae optio.\nMinima magnam ipsum tempore voluptates eligendi ea.", - "pastOrPresentOrders": "Tempore perferendis optio porro at repellendus atque veniam fugiat consequuntur.\nOfficiis ipsam hic.", + "dateReceived": "2016-07-22", + "dateCompleted": "2016-10-04", + "dateEntered": "2018-09-10", + "dateRegistrar": "2015-07-05", + "dateLocalAuthorityReceived": "2023-02-16", + "summary": "Occaecati dolores eos doloremque reiciendis blanditiis ex amet consequatur non.", + "informationUsed": "Atque et mollitia natus voluptas consectetur corporis sint.\nAt consectetur aut earum eius.\nMaiores praesentium eius quae repellat voluptas ullam.\nQuidem aspernatur nobis quasi sed facilis.\nUnde ea aliquam ipsum.", + "pastOrPresentOrders": "Exercitationem modi occaecati.", "commercialAndIndustrialPurposes": [ { - "uuid": "bce0f3a2-49c7-4a16-a74d-b2d1cf6b77ef", - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "uuid": "635ec278-22a3-41d6-8603-58d09f580151", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { - "uuid": "fe474567-8bad-4352-9888-14c22505c28e", + "uuid": "23514ac5-7e84-4550-b2ab-39404231763f", "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false - } - ] - }, - { - "uuid": "ade76b11-2af1-4376-936b-f72839c80e80", - "siteRegistry": true, - "dateReceived": "2018-11-16", - "dateCompleted": "2013-12-11", - "dateEntered": "2018-08-02", - "dateRegistrar": "2015-05-10", - "dateLocalAuthorityReceived": "2018-08-15", - "summary": "Cupiditate quidem nemo.\nDolorum optio exercitationem eos impedit repudiandae provident non cupiditate.", - "informationUsed": "Totam iure dolores quod sapiente quo odit tempora eligendi.\nSunt ipsam impedit quidem odio.\nVoluptatum aut enim deserunt pariatur corporis repellendus.\nExpedita totam praesentium rem adipisci id.\nNostrum placeat illum.", - "pastOrPresentOrders": "Nihil quisquam esse corporis.", - "commercialAndIndustrialPurposes": [ + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, { - "uuid": "33cb261f-56ca-4660-a612-511aac1a4939", + "uuid": "f4ca1bf2-c8ec-4021-a0b8-7cebbd273199", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, { - "uuid": "7ad2846b-98c9-4e5f-a081-fa34ba1270df", - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false - }, - { - "uuid": "f4359e2c-cd6d-45a9-a5fb-652a6e431cb9", + "uuid": "ee4510b5-4467-4129-bc2a-2e1b68da0384", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true @@ -87737,114 +103509,129 @@ ], "activityLog": [ { - "uuid": "e24c5780-4617-49ca-99f2-f5cf7d143790", - "siteRegistry": false, + "uuid": "e3f4fcbc-6592-4280-8a15-69208f476871", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "DANIEL MAGDALEN", - "timestamp": "2017-09-13" + "user": "LANG ZARIA", + "timestamp": "2017-06-12" }, { - "uuid": "93637352-5ad3-418a-81fe-d2c7d13b5fa3", - "siteRegistry": true, + "uuid": "73ef9e16-f997-4447-9d74-3fbf26adf8ce", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "ZEMLAK PRUDENCE", - "timestamp": "2018-03-22" + "user": "KERLUKE SUMMER", + "timestamp": "2016-03-25" }, { - "uuid": "1f502283-043f-427b-9880-6830b677206c", + "uuid": "2d214861-c063-4f51-b82d-b66aea33bea2", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "SCHOEN SOFIA", - "timestamp": "2015-04-28" + "user": "KOVACEK JOHNSON", + "timestamp": "2013-10-26" }, { - "uuid": "0e2bd15d-dfc4-4edd-be5a-200f9fd8f81c", + "uuid": "38e1f2de-14cd-49a7-915a-726fda4091ce", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "CONROY DAPHNEY", - "timestamp": "2017-05-28" + "user": "RUNTE MYRTLE", + "timestamp": "2015-05-07" }, { - "uuid": "708afc3c-4bf4-4561-a900-8b5e2ffbdfaa", + "uuid": "45df5471-db6d-48e1-a243-e47f1b2a8b8e", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "MEDHURST ALIVIA", - "timestamp": "2022-12-15" + "user": "TOWNE FANNY", + "timestamp": "2015-05-09" + }, + { + "uuid": "6acfb144-fef3-4a61-94d4-2d3dc74377e2", + "siteRegistry": true, + "activity": "Lorem ipsum dolor sit amet", + "user": "YUNDT HELOISE", + "timestamp": "2019-07-14" }, { - "uuid": "3a781b67-16d1-436e-81e9-d7a41f1fdf68", + "uuid": "c6eea88b-69ff-4a11-af2c-a461ecddc5d1", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "BOTSFORD CIARA", - "timestamp": "2017-11-15" + "user": "MOORE ALESSANDRO", + "timestamp": "2023-09-09" }, { - "uuid": "73843769-2d65-4adf-95cb-7de7cde05798", + "uuid": "46e5572a-0ae5-47a9-a0b9-d6f7dfb28281", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "SMITH LILYAN", - "timestamp": "2017-12-19" + "user": "RUTHERFORD HORACIO", + "timestamp": "2019-04-22" }, { - "uuid": "44944dd1-590e-44f4-8a78-60d44ae818f9", + "uuid": "a8e6a373-6706-49f6-a970-c3e14949495c", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "LUEILWITZ SYDNEY", - "timestamp": "2016-10-22" + "user": "GOODWIN MALLIE", + "timestamp": "2017-02-05" }, { - "uuid": "f60edd76-befd-4c1c-8690-af15e6060ab7", - "siteRegistry": false, + "uuid": "0de9c626-83ec-4334-8a15-e4cce8ec5362", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "HICKLE LEXI", - "timestamp": "2016-06-16" + "user": "BAILEY VICKIE", + "timestamp": "2018-06-26" } ], "associatedSites": [ { - "uuid": "e02cc36e-c798-4425-8891-ba09a0153fda", - "dateNoted": "2018-06-08", + "uuid": "7956c08b-75b0-474a-add6-bf102829bce3", + "dateNoted": "2022-09-29", "notes": "", - "parcelID": "16192", - "siteID": "17913", + "parcelID": "18090", + "siteID": "18063", "siteRegistry": false }, { - "uuid": "912af51c-5ddc-4539-afd4-0d1b2685548c", - "dateNoted": "2021-08-15", + "uuid": "d5c53e45-da1b-4bfc-8e25-64dfe5304b14", + "dateNoted": "2015-07-16", + "notes": "", + "parcelID": "19523", + "siteID": "18132", + "siteRegistry": false + }, + { + "uuid": "04dd5cc6-4728-4efd-a646-6538d2fde1b0", + "dateNoted": "2016-05-07", "notes": "", - "parcelID": "20876", - "siteID": "16651", + "parcelID": "17118", + "siteID": "16253", "siteRegistry": true } ] }, { - "uuid": "68a8e5f6-37a5-49a6-9c26-5f8721841f88", - "siteID": 17251, - "address": "6038 Katlyn Fields", - "latitude": 51.1869, - "longitude": -130.1487, - "lastUpdated": "2019-07-02", - "city": "New Carlos", - "region": "Cariboo", - "victoriaFile": "26250-20/10344", + "uuid": "e7dad106-123b-437a-8b34-5807fa186608", + "siteID": 15579, + "address": "76769 Nolan Brooks", + "latitude": 57.2851, + "longitude": -125.0947, + "lastUpdated": "2014-07-23", + "city": "Lake Angelfort", + "region": "Mainland/Southwest", + "victoriaFile": "26250-20/10652", "regionalFile": "N/A", "parcelIDs": [ - 7820382, - 8501495, - 7301117, - 5877183, - 6158672 + 8690509, + 9688563, + 8735857, + 7948777, + 5097355 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "ecdaca8d-8d39-405e-abc3-654d2d70218c", - "createdAt": "2019-11-14", - "completed": "2015-03-02", - "initiated": "2014-02-17", - "ministryContact": "BLANDA JEFF", + "uuid": "12f6f2e2-449a-455c-ac4f-6017a1dec5f6", + "createdAt": "2020-02-05", + "completed": "2020-11-24", + "initiated": "2014-01-14", + "ministryContact": "FUNK KELLY", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -87853,26 +103640,26 @@ ], "notationParticipants": [ { - "uuid": "67fab5e2-b93a-4023-a3fb-614c55795ba1", + "uuid": "c5e39535-d888-42ce-99ac-54d92c0ae291", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "218b463c-90f9-4043-a17b-42567d7c7671", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "uuid": "3b2cc8bf-30b3-4dbd-99be-51a8e7dd5b9f", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": false } ], "siteRegistry": false }, { - "uuid": "bbf9972d-01fa-487e-a3f3-298073f5325f", - "createdAt": "2014-12-20", - "completed": "2021-12-21", - "initiated": "2016-03-09", - "ministryContact": "BERGNAUM-GLEICHNER JOSIANNE", + "uuid": "953fbe8f-c77d-4f12-a310-71d6353841dd", + "createdAt": "2014-12-04", + "completed": "2021-08-26", + "initiated": "2016-05-28", + "ministryContact": "DECKOW DIMITRI", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -87881,56 +103668,96 @@ ], "notationParticipants": [ { - "uuid": "126e8802-9294-4e55-9202-0446564bb10b", + "uuid": "4fa50cd8-3805-43a5-8314-812b06e172cb", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "9354968d-1f27-45d8-92e9-3717325790a5", + "uuid": "4d1ed786-6a30-4248-a06b-46e2d1b277ce", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "uuid": "ccd4494f-669f-410d-b49e-2733b72c4b58", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": true }, { - "uuid": "e3cd9872-7967-45c9-8810-52cdbb636171", + "uuid": "d1316cec-8e12-4b9a-aa9e-ae8a490c4a67", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": true + }, + { + "uuid": "8ddfbc78-26a2-493d-b160-0340b23a44f3", + "createdAt": "2015-02-10", + "completed": "2014-07-10", + "initiated": "2016-12-28", + "ministryContact": "TURCOTTE PENELOPE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "uuid": "68e8a088-e2a8-48e1-b3c9-46636ce39826", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "39e47a66-d66d-4b1d-a001-28e484a2bc1a", + "uuid": "1144e997-c896-4e41-86bc-ea5d229b3e33", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true + "role": "SUBMITTED BY", + "siteRegistry": false }, { - "uuid": "a49647a6-c9da-4aea-9518-4e81ae95ea51", + "uuid": "f590dfeb-c832-4f32-ad6c-53d9e4b4771a", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "uuid": "fe5657fa-7c99-4e46-bc49-feb76f06657e", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": false + }, + { + "uuid": "fe920ba2-043c-4ebe-a250-56800145335d", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false } ], "participants": [ { - "uuid": "ef7c83e6-937a-4156-819f-72fd3399b248", - "name": "SHELL CANADA PRODUCTS", - "endDate": "2017-03-09", - "startDate": "2019-02-16", + "uuid": "72d7d0a3-d435-4b0f-a3bd-52b1609f470c", + "name": "IPSUM", + "endDate": "2014-09-28", + "startDate": "2013-11-10", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "86c6154c-8dac-42cb-b092-4249b075b021", + "uuid": "72e73ce7-d753-4e71-b8d9-735a2845a03d", "name": "AMET, DOLOR SIT", - "endDate": "2019-03-12", - "startDate": "2023-04-29", + "endDate": "2016-02-23", + "startDate": "2013-12-22", "notes": "", "roles": [ "EMPLOYEE" @@ -87938,246 +103765,254 @@ "siteRegistry": true }, { - "uuid": "961d915f-31fe-4244-b77b-731d3537e823", - "name": "IPSUM", - "endDate": "2015-05-03", - "startDate": "2015-09-17", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": true - }, - { - "uuid": "a95e805b-207f-4f4f-b70f-3934233d7781", + "uuid": "a51f33b6-325d-48ce-9c70-3c95f4893a78", "name": "SHELL CANADA PRODUCTS", - "endDate": "2018-08-15", - "startDate": "2015-01-22", + "endDate": "2022-02-01", + "startDate": "2015-08-05", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": false } ], + "documents": [ + { + "uuid": "50da5fe9-1b6e-4682-8871-6f644b1f628b", + "siteRegistry": false, + "documentDate": "2017-08-13", + "receivedDate": "2019-08-02", + "uploadedDate": "2021-03-28", + "title": "Summary of Site Conditions, 1537 W 41st Avenue, Vancouver", + "participants": [ + { + "uuid": "fc59e949-7d73-4783-9192-f53ac8434e5c", + "name": "AMET, DOLOR SIT", + "siteRegistry": false, + "role": "AUTHOR" + } + ] + } + ], "suspectLandUses": [ { - "uuid": "1f633683-8646-4424-ad2c-b95e4429a9e0", - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-01-07 (described on Site Profile dated 2022-01-07)", + "uuid": "ac282ce2-20cd-4720-9b3f-721d913ed85a", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2013-11-15 (described on Site Profile dated 2013-11-15)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "uuid": "b9cbc92f-e52f-4734-99ef-edeb0c2f9ab7", + "uuid": "56117094-b94d-453a-a6e1-68be5c646cd9", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2015-05-04 (described on Site Profile dated 2015-05-04)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "uuid": "7a661358-6be9-4086-a4a3-d25f22a7b889", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2020-09-28 (described on Site Profile dated 2020-09-28)", + "notes": "INSERTED FOR SITE PROFILE DATED 2016-11-08 (described on Site Profile dated 2016-11-08)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "uuid": "204aac6a-ba3d-4fd2-822f-93d6473fc82b", + "uuid": "732c5d45-3893-42d8-86e0-87b6d7a415f5", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-06-18 (described on Site Profile dated 2021-06-18)", + "notes": "INSERTED FOR SITE PROFILE DATED 2018-09-20 (described on Site Profile dated 2018-09-20)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], "parcelDescriptions": [ { - "uuid": "7b031aa3-69eb-43bd-8721-b4475544ab06", + "uuid": "3d5967c8-9875-403c-a348-e50e60150a4a", "siteRegistry": false, - "dateNoted": "2022-04-16", - "parcelID": "15649", - "crownLandUsePIN": "18315", - "crownLandFileNumber": "15640", - "landDescription": "LOT 4 OF LOT 5 BLOCK 3 DISTRICT LOT 1 PLAN 5266" + "dateNoted": "2019-11-24", + "parcelID": "18115", + "crownLandUsePIN": "15804", + "crownLandFileNumber": "17407", + "landDescription": "LOT 3 OF LOT 1 BLOCK 5 DISTRICT LOT 3 PLAN 8328" }, { - "uuid": "a19e2294-690a-4b0d-97b1-42185d26b124", + "uuid": "1e28bf32-ba0e-4543-9303-98942a08e5ba", "siteRegistry": false, - "dateNoted": "2020-04-11", - "parcelID": "18844", - "crownLandUsePIN": "18527", - "crownLandFileNumber": "16679", - "landDescription": "LOT 4 OF LOT 4 BLOCK 1 DISTRICT LOT 4 PLAN 5570" + "dateNoted": "2018-05-10", + "parcelID": "19480", + "crownLandUsePIN": "19187", + "crownLandFileNumber": "20406", + "landDescription": "LOT 5 OF LOT 2 BLOCK 5 DISTRICT LOT 1 PLAN 3675" }, { - "uuid": "7c87e69d-b90f-4c3b-8c5e-b4cd532da46f", - "siteRegistry": true, - "dateNoted": "2014-01-08", - "parcelID": "20151", - "crownLandUsePIN": "16875", - "crownLandFileNumber": "18685", - "landDescription": "LOT 3 OF LOT 5 BLOCK 4 DISTRICT LOT 5 PLAN 5275" + "uuid": "0b3977a2-00a6-424d-8f3c-ac3990be7f45", + "siteRegistry": false, + "dateNoted": "2020-03-29", + "parcelID": "19559", + "crownLandUsePIN": "17496", + "crownLandFileNumber": "20930", + "landDescription": "LOT 3 OF LOT 5 BLOCK 5 DISTRICT LOT 2 PLAN 8687" } ], "siteDisclosures": [ { - "uuid": "ac5d8454-67a1-45ee-a790-cb8e6b7eb0fa", - "siteRegistry": false, - "dateReceived": "2015-12-19", - "dateCompleted": "2015-11-20", - "dateEntered": "2020-01-30", - "dateRegistrar": "2021-05-13", - "dateLocalAuthorityReceived": "2014-08-26", - "summary": "Consequuntur quam reiciendis.", - "informationUsed": "Molestias non vel quia laudantium cum et.\nNisi nam aspernatur.\nSimilique optio deserunt deserunt maiores sapiente harum similique.\nPerferendis repellat quidem dolorem porro fugiat fuga illo.\nEnim aperiam quia.", - "pastOrPresentOrders": "Voluptas dolor excepturi modi incidunt assumenda a.", + "uuid": "e96292ff-e983-46be-ab59-5133e18fccca", + "siteRegistry": true, + "dateReceived": "2019-04-10", + "dateCompleted": "2014-04-22", + "dateEntered": "2015-03-13", + "dateRegistrar": "2021-04-06", + "dateLocalAuthorityReceived": "2016-11-16", + "summary": "Aliquam veniam explicabo esse possimus fuga quas totam qui quaerat.\nDolore at dignissimos.\nSit deserunt odit optio sapiente.", + "informationUsed": "Aut deleniti sed ducimus.\nHic nemo eum deleniti.\nRatione quis asperiores odio quia accusantium voluptas mollitia saepe amet.\nQuod amet libero excepturi adipisci.", + "pastOrPresentOrders": "Soluta doloremque animi earum facilis fugiat.\nQuisquam quo maiores.\nDeserunt quaerat praesentium aperiam.", "commercialAndIndustrialPurposes": [ { - "uuid": "0db034f8-8004-4b67-851e-89cc0d0cff60", - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false - }, - { - "uuid": "d3a53cd3-bfb8-4a10-8deb-9425ddd9fed3", - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false - }, - { - "uuid": "f7ba1cd7-bff9-4135-9163-37236b8be3c2", + "uuid": "6758cc80-b6f6-4e7a-8b37-a23c64e45185", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { - "uuid": "c393a886-110c-4632-aed5-ad5f1497a7bd", - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true + "uuid": "42e3957a-d551-49c6-945a-0d2dc1abafc7", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false } ] }, { - "uuid": "62f59d39-406d-4b02-afb8-409a95878616", - "siteRegistry": false, - "dateReceived": "2023-01-23", - "dateCompleted": "2015-07-07", - "dateEntered": "2021-12-14", - "dateRegistrar": "2022-03-22", - "dateLocalAuthorityReceived": "2015-09-08", - "summary": "Natus soluta maxime.\nAb aliquid nostrum quibusdam blanditiis ex excepturi asperiores magnam fugiat.\nEius ipsa commodi pariatur.", - "informationUsed": "Assumenda non necessitatibus magnam labore blanditiis pariatur dolorem.\nRepellat corporis pariatur porro assumenda provident velit distinctio error.\nQuibusdam nihil dolorum molestias culpa delectus temporibus magnam quae quae.\nAccusamus ex dolore vero quod a aliquid veniam.\nVoluptas magni doloremque voluptatibus debitis.", - "pastOrPresentOrders": "Minus reiciendis sapiente non eum aspernatur.\nEveniet debitis explicabo molestiae et.\nDolores aperiam minima esse corporis aperiam.", + "uuid": "0ddecc13-ee09-47f9-ae85-cc2a662a625a", + "siteRegistry": true, + "dateReceived": "2015-02-14", + "dateCompleted": "2021-04-22", + "dateEntered": "2018-10-09", + "dateRegistrar": "2015-11-01", + "dateLocalAuthorityReceived": "2023-10-11", + "summary": "Corporis veniam sit atque soluta eius fugit aspernatur exercitationem similique.", + "informationUsed": "Inventore harum dicta repudiandae in debitis a ea qui ea.\nSapiente eaque dolor a quos saepe aliquam minima.\nMaxime ipsa a modi blanditiis tempora tempora voluptatem.\nVitae consectetur qui cumque eveniet adipisci aliquid delectus architecto quis.\nIpsum magnam itaque esse sed.", + "pastOrPresentOrders": "Animi alias cumque excepturi quo.\nAliquam ipsum facilis corrupti iusto repellat maiores dolor in debitis.\nAccusamus reiciendis ipsum laboriosam necessitatibus inventore perspiciatis ratione.", "commercialAndIndustrialPurposes": [ { - "uuid": "e55a940e-0c48-4105-a547-e3bbf324e45c", + "uuid": "84e96eee-0083-4cdb-83b7-83098339f704", "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, { - "uuid": "450b04e4-5eb8-4b01-b148-83f9b5f0b7c7", + "uuid": "8b27d3d3-7d15-4b2d-aebf-b332fc8269d4", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false + "siteRegistry": true + }, + { + "uuid": "5347d1da-1299-4c0a-aab6-ae8fb38b91da", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true } ] } ], "activityLog": [ { - "uuid": "f288cc1c-ef55-4462-a458-b14fd9cfe696", + "uuid": "02371878-6195-4399-8c8e-e624397a8bd7", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "GRAHAM REMINGTON", - "timestamp": "2019-03-21" + "user": "OLSON FELIPE", + "timestamp": "2021-09-16" }, { - "uuid": "dcda9b6f-f48d-4548-9f49-35d40156b3cc", + "uuid": "dcf4db09-64f5-46de-b50a-61fdf6010e80", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "VANDERVORT WINIFRED", - "timestamp": "2020-07-19" - }, - { - "uuid": "38c72f47-7069-4b40-9eab-4cafa7c2a840", - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "ONDRICKA QUEENIE", - "timestamp": "2022-12-10" + "user": "LARSON SIMONE", + "timestamp": "2018-01-12" }, { - "uuid": "806e75a1-7974-482d-99c0-b13630079154", + "uuid": "28672ada-02e2-4c1b-b13d-067cfbdd0269", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "FRANECKI BRADY", - "timestamp": "2015-05-11" + "user": "LEDNER ELLIOT", + "timestamp": "2020-06-25" }, { - "uuid": "bbe9cdd3-fbbf-4a72-98b8-f2e51bba05d1", + "uuid": "ad84e446-5164-4ce2-8659-4ea85fae07ab", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "BEATTY JAROD", - "timestamp": "2018-10-13" + "user": "TOY DEION", + "timestamp": "2016-09-12" }, { - "uuid": "43692be5-cce9-40a1-8d30-702f56cea0e7", + "uuid": "fb162b1d-b30a-40de-a3dc-f4033cb94a9a", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "FADEL-SCHILLER BROWN", - "timestamp": "2015-07-28" + "user": "KUNZE CLEMENTINA", + "timestamp": "2017-08-01" }, { - "uuid": "0b2836ac-a127-4a7c-a0ea-49ddb771d96e", + "uuid": "68c9f75c-7b74-403b-b334-fd7dfbd453e1", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "KLING DIAMOND", - "timestamp": "2019-06-23" + "user": "COLLINS ELEAZAR", + "timestamp": "2014-03-01" }, { - "uuid": "eaee69e9-0ee9-4719-b5dd-c413b6968fcf", + "uuid": "66222e36-d600-4979-a81b-2c5f7ab6f350", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "KOZEY KARA", - "timestamp": "2017-10-21" + "user": "LUETTGEN MIREILLE", + "timestamp": "2014-02-18" } ], "associatedSites": [ { - "uuid": "b08dbcaa-c5fb-4887-b501-2fa025ad3116", - "dateNoted": "2021-05-05", + "uuid": "5625f497-eed4-4956-bf98-e06e455e3526", + "dateNoted": "2019-08-05", "notes": "", - "parcelID": "20038", - "siteID": "20203", + "parcelID": "17508", + "siteID": "18981", "siteRegistry": true }, { - "uuid": "13192faa-f0a6-4b01-abba-bed7f266ff42", - "dateNoted": "2018-07-24", + "uuid": "32c7b05d-4053-4d03-8eb1-4d5970e03095", + "dateNoted": "2014-07-23", "notes": "", - "parcelID": "20606", - "siteID": "17172", + "parcelID": "19990", + "siteID": "20786", "siteRegistry": true + }, + { + "uuid": "fb2d81bf-33c5-4142-9300-5858648e3aac", + "dateNoted": "2020-08-14", + "notes": "", + "parcelID": "16079", + "siteID": "18588", + "siteRegistry": false } ] }, { - "uuid": "a33c8fb0-ab3b-402b-940b-d010c9506294", - "siteID": 16804, - "address": "2082 Homenick Landing", - "latitude": 54.7225, - "longitude": -138.1798, - "lastUpdated": "2020-05-30", - "city": "Lake Marjolaine", - "region": "Mainland/Southwest", - "victoriaFile": "26250-20/7020", + "uuid": "ad19cb81-db50-42c0-862c-6ad7189214ea", + "siteID": 20978, + "address": "7884 Hills Road", + "latitude": 56.9596, + "longitude": -119.5746, + "lastUpdated": "2017-01-08", + "city": "Orlando", + "region": " North Coast", + "victoriaFile": "26250-20/19734", "regionalFile": "N/A", "parcelIDs": [ - 3535352, - 965513, - 1527674, - 2550971, - 383651 + 3988735, + 202725, + 6929792, + 1466469, + 5517515 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "28c36900-e515-4f92-a13f-2521226d9b08", - "createdAt": "2019-04-05", - "completed": "2016-07-15", - "initiated": "2019-02-18", - "ministryContact": "KIRLIN ENID", + "uuid": "2628abf5-4fea-489d-b7cb-df64d0a17ae0", + "createdAt": "2020-07-30", + "completed": "2014-07-15", + "initiated": "2020-01-03", + "ministryContact": "QUIGLEY BRYCEN", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -88186,26 +104021,44 @@ ], "notationParticipants": [ { - "uuid": "c8ccedb8-9ee6-455b-96e1-74821e8aa96b", + "uuid": "3d4f2ac2-71ed-4b25-8458-dad7b2a1d505", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "24b8f7a4-8867-426f-9d13-6d5ee8fb4bfa", "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "6d75ee56-1628-47a6-a671-85e4b543cc8a", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "01090b95-cc49-4117-8dc8-786120e71c02", - "name": "SHELL CANADA PRODUCTS", + "uuid": "0b1b34d9-4cbf-4e34-91b7-7a0b04879782", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "1b6fe8c8-4a11-4614-a4d3-46a209841698", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": true } ], "siteRegistry": false }, { - "uuid": "6962b272-b979-4247-8ac8-f0123c80e2aa", - "createdAt": "2014-06-29", - "completed": "2017-12-20", - "initiated": "2016-08-28", - "ministryContact": "RUNOLFSDOTTIR RUPERT", + "uuid": "9a252f4e-af01-4dc6-a945-efd4f9ea66c5", + "createdAt": "2020-04-08", + "completed": "2021-08-23", + "initiated": "2017-03-02", + "ministryContact": "THOMPSON LEOPOLDO", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -88214,44 +104067,32 @@ ], "notationParticipants": [ { - "uuid": "3cc79341-17dc-42aa-953a-9abb04c7f274", + "uuid": "1b3bebba-c378-4a27-93bb-0afa282b60d9", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "uuid": "bd3a43aa-0f7f-4c7f-a4b3-59d2f945bec6", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false }, { - "uuid": "905d3894-aecd-4e07-8920-2c0fedbb008c", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "uuid": "a9dd6381-1928-4a62-98f9-d2deb54bcea2", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "uuid": "319e56b9-17e8-4e33-9047-1229214fd413", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "eac1228d-9e70-4e4d-8f10-6456c424a603", + "uuid": "64fcb80a-5a4a-4dc7-89db-1e1c67919d75", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true + "role": "SUBMITTED BY", + "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "401f40f9-f262-49ad-89d7-47e920bf74a4", - "createdAt": "2018-12-21", - "completed": "2022-09-10", - "initiated": "2018-04-15", - "ministryContact": "GISLASON VALENTINA", + "uuid": "7f88bd07-cc30-4c31-ba59-4077d80a914f", + "createdAt": "2014-12-12", + "completed": "2014-03-28", + "initiated": "2020-10-12", + "ministryContact": "BREKKE KAROLANN", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -88260,66 +104101,78 @@ ], "notationParticipants": [ { - "uuid": "1f663280-3ce2-45ce-b166-efa25518d958", + "uuid": "b7032c17-8398-4ee9-96ab-37331625ed1d", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "uuid": "10d3231c-731c-4f44-8545-356295a80175", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "uuid": "c4a078a0-465d-47f2-826c-effbe24a8ead", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": true }, { - "uuid": "42717299-562f-4ce5-bac7-cd562bec8a5f", + "uuid": "39c6d2d2-d721-4a16-ae83-73389cce1f75", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true }, { - "uuid": "2392f686-5e91-4ecd-8149-87256384bf7b", + "uuid": "c6b8b3d3-8cd3-47f9-84dd-977ac143a550", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false } ], "participants": [ { - "uuid": "d49ff3a3-9d3b-4f52-b8f8-397965c6ee06", + "uuid": "e4ee0ce5-9bdd-42fa-aaed-152a6e5c6da2", "name": "IPSUM", - "endDate": "2022-01-13", - "startDate": "2023-07-21", + "endDate": "2014-04-21", + "startDate": "2015-04-08", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "d77048a7-5b38-4acb-8d13-1c8ce21cd3c0", - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2014-06-18", - "startDate": "2018-01-06", + "uuid": "2231a627-9016-4b70-afce-ef6b69716df2", + "name": "AMET, DOLOR SIT", + "endDate": "2023-08-18", + "startDate": "2023-10-06", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "f613a67f-5981-42f0-9156-b051b2b09571", - "name": "AMET, DOLOR SIT", - "endDate": "2015-01-04", - "startDate": "2023-02-15", + "uuid": "8d747114-d255-494b-9c76-e055b9c0ff03", + "name": "IPSUM", + "endDate": "2013-10-31", + "startDate": "2018-09-07", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "d0f616fd-ff14-47b1-88a0-42ef635185fc", - "name": "SHELL CANADA PRODUCTS", - "endDate": "2023-09-15", - "startDate": "2013-10-22", + "uuid": "0a48850d-f1a3-43b5-aec3-78f4c50a7420", + "name": "IPSUM", + "endDate": "2020-11-18", + "startDate": "2017-07-13", "notes": "", "roles": [ "ORGANIZATION" @@ -88327,228 +104180,236 @@ "siteRegistry": false }, { - "uuid": "73588ca5-67c5-440d-8587-e38eabb543ae", - "name": "IPSUM", - "endDate": "2021-06-11", - "startDate": "2017-09-12", + "uuid": "671b0cd4-a8f0-418a-99c3-eced6c10d8ac", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2013-11-20", + "startDate": "2018-12-16", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": true } ], - "suspectLandUses": [ + "documents": [ { - "uuid": "ce48824b-4d1a-4bf4-a72a-610977fa4951", - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-11-16 (described on Site Profile dated 2016-11-16)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "uuid": "05af9dd6-7251-4f27-ad68-4dd89c6794a0", + "siteRegistry": false, + "documentDate": "2016-08-22", + "receivedDate": "2015-11-13", + "uploadedDate": "2018-11-08", + "title": "Preliminary Site Investigation, Detailed Site Investigation and Remedial Plan for the Management Area adjacent to the Shell Site at 1503 West 41st Ave", + "participants": [ + { + "uuid": "531fa83d-97a8-4370-a598-b0460e7b0bcf", + "name": "AMET, DOLOR SIT", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "efc5fa1d-10f5-4dad-8a4c-1ee252be7d00", + "name": "IPSUM", + "siteRegistry": true, + "role": "AUTHOR" + } + ] }, { - "uuid": "24b842c6-fa4f-4467-866c-bcd5753c7311", + "uuid": "cf214839-f091-4218-8673-882e25c282bd", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-01-31 (described on Site Profile dated 2017-01-31)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" - }, + "documentDate": "2016-03-11", + "receivedDate": "2023-02-02", + "uploadedDate": "2021-08-15", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "1d9ed579-87d1-4a13-a118-7783df4475a4", + "name": "AMET, DOLOR SIT", + "siteRegistry": true, + "role": "AUTHOR" + } + ] + } + ], + "suspectLandUses": [ { - "uuid": "8f90ccf7-9afd-4461-a521-c8e0a549c3ec", + "uuid": "ae987470-4018-4838-b293-2087483bbed7", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-07-27 (described on Site Profile dated 2016-07-27)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "notes": "INSERTED FOR SITE PROFILE DATED 2015-03-21 (described on Site Profile dated 2015-03-21)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "uuid": "c224e7c3-cf32-45d9-947b-349be418d1b1", + "uuid": "c56ddf23-b600-4e1e-bbbb-67c8536599fa", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-03-25 (described on Site Profile dated 2014-03-25)", + "notes": "INSERTED FOR SITE PROFILE DATED 2020-01-10 (described on Site Profile dated 2020-01-10)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "uuid": "7918419a-c3c7-4583-9c6a-cd1a597b2276", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2021-11-02 (described on Site Profile dated 2021-11-02)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "uuid": "b298e789-6b8e-4852-84f7-6b4702f2ed5f", + "uuid": "caeceb42-0ba8-4a6a-9fc9-0c1c8d5c0944", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-06-19 (described on Site Profile dated 2016-06-19)", + "notes": "INSERTED FOR SITE PROFILE DATED 2021-05-09 (described on Site Profile dated 2021-05-09)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], "parcelDescriptions": [ { - "uuid": "0b4b4047-9af3-4bbc-83e8-33a8077a07a6", - "siteRegistry": false, - "dateNoted": "2017-11-27", - "parcelID": "18047", - "crownLandUsePIN": "15772", - "crownLandFileNumber": "17847", - "landDescription": "LOT 5 OF LOT 3 BLOCK 4 DISTRICT LOT 4 PLAN 8560" + "uuid": "d86faa5c-a12e-4219-81fe-133e9ecd95df", + "siteRegistry": true, + "dateNoted": "2023-10-09", + "parcelID": "18330", + "crownLandUsePIN": "16472", + "crownLandFileNumber": "17549", + "landDescription": "LOT 3 OF LOT 2 BLOCK 5 DISTRICT LOT 2 PLAN 5319" }, { - "uuid": "79d0ecda-4833-4a16-825d-5b99f8cba9d9", + "uuid": "5083c948-170d-4a95-a98b-e8f7f504b948", "siteRegistry": true, - "dateNoted": "2017-01-18", - "parcelID": "15386", - "crownLandUsePIN": "17363", - "crownLandFileNumber": "16793", - "landDescription": "LOT 4 OF LOT 1 BLOCK 1 DISTRICT LOT 5 PLAN 9654" + "dateNoted": "2015-09-30", + "parcelID": "16150", + "crownLandUsePIN": "19252", + "crownLandFileNumber": "15735", + "landDescription": "LOT 3 OF LOT 4 BLOCK 3 DISTRICT LOT 1 PLAN 5233" }, { - "uuid": "32f18194-474e-4325-bf31-7e98374a1234", + "uuid": "c7dc9e87-61bf-4f45-b101-5d92e595a648", "siteRegistry": false, - "dateNoted": "2017-01-14", - "parcelID": "20950", - "crownLandUsePIN": "17996", - "crownLandFileNumber": "18718", - "landDescription": "LOT 2 OF LOT 5 BLOCK 5 DISTRICT LOT 1 PLAN 5303" + "dateNoted": "2020-10-25", + "parcelID": "19330", + "crownLandUsePIN": "20549", + "crownLandFileNumber": "20989", + "landDescription": "LOT 3 OF LOT 3 BLOCK 4 DISTRICT LOT 5 PLAN 5930" } ], "siteDisclosures": [ { - "uuid": "a6ed4a4a-b70b-4628-9244-22da7121cb3e", - "siteRegistry": false, - "dateReceived": "2018-10-20", - "dateCompleted": "2021-05-11", - "dateEntered": "2017-01-01", - "dateRegistrar": "2016-03-15", - "dateLocalAuthorityReceived": "2022-08-14", - "summary": "Deleniti corporis quam repudiandae odio pariatur id laboriosam.\nMolestiae dolorum optio.\nPlaceat illo recusandae quis ad blanditiis ad.", - "informationUsed": "Non rerum a labore velit.\nEum voluptatibus ipsum libero.\nEx possimus delectus corporis optio fuga perferendis consequatur.\nCupiditate molestias occaecati repudiandae in doloremque odit ducimus fugit dolores.\nVitae dolorum eum facere laudantium dolor.", - "pastOrPresentOrders": "Itaque dignissimos asperiores nulla reprehenderit voluptas minima exercitationem exercitationem.\nDolorum adipisci quos provident aliquam.\nVeritatis deleniti consectetur delectus.", + "uuid": "bef1d014-2da2-4ce8-afa8-d15547b6de17", + "siteRegistry": true, + "dateReceived": "2021-12-11", + "dateCompleted": "2021-06-10", + "dateEntered": "2023-09-29", + "dateRegistrar": "2022-07-26", + "dateLocalAuthorityReceived": "2015-05-27", + "summary": "Fugit ullam qui alias quas expedita.\nSequi illo in explicabo.\nCorporis magni et ex totam voluptate harum velit.", + "informationUsed": "At accusantium commodi dolor qui quibusdam.\nAt modi officiis expedita quisquam libero ad.\nMaxime incidunt sit.", + "pastOrPresentOrders": "Praesentium repellendus culpa est similique autem porro.", "commercialAndIndustrialPurposes": [ { - "uuid": "ca23599f-d920-4fbe-a977-ccc28c858e66", - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false - }, - { - "uuid": "d0ebee56-c3a2-4948-ba75-d045703d1328", - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false - }, - { - "uuid": "80c02713-ab4b-4892-8551-93163dd42958", + "uuid": "853a82b5-adee-4b64-a5f5-154637a50110", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "e3ad4c98-c202-4777-9037-4b66e8e4db83", + "uuid": "a5b618f0-7039-4fc5-8b1c-77644da85d9d", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true + "siteRegistry": false } ] } ], "activityLog": [ { - "uuid": "65b400cc-19b6-4579-a32e-5b750379c954", + "uuid": "1b386edc-80b0-4828-8a8f-913a298b264c", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "QUIGLEY JAYDON", - "timestamp": "2014-09-14" - }, - { - "uuid": "99cffe53-99f7-408e-b3ca-ac6d80213733", - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "ABBOTT JACE", - "timestamp": "2016-03-14" + "user": "BEAHAN TRAVIS", + "timestamp": "2014-08-05" }, { - "uuid": "81680dc3-1a77-4d12-8425-3f15c3f391fa", + "uuid": "86dc1125-7d99-499c-b181-466bb7ea3a5d", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "OLSON NYA", - "timestamp": "2022-07-09" + "user": "DURGAN OTIS", + "timestamp": "2019-10-02" }, { - "uuid": "bdaa6bc7-23e5-4122-b579-bd0d51bc6e4c", + "uuid": "67e47bcd-536b-4c05-9a02-45508c25932d", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "HESSEL KADEN", - "timestamp": "2020-03-24" + "user": "BEAHAN CRAWFORD", + "timestamp": "2023-09-03" }, { - "uuid": "138ac2f8-cc46-4126-9f19-f582f10bb5ab", - "siteRegistry": true, + "uuid": "8b1fcf78-e8f8-44d7-adc2-a9a65db92e9a", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "KIEHN CEDRICK", - "timestamp": "2014-03-04" + "user": "ZIEME GORDON", + "timestamp": "2015-10-25" }, { - "uuid": "399b3011-00a1-4149-9447-bed05d01b511", + "uuid": "a3e5aaaa-4e1a-44e1-9f42-11643ece90a8", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "CASSIN EVALYN", - "timestamp": "2022-11-13" + "user": "WIEGAND JAMIE", + "timestamp": "2017-10-03" }, { - "uuid": "dce578cf-a572-4113-a8e5-ac30fda5946f", + "uuid": "58042bda-775c-47f7-9ca8-927c5c228a01", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "VANDERVORT DAKOTA", - "timestamp": "2022-03-27" - }, - { - "uuid": "9278bf95-1f93-4f8c-81b4-2eb9f705c234", - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "OLSON MAXIMUS", - "timestamp": "2017-06-12" + "user": "WOLF-MANTE ALFORD", + "timestamp": "2017-06-18" }, { - "uuid": "091c08f6-8b57-456a-9749-dae32c482b1e", + "uuid": "65d9fdba-1880-417a-b8e9-db6b69c13ad7", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "KIEHN-HARVEY RENEE", - "timestamp": "2022-03-15" + "user": "ZIEME ELISHA", + "timestamp": "2014-09-16" } ], "associatedSites": [ { - "uuid": "04d7cd7f-4a06-4a43-81f2-e474ffb7b287", - "dateNoted": "2014-11-03", + "uuid": "d56fdf46-7297-4e6b-be83-0e7058938fb4", + "dateNoted": "2023-03-15", "notes": "", - "parcelID": "20109", - "siteID": "20314", + "parcelID": "20716", + "siteID": "18513", "siteRegistry": false }, { - "uuid": "fe73d6aa-90c4-4b50-bfa0-d6133d269662", - "dateNoted": "2019-12-13", + "uuid": "bcc3d81d-5e83-4f66-b8ac-c1af913ae308", + "dateNoted": "2019-03-06", "notes": "", - "parcelID": "19829", - "siteID": "16323", + "parcelID": "20062", + "siteID": "17141", "siteRegistry": true } ] }, { - "uuid": "9a520ff7-9567-482b-ab7c-a6156ee50202", - "siteID": 16986, - "address": "12557 Parisian Landing", - "latitude": 58.0808, - "longitude": -129.3462, - "lastUpdated": "2018-07-28", - "city": "New Evabury", - "region": " North Coast", - "victoriaFile": "26250-20/11251", + "uuid": "da434afd-da76-4732-81ba-37f02b3da2dc", + "siteID": 18736, + "address": "614 Kian Freeway", + "latitude": 49.9711, + "longitude": -123.2502, + "lastUpdated": "2016-11-20", + "city": "Orionbury", + "region": "Kootenay", + "victoriaFile": "26250-20/6931", "regionalFile": "N/A", "parcelIDs": [ - 7292508, - 8197030, - 7816853, - 6391384, - 1607146 + 909199, + 2402296, + 1420184, + 3714768, + 2533903 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "be5bca28-cacb-425b-834e-865db59672da", - "createdAt": "2022-01-28", - "completed": "2016-03-06", - "initiated": "2022-10-13", - "ministryContact": "DAVIS-HARVEY LINA", + "uuid": "af373415-1c97-47cb-9df5-3f4848de13e2", + "createdAt": "2019-08-14", + "completed": "2014-05-29", + "initiated": "2023-08-28", + "ministryContact": "KLEIN JANIE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -88557,26 +104418,26 @@ ], "notationParticipants": [ { - "uuid": "f14f5572-8bfe-40e2-9e86-c3b4f40e0b21", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "uuid": "62a1dee3-de32-4aab-8ab6-78bde7fb59ab", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "4cc7cba6-dcbb-4b9d-afd8-dc4f3dece149", + "uuid": "0fc4f851-c0cf-468b-a54d-86c222e11a4f", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false } ], "siteRegistry": true }, { - "uuid": "bdc9455e-a495-4e50-84c5-cc8b6189635a", - "createdAt": "2019-02-22", - "completed": "2023-10-11", - "initiated": "2021-01-12", - "ministryContact": "LABADIE PRINCE", + "uuid": "da8dec22-0b6e-4ab5-a945-3eebdaad8d32", + "createdAt": "2017-12-12", + "completed": "2020-11-17", + "initiated": "2016-09-06", + "ministryContact": "BOGAN KEITH", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -88585,16 +104446,62 @@ ], "notationParticipants": [ { - "uuid": "fa8876ab-e28e-4a10-941a-a2042275f478", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "uuid": "dd6c86e5-a86c-41b6-a390-8fcd1cde31b4", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "128c83b9-3738-4e69-b51d-55d0626fceb0", + "uuid": "cf43c06c-5629-4ebc-939b-7e2286cf92cc", "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + } + ], + "siteRegistry": false + }, + { + "uuid": "eba57e38-eff1-4699-a509-45744661cbbf", + "createdAt": "2020-08-21", + "completed": "2018-01-07", + "initiated": "2021-10-17", + "ministryContact": "KAUTZER KAVON", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "uuid": "90b73e73-e451-4f8e-9676-e8e4d3ee709c", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "uuid": "0ce71dc4-da29-4dd7-814a-130b049863bb", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "effac7c9-dc3c-48f1-9541-a7c387985437", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true + }, + { + "uuid": "68e9316c-8c84-4879-b887-6d7f7d3023e2", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "d97ab0c8-86ee-4358-ac26-2cccc0cafc17", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false } ], "siteRegistry": true @@ -88602,32 +104509,43 @@ ], "participants": [ { - "uuid": "64776225-52a1-4e3e-a1c9-d545c9a4329c", - "name": "AMET, DOLOR SIT", - "endDate": "2016-12-28", - "startDate": "2022-03-31", + "uuid": "8a666b03-6aa3-49f9-a57f-1d3b41e49d6c", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2022-01-22", + "startDate": "2015-12-30", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "ad595cf0-6b0d-4f3a-add6-896931505611", + "uuid": "8c853f92-41bd-4d72-bbb0-c470d68393f1", "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2022-03-24", - "startDate": "2021-10-26", + "endDate": "2022-04-20", + "startDate": "2019-06-18", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": false }, { - "uuid": "5addf183-8a5e-4be5-95da-1ac76278dd96", + "uuid": "49b3f273-ca77-4327-aafa-de561574f33e", + "name": "IPSUM", + "endDate": "2014-06-05", + "startDate": "2019-06-29", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + }, + { + "uuid": "f2538230-4bd0-4980-b85b-f34737b8274f", "name": "IPSUM", - "endDate": "2022-11-24", - "startDate": "2019-07-09", + "endDate": "2019-05-17", + "startDate": "2016-03-17", "notes": "", "roles": [ "ORGANIZATION" @@ -88635,111 +104553,113 @@ "siteRegistry": false } ], - "suspectLandUses": [ + "documents": [ { - "uuid": "bea5c08d-a60a-4dc2-807a-dba2ed5e50b4", - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-08-21 (described on Site Profile dated 2022-08-21)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "uuid": "12338e33-6e92-4a6f-a8c0-252cb1e852ba", + "siteRegistry": false, + "documentDate": "2016-09-29", + "receivedDate": "2020-12-02", + "uploadedDate": "2015-11-25", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "884ab158-e916-42bb-b1b6-ea2b5a7b8353", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "699a1ce7-e3bb-490c-99f3-2e57479cba95", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "1096a2fa-bcff-4f22-afcd-ba6735860268", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": false, + "role": "AUTHOR" + } + ] }, { - "uuid": "01273685-ed44-4da3-b970-39218c10a848", + "uuid": "1aee409e-bc68-4fc3-aa85-033ce6a99bd6", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-12-21 (described on Site Profile dated 2022-12-21)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" - }, + "documentDate": "2020-10-22", + "receivedDate": "2016-09-28", + "uploadedDate": "2016-07-19", + "title": "Summary of Site Conditions, 1537 W 41st Avenue, Vancouver", + "participants": [ + { + "uuid": "451ad9f3-8367-4667-9aab-4b01ed45cc8a", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": false, + "role": "AUTHOR" + } + ] + } + ], + "suspectLandUses": [ { - "uuid": "cdcfb97e-7125-46b7-ba10-ffd6ab7f9843", + "uuid": "a74d036e-8994-4a02-a24c-b143403d61f3", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-04-13 (described on Site Profile dated 2018-04-13)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "notes": "INSERTED FOR SITE PROFILE DATED 2015-05-07 (described on Site Profile dated 2015-05-07)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "uuid": "c61ceb0d-f928-4179-a91b-0c7676b2d4b8", + "uuid": "52f2eab1-46c8-48bc-a1ab-71b5abb61816", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2020-02-11 (described on Site Profile dated 2020-02-11)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "notes": "INSERTED FOR SITE PROFILE DATED 2014-06-20 (described on Site Profile dated 2014-06-20)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "uuid": "8c4a8152-7074-499d-a394-b5709806d1d8", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2022-03-17 (described on Site Profile dated 2022-03-17)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], "parcelDescriptions": [ { - "uuid": "fbbf7496-cc31-4593-b084-96c62919e4f6", - "siteRegistry": true, - "dateNoted": "2019-05-20", - "parcelID": "17553", - "crownLandUsePIN": "18753", - "crownLandFileNumber": "20343", - "landDescription": "LOT 4 OF LOT 5 BLOCK 3 DISTRICT LOT 1 PLAN 7724" + "uuid": "42eecd1d-db43-4bc5-98ab-ac999b46015d", + "siteRegistry": false, + "dateNoted": "2023-09-17", + "parcelID": "16332", + "crownLandUsePIN": "17562", + "crownLandFileNumber": "20251", + "landDescription": "LOT 5 OF LOT 3 BLOCK 5 DISTRICT LOT 4 PLAN 8333" }, { - "uuid": "7203689e-9efc-42fc-b33d-03d0b5a5d51b", - "siteRegistry": false, - "dateNoted": "2014-10-19", - "parcelID": "15221", - "crownLandUsePIN": "15335", - "crownLandFileNumber": "15938", - "landDescription": "LOT 3 OF LOT 4 BLOCK 1 DISTRICT LOT 2 PLAN 8822" + "uuid": "7ab0e9e0-dae7-42dc-95da-f7a0b3e52a2e", + "siteRegistry": true, + "dateNoted": "2023-05-29", + "parcelID": "20954", + "crownLandUsePIN": "16430", + "crownLandFileNumber": "18173", + "landDescription": "LOT 3 OF LOT 1 BLOCK 2 DISTRICT LOT 3 PLAN 7996" } ], "siteDisclosures": [ { - "uuid": "cb7deaa8-efff-44dc-a00a-9b8d6ede4597", + "uuid": "3c0f0e61-bf0f-4e48-bfbf-2b1c8550e45b", "siteRegistry": false, - "dateReceived": "2019-01-16", - "dateCompleted": "2018-06-19", - "dateEntered": "2020-02-02", - "dateRegistrar": "2020-07-24", - "dateLocalAuthorityReceived": "2014-11-03", - "summary": "Inventore quas itaque placeat id omnis qui aperiam accusantium.", - "informationUsed": "Distinctio magnam quo tempore eaque officia.\nQuisquam perferendis quam voluptas nihil eos numquam iusto.\nQuia iure ea voluptatibus tempora illum maiores totam.", - "pastOrPresentOrders": "Nobis quo quis illum hic eligendi nobis id magni aperiam.", + "dateReceived": "2014-01-02", + "dateCompleted": "2013-11-13", + "dateEntered": "2015-02-26", + "dateRegistrar": "2019-03-12", + "dateLocalAuthorityReceived": "2021-04-19", + "summary": "Eveniet ratione saepe.\nDignissimos vitae earum aperiam.", + "informationUsed": "Maxime tenetur error impedit.\nIllo maxime inventore voluptates atque mollitia fugit vero.\nPlaceat eveniet sint voluptates magnam eius quidem.", + "pastOrPresentOrders": "Voluptas corporis iure adipisci beatae ad nisi.\nSunt dolores sequi autem exercitationem quasi earum doloremque.\nRepudiandae delectus hic.", "commercialAndIndustrialPurposes": [ { - "uuid": "28e9ad72-57e6-47b4-b22a-b0656b2e6c12", - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false - }, - { - "uuid": "a515b64c-8581-495d-af78-22fcf9e00a3b", - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false - }, - { - "uuid": "d2f0af81-c8c7-404f-8233-182194ee1f43", + "uuid": "d2336ca7-0a8e-4696-bf8f-a756f611c9a4", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { - "uuid": "3e5b3091-7ed3-47d3-b9b3-13ef46f17b08", - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false - } - ] - }, - { - "uuid": "bbd61432-edfb-45f4-891b-de5a87b09437", - "siteRegistry": true, - "dateReceived": "2020-10-28", - "dateCompleted": "2018-04-04", - "dateEntered": "2022-11-03", - "dateRegistrar": "2018-02-09", - "dateLocalAuthorityReceived": "2023-02-25", - "summary": "Atque distinctio quam.\nTempore quasi atque.", - "informationUsed": "Quis aliquam corrupti architecto.\nAssumenda distinctio dolorem dolor consequatur assumenda.\nAut fugiat recusandae at praesentium.\nCumque deserunt fugiat sapiente.\nCumque ea numquam modi quidem.", - "pastOrPresentOrders": "Blanditiis doloremque explicabo nihil asperiores.\nQuia occaecati fugiat eum illum minima aspernatur delectus.", - "commercialAndIndustrialPurposes": [ - { - "uuid": "8ef341d3-db13-41de-a1e3-cbb962028010", - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false - }, - { - "uuid": "0ad2665e-d1c1-44e6-88fd-1926b993b0e5", + "uuid": "ef913eab-783a-463c-af50-91d3e67e6b5f", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false @@ -88749,121 +104669,108 @@ ], "activityLog": [ { - "uuid": "0293db97-c9ee-4545-9561-d557a208e4ce", + "uuid": "1abadbf2-525b-4b47-bd44-1205b0fedad1", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "FEEST KAMRON", - "timestamp": "2020-01-11" - }, - { - "uuid": "72405036-38a3-40cc-a0eb-9196371a5590", - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "KEELING LEANNA", - "timestamp": "2019-08-23" + "user": "MOSCISKI-ARMSTRONG KIRK", + "timestamp": "2019-01-20" }, { - "uuid": "ee1243ab-2d07-47df-89f2-edd8a1f29e57", + "uuid": "f4069919-7de3-42dd-b1b7-c80729d2a07e", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "KEELING LIZETH", - "timestamp": "2022-11-24" + "user": "RAYNOR VERLIE", + "timestamp": "2018-07-18" }, { - "uuid": "9171cedc-244c-4a46-9c21-4baf11751002", + "uuid": "e620dfac-c7fc-41d4-bf45-fd5b660319ad", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "STANTON WOODROW", - "timestamp": "2021-04-17" - }, - { - "uuid": "cb75ea8e-2777-4c84-b8c4-a5aa9ac8d8d0", - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "HEATHCOTE VELLA", - "timestamp": "2018-08-20" - }, - { - "uuid": "31bcbaa5-ee2b-4c28-8d85-2c9dcc809564", - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "ZBONCAK CLETUS", - "timestamp": "2017-06-03" + "user": "ZIEMANN EDISON", + "timestamp": "2023-04-29" }, { - "uuid": "bd1e1911-2c4c-48d2-8947-1c0f9e92982d", + "uuid": "2960bf4f-ae67-4221-9591-3907ae04971b", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "RENNER ASTRID", - "timestamp": "2016-03-18" + "user": "SIPES HUBERT", + "timestamp": "2015-08-06" }, { - "uuid": "8c6460c5-fee1-40ff-ab5f-45cefa58e5b2", + "uuid": "1d79fc87-dc43-4ac7-ade8-96c830a12916", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "CUMMERATA MIKE", - "timestamp": "2020-07-13" + "user": "COLLINS JALYN", + "timestamp": "2022-06-05" }, { - "uuid": "9b368a50-b698-4d8a-91b9-b3b8a8fd89ee", - "siteRegistry": true, + "uuid": "20635e53-f68f-4dae-ba36-57006c3e6ed0", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "LOCKMAN ADELINE", - "timestamp": "2014-08-16" + "user": "MANTE KENDRA", + "timestamp": "2015-03-29" }, { - "uuid": "e8524bc4-ab5a-4f67-b88c-c410ddad2db0", + "uuid": "22b344c3-c58f-4a07-9b5f-4d274d48a907", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "YUNDT LEMPI", - "timestamp": "2015-07-19" + "user": "POWLOWSKI NATHANIAL", + "timestamp": "2013-11-30" } ], "associatedSites": [ { - "uuid": "bb85e498-7562-41fc-b081-1d0d0b2db193", - "dateNoted": "2020-03-07", + "uuid": "41c3ffb6-6e09-437e-aa60-c62ae014324b", + "dateNoted": "2016-04-17", + "notes": "", + "parcelID": "18518", + "siteID": "15402", + "siteRegistry": true + }, + { + "uuid": "bd2c7529-a58f-4195-9d1e-937ed9a73252", + "dateNoted": "2018-11-09", "notes": "", - "parcelID": "20812", - "siteID": "17458", + "parcelID": "18953", + "siteID": "16250", "siteRegistry": false }, { - "uuid": "f1870f81-b449-43d8-a633-2097239897e0", - "dateNoted": "2017-12-19", + "uuid": "db3a27e5-b9b3-490f-866b-c4c69d31a798", + "dateNoted": "2014-06-11", "notes": "", - "parcelID": "17201", - "siteID": "17172", + "parcelID": "17871", + "siteID": "16804", "siteRegistry": false } ] }, { - "uuid": "92b89119-4b6f-4120-a795-c48bc371cc9c", - "siteID": 20526, - "address": "7970 Conroy Hollow", - "latitude": 56.2713, - "longitude": -136.3135, - "lastUpdated": "2020-05-29", - "city": "Flatleyboro", - "region": " North Coast", - "victoriaFile": "26250-20/16346", + "uuid": "5fe17856-dd07-4983-83d1-9e4667ea31e9", + "siteID": 16528, + "address": "38171 Cassidy Circle", + "latitude": 57.4556, + "longitude": -124.813, + "lastUpdated": "2014-08-25", + "city": "New Camden", + "region": "Vancouver Island/Coast", + "victoriaFile": "26250-20/16391", "regionalFile": "N/A", "parcelIDs": [ - 1452050, - 1824830, - 5962865, - 4616584, - 4392420 + 3828453, + 742040, + 6322688, + 2722881, + 2844865 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "b7ae4e23-936f-4483-a2dc-6ef49f55720c", - "createdAt": "2017-08-14", - "completed": "2020-01-24", - "initiated": "2023-01-26", - "ministryContact": "TOWNE PALMA", + "uuid": "bb24a542-086c-4346-adb1-967b8fa7a9d2", + "createdAt": "2023-10-02", + "completed": "2014-04-20", + "initiated": "2020-08-16", + "ministryContact": "MORAR HALEIGH", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -88872,44 +104779,32 @@ ], "notationParticipants": [ { - "uuid": "ba3a1397-02f1-4b3b-8181-8bf3d74671ff", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "uuid": "55caacc4-7849-498f-9f93-eadaf19ca096", + "uuid": "b630da10-50c9-4765-9711-2703d4183159", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "uuid": "8dee6cc1-1c81-4149-8bc3-d13d5b150575", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true }, { - "uuid": "12e903d2-e9bf-4dbd-961b-590acf5ce2b0", - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "3032a850-9000-4b9d-874a-15f3b912eb79", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "2413a496-7ec6-416c-94cc-9c78a097efc1", + "uuid": "3e67e5ca-84d9-4a80-92c7-cad1f37295a4", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "5ebabf5b-465f-4574-940a-9f3cce3cb41c", - "createdAt": "2023-05-10", - "completed": "2017-06-25", - "initiated": "2022-03-11", - "ministryContact": "BLICK GRACIELA", + "uuid": "88d60acb-a40a-4806-bc0f-4e58123e93f0", + "createdAt": "2017-02-01", + "completed": "2016-11-24", + "initiated": "2014-07-25", + "ministryContact": "ANKUNDING EULA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -88918,44 +104813,38 @@ ], "notationParticipants": [ { - "uuid": "2a9bc62b-008a-4072-8d34-db02da657208", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "uuid": "f5b1f376-e2fe-4ddc-9e64-eabb14597ebe", - "name": "SHELL CANADA PRODUCTS", + "uuid": "b91d29bc-c73e-4d5d-a0ba-c9a696c28f58", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "7bb53b68-b713-43e4-b831-2f86cd7b858c", + "uuid": "e15ea0d2-50ee-4be8-922d-2c7dfbcec309", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "324ef546-536b-4a3c-bb1c-8b0ff7f4a9b8", + "uuid": "d35ea62a-4941-48b3-9e80-b84889bafb5c", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false }, { - "uuid": "3f2982b1-3106-4e37-9264-6865b39fb1c6", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false + "uuid": "70787a1f-a383-4e31-8f4e-4b6d619e5e70", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "100fed63-cad1-414d-9cb3-412fc94474e6", - "createdAt": "2015-10-25", - "completed": "2018-09-13", - "initiated": "2021-11-26", - "ministryContact": "BARROWS JOSEPHINE", + "uuid": "76201877-9aeb-435a-b34f-3566864ff7ae", + "createdAt": "2017-10-23", + "completed": "2019-08-02", + "initiated": "2014-10-20", + "ministryContact": "ZBONCAK PERRY", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -88964,50 +104853,38 @@ ], "notationParticipants": [ { - "uuid": "c6a8277d-5426-4027-83af-94f35ba8ae2a", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "uuid": "5724ae70-573f-4358-b1ce-72c235a96ca1", + "uuid": "377698a2-4a02-40bc-8756-16c280baa170", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false }, { - "uuid": "73d30b6e-8028-4361-89f3-22a25e3ad030", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "uuid": "54687b5c-bd1d-42b8-ae1a-a860eb192d7f", + "uuid": "d9ef2fbf-23e5-421d-8ecc-dc95fa9831b8", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false } ], "participants": [ { - "uuid": "d141389d-34b6-406a-a661-22be08026a08", - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2020-03-21", - "startDate": "2021-06-23", + "uuid": "88622643-d303-4ed1-9ce2-7e3dbcea3f16", + "name": "IPSUM", + "endDate": "2022-07-08", + "startDate": "2021-11-02", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": false }, { - "uuid": "28345de2-57a9-4913-9ebe-6d3c732596df", - "name": "AMET, DOLOR SIT", - "endDate": "2019-04-24", - "startDate": "2017-08-05", + "uuid": "ad34dfa2-697f-43d4-8b8d-4b7c981d67c5", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2019-03-31", + "startDate": "2022-12-25", "notes": "", "roles": [ "ORGANIZATION" @@ -89015,257 +104892,292 @@ "siteRegistry": false }, { - "uuid": "a0bfc507-2a7f-4f33-8bd1-9f5a0d51d98c", + "uuid": "486fb1bd-463c-4c2f-b6d7-16684c37acb1", "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2018-09-06", - "startDate": "2017-05-07", + "endDate": "2021-05-24", + "startDate": "2021-08-11", "notes": "", "roles": [ "ORGANIZATION" ], "siteRegistry": false - }, + } + ], + "documents": [ { - "uuid": "62f4fc63-e68a-421d-a023-54b1785a62ce", - "name": "SHELL CANADA PRODUCTS", - "endDate": "2018-01-07", - "startDate": "2022-05-04", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": true + "uuid": "139cda7c-2e1e-40b4-9e7c-a5dc1d977be2", + "siteRegistry": true, + "documentDate": "2021-10-18", + "receivedDate": "2016-10-30", + "uploadedDate": "2016-02-13", + "title": "Summary of Site Conditions, 1537 W 41st Avenue, Vancouver", + "participants": [ + { + "uuid": "1e03be7b-6df3-4e95-84de-b8d1e8d169da", + "name": "AMET, DOLOR SIT", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "730fe4ed-a3b9-4854-b506-244c34ad1b09", + "name": "IPSUM", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "98fe8a61-50f6-4fc0-ad72-a813cd2803a6", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": false, + "role": "AUTHOR" + } + ] } ], "suspectLandUses": [ { - "uuid": "c0d7fc1f-4128-4f8a-8db5-cfda39097326", - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-03-16 (described on Site Profile dated 2016-03-16)", + "uuid": "058f48d1-a067-4feb-8f7d-ebbeaccacbe1", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2014-08-17 (described on Site Profile dated 2014-08-17)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "uuid": "57dbd30b-5e88-4c75-b4bc-b8171eb5838e", + "uuid": "eb2aed08-0c61-4fd7-b1a3-767fd3a8fd76", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-03-05 (described on Site Profile dated 2019-03-05)", + "notes": "INSERTED FOR SITE PROFILE DATED 2022-03-20 (described on Site Profile dated 2022-03-20)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "uuid": "50a0e54a-7521-48ec-ac31-bc06b059ce0d", + "uuid": "e97f09d7-14b4-4846-8923-aae0634ef7ab", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2023-06-15 (described on Site Profile dated 2023-06-15)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "notes": "INSERTED FOR SITE PROFILE DATED 2015-02-14 (described on Site Profile dated 2015-02-14)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "uuid": "a40ce65c-c94d-4061-8153-d19e5f95eacb", + "uuid": "bc3ddf5d-b913-4870-b2ea-64b36159e8e9", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-07-01 (described on Site Profile dated 2014-07-01)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "notes": "INSERTED FOR SITE PROFILE DATED 2014-04-25 (described on Site Profile dated 2014-04-25)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], "parcelDescriptions": [ { - "uuid": "3bd1a1af-d7ca-4477-af9c-9794d1b3177e", + "uuid": "3be4f717-0b02-4c98-ac32-58f2458ef112", "siteRegistry": true, - "dateNoted": "2014-11-05", - "parcelID": "16889", - "crownLandUsePIN": "17283", - "crownLandFileNumber": "19734", - "landDescription": "LOT 4 OF LOT 2 BLOCK 3 DISTRICT LOT 1 PLAN 4047" + "dateNoted": "2017-04-29", + "parcelID": "19694", + "crownLandUsePIN": "18953", + "crownLandFileNumber": "20835", + "landDescription": "LOT 4 OF LOT 1 BLOCK 2 DISTRICT LOT 5 PLAN 7672" }, { - "uuid": "4c2629bb-f69f-4212-84f7-f86a9ea97c46", - "siteRegistry": true, - "dateNoted": "2022-05-10", - "parcelID": "19038", - "crownLandUsePIN": "18250", - "crownLandFileNumber": "19427", - "landDescription": "LOT 5 OF LOT 2 BLOCK 3 DISTRICT LOT 4 PLAN 7865" + "uuid": "961bd929-3427-46e0-8bbd-dffd31cae175", + "siteRegistry": false, + "dateNoted": "2019-03-25", + "parcelID": "17452", + "crownLandUsePIN": "17022", + "crownLandFileNumber": "20663", + "landDescription": "LOT 1 OF LOT 3 BLOCK 3 DISTRICT LOT 1 PLAN 6243" + }, + { + "uuid": "90eb931a-1f64-4961-a1bd-b3dd61eae8ed", + "siteRegistry": false, + "dateNoted": "2016-08-29", + "parcelID": "17954", + "crownLandUsePIN": "19066", + "crownLandFileNumber": "16661", + "landDescription": "LOT 4 OF LOT 2 BLOCK 4 DISTRICT LOT 1 PLAN 9147" + }, + { + "uuid": "2a81f55f-ab37-4062-8046-7f56dfbae04b", + "siteRegistry": false, + "dateNoted": "2014-06-10", + "parcelID": "15955", + "crownLandUsePIN": "15476", + "crownLandFileNumber": "20229", + "landDescription": "LOT 5 OF LOT 5 BLOCK 2 DISTRICT LOT 2 PLAN 8790" } ], "siteDisclosures": [ { - "uuid": "da28e389-0071-4e77-8cbc-56071f0cb2d5", + "uuid": "0715bb49-528d-47fa-868e-4bea91773e46", "siteRegistry": true, - "dateReceived": "2020-06-02", - "dateCompleted": "2022-04-15", - "dateEntered": "2022-05-21", - "dateRegistrar": "2019-03-16", - "dateLocalAuthorityReceived": "2015-02-07", - "summary": "Nemo repellat maiores a nam soluta odio occaecati accusantium.\nQuibusdam iusto id fuga.\nAnimi quae temporibus non laudantium sapiente sapiente hic natus.", - "informationUsed": "Rerum dolorum voluptate earum iure in fugiat facere eum explicabo.\nSunt odit deserunt corrupti enim molestiae.\nQuos placeat atque ullam sunt eum nam voluptate ipsa.\nEa labore explicabo deserunt corporis animi doloremque quidem.", - "pastOrPresentOrders": "Vitae similique laudantium ad suscipit quam corporis.\nReprehenderit incidunt aspernatur quam.", + "dateReceived": "2015-03-03", + "dateCompleted": "2019-07-24", + "dateEntered": "2014-02-01", + "dateRegistrar": "2018-05-11", + "dateLocalAuthorityReceived": "2019-03-19", + "summary": "Debitis voluptates id totam perspiciatis.\nIpsa hic eaque tempora.\nVelit illo facilis quaerat aut placeat.", + "informationUsed": "Ratione corrupti excepturi beatae eligendi dolores.\nEsse maxime rerum.\nReiciendis sapiente libero corrupti eius quibusdam officiis magni itaque.\nPerspiciatis aut assumenda tempore fugit.\nId placeat ea.", + "pastOrPresentOrders": "Cumque nulla voluptas.\nIusto culpa possimus explicabo quas tempora expedita accusantium ab.", "commercialAndIndustrialPurposes": [ { - "uuid": "89b3ee5d-ee71-48d7-8836-e57446601c99", - "scheduleReference": "F1*", + "uuid": "474ade41-a41f-4691-a4a1-a118b669126e", + "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { - "uuid": "48320b10-8f7c-46cc-b96e-b4cc1ac73db3", + "uuid": "d05df293-2823-43c0-b347-33ad95ad8744", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "uuid": "abcaa381-ef19-4e9c-9242-d0710545e9ba", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "uuid": "d7d10168-66ba-4f2e-9245-80974987d536", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true } ] }, { - "uuid": "ce70e008-5293-43d0-bc30-3803c0b4b680", + "uuid": "923d693e-e6ed-49c0-b594-45dffb6b1e98", "siteRegistry": true, - "dateReceived": "2020-12-05", - "dateCompleted": "2013-12-16", - "dateEntered": "2016-12-07", - "dateRegistrar": "2018-12-13", - "dateLocalAuthorityReceived": "2020-03-01", - "summary": "Quaerat velit alias aliquid.", - "informationUsed": "Inventore accusamus corrupti rerum ullam ullam aperiam at iste.\nIllum harum tempore modi dolorum exercitationem enim quam provident porro.\nEa porro perferendis rerum facere accusamus expedita.\nQuos quo laborum accusamus vitae ipsum beatae nemo laudantium maiores.", - "pastOrPresentOrders": "Id perferendis neque tempora distinctio.\nAlias quo nobis magni qui id.", + "dateReceived": "2015-05-26", + "dateCompleted": "2022-11-05", + "dateEntered": "2022-08-21", + "dateRegistrar": "2022-05-10", + "dateLocalAuthorityReceived": "2019-04-14", + "summary": "Temporibus nemo illum laboriosam sint quae commodi cupiditate eaque.\nPossimus impedit numquam aliquam omnis exercitationem repellat magni tempora dolore.", + "informationUsed": "Quidem voluptas maxime.\nExpedita molestias facilis magni temporibus porro enim.\nOmnis perspiciatis ad pariatur quod aliquid repellendus.\nModi dignissimos repudiandae alias consequatur dolores deleniti corrupti.\nNihil vitae quis quibusdam voluptatibus soluta.", + "pastOrPresentOrders": "Porro magni voluptatem perspiciatis eaque.\nDolorum eaque dolorum doloremque aspernatur officiis tempora nisi corrupti.", "commercialAndIndustrialPurposes": [ { - "uuid": "0876a184-72cf-4490-af21-c6939d0ef486", + "uuid": "9f9d616d-9e0f-4deb-ae92-ed92a048d495", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { - "uuid": "60e5c1d8-bf96-4e33-aa46-31ab236644a8", - "scheduleReference": "F2*", + "uuid": "9c64d1ba-26d9-42ee-bf9b-db8fb706cb7e", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "2d44d775-90d2-4475-879d-8e5bdc96f10f", + "uuid": "3fc33e5a-6b76-4f83-8f1b-fdfcb3523a25", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false }, { - "uuid": "3ea887e3-b4dc-457b-8bc9-36be0dfc7b34", + "uuid": "c52b6e2d-93b7-4fce-a05c-ffd835fb2bf5", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false + "siteRegistry": true } ] } ], "activityLog": [ { - "uuid": "5592161f-d182-401c-9df0-c81c9b17f0ed", - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "DAVIS ADAH", - "timestamp": "2017-06-15" - }, - { - "uuid": "fcc35727-f34f-438d-8e85-8b8418046f9e", - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "BLICK CARTER", - "timestamp": "2014-06-18" - }, - { - "uuid": "ec73b637-6c14-4421-a36f-8c16e0613b1d", + "uuid": "3bff5d6a-089a-4b5b-9c38-92dfcd5f0c99", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "DENESIK QUINTEN", - "timestamp": "2013-12-22" + "user": "BODE KENNY", + "timestamp": "2017-06-01" }, { - "uuid": "f1914e18-a002-4bf1-8831-61f66fe038f4", + "uuid": "8c971147-74fc-41ca-88c4-020941034d59", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "JAKUBOWSKI MEDA", - "timestamp": "2022-10-21" + "user": "BERNIER ELECTA", + "timestamp": "2017-10-09" }, { - "uuid": "72db0b13-58c9-45bd-ab4a-dc1f7ea67082", - "siteRegistry": false, + "uuid": "61b12813-032c-4656-b864-e3efa81b3fee", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "MORISSETTE ZACKARY", - "timestamp": "2017-07-25" + "user": "LOCKMAN-THOMPSON SHYANNE", + "timestamp": "2015-03-15" }, { - "uuid": "3ad8671c-241d-4762-9954-febdef1063ed", + "uuid": "a3215e7d-06bc-4ac3-b52c-ca1d36c23aeb", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "KLOCKO MCKENNA", - "timestamp": "2019-03-07" + "user": "MILLS DAN", + "timestamp": "2017-03-06" }, { - "uuid": "922c6da4-eadc-4ca6-9e91-d98f2a97e898", + "uuid": "d2aad205-87bc-4b7c-ab30-7123704341ce", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "HOEGER FLETCHER", - "timestamp": "2018-10-19" + "user": "SCHMELER PETER", + "timestamp": "2022-03-22" }, { - "uuid": "691a392c-de8f-4a9f-80ef-6a1d4ec38dfa", - "siteRegistry": true, + "uuid": "880f06d9-6808-4a79-8c73-8fffbae68100", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "PARISIAN ANDERSON", - "timestamp": "2017-02-26" + "user": "ALTENWERTH VAN", + "timestamp": "2017-08-13" }, { - "uuid": "96d99ef6-c926-45b2-891e-2359cae13c36", - "siteRegistry": false, + "uuid": "0b8764cf-8b0c-4d42-9cfb-5afd0e451b05", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "ERDMAN MASON", - "timestamp": "2016-11-11" + "user": "MCDERMOTT SIM", + "timestamp": "2015-04-21" }, { - "uuid": "41ff641a-7cbb-4882-bcd7-c1683231cd29", - "siteRegistry": false, + "uuid": "e2cca055-b237-4565-baeb-a7fa6f303be1", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "D'AMORE BRADLEY", - "timestamp": "2021-03-28" + "user": "PADBERG KIM", + "timestamp": "2022-08-13" } ], "associatedSites": [ { - "uuid": "a30d128f-9b82-4baf-a350-9af5762ebe54", - "dateNoted": "2021-06-05", + "uuid": "f58b3962-a5cb-4317-9ea4-ef985ba1e993", + "dateNoted": "2021-06-30", "notes": "", - "parcelID": "16631", - "siteID": "20381", + "parcelID": "17265", + "siteID": "17697", "siteRegistry": true }, { - "uuid": "178fd1ac-987d-42c3-8c88-52f71ea7051f", - "dateNoted": "2021-05-16", + "uuid": "ff18d0f5-d968-4d44-b96f-2433f14d3e52", + "dateNoted": "2015-10-05", "notes": "", - "parcelID": "18978", - "siteID": "18725", + "parcelID": "17371", + "siteID": "17993", "siteRegistry": false } ] }, { - "uuid": "f4150d3b-a951-4ba0-9d36-6749e401fd19", - "siteID": 18183, - "address": "2238 Karen Locks", - "latitude": 54.9071, - "longitude": -124.3647, - "lastUpdated": "2023-05-21", - "city": "South Winnifredhaven", - "region": "Kootenay", - "victoriaFile": "26250-20/10713", + "uuid": "1cd495cb-3537-43a7-ba7d-6a573a68f519", + "siteID": 16457, + "address": "801 Hartmann Hill", + "latitude": 58.4366, + "longitude": -127.3461, + "lastUpdated": "2022-12-19", + "city": "Erynstad", + "region": "Vancouver Island/Coast", + "victoriaFile": "26250-20/1230", "regionalFile": "N/A", "parcelIDs": [ - 8113148, - 250971, - 718859, - 9807588, - 7745506 + 4817134, + 2767123, + 3898231, + 6941829, + 6980431 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "afdd7664-4495-48c0-90f3-24df1b6a7e72", - "createdAt": "2022-01-05", - "completed": "2017-04-01", - "initiated": "2018-05-15", - "ministryContact": "WIZA ANGEL", + "uuid": "bfa500de-6b38-4d1b-bc7f-0db3367d0ed3", + "createdAt": "2021-03-29", + "completed": "2022-11-19", + "initiated": "2018-06-04", + "ministryContact": "JACOBI LORI", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -89274,14 +105186,14 @@ ], "notationParticipants": [ { - "uuid": "53b388f4-38fc-48f0-a299-72eeff160e6a", - "name": "SHELL CANADA PRODUCTS", + "uuid": "7a24bc01-fc74-4097-87d5-bbe7149368ce", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "8c521ebd-6e20-4160-85e0-b844c92ac4d3", - "name": "SHELL CANADA PRODUCTS", + "uuid": "cde17141-559c-4a15-b3d2-d2164dfbc29f", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false } @@ -89289,11 +105201,11 @@ "siteRegistry": false }, { - "uuid": "3bf9cc3b-2db6-4436-b790-8b3c6471d33c", - "createdAt": "2022-02-08", - "completed": "2019-01-19", - "initiated": "2020-03-25", - "ministryContact": "BARTON JOANNY", + "uuid": "38f10f8e-fe14-4f78-b511-09738cb108ec", + "createdAt": "2019-04-25", + "completed": "2014-09-27", + "initiated": "2016-08-31", + "ministryContact": "FEEST THORA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -89302,44 +105214,54 @@ ], "notationParticipants": [ { - "uuid": "36f48b3c-563d-433c-827d-bde6a9032da3", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "uuid": "8c723ec7-a0eb-4c7e-9bb0-85811be15e2e", + "uuid": "f96abe50-3b87-4ae8-bbfb-57818af4ae7c", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "cc31f9f5-a9f1-493b-8aff-8f2ad9b6f938", + "uuid": "9b5a40fd-7cf7-406c-af55-5443cb456782", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": true - }, + } + ], + "siteRegistry": false + }, + { + "uuid": "2dfbaffb-1941-4b08-9493-93834caa9487", + "createdAt": "2021-08-30", + "completed": "2016-08-28", + "initiated": "2022-08-03", + "ministryContact": "CUMMERATA MIREILLE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ { - "uuid": "cfb43476-a9a0-4034-8535-bf9bc0114243", + "uuid": "b4a5c889-e303-42a5-98aa-8de3d7678424", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false }, { - "uuid": "e27e14da-79c0-4481-b641-fd30c98c8237", + "uuid": "b721f68d-1221-408b-9114-a7c55d75a307", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "296ca5cb-1011-43fa-9354-55f11bd66df1", - "createdAt": "2018-07-24", - "completed": "2014-11-21", - "initiated": "2014-11-12", - "ministryContact": "KEEBLER ENOLA", + "uuid": "12d16ea6-f571-4870-8a1d-bd406a48f279", + "createdAt": "2021-08-20", + "completed": "2021-12-28", + "initiated": "2016-11-17", + "ministryContact": "AUFDERHAR DALLAS", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -89348,38 +105270,44 @@ ], "notationParticipants": [ { - "uuid": "5dcda84a-7e3b-4222-ac10-b26204a64ff1", + "uuid": "08491e44-2d83-475f-ba7e-ae0017f5265c", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "a0bcff94-b5a7-4136-8dc7-3ccc7403cfc4", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "c24f4533-bac5-4960-871e-58979ac19386", + "uuid": "9fa3749d-fde3-4083-8ec4-83a3ce1b800c", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true }, { - "uuid": "9caf77f6-5c7f-40d4-a31c-a40a7927cef2", + "uuid": "3f6c1b1a-eb6f-49d4-b64d-e8b455f0bf24", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": true }, { - "uuid": "d207b823-62fb-4cc7-a336-b6e0d0c0bd51", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false + "uuid": "8814c51e-2814-4ebb-8f9d-b39064e5e122", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "43fcab3b-05fd-48da-8692-c2f61d0e4098", - "createdAt": "2017-04-22", - "completed": "2015-03-20", - "initiated": "2020-03-28", - "ministryContact": "BEATTY GLADYCE", + "uuid": "c9c23420-d04e-4dc4-9180-ef99c508846d", + "createdAt": "2015-01-20", + "completed": "2019-08-04", + "initiated": "2018-12-17", + "ministryContact": "HAMMES DAVION", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -89388,34 +105316,28 @@ ], "notationParticipants": [ { - "uuid": "f5132be5-b00d-4315-83c7-4d9a1cc6889e", + "uuid": "d6da0989-4ad4-454b-b29d-6a688b60bcd2", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "uuid": "51fbf19e-57dc-4b20-971e-b76ee25ca448", - "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false }, { - "uuid": "6b441a43-ed50-4cef-949e-42a27085a677", + "uuid": "0dbf4b77-5bb7-46ef-b415-03c30213efd1", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "2bb0bdb3-4f9c-4e5e-8834-27d5e2495d94", + "uuid": "0311522a-dc19-4810-8dca-23f7c9bc2bbb", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "9973d6d0-378d-4ea0-8d98-63b9c4fb858f", - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "982a98af-df19-4788-8ba7-19f49cfea776", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false } ], "siteRegistry": true @@ -89423,288 +105345,317 @@ ], "participants": [ { - "uuid": "77bceafb-d971-4613-9617-e6ba1902eba5", - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2015-11-17", - "startDate": "2019-07-13", + "uuid": "5226607d-f185-43ce-9e70-03426a297958", + "name": "AMET, DOLOR SIT", + "endDate": "2019-01-12", + "startDate": "2018-09-21", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "81ed0efb-8838-4e92-ab46-495dfd9abfb5", - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2014-03-02", - "startDate": "2022-02-02", + "uuid": "d80a8b06-1c12-4294-a337-8bb1298595f8", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2017-10-25", + "startDate": "2020-07-28", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "fd5453f1-b42b-494f-a2c4-e935b85feb03", + "uuid": "6396ca8b-f4b6-4125-9daf-571ba5feb2a9", "name": "AMET, DOLOR SIT", - "endDate": "2015-06-07", - "startDate": "2016-03-14", + "endDate": "2023-03-01", + "startDate": "2015-03-20", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "58ef6052-94e5-455a-92d1-67bbda707ebf", + "uuid": "8ecc6f2d-1b93-411b-a21c-7871c2f45134", "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2015-01-21", - "startDate": "2022-02-19", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": false - }, - { - "uuid": "3ee75907-ddee-4801-bd19-34512bc55535", - "name": "AMET, DOLOR SIT", - "endDate": "2016-09-01", - "startDate": "2022-05-27", + "endDate": "2019-05-28", + "startDate": "2014-05-14", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": false + "siteRegistry": true } ], - "suspectLandUses": [ + "documents": [ { - "uuid": "6f4504e3-6982-46c8-898d-5986322b0082", - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2020-10-16 (described on Site Profile dated 2020-10-16)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "uuid": "8e34ab43-d05d-4438-8f8c-8f2ab6be06e9", + "siteRegistry": false, + "documentDate": "2020-06-17", + "receivedDate": "2020-05-16", + "uploadedDate": "2013-12-05", + "title": "Preliminary Site Investigation, Detailed Site Investigation and Remedial Plan for the Management Area adjacent to the Shell Site at 1503 West 41st Ave", + "participants": [ + { + "uuid": "5b1a5662-36fe-47bd-90a8-c6336ef30a65", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "fb2c5296-4734-4da0-858e-7efa2186615c", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "c6dbadfd-bf6d-476a-8acc-69cf562f37d1", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": false, + "role": "AUTHOR" + } + ] }, { - "uuid": "137848f5-d9d6-4da0-a58f-03537879876c", + "uuid": "6ede6da1-74a1-4f7a-9c04-1742d0cb2b4b", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-01-11 (described on Site Profile dated 2021-01-11)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "documentDate": "2020-05-06", + "receivedDate": "2017-04-04", + "uploadedDate": "2020-01-08", + "title": "Summary of Site Conditions, 1537 W 41st Avenue, Vancouver", + "participants": [ + { + "uuid": "36f5fcb8-78ff-4547-b87f-c3f135ff22a4", + "name": "IPSUM", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "e85fa3eb-749e-4752-87b7-9e8d5add5f92", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "4f61a87b-c748-46f1-8030-e7d0b40b4e6d", + "name": "IPSUM", + "siteRegistry": false, + "role": "AUTHOR" + } + ] }, { - "uuid": "ce1e4a33-c959-4903-ac93-9f8adeeabb65", + "uuid": "712c48e7-e960-48b8-94a1-5c584828b1ae", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-01-04 (described on Site Profile dated 2019-01-04)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "documentDate": "2020-04-19", + "receivedDate": "2022-05-09", + "uploadedDate": "2015-11-18", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "11aea431-2d52-460c-9e50-4632d1d67a0a", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": true, + "role": "AUTHOR" + } + ] }, { - "uuid": "1b88343f-b898-41af-9898-64452c15252f", + "uuid": "ff7d50d4-facd-4935-9240-686b6b7ab5ea", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-04-14 (described on Site Profile dated 2021-04-14)", + "documentDate": "2014-03-22", + "receivedDate": "2021-07-06", + "uploadedDate": "2021-02-17", + "title": "Preliminary Site Investigation, Detailed Site Investigation and Remedial Plan for the Management Area adjacent to the Shell Site at 1503 West 41st Ave", + "participants": [ + { + "uuid": "94e435c6-e56c-46f2-96a2-6a966f9381c4", + "name": "AMET, DOLOR SIT", + "siteRegistry": true, + "role": "AUTHOR" + } + ] + }, + { + "uuid": "68db6c7e-89b5-48e0-b956-d717fa52e831", + "siteRegistry": false, + "documentDate": "2015-09-26", + "receivedDate": "2019-04-12", + "uploadedDate": "2022-06-20", + "title": "Preliminary Site Investigation, Detailed Site Investigation and Remedial Plan for the Management Area adjacent to the Shell Site at 1503 West 41st Ave", + "participants": [ + { + "uuid": "697b7ff1-5ffd-4a5a-80c6-303e74c14d1d", + "name": "IPSUM", + "siteRegistry": false, + "role": "AUTHOR" + } + ] + } + ], + "suspectLandUses": [ + { + "uuid": "b4bef86d-72c2-4d92-befc-6dc67d3b6220", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2023-03-09 (described on Site Profile dated 2023-03-09)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "uuid": "3105728e-ba30-45f1-94a5-675233998579", + "uuid": "0a51e901-b37e-4785-8c29-f879e1516840", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-07-22 (described on Site Profile dated 2018-07-22)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "notes": "INSERTED FOR SITE PROFILE DATED 2018-08-16 (described on Site Profile dated 2018-08-16)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], "parcelDescriptions": [ { - "uuid": "0748922d-0e7d-4b8e-8cd9-e13b638798dc", - "siteRegistry": true, - "dateNoted": "2015-07-15", - "parcelID": "16226", - "crownLandUsePIN": "20920", - "crownLandFileNumber": "15464", - "landDescription": "LOT 3 OF LOT 3 BLOCK 1 DISTRICT LOT 5 PLAN 8524" + "uuid": "248168ff-554d-4b8b-b31e-4cc44631d3e2", + "siteRegistry": false, + "dateNoted": "2023-03-03", + "parcelID": "17418", + "crownLandUsePIN": "16843", + "crownLandFileNumber": "16321", + "landDescription": "LOT 1 OF LOT 2 BLOCK 4 DISTRICT LOT 3 PLAN 5261" }, { - "uuid": "6c233d6a-521e-488e-b8df-8b66c6860421", + "uuid": "a43dce1b-08e7-4312-934a-f7b543c5a2f1", "siteRegistry": true, - "dateNoted": "2014-08-31", - "parcelID": "20255", - "crownLandUsePIN": "17069", - "crownLandFileNumber": "16702", - "landDescription": "LOT 4 OF LOT 2 BLOCK 4 DISTRICT LOT 4 PLAN 5473" + "dateNoted": "2014-02-09", + "parcelID": "19958", + "crownLandUsePIN": "15972", + "crownLandFileNumber": "16419", + "landDescription": "LOT 2 OF LOT 1 BLOCK 5 DISTRICT LOT 3 PLAN 4294" + }, + { + "uuid": "550c6e16-81ff-4786-97fb-4dac8d70e879", + "siteRegistry": false, + "dateNoted": "2015-06-18", + "parcelID": "20107", + "crownLandUsePIN": "19140", + "crownLandFileNumber": "20764", + "landDescription": "LOT 1 OF LOT 1 BLOCK 5 DISTRICT LOT 1 PLAN 5335" } ], "siteDisclosures": [ { - "uuid": "53dd0deb-5a51-40c1-9083-45ae2bc01970", - "siteRegistry": false, - "dateReceived": "2022-02-20", - "dateCompleted": "2022-07-07", - "dateEntered": "2018-02-16", - "dateRegistrar": "2022-12-12", - "dateLocalAuthorityReceived": "2017-08-08", - "summary": "Consequatur nesciunt eius iste commodi pariatur quibusdam molestiae eum.\nDoloribus laborum quam deserunt sit reprehenderit exercitationem nam.\nQui facere exercitationem debitis alias ipsum maxime facere.", - "informationUsed": "Quibusdam molestias fugit qui ipsum facilis neque praesentium maxime dolorum.\nVoluptas veniam voluptatibus animi minus blanditiis delectus quasi.\nDeleniti perferendis molestias.", - "pastOrPresentOrders": "Modi voluptatibus voluptate dignissimos pariatur consequatur consectetur dolorem.\nCumque reiciendis ea iste maxime accusantium iste.", + "uuid": "570aa428-1419-4cda-94d2-0a9063c9ac05", + "siteRegistry": true, + "dateReceived": "2020-02-08", + "dateCompleted": "2022-03-29", + "dateEntered": "2017-11-26", + "dateRegistrar": "2021-02-08", + "dateLocalAuthorityReceived": "2021-05-27", + "summary": "A perspiciatis corporis deserunt.\nFuga occaecati sequi labore expedita nisi.\nPariatur aspernatur soluta blanditiis nisi impedit doloribus autem dolore ea.", + "informationUsed": "Et ex et vel.\nQuia sint perspiciatis officiis officiis adipisci.\nQuia esse repudiandae tenetur.", + "pastOrPresentOrders": "Modi nobis ipsum quasi facilis repudiandae.\nDistinctio quas sunt incidunt deserunt.\nIpsum facilis commodi autem quidem nihil illo.", "commercialAndIndustrialPurposes": [ { - "uuid": "a0161fdb-b3c5-4618-a430-5269d89b844c", + "uuid": "023a13e6-2e7b-444e-a547-9114a7de52df", "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true }, { - "uuid": "33458792-0a27-4c94-84f4-b97636b81036", + "uuid": "93652674-05db-4855-9f4f-8d2c27a1708b", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true - }, - { - "uuid": "941ae824-281c-4f16-9dd5-0c764fc355c2", - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false - } - ] - }, - { - "uuid": "a6300ce0-b625-4324-9563-6ee4d4dcd440", - "siteRegistry": true, - "dateReceived": "2016-11-05", - "dateCompleted": "2020-02-10", - "dateEntered": "2020-08-16", - "dateRegistrar": "2014-12-11", - "dateLocalAuthorityReceived": "2014-11-20", - "summary": "Nisi repellendus vitae nemo ea porro suscipit.\nNeque ducimus natus illum quae placeat id nisi.", - "informationUsed": "Deserunt error provident nulla voluptate amet error provident deleniti officiis.\nRepellendus debitis doloremque odio ab.\nVoluptatum facilis nemo neque quia deserunt.\nMolestiae est fugiat animi exercitationem.\nNeque voluptatibus vel quae minus.", - "pastOrPresentOrders": "Expedita temporibus delectus suscipit temporibus recusandae vero soluta rerum tempora.\nOdit deserunt quisquam maxime.", - "commercialAndIndustrialPurposes": [ - { - "uuid": "36f13930-1554-4930-895f-dce95a8dc6b9", - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false - }, - { - "uuid": "1c91da4d-8231-440b-9b1f-e61a7a683ec7", - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false - }, - { - "uuid": "95017b11-d045-4d9e-8cb9-ce3a6a0694e0", - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true } ] } ], "activityLog": [ { - "uuid": "ceabc847-f69f-4cd0-ac01-7fdf842e9203", + "uuid": "ea3c6772-3243-479e-ba20-54b78c5d007c", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "VONRUEDEN JULIUS", - "timestamp": "2019-02-03" - }, - { - "uuid": "eb173069-5919-48e6-b829-5a0c081a9814", - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "CASSIN CONCEPCION", - "timestamp": "2015-09-08" - }, - { - "uuid": "c4425b15-8bad-4fb1-be64-34f8271cd6e2", - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "MCCLURE MAGALI", - "timestamp": "2020-02-14" + "user": "ANKUNDING ASTRID", + "timestamp": "2022-04-28" }, { - "uuid": "d761faa4-89de-4465-89c8-b4fb03370a25", + "uuid": "9b40a552-ac91-4bdb-a7c8-0a3b5ba77340", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "LARKIN DARIO", - "timestamp": "2017-12-07" - }, - { - "uuid": "9b614b6a-71fe-47e2-bf78-ed858cc19cc0", - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "BRUEN CORY", - "timestamp": "2016-06-21" - }, - { - "uuid": "92d168e4-915d-41df-922c-ed8aaa30c785", - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "CREMIN-FISHER VINCENZO", - "timestamp": "2019-12-19" - }, - { - "uuid": "d7f72e9f-a62c-497c-b023-280a6db0e527", - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "CARROLL TOY", - "timestamp": "2015-01-16" + "user": "GIBSON KIM", + "timestamp": "2019-07-23" }, { - "uuid": "27e165e1-24d6-4bb3-92e8-fddc8045f82d", + "uuid": "b2f130fc-1c17-41cf-94b1-0d6e78f1ed6d", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "SWIFT LINDSAY", - "timestamp": "2017-12-27" + "user": "MURRAY MARYAM", + "timestamp": "2020-02-04" }, { - "uuid": "6067f5fb-9b07-4d7a-a955-4c6f6d8c1b93", + "uuid": "23d4baf7-1a61-457f-a6fe-184be99e242e", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "BOYER MARLEE", - "timestamp": "2023-01-04" + "user": "QUIGLEY LAVERN", + "timestamp": "2018-04-01" }, { - "uuid": "c9e4a909-6ee0-4997-a1fa-6d6263279df8", + "uuid": "bf62a7ee-6611-40ff-b682-2baf80563ddb", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "COLLINS GARRISON", - "timestamp": "2023-05-10" + "user": "WALSH DAYNA", + "timestamp": "2015-10-11" } ], "associatedSites": [ { - "uuid": "4e044ea5-a6e1-48c6-8831-0c83aab928ea", - "dateNoted": "2014-08-20", + "uuid": "a54f2e13-28d6-4809-b1cd-04786d67ed88", + "dateNoted": "2018-05-31", + "notes": "", + "parcelID": "20657", + "siteID": "20744", + "siteRegistry": false + }, + { + "uuid": "6076bcf9-bab0-4b9d-acf5-a9d96ef1170e", + "dateNoted": "2021-09-21", "notes": "", - "parcelID": "17034", - "siteID": "17062", + "parcelID": "19319", + "siteID": "17101", "siteRegistry": false + }, + { + "uuid": "11a1c9d2-d3b0-43e1-855c-c3be51589a94", + "dateNoted": "2022-06-10", + "notes": "", + "parcelID": "20797", + "siteID": "18205", + "siteRegistry": true } ] }, { - "uuid": "446a6080-565f-4ddb-983a-ec43751039c9", - "siteID": 16807, - "address": "64884 Carolanne Cove", - "latitude": 51.5036, - "longitude": -125.1707, - "lastUpdated": "2020-02-13", - "city": "The Woodlands", - "region": "Thompson-Okanagan", - "victoriaFile": "26250-20/8382", + "uuid": "29309e5b-86fc-40ae-a34c-a89215fbb9ed", + "siteID": 18794, + "address": "811 Goodwin View", + "latitude": 54.8737, + "longitude": -122.6109, + "lastUpdated": "2013-11-30", + "city": "Coachella", + "region": "Kootenay", + "victoriaFile": "26250-20/14875", "regionalFile": "N/A", "parcelIDs": [ - 9072537, - 7532097, - 724015, - 5484093, - 7690237 + 9923170, + 8051997, + 9066057, + 1248824, + 1274711 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "e02663ea-b13d-4fe5-b713-37f5bd88232d", - "createdAt": "2015-05-15", - "completed": "2021-07-04", - "initiated": "2016-06-18", - "ministryContact": "ANDERSON CANDELARIO", + "uuid": "a033e495-cd9c-484b-924d-b9ae307a15d9", + "createdAt": "2013-11-04", + "completed": "2018-06-14", + "initiated": "2022-11-11", + "ministryContact": "ROBEL ANGIE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -89713,32 +105664,38 @@ ], "notationParticipants": [ { - "uuid": "476545ab-8d75-408e-bcf2-205981278f73", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "uuid": "69d6a60d-c98a-4313-a540-5453c6bde221", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "da7dacb7-3778-4ba2-b4a6-7fdc45a6d869", + "uuid": "be5783b5-a854-4a2a-8f0a-f665b00b2a09", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "ccf71fe3-dcf4-4880-8e1d-f550c8336513", - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "0dcc5b86-81e0-4e75-b789-22929891838a", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true + }, + { + "uuid": "fb07d7c0-7907-4796-adaf-8e642c0524ea", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "a8ea5972-095e-49e2-89e4-354e9f553594", - "createdAt": "2014-05-10", - "completed": "2021-02-22", - "initiated": "2015-05-02", - "ministryContact": "UPTON AILEEN", + "uuid": "4ff91e23-de66-4a85-9507-9071dab7b4ac", + "createdAt": "2023-02-04", + "completed": "2017-04-28", + "initiated": "2019-11-25", + "ministryContact": "KIRLIN JUDY", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -89747,33 +105704,67 @@ ], "notationParticipants": [ { - "uuid": "423f0b79-a573-4e7a-898f-fdf8a59b2baa", + "uuid": "a392f5e6-23a7-48aa-b079-9041a4f217f4", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false }, { - "uuid": "40da6c0b-8dfb-4dad-91f7-a0aa44fb29f1", + "uuid": "91124055-79a6-4645-9d90-add5a8231bf3", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "7c2826e1-982b-4177-800d-b601eb90a5e6", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "fd3021e5-733d-4d8e-9561-3dcf1fe4365f", + "uuid": "67a4081a-53eb-4e9f-bc47-47ac0ffaaa5a", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false } ], "siteRegistry": false + }, + { + "uuid": "10207453-9435-4e45-841e-c15804a63acd", + "createdAt": "2018-12-11", + "completed": "2022-12-18", + "initiated": "2018-03-19", + "ministryContact": "LANG TYRELL", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "uuid": "747743cb-cd10-499d-b53b-ddbf60574be9", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "7682d12b-7cf9-4bcc-b3e5-3d99356ede36", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true } ], "participants": [ { - "uuid": "d76b69fe-a5c3-4c8e-b698-614e3ef27c16", - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2017-09-19", - "startDate": "2021-08-21", + "uuid": "541e4908-48ed-4fb3-8d59-be53f13c9508", + "name": "IPSUM", + "endDate": "2015-08-14", + "startDate": "2023-05-06", "notes": "", "roles": [ "ORGANIZATION" @@ -89781,122 +105772,192 @@ "siteRegistry": false }, { - "uuid": "62bb4c9b-80b8-47bc-8754-090e40e2c8fb", - "name": "AMET, DOLOR SIT", - "endDate": "2018-03-27", - "startDate": "2021-02-01", + "uuid": "57775cbe-da2e-44b5-8f60-a4d087477879", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2023-10-01", + "startDate": "2017-01-29", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": true }, { - "uuid": "ba1351ff-12b8-4994-aa80-628f09359769", - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2018-07-16", - "startDate": "2015-03-18", + "uuid": "74217f8e-def4-4820-a564-90927d9a549b", + "name": "IPSUM", + "endDate": "2017-11-05", + "startDate": "2023-09-09", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": false + "siteRegistry": true + } + ], + "documents": [ + { + "uuid": "24027e74-8a9d-47fb-943a-9c54b59b9b1d", + "siteRegistry": true, + "documentDate": "2020-03-15", + "receivedDate": "2022-03-06", + "uploadedDate": "2016-03-10", + "title": "Summary of Site Conditions, 1537 W 41st Avenue, Vancouver", + "participants": [ + { + "uuid": "0d84cfda-0570-4162-acfa-53f26237068c", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "8bd80337-0432-4bda-8fcd-08513dbb6b65", + "name": "IPSUM", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "64e0672d-969e-4173-834b-ff209b5c8902", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": true, + "role": "AUTHOR" + } + ] }, { - "uuid": "6698b4da-7443-475e-9362-45d1862e7cde", - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2020-01-20", - "startDate": "2020-06-20", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": false + "uuid": "ad0d57f6-f6c7-4d16-b183-59b5cb7966b6", + "siteRegistry": true, + "documentDate": "2021-01-14", + "receivedDate": "2023-01-13", + "uploadedDate": "2022-03-02", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "072fc684-9e7d-4db2-8b93-0ffe33f27c2f", + "name": "IPSUM", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "a9dc6533-2567-498d-ad4a-293c119908cd", + "name": "IPSUM", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "46daf51a-998f-431a-8872-aa6f472974cf", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": true, + "role": "AUTHOR" + } + ] } ], "suspectLandUses": [ { - "uuid": "1f02b15c-df36-46f3-bca5-dd54921c1388", - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-02-09 (described on Site Profile dated 2016-02-09)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" - }, - { - "uuid": "f2531daa-8382-4329-afce-419c5c77f1e6", + "uuid": "9b424d03-a16d-4d8e-9cb0-0d9756988f83", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2023-09-25 (described on Site Profile dated 2023-09-25)", + "notes": "INSERTED FOR SITE PROFILE DATED 2016-01-05 (described on Site Profile dated 2016-01-05)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "uuid": "4d41c9df-029d-45ce-afe5-34eb6f20a0df", + "uuid": "be006fb4-b7fb-445a-9391-d49d738a56d2", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-10-30 (described on Site Profile dated 2022-10-30)", + "notes": "INSERTED FOR SITE PROFILE DATED 2013-10-23 (described on Site Profile dated 2013-10-23)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "uuid": "d8a1ce8d-1c26-4ca9-b091-ef9f6c4bde60", + "uuid": "f053ddab-dc1a-4934-927e-51448b24f693", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2017-03-09 (described on Site Profile dated 2017-03-09)", + "notes": "INSERTED FOR SITE PROFILE DATED 2015-01-13 (described on Site Profile dated 2015-01-13)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], "parcelDescriptions": [ { - "uuid": "bb62833c-c102-4664-93af-865b48a25e5d", + "uuid": "19b17776-90d0-42d7-8bfa-6f597917f03e", "siteRegistry": false, - "dateNoted": "2016-10-15", - "parcelID": "17038", - "crownLandUsePIN": "20466", - "crownLandFileNumber": "20911", - "landDescription": "LOT 5 OF LOT 3 BLOCK 4 DISTRICT LOT 1 PLAN 9402" + "dateNoted": "2018-12-03", + "parcelID": "20946", + "crownLandUsePIN": "16650", + "crownLandFileNumber": "17276", + "landDescription": "LOT 2 OF LOT 5 BLOCK 2 DISTRICT LOT 2 PLAN 4381" }, { - "uuid": "e24a3fa5-23d2-4ccd-b211-1c7465900fcb", + "uuid": "0c574211-7ad3-4415-8354-94ed4f72c146", "siteRegistry": false, - "dateNoted": "2022-12-18", - "parcelID": "19807", - "crownLandUsePIN": "18096", - "crownLandFileNumber": "15423", - "landDescription": "LOT 4 OF LOT 4 BLOCK 5 DISTRICT LOT 5 PLAN 4671" + "dateNoted": "2014-02-21", + "parcelID": "18409", + "crownLandUsePIN": "19271", + "crownLandFileNumber": "17172", + "landDescription": "LOT 3 OF LOT 1 BLOCK 1 DISTRICT LOT 5 PLAN 4257" }, { - "uuid": "4bbaf7c5-82c6-48ca-af85-f4310c184f6c", - "siteRegistry": false, - "dateNoted": "2018-11-23", - "parcelID": "15991", - "crownLandUsePIN": "19442", - "crownLandFileNumber": "20648", - "landDescription": "LOT 4 OF LOT 5 BLOCK 3 DISTRICT LOT 4 PLAN 5957" + "uuid": "0b1da976-edde-4abb-8f7c-431003cb94d7", + "siteRegistry": true, + "dateNoted": "2021-11-28", + "parcelID": "20090", + "crownLandUsePIN": "18542", + "crownLandFileNumber": "20099", + "landDescription": "LOT 5 OF LOT 3 BLOCK 5 DISTRICT LOT 4 PLAN 9392" + }, + { + "uuid": "60c3c734-c8d5-4425-a80c-64889b0c3b16", + "siteRegistry": true, + "dateNoted": "2020-06-11", + "parcelID": "19467", + "crownLandUsePIN": "16805", + "crownLandFileNumber": "18183", + "landDescription": "LOT 3 OF LOT 3 BLOCK 3 DISTRICT LOT 4 PLAN 5953" } ], "siteDisclosures": [ { - "uuid": "b4db8c0c-07b0-4e93-a2f2-b267912718eb", - "siteRegistry": true, - "dateReceived": "2018-01-12", - "dateCompleted": "2016-09-20", - "dateEntered": "2023-01-16", - "dateRegistrar": "2016-06-15", - "dateLocalAuthorityReceived": "2013-12-28", - "summary": "Laborum in mollitia.\nSimilique unde assumenda laudantium suscipit recusandae earum pariatur beatae.\nDistinctio accusantium dolorem consequuntur dolor cum.", - "informationUsed": "Architecto eum velit sapiente distinctio dignissimos sunt.\nTempore delectus possimus pariatur expedita dolorem eligendi ea.\nEum eaque labore alias explicabo accusantium possimus.", - "pastOrPresentOrders": "Voluptate ut nesciunt illum quasi dolor laudantium.", + "uuid": "20d8833a-855f-494e-8866-0ce653e3e3e2", + "siteRegistry": false, + "dateReceived": "2016-04-09", + "dateCompleted": "2022-01-20", + "dateEntered": "2018-09-20", + "dateRegistrar": "2018-12-17", + "dateLocalAuthorityReceived": "2018-04-09", + "summary": "Ad ipsam vero eum quas.\nSapiente nobis autem reprehenderit fugiat totam.", + "informationUsed": "Cupiditate cumque dicta atque quae nostrum fugit porro.\nQuaerat ducimus ipsam quae ad architecto impedit ratione.\nSit temporibus earum occaecati dignissimos.\nEveniet dolore unde necessitatibus quidem explicabo dicta maiores accusamus.\nDolorum cumque et.", + "pastOrPresentOrders": "Blanditiis reprehenderit optio deleniti eos distinctio perspiciatis nulla.", "commercialAndIndustrialPurposes": [ { - "uuid": "c77bdd4f-1a29-4581-a509-c59260eeb3dd", + "uuid": "4272ec2a-189c-4796-a6b5-f37e212c0cfd", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "ba90ebde-0318-4351-9efb-13ae803e0cf5", + "uuid": "518e7188-9106-4485-b920-793b538e0295", "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + } + ] + }, + { + "uuid": "0db85758-746e-4b19-93bc-f49c59a1450e", + "siteRegistry": true, + "dateReceived": "2019-10-26", + "dateCompleted": "2015-08-24", + "dateEntered": "2016-06-05", + "dateRegistrar": "2018-04-07", + "dateLocalAuthorityReceived": "2013-12-17", + "summary": "Consequuntur animi nulla ducimus voluptatem veniam quaerat.\nQuasi reiciendis eaque excepturi vel nam consectetur possimus.", + "informationUsed": "Quaerat soluta vitae id fuga nesciunt eius.\nQuos vero dolor labore est ipsam vero perferendis.\nEum suscipit fugit.", + "pastOrPresentOrders": "Iste officiis neque.", + "commercialAndIndustrialPurposes": [ + { + "uuid": "8114265a-916e-4c80-9cd5-332fc55d8fc9", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, { - "uuid": "485c258a-8932-421e-860c-6c24dbfe58ea", - "scheduleReference": "F2*", + "uuid": "07549aee-bd26-4aea-a2ef-58fa31a8c6bd", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false } @@ -89905,93 +105966,78 @@ ], "activityLog": [ { - "uuid": "68c3c479-ed00-4a19-8ed5-cc9064cf386d", + "uuid": "2095639d-e4e7-4bb4-b7cf-9441e23672ec", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "MAYER JACE", - "timestamp": "2019-04-06" + "user": "SCHROEDER CLEMENTINE", + "timestamp": "2020-04-05" }, { - "uuid": "a0b95035-afc4-478c-8542-3fa9d158f066", + "uuid": "d5144e1e-9171-4410-bb9c-59ee742fab7e", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "KLEIN BARRETT", - "timestamp": "2016-04-08" - }, - { - "uuid": "fb3e861f-cf41-4333-ae2f-ba66353fb419", - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "SCHOWALTER KEVIN", - "timestamp": "2019-07-05" + "user": "WILKINSON LISETTE", + "timestamp": "2014-05-18" }, { - "uuid": "36268bd6-6580-4f86-bb50-80729056f3c4", - "siteRegistry": true, + "uuid": "dc3a0784-100f-4c7c-ad64-1b75b5f7536d", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "LEGROS JAY", - "timestamp": "2020-09-27" + "user": "JONES VALLIE", + "timestamp": "2023-06-18" }, { - "uuid": "371154a8-6ca0-4b41-bfa1-623993153414", + "uuid": "a8a8b702-d0fb-478c-9fbc-ad77fbe0704b", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "BODE CARTER", - "timestamp": "2022-04-30" + "user": "SCHUMM LAYLA", + "timestamp": "2021-07-01" }, { - "uuid": "c689e578-b786-4c33-9fbb-949e00825267", - "siteRegistry": false, + "uuid": "70fdb146-7df6-4dbc-a0ee-215037e91f40", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "KEMMER MERL", - "timestamp": "2015-04-08" + "user": "WHITE JOELLE", + "timestamp": "2016-01-03" } ], "associatedSites": [ { - "uuid": "1857dbb4-4947-436d-87ff-44689726f9c0", - "dateNoted": "2021-01-22", - "notes": "", - "parcelID": "16476", - "siteID": "19254", - "siteRegistry": true - }, - { - "uuid": "b8c78477-e102-4e82-bde9-e259c420b998", - "dateNoted": "2021-08-06", + "uuid": "36955f7e-1fd5-4a64-acb7-4ee9d4caa849", + "dateNoted": "2014-01-24", "notes": "", - "parcelID": "20559", - "siteID": "16728", + "parcelID": "20702", + "siteID": "20562", "siteRegistry": false } ] }, { - "uuid": "e2b90f18-214a-4bbe-8b03-97d655abec79", - "siteID": 20496, - "address": "3821 Malachi Vista", - "latitude": 58.6915, - "longitude": -119.421, - "lastUpdated": "2018-05-27", - "city": "Lake Tad", - "region": "Kootenay", - "victoriaFile": "26250-20/5849", + "uuid": "62020399-7620-43c1-a625-b931034ed7ef", + "siteID": 18007, + "address": "355 Monahan Pine", + "latitude": 51.8597, + "longitude": -138.295, + "lastUpdated": "2020-09-29", + "city": "North Emelyside", + "region": "Mainland/Southwest", + "victoriaFile": "26250-20/8749", "regionalFile": "N/A", "parcelIDs": [ - 5085165, - 4567192, - 4482740, - 2846942, - 4896415 + 8862028, + 5654596, + 4826428, + 3861433, + 8555809 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "5d2a2e7c-29f4-4ed0-9661-0bcc66579bbc", - "createdAt": "2023-02-04", - "completed": "2022-06-11", - "initiated": "2015-02-03", - "ministryContact": "KOEPP VERNIE", + "uuid": "aeae5974-e1c6-42ae-8311-585e8cbb6cd3", + "createdAt": "2021-05-18", + "completed": "2015-10-13", + "initiated": "2015-01-03", + "ministryContact": "ANKUNDING ALFREDO", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -90000,44 +106046,84 @@ ], "notationParticipants": [ { - "uuid": "dd2c1b8f-cc84-46af-b1b2-512bf22576a1", + "uuid": "aaf24f8b-8ed0-46b6-bc9e-85b8c6cbb11c", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "7fdbc4fb-d263-4b25-8c36-8c661c34e222", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "7ee747ff-c2d1-4c46-8901-df5b1df53861", + "uuid": "636db21d-6507-4b3e-bc68-0a7fbff40bd8", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true + }, + { + "uuid": "2efbefb1-8c76-429a-bd1d-0bd51f4a48b3", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": true + } + ], + "siteRegistry": true + }, + { + "uuid": "da4060ee-6290-43ca-9018-a64f976d2629", + "createdAt": "2020-12-31", + "completed": "2016-05-20", + "initiated": "2017-01-17", + "ministryContact": "WHITE JOHNNIE", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "uuid": "0360e2a3-9d75-4c02-b421-3dfeea37bace", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true }, { - "uuid": "19cb42c6-a003-47f9-8fe9-046bbba93dab", + "uuid": "f14419c9-6f16-487f-a63c-6e2436ca0288", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false }, { - "uuid": "330f52ca-8d7a-4053-86f3-269932341445", + "uuid": "439a3a5f-7245-470b-89be-c21282269099", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "9509b4dd-10bb-4561-981f-9f573c4c83b8", + "uuid": "88d60c5f-ef10-43f0-aad6-ba088e542bcf", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", + "siteRegistry": true + }, + { + "uuid": "c9677f3f-26f2-4392-b025-3dc9231f8838", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "2b0531bd-ebea-4962-a868-b178b91c5f30", - "createdAt": "2018-12-25", - "completed": "2019-03-03", - "initiated": "2013-10-20", - "ministryContact": "NIENOW RAVEN", + "uuid": "082c3431-b7f2-4d2f-921c-56690832c586", + "createdAt": "2019-07-14", + "completed": "2021-11-14", + "initiated": "2016-07-16", + "ministryContact": "ZBONCAK DENNIS", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -90046,72 +106132,89 @@ ], "notationParticipants": [ { - "uuid": "97cb12dc-fb77-42ba-adec-1b7270f9cd0c", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true + "uuid": "d25e3a3e-1b16-461f-8b76-b3f02eeeaa92", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false }, { - "uuid": "d3b1aaa5-5bd5-43fa-9ad6-7ed3f3c96b6c", - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "e3bd3726-1d77-44da-8d00-9e1362995770", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "a0517b5a-e448-4a10-a0aa-aaf6fd2088ae", + "uuid": "0a830721-74cf-4c29-b184-d4cdcd3918f4", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "6e1425d8-13ec-4086-8ec2-756a3fbc8c5d", + "uuid": "163c44c4-fdb5-4598-9229-9cb75a579061", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true + }, + { + "uuid": "8c0682fd-54b8-4bae-b8ce-66ba7d2ad342", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true } ], "participants": [ { - "uuid": "ecac764b-62c4-4c51-9d23-d0dc8f6ef2e9", - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2022-02-10", - "startDate": "2022-10-18", + "uuid": "1fa1a105-fcb2-4007-98d6-a8d9c8a07ff2", + "name": "IPSUM", + "endDate": "2020-06-25", + "startDate": "2021-01-26", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": true }, { - "uuid": "557f33d9-553f-42a1-9953-7adbc14f7e71", + "uuid": "bd179eed-e93f-4903-8697-cc35b892077e", + "name": "AMET, DOLOR SIT", + "endDate": "2015-04-07", + "startDate": "2023-10-04", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": false + }, + { + "uuid": "1a771396-0205-4949-be7e-91bcb056d3e2", "name": "IPSUM", - "endDate": "2016-08-31", - "startDate": "2023-02-26", + "endDate": "2017-01-04", + "startDate": "2017-06-17", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": true }, { - "uuid": "6e8bcf81-7a50-42a8-9f6d-549a231a5762", + "uuid": "9dafa83f-ac39-4979-8abe-f0aad7e30ed2", "name": "IPSUM", - "endDate": "2021-07-23", - "startDate": "2018-11-20", + "endDate": "2020-11-08", + "startDate": "2017-08-25", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "54318e7e-869d-402c-b7b3-28c6de36e24c", + "uuid": "7e07a779-5ddf-47df-9e07-d0ba2bab8bb3", "name": "AMET, DOLOR SIT", - "endDate": "2018-03-02", - "startDate": "2015-10-27", + "endDate": "2014-12-31", + "startDate": "2018-05-15", "notes": "", "roles": [ "EMPLOYEE" @@ -90119,205 +106222,308 @@ "siteRegistry": true } ], - "suspectLandUses": [ + "documents": [ { - "uuid": "f1a0e9a5-302e-4fca-9260-4ed3b2048d03", - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-05-28 (described on Site Profile dated 2014-05-28)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "uuid": "c47495da-2db8-4eb3-b95b-298d48e3547c", + "siteRegistry": false, + "documentDate": "2022-04-08", + "receivedDate": "2017-07-05", + "uploadedDate": "2019-02-11", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "708c93e9-46b6-4617-a7db-e4291d98cdba", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "b9eb17f2-22cd-42e1-88b4-81036055feeb", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": true, + "role": "AUTHOR" + } + ] }, { - "uuid": "998564e9-3e31-4711-a777-f0ef4945d353", + "uuid": "4cfb33f2-b6b2-4ba8-92ad-78610434fc0d", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2020-05-10 (described on Site Profile dated 2020-05-10)", + "documentDate": "2022-03-04", + "receivedDate": "2014-01-02", + "uploadedDate": "2016-08-01", + "title": "Preliminary Site Investigation, Detailed Site Investigation and Remedial Plan for the Management Area adjacent to the Shell Site at 1503 West 41st Ave", + "participants": [ + { + "uuid": "785dbcc8-2b48-401e-a3fd-c8ad6d115d19", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "fabc4337-3aad-4fa7-974f-4ed294c389f3", + "name": "AMET, DOLOR SIT", + "siteRegistry": true, + "role": "AUTHOR" + } + ] + } + ], + "suspectLandUses": [ + { + "uuid": "fea7ca29-edf5-47ed-9072-ed419485d0de", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2018-06-13 (described on Site Profile dated 2018-06-13)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "uuid": "9d0fb9c1-561c-49fe-8f8d-4c6c9f44769f", - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-10-04 (described on Site Profile dated 2015-10-04)", + "uuid": "0e09494e-3d95-4fb9-9f52-c4b11c32f4ad", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2020-09-24 (described on Site Profile dated 2020-09-24)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "uuid": "d30a6ac3-56de-41b1-addd-8f06d0854449", + "uuid": "f449ff3c-29ef-4836-8cff-68f1649b0720", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2023-05-19 (described on Site Profile dated 2023-05-19)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "notes": "INSERTED FOR SITE PROFILE DATED 2021-08-31 (described on Site Profile dated 2021-08-31)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "uuid": "08b807cc-59ca-4e8b-b4d0-d907e29a225a", + "uuid": "408519e8-0a22-444d-b7fe-7e977b99b534", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2021-10-07 (described on Site Profile dated 2021-10-07)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "notes": "INSERTED FOR SITE PROFILE DATED 2016-03-15 (described on Site Profile dated 2016-03-15)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + }, + { + "uuid": "663548c3-db0a-4f60-9f44-9c2270e5a979", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2020-07-27 (described on Site Profile dated 2020-07-27)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], "parcelDescriptions": [ { - "uuid": "e9c78dcb-4ee2-44e0-a164-5e6052262943", - "siteRegistry": true, - "dateNoted": "2021-09-07", - "parcelID": "19299", - "crownLandUsePIN": "19165", - "crownLandFileNumber": "20753", - "landDescription": "LOT 4 OF LOT 4 BLOCK 3 DISTRICT LOT 4 PLAN 4022" + "uuid": "9a93b1ce-5d27-4a63-a12f-06b2bfe48612", + "siteRegistry": false, + "dateNoted": "2017-06-28", + "parcelID": "20757", + "crownLandUsePIN": "20947", + "crownLandFileNumber": "19408", + "landDescription": "LOT 2 OF LOT 3 BLOCK 1 DISTRICT LOT 2 PLAN 5770" }, { - "uuid": "28f52023-0988-40f8-a199-bd0c7b0a787e", + "uuid": "50214987-395a-47b5-ba4f-7739a7a9dcf3", "siteRegistry": false, - "dateNoted": "2023-06-19", - "parcelID": "19194", - "crownLandUsePIN": "20094", - "crownLandFileNumber": "19934", - "landDescription": "LOT 3 OF LOT 1 BLOCK 4 DISTRICT LOT 3 PLAN 7441" + "dateNoted": "2016-09-06", + "parcelID": "15830", + "crownLandUsePIN": "15743", + "crownLandFileNumber": "19855", + "landDescription": "LOT 4 OF LOT 2 BLOCK 2 DISTRICT LOT 4 PLAN 5831" }, { - "uuid": "d5923250-19c0-42c1-ab57-13c526511748", + "uuid": "506dcf73-6962-4567-aeb8-07dafc06323a", + "siteRegistry": false, + "dateNoted": "2023-03-08", + "parcelID": "20342", + "crownLandUsePIN": "20103", + "crownLandFileNumber": "20423", + "landDescription": "LOT 3 OF LOT 1 BLOCK 2 DISTRICT LOT 1 PLAN 7122" + }, + { + "uuid": "b4bee7ce-3347-4375-be80-979269eb3173", "siteRegistry": true, - "dateNoted": "2023-03-14", - "parcelID": "16258", - "crownLandUsePIN": "17132", - "crownLandFileNumber": "17957", - "landDescription": "LOT 2 OF LOT 3 BLOCK 4 DISTRICT LOT 3 PLAN 9596" + "dateNoted": "2014-07-11", + "parcelID": "16076", + "crownLandUsePIN": "15447", + "crownLandFileNumber": "19572", + "landDescription": "LOT 1 OF LOT 4 BLOCK 3 DISTRICT LOT 1 PLAN 7590" }, { - "uuid": "fdfa5557-506e-46d9-9c16-1abc2a5dc8ed", - "siteRegistry": false, - "dateNoted": "2018-11-30", - "parcelID": "18849", - "crownLandUsePIN": "16996", - "crownLandFileNumber": "19808", - "landDescription": "LOT 1 OF LOT 4 BLOCK 5 DISTRICT LOT 5 PLAN 5070" + "uuid": "fadcf53f-5484-491f-bf81-377b3c29ecf8", + "siteRegistry": true, + "dateNoted": "2018-04-23", + "parcelID": "18725", + "crownLandUsePIN": "15530", + "crownLandFileNumber": "19736", + "landDescription": "LOT 4 OF LOT 3 BLOCK 5 DISTRICT LOT 1 PLAN 9315" } ], "siteDisclosures": [ { - "uuid": "2fefc106-da59-4d3b-813c-5c8da7e154fc", - "siteRegistry": false, - "dateReceived": "2022-09-05", - "dateCompleted": "2022-03-23", - "dateEntered": "2014-07-06", - "dateRegistrar": "2014-05-12", - "dateLocalAuthorityReceived": "2023-01-01", - "summary": "Voluptates delectus quaerat dicta debitis minima tempore minima.\nError itaque porro tempora perspiciatis natus animi.", - "informationUsed": "Reiciendis excepturi vero esse dolore molestias.\nQuod odit eveniet quas.\nAspernatur error voluptatibus corporis in voluptatum suscipit deserunt error.", - "pastOrPresentOrders": "Aliquid sequi quo ducimus a.\nCorporis voluptatum laudantium.", + "uuid": "2d9f837d-efe5-4315-839f-de1668d8583e", + "siteRegistry": true, + "dateReceived": "2018-02-01", + "dateCompleted": "2018-03-02", + "dateEntered": "2022-03-14", + "dateRegistrar": "2022-08-03", + "dateLocalAuthorityReceived": "2014-02-16", + "summary": "Iste qui saepe sint minus voluptate voluptate atque.\nFacilis tempore repellat dicta beatae.", + "informationUsed": "Temporibus similique impedit excepturi vitae temporibus.\nDebitis odio soluta.\nQuo illum a autem quidem vero.\nPossimus aut quibusdam excepturi occaecati laboriosam quae ea alias harum.\nSuscipit veritatis dolor nam reprehenderit explicabo labore totam consectetur.", + "pastOrPresentOrders": "Vero architecto non esse adipisci provident distinctio quas.\nEos omnis consequuntur sint accusantium.\nVoluptate praesentium deserunt delectus soluta vel commodi assumenda.", + "commercialAndIndustrialPurposes": [ + { + "uuid": "948ea086-0601-4b33-8e76-4ccb5446b781", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + }, + { + "uuid": "0ee73170-577e-4702-8efe-83d969e1d03f", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true + } + ] + }, + { + "uuid": "f3b034b1-7e73-44d5-b9c4-9deeba7c97a1", + "siteRegistry": true, + "dateReceived": "2014-06-20", + "dateCompleted": "2021-10-15", + "dateEntered": "2014-09-26", + "dateRegistrar": "2018-10-25", + "dateLocalAuthorityReceived": "2017-09-21", + "summary": "Pariatur iure perferendis rem exercitationem repudiandae natus quo.\nExcepturi numquam dolorem tempora minus qui.\nImpedit voluptates iure labore itaque nam iure iusto voluptate.", + "informationUsed": "Expedita quidem beatae doloribus magnam.\nSunt doloremque inventore nobis consequuntur maxime.\nCommodi quia blanditiis tempore minus hic cum veritatis corporis.\nEius dicta sequi id sunt illo a consectetur facilis suscipit.\nVelit dolore laborum adipisci esse ducimus adipisci temporibus voluptatem aliquam.", + "pastOrPresentOrders": "Repudiandae totam ex numquam quas soluta repellendus.", "commercialAndIndustrialPurposes": [ { - "uuid": "d436aece-dfe1-4067-9df1-71079c450210", + "uuid": "de8b6833-0696-496b-94ae-b7d91442191a", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { - "uuid": "d8ac9cb3-6c6a-4450-ac60-9bf01e1ca8a1", + "uuid": "2d62c323-4f0b-4698-97c7-1d32ea5a02a9", "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": true }, { - "uuid": "0bc5c618-d962-465f-88d5-0608446f7ea8", + "uuid": "1ffbd612-89ca-4751-a869-2204beffc772", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true + }, + { + "uuid": "4ce4b9d1-9e5c-43c2-934a-7cc98b9d997b", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false } ] } ], "activityLog": [ { - "uuid": "9fd5baf6-da77-4a89-b930-c21df053c0b7", - "siteRegistry": true, + "uuid": "afd15d91-6a85-4606-83a1-1d036d264993", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "OLSON ALLAN", - "timestamp": "2018-07-05" + "user": "JOHNSON MARGRET", + "timestamp": "2015-11-01" }, { - "uuid": "b660f41a-5e15-42c9-b515-a0f0d010171f", + "uuid": "4f38961a-23dd-49e0-90f9-c8e4e8c564d2", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "GOLDNER RAHEEM", - "timestamp": "2022-03-01" + "user": "HIRTHE FREDERIC", + "timestamp": "2022-08-08" }, { - "uuid": "8b17d625-522f-4595-9f31-a8830409be1e", - "siteRegistry": true, + "uuid": "bbefc582-2605-4cab-bc45-c4f497d0c509", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "HEGMANN ELWIN", - "timestamp": "2020-08-16" + "user": "PFANNERSTILL MAY", + "timestamp": "2020-03-06" }, { - "uuid": "fe0d3415-1530-4759-bec5-dbdc55d30514", + "uuid": "96772366-65da-4ae0-881e-fac066055dc6", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "BAYER CARMELO", - "timestamp": "2013-12-16" + "user": "DICKI FEDERICO", + "timestamp": "2017-04-27" }, { - "uuid": "31023571-068b-4a49-b00a-71f478a58d34", - "siteRegistry": false, + "uuid": "ea77fc29-92a4-45a3-bc92-d2ee6a38436c", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "YUNDT PASCALE", - "timestamp": "2020-07-24" + "user": "BAILEY OPHELIA", + "timestamp": "2013-11-18" }, { - "uuid": "00167e83-7b38-462e-bd21-e2db618393a0", + "uuid": "d666a097-8ec1-40cd-a427-2ceb6af58f19", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "REILLY-HARRIS ELEANORE", - "timestamp": "2016-09-07" + "user": "OKUNEVA ROBIN", + "timestamp": "2017-04-24" }, { - "uuid": "1fa5330a-c520-45c7-b784-149393a46365", + "uuid": "55272c8b-67fb-4cab-a768-b7a47e25c7d8", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "HOEGER ASHA", - "timestamp": "2017-11-02" + "user": "LEUSCHKE WYMAN", + "timestamp": "2014-02-25" }, { - "uuid": "88b0dc09-eccf-4b01-b38b-07998fb6714d", + "uuid": "c3e2376d-be71-480e-b0c6-501cfc94003a", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "MURRAY LILLIE", - "timestamp": "2014-02-09" + "user": "BAUMBACH QUINTON", + "timestamp": "2020-02-18" } ], "associatedSites": [ { - "uuid": "007e32d1-0db0-41f2-af9b-52c359d9dd8a", - "dateNoted": "2023-07-22", + "uuid": "4d2eddf4-bc8a-456a-94fe-2f80143c4002", + "dateNoted": "2013-11-26", "notes": "", - "parcelID": "16813", - "siteID": "20960", + "parcelID": "18501", + "siteID": "18797", "siteRegistry": true + }, + { + "uuid": "f3b0fd7b-ba4d-4b70-b45d-8253c88b8471", + "dateNoted": "2020-05-13", + "notes": "", + "parcelID": "20939", + "siteID": "17404", + "siteRegistry": false + }, + { + "uuid": "6d15211f-2e39-4906-a193-c00e124de696", + "dateNoted": "2015-02-07", + "notes": "", + "parcelID": "16051", + "siteID": "15253", + "siteRegistry": false } ] }, { - "uuid": "93793d65-5ac6-4f65-bb64-86e68ecc93a8", - "siteID": 20402, - "address": "2328 Runolfsdottir Lane", - "latitude": 55.5347, - "longitude": -118.9045, - "lastUpdated": "2021-03-14", - "city": "East Rosemaryport", - "region": " North Coast", - "victoriaFile": "26250-20/18908", + "uuid": "68a03e39-f311-46e1-b468-5a85c06cde64", + "siteID": 19569, + "address": "36166 Jasen Way", + "latitude": 50.3615, + "longitude": -129.8264, + "lastUpdated": "2015-05-23", + "city": "Pourosburgh", + "region": "Kootenay", + "victoriaFile": "26250-20/15312", "regionalFile": "N/A", "parcelIDs": [ - 7491909, - 7298057, - 6892468, - 7038402, - 3435887 + 4701643, + 6450774, + 9605956, + 6787093, + 1452594 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "88e5f8ab-c25c-409b-9c8e-2452e38105e9", - "createdAt": "2020-05-12", - "completed": "2022-03-18", - "initiated": "2018-09-28", - "ministryContact": "WATERS TRE", + "uuid": "ac603888-9369-48cb-858f-1aba0c2eccf9", + "createdAt": "2015-06-10", + "completed": "2014-06-17", + "initiated": "2015-06-02", + "ministryContact": "KUNZE SCOTTIE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -90326,54 +106532,38 @@ ], "notationParticipants": [ { - "uuid": "fbf6bba1-c53f-4487-8049-473eaec0f84d", + "uuid": "bec7ca08-4ebc-4ab5-aa7c-8f88743a27bc", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "bcc06d01-3a1f-418e-84bb-2dc9748ca078", + "uuid": "5fb486e3-b1f4-4c0c-bd86-1cf4432f6dec", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true - } - ], - "siteRegistry": true - }, - { - "uuid": "006d4d0c-bc3c-4561-81a4-1f4f3b9ff3d0", - "createdAt": "2018-03-31", - "completed": "2017-01-25", - "initiated": "2021-11-06", - "ministryContact": "CORKERY ROYCE", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ + "siteRegistry": false + }, { - "uuid": "6cc6f78f-7f8d-46b2-b45c-72cf685d14e6", - "name": "SHELL CANADA PRODUCTS", + "uuid": "50e587cc-8c40-4540-8a85-675d9f6ae3b5", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "aa940a95-e1a7-481d-8d7d-4191d2e336d3", + "uuid": "dcb093b9-eaab-4dd4-a855-6b6feb0dfd83", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true } ], "siteRegistry": true }, { - "uuid": "c1260f5f-7ad1-4e91-8806-403518179a60", - "createdAt": "2021-10-15", - "completed": "2018-12-13", - "initiated": "2016-08-07", - "ministryContact": "TREUTEL JEREMIE", + "uuid": "f3a4f5f0-9df0-495e-aedb-7fe21248d865", + "createdAt": "2020-07-20", + "completed": "2021-10-04", + "initiated": "2017-01-23", + "ministryContact": "YUNDT TELLY", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -90382,32 +106572,38 @@ ], "notationParticipants": [ { - "uuid": "856e1c2f-e503-4833-9dbb-0281a5c7aa54", + "uuid": "89a9ad5d-8b9f-4066-9c66-2936c65aaad4", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "aac72025-0ffb-42ad-a677-7862466b1422", - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", + "uuid": "5df23aa5-cefc-4a03-a3e2-f97b57723d6d", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "7a4ac86b-8287-46ba-b9bb-c9726b237cf4", - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "55a4ed6b-db57-43cc-9c60-2204a9989916", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false + }, + { + "uuid": "b4b913f1-c78e-483f-964e-b100ffedd6f4", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "b6a59c61-e39c-4888-8eac-724b8142cc41", - "createdAt": "2017-01-12", - "completed": "2018-03-07", - "initiated": "2016-02-24", - "ministryContact": "HACKETT CATHRINE", + "uuid": "a7861b03-a84c-4a6c-8ba9-8ce3fba4f037", + "createdAt": "2015-07-18", + "completed": "2021-03-21", + "initiated": "2020-12-24", + "ministryContact": "RAU ISRAEL", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -90416,21 +106612,15 @@ ], "notationParticipants": [ { - "uuid": "84fc499f-99fe-4aa4-b275-96298df8e154", + "uuid": "a60d311e-74e6-4717-9198-31c7f5bdc0e5", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "uuid": "91153b9e-3cb2-400b-9e70-ce19dff6f209", - "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "5b932373-fd9f-45e7-ae17-874e08f76539", + "uuid": "5bfd4e67-00bd-4a8e-881c-bbf46b289f06", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true } ], @@ -90439,10 +106629,10 @@ ], "participants": [ { - "uuid": "433160c9-e080-4bbd-8991-a8219bc2e9dc", - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2020-01-06", - "startDate": "2020-12-20", + "uuid": "a1436873-f8f4-47d6-a743-2a859e775a04", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2020-07-05", + "startDate": "2021-03-09", "notes": "", "roles": [ "EMPLOYEE" @@ -90450,239 +106640,364 @@ "siteRegistry": true }, { - "uuid": "2994a74c-8b40-445b-bb0d-352e6ecfb4f4", + "uuid": "9370cb52-3031-4352-932e-7cbfaee2b7c5", "name": "AMET, DOLOR SIT", - "endDate": "2021-09-01", - "startDate": "2022-06-13", + "endDate": "2020-03-12", + "startDate": "2017-07-04", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], - "siteRegistry": true + "siteRegistry": false + } + ], + "documents": [ + { + "uuid": "8e3e3ef5-a6c2-4573-9f3f-c846f95fdb18", + "siteRegistry": true, + "documentDate": "2018-04-08", + "receivedDate": "2016-02-02", + "uploadedDate": "2019-06-16", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "fc4a2b47-dcb4-482a-88ff-1daa2c9ef740", + "name": "AMET, DOLOR SIT", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "0f970b07-8a63-4a2c-a9d1-271835c88d61", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": true, + "role": "AUTHOR" + } + ] }, { - "uuid": "9d0d7e8a-b717-4bf4-a390-2360b1c6887c", - "name": "IPSUM", - "endDate": "2022-06-28", - "startDate": "2019-05-10", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": true + "uuid": "0413964c-719e-4a4b-9282-0b02570826ff", + "siteRegistry": false, + "documentDate": "2013-11-25", + "receivedDate": "2022-06-02", + "uploadedDate": "2017-11-13", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "10b87112-b61d-4501-9c80-9880952fc0ec", + "name": "IPSUM", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "12f92312-bd4b-4b47-8436-ab3a37f6c48e", + "name": "AMET, DOLOR SIT", + "siteRegistry": false, + "role": "AUTHOR" + } + ] }, { - "uuid": "7f3b6d80-b625-4569-8994-ca3675e6e9b4", - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2019-01-03", - "startDate": "2014-10-19", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": true + "uuid": "5ed564be-add9-4994-b6b2-df96a6779ab4", + "siteRegistry": true, + "documentDate": "2021-03-22", + "receivedDate": "2015-11-19", + "uploadedDate": "2015-09-22", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "c3b558cf-98b6-4690-b651-9a45c0afe40c", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "58033305-b7ce-448e-8402-1662459b4c8f", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "4c571d0b-4e38-4faf-b562-151edb11ad12", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": true, + "role": "AUTHOR" + } + ] }, { - "uuid": "bdaff046-302d-4013-b2b8-f809721a419f", - "name": "SHELL CANADA PRODUCTS", - "endDate": "2018-09-07", - "startDate": "2020-10-15", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": true + "uuid": "2c6b39f7-29cf-4bb8-8240-1c4439202864", + "siteRegistry": true, + "documentDate": "2015-10-18", + "receivedDate": "2014-11-09", + "uploadedDate": "2019-01-26", + "title": "Preliminary Site Investigation, Detailed Site Investigation and Remedial Plan for the Management Area adjacent to the Shell Site at 1503 West 41st Ave", + "participants": [ + { + "uuid": "8d6369f9-1668-4f3a-9b2c-2730e421b5e2", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "379541f8-462f-4090-89a3-5578c7de433c", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "5246c91e-e9da-4e63-8688-d0adeecd2d04", + "name": "IPSUM", + "siteRegistry": false, + "role": "AUTHOR" + } + ] + }, + { + "uuid": "698fa4f3-1c0f-4035-b74c-b4664f3b2cfe", + "siteRegistry": true, + "documentDate": "2015-03-06", + "receivedDate": "2017-03-15", + "uploadedDate": "2023-06-09", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "41e9f26e-e58a-41c9-97f8-3465d00fb4ae", + "name": "AMET, DOLOR SIT", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "4470eee0-d4f0-44da-9973-a576a43474e3", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "d24a12dc-9227-4203-bd21-270664980c62", + "name": "AMET, DOLOR SIT", + "siteRegistry": false, + "role": "AUTHOR" + } + ] } ], "suspectLandUses": [ { - "uuid": "f0293c53-76d1-45bd-9734-045d03f5fdc1", - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-11-18 (described on Site Profile dated 2022-11-18)", + "uuid": "26aa2941-659f-47e8-b598-5fb58e820f61", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2022-04-20 (described on Site Profile dated 2022-04-20)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "uuid": "7deba724-4c06-461c-b1ba-38c7c1b88508", + "uuid": "0c3acf7f-a58d-4722-a5dd-0016d429d454", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-07-04 (described on Site Profile dated 2014-07-04)", + "notes": "INSERTED FOR SITE PROFILE DATED 2014-01-24 (described on Site Profile dated 2014-01-24)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "uuid": "d8c53308-0cbe-470d-b4d3-b7175e05b789", + "uuid": "af8ef943-9d85-417d-8337-9c0ad6b082b4", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2023-04-29 (described on Site Profile dated 2023-04-29)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "notes": "INSERTED FOR SITE PROFILE DATED 2015-01-28 (described on Site Profile dated 2015-01-28)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "uuid": "1621d905-287c-4c5a-8473-85317134ea39", - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2023-08-01 (described on Site Profile dated 2023-08-01)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "uuid": "bca3d672-70b3-45d8-b485-0395b3ba228f", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2018-05-21 (described on Site Profile dated 2018-05-21)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "uuid": "3b1ea9fa-8d08-4d37-86ee-bb4f9f00ee57", + "uuid": "2615b230-028a-47bc-905a-13961f6d4f02", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2020-09-19 (described on Site Profile dated 2020-09-19)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "notes": "INSERTED FOR SITE PROFILE DATED 2022-07-07 (described on Site Profile dated 2022-07-07)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], "parcelDescriptions": [ { - "uuid": "47921eeb-b879-4602-a1a8-d673ed75a660", - "siteRegistry": false, - "dateNoted": "2020-06-23", - "parcelID": "19723", - "crownLandUsePIN": "15908", - "crownLandFileNumber": "19999", - "landDescription": "LOT 5 OF LOT 3 BLOCK 1 DISTRICT LOT 3 PLAN 6401" + "uuid": "e5d0acee-1eda-4f18-a7e2-92660d217662", + "siteRegistry": true, + "dateNoted": "2020-11-23", + "parcelID": "18932", + "crownLandUsePIN": "17049", + "crownLandFileNumber": "15859", + "landDescription": "LOT 2 OF LOT 2 BLOCK 2 DISTRICT LOT 5 PLAN 6576" }, { - "uuid": "cd77d6d0-f9f1-4864-89c8-c3d08c2df51b", - "siteRegistry": false, - "dateNoted": "2015-10-02", - "parcelID": "18954", - "crownLandUsePIN": "17626", - "crownLandFileNumber": "19741", - "landDescription": "LOT 2 OF LOT 4 BLOCK 5 DISTRICT LOT 2 PLAN 9504" + "uuid": "95c90fd3-9c69-416d-8c53-1f2428e93683", + "siteRegistry": true, + "dateNoted": "2023-02-08", + "parcelID": "20393", + "crownLandUsePIN": "17242", + "crownLandFileNumber": "17793", + "landDescription": "LOT 2 OF LOT 5 BLOCK 1 DISTRICT LOT 2 PLAN 7802" }, { - "uuid": "921207c4-1095-4bc5-b7f2-084a004e649e", + "uuid": "9226dbea-4a8f-43e2-bd00-3c640594cfb9", "siteRegistry": true, - "dateNoted": "2017-02-08", - "parcelID": "20579", - "crownLandUsePIN": "19441", - "crownLandFileNumber": "16710", - "landDescription": "LOT 5 OF LOT 4 BLOCK 3 DISTRICT LOT 5 PLAN 4015" + "dateNoted": "2016-09-30", + "parcelID": "16195", + "crownLandUsePIN": "20910", + "crownLandFileNumber": "20541", + "landDescription": "LOT 1 OF LOT 5 BLOCK 2 DISTRICT LOT 3 PLAN 3358" + }, + { + "uuid": "17781a58-ce34-4220-91a5-f5508c3788f5", + "siteRegistry": true, + "dateNoted": "2015-01-04", + "parcelID": "17678", + "crownLandUsePIN": "18849", + "crownLandFileNumber": "17676", + "landDescription": "LOT 1 OF LOT 5 BLOCK 3 DISTRICT LOT 5 PLAN 3238" + }, + { + "uuid": "5b0c39b0-c9b3-4279-b1e8-42ce9881fac7", + "siteRegistry": false, + "dateNoted": "2019-11-07", + "parcelID": "19721", + "crownLandUsePIN": "18035", + "crownLandFileNumber": "16666", + "landDescription": "LOT 3 OF LOT 3 BLOCK 2 DISTRICT LOT 5 PLAN 5710" } ], "siteDisclosures": [ { - "uuid": "6845d006-ee11-4f12-b5aa-aef09dca091e", + "uuid": "1c5c330d-8fa8-4ae6-a799-504d7664e67f", "siteRegistry": false, - "dateReceived": "2017-05-11", - "dateCompleted": "2013-10-23", - "dateEntered": "2018-09-04", - "dateRegistrar": "2017-08-27", - "dateLocalAuthorityReceived": "2017-04-27", - "summary": "Asperiores occaecati quod quos illum ducimus nam maxime ad.", - "informationUsed": "Nisi cupiditate dignissimos repellat assumenda consequuntur alias aut tempora nihil.\nIpsam error dolores aliquam minus.\nDignissimos qui magnam aut ex nulla eum aliquam dolorem.", - "pastOrPresentOrders": "Architecto praesentium tempora hic corrupti qui sapiente.\nDolores voluptatibus sed nisi.", + "dateReceived": "2021-10-18", + "dateCompleted": "2014-07-08", + "dateEntered": "2013-11-02", + "dateRegistrar": "2017-04-29", + "dateLocalAuthorityReceived": "2013-11-06", + "summary": "Quis dicta excepturi perferendis tempore molestiae occaecati ipsum.\nNihil pariatur quae dolore non.", + "informationUsed": "Repellendus cupiditate itaque iure aliquid exercitationem porro impedit laborum.\nEarum adipisci deleniti.\nModi fugiat ea.", + "pastOrPresentOrders": "Sapiente labore molestias possimus assumenda.\nLaborum culpa facere dicta officia magnam cupiditate ducimus explicabo.", "commercialAndIndustrialPurposes": [ { - "uuid": "70e7b16d-fff9-48b6-a5a0-8180b86cfce8", - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true - }, - { - "uuid": "f5d75f80-55ce-4aa7-b17e-0563e1edcbd8", + "uuid": "9b4fbab1-e0ad-4589-9d6e-80d6f9ceb98c", "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, { - "uuid": "dd50ff68-8036-43ee-9eba-7958173272c5", + "uuid": "9bb7a893-f2f6-46c2-b86e-f88e4e3125dd", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, { - "uuid": "76566960-5864-4846-bc48-46ef3b5eac98", + "uuid": "d3318071-0da3-440a-8154-7cf286a21300", "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false } ] } ], "activityLog": [ { - "uuid": "e1a9f0f2-1eb7-4d2b-9ee6-9fc17caa2682", + "uuid": "6dfa145b-cab7-48a6-831e-c0b43e4fe301", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "DIBBERT DECLAN", - "timestamp": "2018-03-09" + "user": "FAY DOMENICA", + "timestamp": "2017-05-25" }, { - "uuid": "246c1817-1342-4449-9aca-5087bdbdbe56", + "uuid": "5711375e-3fcd-4e69-905b-6a046a7be5fb", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "LEMKE VELLA", - "timestamp": "2018-12-26" + "user": "MITCHELL MURRAY", + "timestamp": "2014-10-06" }, { - "uuid": "20354602-9615-4650-95e2-c790f35f176f", - "siteRegistry": false, + "uuid": "9000a3f8-e6f6-423b-88e5-46cc605b1ff1", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "STEUBER FELTON", - "timestamp": "2013-10-26" + "user": "HARTMANN KELTON", + "timestamp": "2016-09-10" }, { - "uuid": "3bc7d350-a43c-4a10-9cec-bd81fe56954c", - "siteRegistry": false, + "uuid": "d185f516-f4bb-496d-aef9-a063eb9cc97e", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "RENNER GIUSEPPE", - "timestamp": "2018-03-11" + "user": "WOLFF ADELBERT", + "timestamp": "2015-10-18" }, { - "uuid": "228fe115-3665-4781-a478-48445f2d52eb", + "uuid": "78d6fe3b-cd52-43ac-8d1d-8e0d769a4edd", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "O'CONNER AUGUST", - "timestamp": "2023-06-06" + "user": "MANTE KARLI", + "timestamp": "2017-08-17" }, { - "uuid": "25f4764f-61cc-4e69-a7d9-dbf3aaf090b1", - "siteRegistry": false, + "uuid": "18c486a5-b19a-459b-bd41-fbafbe466947", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "LANGWORTH-WEHNER BRICE", - "timestamp": "2017-05-27" + "user": "MARQUARDT AMOS", + "timestamp": "2021-01-15" }, { - "uuid": "df3820b1-a2ba-4a7c-86db-0c540472aae6", - "siteRegistry": false, + "uuid": "95211782-14c5-4ac6-b62c-dcb03dc78cdf", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "WHITE TERRENCE", - "timestamp": "2013-12-28" + "user": "DECKOW HAROLD", + "timestamp": "2020-12-06" } ], "associatedSites": [ { - "uuid": "ede18f5e-1d7d-4319-a974-4e7a07748784", - "dateNoted": "2014-08-27", + "uuid": "5e14cfad-e1ae-4a86-b075-5d73a07337ad", + "dateNoted": "2021-01-29", + "notes": "", + "parcelID": "17719", + "siteID": "16222", + "siteRegistry": true + }, + { + "uuid": "ee5b2c18-744d-438c-9df5-0ab452ba407e", + "dateNoted": "2014-01-24", "notes": "", - "parcelID": "15965", - "siteID": "15914", + "parcelID": "18209", + "siteID": "17101", "siteRegistry": false + }, + { + "uuid": "b7dc3659-2480-4dd9-b099-ca1e4bfa6ad0", + "dateNoted": "2022-08-14", + "notes": "", + "parcelID": "17303", + "siteID": "16834", + "siteRegistry": true } ] }, { - "uuid": "84d0c5d1-9e94-4bc4-a5f0-ace17c1c8e4c", - "siteID": 16078, - "address": "84498 Linnie Garden", - "latitude": 56.4421, - "longitude": -136.4891, - "lastUpdated": "2023-05-12", - "city": "Juniorcester", - "region": "Thompson-Okanagan", - "victoriaFile": "26250-20/3756", + "uuid": "707b6460-9846-42c9-a103-d04e77b8c1ec", + "siteID": 15904, + "address": "7818 Kristin Manor", + "latitude": 55.9238, + "longitude": -137.2498, + "lastUpdated": "2016-12-16", + "city": "North Providenci", + "region": "Mainland/Southwest", + "victoriaFile": "26250-20/12657", "regionalFile": "N/A", "parcelIDs": [ - 4587346, - 8203607, - 6992859, - 9806368, - 6957671 + 8607602, + 3062185, + 9230024, + 4697375, + 6499730 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "c2d320b6-e8d8-42d9-8344-c9e1deddc4fd", - "createdAt": "2015-03-29", - "completed": "2018-11-19", - "initiated": "2018-08-16", - "ministryContact": "CRONIN VESTA", + "uuid": "70edc9f2-7292-45bd-a409-57309eaec010", + "createdAt": "2023-02-26", + "completed": "2023-07-15", + "initiated": "2016-04-14", + "ministryContact": "WEIMANN GERTRUDE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -90691,32 +107006,44 @@ ], "notationParticipants": [ { - "uuid": "344548c0-bb5b-499c-86e0-bf324226022a", + "uuid": "1badb513-ddb5-485f-b0cb-238160b059c0", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "30bc5774-9161-4348-8bf5-281341691d49", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true + }, + { + "uuid": "bd90c14a-3873-46d7-b9a4-7635c3cfa1f2", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false }, { - "uuid": "8d40f3f7-2f0b-444c-b52b-bdf1447ced14", + "uuid": "f6b3f4f6-35a2-48ce-bc3d-1888560e0467", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true + "role": "REQUESTED BY", + "siteRegistry": false }, { - "uuid": "1595127c-7320-4ed2-a8b6-20eb95f8d1b6", + "uuid": "8ad18f68-44e9-46fa-8206-a6b6c804b8a2", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false } ], "siteRegistry": false }, { - "uuid": "8af72849-e598-4a2b-84e2-8e69b52a03e7", - "createdAt": "2019-09-21", - "completed": "2021-05-03", - "initiated": "2016-10-08", - "ministryContact": "ARMSTRONG TIANNA", + "uuid": "c3375db4-5152-4b9e-9659-e95a19f113b9", + "createdAt": "2016-02-12", + "completed": "2017-08-09", + "initiated": "2014-08-13", + "ministryContact": "RUSSEL YOSHIKO", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -90725,32 +107052,100 @@ ], "notationParticipants": [ { - "uuid": "f5f3e403-1850-4349-9ce3-f32587d79adb", - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "cdd56f08-2164-4f19-bc93-06c8a052a614", + "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false }, { - "uuid": "22963929-f314-47b5-9cff-c80599c6bde2", + "uuid": "71f183a1-d167-46c5-9c4a-c8272ae9d6b1", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "uuid": "aa64bd3d-3b3a-455c-b05c-480c57432911", + "createdAt": "2016-12-31", + "completed": "2014-05-27", + "initiated": "2020-07-22", + "ministryContact": "GLEASON THADDEUS", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "uuid": "b9ea4dab-b841-431f-a647-816000eaa961", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "uuid": "7431363b-56b1-4822-98f7-d3f4b611d33d", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "d4025c10-1272-4e81-b00a-2ea50673fd50", + "uuid": "4a255c29-f10b-4c24-a5a1-8cc9bb96438a", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false + } + ], + "siteRegistry": false + }, + { + "uuid": "75fbf7cd-cbaf-46d4-8c55-a1d15f6aa335", + "createdAt": "2019-07-12", + "completed": "2017-12-23", + "initiated": "2020-04-03", + "ministryContact": "REINGER KIP", + "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", + "note": "", + "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", + "requestedActions": [ + "" + ], + "notationParticipants": [ + { + "uuid": "690bd6c6-25f5-45a0-82c6-c674bf660246", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false + }, + { + "uuid": "f27d9b72-8749-450b-bb3e-21fdf73e95a1", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "957ee01b-4d8b-41de-88f5-c95d8e3e6d69", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "81379ec4-8b5e-4ed9-9557-d8688db7dc31", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": true } ], "siteRegistry": true }, { - "uuid": "7da8265a-fe11-4197-947f-6719480fe772", - "createdAt": "2019-04-17", - "completed": "2020-04-22", - "initiated": "2015-07-25", - "ministryContact": "VONRUEDEN LETHA", + "uuid": "9fff7c3f-68a3-4552-970e-2334197bbd1e", + "createdAt": "2019-08-24", + "completed": "2018-04-30", + "initiated": "2018-12-20", + "ministryContact": "MCCLURE KIEL", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -90759,27 +107154,27 @@ ], "notationParticipants": [ { - "uuid": "907ff285-8ef4-4eab-932f-9bf8b54be4b5", + "uuid": "7893bf1d-9ac0-4af5-b022-266998e701d7", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "1214edab-51df-4efa-ac98-4fd2174ebec7", + "uuid": "7ac7133e-c3a2-42d8-8dae-a3ffeaa9bede", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", + "role": "REQUESTED BY", "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true } ], "participants": [ { - "uuid": "3e1f6da7-c3b3-40dc-9e04-de57cc3b670e", - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2017-01-23", - "startDate": "2019-09-03", + "uuid": "bbc8a341-cb50-4be0-9959-891786cdbad8", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2023-03-21", + "startDate": "2022-01-02", "notes": "", "roles": [ "EMPLOYEE" @@ -90787,10 +107182,10 @@ "siteRegistry": true }, { - "uuid": "a272f958-cba4-4943-8b2e-72736cc36bc9", + "uuid": "6801af59-ed79-4b0d-9646-8580947abf6c", "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2021-10-04", - "startDate": "2015-04-13", + "endDate": "2022-01-30", + "startDate": "2023-08-10", "notes": "", "roles": [ "EMPLOYEE" @@ -90798,117 +107193,129 @@ "siteRegistry": false }, { - "uuid": "c48ea8a4-c71f-4cdc-9d75-a0caf5b5b96f", - "name": "AMET, DOLOR SIT", - "endDate": "2021-08-14", - "startDate": "2021-10-18", + "uuid": "1481229b-3598-4a9f-a544-4f28311f1092", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "endDate": "2020-11-26", + "startDate": "2023-02-16", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true } ], - "suspectLandUses": [ - { - "uuid": "81298b7b-bed5-4c7e-a126-d44ff7833d79", - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-12-06 (described on Site Profile dated 2019-12-06)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" - }, + "documents": [ { - "uuid": "cdc50d8e-6c66-480c-8945-27aeaa662e22", + "uuid": "df9c4947-6e50-4e6c-bc31-874659d31d0d", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-06-24 (described on Site Profile dated 2014-06-24)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" - }, - { - "uuid": "c862a9c4-b439-4fa7-aa2d-229583525580", - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2020-01-30 (described on Site Profile dated 2020-01-30)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" - }, + "documentDate": "2022-09-03", + "receivedDate": "2017-10-15", + "uploadedDate": "2014-09-16", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "1e25eb19-df14-4ff3-a9da-6363be86788b", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "abbeb432-5e1e-47ed-a6c6-a557a1887f2b", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": false, + "role": "AUTHOR" + } + ] + } + ], + "suspectLandUses": [ { - "uuid": "ef2ef47a-b2a9-46f7-a659-7d7b0cc8e846", + "uuid": "8056d12c-66cc-4851-a81b-951d5c33ed9d", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-09-20 (described on Site Profile dated 2014-09-20)", + "notes": "INSERTED FOR SITE PROFILE DATED 2023-05-28 (described on Site Profile dated 2023-05-28)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "uuid": "523ce00a-7129-47f9-b1fa-94d59be52d90", + "uuid": "4ca6ca67-302b-4270-8b4b-2d160db53a24", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-08-27 (described on Site Profile dated 2019-08-27)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "notes": "INSERTED FOR SITE PROFILE DATED 2015-05-01 (described on Site Profile dated 2015-05-01)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], "parcelDescriptions": [ { - "uuid": "e2e634dc-ce1f-46d3-bbe1-cb72a2b34172", - "siteRegistry": true, - "dateNoted": "2016-12-15", - "parcelID": "19282", - "crownLandUsePIN": "17516", - "crownLandFileNumber": "18207", - "landDescription": "LOT 2 OF LOT 1 BLOCK 2 DISTRICT LOT 1 PLAN 3033" + "uuid": "988a7927-8cbf-432e-b74b-ffd14d0a332e", + "siteRegistry": false, + "dateNoted": "2020-02-07", + "parcelID": "16794", + "crownLandUsePIN": "17011", + "crownLandFileNumber": "19791", + "landDescription": "LOT 3 OF LOT 4 BLOCK 5 DISTRICT LOT 4 PLAN 3258" }, { - "uuid": "ef9e5c22-dc8e-4ac1-b539-f4debbad5562", + "uuid": "60fe9fd0-8fec-47ab-a03e-d46d4ee4bbce", "siteRegistry": true, - "dateNoted": "2019-01-02", - "parcelID": "15820", - "crownLandUsePIN": "15922", - "crownLandFileNumber": "17301", - "landDescription": "LOT 4 OF LOT 4 BLOCK 5 DISTRICT LOT 3 PLAN 4508" + "dateNoted": "2014-03-17", + "parcelID": "16958", + "crownLandUsePIN": "18558", + "crownLandFileNumber": "19456", + "landDescription": "LOT 2 OF LOT 4 BLOCK 5 DISTRICT LOT 1 PLAN 9067" }, { - "uuid": "e1c77c75-4e77-43fc-b487-19be1b1f6ac9", - "siteRegistry": false, - "dateNoted": "2015-07-08", - "parcelID": "17401", - "crownLandUsePIN": "20360", - "crownLandFileNumber": "17457", - "landDescription": "LOT 5 OF LOT 1 BLOCK 1 DISTRICT LOT 5 PLAN 9045" + "uuid": "906dd5ff-19e3-4be0-a223-076ab2191e86", + "siteRegistry": true, + "dateNoted": "2014-02-19", + "parcelID": "17110", + "crownLandUsePIN": "20760", + "crownLandFileNumber": "18156", + "landDescription": "LOT 4 OF LOT 2 BLOCK 1 DISTRICT LOT 2 PLAN 3491" }, { - "uuid": "0d2abc52-ea75-490f-b3df-f15990ae05f6", - "siteRegistry": true, - "dateNoted": "2016-01-10", - "parcelID": "20319", - "crownLandUsePIN": "16901", - "crownLandFileNumber": "16360", - "landDescription": "LOT 3 OF LOT 2 BLOCK 1 DISTRICT LOT 4 PLAN 3838" + "uuid": "43229322-ad9c-4733-b17e-46efcdaf698c", + "siteRegistry": false, + "dateNoted": "2019-07-24", + "parcelID": "18494", + "crownLandUsePIN": "19785", + "crownLandFileNumber": "18182", + "landDescription": "LOT 4 OF LOT 5 BLOCK 2 DISTRICT LOT 5 PLAN 7369" }, { - "uuid": "e3e563e9-c0c7-488d-a41b-f0e602662b55", - "siteRegistry": true, - "dateNoted": "2019-10-21", - "parcelID": "15676", - "crownLandUsePIN": "17576", - "crownLandFileNumber": "20362", - "landDescription": "LOT 4 OF LOT 1 BLOCK 1 DISTRICT LOT 5 PLAN 8213" + "uuid": "722e6b3e-dc51-4ee0-9c9a-ed26298578e9", + "siteRegistry": false, + "dateNoted": "2015-01-28", + "parcelID": "16010", + "crownLandUsePIN": "17317", + "crownLandFileNumber": "18736", + "landDescription": "LOT 1 OF LOT 3 BLOCK 2 DISTRICT LOT 1 PLAN 8984" } ], "siteDisclosures": [ { - "uuid": "6b82e74c-0991-4bd5-9d88-6fbb24710a5b", + "uuid": "ccb5a3e7-0ecc-45c9-830e-41805103416d", "siteRegistry": false, - "dateReceived": "2017-08-16", - "dateCompleted": "2019-01-12", - "dateEntered": "2018-11-26", - "dateRegistrar": "2014-08-30", - "dateLocalAuthorityReceived": "2015-08-01", - "summary": "Aut reprehenderit reprehenderit vero.\nArchitecto ipsa unde quibusdam.", - "informationUsed": "Soluta soluta cupiditate occaecati eum perspiciatis nihil nam.\nQuae doloremque ipsum deleniti fugit.\nSoluta fuga possimus cum ipsum eveniet doloribus deleniti.", - "pastOrPresentOrders": "Possimus dolores possimus.\nSint doloremque enim architecto.", + "dateReceived": "2020-04-07", + "dateCompleted": "2019-04-03", + "dateEntered": "2016-07-17", + "dateRegistrar": "2018-03-06", + "dateLocalAuthorityReceived": "2022-01-22", + "summary": "Ipsum unde itaque eligendi quae maiores minima iste.\nAut veniam consectetur accusamus rerum sint suscipit tenetur.", + "informationUsed": "Quis atque deleniti tempora culpa perferendis impedit hic debitis.\nVoluptatum soluta ipsum accusamus autem odit esse vero deleniti accusantium.\nBeatae magnam aspernatur.\nIncidunt illo accusamus tempore aperiam molestias vero impedit ipsa.", + "pastOrPresentOrders": "Aut nisi quis.\nPariatur quisquam architecto qui ab quia blanditiis.", "commercialAndIndustrialPurposes": [ { - "uuid": "7947ac78-381d-439b-9cc3-eb76c8068246", + "uuid": "0f03ee90-db84-4bec-99dd-928a2f636b11", "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false + }, + { + "uuid": "507c228d-a387-4e6e-a1ae-bae50838cab7", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false }, { - "uuid": "023763f2-f6cb-4ad6-9fe0-3dc325d046f9", + "uuid": "b0ea5a46-a56c-4764-b36b-e6a892ab869f", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true @@ -90916,25 +107323,31 @@ ] }, { - "uuid": "38a84a18-bfb7-4f94-998a-a06627b719ad", - "siteRegistry": false, - "dateReceived": "2014-06-20", - "dateCompleted": "2020-12-23", - "dateEntered": "2014-06-11", - "dateRegistrar": "2022-04-12", - "dateLocalAuthorityReceived": "2015-12-06", - "summary": "Porro optio sed debitis doloribus distinctio totam maiores distinctio rerum.", - "informationUsed": "Aliquid optio dolorum quos quae adipisci dolores magnam.\nError porro nostrum sunt laudantium ipsum optio at quisquam.\nNecessitatibus reiciendis facilis perspiciatis enim.", - "pastOrPresentOrders": "Necessitatibus neque facilis placeat alias nobis.", + "uuid": "0104e3f2-3c8b-4187-a076-65ecc698fa50", + "siteRegistry": true, + "dateReceived": "2014-12-18", + "dateCompleted": "2018-04-02", + "dateEntered": "2022-05-29", + "dateRegistrar": "2013-11-07", + "dateLocalAuthorityReceived": "2014-12-04", + "summary": "Blanditiis ratione labore est quis debitis.\nAutem provident numquam libero illum dolore hic neque.\nSuscipit optio enim nam.", + "informationUsed": "Tempore officia aut officia nulla dicta architecto.\nAspernatur molestiae necessitatibus voluptatem rerum vero enim dolor unde aut.\nFacere rerum animi aut nulla ex soluta numquam sed at.\nIpsa facere similique dicta.", + "pastOrPresentOrders": "Aliquid qui voluptas corporis nihil amet nisi nostrum ipsa ea.\nConsequatur quae ut provident eum qui.\nVeniam sunt iste porro laudantium ad earum.", "commercialAndIndustrialPurposes": [ { - "uuid": "4a7c421a-8ae0-4fec-8f22-1792cb44ccfe", - "scheduleReference": "F2*", + "uuid": "17732704-d4b3-4495-a9ef-9a5cef6e1c57", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": false + }, + { + "uuid": "8d236bdc-e3e9-441d-bd87-0db3eac84350", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { - "uuid": "f26eff79-badf-4cc5-8f73-ecdfc0ecac78", + "uuid": "f10f9b12-7082-4d90-aff1-c7132ad9177b", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true @@ -90944,122 +107357,101 @@ ], "activityLog": [ { - "uuid": "f1172e2c-697c-4284-b654-79addb3e2c24", + "uuid": "efb4a18d-6a17-432b-a281-bdf838324f35", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "DAUGHERTY MAEVE", - "timestamp": "2022-10-21" - }, - { - "uuid": "451f02c0-1490-49d0-b207-0822397f5853", - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "CRUICKSHANK ANTWAN", - "timestamp": "2020-09-02" + "user": "BERGNAUM KATHARINA", + "timestamp": "2019-08-13" }, { - "uuid": "22acfd81-3f1a-40ef-8067-bc347e1cce16", + "uuid": "97746e5a-828e-4994-85fa-7b86ac81e884", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "RITCHIE ELVA", - "timestamp": "2023-01-30" + "user": "CARROLL GEORGIANA", + "timestamp": "2019-04-23" }, { - "uuid": "cdd3e47d-ad04-4e0b-9f4c-97d254558ca8", + "uuid": "1a0facaf-0404-49d1-b884-cd610934840b", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "PROSACCO JEFFRY", - "timestamp": "2020-03-23" + "user": "KEEBLER KENNEDY", + "timestamp": "2014-04-11" }, { - "uuid": "35d53bee-e80e-4aa8-8be3-56704c1c3ce6", + "uuid": "872e60ff-0746-4106-8d7a-ee2d5e313fd7", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "BRADTKE DELTA", - "timestamp": "2015-10-04" - }, - { - "uuid": "9c6421e7-ab0f-4b88-afed-62c1a5a7dac6", - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "WEHNER-HARBER BOBBY", - "timestamp": "2021-10-03" - }, - { - "uuid": "3aebe82a-bc3d-42ad-9b41-4d87f8f0a6d1", - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "KOZEY ISAI", - "timestamp": "2020-03-14" + "user": "FAHEY ANNIE", + "timestamp": "2022-03-27" }, { - "uuid": "fc92006a-ae5c-4caf-9052-31273c9685a7", + "uuid": "53239639-4d90-471e-a1a2-fa9487f82cb7", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "ROOB TATUM", - "timestamp": "2020-10-25" + "user": "MOHR RUBEN", + "timestamp": "2014-03-06" }, { - "uuid": "c71f0e42-097a-4822-a647-9fc7d19e3514", - "siteRegistry": false, + "uuid": "2e81f2e3-5e0c-4727-b129-867f1d635757", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "SCHNEIDER MELISA", - "timestamp": "2018-07-08" + "user": "CARTER ELIEZER", + "timestamp": "2019-11-26" } ], "associatedSites": [ { - "uuid": "4f231018-a56c-4136-98d9-46b4c53c0b8b", - "dateNoted": "2023-06-15", + "uuid": "5ee905e1-7d77-4dbe-ab24-f7969e73e7a0", + "dateNoted": "2016-04-05", "notes": "", - "parcelID": "16831", - "siteID": "15815", - "siteRegistry": false + "parcelID": "20860", + "siteID": "16177", + "siteRegistry": true }, { - "uuid": "40e8cad0-9d26-4390-910a-6076a472c737", - "dateNoted": "2017-07-14", + "uuid": "fc6a958c-dcc9-4aaf-800c-73cae87dc19e", + "dateNoted": "2020-08-28", "notes": "", - "parcelID": "17875", - "siteID": "19713", - "siteRegistry": true + "parcelID": "18471", + "siteID": "15218", + "siteRegistry": false }, { - "uuid": "887d016f-2878-45ed-bca2-0753e3ecec47", - "dateNoted": "2016-09-13", + "uuid": "c9cae02e-74fb-4470-9ee7-fdae84c9909b", + "dateNoted": "2018-11-28", "notes": "", - "parcelID": "15493", - "siteID": "16323", + "parcelID": "16345", + "siteID": "19619", "siteRegistry": false } ] }, { - "uuid": "0bbbb9d5-e16c-4fd6-905f-e3966abbe1f1", - "siteID": 16878, - "address": "46332 Tanya Ridges", - "latitude": 58.0209, - "longitude": -123.07, - "lastUpdated": "2021-04-05", - "city": "West Oraltown", - "region": "Mainland/Southwest", - "victoriaFile": "26250-20/11799", + "uuid": "726e648a-4060-4a68-924c-d65cb0a217ce", + "siteID": 20988, + "address": "62475 Murazik Flats", + "latitude": 56.2789, + "longitude": -127.7052, + "lastUpdated": "2021-04-07", + "city": "Port Aliyah", + "region": "Thompson-Okanagan", + "victoriaFile": "26250-20/13174", "regionalFile": "N/A", "parcelIDs": [ - 1875431, - 4675144, - 3971002, - 2813226, - 4084603 + 4492136, + 5812474, + 641623, + 3148918, + 1815189 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "810b6f20-910b-49a4-b0a9-b3220c4085cc", - "createdAt": "2023-08-10", - "completed": "2015-08-24", - "initiated": "2014-12-11", - "ministryContact": "MOEN ELENORA", + "uuid": "33d9d8fb-78a9-4b63-b0e5-ecdef06f7428", + "createdAt": "2019-02-27", + "completed": "2023-06-02", + "initiated": "2019-11-07", + "ministryContact": "ANKUNDING NASH", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -91068,38 +107460,26 @@ ], "notationParticipants": [ { - "uuid": "ded5e378-f738-423b-8cdd-35cee9a8dbee", + "uuid": "c5f85645-1331-43fc-9a9e-9cb0684799fd", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "c6c6e972-1c68-4001-922c-99c54c0e9748", - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "uuid": "a16e7904-777b-4e9e-9f9f-a0108278a413", + "uuid": "cef13e36-faa3-4a85-b736-c16cce576fb7", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true - }, - { - "uuid": "211d61cc-b41d-4914-a481-96914ff9c9e6", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "c9ca1792-6e37-4115-af7e-b343cde5beca", - "createdAt": "2017-08-13", - "completed": "2022-01-14", - "initiated": "2020-05-22", - "ministryContact": "LABADIE DEMETRIUS", + "uuid": "ed412fad-36ef-4d7b-b96a-8eeeeca68dd9", + "createdAt": "2015-12-16", + "completed": "2021-11-12", + "initiated": "2018-02-09", + "ministryContact": "HALVORSON ELLEN", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -91108,44 +107488,32 @@ ], "notationParticipants": [ { - "uuid": "bfe0337c-136f-43fc-99a9-7053abc257fd", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "uuid": "624d14f8-f4b3-45d0-a2a5-43ddd6ec11ce", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "uuid": "5659af4b-1a1d-4c53-94f5-db5f6975be81", - "name": "SHELL CANADA PRODUCTS", + "uuid": "6a5fc770-11bf-4b2e-bf0b-2d0ba863dce9", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "822e31dd-f533-4d9d-9af7-01691f5aa3e6", - "name": "SHELL CANADA PRODUCTS", + "uuid": "b108c00c-9c35-4c5e-9185-7c980eb5525b", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "8dfdaa00-e3d7-452e-a187-291213f41869", + "uuid": "84eff224-6bd7-4c75-8818-efb79c3a5f9d", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "ad19f2dc-c5a4-401a-859c-116666f1de9d", - "createdAt": "2021-09-22", - "completed": "2020-07-14", - "initiated": "2019-03-23", - "ministryContact": "LIND CHELSEA", + "uuid": "14992f98-c5af-406c-8f85-9a0f58b621a6", + "createdAt": "2013-10-26", + "completed": "2017-01-27", + "initiated": "2023-06-20", + "ministryContact": "GLEICHNER OTTIS", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -91154,16 +107522,28 @@ ], "notationParticipants": [ { - "uuid": "e2fd3f0c-348b-451e-9c67-53879a893757", - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "df28be43-f682-465b-bc20-7dc7fbc6ef2d", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false + }, + { + "uuid": "4bc20bdd-8155-49ea-9257-6e6692b094de", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false }, { - "uuid": "7bd819ff-7d20-4d91-8f32-dc6ad91e5016", + "uuid": "67b61dca-80ef-44cd-9b08-2f979110dbe5", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false + }, + { + "uuid": "40a082d4-df36-4397-95cd-2fae9458ea77", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", + "siteRegistry": false } ], "siteRegistry": false @@ -91171,230 +107551,251 @@ ], "participants": [ { - "uuid": "e9ffae4b-fef4-4237-b5f2-81b161417bad", - "name": "IPSUM", - "endDate": "2022-03-03", - "startDate": "2021-03-21", + "uuid": "28376eea-3051-4c70-a9e4-7568888e4a73", + "name": "AMET, DOLOR SIT", + "endDate": "2021-07-13", + "startDate": "2018-02-11", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "10ca78d3-4031-4ac1-87d5-31370380955c", + "uuid": "4656ee26-5201-4be0-9282-61b0084b3a99", "name": "SHELL CANADA PRODUCTS", - "endDate": "2022-07-02", - "startDate": "2014-04-29", + "endDate": "2020-07-29", + "startDate": "2018-03-24", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": false + } + ], + "documents": [ + { + "uuid": "3de438a3-b8df-4f97-849d-75baeac9d7d9", + "siteRegistry": false, + "documentDate": "2017-01-29", + "receivedDate": "2016-02-24", + "uploadedDate": "2021-04-13", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "5dad6930-c91a-435b-bdd2-dd63d6d7ec63", + "name": "IPSUM", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "ae3afa55-3af9-4850-96c3-829a25416e10", + "name": "SNC-LAVALIN ENVIRONMENT INC", + "siteRegistry": false, + "role": "AUTHOR" + } + ] }, { - "uuid": "c8641510-954a-4793-880d-639212767ad9", - "name": "AMET, DOLOR SIT", - "endDate": "2020-09-12", - "startDate": "2015-10-22", - "notes": "", - "roles": [ - "ORGANIZATION" - ], - "siteRegistry": true + "uuid": "c80d4eba-45eb-47c0-81e0-f2f9a8bf97c3", + "siteRegistry": false, + "documentDate": "2019-01-04", + "receivedDate": "2023-03-24", + "uploadedDate": "2023-05-22", + "title": "Summary of Site Conditions, 1537 W 41st Avenue, Vancouver", + "participants": [ + { + "uuid": "e9297ab6-9b6a-4b97-9a6b-bdf216394bb4", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": true, + "role": "AUTHOR" + } + ] } ], "suspectLandUses": [ { - "uuid": "cd2f8730-2237-4dfd-bca7-27e17a030438", + "uuid": "bba327c5-74c7-4562-93d2-4aa527086387", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2022-12-15 (described on Site Profile dated 2022-12-15)", + "notes": "INSERTED FOR SITE PROFILE DATED 2018-11-23 (described on Site Profile dated 2018-11-23)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "uuid": "da493a9e-936c-4591-a728-8f111d412df2", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2014-10-01 (described on Site Profile dated 2014-10-01)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "uuid": "ca9c305a-57d7-45a5-9277-6f205e50081e", - "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-09-04 (described on Site Profile dated 2014-09-04)", + "uuid": "12535899-07a4-4256-99bc-e1af52a7cf04", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2019-10-25 (described on Site Profile dated 2019-10-25)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "uuid": "896b0fbd-4783-44a5-917a-aaa5a7828327", + "siteRegistry": true, + "notes": "INSERTED FOR SITE PROFILE DATED 2022-11-07 (described on Site Profile dated 2022-11-07)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], "parcelDescriptions": [ { - "uuid": "50f52285-a347-43a4-b02c-fb3f4d7cdc6b", + "uuid": "5d7c6d34-f945-4cd8-9877-f141ad3dabd2", "siteRegistry": true, - "dateNoted": "2022-08-25", - "parcelID": "19340", - "crownLandUsePIN": "16972", - "crownLandFileNumber": "15569", - "landDescription": "LOT 3 OF LOT 5 BLOCK 4 DISTRICT LOT 3 PLAN 4908" - }, - { - "uuid": "a4508dc0-a381-4d88-a490-7077ef86531c", - "siteRegistry": true, - "dateNoted": "2017-09-23", - "parcelID": "15655", - "crownLandUsePIN": "19400", - "crownLandFileNumber": "20987", - "landDescription": "LOT 5 OF LOT 5 BLOCK 4 DISTRICT LOT 3 PLAN 8318" + "dateNoted": "2013-12-14", + "parcelID": "20569", + "crownLandUsePIN": "16326", + "crownLandFileNumber": "19098", + "landDescription": "LOT 2 OF LOT 3 BLOCK 4 DISTRICT LOT 3 PLAN 7458" }, { - "uuid": "bcd4e5f5-3278-4c95-ae12-b4b9ff6a08a2", + "uuid": "995b009d-c41a-4701-940a-6b862dd4d459", "siteRegistry": true, - "dateNoted": "2014-08-27", - "parcelID": "19402", - "crownLandUsePIN": "19290", - "crownLandFileNumber": "16843", - "landDescription": "LOT 3 OF LOT 5 BLOCK 4 DISTRICT LOT 1 PLAN 4315" + "dateNoted": "2019-08-18", + "parcelID": "16230", + "crownLandUsePIN": "19144", + "crownLandFileNumber": "18457", + "landDescription": "LOT 5 OF LOT 1 BLOCK 4 DISTRICT LOT 5 PLAN 3889" } ], "siteDisclosures": [ { - "uuid": "dfbe839c-ebb1-46cc-a7a3-df5e3d4d437c", + "uuid": "971a2e8e-8ec8-4ef3-a4fa-acad606b308f", "siteRegistry": true, - "dateReceived": "2021-10-10", - "dateCompleted": "2018-12-14", - "dateEntered": "2017-12-24", - "dateRegistrar": "2020-07-07", - "dateLocalAuthorityReceived": "2020-11-19", - "summary": "Est hic itaque doloribus suscipit laudantium alias sunt.\nSit molestias enim voluptates aperiam quidem exercitationem fugit.\nDucimus omnis error sint.", - "informationUsed": "Quis id cum quos atque velit aliquid vel.\nItaque sequi iste consectetur aspernatur dicta at in dignissimos aliquam.\nRepellendus debitis nisi natus expedita optio fugit.", - "pastOrPresentOrders": "Vitae dolor minima suscipit dicta enim dolor.\nSimilique velit aspernatur.\nFacilis illum reiciendis voluptatem quaerat nemo tenetur iure.", + "dateReceived": "2021-01-29", + "dateCompleted": "2021-03-19", + "dateEntered": "2014-04-16", + "dateRegistrar": "2016-06-08", + "dateLocalAuthorityReceived": "2020-11-11", + "summary": "Voluptatibus laudantium rerum.\nQuasi tenetur tenetur soluta quisquam qui saepe ipsa.\nAliquam ut vel nulla laboriosam quo adipisci sunt consequatur.", + "informationUsed": "Porro illo error.\nVoluptates omnis ipsam vero ex atque omnis.\nSint exercitationem molestiae aliquid in vel excepturi ab.", + "pastOrPresentOrders": "Accusamus sunt molestias.\nEaque perferendis repudiandae saepe asperiores sunt.", "commercialAndIndustrialPurposes": [ { - "uuid": "e4197621-d523-4d70-89fb-ba2c662cc109", - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false - }, - { - "uuid": "57695586-66c7-4cf9-8232-3d51af53fbd7", + "uuid": "bdbc40e0-1967-484c-bf22-056a03ff3bd2", "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true }, { - "uuid": "f0752926-e2e6-4c53-a224-25679a740096", + "uuid": "17a0303d-fb26-43b4-baec-e0df380cd187", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false - } - ] - }, - { - "uuid": "82ac8244-823f-4840-8372-a34c11dfcbc1", - "siteRegistry": false, - "dateReceived": "2016-03-17", - "dateCompleted": "2020-09-24", - "dateEntered": "2022-08-15", - "dateRegistrar": "2020-12-30", - "dateLocalAuthorityReceived": "2020-12-08", - "summary": "Ab earum debitis.\nTotam distinctio eius cupiditate neque tenetur commodi iure impedit.", - "informationUsed": "Doloribus pariatur quas dicta quos dolores provident.\nEius dicta accusantium magnam voluptates eos expedita.\nDeleniti aspernatur suscipit repellat officia.\nTenetur natus optio tempora.\nVel soluta porro sed placeat molestias asperiores velit laudantium id.", - "pastOrPresentOrders": "Voluptates deserunt velit adipisci vero nobis id dolores.\nQuidem neque voluptates alias enim voluptatem modi temporibus similique quam.", - "commercialAndIndustrialPurposes": [ + }, { - "uuid": "db9d227c-65f0-4881-a041-de0db7e66be5", + "uuid": "3ff91f6c-f720-4026-a7b0-f889f3ce864c", "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "siteRegistry": false }, { - "uuid": "becf709f-dfca-4952-82a7-022b9c4ef9f8", + "uuid": "0aafa14a-7e25-412b-9feb-a036959c61a6", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true + "siteRegistry": false } ] } ], "activityLog": [ { - "uuid": "901c661e-7cf3-4891-abde-96e4017f9602", - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "EBERT LONZO", - "timestamp": "2020-12-31" - }, - { - "uuid": "b7a346cf-dc31-419b-b84c-d50fd5743b67", + "uuid": "306d02f1-d231-4b27-8132-3f73225a8a1a", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "BARTELL EMANUEL", - "timestamp": "2020-01-31" + "user": "RAU SHAKIRA", + "timestamp": "2017-01-10" }, { - "uuid": "c18996d4-72d6-45c4-8b91-213ac4e8331a", - "siteRegistry": false, + "uuid": "8985687e-e139-4a22-9774-dc5c26d326fc", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "WEHNER-MARVIN JOSEPH", - "timestamp": "2020-07-22" + "user": "KOVACEK ANAHI", + "timestamp": "2021-11-20" }, { - "uuid": "fa8b85e4-a37f-4c5c-824f-a99f91a710fb", + "uuid": "7eac3f9a-c516-4d9d-b26b-2c28a64a159e", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "CONROY CHELSEY", - "timestamp": "2017-04-20" + "user": "DIBBERT LEILANI", + "timestamp": "2023-07-08" }, { - "uuid": "a0d96f66-32a2-4629-a10d-23eb7fdc73b1", + "uuid": "7be89d47-65e2-4d66-a465-977f61193e1a", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "BOEHM MYLES", - "timestamp": "2018-01-22" + "user": "JAST BERTRAND", + "timestamp": "2016-07-23" }, { - "uuid": "197ecda7-f6e0-4316-867c-cafeea6a2227", + "uuid": "56492da0-f7a3-4bc2-a65f-d92ddeba0c51", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "TOWNE MATTIE", - "timestamp": "2019-09-02" + "user": "HERZOG ALEC", + "timestamp": "2017-07-12" }, { - "uuid": "39ce2f9a-961e-43d8-8c36-f4b386ca50b7", - "siteRegistry": true, + "uuid": "93f06a66-881e-4724-86b6-dc44877a7bb1", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "KIRLIN LEONOR", - "timestamp": "2019-01-21" + "user": "STROSIN MAFALDA", + "timestamp": "2018-04-17" } ], "associatedSites": [ { - "uuid": "a146acf5-31f0-430c-8a77-143b64019dd9", - "dateNoted": "2014-10-11", + "uuid": "72dc210b-9c39-4248-b1a5-5142171a0932", + "dateNoted": "2018-08-30", + "notes": "", + "parcelID": "20462", + "siteID": "16531", + "siteRegistry": false + }, + { + "uuid": "5133b100-30dd-48da-890d-00bb46c48356", + "dateNoted": "2015-05-30", "notes": "", - "parcelID": "18413", - "siteID": "18724", + "parcelID": "20764", + "siteID": "17275", + "siteRegistry": false + }, + { + "uuid": "27159942-2860-45c8-b63f-9c8cdb8cba32", + "dateNoted": "2017-03-27", + "notes": "", + "parcelID": "17536", + "siteID": "20833", "siteRegistry": true } ] }, { - "uuid": "e6b3e44a-818d-44b1-808b-4128d5ea008f", - "siteID": 19254, - "address": "382 O'Connell Station", - "latitude": 52.2024, - "longitude": -121.7901, - "lastUpdated": "2018-03-22", - "city": "Fort Donavon", - "region": " North Coast", - "victoriaFile": "26250-20/14484", + "uuid": "e7ab319b-535c-4b6f-b021-ae7c891cc763", + "siteID": 18436, + "address": "28845 Will Ways", + "latitude": 54.7253, + "longitude": -134.2098, + "lastUpdated": "2014-04-13", + "city": "Deckowborough", + "region": "Cariboo", + "victoriaFile": "26250-20/1095", "regionalFile": "N/A", "parcelIDs": [ - 7588208, - 5490124, - 9663519, - 7922437, - 5518429 + 7438734, + 2734362, + 7058816, + 7379676, + 294146 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "cd686129-a78f-4851-a199-9208dfac573c", - "createdAt": "2021-12-06", - "completed": "2015-12-14", - "initiated": "2017-01-06", - "ministryContact": "SENGER ROLLIN", + "uuid": "5a73118c-f6bf-4ff2-a2a8-5d8c2a1cd30c", + "createdAt": "2022-06-03", + "completed": "2015-06-13", + "initiated": "2017-12-02", + "ministryContact": "FRITSCH RAUL", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -91403,54 +107804,38 @@ ], "notationParticipants": [ { - "uuid": "80ac141b-baf1-4496-abdc-6bfef7117d27", - "name": "SHELL CANADA PRODUCTS", + "uuid": "d1f509d5-fe29-4565-9618-57267fd79170", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "41984550-efb5-4e95-9eb8-47e0acd60383", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "uuid": "21aaee43-15a5-4dc0-a369-be2e97b75f12", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "SUBMITTED BY", "siteRegistry": false - } - ], - "siteRegistry": true - }, - { - "uuid": "1b035a27-acea-44ae-a06e-50aecf986d70", - "createdAt": "2023-07-27", - "completed": "2016-12-08", - "initiated": "2017-02-13", - "ministryContact": "LUETTGEN GLENDA", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ + }, { - "uuid": "05ed9572-deee-42ff-9999-6a47b3c76d7b", + "uuid": "cb7b70b6-c44d-4c44-9e18-366a7abb7035", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "8b59c57d-3969-43d6-84e9-725057c4b426", + "uuid": "dd381129-cdf7-41b3-83e3-7b7d822c64df", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "92f968be-7674-4f4b-9286-682f49f5de97", - "createdAt": "2021-03-06", - "completed": "2016-08-08", - "initiated": "2022-01-10", - "ministryContact": "MEDHURST MONA", + "uuid": "7aef8c5b-7916-4717-895c-180d070ca700", + "createdAt": "2023-02-20", + "completed": "2017-03-08", + "initiated": "2015-06-28", + "ministryContact": "GLOVER GERALDINE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -91459,34 +107844,16 @@ ], "notationParticipants": [ { - "uuid": "94ac561a-7953-4020-8468-e248e64b757d", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "uuid": "c19e80b2-2cd9-4495-9ffd-7fb837761db0", + "uuid": "840f4565-57eb-41cb-9bd3-5a22c650c609", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false }, { - "uuid": "07611e58-514b-42d6-823e-7e4d4b493cb5", + "uuid": "682745b4-e27a-4396-9c18-8ed20719f282", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": false - }, - { - "uuid": "bb2d7f2a-08f7-4831-992d-9570058f317a", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "uuid": "ae5c7dc7-674f-4527-8b46-0ae39852311c", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": true } ], "siteRegistry": false @@ -91494,261 +107861,268 @@ ], "participants": [ { - "uuid": "e88f206c-974c-4512-870e-642ffc8b5c57", - "name": "SHELL CANADA PRODUCTS", - "endDate": "2020-01-28", - "startDate": "2016-05-12", + "uuid": "a6ab874d-d8ef-4957-a5ec-a9f2b1467b78", + "name": "IPSUM", + "endDate": "2020-06-17", + "startDate": "2016-02-10", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "078e1d61-b7f2-45ff-881b-926b962049f9", + "uuid": "c60f25cc-df10-495c-99b9-9b5aaf3cc9f5", "name": "SHELL CANADA PRODUCTS", - "endDate": "2015-12-05", - "startDate": "2016-02-16", + "endDate": "2020-11-22", + "startDate": "2017-02-10", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "b3e6e578-b6c8-42f2-93c0-1b975e6ab636", + "uuid": "d7c5837d-d9f9-4c18-b4b2-4d638c2dac96", "name": "AMET, DOLOR SIT", - "endDate": "2023-08-22", - "startDate": "2021-11-18", + "endDate": "2017-02-10", + "startDate": "2015-08-24", "notes": "", "roles": [ "EMPLOYEE" ], - "siteRegistry": false + "siteRegistry": true + }, + { + "uuid": "c364f3bd-8208-45d3-beeb-e8f10d709693", + "name": "AMET, DOLOR SIT", + "endDate": "2018-04-05", + "startDate": "2022-10-17", + "notes": "", + "roles": [ + "EMPLOYEE" + ], + "siteRegistry": true + }, + { + "uuid": "adf1354f-6182-4375-ba98-f3c45c850723", + "name": "SHELL CANADA PRODUCTS", + "endDate": "2014-02-16", + "startDate": "2023-03-08", + "notes": "", + "roles": [ + "ORGANIZATION" + ], + "siteRegistry": true + } + ], + "documents": [ + { + "uuid": "65f93c36-e99e-4396-aec8-a4c96d820c45", + "siteRegistry": true, + "documentDate": "2014-07-15", + "receivedDate": "2019-09-22", + "uploadedDate": "2022-09-19", + "title": "Summary of Site Conditions, 1537 W 41st Avenue, Vancouver", + "participants": [ + { + "uuid": "284c380b-fbc2-4cc6-913e-4908c9ceadbb", + "name": "IPSUM", + "siteRegistry": true, + "role": "AUTHOR" + } + ] } ], "suspectLandUses": [ { - "uuid": "990c51e1-cc89-4071-a005-acc829cb9def", + "uuid": "d1185cbb-9938-4ef2-a503-3b2785b0d02e", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2014-07-21 (described on Site Profile dated 2014-07-21)", + "notes": "INSERTED FOR SITE PROFILE DATED 2017-08-27 (described on Site Profile dated 2017-08-27)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "uuid": "31a5b2d8-dc36-4054-ae07-5700c4702b5f", + "uuid": "93f101ee-786b-427b-94a3-03dd4c756f84", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-01-18 (described on Site Profile dated 2015-01-18)", + "notes": "INSERTED FOR SITE PROFILE DATED 2014-05-29 (described on Site Profile dated 2014-05-29)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "uuid": "88df9370-8997-4024-b2ca-4f9712e979b3", + "uuid": "e418a2b9-aaf8-44b5-8689-e1d66b1dd9e6", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2015-06-11 (described on Site Profile dated 2015-06-11)", - "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + "notes": "INSERTED FOR SITE PROFILE DATED 2015-08-08 (described on Site Profile dated 2015-08-08)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], "parcelDescriptions": [ { - "uuid": "daa38283-2a66-43ee-a255-45cba0a1b117", + "uuid": "d8d1d8b2-4824-46a2-bef0-9b9d257ec4a1", "siteRegistry": false, - "dateNoted": "2023-05-18", - "parcelID": "17855", - "crownLandUsePIN": "20791", - "crownLandFileNumber": "16669", - "landDescription": "LOT 4 OF LOT 2 BLOCK 1 DISTRICT LOT 1 PLAN 8035" + "dateNoted": "2019-08-31", + "parcelID": "17871", + "crownLandUsePIN": "20773", + "crownLandFileNumber": "16793", + "landDescription": "LOT 4 OF LOT 5 BLOCK 4 DISTRICT LOT 3 PLAN 9197" }, { - "uuid": "259ce856-9903-4012-ac8c-866d469379eb", + "uuid": "560af275-9233-4c96-b30b-a623a345a4bb", "siteRegistry": false, - "dateNoted": "2017-02-13", - "parcelID": "18969", - "crownLandUsePIN": "16108", - "crownLandFileNumber": "17203", - "landDescription": "LOT 2 OF LOT 1 BLOCK 3 DISTRICT LOT 5 PLAN 3763" + "dateNoted": "2017-05-11", + "parcelID": "20608", + "crownLandUsePIN": "19500", + "crownLandFileNumber": "17966", + "landDescription": "LOT 1 OF LOT 4 BLOCK 5 DISTRICT LOT 3 PLAN 3810" + }, + { + "uuid": "8a9cdcae-55c8-460c-834e-18cfca515046", + "siteRegistry": true, + "dateNoted": "2017-05-10", + "parcelID": "16910", + "crownLandUsePIN": "19338", + "crownLandFileNumber": "19834", + "landDescription": "LOT 4 OF LOT 2 BLOCK 2 DISTRICT LOT 4 PLAN 5039" + }, + { + "uuid": "f7b6de08-771f-4248-b8b1-4bd93e451957", + "siteRegistry": true, + "dateNoted": "2016-04-26", + "parcelID": "19754", + "crownLandUsePIN": "16736", + "crownLandFileNumber": "15490", + "landDescription": "LOT 5 OF LOT 5 BLOCK 3 DISTRICT LOT 3 PLAN 8627" + }, + { + "uuid": "0f9fbef4-5d18-4508-b60d-81be615be3d1", + "siteRegistry": true, + "dateNoted": "2016-04-28", + "parcelID": "18252", + "crownLandUsePIN": "16751", + "crownLandFileNumber": "15449", + "landDescription": "LOT 5 OF LOT 1 BLOCK 1 DISTRICT LOT 1 PLAN 8960" } ], "siteDisclosures": [ { - "uuid": "ef2817c8-80ec-41ea-9776-e8d9b1c89744", + "uuid": "4b6580fb-0092-4faa-a402-2384b1756464", "siteRegistry": true, - "dateReceived": "2016-12-04", - "dateCompleted": "2017-09-14", - "dateEntered": "2022-12-03", - "dateRegistrar": "2022-07-25", - "dateLocalAuthorityReceived": "2015-01-27", - "summary": "Dolore earum ut cupiditate consequuntur quae repellat vero voluptas.\nQui nesciunt totam ut aliquid quibusdam consequuntur ex.\nQuidem similique officiis repellendus.", - "informationUsed": "Porro dolores occaecati culpa at.\nOfficia ullam voluptatum vel ea sint recusandae quos vel molestias.\nIpsam sint adipisci doloremque ut sapiente deleniti itaque aliquid.\nIusto tenetur explicabo at labore officiis.\nDistinctio quo laudantium nulla voluptatibus sit.", - "pastOrPresentOrders": "Quidem odit unde saepe illum ad quasi quasi non.\nNatus commodi necessitatibus dolor debitis magnam id laborum officia.\nEa dolore maxime reiciendis labore fugiat quae molestiae.", + "dateReceived": "2019-07-03", + "dateCompleted": "2023-05-08", + "dateEntered": "2013-10-20", + "dateRegistrar": "2015-11-13", + "dateLocalAuthorityReceived": "2020-04-11", + "summary": "Molestiae nesciunt harum totam delectus dignissimos illo vero animi consequatur.\nEst inventore veniam omnis quibusdam aspernatur eius ratione quae laudantium.", + "informationUsed": "Voluptatibus architecto mollitia iste.\nSimilique ipsam a aspernatur esse voluptatem consequuntur.\nIpsum ab error distinctio perferendis iste.", + "pastOrPresentOrders": "Aliquid sapiente quibusdam facilis sit eveniet excepturi voluptas consequuntur.", "commercialAndIndustrialPurposes": [ { - "uuid": "7aeeb29d-fe5a-4182-be2b-22ab67469e45", - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true - }, - { - "uuid": "3c79d43f-a846-4fe5-8747-e62945544615", + "uuid": "be96343e-4319-486c-838f-e643582828ba", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "619ffa51-1b4b-44cf-a653-345fd4c8e2f3", + "uuid": "72854469-387c-4a1a-b49c-1fb129bf5ece", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false }, { - "uuid": "57574810-ccb7-45a5-9c88-ca19f8c68c4c", - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true - } - ] - }, - { - "uuid": "dc5259ae-b407-4c0a-8228-99d7cb9dfd89", - "siteRegistry": false, - "dateReceived": "2018-03-15", - "dateCompleted": "2019-07-15", - "dateEntered": "2017-04-02", - "dateRegistrar": "2021-06-17", - "dateLocalAuthorityReceived": "2022-12-22", - "summary": "Odit fuga error vel debitis ea earum veritatis.\nQuasi ipsum inventore cum consequatur deserunt magnam reprehenderit sit.\nCommodi est natus sed corporis dolor.", - "informationUsed": "Libero recusandae accusamus recusandae tempora.\nVelit ipsum magni atque suscipit at maxime.\nEligendi magni ex asperiores ratione.\nInventore voluptate non ipsam.\nEnim voluptate non adipisci distinctio numquam.", - "pastOrPresentOrders": "Aperiam suscipit repudiandae iste ducimus optio cupiditate magni nulla iusto.\nDoloremque odio eius ex deserunt quae blanditiis quae maxime quo.\nRepudiandae soluta adipisci et officia.", - "commercialAndIndustrialPurposes": [ - { - "uuid": "a110d9e9-942d-44b5-88e9-6e6f4656d11e", - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false - }, - { - "uuid": "354a46f9-1bba-4c58-ab76-5fc5b3937809", - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "uuid": "16d6979b-2857-451d-8342-cdf0518a75bc", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false }, { - "uuid": "40bb6e53-a95c-4b7c-96b8-44faffb6dfb2", + "uuid": "8f3ce68a-8ab1-4c59-963f-4470eb859aab", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true - }, - { - "uuid": "cadf59df-8341-47a1-9152-486563dda88e", - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": false } ] } ], "activityLog": [ { - "uuid": "f39bd150-75ea-4d20-8b1e-3108f280ea8d", + "uuid": "439b9df1-909d-4a25-bc66-6d59adccdf9c", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "WUNSCH GUSTAVE", - "timestamp": "2013-11-12" - }, - { - "uuid": "de0f9fe4-5e8b-4768-a0c1-ddbdcffbfa0a", - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "GREENHOLT CAMILA", - "timestamp": "2020-05-15" + "user": "FRANECKI JAIDEN", + "timestamp": "2021-05-23" }, { - "uuid": "20e05f79-477a-4949-806d-feacc1b7fc88", + "uuid": "30cb6ad6-c625-4c27-9097-ad57e85cc25d", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "FAHEY ALVA", - "timestamp": "2020-02-08" + "user": "KUVALIS RYDER", + "timestamp": "2023-08-05" }, { - "uuid": "5413d8a3-43b2-4bbd-b7bb-4e11d57c16bf", - "siteRegistry": false, + "uuid": "279235fd-ab7f-4c80-b50f-f37b519297f9", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "DICKI GILBERTO", - "timestamp": "2021-08-22" + "user": "STROSIN DAMION", + "timestamp": "2022-10-02" }, { - "uuid": "fb071109-b003-4178-aee6-2dd759eb942f", + "uuid": "434bc41e-2638-4d7e-92bb-66068b2b2acd", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "TRANTOW-FISHER DEONTAE", - "timestamp": "2017-02-12" + "user": "SCHMELER SAMANTA", + "timestamp": "2017-03-24" }, { - "uuid": "68233f8f-4c76-487b-a160-b21f9d425e8e", + "uuid": "816d4a90-b6fb-4174-af23-1fcca53067b7", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "STAMM LINNEA", - "timestamp": "2021-12-29" - }, - { - "uuid": "d664a1e1-03a4-43a0-91eb-02e91117487f", - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "ROBEL CODY", - "timestamp": "2022-07-31" + "user": "HAHN MYLES", + "timestamp": "2022-12-15" } ], "associatedSites": [ { - "uuid": "0cf3d19f-6630-45f0-bef5-1a050b328871", - "dateNoted": "2018-07-10", - "notes": "", - "parcelID": "19601", - "siteID": "16415", - "siteRegistry": false - }, - { - "uuid": "7147050b-5333-4c53-9636-def15860a2b3", - "dateNoted": "2016-03-14", + "uuid": "cda13701-3636-4593-a6d5-313e70812edf", + "dateNoted": "2022-04-15", "notes": "", - "parcelID": "20775", - "siteID": "17612", - "siteRegistry": false + "parcelID": "16944", + "siteID": "17404", + "siteRegistry": true }, { - "uuid": "6ae7cd0a-ddba-4cb0-b455-6ae88b049516", - "dateNoted": "2019-07-05", + "uuid": "e6caad09-65b7-44db-963f-391b03696fa4", + "dateNoted": "2019-04-08", "notes": "", - "parcelID": "17073", - "siteID": "16202", - "siteRegistry": false + "parcelID": "19117", + "siteID": "17504", + "siteRegistry": true } ] }, { - "uuid": "91101184-8f64-409d-b1e6-0e9e54553b6a", - "siteID": 19254, - "address": "35562 Eleanore Shore", - "latitude": 55.9636, - "longitude": -129.915, - "lastUpdated": "2019-01-25", - "city": "Terrillbury", - "region": "Mainland/Southwest", - "victoriaFile": "26250-20/4478", + "uuid": "b2f50050-6a90-4afe-88a5-5978c45073e4", + "siteID": 20520, + "address": "4844 Else Neck", + "latitude": 51.1327, + "longitude": -126.1916, + "lastUpdated": "2017-03-06", + "city": "Katherynview", + "region": "Vancouver Island/Coast", + "victoriaFile": "26250-20/3277", "regionalFile": "N/A", "parcelIDs": [ - 7636521, - 1742300, - 5875328, - 2997993, - 917541 + 8995631, + 3428467, + 4857076, + 5877586, + 603720 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "de141c77-9816-4dd1-81c3-35bfd0078b11", - "createdAt": "2018-12-12", - "completed": "2023-08-01", - "initiated": "2020-08-28", - "ministryContact": "PARISIAN STEPHAN", + "uuid": "32baba67-e037-4c27-a7cd-459f44a9000e", + "createdAt": "2015-01-03", + "completed": "2022-01-01", + "initiated": "2018-11-22", + "ministryContact": "WOLFF DAHLIA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -91757,38 +108131,38 @@ ], "notationParticipants": [ { - "uuid": "3a00672b-69ae-4778-8448-5f1ae64170dd", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "uuid": "2d2dbee2-46c0-4348-a1e5-ea0076b8091d", + "name": "SHELL CANADA PRODUCTS", + "role": "SUBMITTED BY", "siteRegistry": true }, { - "uuid": "ab1f5926-3581-4a27-8228-b6eef36bf092", + "uuid": "1d078a2d-41b4-40f3-a1af-6539ecdcbb42", "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": true }, { - "uuid": "a2e753d2-38a4-401e-aba0-bd31a8992b70", + "uuid": "e58f3c5b-91d8-4b7d-abec-8463234bb280", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "4109b290-9c7e-411c-b037-bcc309f141ee", - "name": "SHELL CANADA PRODUCTS", + "uuid": "97f88ca8-3f44-4ed5-9a12-cde3692abfa4", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": false + "siteRegistry": true } ], - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "da10c16f-fd34-4f2a-9714-4d417ccd2438", - "createdAt": "2020-02-03", - "completed": "2017-09-04", - "initiated": "2017-08-22", - "ministryContact": "MCKENZIE NAOMIE", + "uuid": "d75d80c6-8356-4a6c-a18e-15a0f22da721", + "createdAt": "2015-07-14", + "completed": "2019-04-02", + "initiated": "2022-02-13", + "ministryContact": "DAUGHERTY MYLENE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -91797,38 +108171,26 @@ ], "notationParticipants": [ { - "uuid": "824e4eb5-d326-4d65-b23d-166fae297cb3", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", - "siteRegistry": false - }, - { - "uuid": "a5ebf6e0-a773-4097-a04d-d804d1681f0e", + "uuid": "2a7076d4-0b56-4d45-9483-a77408446e86", "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "REQUESTED BY", + "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "3d8a5b8c-f414-45ad-94bc-ce998773d45d", + "uuid": "c84467d3-3504-41f3-919d-18abbd03dc61", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false - }, - { - "uuid": "60b6c2f9-8b1c-46d0-8b99-8868633fbed8", - "name": "SHELL CANADA PRODUCTS", - "role": "REQUESTED BY", - "siteRegistry": false } ], - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "d2140955-a1a9-4fef-9523-d2d5950d465e", - "createdAt": "2022-07-13", - "completed": "2023-05-15", - "initiated": "2017-06-01", - "ministryContact": "KLOCKO LELIA", + "uuid": "5f12f7c1-ef7a-4416-942a-5599e4f0658d", + "createdAt": "2021-02-15", + "completed": "2014-01-18", + "initiated": "2015-07-14", + "ministryContact": "STIEDEMANN TREMAINE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -91837,68 +108199,16 @@ ], "notationParticipants": [ { - "uuid": "4ce61531-df39-410c-b47c-de3117cd21e4", - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "uuid": "89a177b7-e095-47e8-b20c-91c93d5a5adb", + "uuid": "f3ce1511-5bf1-4004-8589-d7658ddada04", "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "a8a93892-c99a-4047-8d75-a0591db8406d", + "uuid": "6a319e18-70e4-479d-8396-4ba5fde3695d", "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - } - ], - "siteRegistry": true - }, - { - "uuid": "cb655aeb-3cec-478f-a8b0-37616d5c9bc3", - "createdAt": "2021-08-20", - "completed": "2019-04-04", - "initiated": "2018-08-02", - "ministryContact": "FRANEY SIDNEY", - "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", - "note": "", - "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", - "requestedActions": [ - "" - ], - "notationParticipants": [ - { - "uuid": "0f3d77a8-008c-4b14-aa3c-f079e6adadc5", - "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true - }, - { - "uuid": "18925a2e-3639-44c1-8dc3-9e52ba4f10d4", - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false - }, - { - "uuid": "61f7c89f-4240-4304-97be-6ddd415ca303", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", "siteRegistry": false - }, - { - "uuid": "091e5189-c7e6-4a14-899f-a3adad52e18b", - "name": "SNC-LAVALIN ENVIRONMENT INC.", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "uuid": "241ef83e-17f5-4760-bc97-2584936d958f", - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true } ], "siteRegistry": true @@ -91906,43 +108216,43 @@ ], "participants": [ { - "uuid": "3218da83-e7de-47ab-a8b3-ec9c4ed8e1cf", + "uuid": "2df8f9f0-0717-4ae8-b4b8-64cbb506fe03", "name": "AMET, DOLOR SIT", - "endDate": "2018-01-08", - "startDate": "2017-10-02", + "endDate": "2022-06-16", + "startDate": "2023-08-22", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "46a9b8b1-29c8-4829-b464-9c20046ceb9b", - "name": "AMET, DOLOR SIT", - "endDate": "2023-05-30", - "startDate": "2019-03-15", + "uuid": "0d64c4ca-621f-4a3a-8a54-6413bb2728b2", + "name": "IPSUM", + "endDate": "2014-03-09", + "startDate": "2023-02-23", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "77eaefcc-2529-4ef0-a080-7710aa7fd433", - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2019-02-25", - "startDate": "2019-12-01", + "uuid": "c6183404-04e5-438f-b7bc-8cd1d284f3e9", + "name": "IPSUM", + "endDate": "2021-11-26", + "startDate": "2023-05-23", "notes": "", "roles": [ "ORGANIZATION" ], - "siteRegistry": false + "siteRegistry": true }, { - "uuid": "ccc8e37c-0972-4233-8791-5b10691d9969", - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2022-06-05", - "startDate": "2016-08-07", + "uuid": "5ed16620-ceab-4c7a-94e0-d0a79f86dfa3", + "name": "IPSUM", + "endDate": "2019-11-21", + "startDate": "2017-02-16", "notes": "", "roles": [ "EMPLOYEE" @@ -91950,139 +108260,182 @@ "siteRegistry": true }, { - "uuid": "26756fe6-ecee-4016-8170-1305745a4d61", + "uuid": "c36995b3-a028-46a4-a4f2-9b3366d63555", "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2014-02-11", - "startDate": "2019-03-27", + "endDate": "2020-08-05", + "startDate": "2015-01-16", "notes": "", "roles": [ - "EMPLOYEE" + "ORGANIZATION" ], "siteRegistry": false } ], - "suspectLandUses": [ + "documents": [ { - "uuid": "698647d5-1462-46ed-9e94-157c6fde8a59", + "uuid": "86c95102-cb31-4337-8f3a-5bf54c8036e2", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-12-29 (described on Site Profile dated 2016-12-29)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "documentDate": "2015-12-27", + "receivedDate": "2014-10-21", + "uploadedDate": "2021-08-03", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "49e79939-dd62-4ac2-b3bb-9a069108e39f", + "name": "AMET, DOLOR SIT", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "91774a58-8c0d-4e53-922d-1b315a50a874", + "name": "AMET, DOLOR SIT", + "siteRegistry": false, + "role": "AUTHOR" + } + ] }, { - "uuid": "b7629b6c-7279-47b9-a95d-35ba2a73c00a", - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-04-06 (described on Site Profile dated 2018-04-06)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" - }, + "uuid": "6a89a9db-5aa8-45d9-bafa-4ebbd5eff869", + "siteRegistry": false, + "documentDate": "2023-09-18", + "receivedDate": "2017-12-16", + "uploadedDate": "2017-01-17", + "title": "Human Health and Ecological Risk Assessment for the Management Area adjacent to the Shell Site at 1503 West 41st Avenue, Vancouver BC (LC C010106)", + "participants": [ + { + "uuid": "b4b8dc95-e59a-4c2a-8ff2-2b56c9bfd0cb", + "name": "AMET, DOLOR SIT", + "siteRegistry": true, + "role": "AUTHOR" + }, + { + "uuid": "6765c311-51c7-443b-8cc2-4aa14342d379", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "9803fb6f-4648-498a-b937-cbb97db45b65", + "name": "IPSUM", + "siteRegistry": true, + "role": "AUTHOR" + } + ] + } + ], + "suspectLandUses": [ { - "uuid": "b684971c-8673-42ed-bce2-52511e13479b", - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-09-24 (described on Site Profile dated 2019-09-24)", + "uuid": "edf08f66-7448-48e3-81e3-cf1dc9b72c8b", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2016-01-24 (described on Site Profile dated 2016-01-24)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "uuid": "78d1ac86-7688-4176-b790-21768641a755", - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2020-07-20 (described on Site Profile dated 2020-07-20)", - "landUse": "PETROLEUM OR NATURAL GAS DRILLING" + "uuid": "e3ca2e23-4c84-4b1f-8822-e70356e9526d", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2017-03-10 (described on Site Profile dated 2017-03-10)", + "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "uuid": "d8bc1516-22c0-4553-890f-c2bdf22ba28b", - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2019-07-25 (described on Site Profile dated 2019-07-25)", + "uuid": "99f788b9-07e7-4795-989a-47a02587481b", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2017-01-30 (described on Site Profile dated 2017-01-30)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" + }, + { + "uuid": "0244f4da-8c56-46b6-b195-8ca1d7c8e19d", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2017-03-21 (described on Site Profile dated 2017-03-21)", + "landUse": "PETROLEUM OR NATURAL GAS DRILLING" } ], "parcelDescriptions": [ { - "uuid": "1ac11363-f0ff-410e-8430-d00b4548988c", + "uuid": "d0a9fa70-1c4d-4e8c-b75f-238e7fc6600e", "siteRegistry": false, - "dateNoted": "2018-11-09", - "parcelID": "17745", - "crownLandUsePIN": "17823", - "crownLandFileNumber": "16314", - "landDescription": "LOT 3 OF LOT 4 BLOCK 2 DISTRICT LOT 4 PLAN 7604" - }, - { - "uuid": "c00e3f87-4ac0-4ff7-9679-948806afc85a", - "siteRegistry": true, - "dateNoted": "2022-04-18", - "parcelID": "15267", - "crownLandUsePIN": "15801", - "crownLandFileNumber": "18442", - "landDescription": "LOT 4 OF LOT 4 BLOCK 2 DISTRICT LOT 3 PLAN 8906" + "dateNoted": "2018-03-03", + "parcelID": "18997", + "crownLandUsePIN": "19244", + "crownLandFileNumber": "16564", + "landDescription": "LOT 3 OF LOT 5 BLOCK 1 DISTRICT LOT 1 PLAN 5566" }, { - "uuid": "f7a11b55-2582-44e6-92d4-dc1eb18ce9de", + "uuid": "64bf8c54-1855-41ba-ba87-2e49dc4d88e5", "siteRegistry": true, - "dateNoted": "2019-08-18", - "parcelID": "17036", - "crownLandUsePIN": "15625", - "crownLandFileNumber": "16070", - "landDescription": "LOT 3 OF LOT 5 BLOCK 5 DISTRICT LOT 3 PLAN 5077" + "dateNoted": "2017-12-14", + "parcelID": "20426", + "crownLandUsePIN": "18127", + "crownLandFileNumber": "19303", + "landDescription": "LOT 3 OF LOT 5 BLOCK 2 DISTRICT LOT 3 PLAN 6647" } ], "siteDisclosures": [ { - "uuid": "003b3a4e-5037-4566-a67f-745bee28db14", - "siteRegistry": true, - "dateReceived": "2022-08-19", - "dateCompleted": "2022-04-04", - "dateEntered": "2022-07-27", - "dateRegistrar": "2022-03-25", - "dateLocalAuthorityReceived": "2018-05-31", - "summary": "Odio autem harum deleniti dolorem quam temporibus labore ullam.", - "informationUsed": "Expedita facere incidunt aspernatur nesciunt doloribus totam.\nSed quibusdam distinctio sunt dolorum quaerat dolor ut.\nSed enim in velit sit molestias.\nPorro quasi fugiat a quo reprehenderit.", - "pastOrPresentOrders": "Fugiat aspernatur error dignissimos quo recusandae explicabo ipsum.", + "uuid": "604cd33d-576c-4871-9623-b159dd334171", + "siteRegistry": false, + "dateReceived": "2016-07-06", + "dateCompleted": "2019-01-01", + "dateEntered": "2020-12-17", + "dateRegistrar": "2016-10-26", + "dateLocalAuthorityReceived": "2023-08-02", + "summary": "Assumenda error laborum eligendi natus sint.\nCorrupti delectus corrupti atque natus perspiciatis quisquam eveniet maiores autem.", + "informationUsed": "Fuga eum eveniet iure consequuntur ipsum.\nQuod corporis repellat provident occaecati tenetur omnis.\nNesciunt praesentium consequuntur modi nulla temporibus tempore ipsa.", + "pastOrPresentOrders": "Commodi illo dolor quam ex ex voluptas est asperiores qui.\nIpsum omnis illum cupiditate.", "commercialAndIndustrialPurposes": [ { - "uuid": "c65becff-30a8-4385-bd54-d5add042e047", + "uuid": "29563a66-344c-4035-9469-4b2621ab90ad", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, { - "uuid": "7ed072fc-8f53-423d-8046-63eeb06036ba", + "uuid": "5efe7d2d-a2ee-4e38-b9ca-27054db9bdb6", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "uuid": "9094d812-f11f-4cd6-96f8-ecb1fbbfc5a8", "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true + }, + { + "uuid": "41a95cb9-8b18-4e74-a156-c41cb96374e9", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": true } ] }, { - "uuid": "dcf82d37-a76b-489e-aa98-6e50989e0c49", - "siteRegistry": false, - "dateReceived": "2020-11-04", - "dateCompleted": "2013-10-24", - "dateEntered": "2016-10-17", - "dateRegistrar": "2015-03-27", - "dateLocalAuthorityReceived": "2023-01-31", - "summary": "Molestiae voluptatum tenetur modi amet quaerat natus porro blanditiis tenetur.\nVoluptas exercitationem corporis similique minima vero iusto accusamus commodi.", - "informationUsed": "Laborum facilis explicabo eligendi nulla enim doloribus ullam illo nobis.\nEt minus quasi nobis facere at et maxime dolorum commodi.\nMollitia quaerat repudiandae similique vel ullam consequuntur.", - "pastOrPresentOrders": "Rem sed iure perspiciatis.\nAccusamus expedita quam totam.\nAlias non provident velit recusandae dolorum.", + "uuid": "d5c9d357-0786-4eed-8738-527283c43db4", + "siteRegistry": true, + "dateReceived": "2016-11-21", + "dateCompleted": "2017-11-02", + "dateEntered": "2022-11-30", + "dateRegistrar": "2020-06-26", + "dateLocalAuthorityReceived": "2021-03-18", + "summary": "Natus aspernatur recusandae.\nVel laborum maxime.\nVoluptates et maxime a ullam accusantium voluptatum esse quae quia.", + "informationUsed": "Eligendi maiores magnam officia aperiam reprehenderit incidunt.\nIpsam velit nam.\nA commodi consequuntur maxime nulla magni.", + "pastOrPresentOrders": "Id numquam vero porro ducimus est odio.\nEum expedita laudantium illo nobis.", "commercialAndIndustrialPurposes": [ { - "uuid": "dfde239f-d5e2-46f2-b8ab-157fcbf13f6a", - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false - }, - { - "uuid": "01d4fb64-99c7-41b5-867f-b0a58f0f3442", + "uuid": "44554564-3ae4-4f2b-9cfb-2f4231b467c0", "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", "siteRegistry": false }, { - "uuid": "025320d2-d7d8-42ab-b263-15b26cc3f400", - "scheduleReference": "F1*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "uuid": "42b423df-5cac-49d1-938f-3d0b46953ec4", + "scheduleReference": "F2*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false }, { - "uuid": "38ee770d-738c-4844-92d5-aff2e4938384", - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS DRILLING", + "uuid": "a8698c70-7d39-4e77-821a-e2a9bb04a599", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false } ] @@ -92090,121 +108443,107 @@ ], "activityLog": [ { - "uuid": "9f04dbf6-5eed-4c64-a545-63b877e2ddde", - "siteRegistry": false, - "activity": "Lorem ipsum dolor sit amet", - "user": "BREITENBERG LANCE", - "timestamp": "2018-02-05" - }, - { - "uuid": "07ef94ea-6b59-4912-818b-ef1f6a5ccf66", + "uuid": "95759264-c1a6-4d9a-b680-b7ba09d70ab2", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "HOWELL OMA", - "timestamp": "2020-11-23" + "user": "PRICE WENDELL", + "timestamp": "2020-12-26" }, { - "uuid": "12e2f223-81c0-4ada-beca-91f0c435acf9", + "uuid": "85ceb520-aa3b-4271-9a73-10ad5be8fbcd", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "GRADY PERCIVAL", - "timestamp": "2015-03-24" + "user": "LARKIN ALFREDO", + "timestamp": "2022-09-09" }, { - "uuid": "cdb0e54c-cde3-4f75-8085-cfc8d725f86e", + "uuid": "8f8c049e-91b8-44ad-8ead-63d74932fbb2", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "WYMAN LACEY", - "timestamp": "2013-12-05" - }, - { - "uuid": "a6de3451-759d-4600-b535-077b8ef23959", - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "SCHOWALTER ROGERS", - "timestamp": "2020-10-27" + "user": "EMMERICH JOYCE", + "timestamp": "2013-12-02" }, { - "uuid": "3499aebf-4a65-46ae-a626-564b474502ab", + "uuid": "4e8fea80-ae93-4d31-bad6-e46b8872de9a", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "DOUGLAS VERONA", - "timestamp": "2015-12-07" + "user": "GIBSON MOSES", + "timestamp": "2015-11-07" }, { - "uuid": "4ec1fd48-d978-434f-b9b5-dcdb671018ab", - "siteRegistry": true, + "uuid": "cc85963f-c6f9-4b2a-adc5-0e261886abf1", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "LANGWORTH PEARL", - "timestamp": "2022-07-26" + "user": "MORAR-HOMENICK HALEIGH", + "timestamp": "2019-04-18" }, { - "uuid": "b0b41ead-8732-4bc6-8ee5-c688b588f2ba", - "siteRegistry": true, + "uuid": "850e6db4-3b90-4a87-86eb-0b071b59c302", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "BERGSTROM ELVERA", - "timestamp": "2017-09-07" + "user": "SCHROEDER OLEN", + "timestamp": "2016-03-02" }, { - "uuid": "58b1fd0c-de88-420a-b086-f7611a3653b9", + "uuid": "ee4c2a80-56b0-4463-8a5e-cc665d05b24f", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "BOGAN-LANGWORTH ADAM", - "timestamp": "2020-01-19" + "user": "FRAMI GIANNI", + "timestamp": "2017-12-03" }, { - "uuid": "fdb6dd16-7c68-4f95-a32c-8a002f15be0c", - "siteRegistry": false, + "uuid": "76f5e6dc-e43f-48da-bd08-84a1f6d6b21a", + "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "STROMAN REYES", - "timestamp": "2023-08-09" + "user": "WEHNER TEAGAN", + "timestamp": "2016-07-09" } ], "associatedSites": [ { - "uuid": "544dcd61-ae59-42c7-819a-dc6b81e3f776", - "dateNoted": "2016-02-16", + "uuid": "062191e7-8135-41b3-94b7-35665ad09f3a", + "dateNoted": "2022-02-01", "notes": "", - "parcelID": "17101", - "siteID": "18806", - "siteRegistry": true + "parcelID": "15821", + "siteID": "20693", + "siteRegistry": false }, { - "uuid": "c1d1eed7-90ec-4e98-b015-a344c06a157d", - "dateNoted": "2017-12-17", + "uuid": "69fe579f-4a66-406d-aecb-0751c2b91521", + "dateNoted": "2016-08-03", "notes": "", - "parcelID": "17430", - "siteID": "18336", - "siteRegistry": false + "parcelID": "19390", + "siteID": "16144", + "siteRegistry": true } ] }, { - "uuid": "f1e8b9be-6107-4058-ab62-6f230736c0af", - "siteID": 17685, - "address": "977 Ashley Isle", - "latitude": 50.9848, - "longitude": -125.8874, - "lastUpdated": "2021-09-06", - "city": "South Abbigail", - "region": " North Coast", - "victoriaFile": "26250-20/17763", + "uuid": "5ba95591-c83e-4172-b278-7bf50159c947", + "siteID": 17433, + "address": "7877 Johnson Court", + "latitude": 50.595, + "longitude": -118.7069, + "lastUpdated": "2017-04-18", + "city": "East Selinafort", + "region": "Kootenay", + "victoriaFile": "26250-20/2570", "regionalFile": "N/A", "parcelIDs": [ - 6124454, - 9463412, - 878411, - 2913626, - 8217567 + 8241890, + 3356583, + 5259954, + 4975119, + 5009574 ], "locationDescription": "LAT/LONGS CONFIRMED USING ICIS MAY 16,2013", "notations": [ { - "uuid": "ba8fffbb-8b60-410b-b4e8-52bf5ee73458", - "createdAt": "2023-06-17", - "completed": "2021-06-02", - "initiated": "2017-07-18", - "ministryContact": "STARK LINA", + "uuid": "d33854eb-35d2-48eb-be9d-aaf0495ae118", + "createdAt": "2016-11-13", + "completed": "2018-07-05", + "initiated": "2015-04-27", + "ministryContact": "HILPERT TAMARA", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -92213,26 +108552,38 @@ ], "notationParticipants": [ { - "uuid": "5f03ece7-d46f-4f5d-b0f5-b367241ee749", - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "5f662927-cbd7-41f8-b055-4e7b2b01ac1c", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", "siteRegistry": false }, { - "uuid": "85e5bfd9-b198-48f1-8725-6ec422f412ef", - "name": "SNC-LAVALIN ENVIRONMENT INC.", + "uuid": "59ae5252-c9b6-419e-a877-f3fc9f9abca8", + "name": "SHELL CANADA PRODUCTS", "role": "SUBMITTED BY", + "siteRegistry": false + }, + { + "uuid": "2430fb5e-6d8f-4fcc-8bb1-f946bc81edfb", + "name": "SHELL CANADA PRODUCTS", + "role": "REQUESTED BY", + "siteRegistry": false + }, + { + "uuid": "02d74bdc-cf8e-4188-a2a3-859bc3f58f16", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "d1626c3a-5a61-41dc-9a98-45e8ba162b19", - "createdAt": "2015-08-27", - "completed": "2021-04-03", - "initiated": "2013-12-01", - "ministryContact": "MARQUARDT CARMINE", + "uuid": "16c7c2a6-d9db-4778-936c-05c82ee88df2", + "createdAt": "2023-08-07", + "completed": "2017-04-11", + "initiated": "2021-01-09", + "ministryContact": "FUNK DAVON", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -92241,44 +108592,32 @@ ], "notationParticipants": [ { - "uuid": "88338805-de54-42ed-ba79-2ce17649691e", - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": true - }, - { - "uuid": "07d868e8-03b6-4653-8a90-8465dece2a0d", + "uuid": "ef3f5c67-11df-4ba8-a59b-1d1257fe3933", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "SUBMITTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "c680321c-eec6-4f99-9f96-096b65c823c3", + "uuid": "1d30ca7d-943e-4da7-a2ec-e6be57e918d2", "name": "SHELL CANADA PRODUCTS", "role": "REQUESTED BY", "siteRegistry": true }, { - "uuid": "c24061b1-f18c-450b-975c-4c87ad5cfc34", + "uuid": "a18ac72f-a7a6-4b4a-a7d0-e2b3eab04076", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false - }, - { - "uuid": "87be1158-3d7f-493a-a011-5429e7712db8", - "name": "SHELL CANADA PRODUCTS", - "role": "SUBMITTED BY", - "siteRegistry": false } ], - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "c7cc2dcd-6cc6-44ee-a35b-23e0d2c0886d", - "createdAt": "2017-11-23", - "completed": "2019-04-21", - "initiated": "2021-05-22", - "ministryContact": "HETTINGER GARRETT", + "uuid": "b352e759-77ea-4ad5-88ec-f4fb5a39946e", + "createdAt": "2018-05-02", + "completed": "2020-03-11", + "initiated": "2016-07-28", + "ministryContact": "WINDLER-ABERNATHY LANE", "notationClass": "ENVIRONMENTAL MANAGEMENT ACT: GENERAL", "note": "", "notationType": "CERTIFICATE OF COMPLIANCE REQUESTED", @@ -92287,49 +108626,33 @@ ], "notationParticipants": [ { - "uuid": "8d1bb83d-a34f-45d4-86e7-dffed0301991", - "name": "SHELL CANADA PRODUCTS", + "uuid": "8c93b14a-f8f6-414e-bf68-dee765b6700c", + "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "5b93197b-c747-4b73-931c-f47045d4c5d0", + "uuid": "5102df9c-2830-4a3e-89d9-fc42aee9ba7a", "name": "SNC-LAVALIN ENVIRONMENT INC.", "role": "REQUESTED BY", "siteRegistry": false + }, + { + "uuid": "e7e74dbd-df8f-4d15-b3df-0cb4c9f90290", + "name": "SNC-LAVALIN ENVIRONMENT INC.", + "role": "REQUESTED BY", + "siteRegistry": true } ], - "siteRegistry": true + "siteRegistry": false } ], "participants": [ { - "uuid": "17330c49-a2d4-4d70-90bd-6a65c2c97395", - "name": "SHELL CANADA PRODUCTS", - "endDate": "2021-12-27", - "startDate": "2014-08-25", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": true - }, - { - "uuid": "77c1abd2-f178-4c8c-83fa-1dbc6878a00b", - "name": "IPSUM", - "endDate": "2019-07-16", - "startDate": "2019-06-20", - "notes": "", - "roles": [ - "EMPLOYEE" - ], - "siteRegistry": true - }, - { - "uuid": "3b9faa36-347e-400f-921b-eb01dc624856", - "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2016-10-08", - "startDate": "2013-11-02", + "uuid": "8168098e-05a0-4466-8bde-198d15f53ac9", + "name": "AMET, DOLOR SIT", + "endDate": "2022-09-28", + "startDate": "2021-11-02", "notes": "", "roles": [ "EMPLOYEE" @@ -92337,96 +108660,147 @@ "siteRegistry": false }, { - "uuid": "7c1b124f-5db3-43ab-886b-95e7034f9808", + "uuid": "47df5949-188a-4f73-8ba9-39a6cde2f93f", "name": "SNC-LAVALIN ENVIRONMENT INC", - "endDate": "2015-03-26", - "startDate": "2023-05-31", + "endDate": "2014-05-07", + "startDate": "2014-12-04", "notes": "", "roles": [ - "ORGANIZATION" + "EMPLOYEE" ], "siteRegistry": true } ], - "suspectLandUses": [ + "documents": [ { - "uuid": "a5c99900-1bf9-4d02-9035-df2d4d2a632a", + "uuid": "4be269a9-e72b-4289-a824-1586eec6b58f", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-01-08 (described on Site Profile dated 2016-01-08)", + "documentDate": "2020-04-01", + "receivedDate": "2017-06-25", + "uploadedDate": "2021-09-30", + "title": "Summary of Site Conditions, 1537 W 41st Avenue, Vancouver", + "participants": [ + { + "uuid": "c2e8f037-b67c-43f0-a7ef-ace2f9c46822", + "name": "SHELL CANADA PRODUCTS", + "siteRegistry": false, + "role": "AUTHOR" + }, + { + "uuid": "0bcec2cb-77c3-4b17-bb0f-25d4e26c67bf", + "name": "AMET, DOLOR SIT", + "siteRegistry": true, + "role": "AUTHOR" + } + ] + } + ], + "suspectLandUses": [ + { + "uuid": "39f22822-0bf6-4656-8e3b-d6c70820b55e", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2022-01-06 (described on Site Profile dated 2022-01-06)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" }, { - "uuid": "cf76b72d-5b1a-4271-817d-f3a39db3b957", + "uuid": "bb2b596e-ac41-40e4-ad93-0ecb4ac0135f", "siteRegistry": false, - "notes": "INSERTED FOR SITE PROFILE DATED 2016-07-05 (described on Site Profile dated 2016-07-05)", + "notes": "INSERTED FOR SITE PROFILE DATED 2015-12-08 (described on Site Profile dated 2015-12-08)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "uuid": "d84e17e2-63e3-4489-a969-5a6fa8fc1f76", - "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2023-03-12 (described on Site Profile dated 2023-03-12)", + "uuid": "ad69eedc-1790-4c83-9c6d-3742847408a7", + "siteRegistry": false, + "notes": "INSERTED FOR SITE PROFILE DATED 2018-02-19 (described on Site Profile dated 2018-02-19)", "landUse": "PETROLEUM OR NATURAL GAS DRILLING" }, { - "uuid": "3b615c03-289a-4eaf-8af2-e513e9abea07", + "uuid": "b0366d23-3450-43c3-bd98-61baaac1054d", "siteRegistry": true, - "notes": "INSERTED FOR SITE PROFILE DATED 2018-06-10 (described on Site Profile dated 2018-06-10)", + "notes": "INSERTED FOR SITE PROFILE DATED 2023-05-21 (described on Site Profile dated 2023-05-21)", "landUse": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES" } ], "parcelDescriptions": [ { - "uuid": "a3d5307f-ef56-4df4-a9de-0a74f27a739d", + "uuid": "b4220f6c-0919-41a2-9a07-00d31ec32487", "siteRegistry": false, - "dateNoted": "2022-06-13", - "parcelID": "17664", - "crownLandUsePIN": "16979", - "crownLandFileNumber": "17048", - "landDescription": "LOT 4 OF LOT 4 BLOCK 1 DISTRICT LOT 5 PLAN 6928" + "dateNoted": "2020-11-12", + "parcelID": "17630", + "crownLandUsePIN": "17632", + "crownLandFileNumber": "15724", + "landDescription": "LOT 4 OF LOT 5 BLOCK 1 DISTRICT LOT 4 PLAN 4170" + }, + { + "uuid": "d48a9e09-d10f-4c8d-a6c0-3d015122c84f", + "siteRegistry": true, + "dateNoted": "2022-07-07", + "parcelID": "17585", + "crownLandUsePIN": "19865", + "crownLandFileNumber": "15427", + "landDescription": "LOT 4 OF LOT 5 BLOCK 5 DISTRICT LOT 2 PLAN 7588" }, { - "uuid": "22588a18-b48c-44d1-b9ae-d3363f225c33", + "uuid": "f8c2f0b9-2664-46a2-8f2d-9a87f482f70c", "siteRegistry": true, - "dateNoted": "2017-05-29", - "parcelID": "19995", - "crownLandUsePIN": "16065", - "crownLandFileNumber": "17295", - "landDescription": "LOT 3 OF LOT 1 BLOCK 1 DISTRICT LOT 5 PLAN 3442" + "dateNoted": "2022-03-06", + "parcelID": "18870", + "crownLandUsePIN": "18116", + "crownLandFileNumber": "19425", + "landDescription": "LOT 4 OF LOT 3 BLOCK 1 DISTRICT LOT 1 PLAN 6941" + }, + { + "uuid": "32d82451-95fc-43bb-9e56-df24b26258da", + "siteRegistry": false, + "dateNoted": "2022-07-31", + "parcelID": "19735", + "crownLandUsePIN": "19631", + "crownLandFileNumber": "17558", + "landDescription": "LOT 3 OF LOT 4 BLOCK 2 DISTRICT LOT 4 PLAN 7452" + }, + { + "uuid": "496e2a2f-db1b-4183-85a2-10c6fbb4ba73", + "siteRegistry": false, + "dateNoted": "2017-09-07", + "parcelID": "17712", + "crownLandUsePIN": "18041", + "crownLandFileNumber": "17636", + "landDescription": "LOT 2 OF LOT 4 BLOCK 2 DISTRICT LOT 2 PLAN 5417" } ], "siteDisclosures": [ { - "uuid": "3d6d84c7-5c7b-4d2c-a460-b8bddc98cac2", + "uuid": "922680d7-abe6-423d-8c6e-86b3805a74bc", "siteRegistry": false, - "dateReceived": "2023-04-23", - "dateCompleted": "2014-05-22", - "dateEntered": "2015-02-19", - "dateRegistrar": "2017-05-07", - "dateLocalAuthorityReceived": "2019-05-05", - "summary": "Sapiente occaecati hic impedit.", - "informationUsed": "Voluptatibus aut saepe.\nIure eligendi perspiciatis illo tempora dicta numquam eum blanditiis beatae.\nPraesentium error dolores officia quae ad.", - "pastOrPresentOrders": "Laborum repellat saepe reprehenderit eius debitis minima.\nExercitationem numquam vitae temporibus omnis iusto.\nOptio iste totam nam.", + "dateReceived": "2017-03-13", + "dateCompleted": "2022-05-04", + "dateEntered": "2017-10-14", + "dateRegistrar": "2019-04-18", + "dateLocalAuthorityReceived": "2023-10-15", + "summary": "Enim saepe quidem ea praesentium maxime non architecto sequi.\nInventore culpa suscipit dicta dignissimos.\nHic iusto eveniet facere repellat eaque maiores velit corporis.", + "informationUsed": "Aut quam culpa suscipit.\nMinus vel laboriosam architecto.\nNemo molestias labore consectetur quidem.\nSoluta atque numquam explicabo at facilis voluptatem.", + "pastOrPresentOrders": "Molestiae animi asperiores.\nEveniet dolores eum necessitatibus culpa nisi qui.\nQuis commodi quasi.", "commercialAndIndustrialPurposes": [ { - "uuid": "f3d4c8d7-1421-4312-8e7b-74923898b8e6", - "scheduleReference": "F2*", + "uuid": "e3c5401f-2643-4f16-9c04-2a87eeb583fd", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS DRILLING", - "siteRegistry": true + "siteRegistry": false }, { - "uuid": "e234f19f-12fc-45f9-94f7-2aac12d14f01", - "scheduleReference": "F2*", + "uuid": "0f2e5e7d-f2af-4e1f-b8f6-704aa45d3d81", + "scheduleReference": "F1*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": false }, { - "uuid": "195c9768-cec9-46d0-b823-f28f8392912c", - "scheduleReference": "F2*", - "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", - "siteRegistry": false + "uuid": "31f20f40-1773-45ac-b08f-ee85a0221733", + "scheduleReference": "F1*", + "description": "PETROLEUM OR NATURAL GAS DRILLING", + "siteRegistry": true }, { - "uuid": "aced7c7f-f3ad-46d7-853c-147b5df92b34", + "uuid": "eb62ab83-1522-4ac9-ad9f-bc60d9fd830f", "scheduleReference": "F2*", "description": "PETROLEUM OR NATURAL GAS PRODUCTION FACILITIES", "siteRegistry": true @@ -92436,79 +108810,72 @@ ], "activityLog": [ { - "uuid": "caa8caea-4fb2-453e-8310-b3194097191a", - "siteRegistry": true, - "activity": "Lorem ipsum dolor sit amet", - "user": "ZBONCAK KEYON", - "timestamp": "2016-10-29" - }, - { - "uuid": "2af4a56c-e610-4f3d-a418-062510c475e7", - "siteRegistry": true, + "uuid": "24115ddf-7ef1-48f3-8ca9-e89c8878978a", + "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "SPENCER WADE", - "timestamp": "2017-12-14" + "user": "HALVORSON BURLEY", + "timestamp": "2020-05-23" }, { - "uuid": "7ffff999-5d79-422c-8f1d-82b9c3e1bf2d", + "uuid": "1fc1f394-8ba7-4359-b03c-92e4da385348", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "HETTINGER MICHAEL", - "timestamp": "2017-08-24" + "user": "KUNZE-WELCH CHRISTELLE", + "timestamp": "2015-12-28" }, { - "uuid": "8508e4ae-1871-4f49-bdf3-c2a971a791c2", + "uuid": "bbb85475-ef78-4b74-9f4d-c11e487c68fc", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "SWIFT JULIUS", - "timestamp": "2019-02-12" + "user": "HEATHCOTE KEANU", + "timestamp": "2022-09-03" }, { - "uuid": "d7013774-b172-44c9-8065-2ee0b7870a68", + "uuid": "49f09ca1-cef1-4235-a0c0-5a4934634353", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "PAUCEK LAVERNA", - "timestamp": "2015-02-08" + "user": "KLOCKO MATHIAS", + "timestamp": "2015-03-28" }, { - "uuid": "1f8d64c3-7d67-40a7-9eba-671d7bf459d4", + "uuid": "724dbfb3-e6b3-4041-a91d-952c2d92a9bb", "siteRegistry": false, "activity": "Lorem ipsum dolor sit amet", - "user": "BRAKUS ERNESTO", - "timestamp": "2020-08-11" + "user": "MURRAY ELOUISE", + "timestamp": "2019-01-30" }, { - "uuid": "81be86eb-3ace-4635-944b-fa92358f3402", + "uuid": "e2b71a37-a3f2-4945-957c-96afc8a3ca44", "siteRegistry": true, "activity": "Lorem ipsum dolor sit amet", - "user": "HUELS ARVILLA", - "timestamp": "2015-01-26" + "user": "KUHIC OLGA", + "timestamp": "2019-04-01" } ], "associatedSites": [ { - "uuid": "d805736a-7c50-429a-b2f4-aeee2a56b8af", - "dateNoted": "2019-12-19", + "uuid": "85488bdd-bca3-4494-8672-0851f1605cc5", + "dateNoted": "2017-12-18", "notes": "", - "parcelID": "18144", - "siteID": "16651", - "siteRegistry": false + "parcelID": "20443", + "siteID": "15957", + "siteRegistry": true }, { - "uuid": "bd20199e-c3ee-4b46-ac82-c0676d957366", - "dateNoted": "2023-10-06", + "uuid": "18cbce9a-d4a2-4163-89f2-1e75300fff5b", + "dateNoted": "2021-12-19", "notes": "", - "parcelID": "20516", - "siteID": "20933", + "parcelID": "17301", + "siteID": "20571", "siteRegistry": true }, { - "uuid": "1d7a0f8c-3deb-48c0-991b-d288e47622dd", - "dateNoted": "2015-12-16", + "uuid": "70df40fa-fa95-4aea-be5b-7ce4f971781c", + "dateNoted": "2023-05-06", "notes": "", - "parcelID": "16424", - "siteID": "19196", - "siteRegistry": true + "parcelID": "16936", + "siteID": "16344", + "siteRegistry": false } ] } From 4ba7884bde3e9fd0a355ee9862de471ed2a6682e Mon Sep 17 00:00:00 2001 From: Adam Coard Date: Mon, 16 Oct 2023 09:06:45 -0700 Subject: [PATCH 161/194] Associated Site creation --- .../site-details/associated-sites.tsx | 38 ++++++++++++++++++- 1 file changed, 36 insertions(+), 2 deletions(-) diff --git a/frontend/site-search-frontend/src/features/site-details/associated-sites.tsx b/frontend/site-search-frontend/src/features/site-details/associated-sites.tsx index 5205ff24..54172151 100644 --- a/frontend/site-search-frontend/src/features/site-details/associated-sites.tsx +++ b/frontend/site-search-frontend/src/features/site-details/associated-sites.tsx @@ -1,14 +1,46 @@ -import { Site } from "@/api/sites"; +import { AssociatedSite, Site } from "@/api/sites"; import { RootState } from "@/store"; -import { useSelector } from "react-redux"; +import { useDispatch, useSelector } from "react-redux"; import { useParams } from "react-router-dom"; import SubSearch from "./sub-search/SubSearch"; import SiteDetailsTable from "./table/SiteDetailsTable"; +import { updateSite } from "../simple-search/simple-search"; +import { faker } from "@faker-js/faker"; export default function AssociatedSites() { const { siteID } = useParams(); const siteIDNum = parseInt(siteID); const site: Site = useSelector((state: RootState) => state.site.value.find(searchedSite => searchedSite.siteID === siteIDNum)); + const dispatch = useDispatch(); + + function addAssociation(){ + const newAssociation: AssociatedSite = {uuid: faker.string.uuid(), dateNoted: '', notes: '', parcelID: '', siteID: '', siteRegistry: false}; + const newSite: Site = { + ...site, + associatedSites: [...site.associatedSites, newAssociation] + }; + + dispatch(updateSite(newSite)) + } + + function removeAssociation(checkedObj){ + // const checkedAsArray = [...Object.keys(checkedObj).map(key => checkedObj[key])]; + // console.log('remove', {checkedObj, checkedAsArray}) + + const newSite: Site = { + ...site, + associatedSites: [...site.associatedSites.filter((_, index) => { + // if checked, we want to return false to remove it from the array + if (checkedObj[index] === true ) { + // console.log('removing', participant) + return false + } + return true; + })] + }; + + dispatch(updateSite(newSite)) + } return (
@@ -25,6 +57,8 @@ export default function AssociatedSites() { {label: 'Date Noted', accessor: 'dateNoted'}, {label: 'Notes', accessor: 'notes'} ]} + onClickAdd={addAssociation} + onClickRemove={removeAssociation} data={site.associatedSites} />
From c7dffc93bb09bc68693ca894459b5c5b9a465f3b Mon Sep 17 00:00:00 2001 From: Adam Coard Date: Mon, 16 Oct 2023 09:06:57 -0700 Subject: [PATCH 162/194] Text formatting / capitalization --- .../src/features/site-details/notations.tsx | 2 +- .../src/features/site-details/site-profile.tsx | 2 +- .../site-search-frontend/src/features/site-details/summary.tsx | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/frontend/site-search-frontend/src/features/site-details/notations.tsx b/frontend/site-search-frontend/src/features/site-details/notations.tsx index 1bfef36b..0e4e6fa3 100644 --- a/frontend/site-search-frontend/src/features/site-details/notations.tsx +++ b/frontend/site-search-frontend/src/features/site-details/notations.tsx @@ -127,7 +127,7 @@ function NotationItem({ notation, index, onClickAddParticipant, onClickRemovePar {editMode &&
SR - +
}
diff --git a/frontend/site-search-frontend/src/features/site-details/site-profile.tsx b/frontend/site-search-frontend/src/features/site-details/site-profile.tsx index 649577e2..1ead4747 100644 --- a/frontend/site-search-frontend/src/features/site-details/site-profile.tsx +++ b/frontend/site-search-frontend/src/features/site-details/site-profile.tsx @@ -52,7 +52,7 @@ function SiteDisclosureItem({ disclosure }: SiteDisclosureItemProps) {
{editMode &&
- +
} diff --git a/frontend/site-search-frontend/src/features/site-details/summary.tsx b/frontend/site-search-frontend/src/features/site-details/summary.tsx index 7639cbd6..220a1d83 100644 --- a/frontend/site-search-frontend/src/features/site-details/summary.tsx +++ b/frontend/site-search-frontend/src/features/site-details/summary.tsx @@ -16,7 +16,7 @@ export default function Summary() {
- + Date: Mon, 16 Oct 2023 09:07:10 -0700 Subject: [PATCH 163/194] Added more site detail grid rows --- .../src/pages/site-details.module.css | 23 +++++++++++++++++++ .../src/pages/site-details.tsx | 2 +- 2 files changed, 24 insertions(+), 1 deletion(-) diff --git a/frontend/site-search-frontend/src/pages/site-details.module.css b/frontend/site-search-frontend/src/pages/site-details.module.css index 551df761..37c6c905 100644 --- a/frontend/site-search-frontend/src/pages/site-details.module.css +++ b/frontend/site-search-frontend/src/pages/site-details.module.css @@ -35,10 +35,33 @@ grid-column: span 1; } +.gridSpan1 { + grid-column: span 1 +} + +.gridSpan2 { + grid-column: span 2 +} + .gridSpan3 { grid-column: span 3 } +.gridSpan4 { + grid-column: span 4 +} + +.gridSpan5 { + grid-column: span 5 +} + +.gridSpan6 { + grid-column: span 6 +} + + + + .formLabel { diff --git a/frontend/site-search-frontend/src/pages/site-details.tsx b/frontend/site-search-frontend/src/pages/site-details.tsx index cabfa90c..757805a3 100644 --- a/frontend/site-search-frontend/src/pages/site-details.tsx +++ b/frontend/site-search-frontend/src/pages/site-details.tsx @@ -34,7 +34,7 @@ export default function SiteDetailsPage() {
{!editMode &&
- +
} {editMode &&
From 04754bb10df8849e2c90b13a0fd45cacce2f8c91 Mon Sep 17 00:00:00 2001 From: Adam Coard Date: Mon, 16 Oct 2023 09:30:12 -0700 Subject: [PATCH 164/194] Add 'isMinistry' toggle --- .../src/components/Header.tsx | 78 +++++++++++++------ .../src/features/user/userSlice.ts | 9 ++- .../src/pages/site-details.tsx | 22 ++++-- 3 files changed, 75 insertions(+), 34 deletions(-) diff --git a/frontend/site-search-frontend/src/components/Header.tsx b/frontend/site-search-frontend/src/components/Header.tsx index 72817c9d..45ff69b0 100644 --- a/frontend/site-search-frontend/src/components/Header.tsx +++ b/frontend/site-search-frontend/src/components/Header.tsx @@ -2,32 +2,60 @@ import Container from 'react-bootstrap/Container'; import Nav from 'react-bootstrap/Nav'; import Navbar from 'react-bootstrap/Navbar'; import NavDropdown from 'react-bootstrap/NavDropdown'; +import Form from 'react-bootstrap/Form'; +import { setMinistryState } from '@/features/user/userSlice'; +import { RootState } from '@/store'; +import { useDispatch, useSelector } from 'react-redux'; + export default function Header() { - return ( - - - BCGov Logo - - - - - - - ); + const isMinistry = useSelector((state: RootState) => state.user.isMinistry); + const dispatch = useDispatch(); + + + function minstryToggleChange(e) { + console.log('ministryToggleChange', { isMinistry, e }); + dispatch(setMinistryState(!isMinistry)); + } + + + + return ( + + + BCGov Logo + + + + + + + ); } \ No newline at end of file diff --git a/frontend/site-search-frontend/src/features/user/userSlice.ts b/frontend/site-search-frontend/src/features/user/userSlice.ts index e387acf2..d3034d4a 100644 --- a/frontend/site-search-frontend/src/features/user/userSlice.ts +++ b/frontend/site-search-frontend/src/features/user/userSlice.ts @@ -1,4 +1,4 @@ -import { createSlice } from "@reduxjs/toolkit"; +import { PayloadAction, createSlice } from "@reduxjs/toolkit"; export interface UserState { isMinistry: boolean @@ -12,7 +12,12 @@ export const userSlice = createSlice({ userName: 'USER NAME' }, // TODO: Write reducer to switch to non-ministry user, put toggle in
- reducers: {} + reducers: { + setMinistryState: (state, action: PayloadAction) => { + state.isMinistry = action.payload; + } + } }) +export const { setMinistryState } = userSlice.actions export default userSlice.reducer; \ No newline at end of file diff --git a/frontend/site-search-frontend/src/pages/site-details.tsx b/frontend/site-search-frontend/src/pages/site-details.tsx index 757805a3..4db3ed9b 100644 --- a/frontend/site-search-frontend/src/pages/site-details.tsx +++ b/frontend/site-search-frontend/src/pages/site-details.tsx @@ -16,6 +16,7 @@ export default function SiteDetailsPage() { const siteIDNum = parseInt(siteID); const location = useLocation(); const site: Site = useSelector((state: RootState) => state.site.value.find(searchedSite => searchedSite.siteID === siteIDNum)); + const isMinistry = useSelector((state: RootState) => state.user.isMinistry); const dispatch = useDispatch(); function toggleEditClick(){ @@ -32,14 +33,21 @@ export default function SiteDetailsPage() { {site.siteID} - {site.address}
- {!editMode &&
- - -
} - {editMode &&
- - + + {isMinistry &&
+ + {!editMode &&
+ + +
} + {editMode &&
+ + +
} +
} + +
From fa462b54bbb12619a7bb937c8d0881c526b15de9 Mon Sep 17 00:00:00 2001 From: nikhila-aot Date: Mon, 16 Oct 2023 22:13:06 -0700 Subject: [PATCH 165/194] changes for sosc --- .../epd-forms/Summary of Site Condition.json | 4519 ++++++++--------- .../processes/SoSC/SOSCBundleWorklow.bpmn | 272 +- 2 files changed, 2218 insertions(+), 2573 deletions(-) diff --git a/forms-flow-ai/epd-forms/Summary of Site Condition.json b/forms-flow-ai/epd-forms/Summary of Site Condition.json index 6b1d0f74..74dc610d 100644 --- a/forms-flow-ai/epd-forms/Summary of Site Condition.json +++ b/forms-flow-ai/epd-forms/Summary of Site Condition.json @@ -13,9 +13,8 @@ { "title": "Reviewer Actions", "collapsible": false, - "hideLabel": true, - "key": "reviewerActions", - "customConditional": "const UserDetails = JSON.parse(localStorage.getItem(\"UserDetails\"));\r\nconst roles = UserDetails[\"role\"];\r\nif(roles.includes(\"formsflow-client\") || \r\nroles.includes(\"formsflow-reviewer/cssa-team\") || \r\nroles.includes(\"formsflow-reviewer/cssa-manager\")|| \r\nroles.includes(\"formsflow-reviewer/csap\") || \r\nroles.includes(\"formsflow-reviewer/csap-society\") ||\r\nroles.includes(\"formsflow-reviewer/formsflow-client-reviewer\")) {\r\n show = false;\r\n}\r\nelse\r\n{\r\n if (data.riskclassification === \"exempt\") {\r\n show = false;\r\n } else {\r\n show = true;\r\n }\r\n}", + "key": "formActions", + "customConditional": "const UserDetails = JSON.parse(localStorage.getItem(\"UserDetails\"));\r\nconst roles = UserDetails?UserDetails[\"role\"]:[];\r\nconsole.log('data-----', data);\r\nif(!UserDetails){\r\n show = false;\r\n}\r\nelse if(roles.includes(\"formsflow-client\")||\r\nroles.includes(\"formsflow-reviewer/formsflow-client-reviewer\")) {\r\n show = false;\r\n}\r\nelse\r\n{\r\n show = true;\r\n}", "type": "panel", "label": "Panel", "input": false, @@ -31,10 +30,10 @@ "action": "custom", "showValidations": false, "tableView": false, - "key": "prevReviewer", - "customConditional": "const UserDetails = JSON.parse(localStorage.getItem(\"UserDetails\"))\r\n\r\nconst roles = UserDetails[\"role\"];\r\n\r\n\r\nif(roles.includes(\"formsflow-reviewer\") && \r\n!roles.includes(\"formsflow-reviewer/caseworker\") &&\r\n!(roles.includes(\"formsflow-reviewer/sdm\") && data.typeOfReview === \"applicationViaTheSocietyOfContaminatedSitesApprovedProfessionalsOfBc\")) {\r\n show = true;\r\n}\r\nelse\r\n{\r\n show = false;\r\n}", + "key": "sendToPreviousReviewer", + "customConditional": "const UserDetails = JSON.parse(localStorage.getItem(\"UserDetails\"))\r\nconst roles = UserDetails[\"role\"];\r\n\r\n\r\nif(\r\n(roles.includes(\"formsflow-reviewer/csap\") || roles.includes(\"formsflow-reviewer/cssa-team\")) && \r\n(data.applicationStatus===\"New\" || data.applicationStatus===\"Resubmitted\" || data.applicationStatus===\"Resubmit\" || data.applicationStatus===\"Recheck\") \r\n) {\r\n show = false;\r\n}\r\nelse\r\n{\r\n show = true;\r\n}", "type": "button", - "custom": "const submissionId = form._submission._id;\r\nconst formId = form._submission.form;\r\nconst formDataReqUrl = form.formio?form.formio.formUrl:(localStorage.getItem('customSubmissionUrl')+'/form/'+formId)+'/submission/'+submissionId;\r\nconst filteredData = _.pick(data, data.soscUtilKeys);\r\nconst formDataReqObj1 = { \"_id\": submissionId, \"data\": filteredData};\r\nconst formio = new Formio(formDataReqUrl);\r\nformio.saveSubmission(formDataReqObj1).then( result => {\r\nform.emit('customEvent', {\r\n type: \"actionComplete\", \r\n component: component,\r\n actionType: 'Recheck'\r\n }); \r\n}).catch((error)=>{\r\n//Error callback on not Save\r\nform.emit('customEvent', {\r\n type: \"actionError\", \r\n component: component,\r\n actionType:'Recheck'\r\n }); \r\n});", + "custom": "const submissionId = form._submission._id;\r\nconst formId = form._submission.form;\r\nconst formDataReqUrl = form.formio?form.formio.formUrl:(localStorage.getItem('customSubmissionUrl')+'/form/'+formId)+'/submission/'+submissionId;\r\nconst formDataReqObj1 = { \"_id\": submissionId, \"data\": data};\r\nconst formio = new Formio(formDataReqUrl);\r\nformio.saveSubmission(formDataReqObj1).then( result => {\r\nform.emit('customEvent', {\r\n type: \"actionComplete\", \r\n component: component,\r\n actionType: 'Recheck'\r\n }); \r\n}).catch((error)=>{\r\n//Error callback on not Save\r\nform.emit('customEvent', {\r\n type: \"actionError\", \r\n component: component,\r\n actionType:'Recheck'\r\n }); \r\n});", "input": true, "placeholder": "", "prefix": "", @@ -101,15 +100,15 @@ "block": false, "disableOnInvalid": false, "theme": "primary", - "id": "egxsp3h" + "id": "erimibd" } ], + "width": 3, "offset": 0, "push": 0, "pull": 0, "size": "md", - "currentWidth": 3, - "width": 3 + "currentWidth": 3 }, { "components": [ @@ -117,35 +116,61 @@ "label": "Next Reviewer", "action": "custom", "showValidations": false, + "theme": "primary", + "size": "md", + "block": false, + "leftIcon": "", + "rightIcon": "", + "shortcut": "", + "description": "", + "tooltip": "", + "customClass": "", + "tabindex": "", + "disableOnInvalid": false, + "hidden": false, + "autofocus": false, + "disabled": false, "tableView": false, - "key": "nextReviewer", - "customConditional": "const UserDetails = JSON.parse(localStorage.getItem(\"UserDetails\"));\r\n\r\nconst roles = UserDetails[\"role\"];\r\n\r\nif(roles.includes(\"formsflow-reviewer/caseworker\")) {\r\n show = true;\r\n}\r\nelse\r\n{\r\n show = false;\r\n}", + "modalEdit": false, + "key": "sendToNextReviewer", + "tags": [], + "properties": {}, + "conditional": { + "show": null, + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "const UserDetails = JSON.parse(localStorage.getItem(\"UserDetails\"))\r\nconst roles = UserDetails[\"role\"];\r\n\r\nif(roles.includes(\"formsflow-reviewer/cssa-team\") || \r\nroles.includes(\"formsflow-reviewer/cssa-manager\") || \r\nroles.includes(\"formsflow-reviewer/csap\") || \r\nroles.includes(\"formsflow-reviewer/csap-society\") || \r\nroles.includes(\"formsflow-reviewer/caseworker\")) \r\n{\r\n if(data.soscStatus === 'caseworkerAccepted' ||\r\n data.soscStatus === '')\r\n show = false;\r\n else\r\n show = true;\r\n}\r\nelse\r\n{\r\n show = false;\r\n}", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, "type": "button", - "custom": "const submissionId = form._submission._id;\r\nconst formId = form._submission.form;\r\nconst formDataReqUrl = form.formio?form.formio.formUrl:(localStorage.getItem('customSubmissionUrl')+'/form/'+formId)+'/submission/'+submissionId;\r\n\r\nconst filteredData = _.pick(data, data.soscUtilKeys);\r\n\r\nconst formDataReqObj1 = { \"_id\": submissionId, \"data\": filteredData};\r\nconst formio = new Formio(formDataReqUrl);\r\nformio.saveSubmission(formDataReqObj1).then( result => {\r\nform.emit('customEvent', {\r\n type: \"actionComplete\", \r\n component: component,\r\n actionType: 'Accepted'\r\n }); \r\n}).catch((error)=>{\r\n//Error callback on not Save\r\nform.emit('customEvent', {\r\n type: \"actionError\", \r\n component: component,\r\n actionType:'Accepted'\r\n }); \r\n});", + "custom": "const UserDetails = JSON.parse(localStorage.getItem(\"UserDetails\"))\r\nconst roles = UserDetails[\"role\"];\r\nconsole.log('data---', data);\r\nif(roles.includes(\"formsflow-reviewer/cssa-manager\") && \r\n(data.selectSoscSdm===''|| data.selectSoscCaseworker===''))\r\n{\r\n alert('Please assign reviewers to continue!');\r\n \r\n}\r\nelse\r\n{\r\n const submissionId = form._submission._id;\r\n const formId = form._submission.form;\r\n const formDataReqUrl = form.formio?form.formio.formUrl:(localStorage.getItem('customSubmissionUrl')+'/form/'+formId)+'/submission/'+submissionId;\r\n const formDataReqObj1 = { \"_id\": submissionId, \"data\": data};\r\n const formio = new Formio(formDataReqUrl);\r\n formio.saveSubmission(formDataReqObj1).then( result => {\r\n form.emit('customEvent', {\r\n type: \"actionComplete\", \r\n component: component,\r\n actionType: 'Accepted'\r\n }); \r\n }).catch((error)=>{\r\n //Error callback on not Save\r\n form.emit('customEvent', {\r\n type: \"actionError\", \r\n component: component,\r\n actionType:'Accepted'\r\n }); \r\n });\r\n}", "input": true, + "keyModified": true, "placeholder": "", "prefix": "", - "customClass": "", "suffix": "", "multiple": false, "defaultValue": null, "protected": false, "unique": false, "persistent": false, - "hidden": false, "clearOnHide": true, "refreshOn": "", "redrawOn": "", - "modalEdit": false, "dataGridLabel": true, "labelPosition": "top", - "description": "", "errorLabel": "", - "tooltip": "", "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, "dbIndex": false, "customDefaultValue": "", "calculateValue": "", @@ -153,7 +178,6 @@ "widget": { "type": "input" }, - "attributes": {}, "validateOn": "change", "validate": { "required": false, @@ -163,66 +187,72 @@ "multiple": false, "unique": false }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, "allowCalculateOverride": false, "encrypted": false, "showCharCount": false, "showWordCount": false, - "properties": {}, "allowMultipleMasks": false, "addons": [], - "size": "md", - "leftIcon": "", - "rightIcon": "", - "block": false, - "disableOnInvalid": false, - "theme": "primary", - "id": "e8ywitm" + "id": "eo6xtp" }, { "label": "Approved", "action": "custom", "showValidations": false, + "theme": "primary", + "size": "md", + "block": false, + "leftIcon": "", + "rightIcon": "", + "shortcut": "", + "description": "", + "tooltip": "", + "customClass": "", + "tabindex": "", + "disableOnInvalid": false, + "hidden": false, + "autofocus": false, + "disabled": false, "tableView": false, - "key": "approved", - "customConditional": "const UserDetails = JSON.parse(localStorage.getItem(\"UserDetails\"));\r\n\r\nconst roles = UserDetails[\"role\"];\r\n\r\nif(roles.includes(\"formsflow-reviewer/sdm\")) {\r\n show = true;\r\n}\r\nelse\r\n{\r\n show = false;\r\n}", + "modalEdit": false, + "key": "approve", + "tags": [], + "properties": {}, + "conditional": { + "show": null, + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "const UserDetails = JSON.parse(localStorage.getItem(\"UserDetails\"));\r\nconst roles = UserDetails[\"role\"];\r\n\r\nif(roles.includes(\"formsflow-reviewer/sdm\")) {\r\n if (data.soscStatus === \"caseworkerAccepted\" ||\r\n data.soscStatus === '') \r\n show = true;\r\n else\r\n show = false;\r\n}\r\nelse\r\n{\r\n show = false;\r\n}\r\n", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, "type": "button", - "custom": "\r\nconst submissionId = form._submission._id;\r\nconst formId = form._submission.form;\r\nconst formDataReqUrl = form.formio?form.formio.formUrl:(localStorage.getItem('customSubmissionUrl')+'/form/'+formId)+'/submission/'+submissionId;\r\nconst filteredData = _.pick(data, data.soscUtilKeys);\r\nconst formDataReqObj1 = { \"_id\": submissionId, \"data\": filteredData};\r\nconst formio = new Formio(formDataReqUrl);\r\nformio.saveSubmission(formDataReqObj1).then( result => {\r\nform.emit('customEvent', {\r\n type: \"actionComplete\", \r\n component: component,\r\n actionType: 'Approved'\r\n }); \r\n}).catch((error)=>{\r\n//Error callback on not Save\r\nform.emit('customEvent', {\r\n type: \"actionError\", \r\n component: component,\r\n actionType:'Approved'\r\n }); \r\n});\r\n", + "custom": "const submissionId = form._submission._id;\r\nconst formId = form._submission.form;\r\nconst formDataReqUrl = form.formio?form.formio.formUrl:(localStorage.getItem('customSubmissionUrl')+'/form/'+formId)+'/submission/'+submissionId;\r\nconst formDataReqObj1 = { \"_id\": submissionId, \"data\": data};\r\nconst formio = new Formio(formDataReqUrl);\r\nformio.saveSubmission(formDataReqObj1).then( result => {\r\nform.emit('customEvent', {\r\n type: \"actionComplete\", \r\n component: component,\r\n actionType: 'Approved'\r\n }); \r\n}).catch((error)=>{\r\n//Error callback on not Save\r\nform.emit('customEvent', {\r\n type: \"actionError\", \r\n component: component,\r\n actionType:'Approved'\r\n }); \r\n});", "input": true, "placeholder": "", "prefix": "", - "customClass": "", "suffix": "", "multiple": false, "defaultValue": null, "protected": false, "unique": false, "persistent": false, - "hidden": false, "clearOnHide": true, "refreshOn": "", "redrawOn": "", - "modalEdit": false, "dataGridLabel": true, "labelPosition": "top", - "description": "", "errorLabel": "", - "tooltip": "", "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, "dbIndex": false, "customDefaultValue": "", "calculateValue": "", @@ -230,7 +260,6 @@ "widget": { "type": "input" }, - "attributes": {}, "validateOn": "change", "validate": { "required": false, @@ -240,32 +269,13 @@ "multiple": false, "unique": false }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, "allowCalculateOverride": false, "encrypted": false, "showCharCount": false, "showWordCount": false, - "properties": {}, "allowMultipleMasks": false, "addons": [], - "size": "md", - "leftIcon": "", - "rightIcon": "", - "block": false, - "disableOnInvalid": false, - "theme": "primary", - "id": "evn8m09" + "id": "el0uh3a" } ], "width": 3, @@ -282,15 +292,12 @@ "action": "custom", "showValidations": false, "theme": "warning", - "disabled": true, "tableView": false, - "key": "needsMoreInfo", - "customConditional": "const UserDetails = JSON.parse(localStorage.getItem(\"UserDetails\"));\r\nconst roles = UserDetails[\"role\"];\r\nconst taskUrl = window.location.pathname.split('/');\r\nconst taskId = taskUrl[2];\r\nconst authToken = localStorage.getItem(\"authToken\");\r\nconst bpmUrl = localStorage.getItem(\"bpmApiUrl\");\r\nvar reqUrl = bpmUrl + \"/task/\" + taskId + \"/variables\";\r\n\r\n\r\n getData(reqUrl, authToken).then((response) => {\r\n \r\n\t if(roles.includes(\"formsflow-reviewer\")) {\r\n \tvar applicationStatus = response.applicationStatus ? response.applicationStatus.value : '';\r\n \t show = true;\r\n \t \r\n\r\n \t\t\r\n\t if (applicationStatus === 'Resubmit') {\r\n\t component.disabled = true;\r\n\t component.description = 'Disabled since SRCR resubmission in progress';\r\n\t instance.triggerRedraw();\r\n\t } else {\r\n\t component.description = '';\r\n\t component.disabled = false;\r\n\t instance.triggerRedraw();\r\n\t }\r\n\t }\r\n\t else\r\n\t {\r\n \t\tshow = false;\r\n\t }\r\n });\r\n\r\n\r\nasync function getData(reqUrl, authToken) {\r\n const response = await fetch(reqUrl, {\r\n method: \"GET\",\r\n headers: {\r\n \"Content-type\": \"application/json\",\r\n Accept: \"application/json\",\r\n Authorization: \"Bearer \" + authToken,\r\n },\r\n });\r\n const data = await response.json();\r\n return data;\r\n}", + "key": "sendToApplicant", + "customConditional": "\r\nconst UserDetails = JSON.parse(localStorage.getItem(\"UserDetails\"))\r\nconst roles = UserDetails[\"role\"];\r\n\r\nif(roles.includes(\"formsflow-reviewer/cssa-manager\")) {\r\n show = false;\r\n}\r\nelse\r\n{\r\n show = true;\r\n}", "type": "button", - "custom": "const submissionId = form._submission._id;\r\nconst formId = form._submission.form;\r\nconst formDataReqUrl = form.formio?form.formio.formUrl:(localStorage.getItem('customSubmissionUrl')+'/form/'+formId)+'/submission/'+submissionId;+submissionId;\r\nconst filteredData = _.pick(data, data.soscUtilKeys);\r\nconst formDataReqObj1 = { \"_id\": submissionId, \"data\": filteredData};\r\nconst formio = new Formio(formDataReqUrl);\r\nformio.saveSubmission(formDataReqObj1).then( result => {\r\nform.emit('customEvent', {\r\n type: \"actionComplete\", \r\n component: component,\r\n actionType: 'Returned'\r\n }); \r\n}).catch((error)=>{\r\n//Error callback on not Save\r\nform.emit('customEvent', {\r\n type: \"actionError\", \r\n component: component,\r\n actionType:'Returned'\r\n }); \r\n});", + "custom": "const submissionId = form._submission._id;\r\nconst formId = form._submission.form;\r\nconst formDataReqUrl = form.formio?form.formio.formUrl:(localStorage.getItem('customSubmissionUrl')+'/form/'+formId)+'/submission/'+submissionId;\r\nconst formDataReqObj1 = { \"_id\": submissionId, \"data\": data};\r\nconst formio = new Formio(formDataReqUrl);\r\nformio.saveSubmission(formDataReqObj1).then( result => {\r\nform.emit('customEvent', {\r\n type: \"actionComplete\", \r\n component: component,\r\n actionType: 'Returned'\r\n }); \r\n}).catch((error)=>{\r\n//Error callback on not Save\r\nform.emit('customEvent', {\r\n type: \"actionError\", \r\n component: component,\r\n actionType:'Returned'\r\n }); \r\n});", "input": true, - "redrawOn": "textField", - "keyModified": true, "placeholder": "", "prefix": "", "customClass": "", @@ -303,6 +310,7 @@ "hidden": false, "clearOnHide": true, "refreshOn": "", + "redrawOn": "", "modalEdit": false, "dataGridLabel": true, "labelPosition": "top", @@ -311,6 +319,7 @@ "tooltip": "", "hideLabel": false, "tabindex": "", + "disabled": false, "autofocus": false, "dbIndex": false, "customDefaultValue": "", @@ -353,7 +362,7 @@ "rightIcon": "", "block": false, "disableOnInvalid": false, - "id": "e5ues4" + "id": "e6k2pg" } ], "size": "md", @@ -371,10 +380,10 @@ "showValidations": false, "theme": "danger", "tableView": false, - "key": "rejected", - "customConditional": "const UserDetails = JSON.parse(localStorage.getItem(\"UserDetails\"))\r\n\r\nconst roles = UserDetails[\"role\"];\r\n\r\nif(roles.includes(\"formsflow-reviewer\") && \r\n!(roles.includes(\"formsflow-reviewer/csap\") ||\r\nroles.includes(\"formsflow-reviewer/csap-society\"))) {\r\n show = true;\r\n}\r\nelse\r\n{\r\n show = false;\r\n}", + "key": "rejectForm", + "customConditional": "\r\nconst UserDetails = JSON.parse(localStorage.getItem(\"UserDetails\"))\r\nconst roles = UserDetails[\"role\"];\r\n\r\nif(roles.includes(\"formsflow-reviewer/csap\") || \r\nroles.includes(\"formsflow-reviewer/csap-society\")|| \r\nroles.includes(\"formsflow-reviewer/cssa-manager\")) {\r\n show = false;\r\n}\r\nelse\r\n{\r\n show = true;\r\n}", "type": "button", - "custom": "const submissionId = form._submission._id;\r\nconst formId = form._submission.form;\r\nconst formDataReqUrl = form.formio?form.formio.formUrl:(localStorage.getItem('customSubmissionUrl')+'/form/'+formId)+'/submission/'+submissionId;\r\nconst filteredData = _.pick(data, data.soscUtilKeys);\r\nconst formDataReqObj1 = { \"_id\": submissionId, \"data\": filteredData};\r\nconst formio = new Formio(formDataReqUrl);\r\nformio.saveSubmission(formDataReqObj1).then( result => {\r\nform.emit('customEvent', {\r\n type: \"actionComplete\", \r\n component: component,\r\n actionType: 'Rejected'\r\n }); \r\n}).catch((error)=>{\r\n//Error callback on not Save\r\nform.emit('customEvent', {\r\n type: \"actionError\", \r\n component: component,\r\n actionType:'Rejected'\r\n }); \r\n});\r\n", + "custom": "const submissionId = form._submission._id;\r\nconst formId = form._submission.form;\r\nconst formDataReqUrl = form.formio?form.formio.formUrl:(localStorage.getItem('customSubmissionUrl')+'/form/'+formId)+'/submission/'+submissionId;\r\nconst formDataReqObj1 = { \"_id\": submissionId, \"data\": data};\r\nconst formio = new Formio(formDataReqUrl);\r\nformio.saveSubmission(formDataReqObj1).then( result => {\r\nform.emit('customEvent', {\r\n type: \"actionComplete\", \r\n component: component,\r\n actionType: 'Rejected'\r\n }); \r\n}).catch((error)=>{\r\n//Error callback on not Save\r\nform.emit('customEvent', {\r\n type: \"actionError\", \r\n component: component,\r\n actionType:'Rejected'\r\n }); \r\n});", "input": true, "placeholder": "", "prefix": "", @@ -440,7 +449,7 @@ "rightIcon": "", "block": false, "disableOnInvalid": false, - "id": "eeuquma" + "id": "eb67pz" } ], "size": "md", @@ -451,8 +460,7 @@ "currentWidth": 3 } ], - "hideLabel": true, - "key": "columns", + "key": "columns1", "type": "columns", "input": false, "tableView": false, @@ -475,6 +483,7 @@ "description": "", "errorLabel": "", "tooltip": "", + "hideLabel": false, "tabindex": "", "disabled": false, "autofocus": false, @@ -515,7 +524,7 @@ "tree": false, "lazyLoad": false, "autoAdjust": false, - "id": "e9sdimc" + "id": "edce38k" } ], "keyModified": true, @@ -538,6 +547,7 @@ "description": "", "errorLabel": "", "tooltip": "", + "hideLabel": false, "tabindex": "", "disabled": false, "autofocus": false, @@ -579,15 +589,16 @@ "lazyLoad": false, "theme": "default", "breadcrumb": "default", - "id": "e3fjtw" + "id": "exzzrf" }, { - "title": "Reviewer Actions", - "collapsible": false, - "key": "soscBundleActions", - "customConditional": "\r\nconst UserDetails = JSON.parse(localStorage.getItem(\"UserDetails\"))\r\nconst roles = UserDetails[\"role\"];\r\n\r\nif(roles.includes(\"formsflow-reviewer/cssa-team\") || \r\nroles.includes(\"formsflow-reviewer/cssa-manager\") ||\r\nroles.includes(\"formsflow-reviewer/csap\") || \r\nroles.includes(\"formsflow-reviewer/csap-society\")|| \r\nroles.includes(\"formsflow-reviewer/caseworker\")|| \r\nroles.includes(\"formsflow-reviewer/sdm\")) {\r\n if (data.riskclassification === \"exempt\"){\r\n show = true;\r\n } else {\r\n show = false;\r\n }\r\n}\r\nelse\r\n{\r\n show = false;\r\n}", + "title": "Assign Reviewers", + "collapsible": true, + "key": "sdmAssignment", + "customConditional": "const UserDetails = JSON.parse(localStorage.getItem(\"UserDetails\"));\r\nconst roles = UserDetails[\"role\"];\r\n\r\nif(roles.includes(\"formsflow-reviewer/cssa-manager\")) {\r\n show = true;\r\n}\r\nelse\r\n{\r\n show = false;\r\n}", "type": "panel", - "label": "Panel", + "label": "", + "collapsed": false, "input": false, "tableView": false, "components": [ @@ -597,431 +608,300 @@ { "components": [ { - "label": "Previous Reviewer", - "action": "custom", - "showValidations": false, - "tableView": false, - "key": "sendBundleToPreviousReviewer", - "customConditional": "const UserDetails = JSON.parse(localStorage.getItem(\"UserDetails\"))\r\n\r\n\r\n\r\nconst roles = UserDetails[\"role\"];\r\n\r\n\r\nif(\r\n(roles.includes(\"formsflow-reviewer/csap\") || roles.includes(\"formsflow-reviewer/cssa-team\")) && \r\n(data.applicationStatus===\"New\" || data.applicationStatus===\"Resubmitted\" || data.applicationStatus===\"Recheck\") \r\n) {\r\n show = false;\r\n}\r\nelse\r\n{\r\n show = true;\r\n}", - "type": "button", - "custom": "form.emit('customEvent', {\r\n type: \"actionComplete\", \r\n component: component,\r\n actionType:'Recheck'\r\n });", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": true, + "label": "Select SDM", "labelPosition": "top", + "widget": "choicesjs", + "placeholder": "", "description": "", - "errorLabel": "", "tooltip": "", - "hideLabel": false, + "customClass": "", "tabindex": "", - "disabled": false, + "hidden": false, + "hideLabel": false, + "uniqueOptions": false, "autofocus": false, + "disabled": false, + "tableView": true, + "modalEdit": false, + "multiple": false, + "dataSrc": "url", + "data": { + "values": [ + { + "label": "", + "value": "" + } + ], + "resource": "", + "json": "", + "url": "{{localStorage.getItem('formsflow.ai.api.url')}}/user?memberOfGroup=formsflow/formsflow-reviewer/sdm", + "headers": [ + { + "key": "Authorization", + "value": "Bearer {{localStorage.getItem(\"authToken\")}}" + }, + { + "key": "Content-type", + "value": "application/json" + }, + { + "key": "Accept", + "value": "application/json" + } + ], + "custom": "" + }, + "dataType": "string", + "idPath": "id", + "valueProperty": "username", + "template": "{{ item.lastName }}, {{ item.firstName }}", + "refreshOn": "", + "refreshOnBlur": "", + "clearOnRefresh": false, + "searchEnabled": true, + "selectThreshold": 0.3, + "readOnlyValue": false, + "customOptions": {}, + "useExactSearch": false, + "persistent": true, + "protected": false, "dbIndex": false, + "encrypted": false, + "clearOnHide": true, "customDefaultValue": "", "calculateValue": "", "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, + "allowCalculateOverride": false, "validateOn": "change", "validate": { - "required": false, + "required": true, + "onlyAvailableItems": false, + "customMessage": "", "custom": "", "customPrivate": false, + "json": "", "strictDateValidation": false, "multiple": false, "unique": false }, + "unique": false, + "errorLabel": "", + "errors": "", + "key": "selectSoscSdm", + "tags": [], + "properties": {}, "conditional": { "show": null, "when": null, - "eq": "" + "eq": "", + "json": "" }, + "customConditional": "", + "logic": [], + "attributes": {}, "overlay": { "style": "", + "page": "", "left": "", "top": "", "width": "", "height": "" }, - "allowCalculateOverride": false, - "encrypted": false, + "type": "select", + "indexeddb": { + "filter": {} + }, + "lazyLoad": true, + "selectValues": "data", + "selectFields": "", + "disableLimit": false, + "searchField": "", + "searchDebounce": 0.3, + "minSearch": 0, + "filter": "", + "limit": 100, + "authenticate": false, + "ignoreCache": false, + "redrawOn": "", + "input": true, + "keyModified": true, + "prefix": "", + "suffix": "", + "dataGridLabel": false, "showCharCount": false, "showWordCount": false, - "properties": {}, "allowMultipleMasks": false, "addons": [], - "size": "md", - "leftIcon": "", - "rightIcon": "", - "block": false, - "disableOnInvalid": false, - "theme": "primary", - "id": "e9xv8c" + "fuseOptions": { + "include": "score", + "threshold": 0.3 + }, + "id": "evuipnr", + "defaultValue": "", + "sort": "" } ], - "width": 3, + "width": 4, "offset": 0, "push": 0, "pull": 0, "size": "md", - "currentWidth": 3 + "currentWidth": 4 }, { "components": [ { - "label": "Next Reviewer", - "action": "custom", - "showValidations": false, - "tableView": false, - "key": "sendBundleToNextReviewer", - "customConditional": "\r\nconst UserDetails = JSON.parse(localStorage.getItem(\"UserDetails\"))\r\n\r\n\r\n\r\nconst roles = UserDetails[\"role\"];\r\n\r\n\r\nif(roles.includes(\"formsflow-reviewer/cssa-team\") || \r\nroles.includes(\"formsflow-reviewer/cssa-manager\") || \r\nroles.includes(\"formsflow-reviewer/csap\") || \r\nroles.includes(\"formsflow-reviewer/csap-society\") || \r\nroles.includes(\"formsflow-reviewer/caseworker\")) {\r\n show = true;\r\n}\r\nelse\r\n{\r\n show = false;\r\n}", - "type": "button", - "custom": "const UserDetails = JSON.parse(localStorage.getItem(\"UserDetails\"))\r\nconst roles = UserDetails[\"role\"];\r\nif(roles.includes(\"formsflow-reviewer/cssa-manager\") && \r\n(data.selectSoscSdm===''||data.selectSoscSdm===undefined|| \r\n(data.typeOfReview==='directToMinistryApplication'&&data.selectSoscCaseworker===undefined|| data.selectSoscCaseworker==='')))\r\n{\r\n alert('Please assign reviewers to continue!');\r\n \r\n}\r\nelse\r\n{\r\n form.emit('customEvent', {\r\n type: \"actionComplete\", \r\n component: component,\r\n actionType:'Accepted'\r\n });\r\n}", - "input": true, - "keyModified": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": true, + "label": "Select Caseworker", "labelPosition": "top", + "widget": "choicesjs", + "placeholder": "", "description": "", - "errorLabel": "", "tooltip": "", - "hideLabel": false, + "customClass": "", "tabindex": "", - "disabled": false, + "hidden": false, + "hideLabel": false, + "uniqueOptions": false, "autofocus": false, + "disabled": false, + "tableView": true, + "modalEdit": false, + "multiple": false, + "dataSrc": "url", + "data": { + "values": [ + { + "label": "", + "value": "" + } + ], + "resource": "", + "json": "", + "url": "{{localStorage.getItem('formsflow.ai.api.url')}}/user?memberOfGroup=formsflow/formsflow-reviewer/caseworker", + "headers": [ + { + "key": "Authorization", + "value": "Bearer {{localStorage.getItem(\"authToken\")}}" + }, + { + "key": "Content-type", + "value": "application/json" + }, + { + "key": "Accept", + "value": "application/json" + } + ], + "custom": "" + }, + "dataType": "string", + "idPath": "id", + "valueProperty": "username", + "template": "{{ item.lastName }}, {{ item.firstName }}", + "refreshOn": "", + "refreshOnBlur": "", + "clearOnRefresh": false, + "searchEnabled": true, + "selectThreshold": 0.3, + "readOnlyValue": false, + "customOptions": {}, + "useExactSearch": false, + "persistent": true, + "protected": false, "dbIndex": false, + "encrypted": false, + "clearOnHide": true, "customDefaultValue": "", "calculateValue": "", "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, + "allowCalculateOverride": false, "validateOn": "change", "validate": { - "required": false, + "required": true, + "onlyAvailableItems": false, + "customMessage": "", "custom": "", "customPrivate": false, + "json": "", "strictDateValidation": false, "multiple": false, "unique": false }, + "unique": false, + "errorLabel": "", + "errors": "", + "key": "selectSoscCaseworker", + "tags": [], + "properties": {}, "conditional": { "show": null, "when": null, - "eq": "" + "eq": "", + "json": "" }, + "customConditional": "", + "logic": [], + "attributes": {}, "overlay": { "style": "", + "page": "", "left": "", "top": "", "width": "", "height": "" }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "size": "md", - "leftIcon": "", - "rightIcon": "", - "block": false, - "disableOnInvalid": false, - "theme": "primary", - "id": "e5d0iuo" - }, - { - "label": "Approved", - "action": "custom", - "showValidations": false, - "tableView": false, - "key": "approveBundle", - "customConditional": "const UserDetails = JSON.parse(localStorage.getItem(\"UserDetails\"))\r\n\r\n\r\n\r\nconst roles = UserDetails[\"role\"];\r\n\r\n\r\nif(roles.includes(\"formsflow-reviewer/sdm\")) {\r\n show = true;\r\n}\r\nelse\r\n{\r\n show = false;\r\n}", - "type": "button", - "custom": "\r\nform.emit('customEvent', {\r\n type: \"actionComplete\", \r\n component: component,\r\n actionType: 'Approved'\r\n})", + "type": "select", + "indexeddb": { + "filter": {} + }, + "lazyLoad": true, + "selectValues": "data", + "selectFields": "", + "disableLimit": false, + "searchField": "", + "searchDebounce": 0.3, + "minSearch": 0, + "filter": "", + "limit": 100, + "authenticate": false, + "ignoreCache": false, + "redrawOn": "", "input": true, - "placeholder": "", + "keyModified": true, "prefix": "", - "customClass": "", "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": true, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, + "dataGridLabel": false, "showCharCount": false, "showWordCount": false, - "properties": {}, "allowMultipleMasks": false, "addons": [], - "size": "md", - "leftIcon": "", - "rightIcon": "", - "block": false, - "disableOnInvalid": false, - "theme": "primary", - "id": "eu9gwi" + "fuseOptions": { + "include": "score", + "threshold": 0.3 + }, + "id": "ei0g89", + "defaultValue": "", + "sort": "" } ], - "width": 3, + "width": 4, "offset": 0, "push": 0, "pull": 0, "size": "md", - "currentWidth": 3 + "currentWidth": 4 }, { - "components": [ - { - "label": "Needs More Info", - "action": "custom", - "showValidations": false, - "theme": "warning", - "tableView": false, - "key": "sendBundleToApplicant", - "customConditional": "const UserDetails = JSON.parse(localStorage.getItem(\"UserDetails\"))\r\nconst roles = UserDetails[\"role\"];\r\n\r\nif(roles.includes(\"formsflow-reviewer/cssa-manager\")) {\r\n show = false;\r\n}\r\nelse\r\n{\r\n show = true;\r\n}", - "type": "button", - "custom": "form.emit('customEvent', {\r\n type: \"actionComplete\", \r\n component: component,\r\n actionType:'Returned'\r\n });", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": true, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "size": "md", - "leftIcon": "", - "rightIcon": "", - "block": false, - "disableOnInvalid": false, - "id": "esfoixl" - } - ], - "size": "md", - "width": 3, - "offset": 0, - "push": 0, - "pull": 0, - "currentWidth": 3 - }, - { - "components": [ - { - "label": "Reject Form", - "action": "custom", - "showValidations": false, - "theme": "danger", - "tableView": false, - "key": "rejectBundle", - "customConditional": "const UserDetails = JSON.parse(localStorage.getItem(\"UserDetails\"))\r\n\r\nconst roles = UserDetails[\"role\"];\r\n\r\nif(roles.includes(\"formsflow-reviewer\") && \r\n!(roles.includes(\"formsflow-reviewer/cssa-manager\") || \r\nroles.includes(\"formsflow-reviewer/csap\") ||\r\nroles.includes(\"formsflow-reviewer/csap-society\"))) {\r\n show = true;\r\n}\r\nelse\r\n{\r\n show = false;\r\n}", - "type": "button", - "custom": "\r\nform.emit('customEvent', {\r\n type: \"actionComplete\", \r\n component: component,\r\n actionType: 'Rejected'\r\n}); ", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": true, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "size": "md", - "leftIcon": "", - "rightIcon": "", - "block": false, - "disableOnInvalid": false, - "id": "eh5xh0h" - } - ], + "components": [], "size": "md", - "width": 3, + "width": 4, "offset": 0, "push": 0, "pull": 0, - "currentWidth": 3 + "currentWidth": 4 } ], - "key": "columns", + "key": "columns3", "type": "columns", "input": false, "tableView": false, @@ -1085,7 +965,7 @@ "tree": false, "lazyLoad": false, "autoAdjust": false, - "id": "epe166" + "id": "e4hrtb" } ], "keyModified": true, @@ -1150,10 +1030,10 @@ "lazyLoad": false, "theme": "default", "breadcrumb": "default", - "id": "eiaowx6" + "id": "en8s25" }, { - "label": "Edit Grid", + "label": "Notes", "labelPosition": "top", "description": "", "tooltip": "", @@ -1163,17 +1043,17 @@ "disableAddingRemovingRows": false, "conditionalAddButton": "", "hidden": false, - "hideLabel": true, + "hideLabel": false, "autofocus": false, "disabled": false, - "tableView": true, + "tableView": false, "modalEdit": false, "templates": { - "header": "\r\n{% console.log(\"row-key header\",'commentFor',row['commentFor']) %}\r\n{% const UserDetails = JSON.parse(localStorage.getItem(\"UserDetails\"))%}\r\n{% const groups = UserDetails[\"groups\"]; %}\r\n\r\n{% if(groups.includes(\"/formsflow/formsflow-reviewer/formsflow-client-reviewer\") || groups.includes(\"/formsflow/formsflow-reviewer/lrs-approving-authority\") || groups.includes(\"/formsflow/formsflow-client\")){ %}\r\n\r\n
\r\n {% util.eachComponent(components, function(component) { %}\r\n {% if (displayValue(component) && component.key !== 'commentFor' ) { %}\r\n {% if(component.label === 'Notes') { %}\r\n
{{ t(component.label) }}
\r\n {% } else if(component.key !== 'comments') { %}\r\n
{{ t(component.label) }}
\r\n {% } %}\r\n {% } %}\r\n {% }) %}\r\n
\r\n\r\n{% } else { %}\r\n\r\n
\r\n {% util.eachComponent(components, function(component) { %}\r\n {% if (displayValue(component)) { %}\r\n {% if(component.key == 'comments') { %}\r\n
{{ t(component.label)}}
\r\n{% } else { %}\r\n
{{ t(component.label)}}
\r\n{% } %} \r\n {% } %}\r\n {% }) %}\r\n
\r\n\r\n{% } %}", + "header": "{% console.log(\"row-key header\",'commentFor',row['commentFor']) %}\r\n{% const UserDetails = JSON.parse(localStorage.getItem(\"UserDetails\"))%}\r\n{% const groups = UserDetails[\"groups\"]; %}\r\n\r\n{% if(groups.includes(\"/formsflow/formsflow-client\") || groups.includes(\"/formsflow/formsflow-reviewer/csap\") || groups.includes(\"/formsflow/formsflow-reviewer/csap-society\")){ %}\r\n\r\n
\r\n {% util.eachComponent(components, function(component) { %}\r\n {% if (displayValue(component) && component.key !== 'commentFor' ) { %}\r\n {% if(component.label === 'Notes') { %}\r\n
{{ t(component.label) }}
\r\n {% } else if(component.key !== 'comments') { %}\r\n
{{ t(component.label) }}
\r\n {% } %}\r\n {% } %}\r\n {% }) %}\r\n
\r\n\r\n{% } else { %}\r\n\r\n
\r\n {% util.eachComponent(components, function(component) { %}\r\n {% if (displayValue(component)) { %}\r\n \r\n {% if(component.key == 'comments') { %}\r\n
{{ t(component.label)}}
\r\n {% } else if(component.key == 'role' || component.key == 'createdBy') { %}\r\n
{{ t(component.label)}}
\r\n{% } else { %}\r\n
{{ t(component.label)}}
\r\n{% } %} \r\n\r\n \r\n {% } %}\r\n {% }) %}\r\n
\r\n\r\n{% } %}\r\n\r\n\r\n\r\n\r\n", "tableHeader": "\n
\n {% util.eachComponent(components, function(component) { %}\n {% if (!component.hasOwnProperty('tableView') || component.tableView) { %}\n \n {% } %}\n {% }) %}\n {% if (!instance.options.readOnly && !instance.disabled) { %}\n \n {% } %}\n \n ", - "row": "{% console.log(\"row-key main\",'commentFor',row['commentFor']) %}\r\n{% const UserDetails = JSON.parse(localStorage.getItem(\"UserDetails\"))%}\r\n{% const groups = UserDetails[\"groups\"]; %}\r\n\r\n{% if((groups.includes(\"/formsflow/formsflow-reviewer/formsflow-client-reviewer\") || groups.includes(\"/formsflow/formsflow-reviewer/lrs-approving-authority\") || groups.includes(\"/formsflow/formsflow-client\")) && row['commentFor']==='external'){ %}\r\n\r\n\r\n\r\n
\r\n\r\n {% util.eachComponent(components, function(component) { %}\r\n {% if (displayValue(component) && component.key !== 'commentFor' ) { %}\r\n {% console.log(\"row-key\",component.key,row[component.key]) %}\r\n {% const UserDetails = JSON.parse(localStorage.getItem(\"UserDetails\"))%}\r\n{% const groups = UserDetails[\"groups\"]; %}\r\n{% if((groups.includes(\"/formsflow/formsflow-reviewer/formsflow-client-reviewer\") || groups.includes(\"/formsflow/formsflow-reviewer/lrs-approving-authority\") || groups.includes(\"/formsflow/formsflow-client\")) && row['commentFor']==='external'){ %}\r\n{% if(component.key == 'comments') { %}\r\n
\r\n {{ getView(component, row[component.key])}}\r\n
\r\n{% } else { %}\r\n
\r\n {{ getView(component, row[component.key])}}\r\n
\r\n{%}%}\r\n \r\n\r\n {% } %}\r\n {% } %}\r\n {% }) %}\r\n {% if (!instance.options.readOnly && !instance.disabled) { %}\r\n {% const UserDetails = JSON.parse(localStorage.getItem(\"UserDetails\"))%}\r\n{% const groups = UserDetails[\"groups\"]; %}\r\n{% if((groups.includes(\"/formsflow/formsflow-reviewer/formsflow-client-reviewer\") || groups.includes(\"/formsflow/formsflow-reviewer/lrs-approving-authority\") || groups.includes(\"/formsflow/formsflow-client\")) && row['commentFor']==='external'){ %}\r\n
\r\n
\r\n \r\n {% if (!instance.hasRemoveButtons || instance.hasRemoveButtons()) { %}\r\n \r\n {% } %}\r\n
\r\n
\r\n \r\n {% } %}\r\n {% } %}\r\n
\r\n {% } else if (groups.includes(\"/formsflow/formsflow-reviewer/site-information-advisor\")) { %}\r\n
\r\n {% util.eachComponent(components, function(component) { %}\r\n {% console.log('for sia') %}\r\n {% if (displayValue(component)) { %}\r\n {% if(component.key == 'comments') { %}\r\n
{{ getView(component, row[component.key])}}
\r\n{% } else { %}\r\n
{{ getView(component, row[component.key])}}
\r\n{% } %} \r\n \r\n {% } %}\r\n {% }) %}\r\n {% if (!instance.options.readOnly && !instance.disabled) { %}\r\n
\r\n
\r\n \r\n {% if (!instance.hasRemoveButtons || instance.hasRemoveButtons()) { %}\r\n \r\n {% } %}\r\n
\r\n
\r\n {% } %}\r\n
\r\n {% } %}\r\n \r\n \r\n \r\n{% const emptyElements = []; %}\r\n{% const elements = document.getElementsByClassName(\"list-group-item\"); %}\r\n{% for (let i = 0; i < elements.length; i++) { %}\r\n{% const element = elements[i]; %}\r\n{% if(element.querySelectorAll('div.row').length===0){(element).remove() }} %}", + "row": "{% console.log(\"row-key main sosc\",'commentFor',row['commentFor']) %}\r\n{% const UserDetails = JSON.parse(localStorage.getItem(\"UserDetails\"))%}\r\n{% const groups = UserDetails[\"groups\"]; %}\r\n{% console.log('rendering edit grid body')%}\r\n{% if((groups.includes(\"/formsflow/formsflow-client\") || groups.includes(\"/formsflow/formsflow-reviewer/csap\") || groups.includes(\"/formsflow/formsflow-reviewer/csap-society\")) && row['commentFor']==='external'){ %}\r\n\r\n\r\n\r\n
\r\n\r\n {% util.eachComponent(components, function(component) { %}\r\n {% if (displayValue(component) && component.key !== 'commentFor' ) { %}\r\n {% console.log(\"row-key\",component.key,row[component.key]) %}\r\n {% const UserDetails = JSON.parse(localStorage.getItem(\"UserDetails\"))%}\r\n{% const groups = UserDetails[\"groups\"]; %}\r\n{% if((groups.includes(\"/formsflow/formsflow-client\") || groups.includes(\"/formsflow/formsflow-reviewer/csap\") || groups.includes(\"/formsflow/formsflow-reviewer/csap-society\")) && row['commentFor']==='external'){ %}\r\n{% if(component.key == 'comments') { %}\r\n
\r\n {{ getView(component, row[component.key])}}\r\n
\r\n{% } else { %}\r\n
\r\n {{ getView(component, row[component.key])}}\r\n
\r\n{%}%}\r\n \r\n\r\n {% } %}\r\n {% } %}\r\n {% }) %}\r\n {% if (!instance.options.readOnly && !instance.disabled) { %}\r\n {% const UserDetails = JSON.parse(localStorage.getItem(\"UserDetails\"))%}\r\n{% const groups = UserDetails[\"groups\"]; %}\r\n{% if((groups.includes(\"/formsflow/formsflow-client\") || groups.includes(\"/formsflow/formsflow-reviewer/csap\") || groups.includes(\"/formsflow/formsflow-reviewer/csap-society\")) && row['commentFor']==='external'){ %}\r\n
\r\n
\r\n {% if (!instance.hasRemoveButtons || instance.hasRemoveButtons()) { %}\r\n \r\n {% } %}\r\n
\r\n
\r\n \r\n {% } %}\r\n {% } %}\r\n
\r\n {% } else if (groups.includes(\"/formsflow/formsflow-reviewer/site-information-advisor\") || groups.includes(\"/formsflow/formsflow-reviewer/site-risk-classification-officer\") || groups.includes(\"/formsflow/formsflow-reviewer/cssa-team\") || groups.includes(\"/formsflow/formsflow-reviewer/caseworker\") || groups.includes(\"/formsflow/formsflow-reviewer/cssa-manager\") || groups.includes(\"/formsflow/formsflow-reviewer/sdm\")) { %}\r\n
\r\n {% util.eachComponent(components, function(component) { %}\r\n {% console.log('for sia') %}\r\n {% if (displayValue(component)) { %}\r\n {% if(component.key == 'comments') { %}\r\n
{{ getView(component, row[component.key])}}
\r\n{% } else if(component.key == 'role' || component.key == 'createdBy') { %}\r\n
{{ getView(component, row[component.key])}}
\r\n{% } else { %}\r\n
{{ getView(component, row[component.key])}}
\r\n{% } %} \r\n \r\n {% } %}\r\n {% }) %}\r\n {% if (!instance.options.readOnly && !instance.disabled) { %}\r\n
\r\n
\r\n {% if (!instance.hasRemoveButtons || instance.hasRemoveButtons()) { %}\r\n \r\n {% } %}\r\n
\r\n
\r\n {% } %}\r\n
\r\n {% } %}\r\n \r\n \r\n \r\n{% const emptyElements = []; %}\r\n{% const elements = document.getElementsByClassName(\"list-group-item\"); %}\r\n{% for (let i = 0; i < elements.length; i++) { %}\r\n{% const element = elements[i]; %}\r\n{% if(element.querySelectorAll('div.row').length===0){(element).remove() }} %}", "tableRow": "\n {% util.eachComponent(components, function(component) { %}\n {% if (!component.hasOwnProperty('tableView') || component.tableView) { %}\n \n {% } %}\n {% }) %}\n {% if (!instance.options.readOnly && !instance.disabled) { %}\n \n {% } %}\n ", - "footer": "" + "footer": "{% const emptyElements = []; %}\r\n{% const elements = document.getElementsByClassName(\"list-group-item\"); %}\r\n{% for (let i = 0; i < elements.length; i++) { %}\r\n{% const element = elements[i]; %}\r\n{%if(element.querySelectorAll('div.row').length===0){(element).remove() }} %}\r\n" }, "rowClass": "", "addAnother": "", @@ -1187,7 +1067,7 @@ "encrypted": false, "redrawOn": "", "clearOnHide": true, - "customDefaultValue": "", + "customDefaultValue": "const emptyElements = [];\r\nconst elements = document.getElementsByClassName(\"list-group-item\");\r\nfor (let i = 0; i < elements.length; i++) {\r\nconst element = elements[i];\r\nif(element.querySelectorAll('div.row').length===0){(element).remove() }\r\n \r\n}", "calculateValue": "", "calculateServer": false, "allowCalculateOverride": false, @@ -1195,7 +1075,7 @@ "validate": { "required": false, "customMessage": "", - "custom": "const emptyElements = [];\r\nconst elements = document.getElementsByClassName(\"list-group-item\");\r\nfor (let i = 0; i < elements.length; i++) {\r\nconst element = elements[i];\r\nif(element.querySelectorAll('div.row').length===0){(element).remove() }\r\n \r\n}\r\n\r\n\r\nvar b =JSON.parse(localStorage.getItem('UserDetails'))\r\nif(b.groups.indexOf('/formsflow/formsflow-client') > -1 || b.groups.indexOf('/formsflow/formsflow-reviewer/lrs-approving-authority') > -1 || b.groups.indexOf('/formsflow/formsflow-reviewer/formsflow-client-reviewer') > -1 )\r\n{\r\ndocument.querySelector(\"[ref='editgrid-notesSOSC-addRow']\").remove();\r\nvar editButtons = document.querySelectorAll('button.btn.btn-default.btn-light.btn-sm.editRow');\r\nfor(i=0;ix.commentFor==='external').length > 0)\r\nshow = true;\r\nelse\r\nshow = false;\r\n}\r\nelse\r\n{\r\n show = true;\r\n}\r\n", + "customConditional": "show = false;\r\nconst UserDetails = JSON.parse(localStorage.getItem(\"UserDetails\"))\r\nconst groups = UserDetails?UserDetails[\"groups\"]:[];\r\nif(!UserDetails){\r\n show = false;\r\n}\r\nelse if(groups.includes(\"/formsflow/formsflow-client\") || groups.includes(\"/formsflow/formsflow-reviewer/formsflow-client-reviewer\"))\r\n{\r\nif( data.soscNotes!== null && data.soscNotes!== undefined && data.soscNotes.filter((x)=>x.commentFor==='external').length > 0)\r\nshow = true;\r\nelse\r\nshow = false;\r\n}\r\nelse\r\n{\r\n show = true;\r\n}\r\n\r\nif(UserDetails){\r\nvar addRowButton = document.querySelector(\"button[ref=editgrid-soscNotes-addRow]\");\r\nif(addRowButton!=null)\r\n{\r\naddRowButton.addEventListener('click',\r\n(e)=>{\r\n\t\tif( groups.includes(\"/formsflow/formsflow-reviewer/csap\") || groups.includes(\"/formsflow/formsflow-reviewer/csap-society\"))\r\n\t\t{\r\n\t\t var internalRadio = document.querySelectorAll(\"input[value='internal'][type='radio']\");\r\n\t\t for (let i = 0; i < internalRadio.length; i++) {\r\n\t\t\tif(internalRadio[i].parentElement !== null)\r\n\t\t\t{\r\n\t\t\t\tinternalRadio[i].parentElement.remove();\r\n\t\t\t}\r\n\t\t }\r\n\t\t}\r\n})\r\n\r\nconst emptyElements = [];\r\nconst elements = document.getElementsByClassName(\"list-group-item\");\r\nfor (let i = 0; i < elements.length; i++) {\r\nconst element = elements[i];\r\n\r\nif(element.querySelectorAll('div.row').length===0){(element).remove() }\r\n \r\n}\r\n}\r\n\r\n\r\nconst emptyElements = [];\r\nconst elements = document.getElementsByClassName(\"list-group-item\");\r\nfor (let i = 0; i < elements.length; i++) {\r\nconst element = elements[i];\r\n\r\nif(element.querySelectorAll('div.row').length===0){(element).remove() }\r\n \r\n}\r\n\r\n\r\nvar b =JSON.parse(localStorage.getItem('UserDetails'))\r\n\r\nif(b.groups.includes(\"/formsflow/formsflow-client\"))\r\n{\r\n\tif(document.querySelector(\"[ref='editgrid-soscNotes-addRow']\")!==null)\r\n\t{\r\n\t\tdocument.querySelector(\"[ref='editgrid-soscNotes-addRow']\").remove();\r\n\t}\r\nvar editButtons = document.querySelectorAll('button.btn.btn-default.btn-light.btn-sm.editRow');\r\nfor(i=0;i -1 )\r\n{\r\n value = 'Client'\r\n}\r\nelse if(b.groups.indexOf('/formsflow/formsflow-reviewer/site-information-advisor') > -1 )\r\n{\r\n value = 'SIA'\r\n}", - "key": "role", - "type": "textfield", - "input": true, + "labelPosition": "top", "placeholder": "", + "description": "", + "tooltip": "", "prefix": "", - "customClass": "", "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, + "widget": { + "type": "input" + }, + "inputMask": "", + "displayMask": "", + "allowMultipleMasks": false, + "customClass": "", + "tabindex": "", + "autocomplete": "", "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", "hideLabel": false, - "tabindex": "", + "showWordCount": false, + "showCharCount": false, + "mask": false, "autofocus": false, + "spellcheck": true, + "disabled": true, + "tableView": true, + "modalEdit": false, + "multiple": false, + "persistent": true, + "inputFormat": "plain", + "protected": false, "dbIndex": false, + "case": "", + "truncateMultipleSpaces": false, + "encrypted": false, + "redrawOn": "", + "clearOnHide": true, + "customDefaultValue": "var b =JSON.parse(localStorage.getItem('UserDetails'))\r\nif(b.groups.indexOf('/formsflow/formsflow-client') > -1 )\r\n{\r\n value = 'Client'\r\n}\r\nelse if(b.groups.indexOf('/formsflow/formsflow-reviewer/csap') > -1 )\r\n{\r\n value = 'Approved Professional'\r\n}\r\nelse if(b.groups.indexOf('/formsflow/formsflow-reviewer/csap-society') > -1 )\r\n{\r\n value = 'CSAP Society'\r\n}\r\nelse if(b.groups.indexOf('/formsflow/formsflow-reviewer/cssa-team') > -1 )\r\n{\r\n value = 'CSSA Team'\r\n}\r\nelse if(b.groups.indexOf('/formsflow/formsflow-reviewer/cssa-manager') > -1 )\r\n{\r\n value = 'CSSA Manager'\r\n}\r\nelse if(b.groups.indexOf('/formsflow/formsflow-reviewer/caseworker') > -1 )\r\n{\r\n value = 'Caseworker'\r\n}\r\nelse if(b.groups.indexOf('/formsflow/formsflow-reviewer/sdm') > -1 )\r\n{\r\n value = 'Statutory Decision Maker'\r\n}\r\nelse if(b.groups.indexOf('/formsflow/formsflow-reviewer/site-risk-classification-officer') > -1 )\r\n{\r\n value = 'Site Risk Classification Officer'\r\n}", "calculateValue": "", "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, + "allowCalculateOverride": false, "validateOn": "change", "validate": { "required": false, + "pattern": "", + "customMessage": "", "custom": "", "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, + "json": "", "minLength": "", "maxLength": "", - "pattern": "" + "strictDateValidation": false, + "multiple": false, + "unique": false }, + "unique": false, + "errorLabel": "", + "errors": "", + "key": "role", + "tags": [], + "properties": {}, "conditional": { "show": null, "when": null, - "eq": "" + "eq": "", + "json": "" }, + "customConditional": "", + "logic": [], + "attributes": {}, "overlay": { "style": "", + "page": "", "left": "", "top": "", "width": "", "height": "" }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, + "type": "textfield", + "input": true, + "refreshOn": "", + "dataGridLabel": false, "addons": [], - "mask": false, "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "esrtubp" + "id": "e0b0whl", + "defaultValue": "" } ], "size": "md", @@ -1583,7 +1472,7 @@ "displayMask": "", "spellcheck": true, "truncateMultipleSpaces": false, - "id": "elcgok" + "id": "e6ev9oy" } ], "size": "md", @@ -1670,7 +1559,7 @@ "displayMask": "", "spellcheck": true, "truncateMultipleSpaces": false, - "id": "emurgb" + "id": "ekd6aud" } ], "size": "md", @@ -1745,7 +1634,7 @@ "tree": false, "lazyLoad": false, "autoAdjust": false, - "id": "e4fbc5e" + "id": "eayjpuw" } ], "keyModified": true, @@ -1765,690 +1654,268 @@ "tree": true, "lazyLoad": false, "defaultOpen": false, - "id": "e6vzi4" + "id": "ec9q8u" }, { - "title": "Assign Reviewers", - "collapsible": true, - "key": "soscReviewerAssignment", - "customConditional": " if (data.riskclassification === \"exempt\"){\r\n const UserDetails = JSON.parse(localStorage.getItem(\"UserDetails\"))\r\n const roles = UserDetails[\"role\"];\r\n \r\n if(roles.includes(\"formsflow-reviewer/cssa-manager\")) {\r\n show = true;\r\n }\r\n else\r\n {\r\n show = false;\r\n }\r\n} else {\r\n show = false;\r\n}", + "label": "hiddenUserIdForFormSharingApplicantAsOwner", + "customClass": "", + "modalEdit": false, + "defaultValue": null, + "persistent": true, + "protected": false, + "dbIndex": false, + "encrypted": false, + "redrawOn": "", + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "key": "hiddenUserIdForFormSharingApplicantAsOwner", + "tags": [], + "properties": {}, + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "hidden", + "input": true, + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "unique": false, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "tableView": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "widget": { + "type": "input" + }, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "allowCalculateOverride": false, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "inputType": "hidden", + "id": "e51bxw" + }, + { + "label": "hiddenUserIdForFormSharingWithDiffOwner", + "customClass": "", + "modalEdit": false, + "defaultValue": null, + "persistent": true, + "protected": false, + "dbIndex": false, + "encrypted": false, + "redrawOn": "", + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "key": "hiddenUserIdForFormSharingWithDiffOwner", + "tags": [], + "properties": {}, + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "hidden", + "input": true, + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "unique": false, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "tableView": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "widget": { + "type": "input" + }, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "conditional": { + "show": null, + "when": null, + "eq": "" + }, + "allowCalculateOverride": false, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "inputType": "hidden", + "id": "eia0fkf" + }, + { + "html": "

Part 1  - Contact Information

", + "label": "Content", + "customClass": "", + "refreshOnChange": false, + "hidden": false, + "modalEdit": false, + "key": "content3", + "tags": [], + "properties": {}, + "conditional": { + "show": null, + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "content", + "input": false, + "tableView": false, + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, + "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "validateOn": "change", + "validate": { + "required": false, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "id": "e7c7u3u" + }, + { + "key": "Section1-ContactInformation", "type": "panel", + "input": false, "label": "", + "title": "Section I - CONTACT INFORMATION", "collapsed": false, - "input": false, "tableView": false, "components": [ { - "label": "Columns", - "columns": [ + "key": "siteOwnerOrOperator", + "type": "panel", + "input": false, + "label": "Panel", + "title": "Site Owner or Operator", + "hideLabel": true, + "tableView": false, + "components": [ { - "components": [ + "key": "Section1A-NameColumn", + "type": "columns", + "input": false, + "label": "Columns - 2", + "columns": [ { - "label": "Select SDM", - "widget": "choicesjs", - "tableView": true, - "dataSrc": "url", - "data": { - "url": "{{localStorage.getItem('formsflow.ai.api.url')}}/user?memberOfGroup=formsflow/formsflow-reviewer/sdm", - "headers": [ - { - "key": "Authorization", - "value": "Bearer {{localStorage.getItem(\"authToken\")}}" - }, - { - "key": "Content-type", - "value": "application/json" - }, - { - "key": "Accept", - "value": "application/json" - } - ], - "values": [ - { - "label": "", - "value": "" - } - ], - "json": "", - "resource": "", - "custom": "" - }, - "dataType": "string", - "valueProperty": "username", - "template": "{{ item.lastName }}, {{ item.firstName }}", - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "onlyAvailableItems": false - }, - "key": "selectSoscSdm", - "type": "select", - "selectValues": "data", - "disableLimit": false, - "input": true, - "keyModified": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "idPath": "id", - "clearOnRefresh": false, - "limit": 100, - "lazyLoad": true, - "filter": "", - "searchEnabled": true, - "searchDebounce": 0.3, - "searchField": "", - "minSearch": 0, - "readOnlyValue": false, - "authenticate": false, - "ignoreCache": false, - "selectFields": "", - "selectThreshold": 0.3, - "uniqueOptions": false, - "fuseOptions": { - "include": "score", - "threshold": 0.3 - }, - "indexeddb": { - "filter": {} - }, - "customOptions": {}, - "useExactSearch": false, - "id": "e9csp3n" - } - ], - "width": 4, - "offset": 0, - "push": 0, - "pull": 0, - "size": "md", - "currentWidth": 4 - }, - { - "components": [ - { - "label": "Select Caseworker", - "widget": "choicesjs", - "tableView": true, - "dataSrc": "url", - "data": { - "url": "{{localStorage.getItem('formsflow.ai.api.url')}}/user?memberOfGroup=formsflow/formsflow-reviewer/caseworker", - "headers": [ - { - "key": "Authorization", - "value": "Bearer {{localStorage.getItem(\"authToken\")}}" - }, - { - "key": "Content-type", - "value": "application/json" - }, - { - "key": "Accept", - "value": "application/json" - } - ], - "values": [ - { - "label": "", - "value": "" - } - ], - "json": "", - "resource": "", - "custom": "" - }, - "dataType": "string", - "valueProperty": "username", - "template": "{{ item.lastName }}, {{ item.firstName }}", - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "onlyAvailableItems": false - }, - "key": "selectSoscCaseworker", - "customConditional": "if (data.typeOfReview==='applicationViaTheSocietyOfContaminatedSitesApprovedProfessionalsOfBc')\n{\n show = false;\n}\nelse {\n show = true;\n}", - "type": "select", - "selectValues": "data", - "disableLimit": false, - "input": true, - "keyModified": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "idPath": "id", - "clearOnRefresh": false, - "limit": 100, - "lazyLoad": true, - "filter": "", - "searchEnabled": true, - "searchDebounce": 0.3, - "searchField": "", - "minSearch": 0, - "readOnlyValue": false, - "authenticate": false, - "ignoreCache": false, - "selectFields": "", - "selectThreshold": 0.3, - "uniqueOptions": false, - "fuseOptions": { - "include": "score", - "threshold": 0.3 - }, - "indexeddb": { - "filter": {} - }, - "customOptions": {}, - "useExactSearch": false, - "id": "e8pinfp" - } - ], - "width": 4, - "offset": 0, - "push": 0, - "pull": 0, - "size": "md", - "currentWidth": 4 - }, - { - "components": [], - "size": "md", - "width": 4, - "offset": 0, - "push": 0, - "pull": 0, - "currentWidth": 4 - } - ], - "key": "columns3", - "type": "columns", - "input": false, - "tableView": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "hidden": false, - "clearOnHide": false, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "tree": false, - "lazyLoad": false, - "autoAdjust": false, - "id": "ejnemx9" - } - ], - "keyModified": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": false, - "hidden": false, - "clearOnHide": false, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "tree": false, - "lazyLoad": false, - "theme": "default", - "breadcrumb": "default", - "id": "ecgbuxt" - }, - { - "label": "hiddenUserIdForFormSharingApplicantAsOwner", - "customClass": "", - "modalEdit": false, - "defaultValue": null, - "persistent": true, - "protected": false, - "dbIndex": false, - "encrypted": false, - "redrawOn": "", - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "key": "hiddenUserIdForFormSharingApplicantAsOwner", - "tags": [], - "properties": {}, - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "hidden", - "input": true, - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "unique": false, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "tableView": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "widget": { - "type": "input" - }, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "allowCalculateOverride": false, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "inputType": "hidden", - "id": "e51bxw" - }, - { - "label": "hiddenUserIdForFormSharingWithDiffOwner", - "customClass": "", - "modalEdit": false, - "defaultValue": null, - "persistent": true, - "protected": false, - "dbIndex": false, - "encrypted": false, - "redrawOn": "", - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "key": "hiddenUserIdForFormSharingWithDiffOwner", - "tags": [], - "properties": {}, - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "hidden", - "input": true, - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "unique": false, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "tableView": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "widget": { - "type": "input" - }, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "allowCalculateOverride": false, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "inputType": "hidden", - "id": "eia0fkf" - }, - { - "html": "

Part 1  - Contact Information

", - "label": "Content", - "customClass": "", - "refreshOnChange": false, - "hidden": false, - "modalEdit": false, - "key": "content3", - "tags": [], - "properties": {}, - "conditional": { - "show": null, - "when": null, - "eq": "", - "json": "" - }, - "customConditional": "", - "logic": [], - "attributes": {}, - "overlay": { - "style": "", - "page": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "type": "content", - "input": false, - "tableView": false, - "placeholder": "", - "prefix": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": null, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "allowMultipleMasks": false, - "addons": [], - "id": "e7c7u3u" - }, - { - "key": "Section1-ContactInformation", - "type": "panel", - "input": false, - "label": "", - "title": "Section I - CONTACT INFORMATION", - "collapsed": false, - "tableView": false, - "components": [ - { - "key": "siteOwnerOrOperator", - "type": "panel", - "input": false, - "label": "Panel", - "title": "Site Owner or Operator", - "hideLabel": true, - "tableView": false, - "components": [ - { - "key": "Section1A-NameColumn", - "type": "columns", - "input": false, - "label": "Columns - 2", - "columns": [ - { - "pull": 0, - "push": 0, - "size": "md", - "width": 6, - "offset": 0, - "components": [ - { - "key": "Section1A-LastName", - "type": "textfield", - "input": true, - "label": "Last Name", - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" + "pull": 0, + "push": 0, + "size": "md", + "width": 6, + "offset": 0, + "components": [ + { + "key": "Section1A-LastName", + "type": "textfield", + "input": true, + "label": "Last Name", + "validate": { + "required": true, + "custom": "", + "customPrivate": false, + "strictDateValidation": false, + "multiple": false, + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" }, "tableView": false, "hideOnChildrenHidden": false, @@ -6394,7 +5861,7 @@ "allowCalculateOverride": false, "validateOn": "change", "validate": { - "required": true, + "required": false, "pattern": "", "customMessage": "", "custom": "", @@ -6409,7 +5876,7 @@ "unique": false, "errorLabel": "", "errors": "", - "key": "Section1B-LastName1", + "key": "apLastName", "tags": [], "properties": {}, "conditional": { @@ -6436,7 +5903,7 @@ "dataGridLabel": false, "addons": [], "inputType": "text", - "id": "euvjh55", + "id": "ew1n4xe", "defaultValue": "" } ], @@ -6492,7 +5959,7 @@ "allowCalculateOverride": false, "validateOn": "change", "validate": { - "required": true, + "required": false, "pattern": "", "customMessage": "", "custom": "", @@ -6507,7 +5974,7 @@ "unique": false, "errorLabel": "", "errors": "", - "key": "Section1B-FirstName1", + "key": "apFirstName", "tags": [], "properties": {}, "conditional": { @@ -6534,7 +6001,7 @@ "dataGridLabel": false, "addons": [], "inputType": "text", - "id": "ei7qvpq", + "id": "eyi2r9l", "defaultValue": "" } ], @@ -6684,9 +6151,6 @@ "id": "ehx2r3c" }, { - "key": "Section1C-AddressColumn2", - "type": "columns", - "input": false, "label": "Columns - 2", "columns": [ { @@ -6697,82 +6161,92 @@ "offset": 0, "components": [ { - "key": "Section1C-Address2", - "type": "textfield", - "input": true, "label": "Address", - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "tableView": false, - "hideOnChildrenHidden": false, + "labelPosition": "top", "placeholder": "", + "description": "", + "tooltip": "", "prefix": "", - "customClass": "", "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, + "widget": { + "type": "input" + }, + "inputMask": "", + "displayMask": "", + "allowMultipleMasks": false, + "customClass": "", + "tabindex": "", + "autocomplete": "", "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", "hideLabel": false, - "tabindex": "", - "disabled": false, + "showWordCount": false, + "showCharCount": false, + "mask": false, "autofocus": false, + "spellcheck": true, + "disabled": false, + "tableView": false, + "modalEdit": false, + "multiple": false, + "persistent": true, + "inputFormat": "plain", + "protected": false, "dbIndex": false, + "case": "", + "truncateMultipleSpaces": false, + "encrypted": false, + "redrawOn": "", + "clearOnHide": true, "customDefaultValue": "", "calculateValue": "", "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, + "allowCalculateOverride": false, "validateOn": "change", + "validate": { + "required": true, + "pattern": "", + "customMessage": "", + "custom": "", + "customPrivate": false, + "json": "", + "minLength": "", + "maxLength": "", + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "unique": false, + "errorLabel": "", + "errors": "", + "key": "Section1C-Address2", + "tags": [], + "properties": {}, "conditional": { "show": null, "when": null, - "eq": "" + "eq": "", + "json": "" }, + "customConditional": "", + "logic": [], + "attributes": {}, "overlay": { "style": "", + "page": "", "left": "", "top": "", "width": "", "height": "" }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, + "type": "textfield", + "input": true, + "hideOnChildrenHidden": false, + "refreshOn": "", + "dataGridLabel": false, "addons": [], - "mask": false, "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "eviqouu" + "id": "e0mvafo", + "defaultValue": "" } ], "currentWidth": 6 @@ -6785,109 +6259,142 @@ "offset": 0, "components": [ { - "key": "Section1C-City2", - "type": "textfield", - "input": true, "label": "City", - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "tableView": false, - "hideOnChildrenHidden": false, + "labelPosition": "top", "placeholder": "", + "description": "", + "tooltip": "", "prefix": "", - "customClass": "", "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, + "widget": { + "type": "input" + }, + "inputMask": "", + "displayMask": "", + "allowMultipleMasks": false, + "customClass": "", + "tabindex": "", + "autocomplete": "", "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", "hideLabel": false, - "tabindex": "", - "disabled": false, + "showWordCount": false, + "showCharCount": false, + "mask": false, "autofocus": false, + "spellcheck": true, + "disabled": false, + "tableView": false, + "modalEdit": false, + "multiple": false, + "persistent": true, + "inputFormat": "plain", + "protected": false, "dbIndex": false, + "case": "", + "truncateMultipleSpaces": false, + "encrypted": false, + "redrawOn": "", + "clearOnHide": true, "customDefaultValue": "", "calculateValue": "", "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, + "allowCalculateOverride": false, "validateOn": "change", + "validate": { + "required": true, + "pattern": "", + "customMessage": "", + "custom": "", + "customPrivate": false, + "json": "", + "minLength": "", + "maxLength": "", + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "unique": false, + "errorLabel": "", + "errors": "", + "key": "Section1C-City2", + "tags": [], + "properties": {}, "conditional": { "show": null, "when": null, - "eq": "" + "eq": "", + "json": "" }, + "customConditional": "", + "logic": [], + "attributes": {}, "overlay": { "style": "", + "page": "", "left": "", "top": "", "width": "", "height": "" }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, + "type": "textfield", + "input": true, + "hideOnChildrenHidden": false, + "refreshOn": "", + "dataGridLabel": false, "addons": [], - "mask": false, "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "ej96lic" + "id": "ep4g8sm", + "defaultValue": "" } ], "currentWidth": 6 } ], + "autoAdjust": false, + "customClass": "", + "hidden": false, + "hideLabel": false, + "modalEdit": false, + "key": "Section1C-AddressColumn2", + "tags": [], + "properties": {}, + "conditional": { + "show": null, + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "if (data.apFirstName){\n show=true;\n} else{\n show=false;\n}", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "columns", + "input": false, "tableView": false, "hideOnChildrenHidden": false, "placeholder": "", "prefix": "", - "customClass": "", "suffix": "", "multiple": false, "defaultValue": null, "protected": false, "unique": false, "persistent": false, - "hidden": false, "clearOnHide": false, "refreshOn": "", "redrawOn": "", - "modalEdit": false, "dataGridLabel": false, "labelPosition": "top", "description": "", "errorLabel": "", "tooltip": "", - "hideLabel": false, "tabindex": "", "disabled": false, "autofocus": false, @@ -6896,7 +6403,6 @@ "calculateValue": "", "calculateServer": false, "widget": null, - "attributes": {}, "validateOn": "change", "validate": { "required": false, @@ -6906,34 +6412,17 @@ "multiple": false, "unique": false }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, "allowCalculateOverride": false, "encrypted": false, "showCharCount": false, "showWordCount": false, - "properties": {}, "allowMultipleMasks": false, "addons": [], "tree": false, "lazyLoad": false, - "autoAdjust": false, - "id": "eo3ukfa" + "id": "epslne4" }, { - "key": "Section1A-AddressColumn5", - "type": "columns", - "input": false, "label": "Columns - 3", "columns": [ { @@ -6944,82 +6433,92 @@ "offset": 0, "components": [ { - "key": "Section1A-ProvinceState4", - "type": "textfield", - "input": true, "label": "Province", - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "tableView": false, - "hideOnChildrenHidden": false, + "labelPosition": "top", "placeholder": "", + "description": "", + "tooltip": "", "prefix": "", - "customClass": "", "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, + "widget": { + "type": "input" + }, + "inputMask": "", + "displayMask": "", + "allowMultipleMasks": false, + "customClass": "", + "tabindex": "", + "autocomplete": "", "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", "hideLabel": false, - "tabindex": "", - "disabled": false, + "showWordCount": false, + "showCharCount": false, + "mask": false, "autofocus": false, + "spellcheck": true, + "disabled": false, + "tableView": false, + "modalEdit": false, + "multiple": false, + "persistent": true, + "inputFormat": "plain", + "protected": false, "dbIndex": false, + "case": "", + "truncateMultipleSpaces": false, + "encrypted": false, + "redrawOn": "", + "clearOnHide": true, "customDefaultValue": "", "calculateValue": "", "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, + "allowCalculateOverride": false, "validateOn": "change", + "validate": { + "required": true, + "pattern": "", + "customMessage": "", + "custom": "", + "customPrivate": false, + "json": "", + "minLength": "", + "maxLength": "", + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "unique": false, + "errorLabel": "", + "errors": "", + "key": "Section1A-ProvinceState4", + "tags": [], + "properties": {}, "conditional": { "show": null, "when": null, - "eq": "" + "eq": "", + "json": "" }, + "customConditional": "", + "logic": [], + "attributes": {}, "overlay": { "style": "", + "page": "", "left": "", "top": "", "width": "", "height": "" }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, + "type": "textfield", + "input": true, + "hideOnChildrenHidden": false, + "refreshOn": "", + "dataGridLabel": false, "addons": [], - "mask": false, "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "euw0tfs" + "id": "eo4ye6a", + "defaultValue": "" } ], "currentWidth": 4 @@ -7027,87 +6526,97 @@ { "pull": 0, "push": 0, - "size": "md", - "width": 4, - "offset": 0, - "components": [ - { - "key": "Section1A-Country4", - "type": "textfield", - "input": true, - "label": "Country", - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "tableView": false, - "hideOnChildrenHidden": false, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, + "size": "md", + "width": 4, + "offset": 0, + "components": [ + { + "label": "Country", "labelPosition": "top", + "placeholder": "", "description": "", - "errorLabel": "", "tooltip": "", - "hideLabel": false, + "prefix": "", + "suffix": "", + "widget": { + "type": "input" + }, + "inputMask": "", + "displayMask": "", + "allowMultipleMasks": false, + "customClass": "", "tabindex": "", - "disabled": false, + "autocomplete": "", + "hidden": false, + "hideLabel": false, + "showWordCount": false, + "showCharCount": false, + "mask": false, "autofocus": false, + "spellcheck": true, + "disabled": false, + "tableView": false, + "modalEdit": false, + "multiple": false, + "persistent": true, + "inputFormat": "plain", + "protected": false, "dbIndex": false, + "case": "", + "truncateMultipleSpaces": false, + "encrypted": false, + "redrawOn": "", + "clearOnHide": true, "customDefaultValue": "", "calculateValue": "", "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, + "allowCalculateOverride": false, "validateOn": "change", + "validate": { + "required": true, + "pattern": "", + "customMessage": "", + "custom": "", + "customPrivate": false, + "json": "", + "minLength": "", + "maxLength": "", + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "unique": false, + "errorLabel": "", + "errors": "", + "key": "Section1A-Country4", + "tags": [], + "properties": {}, "conditional": { "show": null, "when": null, - "eq": "" + "eq": "", + "json": "" }, + "customConditional": "", + "logic": [], + "attributes": {}, "overlay": { "style": "", + "page": "", "left": "", "top": "", "width": "", "height": "" }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, + "type": "textfield", + "input": true, + "hideOnChildrenHidden": false, + "refreshOn": "", + "dataGridLabel": false, "addons": [], - "mask": false, "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "eq6im" + "id": "eexyypl", + "defaultValue": "" } ], "currentWidth": 4 @@ -7120,109 +6629,142 @@ "offset": 0, "components": [ { - "key": "Section1A-PostalZipCode4", - "type": "textfield", - "input": true, "label": "Postal Code", - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "tableView": false, - "hideOnChildrenHidden": false, + "labelPosition": "top", "placeholder": "", + "description": "", + "tooltip": "", "prefix": "", - "customClass": "", "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, + "widget": { + "type": "input" + }, + "inputMask": "", + "displayMask": "", + "allowMultipleMasks": false, + "customClass": "", + "tabindex": "", + "autocomplete": "", "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", "hideLabel": false, - "tabindex": "", - "disabled": false, + "showWordCount": false, + "showCharCount": false, + "mask": false, "autofocus": false, + "spellcheck": true, + "disabled": false, + "tableView": false, + "modalEdit": false, + "multiple": false, + "persistent": true, + "inputFormat": "plain", + "protected": false, "dbIndex": false, + "case": "", + "truncateMultipleSpaces": false, + "encrypted": false, + "redrawOn": "", + "clearOnHide": true, "customDefaultValue": "", "calculateValue": "", "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, + "allowCalculateOverride": false, "validateOn": "change", + "validate": { + "required": true, + "pattern": "", + "customMessage": "", + "custom": "", + "customPrivate": false, + "json": "", + "minLength": "", + "maxLength": "", + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "unique": false, + "errorLabel": "", + "errors": "", + "key": "Section1A-PostalZipCode4", + "tags": [], + "properties": {}, "conditional": { "show": null, "when": null, - "eq": "" + "eq": "", + "json": "" }, + "customConditional": "", + "logic": [], + "attributes": {}, "overlay": { "style": "", + "page": "", "left": "", "top": "", "width": "", "height": "" }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, + "type": "textfield", + "input": true, + "hideOnChildrenHidden": false, + "refreshOn": "", + "dataGridLabel": false, "addons": [], - "mask": false, "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "ezn76c" + "id": "e38sa9p", + "defaultValue": "" } ], "currentWidth": 4 } ], + "autoAdjust": false, + "customClass": "", + "hidden": false, + "hideLabel": false, + "modalEdit": false, + "key": "Section1A-AddressColumn5", + "tags": [], + "properties": {}, + "conditional": { + "show": null, + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "\nif (data.apFirstName){\n show=true;\n} else{\n show=false;\n}", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "columns", + "input": false, "tableView": false, "hideOnChildrenHidden": false, "placeholder": "", "prefix": "", - "customClass": "", "suffix": "", "multiple": false, "defaultValue": null, "protected": false, "unique": false, "persistent": false, - "hidden": false, "clearOnHide": false, "refreshOn": "", "redrawOn": "", - "modalEdit": false, "dataGridLabel": false, "labelPosition": "top", "description": "", "errorLabel": "", "tooltip": "", - "hideLabel": false, "tabindex": "", "disabled": false, "autofocus": false, @@ -7231,7 +6773,6 @@ "calculateValue": "", "calculateServer": false, "widget": null, - "attributes": {}, "validateOn": "change", "validate": { "required": false, @@ -7241,34 +6782,17 @@ "multiple": false, "unique": false }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, "allowCalculateOverride": false, "encrypted": false, "showCharCount": false, "showWordCount": false, - "properties": {}, "allowMultipleMasks": false, "addons": [], "tree": false, "lazyLoad": false, - "autoAdjust": false, - "id": "ed95jch" + "id": "e1idzxl" }, { - "key": "Section1C-ContactInfoColumn2", - "type": "columns", - "input": false, "label": "Columns - 2", "columns": [ { @@ -7279,82 +6803,92 @@ "offset": 0, "components": [ { - "key": "phoneNumber3", - "type": "textfield", - "input": true, "label": "Phone Number", - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "tableView": false, - "hideOnChildrenHidden": false, + "labelPosition": "top", "placeholder": "", + "description": "", + "tooltip": "", "prefix": "", - "customClass": "", "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, + "widget": { + "type": "input" + }, + "inputMask": "", + "displayMask": "", + "allowMultipleMasks": false, + "customClass": "", + "tabindex": "", + "autocomplete": "", "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", "hideLabel": false, - "tabindex": "", - "disabled": false, + "showWordCount": false, + "showCharCount": false, + "mask": false, "autofocus": false, + "spellcheck": true, + "disabled": false, + "tableView": false, + "modalEdit": false, + "multiple": false, + "persistent": true, + "inputFormat": "plain", + "protected": false, "dbIndex": false, + "case": "", + "truncateMultipleSpaces": false, + "encrypted": false, + "redrawOn": "", + "clearOnHide": true, "customDefaultValue": "", "calculateValue": "", "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, + "allowCalculateOverride": false, "validateOn": "change", + "validate": { + "required": true, + "pattern": "", + "customMessage": "", + "custom": "", + "customPrivate": false, + "json": "", + "minLength": "", + "maxLength": "", + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "unique": false, + "errorLabel": "", + "errors": "", + "key": "phoneNumber3", + "tags": [], + "properties": {}, "conditional": { "show": null, "when": null, - "eq": "" + "eq": "", + "json": "" }, + "customConditional": "", + "logic": [], + "attributes": {}, "overlay": { "style": "", + "page": "", "left": "", "top": "", "width": "", "height": "" }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, + "type": "textfield", + "input": true, + "hideOnChildrenHidden": false, + "refreshOn": "", + "dataGridLabel": false, "addons": [], - "mask": false, "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "epk5n6b" + "id": "ekzh67d", + "defaultValue": "" } ], "currentWidth": 6 @@ -7368,113 +6902,146 @@ "components": [ { "label": "Email", - "tableView": true, - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "key": "contactPersonEmailAddress2", - "type": "email", - "input": true, - "delimiter": false, - "requireDecimal": false, - "hideOnChildrenHidden": false, + "labelPosition": "top", "placeholder": "", + "description": "", + "tooltip": "", "prefix": "", - "customClass": "", "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, + "widget": { + "type": "input" + }, + "displayMask": "", + "customClass": "", + "tabindex": "", + "autocomplete": "", "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", "hideLabel": false, - "tabindex": "", - "disabled": false, + "mask": false, "autofocus": false, + "spellcheck": true, + "disabled": false, + "tableView": true, + "modalEdit": false, + "multiple": false, + "persistent": true, + "inputFormat": "plain", + "protected": false, "dbIndex": false, + "case": "", + "truncateMultipleSpaces": false, + "encrypted": false, + "redrawOn": "", + "clearOnHide": true, "customDefaultValue": "", "calculateValue": "", "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, + "allowCalculateOverride": false, "validateOn": "change", + "validate": { + "required": true, + "pattern": "", + "customMessage": "", + "custom": "", + "customPrivate": false, + "json": "", + "minLength": "", + "maxLength": "", + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "unique": false, + "kickbox": { + "enabled": false + }, + "errorLabel": "", + "errors": "", + "key": "contactPersonEmailAddress2", + "tags": [], + "properties": {}, "conditional": { "show": null, "when": null, - "eq": "" + "eq": "", + "json": "" }, + "customConditional": "", + "logic": [], + "attributes": {}, "overlay": { "style": "", + "page": "", "left": "", "top": "", "width": "", "height": "" }, - "allowCalculateOverride": false, - "encrypted": false, + "type": "email", + "input": true, + "delimiter": false, + "requireDecimal": false, + "hideOnChildrenHidden": false, + "refreshOn": "", + "dataGridLabel": false, "showCharCount": false, "showWordCount": false, - "properties": {}, "allowMultipleMasks": false, "addons": [], - "mask": false, "inputType": "email", - "inputFormat": "plain", "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "kickbox": { - "enabled": false - }, - "id": "e2vlpc" + "id": "ewgcubg", + "defaultValue": "" } ], "currentWidth": 6 } ], + "autoAdjust": false, + "customClass": "", + "hidden": false, + "hideLabel": false, + "modalEdit": false, + "key": "Section1C-ContactInfoColumn2", + "tags": [], + "properties": {}, + "conditional": { + "show": null, + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "\nif (data.apFirstName){\n show=true;\n} else{\n show=false;\n}", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "columns", + "input": false, "tableView": false, "hideOnChildrenHidden": false, "placeholder": "", "prefix": "", - "customClass": "", "suffix": "", "multiple": false, "defaultValue": null, "protected": false, "unique": false, "persistent": false, - "hidden": false, "clearOnHide": false, "refreshOn": "", "redrawOn": "", - "modalEdit": false, "dataGridLabel": false, "labelPosition": "top", "description": "", "errorLabel": "", "tooltip": "", - "hideLabel": false, "tabindex": "", "disabled": false, "autofocus": false, @@ -7483,7 +7050,6 @@ "calculateValue": "", "calculateServer": false, "widget": null, - "attributes": {}, "validateOn": "change", "validate": { "required": false, @@ -7493,29 +7059,15 @@ "multiple": false, "unique": false }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, "allowCalculateOverride": false, "encrypted": false, "showCharCount": false, "showWordCount": false, - "properties": {}, "allowMultipleMasks": false, "addons": [], "tree": false, "lazyLoad": false, - "autoAdjust": false, - "id": "e4f2vgv" + "id": "eearefa4" }, { "label": "Professional Designation", @@ -7584,7 +7136,7 @@ "eq": "", "json": "" }, - "customConditional": "", + "customConditional": "\nif (data.apFirstName){\n show=true;\n} else{\n show=false;\n}", "logic": [], "attributes": {}, "overlay": { @@ -7601,7 +7153,7 @@ "dataGridLabel": false, "addons": [], "inputType": "text", - "id": "e4erht", + "id": "edieg9a", "defaultValue": "" }, { @@ -7672,7 +7224,7 @@ "eq": "", "json": "" }, - "customConditional": "", + "customConditional": "\nif (data.apFirstName){\n show=true;\n} else{\n show=false;\n}", "logic": [], "attributes": {}, "overlay": { @@ -7695,7 +7247,7 @@ "inputType": "text", "inputMask": "", "fixedSize": true, - "id": "e3504l8", + "id": "espl6fn", "defaultValue": "" } ], @@ -7990,12 +7542,25 @@ }, { "label": "Subject Site Locations", + "labelPosition": "top", + "description": "", + "tooltip": "", + "disableAddingRemovingRows": false, + "conditionalAddButton": "", "reorder": false, + "addAnother": "", "addAnotherPosition": "bottom", "layoutFixed": false, "enableRowGroups": false, "initEmpty": false, + "customClass": "", + "tabindex": "", + "hidden": false, + "hideLabel": false, + "autofocus": false, + "disabled": false, "tableView": false, + "modalEdit": false, "defaultValue": [ { "siteId": "", @@ -8008,7 +7573,51 @@ "section2LongitudeSeconds": "" } ], + "persistent": true, + "protected": false, + "dbIndex": false, + "encrypted": false, + "redrawOn": "", + "clearOnHide": true, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "allowCalculateOverride": false, + "validateOn": "change", + "validate": { + "required": false, + "minLength": "", + "maxLength": "", + "customMessage": "", + "custom": "", + "customPrivate": false, + "json": "", + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "errorLabel": "", + "errors": "", "key": "dataGrid", + "tags": [], + "properties": {}, + "conditional": { + "show": null, + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "if (data.apFirstName){\n show=true;\n} else{\n show=false;\n}", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, "type": "datagrid", "input": true, "components": [ @@ -8023,80 +7632,90 @@ "components": [ { "label": "Site ID", - "tableView": true, - "key": "siteId", - "type": "textfield", - "input": true, + "labelPosition": "top", "placeholder": "", + "description": "", + "tooltip": "", "prefix": "", - "customClass": "", "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, + "widget": { + "type": "input" + }, + "inputMask": "", + "displayMask": "", + "allowMultipleMasks": false, + "customClass": "", + "tabindex": "", + "autocomplete": "", "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", "hideLabel": false, - "tabindex": "", - "disabled": false, + "showWordCount": false, + "showCharCount": false, + "mask": false, "autofocus": false, + "spellcheck": true, + "disabled": false, + "tableView": true, + "modalEdit": false, + "multiple": false, + "persistent": true, + "inputFormat": "plain", + "protected": false, "dbIndex": false, + "case": "", + "truncateMultipleSpaces": false, + "encrypted": false, + "redrawOn": "", + "clearOnHide": true, "customDefaultValue": "", "calculateValue": "", "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, + "allowCalculateOverride": false, "validateOn": "change", "validate": { - "required": false, + "required": true, + "pattern": "", + "customMessage": "", "custom": "", "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, + "json": "", "minLength": "", "maxLength": "", - "pattern": "" + "strictDateValidation": false, + "multiple": false, + "unique": false }, + "unique": false, + "errorLabel": "", + "errors": "", + "key": "siteId", + "tags": [], + "properties": {}, "conditional": { "show": null, "when": null, - "eq": "" + "eq": "", + "json": "" }, + "customConditional": "", + "logic": [], + "attributes": {}, "overlay": { "style": "", + "page": "", "left": "", "top": "", "width": "", "height": "" }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, + "type": "textfield", + "input": true, + "refreshOn": "", + "dataGridLabel": false, "addons": [], - "mask": false, "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "etpvslk" + "id": "eszh8an", + "defaultValue": "" }, { "label": "Site Common Name", @@ -8180,7 +7799,7 @@ "wysiwyg": false, "editor": "", "fixedSize": true, - "id": "edrol6" + "id": "e71a2nj" }, { "key": "heading4", @@ -8249,7 +7868,7 @@ "allowMultipleMasks": false, "addons": [], "attrs": [], - "id": "e8b5q86" + "id": "evoqji" }, { "key": "Section2-LatitudeColumn", @@ -8265,82 +7884,92 @@ "offset": 0, "components": [ { - "key": "section2LatitudeDegrees", - "type": "textfield", - "input": true, "label": "Degrees", - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "tableView": false, - "hideOnChildrenHidden": false, + "labelPosition": "top", "placeholder": "", + "description": "", + "tooltip": "", "prefix": "", - "customClass": "", "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, + "widget": { + "type": "input" + }, + "inputMask": "", + "displayMask": "", + "allowMultipleMasks": false, + "customClass": "", + "tabindex": "", + "autocomplete": "", "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", "hideLabel": false, - "tabindex": "", - "disabled": false, + "showWordCount": false, + "showCharCount": false, + "mask": false, "autofocus": false, + "spellcheck": true, + "disabled": false, + "tableView": false, + "modalEdit": false, + "multiple": false, + "persistent": true, + "inputFormat": "plain", + "protected": false, "dbIndex": false, + "case": "", + "truncateMultipleSpaces": false, + "encrypted": false, + "redrawOn": "", + "clearOnHide": true, "customDefaultValue": "", "calculateValue": "", "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, + "allowCalculateOverride": false, "validateOn": "change", + "validate": { + "required": true, + "pattern": "", + "customMessage": "", + "custom": "", + "customPrivate": false, + "json": "", + "minLength": "", + "maxLength": "", + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "unique": false, + "errorLabel": "", + "errors": "", + "key": "section2LatitudeDegrees", + "tags": [], + "properties": {}, "conditional": { "show": null, "when": null, - "eq": "" + "eq": "", + "json": "" }, + "customConditional": "", + "logic": [], + "attributes": {}, "overlay": { "style": "", + "page": "", "left": "", "top": "", "width": "", "height": "" }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, + "type": "textfield", + "input": true, + "hideOnChildrenHidden": false, + "refreshOn": "", + "dataGridLabel": false, "addons": [], - "mask": false, "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "ef4s1gv" + "id": "ej4283", + "defaultValue": "" } ], "currentWidth": 4 @@ -8353,82 +7982,92 @@ "offset": 0, "components": [ { - "key": "section2LatitudeMinutes", - "type": "textfield", - "input": true, "label": "Minutes", - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "tableView": false, - "hideOnChildrenHidden": false, + "labelPosition": "top", "placeholder": "", + "description": "", + "tooltip": "", "prefix": "", - "customClass": "", "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, + "widget": { + "type": "input" + }, + "inputMask": "", + "displayMask": "", + "allowMultipleMasks": false, + "customClass": "", + "tabindex": "", + "autocomplete": "", "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", "hideLabel": false, - "tabindex": "", - "disabled": false, + "showWordCount": false, + "showCharCount": false, + "mask": false, "autofocus": false, + "spellcheck": true, + "disabled": false, + "tableView": false, + "modalEdit": false, + "multiple": false, + "persistent": true, + "inputFormat": "plain", + "protected": false, "dbIndex": false, + "case": "", + "truncateMultipleSpaces": false, + "encrypted": false, + "redrawOn": "", + "clearOnHide": true, "customDefaultValue": "", "calculateValue": "", "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, + "allowCalculateOverride": false, "validateOn": "change", + "validate": { + "required": true, + "pattern": "", + "customMessage": "", + "custom": "", + "customPrivate": false, + "json": "", + "minLength": "", + "maxLength": "", + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "unique": false, + "errorLabel": "", + "errors": "", + "key": "section2LatitudeMinutes", + "tags": [], + "properties": {}, "conditional": { "show": null, "when": null, - "eq": "" + "eq": "", + "json": "" }, + "customConditional": "", + "logic": [], + "attributes": {}, "overlay": { "style": "", + "page": "", "left": "", "top": "", "width": "", "height": "" }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, + "type": "textfield", + "input": true, + "hideOnChildrenHidden": false, + "refreshOn": "", + "dataGridLabel": false, "addons": [], - "mask": false, "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "evm2u7" + "id": "exj2tgn", + "defaultValue": "" } ], "currentWidth": 4 @@ -8441,82 +8080,92 @@ "offset": 0, "components": [ { - "key": "section2LatitudeSeconds", - "type": "textfield", - "input": true, "label": "Seconds", - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "tableView": false, - "hideOnChildrenHidden": false, + "labelPosition": "top", "placeholder": "", + "description": "", + "tooltip": "", "prefix": "", - "customClass": "", "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, + "widget": { + "type": "input" + }, + "inputMask": "", + "displayMask": "", + "allowMultipleMasks": false, + "customClass": "", + "tabindex": "", + "autocomplete": "", "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", "hideLabel": false, - "tabindex": "", - "disabled": false, + "showWordCount": false, + "showCharCount": false, + "mask": false, "autofocus": false, + "spellcheck": true, + "disabled": false, + "tableView": false, + "modalEdit": false, + "multiple": false, + "persistent": true, + "inputFormat": "plain", + "protected": false, "dbIndex": false, + "case": "", + "truncateMultipleSpaces": false, + "encrypted": false, + "redrawOn": "", + "clearOnHide": true, "customDefaultValue": "", "calculateValue": "", "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, + "allowCalculateOverride": false, "validateOn": "change", + "validate": { + "required": true, + "pattern": "", + "customMessage": "", + "custom": "", + "customPrivate": false, + "json": "", + "minLength": "", + "maxLength": "", + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "unique": false, + "errorLabel": "", + "errors": "", + "key": "section2LatitudeSeconds", + "tags": [], + "properties": {}, "conditional": { "show": null, "when": null, - "eq": "" + "eq": "", + "json": "" }, + "customConditional": "", + "logic": [], + "attributes": {}, "overlay": { "style": "", + "page": "", "left": "", "top": "", "width": "", "height": "" }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, + "type": "textfield", + "input": true, + "hideOnChildrenHidden": false, + "refreshOn": "", + "dataGridLabel": false, "addons": [], - "mask": false, "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "ezwdsq8" + "id": "ew69io", + "defaultValue": "" } ], "currentWidth": 4 @@ -8584,7 +8233,7 @@ "tree": false, "lazyLoad": false, "autoAdjust": false, - "id": "elda0gq" + "id": "evhcjca" }, { "key": "heading5", @@ -8653,7 +8302,7 @@ "allowMultipleMasks": false, "addons": [], "attrs": [], - "id": "en3p8e9" + "id": "eayrurk" }, { "key": "Section2-LongitudeColumn", @@ -8669,82 +8318,92 @@ "offset": 0, "components": [ { - "key": "section2LongitudeDegrees", - "type": "textfield", - "input": true, "label": "Degrees", - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "tableView": false, - "hideOnChildrenHidden": false, + "labelPosition": "top", "placeholder": "", + "description": "", + "tooltip": "", "prefix": "", - "customClass": "", "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, + "widget": { + "type": "input" + }, + "inputMask": "", + "displayMask": "", + "allowMultipleMasks": false, + "customClass": "", + "tabindex": "", + "autocomplete": "", "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", "hideLabel": false, - "tabindex": "", - "disabled": false, + "showWordCount": false, + "showCharCount": false, + "mask": false, "autofocus": false, + "spellcheck": true, + "disabled": false, + "tableView": false, + "modalEdit": false, + "multiple": false, + "persistent": true, + "inputFormat": "plain", + "protected": false, "dbIndex": false, + "case": "", + "truncateMultipleSpaces": false, + "encrypted": false, + "redrawOn": "", + "clearOnHide": true, "customDefaultValue": "", "calculateValue": "", "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, + "allowCalculateOverride": false, "validateOn": "change", + "validate": { + "required": true, + "pattern": "", + "customMessage": "", + "custom": "", + "customPrivate": false, + "json": "", + "minLength": "", + "maxLength": "", + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "unique": false, + "errorLabel": "", + "errors": "", + "key": "section2LongitudeDegrees", + "tags": [], + "properties": {}, "conditional": { "show": null, "when": null, - "eq": "" + "eq": "", + "json": "" }, + "customConditional": "", + "logic": [], + "attributes": {}, "overlay": { "style": "", + "page": "", "left": "", "top": "", "width": "", "height": "" }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, + "type": "textfield", + "input": true, + "hideOnChildrenHidden": false, + "refreshOn": "", + "dataGridLabel": false, "addons": [], - "mask": false, "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "e8hqhvc" + "id": "ee3hzk4oe", + "defaultValue": "" } ], "currentWidth": 4 @@ -8757,82 +8416,92 @@ "offset": 0, "components": [ { - "key": "section2LongitudeMinutes", - "type": "textfield", - "input": true, "label": "Minutes", - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "tableView": false, - "hideOnChildrenHidden": false, + "labelPosition": "top", "placeholder": "", + "description": "", + "tooltip": "", "prefix": "", - "customClass": "", "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, + "widget": { + "type": "input" + }, + "inputMask": "", + "displayMask": "", + "allowMultipleMasks": false, + "customClass": "", + "tabindex": "", + "autocomplete": "", "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", "hideLabel": false, - "tabindex": "", - "disabled": false, + "showWordCount": false, + "showCharCount": false, + "mask": false, "autofocus": false, + "spellcheck": true, + "disabled": false, + "tableView": false, + "modalEdit": false, + "multiple": false, + "persistent": true, + "inputFormat": "plain", + "protected": false, "dbIndex": false, + "case": "", + "truncateMultipleSpaces": false, + "encrypted": false, + "redrawOn": "", + "clearOnHide": true, "customDefaultValue": "", "calculateValue": "", "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, + "allowCalculateOverride": false, "validateOn": "change", + "validate": { + "required": true, + "pattern": "", + "customMessage": "", + "custom": "", + "customPrivate": false, + "json": "", + "minLength": "", + "maxLength": "", + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "unique": false, + "errorLabel": "", + "errors": "", + "key": "section2LongitudeMinutes", + "tags": [], + "properties": {}, "conditional": { "show": null, "when": null, - "eq": "" + "eq": "", + "json": "" }, + "customConditional": "", + "logic": [], + "attributes": {}, "overlay": { "style": "", + "page": "", "left": "", "top": "", "width": "", "height": "" }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, + "type": "textfield", + "input": true, + "hideOnChildrenHidden": false, + "refreshOn": "", + "dataGridLabel": false, "addons": [], - "mask": false, "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "er4jc8h" + "id": "eidw1st", + "defaultValue": "" } ], "currentWidth": 4 @@ -8845,82 +8514,92 @@ "offset": 0, "components": [ { - "key": "section2LongitudeSeconds", - "type": "textfield", - "input": true, "label": "Seconds", - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "tableView": false, - "hideOnChildrenHidden": false, + "labelPosition": "top", "placeholder": "", + "description": "", + "tooltip": "", "prefix": "", - "customClass": "", "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, + "widget": { + "type": "input" + }, + "inputMask": "", + "displayMask": "", + "allowMultipleMasks": false, + "customClass": "", + "tabindex": "", + "autocomplete": "", "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", "hideLabel": false, - "tabindex": "", - "disabled": false, + "showWordCount": false, + "showCharCount": false, + "mask": false, "autofocus": false, + "spellcheck": true, + "disabled": false, + "tableView": false, + "modalEdit": false, + "multiple": false, + "persistent": true, + "inputFormat": "plain", + "protected": false, "dbIndex": false, + "case": "", + "truncateMultipleSpaces": false, + "encrypted": false, + "redrawOn": "", + "clearOnHide": true, "customDefaultValue": "", "calculateValue": "", "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, + "allowCalculateOverride": false, "validateOn": "change", + "validate": { + "required": true, + "pattern": "", + "customMessage": "", + "custom": "", + "customPrivate": false, + "json": "", + "minLength": "", + "maxLength": "", + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "unique": false, + "errorLabel": "", + "errors": "", + "key": "section2LongitudeSeconds", + "tags": [], + "properties": {}, "conditional": { "show": null, "when": null, - "eq": "" + "eq": "", + "json": "" }, + "customConditional": "", + "logic": [], + "attributes": {}, "overlay": { "style": "", + "page": "", "left": "", "top": "", "width": "", "height": "" }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, + "type": "textfield", + "input": true, + "hideOnChildrenHidden": false, + "refreshOn": "", + "dataGridLabel": false, "addons": [], - "mask": false, "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "ekx2hxj" + "id": "e9ytskc", + "defaultValue": "" } ], "currentWidth": 4 @@ -8988,10 +8667,10 @@ "tree": false, "lazyLoad": false, "autoAdjust": false, - "id": "eco0438" + "id": "ej1mdrb" } ], - "id": "edowey00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "id": "ej7yhy00000000000000000000000000000000", "placeholder": "", "prefix": "", "customClass": "", @@ -9057,64 +8736,19 @@ ], "placeholder": "", "prefix": "", - "customClass": "", "suffix": "", "multiple": false, - "protected": false, "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, "refreshOn": "", - "redrawOn": "", - "modalEdit": false, "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, "widget": null, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, "showCharCount": false, "showWordCount": false, - "properties": {}, "allowMultipleMasks": false, "addons": [], "tree": true, "lazyLoad": false, - "disableAddingRemovingRows": false, - "id": "evusv2q" + "id": "ee4rt34" }, { "key": "heading3", @@ -10076,7 +9710,7 @@ "id": "eqnyhh" } ], - "id": "eskogm000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "id": "eskogm00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", "placeholder": "", "prefix": "", "customClass": "", @@ -10608,7 +10242,7 @@ "addons": [], "tree": false, "lazyLoad": false, - "id": "e0cqfrg000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" + "id": "e0cqfrg00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" } ], "layoutFixed": false, @@ -10707,7 +10341,7 @@ "input": true, "label": "Crown Land File Numbers", "tableView": true, - "id": "elizdoh000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "id": "elizdoh00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", "placeholder": "", "prefix": "", "customClass": "", @@ -12095,7 +11729,7 @@ "id": "e6o3au0o" } ], - "id": "erlwlrl00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "id": "erlwlrl000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", "placeholder": "", "prefix": "", "customClass": "", @@ -12369,13 +12003,29 @@ "addons": [], "inputType": "radio", "fieldSet": false, - "id": "e0vaduj", - "defaultValue": "noTitleRecord" + "id": "e1alm66", + "defaultValue": "" }, { "label": "Land ownership (Impacted Property or Receiving Site) Please select all that apply:", + "labelPosition": "top", "optionsLabelPosition": "right", + "description": "", + "tooltip": "", + "customClass": "", + "tabindex": "", + "inline": false, + "hidden": false, + "hideLabel": false, + "autofocus": false, + "disabled": false, "tableView": false, + "modalEdit": false, + "defaultValue": { + "legallyTitled": false, + "untitledCrown": false, + "untitledMunicipal": false + }, "values": [ { "label": "Legally Titled, Registered Property", @@ -12393,75 +12043,69 @@ "shortcut": "" } ], - "key": "landOwnershipImpactedPropertyPleaseSelectAllThatApply", - "type": "selectboxes", - "input": true, - "inputType": "checkbox", - "defaultValue": { - "legallyTitled": false, - "untitledCrown": false, - "untitledMunicipal": false - }, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "protected": false, - "unique": false, "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, + "protected": false, "dbIndex": false, + "encrypted": false, + "redrawOn": "", + "clearOnHide": true, "customDefaultValue": "", "calculateValue": "", "calculateServer": false, - "widget": null, - "attributes": {}, - "validateOn": "change", + "allowCalculateOverride": false, "validate": { "required": false, + "onlyAvailableItems": false, + "customMessage": "", "custom": "", "customPrivate": false, + "json": "", "strictDateValidation": false, "multiple": false, - "unique": false, - "onlyAvailableItems": false + "unique": false }, + "errorLabel": "", + "minSelectedCountMessage": "", + "maxSelectedCountMessage": "", + "errors": "", + "key": "landOwnershipImpactedPropertyPleaseSelectAllThatApply", + "tags": [], + "properties": {}, "conditional": { "show": null, "when": null, - "eq": "" + "eq": "", + "json": "" }, + "customConditional": "", + "logic": [], + "attributes": {}, "overlay": { "style": "", + "page": "", "left": "", "top": "", "width": "", "height": "" }, - "allowCalculateOverride": false, - "encrypted": false, + "type": "selectboxes", + "input": true, + "inputType": "checkbox", + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "unique": false, + "refreshOn": "", + "dataGridLabel": false, + "widget": null, + "validateOn": "change", "showCharCount": false, "showWordCount": false, - "properties": {}, "allowMultipleMasks": false, "addons": [], "fieldSet": false, - "inline": false, - "id": "ebvkqdh" + "id": "ehcvih" }, { "title": "For Legally Titled, Registered Property (Impacted Property)", @@ -13118,7 +12762,7 @@ "id": "eg4rrls" } ], - "id": "ehjtgz000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "id": "ehjtgz0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", "placeholder": "", "prefix": "", "customClass": "", @@ -13717,7 +13361,7 @@ "addons": [], "tree": false, "lazyLoad": false, - "id": "emjblk6000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" + "id": "emjblk60000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" } ], "placeholder": "", @@ -13761,7 +13405,7 @@ "input": true, "label": "Crown Land File Numbers", "tableView": true, - "id": "eh8kmqu0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "id": "eh8kmqu00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", "placeholder": "", "prefix": "", "customClass": "", @@ -14670,7 +14314,7 @@ "id": "egqqs34" } ], - "id": "e80y9k8000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "id": "e80y9k80000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", "placeholder": "", "prefix": "", "customClass": "", @@ -22212,7 +21856,7 @@ "id": "es5kcwo" } ], - "id": "egwgsw0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "id": "egwgsw00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", "placeholder": "", "prefix": "", "customClass": "", @@ -23009,7 +22653,7 @@ "id": "erxxdli" } ], - "id": "e09khr20000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "id": "e09khr200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", "placeholder": "", "prefix": "", "customClass": "", @@ -23618,7 +23262,7 @@ "id": "eu9o53q" } ], - "id": "eipn9d000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "id": "eipn9d0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", "placeholder": "", "prefix": "", "customClass": "", @@ -24148,7 +23792,7 @@ "id": "ef617zf" } ], - "id": "ebh60il000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "id": "ebh60il0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", "placeholder": "", "prefix": "", "customClass": "", @@ -24919,7 +24563,7 @@ "id": "eak2oy8" } ], - "id": "evgsijp000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "id": "evgsijp0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", "placeholder": "", "prefix": "", "customClass": "", @@ -28993,7 +28637,7 @@ "id": "e9e5bm" } ], - "id": "e6l31cy0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "id": "e6l31cy00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", "placeholder": "", "prefix": "", "customClass": "", @@ -29903,7 +29547,7 @@ "id": "eb274z" } ], - "id": "eauzdys000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "id": "eauzdys0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", "placeholder": "", "prefix": "", "customClass": "", @@ -30498,7 +30142,7 @@ "id": "euj2r2l" } ], - "id": "ey0h0vl00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "id": "ey0h0vl000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", "placeholder": "", "prefix": "", "customClass": "", @@ -31093,7 +30737,7 @@ "id": "ehez7s" } ], - "id": "el9aclo0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "id": "el9aclo00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", "placeholder": "", "prefix": "", "customClass": "", @@ -31688,7 +31332,7 @@ "id": "et10s3fg" } ], - "id": "ehk7lsj000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "id": "ehk7lsj0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", "placeholder": "", "prefix": "", "customClass": "", @@ -32283,7 +31927,7 @@ "id": "eu50tno" } ], - "id": "ejahpfm000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "id": "ejahpfm0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", "placeholder": "", "prefix": "", "customClass": "", @@ -32989,7 +32633,7 @@ "addons": [], "tree": false, "lazyLoad": false, - "id": "etzpsl000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" + "id": "etzpsl0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" } ], "placeholder": "", @@ -33730,7 +33374,7 @@ "defaultValue": "" } ], - "id": "esvz3la0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "id": "esvz3la00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", "placeholder": "", "prefix": "", "customClass": "", @@ -37683,7 +37327,7 @@ "id": "estazfs" } ], - "id": "ef5nwt0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "id": "ef5nwt00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", "placeholder": "", "prefix": "", "customClass": "", @@ -38189,7 +37833,7 @@ "id": "eq5jxk" } ], - "id": "eoq12ev000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "id": "eoq12ev0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", "placeholder": "", "prefix": "", "customClass": "", @@ -38508,7 +38152,7 @@ "id": "enjn8bkh" } ], - "id": "ett43n0j00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "id": "ett43n0j000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", "placeholder": "", "prefix": "", "customClass": "", @@ -38827,7 +38471,7 @@ "id": "ee9w9ok" } ], - "id": "euuaaa0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "id": "euuaaa00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", "placeholder": "", "prefix": "", "customClass": "", @@ -39146,7 +38790,7 @@ "id": "e6efm7o" } ], - "id": "edr4h05000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "id": "edr4h050000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", "placeholder": "", "prefix": "", "customClass": "", @@ -40851,78 +40495,86 @@ "components": [ { "label": "Signature of Approved Professional", + "footer": "Sign above", + "labelPosition": "top", + "width": "100%", + "height": "150px", + "backgroundColor": "rgb(245,245,235)", + "penColor": "black", + "description": "", + "tooltip": "", + "customClass": "", + "tabindex": "", + "hidden": false, + "hideLabel": false, + "disabled": false, "tableView": false, + "modalEdit": false, + "persistent": true, + "protected": false, + "encrypted": false, + "redrawOn": "", + "clearOnHide": true, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "allowCalculateOverride": false, "validate": { - "required": true, + "required": false, + "customMessage": "", "custom": "", "customPrivate": false, + "json": "", "strictDateValidation": false, "multiple": false, "unique": false }, + "errorLabel": "", + "errors": "", "key": "signatureOfApprovedProfessional", + "tags": [], + "properties": {}, + "conditional": { + "show": null, + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, "type": "signature", "input": true, "placeholder": "", "prefix": "", - "customClass": "", "suffix": "", "multiple": false, "defaultValue": null, - "protected": false, "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, "refreshOn": "", - "redrawOn": "", - "modalEdit": false, "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, "autofocus": false, "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, "widget": { "type": "input" }, - "attributes": {}, "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, "showCharCount": false, "showWordCount": false, - "properties": {}, "allowMultipleMasks": false, "addons": [], - "footer": "Sign above", - "width": "100%", - "height": "150px", - "penColor": "black", - "backgroundColor": "rgb(245,245,235)", "minWidth": "0.5", "maxWidth": "2.5", "keepOverlayRatio": true, - "id": "eufhqc8" + "id": "exum7z9" } ], "width": 6, @@ -40936,80 +40588,90 @@ "components": [ { "label": "First Name", - "tableView": true, - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "key": "firstName", - "type": "textfield", - "input": true, + "labelPosition": "top", "placeholder": "", + "description": "", + "tooltip": "", "prefix": "", - "customClass": "", "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, + "widget": { + "type": "input" + }, + "inputMask": "", + "displayMask": "", + "allowMultipleMasks": false, + "customClass": "", + "tabindex": "", + "autocomplete": "", "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", "hideLabel": false, - "tabindex": "", - "disabled": false, + "showWordCount": false, + "showCharCount": false, + "mask": false, "autofocus": false, + "spellcheck": true, + "disabled": false, + "tableView": true, + "modalEdit": false, + "multiple": false, + "persistent": true, + "inputFormat": "plain", + "protected": false, "dbIndex": false, + "case": "", + "truncateMultipleSpaces": false, + "encrypted": false, + "redrawOn": "", + "clearOnHide": true, "customDefaultValue": "", "calculateValue": "", "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, + "allowCalculateOverride": false, "validateOn": "change", + "validate": { + "required": false, + "pattern": "", + "customMessage": "", + "custom": "", + "customPrivate": false, + "json": "", + "minLength": "", + "maxLength": "", + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "unique": false, + "errorLabel": "", + "errors": "", + "key": "firstName", + "tags": [], + "properties": {}, "conditional": { "show": null, "when": null, - "eq": "" + "eq": "", + "json": "" }, + "customConditional": "", + "logic": [], + "attributes": {}, "overlay": { "style": "", + "page": "", "left": "", "top": "", "width": "", "height": "" }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, + "type": "textfield", + "input": true, + "refreshOn": "", + "dataGridLabel": false, "addons": [], - "mask": false, "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "e459o2u" + "id": "ecxwnzq", + "defaultValue": "" }, { "label": "Last Name", @@ -41054,7 +40716,7 @@ "allowCalculateOverride": false, "validateOn": "change", "validate": { - "required": true, + "required": false, "pattern": "", "customMessage": "", "custom": "", @@ -41095,7 +40757,7 @@ "dataGridLabel": false, "addons": [], "inputType": "text", - "id": "ewkt9qr", + "id": "eafnivo", "defaultValue": "" }, { @@ -41224,7 +40886,7 @@ "allowMultipleMasks": false, "addons": [], "datepickerMode": "day", - "id": "eucmj7" + "id": "ewpk9km" } ], "width": 6, @@ -41239,7 +40901,7 @@ "type": "columns", "input": false, "tableView": false, - "id": "ev4kpmc00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "id": "ev4kpmc000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", "placeholder": "", "prefix": "", "customClass": "", @@ -41626,169 +41288,187 @@ "displayMask": "", "spellcheck": true, "truncateMultipleSpaces": false, - "id": "eqgxg2q" - }, - { - "label": "Signature of Approved Professional", - "tableView": false, - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "key": "signatureOfApprovedProfessional", - "type": "signature", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "footer": "Sign above", - "width": "100%", - "height": "150px", - "penColor": "black", - "backgroundColor": "rgb(245,245,235)", - "minWidth": "0.5", - "maxWidth": "2.5", - "keepOverlayRatio": true, - "id": "egps3u" - } - ], - "width": 6, - "offset": 0, - "push": 0, - "pull": 0, - "size": "md", - "currentWidth": 6 - }, - { - "components": [ - { - "label": "First Name", - "tableView": true, - "validate": { - "required": true, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, - "minLength": "", - "maxLength": "", - "pattern": "" - }, - "key": "firstName", - "type": "textfield", - "input": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "customDefaultValue": "", - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "mask": false, - "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "ehbl8ry" + "id": "eqgxg2q" + }, + { + "label": "Signature of Approved Professional", + "footer": "Sign above", + "labelPosition": "top", + "width": "100%", + "height": "150px", + "backgroundColor": "rgb(245,245,235)", + "penColor": "black", + "description": "", + "tooltip": "", + "customClass": "", + "tabindex": "", + "hidden": false, + "hideLabel": false, + "disabled": false, + "tableView": false, + "modalEdit": false, + "persistent": true, + "protected": false, + "encrypted": false, + "redrawOn": "", + "clearOnHide": true, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "allowCalculateOverride": false, + "validate": { + "required": false, + "customMessage": "", + "custom": "", + "customPrivate": false, + "json": "", + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "errorLabel": "", + "errors": "", + "key": "signatureOfApprovedProfessional", + "tags": [], + "properties": {}, + "conditional": { + "show": null, + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "signature", + "input": true, + "placeholder": "", + "prefix": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "unique": false, + "refreshOn": "", + "dataGridLabel": false, + "autofocus": false, + "dbIndex": false, + "widget": { + "type": "input" + }, + "validateOn": "change", + "showCharCount": false, + "showWordCount": false, + "allowMultipleMasks": false, + "addons": [], + "minWidth": "0.5", + "maxWidth": "2.5", + "keepOverlayRatio": true, + "id": "epsxxv5" + } + ], + "width": 6, + "offset": 0, + "push": 0, + "pull": 0, + "size": "md", + "currentWidth": 6 + }, + { + "components": [ + { + "label": "First Name", + "labelPosition": "top", + "placeholder": "", + "description": "", + "tooltip": "", + "prefix": "", + "suffix": "", + "widget": { + "type": "input" + }, + "inputMask": "", + "displayMask": "", + "allowMultipleMasks": false, + "customClass": "", + "tabindex": "", + "autocomplete": "", + "hidden": false, + "hideLabel": false, + "showWordCount": false, + "showCharCount": false, + "mask": false, + "autofocus": false, + "spellcheck": true, + "disabled": false, + "tableView": true, + "modalEdit": false, + "multiple": false, + "persistent": true, + "inputFormat": "plain", + "protected": false, + "dbIndex": false, + "case": "", + "truncateMultipleSpaces": false, + "encrypted": false, + "redrawOn": "", + "clearOnHide": true, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "allowCalculateOverride": false, + "validateOn": "change", + "validate": { + "required": false, + "pattern": "", + "customMessage": "", + "custom": "", + "customPrivate": false, + "json": "", + "minLength": "", + "maxLength": "", + "strictDateValidation": false, + "multiple": false, + "unique": false + }, + "unique": false, + "errorLabel": "", + "errors": "", + "key": "firstName", + "tags": [], + "properties": {}, + "conditional": { + "show": null, + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "textfield", + "input": true, + "refreshOn": "", + "dataGridLabel": false, + "addons": [], + "inputType": "text", + "id": "e73qv96", + "defaultValue": "" }, { "label": "Last Name", @@ -41833,7 +41513,7 @@ "allowCalculateOverride": false, "validateOn": "change", "validate": { - "required": true, + "required": false, "pattern": "", "customMessage": "", "custom": "", @@ -41874,7 +41554,7 @@ "dataGridLabel": false, "addons": [], "inputType": "text", - "id": "ew4j73", + "id": "eu7jhcp", "defaultValue": "" }, { @@ -41974,10 +41654,6 @@ "type": "datetime", "timezone": "", "input": true, - "prefix": "", - "suffix": "", - "refreshOn": "", - "dataGridLabel": false, "widget": { "type": "calendar", "displayInTimezone": "viewer", @@ -41998,12 +41674,16 @@ "disableFunction": "", "maxDate": null }, + "prefix": "", + "suffix": "", + "refreshOn": "", + "dataGridLabel": false, "showCharCount": false, "showWordCount": false, "allowMultipleMasks": false, "addons": [], "datepickerMode": "day", - "id": "ewqskd" + "id": "e4u5pgk" } ], "width": 6, @@ -42018,7 +41698,7 @@ "type": "columns", "input": false, "tableView": false, - "id": "ehbime0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "id": "ehbime00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", "placeholder": "", "prefix": "", "customClass": "", @@ -42926,7 +42606,7 @@ "refreshOn": "", "addons": [], "inputType": "text", - "id": "errpqaf00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "id": "errpqaf000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", "defaultValue": "" } ], @@ -43749,7 +43429,7 @@ "allowCalculateOverride": false, "validateOn": "change", "validate": { - "required": false, + "required": true, "customMessage": "", "custom": "", "customPrivate": false, @@ -43815,7 +43495,7 @@ "allowMultipleMasks": false, "addons": [], "datepickerMode": "day", - "id": "etjv8wm" + "id": "e4b756p" } ], "width": 6, @@ -44431,39 +44111,63 @@ "id": "e3jlek" }, { - "type": "button", "label": "Submit", - "key": "submit", + "action": "custom", + "showValidations": false, + "theme": "primary", "size": "md", "block": false, - "action": "submit", - "disableOnInvalid": true, - "theme": "primary", + "leftIcon": "", + "rightIcon": "", + "shortcut": "", + "description": "", + "tooltip": "", + "customClass": "", + "tabindex": "", + "disableOnInvalid": false, + "hidden": false, + "autofocus": false, + "disabled": false, + "tableView": false, + "modalEdit": false, + "key": "submit", + "tags": [], + "properties": {}, + "conditional": { + "show": null, + "when": null, + "eq": "", + "json": "" + }, + "customConditional": "const UserDetails = JSON.parse(localStorage.getItem(\"UserDetails\"));\r\nconst roles = UserDetails[\"role\"];\r\nif(roles.includes(\"formsflow-client\")) {\r\n show = true;\r\n}\r\nelse\r\n{\r\n show = false;\r\n}", + "logic": [], + "attributes": {}, + "overlay": { + "style": "", + "page": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "type": "button", + "custom": "form.submit();", "input": true, "placeholder": "", "prefix": "", - "customClass": "", "suffix": "", "multiple": false, "defaultValue": null, "protected": false, "unique": false, "persistent": false, - "hidden": false, "clearOnHide": true, "refreshOn": "", "redrawOn": "", - "tableView": false, - "modalEdit": false, "dataGridLabel": true, "labelPosition": "top", - "description": "", "errorLabel": "", - "tooltip": "", "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, "dbIndex": false, "customDefaultValue": "", "calculateValue": "", @@ -44471,7 +44175,6 @@ "widget": { "type": "input" }, - "attributes": {}, "validateOn": "change", "validate": { "required": false, @@ -44481,28 +44184,13 @@ "multiple": false, "unique": false }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, "allowCalculateOverride": false, "encrypted": false, "showCharCount": false, "showWordCount": false, - "properties": {}, "allowMultipleMasks": false, "addons": [], - "leftIcon": "", - "rightIcon": "", - "id": "emkrxp" + "id": "eh150x" }, { "label": "bundleStatus", @@ -44575,75 +44263,6 @@ "inputType": "hidden", "id": "eryzjur" }, - { - "label": "soscUtilKeys", - "customDefaultValue": "const soscKeys = Object.keys(\n      utils.flattenComponents(form.components, false)\n    );\n\nvalue = soscKeys;", - "key": "soscUtilKeys", - "type": "hidden", - "input": true, - "tableView": false, - "keyModified": true, - "placeholder": "", - "prefix": "", - "customClass": "", - "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "hideLabel": false, - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "calculateValue": "", - "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, - "validateOn": "change", - "validate": { - "required": false, - "custom": "", - "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false - }, - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, - "addons": [], - "inputType": "hidden", - "id": "e6did" - }, { "label": "soscStatus", "customClass": "", @@ -44657,7 +44276,7 @@ "customDefaultValue": "", "calculateValue": "", "calculateServer": false, - "key": "soscBundleStatus", + "key": "soscStatus", "tags": [], "properties": {}, "logic": [], @@ -44713,7 +44332,7 @@ "allowMultipleMasks": false, "addons": [], "inputType": "hidden", - "id": "epy41s4" + "id": "ewdxks" }, { "label": "applicationId", diff --git a/forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/processes/SoSC/SOSCBundleWorklow.bpmn b/forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/processes/SoSC/SOSCBundleWorklow.bpmn index e83cc5ab..a6959afa 100644 --- a/forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/processes/SoSC/SOSCBundleWorklow.bpmn +++ b/forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/processes/SoSC/SOSCBundleWorklow.bpmn @@ -9,8 +9,9 @@ StartEvent_1 Activity_1v5ffpw Activity_1ozfgid - Gateway_17raw62 Activity_0k6ixqm + Gateway_17raw62 + Gateway_08cgufe Gateway_04o747e @@ -35,11 +36,11 @@ Activity_15e3ho6 - Event_0sdygwc Activity_0p4hm8r Activity_1hs3dja Gateway_1lbpcug Gateway_0c5c1m3 + Event_0sdygwc Activity_0tsm937 @@ -55,7 +56,7 @@ - + ${action == 'Rejected'} @@ -110,6 +111,7 @@ + @@ -150,10 +152,10 @@ ${applicationStatus== 'Resubmitted' and isAp== true} - + ${applicationStatus!= 'Resubmitted'} - + task.execution.setVariable('isCssaTeam',false); @@ -173,12 +175,13 @@ task.execution.setVariable('deleteReason', "completed"); Flow_0gb2oz2 Flow_0wr0mei Flow_0lgivc3 + Flow_0mzcdc9 Flow_0bz8atu Flow_1rc30l8 - + task.execution.setVariable('isSociety',false); @@ -249,27 +252,33 @@ task.execution.setVariable('deleteReason', "completed"); Flow_0aabyhy Flow_0gcqir8 - + ${action == 'Rejected' or action == 'Approved' } - + ${action == 'Rejected'} - ${action == 'Recheck' and isSentFromSociety == false} - - ${isSentFromSociety == false} - ${isSentFromSociety == true} + + + execution.setVariable('soscStatus', "caseworkerAccepted"); + + + + ["soscStatus"] + + + ${action == 'Accepted'} @@ -304,9 +313,7 @@ execution.setVariable('returnedBy', "cssaTeam"); var system = java.lang.System; execution.setVariable('name','User'); - -execution.setVariable('riskclassification','required'); -system.out.println ("riskclassification"+ execution.getVariable('riskclassification')); +system.out.println ("name"+ execution.getVariable('name')); var contactEmail = execution.getVariable('contactPersonEmailAddress'); execution.setVariable('contactEmail', contactEmail); @@ -331,29 +338,26 @@ emailsToArray.push(agentEmail); execution.setVariable("emailTo", Java.to(emailsToArray, "java.lang.Object[]")); system.out.println ("emailTo"+execution.getVariable('emailTo')); -var siteRiskClassification = execution.getVariable('siteRiskClassification'); -system.out.println ("siteRiskClassification "+siteRiskClassification ); -execution.setVariable('siteRiskClassification',siteRiskClassification); +var apFirstName= execution.getVariable('apFirstName'); +system.out.println ("apFirstName"+apFirstName); +if(apFirstName){ +execution.setVariable('apRequired',true); +} else { +execution.setVariable('apRequired',false); +} +system.out.println ("apRequired"+execution.getVariable('apRequired')); - - Flow_05pndkl - Flow_1xj96i6 - Flow_0527h3y - Flow_0543g25 - Flow_0wr0mei - Flow_0d8ioqs - Flow_0ovj0pk - Flow_1rc30l8 Flow_0dbqph3 var system = java.lang.System; -system.out.println ("Submit Bundle"); +system.out.println ("Submit SoSC"); execution.setVariable('isAp',false); execution.setVariable('isSociety',false); -execution.setVariable('isCssaTeam',false); +execution.setVariable('isCssaTeam',false); +execution.setVariable('isSentFromSociety',false); - + task.execution.setVariable('isAp',false); @@ -372,7 +376,7 @@ task.execution.setVariable('deleteReason', "completed"); Flow_0pzpbn7 Flow_0527h3y - Flow_1xj96i6 + Flow_0xviquu Flow_0b418rv @@ -381,7 +385,7 @@ task.execution.setVariable('deleteReason', "completed"); Flow_1uymx0e Flow_16imhzz - + Flow_1rauvts Flow_0gb2oz2 @@ -394,7 +398,7 @@ task.execution.setVariable('deleteReason', "completed"); Flow_1rauvts Flow_0xqxeuh - + Flow_1e5ig6c Flow_19ktqsm @@ -408,7 +412,7 @@ task.execution.setVariable('deleteReason', "completed"); Flow_1e5ig6c Flow_0q6vtm0 - + Flow_02ysv7t @@ -422,23 +426,7 @@ system.out.println ("soscSdmAssignment"+execution.getVariable('soscSdmAssignment var selectSoscCaseworker= execution.getVariable('selectSoscCaseworker'); system.out.println ("selectSoscCaseworker"+selectSoscCaseworker); execution.setVariable('soscCaseworkerAssignment',selectSoscCaseworker); -system.out.println ("soscCaseworkerAssignment"+execution.getVariable('soscCaseworkerAssignment')); - -var selectSdm= execution.getVariable('selectSdm'); -system.out.println ("selectSdm"+selectSdm); -execution.setVariable('sdmAssignment',selectSdm); -system.out.println ("sdmAssignment"+execution.getVariable('sdmAssignment')); - -var selectCaseworker= execution.getVariable('selectCaseworker'); -system.out.println ("selectCaseworker"+selectCaseworker); -execution.setVariable('caseworkerAssignment',selectCaseworker); -system.out.println ("caseworkerAssignment"+execution.getVariable('caseworkerAssignment')); - -var selectSrco= execution.getVariable('selectSrco'); -system.out.println ("selectSrco"+selectSrco); -execution.setVariable('srcoAssignment',selectSrco); -system.out.println ("srcoAssignment"+execution.getVariable('srcoAssignment')); - +system.out.println ("soscCaseworkerAssignment"+execution.getVariable('soscCaseworkerAssignment')); Flow_0ox6f9z @@ -451,20 +439,19 @@ system.out.println ("srcoAssignment"+execution.getVariable('srcoAssignment')); Flow_0ox6f9z Flow_1hnx4nj - + - + - + Flow_0d8ioqs Flow_1jxxrt6 Flow_026ykts Flow_0qiqnks var system = java.lang.System; -system.out.println ("Begin SoSC Individual Flow - Sent To Caseworker"); -execution.setVariable('isCaseworker',false); -system.out.println ("isSentFromSociety "+execution.getVariable('isSentFromSociety')); + +execution.setVariable('isCaseworker',false); Flow_0on1goq @@ -481,9 +468,6 @@ system.out.println ("isSentFromSociety "+execution.getVariable('isSentFromSociet var system = java.lang.System; system.out.println ("Sent to SDM"); - - Flow_0izwlc1 - @@ -493,23 +477,13 @@ system.out.println ("Sent to SDM"); sosc_updated - Flow_0qbjx6e - Flow_07eueok - Flow_1xju4ax - Flow_16imhzz - Flow_0xqxeuh - Flow_0q6vtm0 - Flow_1hnx4nj - Flow_0z0wj6z - Flow_0op6tja - Flow_0izwlc1 Flow_0qiqnks Flow_057qs1x Flow_01suxh6 - + task.execution.setVariable('isCaseworker',false); @@ -534,7 +508,7 @@ task.execution.setVariable('deleteReason', "completed"); Flow_0on1goq Flow_0z0wj6z - + task.execution.setVariable('isSdm',false); @@ -566,6 +540,40 @@ task.execution.setVariable('deleteReason', "completed"); Flow_1l3oqze Flow_0op6tja + + Flow_0op6tja + Flow_0z0wj6z + Flow_1hnx4nj + Flow_0q6vtm0 + Flow_0xqxeuh + Flow_16imhzz + Flow_1xju4ax + Flow_07eueok + Flow_0qbjx6e + + + Flow_05pndkl + Flow_1xj96i6 + Flow_0527h3y + Flow_0543g25 + Flow_0wr0mei + Flow_0d8ioqs + Flow_0ovj0pk + + + Flow_1xj96i6 + Flow_0xviquu + Flow_0mzcdc9 + + + ${apRequired== true} + + + ${apRequired== false} + + + ${isSentFromSociety == false} + @@ -633,12 +641,6 @@ task.execution.setVariable('deleteReason', "completed"); - - - - - - @@ -689,12 +691,6 @@ task.execution.setVariable('deleteReason', "completed"); - - - - - - @@ -725,6 +721,24 @@ task.execution.setVariable('deleteReason', "completed"); + + + + + + + + + + + + + + + + + + @@ -739,8 +753,8 @@ task.execution.setVariable('deleteReason', "completed"); - - + + @@ -783,7 +797,7 @@ task.execution.setVariable('deleteReason', "completed"); - + @@ -850,45 +864,45 @@ task.execution.setVariable('deleteReason', "completed"); - - + + - - + + - - + + - + - - + + - + - - + + - + - - + + @@ -920,25 +934,21 @@ task.execution.setVariable('deleteReason', "completed"); - - + + - + - - + + - - - - @@ -1006,8 +1016,8 @@ task.execution.setVariable('deleteReason', "completed"); - - + + @@ -1015,8 +1025,8 @@ task.execution.setVariable('deleteReason', "completed"); - - + + @@ -1024,8 +1034,8 @@ task.execution.setVariable('deleteReason', "completed"); - - + + @@ -1033,8 +1043,8 @@ task.execution.setVariable('deleteReason', "completed"); - - + + @@ -1042,8 +1052,8 @@ task.execution.setVariable('deleteReason', "completed"); - - + + @@ -1051,8 +1061,24 @@ task.execution.setVariable('deleteReason', "completed"); - - + + + + + + + + + + + + + + + + + + From 00e2e0658aef38d4d5727ccc17bfcbbc9e3ae4a5 Mon Sep 17 00:00:00 2001 From: nikhila-aot Date: Mon, 16 Oct 2023 22:46:40 -0700 Subject: [PATCH 166/194] email integration --- .../processes/Common/email-template.dmn | 28 ++- .../processes/SoSC/SOSCBundleWorklow.bpmn | 211 ++++++++++++------ .../templates/sosc_application.ftl | 69 ++++++ 3 files changed, 233 insertions(+), 75 deletions(-) create mode 100644 forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/templates/sosc_application.ftl diff --git a/forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/processes/Common/email-template.dmn b/forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/processes/Common/email-template.dmn index b0797001..aca61f7c 100644 --- a/forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/processes/Common/email-template.dmn +++ b/forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/processes/Common/email-template.dmn @@ -1,5 +1,5 @@ - + @@ -274,6 +274,32 @@ "epd-support@gov.bc.ca" + + + "sosc_updated" + + + + + + "NOREPLYEPD@gov.bc.ca" + + + + + + + + + "Summary of Site Condition Report Update" + + + "templates/sosc_application.ftl" + + + "epd-support@gov.bc.ca" + + diff --git a/forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/processes/SoSC/SOSCBundleWorklow.bpmn b/forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/processes/SoSC/SOSCBundleWorklow.bpmn index a6959afa..b3b14de6 100644 --- a/forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/processes/SoSC/SOSCBundleWorklow.bpmn +++ b/forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/processes/SoSC/SOSCBundleWorklow.bpmn @@ -36,10 +36,13 @@ Activity_15e3ho6 - Activity_0p4hm8r Activity_1hs3dja Gateway_1lbpcug Gateway_0c5c1m3 + Gateway_05gt5j7 + Gateway_1wshqhl + Gateway_1dnln9c + Activity_1gjzpac Event_0sdygwc @@ -56,7 +59,7 @@ - + ${action == 'Rejected'} @@ -252,10 +255,10 @@ task.execution.setVariable('deleteReason', "completed"); Flow_0aabyhy Flow_0gcqir8 - + ${action == 'Rejected' or action == 'Approved' } - + ${action == 'Rejected'} @@ -331,10 +334,7 @@ execution.setVariable('agentEmail',agentEmail); system.out.println("agentEmail"+agentEmail); var emailsToArray = []; -emailsToArray.push(contactEmail); -emailsToArray.push(apEmail); emailsToArray.push(clientEmail); -emailsToArray.push(agentEmail); execution.setVariable("emailTo", Java.to(emailsToArray, "java.lang.Object[]")); system.out.println ("emailTo"+execution.getVariable('emailTo')); @@ -385,7 +385,7 @@ task.execution.setVariable('deleteReason', "completed"); Flow_1uymx0e Flow_16imhzz - + Flow_1rauvts Flow_0gb2oz2 @@ -398,7 +398,7 @@ task.execution.setVariable('deleteReason', "completed"); Flow_1rauvts Flow_0xqxeuh - + Flow_1e5ig6c Flow_19ktqsm @@ -412,7 +412,7 @@ task.execution.setVariable('deleteReason', "completed"); Flow_1e5ig6c Flow_0q6vtm0 - + Flow_02ysv7t @@ -439,11 +439,11 @@ system.out.println ("soscCaseworkerAssignment"+execution.getVariable('soscCasewo Flow_0ox6f9z Flow_1hnx4nj - + - + - + Flow_0d8ioqs Flow_1jxxrt6 @@ -468,16 +468,6 @@ execution.setVariable('isCaseworker',false); var system = java.lang.System; system.out.println ("Sent to SDM"); - - - - - - - sosc_updated - - - Flow_0qiqnks Flow_057qs1x @@ -540,17 +530,6 @@ task.execution.setVariable('deleteReason', "completed"); Flow_1l3oqze Flow_0op6tja - - Flow_0op6tja - Flow_0z0wj6z - Flow_1hnx4nj - Flow_0q6vtm0 - Flow_0xqxeuh - Flow_16imhzz - Flow_1xju4ax - Flow_07eueok - Flow_0qbjx6e - Flow_05pndkl Flow_1xj96i6 @@ -574,6 +553,52 @@ task.execution.setVariable('deleteReason', "completed"); ${isSentFromSociety == false} + + + + Flow_07eueok + Flow_1m7z9cq + Flow_0mrjkt1 + + + + + + Flow_1xju4ax + Flow_1q3zpib + Flow_1hksq9t + + + + Flow_0qbjx6e + Flow_14l7yi6 + Flow_0a5mfei + + + + + + + sosc_updated + + + Flow_1m7z9cq + Flow_1hksq9t + Flow_0a5mfei + Flow_0op6tja + Flow_0z0wj6z + Flow_1hnx4nj + Flow_0q6vtm0 + Flow_0xqxeuh + Flow_16imhzz + Flow_0aoaeq3 + + + Flow_0aoaeq3 + Flow_0mrjkt1 + Flow_1q3zpib + Flow_14l7yi6 + @@ -691,10 +716,6 @@ task.execution.setVariable('deleteReason', "completed"); - - - - @@ -721,12 +742,6 @@ task.execution.setVariable('deleteReason', "completed"); - - - - - - @@ -739,6 +754,25 @@ task.execution.setVariable('deleteReason', "completed"); + + + + + + + + + + + + + + + + + + + @@ -752,11 +786,10 @@ task.execution.setVariable('deleteReason', "completed"); - - - + + - + @@ -934,19 +967,17 @@ task.execution.setVariable('deleteReason', "completed"); - - + - + - - - + + - + @@ -966,13 +997,6 @@ task.execution.setVariable('deleteReason', "completed"); - - - - - - - @@ -1016,8 +1040,8 @@ task.execution.setVariable('deleteReason', "completed"); - - + + @@ -1025,8 +1049,8 @@ task.execution.setVariable('deleteReason', "completed"); - - + + @@ -1034,8 +1058,8 @@ task.execution.setVariable('deleteReason', "completed"); - - + + @@ -1043,8 +1067,8 @@ task.execution.setVariable('deleteReason', "completed"); - - + + @@ -1052,8 +1076,8 @@ task.execution.setVariable('deleteReason', "completed"); - - + + @@ -1061,8 +1085,8 @@ task.execution.setVariable('deleteReason', "completed"); - - + + @@ -1080,6 +1104,45 @@ task.execution.setVariable('deleteReason', "completed"); + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/templates/sosc_application.ftl b/forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/templates/sosc_application.ftl new file mode 100644 index 00000000..cae23103 --- /dev/null +++ b/forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/templates/sosc_application.ftl @@ -0,0 +1,69 @@ + + + + + + + + + + + +
checkAll(e.target.checked)} /> checkAll(e.target.checked)} />{header.label}SR
{{ component.label }}Actions
\n {{ getView(component, row[component.key]) }}\n \n
\n \n {% if (!instance.hasRemoveButtons || instance.hasRemoveButtons()) { %}\n \n {% } %}\n
\n
\n {{ getView(component, row[component.key]) }}\n \n
\n \n {% if (!instance.hasRemoveButtons || instance.hasRemoveButtons()) { %}\n \n {% } %}\n
\n
{{ component.label }}Actions
\n {{ getView(component, row[component.key]) }}\n \n
\n \n {% if (!instance.hasRemoveButtons || instance.hasRemoveButtons()) { %}\n \n {% } %}\n
\n
{{ component.label }}Actions
\n {{ getView(component, row[component.key]) }}\n \n
\n \n {% if (!instance.hasRemoveButtons || instance.hasRemoveButtons()) { %}\n \n {% } %}\n
\n
{{ component.label }}Actions
\n {{ getView(component, row[component.key]) }}\n \n
\n \n {% if (!instance.hasRemoveButtons || instance.hasRemoveButtons()) { %}\n \n {% } %}\n
\n
{{ component.label }}Actions
\n {{ getView(component, row[component.key]) }}\n \n
\n \n {% if (!instance.hasRemoveButtons || instance.hasRemoveButtons()) { %}\n \n {% } %}\n
\n
+ + + + +
+ + + Site Remediation Services +
+ + + + + + + + + + + + + + + + + + + +
+
+
+

+ Summary of Site Condition Report. +

+
+

+ Hello ${name}, +

+

+ Your Summary of Site Condition Report application has been updated. Current status is ${action}. +

+
+

+ If you need any help, don’t hesitate to reach out to us at ${support} +

+
+
+
+ +

EPD will never send an email that asks you to provide, confirm or verify personal, log on or account information. + DO NOT reply to this email as it was sent from an unmonitored account. +

+
+ + \ No newline at end of file From 9c01185b7220b29619e4baeb1151e715222a174c Mon Sep 17 00:00:00 2001 From: midhun-aot Date: Mon, 16 Oct 2023 23:18:10 -0700 Subject: [PATCH 167/194] workflow update for NIR --- .../subProcess/NIRBundleWorkflow.bpmn | 973 +++++++++++------- .../processes/Common/email-template.dmn | 2 +- 2 files changed, 577 insertions(+), 398 deletions(-) diff --git a/forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/processes/Bundling/subProcess/NIRBundleWorkflow.bpmn b/forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/processes/Bundling/subProcess/NIRBundleWorkflow.bpmn index aa29d829..834bbda3 100644 --- a/forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/processes/Bundling/subProcess/NIRBundleWorkflow.bpmn +++ b/forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/processes/Bundling/subProcess/NIRBundleWorkflow.bpmn @@ -1,5 +1,5 @@ - + @@ -10,11 +10,6 @@ Event_01t23k0 Activity_0truthe - - Event_02fettt - Activity_1ozfgid - Task_05ulff4 - Activity_06nypz0 Activity_0w5t5av @@ -24,8 +19,31 @@ Activity_1n3rj1g Activity_1os7sys Event_0ml6v2t + Gateway_1awj7az + + + Event_02fettt + Activity_1ozfgid + Task_05ulff4 + + + Activity_132ba5z + Activity_0g23guk + + + + + nir_updated + + + Flow_0ixmsle + Flow_1cgcuxz + + + Flow_1cgcuxz + Flow_1la2yud @@ -45,7 +63,8 @@ system.out.println ("siteRiskClassification "+siteRiskClassification ); execution.setVariable('siteRiskClassification',siteRiskClassification); var name=execution.getVariable('nirName'); system.out.println ("name "+execution.getVariable('nirName')); -execution.setVariable('name',name); +execution.setVariable('name',name); +execution.setVariable('formName','Notification of Independent Remediation'); @@ -71,7 +90,8 @@ execution.setVariable('name',name); task.execution.setVariable('applicationStatus', task.execution.getVariable('action')); -task.execution.setVariable('deleteReason', "completed"); +task.execution.setVariable('deleteReason', "completed"); +task.execution.setVariable('userRole','Site Information Advisor'); @@ -85,61 +105,48 @@ task.execution.setVariable('deleteReason', "completed"); Flow_1oam11w Flow_1g1b94u - - Flow_1oam11w - Flow_00mjhxs - - - Flow_00mjhxs - Flow_04l5mhw - - - Flow_04l5mhw - Flow_00msr8t - - - Flow_00msr8t - Flow_115hro3 - Flow_1tvwlrp - - + - - - - - Flow_1tvwlrp - Flow_1g1b94u - Flow_0bwxoom - - - - - - nir_updated - - - Flow_0bwxoom - Flow_0x0w3ip - - - Flow_0x0w3ip - - - - - - nir_updated - + + task.execution.setVariable('isCssaTeam',false); + + + + task.execution.setVariable('applicationStatus', task.execution.getVariable('action')); +task.execution.setVariable('deleteReason', "completed"); + + + + + ["applicationId", "applicationStatus"] + + - Flow_0ixmsle - Flow_1cgcuxz - - - Flow_1cgcuxz - - Flow_115hro3 + Flow_09ugz49 + + + Flow_09ugz49 + Flow_176uggp + var system = java.lang.System; +var selectSdm= execution.getVariable('selectSdm'); +system.out.println ("selectSdm"+selectSdm); +execution.setVariable('sdmAssignment',selectSdm); +system.out.println ("sdmAssignment"+execution.getVariable('sdmAssignment')); + +var selectCaseworker= execution.getVariable('selectCaseworker'); +system.out.println ("selectCaseworker"+selectCaseworker); +execution.setVariable('caseworkerAssignment',selectCaseworker); +system.out.println ("caseworkerAssignment"+execution.getVariable('caseworkerAssignment')); + +var selectSrco= execution.getVariable('selectSrco'); +system.out.println ("selectSrco"+selectSrco); +execution.setVariable('srcoAssignment',selectSrco); +system.out.println ("srcoAssignment"+execution.getVariable('srcoAssignment')); + + + + Flow_176uggp Flow_0ixmsle Flow_1ojyq91 @@ -149,7 +156,7 @@ task.execution.setVariable('deleteReason', "completed"); var system = java.lang.System; system.out.println ("Sent to Caseworker"); - + @@ -164,11 +171,12 @@ system.out.println ("Sent to Caseworker"); task.execution.setVariableLocal('variable1',"srcr"); - task.execution.setVariable('requestStatus', task.execution.getVariable('action')); -task.execution.setVariable('requestType', 'SRCR'); -task.execution.setVariable('deleteReason', "completed"); -task.execution.setVariable('srcrStatus', task.execution.getVariable('action')); -task.execution.setVariable('applicationStatus', task.execution.getVariable('action')); + task.execution.setVariable('requestStatus', task.execution.getVariable('action')); +task.execution.setVariable('requestType', 'SRCR'); +task.execution.setVariable('deleteReason', "completed"); +task.execution.setVariable('srcrStatus', task.execution.getVariable('action')); +task.execution.setVariable('applicationStatus', task.execution.getVariable('action')); +task.execution.setVariable('userRole','Case Worker'); @@ -178,7 +186,7 @@ task.execution.setVariable('applicationStatus', task.execution.getVariable('acti Flow_1ccbyzk - Flow_1ccbyzk + Flow_1k1fe9x Flow_0zzhoui Flow_1ixkifd Flow_0pqd76u @@ -192,7 +200,7 @@ task.execution.setVariable('applicationStatus', task.execution.getVariable('acti var system = java.lang.System; system.out.println ("Sent to SDM"); - + @@ -206,11 +214,12 @@ system.out.println ("Sent to SDM"); task.execution.setVariable('task_id',task.getId()); - task.execution.setVariable('requestStatus', task.execution.getVariable('action')); -task.execution.setVariable('requestType', 'SRCR'); -task.execution.setVariable('deleteReason', "completed"); -task.execution.setVariable('srcrStatus', task.execution.getVariable('action')); -task.execution.setVariable('applicationStatus', task.execution.getVariable('action')); + task.execution.setVariable('requestStatus', task.execution.getVariable('action')); +task.execution.setVariable('requestType', 'SRCR'); +task.execution.setVariable('deleteReason', "completed"); +task.execution.setVariable('srcrStatus', task.execution.getVariable('action')); +task.execution.setVariable('applicationStatus', task.execution.getVariable('action')); +task.execution.setVariable('userRole','Statutory Decision Maker'); @@ -220,7 +229,7 @@ task.execution.setVariable('applicationStatus', task.execution.getVariable('acti Flow_0mtd57d - Flow_0mtd57d + Flow_031wsso Flow_0k5l8nk Flow_0ryglee Flow_1kizv19 @@ -274,7 +283,7 @@ system.out.println ("Begin SRCR Flow - Sent To SRCO"); Flow_1axts3r - + @@ -289,11 +298,12 @@ system.out.println ("Begin SRCR Flow - Sent To SRCO"); task.execution.setVariableLocal('variable1',"srcr"); - task.execution.setVariable('requestStatus', task.execution.getVariable('action')); -task.execution.setVariable('requestType', 'SRCR'); -task.execution.setVariable('deleteReason', "completed"); -task.execution.setVariable('srcrStatus', task.execution.getVariable('action')); -task.execution.setVariable('applicationStatus', task.execution.getVariable('action')); + task.execution.setVariable('requestStatus', task.execution.getVariable('action')); +task.execution.setVariable('requestType', 'SRCR'); +task.execution.setVariable('deleteReason', "completed"); +task.execution.setVariable('srcrStatus', task.execution.getVariable('action')); +task.execution.setVariable('applicationStatus', task.execution.getVariable('action')); +task.execution.setVariable('userRole','Site Risk Classification Officer'); @@ -303,7 +313,7 @@ task.execution.setVariable('applicationStatus', task.execution.getVariable('acti Flow_0h34vew - Flow_0h34vew + Flow_0ok0leq Flow_14snpj2 Flow_0qz0c7u Flow_1ifs52w @@ -352,7 +362,7 @@ execution.setVariable('srcrStatus', "Resubmitted");
- + @@ -407,7 +417,7 @@ execution.setVariable('srcrStatus', "Resubmitted"); ${siteRiskClassification != 'notHighRisk'} - + @@ -485,7 +495,7 @@ execution.setVariable('requestType', 'SRCR'); ${siteRiskClassification != 'notHighRisk' } - + @@ -511,18 +521,82 @@ execution.setVariable('requestType', 'SRCR'); ${siteRiskClassification == 'notHighRisk' } + + + + + nir_updated + + + Flow_1s0g73f + Flow_1ul7bba + Flow_1bt2bp2 + Flow_0usnr75 + + + + Flow_0h34vew + Flow_0ok0leq + Flow_1s0g73f + + + + Flow_0usnr75 + + + + + Flow_1ccbyzk + Flow_1k1fe9x + Flow_1ul7bba + + + + + Flow_0mtd57d + Flow_031wsso + Flow_1bt2bp2 + + - + + ${action == 'Rejected' } + + + - - - - ["applicationId", "applicationStatus"] - + + +execution.setVariable('formUrl', execution.getVariable('srcrFormUrl')); + + + + if (action == 'Approved') +{ +execution.setVariable("applicationStatus", "Approved"); +} +else{ +execution.setVariable("applicationStatus", "Rejected"); +} + + + + execution.setVariable('bundleUrl', execution.getVariable('formUrl')); + + + ${riskclassification != 'exempt'} + + + ${action == 'Accepted' || action == 'Approved' } + + + ${action == 'Returned'} + + @@ -540,447 +614,552 @@ execution.setVariable('nirStatus', "Resubmitted"); - - - ${action == 'Returned'} + + + + + + ["applicationId", "applicationStatus"] + + + + - - ${action == 'Accepted' || action == 'Approved' } + + + + + + + + Flow_1a96k7r + Flow_00mjhxs + + + Flow_00mjhxs + Flow_04l5mhw + + + Flow_04l5mhw + Flow_00msr8t + + + Flow_00msr8t + Flow_115hro3 + Flow_1tvwlrp + + + + + + + + Flow_1tvwlrp + Flow_1g1b94u + Flow_0bwxoom + + + + + + nir_updated + + + Flow_0bwxoom + Flow_1rvfhly + Flow_0x0w3ip + + + Flow_0x0w3ip + ${riskclassification == 'exempt'} - - - - execution.setVariable('bundleUrl', execution.getVariable('formUrl')); - - - ${riskclassification != 'exempt'} - - - - - -execution.setVariable('formUrl', execution.getVariable('srcrFormUrl')); - - - - if (action == 'Approved') -{ -execution.setVariable("applicationStatus", "Approved"); -} -else{ -execution.setVariable("applicationStatus", "Rejected"); -} - - - - - - - ${action == 'Rejected' } - + + Flow_1oam11w + Flow_1a96k7r + Flow_1rvfhly + + - + + + + + - + - + - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - + - + - + - + + + + + + + + + - + - + - + - + - + - + - + - + - + - - - - - - + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + - - - - - - - - + + + + - + - - - - - + + + + - + - - - + + + - - - + + + - - - - - + + + + + - + - - - + + + + + + + + - + - - - - - + + + - + - - - - + + + + + - + - - - - + + + - + - - - - - + + + + - + - - - - - - - - - - + + - + - - - - + + + + + + + + + + + + + - + - - - + + + + - + - - - - - + + + + - + - - - + + + + + - + - - - - + + + - + - - - - - - - - - + + + + + - + - - - + + + - - - + + + - - - + + + + - + - - + + - + - - - - - - - + + + - - - + + + + - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - - - - + + + - + - - - - - + + + + + + + + + + + + - + - - - - - - - - - - - - - - - - - - - - + + + + + + + - + - - - - + + + - + - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + - + - + + + + + + + + + + + + + diff --git a/forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/processes/Common/email-template.dmn b/forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/processes/Common/email-template.dmn index b0797001..743985de 100644 --- a/forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/processes/Common/email-template.dmn +++ b/forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/processes/Common/email-template.dmn @@ -138,7 +138,7 @@ "Notification of Independent Remediation Application Status Updated" - "templates/nir_application.ftl" + "templates/nom_application.ftl" "epd-support@gov.bc.ca" From b68bff3a2d625a3d9739279f563118b2b0c66551 Mon Sep 17 00:00:00 2001 From: Adam Coard Date: Tue, 17 Oct 2023 09:10:41 -0700 Subject: [PATCH 168/194] Create clickable Associated Sites section, textarea in site disclosure --- .../features/site-details/SiteGridItem.tsx | 5 +++-- .../features/site-details/TableEditItem.tsx | 19 ++++++++++++++++++- .../site-details/associated-sites.tsx | 3 ++- .../features/site-details/site-profile.tsx | 6 +++--- .../site-details/table/SiteDetailsTable.tsx | 16 ++++++++++++++-- 5 files changed, 40 insertions(+), 9 deletions(-) diff --git a/frontend/site-search-frontend/src/features/site-details/SiteGridItem.tsx b/frontend/site-search-frontend/src/features/site-details/SiteGridItem.tsx index 3d73c280..b7a28a12 100644 --- a/frontend/site-search-frontend/src/features/site-details/SiteGridItem.tsx +++ b/frontend/site-search-frontend/src/features/site-details/SiteGridItem.tsx @@ -11,9 +11,10 @@ interface SiteGridItemProps { extraClasses?: CSSModuleClasses | string; showSR?: boolean; readOnly?: boolean; + as?: 'input' | 'textarea'; } -export default function SiteGridItem( {label, value, extraClasses = '', showSR = false, readOnly}: SiteGridItemProps) { +export default function SiteGridItem( {label, value, extraClasses = '', showSR = false, readOnly, as='input'}: SiteGridItemProps) { const editMode = useSelector((state: RootState) => state.edit.editMode) return ( @@ -24,7 +25,7 @@ export default function SiteGridItem( {label, value, extraClasses = '', showSR = SR }
- +
) } diff --git a/frontend/site-search-frontend/src/features/site-details/TableEditItem.tsx b/frontend/site-search-frontend/src/features/site-details/TableEditItem.tsx index c0017c69..21431161 100644 --- a/frontend/site-search-frontend/src/features/site-details/TableEditItem.tsx +++ b/frontend/site-search-frontend/src/features/site-details/TableEditItem.tsx @@ -2,12 +2,29 @@ import Form from 'react-bootstrap/Form'; import styles from '@/pages/site-details.module.css'; import { useSelector } from "react-redux"; import { RootState } from "@/store"; +import { Link } from 'react-router-dom'; export function TableEditItem({ value }) { const editMode = useSelector((state: RootState) => state.edit.editMode); return ( - + ); } + +export function LinkableFormControl({ value }) { + return ( + <> + {value} + + ) +} + +export function TextAreaItem({value}) { + const editMode = useSelector((state: RootState) => state.edit.editMode); + + return ( + + ); +} \ No newline at end of file diff --git a/frontend/site-search-frontend/src/features/site-details/associated-sites.tsx b/frontend/site-search-frontend/src/features/site-details/associated-sites.tsx index 54172151..21d64471 100644 --- a/frontend/site-search-frontend/src/features/site-details/associated-sites.tsx +++ b/frontend/site-search-frontend/src/features/site-details/associated-sites.tsx @@ -6,6 +6,7 @@ import SubSearch from "./sub-search/SubSearch"; import SiteDetailsTable from "./table/SiteDetailsTable"; import { updateSite } from "../simple-search/simple-search"; import { faker } from "@faker-js/faker"; +import { LinkableFormControl } from "./TableEditItem"; export default function AssociatedSites() { const { siteID } = useParams(); @@ -52,7 +53,7 @@ export default function AssociatedSites() { IV Additional Comments and Explanations

- - - + + +
diff --git a/frontend/site-search-frontend/src/features/site-details/table/SiteDetailsTable.tsx b/frontend/site-search-frontend/src/features/site-details/table/SiteDetailsTable.tsx index 5f8c29c2..ebee5072 100644 --- a/frontend/site-search-frontend/src/features/site-details/table/SiteDetailsTable.tsx +++ b/frontend/site-search-frontend/src/features/site-details/table/SiteDetailsTable.tsx @@ -10,7 +10,7 @@ interface SiteDetailsTableProps { onClickAdd?; onClickRemove?; label: string; - headers: { label: string, accessor: string }[] + headers: { label: string, accessor: string, renderer?: React.FC<{value: any}> }[] // rows: any[]; data: { roles?: string[], @@ -134,10 +134,22 @@ export default function SiteDetailsTable({ onClickAdd, headers, data, label, onC {data?.map((row, index) => { return ( + {/* Checkbox col */} {editMode && handleCheck({ index, event })} /> } - {headers?.map((header, index) => )} + + {/* Dynamic row content */} + {headers?.map((header, index) => + {/* If there is a custom `renderer`, use that, otherwise default to TableEditItem */} + { header.renderer ? + + : + } + {/* */} + )} + + {/* SR Col */} {editMode && } ) From d70fc96b81e2885ea5b11cf3eb1f7e7afe46e4a9 Mon Sep 17 00:00:00 2001 From: Adam Coard Date: Tue, 17 Oct 2023 09:26:50 -0700 Subject: [PATCH 169/194] Ministry mode formatting on site details --- frontend/site-search-frontend/src/components/Header.tsx | 9 +++++---- frontend/site-search-frontend/src/pages/site-details.tsx | 7 +++++++ 2 files changed, 12 insertions(+), 4 deletions(-) diff --git a/frontend/site-search-frontend/src/components/Header.tsx b/frontend/site-search-frontend/src/components/Header.tsx index 45ff69b0..15be02ec 100644 --- a/frontend/site-search-frontend/src/components/Header.tsx +++ b/frontend/site-search-frontend/src/components/Header.tsx @@ -27,7 +27,7 @@ export default function Header() { BCGov Logo -
From 91522b3fd6deee410c3293fceecf994677bbbf1f Mon Sep 17 00:00:00 2001 From: Adam Coard Date: Tue, 17 Oct 2023 10:22:07 -0700 Subject: [PATCH 170/194] Scroll to notation page, disable scroll on map summary --- .../src/features/site-details/notations.tsx | 12 +++++++++++- .../src/features/site-details/summary.tsx | 4 ++-- 2 files changed, 13 insertions(+), 3 deletions(-) diff --git a/frontend/site-search-frontend/src/features/site-details/notations.tsx b/frontend/site-search-frontend/src/features/site-details/notations.tsx index 0e4e6fa3..34ed79a6 100644 --- a/frontend/site-search-frontend/src/features/site-details/notations.tsx +++ b/frontend/site-search-frontend/src/features/site-details/notations.tsx @@ -42,6 +42,16 @@ export default function Notations() { const newSite: Site = {...site, notations: [...site.notations, newNotation]} // const newSite: Site = {...site, notations: [newNotation, ...site.notations]} + // Potentially should put this in a useEffect()? + // Goal is to scroll into new element only after it has been rendered. + setTimeout(() => { + console.log({ site, target: 'notation-' + site.notations.length}) + const el = document.getElementById('notation-' + site.notations.length) + if (el) { + el.scrollIntoView({behavior: 'smooth'}) + } + }, 150) + dispatch(updateSite(newSite)); } @@ -119,7 +129,7 @@ function NotationItem({ notation, index, onClickAddParticipant, onClickRemovePar const editMode = useSelector((state: RootState) => state.edit.editMode); return ( -
+

Notation {index + 1}

diff --git a/frontend/site-search-frontend/src/features/site-details/summary.tsx b/frontend/site-search-frontend/src/features/site-details/summary.tsx index 220a1d83..3acae2cb 100644 --- a/frontend/site-search-frontend/src/features/site-details/summary.tsx +++ b/frontend/site-search-frontend/src/features/site-details/summary.tsx @@ -16,7 +16,7 @@ export default function Summary() {
- + Notations: {site.notations.length}

Participants: {site.participants.length}

Associated Sites: {site.associatedSites.length}

-

Documents: todo

+

Documents: {site.documents.length}

Suspect Land Use: {site.suspectLandUses.length}

Parcel Description: {site.parcelDescriptions.length}

From 6dde68619cc7fd8699f2b3d3b1de27eac244745d Mon Sep 17 00:00:00 2001 From: Adam Coard Date: Tue, 17 Oct 2023 10:22:15 -0700 Subject: [PATCH 171/194] Fix typing of user slice --- .../features/simple-search/simple-search.ts | 61 +------------------ 1 file changed, 1 insertion(+), 60 deletions(-) diff --git a/frontend/site-search-frontend/src/features/simple-search/simple-search.ts b/frontend/site-search-frontend/src/features/simple-search/simple-search.ts index 0752606e..19dc49de 100644 --- a/frontend/site-search-frontend/src/features/simple-search/simple-search.ts +++ b/frontend/site-search-frontend/src/features/simple-search/simple-search.ts @@ -6,57 +6,11 @@ import { current } from '@reduxjs/toolkit' import formatDateToString from '@/helpers/formatDateToString'; - -// Instantiate dummy data, e.g. turn strings into Date objects -// Use `as any` to get around fact that 'lastUpdated' is a string, not a date. -// Definitely causes redux issues though - https://redux.js.org/faq/organizing-state#can-i-put-functions-promises-or-other-non-serializable-items-in-my-store-state -// Should potentially only initialize date object in the view, not the store? -// const parsedDummyData: Site[] = siteDummyData.map(siteData => new Site((siteData as any))) - -// const addNotationBySiteIDNewTemp = (state, action) => { -// const site: Site = state.value.find((todo) => todo.siteID === action.payload) -// // site.notations.push(); -// // site.notations = []; -// site.notations = [...site.notations, { -// completed: new Date(), -// createdAt: new Date(), -// initiated: new Date(), -// ministryContact: '', -// notationClass: 'ENVIRONMENTAL MANAGEMENT ACT: GENERAL', -// notationParticipants: [], -// notationType: 'CERTIFICATE OF COMPLIANCE ISSUED USING RISK BASED STANDARDS', -// note: '', -// requestedActions: [] -// }] -// } - -// const addNotationBySiteIDNewTemp = (state, action) => { -// const site: Site = state.value.find((todo) => todo.siteID === action.payload) -// // site.notations.push(); -// // site.notations = []; -// site.notations = [...site.notations, { -// completed: formatDateToString(new Date()), -// createdAt: formatDateToString(new Date()), -// initiated: formatDateToString(new Date()), -// ministryContact: '', -// notationClass: 'ENVIRONMENTAL MANAGEMENT ACT: GENERAL', -// notationParticipants: [], -// notationType: 'CERTIFICATE OF COMPLIANCE ISSUED USING RISK BASED STANDARDS', -// note: '', -// requestedActions: [], -// siteRegistry: false, -// }] - -// // return state; // ???? can i do a ...spread patch in here? -// } - - export const siteSlice = createSlice({ name: 'site', initialState: { // value: Array.from({length: 250}, _ => createRandomSite()) - // value: parsedDummyData - value: siteDummyData + value: siteDummyData as Site[] }, reducers: { add: () => console.log('site reducer add todo'), // Maybe not even necessary? SITE list won't mutate much, unlike site selection @@ -75,19 +29,6 @@ export const siteSlice = createSlice({ site.notations = site.notations.filter((notation) => notation.uuid !== action.payload.notationUUID); } }, - - // deleteNotation: (state, action: PayloadAction<{ siteUUID: string, notationUUID: string }>) => { - // const { siteUUID, notationUUID } = action.payload; - - // // Find the site by UUID - // const site = state.site.find(site => site.uuid === siteUUID); - - // if (site) { - // // Filter out the notation by UUID from the site's notations - // site.notations = site.notations.filter(notation => notation.uuid !== notationUUID); - // } - // }, - } }) From dc625f831aa57b21d89ab52e227e17d01f0b24c5 Mon Sep 17 00:00:00 2001 From: midhun-aot Date: Tue, 17 Oct 2023 10:37:37 -0700 Subject: [PATCH 172/194] updated SRCR Bundle Status variable in workflow --- .../subProcess/NIRBundleWorkflow.bpmn | 408 +++++++++--------- 1 file changed, 214 insertions(+), 194 deletions(-) diff --git a/forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/processes/Bundling/subProcess/NIRBundleWorkflow.bpmn b/forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/processes/Bundling/subProcess/NIRBundleWorkflow.bpmn index 834bbda3..15aa6b9f 100644 --- a/forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/processes/Bundling/subProcess/NIRBundleWorkflow.bpmn +++ b/forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/processes/Bundling/subProcess/NIRBundleWorkflow.bpmn @@ -112,7 +112,7 @@ task.execution.setVariable('userRole','Site Information Advisor'); - task.execution.setVariable('applicationStatus', task.execution.getVariable('action')); + task.execution.setVariable('applicationStatus', task.execution.getVariable('action')); task.execution.setVariable('deleteReason', "completed"); @@ -128,21 +128,21 @@ task.execution.setVariable('deleteReason', "completed"); Flow_09ugz49 Flow_176uggp - var system = java.lang.System; -var selectSdm= execution.getVariable('selectSdm'); -system.out.println ("selectSdm"+selectSdm); -execution.setVariable('sdmAssignment',selectSdm); -system.out.println ("sdmAssignment"+execution.getVariable('sdmAssignment')); - -var selectCaseworker= execution.getVariable('selectCaseworker'); -system.out.println ("selectCaseworker"+selectCaseworker); -execution.setVariable('caseworkerAssignment',selectCaseworker); -system.out.println ("caseworkerAssignment"+execution.getVariable('caseworkerAssignment')); - -var selectSrco= execution.getVariable('selectSrco'); -system.out.println ("selectSrco"+selectSrco); -execution.setVariable('srcoAssignment',selectSrco); -system.out.println ("srcoAssignment"+execution.getVariable('srcoAssignment')); + var system = java.lang.System; +var selectSdm= execution.getVariable('selectSdm'); +system.out.println ("selectSdm"+selectSdm); +execution.setVariable('sdmAssignment',selectSdm); +system.out.println ("sdmAssignment"+execution.getVariable('sdmAssignment')); + +var selectCaseworker= execution.getVariable('selectCaseworker'); +system.out.println ("selectCaseworker"+selectCaseworker); +execution.setVariable('caseworkerAssignment',selectCaseworker); +system.out.println ("caseworkerAssignment"+execution.getVariable('caseworkerAssignment')); + +var selectSrco= execution.getVariable('selectSrco'); +system.out.println ("selectSrco"+selectSrco); +execution.setVariable('srcoAssignment',selectSrco); +system.out.println ("srcoAssignment"+execution.getVariable('srcoAssignment')); @@ -153,7 +153,7 @@ system.out.println ("srcoAssignment"+execution.getVariable('srcoAssignment')); Flow_0q159o1 Flow_1q2jho1 Flow_0cdvwnp - var system = java.lang.System; + var system = java.lang.System; system.out.println ("Sent to Caseworker"); @@ -167,7 +167,7 @@ system.out.println ("Sent to Caseworker"); - task.execution.setVariable('task_id',task.getId()); + task.execution.setVariable('task_id',task.getId()); task.execution.setVariableLocal('variable1',"srcr"); @@ -197,7 +197,7 @@ task.execution.setVariable('userRole','Case Worker'); Flow_0izugkb Flow_1pdey0j Flow_0qaeplv - var system = java.lang.System; + var system = java.lang.System; system.out.println ("Sent to SDM"); @@ -294,7 +294,7 @@ system.out.println ("Begin SRCR Flow - Sent To SRCO"); - task.execution.setVariable('task_id',task.getId()); + task.execution.setVariable('task_id',task.getId()); task.execution.setVariableLocal('variable1',"srcr"); @@ -348,8 +348,8 @@ task.execution.setVariable('userRole','Site Risk Classification Officer'); - execution.setVariable('applicationStatus', "Resubmitted"); -execution.setVariable('requestStatus', "Resubmitted"); + execution.setVariable('applicationStatus', "Resubmitted"); +execution.setVariable('requestStatus', "Resubmitted"); execution.setVariable('srcrStatus', "Resubmitted"); @@ -385,6 +385,16 @@ execution.setVariable('srcrStatus', "Resubmitted"); ${action == 'Rejected'} + + + execution.setVariable('srcrBundleStatus', "srcrCaseworkerAccepted"); + + + + ["applicationId", "applicationStatus", "srcrBundleStatus"] + + + ${action == 'Accepted'} @@ -399,8 +409,8 @@ execution.setVariable('srcrStatus', "Resubmitted"); - execution.setVariable('applicationStatus', "Resubmitted"); -execution.setVariable('requestStatus', "Resubmitted"); + execution.setVariable('applicationStatus', "Resubmitted"); +execution.setVariable('requestStatus', "Resubmitted"); execution.setVariable('srcrStatus', "Resubmitted"); @@ -465,8 +475,8 @@ execution.setVariable('srcrStatus', "Resubmitted"); - execution.setVariable('applicationStatus', "Resubmitted"); -execution.setVariable('requestStatus', "Resubmitted"); + execution.setVariable('applicationStatus', "Resubmitted"); +execution.setVariable('requestStatus', "Resubmitted"); execution.setVariable('srcrStatus', "Resubmitted"); @@ -481,7 +491,7 @@ execution.setVariable('srcrStatus', "Resubmitted"); - execution.setVariable('requestStatus', 'New'); + execution.setVariable('requestStatus', 'New'); execution.setVariable('requestType', 'SRCR'); @@ -510,6 +520,16 @@ execution.setVariable('requestType', 'SRCR'); + + + execution.setVariable('srcrBundleStatus', "srcrSrcoAccepted"); + + + + ["applicationId", "applicationStatus", "srcrBundleStatus"] + + + ${action == 'Accepted'} @@ -696,55 +716,75 @@ execution.setVariable('nirStatus', "Resubmitted"); - - - - - - + + - - + + - - - - - - - + + + + + + + + - - - + + + - - - + + + - - - + + + - + - - - + + + - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + - + @@ -754,60 +794,40 @@ execution.setVariable('nirStatus', "Resubmitted"); - - - + + + + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + - - - + + + - + - - - + + + - - - + + + - - - - + + + + + + + @@ -841,44 +861,41 @@ execution.setVariable('nirStatus', "Resubmitted"); - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -887,6 +904,13 @@ execution.setVariable('nirStatus', "Resubmitted"); + + + + + + + @@ -1035,44 +1059,6 @@ execution.setVariable('nirStatus', "Resubmitted"); - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - @@ -1080,6 +1066,12 @@ execution.setVariable('nirStatus', "Resubmitted"); + + + + + + @@ -1117,12 +1109,6 @@ execution.setVariable('nirStatus', "Resubmitted"); - - - - - - @@ -1133,33 +1119,67 @@ execution.setVariable('nirStatus', "Resubmitted"); - - + + + + + + + + + + + + + + - - - - - - - - + + + + + + + + + + + + + + - + + + + + + + + + + + + + + + + + From 5aae3b5e8a2c8ce543da294161937069e9c63c16 Mon Sep 17 00:00:00 2001 From: Adam Coard Date: Tue, 17 Oct 2023 10:44:36 -0700 Subject: [PATCH 173/194] Create SiteGridParent for re-usable children components for datepicker --- .../features/site-details/SiteGridItem.tsx | 23 ++++++++++++++++++- .../src/features/site-details/notations.tsx | 4 ++-- 2 files changed, 24 insertions(+), 3 deletions(-) diff --git a/frontend/site-search-frontend/src/features/site-details/SiteGridItem.tsx b/frontend/site-search-frontend/src/features/site-details/SiteGridItem.tsx index b7a28a12..fa60edd6 100644 --- a/frontend/site-search-frontend/src/features/site-details/SiteGridItem.tsx +++ b/frontend/site-search-frontend/src/features/site-details/SiteGridItem.tsx @@ -14,9 +14,26 @@ interface SiteGridItemProps { as?: 'input' | 'textarea'; } +interface SiteGridParentProps { + label: string; + children: any; + extraClasses?: CSSModuleClasses | string; + showSR?: boolean; +} + export default function SiteGridItem( {label, value, extraClasses = '', showSR = false, readOnly, as='input'}: SiteGridItemProps) { const editMode = useSelector((state: RootState) => state.edit.editMode) + return ( + + + + ) +} + +export function SiteGridParent( {label, extraClasses = '', showSR = false,children}: SiteGridParentProps ) { + const editMode = useSelector((state: RootState) => state.edit.editMode) + return (
@@ -25,8 +42,12 @@ export default function SiteGridItem( {label, value, extraClasses = '', showSR = SR }
- + {children}
) + } +// SiteGridParent() - class that just shows header and SR logic, not just does {children} for the actual Form.Control +// SiteGridDateItem() - replaces with and styles appropriately, uses SiteGridParent + diff --git a/frontend/site-search-frontend/src/features/site-details/notations.tsx b/frontend/site-search-frontend/src/features/site-details/notations.tsx index 34ed79a6..d994111b 100644 --- a/frontend/site-search-frontend/src/features/site-details/notations.tsx +++ b/frontend/site-search-frontend/src/features/site-details/notations.tsx @@ -45,7 +45,6 @@ export default function Notations() { // Potentially should put this in a useEffect()? // Goal is to scroll into new element only after it has been rendered. setTimeout(() => { - console.log({ site, target: 'notation-' + site.notations.length}) const el = document.getElementById('notation-' + site.notations.length) if (el) { el.scrollIntoView({behavior: 'smooth'}) @@ -144,7 +143,8 @@ function NotationItem({ notation, index, onClickAddParticipant, onClickRemovePar - + + {/* */} From d17ef452b00fc9d14ed040228cd7f45c2146dc2b Mon Sep 17 00:00:00 2001 From: Adam Coard Date: Tue, 17 Oct 2023 10:51:47 -0700 Subject: [PATCH 174/194] Create and use datepicker on Notation page --- .../src/features/site-details/SiteGridItem.tsx | 11 +++++++++-- .../src/features/site-details/notations.tsx | 7 +++---- 2 files changed, 12 insertions(+), 6 deletions(-) diff --git a/frontend/site-search-frontend/src/features/site-details/SiteGridItem.tsx b/frontend/site-search-frontend/src/features/site-details/SiteGridItem.tsx index fa60edd6..51eab5f0 100644 --- a/frontend/site-search-frontend/src/features/site-details/SiteGridItem.tsx +++ b/frontend/site-search-frontend/src/features/site-details/SiteGridItem.tsx @@ -48,6 +48,13 @@ export function SiteGridParent( {label, extraClasses = '', showSR = false,childr } -// SiteGridParent() - class that just shows header and SR logic, not just does {children} for the actual Form.Control -// SiteGridDateItem() - replaces with and styles appropriately, uses SiteGridParent +export function SiteGridDateItem( {label, value, extraClasses = '', showSR = false, readOnly, as='input'}: SiteGridItemProps) { + const editMode = useSelector((state: RootState) => state.edit.editMode) + return ( + + + + ) + +} diff --git a/frontend/site-search-frontend/src/features/site-details/notations.tsx b/frontend/site-search-frontend/src/features/site-details/notations.tsx index d994111b..729af45b 100644 --- a/frontend/site-search-frontend/src/features/site-details/notations.tsx +++ b/frontend/site-search-frontend/src/features/site-details/notations.tsx @@ -1,7 +1,7 @@ import { Button, Dropdown, DropdownButton, Form, Table } from 'react-bootstrap' import styles from './css/siteDetails.module.css' import siteDetailsStyles from '@/pages/site-details.module.css' -import SiteGridItem from './SiteGridItem' +import SiteGridItem, { SiteGridDateItem } from './SiteGridItem' import { TableEditItem } from "./TableEditItem"; import { useParams } from 'react-router-dom'; import { useDispatch, useSelector } from 'react-redux'; @@ -143,9 +143,8 @@ function NotationItem({ notation, index, onClickAddParticipant, onClickRemovePar - - {/* */} - + + From 84efec8221d078ecac04dd37dc722183e66cabe1 Mon Sep 17 00:00:00 2001 From: Adam Coard Date: Tue, 17 Oct 2023 11:15:04 -0700 Subject: [PATCH 175/194] CSS styling --- .../src/pages/site-details.module.css | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/frontend/site-search-frontend/src/pages/site-details.module.css b/frontend/site-search-frontend/src/pages/site-details.module.css index 37c6c905..20f635ce 100644 --- a/frontend/site-search-frontend/src/pages/site-details.module.css +++ b/frontend/site-search-frontend/src/pages/site-details.module.css @@ -11,12 +11,23 @@ display: grid; /* grid-template-columns: repeat(auto-fill, minmax(400px, 1fr)); */ /* grid-template-columns: repeat(12, minmax(400px, 1fr)); */ - grid-template-columns: repeat(auto-fill, minmax(175px, 1fr)); + /* grid-template-columns: repeat(auto-fill, minmax(175px, 1fr)); */ + /* grid-template-columns: 16.6% 16.6% 16.6% 16.6% 16.6% 16.6%; */ + /* grid-template-columns: 16%; */ grid-gap: 20px; align-items: start; } +@media (min-width: 992px){ + .metadataGridFifths { + /* background-color: orange; */ + grid-template-columns: 18% 18% 18% 18% 18%; + } + +} + + .metadataGridItem { border: 1px solid black; border-radius: 3px; From 640513d4e10eef379a8d7c48932b493ab0b05e01 Mon Sep 17 00:00:00 2001 From: Adam Coard Date: Tue, 17 Oct 2023 11:15:32 -0700 Subject: [PATCH 176/194] DateControl into tables --- .../src/features/site-details/TableEditItem.tsx | 9 +++++++++ .../features/site-details/associated-sites.tsx | 7 ++----- .../src/features/site-details/documents.tsx | 6 +++--- .../features/site-details/parcel-description.tsx | 3 ++- .../src/features/site-details/participants.tsx | 5 +++-- .../src/features/site-details/site-profile.tsx | 15 +++++++-------- 6 files changed, 26 insertions(+), 19 deletions(-) diff --git a/frontend/site-search-frontend/src/features/site-details/TableEditItem.tsx b/frontend/site-search-frontend/src/features/site-details/TableEditItem.tsx index 21431161..25804988 100644 --- a/frontend/site-search-frontend/src/features/site-details/TableEditItem.tsx +++ b/frontend/site-search-frontend/src/features/site-details/TableEditItem.tsx @@ -27,4 +27,13 @@ export function TextAreaItem({value}) { return ( ); +} + +export function DateItem({value}) { + const editMode = useSelector((state: RootState) => state.edit.editMode); + + return ( + + ) + } \ No newline at end of file diff --git a/frontend/site-search-frontend/src/features/site-details/associated-sites.tsx b/frontend/site-search-frontend/src/features/site-details/associated-sites.tsx index 21d64471..83337923 100644 --- a/frontend/site-search-frontend/src/features/site-details/associated-sites.tsx +++ b/frontend/site-search-frontend/src/features/site-details/associated-sites.tsx @@ -6,7 +6,7 @@ import SubSearch from "./sub-search/SubSearch"; import SiteDetailsTable from "./table/SiteDetailsTable"; import { updateSite } from "../simple-search/simple-search"; import { faker } from "@faker-js/faker"; -import { LinkableFormControl } from "./TableEditItem"; +import { DateItem, LinkableFormControl } from "./TableEditItem"; export default function AssociatedSites() { const { siteID } = useParams(); @@ -47,15 +47,12 @@ export default function AssociatedSites() {
- {/* IDEA: Put in 'renderer' or 'component' option for each header? Should set component to use for that row - This will let us patch in custom link component? Same with Date components. */} -
- - + +
diff --git a/frontend/site-search-frontend/src/features/site-details/parcel-description.tsx b/frontend/site-search-frontend/src/features/site-details/parcel-description.tsx index 5ebe51c5..359b7647 100644 --- a/frontend/site-search-frontend/src/features/site-details/parcel-description.tsx +++ b/frontend/site-search-frontend/src/features/site-details/parcel-description.tsx @@ -6,6 +6,7 @@ import SubSearch from "./sub-search/SubSearch"; import SiteDetailsTable from "./table/SiteDetailsTable"; import { faker } from "@faker-js/faker"; import { updateSite } from "../simple-search/simple-search"; +import { DateItem } from "./TableEditItem"; export default function ParcelDescriptionSubPage() { const { siteID } = useParams(); @@ -46,7 +47,7 @@ export default function ParcelDescriptionSubPage() { DELETE
}
- -
- - - - - +
+ + + + +
Date: Tue, 17 Oct 2023 11:15:39 -0700 Subject: [PATCH 177/194] Subsearch responsive improvements --- .../src/features/site-details/sub-search/SubSearch.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/site-search-frontend/src/features/site-details/sub-search/SubSearch.tsx b/frontend/site-search-frontend/src/features/site-details/sub-search/SubSearch.tsx index 37fcd822..b9a5dd00 100644 --- a/frontend/site-search-frontend/src/features/site-details/sub-search/SubSearch.tsx +++ b/frontend/site-search-frontend/src/features/site-details/sub-search/SubSearch.tsx @@ -14,7 +14,7 @@ export default function SubSearch({ label, showResultsDropdown = false }: SubSea
-
+
Date ??? From 1ff9d586f33532c53ac9e3880092e859c90b962e Mon Sep 17 00:00:00 2001 From: Adam Coard Date: Tue, 17 Oct 2023 11:16:42 -0700 Subject: [PATCH 178/194] Fix build issue due to unused var --- .../src/features/site-details/SiteGridItem.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/site-search-frontend/src/features/site-details/SiteGridItem.tsx b/frontend/site-search-frontend/src/features/site-details/SiteGridItem.tsx index 51eab5f0..d7e3e412 100644 --- a/frontend/site-search-frontend/src/features/site-details/SiteGridItem.tsx +++ b/frontend/site-search-frontend/src/features/site-details/SiteGridItem.tsx @@ -48,7 +48,7 @@ export function SiteGridParent( {label, extraClasses = '', showSR = false,childr } -export function SiteGridDateItem( {label, value, extraClasses = '', showSR = false, readOnly, as='input'}: SiteGridItemProps) { +export function SiteGridDateItem( {label, value, extraClasses = '', showSR = false, readOnly}: SiteGridItemProps) { const editMode = useSelector((state: RootState) => state.edit.editMode) return ( From 6434d774e2415d378dd21191f1b4913ec912db85 Mon Sep 17 00:00:00 2001 From: Adam Coard Date: Tue, 17 Oct 2023 11:35:20 -0700 Subject: [PATCH 179/194] Remove log --- frontend/site-search-frontend/src/components/Header.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/frontend/site-search-frontend/src/components/Header.tsx b/frontend/site-search-frontend/src/components/Header.tsx index 15be02ec..6c82f9ab 100644 --- a/frontend/site-search-frontend/src/components/Header.tsx +++ b/frontend/site-search-frontend/src/components/Header.tsx @@ -6,6 +6,7 @@ import Form from 'react-bootstrap/Form'; import { setMinistryState } from '@/features/user/userSlice'; import { RootState } from '@/store'; import { useDispatch, useSelector } from 'react-redux'; +import { changeEditMode } from '@/features/site-details/edit-mode/editModeSlice'; @@ -15,7 +16,7 @@ export default function Header() { function minstryToggleChange(e) { - console.log('ministryToggleChange', { isMinistry, e }); + dispatch(changeEditMode(false)); dispatch(setMinistryState(!isMinistry)); } From 2202c641e5a136a580381993c6d08a8b4d831f35 Mon Sep 17 00:00:00 2001 From: midhun-aot Date: Tue, 17 Oct 2023 12:29:15 -0700 Subject: [PATCH 180/194] fixed SRS-128 and added SRCR Bundle status varible in workflow --- ...ication of Likely or Actual Migration.json | 116 ++++++++---------- .../subProcess/NOMBundleWorkflow.bpmn | 44 +++++-- 2 files changed, 88 insertions(+), 72 deletions(-) diff --git a/forms-flow-ai/epd-forms/bundling/Notification of Likely or Actual Migration.json b/forms-flow-ai/epd-forms/bundling/Notification of Likely or Actual Migration.json index 7c808bda..e71f20bb 100644 --- a/forms-flow-ai/epd-forms/bundling/Notification of Likely or Actual Migration.json +++ b/forms-flow-ai/epd-forms/bundling/Notification of Likely or Actual Migration.json @@ -458,7 +458,7 @@ "templates": { "header": "{% console.log(\"row-key header\",'commentFor',row['commentFor']) %}\r\n{% const UserDetails = JSON.parse(localStorage.getItem(\"UserDetails\"))%}\r\n{% const groups = UserDetails[\"groups\"]; %}\r\n\r\n{% if(groups.includes(\"/formsflow/formsflow-client-reviewer\") || groups.includes(\"/formsflow/formsflow-client\") || groups.includes(\"/formsflow/formsflow-reviewer/csap\") || groups.includes(\"/formsflow/formsflow-reviewer/csap-society\")){ %}\r\n\r\n
\r\n {% util.eachComponent(components, function(component) { %}\r\n {% if (displayValue(component) && component.key !== 'commentFor' ) { %}\r\n {% if(component.label === 'Notes') { %}\r\n
{{ t(component.label) }}
\r\n {% } else if(component.key !== 'comments') { %}\r\n
{{ t(component.label) }}
\r\n {% } %}\r\n {% } %}\r\n {% }) %}\r\n
\r\n\r\n{% } else { %}\r\n\r\n
\r\n {% util.eachComponent(components, function(component) { %}\r\n {% if (displayValue(component)) { %}\r\n {% if(component.key == 'comments') { %}\r\n
{{ t(component.label)}}
\r\n {% } else if(component.key == 'role' || component.key == 'createdBy') { %}\r\n
{{ t(component.label)}}
\r\n{% } else { %}\r\n
{{ t(component.label)}}
\r\n{% } %} \r\n {% } %}\r\n {% }) %}\r\n
\r\n\r\n{% } %}", "tableHeader": "\n \n {% util.eachComponent(components, function(component) { %}\n {% if (!component.hasOwnProperty('tableView') || component.tableView) { %}\n {{ component.label }}\n {% } %}\n {% }) %}\n {% if (!instance.options.readOnly && !instance.disabled) { %}\n Actions\n {% } %}\n \n ", - "row": "\r\n\r\n{% console.log(\"row-key main\",'commentFor',row['commentFor']) %}\r\n{% const UserDetails = JSON.parse(localStorage.getItem(\"UserDetails\"))%}\r\n{% const groups = UserDetails[\"groups\"]; %}\r\n{% console.log('rendering edit grid body')%}\r\n{% if((groups.includes(\"/formsflow/formsflow-reviewer/formsflow-client-reviewer\") || groups.includes(\"/formsflow/formsflow-client\") || groups.includes(\"/formsflow/formsflow-reviewer/csap\") || groups.includes(\"/formsflow/formsflow-reviewer/csap-society\")) && row['commentFor']==='external'){ %}\r\n\r\n\r\n\r\n
\r\n\r\n {% util.eachComponent(components, function(component) { %}\r\n {% if (displayValue(component) && component.key !== 'commentFor' ) { %}\r\n {% console.log(\"row-key\",component.key,row[component.key]) %}\r\n {% const UserDetails = JSON.parse(localStorage.getItem(\"UserDetails\"))%}\r\n{% const groups = UserDetails[\"groups\"]; %}\r\n{% if((groups.includes(\"/formsflow/formsflow-reviewer/formsflow-client-reviewer\") || groups.includes(\"/formsflow/formsflow-client\") || groups.includes(\"/formsflow/formsflow-reviewer/csap\") || groups.includes(\"/formsflow/formsflow-reviewer/csap-society\")) && row['commentFor']==='external'){ %}\r\n{% if(component.key == 'comments') { %}\r\n
\r\n {{ getView(component, row[component.key])}}\r\n
\r\n{% } else { %}\r\n
\r\n {{ getView(component, row[component.key])}}\r\n
\r\n{%}%}\r\n \r\n\r\n {% } %}\r\n {% } %}\r\n {% }) %}\r\n {% if (!instance.options.readOnly && !instance.disabled) { %}\r\n {% const UserDetails = JSON.parse(localStorage.getItem(\"UserDetails\"))%}\r\n{% const groups = UserDetails[\"groups\"]; %}\r\n{% if((groups.includes(\"/formsflow/formsflow-reviewer/formsflow-client-reviewer\") || groups.includes(\"/formsflow/formsflow-client\") || groups.includes(\"/formsflow/formsflow-reviewer/csap\") || groups.includes(\"/formsflow/formsflow-reviewer/csap-society\")) && row['commentFor']==='external'){ %}\r\n
\r\n
\r\n {% if (!instance.hasRemoveButtons || instance.hasRemoveButtons()) { %}\r\n \r\n {% } %}\r\n
\r\n
\r\n \r\n {% } %}\r\n {% } %}\r\n
\r\n {% } else if (groups.includes(\"/formsflow/formsflow-reviewer/site-information-advisor\") || groups.includes(\"/formsflow/formsflow-reviewer/cssa-team\") || groups.includes(\"/formsflow/formsflow-reviewer/caseworker\") || groups.includes(\"/formsflow/formsflow-reviewer/sdm\")) { %}\r\n
\r\n {% util.eachComponent(components, function(component) { %}\r\n {% console.log('for sia') %}\r\n {% if (displayValue(component)) { %}\r\n {% if(component.key == 'comments') { %}\r\n
{{ getView(component, row[component.key])}}
\r\n {% } else if(component.key == 'role' || component.key == 'createdBy') { %}\r\n
{{ getView(component, row[component.key])}}
\r\n{% } else { %}\r\n
{{ getView(component, row[component.key])}}
\r\n{% } %} \r\n \r\n {% } %}\r\n {% }) %}\r\n {% if (!instance.options.readOnly && !instance.disabled) { %}\r\n
\r\n
\r\n {% if (!instance.hasRemoveButtons || instance.hasRemoveButtons()) { %}\r\n \r\n {% } %}\r\n
\r\n
\r\n {% } %}\r\n
\r\n {% } %}\r\n \r\n \r\n \r\n{% const emptyElements = []; %}\r\n{% const elements = document.getElementsByClassName(\"list-group-item\"); %}\r\n{% for (let i = 0; i < elements.length; i++) { %}\r\n{% const element = elements[i]; %}\r\n{% if(element.querySelectorAll('div.row').length===0){(element).remove() }} %}", + "row": "\n\n{% console.log(\"row-key main\",'commentFor',row['commentFor']) %}\n{% const UserDetails = JSON.parse(localStorage.getItem(\"UserDetails\"))%}\n{% const groups = UserDetails[\"groups\"]; %}\n{% console.log('rendering edit grid body')%}\n{% if((groups.includes(\"/formsflow/formsflow-reviewer/formsflow-client-reviewer\") || groups.includes(\"/formsflow/formsflow-client\") || groups.includes(\"/formsflow/formsflow-reviewer/csap\") || groups.includes(\"/formsflow/formsflow-reviewer/csap-society\")) && row['commentFor']==='external'){ %}\n\n\n\n
\n\n {% util.eachComponent(components, function(component) { %}\n {% if (displayValue(component) && component.key !== 'commentFor' ) { %}\n {% console.log(\"row-key\",component.key,row[component.key]) %}\n {% const UserDetails = JSON.parse(localStorage.getItem(\"UserDetails\"))%}\n{% const groups = UserDetails[\"groups\"]; %}\n{% if((groups.includes(\"/formsflow/formsflow-reviewer/formsflow-client-reviewer\") || groups.includes(\"/formsflow/formsflow-client\") || groups.includes(\"/formsflow/formsflow-reviewer/csap\") || groups.includes(\"/formsflow/formsflow-reviewer/csap-society\")) && row['commentFor']==='external'){ %}\n{% if(component.key == 'comments') { %}\n
\n {{ getView(component, row[component.key])}}\n
\n{% } else { %}\n
\n {{ getView(component, row[component.key])}}\n
\n{%}%}\n \n\n {% } %}\n {% } %}\n {% }) %}\n {% if (!instance.options.readOnly && !instance.disabled) { %}\n {% const UserDetails = JSON.parse(localStorage.getItem(\"UserDetails\"))%}\n{% const groups = UserDetails[\"groups\"]; %}\n{% if((groups.includes(\"/formsflow/formsflow-reviewer/formsflow-client-reviewer\") || groups.includes(\"/formsflow/formsflow-client\") || groups.includes(\"/formsflow/formsflow-reviewer/csap\") || groups.includes(\"/formsflow/formsflow-reviewer/csap-society\")) && row['commentFor']==='external'){ %}\n
\n
\n {% if (!instance.hasRemoveButtons || instance.hasRemoveButtons()) { %}\n \n {% } %}\n
\n
\n \n {% } %}\n {% } %}\n
\n {% } else if (groups.includes(\"/formsflow/formsflow-reviewer/cssa-manager\") || groups.includes(\"/formsflow/formsflow-reviewer/site-information-advisor\") || groups.includes(\"/formsflow/formsflow-reviewer/cssa-team\") || groups.includes(\"/formsflow/formsflow-reviewer/caseworker\") || groups.includes(\"/formsflow/formsflow-reviewer/sdm\")) { %}\n
\n {% util.eachComponent(components, function(component) { %}\n {% console.log('for sia') %}\n {% if (displayValue(component)) { %}\n {% if(component.key == 'comments') { %}\n
{{ getView(component, row[component.key])}}
\n {% } else if(component.key == 'role' || component.key == 'createdBy') { %}\n
{{ getView(component, row[component.key])}}
\n{% } else { %}\n
{{ getView(component, row[component.key])}}
\n{% } %} \n \n {% } %}\n {% }) %}\n {% if (!instance.options.readOnly && !instance.disabled) { %}\n
\n
\n {% if (!instance.hasRemoveButtons || instance.hasRemoveButtons()) { %}\n \n {% } %}\n
\n
\n {% } %}\n
\n {% } %}\n \n \n \n{% const emptyElements = []; %}\n{% const elements = document.getElementsByClassName(\"list-group-item\"); %}\n{% for (let i = 0; i < elements.length; i++) { %}\n{% const element = elements[i]; %}\n{% if(element.querySelectorAll('div.row').length===0){(element).remove() }} %}", "tableRow": "\n {% util.eachComponent(components, function(component) { %}\n {% if (!component.hasOwnProperty('tableView') || component.tableView) { %}\n \n {{ getView(component, row[component.key]) }}\n \n {% } %}\n {% }) %}\n {% if (!instance.options.readOnly && !instance.disabled) { %}\n \n
\n \n {% if (!instance.hasRemoveButtons || instance.hasRemoveButtons()) { %}\n \n {% } %}\n
\n \n {% } %}\n ", "footer": "{% const emptyElements = []; %}\r\n{% const elements = document.getElementsByClassName(\"list-group-item\"); %}\r\n{% for (let i = 0; i < elements.length; i++) { %}\r\n{% const element = elements[i]; %}\r\n{%if(element.querySelectorAll('div.row').length===0){(element).remove() }} %}\r\n" }, @@ -603,7 +603,7 @@ "wysiwyg": false, "editor": "", "fixedSize": true, - "id": "eu50ikk" + "id": "e063xj" } ], "width": 4, @@ -695,7 +695,7 @@ "addons": [], "inputType": "radio", "fieldSet": false, - "id": "e9jdvz" + "id": "eihmpi" } ], "width": 2, @@ -709,90 +709,80 @@ "components": [ { "label": "Role", - "labelPosition": "top", + "disabled": true, + "tableView": true, + "customDefaultValue": "var b =JSON.parse(localStorage.getItem('UserDetails'))\nif(b.groups.indexOf('/formsflow/formsflow-client') > -1 )\n{\n value = 'Client'\n}\nelse if(b.groups.indexOf('/formsflow/formsflow-reviewer/csap') > -1 )\n{\n value = 'Approved Professional'\n}\nelse if(b.groups.indexOf('/formsflow/formsflow-reviewer/csap-society') > -1 )\n{\n value = 'CSAP Society'\n}\nelse if(b.groups.indexOf('/formsflow/formsflow-reviewer/cssa-team') > -1 )\n{\n value = 'CSSA Team'\n}\nelse if(b.groups.indexOf('/formsflow/formsflow-reviewer/cssa-manager') > -1 )\n{\n value = 'CSSA Manager'\n}\nelse if(b.groups.indexOf('/formsflow/formsflow-reviewer/caseworker') > -1 )\n{\n value = 'Caseworker'\n}\nelse if(b.groups.indexOf('/formsflow/formsflow-reviewer/sdm') > -1 )\n{\n value = 'Statutory Decision Maker'\n}\nelse if(b.groups.indexOf('/formsflow/formsflow-reviewer/site-risk-classification-officer') > -1 )\n{\n value = 'Site Risk Classification Officer'\n}\nelse if(b.groups.indexOf('/formsflow/formsflow-reviewer/site-information-advisor') > -1 )\n{\n value = 'Site Information Advisor'\n}", + "key": "role", + "type": "textfield", + "input": true, "placeholder": "", - "description": "", - "tooltip": "", "prefix": "", - "suffix": "", - "widget": { - "type": "input" - }, - "inputMask": "", - "displayMask": "", - "allowMultipleMasks": false, "customClass": "", - "tabindex": "", - "autocomplete": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", "hideLabel": false, - "showWordCount": false, - "showCharCount": false, - "mask": false, + "tabindex": "", "autofocus": false, - "spellcheck": true, - "disabled": true, - "tableView": true, - "modalEdit": false, - "multiple": false, - "persistent": true, - "inputFormat": "plain", - "protected": false, "dbIndex": false, - "case": "", - "truncateMultipleSpaces": false, - "encrypted": false, - "redrawOn": "", - "clearOnHide": true, - "customDefaultValue": "var b =JSON.parse(localStorage.getItem('UserDetails'))\nif(b.groups.indexOf('/formsflow/formsflow-client') > -1 )\n{\n value = 'Client'\n}\nelse if(b.groups.indexOf('/formsflow/formsflow-reviewer/csap') > -1 )\n{\n value = 'Approved Professional'\n}\nelse if(b.groups.indexOf('/formsflow/formsflow-reviewer/csap-society') > -1 )\n{\n value = 'CSAP Society'\n}\nelse if(b.groups.indexOf('/formsflow/formsflow-reviewer/cssa-team') > -1 )\n{\n value = 'CSSA Team'\n}\nelse if(b.groups.indexOf('/formsflow/formsflow-reviewer/cssa-manager') > -1 )\n{\n value = 'CSSA Manager'\n}\nelse if(b.groups.indexOf('/formsflow/formsflow-reviewer/caseworker') > -1 )\n{\n value = 'Caseworker'\n}\nelse if(b.groups.indexOf('/formsflow/formsflow-reviewer/sdm') > -1 )\n{\n value = 'Statutory Decision Maker'\n}\nelse if(b.groups.indexOf('/formsflow/formsflow-reviewer/site-risk-classification-officer') > -1 )\n{\n value = 'Site Risk Classification Officer'\n}\nelse if(b.groups.indexOf('/formsflow/formsflow-reviewer/site-information-advisor') > -1 )\n{\n value = 'Site Information Advisor'\n}", "calculateValue": "", "calculateServer": false, - "allowCalculateOverride": false, + "widget": { + "type": "input" + }, + "attributes": {}, "validateOn": "change", "validate": { "required": false, - "pattern": "", - "customMessage": "", "custom": "", "customPrivate": false, - "json": "", - "minLength": "", - "maxLength": "", "strictDateValidation": false, "multiple": false, - "unique": false + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" }, - "unique": false, - "errorLabel": "", - "errors": "", - "key": "role", - "tags": [], - "properties": {}, "conditional": { "show": null, "when": null, - "eq": "", - "json": "" + "eq": "" }, - "customConditional": "", - "logic": [], - "attributes": {}, "overlay": { "style": "", - "page": "", "left": "", "top": "", "width": "", "height": "" }, - "type": "textfield", - "input": true, - "refreshOn": "", - "dataGridLabel": false, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, "addons": [], + "mask": false, "inputType": "text", - "id": "ecrl5qi", - "defaultValue": "" + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "et35fx" } ], "size": "md", @@ -879,7 +869,7 @@ "displayMask": "", "spellcheck": true, "truncateMultipleSpaces": false, - "id": "e6pf0x" + "id": "etts1t7" } ], "size": "md", @@ -966,7 +956,7 @@ "displayMask": "", "spellcheck": true, "truncateMultipleSpaces": false, - "id": "edodsdx" + "id": "ef7b4fx" } ], "size": "md", @@ -1041,7 +1031,7 @@ "tree": false, "lazyLoad": false, "autoAdjust": false, - "id": "eruizib" + "id": "e9305o6" } ], "placeholder": "", @@ -1060,7 +1050,7 @@ "tree": true, "lazyLoad": false, "defaultOpen": false, - "id": "ex5ffy8" + "id": "e6d0qbf" }, { "id": "evi8v2p", @@ -1223,7 +1213,7 @@ "attributes": {}, "components": [ { - "id": "ea2btv00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "id": "ea2btv0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", "key": "Panel-InformationForAffectedAndLikelyAffectedParcels", "tree": false, "type": "panel", @@ -9095,7 +9085,7 @@ "addons": [], "tree": false, "lazyLoad": false, - "id": "emrk44b0000000" + "id": "emrk44b000000000000" } ], "errorLabel": "", diff --git a/forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/processes/Bundling/subProcess/NOMBundleWorkflow.bpmn b/forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/processes/Bundling/subProcess/NOMBundleWorkflow.bpmn index f4b758b7..581d4014 100644 --- a/forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/processes/Bundling/subProcess/NOMBundleWorkflow.bpmn +++ b/forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/processes/Bundling/subProcess/NOMBundleWorkflow.bpmn @@ -88,12 +88,13 @@ execution.setVariable('formName','Notification of Likely or Actual Migration'); task.execution.setVariable('isCssaTeam',false); -task.execution.setVariable('userRole','Site Information Advisor'); + task.execution.setVariable('applicationStatus', task.execution.getVariable('action')); -task.execution.setVariable('deleteReason', "completed"); +task.execution.setVariable('deleteReason', "completed"); +task.execution.setVariable('userRole','Site Information Advisor'); @@ -235,14 +236,15 @@ system.out.println ("Sent to Caseworker"); task.execution.setVariable('task_id',task.getId()); task.execution.setVariableLocal('variable1',"srcr"); -task.execution.setVariable('userRole','Case Worker'); + task.execution.setVariable('requestStatus', task.execution.getVariable('action')); task.execution.setVariable('requestType', 'SRCR'); task.execution.setVariable('deleteReason', "completed"); task.execution.setVariable('srcrStatus', task.execution.getVariable('action')); -task.execution.setVariable('applicationStatus', task.execution.getVariable('action')); +task.execution.setVariable('applicationStatus', task.execution.getVariable('action')); +task.execution.setVariable('userRole','Caseworker'); @@ -278,7 +280,7 @@ system.out.println ("Sent to SDM"); task.execution.setVariable('task_id',task.getId()); -task.execution.setVariable('userRole','Statutory Decision Maker'); + @@ -286,7 +288,8 @@ task.execution.setVariable('userRole','Statutory Decision Maker'); task.execution.setVariable('requestType', 'SRCR'); task.execution.setVariable('deleteReason', "completed"); task.execution.setVariable('srcrStatus', task.execution.getVariable('action')); -task.execution.setVariable('applicationStatus', task.execution.getVariable('action')); +task.execution.setVariable('applicationStatus', task.execution.getVariable('action')); +task.execution.setVariable('userRole','Statutory Decision Maker'); @@ -364,14 +367,15 @@ system.out.println ("isSentFromSociety "+execution.getVariable('isSentFromSociet task.execution.setVariable('task_id',task.getId()); task.execution.setVariableLocal('variable1',"srcr"); -task.execution.setVariable('userRole','Site Risk Classification Officer'); + task.execution.setVariable('requestStatus', task.execution.getVariable('action')); task.execution.setVariable('requestType', 'SRCR'); task.execution.setVariable('deleteReason', "completed"); task.execution.setVariable('srcrStatus', task.execution.getVariable('action')); -task.execution.setVariable('applicationStatus', task.execution.getVariable('action')); +task.execution.setVariable('applicationStatus', task.execution.getVariable('action')); +task.execution.setVariable('userRole','Site Risk Classification Officer'); @@ -459,6 +463,16 @@ execution.setVariable('srcrStatus', "Resubmitted"); ${action == 'Rejected'} + + + execution.setVariable('srcrBundleStatus', "srcrCaseworkerAccepted"); + + + + ["applicationId", "applicationStatus", "srcrBundleStatus"] + + + ${action == 'Accepted'} @@ -567,6 +581,16 @@ execution.setVariable('requestType', 'SRCR'); + + + execution.setVariable('srcrBundleStatus', "srcrSrcoAccepted"); + + + + ["applicationId", "applicationStatus", "srcrBundleStatus"] + + + ${action == 'Accepted'} @@ -587,7 +611,9 @@ execution.setVariable('requestType', 'SRCR'); Flow_0wuyk5q Flow_117fny8 - + + + From 12caf1f73e6d6b30e8c6c8e91f629e578573b466 Mon Sep 17 00:00:00 2001 From: nikhila-aot Date: Tue, 17 Oct 2023 12:48:01 -0700 Subject: [PATCH 181/194] handling one user multiple roles --- .../epd-forms/Summary of Site Condition.json | 68 +++++++++---------- .../processes/SoSC/SOSCBundleWorklow.bpmn | 40 ++++++++++- 2 files changed, 72 insertions(+), 36 deletions(-) diff --git a/forms-flow-ai/epd-forms/Summary of Site Condition.json b/forms-flow-ai/epd-forms/Summary of Site Condition.json index 74dc610d..cb37f846 100644 --- a/forms-flow-ai/epd-forms/Summary of Site Condition.json +++ b/forms-flow-ai/epd-forms/Summary of Site Condition.json @@ -141,7 +141,7 @@ "eq": "", "json": "" }, - "customConditional": "const UserDetails = JSON.parse(localStorage.getItem(\"UserDetails\"))\r\nconst roles = UserDetails[\"role\"];\r\n\r\nif(roles.includes(\"formsflow-reviewer/cssa-team\") || \r\nroles.includes(\"formsflow-reviewer/cssa-manager\") || \r\nroles.includes(\"formsflow-reviewer/csap\") || \r\nroles.includes(\"formsflow-reviewer/csap-society\") || \r\nroles.includes(\"formsflow-reviewer/caseworker\")) \r\n{\r\n if(data.soscStatus === 'caseworkerAccepted' ||\r\n data.soscStatus === '')\r\n show = false;\r\n else\r\n show = true;\r\n}\r\nelse\r\n{\r\n show = false;\r\n}", + "customConditional": "const UserDetails = JSON.parse(localStorage.getItem(\"UserDetails\"))\r\nconst roles = UserDetails[\"role\"];\r\n\r\nif(roles.includes(\"formsflow-reviewer/cssa-team\") || \r\nroles.includes(\"formsflow-reviewer/cssa-manager\") || \r\nroles.includes(\"formsflow-reviewer/csap\") || \r\nroles.includes(\"formsflow-reviewer/csap-society\")) \r\n{\r\n show = true;\r\n} else if (roles.includes(\"formsflow-reviewer/caseworker\"))\r\n{\r\n if(data.soscStatus === 'mgrAccepted' &&\r\n (data.apFirstName === null || \r\n data.apFirstName === undefined || \r\n data.apFirstName === \"\"))\r\n show = true;\r\n else\r\n show = false;\r\n}\r\nelse\r\n{\r\n show = false;\r\n}", "logic": [], "attributes": {}, "overlay": { @@ -193,7 +193,7 @@ "showWordCount": false, "allowMultipleMasks": false, "addons": [], - "id": "eo6xtp" + "id": "e7neyfr" }, { "label": "Approved", @@ -224,7 +224,7 @@ "eq": "", "json": "" }, - "customConditional": "const UserDetails = JSON.parse(localStorage.getItem(\"UserDetails\"));\r\nconst roles = UserDetails[\"role\"];\r\n\r\nif(roles.includes(\"formsflow-reviewer/sdm\")) {\r\n if (data.soscStatus === \"caseworkerAccepted\" ||\r\n data.soscStatus === '') \r\n show = true;\r\n else\r\n show = false;\r\n}\r\nelse\r\n{\r\n show = false;\r\n}\r\n", + "customConditional": "const UserDetails = JSON.parse(localStorage.getItem(\"UserDetails\"));\r\nconst roles = UserDetails[\"role\"];\r\nconsole.log('data.apFirstName----', data.apFirstName);\r\nif(roles.includes(\"formsflow-reviewer/sdm\")) {\r\n if (data.soscStatus === \"mgrAccepted\" && !(data.apFirstName === \"\" || \r\n data.apFirstName === undefined || \r\n data.apFirstName === null)) \r\n show = true;\r\n else if (data.soscStatus === \"caseworkerAccepted\" )\r\n show = true;\r\n else\r\n show = false;\r\n}\r\nelse\r\n{\r\n show = false;\r\n}\r\n", "logic": [], "attributes": {}, "overlay": { @@ -275,7 +275,7 @@ "showWordCount": false, "allowMultipleMasks": false, "addons": [], - "id": "el0uh3a" + "id": "e25fbjq" } ], "width": 3, @@ -8670,7 +8670,7 @@ "id": "ej1mdrb" } ], - "id": "ej7yhy00000000000000000000000000000000", + "id": "ej7yhy000000000000000000000000000000000000000000000000000000000000000000000000", "placeholder": "", "prefix": "", "customClass": "", @@ -9710,7 +9710,7 @@ "id": "eqnyhh" } ], - "id": "eskogm00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "id": "eskogm000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", "placeholder": "", "prefix": "", "customClass": "", @@ -10242,7 +10242,7 @@ "addons": [], "tree": false, "lazyLoad": false, - "id": "e0cqfrg00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" + "id": "e0cqfrg000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" } ], "layoutFixed": false, @@ -10341,7 +10341,7 @@ "input": true, "label": "Crown Land File Numbers", "tableView": true, - "id": "elizdoh00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "id": "elizdoh000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", "placeholder": "", "prefix": "", "customClass": "", @@ -11729,7 +11729,7 @@ "id": "e6o3au0o" } ], - "id": "erlwlrl000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "id": "erlwlrl0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", "placeholder": "", "prefix": "", "customClass": "", @@ -12762,7 +12762,7 @@ "id": "eg4rrls" } ], - "id": "ehjtgz0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "id": "ehjtgz00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", "placeholder": "", "prefix": "", "customClass": "", @@ -13361,7 +13361,7 @@ "addons": [], "tree": false, "lazyLoad": false, - "id": "emjblk60000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" + "id": "emjblk600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" } ], "placeholder": "", @@ -13405,7 +13405,7 @@ "input": true, "label": "Crown Land File Numbers", "tableView": true, - "id": "eh8kmqu00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "id": "eh8kmqu000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", "placeholder": "", "prefix": "", "customClass": "", @@ -14314,7 +14314,7 @@ "id": "egqqs34" } ], - "id": "e80y9k80000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "id": "e80y9k800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", "placeholder": "", "prefix": "", "customClass": "", @@ -21856,7 +21856,7 @@ "id": "es5kcwo" } ], - "id": "egwgsw00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "id": "egwgsw000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", "placeholder": "", "prefix": "", "customClass": "", @@ -22653,7 +22653,7 @@ "id": "erxxdli" } ], - "id": "e09khr200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "id": "e09khr2000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", "placeholder": "", "prefix": "", "customClass": "", @@ -23262,7 +23262,7 @@ "id": "eu9o53q" } ], - "id": "eipn9d0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "id": "eipn9d00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", "placeholder": "", "prefix": "", "customClass": "", @@ -23792,7 +23792,7 @@ "id": "ef617zf" } ], - "id": "ebh60il0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "id": "ebh60il00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", "placeholder": "", "prefix": "", "customClass": "", @@ -24563,7 +24563,7 @@ "id": "eak2oy8" } ], - "id": "evgsijp0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "id": "evgsijp00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", "placeholder": "", "prefix": "", "customClass": "", @@ -28637,7 +28637,7 @@ "id": "e9e5bm" } ], - "id": "e6l31cy00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "id": "e6l31cy000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", "placeholder": "", "prefix": "", "customClass": "", @@ -29547,7 +29547,7 @@ "id": "eb274z" } ], - "id": "eauzdys0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "id": "eauzdys00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", "placeholder": "", "prefix": "", "customClass": "", @@ -30142,7 +30142,7 @@ "id": "euj2r2l" } ], - "id": "ey0h0vl000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "id": "ey0h0vl0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", "placeholder": "", "prefix": "", "customClass": "", @@ -30737,7 +30737,7 @@ "id": "ehez7s" } ], - "id": "el9aclo00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "id": "el9aclo000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", "placeholder": "", "prefix": "", "customClass": "", @@ -31332,7 +31332,7 @@ "id": "et10s3fg" } ], - "id": "ehk7lsj0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "id": "ehk7lsj00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", "placeholder": "", "prefix": "", "customClass": "", @@ -31927,7 +31927,7 @@ "id": "eu50tno" } ], - "id": "ejahpfm0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "id": "ejahpfm00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", "placeholder": "", "prefix": "", "customClass": "", @@ -32633,7 +32633,7 @@ "addons": [], "tree": false, "lazyLoad": false, - "id": "etzpsl0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" + "id": "etzpsl00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" } ], "placeholder": "", @@ -33374,7 +33374,7 @@ "defaultValue": "" } ], - "id": "esvz3la00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "id": "esvz3la000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", "placeholder": "", "prefix": "", "customClass": "", @@ -37327,7 +37327,7 @@ "id": "estazfs" } ], - "id": "ef5nwt00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "id": "ef5nwt000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", "placeholder": "", "prefix": "", "customClass": "", @@ -37833,7 +37833,7 @@ "id": "eq5jxk" } ], - "id": "eoq12ev0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "id": "eoq12ev00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", "placeholder": "", "prefix": "", "customClass": "", @@ -38152,7 +38152,7 @@ "id": "enjn8bkh" } ], - "id": "ett43n0j000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "id": "ett43n0j0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", "placeholder": "", "prefix": "", "customClass": "", @@ -38471,7 +38471,7 @@ "id": "ee9w9ok" } ], - "id": "euuaaa00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "id": "euuaaa000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", "placeholder": "", "prefix": "", "customClass": "", @@ -38790,7 +38790,7 @@ "id": "e6efm7o" } ], - "id": "edr4h050000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "id": "edr4h0500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", "placeholder": "", "prefix": "", "customClass": "", @@ -40901,7 +40901,7 @@ "type": "columns", "input": false, "tableView": false, - "id": "ev4kpmc000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "id": "ev4kpmc0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", "placeholder": "", "prefix": "", "customClass": "", @@ -41698,7 +41698,7 @@ "type": "columns", "input": false, "tableView": false, - "id": "ehbime00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "id": "ehbime000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", "placeholder": "", "prefix": "", "customClass": "", @@ -42606,7 +42606,7 @@ "refreshOn": "", "addons": [], "inputType": "text", - "id": "errpqaf000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "id": "errpqaf0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", "defaultValue": "" } ], diff --git a/forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/processes/SoSC/SOSCBundleWorklow.bpmn b/forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/processes/SoSC/SOSCBundleWorklow.bpmn index b3b14de6..88b563e8 100644 --- a/forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/processes/SoSC/SOSCBundleWorklow.bpmn +++ b/forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/processes/SoSC/SOSCBundleWorklow.bpmn @@ -54,6 +54,16 @@ + + + execution.setVariable('soscStatus', "cssaTeamAccepted"); + + + + ["soscStatus"] + + + ${action == 'Accepted'} @@ -118,7 +128,16 @@ - + + + execution.setVariable('soscStatus', "csapAccepted"); + + + + ["soscStatus"] + + + ${action == 'Accepted'} @@ -142,7 +161,16 @@ ${action == 'Returned'} - + + + execution.setVariable('soscStatus', "societyAccepted"); + + + + ["soscStatus"] + + + ${action == 'Accepted'} @@ -230,6 +258,14 @@ system.out.println ("isSentFromSociety "+ task.execution.getVariable('isSentFrom + + execution.setVariable('soscStatus', "mgrAccepted"); + + + + ["soscStatus"] + + ${action == 'Accepted'} From fd75de1f844244b6ce6e6a9b500fc5f07ab09f1c Mon Sep 17 00:00:00 2001 From: nikhila-aot Date: Tue, 17 Oct 2023 12:50:58 -0700 Subject: [PATCH 182/194] changed workflow name --- .../processes/SoSC/SOSCBundleWorklow.bpmn | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/processes/SoSC/SOSCBundleWorklow.bpmn b/forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/processes/SoSC/SOSCBundleWorklow.bpmn index 88b563e8..f661921e 100644 --- a/forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/processes/SoSC/SOSCBundleWorklow.bpmn +++ b/forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/processes/SoSC/SOSCBundleWorklow.bpmn @@ -1,9 +1,9 @@ - + - + StartEvent_1 @@ -1133,11 +1133,11 @@ task.execution.setVariable('deleteReason', "completed"); - - + + - + From 7b9b8e17ec19897c876379d5a775b7fb08f350f6 Mon Sep 17 00:00:00 2001 From: nikhila-aot Date: Tue, 17 Oct 2023 12:52:23 -0700 Subject: [PATCH 183/194] changed workflow name --- .../processes/SoSC/{SOSCBundleWorklow.bpmn => SOSCWorklow.bpmn} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/processes/SoSC/{SOSCBundleWorklow.bpmn => SOSCWorklow.bpmn} (100%) diff --git a/forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/processes/SoSC/SOSCBundleWorklow.bpmn b/forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/processes/SoSC/SOSCWorklow.bpmn similarity index 100% rename from forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/processes/SoSC/SOSCBundleWorklow.bpmn rename to forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/processes/SoSC/SOSCWorklow.bpmn From 5aa33b393c11fa2d2947893930c3a1a9b891f9a3 Mon Sep 17 00:00:00 2001 From: nikhila-aot Date: Tue, 17 Oct 2023 13:22:19 -0700 Subject: [PATCH 184/194] handled null emails --- .../processes/SoSC/SOSCWorklow.bpmn | 19 ++++++++++++++----- 1 file changed, 14 insertions(+), 5 deletions(-) diff --git a/forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/processes/SoSC/SOSCWorklow.bpmn b/forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/processes/SoSC/SOSCWorklow.bpmn index f661921e..4a460f7b 100644 --- a/forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/processes/SoSC/SOSCWorklow.bpmn +++ b/forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/processes/SoSC/SOSCWorklow.bpmn @@ -354,8 +354,8 @@ execution.setVariable('returnedBy', "cssaTeam"); execution.setVariable('name','User'); system.out.println ("name"+ execution.getVariable('name')); -var contactEmail = execution.getVariable('contactPersonEmailAddress'); -execution.setVariable('contactEmail', contactEmail); +var applicantEmail = execution.getVariable('contactPersonEmailAddress'); +execution.setVariable('applicantEmail', applicantEmail ); var apEmail = execution.getVariable('contactPersonEmailAddress2'); execution.setVariable('apEmail', apEmail); @@ -371,6 +371,15 @@ system.out.println("agentEmail"+agentEmail); var emailsToArray = []; emailsToArray.push(clientEmail); +if(applicantEmail){ + emailsToArray.push(applicantEmail); +} +if(agentEmail){ + emailsToArray.push(agentEmail); +} +if(apEmail){ + emailsToArray.push(apEmail); +} execution.setVariable("emailTo", Java.to(emailsToArray, "java.lang.Object[]")); system.out.println ("emailTo"+execution.getVariable('emailTo')); @@ -1152,9 +1161,9 @@ task.execution.setVariable('deleteReason', "completed"); - - - + + + From 9dc399618982ba235edc2f6d24c15c808a41adf5 Mon Sep 17 00:00:00 2001 From: midhun-aot Date: Wed, 18 Oct 2023 10:21:59 -0700 Subject: [PATCH 185/194] updated DERA workflow to include srcrBundleStatus --- .../subProcess/DERABundleWorkflow.bpmn | 20 +++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/processes/Bundling/subProcess/DERABundleWorkflow.bpmn b/forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/processes/Bundling/subProcess/DERABundleWorkflow.bpmn index f85a7beb..18e542f9 100644 --- a/forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/processes/Bundling/subProcess/DERABundleWorkflow.bpmn +++ b/forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/processes/Bundling/subProcess/DERABundleWorkflow.bpmn @@ -1129,6 +1129,16 @@ execution.setVariable('srcrStatus', "Resubmitted"); ${action == 'Rejected'} + + + execution.setVariable('srcrBundleStatus', "srcrCaseworkerAccepted"); + + + + ["applicationId", "applicationStatus", "srcrBundleStatus"] + + + ${action == 'Accepted'} @@ -1250,6 +1260,16 @@ execution.setVariable('requestType', 'SRCR'); + + + execution.setVariable('srcrBundleStatus', "srcrSrcoAccepted"); + + + + ["applicationId", "applicationStatus", "srcrBundleStatus"] + + + ${action == 'Accepted'} From f6dc97e476f588d7a68f531124d8503cb5d43a13 Mon Sep 17 00:00:00 2001 From: midhun-aot Date: Wed, 18 Oct 2023 11:34:02 -0700 Subject: [PATCH 186/194] adding space w.r.t SRS-92 ticket --- ... Ecological Risk Assessment Checklist.json | 96 +++++++++---------- 1 file changed, 48 insertions(+), 48 deletions(-) diff --git a/forms-flow-ai/epd-forms/bundling/Detailed Ecological Risk Assessment Checklist.json b/forms-flow-ai/epd-forms/bundling/Detailed Ecological Risk Assessment Checklist.json index 10c8178f..52f24553 100644 --- a/forms-flow-ai/epd-forms/bundling/Detailed Ecological Risk Assessment Checklist.json +++ b/forms-flow-ai/epd-forms/bundling/Detailed Ecological Risk Assessment Checklist.json @@ -5488,7 +5488,7 @@ "attributes": {}, "components": [ { - "id": "eh8z2bfa000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "id": "eh8z2bfa00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", "key": "panel", "tags": [], "tree": false, @@ -7275,71 +7275,71 @@ "offset": 0, "components": [ { - "id": "ell9c8g", "key": "dera", - "html": "

1.2 Does the DERA describe how the method(s) of assessment and the findings of any previous investigation(s) were used to design and carry out the current assessment? 

", + "html": "

1.2 Does the DERA describe how the method(s) of assessment and the findings of any previous investigation(s) were used to design and carry out the current assessment? 


", "type": "content", "input": false, "label": "Text/Images", - "hidden": false, + "tableView": false, + "hideOnChildrenHidden": false, + "placeholder": "", "prefix": "", + "customClass": "", "suffix": "", - "unique": false, - "widget": null, - "dbIndex": false, - "overlay": { - "top": "", - "left": "", - "style": "", - "width": "", - "height": "" - }, - "tooltip": "", - "disabled": false, "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, + "hidden": false, + "clearOnHide": true, + "refreshOn": "", "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", + "hideLabel": false, "tabindex": "", + "disabled": false, + "autofocus": false, + "dbIndex": false, + "customDefaultValue": "", + "calculateValue": "", + "calculateServer": false, + "widget": null, + "attributes": {}, + "validateOn": "change", "validate": { - "custom": "", - "unique": false, - "multiple": false, "required": false, + "custom": "", "customPrivate": false, - "strictDateValidation": false + "strictDateValidation": false, + "multiple": false, + "unique": false }, - "autofocus": false, - "encrypted": false, - "hideLabel": false, - "modalEdit": false, - "protected": false, - "refreshOn": "", - "tableView": false, - "attributes": {}, - "errorLabel": "", - "persistent": true, - "properties": {}, - "validateOn": "change", - "clearOnHide": true, "conditional": { - "eq": "", "show": null, - "when": null + "when": null, + "eq": "" }, - "customClass": "", - "description": "", - "placeholder": "", - "defaultValue": null, - "dataGridLabel": false, - "labelPosition": "top", + "overlay": { + "style": "", + "left": "", + "top": "", + "width": "", + "height": "" + }, + "allowCalculateOverride": false, + "encrypted": false, "showCharCount": false, "showWordCount": false, - "calculateValue": "", - "calculateServer": false, + "properties": {}, "allowMultipleMasks": false, - "customDefaultValue": "", - "hideOnChildrenHidden": false, - "allowCalculateOverride": false, - "addons": [] + "addons": [], + "id": "efr6f1w" } ], "currentWidth": 4 @@ -36017,7 +36017,7 @@ } ], "collapsible": false, - "id": "eof7940000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "id": "eof794000000000000000000000000000000000000000000000000000000000000000000000000000000000000", "placeholder": "", "prefix": "", "customClass": "", From 19db938119f8dc26030747aaa607a1f05698220d Mon Sep 17 00:00:00 2001 From: midhun-aot Date: Wed, 18 Oct 2023 14:50:15 -0700 Subject: [PATCH 187/194] add SIA role name in SRCR form --- .../Site Risk Classification Report.json | 106 ++++++++++-------- 1 file changed, 58 insertions(+), 48 deletions(-) diff --git a/forms-flow-ai/epd-forms/bundling/Site Risk Classification Report.json b/forms-flow-ai/epd-forms/bundling/Site Risk Classification Report.json index eba882ea..ec5f5394 100644 --- a/forms-flow-ai/epd-forms/bundling/Site Risk Classification Report.json +++ b/forms-flow-ai/epd-forms/bundling/Site Risk Classification Report.json @@ -2300,80 +2300,90 @@ "components": [ { "label": "Role", - "disabled": true, - "tableView": true, - "customDefaultValue": "var b =JSON.parse(localStorage.getItem('UserDetails'))\r\nif(b.groups.indexOf('/formsflow/formsflow-client') > -1 )\r\n{\r\n value = 'Client'\r\n}\r\nelse if(b.groups.indexOf('/formsflow/formsflow-reviewer/csap') > -1 )\r\n{\r\n value = 'Approved Professional'\r\n}\r\nelse if(b.groups.indexOf('/formsflow/formsflow-reviewer/csap-society') > -1 )\r\n{\r\n value = 'CSAP Society'\r\n}\r\nelse if(b.groups.indexOf('/formsflow/formsflow-reviewer/cssa-team') > -1 )\r\n{\r\n value = 'CSSA Team'\r\n}\r\nelse if(b.groups.indexOf('/formsflow/formsflow-reviewer/cssa-manager') > -1 )\r\n{\r\n value = 'CSSA Manager'\r\n}\r\nelse if(b.groups.indexOf('/formsflow/formsflow-reviewer/caseworker') > -1 )\r\n{\r\n value = 'Caseworker'\r\n}\r\nelse if(b.groups.indexOf('/formsflow/formsflow-reviewer/sdm') > -1 )\r\n{\r\n value = 'Statutory Decision Maker'\r\n}\r\nelse if(b.groups.indexOf('/formsflow/formsflow-reviewer/site-risk-classification-officer') > -1 )\r\n{\r\n value = 'Site Risk Classification Officer'\r\n}", - "key": "role", - "type": "textfield", - "input": true, + "labelPosition": "top", "placeholder": "", + "description": "", + "tooltip": "", "prefix": "", - "customClass": "", "suffix": "", - "multiple": false, - "defaultValue": null, - "protected": false, - "unique": false, - "persistent": true, + "widget": { + "type": "input" + }, + "inputMask": "", + "displayMask": "", + "allowMultipleMasks": false, + "customClass": "", + "tabindex": "", + "autocomplete": "", "hidden": false, - "clearOnHide": true, - "refreshOn": "", - "redrawOn": "", - "modalEdit": false, - "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", "hideLabel": false, - "tabindex": "", + "showWordCount": false, + "showCharCount": false, + "mask": false, "autofocus": false, + "spellcheck": true, + "disabled": true, + "tableView": true, + "modalEdit": false, + "multiple": false, + "persistent": true, + "inputFormat": "plain", + "protected": false, "dbIndex": false, + "case": "", + "truncateMultipleSpaces": false, + "encrypted": false, + "redrawOn": "", + "clearOnHide": true, + "customDefaultValue": "var b =JSON.parse(localStorage.getItem('UserDetails'))\nif(b.groups.indexOf('/formsflow/formsflow-client') > -1 )\n{\n value = 'Client'\n}\nelse if(b.groups.indexOf('/formsflow/formsflow-reviewer/csap') > -1 )\n{\n value = 'Approved Professional'\n}\nelse if(b.groups.indexOf('/formsflow/formsflow-reviewer/csap-society') > -1 )\n{\n value = 'CSAP Society'\n}\nelse if(b.groups.indexOf('/formsflow/formsflow-reviewer/cssa-team') > -1 )\n{\n value = 'CSSA Team'\n}\nelse if(b.groups.indexOf('/formsflow/formsflow-reviewer/cssa-manager') > -1 )\n{\n value = 'CSSA Manager'\n}\nelse if(b.groups.indexOf('/formsflow/formsflow-reviewer/caseworker') > -1 )\n{\n value = 'Caseworker'\n}\nelse if(b.groups.indexOf('/formsflow/formsflow-reviewer/sdm') > -1 )\n{\n value = 'Statutory Decision Maker'\n}\nelse if(b.groups.indexOf('/formsflow/formsflow-reviewer/site-risk-classification-officer') > -1 )\n{\n value = 'Site Risk Classification Officer'\n}\nelse if(b.groups.indexOf('/formsflow/formsflow-reviewer/site-information-advisor') > -1 )\n{\n value = 'Site Information Advisor'\n}", "calculateValue": "", "calculateServer": false, - "widget": { - "type": "input" - }, - "attributes": {}, + "allowCalculateOverride": false, "validateOn": "change", "validate": { "required": false, + "pattern": "", + "customMessage": "", "custom": "", "customPrivate": false, - "strictDateValidation": false, - "multiple": false, - "unique": false, + "json": "", "minLength": "", "maxLength": "", - "pattern": "" + "strictDateValidation": false, + "multiple": false, + "unique": false }, + "unique": false, + "errorLabel": "", + "errors": "", + "key": "role", + "tags": [], + "properties": {}, "conditional": { "show": null, "when": null, - "eq": "" + "eq": "", + "json": "" }, + "customConditional": "", + "logic": [], + "attributes": {}, "overlay": { "style": "", + "page": "", "left": "", "top": "", "width": "", "height": "" }, - "allowCalculateOverride": false, - "encrypted": false, - "showCharCount": false, - "showWordCount": false, - "properties": {}, - "allowMultipleMasks": false, + "type": "textfield", + "input": true, + "refreshOn": "", + "dataGridLabel": false, "addons": [], - "mask": false, "inputType": "text", - "inputFormat": "plain", - "inputMask": "", - "displayMask": "", - "spellcheck": true, - "truncateMultipleSpaces": false, - "id": "ex4sns9" + "id": "e3l63ph", + "defaultValue": "" } ], "size": "md", @@ -5069,7 +5079,7 @@ "attributes": {}, "components": [ { - "id": "ele95t0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "id": "ele95t000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", "key": "spropertyOwnerAndOrOperator", "tree": false, "type": "panel", @@ -14481,7 +14491,7 @@ "attributes": {}, "components": [ { - "id": "eks0gu000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "id": "eks0gu00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", "key": "exposurePathwayQuestionnaireAffectedParcel", "tree": false, "type": "panel", @@ -18424,7 +18434,7 @@ } ], "collapsible": false, - "id": "eo5mwyp0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "id": "eo5mwyp000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", "placeholder": "", "prefix": "", "customClass": "", @@ -19738,4 +19748,4 @@ ] } ] -} +} \ No newline at end of file From d3e2dea645b2ed92118579cf780442f6e6a0ccf7 Mon Sep 17 00:00:00 2001 From: Adam Coard Date: Thu, 19 Oct 2023 11:46:11 -0700 Subject: [PATCH 188/194] Delete empty folder --- site-search/.DS_Store | Bin 6148 -> 0 bytes 1 file changed, 0 insertions(+), 0 deletions(-) delete mode 100644 site-search/.DS_Store diff --git a/site-search/.DS_Store b/site-search/.DS_Store deleted file mode 100644 index 5008ddfcf53c02e82d7eee2e57c38e5672ef89f6..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 6148 zcmeH~Jr2S!425mzP>H1@V-^m;4Wg<&0T*E43hX&L&p$$qDprKhvt+--jT7}7np#A3 zem<@ulZcFPQ@L2!n>{z**++&mCkOWA81W14cNZlEfg7;MkzE(HCqgga^y>{tEnwC%0;vJ&^%eQ zLs35+`xjp>T0 Date: Thu, 19 Oct 2023 11:49:03 -0700 Subject: [PATCH 189/194] Rename frontend/site-search-frontend to frontend/site-search --- frontend/{site-search-frontend => site-search}/.eslintrc.cjs | 0 frontend/{site-search-frontend => site-search}/.gitignore | 0 frontend/{site-search-frontend => site-search}/Dockerfile | 0 frontend/{site-search-frontend => site-search}/README.md | 0 frontend/{site-search-frontend => site-search}/index.html | 0 frontend/{site-search-frontend => site-search}/nginx.conf | 0 frontend/{site-search-frontend => site-search}/package-lock.json | 0 frontend/{site-search-frontend => site-search}/package.json | 0 frontend/{site-search-frontend => site-search}/public/vite.svg | 0 frontend/{site-search-frontend => site-search}/src/App.css | 0 frontend/{site-search-frontend => site-search}/src/App.tsx | 0 .../{site-search-frontend => site-search}/src/api/dummy-data.tsx | 0 frontend/{site-search-frontend => site-search}/src/api/sites.ts | 0 .../{site-search-frontend => site-search}/src/assets/react.svg | 0 .../src/components/Header.tsx | 0 .../src/components/Highlighted.tsx | 0 .../src/components/SiteRegistryIcon.tsx | 0 .../src/features/map/MapDetailsPane.tsx | 0 .../src/features/map/UpdateMapCentre.tsx | 0 .../src/features/selection/selection.ts | 0 .../src/features/simple-search/search-results.tsx | 0 .../src/features/simple-search/search-toggle.tsx | 0 .../src/features/simple-search/simple-search.ts | 0 .../src/features/site-details/SiteGridItem.tsx | 0 .../src/features/site-details/TableEditItem.tsx | 0 .../src/features/site-details/activity-log.tsx | 0 .../src/features/site-details/associated-sites.tsx | 0 .../src/features/site-details/css/siteDetails.module.css | 0 .../src/features/site-details/css/summary.module.css | 0 .../src/features/site-details/documents.tsx | 0 .../src/features/site-details/edit-mode/editModeSlice.ts | 0 .../src/features/site-details/notations.tsx | 0 .../src/features/site-details/parcel-description.tsx | 0 .../src/features/site-details/participants.tsx | 0 .../src/features/site-details/site-profile.tsx | 0 .../src/features/site-details/sub-search/SubSearch.tsx | 0 .../src/features/site-details/sub-search/subsearch.module.css | 0 .../src/features/site-details/summary.tsx | 0 .../src/features/site-details/suspect-land-uses.tsx | 0 .../src/features/site-details/table/SiteDetailsTable.tsx | 0 .../src/features/user/userSlice.ts | 0 .../src/helpers/formatDateToString.ts | 0 .../src/helpers/formatLatLng.ts | 0 frontend/{site-search-frontend => site-search}/src/index.css | 0 frontend/{site-search-frontend => site-search}/src/main.tsx | 0 .../src/pages/advanced-search.tsx | 0 .../src/pages/map.module.css | 0 frontend/{site-search-frontend => site-search}/src/pages/map.tsx | 0 .../{site-search-frontend => site-search}/src/pages/search.css | 0 .../{site-search-frontend => site-search}/src/pages/search.tsx | 0 .../src/pages/site-details.module.css | 0 .../src/pages/site-details.tsx | 0 .../src/scripts/dummy-data.sites.json | 0 .../src/scripts/generate-dummy-data.ts | 0 frontend/{site-search-frontend => site-search}/src/store.ts | 0 frontend/{site-search-frontend => site-search}/src/vite-env.d.ts | 0 frontend/{site-search-frontend => site-search}/tsconfig.json | 0 frontend/{site-search-frontend => site-search}/tsconfig.node.json | 0 frontend/{site-search-frontend => site-search}/vite.config.ts | 0 59 files changed, 0 insertions(+), 0 deletions(-) rename frontend/{site-search-frontend => site-search}/.eslintrc.cjs (100%) rename frontend/{site-search-frontend => site-search}/.gitignore (100%) rename frontend/{site-search-frontend => site-search}/Dockerfile (100%) rename frontend/{site-search-frontend => site-search}/README.md (100%) rename frontend/{site-search-frontend => site-search}/index.html (100%) rename frontend/{site-search-frontend => site-search}/nginx.conf (100%) rename frontend/{site-search-frontend => site-search}/package-lock.json (100%) rename frontend/{site-search-frontend => site-search}/package.json (100%) rename frontend/{site-search-frontend => site-search}/public/vite.svg (100%) rename frontend/{site-search-frontend => site-search}/src/App.css (100%) rename frontend/{site-search-frontend => site-search}/src/App.tsx (100%) rename frontend/{site-search-frontend => site-search}/src/api/dummy-data.tsx (100%) rename frontend/{site-search-frontend => site-search}/src/api/sites.ts (100%) rename frontend/{site-search-frontend => site-search}/src/assets/react.svg (100%) rename frontend/{site-search-frontend => site-search}/src/components/Header.tsx (100%) rename frontend/{site-search-frontend => site-search}/src/components/Highlighted.tsx (100%) rename frontend/{site-search-frontend => site-search}/src/components/SiteRegistryIcon.tsx (100%) rename frontend/{site-search-frontend => site-search}/src/features/map/MapDetailsPane.tsx (100%) rename frontend/{site-search-frontend => site-search}/src/features/map/UpdateMapCentre.tsx (100%) rename frontend/{site-search-frontend => site-search}/src/features/selection/selection.ts (100%) rename frontend/{site-search-frontend => site-search}/src/features/simple-search/search-results.tsx (100%) rename frontend/{site-search-frontend => site-search}/src/features/simple-search/search-toggle.tsx (100%) rename frontend/{site-search-frontend => site-search}/src/features/simple-search/simple-search.ts (100%) rename frontend/{site-search-frontend => site-search}/src/features/site-details/SiteGridItem.tsx (100%) rename frontend/{site-search-frontend => site-search}/src/features/site-details/TableEditItem.tsx (100%) rename frontend/{site-search-frontend => site-search}/src/features/site-details/activity-log.tsx (100%) rename frontend/{site-search-frontend => site-search}/src/features/site-details/associated-sites.tsx (100%) rename frontend/{site-search-frontend => site-search}/src/features/site-details/css/siteDetails.module.css (100%) rename frontend/{site-search-frontend => site-search}/src/features/site-details/css/summary.module.css (100%) rename frontend/{site-search-frontend => site-search}/src/features/site-details/documents.tsx (100%) rename frontend/{site-search-frontend => site-search}/src/features/site-details/edit-mode/editModeSlice.ts (100%) rename frontend/{site-search-frontend => site-search}/src/features/site-details/notations.tsx (100%) rename frontend/{site-search-frontend => site-search}/src/features/site-details/parcel-description.tsx (100%) rename frontend/{site-search-frontend => site-search}/src/features/site-details/participants.tsx (100%) rename frontend/{site-search-frontend => site-search}/src/features/site-details/site-profile.tsx (100%) rename frontend/{site-search-frontend => site-search}/src/features/site-details/sub-search/SubSearch.tsx (100%) rename frontend/{site-search-frontend => site-search}/src/features/site-details/sub-search/subsearch.module.css (100%) rename frontend/{site-search-frontend => site-search}/src/features/site-details/summary.tsx (100%) rename frontend/{site-search-frontend => site-search}/src/features/site-details/suspect-land-uses.tsx (100%) rename frontend/{site-search-frontend => site-search}/src/features/site-details/table/SiteDetailsTable.tsx (100%) rename frontend/{site-search-frontend => site-search}/src/features/user/userSlice.ts (100%) rename frontend/{site-search-frontend => site-search}/src/helpers/formatDateToString.ts (100%) rename frontend/{site-search-frontend => site-search}/src/helpers/formatLatLng.ts (100%) rename frontend/{site-search-frontend => site-search}/src/index.css (100%) rename frontend/{site-search-frontend => site-search}/src/main.tsx (100%) rename frontend/{site-search-frontend => site-search}/src/pages/advanced-search.tsx (100%) rename frontend/{site-search-frontend => site-search}/src/pages/map.module.css (100%) rename frontend/{site-search-frontend => site-search}/src/pages/map.tsx (100%) rename frontend/{site-search-frontend => site-search}/src/pages/search.css (100%) rename frontend/{site-search-frontend => site-search}/src/pages/search.tsx (100%) rename frontend/{site-search-frontend => site-search}/src/pages/site-details.module.css (100%) rename frontend/{site-search-frontend => site-search}/src/pages/site-details.tsx (100%) rename frontend/{site-search-frontend => site-search}/src/scripts/dummy-data.sites.json (100%) rename frontend/{site-search-frontend => site-search}/src/scripts/generate-dummy-data.ts (100%) rename frontend/{site-search-frontend => site-search}/src/store.ts (100%) rename frontend/{site-search-frontend => site-search}/src/vite-env.d.ts (100%) rename frontend/{site-search-frontend => site-search}/tsconfig.json (100%) rename frontend/{site-search-frontend => site-search}/tsconfig.node.json (100%) rename frontend/{site-search-frontend => site-search}/vite.config.ts (100%) diff --git a/frontend/site-search-frontend/.eslintrc.cjs b/frontend/site-search/.eslintrc.cjs similarity index 100% rename from frontend/site-search-frontend/.eslintrc.cjs rename to frontend/site-search/.eslintrc.cjs diff --git a/frontend/site-search-frontend/.gitignore b/frontend/site-search/.gitignore similarity index 100% rename from frontend/site-search-frontend/.gitignore rename to frontend/site-search/.gitignore diff --git a/frontend/site-search-frontend/Dockerfile b/frontend/site-search/Dockerfile similarity index 100% rename from frontend/site-search-frontend/Dockerfile rename to frontend/site-search/Dockerfile diff --git a/frontend/site-search-frontend/README.md b/frontend/site-search/README.md similarity index 100% rename from frontend/site-search-frontend/README.md rename to frontend/site-search/README.md diff --git a/frontend/site-search-frontend/index.html b/frontend/site-search/index.html similarity index 100% rename from frontend/site-search-frontend/index.html rename to frontend/site-search/index.html diff --git a/frontend/site-search-frontend/nginx.conf b/frontend/site-search/nginx.conf similarity index 100% rename from frontend/site-search-frontend/nginx.conf rename to frontend/site-search/nginx.conf diff --git a/frontend/site-search-frontend/package-lock.json b/frontend/site-search/package-lock.json similarity index 100% rename from frontend/site-search-frontend/package-lock.json rename to frontend/site-search/package-lock.json diff --git a/frontend/site-search-frontend/package.json b/frontend/site-search/package.json similarity index 100% rename from frontend/site-search-frontend/package.json rename to frontend/site-search/package.json diff --git a/frontend/site-search-frontend/public/vite.svg b/frontend/site-search/public/vite.svg similarity index 100% rename from frontend/site-search-frontend/public/vite.svg rename to frontend/site-search/public/vite.svg diff --git a/frontend/site-search-frontend/src/App.css b/frontend/site-search/src/App.css similarity index 100% rename from frontend/site-search-frontend/src/App.css rename to frontend/site-search/src/App.css diff --git a/frontend/site-search-frontend/src/App.tsx b/frontend/site-search/src/App.tsx similarity index 100% rename from frontend/site-search-frontend/src/App.tsx rename to frontend/site-search/src/App.tsx diff --git a/frontend/site-search-frontend/src/api/dummy-data.tsx b/frontend/site-search/src/api/dummy-data.tsx similarity index 100% rename from frontend/site-search-frontend/src/api/dummy-data.tsx rename to frontend/site-search/src/api/dummy-data.tsx diff --git a/frontend/site-search-frontend/src/api/sites.ts b/frontend/site-search/src/api/sites.ts similarity index 100% rename from frontend/site-search-frontend/src/api/sites.ts rename to frontend/site-search/src/api/sites.ts diff --git a/frontend/site-search-frontend/src/assets/react.svg b/frontend/site-search/src/assets/react.svg similarity index 100% rename from frontend/site-search-frontend/src/assets/react.svg rename to frontend/site-search/src/assets/react.svg diff --git a/frontend/site-search-frontend/src/components/Header.tsx b/frontend/site-search/src/components/Header.tsx similarity index 100% rename from frontend/site-search-frontend/src/components/Header.tsx rename to frontend/site-search/src/components/Header.tsx diff --git a/frontend/site-search-frontend/src/components/Highlighted.tsx b/frontend/site-search/src/components/Highlighted.tsx similarity index 100% rename from frontend/site-search-frontend/src/components/Highlighted.tsx rename to frontend/site-search/src/components/Highlighted.tsx diff --git a/frontend/site-search-frontend/src/components/SiteRegistryIcon.tsx b/frontend/site-search/src/components/SiteRegistryIcon.tsx similarity index 100% rename from frontend/site-search-frontend/src/components/SiteRegistryIcon.tsx rename to frontend/site-search/src/components/SiteRegistryIcon.tsx diff --git a/frontend/site-search-frontend/src/features/map/MapDetailsPane.tsx b/frontend/site-search/src/features/map/MapDetailsPane.tsx similarity index 100% rename from frontend/site-search-frontend/src/features/map/MapDetailsPane.tsx rename to frontend/site-search/src/features/map/MapDetailsPane.tsx diff --git a/frontend/site-search-frontend/src/features/map/UpdateMapCentre.tsx b/frontend/site-search/src/features/map/UpdateMapCentre.tsx similarity index 100% rename from frontend/site-search-frontend/src/features/map/UpdateMapCentre.tsx rename to frontend/site-search/src/features/map/UpdateMapCentre.tsx diff --git a/frontend/site-search-frontend/src/features/selection/selection.ts b/frontend/site-search/src/features/selection/selection.ts similarity index 100% rename from frontend/site-search-frontend/src/features/selection/selection.ts rename to frontend/site-search/src/features/selection/selection.ts diff --git a/frontend/site-search-frontend/src/features/simple-search/search-results.tsx b/frontend/site-search/src/features/simple-search/search-results.tsx similarity index 100% rename from frontend/site-search-frontend/src/features/simple-search/search-results.tsx rename to frontend/site-search/src/features/simple-search/search-results.tsx diff --git a/frontend/site-search-frontend/src/features/simple-search/search-toggle.tsx b/frontend/site-search/src/features/simple-search/search-toggle.tsx similarity index 100% rename from frontend/site-search-frontend/src/features/simple-search/search-toggle.tsx rename to frontend/site-search/src/features/simple-search/search-toggle.tsx diff --git a/frontend/site-search-frontend/src/features/simple-search/simple-search.ts b/frontend/site-search/src/features/simple-search/simple-search.ts similarity index 100% rename from frontend/site-search-frontend/src/features/simple-search/simple-search.ts rename to frontend/site-search/src/features/simple-search/simple-search.ts diff --git a/frontend/site-search-frontend/src/features/site-details/SiteGridItem.tsx b/frontend/site-search/src/features/site-details/SiteGridItem.tsx similarity index 100% rename from frontend/site-search-frontend/src/features/site-details/SiteGridItem.tsx rename to frontend/site-search/src/features/site-details/SiteGridItem.tsx diff --git a/frontend/site-search-frontend/src/features/site-details/TableEditItem.tsx b/frontend/site-search/src/features/site-details/TableEditItem.tsx similarity index 100% rename from frontend/site-search-frontend/src/features/site-details/TableEditItem.tsx rename to frontend/site-search/src/features/site-details/TableEditItem.tsx diff --git a/frontend/site-search-frontend/src/features/site-details/activity-log.tsx b/frontend/site-search/src/features/site-details/activity-log.tsx similarity index 100% rename from frontend/site-search-frontend/src/features/site-details/activity-log.tsx rename to frontend/site-search/src/features/site-details/activity-log.tsx diff --git a/frontend/site-search-frontend/src/features/site-details/associated-sites.tsx b/frontend/site-search/src/features/site-details/associated-sites.tsx similarity index 100% rename from frontend/site-search-frontend/src/features/site-details/associated-sites.tsx rename to frontend/site-search/src/features/site-details/associated-sites.tsx diff --git a/frontend/site-search-frontend/src/features/site-details/css/siteDetails.module.css b/frontend/site-search/src/features/site-details/css/siteDetails.module.css similarity index 100% rename from frontend/site-search-frontend/src/features/site-details/css/siteDetails.module.css rename to frontend/site-search/src/features/site-details/css/siteDetails.module.css diff --git a/frontend/site-search-frontend/src/features/site-details/css/summary.module.css b/frontend/site-search/src/features/site-details/css/summary.module.css similarity index 100% rename from frontend/site-search-frontend/src/features/site-details/css/summary.module.css rename to frontend/site-search/src/features/site-details/css/summary.module.css diff --git a/frontend/site-search-frontend/src/features/site-details/documents.tsx b/frontend/site-search/src/features/site-details/documents.tsx similarity index 100% rename from frontend/site-search-frontend/src/features/site-details/documents.tsx rename to frontend/site-search/src/features/site-details/documents.tsx diff --git a/frontend/site-search-frontend/src/features/site-details/edit-mode/editModeSlice.ts b/frontend/site-search/src/features/site-details/edit-mode/editModeSlice.ts similarity index 100% rename from frontend/site-search-frontend/src/features/site-details/edit-mode/editModeSlice.ts rename to frontend/site-search/src/features/site-details/edit-mode/editModeSlice.ts diff --git a/frontend/site-search-frontend/src/features/site-details/notations.tsx b/frontend/site-search/src/features/site-details/notations.tsx similarity index 100% rename from frontend/site-search-frontend/src/features/site-details/notations.tsx rename to frontend/site-search/src/features/site-details/notations.tsx diff --git a/frontend/site-search-frontend/src/features/site-details/parcel-description.tsx b/frontend/site-search/src/features/site-details/parcel-description.tsx similarity index 100% rename from frontend/site-search-frontend/src/features/site-details/parcel-description.tsx rename to frontend/site-search/src/features/site-details/parcel-description.tsx diff --git a/frontend/site-search-frontend/src/features/site-details/participants.tsx b/frontend/site-search/src/features/site-details/participants.tsx similarity index 100% rename from frontend/site-search-frontend/src/features/site-details/participants.tsx rename to frontend/site-search/src/features/site-details/participants.tsx diff --git a/frontend/site-search-frontend/src/features/site-details/site-profile.tsx b/frontend/site-search/src/features/site-details/site-profile.tsx similarity index 100% rename from frontend/site-search-frontend/src/features/site-details/site-profile.tsx rename to frontend/site-search/src/features/site-details/site-profile.tsx diff --git a/frontend/site-search-frontend/src/features/site-details/sub-search/SubSearch.tsx b/frontend/site-search/src/features/site-details/sub-search/SubSearch.tsx similarity index 100% rename from frontend/site-search-frontend/src/features/site-details/sub-search/SubSearch.tsx rename to frontend/site-search/src/features/site-details/sub-search/SubSearch.tsx diff --git a/frontend/site-search-frontend/src/features/site-details/sub-search/subsearch.module.css b/frontend/site-search/src/features/site-details/sub-search/subsearch.module.css similarity index 100% rename from frontend/site-search-frontend/src/features/site-details/sub-search/subsearch.module.css rename to frontend/site-search/src/features/site-details/sub-search/subsearch.module.css diff --git a/frontend/site-search-frontend/src/features/site-details/summary.tsx b/frontend/site-search/src/features/site-details/summary.tsx similarity index 100% rename from frontend/site-search-frontend/src/features/site-details/summary.tsx rename to frontend/site-search/src/features/site-details/summary.tsx diff --git a/frontend/site-search-frontend/src/features/site-details/suspect-land-uses.tsx b/frontend/site-search/src/features/site-details/suspect-land-uses.tsx similarity index 100% rename from frontend/site-search-frontend/src/features/site-details/suspect-land-uses.tsx rename to frontend/site-search/src/features/site-details/suspect-land-uses.tsx diff --git a/frontend/site-search-frontend/src/features/site-details/table/SiteDetailsTable.tsx b/frontend/site-search/src/features/site-details/table/SiteDetailsTable.tsx similarity index 100% rename from frontend/site-search-frontend/src/features/site-details/table/SiteDetailsTable.tsx rename to frontend/site-search/src/features/site-details/table/SiteDetailsTable.tsx diff --git a/frontend/site-search-frontend/src/features/user/userSlice.ts b/frontend/site-search/src/features/user/userSlice.ts similarity index 100% rename from frontend/site-search-frontend/src/features/user/userSlice.ts rename to frontend/site-search/src/features/user/userSlice.ts diff --git a/frontend/site-search-frontend/src/helpers/formatDateToString.ts b/frontend/site-search/src/helpers/formatDateToString.ts similarity index 100% rename from frontend/site-search-frontend/src/helpers/formatDateToString.ts rename to frontend/site-search/src/helpers/formatDateToString.ts diff --git a/frontend/site-search-frontend/src/helpers/formatLatLng.ts b/frontend/site-search/src/helpers/formatLatLng.ts similarity index 100% rename from frontend/site-search-frontend/src/helpers/formatLatLng.ts rename to frontend/site-search/src/helpers/formatLatLng.ts diff --git a/frontend/site-search-frontend/src/index.css b/frontend/site-search/src/index.css similarity index 100% rename from frontend/site-search-frontend/src/index.css rename to frontend/site-search/src/index.css diff --git a/frontend/site-search-frontend/src/main.tsx b/frontend/site-search/src/main.tsx similarity index 100% rename from frontend/site-search-frontend/src/main.tsx rename to frontend/site-search/src/main.tsx diff --git a/frontend/site-search-frontend/src/pages/advanced-search.tsx b/frontend/site-search/src/pages/advanced-search.tsx similarity index 100% rename from frontend/site-search-frontend/src/pages/advanced-search.tsx rename to frontend/site-search/src/pages/advanced-search.tsx diff --git a/frontend/site-search-frontend/src/pages/map.module.css b/frontend/site-search/src/pages/map.module.css similarity index 100% rename from frontend/site-search-frontend/src/pages/map.module.css rename to frontend/site-search/src/pages/map.module.css diff --git a/frontend/site-search-frontend/src/pages/map.tsx b/frontend/site-search/src/pages/map.tsx similarity index 100% rename from frontend/site-search-frontend/src/pages/map.tsx rename to frontend/site-search/src/pages/map.tsx diff --git a/frontend/site-search-frontend/src/pages/search.css b/frontend/site-search/src/pages/search.css similarity index 100% rename from frontend/site-search-frontend/src/pages/search.css rename to frontend/site-search/src/pages/search.css diff --git a/frontend/site-search-frontend/src/pages/search.tsx b/frontend/site-search/src/pages/search.tsx similarity index 100% rename from frontend/site-search-frontend/src/pages/search.tsx rename to frontend/site-search/src/pages/search.tsx diff --git a/frontend/site-search-frontend/src/pages/site-details.module.css b/frontend/site-search/src/pages/site-details.module.css similarity index 100% rename from frontend/site-search-frontend/src/pages/site-details.module.css rename to frontend/site-search/src/pages/site-details.module.css diff --git a/frontend/site-search-frontend/src/pages/site-details.tsx b/frontend/site-search/src/pages/site-details.tsx similarity index 100% rename from frontend/site-search-frontend/src/pages/site-details.tsx rename to frontend/site-search/src/pages/site-details.tsx diff --git a/frontend/site-search-frontend/src/scripts/dummy-data.sites.json b/frontend/site-search/src/scripts/dummy-data.sites.json similarity index 100% rename from frontend/site-search-frontend/src/scripts/dummy-data.sites.json rename to frontend/site-search/src/scripts/dummy-data.sites.json diff --git a/frontend/site-search-frontend/src/scripts/generate-dummy-data.ts b/frontend/site-search/src/scripts/generate-dummy-data.ts similarity index 100% rename from frontend/site-search-frontend/src/scripts/generate-dummy-data.ts rename to frontend/site-search/src/scripts/generate-dummy-data.ts diff --git a/frontend/site-search-frontend/src/store.ts b/frontend/site-search/src/store.ts similarity index 100% rename from frontend/site-search-frontend/src/store.ts rename to frontend/site-search/src/store.ts diff --git a/frontend/site-search-frontend/src/vite-env.d.ts b/frontend/site-search/src/vite-env.d.ts similarity index 100% rename from frontend/site-search-frontend/src/vite-env.d.ts rename to frontend/site-search/src/vite-env.d.ts diff --git a/frontend/site-search-frontend/tsconfig.json b/frontend/site-search/tsconfig.json similarity index 100% rename from frontend/site-search-frontend/tsconfig.json rename to frontend/site-search/tsconfig.json diff --git a/frontend/site-search-frontend/tsconfig.node.json b/frontend/site-search/tsconfig.node.json similarity index 100% rename from frontend/site-search-frontend/tsconfig.node.json rename to frontend/site-search/tsconfig.node.json diff --git a/frontend/site-search-frontend/vite.config.ts b/frontend/site-search/vite.config.ts similarity index 100% rename from frontend/site-search-frontend/vite.config.ts rename to frontend/site-search/vite.config.ts From 7c9d1b25fe082c1b5b3768dfe4361a7adc21c9f2 Mon Sep 17 00:00:00 2001 From: midhun-aot Date: Thu, 19 Oct 2023 15:57:52 -0700 Subject: [PATCH 190/194] form validation script changes --- ...tification of Independent Remediation.json | 225 +++++++++--------- ...ication of Likely or Actual Migration.json | 22 +- .../Site Risk Classification Report.json | 14 +- 3 files changed, 131 insertions(+), 130 deletions(-) diff --git a/forms-flow-ai/epd-forms/bundling/Notification of Independent Remediation.json b/forms-flow-ai/epd-forms/bundling/Notification of Independent Remediation.json index 1e1da8f7..f97ec85e 100644 --- a/forms-flow-ai/epd-forms/bundling/Notification of Independent Remediation.json +++ b/forms-flow-ai/epd-forms/bundling/Notification of Independent Remediation.json @@ -426,27 +426,77 @@ }, { "label": "Notes", + "labelPosition": "top", + "description": "", + "tooltip": "", + "customClass": "", + "tabindex": "", + "openWhenEmpty": false, + "disableAddingRemovingRows": false, + "conditionalAddButton": "", + "hidden": false, "hideLabel": true, + "autofocus": false, + "disabled": false, "tableView": false, + "modalEdit": false, "templates": { "header": "{% console.log(\"row-key header\",'commentFor',row['commentFor']) %}\r\n{% const UserDetails = JSON.parse(localStorage.getItem(\"UserDetails\"))%}\r\n{% const groups = UserDetails[\"groups\"]; %}\r\n\r\n{% if(groups.includes(\"/formsflow/formsflow-client-reviewer\") || groups.includes(\"/formsflow/formsflow-client\") || groups.includes(\"/formsflow/formsflow-reviewer/csap\") || groups.includes(\"/formsflow/formsflow-reviewer/csap-society\")){ %}\r\n\r\n
\r\n {% util.eachComponent(components, function(component) { %}\r\n {% if (displayValue(component) && component.key !== 'commentFor' ) { %}\r\n {% if(component.label === 'Notes') { %}\r\n
{{ t(component.label) }}
\r\n {% } else if(component.key !== 'comments') { %}\r\n
{{ t(component.label) }}
\r\n {% } %}\r\n {% } %}\r\n {% }) %}\r\n
\r\n\r\n{% } else { %}\r\n\r\n
\r\n {% util.eachComponent(components, function(component) { %}\r\n {% if (displayValue(component)) { %}\r\n {% if(component.key == 'comments') { %}\r\n
{{ t(component.label)}}
\r\n {% } else if(component.key == 'role' || component.key == 'createdBy') { %}\r\n
{{ t(component.label)}}
\r\n{% } else { %}\r\n
{{ t(component.label)}}
\r\n{% } %} \r\n {% } %}\r\n {% }) %}\r\n
\r\n\r\n{% } %}", - "row": "\r\n\r\n{% console.log(\"row-key main\",'commentFor',row['commentFor']) %}\r\n{% const UserDetails = JSON.parse(localStorage.getItem(\"UserDetails\"))%}\r\n{% const groups = UserDetails[\"groups\"]; %}\r\n{% console.log('rendering edit grid body')%}\r\n{% if((groups.includes(\"/formsflow/formsflow-reviewer/formsflow-client-reviewer\") || groups.includes(\"/formsflow/formsflow-client\") || groups.includes(\"/formsflow/formsflow-reviewer/csap\") || groups.includes(\"/formsflow/formsflow-reviewer/csap-society\")) && row['commentFor']==='external'){ %}\r\n\r\n\r\n\r\n
\r\n\r\n {% util.eachComponent(components, function(component) { %}\r\n {% if (displayValue(component) && component.key !== 'commentFor' ) { %}\r\n {% console.log(\"row-key\",component.key,row[component.key]) %}\r\n {% const UserDetails = JSON.parse(localStorage.getItem(\"UserDetails\"))%}\r\n{% const groups = UserDetails[\"groups\"]; %}\r\n{% if((groups.includes(\"/formsflow/formsflow-reviewer/formsflow-client-reviewer\") || groups.includes(\"/formsflow/formsflow-client\") || groups.includes(\"/formsflow/formsflow-reviewer/csap\") || groups.includes(\"/formsflow/formsflow-reviewer/csap-society\")) && row['commentFor']==='external'){ %}\r\n{% if(component.key == 'comments') { %}\r\n
\r\n {{ getView(component, row[component.key])}}\r\n
\r\n{% } else { %}\r\n
\r\n {{ getView(component, row[component.key])}}\r\n
\r\n{%}%}\r\n \r\n\r\n {% } %}\r\n {% } %}\r\n {% }) %}\r\n {% if (!instance.options.readOnly && !instance.disabled) { %}\r\n {% const UserDetails = JSON.parse(localStorage.getItem(\"UserDetails\"))%}\r\n{% const groups = UserDetails[\"groups\"]; %}\r\n{% if((groups.includes(\"/formsflow/formsflow-reviewer/formsflow-client-reviewer\") || groups.includes(\"/formsflow/formsflow-client\") || groups.includes(\"/formsflow/formsflow-reviewer/csap\") || groups.includes(\"/formsflow/formsflow-reviewer/csap-society\")) && row['commentFor']==='external'){ %}\r\n
\r\n
\r\n {% if (!instance.hasRemoveButtons || instance.hasRemoveButtons()) { %}\r\n \r\n {% } %}\r\n
\r\n
\r\n \r\n {% } %}\r\n {% } %}\r\n
\r\n {% } else if (groups.includes(\"/formsflow/formsflow-reviewer/site-information-advisor\") || groups.includes(\"/formsflow/formsflow-reviewer/cssa-team\") || groups.includes(\"/formsflow/formsflow-reviewer/caseworker\") || groups.includes(\"/formsflow/formsflow-reviewer/sdm\")) { %}\r\n
\r\n {% util.eachComponent(components, function(component) { %}\r\n {% console.log('for sia') %}\r\n {% if (displayValue(component)) { %}\r\n {% if(component.key == 'comments') { %}\r\n
{{ getView(component, row[component.key])}}
\r\n {% } else if(component.key == 'role' || component.key == 'createdBy') { %}\r\n
{{ getView(component, row[component.key])}}
\r\n{% } else { %}\r\n
{{ getView(component, row[component.key])}}
\r\n{% } %} \r\n \r\n {% } %}\r\n {% }) %}\r\n {% if (!instance.options.readOnly && !instance.disabled) { %}\r\n
\r\n
\r\n {% if (!instance.hasRemoveButtons || instance.hasRemoveButtons()) { %}\r\n \r\n {% } %}\r\n
\r\n
\r\n {% } %}\r\n
\r\n {% } %}\r\n \r\n \r\n \r\n{% const emptyElements = []; %}\r\n{% const elements = document.getElementsByClassName(\"list-group-item\"); %}\r\n{% for (let i = 0; i < elements.length; i++) { %}\r\n{% const element = elements[i]; %}\r\n{% if(element.querySelectorAll('div.row').length===0){(element).remove() }} %}", - "footer": "{% const emptyElements = []; %}\r\n{% const elements = document.getElementsByClassName(\"list-group-item\"); %}\r\n{% for (let i = 0; i < elements.length; i++) { %}\r\n{% const element = elements[i]; %}\r\n{%if(element.querySelectorAll('div.row').length===0){(element).remove() }} %}\r\n", "tableHeader": "\n \n {% util.eachComponent(components, function(component) { %}\n {% if (!component.hasOwnProperty('tableView') || component.tableView) { %}\n {{ component.label }}\n {% } %}\n {% }) %}\n {% if (!instance.options.readOnly && !instance.disabled) { %}\n Actions\n {% } %}\n \n ", - "tableRow": "\n {% util.eachComponent(components, function(component) { %}\n {% if (!component.hasOwnProperty('tableView') || component.tableView) { %}\n \n {{ getView(component, row[component.key]) }}\n \n {% } %}\n {% }) %}\n {% if (!instance.options.readOnly && !instance.disabled) { %}\n \n
\n \n {% if (!instance.hasRemoveButtons || instance.hasRemoveButtons()) { %}\n \n {% } %}\n
\n \n {% } %}\n " + "row": "\r\n\r\n{% console.log(\"row-key main\",'commentFor',row['commentFor']) %}\r\n{% const UserDetails = JSON.parse(localStorage.getItem(\"UserDetails\"))%}\r\n{% const groups = UserDetails[\"groups\"]; %}\r\n{% console.log('rendering edit grid body')%}\r\n{% if((groups.includes(\"/formsflow/formsflow-reviewer/formsflow-client-reviewer\") || groups.includes(\"/formsflow/formsflow-client\") || groups.includes(\"/formsflow/formsflow-reviewer/csap\") || groups.includes(\"/formsflow/formsflow-reviewer/csap-society\")) && row['commentFor']==='external'){ %}\r\n\r\n\r\n\r\n
\r\n\r\n {% util.eachComponent(components, function(component) { %}\r\n {% if (displayValue(component) && component.key !== 'commentFor' ) { %}\r\n {% console.log(\"row-key\",component.key,row[component.key]) %}\r\n {% const UserDetails = JSON.parse(localStorage.getItem(\"UserDetails\"))%}\r\n{% const groups = UserDetails[\"groups\"]; %}\r\n{% if((groups.includes(\"/formsflow/formsflow-reviewer/formsflow-client-reviewer\") || groups.includes(\"/formsflow/formsflow-client\") || groups.includes(\"/formsflow/formsflow-reviewer/csap\") || groups.includes(\"/formsflow/formsflow-reviewer/csap-society\")) && row['commentFor']==='external'){ %}\r\n{% if(component.key == 'comments') { %}\r\n
\r\n {{ getView(component, row[component.key])}}\r\n
\r\n{% } else { %}\r\n
\r\n {{ getView(component, row[component.key])}}\r\n
\r\n{%}%}\r\n \r\n\r\n {% } %}\r\n {% } %}\r\n {% }) %}\r\n {% if (!instance.options.readOnly && !instance.disabled) { %}\r\n {% const UserDetails = JSON.parse(localStorage.getItem(\"UserDetails\"))%}\r\n{% const groups = UserDetails[\"groups\"]; %}\r\n{% if((groups.includes(\"/formsflow/formsflow-reviewer/formsflow-client-reviewer\") || groups.includes(\"/formsflow/formsflow-client\") || groups.includes(\"/formsflow/formsflow-reviewer/csap\") || groups.includes(\"/formsflow/formsflow-reviewer/csap-society\")) && row['commentFor']==='external'){ %}\r\n
\r\n
\r\n {% if (!instance.hasRemoveButtons || instance.hasRemoveButtons()) { %}\r\n \r\n {% } %}\r\n
\r\n
\r\n \r\n {% } %}\r\n {% } %}\r\n
\r\n {% } else if (groups.includes(\"/formsflow/formsflow-reviewer/site-information-advisor\") || groups.includes(\"/formsflow/formsflow-reviewer/cssa-team\") || groups.includes(\"/formsflow/formsflow-reviewer/caseworker\") || groups.includes(\"/formsflow/formsflow-reviewer/sdm\")) { %}\r\n
\r\n {% util.eachComponent(components, function(component) { %}\r\n {% console.log('for sia') %}\r\n {% if (displayValue(component)) { %}\r\n {% if(component.key == 'comments') { %}\r\n
{{ getView(component, row[component.key])}}
\r\n {% } else if(component.key == 'role' || component.key == 'createdBy') { %}\r\n
{{ getView(component, row[component.key])}}
\r\n{% } else { %}\r\n
{{ getView(component, row[component.key])}}
\r\n{% } %} \r\n \r\n {% } %}\r\n {% }) %}\r\n {% if (!instance.options.readOnly && !instance.disabled) { %}\r\n
\r\n
\r\n {% if (!instance.hasRemoveButtons || instance.hasRemoveButtons()) { %}\r\n \r\n {% } %}\r\n
\r\n
\r\n {% } %}\r\n
\r\n {% } %}\r\n \r\n \r\n \r\n{% const emptyElements = []; %}\r\n{% const elements = document.getElementsByClassName(\"list-group-item\"); %}\r\n{% for (let i = 0; i < elements.length; i++) { %}\r\n{% const element = elements[i]; %}\r\n{% if(element.querySelectorAll('div.row').length===0){(element).remove() }} %}", + "tableRow": "\n {% util.eachComponent(components, function(component) { %}\n {% if (!component.hasOwnProperty('tableView') || component.tableView) { %}\n \n {{ getView(component, row[component.key]) }}\n \n {% } %}\n {% }) %}\n {% if (!instance.options.readOnly && !instance.disabled) { %}\n \n
\n \n {% if (!instance.hasRemoveButtons || instance.hasRemoveButtons()) { %}\n \n {% } %}\n
\n \n {% } %}\n ", + "footer": "{% const emptyElements = []; %}\r\n{% const elements = document.getElementsByClassName(\"list-group-item\"); %}\r\n{% for (let i = 0; i < elements.length; i++) { %}\r\n{% const element = elements[i]; %}\r\n{%if(element.querySelectorAll('div.row').length===0){(element).remove() }} %}\r\n" }, + "rowClass": "", + "addAnother": "", + "modal": false, + "saveRow": "", + "removeRow": "Cancel", + "persistent": true, + "inlineEdit": false, + "protected": false, + "dbIndex": false, + "encrypted": false, + "redrawOn": "", + "clearOnHide": true, "customDefaultValue": "const emptyElements = [];\r\nconst elements = document.getElementsByClassName(\"list-group-item\");\r\nfor (let i = 0; i < elements.length; i++) {\r\nconst element = elements[i];\r\nif(element.querySelectorAll('div.row').length===0){(element).remove() }\r\n \r\n}", + "calculateValue": "", + "calculateServer": false, + "allowCalculateOverride": false, + "validateOn": "change", "validate": { - "custom": "console.log('nothing');\r\nconst emptyElements = [];\r\nconst elements = document.getElementsByClassName(\"list-group-item\");\r\nfor (let i = 0; i < elements.length; i++) {\r\nconst element = elements[i];\r\nif(element.querySelectorAll('div.row').length===0){(element).remove() }\r\n \r\n}\r\n\r\n\r\nvar b =JSON.parse(localStorage.getItem('UserDetails'))\r\n\r\nif(b.groups.includes(\"/formsflow/formsflow-client\"))\r\n{\r\n\tif(document.querySelector(\"[ref='editgrid-cssaNotes-addRow']\") != null)\r\n\t{\r\n\t\tdocument.querySelector(\"[ref='editgrid-cssaNotes-addRow']\").remove();\r\n\t}\r\n\r\n\tvar editButtons = document.querySelectorAll('button.btn.btn-default.btn-light.btn-sm.editRow');\r\n\tif(editButtons!=null)\r\n\t{\r\n\t\tfor(i=0;ix.commentFor==='external').length > 0)\r\n show = true;\r\n else\r\n show = false;\r\n}\r\nelse\r\n{\r\n show = true;\r\n}\r\n\r\n\r\nvar addButton = document.querySelector(\"button[ref=editgrid-cssaNotes-addRow]\");\r\nif(addButton!==null && addButton !== undefined)\r\n{\r\naddButton.addEventListener('click',\r\n(e)=>{\r\n\t\tif( groups.includes(\"/formsflow/formsflow-reviewer/csap\") || groups.includes(\"/formsflow/formsflow-reviewer/csap-society\"))\r\n\t\t{\r\n\t\t var internalRadio = document.querySelectorAll(\"input[value='internal'][type='radio']\");\r\n\t\t for (let i = 0; i < internalRadio.length; i++) {\r\n\t\t\tinternalRadio[i].parentElement.remove();\r\n\t\t }\r\n\t\t}\r\n})\r\n}\r\nconst emptyElements = [];\r\nconst elements = document.getElementsByClassName(\"list-group-item\");\r\nfor (let i = 0; i < elements.length; i++) {\r\nconst element = elements[i];\r\n\r\nif(element.querySelectorAll('div.row').length===0){(element).remove() }\r\n \r\n}\r\n\r\n\r\nconsole.log('nothing 22');\r\n\r\n\r\nvar b =JSON.parse(localStorage.getItem('UserDetails'))\r\n\r\nif(b.groups.includes(\"/formsflow/formsflow-client\"))\r\n{\r\n\tif(document.querySelector(\"[ref='editgrid-cssaNotes-addRow']\") != null)\r\n\t{\r\n\t\tdocument.querySelector(\"[ref='editgrid-cssaNotes-addRow']\").remove();\r\n\t}\r\n\r\n\tvar editButtons = document.querySelectorAll('button.btn.btn-default.btn-light.btn-sm.editRow');\r\n\tif(editButtons!=null)\r\n\t{\r\n\t\tfor(i=0;ix.commentFor==='external').length > 0)\n show = true;\n else\n show = false;\n}\nelse\n{\n show = true;\n}\n\n\nvar addButton = document.querySelector(\"button[ref=editgrid-cssaNotes-addRow]\");\nif(addButton!==null && addButton !== undefined)\n{\naddButton.addEventListener('click',\n(e)=>{\n\t\tif( groups.includes(\"/formsflow/formsflow-reviewer/csap\") || groups.includes(\"/formsflow/formsflow-reviewer/csap-society\"))\n\t\t{\n\t\t var internalRadio = document.querySelectorAll(\"input[value='internal'][type='radio']\");\n\t\t for (let i = 0; i < internalRadio.length; i++) {\n\t\t\tinternalRadio[i].parentElement.remove();\n\t\t }\n\t\t}\n})\n}\nconst emptyElements = [];\nconst elements = document.getElementsByClassName(\"list-group-item\");\nfor (let i = 0; i < elements.length; i++) {\nconst element = elements[i];\n\nif(element.querySelectorAll('div.row').length===0){(element).remove() }\n \n}\n\n\nconsole.log('nothing 22');\n\n\nvar b =JSON.parse(localStorage.getItem('UserDetails'))\n\nif(b.groups.includes(\"/formsflow/formsflow-client\") || b.groups.includes(\"/formsflow/formsflow-reviewer/formsflow-client-reviewer\") )\n{\n\tif(document.querySelector(\"[ref='editgrid-cssaNotes-addRow']\") != null)\n\t{\n\t\tdocument.querySelector(\"[ref='editgrid-cssaNotes-addRow']\").remove();\n\t}\n\n\tvar editButtons = document.querySelectorAll('button.btn.btn-default.btn-light.btn-sm.editRow');\n\tif(editButtons!=null)\n\t{\n\t\tfor(i=0;i -1 )\n{\n value = 'Client'\n}\nelse if(b.groups.indexOf('/formsflow/formsflow-reviewer/csap') > -1 )\n{\n value = 'Approved Professional'\n}\nelse if(b.groups.indexOf('/formsflow/formsflow-reviewer/csap-society') > -1 )\n{\n value = 'CSAP Society'\n}\nelse if(b.groups.indexOf('/formsflow/formsflow-reviewer/cssa-team') > -1 )\n{\n value = 'CSSA Team'\n}\nelse if(b.groups.indexOf('/formsflow/formsflow-reviewer/cssa-manager') > -1 )\n{\n value = 'CSSA Manager'\n}\nelse if(b.groups.indexOf('/formsflow/formsflow-reviewer/caseworker') > -1 )\n{\n value = 'Caseworker'\n}\nelse if(b.groups.indexOf('/formsflow/formsflow-reviewer/sdm') > -1 )\n{\n value = 'Statutory Decision Maker'\n}\nelse if(b.groups.indexOf('/formsflow/formsflow-reviewer/site-risk-classification-officer') > -1 )\n{\n value = 'Site Risk Classification Officer'\n}\nelse if(b.groups.indexOf('/formsflow/formsflow-reviewer/site-information-advisor') > -1 )\n{\n value = 'Site Information Advisor'\n}", + "key": "role", + "type": "textfield", + "input": true, "placeholder": "", - "description": "", - "tooltip": "", "prefix": "", - "suffix": "", - "widget": { - "type": "input" - }, - "inputMask": "", - "displayMask": "", - "allowMultipleMasks": false, "customClass": "", - "tabindex": "", - "autocomplete": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", "hideLabel": false, - "showWordCount": false, - "showCharCount": false, - "mask": false, + "tabindex": "", "autofocus": false, - "spellcheck": true, - "disabled": true, - "tableView": true, - "modalEdit": false, - "multiple": false, - "persistent": true, - "inputFormat": "plain", - "protected": false, "dbIndex": false, - "case": "", - "truncateMultipleSpaces": false, - "encrypted": false, - "redrawOn": "", - "clearOnHide": true, - "customDefaultValue": "var b =JSON.parse(localStorage.getItem('UserDetails'))\nif(b.groups.indexOf('/formsflow/formsflow-client') > -1 )\n{\n value = 'Client'\n}\nelse if(b.groups.indexOf('/formsflow/formsflow-reviewer/csap') > -1 )\n{\n value = 'Approved Professional'\n}\nelse if(b.groups.indexOf('/formsflow/formsflow-reviewer/csap-society') > -1 )\n{\n value = 'CSAP Society'\n}\nelse if(b.groups.indexOf('/formsflow/formsflow-reviewer/cssa-team') > -1 )\n{\n value = 'CSSA Team'\n}\nelse if(b.groups.indexOf('/formsflow/formsflow-reviewer/cssa-manager') > -1 )\n{\n value = 'CSSA Manager'\n}\nelse if(b.groups.indexOf('/formsflow/formsflow-reviewer/caseworker') > -1 )\n{\n value = 'Caseworker'\n}\nelse if(b.groups.indexOf('/formsflow/formsflow-reviewer/sdm') > -1 )\n{\n value = 'Statutory Decision Maker'\n}\nelse if(b.groups.indexOf('/formsflow/formsflow-reviewer/site-risk-classification-officer') > -1 )\n{\n value = 'Site Risk Classification Officer'\n}\nelse if(b.groups.indexOf('/formsflow/formsflow-reviewer/site-information-advisor') > -1 )\n{\n value = 'Site Information Advisor'\n}", "calculateValue": "", "calculateServer": false, - "allowCalculateOverride": false, + "widget": { + "type": "input" + }, + "attributes": {}, "validateOn": "change", "validate": { "required": false, - "pattern": "", - "customMessage": "", "custom": "", "customPrivate": false, - "json": "", - "minLength": "", - "maxLength": "", "strictDateValidation": false, "multiple": false, - "unique": false + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" }, - "unique": false, - "errorLabel": "", - "errors": "", - "key": "role", - "tags": [], - "properties": {}, "conditional": { "show": null, "when": null, - "eq": "", - "json": "" + "eq": "" }, - "customConditional": "", - "logic": [], - "attributes": {}, "overlay": { "style": "", - "page": "", "left": "", "top": "", "width": "", "height": "" }, - "type": "textfield", - "input": true, - "refreshOn": "", - "dataGridLabel": false, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, "addons": [], + "mask": false, "inputType": "text", - "id": "eezdg0l", - "defaultValue": "" + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "e0r0pe" } ], "size": "md", @@ -814,7 +854,7 @@ "displayMask": "", "spellcheck": true, "truncateMultipleSpaces": false, - "id": "e7e4yc" + "id": "e0qx6r5" } ], "size": "md", @@ -901,7 +941,7 @@ "displayMask": "", "spellcheck": true, "truncateMultipleSpaces": false, - "id": "e8l3qgf" + "id": "eaf97yl" } ], "size": "md", @@ -976,65 +1016,26 @@ "tree": false, "lazyLoad": false, "autoAdjust": false, - "id": "eb5fwpt" + "id": "e9w4cmj" } ], "placeholder": "", "prefix": "", - "customClass": "", "suffix": "", "multiple": false, "defaultValue": null, - "protected": false, "unique": false, - "persistent": true, - "hidden": false, - "clearOnHide": true, "refreshOn": "", - "redrawOn": "", - "modalEdit": false, "dataGridLabel": false, - "labelPosition": "top", - "description": "", - "errorLabel": "", - "tooltip": "", - "tabindex": "", - "disabled": false, - "autofocus": false, - "dbIndex": false, - "calculateValue": "", - "calculateServer": false, "widget": null, - "attributes": {}, - "validateOn": "change", - "conditional": { - "show": null, - "when": null, - "eq": "" - }, - "overlay": { - "style": "", - "left": "", - "top": "", - "width": "", - "height": "" - }, - "allowCalculateOverride": false, - "encrypted": false, "showCharCount": false, "showWordCount": false, - "properties": {}, "allowMultipleMasks": false, "addons": [], "tree": true, "lazyLoad": false, - "disableAddingRemovingRows": false, - "removeRow": "Cancel", "defaultOpen": false, - "openWhenEmpty": false, - "modal": false, - "inlineEdit": false, - "id": "e188e" + "id": "emybtj9" }, { "id": "ecf3gbp", @@ -9077,7 +9078,7 @@ "attributes": {}, "components": [ { - "id": "epivnsp0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "id": "epivnsp00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", "key": "contaminant", "mask": false, "type": "textfield", @@ -9154,7 +9155,7 @@ "truncateMultipleSpaces": false }, { - "id": "el3hlvr0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "id": "el3hlvr00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", "key": "maximumConcentration", "mask": false, "type": "textfield", @@ -9899,7 +9900,7 @@ "attributes": {}, "components": [ { - "id": "esedw40000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "id": "esedw400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", "key": "contaminant", "mask": false, "type": "textfield", @@ -9976,7 +9977,7 @@ "truncateMultipleSpaces": false }, { - "id": "esor9060000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "id": "esor90600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", "key": "maximumConcentration", "mask": false, "type": "textfield", @@ -10718,7 +10719,7 @@ "attributes": {}, "components": [ { - "id": "ej0y410000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "id": "ej0y4100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", "key": "contaminant", "mask": false, "type": "textfield", @@ -10795,7 +10796,7 @@ "truncateMultipleSpaces": false }, { - "id": "e8qg9fh0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "id": "e8qg9fh00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", "key": "maximumConcentration", "mask": false, "type": "textfield", @@ -11543,7 +11544,7 @@ "attributes": {}, "components": [ { - "id": "eevqmo9000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "id": "eevqmo90000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", "key": "contaminant", "mask": false, "type": "textfield", @@ -11620,7 +11621,7 @@ "truncateMultipleSpaces": false }, { - "id": "et223l3000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "id": "et223l30000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", "key": "maximumConcentration", "mask": false, "type": "textfield", diff --git a/forms-flow-ai/epd-forms/bundling/Notification of Likely or Actual Migration.json b/forms-flow-ai/epd-forms/bundling/Notification of Likely or Actual Migration.json index e71f20bb..33bb9539 100644 --- a/forms-flow-ai/epd-forms/bundling/Notification of Likely or Actual Migration.json +++ b/forms-flow-ai/epd-forms/bundling/Notification of Likely or Actual Migration.json @@ -482,7 +482,7 @@ "validate": { "required": false, "customMessage": "", - "custom": "console.log('nothing');\r\nconst emptyElements = [];\r\nconst elements = document.getElementsByClassName(\"list-group-item\");\r\nfor (let i = 0; i < elements.length; i++) {\r\nconst element = elements[i];\r\nif(element.querySelectorAll('div.row').length===0){(element).remove() }\r\n \r\n}\r\n\r\n\r\nvar b =JSON.parse(localStorage.getItem('UserDetails'))\r\n\r\nif(b.groups.includes(\"/formsflow/formsflow-client\"))\r\n{\r\n\tif(document.querySelector(\"[ref='editgrid-cssaNotes-addRow']\") != null)\r\n\t{\r\n\t\tdocument.querySelector(\"[ref='editgrid-cssaNotes-addRow']\").remove();\r\n\t}\r\n\r\n\tvar editButtons = document.querySelectorAll('button.btn.btn-default.btn-light.btn-sm.editRow');\r\n\tif(editButtons!=null)\r\n\t{\r\n\t\tfor(i=0;ix.commentFor==='external').length > 0)\r\n show = true;\r\n else\r\n show = false;\r\n}\r\nelse\r\n{\r\n show = true;\r\n}\r\n\r\n\r\nvar addButton = document.querySelector(\"button[ref=editgrid-cssaNotes-addRow]\");\r\nif(addButton!==null && addButton !== undefined)\r\n{\r\naddButton.addEventListener('click',\r\n(e)=>{\r\n\t\tif( groups.includes(\"/formsflow/formsflow-reviewer/csap\") || groups.includes(\"/formsflow/formsflow-reviewer/csap-society\"))\r\n\t\t{\r\n\t\t var internalRadio = document.querySelectorAll(\"input[value='internal'][type='radio']\");\r\n\t\t for (let i = 0; i < internalRadio.length; i++) {\r\n\t\t\tinternalRadio[i].parentElement.remove();\r\n\t\t }\r\n\t\t}\r\n})\r\n}\r\nconst emptyElements = [];\r\nconst elements = document.getElementsByClassName(\"list-group-item\");\r\nfor (let i = 0; i < elements.length; i++) {\r\nconst element = elements[i];\r\n\r\nif(element.querySelectorAll('div.row').length===0){(element).remove() }\r\n \r\n}\r\n\r\n\r\nconsole.log('nothing 22');\r\n\r\n\r\nvar b =JSON.parse(localStorage.getItem('UserDetails'))\r\n\r\nif(b.groups.includes(\"/formsflow/formsflow-client\"))\r\n{\r\n\tif(document.querySelector(\"[ref='editgrid-cssaNotes-addRow']\") != null)\r\n\t{\r\n\t\tdocument.querySelector(\"[ref='editgrid-cssaNotes-addRow']\").remove();\r\n\t}\r\n\r\n\tvar editButtons = document.querySelectorAll('button.btn.btn-default.btn-light.btn-sm.editRow');\r\n\tif(editButtons!=null)\r\n\t{\r\n\t\tfor(i=0;ix.commentFor==='external').length > 0)\n show = true;\n else\n show = false;\n}\nelse\n{\n show = true;\n}\n\n\nvar addButton = document.querySelector(\"button[ref=editgrid-cssaNotes-addRow]\");\nif(addButton!==null && addButton !== undefined)\n{\naddButton.addEventListener('click',\n(e)=>{\n\t\tif( groups.includes(\"/formsflow/formsflow-reviewer/csap\") || groups.includes(\"/formsflow/formsflow-reviewer/csap-society\"))\n\t\t{\n\t\t var internalRadio = document.querySelectorAll(\"input[value='internal'][type='radio']\");\n\t\t for (let i = 0; i < internalRadio.length; i++) {\n\t\t\tinternalRadio[i].parentElement.remove();\n\t\t }\n\t\t}\n})\n}\nconst emptyElements = [];\nconst elements = document.getElementsByClassName(\"list-group-item\");\nfor (let i = 0; i < elements.length; i++) {\nconst element = elements[i];\n\nif(element.querySelectorAll('div.row').length===0){(element).remove() }\n \n}\n\n\nconsole.log('nothing 22');\n\n\nvar b =JSON.parse(localStorage.getItem('UserDetails'))\n\nif(b.groups.includes(\"/formsflow/formsflow-client\") || b.groups.includes(\"/formsflow/formsflow-reviewer/formsflow-client-reviewer\") )\n{\n\tif(document.querySelector(\"[ref='editgrid-cssaNotes-addRow']\") != null)\n\t{\n\t\tdocument.querySelector(\"[ref='editgrid-cssaNotes-addRow']\").remove();\n\t}\n\n\tvar editButtons = document.querySelectorAll('button.btn.btn-default.btn-light.btn-sm.editRow');\n\tif(editButtons!=null)\n\t{\n\t\tfor(i=0;i Date: Thu, 19 Oct 2023 16:15:35 -0700 Subject: [PATCH 191/194] updated validation in SRCR form --- .../Site Risk Classification Report.json | 130 ++++++++---------- 1 file changed, 60 insertions(+), 70 deletions(-) diff --git a/forms-flow-ai/epd-forms/bundling/Site Risk Classification Report.json b/forms-flow-ai/epd-forms/bundling/Site Risk Classification Report.json index ec5f5394..5c538fa8 100644 --- a/forms-flow-ai/epd-forms/bundling/Site Risk Classification Report.json +++ b/forms-flow-ai/epd-forms/bundling/Site Risk Classification Report.json @@ -613,7 +613,7 @@ "key": "siteOwnerActions", "tags": [], "properties": {}, - "customConditional": "const UserDetails = JSON.parse(localStorage.getItem(\"UserDetails\"))\r\n\r\n\r\n\r\nconst roles = UserDetails[\"role\"];\r\n\r\n\r\nif(roles.includes(\"formsflow-reviewer/formsflow-client-reviewer\") && data.applicationStatus !== undefined && data.applicationStatus !== '') {\r\n show = true;\r\n}\r\nelse\r\n{\r\n show = false;\r\n}", + "customConditional": "\n\n\nconst UserDetails = JSON.parse(localStorage.getItem(\"UserDetails\"))\n\n\n\nconst roles = UserDetails[\"role\"];\n\n\nif(roles.includes(\"formsflow-reviewer/formsflow-client-reviewer\") && data.applicationStatus !== undefined && data.applicationStatus !== '' && data.applicationStatus !== 'Resubmit') {\n show = true;\n}\nelse\n{\n show = false;\n}\n\n\n", "conditional": { "json": "", "show": null, @@ -716,7 +716,7 @@ "block": false, "disableOnInvalid": false, "theme": "primary", - "id": "epc9zvp" + "id": "ejoitnl" } ], "width": 3, @@ -818,7 +818,7 @@ "tree": false, "lazyLoad": false, "autoAdjust": false, - "id": "eb126od" + "id": "eh1h8va" } ], "keyModified": true, @@ -860,7 +860,7 @@ "addons": [], "tree": false, "lazyLoad": false, - "id": "erhjp1m" + "id": "eizlo13" }, { "title": "Reviewer Actions", @@ -2041,7 +2041,7 @@ "disableAddingRemovingRows": false, "conditionalAddButton": "", "hidden": false, - "hideLabel": false, + "hideLabel": true, "autofocus": false, "disabled": false, "tableView": false, @@ -2073,7 +2073,7 @@ "validate": { "required": false, "customMessage": "", - "custom": "const emptyElements = [];\r\nconst elements = document.getElementsByClassName(\"list-group-item\");\r\nfor (let i = 0; i < elements.length; i++) {\r\nconst element = elements[i];\r\n\r\nif(element.querySelectorAll('div.row').length===0){(element).remove() }\r\n \r\n}\r\n\r\n\r\nvar b =JSON.parse(localStorage.getItem('UserDetails'))\r\n\r\nif(b.groups.includes(\"/formsflow/formsflow-client\"))\r\n{\r\n\tif(document.querySelector(\"[ref='editgrid-srcrNotes-addRow']\")!==null)\r\n\t{\r\n\t\tdocument.querySelector(\"[ref='editgrid-srcrNotes-addRow']\").remove();\r\n\t}\r\nvar editButtons = document.querySelectorAll('button.btn.btn-default.btn-light.btn-sm.editRow');\r\nfor(i=0;ix.commentFor==='external').length > 0)\r\nshow = true;\r\nelse\r\nshow = false;\r\n}\r\nelse\r\n{\r\n show = true;\r\n}\r\n\r\nvar addRowButton = document.querySelector(\"button[ref=editgrid-srcrNotes-addRow]\");\r\nif(addRowButton!=null)\r\n{\r\naddRowButton.addEventListener('click',\r\n(e)=>{\r\n\t\tif( groups.includes(\"/formsflow/formsflow-reviewer/csap\") || groups.includes(\"/formsflow/formsflow-reviewer/csap-society\"))\r\n\t\t{\r\n\t\t var internalRadio = document.querySelectorAll(\"input[value='internal'][type='radio']\");\r\n\t\t for (let i = 0; i < internalRadio.length; i++) {\r\n\t\t\tif(internalRadio[i].parentElement !== null)\r\n\t\t\t{\r\n\t\t\t\tinternalRadio[i].parentElement.remove();\r\n\t\t\t}\r\n\t\t }\r\n\t\t}\r\n})\r\n\r\nconst emptyElements = [];\r\nconst elements = document.getElementsByClassName(\"list-group-item\");\r\nfor (let i = 0; i < elements.length; i++) {\r\nconst element = elements[i];\r\n\r\nif(element.querySelectorAll('div.row').length===0){(element).remove() }\r\n \r\n}\r\n}\r\n\r\n\r\nconst emptyElements = [];\r\nconst elements = document.getElementsByClassName(\"list-group-item\");\r\nfor (let i = 0; i < elements.length; i++) {\r\nconst element = elements[i];\r\n\r\nif(element.querySelectorAll('div.row').length===0){(element).remove() }\r\n \r\n}\r\n\r\n\r\nvar b =JSON.parse(localStorage.getItem('UserDetails'))\r\n\r\nif(b.groups.includes(\"/formsflow/formsflow-client\"))\r\n{\r\n\tif(document.querySelector(\"[ref='editgrid-srcrNotes-addRow']\")!==null)\r\n\t{\r\n\t\tdocument.querySelector(\"[ref='editgrid-srcrNotes-addRow']\").remove();\r\n\t}\r\nvar editButtons = document.querySelectorAll('button.btn.btn-default.btn-light.btn-sm.editRow');\r\nfor(i=0;ix.commentFor==='external').length > 0)\nshow = true;\nelse\nshow = false;\n}\nelse\n{\n show = true;\n}\n\nvar addRowButton = document.querySelector(\"button[ref=editgrid-srcrNotes-addRow]\");\nif(addRowButton!=null)\n{\naddRowButton.addEventListener('click',\n(e)=>{\n\t\tif( groups.includes(\"/formsflow/formsflow-reviewer/csap\") || groups.includes(\"/formsflow/formsflow-reviewer/csap-society\"))\n\t\t{\n\t\t var internalRadio = document.querySelectorAll(\"input[value='internal'][type='radio']\");\n\t\t for (let i = 0; i < internalRadio.length; i++) {\n\t\t\tif(internalRadio[i].parentElement !== null)\n\t\t\t{\n\t\t\t\tinternalRadio[i].parentElement.remove();\n\t\t\t}\n\t\t }\n\t\t}\n})\n\nconst emptyElements = [];\nconst elements = document.getElementsByClassName(\"list-group-item\");\nfor (let i = 0; i < elements.length; i++) {\nconst element = elements[i];\n\nif(element.querySelectorAll('div.row').length===0){(element).remove() }\n \n}\n}\n\n\nconst emptyElements = [];\nconst elements = document.getElementsByClassName(\"list-group-item\");\nfor (let i = 0; i < elements.length; i++) {\nconst element = elements[i];\n\nif(element.querySelectorAll('div.row').length===0){(element).remove() }\n \n}\n\n\nvar b =JSON.parse(localStorage.getItem('UserDetails'))\n\nif(b.groups.includes(\"/formsflow/formsflow-client\") || b.groups.includes(\"/formsflow/formsflow-reviewer/formsflow-client-reviewer\") )\n{\n\tif(document.querySelector(\"[ref='editgrid-srcrNotes-addRow']\")!==null)\n\t{\n\t\tdocument.querySelector(\"[ref='editgrid-srcrNotes-addRow']\").remove();\n\t}\nvar editButtons = document.querySelectorAll('button.btn.btn-default.btn-light.btn-sm.editRow');\nfor(i=0;i -1 )\n{\n value = 'Client'\n}\nelse if(b.groups.indexOf('/formsflow/formsflow-reviewer/csap') > -1 )\n{\n value = 'Approved Professional'\n}\nelse if(b.groups.indexOf('/formsflow/formsflow-reviewer/csap-society') > -1 )\n{\n value = 'CSAP Society'\n}\nelse if(b.groups.indexOf('/formsflow/formsflow-reviewer/cssa-team') > -1 )\n{\n value = 'CSSA Team'\n}\nelse if(b.groups.indexOf('/formsflow/formsflow-reviewer/cssa-manager') > -1 )\n{\n value = 'CSSA Manager'\n}\nelse if(b.groups.indexOf('/formsflow/formsflow-reviewer/caseworker') > -1 )\n{\n value = 'Caseworker'\n}\nelse if(b.groups.indexOf('/formsflow/formsflow-reviewer/sdm') > -1 )\n{\n value = 'Statutory Decision Maker'\n}\nelse if(b.groups.indexOf('/formsflow/formsflow-reviewer/site-risk-classification-officer') > -1 )\n{\n value = 'Site Risk Classification Officer'\n}\nelse if(b.groups.indexOf('/formsflow/formsflow-reviewer/site-information-advisor') > -1 )\n{\n value = 'Site Information Advisor'\n}", + "key": "role", + "type": "textfield", + "input": true, "placeholder": "", - "description": "", - "tooltip": "", "prefix": "", - "suffix": "", - "widget": { - "type": "input" - }, - "inputMask": "", - "displayMask": "", - "allowMultipleMasks": false, "customClass": "", - "tabindex": "", - "autocomplete": "", + "suffix": "", + "multiple": false, + "defaultValue": null, + "protected": false, + "unique": false, + "persistent": true, "hidden": false, + "clearOnHide": true, + "refreshOn": "", + "redrawOn": "", + "modalEdit": false, + "dataGridLabel": false, + "labelPosition": "top", + "description": "", + "errorLabel": "", + "tooltip": "", "hideLabel": false, - "showWordCount": false, - "showCharCount": false, - "mask": false, + "tabindex": "", "autofocus": false, - "spellcheck": true, - "disabled": true, - "tableView": true, - "modalEdit": false, - "multiple": false, - "persistent": true, - "inputFormat": "plain", - "protected": false, "dbIndex": false, - "case": "", - "truncateMultipleSpaces": false, - "encrypted": false, - "redrawOn": "", - "clearOnHide": true, - "customDefaultValue": "var b =JSON.parse(localStorage.getItem('UserDetails'))\nif(b.groups.indexOf('/formsflow/formsflow-client') > -1 )\n{\n value = 'Client'\n}\nelse if(b.groups.indexOf('/formsflow/formsflow-reviewer/csap') > -1 )\n{\n value = 'Approved Professional'\n}\nelse if(b.groups.indexOf('/formsflow/formsflow-reviewer/csap-society') > -1 )\n{\n value = 'CSAP Society'\n}\nelse if(b.groups.indexOf('/formsflow/formsflow-reviewer/cssa-team') > -1 )\n{\n value = 'CSSA Team'\n}\nelse if(b.groups.indexOf('/formsflow/formsflow-reviewer/cssa-manager') > -1 )\n{\n value = 'CSSA Manager'\n}\nelse if(b.groups.indexOf('/formsflow/formsflow-reviewer/caseworker') > -1 )\n{\n value = 'Caseworker'\n}\nelse if(b.groups.indexOf('/formsflow/formsflow-reviewer/sdm') > -1 )\n{\n value = 'Statutory Decision Maker'\n}\nelse if(b.groups.indexOf('/formsflow/formsflow-reviewer/site-risk-classification-officer') > -1 )\n{\n value = 'Site Risk Classification Officer'\n}\nelse if(b.groups.indexOf('/formsflow/formsflow-reviewer/site-information-advisor') > -1 )\n{\n value = 'Site Information Advisor'\n}", "calculateValue": "", "calculateServer": false, - "allowCalculateOverride": false, + "widget": { + "type": "input" + }, + "attributes": {}, "validateOn": "change", "validate": { "required": false, - "pattern": "", - "customMessage": "", "custom": "", "customPrivate": false, - "json": "", - "minLength": "", - "maxLength": "", "strictDateValidation": false, "multiple": false, - "unique": false + "unique": false, + "minLength": "", + "maxLength": "", + "pattern": "" }, - "unique": false, - "errorLabel": "", - "errors": "", - "key": "role", - "tags": [], - "properties": {}, "conditional": { "show": null, "when": null, - "eq": "", - "json": "" + "eq": "" }, - "customConditional": "", - "logic": [], - "attributes": {}, "overlay": { "style": "", - "page": "", "left": "", "top": "", "width": "", "height": "" }, - "type": "textfield", - "input": true, - "refreshOn": "", - "dataGridLabel": false, + "allowCalculateOverride": false, + "encrypted": false, + "showCharCount": false, + "showWordCount": false, + "properties": {}, + "allowMultipleMasks": false, "addons": [], + "mask": false, "inputType": "text", - "id": "e3l63ph", - "defaultValue": "" + "inputFormat": "plain", + "inputMask": "", + "displayMask": "", + "spellcheck": true, + "truncateMultipleSpaces": false, + "id": "epglnlb" } ], "size": "md", @@ -2470,7 +2460,7 @@ "displayMask": "", "spellcheck": true, "truncateMultipleSpaces": false, - "id": "ebepm6j" + "id": "eeowpjq" } ], "size": "md", @@ -2557,7 +2547,7 @@ "displayMask": "", "spellcheck": true, "truncateMultipleSpaces": false, - "id": "emoqtaq" + "id": "elq91z" } ], "size": "md", @@ -2632,7 +2622,7 @@ "tree": false, "lazyLoad": false, "autoAdjust": false, - "id": "e9r4948" + "id": "elyerv7" } ], "placeholder": "", @@ -2651,7 +2641,7 @@ "tree": true, "lazyLoad": false, "defaultOpen": false, - "id": "e0yh46d" + "id": "ek52ur9" }, { "title": "Collection Notice", @@ -5079,7 +5069,7 @@ "attributes": {}, "components": [ { - "id": "ele95t000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "id": "ele95t000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", "key": "spropertyOwnerAndOrOperator", "tree": false, "type": "panel", @@ -14491,7 +14481,7 @@ "attributes": {}, "components": [ { - "id": "eks0gu00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "id": "eks0gu00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", "key": "exposurePathwayQuestionnaireAffectedParcel", "tree": false, "type": "panel", @@ -18434,7 +18424,7 @@ } ], "collapsible": false, - "id": "eo5mwyp000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "id": "eo5mwyp000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", "placeholder": "", "prefix": "", "customClass": "", From 06a0a3f091a24b2aba58e8266a974f63e96a02ba Mon Sep 17 00:00:00 2001 From: midhun-aot Date: Fri, 20 Oct 2023 10:36:29 -0700 Subject: [PATCH 192/194] fixed previous reviewre for NIR and NOM --- .../subProcess/NIRBundleWorkflow.bpmn | 77 +++++++++++++------ .../subProcess/NOMBundleWorkflow.bpmn | 59 ++++++++++---- 2 files changed, 95 insertions(+), 41 deletions(-) diff --git a/forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/processes/Bundling/subProcess/NIRBundleWorkflow.bpmn b/forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/processes/Bundling/subProcess/NIRBundleWorkflow.bpmn index 15aa6b9f..29d804ad 100644 --- a/forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/processes/Bundling/subProcess/NIRBundleWorkflow.bpmn +++ b/forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/processes/Bundling/subProcess/NIRBundleWorkflow.bpmn @@ -29,6 +29,7 @@ Activity_132ba5z Activity_0g23guk + Gateway_1w01edb @@ -101,6 +102,7 @@ task.execution.setVariable('userRole','Site Information Advisor'); Flow_0unffch + Flow_1wavf5u Flow_1ua4w6m Flow_1oam11w Flow_1g1b94u @@ -125,26 +127,6 @@ task.execution.setVariable('deleteReason', "completed"); Flow_115hro3 Flow_09ugz49 - - Flow_09ugz49 - Flow_176uggp - var system = java.lang.System; -var selectSdm= execution.getVariable('selectSdm'); -system.out.println ("selectSdm"+selectSdm); -execution.setVariable('sdmAssignment',selectSdm); -system.out.println ("sdmAssignment"+execution.getVariable('sdmAssignment')); - -var selectCaseworker= execution.getVariable('selectCaseworker'); -system.out.println ("selectCaseworker"+selectCaseworker); -execution.setVariable('caseworkerAssignment',selectCaseworker); -system.out.println ("caseworkerAssignment"+execution.getVariable('caseworkerAssignment')); - -var selectSrco= execution.getVariable('selectSrco'); -system.out.println ("selectSrco"+selectSrco); -execution.setVariable('srcoAssignment',selectSrco); -system.out.println ("srcoAssignment"+execution.getVariable('srcoAssignment')); - - Flow_176uggp Flow_0ixmsle @@ -646,7 +628,7 @@ execution.setVariable('nirStatus', "Resubmitted");
- + @@ -707,6 +689,37 @@ execution.setVariable('nirStatus', "Resubmitted"); Flow_1rvfhly + + Flow_0rqhohs + Flow_176uggp + var system = java.lang.System; +var selectSdm= execution.getVariable('selectSdm'); +system.out.println ("selectSdm"+selectSdm); +execution.setVariable('sdmAssignment',selectSdm); +system.out.println ("sdmAssignment"+execution.getVariable('sdmAssignment')); + +var selectCaseworker= execution.getVariable('selectCaseworker'); +system.out.println ("selectCaseworker"+selectCaseworker); +execution.setVariable('caseworkerAssignment',selectCaseworker); +system.out.println ("caseworkerAssignment"+execution.getVariable('caseworkerAssignment')); + +var selectSrco= execution.getVariable('selectSrco'); +system.out.println ("selectSrco"+selectSrco); +execution.setVariable('srcoAssignment',selectSrco); +system.out.println ("srcoAssignment"+execution.getVariable('srcoAssignment')); + + + + Flow_09ugz49 + Flow_0rqhohs + Flow_1wavf5u + + + ${action == 'Accepted'} + + + ${action == 'Recheck'} + @@ -770,11 +783,11 @@ execution.setVariable('nirStatus', "Resubmitted"); - + - - + + @@ -829,6 +842,17 @@ execution.setVariable('nirStatus', "Resubmitted"); + + + + + + + + + + + @@ -858,9 +882,12 @@ execution.setVariable('nirStatus', "Resubmitted"); - + + + + diff --git a/forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/processes/Bundling/subProcess/NOMBundleWorkflow.bpmn b/forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/processes/Bundling/subProcess/NOMBundleWorkflow.bpmn index 581d4014..a900461e 100644 --- a/forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/processes/Bundling/subProcess/NOMBundleWorkflow.bpmn +++ b/forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/processes/Bundling/subProcess/NOMBundleWorkflow.bpmn @@ -27,8 +27,9 @@ Activity_0w5t5av Gateway_15uoiyo Activity_123733v - Activity_0hieobd Event_0ml6v2t + Activity_0hieobd + Gateway_06j5m9d @@ -104,6 +105,7 @@ task.execution.setVariable('userRole','Site Information Advisor'); Flow_0unffch + Flow_0gzrwfr Flow_1ua4w6m Flow_1oam11w Flow_0l71ern @@ -737,8 +739,16 @@ task.execution.setVariable('deleteReason', "completed"); Flow_077ihmr + + + + + + + Flow_0x0w3ip + - Flow_077ihmr + Flow_1l3pe3s Flow_1ld9bfn var system = java.lang.System; var selectSdm= execution.getVariable('selectSdm'); @@ -757,14 +767,17 @@ execution.setVariable('srcoAssignment',selectSrco); system.out.println ("srcoAssignment"+execution.getVariable('srcoAssignment')); - - - - + + Flow_077ihmr + Flow_1l3pe3s + Flow_0gzrwfr + + + ${action == 'Accepted'} + + + ${action == 'Recheck'} - - Flow_0x0w3ip - @@ -788,11 +801,11 @@ system.out.println ("srcoAssignment"+execution.getVariable('srcoAssignment')); - + - - + + @@ -897,6 +910,17 @@ system.out.println ("srcoAssignment"+execution.getVariable('srcoAssignment')); + + + + + + + + + + + @@ -924,6 +948,13 @@ system.out.println ("srcoAssignment"+execution.getVariable('srcoAssignment')); + + + + + + + @@ -1247,10 +1278,6 @@ system.out.println ("srcoAssignment"+execution.getVariable('srcoAssignment')); - - - - From cf5deb596991621722f274479cdd248f61d42468 Mon Sep 17 00:00:00 2001 From: midhun-aot Date: Mon, 23 Oct 2023 09:07:25 -0700 Subject: [PATCH 193/194] updating SDS workflow with email changes --- .../processes/Common/email-template.dmn | 4 +- .../processes/SDS/SDSWorkflow.bpmn | 236 +++++++++--------- 2 files changed, 122 insertions(+), 118 deletions(-) diff --git a/forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/processes/Common/email-template.dmn b/forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/processes/Common/email-template.dmn index 857885af..9c01e388 100644 --- a/forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/processes/Common/email-template.dmn +++ b/forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/processes/Common/email-template.dmn @@ -1,5 +1,5 @@ - + @@ -242,7 +242,7 @@ "Site Disclosure Statements" - "templates/sds_application.ftl" + "templates/nom_application.ftl" "epd-support@gov.bc.ca" diff --git a/forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/processes/SDS/SDSWorkflow.bpmn b/forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/processes/SDS/SDSWorkflow.bpmn index 378ac7bc..6fa6fc77 100644 --- a/forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/processes/SDS/SDSWorkflow.bpmn +++ b/forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/processes/SDS/SDSWorkflow.bpmn @@ -1,5 +1,5 @@ - + @@ -66,7 +66,11 @@ system.out.println ("isApprovingAuthorityReqd"+execution.getVariable('isApprovin var contactPersonName= execution.getVariable('Section1C-FirstName'); execution.setVariable('name',contactPersonName); -system.out.println ("contactPersonName"+execution.getVariable('Section1C-FirstName')); +system.out.println ("contactPersonName"+execution.getVariable('Section1C-FirstName')); + + +execution.setVariable('name',''); +execution.setVariable('formName','Site Disclosure Statements'); Flow_1la2yud @@ -160,7 +164,7 @@ system.out.println ("contactPersonName"+execution.getVariable('Section1C-FirstNa task.execution.setVariable('applicationStatus', task.execution.getVariable('action')); - +task.execution.setVariable('userRole','Site Information Advisor'); @@ -302,6 +306,119 @@ system.out.println ("isApprovingAuthorityReqd"+execution.getVariable('isApprovin + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -370,119 +487,6 @@ system.out.println ("isApprovingAuthorityReqd"+execution.getVariable('isApprovin - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - From fe4c0337344845b79be741a7f91763379d19cf1a Mon Sep 17 00:00:00 2001 From: midhun-aot Date: Mon, 23 Oct 2023 12:08:42 -0700 Subject: [PATCH 194/194] updating user name to user --- .../subProcess/CSSABundleWorklow.bpmn | 36 +++++++++--------- .../subProcess/DERABundleWorkflow.bpmn | 2 +- .../subProcess/NIRBundleWorkflow.bpmn | 38 +++++++++---------- .../subProcess/NOMBundleWorkflow.bpmn | 38 +++++++++---------- .../processes/SDS/SDSWorkflow.bpmn | 2 +- 5 files changed, 58 insertions(+), 58 deletions(-) diff --git a/forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/processes/Bundling/subProcess/CSSABundleWorklow.bpmn b/forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/processes/Bundling/subProcess/CSSABundleWorklow.bpmn index 0562d699..c41cc175 100644 --- a/forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/processes/Bundling/subProcess/CSSABundleWorklow.bpmn +++ b/forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/processes/Bundling/subProcess/CSSABundleWorklow.bpmn @@ -1359,7 +1359,7 @@ execution.setVariable('userIdForSharing',userIdForSharing); var listOwnerEmailAddress = []; listOwnerEmailAddress.push(clientEmail); execution.setVariable('EmailType','CSSA'); -execution.setVariable('name',''); +execution.setVariable('name','User'); execution.setVariable("emailTo", Java.to(listOwnerEmailAddress, "java.lang.Object[]")); execution.setVariable('formName','Contaminated Sites Services Application Form'); @@ -1565,6 +1565,10 @@ task.execution.setVariable('userRole','CSSA Team'); + + + + @@ -1968,10 +1972,6 @@ task.execution.setVariable('userRole','CSSA Team'); - - - - @@ -2026,19 +2026,6 @@ task.execution.setVariable('userRole','CSSA Team'); - - - - - - - - - - - - - @@ -2655,6 +2642,19 @@ task.execution.setVariable('userRole','CSSA Team'); + + + + + + + + + + + + + diff --git a/forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/processes/Bundling/subProcess/DERABundleWorkflow.bpmn b/forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/processes/Bundling/subProcess/DERABundleWorkflow.bpmn index 18e542f9..4f68aa08 100644 --- a/forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/processes/Bundling/subProcess/DERABundleWorkflow.bpmn +++ b/forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/processes/Bundling/subProcess/DERABundleWorkflow.bpmn @@ -245,7 +245,7 @@ system.out.println ("siteRiskClassification "+siteRiskClassification ); execution.setVariable('siteRiskClassification',siteRiskClassification); execution.setVariable('formName','Detailed Ecological Risk Assessment Checklist'); execution.setVariable('EmailType','DERA'); -execution.setVariable('name',execution.getVariable('deraPropertyOwnerName')); +execution.setVariable('name','User'); var emailsToArray = []; emailsToArray.push(clientEmail) execution.setVariable("emailTo", Java.to(emailsToArray, "java.lang.Object[]")); diff --git a/forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/processes/Bundling/subProcess/NIRBundleWorkflow.bpmn b/forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/processes/Bundling/subProcess/NIRBundleWorkflow.bpmn index 29d804ad..872f67fe 100644 --- a/forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/processes/Bundling/subProcess/NIRBundleWorkflow.bpmn +++ b/forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/processes/Bundling/subProcess/NIRBundleWorkflow.bpmn @@ -64,7 +64,7 @@ system.out.println ("siteRiskClassification "+siteRiskClassification ); execution.setVariable('siteRiskClassification',siteRiskClassification); var name=execution.getVariable('nirName'); system.out.println ("name "+execution.getVariable('nirName')); -execution.setVariable('name',name); +execution.setVariable('name','User'); execution.setVariable('formName','Notification of Independent Remediation'); @@ -745,6 +745,17 @@ system.out.println ("srcoAssignment"+execution.getVariable('srcoAssignment')); + + + + + + + + + + + @@ -842,17 +853,6 @@ system.out.println ("srcoAssignment"+execution.getVariable('srcoAssignment')); - - - - - - - - - - - @@ -881,13 +881,6 @@ system.out.println ("srcoAssignment"+execution.getVariable('srcoAssignment')); - - - - - - - @@ -1207,6 +1200,13 @@ system.out.println ("srcoAssignment"+execution.getVariable('srcoAssignment')); + + + + + + + diff --git a/forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/processes/Bundling/subProcess/NOMBundleWorkflow.bpmn b/forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/processes/Bundling/subProcess/NOMBundleWorkflow.bpmn index a900461e..1b988872 100644 --- a/forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/processes/Bundling/subProcess/NOMBundleWorkflow.bpmn +++ b/forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/processes/Bundling/subProcess/NOMBundleWorkflow.bpmn @@ -45,7 +45,7 @@ execution.setVariable('clientEmail',clientEmail); var riskclassification = execution.getVariable('riskclassification'); system.out.println ("formUrl "+execution.getVariable('formUrl')); execution.setVariable('emailTo',clientEmail); -execution.setVariable('name','Test'); +execution.setVariable('name','User'); system.out.println ("emailTo "+execution.getVariable('emailTo')); system.out.println ("name "+execution.getVariable('name')); @@ -799,6 +799,17 @@ system.out.println ("srcoAssignment"+execution.getVariable('srcoAssignment')); + + + + + + + + + + + @@ -910,17 +921,6 @@ system.out.println ("srcoAssignment"+execution.getVariable('srcoAssignment')); - - - - - - - - - - - @@ -948,13 +948,6 @@ system.out.println ("srcoAssignment"+execution.getVariable('srcoAssignment')); - - - - - - - @@ -1284,6 +1277,13 @@ system.out.println ("srcoAssignment"+execution.getVariable('srcoAssignment')); + + + + + + + diff --git a/forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/processes/SDS/SDSWorkflow.bpmn b/forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/processes/SDS/SDSWorkflow.bpmn index 6fa6fc77..59d4a749 100644 --- a/forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/processes/SDS/SDSWorkflow.bpmn +++ b/forms-flow-ai/forms-flow-ai-ee/forms-flow-bpm/processes/SDS/SDSWorkflow.bpmn @@ -69,7 +69,7 @@ execution.setVariable('name',contactPersonName); system.out.println ("contactPersonName"+execution.getVariable('Section1C-FirstName')); -execution.setVariable('name',''); +execution.setVariable('name','User'); execution.setVariable('formName','Site Disclosure Statements');